From 7b17e9b628d6f44c547e9110a9b2edb17a1e20ec Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Fri, 9 Feb 2018 10:18:42 -0700 Subject: [PATCH 01/24] Fix outdated unit tests. --- .../components/queryBuilder/cypherGenerator.service.spec.js | 4 ++-- src/app/components/viewState/viewState.service.spec.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/components/queryBuilder/cypherGenerator.service.spec.js b/src/app/components/queryBuilder/cypherGenerator.service.spec.js index 29d2f16..dec7d3c 100644 --- a/src/app/components/queryBuilder/cypherGenerator.service.spec.js +++ b/src/app/components/queryBuilder/cypherGenerator.service.spec.js @@ -1,5 +1,5 @@ describe('service cypherGenerator', () => { - beforeEach(angular.mock.module('ngNeo4jQuery')); + beforeEach(angular.mock.module('connectivityMatrixJs')); let advanced = { "nodes": [ @@ -120,7 +120,7 @@ describe('service cypherGenerator', () => { expect(cypher == query).toBe(true); })); - fit('generateBasicQuery - flights', inject(cypherGeneratorService => { + it('generateBasicQuery - flights', inject(cypherGeneratorService => { let cypher = cypherGeneratorService.generateBasicQuery({nodes: [[], []]}, 3, true); let query = "MATCH p = (n0)-[e0]->(n1) RETURN p UNION MATCH p = (n0)-[e0]->(n1)-[e1]->(n2) WHERE ((e0.arr_time < e1.dep_time) AND (e0.carrier = e1.carrier)) RETURN p UNION MATCH p = (n0)-[e0]->(n1)-[e1]->(n2)-[e2]->(n3) WHERE (((e0.arr_time < e1.dep_time) AND (e0.carrier = e1.carrier)) AND ((e1.arr_time < e2.dep_time) AND (e1.carrier = e2.carrier))) RETURN p"; expect(cypher == query).toBe(true); diff --git a/src/app/components/viewState/viewState.service.spec.js b/src/app/components/viewState/viewState.service.spec.js index 5e52ca4..9180e62 100644 --- a/src/app/components/viewState/viewState.service.spec.js +++ b/src/app/components/viewState/viewState.service.spec.js @@ -60,7 +60,7 @@ describe('viewState', () => { keys = Object.keys(viewState.quantitativeFilters); expect(keys.length).toEqual(numAttributeNodeGroups); - expect(Object.keys(viewState.quantitativeFilters[colAttributeNodeGroup]).length).toEqual(3); + expect(Object.keys(viewState.quantitativeFilters[colAttributeNodeGroup]).length).toEqual(4); expect(Object.keys(viewState.categoricalFilters[intermediateAttributeNodeGroup]["state"]).length).toEqual(6); } From 27c89214390e14cd4b46339a972cd64615a80338 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Fri, 9 Feb 2018 11:06:16 -0700 Subject: [PATCH 02/24] Fix unit tests. --- .../cmGraphFactory.service.spec.js | 25 --------- .../cmModelFactory.service.spec.js | 52 +------------------ 2 files changed, 2 insertions(+), 75 deletions(-) diff --git a/src/app/components/connectivityMatrix/cmGraphFactory.service.spec.js b/src/app/components/connectivityMatrix/cmGraphFactory.service.spec.js index 574c3e0..7f21789 100644 --- a/src/app/components/connectivityMatrix/cmGraphFactory.service.spec.js +++ b/src/app/components/connectivityMatrix/cmGraphFactory.service.spec.js @@ -40,31 +40,6 @@ describe('cmGraphFactory', () => { $httpBackend.flush(); })); - it('getAsD3Input', inject(($httpBackend, $q, cmGraphFactory)=> { - requestAndCreateGraph($httpBackend, $q, cmGraphFactory).then(function (graph) { - var result = graph.getAsD3Input(); - expect(result.nodes.length == graph.getNodes().length).toEqual(true); - expect(result.links.length == graph.getEdges().length).toEqual(true); - - for (var i = 0; i < result.links.length; ++i) { - var link = result.links[i]; - expect(result.nodes[link.source].attributes.structure == link.value.sourceStructureId).toBe(true); - expect(result.nodes[link.target].attributes.structure == link.value.targetStructureId).toBe(true); - } - - result = graph.getAsD3Input([168, 18693]); - expect(result.nodes.length == 2).toEqual(true); - expect(result.links.length == 1).toEqual(true); - - for (i = 0; i < result.links.length; ++i) { - link = result.links[i]; - expect(result.nodes[link.source].attributes.structure == link.value.sourceStructureId).toBe(true); - expect(result.nodes[link.target].attributes.structure == link.value.targetStructureId).toBe(true); - } - }); - $httpBackend.flush(); - })); - it('getNodeAttributes', inject(($httpBackend, $q, cmGraphFactory)=> { requestAndCreateGraph($httpBackend, $q, cmGraphFactory).then(function (graph) { expect(Utils.compareLists(['label'], graph.getCategoricalNodeAttrNames())).toEqual(true); diff --git a/src/app/components/connectivityMatrix/cmModelFactory.service.spec.js b/src/app/components/connectivityMatrix/cmModelFactory.service.spec.js index 9db9055..4eb02b2 100644 --- a/src/app/components/connectivityMatrix/cmModelFactory.service.spec.js +++ b/src/app/components/connectivityMatrix/cmModelFactory.service.spec.js @@ -30,54 +30,6 @@ describe('cmModelFactory', () => { $httpBackend.flush(); })); - it('cmModel - collapseRows', inject(($httpBackend, $q, cmModelFactory)=> { - requestAndCreateModel($httpBackend, $q, cmModelFactory).then(function (model) { - var expectedRowNodeIndexes = [[168], [120], [142], [1724], [5107]]; - var rowNodeIndexes = model.getRowNodeIndexes(); - expect(Utils.compareLists(rowNodeIndexes, expectedRowNodeIndexes)).toEqual(true); - - var matrix = model.getCurrentMatrix(); - - var expectedMatrix = [ - [[], [], [], [], []], - [[], [], [], [], [[120, 3, 1, 4, 5107]]], - [[], [], [], [], []], - [[], [], [[1724, 1, 35894, 6, 142]], [], []], - [[], [], [], [], []]]; - - expect(Utils.compareLists(expectedMatrix, matrix)).toEqual(true); - - model.collapseRowsByAttr("label"); - rowNodeIndexes = model.getRowNodeIndexes(); - expectedRowNodeIndexes = [[168, 120, 1724], [142, 5107]]; // 6 and 3 are rows 2,4 - expect(Utils.compareLists(rowNodeIndexes, expectedRowNodeIndexes)).toEqual(true); - - expectedMatrix = [ - [[], [], [[1724, 1, 35894, 6, 142]], [], [[120, 3, 1, 4, 5107]]], - [[], [], [], [], []]]; - matrix = model.getCurrentMatrix(); - expect(Utils.compareLists(expectedMatrix, matrix)).toEqual(true); - - model.collapseRows([[0, 1]]); - expectedRowNodeIndexes = [[168, 120, 1724, 142, 5107]]; - rowNodeIndexes = model.getRowNodeIndexes(); - expect(Utils.compareLists(rowNodeIndexes, expectedRowNodeIndexes)).toEqual(true); - - expectedMatrix = [ - [[], [], [[1724, 1, 35894, 6, 142]], [], [[120, 3, 1, 4, 5107]]]]; - - matrix = model.getCurrentMatrix(); - expect(Utils.compareLists(expectedMatrix, matrix)).toEqual(true); - - model.reset(); - model.collapseRows([[0, 1]]); - expectedRowNodeIndexes = [[168, 120], [142], [1724], [5107]]; - rowNodeIndexes = model.getRowNodeIndexes(); - expect(Utils.compareLists(rowNodeIndexes, expectedRowNodeIndexes)).toEqual(true); - }); - $httpBackend.flush(); - })); - it('cmModel - expandRows', inject(($httpBackend, $q, cmModelFactory)=> { requestAndCreateModel($httpBackend, $q, cmModelFactory).then(function (model) { var expectedRowNodeIndexes = [[168], [120], [142], [1724], [5107]]; @@ -374,7 +326,7 @@ describe('cmModelFactory', () => { it('cmModel - getAvailableAttributes', inject(($httpBackend, $q, cmModelFactory)=> { requestAndCreateModel($httpBackend, $q, cmModelFactory).then(function (model) { let attributes = model.getAvailableAttributes(); - expect(attributes.length).toEqual(4); + expect(attributes.length).toEqual(5); }); $httpBackend.flush(); })); @@ -382,7 +334,7 @@ describe('cmModelFactory', () => { it('cmModel - flights - getAvailableAttributes', inject(($httpBackend, $q, cmModelFactory)=> { requestAndCreateModel($httpBackend, $q, cmModelFactory, true).then(function (model) { let attributes = model.getAvailableAttributes(); - expect(attributes.length).toEqual(6); + expect(attributes.length).toEqual(7); }); $httpBackend.flush(); })); From 01beb7809708ebcbdb557d88c8d86766628523cd Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Mon, 12 Feb 2018 15:13:58 -0700 Subject: [PATCH 03/24] Start data selection. --- .../dataSelection/dataSelection.controller.js | 30 ++++++++++++++ .../dataSelection/dataSelection.html | 23 +++++++++++ .../dataSelection/dataSelection.service.js | 40 +++++++++++++++++++ src/app/index.module.js | 7 +++- src/app/index.route.js | 2 +- src/app/main/main.controller.js | 7 +++- 6 files changed, 105 insertions(+), 4 deletions(-) create mode 100644 src/app/components/dataSelection/dataSelection.controller.js create mode 100644 src/app/components/dataSelection/dataSelection.html create mode 100644 src/app/components/dataSelection/dataSelection.service.js diff --git a/src/app/components/dataSelection/dataSelection.controller.js b/src/app/components/dataSelection/dataSelection.controller.js new file mode 100644 index 0000000..a95c541 --- /dev/null +++ b/src/app/components/dataSelection/dataSelection.controller.js @@ -0,0 +1,30 @@ +export class DataSelectionController { + + /** + * Class for letting user select items from a list. + * @param $uibModalInstance + * @param title - displayed in modal header + * @param items - list of items for the user to select from + */ + constructor($uibModalInstance, title, items) { + 'ngInject'; + this.$uibModalInstance = $uibModalInstance; + this.title = title; + this.items = items; + this.useDefaultDataSet = true; + } + + /** + * Returns isItemSelected. + */ + ok() { + this.$uibModalInstance.close(); + } + + /** + * Dismiss and no-op. + */ + cancel() { + this.$uibModalInstance.dismiss(); + } +} diff --git a/src/app/components/dataSelection/dataSelection.html b/src/app/components/dataSelection/dataSelection.html new file mode 100644 index 0000000..c2e28f5 --- /dev/null +++ b/src/app/components/dataSelection/dataSelection.html @@ -0,0 +1,23 @@ + + + + + diff --git a/src/app/components/dataSelection/dataSelection.service.js b/src/app/components/dataSelection/dataSelection.service.js new file mode 100644 index 0000000..253424f --- /dev/null +++ b/src/app/components/dataSelection/dataSelection.service.js @@ -0,0 +1,40 @@ +export class DataSelectionService { + + /** + * Singleton service for getting user input through a bootstrap modal. + * + * Whenever this launches a modal, the arguments to 'callback' get passed from inside the modal's controller's + * ok() function. + */ + constructor($uibModal) { + "ngInject"; + this.$uibModal = $uibModal; + } + + /** + * Ask the user to select items with a checkbox list. Callback will be called with isItemSelected updated + * to match the user's preference. + * @param title - displayed in modal header + * @param items - list of items to be selected + * @param callback - called with isItemSelected when user resolves modal + */ + getSelectionFromList(title, items, callback) { + + let modalInstance = this.$uibModal.open({ + animation: true, + templateUrl: '/app/components/dataSelection/dataSelection.html', + controller: 'DataSelectionController', + controllerAs: 'modalController', + size: 'lg', + resolve: { + title: function () { + return title; + }, + items: function () { + return items; + } + } + }); + modalInstance.result.then(callback); + } +} diff --git a/src/app/index.module.js b/src/app/index.module.js index a5e0e5b..c29664e 100644 --- a/src/app/index.module.js +++ b/src/app/index.module.js @@ -22,7 +22,8 @@ import {AdjustableColorScaleDirective} from "../app/components/adjustableColorSc import {ColorScaleService} from "../app/components/adjustableColorScale/colorScale.service" import {QueryBuilderDirective} from "../app/components/queryBuilder/queryBuilder.directive" import {CypherGeneratorService} from "../app/components/queryBuilder/cypherGenerator.service" - +import {DataSelectionService} from "../app/components/dataSelection/dataSelection.service" +import {DataSelectionController} from '../app/components/dataSelection/dataSelection.controller' angular.module('connectivityMatrixJs', ['ngAnimate', 'ngCookies', 'ngTouch', 'ngSanitize', 'ngMessages', 'ngAria', 'ui.router', 'ui.bootstrap', 'toastr', 'ui.select', 'ngTagsInput']) .constant('malarkey', malarkey) @@ -48,4 +49,6 @@ angular.module('connectivityMatrixJs', ['ngAnimate', 'ngCookies', 'ngTouch', 'ng .directive("adjustableColorScaleDirective", () => new AdjustableColorScaleDirective()) .service("colorScaleService", ColorScaleService) .service("cypherGeneratorService", CypherGeneratorService) - .directive("queryBuilder", () => new QueryBuilderDirective()); + .directive("queryBuilder", () => new QueryBuilderDirective()) + .service("dataSelectionService", DataSelectionService) + .controller("DataSelectionController", DataSelectionController); diff --git a/src/app/index.route.js b/src/app/index.route.js index 3117610..1ba1663 100644 --- a/src/app/index.route.js +++ b/src/app/index.route.js @@ -29,5 +29,5 @@ export function routerConfig($stateProvider, $urlRouterProvider) { } }); - $urlRouterProvider.otherwise('/flights'); + $urlRouterProvider.otherwise('/marclab'); } diff --git a/src/app/main/main.controller.js b/src/app/main/main.controller.js index 2099604..6034251 100644 --- a/src/app/main/main.controller.js +++ b/src/app/main/main.controller.js @@ -5,7 +5,7 @@ import {Utils} from "../components/utils/utils"; export class MainController { constructor($log, $timeout, $scope, toastr, cmMatrixViewFactory, cmModelFactory, cmMatrixFactory, cmGraphFactory, - viewState, modalService, database, $http, colorScaleService, resource) { + viewState, modalService, database, $http, colorScaleService, resource, dataSelectionService) { 'ngInject'; this.viewState = viewState; this.$scope = $scope; @@ -28,6 +28,7 @@ export class MainController { this.hasGoodData = true; this.queryError = ""; this.debug = true; + this.dataSelectionService = dataSelectionService; // Object for representing what the user has currently selected or entered in the ui. this.ui = {}; @@ -60,6 +61,10 @@ export class MainController { this.colorScaleService.setUseLinearColorScale(true, 3); } + //this.modalService.getSelectionFromList("Filter by " + attribute, Object.keys(isValueSelected), isValueSelected, modalSuccess); + let availableDatasets = ["Marclab small", "Marclab large"]; + this.dataSelectionService.getSelectionFromList("Select a dataset", availableDatasets, function(){}); + let useLargeResult = false; let jsonGraph = null; useLargeResult = true; From 22d0ed1e1df5855867b9d90b78e37390e3ff5d19 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Mon, 12 Feb 2018 18:33:15 -0700 Subject: [PATCH 04/24] Dataset selection in-progress. --- .../dataSelection/dataSelection.controller.js | 33 ++++++++++++++ .../dataSelection/dataSelection.html | 44 ++++++++++++++----- .../dataSelection/dataSelection.service.js | 3 ++ src/app/main/main.css | 10 +++++ 4 files changed, 79 insertions(+), 11 deletions(-) diff --git a/src/app/components/dataSelection/dataSelection.controller.js b/src/app/components/dataSelection/dataSelection.controller.js index a95c541..0de1658 100644 --- a/src/app/components/dataSelection/dataSelection.controller.js +++ b/src/app/components/dataSelection/dataSelection.controller.js @@ -12,6 +12,39 @@ export class DataSelectionController { this.title = title; this.items = items; this.useDefaultDataSet = true; + this.isParsingFile = false; + this.data = {}; + this.hasError = false; + } + + /** + * Why does changing self here not update what gets rendered in the modal? + */ + onFileChanged(inputTag) { + let self = this; + let reader = new FileReader(); + + self.isParsingFile = true; + self.hasError = false; + console.log(inputTag); + self.filename = inputTag.files[0].name; + self.$root.$apply(); + reader.onload = self.onFileLoadedSuccess.bind(self); + reader.readAsText(inputTag.files[0]); + } + + /** + * + */ + onFileLoadedSuccess(contents) { + let self = this; + self.data = angular.fromJson(contents.target.result); + self.isDataOk = self.data.nodes && self.data.edges; + if(!self.isDataOk) { + self.hasError = true; + } + self.isParsingFile = false; + self.$root.$apply(); } /** diff --git a/src/app/components/dataSelection/dataSelection.html b/src/app/components/dataSelection/dataSelection.html index c2e28f5..17597bc 100644 --- a/src/app/components/dataSelection/dataSelection.html +++ b/src/app/components/dataSelection/dataSelection.html @@ -1,23 +1,45 @@ -
- Preset data: ... + + +
+ Preset data: {{dataName}}
- + Nodes: {{controller.defaultData[$index].nodes.length}} Edges: + {{controller.defaultData[$index].edges.length}} +
diff --git a/src/app/components/dataSelection/dataSelection.service.js b/src/app/components/dataSelection/dataSelection.service.js index 9373f1d..ca6f318 100644 --- a/src/app/components/dataSelection/dataSelection.service.js +++ b/src/app/components/dataSelection/dataSelection.service.js @@ -1,10 +1,7 @@ export class DataSelectionService { /** - * Singleton service for getting user input through a bootstrap modal. - * - * Whenever this launches a modal, the arguments to 'callback' get passed from inside the modal's controller's - * ok() function. + * Singleton service for asking user to select a dataset. */ constructor($uibModal) { "ngInject"; @@ -12,30 +9,30 @@ export class DataSelectionService { } /** - * Ask the user to select items with a checkbox list. Callback will be called with isItemSelected updated - * to match the user's preference. - * @param title - displayed in modal header - * @param items - list of items to be selected - * @param callback - called with isItemSelected when user resolves modal + * Asks the user which dataset to use + * @param defaultDataNames - list of file names for pre-loaded data + * @param defaultData - list of pre-loaded data. + * @param callback - called when the user clicks 'go' - returns the selected data */ - getSelectionFromList(title, items, callback) { + getSelectionFromList(defaultDataNames, defaultData, callback) { let modalInstance = this.$uibModal.open({ animation: true, templateUrl: '/app/components/dataSelection/dataSelection.html', controller: 'DataSelectionController', - controllerAs: 'modalController', + controllerAs: 'controller', bindToController: true, size: 'lg', backdrop : 'static', keyboard : false, resolve: { - title: function () { - return title; + defaultData: function () { + return defaultData; }, - items: function () { - return items; + defaultDataNames: function() { + return defaultDataNames; } + } }); modalInstance.result.then(callback); diff --git a/src/app/main/main.controller.js b/src/app/main/main.controller.js index 6034251..24e2a52 100644 --- a/src/app/main/main.controller.js +++ b/src/app/main/main.controller.js @@ -4,7 +4,7 @@ import {mock} from "../components/connectivityMatrix/mock.js"; import {Utils} from "../components/utils/utils"; export class MainController { - constructor($log, $timeout, $scope, toastr, cmMatrixViewFactory, cmModelFactory, cmMatrixFactory, cmGraphFactory, + constructor($log, $timeout, $scope, $q, toastr, cmMatrixViewFactory, cmModelFactory, cmMatrixFactory, cmGraphFactory, viewState, modalService, database, $http, colorScaleService, resource, dataSelectionService) { 'ngInject'; this.viewState = viewState; @@ -28,6 +28,7 @@ export class MainController { this.hasGoodData = true; this.queryError = ""; this.debug = true; + this.$q = $q; this.dataSelectionService = dataSelectionService; // Object for representing what the user has currently selected or entered in the ui. @@ -62,12 +63,13 @@ export class MainController { } //this.modalService.getSelectionFromList("Filter by " + attribute, Object.keys(isValueSelected), isValueSelected, modalSuccess); - let availableDatasets = ["Marclab small", "Marclab large"]; - this.dataSelectionService.getSelectionFromList("Select a dataset", availableDatasets, function(){}); + this.activateWithClientOnlyData(); + let useLargeResult = false; - let jsonGraph = null; useLargeResult = true; + let jsonGraph = null; + useLargeResult = true; let jsonMatrix = null; @@ -145,6 +147,42 @@ export class MainController { //}, 1); } + /** + * + */ + activateWithClientOnlyData() { + let self = this; + let defaultDataNames = ["/assets/mock/2018.01.23-network-514-1-hop.json", "/assets/mock/2018.01.23-network-all-hops.json"]; + + // Callback after the user selects a dataset. + let userSelectedDataCallback = function (result) { + self.$log.debug(result); + }; + + // Called after we have loaded all of the default datasets. + // Asks the use what dataset to use through the dataSelectModal.. + let success = function (results) { + + // Pull out data from http responses. + let dataValues = []; + for (let i = 0; i < results.length; ++i) { + dataValues.push(results[i].data); + } + + // Ask user. + self.dataSelectionService.getSelectionFromList(defaultDataNames, dataValues, userSelectedDataCallback); + }; + + + // Load all of the default data. + let requests = []; + for (let i = 0; i < defaultDataNames.length; ++i) { + requests.push(self.$http.get(defaultDataNames[i])); + } + + self.$q.all(requests).then(success); + } + activate(jsonGraph, jsonMatrix, jsonQuery) { // Populate the model with default dataset let graph = this.cmGraphFactory.createFromJsonObject(jsonGraph, this.database); diff --git a/src/app/main/main.css b/src/app/main/main.css index ea2879b..5c14db5 100644 --- a/src/app/main/main.css +++ b/src/app/main/main.css @@ -145,6 +145,10 @@ body { border: thick solid lightgray; } +.red-text { + color: red; +} + /* Overrides definition in uib */ .tab-content { padding: 0 15px !important; From 6a67ac47d9db09dc3d2b8a45c89c0bbced1f04e7 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Wed, 14 Feb 2018 13:34:45 -0700 Subject: [PATCH 08/24] Start on regex-query-builder. --- .../queryBuilderRegex/queryBuilder.css | 77 ++++++ .../queryBuilderRegex.directive.html | 44 ++++ .../queryBuilderRegex.directive.js | 226 ++++++++++++++++++ src/app/index.module.js | 2 + src/app/main/main.controller.js | 11 +- src/app/main/main.html | 13 +- 6 files changed, 368 insertions(+), 5 deletions(-) create mode 100644 src/app/components/queryBuilderRegex/queryBuilder.css create mode 100644 src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html create mode 100644 src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js diff --git a/src/app/components/queryBuilderRegex/queryBuilder.css b/src/app/components/queryBuilderRegex/queryBuilder.css new file mode 100644 index 0000000..9d0adf5 --- /dev/null +++ b/src/app/components/queryBuilderRegex/queryBuilder.css @@ -0,0 +1,77 @@ +.inline { + display: inline; +} + +.query-builder-input { + width: 100%; +} + +.query-builder-num-hops { + width: 70%; +} + +.query-builder-item { + padding-top: 5px; +} + +.query-builder-radio-btn-group { + float: right; +} + +.query-builder { + width: 100%; +} + +.query-builder-addon { + padding: 6px 6px !important; + width: 4.5em; +} + +.query-builder-submit-btn { + float: right; +} + +.ui-select-toggle { + border-top-right-radius: 3px !important; + border-bottom-right-radius: 3px !important; +} + +.query-builder-text-area { + width: 100%; + height: 250px; + resize: none; + font-family: "Courier New", monospace; + border-radius: 5px; + display: inline-block; + margin-top: 10px; +} + +.full-width { + width: 100%; +} + +.query-builder-warning { + position: absolute; + width: 95%; + border-radius: 10px; + background: darkred; + opacity: 0.75; + z-index: 100; + color: white; + text-align: center; + font-size: 18px; + padding-top: 10px; +} + +.query-builder-warning-button { + margin-top: 5px; + margin-bottom: 5px; + margin-right: 15px; +} + +.query-builder-filter { + background: #adadad; + border-color: #adadad; + padding: 1px 5px; + border-radius: 5px; +} diff --git a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html new file mode 100644 index 0000000..ea10f55 --- /dev/null +++ b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html @@ -0,0 +1,44 @@ +

{{queryController.isMarclabData ? "Connectome" : "Flight"}} Query

+ +
+ +
+ Len + + + {{queryController.ui.selectedNumHops}} + + + {{option}} + + +
+ +
+
+ {{node}} + +
+ +
+ {{queryController.ui.edges[$index]}} + +
+
+
+ + +
+ + + + + +
+ diff --git a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js new file mode 100644 index 0000000..436bab7 --- /dev/null +++ b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js @@ -0,0 +1,226 @@ +export class QueryBuilderRegexDirective { + constructor($log) { + 'ngInject'; + this.$log = $log; + + this.restrict = 'E'; + this.templateUrl = 'app/components/queryBuilderRegex/queryBuilderRegex.directive.html'; + this.scope = { + onSubmit: '&', /* callback after query is generated */ + allowAdvancedQuery: '=', + dataset: '=', /* either 'marclab' or 'flights' */ + resource: '=', /* url for sending type-ahead requests */ + main: '=', + defaultQuery: '=' + }; + + + this.controller = QueryController; + this.controllerAs = 'queryController'; + this.bindToController = true; + this.link = this.linkFn.bind(this); + } + + linkFn(scope, element) { + scope.queryController.element = element; + } +} + +class QueryController { + constructor($http, $q, $log, $timeout, $scope, cypherGeneratorService) { + 'ngInject'; + this.$http = $http; + this.$q = $q; + this.$log = $log; + this.$timeout = $timeout; + this.$scope = $scope; + this.cypherGenerator = cypherGeneratorService; + this.isMarclabData = this.allowAdvancedQuery; + this.isCypherWritable = false; + + this.reset(); + + this.$scope.$watch(function (scope) { + return scope.queryController.dataset; + }, this.reset.bind(this)); + + this.$scope.$on("filterChanged", this.onFilterChanged.bind(this)); + this.$scope.$on("setQuery", this.onSetQuery.bind(this)); + + } + + generateCypher() { + let result = ""; + if (!this.isCypherWritable) { + if (!this.isMarclabData) { + let input = {}; + input.nodes = [this.ui.nodes[0], this.ui.nodes[this.ui.nodes.length - 1]]; + result = this.cypherGenerator.generateBasicQuery(input, this.ui.selectedNumHops, this.dataset == "flights"); + } else { + result = this.cypherGenerator.generateAdvancedQuery(this.ui); + } + } else { + result = this.cypher; + } + return result; + } + + loadEdgeSuggestions(query) { + return this.loadSuggestions(query, "match_edge") + } + + loadNodeSuggestions(query) { + return this.loadSuggestions(query, "match") + } + + /** + * If user is not typing wildcard then ask server for type-ahead suggestions. + */ + loadSuggestions(query, endpoint) { + + let deferred = this.$q.defer(); + + if (query != "*" && query.length > 1) { + + let config = { + key: query, + graph_name: this.dataset + }; + + let parseResults = function (results) { + let suggestions = []; + for (let i = 0; i < results.data.length; ++i) { + let result = results.data[i]; + result.text = String(result.value) + " (" + result.attribute + ")"; + suggestions[i] = result; + } + deferred.resolve(suggestions); + }; + + this.$http.post(this.resource + endpoint, config).then(parseResults); + + } else if (query == "*") { + + this.$timeout(function () { + deferred.resolve([{ + text: "* (wildcard)", + attribute: "*", + name: "*" + }]) + }) + + } + + + return deferred.promise; + } + + onFilterChanged(signal, attribute, attributeNodeGroup, filter, isQuantitative, isEmptyFilter) { + let key = ""; + if (attributeNodeGroup == 0) { + key = "Start"; + } else if (attributeNodeGroup == 2) { + key = "Node"; + } else if (attributeNodeGroup == 1) { + key = "End"; + } + + if (!this.filters[key]) { + this.filters[key] = {}; + } + + let filterTexts = []; + if (filter && !isQuantitative) { + let filterNames = Object.keys(filter); + for (let i = 0; i < filterNames.length; ++i) { + if (!filter[filterNames[i]]) { + filterTexts.push(filterNames[i]); + } + } + } + + if (!isEmptyFilter) { + this.filters[key][attribute] = { + attribute: attribute, + attributeNodeGroup: attributeNodeGroup, + filter: filter, + filterTexts: filterTexts, + isQuantitative: isQuantitative + }; + } else { + this.filters[key][attribute] = null; + } + + } + + hasIntermediateNodeFilters() { + if (this.filters && this.filters["Node"]) { + let keys = Object.keys(this.filters["Node"]); + for (let i = 0; i < keys.length; ++i) { + if (this.filters["Node"][keys[i]]) { + return true; + } + } + } + return false; + } + + onSetQuery(signal, ui) { + this.reset(); + // if (ui) { + // this.ui = ui; + // this.onQueryModified(); + // } + } + + onQueryModified() { + this.main.queryUi = this.ui; + // this.cypher = this.generateCypher(); + } + + /** + * Give the query to whatever owns this component. + */ + onSubmitClicked() { + this.$log.debug(this.ui); + // this.onSubmit( + // { + // query: this.generateCypher(this.ui.selectedInterface) + // } + // ); + // this.filters = {}; + } + + reset() { + this.filters = {}; + this.ui = {}; + this.ui.availableNumHops = [1, 2, 3]; + this.ui.selectedNumHops = 2; + this.setNumHops(2); + this.cypher = ""; + this.placeholder = " "; + } + + /** + * Path length changed + */ + setNumHops(numHops) { + let keys = ["Start"]; + this.filters = {}; + this.ui.edges = []; + this.ui.nodes = []; + + // this.ui.nodes[0] = "node0"; + + for (let i = 0; i < numHops; ++i) { + this.ui.nodes.push("node"+i); + this.ui.edges.push("edge"+i); + } + this.ui.nodes.push("node"+numHops); + + this.ui.keys = keys; + this.onQueryModified(); + console.error(this.ui); + } + +} diff --git a/src/app/index.module.js b/src/app/index.module.js index c29664e..e02425f 100644 --- a/src/app/index.module.js +++ b/src/app/index.module.js @@ -24,6 +24,7 @@ import {QueryBuilderDirective} from "../app/components/queryBuilder/queryBuilder import {CypherGeneratorService} from "../app/components/queryBuilder/cypherGenerator.service" import {DataSelectionService} from "../app/components/dataSelection/dataSelection.service" import {DataSelectionController} from '../app/components/dataSelection/dataSelection.controller' +import {QueryBuilderRegexDirective} from "../app/components/queryBuilderRegex/queryBuilderRegex.directive" angular.module('connectivityMatrixJs', ['ngAnimate', 'ngCookies', 'ngTouch', 'ngSanitize', 'ngMessages', 'ngAria', 'ui.router', 'ui.bootstrap', 'toastr', 'ui.select', 'ngTagsInput']) .constant('malarkey', malarkey) @@ -50,5 +51,6 @@ angular.module('connectivityMatrixJs', ['ngAnimate', 'ngCookies', 'ngTouch', 'ng .service("colorScaleService", ColorScaleService) .service("cypherGeneratorService", CypherGeneratorService) .directive("queryBuilder", () => new QueryBuilderDirective()) + .directive("queryBuilderRegex", () => new QueryBuilderRegexDirective()) .service("dataSelectionService", DataSelectionService) .controller("DataSelectionController", DataSelectionController); diff --git a/src/app/main/main.controller.js b/src/app/main/main.controller.js index 24e2a52..e6fad4b 100644 --- a/src/app/main/main.controller.js +++ b/src/app/main/main.controller.js @@ -173,7 +173,6 @@ export class MainController { self.dataSelectionService.getSelectionFromList(defaultDataNames, dataValues, userSelectedDataCallback); }; - // Load all of the default data. let requests = []; for (let i = 0; i < defaultDataNames.length; ++i) { @@ -185,14 +184,20 @@ export class MainController { activate(jsonGraph, jsonMatrix, jsonQuery) { // Populate the model with default dataset + this.$log.debug(jsonQuery); let graph = this.cmGraphFactory.createFromJsonObject(jsonGraph, this.database); let matrix = this.cmMatrixFactory.createFromJsonObject(jsonMatrix); this.model = this.cmModelFactory.createModel(graph, matrix); - + let query = { + availableNumHops: [1, 2, 3], + selectedNumHops: 2, + nodes: ["*", "*", "*"], + edges: ["*", "*"] + }; let self = this; this.$timeout(function () { self.createMatrixAndUi(self.model); - self.$scope.$broadcast("setQuery", jsonQuery); + self.$scope.$broadcast("setQuery", query); }, 1); } diff --git a/src/app/main/main.html b/src/app/main/main.html index fb6b7b1..cedf973 100644 --- a/src/app/main/main.html +++ b/src/app/main/main.html @@ -30,7 +30,16 @@
- + + + + + + + + + - +

Connectivity Matrix Controls

From 68a00c5fd6d41412c408465443792c285f985180 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Thu, 15 Feb 2018 11:00:38 -0700 Subject: [PATCH 09/24] Clean-up query interface. --- .../queryBuilderRegex.directive.html | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html index ea10f55..a4c9848 100644 --- a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html +++ b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html @@ -1,4 +1,4 @@ -

{{queryController.isMarclabData ? "Connectome" : "Flight"}} Query

+

Connectome Query

@@ -32,13 +32,9 @@

{{queryController.isMarclabData ? "Connectome" : "Flight"}} Q
- - - - - +
From d4911236a504a50a3a4ebb2fe1f3d7242db21d48 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Wed, 15 Aug 2018 16:12:39 -0600 Subject: [PATCH 10/24] Prepare for client-only graph search. Fix lint errors. --- .eslintrc | 6 +- bower.json | 14 +- gulp/build.js | 4 +- gulpfile.js | 9 + package-lock.json | 23462 ++++++++++++++++ package.json | 61 +- .../connectivityMatrixView/cmMatrixBase.js | 9 - .../controls/cmAttributeControls.js | 2 +- .../controls/cmNodeLabelControls.js | 4 +- .../dataSelection/dataSelection.service.js | 2 +- src/app/components/modals/modals.service.js | 4 +- .../queryBuilderRegex.directive.html | 4 +- .../queryBuilderRegex.directive.js | 15 +- src/app/components/vis/visHistogram.js | 3 +- src/app/components/vis/visHistogramScent.js | 3 +- src/app/main/main.controller.js | 42 +- .../reorder => assets/ext}/reorder.v1.js | 0 .../reorder => assets/ext}/tiny-queue.js | 0 src/index.html | 7 +- 19 files changed, 23570 insertions(+), 81 deletions(-) create mode 100644 package-lock.json rename src/{app/components/reorder => assets/ext}/reorder.v1.js (100%) rename src/{app/components/reorder => assets/ext}/tiny-queue.js (100%) diff --git a/.eslintrc b/.eslintrc index e622f58..b57ac88 100644 --- a/.eslintrc +++ b/.eslintrc @@ -6,12 +6,12 @@ "browser": true, "jasmine": true }, - "ecmaFeatures": { - "modules": true - }, "globals": { "angular": true, "module": true, "inject": true + }, + "parserOptions": { + "sourceType": "module" } } diff --git a/bower.json b/bower.json index 3995062..b79ad40 100644 --- a/bower.json +++ b/bower.json @@ -1,5 +1,5 @@ { - "name": "connectivityMatrixJs", + "name": "graffinity", "version": "0.0.0", "dependencies": { "angular-animate": "~1.5.5", @@ -30,12 +30,13 @@ "file-saver": "^1.3.3" }, "devDependencies": { - "angular-mocks": "~1.4.2" + "angular-mocks": "~1.5.5" }, "overrides": { "bootstrap": { "main": [ "dist/css/bootstrap.css", + "dist/js/bootstrap.min.js", "dist/fonts/glyphicons-halflings-regular.eot", "dist/fonts/glyphicons-halflings-regular.svg", "dist/fonts/glyphicons-halflings-regular.ttf", @@ -44,7 +45,14 @@ ] }, "fontawesome": { - "main": "css/font-awesome.css" + "main": [ + "css/font-awesome.css", + "fonts/fontawesome-webfont.eot", + "fonts/fontawesome-webfont.svg", + "fonts/fontawesome-webfont.ttf", + "fonts/fontawesome-webfont.woff", + "fonts/fontawesome-webfont.woff2" + ] }, "ng-tags-input": { "main": [ diff --git a/gulp/build.js b/gulp/build.js index 98de16d..0b0e3e5 100644 --- a/gulp/build.js +++ b/gulp/build.js @@ -82,8 +82,8 @@ gulp.task('other', function () { }); return gulp.src([ - path.join(conf.paths.src, '/**/*'), - path.join('!' + conf.paths.src, '/**/*.{html,css,js}') + path.join(conf.paths.src, '/**/*.json'), + path.join(conf.paths.src, '/**/ext/*.js') ]) .pipe(fileFilter) .pipe(gulp.dest(path.join(conf.paths.dist, '/'))); diff --git a/gulpfile.js b/gulpfile.js index 5669b5d..273d561 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -8,6 +8,7 @@ var gulp = require('gulp'); var wrench = require('wrench'); +const ghPages = require('gulp-gh-pages'); /** * This will load all js or coffee files in the gulp directory @@ -27,3 +28,11 @@ wrench.readdirSyncRecursive('./gulp').filter(function(file) { gulp.task('default', ['clean'], function () { gulp.start('build'); }); + +/** + * Push to branch gh-pages. + */ +gulp.task('deploy', function() { + return gulp.src('./dist/**/*') + .pipe(ghPages()); +}); \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..d6a3f68 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,23462 @@ +{ + "name": "connectivityMatrixJs", + "version": "0.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "acorn": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz", + "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==" + }, + "acorn-jsx": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz", + "integrity": "sha512-JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw==", + "requires": { + "acorn": "5.7.1" + } + }, + "ajv": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz", + "integrity": "sha512-hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==", + "requires": { + "fast-deep-equal": "2.0.1", + "fast-json-stable-stringify": "2.0.0", + "json-schema-traverse": "0.4.1", + "uri-js": "4.2.2" + } + }, + "ajv-keywords": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", + "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=" + }, + "ansi-cyan": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz", + "integrity": "sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM=", + "dev": true, + "requires": { + "ansi-wrap": "0.1.0" + } + }, + "ansi-escapes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", + "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==" + }, + "ansi-red": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", + "integrity": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=", + "dev": true, + "requires": { + "ansi-wrap": "0.1.0" + } + }, + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "1.9.2" + } + }, + "ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "1.0.3" + } + }, + "arr-diff": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", + "integrity": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=", + "dev": true, + "requires": { + "arr-flatten": "1.1.0", + "array-slice": "0.2.3" + } + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + }, + "arr-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", + "integrity": "sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=", + "dev": true + }, + "array-slice": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", + "integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=", + "dev": true + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" + }, + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "requires": { + "chalk": "1.1.3", + "esutils": "2.0.2", + "js-tokens": "3.0.2" + } + }, + "babel-core": { + "version": "5.8.38", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-5.8.38.tgz", + "integrity": "sha1-H8ruedfmG3ULALjlT238nQr4ZVg=", + "dev": true, + "requires": { + "babel-plugin-constant-folding": "1.0.1", + "babel-plugin-dead-code-elimination": "1.0.2", + "babel-plugin-eval": "1.0.1", + "babel-plugin-inline-environment-variables": "1.0.1", + "babel-plugin-jscript": "1.0.4", + "babel-plugin-member-expression-literals": "1.0.1", + "babel-plugin-property-literals": "1.0.1", + "babel-plugin-proto-to-assign": "1.0.4", + "babel-plugin-react-constant-elements": "1.0.3", + "babel-plugin-react-display-name": "1.0.3", + "babel-plugin-remove-console": "1.0.1", + "babel-plugin-remove-debugger": "1.0.1", + "babel-plugin-runtime": "1.0.7", + "babel-plugin-undeclared-variables-check": "1.0.2", + "babel-plugin-undefined-to-void": "1.1.6", + "babylon": "5.8.38", + "bluebird": "2.11.0", + "chalk": "1.1.3", + "convert-source-map": "1.5.0", + "core-js": "1.2.7", + "debug": "2.6.8", + "detect-indent": "3.0.1", + "esutils": "2.0.2", + "fs-readdir-recursive": "0.1.2", + "globals": "6.4.1", + "home-or-tmp": "1.0.0", + "is-integer": "1.0.7", + "js-tokens": "1.0.1", + "json5": "0.4.0", + "lodash": "3.10.1", + "minimatch": "2.0.10", + "output-file-sync": "1.1.2", + "path-exists": "1.0.0", + "path-is-absolute": "1.0.1", + "private": "0.1.7", + "regenerator": "0.8.40", + "regexpu": "1.3.0", + "repeating": "1.1.3", + "resolve": "1.4.0", + "shebang-regex": "1.0.0", + "slash": "1.0.0", + "source-map": "0.5.6", + "source-map-support": "0.2.10", + "to-fast-properties": "1.0.3", + "trim-right": "1.0.1", + "try-resolve": "1.0.1" + }, + "dependencies": { + "babel-plugin-constant-folding": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz", + "integrity": "sha1-g2HTZMmORJw2kr26Ue/whEKQqo4=", + "dev": true + }, + "babel-plugin-dead-code-elimination": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz", + "integrity": "sha1-X3xFEnTc18zNv7s+C4XdKBIfD2U=", + "dev": true + }, + "babel-plugin-eval": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz", + "integrity": "sha1-ovrtJc5r5preS/7CY/cBaRlZUNo=", + "dev": true + }, + "babel-plugin-inline-environment-variables": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz", + "integrity": "sha1-H1jOkSB61qgmqL9kX6/mj/X+P/4=", + "dev": true + }, + "babel-plugin-jscript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz", + "integrity": "sha1-jzQsOCduh6R9X6CovT1etsytj8w=", + "dev": true + }, + "babel-plugin-member-expression-literals": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz", + "integrity": "sha1-zF7bD6qNyScXDnTW0cAkQAIWJNM=", + "dev": true + }, + "babel-plugin-property-literals": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz", + "integrity": "sha1-AlIwGQAZKYCxwRjv6kjOk6q4MzY=", + "dev": true + }, + "babel-plugin-proto-to-assign": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz", + "integrity": "sha1-xJ56/QL1d7xNoF6i3wAiUM980SM=", + "dev": true, + "requires": { + "lodash": "3.10.1" + } + }, + "babel-plugin-react-constant-elements": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz", + "integrity": "sha1-lGc26DeEKcvDSdz/YvUcFDs041o=", + "dev": true + }, + "babel-plugin-react-display-name": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz", + "integrity": "sha1-dU/jiSboQkpOexWrbqYTne4FFPw=", + "dev": true + }, + "babel-plugin-remove-console": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz", + "integrity": "sha1-2PJFVsOgUAXUKqqv0neH9T/wE6c=", + "dev": true + }, + "babel-plugin-remove-debugger": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz", + "integrity": "sha1-/S6jzWGkKK0fO5yJiC/0KT6MFMc=", + "dev": true + }, + "babel-plugin-runtime": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz", + "integrity": "sha1-v3x9lm3Vbs1cF/ocslPJrLflSq8=", + "dev": true + }, + "babel-plugin-undeclared-variables-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz", + "integrity": "sha1-XPGqU52BP/ZOmWQSkK9iCWX2Xe4=", + "dev": true, + "requires": { + "leven": "1.0.2" + }, + "dependencies": { + "leven": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/leven/-/leven-1.0.2.tgz", + "integrity": "sha1-kUS27ryl8dBoAWnxpncNzqYLdcM=", + "dev": true + } + } + }, + "babel-plugin-undefined-to-void": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz", + "integrity": "sha1-f1eO+LeN+uYAM4XYQXph7aBuL4E=", + "dev": true + }, + "babylon": { + "version": "5.8.38", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-5.8.38.tgz", + "integrity": "sha1-7JsSCxG/bM1Bc6GL8hfmC3mFn/0=", + "dev": true + }, + "bluebird": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz", + "integrity": "sha1-U0uQM8AiyVecVro7Plpcqvu2UOE=", + "dev": true + }, + "convert-source-map": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz", + "integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=", + "dev": true + }, + "core-js": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", + "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=", + "dev": true + }, + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "detect-indent": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-3.0.1.tgz", + "integrity": "sha1-ncXl3bzu+DJXZLlFGwK8bVQIT3U=", + "dev": true, + "requires": { + "get-stdin": "4.0.1", + "minimist": "1.2.0", + "repeating": "1.1.3" + }, + "dependencies": { + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true + }, + "fs-readdir-recursive": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz", + "integrity": "sha1-MVtPuMHKW4xH3v7zGdBz2tNWgFk=", + "dev": true + }, + "globals": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/globals/-/globals-6.4.1.tgz", + "integrity": "sha1-hJgDKzttHMge68X3lpDY/in6v08=", + "dev": true + }, + "home-or-tmp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-1.0.0.tgz", + "integrity": "sha1-S58eQIAMPlDGwn94FnavzOcfOYU=", + "dev": true, + "requires": { + "os-tmpdir": "1.0.2", + "user-home": "1.1.1" + }, + "dependencies": { + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "user-home": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz", + "integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=", + "dev": true + } + } + }, + "is-integer": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-integer/-/is-integer-1.0.7.tgz", + "integrity": "sha1-a96Bqs3feLZZtmKdYpytxRqIbVw=", + "dev": true, + "requires": { + "is-finite": "1.0.2" + }, + "dependencies": { + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + }, + "dependencies": { + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + } + } + } + } + }, + "js-tokens": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-1.0.1.tgz", + "integrity": "sha1-zENaXIuUrRWst5gxQPyAGCyJrq4=", + "dev": true + }, + "json5": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.4.0.tgz", + "integrity": "sha1-BUNS5MTIDIbAkjh31EneF2pzLI0=", + "dev": true + }, + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "output-file-sync": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz", + "integrity": "sha1-0KM+7+YaIF+suQCS6CZZjVJFznY=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "mkdirp": "0.5.1", + "object-assign": "4.1.1" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + } + } + }, + "path-exists": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-1.0.0.tgz", + "integrity": "sha1-1aiZjrce83p0w06w2eum6HjuoIE=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "private": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.7.tgz", + "integrity": "sha1-aM5eih7woju1cMwoU3tTMqumPvE=", + "dev": true + }, + "regenerator": { + "version": "0.8.40", + "resolved": "https://registry.npmjs.org/regenerator/-/regenerator-0.8.40.tgz", + "integrity": "sha1-oORXxY69uuV1yfjNdRJ+k3VkNdg=", + "dev": true, + "requires": { + "commoner": "0.10.8", + "defs": "1.1.1", + "esprima-fb": "15001.1001.0-dev-harmony-fb", + "private": "0.1.7", + "recast": "0.10.33", + "through": "2.3.8" + }, + "dependencies": { + "commoner": { + "version": "0.10.8", + "resolved": "https://registry.npmjs.org/commoner/-/commoner-0.10.8.tgz", + "integrity": "sha1-NPw2cs0kOT6LtH5wyqApOBH08sU=", + "dev": true, + "requires": { + "commander": "2.11.0", + "detective": "4.5.0", + "glob": "5.0.15", + "graceful-fs": "4.1.11", + "iconv-lite": "0.4.18", + "mkdirp": "0.5.1", + "private": "0.1.7", + "q": "1.5.0", + "recast": "0.11.23" + }, + "dependencies": { + "commander": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", + "integrity": "sha1-FXFS/R56bI2YpbcVzzdt+SgARWM=", + "dev": true + }, + "detective": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/detective/-/detective-4.5.0.tgz", + "integrity": "sha1-blqMaybmx6JUsca210kNmOyR7dE=", + "dev": true, + "requires": { + "acorn": "4.0.13", + "defined": "1.0.0" + }, + "dependencies": { + "acorn": { + "version": "4.0.13", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", + "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=", + "dev": true + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", + "dev": true + } + } + }, + "glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "dev": true, + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "2.0.10", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "iconv-lite": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz", + "integrity": "sha1-I9hlaxaq5nQqwpcy6o8DNqR4nPI=", + "dev": true + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "q": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.0.tgz", + "integrity": "sha1-3QG6ydBtMObyGa7LglPunr3DCPE=", + "dev": true + }, + "recast": { + "version": "0.11.23", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz", + "integrity": "sha1-RR/TAEqx5N+bTktmN2sqIZEkYtM=", + "dev": true, + "requires": { + "ast-types": "0.9.6", + "esprima": "3.1.3", + "private": "0.1.7", + "source-map": "0.5.6" + }, + "dependencies": { + "ast-types": { + "version": "0.9.6", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz", + "integrity": "sha1-ECyenpAF0+fjgpvwxPok7oYu6bk=", + "dev": true + }, + "esprima": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", + "dev": true + } + } + } + } + }, + "defs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/defs/-/defs-1.1.1.tgz", + "integrity": "sha1-siYJ8sehG6ej2xFoBcE5scr/qdI=", + "dev": true, + "requires": { + "alter": "0.2.0", + "ast-traverse": "0.1.1", + "breakable": "1.0.0", + "esprima-fb": "15001.1001.0-dev-harmony-fb", + "simple-fmt": "0.1.0", + "simple-is": "0.2.0", + "stringmap": "0.2.2", + "stringset": "0.2.1", + "tryor": "0.1.2", + "yargs": "3.27.0" + }, + "dependencies": { + "alter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/alter/-/alter-0.2.0.tgz", + "integrity": "sha1-x1iICGF1cgNKrmJICvJrHU0cs80=", + "dev": true, + "requires": { + "stable": "0.1.6" + }, + "dependencies": { + "stable": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.6.tgz", + "integrity": "sha1-kQ9dKu17Ugxud3SZwfMuE5/eyxA=", + "dev": true + } + } + }, + "ast-traverse": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ast-traverse/-/ast-traverse-0.1.1.tgz", + "integrity": "sha1-ac8rg4bxnc2hux4F1o/jWdiJfeY=", + "dev": true + }, + "breakable": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/breakable/-/breakable-1.0.0.tgz", + "integrity": "sha1-eEp5eRWjjq0nutRWtVcstLuqeME=", + "dev": true + }, + "simple-fmt": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/simple-fmt/-/simple-fmt-0.1.0.tgz", + "integrity": "sha1-GRv1ZqWeZTBILLJatTtKjchcOms=", + "dev": true + }, + "simple-is": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/simple-is/-/simple-is-0.2.0.tgz", + "integrity": "sha1-Krt1qt453rXMgVzhDmGRFkhQuvA=", + "dev": true + }, + "stringmap": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/stringmap/-/stringmap-0.2.2.tgz", + "integrity": "sha1-VWwTeyWPlCuHdvWy71gqoGnX0bE=", + "dev": true + }, + "stringset": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/stringset/-/stringset-0.2.1.tgz", + "integrity": "sha1-7yWcTjSTRDd/zRyRPdLoSMnAQrU=", + "dev": true + }, + "tryor": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/tryor/-/tryor-0.1.2.tgz", + "integrity": "sha1-gUXkynyv9ArN48z5Rui4u3W0Fys=", + "dev": true + }, + "yargs": { + "version": "3.27.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.27.0.tgz", + "integrity": "sha1-ISBUaTFuk5Ex1Z8toMbX+YIh6kA=", + "dev": true, + "requires": { + "camelcase": "1.2.1", + "cliui": "2.1.0", + "decamelize": "1.2.0", + "os-locale": "1.4.0", + "window-size": "0.1.4", + "y18n": "3.2.1" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", + "dev": true + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "dev": true, + "requires": { + "center-align": "0.1.3", + "right-align": "0.1.3", + "wordwrap": "0.0.2" + }, + "dependencies": { + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "dev": true, + "requires": { + "align-text": "0.1.4", + "lazy-cache": "1.0.4" + }, + "dependencies": { + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dev": true, + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + } + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", + "dev": true + } + } + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "dev": true, + "requires": { + "align-text": "0.1.4" + }, + "dependencies": { + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dev": true, + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + } + } + } + } + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "dev": true + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "dev": true, + "requires": { + "lcid": "1.0.0" + }, + "dependencies": { + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "dev": true, + "requires": { + "invert-kv": "1.0.0" + }, + "dependencies": { + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", + "dev": true + } + } + } + } + }, + "window-size": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz", + "integrity": "sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY=", + "dev": true + }, + "y18n": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", + "dev": true + } + } + } + } + }, + "esprima-fb": { + "version": "15001.1001.0-dev-harmony-fb", + "resolved": "https://registry.npmjs.org/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz", + "integrity": "sha1-Q761fsJujPI3092LM+QlM1d/Jlk=", + "dev": true + }, + "recast": { + "version": "0.10.33", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.10.33.tgz", + "integrity": "sha1-lCgI96oBbx+nFCxGHX5XBKqo1pc=", + "dev": true, + "requires": { + "ast-types": "0.8.12", + "esprima-fb": "15001.1001.0-dev-harmony-fb", + "private": "0.1.7", + "source-map": "0.5.6" + }, + "dependencies": { + "ast-types": { + "version": "0.8.12", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.8.12.tgz", + "integrity": "sha1-oNkOQ1G7iHcWyD/WN+v4GK9K38w=", + "dev": true + } + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + } + } + }, + "regexpu": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/regexpu/-/regexpu-1.3.0.tgz", + "integrity": "sha1-5TTcmRqeWEYFDJjebX3UpVyeoW0=", + "dev": true, + "requires": { + "esprima": "2.7.3", + "recast": "0.10.43", + "regenerate": "1.3.2", + "regjsgen": "0.2.0", + "regjsparser": "0.1.5" + }, + "dependencies": { + "esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", + "dev": true + }, + "recast": { + "version": "0.10.43", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.10.43.tgz", + "integrity": "sha1-uV1Q9tYHYaX2JS4V2AZ4FoSRzn8=", + "dev": true, + "requires": { + "ast-types": "0.8.15", + "esprima-fb": "15001.1001.0-dev-harmony-fb", + "private": "0.1.7", + "source-map": "0.5.6" + }, + "dependencies": { + "ast-types": { + "version": "0.8.15", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.8.15.tgz", + "integrity": "sha1-ju8IJ/BN/w7IhXupJavj/qYZTlI=", + "dev": true + }, + "esprima-fb": { + "version": "15001.1001.0-dev-harmony-fb", + "resolved": "https://registry.npmjs.org/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz", + "integrity": "sha1-Q761fsJujPI3092LM+QlM1d/Jlk=", + "dev": true + } + } + }, + "regenerate": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.2.tgz", + "integrity": "sha1-0ZQcZ7rUN+G+dkM63Vs4X5WxkmA=", + "dev": true + }, + "regjsgen": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", + "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", + "dev": true + }, + "regjsparser": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", + "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", + "dev": true, + "requires": { + "jsesc": "0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + } + } + } + } + }, + "repeating": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz", + "integrity": "sha1-PUEUIYh3U3SU+X93+Xhfq4EPpKw=", + "dev": true, + "requires": { + "is-finite": "1.0.2" + }, + "dependencies": { + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + }, + "dependencies": { + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + } + } + } + } + }, + "resolve": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz", + "integrity": "sha1-p1vgHFPaJdk0qY69DkxKcxL5KoY=", + "dev": true, + "requires": { + "path-parse": "1.0.5" + }, + "dependencies": { + "path-parse": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", + "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=", + "dev": true + } + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + }, + "source-map-support": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.2.10.tgz", + "integrity": "sha1-6lo5AKHByyUJagrozFwrSxDe09w=", + "dev": true, + "requires": { + "source-map": "0.1.32" + }, + "dependencies": { + "source-map": { + "version": "0.1.32", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz", + "integrity": "sha1-yLbBZ3l7pHQKjqMyUhYv8IWRsmY=", + "dev": true, + "requires": { + "amdefine": "1.0.1" + }, + "dependencies": { + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + } + } + } + } + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", + "dev": true + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "dev": true + }, + "try-resolve": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/try-resolve/-/try-resolve-1.0.1.tgz", + "integrity": "sha1-z95vq9ctY+V5fPqrhzq76OcA6RI=", + "dev": true + } + } + }, + "babel-loader": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-5.3.3.tgz", + "integrity": "sha1-dntKjgRK7sfhFbZS6zftfWF/oHM=", + "dev": true, + "requires": { + "babel-core": "5.8.38", + "loader-utils": "0.2.17", + "object-assign": "3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", + "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", + "dev": true, + "requires": { + "big.js": "3.1.3", + "emojis-list": "2.1.0", + "json5": "0.5.1", + "object-assign": "4.1.1" + }, + "dependencies": { + "big.js": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz", + "integrity": "sha1-TK2iGTZS6zyp7I5VyQFWacmAaXg=", + "dev": true + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + } + } + }, + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", + "dev": true + } + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "bindings": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz", + "integrity": "sha1-FK1hE4EtLTfXLme0ystLtyZQXxE=", + "dev": true, + "optional": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "requires": { + "expand-range": "1.8.2", + "preserve": "0.2.0", + "repeat-element": "1.1.2" + } + }, + "browser-sync": { + "version": "2.9.12", + "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.9.12.tgz", + "integrity": "sha1-IrAR5E5mUD4MAHYPfCtB/SSCaNY=", + "dev": true, + "requires": { + "anymatch": "1.3.2", + "async-each-series": "0.1.1", + "browser-sync-client": "2.5.1", + "browser-sync-ui": "0.5.19", + "chokidar": "1.7.0", + "connect": "3.6.3", + "dev-ip": "1.0.1", + "easy-extender": "2.3.2", + "eazy-logger": "2.1.3", + "emitter-steward": "1.0.0", + "foxy": "11.1.5", + "immutable": "3.8.1", + "localtunnel": "1.8.3", + "lodash": "3.10.1", + "longest": "1.0.1", + "meow": "3.3.0", + "opn": "3.0.3", + "portscanner": "1.2.0", + "query-string": "2.4.2", + "resp-modifier": "5.0.2", + "serve-index": "1.9.0", + "serve-static": "1.12.4", + "socket.io": "1.7.4", + "ua-parser-js": "0.7.14", + "ucfirst": "1.0.0" + }, + "dependencies": { + "anymatch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", + "integrity": "sha1-VT3Lj5HjyImEXf26NMd3IbkLnXo=", + "dev": true, + "requires": { + "micromatch": "2.3.11", + "normalize-path": "2.1.1" + }, + "dependencies": { + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "dev": true, + "requires": { + "arr-diff": "2.0.0", + "array-unique": "0.2.1", + "braces": "1.8.5", + "expand-brackets": "0.1.5", + "extglob": "0.3.2", + "filename-regex": "2.0.1", + "is-extglob": "1.0.0", + "is-glob": "2.0.1", + "kind-of": "3.2.2", + "normalize-path": "2.1.1", + "object.omit": "2.0.1", + "parse-glob": "3.0.4", + "regex-cache": "0.4.3" + }, + "dependencies": { + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "dev": true, + "requires": { + "arr-flatten": "1.1.0" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=", + "dev": true + } + } + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "dev": true, + "requires": { + "expand-range": "1.8.2", + "preserve": "0.2.0", + "repeat-element": "1.1.2" + }, + "dependencies": { + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "dev": true, + "requires": { + "fill-range": "2.2.3" + }, + "dependencies": { + "fill-range": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", + "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", + "dev": true, + "requires": { + "is-number": "2.1.0", + "isobject": "2.1.0", + "randomatic": "1.1.7", + "repeat-element": "1.1.2", + "repeat-string": "1.6.1" + }, + "dependencies": { + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + } + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "randomatic": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", + "integrity": "sha1-x6vpzIuHwLqodrGf3oP9RkeX44w=", + "dev": true, + "requires": { + "is-number": "3.0.0", + "kind-of": "4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + } + } + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + } + } + } + } + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", + "dev": true + }, + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "dev": true + } + } + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "dev": true, + "requires": { + "is-posix-bracket": "0.1.1" + }, + "dependencies": { + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", + "dev": true + } + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + } + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", + "dev": true + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "dev": true, + "requires": { + "for-own": "0.1.5", + "is-extendable": "0.1.1" + }, + "dependencies": { + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "dev": true, + "requires": { + "for-in": "1.0.2" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + } + } + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "dev": true, + "requires": { + "glob-base": "0.3.0", + "is-dotfile": "1.0.3", + "is-extglob": "1.0.0", + "is-glob": "2.0.1" + }, + "dependencies": { + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "dev": true, + "requires": { + "glob-parent": "2.0.0", + "is-glob": "2.0.1" + }, + "dependencies": { + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true, + "requires": { + "is-glob": "2.0.1" + } + } + } + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", + "dev": true + } + } + }, + "regex-cache": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz", + "integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=", + "dev": true, + "requires": { + "is-equal-shallow": "0.1.3", + "is-primitive": "2.0.0" + }, + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "dev": true, + "requires": { + "is-primitive": "2.0.0" + } + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", + "dev": true + } + } + } + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "1.1.0" + }, + "dependencies": { + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + } + } + } + } + }, + "async-each-series": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz", + "integrity": "sha1-dhfBkXQB/Yykooqtzj266Yr+tDI=", + "dev": true + }, + "browser-sync-client": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.5.1.tgz", + "integrity": "sha1-7BrWmknC4tS2RbGLHAbCmz2a+Os=", + "dev": true, + "requires": { + "etag": "1.8.0", + "fresh": "0.3.0" + }, + "dependencies": { + "etag": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.0.tgz", + "integrity": "sha1-b2Ma7zNtbEY2K1F2QETOIWvjwFE=", + "dev": true + }, + "fresh": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz", + "integrity": "sha1-ZR+DjiJCTnVm3hYdg1jKoZn4PU8=", + "dev": true + } + } + }, + "browser-sync-ui": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-0.5.19.tgz", + "integrity": "sha1-EAP/a8UtCR8PckBUJjch+2otv3s=", + "dev": true, + "requires": { + "async-each-series": "0.1.1", + "connect-history-api-fallback": "1.3.0", + "immutable": "3.8.1", + "stream-throttle": "0.1.3", + "weinre": "2.0.0-pre-I0Z7U9OV" + }, + "dependencies": { + "connect-history-api-fallback": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz", + "integrity": "sha1-5R0X+PDvDbkKZP20feMFFVbp8Wk=", + "dev": true + }, + "stream-throttle": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz", + "integrity": "sha1-rdV8jXzHOoFjDTHNVdOWHPr7qcM=", + "dev": true, + "requires": { + "commander": "2.11.0", + "limiter": "1.1.2" + }, + "dependencies": { + "commander": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", + "integrity": "sha1-FXFS/R56bI2YpbcVzzdt+SgARWM=", + "dev": true + }, + "limiter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.2.tgz", + "integrity": "sha1-Ip2AVYkcixGvng7lIA6OCbs9y+s=", + "dev": true + } + } + }, + "weinre": { + "version": "2.0.0-pre-I0Z7U9OV", + "resolved": "https://registry.npmjs.org/weinre/-/weinre-2.0.0-pre-I0Z7U9OV.tgz", + "integrity": "sha1-/viqIjkh97QLu71MPtQwL2/QqBM=", + "dev": true, + "requires": { + "express": "2.5.11", + "nopt": "3.0.6", + "underscore": "1.7.0" + }, + "dependencies": { + "express": { + "version": "2.5.11", + "resolved": "https://registry.npmjs.org/express/-/express-2.5.11.tgz", + "integrity": "sha1-TOjqHzY15p5J8Ou0l7aksKUc5vA=", + "dev": true, + "requires": { + "connect": "1.9.2", + "mime": "1.2.4", + "mkdirp": "0.3.0", + "qs": "0.4.2" + }, + "dependencies": { + "connect": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/connect/-/connect-1.9.2.tgz", + "integrity": "sha1-QogKIulDiuWait105Df1iujlKAc=", + "dev": true, + "requires": { + "formidable": "1.0.17", + "mime": "1.2.4", + "qs": "0.4.2" + }, + "dependencies": { + "formidable": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.0.17.tgz", + "integrity": "sha1-71SRSQ+UM7cF+qdyScmQKa40hVk=", + "dev": true + } + } + }, + "mime": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.4.tgz", + "integrity": "sha1-EbX9rynCUJJVF2uArVIClPXekrc=", + "dev": true + }, + "mkdirp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz", + "integrity": "sha1-G79asbqCevI1dRQ0kEJkVfSB/h4=", + "dev": true + }, + "qs": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-0.4.2.tgz", + "integrity": "sha1-PKxMhh43GoycR3CsI82o3mObjl8=", + "dev": true + } + } + }, + "nopt": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", + "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", + "dev": true, + "requires": { + "abbrev": "1.1.0" + }, + "dependencies": { + "abbrev": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz", + "integrity": "sha1-0FVMIlZjbi9W58LlrRg/hZQo2B8=", + "dev": true + } + } + }, + "underscore": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz", + "integrity": "sha1-a7rwh3UA02vjTsqlhODbn+8DUgk=", + "dev": true + } + } + } + } + }, + "chokidar": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", + "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", + "dev": true, + "requires": { + "anymatch": "1.3.2", + "async-each": "1.0.1", + "fsevents": "1.2.4", + "glob-parent": "2.0.0", + "inherits": "2.0.3", + "is-binary-path": "1.0.1", + "is-glob": "2.0.1", + "path-is-absolute": "1.0.1", + "readdirp": "2.1.0" + }, + "dependencies": { + "async-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", + "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", + "dev": true + }, + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true, + "requires": { + "is-glob": "2.0.1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "1.10.0" + }, + "dependencies": { + "binary-extensions": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.10.0.tgz", + "integrity": "sha1-muuabF6IY4qtFx4Wf1kAq+JINdA=", + "dev": true + } + } + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "readdirp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", + "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "minimatch": "3.0.4", + "readable-stream": "2.3.3", + "set-immediate-shim": "1.0.1" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", + "dev": true + } + } + } + } + }, + "connect": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.3.tgz", + "integrity": "sha1-9zINRqJbS+e0g6IjZRfySx4n4wE=", + "dev": true, + "requires": { + "debug": "2.6.8", + "finalhandler": "1.0.4", + "parseurl": "1.3.1", + "utils-merge": "1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "finalhandler": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.4.tgz", + "integrity": "sha1-GFdPLnxLmLiuOyMMIfIB8xvbP7c=", + "dev": true, + "requires": { + "debug": "2.6.8", + "encodeurl": "1.0.1", + "escape-html": "1.0.3", + "on-finished": "2.3.0", + "parseurl": "1.3.1", + "statuses": "1.3.1", + "unpipe": "1.0.0" + }, + "dependencies": { + "encodeurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz", + "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + } + } + }, + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + } + } + }, + "parseurl": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz", + "integrity": "sha1-yKuMkiO6NIiKpkopeyiFO+wY2lY=", + "dev": true + }, + "utils-merge": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz", + "integrity": "sha1-ApT7kiu5N1FTVBxPcJYjHyh8ivg=", + "dev": true + } + } + }, + "dev-ip": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz", + "integrity": "sha1-p2o+0YVb56ASu4rBbLgPPADcKPA=", + "dev": true + }, + "easy-extender": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.2.tgz", + "integrity": "sha1-PTJI/r4rFZYHMW2PnPSRwWZIIh0=", + "dev": true, + "requires": { + "lodash": "3.10.1" + } + }, + "eazy-logger": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/eazy-logger/-/eazy-logger-2.1.3.tgz", + "integrity": "sha1-7soytVLm7JJqGbYDZt//OJQwBnU=", + "dev": true, + "requires": { + "lodash.clonedeep": "4.3.1", + "opt-merger": "1.1.1", + "tfunk": "3.1.0" + }, + "dependencies": { + "lodash.clonedeep": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.3.1.tgz", + "integrity": "sha1-lL1OUme+L3L1Z6oLe2UMUETiTnE=", + "dev": true, + "requires": { + "lodash._baseclone": "4.5.7" + }, + "dependencies": { + "lodash._baseclone": { + "version": "4.5.7", + "resolved": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz", + "integrity": "sha1-zkKt4IOE711i+nfDD2GkbmhvhDQ=", + "dev": true + } + } + }, + "opt-merger": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/opt-merger/-/opt-merger-1.1.1.tgz", + "integrity": "sha1-30mVcJlBKHqEZ/nOWO4Gv0pk/0E=", + "dev": true, + "requires": { + "lodash": "3.10.1", + "minimist": "1.2.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } + }, + "tfunk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tfunk/-/tfunk-3.1.0.tgz", + "integrity": "sha1-OORBT8ZJd9h6/apy+sttKfgve1s=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "object-path": "0.9.2" + }, + "dependencies": { + "object-path": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz", + "integrity": "sha1-D9mnT8X60a45aLWGvaXGMr1sBaU=", + "dev": true + } + } + } + } + }, + "emitter-steward": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/emitter-steward/-/emitter-steward-1.0.0.tgz", + "integrity": "sha1-80Ea3pdYp1Zd+Eiy2gy70bRsvWQ=", + "dev": true + }, + "foxy": { + "version": "11.1.5", + "resolved": "https://registry.npmjs.org/foxy/-/foxy-11.1.5.tgz", + "integrity": "sha1-t+B9jOqSh/ApKYAHCD9Jh8iqtFg=", + "dev": true, + "requires": { + "connect": "3.6.3", + "dev-ip": "1.0.1", + "eazy-logger": "2.1.3", + "http-proxy": "1.16.2", + "lodash.merge": "3.3.2", + "meow": "3.3.0", + "resp-modifier": "4.0.4" + }, + "dependencies": { + "http-proxy": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz", + "integrity": "sha1-Bt/ykpUr9k2+hHH6nfcwZtTzd0I=", + "dev": true, + "requires": { + "eventemitter3": "1.2.0", + "requires-port": "1.0.0" + }, + "dependencies": { + "eventemitter3": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz", + "integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg=", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + } + } + }, + "lodash.merge": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz", + "integrity": "sha1-DZDZPtY3sYeEN7s+IWASYNev6ZQ=", + "dev": true, + "requires": { + "lodash._arraycopy": "3.0.0", + "lodash._arrayeach": "3.0.0", + "lodash._createassigner": "3.1.1", + "lodash._getnative": "3.9.1", + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4", + "lodash.isplainobject": "3.2.0", + "lodash.istypedarray": "3.0.6", + "lodash.keys": "3.1.2", + "lodash.keysin": "3.0.8", + "lodash.toplainobject": "3.0.0" + }, + "dependencies": { + "lodash._arraycopy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz", + "integrity": "sha1-due3wfH7klRzdIeKVi7Qaj5Q9uE=", + "dev": true + }, + "lodash._arrayeach": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz", + "integrity": "sha1-urFWsqkNPxu9XGU0AzSeXlkz754=", + "dev": true + }, + "lodash._createassigner": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz", + "integrity": "sha1-g4pbri/aymOsIt7o4Z+k5taXCxE=", + "dev": true, + "requires": { + "lodash._bindcallback": "3.0.1", + "lodash._isiterateecall": "3.0.9", + "lodash.restparam": "3.6.1" + }, + "dependencies": { + "lodash._bindcallback": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", + "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=", + "dev": true + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", + "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", + "dev": true + }, + "lodash.restparam": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", + "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", + "dev": true + } + } + }, + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", + "dev": true + }, + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + }, + "lodash.isplainobject": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz", + "integrity": "sha1-moI4rhayAEMpYM1zRlEtASP79MU=", + "dev": true, + "requires": { + "lodash._basefor": "3.0.3", + "lodash.isarguments": "3.1.0", + "lodash.keysin": "3.0.8" + }, + "dependencies": { + "lodash._basefor": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz", + "integrity": "sha1-dVC06SGO8J+tJDQ7YSAhx5tMIMI=", + "dev": true + } + } + }, + "lodash.istypedarray": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz", + "integrity": "sha1-yaR3SYYHUB2OhJTSg7h8OSgc72I=", + "dev": true + }, + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "dev": true, + "requires": { + "lodash._getnative": "3.9.1", + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4" + } + }, + "lodash.keysin": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz", + "integrity": "sha1-IsRJPrvtsUJ5YqVLRFssinZ/tH8=", + "dev": true, + "requires": { + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4" + } + }, + "lodash.toplainobject": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz", + "integrity": "sha1-KHkK2ULSk9eKpmOgfs9/UsoEGY0=", + "dev": true, + "requires": { + "lodash._basecopy": "3.0.1", + "lodash.keysin": "3.0.8" + }, + "dependencies": { + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", + "dev": true + } + } + } + } + }, + "resp-modifier": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-4.0.4.tgz", + "integrity": "sha1-jZBcwYxAiUmlVO65yZt1/5zwo/o=", + "dev": true, + "requires": { + "minimatch": "2.0.10" + }, + "dependencies": { + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + } + } + } + } + }, + "immutable": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.1.tgz", + "integrity": "sha1-IAgH8Rqw9ycQ6khVQt4IgHX2jNI=", + "dev": true + }, + "localtunnel": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-1.8.3.tgz", + "integrity": "sha1-3MWSL9hWUQN9S94k/ZMkjQsk6wU=", + "dev": true, + "requires": { + "debug": "2.6.8", + "openurl": "1.1.1", + "request": "2.81.0", + "yargs": "3.29.0" + }, + "dependencies": { + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "openurl": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz", + "integrity": "sha1-OHW0sO96UsFW8NtB1GCduw+Us4c=", + "dev": true + }, + "request": { + "version": "2.81.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.81.0.tgz", + "integrity": "sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=", + "dev": true, + "requires": { + "aws-sign2": "0.6.0", + "aws4": "1.6.0", + "caseless": "0.12.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.1.4", + "har-validator": "4.2.1", + "hawk": "3.1.3", + "http-signature": "1.1.1", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.16", + "oauth-sign": "0.8.2", + "performance-now": "0.2.0", + "qs": "6.4.0", + "safe-buffer": "5.1.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.2", + "tunnel-agent": "0.6.0", + "uuid": "3.1.0" + }, + "dependencies": { + "aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", + "dev": true + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "dev": true, + "requires": { + "delayed-stream": "1.0.0" + }, + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + } + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", + "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", + "dev": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.16" + }, + "dependencies": { + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + } + } + }, + "har-validator": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz", + "integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=", + "dev": true, + "requires": { + "ajv": "4.11.8", + "har-schema": "1.0.5" + }, + "dependencies": { + "ajv": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", + "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", + "dev": true, + "requires": { + "co": "4.6.0", + "json-stable-stringify": "1.0.1" + }, + "dependencies": { + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true, + "requires": { + "jsonify": "0.0.0" + }, + "dependencies": { + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true + } + } + } + } + }, + "har-schema": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz", + "integrity": "sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4=", + "dev": true + } + } + }, + "hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", + "dev": true, + "requires": { + "boom": "2.10.1", + "cryptiles": "2.0.5", + "hoek": "2.16.3", + "sntp": "1.0.9" + }, + "dependencies": { + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "dev": true, + "requires": { + "hoek": "2.16.3" + } + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "dev": true, + "requires": { + "boom": "2.10.1" + } + }, + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=", + "dev": true + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "dev": true, + "requires": { + "hoek": "2.16.3" + } + } + } + }, + "http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "dev": true, + "requires": { + "assert-plus": "0.2.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + }, + "dependencies": { + "assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", + "dev": true + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + } + } + } + } + }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "dev": true, + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + }, + "dependencies": { + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", + "dev": true + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "dev": true, + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "dev": true, + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true, + "optional": true + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true, + "optional": true + } + } + } + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "mime-types": { + "version": "2.1.16", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.16.tgz", + "integrity": "sha1-K4WKUuXs1RbbiXrCvodIeDBpjiM=", + "dev": true, + "requires": { + "mime-db": "1.29.0" + }, + "dependencies": { + "mime-db": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.29.0.tgz", + "integrity": "sha1-SNJtI1WJZRcErFkWygYAGRQmaHg=", + "dev": true + } + } + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "dev": true + }, + "performance-now": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz", + "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=", + "dev": true + }, + "qs": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", + "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", + "dev": true + }, + "tough-cookie": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz", + "integrity": "sha1-8IH3bkyFcg5sN6X6ztc3FQ2EByo=", + "dev": true, + "requires": { + "punycode": "1.4.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + } + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "uuid": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", + "integrity": "sha1-PdPT55Crwk17DToDT/q6vijrvAQ=", + "dev": true + } + } + }, + "yargs": { + "version": "3.29.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.29.0.tgz", + "integrity": "sha1-GquWYOrnnYuPZ1vK7qtu40ws9pw=", + "dev": true, + "requires": { + "camelcase": "1.2.1", + "cliui": "3.2.0", + "decamelize": "1.2.0", + "os-locale": "1.4.0", + "window-size": "0.1.4", + "y18n": "3.2.1" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", + "dev": true + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wrap-ansi": "2.1.0" + }, + "dependencies": { + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + }, + "dependencies": { + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + }, + "dependencies": { + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + } + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + } + } + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1" + } + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "dev": true, + "requires": { + "lcid": "1.0.0" + }, + "dependencies": { + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "dev": true, + "requires": { + "invert-kv": "1.0.0" + }, + "dependencies": { + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", + "dev": true + } + } + } + } + }, + "window-size": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz", + "integrity": "sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY=", + "dev": true + }, + "y18n": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", + "dev": true + } + } + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true + }, + "meow": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.3.0.tgz", + "integrity": "sha1-+Hd/0Ntn9z0d4b7uCMl8hmXvxu0=", + "dev": true, + "requires": { + "camelcase-keys": "1.0.0", + "indent-string": "1.2.2", + "minimist": "1.2.0", + "object-assign": "3.0.0" + }, + "dependencies": { + "camelcase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-1.0.0.tgz", + "integrity": "sha1-vRoRv5sxoc5JNJOpMN4aC69K1+w=", + "dev": true, + "requires": { + "camelcase": "1.2.1", + "map-obj": "1.0.1" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", + "dev": true + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + } + } + }, + "indent-string": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-1.2.2.tgz", + "integrity": "sha1-25m8xYPrarux5I3LsZmamGBBy2s=", + "dev": true, + "requires": { + "get-stdin": "4.0.1", + "minimist": "1.2.0", + "repeating": "1.1.3" + }, + "dependencies": { + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "repeating": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz", + "integrity": "sha1-PUEUIYh3U3SU+X93+Xhfq4EPpKw=", + "dev": true, + "requires": { + "is-finite": "1.0.2" + }, + "dependencies": { + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + }, + "dependencies": { + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + } + } + } + } + } + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", + "dev": true + } + } + }, + "opn": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/opn/-/opn-3.0.3.tgz", + "integrity": "sha1-ttmec5n3jWXDuq/+8fsojpuFJDo=", + "dev": true, + "requires": { + "object-assign": "4.1.1" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + } + } + }, + "portscanner": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-1.2.0.tgz", + "integrity": "sha1-sUu9olfRTDEPqcwJaCrwLUCWGAI=", + "dev": true, + "requires": { + "async": "1.5.2" + }, + "dependencies": { + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true + } + } + }, + "query-string": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-2.4.2.tgz", + "integrity": "sha1-fbBmZCCAS6qSrp8miWKFWnYUPfs=", + "dev": true, + "requires": { + "strict-uri-encode": "1.1.0" + }, + "dependencies": { + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "dev": true + } + } + }, + "resp-modifier": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-5.0.2.tgz", + "integrity": "sha1-vwqm2/KM0MoMtsxJD/tVlDoL9Fw=", + "dev": true, + "requires": { + "debug": "2.6.8", + "minimatch": "2.0.10" + }, + "dependencies": { + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + } + } + }, + "serve-index": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.0.tgz", + "integrity": "sha1-0rKA/FYNYW7oG0i/D6gqvtJIXOc=", + "dev": true, + "requires": { + "accepts": "1.3.3", + "batch": "0.6.1", + "debug": "2.6.8", + "escape-html": "1.0.3", + "http-errors": "1.6.2", + "mime-types": "2.1.16", + "parseurl": "1.3.1" + }, + "dependencies": { + "accepts": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz", + "integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=", + "dev": true, + "requires": { + "mime-types": "2.1.16", + "negotiator": "0.6.1" + }, + "dependencies": { + "negotiator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", + "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", + "dev": true + } + } + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "http-errors": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", + "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", + "dev": true, + "requires": { + "depd": "1.1.1", + "inherits": "2.0.3", + "setprototypeof": "1.0.3", + "statuses": "1.3.1" + }, + "dependencies": { + "depd": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", + "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "setprototypeof": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", + "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=", + "dev": true + }, + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=", + "dev": true + } + } + }, + "mime-types": { + "version": "2.1.16", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.16.tgz", + "integrity": "sha1-K4WKUuXs1RbbiXrCvodIeDBpjiM=", + "dev": true, + "requires": { + "mime-db": "1.29.0" + }, + "dependencies": { + "mime-db": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.29.0.tgz", + "integrity": "sha1-SNJtI1WJZRcErFkWygYAGRQmaHg=", + "dev": true + } + } + }, + "parseurl": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz", + "integrity": "sha1-yKuMkiO6NIiKpkopeyiFO+wY2lY=", + "dev": true + } + } + }, + "serve-static": { + "version": "1.12.4", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.12.4.tgz", + "integrity": "sha1-m2qpjutyU8Tu3Ewfb9vKYJkBqWE=", + "dev": true, + "requires": { + "encodeurl": "1.0.1", + "escape-html": "1.0.3", + "parseurl": "1.3.1", + "send": "0.15.4" + }, + "dependencies": { + "encodeurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz", + "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "parseurl": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz", + "integrity": "sha1-yKuMkiO6NIiKpkopeyiFO+wY2lY=", + "dev": true + }, + "send": { + "version": "0.15.4", + "resolved": "https://registry.npmjs.org/send/-/send-0.15.4.tgz", + "integrity": "sha1-mF+qPihLAnPHkzZKNcZze9k5Bbk=", + "dev": true, + "requires": { + "debug": "2.6.8", + "depd": "1.1.1", + "destroy": "1.0.4", + "encodeurl": "1.0.1", + "escape-html": "1.0.3", + "etag": "1.8.0", + "fresh": "0.5.0", + "http-errors": "1.6.2", + "mime": "1.3.4", + "ms": "2.0.0", + "on-finished": "2.3.0", + "range-parser": "1.2.0", + "statuses": "1.3.1" + }, + "dependencies": { + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", + "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=", + "dev": true + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "etag": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.0.tgz", + "integrity": "sha1-b2Ma7zNtbEY2K1F2QETOIWvjwFE=", + "dev": true + }, + "fresh": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.0.tgz", + "integrity": "sha1-9HTKXmqSRtb9jglTz6m5yAWvp44=", + "dev": true + }, + "http-errors": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", + "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", + "dev": true, + "requires": { + "depd": "1.1.1", + "inherits": "2.0.3", + "setprototypeof": "1.0.3", + "statuses": "1.3.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "setprototypeof": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", + "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=", + "dev": true + } + } + }, + "mime": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", + "integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM=", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + } + } + }, + "range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", + "dev": true + }, + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=", + "dev": true + } + } + } + } + }, + "socket.io": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-1.7.4.tgz", + "integrity": "sha1-L37O3DORvy1cc+KR/iM+bjTU3QA=", + "dev": true, + "requires": { + "debug": "2.3.3", + "engine.io": "1.8.4", + "has-binary": "0.1.7", + "object-assign": "4.1.0", + "socket.io-adapter": "0.5.0", + "socket.io-client": "1.7.4", + "socket.io-parser": "2.3.1" + }, + "dependencies": { + "debug": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz", + "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=", + "dev": true, + "requires": { + "ms": "0.7.2" + }, + "dependencies": { + "ms": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz", + "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=", + "dev": true + } + } + }, + "engine.io": { + "version": "1.8.4", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-1.8.4.tgz", + "integrity": "sha1-d7zhK4Dl1gQpM3/sOw2vaR68kAM=", + "dev": true, + "requires": { + "accepts": "1.3.3", + "base64id": "1.0.0", + "cookie": "0.3.1", + "debug": "2.3.3", + "engine.io-parser": "1.3.2", + "ws": "1.1.4" + }, + "dependencies": { + "accepts": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz", + "integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=", + "dev": true, + "requires": { + "mime-types": "2.1.16", + "negotiator": "0.6.1" + }, + "dependencies": { + "mime-types": { + "version": "2.1.16", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.16.tgz", + "integrity": "sha1-K4WKUuXs1RbbiXrCvodIeDBpjiM=", + "dev": true, + "requires": { + "mime-db": "1.29.0" + }, + "dependencies": { + "mime-db": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.29.0.tgz", + "integrity": "sha1-SNJtI1WJZRcErFkWygYAGRQmaHg=", + "dev": true + } + } + }, + "negotiator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", + "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", + "dev": true + } + } + }, + "base64id": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz", + "integrity": "sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=", + "dev": true + }, + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", + "dev": true + }, + "engine.io-parser": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz", + "integrity": "sha1-k3sHnwAH0Ik+xW1GyyILjLQ1Igo=", + "dev": true, + "requires": { + "after": "0.8.2", + "arraybuffer.slice": "0.0.6", + "base64-arraybuffer": "0.1.5", + "blob": "0.0.4", + "has-binary": "0.1.7", + "wtf-8": "1.0.0" + }, + "dependencies": { + "after": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", + "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=", + "dev": true + }, + "arraybuffer.slice": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz", + "integrity": "sha1-8zshWfBTKj8xB6JywMz70a0peco=", + "dev": true + }, + "base64-arraybuffer": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", + "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=", + "dev": true + }, + "blob": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz", + "integrity": "sha1-vPEwUspURj8w+fx+lbmkdjCpSSE=", + "dev": true + }, + "wtf-8": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wtf-8/-/wtf-8-1.0.0.tgz", + "integrity": "sha1-OS2LotDxw00e4tYw8V0O+2jhBIo=", + "dev": true + } + } + }, + "ws": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.4.tgz", + "integrity": "sha1-V/QNA2gy5fUFVmKjl8Tedu1mv2E=", + "dev": true, + "requires": { + "options": "0.0.6", + "ultron": "1.0.2" + }, + "dependencies": { + "options": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", + "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=", + "dev": true + }, + "ultron": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", + "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=", + "dev": true + } + } + } + } + }, + "has-binary": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz", + "integrity": "sha1-aOYesWIQyVRaClzOBqhzkS/h5ow=", + "dev": true, + "requires": { + "isarray": "0.0.1" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + } + } + }, + "object-assign": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz", + "integrity": "sha1-ejs9DpgGPUP0wD8uiubNUahog6A=", + "dev": true + }, + "socket.io-adapter": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz", + "integrity": "sha1-y21LuL7IHhB4uZZ3+c7QBGBmu4s=", + "dev": true, + "requires": { + "debug": "2.3.3", + "socket.io-parser": "2.3.1" + } + }, + "socket.io-client": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.7.4.tgz", + "integrity": "sha1-7J+CA1btme9tNX8HVtZIcXvdQoE=", + "dev": true, + "requires": { + "backo2": "1.0.2", + "component-bind": "1.0.0", + "component-emitter": "1.2.1", + "debug": "2.3.3", + "engine.io-client": "1.8.4", + "has-binary": "0.1.7", + "indexof": "0.0.1", + "object-component": "0.0.3", + "parseuri": "0.0.5", + "socket.io-parser": "2.3.1", + "to-array": "0.1.4" + }, + "dependencies": { + "backo2": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", + "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", + "dev": true + }, + "component-bind": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz", + "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=", + "dev": true + }, + "component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", + "dev": true + }, + "engine.io-client": { + "version": "1.8.4", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.8.4.tgz", + "integrity": "sha1-n+hd7iWFPKa6viW9KtaHEIY+kcI=", + "dev": true, + "requires": { + "component-emitter": "1.2.1", + "component-inherit": "0.0.3", + "debug": "2.3.3", + "engine.io-parser": "1.3.2", + "has-cors": "1.1.0", + "indexof": "0.0.1", + "parsejson": "0.0.3", + "parseqs": "0.0.5", + "parseuri": "0.0.5", + "ws": "1.1.2", + "xmlhttprequest-ssl": "1.5.3", + "yeast": "0.1.2" + }, + "dependencies": { + "component-inherit": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz", + "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=", + "dev": true + }, + "engine.io-parser": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz", + "integrity": "sha1-k3sHnwAH0Ik+xW1GyyILjLQ1Igo=", + "dev": true, + "requires": { + "after": "0.8.2", + "arraybuffer.slice": "0.0.6", + "base64-arraybuffer": "0.1.5", + "blob": "0.0.4", + "has-binary": "0.1.7", + "wtf-8": "1.0.0" + }, + "dependencies": { + "after": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", + "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=", + "dev": true + }, + "arraybuffer.slice": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz", + "integrity": "sha1-8zshWfBTKj8xB6JywMz70a0peco=", + "dev": true + }, + "base64-arraybuffer": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", + "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=", + "dev": true + }, + "blob": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz", + "integrity": "sha1-vPEwUspURj8w+fx+lbmkdjCpSSE=", + "dev": true + }, + "wtf-8": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wtf-8/-/wtf-8-1.0.0.tgz", + "integrity": "sha1-OS2LotDxw00e4tYw8V0O+2jhBIo=", + "dev": true + } + } + }, + "has-cors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", + "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=", + "dev": true + }, + "parsejson": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/parsejson/-/parsejson-0.0.3.tgz", + "integrity": "sha1-q343WfIJ7OmUN5c/fQ8fZK4OZKs=", + "dev": true, + "requires": { + "better-assert": "1.0.2" + }, + "dependencies": { + "better-assert": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", + "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=", + "dev": true, + "requires": { + "callsite": "1.0.0" + }, + "dependencies": { + "callsite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", + "dev": true + } + } + } + } + }, + "parseqs": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", + "integrity": "sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0=", + "dev": true, + "requires": { + "better-assert": "1.0.2" + }, + "dependencies": { + "better-assert": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", + "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=", + "dev": true, + "requires": { + "callsite": "1.0.0" + }, + "dependencies": { + "callsite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", + "dev": true + } + } + } + } + }, + "ws": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.2.tgz", + "integrity": "sha1-iiRPoFJAHgjJiGz0SoUYnh/UBn8=", + "dev": true, + "requires": { + "options": "0.0.6", + "ultron": "1.0.2" + }, + "dependencies": { + "options": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", + "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=", + "dev": true + }, + "ultron": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", + "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=", + "dev": true + } + } + }, + "xmlhttprequest-ssl": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz", + "integrity": "sha1-GFqIjATspGw+QHDZn3tJ3jUomS0=", + "dev": true + }, + "yeast": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", + "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=", + "dev": true + } + } + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + }, + "object-component": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz", + "integrity": "sha1-8MaapQ78lbhmwYb0AKM3acsvEpE=", + "dev": true + }, + "parseuri": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz", + "integrity": "sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo=", + "dev": true, + "requires": { + "better-assert": "1.0.2" + }, + "dependencies": { + "better-assert": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", + "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=", + "dev": true, + "requires": { + "callsite": "1.0.0" + }, + "dependencies": { + "callsite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", + "dev": true + } + } + } + } + }, + "to-array": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz", + "integrity": "sha1-F+bBH3PdTz10zaek/zI46a2b+JA=", + "dev": true + } + } + }, + "socket.io-parser": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.3.1.tgz", + "integrity": "sha1-3VMgJRA85Clpcya+/WQAX8/ltKA=", + "dev": true, + "requires": { + "component-emitter": "1.1.2", + "debug": "2.2.0", + "isarray": "0.0.1", + "json3": "3.3.2" + }, + "dependencies": { + "component-emitter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz", + "integrity": "sha1-KWWU8nU9qmOZbSrwjRWpURbJrsM=", + "dev": true + }, + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "dev": true, + "requires": { + "ms": "0.7.1" + }, + "dependencies": { + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=", + "dev": true + } + } + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "json3": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz", + "integrity": "sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE=", + "dev": true + } + } + } + } + }, + "ua-parser-js": { + "version": "0.7.14", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.14.tgz", + "integrity": "sha1-EQ1T+kw/MmwSEpK76skE0uAzh8o=", + "dev": true + }, + "ucfirst": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ucfirst/-/ucfirst-1.0.0.tgz", + "integrity": "sha1-ThBbZEjQXiZOzsQ14LkZNjxfLy8=", + "dev": true + } + } + }, + "browser-sync-spa": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/browser-sync-spa/-/browser-sync-spa-1.0.3.tgz", + "integrity": "sha1-SV9DfkJl5PBmSmdVeb1uToHJz54=", + "dev": true, + "requires": { + "connect-history-api-fallback": "0.0.5", + "opt-merger": "1.1.1" + }, + "dependencies": { + "connect-history-api-fallback": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-0.0.5.tgz", + "integrity": "sha1-7wUJ0AQL+8SG6rX39QC7F2nPNUo=", + "dev": true + }, + "opt-merger": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/opt-merger/-/opt-merger-1.1.1.tgz", + "integrity": "sha1-30mVcJlBKHqEZ/nOWO4Gv0pk/0E=", + "dev": true, + "requires": { + "lodash": "3.10.1", + "minimist": "1.2.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } + } + } + }, + "bufferutil": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-1.2.1.tgz", + "integrity": "sha1-N75dNuHgZJIiHmjUdLGsWOUQy9c=", + "dev": true, + "optional": true, + "requires": { + "bindings": "1.2.1", + "nan": "2.10.0" + } + }, + "caller-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", + "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", + "requires": { + "callsites": "0.2.0" + } + }, + "callsites": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", + "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "requires": { + "ansi-regex": "2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + } + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "chardet": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", + "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=" + }, + "circular-json": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", + "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==" + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "requires": { + "restore-cursor": "2.0.0" + } + }, + "cli-width": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", + "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=" + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + }, + "color-convert": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz", + "integrity": "sha512-3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==", + "requires": { + "color-name": "1.1.1" + } + }, + "color-name": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz", + "integrity": "sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "requires": { + "nice-try": "1.0.4", + "path-key": "2.0.1", + "semver": "5.5.0", + "shebang-command": "1.2.0", + "which": "1.3.1" + } + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "1.0.12" + } + }, + "del": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/del/-/del-2.0.2.tgz", + "integrity": "sha1-bNxo2wAoK5LY6CoO2f/x0zMZNCQ=", + "requires": { + "globby": "3.0.1", + "is-path-cwd": "1.0.0", + "is-path-in-cwd": "1.0.0", + "object-assign": "4.1.1", + "pify": "2.3.0", + "pinkie-promise": "1.0.0", + "rimraf": "2.6.1" + }, + "dependencies": { + "globby": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-3.0.1.tgz", + "integrity": "sha1-IJSvhCHhkVIVDViT62QWsxLZoi8=", + "requires": { + "array-union": "1.0.2", + "arrify": "1.0.1", + "glob": "5.0.15", + "object-assign": "4.1.1", + "pify": "2.3.0", + "pinkie-promise": "1.0.0" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "requires": { + "array-uniq": "1.0.3" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + } + } + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + }, + "glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + } + } + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + } + } + } + } + }, + "is-path-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", + "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=" + }, + "is-path-in-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz", + "integrity": "sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw=", + "requires": { + "is-path-inside": "1.0.0" + }, + "dependencies": { + "is-path-inside": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz", + "integrity": "sha1-/AbloWg/vaE95mev9xe7wQpI838=", + "requires": { + "path-is-inside": "1.0.2" + }, + "dependencies": { + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + } + } + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + }, + "pinkie-promise": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz", + "integrity": "sha1-0dpn9UglY7t89X8oauKCLs+/NnA=", + "requires": { + "pinkie": "1.0.0" + }, + "dependencies": { + "pinkie": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz", + "integrity": "sha1-Wkfyi6EBXQIBvae/DzWOR77Ix+Q=" + } + } + }, + "rimraf": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", + "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", + "requires": { + "glob": "7.1.2" + }, + "dependencies": { + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + } + } + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + } + } + } + } + } + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "2.0.2" + } + }, + "duplexify": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz", + "integrity": "sha512-fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==", + "requires": { + "end-of-stream": "1.4.1", + "inherits": "2.0.3", + "readable-stream": "2.3.6", + "stream-shift": "1.0.0" + } + }, + "end-of-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", + "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "requires": { + "once": "1.4.0" + } + }, + "es-abstract": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz", + "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==", + "requires": { + "es-to-primitive": "1.1.1", + "function-bind": "1.1.1", + "has": "1.0.3", + "is-callable": "1.1.4", + "is-regex": "1.0.4" + } + }, + "es-to-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", + "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", + "requires": { + "is-callable": "1.1.4", + "is-date-object": "1.0.1", + "is-symbol": "1.0.1" + } + }, + "es6-promise": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz", + "integrity": "sha1-lu258v2wGZWCKyY92KratnSBgbw=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "eslint": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-5.3.0.tgz", + "integrity": "sha512-N/tCqlMKkyNvAvLu+zI9AqDasnSLt00K+Hu8kdsERliC9jYEc8ck12XtjvOXrBKu8fK6RrBcN9bat6Xk++9jAg==", + "requires": { + "ajv": "6.5.2", + "babel-code-frame": "6.26.0", + "chalk": "2.4.1", + "cross-spawn": "6.0.5", + "debug": "3.1.0", + "doctrine": "2.1.0", + "eslint-scope": "4.0.0", + "eslint-utils": "1.3.1", + "eslint-visitor-keys": "1.0.0", + "espree": "4.0.0", + "esquery": "1.0.1", + "esutils": "2.0.2", + "file-entry-cache": "2.0.0", + "functional-red-black-tree": "1.0.1", + "glob": "7.1.2", + "globals": "11.7.0", + "ignore": "4.0.6", + "imurmurhash": "0.1.4", + "inquirer": "5.2.0", + "is-resolvable": "1.1.0", + "js-yaml": "3.12.0", + "json-stable-stringify-without-jsonify": "1.0.1", + "levn": "0.3.0", + "lodash": "4.17.10", + "minimatch": "3.0.4", + "mkdirp": "0.5.1", + "natural-compare": "1.4.0", + "optionator": "0.8.2", + "path-is-inside": "1.0.2", + "pluralize": "7.0.0", + "progress": "2.0.0", + "regexpp": "2.0.0", + "require-uncached": "1.0.3", + "semver": "5.5.0", + "string.prototype.matchall": "2.0.0", + "strip-ansi": "4.0.0", + "strip-json-comments": "2.0.1", + "table": "4.0.3", + "text-table": "0.2.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "requires": { + "ansi-styles": "3.2.1", + "escape-string-regexp": "1.0.5", + "supports-color": "5.4.0" + } + }, + "lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" + } + } + }, + "eslint-loader": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-1.1.1.tgz", + "integrity": "sha1-CC3uihMro5gNlCeMLw/TFOQAlMg=", + "dev": true, + "requires": { + "loader-utils": "0.2.17", + "object-assign": "3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", + "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", + "dev": true, + "requires": { + "big.js": "3.1.3", + "emojis-list": "2.1.0", + "json5": "0.5.1", + "object-assign": "4.1.1" + }, + "dependencies": { + "big.js": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz", + "integrity": "sha1-TK2iGTZS6zyp7I5VyQFWacmAaXg=", + "dev": true + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + } + } + }, + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", + "dev": true + } + } + }, + "eslint-plugin-angular": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-angular/-/eslint-plugin-angular-0.12.0.tgz", + "integrity": "sha1-LWLoCoDZIf/wNzV8rmyw6dDgQ94=", + "dev": true + }, + "eslint-scope": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz", + "integrity": "sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==", + "requires": { + "esrecurse": "4.2.1", + "estraverse": "4.1.1" + } + }, + "eslint-utils": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz", + "integrity": "sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==" + }, + "eslint-visitor-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", + "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==" + }, + "espree": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-4.0.0.tgz", + "integrity": "sha512-kapdTCt1bjmspxStVKX6huolXVV5ZfyZguY1lcfhVVZstce3bqxH9mcLzNn3/mlgW6wQ732+0fuG9v7h0ZQoKg==", + "requires": { + "acorn": "5.7.1", + "acorn-jsx": "4.1.1" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "esquery": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", + "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", + "requires": { + "estraverse": "4.1.1" + } + }, + "esrecurse": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", + "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "requires": { + "estraverse": "4.1.1" + } + }, + "estraverse": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.1.1.tgz", + "integrity": "sha1-9srKcokzqFDvkGYdDheYK6RxEaI=" + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "requires": { + "is-posix-bracket": "0.1.1" + } + }, + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "requires": { + "fill-range": "2.2.4" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extend-shallow": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", + "integrity": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=", + "dev": true, + "requires": { + "kind-of": "1.1.0" + } + }, + "external-editor": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", + "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", + "requires": { + "chardet": "0.4.2", + "iconv-lite": "0.4.23", + "tmp": "0.0.33" + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "requires": { + "is-extglob": "1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + } + } + }, + "fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "requires": { + "escape-string-regexp": "1.0.5" + } + }, + "file-entry-cache": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", + "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=", + "requires": { + "flat-cache": "1.3.0", + "object-assign": "4.1.1" + } + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=" + }, + "fill-range": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "requires": { + "is-number": "2.1.0", + "isobject": "2.1.0", + "randomatic": "3.1.0", + "repeat-element": "1.1.2", + "repeat-string": "1.6.1" + } + }, + "first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=" + }, + "flat-cache": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz", + "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=", + "requires": { + "circular-json": "0.3.3", + "del": "2.0.2", + "graceful-fs": "4.1.11", + "write": "0.2.1" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + }, + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "requires": { + "for-in": "1.0.2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", + "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", + "dev": true, + "optional": true, + "requires": { + "nan": "2.10.0", + "node-pre-gyp": "0.10.0" + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true, + "optional": true + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true, + "optional": true + }, + "are-we-there-yet": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz", + "integrity": "sha1-u13KOCu5TwXhUZQ3PRb9O6HKEQ0=", + "dev": true, + "optional": true, + "requires": { + "delegates": "1.0.0", + "readable-stream": "2.3.6" + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "chownr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz", + "integrity": "sha1-4qdQQqlVGQi+vSW4Uj1fl2nXkYE=", + "dev": true, + "optional": true + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true, + "optional": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "deep-extend": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.5.1.tgz", + "integrity": "sha512-N8vBdOa+DF7zkRrDCsaOXoCs/E2fJfx9B9MrKnnSiHNh4ws7eSys6YQE4KvT1cecKmOASYQBhbKjeuDD9lT81w==", + "dev": true, + "optional": true + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true, + "optional": true + }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", + "dev": true, + "optional": true + }, + "fs-minipass": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz", + "integrity": "sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==", + "dev": true, + "optional": true, + "requires": { + "minipass": "2.2.4" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true, + "optional": true + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "dev": true, + "optional": true, + "requires": { + "aproba": "1.2.0", + "console-control-strings": "1.1.0", + "has-unicode": "2.0.1", + "object-assign": "4.1.1", + "signal-exit": "3.0.2", + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wide-align": "1.1.2" + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "optional": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true, + "optional": true + }, + "iconv-lite": { + "version": "0.4.21", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.21.tgz", + "integrity": "sha512-En5V9za5mBt2oUA03WGD3TwDv0MKAruqsuxstbMUZaj9W9k/m1CV/9py3l0L5kw9Bln8fdHQmzHSYtvpvTLpKw==", + "dev": true, + "optional": true, + "requires": { + "safer-buffer": "2.1.2" + } + }, + "ignore-walk": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz", + "integrity": "sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==", + "dev": true, + "optional": true, + "requires": { + "minimatch": "3.0.4" + } + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "optional": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "ini": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "dev": true, + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true, + "optional": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "1.1.11" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "minipass": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.2.4.tgz", + "integrity": "sha512-hzXIWWet/BzWhYs2b+u7dRHlruXhwdgvlTMDKC6Cb1U7ps6Ac6yQlR39xsbjWJE377YTCtKwIXIpJ5oP+j5y8g==", + "dev": true, + "requires": { + "safe-buffer": "5.1.1", + "yallist": "3.0.2" + } + }, + "minizlib": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz", + "integrity": "sha512-4T6Ur/GctZ27nHfpt9THOdRZNgyJ9FZchYO1ceg5S8Q3DNLCKYy44nCZzgCJgcvx2UM8czmqak5BCxJMrq37lA==", + "dev": true, + "optional": true, + "requires": { + "minipass": "2.2.4" + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true, + "optional": true + }, + "needle": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.2.0.tgz", + "integrity": "sha512-eFagy6c+TYayorXw/qtAdSvaUpEbBsDwDyxYFgLZ0lTojfH7K+OdBqAF7TAFwDokJaGpubpSGG0wO3iC0XPi8w==", + "dev": true, + "optional": true, + "requires": { + "debug": "2.6.9", + "iconv-lite": "0.4.21", + "sax": "1.2.4" + } + }, + "node-pre-gyp": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz", + "integrity": "sha512-G7kEonQLRbcA/mOoFoxvlMrw6Q6dPf92+t/l0DFSMuSlDoWaI9JWIyPwK0jyE1bph//CUEL65/Fz1m2vJbmjQQ==", + "dev": true, + "optional": true, + "requires": { + "detect-libc": "1.0.3", + "mkdirp": "0.5.1", + "needle": "2.2.0", + "nopt": "4.0.1", + "npm-packlist": "1.1.10", + "npmlog": "4.1.2", + "rc": "1.2.7", + "rimraf": "2.6.2", + "semver": "5.5.0", + "tar": "4.4.1" + } + }, + "nopt": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz", + "integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=", + "dev": true, + "optional": true, + "requires": { + "abbrev": "1.1.1", + "osenv": "0.1.5" + } + }, + "npm-bundled": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.3.tgz", + "integrity": "sha512-ByQ3oJ/5ETLyglU2+8dBObvhfWXX8dtPZDMePCahptliFX2iIuhyEszyFk401PZUNQH20vvdW5MLjJxkwU80Ow==", + "dev": true, + "optional": true + }, + "npm-packlist": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.10.tgz", + "integrity": "sha512-AQC0Dyhzn4EiYEfIUjCdMl0JJ61I2ER9ukf/sLxJUcZHfo+VyEfz2rMJgLZSS1v30OxPQe1cN0LZA1xbcaVfWA==", + "dev": true, + "optional": true, + "requires": { + "ignore-walk": "3.0.1", + "npm-bundled": "1.0.3" + } + }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "dev": true, + "optional": true, + "requires": { + "are-we-there-yet": "1.1.4", + "console-control-strings": "1.1.0", + "gauge": "2.7.4", + "set-blocking": "2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true, + "optional": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true, + "optional": true + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true, + "optional": true + }, + "osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "dev": true, + "optional": true, + "requires": { + "os-homedir": "1.0.2", + "os-tmpdir": "1.0.2" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "optional": true + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true, + "optional": true + }, + "rc": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.7.tgz", + "integrity": "sha512-LdLD8xD4zzLsAT5xyushXDNscEjB7+2ulnl8+r1pnESlYtlJtVSoCMBGr30eDRJ3+2Gq89jK9P9e4tCEH1+ywA==", + "dev": true, + "optional": true, + "requires": { + "deep-extend": "0.5.1", + "ini": "1.3.5", + "minimist": "1.2.0", + "strip-json-comments": "2.0.1" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true, + "optional": true + } + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "optional": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" + } + }, + "rimraf": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", + "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "dev": true, + "optional": true, + "requires": { + "glob": "7.1.2" + } + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "optional": true + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true, + "optional": true + }, + "semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "dev": true, + "optional": true + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true, + "optional": true + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true, + "optional": true + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true, + "optional": true + }, + "tar": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.1.tgz", + "integrity": "sha512-O+v1r9yN4tOsvl90p5HAP4AEqbYhx4036AGMm075fH9F8Qwi3oJ+v4u50FkT/KkvywNGtwkk0zRI+8eYm1X/xg==", + "dev": true, + "optional": true, + "requires": { + "chownr": "1.0.1", + "fs-minipass": "1.2.5", + "minipass": "2.2.4", + "minizlib": "1.1.0", + "mkdirp": "0.5.1", + "safe-buffer": "5.1.1", + "yallist": "3.0.2" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true, + "optional": true + }, + "wide-align": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz", + "integrity": "sha512-ijDLlyQ7s6x1JgCLur53osjm/UXUYD9+0PbYKrBsYisYXzCxN+HC3mYDNy/dWdmf3AwqwU3CXwDCvsNgGK1S0w==", + "dev": true, + "optional": true, + "requires": { + "string-width": "1.0.2" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "yallist": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz", + "integrity": "sha1-hFK0u36Dx8GI2AQcGoN8dz1ti7k=", + "dev": true + } + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + }, + "gift": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/gift/-/gift-0.6.1.tgz", + "integrity": "sha1-wWmOa2iHFk7ZeKAQlUI8/2W4558=", + "requires": { + "underscore": "1.9.1" + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "requires": { + "glob-parent": "2.0.0", + "is-glob": "2.0.1" + }, + "dependencies": { + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "requires": { + "is-glob": "2.0.1" + } + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "requires": { + "is-extglob": "1.0.0" + } + } + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "requires": { + "is-glob": "3.1.0", + "path-dirname": "1.0.2" + } + }, + "glob-stream": { + "version": "5.3.5", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz", + "integrity": "sha1-pVZlqajM3EGRWofHAeMtTgFvrSI=", + "requires": { + "extend": "3.0.2", + "glob": "5.0.15", + "glob-parent": "3.1.0", + "micromatch": "2.3.11", + "ordered-read-streams": "0.3.0", + "through2": "0.6.5", + "to-absolute-glob": "0.1.1", + "unique-stream": "2.2.1" + }, + "dependencies": { + "glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "requires": { + "readable-stream": "1.0.34", + "xtend": "4.0.1" + } + } + } + }, + "globals": { + "version": "11.7.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.7.0.tgz", + "integrity": "sha512-K8BNSPySfeShBQXsahYB/AbbWruVOTyVpgoIDnl8odPpeSfP2J5QO2oLFFdl2j7GfDCtZj2bMKar2T49itTPCg==" + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + }, + "gulp": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz", + "integrity": "sha1-VxzkWSjdQK9lFPxAEYZgFsE4RbQ=", + "dev": true, + "requires": { + "archy": "1.0.0", + "chalk": "1.1.3", + "deprecated": "0.0.1", + "gulp-util": "3.0.8", + "interpret": "1.0.3", + "liftoff": "2.3.0", + "minimist": "1.2.0", + "orchestrator": "0.3.8", + "pretty-hrtime": "1.0.3", + "semver": "4.3.6", + "tildify": "1.2.0", + "v8flags": "2.1.1", + "vinyl-fs": "0.3.14" + }, + "dependencies": { + "archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", + "dev": true + }, + "deprecated": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz", + "integrity": "sha1-+cmvVGSvoeepcUWKi97yqpTVuxk=", + "dev": true + }, + "interpret": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz", + "integrity": "sha1-y8NcYu7uc/Gat7EKgBURQBr8D5A=", + "dev": true + }, + "liftoff": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-2.3.0.tgz", + "integrity": "sha1-qY8v9nGD2Lp8+soQVIvX/wVQs4U=", + "dev": true, + "requires": { + "extend": "3.0.1", + "findup-sync": "0.4.3", + "fined": "1.1.0", + "flagged-respawn": "0.3.2", + "lodash.isplainobject": "4.0.6", + "lodash.isstring": "4.0.1", + "lodash.mapvalues": "4.6.0", + "rechoir": "0.6.2", + "resolve": "1.4.0" + }, + "dependencies": { + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "dev": true + }, + "findup-sync": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.4.3.tgz", + "integrity": "sha1-QAQ5Kee8YK3wt/SCfExudaDeyhI=", + "dev": true, + "requires": { + "detect-file": "0.1.0", + "is-glob": "2.0.1", + "micromatch": "2.3.11", + "resolve-dir": "0.1.1" + }, + "dependencies": { + "detect-file": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-0.1.0.tgz", + "integrity": "sha1-STXe39lIhkjgBrASlWbpOGcR6mM=", + "dev": true, + "requires": { + "fs-exists-sync": "0.1.0" + }, + "dependencies": { + "fs-exists-sync": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz", + "integrity": "sha1-mC1ok6+RjnLQjeyehnP/K1qNat0=", + "dev": true + } + } + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + } + } + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "dev": true, + "requires": { + "arr-diff": "2.0.0", + "array-unique": "0.2.1", + "braces": "1.8.5", + "expand-brackets": "0.1.5", + "extglob": "0.3.2", + "filename-regex": "2.0.1", + "is-extglob": "1.0.0", + "is-glob": "2.0.1", + "kind-of": "3.2.2", + "normalize-path": "2.1.1", + "object.omit": "2.0.1", + "parse-glob": "3.0.4", + "regex-cache": "0.4.3" + }, + "dependencies": { + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "dev": true, + "requires": { + "arr-flatten": "1.1.0" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=", + "dev": true + } + } + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "dev": true, + "requires": { + "expand-range": "1.8.2", + "preserve": "0.2.0", + "repeat-element": "1.1.2" + }, + "dependencies": { + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "dev": true, + "requires": { + "fill-range": "2.2.3" + }, + "dependencies": { + "fill-range": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", + "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", + "dev": true, + "requires": { + "is-number": "2.1.0", + "isobject": "2.1.0", + "randomatic": "1.1.7", + "repeat-element": "1.1.2", + "repeat-string": "1.6.1" + }, + "dependencies": { + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + } + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "randomatic": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", + "integrity": "sha1-x6vpzIuHwLqodrGf3oP9RkeX44w=", + "dev": true, + "requires": { + "is-number": "3.0.0", + "kind-of": "4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + } + } + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + } + } + } + } + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", + "dev": true + }, + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "dev": true + } + } + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "dev": true, + "requires": { + "is-posix-bracket": "0.1.1" + }, + "dependencies": { + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", + "dev": true + } + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + } + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", + "dev": true + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "1.1.0" + }, + "dependencies": { + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + } + } + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "dev": true, + "requires": { + "for-own": "0.1.5", + "is-extendable": "0.1.1" + }, + "dependencies": { + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "dev": true, + "requires": { + "for-in": "1.0.2" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + } + } + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "dev": true, + "requires": { + "glob-base": "0.3.0", + "is-dotfile": "1.0.3", + "is-extglob": "1.0.0", + "is-glob": "2.0.1" + }, + "dependencies": { + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "dev": true, + "requires": { + "glob-parent": "2.0.0", + "is-glob": "2.0.1" + }, + "dependencies": { + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true, + "requires": { + "is-glob": "2.0.1" + } + } + } + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", + "dev": true + } + } + }, + "regex-cache": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz", + "integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=", + "dev": true, + "requires": { + "is-equal-shallow": "0.1.3", + "is-primitive": "2.0.0" + }, + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "dev": true, + "requires": { + "is-primitive": "2.0.0" + } + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", + "dev": true + } + } + } + } + }, + "resolve-dir": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-0.1.1.tgz", + "integrity": "sha1-shklmlYC+sXFxJatiUpujMQwJh4=", + "dev": true, + "requires": { + "expand-tilde": "1.2.2", + "global-modules": "0.2.3" + }, + "dependencies": { + "expand-tilde": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz", + "integrity": "sha1-C4HrqJflo9MdHD0QL48BRB5VlEk=", + "dev": true, + "requires": { + "os-homedir": "1.0.2" + }, + "dependencies": { + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + } + } + }, + "global-modules": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz", + "integrity": "sha1-6lo77ULG1s6ZWk+KEmm12uIjgo0=", + "dev": true, + "requires": { + "global-prefix": "0.1.5", + "is-windows": "0.2.0" + }, + "dependencies": { + "global-prefix": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz", + "integrity": "sha1-jTvGuNo8qBEqFg2NSW/wRiv+948=", + "dev": true, + "requires": { + "homedir-polyfill": "1.0.1", + "ini": "1.3.4", + "is-windows": "0.2.0", + "which": "1.3.0" + }, + "dependencies": { + "homedir-polyfill": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz", + "integrity": "sha1-TCu8inWJmP7r9e1oWA921GdotLw=", + "dev": true, + "requires": { + "parse-passwd": "1.0.0" + }, + "dependencies": { + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + } + } + }, + "ini": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz", + "integrity": "sha1-BTfLedr1m1mhpRff9wbIbsA5Fi4=", + "dev": true + }, + "which": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz", + "integrity": "sha1-/wS9/AEO5UfXgL7DjhrBwnd9JTo=", + "dev": true, + "requires": { + "isexe": "2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + } + } + } + } + }, + "is-windows": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz", + "integrity": "sha1-3hqm1j6indJIc3tp8f+LgALSEIw=", + "dev": true + } + } + } + } + } + } + }, + "fined": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz", + "integrity": "sha1-s33IRLdqL15wgeiE98CuNE8VNHY=", + "dev": true, + "requires": { + "expand-tilde": "2.0.2", + "is-plain-object": "2.0.4", + "object.defaults": "1.1.0", + "object.pick": "1.2.0", + "parse-filepath": "1.0.1" + }, + "dependencies": { + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "requires": { + "homedir-polyfill": "1.0.1" + }, + "dependencies": { + "homedir-polyfill": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz", + "integrity": "sha1-TCu8inWJmP7r9e1oWA921GdotLw=", + "dev": true, + "requires": { + "parse-passwd": "1.0.0" + }, + "dependencies": { + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + } + } + } + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=", + "dev": true, + "requires": { + "isobject": "3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", + "dev": true, + "requires": { + "array-each": "1.0.1", + "array-slice": "1.0.0", + "for-own": "1.0.0", + "isobject": "3.0.1" + }, + "dependencies": { + "array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", + "dev": true + }, + "array-slice": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.0.0.tgz", + "integrity": "sha1-5zA08A3MH0CHYAj9IP6ud71LfC8=", + "dev": true + }, + "for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "dev": true, + "requires": { + "for-in": "1.0.2" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "object.pick": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.2.0.tgz", + "integrity": "sha1-tTkr7peC2m2ft9avr1OXefEjTCs=", + "dev": true, + "requires": { + "isobject": "2.1.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + } + } + }, + "parse-filepath": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.1.tgz", + "integrity": "sha1-FZ1hVdQ5BNFsEO9piRHaHpGWm3M=", + "dev": true, + "requires": { + "is-absolute": "0.2.6", + "map-cache": "0.2.2", + "path-root": "0.1.1" + }, + "dependencies": { + "is-absolute": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-0.2.6.tgz", + "integrity": "sha1-IN5p89uULvLYe5wto28XIjWxtes=", + "dev": true, + "requires": { + "is-relative": "0.2.1", + "is-windows": "0.2.0" + }, + "dependencies": { + "is-relative": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-0.2.1.tgz", + "integrity": "sha1-0n9MfVFtF1+2ENuEu+7yPDvJeqU=", + "dev": true, + "requires": { + "is-unc-path": "0.1.2" + }, + "dependencies": { + "is-unc-path": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-0.1.2.tgz", + "integrity": "sha1-arBTpyVzwQJQ/0FqOBTDUXivObk=", + "dev": true, + "requires": { + "unc-path-regex": "0.1.2" + }, + "dependencies": { + "unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", + "dev": true + } + } + } + } + }, + "is-windows": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz", + "integrity": "sha1-3hqm1j6indJIc3tp8f+LgALSEIw=", + "dev": true + } + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", + "dev": true, + "requires": { + "path-root-regex": "0.1.2" + }, + "dependencies": { + "path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", + "dev": true + } + } + } + } + } + } + }, + "flagged-respawn": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-0.3.2.tgz", + "integrity": "sha1-/xke3c1wiKZ1smEP/8l2vpuAdLU=", + "dev": true + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", + "dev": true + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", + "dev": true + }, + "lodash.mapvalues": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz", + "integrity": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=", + "dev": true + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "requires": { + "resolve": "1.4.0" + } + }, + "resolve": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz", + "integrity": "sha1-p1vgHFPaJdk0qY69DkxKcxL5KoY=", + "dev": true, + "requires": { + "path-parse": "1.0.5" + }, + "dependencies": { + "path-parse": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", + "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=", + "dev": true + } + } + } + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "orchestrator": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz", + "integrity": "sha1-FOfp4nZPcxX7rBhOUGx6pt+UrX4=", + "dev": true, + "requires": { + "end-of-stream": "0.1.5", + "sequencify": "0.0.7", + "stream-consume": "0.1.0" + }, + "dependencies": { + "end-of-stream": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", + "integrity": "sha1-jhdyBsPICDfYVjLouTWd/osvbq8=", + "dev": true, + "requires": { + "once": "1.3.3" + }, + "dependencies": { + "once": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", + "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + }, + "sequencify": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz", + "integrity": "sha1-kM/xnQLgcCf9dn9erT57ldHnOAw=", + "dev": true + }, + "stream-consume": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz", + "integrity": "sha1-pB6tGm1ggc63n2WwYZAbbY89HQ8=", + "dev": true + } + } + }, + "pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", + "dev": true + }, + "semver": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", + "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=", + "dev": true + }, + "tildify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz", + "integrity": "sha1-3OwD9V3Km3qj5bBPIYF+tW5jWIo=", + "dev": true, + "requires": { + "os-homedir": "1.0.2" + }, + "dependencies": { + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + } + } + }, + "v8flags": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz", + "integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=", + "dev": true, + "requires": { + "user-home": "1.1.1" + }, + "dependencies": { + "user-home": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz", + "integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=", + "dev": true + } + } + }, + "vinyl-fs": { + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz", + "integrity": "sha1-mmhRzhysHBzqX+hsCTHWIMLPqeY=", + "dev": true, + "requires": { + "defaults": "1.0.3", + "glob-stream": "3.1.18", + "glob-watcher": "0.0.6", + "graceful-fs": "3.0.11", + "mkdirp": "0.5.1", + "strip-bom": "1.0.0", + "through2": "0.6.5", + "vinyl": "0.4.6" + }, + "dependencies": { + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true, + "requires": { + "clone": "1.0.2" + }, + "dependencies": { + "clone": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=", + "dev": true + } + } + }, + "glob-stream": { + "version": "3.1.18", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz", + "integrity": "sha1-kXCl8St5Awb9/lmPMT+PeVT9FDs=", + "dev": true, + "requires": { + "glob": "4.5.3", + "glob2base": "0.0.12", + "minimatch": "2.0.10", + "ordered-read-streams": "0.1.0", + "through2": "0.6.5", + "unique-stream": "1.0.0" + }, + "dependencies": { + "glob": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=", + "dev": true, + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "2.0.10", + "once": "1.4.0" + }, + "dependencies": { + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + }, + "glob2base": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz", + "integrity": "sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=", + "dev": true, + "requires": { + "find-index": "0.1.1" + }, + "dependencies": { + "find-index": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz", + "integrity": "sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ=", + "dev": true + } + } + }, + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "ordered-read-streams": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz", + "integrity": "sha1-/VZamvjrRHO6abbtijQ1LLVS8SY=", + "dev": true + }, + "unique-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz", + "integrity": "sha1-1ZpKdUJ0R9mqbJHnAmP40mpLEEs=", + "dev": true + } + } + }, + "glob-watcher": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz", + "integrity": "sha1-uVtKjfdLOcgymLDAXJeLTZo7cQs=", + "dev": true, + "requires": { + "gaze": "0.5.2" + }, + "dependencies": { + "gaze": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz", + "integrity": "sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8=", + "dev": true, + "requires": { + "globule": "0.1.0" + }, + "dependencies": { + "globule": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", + "integrity": "sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU=", + "dev": true, + "requires": { + "glob": "3.1.21", + "lodash": "1.0.2", + "minimatch": "0.2.14" + }, + "dependencies": { + "glob": { + "version": "3.1.21", + "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", + "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=", + "dev": true, + "requires": { + "graceful-fs": "1.2.3", + "inherits": "1.0.2", + "minimatch": "0.2.14" + }, + "dependencies": { + "graceful-fs": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz", + "integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=", + "dev": true + }, + "inherits": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz", + "integrity": "sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js=", + "dev": true + } + } + }, + "lodash": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz", + "integrity": "sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE=", + "dev": true + }, + "minimatch": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", + "dev": true, + "requires": { + "lru-cache": "2.7.3", + "sigmund": "1.0.1" + }, + "dependencies": { + "lru-cache": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", + "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", + "dev": true + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", + "dev": true + } + } + } + } + } + } + } + } + }, + "graceful-fs": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", + "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", + "dev": true, + "requires": { + "natives": "1.1.0" + }, + "dependencies": { + "natives": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.0.tgz", + "integrity": "sha1-6f+EFBimsux6SV6TmYT3jxY+bjE=", + "dev": true + } + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "strip-bom": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz", + "integrity": "sha1-hbiGLzhEtabV7IRnqTWYFzo295Q=", + "dev": true, + "requires": { + "first-chunk-stream": "1.0.0", + "is-utf8": "0.2.1" + }, + "dependencies": { + "first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=", + "dev": true + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + } + } + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "dev": true, + "requires": { + "readable-stream": "1.0.34", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "vinyl": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", + "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", + "dev": true, + "requires": { + "clone": "0.2.0", + "clone-stats": "0.0.1" + }, + "dependencies": { + "clone": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", + "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=", + "dev": true + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true + } + } + } + } + } + } + }, + "gulp-angular-templatecache": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/gulp-angular-templatecache/-/gulp-angular-templatecache-1.8.1.tgz", + "integrity": "sha1-G/PsZ2D6M60dnvBKNq7hIBBa+fw=", + "dev": true, + "requires": { + "event-stream": "3.3.2", + "gulp-concat": "2.6.0", + "gulp-footer": "1.0.5", + "gulp-header": "1.8.2", + "gulp-util": "3.0.7", + "js-string-escape": "1.0.1" + }, + "dependencies": { + "event-stream": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.2.tgz", + "integrity": "sha1-PMMQ/rHyjS9isqCF1zap71ZjeLg=", + "dev": true, + "requires": { + "duplexer": "0.1.1", + "from": "0.1.7", + "map-stream": "0.1.0", + "pause-stream": "0.0.11", + "split": "0.3.3", + "stream-combiner": "0.0.4", + "through": "2.3.8" + }, + "dependencies": { + "duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", + "dev": true + }, + "from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", + "dev": true + }, + "map-stream": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", + "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=", + "dev": true + }, + "pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "split": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", + "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "stream-combiner": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", + "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", + "dev": true, + "requires": { + "duplexer": "0.1.1" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + } + } + }, + "gulp-concat": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.0.tgz", + "integrity": "sha1-WFz7EVQR80h3MTEUBWa2qBxpy5E=", + "dev": true, + "requires": { + "concat-with-sourcemaps": "1.0.4", + "gulp-util": "3.0.7", + "through2": "0.6.5" + }, + "dependencies": { + "concat-with-sourcemaps": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.0.4.tgz", + "integrity": "sha1-9Vs74q60dgGxCi1SWcz7cP0vHdY=", + "dev": true, + "requires": { + "source-map": "0.5.6" + }, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + } + } + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "dev": true, + "requires": { + "readable-stream": "1.0.34", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + } + } + }, + "gulp-footer": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/gulp-footer/-/gulp-footer-1.0.5.tgz", + "integrity": "sha1-6Eynd+Jmvnu8LUXS3w5+uo36PlQ=", + "dev": true, + "requires": { + "event-stream": "3.3.2", + "gulp-util": "3.0.7", + "lodash.assign": "4.2.0" + }, + "dependencies": { + "lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=", + "dev": true + } + } + }, + "gulp-header": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.2.tgz", + "integrity": "sha1-OrIi9TcZ0tA9gdkTQlL+fVJCWqQ=", + "dev": true, + "requires": { + "concat-with-sourcemaps": "1.0.4", + "gulp-util": "3.0.7", + "object-assign": "4.1.1", + "through2": "2.0.3" + }, + "dependencies": { + "concat-with-sourcemaps": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.0.4.tgz", + "integrity": "sha1-9Vs74q60dgGxCi1SWcz7cP0vHdY=", + "dev": true, + "requires": { + "source-map": "0.5.6" + }, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + } + } + }, + "gulp-util": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.7.tgz", + "integrity": "sha1-eJJcS4+LSQBawBoBHFV+YhiUHLs=", + "dev": true, + "requires": { + "array-differ": "1.0.0", + "array-uniq": "1.0.3", + "beeper": "1.1.1", + "chalk": "1.1.3", + "dateformat": "1.0.12", + "fancy-log": "1.3.0", + "gulplog": "1.0.0", + "has-gulplog": "0.1.0", + "lodash._reescape": "3.0.0", + "lodash._reevaluate": "3.0.0", + "lodash._reinterpolate": "3.0.0", + "lodash.template": "3.6.2", + "minimist": "1.2.0", + "multipipe": "0.1.2", + "object-assign": "3.0.0", + "replace-ext": "0.0.1", + "through2": "2.0.3", + "vinyl": "0.5.3" + }, + "dependencies": { + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", + "dev": true + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "beeper": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", + "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=", + "dev": true + }, + "dateformat": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz", + "integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=", + "dev": true, + "requires": { + "get-stdin": "4.0.1", + "meow": "3.7.0" + }, + "dependencies": { + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "requires": { + "camelcase-keys": "2.1.0", + "decamelize": "1.2.0", + "loud-rejection": "1.6.0", + "map-obj": "1.0.1", + "minimist": "1.2.0", + "normalize-package-data": "2.4.0", + "object-assign": "4.1.1", + "read-pkg-up": "1.0.1", + "redent": "1.0.0", + "trim-newlines": "1.0.0" + }, + "dependencies": { + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "requires": { + "camelcase": "2.1.1", + "map-obj": "1.0.1" + }, + "dependencies": { + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true, + "requires": { + "currently-unhandled": "0.4.1", + "signal-exit": "3.0.2" + }, + "dependencies": { + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "requires": { + "array-find-index": "1.0.2" + }, + "dependencies": { + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + } + } + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + } + } + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha1-EvlaMH1YNSB1oEkHuErIvpisAS8=", + "dev": true, + "requires": { + "hosted-git-info": "2.5.0", + "is-builtin-module": "1.0.0", + "semver": "5.4.1", + "validate-npm-package-license": "3.0.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", + "integrity": "sha1-bWDjSzq7yDEwYsO3mO+NkBoHrzw=", + "dev": true + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "dev": true, + "requires": { + "builtin-modules": "1.1.1" + }, + "dependencies": { + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "dev": true + } + } + }, + "semver": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", + "integrity": "sha1-4FnAnYVx8FQII3M0M1BdOi8AsY4=", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", + "dev": true, + "requires": { + "spdx-correct": "1.0.2", + "spdx-expression-parse": "1.0.4" + }, + "dependencies": { + "spdx-correct": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "dev": true, + "requires": { + "spdx-license-ids": "1.2.2" + }, + "dependencies": { + "spdx-license-ids": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", + "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=", + "dev": true + } + } + }, + "spdx-expression-parse": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", + "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=", + "dev": true + } + } + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "1.1.2", + "read-pkg": "1.1.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "2.1.0", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "2.0.1" + } + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + } + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "1.1.0", + "normalize-package-data": "2.4.0", + "path-type": "1.1.0" + }, + "dependencies": { + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "parse-json": "2.2.0", + "pify": "2.3.0", + "pinkie-promise": "2.0.1", + "strip-bom": "2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "1.3.1" + }, + "dependencies": { + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "dev": true, + "requires": { + "is-arrayish": "0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + } + } + } + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "0.2.1" + }, + "dependencies": { + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + } + } + } + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + } + } + } + } + } + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "requires": { + "indent-string": "2.1.0", + "strip-indent": "1.0.1" + }, + "dependencies": { + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "requires": { + "repeating": "2.0.1" + }, + "dependencies": { + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "requires": { + "is-finite": "1.0.2" + }, + "dependencies": { + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + }, + "dependencies": { + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + } + } + } + } + } + } + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "requires": { + "get-stdin": "4.0.1" + } + } + } + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + } + } + } + } + }, + "fancy-log": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.0.tgz", + "integrity": "sha1-Rb4X0Cu5kX1gzP/UmVyZnmyMmUg=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "time-stamp": "1.1.0" + }, + "dependencies": { + "time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", + "dev": true + } + } + }, + "gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", + "dev": true, + "requires": { + "glogg": "1.0.0" + }, + "dependencies": { + "glogg": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz", + "integrity": "sha1-f+DxmfV6yQbPUS/urY+Q7kooT8U=", + "dev": true, + "requires": { + "sparkles": "1.0.0" + }, + "dependencies": { + "sparkles": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz", + "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=", + "dev": true + } + } + } + } + }, + "has-gulplog": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", + "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=", + "dev": true, + "requires": { + "sparkles": "1.0.0" + }, + "dependencies": { + "sparkles": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz", + "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=", + "dev": true + } + } + }, + "lodash._reescape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", + "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=", + "dev": true + }, + "lodash._reevaluate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", + "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=", + "dev": true + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", + "dev": true + }, + "lodash.template": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", + "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=", + "dev": true, + "requires": { + "lodash._basecopy": "3.0.1", + "lodash._basetostring": "3.0.1", + "lodash._basevalues": "3.0.0", + "lodash._isiterateecall": "3.0.9", + "lodash._reinterpolate": "3.0.0", + "lodash.escape": "3.2.0", + "lodash.keys": "3.1.2", + "lodash.restparam": "3.6.1", + "lodash.templatesettings": "3.1.1" + }, + "dependencies": { + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", + "dev": true + }, + "lodash._basetostring": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", + "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=", + "dev": true + }, + "lodash._basevalues": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", + "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=", + "dev": true + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", + "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", + "dev": true + }, + "lodash.escape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", + "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=", + "dev": true, + "requires": { + "lodash._root": "3.0.1" + }, + "dependencies": { + "lodash._root": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", + "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=", + "dev": true + } + } + }, + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "dev": true, + "requires": { + "lodash._getnative": "3.9.1", + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4" + }, + "dependencies": { + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", + "dev": true + }, + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + } + } + }, + "lodash.restparam": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", + "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", + "dev": true + }, + "lodash.templatesettings": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", + "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=", + "dev": true, + "requires": { + "lodash._reinterpolate": "3.0.0", + "lodash.escape": "3.2.0" + } + } + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "multipipe": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", + "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=", + "dev": true, + "requires": { + "duplexer2": "0.0.2" + }, + "dependencies": { + "duplexer2": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", + "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", + "dev": true, + "requires": { + "readable-stream": "1.1.14" + }, + "dependencies": { + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + } + } + } + } + }, + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", + "dev": true + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "vinyl": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", + "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=", + "dev": true, + "requires": { + "clone": "1.0.2", + "clone-stats": "0.0.1", + "replace-ext": "0.0.1" + }, + "dependencies": { + "clone": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=", + "dev": true + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true + } + } + } + } + }, + "js-string-escape": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", + "integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=", + "dev": true + } + } + }, + "gulp-autoprefixer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-3.0.2.tgz", + "integrity": "sha1-tkVARnV67t8hB2BI9ggmTj/29ME=", + "dev": true, + "requires": { + "autoprefixer": "6.7.7", + "gulp-util": "3.0.8", + "postcss": "5.2.17", + "through2": "2.0.3", + "vinyl-sourcemaps-apply": "0.1.4" + }, + "dependencies": { + "autoprefixer": { + "version": "6.7.7", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz", + "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=", + "dev": true, + "requires": { + "browserslist": "1.7.7", + "caniuse-db": "1.0.30000715", + "normalize-range": "0.1.2", + "num2fraction": "1.2.2", + "postcss": "5.2.17", + "postcss-value-parser": "3.3.0" + }, + "dependencies": { + "browserslist": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", + "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "dev": true, + "requires": { + "caniuse-db": "1.0.30000715", + "electron-to-chromium": "1.3.18" + }, + "dependencies": { + "electron-to-chromium": { + "version": "1.3.18", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.18.tgz", + "integrity": "sha1-PcyZ2j5rZl9qu8ccKK1Ros1zGpw=", + "dev": true + } + } + }, + "caniuse-db": { + "version": "1.0.30000715", + "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000715.tgz", + "integrity": "sha1-C5tceVlQ37rzAaiAa6/ofxJtqMo=", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true + }, + "postcss-value-parser": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", + "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=", + "dev": true + } + } + }, + "postcss": { + "version": "5.2.17", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", + "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "js-base64": "2.1.9", + "source-map": "0.5.6", + "supports-color": "3.2.3" + }, + "dependencies": { + "js-base64": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz", + "integrity": "sha1-8OgK4DmkvWVLXygfyT8EqRSn/M4=", + "dev": true + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "1.0.0" + }, + "dependencies": { + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + } + } + } + } + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "vinyl-sourcemaps-apply": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.1.4.tgz", + "integrity": "sha1-xfy9Q+LyOEI8LcmL3db3m3K8NFs=", + "dev": true, + "requires": { + "source-map": "0.1.43" + }, + "dependencies": { + "source-map": { + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", + "dev": true, + "requires": { + "amdefine": "1.0.1" + }, + "dependencies": { + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + } + } + } + } + } + } + }, + "gulp-eslint": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulp-eslint/-/gulp-eslint-1.0.0.tgz", + "integrity": "sha1-5YSbRHedD66B+U3N8Q7L7deNC8Y=", + "dev": true, + "requires": { + "bufferstreams": "1.0.2", + "eslint": "1.10.3", + "gulp-util": "3.0.8", + "object-assign": "3.0.0" + }, + "dependencies": { + "bufferstreams": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bufferstreams/-/bufferstreams-1.0.2.tgz", + "integrity": "sha1-N2Q95F+PhIdVAxEShOfDi1a41U8=", + "dev": true, + "requires": { + "readable-stream": "2.3.3" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + } + } + }, + "eslint": { + "version": "1.10.3", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-1.10.3.tgz", + "integrity": "sha1-+xmpGxPBWAgrvKKUsX2Xm8g1Ogo=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "concat-stream": "1.6.0", + "debug": "2.6.8", + "doctrine": "0.7.2", + "escape-string-regexp": "1.0.5", + "escope": "3.6.0", + "espree": "2.2.5", + "estraverse": "4.1.1", + "estraverse-fb": "1.3.2", + "esutils": "2.0.2", + "file-entry-cache": "1.3.1", + "glob": "5.0.15", + "globals": "8.18.0", + "handlebars": "4.0.10", + "inquirer": "0.11.4", + "is-my-json-valid": "2.16.0", + "is-resolvable": "1.0.0", + "js-yaml": "3.4.5", + "json-stable-stringify": "1.0.1", + "lodash.clonedeep": "3.0.2", + "lodash.merge": "3.3.2", + "lodash.omit": "3.1.0", + "minimatch": "3.0.4", + "mkdirp": "0.5.1", + "object-assign": "4.1.1", + "optionator": "0.6.0", + "path-is-absolute": "1.0.1", + "path-is-inside": "1.0.2", + "shelljs": "0.5.3", + "strip-json-comments": "1.0.4", + "text-table": "0.2.0", + "user-home": "2.0.0", + "xml-escape": "1.0.0" + }, + "dependencies": { + "concat-stream": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz", + "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.3", + "typedarray": "0.0.6" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + } + } + }, + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "doctrine": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-0.7.2.tgz", + "integrity": "sha1-fLhgNZujvpDgQLJrcpzkv6ZUxSM=", + "dev": true, + "requires": { + "esutils": "1.1.6", + "isarray": "0.0.1" + }, + "dependencies": { + "esutils": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz", + "integrity": "sha1-wBzKqa5LiXxtDD4hCuUvPHqEQ3U=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + } + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "escope": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", + "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=", + "dev": true, + "requires": { + "es6-map": "0.1.5", + "es6-weak-map": "2.0.2", + "esrecurse": "4.2.0", + "estraverse": "4.1.1" + }, + "dependencies": { + "es6-map": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", + "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29", + "es6-iterator": "2.0.1", + "es6-set": "0.1.5", + "es6-symbol": "3.1.1", + "event-emitter": "0.3.5" + }, + "dependencies": { + "d": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", + "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", + "dev": true, + "requires": { + "es5-ext": "0.10.29" + } + }, + "es5-ext": { + "version": "0.10.29", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.29.tgz", + "integrity": "sha1-do6y38SVe881+gVo8ZOrce3lP9g=", + "dev": true, + "requires": { + "es6-iterator": "2.0.1", + "es6-symbol": "3.1.1" + } + }, + "es6-iterator": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.1.tgz", + "integrity": "sha1-jjGcnwRTv1ddN0lAplWSDlnKVRI=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29", + "es6-symbol": "3.1.1" + } + }, + "es6-set": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", + "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29", + "es6-iterator": "2.0.1", + "es6-symbol": "3.1.1", + "event-emitter": "0.3.5" + } + }, + "es6-symbol": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29" + } + }, + "event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29" + } + } + } + }, + "es6-weak-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz", + "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29", + "es6-iterator": "2.0.1", + "es6-symbol": "3.1.1" + }, + "dependencies": { + "d": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", + "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", + "dev": true, + "requires": { + "es5-ext": "0.10.29" + } + }, + "es5-ext": { + "version": "0.10.29", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.29.tgz", + "integrity": "sha1-do6y38SVe881+gVo8ZOrce3lP9g=", + "dev": true, + "requires": { + "es6-iterator": "2.0.1", + "es6-symbol": "3.1.1" + } + }, + "es6-iterator": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.1.tgz", + "integrity": "sha1-jjGcnwRTv1ddN0lAplWSDlnKVRI=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29", + "es6-symbol": "3.1.1" + } + }, + "es6-symbol": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29" + } + } + } + }, + "esrecurse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.0.tgz", + "integrity": "sha1-+pVo2Y04I/mkHZHpAtyrnqblsWM=", + "dev": true, + "requires": { + "estraverse": "4.1.1", + "object-assign": "4.1.1" + } + } + } + }, + "espree": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/espree/-/espree-2.2.5.tgz", + "integrity": "sha1-32kbkxCIlAKuspzAZnCMVmkLhUs=", + "dev": true + }, + "estraverse-fb": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/estraverse-fb/-/estraverse-fb-1.3.2.tgz", + "integrity": "sha1-0yOky15awzHOoDNBOpJT4WQ+B8Q=", + "dev": true + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true + }, + "file-entry-cache": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.3.1.tgz", + "integrity": "sha1-RMYepgeuS+nBQC9B9EJwy/4zT/g=", + "dev": true, + "requires": { + "flat-cache": "1.2.2", + "object-assign": "4.1.1" + }, + "dependencies": { + "flat-cache": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.2.2.tgz", + "integrity": "sha1-+oZxTnLCHbiGAXYezy9VXRq8a5Y=", + "dev": true, + "requires": { + "circular-json": "0.3.3", + "del": "2.0.2", + "graceful-fs": "4.1.11", + "write": "0.2.1" + }, + "dependencies": { + "circular-json": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", + "integrity": "sha1-gVyZ6oT2gJUp0vRXkb34JxE1LWY=", + "dev": true + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "write": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", + "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", + "dev": true, + "requires": { + "mkdirp": "0.5.1" + } + } + } + } + } + }, + "glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "dev": true, + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + }, + "globals": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-8.18.0.tgz", + "integrity": "sha1-k9SmK9ysOM+vr8R9awNHaMsP/LQ=", + "dev": true + }, + "handlebars": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.10.tgz", + "integrity": "sha1-PTDHGLCaPZbyPqTMH0A8TTup/08=", + "dev": true, + "requires": { + "async": "1.5.2", + "optimist": "0.6.1", + "source-map": "0.4.4", + "uglify-js": "2.8.29" + }, + "dependencies": { + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "requires": { + "minimist": "0.0.10", + "wordwrap": "0.0.3" + }, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + } + } + }, + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "dev": true, + "requires": { + "amdefine": "1.0.1" + }, + "dependencies": { + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + } + } + }, + "uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", + "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", + "dev": true, + "optional": true, + "requires": { + "source-map": "0.5.6", + "uglify-to-browserify": "1.0.2", + "yargs": "3.10.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true, + "optional": true + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "dev": true, + "optional": true + }, + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "dev": true, + "optional": true, + "requires": { + "camelcase": "1.2.1", + "cliui": "2.1.0", + "decamelize": "1.2.0", + "window-size": "0.1.0" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", + "dev": true, + "optional": true + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "dev": true, + "optional": true, + "requires": { + "center-align": "0.1.3", + "right-align": "0.1.3", + "wordwrap": "0.0.2" + }, + "dependencies": { + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "dev": true, + "optional": true, + "requires": { + "align-text": "0.1.4", + "lazy-cache": "1.0.4" + }, + "dependencies": { + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dev": true, + "optional": true, + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "optional": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true, + "optional": true + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true, + "optional": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true, + "optional": true + } + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", + "dev": true, + "optional": true + } + } + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "dev": true, + "optional": true, + "requires": { + "align-text": "0.1.4" + }, + "dependencies": { + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dev": true, + "optional": true, + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "optional": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true, + "optional": true + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true, + "optional": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true, + "optional": true + } + } + } + } + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "dev": true, + "optional": true + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true, + "optional": true + }, + "window-size": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", + "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", + "dev": true, + "optional": true + } + } + } + } + } + } + }, + "inquirer": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.11.4.tgz", + "integrity": "sha1-geM3ToNhvq/y2XAWIG01nQsy+k0=", + "dev": true, + "requires": { + "ansi-escapes": "1.4.0", + "ansi-regex": "2.1.1", + "chalk": "1.1.3", + "cli-cursor": "1.0.2", + "cli-width": "1.1.1", + "figures": "1.7.0", + "lodash": "3.10.1", + "readline2": "1.0.1", + "run-async": "0.1.0", + "rx-lite": "3.1.2", + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "through": "2.3.8" + }, + "dependencies": { + "ansi-escapes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", + "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=", + "dev": true + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "cli-cursor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", + "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", + "dev": true, + "requires": { + "restore-cursor": "1.0.1" + }, + "dependencies": { + "restore-cursor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", + "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", + "dev": true, + "requires": { + "exit-hook": "1.1.1", + "onetime": "1.1.0" + }, + "dependencies": { + "exit-hook": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", + "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=", + "dev": true + }, + "onetime": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", + "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=", + "dev": true + } + } + } + } + }, + "cli-width": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz", + "integrity": "sha1-pNKT72frt7iNSk1CwMzwDE0eNm0=", + "dev": true + }, + "figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "dev": true, + "requires": { + "escape-string-regexp": "1.0.5", + "object-assign": "4.1.1" + } + }, + "readline2": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz", + "integrity": "sha1-QQWWCP/BVHV7cV2ZidGZ/783LjU=", + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "mute-stream": "0.0.5" + }, + "dependencies": { + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + }, + "dependencies": { + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + } + } + }, + "mute-stream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz", + "integrity": "sha1-j7+rsKmKJT0xhDMfno3rc3L6xsA=", + "dev": true + } + } + }, + "run-async": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz", + "integrity": "sha1-yK1KXhEGYeQCp9IbUw4AnyX444k=", + "dev": true, + "requires": { + "once": "1.4.0" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + }, + "rx-lite": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz", + "integrity": "sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI=", + "dev": true + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + }, + "dependencies": { + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + }, + "dependencies": { + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + } + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + } + } + }, + "is-my-json-valid": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz", + "integrity": "sha1-8Hndm/2uZe4gOKrorLyGqxCeNpM=", + "dev": true, + "requires": { + "generate-function": "2.0.0", + "generate-object-property": "1.2.0", + "jsonpointer": "4.0.1", + "xtend": "4.0.1" + }, + "dependencies": { + "generate-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", + "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=", + "dev": true + }, + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "dev": true, + "requires": { + "is-property": "1.0.2" + }, + "dependencies": { + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", + "dev": true + } + } + }, + "jsonpointer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", + "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=", + "dev": true + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "is-resolvable": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.0.tgz", + "integrity": "sha1-jfV8YeouPFAUCNEA+wE8+NbgzGI=", + "dev": true, + "requires": { + "tryit": "1.0.3" + }, + "dependencies": { + "tryit": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tryit/-/tryit-1.0.3.tgz", + "integrity": "sha1-OTvnMKlEb9Hq1tpZoBQwjzbCics=", + "dev": true + } + } + }, + "js-yaml": { + "version": "3.4.5", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.5.tgz", + "integrity": "sha1-w0A3l98SuRhmV08t4jZG/oyvtE0=", + "dev": true, + "requires": { + "argparse": "1.0.9", + "esprima": "2.7.3" + }, + "dependencies": { + "argparse": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", + "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=", + "dev": true, + "requires": { + "sprintf-js": "1.0.3" + }, + "dependencies": { + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + } + } + }, + "esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", + "dev": true + } + } + }, + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true, + "requires": { + "jsonify": "0.0.0" + }, + "dependencies": { + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true + } + } + }, + "lodash.clonedeep": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz", + "integrity": "sha1-oKHkDYKl6on/WxR7hETtY9koJ9s=", + "dev": true, + "requires": { + "lodash._baseclone": "3.3.0", + "lodash._bindcallback": "3.0.1" + }, + "dependencies": { + "lodash._baseclone": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz", + "integrity": "sha1-MDUZv2OT/n5C802LYw73eU41Qrc=", + "dev": true, + "requires": { + "lodash._arraycopy": "3.0.0", + "lodash._arrayeach": "3.0.0", + "lodash._baseassign": "3.2.0", + "lodash._basefor": "3.0.3", + "lodash.isarray": "3.0.4", + "lodash.keys": "3.1.2" + }, + "dependencies": { + "lodash._arraycopy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz", + "integrity": "sha1-due3wfH7klRzdIeKVi7Qaj5Q9uE=", + "dev": true + }, + "lodash._arrayeach": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz", + "integrity": "sha1-urFWsqkNPxu9XGU0AzSeXlkz754=", + "dev": true + }, + "lodash._baseassign": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz", + "integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=", + "dev": true, + "requires": { + "lodash._basecopy": "3.0.1", + "lodash.keys": "3.1.2" + }, + "dependencies": { + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", + "dev": true + } + } + }, + "lodash._basefor": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz", + "integrity": "sha1-dVC06SGO8J+tJDQ7YSAhx5tMIMI=", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + }, + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "dev": true, + "requires": { + "lodash._getnative": "3.9.1", + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4" + }, + "dependencies": { + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", + "dev": true + }, + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true + } + } + } + } + }, + "lodash._bindcallback": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", + "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=", + "dev": true + } + } + }, + "lodash.merge": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz", + "integrity": "sha1-DZDZPtY3sYeEN7s+IWASYNev6ZQ=", + "dev": true, + "requires": { + "lodash._arraycopy": "3.0.0", + "lodash._arrayeach": "3.0.0", + "lodash._createassigner": "3.1.1", + "lodash._getnative": "3.9.1", + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4", + "lodash.isplainobject": "3.2.0", + "lodash.istypedarray": "3.0.6", + "lodash.keys": "3.1.2", + "lodash.keysin": "3.0.8", + "lodash.toplainobject": "3.0.0" + }, + "dependencies": { + "lodash._arraycopy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz", + "integrity": "sha1-due3wfH7klRzdIeKVi7Qaj5Q9uE=", + "dev": true + }, + "lodash._arrayeach": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz", + "integrity": "sha1-urFWsqkNPxu9XGU0AzSeXlkz754=", + "dev": true + }, + "lodash._createassigner": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz", + "integrity": "sha1-g4pbri/aymOsIt7o4Z+k5taXCxE=", + "dev": true, + "requires": { + "lodash._bindcallback": "3.0.1", + "lodash._isiterateecall": "3.0.9", + "lodash.restparam": "3.6.1" + }, + "dependencies": { + "lodash._bindcallback": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", + "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=", + "dev": true + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", + "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", + "dev": true + }, + "lodash.restparam": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", + "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", + "dev": true + } + } + }, + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", + "dev": true + }, + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + }, + "lodash.isplainobject": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz", + "integrity": "sha1-moI4rhayAEMpYM1zRlEtASP79MU=", + "dev": true, + "requires": { + "lodash._basefor": "3.0.3", + "lodash.isarguments": "3.1.0", + "lodash.keysin": "3.0.8" + }, + "dependencies": { + "lodash._basefor": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz", + "integrity": "sha1-dVC06SGO8J+tJDQ7YSAhx5tMIMI=", + "dev": true + } + } + }, + "lodash.istypedarray": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz", + "integrity": "sha1-yaR3SYYHUB2OhJTSg7h8OSgc72I=", + "dev": true + }, + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "dev": true, + "requires": { + "lodash._getnative": "3.9.1", + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4" + } + }, + "lodash.keysin": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz", + "integrity": "sha1-IsRJPrvtsUJ5YqVLRFssinZ/tH8=", + "dev": true, + "requires": { + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4" + } + }, + "lodash.toplainobject": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz", + "integrity": "sha1-KHkK2ULSk9eKpmOgfs9/UsoEGY0=", + "dev": true, + "requires": { + "lodash._basecopy": "3.0.1", + "lodash.keysin": "3.0.8" + }, + "dependencies": { + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", + "dev": true + } + } + } + } + }, + "lodash.omit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-3.1.0.tgz", + "integrity": "sha1-iX/jguZBPZrJfGH3jtHgV6AK+fM=", + "dev": true, + "requires": { + "lodash._arraymap": "3.0.0", + "lodash._basedifference": "3.0.3", + "lodash._baseflatten": "3.1.4", + "lodash._bindcallback": "3.0.1", + "lodash._pickbyarray": "3.0.2", + "lodash._pickbycallback": "3.0.0", + "lodash.keysin": "3.0.8", + "lodash.restparam": "3.6.1" + }, + "dependencies": { + "lodash._arraymap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arraymap/-/lodash._arraymap-3.0.0.tgz", + "integrity": "sha1-Go/Q9MDfS2HeoHbXF83Jfwo8PmY=", + "dev": true + }, + "lodash._basedifference": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash._basedifference/-/lodash._basedifference-3.0.3.tgz", + "integrity": "sha1-8sIEKWwqeOArOJCBtu3KyTPPYpw=", + "dev": true, + "requires": { + "lodash._baseindexof": "3.1.0", + "lodash._cacheindexof": "3.0.2", + "lodash._createcache": "3.1.2" + }, + "dependencies": { + "lodash._baseindexof": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz", + "integrity": "sha1-/lK1OhxnYeQmGNZU5KJXie1hgiw=", + "dev": true + }, + "lodash._cacheindexof": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz", + "integrity": "sha1-PcaayCSY0u5ePOVgkbr9Ktx73pI=", + "dev": true + }, + "lodash._createcache": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash._createcache/-/lodash._createcache-3.1.2.tgz", + "integrity": "sha1-VtagZAF2JeeevKa4AY4XRAvc8JM=", + "dev": true, + "requires": { + "lodash._getnative": "3.9.1" + }, + "dependencies": { + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", + "dev": true + } + } + } + } + }, + "lodash._baseflatten": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz", + "integrity": "sha1-B3D/gBMa9uNPO1EXlqe6UhTmX/c=", + "dev": true, + "requires": { + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4" + }, + "dependencies": { + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + } + } + }, + "lodash._bindcallback": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", + "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=", + "dev": true + }, + "lodash._pickbyarray": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash._pickbyarray/-/lodash._pickbyarray-3.0.2.tgz", + "integrity": "sha1-H4mNlgfrVgsOFnOEt3x8bRCKpMU=", + "dev": true + }, + "lodash._pickbycallback": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._pickbycallback/-/lodash._pickbycallback-3.0.0.tgz", + "integrity": "sha1-/2G5oBens699MObFPeKK+hm4dQo=", + "dev": true, + "requires": { + "lodash._basefor": "3.0.3", + "lodash.keysin": "3.0.8" + }, + "dependencies": { + "lodash._basefor": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz", + "integrity": "sha1-dVC06SGO8J+tJDQ7YSAhx5tMIMI=", + "dev": true + } + } + }, + "lodash.keysin": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz", + "integrity": "sha1-IsRJPrvtsUJ5YqVLRFssinZ/tH8=", + "dev": true, + "requires": { + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4" + }, + "dependencies": { + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + } + } + }, + "lodash.restparam": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", + "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", + "dev": true + } + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "optionator": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.6.0.tgz", + "integrity": "sha1-tj7Lvw4xX61LyYJ7Rdx7pFKE/LY=", + "dev": true, + "requires": { + "deep-is": "0.1.3", + "fast-levenshtein": "1.0.7", + "levn": "0.2.5", + "prelude-ls": "1.1.2", + "type-check": "0.3.2", + "wordwrap": "0.0.3" + }, + "dependencies": { + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "fast-levenshtein": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.0.7.tgz", + "integrity": "sha1-AXjc3uAjuSkFGTrwlZ6KdjnP3Lk=", + "dev": true + }, + "levn": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.2.5.tgz", + "integrity": "sha1-uo0znQykphDjo/FFucr0iAcVUFQ=", + "dev": true, + "requires": { + "prelude-ls": "1.1.2", + "type-check": "0.3.2" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "1.1.2" + } + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "shelljs": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz", + "integrity": "sha1-xUmCuZbHbvDB5rWfvcWCX1txMRM=", + "dev": true + }, + "strip-json-comments": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", + "integrity": "sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E=", + "dev": true + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "user-home": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", + "integrity": "sha1-nHC/2Babwdy/SGBODwS4tJzenp8=", + "dev": true, + "requires": { + "os-homedir": "1.0.2" + }, + "dependencies": { + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + } + } + }, + "xml-escape": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/xml-escape/-/xml-escape-1.0.0.tgz", + "integrity": "sha1-AJY9aXsq3wwYXE4E5zF0upsojrI=", + "dev": true + } + } + }, + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", + "dev": true + } + } + }, + "gulp-filter": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/gulp-filter/-/gulp-filter-3.0.1.tgz", + "integrity": "sha1-fG/85bVj6J3nqQ387/FuyKjLFWI=", + "dev": true, + "requires": { + "gulp-util": "3.0.8", + "multimatch": "2.1.0", + "streamfilter": "1.0.5" + }, + "dependencies": { + "multimatch": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz", + "integrity": "sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis=", + "dev": true, + "requires": { + "array-differ": "1.0.0", + "array-union": "1.0.2", + "arrify": "1.0.1", + "minimatch": "3.0.4" + }, + "dependencies": { + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "1.0.3" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + } + } + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + } + } + }, + "streamfilter": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/streamfilter/-/streamfilter-1.0.5.tgz", + "integrity": "sha1-h1BxEb644phFFxe1Ec/tjwAqv1M=", + "dev": true, + "requires": { + "readable-stream": "2.3.3" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + } + } + } + } + }, + "gulp-flatten": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/gulp-flatten/-/gulp-flatten-0.2.0.tgz", + "integrity": "sha1-iS1RfjjXkA/UVM+aHgIQMA6S6wY=", + "dev": true, + "requires": { + "gulp-util": "3.0.8", + "through2": "2.0.3" + }, + "dependencies": { + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + } + } + }, + "gulp-gh-pages": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/gulp-gh-pages/-/gulp-gh-pages-0.5.4.tgz", + "integrity": "sha1-pnMspHWrm1pTJTwcJHNMQMIbZUY=", + "requires": { + "gift": "0.6.1", + "gulp-util": "3.0.8", + "readable-stream": "2.3.6", + "rimraf": "2.6.2", + "vinyl-fs": "2.4.4", + "wrap-promise": "1.0.1" + } + }, + "gulp-inject": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gulp-inject/-/gulp-inject-3.0.0.tgz", + "integrity": "sha1-LcHqlKlg3pCddl7yJS7ZrzvR7VA=", + "dev": true, + "requires": { + "event-stream": "3.3.4", + "gulp-util": "3.0.8" + }, + "dependencies": { + "event-stream": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", + "dev": true, + "requires": { + "duplexer": "0.1.1", + "from": "0.1.7", + "map-stream": "0.1.0", + "pause-stream": "0.0.11", + "split": "0.3.3", + "stream-combiner": "0.0.4", + "through": "2.3.8" + }, + "dependencies": { + "duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", + "dev": true + }, + "from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", + "dev": true + }, + "map-stream": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", + "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=", + "dev": true + }, + "pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "split": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", + "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "stream-combiner": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", + "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", + "dev": true, + "requires": { + "duplexer": "0.1.1" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + } + } + } + } + }, + "gulp-load-plugins": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/gulp-load-plugins/-/gulp-load-plugins-0.10.0.tgz", + "integrity": "sha1-gMDqWKOqQ4KjLAWp1qcLHFZqgT0=", + "dev": true, + "requires": { + "findup-sync": "0.2.1", + "multimatch": "2.0.0" + }, + "dependencies": { + "findup-sync": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.2.1.tgz", + "integrity": "sha1-4KkKRQB1xJRm7lE3MgV1FLgeh4w=", + "dev": true, + "requires": { + "glob": "4.3.5" + }, + "dependencies": { + "glob": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.3.5.tgz", + "integrity": "sha1-gPuwjKVA8jiszl0R0em8QedRc9M=", + "dev": true, + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "2.0.10", + "once": "1.4.0" + }, + "dependencies": { + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + } + } + }, + "multimatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-2.0.0.tgz", + "integrity": "sha1-xa2kJTV7dEulSELr3OHI8L5UK28=", + "dev": true, + "requires": { + "array-differ": "1.0.0", + "array-union": "1.0.2", + "minimatch": "2.0.10" + }, + "dependencies": { + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "1.0.3" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + } + } + }, + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + } + } + } + } + }, + "gulp-minify-css": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/gulp-minify-css/-/gulp-minify-css-1.2.4.tgz", + "integrity": "sha1-thZJV2Auon+eWtiCJ2ld0gV3jAY=", + "dev": true, + "requires": { + "clean-css": "3.4.28", + "gulp-util": "3.0.8", + "object-assign": "4.1.1", + "readable-stream": "2.3.3", + "vinyl-bufferstream": "1.0.1", + "vinyl-sourcemaps-apply": "0.2.1" + }, + "dependencies": { + "clean-css": { + "version": "3.4.28", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz", + "integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=", + "dev": true, + "requires": { + "commander": "2.8.1", + "source-map": "0.4.4" + }, + "dependencies": { + "commander": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", + "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", + "dev": true, + "requires": { + "graceful-readlink": "1.0.1" + }, + "dependencies": { + "graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=", + "dev": true + } + } + }, + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "dev": true, + "requires": { + "amdefine": "1.0.1" + }, + "dependencies": { + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + } + } + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "vinyl-bufferstream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vinyl-bufferstream/-/vinyl-bufferstream-1.0.1.tgz", + "integrity": "sha1-BTeGn1gO/6TKRay0dXnkuf5jCBo=", + "dev": true, + "requires": { + "bufferstreams": "1.0.1" + }, + "dependencies": { + "bufferstreams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bufferstreams/-/bufferstreams-1.0.1.tgz", + "integrity": "sha1-z7GtlWjTujz+k1upq92VLeiKqyo=", + "dev": true, + "requires": { + "readable-stream": "1.1.14" + }, + "dependencies": { + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + } + } + } + } + }, + "vinyl-sourcemaps-apply": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", + "integrity": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=", + "dev": true, + "requires": { + "source-map": "0.5.6" + }, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + } + } + } + } + }, + "gulp-minify-html": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/gulp-minify-html/-/gulp-minify-html-1.0.6.tgz", + "integrity": "sha1-+Ufz8TlHW74bCP/+cUxHKfH/Bwo=", + "dev": true, + "requires": { + "gulp-util": "3.0.8", + "minimize": "1.8.1", + "through2": "0.6.5" + }, + "dependencies": { + "minimize": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/minimize/-/minimize-1.8.1.tgz", + "integrity": "sha1-o2dK3pPyinX/ojuODzZc3CPWnYs=", + "dev": true, + "requires": { + "argh": "0.1.4", + "async": "1.5.2", + "cli-color": "1.1.0", + "diagnostics": "1.0.1", + "emits": "3.0.0", + "htmlparser2": "3.9.2", + "node-uuid": "1.4.8" + }, + "dependencies": { + "argh": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/argh/-/argh-0.1.4.tgz", + "integrity": "sha1-PrTWEpc/xrbcbvM49W91nyrFw6Y=", + "dev": true + }, + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true + }, + "cli-color": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-1.1.0.tgz", + "integrity": "sha1-3hiM3Ekp2DtnrqBBEPvtQP2/Z3U=", + "dev": true, + "requires": { + "ansi-regex": "2.1.1", + "d": "0.1.1", + "es5-ext": "0.10.29", + "es6-iterator": "2.0.1", + "memoizee": "0.3.10", + "timers-ext": "0.1.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "d": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/d/-/d-0.1.1.tgz", + "integrity": "sha1-2hhMU10Y2O57oqoim5FACfrhEwk=", + "dev": true, + "requires": { + "es5-ext": "0.10.29" + } + }, + "es5-ext": { + "version": "0.10.29", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.29.tgz", + "integrity": "sha1-do6y38SVe881+gVo8ZOrce3lP9g=", + "dev": true, + "requires": { + "es6-iterator": "2.0.1", + "es6-symbol": "3.1.1" + }, + "dependencies": { + "es6-symbol": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29" + }, + "dependencies": { + "d": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", + "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", + "dev": true, + "requires": { + "es5-ext": "0.10.29" + } + } + } + } + } + }, + "es6-iterator": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.1.tgz", + "integrity": "sha1-jjGcnwRTv1ddN0lAplWSDlnKVRI=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29", + "es6-symbol": "3.1.1" + }, + "dependencies": { + "d": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", + "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", + "dev": true, + "requires": { + "es5-ext": "0.10.29" + } + }, + "es6-symbol": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29" + } + } + } + }, + "memoizee": { + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.3.10.tgz", + "integrity": "sha1-TsoNiu057J0Bf0xcLy9kMvQuXI8=", + "dev": true, + "requires": { + "d": "0.1.1", + "es5-ext": "0.10.29", + "es6-weak-map": "0.1.4", + "event-emitter": "0.3.5", + "lru-queue": "0.1.0", + "next-tick": "0.2.2", + "timers-ext": "0.1.2" + }, + "dependencies": { + "es6-weak-map": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-0.1.4.tgz", + "integrity": "sha1-cGzvnpmqI2undmwjnIueKG6n0ig=", + "dev": true, + "requires": { + "d": "0.1.1", + "es5-ext": "0.10.29", + "es6-iterator": "0.1.3", + "es6-symbol": "2.0.1" + }, + "dependencies": { + "es6-iterator": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-0.1.3.tgz", + "integrity": "sha1-1vWLjE/EE8JJtLqhl2j45NfIlE4=", + "dev": true, + "requires": { + "d": "0.1.1", + "es5-ext": "0.10.29", + "es6-symbol": "2.0.1" + } + }, + "es6-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-2.0.1.tgz", + "integrity": "sha1-dhtcZ8/U8dGK+yNPaR1nhoLLO/M=", + "dev": true, + "requires": { + "d": "0.1.1", + "es5-ext": "0.10.29" + } + } + } + }, + "event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", + "dev": true, + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.29" + }, + "dependencies": { + "d": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", + "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", + "dev": true, + "requires": { + "es5-ext": "0.10.29" + } + } + } + }, + "lru-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", + "integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=", + "dev": true, + "requires": { + "es5-ext": "0.10.29" + } + }, + "next-tick": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-0.2.2.tgz", + "integrity": "sha1-ddpKkn7liH45BliABltzNkE7MQ0=", + "dev": true + } + } + }, + "timers-ext": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.2.tgz", + "integrity": "sha1-YcxHp2wavTGV8UUn+XjViulMUgQ=", + "dev": true, + "requires": { + "es5-ext": "0.10.29", + "next-tick": "1.0.0" + }, + "dependencies": { + "next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", + "dev": true + } + } + } + } + }, + "diagnostics": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/diagnostics/-/diagnostics-1.0.1.tgz", + "integrity": "sha1-rM2wgMgrsl0N1zQwqeaof7tDFUE=", + "dev": true, + "requires": { + "colorspace": "1.0.1", + "enabled": "1.0.2", + "kuler": "0.0.0" + }, + "dependencies": { + "colorspace": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.0.1.tgz", + "integrity": "sha1-yZx5btMRKLmHalLh7l7gOkpxl0k=", + "dev": true, + "requires": { + "color": "0.8.0", + "text-hex": "0.0.0" + }, + "dependencies": { + "color": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/color/-/color-0.8.0.tgz", + "integrity": "sha1-iQwHw/1OZJU3Y4kRz2keVFi2/KU=", + "dev": true, + "requires": { + "color-convert": "0.5.3", + "color-string": "0.3.0" + }, + "dependencies": { + "color-convert": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz", + "integrity": "sha1-vbbGnOZg+t/+CwAHzER+G59ygr0=", + "dev": true + }, + "color-string": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz", + "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=", + "dev": true, + "requires": { + "color-name": "1.1.3" + }, + "dependencies": { + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + } + } + } + } + }, + "text-hex": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-0.0.0.tgz", + "integrity": "sha1-V4+8haapJjbkLdF7QdAhjM6esrM=", + "dev": true + } + } + }, + "enabled": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/enabled/-/enabled-1.0.2.tgz", + "integrity": "sha1-ll9lE9LC0cX0ZStkouM5ZGf8L5M=", + "dev": true, + "requires": { + "env-variable": "0.0.3" + }, + "dependencies": { + "env-variable": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/env-variable/-/env-variable-0.0.3.tgz", + "integrity": "sha1-uGwWQb5WECZ9UG8YBx6nbXBwl8s=", + "dev": true + } + } + }, + "kuler": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/kuler/-/kuler-0.0.0.tgz", + "integrity": "sha1-tmu0a5NOVQ9Z2BiEjgq7pPf1VTw=", + "dev": true, + "requires": { + "colornames": "0.0.2" + }, + "dependencies": { + "colornames": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/colornames/-/colornames-0.0.2.tgz", + "integrity": "sha1-2BH9bIT1kClJmorEQ2ICk1uSvjE=", + "dev": true + } + } + } + } + }, + "emits": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emits/-/emits-3.0.0.tgz", + "integrity": "sha1-MnUrupXhcHshlWI4Srm7ix/WL3A=", + "dev": true + }, + "htmlparser2": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz", + "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=", + "dev": true, + "requires": { + "domelementtype": "1.3.0", + "domhandler": "2.4.1", + "domutils": "1.6.2", + "entities": "1.1.1", + "inherits": "2.0.3", + "readable-stream": "2.3.3" + }, + "dependencies": { + "domelementtype": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", + "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=", + "dev": true + }, + "domhandler": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz", + "integrity": "sha1-iS5HAAqZvlW783dP/qBWHYh5wlk=", + "dev": true, + "requires": { + "domelementtype": "1.3.0" + } + }, + "domutils": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.6.2.tgz", + "integrity": "sha1-GVjMC0yUJuntNn+xyOhUiRsPo/8=", + "dev": true, + "requires": { + "dom-serializer": "0.1.0", + "domelementtype": "1.3.0" + }, + "dependencies": { + "dom-serializer": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", + "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=", + "dev": true, + "requires": { + "domelementtype": "1.1.3", + "entities": "1.1.1" + }, + "dependencies": { + "domelementtype": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", + "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=", + "dev": true + } + } + } + } + }, + "entities": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", + "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + } + } + }, + "node-uuid": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz", + "integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc=", + "dev": true + } + } + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "dev": true, + "requires": { + "readable-stream": "1.0.34", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + } + } + }, + "gulp-protractor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulp-protractor/-/gulp-protractor-1.0.0.tgz", + "integrity": "sha1-AseiOClAHH6kYGGWhMn/k3iMPSU=", + "dev": true, + "requires": { + "async": "0.9.2", + "dargs": "3.0.1", + "event-stream": "3.3.4", + "gulp-util": "3.0.8", + "protractor": "2.5.1" + }, + "dependencies": { + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", + "dev": true + }, + "dargs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-3.0.1.tgz", + "integrity": "sha1-Wh8/QzI0Hz8c0Qgp4N8jmW39Kb4=", + "dev": true + }, + "event-stream": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", + "dev": true, + "requires": { + "duplexer": "0.1.1", + "from": "0.1.7", + "map-stream": "0.1.0", + "pause-stream": "0.0.11", + "split": "0.3.3", + "stream-combiner": "0.0.4", + "through": "2.3.8" + }, + "dependencies": { + "duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", + "dev": true + }, + "from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", + "dev": true + }, + "map-stream": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", + "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=", + "dev": true + }, + "pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "split": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", + "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "stream-combiner": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", + "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", + "dev": true, + "requires": { + "duplexer": "0.1.1" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + } + } + }, + "protractor": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/protractor/-/protractor-2.5.1.tgz", + "integrity": "sha1-A9bJPNfCaPQlAXfVWi/sihmDcs0=", + "dev": true, + "requires": { + "accessibility-developer-tools": "2.6.0", + "adm-zip": "0.4.4", + "glob": "3.2.11", + "html-entities": "1.1.3", + "jasmine": "2.3.2", + "jasminewd": "1.1.0", + "jasminewd2": "0.0.6", + "lodash": "2.4.2", + "minijasminenode": "1.1.1", + "optimist": "0.6.1", + "q": "1.0.0", + "request": "2.57.0", + "saucelabs": "1.0.1", + "selenium-webdriver": "2.47.0", + "source-map-support": "0.2.10" + }, + "dependencies": { + "accessibility-developer-tools": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/accessibility-developer-tools/-/accessibility-developer-tools-2.6.0.tgz", + "integrity": "sha1-/O2v8BTt3D9UxLNlkxvh9xV0avw=", + "dev": true + }, + "adm-zip": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.4.tgz", + "integrity": "sha1-ph7VrmkFw66lizplfSUDMJEFJzY=", + "dev": true + }, + "glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", + "integrity": "sha1-Spc/Y1uRkPcV0QmH1cAP0oFevj0=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "minimatch": "0.3.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "minimatch": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", + "integrity": "sha1-J12O2qxPG7MyZHIInnlJyDlGmd0=", + "dev": true, + "requires": { + "lru-cache": "2.7.3", + "sigmund": "1.0.1" + }, + "dependencies": { + "lru-cache": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", + "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", + "dev": true + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", + "dev": true + } + } + } + } + }, + "html-entities": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.1.3.tgz", + "integrity": "sha1-fjtHZA9eppsJeui7vny4ypQdhb0=", + "dev": true + }, + "jasmine": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/jasmine/-/jasmine-2.3.2.tgz", + "integrity": "sha1-/r8OS0r/9jwtCSEfB32guFn18ZE=", + "dev": true, + "requires": { + "exit": "0.1.2", + "glob": "3.2.11", + "jasmine-core": "2.3.4" + }, + "dependencies": { + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true + }, + "jasmine-core": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.3.4.tgz", + "integrity": "sha1-rXcmYrMtFsVk7iXIY+2uHWWgOPI=", + "dev": true + } + } + }, + "jasminewd": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jasminewd/-/jasminewd-1.1.0.tgz", + "integrity": "sha1-JXUaaEXvL7Qkwvo5ZHmHrhVv1DM=", + "dev": true + }, + "jasminewd2": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/jasminewd2/-/jasminewd2-0.0.6.tgz", + "integrity": "sha1-JZFX8G0tFJ++y5YwLICqMio3ciI=", + "dev": true + }, + "lodash": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz", + "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=", + "dev": true + }, + "minijasminenode": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/minijasminenode/-/minijasminenode-1.1.1.tgz", + "integrity": "sha1-f5Y31mQopTHAX08QtpoxG137YOk=", + "dev": true + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "requires": { + "minimist": "0.0.10", + "wordwrap": "0.0.3" + }, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + } + } + }, + "q": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/q/-/q-1.0.0.tgz", + "integrity": "sha1-3B+SxFh75U94U7Kdwo5tJDqISY0=", + "dev": true + }, + "request": { + "version": "2.57.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.57.0.tgz", + "integrity": "sha1-1EUQWkLQCbnXJCiWM7RJptcj2Yk=", + "dev": true, + "requires": { + "aws-sign2": "0.5.0", + "bl": "0.9.5", + "caseless": "0.10.0", + "combined-stream": "1.0.5", + "forever-agent": "0.6.1", + "form-data": "0.2.0", + "har-validator": "1.8.0", + "hawk": "2.3.1", + "http-signature": "0.11.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.0.14", + "node-uuid": "1.4.8", + "oauth-sign": "0.8.2", + "qs": "3.1.0", + "stringstream": "0.0.5", + "tough-cookie": "2.3.2", + "tunnel-agent": "0.4.3" + }, + "dependencies": { + "aws-sign2": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz", + "integrity": "sha1-xXED96F/wDfwLXwuZLYC6iI/fWM=", + "dev": true + }, + "bl": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/bl/-/bl-0.9.5.tgz", + "integrity": "sha1-wGt5evCF6gC8Unr8jvzxHeIjIFQ=", + "dev": true, + "requires": { + "readable-stream": "1.0.34" + }, + "dependencies": { + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + } + } + }, + "caseless": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.10.0.tgz", + "integrity": "sha1-7WsnGa3NH9GPWNwIHA8aW0OWOQk=", + "dev": true + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "dev": true, + "requires": { + "delayed-stream": "1.0.0" + }, + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + } + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.2.0.tgz", + "integrity": "sha1-Jvi8JtpkQOKZy9z7aQNcT3em5GY=", + "dev": true, + "requires": { + "async": "0.9.2", + "combined-stream": "0.0.7", + "mime-types": "2.0.14" + }, + "dependencies": { + "combined-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", + "integrity": "sha1-ATfmV7qlp1QcV6w3rF/AfXO03B8=", + "dev": true, + "requires": { + "delayed-stream": "0.0.5" + }, + "dependencies": { + "delayed-stream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz", + "integrity": "sha1-1LH0OpPoKW3+AmlPRoC8N6MTxz8=", + "dev": true + } + } + } + } + }, + "har-validator": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-1.8.0.tgz", + "integrity": "sha1-2DhCsOtMQ1lgrrEIoGejqpTA7rI=", + "dev": true, + "requires": { + "bluebird": "2.11.0", + "chalk": "1.1.3", + "commander": "2.11.0", + "is-my-json-valid": "2.16.0" + }, + "dependencies": { + "bluebird": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz", + "integrity": "sha1-U0uQM8AiyVecVro7Plpcqvu2UOE=", + "dev": true + }, + "commander": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", + "integrity": "sha1-FXFS/R56bI2YpbcVzzdt+SgARWM=", + "dev": true + }, + "is-my-json-valid": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz", + "integrity": "sha1-8Hndm/2uZe4gOKrorLyGqxCeNpM=", + "dev": true, + "requires": { + "generate-function": "2.0.0", + "generate-object-property": "1.2.0", + "jsonpointer": "4.0.1", + "xtend": "4.0.1" + }, + "dependencies": { + "generate-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", + "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=", + "dev": true + }, + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "dev": true, + "requires": { + "is-property": "1.0.2" + }, + "dependencies": { + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", + "dev": true + } + } + }, + "jsonpointer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", + "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=", + "dev": true + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + } + } + }, + "hawk": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-2.3.1.tgz", + "integrity": "sha1-HnMc45RH+h0PbXB/e87r7A/R7B8=", + "dev": true, + "requires": { + "boom": "2.10.1", + "cryptiles": "2.0.5", + "hoek": "2.16.3", + "sntp": "1.0.9" + }, + "dependencies": { + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "dev": true, + "requires": { + "hoek": "2.16.3" + } + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "dev": true, + "requires": { + "boom": "2.10.1" + } + }, + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=", + "dev": true + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "dev": true, + "requires": { + "hoek": "2.16.3" + } + } + } + }, + "http-signature": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-0.11.0.tgz", + "integrity": "sha1-F5bPZ6ABrVzWhJ3KCZFIXwkIn+Y=", + "dev": true, + "requires": { + "asn1": "0.1.11", + "assert-plus": "0.1.5", + "ctype": "0.5.3" + }, + "dependencies": { + "asn1": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz", + "integrity": "sha1-VZvhg3bQik7E2+gId9J4GGObLfc=", + "dev": true + }, + "assert-plus": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz", + "integrity": "sha1-7nQAlBMALYTOxyGcasgRgS5yMWA=", + "dev": true + }, + "ctype": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz", + "integrity": "sha1-gsGMJGH3QRTvFsE1IkrQuRRMoS8=", + "dev": true + } + } + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "mime-types": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz", + "integrity": "sha1-MQ4VnbI+B3+Lsit0jav6SVcUCqY=", + "dev": true, + "requires": { + "mime-db": "1.12.0" + }, + "dependencies": { + "mime-db": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz", + "integrity": "sha1-PQxjGA9FjrENMlqqN9fFiuMS6dc=", + "dev": true + } + } + }, + "node-uuid": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz", + "integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc=", + "dev": true + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "dev": true + }, + "qs": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-3.1.0.tgz", + "integrity": "sha1-0OmudFIzoS3EP7TzBVu6RGJhFTw=", + "dev": true + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", + "dev": true + }, + "tough-cookie": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz", + "integrity": "sha1-8IH3bkyFcg5sN6X6ztc3FQ2EByo=", + "dev": true, + "requires": { + "punycode": "1.4.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + } + } + }, + "tunnel-agent": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", + "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=", + "dev": true + } + } + }, + "saucelabs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/saucelabs/-/saucelabs-1.0.1.tgz", + "integrity": "sha1-tQoQDZxaQUB0izUzWm5dcAF9rfk=", + "dev": true, + "requires": { + "https-proxy-agent": "1.0.0" + }, + "dependencies": { + "https-proxy-agent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz", + "integrity": "sha1-NffabEjOTdv6JkiRrFk+5f+GceY=", + "dev": true, + "requires": { + "agent-base": "2.1.1", + "debug": "2.6.8", + "extend": "3.0.1" + }, + "dependencies": { + "agent-base": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz", + "integrity": "sha1-1t4Q1a9hMtW9aSQn1G/FOFOQlMc=", + "dev": true, + "requires": { + "extend": "3.0.1", + "semver": "5.0.3" + }, + "dependencies": { + "semver": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz", + "integrity": "sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no=", + "dev": true + } + } + }, + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "dev": true + } + } + } + } + }, + "selenium-webdriver": { + "version": "2.47.0", + "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-2.47.0.tgz", + "integrity": "sha1-4ptS0tqg9kjED2AvTSqOi+41HqU=", + "dev": true, + "requires": { + "adm-zip": "0.4.4", + "rimraf": "2.6.1", + "tmp": "0.0.24", + "ws": "0.8.1", + "xml2js": "0.4.4" + }, + "dependencies": { + "rimraf": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", + "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", + "dev": true, + "requires": { + "glob": "7.1.2" + }, + "dependencies": { + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + } + } + } + } + }, + "tmp": { + "version": "0.0.24", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.24.tgz", + "integrity": "sha1-1qXhmNFKmDXMby18PZ4wJCjIzxI=", + "dev": true + }, + "ws": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-0.8.1.tgz", + "integrity": "sha1-a2UnO5kZPF8Gekz1gJWY93fjt1k=", + "dev": true, + "requires": { + "bufferutil": "1.2.1", + "options": "0.0.6", + "ultron": "1.0.2", + "utf-8-validate": "1.2.2" + }, + "dependencies": { + "options": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", + "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=", + "dev": true + }, + "ultron": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", + "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=", + "dev": true + } + } + }, + "xml2js": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.4.tgz", + "integrity": "sha1-MREBAAMAiuGSQOuhdJe1fHKcVV0=", + "dev": true, + "requires": { + "sax": "0.6.1", + "xmlbuilder": "9.0.4" + }, + "dependencies": { + "sax": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-0.6.1.tgz", + "integrity": "sha1-VjsZx8HeiS4Jv8Ty/DDjwn8JUrk=", + "dev": true + }, + "xmlbuilder": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.4.tgz", + "integrity": "sha1-UZy0ymhtAFqEINNJbz8MruzKWA8=", + "dev": true + } + } + } + } + }, + "source-map-support": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.2.10.tgz", + "integrity": "sha1-6lo5AKHByyUJagrozFwrSxDe09w=", + "dev": true, + "requires": { + "source-map": "0.1.32" + }, + "dependencies": { + "source-map": { + "version": "0.1.32", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz", + "integrity": "sha1-yLbBZ3l7pHQKjqMyUhYv8IWRsmY=", + "dev": true, + "requires": { + "amdefine": "1.0.1" + }, + "dependencies": { + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + } + } + } + } + } + } + } + } + }, + "gulp-rename": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.2.3.tgz", + "integrity": "sha512-CmdPM0BjJ105QCX1fk+j7NGhiN/1rCl9HLGss+KllBS/tdYadpjTxqdKyh/5fNV+M3yjT1MFz5z93bXdrTyzAw==", + "dev": true + }, + "gulp-replace": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/gulp-replace/-/gulp-replace-0.5.4.tgz", + "integrity": "sha1-aaZ5FLvRPFYr/xT1BKQDeWqg2qk=", + "dev": true, + "requires": { + "istextorbinary": "1.0.2", + "readable-stream": "2.3.3", + "replacestream": "4.0.2" + }, + "dependencies": { + "istextorbinary": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-1.0.2.tgz", + "integrity": "sha1-rOGTVNGpoBc+/rEITOD4ewrX3s8=", + "dev": true, + "requires": { + "binaryextensions": "1.0.1", + "textextensions": "1.0.2" + }, + "dependencies": { + "binaryextensions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-1.0.1.tgz", + "integrity": "sha1-HmN0iLNbWL2l9HdL+WpSEqjJB1U=", + "dev": true + }, + "textextensions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/textextensions/-/textextensions-1.0.2.tgz", + "integrity": "sha1-ZUhjk+4fK7A5pgy7oFsLaL2VAdI=", + "dev": true + } + } + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "replacestream": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/replacestream/-/replacestream-4.0.2.tgz", + "integrity": "sha1-DEFAcH5PAyP1DeBEhRcIz1i8N70=", + "dev": true, + "requires": { + "escape-string-regexp": "1.0.5", + "object-assign": "4.1.1", + "readable-stream": "2.3.3" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + } + } + } + } + }, + "gulp-rev": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/gulp-rev/-/gulp-rev-6.0.1.tgz", + "integrity": "sha1-2Iah3CEx0iAr82ojj49IBleCoL0=", + "dev": true, + "requires": { + "gulp-util": "3.0.8", + "modify-filename": "1.1.0", + "object-assign": "4.1.1", + "rev-hash": "1.0.0", + "rev-path": "1.0.0", + "sort-keys": "1.1.2", + "through2": "2.0.3", + "vinyl-file": "1.3.0" + }, + "dependencies": { + "modify-filename": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/modify-filename/-/modify-filename-1.1.0.tgz", + "integrity": "sha1-mi3sg4Bvuy2XXyK+7IWcoms5OqE=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "rev-hash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rev-hash/-/rev-hash-1.0.0.tgz", + "integrity": "sha1-lpk5Weqb+xxZsTrfAqwuNLs3NgM=", + "dev": true + }, + "rev-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rev-path/-/rev-path-1.0.0.tgz", + "integrity": "sha1-1My0NqwzcMRgcXXOiOr8XGXF1lM=", + "dev": true, + "requires": { + "modify-filename": "1.1.0" + } + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "dev": true, + "requires": { + "is-plain-obj": "1.1.0" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "dev": true + } + } + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "vinyl-file": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/vinyl-file/-/vinyl-file-1.3.0.tgz", + "integrity": "sha1-qgVjTTqGe6kUR77bs0r8sm9E9uc=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "strip-bom": "2.0.0", + "strip-bom-stream": "1.0.0", + "vinyl": "1.2.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "0.2.1" + }, + "dependencies": { + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + } + } + }, + "strip-bom-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz", + "integrity": "sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4=", + "dev": true, + "requires": { + "first-chunk-stream": "1.0.0", + "strip-bom": "2.0.0" + }, + "dependencies": { + "first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=", + "dev": true + } + } + }, + "vinyl": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", + "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "dev": true, + "requires": { + "clone": "1.0.2", + "clone-stats": "0.0.1", + "replace-ext": "0.0.1" + }, + "dependencies": { + "clone": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=", + "dev": true + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true + } + } + } + } + } + } + }, + "gulp-rev-replace": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/gulp-rev-replace/-/gulp-rev-replace-0.4.4.tgz", + "integrity": "sha512-2yiDel/TGamn/HgHyo8H1rYEEL2zLsOYODerItoX8batOo0gPAe7uX7t6NlaqB7FEHpS5tGzUr5CKUEmrgdHyQ==", + "dev": true, + "requires": { + "plugin-error": "0.1.2", + "through2": "2.0.3" + } + }, + "gulp-size": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/gulp-size/-/gulp-size-2.0.0.tgz", + "integrity": "sha1-UHYCbShf+qBNyPqQRFoLPjZT0TQ=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "gulp-util": "3.0.8", + "gzip-size": "3.0.0", + "pretty-bytes": "2.0.1", + "stream-counter": "1.0.0", + "through2": "2.0.3" + }, + "dependencies": { + "gzip-size": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz", + "integrity": "sha1-VGGI6b3DN/Zzdy+BZgRks4nc5SA=", + "dev": true, + "requires": { + "duplexer": "0.1.1" + }, + "dependencies": { + "duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", + "dev": true + } + } + }, + "pretty-bytes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-2.0.1.tgz", + "integrity": "sha1-FV7E0ANvQTkecEXW2+SWPVJdJk8=", + "dev": true, + "requires": { + "get-stdin": "4.0.1", + "meow": "3.7.0", + "number-is-nan": "1.0.1" + }, + "dependencies": { + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "requires": { + "camelcase-keys": "2.1.0", + "decamelize": "1.2.0", + "loud-rejection": "1.6.0", + "map-obj": "1.0.1", + "minimist": "1.2.0", + "normalize-package-data": "2.4.0", + "object-assign": "4.1.1", + "read-pkg-up": "1.0.1", + "redent": "1.0.0", + "trim-newlines": "1.0.0" + }, + "dependencies": { + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "requires": { + "camelcase": "2.1.1", + "map-obj": "1.0.1" + }, + "dependencies": { + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true, + "requires": { + "currently-unhandled": "0.4.1", + "signal-exit": "3.0.2" + }, + "dependencies": { + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "requires": { + "array-find-index": "1.0.2" + }, + "dependencies": { + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + } + } + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + } + } + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha1-EvlaMH1YNSB1oEkHuErIvpisAS8=", + "dev": true, + "requires": { + "hosted-git-info": "2.5.0", + "is-builtin-module": "1.0.0", + "semver": "5.4.1", + "validate-npm-package-license": "3.0.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", + "integrity": "sha1-bWDjSzq7yDEwYsO3mO+NkBoHrzw=", + "dev": true + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "dev": true, + "requires": { + "builtin-modules": "1.1.1" + }, + "dependencies": { + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "dev": true + } + } + }, + "semver": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", + "integrity": "sha1-4FnAnYVx8FQII3M0M1BdOi8AsY4=", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", + "dev": true, + "requires": { + "spdx-correct": "1.0.2", + "spdx-expression-parse": "1.0.4" + }, + "dependencies": { + "spdx-correct": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "dev": true, + "requires": { + "spdx-license-ids": "1.2.2" + }, + "dependencies": { + "spdx-license-ids": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", + "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=", + "dev": true + } + } + }, + "spdx-expression-parse": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", + "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=", + "dev": true + } + } + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "1.1.2", + "read-pkg": "1.1.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "2.1.0", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "2.0.1" + } + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + } + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "1.1.0", + "normalize-package-data": "2.4.0", + "path-type": "1.1.0" + }, + "dependencies": { + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "parse-json": "2.2.0", + "pify": "2.3.0", + "pinkie-promise": "2.0.1", + "strip-bom": "2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "1.3.1" + }, + "dependencies": { + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "dev": true, + "requires": { + "is-arrayish": "0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + } + } + } + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "0.2.1" + }, + "dependencies": { + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + } + } + } + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + } + } + } + } + } + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "requires": { + "indent-string": "2.1.0", + "strip-indent": "1.0.1" + }, + "dependencies": { + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "requires": { + "repeating": "2.0.1" + }, + "dependencies": { + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "requires": { + "is-finite": "1.0.2" + }, + "dependencies": { + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + } + } + } + } + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "requires": { + "get-stdin": "4.0.1" + } + } + } + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + } + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + } + } + }, + "stream-counter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stream-counter/-/stream-counter-1.0.0.tgz", + "integrity": "sha1-kc8lac5NxQYf6816yyY5SloRR1E=", + "dev": true + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + } + } + }, + "gulp-sourcemaps": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz", + "integrity": "sha1-uG/zSdgBzrVuHZ59x7vLS33uYAw=", + "requires": { + "convert-source-map": "1.5.0", + "graceful-fs": "4.1.11", + "strip-bom": "2.0.0", + "through2": "2.0.3", + "vinyl": "1.2.0" + }, + "dependencies": { + "convert-source-map": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz", + "integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=" + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "0.2.1" + }, + "dependencies": { + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + } + } + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=" + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + } + } + }, + "vinyl": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", + "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "requires": { + "clone": "1.0.2", + "clone-stats": "0.0.1", + "replace-ext": "0.0.1" + }, + "dependencies": { + "clone": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=" + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" + } + } + } + } + }, + "gulp-uglify": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-1.4.2.tgz", + "integrity": "sha1-KAfqEBbkliw3dmwC/utVAYGIV8M=", + "dev": true, + "requires": { + "deap": "1.0.0", + "fancy-log": "1.3.0", + "gulp-util": "3.0.8", + "isobject": "2.1.0", + "through2": "2.0.3", + "uglify-js": "2.5.0", + "uglify-save-license": "0.4.1", + "vinyl-sourcemaps-apply": "0.2.1" + }, + "dependencies": { + "deap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/deap/-/deap-1.0.0.tgz", + "integrity": "sha1-sUi/gkMKJ2mbdIOgPra2dYW/yIg=", + "dev": true + }, + "fancy-log": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.0.tgz", + "integrity": "sha1-Rb4X0Cu5kX1gzP/UmVyZnmyMmUg=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "time-stamp": "1.1.0" + }, + "dependencies": { + "time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", + "dev": true + } + } + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "uglify-js": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.5.0.tgz", + "integrity": "sha1-SrXWWkcw7Lek+2LT9JniBU2Y+6E=", + "dev": true, + "requires": { + "async": "0.2.10", + "source-map": "0.5.6", + "uglify-to-browserify": "1.0.2", + "yargs": "3.5.4" + }, + "dependencies": { + "async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=", + "dev": true + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "dev": true + }, + "yargs": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.5.4.tgz", + "integrity": "sha1-2K/49mXpTDS9JZvevRv68N3TU2E=", + "dev": true, + "requires": { + "camelcase": "1.2.1", + "decamelize": "1.2.0", + "window-size": "0.1.0", + "wordwrap": "0.0.2" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", + "dev": true + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "window-size": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", + "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", + "dev": true + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "dev": true + } + } + } + } + }, + "vinyl-sourcemaps-apply": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", + "integrity": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=", + "dev": true, + "requires": { + "source-map": "0.5.6" + }, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + } + } + } + } + }, + "gulp-useref": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gulp-useref/-/gulp-useref-1.3.0.tgz", + "integrity": "sha1-s/RpLxVrVCEApFfhrBzsT2znYP4=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8", + "event-stream": "3.3.4", + "gulp-concat": "2.6.1", + "gulp-if": "1.2.5", + "gulp-util": "3.0.8", + "is-relative-url": "1.0.0", + "lodash": "3.10.1", + "multimatch": "2.1.0", + "node-useref": "0.3.15", + "through2": "0.6.5", + "vinyl-fs": "1.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + }, + "event-stream": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", + "dev": true, + "requires": { + "duplexer": "0.1.1", + "from": "0.1.7", + "map-stream": "0.1.0", + "pause-stream": "0.0.11", + "split": "0.3.3", + "stream-combiner": "0.0.4", + "through": "2.3.8" + }, + "dependencies": { + "duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", + "dev": true + }, + "from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", + "dev": true + }, + "map-stream": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", + "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=", + "dev": true + }, + "pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "split": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", + "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "stream-combiner": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", + "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", + "dev": true, + "requires": { + "duplexer": "0.1.1" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + } + } + }, + "gulp-concat": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", + "integrity": "sha1-Yz0WyV2IUEYorQJmVmPO5aR5M1M=", + "dev": true, + "requires": { + "concat-with-sourcemaps": "1.0.4", + "through2": "2.0.3", + "vinyl": "2.1.0" + }, + "dependencies": { + "concat-with-sourcemaps": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.0.4.tgz", + "integrity": "sha1-9Vs74q60dgGxCi1SWcz7cP0vHdY=", + "dev": true, + "requires": { + "source-map": "0.5.6" + }, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + } + } + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "vinyl": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", + "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", + "dev": true, + "requires": { + "clone": "2.1.1", + "clone-buffer": "1.0.0", + "clone-stats": "1.0.0", + "cloneable-readable": "1.0.0", + "remove-trailing-separator": "1.1.0", + "replace-ext": "1.0.0" + }, + "dependencies": { + "clone": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz", + "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=", + "dev": true + }, + "clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", + "dev": true + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", + "dev": true + }, + "cloneable-readable": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.0.0.tgz", + "integrity": "sha1-pikNQT8hemEjL5XkWP84QYz7ARc=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "process-nextick-args": "1.0.7", + "through2": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + } + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", + "dev": true + } + } + } + } + }, + "gulp-if": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/gulp-if/-/gulp-if-1.2.5.tgz", + "integrity": "sha1-m9nBYDLswo4BVL+wWCjSMxZvLak=", + "dev": true, + "requires": { + "gulp-match": "0.2.1", + "ternary-stream": "1.2.3", + "through2": "0.6.5" + }, + "dependencies": { + "gulp-match": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-0.2.1.tgz", + "integrity": "sha1-C+0I2ovW6JaG+J/7AEM3+LrQbSI=", + "dev": true, + "requires": { + "minimatch": "1.0.0" + }, + "dependencies": { + "minimatch": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz", + "integrity": "sha1-4N0hILSeG3JM6NcUxSCCKpQ4V20=", + "dev": true, + "requires": { + "lru-cache": "2.7.3", + "sigmund": "1.0.1" + }, + "dependencies": { + "lru-cache": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", + "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", + "dev": true + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", + "dev": true + } + } + } + } + }, + "ternary-stream": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/ternary-stream/-/ternary-stream-1.2.3.tgz", + "integrity": "sha1-8Zafg4R/lkImG8FC4X7iAKrag/0=", + "dev": true, + "requires": { + "duplexer2": "0.0.2", + "fork-stream": "0.0.4", + "merge-stream": "0.1.8", + "through2": "0.6.5" + }, + "dependencies": { + "duplexer2": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", + "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", + "dev": true, + "requires": { + "readable-stream": "1.1.14" + }, + "dependencies": { + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + } + } + }, + "fork-stream": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz", + "integrity": "sha1-24Sfznf2cIpfjzhq5TOgkHtUrnA=", + "dev": true + }, + "merge-stream": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-0.1.8.tgz", + "integrity": "sha1-SKB7O0oSHXSj7b/c20sIrb8CQLE=", + "dev": true, + "requires": { + "through2": "0.6.5" + } + } + } + } + } + }, + "is-relative-url": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative-url/-/is-relative-url-1.0.0.tgz", + "integrity": "sha1-h6nTXop4m0ngebTX1p1kYS6ODh8=", + "dev": true, + "requires": { + "is-absolute-url": "1.0.0" + }, + "dependencies": { + "is-absolute-url": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-1.0.0.tgz", + "integrity": "sha1-LX7w/QuyqI2sfpIlPGgIoKziS/s=", + "dev": true + } + } + }, + "multimatch": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz", + "integrity": "sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis=", + "dev": true, + "requires": { + "array-differ": "1.0.0", + "array-union": "1.0.2", + "arrify": "1.0.1", + "minimatch": "3.0.4" + }, + "dependencies": { + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "1.0.3" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + } + } + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + } + } + } + }, + "node-useref": { + "version": "0.3.15", + "resolved": "https://registry.npmjs.org/node-useref/-/node-useref-0.3.15.tgz", + "integrity": "sha1-qMXcE3RY8Vd17nE3sqbth8fwgeU=", + "dev": true + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "dev": true, + "requires": { + "readable-stream": "1.0.34", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "vinyl-fs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-1.0.0.tgz", + "integrity": "sha1-0VdS5owtrXQ2Tn6FNHNzU1RpLt8=", + "dev": true, + "requires": { + "duplexify": "3.5.1", + "glob-stream": "4.1.1", + "glob-watcher": "0.0.8", + "graceful-fs": "3.0.11", + "merge-stream": "0.1.8", + "mkdirp": "0.5.1", + "object-assign": "2.1.1", + "strip-bom": "1.0.0", + "through2": "0.6.5", + "vinyl": "0.4.6" + }, + "dependencies": { + "duplexify": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.1.tgz", + "integrity": "sha1-ThUWvmiDi8kKSZlPCzmm5ZYL780=", + "dev": true, + "requires": { + "end-of-stream": "1.4.0", + "inherits": "2.0.3", + "readable-stream": "2.3.3", + "stream-shift": "1.0.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.0.tgz", + "integrity": "sha1-epDYM+/abPpurA9JSduw+tOmMgY=", + "dev": true, + "requires": { + "once": "1.4.0" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "stream-shift": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", + "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", + "dev": true + } + } + }, + "glob-stream": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-4.1.1.tgz", + "integrity": "sha1-uELfENaIx+trz869hG84UilrMgA=", + "dev": true, + "requires": { + "glob": "4.5.3", + "glob2base": "0.0.12", + "minimatch": "2.0.10", + "ordered-read-streams": "0.1.0", + "through2": "0.6.5", + "unique-stream": "2.2.1" + }, + "dependencies": { + "glob": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=", + "dev": true, + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "2.0.10", + "once": "1.4.0" + }, + "dependencies": { + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + }, + "glob2base": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz", + "integrity": "sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=", + "dev": true, + "requires": { + "find-index": "0.1.1" + }, + "dependencies": { + "find-index": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz", + "integrity": "sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ=", + "dev": true + } + } + }, + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + } + }, + "ordered-read-streams": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz", + "integrity": "sha1-/VZamvjrRHO6abbtijQ1LLVS8SY=", + "dev": true + }, + "unique-stream": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz", + "integrity": "sha1-WqADz76Uxf+GbE59ZouxxNuts2k=", + "dev": true, + "requires": { + "json-stable-stringify": "1.0.1", + "through2-filter": "2.0.0" + }, + "dependencies": { + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true, + "requires": { + "jsonify": "0.0.0" + }, + "dependencies": { + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true + } + } + }, + "through2-filter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz", + "integrity": "sha1-YLxVoNrLdghdsfna6Zq0P4PWIuw=", + "dev": true, + "requires": { + "through2": "2.0.3", + "xtend": "4.0.1" + }, + "dependencies": { + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + } + } + } + } + }, + "glob-watcher": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.8.tgz", + "integrity": "sha1-aK62Yefizo02NDgbLsQV8AxrwqQ=", + "dev": true, + "requires": { + "gaze": "0.5.2" + }, + "dependencies": { + "gaze": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz", + "integrity": "sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8=", + "dev": true, + "requires": { + "globule": "0.1.0" + }, + "dependencies": { + "globule": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", + "integrity": "sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU=", + "dev": true, + "requires": { + "glob": "3.1.21", + "lodash": "1.0.2", + "minimatch": "0.2.14" + }, + "dependencies": { + "glob": { + "version": "3.1.21", + "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", + "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=", + "dev": true, + "requires": { + "graceful-fs": "1.2.3", + "inherits": "1.0.2", + "minimatch": "0.2.14" + }, + "dependencies": { + "graceful-fs": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz", + "integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=", + "dev": true + }, + "inherits": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz", + "integrity": "sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js=", + "dev": true + } + } + }, + "lodash": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz", + "integrity": "sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE=", + "dev": true + }, + "minimatch": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", + "dev": true, + "requires": { + "lru-cache": "2.7.3", + "sigmund": "1.0.1" + }, + "dependencies": { + "lru-cache": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", + "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", + "dev": true + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", + "dev": true + } + } + } + } + } + } + } + } + }, + "graceful-fs": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", + "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", + "dev": true, + "requires": { + "natives": "1.1.0" + }, + "dependencies": { + "natives": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.0.tgz", + "integrity": "sha1-6f+EFBimsux6SV6TmYT3jxY+bjE=", + "dev": true + } + } + }, + "merge-stream": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-0.1.8.tgz", + "integrity": "sha1-SKB7O0oSHXSj7b/c20sIrb8CQLE=", + "dev": true, + "requires": { + "through2": "0.6.5" + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "object-assign": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz", + "integrity": "sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo=", + "dev": true + }, + "strip-bom": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz", + "integrity": "sha1-hbiGLzhEtabV7IRnqTWYFzo295Q=", + "dev": true, + "requires": { + "first-chunk-stream": "1.0.0", + "is-utf8": "0.2.1" + }, + "dependencies": { + "first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=", + "dev": true + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + } + } + }, + "vinyl": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", + "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", + "dev": true, + "requires": { + "clone": "0.2.0", + "clone-stats": "0.0.1" + }, + "dependencies": { + "clone": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", + "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=", + "dev": true + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true + } + } + } + } + } + } + }, + "gulp-util": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", + "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=", + "requires": { + "array-differ": "1.0.0", + "array-uniq": "1.0.3", + "beeper": "1.1.1", + "chalk": "1.1.3", + "dateformat": "2.0.0", + "fancy-log": "1.3.0", + "gulplog": "1.0.0", + "has-gulplog": "0.1.0", + "lodash._reescape": "3.0.0", + "lodash._reevaluate": "3.0.0", + "lodash._reinterpolate": "3.0.0", + "lodash.template": "3.6.2", + "minimist": "1.2.0", + "multipipe": "0.1.2", + "object-assign": "3.0.0", + "replace-ext": "0.0.1", + "through2": "2.0.3", + "vinyl": "0.5.3" + }, + "dependencies": { + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=" + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + }, + "beeper": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", + "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=" + }, + "dateformat": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.0.0.tgz", + "integrity": "sha1-J0Pjq7XD/CRi5SfcpEXgTp9N7hc=" + }, + "fancy-log": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.0.tgz", + "integrity": "sha1-Rb4X0Cu5kX1gzP/UmVyZnmyMmUg=", + "requires": { + "chalk": "1.1.3", + "time-stamp": "1.1.0" + }, + "dependencies": { + "time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" + } + } + }, + "gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", + "requires": { + "glogg": "1.0.0" + }, + "dependencies": { + "glogg": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz", + "integrity": "sha1-f+DxmfV6yQbPUS/urY+Q7kooT8U=", + "requires": { + "sparkles": "1.0.0" + }, + "dependencies": { + "sparkles": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz", + "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=" + } + } + } + } + }, + "has-gulplog": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", + "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=", + "requires": { + "sparkles": "1.0.0" + }, + "dependencies": { + "sparkles": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz", + "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=" + } + } + }, + "lodash._reescape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", + "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=" + }, + "lodash._reevaluate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", + "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=" + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + }, + "lodash.template": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", + "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=", + "requires": { + "lodash._basecopy": "3.0.1", + "lodash._basetostring": "3.0.1", + "lodash._basevalues": "3.0.0", + "lodash._isiterateecall": "3.0.9", + "lodash._reinterpolate": "3.0.0", + "lodash.escape": "3.2.0", + "lodash.keys": "3.1.2", + "lodash.restparam": "3.6.1", + "lodash.templatesettings": "3.1.1" + }, + "dependencies": { + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=" + }, + "lodash._basetostring": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", + "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=" + }, + "lodash._basevalues": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", + "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=" + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", + "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=" + }, + "lodash.escape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", + "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=", + "requires": { + "lodash._root": "3.0.1" + }, + "dependencies": { + "lodash._root": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", + "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=" + } + } + }, + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "requires": { + "lodash._getnative": "3.9.1", + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4" + }, + "dependencies": { + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" + }, + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" + } + } + }, + "lodash.restparam": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", + "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=" + }, + "lodash.templatesettings": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", + "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=", + "requires": { + "lodash._reinterpolate": "3.0.0", + "lodash.escape": "3.2.0" + } + } + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + }, + "multipipe": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", + "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=", + "requires": { + "duplexer2": "0.0.2" + }, + "dependencies": { + "duplexer2": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", + "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", + "requires": { + "readable-stream": "1.1.14" + }, + "dependencies": { + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + } + } + } + } + }, + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=" + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=" + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + } + } + }, + "vinyl": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", + "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=", + "requires": { + "clone": "1.0.2", + "clone-stats": "0.0.1", + "replace-ext": "0.0.1" + }, + "dependencies": { + "clone": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=" + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + } + } + } + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "has-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" + }, + "http-proxy-middleware": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.9.1.tgz", + "integrity": "sha1-8GjY9Lb6+Wz1dxLxal5utQcxVJo=", + "dev": true, + "requires": { + "http-proxy": "1.16.2", + "is-glob": "2.0.1", + "lodash": "3.10.1", + "micromatch": "2.3.11" + }, + "dependencies": { + "http-proxy": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz", + "integrity": "sha1-Bt/ykpUr9k2+hHH6nfcwZtTzd0I=", + "dev": true, + "requires": { + "eventemitter3": "1.2.0", + "requires-port": "1.0.0" + }, + "dependencies": { + "eventemitter3": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz", + "integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg=", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + } + } + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + } + } + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "dev": true, + "requires": { + "arr-diff": "2.0.0", + "array-unique": "0.2.1", + "braces": "1.8.5", + "expand-brackets": "0.1.5", + "extglob": "0.3.2", + "filename-regex": "2.0.1", + "is-extglob": "1.0.0", + "is-glob": "2.0.1", + "kind-of": "3.2.2", + "normalize-path": "2.1.1", + "object.omit": "2.0.1", + "parse-glob": "3.0.4", + "regex-cache": "0.4.3" + }, + "dependencies": { + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "dev": true, + "requires": { + "arr-flatten": "1.1.0" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=", + "dev": true + } + } + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "dev": true, + "requires": { + "expand-range": "1.8.2", + "preserve": "0.2.0", + "repeat-element": "1.1.2" + }, + "dependencies": { + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "dev": true, + "requires": { + "fill-range": "2.2.3" + }, + "dependencies": { + "fill-range": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", + "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", + "dev": true, + "requires": { + "is-number": "2.1.0", + "isobject": "2.1.0", + "randomatic": "1.1.7", + "repeat-element": "1.1.2", + "repeat-string": "1.6.1" + }, + "dependencies": { + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + } + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "randomatic": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", + "integrity": "sha1-x6vpzIuHwLqodrGf3oP9RkeX44w=", + "dev": true, + "requires": { + "is-number": "3.0.0", + "kind-of": "4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + } + } + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + } + } + } + } + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", + "dev": true + }, + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "dev": true + } + } + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "dev": true, + "requires": { + "is-posix-bracket": "0.1.1" + }, + "dependencies": { + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", + "dev": true + } + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + } + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", + "dev": true + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "1.1.0" + }, + "dependencies": { + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + } + } + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "dev": true, + "requires": { + "for-own": "0.1.5", + "is-extendable": "0.1.1" + }, + "dependencies": { + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "dev": true, + "requires": { + "for-in": "1.0.2" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + } + } + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "dev": true, + "requires": { + "glob-base": "0.3.0", + "is-dotfile": "1.0.3", + "is-extglob": "1.0.0", + "is-glob": "2.0.1" + }, + "dependencies": { + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "dev": true, + "requires": { + "glob-parent": "2.0.0", + "is-glob": "2.0.1" + }, + "dependencies": { + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true, + "requires": { + "is-glob": "2.0.1" + } + } + } + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", + "dev": true + } + } + }, + "regex-cache": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz", + "integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=", + "dev": true, + "requires": { + "is-equal-shallow": "0.1.3", + "is-primitive": "2.0.0" + }, + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "dev": true, + "requires": { + "is-primitive": "2.0.0" + } + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", + "dev": true + } + } + } + } + } + } + }, + "iconv-lite": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", + "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "requires": { + "safer-buffer": "2.1.2" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "inquirer": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-5.2.0.tgz", + "integrity": "sha512-E9BmnJbAKLPGonz0HeWHtbKf+EeSP93paWO3ZYoUpq/aowXvYGjjCSuashhXPpzbArIjBbji39THkxTz9ZeEUQ==", + "requires": { + "ansi-escapes": "3.1.0", + "chalk": "2.4.1", + "cli-cursor": "2.1.0", + "cli-width": "2.2.0", + "external-editor": "2.2.0", + "figures": "2.0.0", + "lodash": "4.17.10", + "mute-stream": "0.0.7", + "run-async": "2.3.0", + "rxjs": "5.5.11", + "string-width": "2.1.1", + "strip-ansi": "4.0.0", + "through": "2.3.8" + }, + "dependencies": { + "chalk": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "requires": { + "ansi-styles": "3.2.1", + "escape-string-regexp": "1.0.5", + "supports-color": "5.4.0" + } + }, + "lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" + } + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-callable": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", + "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==" + }, + "is-date-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=" + }, + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "requires": { + "is-primitive": "2.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "requires": { + "is-extglob": "2.1.1" + } + }, + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=" + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=" + }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" + }, + "is-regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "requires": { + "has": "1.0.3" + } + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + }, + "is-symbol": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", + "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=" + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "is-valid-glob": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz", + "integrity": "sha1-1LVcafUYhvm2XHDWwmItN+KfSP4=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "requires": { + "isarray": "1.0.0" + } + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" + }, + "js-yaml": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", + "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==", + "requires": { + "argparse": "1.0.10", + "esprima": "4.0.1" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "requires": { + "jsonify": "0.0.0" + } + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" + }, + "karma": { + "version": "0.13.22", + "resolved": "https://registry.npmjs.org/karma/-/karma-0.13.22.tgz", + "integrity": "sha1-B3ULG9Bj1+fnuRvNLmNU2PKqh0Q=", + "dev": true, + "requires": { + "batch": "0.5.3", + "bluebird": "2.11.0", + "body-parser": "1.17.2", + "chokidar": "1.7.0", + "colors": "1.1.2", + "connect": "3.6.3", + "core-js": "2.5.0", + "di": "0.0.1", + "dom-serialize": "2.2.1", + "expand-braces": "0.1.2", + "glob": "7.1.2", + "graceful-fs": "4.1.11", + "http-proxy": "1.16.2", + "isbinaryfile": "3.0.2", + "lodash": "3.10.1", + "log4js": "0.6.38", + "mime": "1.3.6", + "minimatch": "3.0.4", + "optimist": "0.6.1", + "rimraf": "2.6.1", + "socket.io": "1.7.4", + "source-map": "0.5.6", + "useragent": "2.2.1" + }, + "dependencies": { + "batch": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz", + "integrity": "sha1-PzQU84AyF0O/wQQvmoP/HVgk1GQ=", + "dev": true + }, + "bluebird": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz", + "integrity": "sha1-U0uQM8AiyVecVro7Plpcqvu2UOE=", + "dev": true + }, + "body-parser": { + "version": "1.17.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.17.2.tgz", + "integrity": "sha1-+IkqvI+eYn1Crtr7yma/WrmRBO4=", + "dev": true, + "requires": { + "bytes": "2.4.0", + "content-type": "1.0.2", + "debug": "2.6.7", + "depd": "1.1.1", + "http-errors": "1.6.2", + "iconv-lite": "0.4.15", + "on-finished": "2.3.0", + "qs": "6.4.0", + "raw-body": "2.2.0", + "type-is": "1.6.15" + }, + "dependencies": { + "bytes": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz", + "integrity": "sha1-fZcZb51br39pNeJZhVSe3SpsIzk=", + "dev": true + }, + "content-type": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz", + "integrity": "sha1-t9ETrueo3Se9IRM8TcJSnfFyHu0=", + "dev": true + }, + "debug": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz", + "integrity": "sha1-krrR9tBbu2u6Isyoi80OyJTChh4=", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "depd": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", + "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=", + "dev": true + }, + "http-errors": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", + "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", + "dev": true, + "requires": { + "depd": "1.1.1", + "inherits": "2.0.3", + "setprototypeof": "1.0.3", + "statuses": "1.3.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "setprototypeof": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", + "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=", + "dev": true + }, + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=", + "dev": true + } + } + }, + "iconv-lite": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz", + "integrity": "sha1-/iZaIYrGpXz+hUkn6dBMGYJe3es=", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + } + } + }, + "qs": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", + "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=", + "dev": true + }, + "raw-body": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.2.0.tgz", + "integrity": "sha1-mUl2z2pQlqQRYoQEkvC9xdbn+5Y=", + "dev": true, + "requires": { + "bytes": "2.4.0", + "iconv-lite": "0.4.15", + "unpipe": "1.0.0" + }, + "dependencies": { + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + } + } + }, + "type-is": { + "version": "1.6.15", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", + "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "2.1.16" + }, + "dependencies": { + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true + }, + "mime-types": { + "version": "2.1.16", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.16.tgz", + "integrity": "sha1-K4WKUuXs1RbbiXrCvodIeDBpjiM=", + "dev": true, + "requires": { + "mime-db": "1.29.0" + }, + "dependencies": { + "mime-db": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.29.0.tgz", + "integrity": "sha1-SNJtI1WJZRcErFkWygYAGRQmaHg=", + "dev": true + } + } + } + } + } + } + }, + "chokidar": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", + "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", + "dev": true, + "requires": { + "anymatch": "1.3.2", + "async-each": "1.0.1", + "fsevents": "1.2.4", + "glob-parent": "2.0.0", + "inherits": "2.0.3", + "is-binary-path": "1.0.1", + "is-glob": "2.0.1", + "path-is-absolute": "1.0.1", + "readdirp": "2.1.0" + }, + "dependencies": { + "anymatch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", + "integrity": "sha1-VT3Lj5HjyImEXf26NMd3IbkLnXo=", + "dev": true, + "requires": { + "micromatch": "2.3.11", + "normalize-path": "2.1.1" + }, + "dependencies": { + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "dev": true, + "requires": { + "arr-diff": "2.0.0", + "array-unique": "0.2.1", + "braces": "1.8.5", + "expand-brackets": "0.1.5", + "extglob": "0.3.2", + "filename-regex": "2.0.1", + "is-extglob": "1.0.0", + "is-glob": "2.0.1", + "kind-of": "3.2.2", + "normalize-path": "2.1.1", + "object.omit": "2.0.1", + "parse-glob": "3.0.4", + "regex-cache": "0.4.3" + }, + "dependencies": { + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "dev": true, + "requires": { + "arr-flatten": "1.1.0" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=", + "dev": true + } + } + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "dev": true, + "requires": { + "expand-range": "1.8.2", + "preserve": "0.2.0", + "repeat-element": "1.1.2" + }, + "dependencies": { + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "dev": true, + "requires": { + "fill-range": "2.2.3" + }, + "dependencies": { + "fill-range": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", + "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", + "dev": true, + "requires": { + "is-number": "2.1.0", + "isobject": "2.1.0", + "randomatic": "1.1.7", + "repeat-element": "1.1.2", + "repeat-string": "1.6.1" + }, + "dependencies": { + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + } + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "randomatic": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", + "integrity": "sha1-x6vpzIuHwLqodrGf3oP9RkeX44w=", + "dev": true, + "requires": { + "is-number": "3.0.0", + "kind-of": "4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + } + } + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + } + } + } + } + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", + "dev": true + }, + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "dev": true + } + } + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "dev": true, + "requires": { + "is-posix-bracket": "0.1.1" + }, + "dependencies": { + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", + "dev": true + } + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + } + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", + "dev": true + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "dev": true, + "requires": { + "for-own": "0.1.5", + "is-extendable": "0.1.1" + }, + "dependencies": { + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "dev": true, + "requires": { + "for-in": "1.0.2" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + } + } + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "dev": true, + "requires": { + "glob-base": "0.3.0", + "is-dotfile": "1.0.3", + "is-extglob": "1.0.0", + "is-glob": "2.0.1" + }, + "dependencies": { + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "dev": true, + "requires": { + "glob-parent": "2.0.0", + "is-glob": "2.0.1" + } + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", + "dev": true + } + } + }, + "regex-cache": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz", + "integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=", + "dev": true, + "requires": { + "is-equal-shallow": "0.1.3", + "is-primitive": "2.0.0" + }, + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "dev": true, + "requires": { + "is-primitive": "2.0.0" + } + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", + "dev": true + } + } + } + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "1.1.0" + }, + "dependencies": { + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + } + } + } + } + }, + "async-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", + "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", + "dev": true + }, + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true, + "requires": { + "is-glob": "2.0.1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "1.10.0" + }, + "dependencies": { + "binary-extensions": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.10.0.tgz", + "integrity": "sha1-muuabF6IY4qtFx4Wf1kAq+JINdA=", + "dev": true + } + } + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "readdirp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", + "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "minimatch": "3.0.4", + "readable-stream": "2.3.3", + "set-immediate-shim": "1.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", + "dev": true + } + } + } + } + }, + "colors": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", + "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", + "dev": true + }, + "connect": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.3.tgz", + "integrity": "sha1-9zINRqJbS+e0g6IjZRfySx4n4wE=", + "dev": true, + "requires": { + "debug": "2.6.8", + "finalhandler": "1.0.4", + "parseurl": "1.3.1", + "utils-merge": "1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "finalhandler": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.4.tgz", + "integrity": "sha1-GFdPLnxLmLiuOyMMIfIB8xvbP7c=", + "dev": true, + "requires": { + "debug": "2.6.8", + "encodeurl": "1.0.1", + "escape-html": "1.0.3", + "on-finished": "2.3.0", + "parseurl": "1.3.1", + "statuses": "1.3.1", + "unpipe": "1.0.0" + }, + "dependencies": { + "encodeurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz", + "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + } + } + }, + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + } + } + }, + "parseurl": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz", + "integrity": "sha1-yKuMkiO6NIiKpkopeyiFO+wY2lY=", + "dev": true + }, + "utils-merge": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz", + "integrity": "sha1-ApT7kiu5N1FTVBxPcJYjHyh8ivg=", + "dev": true + } + } + }, + "core-js": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.0.tgz", + "integrity": "sha1-VpwFCRi+ZIazg3VSAorgRmtxcIY=", + "dev": true + }, + "di": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", + "integrity": "sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=", + "dev": true + }, + "dom-serialize": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", + "integrity": "sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs=", + "dev": true, + "requires": { + "custom-event": "1.0.1", + "ent": "2.2.0", + "extend": "3.0.1", + "void-elements": "2.0.1" + }, + "dependencies": { + "custom-event": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz", + "integrity": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=", + "dev": true + }, + "ent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", + "integrity": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=", + "dev": true + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "dev": true + }, + "void-elements": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", + "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=", + "dev": true + } + } + }, + "expand-braces": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz", + "integrity": "sha1-SIsdHSRRyz06axks/AMPRMWFX+o=", + "dev": true, + "requires": { + "array-slice": "0.2.3", + "array-unique": "0.2.1", + "braces": "0.1.5" + }, + "dependencies": { + "array-slice": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", + "integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=", + "dev": true + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true + }, + "braces": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz", + "integrity": "sha1-wIVxEIUpHYt1/ddOqw+FlygHEeY=", + "dev": true, + "requires": { + "expand-range": "0.1.1" + }, + "dependencies": { + "expand-range": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz", + "integrity": "sha1-TLjtoJk8pW+k9B/ELzy7TMrf8EQ=", + "dev": true, + "requires": { + "is-number": "0.1.1", + "repeat-string": "0.2.2" + }, + "dependencies": { + "is-number": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz", + "integrity": "sha1-aaevEWlj1HIG7JvZtIoUIW8eOAY=", + "dev": true + }, + "repeat-string": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz", + "integrity": "sha1-x6jTI2BoNiBZp+RlH8aITosftK4=", + "dev": true + } + } + } + } + } + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "http-proxy": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz", + "integrity": "sha1-Bt/ykpUr9k2+hHH6nfcwZtTzd0I=", + "dev": true, + "requires": { + "eventemitter3": "1.2.0", + "requires-port": "1.0.0" + }, + "dependencies": { + "eventemitter3": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz", + "integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg=", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + } + } + }, + "isbinaryfile": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.2.tgz", + "integrity": "sha1-Sj6XTsDLqQBNP8bN5yCeppNopiE=", + "dev": true + }, + "log4js": { + "version": "0.6.38", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-0.6.38.tgz", + "integrity": "sha1-LElBFmldb7JUgJQ9P8hy5mKlIv0=", + "dev": true, + "requires": { + "readable-stream": "1.0.34", + "semver": "4.3.6" + }, + "dependencies": { + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "semver": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", + "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=", + "dev": true + } + } + }, + "mime": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz", + "integrity": "sha1-WR2E02U6awtKO5343lqoEI5y5eA=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "requires": { + "minimist": "0.0.10", + "wordwrap": "0.0.3" + }, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + } + } + }, + "rimraf": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", + "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", + "dev": true, + "requires": { + "glob": "7.1.2" + } + }, + "socket.io": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-1.7.4.tgz", + "integrity": "sha1-L37O3DORvy1cc+KR/iM+bjTU3QA=", + "dev": true, + "requires": { + "debug": "2.3.3", + "engine.io": "1.8.4", + "has-binary": "0.1.7", + "object-assign": "4.1.0", + "socket.io-adapter": "0.5.0", + "socket.io-client": "1.7.4", + "socket.io-parser": "2.3.1" + }, + "dependencies": { + "debug": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz", + "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=", + "dev": true, + "requires": { + "ms": "0.7.2" + }, + "dependencies": { + "ms": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz", + "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=", + "dev": true + } + } + }, + "engine.io": { + "version": "1.8.4", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-1.8.4.tgz", + "integrity": "sha1-d7zhK4Dl1gQpM3/sOw2vaR68kAM=", + "dev": true, + "requires": { + "accepts": "1.3.3", + "base64id": "1.0.0", + "cookie": "0.3.1", + "debug": "2.3.3", + "engine.io-parser": "1.3.2", + "ws": "1.1.4" + }, + "dependencies": { + "accepts": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz", + "integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=", + "dev": true, + "requires": { + "mime-types": "2.1.16", + "negotiator": "0.6.1" + }, + "dependencies": { + "mime-types": { + "version": "2.1.16", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.16.tgz", + "integrity": "sha1-K4WKUuXs1RbbiXrCvodIeDBpjiM=", + "dev": true, + "requires": { + "mime-db": "1.29.0" + }, + "dependencies": { + "mime-db": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.29.0.tgz", + "integrity": "sha1-SNJtI1WJZRcErFkWygYAGRQmaHg=", + "dev": true + } + } + }, + "negotiator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", + "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", + "dev": true + } + } + }, + "base64id": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz", + "integrity": "sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=", + "dev": true + }, + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", + "dev": true + }, + "engine.io-parser": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz", + "integrity": "sha1-k3sHnwAH0Ik+xW1GyyILjLQ1Igo=", + "dev": true, + "requires": { + "after": "0.8.2", + "arraybuffer.slice": "0.0.6", + "base64-arraybuffer": "0.1.5", + "blob": "0.0.4", + "has-binary": "0.1.7", + "wtf-8": "1.0.0" + }, + "dependencies": { + "after": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", + "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=", + "dev": true + }, + "arraybuffer.slice": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz", + "integrity": "sha1-8zshWfBTKj8xB6JywMz70a0peco=", + "dev": true + }, + "base64-arraybuffer": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", + "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=", + "dev": true + }, + "blob": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz", + "integrity": "sha1-vPEwUspURj8w+fx+lbmkdjCpSSE=", + "dev": true + }, + "wtf-8": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wtf-8/-/wtf-8-1.0.0.tgz", + "integrity": "sha1-OS2LotDxw00e4tYw8V0O+2jhBIo=", + "dev": true + } + } + }, + "ws": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.4.tgz", + "integrity": "sha1-V/QNA2gy5fUFVmKjl8Tedu1mv2E=", + "dev": true, + "requires": { + "options": "0.0.6", + "ultron": "1.0.2" + }, + "dependencies": { + "options": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", + "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=", + "dev": true + }, + "ultron": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", + "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=", + "dev": true + } + } + } + } + }, + "has-binary": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz", + "integrity": "sha1-aOYesWIQyVRaClzOBqhzkS/h5ow=", + "dev": true, + "requires": { + "isarray": "0.0.1" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + } + } + }, + "object-assign": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz", + "integrity": "sha1-ejs9DpgGPUP0wD8uiubNUahog6A=", + "dev": true + }, + "socket.io-adapter": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz", + "integrity": "sha1-y21LuL7IHhB4uZZ3+c7QBGBmu4s=", + "dev": true, + "requires": { + "debug": "2.3.3", + "socket.io-parser": "2.3.1" + } + }, + "socket.io-client": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.7.4.tgz", + "integrity": "sha1-7J+CA1btme9tNX8HVtZIcXvdQoE=", + "dev": true, + "requires": { + "backo2": "1.0.2", + "component-bind": "1.0.0", + "component-emitter": "1.2.1", + "debug": "2.3.3", + "engine.io-client": "1.8.4", + "has-binary": "0.1.7", + "indexof": "0.0.1", + "object-component": "0.0.3", + "parseuri": "0.0.5", + "socket.io-parser": "2.3.1", + "to-array": "0.1.4" + }, + "dependencies": { + "backo2": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", + "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", + "dev": true + }, + "component-bind": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz", + "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=", + "dev": true + }, + "component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", + "dev": true + }, + "engine.io-client": { + "version": "1.8.4", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.8.4.tgz", + "integrity": "sha1-n+hd7iWFPKa6viW9KtaHEIY+kcI=", + "dev": true, + "requires": { + "component-emitter": "1.2.1", + "component-inherit": "0.0.3", + "debug": "2.3.3", + "engine.io-parser": "1.3.2", + "has-cors": "1.1.0", + "indexof": "0.0.1", + "parsejson": "0.0.3", + "parseqs": "0.0.5", + "parseuri": "0.0.5", + "ws": "1.1.2", + "xmlhttprequest-ssl": "1.5.3", + "yeast": "0.1.2" + }, + "dependencies": { + "component-inherit": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz", + "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=", + "dev": true + }, + "engine.io-parser": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz", + "integrity": "sha1-k3sHnwAH0Ik+xW1GyyILjLQ1Igo=", + "dev": true, + "requires": { + "after": "0.8.2", + "arraybuffer.slice": "0.0.6", + "base64-arraybuffer": "0.1.5", + "blob": "0.0.4", + "has-binary": "0.1.7", + "wtf-8": "1.0.0" + }, + "dependencies": { + "after": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", + "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=", + "dev": true + }, + "arraybuffer.slice": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz", + "integrity": "sha1-8zshWfBTKj8xB6JywMz70a0peco=", + "dev": true + }, + "base64-arraybuffer": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", + "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=", + "dev": true + }, + "blob": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz", + "integrity": "sha1-vPEwUspURj8w+fx+lbmkdjCpSSE=", + "dev": true + }, + "wtf-8": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wtf-8/-/wtf-8-1.0.0.tgz", + "integrity": "sha1-OS2LotDxw00e4tYw8V0O+2jhBIo=", + "dev": true + } + } + }, + "has-cors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", + "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=", + "dev": true + }, + "parsejson": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/parsejson/-/parsejson-0.0.3.tgz", + "integrity": "sha1-q343WfIJ7OmUN5c/fQ8fZK4OZKs=", + "dev": true, + "requires": { + "better-assert": "1.0.2" + }, + "dependencies": { + "better-assert": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", + "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=", + "dev": true, + "requires": { + "callsite": "1.0.0" + }, + "dependencies": { + "callsite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", + "dev": true + } + } + } + } + }, + "parseqs": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", + "integrity": "sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0=", + "dev": true, + "requires": { + "better-assert": "1.0.2" + }, + "dependencies": { + "better-assert": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", + "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=", + "dev": true, + "requires": { + "callsite": "1.0.0" + }, + "dependencies": { + "callsite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", + "dev": true + } + } + } + } + }, + "ws": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.2.tgz", + "integrity": "sha1-iiRPoFJAHgjJiGz0SoUYnh/UBn8=", + "dev": true, + "requires": { + "options": "0.0.6", + "ultron": "1.0.2" + }, + "dependencies": { + "options": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", + "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=", + "dev": true + }, + "ultron": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", + "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=", + "dev": true + } + } + }, + "xmlhttprequest-ssl": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz", + "integrity": "sha1-GFqIjATspGw+QHDZn3tJ3jUomS0=", + "dev": true + }, + "yeast": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", + "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=", + "dev": true + } + } + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + }, + "object-component": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz", + "integrity": "sha1-8MaapQ78lbhmwYb0AKM3acsvEpE=", + "dev": true + }, + "parseuri": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz", + "integrity": "sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo=", + "dev": true, + "requires": { + "better-assert": "1.0.2" + }, + "dependencies": { + "better-assert": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", + "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=", + "dev": true, + "requires": { + "callsite": "1.0.0" + }, + "dependencies": { + "callsite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", + "dev": true + } + } + } + } + }, + "to-array": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz", + "integrity": "sha1-F+bBH3PdTz10zaek/zI46a2b+JA=", + "dev": true + } + } + }, + "socket.io-parser": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.3.1.tgz", + "integrity": "sha1-3VMgJRA85Clpcya+/WQAX8/ltKA=", + "dev": true, + "requires": { + "component-emitter": "1.1.2", + "debug": "2.2.0", + "isarray": "0.0.1", + "json3": "3.3.2" + }, + "dependencies": { + "component-emitter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz", + "integrity": "sha1-KWWU8nU9qmOZbSrwjRWpURbJrsM=", + "dev": true + }, + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "dev": true, + "requires": { + "ms": "0.7.1" + }, + "dependencies": { + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=", + "dev": true + } + } + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "json3": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz", + "integrity": "sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE=", + "dev": true + } + } + } + } + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + }, + "useragent": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/useragent/-/useragent-2.2.1.tgz", + "integrity": "sha1-z1k+9PLRdYdei7ZY6pLhik/QbY4=", + "dev": true, + "requires": { + "lru-cache": "2.2.4", + "tmp": "0.0.33" + }, + "dependencies": { + "lru-cache": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz", + "integrity": "sha1-bGWGGb7PFAMdDQtZSxYELOTcBj0=", + "dev": true + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=", + "dev": true, + "requires": { + "os-tmpdir": "1.0.2" + }, + "dependencies": { + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + } + } + } + } + } + } + }, + "karma-chrome-launcher": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-0.2.3.tgz", + "integrity": "sha1-TG1wDRY6nTTGGO/YeRi+SeekqMk=", + "dev": true, + "requires": { + "fs-access": "1.0.1", + "which": "1.3.0" + }, + "dependencies": { + "fs-access": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/fs-access/-/fs-access-1.0.1.tgz", + "integrity": "sha1-1qh/JiJxzv6+wwxVNAf7mV2od3o=", + "dev": true, + "requires": { + "null-check": "1.0.0" + }, + "dependencies": { + "null-check": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/null-check/-/null-check-1.0.0.tgz", + "integrity": "sha1-l33/1xdgErnsMNKjnbXPcqBDnt0=", + "dev": true + } + } + }, + "which": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz", + "integrity": "sha1-/wS9/AEO5UfXgL7DjhrBwnd9JTo=", + "dev": true, + "requires": { + "isexe": "2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + } + } + } + } + }, + "karma-coverage": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/karma-coverage/-/karma-coverage-0.5.5.tgz", + "integrity": "sha1-sNWLECXVnVxmICYxhvHVj11TSMU=", + "dev": true, + "requires": { + "dateformat": "1.0.12", + "istanbul": "0.4.5", + "minimatch": "3.0.4", + "source-map": "0.5.6" + }, + "dependencies": { + "dateformat": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz", + "integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=", + "dev": true, + "requires": { + "get-stdin": "4.0.1", + "meow": "3.7.0" + }, + "dependencies": { + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "requires": { + "camelcase-keys": "2.1.0", + "decamelize": "1.2.0", + "loud-rejection": "1.6.0", + "map-obj": "1.0.1", + "minimist": "1.2.0", + "normalize-package-data": "2.4.0", + "object-assign": "4.1.1", + "read-pkg-up": "1.0.1", + "redent": "1.0.0", + "trim-newlines": "1.0.0" + }, + "dependencies": { + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "requires": { + "camelcase": "2.1.1", + "map-obj": "1.0.1" + }, + "dependencies": { + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true, + "requires": { + "currently-unhandled": "0.4.1", + "signal-exit": "3.0.2" + }, + "dependencies": { + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "requires": { + "array-find-index": "1.0.2" + }, + "dependencies": { + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + } + } + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + } + } + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha1-EvlaMH1YNSB1oEkHuErIvpisAS8=", + "dev": true, + "requires": { + "hosted-git-info": "2.5.0", + "is-builtin-module": "1.0.0", + "semver": "5.4.1", + "validate-npm-package-license": "3.0.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", + "integrity": "sha1-bWDjSzq7yDEwYsO3mO+NkBoHrzw=", + "dev": true + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "dev": true, + "requires": { + "builtin-modules": "1.1.1" + }, + "dependencies": { + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "dev": true + } + } + }, + "semver": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", + "integrity": "sha1-4FnAnYVx8FQII3M0M1BdOi8AsY4=", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", + "dev": true, + "requires": { + "spdx-correct": "1.0.2", + "spdx-expression-parse": "1.0.4" + }, + "dependencies": { + "spdx-correct": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "dev": true, + "requires": { + "spdx-license-ids": "1.2.2" + }, + "dependencies": { + "spdx-license-ids": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", + "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=", + "dev": true + } + } + }, + "spdx-expression-parse": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", + "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=", + "dev": true + } + } + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "1.1.2", + "read-pkg": "1.1.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "2.1.0", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "2.0.1" + } + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + } + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "1.1.0", + "normalize-package-data": "2.4.0", + "path-type": "1.1.0" + }, + "dependencies": { + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "parse-json": "2.2.0", + "pify": "2.3.0", + "pinkie-promise": "2.0.1", + "strip-bom": "2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "1.3.1" + }, + "dependencies": { + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "dev": true, + "requires": { + "is-arrayish": "0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + } + } + } + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "0.2.1" + }, + "dependencies": { + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + } + } + } + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + } + } + } + } + } + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "requires": { + "indent-string": "2.1.0", + "strip-indent": "1.0.1" + }, + "dependencies": { + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "requires": { + "repeating": "2.0.1" + }, + "dependencies": { + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "requires": { + "is-finite": "1.0.2" + }, + "dependencies": { + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + }, + "dependencies": { + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + } + } + } + } + } + } + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "requires": { + "get-stdin": "4.0.1" + } + } + } + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + } + } + } + } + }, + "istanbul": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz", + "integrity": "sha1-ZcfXPUxNqE1POsMQuRj7C4Azczs=", + "dev": true, + "requires": { + "abbrev": "1.0.9", + "async": "1.5.2", + "escodegen": "1.8.1", + "esprima": "2.7.3", + "glob": "5.0.15", + "handlebars": "4.0.10", + "js-yaml": "3.9.1", + "mkdirp": "0.5.1", + "nopt": "3.0.6", + "once": "1.4.0", + "resolve": "1.1.7", + "supports-color": "3.2.3", + "which": "1.3.0", + "wordwrap": "1.0.0" + }, + "dependencies": { + "abbrev": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz", + "integrity": "sha1-kbR5JYinc4wl813W9jdSovh3YTU=", + "dev": true + }, + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true + }, + "escodegen": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", + "integrity": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=", + "dev": true, + "requires": { + "esprima": "2.7.3", + "estraverse": "1.9.3", + "esutils": "2.0.2", + "optionator": "0.8.2", + "source-map": "0.2.0" + }, + "dependencies": { + "estraverse": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", + "integrity": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q=", + "dev": true + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true + }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "dev": true, + "requires": { + "deep-is": "0.1.3", + "fast-levenshtein": "2.0.6", + "levn": "0.3.0", + "prelude-ls": "1.1.2", + "type-check": "0.3.2", + "wordwrap": "1.0.0" + }, + "dependencies": { + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "1.1.2", + "type-check": "0.3.2" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "1.1.2" + } + } + } + }, + "source-map": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", + "integrity": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=", + "dev": true, + "optional": true, + "requires": { + "amdefine": "1.0.1" + }, + "dependencies": { + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true, + "optional": true + } + } + } + } + }, + "esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", + "dev": true + }, + "glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "dev": true, + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + } + } + }, + "handlebars": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.10.tgz", + "integrity": "sha1-PTDHGLCaPZbyPqTMH0A8TTup/08=", + "dev": true, + "requires": { + "async": "1.5.2", + "optimist": "0.6.1", + "source-map": "0.4.4", + "uglify-js": "2.8.29" + }, + "dependencies": { + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "requires": { + "minimist": "0.0.10", + "wordwrap": "0.0.3" + }, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + } + } + }, + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "dev": true, + "requires": { + "amdefine": "1.0.1" + }, + "dependencies": { + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + } + } + }, + "uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", + "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", + "dev": true, + "optional": true, + "requires": { + "source-map": "0.5.6", + "uglify-to-browserify": "1.0.2", + "yargs": "3.10.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true, + "optional": true + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "dev": true, + "optional": true + }, + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "dev": true, + "optional": true, + "requires": { + "camelcase": "1.2.1", + "cliui": "2.1.0", + "decamelize": "1.2.0", + "window-size": "0.1.0" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", + "dev": true, + "optional": true + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "dev": true, + "optional": true, + "requires": { + "center-align": "0.1.3", + "right-align": "0.1.3", + "wordwrap": "0.0.2" + }, + "dependencies": { + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "dev": true, + "optional": true, + "requires": { + "align-text": "0.1.4", + "lazy-cache": "1.0.4" + }, + "dependencies": { + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dev": true, + "optional": true, + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "optional": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true, + "optional": true + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true, + "optional": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true, + "optional": true + } + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", + "dev": true, + "optional": true + } + } + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "dev": true, + "optional": true, + "requires": { + "align-text": "0.1.4" + }, + "dependencies": { + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dev": true, + "optional": true, + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "optional": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true, + "optional": true + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true, + "optional": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true, + "optional": true + } + } + } + } + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "dev": true, + "optional": true + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true, + "optional": true + }, + "window-size": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", + "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", + "dev": true, + "optional": true + } + } + } + } + } + } + }, + "js-yaml": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.1.tgz", + "integrity": "sha1-CHdc69/dNZIJ8NKs04PI+GppBKA=", + "dev": true, + "requires": { + "argparse": "1.0.9", + "esprima": "4.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", + "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=", + "dev": true, + "requires": { + "sprintf-js": "1.0.3" + }, + "dependencies": { + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz", + "integrity": "sha1-RJnt3NERDgshi6zy+n9/WfVcqAQ=", + "dev": true + } + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "nopt": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", + "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", + "dev": true, + "requires": { + "abbrev": "1.0.9" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", + "dev": true + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "1.0.0" + }, + "dependencies": { + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + } + } + }, + "which": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz", + "integrity": "sha1-/wS9/AEO5UfXgL7DjhrBwnd9JTo=", + "dev": true, + "requires": { + "isexe": "2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + } + } + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true + } + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + } + } + }, + "karma-jasmine": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-0.3.8.tgz", + "integrity": "sha1-W2RXeRrZuJqhc/B54+vhuMgFI2w=", + "dev": true + }, + "karma-ng-html2js-preprocessor": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/karma-ng-html2js-preprocessor/-/karma-ng-html2js-preprocessor-0.2.2.tgz", + "integrity": "sha1-vpHc6dnBhQgtDdfLKHCEYWtfLJg=", + "dev": true + }, + "kind-of": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", + "integrity": "sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=", + "dev": true + }, + "lazystream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", + "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", + "requires": { + "readable-stream": "2.3.6" + } + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "requires": { + "prelude-ls": "1.1.2", + "type-check": "0.3.2" + } + }, + "lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + }, + "main-bower-files": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/main-bower-files/-/main-bower-files-2.9.0.tgz", + "integrity": "sha1-aG2tmSG1yqEXCPVR4hC41OrMPrY=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "extend": "2.0.1", + "globby": "2.1.0", + "multimatch": "2.1.0", + "path-exists": "1.0.0", + "strip-json-comments": "1.0.4", + "vinyl-fs": "1.0.0" + }, + "dependencies": { + "extend": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-2.0.1.tgz", + "integrity": "sha1-HugBBonnOV/5RIJByYZSvHWagmA=", + "dev": true + }, + "globby": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-2.1.0.tgz", + "integrity": "sha1-npGSvNM/Srak+JTl5+qLcTITxII=", + "dev": true, + "requires": { + "array-union": "1.0.2", + "async": "1.5.2", + "glob": "5.0.15", + "object-assign": "3.0.0" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "1.0.3" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + } + } + }, + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true + }, + "glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "dev": true, + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + } + } + }, + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", + "dev": true + } + } + }, + "multimatch": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz", + "integrity": "sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis=", + "dev": true, + "requires": { + "array-differ": "1.0.0", + "array-union": "1.0.2", + "arrify": "1.0.1", + "minimatch": "3.0.4" + }, + "dependencies": { + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "1.0.3" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + } + } + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + } + } + }, + "path-exists": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-1.0.0.tgz", + "integrity": "sha1-1aiZjrce83p0w06w2eum6HjuoIE=", + "dev": true + }, + "strip-json-comments": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", + "integrity": "sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E=", + "dev": true + }, + "vinyl-fs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-1.0.0.tgz", + "integrity": "sha1-0VdS5owtrXQ2Tn6FNHNzU1RpLt8=", + "dev": true, + "requires": { + "duplexify": "3.5.1", + "glob-stream": "4.1.1", + "glob-watcher": "0.0.8", + "graceful-fs": "3.0.11", + "merge-stream": "0.1.8", + "mkdirp": "0.5.1", + "object-assign": "2.1.1", + "strip-bom": "1.0.0", + "through2": "0.6.5", + "vinyl": "0.4.6" + }, + "dependencies": { + "duplexify": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.1.tgz", + "integrity": "sha1-ThUWvmiDi8kKSZlPCzmm5ZYL780=", + "dev": true, + "requires": { + "end-of-stream": "1.4.0", + "inherits": "2.0.3", + "readable-stream": "2.3.3", + "stream-shift": "1.0.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.0.tgz", + "integrity": "sha1-epDYM+/abPpurA9JSduw+tOmMgY=", + "dev": true, + "requires": { + "once": "1.4.0" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "stream-shift": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", + "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", + "dev": true + } + } + }, + "glob-stream": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-4.1.1.tgz", + "integrity": "sha1-uELfENaIx+trz869hG84UilrMgA=", + "dev": true, + "requires": { + "glob": "4.5.3", + "glob2base": "0.0.12", + "minimatch": "2.0.10", + "ordered-read-streams": "0.1.0", + "through2": "0.6.5", + "unique-stream": "2.2.1" + }, + "dependencies": { + "glob": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=", + "dev": true, + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "2.0.10", + "once": "1.4.0" + }, + "dependencies": { + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + }, + "glob2base": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz", + "integrity": "sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=", + "dev": true, + "requires": { + "find-index": "0.1.1" + }, + "dependencies": { + "find-index": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz", + "integrity": "sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ=", + "dev": true + } + } + }, + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "ordered-read-streams": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz", + "integrity": "sha1-/VZamvjrRHO6abbtijQ1LLVS8SY=", + "dev": true + }, + "unique-stream": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz", + "integrity": "sha1-WqADz76Uxf+GbE59ZouxxNuts2k=", + "dev": true, + "requires": { + "json-stable-stringify": "1.0.1", + "through2-filter": "2.0.0" + }, + "dependencies": { + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true, + "requires": { + "jsonify": "0.0.0" + }, + "dependencies": { + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true + } + } + }, + "through2-filter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz", + "integrity": "sha1-YLxVoNrLdghdsfna6Zq0P4PWIuw=", + "dev": true, + "requires": { + "through2": "2.0.3", + "xtend": "4.0.1" + }, + "dependencies": { + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + } + } + } + } + }, + "glob-watcher": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.8.tgz", + "integrity": "sha1-aK62Yefizo02NDgbLsQV8AxrwqQ=", + "dev": true, + "requires": { + "gaze": "0.5.2" + }, + "dependencies": { + "gaze": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz", + "integrity": "sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8=", + "dev": true, + "requires": { + "globule": "0.1.0" + }, + "dependencies": { + "globule": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", + "integrity": "sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU=", + "dev": true, + "requires": { + "glob": "3.1.21", + "lodash": "1.0.2", + "minimatch": "0.2.14" + }, + "dependencies": { + "glob": { + "version": "3.1.21", + "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", + "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=", + "dev": true, + "requires": { + "graceful-fs": "1.2.3", + "inherits": "1.0.2", + "minimatch": "0.2.14" + }, + "dependencies": { + "graceful-fs": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz", + "integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=", + "dev": true + }, + "inherits": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz", + "integrity": "sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js=", + "dev": true + } + } + }, + "lodash": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz", + "integrity": "sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE=", + "dev": true + }, + "minimatch": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", + "dev": true, + "requires": { + "lru-cache": "2.7.3", + "sigmund": "1.0.1" + }, + "dependencies": { + "lru-cache": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", + "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", + "dev": true + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", + "dev": true + } + } + } + } + } + } + } + } + }, + "graceful-fs": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", + "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", + "dev": true, + "requires": { + "natives": "1.1.0" + }, + "dependencies": { + "natives": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.0.tgz", + "integrity": "sha1-6f+EFBimsux6SV6TmYT3jxY+bjE=", + "dev": true + } + } + }, + "merge-stream": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-0.1.8.tgz", + "integrity": "sha1-SKB7O0oSHXSj7b/c20sIrb8CQLE=", + "dev": true, + "requires": { + "through2": "0.6.5" + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "object-assign": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz", + "integrity": "sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo=", + "dev": true + }, + "strip-bom": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz", + "integrity": "sha1-hbiGLzhEtabV7IRnqTWYFzo295Q=", + "dev": true, + "requires": { + "first-chunk-stream": "1.0.0", + "is-utf8": "0.2.1" + }, + "dependencies": { + "first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=", + "dev": true + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + } + } + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "dev": true, + "requires": { + "readable-stream": "1.0.34", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "vinyl": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", + "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", + "dev": true, + "requires": { + "clone": "0.2.0", + "clone-stats": "0.0.1" + }, + "dependencies": { + "clone": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", + "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=", + "dev": true + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true + } + } + } + } + } + } + }, + "math-random": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz", + "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=" + }, + "merge-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", + "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", + "requires": { + "readable-stream": "2.3.6" + } + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "requires": { + "arr-diff": "2.0.0", + "array-unique": "0.2.1", + "braces": "1.8.5", + "expand-brackets": "0.1.5", + "extglob": "0.3.2", + "filename-regex": "2.0.1", + "is-extglob": "1.0.0", + "is-glob": "2.0.1", + "kind-of": "3.2.2", + "normalize-path": "2.1.1", + "object.omit": "2.0.1", + "parse-glob": "3.0.4", + "regex-cache": "0.4.4" + }, + "dependencies": { + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "requires": { + "arr-flatten": "1.1.0" + } + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "requires": { + "is-extglob": "1.0.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "1.1.11" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=" + }, + "nan": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", + "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", + "dev": true, + "optional": true + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + }, + "ng-annotate-loader": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/ng-annotate-loader/-/ng-annotate-loader-0.0.10.tgz", + "integrity": "sha1-Hjj1vq+3mRWvJkjpMwG+dpUu0PI=", + "dev": true, + "requires": { + "loader-utils": "0.2.17", + "ng-annotate": "1.2.2", + "source-map": "0.4.2" + }, + "dependencies": { + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", + "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", + "dev": true, + "requires": { + "big.js": "3.1.3", + "emojis-list": "2.1.0", + "json5": "0.5.1", + "object-assign": "4.1.1" + }, + "dependencies": { + "big.js": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz", + "integrity": "sha1-TK2iGTZS6zyp7I5VyQFWacmAaXg=", + "dev": true + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + } + } + }, + "ng-annotate": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ng-annotate/-/ng-annotate-1.2.2.tgz", + "integrity": "sha1-3D/FG6Cy+LOF2+BH9NoG9YCh/WE=", + "dev": true, + "requires": { + "acorn": "2.6.4", + "alter": "0.2.0", + "convert-source-map": "1.1.3", + "optimist": "0.6.1", + "ordered-ast-traverse": "1.1.1", + "simple-fmt": "0.1.0", + "simple-is": "0.2.0", + "source-map": "0.5.6", + "stable": "0.1.6", + "stringmap": "0.2.2", + "stringset": "0.2.1", + "tryor": "0.1.2" + }, + "dependencies": { + "acorn": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-2.6.4.tgz", + "integrity": "sha1-6x9FtKQ/ox0DcBpexG87Umc+kO4=", + "dev": true + }, + "alter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/alter/-/alter-0.2.0.tgz", + "integrity": "sha1-x1iICGF1cgNKrmJICvJrHU0cs80=", + "dev": true, + "requires": { + "stable": "0.1.6" + } + }, + "convert-source-map": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz", + "integrity": "sha1-SCnId+n+SbMWHzvzZziI4gRpmGA=", + "dev": true + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "requires": { + "minimist": "0.0.10", + "wordwrap": "0.0.3" + }, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + } + } + }, + "ordered-ast-traverse": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ordered-ast-traverse/-/ordered-ast-traverse-1.1.1.tgz", + "integrity": "sha1-aEOhcLwO7otSDMjdwd3TqjD6BXw=", + "dev": true, + "requires": { + "ordered-esprima-props": "1.1.0" + }, + "dependencies": { + "ordered-esprima-props": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ordered-esprima-props/-/ordered-esprima-props-1.1.0.tgz", + "integrity": "sha1-qYJwht9fAQqmDpvQK24DNc6i/8s=", + "dev": true + } + } + }, + "simple-fmt": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/simple-fmt/-/simple-fmt-0.1.0.tgz", + "integrity": "sha1-GRv1ZqWeZTBILLJatTtKjchcOms=", + "dev": true + }, + "simple-is": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/simple-is/-/simple-is-0.2.0.tgz", + "integrity": "sha1-Krt1qt453rXMgVzhDmGRFkhQuvA=", + "dev": true + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + }, + "stable": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.6.tgz", + "integrity": "sha1-kQ9dKu17Ugxud3SZwfMuE5/eyxA=", + "dev": true + }, + "stringmap": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/stringmap/-/stringmap-0.2.2.tgz", + "integrity": "sha1-VWwTeyWPlCuHdvWy71gqoGnX0bE=", + "dev": true + }, + "stringset": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/stringset/-/stringset-0.2.1.tgz", + "integrity": "sha1-7yWcTjSTRDd/zRyRPdLoSMnAQrU=", + "dev": true + }, + "tryor": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/tryor/-/tryor-0.1.2.tgz", + "integrity": "sha1-gUXkynyv9ArN48z5Rui4u3W0Fys=", + "dev": true + } + } + }, + "source-map": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.2.tgz", + "integrity": "sha1-3J8xFDlKt8H5eCly89EYIP/wbx8=", + "dev": true, + "requires": { + "amdefine": "1.0.1" + }, + "dependencies": { + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + } + } + } + } + }, + "nice-try": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz", + "integrity": "sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA==" + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "1.1.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-keys": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz", + "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==" + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "requires": { + "for-own": "0.1.5", + "is-extendable": "0.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1.0.2" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "requires": { + "mimic-fn": "1.2.0" + } + }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "requires": { + "deep-is": "0.1.3", + "fast-levenshtein": "2.0.6", + "levn": "0.3.0", + "prelude-ls": "1.1.2", + "type-check": "0.3.2", + "wordwrap": "1.0.0" + } + }, + "ordered-read-streams": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz", + "integrity": "sha1-cTfmmzKYuzQiR6G77jiByA4v14s=", + "requires": { + "is-stream": "1.1.0", + "readable-stream": "2.3.6" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "requires": { + "glob-base": "0.3.0", + "is-dotfile": "1.0.3", + "is-extglob": "1.0.0", + "is-glob": "2.0.1" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "requires": { + "is-extglob": "1.0.0" + } + } + } + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + }, + "phantomjs": { + "version": "1.9.20", + "resolved": "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.20.tgz", + "integrity": "sha1-RCSsog4U0lXAsIia9va4lz2hDg0=", + "dev": true, + "requires": { + "extract-zip": "1.5.0", + "fs-extra": "0.26.7", + "hasha": "2.2.0", + "kew": "0.7.0", + "progress": "1.1.8", + "request": "2.67.0", + "request-progress": "2.0.1", + "which": "1.2.14" + }, + "dependencies": { + "extract-zip": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz", + "integrity": "sha1-ksz22B73Cp+kwXRxFMzvbYaIpsQ=", + "dev": true, + "requires": { + "concat-stream": "1.5.0", + "debug": "0.7.4", + "mkdirp": "0.5.0", + "yauzl": "2.4.1" + }, + "dependencies": { + "concat-stream": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz", + "integrity": "sha1-U/fUPFHF5D+ByP3QMyHGMb5o1hE=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.0.6", + "typedarray": "0.0.6" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "string_decoder": "0.10.31", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + } + } + }, + "debug": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz", + "integrity": "sha1-BuHqgILCyxTjmAbiLi9vdX+Srzk=", + "dev": true + }, + "mkdirp": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz", + "integrity": "sha1-HXMHam35hs2TROFecfzAWkyavxI=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "yauzl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz", + "integrity": "sha1-lSj0QtqxsihOWLQ3m7GU4i4MQAU=", + "dev": true, + "requires": { + "fd-slicer": "1.0.1" + }, + "dependencies": { + "fd-slicer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz", + "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=", + "dev": true, + "requires": { + "pend": "1.2.0" + }, + "dependencies": { + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "dev": true + } + } + } + } + } + } + }, + "fs-extra": { + "version": "0.26.7", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz", + "integrity": "sha1-muH92UiXeY7at20JGM9C0MMYT6k=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "jsonfile": "2.4.0", + "klaw": "1.3.1", + "path-is-absolute": "1.0.1", + "rimraf": "2.6.1" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "jsonfile": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", + "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11" + } + }, + "klaw": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", + "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "rimraf": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", + "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", + "dev": true, + "requires": { + "glob": "7.1.2" + }, + "dependencies": { + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + } + } + } + } + }, + "hasha": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz", + "integrity": "sha1-eNfL/B5tZjA/55g3NlmEUXsvbuE=", + "dev": true, + "requires": { + "is-stream": "1.1.0", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + } + } + }, + "kew": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz", + "integrity": "sha1-edk9LTM2PW/dKXCzNdkUGtWR15s=", + "dev": true + }, + "progress": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", + "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=", + "dev": true + }, + "request": { + "version": "2.67.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.67.0.tgz", + "integrity": "sha1-ivdHgOK/EeoK6aqWXBHxGv0nJ0I=", + "dev": true, + "requires": { + "aws-sign2": "0.6.0", + "bl": "1.0.3", + "caseless": "0.11.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "1.0.1", + "har-validator": "2.0.6", + "hawk": "3.1.3", + "http-signature": "1.1.1", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.16", + "node-uuid": "1.4.8", + "oauth-sign": "0.8.2", + "qs": "5.2.1", + "stringstream": "0.0.5", + "tough-cookie": "2.2.2", + "tunnel-agent": "0.4.3" + }, + "dependencies": { + "aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", + "dev": true + }, + "bl": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz", + "integrity": "sha1-/FQhoo/UImA2w7OJGmaiW8ZNIm4=", + "dev": true, + "requires": { + "readable-stream": "2.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "string_decoder": "0.10.31", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + } + } + }, + "caseless": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", + "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", + "dev": true + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "dev": true, + "requires": { + "delayed-stream": "1.0.0" + }, + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + } + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz", + "integrity": "sha1-rjFduaSQf6BlUCMEpm13M0de43w=", + "dev": true, + "requires": { + "async": "2.5.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.16" + }, + "dependencies": { + "async": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/async/-/async-2.5.0.tgz", + "integrity": "sha1-hDGQ/WtzV6C54clW7d3V7IRitU0=", + "dev": true, + "requires": { + "lodash": "4.17.4" + }, + "dependencies": { + "lodash": { + "version": "4.17.4", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", + "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=", + "dev": true + } + } + } + } + }, + "har-validator": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", + "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "commander": "2.11.0", + "is-my-json-valid": "2.16.0", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "commander": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", + "integrity": "sha1-FXFS/R56bI2YpbcVzzdt+SgARWM=", + "dev": true + }, + "is-my-json-valid": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz", + "integrity": "sha1-8Hndm/2uZe4gOKrorLyGqxCeNpM=", + "dev": true, + "requires": { + "generate-function": "2.0.0", + "generate-object-property": "1.2.0", + "jsonpointer": "4.0.1", + "xtend": "4.0.1" + }, + "dependencies": { + "generate-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", + "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=", + "dev": true + }, + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "dev": true, + "requires": { + "is-property": "1.0.2" + }, + "dependencies": { + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", + "dev": true + } + } + }, + "jsonpointer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", + "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=", + "dev": true + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + } + } + } + } + }, + "hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", + "dev": true, + "requires": { + "boom": "2.10.1", + "cryptiles": "2.0.5", + "hoek": "2.16.3", + "sntp": "1.0.9" + }, + "dependencies": { + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "dev": true, + "requires": { + "hoek": "2.16.3" + } + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "dev": true, + "requires": { + "boom": "2.10.1" + } + }, + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=", + "dev": true + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "dev": true, + "requires": { + "hoek": "2.16.3" + } + } + } + }, + "http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "dev": true, + "requires": { + "assert-plus": "0.2.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + }, + "dependencies": { + "assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", + "dev": true + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + } + } + } + } + }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "dev": true, + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + }, + "dependencies": { + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", + "dev": true + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "dev": true, + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "dev": true, + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true, + "optional": true + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true, + "optional": true + } + } + } + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "mime-types": { + "version": "2.1.16", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.16.tgz", + "integrity": "sha1-K4WKUuXs1RbbiXrCvodIeDBpjiM=", + "dev": true, + "requires": { + "mime-db": "1.29.0" + }, + "dependencies": { + "mime-db": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.29.0.tgz", + "integrity": "sha1-SNJtI1WJZRcErFkWygYAGRQmaHg=", + "dev": true + } + } + }, + "node-uuid": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz", + "integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc=", + "dev": true + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "dev": true + }, + "qs": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-5.2.1.tgz", + "integrity": "sha1-gB/uAw4LlFDWOFrcSKTMVbRK7fw=", + "dev": true + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", + "dev": true + }, + "tough-cookie": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz", + "integrity": "sha1-yDoYMPTl7wuT7yo0iOck+N4Basc=", + "dev": true + }, + "tunnel-agent": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", + "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=", + "dev": true + } + } + }, + "request-progress": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz", + "integrity": "sha1-XTa7V5YcZzqlt4jbyBQf3yO0Tgg=", + "dev": true, + "requires": { + "throttleit": "1.0.0" + }, + "dependencies": { + "throttleit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", + "integrity": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=", + "dev": true + } + } + }, + "which": { + "version": "1.2.14", + "resolved": "https://registry.npmjs.org/which/-/which-1.2.14.tgz", + "integrity": "sha1-mofEN48D6CfOyvGs31bHNsAcFOU=", + "dev": true, + "requires": { + "isexe": "2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + } + } + } + } + }, + "plugin-error": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", + "integrity": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=", + "dev": true, + "requires": { + "ansi-cyan": "0.1.1", + "ansi-red": "0.1.1", + "arr-diff": "1.1.0", + "arr-union": "2.1.0", + "extend-shallow": "1.1.4" + } + }, + "pluralize": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", + "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==" + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + }, + "progress": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz", + "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "randomatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz", + "integrity": "sha512-KnGPVE0lo2WoXxIZ7cPR8YBpiol4gsSuOwDSg410oHh80ZMp5EiypNqL2K4Z77vJn6lB5rap7IkAmcUlalcnBQ==", + "requires": { + "is-number": "4.0.0", + "kind-of": "6.0.2", + "math-random": "1.0.1" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + } + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.2", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" + } + }, + "regex-cache": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", + "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", + "requires": { + "is-equal-shallow": "0.1.3" + } + }, + "regexp.prototype.flags": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz", + "integrity": "sha512-ztaw4M1VqgMwl9HlPpOuiYgItcHlunW0He2fE6eNfT6E/CF2FtYi9ofOYe4mKntstYk0Fyh/rDRBdS3AnxjlrA==", + "requires": { + "define-properties": "1.1.3" + } + }, + "regexpp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.0.tgz", + "integrity": "sha512-g2FAVtR8Uh8GO1Nv5wpxW7VFVwHcCEr4wyA8/MHiRkO8uHoR5ntAA8Uq3P1vvMTX/BeQiRVSpDGLd+Wn5HNOTA==" + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" + }, + "require-uncached": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", + "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", + "requires": { + "caller-path": "0.1.0", + "resolve-from": "1.0.1" + } + }, + "resolve-from": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", + "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=" + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "requires": { + "onetime": "2.0.1", + "signal-exit": "3.0.2" + } + }, + "rimraf": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", + "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "requires": { + "glob": "7.1.2" + } + }, + "run-async": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", + "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", + "requires": { + "is-promise": "2.1.0" + } + }, + "rxjs": { + "version": "5.5.11", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.11.tgz", + "integrity": "sha512-3bjO7UwWfA2CV7lmwYMBzj4fQ6Cq+ftHc2MvUe+WMS7wcdJ1LosDWmdjPQanYp2dBRj572p7PeU81JUxHKOcBA==", + "requires": { + "symbol-observable": "1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "requires": { + "shebang-regex": "1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" + }, + "slice-ansi": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz", + "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==", + "requires": { + "is-fullwidth-code-point": "2.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "stream-shift": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", + "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "requires": { + "is-fullwidth-code-point": "2.0.0", + "strip-ansi": "4.0.0" + } + }, + "string.prototype.matchall": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-2.0.0.tgz", + "integrity": "sha512-WoZ+B2ypng1dp4iFLF2kmZlwwlE19gmjgKuhL1FJfDgCREWb3ye3SDVHSzLH6bxfnvYmkCxbzkmWcQZHA4P//Q==", + "requires": { + "define-properties": "1.1.3", + "es-abstract": "1.12.0", + "function-bind": "1.1.1", + "has-symbols": "1.0.0", + "regexp.prototype.flags": "1.2.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "requires": { + "ansi-regex": "3.0.0" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "0.2.1" + } + }, + "strip-bom-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz", + "integrity": "sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4=", + "requires": { + "first-chunk-stream": "1.0.0", + "strip-bom": "2.0.0" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + }, + "supports-color": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", + "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", + "requires": { + "has-flag": "3.0.0" + } + }, + "symbol-observable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz", + "integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=" + }, + "table": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/table/-/table-4.0.3.tgz", + "integrity": "sha512-S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==", + "requires": { + "ajv": "6.5.2", + "ajv-keywords": "3.2.0", + "chalk": "2.4.1", + "lodash": "4.17.10", + "slice-ansi": "1.0.0", + "string-width": "2.1.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "requires": { + "ansi-styles": "3.2.1", + "escape-string-regexp": "1.0.5", + "supports-color": "5.4.0" + } + }, + "lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "requires": { + "readable-stream": "2.3.6", + "xtend": "4.0.1" + } + }, + "through2-filter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz", + "integrity": "sha1-YLxVoNrLdghdsfna6Zq0P4PWIuw=", + "requires": { + "through2": "2.0.3", + "xtend": "4.0.1" + } + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "requires": { + "os-tmpdir": "1.0.2" + } + }, + "to-absolute-glob": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz", + "integrity": "sha1-HN+kcqnvUMI57maZm2YsoOs5k38=", + "requires": { + "extend-shallow": "2.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "0.1.1" + } + } + } + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "requires": { + "prelude-ls": "1.1.2" + } + }, + "uglify-save-license": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/uglify-save-license/-/uglify-save-license-0.4.1.tgz", + "integrity": "sha1-lXJsF8xv0XHDYX479NjYKqjEzOE=", + "dev": true + }, + "underscore": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", + "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" + }, + "unique-stream": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz", + "integrity": "sha1-WqADz76Uxf+GbE59ZouxxNuts2k=", + "requires": { + "json-stable-stringify": "1.0.1", + "through2-filter": "2.0.0" + } + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "requires": { + "punycode": "2.1.1" + } + }, + "utf-8-validate": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-1.2.2.tgz", + "integrity": "sha1-i7hxpHQeCFxwSHynrNvX1tNgKes=", + "dev": true, + "optional": true, + "requires": { + "bindings": "1.2.1", + "nan": "2.4.0" + }, + "dependencies": { + "nan": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.4.0.tgz", + "integrity": "sha1-+zxZ1F/k7/4hXwuJD4rfbrMtIjI=", + "dev": true, + "optional": true + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "vali-date": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz", + "integrity": "sha1-G5BKWWCfsyjvB4E4Qgk09rhnCaY=" + }, + "vinyl": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", + "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "requires": { + "clone": "1.0.4", + "clone-stats": "0.0.1", + "replace-ext": "0.0.1" + } + }, + "vinyl-fs": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz", + "integrity": "sha1-vm/zJwy1Xf19MGNkDegfJddTIjk=", + "requires": { + "duplexify": "3.6.0", + "glob-stream": "5.3.5", + "graceful-fs": "4.1.11", + "gulp-sourcemaps": "1.6.0", + "is-valid-glob": "0.3.0", + "lazystream": "1.0.0", + "lodash.isequal": "4.5.0", + "merge-stream": "1.0.1", + "mkdirp": "0.5.1", + "object-assign": "4.1.1", + "readable-stream": "2.3.6", + "strip-bom": "2.0.0", + "strip-bom-stream": "1.0.0", + "through2": "2.0.3", + "through2-filter": "2.0.0", + "vali-date": "1.0.0", + "vinyl": "1.2.0" + } + }, + "webpack-stream": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/webpack-stream/-/webpack-stream-2.1.1.tgz", + "integrity": "sha1-gUItWGPCjHDAEQNvUYWDrZVylBA=", + "dev": true, + "requires": { + "gulp-util": "3.0.8", + "lodash.clone": "3.0.3", + "memory-fs": "0.2.0", + "through": "2.3.8", + "vinyl": "0.5.3", + "webpack": "1.15.0" + }, + "dependencies": { + "lodash.clone": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-3.0.3.tgz", + "integrity": "sha1-hGiMc9MrWpDKJWFpY/GJJSqZcEM=", + "dev": true, + "requires": { + "lodash._baseclone": "3.3.0", + "lodash._bindcallback": "3.0.1", + "lodash._isiterateecall": "3.0.9" + }, + "dependencies": { + "lodash._baseclone": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz", + "integrity": "sha1-MDUZv2OT/n5C802LYw73eU41Qrc=", + "dev": true, + "requires": { + "lodash._arraycopy": "3.0.0", + "lodash._arrayeach": "3.0.0", + "lodash._baseassign": "3.2.0", + "lodash._basefor": "3.0.3", + "lodash.isarray": "3.0.4", + "lodash.keys": "3.1.2" + }, + "dependencies": { + "lodash._arraycopy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz", + "integrity": "sha1-due3wfH7klRzdIeKVi7Qaj5Q9uE=", + "dev": true + }, + "lodash._arrayeach": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz", + "integrity": "sha1-urFWsqkNPxu9XGU0AzSeXlkz754=", + "dev": true + }, + "lodash._baseassign": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz", + "integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=", + "dev": true, + "requires": { + "lodash._basecopy": "3.0.1", + "lodash.keys": "3.1.2" + }, + "dependencies": { + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", + "dev": true + } + } + }, + "lodash._basefor": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz", + "integrity": "sha1-dVC06SGO8J+tJDQ7YSAhx5tMIMI=", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + }, + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "dev": true, + "requires": { + "lodash._getnative": "3.9.1", + "lodash.isarguments": "3.1.0", + "lodash.isarray": "3.0.4" + }, + "dependencies": { + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", + "dev": true + }, + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true + } + } + } + } + }, + "lodash._bindcallback": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", + "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=", + "dev": true + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", + "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", + "dev": true + } + } + }, + "memory-fs": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.2.0.tgz", + "integrity": "sha1-8rslNovBIeORwlIN6Slpyu4KApA=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "vinyl": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", + "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=", + "dev": true, + "requires": { + "clone": "1.0.2", + "clone-stats": "0.0.1", + "replace-ext": "0.0.1" + }, + "dependencies": { + "clone": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=", + "dev": true + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true + } + } + }, + "webpack": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-1.15.0.tgz", + "integrity": "sha1-T/MfU9sDM55VFkqdRo7gMklo/pg=", + "dev": true, + "requires": { + "acorn": "3.3.0", + "async": "1.5.2", + "clone": "1.0.2", + "enhanced-resolve": "0.9.1", + "interpret": "0.6.6", + "loader-utils": "0.2.17", + "memory-fs": "0.3.0", + "mkdirp": "0.5.1", + "node-libs-browser": "0.7.0", + "optimist": "0.6.1", + "supports-color": "3.2.3", + "tapable": "0.1.10", + "uglify-js": "2.7.5", + "watchpack": "0.2.9", + "webpack-core": "0.6.9" + }, + "dependencies": { + "acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=", + "dev": true + }, + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true + }, + "clone": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=", + "dev": true + }, + "enhanced-resolve": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz", + "integrity": "sha1-TW5omzcl+GCQknzMhs2fFjW4ni4=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "memory-fs": "0.2.0", + "tapable": "0.1.10" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "memory-fs": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.2.0.tgz", + "integrity": "sha1-8rslNovBIeORwlIN6Slpyu4KApA=", + "dev": true + } + } + }, + "interpret": { + "version": "0.6.6", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-0.6.6.tgz", + "integrity": "sha1-/s16GOfOXKar+5U+H4YhOknxYls=", + "dev": true + }, + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", + "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", + "dev": true, + "requires": { + "big.js": "3.1.3", + "emojis-list": "2.1.0", + "json5": "0.5.1", + "object-assign": "4.1.1" + }, + "dependencies": { + "big.js": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz", + "integrity": "sha1-TK2iGTZS6zyp7I5VyQFWacmAaXg=", + "dev": true + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + } + } + }, + "memory-fs": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.3.0.tgz", + "integrity": "sha1-e8xrYp46Q+hx1+Kaymrop/FcuyA=", + "dev": true, + "requires": { + "errno": "0.1.4", + "readable-stream": "2.3.3" + }, + "dependencies": { + "errno": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.4.tgz", + "integrity": "sha1-uJbiOp5ei6M4cfyZar02NfyaHH0=", + "dev": true, + "requires": { + "prr": "0.0.0" + }, + "dependencies": { + "prr": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", + "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=", + "dev": true + } + } + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + } + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "node-libs-browser": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.7.0.tgz", + "integrity": "sha1-PicsCBnjCJNeJmdECNevDhSRuDs=", + "dev": true, + "requires": { + "assert": "1.4.1", + "browserify-zlib": "0.1.4", + "buffer": "4.9.1", + "console-browserify": "1.1.0", + "constants-browserify": "1.0.0", + "crypto-browserify": "3.3.0", + "domain-browser": "1.1.7", + "events": "1.1.1", + "https-browserify": "0.0.1", + "os-browserify": "0.2.1", + "path-browserify": "0.0.0", + "process": "0.11.10", + "punycode": "1.4.1", + "querystring-es3": "0.2.1", + "readable-stream": "2.3.3", + "stream-browserify": "2.0.1", + "stream-http": "2.7.2", + "string_decoder": "0.10.31", + "timers-browserify": "2.0.4", + "tty-browserify": "0.0.0", + "url": "0.11.0", + "util": "0.10.3", + "vm-browserify": "0.0.4" + }, + "dependencies": { + "assert": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", + "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "dev": true, + "requires": { + "util": "0.10.3" + } + }, + "browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=", + "dev": true, + "requires": { + "pako": "0.2.9" + }, + "dependencies": { + "pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=", + "dev": true + } + } + }, + "buffer": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", + "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "dev": true, + "requires": { + "base64-js": "1.2.1", + "ieee754": "1.1.8", + "isarray": "1.0.0" + }, + "dependencies": { + "base64-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz", + "integrity": "sha1-qRlH2h9KUW6jjltOwOw3c2deCIY=", + "dev": true + }, + "ieee754": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", + "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "console-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", + "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", + "dev": true, + "requires": { + "date-now": "0.1.4" + }, + "dependencies": { + "date-now": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", + "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", + "dev": true + } + } + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "crypto-browserify": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.3.0.tgz", + "integrity": "sha1-ufx1u0oO1h3PHNXa6W6zDJw+UGw=", + "dev": true, + "requires": { + "browserify-aes": "0.4.0", + "pbkdf2-compat": "2.0.1", + "ripemd160": "0.2.0", + "sha.js": "2.2.6" + }, + "dependencies": { + "browserify-aes": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-0.4.0.tgz", + "integrity": "sha1-BnFJtmjfMcS1hTPgLQHoBthgjiw=", + "dev": true, + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "pbkdf2-compat": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz", + "integrity": "sha1-tuDI+plJTZTgURV1gCpZpcFC8og=", + "dev": true + }, + "ripemd160": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-0.2.0.tgz", + "integrity": "sha1-K/GYveFnys+lHAqSjoS2i74XH84=", + "dev": true + }, + "sha.js": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.2.6.tgz", + "integrity": "sha1-F93t3F9yL7ZlAWWIlUYZd4ZzFbo=", + "dev": true + } + } + }, + "domain-browser": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz", + "integrity": "sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw=", + "dev": true + }, + "events": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", + "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=", + "dev": true + }, + "https-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz", + "integrity": "sha1-P5E2XKvmC3ftDruiS0VOPgnZWoI=", + "dev": true + }, + "os-browserify": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz", + "integrity": "sha1-Y/xMzuXS13Y9Jrv4YBB45sLgBE8=", + "dev": true + }, + "path-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", + "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=", + "dev": true + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "stream-browserify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", + "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "stream-http": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.7.2.tgz", + "integrity": "sha1-QKBQ7I3DtTsz2ZCUFcAsC/Gr+60=", + "dev": true, + "requires": { + "builtin-status-codes": "3.0.0", + "inherits": "2.0.3", + "readable-stream": "2.3.3", + "to-arraybuffer": "1.0.1", + "xtend": "4.0.1" + }, + "dependencies": { + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "timers-browserify": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.4.tgz", + "integrity": "sha1-lspT9LeUpefA4b18yIo3Ipj6AeY=", + "dev": true, + "requires": { + "setimmediate": "1.0.5" + }, + "dependencies": { + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + } + } + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + } + } + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + } + } + }, + "vm-browserify": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", + "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", + "dev": true, + "requires": { + "indexof": "0.0.1" + }, + "dependencies": { + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + } + } + } + } + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "requires": { + "minimist": "0.0.10", + "wordwrap": "0.0.3" + }, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + } + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "1.0.0" + }, + "dependencies": { + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + } + } + }, + "tapable": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.1.10.tgz", + "integrity": "sha1-KcNXB8K3DlDQdIK10gLo7URtr9Q=", + "dev": true + }, + "uglify-js": { + "version": "2.7.5", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz", + "integrity": "sha1-RhLAx7qu4rp8SH3kkErhIgefLKg=", + "dev": true, + "requires": { + "async": "0.2.10", + "source-map": "0.5.6", + "uglify-to-browserify": "1.0.2", + "yargs": "3.10.0" + }, + "dependencies": { + "async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=", + "dev": true + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "dev": true + }, + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "dev": true, + "requires": { + "camelcase": "1.2.1", + "cliui": "2.1.0", + "decamelize": "1.2.0", + "window-size": "0.1.0" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", + "dev": true + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "dev": true, + "requires": { + "center-align": "0.1.3", + "right-align": "0.1.3", + "wordwrap": "0.0.2" + }, + "dependencies": { + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "dev": true, + "requires": { + "align-text": "0.1.4", + "lazy-cache": "1.0.4" + }, + "dependencies": { + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dev": true, + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + } + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", + "dev": true + } + } + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "dev": true, + "requires": { + "align-text": "0.1.4" + }, + "dependencies": { + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dev": true, + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + } + } + } + } + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "dev": true + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "window-size": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", + "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", + "dev": true + } + } + } + } + }, + "watchpack": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-0.2.9.tgz", + "integrity": "sha1-Yuqkq15bo1/fwBgnVibjwPXj+ws=", + "dev": true, + "requires": { + "async": "0.9.2", + "chokidar": "1.7.0", + "graceful-fs": "4.1.11" + }, + "dependencies": { + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", + "dev": true + }, + "chokidar": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", + "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", + "dev": true, + "requires": { + "anymatch": "1.3.2", + "async-each": "1.0.1", + "fsevents": "1.2.4", + "glob-parent": "2.0.0", + "inherits": "2.0.3", + "is-binary-path": "1.0.1", + "is-glob": "2.0.1", + "path-is-absolute": "1.0.1", + "readdirp": "2.1.0" + }, + "dependencies": { + "anymatch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", + "integrity": "sha1-VT3Lj5HjyImEXf26NMd3IbkLnXo=", + "dev": true, + "requires": { + "micromatch": "2.3.11", + "normalize-path": "2.1.1" + }, + "dependencies": { + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "dev": true, + "requires": { + "arr-diff": "2.0.0", + "array-unique": "0.2.1", + "braces": "1.8.5", + "expand-brackets": "0.1.5", + "extglob": "0.3.2", + "filename-regex": "2.0.1", + "is-extglob": "1.0.0", + "is-glob": "2.0.1", + "kind-of": "3.2.2", + "normalize-path": "2.1.1", + "object.omit": "2.0.1", + "parse-glob": "3.0.4", + "regex-cache": "0.4.3" + }, + "dependencies": { + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "dev": true, + "requires": { + "arr-flatten": "1.1.0" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=", + "dev": true + } + } + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "dev": true, + "requires": { + "expand-range": "1.8.2", + "preserve": "0.2.0", + "repeat-element": "1.1.2" + }, + "dependencies": { + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "dev": true, + "requires": { + "fill-range": "2.2.3" + }, + "dependencies": { + "fill-range": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", + "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", + "dev": true, + "requires": { + "is-number": "2.1.0", + "isobject": "2.1.0", + "randomatic": "1.1.7", + "repeat-element": "1.1.2", + "repeat-string": "1.6.1" + }, + "dependencies": { + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + } + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "randomatic": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", + "integrity": "sha1-x6vpzIuHwLqodrGf3oP9RkeX44w=", + "dev": true, + "requires": { + "is-number": "3.0.0", + "kind-of": "4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + } + } + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + } + } + } + } + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", + "dev": true + }, + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "dev": true + } + } + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "dev": true, + "requires": { + "is-posix-bracket": "0.1.1" + }, + "dependencies": { + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", + "dev": true + } + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + } + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", + "dev": true + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + } + } + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "dev": true, + "requires": { + "for-own": "0.1.5", + "is-extendable": "0.1.1" + }, + "dependencies": { + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "dev": true, + "requires": { + "for-in": "1.0.2" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + } + } + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "dev": true, + "requires": { + "glob-base": "0.3.0", + "is-dotfile": "1.0.3", + "is-extglob": "1.0.0", + "is-glob": "2.0.1" + }, + "dependencies": { + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "dev": true, + "requires": { + "glob-parent": "2.0.0", + "is-glob": "2.0.1" + } + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", + "dev": true + } + } + }, + "regex-cache": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz", + "integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=", + "dev": true, + "requires": { + "is-equal-shallow": "0.1.3", + "is-primitive": "2.0.0" + }, + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "dev": true, + "requires": { + "is-primitive": "2.0.0" + } + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", + "dev": true + } + } + } + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "1.1.0" + }, + "dependencies": { + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + } + } + } + } + }, + "async-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", + "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", + "dev": true + }, + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true, + "requires": { + "is-glob": "2.0.1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "1.10.0" + }, + "dependencies": { + "binary-extensions": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.10.0.tgz", + "integrity": "sha1-muuabF6IY4qtFx4Wf1kAq+JINdA=", + "dev": true + } + } + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "readdirp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", + "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "minimatch": "3.0.4", + "readable-stream": "2.3.3", + "set-immediate-shim": "1.0.1" + }, + "dependencies": { + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + } + } + }, + "set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", + "dev": true + } + } + } + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + } + } + }, + "webpack-core": { + "version": "0.6.9", + "resolved": "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz", + "integrity": "sha1-/FcViMhVjad76e+23r3Fo7FyvcI=", + "dev": true, + "requires": { + "source-list-map": "0.1.8", + "source-map": "0.4.4" + }, + "dependencies": { + "source-list-map": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz", + "integrity": "sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY=", + "dev": true + }, + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "dev": true, + "requires": { + "amdefine": "1.0.1" + }, + "dependencies": { + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + } + } + } + } + } + } + } + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "2.0.0" + } + }, + "wiredep": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/wiredep/-/wiredep-2.2.2.tgz", + "integrity": "sha1-FETRirLkk3UEEJP+3d3Rto97ZrM=", + "dev": true, + "requires": { + "bower-config": "0.5.2", + "chalk": "0.5.1", + "glob": "4.5.3", + "lodash": "2.4.2", + "minimist": "1.2.0", + "propprop": "0.3.1", + "through2": "0.6.5" + }, + "dependencies": { + "bower-config": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/bower-config/-/bower-config-0.5.2.tgz", + "integrity": "sha1-H30uiZ6ZtwwpphPnDUxkWQQUsi4=", + "dev": true, + "requires": { + "graceful-fs": "2.0.3", + "mout": "0.9.1", + "optimist": "0.6.1", + "osenv": "0.0.3" + }, + "dependencies": { + "graceful-fs": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz", + "integrity": "sha1-fNLNsiiko/Nule+mzBQt59GhNtA=", + "dev": true + }, + "mout": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/mout/-/mout-0.9.1.tgz", + "integrity": "sha1-hPDz/WrMcxf2PeKv/cwM7gCbBHc=", + "dev": true + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "requires": { + "minimist": "0.0.10", + "wordwrap": "0.0.3" + }, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + } + } + }, + "osenv": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.0.3.tgz", + "integrity": "sha1-zWrY3bKQkVrZ4idlV2Al1BHynLY=", + "dev": true + } + } + }, + "chalk": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz", + "integrity": "sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=", + "dev": true, + "requires": { + "ansi-styles": "1.1.0", + "escape-string-regexp": "1.0.5", + "has-ansi": "0.1.0", + "strip-ansi": "0.3.0", + "supports-color": "0.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz", + "integrity": "sha1-6uy/Zs1waIJ2Cy9GkVgrj1XXp94=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "has-ansi": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz", + "integrity": "sha1-hPJlqujA5qiKEtcCKJS3VoiUxi4=", + "dev": true, + "requires": { + "ansi-regex": "0.2.1" + }, + "dependencies": { + "ansi-regex": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz", + "integrity": "sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=", + "dev": true + } + } + }, + "strip-ansi": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz", + "integrity": "sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=", + "dev": true, + "requires": { + "ansi-regex": "0.2.1" + }, + "dependencies": { + "ansi-regex": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz", + "integrity": "sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=", + "dev": true + } + } + }, + "supports-color": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz", + "integrity": "sha1-2S3iaU6z9nMjlz1649i1W0wiGQo=", + "dev": true + } + } + }, + "glob": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=", + "dev": true, + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "2.0.10", + "once": "1.4.0" + }, + "dependencies": { + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + } + } + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + } + } + } + } + }, + "lodash": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz", + "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=", + "dev": true + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "propprop": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/propprop/-/propprop-0.3.1.tgz", + "integrity": "sha1-oEmjVouJZEAGfRXY7J8zc15XAXg=", + "dev": true + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "dev": true, + "requires": { + "readable-stream": "1.0.34", + "xtend": "4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } + } + } + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + }, + "wrap-promise": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wrap-promise/-/wrap-promise-1.0.1.tgz", + "integrity": "sha1-sBn0I2zL8ftWCSG0tIcLe9ovUlU=", + "requires": { + "es6-promise": "2.3.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "wrench": { + "version": "1.5.9", + "resolved": "https://registry.npmjs.org/wrench/-/wrench-1.5.9.tgz", + "integrity": "sha1-QRaRxjqbJTGxcAJnJ5veyiOyFCo=", + "dev": true + }, + "write": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", + "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", + "requires": { + "mkdirp": "0.5.1" + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + } + } +} diff --git a/package.json b/package.json index 2aacafd..43ae7e6 100644 --- a/package.json +++ b/package.json @@ -1,54 +1,55 @@ { - "name": "connectivityMatrixJs", + "name": "graffinity", "version": "0.0.0", - "dependencies": {}, "scripts": { "test": "gulp test" }, "devDependencies": { + "babel-core": "~5.8.25", + "babel-loader": "~5.3.2", + "browser-sync": "~2.9.11", + "browser-sync-spa": "~1.0.3", + "chalk": "~1.1.1", + "del": "~2.0.2", + "eslint-loader": "~1.1.0", + "eslint-plugin-angular": "~0.12.0", "estraverse": "~4.1.0", "gulp": "~3.9.0", - "gulp-autoprefixer": "~3.0.2", "gulp-angular-templatecache": "~1.8.0", - "del": "~2.0.2", - "lodash": "~3.10.1", - "gulp-minify-css": "~1.2.1", + "gulp-autoprefixer": "~3.0.2", + "gulp-eslint": "~1.0.0", "gulp-filter": "~3.0.1", "gulp-flatten": "~0.2.0", - "gulp-eslint": "~1.0.0", - "eslint-plugin-angular": "~0.12.0", + "gulp-inject": "~3.0.0", "gulp-load-plugins": "~0.10.0", + "gulp-minify-css": "~1.2.1", + "gulp-minify-html": "~1.0.4", + "gulp-protractor": "~1.0.0", + "gulp-rename": "^1.2.3", + "gulp-replace": "~0.5.4", + "gulp-rev": "~6.0.1", + "gulp-rev-replace": "^0.4.4", "gulp-size": "~2.0.0", + "gulp-sourcemaps": "~1.6.0", "gulp-uglify": "~1.4.1", "gulp-useref": "~1.3.0", "gulp-util": "~3.0.6", - "gulp-replace": "~0.5.4", - "gulp-rename": "~1.2.2", - "gulp-rev": "~6.0.1", - "gulp-rev-replace": "~0.4.2", - "gulp-minify-html": "~1.0.4", - "gulp-inject": "~3.0.0", - "gulp-protractor": "~1.0.0", - "gulp-sourcemaps": "~1.6.0", - "webpack-stream": "~2.1.1", - "ng-annotate-loader": "0.0.10", - "eslint-loader": "~1.1.0", - "babel-core": "~5.8.25", - "babel-loader": "~5.3.2", - "main-bower-files": "~2.9.0", - "wiredep": "~2.2.2", + "http-proxy-middleware": "~0.9.0", "karma": "~0.13.10", - "karma-jasmine": "~0.3.6", "karma-chrome-launcher": "~0.2.3", - "phantomjs": "~1.9.18", "karma-coverage": "~0.5.2", + "karma-jasmine": "~0.3.6", "karma-ng-html2js-preprocessor": "~0.2.0", - "browser-sync": "~2.9.11", - "browser-sync-spa": "~1.0.3", - "http-proxy-middleware": "~0.9.0", - "chalk": "~1.1.1", + "lodash": "~3.10.1", + "main-bower-files": "~2.9.0", + "ng-annotate-loader": "0.0.10", + "phantomjs": "~1.9.18", "uglify-save-license": "~0.4.1", - "wrench": "~1.5.8" + "webpack-stream": "~2.1.1", + "wiredep": "~2.2.2", + "wrench": "~1.5.8", + "eslint": "^5.3.0", + "gulp-gh-pages": "^0.5.4" }, "engines": { "node": ">=0.10.0" diff --git a/src/app/components/connectivityMatrixView/cmMatrixBase.js b/src/app/components/connectivityMatrixView/cmMatrixBase.js index 30f7859..ce924e4 100644 --- a/src/app/components/connectivityMatrixView/cmMatrixBase.js +++ b/src/app/components/connectivityMatrixView/cmMatrixBase.js @@ -291,15 +291,6 @@ export class cmMatrixBase extends SvgGroupElement { return total; } - getAttributeRowHeights() { - let total = 0; - for (var i = 0; i < this.rowHeights.length; ++i) { - if (this.isAttributeRow(i) || this.isControlRow(i) || this.isLabelRow(i)) { - total += this.rowHeights[i]; - } - } - } - getAvailableMetrics(database) { let metrics = [{ "name": "path count", diff --git a/src/app/components/connectivityMatrixView/controls/cmAttributeControls.js b/src/app/components/connectivityMatrixView/controls/cmAttributeControls.js index 4228bbe..0889279 100644 --- a/src/app/components/connectivityMatrixView/controls/cmAttributeControls.js +++ b/src/app/components/connectivityMatrixView/controls/cmAttributeControls.js @@ -222,7 +222,7 @@ export class cmAttributeControls extends SvgGroupElement { this.outline.attr("stroke", visible ? "black" : "none"); this.controls.style("display", visible ? "flex" : "none"); - if (!Boolean(this.sortControls.select(".fa").attr("data-is-sorted")) && !visible) { + if (!this.sortControls.select(".fa").attr("data-is-sorted") && !visible) { this.sortControls.style("display", "none"); } else if (visible) { this.sortControls.style("display", "flex"); diff --git a/src/app/components/connectivityMatrixView/controls/cmNodeLabelControls.js b/src/app/components/connectivityMatrixView/controls/cmNodeLabelControls.js index 57a6c56..2e8032d 100644 --- a/src/app/components/connectivityMatrixView/controls/cmNodeLabelControls.js +++ b/src/app/components/connectivityMatrixView/controls/cmNodeLabelControls.js @@ -155,7 +155,7 @@ export class cmNodeLabelControls extends SvgGroupElement { this.verticalOutline.attr("stroke", visible ? "black" : "none"); this.verticalControls.style("display", visible ? "flex" : "none"); - if (!visible && !Boolean(this.verticalSortControls.select(".fa").attr("data-is-sorted"))) { + if (!visible && !this.verticalSortControls.select(".fa").attr("data-is-sorted")) { this.verticalSortControls.style("display", "none"); } else if (visible) { this.verticalSortControls.style("display", "flex"); @@ -165,7 +165,7 @@ export class cmNodeLabelControls extends SvgGroupElement { this.outline.attr("stroke", visible ? "black" : "none"); this.controls.style("display", visible ? "flex" : "none"); - if (!visible && !Boolean(this.sortControls.select(".fa").attr("data-is-sorted"))) { + if (!visible && !this.sortControls.select(".fa").attr("data-is-sorted")) { this.sortControls.style("display", "none"); } else if (visible) { this.sortControls.style("display", "flex"); diff --git a/src/app/components/dataSelection/dataSelection.service.js b/src/app/components/dataSelection/dataSelection.service.js index ca6f318..e029b42 100644 --- a/src/app/components/dataSelection/dataSelection.service.js +++ b/src/app/components/dataSelection/dataSelection.service.js @@ -18,7 +18,7 @@ export class DataSelectionService { let modalInstance = this.$uibModal.open({ animation: true, - templateUrl: '/app/components/dataSelection/dataSelection.html', + templateUrl: 'app/components/dataSelection/dataSelection.html', controller: 'DataSelectionController', controllerAs: 'controller', bindToController: true, diff --git a/src/app/components/modals/modals.service.js b/src/app/components/modals/modals.service.js index f8ede2a..129a6cf 100644 --- a/src/app/components/modals/modals.service.js +++ b/src/app/components/modals/modals.service.js @@ -23,7 +23,7 @@ export class ModalService { let modalInstance = this.$uibModal.open({ animation: true, - templateUrl: '/app/components/modals/modalListFilter.html', + templateUrl: 'app/components/modals/modalListFilter.html', controller: 'ModalListFilterController', controllerAs: 'modalController', size: 'sm', @@ -56,7 +56,7 @@ export class ModalService { let modalInstance = this.$uibModal.open({ animation: true, - templateUrl: '/app/components/modals/modalHistogramFilter.html', + templateUrl: 'app/components/modals/modalHistogramFilter.html', controller: 'ModalHistogramFilterController', controllerAs: 'modalController', size: 'lg', diff --git a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html index a4c9848..13f2163 100644 --- a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html +++ b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html @@ -19,12 +19,12 @@

Connectome Query

- {{node}} + Node #{{$index}}
- {{queryController.ui.edges[$index]}} + Edge #{{$index}}
diff --git a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js index 436bab7..c32d950 100644 --- a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js +++ b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js @@ -167,10 +167,10 @@ class QueryController { onSetQuery(signal, ui) { this.reset(); - // if (ui) { - // this.ui = ui; - // this.onQueryModified(); - // } + if (ui) { + this.ui = ui; + this.onQueryModified(); + } } onQueryModified() { @@ -213,14 +213,13 @@ class QueryController { // this.ui.nodes[0] = "node0"; for (let i = 0; i < numHops; ++i) { - this.ui.nodes.push("node"+i); - this.ui.edges.push("edge"+i); + this.ui.nodes.push(""); + this.ui.edges.push(""); } - this.ui.nodes.push("node"+numHops); + this.ui.nodes.push(""); this.ui.keys = keys; this.onQueryModified(); - console.error(this.ui); } } diff --git a/src/app/components/vis/visHistogram.js b/src/app/components/vis/visHistogram.js index 14c2133..33ff820 100644 --- a/src/app/components/vis/visHistogram.js +++ b/src/app/components/vis/visHistogram.js @@ -189,8 +189,7 @@ export class visHistogram { // Generate a histogram using uniformly-spaced bins. this.histogramData = d3.layout.histogram() - .bins(this.tickArray) - (this.values); + .bins(this.tickArray)(this.values); } /** diff --git a/src/app/components/vis/visHistogramScent.js b/src/app/components/vis/visHistogramScent.js index 02aed0f..c52457e 100644 --- a/src/app/components/vis/visHistogramScent.js +++ b/src/app/components/vis/visHistogramScent.js @@ -220,8 +220,7 @@ export class visHistogramScent { // Generate a histogram using uniformly-spaced bins. this.histogramData = d3.layout.histogram() - .bins(this.tickArray) - (this.values); + .bins(this.tickArray)(this.values); } /** diff --git a/src/app/main/main.controller.js b/src/app/main/main.controller.js index e6fad4b..7459613 100644 --- a/src/app/main/main.controller.js +++ b/src/app/main/main.controller.js @@ -1,11 +1,11 @@ /* globals d3 reorder saveAs */ -import {mock} from "../components/connectivityMatrix/mock.js"; -import {Utils} from "../components/utils/utils"; +import { mock } from "../components/connectivityMatrix/mock.js"; +import { Utils } from "../components/utils/utils"; export class MainController { constructor($log, $timeout, $scope, $q, toastr, cmMatrixViewFactory, cmModelFactory, cmMatrixFactory, cmGraphFactory, - viewState, modalService, database, $http, colorScaleService, resource, dataSelectionService) { + viewState, modalService, database, $http, colorScaleService, resource, dataSelectionService) { 'ngInject'; this.viewState = viewState; this.$scope = $scope; @@ -42,7 +42,6 @@ export class MainController { this.ui.debugNodeHidingId = 168; this.ui.debugNodeLinkLayout = false; - // Set these to true to automatically set attributes on the filter ranges. (see below) this.ui.debugRowFilterScents = false; this.ui.debugColFilterScents = false; @@ -55,6 +54,10 @@ export class MainController { this.ui.selectedMatrixScale = this.isMarclabData ? this.ui.matrixScales[0] : this.ui.matrixScales[1]; this.ui.selectedNodeListScale = this.isMarclabData ? this.ui.matrixScales[0] : this.ui.matrixScales[1]; + // This is a hack to load data from the correct location when graffinity is deployed. + // if in production, we have to load data from http://vdl.sci.utah.edu/graffinity/ + this.isProduction = window.location.href.indexOf('vdl') > 0; + if (this.isMarclabData) { this.colorScaleService.setUseLinearColorScale(true, 0); this.colorScaleService.setUseLinearColorScale(true, 1); @@ -77,7 +80,11 @@ export class MainController { if (this.database == "marclab") { if (useLargeResult) { - this.requestInitialData("/assets/mock/defaultMarclab.json"); + let initialData = "/assets/mock/defaultMarclab.json"; + if (this.isProduction) { + initialData = "http://vdl.sci.utah.edu/graffinity/assets/mock/defaultMarclab.json"; + } + this.requestInitialData(initialData); } else { jsonGraph = mock.output.graph; jsonMatrix = mock.output.matrix; @@ -152,7 +159,17 @@ export class MainController { */ activateWithClientOnlyData() { let self = this; - let defaultDataNames = ["/assets/mock/2018.01.23-network-514-1-hop.json", "/assets/mock/2018.01.23-network-all-hops.json"]; + + let defaultDataNames = [ + "/assets/mock/2018.01.23-network-514-1-hop.json", + "/assets/mock/2018.01.23-network-all-hops.json" + ]; + if (this.isProduction) { + defaultDataNames = [ + "http://vdl.sci.utah.edu/graffinity/assets/mock/2018.01.23-network-514-1-hop.json", + "http://vdl.sci.utah.edu/graffinity/assets/mock/2018.01.23-network-all-hops.json" + ]; + } // Callback after the user selects a dataset. let userSelectedDataCallback = function (result) { @@ -191,7 +208,7 @@ export class MainController { let query = { availableNumHops: [1, 2, 3], selectedNumHops: 2, - nodes: ["*", "*", "*"], + nodes: ["CBb.*", "AC", "CBb.*"], edges: ["*", "*"] }; let self = this; @@ -251,7 +268,7 @@ export class MainController { createReorderControls() { this.ui.orders = ["custom", "optimal leaf", "database", "" + - ""]; + ""]; this.ui.selectedSortOrder = this.ui.orders[1]; } @@ -352,7 +369,12 @@ export class MainController { * Load some debugging data. */ onLoadClicked() { - this.requestInitialData("/assets/mock/defaultMarclab.json"); + let initialData = "/assets/mock/defaultMarclab.json"; + if (this.isProduction) { + initialData = "http://vdl.sci.utah.edu/graffinity/assets/mock/defaultMarclab.json"; + } + this.requestInitialData(initialData); + } /** @@ -430,7 +452,7 @@ export class MainController { "graph": this.model.getCmGraph().getJsonGraph() }; let stateString = JSON.stringify(state); - let blob = new Blob([stateString], {"type": "text/plain;"}); + let blob = new Blob([stateString], { "type": "text/plain;" }); saveAs(blob, `${this.database}_state.json`); } diff --git a/src/app/components/reorder/reorder.v1.js b/src/assets/ext/reorder.v1.js similarity index 100% rename from src/app/components/reorder/reorder.v1.js rename to src/assets/ext/reorder.v1.js diff --git a/src/app/components/reorder/tiny-queue.js b/src/assets/ext/tiny-queue.js similarity index 100% rename from src/app/components/reorder/tiny-queue.js rename to src/assets/ext/tiny-queue.js diff --git a/src/index.html b/src/index.html index 5e64024..df4689a 100644 --- a/src/index.html +++ b/src/index.html @@ -2,7 +2,7 @@ - connectivityMatrixJs + Graffinity @@ -48,9 +48,8 @@ These files do not export modules so they cannot be included with ES import. These files are also not part of bower nor node modules so they cannot use the standard injection path. --> - - - + + From ad918ff62c81a3ae33aef83cf15b4ec8940154aa Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Fri, 17 Aug 2018 16:09:01 -0600 Subject: [PATCH 11/24] Update package info. --- bower.json | 2 +- package-lock.json | 721 ++++++++++++++++++++++++++++++++++------------ 2 files changed, 531 insertions(+), 192 deletions(-) diff --git a/bower.json b/bower.json index b79ad40..178593e 100644 --- a/bower.json +++ b/bower.json @@ -27,7 +27,7 @@ "angular-bootstrap": "^2.1.3", "ng-tags-input": "^3.1.1", "angular-ui-select": "^0.19.4", - "file-saver": "^1.3.3" + "file-saver": "FileSaver#1.3.4" }, "devDependencies": { "angular-mocks": "~1.5.5" diff --git a/package-lock.json b/package-lock.json index d6a3f68..6f3cb01 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "connectivityMatrixJs", + "name": "graffinity", "version": "0.0.0", "lockfileVersion": 1, "requires": true, @@ -7,12 +7,14 @@ "acorn": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz", - "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==" + "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==", + "dev": true }, "acorn-jsx": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz", "integrity": "sha512-JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw==", + "dev": true, "requires": { "acorn": "5.7.1" } @@ -21,6 +23,7 @@ "version": "6.5.2", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz", "integrity": "sha512-hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==", + "dev": true, "requires": { "fast-deep-equal": "2.0.1", "fast-json-stable-stringify": "2.0.0", @@ -31,7 +34,8 @@ "ajv-keywords": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", - "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=" + "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", + "dev": true }, "ansi-cyan": { "version": "0.1.1", @@ -45,7 +49,8 @@ "ansi-escapes": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", - "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==" + "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==", + "dev": true }, "ansi-red": { "version": "0.1.1", @@ -59,12 +64,14 @@ "ansi-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true }, "ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "requires": { "color-convert": "1.9.2" } @@ -79,6 +86,7 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, "requires": { "sprintf-js": "1.0.3" } @@ -96,7 +104,8 @@ "arr-flatten": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true }, "arr-union": { "version": "2.1.0", @@ -113,12 +122,14 @@ "array-unique": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true }, "babel-code-frame": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "dev": true, "requires": { "chalk": "1.1.3", "esutils": "2.0.2", @@ -1266,7 +1277,8 @@ "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true }, "bindings": { "version": "1.2.1", @@ -1279,6 +1291,7 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "requires": { "balanced-match": "1.0.0", "concat-map": "0.0.1" @@ -1288,6 +1301,7 @@ "version": "1.8.5", "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "dev": true, "requires": { "expand-range": "1.8.2", "preserve": "0.2.0", @@ -4192,6 +4206,7 @@ "version": "0.1.0", "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", + "dev": true, "requires": { "callsites": "0.2.0" } @@ -4199,12 +4214,14 @@ "callsites": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", - "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=" + "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=", + "dev": true }, "chalk": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, "requires": { "ansi-styles": "2.2.1", "escape-string-regexp": "1.0.5", @@ -4216,17 +4233,20 @@ "ansi-styles": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true }, "has-ansi": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, "requires": { "ansi-regex": "2.1.1" }, @@ -4234,7 +4254,8 @@ "ansi-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true } } }, @@ -4242,6 +4263,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, "requires": { "ansi-regex": "2.1.1" }, @@ -4249,31 +4271,36 @@ "ansi-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true } } }, "supports-color": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true } } }, "chardet": { "version": "0.4.2", "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", - "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=" + "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=", + "dev": true }, "circular-json": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", - "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==" + "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", + "dev": true }, "cli-cursor": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, "requires": { "restore-cursor": "2.0.0" } @@ -4281,22 +4308,26 @@ "cli-width": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=" + "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", + "dev": true }, "clone": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true }, "clone-stats": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", - "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true }, "color-convert": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz", "integrity": "sha512-3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==", + "dev": true, "requires": { "color-name": "1.1.1" } @@ -4304,22 +4335,26 @@ "color-name": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=" + "integrity": "sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=", + "dev": true }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true }, "cross-spawn": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, "requires": { "nice-try": "1.0.4", "path-key": "2.0.1", @@ -4332,6 +4367,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -4339,12 +4375,14 @@ "deep-is": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true }, "define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, "requires": { "object-keys": "1.0.12" } @@ -4353,6 +4391,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/del/-/del-2.0.2.tgz", "integrity": "sha1-bNxo2wAoK5LY6CoO2f/x0zMZNCQ=", + "dev": true, "requires": { "globby": "3.0.1", "is-path-cwd": "1.0.0", @@ -4367,6 +4406,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/globby/-/globby-3.0.1.tgz", "integrity": "sha1-IJSvhCHhkVIVDViT62QWsxLZoi8=", + "dev": true, "requires": { "array-union": "1.0.2", "arrify": "1.0.1", @@ -4380,6 +4420,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, "requires": { "array-uniq": "1.0.3" }, @@ -4387,19 +4428,22 @@ "array-uniq": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true } } }, "arrify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true }, "glob": { "version": "5.0.15", "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "dev": true, "requires": { "inflight": "1.0.6", "inherits": "2.0.3", @@ -4412,6 +4456,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, "requires": { "once": "1.4.0", "wrappy": "1.0.2" @@ -4420,19 +4465,22 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true } } }, "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, "requires": { "brace-expansion": "1.1.8" }, @@ -4441,6 +4489,7 @@ "version": "1.1.8", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, "requires": { "balanced-match": "1.0.0", "concat-map": "0.0.1" @@ -4449,12 +4498,14 @@ "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true } } } @@ -4464,6 +4515,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, "requires": { "wrappy": "1.0.2" }, @@ -4471,14 +4523,16 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true } } }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true } } } @@ -4487,12 +4541,14 @@ "is-path-cwd": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=" + "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", + "dev": true }, "is-path-in-cwd": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz", "integrity": "sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw=", + "dev": true, "requires": { "is-path-inside": "1.0.0" }, @@ -4501,6 +4557,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz", "integrity": "sha1-/AbloWg/vaE95mev9xe7wQpI838=", + "dev": true, "requires": { "path-is-inside": "1.0.2" }, @@ -4508,7 +4565,8 @@ "path-is-inside": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true } } } @@ -4517,17 +4575,20 @@ "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true }, "pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true }, "pinkie-promise": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz", "integrity": "sha1-0dpn9UglY7t89X8oauKCLs+/NnA=", + "dev": true, "requires": { "pinkie": "1.0.0" }, @@ -4535,7 +4596,8 @@ "pinkie": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz", - "integrity": "sha1-Wkfyi6EBXQIBvae/DzWOR77Ix+Q=" + "integrity": "sha1-Wkfyi6EBXQIBvae/DzWOR77Ix+Q=", + "dev": true } } }, @@ -4543,6 +4605,7 @@ "version": "2.6.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", + "dev": true, "requires": { "glob": "7.1.2" }, @@ -4551,6 +4614,7 @@ "version": "7.1.2", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", + "dev": true, "requires": { "fs.realpath": "1.0.0", "inflight": "1.0.6", @@ -4563,12 +4627,14 @@ "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, "requires": { "once": "1.4.0", "wrappy": "1.0.2" @@ -4577,19 +4643,22 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true } } }, "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, "requires": { "brace-expansion": "1.1.8" }, @@ -4598,6 +4667,7 @@ "version": "1.1.8", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, "requires": { "balanced-match": "1.0.0", "concat-map": "0.0.1" @@ -4606,12 +4676,14 @@ "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true } } } @@ -4621,6 +4693,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, "requires": { "wrappy": "1.0.2" }, @@ -4628,14 +4701,16 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true } } }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true } } } @@ -4647,6 +4722,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, "requires": { "esutils": "2.0.2" } @@ -4655,6 +4731,7 @@ "version": "3.6.0", "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz", "integrity": "sha512-fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==", + "dev": true, "requires": { "end-of-stream": "1.4.1", "inherits": "2.0.3", @@ -4666,6 +4743,7 @@ "version": "1.4.1", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "dev": true, "requires": { "once": "1.4.0" } @@ -4674,6 +4752,7 @@ "version": "1.12.0", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz", "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==", + "dev": true, "requires": { "es-to-primitive": "1.1.1", "function-bind": "1.1.1", @@ -4686,6 +4765,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", + "dev": true, "requires": { "is-callable": "1.1.4", "is-date-object": "1.0.1", @@ -4695,17 +4775,20 @@ "es6-promise": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz", - "integrity": "sha1-lu258v2wGZWCKyY92KratnSBgbw=" + "integrity": "sha1-lu258v2wGZWCKyY92KratnSBgbw=", + "dev": true }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true }, "eslint": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-5.3.0.tgz", "integrity": "sha512-N/tCqlMKkyNvAvLu+zI9AqDasnSLt00K+Hu8kdsERliC9jYEc8ck12XtjvOXrBKu8fK6RrBcN9bat6Xk++9jAg==", + "dev": true, "requires": { "ajv": "6.5.2", "babel-code-frame": "6.26.0", @@ -4752,6 +4835,7 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "dev": true, "requires": { "ansi-styles": "3.2.1", "escape-string-regexp": "1.0.5", @@ -4761,7 +4845,8 @@ "lodash": { "version": "4.17.10", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true } } }, @@ -4831,6 +4916,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz", "integrity": "sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==", + "dev": true, "requires": { "esrecurse": "4.2.1", "estraverse": "4.1.1" @@ -4839,17 +4925,20 @@ "eslint-utils": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz", - "integrity": "sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==" + "integrity": "sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==", + "dev": true }, "eslint-visitor-keys": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", - "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==" + "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==", + "dev": true }, "espree": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/espree/-/espree-4.0.0.tgz", "integrity": "sha512-kapdTCt1bjmspxStVKX6huolXVV5ZfyZguY1lcfhVVZstce3bqxH9mcLzNn3/mlgW6wQ732+0fuG9v7h0ZQoKg==", + "dev": true, "requires": { "acorn": "5.7.1", "acorn-jsx": "4.1.1" @@ -4858,12 +4947,14 @@ "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true }, "esquery": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", + "dev": true, "requires": { "estraverse": "4.1.1" } @@ -4872,6 +4963,7 @@ "version": "4.2.1", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "dev": true, "requires": { "estraverse": "4.1.1" } @@ -4879,17 +4971,20 @@ "estraverse": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.1.1.tgz", - "integrity": "sha1-9srKcokzqFDvkGYdDheYK6RxEaI=" + "integrity": "sha1-9srKcokzqFDvkGYdDheYK6RxEaI=", + "dev": true }, "esutils": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true }, "expand-brackets": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "dev": true, "requires": { "is-posix-bracket": "0.1.1" } @@ -4898,6 +4993,7 @@ "version": "1.8.2", "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "dev": true, "requires": { "fill-range": "2.2.4" } @@ -4905,7 +5001,8 @@ "extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true }, "extend-shallow": { "version": "1.1.4", @@ -4920,6 +5017,7 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", + "dev": true, "requires": { "chardet": "0.4.2", "iconv-lite": "0.4.23", @@ -4930,6 +5028,7 @@ "version": "0.3.2", "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "dev": true, "requires": { "is-extglob": "1.0.0" }, @@ -4937,29 +5036,34 @@ "is-extglob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true } } }, "fast-deep-equal": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "dev": true }, "fast-json-stable-stringify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "dev": true }, "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true }, "figures": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, "requires": { "escape-string-regexp": "1.0.5" } @@ -4968,6 +5072,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=", + "dev": true, "requires": { "flat-cache": "1.3.0", "object-assign": "4.1.1" @@ -4976,12 +5081,14 @@ "filename-regex": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=" + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", + "dev": true }, "fill-range": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "dev": true, "requires": { "is-number": "2.1.0", "isobject": "2.1.0", @@ -4993,12 +5100,14 @@ "first-chunk-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", - "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=" + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=", + "dev": true }, "flat-cache": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz", "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=", + "dev": true, "requires": { "circular-json": "0.3.3", "del": "2.0.2", @@ -5009,12 +5118,14 @@ "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true }, "for-own": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "dev": true, "requires": { "for-in": "1.0.2" } @@ -5022,7 +5133,8 @@ "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true }, "fsevents": { "version": "1.2.4", @@ -5622,17 +5734,20 @@ "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, "functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true }, "gift": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/gift/-/gift-0.6.1.tgz", "integrity": "sha1-wWmOa2iHFk7ZeKAQlUI8/2W4558=", + "dev": true, "requires": { "underscore": "1.9.1" } @@ -5641,6 +5756,7 @@ "version": "7.1.2", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, "requires": { "fs.realpath": "1.0.0", "inflight": "1.0.6", @@ -5654,6 +5770,7 @@ "version": "0.3.0", "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "dev": true, "requires": { "glob-parent": "2.0.0", "is-glob": "2.0.1" @@ -5663,6 +5780,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true, "requires": { "is-glob": "2.0.1" } @@ -5670,12 +5788,14 @@ "is-extglob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true }, "is-glob": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, "requires": { "is-extglob": "1.0.0" } @@ -5686,6 +5806,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, "requires": { "is-glob": "3.1.0", "path-dirname": "1.0.2" @@ -5695,6 +5816,7 @@ "version": "5.3.5", "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz", "integrity": "sha1-pVZlqajM3EGRWofHAeMtTgFvrSI=", + "dev": true, "requires": { "extend": "3.0.2", "glob": "5.0.15", @@ -5710,6 +5832,7 @@ "version": "5.0.15", "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "dev": true, "requires": { "inflight": "1.0.6", "inherits": "2.0.3", @@ -5721,12 +5844,14 @@ "isarray": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true }, "readable-stream": { "version": "1.0.34", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, "requires": { "core-util-is": "1.0.2", "inherits": "2.0.3", @@ -5737,12 +5862,14 @@ "string_decoder": { "version": "0.10.31", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true }, "through2": { "version": "0.6.5", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "dev": true, "requires": { "readable-stream": "1.0.34", "xtend": "4.0.1" @@ -5753,12 +5880,14 @@ "globals": { "version": "11.7.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.7.0.tgz", - "integrity": "sha512-K8BNSPySfeShBQXsahYB/AbbWruVOTyVpgoIDnl8odPpeSfP2J5QO2oLFFdl2j7GfDCtZj2bMKar2T49itTPCg==" + "integrity": "sha512-K8BNSPySfeShBQXsahYB/AbbWruVOTyVpgoIDnl8odPpeSfP2J5QO2oLFFdl2j7GfDCtZj2bMKar2T49itTPCg==", + "dev": true }, "graceful-fs": { "version": "4.1.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true }, "gulp": { "version": "3.9.1", @@ -10486,6 +10615,7 @@ "version": "0.5.4", "resolved": "https://registry.npmjs.org/gulp-gh-pages/-/gulp-gh-pages-0.5.4.tgz", "integrity": "sha1-pnMspHWrm1pTJTwcJHNMQMIbZUY=", + "dev": true, "requires": { "gift": "0.6.1", "gulp-util": "3.0.8", @@ -13359,6 +13489,7 @@ "version": "1.6.0", "resolved": "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz", "integrity": "sha1-uG/zSdgBzrVuHZ59x7vLS33uYAw=", + "dev": true, "requires": { "convert-source-map": "1.5.0", "graceful-fs": "4.1.11", @@ -13370,17 +13501,20 @@ "convert-source-map": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz", - "integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=" + "integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=", + "dev": true }, "graceful-fs": { "version": "4.1.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true }, "strip-bom": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, "requires": { "is-utf8": "0.2.1" }, @@ -13388,7 +13522,8 @@ "is-utf8": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true } } }, @@ -13396,6 +13531,7 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, "requires": { "readable-stream": "2.3.3", "xtend": "4.0.1" @@ -13405,6 +13541,7 @@ "version": "2.3.3", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, "requires": { "core-util-is": "1.0.2", "inherits": "2.0.3", @@ -13418,32 +13555,38 @@ "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true }, "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true }, "process-nextick-args": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true }, "safe-buffer": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=" + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true }, "string_decoder": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, "requires": { "safe-buffer": "5.1.1" } @@ -13451,14 +13594,16 @@ "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true } } }, "xtend": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true } } }, @@ -13466,6 +13611,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "dev": true, "requires": { "clone": "1.0.2", "clone-stats": "0.0.1", @@ -13475,17 +13621,20 @@ "clone": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", - "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=" + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=", + "dev": true }, "clone-stats": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", - "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true }, "replace-ext": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", - "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true } } } @@ -14813,6 +14962,7 @@ "version": "3.0.8", "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=", + "dev": true, "requires": { "array-differ": "1.0.0", "array-uniq": "1.0.3", @@ -14837,27 +14987,32 @@ "array-differ": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", - "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=" + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", + "dev": true }, "array-uniq": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true }, "beeper": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", - "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=" + "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=", + "dev": true }, "dateformat": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.0.0.tgz", - "integrity": "sha1-J0Pjq7XD/CRi5SfcpEXgTp9N7hc=" + "integrity": "sha1-J0Pjq7XD/CRi5SfcpEXgTp9N7hc=", + "dev": true }, "fancy-log": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.0.tgz", "integrity": "sha1-Rb4X0Cu5kX1gzP/UmVyZnmyMmUg=", + "dev": true, "requires": { "chalk": "1.1.3", "time-stamp": "1.1.0" @@ -14866,7 +15021,8 @@ "time-stamp": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", - "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" + "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", + "dev": true } } }, @@ -14874,6 +15030,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", + "dev": true, "requires": { "glogg": "1.0.0" }, @@ -14882,6 +15039,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz", "integrity": "sha1-f+DxmfV6yQbPUS/urY+Q7kooT8U=", + "dev": true, "requires": { "sparkles": "1.0.0" }, @@ -14889,7 +15047,8 @@ "sparkles": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz", - "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=" + "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=", + "dev": true } } } @@ -14899,6 +15058,7 @@ "version": "0.1.0", "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=", + "dev": true, "requires": { "sparkles": "1.0.0" }, @@ -14906,29 +15066,34 @@ "sparkles": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz", - "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=" + "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=", + "dev": true } } }, "lodash._reescape": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", - "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=" + "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=", + "dev": true }, "lodash._reevaluate": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", - "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=" + "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=", + "dev": true }, "lodash._reinterpolate": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", + "dev": true }, "lodash.template": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=", + "dev": true, "requires": { "lodash._basecopy": "3.0.1", "lodash._basetostring": "3.0.1", @@ -14944,27 +15109,32 @@ "lodash._basecopy": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", - "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=" + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", + "dev": true }, "lodash._basetostring": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", - "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=" + "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=", + "dev": true }, "lodash._basevalues": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", - "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=" + "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=", + "dev": true }, "lodash._isiterateecall": { "version": "3.0.9", "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", - "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=" + "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", + "dev": true }, "lodash.escape": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=", + "dev": true, "requires": { "lodash._root": "3.0.1" }, @@ -14972,7 +15142,8 @@ "lodash._root": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", - "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=" + "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=", + "dev": true } } }, @@ -14980,6 +15151,7 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "dev": true, "requires": { "lodash._getnative": "3.9.1", "lodash.isarguments": "3.1.0", @@ -14989,29 +15161,34 @@ "lodash._getnative": { "version": "3.9.1", "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", - "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", + "dev": true }, "lodash.isarguments": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true }, "lodash.isarray": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", - "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true } } }, "lodash.restparam": { "version": "3.6.1", "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", - "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=" + "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", + "dev": true }, "lodash.templatesettings": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=", + "dev": true, "requires": { "lodash._reinterpolate": "3.0.0", "lodash.escape": "3.2.0" @@ -15022,12 +15199,14 @@ "minimist": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true }, "multipipe": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=", + "dev": true, "requires": { "duplexer2": "0.0.2" }, @@ -15036,6 +15215,7 @@ "version": "0.0.2", "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", + "dev": true, "requires": { "readable-stream": "1.1.14" }, @@ -15044,6 +15224,7 @@ "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, "requires": { "core-util-is": "1.0.2", "inherits": "2.0.3", @@ -15054,22 +15235,26 @@ "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true }, "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true }, "isarray": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true }, "string_decoder": { "version": "0.10.31", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true } } } @@ -15080,17 +15265,20 @@ "object-assign": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=" + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", + "dev": true }, "replace-ext": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", - "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true }, "through2": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, "requires": { "readable-stream": "2.3.3", "xtend": "4.0.1" @@ -15100,6 +15288,7 @@ "version": "2.3.3", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", + "dev": true, "requires": { "core-util-is": "1.0.2", "inherits": "2.0.3", @@ -15113,32 +15302,38 @@ "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true }, "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true }, "process-nextick-args": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true }, "safe-buffer": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=" + "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", + "dev": true }, "string_decoder": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "dev": true, "requires": { "safe-buffer": "5.1.1" } @@ -15146,14 +15341,16 @@ "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true } } }, "xtend": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true } } }, @@ -15161,6 +15358,7 @@ "version": "0.5.3", "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=", + "dev": true, "requires": { "clone": "1.0.2", "clone-stats": "0.0.1", @@ -15170,12 +15368,14 @@ "clone": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", - "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=" + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=", + "dev": true }, "clone-stats": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", - "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true } } } @@ -15185,6 +15385,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, "requires": { "function-bind": "1.1.1" } @@ -15192,12 +15393,14 @@ "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true }, "has-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", - "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", + "dev": true }, "http-proxy-middleware": { "version": "0.9.1", @@ -15619,6 +15822,7 @@ "version": "0.4.23", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "dev": true, "requires": { "safer-buffer": "2.1.2" } @@ -15626,17 +15830,20 @@ "ignore": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, "requires": { "once": "1.4.0", "wrappy": "1.0.2" @@ -15645,12 +15852,14 @@ "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true }, "inquirer": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-5.2.0.tgz", "integrity": "sha512-E9BmnJbAKLPGonz0HeWHtbKf+EeSP93paWO3ZYoUpq/aowXvYGjjCSuashhXPpzbArIjBbji39THkxTz9ZeEUQ==", + "dev": true, "requires": { "ansi-escapes": "3.1.0", "chalk": "2.4.1", @@ -15671,6 +15880,7 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "dev": true, "requires": { "ansi-styles": "3.2.1", "escape-string-regexp": "1.0.5", @@ -15680,34 +15890,40 @@ "lodash": { "version": "4.17.10", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true } } }, "is-buffer": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true }, "is-callable": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", - "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==" + "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", + "dev": true }, "is-date-object": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", - "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", + "dev": true }, "is-dotfile": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=" + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", + "dev": true }, "is-equal-shallow": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "dev": true, "requires": { "is-primitive": "2.0.0" } @@ -15715,22 +15931,26 @@ "is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true }, "is-glob": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, "requires": { "is-extglob": "2.1.1" } @@ -15739,6 +15959,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "dev": true, "requires": { "kind-of": "3.2.2" }, @@ -15747,6 +15968,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "1.1.6" } @@ -15756,22 +15978,26 @@ "is-posix-bracket": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=" + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", + "dev": true }, "is-primitive": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=" + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", + "dev": true }, "is-promise": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", + "dev": true }, "is-regex": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "dev": true, "requires": { "has": "1.0.3" } @@ -15779,42 +16005,50 @@ "is-resolvable": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true }, "is-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true }, "is-symbol": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", - "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=" + "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=", + "dev": true }, "is-utf8": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true }, "is-valid-glob": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz", - "integrity": "sha1-1LVcafUYhvm2XHDWwmItN+KfSP4=" + "integrity": "sha1-1LVcafUYhvm2XHDWwmItN+KfSP4=", + "dev": true }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true }, "isobject": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, "requires": { "isarray": "1.0.0" } @@ -15822,12 +16056,14 @@ "js-tokens": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "dev": true }, "js-yaml": { "version": "3.12.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==", + "dev": true, "requires": { "argparse": "1.0.10", "esprima": "4.0.1" @@ -15836,12 +16072,14 @@ "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true }, "json-stable-stringify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true, "requires": { "jsonify": "0.0.0" } @@ -15849,12 +16087,14 @@ "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true }, "jsonify": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", - "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true }, "karma": { "version": "0.13.22", @@ -18740,6 +18980,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", + "dev": true, "requires": { "readable-stream": "2.3.6" } @@ -18748,6 +18989,7 @@ "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, "requires": { "prelude-ls": "1.1.2", "type-check": "0.3.2" @@ -18762,7 +19004,8 @@ "lodash.isequal": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=", + "dev": true }, "main-bower-files": { "version": "2.9.0", @@ -19643,12 +19886,14 @@ "math-random": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz", - "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=" + "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=", + "dev": true }, "merge-stream": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", + "dev": true, "requires": { "readable-stream": "2.3.6" } @@ -19657,6 +19902,7 @@ "version": "2.3.11", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "dev": true, "requires": { "arr-diff": "2.0.0", "array-unique": "0.2.1", @@ -19677,6 +19923,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "dev": true, "requires": { "arr-flatten": "1.1.0" } @@ -19684,12 +19931,14 @@ "is-extglob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true }, "is-glob": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, "requires": { "is-extglob": "1.0.0" } @@ -19698,6 +19947,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "1.1.6" } @@ -19707,12 +19957,14 @@ "mimic-fn": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, "requires": { "brace-expansion": "1.1.11" } @@ -19720,12 +19972,14 @@ "minimist": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, "requires": { "minimist": "0.0.8" } @@ -19733,12 +19987,14 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true }, "mute-stream": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=" + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true }, "nan": { "version": "2.10.0", @@ -19750,7 +20006,8 @@ "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true }, "ng-annotate-loader": { "version": "0.0.10", @@ -19949,12 +20206,14 @@ "nice-try": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz", - "integrity": "sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA==" + "integrity": "sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA==", + "dev": true }, "normalize-path": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, "requires": { "remove-trailing-separator": "1.1.0" } @@ -19962,17 +20221,20 @@ "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true }, "object-keys": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz", - "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==" + "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==", + "dev": true }, "object.omit": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "dev": true, "requires": { "for-own": "0.1.5", "is-extendable": "0.1.1" @@ -19982,6 +20244,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, "requires": { "wrappy": "1.0.2" } @@ -19990,6 +20253,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, "requires": { "mimic-fn": "1.2.0" } @@ -19998,6 +20262,7 @@ "version": "0.8.2", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "dev": true, "requires": { "deep-is": "0.1.3", "fast-levenshtein": "2.0.6", @@ -20011,6 +20276,7 @@ "version": "0.3.0", "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz", "integrity": "sha1-cTfmmzKYuzQiR6G77jiByA4v14s=", + "dev": true, "requires": { "is-stream": "1.1.0", "readable-stream": "2.3.6" @@ -20019,12 +20285,14 @@ "os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true }, "parse-glob": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "dev": true, "requires": { "glob-base": "0.3.0", "is-dotfile": "1.0.3", @@ -20035,12 +20303,14 @@ "is-extglob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true }, "is-glob": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, "requires": { "is-extglob": "1.0.0" } @@ -20050,22 +20320,26 @@ "path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true }, "path-is-inside": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true }, "path-key": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true }, "phantomjs": { "version": "1.9.20", @@ -20992,37 +21266,44 @@ "pluralize": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", - "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==" + "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==", + "dev": true }, "prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true }, "preserve": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", + "dev": true }, "process-nextick-args": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true }, "progress": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz", - "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=" + "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=", + "dev": true }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true }, "randomatic": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz", "integrity": "sha512-KnGPVE0lo2WoXxIZ7cPR8YBpiol4gsSuOwDSg410oHh80ZMp5EiypNqL2K4Z77vJn6lB5rap7IkAmcUlalcnBQ==", + "dev": true, "requires": { "is-number": "4.0.0", "kind-of": "6.0.2", @@ -21032,12 +21313,14 @@ "is-number": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true }, "kind-of": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true } } }, @@ -21045,6 +21328,7 @@ "version": "2.3.6", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, "requires": { "core-util-is": "1.0.2", "inherits": "2.0.3", @@ -21059,6 +21343,7 @@ "version": "0.4.4", "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", + "dev": true, "requires": { "is-equal-shallow": "0.1.3" } @@ -21067,6 +21352,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz", "integrity": "sha512-ztaw4M1VqgMwl9HlPpOuiYgItcHlunW0He2fE6eNfT6E/CF2FtYi9ofOYe4mKntstYk0Fyh/rDRBdS3AnxjlrA==", + "dev": true, "requires": { "define-properties": "1.1.3" } @@ -21074,32 +21360,38 @@ "regexpp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.0.tgz", - "integrity": "sha512-g2FAVtR8Uh8GO1Nv5wpxW7VFVwHcCEr4wyA8/MHiRkO8uHoR5ntAA8Uq3P1vvMTX/BeQiRVSpDGLd+Wn5HNOTA==" + "integrity": "sha512-g2FAVtR8Uh8GO1Nv5wpxW7VFVwHcCEr4wyA8/MHiRkO8uHoR5ntAA8Uq3P1vvMTX/BeQiRVSpDGLd+Wn5HNOTA==", + "dev": true }, "remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true }, "repeat-element": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", - "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=" + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "dev": true }, "repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true }, "replace-ext": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", - "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true }, "require-uncached": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", + "dev": true, "requires": { "caller-path": "0.1.0", "resolve-from": "1.0.1" @@ -21108,12 +21400,14 @@ "resolve-from": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", - "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=" + "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=", + "dev": true }, "restore-cursor": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, "requires": { "onetime": "2.0.1", "signal-exit": "3.0.2" @@ -21123,6 +21417,7 @@ "version": "2.6.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "dev": true, "requires": { "glob": "7.1.2" } @@ -21131,6 +21426,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", + "dev": true, "requires": { "is-promise": "2.1.0" } @@ -21139,6 +21435,7 @@ "version": "5.5.11", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.11.tgz", "integrity": "sha512-3bjO7UwWfA2CV7lmwYMBzj4fQ6Cq+ftHc2MvUe+WMS7wcdJ1LosDWmdjPQanYp2dBRj572p7PeU81JUxHKOcBA==", + "dev": true, "requires": { "symbol-observable": "1.0.1" } @@ -21146,22 +21443,26 @@ "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true }, "semver": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "dev": true }, "shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, "requires": { "shebang-regex": "1.0.0" } @@ -21169,17 +21470,20 @@ "shebang-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true }, "signal-exit": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true }, "slice-ansi": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz", "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==", + "dev": true, "requires": { "is-fullwidth-code-point": "2.0.0" } @@ -21187,17 +21491,20 @@ "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true }, "stream-shift": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", - "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" + "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", + "dev": true }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, "requires": { "is-fullwidth-code-point": "2.0.0", "strip-ansi": "4.0.0" @@ -21207,6 +21514,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-2.0.0.tgz", "integrity": "sha512-WoZ+B2ypng1dp4iFLF2kmZlwwlE19gmjgKuhL1FJfDgCREWb3ye3SDVHSzLH6bxfnvYmkCxbzkmWcQZHA4P//Q==", + "dev": true, "requires": { "define-properties": "1.1.3", "es-abstract": "1.12.0", @@ -21219,6 +21527,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, "requires": { "safe-buffer": "5.1.2" } @@ -21227,6 +21536,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, "requires": { "ansi-regex": "3.0.0" } @@ -21235,6 +21545,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, "requires": { "is-utf8": "0.2.1" } @@ -21243,6 +21554,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz", "integrity": "sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4=", + "dev": true, "requires": { "first-chunk-stream": "1.0.0", "strip-bom": "2.0.0" @@ -21251,12 +21563,14 @@ "strip-json-comments": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true }, "supports-color": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", + "dev": true, "requires": { "has-flag": "3.0.0" } @@ -21264,12 +21578,14 @@ "symbol-observable": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz", - "integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=" + "integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=", + "dev": true }, "table": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/table/-/table-4.0.3.tgz", "integrity": "sha512-S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==", + "dev": true, "requires": { "ajv": "6.5.2", "ajv-keywords": "3.2.0", @@ -21283,6 +21599,7 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "dev": true, "requires": { "ansi-styles": "3.2.1", "escape-string-regexp": "1.0.5", @@ -21292,24 +21609,28 @@ "lodash": { "version": "4.17.10", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true } } }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true }, "through2": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, "requires": { "readable-stream": "2.3.6", "xtend": "4.0.1" @@ -21319,6 +21640,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz", "integrity": "sha1-YLxVoNrLdghdsfna6Zq0P4PWIuw=", + "dev": true, "requires": { "through2": "2.0.3", "xtend": "4.0.1" @@ -21328,6 +21650,7 @@ "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, "requires": { "os-tmpdir": "1.0.2" } @@ -21336,6 +21659,7 @@ "version": "0.1.1", "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz", "integrity": "sha1-HN+kcqnvUMI57maZm2YsoOs5k38=", + "dev": true, "requires": { "extend-shallow": "2.0.1" }, @@ -21344,6 +21668,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "0.1.1" } @@ -21354,6 +21679,7 @@ "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, "requires": { "prelude-ls": "1.1.2" } @@ -21367,12 +21693,14 @@ "underscore": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", - "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" + "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==", + "dev": true }, "unique-stream": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz", "integrity": "sha1-WqADz76Uxf+GbE59ZouxxNuts2k=", + "dev": true, "requires": { "json-stable-stringify": "1.0.1", "through2-filter": "2.0.0" @@ -21382,6 +21710,7 @@ "version": "4.2.2", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "dev": true, "requires": { "punycode": "2.1.1" } @@ -21409,17 +21738,20 @@ "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true }, "vali-date": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz", - "integrity": "sha1-G5BKWWCfsyjvB4E4Qgk09rhnCaY=" + "integrity": "sha1-G5BKWWCfsyjvB4E4Qgk09rhnCaY=", + "dev": true }, "vinyl": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "dev": true, "requires": { "clone": "1.0.4", "clone-stats": "0.0.1", @@ -21430,6 +21762,7 @@ "version": "2.4.4", "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz", "integrity": "sha1-vm/zJwy1Xf19MGNkDegfJddTIjk=", + "dev": true, "requires": { "duplexify": "3.6.0", "glob-stream": "5.3.5", @@ -23113,6 +23446,7 @@ "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, "requires": { "isexe": "2.0.0" } @@ -23424,12 +23758,14 @@ "wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true }, "wrap-promise": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wrap-promise/-/wrap-promise-1.0.1.tgz", "integrity": "sha1-sBn0I2zL8ftWCSG0tIcLe9ovUlU=", + "dev": true, "requires": { "es6-promise": "2.3.0" } @@ -23437,7 +23773,8 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true }, "wrench": { "version": "1.5.9", @@ -23449,6 +23786,7 @@ "version": "0.2.1", "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", + "dev": true, "requires": { "mkdirp": "0.5.1" } @@ -23456,7 +23794,8 @@ "xtend": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true } } } From c59f9a3de335608c0d4611a3992b97ba8186d853 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Fri, 17 Aug 2018 16:09:12 -0600 Subject: [PATCH 12/24] Add new marclab data as default. --- src/assets/mock/defaultMarclab.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assets/mock/defaultMarclab.json b/src/assets/mock/defaultMarclab.json index 7fe858d..4612704 100644 --- a/src/assets/mock/defaultMarclab.json +++ b/src/assets/mock/defaultMarclab.json @@ -1 +1 @@ -{"query":{"availableNumHops":[1,2,3],"selectedNumHops":2,"edges":[[{"text":"* (wildcard)","attribute":"*","name":"*"}],[{"text":"* (wildcard)","attribute":"*","name":"*"}]],"nodes":[[{"attribute":"label","value":"CBb3n","text":"CBb3n (label)"},{"attribute":"label","value":"CBb5","text":"CBb5 (label)"},{"attribute":"label","value":"CBb4w","text":"CBb4w (label)"},{"attribute":"label","value":"CBb4","text":"CBb4 (label)"}],[{"attribute":"label","value":"AC","text":"AC (label)"},{"attribute":"label","value":"AC OFF","text":"AC OFF (label)"},{"attribute":"label","value":"AC ON","text":"AC ON (label)"},{"attribute":"label","value":"YAC","text":"YAC (label)"},{"attribute":"label","value":"YAC Ai","text":"YAC Ai (label)"},{"attribute":"label","value":"YAC OFF","text":"YAC OFF (label)"}],[{"attribute":"label","value":"Rod BC","text":"Rod BC (label)"}]],"keys":["Start","Node","End"]},"matrix":{"source_ids":[6153,2610,410,324,321,309,307,299,284,223,276,286,332,4835,7157,30102],"matrix":[[[[6153,795,223]],[[6153,866,284]]],[[[2610,794,223]],[]],[[[410,792,223]],[]],[[[324,787,223]],[[324,857,284]]],[[[321,786,223]],[[321,854,284]]],[[[309,784,223]],[[309,853,284]]],[[[307,782,223]],[]],[[[299,779,223]],[]],[[[284,778,223]],[]],[[],[[223,777,284]]],[[],[[276,809,284]]],[[],[[286,850,284]]],[[],[[332,860,284]]],[[],[[4835,862,284]]],[[],[[7157,871,284]]],[[],[[30102,872,284]]]],"target_ids":[223,284]},"graph":{"nodes":[{"HullArea":576074887.998755,"StructureID":284,"ID":284,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(284L)","Label":"GAC Aii"},{"HullArea":18405197.9158806,"StructureID":30102,"ID":30102,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(30102L)","Label":"CBb4w"},{"HullArea":271322411.380455,"StructureID":276,"ID":276,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(276L)","Label":"CBb6"},{"HullArea":463507549.086105,"StructureID":332,"ID":332,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(332L)","Label":"CBb5"},{"HullArea":727909185.079524,"StructureID":410,"ID":410,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(410L)","Label":"GAC Aii"},{"HullArea":127564659.372802,"StructureID":299,"ID":299,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(299L)","Label":"CBb3n"},{"HullArea":744336029.285149,"StructureID":6153,"ID":6153,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(6153L)","Label":"GAC Aii"},{"HullArea":256364716.284775,"StructureID":307,"ID":307,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(307L)","Label":"CBb4w"},{"HullArea":735293612.358319,"StructureID":7157,"ID":7157,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(7157L)","Label":"GAC Aii"},{"HullArea":244061675.180231,"StructureID":309,"ID":309,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(309L)","Label":"CBb6"},{"HullArea":400934415.859849,"StructureID":324,"ID":324,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(324L)","Label":"CBb4w"},{"HullArea":285587564.527793,"StructureID":286,"ID":286,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(286L)","Label":"CBb5"},{"HullArea":321651156.940365,"StructureID":223,"ID":223,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(223L)","Label":"GAC Aii"},{"HullArea":867692614.832515,"StructureID":4835,"ID":4835,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(4835L)","Label":"GAC Aii"},{"HullArea":823912058.921718,"StructureID":2610,"ID":2610,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(2610L)","Label":"GAC Aii"},{"HullArea":228148237.674384,"StructureID":321,"ID":321,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(321L)","Label":"CBb3n"}],"edges":[{"TargetSizes":[31308.9451626985],"SourceID":4835,"Type":"Gap Junction","SourceSizes":[26064.3596520369],"LinkedStructures":" 29608 -> 29607\r","SourceStructureID":4835,"TargetID":284,"TargetStructureID":284,"ID":862},{"TargetSizes":[92714.5787032651,94778.8895688309],"SourceID":332,"Type":"Gap Junction","SourceSizes":[102694.599118224,94778.6885692744],"LinkedStructures":" 29526 -> 29525\r 95191 -> 95192\r","SourceStructureID":332,"TargetID":284,"TargetStructureID":284,"ID":860},{"TargetSizes":[21385.7201776529,46696.3391731195,34330.6867499462,34811.0494588163],"SourceID":223,"Type":"Gap Junction","SourceSizes":[21385.7258684296,46696.3433984048,17845.0476349797,31968.7669197468],"LinkedStructures":" 17519 -> 17518\r 17520 -> 14350\r 17521 -> 17419\r 131778 -> 131779\r","SourceStructureID":223,"TargetID":284,"TargetStructureID":284,"ID":777},{"TargetSizes":[30546.5523795957],"SourceID":321,"Type":"Gap Junction","SourceSizes":[30546.5471076884],"LinkedStructures":" 115571 -> 115570\r","SourceStructureID":321,"TargetID":223,"TargetStructureID":223,"ID":786},{"TargetSizes":[52312.3204382367],"SourceID":309,"Type":"Gap Junction","SourceSizes":[52312.3134450583],"LinkedStructures":" 122310 -> 122309\r","SourceStructureID":309,"TargetID":223,"TargetStructureID":223,"ID":784},{"TargetSizes":[172098.42643885,17366.1563281033,98779.588232117],"SourceID":276,"Type":"Gap Junction","SourceSizes":[172098.424497736,17366.1454550044,98779.5319400795],"LinkedStructures":" 29537 -> 29536\r 122164 -> 122165\r 122166 -> 29530\r","SourceStructureID":276,"TargetID":284,"TargetStructureID":284,"ID":809},{"TargetSizes":[57413.7025226681,85659.3280315424,176580.900808767,138523.448468204,145646.142329139,216392.996071871],"SourceID":6153,"Type":"Gap Junction","SourceSizes":[57413.869834994,85659.3459911782,176580.830122334,106698.829172662,159160.355322978,174244.84155422],"LinkedStructures":" 17455 -> 17454\r 17463 -> 17462\r 17509 -> 14371\r 17510 -> 14369\r 29498 -> 29479\r 29542 -> 29520\r","SourceStructureID":6153,"TargetID":284,"TargetStructureID":284,"ID":866},{"TargetSizes":[177809.420896753],"SourceID":299,"Type":"Gap Junction","SourceSizes":[175167.507818716],"LinkedStructures":" 47093 -> 17659\r","SourceStructureID":299,"TargetID":223,"TargetStructureID":223,"ID":779},{"TargetSizes":[48426.7433090414,506800.470705722,197795.733557926,92457.3147050307,21053.4513018711,46564.8591139168],"SourceID":410,"Type":"Gap Junction","SourceSizes":[40201.2606670532,506800.219079308,197795.71473937,25213.6773722743,21053.4434689604,46564.8848077924],"LinkedStructures":" 14347 -> 14346\r 17661 -> 17660\r 17665 -> 9225\r 18373 -> 17818\r 18378 -> 18377\r 18543 -> 18542\r","SourceStructureID":410,"TargetID":223,"TargetStructureID":223,"ID":792},{"TargetSizes":[21385.7201776529,46696.3391731195,34330.6867499462,34811.0494588163],"SourceID":284,"Type":"Gap Junction","SourceSizes":[21385.7258684296,46696.3433984048,17845.0476349797,31968.7669197468],"LinkedStructures":" 17519 -> 17518\r 17520 -> 14350\r 17521 -> 17419\r 131778 -> 131779\r","SourceStructureID":284,"TargetID":223,"TargetStructureID":223,"ID":778},{"TargetSizes":[102804.745571566,53885.3353329905,241808.298311656,52113.5622390643,49766.6113637178],"SourceID":286,"Type":"Gap Junction","SourceSizes":[84133.4605517574,53885.3630258788,241808.306921479,27978.1444015911,49766.6023176137],"LinkedStructures":" 29486 -> 29483\r 58621 -> 58620\r 95220 -> 26281\r 95376 -> 95369\r 95380 -> 95381\r","SourceStructureID":286,"TargetID":284,"TargetStructureID":284,"ID":850},{"TargetSizes":[91316.5396448786],"SourceID":309,"Type":"Gap Junction","SourceSizes":[91316.536002277],"LinkedStructures":" 17467 -> 13484\r","SourceStructureID":309,"TargetID":284,"TargetStructureID":284,"ID":853},{"TargetSizes":[58035.3673775968],"SourceID":324,"Type":"Gap Junction","SourceSizes":[58035.3687401047],"LinkedStructures":" 29482 -> 93910\r","SourceStructureID":324,"TargetID":284,"TargetStructureID":284,"ID":857},{"TargetSizes":[111098.009027458],"SourceID":2610,"Type":"Gap Junction","SourceSizes":[111097.974797885],"LinkedStructures":" 17673 -> 17674\r","SourceStructureID":2610,"TargetID":223,"TargetStructureID":223,"ID":794},{"TargetSizes":[53394.0123299946,36449.9981726498,42489.8980697741],"SourceID":324,"Type":"Gap Junction","SourceSizes":[53394.3894053365,36449.9870514561,42489.9040974349],"LinkedStructures":" 94219 -> 94218\r 96133 -> 96134\r 96137 -> 96136\r","SourceStructureID":324,"TargetID":223,"TargetStructureID":223,"ID":787},{"TargetSizes":[101037.155281357,127030.538626532,33135.5919843235,32428.808886887,125548.829837634,58135.6623254742,51612.4157077199,36517.8726774617,145588.257144997,16217.4536420433],"SourceID":321,"Type":"Gap Junction","SourceSizes":[101037.294459029,73485.9811481792,33135.5726649258,32428.8033198595,125548.831063086,58135.6534635232,51612.4337057643,36517.976022135,145588.025054431,16217.4465762744],"LinkedStructures":" 23038 -> 17434\r 55211 -> 29481\r 115553 -> 115552\r 115568 -> 115569\r 115572 -> 17433\r 122181 -> 122180\r 122187 -> 122184\r 122201 -> 122202\r 122213 -> 17430\r 122215 -> 122214\r","SourceStructureID":321,"TargetID":284,"TargetStructureID":284,"ID":854},{"TargetSizes":[28571.182224771],"SourceID":30102,"Type":"Gap Junction","SourceSizes":[24393.8453463491],"LinkedStructures":" 30107 -> 30106\r","SourceStructureID":30102,"TargetID":284,"TargetStructureID":284,"ID":872},{"TargetSizes":[46932.6020570212],"SourceID":307,"Type":"Gap Junction","SourceSizes":[46932.6034370312],"LinkedStructures":" 96375 -> 96374\r","SourceStructureID":307,"TargetID":223,"TargetStructureID":223,"ID":782},{"TargetSizes":[254414.758444589,29058.9834974194,27734.8741667085,41264.5754621723],"SourceID":7157,"Type":"Gap Junction","SourceSizes":[78197.6346337507,29058.9819189716,25751.0074932212,41289.3424581906],"LinkedStructures":" 29580 -> 26271\r 29586 -> 29585\r 29610 -> 29611\r 131781 -> 131780\r","SourceStructureID":7157,"TargetID":284,"TargetStructureID":284,"ID":871},{"TargetSizes":[71844.6659179404,91058.9677753185,44052.5291620448,27017.2343524332],"SourceID":6153,"Type":"Gap Junction","SourceSizes":[71844.5621025662,91058.7023309178,44052.7170467478,27017.2343524331],"LinkedStructures":" 17489 -> 17488\r 17837 -> 16621\r 29593 -> 29592\r 29599 -> 29598\r","SourceStructureID":6153,"TargetID":223,"TargetStructureID":223,"ID":795}],"edge_attributes":[{"DataType":"index","Type":"int","Unique":"true","DisplayName":"id","Name":"ID"},{"DataType":"source-index","Type":"int","Unique":"false","DisplayName":"source id","Name":"SourceID"},{"DataType":"target-index","Type":"int","Unique":"true","DisplayName":"target id","Name":"TargetID"},{"DataType":"target-index","Type":"int","Unique":"true","DisplayName":"target id","Name":"TargetID"},{"DataType":"categorical","Type":"string","Unique":"false","DisplayName":"edge type","Name":"type"},{"DataType":"string","Type":"string","Unique":"false","DisplayName":"structures","Name":"LinkedStructures"}],"node_attributes":[{"DisplayName":"id","Name":"ID","DataType":"index","DatabaseName":"id","Unique":"true","Type":"int"},{"DisplayName":"label","Name":"Label","DataType":"categorical","DatabaseName":"label","Unique":"false","Type":"string"},{"DisplayName":"structure uri","Name":"Structure","DataType":"id","DatabaseName":"structure","Unique":"true","Type":"string"},{"DisplayName":"id","Name":"StructureID","DataType":"id","DatabaseName":"id","Unique":"true","Type":"int"},{"DisplayName":"area","Name":"HullArea","DataType":"quantitative","DatabaseName":"hull","Unique":"false","Type":"float"}]}} +{"query":{"availableNumHops":[1,2,3],"selectedNumHops":2,"nodes":["CBb.*","AC","CBb.*"],"edges":["*","*"]},"matrix":{"source_ids":[6153,2610,410,324,321,309,307,299,284,223,276,286,332,4835,7157,30102],"matrix":[[[[6153,795,223]],[[6153,866,284]]],[[[2610,794,223]],[]],[[[410,792,223]],[]],[[[324,787,223]],[[324,857,284]]],[[[321,786,223]],[[321,854,284]]],[[[309,784,223]],[[309,853,284]]],[[[307,782,223]],[]],[[[299,779,223]],[]],[[[284,778,223]],[]],[[],[[223,777,284]]],[[],[[276,809,284]]],[[],[[286,850,284]]],[[],[[332,860,284]]],[[],[[4835,862,284]]],[[],[[7157,871,284]]],[[],[[30102,872,284]]]],"target_ids":[223,284]},"graph":{"nodes":[{"HullArea":576074887.998755,"StructureID":284,"ID":284,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(284L)","Label":"GAC Aii"},{"HullArea":18405197.9158806,"StructureID":30102,"ID":30102,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(30102L)","Label":"CBb4w"},{"HullArea":271322411.380455,"StructureID":276,"ID":276,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(276L)","Label":"CBb6"},{"HullArea":463507549.086105,"StructureID":332,"ID":332,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(332L)","Label":"CBb5"},{"HullArea":727909185.079524,"StructureID":410,"ID":410,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(410L)","Label":"GAC Aii"},{"HullArea":127564659.372802,"StructureID":299,"ID":299,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(299L)","Label":"CBb3n"},{"HullArea":744336029.285149,"StructureID":6153,"ID":6153,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(6153L)","Label":"GAC Aii"},{"HullArea":256364716.284775,"StructureID":307,"ID":307,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(307L)","Label":"CBb4w"},{"HullArea":735293612.358319,"StructureID":7157,"ID":7157,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(7157L)","Label":"GAC Aii"},{"HullArea":244061675.180231,"StructureID":309,"ID":309,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(309L)","Label":"CBb6"},{"HullArea":400934415.859849,"StructureID":324,"ID":324,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(324L)","Label":"CBb4w"},{"HullArea":285587564.527793,"StructureID":286,"ID":286,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(286L)","Label":"CBb5"},{"HullArea":321651156.940365,"StructureID":223,"ID":223,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(223L)","Label":"GAC Aii"},{"HullArea":867692614.832515,"StructureID":4835,"ID":4835,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(4835L)","Label":"GAC Aii"},{"HullArea":823912058.921718,"StructureID":2610,"ID":2610,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(2610L)","Label":"GAC Aii"},{"HullArea":228148237.674384,"StructureID":321,"ID":321,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(321L)","Label":"CBb3n"}],"edges":[{"TargetSizes":[31308.9451626985],"SourceID":4835,"Type":"Gap Junction","SourceSizes":[26064.3596520369],"LinkedStructures":" 29608 -> 29607\r","SourceStructureID":4835,"TargetID":284,"TargetStructureID":284,"ID":862},{"TargetSizes":[92714.5787032651,94778.8895688309],"SourceID":332,"Type":"Gap Junction","SourceSizes":[102694.599118224,94778.6885692744],"LinkedStructures":" 29526 -> 29525\r 95191 -> 95192\r","SourceStructureID":332,"TargetID":284,"TargetStructureID":284,"ID":860},{"TargetSizes":[21385.7201776529,46696.3391731195,34330.6867499462,34811.0494588163],"SourceID":223,"Type":"Gap Junction","SourceSizes":[21385.7258684296,46696.3433984048,17845.0476349797,31968.7669197468],"LinkedStructures":" 17519 -> 17518\r 17520 -> 14350\r 17521 -> 17419\r 131778 -> 131779\r","SourceStructureID":223,"TargetID":284,"TargetStructureID":284,"ID":777},{"TargetSizes":[30546.5523795957],"SourceID":321,"Type":"Gap Junction","SourceSizes":[30546.5471076884],"LinkedStructures":" 115571 -> 115570\r","SourceStructureID":321,"TargetID":223,"TargetStructureID":223,"ID":786},{"TargetSizes":[52312.3204382367],"SourceID":309,"Type":"Gap Junction","SourceSizes":[52312.3134450583],"LinkedStructures":" 122310 -> 122309\r","SourceStructureID":309,"TargetID":223,"TargetStructureID":223,"ID":784},{"TargetSizes":[172098.42643885,17366.1563281033,98779.588232117],"SourceID":276,"Type":"Gap Junction","SourceSizes":[172098.424497736,17366.1454550044,98779.5319400795],"LinkedStructures":" 29537 -> 29536\r 122164 -> 122165\r 122166 -> 29530\r","SourceStructureID":276,"TargetID":284,"TargetStructureID":284,"ID":809},{"TargetSizes":[57413.7025226681,85659.3280315424,176580.900808767,138523.448468204,145646.142329139,216392.996071871],"SourceID":6153,"Type":"Gap Junction","SourceSizes":[57413.869834994,85659.3459911782,176580.830122334,106698.829172662,159160.355322978,174244.84155422],"LinkedStructures":" 17455 -> 17454\r 17463 -> 17462\r 17509 -> 14371\r 17510 -> 14369\r 29498 -> 29479\r 29542 -> 29520\r","SourceStructureID":6153,"TargetID":284,"TargetStructureID":284,"ID":866},{"TargetSizes":[177809.420896753],"SourceID":299,"Type":"Gap Junction","SourceSizes":[175167.507818716],"LinkedStructures":" 47093 -> 17659\r","SourceStructureID":299,"TargetID":223,"TargetStructureID":223,"ID":779},{"TargetSizes":[48426.7433090414,506800.470705722,197795.733557926,92457.3147050307,21053.4513018711,46564.8591139168],"SourceID":410,"Type":"Gap Junction","SourceSizes":[40201.2606670532,506800.219079308,197795.71473937,25213.6773722743,21053.4434689604,46564.8848077924],"LinkedStructures":" 14347 -> 14346\r 17661 -> 17660\r 17665 -> 9225\r 18373 -> 17818\r 18378 -> 18377\r 18543 -> 18542\r","SourceStructureID":410,"TargetID":223,"TargetStructureID":223,"ID":792},{"TargetSizes":[21385.7201776529,46696.3391731195,34330.6867499462,34811.0494588163],"SourceID":284,"Type":"Gap Junction","SourceSizes":[21385.7258684296,46696.3433984048,17845.0476349797,31968.7669197468],"LinkedStructures":" 17519 -> 17518\r 17520 -> 14350\r 17521 -> 17419\r 131778 -> 131779\r","SourceStructureID":284,"TargetID":223,"TargetStructureID":223,"ID":778},{"TargetSizes":[102804.745571566,53885.3353329905,241808.298311656,52113.5622390643,49766.6113637178],"SourceID":286,"Type":"Gap Junction","SourceSizes":[84133.4605517574,53885.3630258788,241808.306921479,27978.1444015911,49766.6023176137],"LinkedStructures":" 29486 -> 29483\r 58621 -> 58620\r 95220 -> 26281\r 95376 -> 95369\r 95380 -> 95381\r","SourceStructureID":286,"TargetID":284,"TargetStructureID":284,"ID":850},{"TargetSizes":[91316.5396448786],"SourceID":309,"Type":"Gap Junction","SourceSizes":[91316.536002277],"LinkedStructures":" 17467 -> 13484\r","SourceStructureID":309,"TargetID":284,"TargetStructureID":284,"ID":853},{"TargetSizes":[58035.3673775968],"SourceID":324,"Type":"Gap Junction","SourceSizes":[58035.3687401047],"LinkedStructures":" 29482 -> 93910\r","SourceStructureID":324,"TargetID":284,"TargetStructureID":284,"ID":857},{"TargetSizes":[111098.009027458],"SourceID":2610,"Type":"Gap Junction","SourceSizes":[111097.974797885],"LinkedStructures":" 17673 -> 17674\r","SourceStructureID":2610,"TargetID":223,"TargetStructureID":223,"ID":794},{"TargetSizes":[53394.0123299946,36449.9981726498,42489.8980697741],"SourceID":324,"Type":"Gap Junction","SourceSizes":[53394.3894053365,36449.9870514561,42489.9040974349],"LinkedStructures":" 94219 -> 94218\r 96133 -> 96134\r 96137 -> 96136\r","SourceStructureID":324,"TargetID":223,"TargetStructureID":223,"ID":787},{"TargetSizes":[101037.155281357,127030.538626532,33135.5919843235,32428.808886887,125548.829837634,58135.6623254742,51612.4157077199,36517.8726774617,145588.257144997,16217.4536420433],"SourceID":321,"Type":"Gap Junction","SourceSizes":[101037.294459029,73485.9811481792,33135.5726649258,32428.8033198595,125548.831063086,58135.6534635232,51612.4337057643,36517.976022135,145588.025054431,16217.4465762744],"LinkedStructures":" 23038 -> 17434\r 55211 -> 29481\r 115553 -> 115552\r 115568 -> 115569\r 115572 -> 17433\r 122181 -> 122180\r 122187 -> 122184\r 122201 -> 122202\r 122213 -> 17430\r 122215 -> 122214\r","SourceStructureID":321,"TargetID":284,"TargetStructureID":284,"ID":854},{"TargetSizes":[28571.182224771],"SourceID":30102,"Type":"Gap Junction","SourceSizes":[24393.8453463491],"LinkedStructures":" 30107 -> 30106\r","SourceStructureID":30102,"TargetID":284,"TargetStructureID":284,"ID":872},{"TargetSizes":[46932.6020570212],"SourceID":307,"Type":"Gap Junction","SourceSizes":[46932.6034370312],"LinkedStructures":" 96375 -> 96374\r","SourceStructureID":307,"TargetID":223,"TargetStructureID":223,"ID":782},{"TargetSizes":[254414.758444589,29058.9834974194,27734.8741667085,41264.5754621723],"SourceID":7157,"Type":"Gap Junction","SourceSizes":[78197.6346337507,29058.9819189716,25751.0074932212,41289.3424581906],"LinkedStructures":" 29580 -> 26271\r 29586 -> 29585\r 29610 -> 29611\r 131781 -> 131780\r","SourceStructureID":7157,"TargetID":284,"TargetStructureID":284,"ID":871},{"TargetSizes":[71844.6659179404,91058.9677753185,44052.5291620448,27017.2343524332],"SourceID":6153,"Type":"Gap Junction","SourceSizes":[71844.5621025662,91058.7023309178,44052.7170467478,27017.2343524331],"LinkedStructures":" 17489 -> 17488\r 17837 -> 16621\r 29593 -> 29592\r 29599 -> 29598\r","SourceStructureID":6153,"TargetID":223,"TargetStructureID":223,"ID":795}],"edge_attributes":[{"DataType":"index","Type":"int","Unique":"true","DisplayName":"id","Name":"ID"},{"DataType":"source-index","Type":"int","Unique":"false","DisplayName":"source id","Name":"SourceID"},{"DataType":"target-index","Type":"int","Unique":"true","DisplayName":"target id","Name":"TargetID"},{"DataType":"target-index","Type":"int","Unique":"true","DisplayName":"target id","Name":"TargetID"},{"DataType":"categorical","Type":"string","Unique":"false","DisplayName":"edge type","Name":"type"},{"DataType":"string","Type":"string","Unique":"false","DisplayName":"structures","Name":"LinkedStructures"}],"node_attributes":[{"DisplayName":"id","Name":"ID","DataType":"index","DatabaseName":"id","Unique":"true","Type":"int"},{"DisplayName":"label","Name":"Label","DataType":"categorical","DatabaseName":"label","Unique":"false","Type":"string"},{"DisplayName":"structure uri","Name":"Structure","DataType":"id","DatabaseName":"structure","Unique":"true","Type":"string"},{"DisplayName":"id","Name":"StructureID","DataType":"id","DatabaseName":"id","Unique":"true","Type":"int"},{"DisplayName":"area","Name":"HullArea","DataType":"quantitative","DatabaseName":"hull","Unique":"false","Type":"float"}]},"data":{"name":"/assets/mock/2018.01.23-network-all-hops.json","nodes":[{"StructureID":115,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":138,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":142,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":146,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":153,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":161,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":162,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":165,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":166,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":168,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":170,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":171,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":172,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":173,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":174,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":175,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":176,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":177,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":178,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":179,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":180,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":181,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":184,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":222,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":223,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":250,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":260,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":268,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":269,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":273,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":276,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":277,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":278,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":280,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":284,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":285,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":286,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":288,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":289,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":293,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":294,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":298,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":299,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":304,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":307,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":308,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":309,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":310,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":311,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":314,"TypeID":1,"Label":"GC diving","Tags":""},{"StructureID":318,"TypeID":1,"Label":"YAC ON","Tags":""},{"StructureID":321,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":324,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":325,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":327,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":328,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":330,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":332,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":334,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":335,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":341,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":342,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":344,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":345,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":350,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":352,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":353,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":354,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":359,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":360,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":364,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":365,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":366,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":369,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":372,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":373,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":375,"TypeID":1,"Label":"YAC ON/OFF","Tags":""},{"StructureID":380,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":382,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":389,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":390,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":391,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":397,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":398,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":399,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":400,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":405,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":407,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":408,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":410,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":412,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":415,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":418,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":419,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":421,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":422,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":424,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":425,"TypeID":1,"Label":"CBa2-3","Tags":""},{"StructureID":426,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":428,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":431,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":432,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":433,"TypeID":1,"Label":"CBab2-3w","Tags":""},{"StructureID":434,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":437,"TypeID":1,"Label":"CBab2-4","Tags":""},{"StructureID":440,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":441,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":443,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":445,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":446,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":447,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":450,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":452,"TypeID":1,"Label":"CBab2-4w","Tags":""},{"StructureID":453,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":455,"TypeID":1,"Label":"CBab2-3","Tags":""},{"StructureID":456,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":458,"TypeID":1,"Label":"CBab2-5","Tags":""},{"StructureID":460,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":461,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":463,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":464,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":468,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":469,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":471,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":473,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":475,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":476,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":478,"TypeID":1,"Label":"CBabw","Tags":""},{"StructureID":479,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":483,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":485,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":488,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":492,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":514,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":516,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":517,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":518,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":519,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":525,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":545,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":572,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":573,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":579,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":582,"TypeID":1,"Label":"","Tags":""},{"StructureID":590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":591,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":592,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":593,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":595,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":596,"TypeID":1,"Label":"","Tags":""},{"StructureID":597,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":598,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":605,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":606,"TypeID":1,"Label":"GC ON","Tags":""},{"StructureID":608,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":611,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":906,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":907,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":909,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":911,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":968,"TypeID":1,"Label":"CBab2-4","Tags":""},{"StructureID":989,"TypeID":1,"Label":"CBabw","Tags":""},{"StructureID":992,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":999,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":1021,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":1610,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":1620,"TypeID":1,"Label":"YAC ON/OFF","Tags":""},{"StructureID":1637,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":1724,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":2063,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":2064,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":2065,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":2610,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":3116,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":3257,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":3679,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":3756,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":3865,"TypeID":1,"Label":"GAC/YAC","Tags":""},{"StructureID":3881,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":3928,"TypeID":1,"Label":"CBab2-4","Tags":""},{"StructureID":4567,"TypeID":1,"Label":"CBa1w","Tags":""},{"StructureID":4568,"TypeID":1,"Label":"CBab2-4","Tags":""},{"StructureID":4569,"TypeID":1,"Label":"CBb3n ","Tags":""},{"StructureID":4570,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":4835,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":4849,"TypeID":1,"Label":"CBa1-2","Tags":""},{"StructureID":4850,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":4876,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":4877,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":4890,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":4941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":4942,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":4943,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5006,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":5017,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":5057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":5107,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":5117,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":5118,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":5150,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":5278,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5279,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5280,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5281,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5282,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5283,"TypeID":1,"Label":"CBbwf","Tags":""},{"StructureID":5284,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5285,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":5292,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":5294,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5295,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":5297,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5303,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":5315,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5325,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5331,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5338,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5345,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":5350,"TypeID":1,"Label":"YAC ON","Tags":""},{"StructureID":5351,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5352,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":5372,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5374,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5377,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":5382,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5388,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5390,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5394,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5396,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5402,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5405,"TypeID":1,"Label":"YAC ON/OFF","Tags":""},{"StructureID":5410,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5411,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5413,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5421,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5422,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":5423,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5427,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5435,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5436,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5437,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5439,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5441,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5442,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5450,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5451,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5452,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5453,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5454,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5456,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":5457,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":5458,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5464,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":5468,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5470,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5473,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":5480,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5481,"TypeID":1,"Label":"YAC ON","Tags":""},{"StructureID":5482,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5485,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5486,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5487,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5489,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5491,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5496,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5497,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5498,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":5499,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":5500,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5501,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5502,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5503,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5504,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5506,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5507,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5509,"TypeID":1,"Label":"","Tags":""},{"StructureID":5511,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5513,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5514,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5515,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":5516,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":5517,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5519,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":5520,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5522,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5528,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5530,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5531,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5532,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5534,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5535,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5536,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5537,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":5538,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5539,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5541,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":5542,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5543,"TypeID":1,"Label":"CBab2-5","Tags":""},{"StructureID":5544,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":5545,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5551,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5556,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":5557,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5561,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5562,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5563,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":5565,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5566,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5568,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5575,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5579,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":5582,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5584,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5585,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5587,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":5592,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5595,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":5596,"TypeID":1,"Label":"CBa1-2","Tags":""},{"StructureID":5598,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5599,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5600,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":5601,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5602,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5604,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5606,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":5607,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5608,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5609,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5611,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":5614,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":5618,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5622,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5623,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5630,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5631,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5634,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5635,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5636,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5637,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5638,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":5639,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5640,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5641,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5643,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5645,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5648,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5649,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5650,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5671,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5711,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5729,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":5775,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5794,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":5838,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":5860,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":5909,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5916,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":5922,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5923,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6011,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":6046,"TypeID":1,"Label":"CBa2-3","Tags":""},{"StructureID":6047,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6048,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6050,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":6115,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":6117,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":6118,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6120,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6121,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":6122,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6123,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":6125,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":6127,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6128,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":6129,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":6131,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6132,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6133,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6134,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":6135,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6136,"TypeID":1,"Label":"CBab2-3","Tags":""},{"StructureID":6138,"TypeID":1,"Label":"CBa1-2","Tags":""},{"StructureID":6140,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":6141,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6142,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":6146,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6150,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":6153,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":6155,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6156,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":6158,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6160,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":6162,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":6163,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6164,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6165,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":6166,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6169,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":6203,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6204,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":6300,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":6406,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":6561,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6589,"TypeID":1,"Label":"CBbwf","Tags":""},{"StructureID":6617,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6618,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6656,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":6850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":6857,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":6909,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6910,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":6911,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6912,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6957,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":6958,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":6961,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":6964,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":6965,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":6997,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":7024,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":7040,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":7043,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":7050,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7054,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":7073,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7075,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":7111,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7112,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7113,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7114,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7122,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7129,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7134,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7139,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7144,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":7145,"TypeID":1,"Label":"GAC Aii -doubtful","Tags":""},{"StructureID":7147,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7149,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":7157,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7167,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7174,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":7188,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7203,"TypeID":1,"Label":null,"Tags":""},{"StructureID":7204,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":7215,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7225,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7231,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":7274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":7279,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":7344,"TypeID":1,"Label":null,"Tags":""},{"StructureID":7345,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7346,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":7361,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":7362,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":7446,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":7461,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7464,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7468,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7561,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":7564,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7565,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7568,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":7577,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7587,"TypeID":1,"Label":"","Tags":""},{"StructureID":7594,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":7688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":7691,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7693,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7703,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":7858,"TypeID":1,"Label":"GAC ON/OFF","Tags":""},{"StructureID":7859,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":7860,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7861,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":7897,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7904,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7951,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":8027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":8032,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":8033,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":8035,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":8037,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":8038,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":8040,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":8045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":8059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":8080,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":8212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":8218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":8485,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":8504,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":8551,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":8575,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8576,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":8577,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":8578,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8579,"TypeID":1,"Label":"YAC Starburst ","Tags":""},{"StructureID":8580,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8586,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":8588,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8589,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8720,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8749,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":8754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":8990,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":9023,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":9124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":9129,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":9183,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":9226,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":9228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":9260,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":9347,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":9376,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":9492,"TypeID":1,"Label":"","Tags":""},{"StructureID":9504,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":9604,"TypeID":1,"Label":"","Tags":""},{"StructureID":9606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":9614,"TypeID":1,"Label":"","Tags":""},{"StructureID":9643,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":9693,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":9769,"TypeID":1,"Label":"YAC IAC","Tags":""},{"StructureID":9787,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":9810,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":10142,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10146,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10335,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":10371,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":10412,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10559,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":10565,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":10574,"TypeID":1,"Label":"YAC IAC","Tags":""},{"StructureID":10590,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10596,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":10625,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10632,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10720,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":10815,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10826,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10840,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10872,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10897,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10931,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10943,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10945,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":10950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":10953,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10954,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":10956,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10957,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10959,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10960,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10961,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10962,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10963,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":10964,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10966,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":10969,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10970,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":11011,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":11015,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":11017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11020,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11021,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11022,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11023,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":11024,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":11030,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11031,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11033,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11037,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11038,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11042,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11043,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11044,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11049,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11063,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11066,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":11071,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":11072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":11074,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":11085,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11089,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11092,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":11172,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11222,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":11229,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":11234,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11235,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11238,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":11244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11246,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11248,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11250,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11321,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11401,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11408,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":11485,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":11531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":11645,"TypeID":1,"Label":"","Tags":""},{"StructureID":11650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11651,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":11657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11696,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":11803,"TypeID":1,"Label":"","Tags":""},{"StructureID":12072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":12099,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":12113,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":12192,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12203,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":12208,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":12210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":12298,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12408,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":12461,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12492,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":12563,"TypeID":1,"Label":"HC","Tags":""},{"StructureID":12564,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":12696,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12804,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12897,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":13000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13130,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13134,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":13150,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13154,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13159,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":13180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":13313,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":13444,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":13448,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":13469,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":13485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13492,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":13499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13525,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":13624,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":13855,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":13858,"TypeID":1,"Label":"GC OFF","Tags":""},{"StructureID":14034,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":14291,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":14293,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":14607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":14615,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":14725,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":14894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":15100,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":15130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":15377,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":15394,"TypeID":1,"Label":"GC ON","Tags":""},{"StructureID":15412,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":15475,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":15614,"TypeID":1,"Label":null,"Tags":""},{"StructureID":15653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":15779,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":15796,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":15942,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":15969,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":15976,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":15977,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":15979,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":16002,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":16026,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":16073,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":16087,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":16446,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":16940,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":17183,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":17228,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":17527,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":17533,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":18150,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":18282,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":18471,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":18472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":18576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":18693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":19203,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":19351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":19362,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":19383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":19571,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":19572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":20136,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":20299,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":20311,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":20327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":20413,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":20537,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":20608,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":20614,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":20681,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":20728,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":21094,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":21155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21299,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":21314,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21384,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":21386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21778,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":21779,"TypeID":1,"Label":"GC ON/OFF","Tags":""},{"StructureID":21817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21874,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":22210,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":22225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":22349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22358,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22368,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":22374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22554,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":22590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22634,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":22760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22974,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":22994,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":23323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":23512,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":23566,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":23836,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":23870,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":24148,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":24174,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":24241,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":24303,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":24366,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":24381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":24401,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":24898,"TypeID":1,"Label":"GC OFF","Tags":""},{"StructureID":24909,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":24947,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":25155,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":25182,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25293,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25327,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25342,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":25352,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25355,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":25359,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25364,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":25367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25382,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":25385,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25392,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25402,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":25405,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":25410,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25429,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25529,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25551,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25561,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25575,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25669,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":25688,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25861,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":26079,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":26304,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":26497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":26971,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":27288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":27304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":28382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":28886,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":28913,"TypeID":1,"Label":"GC Delta L1","Tags":""},{"StructureID":28950,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":29198,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":29277,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":29340,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":29702,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":29783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":29791,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":29805,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":29827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30015,"TypeID":1,"Label":"YAC WF ON/OFF","Tags":""},{"StructureID":30102,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":30130,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":30177,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":30332,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30370,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":30379,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":30477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30495,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30499,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":30513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30518,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":30567,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31024,"TypeID":1,"Label":"GC ON","Tags":""},{"StructureID":31157,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":31161,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":31256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31305,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31356,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31389,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":31471,"TypeID":1,"Label":null,"Tags":""},{"StructureID":31483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":31486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31603,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31605,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31665,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31679,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31694,"TypeID":1,"Label":null,"Tags":""},{"StructureID":31700,"TypeID":1,"Label":"","Tags":""},{"StructureID":31702,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31710,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":31804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31874,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":31915,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31944,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":31960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":31969,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31994,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32046,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32141,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32144,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":32147,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":32160,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32172,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":32187,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32227,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32258,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":32273,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32312,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":32354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32359,"TypeID":1,"Label":"CBab2-3","Tags":""},{"StructureID":32371,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":32379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32383,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32405,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32409,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32422,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32445,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32451,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32547,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32581,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32608,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32643,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32654,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":32660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32666,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32668,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32681,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":32719,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":32726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32734,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32739,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32773,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32787,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32795,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32802,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32848,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":32853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32862,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32871,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32874,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32892,"TypeID":1,"Label":"AC OFF","Tags":""},{"StructureID":32900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32911,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32916,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32926,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32938,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32945,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32959,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":32970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32994,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33003,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33088,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33127,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":33148,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33161,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":33198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33217,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33272,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33333,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":33588,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":33615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33625,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":33675,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33714,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33873,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33881,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34028,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34034,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":34036,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34055,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34138,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34148,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34159,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34164,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":34165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34253,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34300,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34306,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34311,"TypeID":1,"Label":"","Tags":""},{"StructureID":34315,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34336,"TypeID":1,"Label":"GC ON/OFF","Tags":""},{"StructureID":34337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34452,"TypeID":1,"Label":"","Tags":""},{"StructureID":34494,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34509,"TypeID":1,"Label":"","Tags":""},{"StructureID":34527,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34601,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34621,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34756,"TypeID":1,"Label":"","Tags":""},{"StructureID":34761,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":34847,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34868,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":34882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34893,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34899,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34914,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34940,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":34978,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35046,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":35064,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35068,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35076,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35084,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35138,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35142,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35145,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":35149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35176,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35188,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35193,"TypeID":1,"Label":"YAC ON","Tags":""},{"StructureID":35208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35212,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35240,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":35283,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35305,"TypeID":1,"Label":"","Tags":""},{"StructureID":35308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35335,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35348,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35392,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":35395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35400,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35418,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35428,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35510,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35513,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35526,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35534,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35550,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":35555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35576,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":35597,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":35653,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35681,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":35696,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":35751,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35775,"TypeID":1,"Label":"","Tags":""},{"StructureID":35811,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35887,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35894,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":35966,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35969,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":35972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35975,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":36130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36151,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":36153,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":36158,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36162,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36170,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":36228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":36234,"TypeID":1,"Label":null,"Tags":""},{"StructureID":36276,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36293,"TypeID":1,"Label":"YAC A1","Tags":""},{"StructureID":36299,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36419,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36421,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":36481,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36501,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36508,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36512,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36650,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36661,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36664,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":36688,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36700,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":36714,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36724,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36746,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":37012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":37021,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":37042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":37127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":37135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":37183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":37192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":37286,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":37288,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":37295,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":37309,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":37440,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":37461,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":37466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38200,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38231,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38236,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38245,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":38302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38345,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38357,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38404,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38483,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38502,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":38600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38605,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38632,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38698,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":38703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38727,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":38735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38799,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":38810,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":38848,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":38906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39168,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39192,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39196,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39201,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39208,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39216,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":39226,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39244,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39252,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39285,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39319,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":39324,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39331,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39342,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39345,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":39516,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39520,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39523,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39528,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39530,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39560,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39575,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39581,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39590,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39596,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39602,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39610,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39615,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39688,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39696,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":39706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39717,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39724,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39737,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39745,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39748,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39752,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39759,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39764,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39774,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39787,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39790,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39794,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":39798,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39802,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39807,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39811,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39816,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39824,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39830,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39835,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39838,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39841,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39862,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":39867,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39915,"TypeID":1,"Label":"","Tags":""},{"StructureID":39917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39922,"TypeID":1,"Label":"","Tags":""},{"StructureID":39931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39939,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39957,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":39963,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39968,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39973,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39982,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39998,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40018,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40033,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40041,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40044,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40051,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40053,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40059,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40439,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40444,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40455,"TypeID":1,"Label":"","Tags":""},{"StructureID":40469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40480,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":40482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40495,"TypeID":1,"Label":"","Tags":""},{"StructureID":40498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40602,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40604,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":40606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40631,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40640,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40844,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40851,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":40856,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40863,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":40880,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40884,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40896,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40901,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40911,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40917,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":40919,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40927,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40934,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40947,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40951,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40956,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40965,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40973,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40988,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40991,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":41003,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":41009,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41031,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":41039,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":41042,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":41058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41126,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":41159,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":41474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":41583,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41608,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":41636,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":41778,"TypeID":1,"Label":"","Tags":""},{"StructureID":41882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41905,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":41999,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":42001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42094,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42387,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42404,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42416,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42423,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":42432,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":42450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42527,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42576,"TypeID":1,"Label":"","Tags":""},{"StructureID":42586,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42711,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":42715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42770,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":42776,"TypeID":1,"Label":"AC OFF","Tags":""},{"StructureID":42795,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42846,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42866,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42871,"TypeID":1,"Label":"","Tags":""},{"StructureID":42873,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42877,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42890,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42927,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42948,"TypeID":1,"Label":"","Tags":""},{"StructureID":42951,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42953,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42966,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42968,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42971,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42977,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42980,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42985,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43114,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43130,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43132,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43134,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43142,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43198,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43201,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43205,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43207,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43259,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43297,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43314,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43327,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43404,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43631,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":43700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43716,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":43747,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44117,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":44205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44222,"TypeID":1,"Label":"","Tags":""},{"StructureID":44229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44237,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44256,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":44329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44338,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":44346,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":44893,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44895,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44912,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44965,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44970,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":45007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45220,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45336,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45358,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":45406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45551,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45568,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45574,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":45617,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45731,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":45847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45894,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":46050,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46052,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46054,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46057,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46059,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46062,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":46070,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46074,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46090,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46093,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46098,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46105,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":46107,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46116,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46118,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46121,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46186,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46261,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46351,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46359,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46373,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46384,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46386,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46388,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":46389,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46391,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46443,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46449,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46461,"TypeID":1,"Label":"","Tags":""},{"StructureID":46468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46498,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46502,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46504,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46508,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46512,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46514,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46517,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46527,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46530,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46589,"TypeID":1,"Label":"AC ON","Tags":""},{"StructureID":46670,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46682,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46693,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46741,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":46797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46801,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":46804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46817,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46933,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":46943,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":46955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46979,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46982,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46984,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46998,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47004,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":47007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47013,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":47095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47104,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":47109,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47195,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":47204,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":47445,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":47593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47833,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47908,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":48416,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":48455,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":48516,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":48573,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":48612,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":49184,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":49185,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":49186,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":49487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":49489,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":49554,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":49600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":50240,"TypeID":1,"Label":"","Tags":""},{"StructureID":50449,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":50894,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":50982,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":51100,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":51617,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":51667,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":51700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":51711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":51715,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":51808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":51812,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":51923,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":52147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52152,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":52247,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":52257,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":52262,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52410,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52921,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52929,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":52960,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52991,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53000,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53166,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53169,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53173,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53178,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53182,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":53186,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53195,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53202,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":53218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53224,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53229,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53235,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53241,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53250,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53252,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53257,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53259,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53263,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53330,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53344,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53399,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":53403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53416,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53436,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":53439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53441,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53443,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53768,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53778,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53828,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":53872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53987,"TypeID":1,"Label":"","Tags":""},{"StructureID":53991,"TypeID":1,"Label":"","Tags":""},{"StructureID":54006,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":54074,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54078,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":54245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54252,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54264,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54356,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54428,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54469,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54482,"TypeID":1,"Label":"","Tags":""},{"StructureID":54492,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54622,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54681,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54695,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":54698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54744,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":54776,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54778,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54813,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":54818,"TypeID":1,"Label":"","Tags":""},{"StructureID":54850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54859,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54862,"TypeID":1,"Label":"","Tags":""},{"StructureID":54874,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":54877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54881,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54895,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54904,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54908,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54913,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":54925,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":54958,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54967,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54969,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":55034,"TypeID":1,"Label":"","Tags":""},{"StructureID":55098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":55108,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":55132,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55154,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":55166,"TypeID":1,"Label":"","Tags":""},{"StructureID":55176,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55185,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55191,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":55197,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55201,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55208,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55212,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55218,"TypeID":1,"Label":"","Tags":""},{"StructureID":55221,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55223,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":55232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":55279,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55308,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55311,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55317,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55319,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55330,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55347,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":55359,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":55366,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55517,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55610,"TypeID":1,"Label":"","Tags":""},{"StructureID":55686,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":55697,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55830,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":55933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56078,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56084,"TypeID":1,"Label":"","Tags":""},{"StructureID":56086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56093,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":56108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56148,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":56191,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":56211,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":56328,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56583,"TypeID":1,"Label":"","Tags":""},{"StructureID":56598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56600,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":56631,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":56643,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":56653,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56710,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":56712,"TypeID":1,"Label":"","Tags":""},{"StructureID":56714,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56802,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56841,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56973,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57027,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":57034,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":57035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57063,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":57064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57133,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57148,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57169,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":57178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57226,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57353,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":57360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":58441,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":58592,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58642,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":58682,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":58687,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58709,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58714,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58723,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58741,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":58745,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58773,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":58775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":58777,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58782,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58784,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58825,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":58829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59008,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":59012,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":59096,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59121,"TypeID":1,"Label":"","Tags":""},{"StructureID":59125,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59130,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59139,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":59145,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":59147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59163,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59208,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59211,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59223,"TypeID":1,"Label":"","Tags":""},{"StructureID":59225,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":59229,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59247,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59251,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59262,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59278,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59289,"TypeID":1,"Label":"","Tags":""},{"StructureID":59294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59333,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":59340,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59362,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59377,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":59389,"TypeID":1,"Label":"","Tags":""},{"StructureID":59392,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59419,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59422,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":59429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59432,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59439,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59455,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59471,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59474,"TypeID":1,"Label":"","Tags":""},{"StructureID":59477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59491,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59499,"TypeID":1,"Label":"","Tags":""},{"StructureID":59507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59510,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59518,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59524,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":59531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59535,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59629,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59638,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59696,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59726,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59751,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":59756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59796,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59801,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59811,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59813,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59825,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59841,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59862,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59910,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59916,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":59919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59929,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59932,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59966,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":59974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60074,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60083,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60088,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60100,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60104,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60191,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60193,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60200,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60221,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60225,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60236,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60306,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60319,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60344,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60346,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60348,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60350,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60354,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60358,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60363,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60386,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60432,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60434,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60440,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60463,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":60466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60487,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":60491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60494,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60523,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":60535,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60547,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60558,"TypeID":1,"Label":"","Tags":""},{"StructureID":60572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60645,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60657,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":60798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60863,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":60873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60967,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61214,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":61227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61231,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":61270,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61439,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61450,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61500,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61530,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":61583,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61598,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61627,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61630,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":61632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61638,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61642,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61656,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61666,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61672,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61703,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61709,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":61716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61719,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61752,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61758,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61765,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61773,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61775,"TypeID":1,"Label":"","Tags":""},{"StructureID":61777,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61779,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61793,"TypeID":1,"Label":"","Tags":""},{"StructureID":61797,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61809,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61811,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61813,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61817,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61823,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61836,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61840,"TypeID":1,"Label":"","Tags":""},{"StructureID":61842,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61845,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61847,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61849,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61853,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61862,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61864,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61878,"TypeID":1,"Label":"","Tags":""},{"StructureID":61880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61886,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61897,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61898,"TypeID":1,"Label":"","Tags":""},{"StructureID":61904,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61908,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61914,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61926,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61930,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61940,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61942,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61951,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61954,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61960,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61972,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62019,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62035,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62038,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62049,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62052,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62120,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62150,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62169,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62325,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62344,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62420,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62433,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62456,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62458,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62464,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62478,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62492,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62500,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":62511,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62515,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62531,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62540,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62574,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62578,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":62599,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62617,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62627,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":62632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62655,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62659,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62704,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":62707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62764,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62777,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62786,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62842,"TypeID":1,"Label":"GC direction selective-like","Tags":""},{"StructureID":62896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62956,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63016,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63060,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":63199,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":63274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63371,"TypeID":1,"Label":"","Tags":""},{"StructureID":63423,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":63440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":63445,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":63451,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63460,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63465,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63473,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63485,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63487,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63513,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63521,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":63542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63573,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63592,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63594,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":63612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63628,"TypeID":1,"Label":"AC ON/OFF","Tags":""},{"StructureID":63799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":63806,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":63956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":63978,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":63991,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":64196,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":64268,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64362,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64371,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":64387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64409,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64414,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":64417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64492,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":64520,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64547,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":64549,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64626,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64654,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64670,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64673,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":64690,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":64698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64777,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":64787,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":64795,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64841,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":64887,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":64920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64923,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":64939,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":65002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65047,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65134,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":65138,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65156,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65172,"TypeID":1,"Label":"","Tags":""},{"StructureID":65181,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65218,"TypeID":1,"Label":"","Tags":""},{"StructureID":65245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65247,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65250,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65267,"TypeID":1,"Label":"","Tags":""},{"StructureID":65271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65276,"TypeID":1,"Label":"","Tags":""},{"StructureID":65278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65284,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":65287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65309,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65320,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65338,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65351,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65358,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65376,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65398,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65404,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65408,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65411,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65464,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65484,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65514,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65519,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":65522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65532,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65555,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65569,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65579,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65591,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65594,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65612,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65616,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65623,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65648,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65742,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":65751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65768,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65816,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":65819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65826,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65835,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":65849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65866,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65883,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65890,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65893,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65899,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65910,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65963,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66024,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66031,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66044,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66053,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66075,"TypeID":1,"Label":"","Tags":""},{"StructureID":66079,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":66085,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66089,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66096,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66100,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66104,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66114,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66138,"TypeID":1,"Label":"","Tags":""},{"StructureID":66165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66184,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":66193,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66199,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":66214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66303,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66323,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66425,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66464,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66473,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66487,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66493,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66503,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66510,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66513,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66516,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":66520,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66535,"TypeID":1,"Label":"","Tags":""},{"StructureID":66539,"TypeID":1,"Label":"","Tags":""},{"StructureID":66542,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66634,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":66640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66647,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66660,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66665,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66682,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66685,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66699,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66702,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66710,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66713,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66723,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66731,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66756,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":66760,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66768,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66779,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66785,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":66788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66795,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66801,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66809,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66828,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66840,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66852,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66871,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66888,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":66896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66905,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":66910,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66927,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66930,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":66933,"TypeID":1,"Label":"","Tags":""},{"StructureID":66937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66942,"TypeID":1,"Label":"","Tags":""},{"StructureID":66946,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66952,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66955,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66958,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":66962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66983,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66992,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67007,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67016,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67019,"TypeID":1,"Label":"","Tags":""},{"StructureID":67037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67042,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67051,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67080,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67101,"TypeID":1,"Label":"","Tags":""},{"StructureID":67105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67109,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67119,"TypeID":1,"Label":"","Tags":""},{"StructureID":67121,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67123,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67128,"TypeID":1,"Label":"","Tags":""},{"StructureID":67130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67131,"TypeID":1,"Label":"","Tags":""},{"StructureID":67135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67137,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67150,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67152,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67157,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67159,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67161,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67182,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67187,"TypeID":1,"Label":"","Tags":""},{"StructureID":67190,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67201,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67206,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67219,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67227,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67234,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67246,"TypeID":1,"Label":"","Tags":""},{"StructureID":67252,"TypeID":1,"Label":"","Tags":""},{"StructureID":67254,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67258,"TypeID":1,"Label":"","Tags":""},{"StructureID":67262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67266,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67269,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67284,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67298,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67301,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67305,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67328,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67350,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67352,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67354,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67361,"TypeID":1,"Label":"","Tags":""},{"StructureID":67364,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67404,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67410,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67423,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67425,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67433,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67438,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67452,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67455,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67458,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67469,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67491,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67494,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67500,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67502,"TypeID":1,"Label":"","Tags":""},{"StructureID":67504,"TypeID":1,"Label":"","Tags":""},{"StructureID":67506,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67508,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67520,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67529,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67546,"TypeID":1,"Label":"","Tags":""},{"StructureID":67548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67551,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67557,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67575,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67585,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67586,"TypeID":1,"Label":"","Tags":""},{"StructureID":67589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67591,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67595,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67626,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67663,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":67666,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67671,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67683,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67686,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67705,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67711,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67736,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67752,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67762,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67765,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67768,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67784,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67786,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67789,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67806,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67809,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67815,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67818,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67823,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67833,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67839,"TypeID":1,"Label":"","Tags":""},{"StructureID":67846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67854,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67871,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67883,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67886,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67890,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67892,"TypeID":1,"Label":"","Tags":""},{"StructureID":67894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67915,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67918,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67920,"TypeID":1,"Label":"","Tags":""},{"StructureID":67932,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67947,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67952,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67959,"TypeID":1,"Label":"","Tags":""},{"StructureID":67967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67970,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67973,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67981,"TypeID":1,"Label":"","Tags":""},{"StructureID":67983,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67992,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67996,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67999,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68003,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68009,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":68014,"TypeID":1,"Label":"","Tags":""},{"StructureID":68020,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68023,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68031,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68042,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68056,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68068,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68087,"TypeID":1,"Label":"","Tags":""},{"StructureID":68093,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68101,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68135,"TypeID":1,"Label":"","Tags":""},{"StructureID":68140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68144,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68148,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68150,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68153,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":68161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68188,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68202,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68210,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68214,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68238,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68249,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68263,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68266,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68273,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68277,"TypeID":1,"Label":"","Tags":""},{"StructureID":68282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68286,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68289,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68292,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68296,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68300,"TypeID":1,"Label":"","Tags":""},{"StructureID":68302,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68306,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68335,"TypeID":1,"Label":"","Tags":""},{"StructureID":68337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68350,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":68353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68359,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68366,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68380,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68391,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68393,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68399,"TypeID":1,"Label":"","Tags":""},{"StructureID":68401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68433,"TypeID":1,"Label":"","Tags":""},{"StructureID":68435,"TypeID":1,"Label":"","Tags":""},{"StructureID":68444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68453,"TypeID":1,"Label":"","Tags":""},{"StructureID":68456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68461,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68492,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68497,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68501,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68504,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68511,"TypeID":1,"Label":"","Tags":""},{"StructureID":68516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68527,"TypeID":1,"Label":"","Tags":""},{"StructureID":68531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68537,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68539,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":68543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68550,"TypeID":1,"Label":"","Tags":""},{"StructureID":68555,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68566,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68585,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68594,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68618,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68623,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":68632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68667,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68669,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68678,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68679,"TypeID":1,"Label":"","Tags":""},{"StructureID":68686,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68728,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68734,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68748,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68761,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":68766,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":68771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68781,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":68785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68793,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":68799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68888,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":68891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68914,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68929,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68944,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68948,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68955,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68978,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":68988,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":69003,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69019,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69030,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69049,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69162,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":69181,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69235,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69325,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69332,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69355,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69382,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69385,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69428,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":69431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69434,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69436,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69443,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69446,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69450,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69454,"TypeID":1,"Label":"","Tags":""},{"StructureID":69456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69461,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69464,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69467,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69469,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69478,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69480,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69503,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69508,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69532,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69534,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":69537,"TypeID":1,"Label":"GC OFF","Tags":""},{"StructureID":69543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69666,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69695,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69697,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69708,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69710,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69720,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69721,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69728,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69733,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69742,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69783,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69895,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69899,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69902,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69910,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69917,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69930,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69934,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69955,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69966,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69967,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69972,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69973,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69979,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69986,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69998,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70003,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70046,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70065,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70079,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70084,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70095,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":70111,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70114,"TypeID":1,"Label":"","Tags":""},{"StructureID":70116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70120,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70134,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70139,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70171,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70176,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70182,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70205,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":70219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70221,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70302,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70308,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70323,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70335,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70340,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70346,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70352,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70357,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70372,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70398,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70403,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":70415,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70418,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70422,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70427,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70432,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70436,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70449,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70462,"TypeID":1,"Label":"","Tags":""},{"StructureID":70466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70469,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70471,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70481,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70487,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70500,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":70501,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":70514,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70529,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70533,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70535,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70540,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70552,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70562,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70566,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70570,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70581,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70593,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70599,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70601,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70605,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70612,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70615,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70621,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70628,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70632,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70646,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70651,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70653,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70655,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70674,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70682,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70684,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70697,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70699,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70712,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70732,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70743,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70745,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70768,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70770,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70774,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70778,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70780,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70789,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70820,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70833,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70840,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70845,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70878,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70906,"TypeID":1,"Label":"","Tags":""},{"StructureID":70909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70924,"TypeID":1,"Label":"GC ON/OFF","Tags":""},{"StructureID":70987,"TypeID":1,"Label":"GC fragment ","Tags":""},{"StructureID":71041,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71063,"TypeID":1,"Label":"YAC WF","Tags":""},{"StructureID":71073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71091,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71108,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71135,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":71145,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71153,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71155,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71202,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71213,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71219,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71227,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71241,"TypeID":1,"Label":"","Tags":""},{"StructureID":71242,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71281,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":71284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71351,"TypeID":1,"Label":"","Tags":""},{"StructureID":71357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71362,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71369,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71377,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71411,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71435,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71491,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71497,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71513,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71517,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71535,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71538,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71541,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71545,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71574,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71583,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71594,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71597,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":71600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71610,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71618,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71625,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71626,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71632,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71634,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71640,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71671,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71686,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71730,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":71738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71825,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":71830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71877,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71882,"TypeID":1,"Label":"","Tags":""},{"StructureID":71891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71906,"TypeID":1,"Label":"","Tags":""},{"StructureID":71908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71927,"TypeID":1,"Label":"","Tags":""},{"StructureID":71935,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":71953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71985,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71997,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71998,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72003,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72031,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72036,"TypeID":1,"Label":"","Tags":""},{"StructureID":72043,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72074,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72076,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72082,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72087,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72109,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72124,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72142,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72154,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72162,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72168,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72173,"TypeID":1,"Label":"","Tags":""},{"StructureID":72176,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72188,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72210,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72226,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72252,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":72259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72271,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72281,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72306,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72326,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72335,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72342,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72344,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72350,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72358,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72363,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72384,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72385,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72402,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":72408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72427,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72458,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72492,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72518,"TypeID":1,"Label":"","Tags":""},{"StructureID":72523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72529,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72592,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72594,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72612,"TypeID":1,"Label":"","Tags":""},{"StructureID":72614,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72640,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72647,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72694,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72724,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72742,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72765,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72778,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72787,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72799,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72821,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72834,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72841,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72873,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72934,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72939,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72941,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":72949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72964,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72965,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72973,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72975,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72992,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72994,"TypeID":1,"Label":"","Tags":""},{"StructureID":73004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73006,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73025,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73030,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73086,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73099,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73133,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73146,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73163,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73250,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73270,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73276,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73342,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73348,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73416,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73443,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73453,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73467,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73488,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73494,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73509,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73514,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73573,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73580,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73583,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73594,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73605,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73611,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73613,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73617,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":73619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73620,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73621,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73635,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73639,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73646,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73649,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73658,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73662,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73676,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73687,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73702,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73704,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73710,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73713,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73722,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":73732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73739,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73742,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73759,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73764,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73825,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73833,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73838,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73906,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":73909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73926,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73979,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74023,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74047,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":74049,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74081,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74082,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74088,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74104,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74135,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74141,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":74165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74203,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74211,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74213,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74216,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74225,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74231,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74233,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74237,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74238,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74241,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74276,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74279,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74412,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74416,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74471,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74480,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74493,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74499,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74508,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74511,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74536,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74558,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74567,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74573,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74584,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74593,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74614,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74618,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74624,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74625,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74635,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74639,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":74645,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74670,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74694,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74699,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74701,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74706,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74714,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74724,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74726,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74815,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74825,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74828,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74854,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74859,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74863,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74866,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74886,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74890,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74899,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74902,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74904,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74907,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":74909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74939,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74943,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74957,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74969,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74994,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75001,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75012,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75015,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75017,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75021,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75028,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75052,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75062,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75065,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75082,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75085,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75099,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75104,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75120,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75130,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":75133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75150,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75158,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75168,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75173,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75179,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75196,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75199,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75214,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75268,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75272,"TypeID":1,"Label":"","Tags":""},{"StructureID":75273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75300,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75307,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75320,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75326,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75350,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75359,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75387,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75390,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75395,"TypeID":1,"Label":"","Tags":""},{"StructureID":75400,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75404,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75440,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75442,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75467,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75485,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75515,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75517,"TypeID":1,"Label":"","Tags":""},{"StructureID":75519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75525,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75530,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75578,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75583,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75603,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75625,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":75630,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75648,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75695,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75700,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75713,"TypeID":1,"Label":"","Tags":""},{"StructureID":75721,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75739,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75742,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75752,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75760,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75782,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75792,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75825,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75830,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75833,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75841,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75893,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75902,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75911,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75917,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75939,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76024,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76056,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76060,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76066,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76071,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76086,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76088,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76091,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76103,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76120,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76127,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":76137,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":76141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76211,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76245,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76251,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76277,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76291,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76294,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76298,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76300,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76319,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76336,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76378,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76394,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76409,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76432,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76473,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76489,"TypeID":1,"Label":"","Tags":""},{"StructureID":76492,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76495,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76505,"TypeID":1,"Label":"","Tags":""},{"StructureID":76510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76517,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76520,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76530,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76574,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76582,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76591,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76677,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76724,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76742,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76749,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76752,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76766,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76778,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76786,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76808,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76811,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76837,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76859,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76862,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76867,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76886,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76956,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76958,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76973,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":76977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76980,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76983,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76996,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77023,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77068,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":77077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77109,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77116,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77120,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77130,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77132,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77134,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77179,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77199,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77270,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77276,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77332,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77342,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77370,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77378,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77393,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77456,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77488,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77504,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77507,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77513,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77529,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77536,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77555,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77578,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77603,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77619,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77623,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77625,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77637,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77642,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77656,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77658,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77664,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77669,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77674,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77682,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77695,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77708,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77712,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77714,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77718,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77747,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77765,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77790,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77816,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77836,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77840,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77914,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77918,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77973,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77981,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77988,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77992,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78021,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78028,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78038,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78067,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78074,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78080,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78083,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78088,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78098,"TypeID":1,"Label":"","Tags":""},{"StructureID":78102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78109,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78126,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78134,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78146,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78179,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78191,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78196,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78224,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78244,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78249,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":78252,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78261,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78295,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78298,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78303,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78316,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78327,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78330,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78336,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78355,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78378,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78400,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78409,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78415,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78423,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78428,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78444,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78467,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78471,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78478,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78506,"TypeID":1,"Label":"","Tags":""},{"StructureID":78507,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78514,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78520,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78529,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78532,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78552,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78578,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78594,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78617,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78647,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78681,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78686,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78699,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78701,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78709,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78710,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":78715,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78725,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78749,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78787,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78797,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78825,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78839,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78899,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78909,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78910,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78926,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78932,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78964,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79004,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79008,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79022,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79061,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79064,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79068,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79069,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79071,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79072,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79074,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79091,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79159,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79171,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79196,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79209,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79245,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79259,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79309,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79319,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79370,"TypeID":1,"Label":"","Tags":""},{"StructureID":79373,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":79382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79427,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79431,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79433,"TypeID":1,"Label":"","Tags":""},{"StructureID":79450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79457,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79461,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79464,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79470,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79493,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":79498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79502,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79509,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79545,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79551,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79553,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79558,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79584,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79601,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79631,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79645,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79686,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79725,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79726,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79747,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79799,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79802,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79813,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79863,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79869,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79914,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79955,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79958,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79984,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80016,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80034,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80049,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80060,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80065,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80067,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80071,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80074,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80083,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80088,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80090,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80094,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80101,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80153,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80154,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80167,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80174,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80185,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80190,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80197,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80209,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80213,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80245,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80248,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80263,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80276,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80293,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80294,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80338,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80348,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80378,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80399,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":80400,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80417,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80425,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80434,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80467,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80509,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80532,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80534,"TypeID":1,"Label":"","Tags":""},{"StructureID":80548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80562,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80582,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80591,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80592,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80596,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80604,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80607,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80609,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80646,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80657,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80665,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80755,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":80764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80799,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80816,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80833,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80836,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80839,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80859,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80896,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":80897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80935,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80974,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80983,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80990,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81003,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81008,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81017,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81038,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81048,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81051,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81066,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81081,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81085,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81091,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81095,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81120,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81136,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81142,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81146,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81153,"TypeID":1,"Label":"","Tags":""},{"StructureID":81160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81169,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81187,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81193,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81196,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81200,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81211,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81234,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81250,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81300,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81304,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":81308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81348,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81393,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81402,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81429,"TypeID":1,"Label":"","Tags":""},{"StructureID":81430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81433,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81489,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81494,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81528,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81532,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81533,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81566,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81569,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81584,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81605,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81612,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81615,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81622,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81629,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81637,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81649,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81661,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81667,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81685,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81690,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81704,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81708,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81731,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81743,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81753,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":81758,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":81763,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81768,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81825,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81834,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81839,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81862,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81887,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81925,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81996,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82006,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82025,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82050,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82060,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82061,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82143,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82172,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82181,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82188,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82216,"TypeID":1,"Label":"","Tags":""},{"StructureID":82217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82229,"TypeID":1,"Label":"","Tags":""},{"StructureID":82241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82252,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82281,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82289,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82305,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82353,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":82362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82430,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":82432,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82442,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82569,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82643,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82644,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82653,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82677,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":82678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82692,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82717,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82723,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82789,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82803,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82806,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82813,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":82817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82887,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82897,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82977,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82978,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83049,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83056,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83060,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83133,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83157,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83163,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83179,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":83186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83214,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83222,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83226,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83234,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83238,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83241,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83248,"TypeID":1,"Label":"","Tags":""},{"StructureID":83253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83255,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83266,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83293,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83302,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83329,"TypeID":1,"Label":"","Tags":""},{"StructureID":83331,"TypeID":1,"Label":"","Tags":""},{"StructureID":83352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83360,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83375,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83386,"TypeID":1,"Label":"","Tags":""},{"StructureID":83389,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83409,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83412,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83415,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83449,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83461,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":83470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83514,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":83535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83591,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83603,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83625,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83644,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83668,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83679,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83697,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83708,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83714,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83721,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83725,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83733,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83747,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83764,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83767,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83776,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83788,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83803,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83823,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83828,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83842,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83860,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83890,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83892,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83898,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83907,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83911,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83916,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83921,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83925,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83954,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83975,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83978,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83981,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83992,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83996,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83999,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84008,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84018,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84024,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84029,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84038,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84041,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84052,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84058,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84061,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84063,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84077,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84082,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84083,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84088,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84106,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84108,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84136,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84142,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84148,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84162,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84181,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84184,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84188,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84193,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84203,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84238,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84254,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84260,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84280,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84283,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84290,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84298,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84316,"TypeID":1,"Label":"","Tags":""},{"StructureID":84335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84369,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84394,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84418,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84427,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84457,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84508,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84514,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84519,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84520,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84572,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":84579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84621,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84639,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84696,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84745,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84759,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84773,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84780,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84790,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84802,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84825,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":84828,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84830,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84886,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84909,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84914,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84926,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":84937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84942,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84965,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84983,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85004,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85009,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85015,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85062,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":85068,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85082,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85088,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":85094,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":85096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85100,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85104,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85116,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85119,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":85121,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85128,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85141,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":85144,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85149,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85172,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85184,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85185,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85196,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85197,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85216,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85231,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85250,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85259,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85279,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85284,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85298,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85311,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85338,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85348,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85369,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85377,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85400,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85404,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85426,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85442,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85445,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85450,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85455,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85473,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":85483,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85508,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85510,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85534,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85546,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":85549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85551,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85604,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85620,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85629,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":85634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85666,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85671,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85680,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85683,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85730,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":85735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85740,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":85748,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85755,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85771,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85792,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":85831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85852,"TypeID":1,"Label":"SAC","Tags":""},{"StructureID":85856,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":85861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85924,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85932,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85946,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":85955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85958,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85979,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85982,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86001,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86036,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86047,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86050,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86060,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86114,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86128,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86134,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86145,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86162,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86171,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86192,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86201,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86209,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86224,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86231,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86244,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86260,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86268,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86276,"TypeID":1,"Label":"","Tags":""},{"StructureID":86282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86315,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86327,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86345,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86353,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86356,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86369,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86418,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86420,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86438,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86444,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86464,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86473,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86485,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86496,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86512,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86582,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86607,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86609,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86614,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86634,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86662,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86667,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86672,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86685,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86744,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86767,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86783,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86799,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":86806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86812,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86818,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86854,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86862,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86871,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86888,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86891,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86898,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86904,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86915,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86927,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86934,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86940,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86945,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86951,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86971,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86997,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87002,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87005,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87052,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87067,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87076,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87098,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":87103,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87130,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87137,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87145,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87149,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87158,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87176,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87189,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87208,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87231,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87238,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87249,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87268,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87277,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87312,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87340,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87342,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87345,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87366,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87373,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87379,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":87385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87390,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87413,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87419,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87432,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87437,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87447,"TypeID":1,"Label":"","Tags":""},{"StructureID":87449,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87457,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87487,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87496,"TypeID":1,"Label":"","Tags":""},{"StructureID":87503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87562,"TypeID":1,"Label":"AI-like","Tags":""},{"StructureID":87569,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87589,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87612,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87626,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87635,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87654,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87667,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":87678,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87721,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87808,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87815,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87929,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87972,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":87979,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88003,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88036,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88055,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88082,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88132,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88139,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88154,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":88159,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":88173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88226,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88230,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88247,"TypeID":1,"Label":"","Tags":""},{"StructureID":88252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88260,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88266,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88270,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88290,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88300,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88313,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88344,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88365,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88370,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88375,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88413,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88485,"TypeID":1,"Label":"","Tags":""},{"StructureID":88493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88513,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88594,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88608,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88614,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88642,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88666,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88669,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88682,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88684,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":88689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88690,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88692,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88695,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88711,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88715,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88717,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88723,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88726,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88759,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88762,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88790,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88817,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88833,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88841,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":88864,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":88905,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":88912,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88923,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88929,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88945,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88984,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88996,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89008,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89016,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89024,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89058,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89066,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89085,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89086,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89113,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89119,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89120,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":89122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89124,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89133,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89136,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89157,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89181,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89193,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89231,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89248,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89279,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":89285,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":89292,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":89305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89312,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":89317,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89328,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89336,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89355,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":89359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89378,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89400,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89411,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89413,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89420,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":89427,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89447,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89478,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89501,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89503,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89516,"TypeID":1,"Label":"","Tags":""},{"StructureID":89522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89524,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":89533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89536,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":89538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89567,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89599,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89617,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89631,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89644,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89652,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89654,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89677,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89694,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89720,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89760,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89780,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89788,"TypeID":1,"Label":"","Tags":""},{"StructureID":89791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89822,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":89827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89833,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89887,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89902,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89907,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89910,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89915,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89921,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89928,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":89935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89984,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89988,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90004,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90013,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90047,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90049,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90061,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90066,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90079,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90111,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90113,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":90118,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90134,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90138,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90140,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90151,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90217,"TypeID":1,"Label":"GC?","Tags":""},{"StructureID":90234,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90278,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90284,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90363,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90396,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":90409,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90420,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90440,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90471,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90475,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90483,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90526,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90558,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90568,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90585,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90587,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90591,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90597,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90602,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90604,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90615,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90618,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90631,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90642,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90645,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90715,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":90739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90744,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90769,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90772,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90789,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90800,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90806,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90835,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90839,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90859,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90877,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90891,"TypeID":1,"Label":"","Tags":""},{"StructureID":90905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90917,"TypeID":1,"Label":"","Tags":""},{"StructureID":90919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90937,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90943,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90956,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90961,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90969,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90973,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90975,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90979,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90984,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90991,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91036,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91060,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91080,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91085,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91103,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91114,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91132,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91138,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91145,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91150,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91156,"TypeID":1,"Label":"","Tags":""},{"StructureID":91167,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91176,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91178,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91188,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91191,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91207,"TypeID":1,"Label":"GAC Aii?","Tags":""},{"StructureID":91213,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91232,"TypeID":1,"Label":"","Tags":""},{"StructureID":91240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91280,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":91376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91446,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91537,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91544,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91551,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91578,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91585,"TypeID":1,"Label":"","Tags":""},{"StructureID":91588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91597,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91653,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91692,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91694,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91727,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91730,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":91737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91742,"TypeID":1,"Label":"","Tags":""},{"StructureID":91743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91746,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91754,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91768,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91805,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91832,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91867,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91913,"TypeID":1,"Label":"","Tags":""},{"StructureID":91918,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91959,"TypeID":1,"Label":"","Tags":""},{"StructureID":91964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91979,"TypeID":1,"Label":"","Tags":""},{"StructureID":91983,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92031,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92100,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92149,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92169,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92186,"TypeID":1,"Label":"","Tags":""},{"StructureID":92193,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92226,"TypeID":1,"Label":"GAC Aii?","Tags":""},{"StructureID":92233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92250,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92295,"TypeID":1,"Label":"","Tags":""},{"StructureID":92313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92353,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92372,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92380,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92400,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92427,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92434,"TypeID":1,"Label":"","Tags":""},{"StructureID":92445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92631,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92789,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92899,"TypeID":1,"Label":"AC extension 91150","Tags":""},{"StructureID":92908,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92926,"TypeID":1,"Label":"AC 92899 extension","Tags":""},{"StructureID":92935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92942,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92954,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":92970,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":93053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93065,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93074,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93076,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93099,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":93112,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93139,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93172,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93248,"TypeID":1,"Label":"","Tags":""},{"StructureID":93277,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93281,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93315,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93325,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93336,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93355,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93386,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93392,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93407,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93413,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93416,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93420,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93431,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93456,"TypeID":1,"Label":"Aii","Tags":""},{"StructureID":93463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93489,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":93494,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93514,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":93523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93544,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93555,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93557,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93574,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93634,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93685,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93779,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93881,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":93915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93923,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93927,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93935,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93945,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93957,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93975,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93979,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93991,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94003,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94005,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94007,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94018,"TypeID":1,"Label":"","Tags":""},{"StructureID":94021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94031,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94038,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94048,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94082,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94136,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94153,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94220,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94231,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94234,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94251,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94252,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94279,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94281,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94297,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94320,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94326,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94344,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94365,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94391,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94409,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94414,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94417,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94500,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94507,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94525,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94536,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94583,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94649,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94652,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94660,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94664,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94692,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94705,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94741,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94784,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94794,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94796,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94803,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94824,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94838,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94867,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94878,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94918,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94926,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94939,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94956,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94983,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95062,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95066,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95072,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":95097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95134,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95238,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95250,"TypeID":1,"Label":"GAC Aii?","Tags":""},{"StructureID":95256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95260,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95307,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95319,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95323,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95343,"TypeID":1,"Label":"","Tags":""},{"StructureID":95349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95411,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95416,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95551,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95556,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95562,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95578,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95603,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95605,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95640,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95662,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95670,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95673,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95676,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95688,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95690,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95696,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95699,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95700,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95701,"TypeID":1,"Label":"","Tags":""},{"StructureID":95703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95708,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95717,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95759,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95863,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95877,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95895,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95910,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95911,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95922,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95927,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95945,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95959,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95983,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95997,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96011,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96036,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96083,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96143,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96152,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96202,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96234,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96238,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96249,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96268,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96270,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96293,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96308,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96310,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96311,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96315,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96319,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96325,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96341,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96407,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96413,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96435,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96442,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96494,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96506,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96519,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96522,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96555,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96562,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96589,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96617,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96619,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96621,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96629,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96638,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96649,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96657,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96668,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96679,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96699,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96705,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96708,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96711,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96736,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96738,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96768,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96779,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96786,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96788,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96794,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96801,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96805,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96812,"TypeID":1,"Label":"","Tags":""},{"StructureID":96822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96848,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96852,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96914,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96921,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96927,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96930,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96943,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96955,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96958,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96976,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96984,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96986,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96995,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96997,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97003,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97005,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97011,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97015,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97020,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97024,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97025,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97041,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97046,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97048,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97054,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97061,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97065,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97068,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97086,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97087,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97105,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97113,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97139,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97146,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97148,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97155,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97171,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97188,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97193,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97194,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97198,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97212,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97221,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97227,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97234,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97261,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97265,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97275,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97294,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97295,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97352,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":97355,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97358,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97363,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97417,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97420,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97439,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97464,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97475,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97485,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97492,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97494,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97500,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97509,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97514,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97532,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97546,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97558,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97568,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97575,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97578,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97597,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97605,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97627,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97671,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97676,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97684,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97722,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97730,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97743,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97764,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97774,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97780,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97786,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97790,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97792,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97794,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97797,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97803,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97814,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97828,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":97853,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97925,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97927,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97938,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97951,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97959,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98016,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98030,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98041,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98074,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98100,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98151,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98171,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98186,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98188,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98190,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98193,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98216,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98235,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98238,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98251,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98258,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98262,"TypeID":1,"Label":"","Tags":""},{"StructureID":98270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98279,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98289,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98314,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98345,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98348,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98365,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98372,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98375,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98409,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98411,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98413,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98418,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98434,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98438,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98456,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98471,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98484,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98530,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98534,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98535,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98537,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98550,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98574,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98585,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98599,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98611,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98618,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98627,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98655,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98694,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98714,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98725,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98749,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98751,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98758,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98759,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98762,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":98766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98786,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98800,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98823,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98833,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98843,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98849,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98864,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98878,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98891,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98914,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98917,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98924,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98927,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98929,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98958,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98960,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98962,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98983,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99004,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99012,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99016,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99025,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99040,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99047,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99048,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99054,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99062,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99065,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99076,"TypeID":1,"Label":"","Tags":""},{"StructureID":99077,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99080,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99088,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99094,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99096,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99100,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99106,"TypeID":1,"Label":"","Tags":""},{"StructureID":99112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99125,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99132,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99136,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99142,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99225,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99237,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99240,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99249,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99255,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99268,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99314,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99316,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99319,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99325,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99338,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99356,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":99361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99370,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":99375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99435,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99443,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99453,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99461,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99468,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99501,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99504,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99513,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":99515,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99546,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99551,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99575,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99586,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99589,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99614,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99617,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99628,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99632,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99639,"TypeID":1,"Label":"","Tags":""},{"StructureID":99642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99644,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99719,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99722,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99741,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99742,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99753,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99769,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99771,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99773,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99783,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99789,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99799,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99801,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99818,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99824,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99831,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99835,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99841,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99844,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99850,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99862,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99870,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99891,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99922,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99930,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99948,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99958,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99960,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99984,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100006,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100014,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100018,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100029,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100038,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100041,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100047,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100055,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100062,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100076,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100084,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100110,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100113,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100128,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100146,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100152,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100153,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100173,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100176,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100187,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100189,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":100195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100205,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100209,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100210,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100217,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100231,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100250,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100254,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100261,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100264,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100275,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100278,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100279,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100282,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":100289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100296,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100302,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100308,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100310,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100332,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100338,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100355,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100357,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100366,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100400,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100413,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100414,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100419,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100426,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100445,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100450,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100455,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100467,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100503,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100512,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100524,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100536,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100541,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100557,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100562,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100574,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100578,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100591,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100593,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100596,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100605,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100614,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100644,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100651,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100654,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":100664,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100667,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100669,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100685,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100692,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100709,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100713,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100717,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100729,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100733,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100741,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100744,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100752,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100765,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100771,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100787,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100788,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100803,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100808,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100816,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100820,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100826,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100828,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100835,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100837,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100877,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100878,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100888,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100895,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100918,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100934,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100942,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100953,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100972,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100981,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101000,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101004,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101015,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101031,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101041,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101050,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101085,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101090,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101124,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101129,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101138,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101142,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101145,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101161,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101187,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101190,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101194,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101201,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101206,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101213,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101230,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101234,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101238,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101249,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101257,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101261,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101277,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101294,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101360,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101368,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101369,"TypeID":1,"Label":"GCX","Tags":""},{"StructureID":101375,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101378,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101384,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101392,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101394,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101428,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101437,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101439,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101455,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101464,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101470,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101489,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101509,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101536,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101544,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101552,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101553,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":101558,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101567,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101570,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101574,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101578,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101581,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101583,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101592,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101594,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101596,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101598,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101602,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101613,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101615,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101617,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101625,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101644,"TypeID":1,"Label":"","Tags":""},{"StructureID":101647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101651,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101657,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101661,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101662,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101668,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101681,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101686,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101692,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101697,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101711,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101742,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101744,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101751,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101765,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101789,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101790,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101802,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101808,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101815,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101818,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101826,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101833,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101849,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101888,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101935,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101938,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101952,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101958,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101961,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101982,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102011,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102036,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102055,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102065,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102085,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102101,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102110,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102113,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102129,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102135,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102136,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102149,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102150,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102153,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102162,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102168,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102171,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102179,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102191,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102196,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102202,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102206,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102216,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102222,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102224,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102226,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102230,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102235,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102250,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102254,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102276,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102286,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102295,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102298,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102307,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102310,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102314,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102354,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102358,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102391,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102405,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102414,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102416,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102417,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102425,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102429,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102437,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102440,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102451,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102459,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":102461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102467,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102504,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102509,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102529,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102586,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102599,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102603,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102607,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102631,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102635,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102639,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102650,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102655,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102658,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102671,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102683,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102687,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102704,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102709,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102710,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102724,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102726,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102730,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102736,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102741,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102744,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102759,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102764,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102787,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102813,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102820,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102825,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102828,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102845,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102859,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102863,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102869,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102912,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102932,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102946,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102985,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103001,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103008,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103011,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103047,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103054,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103060,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103064,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103070,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103076,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103084,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103090,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103105,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103108,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103128,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103132,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103136,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103158,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103179,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103182,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103240,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103244,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103265,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103281,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103291,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103307,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103313,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103316,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103319,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103326,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103352,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103358,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103362,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103392,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103411,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103417,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103427,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103437,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103444,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103462,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103508,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103514,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103532,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103534,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103541,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103557,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103592,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103595,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103603,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103613,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103648,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103699,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103725,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103728,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103734,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103738,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103754,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103823,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103830,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103834,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103841,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103869,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103880,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103907,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103951,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103958,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103969,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103999,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104009,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104013,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104038,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104043,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104049,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104056,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104062,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104063,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104082,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104084,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104109,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104120,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104130,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104140,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104143,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104155,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104157,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104160,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104168,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104170,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104208,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104211,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104216,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104250,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104266,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104273,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104276,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104285,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104289,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104340,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104346,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104352,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104368,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104410,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104411,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104434,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104435,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104462,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104468,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104473,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104480,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104484,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104505,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104509,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104526,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104538,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104556,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104565,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104580,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104587,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104591,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104593,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104616,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104619,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104638,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104651,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104662,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104669,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104690,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104717,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104719,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104721,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104724,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104733,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104739,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104744,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104751,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104754,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104774,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104788,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104794,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104808,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104823,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104834,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104842,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104850,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104914,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104979,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104990,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104998,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105007,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105016,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105022,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105030,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105036,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105040,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105044,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105048,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105058,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105062,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105067,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105078,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105081,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105090,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105095,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105100,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105119,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105128,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105131,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105140,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105146,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105148,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105153,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105161,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105171,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105177,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105188,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105212,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":105219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105226,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105234,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105250,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105265,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105279,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105280,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105294,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105297,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105300,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105418,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105426,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105434,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105450,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105464,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":105467,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105471,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105509,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105511,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105547,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105553,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105558,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105580,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105585,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105612,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105633,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105635,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105643,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105666,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105679,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105694,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105729,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105739,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105745,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105780,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":105788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105862,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105873,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105875,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105878,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105881,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105884,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105907,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105927,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105942,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105968,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105971,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105972,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105982,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105990,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105996,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106000,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106007,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106023,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106041,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106048,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106059,"TypeID":1,"Label":"GAC?","Tags":""},{"StructureID":106060,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106070,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106080,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106083,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106087,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106107,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106119,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106131,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106134,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106143,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106153,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106158,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106170,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106177,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106179,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106213,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106240,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106247,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106249,"TypeID":1,"Label":"","Tags":""},{"StructureID":106253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106258,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106277,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106291,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106296,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106298,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106313,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106333,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106336,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106370,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106375,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106378,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106387,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106413,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106418,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106424,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106427,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106438,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106446,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106456,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106458,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106468,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106480,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106490,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106528,"TypeID":1,"Label":"CBax","Tags":""},{"StructureID":106531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106532,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106541,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106562,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106571,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106574,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106580,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106597,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106604,"TypeID":1,"Label":" AC","Tags":""},{"StructureID":106612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106616,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106617,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106619,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106637,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106659,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106661,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106665,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106675,"TypeID":1,"Label":"","Tags":""},{"StructureID":106689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106711,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106712,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106715,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106717,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106742,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106744,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106752,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106778,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106792,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106801,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106813,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106835,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106836,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106839,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106859,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106863,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106886,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106887,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106890,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106903,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106924,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107051,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107054,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107061,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107074,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107078,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107085,"TypeID":1,"Label":"","Tags":""},{"StructureID":107092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107126,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107132,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107134,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107156,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107176,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107179,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107196,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107213,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107248,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107262,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107265,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107267,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107275,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107306,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107328,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107330,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107344,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107360,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107367,"TypeID":1,"Label":"BC","Tags":""},{"StructureID":107370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107377,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107378,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107383,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107408,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107418,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107420,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107429,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107431,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107433,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107442,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107445,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107455,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107490,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107494,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107504,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107508,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107512,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107525,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107530,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107551,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107567,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107583,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107686,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107687,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107699,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107712,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107725,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107736,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107747,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107753,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107755,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107758,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107762,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107789,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107792,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107794,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107796,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107802,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107820,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107833,"TypeID":1,"Label":" AC","Tags":""},{"StructureID":107836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107838,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107843,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107845,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107853,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107875,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107887,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107908,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107910,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107918,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107930,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107937,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107939,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107957,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107961,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107973,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107974,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107979,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107981,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107982,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":107988,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108011,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108031,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108038,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108040,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108041,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108048,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108061,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108066,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108076,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108083,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108100,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108108,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108109,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108111,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108119,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108151,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108154,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108170,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108178,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108194,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108196,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108225,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108254,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108273,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108284,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108298,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108300,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108306,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108309,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108317,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108327,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108336,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108357,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108398,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108415,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108418,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108429,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108434,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108442,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108464,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108485,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108529,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108533,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108715,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108724,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108727,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108730,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108749,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108766,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108768,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108787,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108800,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108814,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108825,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108835,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108839,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108871,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108899,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108937,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108944,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108988,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108993,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108996,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109016,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109029,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109030,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109065,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109079,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109084,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109119,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109135,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109147,"TypeID":1,"Label":"","Tags":""},{"StructureID":109149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109210,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109214,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109216,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109226,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109251,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109257,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109277,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109291,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109308,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109341,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109420,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109450,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109456,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109488,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109504,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109540,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109565,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109574,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109597,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109608,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109678,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109681,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109696,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109706,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109710,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109742,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109762,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109778,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109781,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109793,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109799,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109802,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109809,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109814,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109816,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109825,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109834,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109839,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109887,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109893,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109922,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109924,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109943,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109952,"TypeID":1,"Label":"","Tags":""},{"StructureID":109956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109986,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110022,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110024,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110040,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110054,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110062,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110066,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110081,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110095,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110104,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110107,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110112,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110121,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110134,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110140,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110142,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110151,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110155,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110169,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110181,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110248,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110259,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110265,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110271,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110277,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110281,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110312,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110313,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110316,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110378,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110392,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110416,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110418,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110429,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110441,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110444,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110451,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110484,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110488,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110493,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110496,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110562,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110567,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110580,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110583,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110586,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110600,"TypeID":1,"Label":"Ac","Tags":""},{"StructureID":110607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110610,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110614,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110617,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110622,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110623,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110638,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110646,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110648,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110666,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110668,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110686,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110694,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110714,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110720,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110722,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110728,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110736,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110743,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110747,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110755,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110769,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110783,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110793,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110796,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110800,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110805,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110809,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110816,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110824,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110828,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110830,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110835,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110867,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110869,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110880,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110899,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110903,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110908,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110944,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110964,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110977,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110979,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111001,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111006,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111049,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111054,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111059,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111070,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111080,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111084,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111100,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111142,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111146,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111149,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111171,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111183,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":111187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111207,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111212,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111216,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111231,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111238,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111248,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111251,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111260,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111264,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111269,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111276,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111298,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111299,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111303,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111306,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111328,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111330,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111344,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111356,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111369,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111382,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111414,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111424,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111452,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111455,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111462,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111468,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111493,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111496,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111501,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111528,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111539,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111546,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111551,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111568,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111584,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111587,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111595,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111602,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111611,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111616,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111623,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111630,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111638,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111662,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111672,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111687,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111708,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111717,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111734,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111755,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111767,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111788,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111803,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111813,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111835,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111838,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111842,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111848,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111883,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111887,"TypeID":1,"Label":"","Tags":""},{"StructureID":111890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111899,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111914,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111929,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111937,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111939,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111953,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111963,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111968,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111980,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112005,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112017,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112020,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112024,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112028,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112036,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112042,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112049,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112062,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112071,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112077,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112081,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112084,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112087,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112089,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112094,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112105,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112111,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112120,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112128,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112142,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112155,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112160,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112166,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112168,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112176,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112184,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112186,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112188,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112199,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112203,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112205,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112207,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112209,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112217,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112221,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112230,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112241,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112244,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112253,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112255,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112271,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112273,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112286,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112290,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112319,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112351,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112358,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112384,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112386,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112392,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112402,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112404,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112409,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112411,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112415,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112419,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112427,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112447,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112455,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112458,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112468,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112480,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112496,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112507,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112525,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112545,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112584,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112594,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112634,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112638,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112661,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112666,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112684,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112689,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112692,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112694,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112700,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112712,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112729,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112748,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":112753,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112766,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112777,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112784,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112824,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112835,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112841,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112843,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112859,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112880,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112887,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112903,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112912,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112925,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112938,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112942,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112964,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112966,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112969,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112978,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112984,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112986,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113068,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113088,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113091,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113099,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113103,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113120,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113129,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113153,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113156,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113159,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113167,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113170,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113173,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113176,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113179,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113186,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113242,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113342,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113541,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":113547,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":113689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113810,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":113841,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113939,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114558,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114564,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114568,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114692,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114724,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114729,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114745,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114925,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":114931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114996,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115013,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":115118,"TypeID":1,"Label":"GAC AII","Tags":""},{"StructureID":115133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115424,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":115430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115432,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115504,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":115510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115529,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115537,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115574,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115581,"TypeID":1,"Label":"BC","Tags":""},{"StructureID":115602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115605,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115647,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115701,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115878,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115895,"TypeID":1,"Label":"","Tags":""},{"StructureID":115897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115940,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115942,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115953,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115974,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115983,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115984,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116142,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116279,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116378,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116400,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116475,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":116504,"TypeID":1,"Label":"","Tags":""},{"StructureID":116581,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116778,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116835,"TypeID":1,"Label":"Aii extension","Tags":""},{"StructureID":116919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116925,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":117065,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117112,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":117127,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":117132,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":117200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117242,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117285,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117394,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117404,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117406,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117408,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117411,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117429,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117461,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117470,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117645,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117659,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117662,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117668,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117670,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117679,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117689,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117774,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":117778,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":117780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117803,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117813,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117820,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117835,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117860,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117863,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117887,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117990,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":117999,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":118014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118058,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":118087,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":118258,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":118301,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":118315,"TypeID":1,"Label":"","Tags":""},{"StructureID":118372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":118398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118654,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":118682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118997,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":119000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119028,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":119154,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119241,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":119270,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":119517,"TypeID":1,"Label":"","Tags":""},{"StructureID":119547,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":119943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119945,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120194,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120197,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120253,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120285,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120299,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120303,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120311,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120323,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120359,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120370,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120372,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120389,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120393,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120398,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120400,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120409,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120416,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120420,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120423,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120425,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120445,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120452,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120464,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120470,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120489,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120494,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120497,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120499,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120509,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120518,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120538,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120542,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120546,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120552,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120556,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120565,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120630,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120632,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120634,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120639,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120674,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120777,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120779,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120783,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120885,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120888,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120890,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120892,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120898,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120909,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120911,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120915,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120917,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120923,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120925,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120945,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120956,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120963,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121006,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121009,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121048,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121066,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121075,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":121082,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121101,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121111,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121113,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121121,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121123,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121135,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121155,"TypeID":1,"Label":"","Tags":""},{"StructureID":121177,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":121258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121265,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121286,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121292,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121303,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121305,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121309,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121313,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121315,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121323,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121325,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121336,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121345,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121348,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121353,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121356,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121362,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121365,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121372,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121380,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121387,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121404,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121411,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121413,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121415,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121420,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121422,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121432,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121452,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121457,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121467,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121470,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121484,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121490,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121499,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121501,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121522,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121524,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121526,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121530,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121541,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":121635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121647,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121660,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":121663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121714,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121727,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121866,"TypeID":1,"Label":"","Tags":""},{"StructureID":121881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121899,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":121913,"TypeID":1,"Label":"","Tags":""},{"StructureID":121916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121946,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":121948,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":121952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121958,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121978,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122091,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":122104,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":122173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122207,"TypeID":1,"Label":"CB","Tags":""},{"StructureID":122242,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":122353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122415,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":122420,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":122424,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":122431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122463,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":122467,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":122469,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122484,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":122488,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":122564,"TypeID":1,"Label":"","Tags":""},{"StructureID":122595,"TypeID":1,"Label":"","Tags":""},{"StructureID":122663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122705,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":122707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122711,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":122716,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":122750,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":122756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122768,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":122777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122803,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122829,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":122849,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":122868,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":122893,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":122930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122933,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":123146,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":123181,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":123183,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":123186,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":123189,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":123192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123197,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":123199,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123209,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":123212,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":123215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":123227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123499,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":123551,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":123552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123576,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123675,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":124069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":124198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":124282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":124301,"TypeID":1,"Label":"","Tags":""},{"StructureID":124313,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":124402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":124486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":124547,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":124780,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":125157,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":125389,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":125397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":125685,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":125767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":125857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":125934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":125981,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":126012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126047,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126536,"TypeID":1,"Label":"CBax","Tags":""},{"StructureID":126582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126585,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127148,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127253,"TypeID":1,"Label":"","Tags":""},{"StructureID":127256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127277,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127302,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127306,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127719,"TypeID":1,"Label":"CBx 127719","Tags":""},{"StructureID":127749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127764,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":127776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127796,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127813,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127841,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127930,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":127940,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":127946,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":127953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127964,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":127972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127999,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":128006,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128015,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":128044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128060,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128082,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":128097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128101,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128122,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":128150,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":128152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128171,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":128184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128191,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128193,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128205,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":128278,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128685,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":128696,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128803,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":128843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129048,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":129144,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":129154,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129181,"TypeID":1,"Label":"CBax","Tags":""},{"StructureID":129192,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129292,"TypeID":1,"Label":"BC","Tags":""},{"StructureID":129340,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":129465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129466,"TypeID":35,"Label":null,"Tags":""},{"StructureID":129484,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129648,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129666,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129676,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129696,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129721,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129746,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129755,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129762,"TypeID":1,"Label":"CB","Tags":""},{"StructureID":129775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129781,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129788,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129798,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129800,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129827,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129840,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129851,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":129875,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":129877,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129924,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129927,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129952,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129954,"TypeID":1,"Label":"BC","Tags":""},{"StructureID":129956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129961,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129967,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129994,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":129995,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":130006,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130012,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130038,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130125,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130150,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130152,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130189,"TypeID":1,"Label":"","Tags":""},{"StructureID":130200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130208,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130237,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130255,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130256,"TypeID":1,"Label":"BC","Tags":""},{"StructureID":130365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130371,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":130383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130408,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130472,"TypeID":1,"Label":"","Tags":""},{"StructureID":130644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130755,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131177,"TypeID":1,"Label":"","Tags":""},{"StructureID":131244,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131284,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":131286,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":131364,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131630,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131664,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131708,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131740,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":131886,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":131988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132009,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":132021,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":132038,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":132081,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":132123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132135,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132158,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":132162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132202,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":132220,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":132255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132773,"TypeID":1,"Label":"GAC AII?","Tags":""},{"StructureID":133015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133451,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":133550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133744,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133755,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":133757,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":133779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134553,"TypeID":1,"Label":"","Tags":""},{"StructureID":134654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134662,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134677,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134701,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134706,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134952,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":134954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135039,"TypeID":1,"Label":"GAC AII?","Tags":""},{"StructureID":135052,"TypeID":1,"Label":"GAC AII?","Tags":""},{"StructureID":135183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135196,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":135208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135213,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135219,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":135225,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":135229,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":135258,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":135281,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":135295,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":135401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":135563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135862,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135877,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":135884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135956,"TypeID":1,"Label":"GAC?","Tags":""},{"StructureID":135982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136140,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":136169,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136177,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136256,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":136291,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136351,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":136362,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":136381,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":136393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136418,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":136427,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":136432,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":136465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136486,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":136513,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":136529,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":136531,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":136659,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136667,"TypeID":1,"Label":"","Tags":""},{"StructureID":136674,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136677,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136688,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136742,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136759,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136786,"TypeID":1,"Label":"","Tags":""},{"StructureID":136790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136826,"TypeID":1,"Label":"","Tags":""},{"StructureID":136843,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136884,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":136913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136927,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":137002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137009,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":137012,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":137024,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":137040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137070,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":137084,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":137099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":137113,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":137122,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":137147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137159,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":137162,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":137168,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":137189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137192,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147213,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":147217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147220,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":147412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147713,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147718,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147765,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":147769,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147776,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147781,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147796,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":147805,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147809,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":147818,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148300,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148317,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148332,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148335,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148346,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148354,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148358,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148374,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":148377,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":148381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148384,"TypeID":1,"Label":"","Tags":""},{"StructureID":148389,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":148397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148402,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":158472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158507,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158518,"TypeID":1,"Label":"BC ASB","Tags":""},{"StructureID":158538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158859,"TypeID":1,"Label":"","Tags":""},{"StructureID":158878,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158899,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159084,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159146,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159150,"TypeID":1,"Label":null,"Tags":""}],"edges":[{"ID":0,"SourceStructureID":8551,"TargetStructureID":115,"Label":"8551-115 via Gap Junction from 43755 -> 43754","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43755,"TargetID":43754,"Directional":false}]},{"ID":1,"SourceStructureID":138,"TargetStructureID":138,"Label":"138-138 via Gap Junction from 60162 -> 60163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60162,"TargetID":60163,"Directional":false}]},{"ID":2,"SourceStructureID":173,"TargetStructureID":138,"Label":"173-138 via Gap Junction from 46416 -> 46415","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46416,"TargetID":46415,"Directional":false}]},{"ID":3,"SourceStructureID":181,"TargetStructureID":138,"Label":"181-138 via Gap Junction from 20559 -> 20560","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20559,"TargetID":20560,"Directional":false}]},{"ID":4,"SourceStructureID":138,"TargetStructureID":11803,"Label":"138-11803 via Gap Junction from 11474 -> 11804","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":11474,"TargetID":11804,"Directional":false}]},{"ID":5,"SourceStructureID":142,"TargetStructureID":142,"Label":"142-142 via Gap Junction from 125969 -> 125970","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125969,"TargetID":125970,"Directional":false}]},{"ID":6,"SourceStructureID":142,"TargetStructureID":3116,"Label":"142-3116 via Gap Junction from 92141 -> 126379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92141,"TargetID":126379,"Directional":false}]},{"ID":7,"SourceStructureID":142,"TargetStructureID":3257,"Label":"142-3257 via Adherens from 125956 -> 125955, 125958 -> 125959","Type":"Adherens","Directional":false,"Links":[{"SourceID":125956,"TargetID":125955,"Directional":false},{"SourceID":125958,"TargetID":125959,"Directional":false}]},{"ID":8,"SourceStructureID":3257,"TargetStructureID":142,"Label":"3257-142 via Gap Junction from 9132 -> 119596, 119589 -> 88058, 126034 -> 126033, 126035 -> 126036","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9132,"TargetID":119596,"Directional":false},{"SourceID":119589,"TargetID":88058,"Directional":false},{"SourceID":126034,"TargetID":126033,"Directional":false},{"SourceID":126035,"TargetID":126036,"Directional":false}]},{"ID":9,"SourceStructureID":142,"TargetStructureID":3679,"Label":"142-3679 via Gap Junction from 33028 -> 33027","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":33028,"TargetID":33027,"Directional":false}]},{"ID":10,"SourceStructureID":5278,"TargetStructureID":142,"Label":"5278-142 via Adherens from 114532 -> 114533","Type":"Adherens","Directional":false,"Links":[{"SourceID":114532,"TargetID":114533,"Directional":false}]},{"ID":11,"SourceStructureID":142,"TargetStructureID":5278,"Label":"142-5278 via Gap Junction from 49731 -> 20124, 50308 -> 49773, 92394 -> 49740, 92395 -> 92396, 92934 -> 92933, 98430 -> 98431, 104867 -> 104868, 114493 -> 114492, 125976 -> 125977, 126121 -> 126122","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49731,"TargetID":20124,"Directional":false},{"SourceID":50308,"TargetID":49773,"Directional":false},{"SourceID":92394,"TargetID":49740,"Directional":false},{"SourceID":92395,"TargetID":92396,"Directional":false},{"SourceID":92934,"TargetID":92933,"Directional":false},{"SourceID":98430,"TargetID":98431,"Directional":false},{"SourceID":104867,"TargetID":104868,"Directional":false},{"SourceID":114493,"TargetID":114492,"Directional":false},{"SourceID":125976,"TargetID":125977,"Directional":false},{"SourceID":126121,"TargetID":126122,"Directional":false}]},{"ID":12,"SourceStructureID":5279,"TargetStructureID":142,"Label":"5279-142 via Gap Junction from 147688 -> 147689","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":147688,"TargetID":147689,"Directional":false}]},{"ID":13,"SourceStructureID":5284,"TargetStructureID":142,"Label":"5284-142 via Gap Junction from 92382 -> 49782","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92382,"TargetID":49782,"Directional":false}]},{"ID":14,"SourceStructureID":142,"TargetStructureID":5292,"Label":"142-5292 via Adherens from 126364 -> 126365","Type":"Adherens","Directional":false,"Links":[{"SourceID":126364,"TargetID":126365,"Directional":false}]},{"ID":15,"SourceStructureID":5292,"TargetStructureID":142,"Label":"5292-142 via Gap Junction from 49790 -> 49786, 92051 -> 92050","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49790,"TargetID":49786,"Directional":false},{"SourceID":92051,"TargetID":92050,"Directional":false}]},{"ID":16,"SourceStructureID":5297,"TargetStructureID":142,"Label":"5297-142 via Adherens from 126348 -> 126347, 126669 -> 126670","Type":"Adherens","Directional":false,"Links":[{"SourceID":126348,"TargetID":126347,"Directional":false},{"SourceID":126669,"TargetID":126670,"Directional":false}]},{"ID":17,"SourceStructureID":5297,"TargetStructureID":142,"Label":"5297-142 via Gap Junction from 50315 -> 49774, 50320 -> 49776, 53605 -> 53604, 56813 -> 49755, 65989 -> 65990, 92328 -> 92329, 126234 -> 126235","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50315,"TargetID":49774,"Directional":false},{"SourceID":50320,"TargetID":49776,"Directional":false},{"SourceID":53605,"TargetID":53604,"Directional":false},{"SourceID":56813,"TargetID":49755,"Directional":false},{"SourceID":65989,"TargetID":65990,"Directional":false},{"SourceID":92328,"TargetID":92329,"Directional":false},{"SourceID":126234,"TargetID":126235,"Directional":false}]},{"ID":18,"SourceStructureID":5487,"TargetStructureID":142,"Label":"5487-142 via Gap Junction from 91673 -> 50126","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91673,"TargetID":50126,"Directional":false}]},{"ID":19,"SourceStructureID":6117,"TargetStructureID":142,"Label":"6117-142 via Gap Junction from 125921 -> 125920, 126023 -> 126022","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125921,"TargetID":125920,"Directional":false},{"SourceID":126023,"TargetID":126022,"Directional":false}]},{"ID":20,"SourceStructureID":142,"TargetStructureID":6169,"Label":"142-6169 via Adherens from 126242 -> 126243, 147685 -> 147686","Type":"Adherens","Directional":false,"Links":[{"SourceID":126242,"TargetID":126243,"Directional":false},{"SourceID":147685,"TargetID":147686,"Directional":false}]},{"ID":21,"SourceStructureID":6169,"TargetStructureID":142,"Label":"6169-142 via Gap Junction from 16159 -> 11190, 20020 -> 20019, 31777 -> 16240, 32086 -> 24646, 35929 -> 11950, 49702 -> 49703, 49714 -> 16172, 49720 -> 49721, 49738 -> 18390, 56833 -> 56832, 88053 -> 16174, 126103 -> 9468, 126224 -> 126223, 126228 -> 126226","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16159,"TargetID":11190,"Directional":false},{"SourceID":20020,"TargetID":20019,"Directional":false},{"SourceID":31777,"TargetID":16240,"Directional":false},{"SourceID":32086,"TargetID":24646,"Directional":false},{"SourceID":35929,"TargetID":11950,"Directional":false},{"SourceID":49702,"TargetID":49703,"Directional":false},{"SourceID":49714,"TargetID":16172,"Directional":false},{"SourceID":49720,"TargetID":49721,"Directional":false},{"SourceID":49738,"TargetID":18390,"Directional":false},{"SourceID":56833,"TargetID":56832,"Directional":false},{"SourceID":88053,"TargetID":16174,"Directional":false},{"SourceID":126103,"TargetID":9468,"Directional":false},{"SourceID":126224,"TargetID":126223,"Directional":false},{"SourceID":126228,"TargetID":126226,"Directional":false}]},{"ID":22,"SourceStructureID":142,"TargetStructureID":9347,"Label":"142-9347 via Unknown from 126313 -> 126312, 126317 -> 126309","Type":"Unknown","Directional":false,"Links":[{"SourceID":126313,"TargetID":126312,"Directional":false},{"SourceID":126317,"TargetID":126309,"Directional":false}]},{"ID":23,"SourceStructureID":142,"TargetStructureID":18693,"Label":"142-18693 via Adherens from 126218 -> 27331","Type":"Adherens","Directional":false,"Links":[{"SourceID":126218,"TargetID":27331,"Directional":false}]},{"ID":24,"SourceStructureID":21299,"TargetStructureID":142,"Label":"21299-142 via Adherens from 125928 -> 125927, 126368 -> 126367, 147690 -> 147691","Type":"Adherens","Directional":false,"Links":[{"SourceID":125928,"TargetID":125927,"Directional":false},{"SourceID":126368,"TargetID":126367,"Directional":false},{"SourceID":147690,"TargetID":147691,"Directional":false}]},{"ID":25,"SourceStructureID":142,"TargetStructureID":21299,"Label":"142-21299 via Gap Junction from 44447 -> 44446, 49712 -> 49713, 50125 -> 48925, 91659 -> 91657, 92441 -> 92440, 125945 -> 125946, 125947 -> 125948, 125953 -> 125952, 126009 -> 126010, 126154 -> 126155, 126157 -> 126158","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44447,"TargetID":44446,"Directional":false},{"SourceID":49712,"TargetID":49713,"Directional":false},{"SourceID":50125,"TargetID":48925,"Directional":false},{"SourceID":91659,"TargetID":91657,"Directional":false},{"SourceID":92441,"TargetID":92440,"Directional":false},{"SourceID":125945,"TargetID":125946,"Directional":false},{"SourceID":125947,"TargetID":125948,"Directional":false},{"SourceID":125953,"TargetID":125952,"Directional":false},{"SourceID":126009,"TargetID":126010,"Directional":false},{"SourceID":126154,"TargetID":126155,"Directional":false},{"SourceID":126157,"TargetID":126158,"Directional":false}]},{"ID":26,"SourceStructureID":142,"TargetStructureID":21299,"Label":"142-21299 via Touch from 125936 -> 125937","Type":"Touch","Directional":false,"Links":[{"SourceID":125936,"TargetID":125937,"Directional":false}]},{"ID":27,"SourceStructureID":142,"TargetStructureID":30513,"Label":"142-30513 via Unknown from 125916 -> 125917","Type":"Unknown","Directional":false,"Links":[{"SourceID":125916,"TargetID":125917,"Directional":false}]},{"ID":28,"SourceStructureID":142,"TargetStructureID":39192,"Label":"142-39192 via Unknown from 125963 -> 125964","Type":"Unknown","Directional":false,"Links":[{"SourceID":125963,"TargetID":125964,"Directional":false}]},{"ID":29,"SourceStructureID":142,"TargetStructureID":66743,"Label":"142-66743 via Unknown from 126334 -> 126335","Type":"Unknown","Directional":false,"Links":[{"SourceID":126334,"TargetID":126335,"Directional":false}]},{"ID":30,"SourceStructureID":86334,"TargetStructureID":142,"Label":"86334-142 via Adherens from 126028 -> 126027","Type":"Adherens","Directional":false,"Links":[{"SourceID":126028,"TargetID":126027,"Directional":false}]},{"ID":31,"SourceStructureID":91613,"TargetStructureID":142,"Label":"91613-142 via Unknown from 98421 -> 98422","Type":"Unknown","Directional":false,"Links":[{"SourceID":98421,"TargetID":98422,"Directional":false}]},{"ID":32,"SourceStructureID":92295,"TargetStructureID":142,"Label":"92295-142 via Gap Junction from 127679 -> 126086","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":127679,"TargetID":126086,"Directional":false}]},{"ID":33,"SourceStructureID":142,"TargetStructureID":92295,"Label":"142-92295 via Unknown from 126095 -> 126096","Type":"Unknown","Directional":false,"Links":[{"SourceID":126095,"TargetID":126096,"Directional":false}]},{"ID":34,"SourceStructureID":142,"TargetStructureID":92434,"Label":"142-92434 via Adherens from 126463 -> 126464","Type":"Adherens","Directional":false,"Links":[{"SourceID":126463,"TargetID":126464,"Directional":false}]},{"ID":35,"SourceStructureID":92434,"TargetStructureID":142,"Label":"92434-142 via Gap Junction from 92435 -> 92436","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92435,"TargetID":92436,"Directional":false}]},{"ID":36,"SourceStructureID":142,"TargetStructureID":93355,"Label":"142-93355 via Unknown from 126642 -> 126643","Type":"Unknown","Directional":false,"Links":[{"SourceID":126642,"TargetID":126643,"Directional":false}]},{"ID":37,"SourceStructureID":104053,"TargetStructureID":142,"Label":"104053-142 via Unknown from 126147 -> 126148","Type":"Unknown","Directional":false,"Links":[{"SourceID":126147,"TargetID":126148,"Directional":false}]},{"ID":38,"SourceStructureID":142,"TargetStructureID":127667,"Label":"142-127667 via Adherens from 127670 -> 127669, 127673 -> 127672","Type":"Adherens","Directional":false,"Links":[{"SourceID":127670,"TargetID":127669,"Directional":false},{"SourceID":127673,"TargetID":127672,"Directional":false}]},{"ID":39,"SourceStructureID":142,"TargetStructureID":127667,"Label":"142-127667 via Gap Junction from 53597 -> 127674","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53597,"TargetID":127674,"Directional":false}]},{"ID":40,"SourceStructureID":142,"TargetStructureID":131177,"Label":"142-131177 via Unknown from 126006 -> 131179, 131184 -> 126040","Type":"Unknown","Directional":false,"Links":[{"SourceID":126006,"TargetID":131179,"Directional":false},{"SourceID":131184,"TargetID":126040,"Directional":false}]},{"ID":41,"SourceStructureID":153,"TargetStructureID":79068,"Label":"153-79068 via Adherens from 79120 -> 79121, 79122 -> 79124, 79143 -> 79142, 79145 -> 79146, 79267 -> 79268, 79288 -> 79287, 79290 -> 79291, 79335 -> 79336","Type":"Adherens","Directional":false,"Links":[{"SourceID":79120,"TargetID":79121,"Directional":false},{"SourceID":79122,"TargetID":79124,"Directional":false},{"SourceID":79143,"TargetID":79142,"Directional":false},{"SourceID":79145,"TargetID":79146,"Directional":false},{"SourceID":79267,"TargetID":79268,"Directional":false},{"SourceID":79288,"TargetID":79287,"Directional":false},{"SourceID":79290,"TargetID":79291,"Directional":false},{"SourceID":79335,"TargetID":79336,"Directional":false}]},{"ID":42,"SourceStructureID":79069,"TargetStructureID":153,"Label":"79069-153 via Adherens from 79078 -> 79077, 79119 -> 79118, 79289 -> 79288","Type":"Adherens","Directional":false,"Links":[{"SourceID":79078,"TargetID":79077,"Directional":false},{"SourceID":79119,"TargetID":79118,"Directional":false},{"SourceID":79289,"TargetID":79288,"Directional":false}]},{"ID":43,"SourceStructureID":79071,"TargetStructureID":153,"Label":"79071-153 via Adherens from 79085 -> 79086, 79087 -> 79088, 79089 -> 79090, 79128 -> 79127, 79130 -> 79129, 79131 -> 79132, 79301 -> 79300, 79307 -> 79305","Type":"Adherens","Directional":false,"Links":[{"SourceID":79085,"TargetID":79086,"Directional":false},{"SourceID":79087,"TargetID":79088,"Directional":false},{"SourceID":79089,"TargetID":79090,"Directional":false},{"SourceID":79128,"TargetID":79127,"Directional":false},{"SourceID":79130,"TargetID":79129,"Directional":false},{"SourceID":79131,"TargetID":79132,"Directional":false},{"SourceID":79301,"TargetID":79300,"Directional":false},{"SourceID":79307,"TargetID":79305,"Directional":false}]},{"ID":44,"SourceStructureID":153,"TargetStructureID":79072,"Label":"153-79072 via Adherens from 79307 -> 79306","Type":"Adherens","Directional":false,"Links":[{"SourceID":79307,"TargetID":79306,"Directional":false}]},{"ID":45,"SourceStructureID":153,"TargetStructureID":79091,"Label":"153-79091 via Adherens from 79096 -> 79095, 79108 -> 79107, 79125 -> 79126, 79268 -> 79266, 79299 -> 79298, 79334 -> 79333","Type":"Adherens","Directional":false,"Links":[{"SourceID":79096,"TargetID":79095,"Directional":false},{"SourceID":79108,"TargetID":79107,"Directional":false},{"SourceID":79125,"TargetID":79126,"Directional":false},{"SourceID":79268,"TargetID":79266,"Directional":false},{"SourceID":79299,"TargetID":79298,"Directional":false},{"SourceID":79334,"TargetID":79333,"Directional":false}]},{"ID":46,"SourceStructureID":161,"TargetStructureID":5502,"Label":"161-5502 via Gap Junction from 27223 -> 27257","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":27223,"TargetID":27257,"Directional":false}]},{"ID":47,"SourceStructureID":161,"TargetStructureID":11803,"Label":"161-11803 via Gap Junction from 39074 -> 39073","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39074,"TargetID":39073,"Directional":false}]},{"ID":48,"SourceStructureID":598,"TargetStructureID":162,"Label":"598-162 via Adherens from 70260 -> 70259","Type":"Adherens","Directional":false,"Links":[{"SourceID":70260,"TargetID":70259,"Directional":false}]},{"ID":49,"SourceStructureID":606,"TargetStructureID":162,"Label":"606-162 via Adherens from 51960 -> 51961","Type":"Adherens","Directional":false,"Links":[{"SourceID":51960,"TargetID":51961,"Directional":false}]},{"ID":50,"SourceStructureID":162,"TargetStructureID":5292,"Label":"162-5292 via Unknown from 133975 -> 126332","Type":"Unknown","Directional":false,"Links":[{"SourceID":133975,"TargetID":126332,"Directional":false}]},{"ID":51,"SourceStructureID":6203,"TargetStructureID":162,"Label":"6203-162 via Unknown from 125787 -> 125788","Type":"Unknown","Directional":false,"Links":[{"SourceID":125787,"TargetID":125788,"Directional":false}]},{"ID":52,"SourceStructureID":162,"TargetStructureID":20136,"Label":"162-20136 via Adherens from 109344 -> 109345","Type":"Adherens","Directional":false,"Links":[{"SourceID":109344,"TargetID":109345,"Directional":false}]},{"ID":53,"SourceStructureID":162,"TargetStructureID":20136,"Label":"162-20136 via Unknown from 109353 -> 109352, 109357 -> 109358","Type":"Unknown","Directional":false,"Links":[{"SourceID":109353,"TargetID":109352,"Directional":false},{"SourceID":109357,"TargetID":109358,"Directional":false}]},{"ID":54,"SourceStructureID":175,"TargetStructureID":165,"Label":"175-165 via Gap Junction from 21725 -> 21717","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":21725,"TargetID":21717,"Directional":false}]},{"ID":55,"SourceStructureID":478,"TargetStructureID":165,"Label":"478-165 via Gap Junction from 19425 -> 21714","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19425,"TargetID":21714,"Directional":false}]},{"ID":56,"SourceStructureID":4567,"TargetStructureID":165,"Label":"4567-165 via Gap Junction from 60859 -> 12550","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60859,"TargetID":12550,"Directional":false}]},{"ID":57,"SourceStructureID":5544,"TargetStructureID":165,"Label":"5544-165 via Gap Junction from 136926 -> 20845","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136926,"TargetID":20845,"Directional":false}]},{"ID":58,"SourceStructureID":64690,"TargetStructureID":165,"Label":"64690-165 via Gap Junction from 64694 -> 12592","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64694,"TargetID":12592,"Directional":false}]},{"ID":59,"SourceStructureID":166,"TargetStructureID":166,"Label":"166-166 via Gap Junction from 60037 -> 60039, 84786 -> 62878","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60037,"TargetID":60039,"Directional":false},{"SourceID":84786,"TargetID":62878,"Directional":false}]},{"ID":60,"SourceStructureID":166,"TargetStructureID":461,"Label":"166-461 via Gap Junction from 49829 -> 49828, 120406 -> 120405","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49829,"TargetID":49828,"Directional":false},{"SourceID":120406,"TargetID":120405,"Directional":false}]},{"ID":61,"SourceStructureID":166,"TargetStructureID":461,"Label":"166-461 via Touch from 99164 -> 99163","Type":"Touch","Directional":false,"Links":[{"SourceID":99164,"TargetID":99163,"Directional":false}]},{"ID":62,"SourceStructureID":483,"TargetStructureID":166,"Label":"483-166 via Gap Junction from 49148 -> 49149, 70964 -> 70962","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49148,"TargetID":49149,"Directional":false},{"SourceID":70964,"TargetID":70962,"Directional":false}]},{"ID":63,"SourceStructureID":593,"TargetStructureID":166,"Label":"593-166 via Gap Junction from 59690 -> 60010, 60047 -> 60046","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59690,"TargetID":60010,"Directional":false},{"SourceID":60047,"TargetID":60046,"Directional":false}]},{"ID":64,"SourceStructureID":166,"TargetStructureID":3257,"Label":"166-3257 via Gap Junction from 15455 -> 15454, 59879 -> 59880, 71485 -> 71484, 71931 -> 71930","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15455,"TargetID":15454,"Directional":false},{"SourceID":59879,"TargetID":59880,"Directional":false},{"SourceID":71485,"TargetID":71484,"Directional":false},{"SourceID":71931,"TargetID":71930,"Directional":false}]},{"ID":65,"SourceStructureID":166,"TargetStructureID":4570,"Label":"166-4570 via Gap Junction from 131394 -> 158463","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131394,"TargetID":158463,"Directional":false}]},{"ID":66,"SourceStructureID":5437,"TargetStructureID":166,"Label":"5437-166 via Unknown from 120349 -> 120350","Type":"Unknown","Directional":false,"Links":[{"SourceID":120349,"TargetID":120350,"Directional":false}]},{"ID":67,"SourceStructureID":5635,"TargetStructureID":166,"Label":"5635-166 via Adherens from 131174 -> 131173","Type":"Adherens","Directional":false,"Links":[{"SourceID":131174,"TargetID":131173,"Directional":false}]},{"ID":68,"SourceStructureID":5635,"TargetStructureID":166,"Label":"5635-166 via Gap Junction from 55950 -> 55949, 59899 -> 59900","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55950,"TargetID":55949,"Directional":false},{"SourceID":59899,"TargetID":59900,"Directional":false}]},{"ID":69,"SourceStructureID":6115,"TargetStructureID":166,"Label":"6115-166 via Gap Junction from 59987 -> 59986","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59987,"TargetID":59986,"Directional":false}]},{"ID":70,"SourceStructureID":166,"TargetStructureID":6169,"Label":"166-6169 via Gap Junction from 16163 -> 16160, 16245 -> 16246, 59969 -> 59967, 59981 -> 59982, 59990 -> 59989, 60001 -> 60002, 60041 -> 60040, 60044 -> 60043","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16163,"TargetID":16160,"Directional":false},{"SourceID":16245,"TargetID":16246,"Directional":false},{"SourceID":59969,"TargetID":59967,"Directional":false},{"SourceID":59981,"TargetID":59982,"Directional":false},{"SourceID":59990,"TargetID":59989,"Directional":false},{"SourceID":60001,"TargetID":60002,"Directional":false},{"SourceID":60041,"TargetID":60040,"Directional":false},{"SourceID":60044,"TargetID":60043,"Directional":false}]},{"ID":71,"SourceStructureID":8579,"TargetStructureID":166,"Label":"8579-166 via Adherens from 132997 -> 132998","Type":"Adherens","Directional":false,"Links":[{"SourceID":132997,"TargetID":132998,"Directional":false}]},{"ID":72,"SourceStructureID":166,"TargetStructureID":29198,"Label":"166-29198 via Unknown from 94756 -> 94757","Type":"Unknown","Directional":false,"Links":[{"SourceID":94756,"TargetID":94757,"Directional":false}]},{"ID":73,"SourceStructureID":39596,"TargetStructureID":166,"Label":"39596-166 via Unknown from 120351 -> 120352","Type":"Unknown","Directional":false,"Links":[{"SourceID":120351,"TargetID":120352,"Directional":false}]},{"ID":74,"SourceStructureID":66278,"TargetStructureID":166,"Label":"66278-166 via Adherens from 81898 -> 81899, 81901 -> 81900","Type":"Adherens","Directional":false,"Links":[{"SourceID":81898,"TargetID":81899,"Directional":false},{"SourceID":81901,"TargetID":81900,"Directional":false}]},{"ID":75,"SourceStructureID":66731,"TargetStructureID":166,"Label":"66731-166 via Adherens from 66738 -> 66739","Type":"Adherens","Directional":false,"Links":[{"SourceID":66738,"TargetID":66739,"Directional":false}]},{"ID":76,"SourceStructureID":166,"TargetStructureID":71426,"Label":"166-71426 via Unknown from 120345 -> 120346","Type":"Unknown","Directional":false,"Links":[{"SourceID":120345,"TargetID":120346,"Directional":false}]},{"ID":77,"SourceStructureID":71438,"TargetStructureID":166,"Label":"71438-166 via Adherens from 71451 -> 71450","Type":"Adherens","Directional":false,"Links":[{"SourceID":71451,"TargetID":71450,"Directional":false}]},{"ID":78,"SourceStructureID":71445,"TargetStructureID":166,"Label":"71445-166 via Adherens from 71459 -> 71460","Type":"Adherens","Directional":false,"Links":[{"SourceID":71459,"TargetID":71460,"Directional":false}]},{"ID":79,"SourceStructureID":71825,"TargetStructureID":166,"Label":"71825-166 via Gap Junction from 71826 -> 71824","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71826,"TargetID":71824,"Directional":false}]},{"ID":80,"SourceStructureID":90829,"TargetStructureID":166,"Label":"90829-166 via Adherens from 90833 -> 90834","Type":"Adherens","Directional":false,"Links":[{"SourceID":90833,"TargetID":90834,"Directional":false}]},{"ID":81,"SourceStructureID":166,"TargetStructureID":135052,"Label":"166-135052 via Gap Junction from 132042 -> 135053","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132042,"TargetID":135053,"Directional":false}]},{"ID":82,"SourceStructureID":168,"TargetStructureID":168,"Label":"168-168 via Gap Junction from 93063 -> 93062","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93063,"TargetID":93062,"Directional":false}]},{"ID":83,"SourceStructureID":168,"TargetStructureID":170,"Label":"168-170 via Gap Junction from 88340 -> 88339","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88340,"TargetID":88339,"Directional":false}]},{"ID":84,"SourceStructureID":168,"TargetStructureID":176,"Label":"168-176 via Gap Junction from 119633 -> 119632","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119633,"TargetID":119632,"Directional":false}]},{"ID":85,"SourceStructureID":595,"TargetStructureID":168,"Label":"595-168 via Adherens from 81950 -> 81949, 82491 -> 82492, 91198 -> 91197, 135697 -> 135696","Type":"Adherens","Directional":false,"Links":[{"SourceID":81950,"TargetID":81949,"Directional":false},{"SourceID":82491,"TargetID":82492,"Directional":false},{"SourceID":91198,"TargetID":91197,"Directional":false},{"SourceID":135697,"TargetID":135696,"Directional":false}]},{"ID":86,"SourceStructureID":168,"TargetStructureID":595,"Label":"168-595 via Gap Junction from 50954 -> 50955, 81947 -> 81948, 82489 -> 82490, 90915 -> 90914, 91135 -> 91136, 91200 -> 91199, 91238 -> 91239, 91752 -> 91753, 92613 -> 92612, 92769 -> 92770, 92821 -> 92822, 94436 -> 91248, 125198 -> 125199, 125725 -> 125724","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50954,"TargetID":50955,"Directional":false},{"SourceID":81947,"TargetID":81948,"Directional":false},{"SourceID":82489,"TargetID":82490,"Directional":false},{"SourceID":90915,"TargetID":90914,"Directional":false},{"SourceID":91135,"TargetID":91136,"Directional":false},{"SourceID":91200,"TargetID":91199,"Directional":false},{"SourceID":91238,"TargetID":91239,"Directional":false},{"SourceID":91752,"TargetID":91753,"Directional":false},{"SourceID":92613,"TargetID":92612,"Directional":false},{"SourceID":92769,"TargetID":92770,"Directional":false},{"SourceID":92821,"TargetID":92822,"Directional":false},{"SourceID":94436,"TargetID":91248,"Directional":false},{"SourceID":125198,"TargetID":125199,"Directional":false},{"SourceID":125725,"TargetID":125724,"Directional":false}]},{"ID":87,"SourceStructureID":168,"TargetStructureID":3116,"Label":"168-3116 via Gap Junction from 92532 -> 92533","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92532,"TargetID":92533,"Directional":false}]},{"ID":88,"SourceStructureID":168,"TargetStructureID":3257,"Label":"168-3257 via Gap Junction from 4172 -> 14932, 4210 -> 14931, 4334 -> 92504, 6701 -> 6702, 9123 -> 4202, 34080 -> 34081, 39016 -> 39015, 49161 -> 49162, 50963 -> 49164, 56980 -> 4288, 56982 -> 56981, 92505 -> 92506, 92537 -> 92538, 92746 -> 92747, 92756 -> 92755, 92792 -> 92791","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":4172,"TargetID":14932,"Directional":false},{"SourceID":4210,"TargetID":14931,"Directional":false},{"SourceID":4334,"TargetID":92504,"Directional":false},{"SourceID":6701,"TargetID":6702,"Directional":false},{"SourceID":9123,"TargetID":4202,"Directional":false},{"SourceID":34080,"TargetID":34081,"Directional":false},{"SourceID":39016,"TargetID":39015,"Directional":false},{"SourceID":49161,"TargetID":49162,"Directional":false},{"SourceID":50963,"TargetID":49164,"Directional":false},{"SourceID":56980,"TargetID":4288,"Directional":false},{"SourceID":56982,"TargetID":56981,"Directional":false},{"SourceID":92505,"TargetID":92506,"Directional":false},{"SourceID":92537,"TargetID":92538,"Directional":false},{"SourceID":92746,"TargetID":92747,"Directional":false},{"SourceID":92756,"TargetID":92755,"Directional":false},{"SourceID":92792,"TargetID":92791,"Directional":false}]},{"ID":89,"SourceStructureID":168,"TargetStructureID":4569,"Label":"168-4569 via Gap Junction from 119045 -> 119046, 119056 -> 119057","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119045,"TargetID":119046,"Directional":false},{"SourceID":119056,"TargetID":119057,"Directional":false}]},{"ID":90,"SourceStructureID":168,"TargetStructureID":4835,"Label":"168-4835 via Gap Junction from 92767 -> 92766","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92767,"TargetID":92766,"Directional":false}]},{"ID":91,"SourceStructureID":5487,"TargetStructureID":168,"Label":"5487-168 via Adherens from 92758 -> 50117, 119053 -> 119052","Type":"Adherens","Directional":false,"Links":[{"SourceID":92758,"TargetID":50117,"Directional":false},{"SourceID":119053,"TargetID":119052,"Directional":false}]},{"ID":92,"SourceStructureID":5530,"TargetStructureID":168,"Label":"5530-168 via Adherens from 82010 -> 82011","Type":"Adherens","Directional":false,"Links":[{"SourceID":82010,"TargetID":82011,"Directional":false}]},{"ID":93,"SourceStructureID":168,"TargetStructureID":5860,"Label":"168-5860 via Gap Junction from 50947 -> 29862","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50947,"TargetID":29862,"Directional":false}]},{"ID":94,"SourceStructureID":7564,"TargetStructureID":168,"Label":"7564-168 via Gap Junction from 29685 -> 4252, 50939 -> 50938, 125723 -> 29686","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29685,"TargetID":4252,"Directional":false},{"SourceID":50939,"TargetID":50938,"Directional":false},{"SourceID":125723,"TargetID":29686,"Directional":false}]},{"ID":95,"SourceStructureID":168,"TargetStructureID":7576,"Label":"168-7576 via Adherens from 54837 -> 54836, 55931 -> 55932","Type":"Adherens","Directional":false,"Links":[{"SourceID":54837,"TargetID":54836,"Directional":false},{"SourceID":55931,"TargetID":55932,"Directional":false}]},{"ID":96,"SourceStructureID":7576,"TargetStructureID":168,"Label":"7576-168 via Gap Junction from 55004 -> 55005","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55004,"TargetID":55005,"Directional":false}]},{"ID":97,"SourceStructureID":7576,"TargetStructureID":168,"Label":"7576-168 via Unknown from 54975 -> 54976","Type":"Unknown","Directional":false,"Links":[{"SourceID":54975,"TargetID":54976,"Directional":false}]},{"ID":98,"SourceStructureID":168,"TargetStructureID":8720,"Label":"168-8720 via Unknown from 82014 -> 82015, 92894 -> 92896","Type":"Unknown","Directional":false,"Links":[{"SourceID":82014,"TargetID":82015,"Directional":false},{"SourceID":92894,"TargetID":92896,"Directional":false}]},{"ID":99,"SourceStructureID":168,"TargetStructureID":21299,"Label":"168-21299 via Gap Junction from 30062 -> 30061, 35829 -> 35828, 48831 -> 48830, 49062 -> 48872, 50940 -> 50941, 56969 -> 56970, 91584 -> 91583, 91626 -> 91625, 91636 -> 91635","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30062,"TargetID":30061,"Directional":false},{"SourceID":35829,"TargetID":35828,"Directional":false},{"SourceID":48831,"TargetID":48830,"Directional":false},{"SourceID":49062,"TargetID":48872,"Directional":false},{"SourceID":50940,"TargetID":50941,"Directional":false},{"SourceID":56969,"TargetID":56970,"Directional":false},{"SourceID":91584,"TargetID":91583,"Directional":false},{"SourceID":91626,"TargetID":91625,"Directional":false},{"SourceID":91636,"TargetID":91635,"Directional":false}]},{"ID":100,"SourceStructureID":21299,"TargetStructureID":168,"Label":"21299-168 via Touch from 91664 -> 91663","Type":"Touch","Directional":false,"Links":[{"SourceID":91664,"TargetID":91663,"Directional":false}]},{"ID":101,"SourceStructureID":34055,"TargetStructureID":168,"Label":"34055-168 via Adherens from 82001 -> 82000","Type":"Adherens","Directional":false,"Links":[{"SourceID":82001,"TargetID":82000,"Directional":false}]},{"ID":102,"SourceStructureID":54021,"TargetStructureID":168,"Label":"54021-168 via Gap Junction from 115666 -> 54020","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115666,"TargetID":54020,"Directional":false}]},{"ID":103,"SourceStructureID":168,"TargetStructureID":81917,"Label":"168-81917 via Adherens from 81938 -> 81937","Type":"Adherens","Directional":false,"Links":[{"SourceID":81938,"TargetID":81937,"Directional":false}]},{"ID":104,"SourceStructureID":168,"TargetStructureID":81917,"Label":"168-81917 via Gap Junction from 81933 -> 81934, 81936 -> 81935","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81933,"TargetID":81934,"Directional":false},{"SourceID":81936,"TargetID":81935,"Directional":false}]},{"ID":105,"SourceStructureID":168,"TargetStructureID":81924,"Label":"168-81924 via Unknown from 81959 -> 81960","Type":"Unknown","Directional":false,"Links":[{"SourceID":81959,"TargetID":81960,"Directional":false}]},{"ID":106,"SourceStructureID":168,"TargetStructureID":82018,"Label":"168-82018 via Adherens from 82020 -> 82019","Type":"Adherens","Directional":false,"Links":[{"SourceID":82020,"TargetID":82019,"Directional":false}]},{"ID":107,"SourceStructureID":91178,"TargetStructureID":168,"Label":"91178-168 via Adherens from 92608 -> 92609","Type":"Adherens","Directional":false,"Links":[{"SourceID":92608,"TargetID":92609,"Directional":false}]},{"ID":108,"SourceStructureID":168,"TargetStructureID":91593,"Label":"168-91593 via Adherens from 92592 -> 92591","Type":"Adherens","Directional":false,"Links":[{"SourceID":92592,"TargetID":92591,"Directional":false}]},{"ID":109,"SourceStructureID":91742,"TargetStructureID":168,"Label":"91742-168 via Adherens from 92772 -> 92771","Type":"Adherens","Directional":false,"Links":[{"SourceID":92772,"TargetID":92771,"Directional":false}]},{"ID":110,"SourceStructureID":168,"TargetStructureID":92530,"Label":"168-92530 via Unknown from 92529 -> 92531","Type":"Unknown","Directional":false,"Links":[{"SourceID":92529,"TargetID":92531,"Directional":false}]},{"ID":111,"SourceStructureID":92734,"TargetStructureID":168,"Label":"92734-168 via Adherens from 92735 -> 92733","Type":"Adherens","Directional":false,"Links":[{"SourceID":92735,"TargetID":92733,"Directional":false}]},{"ID":112,"SourceStructureID":92780,"TargetStructureID":168,"Label":"92780-168 via Unknown from 92781 -> 92779","Type":"Unknown","Directional":false,"Links":[{"SourceID":92781,"TargetID":92779,"Directional":false}]},{"ID":113,"SourceStructureID":92789,"TargetStructureID":168,"Label":"92789-168 via Gap Junction from 92790 -> 92788","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92790,"TargetID":92788,"Directional":false}]},{"ID":114,"SourceStructureID":168,"TargetStructureID":93065,"Label":"168-93065 via Unknown from 93064 -> 93066","Type":"Unknown","Directional":false,"Links":[{"SourceID":93064,"TargetID":93066,"Directional":false}]},{"ID":115,"SourceStructureID":170,"TargetStructureID":170,"Label":"170-170 via Adherens from 92499 -> 92500","Type":"Adherens","Directional":false,"Links":[{"SourceID":92499,"TargetID":92500,"Directional":false}]},{"ID":116,"SourceStructureID":170,"TargetStructureID":170,"Label":"170-170 via Gap Junction from 1306 -> 89715, 89214 -> 1354, 90300 -> 90301, 90321 -> 90320, 90611 -> 90612, 134000 -> 134001","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":1306,"TargetID":89715,"Directional":false},{"SourceID":89214,"TargetID":1354,"Directional":false},{"SourceID":90300,"TargetID":90301,"Directional":false},{"SourceID":90321,"TargetID":90320,"Directional":false},{"SourceID":90611,"TargetID":90612,"Directional":false},{"SourceID":134000,"TargetID":134001,"Directional":false}]},{"ID":117,"SourceStructureID":170,"TargetStructureID":324,"Label":"170-324 via Adherens from 135518 -> 135517","Type":"Adherens","Directional":false,"Links":[{"SourceID":135518,"TargetID":135517,"Directional":false}]},{"ID":118,"SourceStructureID":324,"TargetStructureID":170,"Label":"324-170 via Gap Junction from 16014 -> 15994, 30752 -> 10789, 43318 -> 43317","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16014,"TargetID":15994,"Directional":false},{"SourceID":30752,"TargetID":10789,"Directional":false},{"SourceID":43318,"TargetID":43317,"Directional":false}]},{"ID":119,"SourceStructureID":330,"TargetStructureID":170,"Label":"330-170 via Gap Junction from 38575 -> 89027, 89211 -> 89212","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38575,"TargetID":89027,"Directional":false},{"SourceID":89211,"TargetID":89212,"Directional":false}]},{"ID":120,"SourceStructureID":364,"TargetStructureID":170,"Label":"364-170 via Gap Junction from 89189 -> 89188, 90541 -> 90542, 92473 -> 89395, 133998 -> 133999","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89189,"TargetID":89188,"Directional":false},{"SourceID":90541,"TargetID":90542,"Directional":false},{"SourceID":92473,"TargetID":89395,"Directional":false},{"SourceID":133998,"TargetID":133999,"Directional":false}]},{"ID":121,"SourceStructureID":366,"TargetStructureID":170,"Label":"366-170 via Touch from 135522 -> 135521","Type":"Touch","Directional":false,"Links":[{"SourceID":135522,"TargetID":135521,"Directional":false}]},{"ID":122,"SourceStructureID":170,"TargetStructureID":428,"Label":"170-428 via Touch from 90456 -> 90457","Type":"Touch","Directional":false,"Links":[{"SourceID":90456,"TargetID":90457,"Directional":false}]},{"ID":123,"SourceStructureID":476,"TargetStructureID":170,"Label":"476-170 via Gap Junction from 14970 -> 15998, 15996 -> 14972","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14970,"TargetID":15998,"Directional":false},{"SourceID":15996,"TargetID":14972,"Directional":false}]},{"ID":124,"SourceStructureID":170,"TargetStructureID":595,"Label":"170-595 via Adherens from 88342 -> 88341, 88509 -> 88508, 88531 -> 88532","Type":"Adherens","Directional":false,"Links":[{"SourceID":88342,"TargetID":88341,"Directional":false},{"SourceID":88509,"TargetID":88508,"Directional":false},{"SourceID":88531,"TargetID":88532,"Directional":false}]},{"ID":125,"SourceStructureID":595,"TargetStructureID":170,"Label":"595-170 via Gap Junction from 46640 -> 1195, 47919 -> 47804, 89084 -> 1249, 92687 -> 92688, 133939 -> 133940, 133942 -> 133941","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46640,"TargetID":1195,"Directional":false},{"SourceID":47919,"TargetID":47804,"Directional":false},{"SourceID":89084,"TargetID":1249,"Directional":false},{"SourceID":92687,"TargetID":92688,"Directional":false},{"SourceID":133939,"TargetID":133940,"Directional":false},{"SourceID":133942,"TargetID":133941,"Directional":false}]},{"ID":126,"SourceStructureID":606,"TargetStructureID":170,"Label":"606-170 via Adherens from 47809 -> 47808, 53196 -> 53197, 53363 -> 90268, 53367 -> 53368","Type":"Adherens","Directional":false,"Links":[{"SourceID":47809,"TargetID":47808,"Directional":false},{"SourceID":53196,"TargetID":53197,"Directional":false},{"SourceID":53363,"TargetID":90268,"Directional":false},{"SourceID":53367,"TargetID":53368,"Directional":false}]},{"ID":127,"SourceStructureID":170,"TargetStructureID":606,"Label":"170-606 via Unknown from 133908 -> 133909","Type":"Unknown","Directional":false,"Links":[{"SourceID":133908,"TargetID":133909,"Directional":false}]},{"ID":128,"SourceStructureID":170,"TargetStructureID":3116,"Label":"170-3116 via Adherens from 83178 -> 46568, 89673 -> 89674, 90267 -> 90266, 90293 -> 90291, 90295 -> 90294, 90434 -> 90433","Type":"Adherens","Directional":false,"Links":[{"SourceID":83178,"TargetID":46568,"Directional":false},{"SourceID":89673,"TargetID":89674,"Directional":false},{"SourceID":90267,"TargetID":90266,"Directional":false},{"SourceID":90293,"TargetID":90291,"Directional":false},{"SourceID":90295,"TargetID":90294,"Directional":false},{"SourceID":90434,"TargetID":90433,"Directional":false}]},{"ID":129,"SourceStructureID":3116,"TargetStructureID":170,"Label":"3116-170 via Gap Junction from 43553 -> 43551, 43558 -> 1307, 46553 -> 1387, 89722 -> 89723, 90264 -> 90263, 90265 -> 90262, 90405 -> 90406, 134002 -> 134003","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43553,"TargetID":43551,"Directional":false},{"SourceID":43558,"TargetID":1307,"Directional":false},{"SourceID":46553,"TargetID":1387,"Directional":false},{"SourceID":89722,"TargetID":89723,"Directional":false},{"SourceID":90264,"TargetID":90263,"Directional":false},{"SourceID":90265,"TargetID":90262,"Directional":false},{"SourceID":90405,"TargetID":90406,"Directional":false},{"SourceID":134002,"TargetID":134003,"Directional":false}]},{"ID":130,"SourceStructureID":3257,"TargetStructureID":170,"Label":"3257-170 via Gap Junction from 86963 -> 1114","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":86963,"TargetID":1114,"Directional":false}]},{"ID":131,"SourceStructureID":170,"TargetStructureID":4569,"Label":"170-4569 via Gap Junction from 43552 -> 52519, 90486 -> 90485","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43552,"TargetID":52519,"Directional":false},{"SourceID":90486,"TargetID":90485,"Directional":false}]},{"ID":132,"SourceStructureID":170,"TargetStructureID":5481,"Label":"170-5481 via Adherens from 90624 -> 90625","Type":"Adherens","Directional":false,"Links":[{"SourceID":90624,"TargetID":90625,"Directional":false}]},{"ID":133,"SourceStructureID":170,"TargetStructureID":5530,"Label":"170-5530 via Adherens from 135540 -> 135539, 135542 -> 135541","Type":"Adherens","Directional":false,"Links":[{"SourceID":135540,"TargetID":135539,"Directional":false},{"SourceID":135542,"TargetID":135541,"Directional":false}]},{"ID":134,"SourceStructureID":5530,"TargetStructureID":170,"Label":"5530-170 via Gap Junction from 45398 -> 45397, 47934 -> 47256, 74897 -> 74754, 75496 -> 82529, 76746 -> 76745, 82374 -> 75528, 82484 -> 82485","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45398,"TargetID":45397,"Directional":false},{"SourceID":47934,"TargetID":47256,"Directional":false},{"SourceID":74897,"TargetID":74754,"Directional":false},{"SourceID":75496,"TargetID":82529,"Directional":false},{"SourceID":76746,"TargetID":76745,"Directional":false},{"SourceID":82374,"TargetID":75528,"Directional":false},{"SourceID":82484,"TargetID":82485,"Directional":false}]},{"ID":135,"SourceStructureID":7564,"TargetStructureID":170,"Label":"7564-170 via Adherens from 135544 -> 135545","Type":"Adherens","Directional":false,"Links":[{"SourceID":135544,"TargetID":135545,"Directional":false}]},{"ID":136,"SourceStructureID":7564,"TargetStructureID":170,"Label":"7564-170 via Gap Junction from 82482 -> 82483, 89208 -> 89209, 89751 -> 89752, 90072 -> 90073, 92488 -> 92487, 92491 -> 92490","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":82482,"TargetID":82483,"Directional":false},{"SourceID":89208,"TargetID":89209,"Directional":false},{"SourceID":89751,"TargetID":89752,"Directional":false},{"SourceID":90072,"TargetID":90073,"Directional":false},{"SourceID":92488,"TargetID":92487,"Directional":false},{"SourceID":92491,"TargetID":92490,"Directional":false}]},{"ID":137,"SourceStructureID":9769,"TargetStructureID":170,"Label":"9769-170 via Unknown from 88483 -> 88482, 88755 -> 88754, 89731 -> 89732, 89733 -> 89734","Type":"Unknown","Directional":false,"Links":[{"SourceID":88483,"TargetID":88482,"Directional":false},{"SourceID":88755,"TargetID":88754,"Directional":false},{"SourceID":89731,"TargetID":89732,"Directional":false},{"SourceID":89733,"TargetID":89734,"Directional":false}]},{"ID":138,"SourceStructureID":32920,"TargetStructureID":170,"Label":"32920-170 via Adherens from 88456 -> 87127","Type":"Adherens","Directional":false,"Links":[{"SourceID":88456,"TargetID":87127,"Directional":false}]},{"ID":139,"SourceStructureID":170,"TargetStructureID":35653,"Label":"170-35653 via Adherens from 88363 -> 88364","Type":"Adherens","Directional":false,"Links":[{"SourceID":88363,"TargetID":88364,"Directional":false}]},{"ID":140,"SourceStructureID":38605,"TargetStructureID":170,"Label":"38605-170 via Unknown from 89468 -> 89467","Type":"Unknown","Directional":false,"Links":[{"SourceID":89468,"TargetID":89467,"Directional":false}]},{"ID":141,"SourceStructureID":40439,"TargetStructureID":170,"Label":"40439-170 via Unknown from 88389 -> 88387","Type":"Unknown","Directional":false,"Links":[{"SourceID":88389,"TargetID":88387,"Directional":false}]},{"ID":142,"SourceStructureID":71882,"TargetStructureID":170,"Label":"71882-170 via Unknown from 90417 -> 89197","Type":"Unknown","Directional":false,"Links":[{"SourceID":90417,"TargetID":89197,"Directional":false}]},{"ID":143,"SourceStructureID":86315,"TargetStructureID":170,"Label":"86315-170 via Adherens from 116720 -> 88520","Type":"Adherens","Directional":false,"Links":[{"SourceID":116720,"TargetID":88520,"Directional":false}]},{"ID":144,"SourceStructureID":88329,"TargetStructureID":170,"Label":"88329-170 via Adherens from 88330 -> 88331","Type":"Adherens","Directional":false,"Links":[{"SourceID":88330,"TargetID":88331,"Directional":false}]},{"ID":145,"SourceStructureID":170,"TargetStructureID":88343,"Label":"170-88343 via Unknown from 88357 -> 88358","Type":"Unknown","Directional":false,"Links":[{"SourceID":88357,"TargetID":88358,"Directional":false}]},{"ID":146,"SourceStructureID":170,"TargetStructureID":88424,"Label":"170-88424 via Adherens from 88441 -> 88442","Type":"Adherens","Directional":false,"Links":[{"SourceID":88441,"TargetID":88442,"Directional":false}]},{"ID":147,"SourceStructureID":170,"TargetStructureID":88446,"Label":"170-88446 via Unknown from 88448 -> 88449","Type":"Unknown","Directional":false,"Links":[{"SourceID":88448,"TargetID":88449,"Directional":false}]},{"ID":148,"SourceStructureID":88470,"TargetStructureID":170,"Label":"88470-170 via Unknown from 88471 -> 88472","Type":"Unknown","Directional":false,"Links":[{"SourceID":88471,"TargetID":88472,"Directional":false}]},{"ID":149,"SourceStructureID":88546,"TargetStructureID":170,"Label":"88546-170 via Adherens from 88548 -> 88549","Type":"Adherens","Directional":false,"Links":[{"SourceID":88548,"TargetID":88549,"Directional":false}]},{"ID":150,"SourceStructureID":170,"TargetStructureID":88550,"Label":"170-88550 via Unknown from 88772 -> 88771","Type":"Unknown","Directional":false,"Links":[{"SourceID":88772,"TargetID":88771,"Directional":false}]},{"ID":151,"SourceStructureID":88689,"TargetStructureID":170,"Label":"88689-170 via Unknown from 88701 -> 88700","Type":"Unknown","Directional":false,"Links":[{"SourceID":88701,"TargetID":88700,"Directional":false}]},{"ID":152,"SourceStructureID":170,"TargetStructureID":88692,"Label":"170-88692 via Adherens from 88699 -> 88698","Type":"Adherens","Directional":false,"Links":[{"SourceID":88699,"TargetID":88698,"Directional":false}]},{"ID":153,"SourceStructureID":170,"TargetStructureID":88709,"Label":"170-88709 via Adherens from 88708 -> 88710","Type":"Adherens","Directional":false,"Links":[{"SourceID":88708,"TargetID":88710,"Directional":false}]},{"ID":154,"SourceStructureID":170,"TargetStructureID":88711,"Label":"170-88711 via Adherens from 88713 -> 88714","Type":"Adherens","Directional":false,"Links":[{"SourceID":88713,"TargetID":88714,"Directional":false}]},{"ID":155,"SourceStructureID":88733,"TargetStructureID":170,"Label":"88733-170 via Adherens from 88734 -> 88735","Type":"Adherens","Directional":false,"Links":[{"SourceID":88734,"TargetID":88735,"Directional":false}]},{"ID":156,"SourceStructureID":170,"TargetStructureID":88736,"Label":"170-88736 via Unknown from 88746 -> 88745","Type":"Unknown","Directional":false,"Links":[{"SourceID":88746,"TargetID":88745,"Directional":false}]},{"ID":157,"SourceStructureID":170,"TargetStructureID":88947,"Label":"170-88947 via Unknown from 88953 -> 88952","Type":"Unknown","Directional":false,"Links":[{"SourceID":88953,"TargetID":88952,"Directional":false}]},{"ID":158,"SourceStructureID":88986,"TargetStructureID":170,"Label":"88986-170 via Unknown from 88994 -> 88995","Type":"Unknown","Directional":false,"Links":[{"SourceID":88994,"TargetID":88995,"Directional":false}]},{"ID":159,"SourceStructureID":88996,"TargetStructureID":170,"Label":"88996-170 via Adherens from 89003 -> 89004","Type":"Adherens","Directional":false,"Links":[{"SourceID":89003,"TargetID":89004,"Directional":false}]},{"ID":160,"SourceStructureID":89012,"TargetStructureID":170,"Label":"89012-170 via Adherens from 89014 -> 89013","Type":"Adherens","Directional":false,"Links":[{"SourceID":89014,"TargetID":89013,"Directional":false}]},{"ID":161,"SourceStructureID":89018,"TargetStructureID":170,"Label":"89018-170 via Unknown from 89023 -> 89022","Type":"Unknown","Directional":false,"Links":[{"SourceID":89023,"TargetID":89022,"Directional":false}]},{"ID":162,"SourceStructureID":170,"TargetStructureID":89073,"Label":"170-89073 via Unknown from 89070 -> 89077, 89080 -> 89081","Type":"Unknown","Directional":false,"Links":[{"SourceID":89070,"TargetID":89077,"Directional":false},{"SourceID":89080,"TargetID":89081,"Directional":false}]},{"ID":163,"SourceStructureID":89086,"TargetStructureID":170,"Label":"89086-170 via Unknown from 89174 -> 89172","Type":"Unknown","Directional":false,"Links":[{"SourceID":89174,"TargetID":89172,"Directional":false}]},{"ID":164,"SourceStructureID":170,"TargetStructureID":89181,"Label":"170-89181 via Adherens from 89183 -> 89182","Type":"Adherens","Directional":false,"Links":[{"SourceID":89183,"TargetID":89182,"Directional":false}]},{"ID":165,"SourceStructureID":170,"TargetStructureID":89190,"Label":"170-89190 via Adherens from 89192 -> 89191","Type":"Adherens","Directional":false,"Links":[{"SourceID":89192,"TargetID":89191,"Directional":false}]},{"ID":166,"SourceStructureID":89199,"TargetStructureID":170,"Label":"89199-170 via Adherens from 135537 -> 135536","Type":"Adherens","Directional":false,"Links":[{"SourceID":135537,"TargetID":135536,"Directional":false}]},{"ID":167,"SourceStructureID":170,"TargetStructureID":89225,"Label":"170-89225 via Postsynapse from 89226 -> 89227","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":89226,"TargetID":89227,"Directional":false}]},{"ID":168,"SourceStructureID":170,"TargetStructureID":89228,"Label":"170-89228 via Unknown from 89230 -> 89229","Type":"Unknown","Directional":false,"Links":[{"SourceID":89230,"TargetID":89229,"Directional":false}]},{"ID":169,"SourceStructureID":89232,"TargetStructureID":170,"Label":"89232-170 via Unknown from 89234 -> 89235","Type":"Unknown","Directional":false,"Links":[{"SourceID":89234,"TargetID":89235,"Directional":false}]},{"ID":170,"SourceStructureID":170,"TargetStructureID":89359,"Label":"170-89359 via Adherens from 89364 -> 89363, 89365 -> 89366","Type":"Adherens","Directional":false,"Links":[{"SourceID":89364,"TargetID":89363,"Directional":false},{"SourceID":89365,"TargetID":89366,"Directional":false}]},{"ID":171,"SourceStructureID":170,"TargetStructureID":89377,"Label":"170-89377 via Adherens from 89380 -> 89381","Type":"Adherens","Directional":false,"Links":[{"SourceID":89380,"TargetID":89381,"Directional":false}]},{"ID":172,"SourceStructureID":170,"TargetStructureID":89457,"Label":"170-89457 via Adherens from 89458 -> 89459","Type":"Adherens","Directional":false,"Links":[{"SourceID":89458,"TargetID":89459,"Directional":false}]},{"ID":173,"SourceStructureID":89460,"TargetStructureID":170,"Label":"89460-170 via Adherens from 89461 -> 89462","Type":"Adherens","Directional":false,"Links":[{"SourceID":89461,"TargetID":89462,"Directional":false}]},{"ID":174,"SourceStructureID":170,"TargetStructureID":89501,"Label":"170-89501 via Adherens from 89500 -> 89502, 89510 -> 89509","Type":"Adherens","Directional":false,"Links":[{"SourceID":89500,"TargetID":89502,"Directional":false},{"SourceID":89510,"TargetID":89509,"Directional":false}]},{"ID":175,"SourceStructureID":89503,"TargetStructureID":170,"Label":"89503-170 via Adherens from 89504 -> 88718","Type":"Adherens","Directional":false,"Links":[{"SourceID":89504,"TargetID":88718,"Directional":false}]},{"ID":176,"SourceStructureID":170,"TargetStructureID":89511,"Label":"170-89511 via Adherens from 89512 -> 89513","Type":"Adherens","Directional":false,"Links":[{"SourceID":89512,"TargetID":89513,"Directional":false}]},{"ID":177,"SourceStructureID":89516,"TargetStructureID":170,"Label":"89516-170 via Unknown from 89517 -> 1258","Type":"Unknown","Directional":false,"Links":[{"SourceID":89517,"TargetID":1258,"Directional":false}]},{"ID":178,"SourceStructureID":89682,"TargetStructureID":170,"Label":"89682-170 via Unknown from 89684 -> 89685","Type":"Unknown","Directional":false,"Links":[{"SourceID":89684,"TargetID":89685,"Directional":false}]},{"ID":179,"SourceStructureID":170,"TargetStructureID":89713,"Label":"170-89713 via Unknown from 92474 -> 92475","Type":"Unknown","Directional":false,"Links":[{"SourceID":92474,"TargetID":92475,"Directional":false}]},{"ID":180,"SourceStructureID":170,"TargetStructureID":89760,"Label":"170-89760 via Unknown from 90063 -> 90064","Type":"Unknown","Directional":false,"Links":[{"SourceID":90063,"TargetID":90064,"Directional":false}]},{"ID":181,"SourceStructureID":170,"TargetStructureID":89877,"Label":"170-89877 via Adherens from 89878 -> 89879","Type":"Adherens","Directional":false,"Links":[{"SourceID":89878,"TargetID":89879,"Directional":false}]},{"ID":182,"SourceStructureID":170,"TargetStructureID":89915,"Label":"170-89915 via Unknown from 89916 -> 89917","Type":"Unknown","Directional":false,"Links":[{"SourceID":89916,"TargetID":89917,"Directional":false}]},{"ID":183,"SourceStructureID":89962,"TargetStructureID":170,"Label":"89962-170 via Unknown from 89963 -> 89964","Type":"Unknown","Directional":false,"Links":[{"SourceID":89963,"TargetID":89964,"Directional":false}]},{"ID":184,"SourceStructureID":89970,"TargetStructureID":170,"Label":"89970-170 via Unknown from 89971 -> 89972","Type":"Unknown","Directional":false,"Links":[{"SourceID":89971,"TargetID":89972,"Directional":false}]},{"ID":185,"SourceStructureID":170,"TargetStructureID":89985,"Label":"170-89985 via Adherens from 90001 -> 90002","Type":"Adherens","Directional":false,"Links":[{"SourceID":90001,"TargetID":90002,"Directional":false}]},{"ID":186,"SourceStructureID":170,"TargetStructureID":90004,"Label":"170-90004 via Adherens from 90003 -> 90010","Type":"Adherens","Directional":false,"Links":[{"SourceID":90003,"TargetID":90010,"Directional":false}]},{"ID":187,"SourceStructureID":90013,"TargetStructureID":170,"Label":"90013-170 via Unknown from 90015 -> 90014","Type":"Unknown","Directional":false,"Links":[{"SourceID":90015,"TargetID":90014,"Directional":false}]},{"ID":188,"SourceStructureID":170,"TargetStructureID":90047,"Label":"170-90047 via Adherens from 90069 -> 90070","Type":"Adherens","Directional":false,"Links":[{"SourceID":90069,"TargetID":90070,"Directional":false}]},{"ID":189,"SourceStructureID":170,"TargetStructureID":90053,"Label":"170-90053 via Unknown from 90054 -> 90055","Type":"Unknown","Directional":false,"Links":[{"SourceID":90054,"TargetID":90055,"Directional":false}]},{"ID":190,"SourceStructureID":170,"TargetStructureID":90075,"Label":"170-90075 via Unknown from 90074 -> 90076","Type":"Unknown","Directional":false,"Links":[{"SourceID":90074,"TargetID":90076,"Directional":false}]},{"ID":191,"SourceStructureID":170,"TargetStructureID":90248,"Label":"170-90248 via Adherens from 90250 -> 90252","Type":"Adherens","Directional":false,"Links":[{"SourceID":90250,"TargetID":90252,"Directional":false}]},{"ID":192,"SourceStructureID":170,"TargetStructureID":90254,"Label":"170-90254 via Unknown from 90256 -> 90255","Type":"Unknown","Directional":false,"Links":[{"SourceID":90256,"TargetID":90255,"Directional":false}]},{"ID":193,"SourceStructureID":90280,"TargetStructureID":170,"Label":"90280-170 via Unknown from 90281 -> 90282","Type":"Unknown","Directional":false,"Links":[{"SourceID":90281,"TargetID":90282,"Directional":false}]},{"ID":194,"SourceStructureID":170,"TargetStructureID":90312,"Label":"170-90312 via BC Conventional Synapse from 92476 -> 90316","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":92476,"TargetID":90316,"Directional":false}]},{"ID":195,"SourceStructureID":170,"TargetStructureID":90339,"Label":"170-90339 via Adherens from 90338 -> 90344","Type":"Adherens","Directional":false,"Links":[{"SourceID":90338,"TargetID":90344,"Directional":false}]},{"ID":196,"SourceStructureID":170,"TargetStructureID":90373,"Label":"170-90373 via Unknown from 90377 -> 90375","Type":"Unknown","Directional":false,"Links":[{"SourceID":90377,"TargetID":90375,"Directional":false}]},{"ID":197,"SourceStructureID":90381,"TargetStructureID":170,"Label":"90381-170 via Adherens from 90386 -> 90387","Type":"Adherens","Directional":false,"Links":[{"SourceID":90386,"TargetID":90387,"Directional":false}]},{"ID":198,"SourceStructureID":90463,"TargetStructureID":170,"Label":"90463-170 via Adherens from 90465 -> 90464","Type":"Adherens","Directional":false,"Links":[{"SourceID":90465,"TargetID":90464,"Directional":false}]},{"ID":199,"SourceStructureID":170,"TargetStructureID":90471,"Label":"170-90471 via Unknown from 90472 -> 90473","Type":"Unknown","Directional":false,"Links":[{"SourceID":90472,"TargetID":90473,"Directional":false}]},{"ID":200,"SourceStructureID":90474,"TargetStructureID":170,"Label":"90474-170 via Adherens from 90476 -> 90477","Type":"Adherens","Directional":false,"Links":[{"SourceID":90476,"TargetID":90477,"Directional":false}]},{"ID":201,"SourceStructureID":90487,"TargetStructureID":170,"Label":"90487-170 via Unknown from 90493 -> 90494","Type":"Unknown","Directional":false,"Links":[{"SourceID":90493,"TargetID":90494,"Directional":false}]},{"ID":202,"SourceStructureID":170,"TargetStructureID":90488,"Label":"170-90488 via Unknown from 90538 -> 90539","Type":"Unknown","Directional":false,"Links":[{"SourceID":90538,"TargetID":90539,"Directional":false}]},{"ID":203,"SourceStructureID":90561,"TargetStructureID":170,"Label":"90561-170 via Adherens from 90562 -> 90560","Type":"Adherens","Directional":false,"Links":[{"SourceID":90562,"TargetID":90560,"Directional":false}]},{"ID":204,"SourceStructureID":170,"TargetStructureID":90568,"Label":"170-90568 via Unknown from 90574 -> 90575","Type":"Unknown","Directional":false,"Links":[{"SourceID":90574,"TargetID":90575,"Directional":false}]},{"ID":205,"SourceStructureID":170,"TargetStructureID":90582,"Label":"170-90582 via Adherens from 90581 -> 90583","Type":"Adherens","Directional":false,"Links":[{"SourceID":90581,"TargetID":90583,"Directional":false}]},{"ID":206,"SourceStructureID":90585,"TargetStructureID":170,"Label":"90585-170 via Unknown from 90595 -> 90596","Type":"Unknown","Directional":false,"Links":[{"SourceID":90595,"TargetID":90596,"Directional":false}]},{"ID":207,"SourceStructureID":92568,"TargetStructureID":170,"Label":"92568-170 via Unknown from 92569 -> 92567","Type":"Unknown","Directional":false,"Links":[{"SourceID":92569,"TargetID":92567,"Directional":false}]},{"ID":208,"SourceStructureID":171,"TargetStructureID":171,"Label":"171-171 via Gap Junction from 94458 -> 94459","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94458,"TargetID":94459,"Directional":false}]},{"ID":209,"SourceStructureID":171,"TargetStructureID":171,"Label":"171-171 via Unknown from 94449 -> 94448","Type":"Unknown","Directional":false,"Links":[{"SourceID":94449,"TargetID":94448,"Directional":false}]},{"ID":210,"SourceStructureID":172,"TargetStructureID":172,"Label":"172-172 via Gap Junction from 84542 -> 84543","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84542,"TargetID":84543,"Directional":false}]},{"ID":211,"SourceStructureID":173,"TargetStructureID":176,"Label":"173-176 via Unknown from 128239 -> 128240","Type":"Unknown","Directional":false,"Links":[{"SourceID":128239,"TargetID":128240,"Directional":false}]},{"ID":212,"SourceStructureID":173,"TargetStructureID":12099,"Label":"173-12099 via Gap Junction from 12097 -> 12100","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12097,"TargetID":12100,"Directional":false}]},{"ID":213,"SourceStructureID":41159,"TargetStructureID":173,"Label":"41159-173 via Gap Junction from 41165 -> 12006","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":41165,"TargetID":12006,"Directional":false}]},{"ID":214,"SourceStructureID":60071,"TargetStructureID":173,"Label":"60071-173 via Adherens from 60073 -> 60070","Type":"Adherens","Directional":false,"Links":[{"SourceID":60073,"TargetID":60070,"Directional":false}]},{"ID":215,"SourceStructureID":60071,"TargetStructureID":173,"Label":"60071-173 via Gap Junction from 60072 -> 60069","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60072,"TargetID":60069,"Directional":false}]},{"ID":216,"SourceStructureID":173,"TargetStructureID":88159,"Label":"173-88159 via Gap Junction from 88168 -> 88167, 88182 -> 88181","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88168,"TargetID":88167,"Directional":false},{"SourceID":88182,"TargetID":88181,"Directional":false}]},{"ID":217,"SourceStructureID":116475,"TargetStructureID":173,"Label":"116475-173 via Gap Junction from 116480 -> 12003","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116480,"TargetID":12003,"Directional":false}]},{"ID":218,"SourceStructureID":122242,"TargetStructureID":173,"Label":"122242-173 via Gap Junction from 122246 -> 122245","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122246,"TargetID":122245,"Directional":false}]},{"ID":219,"SourceStructureID":595,"TargetStructureID":176,"Label":"595-176 via Gap Junction from 46663 -> 46664, 119651 -> 119652, 128286 -> 128287","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46663,"TargetID":46664,"Directional":false},{"SourceID":119651,"TargetID":119652,"Directional":false},{"SourceID":128286,"TargetID":128287,"Directional":false}]},{"ID":220,"SourceStructureID":176,"TargetStructureID":4877,"Label":"176-4877 via Adherens from 91306 -> 91305, 128071 -> 128072, 128670 -> 128669, 128737 -> 128736","Type":"Adherens","Directional":false,"Links":[{"SourceID":91306,"TargetID":91305,"Directional":false},{"SourceID":128071,"TargetID":128072,"Directional":false},{"SourceID":128670,"TargetID":128669,"Directional":false},{"SourceID":128737,"TargetID":128736,"Directional":false}]},{"ID":221,"SourceStructureID":176,"TargetStructureID":4877,"Label":"176-4877 via Gap Junction from 62753 -> 62752, 91294 -> 91295, 91298 -> 91296, 91337 -> 91336, 124694 -> 124693, 125451 -> 125450","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":62753,"TargetID":62752,"Directional":false},{"SourceID":91294,"TargetID":91295,"Directional":false},{"SourceID":91298,"TargetID":91296,"Directional":false},{"SourceID":91337,"TargetID":91336,"Directional":false},{"SourceID":124694,"TargetID":124693,"Directional":false},{"SourceID":125451,"TargetID":125450,"Directional":false}]},{"ID":222,"SourceStructureID":176,"TargetStructureID":5442,"Label":"176-5442 via Adherens from 124631 -> 124632","Type":"Adherens","Directional":false,"Links":[{"SourceID":124631,"TargetID":124632,"Directional":false}]},{"ID":223,"SourceStructureID":5442,"TargetStructureID":176,"Label":"5442-176 via Unknown from 128231 -> 128230","Type":"Unknown","Directional":false,"Links":[{"SourceID":128231,"TargetID":128230,"Directional":false}]},{"ID":224,"SourceStructureID":176,"TargetStructureID":5481,"Label":"176-5481 via Adherens from 125367 -> 125368, 125411 -> 125410","Type":"Adherens","Directional":false,"Links":[{"SourceID":125367,"TargetID":125368,"Directional":false},{"SourceID":125411,"TargetID":125410,"Directional":false}]},{"ID":225,"SourceStructureID":176,"TargetStructureID":5482,"Label":"176-5482 via Unknown from 128005 -> 128004","Type":"Unknown","Directional":false,"Links":[{"SourceID":128005,"TargetID":128004,"Directional":false}]},{"ID":226,"SourceStructureID":176,"TargetStructureID":5530,"Label":"176-5530 via Gap Junction from 119655 -> 119654, 124562 -> 124563, 124870 -> 124871, 124892 -> 124891, 128281 -> 128280, 135583 -> 135582","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119655,"TargetID":119654,"Directional":false},{"SourceID":124562,"TargetID":124563,"Directional":false},{"SourceID":124870,"TargetID":124871,"Directional":false},{"SourceID":124892,"TargetID":124891,"Directional":false},{"SourceID":128281,"TargetID":128280,"Directional":false},{"SourceID":135583,"TargetID":135582,"Directional":false}]},{"ID":227,"SourceStructureID":176,"TargetStructureID":5531,"Label":"176-5531 via Adherens from 125430 -> 125431, 125441 -> 125442, 128262 -> 128263, 128667 -> 128668, 128707 -> 128706, 128726 -> 128727, 147468 -> 147469","Type":"Adherens","Directional":false,"Links":[{"SourceID":125430,"TargetID":125431,"Directional":false},{"SourceID":125441,"TargetID":125442,"Directional":false},{"SourceID":128262,"TargetID":128263,"Directional":false},{"SourceID":128667,"TargetID":128668,"Directional":false},{"SourceID":128707,"TargetID":128706,"Directional":false},{"SourceID":128726,"TargetID":128727,"Directional":false},{"SourceID":147468,"TargetID":147469,"Directional":false}]},{"ID":228,"SourceStructureID":176,"TargetStructureID":5531,"Label":"176-5531 via Gap Junction from 56488 -> 54567, 62930 -> 62931, 91661 -> 91660, 91672 -> 91670, 91686 -> 91688, 91697 -> 91696, 91706 -> 91707, 91717 -> 91718, 91877 -> 91876, 91911 -> 91909, 93441 -> 93440, 106919 -> 106920, 119678 -> 119679, 125388 -> 125387, 125818 -> 125817, 128333 -> 128334, 128438 -> 128437, 128445 -> 128444, 128665 -> 128666, 128678 -> 128679, 147467 -> 147466, 147471 -> 147470","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56488,"TargetID":54567,"Directional":false},{"SourceID":62930,"TargetID":62931,"Directional":false},{"SourceID":91661,"TargetID":91660,"Directional":false},{"SourceID":91672,"TargetID":91670,"Directional":false},{"SourceID":91686,"TargetID":91688,"Directional":false},{"SourceID":91697,"TargetID":91696,"Directional":false},{"SourceID":91706,"TargetID":91707,"Directional":false},{"SourceID":91717,"TargetID":91718,"Directional":false},{"SourceID":91877,"TargetID":91876,"Directional":false},{"SourceID":91911,"TargetID":91909,"Directional":false},{"SourceID":93441,"TargetID":93440,"Directional":false},{"SourceID":106919,"TargetID":106920,"Directional":false},{"SourceID":119678,"TargetID":119679,"Directional":false},{"SourceID":125388,"TargetID":125387,"Directional":false},{"SourceID":125818,"TargetID":125817,"Directional":false},{"SourceID":128333,"TargetID":128334,"Directional":false},{"SourceID":128438,"TargetID":128437,"Directional":false},{"SourceID":128445,"TargetID":128444,"Directional":false},{"SourceID":128665,"TargetID":128666,"Directional":false},{"SourceID":128678,"TargetID":128679,"Directional":false},{"SourceID":147467,"TargetID":147466,"Directional":false},{"SourceID":147471,"TargetID":147470,"Directional":false}]},{"ID":229,"SourceStructureID":5531,"TargetStructureID":176,"Label":"5531-176 via Touch from 147945 -> 147946","Type":"Touch","Directional":false,"Links":[{"SourceID":147945,"TargetID":147946,"Directional":false}]},{"ID":230,"SourceStructureID":5601,"TargetStructureID":176,"Label":"5601-176 via Gap Junction from 128738 -> 125849, 135585 -> 135584","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":128738,"TargetID":125849,"Directional":false},{"SourceID":135585,"TargetID":135584,"Directional":false}]},{"ID":231,"SourceStructureID":176,"TargetStructureID":5601,"Label":"176-5601 via Touch from 128740 -> 128741","Type":"Touch","Directional":false,"Links":[{"SourceID":128740,"TargetID":128741,"Directional":false}]},{"ID":232,"SourceStructureID":5641,"TargetStructureID":176,"Label":"5641-176 via Adherens from 124097 -> 124136","Type":"Adherens","Directional":false,"Links":[{"SourceID":124097,"TargetID":124136,"Directional":false}]},{"ID":233,"SourceStructureID":5641,"TargetStructureID":176,"Label":"5641-176 via Gap Junction from 124098 -> 124134","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124098,"TargetID":124134,"Directional":false}]},{"ID":234,"SourceStructureID":176,"TargetStructureID":5860,"Label":"176-5860 via Adherens from 92002 -> 92001, 124388 -> 124389, 128251 -> 128250, 128316 -> 128320","Type":"Adherens","Directional":false,"Links":[{"SourceID":92002,"TargetID":92001,"Directional":false},{"SourceID":124388,"TargetID":124389,"Directional":false},{"SourceID":128251,"TargetID":128250,"Directional":false},{"SourceID":128316,"TargetID":128320,"Directional":false}]},{"ID":235,"SourceStructureID":5860,"TargetStructureID":176,"Label":"5860-176 via Gap Junction from 20029 -> 20028, 24729 -> 5859, 54989 -> 54991, 77002 -> 6197, 91777 -> 91776, 91886 -> 91885, 92000 -> 54726, 119644 -> 119645, 119657 -> 119656, 119661 -> 6969, 128247 -> 128246, 128299 -> 128300","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20029,"TargetID":20028,"Directional":false},{"SourceID":24729,"TargetID":5859,"Directional":false},{"SourceID":54989,"TargetID":54991,"Directional":false},{"SourceID":77002,"TargetID":6197,"Directional":false},{"SourceID":91777,"TargetID":91776,"Directional":false},{"SourceID":91886,"TargetID":91885,"Directional":false},{"SourceID":92000,"TargetID":54726,"Directional":false},{"SourceID":119644,"TargetID":119645,"Directional":false},{"SourceID":119657,"TargetID":119656,"Directional":false},{"SourceID":119661,"TargetID":6969,"Directional":false},{"SourceID":128247,"TargetID":128246,"Directional":false},{"SourceID":128299,"TargetID":128300,"Directional":false}]},{"ID":236,"SourceStructureID":176,"TargetStructureID":6117,"Label":"176-6117 via Gap Junction from 58716 -> 58717, 135550 -> 135549","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58716,"TargetID":58717,"Directional":false},{"SourceID":135550,"TargetID":135549,"Directional":false}]},{"ID":237,"SourceStructureID":176,"TargetStructureID":6117,"Label":"176-6117 via Touch from 91854 -> 91853","Type":"Touch","Directional":false,"Links":[{"SourceID":91854,"TargetID":91853,"Directional":false}]},{"ID":238,"SourceStructureID":6169,"TargetStructureID":176,"Label":"6169-176 via Gap Junction from 35845 -> 35844","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35845,"TargetID":35844,"Directional":false}]},{"ID":239,"SourceStructureID":176,"TargetStructureID":7113,"Label":"176-7113 via Adherens from 128095 -> 128094","Type":"Adherens","Directional":false,"Links":[{"SourceID":128095,"TargetID":128094,"Directional":false}]},{"ID":240,"SourceStructureID":7113,"TargetStructureID":176,"Label":"7113-176 via Gap Junction from 58657 -> 58656, 58802 -> 58801, 91927 -> 91926, 91977 -> 91975","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58657,"TargetID":58656,"Directional":false},{"SourceID":58802,"TargetID":58801,"Directional":false},{"SourceID":91927,"TargetID":91926,"Directional":false},{"SourceID":91977,"TargetID":91975,"Directional":false}]},{"ID":241,"SourceStructureID":11229,"TargetStructureID":176,"Label":"11229-176 via Gap Junction from 15635 -> 128724","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15635,"TargetID":128724,"Directional":false}]},{"ID":242,"SourceStructureID":21299,"TargetStructureID":176,"Label":"21299-176 via Adherens from 128292 -> 128291","Type":"Adherens","Directional":false,"Links":[{"SourceID":128292,"TargetID":128291,"Directional":false}]},{"ID":243,"SourceStructureID":21299,"TargetStructureID":176,"Label":"21299-176 via Gap Junction from 54956 -> 54955, 91570 -> 91569","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54956,"TargetID":54955,"Directional":false},{"SourceID":91570,"TargetID":91569,"Directional":false}]},{"ID":244,"SourceStructureID":176,"TargetStructureID":38949,"Label":"176-38949 via Adherens from 128265 -> 128266","Type":"Adherens","Directional":false,"Links":[{"SourceID":128265,"TargetID":128266,"Directional":false}]},{"ID":245,"SourceStructureID":176,"TargetStructureID":38949,"Label":"176-38949 via Unknown from 128272 -> 128273","Type":"Unknown","Directional":false,"Links":[{"SourceID":128272,"TargetID":128273,"Directional":false}]},{"ID":246,"SourceStructureID":176,"TargetStructureID":44970,"Label":"176-44970 via Unknown from 124536 -> 128223","Type":"Unknown","Directional":false,"Links":[{"SourceID":124536,"TargetID":128223,"Directional":false}]},{"ID":247,"SourceStructureID":54895,"TargetStructureID":176,"Label":"54895-176 via Adherens from 124769 -> 124768","Type":"Adherens","Directional":false,"Links":[{"SourceID":124769,"TargetID":124768,"Directional":false}]},{"ID":248,"SourceStructureID":54948,"TargetStructureID":176,"Label":"54948-176 via Adherens from 128290 -> 128289","Type":"Adherens","Directional":false,"Links":[{"SourceID":128290,"TargetID":128289,"Directional":false}]},{"ID":249,"SourceStructureID":56802,"TargetStructureID":176,"Label":"56802-176 via Adherens from 128031 -> 128030","Type":"Adherens","Directional":false,"Links":[{"SourceID":128031,"TargetID":128030,"Directional":false}]},{"ID":250,"SourceStructureID":56802,"TargetStructureID":176,"Label":"56802-176 via Unknown from 119621 -> 119622, 119623 -> 119624","Type":"Unknown","Directional":false,"Links":[{"SourceID":119621,"TargetID":119622,"Directional":false},{"SourceID":119623,"TargetID":119624,"Directional":false}]},{"ID":251,"SourceStructureID":176,"TargetStructureID":58642,"Label":"176-58642 via Unknown from 128232 -> 128233","Type":"Unknown","Directional":false,"Links":[{"SourceID":128232,"TargetID":128233,"Directional":false}]},{"ID":252,"SourceStructureID":58709,"TargetStructureID":176,"Label":"58709-176 via Adherens from 128221 -> 124551","Type":"Adherens","Directional":false,"Links":[{"SourceID":128221,"TargetID":124551,"Directional":false}]},{"ID":253,"SourceStructureID":176,"TargetStructureID":80609,"Label":"176-80609 via Adherens from 124580 -> 124581","Type":"Adherens","Directional":false,"Links":[{"SourceID":124580,"TargetID":124581,"Directional":false}]},{"ID":254,"SourceStructureID":82577,"TargetStructureID":176,"Label":"82577-176 via Conventional from 82579 -> 82578","Type":"Conventional","Directional":false,"Links":[{"SourceID":82579,"TargetID":82578,"Directional":false}]},{"ID":255,"SourceStructureID":176,"TargetStructureID":82877,"Label":"176-82877 via Unknown from 128423 -> 128424","Type":"Unknown","Directional":false,"Links":[{"SourceID":128423,"TargetID":128424,"Directional":false}]},{"ID":256,"SourceStructureID":176,"TargetStructureID":86565,"Label":"176-86565 via Unknown from 124697 -> 124698","Type":"Unknown","Directional":false,"Links":[{"SourceID":124697,"TargetID":124698,"Directional":false}]},{"ID":257,"SourceStructureID":91793,"TargetStructureID":176,"Label":"91793-176 via Unknown from 91794 -> 91792","Type":"Unknown","Directional":false,"Links":[{"SourceID":91794,"TargetID":91792,"Directional":false}]},{"ID":258,"SourceStructureID":91832,"TargetStructureID":176,"Label":"91832-176 via Unknown from 91833 -> 91831","Type":"Unknown","Directional":false,"Links":[{"SourceID":91833,"TargetID":91831,"Directional":false}]},{"ID":259,"SourceStructureID":176,"TargetStructureID":91843,"Label":"176-91843 via Adherens from 128093 -> 128092","Type":"Adherens","Directional":false,"Links":[{"SourceID":128093,"TargetID":128092,"Directional":false}]},{"ID":260,"SourceStructureID":91843,"TargetStructureID":176,"Label":"91843-176 via Unknown from 91844 -> 91842","Type":"Unknown","Directional":false,"Links":[{"SourceID":91844,"TargetID":91842,"Directional":false}]},{"ID":261,"SourceStructureID":176,"TargetStructureID":91846,"Label":"176-91846 via Unknown from 91845 -> 91847","Type":"Unknown","Directional":false,"Links":[{"SourceID":91845,"TargetID":91847,"Directional":false}]},{"ID":262,"SourceStructureID":176,"TargetStructureID":91856,"Label":"176-91856 via Unknown from 91863 -> 91862, 124718 -> 124719","Type":"Unknown","Directional":false,"Links":[{"SourceID":91863,"TargetID":91862,"Directional":false},{"SourceID":124718,"TargetID":124719,"Directional":false}]},{"ID":263,"SourceStructureID":91867,"TargetStructureID":176,"Label":"91867-176 via Unknown from 128215 -> 128214","Type":"Unknown","Directional":false,"Links":[{"SourceID":128215,"TargetID":128214,"Directional":false}]},{"ID":264,"SourceStructureID":91871,"TargetStructureID":176,"Label":"91871-176 via Unknown from 91874 -> 5897","Type":"Unknown","Directional":false,"Links":[{"SourceID":91874,"TargetID":5897,"Directional":false}]},{"ID":265,"SourceStructureID":91888,"TargetStructureID":176,"Label":"91888-176 via Unknown from 91889 -> 91887, 124954 -> 124953","Type":"Unknown","Directional":false,"Links":[{"SourceID":91889,"TargetID":91887,"Directional":false},{"SourceID":124954,"TargetID":124953,"Directional":false}]},{"ID":266,"SourceStructureID":91918,"TargetStructureID":176,"Label":"91918-176 via Unknown from 125806 -> 125805","Type":"Unknown","Directional":false,"Links":[{"SourceID":125806,"TargetID":125805,"Directional":false}]},{"ID":267,"SourceStructureID":91921,"TargetStructureID":176,"Label":"91921-176 via Unknown from 91922 -> 91736, 128458 -> 128459","Type":"Unknown","Directional":false,"Links":[{"SourceID":91922,"TargetID":91736,"Directional":false},{"SourceID":128458,"TargetID":128459,"Directional":false}]},{"ID":268,"SourceStructureID":91924,"TargetStructureID":176,"Label":"91924-176 via Unknown from 91925 -> 91923","Type":"Unknown","Directional":false,"Links":[{"SourceID":91925,"TargetID":91923,"Directional":false}]},{"ID":269,"SourceStructureID":91930,"TargetStructureID":176,"Label":"91930-176 via Adherens from 128676 -> 128675","Type":"Adherens","Directional":false,"Links":[{"SourceID":128676,"TargetID":128675,"Directional":false}]},{"ID":270,"SourceStructureID":91930,"TargetStructureID":176,"Label":"91930-176 via Unknown from 91931 -> 91929","Type":"Unknown","Directional":false,"Links":[{"SourceID":91931,"TargetID":91929,"Directional":false}]},{"ID":271,"SourceStructureID":91959,"TargetStructureID":176,"Label":"91959-176 via Adherens from 125810 -> 125811","Type":"Adherens","Directional":false,"Links":[{"SourceID":125810,"TargetID":125811,"Directional":false}]},{"ID":272,"SourceStructureID":91990,"TargetStructureID":176,"Label":"91990-176 via Unknown from 91991 -> 91989","Type":"Unknown","Directional":false,"Links":[{"SourceID":91991,"TargetID":91989,"Directional":false}]},{"ID":273,"SourceStructureID":91994,"TargetStructureID":176,"Label":"91994-176 via Unknown from 91995 -> 91993","Type":"Unknown","Directional":false,"Links":[{"SourceID":91995,"TargetID":91993,"Directional":false}]},{"ID":274,"SourceStructureID":93437,"TargetStructureID":176,"Label":"93437-176 via Unknown from 124938 -> 124937","Type":"Unknown","Directional":false,"Links":[{"SourceID":124938,"TargetID":124937,"Directional":false}]},{"ID":275,"SourceStructureID":107476,"TargetStructureID":176,"Label":"107476-176 via Adherens from 128454 -> 128453","Type":"Adherens","Directional":false,"Links":[{"SourceID":128454,"TargetID":128453,"Directional":false}]},{"ID":276,"SourceStructureID":107483,"TargetStructureID":176,"Label":"107483-176 via Adherens from 125395 -> 125394","Type":"Adherens","Directional":false,"Links":[{"SourceID":125395,"TargetID":125394,"Directional":false}]},{"ID":277,"SourceStructureID":176,"TargetStructureID":107587,"Label":"176-107587 via Adherens from 125416 -> 125444","Type":"Adherens","Directional":false,"Links":[{"SourceID":125416,"TargetID":125444,"Directional":false}]},{"ID":278,"SourceStructureID":176,"TargetStructureID":107587,"Label":"176-107587 via Unknown from 125437 -> 125438","Type":"Unknown","Directional":false,"Links":[{"SourceID":125437,"TargetID":125438,"Directional":false}]},{"ID":279,"SourceStructureID":176,"TargetStructureID":107672,"Label":"176-107672 via Adherens from 91903 -> 125346","Type":"Adherens","Directional":false,"Links":[{"SourceID":91903,"TargetID":125346,"Directional":false}]},{"ID":280,"SourceStructureID":128685,"TargetStructureID":176,"Label":"128685-176 via Adherens from 128688 -> 125452","Type":"Adherens","Directional":false,"Links":[{"SourceID":128688,"TargetID":125452,"Directional":false}]},{"ID":281,"SourceStructureID":136680,"TargetStructureID":176,"Label":"136680-176 via Adherens from 136681 -> 124559","Type":"Adherens","Directional":false,"Links":[{"SourceID":136681,"TargetID":124559,"Directional":false}]},{"ID":282,"SourceStructureID":136680,"TargetStructureID":176,"Label":"136680-176 via Gap Junction from 136683 -> 128243","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136683,"TargetID":128243,"Directional":false}]},{"ID":283,"SourceStructureID":176,"TargetStructureID":147412,"Label":"176-147412 via Unknown from 125386 -> 147417, 147414 -> 128455","Type":"Unknown","Directional":false,"Links":[{"SourceID":125386,"TargetID":147417,"Directional":false},{"SourceID":147414,"TargetID":128455,"Directional":false}]},{"ID":284,"SourceStructureID":177,"TargetStructureID":177,"Label":"177-177 via Gap Junction from 117761 -> 117757","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117761,"TargetID":117757,"Directional":false}]},{"ID":285,"SourceStructureID":177,"TargetStructureID":5860,"Label":"177-5860 via Gap Junction from 5731 -> 54996, 5938 -> 8809, 117763 -> 117762","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":5731,"TargetID":54996,"Directional":false},{"SourceID":5938,"TargetID":8809,"Directional":false},{"SourceID":117763,"TargetID":117762,"Directional":false}]},{"ID":286,"SourceStructureID":7113,"TargetStructureID":177,"Label":"7113-177 via Gap Junction from 101841 -> 5964, 117755 -> 117754, 131420 -> 131419","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":101841,"TargetID":5964,"Directional":false},{"SourceID":117755,"TargetID":117754,"Directional":false},{"SourceID":131420,"TargetID":131419,"Directional":false}]},{"ID":287,"SourceStructureID":514,"TargetStructureID":179,"Label":"514-179 via Adherens from 103814 -> 103813","Type":"Adherens","Directional":false,"Links":[{"SourceID":103814,"TargetID":103813,"Directional":false}]},{"ID":288,"SourceStructureID":5303,"TargetStructureID":179,"Label":"5303-179 via Gap Junction from 101399 -> 104984","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":101399,"TargetID":104984,"Directional":false}]},{"ID":289,"SourceStructureID":179,"TargetStructureID":5860,"Label":"179-5860 via Adherens from 87475 -> 87476","Type":"Adherens","Directional":false,"Links":[{"SourceID":87475,"TargetID":87476,"Directional":false}]},{"ID":290,"SourceStructureID":6169,"TargetStructureID":179,"Label":"6169-179 via Adherens from 87474 -> 87473","Type":"Adherens","Directional":false,"Links":[{"SourceID":87474,"TargetID":87473,"Directional":false}]},{"ID":291,"SourceStructureID":10897,"TargetStructureID":179,"Label":"10897-179 via Unknown from 104878 -> 104877","Type":"Unknown","Directional":false,"Links":[{"SourceID":104878,"TargetID":104877,"Directional":false}]},{"ID":292,"SourceStructureID":16446,"TargetStructureID":179,"Label":"16446-179 via Unknown from 103860 -> 103859, 103864 -> 103863","Type":"Unknown","Directional":false,"Links":[{"SourceID":103860,"TargetID":103859,"Directional":false},{"SourceID":103864,"TargetID":103863,"Directional":false}]},{"ID":293,"SourceStructureID":46062,"TargetStructureID":179,"Label":"46062-179 via Adherens from 104654 -> 104653","Type":"Adherens","Directional":false,"Links":[{"SourceID":104654,"TargetID":104653,"Directional":false}]},{"ID":294,"SourceStructureID":130125,"TargetStructureID":179,"Label":"130125-179 via Adherens from 105205 -> 105204","Type":"Adherens","Directional":false,"Links":[{"SourceID":105205,"TargetID":105204,"Directional":false}]},{"ID":295,"SourceStructureID":180,"TargetStructureID":180,"Label":"180-180 via Gap Junction from 132865 -> 132866","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132865,"TargetID":132866,"Directional":false}]},{"ID":296,"SourceStructureID":180,"TargetStructureID":318,"Label":"180-318 via Adherens from 90896 -> 90895, 90897 -> 90894","Type":"Adherens","Directional":false,"Links":[{"SourceID":90896,"TargetID":90895,"Directional":false},{"SourceID":90897,"TargetID":90894,"Directional":false}]},{"ID":297,"SourceStructureID":593,"TargetStructureID":180,"Label":"593-180 via Gap Junction from 59789 -> 59790","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59789,"TargetID":59790,"Directional":false}]},{"ID":298,"SourceStructureID":180,"TargetStructureID":3257,"Label":"180-3257 via Gap Junction from 56880 -> 15453, 90864 -> 90863","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56880,"TargetID":15453,"Directional":false},{"SourceID":90864,"TargetID":90863,"Directional":false}]},{"ID":299,"SourceStructureID":180,"TargetStructureID":3679,"Label":"180-3679 via Adherens from 133136 -> 133135","Type":"Adherens","Directional":false,"Links":[{"SourceID":133136,"TargetID":133135,"Directional":false}]},{"ID":300,"SourceStructureID":180,"TargetStructureID":3679,"Label":"180-3679 via Gap Junction from 14925 -> 14924, 65608 -> 65609, 90964 -> 90963, 90998 -> 90997, 132920 -> 132919","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14925,"TargetID":14924,"Directional":false},{"SourceID":65608,"TargetID":65609,"Directional":false},{"SourceID":90964,"TargetID":90963,"Directional":false},{"SourceID":90998,"TargetID":90997,"Directional":false},{"SourceID":132920,"TargetID":132919,"Directional":false}]},{"ID":301,"SourceStructureID":180,"TargetStructureID":4570,"Label":"180-4570 via Adherens from 90858 -> 14419","Type":"Adherens","Directional":false,"Links":[{"SourceID":90858,"TargetID":14419,"Directional":false}]},{"ID":302,"SourceStructureID":4850,"TargetStructureID":180,"Label":"4850-180 via Unknown from 132923 -> 132922, 132981 -> 132980","Type":"Unknown","Directional":false,"Links":[{"SourceID":132923,"TargetID":132922,"Directional":false},{"SourceID":132981,"TargetID":132980,"Directional":false}]},{"ID":303,"SourceStructureID":5283,"TargetStructureID":180,"Label":"5283-180 via Adherens from 66309 -> 66308","Type":"Adherens","Directional":false,"Links":[{"SourceID":66309,"TargetID":66308,"Directional":false}]},{"ID":304,"SourceStructureID":180,"TargetStructureID":5303,"Label":"180-5303 via Unknown from 133124 -> 133125","Type":"Unknown","Directional":false,"Links":[{"SourceID":133124,"TargetID":133125,"Directional":false}]},{"ID":305,"SourceStructureID":180,"TargetStructureID":5618,"Label":"180-5618 via Adherens from 65981 -> 65980","Type":"Adherens","Directional":false,"Links":[{"SourceID":65981,"TargetID":65980,"Directional":false}]},{"ID":306,"SourceStructureID":180,"TargetStructureID":5618,"Label":"180-5618 via Unknown from 94654 -> 94653, 94690 -> 94691","Type":"Unknown","Directional":false,"Links":[{"SourceID":94654,"TargetID":94653,"Directional":false},{"SourceID":94690,"TargetID":94691,"Directional":false}]},{"ID":307,"SourceStructureID":6169,"TargetStructureID":180,"Label":"6169-180 via Adherens from 29259 -> 29258, 95289 -> 95288, 95345 -> 95346, 133133 -> 133134, 135068 -> 135067","Type":"Adherens","Directional":false,"Links":[{"SourceID":29259,"TargetID":29258,"Directional":false},{"SourceID":95289,"TargetID":95288,"Directional":false},{"SourceID":95345,"TargetID":95346,"Directional":false},{"SourceID":133133,"TargetID":133134,"Directional":false},{"SourceID":135068,"TargetID":135067,"Directional":false}]},{"ID":308,"SourceStructureID":180,"TargetStructureID":6169,"Label":"180-6169 via Gap Junction from 11942 -> 11949, 16167 -> 16166, 29257 -> 14940, 31102 -> 18393, 59670 -> 59671, 59678 -> 59677, 92724 -> 92725, 95555 -> 95554, 95974 -> 95973, 132843 -> 132842, 133066 -> 132900, 133116 -> 133117","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":11942,"TargetID":11949,"Directional":false},{"SourceID":16167,"TargetID":16166,"Directional":false},{"SourceID":29257,"TargetID":14940,"Directional":false},{"SourceID":31102,"TargetID":18393,"Directional":false},{"SourceID":59670,"TargetID":59671,"Directional":false},{"SourceID":59678,"TargetID":59677,"Directional":false},{"SourceID":92724,"TargetID":92725,"Directional":false},{"SourceID":95555,"TargetID":95554,"Directional":false},{"SourceID":95974,"TargetID":95973,"Directional":false},{"SourceID":132843,"TargetID":132842,"Directional":false},{"SourceID":133066,"TargetID":132900,"Directional":false},{"SourceID":133116,"TargetID":133117,"Directional":false}]},{"ID":309,"SourceStructureID":8579,"TargetStructureID":180,"Label":"8579-180 via Adherens from 90888 -> 90887","Type":"Adherens","Directional":false,"Links":[{"SourceID":90888,"TargetID":90887,"Directional":false}]},{"ID":310,"SourceStructureID":180,"TargetStructureID":9347,"Label":"180-9347 via Adherens from 90731 -> 90733, 90752 -> 90750","Type":"Adherens","Directional":false,"Links":[{"SourceID":90731,"TargetID":90733,"Directional":false},{"SourceID":90752,"TargetID":90750,"Directional":false}]},{"ID":311,"SourceStructureID":9347,"TargetStructureID":180,"Label":"9347-180 via Unknown from 90742 -> 90741, 90767 -> 90766","Type":"Unknown","Directional":false,"Links":[{"SourceID":90742,"TargetID":90741,"Directional":false},{"SourceID":90767,"TargetID":90766,"Directional":false}]},{"ID":312,"SourceStructureID":13492,"TargetStructureID":180,"Label":"13492-180 via Unknown from 94617 -> 94616","Type":"Unknown","Directional":false,"Links":[{"SourceID":94617,"TargetID":94616,"Directional":false}]},{"ID":313,"SourceStructureID":29277,"TargetStructureID":180,"Label":"29277-180 via Adherens from 132932 -> 132933","Type":"Adherens","Directional":false,"Links":[{"SourceID":132932,"TargetID":132933,"Directional":false}]},{"ID":314,"SourceStructureID":29277,"TargetStructureID":180,"Label":"29277-180 via Unknown from 132877 -> 132876","Type":"Unknown","Directional":false,"Links":[{"SourceID":132877,"TargetID":132876,"Directional":false}]},{"ID":315,"SourceStructureID":180,"TargetStructureID":30518,"Label":"180-30518 via Adherens from 90846 -> 90847","Type":"Adherens","Directional":false,"Links":[{"SourceID":90846,"TargetID":90847,"Directional":false}]},{"ID":316,"SourceStructureID":34601,"TargetStructureID":180,"Label":"34601-180 via Adherens from 95753 -> 95752","Type":"Adherens","Directional":false,"Links":[{"SourceID":95753,"TargetID":95752,"Directional":false}]},{"ID":317,"SourceStructureID":41042,"TargetStructureID":180,"Label":"41042-180 via Unknown from 133121 -> 95814","Type":"Unknown","Directional":false,"Links":[{"SourceID":133121,"TargetID":95814,"Directional":false}]},{"ID":318,"SourceStructureID":59422,"TargetStructureID":180,"Label":"59422-180 via Unknown from 95855 -> 95854","Type":"Unknown","Directional":false,"Links":[{"SourceID":95855,"TargetID":95854,"Directional":false}]},{"ID":319,"SourceStructureID":60535,"TargetStructureID":180,"Label":"60535-180 via Unknown from 95666 -> 95665","Type":"Unknown","Directional":false,"Links":[{"SourceID":95666,"TargetID":95665,"Directional":false}]},{"ID":320,"SourceStructureID":180,"TargetStructureID":64492,"Label":"180-64492 via Adherens from 133044 -> 133043","Type":"Adherens","Directional":false,"Links":[{"SourceID":133044,"TargetID":133043,"Directional":false}]},{"ID":321,"SourceStructureID":65963,"TargetStructureID":180,"Label":"65963-180 via Adherens from 65967 -> 65968","Type":"Adherens","Directional":false,"Links":[{"SourceID":65967,"TargetID":65968,"Directional":false}]},{"ID":322,"SourceStructureID":65963,"TargetStructureID":180,"Label":"65963-180 via Unknown from 94689 -> 94688","Type":"Unknown","Directional":false,"Links":[{"SourceID":94689,"TargetID":94688,"Directional":false}]},{"ID":323,"SourceStructureID":65971,"TargetStructureID":180,"Label":"65971-180 via Adherens from 133040 -> 133039","Type":"Adherens","Directional":false,"Links":[{"SourceID":133040,"TargetID":133039,"Directional":false}]},{"ID":324,"SourceStructureID":66535,"TargetStructureID":180,"Label":"66535-180 via Unknown from 66536 -> 59666","Type":"Unknown","Directional":false,"Links":[{"SourceID":66536,"TargetID":59666,"Directional":false}]},{"ID":325,"SourceStructureID":180,"TargetStructureID":71517,"Label":"180-71517 via Adherens from 75051 -> 75050","Type":"Adherens","Directional":false,"Links":[{"SourceID":75051,"TargetID":75050,"Directional":false}]},{"ID":326,"SourceStructureID":180,"TargetStructureID":75339,"Label":"180-75339 via Adherens from 95233 -> 95232","Type":"Adherens","Directional":false,"Links":[{"SourceID":95233,"TargetID":95232,"Directional":false}]},{"ID":327,"SourceStructureID":180,"TargetStructureID":84802,"Label":"180-84802 via Unknown from 132874 -> 132873","Type":"Unknown","Directional":false,"Links":[{"SourceID":132874,"TargetID":132873,"Directional":false}]},{"ID":328,"SourceStructureID":180,"TargetStructureID":90800,"Label":"180-90800 via Adherens from 90804 -> 90803","Type":"Adherens","Directional":false,"Links":[{"SourceID":90804,"TargetID":90803,"Directional":false}]},{"ID":329,"SourceStructureID":90809,"TargetStructureID":180,"Label":"90809-180 via Unknown from 90810 -> 90808","Type":"Unknown","Directional":false,"Links":[{"SourceID":90810,"TargetID":90808,"Directional":false}]},{"ID":330,"SourceStructureID":90844,"TargetStructureID":180,"Label":"90844-180 via Adherens from 132994 -> 132995","Type":"Adherens","Directional":false,"Links":[{"SourceID":132994,"TargetID":132995,"Directional":false}]},{"ID":331,"SourceStructureID":90883,"TargetStructureID":180,"Label":"90883-180 via Adherens from 90885 -> 90882","Type":"Adherens","Directional":false,"Links":[{"SourceID":90885,"TargetID":90882,"Directional":false}]},{"ID":332,"SourceStructureID":180,"TargetStructureID":90937,"Label":"180-90937 via Adherens from 90939 -> 90938","Type":"Adherens","Directional":false,"Links":[{"SourceID":90939,"TargetID":90938,"Directional":false}]},{"ID":333,"SourceStructureID":94613,"TargetStructureID":180,"Label":"94613-180 via Unknown from 94614 -> 94615","Type":"Unknown","Directional":false,"Links":[{"SourceID":94614,"TargetID":94615,"Directional":false}]},{"ID":334,"SourceStructureID":94637,"TargetStructureID":180,"Label":"94637-180 via Unknown from 94639 -> 94638","Type":"Unknown","Directional":false,"Links":[{"SourceID":94639,"TargetID":94638,"Directional":false}]},{"ID":335,"SourceStructureID":180,"TargetStructureID":94664,"Label":"180-94664 via Unknown from 132893 -> 132892","Type":"Unknown","Directional":false,"Links":[{"SourceID":132893,"TargetID":132892,"Directional":false}]},{"ID":336,"SourceStructureID":180,"TargetStructureID":94698,"Label":"180-94698 via Adherens from 132978 -> 132979","Type":"Adherens","Directional":false,"Links":[{"SourceID":132978,"TargetID":132979,"Directional":false}]},{"ID":337,"SourceStructureID":94702,"TargetStructureID":180,"Label":"94702-180 via Adherens from 94885 -> 94884","Type":"Adherens","Directional":false,"Links":[{"SourceID":94885,"TargetID":94884,"Directional":false}]},{"ID":338,"SourceStructureID":94702,"TargetStructureID":180,"Label":"94702-180 via Unknown from 94703 -> 94704","Type":"Unknown","Directional":false,"Links":[{"SourceID":94703,"TargetID":94704,"Directional":false}]},{"ID":339,"SourceStructureID":180,"TargetStructureID":94926,"Label":"180-94926 via Unknown from 59661 -> 94929","Type":"Unknown","Directional":false,"Links":[{"SourceID":59661,"TargetID":94929,"Directional":false}]},{"ID":340,"SourceStructureID":180,"TargetStructureID":94935,"Label":"180-94935 via Adherens from 91020 -> 94937","Type":"Adherens","Directional":false,"Links":[{"SourceID":91020,"TargetID":94937,"Directional":false}]},{"ID":341,"SourceStructureID":94952,"TargetStructureID":180,"Label":"94952-180 via Adherens from 94955 -> 94954","Type":"Adherens","Directional":false,"Links":[{"SourceID":94955,"TargetID":94954,"Directional":false}]},{"ID":342,"SourceStructureID":180,"TargetStructureID":94956,"Label":"180-94956 via Unknown from 94958 -> 94957","Type":"Unknown","Directional":false,"Links":[{"SourceID":94958,"TargetID":94957,"Directional":false}]},{"ID":343,"SourceStructureID":94962,"TargetStructureID":180,"Label":"94962-180 via Adherens from 132925 -> 132924","Type":"Adherens","Directional":false,"Links":[{"SourceID":132925,"TargetID":132924,"Directional":false}]},{"ID":344,"SourceStructureID":94978,"TargetStructureID":180,"Label":"94978-180 via Unknown from 132854 -> 132853","Type":"Unknown","Directional":false,"Links":[{"SourceID":132854,"TargetID":132853,"Directional":false}]},{"ID":345,"SourceStructureID":180,"TargetStructureID":94991,"Label":"180-94991 via Adherens from 132926 -> 132927","Type":"Adherens","Directional":false,"Links":[{"SourceID":132926,"TargetID":132927,"Directional":false}]},{"ID":346,"SourceStructureID":94993,"TargetStructureID":180,"Label":"94993-180 via Adherens from 94994 -> 29261","Type":"Adherens","Directional":false,"Links":[{"SourceID":94994,"TargetID":29261,"Directional":false}]},{"ID":347,"SourceStructureID":95241,"TargetStructureID":180,"Label":"95241-180 via Unknown from 95242 -> 95240","Type":"Unknown","Directional":false,"Links":[{"SourceID":95242,"TargetID":95240,"Directional":false}]},{"ID":348,"SourceStructureID":180,"TargetStructureID":95250,"Label":"180-95250 via Gap Junction from 133105 -> 133106","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133105,"TargetID":133106,"Directional":false}]},{"ID":349,"SourceStructureID":95299,"TargetStructureID":180,"Label":"95299-180 via Adherens from 95301 -> 95300","Type":"Adherens","Directional":false,"Links":[{"SourceID":95301,"TargetID":95300,"Directional":false}]},{"ID":350,"SourceStructureID":95299,"TargetStructureID":180,"Label":"95299-180 via Unknown from 132857 -> 132858","Type":"Unknown","Directional":false,"Links":[{"SourceID":132857,"TargetID":132858,"Directional":false}]},{"ID":351,"SourceStructureID":180,"TargetStructureID":95311,"Label":"180-95311 via Unknown from 95312 -> 95313, 132859 -> 132858","Type":"Unknown","Directional":false,"Links":[{"SourceID":95312,"TargetID":95313,"Directional":false},{"SourceID":132859,"TargetID":132858,"Directional":false}]},{"ID":352,"SourceStructureID":180,"TargetStructureID":95334,"Label":"180-95334 via Unknown from 95338 -> 95339, 95340 -> 95341, 132861 -> 132860","Type":"Unknown","Directional":false,"Links":[{"SourceID":95338,"TargetID":95339,"Directional":false},{"SourceID":95340,"TargetID":95341,"Directional":false},{"SourceID":132861,"TargetID":132860,"Directional":false}]},{"ID":353,"SourceStructureID":95349,"TargetStructureID":180,"Label":"95349-180 via Adherens from 132895 -> 132894","Type":"Adherens","Directional":false,"Links":[{"SourceID":132895,"TargetID":132894,"Directional":false}]},{"ID":354,"SourceStructureID":180,"TargetStructureID":95390,"Label":"180-95390 via Adherens from 95395 -> 95394, 132982 -> 132983","Type":"Adherens","Directional":false,"Links":[{"SourceID":95395,"TargetID":95394,"Directional":false},{"SourceID":132982,"TargetID":132983,"Directional":false}]},{"ID":355,"SourceStructureID":180,"TargetStructureID":95419,"Label":"180-95419 via Adherens from 95423 -> 95422","Type":"Adherens","Directional":false,"Links":[{"SourceID":95423,"TargetID":95422,"Directional":false}]},{"ID":356,"SourceStructureID":180,"TargetStructureID":95431,"Label":"180-95431 via Adherens from 95434 -> 95433","Type":"Adherens","Directional":false,"Links":[{"SourceID":95434,"TargetID":95433,"Directional":false}]},{"ID":357,"SourceStructureID":95457,"TargetStructureID":180,"Label":"95457-180 via Unknown from 95459 -> 95458","Type":"Unknown","Directional":false,"Links":[{"SourceID":95459,"TargetID":95458,"Directional":false}]},{"ID":358,"SourceStructureID":180,"TargetStructureID":95490,"Label":"180-95490 via Unknown from 95492 -> 95491","Type":"Unknown","Directional":false,"Links":[{"SourceID":95492,"TargetID":95491,"Directional":false}]},{"ID":359,"SourceStructureID":180,"TargetStructureID":95500,"Label":"180-95500 via Unknown from 95506 -> 95507","Type":"Unknown","Directional":false,"Links":[{"SourceID":95506,"TargetID":95507,"Directional":false}]},{"ID":360,"SourceStructureID":180,"TargetStructureID":95512,"Label":"180-95512 via Adherens from 95511 -> 95513","Type":"Adherens","Directional":false,"Links":[{"SourceID":95511,"TargetID":95513,"Directional":false}]},{"ID":361,"SourceStructureID":95530,"TargetStructureID":180,"Label":"95530-180 via Unknown from 95532 -> 95531","Type":"Unknown","Directional":false,"Links":[{"SourceID":95532,"TargetID":95531,"Directional":false}]},{"ID":362,"SourceStructureID":180,"TargetStructureID":95540,"Label":"180-95540 via Adherens from 132985 -> 132986","Type":"Adherens","Directional":false,"Links":[{"SourceID":132985,"TargetID":132986,"Directional":false}]},{"ID":363,"SourceStructureID":180,"TargetStructureID":95573,"Label":"180-95573 via Adherens from 132988 -> 132989","Type":"Adherens","Directional":false,"Links":[{"SourceID":132988,"TargetID":132989,"Directional":false}]},{"ID":364,"SourceStructureID":95612,"TargetStructureID":180,"Label":"95612-180 via Unknown from 95614 -> 95613","Type":"Unknown","Directional":false,"Links":[{"SourceID":95614,"TargetID":95613,"Directional":false}]},{"ID":365,"SourceStructureID":95626,"TargetStructureID":180,"Label":"95626-180 via Conventional from 95630 -> 95632","Type":"Conventional","Directional":false,"Links":[{"SourceID":95630,"TargetID":95632,"Directional":false}]},{"ID":366,"SourceStructureID":180,"TargetStructureID":95634,"Label":"180-95634 via Unknown from 132990 -> 132991","Type":"Unknown","Directional":false,"Links":[{"SourceID":132990,"TargetID":132991,"Directional":false}]},{"ID":367,"SourceStructureID":180,"TargetStructureID":95643,"Label":"180-95643 via Unknown from 95645 -> 95644","Type":"Unknown","Directional":false,"Links":[{"SourceID":95645,"TargetID":95644,"Directional":false}]},{"ID":368,"SourceStructureID":180,"TargetStructureID":95703,"Label":"180-95703 via Adherens from 95707 -> 95706","Type":"Adherens","Directional":false,"Links":[{"SourceID":95707,"TargetID":95706,"Directional":false}]},{"ID":369,"SourceStructureID":180,"TargetStructureID":95717,"Label":"180-95717 via Unknown from 132906 -> 132907","Type":"Unknown","Directional":false,"Links":[{"SourceID":132906,"TargetID":132907,"Directional":false}]},{"ID":370,"SourceStructureID":95723,"TargetStructureID":180,"Label":"95723-180 via Unknown from 95725 -> 95724","Type":"Unknown","Directional":false,"Links":[{"SourceID":95725,"TargetID":95724,"Directional":false}]},{"ID":371,"SourceStructureID":95751,"TargetStructureID":180,"Label":"95751-180 via Adherens from 132908 -> 132909","Type":"Adherens","Directional":false,"Links":[{"SourceID":132908,"TargetID":132909,"Directional":false}]},{"ID":372,"SourceStructureID":95804,"TargetStructureID":180,"Label":"95804-180 via Unknown from 95805 -> 95806","Type":"Unknown","Directional":false,"Links":[{"SourceID":95805,"TargetID":95806,"Directional":false}]},{"ID":373,"SourceStructureID":95807,"TargetStructureID":180,"Label":"95807-180 via Adherens from 132955 -> 132954","Type":"Adherens","Directional":false,"Links":[{"SourceID":132955,"TargetID":132954,"Directional":false}]},{"ID":374,"SourceStructureID":180,"TargetStructureID":95810,"Label":"180-95810 via Unknown from 133019 -> 133020","Type":"Unknown","Directional":false,"Links":[{"SourceID":133019,"TargetID":133020,"Directional":false}]},{"ID":375,"SourceStructureID":180,"TargetStructureID":95829,"Label":"180-95829 via Adherens from 132962 -> 132963","Type":"Adherens","Directional":false,"Links":[{"SourceID":132962,"TargetID":132963,"Directional":false}]},{"ID":376,"SourceStructureID":95840,"TargetStructureID":180,"Label":"95840-180 via Unknown from 132872 -> 132871","Type":"Unknown","Directional":false,"Links":[{"SourceID":132872,"TargetID":132871,"Directional":false}]},{"ID":377,"SourceStructureID":95863,"TargetStructureID":180,"Label":"95863-180 via Unknown from 95865 -> 95864","Type":"Unknown","Directional":false,"Links":[{"SourceID":95865,"TargetID":95864,"Directional":false}]},{"ID":378,"SourceStructureID":180,"TargetStructureID":95866,"Label":"180-95866 via Adherens from 133002 -> 133001, 133003 -> 133004","Type":"Adherens","Directional":false,"Links":[{"SourceID":133002,"TargetID":133001,"Directional":false},{"SourceID":133003,"TargetID":133004,"Directional":false}]},{"ID":379,"SourceStructureID":95883,"TargetStructureID":180,"Label":"95883-180 via Unknown from 95885 -> 95884","Type":"Unknown","Directional":false,"Links":[{"SourceID":95885,"TargetID":95884,"Directional":false}]},{"ID":380,"SourceStructureID":180,"TargetStructureID":95910,"Label":"180-95910 via Unknown from 95918 -> 95919","Type":"Unknown","Directional":false,"Links":[{"SourceID":95918,"TargetID":95919,"Directional":false}]},{"ID":381,"SourceStructureID":95911,"TargetStructureID":180,"Label":"95911-180 via Unknown from 95912 -> 90890","Type":"Unknown","Directional":false,"Links":[{"SourceID":95912,"TargetID":90890,"Directional":false}]},{"ID":382,"SourceStructureID":180,"TargetStructureID":95915,"Label":"180-95915 via Unknown from 114317 -> 114316","Type":"Unknown","Directional":false,"Links":[{"SourceID":114317,"TargetID":114316,"Directional":false}]},{"ID":383,"SourceStructureID":95917,"TargetStructureID":180,"Label":"95917-180 via Adherens from 132848 -> 90886","Type":"Adherens","Directional":false,"Links":[{"SourceID":132848,"TargetID":90886,"Directional":false}]},{"ID":384,"SourceStructureID":95951,"TargetStructureID":180,"Label":"95951-180 via Unknown from 95955 -> 95956","Type":"Unknown","Directional":false,"Links":[{"SourceID":95955,"TargetID":95956,"Directional":false}]},{"ID":385,"SourceStructureID":180,"TargetStructureID":95978,"Label":"180-95978 via Unknown from 133137 -> 133138","Type":"Unknown","Directional":false,"Links":[{"SourceID":133137,"TargetID":133138,"Directional":false}]},{"ID":386,"SourceStructureID":95986,"TargetStructureID":180,"Label":"95986-180 via Unknown from 95988 -> 95989","Type":"Unknown","Directional":false,"Links":[{"SourceID":95988,"TargetID":95989,"Directional":false}]},{"ID":387,"SourceStructureID":180,"TargetStructureID":95990,"Label":"180-95990 via Unknown from 95996 -> 95995","Type":"Unknown","Directional":false,"Links":[{"SourceID":95996,"TargetID":95995,"Directional":false}]},{"ID":388,"SourceStructureID":180,"TargetStructureID":95997,"Label":"180-95997 via Adherens from 96007 -> 96008, 116600 -> 116599","Type":"Adherens","Directional":false,"Links":[{"SourceID":96007,"TargetID":96008,"Directional":false},{"SourceID":116600,"TargetID":116599,"Directional":false}]},{"ID":389,"SourceStructureID":180,"TargetStructureID":96011,"Label":"180-96011 via Unknown from 96032 -> 96031","Type":"Unknown","Directional":false,"Links":[{"SourceID":96032,"TargetID":96031,"Directional":false}]},{"ID":390,"SourceStructureID":96023,"TargetStructureID":180,"Label":"96023-180 via Adherens from 96024 -> 96025","Type":"Adherens","Directional":false,"Links":[{"SourceID":96024,"TargetID":96025,"Directional":false}]},{"ID":391,"SourceStructureID":5278,"TargetStructureID":181,"Label":"5278-181 via Touch from 120264 -> 120265","Type":"Touch","Directional":false,"Links":[{"SourceID":120264,"TargetID":120265,"Directional":false}]},{"ID":392,"SourceStructureID":181,"TargetStructureID":92169,"Label":"181-92169 via Touch from 92172 -> 92171","Type":"Touch","Directional":false,"Links":[{"SourceID":92172,"TargetID":92171,"Directional":false}]},{"ID":393,"SourceStructureID":92175,"TargetStructureID":181,"Label":"92175-181 via Gap Junction from 92179 -> 92180","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92179,"TargetID":92180,"Directional":false}]},{"ID":394,"SourceStructureID":223,"TargetStructureID":284,"Label":"223-284 via Gap Junction from 17519 -> 17518, 17520 -> 14350, 17521 -> 17419, 131778 -> 131779","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17519,"TargetID":17518,"Directional":false},{"SourceID":17520,"TargetID":14350,"Directional":false},{"SourceID":17521,"TargetID":17419,"Directional":false},{"SourceID":131778,"TargetID":131779,"Directional":false}]},{"ID":395,"SourceStructureID":299,"TargetStructureID":223,"Label":"299-223 via Gap Junction from 47093 -> 17659","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47093,"TargetID":17659,"Directional":false}]},{"ID":396,"SourceStructureID":223,"TargetStructureID":307,"Label":"223-307 via Gap Junction from 96375 -> 96374","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96375,"TargetID":96374,"Directional":false}]},{"ID":397,"SourceStructureID":223,"TargetStructureID":309,"Label":"223-309 via Gap Junction from 122310 -> 122309","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122310,"TargetID":122309,"Directional":false}]},{"ID":398,"SourceStructureID":223,"TargetStructureID":321,"Label":"223-321 via Gap Junction from 115571 -> 115570","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115571,"TargetID":115570,"Directional":false}]},{"ID":399,"SourceStructureID":324,"TargetStructureID":223,"Label":"324-223 via Gap Junction from 94219 -> 94218, 96133 -> 96134, 96137 -> 96136","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94219,"TargetID":94218,"Directional":false},{"SourceID":96133,"TargetID":96134,"Directional":false},{"SourceID":96137,"TargetID":96136,"Directional":false}]},{"ID":400,"SourceStructureID":223,"TargetStructureID":410,"Label":"223-410 via Adherens from 17663 -> 17664","Type":"Adherens","Directional":false,"Links":[{"SourceID":17663,"TargetID":17664,"Directional":false}]},{"ID":401,"SourceStructureID":223,"TargetStructureID":410,"Label":"223-410 via Gap Junction from 14347 -> 14346, 17661 -> 17660, 17665 -> 9225, 18373 -> 17818, 18378 -> 18377, 18543 -> 18542","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14347,"TargetID":14346,"Directional":false},{"SourceID":17661,"TargetID":17660,"Directional":false},{"SourceID":17665,"TargetID":9225,"Directional":false},{"SourceID":18373,"TargetID":17818,"Directional":false},{"SourceID":18378,"TargetID":18377,"Directional":false},{"SourceID":18543,"TargetID":18542,"Directional":false}]},{"ID":402,"SourceStructureID":223,"TargetStructureID":2610,"Label":"223-2610 via Gap Junction from 17673 -> 17674","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17673,"TargetID":17674,"Directional":false}]},{"ID":403,"SourceStructureID":6153,"TargetStructureID":223,"Label":"6153-223 via Gap Junction from 17489 -> 17488, 17837 -> 16621, 29593 -> 29592, 29599 -> 29598","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17489,"TargetID":17488,"Directional":false},{"SourceID":17837,"TargetID":16621,"Directional":false},{"SourceID":29593,"TargetID":29592,"Directional":false},{"SourceID":29599,"TargetID":29598,"Directional":false}]},{"ID":404,"SourceStructureID":47195,"TargetStructureID":223,"Label":"47195-223 via Gap Junction from 47197 -> 47194, 47198 -> 58750","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47197,"TargetID":47194,"Directional":false},{"SourceID":47198,"TargetID":58750,"Directional":false}]},{"ID":405,"SourceStructureID":332,"TargetStructureID":268,"Label":"332-268 via Gap Junction from 94947 -> 43466","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94947,"TargetID":43466,"Directional":false}]},{"ID":406,"SourceStructureID":353,"TargetStructureID":268,"Label":"353-268 via Gap Junction from 122636 -> 122160","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122636,"TargetID":122160,"Directional":false}]},{"ID":407,"SourceStructureID":268,"TargetStructureID":7157,"Label":"268-7157 via Gap Junction from 122162 -> 122161","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122162,"TargetID":122161,"Directional":false}]},{"ID":408,"SourceStructureID":352,"TargetStructureID":273,"Label":"352-273 via Gap Junction from 94520 -> 94519","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94520,"TargetID":94519,"Directional":false}]},{"ID":409,"SourceStructureID":276,"TargetStructureID":284,"Label":"276-284 via Adherens from 29539 -> 29538","Type":"Adherens","Directional":false,"Links":[{"SourceID":29539,"TargetID":29538,"Directional":false}]},{"ID":410,"SourceStructureID":276,"TargetStructureID":284,"Label":"276-284 via Gap Junction from 29537 -> 29536, 122164 -> 122165, 122166 -> 29530","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29537,"TargetID":29536,"Directional":false},{"SourceID":122164,"TargetID":122165,"Directional":false},{"SourceID":122166,"TargetID":29530,"Directional":false}]},{"ID":411,"SourceStructureID":276,"TargetStructureID":332,"Label":"276-332 via Touch from 122170 -> 122169","Type":"Touch","Directional":false,"Links":[{"SourceID":122170,"TargetID":122169,"Directional":false}]},{"ID":412,"SourceStructureID":276,"TargetStructureID":6153,"Label":"276-6153 via Gap Junction from 122163 -> 29473","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122163,"TargetID":29473,"Directional":false}]},{"ID":413,"SourceStructureID":7157,"TargetStructureID":276,"Label":"7157-276 via Gap Junction from 31642 -> 31644, 31670 -> 31669","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":31642,"TargetID":31644,"Directional":false},{"SourceID":31670,"TargetID":31669,"Directional":false}]},{"ID":414,"SourceStructureID":277,"TargetStructureID":277,"Label":"277-277 via Gap Junction from 115500 -> 115499","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115500,"TargetID":115499,"Directional":false}]},{"ID":415,"SourceStructureID":277,"TargetStructureID":278,"Label":"277-278 via Adherens from 39019 -> 39018","Type":"Adherens","Directional":false,"Links":[{"SourceID":39019,"TargetID":39018,"Directional":false}]},{"ID":416,"SourceStructureID":327,"TargetStructureID":277,"Label":"327-277 via Adherens from 115507 -> 115506","Type":"Adherens","Directional":false,"Links":[{"SourceID":115507,"TargetID":115506,"Directional":false}]},{"ID":417,"SourceStructureID":277,"TargetStructureID":327,"Label":"277-327 via Gap Junction from 23396 -> 23397, 58591 -> 58590, 115502 -> 115501, 115518 -> 115517, 115541 -> 115539, 115551 -> 115546, 122135 -> 122133, 122136 -> 122137","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23396,"TargetID":23397,"Directional":false},{"SourceID":58591,"TargetID":58590,"Directional":false},{"SourceID":115502,"TargetID":115501,"Directional":false},{"SourceID":115518,"TargetID":115517,"Directional":false},{"SourceID":115541,"TargetID":115539,"Directional":false},{"SourceID":115551,"TargetID":115546,"Directional":false},{"SourceID":122135,"TargetID":122133,"Directional":false},{"SourceID":122136,"TargetID":122137,"Directional":false}]},{"ID":418,"SourceStructureID":327,"TargetStructureID":277,"Label":"327-277 via Unknown from 115498 -> 115497","Type":"Unknown","Directional":false,"Links":[{"SourceID":115498,"TargetID":115497,"Directional":false}]},{"ID":419,"SourceStructureID":277,"TargetStructureID":335,"Label":"277-335 via Gap Junction from 115492 -> 115491, 122132 -> 122131","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115492,"TargetID":115491,"Directional":false},{"SourceID":122132,"TargetID":122131,"Directional":false}]},{"ID":420,"SourceStructureID":277,"TargetStructureID":366,"Label":"277-366 via Gap Junction from 56520 -> 13609, 56521 -> 13609","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56520,"TargetID":13609,"Directional":false},{"SourceID":56521,"TargetID":13609,"Directional":false}]},{"ID":421,"SourceStructureID":431,"TargetStructureID":277,"Label":"431-277 via Gap Junction from 115544 -> 115543","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115544,"TargetID":115543,"Directional":false}]},{"ID":422,"SourceStructureID":7157,"TargetStructureID":277,"Label":"7157-277 via Gap Junction from 26194 -> 26032, 26248 -> 26247, 29972 -> 29971, 115490 -> 115489, 115545 -> 115542, 130658 -> 26067","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":26194,"TargetID":26032,"Directional":false},{"SourceID":26248,"TargetID":26247,"Directional":false},{"SourceID":29972,"TargetID":29971,"Directional":false},{"SourceID":115490,"TargetID":115489,"Directional":false},{"SourceID":115545,"TargetID":115542,"Directional":false},{"SourceID":130658,"TargetID":26067,"Directional":false}]},{"ID":423,"SourceStructureID":115504,"TargetStructureID":277,"Label":"115504-277 via Gap Junction from 115505 -> 115503","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115505,"TargetID":115503,"Directional":false}]},{"ID":424,"SourceStructureID":115519,"TargetStructureID":277,"Label":"115519-277 via Gap Junction from 115521 -> 115520","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115521,"TargetID":115520,"Directional":false}]},{"ID":425,"SourceStructureID":115525,"TargetStructureID":277,"Label":"115525-277 via Gap Junction from 115527 -> 115524","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115527,"TargetID":115524,"Directional":false}]},{"ID":426,"SourceStructureID":115529,"TargetStructureID":277,"Label":"115529-277 via Gap Junction from 115530 -> 115528","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115530,"TargetID":115528,"Directional":false}]},{"ID":427,"SourceStructureID":115537,"TargetStructureID":277,"Label":"115537-277 via Gap Junction from 115538 -> 115536","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115538,"TargetID":115536,"Directional":false}]},{"ID":428,"SourceStructureID":327,"TargetStructureID":278,"Label":"327-278 via Unknown from 122130 -> 122127","Type":"Unknown","Directional":false,"Links":[{"SourceID":122130,"TargetID":122127,"Directional":false}]},{"ID":429,"SourceStructureID":5439,"TargetStructureID":280,"Label":"5439-280 via Adherens from 85708 -> 85709","Type":"Adherens","Directional":false,"Links":[{"SourceID":85708,"TargetID":85709,"Directional":false}]},{"ID":430,"SourceStructureID":32566,"TargetStructureID":280,"Label":"32566-280 via Adherens from 64562 -> 64561, 64564 -> 64563, 64566 -> 64565","Type":"Adherens","Directional":false,"Links":[{"SourceID":64562,"TargetID":64561,"Directional":false},{"SourceID":64564,"TargetID":64563,"Directional":false},{"SourceID":64566,"TargetID":64565,"Directional":false}]},{"ID":431,"SourceStructureID":286,"TargetStructureID":284,"Label":"286-284 via Gap Junction from 29486 -> 29483, 58621 -> 58620, 95220 -> 26281, 95376 -> 95369, 95380 -> 95381","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29486,"TargetID":29483,"Directional":false},{"SourceID":58621,"TargetID":58620,"Directional":false},{"SourceID":95220,"TargetID":26281,"Directional":false},{"SourceID":95376,"TargetID":95369,"Directional":false},{"SourceID":95380,"TargetID":95381,"Directional":false}]},{"ID":432,"SourceStructureID":284,"TargetStructureID":309,"Label":"284-309 via Gap Junction from 17467 -> 13484","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17467,"TargetID":13484,"Directional":false}]},{"ID":433,"SourceStructureID":321,"TargetStructureID":284,"Label":"321-284 via Gap Junction from 23038 -> 17434, 55211 -> 29481, 115553 -> 115552, 115568 -> 115569, 115572 -> 17433, 122181 -> 122180, 122187 -> 122184, 122201 -> 122202, 122213 -> 17430, 122215 -> 122214","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23038,"TargetID":17434,"Directional":false},{"SourceID":55211,"TargetID":29481,"Directional":false},{"SourceID":115553,"TargetID":115552,"Directional":false},{"SourceID":115568,"TargetID":115569,"Directional":false},{"SourceID":115572,"TargetID":17433,"Directional":false},{"SourceID":122181,"TargetID":122180,"Directional":false},{"SourceID":122187,"TargetID":122184,"Directional":false},{"SourceID":122201,"TargetID":122202,"Directional":false},{"SourceID":122213,"TargetID":17430,"Directional":false},{"SourceID":122215,"TargetID":122214,"Directional":false}]},{"ID":434,"SourceStructureID":284,"TargetStructureID":324,"Label":"284-324 via Gap Junction from 29482 -> 93910","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29482,"TargetID":93910,"Directional":false}]},{"ID":435,"SourceStructureID":332,"TargetStructureID":284,"Label":"332-284 via Adherens from 29528 -> 29527","Type":"Adherens","Directional":false,"Links":[{"SourceID":29528,"TargetID":29527,"Directional":false}]},{"ID":436,"SourceStructureID":332,"TargetStructureID":284,"Label":"332-284 via Gap Junction from 29526 -> 29525, 95191 -> 95192","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29526,"TargetID":29525,"Directional":false},{"SourceID":95191,"TargetID":95192,"Directional":false}]},{"ID":437,"SourceStructureID":4835,"TargetStructureID":284,"Label":"4835-284 via Gap Junction from 29608 -> 29607","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29608,"TargetID":29607,"Directional":false}]},{"ID":438,"SourceStructureID":284,"TargetStructureID":6153,"Label":"284-6153 via Adherens from 29544 -> 29543","Type":"Adherens","Directional":false,"Links":[{"SourceID":29544,"TargetID":29543,"Directional":false}]},{"ID":439,"SourceStructureID":6153,"TargetStructureID":284,"Label":"6153-284 via Gap Junction from 17455 -> 17454, 17463 -> 17462, 17509 -> 14371, 17510 -> 14369, 29498 -> 29479, 29542 -> 29520","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17455,"TargetID":17454,"Directional":false},{"SourceID":17463,"TargetID":17462,"Directional":false},{"SourceID":17509,"TargetID":14371,"Directional":false},{"SourceID":17510,"TargetID":14369,"Directional":false},{"SourceID":29498,"TargetID":29479,"Directional":false},{"SourceID":29542,"TargetID":29520,"Directional":false}]},{"ID":440,"SourceStructureID":7157,"TargetStructureID":284,"Label":"7157-284 via Adherens from 26298 -> 26297, 26300 -> 26299","Type":"Adherens","Directional":false,"Links":[{"SourceID":26298,"TargetID":26297,"Directional":false},{"SourceID":26300,"TargetID":26299,"Directional":false}]},{"ID":441,"SourceStructureID":284,"TargetStructureID":7157,"Label":"284-7157 via Gap Junction from 29580 -> 26271, 29586 -> 29585, 29610 -> 29611, 131781 -> 131780","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29580,"TargetID":26271,"Directional":false},{"SourceID":29586,"TargetID":29585,"Directional":false},{"SourceID":29610,"TargetID":29611,"Directional":false},{"SourceID":131781,"TargetID":131780,"Directional":false}]},{"ID":442,"SourceStructureID":30102,"TargetStructureID":284,"Label":"30102-284 via Gap Junction from 30107 -> 30106","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30107,"TargetID":30106,"Directional":false}]},{"ID":443,"SourceStructureID":284,"TargetStructureID":71870,"Label":"284-71870 via Adherens from 71869 -> 71871","Type":"Adherens","Directional":false,"Links":[{"SourceID":71869,"TargetID":71871,"Directional":false}]},{"ID":444,"SourceStructureID":76127,"TargetStructureID":284,"Label":"76127-284 via Adherens from 76131 -> 76130","Type":"Adherens","Directional":false,"Links":[{"SourceID":76131,"TargetID":76130,"Directional":false}]},{"ID":445,"SourceStructureID":76127,"TargetStructureID":284,"Label":"76127-284 via Gap Junction from 76129 -> 76125","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":76129,"TargetID":76125,"Directional":false}]},{"ID":446,"SourceStructureID":286,"TargetStructureID":286,"Label":"286-286 via Gap Junction from 95347 -> 95348","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95347,"TargetID":95348,"Directional":false}]},{"ID":447,"SourceStructureID":327,"TargetStructureID":286,"Label":"327-286 via Unknown from 58607 -> 58606","Type":"Unknown","Directional":false,"Links":[{"SourceID":58607,"TargetID":58606,"Directional":false}]},{"ID":448,"SourceStructureID":286,"TargetStructureID":332,"Label":"286-332 via Gap Junction from 58600 -> 58602, 58619 -> 58618, 95286 -> 95287, 95291 -> 94916","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58600,"TargetID":58602,"Directional":false},{"SourceID":58619,"TargetID":58618,"Directional":false},{"SourceID":95286,"TargetID":95287,"Directional":false},{"SourceID":95291,"TargetID":94916,"Directional":false}]},{"ID":449,"SourceStructureID":286,"TargetStructureID":419,"Label":"286-419 via Adherens from 133490 -> 131776, 133494 -> 133493","Type":"Adherens","Directional":false,"Links":[{"SourceID":133490,"TargetID":131776,"Directional":false},{"SourceID":133494,"TargetID":133493,"Directional":false}]},{"ID":450,"SourceStructureID":419,"TargetStructureID":286,"Label":"419-286 via Gap Junction from 133491 -> 133492","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133491,"TargetID":133492,"Directional":false}]},{"ID":451,"SourceStructureID":483,"TargetStructureID":286,"Label":"483-286 via Gap Junction from 58615 -> 58608","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58615,"TargetID":58608,"Directional":false}]},{"ID":452,"SourceStructureID":5439,"TargetStructureID":286,"Label":"5439-286 via Adherens from 85712 -> 85714","Type":"Adherens","Directional":false,"Links":[{"SourceID":85712,"TargetID":85714,"Directional":false}]},{"ID":453,"SourceStructureID":6153,"TargetStructureID":286,"Label":"6153-286 via Gap Junction from 121621 -> 121620","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121621,"TargetID":121620,"Directional":false}]},{"ID":454,"SourceStructureID":95246,"TargetStructureID":286,"Label":"95246-286 via Unknown from 95247 -> 95245","Type":"Unknown","Directional":false,"Links":[{"SourceID":95247,"TargetID":95245,"Directional":false}]},{"ID":455,"SourceStructureID":95282,"TargetStructureID":286,"Label":"95282-286 via Unknown from 95285 -> 95281","Type":"Unknown","Directional":false,"Links":[{"SourceID":95285,"TargetID":95281,"Directional":false}]},{"ID":456,"SourceStructureID":286,"TargetStructureID":95304,"Label":"286-95304 via Unknown from 120358 -> 120357","Type":"Unknown","Directional":false,"Links":[{"SourceID":120358,"TargetID":120357,"Directional":false}]},{"ID":457,"SourceStructureID":95343,"TargetStructureID":286,"Label":"95343-286 via Unknown from 120364 -> 120363","Type":"Unknown","Directional":false,"Links":[{"SourceID":120364,"TargetID":120363,"Directional":false}]},{"ID":458,"SourceStructureID":294,"TargetStructureID":25440,"Label":"294-25440 via Touch from 25465 -> 25464","Type":"Touch","Directional":false,"Links":[{"SourceID":25465,"TargetID":25464,"Directional":false}]},{"ID":459,"SourceStructureID":298,"TargetStructureID":299,"Label":"298-299 via Gap Junction from 122733 -> 122734, 122739 -> 122738, 122776 -> 122775","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122733,"TargetID":122734,"Directional":false},{"SourceID":122739,"TargetID":122738,"Directional":false},{"SourceID":122776,"TargetID":122775,"Directional":false}]},{"ID":460,"SourceStructureID":298,"TargetStructureID":47095,"Label":"298-47095 via Gap Junction from 122759 -> 122758","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122759,"TargetID":122758,"Directional":false}]},{"ID":461,"SourceStructureID":304,"TargetStructureID":299,"Label":"304-299 via Gap Junction from 16572 -> 16576, 16574 -> 7224","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16572,"TargetID":16576,"Directional":false},{"SourceID":16574,"TargetID":7224,"Directional":false}]},{"ID":462,"SourceStructureID":299,"TargetStructureID":397,"Label":"299-397 via Gap Junction from 55353 -> 55352, 122704 -> 122703","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55353,"TargetID":55352,"Directional":false},{"SourceID":122704,"TargetID":122703,"Directional":false}]},{"ID":463,"SourceStructureID":299,"TargetStructureID":410,"Label":"299-410 via Gap Junction from 21402 -> 9285","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":21402,"TargetID":9285,"Directional":false}]},{"ID":464,"SourceStructureID":307,"TargetStructureID":304,"Label":"307-304 via Gap Junction from 16367 -> 16474, 16570 -> 16573","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16367,"TargetID":16474,"Directional":false},{"SourceID":16570,"TargetID":16573,"Directional":false}]},{"ID":465,"SourceStructureID":304,"TargetStructureID":397,"Label":"304-397 via Gap Junction from 46882 -> 46881, 46895 -> 17276, 71051 -> 71050, 122394 -> 122395, 122653 -> 122654, 122670 -> 122671, 122675 -> 122674, 122699 -> 122698, 122702 -> 122701","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46882,"TargetID":46881,"Directional":false},{"SourceID":46895,"TargetID":17276,"Directional":false},{"SourceID":71051,"TargetID":71050,"Directional":false},{"SourceID":122394,"TargetID":122395,"Directional":false},{"SourceID":122653,"TargetID":122654,"Directional":false},{"SourceID":122670,"TargetID":122671,"Directional":false},{"SourceID":122675,"TargetID":122674,"Directional":false},{"SourceID":122699,"TargetID":122698,"Directional":false},{"SourceID":122702,"TargetID":122701,"Directional":false}]},{"ID":466,"SourceStructureID":304,"TargetStructureID":400,"Label":"304-400 via Gap Junction from 17187 -> 18766, 17278 -> 17277, 130579 -> 130578, 130603 -> 130602, 132753 -> 132754","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17187,"TargetID":18766,"Directional":false},{"SourceID":17278,"TargetID":17277,"Directional":false},{"SourceID":130579,"TargetID":130578,"Directional":false},{"SourceID":130603,"TargetID":130602,"Directional":false},{"SourceID":132753,"TargetID":132754,"Directional":false}]},{"ID":467,"SourceStructureID":410,"TargetStructureID":304,"Label":"410-304 via Gap Junction from 17576 -> 17575, 17658 -> 17657, 17691 -> 17690, 17721 -> 17720, 17726 -> 17712, 17728 -> 17729, 17746 -> 17745, 18333 -> 18332, 18338 -> 18329, 18342 -> 18341, 18345 -> 18344, 18522 -> 18521, 19142 -> 19141, 22492 -> 22493, 22496 -> 22495, 22504 -> 22503","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17576,"TargetID":17575,"Directional":false},{"SourceID":17658,"TargetID":17657,"Directional":false},{"SourceID":17691,"TargetID":17690,"Directional":false},{"SourceID":17721,"TargetID":17720,"Directional":false},{"SourceID":17726,"TargetID":17712,"Directional":false},{"SourceID":17728,"TargetID":17729,"Directional":false},{"SourceID":17746,"TargetID":17745,"Directional":false},{"SourceID":18333,"TargetID":18332,"Directional":false},{"SourceID":18338,"TargetID":18329,"Directional":false},{"SourceID":18342,"TargetID":18341,"Directional":false},{"SourceID":18345,"TargetID":18344,"Directional":false},{"SourceID":18522,"TargetID":18521,"Directional":false},{"SourceID":19142,"TargetID":19141,"Directional":false},{"SourceID":22492,"TargetID":22493,"Directional":false},{"SourceID":22496,"TargetID":22495,"Directional":false},{"SourceID":22504,"TargetID":22503,"Directional":false}]},{"ID":468,"SourceStructureID":304,"TargetStructureID":419,"Label":"304-419 via Adherens from 133532 -> 132581","Type":"Adherens","Directional":false,"Links":[{"SourceID":133532,"TargetID":132581,"Directional":false}]},{"ID":469,"SourceStructureID":304,"TargetStructureID":419,"Label":"304-419 via Gap Junction from 131790 -> 131789, 133534 -> 133533","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131790,"TargetID":131789,"Directional":false},{"SourceID":133534,"TargetID":133533,"Directional":false}]},{"ID":470,"SourceStructureID":304,"TargetStructureID":573,"Label":"304-573 via Gap Junction from 18358 -> 18357, 20758 -> 18350, 135016 -> 135015","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":18358,"TargetID":18357,"Directional":false},{"SourceID":20758,"TargetID":18350,"Directional":false},{"SourceID":135016,"TargetID":135015,"Directional":false}]},{"ID":471,"SourceStructureID":2610,"TargetStructureID":304,"Label":"2610-304 via Gap Junction from 2992 -> 17913, 17200 -> 17199, 17208 -> 17209, 17211 -> 17210, 17646 -> 3008, 17957 -> 2949, 17961 -> 2958, 18220 -> 18219, 18234 -> 18233, 18879 -> 18878","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":2992,"TargetID":17913,"Directional":false},{"SourceID":17200,"TargetID":17199,"Directional":false},{"SourceID":17208,"TargetID":17209,"Directional":false},{"SourceID":17211,"TargetID":17210,"Directional":false},{"SourceID":17646,"TargetID":3008,"Directional":false},{"SourceID":17957,"TargetID":2949,"Directional":false},{"SourceID":17961,"TargetID":2958,"Directional":false},{"SourceID":18220,"TargetID":18219,"Directional":false},{"SourceID":18234,"TargetID":18233,"Directional":false},{"SourceID":18879,"TargetID":18878,"Directional":false}]},{"ID":472,"SourceStructureID":304,"TargetStructureID":6589,"Label":"304-6589 via Gap Junction from 123722 -> 123721, 130588 -> 130587, 130596 -> 130595, 132757 -> 132756, 132772 -> 132771","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123722,"TargetID":123721,"Directional":false},{"SourceID":130588,"TargetID":130587,"Directional":false},{"SourceID":130596,"TargetID":130595,"Directional":false},{"SourceID":132757,"TargetID":132756,"Directional":false},{"SourceID":132772,"TargetID":132771,"Directional":false}]},{"ID":473,"SourceStructureID":304,"TargetStructureID":9693,"Label":"304-9693 via Adherens from 135026 -> 135027","Type":"Adherens","Directional":false,"Links":[{"SourceID":135026,"TargetID":135027,"Directional":false}]},{"ID":474,"SourceStructureID":9693,"TargetStructureID":304,"Label":"9693-304 via Gap Junction from 39224 -> 39223, 59563 -> 59564, 134725 -> 119902","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39224,"TargetID":39223,"Directional":false},{"SourceID":59563,"TargetID":59564,"Directional":false},{"SourceID":134725,"TargetID":119902,"Directional":false}]},{"ID":475,"SourceStructureID":304,"TargetStructureID":15394,"Label":"304-15394 via Adherens from 135017 -> 135018","Type":"Adherens","Directional":false,"Links":[{"SourceID":135017,"TargetID":135018,"Directional":false}]},{"ID":476,"SourceStructureID":17527,"TargetStructureID":304,"Label":"17527-304 via Gap Junction from 17748 -> 17747","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17748,"TargetID":17747,"Directional":false}]},{"ID":477,"SourceStructureID":32654,"TargetStructureID":304,"Label":"32654-304 via Gap Junction from 32656 -> 32655, 116365 -> 16469","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32656,"TargetID":32655,"Directional":false},{"SourceID":116365,"TargetID":16469,"Directional":false}]},{"ID":478,"SourceStructureID":40919,"TargetStructureID":304,"Label":"40919-304 via Adherens from 60517 -> 60516","Type":"Adherens","Directional":false,"Links":[{"SourceID":60517,"TargetID":60516,"Directional":false}]},{"ID":479,"SourceStructureID":91176,"TargetStructureID":304,"Label":"91176-304 via Gap Junction from 91184 -> 91185","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91184,"TargetID":91185,"Directional":false}]},{"ID":480,"SourceStructureID":324,"TargetStructureID":307,"Label":"324-307 via Gap Junction from 32640 -> 32639, 83334 -> 83185","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32640,"TargetID":32639,"Directional":false},{"SourceID":83334,"TargetID":83185,"Directional":false}]},{"ID":481,"SourceStructureID":408,"TargetStructureID":307,"Label":"408-307 via Gap Junction from 35766 -> 35767","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35766,"TargetID":35767,"Directional":false}]},{"ID":482,"SourceStructureID":307,"TargetStructureID":410,"Label":"307-410 via Gap Junction from 17693 -> 17692","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17693,"TargetID":17692,"Directional":false}]},{"ID":483,"SourceStructureID":606,"TargetStructureID":307,"Label":"606-307 via Adherens from 45532 -> 45533","Type":"Adherens","Directional":false,"Links":[{"SourceID":45532,"TargetID":45533,"Directional":false}]},{"ID":484,"SourceStructureID":307,"TargetStructureID":5513,"Label":"307-5513 via Gap Junction from 16021 -> 12344, 16789 -> 60663","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16021,"TargetID":12344,"Directional":false},{"SourceID":16789,"TargetID":60663,"Directional":false}]},{"ID":485,"SourceStructureID":307,"TargetStructureID":9769,"Label":"307-9769 via Adherens from 15956 -> 15957","Type":"Adherens","Directional":false,"Links":[{"SourceID":15956,"TargetID":15957,"Directional":false}]},{"ID":486,"SourceStructureID":307,"TargetStructureID":24303,"Label":"307-24303 via Gap Junction from 121669 -> 121668, 122479 -> 122478, 122482 -> 122481","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121669,"TargetID":121668,"Directional":false},{"SourceID":122479,"TargetID":122478,"Directional":false},{"SourceID":122482,"TargetID":122481,"Directional":false}]},{"ID":487,"SourceStructureID":308,"TargetStructureID":308,"Label":"308-308 via Adherens from 42581 -> 42582","Type":"Adherens","Directional":false,"Links":[{"SourceID":42581,"TargetID":42582,"Directional":false}]},{"ID":488,"SourceStructureID":422,"TargetStructureID":308,"Label":"422-308 via Adherens from 43100 -> 43099, 64542 -> 64541","Type":"Adherens","Directional":false,"Links":[{"SourceID":43100,"TargetID":43099,"Directional":false},{"SourceID":64542,"TargetID":64541,"Directional":false}]},{"ID":489,"SourceStructureID":308,"TargetStructureID":514,"Label":"308-514 via Adherens from 42534 -> 13815, 43448 -> 43449, 43452 -> 43453, 43455 -> 43454, 43740 -> 43741, 86717 -> 42537","Type":"Adherens","Directional":false,"Links":[{"SourceID":42534,"TargetID":13815,"Directional":false},{"SourceID":43448,"TargetID":43449,"Directional":false},{"SourceID":43452,"TargetID":43453,"Directional":false},{"SourceID":43455,"TargetID":43454,"Directional":false},{"SourceID":43740,"TargetID":43741,"Directional":false},{"SourceID":86717,"TargetID":42537,"Directional":false}]},{"ID":490,"SourceStructureID":308,"TargetStructureID":573,"Label":"308-573 via Adherens from 43530 -> 43531, 43532 -> 43533, 43549 -> 43539","Type":"Adherens","Directional":false,"Links":[{"SourceID":43530,"TargetID":43531,"Directional":false},{"SourceID":43532,"TargetID":43533,"Directional":false},{"SourceID":43549,"TargetID":43539,"Directional":false}]},{"ID":491,"SourceStructureID":606,"TargetStructureID":308,"Label":"606-308 via Touch from 86694 -> 86695","Type":"Touch","Directional":false,"Links":[{"SourceID":86694,"TargetID":86695,"Directional":false}]},{"ID":492,"SourceStructureID":2610,"TargetStructureID":308,"Label":"2610-308 via Adherens from 43773 -> 43772, 43778 -> 43777","Type":"Adherens","Directional":false,"Links":[{"SourceID":43773,"TargetID":43772,"Directional":false},{"SourceID":43778,"TargetID":43777,"Directional":false}]},{"ID":493,"SourceStructureID":308,"TargetStructureID":3257,"Label":"308-3257 via Adherens from 107207 -> 107208, 107210 -> 107209","Type":"Adherens","Directional":false,"Links":[{"SourceID":107207,"TargetID":107208,"Directional":false},{"SourceID":107210,"TargetID":107209,"Directional":false}]},{"ID":494,"SourceStructureID":308,"TargetStructureID":5017,"Label":"308-5017 via Adherens from 42562 -> 42563","Type":"Adherens","Directional":false,"Links":[{"SourceID":42562,"TargetID":42563,"Directional":false}]},{"ID":495,"SourceStructureID":308,"TargetStructureID":6153,"Label":"308-6153 via Adherens from 43106 -> 43107, 43108 -> 43109","Type":"Adherens","Directional":false,"Links":[{"SourceID":43106,"TargetID":43107,"Directional":false},{"SourceID":43108,"TargetID":43109,"Directional":false}]},{"ID":496,"SourceStructureID":308,"TargetStructureID":8749,"Label":"308-8749 via Adherens from 42574 -> 42575, 42579 -> 42578, 43734 -> 43735","Type":"Adherens","Directional":false,"Links":[{"SourceID":42574,"TargetID":42575,"Directional":false},{"SourceID":42579,"TargetID":42578,"Directional":false},{"SourceID":43734,"TargetID":43735,"Directional":false}]},{"ID":497,"SourceStructureID":17228,"TargetStructureID":308,"Label":"17228-308 via Adherens from 43593 -> 43592, 43595 -> 43594","Type":"Adherens","Directional":false,"Links":[{"SourceID":43593,"TargetID":43592,"Directional":false},{"SourceID":43595,"TargetID":43594,"Directional":false}]},{"ID":498,"SourceStructureID":308,"TargetStructureID":18282,"Label":"308-18282 via Touch from 86643 -> 86642","Type":"Touch","Directional":false,"Links":[{"SourceID":86643,"TargetID":86642,"Directional":false}]},{"ID":499,"SourceStructureID":25688,"TargetStructureID":308,"Label":"25688-308 via Adherens from 42544 -> 42543","Type":"Adherens","Directional":false,"Links":[{"SourceID":42544,"TargetID":42543,"Directional":false}]},{"ID":500,"SourceStructureID":308,"TargetStructureID":90409,"Label":"308-90409 via Adherens from 107205 -> 107206","Type":"Adherens","Directional":false,"Links":[{"SourceID":107205,"TargetID":107206,"Directional":false}]},{"ID":501,"SourceStructureID":309,"TargetStructureID":309,"Label":"309-309 via Adherens from 122368 -> 122367","Type":"Adherens","Directional":false,"Links":[{"SourceID":122368,"TargetID":122367,"Directional":false}]},{"ID":502,"SourceStructureID":400,"TargetStructureID":309,"Label":"400-309 via Adherens from 122373 -> 13267","Type":"Adherens","Directional":false,"Links":[{"SourceID":122373,"TargetID":13267,"Directional":false}]},{"ID":503,"SourceStructureID":309,"TargetStructureID":410,"Label":"309-410 via Gap Junction from 121624 -> 121625, 122293 -> 122294","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121624,"TargetID":121625,"Directional":false},{"SourceID":122293,"TargetID":122294,"Directional":false}]},{"ID":504,"SourceStructureID":483,"TargetStructureID":309,"Label":"483-309 via Touch from 122372 -> 122371","Type":"Touch","Directional":false,"Links":[{"SourceID":122372,"TargetID":122371,"Directional":false}]},{"ID":505,"SourceStructureID":309,"TargetStructureID":485,"Label":"309-485 via Touch from 100045 -> 100044, 148007 -> 148006","Type":"Touch","Directional":false,"Links":[{"SourceID":100045,"TargetID":100044,"Directional":false},{"SourceID":148007,"TargetID":148006,"Directional":false}]},{"ID":506,"SourceStructureID":309,"TargetStructureID":6153,"Label":"309-6153 via Gap Junction from 13371 -> 14365, 121622 -> 13408","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":13371,"TargetID":14365,"Directional":false},{"SourceID":121622,"TargetID":13408,"Directional":false}]},{"ID":507,"SourceStructureID":122353,"TargetStructureID":309,"Label":"122353-309 via Gap Junction from 122354 -> 13388","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122354,"TargetID":13388,"Directional":false}]},{"ID":508,"SourceStructureID":318,"TargetStructureID":483,"Label":"318-483 via Unknown from 135080 -> 135079","Type":"Unknown","Directional":false,"Links":[{"SourceID":135080,"TargetID":135079,"Directional":false}]},{"ID":509,"SourceStructureID":321,"TargetStructureID":324,"Label":"321-324 via Gap Junction from 93940 -> 93941","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93940,"TargetID":93941,"Directional":false}]},{"ID":510,"SourceStructureID":324,"TargetStructureID":321,"Label":"324-321 via Unknown from 96340 -> 96338","Type":"Unknown","Directional":false,"Links":[{"SourceID":96340,"TargetID":96338,"Directional":false}]},{"ID":511,"SourceStructureID":321,"TargetStructureID":327,"Label":"321-327 via Adherens from 66264 -> 66263","Type":"Adherens","Directional":false,"Links":[{"SourceID":66264,"TargetID":66263,"Directional":false}]},{"ID":512,"SourceStructureID":327,"TargetStructureID":321,"Label":"327-321 via Gap Junction from 66262 -> 65955, 115555 -> 115554, 122189 -> 122188","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66262,"TargetID":65955,"Directional":false},{"SourceID":115555,"TargetID":115554,"Directional":false},{"SourceID":122189,"TargetID":122188,"Directional":false}]},{"ID":513,"SourceStructureID":327,"TargetStructureID":321,"Label":"327-321 via Unknown from 115562 -> 115561","Type":"Unknown","Directional":false,"Links":[{"SourceID":115562,"TargetID":115561,"Directional":false}]},{"ID":514,"SourceStructureID":321,"TargetStructureID":366,"Label":"321-366 via Gap Junction from 115564 -> 115563","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115564,"TargetID":115563,"Directional":false}]},{"ID":515,"SourceStructureID":479,"TargetStructureID":321,"Label":"479-321 via Gap Junction from 38512 -> 38511, 56547 -> 56546","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38512,"TargetID":38511,"Directional":false},{"SourceID":56547,"TargetID":56546,"Directional":false}]},{"ID":516,"SourceStructureID":321,"TargetStructureID":6153,"Label":"321-6153 via Gap Junction from 115565 -> 17441, 115567 -> 115566","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115565,"TargetID":17441,"Directional":false},{"SourceID":115567,"TargetID":115566,"Directional":false}]},{"ID":517,"SourceStructureID":32566,"TargetStructureID":321,"Label":"32566-321 via Gap Junction from 122200 -> 122199","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122200,"TargetID":122199,"Directional":false}]},{"ID":518,"SourceStructureID":115557,"TargetStructureID":321,"Label":"115557-321 via Gap Junction from 115558 -> 115556","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115558,"TargetID":115556,"Directional":false}]},{"ID":519,"SourceStructureID":115574,"TargetStructureID":321,"Label":"115574-321 via Gap Junction from 115575 -> 115573","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115575,"TargetID":115573,"Directional":false}]},{"ID":520,"SourceStructureID":115577,"TargetStructureID":321,"Label":"115577-321 via Unknown from 115578 -> 115576","Type":"Unknown","Directional":false,"Links":[{"SourceID":115578,"TargetID":115576,"Directional":false}]},{"ID":521,"SourceStructureID":324,"TargetStructureID":324,"Label":"324-324 via Gap Junction from 12382 -> 93943, 55179 -> 53295, 93925 -> 93926, 96364 -> 96363","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12382,"TargetID":93943,"Directional":false},{"SourceID":55179,"TargetID":53295,"Directional":false},{"SourceID":93925,"TargetID":93926,"Directional":false},{"SourceID":96364,"TargetID":96363,"Directional":false}]},{"ID":522,"SourceStructureID":330,"TargetStructureID":324,"Label":"330-324 via Gap Junction from 93778 -> 93777, 94056 -> 94055, 100805 -> 100804","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93778,"TargetID":93777,"Directional":false},{"SourceID":94056,"TargetID":94055,"Directional":false},{"SourceID":100805,"TargetID":100804,"Directional":false}]},{"ID":523,"SourceStructureID":330,"TargetStructureID":324,"Label":"330-324 via Unknown from 94058 -> 94057","Type":"Unknown","Directional":false,"Links":[{"SourceID":94058,"TargetID":94057,"Directional":false}]},{"ID":524,"SourceStructureID":324,"TargetStructureID":364,"Label":"324-364 via Adherens from 90351 -> 12817","Type":"Adherens","Directional":false,"Links":[{"SourceID":90351,"TargetID":12817,"Directional":false}]},{"ID":525,"SourceStructureID":364,"TargetStructureID":324,"Label":"364-324 via Gap Junction from 90353 -> 90352, 93551 -> 93552","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90353,"TargetID":90352,"Directional":false},{"SourceID":93551,"TargetID":93552,"Directional":false}]},{"ID":526,"SourceStructureID":324,"TargetStructureID":364,"Label":"324-364 via Unknown from 94247 -> 94246","Type":"Unknown","Directional":false,"Links":[{"SourceID":94247,"TargetID":94246,"Directional":false}]},{"ID":527,"SourceStructureID":366,"TargetStructureID":324,"Label":"366-324 via Gap Junction from 94078 -> 94079, 122251 -> 122252","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94078,"TargetID":94079,"Directional":false},{"SourceID":122251,"TargetID":122252,"Directional":false}]},{"ID":528,"SourceStructureID":366,"TargetStructureID":324,"Label":"366-324 via Touch from 135524 -> 135523","Type":"Touch","Directional":false,"Links":[{"SourceID":135524,"TargetID":135523,"Directional":false}]},{"ID":529,"SourceStructureID":372,"TargetStructureID":324,"Label":"372-324 via Adherens from 94544 -> 94543","Type":"Adherens","Directional":false,"Links":[{"SourceID":94544,"TargetID":94543,"Directional":false}]},{"ID":530,"SourceStructureID":372,"TargetStructureID":324,"Label":"372-324 via Unknown from 93541 -> 93540, 94103 -> 94102, 94455 -> 122343, 96381 -> 96380, 96391 -> 96392","Type":"Unknown","Directional":false,"Links":[{"SourceID":93541,"TargetID":93540,"Directional":false},{"SourceID":94103,"TargetID":94102,"Directional":false},{"SourceID":94455,"TargetID":122343,"Directional":false},{"SourceID":96381,"TargetID":96380,"Directional":false},{"SourceID":96391,"TargetID":96392,"Directional":false}]},{"ID":531,"SourceStructureID":324,"TargetStructureID":428,"Label":"324-428 via Unknown from 94071 -> 94070","Type":"Unknown","Directional":false,"Links":[{"SourceID":94071,"TargetID":94070,"Directional":false}]},{"ID":532,"SourceStructureID":324,"TargetStructureID":476,"Label":"324-476 via Gap Junction from 43559 -> 43560","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43559,"TargetID":43560,"Directional":false}]},{"ID":533,"SourceStructureID":324,"TargetStructureID":476,"Label":"324-476 via Unknown from 96947 -> 96948","Type":"Unknown","Directional":false,"Links":[{"SourceID":96947,"TargetID":96948,"Directional":false}]},{"ID":534,"SourceStructureID":324,"TargetStructureID":606,"Label":"324-606 via Adherens from 53310 -> 53309, 53311 -> 53304","Type":"Adherens","Directional":false,"Links":[{"SourceID":53310,"TargetID":53309,"Directional":false},{"SourceID":53311,"TargetID":53304,"Directional":false}]},{"ID":535,"SourceStructureID":3116,"TargetStructureID":324,"Label":"3116-324 via Gap Junction from 93704 -> 93703, 94450 -> 94451, 122347 -> 122348, 122349 -> 122350, 122352 -> 122351","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93704,"TargetID":93703,"Directional":false},{"SourceID":94450,"TargetID":94451,"Directional":false},{"SourceID":122347,"TargetID":122348,"Directional":false},{"SourceID":122349,"TargetID":122350,"Directional":false},{"SourceID":122352,"TargetID":122351,"Directional":false}]},{"ID":536,"SourceStructureID":4569,"TargetStructureID":324,"Label":"4569-324 via Unknown from 94504 -> 94503","Type":"Unknown","Directional":false,"Links":[{"SourceID":94504,"TargetID":94503,"Directional":false}]},{"ID":537,"SourceStructureID":324,"TargetStructureID":4835,"Label":"324-4835 via Gap Junction from 93554 -> 93553","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93554,"TargetID":93553,"Directional":false}]},{"ID":538,"SourceStructureID":324,"TargetStructureID":4835,"Label":"324-4835 via Unknown from 94257 -> 94256","Type":"Unknown","Directional":false,"Links":[{"SourceID":94257,"TargetID":94256,"Directional":false}]},{"ID":539,"SourceStructureID":324,"TargetStructureID":6153,"Label":"324-6153 via Gap Junction from 94096 -> 94095, 120592 -> 120591, 122331 -> 122330","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94096,"TargetID":94095,"Directional":false},{"SourceID":120592,"TargetID":120591,"Directional":false},{"SourceID":122331,"TargetID":122330,"Directional":false}]},{"ID":540,"SourceStructureID":324,"TargetStructureID":6153,"Label":"324-6153 via Unknown from 93543 -> 93542","Type":"Unknown","Directional":false,"Links":[{"SourceID":93543,"TargetID":93542,"Directional":false}]},{"ID":541,"SourceStructureID":324,"TargetStructureID":9769,"Label":"324-9769 via Adherens from 120596 -> 120597","Type":"Adherens","Directional":false,"Links":[{"SourceID":120596,"TargetID":120597,"Directional":false}]},{"ID":542,"SourceStructureID":9769,"TargetStructureID":324,"Label":"9769-324 via Unknown from 94113 -> 94112","Type":"Unknown","Directional":false,"Links":[{"SourceID":94113,"TargetID":94112,"Directional":false}]},{"ID":543,"SourceStructureID":30102,"TargetStructureID":324,"Label":"30102-324 via Gap Junction from 30756 -> 30755","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30756,"TargetID":30755,"Directional":false}]},{"ID":544,"SourceStructureID":32566,"TargetStructureID":324,"Label":"32566-324 via Unknown from 93913 -> 93912","Type":"Unknown","Directional":false,"Links":[{"SourceID":93913,"TargetID":93912,"Directional":false}]},{"ID":545,"SourceStructureID":32608,"TargetStructureID":324,"Label":"32608-324 via Unknown from 94067 -> 94066","Type":"Unknown","Directional":false,"Links":[{"SourceID":94067,"TargetID":94066,"Directional":false}]},{"ID":546,"SourceStructureID":324,"TargetStructureID":34263,"Label":"324-34263 via Adherens from 94087 -> 94088","Type":"Adherens","Directional":false,"Links":[{"SourceID":94087,"TargetID":94088,"Directional":false}]},{"ID":547,"SourceStructureID":324,"TargetStructureID":34263,"Label":"324-34263 via Unknown from 94086 -> 94085","Type":"Unknown","Directional":false,"Links":[{"SourceID":94086,"TargetID":94085,"Directional":false}]},{"ID":548,"SourceStructureID":324,"TargetStructureID":38632,"Label":"324-38632 via Unknown from 93620 -> 93619, 94230 -> 94229","Type":"Unknown","Directional":false,"Links":[{"SourceID":93620,"TargetID":93619,"Directional":false},{"SourceID":94230,"TargetID":94229,"Directional":false}]},{"ID":549,"SourceStructureID":324,"TargetStructureID":55517,"Label":"324-55517 via Unknown from 122115 -> 122114","Type":"Unknown","Directional":false,"Links":[{"SourceID":122115,"TargetID":122114,"Directional":false}]},{"ID":550,"SourceStructureID":66193,"TargetStructureID":324,"Label":"66193-324 via Adherens from 94075 -> 94074","Type":"Adherens","Directional":false,"Links":[{"SourceID":94075,"TargetID":94074,"Directional":false}]},{"ID":551,"SourceStructureID":66193,"TargetStructureID":324,"Label":"66193-324 via Unknown from 94077 -> 94076, 122117 -> 122116","Type":"Unknown","Directional":false,"Links":[{"SourceID":94077,"TargetID":94076,"Directional":false},{"SourceID":122117,"TargetID":122116,"Directional":false}]},{"ID":552,"SourceStructureID":83375,"TargetStructureID":324,"Label":"83375-324 via Unknown from 83377 -> 83376","Type":"Unknown","Directional":false,"Links":[{"SourceID":83377,"TargetID":83376,"Directional":false}]},{"ID":553,"SourceStructureID":324,"TargetStructureID":83382,"Label":"324-83382 via Unknown from 96936 -> 96937","Type":"Unknown","Directional":false,"Links":[{"SourceID":96936,"TargetID":96937,"Directional":false}]},{"ID":554,"SourceStructureID":324,"TargetStructureID":83385,"Label":"324-83385 via Adherens from 83403 -> 83404, 83436 -> 83437","Type":"Adherens","Directional":false,"Links":[{"SourceID":83403,"TargetID":83404,"Directional":false},{"SourceID":83436,"TargetID":83437,"Directional":false}]},{"ID":555,"SourceStructureID":324,"TargetStructureID":83399,"Label":"324-83399 via Adherens from 83400 -> 83401","Type":"Adherens","Directional":false,"Links":[{"SourceID":83400,"TargetID":83401,"Directional":false}]},{"ID":556,"SourceStructureID":83487,"TargetStructureID":324,"Label":"83487-324 via Unknown from 83488 -> 83486","Type":"Unknown","Directional":false,"Links":[{"SourceID":83488,"TargetID":83486,"Directional":false}]},{"ID":557,"SourceStructureID":324,"TargetStructureID":83489,"Label":"324-83489 via Unknown from 96969 -> 96970","Type":"Unknown","Directional":false,"Links":[{"SourceID":96969,"TargetID":96970,"Directional":false}]},{"ID":558,"SourceStructureID":324,"TargetStructureID":83541,"Label":"324-83541 via Unknown from 83588 -> 83589, 96544 -> 96542","Type":"Unknown","Directional":false,"Links":[{"SourceID":83588,"TargetID":83589,"Directional":false},{"SourceID":96544,"TargetID":96542,"Directional":false}]},{"ID":559,"SourceStructureID":83554,"TargetStructureID":324,"Label":"83554-324 via Unknown from 83557 -> 83556","Type":"Unknown","Directional":false,"Links":[{"SourceID":83557,"TargetID":83556,"Directional":false}]},{"ID":560,"SourceStructureID":324,"TargetStructureID":83569,"Label":"324-83569 via Adherens from 83570 -> 83571","Type":"Adherens","Directional":false,"Links":[{"SourceID":83570,"TargetID":83571,"Directional":false}]},{"ID":561,"SourceStructureID":324,"TargetStructureID":83572,"Label":"324-83572 via Adherens from 83573 -> 83574","Type":"Adherens","Directional":false,"Links":[{"SourceID":83573,"TargetID":83574,"Directional":false}]},{"ID":562,"SourceStructureID":324,"TargetStructureID":90463,"Label":"324-90463 via Unknown from 94486 -> 94487","Type":"Unknown","Directional":false,"Links":[{"SourceID":94486,"TargetID":94487,"Directional":false}]},{"ID":563,"SourceStructureID":93544,"TargetStructureID":324,"Label":"93544-324 via Unknown from 93546 -> 93545","Type":"Unknown","Directional":false,"Links":[{"SourceID":93546,"TargetID":93545,"Directional":false}]},{"ID":564,"SourceStructureID":93621,"TargetStructureID":324,"Label":"93621-324 via Unknown from 93622 -> 93623","Type":"Unknown","Directional":false,"Links":[{"SourceID":93622,"TargetID":93623,"Directional":false}]},{"ID":565,"SourceStructureID":324,"TargetStructureID":93915,"Label":"324-93915 via Unknown from 93917 -> 93916","Type":"Unknown","Directional":false,"Links":[{"SourceID":93917,"TargetID":93916,"Directional":false}]},{"ID":566,"SourceStructureID":324,"TargetStructureID":93927,"Label":"324-93927 via Unknown from 93933 -> 93932","Type":"Unknown","Directional":false,"Links":[{"SourceID":93933,"TargetID":93932,"Directional":false}]},{"ID":567,"SourceStructureID":93957,"TargetStructureID":324,"Label":"93957-324 via Unknown from 93959 -> 93958","Type":"Unknown","Directional":false,"Links":[{"SourceID":93959,"TargetID":93958,"Directional":false}]},{"ID":568,"SourceStructureID":324,"TargetStructureID":94059,"Label":"324-94059 via Unknown from 94062 -> 94061","Type":"Unknown","Directional":false,"Links":[{"SourceID":94062,"TargetID":94061,"Directional":false}]},{"ID":569,"SourceStructureID":94063,"TargetStructureID":324,"Label":"94063-324 via Adherens from 94069 -> 94068","Type":"Adherens","Directional":false,"Links":[{"SourceID":94069,"TargetID":94068,"Directional":false}]},{"ID":570,"SourceStructureID":324,"TargetStructureID":94063,"Label":"324-94063 via Unknown from 94064 -> 94065","Type":"Unknown","Directional":false,"Links":[{"SourceID":94064,"TargetID":94065,"Directional":false}]},{"ID":571,"SourceStructureID":94082,"TargetStructureID":324,"Label":"94082-324 via Adherens from 94083 -> 94080","Type":"Adherens","Directional":false,"Links":[{"SourceID":94083,"TargetID":94080,"Directional":false}]},{"ID":572,"SourceStructureID":94090,"TargetStructureID":324,"Label":"94090-324 via Unknown from 94091 -> 94089","Type":"Unknown","Directional":false,"Links":[{"SourceID":94091,"TargetID":94089,"Directional":false}]},{"ID":573,"SourceStructureID":324,"TargetStructureID":94097,"Label":"324-94097 via Unknown from 94098 -> 94099","Type":"Unknown","Directional":false,"Links":[{"SourceID":94098,"TargetID":94099,"Directional":false}]},{"ID":574,"SourceStructureID":324,"TargetStructureID":94105,"Label":"324-94105 via Unknown from 94107 -> 94106","Type":"Unknown","Directional":false,"Links":[{"SourceID":94107,"TargetID":94106,"Directional":false}]},{"ID":575,"SourceStructureID":324,"TargetStructureID":94220,"Label":"324-94220 via Unknown from 94225 -> 94224","Type":"Unknown","Directional":false,"Links":[{"SourceID":94225,"TargetID":94224,"Directional":false}]},{"ID":576,"SourceStructureID":324,"TargetStructureID":94221,"Label":"324-94221 via Unknown from 94222 -> 94223","Type":"Unknown","Directional":false,"Links":[{"SourceID":94222,"TargetID":94223,"Directional":false}]},{"ID":577,"SourceStructureID":94231,"TargetStructureID":324,"Label":"94231-324 via Unknown from 94233 -> 94232, 94240 -> 94239","Type":"Unknown","Directional":false,"Links":[{"SourceID":94233,"TargetID":94232,"Directional":false},{"SourceID":94240,"TargetID":94239,"Directional":false}]},{"ID":578,"SourceStructureID":94234,"TargetStructureID":324,"Label":"94234-324 via Adherens from 94236 -> 94235","Type":"Adherens","Directional":false,"Links":[{"SourceID":94236,"TargetID":94235,"Directional":false}]},{"ID":579,"SourceStructureID":94234,"TargetStructureID":324,"Label":"94234-324 via Unknown from 94238 -> 94237","Type":"Unknown","Directional":false,"Links":[{"SourceID":94238,"TargetID":94237,"Directional":false}]},{"ID":580,"SourceStructureID":94248,"TargetStructureID":324,"Label":"94248-324 via Unknown from 94250 -> 94249","Type":"Unknown","Directional":false,"Links":[{"SourceID":94250,"TargetID":94249,"Directional":false}]},{"ID":581,"SourceStructureID":94279,"TargetStructureID":324,"Label":"94279-324 via Unknown from 94287 -> 94286","Type":"Unknown","Directional":false,"Links":[{"SourceID":94287,"TargetID":94286,"Directional":false}]},{"ID":582,"SourceStructureID":94296,"TargetStructureID":324,"Label":"94296-324 via Unknown from 94298 -> 94299","Type":"Unknown","Directional":false,"Links":[{"SourceID":94298,"TargetID":94299,"Directional":false}]},{"ID":583,"SourceStructureID":94453,"TargetStructureID":324,"Label":"94453-324 via Unknown from 94454 -> 94452","Type":"Unknown","Directional":false,"Links":[{"SourceID":94454,"TargetID":94452,"Directional":false}]},{"ID":584,"SourceStructureID":324,"TargetStructureID":94462,"Label":"324-94462 via Unknown from 94464 -> 94463","Type":"Unknown","Directional":false,"Links":[{"SourceID":94464,"TargetID":94463,"Directional":false}]},{"ID":585,"SourceStructureID":324,"TargetStructureID":94465,"Label":"324-94465 via Unknown from 94467 -> 94466","Type":"Unknown","Directional":false,"Links":[{"SourceID":94467,"TargetID":94466,"Directional":false}]},{"ID":586,"SourceStructureID":327,"TargetStructureID":330,"Label":"327-330 via Adherens from 25969 -> 25968","Type":"Adherens","Directional":false,"Links":[{"SourceID":25969,"TargetID":25968,"Directional":false}]},{"ID":587,"SourceStructureID":327,"TargetStructureID":335,"Label":"327-335 via Gap Junction from 122151 -> 122152","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122151,"TargetID":122152,"Directional":false}]},{"ID":588,"SourceStructureID":327,"TargetStructureID":335,"Label":"327-335 via Unknown from 115618 -> 115619","Type":"Unknown","Directional":false,"Links":[{"SourceID":115618,"TargetID":115619,"Directional":false}]},{"ID":589,"SourceStructureID":327,"TargetStructureID":366,"Label":"327-366 via Adherens from 115624 -> 115623","Type":"Adherens","Directional":false,"Links":[{"SourceID":115624,"TargetID":115623,"Directional":false}]},{"ID":590,"SourceStructureID":327,"TargetStructureID":366,"Label":"327-366 via Gap Junction from 115622 -> 115616","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115622,"TargetID":115616,"Directional":false}]},{"ID":591,"SourceStructureID":431,"TargetStructureID":327,"Label":"431-327 via Gap Junction from 14185 -> 14184, 115549 -> 115548","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14185,"TargetID":14184,"Directional":false},{"SourceID":115549,"TargetID":115548,"Directional":false}]},{"ID":592,"SourceStructureID":327,"TargetStructureID":90007,"Label":"327-90007 via Adherens from 122150 -> 90008","Type":"Adherens","Directional":false,"Links":[{"SourceID":122150,"TargetID":90008,"Directional":false}]},{"ID":593,"SourceStructureID":327,"TargetStructureID":90007,"Label":"327-90007 via Gap Junction from 122149 -> 90009","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122149,"TargetID":90009,"Directional":false}]},{"ID":594,"SourceStructureID":330,"TargetStructureID":330,"Label":"330-330 via Gap Junction from 25910 -> 25909, 117832 -> 117831, 122140 -> 12353","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":25910,"TargetID":25909,"Directional":false},{"SourceID":117832,"TargetID":117831,"Directional":false},{"SourceID":122140,"TargetID":12353,"Directional":false}]},{"ID":595,"SourceStructureID":335,"TargetStructureID":330,"Label":"335-330 via Adherens from 26138 -> 26137","Type":"Adherens","Directional":false,"Links":[{"SourceID":26138,"TargetID":26137,"Directional":false}]},{"ID":596,"SourceStructureID":335,"TargetStructureID":330,"Label":"335-330 via Gap Junction from 14170 -> 14171, 26136 -> 1042, 30088 -> 30087, 38710 -> 38709, 60054 -> 60055, 117815 -> 117816, 122118 -> 122119, 122121 -> 122120","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14170,"TargetID":14171,"Directional":false},{"SourceID":26136,"TargetID":1042,"Directional":false},{"SourceID":30088,"TargetID":30087,"Directional":false},{"SourceID":38710,"TargetID":38709,"Directional":false},{"SourceID":60054,"TargetID":60055,"Directional":false},{"SourceID":117815,"TargetID":117816,"Directional":false},{"SourceID":122118,"TargetID":122119,"Directional":false},{"SourceID":122121,"TargetID":122120,"Directional":false}]},{"ID":597,"SourceStructureID":364,"TargetStructureID":330,"Label":"364-330 via Adherens from 12868 -> 12869","Type":"Adherens","Directional":false,"Links":[{"SourceID":12868,"TargetID":12869,"Directional":false}]},{"ID":598,"SourceStructureID":364,"TargetStructureID":330,"Label":"364-330 via Gap Junction from 38681 -> 26199, 122825 -> 122826, 122827 -> 122828, 122843 -> 26182","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38681,"TargetID":26199,"Directional":false},{"SourceID":122825,"TargetID":122826,"Directional":false},{"SourceID":122827,"TargetID":122828,"Directional":false},{"SourceID":122843,"TargetID":26182,"Directional":false}]},{"ID":599,"SourceStructureID":606,"TargetStructureID":330,"Label":"606-330 via Adherens from 52981 -> 52982","Type":"Adherens","Directional":false,"Links":[{"SourceID":52981,"TargetID":52982,"Directional":false}]},{"ID":600,"SourceStructureID":330,"TargetStructureID":6165,"Label":"330-6165 via Gap Junction from 118055 -> 118054","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118055,"TargetID":118054,"Directional":false}]},{"ID":601,"SourceStructureID":330,"TargetStructureID":7157,"Label":"330-7157 via Gap Junction from 25967 -> 21440, 26195 -> 26116, 122142 -> 122141","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":25967,"TargetID":21440,"Directional":false},{"SourceID":26195,"TargetID":26116,"Directional":false},{"SourceID":122142,"TargetID":122141,"Directional":false}]},{"ID":602,"SourceStructureID":38632,"TargetStructureID":330,"Label":"38632-330 via Adherens from 38668 -> 26160, 38669 -> 26159","Type":"Adherens","Directional":false,"Links":[{"SourceID":38668,"TargetID":26160,"Directional":false},{"SourceID":38669,"TargetID":26159,"Directional":false}]},{"ID":603,"SourceStructureID":330,"TargetStructureID":118058,"Label":"330-118058 via Gap Junction from 38692 -> 118059, 118063 -> 118061","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38692,"TargetID":118059,"Directional":false},{"SourceID":118063,"TargetID":118061,"Directional":false}]},{"ID":604,"SourceStructureID":332,"TargetStructureID":461,"Label":"332-461 via Adherens from 94872 -> 14884","Type":"Adherens","Directional":false,"Links":[{"SourceID":94872,"TargetID":14884,"Directional":false}]},{"ID":605,"SourceStructureID":461,"TargetStructureID":332,"Label":"461-332 via Gap Junction from 60147 -> 60146","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60147,"TargetID":60146,"Directional":false}]},{"ID":606,"SourceStructureID":461,"TargetStructureID":332,"Label":"461-332 via Unknown from 94875 -> 94874","Type":"Unknown","Directional":false,"Links":[{"SourceID":94875,"TargetID":94874,"Directional":false}]},{"ID":607,"SourceStructureID":332,"TargetStructureID":483,"Label":"332-483 via Gap Junction from 60149 -> 60150","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60149,"TargetID":60150,"Directional":false}]},{"ID":608,"SourceStructureID":4835,"TargetStructureID":332,"Label":"4835-332 via Gap Junction from 35170 -> 35169","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35170,"TargetID":35169,"Directional":false}]},{"ID":609,"SourceStructureID":6153,"TargetStructureID":332,"Label":"6153-332 via Gap Junction from 95005 -> 25138","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95005,"TargetID":25138,"Directional":false}]},{"ID":610,"SourceStructureID":332,"TargetStructureID":7157,"Label":"332-7157 via Gap Junction from 24535 -> 24534, 26257 -> 26256, 33183 -> 33182, 94893 -> 94892, 94928 -> 94927, 95031 -> 95032, 95202 -> 95201","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24535,"TargetID":24534,"Directional":false},{"SourceID":26257,"TargetID":26256,"Directional":false},{"SourceID":33183,"TargetID":33182,"Directional":false},{"SourceID":94893,"TargetID":94892,"Directional":false},{"SourceID":94928,"TargetID":94927,"Directional":false},{"SourceID":95031,"TargetID":95032,"Directional":false},{"SourceID":95202,"TargetID":95201,"Directional":false}]},{"ID":611,"SourceStructureID":332,"TargetStructureID":7468,"Label":"332-7468 via Gap Junction from 95111 -> 31744","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95111,"TargetID":31744,"Directional":false}]},{"ID":612,"SourceStructureID":48416,"TargetStructureID":332,"Label":"48416-332 via Gap Junction from 48417 -> 48415","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48417,"TargetID":48415,"Directional":false}]},{"ID":613,"SourceStructureID":332,"TargetStructureID":95019,"Label":"332-95019 via Unknown from 95018 -> 95026","Type":"Unknown","Directional":false,"Links":[{"SourceID":95018,"TargetID":95026,"Directional":false}]},{"ID":614,"SourceStructureID":95205,"TargetStructureID":332,"Label":"95205-332 via Gap Junction from 95206 -> 95204","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95206,"TargetID":95204,"Directional":false}]},{"ID":615,"SourceStructureID":332,"TargetStructureID":95207,"Label":"332-95207 via Unknown from 95209 -> 95208","Type":"Unknown","Directional":false,"Links":[{"SourceID":95209,"TargetID":95208,"Directional":false}]},{"ID":616,"SourceStructureID":96487,"TargetStructureID":332,"Label":"96487-332 via Adherens from 96490 -> 94877","Type":"Adherens","Directional":false,"Links":[{"SourceID":96490,"TargetID":94877,"Directional":false}]},{"ID":617,"SourceStructureID":332,"TargetStructureID":96487,"Label":"332-96487 via Gap Junction from 96496 -> 96495","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96496,"TargetID":96495,"Directional":false}]},{"ID":618,"SourceStructureID":96506,"TargetStructureID":332,"Label":"96506-332 via Unknown from 96510 -> 96511","Type":"Unknown","Directional":false,"Links":[{"SourceID":96510,"TargetID":96511,"Directional":false}]},{"ID":619,"SourceStructureID":96528,"TargetStructureID":332,"Label":"96528-332 via Unknown from 96529 -> 96527","Type":"Unknown","Directional":false,"Links":[{"SourceID":96529,"TargetID":96527,"Directional":false}]},{"ID":620,"SourceStructureID":96565,"TargetStructureID":332,"Label":"96565-332 via Adherens from 96566 -> 96564","Type":"Adherens","Directional":false,"Links":[{"SourceID":96566,"TargetID":96564,"Directional":false}]},{"ID":621,"SourceStructureID":332,"TargetStructureID":96584,"Label":"332-96584 via Gap Junction from 96586 -> 96585","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96586,"TargetID":96585,"Directional":false}]},{"ID":622,"SourceStructureID":32681,"TargetStructureID":334,"Label":"32681-334 via Adherens from 64578 -> 64579","Type":"Adherens","Directional":false,"Links":[{"SourceID":64578,"TargetID":64579,"Directional":false}]},{"ID":623,"SourceStructureID":335,"TargetStructureID":344,"Label":"335-344 via Gap Junction from 117833 -> 117827","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117833,"TargetID":117827,"Directional":false}]},{"ID":624,"SourceStructureID":366,"TargetStructureID":335,"Label":"366-335 via Adherens from 13617 -> 13640","Type":"Adherens","Directional":false,"Links":[{"SourceID":13617,"TargetID":13640,"Directional":false}]},{"ID":625,"SourceStructureID":24366,"TargetStructureID":335,"Label":"24366-335 via Gap Junction from 122154 -> 122153","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122154,"TargetID":122153,"Directional":false}]},{"ID":626,"SourceStructureID":31710,"TargetStructureID":335,"Label":"31710-335 via Gap Junction from 52672 -> 52673","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52672,"TargetID":52673,"Directional":false}]},{"ID":627,"SourceStructureID":440,"TargetStructureID":344,"Label":"440-344 via Gap Junction from 117829 -> 117830","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117829,"TargetID":117830,"Directional":false}]},{"ID":628,"SourceStructureID":344,"TargetStructureID":7157,"Label":"344-7157 via Gap Junction from 119037 -> 122641","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119037,"TargetID":122641,"Directional":false}]},{"ID":629,"SourceStructureID":344,"TargetStructureID":7468,"Label":"344-7468 via Gap Junction from 31740 -> 31739, 31742 -> 31741, 47853 -> 31736, 117819 -> 117818","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":31740,"TargetID":31739,"Directional":false},{"SourceID":31742,"TargetID":31741,"Directional":false},{"SourceID":47853,"TargetID":31736,"Directional":false},{"SourceID":117819,"TargetID":117818,"Directional":false}]},{"ID":630,"SourceStructureID":344,"TargetStructureID":118058,"Label":"344-118058 via Gap Junction from 122610 -> 118065","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122610,"TargetID":118065,"Directional":false}]},{"ID":631,"SourceStructureID":119028,"TargetStructureID":344,"Label":"119028-344 via Gap Junction from 119030 -> 119027","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119030,"TargetID":119027,"Directional":false}]},{"ID":632,"SourceStructureID":5860,"TargetStructureID":352,"Label":"5860-352 via Adherens from 90689 -> 90688, 90691 -> 90690, 90693 -> 90692","Type":"Adherens","Directional":false,"Links":[{"SourceID":90689,"TargetID":90688,"Directional":false},{"SourceID":90691,"TargetID":90690,"Directional":false},{"SourceID":90693,"TargetID":90692,"Directional":false}]},{"ID":633,"SourceStructureID":9260,"TargetStructureID":352,"Label":"9260-352 via Adherens from 90687 -> 90686","Type":"Adherens","Directional":false,"Links":[{"SourceID":90687,"TargetID":90686,"Directional":false}]},{"ID":634,"SourceStructureID":11238,"TargetStructureID":353,"Label":"11238-353 via Adherens from 136121 -> 136122","Type":"Adherens","Directional":false,"Links":[{"SourceID":136121,"TargetID":136122,"Directional":false}]},{"ID":635,"SourceStructureID":135225,"TargetStructureID":354,"Label":"135225-354 via Touch from 135913 -> 135912","Type":"Touch","Directional":false,"Links":[{"SourceID":135913,"TargetID":135912,"Directional":false}]},{"ID":636,"SourceStructureID":364,"TargetStructureID":364,"Label":"364-364 via Unknown from 92580 -> 92581","Type":"Unknown","Directional":false,"Links":[{"SourceID":92580,"TargetID":92581,"Directional":false}]},{"ID":637,"SourceStructureID":364,"TargetStructureID":366,"Label":"364-366 via Gap Junction from 14073 -> 14057, 115637 -> 115638","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14073,"TargetID":14057,"Directional":false},{"SourceID":115637,"TargetID":115638,"Directional":false}]},{"ID":638,"SourceStructureID":364,"TargetStructureID":366,"Label":"364-366 via Unknown from 115640 -> 115639","Type":"Unknown","Directional":false,"Links":[{"SourceID":115640,"TargetID":115639,"Directional":false}]},{"ID":639,"SourceStructureID":364,"TargetStructureID":431,"Label":"364-431 via Adherens from 12870 -> 12790","Type":"Adherens","Directional":false,"Links":[{"SourceID":12870,"TargetID":12790,"Directional":false}]},{"ID":640,"SourceStructureID":431,"TargetStructureID":364,"Label":"431-364 via Gap Junction from 38580 -> 12893, 55262 -> 12896, 120609 -> 120606, 120610 -> 120611, 122814 -> 122813, 122837 -> 122836, 122864 -> 122863","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38580,"TargetID":12893,"Directional":false},{"SourceID":55262,"TargetID":12896,"Directional":false},{"SourceID":120609,"TargetID":120606,"Directional":false},{"SourceID":120610,"TargetID":120611,"Directional":false},{"SourceID":122814,"TargetID":122813,"Directional":false},{"SourceID":122837,"TargetID":122836,"Directional":false},{"SourceID":122864,"TargetID":122863,"Directional":false}]},{"ID":641,"SourceStructureID":364,"TargetStructureID":3116,"Label":"364-3116 via Gap Junction from 92472 -> 46562","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92472,"TargetID":46562,"Directional":false}]},{"ID":642,"SourceStructureID":4569,"TargetStructureID":364,"Label":"4569-364 via Gap Junction from 98737 -> 98738","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98737,"TargetID":98738,"Directional":false}]},{"ID":643,"SourceStructureID":364,"TargetStructureID":4569,"Label":"364-4569 via Unknown from 98948 -> 98947","Type":"Unknown","Directional":false,"Links":[{"SourceID":98948,"TargetID":98947,"Directional":false}]},{"ID":644,"SourceStructureID":364,"TargetStructureID":20299,"Label":"364-20299 via Adherens from 55260 -> 55259","Type":"Adherens","Directional":false,"Links":[{"SourceID":55260,"TargetID":55259,"Directional":false}]},{"ID":645,"SourceStructureID":372,"TargetStructureID":366,"Label":"372-366 via Gap Junction from 71880 -> 71879, 122296 -> 122290, 122305 -> 122306","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71880,"TargetID":71879,"Directional":false},{"SourceID":122296,"TargetID":122290,"Directional":false},{"SourceID":122305,"TargetID":122306,"Directional":false}]},{"ID":646,"SourceStructureID":419,"TargetStructureID":366,"Label":"419-366 via Touch from 131762 -> 131763, 131764 -> 131765","Type":"Touch","Directional":false,"Links":[{"SourceID":131762,"TargetID":131763,"Directional":false},{"SourceID":131764,"TargetID":131765,"Directional":false}]},{"ID":647,"SourceStructureID":366,"TargetStructureID":428,"Label":"366-428 via Adherens from 13650 -> 13651, 13968 -> 13969","Type":"Adherens","Directional":false,"Links":[{"SourceID":13650,"TargetID":13651,"Directional":false},{"SourceID":13968,"TargetID":13969,"Directional":false}]},{"ID":648,"SourceStructureID":428,"TargetStructureID":366,"Label":"428-366 via Gap Junction from 114672 -> 114671, 115612 -> 115611, 115646 -> 115645","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":114672,"TargetID":114671,"Directional":false},{"SourceID":115612,"TargetID":115611,"Directional":false},{"SourceID":115646,"TargetID":115645,"Directional":false}]},{"ID":649,"SourceStructureID":428,"TargetStructureID":366,"Label":"428-366 via Unknown from 115650 -> 115649","Type":"Unknown","Directional":false,"Links":[{"SourceID":115650,"TargetID":115649,"Directional":false}]},{"ID":650,"SourceStructureID":479,"TargetStructureID":366,"Label":"479-366 via Gap Junction from 115653 -> 115651","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115653,"TargetID":115651,"Directional":false}]},{"ID":651,"SourceStructureID":366,"TargetStructureID":6153,"Label":"366-6153 via Gap Junction from 13665 -> 17472, 17444 -> 13981, 122250 -> 122249, 122303 -> 122304","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":13665,"TargetID":17472,"Directional":false},{"SourceID":17444,"TargetID":13981,"Directional":false},{"SourceID":122250,"TargetID":122249,"Directional":false},{"SourceID":122303,"TargetID":122304,"Directional":false}]},{"ID":652,"SourceStructureID":7157,"TargetStructureID":366,"Label":"7157-366 via Gap Junction from 18168 -> 18169","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":18168,"TargetID":18169,"Directional":false}]},{"ID":653,"SourceStructureID":20299,"TargetStructureID":366,"Label":"20299-366 via Adherens from 55261 -> 14103","Type":"Adherens","Directional":false,"Links":[{"SourceID":55261,"TargetID":14103,"Directional":false}]},{"ID":654,"SourceStructureID":366,"TargetStructureID":33148,"Label":"366-33148 via Unknown from 115609 -> 115610","Type":"Unknown","Directional":false,"Links":[{"SourceID":115609,"TargetID":115610,"Directional":false}]},{"ID":655,"SourceStructureID":366,"TargetStructureID":66138,"Label":"366-66138 via Gap Junction from 66187 -> 66188","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66187,"TargetID":66188,"Directional":false}]},{"ID":656,"SourceStructureID":115602,"TargetStructureID":366,"Label":"115602-366 via Gap Junction from 115603 -> 115601, 115608 -> 115607","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115603,"TargetID":115601,"Directional":false},{"SourceID":115608,"TargetID":115607,"Directional":false}]},{"ID":657,"SourceStructureID":115605,"TargetStructureID":366,"Label":"115605-366 via Gap Junction from 115606 -> 115604","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115606,"TargetID":115604,"Directional":false}]},{"ID":658,"SourceStructureID":366,"TargetStructureID":115613,"Label":"366-115613 via Unknown from 115615 -> 115614","Type":"Unknown","Directional":false,"Links":[{"SourceID":115615,"TargetID":115614,"Directional":false}]},{"ID":659,"SourceStructureID":115626,"TargetStructureID":366,"Label":"115626-366 via Gap Junction from 115627 -> 115625","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115627,"TargetID":115625,"Directional":false}]},{"ID":660,"SourceStructureID":115641,"TargetStructureID":366,"Label":"115641-366 via Gap Junction from 115643 -> 13947","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115643,"TargetID":13947,"Directional":false}]},{"ID":661,"SourceStructureID":366,"TargetStructureID":115647,"Label":"366-115647 via Gap Junction from 14104 -> 115648","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14104,"TargetID":115648,"Directional":false}]},{"ID":662,"SourceStructureID":115658,"TargetStructureID":366,"Label":"115658-366 via Unknown from 115659 -> 115657","Type":"Unknown","Directional":false,"Links":[{"SourceID":115659,"TargetID":115657,"Directional":false}]},{"ID":663,"SourceStructureID":115660,"TargetStructureID":366,"Label":"115660-366 via Gap Junction from 115661 -> 13623","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115661,"TargetID":13623,"Directional":false}]},{"ID":664,"SourceStructureID":372,"TargetStructureID":410,"Label":"372-410 via Gap Junction from 21365 -> 17300","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":21365,"TargetID":17300,"Directional":false}]},{"ID":665,"SourceStructureID":372,"TargetStructureID":412,"Label":"372-412 via Unknown from 122389 -> 122388","Type":"Unknown","Directional":false,"Links":[{"SourceID":122389,"TargetID":122388,"Directional":false}]},{"ID":666,"SourceStructureID":372,"TargetStructureID":428,"Label":"372-428 via Gap Junction from 122297 -> 122291, 122342 -> 122341","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122297,"TargetID":122291,"Directional":false},{"SourceID":122342,"TargetID":122341,"Directional":false}]},{"ID":667,"SourceStructureID":479,"TargetStructureID":372,"Label":"479-372 via Gap Junction from 58760 -> 58759, 58791 -> 58792, 71860 -> 71859, 121783 -> 121784, 122320 -> 122319","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58760,"TargetID":58759,"Directional":false},{"SourceID":58791,"TargetID":58792,"Directional":false},{"SourceID":71860,"TargetID":71859,"Directional":false},{"SourceID":121783,"TargetID":121784,"Directional":false},{"SourceID":122320,"TargetID":122319,"Directional":false}]},{"ID":668,"SourceStructureID":372,"TargetStructureID":3116,"Label":"372-3116 via Gap Junction from 55066 -> 122362, 122334 -> 122333","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55066,"TargetID":122362,"Directional":false},{"SourceID":122334,"TargetID":122333,"Directional":false}]},{"ID":669,"SourceStructureID":372,"TargetStructureID":6153,"Label":"372-6153 via Gap Junction from 30978 -> 8404, 30983 -> 13785, 46909 -> 55341, 115631 -> 8405, 122327 -> 8403, 131410 -> 131409","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30978,"TargetID":8404,"Directional":false},{"SourceID":30983,"TargetID":13785,"Directional":false},{"SourceID":46909,"TargetID":55341,"Directional":false},{"SourceID":115631,"TargetID":8405,"Directional":false},{"SourceID":122327,"TargetID":8403,"Directional":false},{"SourceID":131410,"TargetID":131409,"Directional":false}]},{"ID":670,"SourceStructureID":24401,"TargetStructureID":372,"Label":"24401-372 via Gap Junction from 121696 -> 121693","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121696,"TargetID":121693,"Directional":false}]},{"ID":671,"SourceStructureID":372,"TargetStructureID":32577,"Label":"372-32577 via Adherens from 71840 -> 71839","Type":"Adherens","Directional":false,"Links":[{"SourceID":71840,"TargetID":71839,"Directional":false}]},{"ID":672,"SourceStructureID":372,"TargetStructureID":71531,"Label":"372-71531 via Adherens from 71532 -> 71533","Type":"Adherens","Directional":false,"Links":[{"SourceID":71532,"TargetID":71533,"Directional":false}]},{"ID":673,"SourceStructureID":372,"TargetStructureID":71541,"Label":"372-71541 via Adherens from 71864 -> 71863","Type":"Adherens","Directional":false,"Links":[{"SourceID":71864,"TargetID":71863,"Directional":false}]},{"ID":674,"SourceStructureID":372,"TargetStructureID":71556,"Label":"372-71556 via Adherens from 71858 -> 71857","Type":"Adherens","Directional":false,"Links":[{"SourceID":71858,"TargetID":71857,"Directional":false}]},{"ID":675,"SourceStructureID":372,"TargetStructureID":71566,"Label":"372-71566 via Adherens from 71875 -> 71876","Type":"Adherens","Directional":false,"Links":[{"SourceID":71875,"TargetID":71876,"Directional":false}]},{"ID":676,"SourceStructureID":380,"TargetStructureID":410,"Label":"380-410 via Adherens from 23132 -> 23131","Type":"Adherens","Directional":false,"Links":[{"SourceID":23132,"TargetID":23131,"Directional":false}]},{"ID":677,"SourceStructureID":8575,"TargetStructureID":389,"Label":"8575-389 via Adherens from 62130 -> 62131, 62143 -> 62142","Type":"Adherens","Directional":false,"Links":[{"SourceID":62130,"TargetID":62131,"Directional":false},{"SourceID":62143,"TargetID":62142,"Directional":false}]},{"ID":678,"SourceStructureID":390,"TargetStructureID":483,"Label":"390-483 via Unknown from 134075 -> 134076","Type":"Unknown","Directional":false,"Links":[{"SourceID":134075,"TargetID":134076,"Directional":false}]},{"ID":679,"SourceStructureID":6156,"TargetStructureID":390,"Label":"6156-390 via Adherens from 133428 -> 133429","Type":"Adherens","Directional":false,"Links":[{"SourceID":133428,"TargetID":133429,"Directional":false}]},{"ID":680,"SourceStructureID":390,"TargetStructureID":6156,"Label":"390-6156 via Unknown from 133166 -> 133167","Type":"Unknown","Directional":false,"Links":[{"SourceID":133166,"TargetID":133167,"Directional":false}]},{"ID":681,"SourceStructureID":9693,"TargetStructureID":390,"Label":"9693-390 via Adherens from 119706 -> 119707","Type":"Adherens","Directional":false,"Links":[{"SourceID":119706,"TargetID":119707,"Directional":false}]},{"ID":682,"SourceStructureID":390,"TargetStructureID":9693,"Label":"390-9693 via Unknown from 134743 -> 119831","Type":"Unknown","Directional":false,"Links":[{"SourceID":134743,"TargetID":119831,"Directional":false}]},{"ID":683,"SourceStructureID":391,"TargetStructureID":2610,"Label":"391-2610 via Adherens from 108206 -> 108207","Type":"Adherens","Directional":false,"Links":[{"SourceID":108206,"TargetID":108207,"Directional":false}]},{"ID":684,"SourceStructureID":391,"TargetStructureID":2610,"Label":"391-2610 via Unknown from 108313 -> 108314","Type":"Unknown","Directional":false,"Links":[{"SourceID":108313,"TargetID":108314,"Directional":false}]},{"ID":685,"SourceStructureID":5345,"TargetStructureID":391,"Label":"5345-391 via Adherens from 108202 -> 108201, 108203 -> 108204, 108537 -> 108536","Type":"Adherens","Directional":false,"Links":[{"SourceID":108202,"TargetID":108201,"Directional":false},{"SourceID":108203,"TargetID":108204,"Directional":false},{"SourceID":108537,"TargetID":108536,"Directional":false}]},{"ID":686,"SourceStructureID":391,"TargetStructureID":10897,"Label":"391-10897 via Adherens from 108376 -> 108377","Type":"Adherens","Directional":false,"Links":[{"SourceID":108376,"TargetID":108377,"Directional":false}]},{"ID":687,"SourceStructureID":391,"TargetStructureID":10897,"Label":"391-10897 via Unknown from 108366 -> 108367, 108391 -> 108392","Type":"Unknown","Directional":false,"Links":[{"SourceID":108366,"TargetID":108367,"Directional":false},{"SourceID":108391,"TargetID":108392,"Directional":false}]},{"ID":688,"SourceStructureID":391,"TargetStructureID":20728,"Label":"391-20728 via Unknown from 108176 -> 108177","Type":"Unknown","Directional":false,"Links":[{"SourceID":108176,"TargetID":108177,"Directional":false}]},{"ID":689,"SourceStructureID":391,"TargetStructureID":89305,"Label":"391-89305 via Unknown from 108509 -> 108510","Type":"Unknown","Directional":false,"Links":[{"SourceID":108509,"TargetID":108510,"Directional":false}]},{"ID":690,"SourceStructureID":398,"TargetStructureID":397,"Label":"398-397 via Gap Junction from 122656 -> 122655, 122667 -> 122666, 122680 -> 122679, 122684 -> 122683, 122694 -> 122695","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122656,"TargetID":122655,"Directional":false},{"SourceID":122667,"TargetID":122666,"Directional":false},{"SourceID":122680,"TargetID":122679,"Directional":false},{"SourceID":122684,"TargetID":122683,"Directional":false},{"SourceID":122694,"TargetID":122695,"Directional":false}]},{"ID":691,"SourceStructureID":397,"TargetStructureID":24303,"Label":"397-24303 via Gap Junction from 55335 -> 122393, 55348 -> 55338","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55335,"TargetID":122393,"Directional":false},{"SourceID":55348,"TargetID":55338,"Directional":false}]},{"ID":692,"SourceStructureID":398,"TargetStructureID":398,"Label":"398-398 via Gap Junction from 122691 -> 122692","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122691,"TargetID":122692,"Directional":false}]},{"ID":693,"SourceStructureID":398,"TargetStructureID":45731,"Label":"398-45731 via Gap Junction from 122696 -> 122697","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122696,"TargetID":122697,"Directional":false}]},{"ID":694,"SourceStructureID":6589,"TargetStructureID":400,"Label":"6589-400 via Adherens from 130599 -> 130604","Type":"Adherens","Directional":false,"Links":[{"SourceID":130599,"TargetID":130604,"Directional":false}]},{"ID":695,"SourceStructureID":400,"TargetStructureID":9693,"Label":"400-9693 via Adherens from 59566 -> 59565, 130580 -> 130581, 131733 -> 120120","Type":"Adherens","Directional":false,"Links":[{"SourceID":59566,"TargetID":59565,"Directional":false},{"SourceID":130580,"TargetID":130581,"Directional":false},{"SourceID":131733,"TargetID":120120,"Directional":false}]},{"ID":696,"SourceStructureID":405,"TargetStructureID":408,"Label":"405-408 via Adherens from 37589 -> 37590","Type":"Adherens","Directional":false,"Links":[{"SourceID":37589,"TargetID":37590,"Directional":false}]},{"ID":697,"SourceStructureID":410,"TargetStructureID":408,"Label":"410-408 via Gap Junction from 8355 -> 22509, 25883 -> 8357, 35795 -> 8356, 35808 -> 8350, 35898 -> 17694, 47120 -> 9364","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8355,"TargetID":22509,"Directional":false},{"SourceID":25883,"TargetID":8357,"Directional":false},{"SourceID":35795,"TargetID":8356,"Directional":false},{"SourceID":35808,"TargetID":8350,"Directional":false},{"SourceID":35898,"TargetID":17694,"Directional":false},{"SourceID":47120,"TargetID":9364,"Directional":false}]},{"ID":698,"SourceStructureID":408,"TargetStructureID":479,"Label":"408-479 via Gap Junction from 121738 -> 121737","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121738,"TargetID":121737,"Directional":false}]},{"ID":699,"SourceStructureID":408,"TargetStructureID":6155,"Label":"408-6155 via Gap Junction from 49029 -> 48312, 121222 -> 52878","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49029,"TargetID":48312,"Directional":false},{"SourceID":121222,"TargetID":52878,"Directional":false}]},{"ID":700,"SourceStructureID":24303,"TargetStructureID":408,"Label":"24303-408 via Gap Junction from 35794 -> 35793, 122397 -> 122396, 122474 -> 122475, 122476 -> 122477","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35794,"TargetID":35793,"Directional":false},{"SourceID":122397,"TargetID":122396,"Directional":false},{"SourceID":122474,"TargetID":122475,"Directional":false},{"SourceID":122476,"TargetID":122477,"Directional":false}]},{"ID":701,"SourceStructureID":24401,"TargetStructureID":408,"Label":"24401-408 via Gap Junction from 34805 -> 34806, 34813 -> 121161, 35804 -> 35803, 48142 -> 48141, 52864 -> 52865, 121186 -> 52870, 121204 -> 121205, 121716 -> 121717","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":34805,"TargetID":34806,"Directional":false},{"SourceID":34813,"TargetID":121161,"Directional":false},{"SourceID":35804,"TargetID":35803,"Directional":false},{"SourceID":48142,"TargetID":48141,"Directional":false},{"SourceID":52864,"TargetID":52865,"Directional":false},{"SourceID":121186,"TargetID":52870,"Directional":false},{"SourceID":121204,"TargetID":121205,"Directional":false},{"SourceID":121716,"TargetID":121717,"Directional":false}]},{"ID":702,"SourceStructureID":408,"TargetStructureID":28886,"Label":"408-28886 via Gap Junction from 51630 -> 45766","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51630,"TargetID":45766,"Directional":false}]},{"ID":703,"SourceStructureID":408,"TargetStructureID":39862,"Label":"408-39862 via Gap Junction from 29276 -> 51253, 53034 -> 51245","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29276,"TargetID":51253,"Directional":false},{"SourceID":53034,"TargetID":51245,"Directional":false}]},{"ID":704,"SourceStructureID":121155,"TargetStructureID":408,"Label":"121155-408 via Gap Junction from 121695 -> 121694","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121695,"TargetID":121694,"Directional":false}]},{"ID":705,"SourceStructureID":408,"TargetStructureID":121663,"Label":"408-121663 via Gap Junction from 121667 -> 121666, 121670 -> 29272","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121667,"TargetID":121666,"Directional":false},{"SourceID":121670,"TargetID":29272,"Directional":false}]},{"ID":706,"SourceStructureID":410,"TargetStructureID":419,"Label":"410-419 via Adherens from 10136 -> 10135, 133706 -> 133707, 135091 -> 133711","Type":"Adherens","Directional":false,"Links":[{"SourceID":10136,"TargetID":10135,"Directional":false},{"SourceID":133706,"TargetID":133707,"Directional":false},{"SourceID":135091,"TargetID":133711,"Directional":false}]},{"ID":707,"SourceStructureID":419,"TargetStructureID":410,"Label":"419-410 via Gap Junction from 10131 -> 10132, 14602 -> 8366, 131492 -> 131491, 131797 -> 131796, 132589 -> 132590, 133539 -> 133540","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10131,"TargetID":10132,"Directional":false},{"SourceID":14602,"TargetID":8366,"Directional":false},{"SourceID":131492,"TargetID":131491,"Directional":false},{"SourceID":131797,"TargetID":131796,"Directional":false},{"SourceID":132589,"TargetID":132590,"Directional":false},{"SourceID":133539,"TargetID":133540,"Directional":false}]},{"ID":708,"SourceStructureID":410,"TargetStructureID":476,"Label":"410-476 via Gap Junction from 8370 -> 17490, 8380 -> 8347, 10439 -> 10440, 16480 -> 8376, 16502 -> 8354, 16515 -> 16514, 17347 -> 17346, 19117 -> 19116, 32738 -> 32736","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8370,"TargetID":17490,"Directional":false},{"SourceID":8380,"TargetID":8347,"Directional":false},{"SourceID":10439,"TargetID":10440,"Directional":false},{"SourceID":16480,"TargetID":8376,"Directional":false},{"SourceID":16502,"TargetID":8354,"Directional":false},{"SourceID":16515,"TargetID":16514,"Directional":false},{"SourceID":17347,"TargetID":17346,"Directional":false},{"SourceID":19117,"TargetID":19116,"Directional":false},{"SourceID":32738,"TargetID":32736,"Directional":false}]},{"ID":709,"SourceStructureID":410,"TargetStructureID":483,"Label":"410-483 via Gap Junction from 94746 -> 94747","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94746,"TargetID":94747,"Directional":false}]},{"ID":710,"SourceStructureID":410,"TargetStructureID":485,"Label":"410-485 via Gap Junction from 8362 -> 8348, 8363 -> 50880, 94053 -> 94052, 148013 -> 148014, 148077 -> 148078, 148426 -> 148427, 148429 -> 148430, 148435 -> 148436","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8362,"TargetID":8348,"Directional":false},{"SourceID":8363,"TargetID":50880,"Directional":false},{"SourceID":94053,"TargetID":94052,"Directional":false},{"SourceID":148013,"TargetID":148014,"Directional":false},{"SourceID":148077,"TargetID":148078,"Directional":false},{"SourceID":148426,"TargetID":148427,"Directional":false},{"SourceID":148429,"TargetID":148430,"Directional":false},{"SourceID":148435,"TargetID":148436,"Directional":false}]},{"ID":711,"SourceStructureID":514,"TargetStructureID":410,"Label":"514-410 via Adherens from 15088 -> 15087","Type":"Adherens","Directional":false,"Links":[{"SourceID":15088,"TargetID":15087,"Directional":false}]},{"ID":712,"SourceStructureID":514,"TargetStructureID":410,"Label":"514-410 via Gap Junction from 15098 -> 15097","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15098,"TargetID":15097,"Directional":false}]},{"ID":713,"SourceStructureID":410,"TargetStructureID":2610,"Label":"410-2610 via Gap Junction from 17501 -> 17500, 22675 -> 22676","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17501,"TargetID":17500,"Directional":false},{"SourceID":22675,"TargetID":22676,"Directional":false}]},{"ID":714,"SourceStructureID":410,"TargetStructureID":4850,"Label":"410-4850 via Gap Junction from 97993 -> 97992","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97993,"TargetID":97992,"Directional":false}]},{"ID":715,"SourceStructureID":410,"TargetStructureID":6153,"Label":"410-6153 via Gap Junction from 9189 -> 8410, 16671 -> 16670, 16701 -> 16700, 17352 -> 17351, 17830 -> 17829","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9189,"TargetID":8410,"Directional":false},{"SourceID":16671,"TargetID":16670,"Directional":false},{"SourceID":16701,"TargetID":16700,"Directional":false},{"SourceID":17352,"TargetID":17351,"Directional":false},{"SourceID":17830,"TargetID":17829,"Directional":false}]},{"ID":716,"SourceStructureID":410,"TargetStructureID":6589,"Label":"410-6589 via Gap Junction from 132734 -> 132733","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132734,"TargetID":132733,"Directional":false}]},{"ID":717,"SourceStructureID":410,"TargetStructureID":9693,"Label":"410-9693 via Adherens from 131490 -> 131489","Type":"Adherens","Directional":false,"Links":[{"SourceID":131490,"TargetID":131489,"Directional":false}]},{"ID":718,"SourceStructureID":410,"TargetStructureID":9693,"Label":"410-9693 via Gap Junction from 131488 -> 119862","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131488,"TargetID":119862,"Directional":false}]},{"ID":719,"SourceStructureID":17527,"TargetStructureID":410,"Label":"17527-410 via Gap Junction from 17535 -> 17534, 17792 -> 17791, 17890 -> 17889, 18366 -> 18365","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17535,"TargetID":17534,"Directional":false},{"SourceID":17792,"TargetID":17791,"Directional":false},{"SourceID":17890,"TargetID":17889,"Directional":false},{"SourceID":18366,"TargetID":18365,"Directional":false}]},{"ID":720,"SourceStructureID":410,"TargetStructureID":25688,"Label":"410-25688 via Adherens from 25700 -> 25699","Type":"Adherens","Directional":false,"Links":[{"SourceID":25700,"TargetID":25699,"Directional":false}]},{"ID":721,"SourceStructureID":101332,"TargetStructureID":410,"Label":"101332-410 via Unknown from 101336 -> 101337","Type":"Unknown","Directional":false,"Links":[{"SourceID":101336,"TargetID":101337,"Directional":false}]},{"ID":722,"SourceStructureID":121177,"TargetStructureID":410,"Label":"121177-410 via Gap Junction from 121179 -> 9528","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121179,"TargetID":9528,"Directional":false}]},{"ID":723,"SourceStructureID":419,"TargetStructureID":412,"Label":"419-412 via Unknown from 132512 -> 133693","Type":"Unknown","Directional":false,"Links":[{"SourceID":132512,"TargetID":133693,"Directional":false}]},{"ID":724,"SourceStructureID":479,"TargetStructureID":412,"Label":"479-412 via Unknown from 122390 -> 122391","Type":"Unknown","Directional":false,"Links":[{"SourceID":122390,"TargetID":122391,"Directional":false}]},{"ID":725,"SourceStructureID":412,"TargetStructureID":24401,"Label":"412-24401 via Gap Junction from 133690 -> 133691","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133690,"TargetID":133691,"Directional":false}]},{"ID":726,"SourceStructureID":121155,"TargetStructureID":412,"Label":"121155-412 via Gap Junction from 133689 -> 133692","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133689,"TargetID":133692,"Directional":false}]},{"ID":727,"SourceStructureID":419,"TargetStructureID":419,"Label":"419-419 via Gap Junction from 131773 -> 131774, 131792 -> 131791","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131773,"TargetID":131774,"Directional":false},{"SourceID":131792,"TargetID":131791,"Directional":false}]},{"ID":728,"SourceStructureID":476,"TargetStructureID":419,"Label":"476-419 via Adherens from 133683 -> 132385, 133709 -> 133708","Type":"Adherens","Directional":false,"Links":[{"SourceID":133683,"TargetID":132385,"Directional":false},{"SourceID":133709,"TargetID":133708,"Directional":false}]},{"ID":729,"SourceStructureID":476,"TargetStructureID":419,"Label":"476-419 via Gap Junction from 10123 -> 10122, 10459 -> 14594, 14599 -> 2293, 20365 -> 8396, 32135 -> 32136, 65186 -> 10463, 131466 -> 131465, 131832 -> 131833, 132384 -> 133682, 133581 -> 133582, 133705 -> 131853","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10123,"TargetID":10122,"Directional":false},{"SourceID":10459,"TargetID":14594,"Directional":false},{"SourceID":14599,"TargetID":2293,"Directional":false},{"SourceID":20365,"TargetID":8396,"Directional":false},{"SourceID":32135,"TargetID":32136,"Directional":false},{"SourceID":65186,"TargetID":10463,"Directional":false},{"SourceID":131466,"TargetID":131465,"Directional":false},{"SourceID":131832,"TargetID":131833,"Directional":false},{"SourceID":132384,"TargetID":133682,"Directional":false},{"SourceID":133581,"TargetID":133582,"Directional":false},{"SourceID":133705,"TargetID":131853,"Directional":false}]},{"ID":730,"SourceStructureID":483,"TargetStructureID":419,"Label":"483-419 via Gap Junction from 131756 -> 131757","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131756,"TargetID":131757,"Directional":false}]},{"ID":731,"SourceStructureID":485,"TargetStructureID":419,"Label":"485-419 via Adherens from 131494 -> 131495","Type":"Adherens","Directional":false,"Links":[{"SourceID":131494,"TargetID":131495,"Directional":false}]},{"ID":732,"SourceStructureID":419,"TargetStructureID":485,"Label":"419-485 via Touch from 133677 -> 133678","Type":"Touch","Directional":false,"Links":[{"SourceID":133677,"TargetID":133678,"Directional":false}]},{"ID":733,"SourceStructureID":419,"TargetStructureID":2610,"Label":"419-2610 via Gap Junction from 70525 -> 70526, 131798 -> 131799, 133725 -> 133726","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70525,"TargetID":70526,"Directional":false},{"SourceID":131798,"TargetID":131799,"Directional":false},{"SourceID":133725,"TargetID":133726,"Directional":false}]},{"ID":734,"SourceStructureID":419,"TargetStructureID":4890,"Label":"419-4890 via Unknown from 133543 -> 133544","Type":"Unknown","Directional":false,"Links":[{"SourceID":133543,"TargetID":133544,"Directional":false}]},{"ID":735,"SourceStructureID":419,"TargetStructureID":5118,"Label":"419-5118 via Unknown from 131843 -> 131844","Type":"Unknown","Directional":false,"Links":[{"SourceID":131843,"TargetID":131844,"Directional":false}]},{"ID":736,"SourceStructureID":419,"TargetStructureID":6153,"Label":"419-6153 via Adherens from 133701 -> 133702, 133714 -> 133713, 133715 -> 133716","Type":"Adherens","Directional":false,"Links":[{"SourceID":133701,"TargetID":133702,"Directional":false},{"SourceID":133714,"TargetID":133713,"Directional":false},{"SourceID":133715,"TargetID":133716,"Directional":false}]},{"ID":737,"SourceStructureID":419,"TargetStructureID":6153,"Label":"419-6153 via Gap Junction from 10161 -> 10162, 20389 -> 17474, 131750 -> 131749, 131761 -> 131759, 131785 -> 131786, 133600 -> 133601","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10161,"TargetID":10162,"Directional":false},{"SourceID":20389,"TargetID":17474,"Directional":false},{"SourceID":131750,"TargetID":131749,"Directional":false},{"SourceID":131761,"TargetID":131759,"Directional":false},{"SourceID":131785,"TargetID":131786,"Directional":false},{"SourceID":133600,"TargetID":133601,"Directional":false}]},{"ID":738,"SourceStructureID":6156,"TargetStructureID":419,"Label":"6156-419 via Adherens from 115066 -> 115067","Type":"Adherens","Directional":false,"Links":[{"SourceID":115066,"TargetID":115067,"Directional":false}]},{"ID":739,"SourceStructureID":6156,"TargetStructureID":419,"Label":"6156-419 via Gap Junction from 131464 -> 131463","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131464,"TargetID":131463,"Directional":false}]},{"ID":740,"SourceStructureID":6589,"TargetStructureID":419,"Label":"6589-419 via Touch from 133559 -> 133560","Type":"Touch","Directional":false,"Links":[{"SourceID":133559,"TargetID":133560,"Directional":false}]},{"ID":741,"SourceStructureID":7157,"TargetStructureID":419,"Label":"7157-419 via Gap Junction from 131769 -> 131768","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131769,"TargetID":131768,"Directional":false}]},{"ID":742,"SourceStructureID":419,"TargetStructureID":13855,"Label":"419-13855 via Adherens from 14902 -> 14903, 133521 -> 132514","Type":"Adherens","Directional":false,"Links":[{"SourceID":14902,"TargetID":14903,"Directional":false},{"SourceID":133521,"TargetID":132514,"Directional":false}]},{"ID":743,"SourceStructureID":419,"TargetStructureID":18576,"Label":"419-18576 via Unknown from 132269 -> 133674, 133681 -> 132380","Type":"Unknown","Directional":false,"Links":[{"SourceID":132269,"TargetID":133674,"Directional":false},{"SourceID":133681,"TargetID":132380,"Directional":false}]},{"ID":744,"SourceStructureID":419,"TargetStructureID":25869,"Label":"419-25869 via Unknown from 133526 -> 133525","Type":"Unknown","Directional":false,"Links":[{"SourceID":133526,"TargetID":133525,"Directional":false}]},{"ID":745,"SourceStructureID":419,"TargetStructureID":32172,"Label":"419-32172 via Adherens from 132477 -> 132478","Type":"Adherens","Directional":false,"Links":[{"SourceID":132477,"TargetID":132478,"Directional":false}]},{"ID":746,"SourceStructureID":419,"TargetStructureID":36421,"Label":"419-36421 via Unknown from 133516 -> 133517","Type":"Unknown","Directional":false,"Links":[{"SourceID":133516,"TargetID":133517,"Directional":false}]},{"ID":747,"SourceStructureID":37286,"TargetStructureID":419,"Label":"37286-419 via Unknown from 132362 -> 132361","Type":"Unknown","Directional":false,"Links":[{"SourceID":132362,"TargetID":132361,"Directional":false}]},{"ID":748,"SourceStructureID":419,"TargetStructureID":60185,"Label":"419-60185 via Adherens from 60190 -> 60189","Type":"Adherens","Directional":false,"Links":[{"SourceID":60190,"TargetID":60189,"Directional":false}]},{"ID":749,"SourceStructureID":70518,"TargetStructureID":419,"Label":"70518-419 via Adherens from 132647 -> 132646","Type":"Adherens","Directional":false,"Links":[{"SourceID":132647,"TargetID":132646,"Directional":false}]},{"ID":750,"SourceStructureID":419,"TargetStructureID":70518,"Label":"419-70518 via Unknown from 132594 -> 132595","Type":"Unknown","Directional":false,"Links":[{"SourceID":132594,"TargetID":132595,"Directional":false}]},{"ID":751,"SourceStructureID":70833,"TargetStructureID":419,"Label":"70833-419 via Adherens from 133653 -> 133654","Type":"Adherens","Directional":false,"Links":[{"SourceID":133653,"TargetID":133654,"Directional":false}]},{"ID":752,"SourceStructureID":70901,"TargetStructureID":419,"Label":"70901-419 via Adherens from 132480 -> 132479","Type":"Adherens","Directional":false,"Links":[{"SourceID":132480,"TargetID":132479,"Directional":false}]},{"ID":753,"SourceStructureID":71041,"TargetStructureID":419,"Label":"71041-419 via Unknown from 131483 -> 131482, 133638 -> 133639","Type":"Unknown","Directional":false,"Links":[{"SourceID":131483,"TargetID":131482,"Directional":false},{"SourceID":133638,"TargetID":133639,"Directional":false}]},{"ID":754,"SourceStructureID":419,"TargetStructureID":89233,"Label":"419-89233 via Unknown from 89244 -> 89243","Type":"Unknown","Directional":false,"Links":[{"SourceID":89244,"TargetID":89243,"Directional":false}]},{"ID":755,"SourceStructureID":419,"TargetStructureID":101234,"Label":"419-101234 via Adherens from 132644 -> 132645","Type":"Adherens","Directional":false,"Links":[{"SourceID":132644,"TargetID":132645,"Directional":false}]},{"ID":756,"SourceStructureID":102524,"TargetStructureID":419,"Label":"102524-419 via Unknown from 133604 -> 133603","Type":"Unknown","Directional":false,"Links":[{"SourceID":133604,"TargetID":133603,"Directional":false}]},{"ID":757,"SourceStructureID":133553,"TargetStructureID":419,"Label":"133553-419 via Adherens from 133555 -> 132505, 133580 -> 133579","Type":"Adherens","Directional":false,"Links":[{"SourceID":133555,"TargetID":132505,"Directional":false},{"SourceID":133580,"TargetID":133579,"Directional":false}]},{"ID":758,"SourceStructureID":422,"TargetStructureID":422,"Label":"422-422 via Adherens from 107067 -> 107066","Type":"Adherens","Directional":false,"Links":[{"SourceID":107067,"TargetID":107066,"Directional":false}]},{"ID":759,"SourceStructureID":488,"TargetStructureID":422,"Label":"488-422 via Conventional from 87793 -> 87794","Type":"Conventional","Directional":false,"Links":[{"SourceID":87793,"TargetID":87794,"Directional":false}]},{"ID":760,"SourceStructureID":463,"TargetStructureID":425,"Label":"463-425 via Adherens from 12979 -> 12980","Type":"Adherens","Directional":false,"Links":[{"SourceID":12979,"TargetID":12980,"Directional":false}]},{"ID":761,"SourceStructureID":463,"TargetStructureID":425,"Label":"463-425 via Gap Junction from 74162 -> 74163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":74162,"TargetID":74163,"Directional":false}]},{"ID":762,"SourceStructureID":431,"TargetStructureID":428,"Label":"431-428 via Adherens from 12624 -> 12625","Type":"Adherens","Directional":false,"Links":[{"SourceID":12624,"TargetID":12625,"Directional":false}]},{"ID":763,"SourceStructureID":431,"TargetStructureID":428,"Label":"431-428 via Gap Junction from 12595 -> 12596, 52737 -> 52736","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12595,"TargetID":12596,"Directional":false},{"SourceID":52737,"TargetID":52736,"Directional":false}]},{"ID":764,"SourceStructureID":606,"TargetStructureID":428,"Label":"606-428 via Adherens from 53150 -> 53151","Type":"Adherens","Directional":false,"Links":[{"SourceID":53150,"TargetID":53151,"Directional":false}]},{"ID":765,"SourceStructureID":428,"TargetStructureID":4569,"Label":"428-4569 via Gap Junction from 52682 -> 52550, 58598 -> 58599, 98371 -> 98370","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52682,"TargetID":52550,"Directional":false},{"SourceID":58598,"TargetID":58599,"Directional":false},{"SourceID":98371,"TargetID":98370,"Directional":false}]},{"ID":766,"SourceStructureID":428,"TargetStructureID":59497,"Label":"428-59497 via Adherens from 59504 -> 59503","Type":"Adherens","Directional":false,"Links":[{"SourceID":59504,"TargetID":59503,"Directional":false}]},{"ID":767,"SourceStructureID":59497,"TargetStructureID":428,"Label":"59497-428 via Gap Junction from 59498 -> 52793","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59498,"TargetID":52793,"Directional":false}]},{"ID":768,"SourceStructureID":66138,"TargetStructureID":428,"Label":"66138-428 via Adherens from 66192 -> 66182","Type":"Adherens","Directional":false,"Links":[{"SourceID":66192,"TargetID":66182,"Directional":false}]},{"ID":769,"SourceStructureID":428,"TargetStructureID":66138,"Label":"428-66138 via Gap Junction from 66181 -> 66189","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66181,"TargetID":66189,"Directional":false}]},{"ID":770,"SourceStructureID":428,"TargetStructureID":66214,"Label":"428-66214 via Gap Junction from 66216 -> 66215","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66216,"TargetID":66215,"Directional":false}]},{"ID":771,"SourceStructureID":431,"TargetStructureID":440,"Label":"431-440 via Gap Junction from 12676 -> 60299, 18604 -> 122817, 38595 -> 18613, 60300 -> 12678, 60301 -> 12677, 60324 -> 60325, 122852 -> 122853, 122869 -> 122870","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12676,"TargetID":60299,"Directional":false},{"SourceID":18604,"TargetID":122817,"Directional":false},{"SourceID":38595,"TargetID":18613,"Directional":false},{"SourceID":60300,"TargetID":12678,"Directional":false},{"SourceID":60301,"TargetID":12677,"Directional":false},{"SourceID":60324,"TargetID":60325,"Directional":false},{"SourceID":122852,"TargetID":122853,"Directional":false},{"SourceID":122869,"TargetID":122870,"Directional":false}]},{"ID":772,"SourceStructureID":431,"TargetStructureID":4835,"Label":"431-4835 via Gap Junction from 12633 -> 12634, 12740 -> 8387, 12759 -> 12760, 12773 -> 8381, 12796 -> 8382, 38587 -> 38586, 122816 -> 122815","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12633,"TargetID":12634,"Directional":false},{"SourceID":12740,"TargetID":8387,"Directional":false},{"SourceID":12759,"TargetID":12760,"Directional":false},{"SourceID":12773,"TargetID":8381,"Directional":false},{"SourceID":12796,"TargetID":8382,"Directional":false},{"SourceID":38587,"TargetID":38586,"Directional":false},{"SourceID":122816,"TargetID":122815,"Directional":false}]},{"ID":773,"SourceStructureID":431,"TargetStructureID":7157,"Label":"431-7157 via Gap Junction from 12703 -> 12704, 12709 -> 12710","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12703,"TargetID":12704,"Directional":false},{"SourceID":12709,"TargetID":12710,"Directional":false}]},{"ID":774,"SourceStructureID":431,"TargetStructureID":8720,"Label":"431-8720 via Adherens from 60269 -> 60268","Type":"Adherens","Directional":false,"Links":[{"SourceID":60269,"TargetID":60268,"Directional":false}]},{"ID":775,"SourceStructureID":71882,"TargetStructureID":431,"Label":"71882-431 via Adherens from 90361 -> 90362","Type":"Adherens","Directional":false,"Links":[{"SourceID":90361,"TargetID":90362,"Directional":false}]},{"ID":776,"SourceStructureID":115641,"TargetStructureID":431,"Label":"115641-431 via Gap Junction from 115642 -> 12724","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115642,"TargetID":12724,"Directional":false}]},{"ID":777,"SourceStructureID":440,"TargetStructureID":440,"Label":"440-440 via Gap Junction from 122601 -> 122600","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122601,"TargetID":122600,"Directional":false}]},{"ID":778,"SourceStructureID":450,"TargetStructureID":440,"Label":"450-440 via Gap Junction from 118072 -> 118075, 118080 -> 118077, 122536 -> 122514","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118072,"TargetID":118075,"Directional":false},{"SourceID":118080,"TargetID":118077,"Directional":false},{"SourceID":122536,"TargetID":122514,"Directional":false}]},{"ID":779,"SourceStructureID":458,"TargetStructureID":440,"Label":"458-440 via Adherens from 64824 -> 64825","Type":"Adherens","Directional":false,"Links":[{"SourceID":64824,"TargetID":64825,"Directional":false}]},{"ID":780,"SourceStructureID":7215,"TargetStructureID":440,"Label":"7215-440 via Gap Junction from 118079 -> 118078","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118079,"TargetID":118078,"Directional":false}]},{"ID":781,"SourceStructureID":8720,"TargetStructureID":440,"Label":"8720-440 via Adherens from 60296 -> 60295","Type":"Adherens","Directional":false,"Links":[{"SourceID":60296,"TargetID":60295,"Directional":false}]},{"ID":782,"SourceStructureID":440,"TargetStructureID":61752,"Label":"440-61752 via Unknown from 122518 -> 122517","Type":"Unknown","Directional":false,"Links":[{"SourceID":122518,"TargetID":122517,"Directional":false}]},{"ID":783,"SourceStructureID":446,"TargetStructureID":7860,"Label":"446-7860 via Gap Junction from 47915 -> 29659, 118019 -> 118018, 118025 -> 118027, 118028 -> 118023","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47915,"TargetID":29659,"Directional":false},{"SourceID":118019,"TargetID":118018,"Directional":false},{"SourceID":118025,"TargetID":118027,"Directional":false},{"SourceID":118028,"TargetID":118023,"Directional":false}]},{"ID":784,"SourceStructureID":118014,"TargetStructureID":446,"Label":"118014-446 via Gap Junction from 118015 -> 118013, 118017 -> 118016","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118015,"TargetID":118013,"Directional":false},{"SourceID":118017,"TargetID":118016,"Directional":false}]},{"ID":785,"SourceStructureID":32273,"TargetStructureID":447,"Label":"32273-447 via Adherens from 32280 -> 32281","Type":"Adherens","Directional":false,"Links":[{"SourceID":32280,"TargetID":32281,"Directional":false}]},{"ID":786,"SourceStructureID":450,"TargetStructureID":450,"Label":"450-450 via Gap Junction from 118074 -> 118073","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118074,"TargetID":118073,"Directional":false}]},{"ID":787,"SourceStructureID":6129,"TargetStructureID":450,"Label":"6129-450 via Gap Junction from 117977 -> 117976","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117977,"TargetID":117976,"Directional":false}]},{"ID":788,"SourceStructureID":6165,"TargetStructureID":450,"Label":"6165-450 via Gap Junction from 118049 -> 118048, 122568 -> 122569","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118049,"TargetID":118048,"Directional":false},{"SourceID":122568,"TargetID":122569,"Directional":false}]},{"ID":789,"SourceStructureID":7861,"TargetStructureID":450,"Label":"7861-450 via Gap Junction from 10553 -> 10552, 20404 -> 20403, 122583 -> 122581","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10553,"TargetID":10552,"Directional":false},{"SourceID":20404,"TargetID":20403,"Directional":false},{"SourceID":122583,"TargetID":122581,"Directional":false}]},{"ID":790,"SourceStructureID":450,"TargetStructureID":82677,"Label":"450-82677 via Gap Junction from 122579 -> 122580","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122579,"TargetID":122580,"Directional":false}]},{"ID":791,"SourceStructureID":450,"TargetStructureID":117990,"Label":"450-117990 via Gap Junction from 122572 -> 122571","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122572,"TargetID":122571,"Directional":false}]},{"ID":792,"SourceStructureID":450,"TargetStructureID":122564,"Label":"450-122564 via Gap Junction from 118076 -> 122640, 122565 -> 122566","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118076,"TargetID":122640,"Directional":false},{"SourceID":122565,"TargetID":122566,"Directional":false}]},{"ID":793,"SourceStructureID":6128,"TargetStructureID":452,"Label":"6128-452 via Gap Junction from 20955 -> 21245, 21249 -> 21248, 21251 -> 21250","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20955,"TargetID":21245,"Directional":false},{"SourceID":21249,"TargetID":21248,"Directional":false},{"SourceID":21251,"TargetID":21250,"Directional":false}]},{"ID":794,"SourceStructureID":455,"TargetStructureID":458,"Label":"455-458 via Gap Junction from 14563 -> 14535","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14563,"TargetID":14535,"Directional":false}]},{"ID":795,"SourceStructureID":5545,"TargetStructureID":455,"Label":"5545-455 via Gap Junction from 123783 -> 123784","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123783,"TargetID":123784,"Directional":false}]},{"ID":796,"SourceStructureID":455,"TargetStructureID":130256,"Label":"455-130256 via Gap Junction from 158485 -> 158484","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":158485,"TargetID":158484,"Directional":false}]},{"ID":797,"SourceStructureID":456,"TargetStructureID":9787,"Label":"456-9787 via Adherens from 12047 -> 12046","Type":"Adherens","Directional":false,"Links":[{"SourceID":12047,"TargetID":12046,"Directional":false}]},{"ID":798,"SourceStructureID":458,"TargetStructureID":460,"Label":"458-460 via Adherens from 37518 -> 27151","Type":"Adherens","Directional":false,"Links":[{"SourceID":37518,"TargetID":27151,"Directional":false}]},{"ID":799,"SourceStructureID":458,"TargetStructureID":460,"Label":"458-460 via Gap Junction from 46324 -> 46317, 46329 -> 46328","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46324,"TargetID":46317,"Directional":false},{"SourceID":46329,"TargetID":46328,"Directional":false}]},{"ID":800,"SourceStructureID":968,"TargetStructureID":458,"Label":"968-458 via Adherens from 37519 -> 37520","Type":"Adherens","Directional":false,"Links":[{"SourceID":37519,"TargetID":37520,"Directional":false}]},{"ID":801,"SourceStructureID":131503,"TargetStructureID":458,"Label":"131503-458 via Adherens from 131609 -> 14501","Type":"Adherens","Directional":false,"Links":[{"SourceID":131609,"TargetID":14501,"Directional":false}]},{"ID":802,"SourceStructureID":968,"TargetStructureID":460,"Label":"968-460 via Gap Junction from 59860 -> 59859","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59860,"TargetID":59859,"Directional":false}]},{"ID":803,"SourceStructureID":461,"TargetStructureID":483,"Label":"461-483 via Gap Junction from 49767 -> 49797","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49767,"TargetID":49797,"Directional":false}]},{"ID":804,"SourceStructureID":461,"TargetStructureID":4835,"Label":"461-4835 via Gap Junction from 14685 -> 14686, 14880 -> 9042, 94774 -> 94773, 114684 -> 114683, 114782 -> 114686, 120415 -> 60131, 120417 -> 60127","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14685,"TargetID":14686,"Directional":false},{"SourceID":14880,"TargetID":9042,"Directional":false},{"SourceID":94774,"TargetID":94773,"Directional":false},{"SourceID":114684,"TargetID":114683,"Directional":false},{"SourceID":114782,"TargetID":114686,"Directional":false},{"SourceID":120415,"TargetID":60131,"Directional":false},{"SourceID":120417,"TargetID":60127,"Directional":false}]},{"ID":805,"SourceStructureID":7564,"TargetStructureID":461,"Label":"7564-461 via Gap Junction from 94853 -> 14847","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94853,"TargetID":14847,"Directional":false}]},{"ID":806,"SourceStructureID":461,"TargetStructureID":71935,"Label":"461-71935 via Unknown from 94778 -> 94779","Type":"Unknown","Directional":false,"Links":[{"SourceID":94778,"TargetID":94779,"Directional":false}]},{"ID":807,"SourceStructureID":88082,"TargetStructureID":461,"Label":"88082-461 via Unknown from 95155 -> 95154","Type":"Unknown","Directional":false,"Links":[{"SourceID":95155,"TargetID":95154,"Directional":false}]},{"ID":808,"SourceStructureID":86799,"TargetStructureID":469,"Label":"86799-469 via Touch from 87716 -> 87715","Type":"Touch","Directional":false,"Links":[{"SourceID":87716,"TargetID":87715,"Directional":false}]},{"ID":809,"SourceStructureID":469,"TargetStructureID":105212,"Label":"469-105212 via Unknown from 106217 -> 106215","Type":"Unknown","Directional":false,"Links":[{"SourceID":106217,"TargetID":106215,"Directional":false}]},{"ID":810,"SourceStructureID":471,"TargetStructureID":9643,"Label":"471-9643 via Unknown from 96047 -> 96046","Type":"Unknown","Directional":false,"Links":[{"SourceID":96047,"TargetID":96046,"Directional":false}]},{"ID":811,"SourceStructureID":39530,"TargetStructureID":471,"Label":"39530-471 via Adherens from 83499 -> 83500","Type":"Adherens","Directional":false,"Links":[{"SourceID":83499,"TargetID":83500,"Directional":false}]},{"ID":812,"SourceStructureID":473,"TargetStructureID":9260,"Label":"473-9260 via Neuroglial adherens from 79543 -> 79544","Type":"Neuroglial adherens","Directional":false,"Links":[{"SourceID":79543,"TargetID":79544,"Directional":false}]},{"ID":813,"SourceStructureID":475,"TargetStructureID":4567,"Label":"475-4567 via Unknown from 133743 -> 133742","Type":"Unknown","Directional":false,"Links":[{"SourceID":133743,"TargetID":133742,"Directional":false}]},{"ID":814,"SourceStructureID":476,"TargetStructureID":476,"Label":"476-476 via Adherens from 133712 -> 8397","Type":"Adherens","Directional":false,"Links":[{"SourceID":133712,"TargetID":8397,"Directional":false}]},{"ID":815,"SourceStructureID":476,"TargetStructureID":476,"Label":"476-476 via Gap Junction from 10473 -> 10445","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10473,"TargetID":10445,"Directional":false}]},{"ID":816,"SourceStructureID":476,"TargetStructureID":476,"Label":"476-476 via Postsynapse from 2336 -> 2337","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":2336,"TargetID":2337,"Directional":false}]},{"ID":817,"SourceStructureID":476,"TargetStructureID":483,"Label":"476-483 via Adherens from 135082 -> 135081","Type":"Adherens","Directional":false,"Links":[{"SourceID":135082,"TargetID":135081,"Directional":false}]},{"ID":818,"SourceStructureID":476,"TargetStructureID":483,"Label":"476-483 via Gap Junction from 5728 -> 6726, 6733 -> 5667, 65196 -> 14974, 65204 -> 5707, 92335 -> 92336, 131479 -> 131480, 133741 -> 133740, 136295 -> 136296","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":5728,"TargetID":6726,"Directional":false},{"SourceID":6733,"TargetID":5667,"Directional":false},{"SourceID":65196,"TargetID":14974,"Directional":false},{"SourceID":65204,"TargetID":5707,"Directional":false},{"SourceID":92335,"TargetID":92336,"Directional":false},{"SourceID":131479,"TargetID":131480,"Directional":false},{"SourceID":133741,"TargetID":133740,"Directional":false},{"SourceID":136295,"TargetID":136296,"Directional":false}]},{"ID":819,"SourceStructureID":485,"TargetStructureID":476,"Label":"485-476 via Adherens from 148003 -> 148002","Type":"Adherens","Directional":false,"Links":[{"SourceID":148003,"TargetID":148002,"Directional":false}]},{"ID":820,"SourceStructureID":485,"TargetStructureID":476,"Label":"485-476 via Gap Junction from 65188 -> 2287, 134217 -> 134218","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65188,"TargetID":2287,"Directional":false},{"SourceID":134217,"TargetID":134218,"Directional":false}]},{"ID":821,"SourceStructureID":476,"TargetStructureID":514,"Label":"476-514 via Adherens from 16545 -> 16544","Type":"Adherens","Directional":false,"Links":[{"SourceID":16545,"TargetID":16544,"Directional":false}]},{"ID":822,"SourceStructureID":476,"TargetStructureID":514,"Label":"476-514 via Gap Junction from 2397 -> 515, 2439 -> 5755, 2472 -> 5047, 3219 -> 2463, 3279 -> 3320, 3344 -> 5786, 5724 -> 2239, 5754 -> 3568, 5760 -> 3546, 6170 -> 3528, 9233 -> 3331, 10628 -> 10629, 15069 -> 15068, 16543 -> 16542","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":2397,"TargetID":515,"Directional":false},{"SourceID":2439,"TargetID":5755,"Directional":false},{"SourceID":2472,"TargetID":5047,"Directional":false},{"SourceID":3219,"TargetID":2463,"Directional":false},{"SourceID":3279,"TargetID":3320,"Directional":false},{"SourceID":3344,"TargetID":5786,"Directional":false},{"SourceID":5724,"TargetID":2239,"Directional":false},{"SourceID":5754,"TargetID":3568,"Directional":false},{"SourceID":5760,"TargetID":3546,"Directional":false},{"SourceID":6170,"TargetID":3528,"Directional":false},{"SourceID":9233,"TargetID":3331,"Directional":false},{"SourceID":10628,"TargetID":10629,"Directional":false},{"SourceID":15069,"TargetID":15068,"Directional":false},{"SourceID":16543,"TargetID":16542,"Directional":false}]},{"ID":823,"SourceStructureID":476,"TargetStructureID":591,"Label":"476-591 via Adherens from 24131 -> 24130, 133685 -> 133686","Type":"Adherens","Directional":false,"Links":[{"SourceID":24131,"TargetID":24130,"Directional":false},{"SourceID":133685,"TargetID":133686,"Directional":false}]},{"ID":824,"SourceStructureID":476,"TargetStructureID":2610,"Label":"476-2610 via Gap Junction from 7025 -> 2757, 17912 -> 17911","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":7025,"TargetID":2757,"Directional":false},{"SourceID":17912,"TargetID":17911,"Directional":false}]},{"ID":825,"SourceStructureID":476,"TargetStructureID":3257,"Label":"476-3257 via Gap Junction from 3201 -> 18387, 8231 -> 8230, 8232 -> 3180, 8500 -> 4798, 14345 -> 14344, 16578 -> 3200, 16578 -> 3526, 18386 -> 18385, 65184 -> 3168","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":3201,"TargetID":18387,"Directional":false},{"SourceID":8231,"TargetID":8230,"Directional":false},{"SourceID":8232,"TargetID":3180,"Directional":false},{"SourceID":8500,"TargetID":4798,"Directional":false},{"SourceID":14345,"TargetID":14344,"Directional":false},{"SourceID":16578,"TargetID":3200,"Directional":false},{"SourceID":16578,"TargetID":3526,"Directional":false},{"SourceID":18386,"TargetID":18385,"Directional":false},{"SourceID":65184,"TargetID":3168,"Directional":false}]},{"ID":826,"SourceStructureID":3679,"TargetStructureID":476,"Label":"3679-476 via Gap Junction from 5051 -> 2470","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":5051,"TargetID":2470,"Directional":false}]},{"ID":827,"SourceStructureID":4569,"TargetStructureID":476,"Label":"4569-476 via Gap Junction from 4747 -> 3158, 4749 -> 3160, 14963 -> 14968, 15992 -> 14971, 47501 -> 5666, 52503 -> 2209, 65203 -> 5708","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":4747,"TargetID":3158,"Directional":false},{"SourceID":4749,"TargetID":3160,"Directional":false},{"SourceID":14963,"TargetID":14968,"Directional":false},{"SourceID":15992,"TargetID":14971,"Directional":false},{"SourceID":47501,"TargetID":5666,"Directional":false},{"SourceID":52503,"TargetID":2209,"Directional":false},{"SourceID":65203,"TargetID":5708,"Directional":false}]},{"ID":828,"SourceStructureID":4570,"TargetStructureID":476,"Label":"4570-476 via Gap Junction from 65185 -> 3170, 123176 -> 5712, 131478 -> 14984","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65185,"TargetID":3170,"Directional":false},{"SourceID":123176,"TargetID":5712,"Directional":false},{"SourceID":131478,"TargetID":14984,"Directional":false}]},{"ID":829,"SourceStructureID":476,"TargetStructureID":4835,"Label":"476-4835 via Gap Junction from 8395 -> 8394, 36737 -> 36736, 36740 -> 36739, 36744 -> 14962","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8395,"TargetID":8394,"Directional":false},{"SourceID":36737,"TargetID":36736,"Directional":false},{"SourceID":36740,"TargetID":36739,"Directional":false},{"SourceID":36744,"TargetID":14962,"Directional":false}]},{"ID":830,"SourceStructureID":5281,"TargetStructureID":476,"Label":"5281-476 via Adherens from 65195 -> 2228","Type":"Adherens","Directional":false,"Links":[{"SourceID":65195,"TargetID":2228,"Directional":false}]},{"ID":831,"SourceStructureID":476,"TargetStructureID":5394,"Label":"476-5394 via Adherens from 87747 -> 87746, 87749 -> 3205","Type":"Adherens","Directional":false,"Links":[{"SourceID":87747,"TargetID":87746,"Directional":false},{"SourceID":87749,"TargetID":3205,"Directional":false}]},{"ID":832,"SourceStructureID":6153,"TargetStructureID":476,"Label":"6153-476 via Gap Junction from 8433 -> 5684, 16483 -> 8420, 17355 -> 17354, 31959 -> 5676, 65198 -> 8398","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8433,"TargetID":5684,"Directional":false},{"SourceID":16483,"TargetID":8420,"Directional":false},{"SourceID":17355,"TargetID":17354,"Directional":false},{"SourceID":31959,"TargetID":5676,"Directional":false},{"SourceID":65198,"TargetID":8398,"Directional":false}]},{"ID":833,"SourceStructureID":6155,"TargetStructureID":476,"Label":"6155-476 via Gap Junction from 15608 -> 2281, 16577 -> 2279, 48315 -> 2285, 49085 -> 2283, 108247 -> 108246","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15608,"TargetID":2281,"Directional":false},{"SourceID":16577,"TargetID":2279,"Directional":false},{"SourceID":48315,"TargetID":2285,"Directional":false},{"SourceID":49085,"TargetID":2283,"Directional":false},{"SourceID":108247,"TargetID":108246,"Directional":false}]},{"ID":834,"SourceStructureID":476,"TargetStructureID":6156,"Label":"476-6156 via Adherens from 133434 -> 133435, 133482 -> 15060, 135151 -> 135150","Type":"Adherens","Directional":false,"Links":[{"SourceID":133434,"TargetID":133435,"Directional":false},{"SourceID":133482,"TargetID":15060,"Directional":false},{"SourceID":135151,"TargetID":135150,"Directional":false}]},{"ID":835,"SourceStructureID":6156,"TargetStructureID":476,"Label":"6156-476 via Gap Junction from 18011 -> 3314, 65194 -> 5726, 117560 -> 117559, 117586 -> 117587, 133202 -> 133201, 133218 -> 133217, 133220 -> 133219","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":18011,"TargetID":3314,"Directional":false},{"SourceID":65194,"TargetID":5726,"Directional":false},{"SourceID":117560,"TargetID":117559,"Directional":false},{"SourceID":117586,"TargetID":117587,"Directional":false},{"SourceID":133202,"TargetID":133201,"Directional":false},{"SourceID":133218,"TargetID":133217,"Directional":false},{"SourceID":133220,"TargetID":133219,"Directional":false}]},{"ID":836,"SourceStructureID":476,"TargetStructureID":9643,"Label":"476-9643 via Adherens from 9666 -> 9665","Type":"Adherens","Directional":false,"Links":[{"SourceID":9666,"TargetID":9665,"Directional":false}]},{"ID":837,"SourceStructureID":31960,"TargetStructureID":476,"Label":"31960-476 via Adherens from 31964 -> 5682, 31965 -> 5681","Type":"Adherens","Directional":false,"Links":[{"SourceID":31964,"TargetID":5682,"Directional":false},{"SourceID":31965,"TargetID":5681,"Directional":false}]},{"ID":838,"SourceStructureID":36276,"TargetStructureID":476,"Label":"36276-476 via Adherens from 36279 -> 2299","Type":"Adherens","Directional":false,"Links":[{"SourceID":36279,"TargetID":2299,"Directional":false}]},{"ID":839,"SourceStructureID":476,"TargetStructureID":36293,"Label":"476-36293 via Adherens from 135092 -> 135093","Type":"Adherens","Directional":false,"Links":[{"SourceID":135092,"TargetID":135093,"Directional":false}]},{"ID":840,"SourceStructureID":36512,"TargetStructureID":476,"Label":"36512-476 via Adherens from 36515 -> 2392","Type":"Adherens","Directional":false,"Links":[{"SourceID":36515,"TargetID":2392,"Directional":false}]},{"ID":841,"SourceStructureID":36650,"TargetStructureID":476,"Label":"36650-476 via Adherens from 93021 -> 93022","Type":"Adherens","Directional":false,"Links":[{"SourceID":93021,"TargetID":93022,"Directional":false}]},{"ID":842,"SourceStructureID":476,"TargetStructureID":46741,"Label":"476-46741 via Touch from 90194 -> 90193","Type":"Touch","Directional":false,"Links":[{"SourceID":90194,"TargetID":90193,"Directional":false}]},{"ID":843,"SourceStructureID":71935,"TargetStructureID":476,"Label":"71935-476 via Gap Junction from 71940 -> 71939","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71940,"TargetID":71939,"Directional":false}]},{"ID":844,"SourceStructureID":89420,"TargetStructureID":476,"Label":"89420-476 via Unknown from 89435 -> 89436","Type":"Unknown","Directional":false,"Links":[{"SourceID":89435,"TargetID":89436,"Directional":false}]},{"ID":845,"SourceStructureID":89984,"TargetStructureID":476,"Label":"89984-476 via Adherens from 90095 -> 90096","Type":"Adherens","Directional":false,"Links":[{"SourceID":90095,"TargetID":90096,"Directional":false}]},{"ID":846,"SourceStructureID":89984,"TargetStructureID":476,"Label":"89984-476 via Unknown from 90018 -> 90017, 90020 -> 90019, 90021 -> 90022, 90023 -> 90024","Type":"Unknown","Directional":false,"Links":[{"SourceID":90018,"TargetID":90017,"Directional":false},{"SourceID":90020,"TargetID":90019,"Directional":false},{"SourceID":90021,"TargetID":90022,"Directional":false},{"SourceID":90023,"TargetID":90024,"Directional":false}]},{"ID":847,"SourceStructureID":476,"TargetStructureID":97024,"Label":"476-97024 via Adherens from 97070 -> 97067, 97120 -> 97121, 97122 -> 97123","Type":"Adherens","Directional":false,"Links":[{"SourceID":97070,"TargetID":97067,"Directional":false},{"SourceID":97120,"TargetID":97121,"Directional":false},{"SourceID":97122,"TargetID":97123,"Directional":false}]},{"ID":848,"SourceStructureID":98127,"TargetStructureID":476,"Label":"98127-476 via Adherens from 98135 -> 5662","Type":"Adherens","Directional":false,"Links":[{"SourceID":98135,"TargetID":5662,"Directional":false}]},{"ID":849,"SourceStructureID":4568,"TargetStructureID":478,"Label":"4568-478 via Gap Junction from 21695 -> 21696","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":21695,"TargetID":21696,"Directional":false}]},{"ID":850,"SourceStructureID":83461,"TargetStructureID":478,"Label":"83461-478 via Gap Junction from 83468 -> 83469","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83468,"TargetID":83469,"Directional":false}]},{"ID":851,"SourceStructureID":97828,"TargetStructureID":478,"Label":"97828-478 via Unknown from 97842 -> 97843","Type":"Unknown","Directional":false,"Links":[{"SourceID":97842,"TargetID":97843,"Directional":false}]},{"ID":852,"SourceStructureID":479,"TargetStructureID":6155,"Label":"479-6155 via Unknown from 121707 -> 121706","Type":"Unknown","Directional":false,"Links":[{"SourceID":121707,"TargetID":121706,"Directional":false}]},{"ID":853,"SourceStructureID":479,"TargetStructureID":47195,"Label":"479-47195 via Gap Junction from 58753 -> 58752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58753,"TargetID":58752,"Directional":false}]},{"ID":854,"SourceStructureID":479,"TargetStructureID":121714,"Label":"479-121714 via Gap Junction from 56497 -> 121715","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56497,"TargetID":121715,"Directional":false}]},{"ID":855,"SourceStructureID":121723,"TargetStructureID":479,"Label":"121723-479 via Unknown from 121724 -> 121722","Type":"Unknown","Directional":false,"Links":[{"SourceID":121724,"TargetID":121722,"Directional":false}]},{"ID":856,"SourceStructureID":121727,"TargetStructureID":479,"Label":"121727-479 via Unknown from 121728 -> 121729","Type":"Unknown","Directional":false,"Links":[{"SourceID":121728,"TargetID":121729,"Directional":false}]},{"ID":857,"SourceStructureID":121749,"TargetStructureID":479,"Label":"121749-479 via Gap Junction from 121750 -> 121748","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121750,"TargetID":121748,"Directional":false}]},{"ID":858,"SourceStructureID":121757,"TargetStructureID":479,"Label":"121757-479 via Gap Junction from 121758 -> 115655","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121758,"TargetID":115655,"Directional":false}]},{"ID":859,"SourceStructureID":479,"TargetStructureID":121763,"Label":"479-121763 via Unknown from 121762 -> 121764","Type":"Unknown","Directional":false,"Links":[{"SourceID":121762,"TargetID":121764,"Directional":false}]},{"ID":860,"SourceStructureID":121779,"TargetStructureID":479,"Label":"121779-479 via Gap Junction from 121780 -> 121778","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121780,"TargetID":121778,"Directional":false}]},{"ID":861,"SourceStructureID":483,"TargetStructureID":483,"Label":"483-483 via Gap Junction from 134091 -> 134090","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134091,"TargetID":134090,"Directional":false}]},{"ID":862,"SourceStructureID":485,"TargetStructureID":483,"Label":"485-483 via Adherens from 101726 -> 101727","Type":"Adherens","Directional":false,"Links":[{"SourceID":101726,"TargetID":101727,"Directional":false}]},{"ID":863,"SourceStructureID":483,"TargetStructureID":485,"Label":"483-485 via Gap Junction from 50436 -> 50435, 99195 -> 99196, 101720 -> 101719","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50436,"TargetID":50435,"Directional":false},{"SourceID":99195,"TargetID":99196,"Directional":false},{"SourceID":101720,"TargetID":101719,"Directional":false}]},{"ID":864,"SourceStructureID":483,"TargetStructureID":514,"Label":"483-514 via Gap Junction from 6806 -> 3342","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":6806,"TargetID":3342,"Directional":false}]},{"ID":865,"SourceStructureID":483,"TargetStructureID":525,"Label":"483-525 via BC Conventional Synapse from 97783 -> 97782","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":97783,"TargetID":97782,"Directional":false}]},{"ID":866,"SourceStructureID":483,"TargetStructureID":1724,"Label":"483-1724 via Adherens from 101900 -> 101899","Type":"Adherens","Directional":false,"Links":[{"SourceID":101900,"TargetID":101899,"Directional":false}]},{"ID":867,"SourceStructureID":4570,"TargetStructureID":483,"Label":"4570-483 via Adherens from 136301 -> 136300","Type":"Adherens","Directional":false,"Links":[{"SourceID":136301,"TargetID":136300,"Directional":false}]},{"ID":868,"SourceStructureID":4570,"TargetStructureID":483,"Label":"4570-483 via Gap Junction from 94573 -> 94572","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94573,"TargetID":94572,"Directional":false}]},{"ID":869,"SourceStructureID":4570,"TargetStructureID":483,"Label":"4570-483 via Touch from 94588 -> 94587","Type":"Touch","Directional":false,"Links":[{"SourceID":94588,"TargetID":94587,"Directional":false}]},{"ID":870,"SourceStructureID":483,"TargetStructureID":4890,"Label":"483-4890 via Adherens from 134020 -> 134021, 134044 -> 134043","Type":"Adherens","Directional":false,"Links":[{"SourceID":134020,"TargetID":134021,"Directional":false},{"SourceID":134044,"TargetID":134043,"Directional":false}]},{"ID":871,"SourceStructureID":483,"TargetStructureID":4890,"Label":"483-4890 via Unknown from 134072 -> 134073","Type":"Unknown","Directional":false,"Links":[{"SourceID":134072,"TargetID":134073,"Directional":false}]},{"ID":872,"SourceStructureID":483,"TargetStructureID":5117,"Label":"483-5117 via Adherens from 71280 -> 71278","Type":"Adherens","Directional":false,"Links":[{"SourceID":71280,"TargetID":71278,"Directional":false}]},{"ID":873,"SourceStructureID":5487,"TargetStructureID":483,"Label":"5487-483 via Unknown from 134070 -> 134071","Type":"Unknown","Directional":false,"Links":[{"SourceID":134070,"TargetID":134071,"Directional":false}]},{"ID":874,"SourceStructureID":483,"TargetStructureID":6073,"Label":"483-6073 via Adherens from 103380 -> 103379","Type":"Adherens","Directional":false,"Links":[{"SourceID":103380,"TargetID":103379,"Directional":false}]},{"ID":875,"SourceStructureID":483,"TargetStructureID":6153,"Label":"483-6153 via Gap Junction from 8426 -> 8425, 20338 -> 20339, 94708 -> 94709, 94742 -> 94743","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8426,"TargetID":8425,"Directional":false},{"SourceID":20338,"TargetID":20339,"Directional":false},{"SourceID":94708,"TargetID":94709,"Directional":false},{"SourceID":94742,"TargetID":94743,"Directional":false}]},{"ID":876,"SourceStructureID":6997,"TargetStructureID":483,"Label":"6997-483 via Adherens from 22142 -> 81486","Type":"Adherens","Directional":false,"Links":[{"SourceID":22142,"TargetID":81486,"Directional":false}]},{"ID":877,"SourceStructureID":6997,"TargetStructureID":483,"Label":"6997-483 via Gap Junction from 97784 -> 97785","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97784,"TargetID":97785,"Directional":false}]},{"ID":878,"SourceStructureID":18282,"TargetStructureID":483,"Label":"18282-483 via Adherens from 102475 -> 20352","Type":"Adherens","Directional":false,"Links":[{"SourceID":102475,"TargetID":20352,"Directional":false}]},{"ID":879,"SourceStructureID":483,"TargetStructureID":34601,"Label":"483-34601 via Gap Junction from 60640 -> 60639","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60640,"TargetID":60639,"Directional":false}]},{"ID":880,"SourceStructureID":40010,"TargetStructureID":483,"Label":"40010-483 via Adherens from 71350 -> 71349","Type":"Adherens","Directional":false,"Links":[{"SourceID":71350,"TargetID":71349,"Directional":false}]},{"ID":881,"SourceStructureID":49489,"TargetStructureID":483,"Label":"49489-483 via Adherens from 103714 -> 60198","Type":"Adherens","Directional":false,"Links":[{"SourceID":103714,"TargetID":60198,"Directional":false}]},{"ID":882,"SourceStructureID":59285,"TargetStructureID":483,"Label":"59285-483 via Adherens from 59288 -> 59287","Type":"Adherens","Directional":false,"Links":[{"SourceID":59288,"TargetID":59287,"Directional":false}]},{"ID":883,"SourceStructureID":59422,"TargetStructureID":483,"Label":"59422-483 via Adherens from 134089 -> 134088","Type":"Adherens","Directional":false,"Links":[{"SourceID":134089,"TargetID":134088,"Directional":false}]},{"ID":884,"SourceStructureID":59429,"TargetStructureID":483,"Label":"59429-483 via Postsynapse from 59430 -> 59428","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":59430,"TargetID":59428,"Directional":false}]},{"ID":885,"SourceStructureID":59455,"TargetStructureID":483,"Label":"59455-483 via Adherens from 59456 -> 59454","Type":"Adherens","Directional":false,"Links":[{"SourceID":59456,"TargetID":59454,"Directional":false}]},{"ID":886,"SourceStructureID":59629,"TargetStructureID":483,"Label":"59629-483 via Adherens from 134095 -> 134094","Type":"Adherens","Directional":false,"Links":[{"SourceID":134095,"TargetID":134094,"Directional":false}]},{"ID":887,"SourceStructureID":60215,"TargetStructureID":483,"Label":"60215-483 via Adherens from 60216 -> 60214","Type":"Adherens","Directional":false,"Links":[{"SourceID":60216,"TargetID":60214,"Directional":false}]},{"ID":888,"SourceStructureID":60218,"TargetStructureID":483,"Label":"60218-483 via Adherens from 148237 -> 148238","Type":"Adherens","Directional":false,"Links":[{"SourceID":148237,"TargetID":148238,"Directional":false}]},{"ID":889,"SourceStructureID":60334,"TargetStructureID":483,"Label":"60334-483 via Adherens from 60335 -> 60333","Type":"Adherens","Directional":false,"Links":[{"SourceID":60335,"TargetID":60333,"Directional":false}]},{"ID":890,"SourceStructureID":483,"TargetStructureID":60368,"Label":"483-60368 via Adherens from 60367 -> 60369","Type":"Adherens","Directional":false,"Links":[{"SourceID":60367,"TargetID":60369,"Directional":false}]},{"ID":891,"SourceStructureID":483,"TargetStructureID":61960,"Label":"483-61960 via Adherens from 96604 -> 96605","Type":"Adherens","Directional":false,"Links":[{"SourceID":96604,"TargetID":96605,"Directional":false}]},{"ID":892,"SourceStructureID":65267,"TargetStructureID":483,"Label":"65267-483 via Unknown from 134053 -> 134052, 134068 -> 134069, 148234 -> 148235","Type":"Unknown","Directional":false,"Links":[{"SourceID":134053,"TargetID":134052,"Directional":false},{"SourceID":134068,"TargetID":134069,"Directional":false},{"SourceID":148234,"TargetID":148235,"Directional":false}]},{"ID":893,"SourceStructureID":483,"TargetStructureID":70599,"Label":"483-70599 via Unknown from 134057 -> 134056","Type":"Unknown","Directional":false,"Links":[{"SourceID":134057,"TargetID":134056,"Directional":false}]},{"ID":894,"SourceStructureID":483,"TargetStructureID":71133,"Label":"483-71133 via Adherens from 71131 -> 71134","Type":"Adherens","Directional":false,"Links":[{"SourceID":71131,"TargetID":71134,"Directional":false}]},{"ID":895,"SourceStructureID":71215,"TargetStructureID":483,"Label":"71215-483 via Unknown from 134096 -> 134097","Type":"Unknown","Directional":false,"Links":[{"SourceID":134096,"TargetID":134097,"Directional":false}]},{"ID":896,"SourceStructureID":71288,"TargetStructureID":483,"Label":"71288-483 via Adherens from 71289 -> 71287, 71292 -> 71293","Type":"Adherens","Directional":false,"Links":[{"SourceID":71289,"TargetID":71287,"Directional":false},{"SourceID":71292,"TargetID":71293,"Directional":false}]},{"ID":897,"SourceStructureID":483,"TargetStructureID":71357,"Label":"483-71357 via Unknown from 71356 -> 71358","Type":"Unknown","Directional":false,"Links":[{"SourceID":71356,"TargetID":71358,"Directional":false}]},{"ID":898,"SourceStructureID":71379,"TargetStructureID":483,"Label":"71379-483 via Gap Junction from 71380 -> 71381","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71380,"TargetID":71381,"Directional":false}]},{"ID":899,"SourceStructureID":483,"TargetStructureID":85748,"Label":"483-85748 via Adherens from 85762 -> 85763","Type":"Adherens","Directional":false,"Links":[{"SourceID":85762,"TargetID":85763,"Directional":false}]},{"ID":900,"SourceStructureID":92313,"TargetStructureID":483,"Label":"92313-483 via Gap Junction from 92314 -> 92312","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92314,"TargetID":92312,"Directional":false}]},{"ID":901,"SourceStructureID":483,"TargetStructureID":92313,"Label":"483-92313 via Unknown from 92318 -> 92317","Type":"Unknown","Directional":false,"Links":[{"SourceID":92318,"TargetID":92317,"Directional":false}]},{"ID":902,"SourceStructureID":92320,"TargetStructureID":483,"Label":"92320-483 via Unknown from 92321 -> 92319","Type":"Unknown","Directional":false,"Links":[{"SourceID":92321,"TargetID":92319,"Directional":false}]},{"ID":903,"SourceStructureID":483,"TargetStructureID":92331,"Label":"483-92331 via Gap Junction from 92330 -> 92333","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92330,"TargetID":92333,"Directional":false}]},{"ID":904,"SourceStructureID":483,"TargetStructureID":94601,"Label":"483-94601 via Unknown from 134037 -> 134038","Type":"Unknown","Directional":false,"Links":[{"SourceID":134037,"TargetID":134038,"Directional":false}]},{"ID":905,"SourceStructureID":483,"TargetStructureID":94607,"Label":"483-94607 via Gap Junction from 94606 -> 94608, 94609 -> 94605","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94606,"TargetID":94608,"Directional":false},{"SourceID":94609,"TargetID":94605,"Directional":false}]},{"ID":906,"SourceStructureID":96610,"TargetStructureID":483,"Label":"96610-483 via Adherens from 96611 -> 96609","Type":"Adherens","Directional":false,"Links":[{"SourceID":96611,"TargetID":96609,"Directional":false}]},{"ID":907,"SourceStructureID":483,"TargetStructureID":97753,"Label":"483-97753 via Unknown from 97752 -> 97756","Type":"Unknown","Directional":false,"Links":[{"SourceID":97752,"TargetID":97756,"Directional":false}]},{"ID":908,"SourceStructureID":483,"TargetStructureID":102042,"Label":"483-102042 via Adherens from 102044 -> 102043","Type":"Adherens","Directional":false,"Links":[{"SourceID":102044,"TargetID":102043,"Directional":false}]},{"ID":909,"SourceStructureID":102042,"TargetStructureID":483,"Label":"102042-483 via Gap Junction from 102047 -> 94563, 102049 -> 102048","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":102047,"TargetID":94563,"Directional":false},{"SourceID":102049,"TargetID":102048,"Directional":false}]},{"ID":910,"SourceStructureID":483,"TargetStructureID":102194,"Label":"483-102194 via Unknown from 134004 -> 134005","Type":"Unknown","Directional":false,"Links":[{"SourceID":134004,"TargetID":134005,"Directional":false}]},{"ID":911,"SourceStructureID":483,"TargetStructureID":102269,"Label":"483-102269 via Unknown from 102271 -> 102270","Type":"Unknown","Directional":false,"Links":[{"SourceID":102271,"TargetID":102270,"Directional":false}]},{"ID":912,"SourceStructureID":483,"TargetStructureID":102307,"Label":"483-102307 via Unknown from 102309 -> 102308","Type":"Unknown","Directional":false,"Links":[{"SourceID":102309,"TargetID":102308,"Directional":false}]},{"ID":913,"SourceStructureID":483,"TargetStructureID":102318,"Label":"483-102318 via Adherens from 134006 -> 134007","Type":"Adherens","Directional":false,"Links":[{"SourceID":134006,"TargetID":134007,"Directional":false}]},{"ID":914,"SourceStructureID":483,"TargetStructureID":102399,"Label":"483-102399 via Unknown from 102401 -> 102402","Type":"Unknown","Directional":false,"Links":[{"SourceID":102401,"TargetID":102402,"Directional":false}]},{"ID":915,"SourceStructureID":102412,"TargetStructureID":483,"Label":"102412-483 via Unknown from 134077 -> 134078","Type":"Unknown","Directional":false,"Links":[{"SourceID":134077,"TargetID":134078,"Directional":false}]},{"ID":916,"SourceStructureID":483,"TargetStructureID":102440,"Label":"483-102440 via Unknown from 102448 -> 102447, 134081 -> 134080","Type":"Unknown","Directional":false,"Links":[{"SourceID":102448,"TargetID":102447,"Directional":false},{"SourceID":134081,"TargetID":134080,"Directional":false}]},{"ID":917,"SourceStructureID":102531,"TargetStructureID":483,"Label":"102531-483 via Unknown from 102537 -> 102536","Type":"Unknown","Directional":false,"Links":[{"SourceID":102537,"TargetID":102536,"Directional":false}]},{"ID":918,"SourceStructureID":102565,"TargetStructureID":483,"Label":"102565-483 via Adherens from 102566 -> 6712","Type":"Adherens","Directional":false,"Links":[{"SourceID":102566,"TargetID":6712,"Directional":false}]},{"ID":919,"SourceStructureID":102615,"TargetStructureID":483,"Label":"102615-483 via Adherens from 102624 -> 94565","Type":"Adherens","Directional":false,"Links":[{"SourceID":102624,"TargetID":94565,"Directional":false}]},{"ID":920,"SourceStructureID":483,"TargetStructureID":102618,"Label":"483-102618 via Unknown from 102620 -> 102619","Type":"Unknown","Directional":false,"Links":[{"SourceID":102620,"TargetID":102619,"Directional":false}]},{"ID":921,"SourceStructureID":102629,"TargetStructureID":483,"Label":"102629-483 via Unknown from 134010 -> 134009","Type":"Unknown","Directional":false,"Links":[{"SourceID":134010,"TargetID":134009,"Directional":false}]},{"ID":922,"SourceStructureID":483,"TargetStructureID":102720,"Label":"483-102720 via Unknown from 134011 -> 134012","Type":"Unknown","Directional":false,"Links":[{"SourceID":134011,"TargetID":134012,"Directional":false}]},{"ID":923,"SourceStructureID":102773,"TargetStructureID":483,"Label":"102773-483 via Adherens from 134014 -> 134013","Type":"Adherens","Directional":false,"Links":[{"SourceID":134014,"TargetID":134013,"Directional":false}]},{"ID":924,"SourceStructureID":483,"TargetStructureID":102782,"Label":"483-102782 via Unknown from 102784 -> 102783","Type":"Unknown","Directional":false,"Links":[{"SourceID":102784,"TargetID":102783,"Directional":false}]},{"ID":925,"SourceStructureID":102828,"TargetStructureID":483,"Label":"102828-483 via Unknown from 102831 -> 102830","Type":"Unknown","Directional":false,"Links":[{"SourceID":102831,"TargetID":102830,"Directional":false}]},{"ID":926,"SourceStructureID":102832,"TargetStructureID":483,"Label":"102832-483 via Adherens from 102837 -> 102836","Type":"Adherens","Directional":false,"Links":[{"SourceID":102837,"TargetID":102836,"Directional":false}]},{"ID":927,"SourceStructureID":102832,"TargetStructureID":483,"Label":"102832-483 via Unknown from 102834 -> 102835","Type":"Unknown","Directional":false,"Links":[{"SourceID":102834,"TargetID":102835,"Directional":false}]},{"ID":928,"SourceStructureID":102848,"TargetStructureID":483,"Label":"102848-483 via Adherens from 102852 -> 94569","Type":"Adherens","Directional":false,"Links":[{"SourceID":102852,"TargetID":94569,"Directional":false}]},{"ID":929,"SourceStructureID":102848,"TargetStructureID":483,"Label":"102848-483 via Unknown from 134059 -> 134058","Type":"Unknown","Directional":false,"Links":[{"SourceID":134059,"TargetID":134058,"Directional":false}]},{"ID":930,"SourceStructureID":483,"TargetStructureID":102873,"Label":"483-102873 via Unknown from 102875 -> 102874","Type":"Unknown","Directional":false,"Links":[{"SourceID":102875,"TargetID":102874,"Directional":false}]},{"ID":931,"SourceStructureID":483,"TargetStructureID":103050,"Label":"483-103050 via Unknown from 103052 -> 103051","Type":"Unknown","Directional":false,"Links":[{"SourceID":103052,"TargetID":103051,"Directional":false}]},{"ID":932,"SourceStructureID":103054,"TargetStructureID":483,"Label":"103054-483 via Adherens from 134018 -> 134017","Type":"Adherens","Directional":false,"Links":[{"SourceID":134018,"TargetID":134017,"Directional":false}]},{"ID":933,"SourceStructureID":103084,"TargetStructureID":483,"Label":"103084-483 via Adherens from 134019 -> 94585","Type":"Adherens","Directional":false,"Links":[{"SourceID":134019,"TargetID":94585,"Directional":false}]},{"ID":934,"SourceStructureID":483,"TargetStructureID":103185,"Label":"483-103185 via Unknown from 134062 -> 134063","Type":"Unknown","Directional":false,"Links":[{"SourceID":134062,"TargetID":134063,"Directional":false}]},{"ID":935,"SourceStructureID":103195,"TargetStructureID":483,"Label":"103195-483 via Adherens from 103199 -> 103198","Type":"Adherens","Directional":false,"Links":[{"SourceID":103199,"TargetID":103198,"Directional":false}]},{"ID":936,"SourceStructureID":483,"TargetStructureID":103258,"Label":"483-103258 via Adherens from 134025 -> 134026","Type":"Adherens","Directional":false,"Links":[{"SourceID":134025,"TargetID":134026,"Directional":false}]},{"ID":937,"SourceStructureID":103284,"TargetStructureID":483,"Label":"103284-483 via Gap Junction from 103285 -> 103283","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":103285,"TargetID":103283,"Directional":false}]},{"ID":938,"SourceStructureID":483,"TargetStructureID":103293,"Label":"483-103293 via Unknown from 134027 -> 134028","Type":"Unknown","Directional":false,"Links":[{"SourceID":134027,"TargetID":134028,"Directional":false}]},{"ID":939,"SourceStructureID":483,"TargetStructureID":103319,"Label":"483-103319 via Unknown from 134065 -> 134064, 148240 -> 148239","Type":"Unknown","Directional":false,"Links":[{"SourceID":134065,"TargetID":134064,"Directional":false},{"SourceID":148240,"TargetID":148239,"Directional":false}]},{"ID":940,"SourceStructureID":103324,"TargetStructureID":483,"Label":"103324-483 via Unknown from 103325 -> 103323","Type":"Unknown","Directional":false,"Links":[{"SourceID":103325,"TargetID":103323,"Directional":false}]},{"ID":941,"SourceStructureID":483,"TargetStructureID":103342,"Label":"483-103342 via Unknown from 134031 -> 134032","Type":"Unknown","Directional":false,"Links":[{"SourceID":134031,"TargetID":134032,"Directional":false}]},{"ID":942,"SourceStructureID":103356,"TargetStructureID":483,"Label":"103356-483 via Unknown from 134034 -> 134033","Type":"Unknown","Directional":false,"Links":[{"SourceID":134034,"TargetID":134033,"Directional":false}]},{"ID":943,"SourceStructureID":483,"TargetStructureID":103376,"Label":"483-103376 via Unknown from 134036 -> 134035","Type":"Unknown","Directional":false,"Links":[{"SourceID":134036,"TargetID":134035,"Directional":false}]},{"ID":944,"SourceStructureID":483,"TargetStructureID":103402,"Label":"483-103402 via Adherens from 134086 -> 134087","Type":"Adherens","Directional":false,"Links":[{"SourceID":134086,"TargetID":134087,"Directional":false}]},{"ID":945,"SourceStructureID":483,"TargetStructureID":103452,"Label":"483-103452 via Unknown from 134066 -> 134067","Type":"Unknown","Directional":false,"Links":[{"SourceID":134066,"TargetID":134067,"Directional":false}]},{"ID":946,"SourceStructureID":103498,"TargetStructureID":483,"Label":"103498-483 via Unknown from 103499 -> 97454","Type":"Unknown","Directional":false,"Links":[{"SourceID":103499,"TargetID":97454,"Directional":false}]},{"ID":947,"SourceStructureID":103534,"TargetStructureID":483,"Label":"103534-483 via Unknown from 103535 -> 97434","Type":"Unknown","Directional":false,"Links":[{"SourceID":103535,"TargetID":97434,"Directional":false}]},{"ID":948,"SourceStructureID":483,"TargetStructureID":103720,"Label":"483-103720 via Unknown from 134047 -> 134046","Type":"Unknown","Directional":false,"Links":[{"SourceID":134047,"TargetID":134046,"Directional":false}]},{"ID":949,"SourceStructureID":483,"TargetStructureID":103732,"Label":"483-103732 via Unknown from 134051 -> 134050","Type":"Unknown","Directional":false,"Links":[{"SourceID":134051,"TargetID":134050,"Directional":false}]},{"ID":950,"SourceStructureID":483,"TargetStructureID":103745,"Label":"483-103745 via Adherens from 134048 -> 134049","Type":"Adherens","Directional":false,"Links":[{"SourceID":134048,"TargetID":134049,"Directional":false}]},{"ID":951,"SourceStructureID":136790,"TargetStructureID":483,"Label":"136790-483 via Gap Junction from 136791 -> 94567","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136791,"TargetID":94567,"Directional":false}]},{"ID":952,"SourceStructureID":485,"TargetStructureID":485,"Label":"485-485 via Gap Junction from 51073 -> 51076, 94094 -> 94093, 99953 -> 46848, 100612 -> 100613, 148414 -> 148413, 148417 -> 148416","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51073,"TargetID":51076,"Directional":false},{"SourceID":94094,"TargetID":94093,"Directional":false},{"SourceID":99953,"TargetID":46848,"Directional":false},{"SourceID":100612,"TargetID":100613,"Directional":false},{"SourceID":148414,"TargetID":148413,"Directional":false},{"SourceID":148417,"TargetID":148416,"Directional":false}]},{"ID":953,"SourceStructureID":485,"TargetStructureID":514,"Label":"485-514 via Gap Junction from 49905 -> 49906, 148412 -> 148411","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49905,"TargetID":49906,"Directional":false},{"SourceID":148412,"TargetID":148411,"Directional":false}]},{"ID":954,"SourceStructureID":2610,"TargetStructureID":485,"Label":"2610-485 via Gap Junction from 94242 -> 94241, 94264 -> 94263, 148061 -> 148060","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94242,"TargetID":94241,"Directional":false},{"SourceID":94264,"TargetID":94263,"Directional":false},{"SourceID":148061,"TargetID":148060,"Directional":false}]},{"ID":955,"SourceStructureID":485,"TargetStructureID":4890,"Label":"485-4890 via Adherens from 148247 -> 148246, 148249 -> 148248","Type":"Adherens","Directional":false,"Links":[{"SourceID":148247,"TargetID":148246,"Directional":false},{"SourceID":148249,"TargetID":148248,"Directional":false}]},{"ID":956,"SourceStructureID":485,"TargetStructureID":4890,"Label":"485-4890 via Unknown from 134171 -> 134172","Type":"Unknown","Directional":false,"Links":[{"SourceID":134171,"TargetID":134172,"Directional":false}]},{"ID":957,"SourceStructureID":485,"TargetStructureID":5117,"Label":"485-5117 via Adherens from 99894 -> 99895","Type":"Adherens","Directional":false,"Links":[{"SourceID":99894,"TargetID":99895,"Directional":false}]},{"ID":958,"SourceStructureID":5575,"TargetStructureID":485,"Label":"5575-485 via Unknown from 134117 -> 134118","Type":"Unknown","Directional":false,"Links":[{"SourceID":134117,"TargetID":134118,"Directional":false}]},{"ID":959,"SourceStructureID":485,"TargetStructureID":6153,"Label":"485-6153 via Adherens from 148010 -> 148009","Type":"Adherens","Directional":false,"Links":[{"SourceID":148010,"TargetID":148009,"Directional":false}]},{"ID":960,"SourceStructureID":6153,"TargetStructureID":485,"Label":"6153-485 via Gap Junction from 94203 -> 94202, 94205 -> 94204","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94203,"TargetID":94202,"Directional":false},{"SourceID":94205,"TargetID":94204,"Directional":false}]},{"ID":961,"SourceStructureID":485,"TargetStructureID":6155,"Label":"485-6155 via Touch from 121216 -> 121217","Type":"Touch","Directional":false,"Links":[{"SourceID":121216,"TargetID":121217,"Directional":false}]},{"ID":962,"SourceStructureID":485,"TargetStructureID":6997,"Label":"485-6997 via Adherens from 136830 -> 136831","Type":"Adherens","Directional":false,"Links":[{"SourceID":136830,"TargetID":136831,"Directional":false}]},{"ID":963,"SourceStructureID":6997,"TargetStructureID":485,"Label":"6997-485 via Gap Junction from 94253 -> 94267, 148054 -> 148053","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94253,"TargetID":94267,"Directional":false},{"SourceID":148054,"TargetID":148053,"Directional":false}]},{"ID":964,"SourceStructureID":485,"TargetStructureID":18282,"Label":"485-18282 via Adherens from 120436 -> 120435, 134213 -> 134214","Type":"Adherens","Directional":false,"Links":[{"SourceID":120436,"TargetID":120435,"Directional":false},{"SourceID":134213,"TargetID":134214,"Directional":false}]},{"ID":965,"SourceStructureID":18282,"TargetStructureID":485,"Label":"18282-485 via Unknown from 134194 -> 134195","Type":"Unknown","Directional":false,"Links":[{"SourceID":134194,"TargetID":134195,"Directional":false}]},{"ID":966,"SourceStructureID":22554,"TargetStructureID":485,"Label":"22554-485 via Adherens from 99751 -> 99750","Type":"Adherens","Directional":false,"Links":[{"SourceID":99751,"TargetID":99750,"Directional":false}]},{"ID":967,"SourceStructureID":22554,"TargetStructureID":485,"Label":"22554-485 via Unknown from 94209 -> 94208","Type":"Unknown","Directional":false,"Links":[{"SourceID":94209,"TargetID":94208,"Directional":false}]},{"ID":968,"SourceStructureID":32654,"TargetStructureID":485,"Label":"32654-485 via Gap Junction from 100603 -> 100602","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":100603,"TargetID":100602,"Directional":false}]},{"ID":969,"SourceStructureID":485,"TargetStructureID":85748,"Label":"485-85748 via Unknown from 134197 -> 134198","Type":"Unknown","Directional":false,"Links":[{"SourceID":134197,"TargetID":134198,"Directional":false}]},{"ID":970,"SourceStructureID":95482,"TargetStructureID":485,"Label":"95482-485 via Adherens from 101435 -> 101436","Type":"Adherens","Directional":false,"Links":[{"SourceID":101435,"TargetID":101436,"Directional":false}]},{"ID":971,"SourceStructureID":99401,"TargetStructureID":485,"Label":"99401-485 via Adherens from 148017 -> 148016","Type":"Adherens","Directional":false,"Links":[{"SourceID":148017,"TargetID":148016,"Directional":false}]},{"ID":972,"SourceStructureID":99401,"TargetStructureID":485,"Label":"99401-485 via Gap Junction from 99402 -> 99400","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99402,"TargetID":99400,"Directional":false}]},{"ID":973,"SourceStructureID":99438,"TargetStructureID":485,"Label":"99438-485 via Adherens from 99439 -> 99437","Type":"Adherens","Directional":false,"Links":[{"SourceID":99439,"TargetID":99437,"Directional":false}]},{"ID":974,"SourceStructureID":99489,"TargetStructureID":485,"Label":"99489-485 via Unknown from 99497 -> 50883","Type":"Unknown","Directional":false,"Links":[{"SourceID":99497,"TargetID":50883,"Directional":false}]},{"ID":975,"SourceStructureID":99763,"TargetStructureID":485,"Label":"99763-485 via Unknown from 134200 -> 134199","Type":"Unknown","Directional":false,"Links":[{"SourceID":134200,"TargetID":134199,"Directional":false}]},{"ID":976,"SourceStructureID":99783,"TargetStructureID":485,"Label":"99783-485 via Adherens from 134201 -> 134202","Type":"Adherens","Directional":false,"Links":[{"SourceID":134201,"TargetID":134202,"Directional":false}]},{"ID":977,"SourceStructureID":99850,"TargetStructureID":485,"Label":"99850-485 via Adherens from 99855 -> 99856","Type":"Adherens","Directional":false,"Links":[{"SourceID":99855,"TargetID":99856,"Directional":false}]},{"ID":978,"SourceStructureID":99882,"TargetStructureID":485,"Label":"99882-485 via Adherens from 99883 -> 99881","Type":"Adherens","Directional":false,"Links":[{"SourceID":99883,"TargetID":99881,"Directional":false}]},{"ID":979,"SourceStructureID":485,"TargetStructureID":99884,"Label":"485-99884 via Unknown from 99887 -> 99886","Type":"Unknown","Directional":false,"Links":[{"SourceID":99887,"TargetID":99886,"Directional":false}]},{"ID":980,"SourceStructureID":485,"TargetStructureID":99901,"Label":"485-99901 via Unknown from 99903 -> 99902","Type":"Unknown","Directional":false,"Links":[{"SourceID":99903,"TargetID":99902,"Directional":false}]},{"ID":981,"SourceStructureID":485,"TargetStructureID":99909,"Label":"485-99909 via Adherens from 134219 -> 134220","Type":"Adherens","Directional":false,"Links":[{"SourceID":134219,"TargetID":134220,"Directional":false}]},{"ID":982,"SourceStructureID":485,"TargetStructureID":99916,"Label":"485-99916 via Unknown from 134210 -> 134209","Type":"Unknown","Directional":false,"Links":[{"SourceID":134210,"TargetID":134209,"Directional":false}]},{"ID":983,"SourceStructureID":99967,"TargetStructureID":485,"Label":"99967-485 via Unknown from 99968 -> 99966","Type":"Unknown","Directional":false,"Links":[{"SourceID":99968,"TargetID":99966,"Directional":false}]},{"ID":984,"SourceStructureID":99984,"TargetStructureID":485,"Label":"99984-485 via Gap Junction from 136792 -> 99986","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136792,"TargetID":99986,"Directional":false}]},{"ID":985,"SourceStructureID":485,"TargetStructureID":100059,"Label":"485-100059 via Unknown from 100061 -> 100060","Type":"Unknown","Directional":false,"Links":[{"SourceID":100061,"TargetID":100060,"Directional":false}]},{"ID":986,"SourceStructureID":485,"TargetStructureID":100198,"Label":"485-100198 via Adherens from 147997 -> 147998","Type":"Adherens","Directional":false,"Links":[{"SourceID":147997,"TargetID":147998,"Directional":false}]},{"ID":987,"SourceStructureID":100198,"TargetStructureID":485,"Label":"100198-485 via Gap Junction from 100204 -> 100203","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":100204,"TargetID":100203,"Directional":false}]},{"ID":988,"SourceStructureID":100205,"TargetStructureID":485,"Label":"100205-485 via Unknown from 100206 -> 50687","Type":"Unknown","Directional":false,"Links":[{"SourceID":100206,"TargetID":50687,"Directional":false}]},{"ID":989,"SourceStructureID":485,"TargetStructureID":100261,"Label":"485-100261 via Adherens from 100263 -> 100262","Type":"Adherens","Directional":false,"Links":[{"SourceID":100263,"TargetID":100262,"Directional":false}]},{"ID":990,"SourceStructureID":100345,"TargetStructureID":485,"Label":"100345-485 via Adherens from 100347 -> 51160","Type":"Adherens","Directional":false,"Links":[{"SourceID":100347,"TargetID":51160,"Directional":false}]},{"ID":991,"SourceStructureID":485,"TargetStructureID":100596,"Label":"485-100596 via Unknown from 134103 -> 134104","Type":"Unknown","Directional":false,"Links":[{"SourceID":134103,"TargetID":134104,"Directional":false}]},{"ID":992,"SourceStructureID":100733,"TargetStructureID":485,"Label":"100733-485 via Gap Junction from 100734 -> 94002","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":100734,"TargetID":94002,"Directional":false}]},{"ID":993,"SourceStructureID":485,"TargetStructureID":100895,"Label":"485-100895 via Adherens from 134115 -> 134116","Type":"Adherens","Directional":false,"Links":[{"SourceID":134115,"TargetID":134116,"Directional":false}]},{"ID":994,"SourceStructureID":100907,"TargetStructureID":485,"Label":"100907-485 via Unknown from 100908 -> 100909","Type":"Unknown","Directional":false,"Links":[{"SourceID":100908,"TargetID":100909,"Directional":false}]},{"ID":995,"SourceStructureID":485,"TargetStructureID":100942,"Label":"485-100942 via Unknown from 100944 -> 100943","Type":"Unknown","Directional":false,"Links":[{"SourceID":100944,"TargetID":100943,"Directional":false}]},{"ID":996,"SourceStructureID":100946,"TargetStructureID":485,"Label":"100946-485 via Unknown from 134106 -> 134105","Type":"Unknown","Directional":false,"Links":[{"SourceID":134106,"TargetID":134105,"Directional":false}]},{"ID":997,"SourceStructureID":485,"TargetStructureID":100960,"Label":"485-100960 via Adherens from 134108 -> 134107","Type":"Adherens","Directional":false,"Links":[{"SourceID":134108,"TargetID":134107,"Directional":false}]},{"ID":998,"SourceStructureID":485,"TargetStructureID":100987,"Label":"485-100987 via Unknown from 100989 -> 100988","Type":"Unknown","Directional":false,"Links":[{"SourceID":100989,"TargetID":100988,"Directional":false}]},{"ID":999,"SourceStructureID":485,"TargetStructureID":100990,"Label":"485-100990 via Unknown from 134109 -> 134110","Type":"Unknown","Directional":false,"Links":[{"SourceID":134109,"TargetID":134110,"Directional":false}]},{"ID":1000,"SourceStructureID":485,"TargetStructureID":101007,"Label":"485-101007 via Unknown from 134112 -> 134111","Type":"Unknown","Directional":false,"Links":[{"SourceID":134112,"TargetID":134111,"Directional":false}]},{"ID":1001,"SourceStructureID":101102,"TargetStructureID":485,"Label":"101102-485 via Unknown from 101104 -> 101106","Type":"Unknown","Directional":false,"Links":[{"SourceID":101104,"TargetID":101106,"Directional":false}]},{"ID":1002,"SourceStructureID":485,"TargetStructureID":101145,"Label":"485-101145 via Adherens from 148000 -> 147999","Type":"Adherens","Directional":false,"Links":[{"SourceID":148000,"TargetID":147999,"Directional":false}]},{"ID":1003,"SourceStructureID":485,"TargetStructureID":101180,"Label":"485-101180 via Unknown from 134215 -> 134216","Type":"Unknown","Directional":false,"Links":[{"SourceID":134215,"TargetID":134216,"Directional":false}]},{"ID":1004,"SourceStructureID":485,"TargetStructureID":101220,"Label":"485-101220 via Gap Junction from 101224 -> 101223","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":101224,"TargetID":101223,"Directional":false}]},{"ID":1005,"SourceStructureID":485,"TargetStructureID":101220,"Label":"485-101220 via Unknown from 101226 -> 101225","Type":"Unknown","Directional":false,"Links":[{"SourceID":101226,"TargetID":101225,"Directional":false}]},{"ID":1006,"SourceStructureID":101238,"TargetStructureID":485,"Label":"101238-485 via Unknown from 101245 -> 101246","Type":"Unknown","Directional":false,"Links":[{"SourceID":101245,"TargetID":101246,"Directional":false}]},{"ID":1007,"SourceStructureID":485,"TargetStructureID":101253,"Label":"485-101253 via Unknown from 101255 -> 101254","Type":"Unknown","Directional":false,"Links":[{"SourceID":101255,"TargetID":101254,"Directional":false}]},{"ID":1008,"SourceStructureID":101314,"TargetStructureID":485,"Label":"101314-485 via Adherens from 148059 -> 148058","Type":"Adherens","Directional":false,"Links":[{"SourceID":148059,"TargetID":148058,"Directional":false}]},{"ID":1009,"SourceStructureID":101423,"TargetStructureID":485,"Label":"101423-485 via Unknown from 101425 -> 101424","Type":"Unknown","Directional":false,"Links":[{"SourceID":101425,"TargetID":101424,"Directional":false}]},{"ID":1010,"SourceStructureID":485,"TargetStructureID":101486,"Label":"485-101486 via Adherens from 134174 -> 134175","Type":"Adherens","Directional":false,"Links":[{"SourceID":134174,"TargetID":134175,"Directional":false}]},{"ID":1011,"SourceStructureID":101498,"TargetStructureID":485,"Label":"101498-485 via Unknown from 134176 -> 134177","Type":"Unknown","Directional":false,"Links":[{"SourceID":134176,"TargetID":134177,"Directional":false}]},{"ID":1012,"SourceStructureID":485,"TargetStructureID":101728,"Label":"485-101728 via Gap Junction from 94361 -> 101729","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94361,"TargetID":101729,"Directional":false}]},{"ID":1013,"SourceStructureID":485,"TargetStructureID":101728,"Label":"485-101728 via Unknown from 134178 -> 134179, 134181 -> 134180","Type":"Unknown","Directional":false,"Links":[{"SourceID":134178,"TargetID":134179,"Directional":false},{"SourceID":134181,"TargetID":134180,"Directional":false}]},{"ID":1014,"SourceStructureID":485,"TargetStructureID":101751,"Label":"485-101751 via Unknown from 101763 -> 101762, 134182 -> 134183","Type":"Unknown","Directional":false,"Links":[{"SourceID":101763,"TargetID":101762,"Directional":false},{"SourceID":134182,"TargetID":134183,"Directional":false}]},{"ID":1015,"SourceStructureID":485,"TargetStructureID":101798,"Label":"485-101798 via Unknown from 134184 -> 134185","Type":"Unknown","Directional":false,"Links":[{"SourceID":134184,"TargetID":134185,"Directional":false}]},{"ID":1016,"SourceStructureID":101801,"TargetStructureID":485,"Label":"101801-485 via Unknown from 134187 -> 134186","Type":"Unknown","Directional":false,"Links":[{"SourceID":134187,"TargetID":134186,"Directional":false}]},{"ID":1017,"SourceStructureID":101845,"TargetStructureID":485,"Label":"101845-485 via Adherens from 101846 -> 101844","Type":"Adherens","Directional":false,"Links":[{"SourceID":101846,"TargetID":101844,"Directional":false}]},{"ID":1018,"SourceStructureID":101868,"TargetStructureID":485,"Label":"101868-485 via Unknown from 101869 -> 49917","Type":"Unknown","Directional":false,"Links":[{"SourceID":101869,"TargetID":49917,"Directional":false}]},{"ID":1019,"SourceStructureID":485,"TargetStructureID":101881,"Label":"485-101881 via Unknown from 101883 -> 101884","Type":"Unknown","Directional":false,"Links":[{"SourceID":101883,"TargetID":101884,"Directional":false}]},{"ID":1020,"SourceStructureID":101886,"TargetStructureID":485,"Label":"101886-485 via Unknown from 134190 -> 134191","Type":"Unknown","Directional":false,"Links":[{"SourceID":134190,"TargetID":134191,"Directional":false}]},{"ID":1021,"SourceStructureID":485,"TargetStructureID":101906,"Label":"485-101906 via Unknown from 101909 -> 101908","Type":"Unknown","Directional":false,"Links":[{"SourceID":101909,"TargetID":101908,"Directional":false}]},{"ID":1022,"SourceStructureID":485,"TargetStructureID":101920,"Label":"485-101920 via Unknown from 134193 -> 134192","Type":"Unknown","Directional":false,"Links":[{"SourceID":134193,"TargetID":134192,"Directional":false}]},{"ID":1023,"SourceStructureID":488,"TargetStructureID":488,"Label":"488-488 via Adherens from 87799 -> 87798","Type":"Adherens","Directional":false,"Links":[{"SourceID":87799,"TargetID":87798,"Directional":false}]},{"ID":1024,"SourceStructureID":488,"TargetStructureID":4850,"Label":"488-4850 via Unknown from 97816 -> 97817","Type":"Unknown","Directional":false,"Links":[{"SourceID":97816,"TargetID":97817,"Directional":false}]},{"ID":1025,"SourceStructureID":6153,"TargetStructureID":488,"Label":"6153-488 via Adherens from 87791 -> 87790","Type":"Adherens","Directional":false,"Links":[{"SourceID":87791,"TargetID":87790,"Directional":false}]},{"ID":1026,"SourceStructureID":514,"TargetStructureID":593,"Label":"514-593 via Gap Junction from 2559 -> 52461, 15894 -> 3077, 115747 -> 115746","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":2559,"TargetID":52461,"Directional":false},{"SourceID":15894,"TargetID":3077,"Directional":false},{"SourceID":115747,"TargetID":115746,"Directional":false}]},{"ID":1027,"SourceStructureID":514,"TargetStructureID":1724,"Label":"514-1724 via Gap Junction from 1004 -> 43309, 1806 -> 1803, 4016 -> 4018, 4034 -> 4035, 4122 -> 1009, 20014 -> 3972, 22606 -> 3242, 47345 -> 1447, 47377 -> 1442, 47401 -> 3072, 48675 -> 48674, 100237 -> 100238","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":1004,"TargetID":43309,"Directional":false},{"SourceID":1806,"TargetID":1803,"Directional":false},{"SourceID":4016,"TargetID":4018,"Directional":false},{"SourceID":4034,"TargetID":4035,"Directional":false},{"SourceID":4122,"TargetID":1009,"Directional":false},{"SourceID":20014,"TargetID":3972,"Directional":false},{"SourceID":22606,"TargetID":3242,"Directional":false},{"SourceID":47345,"TargetID":1447,"Directional":false},{"SourceID":47377,"TargetID":1442,"Directional":false},{"SourceID":47401,"TargetID":3072,"Directional":false},{"SourceID":48675,"TargetID":48674,"Directional":false},{"SourceID":100237,"TargetID":100238,"Directional":false}]},{"ID":1028,"SourceStructureID":514,"TargetStructureID":2610,"Label":"514-2610 via Gap Junction from 1452 -> 13805, 2511 -> 135028, 15093 -> 2793, 16540 -> 16539, 17039 -> 13793, 17051 -> 17050, 17101 -> 17072, 17102 -> 17085, 17170 -> 17169, 17223 -> 17222, 17939 -> 2885, 17976 -> 17975, 18000 -> 18001, 19055 -> 19056, 29762 -> 29761, 134993 -> 134992","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":1452,"TargetID":13805,"Directional":false},{"SourceID":2511,"TargetID":135028,"Directional":false},{"SourceID":15093,"TargetID":2793,"Directional":false},{"SourceID":16540,"TargetID":16539,"Directional":false},{"SourceID":17039,"TargetID":13793,"Directional":false},{"SourceID":17051,"TargetID":17050,"Directional":false},{"SourceID":17101,"TargetID":17072,"Directional":false},{"SourceID":17102,"TargetID":17085,"Directional":false},{"SourceID":17170,"TargetID":17169,"Directional":false},{"SourceID":17223,"TargetID":17222,"Directional":false},{"SourceID":17939,"TargetID":2885,"Directional":false},{"SourceID":17976,"TargetID":17975,"Directional":false},{"SourceID":18000,"TargetID":18001,"Directional":false},{"SourceID":19055,"TargetID":19056,"Directional":false},{"SourceID":29762,"TargetID":29761,"Directional":false},{"SourceID":134993,"TargetID":134992,"Directional":false}]},{"ID":1029,"SourceStructureID":3257,"TargetStructureID":514,"Label":"3257-514 via Gap Junction from 10860 -> 10850, 16199 -> 10844","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10860,"TargetID":10850,"Directional":false},{"SourceID":16199,"TargetID":10844,"Directional":false}]},{"ID":1030,"SourceStructureID":3679,"TargetStructureID":514,"Label":"3679-514 via Adherens from 16344 -> 16343","Type":"Adherens","Directional":false,"Links":[{"SourceID":16344,"TargetID":16343,"Directional":false}]},{"ID":1031,"SourceStructureID":3679,"TargetStructureID":514,"Label":"3679-514 via Gap Junction from 5050 -> 3253, 8005 -> 3094, 10926 -> 3802, 10941 -> 5225, 11595 -> 4704, 11596 -> 4705, 13832 -> 13831, 16436 -> 16435, 16439 -> 5013, 18425 -> 10920","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":5050,"TargetID":3253,"Directional":false},{"SourceID":8005,"TargetID":3094,"Directional":false},{"SourceID":10926,"TargetID":3802,"Directional":false},{"SourceID":10941,"TargetID":5225,"Directional":false},{"SourceID":11595,"TargetID":4704,"Directional":false},{"SourceID":11596,"TargetID":4705,"Directional":false},{"SourceID":13832,"TargetID":13831,"Directional":false},{"SourceID":16436,"TargetID":16435,"Directional":false},{"SourceID":16439,"TargetID":5013,"Directional":false},{"SourceID":18425,"TargetID":10920,"Directional":false}]},{"ID":1032,"SourceStructureID":4835,"TargetStructureID":514,"Label":"4835-514 via Gap Junction from 36741 -> 14961","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36741,"TargetID":14961,"Directional":false}]},{"ID":1033,"SourceStructureID":5017,"TargetStructureID":514,"Label":"5017-514 via Adherens from 61240 -> 61239, 158799 -> 158790","Type":"Adherens","Directional":false,"Links":[{"SourceID":61240,"TargetID":61239,"Directional":false},{"SourceID":158799,"TargetID":158790,"Directional":false}]},{"ID":1034,"SourceStructureID":514,"TargetStructureID":5150,"Label":"514-5150 via Adherens from 15406 -> 15405","Type":"Adherens","Directional":false,"Links":[{"SourceID":15406,"TargetID":15405,"Directional":false}]},{"ID":1035,"SourceStructureID":514,"TargetStructureID":5279,"Label":"514-5279 via Adherens from 147957 -> 147958","Type":"Adherens","Directional":false,"Links":[{"SourceID":147957,"TargetID":147958,"Directional":false}]},{"ID":1036,"SourceStructureID":5279,"TargetStructureID":514,"Label":"5279-514 via Gap Junction from 6171 -> 1008, 92617 -> 3075","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":6171,"TargetID":1008,"Directional":false},{"SourceID":92617,"TargetID":3075,"Directional":false}]},{"ID":1037,"SourceStructureID":514,"TargetStructureID":5279,"Label":"514-5279 via Touch from 33857 -> 33856","Type":"Touch","Directional":false,"Links":[{"SourceID":33857,"TargetID":33856,"Directional":false}]},{"ID":1038,"SourceStructureID":5283,"TargetStructureID":514,"Label":"5283-514 via Gap Junction from 132182 -> 132184","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132182,"TargetID":132184,"Directional":false}]},{"ID":1039,"SourceStructureID":5303,"TargetStructureID":514,"Label":"5303-514 via Adherens from 35630 -> 35631","Type":"Adherens","Directional":false,"Links":[{"SourceID":35630,"TargetID":35631,"Directional":false}]},{"ID":1040,"SourceStructureID":5345,"TargetStructureID":514,"Label":"5345-514 via Gap Junction from 8057 -> 2599","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8057,"TargetID":2599,"Directional":false}]},{"ID":1041,"SourceStructureID":514,"TargetStructureID":5517,"Label":"514-5517 via Gap Junction from 1014 -> 49362, 24400 -> 24399, 96078 -> 96077","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":1014,"TargetID":49362,"Directional":false},{"SourceID":24400,"TargetID":24399,"Directional":false},{"SourceID":96078,"TargetID":96077,"Directional":false}]},{"ID":1042,"SourceStructureID":5609,"TargetStructureID":514,"Label":"5609-514 via Adherens from 115745 -> 115744","Type":"Adherens","Directional":false,"Links":[{"SourceID":115745,"TargetID":115744,"Directional":false}]},{"ID":1043,"SourceStructureID":514,"TargetStructureID":6117,"Label":"514-6117 via Gap Junction from 83251 -> 49180","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83251,"TargetID":49180,"Directional":false}]},{"ID":1044,"SourceStructureID":514,"TargetStructureID":6156,"Label":"514-6156 via Adherens from 133282 -> 133283, 133332 -> 133331, 133457 -> 133458, 133486 -> 133487","Type":"Adherens","Directional":false,"Links":[{"SourceID":133282,"TargetID":133283,"Directional":false},{"SourceID":133332,"TargetID":133331,"Directional":false},{"SourceID":133457,"TargetID":133458,"Directional":false},{"SourceID":133486,"TargetID":133487,"Directional":false}]},{"ID":1045,"SourceStructureID":6156,"TargetStructureID":514,"Label":"6156-514 via Gap Junction from 16403 -> 15305, 22575 -> 8874, 22598 -> 2561, 23157 -> 23156, 23159 -> 2541, 23172 -> 23171, 23249 -> 23248, 23266 -> 23267, 117530 -> 117531, 117563 -> 117564, 117610 -> 117611, 133163 -> 117347, 133243 -> 133244, 133346 -> 133345, 133382 -> 133383","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16403,"TargetID":15305,"Directional":false},{"SourceID":22575,"TargetID":8874,"Directional":false},{"SourceID":22598,"TargetID":2561,"Directional":false},{"SourceID":23157,"TargetID":23156,"Directional":false},{"SourceID":23159,"TargetID":2541,"Directional":false},{"SourceID":23172,"TargetID":23171,"Directional":false},{"SourceID":23249,"TargetID":23248,"Directional":false},{"SourceID":23266,"TargetID":23267,"Directional":false},{"SourceID":117530,"TargetID":117531,"Directional":false},{"SourceID":117563,"TargetID":117564,"Directional":false},{"SourceID":117610,"TargetID":117611,"Directional":false},{"SourceID":133163,"TargetID":117347,"Directional":false},{"SourceID":133243,"TargetID":133244,"Directional":false},{"SourceID":133346,"TargetID":133345,"Directional":false},{"SourceID":133382,"TargetID":133383,"Directional":false}]},{"ID":1046,"SourceStructureID":6169,"TargetStructureID":514,"Label":"6169-514 via Gap Junction from 9456 -> 1002, 10838 -> 1583, 11625 -> 1117, 16331 -> 549, 18161 -> 3090, 31071 -> 31069","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9456,"TargetID":1002,"Directional":false},{"SourceID":10838,"TargetID":1583,"Directional":false},{"SourceID":11625,"TargetID":1117,"Directional":false},{"SourceID":16331,"TargetID":549,"Directional":false},{"SourceID":18161,"TargetID":3090,"Directional":false},{"SourceID":31071,"TargetID":31069,"Directional":false}]},{"ID":1047,"SourceStructureID":514,"TargetStructureID":6997,"Label":"514-6997 via Gap Junction from 133247 -> 133250, 135076 -> 135077","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133247,"TargetID":133250,"Directional":false},{"SourceID":135076,"TargetID":135077,"Directional":false}]},{"ID":1048,"SourceStructureID":8037,"TargetStructureID":514,"Label":"8037-514 via Gap Junction from 10871 -> 2529, 29757 -> 29756","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10871,"TargetID":2529,"Directional":false},{"SourceID":29757,"TargetID":29756,"Directional":false}]},{"ID":1049,"SourceStructureID":8749,"TargetStructureID":514,"Label":"8749-514 via Adherens from 43457 -> 43456","Type":"Adherens","Directional":false,"Links":[{"SourceID":43457,"TargetID":43456,"Directional":false}]},{"ID":1050,"SourceStructureID":8990,"TargetStructureID":514,"Label":"8990-514 via Adherens from 32011 -> 32010","Type":"Adherens","Directional":false,"Links":[{"SourceID":32011,"TargetID":32010,"Directional":false}]},{"ID":1051,"SourceStructureID":9023,"TargetStructureID":514,"Label":"9023-514 via Adherens from 36675 -> 36674","Type":"Adherens","Directional":false,"Links":[{"SourceID":36675,"TargetID":36674,"Directional":false}]},{"ID":1052,"SourceStructureID":514,"TargetStructureID":9226,"Label":"514-9226 via Adherens from 9661 -> 9662","Type":"Adherens","Directional":false,"Links":[{"SourceID":9661,"TargetID":9662,"Directional":false}]},{"ID":1053,"SourceStructureID":514,"TargetStructureID":9693,"Label":"514-9693 via Gap Junction from 134722 -> 119837, 134994 -> 134995","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134722,"TargetID":119837,"Directional":false},{"SourceID":134994,"TargetID":134995,"Directional":false}]},{"ID":1054,"SourceStructureID":514,"TargetStructureID":25392,"Label":"514-25392 via Adherens from 25398 -> 25397","Type":"Adherens","Directional":false,"Links":[{"SourceID":25398,"TargetID":25397,"Directional":false}]},{"ID":1055,"SourceStructureID":514,"TargetStructureID":25529,"Label":"514-25529 via Adherens from 25537 -> 25536","Type":"Adherens","Directional":false,"Links":[{"SourceID":25537,"TargetID":25536,"Directional":false}]},{"ID":1056,"SourceStructureID":32371,"TargetStructureID":514,"Label":"32371-514 via Adherens from 32376 -> 1585","Type":"Adherens","Directional":false,"Links":[{"SourceID":32376,"TargetID":1585,"Directional":false}]},{"ID":1057,"SourceStructureID":514,"TargetStructureID":32719,"Label":"514-32719 via Adherens from 32723 -> 32722","Type":"Adherens","Directional":false,"Links":[{"SourceID":32723,"TargetID":32722,"Directional":false}]},{"ID":1058,"SourceStructureID":514,"TargetStructureID":40863,"Label":"514-40863 via Gap Junction from 40873 -> 40872","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40873,"TargetID":40872,"Directional":false}]},{"ID":1059,"SourceStructureID":514,"TargetStructureID":40988,"Label":"514-40988 via Adherens from 91261 -> 91262","Type":"Adherens","Directional":false,"Links":[{"SourceID":91261,"TargetID":91262,"Directional":false}]},{"ID":1060,"SourceStructureID":514,"TargetStructureID":61231,"Label":"514-61231 via Adherens from 61239 -> 61238","Type":"Adherens","Directional":false,"Links":[{"SourceID":61239,"TargetID":61238,"Directional":false}]},{"ID":1061,"SourceStructureID":68031,"TargetStructureID":514,"Label":"68031-514 via Adherens from 135100 -> 135099","Type":"Adherens","Directional":false,"Links":[{"SourceID":135100,"TargetID":135099,"Directional":false}]},{"ID":1062,"SourceStructureID":514,"TargetStructureID":77019,"Label":"514-77019 via Adherens from 77022 -> 77021","Type":"Adherens","Directional":false,"Links":[{"SourceID":77022,"TargetID":77021,"Directional":false}]},{"ID":1063,"SourceStructureID":514,"TargetStructureID":123146,"Label":"514-123146 via Adherens from 123149 -> 123148","Type":"Adherens","Directional":false,"Links":[{"SourceID":123149,"TargetID":123148,"Directional":false}]},{"ID":1064,"SourceStructureID":5303,"TargetStructureID":517,"Label":"5303-517 via Adherens from 60499 -> 60498","Type":"Adherens","Directional":false,"Links":[{"SourceID":60499,"TargetID":60498,"Directional":false}]},{"ID":1065,"SourceStructureID":25440,"TargetStructureID":517,"Label":"25440-517 via Touch from 25455 -> 25457","Type":"Touch","Directional":false,"Links":[{"SourceID":25455,"TargetID":25457,"Directional":false}]},{"ID":1066,"SourceStructureID":40951,"TargetStructureID":517,"Label":"40951-517 via Adherens from 60533 -> 60532","Type":"Adherens","Directional":false,"Links":[{"SourceID":60533,"TargetID":60532,"Directional":false}]},{"ID":1067,"SourceStructureID":518,"TargetStructureID":13855,"Label":"518-13855 via Touch from 36323 -> 36322","Type":"Touch","Directional":false,"Links":[{"SourceID":36323,"TargetID":36322,"Directional":false}]},{"ID":1068,"SourceStructureID":518,"TargetStructureID":36650,"Label":"518-36650 via Adherens from 64555 -> 64556","Type":"Adherens","Directional":false,"Links":[{"SourceID":64555,"TargetID":64556,"Directional":false}]},{"ID":1069,"SourceStructureID":25359,"TargetStructureID":519,"Label":"25359-519 via Adherens from 64489 -> 64490","Type":"Adherens","Directional":false,"Links":[{"SourceID":64489,"TargetID":64490,"Directional":false}]},{"ID":1070,"SourceStructureID":25865,"TargetStructureID":519,"Label":"25865-519 via Adherens from 64510 -> 64509","Type":"Adherens","Directional":false,"Links":[{"SourceID":64510,"TargetID":64509,"Directional":false}]},{"ID":1071,"SourceStructureID":525,"TargetStructureID":6589,"Label":"525-6589 via Unknown from 132624 -> 132623, 132705 -> 132706","Type":"Unknown","Directional":false,"Links":[{"SourceID":132624,"TargetID":132623,"Directional":false},{"SourceID":132705,"TargetID":132706,"Directional":false}]},{"ID":1072,"SourceStructureID":2610,"TargetStructureID":573,"Label":"2610-573 via Gap Junction from 2995 -> 19095, 17920 -> 17919, 17933 -> 17932, 17936 -> 17935","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":2995,"TargetID":19095,"Directional":false},{"SourceID":17920,"TargetID":17919,"Directional":false},{"SourceID":17933,"TargetID":17932,"Directional":false},{"SourceID":17936,"TargetID":17935,"Directional":false}]},{"ID":1073,"SourceStructureID":573,"TargetStructureID":5345,"Label":"573-5345 via Gap Junction from 8476 -> 8475, 11431 -> 11432","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8476,"TargetID":8475,"Directional":false},{"SourceID":11431,"TargetID":11432,"Directional":false}]},{"ID":1074,"SourceStructureID":573,"TargetStructureID":5515,"Label":"573-5515 via Gap Junction from 60113 -> 60112","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60113,"TargetID":60112,"Directional":false}]},{"ID":1075,"SourceStructureID":573,"TargetStructureID":6589,"Label":"573-6589 via Gap Junction from 132822 -> 132821","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132822,"TargetID":132821,"Directional":false}]},{"ID":1076,"SourceStructureID":9693,"TargetStructureID":573,"Label":"9693-573 via Gap Junction from 134765 -> 134766","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134765,"TargetID":134766,"Directional":false}]},{"ID":1077,"SourceStructureID":28886,"TargetStructureID":573,"Label":"28886-573 via Gap Junction from 51450 -> 47761","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51450,"TargetID":47761,"Directional":false}]},{"ID":1078,"SourceStructureID":96788,"TargetStructureID":573,"Label":"96788-573 via Unknown from 96815 -> 96814","Type":"Unknown","Directional":false,"Links":[{"SourceID":96815,"TargetID":96814,"Directional":false}]},{"ID":1079,"SourceStructureID":593,"TargetStructureID":593,"Label":"593-593 via Adherens from 135108 -> 135109","Type":"Adherens","Directional":false,"Links":[{"SourceID":135108,"TargetID":135109,"Directional":false}]},{"ID":1080,"SourceStructureID":593,"TargetStructureID":593,"Label":"593-593 via Gap Junction from 63044 -> 63043","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63044,"TargetID":63043,"Directional":false}]},{"ID":1081,"SourceStructureID":3679,"TargetStructureID":593,"Label":"3679-593 via Adherens from 135103 -> 135104","Type":"Adherens","Directional":false,"Links":[{"SourceID":135103,"TargetID":135104,"Directional":false}]},{"ID":1082,"SourceStructureID":593,"TargetStructureID":3679,"Label":"593-3679 via Gap Junction from 7715 -> 6360, 7723 -> 5187, 52475 -> 52474, 52476 -> 52473, 59594 -> 59593, 61831 -> 61832, 67238 -> 3770, 83349 -> 83348","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":7715,"TargetID":6360,"Directional":false},{"SourceID":7723,"TargetID":5187,"Directional":false},{"SourceID":52475,"TargetID":52474,"Directional":false},{"SourceID":52476,"TargetID":52473,"Directional":false},{"SourceID":59594,"TargetID":59593,"Directional":false},{"SourceID":61831,"TargetID":61832,"Directional":false},{"SourceID":67238,"TargetID":3770,"Directional":false},{"SourceID":83349,"TargetID":83348,"Directional":false}]},{"ID":1083,"SourceStructureID":593,"TargetStructureID":5279,"Label":"593-5279 via Gap Junction from 92636 -> 92635","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92636,"TargetID":92635,"Directional":false}]},{"ID":1084,"SourceStructureID":593,"TargetStructureID":5562,"Label":"593-5562 via Adherens from 133746 -> 133747","Type":"Adherens","Directional":false,"Links":[{"SourceID":133746,"TargetID":133747,"Directional":false}]},{"ID":1085,"SourceStructureID":593,"TargetStructureID":5562,"Label":"593-5562 via Gap Junction from 49434 -> 49433, 79658 -> 79659","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49434,"TargetID":49433,"Directional":false},{"SourceID":79658,"TargetID":79659,"Directional":false}]},{"ID":1086,"SourceStructureID":593,"TargetStructureID":5575,"Label":"593-5575 via Unknown from 62879 -> 62880","Type":"Unknown","Directional":false,"Links":[{"SourceID":62879,"TargetID":62880,"Directional":false}]},{"ID":1087,"SourceStructureID":593,"TargetStructureID":5649,"Label":"593-5649 via Gap Junction from 53818 -> 53826","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53818,"TargetID":53826,"Directional":false}]},{"ID":1088,"SourceStructureID":6115,"TargetStructureID":593,"Label":"6115-593 via Adherens from 131170 -> 131171","Type":"Adherens","Directional":false,"Links":[{"SourceID":131170,"TargetID":131171,"Directional":false}]},{"ID":1089,"SourceStructureID":6115,"TargetStructureID":593,"Label":"6115-593 via Gap Junction from 55890 -> 59799, 72656 -> 72657","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55890,"TargetID":59799,"Directional":false},{"SourceID":72656,"TargetID":72657,"Directional":false}]},{"ID":1090,"SourceStructureID":6997,"TargetStructureID":593,"Label":"6997-593 via Adherens from 135105 -> 135106","Type":"Adherens","Directional":false,"Links":[{"SourceID":135105,"TargetID":135106,"Directional":false}]},{"ID":1091,"SourceStructureID":6997,"TargetStructureID":593,"Label":"6997-593 via Gap Junction from 52442 -> 52441, 59747 -> 59749","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52442,"TargetID":52441,"Directional":false},{"SourceID":59747,"TargetID":59749,"Directional":false}]},{"ID":1092,"SourceStructureID":8588,"TargetStructureID":593,"Label":"8588-593 via Unknown from 83345 -> 83344","Type":"Unknown","Directional":false,"Links":[{"SourceID":83345,"TargetID":83344,"Directional":false}]},{"ID":1093,"SourceStructureID":16026,"TargetStructureID":593,"Label":"16026-593 via Adherens from 68605 -> 68603","Type":"Adherens","Directional":false,"Links":[{"SourceID":68605,"TargetID":68603,"Directional":false}]},{"ID":1094,"SourceStructureID":18282,"TargetStructureID":593,"Label":"18282-593 via Unknown from 115788 -> 115787","Type":"Unknown","Directional":false,"Links":[{"SourceID":115788,"TargetID":115787,"Directional":false}]},{"ID":1095,"SourceStructureID":593,"TargetStructureID":30477,"Label":"593-30477 via Adherens from 50448 -> 61959","Type":"Adherens","Directional":false,"Links":[{"SourceID":50448,"TargetID":61959,"Directional":false}]},{"ID":1096,"SourceStructureID":36516,"TargetStructureID":593,"Label":"36516-593 via Adherens from 67369 -> 67368","Type":"Adherens","Directional":false,"Links":[{"SourceID":67369,"TargetID":67368,"Directional":false}]},{"ID":1097,"SourceStructureID":593,"TargetStructureID":49489,"Label":"593-49489 via Adherens from 61948 -> 61947","Type":"Adherens","Directional":false,"Links":[{"SourceID":61948,"TargetID":61947,"Directional":false}]},{"ID":1098,"SourceStructureID":59096,"TargetStructureID":593,"Label":"59096-593 via Touch from 59555 -> 59554","Type":"Touch","Directional":false,"Links":[{"SourceID":59555,"TargetID":59554,"Directional":false}]},{"ID":1099,"SourceStructureID":59097,"TargetStructureID":593,"Label":"59097-593 via Touch from 59119 -> 59118","Type":"Touch","Directional":false,"Links":[{"SourceID":59119,"TargetID":59118,"Directional":false}]},{"ID":1100,"SourceStructureID":59121,"TargetStructureID":593,"Label":"59121-593 via Adherens from 59123 -> 59120","Type":"Adherens","Directional":false,"Links":[{"SourceID":59123,"TargetID":59120,"Directional":false}]},{"ID":1101,"SourceStructureID":59139,"TargetStructureID":593,"Label":"59139-593 via Adherens from 59143 -> 59142","Type":"Adherens","Directional":false,"Links":[{"SourceID":59143,"TargetID":59142,"Directional":false}]},{"ID":1102,"SourceStructureID":593,"TargetStructureID":59333,"Label":"593-59333 via Adherens from 59335 -> 59334","Type":"Adherens","Directional":false,"Links":[{"SourceID":59335,"TargetID":59334,"Directional":false}]},{"ID":1103,"SourceStructureID":593,"TargetStructureID":59333,"Label":"593-59333 via Touch from 59545 -> 59546","Type":"Touch","Directional":false,"Links":[{"SourceID":59545,"TargetID":59546,"Directional":false}]},{"ID":1104,"SourceStructureID":593,"TargetStructureID":59422,"Label":"593-59422 via Unknown from 85578 -> 85580","Type":"Unknown","Directional":false,"Links":[{"SourceID":85578,"TargetID":85580,"Directional":false}]},{"ID":1105,"SourceStructureID":61777,"TargetStructureID":593,"Label":"61777-593 via Unknown from 79442 -> 79443","Type":"Unknown","Directional":false,"Links":[{"SourceID":79442,"TargetID":79443,"Directional":false}]},{"ID":1106,"SourceStructureID":593,"TargetStructureID":61816,"Label":"593-61816 via Adherens from 68390 -> 68389, 86763 -> 86764","Type":"Adherens","Directional":false,"Links":[{"SourceID":68390,"TargetID":68389,"Directional":false},{"SourceID":86763,"TargetID":86764,"Directional":false}]},{"ID":1107,"SourceStructureID":593,"TargetStructureID":61849,"Label":"593-61849 via Unknown from 83356 -> 83355","Type":"Unknown","Directional":false,"Links":[{"SourceID":83356,"TargetID":83355,"Directional":false}]},{"ID":1108,"SourceStructureID":593,"TargetStructureID":61860,"Label":"593-61860 via Unknown from 61859 -> 61861","Type":"Unknown","Directional":false,"Links":[{"SourceID":61859,"TargetID":61861,"Directional":false}]},{"ID":1109,"SourceStructureID":61882,"TargetStructureID":593,"Label":"61882-593 via Unknown from 61884 -> 52433","Type":"Unknown","Directional":false,"Links":[{"SourceID":61884,"TargetID":52433,"Directional":false}]},{"ID":1110,"SourceStructureID":61926,"TargetStructureID":593,"Label":"61926-593 via Unknown from 115740 -> 115741","Type":"Unknown","Directional":false,"Links":[{"SourceID":115740,"TargetID":115741,"Directional":false}]},{"ID":1111,"SourceStructureID":61933,"TargetStructureID":593,"Label":"61933-593 via Adherens from 68079 -> 68080, 115700 -> 115699","Type":"Adherens","Directional":false,"Links":[{"SourceID":68079,"TargetID":68080,"Directional":false},{"SourceID":115700,"TargetID":115699,"Directional":false}]},{"ID":1112,"SourceStructureID":593,"TargetStructureID":61940,"Label":"593-61940 via Adherens from 61945 -> 61946","Type":"Adherens","Directional":false,"Links":[{"SourceID":61945,"TargetID":61946,"Directional":false}]},{"ID":1113,"SourceStructureID":593,"TargetStructureID":61965,"Label":"593-61965 via Adherens from 68417 -> 68418","Type":"Adherens","Directional":false,"Links":[{"SourceID":68417,"TargetID":68418,"Directional":false}]},{"ID":1114,"SourceStructureID":61975,"TargetStructureID":593,"Label":"61975-593 via Adherens from 61977 -> 61974","Type":"Adherens","Directional":false,"Links":[{"SourceID":61977,"TargetID":61974,"Directional":false}]},{"ID":1115,"SourceStructureID":593,"TargetStructureID":61978,"Label":"593-61978 via Adherens from 75344 -> 75343","Type":"Adherens","Directional":false,"Links":[{"SourceID":75344,"TargetID":75343,"Directional":false}]},{"ID":1116,"SourceStructureID":61982,"TargetStructureID":593,"Label":"61982-593 via Unknown from 61983 -> 61981","Type":"Unknown","Directional":false,"Links":[{"SourceID":61983,"TargetID":61981,"Directional":false}]},{"ID":1117,"SourceStructureID":593,"TargetStructureID":62896,"Label":"593-62896 via Unknown from 115759 -> 115760","Type":"Unknown","Directional":false,"Links":[{"SourceID":115759,"TargetID":115760,"Directional":false}]},{"ID":1118,"SourceStructureID":65134,"TargetStructureID":593,"Label":"65134-593 via Unknown from 65149 -> 65146","Type":"Unknown","Directional":false,"Links":[{"SourceID":65149,"TargetID":65146,"Directional":false}]},{"ID":1119,"SourceStructureID":65320,"TargetStructureID":593,"Label":"65320-593 via Adherens from 65345 -> 65344","Type":"Adherens","Directional":false,"Links":[{"SourceID":65345,"TargetID":65344,"Directional":false}]},{"ID":1120,"SourceStructureID":593,"TargetStructureID":65324,"Label":"593-65324 via Adherens from 65327 -> 65326","Type":"Adherens","Directional":false,"Links":[{"SourceID":65327,"TargetID":65326,"Directional":false}]},{"ID":1121,"SourceStructureID":65398,"TargetStructureID":593,"Label":"65398-593 via Unknown from 83579 -> 83578","Type":"Unknown","Directional":false,"Links":[{"SourceID":83579,"TargetID":83578,"Directional":false}]},{"ID":1122,"SourceStructureID":65461,"TargetStructureID":593,"Label":"65461-593 via Adherens from 69858 -> 65400","Type":"Adherens","Directional":false,"Links":[{"SourceID":69858,"TargetID":65400,"Directional":false}]},{"ID":1123,"SourceStructureID":593,"TargetStructureID":65464,"Label":"593-65464 via Adherens from 65466 -> 65465, 65574 -> 65573, 82122 -> 82121, 83586 -> 65568","Type":"Adherens","Directional":false,"Links":[{"SourceID":65466,"TargetID":65465,"Directional":false},{"SourceID":65574,"TargetID":65573,"Directional":false},{"SourceID":82122,"TargetID":82121,"Directional":false},{"SourceID":83586,"TargetID":65568,"Directional":false}]},{"ID":1124,"SourceStructureID":65536,"TargetStructureID":593,"Label":"65536-593 via Unknown from 67083 -> 67084","Type":"Unknown","Directional":false,"Links":[{"SourceID":67083,"TargetID":67084,"Directional":false}]},{"ID":1125,"SourceStructureID":65576,"TargetStructureID":593,"Label":"65576-593 via Unknown from 84269 -> 84270","Type":"Unknown","Directional":false,"Links":[{"SourceID":84269,"TargetID":84270,"Directional":false}]},{"ID":1126,"SourceStructureID":593,"TargetStructureID":66089,"Label":"593-66089 via Unknown from 115782 -> 115783, 115785 -> 115784","Type":"Unknown","Directional":false,"Links":[{"SourceID":115782,"TargetID":115783,"Directional":false},{"SourceID":115785,"TargetID":115784,"Directional":false}]},{"ID":1127,"SourceStructureID":593,"TargetStructureID":66096,"Label":"593-66096 via Adherens from 67027 -> 67026, 67029 -> 67028, 67030 -> 67031","Type":"Adherens","Directional":false,"Links":[{"SourceID":67027,"TargetID":67026,"Directional":false},{"SourceID":67029,"TargetID":67028,"Directional":false},{"SourceID":67030,"TargetID":67031,"Directional":false}]},{"ID":1128,"SourceStructureID":66096,"TargetStructureID":593,"Label":"66096-593 via Unknown from 115763 -> 115764, 135101 -> 135102","Type":"Unknown","Directional":false,"Links":[{"SourceID":115763,"TargetID":115764,"Directional":false},{"SourceID":135101,"TargetID":135102,"Directional":false}]},{"ID":1129,"SourceStructureID":593,"TargetStructureID":66299,"Label":"593-66299 via Adherens from 66326 -> 66327","Type":"Adherens","Directional":false,"Links":[{"SourceID":66326,"TargetID":66327,"Directional":false}]},{"ID":1130,"SourceStructureID":66303,"TargetStructureID":593,"Label":"66303-593 via Unknown from 84307 -> 59791","Type":"Unknown","Directional":false,"Links":[{"SourceID":84307,"TargetID":59791,"Directional":false}]},{"ID":1131,"SourceStructureID":593,"TargetStructureID":66316,"Label":"593-66316 via Adherens from 66319 -> 66318","Type":"Adherens","Directional":false,"Links":[{"SourceID":66319,"TargetID":66318,"Directional":false}]},{"ID":1132,"SourceStructureID":66401,"TargetStructureID":593,"Label":"66401-593 via Adherens from 68370 -> 68372","Type":"Adherens","Directional":false,"Links":[{"SourceID":68370,"TargetID":68372,"Directional":false}]},{"ID":1133,"SourceStructureID":66407,"TargetStructureID":593,"Label":"66407-593 via Adherens from 68378 -> 68376","Type":"Adherens","Directional":false,"Links":[{"SourceID":68378,"TargetID":68376,"Directional":false}]},{"ID":1134,"SourceStructureID":66510,"TargetStructureID":593,"Label":"66510-593 via Unknown from 84321 -> 84322","Type":"Unknown","Directional":false,"Links":[{"SourceID":84321,"TargetID":84322,"Directional":false}]},{"ID":1135,"SourceStructureID":593,"TargetStructureID":66513,"Label":"593-66513 via Unknown from 84329 -> 84328","Type":"Unknown","Directional":false,"Links":[{"SourceID":84329,"TargetID":84328,"Directional":false}]},{"ID":1136,"SourceStructureID":593,"TargetStructureID":66743,"Label":"593-66743 via Adherens from 84354 -> 84353","Type":"Adherens","Directional":false,"Links":[{"SourceID":84354,"TargetID":84353,"Directional":false}]},{"ID":1137,"SourceStructureID":593,"TargetStructureID":66754,"Label":"593-66754 via Unknown from 115753 -> 115752, 115757 -> 115756","Type":"Unknown","Directional":false,"Links":[{"SourceID":115753,"TargetID":115752,"Directional":false},{"SourceID":115757,"TargetID":115756,"Directional":false}]},{"ID":1138,"SourceStructureID":593,"TargetStructureID":66756,"Label":"593-66756 via Unknown from 115755 -> 115754","Type":"Unknown","Directional":false,"Links":[{"SourceID":115755,"TargetID":115754,"Directional":false}]},{"ID":1139,"SourceStructureID":593,"TargetStructureID":66764,"Label":"593-66764 via Adherens from 66763 -> 66765","Type":"Adherens","Directional":false,"Links":[{"SourceID":66763,"TargetID":66765,"Directional":false}]},{"ID":1140,"SourceStructureID":66768,"TargetStructureID":593,"Label":"66768-593 via Adherens from 67540 -> 67541, 67570 -> 67569, 68425 -> 68426","Type":"Adherens","Directional":false,"Links":[{"SourceID":67540,"TargetID":67541,"Directional":false},{"SourceID":67570,"TargetID":67569,"Directional":false},{"SourceID":68425,"TargetID":68426,"Directional":false}]},{"ID":1141,"SourceStructureID":66779,"TargetStructureID":593,"Label":"66779-593 via Unknown from 115770 -> 115769","Type":"Unknown","Directional":false,"Links":[{"SourceID":115770,"TargetID":115769,"Directional":false}]},{"ID":1142,"SourceStructureID":593,"TargetStructureID":66828,"Label":"593-66828 via Unknown from 83338 -> 83339","Type":"Unknown","Directional":false,"Links":[{"SourceID":83338,"TargetID":83339,"Directional":false}]},{"ID":1143,"SourceStructureID":593,"TargetStructureID":66848,"Label":"593-66848 via Adherens from 66851 -> 66850","Type":"Adherens","Directional":false,"Links":[{"SourceID":66851,"TargetID":66850,"Directional":false}]},{"ID":1144,"SourceStructureID":66852,"TargetStructureID":593,"Label":"66852-593 via Adherens from 66856 -> 66855","Type":"Adherens","Directional":false,"Links":[{"SourceID":66856,"TargetID":66855,"Directional":false}]},{"ID":1145,"SourceStructureID":593,"TargetStructureID":66888,"Label":"593-66888 via Unknown from 66892 -> 66890, 115777 -> 115776","Type":"Unknown","Directional":false,"Links":[{"SourceID":66892,"TargetID":66890,"Directional":false},{"SourceID":115777,"TargetID":115776,"Directional":false}]},{"ID":1146,"SourceStructureID":66905,"TargetStructureID":593,"Label":"66905-593 via Adherens from 82123 -> 82124","Type":"Adherens","Directional":false,"Links":[{"SourceID":82123,"TargetID":82124,"Directional":false}]},{"ID":1147,"SourceStructureID":66933,"TargetStructureID":593,"Label":"66933-593 via Unknown from 83342 -> 83343","Type":"Unknown","Directional":false,"Links":[{"SourceID":83342,"TargetID":83343,"Directional":false}]},{"ID":1148,"SourceStructureID":593,"TargetStructureID":66942,"Label":"593-66942 via BC Conventional Synapse from 66945 -> 66944","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":66945,"TargetID":66944,"Directional":false}]},{"ID":1149,"SourceStructureID":66958,"TargetStructureID":593,"Label":"66958-593 via Adherens from 70023 -> 66960","Type":"Adherens","Directional":false,"Links":[{"SourceID":70023,"TargetID":66960,"Directional":false}]},{"ID":1150,"SourceStructureID":593,"TargetStructureID":66976,"Label":"593-66976 via Unknown from 66982 -> 66981, 115714 -> 115715","Type":"Unknown","Directional":false,"Links":[{"SourceID":66982,"TargetID":66981,"Directional":false},{"SourceID":115714,"TargetID":115715,"Directional":false}]},{"ID":1151,"SourceStructureID":593,"TargetStructureID":67016,"Label":"593-67016 via Adherens from 67021 -> 67022","Type":"Adherens","Directional":false,"Links":[{"SourceID":67021,"TargetID":67022,"Directional":false}]},{"ID":1152,"SourceStructureID":67042,"TargetStructureID":593,"Label":"67042-593 via Adherens from 76196 -> 76197, 76465 -> 68496","Type":"Adherens","Directional":false,"Links":[{"SourceID":76196,"TargetID":76197,"Directional":false},{"SourceID":76465,"TargetID":68496,"Directional":false}]},{"ID":1153,"SourceStructureID":593,"TargetStructureID":67042,"Label":"593-67042 via Unknown from 76468 -> 76467","Type":"Unknown","Directional":false,"Links":[{"SourceID":76468,"TargetID":76467,"Directional":false}]},{"ID":1154,"SourceStructureID":593,"TargetStructureID":67090,"Label":"593-67090 via Unknown from 115766 -> 115765","Type":"Unknown","Directional":false,"Links":[{"SourceID":115766,"TargetID":115765,"Directional":false}]},{"ID":1155,"SourceStructureID":593,"TargetStructureID":67093,"Label":"593-67093 via Unknown from 83340 -> 83341","Type":"Unknown","Directional":false,"Links":[{"SourceID":83340,"TargetID":83341,"Directional":false}]},{"ID":1156,"SourceStructureID":67112,"TargetStructureID":593,"Label":"67112-593 via Unknown from 67115 -> 67116","Type":"Unknown","Directional":false,"Links":[{"SourceID":67115,"TargetID":67116,"Directional":false}]},{"ID":1157,"SourceStructureID":67121,"TargetStructureID":593,"Label":"67121-593 via Adherens from 85520 -> 85519","Type":"Adherens","Directional":false,"Links":[{"SourceID":85520,"TargetID":85519,"Directional":false}]},{"ID":1158,"SourceStructureID":593,"TargetStructureID":67161,"Label":"593-67161 via Adherens from 67170 -> 67169, 67451 -> 67450","Type":"Adherens","Directional":false,"Links":[{"SourceID":67170,"TargetID":67169,"Directional":false},{"SourceID":67451,"TargetID":67450,"Directional":false}]},{"ID":1159,"SourceStructureID":67161,"TargetStructureID":593,"Label":"67161-593 via Unknown from 67162 -> 67163","Type":"Unknown","Directional":false,"Links":[{"SourceID":67162,"TargetID":67163,"Directional":false}]},{"ID":1160,"SourceStructureID":593,"TargetStructureID":67182,"Label":"593-67182 via Adherens from 67186 -> 67185","Type":"Adherens","Directional":false,"Links":[{"SourceID":67186,"TargetID":67185,"Directional":false}]},{"ID":1161,"SourceStructureID":67190,"TargetStructureID":593,"Label":"67190-593 via Unknown from 67191 -> 67189","Type":"Unknown","Directional":false,"Links":[{"SourceID":67191,"TargetID":67189,"Directional":false}]},{"ID":1162,"SourceStructureID":593,"TargetStructureID":67230,"Label":"593-67230 via Unknown from 90675 -> 90674","Type":"Unknown","Directional":false,"Links":[{"SourceID":90675,"TargetID":90674,"Directional":false}]},{"ID":1163,"SourceStructureID":593,"TargetStructureID":67274,"Label":"593-67274 via Adherens from 67276 -> 67275","Type":"Adherens","Directional":false,"Links":[{"SourceID":67276,"TargetID":67275,"Directional":false}]},{"ID":1164,"SourceStructureID":67331,"TargetStructureID":593,"Label":"67331-593 via Postsynapse from 67332 -> 67333","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":67332,"TargetID":67333,"Directional":false}]},{"ID":1165,"SourceStructureID":593,"TargetStructureID":67337,"Label":"593-67337 via Adherens from 68376 -> 68375","Type":"Adherens","Directional":false,"Links":[{"SourceID":68376,"TargetID":68375,"Directional":false}]},{"ID":1166,"SourceStructureID":67337,"TargetStructureID":593,"Label":"67337-593 via Unknown from 115781 -> 115780","Type":"Unknown","Directional":false,"Links":[{"SourceID":115781,"TargetID":115780,"Directional":false}]},{"ID":1167,"SourceStructureID":67354,"TargetStructureID":593,"Label":"67354-593 via Unknown from 67355 -> 63026, 85189 -> 85190","Type":"Unknown","Directional":false,"Links":[{"SourceID":67355,"TargetID":63026,"Directional":false},{"SourceID":85189,"TargetID":85190,"Directional":false}]},{"ID":1168,"SourceStructureID":593,"TargetStructureID":67364,"Label":"593-67364 via Unknown from 115768 -> 115767","Type":"Unknown","Directional":false,"Links":[{"SourceID":115768,"TargetID":115767,"Directional":false}]},{"ID":1169,"SourceStructureID":593,"TargetStructureID":67404,"Label":"593-67404 via Unknown from 83346 -> 83347","Type":"Unknown","Directional":false,"Links":[{"SourceID":83346,"TargetID":83347,"Directional":false}]},{"ID":1170,"SourceStructureID":593,"TargetStructureID":67406,"Label":"593-67406 via Adherens from 135097 -> 135098","Type":"Adherens","Directional":false,"Links":[{"SourceID":135097,"TargetID":135098,"Directional":false}]},{"ID":1171,"SourceStructureID":67423,"TargetStructureID":593,"Label":"67423-593 via Adherens from 115735 -> 115734","Type":"Adherens","Directional":false,"Links":[{"SourceID":115735,"TargetID":115734,"Directional":false}]},{"ID":1172,"SourceStructureID":67425,"TargetStructureID":593,"Label":"67425-593 via Adherens from 67426 -> 67427","Type":"Adherens","Directional":false,"Links":[{"SourceID":67426,"TargetID":67427,"Directional":false}]},{"ID":1173,"SourceStructureID":67444,"TargetStructureID":593,"Label":"67444-593 via Unknown from 86530 -> 86529","Type":"Unknown","Directional":false,"Links":[{"SourceID":86530,"TargetID":86529,"Directional":false}]},{"ID":1174,"SourceStructureID":67502,"TargetStructureID":593,"Label":"67502-593 via Unknown from 86740 -> 86739","Type":"Unknown","Directional":false,"Links":[{"SourceID":86740,"TargetID":86739,"Directional":false}]},{"ID":1175,"SourceStructureID":593,"TargetStructureID":67504,"Label":"593-67504 via Unknown from 63036 -> 67505","Type":"Unknown","Directional":false,"Links":[{"SourceID":63036,"TargetID":67505,"Directional":false}]},{"ID":1176,"SourceStructureID":67572,"TargetStructureID":593,"Label":"67572-593 via Unknown from 85225 -> 85224","Type":"Unknown","Directional":false,"Links":[{"SourceID":85225,"TargetID":85224,"Directional":false}]},{"ID":1177,"SourceStructureID":67661,"TargetStructureID":593,"Label":"67661-593 via Unknown from 67662 -> 63037","Type":"Unknown","Directional":false,"Links":[{"SourceID":67662,"TargetID":63037,"Directional":false}]},{"ID":1178,"SourceStructureID":593,"TargetStructureID":67756,"Label":"593-67756 via Adherens from 67966 -> 67965, 68510 -> 68509","Type":"Adherens","Directional":false,"Links":[{"SourceID":67966,"TargetID":67965,"Directional":false},{"SourceID":68510,"TargetID":68509,"Directional":false}]},{"ID":1179,"SourceStructureID":593,"TargetStructureID":67796,"Label":"593-67796 via Unknown from 115771 -> 115772","Type":"Unknown","Directional":false,"Links":[{"SourceID":115771,"TargetID":115772,"Directional":false}]},{"ID":1180,"SourceStructureID":67815,"TargetStructureID":593,"Label":"67815-593 via Adherens from 67825 -> 67826","Type":"Adherens","Directional":false,"Links":[{"SourceID":67825,"TargetID":67826,"Directional":false}]},{"ID":1181,"SourceStructureID":593,"TargetStructureID":67815,"Label":"593-67815 via Unknown from 87251 -> 87252","Type":"Unknown","Directional":false,"Links":[{"SourceID":87251,"TargetID":87252,"Directional":false}]},{"ID":1182,"SourceStructureID":67823,"TargetStructureID":593,"Label":"67823-593 via Adherens from 82395 -> 82394","Type":"Adherens","Directional":false,"Links":[{"SourceID":82395,"TargetID":82394,"Directional":false}]},{"ID":1183,"SourceStructureID":67871,"TargetStructureID":593,"Label":"67871-593 via Postsynapse from 68019 -> 68018","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":68019,"TargetID":68018,"Directional":false}]},{"ID":1184,"SourceStructureID":593,"TargetStructureID":67886,"Label":"593-67886 via Adherens from 67888 -> 67887","Type":"Adherens","Directional":false,"Links":[{"SourceID":67888,"TargetID":67887,"Directional":false}]},{"ID":1185,"SourceStructureID":67894,"TargetStructureID":593,"Label":"67894-593 via Adherens from 67898 -> 67899","Type":"Adherens","Directional":false,"Links":[{"SourceID":67898,"TargetID":67899,"Directional":false}]},{"ID":1186,"SourceStructureID":67932,"TargetStructureID":593,"Label":"67932-593 via Adherens from 87281 -> 87282","Type":"Adherens","Directional":false,"Links":[{"SourceID":87281,"TargetID":87282,"Directional":false}]},{"ID":1187,"SourceStructureID":67952,"TargetStructureID":593,"Label":"67952-593 via Adherens from 67953 -> 67951","Type":"Adherens","Directional":false,"Links":[{"SourceID":67953,"TargetID":67951,"Directional":false}]},{"ID":1188,"SourceStructureID":593,"TargetStructureID":67973,"Label":"593-67973 via Unknown from 67974 -> 67975","Type":"Unknown","Directional":false,"Links":[{"SourceID":67974,"TargetID":67975,"Directional":false}]},{"ID":1189,"SourceStructureID":593,"TargetStructureID":68009,"Label":"593-68009 via Adherens from 68011 -> 68010","Type":"Adherens","Directional":false,"Links":[{"SourceID":68011,"TargetID":68010,"Directional":false}]},{"ID":1190,"SourceStructureID":68059,"TargetStructureID":593,"Label":"68059-593 via Unknown from 68060 -> 68061","Type":"Unknown","Directional":false,"Links":[{"SourceID":68060,"TargetID":68061,"Directional":false}]},{"ID":1191,"SourceStructureID":593,"TargetStructureID":68072,"Label":"593-68072 via Unknown from 82256 -> 82255","Type":"Unknown","Directional":false,"Links":[{"SourceID":82256,"TargetID":82255,"Directional":false}]},{"ID":1192,"SourceStructureID":593,"TargetStructureID":68150,"Label":"593-68150 via BC Conventional Synapse from 68152 -> 68151","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":68152,"TargetID":68151,"Directional":false}]},{"ID":1193,"SourceStructureID":593,"TargetStructureID":68198,"Label":"593-68198 via Adherens from 68197 -> 68199","Type":"Adherens","Directional":false,"Links":[{"SourceID":68197,"TargetID":68199,"Directional":false}]},{"ID":1194,"SourceStructureID":68206,"TargetStructureID":593,"Label":"68206-593 via Unknown from 115775 -> 115774","Type":"Unknown","Directional":false,"Links":[{"SourceID":115775,"TargetID":115774,"Directional":false}]},{"ID":1195,"SourceStructureID":593,"TargetStructureID":68255,"Label":"593-68255 via Unknown from 52454 -> 68256","Type":"Unknown","Directional":false,"Links":[{"SourceID":52454,"TargetID":68256,"Directional":false}]},{"ID":1196,"SourceStructureID":68282,"TargetStructureID":593,"Label":"68282-593 via Adherens from 68285 -> 52447","Type":"Adherens","Directional":false,"Links":[{"SourceID":68285,"TargetID":52447,"Directional":false}]},{"ID":1197,"SourceStructureID":68353,"TargetStructureID":593,"Label":"68353-593 via Unknown from 68354 -> 68352","Type":"Unknown","Directional":false,"Links":[{"SourceID":68354,"TargetID":68352,"Directional":false}]},{"ID":1198,"SourceStructureID":68461,"TargetStructureID":593,"Label":"68461-593 via Unknown from 68462 -> 63029","Type":"Unknown","Directional":false,"Links":[{"SourceID":68462,"TargetID":63029,"Directional":false}]},{"ID":1199,"SourceStructureID":68497,"TargetStructureID":593,"Label":"68497-593 via Adherens from 79303 -> 79304","Type":"Adherens","Directional":false,"Links":[{"SourceID":79303,"TargetID":79304,"Directional":false}]},{"ID":1200,"SourceStructureID":593,"TargetStructureID":68506,"Label":"593-68506 via Unknown from 68508 -> 68507","Type":"Unknown","Directional":false,"Links":[{"SourceID":68508,"TargetID":68507,"Directional":false}]},{"ID":1201,"SourceStructureID":593,"TargetStructureID":68531,"Label":"593-68531 via BC Conventional Synapse from 63045 -> 68532","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":63045,"TargetID":68532,"Directional":false}]},{"ID":1202,"SourceStructureID":593,"TargetStructureID":68548,"Label":"593-68548 via Adherens from 67699 -> 73569","Type":"Adherens","Directional":false,"Links":[{"SourceID":67699,"TargetID":73569,"Directional":false}]},{"ID":1203,"SourceStructureID":593,"TargetStructureID":68550,"Label":"593-68550 via Unknown from 63046 -> 68551","Type":"Unknown","Directional":false,"Links":[{"SourceID":63046,"TargetID":68551,"Directional":false}]},{"ID":1204,"SourceStructureID":593,"TargetStructureID":68667,"Label":"593-68667 via Unknown from 86534 -> 86533","Type":"Unknown","Directional":false,"Links":[{"SourceID":86534,"TargetID":86533,"Directional":false}]},{"ID":1205,"SourceStructureID":69200,"TargetStructureID":593,"Label":"69200-593 via Unknown from 86557 -> 86556","Type":"Unknown","Directional":false,"Links":[{"SourceID":86557,"TargetID":86556,"Directional":false}]},{"ID":1206,"SourceStructureID":69382,"TargetStructureID":593,"Label":"69382-593 via Unknown from 85226 -> 85228","Type":"Unknown","Directional":false,"Links":[{"SourceID":85226,"TargetID":85228,"Directional":false}]},{"ID":1207,"SourceStructureID":83352,"TargetStructureID":593,"Label":"83352-593 via Unknown from 83353 -> 83354","Type":"Unknown","Directional":false,"Links":[{"SourceID":83353,"TargetID":83354,"Directional":false}]},{"ID":1208,"SourceStructureID":593,"TargetStructureID":83362,"Label":"593-83362 via Unknown from 83363 -> 83364","Type":"Unknown","Directional":false,"Links":[{"SourceID":83363,"TargetID":83364,"Directional":false}]},{"ID":1209,"SourceStructureID":83443,"TargetStructureID":593,"Label":"83443-593 via Adherens from 86378 -> 67236","Type":"Adherens","Directional":false,"Links":[{"SourceID":86378,"TargetID":67236,"Directional":false}]},{"ID":1210,"SourceStructureID":593,"TargetStructureID":83470,"Label":"593-83470 via Unknown from 83472 -> 83471","Type":"Unknown","Directional":false,"Links":[{"SourceID":83472,"TargetID":83471,"Directional":false}]},{"ID":1211,"SourceStructureID":593,"TargetStructureID":83476,"Label":"593-83476 via Unknown from 83479 -> 83480","Type":"Unknown","Directional":false,"Links":[{"SourceID":83479,"TargetID":83480,"Directional":false}]},{"ID":1212,"SourceStructureID":593,"TargetStructureID":83547,"Label":"593-83547 via Unknown from 83548 -> 83549","Type":"Unknown","Directional":false,"Links":[{"SourceID":83548,"TargetID":83549,"Directional":false}]},{"ID":1213,"SourceStructureID":84127,"TargetStructureID":593,"Label":"84127-593 via Unknown from 84584 -> 84583","Type":"Unknown","Directional":false,"Links":[{"SourceID":84584,"TargetID":84583,"Directional":false}]},{"ID":1214,"SourceStructureID":84260,"TargetStructureID":593,"Label":"84260-593 via Unknown from 84264 -> 52746","Type":"Unknown","Directional":false,"Links":[{"SourceID":84264,"TargetID":52746,"Directional":false}]},{"ID":1215,"SourceStructureID":84301,"TargetStructureID":593,"Label":"84301-593 via Adherens from 84302 -> 84303","Type":"Adherens","Directional":false,"Links":[{"SourceID":84302,"TargetID":84303,"Directional":false}]},{"ID":1216,"SourceStructureID":593,"TargetStructureID":84335,"Label":"593-84335 via Unknown from 84334 -> 84338","Type":"Unknown","Directional":false,"Links":[{"SourceID":84334,"TargetID":84338,"Directional":false}]},{"ID":1217,"SourceStructureID":593,"TargetStructureID":84579,"Label":"593-84579 via Unknown from 84578 -> 84580","Type":"Unknown","Directional":false,"Links":[{"SourceID":84578,"TargetID":84580,"Directional":false}]},{"ID":1218,"SourceStructureID":593,"TargetStructureID":84587,"Label":"593-84587 via Unknown from 84588 -> 84589","Type":"Unknown","Directional":false,"Links":[{"SourceID":84588,"TargetID":84589,"Directional":false}]},{"ID":1219,"SourceStructureID":593,"TargetStructureID":84624,"Label":"593-84624 via Unknown from 84626 -> 84627","Type":"Unknown","Directional":false,"Links":[{"SourceID":84626,"TargetID":84627,"Directional":false}]},{"ID":1220,"SourceStructureID":593,"TargetStructureID":85210,"Label":"593-85210 via Unknown from 85209 -> 85218","Type":"Unknown","Directional":false,"Links":[{"SourceID":85209,"TargetID":85218,"Directional":false}]},{"ID":1221,"SourceStructureID":85359,"TargetStructureID":593,"Label":"85359-593 via Unknown from 85360 -> 85361","Type":"Unknown","Directional":false,"Links":[{"SourceID":85360,"TargetID":85361,"Directional":false}]},{"ID":1222,"SourceStructureID":85501,"TargetStructureID":593,"Label":"85501-593 via Unknown from 85502 -> 85503","Type":"Unknown","Directional":false,"Links":[{"SourceID":85502,"TargetID":85503,"Directional":false}]},{"ID":1223,"SourceStructureID":85510,"TargetStructureID":593,"Label":"85510-593 via Unknown from 85532 -> 85531","Type":"Unknown","Directional":false,"Links":[{"SourceID":85532,"TargetID":85531,"Directional":false}]},{"ID":1224,"SourceStructureID":85565,"TargetStructureID":593,"Label":"85565-593 via Unknown from 85567 -> 85568","Type":"Unknown","Directional":false,"Links":[{"SourceID":85567,"TargetID":85568,"Directional":false}]},{"ID":1225,"SourceStructureID":593,"TargetStructureID":85571,"Label":"593-85571 via Adherens from 85573 -> 85574","Type":"Adherens","Directional":false,"Links":[{"SourceID":85573,"TargetID":85574,"Directional":false}]},{"ID":1226,"SourceStructureID":593,"TargetStructureID":86535,"Label":"593-86535 via Unknown from 86536 -> 86537","Type":"Unknown","Directional":false,"Links":[{"SourceID":86536,"TargetID":86537,"Directional":false}]},{"ID":1227,"SourceStructureID":86538,"TargetStructureID":593,"Label":"86538-593 via Unknown from 86542 -> 86543","Type":"Unknown","Directional":false,"Links":[{"SourceID":86542,"TargetID":86543,"Directional":false}]},{"ID":1228,"SourceStructureID":86539,"TargetStructureID":593,"Label":"86539-593 via Unknown from 86540 -> 86541","Type":"Unknown","Directional":false,"Links":[{"SourceID":86540,"TargetID":86541,"Directional":false}]},{"ID":1229,"SourceStructureID":86736,"TargetStructureID":593,"Label":"86736-593 via Adherens from 86737 -> 86735","Type":"Adherens","Directional":false,"Links":[{"SourceID":86737,"TargetID":86735,"Directional":false}]},{"ID":1230,"SourceStructureID":593,"TargetStructureID":86744,"Label":"593-86744 via Unknown from 86746 -> 86745","Type":"Unknown","Directional":false,"Links":[{"SourceID":86746,"TargetID":86745,"Directional":false}]},{"ID":1231,"SourceStructureID":86757,"TargetStructureID":593,"Label":"86757-593 via Unknown from 86758 -> 86759","Type":"Unknown","Directional":false,"Links":[{"SourceID":86758,"TargetID":86759,"Directional":false}]},{"ID":1232,"SourceStructureID":87217,"TargetStructureID":593,"Label":"87217-593 via Unknown from 87218 -> 87219","Type":"Unknown","Directional":false,"Links":[{"SourceID":87218,"TargetID":87219,"Directional":false}]},{"ID":1233,"SourceStructureID":87274,"TargetStructureID":593,"Label":"87274-593 via Unknown from 87276 -> 87275","Type":"Unknown","Directional":false,"Links":[{"SourceID":87276,"TargetID":87275,"Directional":false}]},{"ID":1234,"SourceStructureID":593,"TargetStructureID":115992,"Label":"593-115992 via Unknown from 120240 -> 120241","Type":"Unknown","Directional":false,"Links":[{"SourceID":120240,"TargetID":120241,"Directional":false}]},{"ID":1235,"SourceStructureID":595,"TargetStructureID":595,"Label":"595-595 via Adherens from 91257 -> 91258, 92829 -> 92830","Type":"Adherens","Directional":false,"Links":[{"SourceID":91257,"TargetID":91258,"Directional":false},{"SourceID":92829,"TargetID":92830,"Directional":false}]},{"ID":1236,"SourceStructureID":595,"TargetStructureID":595,"Label":"595-595 via Gap Junction from 125576 -> 125577, 135531 -> 135530","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125576,"TargetID":125577,"Directional":false},{"SourceID":135531,"TargetID":135530,"Directional":false}]},{"ID":1237,"SourceStructureID":606,"TargetStructureID":595,"Label":"606-595 via Unknown from 125096 -> 125095","Type":"Unknown","Directional":false,"Links":[{"SourceID":125096,"TargetID":125095,"Directional":false}]},{"ID":1238,"SourceStructureID":5528,"TargetStructureID":595,"Label":"5528-595 via Adherens from 8283 -> 8282, 91360 -> 91359, 135741 -> 135740, 135743 -> 135744, 135745 -> 135746","Type":"Adherens","Directional":false,"Links":[{"SourceID":8283,"TargetID":8282,"Directional":false},{"SourceID":91360,"TargetID":91359,"Directional":false},{"SourceID":135741,"TargetID":135740,"Directional":false},{"SourceID":135743,"TargetID":135744,"Directional":false},{"SourceID":135745,"TargetID":135746,"Directional":false}]},{"ID":1239,"SourceStructureID":595,"TargetStructureID":5528,"Label":"595-5528 via Gap Junction from 46704 -> 55016, 54872 -> 54643, 91273 -> 91272, 91361 -> 91362, 91375 -> 91520, 94739 -> 94740, 113993 -> 113992, 133948 -> 133949, 135713 -> 135712","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46704,"TargetID":55016,"Directional":false},{"SourceID":54872,"TargetID":54643,"Directional":false},{"SourceID":91273,"TargetID":91272,"Directional":false},{"SourceID":91361,"TargetID":91362,"Directional":false},{"SourceID":91375,"TargetID":91520,"Directional":false},{"SourceID":94739,"TargetID":94740,"Directional":false},{"SourceID":113993,"TargetID":113992,"Directional":false},{"SourceID":133948,"TargetID":133949,"Directional":false},{"SourceID":135713,"TargetID":135712,"Directional":false}]},{"ID":1240,"SourceStructureID":5530,"TargetStructureID":595,"Label":"5530-595 via Adherens from 74852 -> 74853, 75907 -> 75906, 80469 -> 80470, 80621 -> 80620, 81025 -> 81024, 81032 -> 81031, 82340 -> 82341, 125900 -> 125899, 135554 -> 135553, 135560 -> 135559, 135593 -> 135594","Type":"Adherens","Directional":false,"Links":[{"SourceID":74852,"TargetID":74853,"Directional":false},{"SourceID":75907,"TargetID":75906,"Directional":false},{"SourceID":80469,"TargetID":80470,"Directional":false},{"SourceID":80621,"TargetID":80620,"Directional":false},{"SourceID":81025,"TargetID":81024,"Directional":false},{"SourceID":81032,"TargetID":81031,"Directional":false},{"SourceID":82340,"TargetID":82341,"Directional":false},{"SourceID":125900,"TargetID":125899,"Directional":false},{"SourceID":135554,"TargetID":135553,"Directional":false},{"SourceID":135560,"TargetID":135559,"Directional":false},{"SourceID":135593,"TargetID":135594,"Directional":false}]},{"ID":1241,"SourceStructureID":595,"TargetStructureID":5530,"Label":"595-5530 via Gap Junction from 40652 -> 40551, 46668 -> 46667, 47212 -> 47211, 74746 -> 74747, 75038 -> 75036, 76835 -> 76834, 80239 -> 80238, 80619 -> 80618, 81023 -> 81021, 81029 -> 81030, 82339 -> 75412, 125890 -> 125889, 128283 -> 128282, 133932 -> 133931, 133934 -> 133933, 133936 -> 133935, 133937 -> 133938, 133943 -> 133944, 133951 -> 133950, 133953 -> 133952, 133954 -> 133955, 133957 -> 133956, 133959 -> 133958, 133961 -> 133960, 133963 -> 133962, 133965 -> 133964, 135723 -> 135722","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40652,"TargetID":40551,"Directional":false},{"SourceID":46668,"TargetID":46667,"Directional":false},{"SourceID":47212,"TargetID":47211,"Directional":false},{"SourceID":74746,"TargetID":74747,"Directional":false},{"SourceID":75038,"TargetID":75036,"Directional":false},{"SourceID":76835,"TargetID":76834,"Directional":false},{"SourceID":80239,"TargetID":80238,"Directional":false},{"SourceID":80619,"TargetID":80618,"Directional":false},{"SourceID":81023,"TargetID":81021,"Directional":false},{"SourceID":81029,"TargetID":81030,"Directional":false},{"SourceID":82339,"TargetID":75412,"Directional":false},{"SourceID":125890,"TargetID":125889,"Directional":false},{"SourceID":128283,"TargetID":128282,"Directional":false},{"SourceID":133932,"TargetID":133931,"Directional":false},{"SourceID":133934,"TargetID":133933,"Directional":false},{"SourceID":133936,"TargetID":133935,"Directional":false},{"SourceID":133937,"TargetID":133938,"Directional":false},{"SourceID":133943,"TargetID":133944,"Directional":false},{"SourceID":133951,"TargetID":133950,"Directional":false},{"SourceID":133953,"TargetID":133952,"Directional":false},{"SourceID":133954,"TargetID":133955,"Directional":false},{"SourceID":133957,"TargetID":133956,"Directional":false},{"SourceID":133959,"TargetID":133958,"Directional":false},{"SourceID":133961,"TargetID":133960,"Directional":false},{"SourceID":133963,"TargetID":133962,"Directional":false},{"SourceID":133965,"TargetID":133964,"Directional":false},{"SourceID":135723,"TargetID":135722,"Directional":false}]},{"ID":1242,"SourceStructureID":5531,"TargetStructureID":595,"Label":"5531-595 via Gap Junction from 91490 -> 91489","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91490,"TargetID":91489,"Directional":false}]},{"ID":1243,"SourceStructureID":6117,"TargetStructureID":595,"Label":"6117-595 via Adherens from 86348 -> 47258","Type":"Adherens","Directional":false,"Links":[{"SourceID":86348,"TargetID":47258,"Directional":false}]},{"ID":1244,"SourceStructureID":6117,"TargetStructureID":595,"Label":"6117-595 via Gap Junction from 86347 -> 47259","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":86347,"TargetID":47259,"Directional":false}]},{"ID":1245,"SourceStructureID":6129,"TargetStructureID":595,"Label":"6129-595 via Adherens from 125180 -> 125179","Type":"Adherens","Directional":false,"Links":[{"SourceID":125180,"TargetID":125179,"Directional":false}]},{"ID":1246,"SourceStructureID":7576,"TargetStructureID":595,"Label":"7576-595 via Adherens from 91399 -> 91398, 125164 -> 125163, 135728 -> 135729","Type":"Adherens","Directional":false,"Links":[{"SourceID":91399,"TargetID":91398,"Directional":false},{"SourceID":125164,"TargetID":125163,"Directional":false},{"SourceID":135728,"TargetID":135729,"Directional":false}]},{"ID":1247,"SourceStructureID":595,"TargetStructureID":7576,"Label":"595-7576 via Gap Junction from 54868 -> 54869, 54883 -> 54884, 55020 -> 55019, 133946 -> 133945, 135727 -> 135726","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54868,"TargetID":54869,"Directional":false},{"SourceID":54883,"TargetID":54884,"Directional":false},{"SourceID":55020,"TargetID":55019,"Directional":false},{"SourceID":133946,"TargetID":133945,"Directional":false},{"SourceID":135727,"TargetID":135726,"Directional":false}]},{"ID":1248,"SourceStructureID":9769,"TargetStructureID":595,"Label":"9769-595 via Unknown from 135558 -> 135557","Type":"Unknown","Directional":false,"Links":[{"SourceID":135558,"TargetID":135557,"Directional":false}]},{"ID":1249,"SourceStructureID":15796,"TargetStructureID":595,"Label":"15796-595 via Unknown from 91407 -> 91408","Type":"Unknown","Directional":false,"Links":[{"SourceID":91407,"TargetID":91408,"Directional":false}]},{"ID":1250,"SourceStructureID":21299,"TargetStructureID":595,"Label":"21299-595 via Gap Junction from 91650 -> 91649","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91650,"TargetID":91649,"Directional":false}]},{"ID":1251,"SourceStructureID":595,"TargetStructureID":51617,"Label":"595-51617 via Unknown from 125306 -> 125307","Type":"Unknown","Directional":false,"Links":[{"SourceID":125306,"TargetID":125307,"Directional":false}]},{"ID":1252,"SourceStructureID":90061,"TargetStructureID":595,"Label":"90061-595 via Adherens from 135591 -> 135592","Type":"Adherens","Directional":false,"Links":[{"SourceID":135591,"TargetID":135592,"Directional":false}]},{"ID":1253,"SourceStructureID":90891,"TargetStructureID":595,"Label":"90891-595 via Unknown from 90892 -> 90893","Type":"Unknown","Directional":false,"Links":[{"SourceID":90892,"TargetID":90893,"Directional":false}]},{"ID":1254,"SourceStructureID":90905,"TargetStructureID":595,"Label":"90905-595 via Unknown from 90907 -> 90908","Type":"Unknown","Directional":false,"Links":[{"SourceID":90907,"TargetID":90908,"Directional":false}]},{"ID":1255,"SourceStructureID":90917,"TargetStructureID":595,"Label":"90917-595 via Adherens from 91127 -> 91126","Type":"Adherens","Directional":false,"Links":[{"SourceID":91127,"TargetID":91126,"Directional":false}]},{"ID":1256,"SourceStructureID":90917,"TargetStructureID":595,"Label":"90917-595 via Gap Junction from 91124 -> 91125","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91124,"TargetID":91125,"Directional":false}]},{"ID":1257,"SourceStructureID":91132,"TargetStructureID":595,"Label":"91132-595 via Unknown from 91134 -> 91133","Type":"Unknown","Directional":false,"Links":[{"SourceID":91134,"TargetID":91133,"Directional":false}]},{"ID":1258,"SourceStructureID":595,"TargetStructureID":91138,"Label":"595-91138 via Adherens from 135735 -> 135736","Type":"Adherens","Directional":false,"Links":[{"SourceID":135735,"TargetID":135736,"Directional":false}]},{"ID":1259,"SourceStructureID":595,"TargetStructureID":91138,"Label":"595-91138 via Gap Junction from 91139 -> 91140","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91139,"TargetID":91140,"Directional":false}]},{"ID":1260,"SourceStructureID":595,"TargetStructureID":91156,"Label":"595-91156 via Unknown from 91157 -> 91158","Type":"Unknown","Directional":false,"Links":[{"SourceID":91157,"TargetID":91158,"Directional":false}]},{"ID":1261,"SourceStructureID":91178,"TargetStructureID":595,"Label":"91178-595 via Adherens from 135525 -> 135526","Type":"Adherens","Directional":false,"Links":[{"SourceID":135525,"TargetID":135526,"Directional":false}]},{"ID":1262,"SourceStructureID":595,"TargetStructureID":91178,"Label":"595-91178 via Gap Junction from 46644 -> 91179, 135527 -> 135528","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46644,"TargetID":91179,"Directional":false},{"SourceID":135527,"TargetID":135528,"Directional":false}]},{"ID":1263,"SourceStructureID":91188,"TargetStructureID":595,"Label":"91188-595 via Unknown from 91189 -> 91190","Type":"Unknown","Directional":false,"Links":[{"SourceID":91189,"TargetID":91190,"Directional":false}]},{"ID":1264,"SourceStructureID":91191,"TargetStructureID":595,"Label":"91191-595 via Gap Junction from 91193 -> 91192","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91193,"TargetID":91192,"Directional":false}]},{"ID":1265,"SourceStructureID":595,"TargetStructureID":91232,"Label":"595-91232 via Unknown from 91234 -> 91233, 92604 -> 92603","Type":"Unknown","Directional":false,"Links":[{"SourceID":91234,"TargetID":91233,"Directional":false},{"SourceID":92604,"TargetID":92603,"Directional":false}]},{"ID":1266,"SourceStructureID":91376,"TargetStructureID":595,"Label":"91376-595 via Unknown from 91377 -> 91378","Type":"Unknown","Directional":false,"Links":[{"SourceID":91377,"TargetID":91378,"Directional":false}]},{"ID":1267,"SourceStructureID":91414,"TargetStructureID":595,"Label":"91414-595 via Unknown from 91416 -> 91415","Type":"Unknown","Directional":false,"Links":[{"SourceID":91416,"TargetID":91415,"Directional":false}]},{"ID":1268,"SourceStructureID":91497,"TargetStructureID":595,"Label":"91497-595 via Unknown from 91498 -> 91499","Type":"Unknown","Directional":false,"Links":[{"SourceID":91498,"TargetID":91499,"Directional":false}]},{"ID":1269,"SourceStructureID":595,"TargetStructureID":91521,"Label":"595-91521 via Gap Junction from 91522 -> 91523","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91522,"TargetID":91523,"Directional":false}]},{"ID":1270,"SourceStructureID":96290,"TargetStructureID":595,"Label":"96290-595 via Unknown from 147408 -> 147407","Type":"Unknown","Directional":false,"Links":[{"SourceID":147408,"TargetID":147407,"Directional":false}]},{"ID":1271,"SourceStructureID":106778,"TargetStructureID":595,"Label":"106778-595 via Unknown from 125072 -> 125071","Type":"Unknown","Directional":false,"Links":[{"SourceID":125072,"TargetID":125071,"Directional":false}]},{"ID":1272,"SourceStructureID":598,"TargetStructureID":606,"Label":"598-606 via Adherens from 131144 -> 131143","Type":"Adherens","Directional":false,"Links":[{"SourceID":131144,"TargetID":131143,"Directional":false}]},{"ID":1273,"SourceStructureID":598,"TargetStructureID":606,"Label":"598-606 via Gap Junction from 50909 -> 50908","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50909,"TargetID":50908,"Directional":false}]},{"ID":1274,"SourceStructureID":598,"TargetStructureID":5396,"Label":"598-5396 via Adherens from 89483 -> 89482","Type":"Adherens","Directional":false,"Links":[{"SourceID":89483,"TargetID":89482,"Directional":false}]},{"ID":1275,"SourceStructureID":606,"TargetStructureID":5292,"Label":"606-5292 via Adherens from 51389 -> 51390","Type":"Adherens","Directional":false,"Links":[{"SourceID":51389,"TargetID":51390,"Directional":false}]},{"ID":1276,"SourceStructureID":5442,"TargetStructureID":606,"Label":"5442-606 via Adherens from 55117 -> 55116, 73982 -> 73983","Type":"Adherens","Directional":false,"Links":[{"SourceID":55117,"TargetID":55116,"Directional":false},{"SourceID":73982,"TargetID":73983,"Directional":false}]},{"ID":1277,"SourceStructureID":606,"TargetStructureID":5442,"Label":"606-5442 via Gap Junction from 48006 -> 55113, 48007 -> 55114, 48098 -> 55126","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48006,"TargetID":55113,"Directional":false},{"SourceID":48007,"TargetID":55114,"Directional":false},{"SourceID":48098,"TargetID":55126,"Directional":false}]},{"ID":1278,"SourceStructureID":5450,"TargetStructureID":606,"Label":"5450-606 via Adherens from 53877 -> 53876","Type":"Adherens","Directional":false,"Links":[{"SourceID":53877,"TargetID":53876,"Directional":false}]},{"ID":1279,"SourceStructureID":5451,"TargetStructureID":606,"Label":"5451-606 via Adherens from 54332 -> 54331, 88729 -> 88728","Type":"Adherens","Directional":false,"Links":[{"SourceID":54332,"TargetID":54331,"Directional":false},{"SourceID":88729,"TargetID":88728,"Directional":false}]},{"ID":1280,"SourceStructureID":606,"TargetStructureID":5451,"Label":"606-5451 via Gap Junction from 44310 -> 44312, 44956 -> 44960, 45214 -> 55152, 54319 -> 54318, 54329 -> 49808, 55173 -> 49621","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44310,"TargetID":44312,"Directional":false},{"SourceID":44956,"TargetID":44960,"Directional":false},{"SourceID":45214,"TargetID":55152,"Directional":false},{"SourceID":54319,"TargetID":54318,"Directional":false},{"SourceID":54329,"TargetID":49808,"Directional":false},{"SourceID":55173,"TargetID":49621,"Directional":false}]},{"ID":1281,"SourceStructureID":606,"TargetStructureID":5468,"Label":"606-5468 via Adherens from 51772 -> 51773, 51848 -> 51847","Type":"Adherens","Directional":false,"Links":[{"SourceID":51772,"TargetID":51773,"Directional":false},{"SourceID":51848,"TargetID":51847,"Directional":false}]},{"ID":1282,"SourceStructureID":606,"TargetStructureID":5481,"Label":"606-5481 via Adherens from 53380 -> 53381, 53419 -> 53420","Type":"Adherens","Directional":false,"Links":[{"SourceID":53380,"TargetID":53381,"Directional":false},{"SourceID":53419,"TargetID":53420,"Directional":false}]},{"ID":1283,"SourceStructureID":606,"TargetStructureID":5481,"Label":"606-5481 via Gap Junction from 52403 -> 52516, 52404 -> 52518, 52527 -> 52528, 53064 -> 90173, 53360 -> 53359, 53365 -> 53364, 53371 -> 53372","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52403,"TargetID":52516,"Directional":false},{"SourceID":52404,"TargetID":52518,"Directional":false},{"SourceID":52527,"TargetID":52528,"Directional":false},{"SourceID":53064,"TargetID":90173,"Directional":false},{"SourceID":53360,"TargetID":53359,"Directional":false},{"SourceID":53365,"TargetID":53364,"Directional":false},{"SourceID":53371,"TargetID":53372,"Directional":false}]},{"ID":1284,"SourceStructureID":5530,"TargetStructureID":606,"Label":"5530-606 via Adherens from 52525 -> 52524, 52529 -> 52531, 53483 -> 53482, 53525 -> 53524, 53526 -> 53527, 54030 -> 54031, 54048 -> 54049, 54050 -> 54051","Type":"Adherens","Directional":false,"Links":[{"SourceID":52525,"TargetID":52524,"Directional":false},{"SourceID":52529,"TargetID":52531,"Directional":false},{"SourceID":53483,"TargetID":53482,"Directional":false},{"SourceID":53525,"TargetID":53524,"Directional":false},{"SourceID":53526,"TargetID":53527,"Directional":false},{"SourceID":54030,"TargetID":54031,"Directional":false},{"SourceID":54048,"TargetID":54049,"Directional":false},{"SourceID":54050,"TargetID":54051,"Directional":false}]},{"ID":1285,"SourceStructureID":606,"TargetStructureID":5530,"Label":"606-5530 via Unknown from 82555 -> 80970, 82684 -> 77469, 82882 -> 81107, 82885 -> 81135, 125893 -> 125892","Type":"Unknown","Directional":false,"Links":[{"SourceID":82555,"TargetID":80970,"Directional":false},{"SourceID":82684,"TargetID":77469,"Directional":false},{"SourceID":82882,"TargetID":81107,"Directional":false},{"SourceID":82885,"TargetID":81135,"Directional":false},{"SourceID":125893,"TargetID":125892,"Directional":false}]},{"ID":1286,"SourceStructureID":606,"TargetStructureID":5541,"Label":"606-5541 via Adherens from 53711 -> 53712, 53713 -> 53714","Type":"Adherens","Directional":false,"Links":[{"SourceID":53711,"TargetID":53712,"Directional":false},{"SourceID":53713,"TargetID":53714,"Directional":false}]},{"ID":1287,"SourceStructureID":5601,"TargetStructureID":606,"Label":"5601-606 via Adherens from 54552 -> 54551, 54600 -> 54599","Type":"Adherens","Directional":false,"Links":[{"SourceID":54552,"TargetID":54551,"Directional":false},{"SourceID":54600,"TargetID":54599,"Directional":false}]},{"ID":1288,"SourceStructureID":606,"TargetStructureID":5601,"Label":"606-5601 via Unknown from 134827 -> 127147","Type":"Unknown","Directional":false,"Links":[{"SourceID":134827,"TargetID":127147,"Directional":false}]},{"ID":1289,"SourceStructureID":606,"TargetStructureID":5650,"Label":"606-5650 via Adherens from 51463 -> 51464","Type":"Adherens","Directional":false,"Links":[{"SourceID":51463,"TargetID":51464,"Directional":false}]},{"ID":1290,"SourceStructureID":606,"TargetStructureID":5729,"Label":"606-5729 via Adherens from 47225 -> 47230","Type":"Adherens","Directional":false,"Links":[{"SourceID":47225,"TargetID":47230,"Directional":false}]},{"ID":1291,"SourceStructureID":606,"TargetStructureID":5729,"Label":"606-5729 via Unknown from 111447 -> 111446","Type":"Unknown","Directional":false,"Links":[{"SourceID":111447,"TargetID":111446,"Directional":false}]},{"ID":1292,"SourceStructureID":606,"TargetStructureID":6117,"Label":"606-6117 via Adherens from 12320 -> 86263, 51203 -> 51204, 51295 -> 51294","Type":"Adherens","Directional":false,"Links":[{"SourceID":12320,"TargetID":86263,"Directional":false},{"SourceID":51203,"TargetID":51204,"Directional":false},{"SourceID":51295,"TargetID":51294,"Directional":false}]},{"ID":1293,"SourceStructureID":606,"TargetStructureID":6117,"Label":"606-6117 via Unknown from 84161 -> 84160","Type":"Unknown","Directional":false,"Links":[{"SourceID":84161,"TargetID":84160,"Directional":false}]},{"ID":1294,"SourceStructureID":6120,"TargetStructureID":606,"Label":"6120-606 via Adherens from 51498 -> 51499, 51509 -> 51508","Type":"Adherens","Directional":false,"Links":[{"SourceID":51498,"TargetID":51499,"Directional":false},{"SourceID":51509,"TargetID":51508,"Directional":false}]},{"ID":1295,"SourceStructureID":6204,"TargetStructureID":606,"Label":"6204-606 via Adherens from 51975 -> 51976","Type":"Adherens","Directional":false,"Links":[{"SourceID":51975,"TargetID":51976,"Directional":false}]},{"ID":1296,"SourceStructureID":606,"TargetStructureID":7024,"Label":"606-7024 via Adherens from 47474 -> 47473","Type":"Adherens","Directional":false,"Links":[{"SourceID":47474,"TargetID":47473,"Directional":false}]},{"ID":1297,"SourceStructureID":606,"TargetStructureID":7576,"Label":"606-7576 via Adherens from 54840 -> 54841","Type":"Adherens","Directional":false,"Links":[{"SourceID":54840,"TargetID":54841,"Directional":false}]},{"ID":1298,"SourceStructureID":7594,"TargetStructureID":606,"Label":"7594-606 via Adherens from 47611 -> 47612, 51097 -> 51098, 51421 -> 51422, 51745 -> 51746, 51800 -> 51799, 52500 -> 52501, 53560 -> 53548, 54445 -> 54446","Type":"Adherens","Directional":false,"Links":[{"SourceID":47611,"TargetID":47612,"Directional":false},{"SourceID":51097,"TargetID":51098,"Directional":false},{"SourceID":51421,"TargetID":51422,"Directional":false},{"SourceID":51745,"TargetID":51746,"Directional":false},{"SourceID":51800,"TargetID":51799,"Directional":false},{"SourceID":52500,"TargetID":52501,"Directional":false},{"SourceID":53560,"TargetID":53548,"Directional":false},{"SourceID":54445,"TargetID":54446,"Directional":false}]},{"ID":1299,"SourceStructureID":9769,"TargetStructureID":606,"Label":"9769-606 via Adherens from 12397 -> 12398, 48505 -> 48506, 49123 -> 49124, 51235 -> 51236, 51303 -> 51302, 51307 -> 51306, 51432 -> 51433, 51785 -> 51786, 53047 -> 53046, 53048 -> 53045, 53049 -> 53044, 53059 -> 53060, 53076 -> 53075, 53079 -> 53078, 53088 -> 53089","Type":"Adherens","Directional":false,"Links":[{"SourceID":12397,"TargetID":12398,"Directional":false},{"SourceID":48505,"TargetID":48506,"Directional":false},{"SourceID":49123,"TargetID":49124,"Directional":false},{"SourceID":51235,"TargetID":51236,"Directional":false},{"SourceID":51303,"TargetID":51302,"Directional":false},{"SourceID":51307,"TargetID":51306,"Directional":false},{"SourceID":51432,"TargetID":51433,"Directional":false},{"SourceID":51785,"TargetID":51786,"Directional":false},{"SourceID":53047,"TargetID":53046,"Directional":false},{"SourceID":53048,"TargetID":53045,"Directional":false},{"SourceID":53049,"TargetID":53044,"Directional":false},{"SourceID":53059,"TargetID":53060,"Directional":false},{"SourceID":53076,"TargetID":53075,"Directional":false},{"SourceID":53079,"TargetID":53078,"Directional":false},{"SourceID":53088,"TargetID":53089,"Directional":false}]},{"ID":1300,"SourceStructureID":9769,"TargetStructureID":606,"Label":"9769-606 via Gap Junction from 12396 -> 12348, 12399 -> 12323, 44269 -> 44268, 45318 -> 45316, 48503 -> 48504, 49118 -> 49119, 49183 -> 49182, 50695 -> 50694, 50919 -> 50971, 51312 -> 51313, 51330 -> 51329, 51425 -> 51426, 51474 -> 51473, 51487 -> 51488, 51489 -> 51490, 51588 -> 51589, 51595 -> 51594, 51596 -> 51597, 51788 -> 51789, 51792 -> 89637, 51863 -> 51864, 52393 -> 52394, 52759 -> 49023, 52886 -> 56077, 53004 -> 49179, 53051 -> 53050, 53073 -> 53074, 53511 -> 53510, 53533 -> 53530, 53932 -> 53933, 54489 -> 54490","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12396,"TargetID":12348,"Directional":false},{"SourceID":12399,"TargetID":12323,"Directional":false},{"SourceID":44269,"TargetID":44268,"Directional":false},{"SourceID":45318,"TargetID":45316,"Directional":false},{"SourceID":48503,"TargetID":48504,"Directional":false},{"SourceID":49118,"TargetID":49119,"Directional":false},{"SourceID":49183,"TargetID":49182,"Directional":false},{"SourceID":50695,"TargetID":50694,"Directional":false},{"SourceID":50919,"TargetID":50971,"Directional":false},{"SourceID":51312,"TargetID":51313,"Directional":false},{"SourceID":51330,"TargetID":51329,"Directional":false},{"SourceID":51425,"TargetID":51426,"Directional":false},{"SourceID":51474,"TargetID":51473,"Directional":false},{"SourceID":51487,"TargetID":51488,"Directional":false},{"SourceID":51489,"TargetID":51490,"Directional":false},{"SourceID":51588,"TargetID":51589,"Directional":false},{"SourceID":51595,"TargetID":51594,"Directional":false},{"SourceID":51596,"TargetID":51597,"Directional":false},{"SourceID":51788,"TargetID":51789,"Directional":false},{"SourceID":51792,"TargetID":89637,"Directional":false},{"SourceID":51863,"TargetID":51864,"Directional":false},{"SourceID":52393,"TargetID":52394,"Directional":false},{"SourceID":52759,"TargetID":49023,"Directional":false},{"SourceID":52886,"TargetID":56077,"Directional":false},{"SourceID":53004,"TargetID":49179,"Directional":false},{"SourceID":53051,"TargetID":53050,"Directional":false},{"SourceID":53073,"TargetID":53074,"Directional":false},{"SourceID":53511,"TargetID":53510,"Directional":false},{"SourceID":53533,"TargetID":53530,"Directional":false},{"SourceID":53932,"TargetID":53933,"Directional":false},{"SourceID":54489,"TargetID":54490,"Directional":false}]},{"ID":1301,"SourceStructureID":10559,"TargetStructureID":606,"Label":"10559-606 via Adherens from 54370 -> 54371","Type":"Adherens","Directional":false,"Links":[{"SourceID":54370,"TargetID":54371,"Directional":false}]},{"ID":1302,"SourceStructureID":10559,"TargetStructureID":606,"Label":"10559-606 via Gap Junction from 44315 -> 44313, 54278 -> 54281, 54383 -> 54384","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44315,"TargetID":44313,"Directional":false},{"SourceID":54278,"TargetID":54281,"Directional":false},{"SourceID":54383,"TargetID":54384,"Directional":false}]},{"ID":1303,"SourceStructureID":606,"TargetStructureID":12408,"Label":"606-12408 via Adherens from 52813 -> 52814, 52816 -> 52815","Type":"Adherens","Directional":false,"Links":[{"SourceID":52813,"TargetID":52814,"Directional":false},{"SourceID":52816,"TargetID":52815,"Directional":false}]},{"ID":1304,"SourceStructureID":606,"TargetStructureID":12564,"Label":"606-12564 via Gap Junction from 49606 -> 88665, 50892 -> 53254, 53247 -> 53213","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49606,"TargetID":88665,"Directional":false},{"SourceID":50892,"TargetID":53254,"Directional":false},{"SourceID":53247,"TargetID":53213,"Directional":false}]},{"ID":1305,"SourceStructureID":22974,"TargetStructureID":606,"Label":"22974-606 via Adherens from 51478 -> 51477","Type":"Adherens","Directional":false,"Links":[{"SourceID":51478,"TargetID":51477,"Directional":false}]},{"ID":1306,"SourceStructureID":30130,"TargetStructureID":606,"Label":"30130-606 via Adherens from 52209 -> 52208","Type":"Adherens","Directional":false,"Links":[{"SourceID":52209,"TargetID":52208,"Directional":false}]},{"ID":1307,"SourceStructureID":606,"TargetStructureID":34302,"Label":"606-34302 via Adherens from 52607 -> 52608","Type":"Adherens","Directional":false,"Links":[{"SourceID":52607,"TargetID":52608,"Directional":false}]},{"ID":1308,"SourceStructureID":34315,"TargetStructureID":606,"Label":"34315-606 via Adherens from 52381 -> 52380","Type":"Adherens","Directional":false,"Links":[{"SourceID":52381,"TargetID":52380,"Directional":false}]},{"ID":1309,"SourceStructureID":38632,"TargetStructureID":606,"Label":"38632-606 via Adherens from 52620 -> 52619, 53119 -> 53118, 90534 -> 90533","Type":"Adherens","Directional":false,"Links":[{"SourceID":52620,"TargetID":52619,"Directional":false},{"SourceID":53119,"TargetID":53118,"Directional":false},{"SourceID":90534,"TargetID":90533,"Directional":false}]},{"ID":1310,"SourceStructureID":606,"TargetStructureID":38632,"Label":"606-38632 via Gap Junction from 53112 -> 53111","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53112,"TargetID":53111,"Directional":false}]},{"ID":1311,"SourceStructureID":606,"TargetStructureID":39900,"Label":"606-39900 via Adherens from 54144 -> 54145","Type":"Adherens","Directional":false,"Links":[{"SourceID":54144,"TargetID":54145,"Directional":false}]},{"ID":1312,"SourceStructureID":606,"TargetStructureID":40051,"Label":"606-40051 via Adherens from 128560 -> 128561","Type":"Adherens","Directional":false,"Links":[{"SourceID":128560,"TargetID":128561,"Directional":false}]},{"ID":1313,"SourceStructureID":40057,"TargetStructureID":606,"Label":"40057-606 via Adherens from 45485 -> 45484","Type":"Adherens","Directional":false,"Links":[{"SourceID":45485,"TargetID":45484,"Directional":false}]},{"ID":1314,"SourceStructureID":44222,"TargetStructureID":606,"Label":"44222-606 via Adherens from 44226 -> 45016, 53921 -> 53922","Type":"Adherens","Directional":false,"Links":[{"SourceID":44226,"TargetID":45016,"Directional":false},{"SourceID":53921,"TargetID":53922,"Directional":false}]},{"ID":1315,"SourceStructureID":44222,"TargetStructureID":606,"Label":"44222-606 via Gap Junction from 44218 -> 44216, 44223 -> 44221, 44225 -> 44224","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44218,"TargetID":44216,"Directional":false},{"SourceID":44223,"TargetID":44221,"Directional":false},{"SourceID":44225,"TargetID":44224,"Directional":false}]},{"ID":1316,"SourceStructureID":606,"TargetStructureID":44329,"Label":"606-44329 via Adherens from 44327 -> 44331","Type":"Adherens","Directional":false,"Links":[{"SourceID":44327,"TargetID":44331,"Directional":false}]},{"ID":1317,"SourceStructureID":44329,"TargetStructureID":606,"Label":"44329-606 via Gap Junction from 44330 -> 44328","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44330,"TargetID":44328,"Directional":false}]},{"ID":1318,"SourceStructureID":44970,"TargetStructureID":606,"Label":"44970-606 via Gap Junction from 51174 -> 51175","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51174,"TargetID":51175,"Directional":false}]},{"ID":1319,"SourceStructureID":606,"TargetStructureID":45220,"Label":"606-45220 via Gap Junction from 49624 -> 54058, 52405 -> 52406, 54046 -> 54045, 55181 -> 54037","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49624,"TargetID":54058,"Directional":false},{"SourceID":52405,"TargetID":52406,"Directional":false},{"SourceID":54046,"TargetID":54045,"Directional":false},{"SourceID":55181,"TargetID":54037,"Directional":false}]},{"ID":1320,"SourceStructureID":45406,"TargetStructureID":606,"Label":"45406-606 via Gap Junction from 45407 -> 10516","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45407,"TargetID":10516,"Directional":false}]},{"ID":1321,"SourceStructureID":46105,"TargetStructureID":606,"Label":"46105-606 via Adherens from 46244 -> 46243","Type":"Adherens","Directional":false,"Links":[{"SourceID":46244,"TargetID":46243,"Directional":false}]},{"ID":1322,"SourceStructureID":606,"TargetStructureID":46589,"Label":"606-46589 via Gap Junction from 46586 -> 56003, 46591 -> 46584","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46586,"TargetID":56003,"Directional":false},{"SourceID":46591,"TargetID":46584,"Directional":false}]},{"ID":1323,"SourceStructureID":47013,"TargetStructureID":606,"Label":"47013-606 via Gap Junction from 88245 -> 47583","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88245,"TargetID":47583,"Directional":false}]},{"ID":1324,"SourceStructureID":606,"TargetStructureID":47445,"Label":"606-47445 via Adherens from 47452 -> 47453","Type":"Adherens","Directional":false,"Links":[{"SourceID":47452,"TargetID":47453,"Directional":false}]},{"ID":1325,"SourceStructureID":606,"TargetStructureID":51923,"Label":"606-51923 via Adherens from 51928 -> 51929","Type":"Adherens","Directional":false,"Links":[{"SourceID":51928,"TargetID":51929,"Directional":false}]},{"ID":1326,"SourceStructureID":606,"TargetStructureID":51923,"Label":"606-51923 via Gap Junction from 48296 -> 51924, 51932 -> 51931","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48296,"TargetID":51924,"Directional":false},{"SourceID":51932,"TargetID":51931,"Directional":false}]},{"ID":1327,"SourceStructureID":606,"TargetStructureID":53115,"Label":"606-53115 via Gap Junction from 53114 -> 53139, 53145 -> 53146, 90523 -> 53165","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53114,"TargetID":53139,"Directional":false},{"SourceID":53145,"TargetID":53146,"Directional":false},{"SourceID":90523,"TargetID":53165,"Directional":false}]},{"ID":1328,"SourceStructureID":606,"TargetStructureID":55098,"Label":"606-55098 via Gap Junction from 50907 -> 55099","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50907,"TargetID":55099,"Directional":false}]},{"ID":1329,"SourceStructureID":606,"TargetStructureID":55232,"Label":"606-55232 via Adherens from 47224 -> 55240, 55246 -> 55247","Type":"Adherens","Directional":false,"Links":[{"SourceID":47224,"TargetID":55240,"Directional":false},{"SourceID":55246,"TargetID":55247,"Directional":false}]},{"ID":1330,"SourceStructureID":606,"TargetStructureID":55232,"Label":"606-55232 via Gap Junction from 47213 -> 55233, 47219 -> 55236, 55251 -> 47234","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47213,"TargetID":55233,"Directional":false},{"SourceID":47219,"TargetID":55236,"Directional":false},{"SourceID":55251,"TargetID":47234,"Directional":false}]},{"ID":1331,"SourceStructureID":606,"TargetStructureID":55403,"Label":"606-55403 via Adherens from 53268 -> 55409, 53276 -> 55408","Type":"Adherens","Directional":false,"Links":[{"SourceID":53268,"TargetID":55409,"Directional":false},{"SourceID":53276,"TargetID":55408,"Directional":false}]},{"ID":1332,"SourceStructureID":606,"TargetStructureID":55403,"Label":"606-55403 via Gap Junction from 53273 -> 55404","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53273,"TargetID":55404,"Directional":false}]},{"ID":1333,"SourceStructureID":606,"TargetStructureID":55517,"Label":"606-55517 via Gap Junction from 53312 -> 55521, 55518 -> 53308","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53312,"TargetID":55521,"Directional":false},{"SourceID":55518,"TargetID":53308,"Directional":false}]},{"ID":1334,"SourceStructureID":55610,"TargetStructureID":606,"Label":"55610-606 via Gap Junction from 55614 -> 49676, 55615 -> 49675, 55616 -> 54164, 55867 -> 54170","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55614,"TargetID":49676,"Directional":false},{"SourceID":55615,"TargetID":49675,"Directional":false},{"SourceID":55616,"TargetID":54164,"Directional":false},{"SourceID":55867,"TargetID":54170,"Directional":false}]},{"ID":1335,"SourceStructureID":59471,"TargetStructureID":606,"Label":"59471-606 via Gap Junction from 89095 -> 51316","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89095,"TargetID":51316,"Directional":false}]},{"ID":1336,"SourceStructureID":59482,"TargetStructureID":606,"Label":"59482-606 via Gap Junction from 59485 -> 51385, 89116 -> 51380, 89117 -> 51381","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59485,"TargetID":51385,"Directional":false},{"SourceID":89116,"TargetID":51380,"Directional":false},{"SourceID":89117,"TargetID":51381,"Directional":false}]},{"ID":1337,"SourceStructureID":59499,"TargetStructureID":606,"Label":"59499-606 via Gap Junction from 59500 -> 53306, 90557 -> 53286","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59500,"TargetID":53306,"Directional":false},{"SourceID":90557,"TargetID":53286,"Directional":false}]},{"ID":1338,"SourceStructureID":606,"TargetStructureID":65358,"Label":"606-65358 via Adherens from 47477 -> 65361","Type":"Adherens","Directional":false,"Links":[{"SourceID":47477,"TargetID":65361,"Directional":false}]},{"ID":1339,"SourceStructureID":606,"TargetStructureID":66665,"Label":"606-66665 via Adherens from 53383 -> 66666","Type":"Adherens","Directional":false,"Links":[{"SourceID":53383,"TargetID":66666,"Directional":false}]},{"ID":1340,"SourceStructureID":606,"TargetStructureID":70454,"Label":"606-70454 via Gap Junction from 51539 -> 89552","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51539,"TargetID":89552,"Directional":false}]},{"ID":1341,"SourceStructureID":78909,"TargetStructureID":606,"Label":"78909-606 via Gap Junction from 87508 -> 47478","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87508,"TargetID":47478,"Directional":false}]},{"ID":1342,"SourceStructureID":80182,"TargetStructureID":606,"Label":"80182-606 via Gap Junction from 88940 -> 50900","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88940,"TargetID":50900,"Directional":false}]},{"ID":1343,"SourceStructureID":80600,"TargetStructureID":606,"Label":"80600-606 via Gap Junction from 89061 -> 51721","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89061,"TargetID":51721,"Directional":false}]},{"ID":1344,"SourceStructureID":82887,"TargetStructureID":606,"Label":"82887-606 via Gap Junction from 87133 -> 45165","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87133,"TargetID":45165,"Directional":false}]},{"ID":1345,"SourceStructureID":87130,"TargetStructureID":606,"Label":"87130-606 via Gap Junction from 87131 -> 10698","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87131,"TargetID":10698,"Directional":false}]},{"ID":1346,"SourceStructureID":87141,"TargetStructureID":606,"Label":"87141-606 via Gap Junction from 87142 -> 45500","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87142,"TargetID":45500,"Directional":false}]},{"ID":1347,"SourceStructureID":606,"TargetStructureID":87143,"Label":"606-87143 via Gap Junction from 45546 -> 87144","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45546,"TargetID":87144,"Directional":false}]},{"ID":1348,"SourceStructureID":87145,"TargetStructureID":606,"Label":"87145-606 via Gap Junction from 87146 -> 45592","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87146,"TargetID":45592,"Directional":false}]},{"ID":1349,"SourceStructureID":606,"TargetStructureID":87162,"Label":"606-87162 via Gap Junction from 45692 -> 87163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45692,"TargetID":87163,"Directional":false}]},{"ID":1350,"SourceStructureID":87172,"TargetStructureID":606,"Label":"87172-606 via Gap Junction from 87175 -> 45745","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87175,"TargetID":45745,"Directional":false}]},{"ID":1351,"SourceStructureID":87176,"TargetStructureID":606,"Label":"87176-606 via Gap Junction from 87177 -> 45746","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87177,"TargetID":45746,"Directional":false}]},{"ID":1352,"SourceStructureID":606,"TargetStructureID":87178,"Label":"606-87178 via Gap Junction from 46028 -> 87181, 87180 -> 46027, 87182 -> 46601","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46028,"TargetID":87181,"Directional":false},{"SourceID":87180,"TargetID":46027,"Directional":false},{"SourceID":87182,"TargetID":46601,"Directional":false}]},{"ID":1353,"SourceStructureID":87183,"TargetStructureID":606,"Label":"87183-606 via Gap Junction from 87184 -> 46406","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87184,"TargetID":46406,"Directional":false}]},{"ID":1354,"SourceStructureID":87224,"TargetStructureID":606,"Label":"87224-606 via Gap Junction from 87225 -> 46470, 87241 -> 46587","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87225,"TargetID":46470,"Directional":false},{"SourceID":87241,"TargetID":46587,"Directional":false}]},{"ID":1355,"SourceStructureID":606,"TargetStructureID":87231,"Label":"606-87231 via Gap Junction from 46485 -> 87232","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46485,"TargetID":87232,"Directional":false}]},{"ID":1356,"SourceStructureID":87247,"TargetStructureID":606,"Label":"87247-606 via Gap Junction from 87248 -> 46614","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87248,"TargetID":46614,"Directional":false}]},{"ID":1357,"SourceStructureID":606,"TargetStructureID":87249,"Label":"606-87249 via Adherens from 87257 -> 87256","Type":"Adherens","Directional":false,"Links":[{"SourceID":87257,"TargetID":87256,"Directional":false}]},{"ID":1358,"SourceStructureID":87249,"TargetStructureID":606,"Label":"87249-606 via Gap Junction from 87250 -> 46635","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87250,"TargetID":46635,"Directional":false}]},{"ID":1359,"SourceStructureID":87268,"TargetStructureID":606,"Label":"87268-606 via Gap Junction from 87269 -> 47249","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87269,"TargetID":47249,"Directional":false}]},{"ID":1360,"SourceStructureID":87277,"TargetStructureID":606,"Label":"87277-606 via Gap Junction from 87278 -> 47300","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87278,"TargetID":47300,"Directional":false}]},{"ID":1361,"SourceStructureID":87294,"TargetStructureID":606,"Label":"87294-606 via Gap Junction from 87295 -> 47306","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87295,"TargetID":47306,"Directional":false}]},{"ID":1362,"SourceStructureID":87342,"TargetStructureID":606,"Label":"87342-606 via Gap Junction from 87343 -> 47372","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87343,"TargetID":47372,"Directional":false}]},{"ID":1363,"SourceStructureID":87408,"TargetStructureID":606,"Label":"87408-606 via Adherens from 87410 -> 87411","Type":"Adherens","Directional":false,"Links":[{"SourceID":87410,"TargetID":87411,"Directional":false}]},{"ID":1364,"SourceStructureID":87408,"TargetStructureID":606,"Label":"87408-606 via Gap Junction from 87409 -> 47429","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87409,"TargetID":47429,"Directional":false}]},{"ID":1365,"SourceStructureID":606,"TargetStructureID":87413,"Label":"606-87413 via Gap Junction from 47454 -> 87416","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47454,"TargetID":87416,"Directional":false}]},{"ID":1366,"SourceStructureID":606,"TargetStructureID":87432,"Label":"606-87432 via Gap Junction from 47462 -> 87434","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47462,"TargetID":87434,"Directional":false}]},{"ID":1367,"SourceStructureID":87487,"TargetStructureID":606,"Label":"87487-606 via Gap Junction from 87489 -> 47469","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87489,"TargetID":47469,"Directional":false}]},{"ID":1368,"SourceStructureID":88246,"TargetStructureID":606,"Label":"88246-606 via Adherens from 88249 -> 47877","Type":"Adherens","Directional":false,"Links":[{"SourceID":88249,"TargetID":47877,"Directional":false}]},{"ID":1369,"SourceStructureID":88246,"TargetStructureID":606,"Label":"88246-606 via Gap Junction from 88248 -> 47625","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88248,"TargetID":47625,"Directional":false}]},{"ID":1370,"SourceStructureID":88260,"TargetStructureID":606,"Label":"88260-606 via Gap Junction from 88264 -> 47749","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88264,"TargetID":47749,"Directional":false}]},{"ID":1371,"SourceStructureID":88327,"TargetStructureID":606,"Label":"88327-606 via Gap Junction from 88328 -> 47995","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88328,"TargetID":47995,"Directional":false}]},{"ID":1372,"SourceStructureID":88344,"TargetStructureID":606,"Label":"88344-606 via Adherens from 88347 -> 88348","Type":"Adherens","Directional":false,"Links":[{"SourceID":88347,"TargetID":88348,"Directional":false}]},{"ID":1373,"SourceStructureID":88344,"TargetStructureID":606,"Label":"88344-606 via Gap Junction from 88350 -> 48314","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88350,"TargetID":48314,"Directional":false}]},{"ID":1374,"SourceStructureID":88354,"TargetStructureID":606,"Label":"88354-606 via Gap Junction from 88355 -> 48322","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88355,"TargetID":48322,"Directional":false}]},{"ID":1375,"SourceStructureID":606,"TargetStructureID":88365,"Label":"606-88365 via Gap Junction from 51981 -> 88385, 88381 -> 48323, 88388 -> 51993","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51981,"TargetID":88385,"Directional":false},{"SourceID":88381,"TargetID":48323,"Directional":false},{"SourceID":88388,"TargetID":51993,"Directional":false}]},{"ID":1376,"SourceStructureID":88395,"TargetStructureID":606,"Label":"88395-606 via Gap Junction from 88422 -> 48324","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88422,"TargetID":48324,"Directional":false}]},{"ID":1377,"SourceStructureID":88459,"TargetStructureID":606,"Label":"88459-606 via Gap Junction from 88460 -> 48330","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88460,"TargetID":48330,"Directional":false}]},{"ID":1378,"SourceStructureID":88565,"TargetStructureID":606,"Label":"88565-606 via Gap Junction from 88567 -> 48508","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88567,"TargetID":48508,"Directional":false}]},{"ID":1379,"SourceStructureID":88594,"TargetStructureID":606,"Label":"88594-606 via Gap Junction from 88595 -> 48797","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88595,"TargetID":48797,"Directional":false}]},{"ID":1380,"SourceStructureID":88621,"TargetStructureID":606,"Label":"88621-606 via Adherens from 88622 -> 88620","Type":"Adherens","Directional":false,"Links":[{"SourceID":88622,"TargetID":88620,"Directional":false}]},{"ID":1381,"SourceStructureID":88621,"TargetStructureID":606,"Label":"88621-606 via Gap Junction from 88623 -> 48955","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88623,"TargetID":48955,"Directional":false}]},{"ID":1382,"SourceStructureID":88628,"TargetStructureID":606,"Label":"88628-606 via Gap Junction from 88629 -> 49024","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88629,"TargetID":49024,"Directional":false}]},{"ID":1383,"SourceStructureID":606,"TargetStructureID":88630,"Label":"606-88630 via Adherens from 88633 -> 88632","Type":"Adherens","Directional":false,"Links":[{"SourceID":88633,"TargetID":88632,"Directional":false}]},{"ID":1384,"SourceStructureID":88630,"TargetStructureID":606,"Label":"88630-606 via Gap Junction from 88631 -> 49026","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88631,"TargetID":49026,"Directional":false}]},{"ID":1385,"SourceStructureID":88642,"TargetStructureID":606,"Label":"88642-606 via Gap Junction from 88643 -> 49556","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88643,"TargetID":49556,"Directional":false}]},{"ID":1386,"SourceStructureID":88646,"TargetStructureID":606,"Label":"88646-606 via Adherens from 88649 -> 53851, 88652 -> 53862, 88653 -> 53863","Type":"Adherens","Directional":false,"Links":[{"SourceID":88649,"TargetID":53851,"Directional":false},{"SourceID":88652,"TargetID":53862,"Directional":false},{"SourceID":88653,"TargetID":53863,"Directional":false}]},{"ID":1387,"SourceStructureID":88646,"TargetStructureID":606,"Label":"88646-606 via Gap Junction from 88647 -> 53850, 88648 -> 49592","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88647,"TargetID":53850,"Directional":false},{"SourceID":88648,"TargetID":49592,"Directional":false}]},{"ID":1388,"SourceStructureID":88661,"TargetStructureID":606,"Label":"88661-606 via Adherens from 88663 -> 49593","Type":"Adherens","Directional":false,"Links":[{"SourceID":88663,"TargetID":49593,"Directional":false}]},{"ID":1389,"SourceStructureID":88661,"TargetStructureID":606,"Label":"88661-606 via Gap Junction from 88662 -> 49594","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88662,"TargetID":49594,"Directional":false}]},{"ID":1390,"SourceStructureID":606,"TargetStructureID":88666,"Label":"606-88666 via Gap Junction from 49609 -> 88667","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49609,"TargetID":88667,"Directional":false}]},{"ID":1391,"SourceStructureID":88730,"TargetStructureID":606,"Label":"88730-606 via Gap Junction from 88732 -> 49622","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88732,"TargetID":49622,"Directional":false}]},{"ID":1392,"SourceStructureID":606,"TargetStructureID":88737,"Label":"606-88737 via Gap Junction from 54159 -> 88750, 88738 -> 49625, 88744 -> 54158","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54159,"TargetID":88750,"Directional":false},{"SourceID":88738,"TargetID":49625,"Directional":false},{"SourceID":88744,"TargetID":54158,"Directional":false}]},{"ID":1393,"SourceStructureID":606,"TargetStructureID":88762,"Label":"606-88762 via Adherens from 54216 -> 88768","Type":"Adherens","Directional":false,"Links":[{"SourceID":54216,"TargetID":88768,"Directional":false}]},{"ID":1394,"SourceStructureID":88762,"TargetStructureID":606,"Label":"88762-606 via Gap Junction from 88765 -> 49684, 88807 -> 54217","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88765,"TargetID":49684,"Directional":false},{"SourceID":88807,"TargetID":54217,"Directional":false}]},{"ID":1395,"SourceStructureID":88808,"TargetStructureID":606,"Label":"88808-606 via Gap Junction from 88809 -> 49794","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88809,"TargetID":49794,"Directional":false}]},{"ID":1396,"SourceStructureID":88941,"TargetStructureID":606,"Label":"88941-606 via Adherens from 88943 -> 53540","Type":"Adherens","Directional":false,"Links":[{"SourceID":88943,"TargetID":53540,"Directional":false}]},{"ID":1397,"SourceStructureID":88941,"TargetStructureID":606,"Label":"88941-606 via Gap Junction from 88942 -> 50904","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88942,"TargetID":50904,"Directional":false}]},{"ID":1398,"SourceStructureID":88981,"TargetStructureID":606,"Label":"88981-606 via Gap Junction from 88983 -> 51018","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88983,"TargetID":51018,"Directional":false}]},{"ID":1399,"SourceStructureID":88984,"TargetStructureID":606,"Label":"88984-606 via Gap Junction from 88990 -> 51074","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88990,"TargetID":51074,"Directional":false}]},{"ID":1400,"SourceStructureID":606,"TargetStructureID":89039,"Label":"606-89039 via Gap Junction from 51189 -> 89040","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51189,"TargetID":89040,"Directional":false}]},{"ID":1401,"SourceStructureID":89071,"TargetStructureID":606,"Label":"89071-606 via Gap Junction from 89074 -> 51225","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89074,"TargetID":51225,"Directional":false}]},{"ID":1402,"SourceStructureID":89093,"TargetStructureID":606,"Label":"89093-606 via Gap Junction from 89094 -> 51243","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89094,"TargetID":51243,"Directional":false}]},{"ID":1403,"SourceStructureID":89107,"TargetStructureID":606,"Label":"89107-606 via Gap Junction from 89108 -> 51354","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89108,"TargetID":51354,"Directional":false}]},{"ID":1404,"SourceStructureID":89113,"TargetStructureID":606,"Label":"89113-606 via Gap Junction from 89114 -> 51344","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89114,"TargetID":51344,"Directional":false}]},{"ID":1405,"SourceStructureID":89124,"TargetStructureID":606,"Label":"89124-606 via Gap Junction from 89125 -> 51494, 89542 -> 51497","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89125,"TargetID":51494,"Directional":false},{"SourceID":89542,"TargetID":51497,"Directional":false}]},{"ID":1406,"SourceStructureID":89543,"TargetStructureID":606,"Label":"89543-606 via Gap Junction from 89551 -> 51515","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89551,"TargetID":51515,"Directional":false}]},{"ID":1407,"SourceStructureID":606,"TargetStructureID":89567,"Label":"606-89567 via Gap Junction from 51586 -> 89568","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51586,"TargetID":89568,"Directional":false}]},{"ID":1408,"SourceStructureID":89569,"TargetStructureID":606,"Label":"89569-606 via Gap Junction from 89570 -> 51601","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89570,"TargetID":51601,"Directional":false}]},{"ID":1409,"SourceStructureID":89571,"TargetStructureID":606,"Label":"89571-606 via Gap Junction from 89576 -> 51620","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89576,"TargetID":51620,"Directional":false}]},{"ID":1410,"SourceStructureID":89577,"TargetStructureID":606,"Label":"89577-606 via Gap Junction from 89578 -> 51638","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89578,"TargetID":51638,"Directional":false}]},{"ID":1411,"SourceStructureID":89582,"TargetStructureID":606,"Label":"89582-606 via Adherens from 89584 -> 89585","Type":"Adherens","Directional":false,"Links":[{"SourceID":89584,"TargetID":89585,"Directional":false}]},{"ID":1412,"SourceStructureID":89582,"TargetStructureID":606,"Label":"89582-606 via Gap Junction from 89583 -> 51664","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89583,"TargetID":51664,"Directional":false}]},{"ID":1413,"SourceStructureID":606,"TargetStructureID":89586,"Label":"606-89586 via Gap Junction from 51698 -> 89588","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51698,"TargetID":89588,"Directional":false}]},{"ID":1414,"SourceStructureID":89638,"TargetStructureID":606,"Label":"89638-606 via Gap Junction from 89639 -> 51798","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89639,"TargetID":51798,"Directional":false}]},{"ID":1415,"SourceStructureID":89677,"TargetStructureID":606,"Label":"89677-606 via Adherens from 89683 -> 51971","Type":"Adherens","Directional":false,"Links":[{"SourceID":89683,"TargetID":51971,"Directional":false}]},{"ID":1416,"SourceStructureID":89677,"TargetStructureID":606,"Label":"89677-606 via Gap Junction from 89680 -> 51962, 89681 -> 51969","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89680,"TargetID":51962,"Directional":false},{"SourceID":89681,"TargetID":51969,"Directional":false}]},{"ID":1417,"SourceStructureID":89775,"TargetStructureID":606,"Label":"89775-606 via Adherens from 89777 -> 89778","Type":"Adherens","Directional":false,"Links":[{"SourceID":89777,"TargetID":89778,"Directional":false}]},{"ID":1418,"SourceStructureID":89775,"TargetStructureID":606,"Label":"89775-606 via Gap Junction from 89776 -> 51973","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89776,"TargetID":51973,"Directional":false}]},{"ID":1419,"SourceStructureID":89811,"TargetStructureID":606,"Label":"89811-606 via Gap Junction from 89812 -> 52338","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89812,"TargetID":52338,"Directional":false}]},{"ID":1420,"SourceStructureID":89820,"TargetStructureID":606,"Label":"89820-606 via Gap Junction from 89821 -> 52345","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89821,"TargetID":52345,"Directional":false}]},{"ID":1421,"SourceStructureID":89827,"TargetStructureID":606,"Label":"89827-606 via Gap Junction from 89828 -> 52372","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89828,"TargetID":52372,"Directional":false}]},{"ID":1422,"SourceStructureID":89831,"TargetStructureID":606,"Label":"89831-606 via Gap Junction from 89844 -> 52574","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89844,"TargetID":52574,"Directional":false}]},{"ID":1423,"SourceStructureID":89845,"TargetStructureID":606,"Label":"89845-606 via Gap Junction from 89847 -> 52610","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89847,"TargetID":52610,"Directional":false}]},{"ID":1424,"SourceStructureID":89848,"TargetStructureID":606,"Label":"89848-606 via Gap Junction from 89849 -> 52617","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89849,"TargetID":52617,"Directional":false}]},{"ID":1425,"SourceStructureID":89851,"TargetStructureID":606,"Label":"89851-606 via Gap Junction from 89852 -> 52671","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89852,"TargetID":52671,"Directional":false}]},{"ID":1426,"SourceStructureID":89989,"TargetStructureID":606,"Label":"89989-606 via Gap Junction from 89990 -> 52720","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89990,"TargetID":52720,"Directional":false}]},{"ID":1427,"SourceStructureID":90111,"TargetStructureID":606,"Label":"90111-606 via Gap Junction from 90116 -> 52819","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90116,"TargetID":52819,"Directional":false}]},{"ID":1428,"SourceStructureID":90118,"TargetStructureID":606,"Label":"90118-606 via Gap Junction from 90128 -> 52844","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90128,"TargetID":52844,"Directional":false}]},{"ID":1429,"SourceStructureID":90151,"TargetStructureID":606,"Label":"90151-606 via Adherens from 90153 -> 52916","Type":"Adherens","Directional":false,"Links":[{"SourceID":90153,"TargetID":52916,"Directional":false}]},{"ID":1430,"SourceStructureID":90151,"TargetStructureID":606,"Label":"90151-606 via Gap Junction from 90152 -> 52954","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90152,"TargetID":52954,"Directional":false}]},{"ID":1431,"SourceStructureID":90466,"TargetStructureID":606,"Label":"90466-606 via Gap Junction from 90467 -> 53093","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90467,"TargetID":53093,"Directional":false}]},{"ID":1432,"SourceStructureID":90475,"TargetStructureID":606,"Label":"90475-606 via Gap Junction from 90479 -> 53098","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90479,"TargetID":53098,"Directional":false}]},{"ID":1433,"SourceStructureID":90519,"TargetStructureID":606,"Label":"90519-606 via Gap Junction from 90520 -> 53099","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90520,"TargetID":53099,"Directional":false}]},{"ID":1434,"SourceStructureID":90528,"TargetStructureID":606,"Label":"90528-606 via Gap Junction from 90529 -> 53109","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90529,"TargetID":53109,"Directional":false}]},{"ID":1435,"SourceStructureID":606,"TargetStructureID":90530,"Label":"606-90530 via Adherens from 90534 -> 90532","Type":"Adherens","Directional":false,"Links":[{"SourceID":90534,"TargetID":90532,"Directional":false}]},{"ID":1436,"SourceStructureID":90530,"TargetStructureID":606,"Label":"90530-606 via Gap Junction from 90531 -> 53113","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90531,"TargetID":53113,"Directional":false}]},{"ID":1437,"SourceStructureID":90535,"TargetStructureID":606,"Label":"90535-606 via Gap Junction from 90536 -> 53277","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90536,"TargetID":53277,"Directional":false}]},{"ID":1438,"SourceStructureID":91507,"TargetStructureID":606,"Label":"91507-606 via Adherens from 91508 -> 51737","Type":"Adherens","Directional":false,"Links":[{"SourceID":91508,"TargetID":51737,"Directional":false}]},{"ID":1439,"SourceStructureID":608,"TargetStructureID":7054,"Label":"608-7054 via Touch from 43248 -> 43247","Type":"Touch","Directional":false,"Links":[{"SourceID":43248,"TargetID":43247,"Directional":false}]},{"ID":1440,"SourceStructureID":906,"TargetStructureID":7568,"Label":"906-7568 via Adherens from 27038 -> 27037","Type":"Adherens","Directional":false,"Links":[{"SourceID":27038,"TargetID":27037,"Directional":false}]},{"ID":1441,"SourceStructureID":909,"TargetStructureID":909,"Label":"909-909 via Gap Junction from 131057 -> 131059","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131057,"TargetID":131059,"Directional":false}]},{"ID":1442,"SourceStructureID":909,"TargetStructureID":909,"Label":"909-909 via Touch from 117455 -> 130134","Type":"Touch","Directional":false,"Links":[{"SourceID":117455,"TargetID":130134,"Directional":false}]},{"ID":1443,"SourceStructureID":909,"TargetStructureID":1637,"Label":"909-1637 via Gap Junction from 115903 -> 129571, 129580 -> 129581, 129583 -> 129582","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115903,"TargetID":129571,"Directional":false},{"SourceID":129580,"TargetID":129581,"Directional":false},{"SourceID":129583,"TargetID":129582,"Directional":false}]},{"ID":1444,"SourceStructureID":3679,"TargetStructureID":909,"Label":"3679-909 via Touch from 135798 -> 135797","Type":"Touch","Directional":false,"Links":[{"SourceID":135798,"TargetID":135797,"Directional":false}]},{"ID":1445,"SourceStructureID":5279,"TargetStructureID":909,"Label":"5279-909 via Adherens from 115910 -> 115909","Type":"Adherens","Directional":false,"Links":[{"SourceID":115910,"TargetID":115909,"Directional":false}]},{"ID":1446,"SourceStructureID":909,"TargetStructureID":5279,"Label":"909-5279 via Gap Junction from 92559 -> 92558, 129578 -> 129577, 129614 -> 147694, 129971 -> 129972","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92559,"TargetID":92558,"Directional":false},{"SourceID":129578,"TargetID":129577,"Directional":false},{"SourceID":129614,"TargetID":147694,"Directional":false},{"SourceID":129971,"TargetID":129972,"Directional":false}]},{"ID":1447,"SourceStructureID":909,"TargetStructureID":5282,"Label":"909-5282 via Adherens from 117265 -> 117266, 118620 -> 131088, 130222 -> 130221, 136339 -> 118495","Type":"Adherens","Directional":false,"Links":[{"SourceID":117265,"TargetID":117266,"Directional":false},{"SourceID":118620,"TargetID":131088,"Directional":false},{"SourceID":130222,"TargetID":130221,"Directional":false},{"SourceID":136339,"TargetID":118495,"Directional":false}]},{"ID":1448,"SourceStructureID":5282,"TargetStructureID":909,"Label":"5282-909 via Gap Junction from 87559 -> 87558, 131086 -> 131087, 136338 -> 130894, 136349 -> 136350","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87559,"TargetID":87558,"Directional":false},{"SourceID":131086,"TargetID":131087,"Directional":false},{"SourceID":136338,"TargetID":130894,"Directional":false},{"SourceID":136349,"TargetID":136350,"Directional":false}]},{"ID":1449,"SourceStructureID":5282,"TargetStructureID":909,"Label":"5282-909 via Unknown from 124663 -> 124664, 130293 -> 117695, 131073 -> 131074","Type":"Unknown","Directional":false,"Links":[{"SourceID":124663,"TargetID":124664,"Directional":false},{"SourceID":130293,"TargetID":117695,"Directional":false},{"SourceID":131073,"TargetID":131074,"Directional":false}]},{"ID":1450,"SourceStructureID":909,"TargetStructureID":5284,"Label":"909-5284 via Adherens from 127891 -> 127892","Type":"Adherens","Directional":false,"Links":[{"SourceID":127891,"TargetID":127892,"Directional":false}]},{"ID":1451,"SourceStructureID":909,"TargetStructureID":5284,"Label":"909-5284 via Gap Junction from 53737 -> 64336, 53784 -> 53785, 64601 -> 64602, 113603 -> 113602, 113640 -> 113639, 113645 -> 113644","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53737,"TargetID":64336,"Directional":false},{"SourceID":53784,"TargetID":53785,"Directional":false},{"SourceID":64601,"TargetID":64602,"Directional":false},{"SourceID":113603,"TargetID":113602,"Directional":false},{"SourceID":113640,"TargetID":113639,"Directional":false},{"SourceID":113645,"TargetID":113644,"Directional":false}]},{"ID":1452,"SourceStructureID":5292,"TargetStructureID":909,"Label":"5292-909 via Gap Junction from 130247 -> 130248","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130247,"TargetID":130248,"Directional":false}]},{"ID":1453,"SourceStructureID":5297,"TargetStructureID":909,"Label":"5297-909 via Adherens from 116443 -> 117847","Type":"Adherens","Directional":false,"Links":[{"SourceID":116443,"TargetID":117847,"Directional":false}]},{"ID":1454,"SourceStructureID":5297,"TargetStructureID":909,"Label":"5297-909 via Gap Junction from 121062 -> 121063, 130288 -> 130289","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121062,"TargetID":121063,"Directional":false},{"SourceID":130288,"TargetID":130289,"Directional":false}]},{"ID":1455,"SourceStructureID":5405,"TargetStructureID":909,"Label":"5405-909 via Unknown from 130138 -> 130137","Type":"Unknown","Directional":false,"Links":[{"SourceID":130138,"TargetID":130137,"Directional":false}]},{"ID":1456,"SourceStructureID":909,"TargetStructureID":5515,"Label":"909-5515 via Touch from 136325 -> 136326","Type":"Touch","Directional":false,"Links":[{"SourceID":136325,"TargetID":136326,"Directional":false}]},{"ID":1457,"SourceStructureID":909,"TargetStructureID":5517,"Label":"909-5517 via Adherens from 130968 -> 130969","Type":"Adherens","Directional":false,"Links":[{"SourceID":130968,"TargetID":130969,"Directional":false}]},{"ID":1458,"SourceStructureID":5517,"TargetStructureID":909,"Label":"5517-909 via Gap Junction from 49484 -> 49485, 59117 -> 59115, 130856 -> 130857","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49484,"TargetID":49485,"Directional":false},{"SourceID":59117,"TargetID":59115,"Directional":false},{"SourceID":130856,"TargetID":130857,"Directional":false}]},{"ID":1459,"SourceStructureID":909,"TargetStructureID":5561,"Label":"909-5561 via Adherens from 130082 -> 130083, 131003 -> 131004, 131075 -> 131076, 131094 -> 118629","Type":"Adherens","Directional":false,"Links":[{"SourceID":130082,"TargetID":130083,"Directional":false},{"SourceID":131003,"TargetID":131004,"Directional":false},{"SourceID":131075,"TargetID":131076,"Directional":false},{"SourceID":131094,"TargetID":118629,"Directional":false}]},{"ID":1460,"SourceStructureID":909,"TargetStructureID":5561,"Label":"909-5561 via Gap Junction from 53747 -> 97760, 53767 -> 117649, 96433 -> 96434, 97058 -> 97057, 97138 -> 97136, 97651 -> 97650, 97713 -> 97712, 113680 -> 113681, 119279 -> 119280, 130896 -> 130898, 130907 -> 130908, 130922 -> 130923, 131002 -> 131001, 131009 -> 131008, 131020 -> 131019, 131093 -> 131092","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53747,"TargetID":97760,"Directional":false},{"SourceID":53767,"TargetID":117649,"Directional":false},{"SourceID":96433,"TargetID":96434,"Directional":false},{"SourceID":97058,"TargetID":97057,"Directional":false},{"SourceID":97138,"TargetID":97136,"Directional":false},{"SourceID":97651,"TargetID":97650,"Directional":false},{"SourceID":97713,"TargetID":97712,"Directional":false},{"SourceID":113680,"TargetID":113681,"Directional":false},{"SourceID":119279,"TargetID":119280,"Directional":false},{"SourceID":130896,"TargetID":130898,"Directional":false},{"SourceID":130907,"TargetID":130908,"Directional":false},{"SourceID":130922,"TargetID":130923,"Directional":false},{"SourceID":131002,"TargetID":131001,"Directional":false},{"SourceID":131009,"TargetID":131008,"Directional":false},{"SourceID":131020,"TargetID":131019,"Directional":false},{"SourceID":131093,"TargetID":131092,"Directional":false}]},{"ID":1461,"SourceStructureID":909,"TargetStructureID":7129,"Label":"909-7129 via Unknown from 130297 -> 130296","Type":"Unknown","Directional":false,"Links":[{"SourceID":130297,"TargetID":130296,"Directional":false}]},{"ID":1462,"SourceStructureID":909,"TargetStructureID":14293,"Label":"909-14293 via Touch from 130999 -> 131000","Type":"Touch","Directional":false,"Links":[{"SourceID":130999,"TargetID":131000,"Directional":false}]},{"ID":1463,"SourceStructureID":909,"TargetStructureID":16073,"Label":"909-16073 via Unknown from 118400 -> 118401","Type":"Unknown","Directional":false,"Links":[{"SourceID":118400,"TargetID":118401,"Directional":false}]},{"ID":1464,"SourceStructureID":20136,"TargetStructureID":909,"Label":"20136-909 via Adherens from 128750 -> 128751","Type":"Adherens","Directional":false,"Links":[{"SourceID":128750,"TargetID":128751,"Directional":false}]},{"ID":1465,"SourceStructureID":909,"TargetStructureID":20136,"Label":"909-20136 via Gap Junction from 110149 -> 110148, 115851 -> 115849, 130466 -> 130465","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":110149,"TargetID":110148,"Directional":false},{"SourceID":115851,"TargetID":115849,"Directional":false},{"SourceID":130466,"TargetID":130465,"Directional":false}]},{"ID":1466,"SourceStructureID":909,"TargetStructureID":20136,"Label":"909-20136 via Touch from 130852 -> 130851","Type":"Touch","Directional":false,"Links":[{"SourceID":130852,"TargetID":130851,"Directional":false}]},{"ID":1467,"SourceStructureID":909,"TargetStructureID":32911,"Label":"909-32911 via Unknown from 135775 -> 135774","Type":"Unknown","Directional":false,"Links":[{"SourceID":135775,"TargetID":135774,"Directional":false}]},{"ID":1468,"SourceStructureID":909,"TargetStructureID":55347,"Label":"909-55347 via Adherens from 129964 -> 129963","Type":"Adherens","Directional":false,"Links":[{"SourceID":129964,"TargetID":129963,"Directional":false}]},{"ID":1469,"SourceStructureID":55347,"TargetStructureID":909,"Label":"55347-909 via Gap Junction from 115957 -> 115955","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115957,"TargetID":115955,"Directional":false}]},{"ID":1470,"SourceStructureID":909,"TargetStructureID":59147,"Label":"909-59147 via Adherens from 115848 -> 115847","Type":"Adherens","Directional":false,"Links":[{"SourceID":115848,"TargetID":115847,"Directional":false}]},{"ID":1471,"SourceStructureID":909,"TargetStructureID":61439,"Label":"909-61439 via Unknown from 120086 -> 120087","Type":"Unknown","Directional":false,"Links":[{"SourceID":120086,"TargetID":120087,"Directional":false}]},{"ID":1472,"SourceStructureID":909,"TargetStructureID":62578,"Label":"909-62578 via Unknown from 117654 -> 117655","Type":"Unknown","Directional":false,"Links":[{"SourceID":117654,"TargetID":117655,"Directional":false}]},{"ID":1473,"SourceStructureID":66942,"TargetStructureID":909,"Label":"66942-909 via Unknown from 117254 -> 117253","Type":"Unknown","Directional":false,"Links":[{"SourceID":117254,"TargetID":117253,"Directional":false}]},{"ID":1474,"SourceStructureID":67057,"TargetStructureID":909,"Label":"67057-909 via Unknown from 130850 -> 118470","Type":"Unknown","Directional":false,"Links":[{"SourceID":130850,"TargetID":118470,"Directional":false}]},{"ID":1475,"SourceStructureID":67112,"TargetStructureID":909,"Label":"67112-909 via Adherens from 130836 -> 130835","Type":"Adherens","Directional":false,"Links":[{"SourceID":130836,"TargetID":130835,"Directional":false}]},{"ID":1476,"SourceStructureID":909,"TargetStructureID":67291,"Label":"909-67291 via Unknown from 130029 -> 130028","Type":"Unknown","Directional":false,"Links":[{"SourceID":130029,"TargetID":130028,"Directional":false}]},{"ID":1477,"SourceStructureID":67777,"TargetStructureID":909,"Label":"67777-909 via Unknown from 117808 -> 117807","Type":"Unknown","Directional":false,"Links":[{"SourceID":117808,"TargetID":117807,"Directional":false}]},{"ID":1478,"SourceStructureID":909,"TargetStructureID":68198,"Label":"909-68198 via Unknown from 117922 -> 117923","Type":"Unknown","Directional":false,"Links":[{"SourceID":117922,"TargetID":117923,"Directional":false}]},{"ID":1479,"SourceStructureID":83925,"TargetStructureID":909,"Label":"83925-909 via Adherens from 115960 -> 115959","Type":"Adherens","Directional":false,"Links":[{"SourceID":115960,"TargetID":115959,"Directional":false}]},{"ID":1480,"SourceStructureID":84624,"TargetStructureID":909,"Label":"84624-909 via Unknown from 130027 -> 130026","Type":"Unknown","Directional":false,"Links":[{"SourceID":130027,"TargetID":130026,"Directional":false}]},{"ID":1481,"SourceStructureID":85551,"TargetStructureID":909,"Label":"85551-909 via Adherens from 130845 -> 118468","Type":"Adherens","Directional":false,"Links":[{"SourceID":130845,"TargetID":118468,"Directional":false}]},{"ID":1482,"SourceStructureID":89119,"TargetStructureID":909,"Label":"89119-909 via Unknown from 120163 -> 120162","Type":"Unknown","Directional":false,"Links":[{"SourceID":120163,"TargetID":120162,"Directional":false}]},{"ID":1483,"SourceStructureID":909,"TargetStructureID":96489,"Label":"909-96489 via Adherens from 115951 -> 115961","Type":"Adherens","Directional":false,"Links":[{"SourceID":115951,"TargetID":115961,"Directional":false}]},{"ID":1484,"SourceStructureID":96943,"TargetStructureID":909,"Label":"96943-909 via Adherens from 136343 -> 118506","Type":"Adherens","Directional":false,"Links":[{"SourceID":136343,"TargetID":118506,"Directional":false}]},{"ID":1485,"SourceStructureID":96943,"TargetStructureID":909,"Label":"96943-909 via Gap Junction from 131007 -> 131006","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131007,"TargetID":131006,"Directional":false}]},{"ID":1486,"SourceStructureID":97113,"TargetStructureID":909,"Label":"97113-909 via Unknown from 115963 -> 115962","Type":"Unknown","Directional":false,"Links":[{"SourceID":115963,"TargetID":115962,"Directional":false}]},{"ID":1487,"SourceStructureID":909,"TargetStructureID":97124,"Label":"909-97124 via Unknown from 115964 -> 115965","Type":"Unknown","Directional":false,"Links":[{"SourceID":115964,"TargetID":115965,"Directional":false}]},{"ID":1488,"SourceStructureID":909,"TargetStructureID":97636,"Label":"909-97636 via Adherens from 97640 -> 97639, 97642 -> 97641","Type":"Adherens","Directional":false,"Links":[{"SourceID":97640,"TargetID":97639,"Directional":false},{"SourceID":97642,"TargetID":97641,"Directional":false}]},{"ID":1489,"SourceStructureID":99106,"TargetStructureID":909,"Label":"99106-909 via Adherens from 115912 -> 115911, 129575 -> 129576","Type":"Adherens","Directional":false,"Links":[{"SourceID":115912,"TargetID":115911,"Directional":false},{"SourceID":129575,"TargetID":129576,"Directional":false}]},{"ID":1490,"SourceStructureID":99106,"TargetStructureID":909,"Label":"99106-909 via Gap Junction from 136369 -> 57020","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136369,"TargetID":57020,"Directional":false}]},{"ID":1491,"SourceStructureID":99440,"TargetStructureID":909,"Label":"99440-909 via Adherens from 136329 -> 136328","Type":"Adherens","Directional":false,"Links":[{"SourceID":136329,"TargetID":136328,"Directional":false}]},{"ID":1492,"SourceStructureID":99440,"TargetStructureID":909,"Label":"99440-909 via Gap Junction from 115906 -> 115904","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115906,"TargetID":115904,"Directional":false}]},{"ID":1493,"SourceStructureID":909,"TargetStructureID":113086,"Label":"909-113086 via Unknown from 118384 -> 118386, 118387 -> 113108, 118393 -> 118394","Type":"Unknown","Directional":false,"Links":[{"SourceID":118384,"TargetID":118386,"Directional":false},{"SourceID":118387,"TargetID":113108,"Directional":false},{"SourceID":118393,"TargetID":118394,"Directional":false}]},{"ID":1494,"SourceStructureID":115206,"TargetStructureID":909,"Label":"115206-909 via Adherens from 117648 -> 117647","Type":"Adherens","Directional":false,"Links":[{"SourceID":117648,"TargetID":117647,"Directional":false}]},{"ID":1495,"SourceStructureID":115206,"TargetStructureID":909,"Label":"115206-909 via Unknown from 117666 -> 117665, 130085 -> 130084","Type":"Unknown","Directional":false,"Links":[{"SourceID":117666,"TargetID":117665,"Directional":false},{"SourceID":130085,"TargetID":130084,"Directional":false}]},{"ID":1496,"SourceStructureID":115860,"TargetStructureID":909,"Label":"115860-909 via Adherens from 130463 -> 130464","Type":"Adherens","Directional":false,"Links":[{"SourceID":130463,"TargetID":130464,"Directional":false}]},{"ID":1497,"SourceStructureID":115870,"TargetStructureID":909,"Label":"115870-909 via Adherens from 129490 -> 115869","Type":"Adherens","Directional":false,"Links":[{"SourceID":129490,"TargetID":115869,"Directional":false}]},{"ID":1498,"SourceStructureID":115870,"TargetStructureID":909,"Label":"115870-909 via Unknown from 130844 -> 130843","Type":"Unknown","Directional":false,"Links":[{"SourceID":130844,"TargetID":130843,"Directional":false}]},{"ID":1499,"SourceStructureID":115875,"TargetStructureID":909,"Label":"115875-909 via Adherens from 115876 -> 115874","Type":"Adherens","Directional":false,"Links":[{"SourceID":115876,"TargetID":115874,"Directional":false}]},{"ID":1500,"SourceStructureID":115890,"TargetStructureID":909,"Label":"115890-909 via Adherens from 115891 -> 115892","Type":"Adherens","Directional":false,"Links":[{"SourceID":115891,"TargetID":115892,"Directional":false}]},{"ID":1501,"SourceStructureID":909,"TargetStructureID":115919,"Label":"909-115919 via Unknown from 115918 -> 129579","Type":"Unknown","Directional":false,"Links":[{"SourceID":115918,"TargetID":129579,"Directional":false}]},{"ID":1502,"SourceStructureID":115935,"TargetStructureID":909,"Label":"115935-909 via Adherens from 115936 -> 115934","Type":"Adherens","Directional":false,"Links":[{"SourceID":115936,"TargetID":115934,"Directional":false}]},{"ID":1503,"SourceStructureID":909,"TargetStructureID":115940,"Label":"909-115940 via Unknown from 129612 -> 129613","Type":"Unknown","Directional":false,"Links":[{"SourceID":129612,"TargetID":129613,"Directional":false}]},{"ID":1504,"SourceStructureID":909,"TargetStructureID":115942,"Label":"909-115942 via Adherens from 115938 -> 115943","Type":"Adherens","Directional":false,"Links":[{"SourceID":115938,"TargetID":115943,"Directional":false}]},{"ID":1505,"SourceStructureID":115946,"TargetStructureID":909,"Label":"115946-909 via Unknown from 115948 -> 115947","Type":"Unknown","Directional":false,"Links":[{"SourceID":115948,"TargetID":115947,"Directional":false}]},{"ID":1506,"SourceStructureID":909,"TargetStructureID":115953,"Label":"909-115953 via Adherens from 115952 -> 115958","Type":"Adherens","Directional":false,"Links":[{"SourceID":115952,"TargetID":115958,"Directional":false}]},{"ID":1507,"SourceStructureID":909,"TargetStructureID":115992,"Label":"909-115992 via Adherens from 115993 -> 115994, 115995 -> 115996","Type":"Adherens","Directional":false,"Links":[{"SourceID":115993,"TargetID":115994,"Directional":false},{"SourceID":115995,"TargetID":115996,"Directional":false}]},{"ID":1508,"SourceStructureID":909,"TargetStructureID":116368,"Label":"909-116368 via Unknown from 116367 -> 130007","Type":"Unknown","Directional":false,"Links":[{"SourceID":116367,"TargetID":130007,"Directional":false}]},{"ID":1509,"SourceStructureID":116381,"TargetStructureID":909,"Label":"116381-909 via Adherens from 116389 -> 116384","Type":"Adherens","Directional":false,"Links":[{"SourceID":116389,"TargetID":116384,"Directional":false}]},{"ID":1510,"SourceStructureID":116381,"TargetStructureID":909,"Label":"116381-909 via Unknown from 116382 -> 116383","Type":"Unknown","Directional":false,"Links":[{"SourceID":116382,"TargetID":116383,"Directional":false}]},{"ID":1511,"SourceStructureID":909,"TargetStructureID":116762,"Label":"909-116762 via Unknown from 116763 -> 116764","Type":"Unknown","Directional":false,"Links":[{"SourceID":116763,"TargetID":116764,"Directional":false}]},{"ID":1512,"SourceStructureID":909,"TargetStructureID":116778,"Label":"909-116778 via Unknown from 116777 -> 116779","Type":"Unknown","Directional":false,"Links":[{"SourceID":116777,"TargetID":116779,"Directional":false}]},{"ID":1513,"SourceStructureID":117204,"TargetStructureID":909,"Label":"117204-909 via Adherens from 117205 -> 117206, 131028 -> 118641","Type":"Adherens","Directional":false,"Links":[{"SourceID":117205,"TargetID":117206,"Directional":false},{"SourceID":131028,"TargetID":118641,"Directional":false}]},{"ID":1514,"SourceStructureID":909,"TargetStructureID":117223,"Label":"909-117223 via Adherens from 131068 -> 131069","Type":"Adherens","Directional":false,"Links":[{"SourceID":131068,"TargetID":131069,"Directional":false}]},{"ID":1515,"SourceStructureID":909,"TargetStructureID":117223,"Label":"909-117223 via Unknown from 117222 -> 117230, 131030 -> 131029","Type":"Unknown","Directional":false,"Links":[{"SourceID":117222,"TargetID":117230,"Directional":false},{"SourceID":131030,"TargetID":131029,"Directional":false}]},{"ID":1516,"SourceStructureID":909,"TargetStructureID":117236,"Label":"909-117236 via Unknown from 117235 -> 117237","Type":"Unknown","Directional":false,"Links":[{"SourceID":117235,"TargetID":117237,"Directional":false}]},{"ID":1517,"SourceStructureID":117248,"TargetStructureID":909,"Label":"117248-909 via Unknown from 117249 -> 117250","Type":"Unknown","Directional":false,"Links":[{"SourceID":117249,"TargetID":117250,"Directional":false}]},{"ID":1518,"SourceStructureID":909,"TargetStructureID":117287,"Label":"909-117287 via Unknown from 117436 -> 117437","Type":"Unknown","Directional":false,"Links":[{"SourceID":117436,"TargetID":117437,"Directional":false}]},{"ID":1519,"SourceStructureID":117408,"TargetStructureID":909,"Label":"117408-909 via Unknown from 117410 -> 117409, 117416 -> 117417","Type":"Unknown","Directional":false,"Links":[{"SourceID":117410,"TargetID":117409,"Directional":false},{"SourceID":117416,"TargetID":117417,"Directional":false}]},{"ID":1520,"SourceStructureID":909,"TargetStructureID":117421,"Label":"909-117421 via Adherens from 117420 -> 117423","Type":"Adherens","Directional":false,"Links":[{"SourceID":117420,"TargetID":117423,"Directional":false}]},{"ID":1521,"SourceStructureID":117431,"TargetStructureID":909,"Label":"117431-909 via Unknown from 130238 -> 120165","Type":"Unknown","Directional":false,"Links":[{"SourceID":130238,"TargetID":120165,"Directional":false}]},{"ID":1522,"SourceStructureID":909,"TargetStructureID":117470,"Label":"909-117470 via Adherens from 117474 -> 117475","Type":"Adherens","Directional":false,"Links":[{"SourceID":117474,"TargetID":117475,"Directional":false}]},{"ID":1523,"SourceStructureID":909,"TargetStructureID":117662,"Label":"909-117662 via Unknown from 130127 -> 130128","Type":"Unknown","Directional":false,"Links":[{"SourceID":130127,"TargetID":130128,"Directional":false}]},{"ID":1524,"SourceStructureID":117673,"TargetStructureID":909,"Label":"117673-909 via Unknown from 117674 -> 117675","Type":"Unknown","Directional":false,"Links":[{"SourceID":117674,"TargetID":117675,"Directional":false}]},{"ID":1525,"SourceStructureID":117678,"TargetStructureID":909,"Label":"117678-909 via Unknown from 117688 -> 117687","Type":"Unknown","Directional":false,"Links":[{"SourceID":117688,"TargetID":117687,"Directional":false}]},{"ID":1526,"SourceStructureID":909,"TargetStructureID":117679,"Label":"909-117679 via Adherens from 117681 -> 117682","Type":"Adherens","Directional":false,"Links":[{"SourceID":117681,"TargetID":117682,"Directional":false}]},{"ID":1527,"SourceStructureID":117683,"TargetStructureID":909,"Label":"117683-909 via Adherens from 117684 -> 117458","Type":"Adherens","Directional":false,"Links":[{"SourceID":117684,"TargetID":117458,"Directional":false}]},{"ID":1528,"SourceStructureID":117800,"TargetStructureID":909,"Label":"117800-909 via Adherens from 117801 -> 117799","Type":"Adherens","Directional":false,"Links":[{"SourceID":117801,"TargetID":117799,"Directional":false}]},{"ID":1529,"SourceStructureID":117803,"TargetStructureID":909,"Label":"117803-909 via Adherens from 117804 -> 117802","Type":"Adherens","Directional":false,"Links":[{"SourceID":117804,"TargetID":117802,"Directional":false}]},{"ID":1530,"SourceStructureID":909,"TargetStructureID":117805,"Label":"909-117805 via Adherens from 117790 -> 117806","Type":"Adherens","Directional":false,"Links":[{"SourceID":117790,"TargetID":117806,"Directional":false}]},{"ID":1531,"SourceStructureID":117813,"TargetStructureID":909,"Label":"117813-909 via Unknown from 117814 -> 117810","Type":"Unknown","Directional":false,"Links":[{"SourceID":117814,"TargetID":117810,"Directional":false}]},{"ID":1532,"SourceStructureID":909,"TargetStructureID":117843,"Label":"909-117843 via Unknown from 130286 -> 130287, 130290 -> 130291","Type":"Unknown","Directional":false,"Links":[{"SourceID":130286,"TargetID":130287,"Directional":false},{"SourceID":130290,"TargetID":130291,"Directional":false}]},{"ID":1533,"SourceStructureID":117851,"TargetStructureID":909,"Label":"117851-909 via Adherens from 130284 -> 130285","Type":"Adherens","Directional":false,"Links":[{"SourceID":130284,"TargetID":130285,"Directional":false}]},{"ID":1534,"SourceStructureID":909,"TargetStructureID":117854,"Label":"909-117854 via Unknown from 130281 -> 130280","Type":"Unknown","Directional":false,"Links":[{"SourceID":130281,"TargetID":130280,"Directional":false}]},{"ID":1535,"SourceStructureID":117863,"TargetStructureID":909,"Label":"117863-909 via Unknown from 117864 -> 117862","Type":"Unknown","Directional":false,"Links":[{"SourceID":117864,"TargetID":117862,"Directional":false}]},{"ID":1536,"SourceStructureID":117873,"TargetStructureID":909,"Label":"117873-909 via Adherens from 117874 -> 53792","Type":"Adherens","Directional":false,"Links":[{"SourceID":117874,"TargetID":53792,"Directional":false}]},{"ID":1537,"SourceStructureID":909,"TargetStructureID":117876,"Label":"909-117876 via Unknown from 117871 -> 117878","Type":"Unknown","Directional":false,"Links":[{"SourceID":117871,"TargetID":117878,"Directional":false}]},{"ID":1538,"SourceStructureID":909,"TargetStructureID":117892,"Label":"909-117892 via Adherens from 117891 -> 117893","Type":"Adherens","Directional":false,"Links":[{"SourceID":117891,"TargetID":117893,"Directional":false}]},{"ID":1539,"SourceStructureID":117892,"TargetStructureID":909,"Label":"117892-909 via Unknown from 117903 -> 117825, 130264 -> 130263","Type":"Unknown","Directional":false,"Links":[{"SourceID":117903,"TargetID":117825,"Directional":false},{"SourceID":130264,"TargetID":130263,"Directional":false}]},{"ID":1540,"SourceStructureID":117904,"TargetStructureID":909,"Label":"117904-909 via Unknown from 130258 -> 130257","Type":"Unknown","Directional":false,"Links":[{"SourceID":130258,"TargetID":130257,"Directional":false}]},{"ID":1541,"SourceStructureID":909,"TargetStructureID":117906,"Label":"909-117906 via Adherens from 117823 -> 117907","Type":"Adherens","Directional":false,"Links":[{"SourceID":117823,"TargetID":117907,"Directional":false}]},{"ID":1542,"SourceStructureID":909,"TargetStructureID":118405,"Label":"909-118405 via Adherens from 130303 -> 130304","Type":"Adherens","Directional":false,"Links":[{"SourceID":130303,"TargetID":130304,"Directional":false}]},{"ID":1543,"SourceStructureID":118405,"TargetStructureID":909,"Label":"118405-909 via Unknown from 130301 -> 130300","Type":"Unknown","Directional":false,"Links":[{"SourceID":130301,"TargetID":130300,"Directional":false}]},{"ID":1544,"SourceStructureID":909,"TargetStructureID":118414,"Label":"909-118414 via Unknown from 118408 -> 118415","Type":"Unknown","Directional":false,"Links":[{"SourceID":118408,"TargetID":118415,"Directional":false}]},{"ID":1545,"SourceStructureID":909,"TargetStructureID":118449,"Label":"909-118449 via Unknown from 118445 -> 118450","Type":"Unknown","Directional":false,"Links":[{"SourceID":118445,"TargetID":118450,"Directional":false}]},{"ID":1546,"SourceStructureID":129610,"TargetStructureID":909,"Label":"129610-909 via Unknown from 129611 -> 129609","Type":"Unknown","Directional":false,"Links":[{"SourceID":129611,"TargetID":129609,"Directional":false}]},{"ID":1547,"SourceStructureID":909,"TargetStructureID":130228,"Label":"909-130228 via Unknown from 117392 -> 130230","Type":"Unknown","Directional":false,"Links":[{"SourceID":117392,"TargetID":130230,"Directional":false}]},{"ID":1548,"SourceStructureID":909,"TargetStructureID":136331,"Label":"909-136331 via Gap Junction from 120188 -> 136332","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120188,"TargetID":136332,"Directional":false}]},{"ID":1549,"SourceStructureID":136331,"TargetStructureID":909,"Label":"136331-909 via Unknown from 136336 -> 136335","Type":"Unknown","Directional":false,"Links":[{"SourceID":136336,"TargetID":136335,"Directional":false}]},{"ID":1550,"SourceStructureID":136884,"TargetStructureID":992,"Label":"136884-992 via Gap Junction from 136890 -> 136889","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136890,"TargetID":136889,"Directional":false}]},{"ID":1551,"SourceStructureID":1021,"TargetStructureID":1021,"Label":"1021-1021 via Adherens from 125245 -> 125244, 125315 -> 125316, 125412 -> 125413, 125516 -> 125517, 135754 -> 135753","Type":"Adherens","Directional":false,"Links":[{"SourceID":125245,"TargetID":125244,"Directional":false},{"SourceID":125315,"TargetID":125316,"Directional":false},{"SourceID":125412,"TargetID":125413,"Directional":false},{"SourceID":125516,"TargetID":125517,"Directional":false},{"SourceID":135754,"TargetID":135753,"Directional":false}]},{"ID":1552,"SourceStructureID":1021,"TargetStructureID":1021,"Label":"1021-1021 via Gap Junction from 19759 -> 115346, 115350 -> 115344, 118162 -> 118163, 124939 -> 124940, 125081 -> 19780, 125110 -> 125111, 125153 -> 125154, 125252 -> 125251, 125345 -> 125339, 125360 -> 125364, 125514 -> 125515, 125690 -> 125689, 125753 -> 125752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19759,"TargetID":115346,"Directional":false},{"SourceID":115350,"TargetID":115344,"Directional":false},{"SourceID":118162,"TargetID":118163,"Directional":false},{"SourceID":124939,"TargetID":124940,"Directional":false},{"SourceID":125081,"TargetID":19780,"Directional":false},{"SourceID":125110,"TargetID":125111,"Directional":false},{"SourceID":125153,"TargetID":125154,"Directional":false},{"SourceID":125252,"TargetID":125251,"Directional":false},{"SourceID":125345,"TargetID":125339,"Directional":false},{"SourceID":125360,"TargetID":125364,"Directional":false},{"SourceID":125514,"TargetID":125515,"Directional":false},{"SourceID":125690,"TargetID":125689,"Directional":false},{"SourceID":125753,"TargetID":125752,"Directional":false}]},{"ID":1553,"SourceStructureID":1021,"TargetStructureID":3756,"Label":"1021-3756 via Gap Junction from 19783 -> 56518, 124934 -> 124935, 128797 -> 128796","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19783,"TargetID":56518,"Directional":false},{"SourceID":124934,"TargetID":124935,"Directional":false},{"SourceID":128797,"TargetID":128796,"Directional":false}]},{"ID":1554,"SourceStructureID":5650,"TargetStructureID":1021,"Label":"5650-1021 via Adherens from 61079 -> 61078, 124876 -> 124875, 126791 -> 126790, 126792 -> 126793, 126794 -> 126795, 126848 -> 103030","Type":"Adherens","Directional":false,"Links":[{"SourceID":61079,"TargetID":61078,"Directional":false},{"SourceID":124876,"TargetID":124875,"Directional":false},{"SourceID":126791,"TargetID":126790,"Directional":false},{"SourceID":126792,"TargetID":126793,"Directional":false},{"SourceID":126794,"TargetID":126795,"Directional":false},{"SourceID":126848,"TargetID":103030,"Directional":false}]},{"ID":1555,"SourceStructureID":5650,"TargetStructureID":1021,"Label":"5650-1021 via Gap Junction from 39022 -> 39021, 52604 -> 52603, 61072 -> 61071, 61075 -> 28363, 61106 -> 61105, 103027 -> 103028, 104076 -> 104075, 105057 -> 105056, 105066 -> 105065, 105085 -> 105086, 106368 -> 29930, 118191 -> 118190, 124975 -> 124976, 125086 -> 125087","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39022,"TargetID":39021,"Directional":false},{"SourceID":52604,"TargetID":52603,"Directional":false},{"SourceID":61072,"TargetID":61071,"Directional":false},{"SourceID":61075,"TargetID":28363,"Directional":false},{"SourceID":61106,"TargetID":61105,"Directional":false},{"SourceID":103027,"TargetID":103028,"Directional":false},{"SourceID":104076,"TargetID":104075,"Directional":false},{"SourceID":105057,"TargetID":105056,"Directional":false},{"SourceID":105066,"TargetID":105065,"Directional":false},{"SourceID":105085,"TargetID":105086,"Directional":false},{"SourceID":106368,"TargetID":29930,"Directional":false},{"SourceID":118191,"TargetID":118190,"Directional":false},{"SourceID":124975,"TargetID":124976,"Directional":false},{"SourceID":125086,"TargetID":125087,"Directional":false}]},{"ID":1556,"SourceStructureID":6047,"TargetStructureID":1021,"Label":"6047-1021 via Adherens from 125529 -> 125530, 135750 -> 135749","Type":"Adherens","Directional":false,"Links":[{"SourceID":125529,"TargetID":125530,"Directional":false},{"SourceID":135750,"TargetID":135749,"Directional":false}]},{"ID":1557,"SourceStructureID":1021,"TargetStructureID":6047,"Label":"1021-6047 via Gap Junction from 19747 -> 19703, 112119 -> 112118, 113143 -> 113146, 113239 -> 113232, 124994 -> 124993","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19747,"TargetID":19703,"Directional":false},{"SourceID":112119,"TargetID":112118,"Directional":false},{"SourceID":113143,"TargetID":113146,"Directional":false},{"SourceID":113239,"TargetID":113232,"Directional":false},{"SourceID":124994,"TargetID":124993,"Directional":false}]},{"ID":1558,"SourceStructureID":6050,"TargetStructureID":1021,"Label":"6050-1021 via Adherens from 124968 -> 124967, 126797 -> 126796, 127479 -> 127478, 135751 -> 127479","Type":"Adherens","Directional":false,"Links":[{"SourceID":124968,"TargetID":124967,"Directional":false},{"SourceID":126797,"TargetID":126796,"Directional":false},{"SourceID":127479,"TargetID":127478,"Directional":false},{"SourceID":135751,"TargetID":127479,"Directional":false}]},{"ID":1559,"SourceStructureID":6050,"TargetStructureID":1021,"Label":"6050-1021 via Gap Junction from 51644 -> 51645, 113990 -> 113988, 114037 -> 114036, 114361 -> 114360, 114435 -> 114434, 124887 -> 124888","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51644,"TargetID":51645,"Directional":false},{"SourceID":113990,"TargetID":113988,"Directional":false},{"SourceID":114037,"TargetID":114036,"Directional":false},{"SourceID":114361,"TargetID":114360,"Directional":false},{"SourceID":114435,"TargetID":114434,"Directional":false},{"SourceID":124887,"TargetID":124888,"Directional":false}]},{"ID":1560,"SourceStructureID":1021,"TargetStructureID":6120,"Label":"1021-6120 via Adherens from 125497 -> 125498, 125499 -> 125500, 125649 -> 125650, 125716 -> 125714, 135748 -> 135747","Type":"Adherens","Directional":false,"Links":[{"SourceID":125497,"TargetID":125498,"Directional":false},{"SourceID":125499,"TargetID":125500,"Directional":false},{"SourceID":125649,"TargetID":125650,"Directional":false},{"SourceID":125716,"TargetID":125714,"Directional":false},{"SourceID":135748,"TargetID":135747,"Directional":false}]},{"ID":1561,"SourceStructureID":1021,"TargetStructureID":6120,"Label":"1021-6120 via Gap Junction from 19768 -> 56517, 30185 -> 30186, 56516 -> 19745, 57384 -> 57385, 58794 -> 58793, 61081 -> 61082, 110742 -> 110741, 111016 -> 111015, 111227 -> 111228, 115314 -> 119478, 125523 -> 125524, 125631 -> 125632, 125664 -> 125665","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19768,"TargetID":56517,"Directional":false},{"SourceID":30185,"TargetID":30186,"Directional":false},{"SourceID":56516,"TargetID":19745,"Directional":false},{"SourceID":57384,"TargetID":57385,"Directional":false},{"SourceID":58794,"TargetID":58793,"Directional":false},{"SourceID":61081,"TargetID":61082,"Directional":false},{"SourceID":110742,"TargetID":110741,"Directional":false},{"SourceID":111016,"TargetID":111015,"Directional":false},{"SourceID":111227,"TargetID":111228,"Directional":false},{"SourceID":115314,"TargetID":119478,"Directional":false},{"SourceID":125523,"TargetID":125524,"Directional":false},{"SourceID":125631,"TargetID":125632,"Directional":false},{"SourceID":125664,"TargetID":125665,"Directional":false}]},{"ID":1562,"SourceStructureID":1021,"TargetStructureID":6120,"Label":"1021-6120 via Touch from 111730 -> 111729","Type":"Touch","Directional":false,"Links":[{"SourceID":111730,"TargetID":111729,"Directional":false}]},{"ID":1563,"SourceStructureID":6121,"TargetStructureID":1021,"Label":"6121-1021 via Gap Junction from 125232 -> 125233, 125275 -> 125276, 125304 -> 125305, 125745 -> 125746","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125232,"TargetID":125233,"Directional":false},{"SourceID":125275,"TargetID":125276,"Directional":false},{"SourceID":125304,"TargetID":125305,"Directional":false},{"SourceID":125745,"TargetID":125746,"Directional":false}]},{"ID":1564,"SourceStructureID":6121,"TargetStructureID":1021,"Label":"6121-1021 via Touch from 125718 -> 125719","Type":"Touch","Directional":false,"Links":[{"SourceID":125718,"TargetID":125719,"Directional":false}]},{"ID":1565,"SourceStructureID":1021,"TargetStructureID":6203,"Label":"1021-6203 via Gap Junction from 125427 -> 125426","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125427,"TargetID":125426,"Directional":false}]},{"ID":1566,"SourceStructureID":6204,"TargetStructureID":1021,"Label":"6204-1021 via Adherens from 125419 -> 125420","Type":"Adherens","Directional":false,"Links":[{"SourceID":125419,"TargetID":125420,"Directional":false}]},{"ID":1567,"SourceStructureID":6204,"TargetStructureID":1021,"Label":"6204-1021 via Gap Junction from 118161 -> 115390","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118161,"TargetID":115390,"Directional":false}]},{"ID":1568,"SourceStructureID":7134,"TargetStructureID":1021,"Label":"7134-1021 via Unknown from 125113 -> 125114","Type":"Unknown","Directional":false,"Links":[{"SourceID":125113,"TargetID":125114,"Directional":false}]},{"ID":1569,"SourceStructureID":9769,"TargetStructureID":1021,"Label":"9769-1021 via Adherens from 126889 -> 126888","Type":"Adherens","Directional":false,"Links":[{"SourceID":126889,"TargetID":126888,"Directional":false}]},{"ID":1570,"SourceStructureID":16073,"TargetStructureID":1021,"Label":"16073-1021 via Unknown from 125764 -> 125507","Type":"Unknown","Directional":false,"Links":[{"SourceID":125764,"TargetID":125507,"Directional":false}]},{"ID":1571,"SourceStructureID":22994,"TargetStructureID":1021,"Label":"22994-1021 via Adherens from 126820 -> 126821","Type":"Adherens","Directional":false,"Links":[{"SourceID":126820,"TargetID":126821,"Directional":false}]},{"ID":1572,"SourceStructureID":1021,"TargetStructureID":22994,"Label":"1021-22994 via Gap Junction from 61125 -> 118121","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61125,"TargetID":118121,"Directional":false}]},{"ID":1573,"SourceStructureID":43716,"TargetStructureID":1021,"Label":"43716-1021 via Adherens from 125538 -> 125537","Type":"Adherens","Directional":false,"Links":[{"SourceID":125538,"TargetID":125537,"Directional":false}]},{"ID":1574,"SourceStructureID":1021,"TargetStructureID":53182,"Label":"1021-53182 via Adherens from 124974 -> 124973","Type":"Adherens","Directional":false,"Links":[{"SourceID":124974,"TargetID":124973,"Directional":false}]},{"ID":1575,"SourceStructureID":1021,"TargetStructureID":71351,"Label":"1021-71351 via Unknown from 125123 -> 125124","Type":"Unknown","Directional":false,"Links":[{"SourceID":125123,"TargetID":125124,"Directional":false}]},{"ID":1576,"SourceStructureID":1021,"TargetStructureID":103029,"Label":"1021-103029 via Adherens from 126848 -> 103031","Type":"Adherens","Directional":false,"Links":[{"SourceID":126848,"TargetID":103031,"Directional":false}]},{"ID":1577,"SourceStructureID":1021,"TargetStructureID":103029,"Label":"1021-103029 via Unknown from 115317 -> 115318","Type":"Unknown","Directional":false,"Links":[{"SourceID":115317,"TargetID":115318,"Directional":false}]},{"ID":1578,"SourceStructureID":1021,"TargetStructureID":105048,"Label":"1021-105048 via Adherens from 125138 -> 125139","Type":"Adherens","Directional":false,"Links":[{"SourceID":125138,"TargetID":125139,"Directional":false}]},{"ID":1579,"SourceStructureID":1021,"TargetStructureID":105048,"Label":"1021-105048 via Unknown from 125134 -> 125135","Type":"Unknown","Directional":false,"Links":[{"SourceID":125134,"TargetID":125135,"Directional":false}]},{"ID":1580,"SourceStructureID":105070,"TargetStructureID":1021,"Label":"105070-1021 via Adherens from 125129 -> 125128","Type":"Adherens","Directional":false,"Links":[{"SourceID":125129,"TargetID":125128,"Directional":false}]},{"ID":1581,"SourceStructureID":105095,"TargetStructureID":1021,"Label":"105095-1021 via Unknown from 126697 -> 124992","Type":"Unknown","Directional":false,"Links":[{"SourceID":126697,"TargetID":124992,"Directional":false}]},{"ID":1582,"SourceStructureID":110607,"TargetStructureID":1021,"Label":"110607-1021 via Unknown from 125630 -> 125629","Type":"Unknown","Directional":false,"Links":[{"SourceID":125630,"TargetID":125629,"Directional":false}]},{"ID":1583,"SourceStructureID":1021,"TargetStructureID":110997,"Label":"1021-110997 via Adherens from 125287 -> 125286","Type":"Adherens","Directional":false,"Links":[{"SourceID":125287,"TargetID":125286,"Directional":false}]},{"ID":1584,"SourceStructureID":110997,"TargetStructureID":1021,"Label":"110997-1021 via Gap Junction from 125284 -> 125285","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125284,"TargetID":125285,"Directional":false}]},{"ID":1585,"SourceStructureID":1021,"TargetStructureID":111012,"Label":"1021-111012 via Adherens from 125264 -> 125265","Type":"Adherens","Directional":false,"Links":[{"SourceID":125264,"TargetID":125265,"Directional":false}]},{"ID":1586,"SourceStructureID":1021,"TargetStructureID":112182,"Label":"1021-112182 via Adherens from 125373 -> 125374","Type":"Adherens","Directional":false,"Links":[{"SourceID":125373,"TargetID":125374,"Directional":false}]},{"ID":1587,"SourceStructureID":112284,"TargetStructureID":1021,"Label":"112284-1021 via Adherens from 124997 -> 124996","Type":"Adherens","Directional":false,"Links":[{"SourceID":124997,"TargetID":124996,"Directional":false}]},{"ID":1588,"SourceStructureID":112389,"TargetStructureID":1021,"Label":"112389-1021 via Unknown from 126699 -> 124995","Type":"Unknown","Directional":false,"Links":[{"SourceID":126699,"TargetID":124995,"Directional":false}]},{"ID":1589,"SourceStructureID":113140,"TargetStructureID":1021,"Label":"113140-1021 via Unknown from 124924 -> 124923","Type":"Unknown","Directional":false,"Links":[{"SourceID":124924,"TargetID":124923,"Directional":false}]},{"ID":1590,"SourceStructureID":1637,"TargetStructureID":1637,"Label":"1637-1637 via Adherens from 117326 -> 117327","Type":"Adherens","Directional":false,"Links":[{"SourceID":117326,"TargetID":117327,"Directional":false}]},{"ID":1591,"SourceStructureID":1637,"TargetStructureID":1637,"Label":"1637-1637 via Gap Junction from 116898 -> 116897","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116898,"TargetID":116897,"Directional":false}]},{"ID":1592,"SourceStructureID":1637,"TargetStructureID":1637,"Label":"1637-1637 via Unknown from 117300 -> 117299","Type":"Unknown","Directional":false,"Links":[{"SourceID":117300,"TargetID":117299,"Directional":false}]},{"ID":1593,"SourceStructureID":1637,"TargetStructureID":1724,"Label":"1637-1724 via Gap Junction from 23707 -> 23708, 23718 -> 23722, 23732 -> 23733, 28625 -> 28626, 30416 -> 30417, 30419 -> 30420, 30429 -> 30433, 99327 -> 99328, 99432 -> 99433, 100274 -> 100273, 116751 -> 116750, 116753 -> 116752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23707,"TargetID":23708,"Directional":false},{"SourceID":23718,"TargetID":23722,"Directional":false},{"SourceID":23732,"TargetID":23733,"Directional":false},{"SourceID":28625,"TargetID":28626,"Directional":false},{"SourceID":30416,"TargetID":30417,"Directional":false},{"SourceID":30419,"TargetID":30420,"Directional":false},{"SourceID":30429,"TargetID":30433,"Directional":false},{"SourceID":99327,"TargetID":99328,"Directional":false},{"SourceID":99432,"TargetID":99433,"Directional":false},{"SourceID":100274,"TargetID":100273,"Directional":false},{"SourceID":116751,"TargetID":116750,"Directional":false},{"SourceID":116753,"TargetID":116752,"Directional":false}]},{"ID":1594,"SourceStructureID":5278,"TargetStructureID":1637,"Label":"5278-1637 via Adherens from 117323 -> 117322, 147317 -> 147318","Type":"Adherens","Directional":false,"Links":[{"SourceID":117323,"TargetID":117322,"Directional":false},{"SourceID":147317,"TargetID":147318,"Directional":false}]},{"ID":1595,"SourceStructureID":5278,"TargetStructureID":1637,"Label":"5278-1637 via Touch from 147312 -> 147313","Type":"Touch","Directional":false,"Links":[{"SourceID":147312,"TargetID":147313,"Directional":false}]},{"ID":1596,"SourceStructureID":5279,"TargetStructureID":1637,"Label":"5279-1637 via Gap Junction from 98653 -> 98652, 133850 -> 133851, 133863 -> 133862, 148026 -> 148025","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98653,"TargetID":98652,"Directional":false},{"SourceID":133850,"TargetID":133851,"Directional":false},{"SourceID":133863,"TargetID":133862,"Directional":false},{"SourceID":148026,"TargetID":148025,"Directional":false}]},{"ID":1597,"SourceStructureID":5517,"TargetStructureID":1637,"Label":"5517-1637 via Gap Junction from 49508 -> 49630, 49634 -> 49268, 116861 -> 116860","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49508,"TargetID":49630,"Directional":false},{"SourceID":49634,"TargetID":49268,"Directional":false},{"SourceID":116861,"TargetID":116860,"Directional":false}]},{"ID":1598,"SourceStructureID":5517,"TargetStructureID":1637,"Label":"5517-1637 via Unknown from 116814 -> 116813, 116854 -> 116853","Type":"Unknown","Directional":false,"Links":[{"SourceID":116814,"TargetID":116813,"Directional":false},{"SourceID":116854,"TargetID":116853,"Directional":false}]},{"ID":1599,"SourceStructureID":1637,"TargetStructureID":6155,"Label":"1637-6155 via Gap Junction from 30421 -> 30422","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30421,"TargetID":30422,"Directional":false}]},{"ID":1600,"SourceStructureID":20136,"TargetStructureID":1637,"Label":"20136-1637 via Adherens from 109770 -> 109771","Type":"Adherens","Directional":false,"Links":[{"SourceID":109770,"TargetID":109771,"Directional":false}]},{"ID":1601,"SourceStructureID":1637,"TargetStructureID":26079,"Label":"1637-26079 via Unknown from 116803 -> 116802","Type":"Unknown","Directional":false,"Links":[{"SourceID":116803,"TargetID":116802,"Directional":false}]},{"ID":1602,"SourceStructureID":1637,"TargetStructureID":48455,"Label":"1637-48455 via Unknown from 119544 -> 119543","Type":"Unknown","Directional":false,"Links":[{"SourceID":119544,"TargetID":119543,"Directional":false}]},{"ID":1603,"SourceStructureID":61933,"TargetStructureID":1637,"Label":"61933-1637 via Unknown from 117318 -> 117317","Type":"Unknown","Directional":false,"Links":[{"SourceID":117318,"TargetID":117317,"Directional":false}]},{"ID":1604,"SourceStructureID":1637,"TargetStructureID":99440,"Label":"1637-99440 via Unknown from 136322 -> 136321","Type":"Unknown","Directional":false,"Links":[{"SourceID":136322,"TargetID":136321,"Directional":false}]},{"ID":1605,"SourceStructureID":1724,"TargetStructureID":1724,"Label":"1724-1724 via Gap Junction from 20015 -> 3968, 47944 -> 48454, 48679 -> 48678","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20015,"TargetID":3968,"Directional":false},{"SourceID":47944,"TargetID":48454,"Directional":false},{"SourceID":48679,"TargetID":48678,"Directional":false}]},{"ID":1606,"SourceStructureID":3116,"TargetStructureID":1724,"Label":"3116-1724 via Gap Junction from 30353 -> 23757, 119084 -> 119083","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30353,"TargetID":23757,"Directional":false},{"SourceID":119084,"TargetID":119083,"Directional":false}]},{"ID":1607,"SourceStructureID":1724,"TargetStructureID":5278,"Label":"1724-5278 via Adherens from 147270 -> 147269, 147275 -> 147276","Type":"Adherens","Directional":false,"Links":[{"SourceID":147270,"TargetID":147269,"Directional":false},{"SourceID":147275,"TargetID":147276,"Directional":false}]},{"ID":1608,"SourceStructureID":5278,"TargetStructureID":1724,"Label":"5278-1724 via Gap Junction from 48476 -> 48475, 69857 -> 69856, 92135 -> 92134","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48476,"TargetID":48475,"Directional":false},{"SourceID":69857,"TargetID":69856,"Directional":false},{"SourceID":92135,"TargetID":92134,"Directional":false}]},{"ID":1609,"SourceStructureID":1724,"TargetStructureID":5279,"Label":"1724-5279 via Gap Junction from 48677 -> 48676","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48677,"TargetID":48676,"Directional":false}]},{"ID":1610,"SourceStructureID":5579,"TargetStructureID":1724,"Label":"5579-1724 via Adherens from 36806 -> 36807","Type":"Adherens","Directional":false,"Links":[{"SourceID":36806,"TargetID":36807,"Directional":false}]},{"ID":1611,"SourceStructureID":5579,"TargetStructureID":1724,"Label":"5579-1724 via Unknown from 100363 -> 100362, 114173 -> 114174, 119152 -> 119151","Type":"Unknown","Directional":false,"Links":[{"SourceID":100363,"TargetID":100362,"Directional":false},{"SourceID":114173,"TargetID":114174,"Directional":false},{"SourceID":119152,"TargetID":119151,"Directional":false}]},{"ID":1612,"SourceStructureID":6155,"TargetStructureID":1724,"Label":"6155-1724 via Gap Junction from 15689 -> 49046, 47939 -> 47938","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15689,"TargetID":49046,"Directional":false},{"SourceID":47939,"TargetID":47938,"Directional":false}]},{"ID":1613,"SourceStructureID":1724,"TargetStructureID":21299,"Label":"1724-21299 via Gap Junction from 48682 -> 48681","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48682,"TargetID":48681,"Directional":false}]},{"ID":1614,"SourceStructureID":1724,"TargetStructureID":26079,"Label":"1724-26079 via Gap Junction from 47361 -> 102030, 102004 -> 102003, 102008 -> 102009, 102930 -> 102929","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47361,"TargetID":102030,"Directional":false},{"SourceID":102004,"TargetID":102003,"Directional":false},{"SourceID":102008,"TargetID":102009,"Directional":false},{"SourceID":102930,"TargetID":102929,"Directional":false}]},{"ID":1615,"SourceStructureID":42527,"TargetStructureID":1724,"Label":"42527-1724 via Adherens from 42528 -> 42526","Type":"Adherens","Directional":false,"Links":[{"SourceID":42528,"TargetID":42526,"Directional":false}]},{"ID":1616,"SourceStructureID":1724,"TargetStructureID":43314,"Label":"1724-43314 via Unknown from 100252 -> 100253","Type":"Unknown","Directional":false,"Links":[{"SourceID":100252,"TargetID":100253,"Directional":false}]},{"ID":1617,"SourceStructureID":1724,"TargetStructureID":99106,"Label":"1724-99106 via Adherens from 99522 -> 99520","Type":"Adherens","Directional":false,"Links":[{"SourceID":99522,"TargetID":99520,"Directional":false}]},{"ID":1618,"SourceStructureID":1724,"TargetStructureID":99106,"Label":"1724-99106 via Gap Junction from 48474 -> 119133","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48474,"TargetID":119133,"Directional":false}]},{"ID":1619,"SourceStructureID":1724,"TargetStructureID":99106,"Label":"1724-99106 via Unknown from 99535 -> 99534","Type":"Unknown","Directional":false,"Links":[{"SourceID":99535,"TargetID":99534,"Directional":false}]},{"ID":1620,"SourceStructureID":1724,"TargetStructureID":99233,"Label":"1724-99233 via Unknown from 99235 -> 99234","Type":"Unknown","Directional":false,"Links":[{"SourceID":99235,"TargetID":99234,"Directional":false}]},{"ID":1621,"SourceStructureID":99236,"TargetStructureID":1724,"Label":"99236-1724 via Adherens from 99239 -> 99238","Type":"Adherens","Directional":false,"Links":[{"SourceID":99239,"TargetID":99238,"Directional":false}]},{"ID":1622,"SourceStructureID":99240,"TargetStructureID":1724,"Label":"99240-1724 via Unknown from 99242 -> 99241, 100325 -> 100324","Type":"Unknown","Directional":false,"Links":[{"SourceID":99242,"TargetID":99241,"Directional":false},{"SourceID":100325,"TargetID":100324,"Directional":false}]},{"ID":1623,"SourceStructureID":99325,"TargetStructureID":1724,"Label":"99325-1724 via Adherens from 99337 -> 99336","Type":"Adherens","Directional":false,"Links":[{"SourceID":99337,"TargetID":99336,"Directional":false}]},{"ID":1624,"SourceStructureID":99346,"TargetStructureID":1724,"Label":"99346-1724 via Unknown from 99353 -> 99352","Type":"Unknown","Directional":false,"Links":[{"SourceID":99353,"TargetID":99352,"Directional":false}]},{"ID":1625,"SourceStructureID":1724,"TargetStructureID":99538,"Label":"1724-99538 via Unknown from 99539 -> 99540","Type":"Unknown","Directional":false,"Links":[{"SourceID":99539,"TargetID":99540,"Directional":false}]},{"ID":1626,"SourceStructureID":99543,"TargetStructureID":1724,"Label":"99543-1724 via Gap Junction from 99545 -> 99544","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99545,"TargetID":99544,"Directional":false}]},{"ID":1627,"SourceStructureID":1724,"TargetStructureID":99543,"Label":"1724-99543 via Unknown from 99562 -> 99563","Type":"Unknown","Directional":false,"Links":[{"SourceID":99562,"TargetID":99563,"Directional":false}]},{"ID":1628,"SourceStructureID":99551,"TargetStructureID":1724,"Label":"99551-1724 via Unknown from 99553 -> 99552","Type":"Unknown","Directional":false,"Links":[{"SourceID":99553,"TargetID":99552,"Directional":false}]},{"ID":1629,"SourceStructureID":99557,"TargetStructureID":1724,"Label":"99557-1724 via Unknown from 99558 -> 99559","Type":"Unknown","Directional":false,"Links":[{"SourceID":99558,"TargetID":99559,"Directional":false}]},{"ID":1630,"SourceStructureID":1724,"TargetStructureID":99571,"Label":"1724-99571 via Adherens from 99572 -> 99573","Type":"Adherens","Directional":false,"Links":[{"SourceID":99572,"TargetID":99573,"Directional":false}]},{"ID":1631,"SourceStructureID":1724,"TargetStructureID":100242,"Label":"1724-100242 via Unknown from 100246 -> 100247","Type":"Unknown","Directional":false,"Links":[{"SourceID":100246,"TargetID":100247,"Directional":false}]},{"ID":1632,"SourceStructureID":1724,"TargetStructureID":100243,"Label":"1724-100243 via Unknown from 100244 -> 100245","Type":"Unknown","Directional":false,"Links":[{"SourceID":100244,"TargetID":100245,"Directional":false}]},{"ID":1633,"SourceStructureID":100327,"TargetStructureID":1724,"Label":"100327-1724 via Unknown from 100329 -> 100328","Type":"Unknown","Directional":false,"Links":[{"SourceID":100329,"TargetID":100328,"Directional":false}]},{"ID":1634,"SourceStructureID":100477,"TargetStructureID":1724,"Label":"100477-1724 via BC Conventional Synapse from 100482 -> 100481","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":100482,"TargetID":100481,"Directional":false}]},{"ID":1635,"SourceStructureID":1724,"TargetStructureID":100486,"Label":"1724-100486 via Unknown from 100514 -> 100515","Type":"Unknown","Directional":false,"Links":[{"SourceID":100514,"TargetID":100515,"Directional":false}]},{"ID":1636,"SourceStructureID":1724,"TargetStructureID":100528,"Label":"1724-100528 via Unknown from 119155 -> 119156","Type":"Unknown","Directional":false,"Links":[{"SourceID":119155,"TargetID":119156,"Directional":false}]},{"ID":1637,"SourceStructureID":1724,"TargetStructureID":100679,"Label":"1724-100679 via Unknown from 100681 -> 100680","Type":"Unknown","Directional":false,"Links":[{"SourceID":100681,"TargetID":100680,"Directional":false}]},{"ID":1638,"SourceStructureID":1724,"TargetStructureID":100752,"Label":"1724-100752 via Unknown from 100753 -> 100754","Type":"Unknown","Directional":false,"Links":[{"SourceID":100753,"TargetID":100754,"Directional":false}]},{"ID":1639,"SourceStructureID":100860,"TargetStructureID":1724,"Label":"100860-1724 via Adherens from 100861 -> 100862","Type":"Adherens","Directional":false,"Links":[{"SourceID":100861,"TargetID":100862,"Directional":false}]},{"ID":1640,"SourceStructureID":100868,"TargetStructureID":1724,"Label":"100868-1724 via Gap Junction from 100870 -> 20186","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":100870,"TargetID":20186,"Directional":false}]},{"ID":1641,"SourceStructureID":1724,"TargetStructureID":101501,"Label":"1724-101501 via Unknown from 101503 -> 101502","Type":"Unknown","Directional":false,"Links":[{"SourceID":101503,"TargetID":101502,"Directional":false}]},{"ID":1642,"SourceStructureID":1724,"TargetStructureID":101531,"Label":"1724-101531 via Unknown from 101533 -> 101532","Type":"Unknown","Directional":false,"Links":[{"SourceID":101533,"TargetID":101532,"Directional":false}]},{"ID":1643,"SourceStructureID":1724,"TargetStructureID":101536,"Label":"1724-101536 via Adherens from 101539 -> 101538","Type":"Adherens","Directional":false,"Links":[{"SourceID":101539,"TargetID":101538,"Directional":false}]},{"ID":1644,"SourceStructureID":1724,"TargetStructureID":101541,"Label":"1724-101541 via Unknown from 101542 -> 101543","Type":"Unknown","Directional":false,"Links":[{"SourceID":101542,"TargetID":101543,"Directional":false}]},{"ID":1645,"SourceStructureID":101544,"TargetStructureID":1724,"Label":"101544-1724 via Unknown from 101546 -> 101545","Type":"Unknown","Directional":false,"Links":[{"SourceID":101546,"TargetID":101545,"Directional":false}]},{"ID":1646,"SourceStructureID":101578,"TargetStructureID":1724,"Label":"101578-1724 via Adherens from 101580 -> 101579","Type":"Adherens","Directional":false,"Links":[{"SourceID":101580,"TargetID":101579,"Directional":false}]},{"ID":1647,"SourceStructureID":1724,"TargetStructureID":101592,"Label":"1724-101592 via Adherens from 47937 -> 101593","Type":"Adherens","Directional":false,"Links":[{"SourceID":47937,"TargetID":101593,"Directional":false}]},{"ID":1648,"SourceStructureID":101617,"TargetStructureID":1724,"Label":"101617-1724 via Adherens from 101619 -> 101618","Type":"Adherens","Directional":false,"Links":[{"SourceID":101619,"TargetID":101618,"Directional":false}]},{"ID":1649,"SourceStructureID":101620,"TargetStructureID":1724,"Label":"101620-1724 via Adherens from 101622 -> 101621","Type":"Adherens","Directional":false,"Links":[{"SourceID":101622,"TargetID":101621,"Directional":false}]},{"ID":1650,"SourceStructureID":1724,"TargetStructureID":101654,"Label":"1724-101654 via Unknown from 101655 -> 101656","Type":"Unknown","Directional":false,"Links":[{"SourceID":101655,"TargetID":101656,"Directional":false}]},{"ID":1651,"SourceStructureID":101683,"TargetStructureID":1724,"Label":"101683-1724 via Unknown from 101685 -> 101684","Type":"Unknown","Directional":false,"Links":[{"SourceID":101685,"TargetID":101684,"Directional":false}]},{"ID":1652,"SourceStructureID":1724,"TargetStructureID":101896,"Label":"1724-101896 via Adherens from 101898 -> 101897","Type":"Adherens","Directional":false,"Links":[{"SourceID":101898,"TargetID":101897,"Directional":false}]},{"ID":1653,"SourceStructureID":102517,"TargetStructureID":1724,"Label":"102517-1724 via Adherens from 102521 -> 102520, 102523 -> 47941","Type":"Adherens","Directional":false,"Links":[{"SourceID":102521,"TargetID":102520,"Directional":false},{"SourceID":102523,"TargetID":47941,"Directional":false}]},{"ID":1654,"SourceStructureID":2064,"TargetStructureID":6155,"Label":"2064-6155 via Unknown from 108354 -> 108356","Type":"Unknown","Directional":false,"Links":[{"SourceID":108354,"TargetID":108356,"Directional":false}]},{"ID":1655,"SourceStructureID":9504,"TargetStructureID":2065,"Label":"9504-2065 via Gap Junction from 36356 -> 36355","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36356,"TargetID":36355,"Directional":false}]},{"ID":1656,"SourceStructureID":2610,"TargetStructureID":3679,"Label":"2610-3679 via Gap Junction from 17968 -> 17967, 17969 -> 3862","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17968,"TargetID":17967,"Directional":false},{"SourceID":17969,"TargetID":3862,"Directional":false}]},{"ID":1657,"SourceStructureID":5345,"TargetStructureID":2610,"Label":"5345-2610 via Gap Junction from 15673 -> 15669, 15680 -> 15670, 16811 -> 2843, 16820 -> 2829, 19040 -> 19039","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15673,"TargetID":15669,"Directional":false},{"SourceID":15680,"TargetID":15670,"Directional":false},{"SourceID":16811,"TargetID":2843,"Directional":false},{"SourceID":16820,"TargetID":2829,"Directional":false},{"SourceID":19040,"TargetID":19039,"Directional":false}]},{"ID":1658,"SourceStructureID":2610,"TargetStructureID":5513,"Label":"2610-5513 via Gap Junction from 2767 -> 15016, 15018 -> 2773","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":2767,"TargetID":15016,"Directional":false},{"SourceID":15018,"TargetID":2773,"Directional":false}]},{"ID":1659,"SourceStructureID":2610,"TargetStructureID":5517,"Label":"2610-5517 via Gap Junction from 15015 -> 96058, 96502 -> 96501","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15015,"TargetID":96058,"Directional":false},{"SourceID":96502,"TargetID":96501,"Directional":false}]},{"ID":1660,"SourceStructureID":6589,"TargetStructureID":2610,"Label":"6589-2610 via Gap Junction from 6592 -> 6588, 9550 -> 9549, 17173 -> 6597, 130607 -> 130606, 132636 -> 132635, 132694 -> 132695","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":6592,"TargetID":6588,"Directional":false},{"SourceID":9550,"TargetID":9549,"Directional":false},{"SourceID":17173,"TargetID":6597,"Directional":false},{"SourceID":130607,"TargetID":130606,"Directional":false},{"SourceID":132636,"TargetID":132635,"Directional":false},{"SourceID":132694,"TargetID":132695,"Directional":false}]},{"ID":1661,"SourceStructureID":6912,"TargetStructureID":2610,"Label":"6912-2610 via Gap Junction from 6938 -> 2735, 32378 -> 2923, 33145 -> 2771, 48353 -> 2768, 48366 -> 2776, 51077 -> 18216, 94439 -> 51135, 120870 -> 120869, 135037 -> 135035","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":6938,"TargetID":2735,"Directional":false},{"SourceID":32378,"TargetID":2923,"Directional":false},{"SourceID":33145,"TargetID":2771,"Directional":false},{"SourceID":48353,"TargetID":2768,"Directional":false},{"SourceID":48366,"TargetID":2776,"Directional":false},{"SourceID":51077,"TargetID":18216,"Directional":false},{"SourceID":94439,"TargetID":51135,"Directional":false},{"SourceID":120870,"TargetID":120869,"Directional":false},{"SourceID":135037,"TargetID":135035,"Directional":false}]},{"ID":1662,"SourceStructureID":6997,"TargetStructureID":2610,"Label":"6997-2610 via Adherens from 136835 -> 136836","Type":"Adherens","Directional":false,"Links":[{"SourceID":136835,"TargetID":136836,"Directional":false}]},{"ID":1663,"SourceStructureID":2610,"TargetStructureID":6997,"Label":"2610-6997 via Gap Junction from 9396 -> 31420, 22019 -> 22018, 22280 -> 22279, 22851 -> 21923, 56986 -> 56985, 56993 -> 56992, 95585 -> 95584, 99172 -> 99171, 135004 -> 135009, 135034 -> 135033","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9396,"TargetID":31420,"Directional":false},{"SourceID":22019,"TargetID":22018,"Directional":false},{"SourceID":22280,"TargetID":22279,"Directional":false},{"SourceID":22851,"TargetID":21923,"Directional":false},{"SourceID":56986,"TargetID":56985,"Directional":false},{"SourceID":56993,"TargetID":56992,"Directional":false},{"SourceID":95585,"TargetID":95584,"Directional":false},{"SourceID":99172,"TargetID":99171,"Directional":false},{"SourceID":135004,"TargetID":135009,"Directional":false},{"SourceID":135034,"TargetID":135033,"Directional":false}]},{"ID":1664,"SourceStructureID":8037,"TargetStructureID":2610,"Label":"8037-2610 via Gap Junction from 11384 -> 2847, 15668 -> 15667, 17903 -> 17902","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":11384,"TargetID":2847,"Directional":false},{"SourceID":15668,"TargetID":15667,"Directional":false},{"SourceID":17903,"TargetID":17902,"Directional":false}]},{"ID":1665,"SourceStructureID":2610,"TargetStructureID":8990,"Label":"2610-8990 via Adherens from 95939 -> 95938, 95943 -> 95942, 95944 -> 17958","Type":"Adherens","Directional":false,"Links":[{"SourceID":95939,"TargetID":95938,"Directional":false},{"SourceID":95943,"TargetID":95942,"Directional":false},{"SourceID":95944,"TargetID":17958,"Directional":false}]},{"ID":1666,"SourceStructureID":2610,"TargetStructureID":8990,"Label":"2610-8990 via Unknown from 95941 -> 95940","Type":"Unknown","Directional":false,"Links":[{"SourceID":95941,"TargetID":95940,"Directional":false}]},{"ID":1667,"SourceStructureID":9693,"TargetStructureID":2610,"Label":"9693-2610 via Adherens from 120074 -> 120079, 134728 -> 134729, 135023 -> 135024","Type":"Adherens","Directional":false,"Links":[{"SourceID":120074,"TargetID":120079,"Directional":false},{"SourceID":134728,"TargetID":134729,"Directional":false},{"SourceID":135023,"TargetID":135024,"Directional":false}]},{"ID":1668,"SourceStructureID":9693,"TargetStructureID":2610,"Label":"9693-2610 via Gap Junction from 9760 -> 9761, 15012 -> 2861, 18732 -> 18733, 101442 -> 101443, 119819 -> 17221, 120073 -> 120078, 120076 -> 120077, 134723 -> 119839, 134727 -> 120088, 134731 -> 95761, 134990 -> 134991","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9760,"TargetID":9761,"Directional":false},{"SourceID":15012,"TargetID":2861,"Directional":false},{"SourceID":18732,"TargetID":18733,"Directional":false},{"SourceID":101442,"TargetID":101443,"Directional":false},{"SourceID":119819,"TargetID":17221,"Directional":false},{"SourceID":120073,"TargetID":120078,"Directional":false},{"SourceID":120076,"TargetID":120077,"Directional":false},{"SourceID":134723,"TargetID":119839,"Directional":false},{"SourceID":134727,"TargetID":120088,"Directional":false},{"SourceID":134731,"TargetID":95761,"Directional":false},{"SourceID":134990,"TargetID":134991,"Directional":false}]},{"ID":1669,"SourceStructureID":2610,"TargetStructureID":25405,"Label":"2610-25405 via Adherens from 25409 -> 25408","Type":"Adherens","Directional":false,"Links":[{"SourceID":25409,"TargetID":25408,"Directional":false}]},{"ID":1670,"SourceStructureID":2610,"TargetStructureID":25466,"Label":"2610-25466 via Adherens from 25472 -> 25471","Type":"Adherens","Directional":false,"Links":[{"SourceID":25472,"TargetID":25471,"Directional":false}]},{"ID":1671,"SourceStructureID":25669,"TargetStructureID":2610,"Label":"25669-2610 via Adherens from 25684 -> 17982","Type":"Adherens","Directional":false,"Links":[{"SourceID":25684,"TargetID":17982,"Directional":false}]},{"ID":1672,"SourceStructureID":2610,"TargetStructureID":28886,"Label":"2610-28886 via Adherens from 135006 -> 135007","Type":"Adherens","Directional":false,"Links":[{"SourceID":135006,"TargetID":135007,"Directional":false}]},{"ID":1673,"SourceStructureID":28886,"TargetStructureID":2610,"Label":"28886-2610 via Gap Junction from 51296 -> 51297, 51324 -> 51323, 51370 -> 2924, 135008 -> 135005","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51296,"TargetID":51297,"Directional":false},{"SourceID":51324,"TargetID":51323,"Directional":false},{"SourceID":51370,"TargetID":2924,"Directional":false},{"SourceID":135008,"TargetID":135005,"Directional":false}]},{"ID":1674,"SourceStructureID":39530,"TargetStructureID":2610,"Label":"39530-2610 via Adherens from 39554 -> 39546","Type":"Adherens","Directional":false,"Links":[{"SourceID":39554,"TargetID":39546,"Directional":false}]},{"ID":1675,"SourceStructureID":45894,"TargetStructureID":2610,"Label":"45894-2610 via Gap Junction from 46929 -> 2971","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46929,"TargetID":2971,"Directional":false}]},{"ID":1676,"SourceStructureID":3116,"TargetStructureID":3116,"Label":"3116-3116 via Gap Junction from 123280 -> 123281","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123280,"TargetID":123281,"Directional":false}]},{"ID":1677,"SourceStructureID":4569,"TargetStructureID":3116,"Label":"4569-3116 via Gap Junction from 23807 -> 23821, 23827 -> 23828, 23830 -> 23831, 46762 -> 46761, 47842 -> 23787, 52504 -> 52505, 52538 -> 52540","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23807,"TargetID":23821,"Directional":false},{"SourceID":23827,"TargetID":23828,"Directional":false},{"SourceID":23830,"TargetID":23831,"Directional":false},{"SourceID":46762,"TargetID":46761,"Directional":false},{"SourceID":47842,"TargetID":23787,"Directional":false},{"SourceID":52504,"TargetID":52505,"Directional":false},{"SourceID":52538,"TargetID":52540,"Directional":false}]},{"ID":1678,"SourceStructureID":3116,"TargetStructureID":5278,"Label":"3116-5278 via Touch from 92154 -> 92153","Type":"Touch","Directional":false,"Links":[{"SourceID":92154,"TargetID":92153,"Directional":false}]},{"ID":1679,"SourceStructureID":3116,"TargetStructureID":6155,"Label":"3116-6155 via Gap Junction from 122365 -> 122364","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122365,"TargetID":122364,"Directional":false}]},{"ID":1680,"SourceStructureID":3116,"TargetStructureID":6155,"Label":"3116-6155 via Touch from 106444 -> 106445","Type":"Touch","Directional":false,"Links":[{"SourceID":106444,"TargetID":106445,"Directional":false}]},{"ID":1681,"SourceStructureID":29827,"TargetStructureID":3116,"Label":"29827-3116 via Unknown from 135534 -> 135533","Type":"Unknown","Directional":false,"Links":[{"SourceID":135534,"TargetID":135533,"Directional":false}]},{"ID":1682,"SourceStructureID":83179,"TargetStructureID":3116,"Label":"83179-3116 via Unknown from 92479 -> 92480","Type":"Unknown","Directional":false,"Links":[{"SourceID":92479,"TargetID":92480,"Directional":false}]},{"ID":1683,"SourceStructureID":91449,"TargetStructureID":3116,"Label":"91449-3116 via Adherens from 91450 -> 91451","Type":"Adherens","Directional":false,"Links":[{"SourceID":91450,"TargetID":91451,"Directional":false}]},{"ID":1684,"SourceStructureID":91544,"TargetStructureID":3116,"Label":"91544-3116 via Adherens from 91546 -> 91545","Type":"Adherens","Directional":false,"Links":[{"SourceID":91546,"TargetID":91545,"Directional":false}]},{"ID":1685,"SourceStructureID":98898,"TargetStructureID":3116,"Label":"98898-3116 via Gap Junction from 98903 -> 98904","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98903,"TargetID":98904,"Directional":false}]},{"ID":1686,"SourceStructureID":3116,"TargetStructureID":99025,"Label":"3116-99025 via Gap Junction from 99027 -> 99026","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99027,"TargetID":99026,"Directional":false}]},{"ID":1687,"SourceStructureID":3257,"TargetStructureID":4569,"Label":"3257-4569 via Gap Junction from 16373 -> 52526, 47488 -> 47489, 98447 -> 98446, 99087 -> 99086","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16373,"TargetID":52526,"Directional":false},{"SourceID":47488,"TargetID":47489,"Directional":false},{"SourceID":98447,"TargetID":98446,"Directional":false},{"SourceID":99087,"TargetID":99086,"Directional":false}]},{"ID":1688,"SourceStructureID":4570,"TargetStructureID":3257,"Label":"4570-3257 via Gap Junction from 10669 -> 8239, 10868 -> 10852, 14407 -> 14406","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10669,"TargetID":8239,"Directional":false},{"SourceID":10868,"TargetID":10852,"Directional":false},{"SourceID":14407,"TargetID":14406,"Directional":false}]},{"ID":1689,"SourceStructureID":3257,"TargetStructureID":4850,"Label":"3257-4850 via Adherens from 97990 -> 14565","Type":"Adherens","Directional":false,"Links":[{"SourceID":97990,"TargetID":14565,"Directional":false}]},{"ID":1690,"SourceStructureID":5635,"TargetStructureID":3257,"Label":"5635-3257 via Gap Junction from 55981 -> 55980","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55981,"TargetID":55980,"Directional":false}]},{"ID":1691,"SourceStructureID":3257,"TargetStructureID":5860,"Label":"3257-5860 via Gap Junction from 29681 -> 6198, 29682 -> 29683","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29681,"TargetID":6198,"Directional":false},{"SourceID":29682,"TargetID":29683,"Directional":false}]},{"ID":1692,"SourceStructureID":6117,"TargetStructureID":3257,"Label":"6117-3257 via Gap Junction from 59088 -> 59083","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59088,"TargetID":59083,"Directional":false}]},{"ID":1693,"SourceStructureID":6169,"TargetStructureID":3257,"Label":"6169-3257 via Gap Junction from 16193 -> 16203, 16225 -> 16214, 18413 -> 18412, 23058 -> 11912, 29696 -> 29695, 39559 -> 16213, 92700 -> 92699, 133080 -> 9142","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16193,"TargetID":16203,"Directional":false},{"SourceID":16225,"TargetID":16214,"Directional":false},{"SourceID":18413,"TargetID":18412,"Directional":false},{"SourceID":23058,"TargetID":11912,"Directional":false},{"SourceID":29696,"TargetID":29695,"Directional":false},{"SourceID":39559,"TargetID":16213,"Directional":false},{"SourceID":92700,"TargetID":92699,"Directional":false},{"SourceID":133080,"TargetID":9142,"Directional":false}]},{"ID":1694,"SourceStructureID":7564,"TargetStructureID":3257,"Label":"7564-3257 via Gap Junction from 29691 -> 29690","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29691,"TargetID":29690,"Directional":false}]},{"ID":1695,"SourceStructureID":3257,"TargetStructureID":10959,"Label":"3257-10959 via Adherens from 86796 -> 86795","Type":"Adherens","Directional":false,"Links":[{"SourceID":86796,"TargetID":86795,"Directional":false}]},{"ID":1696,"SourceStructureID":3257,"TargetStructureID":42432,"Label":"3257-42432 via Adherens from 42436 -> 42435, 42441 -> 42440","Type":"Adherens","Directional":false,"Links":[{"SourceID":42436,"TargetID":42435,"Directional":false},{"SourceID":42441,"TargetID":42440,"Directional":false}]},{"ID":1697,"SourceStructureID":79317,"TargetStructureID":3257,"Label":"79317-3257 via Gap Junction from 98985 -> 98986","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98985,"TargetID":98986,"Directional":false}]},{"ID":1698,"SourceStructureID":86305,"TargetStructureID":3257,"Label":"86305-3257 via Adherens from 86306 -> 86307","Type":"Adherens","Directional":false,"Links":[{"SourceID":86306,"TargetID":86307,"Directional":false}]},{"ID":1699,"SourceStructureID":86751,"TargetStructureID":3257,"Label":"86751-3257 via Adherens from 86752 -> 16372","Type":"Adherens","Directional":false,"Links":[{"SourceID":86752,"TargetID":16372,"Directional":false}]},{"ID":1700,"SourceStructureID":86761,"TargetStructureID":3257,"Label":"86761-3257 via Adherens from 86772 -> 9174","Type":"Adherens","Directional":false,"Links":[{"SourceID":86772,"TargetID":9174,"Directional":false}]},{"ID":1701,"SourceStructureID":86822,"TargetStructureID":3257,"Label":"86822-3257 via Adherens from 86823 -> 86825, 86824 -> 86826, 86827 -> 86828, 86830 -> 86829","Type":"Adherens","Directional":false,"Links":[{"SourceID":86823,"TargetID":86825,"Directional":false},{"SourceID":86824,"TargetID":86826,"Directional":false},{"SourceID":86827,"TargetID":86828,"Directional":false},{"SourceID":86830,"TargetID":86829,"Directional":false}]},{"ID":1702,"SourceStructureID":86876,"TargetStructureID":3257,"Label":"86876-3257 via Adherens from 86880 -> 86881, 86882 -> 9173, 86884 -> 86883","Type":"Adherens","Directional":false,"Links":[{"SourceID":86880,"TargetID":86881,"Directional":false},{"SourceID":86882,"TargetID":9173,"Directional":false},{"SourceID":86884,"TargetID":86883,"Directional":false}]},{"ID":1703,"SourceStructureID":3257,"TargetStructureID":98127,"Label":"3257-98127 via Adherens from 98900 -> 98899","Type":"Adherens","Directional":false,"Links":[{"SourceID":98900,"TargetID":98899,"Directional":false}]},{"ID":1704,"SourceStructureID":135052,"TargetStructureID":3257,"Label":"135052-3257 via Gap Junction from 135057 -> 15461","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135057,"TargetID":15461,"Directional":false}]},{"ID":1705,"SourceStructureID":3679,"TargetStructureID":3679,"Label":"3679-3679 via Adherens from 13461 -> 130120","Type":"Adherens","Directional":false,"Links":[{"SourceID":13461,"TargetID":130120,"Directional":false}]},{"ID":1706,"SourceStructureID":3679,"TargetStructureID":3679,"Label":"3679-3679 via Gap Junction from 33033 -> 14922, 33035 -> 33034, 33037 -> 33036, 62877 -> 33029","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":33033,"TargetID":14922,"Directional":false},{"SourceID":33035,"TargetID":33034,"Directional":false},{"SourceID":33037,"TargetID":33036,"Directional":false},{"SourceID":62877,"TargetID":33029,"Directional":false}]},{"ID":1707,"SourceStructureID":3679,"TargetStructureID":3679,"Label":"3679-3679 via Unknown from 92720 -> 92721","Type":"Unknown","Directional":false,"Links":[{"SourceID":92720,"TargetID":92721,"Directional":false}]},{"ID":1708,"SourceStructureID":4850,"TargetStructureID":3679,"Label":"4850-3679 via Adherens from 14212 -> 8016","Type":"Adherens","Directional":false,"Links":[{"SourceID":14212,"TargetID":8016,"Directional":false}]},{"ID":1709,"SourceStructureID":3679,"TargetStructureID":5017,"Label":"3679-5017 via Adherens from 115709 -> 115708","Type":"Adherens","Directional":false,"Links":[{"SourceID":115709,"TargetID":115708,"Directional":false}]},{"ID":1710,"SourceStructureID":3679,"TargetStructureID":5150,"Label":"3679-5150 via Adherens from 131324 -> 131325","Type":"Adherens","Directional":false,"Links":[{"SourceID":131324,"TargetID":131325,"Directional":false}]},{"ID":1711,"SourceStructureID":5279,"TargetStructureID":3679,"Label":"5279-3679 via Gap Junction from 6340 -> 3709, 6359 -> 6355, 49258 -> 3784, 92540 -> 92539, 97206 -> 97207, 97531 -> 3779, 97577 -> 27431, 133860 -> 133861, 147965 -> 3782","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":6340,"TargetID":3709,"Directional":false},{"SourceID":6359,"TargetID":6355,"Directional":false},{"SourceID":49258,"TargetID":3784,"Directional":false},{"SourceID":92540,"TargetID":92539,"Directional":false},{"SourceID":97206,"TargetID":97207,"Directional":false},{"SourceID":97531,"TargetID":3779,"Directional":false},{"SourceID":97577,"TargetID":27431,"Directional":false},{"SourceID":133860,"TargetID":133861,"Directional":false},{"SourceID":147965,"TargetID":3782,"Directional":false}]},{"ID":1712,"SourceStructureID":5283,"TargetStructureID":3679,"Label":"5283-3679 via Adherens from 124154 -> 135063, 132179 -> 132178","Type":"Adherens","Directional":false,"Links":[{"SourceID":124154,"TargetID":135063,"Directional":false},{"SourceID":132179,"TargetID":132178,"Directional":false}]},{"ID":1713,"SourceStructureID":5283,"TargetStructureID":3679,"Label":"5283-3679 via Gap Junction from 22413 -> 22412, 130542 -> 130541, 131659 -> 131658, 131696 -> 131697, 132090 -> 66991, 132176 -> 132177, 132193 -> 132192, 132293 -> 132292, 132308 -> 132307, 132310 -> 132309","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":22413,"TargetID":22412,"Directional":false},{"SourceID":130542,"TargetID":130541,"Directional":false},{"SourceID":131659,"TargetID":131658,"Directional":false},{"SourceID":131696,"TargetID":131697,"Directional":false},{"SourceID":132090,"TargetID":66991,"Directional":false},{"SourceID":132176,"TargetID":132177,"Directional":false},{"SourceID":132193,"TargetID":132192,"Directional":false},{"SourceID":132293,"TargetID":132292,"Directional":false},{"SourceID":132308,"TargetID":132307,"Directional":false},{"SourceID":132310,"TargetID":132309,"Directional":false}]},{"ID":1714,"SourceStructureID":3679,"TargetStructureID":5284,"Label":"3679-5284 via Gap Junction from 7952 -> 113470, 23458 -> 5186, 61065 -> 7953, 113408 -> 113407, 113630 -> 113629, 113647 -> 113646","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":7952,"TargetID":113470,"Directional":false},{"SourceID":23458,"TargetID":5186,"Directional":false},{"SourceID":61065,"TargetID":7953,"Directional":false},{"SourceID":113408,"TargetID":113407,"Directional":false},{"SourceID":113630,"TargetID":113629,"Directional":false},{"SourceID":113647,"TargetID":113646,"Directional":false}]},{"ID":1715,"SourceStructureID":5303,"TargetStructureID":3679,"Label":"5303-3679 via Adherens from 102641 -> 102642","Type":"Adherens","Directional":false,"Links":[{"SourceID":102641,"TargetID":102642,"Directional":false}]},{"ID":1716,"SourceStructureID":3679,"TargetStructureID":5394,"Label":"3679-5394 via Adherens from 7961 -> 77065, 77066 -> 7963, 87954 -> 87953","Type":"Adherens","Directional":false,"Links":[{"SourceID":7961,"TargetID":77065,"Directional":false},{"SourceID":77066,"TargetID":7963,"Directional":false},{"SourceID":87954,"TargetID":87953,"Directional":false}]},{"ID":1717,"SourceStructureID":5561,"TargetStructureID":3679,"Label":"5561-3679 via Gap Junction from 97096 -> 97103","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97096,"TargetID":97103,"Directional":false}]},{"ID":1718,"SourceStructureID":3679,"TargetStructureID":6117,"Label":"3679-6117 via Gap Junction from 22393 -> 22392, 30881 -> 7955, 83145 -> 83144, 83947 -> 83946, 134148 -> 134147","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":22393,"TargetID":22392,"Directional":false},{"SourceID":30881,"TargetID":7955,"Directional":false},{"SourceID":83145,"TargetID":83144,"Directional":false},{"SourceID":83947,"TargetID":83946,"Directional":false},{"SourceID":134148,"TargetID":134147,"Directional":false}]},{"ID":1719,"SourceStructureID":6169,"TargetStructureID":3679,"Label":"6169-3679 via Gap Junction from 10839 -> 3729, 14913 -> 3719, 14927 -> 9697, 14942 -> 9699, 16326 -> 8023, 16438 -> 16437, 16761 -> 16760, 18159 -> 18157, 18404 -> 18403, 24657 -> 9695, 29706 -> 29705, 41036 -> 3725, 87743 -> 3752, 87744 -> 3755, 133064 -> 132902","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10839,"TargetID":3729,"Directional":false},{"SourceID":14913,"TargetID":3719,"Directional":false},{"SourceID":14927,"TargetID":9697,"Directional":false},{"SourceID":14942,"TargetID":9699,"Directional":false},{"SourceID":16326,"TargetID":8023,"Directional":false},{"SourceID":16438,"TargetID":16437,"Directional":false},{"SourceID":16761,"TargetID":16760,"Directional":false},{"SourceID":18159,"TargetID":18157,"Directional":false},{"SourceID":18404,"TargetID":18403,"Directional":false},{"SourceID":24657,"TargetID":9695,"Directional":false},{"SourceID":29706,"TargetID":29705,"Directional":false},{"SourceID":41036,"TargetID":3725,"Directional":false},{"SourceID":87743,"TargetID":3752,"Directional":false},{"SourceID":87744,"TargetID":3755,"Directional":false},{"SourceID":133064,"TargetID":132902,"Directional":false}]},{"ID":1720,"SourceStructureID":3679,"TargetStructureID":7050,"Label":"3679-7050 via Gap Junction from 7998 -> 24612","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":7998,"TargetID":24612,"Directional":false}]},{"ID":1721,"SourceStructureID":3679,"TargetStructureID":8037,"Label":"3679-8037 via Gap Junction from 148174 -> 148173","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":148174,"TargetID":148173,"Directional":false}]},{"ID":1722,"SourceStructureID":3679,"TargetStructureID":9643,"Label":"3679-9643 via Adherens from 9656 -> 9655","Type":"Adherens","Directional":false,"Links":[{"SourceID":9656,"TargetID":9655,"Directional":false}]},{"ID":1723,"SourceStructureID":12897,"TargetStructureID":3679,"Label":"12897-3679 via Gap Junction from 24625 -> 24624, 24746 -> 5208, 24751 -> 24750, 24755 -> 24754, 132303 -> 132304, 132312 -> 132313","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24625,"TargetID":24624,"Directional":false},{"SourceID":24746,"TargetID":5208,"Directional":false},{"SourceID":24751,"TargetID":24750,"Directional":false},{"SourceID":24755,"TargetID":24754,"Directional":false},{"SourceID":132303,"TargetID":132304,"Directional":false},{"SourceID":132312,"TargetID":132313,"Directional":false}]},{"ID":1724,"SourceStructureID":16026,"TargetStructureID":3679,"Label":"16026-3679 via Adherens from 91106 -> 134570, 92902 -> 92903, 134570 -> 91107, 134686 -> 134685","Type":"Adherens","Directional":false,"Links":[{"SourceID":91106,"TargetID":134570,"Directional":false},{"SourceID":92902,"TargetID":92903,"Directional":false},{"SourceID":134570,"TargetID":91107,"Directional":false},{"SourceID":134686,"TargetID":134685,"Directional":false}]},{"ID":1725,"SourceStructureID":16026,"TargetStructureID":3679,"Label":"16026-3679 via Gap Junction from 24594 -> 5189, 66411 -> 66410, 91052 -> 91051, 91054 -> 91053, 91108 -> 91109, 91131 -> 91141, 91259 -> 91250, 91325 -> 91174, 92566 -> 92565, 92761 -> 92760, 124831 -> 124832, 134441 -> 134440","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24594,"TargetID":5189,"Directional":false},{"SourceID":66411,"TargetID":66410,"Directional":false},{"SourceID":91052,"TargetID":91051,"Directional":false},{"SourceID":91054,"TargetID":91053,"Directional":false},{"SourceID":91108,"TargetID":91109,"Directional":false},{"SourceID":91131,"TargetID":91141,"Directional":false},{"SourceID":91259,"TargetID":91250,"Directional":false},{"SourceID":91325,"TargetID":91174,"Directional":false},{"SourceID":92566,"TargetID":92565,"Directional":false},{"SourceID":92761,"TargetID":92760,"Directional":false},{"SourceID":124831,"TargetID":124832,"Directional":false},{"SourceID":134441,"TargetID":134440,"Directional":false}]},{"ID":1726,"SourceStructureID":20136,"TargetStructureID":3679,"Label":"20136-3679 via Gap Junction from 120517 -> 120516","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120517,"TargetID":120516,"Directional":false}]},{"ID":1727,"SourceStructureID":3679,"TargetStructureID":39331,"Label":"3679-39331 via Adherens from 39334 -> 39333","Type":"Adherens","Directional":false,"Links":[{"SourceID":39334,"TargetID":39333,"Directional":false}]},{"ID":1728,"SourceStructureID":3679,"TargetStructureID":40931,"Label":"3679-40931 via Adherens from 123159 -> 123158","Type":"Adherens","Directional":false,"Links":[{"SourceID":123159,"TargetID":123158,"Directional":false}]},{"ID":1729,"SourceStructureID":3679,"TargetStructureID":40965,"Label":"3679-40965 via Adherens from 40972 -> 40971","Type":"Adherens","Directional":false,"Links":[{"SourceID":40972,"TargetID":40971,"Directional":false}]},{"ID":1730,"SourceStructureID":3679,"TargetStructureID":79382,"Label":"3679-79382 via Adherens from 79381 -> 79383","Type":"Adherens","Directional":false,"Links":[{"SourceID":79381,"TargetID":79383,"Directional":false}]},{"ID":1731,"SourceStructureID":83603,"TargetStructureID":3679,"Label":"83603-3679 via Adherens from 134923 -> 134922","Type":"Adherens","Directional":false,"Links":[{"SourceID":134923,"TargetID":134922,"Directional":false}]},{"ID":1732,"SourceStructureID":3679,"TargetStructureID":97683,"Label":"3679-97683 via Adherens from 97697 -> 97696","Type":"Adherens","Directional":false,"Links":[{"SourceID":97697,"TargetID":97696,"Directional":false}]},{"ID":1733,"SourceStructureID":3679,"TargetStructureID":101553,"Label":"3679-101553 via Unknown from 101573 -> 101572","Type":"Unknown","Directional":false,"Links":[{"SourceID":101573,"TargetID":101572,"Directional":false}]},{"ID":1734,"SourceStructureID":102599,"TargetStructureID":3679,"Label":"102599-3679 via Adherens from 123152 -> 123153","Type":"Adherens","Directional":false,"Links":[{"SourceID":123152,"TargetID":123153,"Directional":false}]},{"ID":1735,"SourceStructureID":3756,"TargetStructureID":3756,"Label":"3756-3756 via Gap Junction from 128841 -> 128842, 129197 -> 129198","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":128841,"TargetID":128842,"Directional":false},{"SourceID":129197,"TargetID":129198,"Directional":false}]},{"ID":1736,"SourceStructureID":4877,"TargetStructureID":3756,"Label":"4877-3756 via Gap Junction from 128983 -> 128984","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":128983,"TargetID":128984,"Directional":false}]},{"ID":1737,"SourceStructureID":3756,"TargetStructureID":5297,"Label":"3756-5297 via Gap Junction from 120974 -> 120973","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120974,"TargetID":120973,"Directional":false}]},{"ID":1738,"SourceStructureID":3756,"TargetStructureID":5297,"Label":"3756-5297 via Touch from 120972 -> 120971","Type":"Touch","Directional":false,"Links":[{"SourceID":120972,"TargetID":120971,"Directional":false}]},{"ID":1739,"SourceStructureID":5442,"TargetStructureID":3756,"Label":"5442-3756 via Unknown from 129078 -> 129079","Type":"Unknown","Directional":false,"Links":[{"SourceID":129078,"TargetID":129079,"Directional":false}]},{"ID":1740,"SourceStructureID":3756,"TargetStructureID":5598,"Label":"3756-5598 via Adherens from 126952 -> 127665","Type":"Adherens","Directional":false,"Links":[{"SourceID":126952,"TargetID":127665,"Directional":false}]},{"ID":1741,"SourceStructureID":5598,"TargetStructureID":3756,"Label":"5598-3756 via Gap Junction from 56921 -> 56920, 116059 -> 120935, 119328 -> 119327, 120966 -> 120967, 120968 -> 120969, 123880 -> 123881, 124481 -> 124480","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56921,"TargetID":56920,"Directional":false},{"SourceID":116059,"TargetID":120935,"Directional":false},{"SourceID":119328,"TargetID":119327,"Directional":false},{"SourceID":120966,"TargetID":120967,"Directional":false},{"SourceID":120968,"TargetID":120969,"Directional":false},{"SourceID":123880,"TargetID":123881,"Directional":false},{"SourceID":124481,"TargetID":124480,"Directional":false}]},{"ID":1742,"SourceStructureID":5598,"TargetStructureID":3756,"Label":"5598-3756 via Touch from 116061 -> 116060","Type":"Touch","Directional":false,"Links":[{"SourceID":116061,"TargetID":116060,"Directional":false}]},{"ID":1743,"SourceStructureID":5599,"TargetStructureID":3756,"Label":"5599-3756 via Touch from 129089 -> 129088","Type":"Touch","Directional":false,"Links":[{"SourceID":129089,"TargetID":129088,"Directional":false}]},{"ID":1744,"SourceStructureID":3756,"TargetStructureID":6047,"Label":"3756-6047 via Adherens from 113241 -> 113240, 129270 -> 129271, 129362 -> 129363, 129391 -> 129390","Type":"Adherens","Directional":false,"Links":[{"SourceID":113241,"TargetID":113240,"Directional":false},{"SourceID":129270,"TargetID":129271,"Directional":false},{"SourceID":129362,"TargetID":129363,"Directional":false},{"SourceID":129391,"TargetID":129390,"Directional":false}]},{"ID":1745,"SourceStructureID":3756,"TargetStructureID":6047,"Label":"3756-6047 via Gap Junction from 53625 -> 53634, 57306 -> 57340, 112532 -> 112533, 112833 -> 112832, 113189 -> 113188, 116147 -> 116146, 120982 -> 120983, 129304 -> 129305, 129351 -> 129350, 129353 -> 129354, 129376 -> 56902, 129386 -> 129387, 129450 -> 129451","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53625,"TargetID":53634,"Directional":false},{"SourceID":57306,"TargetID":57340,"Directional":false},{"SourceID":112532,"TargetID":112533,"Directional":false},{"SourceID":112833,"TargetID":112832,"Directional":false},{"SourceID":113189,"TargetID":113188,"Directional":false},{"SourceID":116147,"TargetID":116146,"Directional":false},{"SourceID":120982,"TargetID":120983,"Directional":false},{"SourceID":129304,"TargetID":129305,"Directional":false},{"SourceID":129351,"TargetID":129350,"Directional":false},{"SourceID":129353,"TargetID":129354,"Directional":false},{"SourceID":129376,"TargetID":56902,"Directional":false},{"SourceID":129386,"TargetID":129387,"Directional":false},{"SourceID":129450,"TargetID":129451,"Directional":false}]},{"ID":1746,"SourceStructureID":3756,"TargetStructureID":6050,"Label":"3756-6050 via Adherens from 56075 -> 56074, 113566 -> 127287, 127050 -> 127049, 127060 -> 127059, 127179 -> 127178, 127227 -> 127226, 127471 -> 127472, 127484 -> 127483, 127504 -> 127503, 127635 -> 127636, 127640 -> 127641, 127644 -> 127645, 128888 -> 128889","Type":"Adherens","Directional":false,"Links":[{"SourceID":56075,"TargetID":56074,"Directional":false},{"SourceID":113566,"TargetID":127287,"Directional":false},{"SourceID":127050,"TargetID":127049,"Directional":false},{"SourceID":127060,"TargetID":127059,"Directional":false},{"SourceID":127179,"TargetID":127178,"Directional":false},{"SourceID":127227,"TargetID":127226,"Directional":false},{"SourceID":127471,"TargetID":127472,"Directional":false},{"SourceID":127484,"TargetID":127483,"Directional":false},{"SourceID":127504,"TargetID":127503,"Directional":false},{"SourceID":127635,"TargetID":127636,"Directional":false},{"SourceID":127640,"TargetID":127641,"Directional":false},{"SourceID":127644,"TargetID":127645,"Directional":false},{"SourceID":128888,"TargetID":128889,"Directional":false}]},{"ID":1747,"SourceStructureID":6050,"TargetStructureID":3756,"Label":"6050-3756 via Gap Junction from 54413 -> 54453, 54449 -> 54450, 54454 -> 54455, 56044 -> 56042, 56070 -> 56071, 56722 -> 56052, 69843 -> 69841, 69851 -> 69850, 113879 -> 113878, 113888 -> 113887, 113893 -> 113892, 113912 -> 113911, 114002 -> 114001, 114019 -> 114016, 114042 -> 114040, 114249 -> 54443, 114252 -> 114251, 114263 -> 93261, 115758 -> 113970, 119690 -> 119689, 127101 -> 127100, 127118 -> 127119, 127535 -> 127533, 128955 -> 128956","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54413,"TargetID":54453,"Directional":false},{"SourceID":54449,"TargetID":54450,"Directional":false},{"SourceID":54454,"TargetID":54455,"Directional":false},{"SourceID":56044,"TargetID":56042,"Directional":false},{"SourceID":56070,"TargetID":56071,"Directional":false},{"SourceID":56722,"TargetID":56052,"Directional":false},{"SourceID":69843,"TargetID":69841,"Directional":false},{"SourceID":69851,"TargetID":69850,"Directional":false},{"SourceID":113879,"TargetID":113878,"Directional":false},{"SourceID":113888,"TargetID":113887,"Directional":false},{"SourceID":113893,"TargetID":113892,"Directional":false},{"SourceID":113912,"TargetID":113911,"Directional":false},{"SourceID":114002,"TargetID":114001,"Directional":false},{"SourceID":114019,"TargetID":114016,"Directional":false},{"SourceID":114042,"TargetID":114040,"Directional":false},{"SourceID":114249,"TargetID":54443,"Directional":false},{"SourceID":114252,"TargetID":114251,"Directional":false},{"SourceID":114263,"TargetID":93261,"Directional":false},{"SourceID":115758,"TargetID":113970,"Directional":false},{"SourceID":119690,"TargetID":119689,"Directional":false},{"SourceID":127101,"TargetID":127100,"Directional":false},{"SourceID":127118,"TargetID":127119,"Directional":false},{"SourceID":127535,"TargetID":127533,"Directional":false},{"SourceID":128955,"TargetID":128956,"Directional":false}]},{"ID":1748,"SourceStructureID":3756,"TargetStructureID":6050,"Label":"3756-6050 via Touch from 128931 -> 128932","Type":"Touch","Directional":false,"Links":[{"SourceID":128931,"TargetID":128932,"Directional":false}]},{"ID":1749,"SourceStructureID":3756,"TargetStructureID":6115,"Label":"3756-6115 via Touch from 128950 -> 128951, 135159 -> 135158","Type":"Touch","Directional":false,"Links":[{"SourceID":128950,"TargetID":128951,"Directional":false},{"SourceID":135159,"TargetID":135158,"Directional":false}]},{"ID":1750,"SourceStructureID":6203,"TargetStructureID":3756,"Label":"6203-3756 via Gap Junction from 116195 -> 116194, 125383 -> 56915","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116195,"TargetID":116194,"Directional":false},{"SourceID":125383,"TargetID":56915,"Directional":false}]},{"ID":1751,"SourceStructureID":7113,"TargetStructureID":3756,"Label":"7113-3756 via Touch from 131386 -> 131387","Type":"Touch","Directional":false,"Links":[{"SourceID":131386,"TargetID":131387,"Directional":false}]},{"ID":1752,"SourceStructureID":3756,"TargetStructureID":7147,"Label":"3756-7147 via Touch from 136498 -> 136499","Type":"Touch","Directional":false,"Links":[{"SourceID":136498,"TargetID":136499,"Directional":false}]},{"ID":1753,"SourceStructureID":56710,"TargetStructureID":3756,"Label":"56710-3756 via Adherens from 120985 -> 120986","Type":"Adherens","Directional":false,"Links":[{"SourceID":120985,"TargetID":120986,"Directional":false}]},{"ID":1754,"SourceStructureID":56710,"TargetStructureID":3756,"Label":"56710-3756 via Unknown from 135966 -> 135967","Type":"Unknown","Directional":false,"Links":[{"SourceID":135966,"TargetID":135967,"Directional":false}]},{"ID":1755,"SourceStructureID":57034,"TargetStructureID":3756,"Label":"57034-3756 via Unknown from 128809 -> 128808","Type":"Unknown","Directional":false,"Links":[{"SourceID":128809,"TargetID":128808,"Directional":false}]},{"ID":1756,"SourceStructureID":3756,"TargetStructureID":57063,"Label":"3756-57063 via Adherens from 129067 -> 129068, 129080 -> 129081","Type":"Adherens","Directional":false,"Links":[{"SourceID":129067,"TargetID":129068,"Directional":false},{"SourceID":129080,"TargetID":129081,"Directional":false}]},{"ID":1757,"SourceStructureID":3756,"TargetStructureID":57063,"Label":"3756-57063 via Gap Junction from 116265 -> 116266","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116265,"TargetID":116266,"Directional":false}]},{"ID":1758,"SourceStructureID":3756,"TargetStructureID":57063,"Label":"3756-57063 via Unknown from 129085 -> 129084","Type":"Unknown","Directional":false,"Links":[{"SourceID":129085,"TargetID":129084,"Directional":false}]},{"ID":1759,"SourceStructureID":3756,"TargetStructureID":57064,"Label":"3756-57064 via Adherens from 128923 -> 128925, 128953 -> 128954","Type":"Adherens","Directional":false,"Links":[{"SourceID":128923,"TargetID":128925,"Directional":false},{"SourceID":128953,"TargetID":128954,"Directional":false}]},{"ID":1760,"SourceStructureID":3756,"TargetStructureID":57064,"Label":"3756-57064 via Gap Junction from 69852 -> 69853","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":69852,"TargetID":69853,"Directional":false}]},{"ID":1761,"SourceStructureID":3756,"TargetStructureID":57064,"Label":"3756-57064 via Unknown from 127368 -> 128929, 128948 -> 128949, 136480 -> 127103, 136536 -> 136537","Type":"Unknown","Directional":false,"Links":[{"SourceID":127368,"TargetID":128929,"Directional":false},{"SourceID":128948,"TargetID":128949,"Directional":false},{"SourceID":136480,"TargetID":127103,"Directional":false},{"SourceID":136536,"TargetID":136537,"Directional":false}]},{"ID":1762,"SourceStructureID":68539,"TargetStructureID":3756,"Label":"68539-3756 via Adherens from 129284 -> 129283","Type":"Adherens","Directional":false,"Links":[{"SourceID":129284,"TargetID":129283,"Directional":false}]},{"ID":1763,"SourceStructureID":91578,"TargetStructureID":3756,"Label":"91578-3756 via Adherens from 129195 -> 129194","Type":"Adherens","Directional":false,"Links":[{"SourceID":129195,"TargetID":129194,"Directional":false}]},{"ID":1764,"SourceStructureID":91867,"TargetStructureID":3756,"Label":"91867-3756 via Unknown from 91868 -> 91869, 128966 -> 128967, 128974 -> 128975","Type":"Unknown","Directional":false,"Links":[{"SourceID":91868,"TargetID":91869,"Directional":false},{"SourceID":128966,"TargetID":128967,"Directional":false},{"SourceID":128974,"TargetID":128975,"Directional":false}]},{"ID":1765,"SourceStructureID":3756,"TargetStructureID":112756,"Label":"3756-112756 via Unknown from 112759 -> 112758","Type":"Unknown","Directional":false,"Links":[{"SourceID":112759,"TargetID":112758,"Directional":false}]},{"ID":1766,"SourceStructureID":3756,"TargetStructureID":113140,"Label":"3756-113140 via Adherens from 129388 -> 129389","Type":"Adherens","Directional":false,"Links":[{"SourceID":129388,"TargetID":129389,"Directional":false}]},{"ID":1767,"SourceStructureID":113153,"TargetStructureID":3756,"Label":"113153-3756 via Adherens from 120978 -> 120977","Type":"Adherens","Directional":false,"Links":[{"SourceID":120978,"TargetID":120977,"Directional":false}]},{"ID":1768,"SourceStructureID":113153,"TargetStructureID":3756,"Label":"113153-3756 via Unknown from 129260 -> 129259","Type":"Unknown","Directional":false,"Links":[{"SourceID":129260,"TargetID":129259,"Directional":false}]},{"ID":1769,"SourceStructureID":3756,"TargetStructureID":114221,"Label":"3756-114221 via Unknown from 136493 -> 136494","Type":"Unknown","Directional":false,"Links":[{"SourceID":136493,"TargetID":136494,"Directional":false}]},{"ID":1770,"SourceStructureID":3756,"TargetStructureID":116142,"Label":"3756-116142 via Adherens from 116135 -> 129356, 116143 -> 116144, 129187 -> 129188, 129243 -> 129244, 129269 -> 129268, 129369 -> 129370","Type":"Adherens","Directional":false,"Links":[{"SourceID":116135,"TargetID":129356,"Directional":false},{"SourceID":116143,"TargetID":116144,"Directional":false},{"SourceID":129187,"TargetID":129188,"Directional":false},{"SourceID":129243,"TargetID":129244,"Directional":false},{"SourceID":129269,"TargetID":129268,"Directional":false},{"SourceID":129369,"TargetID":129370,"Directional":false}]},{"ID":1771,"SourceStructureID":3756,"TargetStructureID":116142,"Label":"3756-116142 via Gap Junction from 56893 -> 129357, 56919 -> 129186, 129267 -> 56891","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56893,"TargetID":129357,"Directional":false},{"SourceID":56919,"TargetID":129186,"Directional":false},{"SourceID":129267,"TargetID":56891,"Directional":false}]},{"ID":1772,"SourceStructureID":3756,"TargetStructureID":116142,"Label":"3756-116142 via Unknown from 126911 -> 126912, 129230 -> 129231, 129250 -> 129245, 129279 -> 129281, 129402 -> 129401, 129408 -> 129407, 129427 -> 129428","Type":"Unknown","Directional":false,"Links":[{"SourceID":126911,"TargetID":126912,"Directional":false},{"SourceID":129230,"TargetID":129231,"Directional":false},{"SourceID":129250,"TargetID":129245,"Directional":false},{"SourceID":129279,"TargetID":129281,"Directional":false},{"SourceID":129402,"TargetID":129401,"Directional":false},{"SourceID":129408,"TargetID":129407,"Directional":false},{"SourceID":129427,"TargetID":129428,"Directional":false}]},{"ID":1773,"SourceStructureID":116279,"TargetStructureID":3756,"Label":"116279-3756 via Adherens from 129103 -> 129102","Type":"Adherens","Directional":false,"Links":[{"SourceID":129103,"TargetID":129102,"Directional":false}]},{"ID":1774,"SourceStructureID":116279,"TargetStructureID":3756,"Label":"116279-3756 via Gap Junction from 116280 -> 116278","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116280,"TargetID":116278,"Directional":false}]},{"ID":1775,"SourceStructureID":3756,"TargetStructureID":120303,"Label":"3756-120303 via Unknown from 128898 -> 128899","Type":"Unknown","Directional":false,"Links":[{"SourceID":128898,"TargetID":128899,"Directional":false}]},{"ID":1776,"SourceStructureID":3756,"TargetStructureID":120311,"Label":"3756-120311 via Unknown from 128787 -> 128788","Type":"Unknown","Directional":false,"Links":[{"SourceID":128787,"TargetID":128788,"Directional":false}]},{"ID":1777,"SourceStructureID":120339,"TargetStructureID":3756,"Label":"120339-3756 via Unknown from 120342 -> 120341","Type":"Unknown","Directional":false,"Links":[{"SourceID":120342,"TargetID":120341,"Directional":false}]},{"ID":1778,"SourceStructureID":120359,"TargetStructureID":3756,"Label":"120359-3756 via Adherens from 129220 -> 129219, 129225 -> 129226","Type":"Adherens","Directional":false,"Links":[{"SourceID":129220,"TargetID":129219,"Directional":false},{"SourceID":129225,"TargetID":129226,"Directional":false}]},{"ID":1779,"SourceStructureID":3756,"TargetStructureID":120452,"Label":"3756-120452 via Adherens from 128972 -> 128973","Type":"Adherens","Directional":false,"Links":[{"SourceID":128972,"TargetID":128973,"Directional":false}]},{"ID":1780,"SourceStructureID":120482,"TargetStructureID":3756,"Label":"120482-3756 via Unknown from 129108 -> 129107","Type":"Unknown","Directional":false,"Links":[{"SourceID":129108,"TargetID":129107,"Directional":false}]},{"ID":1781,"SourceStructureID":3756,"TargetStructureID":120556,"Label":"3756-120556 via Adherens from 129377 -> 129378","Type":"Adherens","Directional":false,"Links":[{"SourceID":129377,"TargetID":129378,"Directional":false}]},{"ID":1782,"SourceStructureID":3756,"TargetStructureID":120559,"Label":"3756-120559 via Adherens from 129438 -> 129437","Type":"Adherens","Directional":false,"Links":[{"SourceID":129438,"TargetID":129437,"Directional":false}]},{"ID":1783,"SourceStructureID":3756,"TargetStructureID":120931,"Label":"3756-120931 via Adherens from 128774 -> 128773","Type":"Adherens","Directional":false,"Links":[{"SourceID":128774,"TargetID":128773,"Directional":false}]},{"ID":1784,"SourceStructureID":3756,"TargetStructureID":120931,"Label":"3756-120931 via Gap Junction from 116001 -> 120932","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116001,"TargetID":120932,"Directional":false}]},{"ID":1785,"SourceStructureID":120936,"TargetStructureID":3756,"Label":"120936-3756 via Adherens from 129266 -> 129265","Type":"Adherens","Directional":false,"Links":[{"SourceID":129266,"TargetID":129265,"Directional":false}]},{"ID":1786,"SourceStructureID":120936,"TargetStructureID":3756,"Label":"120936-3756 via Unknown from 129299 -> 129298","Type":"Unknown","Directional":false,"Links":[{"SourceID":129299,"TargetID":129298,"Directional":false}]},{"ID":1787,"SourceStructureID":3756,"TargetStructureID":120945,"Label":"3756-120945 via Unknown from 129444 -> 129445","Type":"Unknown","Directional":false,"Links":[{"SourceID":129444,"TargetID":129445,"Directional":false}]},{"ID":1788,"SourceStructureID":3756,"TargetStructureID":120948,"Label":"3756-120948 via Unknown from 120950 -> 120951","Type":"Unknown","Directional":false,"Links":[{"SourceID":120950,"TargetID":120951,"Directional":false}]},{"ID":1789,"SourceStructureID":3756,"TargetStructureID":120953,"Label":"3756-120953 via Adherens from 116234 -> 128936, 128935 -> 128934","Type":"Adherens","Directional":false,"Links":[{"SourceID":116234,"TargetID":128936,"Directional":false},{"SourceID":128935,"TargetID":128934,"Directional":false}]},{"ID":1790,"SourceStructureID":3756,"TargetStructureID":120953,"Label":"3756-120953 via Gap Junction from 116235 -> 120954","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116235,"TargetID":120954,"Directional":false}]},{"ID":1791,"SourceStructureID":120956,"TargetStructureID":3756,"Label":"120956-3756 via Adherens from 128938 -> 57030","Type":"Adherens","Directional":false,"Links":[{"SourceID":128938,"TargetID":57030,"Directional":false}]},{"ID":1792,"SourceStructureID":120956,"TargetStructureID":3756,"Label":"120956-3756 via Gap Junction from 120958 -> 116236","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120958,"TargetID":116236,"Directional":false}]},{"ID":1793,"SourceStructureID":120956,"TargetStructureID":3756,"Label":"120956-3756 via Unknown from 128988 -> 128987","Type":"Unknown","Directional":false,"Links":[{"SourceID":128988,"TargetID":128987,"Directional":false}]},{"ID":1794,"SourceStructureID":120960,"TargetStructureID":3756,"Label":"120960-3756 via Unknown from 129073 -> 129072","Type":"Unknown","Directional":false,"Links":[{"SourceID":129073,"TargetID":129072,"Directional":false}]},{"ID":1795,"SourceStructureID":3756,"TargetStructureID":124198,"Label":"3756-124198 via Unknown from 116287 -> 124203, 127286 -> 116277, 129109 -> 129110","Type":"Unknown","Directional":false,"Links":[{"SourceID":116287,"TargetID":124203,"Directional":false},{"SourceID":127286,"TargetID":116277,"Directional":false},{"SourceID":129109,"TargetID":129110,"Directional":false}]},{"ID":1796,"SourceStructureID":128961,"TargetStructureID":3756,"Label":"128961-3756 via Unknown from 128963 -> 120952, 128964 -> 128965","Type":"Unknown","Directional":false,"Links":[{"SourceID":128963,"TargetID":120952,"Directional":false},{"SourceID":128964,"TargetID":128965,"Directional":false}]},{"ID":1797,"SourceStructureID":136486,"TargetStructureID":3756,"Label":"136486-3756 via Adherens from 136488 -> 120970","Type":"Adherens","Directional":false,"Links":[{"SourceID":136488,"TargetID":120970,"Directional":false}]},{"ID":1798,"SourceStructureID":136486,"TargetStructureID":3756,"Label":"136486-3756 via Gap Junction from 136487 -> 128772","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136487,"TargetID":128772,"Directional":false}]},{"ID":1799,"SourceStructureID":3756,"TargetStructureID":136531,"Label":"3756-136531 via Gap Junction from 56914 -> 136532","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56914,"TargetID":136532,"Directional":false}]},{"ID":1800,"SourceStructureID":3881,"TargetStructureID":5609,"Label":"3881-5609 via Adherens from 64537 -> 64538","Type":"Adherens","Directional":false,"Links":[{"SourceID":64537,"TargetID":64538,"Directional":false}]},{"ID":1801,"SourceStructureID":8580,"TargetStructureID":3881,"Label":"8580-3881 via Touch from 59832 -> 59833","Type":"Touch","Directional":false,"Links":[{"SourceID":59832,"TargetID":59833,"Directional":false}]},{"ID":1802,"SourceStructureID":88666,"TargetStructureID":3928,"Label":"88666-3928 via Adherens from 88672 -> 41256","Type":"Adherens","Directional":false,"Links":[{"SourceID":88672,"TargetID":41256,"Directional":false}]},{"ID":1803,"SourceStructureID":117778,"TargetStructureID":3928,"Label":"117778-3928 via Gap Junction from 117782 -> 57008, 117785 -> 117786","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117782,"TargetID":57008,"Directional":false},{"SourceID":117785,"TargetID":117786,"Directional":false}]},{"ID":1804,"SourceStructureID":97828,"TargetStructureID":4568,"Label":"97828-4568 via Gap Junction from 97832 -> 97831","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97832,"TargetID":97831,"Directional":false}]},{"ID":1805,"SourceStructureID":4569,"TargetStructureID":4569,"Label":"4569-4569 via Adherens from 97777 -> 97776","Type":"Adherens","Directional":false,"Links":[{"SourceID":97777,"TargetID":97776,"Directional":false}]},{"ID":1806,"SourceStructureID":4835,"TargetStructureID":4569,"Label":"4835-4569 via Gap Junction from 98688 -> 98687, 98965 -> 98964","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98688,"TargetID":98687,"Directional":false},{"SourceID":98965,"TargetID":98964,"Directional":false}]},{"ID":1807,"SourceStructureID":4569,"TargetStructureID":6155,"Label":"4569-6155 via Unknown from 131404 -> 131405","Type":"Unknown","Directional":false,"Links":[{"SourceID":131404,"TargetID":131405,"Directional":false}]},{"ID":1808,"SourceStructureID":6300,"TargetStructureID":4569,"Label":"6300-4569 via Adherens from 99068 -> 6298","Type":"Adherens","Directional":false,"Links":[{"SourceID":99068,"TargetID":6298,"Directional":false}]},{"ID":1809,"SourceStructureID":4569,"TargetStructureID":21299,"Label":"4569-21299 via Gap Junction from 23795 -> 48486, 46343 -> 46342, 48491 -> 48492, 48869 -> 91770, 91761 -> 91762, 91763 -> 91764","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23795,"TargetID":48486,"Directional":false},{"SourceID":46343,"TargetID":46342,"Directional":false},{"SourceID":48491,"TargetID":48492,"Directional":false},{"SourceID":48869,"TargetID":91770,"Directional":false},{"SourceID":91761,"TargetID":91762,"Directional":false},{"SourceID":91763,"TargetID":91764,"Directional":false}]},{"ID":1810,"SourceStructureID":4569,"TargetStructureID":21299,"Label":"4569-21299 via Unknown from 92842 -> 92843","Type":"Unknown","Directional":false,"Links":[{"SourceID":92842,"TargetID":92843,"Directional":false}]},{"ID":1811,"SourceStructureID":97800,"TargetStructureID":4569,"Label":"97800-4569 via Unknown from 97802 -> 97801","Type":"Unknown","Directional":false,"Links":[{"SourceID":97802,"TargetID":97801,"Directional":false}]},{"ID":1812,"SourceStructureID":97828,"TargetStructureID":4569,"Label":"97828-4569 via Adherens from 97829 -> 97827","Type":"Adherens","Directional":false,"Links":[{"SourceID":97829,"TargetID":97827,"Directional":false}]},{"ID":1813,"SourceStructureID":4569,"TargetStructureID":98161,"Label":"4569-98161 via Gap Junction from 52490 -> 98162","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52490,"TargetID":98162,"Directional":false}]},{"ID":1814,"SourceStructureID":4569,"TargetStructureID":98167,"Label":"4569-98167 via Adherens from 98170 -> 98169","Type":"Adherens","Directional":false,"Links":[{"SourceID":98170,"TargetID":98169,"Directional":false}]},{"ID":1815,"SourceStructureID":4569,"TargetStructureID":98314,"Label":"4569-98314 via Unknown from 98316 -> 98315","Type":"Unknown","Directional":false,"Links":[{"SourceID":98316,"TargetID":98315,"Directional":false}]},{"ID":1816,"SourceStructureID":98317,"TargetStructureID":4569,"Label":"98317-4569 via Unknown from 98318 -> 98319","Type":"Unknown","Directional":false,"Links":[{"SourceID":98318,"TargetID":98319,"Directional":false}]},{"ID":1817,"SourceStructureID":4569,"TargetStructureID":98321,"Label":"4569-98321 via Unknown from 98320 -> 98322","Type":"Unknown","Directional":false,"Links":[{"SourceID":98320,"TargetID":98322,"Directional":false}]},{"ID":1818,"SourceStructureID":98505,"TargetStructureID":4569,"Label":"98505-4569 via Gap Junction from 98506 -> 65201","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98506,"TargetID":65201,"Directional":false}]},{"ID":1819,"SourceStructureID":4569,"TargetStructureID":98663,"Label":"4569-98663 via Adherens from 98666 -> 98665","Type":"Adherens","Directional":false,"Links":[{"SourceID":98666,"TargetID":98665,"Directional":false}]},{"ID":1820,"SourceStructureID":4569,"TargetStructureID":98679,"Label":"4569-98679 via Gap Junction from 98678 -> 98680","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98678,"TargetID":98680,"Directional":false}]},{"ID":1821,"SourceStructureID":98949,"TargetStructureID":4569,"Label":"98949-4569 via Gap Junction from 98952 -> 52545","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98952,"TargetID":52545,"Directional":false}]},{"ID":1822,"SourceStructureID":99016,"TargetStructureID":4569,"Label":"99016-4569 via Adherens from 99017 -> 99015","Type":"Adherens","Directional":false,"Links":[{"SourceID":99017,"TargetID":99015,"Directional":false}]},{"ID":1823,"SourceStructureID":99025,"TargetStructureID":4569,"Label":"99025-4569 via Adherens from 99028 -> 99024","Type":"Adherens","Directional":false,"Links":[{"SourceID":99028,"TargetID":99024,"Directional":false}]},{"ID":1824,"SourceStructureID":4569,"TargetStructureID":99032,"Label":"4569-99032 via Adherens from 99038 -> 99037","Type":"Adherens","Directional":false,"Links":[{"SourceID":99038,"TargetID":99037,"Directional":false}]},{"ID":1825,"SourceStructureID":4569,"TargetStructureID":106438,"Label":"4569-106438 via Adherens from 131401 -> 106440","Type":"Adherens","Directional":false,"Links":[{"SourceID":131401,"TargetID":106440,"Directional":false}]},{"ID":1826,"SourceStructureID":4570,"TargetStructureID":29277,"Label":"4570-29277 via Adherens from 29299 -> 29298","Type":"Adherens","Directional":false,"Links":[{"SourceID":29299,"TargetID":29298,"Directional":false}]},{"ID":1827,"SourceStructureID":60798,"TargetStructureID":4570,"Label":"60798-4570 via Touch from 60800 -> 60801","Type":"Touch","Directional":false,"Links":[{"SourceID":60800,"TargetID":60801,"Directional":false}]},{"ID":1828,"SourceStructureID":4835,"TargetStructureID":4835,"Label":"4835-4835 via Gap Junction from 12777 -> 8394","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12777,"TargetID":8394,"Directional":false}]},{"ID":1829,"SourceStructureID":5457,"TargetStructureID":4835,"Label":"5457-4835 via Adherens from 87844 -> 87843, 87852 -> 87851","Type":"Adherens","Directional":false,"Links":[{"SourceID":87844,"TargetID":87843,"Directional":false},{"SourceID":87852,"TargetID":87851,"Directional":false}]},{"ID":1830,"SourceStructureID":4835,"TargetStructureID":6153,"Label":"4835-6153 via Gap Junction from 29515 -> 17476, 29606 -> 17479","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29515,"TargetID":17476,"Directional":false},{"SourceID":29606,"TargetID":17479,"Directional":false}]},{"ID":1831,"SourceStructureID":7157,"TargetStructureID":4835,"Label":"7157-4835 via Gap Junction from 24539 -> 24538","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24539,"TargetID":24538,"Directional":false}]},{"ID":1832,"SourceStructureID":4835,"TargetStructureID":7564,"Label":"4835-7564 via Gap Junction from 29642 -> 29641, 29673 -> 29671","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29642,"TargetID":29641,"Directional":false},{"SourceID":29673,"TargetID":29671,"Directional":false}]},{"ID":1833,"SourceStructureID":7860,"TargetStructureID":4835,"Label":"7860-4835 via Gap Junction from 29668 -> 29667","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29668,"TargetID":29667,"Directional":false}]},{"ID":1834,"SourceStructureID":7861,"TargetStructureID":4835,"Label":"7861-4835 via Gap Junction from 29646 -> 29645","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29646,"TargetID":29645,"Directional":false}]},{"ID":1835,"SourceStructureID":71935,"TargetStructureID":4835,"Label":"71935-4835 via Gap Junction from 71944 -> 71945, 95218 -> 8392, 120387 -> 120388, 120391 -> 120392","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71944,"TargetID":71945,"Directional":false},{"SourceID":95218,"TargetID":8392,"Directional":false},{"SourceID":120387,"TargetID":120388,"Directional":false},{"SourceID":120391,"TargetID":120392,"Directional":false}]},{"ID":1836,"SourceStructureID":105212,"TargetStructureID":4835,"Label":"105212-4835 via Unknown from 105760 -> 105761","Type":"Unknown","Directional":false,"Links":[{"SourceID":105760,"TargetID":105761,"Directional":false}]},{"ID":1837,"SourceStructureID":122595,"TargetStructureID":4835,"Label":"122595-4835 via Gap Junction from 122597 -> 122596, 122599 -> 122598","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122597,"TargetID":122596,"Directional":false},{"SourceID":122599,"TargetID":122598,"Directional":false}]},{"ID":1838,"SourceStructureID":4835,"TargetStructureID":135225,"Label":"4835-135225 via Touch from 135238 -> 135237","Type":"Touch","Directional":false,"Links":[{"SourceID":135238,"TargetID":135237,"Directional":false}]},{"ID":1839,"SourceStructureID":4850,"TargetStructureID":6169,"Label":"4850-6169 via Adherens from 14197 -> 14198, 33897 -> 33896, 98115 -> 9467, 98117 -> 9463","Type":"Adherens","Directional":false,"Links":[{"SourceID":14197,"TargetID":14198,"Directional":false},{"SourceID":33897,"TargetID":33896,"Directional":false},{"SourceID":98115,"TargetID":9467,"Directional":false},{"SourceID":98117,"TargetID":9463,"Directional":false}]},{"ID":1840,"SourceStructureID":40896,"TargetStructureID":4850,"Label":"40896-4850 via Gap Junction from 89980 -> 89981","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89980,"TargetID":89981,"Directional":false}]},{"ID":1841,"SourceStructureID":40896,"TargetStructureID":4850,"Label":"40896-4850 via Unknown from 98124 -> 98123","Type":"Unknown","Directional":false,"Links":[{"SourceID":98124,"TargetID":98123,"Directional":false}]},{"ID":1842,"SourceStructureID":4877,"TargetStructureID":4877,"Label":"4877-4877 via Adherens from 135639 -> 135640","Type":"Adherens","Directional":false,"Links":[{"SourceID":135639,"TargetID":135640,"Directional":false}]},{"ID":1843,"SourceStructureID":4877,"TargetStructureID":4877,"Label":"4877-4877 via Gap Junction from 126623 -> 126622, 126755 -> 126756, 126869 -> 126868, 134129 -> 134128, 135637 -> 135638","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":126623,"TargetID":126622,"Directional":false},{"SourceID":126755,"TargetID":126756,"Directional":false},{"SourceID":126869,"TargetID":126868,"Directional":false},{"SourceID":134129,"TargetID":134128,"Directional":false},{"SourceID":135637,"TargetID":135638,"Directional":false}]},{"ID":1844,"SourceStructureID":5107,"TargetStructureID":4877,"Label":"5107-4877 via Adherens from 91355 -> 91354","Type":"Adherens","Directional":false,"Links":[{"SourceID":91355,"TargetID":91354,"Directional":false}]},{"ID":1845,"SourceStructureID":4877,"TargetStructureID":5442,"Label":"4877-5442 via Unknown from 126637 -> 126638","Type":"Unknown","Directional":false,"Links":[{"SourceID":126637,"TargetID":126638,"Directional":false}]},{"ID":1846,"SourceStructureID":5468,"TargetStructureID":4877,"Label":"5468-4877 via Adherens from 135969 -> 135968","Type":"Adherens","Directional":false,"Links":[{"SourceID":135969,"TargetID":135968,"Directional":false}]},{"ID":1847,"SourceStructureID":5468,"TargetStructureID":4877,"Label":"5468-4877 via Gap Junction from 54712 -> 54711","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54712,"TargetID":54711,"Directional":false}]},{"ID":1848,"SourceStructureID":4877,"TargetStructureID":5598,"Label":"4877-5598 via Adherens from 126734 -> 126735, 126942 -> 126943, 126949 -> 126950, 135949 -> 135948, 135970 -> 135971, 135974 -> 135973","Type":"Adherens","Directional":false,"Links":[{"SourceID":126734,"TargetID":126735,"Directional":false},{"SourceID":126942,"TargetID":126943,"Directional":false},{"SourceID":126949,"TargetID":126950,"Directional":false},{"SourceID":135949,"TargetID":135948,"Directional":false},{"SourceID":135970,"TargetID":135971,"Directional":false},{"SourceID":135974,"TargetID":135973,"Directional":false}]},{"ID":1849,"SourceStructureID":4877,"TargetStructureID":5598,"Label":"4877-5598 via Gap Junction from 56784 -> 56782, 57080 -> 56792, 59063 -> 59062, 91383 -> 91382, 91394 -> 91393, 114980 -> 114979, 114993 -> 114992, 115163 -> 115164, 123794 -> 123793, 124259 -> 124258, 126740 -> 126739","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56784,"TargetID":56782,"Directional":false},{"SourceID":57080,"TargetID":56792,"Directional":false},{"SourceID":59063,"TargetID":59062,"Directional":false},{"SourceID":91383,"TargetID":91382,"Directional":false},{"SourceID":91394,"TargetID":91393,"Directional":false},{"SourceID":114980,"TargetID":114979,"Directional":false},{"SourceID":114993,"TargetID":114992,"Directional":false},{"SourceID":115163,"TargetID":115164,"Directional":false},{"SourceID":123794,"TargetID":123793,"Directional":false},{"SourceID":124259,"TargetID":124258,"Directional":false},{"SourceID":126740,"TargetID":126739,"Directional":false}]},{"ID":1850,"SourceStructureID":4877,"TargetStructureID":5601,"Label":"4877-5601 via Adherens from 91402 -> 91403, 135621 -> 135622, 135649 -> 135650, 135656 -> 135657, 135661 -> 135660, 135664 -> 135663, 135665 -> 135666, 135668 -> 135667, 135669 -> 135670, 135672 -> 135673","Type":"Adherens","Directional":false,"Links":[{"SourceID":91402,"TargetID":91403,"Directional":false},{"SourceID":135621,"TargetID":135622,"Directional":false},{"SourceID":135649,"TargetID":135650,"Directional":false},{"SourceID":135656,"TargetID":135657,"Directional":false},{"SourceID":135661,"TargetID":135660,"Directional":false},{"SourceID":135664,"TargetID":135663,"Directional":false},{"SourceID":135665,"TargetID":135666,"Directional":false},{"SourceID":135668,"TargetID":135667,"Directional":false},{"SourceID":135669,"TargetID":135670,"Directional":false},{"SourceID":135672,"TargetID":135673,"Directional":false}]},{"ID":1851,"SourceStructureID":5601,"TargetStructureID":4877,"Label":"5601-4877 via Gap Junction from 24363 -> 23962, 56637 -> 56597, 57189 -> 57188, 59060 -> 59059, 91309 -> 91308, 91330 -> 91329, 91333 -> 91332, 91335 -> 91334, 91347 -> 91299, 91389 -> 91387, 91411 -> 91410, 91421 -> 91420, 91437 -> 126483, 91438 -> 91439, 91525 -> 91526, 92510 -> 92511, 92513 -> 92512, 126512 -> 126513, 126529 -> 126530, 126579 -> 126580, 126690 -> 126691, 126803 -> 126804, 126825 -> 126826, 134124 -> 134125, 134136 -> 134137","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24363,"TargetID":23962,"Directional":false},{"SourceID":56637,"TargetID":56597,"Directional":false},{"SourceID":57189,"TargetID":57188,"Directional":false},{"SourceID":59060,"TargetID":59059,"Directional":false},{"SourceID":91309,"TargetID":91308,"Directional":false},{"SourceID":91330,"TargetID":91329,"Directional":false},{"SourceID":91333,"TargetID":91332,"Directional":false},{"SourceID":91335,"TargetID":91334,"Directional":false},{"SourceID":91347,"TargetID":91299,"Directional":false},{"SourceID":91389,"TargetID":91387,"Directional":false},{"SourceID":91411,"TargetID":91410,"Directional":false},{"SourceID":91421,"TargetID":91420,"Directional":false},{"SourceID":91437,"TargetID":126483,"Directional":false},{"SourceID":91438,"TargetID":91439,"Directional":false},{"SourceID":91525,"TargetID":91526,"Directional":false},{"SourceID":92510,"TargetID":92511,"Directional":false},{"SourceID":92513,"TargetID":92512,"Directional":false},{"SourceID":126512,"TargetID":126513,"Directional":false},{"SourceID":126529,"TargetID":126530,"Directional":false},{"SourceID":126579,"TargetID":126580,"Directional":false},{"SourceID":126690,"TargetID":126691,"Directional":false},{"SourceID":126803,"TargetID":126804,"Directional":false},{"SourceID":126825,"TargetID":126826,"Directional":false},{"SourceID":134124,"TargetID":134125,"Directional":false},{"SourceID":134136,"TargetID":134137,"Directional":false}]},{"ID":1852,"SourceStructureID":5601,"TargetStructureID":4877,"Label":"5601-4877 via Touch from 126523 -> 126522","Type":"Touch","Directional":false,"Links":[{"SourceID":126523,"TargetID":126522,"Directional":false}]},{"ID":1853,"SourceStructureID":5637,"TargetStructureID":4877,"Label":"5637-4877 via Gap Junction from 134134 -> 134135, 135632 -> 135633","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134134,"TargetID":134135,"Directional":false},{"SourceID":135632,"TargetID":135633,"Directional":false}]},{"ID":1854,"SourceStructureID":4877,"TargetStructureID":6117,"Label":"4877-6117 via Adherens from 131113 -> 131114, 134131 -> 134130","Type":"Adherens","Directional":false,"Links":[{"SourceID":131113,"TargetID":131114,"Directional":false},{"SourceID":134131,"TargetID":134130,"Directional":false}]},{"ID":1855,"SourceStructureID":4877,"TargetStructureID":6117,"Label":"4877-6117 via Gap Junction from 46602 -> 46408, 56788 -> 56787, 134133 -> 134132","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46602,"TargetID":46408,"Directional":false},{"SourceID":56788,"TargetID":56787,"Directional":false},{"SourceID":134133,"TargetID":134132,"Directional":false}]},{"ID":1856,"SourceStructureID":6117,"TargetStructureID":4877,"Label":"6117-4877 via Touch from 134144 -> 134143","Type":"Touch","Directional":false,"Links":[{"SourceID":134144,"TargetID":134143,"Directional":false}]},{"ID":1857,"SourceStructureID":7113,"TargetStructureID":4877,"Label":"7113-4877 via Gap Junction from 91366 -> 91365","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91366,"TargetID":91365,"Directional":false}]},{"ID":1858,"SourceStructureID":7114,"TargetStructureID":4877,"Label":"7114-4877 via Gap Junction from 91563 -> 91564, 135965 -> 135644","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91563,"TargetID":91564,"Directional":false},{"SourceID":135965,"TargetID":135644,"Directional":false}]},{"ID":1859,"SourceStructureID":4877,"TargetStructureID":7114,"Label":"4877-7114 via Touch from 126832 -> 126833","Type":"Touch","Directional":false,"Links":[{"SourceID":126832,"TargetID":126833,"Directional":false}]},{"ID":1860,"SourceStructureID":15796,"TargetStructureID":4877,"Label":"15796-4877 via Postsynapse from 46583 -> 46582","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":46583,"TargetID":46582,"Directional":false}]},{"ID":1861,"SourceStructureID":15976,"TargetStructureID":4877,"Label":"15976-4877 via Gap Junction from 54718 -> 54719","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54718,"TargetID":54719,"Directional":false}]},{"ID":1862,"SourceStructureID":4877,"TargetStructureID":23836,"Label":"4877-23836 via Unknown from 126806 -> 126807","Type":"Unknown","Directional":false,"Links":[{"SourceID":126806,"TargetID":126807,"Directional":false}]},{"ID":1863,"SourceStructureID":4877,"TargetStructureID":35212,"Label":"4877-35212 via Unknown from 126554 -> 126555","Type":"Unknown","Directional":false,"Links":[{"SourceID":126554,"TargetID":126555,"Directional":false}]},{"ID":1864,"SourceStructureID":54776,"TargetStructureID":4877,"Label":"54776-4877 via Unknown from 126831 -> 126830","Type":"Unknown","Directional":false,"Links":[{"SourceID":126831,"TargetID":126830,"Directional":false}]},{"ID":1865,"SourceStructureID":4877,"TargetStructureID":56710,"Label":"4877-56710 via Gap Junction from 46580 -> 56711","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46580,"TargetID":56711,"Directional":false}]},{"ID":1866,"SourceStructureID":56712,"TargetStructureID":4877,"Label":"56712-4877 via Gap Junction from 56713 -> 46599","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56713,"TargetID":46599,"Directional":false}]},{"ID":1867,"SourceStructureID":4877,"TargetStructureID":56712,"Label":"4877-56712 via Unknown from 91418 -> 91417","Type":"Unknown","Directional":false,"Links":[{"SourceID":91418,"TargetID":91417,"Directional":false}]},{"ID":1868,"SourceStructureID":4877,"TargetStructureID":58714,"Label":"4877-58714 via Adherens from 126617 -> 126618","Type":"Adherens","Directional":false,"Links":[{"SourceID":126617,"TargetID":126618,"Directional":false}]},{"ID":1869,"SourceStructureID":60590,"TargetStructureID":4877,"Label":"60590-4877 via Unknown from 91386 -> 91385","Type":"Unknown","Directional":false,"Links":[{"SourceID":91386,"TargetID":91385,"Directional":false}]},{"ID":1870,"SourceStructureID":4877,"TargetStructureID":91380,"Label":"4877-91380 via Unknown from 91379 -> 91381","Type":"Unknown","Directional":false,"Links":[{"SourceID":91379,"TargetID":91381,"Directional":false}]},{"ID":1871,"SourceStructureID":124069,"TargetStructureID":4877,"Label":"124069-4877 via Adherens from 126665 -> 126664","Type":"Adherens","Directional":false,"Links":[{"SourceID":126665,"TargetID":126664,"Directional":false}]},{"ID":1872,"SourceStructureID":126536,"TargetStructureID":4877,"Label":"126536-4877 via Adherens from 126539 -> 126535","Type":"Adherens","Directional":false,"Links":[{"SourceID":126539,"TargetID":126535,"Directional":false}]},{"ID":1873,"SourceStructureID":4877,"TargetStructureID":126585,"Label":"4877-126585 via Unknown from 126584 -> 126587","Type":"Unknown","Directional":false,"Links":[{"SourceID":126584,"TargetID":126587,"Directional":false}]},{"ID":1874,"SourceStructureID":126646,"TargetStructureID":4877,"Label":"126646-4877 via Adherens from 135954 -> 135953","Type":"Adherens","Directional":false,"Links":[{"SourceID":135954,"TargetID":135953,"Directional":false}]},{"ID":1875,"SourceStructureID":126763,"TargetStructureID":4877,"Label":"126763-4877 via Postsynapse from 126764 -> 126762","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":126764,"TargetID":126762,"Directional":false}]},{"ID":1876,"SourceStructureID":135956,"TargetStructureID":4877,"Label":"135956-4877 via Adherens from 135957 -> 135635","Type":"Adherens","Directional":false,"Links":[{"SourceID":135957,"TargetID":135635,"Directional":false}]},{"ID":1877,"SourceStructureID":135956,"TargetStructureID":4877,"Label":"135956-4877 via Gap Junction from 135958 -> 135634","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135958,"TargetID":135634,"Directional":false}]},{"ID":1878,"SourceStructureID":4890,"TargetStructureID":5117,"Label":"4890-5117 via Adherens from 28783 -> 28782, 28786 -> 28785, 28789 -> 4899, 28791 -> 28790, 28792 -> 4901, 28794 -> 4902, 28795 -> 4903","Type":"Adherens","Directional":false,"Links":[{"SourceID":28783,"TargetID":28782,"Directional":false},{"SourceID":28786,"TargetID":28785,"Directional":false},{"SourceID":28789,"TargetID":4899,"Directional":false},{"SourceID":28791,"TargetID":28790,"Directional":false},{"SourceID":28792,"TargetID":4901,"Directional":false},{"SourceID":28794,"TargetID":4902,"Directional":false},{"SourceID":28795,"TargetID":4903,"Directional":false}]},{"ID":1879,"SourceStructureID":6156,"TargetStructureID":4890,"Label":"6156-4890 via Unknown from 133441 -> 133442, 133468 -> 133467","Type":"Unknown","Directional":false,"Links":[{"SourceID":133441,"TargetID":133442,"Directional":false},{"SourceID":133468,"TargetID":133467,"Directional":false}]},{"ID":1880,"SourceStructureID":8576,"TargetStructureID":4890,"Label":"8576-4890 via Adherens from 20064 -> 20065","Type":"Adherens","Directional":false,"Links":[{"SourceID":20064,"TargetID":20065,"Directional":false}]},{"ID":1881,"SourceStructureID":4890,"TargetStructureID":8577,"Label":"4890-8577 via Adherens from 31019 -> 31018, 71060 -> 7922","Type":"Adherens","Directional":false,"Links":[{"SourceID":31019,"TargetID":31018,"Directional":false},{"SourceID":71060,"TargetID":7922,"Directional":false}]},{"ID":1882,"SourceStructureID":4943,"TargetStructureID":5634,"Label":"4943-5634 via Adherens from 8722 -> 8721","Type":"Adherens","Directional":false,"Links":[{"SourceID":8722,"TargetID":8721,"Directional":false}]},{"ID":1883,"SourceStructureID":42968,"TargetStructureID":4943,"Label":"42968-4943 via Adherens from 60813 -> 60812","Type":"Adherens","Directional":false,"Links":[{"SourceID":60813,"TargetID":60812,"Directional":false}]},{"ID":1884,"SourceStructureID":5017,"TargetStructureID":5017,"Label":"5017-5017 via Adherens from 92258 -> 92259","Type":"Adherens","Directional":false,"Links":[{"SourceID":92258,"TargetID":92259,"Directional":false}]},{"ID":1885,"SourceStructureID":35176,"TargetStructureID":5017,"Label":"35176-5017 via Adherens from 158798 -> 158788","Type":"Adherens","Directional":false,"Links":[{"SourceID":158798,"TargetID":158788,"Directional":false}]},{"ID":1886,"SourceStructureID":5017,"TargetStructureID":61214,"Label":"5017-61214 via Adherens from 61218 -> 61217","Type":"Adherens","Directional":false,"Links":[{"SourceID":61218,"TargetID":61217,"Directional":false}]},{"ID":1887,"SourceStructureID":5017,"TargetStructureID":61231,"Label":"5017-61231 via Adherens from 61240 -> 61238","Type":"Adherens","Directional":false,"Links":[{"SourceID":61240,"TargetID":61238,"Directional":false}]},{"ID":1888,"SourceStructureID":5107,"TargetStructureID":61836,"Label":"5107-61836 via Adherens from 67515 -> 67514","Type":"Adherens","Directional":false,"Links":[{"SourceID":67515,"TargetID":67514,"Directional":false}]},{"ID":1889,"SourceStructureID":5107,"TargetStructureID":68023,"Label":"5107-68023 via Adherens from 68659 -> 68658","Type":"Adherens","Directional":false,"Links":[{"SourceID":68659,"TargetID":68658,"Directional":false}]},{"ID":1890,"SourceStructureID":68548,"TargetStructureID":5107,"Label":"68548-5107 via Adherens from 75692 -> 75693","Type":"Adherens","Directional":false,"Links":[{"SourceID":75692,"TargetID":75693,"Directional":false}]},{"ID":1891,"SourceStructureID":5107,"TargetStructureID":87972,"Label":"5107-87972 via Adherens from 88026 -> 88025","Type":"Adherens","Directional":false,"Links":[{"SourceID":88026,"TargetID":88025,"Directional":false}]},{"ID":1892,"SourceStructureID":5107,"TargetStructureID":112937,"Label":"5107-112937 via Adherens from 112932 -> 112939","Type":"Adherens","Directional":false,"Links":[{"SourceID":112932,"TargetID":112939,"Directional":false}]},{"ID":1893,"SourceStructureID":5107,"TargetStructureID":148337,"Label":"5107-148337 via Adherens from 148341 -> 148340","Type":"Adherens","Directional":false,"Links":[{"SourceID":148341,"TargetID":148340,"Directional":false}]},{"ID":1894,"SourceStructureID":5117,"TargetStructureID":5117,"Label":"5117-5117 via Unknown from 131397 -> 131398","Type":"Unknown","Directional":false,"Links":[{"SourceID":131397,"TargetID":131398,"Directional":false}]},{"ID":1895,"SourceStructureID":5118,"TargetStructureID":5117,"Label":"5118-5117 via Gap Junction from 133235 -> 133236","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133235,"TargetID":133236,"Directional":false}]},{"ID":1896,"SourceStructureID":7157,"TargetStructureID":5117,"Label":"7157-5117 via Touch from 135195 -> 135194","Type":"Touch","Directional":false,"Links":[{"SourceID":135195,"TargetID":135194,"Directional":false}]},{"ID":1897,"SourceStructureID":5117,"TargetStructureID":8579,"Label":"5117-8579 via Adherens from 66344 -> 66345, 66346 -> 66347, 66350 -> 66351","Type":"Adherens","Directional":false,"Links":[{"SourceID":66344,"TargetID":66345,"Directional":false},{"SourceID":66346,"TargetID":66347,"Directional":false},{"SourceID":66350,"TargetID":66351,"Directional":false}]},{"ID":1898,"SourceStructureID":5117,"TargetStructureID":16026,"Label":"5117-16026 via Unknown from 114666 -> 114665","Type":"Unknown","Directional":false,"Links":[{"SourceID":114666,"TargetID":114665,"Directional":false}]},{"ID":1899,"SourceStructureID":5117,"TargetStructureID":61864,"Label":"5117-61864 via Adherens from 69336 -> 69339, 69337 -> 69340, 69338 -> 69341","Type":"Adherens","Directional":false,"Links":[{"SourceID":69336,"TargetID":69339,"Directional":false},{"SourceID":69337,"TargetID":69340,"Directional":false},{"SourceID":69338,"TargetID":69341,"Directional":false}]},{"ID":1900,"SourceStructureID":68548,"TargetStructureID":5117,"Label":"68548-5117 via Adherens from 73581 -> 65507","Type":"Adherens","Directional":false,"Links":[{"SourceID":73581,"TargetID":65507,"Directional":false}]},{"ID":1901,"SourceStructureID":5117,"TargetStructureID":135196,"Label":"5117-135196 via Touch from 135201 -> 135200","Type":"Touch","Directional":false,"Links":[{"SourceID":135201,"TargetID":135200,"Directional":false}]},{"ID":1902,"SourceStructureID":135208,"TargetStructureID":5117,"Label":"135208-5117 via Adherens from 135210 -> 135207","Type":"Adherens","Directional":false,"Links":[{"SourceID":135210,"TargetID":135207,"Directional":false}]},{"ID":1903,"SourceStructureID":5439,"TargetStructureID":5118,"Label":"5439-5118 via Adherens from 85506 -> 85507","Type":"Adherens","Directional":false,"Links":[{"SourceID":85506,"TargetID":85507,"Directional":false}]},{"ID":1904,"SourceStructureID":5118,"TargetStructureID":5531,"Label":"5118-5531 via Adherens from 133886 -> 133885","Type":"Adherens","Directional":false,"Links":[{"SourceID":133886,"TargetID":133885,"Directional":false}]},{"ID":1905,"SourceStructureID":6115,"TargetStructureID":5118,"Label":"6115-5118 via Adherens from 74793 -> 74794","Type":"Adherens","Directional":false,"Links":[{"SourceID":74793,"TargetID":74794,"Directional":false}]},{"ID":1906,"SourceStructureID":6115,"TargetStructureID":5118,"Label":"6115-5118 via Unknown from 73258 -> 73259","Type":"Unknown","Directional":false,"Links":[{"SourceID":73258,"TargetID":73259,"Directional":false}]},{"ID":1907,"SourceStructureID":7147,"TargetStructureID":5118,"Label":"7147-5118 via Touch from 52235 -> 52234","Type":"Touch","Directional":false,"Links":[{"SourceID":52235,"TargetID":52234,"Directional":false}]},{"ID":1908,"SourceStructureID":5118,"TargetStructureID":8579,"Label":"5118-8579 via Adherens from 62682 -> 62681","Type":"Adherens","Directional":false,"Links":[{"SourceID":62682,"TargetID":62681,"Directional":false}]},{"ID":1909,"SourceStructureID":5118,"TargetStructureID":9769,"Label":"5118-9769 via Touch from 52625 -> 52624","Type":"Touch","Directional":false,"Links":[{"SourceID":52625,"TargetID":52624,"Directional":false}]},{"ID":1910,"SourceStructureID":65134,"TargetStructureID":5118,"Label":"65134-5118 via Gap Junction from 65135 -> 65136","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65135,"TargetID":65136,"Directional":false}]},{"ID":1911,"SourceStructureID":5150,"TargetStructureID":5150,"Label":"5150-5150 via Postsynapse from 5240 -> 5241","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":5240,"TargetID":5241,"Directional":false}]},{"ID":1912,"SourceStructureID":22590,"TargetStructureID":5150,"Label":"22590-5150 via Gap Junction from 56183 -> 56181","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56183,"TargetID":56181,"Directional":false}]},{"ID":1913,"SourceStructureID":56211,"TargetStructureID":5150,"Label":"56211-5150 via Gap Junction from 56212 -> 56210, 56213 -> 56214, 56218 -> 56219, 56221 -> 56220, 56252 -> 56251","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56212,"TargetID":56210,"Directional":false},{"SourceID":56213,"TargetID":56214,"Directional":false},{"SourceID":56218,"TargetID":56219,"Directional":false},{"SourceID":56221,"TargetID":56220,"Directional":false},{"SourceID":56252,"TargetID":56251,"Directional":false}]},{"ID":1914,"SourceStructureID":5278,"TargetStructureID":5278,"Label":"5278-5278 via Gap Junction from 92279 -> 92278","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92279,"TargetID":92278,"Directional":false}]},{"ID":1915,"SourceStructureID":5278,"TargetStructureID":5279,"Label":"5278-5279 via Gap Junction from 20153 -> 92674, 92710 -> 92712, 133801 -> 133800, 133848 -> 133849, 133852 -> 133853, 133855 -> 133854, 133857 -> 133856, 133859 -> 133858, 147296 -> 147297","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20153,"TargetID":92674,"Directional":false},{"SourceID":92710,"TargetID":92712,"Directional":false},{"SourceID":133801,"TargetID":133800,"Directional":false},{"SourceID":133848,"TargetID":133849,"Directional":false},{"SourceID":133852,"TargetID":133853,"Directional":false},{"SourceID":133855,"TargetID":133854,"Directional":false},{"SourceID":133857,"TargetID":133856,"Directional":false},{"SourceID":133859,"TargetID":133858,"Directional":false},{"SourceID":147296,"TargetID":147297,"Directional":false}]},{"ID":1916,"SourceStructureID":5278,"TargetStructureID":5279,"Label":"5278-5279 via Touch from 147909 -> 147908","Type":"Touch","Directional":false,"Links":[{"SourceID":147909,"TargetID":147908,"Directional":false}]},{"ID":1917,"SourceStructureID":5278,"TargetStructureID":5579,"Label":"5278-5579 via Adherens from 92157 -> 92158, 92159 -> 92160, 114175 -> 36805","Type":"Adherens","Directional":false,"Links":[{"SourceID":92157,"TargetID":92158,"Directional":false},{"SourceID":92159,"TargetID":92160,"Directional":false},{"SourceID":114175,"TargetID":36805,"Directional":false}]},{"ID":1918,"SourceStructureID":5278,"TargetStructureID":5579,"Label":"5278-5579 via Unknown from 114176 -> 147249","Type":"Unknown","Directional":false,"Links":[{"SourceID":114176,"TargetID":147249,"Directional":false}]},{"ID":1919,"SourceStructureID":8575,"TargetStructureID":5278,"Label":"8575-5278 via Unknown from 100167 -> 100168","Type":"Unknown","Directional":false,"Links":[{"SourceID":100167,"TargetID":100168,"Directional":false}]},{"ID":1920,"SourceStructureID":5278,"TargetStructureID":9347,"Label":"5278-9347 via Unknown from 92268 -> 92267, 104394 -> 104395, 114182 -> 114181, 114481 -> 114482, 126310 -> 126320, 133902 -> 133903","Type":"Unknown","Directional":false,"Links":[{"SourceID":92268,"TargetID":92267,"Directional":false},{"SourceID":104394,"TargetID":104395,"Directional":false},{"SourceID":114182,"TargetID":114181,"Directional":false},{"SourceID":114481,"TargetID":114482,"Directional":false},{"SourceID":126310,"TargetID":126320,"Directional":false},{"SourceID":133902,"TargetID":133903,"Directional":false}]},{"ID":1921,"SourceStructureID":5278,"TargetStructureID":15796,"Label":"5278-15796 via Unknown from 97941 -> 97942","Type":"Unknown","Directional":false,"Links":[{"SourceID":97941,"TargetID":97942,"Directional":false}]},{"ID":1922,"SourceStructureID":16073,"TargetStructureID":5278,"Label":"16073-5278 via Unknown from 99593 -> 99594, 133879 -> 133878","Type":"Unknown","Directional":false,"Links":[{"SourceID":99593,"TargetID":99594,"Directional":false},{"SourceID":133879,"TargetID":133878,"Directional":false}]},{"ID":1923,"SourceStructureID":21299,"TargetStructureID":5278,"Label":"21299-5278 via Adherens from 48827 -> 48828","Type":"Adherens","Directional":false,"Links":[{"SourceID":48827,"TargetID":48828,"Directional":false}]},{"ID":1924,"SourceStructureID":5278,"TargetStructureID":35894,"Label":"5278-35894 via Unknown from 100461 -> 100462","Type":"Unknown","Directional":false,"Links":[{"SourceID":100461,"TargetID":100462,"Directional":false}]},{"ID":1925,"SourceStructureID":39192,"TargetStructureID":5278,"Label":"39192-5278 via Unknown from 104200 -> 104198","Type":"Unknown","Directional":false,"Links":[{"SourceID":104200,"TargetID":104198,"Directional":false}]},{"ID":1926,"SourceStructureID":5278,"TargetStructureID":73363,"Label":"5278-73363 via Unknown from 91633 -> 91632","Type":"Unknown","Directional":false,"Links":[{"SourceID":91633,"TargetID":91632,"Directional":false}]},{"ID":1927,"SourceStructureID":5278,"TargetStructureID":73380,"Label":"5278-73380 via Unknown from 92283 -> 92286","Type":"Unknown","Directional":false,"Links":[{"SourceID":92283,"TargetID":92286,"Directional":false}]},{"ID":1928,"SourceStructureID":86042,"TargetStructureID":5278,"Label":"86042-5278 via Unknown from 104226 -> 104225","Type":"Unknown","Directional":false,"Links":[{"SourceID":104226,"TargetID":104225,"Directional":false}]},{"ID":1929,"SourceStructureID":90217,"TargetStructureID":5278,"Label":"90217-5278 via Unknown from 104230 -> 104231","Type":"Unknown","Directional":false,"Links":[{"SourceID":104230,"TargetID":104231,"Directional":false}]},{"ID":1930,"SourceStructureID":91613,"TargetStructureID":5278,"Label":"91613-5278 via Adherens from 91615 -> 91616","Type":"Adherens","Directional":false,"Links":[{"SourceID":91615,"TargetID":91616,"Directional":false}]},{"ID":1931,"SourceStructureID":91634,"TargetStructureID":5278,"Label":"91634-5278 via Adherens from 91637 -> 91638","Type":"Adherens","Directional":false,"Links":[{"SourceID":91637,"TargetID":91638,"Directional":false}]},{"ID":1932,"SourceStructureID":5278,"TargetStructureID":91639,"Label":"5278-91639 via Gap Junction from 91640 -> 91641","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91640,"TargetID":91641,"Directional":false}]},{"ID":1933,"SourceStructureID":5278,"TargetStructureID":92008,"Label":"5278-92008 via Unknown from 92010 -> 92009","Type":"Unknown","Directional":false,"Links":[{"SourceID":92010,"TargetID":92009,"Directional":false}]},{"ID":1934,"SourceStructureID":92098,"TargetStructureID":5278,"Label":"92098-5278 via Unknown from 92099 -> 92097","Type":"Unknown","Directional":false,"Links":[{"SourceID":92099,"TargetID":92097,"Directional":false}]},{"ID":1935,"SourceStructureID":5278,"TargetStructureID":92100,"Label":"5278-92100 via Adherens from 20033 -> 92101","Type":"Adherens","Directional":false,"Links":[{"SourceID":20033,"TargetID":92101,"Directional":false}]},{"ID":1936,"SourceStructureID":92103,"TargetStructureID":5278,"Label":"92103-5278 via Unknown from 92104 -> 92102","Type":"Unknown","Directional":false,"Links":[{"SourceID":92104,"TargetID":92102,"Directional":false}]},{"ID":1937,"SourceStructureID":5278,"TargetStructureID":92116,"Label":"5278-92116 via Adherens from 92119 -> 92118","Type":"Adherens","Directional":false,"Links":[{"SourceID":92119,"TargetID":92118,"Directional":false}]},{"ID":1938,"SourceStructureID":5278,"TargetStructureID":92116,"Label":"5278-92116 via Gap Junction from 20111 -> 92117","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20111,"TargetID":92117,"Directional":false}]},{"ID":1939,"SourceStructureID":92121,"TargetStructureID":5278,"Label":"92121-5278 via Unknown from 92122 -> 92120","Type":"Unknown","Directional":false,"Links":[{"SourceID":92122,"TargetID":92120,"Directional":false}]},{"ID":1940,"SourceStructureID":92149,"TargetStructureID":5278,"Label":"92149-5278 via Unknown from 147278 -> 147277","Type":"Unknown","Directional":false,"Links":[{"SourceID":147278,"TargetID":147277,"Directional":false}]},{"ID":1941,"SourceStructureID":92169,"TargetStructureID":5278,"Label":"92169-5278 via Unknown from 92170 -> 92168, 92281 -> 92282","Type":"Unknown","Directional":false,"Links":[{"SourceID":92170,"TargetID":92168,"Directional":false},{"SourceID":92281,"TargetID":92282,"Directional":false}]},{"ID":1942,"SourceStructureID":5278,"TargetStructureID":92175,"Label":"5278-92175 via Unknown from 92174 -> 92176","Type":"Unknown","Directional":false,"Links":[{"SourceID":92174,"TargetID":92176,"Directional":false}]},{"ID":1943,"SourceStructureID":92183,"TargetStructureID":5278,"Label":"92183-5278 via Unknown from 92184 -> 92182","Type":"Unknown","Directional":false,"Links":[{"SourceID":92184,"TargetID":92182,"Directional":false}]},{"ID":1944,"SourceStructureID":92186,"TargetStructureID":5278,"Label":"92186-5278 via Unknown from 92187 -> 92185, 92189 -> 92188","Type":"Unknown","Directional":false,"Links":[{"SourceID":92187,"TargetID":92185,"Directional":false},{"SourceID":92189,"TargetID":92188,"Directional":false}]},{"ID":1945,"SourceStructureID":92207,"TargetStructureID":5278,"Label":"92207-5278 via Unknown from 92208 -> 92202","Type":"Unknown","Directional":false,"Links":[{"SourceID":92208,"TargetID":92202,"Directional":false}]},{"ID":1946,"SourceStructureID":92272,"TargetStructureID":5278,"Label":"92272-5278 via Adherens from 104813 -> 104814, 104831 -> 104832, 133906 -> 133907","Type":"Adherens","Directional":false,"Links":[{"SourceID":104813,"TargetID":104814,"Directional":false},{"SourceID":104831,"TargetID":104832,"Directional":false},{"SourceID":133906,"TargetID":133907,"Directional":false}]},{"ID":1947,"SourceStructureID":5278,"TargetStructureID":92272,"Label":"5278-92272 via Gap Junction from 147279 -> 147280","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":147279,"TargetID":147280,"Directional":false}]},{"ID":1948,"SourceStructureID":92280,"TargetStructureID":5278,"Label":"92280-5278 via Adherens from 104846 -> 104847","Type":"Adherens","Directional":false,"Links":[{"SourceID":104846,"TargetID":104847,"Directional":false}]},{"ID":1949,"SourceStructureID":92295,"TargetStructureID":5278,"Label":"92295-5278 via Adherens from 127677 -> 127676, 147321 -> 147322","Type":"Adherens","Directional":false,"Links":[{"SourceID":127677,"TargetID":127676,"Directional":false},{"SourceID":147321,"TargetID":147322,"Directional":false}]},{"ID":1950,"SourceStructureID":92295,"TargetStructureID":5278,"Label":"92295-5278 via Gap Junction from 147263 -> 147264","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":147263,"TargetID":147264,"Directional":false}]},{"ID":1951,"SourceStructureID":92295,"TargetStructureID":5278,"Label":"92295-5278 via Unknown from 114291 -> 114290","Type":"Unknown","Directional":false,"Links":[{"SourceID":114291,"TargetID":114290,"Directional":false}]},{"ID":1952,"SourceStructureID":93413,"TargetStructureID":5278,"Label":"93413-5278 via Unknown from 114506 -> 114507","Type":"Unknown","Directional":false,"Links":[{"SourceID":114506,"TargetID":114507,"Directional":false}]},{"ID":1953,"SourceStructureID":5278,"TargetStructureID":95824,"Label":"5278-95824 via Adherens from 100464 -> 100473","Type":"Adherens","Directional":false,"Links":[{"SourceID":100464,"TargetID":100473,"Directional":false}]},{"ID":1954,"SourceStructureID":5278,"TargetStructureID":95824,"Label":"5278-95824 via Unknown from 100529 -> 100530","Type":"Unknown","Directional":false,"Links":[{"SourceID":100529,"TargetID":100530,"Directional":false}]},{"ID":1955,"SourceStructureID":5278,"TargetStructureID":96446,"Label":"5278-96446 via Unknown from 104419 -> 104418","Type":"Unknown","Directional":false,"Links":[{"SourceID":104419,"TargetID":104418,"Directional":false}]},{"ID":1956,"SourceStructureID":5278,"TargetStructureID":97853,"Label":"5278-97853 via Adherens from 97861 -> 97862","Type":"Adherens","Directional":false,"Links":[{"SourceID":97861,"TargetID":97862,"Directional":false}]},{"ID":1957,"SourceStructureID":5278,"TargetStructureID":97947,"Label":"5278-97947 via Unknown from 97949 -> 97948","Type":"Unknown","Directional":false,"Links":[{"SourceID":97949,"TargetID":97948,"Directional":false}]},{"ID":1958,"SourceStructureID":5278,"TargetStructureID":97951,"Label":"5278-97951 via Adherens from 133880 -> 133881","Type":"Adherens","Directional":false,"Links":[{"SourceID":133880,"TargetID":133881,"Directional":false}]},{"ID":1959,"SourceStructureID":5278,"TargetStructureID":98821,"Label":"5278-98821 via Unknown from 98820 -> 98822","Type":"Unknown","Directional":false,"Links":[{"SourceID":98820,"TargetID":98822,"Directional":false}]},{"ID":1960,"SourceStructureID":5278,"TargetStructureID":98823,"Label":"5278-98823 via Unknown from 98829 -> 98828","Type":"Unknown","Directional":false,"Links":[{"SourceID":98829,"TargetID":98828,"Directional":false}]},{"ID":1961,"SourceStructureID":5278,"TargetStructureID":98830,"Label":"5278-98830 via Adherens from 20044 -> 98831","Type":"Adherens","Directional":false,"Links":[{"SourceID":20044,"TargetID":98831,"Directional":false}]},{"ID":1962,"SourceStructureID":5278,"TargetStructureID":98830,"Label":"5278-98830 via Gap Junction from 99251 -> 99252","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99251,"TargetID":99252,"Directional":false}]},{"ID":1963,"SourceStructureID":5278,"TargetStructureID":98833,"Label":"5278-98833 via Adherens from 99280 -> 99281","Type":"Adherens","Directional":false,"Links":[{"SourceID":99280,"TargetID":99281,"Directional":false}]},{"ID":1964,"SourceStructureID":5278,"TargetStructureID":99262,"Label":"5278-99262 via Unknown from 92713 -> 99272","Type":"Unknown","Directional":false,"Links":[{"SourceID":92713,"TargetID":99272,"Directional":false}]},{"ID":1965,"SourceStructureID":99274,"TargetStructureID":5278,"Label":"99274-5278 via Unknown from 99275 -> 99276","Type":"Unknown","Directional":false,"Links":[{"SourceID":99275,"TargetID":99276,"Directional":false}]},{"ID":1966,"SourceStructureID":99290,"TargetStructureID":5278,"Label":"99290-5278 via Unknown from 99291 -> 92109","Type":"Unknown","Directional":false,"Links":[{"SourceID":99291,"TargetID":92109,"Directional":false}]},{"ID":1967,"SourceStructureID":5278,"TargetStructureID":99293,"Label":"5278-99293 via Unknown from 99292 -> 99294","Type":"Unknown","Directional":false,"Links":[{"SourceID":99292,"TargetID":99294,"Directional":false}]},{"ID":1968,"SourceStructureID":5278,"TargetStructureID":99305,"Label":"5278-99305 via Unknown from 99304 -> 99306","Type":"Unknown","Directional":false,"Links":[{"SourceID":99304,"TargetID":99306,"Directional":false}]},{"ID":1969,"SourceStructureID":99596,"TargetStructureID":5278,"Label":"99596-5278 via Unknown from 99599 -> 99598","Type":"Unknown","Directional":false,"Links":[{"SourceID":99599,"TargetID":99598,"Directional":false}]},{"ID":1970,"SourceStructureID":5278,"TargetStructureID":99749,"Label":"5278-99749 via Adherens from 20090 -> 104863, 99752 -> 99748, 99767 -> 99768","Type":"Adherens","Directional":false,"Links":[{"SourceID":20090,"TargetID":104863,"Directional":false},{"SourceID":99752,"TargetID":99748,"Directional":false},{"SourceID":99767,"TargetID":99768,"Directional":false}]},{"ID":1971,"SourceStructureID":99771,"TargetStructureID":5278,"Label":"99771-5278 via Adherens from 99775 -> 20087, 99780 -> 99782","Type":"Adherens","Directional":false,"Links":[{"SourceID":99775,"TargetID":20087,"Directional":false},{"SourceID":99780,"TargetID":99782,"Directional":false}]},{"ID":1972,"SourceStructureID":99789,"TargetStructureID":5278,"Label":"99789-5278 via Unknown from 99790 -> 99791","Type":"Unknown","Directional":false,"Links":[{"SourceID":99790,"TargetID":99791,"Directional":false}]},{"ID":1973,"SourceStructureID":5278,"TargetStructureID":99795,"Label":"5278-99795 via Gap Junction from 20154 -> 115403","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20154,"TargetID":115403,"Directional":false}]},{"ID":1974,"SourceStructureID":5278,"TargetStructureID":100124,"Label":"5278-100124 via Adherens from 100126 -> 100125","Type":"Adherens","Directional":false,"Links":[{"SourceID":100126,"TargetID":100125,"Directional":false}]},{"ID":1975,"SourceStructureID":100210,"TargetStructureID":5278,"Label":"100210-5278 via Gap Junction from 100216 -> 100215","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":100216,"TargetID":100215,"Directional":false}]},{"ID":1976,"SourceStructureID":100210,"TargetStructureID":5278,"Label":"100210-5278 via Unknown from 147268 -> 147267","Type":"Unknown","Directional":false,"Links":[{"SourceID":147268,"TargetID":147267,"Directional":false}]},{"ID":1977,"SourceStructureID":5278,"TargetStructureID":100231,"Label":"5278-100231 via Unknown from 100232 -> 100233","Type":"Unknown","Directional":false,"Links":[{"SourceID":100232,"TargetID":100233,"Directional":false}]},{"ID":1978,"SourceStructureID":5278,"TargetStructureID":100360,"Label":"5278-100360 via Adherens from 20205 -> 100361","Type":"Adherens","Directional":false,"Links":[{"SourceID":20205,"TargetID":100361,"Directional":false}]},{"ID":1979,"SourceStructureID":5278,"TargetStructureID":100414,"Label":"5278-100414 via Adherens from 20131 -> 100430","Type":"Adherens","Directional":false,"Links":[{"SourceID":20131,"TargetID":100430,"Directional":false}]},{"ID":1980,"SourceStructureID":100476,"TargetStructureID":5278,"Label":"100476-5278 via Adherens from 100483 -> 100484","Type":"Adherens","Directional":false,"Links":[{"SourceID":100483,"TargetID":100484,"Directional":false}]},{"ID":1981,"SourceStructureID":5278,"TargetStructureID":100496,"Label":"5278-100496 via Unknown from 147253 -> 147254","Type":"Unknown","Directional":false,"Links":[{"SourceID":147253,"TargetID":147254,"Directional":false}]},{"ID":1982,"SourceStructureID":100788,"TargetStructureID":5278,"Label":"100788-5278 via Adherens from 100800 -> 100801","Type":"Adherens","Directional":false,"Links":[{"SourceID":100800,"TargetID":100801,"Directional":false}]},{"ID":1983,"SourceStructureID":5278,"TargetStructureID":100797,"Label":"5278-100797 via Unknown from 100799 -> 100798","Type":"Unknown","Directional":false,"Links":[{"SourceID":100799,"TargetID":100798,"Directional":false}]},{"ID":1984,"SourceStructureID":5278,"TargetStructureID":100803,"Label":"5278-100803 via Adherens from 100812 -> 100814","Type":"Adherens","Directional":false,"Links":[{"SourceID":100812,"TargetID":100814,"Directional":false}]},{"ID":1985,"SourceStructureID":5278,"TargetStructureID":100807,"Label":"5278-100807 via Unknown from 100811 -> 100810","Type":"Unknown","Directional":false,"Links":[{"SourceID":100811,"TargetID":100810,"Directional":false}]},{"ID":1986,"SourceStructureID":5278,"TargetStructureID":103964,"Label":"5278-103964 via Unknown from 103966 -> 103967","Type":"Unknown","Directional":false,"Links":[{"SourceID":103966,"TargetID":103967,"Directional":false}]},{"ID":1987,"SourceStructureID":5278,"TargetStructureID":103992,"Label":"5278-103992 via Adherens from 103995 -> 103994, 103997 -> 103998","Type":"Adherens","Directional":false,"Links":[{"SourceID":103995,"TargetID":103994,"Directional":false},{"SourceID":103997,"TargetID":103998,"Directional":false}]},{"ID":1988,"SourceStructureID":5278,"TargetStructureID":104032,"Label":"5278-104032 via Unknown from 104031 -> 104033","Type":"Unknown","Directional":false,"Links":[{"SourceID":104031,"TargetID":104033,"Directional":false}]},{"ID":1989,"SourceStructureID":5278,"TargetStructureID":104053,"Label":"5278-104053 via Adherens from 104052 -> 104054","Type":"Adherens","Directional":false,"Links":[{"SourceID":104052,"TargetID":104054,"Directional":false}]},{"ID":1990,"SourceStructureID":104057,"TargetStructureID":5278,"Label":"104057-5278 via Unknown from 104059 -> 104060","Type":"Unknown","Directional":false,"Links":[{"SourceID":104059,"TargetID":104060,"Directional":false}]},{"ID":1991,"SourceStructureID":104062,"TargetStructureID":5278,"Label":"104062-5278 via Adherens from 104866 -> 92161","Type":"Adherens","Directional":false,"Links":[{"SourceID":104866,"TargetID":92161,"Directional":false}]},{"ID":1992,"SourceStructureID":104072,"TargetStructureID":5278,"Label":"104072-5278 via Unknown from 104073 -> 104071","Type":"Unknown","Directional":false,"Links":[{"SourceID":104073,"TargetID":104071,"Directional":false}]},{"ID":1993,"SourceStructureID":104139,"TargetStructureID":5278,"Label":"104139-5278 via Unknown from 104141 -> 104142","Type":"Unknown","Directional":false,"Links":[{"SourceID":104141,"TargetID":104142,"Directional":false}]},{"ID":1994,"SourceStructureID":104143,"TargetStructureID":5278,"Label":"104143-5278 via Adherens from 104144 -> 104146","Type":"Adherens","Directional":false,"Links":[{"SourceID":104144,"TargetID":104146,"Directional":false}]},{"ID":1995,"SourceStructureID":104151,"TargetStructureID":5278,"Label":"104151-5278 via Adherens from 104163 -> 104164","Type":"Adherens","Directional":false,"Links":[{"SourceID":104163,"TargetID":104164,"Directional":false}]},{"ID":1996,"SourceStructureID":104170,"TargetStructureID":5278,"Label":"104170-5278 via Adherens from 104171 -> 104172","Type":"Adherens","Directional":false,"Links":[{"SourceID":104171,"TargetID":104172,"Directional":false}]},{"ID":1997,"SourceStructureID":104190,"TargetStructureID":5278,"Label":"104190-5278 via Unknown from 104191 -> 104192","Type":"Unknown","Directional":false,"Links":[{"SourceID":104191,"TargetID":104192,"Directional":false}]},{"ID":1998,"SourceStructureID":5278,"TargetStructureID":104232,"Label":"5278-104232 via Unknown from 104234 -> 104233","Type":"Unknown","Directional":false,"Links":[{"SourceID":104234,"TargetID":104233,"Directional":false}]},{"ID":1999,"SourceStructureID":5278,"TargetStructureID":104236,"Label":"5278-104236 via Unknown from 104238 -> 104237","Type":"Unknown","Directional":false,"Links":[{"SourceID":104238,"TargetID":104237,"Directional":false}]},{"ID":2000,"SourceStructureID":5278,"TargetStructureID":104292,"Label":"5278-104292 via Unknown from 104290 -> 104294","Type":"Unknown","Directional":false,"Links":[{"SourceID":104290,"TargetID":104294,"Directional":false}]},{"ID":2001,"SourceStructureID":5278,"TargetStructureID":104295,"Label":"5278-104295 via Adherens from 104296 -> 104297","Type":"Adherens","Directional":false,"Links":[{"SourceID":104296,"TargetID":104297,"Directional":false}]},{"ID":2002,"SourceStructureID":5278,"TargetStructureID":104324,"Label":"5278-104324 via Unknown from 92261 -> 104356, 147256 -> 147255","Type":"Unknown","Directional":false,"Links":[{"SourceID":92261,"TargetID":104356,"Directional":false},{"SourceID":147256,"TargetID":147255,"Directional":false}]},{"ID":2003,"SourceStructureID":104327,"TargetStructureID":5278,"Label":"104327-5278 via Adherens from 104328 -> 104329","Type":"Adherens","Directional":false,"Links":[{"SourceID":104328,"TargetID":104329,"Directional":false}]},{"ID":2004,"SourceStructureID":5278,"TargetStructureID":104337,"Label":"5278-104337 via Adherens from 104338 -> 104339","Type":"Adherens","Directional":false,"Links":[{"SourceID":104338,"TargetID":104339,"Directional":false}]},{"ID":2005,"SourceStructureID":5278,"TargetStructureID":104377,"Label":"5278-104377 via Adherens from 104378 -> 104379","Type":"Adherens","Directional":false,"Links":[{"SourceID":104378,"TargetID":104379,"Directional":false}]},{"ID":2006,"SourceStructureID":104391,"TargetStructureID":5278,"Label":"104391-5278 via Unknown from 104392 -> 104393","Type":"Unknown","Directional":false,"Links":[{"SourceID":104392,"TargetID":104393,"Directional":false}]},{"ID":2007,"SourceStructureID":5278,"TargetStructureID":104512,"Label":"5278-104512 via Adherens from 104511 -> 104513","Type":"Adherens","Directional":false,"Links":[{"SourceID":104511,"TargetID":104513,"Directional":false}]},{"ID":2008,"SourceStructureID":5278,"TargetStructureID":104530,"Label":"5278-104530 via Adherens from 104537 -> 104536","Type":"Adherens","Directional":false,"Links":[{"SourceID":104537,"TargetID":104536,"Directional":false}]},{"ID":2009,"SourceStructureID":5278,"TargetStructureID":104587,"Label":"5278-104587 via Adherens from 104588 -> 104589","Type":"Adherens","Directional":false,"Links":[{"SourceID":104588,"TargetID":104589,"Directional":false}]},{"ID":2010,"SourceStructureID":5278,"TargetStructureID":104815,"Label":"5278-104815 via Unknown from 104818 -> 104819","Type":"Unknown","Directional":false,"Links":[{"SourceID":104818,"TargetID":104819,"Directional":false}]},{"ID":2011,"SourceStructureID":5278,"TargetStructureID":120898,"Label":"5278-120898 via Unknown from 114525 -> 120899","Type":"Unknown","Directional":false,"Links":[{"SourceID":114525,"TargetID":120899,"Directional":false}]},{"ID":2012,"SourceStructureID":136728,"TargetStructureID":5278,"Label":"136728-5278 via Adherens from 147271 -> 147272","Type":"Adherens","Directional":false,"Links":[{"SourceID":147271,"TargetID":147272,"Directional":false}]},{"ID":2013,"SourceStructureID":136731,"TargetStructureID":5278,"Label":"136731-5278 via Adherens from 147273 -> 114531","Type":"Adherens","Directional":false,"Links":[{"SourceID":147273,"TargetID":114531,"Directional":false}]},{"ID":2014,"SourceStructureID":136731,"TargetStructureID":5278,"Label":"136731-5278 via Gap Junction from 136732 -> 56585","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136732,"TargetID":56585,"Directional":false}]},{"ID":2015,"SourceStructureID":136733,"TargetStructureID":5278,"Label":"136733-5278 via Adherens from 147259 -> 114205","Type":"Adherens","Directional":false,"Links":[{"SourceID":147259,"TargetID":114205,"Directional":false}]},{"ID":2016,"SourceStructureID":136733,"TargetStructureID":5278,"Label":"136733-5278 via Unknown from 147258 -> 147257","Type":"Unknown","Directional":false,"Links":[{"SourceID":147258,"TargetID":147257,"Directional":false}]},{"ID":2017,"SourceStructureID":5279,"TargetStructureID":5279,"Label":"5279-5279 via Adherens from 49262 -> 49249","Type":"Adherens","Directional":false,"Links":[{"SourceID":49262,"TargetID":49249,"Directional":false}]},{"ID":2018,"SourceStructureID":5279,"TargetStructureID":5280,"Label":"5279-5280 via Adherens from 96388 -> 96389","Type":"Adherens","Directional":false,"Links":[{"SourceID":96388,"TargetID":96389,"Directional":false}]},{"ID":2019,"SourceStructureID":5279,"TargetStructureID":5280,"Label":"5279-5280 via Unknown from 96401 -> 96400","Type":"Unknown","Directional":false,"Links":[{"SourceID":96401,"TargetID":96400,"Directional":false}]},{"ID":2020,"SourceStructureID":5292,"TargetStructureID":5279,"Label":"5292-5279 via Adherens from 131185 -> 131186","Type":"Adherens","Directional":false,"Links":[{"SourceID":131185,"TargetID":131186,"Directional":false}]},{"ID":2021,"SourceStructureID":5292,"TargetStructureID":5279,"Label":"5292-5279 via Gap Junction from 51550 -> 49266","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51550,"TargetID":49266,"Directional":false}]},{"ID":2022,"SourceStructureID":5297,"TargetStructureID":5279,"Label":"5297-5279 via Gap Junction from 92308 -> 92292","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92308,"TargetID":92292,"Directional":false}]},{"ID":2023,"SourceStructureID":5279,"TargetStructureID":5517,"Label":"5279-5517 via Gap Junction from 49267 -> 49275","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49267,"TargetID":49275,"Directional":false}]},{"ID":2024,"SourceStructureID":6117,"TargetStructureID":5279,"Label":"6117-5279 via Gap Junction from 97142 -> 97141, 98034 -> 98033, 133845 -> 133844, 133847 -> 133846","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97142,"TargetID":97141,"Directional":false},{"SourceID":98034,"TargetID":98033,"Directional":false},{"SourceID":133845,"TargetID":133844,"Directional":false},{"SourceID":133847,"TargetID":133846,"Directional":false}]},{"ID":2025,"SourceStructureID":6169,"TargetStructureID":5279,"Label":"6169-5279 via Gap Junction from 9469 -> 92670, 49239 -> 47143, 49241 -> 49242, 92667 -> 9470","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9469,"TargetID":92670,"Directional":false},{"SourceID":49239,"TargetID":47143,"Directional":false},{"SourceID":49241,"TargetID":49242,"Directional":false},{"SourceID":92667,"TargetID":9470,"Directional":false}]},{"ID":2026,"SourceStructureID":5279,"TargetStructureID":9347,"Label":"5279-9347 via Unknown from 96458 -> 96457","Type":"Unknown","Directional":false,"Links":[{"SourceID":96458,"TargetID":96457,"Directional":false}]},{"ID":2027,"SourceStructureID":5279,"TargetStructureID":20136,"Label":"5279-20136 via Gap Junction from 49514 -> 49515, 147952 -> 49263","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49514,"TargetID":49515,"Directional":false},{"SourceID":147952,"TargetID":49263,"Directional":false}]},{"ID":2028,"SourceStructureID":5279,"TargetStructureID":39957,"Label":"5279-39957 via Adherens from 97626 -> 97625, 133769 -> 133770","Type":"Adherens","Directional":false,"Links":[{"SourceID":97626,"TargetID":97625,"Directional":false},{"SourceID":133769,"TargetID":133770,"Directional":false}]},{"ID":2029,"SourceStructureID":5279,"TargetStructureID":39957,"Label":"5279-39957 via Unknown from 133771 -> 133772","Type":"Unknown","Directional":false,"Links":[{"SourceID":133771,"TargetID":133772,"Directional":false}]},{"ID":2030,"SourceStructureID":41009,"TargetStructureID":5279,"Label":"41009-5279 via Adherens from 96479 -> 96478","Type":"Adherens","Directional":false,"Links":[{"SourceID":96479,"TargetID":96478,"Directional":false}]},{"ID":2031,"SourceStructureID":55347,"TargetStructureID":5279,"Label":"55347-5279 via Adherens from 97595 -> 97594","Type":"Adherens","Directional":false,"Links":[{"SourceID":97595,"TargetID":97594,"Directional":false}]},{"ID":2032,"SourceStructureID":55347,"TargetStructureID":5279,"Label":"55347-5279 via Unknown from 97593 -> 97592","Type":"Unknown","Directional":false,"Links":[{"SourceID":97593,"TargetID":97592,"Directional":false}]},{"ID":2033,"SourceStructureID":56841,"TargetStructureID":5279,"Label":"56841-5279 via Unknown from 99219 -> 99220","Type":"Unknown","Directional":false,"Links":[{"SourceID":99219,"TargetID":99220,"Directional":false}]},{"ID":2034,"SourceStructureID":5279,"TargetStructureID":57027,"Label":"5279-57027 via Unknown from 99130 -> 99131","Type":"Unknown","Directional":false,"Links":[{"SourceID":99130,"TargetID":99131,"Directional":false}]},{"ID":2035,"SourceStructureID":5279,"TargetStructureID":59012,"Label":"5279-59012 via Adherens from 92698 -> 92697","Type":"Adherens","Directional":false,"Links":[{"SourceID":92698,"TargetID":92697,"Directional":false}]},{"ID":2036,"SourceStructureID":5279,"TargetStructureID":61836,"Label":"5279-61836 via Unknown from 133773 -> 133774","Type":"Unknown","Directional":false,"Links":[{"SourceID":133773,"TargetID":133774,"Directional":false}]},{"ID":2037,"SourceStructureID":68663,"TargetStructureID":5279,"Label":"68663-5279 via Conventional from 97281 -> 97282","Type":"Conventional","Directional":false,"Links":[{"SourceID":97281,"TargetID":97282,"Directional":false}]},{"ID":2038,"SourceStructureID":5279,"TargetStructureID":85974,"Label":"5279-85974 via Adherens from 85976 -> 85975","Type":"Adherens","Directional":false,"Links":[{"SourceID":85976,"TargetID":85975,"Directional":false}]},{"ID":2039,"SourceStructureID":91634,"TargetStructureID":5279,"Label":"91634-5279 via Adherens from 92656 -> 92655","Type":"Adherens","Directional":false,"Links":[{"SourceID":92656,"TargetID":92655,"Directional":false}]},{"ID":2040,"SourceStructureID":5279,"TargetStructureID":92183,"Label":"5279-92183 via Unknown from 96455 -> 96456","Type":"Unknown","Directional":false,"Links":[{"SourceID":96455,"TargetID":96456,"Directional":false}]},{"ID":2041,"SourceStructureID":92207,"TargetStructureID":5279,"Label":"92207-5279 via Unknown from 126098 -> 126097","Type":"Unknown","Directional":false,"Links":[{"SourceID":126098,"TargetID":126097,"Directional":false}]},{"ID":2042,"SourceStructureID":5279,"TargetStructureID":92295,"Label":"5279-92295 via Adherens from 126427 -> 127680","Type":"Adherens","Directional":false,"Links":[{"SourceID":126427,"TargetID":127680,"Directional":false}]},{"ID":2043,"SourceStructureID":5279,"TargetStructureID":92535,"Label":"5279-92535 via Adherens from 133833 -> 133834","Type":"Adherens","Directional":false,"Links":[{"SourceID":133833,"TargetID":133834,"Directional":false}]},{"ID":2044,"SourceStructureID":92542,"TargetStructureID":5279,"Label":"92542-5279 via Unknown from 92543 -> 92541","Type":"Unknown","Directional":false,"Links":[{"SourceID":92543,"TargetID":92541,"Directional":false}]},{"ID":2045,"SourceStructureID":92553,"TargetStructureID":5279,"Label":"92553-5279 via Unknown from 92554 -> 92552","Type":"Unknown","Directional":false,"Links":[{"SourceID":92554,"TargetID":92552,"Directional":false}]},{"ID":2046,"SourceStructureID":5279,"TargetStructureID":92631,"Label":"5279-92631 via Unknown from 92630 -> 92632","Type":"Unknown","Directional":false,"Links":[{"SourceID":92630,"TargetID":92632,"Directional":false}]},{"ID":2047,"SourceStructureID":92681,"TargetStructureID":5279,"Label":"92681-5279 via Adherens from 92686 -> 92678","Type":"Adherens","Directional":false,"Links":[{"SourceID":92686,"TargetID":92678,"Directional":false}]},{"ID":2048,"SourceStructureID":92681,"TargetStructureID":5279,"Label":"92681-5279 via Unknown from 92685 -> 92679","Type":"Unknown","Directional":false,"Links":[{"SourceID":92685,"TargetID":92679,"Directional":false}]},{"ID":2049,"SourceStructureID":5279,"TargetStructureID":92695,"Label":"5279-92695 via Unknown from 92694 -> 92696","Type":"Unknown","Directional":false,"Links":[{"SourceID":92694,"TargetID":92696,"Directional":false}]},{"ID":2050,"SourceStructureID":92705,"TargetStructureID":5279,"Label":"92705-5279 via Unknown from 92706 -> 92707","Type":"Unknown","Directional":false,"Links":[{"SourceID":92706,"TargetID":92707,"Directional":false}]},{"ID":2051,"SourceStructureID":5279,"TargetStructureID":92715,"Label":"5279-92715 via Unknown from 133796 -> 133797","Type":"Unknown","Directional":false,"Links":[{"SourceID":133796,"TargetID":133797,"Directional":false}]},{"ID":2052,"SourceStructureID":5279,"TargetStructureID":96370,"Label":"5279-96370 via Adherens from 96372 -> 96371","Type":"Adherens","Directional":false,"Links":[{"SourceID":96372,"TargetID":96371,"Directional":false}]},{"ID":2053,"SourceStructureID":5279,"TargetStructureID":96385,"Label":"5279-96385 via Unknown from 96387 -> 96386","Type":"Unknown","Directional":false,"Links":[{"SourceID":96387,"TargetID":96386,"Directional":false}]},{"ID":2054,"SourceStructureID":5279,"TargetStructureID":96403,"Label":"5279-96403 via Adherens from 96406 -> 96405","Type":"Adherens","Directional":false,"Links":[{"SourceID":96406,"TargetID":96405,"Directional":false}]},{"ID":2055,"SourceStructureID":96407,"TargetStructureID":5279,"Label":"96407-5279 via Adherens from 96409 -> 96408","Type":"Adherens","Directional":false,"Links":[{"SourceID":96409,"TargetID":96408,"Directional":false}]},{"ID":2056,"SourceStructureID":5279,"TargetStructureID":96429,"Label":"5279-96429 via Adherens from 96432 -> 96430","Type":"Adherens","Directional":false,"Links":[{"SourceID":96432,"TargetID":96430,"Directional":false}]},{"ID":2057,"SourceStructureID":96446,"TargetStructureID":5279,"Label":"96446-5279 via Adherens from 147960 -> 147961","Type":"Adherens","Directional":false,"Links":[{"SourceID":147960,"TargetID":147961,"Directional":false}]},{"ID":2058,"SourceStructureID":5279,"TargetStructureID":96450,"Label":"5279-96450 via Unknown from 96451 -> 96452","Type":"Unknown","Directional":false,"Links":[{"SourceID":96451,"TargetID":96452,"Directional":false}]},{"ID":2059,"SourceStructureID":5279,"TargetStructureID":96459,"Label":"5279-96459 via Unknown from 96461 -> 96460","Type":"Unknown","Directional":false,"Links":[{"SourceID":96461,"TargetID":96460,"Directional":false}]},{"ID":2060,"SourceStructureID":5279,"TargetStructureID":96489,"Label":"5279-96489 via Unknown from 96492 -> 96491","Type":"Unknown","Directional":false,"Links":[{"SourceID":96492,"TargetID":96491,"Directional":false}]},{"ID":2061,"SourceStructureID":5279,"TargetStructureID":97054,"Label":"5279-97054 via Unknown from 97055 -> 97056","Type":"Unknown","Directional":false,"Links":[{"SourceID":97055,"TargetID":97056,"Directional":false}]},{"ID":2062,"SourceStructureID":5279,"TargetStructureID":97113,"Label":"5279-97113 via Unknown from 97115 -> 97114, 97117 -> 97118","Type":"Unknown","Directional":false,"Links":[{"SourceID":97115,"TargetID":97114,"Directional":false},{"SourceID":97117,"TargetID":97118,"Directional":false}]},{"ID":2063,"SourceStructureID":5279,"TargetStructureID":97190,"Label":"5279-97190 via Unknown from 97192 -> 97191","Type":"Unknown","Directional":false,"Links":[{"SourceID":97192,"TargetID":97191,"Directional":false}]},{"ID":2064,"SourceStructureID":5279,"TargetStructureID":97193,"Label":"5279-97193 via Unknown from 97197 -> 97196","Type":"Unknown","Directional":false,"Links":[{"SourceID":97197,"TargetID":97196,"Directional":false}]},{"ID":2065,"SourceStructureID":97269,"TargetStructureID":5279,"Label":"97269-5279 via Unknown from 97273 -> 97274","Type":"Unknown","Directional":false,"Links":[{"SourceID":97273,"TargetID":97274,"Directional":false}]},{"ID":2066,"SourceStructureID":97286,"TargetStructureID":5279,"Label":"97286-5279 via Unknown from 97289 -> 97288","Type":"Unknown","Directional":false,"Links":[{"SourceID":97289,"TargetID":97288,"Directional":false}]},{"ID":2067,"SourceStructureID":97311,"TargetStructureID":5279,"Label":"97311-5279 via Unknown from 133776 -> 133775","Type":"Unknown","Directional":false,"Links":[{"SourceID":133776,"TargetID":133775,"Directional":false}]},{"ID":2068,"SourceStructureID":97358,"TargetStructureID":5279,"Label":"97358-5279 via Adherens from 133777 -> 133791","Type":"Adherens","Directional":false,"Links":[{"SourceID":133777,"TargetID":133791,"Directional":false}]},{"ID":2069,"SourceStructureID":97363,"TargetStructureID":5279,"Label":"97363-5279 via Unknown from 97365 -> 97364","Type":"Unknown","Directional":false,"Links":[{"SourceID":97365,"TargetID":97364,"Directional":false}]},{"ID":2070,"SourceStructureID":5279,"TargetStructureID":97600,"Label":"5279-97600 via Adherens from 97602 -> 97601","Type":"Adherens","Directional":false,"Links":[{"SourceID":97602,"TargetID":97601,"Directional":false}]},{"ID":2071,"SourceStructureID":5279,"TargetStructureID":97600,"Label":"5279-97600 via Unknown from 133792 -> 133793","Type":"Unknown","Directional":false,"Links":[{"SourceID":133792,"TargetID":133793,"Directional":false}]},{"ID":2072,"SourceStructureID":97646,"TargetStructureID":5279,"Label":"97646-5279 via Adherens from 98012 -> 98011","Type":"Adherens","Directional":false,"Links":[{"SourceID":98012,"TargetID":98011,"Directional":false}]},{"ID":2073,"SourceStructureID":98008,"TargetStructureID":5279,"Label":"98008-5279 via Unknown from 98010 -> 98009","Type":"Unknown","Directional":false,"Links":[{"SourceID":98010,"TargetID":98009,"Directional":false}]},{"ID":2074,"SourceStructureID":5279,"TargetStructureID":98041,"Label":"5279-98041 via Adherens from 98055 -> 98052","Type":"Adherens","Directional":false,"Links":[{"SourceID":98055,"TargetID":98052,"Directional":false}]},{"ID":2075,"SourceStructureID":5279,"TargetStructureID":98100,"Label":"5279-98100 via Adherens from 133841 -> 133842","Type":"Adherens","Directional":false,"Links":[{"SourceID":133841,"TargetID":133842,"Directional":false}]},{"ID":2076,"SourceStructureID":5279,"TargetStructureID":98106,"Label":"5279-98106 via Adherens from 133840 -> 133839","Type":"Adherens","Directional":false,"Links":[{"SourceID":133840,"TargetID":133839,"Directional":false}]},{"ID":2077,"SourceStructureID":5279,"TargetStructureID":98111,"Label":"5279-98111 via Unknown from 133795 -> 133794","Type":"Unknown","Directional":false,"Links":[{"SourceID":133795,"TargetID":133794,"Directional":false}]},{"ID":2078,"SourceStructureID":5279,"TargetStructureID":98122,"Label":"5279-98122 via Adherens from 98126 -> 98125","Type":"Adherens","Directional":false,"Links":[{"SourceID":98126,"TargetID":98125,"Directional":false}]},{"ID":2079,"SourceStructureID":5279,"TargetStructureID":98573,"Label":"5279-98573 via Adherens from 98577 -> 98576","Type":"Adherens","Directional":false,"Links":[{"SourceID":98577,"TargetID":98576,"Directional":false}]},{"ID":2080,"SourceStructureID":98627,"TargetStructureID":5279,"Label":"98627-5279 via Unknown from 98629 -> 98628","Type":"Unknown","Directional":false,"Links":[{"SourceID":98629,"TargetID":98628,"Directional":false}]},{"ID":2081,"SourceStructureID":98667,"TargetStructureID":5279,"Label":"98667-5279 via Unknown from 98670 -> 98668","Type":"Unknown","Directional":false,"Links":[{"SourceID":98670,"TargetID":98668,"Directional":false}]},{"ID":2082,"SourceStructureID":98976,"TargetStructureID":5279,"Label":"98976-5279 via Unknown from 98977 -> 98978","Type":"Unknown","Directional":false,"Links":[{"SourceID":98977,"TargetID":98978,"Directional":false}]},{"ID":2083,"SourceStructureID":5279,"TargetStructureID":99048,"Label":"5279-99048 via Unknown from 99050 -> 99051","Type":"Unknown","Directional":false,"Links":[{"SourceID":99050,"TargetID":99051,"Directional":false}]},{"ID":2084,"SourceStructureID":5279,"TargetStructureID":99056,"Label":"5279-99056 via Unknown from 99046 -> 133843","Type":"Unknown","Directional":false,"Links":[{"SourceID":99046,"TargetID":133843,"Directional":false}]},{"ID":2085,"SourceStructureID":5279,"TargetStructureID":99080,"Label":"5279-99080 via Unknown from 99082 -> 99083","Type":"Unknown","Directional":false,"Links":[{"SourceID":99082,"TargetID":99083,"Directional":false}]},{"ID":2086,"SourceStructureID":99106,"TargetStructureID":5279,"Label":"99106-5279 via Unknown from 129573 -> 129572","Type":"Unknown","Directional":false,"Links":[{"SourceID":129573,"TargetID":129572,"Directional":false}]},{"ID":2087,"SourceStructureID":99112,"TargetStructureID":5279,"Label":"99112-5279 via Unknown from 99114 -> 99113","Type":"Unknown","Directional":false,"Links":[{"SourceID":99114,"TargetID":99113,"Directional":false}]},{"ID":2088,"SourceStructureID":99144,"TargetStructureID":5279,"Label":"99144-5279 via Unknown from 99146 -> 99145","Type":"Unknown","Directional":false,"Links":[{"SourceID":99146,"TargetID":99145,"Directional":false}]},{"ID":2089,"SourceStructureID":99795,"TargetStructureID":5279,"Label":"99795-5279 via Adherens from 99810 -> 99811","Type":"Adherens","Directional":false,"Links":[{"SourceID":99810,"TargetID":99811,"Directional":false}]},{"ID":2090,"SourceStructureID":100780,"TargetStructureID":5279,"Label":"100780-5279 via Adherens from 100785 -> 92665","Type":"Adherens","Directional":false,"Links":[{"SourceID":100785,"TargetID":92665,"Directional":false}]},{"ID":2091,"SourceStructureID":136667,"TargetStructureID":5279,"Label":"136667-5279 via Gap Junction from 136668 -> 126473","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136668,"TargetID":126473,"Directional":false}]},{"ID":2092,"SourceStructureID":5281,"TargetStructureID":6117,"Label":"5281-6117 via Adherens from 83168 -> 83167","Type":"Adherens","Directional":false,"Links":[{"SourceID":83168,"TargetID":83167,"Directional":false}]},{"ID":2093,"SourceStructureID":5281,"TargetStructureID":6117,"Label":"5281-6117 via Unknown from 83203 -> 83202","Type":"Unknown","Directional":false,"Links":[{"SourceID":83203,"TargetID":83202,"Directional":false}]},{"ID":2094,"SourceStructureID":5281,"TargetStructureID":25402,"Label":"5281-25402 via Adherens from 98587 -> 98586","Type":"Adherens","Directional":false,"Links":[{"SourceID":98587,"TargetID":98586,"Directional":false}]},{"ID":2095,"SourceStructureID":5282,"TargetStructureID":5284,"Label":"5282-5284 via Unknown from 124720 -> 112914","Type":"Unknown","Directional":false,"Links":[{"SourceID":124720,"TargetID":112914,"Directional":false}]},{"ID":2096,"SourceStructureID":5561,"TargetStructureID":5282,"Label":"5561-5282 via Adherens from 148146 -> 148147","Type":"Adherens","Directional":false,"Links":[{"SourceID":148146,"TargetID":148147,"Directional":false}]},{"ID":2097,"SourceStructureID":5282,"TargetStructureID":5561,"Label":"5282-5561 via Gap Junction from 136727 -> 135827","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136727,"TargetID":135827,"Directional":false}]},{"ID":2098,"SourceStructureID":5282,"TargetStructureID":5561,"Label":"5282-5561 via Unknown from 136340 -> 130899","Type":"Unknown","Directional":false,"Links":[{"SourceID":136340,"TargetID":130899,"Directional":false}]},{"ID":2099,"SourceStructureID":8037,"TargetStructureID":5282,"Label":"8037-5282 via Adherens from 148178 -> 148179","Type":"Adherens","Directional":false,"Links":[{"SourceID":148178,"TargetID":148179,"Directional":false}]},{"ID":2100,"SourceStructureID":5282,"TargetStructureID":20136,"Label":"5282-20136 via Adherens from 109280 -> 109281","Type":"Adherens","Directional":false,"Links":[{"SourceID":109280,"TargetID":109281,"Directional":false}]},{"ID":2101,"SourceStructureID":5282,"TargetStructureID":20136,"Label":"5282-20136 via Gap Junction from 108858 -> 108859","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108858,"TargetID":108859,"Directional":false}]},{"ID":2102,"SourceStructureID":5282,"TargetStructureID":20136,"Label":"5282-20136 via Unknown from 136348 -> 136347","Type":"Unknown","Directional":false,"Links":[{"SourceID":136348,"TargetID":136347,"Directional":false}]},{"ID":2103,"SourceStructureID":5283,"TargetStructureID":5283,"Label":"5283-5283 via Adherens from 123933 -> 131662, 130539 -> 130538","Type":"Adherens","Directional":false,"Links":[{"SourceID":123933,"TargetID":131662,"Directional":false},{"SourceID":130539,"TargetID":130538,"Directional":false}]},{"ID":2104,"SourceStructureID":5374,"TargetStructureID":5283,"Label":"5374-5283 via Adherens from 123991 -> 123990, 123997 -> 123996","Type":"Adherens","Directional":false,"Links":[{"SourceID":123991,"TargetID":123990,"Directional":false},{"SourceID":123997,"TargetID":123996,"Directional":false}]},{"ID":2105,"SourceStructureID":5374,"TargetStructureID":5283,"Label":"5374-5283 via Unknown from 123985 -> 123984","Type":"Unknown","Directional":false,"Links":[{"SourceID":123985,"TargetID":123984,"Directional":false}]},{"ID":2106,"SourceStructureID":5515,"TargetStructureID":5283,"Label":"5515-5283 via Adherens from 22458 -> 22457, 132170 -> 132171, 132244 -> 132245","Type":"Adherens","Directional":false,"Links":[{"SourceID":22458,"TargetID":22457,"Directional":false},{"SourceID":132170,"TargetID":132171,"Directional":false},{"SourceID":132244,"TargetID":132245,"Directional":false}]},{"ID":2107,"SourceStructureID":5515,"TargetStructureID":5283,"Label":"5515-5283 via Gap Junction from 132172 -> 132173","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132172,"TargetID":132173,"Directional":false}]},{"ID":2108,"SourceStructureID":5283,"TargetStructureID":5562,"Label":"5283-5562 via Gap Junction from 132076 -> 132075","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132076,"TargetID":132075,"Directional":false}]},{"ID":2109,"SourceStructureID":5283,"TargetStructureID":5860,"Label":"5283-5860 via Gap Junction from 124352 -> 124353, 131715 -> 131716","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124352,"TargetID":124353,"Directional":false},{"SourceID":131715,"TargetID":131716,"Directional":false}]},{"ID":2110,"SourceStructureID":5283,"TargetStructureID":6156,"Label":"5283-6156 via Adherens from 123894 -> 123895","Type":"Adherens","Directional":false,"Links":[{"SourceID":123894,"TargetID":123895,"Directional":false}]},{"ID":2111,"SourceStructureID":5283,"TargetStructureID":6156,"Label":"5283-6156 via Gap Junction from 132207 -> 132206","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132207,"TargetID":132206,"Directional":false}]},{"ID":2112,"SourceStructureID":5283,"TargetStructureID":6589,"Label":"5283-6589 via Adherens from 123847 -> 123848","Type":"Adherens","Directional":false,"Links":[{"SourceID":123847,"TargetID":123848,"Directional":false}]},{"ID":2113,"SourceStructureID":7043,"TargetStructureID":5283,"Label":"7043-5283 via Adherens from 118744 -> 118745","Type":"Adherens","Directional":false,"Links":[{"SourceID":118744,"TargetID":118745,"Directional":false}]},{"ID":2114,"SourceStructureID":5283,"TargetStructureID":7043,"Label":"5283-7043 via Touch from 131648 -> 131649","Type":"Touch","Directional":false,"Links":[{"SourceID":131648,"TargetID":131649,"Directional":false}]},{"ID":2115,"SourceStructureID":8033,"TargetStructureID":5283,"Label":"8033-5283 via Adherens from 132111 -> 132144","Type":"Adherens","Directional":false,"Links":[{"SourceID":132111,"TargetID":132144,"Directional":false}]},{"ID":2116,"SourceStructureID":8037,"TargetStructureID":5283,"Label":"8037-5283 via Gap Junction from 131684 -> 131685","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131684,"TargetID":131685,"Directional":false}]},{"ID":2117,"SourceStructureID":5283,"TargetStructureID":9693,"Label":"5283-9693 via Adherens from 135014 -> 135013","Type":"Adherens","Directional":false,"Links":[{"SourceID":135014,"TargetID":135013,"Directional":false}]},{"ID":2118,"SourceStructureID":5283,"TargetStructureID":12897,"Label":"5283-12897 via Gap Junction from 108236 -> 108237, 132086 -> 132087, 132197 -> 132196","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108236,"TargetID":108237,"Directional":false},{"SourceID":132086,"TargetID":132087,"Directional":false},{"SourceID":132197,"TargetID":132196,"Directional":false}]},{"ID":2119,"SourceStructureID":16026,"TargetStructureID":5283,"Label":"16026-5283 via Adherens from 65548 -> 65547, 123763 -> 123762, 131661 -> 131660","Type":"Adherens","Directional":false,"Links":[{"SourceID":65548,"TargetID":65547,"Directional":false},{"SourceID":123763,"TargetID":123762,"Directional":false},{"SourceID":131661,"TargetID":131660,"Directional":false}]},{"ID":2120,"SourceStructureID":16026,"TargetStructureID":5283,"Label":"16026-5283 via Gap Junction from 131656 -> 131657, 134526 -> 134527, 134842 -> 134843","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131656,"TargetID":131657,"Directional":false},{"SourceID":134526,"TargetID":134527,"Directional":false},{"SourceID":134842,"TargetID":134843,"Directional":false}]},{"ID":2121,"SourceStructureID":5283,"TargetStructureID":16026,"Label":"5283-16026 via Touch from 132092 -> 132093","Type":"Touch","Directional":false,"Links":[{"SourceID":132092,"TargetID":132093,"Directional":false}]},{"ID":2122,"SourceStructureID":5283,"TargetStructureID":22554,"Label":"5283-22554 via Unknown from 131687 -> 131688, 132180 -> 123903","Type":"Unknown","Directional":false,"Links":[{"SourceID":131687,"TargetID":131688,"Directional":false},{"SourceID":132180,"TargetID":123903,"Directional":false}]},{"ID":2123,"SourceStructureID":5283,"TargetStructureID":64371,"Label":"5283-64371 via Adherens from 124033 -> 131675, 131676 -> 131677","Type":"Adherens","Directional":false,"Links":[{"SourceID":124033,"TargetID":131675,"Directional":false},{"SourceID":131676,"TargetID":131677,"Directional":false}]},{"ID":2124,"SourceStructureID":5283,"TargetStructureID":64371,"Label":"5283-64371 via Unknown from 123932 -> 135062","Type":"Unknown","Directional":false,"Links":[{"SourceID":123932,"TargetID":135062,"Directional":false}]},{"ID":2125,"SourceStructureID":5283,"TargetStructureID":65555,"Label":"5283-65555 via Unknown from 132133 -> 132134","Type":"Unknown","Directional":false,"Links":[{"SourceID":132133,"TargetID":132134,"Directional":false}]},{"ID":2126,"SourceStructureID":5283,"TargetStructureID":66303,"Label":"5283-66303 via Adherens from 66314 -> 66313","Type":"Adherens","Directional":false,"Links":[{"SourceID":66314,"TargetID":66313,"Directional":false}]},{"ID":2127,"SourceStructureID":67361,"TargetStructureID":5283,"Label":"67361-5283 via Adherens from 130545 -> 124163","Type":"Adherens","Directional":false,"Links":[{"SourceID":130545,"TargetID":124163,"Directional":false}]},{"ID":2128,"SourceStructureID":5283,"TargetStructureID":67361,"Label":"5283-67361 via Unknown from 130547 -> 130546, 132198 -> 124188, 132199 -> 124196","Type":"Unknown","Directional":false,"Links":[{"SourceID":130547,"TargetID":130546,"Directional":false},{"SourceID":132198,"TargetID":124188,"Directional":false},{"SourceID":132199,"TargetID":124196,"Directional":false}]},{"ID":2129,"SourceStructureID":68087,"TargetStructureID":5283,"Label":"68087-5283 via Adherens from 80145 -> 80144","Type":"Adherens","Directional":false,"Links":[{"SourceID":80145,"TargetID":80144,"Directional":false}]},{"ID":2130,"SourceStructureID":5283,"TargetStructureID":68087,"Label":"5283-68087 via Unknown from 132119 -> 132120","Type":"Unknown","Directional":false,"Links":[{"SourceID":132119,"TargetID":132120,"Directional":false}]},{"ID":2131,"SourceStructureID":5283,"TargetStructureID":68435,"Label":"5283-68435 via Adherens from 79879 -> 68452","Type":"Adherens","Directional":false,"Links":[{"SourceID":79879,"TargetID":68452,"Directional":false}]},{"ID":2132,"SourceStructureID":5283,"TargetStructureID":68435,"Label":"5283-68435 via Unknown from 80058 -> 80059","Type":"Unknown","Directional":false,"Links":[{"SourceID":80058,"TargetID":80059,"Directional":false}]},{"ID":2133,"SourceStructureID":68463,"TargetStructureID":5283,"Label":"68463-5283 via Unknown from 132209 -> 79891","Type":"Unknown","Directional":false,"Links":[{"SourceID":132209,"TargetID":79891,"Directional":false}]},{"ID":2134,"SourceStructureID":5283,"TargetStructureID":80079,"Label":"5283-80079 via Adherens from 80078 -> 80080","Type":"Adherens","Directional":false,"Links":[{"SourceID":80078,"TargetID":80080,"Directional":false}]},{"ID":2135,"SourceStructureID":5283,"TargetStructureID":80079,"Label":"5283-80079 via Unknown from 131654 -> 131655","Type":"Unknown","Directional":false,"Links":[{"SourceID":131654,"TargetID":131655,"Directional":false}]},{"ID":2136,"SourceStructureID":80098,"TargetStructureID":5283,"Label":"80098-5283 via Adherens from 131718 -> 131717","Type":"Adherens","Directional":false,"Links":[{"SourceID":131718,"TargetID":131717,"Directional":false}]},{"ID":2137,"SourceStructureID":80101,"TargetStructureID":5283,"Label":"80101-5283 via Adherens from 80102 -> 80100","Type":"Adherens","Directional":false,"Links":[{"SourceID":80102,"TargetID":80100,"Directional":false}]},{"ID":2138,"SourceStructureID":80115,"TargetStructureID":5283,"Label":"80115-5283 via Adherens from 80117 -> 80118","Type":"Adherens","Directional":false,"Links":[{"SourceID":80117,"TargetID":80118,"Directional":false}]},{"ID":2139,"SourceStructureID":5283,"TargetStructureID":80123,"Label":"5283-80123 via Adherens from 80127 -> 80128","Type":"Adherens","Directional":false,"Links":[{"SourceID":80127,"TargetID":80128,"Directional":false}]},{"ID":2140,"SourceStructureID":80137,"TargetStructureID":5283,"Label":"80137-5283 via Unknown from 132118 -> 132117","Type":"Unknown","Directional":false,"Links":[{"SourceID":132118,"TargetID":132117,"Directional":false}]},{"ID":2141,"SourceStructureID":5283,"TargetStructureID":80153,"Label":"5283-80153 via Adherens from 80152 -> 80156","Type":"Adherens","Directional":false,"Links":[{"SourceID":80152,"TargetID":80156,"Directional":false}]},{"ID":2142,"SourceStructureID":80154,"TargetStructureID":5283,"Label":"80154-5283 via Adherens from 80155 -> 80151","Type":"Adherens","Directional":false,"Links":[{"SourceID":80155,"TargetID":80151,"Directional":false}]},{"ID":2143,"SourceStructureID":5283,"TargetStructureID":80167,"Label":"5283-80167 via Unknown from 131700 -> 131701","Type":"Unknown","Directional":false,"Links":[{"SourceID":131700,"TargetID":131701,"Directional":false}]},{"ID":2144,"SourceStructureID":5283,"TargetStructureID":80412,"Label":"5283-80412 via Unknown from 124178 -> 124177","Type":"Unknown","Directional":false,"Links":[{"SourceID":124178,"TargetID":124177,"Directional":false}]},{"ID":2145,"SourceStructureID":5283,"TargetStructureID":85551,"Label":"5283-85551 via Adherens from 123777 -> 123778","Type":"Adherens","Directional":false,"Links":[{"SourceID":123777,"TargetID":123778,"Directional":false}]},{"ID":2146,"SourceStructureID":5283,"TargetStructureID":94935,"Label":"5283-94935 via Adherens from 124337 -> 124338, 131690 -> 124233","Type":"Adherens","Directional":false,"Links":[{"SourceID":124337,"TargetID":124338,"Directional":false},{"SourceID":131690,"TargetID":124233,"Directional":false}]},{"ID":2147,"SourceStructureID":5283,"TargetStructureID":122829,"Label":"5283-122829 via Unknown from 123980 -> 123981, 131672 -> 131671","Type":"Unknown","Directional":false,"Links":[{"SourceID":123980,"TargetID":123981,"Directional":false},{"SourceID":131672,"TargetID":131671,"Directional":false}]},{"ID":2148,"SourceStructureID":5283,"TargetStructureID":131630,"Label":"5283-131630 via Unknown from 131629 -> 131634","Type":"Unknown","Directional":false,"Links":[{"SourceID":131629,"TargetID":131634,"Directional":false}]},{"ID":2149,"SourceStructureID":131664,"TargetStructureID":5283,"Label":"131664-5283 via Adherens from 131667 -> 123959","Type":"Adherens","Directional":false,"Links":[{"SourceID":131667,"TargetID":123959,"Directional":false}]},{"ID":2150,"SourceStructureID":5283,"TargetStructureID":131664,"Label":"5283-131664 via Unknown from 131663 -> 131666","Type":"Unknown","Directional":false,"Links":[{"SourceID":131663,"TargetID":131666,"Directional":false}]},{"ID":2151,"SourceStructureID":131708,"TargetStructureID":5283,"Label":"131708-5283 via Adherens from 131710 -> 131709","Type":"Adherens","Directional":false,"Links":[{"SourceID":131710,"TargetID":131709,"Directional":false}]},{"ID":2152,"SourceStructureID":5283,"TargetStructureID":132081,"Label":"5283-132081 via Gap Junction from 132080 -> 132082","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132080,"TargetID":132082,"Directional":false}]},{"ID":2153,"SourceStructureID":132158,"TargetStructureID":5283,"Label":"132158-5283 via Unknown from 132159 -> 123804","Type":"Unknown","Directional":false,"Links":[{"SourceID":132159,"TargetID":123804,"Directional":false}]},{"ID":2154,"SourceStructureID":5283,"TargetStructureID":135039,"Label":"5283-135039 via Gap Junction from 135038 -> 135041","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135038,"TargetID":135041,"Directional":false}]},{"ID":2155,"SourceStructureID":135052,"TargetStructureID":5283,"Label":"135052-5283 via Gap Junction from 135054 -> 131695","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135054,"TargetID":131695,"Directional":false}]},{"ID":2156,"SourceStructureID":5284,"TargetStructureID":5284,"Label":"5284-5284 via Adherens from 124692 -> 124691","Type":"Adherens","Directional":false,"Links":[{"SourceID":124692,"TargetID":124691,"Directional":false}]},{"ID":2157,"SourceStructureID":5284,"TargetStructureID":5284,"Label":"5284-5284 via Gap Junction from 53431 -> 53430","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53431,"TargetID":53430,"Directional":false}]},{"ID":2158,"SourceStructureID":5284,"TargetStructureID":5292,"Label":"5284-5292 via Adherens from 39425 -> 51576, 91803 -> 91804, 124684 -> 124685, 124706 -> 124705, 127703 -> 127702, 127850 -> 127851, 127881 -> 127882, 127885 -> 127884, 135763 -> 135764, 135768 -> 135767","Type":"Adherens","Directional":false,"Links":[{"SourceID":39425,"TargetID":51576,"Directional":false},{"SourceID":91803,"TargetID":91804,"Directional":false},{"SourceID":124684,"TargetID":124685,"Directional":false},{"SourceID":124706,"TargetID":124705,"Directional":false},{"SourceID":127703,"TargetID":127702,"Directional":false},{"SourceID":127850,"TargetID":127851,"Directional":false},{"SourceID":127881,"TargetID":127882,"Directional":false},{"SourceID":127885,"TargetID":127884,"Directional":false},{"SourceID":135763,"TargetID":135764,"Directional":false},{"SourceID":135768,"TargetID":135767,"Directional":false}]},{"ID":2159,"SourceStructureID":5284,"TargetStructureID":5292,"Label":"5284-5292 via Gap Junction from 49823 -> 49822, 49851 -> 49846, 49861 -> 49928, 49933 -> 49836, 51575 -> 39424, 54349 -> 49895, 54390 -> 91948, 60816 -> 98225, 91596 -> 91594, 91802 -> 51566, 91810 -> 91811, 91881 -> 91882, 91884 -> 91883, 98153 -> 49880, 112877 -> 112878, 113223 -> 49897, 113371 -> 113372, 113619 -> 113620, 124715 -> 124716, 127732 -> 127733","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49823,"TargetID":49822,"Directional":false},{"SourceID":49851,"TargetID":49846,"Directional":false},{"SourceID":49861,"TargetID":49928,"Directional":false},{"SourceID":49933,"TargetID":49836,"Directional":false},{"SourceID":51575,"TargetID":39424,"Directional":false},{"SourceID":54349,"TargetID":49895,"Directional":false},{"SourceID":54390,"TargetID":91948,"Directional":false},{"SourceID":60816,"TargetID":98225,"Directional":false},{"SourceID":91596,"TargetID":91594,"Directional":false},{"SourceID":91802,"TargetID":51566,"Directional":false},{"SourceID":91810,"TargetID":91811,"Directional":false},{"SourceID":91881,"TargetID":91882,"Directional":false},{"SourceID":91884,"TargetID":91883,"Directional":false},{"SourceID":98153,"TargetID":49880,"Directional":false},{"SourceID":112877,"TargetID":112878,"Directional":false},{"SourceID":113223,"TargetID":49897,"Directional":false},{"SourceID":113371,"TargetID":113372,"Directional":false},{"SourceID":113619,"TargetID":113620,"Directional":false},{"SourceID":124715,"TargetID":124716,"Directional":false},{"SourceID":127732,"TargetID":127733,"Directional":false}]},{"ID":2160,"SourceStructureID":5284,"TargetStructureID":5297,"Label":"5284-5297 via Adherens from 127726 -> 127727, 127736 -> 127735","Type":"Adherens","Directional":false,"Links":[{"SourceID":127726,"TargetID":127727,"Directional":false},{"SourceID":127736,"TargetID":127735,"Directional":false}]},{"ID":2161,"SourceStructureID":5284,"TargetStructureID":5297,"Label":"5284-5297 via Gap Junction from 39428 -> 39427, 68601 -> 68599, 92300 -> 92302, 98142 -> 98143, 98150 -> 60839, 112541 -> 112542, 112850 -> 112851, 112910 -> 112909, 113217 -> 113216, 113366 -> 113365, 113378 -> 113377, 113401 -> 113400, 113436 -> 113437, 113522 -> 113521, 113613 -> 113612, 116316 -> 116315, 121068 -> 121069, 124676 -> 121058, 127785 -> 127786","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39428,"TargetID":39427,"Directional":false},{"SourceID":68601,"TargetID":68599,"Directional":false},{"SourceID":92300,"TargetID":92302,"Directional":false},{"SourceID":98142,"TargetID":98143,"Directional":false},{"SourceID":98150,"TargetID":60839,"Directional":false},{"SourceID":112541,"TargetID":112542,"Directional":false},{"SourceID":112850,"TargetID":112851,"Directional":false},{"SourceID":112910,"TargetID":112909,"Directional":false},{"SourceID":113217,"TargetID":113216,"Directional":false},{"SourceID":113366,"TargetID":113365,"Directional":false},{"SourceID":113378,"TargetID":113377,"Directional":false},{"SourceID":113401,"TargetID":113400,"Directional":false},{"SourceID":113436,"TargetID":113437,"Directional":false},{"SourceID":113522,"TargetID":113521,"Directional":false},{"SourceID":113613,"TargetID":113612,"Directional":false},{"SourceID":116316,"TargetID":116315,"Directional":false},{"SourceID":121068,"TargetID":121069,"Directional":false},{"SourceID":124676,"TargetID":121058,"Directional":false},{"SourceID":127785,"TargetID":127786,"Directional":false}]},{"ID":2162,"SourceStructureID":5284,"TargetStructureID":5297,"Label":"5284-5297 via Touch from 127874 -> 127875","Type":"Touch","Directional":false,"Links":[{"SourceID":127874,"TargetID":127875,"Directional":false}]},{"ID":2163,"SourceStructureID":5501,"TargetStructureID":5284,"Label":"5501-5284 via Gap Junction from 113022 -> 113021, 127936 -> 127935","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113022,"TargetID":113021,"Directional":false},{"SourceID":127936,"TargetID":127935,"Directional":false}]},{"ID":2164,"SourceStructureID":5284,"TargetStructureID":5503,"Label":"5284-5503 via Adherens from 127938 -> 127939","Type":"Adherens","Directional":false,"Links":[{"SourceID":127938,"TargetID":127939,"Directional":false}]},{"ID":2165,"SourceStructureID":5284,"TargetStructureID":5503,"Label":"5284-5503 via Gap Junction from 60783 -> 52801","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60783,"TargetID":52801,"Directional":false}]},{"ID":2166,"SourceStructureID":5284,"TargetStructureID":5562,"Label":"5284-5562 via Touch from 77601 -> 77600","Type":"Touch","Directional":false,"Links":[{"SourceID":77601,"TargetID":77600,"Directional":false}]},{"ID":2167,"SourceStructureID":6050,"TargetStructureID":5284,"Label":"6050-5284 via Adherens from 127079 -> 127080","Type":"Adherens","Directional":false,"Links":[{"SourceID":127079,"TargetID":127080,"Directional":false}]},{"ID":2168,"SourceStructureID":6050,"TargetStructureID":5284,"Label":"6050-5284 via Gap Junction from 57065 -> 60795, 92876 -> 98221, 92879 -> 92878, 92888 -> 57071, 113221 -> 113220","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57065,"TargetID":60795,"Directional":false},{"SourceID":92876,"TargetID":98221,"Directional":false},{"SourceID":92879,"TargetID":92878,"Directional":false},{"SourceID":92888,"TargetID":57071,"Directional":false},{"SourceID":113221,"TargetID":113220,"Directional":false}]},{"ID":2169,"SourceStructureID":5284,"TargetStructureID":8720,"Label":"5284-8720 via Unknown from 127824 -> 127825","Type":"Unknown","Directional":false,"Links":[{"SourceID":127824,"TargetID":127825,"Directional":false}]},{"ID":2170,"SourceStructureID":12897,"TargetStructureID":5284,"Label":"12897-5284 via Gap Junction from 12905 -> 112902, 24615 -> 112812","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12905,"TargetID":112902,"Directional":false},{"SourceID":24615,"TargetID":112812,"Directional":false}]},{"ID":2171,"SourceStructureID":15796,"TargetStructureID":5284,"Label":"15796-5284 via Unknown from 124727 -> 113052","Type":"Unknown","Directional":false,"Links":[{"SourceID":124727,"TargetID":113052,"Directional":false}]},{"ID":2172,"SourceStructureID":16026,"TargetStructureID":5284,"Label":"16026-5284 via Adherens from 133823 -> 133822","Type":"Adherens","Directional":false,"Links":[{"SourceID":133823,"TargetID":133822,"Directional":false}]},{"ID":2173,"SourceStructureID":16026,"TargetStructureID":5284,"Label":"16026-5284 via Gap Junction from 113384 -> 113383","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113384,"TargetID":113383,"Directional":false}]},{"ID":2174,"SourceStructureID":5284,"TargetStructureID":16073,"Label":"5284-16073 via Unknown from 113076 -> 113075","Type":"Unknown","Directional":false,"Links":[{"SourceID":113076,"TargetID":113075,"Directional":false}]},{"ID":2175,"SourceStructureID":5284,"TargetStructureID":20136,"Label":"5284-20136 via Gap Junction from 127751 -> 127752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":127751,"TargetID":127752,"Directional":false}]},{"ID":2176,"SourceStructureID":38379,"TargetStructureID":5284,"Label":"38379-5284 via Adherens from 127790 -> 127789","Type":"Adherens","Directional":false,"Links":[{"SourceID":127790,"TargetID":127789,"Directional":false}]},{"ID":2177,"SourceStructureID":5284,"TargetStructureID":38379,"Label":"5284-38379 via Unknown from 124737 -> 124738","Type":"Unknown","Directional":false,"Links":[{"SourceID":124737,"TargetID":124738,"Directional":false}]},{"ID":2178,"SourceStructureID":53218,"TargetStructureID":5284,"Label":"53218-5284 via Unknown from 113084 -> 113083","Type":"Unknown","Directional":false,"Links":[{"SourceID":113084,"TargetID":113083,"Directional":false}]},{"ID":2179,"SourceStructureID":5284,"TargetStructureID":54074,"Label":"5284-54074 via Adherens from 113426 -> 113427","Type":"Adherens","Directional":false,"Links":[{"SourceID":113426,"TargetID":113427,"Directional":false}]},{"ID":2180,"SourceStructureID":54252,"TargetStructureID":5284,"Label":"54252-5284 via Unknown from 113535 -> 113534","Type":"Unknown","Directional":false,"Links":[{"SourceID":113535,"TargetID":113534,"Directional":false}]},{"ID":2181,"SourceStructureID":5284,"TargetStructureID":60843,"Label":"5284-60843 via Unknown from 113212 -> 113211","Type":"Unknown","Directional":false,"Links":[{"SourceID":113212,"TargetID":113211,"Directional":false}]},{"ID":2182,"SourceStructureID":5284,"TargetStructureID":67818,"Label":"5284-67818 via Gap Junction from 127730 -> 127731","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":127730,"TargetID":127731,"Directional":false}]},{"ID":2183,"SourceStructureID":68093,"TargetStructureID":5284,"Label":"68093-5284 via Unknown from 124609 -> 124608","Type":"Unknown","Directional":false,"Links":[{"SourceID":124609,"TargetID":124608,"Directional":false}]},{"ID":2184,"SourceStructureID":68135,"TargetStructureID":5284,"Label":"68135-5284 via Adherens from 113589 -> 113588","Type":"Adherens","Directional":false,"Links":[{"SourceID":113589,"TargetID":113588,"Directional":false}]},{"ID":2185,"SourceStructureID":5284,"TargetStructureID":68135,"Label":"5284-68135 via Gap Junction from 113587 -> 113586","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113587,"TargetID":113586,"Directional":false}]},{"ID":2186,"SourceStructureID":5284,"TargetStructureID":68198,"Label":"5284-68198 via Adherens from 68201 -> 68200","Type":"Adherens","Directional":false,"Links":[{"SourceID":68201,"TargetID":68200,"Directional":false}]},{"ID":2187,"SourceStructureID":70379,"TargetStructureID":5284,"Label":"70379-5284 via Adherens from 113397 -> 113396, 127684 -> 127685","Type":"Adherens","Directional":false,"Links":[{"SourceID":113397,"TargetID":113396,"Directional":false},{"SourceID":127684,"TargetID":127685,"Directional":false}]},{"ID":2188,"SourceStructureID":5284,"TargetStructureID":77603,"Label":"5284-77603 via Adherens from 64649 -> 113111","Type":"Adherens","Directional":false,"Links":[{"SourceID":64649,"TargetID":113111,"Directional":false}]},{"ID":2189,"SourceStructureID":5284,"TargetStructureID":85311,"Label":"5284-85311 via Unknown from 113200 -> 113202","Type":"Unknown","Directional":false,"Links":[{"SourceID":113200,"TargetID":113202,"Directional":false}]},{"ID":2190,"SourceStructureID":5284,"TargetStructureID":92092,"Label":"5284-92092 via Adherens from 113064 -> 113065, 127861 -> 127862","Type":"Adherens","Directional":false,"Links":[{"SourceID":113064,"TargetID":113065,"Directional":false},{"SourceID":127861,"TargetID":127862,"Directional":false}]},{"ID":2191,"SourceStructureID":5284,"TargetStructureID":92092,"Label":"5284-92092 via Unknown from 112802 -> 112804, 113062 -> 113061, 113316 -> 113315","Type":"Unknown","Directional":false,"Links":[{"SourceID":112802,"TargetID":112804,"Directional":false},{"SourceID":113062,"TargetID":113061,"Directional":false},{"SourceID":113316,"TargetID":113315,"Directional":false}]},{"ID":2192,"SourceStructureID":92872,"TargetStructureID":5284,"Label":"92872-5284 via Unknown from 92873 -> 98179, 127700 -> 98185","Type":"Unknown","Directional":false,"Links":[{"SourceID":92873,"TargetID":98179,"Directional":false},{"SourceID":127700,"TargetID":98185,"Directional":false}]},{"ID":2193,"SourceStructureID":113086,"TargetStructureID":5284,"Label":"113086-5284 via Adherens from 113117 -> 64609","Type":"Adherens","Directional":false,"Links":[{"SourceID":113117,"TargetID":64609,"Directional":false}]},{"ID":2194,"SourceStructureID":5284,"TargetStructureID":113086,"Label":"5284-113086 via Unknown from 127894 -> 127893","Type":"Unknown","Directional":false,"Links":[{"SourceID":127894,"TargetID":127893,"Directional":false}]},{"ID":2195,"SourceStructureID":5284,"TargetStructureID":113332,"Label":"5284-113332 via Adherens from 113327 -> 113334","Type":"Adherens","Directional":false,"Links":[{"SourceID":113327,"TargetID":113334,"Directional":false}]},{"ID":2196,"SourceStructureID":113541,"TargetStructureID":5284,"Label":"113541-5284 via Adherens from 127690 -> 127689","Type":"Adherens","Directional":false,"Links":[{"SourceID":127690,"TargetID":127689,"Directional":false}]},{"ID":2197,"SourceStructureID":5284,"TargetStructureID":113541,"Label":"5284-113541 via Gap Junction from 56720 -> 113542","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56720,"TargetID":113542,"Directional":false}]},{"ID":2198,"SourceStructureID":113547,"TargetStructureID":5284,"Label":"113547-5284 via Gap Junction from 113553 -> 113552","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113553,"TargetID":113552,"Directional":false}]},{"ID":2199,"SourceStructureID":117803,"TargetStructureID":5284,"Label":"117803-5284 via Unknown from 124757 -> 113643, 124758 -> 113641","Type":"Unknown","Directional":false,"Links":[{"SourceID":124757,"TargetID":113643,"Directional":false},{"SourceID":124758,"TargetID":113641,"Directional":false}]},{"ID":2200,"SourceStructureID":5284,"TargetStructureID":117892,"Label":"5284-117892 via Unknown from 113081 -> 130260","Type":"Unknown","Directional":false,"Links":[{"SourceID":113081,"TargetID":130260,"Directional":false}]},{"ID":2201,"SourceStructureID":121006,"TargetStructureID":5284,"Label":"121006-5284 via Unknown from 124751 -> 113392","Type":"Unknown","Directional":false,"Links":[{"SourceID":124751,"TargetID":113392,"Directional":false}]},{"ID":2202,"SourceStructureID":5284,"TargetStructureID":121044,"Label":"5284-121044 via Adherens from 124615 -> 124616, 124618 -> 98177","Type":"Adherens","Directional":false,"Links":[{"SourceID":124615,"TargetID":124616,"Directional":false},{"SourceID":124618,"TargetID":98177,"Directional":false}]},{"ID":2203,"SourceStructureID":134553,"TargetStructureID":5284,"Label":"134553-5284 via Unknown from 147972 -> 147973","Type":"Unknown","Directional":false,"Links":[{"SourceID":147972,"TargetID":147973,"Directional":false}]},{"ID":2204,"SourceStructureID":136736,"TargetStructureID":5284,"Label":"136736-5284 via Unknown from 136737 -> 112555","Type":"Unknown","Directional":false,"Links":[{"SourceID":136737,"TargetID":112555,"Directional":false}]},{"ID":2205,"SourceStructureID":5292,"TargetStructureID":5292,"Label":"5292-5292 via Adherens from 49793 -> 49792, 92062 -> 92063","Type":"Adherens","Directional":false,"Links":[{"SourceID":49793,"TargetID":49792,"Directional":false},{"SourceID":92062,"TargetID":92063,"Directional":false}]},{"ID":2206,"SourceStructureID":5292,"TargetStructureID":5292,"Label":"5292-5292 via Gap Junction from 51544 -> 51545, 92359 -> 92360","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51544,"TargetID":51545,"Directional":false},{"SourceID":92359,"TargetID":92360,"Directional":false}]},{"ID":2207,"SourceStructureID":5297,"TargetStructureID":5292,"Label":"5297-5292 via Gap Junction from 56838 -> 56837, 68598 -> 68597, 121089 -> 121090, 121093 -> 121094, 133983 -> 133982","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56838,"TargetID":56837,"Directional":false},{"SourceID":68598,"TargetID":68597,"Directional":false},{"SourceID":121089,"TargetID":121090,"Directional":false},{"SourceID":121093,"TargetID":121094,"Directional":false},{"SourceID":133983,"TargetID":133982,"Directional":false}]},{"ID":2208,"SourceStructureID":5485,"TargetStructureID":5292,"Label":"5485-5292 via Unknown from 91850 -> 91849","Type":"Unknown","Directional":false,"Links":[{"SourceID":91850,"TargetID":91849,"Directional":false}]},{"ID":2209,"SourceStructureID":5292,"TargetStructureID":5650,"Label":"5292-5650 via Adherens from 91905 -> 91904, 103884 -> 103883, 135612 -> 135611, 135615 -> 135614, 135616 -> 135617, 135618 -> 135619, 135762 -> 135761","Type":"Adherens","Directional":false,"Links":[{"SourceID":91905,"TargetID":91904,"Directional":false},{"SourceID":103884,"TargetID":103883,"Directional":false},{"SourceID":135612,"TargetID":135611,"Directional":false},{"SourceID":135615,"TargetID":135614,"Directional":false},{"SourceID":135616,"TargetID":135617,"Directional":false},{"SourceID":135618,"TargetID":135619,"Directional":false},{"SourceID":135762,"TargetID":135761,"Directional":false}]},{"ID":2210,"SourceStructureID":5650,"TargetStructureID":5292,"Label":"5650-5292 via Gap Junction from 29919 -> 29918, 49830 -> 49831, 49868 -> 49867, 54334 -> 54335, 56724 -> 56723, 56836 -> 91939, 133969 -> 133968, 133970 -> 133971, 133973 -> 133974, 135759 -> 135760","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29919,"TargetID":29918,"Directional":false},{"SourceID":49830,"TargetID":49831,"Directional":false},{"SourceID":49868,"TargetID":49867,"Directional":false},{"SourceID":54334,"TargetID":54335,"Directional":false},{"SourceID":56724,"TargetID":56723,"Directional":false},{"SourceID":56836,"TargetID":91939,"Directional":false},{"SourceID":133969,"TargetID":133968,"Directional":false},{"SourceID":133970,"TargetID":133971,"Directional":false},{"SourceID":133973,"TargetID":133974,"Directional":false},{"SourceID":135759,"TargetID":135760,"Directional":false}]},{"ID":2211,"SourceStructureID":6050,"TargetStructureID":5292,"Label":"6050-5292 via Adherens from 70298 -> 15322, 127077 -> 127078, 127081 -> 127082, 127542 -> 127541, 127624 -> 127625, 135770 -> 135769, 135772 -> 135771","Type":"Adherens","Directional":false,"Links":[{"SourceID":70298,"TargetID":15322,"Directional":false},{"SourceID":127077,"TargetID":127078,"Directional":false},{"SourceID":127081,"TargetID":127082,"Directional":false},{"SourceID":127542,"TargetID":127541,"Directional":false},{"SourceID":127624,"TargetID":127625,"Directional":false},{"SourceID":135770,"TargetID":135769,"Directional":false},{"SourceID":135772,"TargetID":135771,"Directional":false}]},{"ID":2212,"SourceStructureID":5292,"TargetStructureID":6050,"Label":"5292-6050 via Gap Junction from 45545 -> 45544, 51896 -> 51897, 54393 -> 91940, 66163 -> 66161, 66361 -> 66360, 91962 -> 91963, 92029 -> 92030, 92043 -> 92044, 92057 -> 92056, 92367 -> 92368, 114278 -> 114279, 133986 -> 133987","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45545,"TargetID":45544,"Directional":false},{"SourceID":51896,"TargetID":51897,"Directional":false},{"SourceID":54393,"TargetID":91940,"Directional":false},{"SourceID":66163,"TargetID":66161,"Directional":false},{"SourceID":66361,"TargetID":66360,"Directional":false},{"SourceID":91962,"TargetID":91963,"Directional":false},{"SourceID":92029,"TargetID":92030,"Directional":false},{"SourceID":92043,"TargetID":92044,"Directional":false},{"SourceID":92057,"TargetID":92056,"Directional":false},{"SourceID":92367,"TargetID":92368,"Directional":false},{"SourceID":114278,"TargetID":114279,"Directional":false},{"SourceID":133986,"TargetID":133987,"Directional":false}]},{"ID":2213,"SourceStructureID":5292,"TargetStructureID":6117,"Label":"5292-6117 via Adherens from 84387 -> 84388, 135493 -> 135492","Type":"Adherens","Directional":false,"Links":[{"SourceID":84387,"TargetID":84388,"Directional":false},{"SourceID":135493,"TargetID":135492,"Directional":false}]},{"ID":2214,"SourceStructureID":5292,"TargetStructureID":6117,"Label":"5292-6117 via Gap Junction from 49884 -> 47287, 51345 -> 51346, 51361 -> 51531, 91857 -> 85420, 133976 -> 133977, 133979 -> 133978, 133980 -> 133981, 133985 -> 133984, 147852 -> 147851","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49884,"TargetID":47287,"Directional":false},{"SourceID":51345,"TargetID":51346,"Directional":false},{"SourceID":51361,"TargetID":51531,"Directional":false},{"SourceID":91857,"TargetID":85420,"Directional":false},{"SourceID":133976,"TargetID":133977,"Directional":false},{"SourceID":133979,"TargetID":133978,"Directional":false},{"SourceID":133980,"TargetID":133981,"Directional":false},{"SourceID":133985,"TargetID":133984,"Directional":false},{"SourceID":147852,"TargetID":147851,"Directional":false}]},{"ID":2215,"SourceStructureID":5292,"TargetStructureID":6117,"Label":"5292-6117 via Touch from 92409 -> 92410","Type":"Touch","Directional":false,"Links":[{"SourceID":92409,"TargetID":92410,"Directional":false}]},{"ID":2216,"SourceStructureID":5292,"TargetStructureID":7073,"Label":"5292-7073 via Unknown from 91590 -> 113182","Type":"Unknown","Directional":false,"Links":[{"SourceID":91590,"TargetID":113182,"Directional":false}]},{"ID":2217,"SourceStructureID":30130,"TargetStructureID":5292,"Label":"30130-5292 via Unknown from 91591 -> 91592","Type":"Unknown","Directional":false,"Links":[{"SourceID":91591,"TargetID":91592,"Directional":false}]},{"ID":2218,"SourceStructureID":5292,"TargetStructureID":55132,"Label":"5292-55132 via Adherens from 91899 -> 91897","Type":"Adherens","Directional":false,"Links":[{"SourceID":91899,"TargetID":91897,"Directional":false}]},{"ID":2219,"SourceStructureID":55132,"TargetStructureID":5292,"Label":"55132-5292 via Gap Junction from 55141 -> 49864","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55141,"TargetID":49864,"Directional":false}]},{"ID":2220,"SourceStructureID":5292,"TargetStructureID":59482,"Label":"5292-59482 via Adherens from 89118 -> 59493","Type":"Adherens","Directional":false,"Links":[{"SourceID":89118,"TargetID":59493,"Directional":false}]},{"ID":2221,"SourceStructureID":67818,"TargetStructureID":5292,"Label":"67818-5292 via Unknown from 91608 -> 91607","Type":"Unknown","Directional":false,"Links":[{"SourceID":91608,"TargetID":91607,"Directional":false}]},{"ID":2222,"SourceStructureID":5292,"TargetStructureID":68531,"Label":"5292-68531 via Unknown from 68535 -> 68534","Type":"Unknown","Directional":false,"Links":[{"SourceID":68535,"TargetID":68534,"Directional":false}]},{"ID":2223,"SourceStructureID":76811,"TargetStructureID":5292,"Label":"76811-5292 via Unknown from 133972 -> 124687","Type":"Unknown","Directional":false,"Links":[{"SourceID":133972,"TargetID":124687,"Directional":false}]},{"ID":2224,"SourceStructureID":91805,"TargetStructureID":5292,"Label":"91805-5292 via Unknown from 91807 -> 91806","Type":"Unknown","Directional":false,"Links":[{"SourceID":91807,"TargetID":91806,"Directional":false}]},{"ID":2225,"SourceStructureID":91812,"TargetStructureID":5292,"Label":"91812-5292 via Unknown from 91816 -> 91815","Type":"Unknown","Directional":false,"Links":[{"SourceID":91816,"TargetID":91815,"Directional":false}]},{"ID":2226,"SourceStructureID":91817,"TargetStructureID":5292,"Label":"91817-5292 via Unknown from 91819 -> 91818","Type":"Unknown","Directional":false,"Links":[{"SourceID":91819,"TargetID":91818,"Directional":false}]},{"ID":2227,"SourceStructureID":5292,"TargetStructureID":91823,"Label":"5292-91823 via Unknown from 91824 -> 91825","Type":"Unknown","Directional":false,"Links":[{"SourceID":91824,"TargetID":91825,"Directional":false}]},{"ID":2228,"SourceStructureID":5292,"TargetStructureID":91870,"Label":"5292-91870 via Gap Junction from 91873 -> 91872","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91873,"TargetID":91872,"Directional":false}]},{"ID":2229,"SourceStructureID":91890,"TargetStructureID":5292,"Label":"91890-5292 via Unknown from 91894 -> 91895","Type":"Unknown","Directional":false,"Links":[{"SourceID":91894,"TargetID":91895,"Directional":false}]},{"ID":2230,"SourceStructureID":91891,"TargetStructureID":5292,"Label":"91891-5292 via Unknown from 91893 -> 91896","Type":"Unknown","Directional":false,"Links":[{"SourceID":91893,"TargetID":91896,"Directional":false}]},{"ID":2231,"SourceStructureID":91933,"TargetStructureID":5292,"Label":"91933-5292 via Unknown from 91937 -> 91936","Type":"Unknown","Directional":false,"Links":[{"SourceID":91937,"TargetID":91936,"Directional":false}]},{"ID":2232,"SourceStructureID":91964,"TargetStructureID":5292,"Label":"91964-5292 via Unknown from 91965 -> 91966","Type":"Unknown","Directional":false,"Links":[{"SourceID":91965,"TargetID":91966,"Directional":false}]},{"ID":2233,"SourceStructureID":5292,"TargetStructureID":91967,"Label":"5292-91967 via Adherens from 91971 -> 91970","Type":"Adherens","Directional":false,"Links":[{"SourceID":91971,"TargetID":91970,"Directional":false}]},{"ID":2234,"SourceStructureID":5292,"TargetStructureID":91967,"Label":"5292-91967 via Gap Junction from 91969 -> 91968","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91969,"TargetID":91968,"Directional":false}]},{"ID":2235,"SourceStructureID":5292,"TargetStructureID":92031,"Label":"5292-92031 via Adherens from 92033 -> 92032","Type":"Adherens","Directional":false,"Links":[{"SourceID":92033,"TargetID":92032,"Directional":false}]},{"ID":2236,"SourceStructureID":92058,"TargetStructureID":5292,"Label":"92058-5292 via Unknown from 92060 -> 92059","Type":"Unknown","Directional":false,"Links":[{"SourceID":92060,"TargetID":92059,"Directional":false}]},{"ID":2237,"SourceStructureID":5292,"TargetStructureID":92064,"Label":"5292-92064 via Unknown from 92065 -> 92066","Type":"Unknown","Directional":false,"Links":[{"SourceID":92065,"TargetID":92066,"Directional":false}]},{"ID":2238,"SourceStructureID":92073,"TargetStructureID":5292,"Label":"92073-5292 via Adherens from 127662 -> 127661","Type":"Adherens","Directional":false,"Links":[{"SourceID":127662,"TargetID":127661,"Directional":false}]},{"ID":2239,"SourceStructureID":92073,"TargetStructureID":5292,"Label":"92073-5292 via Unknown from 127659 -> 127660","Type":"Unknown","Directional":false,"Links":[{"SourceID":127659,"TargetID":127660,"Directional":false}]},{"ID":2240,"SourceStructureID":97358,"TargetStructureID":5292,"Label":"97358-5292 via Adherens from 131187 -> 131188","Type":"Adherens","Directional":false,"Links":[{"SourceID":131187,"TargetID":131188,"Directional":false}]},{"ID":2241,"SourceStructureID":97358,"TargetStructureID":5292,"Label":"97358-5292 via Gap Junction from 131183 -> 131182","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131183,"TargetID":131182,"Directional":false}]},{"ID":2242,"SourceStructureID":113541,"TargetStructureID":5292,"Label":"113541-5292 via Gap Junction from 113544 -> 60809","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113544,"TargetID":60809,"Directional":false}]},{"ID":2243,"SourceStructureID":5295,"TargetStructureID":5519,"Label":"5295-5519 via Gap Junction from 59182 -> 59157","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59182,"TargetID":59157,"Directional":false}]},{"ID":2244,"SourceStructureID":59145,"TargetStructureID":5295,"Label":"59145-5295 via Touch from 59178 -> 59177","Type":"Touch","Directional":false,"Links":[{"SourceID":59178,"TargetID":59177,"Directional":false}]},{"ID":2245,"SourceStructureID":59163,"TargetStructureID":5295,"Label":"59163-5295 via Gap Junction from 59165 -> 59181","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59165,"TargetID":59181,"Directional":false}]},{"ID":2246,"SourceStructureID":59793,"TargetStructureID":5295,"Label":"59793-5295 via Gap Junction from 59794 -> 59792","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59794,"TargetID":59792,"Directional":false}]},{"ID":2247,"SourceStructureID":5297,"TargetStructureID":5297,"Label":"5297-5297 via Adherens from 98136 -> 98137","Type":"Adherens","Directional":false,"Links":[{"SourceID":98136,"TargetID":98137,"Directional":false}]},{"ID":2248,"SourceStructureID":5297,"TargetStructureID":5297,"Label":"5297-5297 via Gap Junction from 116424 -> 116423, 147335 -> 147334","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116424,"TargetID":116423,"Directional":false},{"SourceID":147335,"TargetID":147334,"Directional":false}]},{"ID":2249,"SourceStructureID":5297,"TargetStructureID":5297,"Label":"5297-5297 via Touch from 147351 -> 147352","Type":"Touch","Directional":false,"Links":[{"SourceID":147351,"TargetID":147352,"Directional":false}]},{"ID":2250,"SourceStructureID":5618,"TargetStructureID":5297,"Label":"5618-5297 via Unknown from 147356 -> 147355","Type":"Unknown","Directional":false,"Links":[{"SourceID":147356,"TargetID":147355,"Directional":false}]},{"ID":2251,"SourceStructureID":5297,"TargetStructureID":6050,"Label":"5297-6050 via Gap Junction from 98392 -> 98389, 121109 -> 121110","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98392,"TargetID":98389,"Directional":false},{"SourceID":121109,"TargetID":121110,"Directional":false}]},{"ID":2252,"SourceStructureID":5297,"TargetStructureID":6117,"Label":"5297-6117 via Gap Junction from 121056 -> 121055","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121056,"TargetID":121055,"Directional":false}]},{"ID":2253,"SourceStructureID":5297,"TargetStructureID":9347,"Label":"5297-9347 via Gap Junction from 116499 -> 120996","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116499,"TargetID":120996,"Directional":false}]},{"ID":2254,"SourceStructureID":16026,"TargetStructureID":5297,"Label":"16026-5297 via Touch from 134515 -> 134516, 134523 -> 134524","Type":"Touch","Directional":false,"Links":[{"SourceID":134515,"TargetID":134516,"Directional":false},{"SourceID":134523,"TargetID":134524,"Directional":false}]},{"ID":2255,"SourceStructureID":5297,"TargetStructureID":61450,"Label":"5297-61450 via Unknown from 134290 -> 134289","Type":"Unknown","Directional":false,"Links":[{"SourceID":134290,"TargetID":134289,"Directional":false}]},{"ID":2256,"SourceStructureID":66111,"TargetStructureID":5297,"Label":"66111-5297 via Unknown from 116494 -> 116493","Type":"Unknown","Directional":false,"Links":[{"SourceID":116494,"TargetID":116493,"Directional":false}]},{"ID":2257,"SourceStructureID":67818,"TargetStructureID":5297,"Label":"67818-5297 via Unknown from 147358 -> 147357","Type":"Unknown","Directional":false,"Links":[{"SourceID":147358,"TargetID":147357,"Directional":false}]},{"ID":2258,"SourceStructureID":92193,"TargetStructureID":5297,"Label":"92193-5297 via Adherens from 147377 -> 147376","Type":"Adherens","Directional":false,"Links":[{"SourceID":147377,"TargetID":147376,"Directional":false}]},{"ID":2259,"SourceStructureID":92935,"TargetStructureID":5297,"Label":"92935-5297 via Unknown from 147373 -> 147372","Type":"Unknown","Directional":false,"Links":[{"SourceID":147373,"TargetID":147372,"Directional":false}]},{"ID":2260,"SourceStructureID":93248,"TargetStructureID":5297,"Label":"93248-5297 via Unknown from 147359 -> 147360, 147381 -> 147380","Type":"Unknown","Directional":false,"Links":[{"SourceID":147359,"TargetID":147360,"Directional":false},{"SourceID":147381,"TargetID":147380,"Directional":false}]},{"ID":2261,"SourceStructureID":93301,"TargetStructureID":5297,"Label":"93301-5297 via Unknown from 93304 -> 93300, 147382 -> 147383","Type":"Unknown","Directional":false,"Links":[{"SourceID":93304,"TargetID":93300,"Directional":false},{"SourceID":147382,"TargetID":147383,"Directional":false}]},{"ID":2262,"SourceStructureID":93312,"TargetStructureID":5297,"Label":"93312-5297 via Unknown from 93314 -> 93310","Type":"Unknown","Directional":false,"Links":[{"SourceID":93314,"TargetID":93310,"Directional":false}]},{"ID":2263,"SourceStructureID":93321,"TargetStructureID":5297,"Label":"93321-5297 via Unknown from 93322 -> 93320","Type":"Unknown","Directional":false,"Links":[{"SourceID":93322,"TargetID":93320,"Directional":false}]},{"ID":2264,"SourceStructureID":93329,"TargetStructureID":5297,"Label":"93329-5297 via Adherens from 147374 -> 147375","Type":"Adherens","Directional":false,"Links":[{"SourceID":147374,"TargetID":147375,"Directional":false}]},{"ID":2265,"SourceStructureID":5297,"TargetStructureID":93329,"Label":"5297-93329 via Gap Junction from 53663 -> 93332","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53663,"TargetID":93332,"Directional":false}]},{"ID":2266,"SourceStructureID":5297,"TargetStructureID":93333,"Label":"5297-93333 via Unknown from 134292 -> 134291","Type":"Unknown","Directional":false,"Links":[{"SourceID":134292,"TargetID":134291,"Directional":false}]},{"ID":2267,"SourceStructureID":5297,"TargetStructureID":93355,"Label":"5297-93355 via Unknown from 134298 -> 134299","Type":"Unknown","Directional":false,"Links":[{"SourceID":134298,"TargetID":134299,"Directional":false}]},{"ID":2268,"SourceStructureID":5297,"TargetStructureID":97358,"Label":"5297-97358 via Unknown from 134275 -> 134276","Type":"Unknown","Directional":false,"Links":[{"SourceID":134275,"TargetID":134276,"Directional":false}]},{"ID":2269,"SourceStructureID":5297,"TargetStructureID":116504,"Label":"5297-116504 via Unknown from 120275 -> 120276","Type":"Unknown","Directional":false,"Links":[{"SourceID":120275,"TargetID":120276,"Directional":false}]},{"ID":2270,"SourceStructureID":120987,"TargetStructureID":5297,"Label":"120987-5297 via Unknown from 134301 -> 134300","Type":"Unknown","Directional":false,"Links":[{"SourceID":134301,"TargetID":134300,"Directional":false}]},{"ID":2271,"SourceStructureID":120992,"TargetStructureID":5297,"Label":"120992-5297 via Unknown from 147338 -> 147339","Type":"Unknown","Directional":false,"Links":[{"SourceID":147338,"TargetID":147339,"Directional":false}]},{"ID":2272,"SourceStructureID":5297,"TargetStructureID":120997,"Label":"5297-120997 via Adherens from 147341 -> 147342","Type":"Adherens","Directional":false,"Links":[{"SourceID":147341,"TargetID":147342,"Directional":false}]},{"ID":2273,"SourceStructureID":120997,"TargetStructureID":5297,"Label":"120997-5297 via Gap Junction from 120998 -> 116515","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120998,"TargetID":116515,"Directional":false}]},{"ID":2274,"SourceStructureID":120999,"TargetStructureID":5297,"Label":"120999-5297 via Unknown from 147346 -> 147345","Type":"Unknown","Directional":false,"Links":[{"SourceID":147346,"TargetID":147345,"Directional":false}]},{"ID":2275,"SourceStructureID":5297,"TargetStructureID":121001,"Label":"5297-121001 via Unknown from 121002 -> 121003","Type":"Unknown","Directional":false,"Links":[{"SourceID":121002,"TargetID":121003,"Directional":false}]},{"ID":2276,"SourceStructureID":5297,"TargetStructureID":121006,"Label":"5297-121006 via Adherens from 127725 -> 127724, 147366 -> 147365","Type":"Adherens","Directional":false,"Links":[{"SourceID":127725,"TargetID":127724,"Directional":false},{"SourceID":147366,"TargetID":147365,"Directional":false}]},{"ID":2277,"SourceStructureID":121006,"TargetStructureID":5297,"Label":"121006-5297 via Unknown from 127722 -> 127723","Type":"Unknown","Directional":false,"Links":[{"SourceID":127722,"TargetID":127723,"Directional":false}]},{"ID":2278,"SourceStructureID":121044,"TargetStructureID":5297,"Label":"121044-5297 via Unknown from 147368 -> 147367","Type":"Unknown","Directional":false,"Links":[{"SourceID":147368,"TargetID":147367,"Directional":false}]},{"ID":2279,"SourceStructureID":5297,"TargetStructureID":121046,"Label":"5297-121046 via Unknown from 147370 -> 147371","Type":"Unknown","Directional":false,"Links":[{"SourceID":147370,"TargetID":147371,"Directional":false}]},{"ID":2280,"SourceStructureID":121048,"TargetStructureID":5297,"Label":"121048-5297 via Adherens from 147379 -> 147378","Type":"Adherens","Directional":false,"Links":[{"SourceID":147379,"TargetID":147378,"Directional":false}]},{"ID":2281,"SourceStructureID":5297,"TargetStructureID":121048,"Label":"5297-121048 via Gap Junction from 92307 -> 121049","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92307,"TargetID":121049,"Directional":false}]},{"ID":2282,"SourceStructureID":5297,"TargetStructureID":121051,"Label":"5297-121051 via Adherens from 147384 -> 147385","Type":"Adherens","Directional":false,"Links":[{"SourceID":147384,"TargetID":147385,"Directional":false}]},{"ID":2283,"SourceStructureID":5297,"TargetStructureID":121051,"Label":"5297-121051 via Gap Junction from 98141 -> 121052","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98141,"TargetID":121052,"Directional":false}]},{"ID":2284,"SourceStructureID":5297,"TargetStructureID":121064,"Label":"5297-121064 via Unknown from 116497 -> 121065","Type":"Unknown","Directional":false,"Links":[{"SourceID":116497,"TargetID":121065,"Directional":false}]},{"ID":2285,"SourceStructureID":5297,"TargetStructureID":121066,"Label":"5297-121066 via Unknown from 116501 -> 121067","Type":"Unknown","Directional":false,"Links":[{"SourceID":116501,"TargetID":121067,"Directional":false}]},{"ID":2286,"SourceStructureID":5297,"TargetStructureID":121070,"Label":"5297-121070 via Adherens from 121071 -> 121072","Type":"Adherens","Directional":false,"Links":[{"SourceID":121071,"TargetID":121072,"Directional":false}]},{"ID":2287,"SourceStructureID":121073,"TargetStructureID":5297,"Label":"121073-5297 via Unknown from 121108 -> 98305","Type":"Unknown","Directional":false,"Links":[{"SourceID":121108,"TargetID":98305,"Directional":false}]},{"ID":2288,"SourceStructureID":121075,"TargetStructureID":5297,"Label":"121075-5297 via Touch from 147354 -> 147353","Type":"Touch","Directional":false,"Links":[{"SourceID":147354,"TargetID":147353,"Directional":false}]},{"ID":2289,"SourceStructureID":5297,"TargetStructureID":121082,"Label":"5297-121082 via Unknown from 116520 -> 121083","Type":"Unknown","Directional":false,"Links":[{"SourceID":116520,"TargetID":121083,"Directional":false}]},{"ID":2290,"SourceStructureID":5297,"TargetStructureID":121097,"Label":"5297-121097 via Unknown from 147363 -> 147364","Type":"Unknown","Directional":false,"Links":[{"SourceID":147363,"TargetID":147364,"Directional":false}]},{"ID":2291,"SourceStructureID":5297,"TargetStructureID":121101,"Label":"5297-121101 via Unknown from 98261 -> 121102","Type":"Unknown","Directional":false,"Links":[{"SourceID":98261,"TargetID":121102,"Directional":false}]},{"ID":2292,"SourceStructureID":121103,"TargetStructureID":5297,"Label":"121103-5297 via Unknown from 121105 -> 98277","Type":"Unknown","Directional":false,"Links":[{"SourceID":121105,"TargetID":98277,"Directional":false}]},{"ID":2293,"SourceStructureID":121106,"TargetStructureID":5297,"Label":"121106-5297 via Unknown from 121107 -> 98293","Type":"Unknown","Directional":false,"Links":[{"SourceID":121107,"TargetID":98293,"Directional":false}]},{"ID":2294,"SourceStructureID":5297,"TargetStructureID":121111,"Label":"5297-121111 via Unknown from 103215 -> 134302","Type":"Unknown","Directional":false,"Links":[{"SourceID":103215,"TargetID":134302,"Directional":false}]},{"ID":2295,"SourceStructureID":134553,"TargetStructureID":5297,"Label":"134553-5297 via Adherens from 116432 -> 116431","Type":"Adherens","Directional":false,"Links":[{"SourceID":116432,"TargetID":116431,"Directional":false}]},{"ID":2296,"SourceStructureID":5297,"TargetStructureID":136736,"Label":"5297-136736 via Unknown from 147336 -> 147337","Type":"Unknown","Directional":false,"Links":[{"SourceID":147336,"TargetID":147337,"Directional":false}]},{"ID":2297,"SourceStructureID":7147,"TargetStructureID":5303,"Label":"7147-5303 via Unknown from 100702 -> 100703","Type":"Unknown","Directional":false,"Links":[{"SourceID":100702,"TargetID":100703,"Directional":false}]},{"ID":2298,"SourceStructureID":5325,"TargetStructureID":68761,"Label":"5325-68761 via Gap Junction from 68765 -> 68764","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68765,"TargetID":68764,"Directional":false}]},{"ID":2299,"SourceStructureID":63020,"TargetStructureID":5338,"Label":"63020-5338 via Gap Junction from 63021 -> 63005","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63021,"TargetID":63005,"Directional":false}]},{"ID":2300,"SourceStructureID":5345,"TargetStructureID":5345,"Label":"5345-5345 via Gap Junction from 88854 -> 8484","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88854,"TargetID":8484,"Directional":false}]},{"ID":2301,"SourceStructureID":5345,"TargetStructureID":5513,"Label":"5345-5513 via Gap Junction from 30674 -> 30673","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30674,"TargetID":30673,"Directional":false}]},{"ID":2302,"SourceStructureID":5514,"TargetStructureID":5345,"Label":"5514-5345 via Gap Junction from 38764 -> 14579, 94552 -> 38766, 94553 -> 94554, 120847 -> 120846, 121561 -> 33783, 121649 -> 14580","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38764,"TargetID":14579,"Directional":false},{"SourceID":94552,"TargetID":38766,"Directional":false},{"SourceID":94553,"TargetID":94554,"Directional":false},{"SourceID":120847,"TargetID":120846,"Directional":false},{"SourceID":121561,"TargetID":33783,"Directional":false},{"SourceID":121649,"TargetID":14580,"Directional":false}]},{"ID":2303,"SourceStructureID":5345,"TargetStructureID":5515,"Label":"5345-5515 via Gap Junction from 119166 -> 119165, 119183 -> 119182, 119221 -> 119219, 119348 -> 119347, 119351 -> 119350, 119434 -> 119433","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119166,"TargetID":119165,"Directional":false},{"SourceID":119183,"TargetID":119182,"Directional":false},{"SourceID":119221,"TargetID":119219,"Directional":false},{"SourceID":119348,"TargetID":119347,"Directional":false},{"SourceID":119351,"TargetID":119350,"Directional":false},{"SourceID":119434,"TargetID":119433,"Directional":false}]},{"ID":2304,"SourceStructureID":5345,"TargetStructureID":5517,"Label":"5345-5517 via Gap Junction from 96100 -> 96099","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96100,"TargetID":96099,"Directional":false}]},{"ID":2305,"SourceStructureID":5623,"TargetStructureID":5345,"Label":"5623-5345 via Gap Junction from 32819 -> 8488, 88883 -> 40387, 94782 -> 123706, 123700 -> 123701","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32819,"TargetID":8488,"Directional":false},{"SourceID":88883,"TargetID":40387,"Directional":false},{"SourceID":94782,"TargetID":123706,"Directional":false},{"SourceID":123700,"TargetID":123701,"Directional":false}]},{"ID":2306,"SourceStructureID":6589,"TargetStructureID":5345,"Label":"6589-5345 via Gap Junction from 14574 -> 14591, 120044 -> 120043","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14574,"TargetID":14591,"Directional":false},{"SourceID":120044,"TargetID":120043,"Directional":false}]},{"ID":2307,"SourceStructureID":5345,"TargetStructureID":6997,"Label":"5345-6997 via Gap Junction from 22158 -> 22157, 57002 -> 57003","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":22158,"TargetID":22157,"Directional":false},{"SourceID":57002,"TargetID":57003,"Directional":false}]},{"ID":2308,"SourceStructureID":6997,"TargetStructureID":5345,"Label":"6997-5345 via Unknown from 83072 -> 79980","Type":"Unknown","Directional":false,"Links":[{"SourceID":83072,"TargetID":79980,"Directional":false}]},{"ID":2309,"SourceStructureID":8037,"TargetStructureID":5345,"Label":"8037-5345 via Adherens from 88898 -> 88892","Type":"Adherens","Directional":false,"Links":[{"SourceID":88898,"TargetID":88892,"Directional":false}]},{"ID":2310,"SourceStructureID":8037,"TargetStructureID":5345,"Label":"8037-5345 via Gap Junction from 15683 -> 15682, 19229 -> 7569, 88896 -> 88891, 130639 -> 130638","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15683,"TargetID":15682,"Directional":false},{"SourceID":19229,"TargetID":7569,"Directional":false},{"SourceID":88896,"TargetID":88891,"Directional":false},{"SourceID":130639,"TargetID":130638,"Directional":false}]},{"ID":2311,"SourceStructureID":9693,"TargetStructureID":5345,"Label":"9693-5345 via Gap Junction from 119785 -> 119786, 132765 -> 132764, 135000 -> 134999","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119785,"TargetID":119786,"Directional":false},{"SourceID":132765,"TargetID":132764,"Directional":false},{"SourceID":135000,"TargetID":134999,"Directional":false}]},{"ID":2312,"SourceStructureID":28886,"TargetStructureID":5345,"Label":"28886-5345 via Gap Junction from 51299 -> 52347","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51299,"TargetID":52347,"Directional":false}]},{"ID":2313,"SourceStructureID":46801,"TargetStructureID":5345,"Label":"46801-5345 via Gap Junction from 118256 -> 118255","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118256,"TargetID":118255,"Directional":false}]},{"ID":2314,"SourceStructureID":88864,"TargetStructureID":5345,"Label":"88864-5345 via Adherens from 88867 -> 88862, 88868 -> 88863","Type":"Adherens","Directional":false,"Links":[{"SourceID":88867,"TargetID":88862,"Directional":false},{"SourceID":88868,"TargetID":88863,"Directional":false}]},{"ID":2315,"SourceStructureID":5345,"TargetStructureID":132773,"Label":"5345-132773 via Gap Junction from 132783 -> 132782","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132783,"TargetID":132782,"Directional":false}]},{"ID":2316,"SourceStructureID":6117,"TargetStructureID":5377,"Label":"6117-5377 via Unknown from 134139 -> 83233","Type":"Unknown","Directional":false,"Links":[{"SourceID":134139,"TargetID":83233,"Directional":false}]},{"ID":2317,"SourceStructureID":83234,"TargetStructureID":5377,"Label":"83234-5377 via Unknown from 83235 -> 83233","Type":"Unknown","Directional":false,"Links":[{"SourceID":83235,"TargetID":83233,"Directional":false}]},{"ID":2318,"SourceStructureID":86997,"TargetStructureID":5377,"Label":"86997-5377 via Adherens from 86999 -> 87000","Type":"Adherens","Directional":false,"Links":[{"SourceID":86999,"TargetID":87000,"Directional":false}]},{"ID":2319,"SourceStructureID":87008,"TargetStructureID":5377,"Label":"87008-5377 via Adherens from 87009 -> 87007","Type":"Adherens","Directional":false,"Links":[{"SourceID":87009,"TargetID":87007,"Directional":false}]},{"ID":2320,"SourceStructureID":5377,"TargetStructureID":87020,"Label":"5377-87020 via Adherens from 87022 -> 87023","Type":"Adherens","Directional":false,"Links":[{"SourceID":87022,"TargetID":87023,"Directional":false}]},{"ID":2321,"SourceStructureID":5916,"TargetStructureID":5390,"Label":"5916-5390 via Adherens from 108762 -> 108763","Type":"Adherens","Directional":false,"Links":[{"SourceID":108762,"TargetID":108763,"Directional":false}]},{"ID":2322,"SourceStructureID":7951,"TargetStructureID":5394,"Label":"7951-5394 via Adherens from 77093 -> 77092, 77095 -> 77094","Type":"Adherens","Directional":false,"Links":[{"SourceID":77093,"TargetID":77092,"Directional":false},{"SourceID":77095,"TargetID":77094,"Directional":false}]},{"ID":2323,"SourceStructureID":7594,"TargetStructureID":5396,"Label":"7594-5396 via Adherens from 89453 -> 89452","Type":"Adherens","Directional":false,"Links":[{"SourceID":89453,"TargetID":89452,"Directional":false}]},{"ID":2324,"SourceStructureID":5396,"TargetStructureID":89433,"Label":"5396-89433 via Unknown from 89432 -> 89434","Type":"Unknown","Directional":false,"Links":[{"SourceID":89432,"TargetID":89434,"Directional":false}]},{"ID":2325,"SourceStructureID":5396,"TargetStructureID":89438,"Label":"5396-89438 via Adherens from 89437 -> 89439","Type":"Adherens","Directional":false,"Links":[{"SourceID":89437,"TargetID":89439,"Directional":false}]},{"ID":2326,"SourceStructureID":89443,"TargetStructureID":5396,"Label":"89443-5396 via Adherens from 89444 -> 89442","Type":"Adherens","Directional":false,"Links":[{"SourceID":89444,"TargetID":89442,"Directional":false}]},{"ID":2327,"SourceStructureID":89447,"TargetStructureID":5396,"Label":"89447-5396 via Adherens from 89448 -> 89445","Type":"Adherens","Directional":false,"Links":[{"SourceID":89448,"TargetID":89445,"Directional":false}]},{"ID":2328,"SourceStructureID":89449,"TargetStructureID":5396,"Label":"89449-5396 via Adherens from 89450 -> 89446","Type":"Adherens","Directional":false,"Links":[{"SourceID":89450,"TargetID":89446,"Directional":false}]},{"ID":2329,"SourceStructureID":89522,"TargetStructureID":5396,"Label":"89522-5396 via Adherens from 89523 -> 89521","Type":"Adherens","Directional":false,"Links":[{"SourceID":89523,"TargetID":89521,"Directional":false}]},{"ID":2330,"SourceStructureID":89533,"TargetStructureID":5396,"Label":"89533-5396 via Adherens from 89534 -> 89532","Type":"Adherens","Directional":false,"Links":[{"SourceID":89534,"TargetID":89532,"Directional":false}]},{"ID":2331,"SourceStructureID":5402,"TargetStructureID":14615,"Label":"5402-14615 via Adherens from 76603 -> 76604","Type":"Adherens","Directional":false,"Links":[{"SourceID":76603,"TargetID":76604,"Directional":false}]},{"ID":2332,"SourceStructureID":5405,"TargetStructureID":5405,"Label":"5405-5405 via Adherens from 120202 -> 120203","Type":"Adherens","Directional":false,"Links":[{"SourceID":120202,"TargetID":120203,"Directional":false}]},{"ID":2333,"SourceStructureID":5405,"TargetStructureID":8575,"Label":"5405-8575 via Adherens from 62802 -> 62801","Type":"Adherens","Directional":false,"Links":[{"SourceID":62802,"TargetID":62801,"Directional":false}]},{"ID":2334,"SourceStructureID":82130,"TargetStructureID":5410,"Label":"82130-5410 via Adherens from 82132 -> 82133","Type":"Adherens","Directional":false,"Links":[{"SourceID":82132,"TargetID":82133,"Directional":false}]},{"ID":2335,"SourceStructureID":82143,"TargetStructureID":5410,"Label":"82143-5410 via Adherens from 82144 -> 82142","Type":"Adherens","Directional":false,"Links":[{"SourceID":82144,"TargetID":82142,"Directional":false}]},{"ID":2336,"SourceStructureID":5410,"TargetStructureID":82159,"Label":"5410-82159 via Adherens from 82158 -> 82160","Type":"Adherens","Directional":false,"Links":[{"SourceID":82158,"TargetID":82160,"Directional":false}]},{"ID":2337,"SourceStructureID":5410,"TargetStructureID":82170,"Label":"5410-82170 via Adherens from 82169 -> 82171","Type":"Adherens","Directional":false,"Links":[{"SourceID":82169,"TargetID":82171,"Directional":false}]},{"ID":2338,"SourceStructureID":5410,"TargetStructureID":82181,"Label":"5410-82181 via Adherens from 82180 -> 82183","Type":"Adherens","Directional":false,"Links":[{"SourceID":82180,"TargetID":82183,"Directional":false}]},{"ID":2339,"SourceStructureID":5530,"TargetStructureID":5423,"Label":"5530-5423 via Unknown from 80494 -> 126454","Type":"Unknown","Directional":false,"Links":[{"SourceID":80494,"TargetID":126454,"Directional":false}]},{"ID":2340,"SourceStructureID":5530,"TargetStructureID":5435,"Label":"5530-5435 via Unknown from 81646 -> 82993","Type":"Unknown","Directional":false,"Links":[{"SourceID":81646,"TargetID":82993,"Directional":false}]},{"ID":2341,"SourceStructureID":29340,"TargetStructureID":5435,"Label":"29340-5435 via Gap Junction from 41220 -> 41219","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":41220,"TargetID":41219,"Directional":false}]},{"ID":2342,"SourceStructureID":5528,"TargetStructureID":5436,"Label":"5528-5436 via Adherens from 94284 -> 94285","Type":"Adherens","Directional":false,"Links":[{"SourceID":94284,"TargetID":94285,"Directional":false}]},{"ID":2343,"SourceStructureID":7568,"TargetStructureID":5439,"Label":"7568-5439 via Adherens from 85513 -> 85514","Type":"Adherens","Directional":false,"Links":[{"SourceID":85513,"TargetID":85514,"Directional":false}]},{"ID":2344,"SourceStructureID":70535,"TargetStructureID":5439,"Label":"70535-5439 via Adherens from 70539 -> 70538","Type":"Adherens","Directional":false,"Links":[{"SourceID":70539,"TargetID":70538,"Directional":false}]},{"ID":2345,"SourceStructureID":70547,"TargetStructureID":5439,"Label":"70547-5439 via Adherens from 70548 -> 70549","Type":"Adherens","Directional":false,"Links":[{"SourceID":70548,"TargetID":70549,"Directional":false}]},{"ID":2346,"SourceStructureID":70547,"TargetStructureID":5439,"Label":"70547-5439 via Gap Junction from 70550 -> 70551","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70550,"TargetID":70551,"Directional":false}]},{"ID":2347,"SourceStructureID":70552,"TargetStructureID":5439,"Label":"70552-5439 via Adherens from 70555 -> 70556","Type":"Adherens","Directional":false,"Links":[{"SourceID":70555,"TargetID":70556,"Directional":false}]},{"ID":2348,"SourceStructureID":70586,"TargetStructureID":5439,"Label":"70586-5439 via Gap Junction from 70587 -> 66577","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70587,"TargetID":66577,"Directional":false}]},{"ID":2349,"SourceStructureID":5439,"TargetStructureID":70628,"Label":"5439-70628 via Adherens from 70630 -> 70631","Type":"Adherens","Directional":false,"Links":[{"SourceID":70630,"TargetID":70631,"Directional":false}]},{"ID":2350,"SourceStructureID":5439,"TargetStructureID":70663,"Label":"5439-70663 via Adherens from 70665 -> 70664","Type":"Adherens","Directional":false,"Links":[{"SourceID":70665,"TargetID":70664,"Directional":false}]},{"ID":2351,"SourceStructureID":70671,"TargetStructureID":5439,"Label":"70671-5439 via Adherens from 70672 -> 70670","Type":"Adherens","Directional":false,"Links":[{"SourceID":70672,"TargetID":70670,"Directional":false}]},{"ID":2352,"SourceStructureID":70801,"TargetStructureID":5439,"Label":"70801-5439 via Adherens from 70802 -> 70803, 70806 -> 70805","Type":"Adherens","Directional":false,"Links":[{"SourceID":70802,"TargetID":70803,"Directional":false},{"SourceID":70806,"TargetID":70805,"Directional":false}]},{"ID":2353,"SourceStructureID":5439,"TargetStructureID":70822,"Label":"5439-70822 via Adherens from 70824 -> 70823","Type":"Adherens","Directional":false,"Links":[{"SourceID":70824,"TargetID":70823,"Directional":false}]},{"ID":2354,"SourceStructureID":70837,"TargetStructureID":5439,"Label":"70837-5439 via Adherens from 70838 -> 70839","Type":"Adherens","Directional":false,"Links":[{"SourceID":70838,"TargetID":70839,"Directional":false}]},{"ID":2355,"SourceStructureID":70840,"TargetStructureID":5439,"Label":"70840-5439 via Adherens from 70844 -> 70843","Type":"Adherens","Directional":false,"Links":[{"SourceID":70844,"TargetID":70843,"Directional":false}]},{"ID":2356,"SourceStructureID":70845,"TargetStructureID":5439,"Label":"70845-5439 via Adherens from 70848 -> 70849","Type":"Adherens","Directional":false,"Links":[{"SourceID":70848,"TargetID":70849,"Directional":false}]},{"ID":2357,"SourceStructureID":85601,"TargetStructureID":5439,"Label":"85601-5439 via Adherens from 85610 -> 85611","Type":"Adherens","Directional":false,"Links":[{"SourceID":85610,"TargetID":85611,"Directional":false}]},{"ID":2358,"SourceStructureID":85735,"TargetStructureID":5439,"Label":"85735-5439 via Adherens from 85737 -> 85731","Type":"Adherens","Directional":false,"Links":[{"SourceID":85737,"TargetID":85731,"Directional":false}]},{"ID":2359,"SourceStructureID":5439,"TargetStructureID":96652,"Label":"5439-96652 via Adherens from 96656 -> 96655","Type":"Adherens","Directional":false,"Links":[{"SourceID":96656,"TargetID":96655,"Directional":false}]},{"ID":2360,"SourceStructureID":5468,"TargetStructureID":5442,"Label":"5468-5442 via Adherens from 55140 -> 55139","Type":"Adherens","Directional":false,"Links":[{"SourceID":55140,"TargetID":55139,"Directional":false}]},{"ID":2361,"SourceStructureID":5442,"TargetStructureID":5598,"Label":"5442-5598 via Adherens from 126961 -> 115190","Type":"Adherens","Directional":false,"Links":[{"SourceID":126961,"TargetID":115190,"Directional":false}]},{"ID":2362,"SourceStructureID":6050,"TargetStructureID":5442,"Label":"6050-5442 via Unknown from 127109 -> 127110, 127458 -> 127459, 127524 -> 127523","Type":"Unknown","Directional":false,"Links":[{"SourceID":127109,"TargetID":127110,"Directional":false},{"SourceID":127458,"TargetID":127459,"Directional":false},{"SourceID":127524,"TargetID":127523,"Directional":false}]},{"ID":2363,"SourceStructureID":5442,"TargetStructureID":15796,"Label":"5442-15796 via Adherens from 56692 -> 56693","Type":"Adherens","Directional":false,"Links":[{"SourceID":56692,"TargetID":56693,"Directional":false}]},{"ID":2364,"SourceStructureID":5442,"TargetStructureID":23870,"Label":"5442-23870 via Adherens from 55136 -> 55137, 55920 -> 55921, 56672 -> 56671, 56673 -> 56674","Type":"Adherens","Directional":false,"Links":[{"SourceID":55136,"TargetID":55137,"Directional":false},{"SourceID":55920,"TargetID":55921,"Directional":false},{"SourceID":56672,"TargetID":56671,"Directional":false},{"SourceID":56673,"TargetID":56674,"Directional":false}]},{"ID":2365,"SourceStructureID":5442,"TargetStructureID":23870,"Label":"5442-23870 via Gap Junction from 55150 -> 55149, 56676 -> 56675, 66273 -> 66270, 66274 -> 66275","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55150,"TargetID":55149,"Directional":false},{"SourceID":56676,"TargetID":56675,"Directional":false},{"SourceID":66273,"TargetID":66270,"Directional":false},{"SourceID":66274,"TargetID":66275,"Directional":false}]},{"ID":2366,"SourceStructureID":5442,"TargetStructureID":23870,"Label":"5442-23870 via Unknown from 74435 -> 74437, 74445 -> 74443","Type":"Unknown","Directional":false,"Links":[{"SourceID":74435,"TargetID":74437,"Directional":false},{"SourceID":74445,"TargetID":74443,"Directional":false}]},{"ID":2367,"SourceStructureID":35811,"TargetStructureID":5442,"Label":"35811-5442 via Adherens from 55120 -> 55119, 73964 -> 73963, 73990 -> 73989","Type":"Adherens","Directional":false,"Links":[{"SourceID":55120,"TargetID":55119,"Directional":false},{"SourceID":73964,"TargetID":73963,"Directional":false},{"SourceID":73990,"TargetID":73989,"Directional":false}]},{"ID":2368,"SourceStructureID":5442,"TargetStructureID":35894,"Label":"5442-35894 via Adherens from 56684 -> 56685, 56686 -> 56687, 56689 -> 56690","Type":"Adherens","Directional":false,"Links":[{"SourceID":56684,"TargetID":56685,"Directional":false},{"SourceID":56686,"TargetID":56687,"Directional":false},{"SourceID":56689,"TargetID":56690,"Directional":false}]},{"ID":2369,"SourceStructureID":62396,"TargetStructureID":5442,"Label":"62396-5442 via Adherens from 62399 -> 56660, 62400 -> 62401","Type":"Adherens","Directional":false,"Links":[{"SourceID":62399,"TargetID":56660,"Directional":false},{"SourceID":62400,"TargetID":62401,"Directional":false}]},{"ID":2370,"SourceStructureID":5442,"TargetStructureID":73580,"Label":"5442-73580 via Adherens from 73585 -> 73586, 73587 -> 73588","Type":"Adherens","Directional":false,"Links":[{"SourceID":73585,"TargetID":73586,"Directional":false},{"SourceID":73587,"TargetID":73588,"Directional":false}]},{"ID":2371,"SourceStructureID":74047,"TargetStructureID":5442,"Label":"74047-5442 via Unknown from 74048 -> 74038, 74355 -> 74354","Type":"Unknown","Directional":false,"Links":[{"SourceID":74048,"TargetID":74038,"Directional":false},{"SourceID":74355,"TargetID":74354,"Directional":false}]},{"ID":2372,"SourceStructureID":5451,"TargetStructureID":7122,"Label":"5451-7122 via Gap Junction from 45105 -> 45106","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45105,"TargetID":45106,"Directional":false}]},{"ID":2373,"SourceStructureID":5451,"TargetStructureID":28950,"Label":"5451-28950 via Adherens from 55922 -> 55923","Type":"Adherens","Directional":false,"Links":[{"SourceID":55922,"TargetID":55923,"Directional":false}]},{"ID":2374,"SourceStructureID":28950,"TargetStructureID":5451,"Label":"28950-5451 via Touch from 55938 -> 131110","Type":"Touch","Directional":false,"Links":[{"SourceID":55938,"TargetID":131110,"Directional":false}]},{"ID":2375,"SourceStructureID":5531,"TargetStructureID":5453,"Label":"5531-5453 via Unknown from 105367 -> 105368","Type":"Unknown","Directional":false,"Links":[{"SourceID":105367,"TargetID":105368,"Directional":false}]},{"ID":2376,"SourceStructureID":5453,"TargetStructureID":5543,"Label":"5453-5543 via Adherens from 18658 -> 18673","Type":"Adherens","Directional":false,"Links":[{"SourceID":18658,"TargetID":18673,"Directional":false}]},{"ID":2377,"SourceStructureID":5531,"TargetStructureID":5454,"Label":"5531-5454 via Unknown from 106655 -> 106654","Type":"Unknown","Directional":false,"Links":[{"SourceID":106655,"TargetID":106654,"Directional":false}]},{"ID":2378,"SourceStructureID":7345,"TargetStructureID":5456,"Label":"7345-5456 via Gap Junction from 122790 -> 122780","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122790,"TargetID":122780,"Directional":false}]},{"ID":2379,"SourceStructureID":7564,"TargetStructureID":5457,"Label":"7564-5457 via Adherens from 29159 -> 103141","Type":"Adherens","Directional":false,"Links":[{"SourceID":29159,"TargetID":103141,"Directional":false}]},{"ID":2380,"SourceStructureID":5464,"TargetStructureID":5464,"Label":"5464-5464 via Gap Junction from 116615 -> 116616","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116615,"TargetID":116616,"Directional":false}]},{"ID":2381,"SourceStructureID":5464,"TargetStructureID":5592,"Label":"5464-5592 via Gap Junction from 121815 -> 121814, 121817 -> 121816","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121815,"TargetID":121814,"Directional":false},{"SourceID":121817,"TargetID":121816,"Directional":false}]},{"ID":2382,"SourceStructureID":6047,"TargetStructureID":5464,"Label":"6047-5464 via Gap Junction from 113268 -> 129331, 115796 -> 113247, 129339 -> 117225","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113268,"TargetID":129331,"Directional":false},{"SourceID":115796,"TargetID":113247,"Directional":false},{"SourceID":129339,"TargetID":117225,"Directional":false}]},{"ID":2383,"SourceStructureID":5464,"TargetStructureID":6141,"Label":"5464-6141 via Gap Junction from 118159 -> 61415","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118159,"TargetID":61415,"Directional":false}]},{"ID":2384,"SourceStructureID":5464,"TargetStructureID":6203,"Label":"5464-6203 via Gap Junction from 47827 -> 11969, 57254 -> 57242, 57270 -> 57264, 116622 -> 116621, 116623 -> 116624, 116627 -> 116628, 118158 -> 118157, 121821 -> 121820, 131400 -> 131399","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47827,"TargetID":11969,"Directional":false},{"SourceID":57254,"TargetID":57242,"Directional":false},{"SourceID":57270,"TargetID":57264,"Directional":false},{"SourceID":116622,"TargetID":116621,"Directional":false},{"SourceID":116623,"TargetID":116624,"Directional":false},{"SourceID":116627,"TargetID":116628,"Directional":false},{"SourceID":118158,"TargetID":118157,"Directional":false},{"SourceID":121821,"TargetID":121820,"Directional":false},{"SourceID":131400,"TargetID":131399,"Directional":false}]},{"ID":2385,"SourceStructureID":6204,"TargetStructureID":5464,"Label":"6204-5464 via Adherens from 132033 -> 132034","Type":"Adherens","Directional":false,"Links":[{"SourceID":132033,"TargetID":132034,"Directional":false}]},{"ID":2386,"SourceStructureID":5464,"TargetStructureID":6204,"Label":"5464-6204 via Gap Junction from 52638 -> 52635, 116625 -> 116626, 118083 -> 118082, 118112 -> 118111, 118160 -> 118156, 121818 -> 121819","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52638,"TargetID":52635,"Directional":false},{"SourceID":116625,"TargetID":116626,"Directional":false},{"SourceID":118083,"TargetID":118082,"Directional":false},{"SourceID":118112,"TargetID":118111,"Directional":false},{"SourceID":118160,"TargetID":118156,"Directional":false},{"SourceID":121818,"TargetID":121819,"Directional":false}]},{"ID":2387,"SourceStructureID":5464,"TargetStructureID":6958,"Label":"5464-6958 via Gap Junction from 116632 -> 116631","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116632,"TargetID":116631,"Directional":false}]},{"ID":2388,"SourceStructureID":5464,"TargetStructureID":7147,"Label":"5464-7147 via Gap Junction from 129335 -> 117226","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129335,"TargetID":117226,"Directional":false}]},{"ID":2389,"SourceStructureID":57353,"TargetStructureID":5464,"Label":"57353-5464 via Touch from 124062 -> 124063","Type":"Touch","Directional":false,"Links":[{"SourceID":124062,"TargetID":124063,"Directional":false}]},{"ID":2390,"SourceStructureID":5464,"TargetStructureID":57353,"Label":"5464-57353 via Unknown from 124300 -> 124299","Type":"Unknown","Directional":false,"Links":[{"SourceID":124300,"TargetID":124299,"Directional":false}]},{"ID":2391,"SourceStructureID":5468,"TargetStructureID":5468,"Label":"5468-5468 via Gap Junction from 57456 -> 57455","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57456,"TargetID":57455,"Directional":false}]},{"ID":2392,"SourceStructureID":5473,"TargetStructureID":5468,"Label":"5473-5468 via Gap Junction from 23883 -> 23882, 57147 -> 48271","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23883,"TargetID":23882,"Directional":false},{"SourceID":57147,"TargetID":48271,"Directional":false}]},{"ID":2393,"SourceStructureID":5584,"TargetStructureID":5468,"Label":"5584-5468 via Touch from 93534 -> 93532","Type":"Touch","Directional":false,"Links":[{"SourceID":93534,"TargetID":93532,"Directional":false}]},{"ID":2394,"SourceStructureID":5592,"TargetStructureID":5468,"Label":"5592-5468 via Gap Junction from 36843 -> 36844, 118106 -> 118105, 121791 -> 121790","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36843,"TargetID":36844,"Directional":false},{"SourceID":118106,"TargetID":118105,"Directional":false},{"SourceID":121791,"TargetID":121790,"Directional":false}]},{"ID":2395,"SourceStructureID":5598,"TargetStructureID":5468,"Label":"5598-5468 via Gap Junction from 52983 -> 48220","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52983,"TargetID":48220,"Directional":false}]},{"ID":2396,"SourceStructureID":5601,"TargetStructureID":5468,"Label":"5601-5468 via Adherens from 135658 -> 135659, 135676 -> 135675","Type":"Adherens","Directional":false,"Links":[{"SourceID":135658,"TargetID":135659,"Directional":false},{"SourceID":135676,"TargetID":135675,"Directional":false}]},{"ID":2397,"SourceStructureID":5468,"TargetStructureID":5601,"Label":"5468-5601 via Gap Junction from 57440 -> 57442, 57466 -> 57465, 123284 -> 91465","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57440,"TargetID":57442,"Directional":false},{"SourceID":57466,"TargetID":57465,"Directional":false},{"SourceID":123284,"TargetID":91465,"Directional":false}]},{"ID":2398,"SourceStructureID":5468,"TargetStructureID":5601,"Label":"5468-5601 via Touch from 91467 -> 91466","Type":"Touch","Directional":false,"Links":[{"SourceID":91467,"TargetID":91466,"Directional":false}]},{"ID":2399,"SourceStructureID":6203,"TargetStructureID":5468,"Label":"6203-5468 via Gap Junction from 118109 -> 118108","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118109,"TargetID":118108,"Directional":false}]},{"ID":2400,"SourceStructureID":6204,"TargetStructureID":5468,"Label":"6204-5468 via Gap Junction from 118168 -> 23878, 118169 -> 118110","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118168,"TargetID":23878,"Directional":false},{"SourceID":118169,"TargetID":118110,"Directional":false}]},{"ID":2401,"SourceStructureID":7114,"TargetStructureID":5468,"Label":"7114-5468 via Gap Junction from 48215 -> 48214, 51774 -> 48129, 93531 -> 93530, 118114 -> 118115, 121812 -> 121811","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48215,"TargetID":48214,"Directional":false},{"SourceID":51774,"TargetID":48129,"Directional":false},{"SourceID":93531,"TargetID":93530,"Directional":false},{"SourceID":118114,"TargetID":118115,"Directional":false},{"SourceID":121812,"TargetID":121811,"Directional":false}]},{"ID":2402,"SourceStructureID":15976,"TargetStructureID":5468,"Label":"15976-5468 via Gap Junction from 54714 -> 54713","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54714,"TargetID":54713,"Directional":false}]},{"ID":2403,"SourceStructureID":5468,"TargetStructureID":33057,"Label":"5468-33057 via Adherens from 48225 -> 48226","Type":"Adherens","Directional":false,"Links":[{"SourceID":48225,"TargetID":48226,"Directional":false}]},{"ID":2404,"SourceStructureID":57148,"TargetStructureID":5468,"Label":"57148-5468 via Gap Junction from 57149 -> 48289","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57149,"TargetID":48289,"Directional":false}]},{"ID":2405,"SourceStructureID":5468,"TargetStructureID":74047,"Label":"5468-74047 via Adherens from 74394 -> 74393","Type":"Adherens","Directional":false,"Links":[{"SourceID":74394,"TargetID":74393,"Directional":false}]},{"ID":2406,"SourceStructureID":89638,"TargetStructureID":5468,"Label":"89638-5468 via Adherens from 89640 -> 89641","Type":"Adherens","Directional":false,"Links":[{"SourceID":89640,"TargetID":89641,"Directional":false}]},{"ID":2407,"SourceStructureID":5468,"TargetStructureID":93574,"Label":"5468-93574 via Adherens from 48238 -> 93577","Type":"Adherens","Directional":false,"Links":[{"SourceID":48238,"TargetID":93577,"Directional":false}]},{"ID":2408,"SourceStructureID":5468,"TargetStructureID":93574,"Label":"5468-93574 via Gap Junction from 48266 -> 93575","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48266,"TargetID":93575,"Directional":false}]},{"ID":2409,"SourceStructureID":5473,"TargetStructureID":5592,"Label":"5473-5592 via Gap Junction from 23895 -> 23891","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23895,"TargetID":23891,"Directional":false}]},{"ID":2410,"SourceStructureID":5473,"TargetStructureID":5638,"Label":"5473-5638 via Gap Junction from 116863 -> 56467, 117099 -> 117098","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116863,"TargetID":56467,"Directional":false},{"SourceID":117099,"TargetID":117098,"Directional":false}]},{"ID":2411,"SourceStructureID":5473,"TargetStructureID":6958,"Label":"5473-6958 via Gap Junction from 27460 -> 27461, 116540 -> 116539","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":27460,"TargetID":27461,"Directional":false},{"SourceID":116540,"TargetID":116539,"Directional":false}]},{"ID":2412,"SourceStructureID":15976,"TargetStructureID":5473,"Label":"15976-5473 via Gap Junction from 23888 -> 23887, 57152 -> 23886, 93195 -> 57146, 93309 -> 57412, 121834 -> 121833","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23888,"TargetID":23887,"Directional":false},{"SourceID":57152,"TargetID":23886,"Directional":false},{"SourceID":93195,"TargetID":57146,"Directional":false},{"SourceID":93309,"TargetID":57412,"Directional":false},{"SourceID":121834,"TargetID":121833,"Directional":false}]},{"ID":2413,"SourceStructureID":5473,"TargetStructureID":15977,"Label":"5473-15977 via Gap Junction from 117175 -> 117174","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117175,"TargetID":117174,"Directional":false}]},{"ID":2414,"SourceStructureID":5473,"TargetStructureID":57143,"Label":"5473-57143 via Gap Junction from 57145 -> 57144","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57145,"TargetID":57144,"Directional":false}]},{"ID":2415,"SourceStructureID":117127,"TargetStructureID":5473,"Label":"117127-5473 via Gap Junction from 117140 -> 117141","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117140,"TargetID":117141,"Directional":false}]},{"ID":2416,"SourceStructureID":66663,"TargetStructureID":5481,"Label":"66663-5481 via Adherens from 66664 -> 66662","Type":"Adherens","Directional":false,"Links":[{"SourceID":66664,"TargetID":66662,"Directional":false}]},{"ID":2417,"SourceStructureID":71882,"TargetStructureID":5481,"Label":"71882-5481 via Adherens from 71887 -> 71886, 90318 -> 90200","Type":"Adherens","Directional":false,"Links":[{"SourceID":71887,"TargetID":71886,"Directional":false},{"SourceID":90318,"TargetID":90200,"Directional":false}]},{"ID":2418,"SourceStructureID":71882,"TargetStructureID":5481,"Label":"71882-5481 via Gap Junction from 71885 -> 71884","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71885,"TargetID":71884,"Directional":false}]},{"ID":2419,"SourceStructureID":82071,"TargetStructureID":5481,"Label":"82071-5481 via Unknown from 82499 -> 82500","Type":"Unknown","Directional":false,"Links":[{"SourceID":82499,"TargetID":82500,"Directional":false}]},{"ID":2420,"SourceStructureID":5485,"TargetStructureID":8575,"Label":"5485-8575 via Adherens from 62293 -> 62292","Type":"Adherens","Directional":false,"Links":[{"SourceID":62293,"TargetID":62292,"Directional":false}]},{"ID":2421,"SourceStructureID":34336,"TargetStructureID":5485,"Label":"34336-5485 via Adherens from 34368 -> 34367","Type":"Adherens","Directional":false,"Links":[{"SourceID":34368,"TargetID":34367,"Directional":false}]},{"ID":2422,"SourceStructureID":40604,"TargetStructureID":5485,"Label":"40604-5485 via Adherens from 43820 -> 43821","Type":"Adherens","Directional":false,"Links":[{"SourceID":43820,"TargetID":43821,"Directional":false}]},{"ID":2423,"SourceStructureID":5487,"TargetStructureID":21299,"Label":"5487-21299 via Adherens from 91667 -> 48900, 91674 -> 91675, 91677 -> 91676","Type":"Adherens","Directional":false,"Links":[{"SourceID":91667,"TargetID":48900,"Directional":false},{"SourceID":91674,"TargetID":91675,"Directional":false},{"SourceID":91677,"TargetID":91676,"Directional":false}]},{"ID":2424,"SourceStructureID":5487,"TargetStructureID":21299,"Label":"5487-21299 via Gap Junction from 91620 -> 91617, 91671 -> 48924, 126385 -> 48829","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91620,"TargetID":91617,"Directional":false},{"SourceID":91671,"TargetID":48924,"Directional":false},{"SourceID":126385,"TargetID":48829,"Directional":false}]},{"ID":2425,"SourceStructureID":68497,"TargetStructureID":5489,"Label":"68497-5489 via Adherens from 81597 -> 81596","Type":"Adherens","Directional":false,"Links":[{"SourceID":81597,"TargetID":81596,"Directional":false}]},{"ID":2426,"SourceStructureID":5531,"TargetStructureID":5491,"Label":"5531-5491 via Unknown from 113839 -> 113838","Type":"Unknown","Directional":false,"Links":[{"SourceID":113839,"TargetID":113838,"Directional":false}]},{"ID":2427,"SourceStructureID":5499,"TargetStructureID":5496,"Label":"5499-5496 via BC Conventional Synapse from 96686 -> 96687","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":96686,"TargetID":96687,"Directional":false}]},{"ID":2428,"SourceStructureID":5497,"TargetStructureID":62500,"Label":"5497-62500 via Adherens from 62503 -> 62502","Type":"Adherens","Directional":false,"Links":[{"SourceID":62503,"TargetID":62502,"Directional":false}]},{"ID":2429,"SourceStructureID":5497,"TargetStructureID":85044,"Label":"5497-85044 via Adherens from 85046 -> 85045","Type":"Adherens","Directional":false,"Links":[{"SourceID":85046,"TargetID":85045,"Directional":false}]},{"ID":2430,"SourceStructureID":5499,"TargetStructureID":5499,"Label":"5499-5499 via Adherens from 136221 -> 136220","Type":"Adherens","Directional":false,"Links":[{"SourceID":136221,"TargetID":136220,"Directional":false}]},{"ID":2431,"SourceStructureID":5499,"TargetStructureID":5499,"Label":"5499-5499 via Gap Junction from 96743 -> 98072, 97868 -> 97867, 106633 -> 106632","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96743,"TargetID":98072,"Directional":false},{"SourceID":97868,"TargetID":97867,"Directional":false},{"SourceID":106633,"TargetID":106632,"Directional":false}]},{"ID":2432,"SourceStructureID":5499,"TargetStructureID":5501,"Label":"5499-5501 via Adherens from 136151 -> 136150","Type":"Adherens","Directional":false,"Links":[{"SourceID":136151,"TargetID":136150,"Directional":false}]},{"ID":2433,"SourceStructureID":5499,"TargetStructureID":5501,"Label":"5499-5501 via Gap Junction from 105503 -> 105504","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":105503,"TargetID":105504,"Directional":false}]},{"ID":2434,"SourceStructureID":5499,"TargetStructureID":5503,"Label":"5499-5503 via Adherens from 105606 -> 105605, 136193 -> 136192, 136209 -> 136208","Type":"Adherens","Directional":false,"Links":[{"SourceID":105606,"TargetID":105605,"Directional":false},{"SourceID":136193,"TargetID":136192,"Directional":false},{"SourceID":136209,"TargetID":136208,"Directional":false}]},{"ID":2435,"SourceStructureID":5503,"TargetStructureID":5499,"Label":"5503-5499 via Gap Junction from 52805 -> 49674, 60620 -> 60619, 60628 -> 60625, 105489 -> 105490","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52805,"TargetID":49674,"Directional":false},{"SourceID":60620,"TargetID":60619,"Directional":false},{"SourceID":60628,"TargetID":60625,"Directional":false},{"SourceID":105489,"TargetID":105490,"Directional":false}]},{"ID":2436,"SourceStructureID":5520,"TargetStructureID":5499,"Label":"5520-5499 via Adherens from 136146 -> 136145, 136148 -> 136149, 136153 -> 136152","Type":"Adherens","Directional":false,"Links":[{"SourceID":136146,"TargetID":136145,"Directional":false},{"SourceID":136148,"TargetID":136149,"Directional":false},{"SourceID":136153,"TargetID":136152,"Directional":false}]},{"ID":2437,"SourceStructureID":5520,"TargetStructureID":5499,"Label":"5520-5499 via Gap Junction from 40147 -> 40146, 61019 -> 61018, 97894 -> 115689, 97904 -> 97905, 98013 -> 96749, 105455 -> 105456, 105484 -> 105485, 105487 -> 105486, 105603 -> 105601, 105829 -> 105828","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40147,"TargetID":40146,"Directional":false},{"SourceID":61019,"TargetID":61018,"Directional":false},{"SourceID":97894,"TargetID":115689,"Directional":false},{"SourceID":97904,"TargetID":97905,"Directional":false},{"SourceID":98013,"TargetID":96749,"Directional":false},{"SourceID":105455,"TargetID":105456,"Directional":false},{"SourceID":105484,"TargetID":105485,"Directional":false},{"SourceID":105487,"TargetID":105486,"Directional":false},{"SourceID":105603,"TargetID":105601,"Directional":false},{"SourceID":105829,"TargetID":105828,"Directional":false}]},{"ID":2438,"SourceStructureID":5499,"TargetStructureID":5561,"Label":"5499-5561 via Adherens from 136190 -> 136191","Type":"Adherens","Directional":false,"Links":[{"SourceID":136190,"TargetID":136191,"Directional":false}]},{"ID":2439,"SourceStructureID":5499,"TargetStructureID":5561,"Label":"5499-5561 via Gap Junction from 49668 -> 49641, 96742 -> 96741, 97524 -> 97523, 106536 -> 106535, 119258 -> 97177","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49668,"TargetID":49641,"Directional":false},{"SourceID":96742,"TargetID":96741,"Directional":false},{"SourceID":97524,"TargetID":97523,"Directional":false},{"SourceID":106536,"TargetID":106535,"Directional":false},{"SourceID":119258,"TargetID":97177,"Directional":false}]},{"ID":2440,"SourceStructureID":5565,"TargetStructureID":5499,"Label":"5565-5499 via Gap Junction from 50815 -> 50816, 50843 -> 50844, 50981 -> 107009, 106799 -> 106798, 106936 -> 106937, 106954 -> 106955, 106957 -> 106956, 106971 -> 106972, 106974 -> 106973, 107008 -> 107007","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50815,"TargetID":50816,"Directional":false},{"SourceID":50843,"TargetID":50844,"Directional":false},{"SourceID":50981,"TargetID":107009,"Directional":false},{"SourceID":106799,"TargetID":106798,"Directional":false},{"SourceID":106936,"TargetID":106937,"Directional":false},{"SourceID":106954,"TargetID":106955,"Directional":false},{"SourceID":106957,"TargetID":106956,"Directional":false},{"SourceID":106971,"TargetID":106972,"Directional":false},{"SourceID":106974,"TargetID":106973,"Directional":false},{"SourceID":107008,"TargetID":107007,"Directional":false}]},{"ID":2441,"SourceStructureID":5499,"TargetStructureID":5565,"Label":"5499-5565 via Touch from 98102 -> 98103","Type":"Touch","Directional":false,"Links":[{"SourceID":98102,"TargetID":98103,"Directional":false}]},{"ID":2442,"SourceStructureID":5499,"TargetStructureID":5568,"Label":"5499-5568 via Gap Junction from 121312 -> 121311","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121312,"TargetID":121311,"Directional":false}]},{"ID":2443,"SourceStructureID":5729,"TargetStructureID":5499,"Label":"5729-5499 via Adherens from 136205 -> 136206","Type":"Adherens","Directional":false,"Links":[{"SourceID":136205,"TargetID":136206,"Directional":false}]},{"ID":2444,"SourceStructureID":5499,"TargetStructureID":5729,"Label":"5499-5729 via Gap Junction from 60621 -> 60623","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60621,"TargetID":60623,"Directional":false}]},{"ID":2445,"SourceStructureID":7024,"TargetStructureID":5499,"Label":"7024-5499 via Adherens from 113489 -> 113490, 113506 -> 113507, 135692 -> 135693, 136188 -> 136189, 136211 -> 136210, 136217 -> 136216","Type":"Adherens","Directional":false,"Links":[{"SourceID":113489,"TargetID":113490,"Directional":false},{"SourceID":113506,"TargetID":113507,"Directional":false},{"SourceID":135692,"TargetID":135693,"Directional":false},{"SourceID":136188,"TargetID":136189,"Directional":false},{"SourceID":136211,"TargetID":136210,"Directional":false},{"SourceID":136217,"TargetID":136216,"Directional":false}]},{"ID":2446,"SourceStructureID":5499,"TargetStructureID":7024,"Label":"5499-7024 via Gap Junction from 40161 -> 40160, 47337 -> 47336, 54972 -> 40163, 93823 -> 93822, 93825 -> 93824, 93865 -> 93864, 93866 -> 93867, 93997 -> 93996, 93998 -> 97869, 106609 -> 106544, 106610 -> 49667, 106755 -> 106754, 106829 -> 106828, 106959 -> 106958, 106966 -> 106965, 113717 -> 113718","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40161,"TargetID":40160,"Directional":false},{"SourceID":47337,"TargetID":47336,"Directional":false},{"SourceID":54972,"TargetID":40163,"Directional":false},{"SourceID":93823,"TargetID":93822,"Directional":false},{"SourceID":93825,"TargetID":93824,"Directional":false},{"SourceID":93865,"TargetID":93864,"Directional":false},{"SourceID":93866,"TargetID":93867,"Directional":false},{"SourceID":93997,"TargetID":93996,"Directional":false},{"SourceID":93998,"TargetID":97869,"Directional":false},{"SourceID":106609,"TargetID":106544,"Directional":false},{"SourceID":106610,"TargetID":49667,"Directional":false},{"SourceID":106755,"TargetID":106754,"Directional":false},{"SourceID":106829,"TargetID":106828,"Directional":false},{"SourceID":106959,"TargetID":106958,"Directional":false},{"SourceID":106966,"TargetID":106965,"Directional":false},{"SourceID":113717,"TargetID":113718,"Directional":false}]},{"ID":2447,"SourceStructureID":5499,"TargetStructureID":7040,"Label":"5499-7040 via Gap Junction from 136161 -> 136159","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136161,"TargetID":136159,"Directional":false}]},{"ID":2448,"SourceStructureID":7050,"TargetStructureID":5499,"Label":"7050-5499 via Adherens from 136183 -> 136184, 136187 -> 136186","Type":"Adherens","Directional":false,"Links":[{"SourceID":136183,"TargetID":136184,"Directional":false},{"SourceID":136187,"TargetID":136186,"Directional":false}]},{"ID":2449,"SourceStructureID":5499,"TargetStructureID":7050,"Label":"5499-7050 via Gap Junction from 40145 -> 24576, 40148 -> 40149, 97988 -> 97987","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40145,"TargetID":24576,"Directional":false},{"SourceID":40148,"TargetID":40149,"Directional":false},{"SourceID":97988,"TargetID":97987,"Directional":false}]},{"ID":2450,"SourceStructureID":5499,"TargetStructureID":20136,"Label":"5499-20136 via Adherens from 158466 -> 158465","Type":"Adherens","Directional":false,"Links":[{"SourceID":158466,"TargetID":158465,"Directional":false}]},{"ID":2451,"SourceStructureID":5499,"TargetStructureID":20136,"Label":"5499-20136 via Gap Junction from 96715 -> 96717","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96715,"TargetID":96717,"Directional":false}]},{"ID":2452,"SourceStructureID":48516,"TargetStructureID":5499,"Label":"48516-5499 via Adherens from 136232 -> 136231","Type":"Adherens","Directional":false,"Links":[{"SourceID":136232,"TargetID":136231,"Directional":false}]},{"ID":2453,"SourceStructureID":48516,"TargetStructureID":5499,"Label":"48516-5499 via Gap Junction from 93786 -> 93788, 136230 -> 97873, 136233 -> 136234","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93786,"TargetID":93788,"Directional":false},{"SourceID":136230,"TargetID":97873,"Directional":false},{"SourceID":136233,"TargetID":136234,"Directional":false}]},{"ID":2454,"SourceStructureID":5499,"TargetStructureID":87294,"Label":"5499-87294 via Adherens from 87329 -> 87328","Type":"Adherens","Directional":false,"Links":[{"SourceID":87329,"TargetID":87328,"Directional":false}]},{"ID":2455,"SourceStructureID":5499,"TargetStructureID":96730,"Label":"5499-96730 via Adherens from 96725 -> 96731","Type":"Adherens","Directional":false,"Links":[{"SourceID":96725,"TargetID":96731,"Directional":false}]},{"ID":2456,"SourceStructureID":5499,"TargetStructureID":105790,"Label":"5499-105790 via Unknown from 105789 -> 105791","Type":"Unknown","Directional":false,"Links":[{"SourceID":105789,"TargetID":105791,"Directional":false}]},{"ID":2457,"SourceStructureID":5499,"TargetStructureID":110463,"Label":"5499-110463 via Gap Junction from 106736 -> 136154","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":106736,"TargetID":136154,"Directional":false}]},{"ID":2458,"SourceStructureID":136169,"TargetStructureID":5499,"Label":"136169-5499 via Adherens from 136170 -> 136168","Type":"Adherens","Directional":false,"Links":[{"SourceID":136170,"TargetID":136168,"Directional":false}]},{"ID":2459,"SourceStructureID":5499,"TargetStructureID":136169,"Label":"5499-136169 via Gap Junction from 106953 -> 136171","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":106953,"TargetID":136171,"Directional":false}]},{"ID":2460,"SourceStructureID":136177,"TargetStructureID":5499,"Label":"136177-5499 via Gap Junction from 136180 -> 106975","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136180,"TargetID":106975,"Directional":false}]},{"ID":2461,"SourceStructureID":5499,"TargetStructureID":136236,"Label":"5499-136236 via Gap Junction from 97914 -> 136238","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97914,"TargetID":136238,"Directional":false}]},{"ID":2462,"SourceStructureID":5500,"TargetStructureID":59362,"Label":"5500-59362 via Adherens from 59367 -> 59366, 59405 -> 59404","Type":"Adherens","Directional":false,"Links":[{"SourceID":59367,"TargetID":59366,"Directional":false},{"SourceID":59405,"TargetID":59404,"Directional":false}]},{"ID":2463,"SourceStructureID":5500,"TargetStructureID":59362,"Label":"5500-59362 via Gap Junction from 59365 -> 59364, 59368 -> 59369, 59406 -> 59407","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59365,"TargetID":59364,"Directional":false},{"SourceID":59368,"TargetID":59369,"Directional":false},{"SourceID":59406,"TargetID":59407,"Directional":false}]},{"ID":2464,"SourceStructureID":5500,"TargetStructureID":59377,"Label":"5500-59377 via Gap Junction from 59378 -> 59379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59378,"TargetID":59379,"Directional":false}]},{"ID":2465,"SourceStructureID":59392,"TargetStructureID":5500,"Label":"59392-5500 via Gap Junction from 59393 -> 59391, 59400 -> 59399","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59393,"TargetID":59391,"Directional":false},{"SourceID":59400,"TargetID":59399,"Directional":false}]},{"ID":2466,"SourceStructureID":59419,"TargetStructureID":5500,"Label":"59419-5500 via Gap Junction from 59420 -> 59421","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59420,"TargetID":59421,"Directional":false}]},{"ID":2467,"SourceStructureID":85032,"TargetStructureID":5500,"Label":"85032-5500 via Adherens from 85033 -> 85031","Type":"Adherens","Directional":false,"Links":[{"SourceID":85033,"TargetID":85031,"Directional":false}]},{"ID":2468,"SourceStructureID":5503,"TargetStructureID":5501,"Label":"5503-5501 via Adherens from 36562 -> 36563, 36565 -> 36566, 36611 -> 60689, 114052 -> 114053","Type":"Adherens","Directional":false,"Links":[{"SourceID":36562,"TargetID":36563,"Directional":false},{"SourceID":36565,"TargetID":36566,"Directional":false},{"SourceID":36611,"TargetID":60689,"Directional":false},{"SourceID":114052,"TargetID":114053,"Directional":false}]},{"ID":2469,"SourceStructureID":5501,"TargetStructureID":5503,"Label":"5501-5503 via Gap Junction from 36580 -> 36581, 36587 -> 36588, 108134 -> 108133, 108220 -> 108218, 108224 -> 108222, 109970 -> 109969, 110001 -> 109999, 110003 -> 110002, 110176 -> 110177, 110201 -> 110161, 110273 -> 110272, 110275 -> 110274, 110448 -> 110447, 131429 -> 131425, 131438 -> 131439","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36580,"TargetID":36581,"Directional":false},{"SourceID":36587,"TargetID":36588,"Directional":false},{"SourceID":108134,"TargetID":108133,"Directional":false},{"SourceID":108220,"TargetID":108218,"Directional":false},{"SourceID":108224,"TargetID":108222,"Directional":false},{"SourceID":109970,"TargetID":109969,"Directional":false},{"SourceID":110001,"TargetID":109999,"Directional":false},{"SourceID":110003,"TargetID":110002,"Directional":false},{"SourceID":110176,"TargetID":110177,"Directional":false},{"SourceID":110201,"TargetID":110161,"Directional":false},{"SourceID":110273,"TargetID":110272,"Directional":false},{"SourceID":110275,"TargetID":110274,"Directional":false},{"SourceID":110448,"TargetID":110447,"Directional":false},{"SourceID":131429,"TargetID":131425,"Directional":false},{"SourceID":131438,"TargetID":131439,"Directional":false}]},{"ID":2470,"SourceStructureID":5501,"TargetStructureID":5503,"Label":"5501-5503 via Touch from 131441 -> 131442","Type":"Touch","Directional":false,"Links":[{"SourceID":131441,"TargetID":131442,"Directional":false}]},{"ID":2471,"SourceStructureID":5501,"TargetStructureID":5503,"Label":"5501-5503 via Unknown from 108698 -> 108697, 109676 -> 109675, 109940 -> 109939, 110346 -> 110345, 110469 -> 110470","Type":"Unknown","Directional":false,"Links":[{"SourceID":108698,"TargetID":108697,"Directional":false},{"SourceID":109676,"TargetID":109675,"Directional":false},{"SourceID":109940,"TargetID":109939,"Directional":false},{"SourceID":110346,"TargetID":110345,"Directional":false},{"SourceID":110469,"TargetID":110470,"Directional":false}]},{"ID":2472,"SourceStructureID":5501,"TargetStructureID":5520,"Label":"5501-5520 via Adherens from 60410 -> 60401","Type":"Adherens","Directional":false,"Links":[{"SourceID":60410,"TargetID":60401,"Directional":false}]},{"ID":2473,"SourceStructureID":5501,"TargetStructureID":5520,"Label":"5501-5520 via Gap Junction from 60411 -> 60400, 60414 -> 60405, 60613 -> 60612, 60775 -> 60761, 110206 -> 105551, 119753 -> 119752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60411,"TargetID":60400,"Directional":false},{"SourceID":60414,"TargetID":60405,"Directional":false},{"SourceID":60613,"TargetID":60612,"Directional":false},{"SourceID":60775,"TargetID":60761,"Directional":false},{"SourceID":110206,"TargetID":105551,"Directional":false},{"SourceID":119753,"TargetID":119752,"Directional":false}]},{"ID":2474,"SourceStructureID":5520,"TargetStructureID":5501,"Label":"5520-5501 via Unknown from 105823 -> 105822","Type":"Unknown","Directional":false,"Links":[{"SourceID":105823,"TargetID":105822,"Directional":false}]},{"ID":2475,"SourceStructureID":5561,"TargetStructureID":5501,"Label":"5561-5501 via Adherens from 148183 -> 148182","Type":"Adherens","Directional":false,"Links":[{"SourceID":148183,"TargetID":148182,"Directional":false}]},{"ID":2476,"SourceStructureID":5501,"TargetStructureID":5561,"Label":"5501-5561 via Gap Junction from 97187 -> 97145, 97328 -> 48870, 97591 -> 97590, 148153 -> 148152, 148154 -> 148155","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97187,"TargetID":97145,"Directional":false},{"SourceID":97328,"TargetID":48870,"Directional":false},{"SourceID":97591,"TargetID":97590,"Directional":false},{"SourceID":148153,"TargetID":148152,"Directional":false},{"SourceID":148154,"TargetID":148155,"Directional":false}]},{"ID":2477,"SourceStructureID":5501,"TargetStructureID":5650,"Label":"5501-5650 via Touch from 131434 -> 131433","Type":"Touch","Directional":false,"Links":[{"SourceID":131434,"TargetID":131433,"Directional":false}]},{"ID":2478,"SourceStructureID":5501,"TargetStructureID":6120,"Label":"5501-6120 via Gap Junction from 111109 -> 61138","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111109,"TargetID":61138,"Directional":false}]},{"ID":2479,"SourceStructureID":108032,"TargetStructureID":5501,"Label":"108032-5501 via Adherens from 110226 -> 110225","Type":"Adherens","Directional":false,"Links":[{"SourceID":110226,"TargetID":110225,"Directional":false}]},{"ID":2480,"SourceStructureID":5503,"TargetStructureID":5503,"Label":"5503-5503 via Gap Junction from 108695 -> 108694, 110005 -> 110004","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108695,"TargetID":108694,"Directional":false},{"SourceID":110005,"TargetID":110004,"Directional":false}]},{"ID":2481,"SourceStructureID":5503,"TargetStructureID":5503,"Label":"5503-5503 via Unknown from 110060 -> 110059","Type":"Unknown","Directional":false,"Links":[{"SourceID":110060,"TargetID":110059,"Directional":false}]},{"ID":2482,"SourceStructureID":5520,"TargetStructureID":5503,"Label":"5520-5503 via Gap Junction from 38987 -> 37959, 60726 -> 105482, 105544 -> 105543","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38987,"TargetID":37959,"Directional":false},{"SourceID":60726,"TargetID":105482,"Directional":false},{"SourceID":105544,"TargetID":105543,"Directional":false}]},{"ID":2483,"SourceStructureID":5650,"TargetStructureID":5503,"Label":"5650-5503 via Gap Junction from 38549 -> 60675, 102690 -> 102689, 102942 -> 102943","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38549,"TargetID":60675,"Directional":false},{"SourceID":102690,"TargetID":102689,"Directional":false},{"SourceID":102942,"TargetID":102943,"Directional":false}]},{"ID":2484,"SourceStructureID":5503,"TargetStructureID":5729,"Label":"5503-5729 via Gap Junction from 105747 -> 105746, 108424 -> 108423","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":105747,"TargetID":105746,"Directional":false},{"SourceID":108424,"TargetID":108423,"Directional":false}]},{"ID":2485,"SourceStructureID":6118,"TargetStructureID":5503,"Label":"6118-5503 via Gap Junction from 108560 -> 108555","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108560,"TargetID":108555,"Directional":false}]},{"ID":2486,"SourceStructureID":6120,"TargetStructureID":5503,"Label":"6120-5503 via Gap Junction from 61135 -> 61134, 131424 -> 61139","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61135,"TargetID":61134,"Directional":false},{"SourceID":131424,"TargetID":61139,"Directional":false}]},{"ID":2487,"SourceStructureID":5503,"TargetStructureID":7951,"Label":"5503-7951 via BC Conventional Synapse from 108704 -> 108705","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":108704,"TargetID":108705,"Directional":false}]},{"ID":2488,"SourceStructureID":12897,"TargetStructureID":5503,"Label":"12897-5503 via Gap Junction from 24665 -> 52803, 24668 -> 20088, 24721 -> 24667, 24835 -> 20211, 24853 -> 24736, 24859 -> 24858, 61316 -> 61318, 108137 -> 24854, 110045 -> 54100, 110047 -> 110046, 110166 -> 110167, 113660 -> 113659, 113662 -> 113661","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24665,"TargetID":52803,"Directional":false},{"SourceID":24668,"TargetID":20088,"Directional":false},{"SourceID":24721,"TargetID":24667,"Directional":false},{"SourceID":24835,"TargetID":20211,"Directional":false},{"SourceID":24853,"TargetID":24736,"Directional":false},{"SourceID":24859,"TargetID":24858,"Directional":false},{"SourceID":61316,"TargetID":61318,"Directional":false},{"SourceID":108137,"TargetID":24854,"Directional":false},{"SourceID":110045,"TargetID":54100,"Directional":false},{"SourceID":110047,"TargetID":110046,"Directional":false},{"SourceID":110166,"TargetID":110167,"Directional":false},{"SourceID":113660,"TargetID":113659,"Directional":false},{"SourceID":113662,"TargetID":113661,"Directional":false}]},{"ID":2489,"SourceStructureID":87294,"TargetStructureID":5503,"Label":"87294-5503 via Adherens from 87296 -> 87297","Type":"Adherens","Directional":false,"Links":[{"SourceID":87296,"TargetID":87297,"Directional":false}]},{"ID":2490,"SourceStructureID":5503,"TargetStructureID":102795,"Label":"5503-102795 via Unknown from 110018 -> 110017","Type":"Unknown","Directional":false,"Links":[{"SourceID":110018,"TargetID":110017,"Directional":false}]},{"ID":2491,"SourceStructureID":5503,"TargetStructureID":107414,"Label":"5503-107414 via Adherens from 107428 -> 107427","Type":"Adherens","Directional":false,"Links":[{"SourceID":107428,"TargetID":107427,"Directional":false}]},{"ID":2492,"SourceStructureID":5503,"TargetStructureID":107508,"Label":"5503-107508 via Adherens from 60705 -> 107511","Type":"Adherens","Directional":false,"Links":[{"SourceID":60705,"TargetID":107511,"Directional":false}]},{"ID":2493,"SourceStructureID":107508,"TargetStructureID":5503,"Label":"107508-5503 via Unknown from 107524 -> 107523","Type":"Unknown","Directional":false,"Links":[{"SourceID":107524,"TargetID":107523,"Directional":false}]},{"ID":2494,"SourceStructureID":5503,"TargetStructureID":109693,"Label":"5503-109693 via Unknown from 109695 -> 109694","Type":"Unknown","Directional":false,"Links":[{"SourceID":109695,"TargetID":109694,"Directional":false}]},{"ID":2495,"SourceStructureID":5503,"TargetStructureID":109793,"Label":"5503-109793 via Unknown from 109792 -> 109796","Type":"Unknown","Directional":false,"Links":[{"SourceID":109792,"TargetID":109796,"Directional":false}]},{"ID":2496,"SourceStructureID":109858,"TargetStructureID":5503,"Label":"109858-5503 via Adherens from 109861 -> 109856","Type":"Adherens","Directional":false,"Links":[{"SourceID":109861,"TargetID":109856,"Directional":false}]},{"ID":2497,"SourceStructureID":109952,"TargetStructureID":5503,"Label":"109952-5503 via Gap Junction from 109954 -> 60683","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109954,"TargetID":60683,"Directional":false}]},{"ID":2498,"SourceStructureID":109997,"TargetStructureID":5503,"Label":"109997-5503 via Unknown from 109998 -> 109996","Type":"Unknown","Directional":false,"Links":[{"SourceID":109998,"TargetID":109996,"Directional":false}]},{"ID":2499,"SourceStructureID":110142,"TargetStructureID":5503,"Label":"110142-5503 via Unknown from 113667 -> 113666","Type":"Unknown","Directional":false,"Links":[{"SourceID":113667,"TargetID":113666,"Directional":false}]},{"ID":2500,"SourceStructureID":5503,"TargetStructureID":110232,"Label":"5503-110232 via Unknown from 110240 -> 110239","Type":"Unknown","Directional":false,"Links":[{"SourceID":110240,"TargetID":110239,"Directional":false}]},{"ID":2501,"SourceStructureID":110313,"TargetStructureID":5503,"Label":"110313-5503 via Gap Junction from 115798 -> 60704","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115798,"TargetID":60704,"Directional":false}]},{"ID":2502,"SourceStructureID":5503,"TargetStructureID":110477,"Label":"5503-110477 via Adherens from 110482 -> 110481","Type":"Adherens","Directional":false,"Links":[{"SourceID":110482,"TargetID":110481,"Directional":false}]},{"ID":2503,"SourceStructureID":5504,"TargetStructureID":87366,"Label":"5504-87366 via Adherens from 87370 -> 87369","Type":"Adherens","Directional":false,"Links":[{"SourceID":87370,"TargetID":87369,"Directional":false}]},{"ID":2504,"SourceStructureID":5504,"TargetStructureID":93514,"Label":"5504-93514 via Gap Junction from 93516 -> 93515","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93516,"TargetID":93515,"Directional":false}]},{"ID":2505,"SourceStructureID":5506,"TargetStructureID":28886,"Label":"5506-28886 via Gap Junction from 52343 -> 51403","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52343,"TargetID":51403,"Directional":false}]},{"ID":2506,"SourceStructureID":5515,"TargetStructureID":5507,"Label":"5515-5507 via Unknown from 119059 -> 119060","Type":"Unknown","Directional":false,"Links":[{"SourceID":119059,"TargetID":119060,"Directional":false}]},{"ID":2507,"SourceStructureID":6997,"TargetStructureID":5507,"Label":"6997-5507 via Adherens from 28386 -> 28385","Type":"Adherens","Directional":false,"Links":[{"SourceID":28386,"TargetID":28385,"Directional":false}]},{"ID":2508,"SourceStructureID":5516,"TargetStructureID":5509,"Label":"5516-5509 via Gap Junction from 120865 -> 120866","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120865,"TargetID":120866,"Directional":false}]},{"ID":2509,"SourceStructureID":5509,"TargetStructureID":5517,"Label":"5509-5517 via Adherens from 37526 -> 37525","Type":"Adherens","Directional":false,"Links":[{"SourceID":37526,"TargetID":37525,"Directional":false}]},{"ID":2510,"SourceStructureID":19203,"TargetStructureID":5509,"Label":"19203-5509 via Adherens from 135814 -> 135813","Type":"Adherens","Directional":false,"Links":[{"SourceID":135814,"TargetID":135813,"Directional":false}]},{"ID":2511,"SourceStructureID":5509,"TargetStructureID":19203,"Label":"5509-19203 via Unknown from 135812 -> 135811","Type":"Unknown","Directional":false,"Links":[{"SourceID":135812,"TargetID":135811,"Directional":false}]},{"ID":2512,"SourceStructureID":5922,"TargetStructureID":5511,"Label":"5922-5511 via Adherens from 37159 -> 37160","Type":"Adherens","Directional":false,"Links":[{"SourceID":37159,"TargetID":37160,"Directional":false}]},{"ID":2513,"SourceStructureID":5513,"TargetStructureID":5516,"Label":"5513-5516 via Gap Junction from 118224 -> 120867, 118249 -> 50072, 120868 -> 118245","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118224,"TargetID":120867,"Directional":false},{"SourceID":118249,"TargetID":50072,"Directional":false},{"SourceID":120868,"TargetID":118245,"Directional":false}]},{"ID":2514,"SourceStructureID":5513,"TargetStructureID":5517,"Label":"5513-5517 via Gap Junction from 118228 -> 118227","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118228,"TargetID":118227,"Directional":false}]},{"ID":2515,"SourceStructureID":5517,"TargetStructureID":5513,"Label":"5517-5513 via Unknown from 96063 -> 96064","Type":"Unknown","Directional":false,"Links":[{"SourceID":96063,"TargetID":96064,"Directional":false}]},{"ID":2516,"SourceStructureID":7024,"TargetStructureID":5513,"Label":"7024-5513 via Gap Junction from 40165 -> 40169","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40165,"TargetID":40169,"Directional":false}]},{"ID":2517,"SourceStructureID":20136,"TargetStructureID":5513,"Label":"20136-5513 via Gap Junction from 109412 -> 109413","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109412,"TargetID":109413,"Directional":false}]},{"ID":2518,"SourceStructureID":5513,"TargetStructureID":24303,"Label":"5513-24303 via Gap Junction from 38777 -> 38776","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38777,"TargetID":38776,"Directional":false}]},{"ID":2519,"SourceStructureID":5513,"TargetStructureID":26079,"Label":"5513-26079 via Gap Junction from 102966 -> 102965, 120627 -> 120628, 121199 -> 121198","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":102966,"TargetID":102965,"Directional":false},{"SourceID":120627,"TargetID":120628,"Directional":false},{"SourceID":121199,"TargetID":121198,"Directional":false}]},{"ID":2520,"SourceStructureID":5513,"TargetStructureID":26079,"Label":"5513-26079 via Unknown from 121232 -> 121231","Type":"Unknown","Directional":false,"Links":[{"SourceID":121232,"TargetID":121231,"Directional":false}]},{"ID":2521,"SourceStructureID":28886,"TargetStructureID":5513,"Label":"28886-5513 via Gap Junction from 118235 -> 118234","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118235,"TargetID":118234,"Directional":false}]},{"ID":2522,"SourceStructureID":5513,"TargetStructureID":46801,"Label":"5513-46801 via Gap Junction from 118252 -> 118254, 119747 -> 118247","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118252,"TargetID":118254,"Directional":false},{"SourceID":119747,"TargetID":118247,"Directional":false}]},{"ID":2523,"SourceStructureID":96069,"TargetStructureID":5513,"Label":"96069-5513 via Unknown from 96070 -> 96068","Type":"Unknown","Directional":false,"Links":[{"SourceID":96070,"TargetID":96068,"Directional":false}]},{"ID":2524,"SourceStructureID":5516,"TargetStructureID":5514,"Label":"5516-5514 via Gap Junction from 50037 -> 119724, 50790 -> 50789, 89300 -> 89299, 119719 -> 119714, 119722 -> 119721, 119727 -> 119726, 119745 -> 119743, 120863 -> 120864","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50037,"TargetID":119724,"Directional":false},{"SourceID":50790,"TargetID":50789,"Directional":false},{"SourceID":89300,"TargetID":89299,"Directional":false},{"SourceID":119719,"TargetID":119714,"Directional":false},{"SourceID":119722,"TargetID":119721,"Directional":false},{"SourceID":119727,"TargetID":119726,"Directional":false},{"SourceID":119745,"TargetID":119743,"Directional":false},{"SourceID":120863,"TargetID":120864,"Directional":false}]},{"ID":2525,"SourceStructureID":5514,"TargetStructureID":5568,"Label":"5514-5568 via Gap Junction from 50421 -> 49941, 50671 -> 49995, 50866 -> 49992, 62137 -> 62138, 62379 -> 62378, 121547 -> 121548, 121570 -> 121569, 121578 -> 121579","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50421,"TargetID":49941,"Directional":false},{"SourceID":50671,"TargetID":49995,"Directional":false},{"SourceID":50866,"TargetID":49992,"Directional":false},{"SourceID":62137,"TargetID":62138,"Directional":false},{"SourceID":62379,"TargetID":62378,"Directional":false},{"SourceID":121547,"TargetID":121548,"Directional":false},{"SourceID":121570,"TargetID":121569,"Directional":false},{"SourceID":121578,"TargetID":121579,"Directional":false}]},{"ID":2526,"SourceStructureID":19203,"TargetStructureID":5514,"Label":"19203-5514 via Gap Junction from 119699 -> 119691, 119712 -> 119711, 121566 -> 121565, 121601 -> 121609, 121639 -> 121640","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119699,"TargetID":119691,"Directional":false},{"SourceID":119712,"TargetID":119711,"Directional":false},{"SourceID":121566,"TargetID":121565,"Directional":false},{"SourceID":121601,"TargetID":121609,"Directional":false},{"SourceID":121639,"TargetID":121640,"Directional":false}]},{"ID":2527,"SourceStructureID":5515,"TargetStructureID":5515,"Label":"5515-5515 via Adherens from 119287 -> 119288, 119308 -> 119307","Type":"Adherens","Directional":false,"Links":[{"SourceID":119287,"TargetID":119288,"Directional":false},{"SourceID":119308,"TargetID":119307,"Directional":false}]},{"ID":2528,"SourceStructureID":5515,"TargetStructureID":5623,"Label":"5515-5623 via Gap Junction from 119263 -> 119264","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119263,"TargetID":119264,"Directional":false}]},{"ID":2529,"SourceStructureID":5515,"TargetStructureID":5623,"Label":"5515-5623 via Unknown from 119423 -> 119424","Type":"Unknown","Directional":false,"Links":[{"SourceID":119423,"TargetID":119424,"Directional":false}]},{"ID":2530,"SourceStructureID":5515,"TargetStructureID":6589,"Label":"5515-6589 via Adherens from 119273 -> 119272, 130627 -> 130626","Type":"Adherens","Directional":false,"Links":[{"SourceID":119273,"TargetID":119272,"Directional":false},{"SourceID":130627,"TargetID":130626,"Directional":false}]},{"ID":2531,"SourceStructureID":5515,"TargetStructureID":8037,"Label":"5515-8037 via Adherens from 130642 -> 130643","Type":"Adherens","Directional":false,"Links":[{"SourceID":130642,"TargetID":130643,"Directional":false}]},{"ID":2532,"SourceStructureID":8037,"TargetStructureID":5515,"Label":"8037-5515 via Gap Junction from 11370 -> 11366, 56515 -> 56506, 130640 -> 130641","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":11370,"TargetID":11366,"Directional":false},{"SourceID":56515,"TargetID":56506,"Directional":false},{"SourceID":130640,"TargetID":130641,"Directional":false}]},{"ID":2533,"SourceStructureID":8038,"TargetStructureID":5515,"Label":"8038-5515 via Gap Junction from 119666 -> 119665","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119666,"TargetID":119665,"Directional":false}]},{"ID":2534,"SourceStructureID":136786,"TargetStructureID":5515,"Label":"136786-5515 via Gap Junction from 136799 -> 136798","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136799,"TargetID":136798,"Directional":false}]},{"ID":2535,"SourceStructureID":136796,"TargetStructureID":5515,"Label":"136796-5515 via Gap Junction from 136797 -> 56504","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136797,"TargetID":56504,"Directional":false}]},{"ID":2536,"SourceStructureID":5515,"TargetStructureID":136817,"Label":"5515-136817 via Gap Junction from 56509 -> 136818","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56509,"TargetID":136818,"Directional":false}]},{"ID":2537,"SourceStructureID":136819,"TargetStructureID":5515,"Label":"136819-5515 via Gap Junction from 136820 -> 56511","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136820,"TargetID":56511,"Directional":false}]},{"ID":2538,"SourceStructureID":5515,"TargetStructureID":136824,"Label":"5515-136824 via Gap Junction from 119419 -> 136825","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119419,"TargetID":136825,"Directional":false}]},{"ID":2539,"SourceStructureID":136826,"TargetStructureID":5515,"Label":"136826-5515 via Gap Junction from 136829 -> 119448","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136829,"TargetID":119448,"Directional":false}]},{"ID":2540,"SourceStructureID":5516,"TargetStructureID":5516,"Label":"5516-5516 via Gap Junction from 148199 -> 148198","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":148199,"TargetID":148198,"Directional":false}]},{"ID":2541,"SourceStructureID":5517,"TargetStructureID":5516,"Label":"5517-5516 via Gap Junction from 96114 -> 96115","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96114,"TargetID":96115,"Directional":false}]},{"ID":2542,"SourceStructureID":5516,"TargetStructureID":7024,"Label":"5516-7024 via Adherens from 93838 -> 93837, 113763 -> 113762, 148208 -> 148207","Type":"Adherens","Directional":false,"Links":[{"SourceID":93838,"TargetID":93837,"Directional":false},{"SourceID":113763,"TargetID":113762,"Directional":false},{"SourceID":148208,"TargetID":148207,"Directional":false}]},{"ID":2543,"SourceStructureID":7024,"TargetStructureID":5516,"Label":"7024-5516 via Gap Junction from 63394 -> 50097, 93828 -> 93829, 93830 -> 93831, 93840 -> 93839, 93843 -> 93842, 93877 -> 93876, 114156 -> 120862, 114195 -> 114196, 120845 -> 115085, 148201 -> 114105, 148220 -> 148219, 148230 -> 148229","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63394,"TargetID":50097,"Directional":false},{"SourceID":93828,"TargetID":93829,"Directional":false},{"SourceID":93830,"TargetID":93831,"Directional":false},{"SourceID":93840,"TargetID":93839,"Directional":false},{"SourceID":93843,"TargetID":93842,"Directional":false},{"SourceID":93877,"TargetID":93876,"Directional":false},{"SourceID":114156,"TargetID":120862,"Directional":false},{"SourceID":114195,"TargetID":114196,"Directional":false},{"SourceID":120845,"TargetID":115085,"Directional":false},{"SourceID":148201,"TargetID":114105,"Directional":false},{"SourceID":148220,"TargetID":148219,"Directional":false},{"SourceID":148230,"TargetID":148229,"Directional":false}]},{"ID":2544,"SourceStructureID":20136,"TargetStructureID":5516,"Label":"20136-5516 via Adherens from 135780 -> 135781","Type":"Adherens","Directional":false,"Links":[{"SourceID":135780,"TargetID":135781,"Directional":false}]},{"ID":2545,"SourceStructureID":20136,"TargetStructureID":5516,"Label":"20136-5516 via Gap Junction from 110146 -> 110434","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":110146,"TargetID":110434,"Directional":false}]},{"ID":2546,"SourceStructureID":5516,"TargetStructureID":46388,"Label":"5516-46388 via Gap Junction from 121441 -> 121440","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121441,"TargetID":121440,"Directional":false}]},{"ID":2547,"SourceStructureID":50449,"TargetStructureID":5516,"Label":"50449-5516 via Gap Junction from 50638 -> 50639","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50638,"TargetID":50639,"Directional":false}]},{"ID":2548,"SourceStructureID":5516,"TargetStructureID":96217,"Label":"5516-96217 via Unknown from 120487 -> 120488","Type":"Unknown","Directional":false,"Links":[{"SourceID":120487,"TargetID":120488,"Directional":false}]},{"ID":2549,"SourceStructureID":5517,"TargetStructureID":5561,"Label":"5517-5561 via Gap Junction from 49476 -> 49477, 49478 -> 49483, 49499 -> 49498","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49476,"TargetID":49477,"Directional":false},{"SourceID":49478,"TargetID":49483,"Directional":false},{"SourceID":49499,"TargetID":49498,"Directional":false}]},{"ID":2550,"SourceStructureID":6912,"TargetStructureID":5517,"Label":"6912-5517 via Unknown from 96067 -> 96066","Type":"Unknown","Directional":false,"Links":[{"SourceID":96067,"TargetID":96066,"Directional":false}]},{"ID":2551,"SourceStructureID":8037,"TargetStructureID":5517,"Label":"8037-5517 via Gap Junction from 10870 -> 96119, 96120 -> 96118","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10870,"TargetID":96119,"Directional":false},{"SourceID":96120,"TargetID":96118,"Directional":false}]},{"ID":2552,"SourceStructureID":5517,"TargetStructureID":18693,"Label":"5517-18693 via Gap Junction from 49502 -> 49635","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49502,"TargetID":49635,"Directional":false}]},{"ID":2553,"SourceStructureID":19203,"TargetStructureID":5517,"Label":"19203-5517 via Gap Junction from 38537 -> 38536, 49427 -> 49633, 120872 -> 120873, 121626 -> 121627, 135808 -> 135807","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38537,"TargetID":38536,"Directional":false},{"SourceID":49427,"TargetID":49633,"Directional":false},{"SourceID":120872,"TargetID":120873,"Directional":false},{"SourceID":121626,"TargetID":121627,"Directional":false},{"SourceID":135808,"TargetID":135807,"Directional":false}]},{"ID":2554,"SourceStructureID":19203,"TargetStructureID":5517,"Label":"19203-5517 via Unknown from 96097 -> 96096","Type":"Unknown","Directional":false,"Links":[{"SourceID":96097,"TargetID":96096,"Directional":false}]},{"ID":2555,"SourceStructureID":20136,"TargetStructureID":5517,"Label":"20136-5517 via Adherens from 133994 -> 133993, 135803 -> 135804","Type":"Adherens","Directional":false,"Links":[{"SourceID":133994,"TargetID":133993,"Directional":false},{"SourceID":135803,"TargetID":135804,"Directional":false}]},{"ID":2556,"SourceStructureID":20136,"TargetStructureID":5517,"Label":"20136-5517 via Gap Junction from 29147 -> 29148, 109361 -> 109362, 109720 -> 109721, 109786 -> 109787, 133991 -> 133992, 135786 -> 135784","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29147,"TargetID":29148,"Directional":false},{"SourceID":109361,"TargetID":109362,"Directional":false},{"SourceID":109720,"TargetID":109721,"Directional":false},{"SourceID":109786,"TargetID":109787,"Directional":false},{"SourceID":133991,"TargetID":133992,"Directional":false},{"SourceID":135786,"TargetID":135784,"Directional":false}]},{"ID":2557,"SourceStructureID":5517,"TargetStructureID":26079,"Label":"5517-26079 via Gap Junction from 49298 -> 49299, 96056 -> 96055","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49298,"TargetID":49299,"Directional":false},{"SourceID":96056,"TargetID":96055,"Directional":false}]},{"ID":2558,"SourceStructureID":26079,"TargetStructureID":5517,"Label":"26079-5517 via Unknown from 96062 -> 96061","Type":"Unknown","Directional":false,"Links":[{"SourceID":96062,"TargetID":96061,"Directional":false}]},{"ID":2559,"SourceStructureID":96072,"TargetStructureID":5517,"Label":"96072-5517 via Adherens from 96073 -> 96071","Type":"Adherens","Directional":false,"Links":[{"SourceID":96073,"TargetID":96071,"Directional":false}]},{"ID":2560,"SourceStructureID":96083,"TargetStructureID":5517,"Label":"96083-5517 via Gap Junction from 96084 -> 96082","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96084,"TargetID":96082,"Directional":false}]},{"ID":2561,"SourceStructureID":96093,"TargetStructureID":5517,"Label":"96093-5517 via Unknown from 96094 -> 96092","Type":"Unknown","Directional":false,"Links":[{"SourceID":96094,"TargetID":96092,"Directional":false}]},{"ID":2562,"SourceStructureID":5517,"TargetStructureID":96102,"Label":"5517-96102 via Gap Junction from 96108 -> 96107, 96173 -> 96172, 96191 -> 96190, 135783 -> 135782","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96108,"TargetID":96107,"Directional":false},{"SourceID":96173,"TargetID":96172,"Directional":false},{"SourceID":96191,"TargetID":96190,"Directional":false},{"SourceID":135783,"TargetID":135782,"Directional":false}]},{"ID":2563,"SourceStructureID":5517,"TargetStructureID":96102,"Label":"5517-96102 via Unknown from 96101 -> 96103, 135791 -> 135790","Type":"Unknown","Directional":false,"Links":[{"SourceID":96101,"TargetID":96103,"Directional":false},{"SourceID":135791,"TargetID":135790,"Directional":false}]},{"ID":2564,"SourceStructureID":96122,"TargetStructureID":5517,"Label":"96122-5517 via Gap Junction from 96123 -> 96121","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96123,"TargetID":96121,"Directional":false}]},{"ID":2565,"SourceStructureID":96347,"TargetStructureID":5517,"Label":"96347-5517 via Gap Junction from 96348 -> 96346","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96348,"TargetID":96346,"Directional":false}]},{"ID":2566,"SourceStructureID":96351,"TargetStructureID":5517,"Label":"96351-5517 via Unknown from 96352 -> 96350","Type":"Unknown","Directional":false,"Links":[{"SourceID":96352,"TargetID":96350,"Directional":false}]},{"ID":2567,"SourceStructureID":5519,"TargetStructureID":5566,"Label":"5519-5566 via Adherens from 59197 -> 59198","Type":"Adherens","Directional":false,"Links":[{"SourceID":59197,"TargetID":59198,"Directional":false}]},{"ID":2568,"SourceStructureID":5566,"TargetStructureID":5519,"Label":"5566-5519 via Gap Junction from 33670 -> 33671, 59203 -> 59202, 59319 -> 59320","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":33670,"TargetID":33671,"Directional":false},{"SourceID":59203,"TargetID":59202,"Directional":false},{"SourceID":59319,"TargetID":59320,"Directional":false}]},{"ID":2569,"SourceStructureID":59163,"TargetStructureID":5519,"Label":"59163-5519 via Gap Junction from 59164 -> 59162","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59164,"TargetID":59162,"Directional":false}]},{"ID":2570,"SourceStructureID":5519,"TargetStructureID":59208,"Label":"5519-59208 via Gap Junction from 59207 -> 59209","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59207,"TargetID":59209,"Directional":false}]},{"ID":2571,"SourceStructureID":5519,"TargetStructureID":59211,"Label":"5519-59211 via Gap Junction from 59210 -> 59212","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59210,"TargetID":59212,"Directional":false}]},{"ID":2572,"SourceStructureID":5729,"TargetStructureID":5520,"Label":"5729-5520 via Gap Junction from 60391 -> 60383, 93223 -> 93221","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60391,"TargetID":60383,"Directional":false},{"SourceID":93223,"TargetID":93221,"Directional":false}]},{"ID":2573,"SourceStructureID":7040,"TargetStructureID":5520,"Label":"7040-5520 via Gap Junction from 93708 -> 61048, 93711 -> 93714, 97909 -> 97910, 115360 -> 93232, 119748 -> 119749","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93708,"TargetID":61048,"Directional":false},{"SourceID":93711,"TargetID":93714,"Directional":false},{"SourceID":97909,"TargetID":97910,"Directional":false},{"SourceID":115360,"TargetID":93232,"Directional":false},{"SourceID":119748,"TargetID":119749,"Directional":false}]},{"ID":2574,"SourceStructureID":7040,"TargetStructureID":5520,"Label":"7040-5520 via Unknown from 93729 -> 37951","Type":"Unknown","Directional":false,"Links":[{"SourceID":93729,"TargetID":37951,"Directional":false}]},{"ID":2575,"SourceStructureID":7050,"TargetStructureID":5520,"Label":"7050-5520 via Gap Junction from 24879 -> 97908, 24892 -> 24891, 60373 -> 60374, 60757 -> 24582, 61008 -> 10067, 61028 -> 61027, 105806 -> 105804, 120822 -> 24876","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24879,"TargetID":97908,"Directional":false},{"SourceID":24892,"TargetID":24891,"Directional":false},{"SourceID":60373,"TargetID":60374,"Directional":false},{"SourceID":60757,"TargetID":24582,"Directional":false},{"SourceID":61008,"TargetID":10067,"Directional":false},{"SourceID":61028,"TargetID":61027,"Directional":false},{"SourceID":105806,"TargetID":105804,"Directional":false},{"SourceID":120822,"TargetID":24876,"Directional":false}]},{"ID":2576,"SourceStructureID":5520,"TargetStructureID":12897,"Label":"5520-12897 via Gap Junction from 60606 -> 24723, 119754 -> 60607","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60606,"TargetID":24723,"Directional":false},{"SourceID":119754,"TargetID":60607,"Directional":false}]},{"ID":2577,"SourceStructureID":60370,"TargetStructureID":5520,"Label":"60370-5520 via Gap Junction from 60371 -> 37937","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60371,"TargetID":37937,"Directional":false}]},{"ID":2578,"SourceStructureID":60397,"TargetStructureID":5520,"Label":"60397-5520 via Gap Junction from 60398 -> 60396","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60398,"TargetID":60396,"Directional":false}]},{"ID":2579,"SourceStructureID":64939,"TargetStructureID":5520,"Label":"64939-5520 via Gap Junction from 93226 -> 93225, 93713 -> 93712","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93226,"TargetID":93225,"Directional":false},{"SourceID":93713,"TargetID":93712,"Directional":false}]},{"ID":2580,"SourceStructureID":5522,"TargetStructureID":5562,"Label":"5522-5562 via Adherens from 63127 -> 63126, 80269 -> 80270, 84527 -> 84528","Type":"Adherens","Directional":false,"Links":[{"SourceID":63127,"TargetID":63126,"Directional":false},{"SourceID":80269,"TargetID":80270,"Directional":false},{"SourceID":84527,"TargetID":84528,"Directional":false}]},{"ID":2581,"SourceStructureID":5562,"TargetStructureID":5522,"Label":"5562-5522 via Gap Junction from 40266 -> 63131, 63124 -> 63087, 63321 -> 43496, 134643 -> 134642","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40266,"TargetID":63131,"Directional":false},{"SourceID":63124,"TargetID":63087,"Directional":false},{"SourceID":63321,"TargetID":43496,"Directional":false},{"SourceID":134643,"TargetID":134642,"Directional":false}]},{"ID":2582,"SourceStructureID":7050,"TargetStructureID":5522,"Label":"7050-5522 via Gap Junction from 63163 -> 63162","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63163,"TargetID":63162,"Directional":false}]},{"ID":2583,"SourceStructureID":8038,"TargetStructureID":5522,"Label":"8038-5522 via Gap Junction from 113050 -> 64180","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113050,"TargetID":64180,"Directional":false}]},{"ID":2584,"SourceStructureID":18282,"TargetStructureID":5522,"Label":"18282-5522 via Adherens from 63111 -> 63110","Type":"Adherens","Directional":false,"Links":[{"SourceID":63111,"TargetID":63110,"Directional":false}]},{"ID":2585,"SourceStructureID":5522,"TargetStructureID":32804,"Label":"5522-32804 via Adherens from 64132 -> 64133, 64225 -> 64226, 64260 -> 64261, 64262 -> 64265, 64264 -> 64263, 64306 -> 64305, 64307 -> 64308","Type":"Adherens","Directional":false,"Links":[{"SourceID":64132,"TargetID":64133,"Directional":false},{"SourceID":64225,"TargetID":64226,"Directional":false},{"SourceID":64260,"TargetID":64261,"Directional":false},{"SourceID":64262,"TargetID":64265,"Directional":false},{"SourceID":64264,"TargetID":64263,"Directional":false},{"SourceID":64306,"TargetID":64305,"Directional":false},{"SourceID":64307,"TargetID":64308,"Directional":false}]},{"ID":2586,"SourceStructureID":5528,"TargetStructureID":5528,"Label":"5528-5528 via Gap Junction from 135710 -> 135709","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135710,"TargetID":135709,"Directional":false}]},{"ID":2587,"SourceStructureID":5528,"TargetStructureID":5528,"Label":"5528-5528 via Unknown from 94025 -> 94026","Type":"Unknown","Directional":false,"Links":[{"SourceID":94025,"TargetID":94026,"Directional":false}]},{"ID":2588,"SourceStructureID":5530,"TargetStructureID":5528,"Label":"5530-5528 via Gap Junction from 75888 -> 82614, 81192 -> 81191","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":75888,"TargetID":82614,"Directional":false},{"SourceID":81192,"TargetID":81191,"Directional":false}]},{"ID":2589,"SourceStructureID":5531,"TargetStructureID":5528,"Label":"5531-5528 via Adherens from 96154 -> 96155, 97241 -> 97242, 147406 -> 147405, 147443 -> 147444","Type":"Adherens","Directional":false,"Links":[{"SourceID":96154,"TargetID":96155,"Directional":false},{"SourceID":97241,"TargetID":97242,"Directional":false},{"SourceID":147406,"TargetID":147405,"Directional":false},{"SourceID":147443,"TargetID":147444,"Directional":false}]},{"ID":2590,"SourceStructureID":5531,"TargetStructureID":5528,"Label":"5531-5528 via Gap Junction from 54650 -> 8257, 54683 -> 54682, 54720 -> 54721, 54768 -> 54769, 94845 -> 94846, 95110 -> 95109, 107143 -> 107144, 108006 -> 108005, 112471 -> 93732, 113954 -> 113953, 119238 -> 119237, 131262 -> 131261, 131274 -> 131273, 133923 -> 133922, 133924 -> 133925, 133926 -> 133927, 147473 -> 147472","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54650,"TargetID":8257,"Directional":false},{"SourceID":54683,"TargetID":54682,"Directional":false},{"SourceID":54720,"TargetID":54721,"Directional":false},{"SourceID":54768,"TargetID":54769,"Directional":false},{"SourceID":94845,"TargetID":94846,"Directional":false},{"SourceID":95110,"TargetID":95109,"Directional":false},{"SourceID":107143,"TargetID":107144,"Directional":false},{"SourceID":108006,"TargetID":108005,"Directional":false},{"SourceID":112471,"TargetID":93732,"Directional":false},{"SourceID":113954,"TargetID":113953,"Directional":false},{"SourceID":119238,"TargetID":119237,"Directional":false},{"SourceID":131262,"TargetID":131261,"Directional":false},{"SourceID":131274,"TargetID":131273,"Directional":false},{"SourceID":133923,"TargetID":133922,"Directional":false},{"SourceID":133924,"TargetID":133925,"Directional":false},{"SourceID":133926,"TargetID":133927,"Directional":false},{"SourceID":147473,"TargetID":147472,"Directional":false}]},{"ID":2591,"SourceStructureID":5534,"TargetStructureID":5528,"Label":"5534-5528 via Gap Junction from 54418 -> 94655","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54418,"TargetID":94655,"Directional":false}]},{"ID":2592,"SourceStructureID":5537,"TargetStructureID":5528,"Label":"5537-5528 via Gap Junction from 94701 -> 94682","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94701,"TargetID":94682,"Directional":false}]},{"ID":2593,"SourceStructureID":5528,"TargetStructureID":5860,"Label":"5528-5860 via Adherens from 97287 -> 97285","Type":"Adherens","Directional":false,"Links":[{"SourceID":97287,"TargetID":97285,"Directional":false}]},{"ID":2594,"SourceStructureID":5528,"TargetStructureID":5860,"Label":"5528-5860 via Gap Junction from 8290 -> 8249, 8778 -> 135718, 54725 -> 54724, 94830 -> 93722","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8290,"TargetID":8249,"Directional":false},{"SourceID":8778,"TargetID":135718,"Directional":false},{"SourceID":54725,"TargetID":54724,"Directional":false},{"SourceID":94830,"TargetID":93722,"Directional":false}]},{"ID":2595,"SourceStructureID":5528,"TargetStructureID":5860,"Label":"5528-5860 via Unknown from 97316 -> 97317","Type":"Unknown","Directional":false,"Links":[{"SourceID":97316,"TargetID":97317,"Directional":false}]},{"ID":2596,"SourceStructureID":5528,"TargetStructureID":6129,"Label":"5528-6129 via Adherens from 94294 -> 94295, 94411 -> 94412","Type":"Adherens","Directional":false,"Links":[{"SourceID":94294,"TargetID":94295,"Directional":false},{"SourceID":94411,"TargetID":94412,"Directional":false}]},{"ID":2597,"SourceStructureID":5528,"TargetStructureID":6129,"Label":"5528-6129 via Unknown from 93591 -> 93592, 93954 -> 93953, 94143 -> 94144, 94146 -> 94145, 94292 -> 94293, 94329 -> 94330, 94378 -> 94379, 95146 -> 95147, 95181 -> 95182","Type":"Unknown","Directional":false,"Links":[{"SourceID":93591,"TargetID":93592,"Directional":false},{"SourceID":93954,"TargetID":93953,"Directional":false},{"SourceID":94143,"TargetID":94144,"Directional":false},{"SourceID":94146,"TargetID":94145,"Directional":false},{"SourceID":94292,"TargetID":94293,"Directional":false},{"SourceID":94329,"TargetID":94330,"Directional":false},{"SourceID":94378,"TargetID":94379,"Directional":false},{"SourceID":95146,"TargetID":95147,"Directional":false},{"SourceID":95181,"TargetID":95182,"Directional":false}]},{"ID":2598,"SourceStructureID":7225,"TargetStructureID":5528,"Label":"7225-5528 via Gap Junction from 10026 -> 55031, 34318 -> 10028, 94494 -> 94493","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10026,"TargetID":55031,"Directional":false},{"SourceID":34318,"TargetID":10028,"Directional":false},{"SourceID":94494,"TargetID":94493,"Directional":false}]},{"ID":2599,"SourceStructureID":7564,"TargetStructureID":5528,"Label":"7564-5528 via Gap Junction from 84673 -> 84671","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84673,"TargetID":84671,"Directional":false}]},{"ID":2600,"SourceStructureID":5528,"TargetStructureID":7576,"Label":"5528-7576 via Adherens from 54885 -> 54886, 55029 -> 55028, 55046 -> 55045, 55095 -> 55096, 55929 -> 55928, 96847 -> 96846","Type":"Adherens","Directional":false,"Links":[{"SourceID":54885,"TargetID":54886,"Directional":false},{"SourceID":55029,"TargetID":55028,"Directional":false},{"SourceID":55046,"TargetID":55045,"Directional":false},{"SourceID":55095,"TargetID":55096,"Directional":false},{"SourceID":55929,"TargetID":55928,"Directional":false},{"SourceID":96847,"TargetID":96846,"Directional":false}]},{"ID":2601,"SourceStructureID":7576,"TargetStructureID":5528,"Label":"7576-5528 via Gap Junction from 54742 -> 54743, 54750 -> 54751, 54854 -> 54853, 55018 -> 55017, 55027 -> 55026, 55032 -> 55033, 55067 -> 55068, 92623 -> 92622","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54742,"TargetID":54743,"Directional":false},{"SourceID":54750,"TargetID":54751,"Directional":false},{"SourceID":54854,"TargetID":54853,"Directional":false},{"SourceID":55018,"TargetID":55017,"Directional":false},{"SourceID":55027,"TargetID":55026,"Directional":false},{"SourceID":55032,"TargetID":55033,"Directional":false},{"SourceID":55067,"TargetID":55068,"Directional":false},{"SourceID":92623,"TargetID":92622,"Directional":false}]},{"ID":2602,"SourceStructureID":5528,"TargetStructureID":7576,"Label":"5528-7576 via Unknown from 94407 -> 94408, 94535 -> 94534, 95057 -> 95056, 95461 -> 95460","Type":"Unknown","Directional":false,"Links":[{"SourceID":94407,"TargetID":94408,"Directional":false},{"SourceID":94535,"TargetID":94534,"Directional":false},{"SourceID":95057,"TargetID":95056,"Directional":false},{"SourceID":95461,"TargetID":95460,"Directional":false}]},{"ID":2603,"SourceStructureID":5528,"TargetStructureID":7594,"Label":"5528-7594 via Unknown from 95185 -> 95186","Type":"Unknown","Directional":false,"Links":[{"SourceID":95185,"TargetID":95186,"Directional":false}]},{"ID":2604,"SourceStructureID":25293,"TargetStructureID":5528,"Label":"25293-5528 via Adherens from 95656 -> 95655","Type":"Adherens","Directional":false,"Links":[{"SourceID":95656,"TargetID":95655,"Directional":false}]},{"ID":2605,"SourceStructureID":5528,"TargetStructureID":33217,"Label":"5528-33217 via Unknown from 94192 -> 94193","Type":"Unknown","Directional":false,"Links":[{"SourceID":94192,"TargetID":94193,"Directional":false}]},{"ID":2606,"SourceStructureID":5528,"TargetStructureID":43716,"Label":"5528-43716 via Adherens from 95170 -> 95180","Type":"Adherens","Directional":false,"Links":[{"SourceID":95170,"TargetID":95180,"Directional":false}]},{"ID":2607,"SourceStructureID":64414,"TargetStructureID":5528,"Label":"64414-5528 via Unknown from 93973 -> 93974","Type":"Unknown","Directional":false,"Links":[{"SourceID":93973,"TargetID":93974,"Directional":false}]},{"ID":2608,"SourceStructureID":68785,"TargetStructureID":5528,"Label":"68785-5528 via Adherens from 95129 -> 95130","Type":"Adherens","Directional":false,"Links":[{"SourceID":95129,"TargetID":95130,"Directional":false}]},{"ID":2609,"SourceStructureID":5528,"TargetStructureID":68793,"Label":"5528-68793 via Unknown from 95088 -> 95089","Type":"Unknown","Directional":false,"Links":[{"SourceID":95088,"TargetID":95089,"Directional":false}]},{"ID":2610,"SourceStructureID":82832,"TargetStructureID":5528,"Label":"82832-5528 via Adherens from 96264 -> 96265","Type":"Adherens","Directional":false,"Links":[{"SourceID":96264,"TargetID":96265,"Directional":false}]},{"ID":2611,"SourceStructureID":91376,"TargetStructureID":5528,"Label":"91376-5528 via Unknown from 133947 -> 95646","Type":"Unknown","Directional":false,"Links":[{"SourceID":133947,"TargetID":95646,"Directional":false}]},{"ID":2612,"SourceStructureID":5528,"TargetStructureID":93557,"Label":"5528-93557 via Unknown from 93560 -> 93561","Type":"Unknown","Directional":false,"Links":[{"SourceID":93560,"TargetID":93561,"Directional":false}]},{"ID":2613,"SourceStructureID":93563,"TargetStructureID":5528,"Label":"93563-5528 via Adherens from 93564 -> 93562","Type":"Adherens","Directional":false,"Links":[{"SourceID":93564,"TargetID":93562,"Directional":false}]},{"ID":2614,"SourceStructureID":5528,"TargetStructureID":93961,"Label":"5528-93961 via Unknown from 93960 -> 93963","Type":"Unknown","Directional":false,"Links":[{"SourceID":93960,"TargetID":93963,"Directional":false}]},{"ID":2615,"SourceStructureID":93966,"TargetStructureID":5528,"Label":"93966-5528 via Adherens from 93971 -> 93972","Type":"Adherens","Directional":false,"Links":[{"SourceID":93971,"TargetID":93972,"Directional":false}]},{"ID":2616,"SourceStructureID":5528,"TargetStructureID":93987,"Label":"5528-93987 via Gap Junction from 93584 -> 94016, 93989 -> 93990, 94151 -> 94152, 94174 -> 94173","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93584,"TargetID":94016,"Directional":false},{"SourceID":93989,"TargetID":93990,"Directional":false},{"SourceID":94151,"TargetID":94152,"Directional":false},{"SourceID":94174,"TargetID":94173,"Directional":false}]},{"ID":2617,"SourceStructureID":5528,"TargetStructureID":94012,"Label":"5528-94012 via Unknown from 93588 -> 94013","Type":"Unknown","Directional":false,"Links":[{"SourceID":93588,"TargetID":94013,"Directional":false}]},{"ID":2618,"SourceStructureID":5528,"TargetStructureID":94018,"Label":"5528-94018 via Adherens from 93586 -> 94019","Type":"Adherens","Directional":false,"Links":[{"SourceID":93586,"TargetID":94019,"Directional":false}]},{"ID":2619,"SourceStructureID":94027,"TargetStructureID":5528,"Label":"94027-5528 via Adherens from 94028 -> 93602","Type":"Adherens","Directional":false,"Links":[{"SourceID":94028,"TargetID":93602,"Directional":false}]},{"ID":2620,"SourceStructureID":5528,"TargetStructureID":94046,"Label":"5528-94046 via Unknown from 94121 -> 94122","Type":"Unknown","Directional":false,"Links":[{"SourceID":94121,"TargetID":94122,"Directional":false}]},{"ID":2621,"SourceStructureID":94130,"TargetStructureID":5528,"Label":"94130-5528 via Unknown from 94131 -> 94129","Type":"Unknown","Directional":false,"Links":[{"SourceID":94131,"TargetID":94129,"Directional":false}]},{"ID":2622,"SourceStructureID":5528,"TargetStructureID":94164,"Label":"5528-94164 via Unknown from 94163 -> 94364","Type":"Unknown","Directional":false,"Links":[{"SourceID":94163,"TargetID":94364,"Directional":false}]},{"ID":2623,"SourceStructureID":94165,"TargetStructureID":5528,"Label":"94165-5528 via Adherens from 94166 -> 94167","Type":"Adherens","Directional":false,"Links":[{"SourceID":94166,"TargetID":94167,"Directional":false}]},{"ID":2624,"SourceStructureID":94168,"TargetStructureID":5528,"Label":"94168-5528 via Unknown from 94170 -> 94169","Type":"Unknown","Directional":false,"Links":[{"SourceID":94170,"TargetID":94169,"Directional":false}]},{"ID":2625,"SourceStructureID":5528,"TargetStructureID":94178,"Label":"5528-94178 via Adherens from 94181 -> 94183","Type":"Adherens","Directional":false,"Links":[{"SourceID":94181,"TargetID":94183,"Directional":false}]},{"ID":2626,"SourceStructureID":94184,"TargetStructureID":5528,"Label":"94184-5528 via Adherens from 94185 -> 94186","Type":"Adherens","Directional":false,"Links":[{"SourceID":94185,"TargetID":94186,"Directional":false}]},{"ID":2627,"SourceStructureID":5528,"TargetStructureID":94184,"Label":"5528-94184 via Unknown from 94187 -> 94188","Type":"Unknown","Directional":false,"Links":[{"SourceID":94187,"TargetID":94188,"Directional":false}]},{"ID":2628,"SourceStructureID":5528,"TargetStructureID":94189,"Label":"5528-94189 via Unknown from 94190 -> 94191","Type":"Unknown","Directional":false,"Links":[{"SourceID":94190,"TargetID":94191,"Directional":false}]},{"ID":2629,"SourceStructureID":94194,"TargetStructureID":5528,"Label":"94194-5528 via Unknown from 94197 -> 94196","Type":"Unknown","Directional":false,"Links":[{"SourceID":94197,"TargetID":94196,"Directional":false}]},{"ID":2630,"SourceStructureID":94251,"TargetStructureID":5528,"Label":"94251-5528 via Unknown from 94254 -> 94196","Type":"Unknown","Directional":false,"Links":[{"SourceID":94254,"TargetID":94196,"Directional":false}]},{"ID":2631,"SourceStructureID":5528,"TargetStructureID":94270,"Label":"5528-94270 via Adherens from 94272 -> 94271","Type":"Adherens","Directional":false,"Links":[{"SourceID":94272,"TargetID":94271,"Directional":false}]},{"ID":2632,"SourceStructureID":94303,"TargetStructureID":5528,"Label":"94303-5528 via Adherens from 94306 -> 94307","Type":"Adherens","Directional":false,"Links":[{"SourceID":94306,"TargetID":94307,"Directional":false}]},{"ID":2633,"SourceStructureID":94312,"TargetStructureID":5528,"Label":"94312-5528 via Adherens from 94317 -> 94316, 94318 -> 94319","Type":"Adherens","Directional":false,"Links":[{"SourceID":94317,"TargetID":94316,"Directional":false},{"SourceID":94318,"TargetID":94319,"Directional":false}]},{"ID":2634,"SourceStructureID":94323,"TargetStructureID":5528,"Label":"94323-5528 via Gap Junction from 94324 -> 94325","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94324,"TargetID":94325,"Directional":false}]},{"ID":2635,"SourceStructureID":94326,"TargetStructureID":5528,"Label":"94326-5528 via Adherens from 94327 -> 94328","Type":"Adherens","Directional":false,"Links":[{"SourceID":94327,"TargetID":94328,"Directional":false}]},{"ID":2636,"SourceStructureID":5528,"TargetStructureID":94344,"Label":"5528-94344 via Adherens from 94343 -> 94345, 94383 -> 94384","Type":"Adherens","Directional":false,"Links":[{"SourceID":94343,"TargetID":94345,"Directional":false},{"SourceID":94383,"TargetID":94384,"Directional":false}]},{"ID":2637,"SourceStructureID":94349,"TargetStructureID":5528,"Label":"94349-5528 via Adherens from 94350 -> 94351","Type":"Adherens","Directional":false,"Links":[{"SourceID":94350,"TargetID":94351,"Directional":false}]},{"ID":2638,"SourceStructureID":94396,"TargetStructureID":5528,"Label":"94396-5528 via Unknown from 94397 -> 94398","Type":"Unknown","Directional":false,"Links":[{"SourceID":94397,"TargetID":94398,"Directional":false}]},{"ID":2639,"SourceStructureID":94482,"TargetStructureID":5528,"Label":"94482-5528 via Adherens from 94488 -> 94489","Type":"Adherens","Directional":false,"Links":[{"SourceID":94488,"TargetID":94489,"Directional":false}]},{"ID":2640,"SourceStructureID":5528,"TargetStructureID":94497,"Label":"5528-94497 via Adherens from 94498 -> 94499","Type":"Adherens","Directional":false,"Links":[{"SourceID":94498,"TargetID":94499,"Directional":false}]},{"ID":2641,"SourceStructureID":5528,"TargetStructureID":94531,"Label":"5528-94531 via Unknown from 94532 -> 94533","Type":"Unknown","Directional":false,"Links":[{"SourceID":94532,"TargetID":94533,"Directional":false}]},{"ID":2642,"SourceStructureID":94646,"TargetStructureID":5528,"Label":"94646-5528 via Unknown from 94647 -> 94648","Type":"Unknown","Directional":false,"Links":[{"SourceID":94647,"TargetID":94648,"Directional":false}]},{"ID":2643,"SourceStructureID":5528,"TargetStructureID":94675,"Label":"5528-94675 via Unknown from 94676 -> 94678","Type":"Unknown","Directional":false,"Links":[{"SourceID":94676,"TargetID":94678,"Directional":false}]},{"ID":2644,"SourceStructureID":94713,"TargetStructureID":5528,"Label":"94713-5528 via Adherens from 94716 -> 94717","Type":"Adherens","Directional":false,"Links":[{"SourceID":94716,"TargetID":94717,"Directional":false}]},{"ID":2645,"SourceStructureID":5528,"TargetStructureID":94722,"Label":"5528-94722 via Unknown from 94725 -> 94726","Type":"Unknown","Directional":false,"Links":[{"SourceID":94725,"TargetID":94726,"Directional":false}]},{"ID":2646,"SourceStructureID":94794,"TargetStructureID":5528,"Label":"94794-5528 via Unknown from 94809 -> 94810","Type":"Unknown","Directional":false,"Links":[{"SourceID":94809,"TargetID":94810,"Directional":false}]},{"ID":2647,"SourceStructureID":94806,"TargetStructureID":5528,"Label":"94806-5528 via Unknown from 94807 -> 94808","Type":"Unknown","Directional":false,"Links":[{"SourceID":94807,"TargetID":94808,"Directional":false}]},{"ID":2648,"SourceStructureID":94811,"TargetStructureID":5528,"Label":"94811-5528 via Unknown from 94812 -> 94813","Type":"Unknown","Directional":false,"Links":[{"SourceID":94812,"TargetID":94813,"Directional":false}]},{"ID":2649,"SourceStructureID":94834,"TargetStructureID":5528,"Label":"94834-5528 via Unknown from 94835 -> 94836","Type":"Unknown","Directional":false,"Links":[{"SourceID":94835,"TargetID":94836,"Directional":false}]},{"ID":2650,"SourceStructureID":94838,"TargetStructureID":5528,"Label":"94838-5528 via Adherens from 94840 -> 94841, 94863 -> 94864","Type":"Adherens","Directional":false,"Links":[{"SourceID":94840,"TargetID":94841,"Directional":false},{"SourceID":94863,"TargetID":94864,"Directional":false}]},{"ID":2651,"SourceStructureID":94838,"TargetStructureID":5528,"Label":"94838-5528 via Unknown from 94842 -> 94843","Type":"Unknown","Directional":false,"Links":[{"SourceID":94842,"TargetID":94843,"Directional":false}]},{"ID":2652,"SourceStructureID":5528,"TargetStructureID":94848,"Label":"5528-94848 via Unknown from 94860 -> 94861","Type":"Unknown","Directional":false,"Links":[{"SourceID":94860,"TargetID":94861,"Directional":false}]},{"ID":2653,"SourceStructureID":95062,"TargetStructureID":5528,"Label":"95062-5528 via Adherens from 95064 -> 95065","Type":"Adherens","Directional":false,"Links":[{"SourceID":95064,"TargetID":95065,"Directional":false}]},{"ID":2654,"SourceStructureID":5528,"TargetStructureID":95066,"Label":"5528-95066 via Adherens from 95067 -> 95068","Type":"Adherens","Directional":false,"Links":[{"SourceID":95067,"TargetID":95068,"Directional":false}]},{"ID":2655,"SourceStructureID":95070,"TargetStructureID":5528,"Label":"95070-5528 via Unknown from 95077 -> 95079","Type":"Unknown","Directional":false,"Links":[{"SourceID":95077,"TargetID":95079,"Directional":false}]},{"ID":2656,"SourceStructureID":5528,"TargetStructureID":95131,"Label":"5528-95131 via Adherens from 68789 -> 95143, 95145 -> 68788","Type":"Adherens","Directional":false,"Links":[{"SourceID":68789,"TargetID":95143,"Directional":false},{"SourceID":95145,"TargetID":68788,"Directional":false}]},{"ID":2657,"SourceStructureID":5528,"TargetStructureID":95131,"Label":"5528-95131 via Unknown from 95146 -> 95148","Type":"Unknown","Directional":false,"Links":[{"SourceID":95146,"TargetID":95148,"Directional":false}]},{"ID":2658,"SourceStructureID":95157,"TargetStructureID":5528,"Label":"95157-5528 via Unknown from 95158 -> 95156","Type":"Unknown","Directional":false,"Links":[{"SourceID":95158,"TargetID":95156,"Directional":false}]},{"ID":2659,"SourceStructureID":95195,"TargetStructureID":5528,"Label":"95195-5528 via Adherens from 95471 -> 95472","Type":"Adherens","Directional":false,"Links":[{"SourceID":95471,"TargetID":95472,"Directional":false}]},{"ID":2660,"SourceStructureID":5528,"TargetStructureID":95623,"Label":"5528-95623 via Adherens from 95628 -> 95629","Type":"Adherens","Directional":false,"Links":[{"SourceID":95628,"TargetID":95629,"Directional":false}]},{"ID":2661,"SourceStructureID":5528,"TargetStructureID":95623,"Label":"5528-95623 via Gap Junction from 95624 -> 95625","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95624,"TargetID":95625,"Directional":false}]},{"ID":2662,"SourceStructureID":95640,"TargetStructureID":5528,"Label":"95640-5528 via Unknown from 95642 -> 95641","Type":"Unknown","Directional":false,"Links":[{"SourceID":95642,"TargetID":95641,"Directional":false}]},{"ID":2663,"SourceStructureID":95693,"TargetStructureID":5528,"Label":"95693-5528 via Unknown from 95694 -> 95692","Type":"Unknown","Directional":false,"Links":[{"SourceID":95694,"TargetID":95692,"Directional":false}]},{"ID":2664,"SourceStructureID":5528,"TargetStructureID":96143,"Label":"5528-96143 via Unknown from 96160 -> 96161","Type":"Unknown","Directional":false,"Links":[{"SourceID":96160,"TargetID":96161,"Directional":false}]},{"ID":2665,"SourceStructureID":96170,"TargetStructureID":5528,"Label":"96170-5528 via Adherens from 96171 -> 96169","Type":"Adherens","Directional":false,"Links":[{"SourceID":96171,"TargetID":96169,"Directional":false}]},{"ID":2666,"SourceStructureID":5528,"TargetStructureID":96189,"Label":"5528-96189 via Adherens from 96192 -> 96193","Type":"Adherens","Directional":false,"Links":[{"SourceID":96192,"TargetID":96193,"Directional":false}]},{"ID":2667,"SourceStructureID":96194,"TargetStructureID":5528,"Label":"96194-5528 via Unknown from 96195 -> 96196","Type":"Unknown","Directional":false,"Links":[{"SourceID":96195,"TargetID":96196,"Directional":false}]},{"ID":2668,"SourceStructureID":5528,"TargetStructureID":96201,"Label":"5528-96201 via Gap Junction from 96205 -> 96204","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96205,"TargetID":96204,"Directional":false}]},{"ID":2669,"SourceStructureID":96210,"TargetStructureID":5528,"Label":"96210-5528 via Unknown from 96211 -> 96209","Type":"Unknown","Directional":false,"Links":[{"SourceID":96211,"TargetID":96209,"Directional":false}]},{"ID":2670,"SourceStructureID":5528,"TargetStructureID":96220,"Label":"5528-96220 via Unknown from 96219 -> 96223","Type":"Unknown","Directional":false,"Links":[{"SourceID":96219,"TargetID":96223,"Directional":false}]},{"ID":2671,"SourceStructureID":5528,"TargetStructureID":96240,"Label":"5528-96240 via Unknown from 96260 -> 96261, 96262 -> 96263","Type":"Unknown","Directional":false,"Links":[{"SourceID":96260,"TargetID":96261,"Directional":false},{"SourceID":96262,"TargetID":96263,"Directional":false}]},{"ID":2672,"SourceStructureID":96270,"TargetStructureID":5528,"Label":"96270-5528 via Adherens from 96275 -> 96274","Type":"Adherens","Directional":false,"Links":[{"SourceID":96275,"TargetID":96274,"Directional":false}]},{"ID":2673,"SourceStructureID":5528,"TargetStructureID":96290,"Label":"5528-96290 via Adherens from 96842 -> 96843","Type":"Adherens","Directional":false,"Links":[{"SourceID":96842,"TargetID":96843,"Directional":false}]},{"ID":2674,"SourceStructureID":5528,"TargetStructureID":96290,"Label":"5528-96290 via Gap Junction from 96845 -> 96844","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96845,"TargetID":96844,"Directional":false}]},{"ID":2675,"SourceStructureID":96303,"TargetStructureID":5528,"Label":"96303-5528 via Adherens from 96840 -> 96841","Type":"Adherens","Directional":false,"Links":[{"SourceID":96840,"TargetID":96841,"Directional":false}]},{"ID":2676,"SourceStructureID":96883,"TargetStructureID":5528,"Label":"96883-5528 via Adherens from 96888 -> 96889, 96890 -> 96887","Type":"Adherens","Directional":false,"Links":[{"SourceID":96888,"TargetID":96889,"Directional":false},{"SourceID":96890,"TargetID":96887,"Directional":false}]},{"ID":2677,"SourceStructureID":96893,"TargetStructureID":5528,"Label":"96893-5528 via Adherens from 96917 -> 96916","Type":"Adherens","Directional":false,"Links":[{"SourceID":96917,"TargetID":96916,"Directional":false}]},{"ID":2678,"SourceStructureID":96898,"TargetStructureID":5528,"Label":"96898-5528 via Gap Junction from 96901 -> 96902","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96901,"TargetID":96902,"Directional":false}]},{"ID":2679,"SourceStructureID":96914,"TargetStructureID":5528,"Label":"96914-5528 via Adherens from 96915 -> 8293","Type":"Adherens","Directional":false,"Links":[{"SourceID":96915,"TargetID":8293,"Directional":false}]},{"ID":2680,"SourceStructureID":97290,"TargetStructureID":5528,"Label":"97290-5528 via Adherens from 97291 -> 97292","Type":"Adherens","Directional":false,"Links":[{"SourceID":97291,"TargetID":97292,"Directional":false}]},{"ID":2681,"SourceStructureID":5528,"TargetStructureID":97310,"Label":"5528-97310 via Adherens from 97312 -> 97313","Type":"Adherens","Directional":false,"Links":[{"SourceID":97312,"TargetID":97313,"Directional":false}]},{"ID":2682,"SourceStructureID":5530,"TargetStructureID":5530,"Label":"5530-5530 via Adherens from 125895 -> 125896, 135588 -> 135587, 135603 -> 135604","Type":"Adherens","Directional":false,"Links":[{"SourceID":125895,"TargetID":125896,"Directional":false},{"SourceID":135588,"TargetID":135587,"Directional":false},{"SourceID":135603,"TargetID":135604,"Directional":false}]},{"ID":2683,"SourceStructureID":5530,"TargetStructureID":5530,"Label":"5530-5530 via Gap Junction from 44246 -> 44245, 74588 -> 74587, 80973 -> 50905, 81253 -> 81254, 81568 -> 54071, 81865 -> 81870","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44246,"TargetID":44245,"Directional":false},{"SourceID":74588,"TargetID":74587,"Directional":false},{"SourceID":80973,"TargetID":50905,"Directional":false},{"SourceID":81253,"TargetID":81254,"Directional":false},{"SourceID":81568,"TargetID":54071,"Directional":false},{"SourceID":81865,"TargetID":81870,"Directional":false}]},{"ID":2684,"SourceStructureID":5531,"TargetStructureID":5530,"Label":"5531-5530 via Adherens from 82571 -> 81621","Type":"Adherens","Directional":false,"Links":[{"SourceID":82571,"TargetID":81621,"Directional":false}]},{"ID":2685,"SourceStructureID":5534,"TargetStructureID":5530,"Label":"5534-5530 via Adherens from 135581 -> 135580","Type":"Adherens","Directional":false,"Links":[{"SourceID":135581,"TargetID":135580,"Directional":false}]},{"ID":2686,"SourceStructureID":5530,"TargetStructureID":5534,"Label":"5530-5534 via Gap Junction from 38271 -> 77931, 45323 -> 45322, 76798 -> 76797, 82053 -> 82054, 82056 -> 82055, 134307 -> 134308","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38271,"TargetID":77931,"Directional":false},{"SourceID":45323,"TargetID":45322,"Directional":false},{"SourceID":76798,"TargetID":76797,"Directional":false},{"SourceID":82053,"TargetID":82054,"Directional":false},{"SourceID":82056,"TargetID":82055,"Directional":false},{"SourceID":134307,"TargetID":134308,"Directional":false}]},{"ID":2687,"SourceStructureID":5530,"TargetStructureID":5537,"Label":"5530-5537 via Adherens from 81221 -> 81222, 135574 -> 135573","Type":"Adherens","Directional":false,"Links":[{"SourceID":81221,"TargetID":81222,"Directional":false},{"SourceID":135574,"TargetID":135573,"Directional":false}]},{"ID":2688,"SourceStructureID":5530,"TargetStructureID":5537,"Label":"5530-5537 via Gap Junction from 81219 -> 81220, 81261 -> 81260, 134568 -> 134569","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81219,"TargetID":81220,"Directional":false},{"SourceID":81261,"TargetID":81260,"Directional":false},{"SourceID":134568,"TargetID":134569,"Directional":false}]},{"ID":2689,"SourceStructureID":5530,"TargetStructureID":5601,"Label":"5530-5601 via Gap Junction from 45399 -> 38527, 54097 -> 54096, 81266 -> 81265","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45399,"TargetID":38527,"Directional":false},{"SourceID":54097,"TargetID":54096,"Directional":false},{"SourceID":81266,"TargetID":81265,"Directional":false}]},{"ID":2690,"SourceStructureID":5530,"TargetStructureID":5860,"Label":"5530-5860 via Adherens from 126466 -> 126467","Type":"Adherens","Directional":false,"Links":[{"SourceID":126466,"TargetID":126467,"Directional":false}]},{"ID":2691,"SourceStructureID":5530,"TargetStructureID":5860,"Label":"5530-5860 via Gap Junction from 29865 -> 29864, 30115 -> 30116, 79573 -> 79574, 80188 -> 82437, 80707 -> 80706, 82881 -> 81028","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29865,"TargetID":29864,"Directional":false},{"SourceID":30115,"TargetID":30116,"Directional":false},{"SourceID":79573,"TargetID":79574,"Directional":false},{"SourceID":80188,"TargetID":82437,"Directional":false},{"SourceID":80707,"TargetID":80706,"Directional":false},{"SourceID":82881,"TargetID":81028,"Directional":false}]},{"ID":2692,"SourceStructureID":5530,"TargetStructureID":6117,"Label":"5530-6117 via Gap Junction from 46332 -> 30905, 80449 -> 82856","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46332,"TargetID":30905,"Directional":false},{"SourceID":80449,"TargetID":82856,"Directional":false}]},{"ID":2693,"SourceStructureID":5530,"TargetStructureID":7564,"Label":"5530-7564 via Adherens from 75895 -> 75896","Type":"Adherens","Directional":false,"Links":[{"SourceID":75895,"TargetID":75896,"Directional":false}]},{"ID":2694,"SourceStructureID":5530,"TargetStructureID":7564,"Label":"5530-7564 via Gap Junction from 29174 -> 29173, 76741 -> 76740, 77648 -> 77649","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29174,"TargetID":29173,"Directional":false},{"SourceID":76741,"TargetID":76740,"Directional":false},{"SourceID":77648,"TargetID":77649,"Directional":false}]},{"ID":2695,"SourceStructureID":5530,"TargetStructureID":9769,"Label":"5530-9769 via Adherens from 74661 -> 74660, 126447 -> 126448","Type":"Adherens","Directional":false,"Links":[{"SourceID":74661,"TargetID":74660,"Directional":false},{"SourceID":126447,"TargetID":126448,"Directional":false}]},{"ID":2696,"SourceStructureID":9769,"TargetStructureID":5530,"Label":"9769-5530 via Unknown from 74607 -> 74606, 82886 -> 81144","Type":"Unknown","Directional":false,"Links":[{"SourceID":74607,"TargetID":74606,"Directional":false},{"SourceID":82886,"TargetID":81144,"Directional":false}]},{"ID":2697,"SourceStructureID":5530,"TargetStructureID":10596,"Label":"5530-10596 via Adherens from 76525 -> 82375","Type":"Adherens","Directional":false,"Links":[{"SourceID":76525,"TargetID":82375,"Directional":false}]},{"ID":2698,"SourceStructureID":10596,"TargetStructureID":5530,"Label":"10596-5530 via Unknown from 82621 -> 76547","Type":"Unknown","Directional":false,"Links":[{"SourceID":82621,"TargetID":76547,"Directional":false}]},{"ID":2699,"SourceStructureID":12564,"TargetStructureID":5530,"Label":"12564-5530 via Adherens from 76825 -> 76826","Type":"Adherens","Directional":false,"Links":[{"SourceID":76825,"TargetID":76826,"Directional":false}]},{"ID":2700,"SourceStructureID":5530,"TargetStructureID":18693,"Label":"5530-18693 via Unknown from 77628 -> 77629","Type":"Unknown","Directional":false,"Links":[{"SourceID":77628,"TargetID":77629,"Directional":false}]},{"ID":2701,"SourceStructureID":23512,"TargetStructureID":5530,"Label":"23512-5530 via Unknown from 82618 -> 76524","Type":"Unknown","Directional":false,"Links":[{"SourceID":82618,"TargetID":76524,"Directional":false}]},{"ID":2702,"SourceStructureID":5530,"TargetStructureID":23836,"Label":"5530-23836 via Adherens from 81177 -> 81176, 81178 -> 81179, 81185 -> 81184","Type":"Adherens","Directional":false,"Links":[{"SourceID":81177,"TargetID":81176,"Directional":false},{"SourceID":81178,"TargetID":81179,"Directional":false},{"SourceID":81185,"TargetID":81184,"Directional":false}]},{"ID":2703,"SourceStructureID":23836,"TargetStructureID":5530,"Label":"23836-5530 via Unknown from 83002 -> 82049","Type":"Unknown","Directional":false,"Links":[{"SourceID":83002,"TargetID":82049,"Directional":false}]},{"ID":2704,"SourceStructureID":5530,"TargetStructureID":25293,"Label":"5530-25293 via Unknown from 81118 -> 82883","Type":"Unknown","Directional":false,"Links":[{"SourceID":81118,"TargetID":82883,"Directional":false}]},{"ID":2705,"SourceStructureID":5530,"TargetStructureID":34315,"Label":"5530-34315 via Adherens from 81205 -> 81204","Type":"Adherens","Directional":false,"Links":[{"SourceID":81205,"TargetID":81204,"Directional":false}]},{"ID":2706,"SourceStructureID":35240,"TargetStructureID":5530,"Label":"35240-5530 via Adherens from 126441 -> 126442","Type":"Adherens","Directional":false,"Links":[{"SourceID":126441,"TargetID":126442,"Directional":false}]},{"ID":2707,"SourceStructureID":5530,"TargetStructureID":35240,"Label":"5530-35240 via Unknown from 80177 -> 82838, 82425 -> 79271, 82836 -> 79547, 82837 -> 79548","Type":"Unknown","Directional":false,"Links":[{"SourceID":80177,"TargetID":82838,"Directional":false},{"SourceID":82425,"TargetID":79271,"Directional":false},{"SourceID":82836,"TargetID":79547,"Directional":false},{"SourceID":82837,"TargetID":79548,"Directional":false}]},{"ID":2708,"SourceStructureID":35539,"TargetStructureID":5530,"Label":"35539-5530 via Unknown from 82823 -> 79054","Type":"Unknown","Directional":false,"Links":[{"SourceID":82823,"TargetID":79054,"Directional":false}]},{"ID":2709,"SourceStructureID":5530,"TargetStructureID":40039,"Label":"5530-40039 via Adherens from 82524 -> 82525, 84360 -> 84359","Type":"Adherens","Directional":false,"Links":[{"SourceID":82524,"TargetID":82525,"Directional":false},{"SourceID":84360,"TargetID":84359,"Directional":false}]},{"ID":2710,"SourceStructureID":40039,"TargetStructureID":5530,"Label":"40039-5530 via Conventional from 82610 -> 75773","Type":"Conventional","Directional":false,"Links":[{"SourceID":82610,"TargetID":75773,"Directional":false}]},{"ID":2711,"SourceStructureID":40039,"TargetStructureID":5530,"Label":"40039-5530 via Unknown from 82379 -> 80508, 82511 -> 80567, 82673 -> 82674, 82844 -> 80200","Type":"Unknown","Directional":false,"Links":[{"SourceID":82379,"TargetID":80508,"Directional":false},{"SourceID":82511,"TargetID":80567,"Directional":false},{"SourceID":82673,"TargetID":82674,"Directional":false},{"SourceID":82844,"TargetID":80200,"Directional":false}]},{"ID":2712,"SourceStructureID":44237,"TargetStructureID":5530,"Label":"44237-5530 via Adherens from 77354 -> 77355","Type":"Adherens","Directional":false,"Links":[{"SourceID":77354,"TargetID":77355,"Directional":false}]},{"ID":2713,"SourceStructureID":5530,"TargetStructureID":45220,"Label":"5530-45220 via Unknown from 81214 -> 82896, 82900 -> 81611","Type":"Unknown","Directional":false,"Links":[{"SourceID":81214,"TargetID":82896,"Directional":false},{"SourceID":82900,"TargetID":81611,"Directional":false}]},{"ID":2714,"SourceStructureID":69953,"TargetStructureID":5530,"Label":"69953-5530 via Unknown from 82850 -> 80405, 126462 -> 126461","Type":"Unknown","Directional":false,"Links":[{"SourceID":82850,"TargetID":80405,"Directional":false},{"SourceID":126462,"TargetID":126461,"Directional":false}]},{"ID":2715,"SourceStructureID":74056,"TargetStructureID":5530,"Label":"74056-5530 via Adherens from 81710 -> 81711","Type":"Adherens","Directional":false,"Links":[{"SourceID":81710,"TargetID":81711,"Directional":false}]},{"ID":2716,"SourceStructureID":5530,"TargetStructureID":74213,"Label":"5530-74213 via Unknown from 74612 -> 74613","Type":"Unknown","Directional":false,"Links":[{"SourceID":74612,"TargetID":74613,"Directional":false}]},{"ID":2717,"SourceStructureID":74225,"TargetStructureID":5530,"Label":"74225-5530 via Unknown from 74227 -> 74226","Type":"Unknown","Directional":false,"Links":[{"SourceID":74227,"TargetID":74226,"Directional":false}]},{"ID":2718,"SourceStructureID":5530,"TargetStructureID":74584,"Label":"5530-74584 via Adherens from 82316 -> 74585","Type":"Adherens","Directional":false,"Links":[{"SourceID":82316,"TargetID":74585,"Directional":false}]},{"ID":2719,"SourceStructureID":74694,"TargetStructureID":5530,"Label":"74694-5530 via Unknown from 74715 -> 74718","Type":"Unknown","Directional":false,"Links":[{"SourceID":74715,"TargetID":74718,"Directional":false}]},{"ID":2720,"SourceStructureID":5530,"TargetStructureID":75001,"Label":"5530-75001 via Unknown from 77325 -> 82641, 82424 -> 75778","Type":"Unknown","Directional":false,"Links":[{"SourceID":77325,"TargetID":82641,"Directional":false},{"SourceID":82424,"TargetID":75778,"Directional":false}]},{"ID":2721,"SourceStructureID":75488,"TargetStructureID":5530,"Label":"75488-5530 via Unknown from 82601 -> 75495","Type":"Unknown","Directional":false,"Links":[{"SourceID":82601,"TargetID":75495,"Directional":false}]},{"ID":2722,"SourceStructureID":5530,"TargetStructureID":75512,"Label":"5530-75512 via Adherens from 75514 -> 75513","Type":"Adherens","Directional":false,"Links":[{"SourceID":75514,"TargetID":75513,"Directional":false}]},{"ID":2723,"SourceStructureID":5530,"TargetStructureID":75515,"Label":"5530-75515 via Unknown from 75516 -> 82602","Type":"Unknown","Directional":false,"Links":[{"SourceID":75516,"TargetID":82602,"Directional":false}]},{"ID":2724,"SourceStructureID":75796,"TargetStructureID":5530,"Label":"75796-5530 via Adherens from 125904 -> 125903, 125906 -> 125907","Type":"Adherens","Directional":false,"Links":[{"SourceID":125904,"TargetID":125903,"Directional":false},{"SourceID":125906,"TargetID":125907,"Directional":false}]},{"ID":2725,"SourceStructureID":75796,"TargetStructureID":5530,"Label":"75796-5530 via Unknown from 82611 -> 75809","Type":"Unknown","Directional":false,"Links":[{"SourceID":82611,"TargetID":75809,"Directional":false}]},{"ID":2726,"SourceStructureID":75915,"TargetStructureID":5530,"Label":"75915-5530 via Unknown from 115791 -> 75916","Type":"Unknown","Directional":false,"Links":[{"SourceID":115791,"TargetID":75916,"Directional":false}]},{"ID":2727,"SourceStructureID":5530,"TargetStructureID":76530,"Label":"5530-76530 via Unknown from 76551 -> 82627","Type":"Unknown","Directional":false,"Links":[{"SourceID":76551,"TargetID":82627,"Directional":false}]},{"ID":2728,"SourceStructureID":76771,"TargetStructureID":5530,"Label":"76771-5530 via Unknown from 82537 -> 76774","Type":"Unknown","Directional":false,"Links":[{"SourceID":82537,"TargetID":76774,"Directional":false}]},{"ID":2729,"SourceStructureID":77329,"TargetStructureID":5530,"Label":"77329-5530 via Adherens from 77330 -> 77331","Type":"Adherens","Directional":false,"Links":[{"SourceID":77330,"TargetID":77331,"Directional":false}]},{"ID":2730,"SourceStructureID":77329,"TargetStructureID":5530,"Label":"77329-5530 via Unknown from 82651 -> 77327","Type":"Unknown","Directional":false,"Links":[{"SourceID":82651,"TargetID":77327,"Directional":false}]},{"ID":2731,"SourceStructureID":77332,"TargetStructureID":5530,"Label":"77332-5530 via Adherens from 77335 -> 77336","Type":"Adherens","Directional":false,"Links":[{"SourceID":77335,"TargetID":77336,"Directional":false}]},{"ID":2732,"SourceStructureID":5530,"TargetStructureID":77332,"Label":"5530-77332 via Unknown from 77353 -> 82652","Type":"Unknown","Directional":false,"Links":[{"SourceID":77353,"TargetID":82652,"Directional":false}]},{"ID":2733,"SourceStructureID":5530,"TargetStructureID":77393,"Label":"5530-77393 via Unknown from 77396 -> 82661","Type":"Unknown","Directional":false,"Links":[{"SourceID":77396,"TargetID":82661,"Directional":false}]},{"ID":2734,"SourceStructureID":77407,"TargetStructureID":5530,"Label":"77407-5530 via Unknown from 82675 -> 77410","Type":"Unknown","Directional":false,"Links":[{"SourceID":82675,"TargetID":77410,"Directional":false}]},{"ID":2735,"SourceStructureID":5530,"TargetStructureID":77412,"Label":"5530-77412 via Unknown from 77618 -> 82689","Type":"Unknown","Directional":false,"Links":[{"SourceID":77618,"TargetID":82689,"Directional":false}]},{"ID":2736,"SourceStructureID":5530,"TargetStructureID":77632,"Label":"5530-77632 via Unknown from 77636 -> 82697","Type":"Unknown","Directional":false,"Links":[{"SourceID":77636,"TargetID":82697,"Directional":false}]},{"ID":2737,"SourceStructureID":77914,"TargetStructureID":5530,"Label":"77914-5530 via Adherens from 77915 -> 77913","Type":"Adherens","Directional":false,"Links":[{"SourceID":77915,"TargetID":77913,"Directional":false}]},{"ID":2738,"SourceStructureID":5530,"TargetStructureID":77932,"Label":"5530-77932 via Adherens from 77935 -> 77936","Type":"Adherens","Directional":false,"Links":[{"SourceID":77935,"TargetID":77936,"Directional":false}]},{"ID":2739,"SourceStructureID":5530,"TargetStructureID":79073,"Label":"5530-79073 via Unknown from 79098 -> 82829","Type":"Unknown","Directional":false,"Links":[{"SourceID":79098,"TargetID":82829,"Directional":false}]},{"ID":2740,"SourceStructureID":5530,"TargetStructureID":79106,"Label":"5530-79106 via Unknown from 79117 -> 82377","Type":"Unknown","Directional":false,"Links":[{"SourceID":79117,"TargetID":82377,"Directional":false}]},{"ID":2741,"SourceStructureID":5530,"TargetStructureID":79152,"Label":"5530-79152 via Adherens from 79153 -> 79154","Type":"Adherens","Directional":false,"Links":[{"SourceID":79153,"TargetID":79154,"Directional":false}]},{"ID":2742,"SourceStructureID":79159,"TargetStructureID":5530,"Label":"79159-5530 via Adherens from 79162 -> 79163","Type":"Adherens","Directional":false,"Links":[{"SourceID":79162,"TargetID":79163,"Directional":false}]},{"ID":2743,"SourceStructureID":79159,"TargetStructureID":5530,"Label":"79159-5530 via Unknown from 82857 -> 80623","Type":"Unknown","Directional":false,"Links":[{"SourceID":82857,"TargetID":80623,"Directional":false}]},{"ID":2744,"SourceStructureID":79256,"TargetStructureID":5530,"Label":"79256-5530 via Adherens from 79262 -> 79263","Type":"Adherens","Directional":false,"Links":[{"SourceID":79262,"TargetID":79263,"Directional":false}]},{"ID":2745,"SourceStructureID":79256,"TargetStructureID":5530,"Label":"79256-5530 via Unknown from 134559 -> 79258","Type":"Unknown","Directional":false,"Links":[{"SourceID":134559,"TargetID":79258,"Directional":false}]},{"ID":2746,"SourceStructureID":5530,"TargetStructureID":79551,"Label":"5530-79551 via Adherens from 126451 -> 126452","Type":"Adherens","Directional":false,"Links":[{"SourceID":126451,"TargetID":126452,"Directional":false}]},{"ID":2747,"SourceStructureID":80180,"TargetStructureID":5530,"Label":"80180-5530 via Unknown from 82841 -> 80181","Type":"Unknown","Directional":false,"Links":[{"SourceID":82841,"TargetID":80181,"Directional":false}]},{"ID":2748,"SourceStructureID":80276,"TargetStructureID":5530,"Label":"80276-5530 via Unknown from 82847 -> 80314","Type":"Unknown","Directional":false,"Links":[{"SourceID":82847,"TargetID":80314,"Directional":false}]},{"ID":2749,"SourceStructureID":80422,"TargetStructureID":5530,"Label":"80422-5530 via Adherens from 80423 -> 80424","Type":"Adherens","Directional":false,"Links":[{"SourceID":80423,"TargetID":80424,"Directional":false}]},{"ID":2750,"SourceStructureID":5530,"TargetStructureID":80495,"Label":"5530-80495 via Adherens from 126455 -> 126456","Type":"Adherens","Directional":false,"Links":[{"SourceID":126455,"TargetID":126456,"Directional":false}]},{"ID":2751,"SourceStructureID":5530,"TargetStructureID":80602,"Label":"5530-80602 via Unknown from 46335 -> 80603","Type":"Unknown","Directional":false,"Links":[{"SourceID":46335,"TargetID":80603,"Directional":false}]},{"ID":2752,"SourceStructureID":80607,"TargetStructureID":5530,"Label":"80607-5530 via Unknown from 82438 -> 80598","Type":"Unknown","Directional":false,"Links":[{"SourceID":82438,"TargetID":80598,"Directional":false}]},{"ID":2753,"SourceStructureID":5530,"TargetStructureID":80609,"Label":"5530-80609 via Unknown from 46338 -> 80610","Type":"Unknown","Directional":false,"Links":[{"SourceID":46338,"TargetID":80610,"Directional":false}]},{"ID":2754,"SourceStructureID":80977,"TargetStructureID":5530,"Label":"80977-5530 via Adherens from 80978 -> 80979","Type":"Adherens","Directional":false,"Links":[{"SourceID":80978,"TargetID":80979,"Directional":false}]},{"ID":2755,"SourceStructureID":80983,"TargetStructureID":5530,"Label":"80983-5530 via Adherens from 80984 -> 80985","Type":"Adherens","Directional":false,"Links":[{"SourceID":80984,"TargetID":80985,"Directional":false}]},{"ID":2756,"SourceStructureID":5530,"TargetStructureID":80997,"Label":"5530-80997 via Unknown from 80998 -> 82879","Type":"Unknown","Directional":false,"Links":[{"SourceID":80998,"TargetID":82879,"Directional":false}]},{"ID":2757,"SourceStructureID":81008,"TargetStructureID":5530,"Label":"81008-5530 via Unknown from 82880 -> 81016","Type":"Unknown","Directional":false,"Links":[{"SourceID":82880,"TargetID":81016,"Directional":false}]},{"ID":2758,"SourceStructureID":5530,"TargetStructureID":81142,"Label":"5530-81142 via Unknown from 81143 -> 82526","Type":"Unknown","Directional":false,"Links":[{"SourceID":81143,"TargetID":82526,"Directional":false}]},{"ID":2759,"SourceStructureID":5530,"TargetStructureID":81566,"Label":"5530-81566 via Adherens from 126470 -> 126471","Type":"Adherens","Directional":false,"Links":[{"SourceID":126470,"TargetID":126471,"Directional":false}]},{"ID":2760,"SourceStructureID":81566,"TargetStructureID":5530,"Label":"81566-5530 via Unknown from 82899 -> 81579","Type":"Unknown","Directional":false,"Links":[{"SourceID":82899,"TargetID":81579,"Directional":false}]},{"ID":2761,"SourceStructureID":81618,"TargetStructureID":5530,"Label":"81618-5530 via Adherens from 81619 -> 81620","Type":"Adherens","Directional":false,"Links":[{"SourceID":81619,"TargetID":81620,"Directional":false}]},{"ID":2762,"SourceStructureID":5530,"TargetStructureID":81622,"Label":"5530-81622 via Unknown from 81627 -> 82990","Type":"Unknown","Directional":false,"Links":[{"SourceID":81627,"TargetID":82990,"Directional":false}]},{"ID":2763,"SourceStructureID":5530,"TargetStructureID":81629,"Label":"5530-81629 via Unknown from 81628 -> 82991","Type":"Unknown","Directional":false,"Links":[{"SourceID":81628,"TargetID":82991,"Directional":false}]},{"ID":2764,"SourceStructureID":82046,"TargetStructureID":5530,"Label":"82046-5530 via Adherens from 82047 -> 82048","Type":"Adherens","Directional":false,"Links":[{"SourceID":82047,"TargetID":82048,"Directional":false}]},{"ID":2765,"SourceStructureID":82046,"TargetStructureID":5530,"Label":"82046-5530 via Unknown from 83001 -> 81884","Type":"Unknown","Directional":false,"Links":[{"SourceID":83001,"TargetID":81884,"Directional":false}]},{"ID":2766,"SourceStructureID":5530,"TargetStructureID":82070,"Label":"5530-82070 via Unknown from 82066 -> 82507, 82082 -> 82083","Type":"Unknown","Directional":false,"Links":[{"SourceID":82066,"TargetID":82507,"Directional":false},{"SourceID":82082,"TargetID":82083,"Directional":false}]},{"ID":2767,"SourceStructureID":82071,"TargetStructureID":5530,"Label":"82071-5530 via Unknown from 82073 -> 82074","Type":"Unknown","Directional":false,"Links":[{"SourceID":82073,"TargetID":82074,"Directional":false}]},{"ID":2768,"SourceStructureID":82442,"TargetStructureID":5530,"Label":"82442-5530 via Unknown from 82552 -> 78874","Type":"Unknown","Directional":false,"Links":[{"SourceID":82552,"TargetID":78874,"Directional":false}]},{"ID":2769,"SourceStructureID":5530,"TargetStructureID":82577,"Label":"5530-82577 via Unknown from 80487 -> 82581","Type":"Unknown","Directional":false,"Links":[{"SourceID":80487,"TargetID":82581,"Directional":false}]},{"ID":2770,"SourceStructureID":5530,"TargetStructureID":82595,"Label":"5530-82595 via Unknown from 81885 -> 82596","Type":"Unknown","Directional":false,"Links":[{"SourceID":81885,"TargetID":82596,"Directional":false}]},{"ID":2771,"SourceStructureID":82598,"TargetStructureID":5530,"Label":"82598-5530 via Unknown from 82599 -> 74869","Type":"Unknown","Directional":false,"Links":[{"SourceID":82599,"TargetID":74869,"Directional":false}]},{"ID":2772,"SourceStructureID":5530,"TargetStructureID":82619,"Label":"5530-82619 via Unknown from 76529 -> 82620","Type":"Unknown","Directional":false,"Links":[{"SourceID":76529,"TargetID":82620,"Directional":false}]},{"ID":2773,"SourceStructureID":82625,"TargetStructureID":5530,"Label":"82625-5530 via Unknown from 82626 -> 76550","Type":"Unknown","Directional":false,"Links":[{"SourceID":82626,"TargetID":76550,"Directional":false}]},{"ID":2774,"SourceStructureID":82628,"TargetStructureID":5530,"Label":"82628-5530 via Unknown from 82629 -> 76748","Type":"Unknown","Directional":false,"Links":[{"SourceID":82629,"TargetID":76748,"Directional":false}]},{"ID":2775,"SourceStructureID":5530,"TargetStructureID":82630,"Label":"5530-82630 via Unknown from 76784 -> 82631","Type":"Unknown","Directional":false,"Links":[{"SourceID":76784,"TargetID":82631,"Directional":false}]},{"ID":2776,"SourceStructureID":5530,"TargetStructureID":82632,"Label":"5530-82632 via Unknown from 76791 -> 82633","Type":"Unknown","Directional":false,"Links":[{"SourceID":76791,"TargetID":82633,"Directional":false}]},{"ID":2777,"SourceStructureID":5530,"TargetStructureID":82636,"Label":"5530-82636 via Unknown from 77324 -> 82638","Type":"Unknown","Directional":false,"Links":[{"SourceID":77324,"TargetID":82638,"Directional":false}]},{"ID":2778,"SourceStructureID":82643,"TargetStructureID":5530,"Label":"82643-5530 via Unknown from 82648 -> 77326","Type":"Unknown","Directional":false,"Links":[{"SourceID":82648,"TargetID":77326,"Directional":false}]},{"ID":2779,"SourceStructureID":82656,"TargetStructureID":5530,"Label":"82656-5530 via Unknown from 82657 -> 77392","Type":"Unknown","Directional":false,"Links":[{"SourceID":82657,"TargetID":77392,"Directional":false}]},{"ID":2780,"SourceStructureID":5530,"TargetStructureID":82664,"Label":"5530-82664 via Unknown from 77402 -> 82672","Type":"Unknown","Directional":false,"Links":[{"SourceID":77402,"TargetID":82672,"Directional":false}]},{"ID":2781,"SourceStructureID":5530,"TargetStructureID":82677,"Label":"5530-82677 via Gap Junction from 77466 -> 82680","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":77466,"TargetID":82680,"Directional":false}]},{"ID":2782,"SourceStructureID":82695,"TargetStructureID":5530,"Label":"82695-5530 via Unknown from 82696 -> 77630","Type":"Unknown","Directional":false,"Links":[{"SourceID":82696,"TargetID":77630,"Directional":false}]},{"ID":2783,"SourceStructureID":5530,"TargetStructureID":82827,"Label":"5530-82827 via Unknown from 79060 -> 82828","Type":"Unknown","Directional":false,"Links":[{"SourceID":79060,"TargetID":82828,"Directional":false}]},{"ID":2784,"SourceStructureID":82830,"TargetStructureID":5530,"Label":"82830-5530 via Unknown from 82831 -> 79137","Type":"Unknown","Directional":false,"Links":[{"SourceID":82831,"TargetID":79137,"Directional":false}]},{"ID":2785,"SourceStructureID":82832,"TargetStructureID":5530,"Label":"82832-5530 via Unknown from 82833 -> 79157","Type":"Unknown","Directional":false,"Links":[{"SourceID":82833,"TargetID":79157,"Directional":false}]},{"ID":2786,"SourceStructureID":82834,"TargetStructureID":5530,"Label":"82834-5530 via Unknown from 82835 -> 79270","Type":"Unknown","Directional":false,"Links":[{"SourceID":82835,"TargetID":79270,"Directional":false}]},{"ID":2787,"SourceStructureID":5530,"TargetStructureID":82848,"Label":"5530-82848 via Unknown from 80404 -> 82849","Type":"Unknown","Directional":false,"Links":[{"SourceID":80404,"TargetID":82849,"Directional":false}]},{"ID":2788,"SourceStructureID":82858,"TargetStructureID":5530,"Label":"82858-5530 via Unknown from 82859 -> 80708","Type":"Unknown","Directional":false,"Links":[{"SourceID":82859,"TargetID":80708,"Directional":false}]},{"ID":2789,"SourceStructureID":5530,"TargetStructureID":82887,"Label":"5530-82887 via Unknown from 81186 -> 82888","Type":"Unknown","Directional":false,"Links":[{"SourceID":81186,"TargetID":82888,"Directional":false}]},{"ID":2790,"SourceStructureID":82889,"TargetStructureID":5530,"Label":"82889-5530 via Unknown from 82892 -> 81209","Type":"Unknown","Directional":false,"Links":[{"SourceID":82892,"TargetID":81209,"Directional":false}]},{"ID":2791,"SourceStructureID":5530,"TargetStructureID":82894,"Label":"5530-82894 via Unknown from 81210 -> 82895","Type":"Unknown","Directional":false,"Links":[{"SourceID":81210,"TargetID":82895,"Directional":false}]},{"ID":2792,"SourceStructureID":5530,"TargetStructureID":82897,"Label":"5530-82897 via Unknown from 81217 -> 82898","Type":"Unknown","Directional":false,"Links":[{"SourceID":81217,"TargetID":82898,"Directional":false}]},{"ID":2793,"SourceStructureID":82901,"TargetStructureID":5530,"Label":"82901-5530 via Unknown from 82902 -> 81626","Type":"Unknown","Directional":false,"Links":[{"SourceID":82902,"TargetID":81626,"Directional":false}]},{"ID":2794,"SourceStructureID":82995,"TargetStructureID":5530,"Label":"82995-5530 via Unknown from 82996 -> 81871","Type":"Unknown","Directional":false,"Links":[{"SourceID":82996,"TargetID":81871,"Directional":false}]},{"ID":2795,"SourceStructureID":5530,"TargetStructureID":82997,"Label":"5530-82997 via Unknown from 81879 -> 82998","Type":"Unknown","Directional":false,"Links":[{"SourceID":81879,"TargetID":82998,"Directional":false}]},{"ID":2796,"SourceStructureID":5530,"TargetStructureID":82999,"Label":"5530-82999 via Unknown from 81880 -> 83000","Type":"Unknown","Directional":false,"Links":[{"SourceID":81880,"TargetID":83000,"Directional":false}]},{"ID":2797,"SourceStructureID":83045,"TargetStructureID":5530,"Label":"83045-5530 via Unknown from 83046 -> 81203","Type":"Unknown","Directional":false,"Links":[{"SourceID":83046,"TargetID":81203,"Directional":false}]},{"ID":2798,"SourceStructureID":5531,"TargetStructureID":5531,"Label":"5531-5531 via Adherens from 54538 -> 54539, 147464 -> 147465","Type":"Adherens","Directional":false,"Links":[{"SourceID":54538,"TargetID":54539,"Directional":false},{"SourceID":147464,"TargetID":147465,"Directional":false}]},{"ID":2799,"SourceStructureID":5531,"TargetStructureID":5535,"Label":"5531-5535 via Gap Junction from 107705 -> 32352","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":107705,"TargetID":32352,"Directional":false}]},{"ID":2800,"SourceStructureID":5601,"TargetStructureID":5531,"Label":"5601-5531 via Adherens from 127133 -> 127134","Type":"Adherens","Directional":false,"Links":[{"SourceID":127133,"TargetID":127134,"Directional":false}]},{"ID":2801,"SourceStructureID":5531,"TargetStructureID":5637,"Label":"5531-5637 via Adherens from 147446 -> 147445","Type":"Adherens","Directional":false,"Links":[{"SourceID":147446,"TargetID":147445,"Directional":false}]},{"ID":2802,"SourceStructureID":5637,"TargetStructureID":5531,"Label":"5637-5531 via Gap Junction from 59571 -> 59570","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59571,"TargetID":59570,"Directional":false}]},{"ID":2803,"SourceStructureID":5531,"TargetStructureID":7274,"Label":"5531-7274 via Unknown from 107200 -> 107202","Type":"Unknown","Directional":false,"Links":[{"SourceID":107200,"TargetID":107202,"Directional":false}]},{"ID":2804,"SourceStructureID":7576,"TargetStructureID":5531,"Label":"7576-5531 via Adherens from 133920 -> 133919, 147459 -> 55055","Type":"Adherens","Directional":false,"Links":[{"SourceID":133920,"TargetID":133919,"Directional":false},{"SourceID":147459,"TargetID":55055,"Directional":false}]},{"ID":2805,"SourceStructureID":7576,"TargetStructureID":5531,"Label":"7576-5531 via Gap Junction from 54807 -> 54732, 54880 -> 54876, 55050 -> 55049, 133917 -> 133918","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54807,"TargetID":54732,"Directional":false},{"SourceID":54880,"TargetID":54876,"Directional":false},{"SourceID":55050,"TargetID":55049,"Directional":false},{"SourceID":133917,"TargetID":133918,"Directional":false}]},{"ID":2806,"SourceStructureID":5531,"TargetStructureID":32405,"Label":"5531-32405 via Adherens from 147430 -> 147431","Type":"Adherens","Directional":false,"Links":[{"SourceID":147430,"TargetID":147431,"Directional":false}]},{"ID":2807,"SourceStructureID":32405,"TargetStructureID":5531,"Label":"32405-5531 via Gap Junction from 91880 -> 91879","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91880,"TargetID":91879,"Directional":false}]},{"ID":2808,"SourceStructureID":56802,"TargetStructureID":5531,"Label":"56802-5531 via Adherens from 106900 -> 106901, 147439 -> 147440, 147442 -> 147441","Type":"Adherens","Directional":false,"Links":[{"SourceID":106900,"TargetID":106901,"Directional":false},{"SourceID":147439,"TargetID":147440,"Directional":false},{"SourceID":147442,"TargetID":147441,"Directional":false}]},{"ID":2809,"SourceStructureID":5531,"TargetStructureID":56802,"Label":"5531-56802 via Gap Junction from 54578 -> 107416, 107425 -> 54579","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54578,"TargetID":107416,"Directional":false},{"SourceID":107425,"TargetID":54579,"Directional":false}]},{"ID":2810,"SourceStructureID":56802,"TargetStructureID":5531,"Label":"56802-5531 via Unknown from 119620 -> 119619","Type":"Unknown","Directional":false,"Links":[{"SourceID":119620,"TargetID":119619,"Directional":false}]},{"ID":2811,"SourceStructureID":5531,"TargetStructureID":82897,"Label":"5531-82897 via Adherens from 114827 -> 114826","Type":"Adherens","Directional":false,"Links":[{"SourceID":114827,"TargetID":114826,"Directional":false}]},{"ID":2812,"SourceStructureID":91913,"TargetStructureID":5531,"Label":"91913-5531 via Adherens from 147452 -> 147453","Type":"Adherens","Directional":false,"Links":[{"SourceID":147452,"TargetID":147453,"Directional":false}]},{"ID":2813,"SourceStructureID":91913,"TargetStructureID":5531,"Label":"91913-5531 via Gap Junction from 93447 -> 91912","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93447,"TargetID":91912,"Directional":false}]},{"ID":2814,"SourceStructureID":91918,"TargetStructureID":5531,"Label":"91918-5531 via Unknown from 107578 -> 107577","Type":"Unknown","Directional":false,"Links":[{"SourceID":107578,"TargetID":107577,"Directional":false}]},{"ID":2815,"SourceStructureID":5531,"TargetStructureID":91921,"Label":"5531-91921 via Adherens from 107549 -> 107548","Type":"Adherens","Directional":false,"Links":[{"SourceID":107549,"TargetID":107548,"Directional":false}]},{"ID":2816,"SourceStructureID":5531,"TargetStructureID":91959,"Label":"5531-91959 via Adherens from 106146 -> 106145, 106147 -> 106148","Type":"Adherens","Directional":false,"Links":[{"SourceID":106146,"TargetID":106145,"Directional":false},{"SourceID":106147,"TargetID":106148,"Directional":false}]},{"ID":2817,"SourceStructureID":5531,"TargetStructureID":91959,"Label":"5531-91959 via Unknown from 128710 -> 128711, 147448 -> 147449","Type":"Unknown","Directional":false,"Links":[{"SourceID":128710,"TargetID":128711,"Directional":false},{"SourceID":147448,"TargetID":147449,"Directional":false}]},{"ID":2818,"SourceStructureID":5531,"TargetStructureID":91994,"Label":"5531-91994 via Unknown from 147435 -> 147436","Type":"Unknown","Directional":false,"Links":[{"SourceID":147435,"TargetID":147436,"Directional":false}]},{"ID":2819,"SourceStructureID":93431,"TargetStructureID":5531,"Label":"93431-5531 via Unknown from 147458 -> 147457","Type":"Unknown","Directional":false,"Links":[{"SourceID":147458,"TargetID":147457,"Directional":false}]},{"ID":2820,"SourceStructureID":93437,"TargetStructureID":5531,"Label":"93437-5531 via Adherens from 93438 -> 93436","Type":"Adherens","Directional":false,"Links":[{"SourceID":93438,"TargetID":93436,"Directional":false}]},{"ID":2821,"SourceStructureID":95195,"TargetStructureID":5531,"Label":"95195-5531 via Unknown from 114552 -> 114551","Type":"Unknown","Directional":false,"Links":[{"SourceID":114552,"TargetID":114551,"Directional":false}]},{"ID":2822,"SourceStructureID":96240,"TargetStructureID":5531,"Label":"96240-5531 via Unknown from 114555 -> 114554","Type":"Unknown","Directional":false,"Links":[{"SourceID":114555,"TargetID":114554,"Directional":false}]},{"ID":2823,"SourceStructureID":5531,"TargetStructureID":96290,"Label":"5531-96290 via Unknown from 147410 -> 147409","Type":"Unknown","Directional":false,"Links":[{"SourceID":147410,"TargetID":147409,"Directional":false}]},{"ID":2824,"SourceStructureID":96895,"TargetStructureID":5531,"Label":"96895-5531 via Adherens from 147422 -> 147421","Type":"Adherens","Directional":false,"Links":[{"SourceID":147422,"TargetID":147421,"Directional":false}]},{"ID":2825,"SourceStructureID":5531,"TargetStructureID":96914,"Label":"5531-96914 via Unknown from 133904 -> 107165","Type":"Unknown","Directional":false,"Links":[{"SourceID":133904,"TargetID":107165,"Directional":false}]},{"ID":2826,"SourceStructureID":5531,"TargetStructureID":105258,"Label":"5531-105258 via Unknown from 105261 -> 105260","Type":"Unknown","Directional":false,"Links":[{"SourceID":105261,"TargetID":105260,"Directional":false}]},{"ID":2827,"SourceStructureID":106161,"TargetStructureID":5531,"Label":"106161-5531 via Postsynapse from 106162 -> 106163","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":106162,"TargetID":106163,"Directional":false}]},{"ID":2828,"SourceStructureID":106164,"TargetStructureID":5531,"Label":"106164-5531 via Adherens from 106188 -> 106187","Type":"Adherens","Directional":false,"Links":[{"SourceID":106188,"TargetID":106187,"Directional":false}]},{"ID":2829,"SourceStructureID":5531,"TargetStructureID":106172,"Label":"5531-106172 via Unknown from 106173 -> 106174","Type":"Unknown","Directional":false,"Links":[{"SourceID":106173,"TargetID":106174,"Directional":false}]},{"ID":2830,"SourceStructureID":106237,"TargetStructureID":5531,"Label":"106237-5531 via Adherens from 147387 -> 147386","Type":"Adherens","Directional":false,"Links":[{"SourceID":147387,"TargetID":147386,"Directional":false}]},{"ID":2831,"SourceStructureID":5531,"TargetStructureID":106237,"Label":"5531-106237 via Unknown from 147389 -> 147388","Type":"Unknown","Directional":false,"Links":[{"SourceID":147389,"TargetID":147388,"Directional":false}]},{"ID":2832,"SourceStructureID":5531,"TargetStructureID":106249,"Label":"5531-106249 via Unknown from 147393 -> 147394","Type":"Unknown","Directional":false,"Links":[{"SourceID":147393,"TargetID":147394,"Directional":false}]},{"ID":2833,"SourceStructureID":106502,"TargetStructureID":5531,"Label":"106502-5531 via Adherens from 106504 -> 106503","Type":"Adherens","Directional":false,"Links":[{"SourceID":106504,"TargetID":106503,"Directional":false}]},{"ID":2834,"SourceStructureID":106588,"TargetStructureID":5531,"Label":"106588-5531 via Unknown from 147395 -> 147396","Type":"Unknown","Directional":false,"Links":[{"SourceID":147395,"TargetID":147396,"Directional":false}]},{"ID":2835,"SourceStructureID":5531,"TargetStructureID":106651,"Label":"5531-106651 via Unknown from 125868 -> 125869","Type":"Unknown","Directional":false,"Links":[{"SourceID":125868,"TargetID":125869,"Directional":false}]},{"ID":2836,"SourceStructureID":5531,"TargetStructureID":106715,"Label":"5531-106715 via Unknown from 106728 -> 106729, 106735 -> 106734","Type":"Unknown","Directional":false,"Links":[{"SourceID":106728,"TargetID":106729,"Directional":false},{"SourceID":106735,"TargetID":106734,"Directional":false}]},{"ID":2837,"SourceStructureID":5531,"TargetStructureID":106922,"Label":"5531-106922 via Unknown from 106948 -> 106947","Type":"Unknown","Directional":false,"Links":[{"SourceID":106948,"TargetID":106947,"Directional":false}]},{"ID":2838,"SourceStructureID":106931,"TargetStructureID":5531,"Label":"106931-5531 via Unknown from 106933 -> 106932","Type":"Unknown","Directional":false,"Links":[{"SourceID":106933,"TargetID":106932,"Directional":false}]},{"ID":2839,"SourceStructureID":106935,"TargetStructureID":5531,"Label":"106935-5531 via Unknown from 106938 -> 106939","Type":"Unknown","Directional":false,"Links":[{"SourceID":106938,"TargetID":106939,"Directional":false}]},{"ID":2840,"SourceStructureID":5531,"TargetStructureID":107388,"Label":"5531-107388 via Gap Junction from 107389 -> 107390","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":107389,"TargetID":107390,"Directional":false}]},{"ID":2841,"SourceStructureID":5531,"TargetStructureID":107391,"Label":"5531-107391 via Unknown from 107392 -> 107394","Type":"Unknown","Directional":false,"Links":[{"SourceID":107392,"TargetID":107394,"Directional":false}]},{"ID":2842,"SourceStructureID":107420,"TargetStructureID":5531,"Label":"107420-5531 via Adherens from 107421 -> 107422","Type":"Adherens","Directional":false,"Links":[{"SourceID":107421,"TargetID":107422,"Directional":false}]},{"ID":2843,"SourceStructureID":107438,"TargetStructureID":5531,"Label":"107438-5531 via Unknown from 107441 -> 107440","Type":"Unknown","Directional":false,"Links":[{"SourceID":107441,"TargetID":107440,"Directional":false}]},{"ID":2844,"SourceStructureID":107570,"TargetStructureID":5531,"Label":"107570-5531 via Unknown from 107572 -> 107571","Type":"Unknown","Directional":false,"Links":[{"SourceID":107572,"TargetID":107571,"Directional":false}]},{"ID":2845,"SourceStructureID":5531,"TargetStructureID":107582,"Label":"5531-107582 via Unknown from 107586 -> 107585","Type":"Unknown","Directional":false,"Links":[{"SourceID":107586,"TargetID":107585,"Directional":false}]},{"ID":2846,"SourceStructureID":107587,"TargetStructureID":5531,"Label":"107587-5531 via Unknown from 107590 -> 107589","Type":"Unknown","Directional":false,"Links":[{"SourceID":107590,"TargetID":107589,"Directional":false}]},{"ID":2847,"SourceStructureID":5531,"TargetStructureID":107672,"Label":"5531-107672 via Unknown from 107673 -> 107674","Type":"Unknown","Directional":false,"Links":[{"SourceID":107673,"TargetID":107674,"Directional":false}]},{"ID":2848,"SourceStructureID":5531,"TargetStructureID":107683,"Label":"5531-107683 via Unknown from 107685 -> 107684","Type":"Unknown","Directional":false,"Links":[{"SourceID":107685,"TargetID":107684,"Directional":false}]},{"ID":2849,"SourceStructureID":107693,"TargetStructureID":5531,"Label":"107693-5531 via Unknown from 147420 -> 147419","Type":"Unknown","Directional":false,"Links":[{"SourceID":147420,"TargetID":147419,"Directional":false}]},{"ID":2850,"SourceStructureID":107699,"TargetStructureID":5531,"Label":"107699-5531 via Adherens from 107702 -> 107701","Type":"Adherens","Directional":false,"Links":[{"SourceID":107702,"TargetID":107701,"Directional":false}]},{"ID":2851,"SourceStructureID":5531,"TargetStructureID":107699,"Label":"5531-107699 via Unknown from 107703 -> 107704","Type":"Unknown","Directional":false,"Links":[{"SourceID":107703,"TargetID":107704,"Directional":false}]},{"ID":2852,"SourceStructureID":5531,"TargetStructureID":108045,"Label":"5531-108045 via Unknown from 108058 -> 108055","Type":"Unknown","Directional":false,"Links":[{"SourceID":108058,"TargetID":108055,"Directional":false}]},{"ID":2853,"SourceStructureID":110648,"TargetStructureID":5531,"Label":"110648-5531 via Unknown from 110655 -> 110656","Type":"Unknown","Directional":false,"Links":[{"SourceID":110655,"TargetID":110656,"Directional":false}]},{"ID":2854,"SourceStructureID":110649,"TargetStructureID":5531,"Label":"110649-5531 via Unknown from 110651 -> 110650","Type":"Unknown","Directional":false,"Links":[{"SourceID":110651,"TargetID":110650,"Directional":false}]},{"ID":2855,"SourceStructureID":110671,"TargetStructureID":5531,"Label":"110671-5531 via Unknown from 110673 -> 110672","Type":"Unknown","Directional":false,"Links":[{"SourceID":110673,"TargetID":110672,"Directional":false}]},{"ID":2856,"SourceStructureID":110676,"TargetStructureID":5531,"Label":"110676-5531 via Unknown from 110677 -> 110678","Type":"Unknown","Directional":false,"Links":[{"SourceID":110677,"TargetID":110678,"Directional":false}]},{"ID":2857,"SourceStructureID":5531,"TargetStructureID":110691,"Label":"5531-110691 via Unknown from 110692 -> 110693","Type":"Unknown","Directional":false,"Links":[{"SourceID":110692,"TargetID":110693,"Directional":false}]},{"ID":2858,"SourceStructureID":110694,"TargetStructureID":5531,"Label":"110694-5531 via Unknown from 110695 -> 110696","Type":"Unknown","Directional":false,"Links":[{"SourceID":110695,"TargetID":110696,"Directional":false}]},{"ID":2859,"SourceStructureID":110697,"TargetStructureID":5531,"Label":"110697-5531 via Unknown from 110698 -> 110699","Type":"Unknown","Directional":false,"Links":[{"SourceID":110698,"TargetID":110699,"Directional":false}]},{"ID":2860,"SourceStructureID":5531,"TargetStructureID":110700,"Label":"5531-110700 via Unknown from 110702 -> 110701","Type":"Unknown","Directional":false,"Links":[{"SourceID":110702,"TargetID":110701,"Directional":false}]},{"ID":2861,"SourceStructureID":110707,"TargetStructureID":5531,"Label":"110707-5531 via Unknown from 110713 -> 110712","Type":"Unknown","Directional":false,"Links":[{"SourceID":110713,"TargetID":110712,"Directional":false}]},{"ID":2862,"SourceStructureID":5531,"TargetStructureID":110714,"Label":"5531-110714 via Unknown from 110719 -> 110718","Type":"Unknown","Directional":false,"Links":[{"SourceID":110719,"TargetID":110718,"Directional":false}]},{"ID":2863,"SourceStructureID":5531,"TargetStructureID":110715,"Label":"5531-110715 via Unknown from 110717 -> 110716","Type":"Unknown","Directional":false,"Links":[{"SourceID":110717,"TargetID":110716,"Directional":false}]},{"ID":2864,"SourceStructureID":5531,"TargetStructureID":111842,"Label":"5531-111842 via Unknown from 111844 -> 111845","Type":"Unknown","Directional":false,"Links":[{"SourceID":111844,"TargetID":111845,"Directional":false}]},{"ID":2865,"SourceStructureID":5531,"TargetStructureID":111860,"Label":"5531-111860 via Unknown from 111861 -> 111862","Type":"Unknown","Directional":false,"Links":[{"SourceID":111861,"TargetID":111862,"Directional":false}]},{"ID":2866,"SourceStructureID":5531,"TargetStructureID":113841,"Label":"5531-113841 via Unknown from 113840 -> 113842","Type":"Unknown","Directional":false,"Links":[{"SourceID":113840,"TargetID":113842,"Directional":false}]},{"ID":2867,"SourceStructureID":114547,"TargetStructureID":5531,"Label":"114547-5531 via Unknown from 114548 -> 114546","Type":"Unknown","Directional":false,"Links":[{"SourceID":114548,"TargetID":114546,"Directional":false}]},{"ID":2868,"SourceStructureID":5531,"TargetStructureID":114692,"Label":"5531-114692 via Unknown from 114694 -> 114693","Type":"Unknown","Directional":false,"Links":[{"SourceID":114694,"TargetID":114693,"Directional":false}]},{"ID":2869,"SourceStructureID":5531,"TargetStructureID":114713,"Label":"5531-114713 via Unknown from 114714 -> 114715, 114716 -> 114717","Type":"Unknown","Directional":false,"Links":[{"SourceID":114714,"TargetID":114715,"Directional":false},{"SourceID":114716,"TargetID":114717,"Directional":false}]},{"ID":2870,"SourceStructureID":5531,"TargetStructureID":114734,"Label":"5531-114734 via Unknown from 147428 -> 147427","Type":"Unknown","Directional":false,"Links":[{"SourceID":147428,"TargetID":147427,"Directional":false}]},{"ID":2871,"SourceStructureID":5531,"TargetStructureID":114741,"Label":"5531-114741 via Unknown from 114742 -> 114743","Type":"Unknown","Directional":false,"Links":[{"SourceID":114742,"TargetID":114743,"Directional":false}]},{"ID":2872,"SourceStructureID":5531,"TargetStructureID":114760,"Label":"5531-114760 via Unknown from 114759 -> 114762","Type":"Unknown","Directional":false,"Links":[{"SourceID":114759,"TargetID":114762,"Directional":false}]},{"ID":2873,"SourceStructureID":120256,"TargetStructureID":5531,"Label":"120256-5531 via Unknown from 133911 -> 107203","Type":"Unknown","Directional":false,"Links":[{"SourceID":133911,"TargetID":107203,"Directional":false}]},{"ID":2874,"SourceStructureID":5531,"TargetStructureID":133891,"Label":"5531-133891 via Unknown from 147433 -> 147434","Type":"Unknown","Directional":false,"Links":[{"SourceID":147433,"TargetID":147434,"Directional":false}]},{"ID":2875,"SourceStructureID":5531,"TargetStructureID":147412,"Label":"5531-147412 via Unknown from 147411 -> 147418, 147415 -> 147416","Type":"Unknown","Directional":false,"Links":[{"SourceID":147411,"TargetID":147418,"Directional":false},{"SourceID":147415,"TargetID":147416,"Directional":false}]},{"ID":2876,"SourceStructureID":5535,"TargetStructureID":5534,"Label":"5535-5534 via Gap Junction from 55255 -> 55254","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55255,"TargetID":55254,"Directional":false}]},{"ID":2877,"SourceStructureID":5534,"TargetStructureID":5537,"Label":"5534-5537 via Adherens from 118319 -> 118318","Type":"Adherens","Directional":false,"Links":[{"SourceID":118319,"TargetID":118318,"Directional":false}]},{"ID":2878,"SourceStructureID":5534,"TargetStructureID":5537,"Label":"5534-5537 via Gap Junction from 117971 -> 117970, 117973 -> 117972, 118273 -> 118272, 118321 -> 118320, 118326 -> 118325, 118331 -> 118330, 118333 -> 118332","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117971,"TargetID":117970,"Directional":false},{"SourceID":117973,"TargetID":117972,"Directional":false},{"SourceID":118273,"TargetID":118272,"Directional":false},{"SourceID":118321,"TargetID":118320,"Directional":false},{"SourceID":118326,"TargetID":118325,"Directional":false},{"SourceID":118331,"TargetID":118330,"Directional":false},{"SourceID":118333,"TargetID":118332,"Directional":false}]},{"ID":2879,"SourceStructureID":5601,"TargetStructureID":5534,"Label":"5601-5534 via Adherens from 92992 -> 92991","Type":"Adherens","Directional":false,"Links":[{"SourceID":92992,"TargetID":92991,"Directional":false}]},{"ID":2880,"SourceStructureID":5601,"TargetStructureID":5534,"Label":"5601-5534 via Gap Junction from 57499 -> 54623, 58586 -> 54680","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57499,"TargetID":54623,"Directional":false},{"SourceID":58586,"TargetID":54680,"Directional":false}]},{"ID":2881,"SourceStructureID":5606,"TargetStructureID":5534,"Label":"5606-5534 via Gap Junction from 36932 -> 34674, 56519 -> 38945, 118347 -> 118346, 118349 -> 118348","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36932,"TargetID":34674,"Directional":false},{"SourceID":56519,"TargetID":38945,"Directional":false},{"SourceID":118347,"TargetID":118346,"Directional":false},{"SourceID":118349,"TargetID":118348,"Directional":false}]},{"ID":2882,"SourceStructureID":6127,"TargetStructureID":5534,"Label":"6127-5534 via Gap Junction from 118297 -> 118296, 122616 -> 122615","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118297,"TargetID":118296,"Directional":false},{"SourceID":122616,"TargetID":122615,"Directional":false}]},{"ID":2883,"SourceStructureID":7225,"TargetStructureID":5534,"Label":"7225-5534 via Gap Junction from 118276 -> 118277, 118285 -> 118284","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118276,"TargetID":118277,"Directional":false},{"SourceID":118285,"TargetID":118284,"Directional":false}]},{"ID":2884,"SourceStructureID":5534,"TargetStructureID":7279,"Label":"5534-7279 via Gap Junction from 34673 -> 34739","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":34673,"TargetID":34739,"Directional":false}]},{"ID":2885,"SourceStructureID":5534,"TargetStructureID":11229,"Label":"5534-11229 via Gap Junction from 118323 -> 118324","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118323,"TargetID":118324,"Directional":false}]},{"ID":2886,"SourceStructureID":5534,"TargetStructureID":25155,"Label":"5534-25155 via Gap Junction from 34643 -> 34642, 118278 -> 118279, 118282 -> 118280","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":34643,"TargetID":34642,"Directional":false},{"SourceID":118278,"TargetID":118279,"Directional":false},{"SourceID":118282,"TargetID":118280,"Directional":false}]},{"ID":2887,"SourceStructureID":44256,"TargetStructureID":5534,"Label":"44256-5534 via Gap Junction from 118337 -> 118336, 118338 -> 118339, 118340 -> 118341, 123115 -> 123116","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118337,"TargetID":118336,"Directional":false},{"SourceID":118338,"TargetID":118339,"Directional":false},{"SourceID":118340,"TargetID":118341,"Directional":false},{"SourceID":123115,"TargetID":123116,"Directional":false}]},{"ID":2888,"SourceStructureID":53828,"TargetStructureID":5534,"Label":"53828-5534 via Gap Junction from 118345 -> 118344","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118345,"TargetID":118344,"Directional":false}]},{"ID":2889,"SourceStructureID":77625,"TargetStructureID":5534,"Label":"77625-5534 via Adherens from 135572 -> 135571","Type":"Adherens","Directional":false,"Links":[{"SourceID":135572,"TargetID":135571,"Directional":false}]},{"ID":2890,"SourceStructureID":5534,"TargetStructureID":118301,"Label":"5534-118301 via Gap Junction from 118299 -> 118305, 118304 -> 118300","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118299,"TargetID":118305,"Directional":false},{"SourceID":118304,"TargetID":118300,"Directional":false}]},{"ID":2891,"SourceStructureID":5535,"TargetStructureID":5537,"Label":"5535-5537 via Gap Junction from 38183 -> 38184, 59580 -> 59575, 82497 -> 82498, 118269 -> 118268, 122946 -> 122947, 122959 -> 122960, 122985 -> 122986, 122988 -> 122987","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38183,"TargetID":38184,"Directional":false},{"SourceID":59580,"TargetID":59575,"Directional":false},{"SourceID":82497,"TargetID":82498,"Directional":false},{"SourceID":118269,"TargetID":118268,"Directional":false},{"SourceID":122946,"TargetID":122947,"Directional":false},{"SourceID":122959,"TargetID":122960,"Directional":false},{"SourceID":122985,"TargetID":122986,"Directional":false},{"SourceID":122988,"TargetID":122987,"Directional":false}]},{"ID":2892,"SourceStructureID":5535,"TargetStructureID":5608,"Label":"5535-5608 via Gap Junction from 121845 -> 121844","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121845,"TargetID":121844,"Directional":false}]},{"ID":2893,"SourceStructureID":5637,"TargetStructureID":5535,"Label":"5637-5535 via Gap Junction from 56006 -> 59574","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56006,"TargetID":59574,"Directional":false}]},{"ID":2894,"SourceStructureID":5535,"TargetStructureID":6909,"Label":"5535-6909 via Gap Junction from 122689 -> 122687, 122953 -> 122952","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122689,"TargetID":122687,"Directional":false},{"SourceID":122953,"TargetID":122952,"Directional":false}]},{"ID":2895,"SourceStructureID":6964,"TargetStructureID":5535,"Label":"6964-5535 via Gap Junction from 122951 -> 122950","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122951,"TargetID":122950,"Directional":false}]},{"ID":2896,"SourceStructureID":6965,"TargetStructureID":5535,"Label":"6965-5535 via Gap Junction from 122998 -> 122982, 123004 -> 122992, 123006 -> 123007","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122998,"TargetID":122982,"Directional":false},{"SourceID":123004,"TargetID":122992,"Directional":false},{"SourceID":123006,"TargetID":123007,"Directional":false}]},{"ID":2897,"SourceStructureID":5535,"TargetStructureID":7225,"Label":"5535-7225 via Gap Junction from 38440 -> 38441, 122980 -> 122981","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38440,"TargetID":38441,"Directional":false},{"SourceID":122980,"TargetID":122981,"Directional":false}]},{"ID":2898,"SourceStructureID":7345,"TargetStructureID":5535,"Label":"7345-5535 via Gap Junction from 47840 -> 122954","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47840,"TargetID":122954,"Directional":false}]},{"ID":2899,"SourceStructureID":5535,"TargetStructureID":11229,"Label":"5535-11229 via Gap Junction from 32349 -> 28977","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32349,"TargetID":28977,"Directional":false}]},{"ID":2900,"SourceStructureID":25155,"TargetStructureID":5535,"Label":"25155-5535 via Gap Junction from 122983 -> 122984, 122990 -> 122991","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122983,"TargetID":122984,"Directional":false},{"SourceID":122990,"TargetID":122991,"Directional":false}]},{"ID":2901,"SourceStructureID":5536,"TargetStructureID":5536,"Label":"5536-5536 via Gap Junction from 121918 -> 121920","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121918,"TargetID":121920,"Directional":false}]},{"ID":2902,"SourceStructureID":7225,"TargetStructureID":5536,"Label":"7225-5536 via Gap Junction from 158865 -> 122501","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":158865,"TargetID":122501,"Directional":false}]},{"ID":2903,"SourceStructureID":19571,"TargetStructureID":5536,"Label":"19571-5536 via Adherens from 22710 -> 22703","Type":"Adherens","Directional":false,"Links":[{"SourceID":22710,"TargetID":22703,"Directional":false}]},{"ID":2904,"SourceStructureID":121913,"TargetStructureID":5536,"Label":"121913-5536 via Gap Junction from 121914 -> 116945","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121914,"TargetID":116945,"Directional":false}]},{"ID":2905,"SourceStructureID":121916,"TargetStructureID":5536,"Label":"121916-5536 via Gap Junction from 121917 -> 121915","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121917,"TargetID":121915,"Directional":false}]},{"ID":2906,"SourceStructureID":25155,"TargetStructureID":5537,"Label":"25155-5537 via Adherens from 38194 -> 38193","Type":"Adherens","Directional":false,"Links":[{"SourceID":38194,"TargetID":38193,"Directional":false}]},{"ID":2907,"SourceStructureID":25155,"TargetStructureID":5537,"Label":"25155-5537 via Gap Junction from 38186 -> 38185, 38191 -> 38192, 38196 -> 38197","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38186,"TargetID":38185,"Directional":false},{"SourceID":38191,"TargetID":38192,"Directional":false},{"SourceID":38196,"TargetID":38197,"Directional":false}]},{"ID":2908,"SourceStructureID":5537,"TargetStructureID":44256,"Label":"5537-44256 via Gap Junction from 120584 -> 44264","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120584,"TargetID":44264,"Directional":false}]},{"ID":2909,"SourceStructureID":7564,"TargetStructureID":5541,"Label":"7564-5541 via Gap Junction from 118940 -> 118939, 118942 -> 118941","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118940,"TargetID":118939,"Directional":false},{"SourceID":118942,"TargetID":118941,"Directional":false}]},{"ID":2910,"SourceStructureID":19383,"TargetStructureID":5541,"Label":"19383-5541 via Adherens from 38831 -> 38830","Type":"Adherens","Directional":false,"Links":[{"SourceID":38831,"TargetID":38830,"Directional":false}]},{"ID":2911,"SourceStructureID":130365,"TargetStructureID":5542,"Label":"130365-5542 via Adherens from 130366 -> 130364","Type":"Adherens","Directional":false,"Links":[{"SourceID":130366,"TargetID":130364,"Directional":false}]},{"ID":2912,"SourceStructureID":11092,"TargetStructureID":5543,"Label":"11092-5543 via Gap Junction from 129520 -> 123343, 136324 -> 136323","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129520,"TargetID":123343,"Directional":false},{"SourceID":136324,"TargetID":136323,"Directional":false}]},{"ID":2913,"SourceStructureID":5544,"TargetStructureID":7564,"Label":"5544-7564 via Unknown from 123788 -> 123787","Type":"Unknown","Directional":false,"Links":[{"SourceID":123788,"TargetID":123787,"Directional":false}]},{"ID":2914,"SourceStructureID":13525,"TargetStructureID":5544,"Label":"13525-5544 via Unknown from 158493 -> 158492","Type":"Unknown","Directional":false,"Links":[{"SourceID":158493,"TargetID":158492,"Directional":false}]},{"ID":2915,"SourceStructureID":5545,"TargetStructureID":10963,"Label":"5545-10963 via Gap Junction from 158489 -> 158490","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":158489,"TargetID":158490,"Directional":false}]},{"ID":2916,"SourceStructureID":5551,"TargetStructureID":5636,"Label":"5551-5636 via Gap Junction from 116934 -> 116935","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116934,"TargetID":116935,"Directional":false}]},{"ID":2917,"SourceStructureID":5551,"TargetStructureID":7279,"Label":"5551-7279 via Cistern Pre from 116917 -> 116918","Type":"Cistern Pre","Directional":false,"Links":[{"SourceID":116917,"TargetID":116918,"Directional":false}]},{"ID":2918,"SourceStructureID":5556,"TargetStructureID":34888,"Label":"5556-34888 via Touch from 34891 -> 34890","Type":"Touch","Directional":false,"Links":[{"SourceID":34891,"TargetID":34890,"Directional":false}]},{"ID":2919,"SourceStructureID":5561,"TargetStructureID":5561,"Label":"5561-5561 via Gap Junction from 148189 -> 148190","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":148189,"TargetID":148190,"Directional":false}]},{"ID":2920,"SourceStructureID":5562,"TargetStructureID":5561,"Label":"5562-5561 via Touch from 148272 -> 148273","Type":"Touch","Directional":false,"Links":[{"SourceID":148272,"TargetID":148273,"Directional":false}]},{"ID":2921,"SourceStructureID":5565,"TargetStructureID":5561,"Label":"5565-5561 via Adherens from 148158 -> 148159","Type":"Adherens","Directional":false,"Links":[{"SourceID":148158,"TargetID":148159,"Directional":false}]},{"ID":2922,"SourceStructureID":5565,"TargetStructureID":5561,"Label":"5565-5561 via Gap Junction from 50283 -> 50282, 54005 -> 54004, 97426 -> 97424, 97430 -> 97429, 97442 -> 97441, 119256 -> 119255, 148188 -> 148187, 148202 -> 148203, 148267 -> 148268","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50283,"TargetID":50282,"Directional":false},{"SourceID":54005,"TargetID":54004,"Directional":false},{"SourceID":97426,"TargetID":97424,"Directional":false},{"SourceID":97430,"TargetID":97429,"Directional":false},{"SourceID":97442,"TargetID":97441,"Directional":false},{"SourceID":119256,"TargetID":119255,"Directional":false},{"SourceID":148188,"TargetID":148187,"Directional":false},{"SourceID":148202,"TargetID":148203,"Directional":false},{"SourceID":148267,"TargetID":148268,"Directional":false}]},{"ID":2923,"SourceStructureID":5568,"TargetStructureID":5561,"Label":"5568-5561 via Gap Junction from 96753 -> 96752, 121247 -> 121246","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96753,"TargetID":96752,"Directional":false},{"SourceID":121247,"TargetID":121246,"Directional":false}]},{"ID":2924,"SourceStructureID":5561,"TargetStructureID":6117,"Label":"5561-6117 via Touch from 147482 -> 147483","Type":"Touch","Directional":false,"Links":[{"SourceID":147482,"TargetID":147483,"Directional":false}]},{"ID":2925,"SourceStructureID":7024,"TargetStructureID":5561,"Label":"7024-5561 via Adherens from 114366 -> 114367","Type":"Adherens","Directional":false,"Links":[{"SourceID":114366,"TargetID":114367,"Directional":false}]},{"ID":2926,"SourceStructureID":7024,"TargetStructureID":5561,"Label":"7024-5561 via Gap Junction from 45178 -> 45177, 93898 -> 93896","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45178,"TargetID":45177,"Directional":false},{"SourceID":93898,"TargetID":93896,"Directional":false}]},{"ID":2927,"SourceStructureID":7024,"TargetStructureID":5561,"Label":"7024-5561 via Touch from 148217 -> 148216","Type":"Touch","Directional":false,"Links":[{"SourceID":148217,"TargetID":148216,"Directional":false}]},{"ID":2928,"SourceStructureID":7050,"TargetStructureID":5561,"Label":"7050-5561 via Adherens from 148261 -> 148260","Type":"Adherens","Directional":false,"Links":[{"SourceID":148261,"TargetID":148260,"Directional":false}]},{"ID":2929,"SourceStructureID":5561,"TargetStructureID":7050,"Label":"5561-7050 via Gap Junction from 148262 -> 14313","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":148262,"TargetID":14313,"Directional":false}]},{"ID":2930,"SourceStructureID":8037,"TargetStructureID":5561,"Label":"8037-5561 via Adherens from 148149 -> 148148","Type":"Adherens","Directional":false,"Links":[{"SourceID":148149,"TargetID":148148,"Directional":false}]},{"ID":2931,"SourceStructureID":8037,"TargetStructureID":5561,"Label":"8037-5561 via Gap Junction from 29899 -> 29898, 48966 -> 48965, 49481 -> 49482, 148177 -> 148176","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29899,"TargetID":29898,"Directional":false},{"SourceID":48966,"TargetID":48965,"Directional":false},{"SourceID":49481,"TargetID":49482,"Directional":false},{"SourceID":148177,"TargetID":148176,"Directional":false}]},{"ID":2932,"SourceStructureID":5561,"TargetStructureID":12897,"Label":"5561-12897 via Gap Junction from 46185 -> 49636","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46185,"TargetID":49636,"Directional":false}]},{"ID":2933,"SourceStructureID":20136,"TargetStructureID":5561,"Label":"20136-5561 via Adherens from 119291 -> 119290, 135794 -> 135793, 135801 -> 135802","Type":"Adherens","Directional":false,"Links":[{"SourceID":119291,"TargetID":119290,"Directional":false},{"SourceID":135794,"TargetID":135793,"Directional":false},{"SourceID":135801,"TargetID":135802,"Directional":false}]},{"ID":2934,"SourceStructureID":5561,"TargetStructureID":20136,"Label":"5561-20136 via Gap Junction from 46046 -> 29124, 96953 -> 96952, 97689 -> 97688, 115380 -> 115378, 119285 -> 119286","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46046,"TargetID":29124,"Directional":false},{"SourceID":96953,"TargetID":96952,"Directional":false},{"SourceID":97689,"TargetID":97688,"Directional":false},{"SourceID":115380,"TargetID":115378,"Directional":false},{"SourceID":119285,"TargetID":119286,"Directional":false}]},{"ID":2935,"SourceStructureID":5561,"TargetStructureID":96855,"Label":"5561-96855 via Adherens from 115215 -> 115216","Type":"Adherens","Directional":false,"Links":[{"SourceID":115215,"TargetID":115216,"Directional":false}]},{"ID":2936,"SourceStructureID":96964,"TargetStructureID":5561,"Label":"96964-5561 via Adherens from 96966 -> 96963","Type":"Adherens","Directional":false,"Links":[{"SourceID":96966,"TargetID":96963,"Directional":false}]},{"ID":2937,"SourceStructureID":96976,"TargetStructureID":5561,"Label":"96976-5561 via Adherens from 96979 -> 96978","Type":"Adherens","Directional":false,"Links":[{"SourceID":96979,"TargetID":96978,"Directional":false}]},{"ID":2938,"SourceStructureID":96993,"TargetStructureID":5561,"Label":"96993-5561 via Gap Junction from 96994 -> 96992","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96994,"TargetID":96992,"Directional":false}]},{"ID":2939,"SourceStructureID":5561,"TargetStructureID":97012,"Label":"5561-97012 via Adherens from 97010 -> 97013","Type":"Adherens","Directional":false,"Links":[{"SourceID":97010,"TargetID":97013,"Directional":false}]},{"ID":2940,"SourceStructureID":97025,"TargetStructureID":5561,"Label":"97025-5561 via Unknown from 97028 -> 97027","Type":"Unknown","Directional":false,"Links":[{"SourceID":97028,"TargetID":97027,"Directional":false}]},{"ID":2941,"SourceStructureID":97029,"TargetStructureID":5561,"Label":"97029-5561 via Unknown from 97030 -> 97027","Type":"Unknown","Directional":false,"Links":[{"SourceID":97030,"TargetID":97027,"Directional":false}]},{"ID":2942,"SourceStructureID":97159,"TargetStructureID":5561,"Label":"97159-5561 via Gap Junction from 97160 -> 97144","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97160,"TargetID":97144,"Directional":false}]},{"ID":2943,"SourceStructureID":5561,"TargetStructureID":97308,"Label":"5561-97308 via Unknown from 97320 -> 97319","Type":"Unknown","Directional":false,"Links":[{"SourceID":97320,"TargetID":97319,"Directional":false}]},{"ID":2944,"SourceStructureID":5561,"TargetStructureID":97352,"Label":"5561-97352 via Gap Junction from 46120 -> 97353","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46120,"TargetID":97353,"Directional":false}]},{"ID":2945,"SourceStructureID":97407,"TargetStructureID":5561,"Label":"97407-5561 via Adherens from 97412 -> 97410","Type":"Adherens","Directional":false,"Links":[{"SourceID":97412,"TargetID":97410,"Directional":false}]},{"ID":2946,"SourceStructureID":5561,"TargetStructureID":97457,"Label":"5561-97457 via Unknown from 97460 -> 97459","Type":"Unknown","Directional":false,"Links":[{"SourceID":97460,"TargetID":97459,"Directional":false}]},{"ID":2947,"SourceStructureID":5561,"TargetStructureID":97486,"Label":"5561-97486 via Adherens from 115209 -> 115210","Type":"Adherens","Directional":false,"Links":[{"SourceID":115209,"TargetID":115210,"Directional":false}]},{"ID":2948,"SourceStructureID":97657,"TargetStructureID":5561,"Label":"97657-5561 via Unknown from 97658 -> 97656","Type":"Unknown","Directional":false,"Links":[{"SourceID":97658,"TargetID":97656,"Directional":false}]},{"ID":2949,"SourceStructureID":115206,"TargetStructureID":5561,"Label":"115206-5561 via Unknown from 130130 -> 130129","Type":"Unknown","Directional":false,"Links":[{"SourceID":130130,"TargetID":130129,"Directional":false}]},{"ID":2950,"SourceStructureID":5562,"TargetStructureID":5562,"Label":"5562-5562 via Gap Junction from 134645 -> 134644","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134645,"TargetID":134644,"Directional":false}]},{"ID":2951,"SourceStructureID":5562,"TargetStructureID":5623,"Label":"5562-5623 via Gap Junction from 48462 -> 40359, 63537 -> 63540","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48462,"TargetID":40359,"Directional":false},{"SourceID":63537,"TargetID":63540,"Directional":false}]},{"ID":2952,"SourceStructureID":5649,"TargetStructureID":5562,"Label":"5649-5562 via Adherens from 80301 -> 80302, 80337 -> 80336","Type":"Adherens","Directional":false,"Links":[{"SourceID":80301,"TargetID":80302,"Directional":false},{"SourceID":80337,"TargetID":80336,"Directional":false}]},{"ID":2953,"SourceStructureID":5562,"TargetStructureID":5649,"Label":"5562-5649 via Gap Junction from 63241 -> 63240, 100704 -> 100705","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63241,"TargetID":63240,"Directional":false},{"SourceID":100704,"TargetID":100705,"Directional":false}]},{"ID":2954,"SourceStructureID":5916,"TargetStructureID":5562,"Label":"5916-5562 via Gap Junction from 54190 -> 54188, 63136 -> 63137","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54190,"TargetID":54188,"Directional":false},{"SourceID":63136,"TargetID":63137,"Directional":false}]},{"ID":2955,"SourceStructureID":5562,"TargetStructureID":6997,"Label":"5562-6997 via Adherens from 135119 -> 135118","Type":"Adherens","Directional":false,"Links":[{"SourceID":135119,"TargetID":135118,"Directional":false}]},{"ID":2956,"SourceStructureID":6997,"TargetStructureID":5562,"Label":"6997-5562 via Gap Junction from 63939 -> 48974, 99170 -> 99169","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63939,"TargetID":48974,"Directional":false},{"SourceID":99170,"TargetID":99169,"Directional":false}]},{"ID":2957,"SourceStructureID":5562,"TargetStructureID":7050,"Label":"5562-7050 via Gap Junction from 80243 -> 80242, 80257 -> 80258, 134641 -> 134640, 134653 -> 134652","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":80243,"TargetID":80242,"Directional":false},{"SourceID":80257,"TargetID":80258,"Directional":false},{"SourceID":134641,"TargetID":134640,"Directional":false},{"SourceID":134653,"TargetID":134652,"Directional":false}]},{"ID":2958,"SourceStructureID":5562,"TargetStructureID":8037,"Label":"5562-8037 via Adherens from 78642 -> 78643, 135126 -> 135125, 135141 -> 135140","Type":"Adherens","Directional":false,"Links":[{"SourceID":78642,"TargetID":78643,"Directional":false},{"SourceID":135126,"TargetID":135125,"Directional":false},{"SourceID":135141,"TargetID":135140,"Directional":false}]},{"ID":2959,"SourceStructureID":5562,"TargetStructureID":8037,"Label":"5562-8037 via Gap Junction from 31056 -> 24601, 48941 -> 48940, 49538 -> 49007, 63670 -> 14326, 63864 -> 49104, 78640 -> 78641, 134466 -> 134465, 134498 -> 134499","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":31056,"TargetID":24601,"Directional":false},{"SourceID":48941,"TargetID":48940,"Directional":false},{"SourceID":49538,"TargetID":49007,"Directional":false},{"SourceID":63670,"TargetID":14326,"Directional":false},{"SourceID":63864,"TargetID":49104,"Directional":false},{"SourceID":78640,"TargetID":78641,"Directional":false},{"SourceID":134466,"TargetID":134465,"Directional":false},{"SourceID":134498,"TargetID":134499,"Directional":false}]},{"ID":2960,"SourceStructureID":5562,"TargetStructureID":8576,"Label":"5562-8576 via Unknown from 77752 -> 77753, 77902 -> 77903","Type":"Unknown","Directional":false,"Links":[{"SourceID":77752,"TargetID":77753,"Directional":false},{"SourceID":77902,"TargetID":77903,"Directional":false}]},{"ID":2961,"SourceStructureID":5562,"TargetStructureID":11531,"Label":"5562-11531 via Unknown from 78160 -> 78161","Type":"Unknown","Directional":false,"Links":[{"SourceID":78160,"TargetID":78161,"Directional":false}]},{"ID":2962,"SourceStructureID":5562,"TargetStructureID":12897,"Label":"5562-12897 via Adherens from 135133 -> 135132","Type":"Adherens","Directional":false,"Links":[{"SourceID":135133,"TargetID":135132,"Directional":false}]},{"ID":2963,"SourceStructureID":12897,"TargetStructureID":5562,"Label":"12897-5562 via Gap Junction from 24675 -> 47290, 25323 -> 25322, 63248 -> 63247","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24675,"TargetID":47290,"Directional":false},{"SourceID":25323,"TargetID":25322,"Directional":false},{"SourceID":63248,"TargetID":63247,"Directional":false}]},{"ID":2964,"SourceStructureID":5562,"TargetStructureID":31024,"Label":"5562-31024 via Adherens from 76376 -> 76377, 76412 -> 76411, 78451 -> 78452","Type":"Adherens","Directional":false,"Links":[{"SourceID":76376,"TargetID":76377,"Directional":false},{"SourceID":76412,"TargetID":76411,"Directional":false},{"SourceID":78451,"TargetID":78452,"Directional":false}]},{"ID":2965,"SourceStructureID":31024,"TargetStructureID":5562,"Label":"31024-5562 via Unknown from 77818 -> 77819, 78447 -> 78448","Type":"Unknown","Directional":false,"Links":[{"SourceID":77818,"TargetID":77819,"Directional":false},{"SourceID":78447,"TargetID":78448,"Directional":false}]},{"ID":2966,"SourceStructureID":5562,"TargetStructureID":36516,"Label":"5562-36516 via Unknown from 79663 -> 79664","Type":"Unknown","Directional":false,"Links":[{"SourceID":79663,"TargetID":79664,"Directional":false}]},{"ID":2967,"SourceStructureID":58696,"TargetStructureID":5562,"Label":"58696-5562 via Unknown from 134484 -> 79215","Type":"Unknown","Directional":false,"Links":[{"SourceID":134484,"TargetID":79215,"Directional":false}]},{"ID":2968,"SourceStructureID":61816,"TargetStructureID":5562,"Label":"61816-5562 via Adherens from 80726 -> 77195, 80728 -> 76441","Type":"Adherens","Directional":false,"Links":[{"SourceID":80726,"TargetID":77195,"Directional":false},{"SourceID":80728,"TargetID":76441,"Directional":false}]},{"ID":2969,"SourceStructureID":5562,"TargetStructureID":61816,"Label":"5562-61816 via Unknown from 80732 -> 80733","Type":"Unknown","Directional":false,"Links":[{"SourceID":80732,"TargetID":80733,"Directional":false}]},{"ID":2970,"SourceStructureID":63371,"TargetStructureID":5562,"Label":"63371-5562 via Adherens from 63739 -> 63738, 63903 -> 63902","Type":"Adherens","Directional":false,"Links":[{"SourceID":63739,"TargetID":63738,"Directional":false},{"SourceID":63903,"TargetID":63902,"Directional":false}]},{"ID":2971,"SourceStructureID":65369,"TargetStructureID":5562,"Label":"65369-5562 via Unknown from 78914 -> 78915","Type":"Unknown","Directional":false,"Links":[{"SourceID":78914,"TargetID":78915,"Directional":false}]},{"ID":2972,"SourceStructureID":5562,"TargetStructureID":67269,"Label":"5562-67269 via Adherens from 80289 -> 80288","Type":"Adherens","Directional":false,"Links":[{"SourceID":80289,"TargetID":80288,"Directional":false}]},{"ID":2973,"SourceStructureID":5562,"TargetStructureID":67269,"Label":"5562-67269 via Unknown from 80277 -> 80278","Type":"Unknown","Directional":false,"Links":[{"SourceID":80277,"TargetID":80278,"Directional":false}]},{"ID":2974,"SourceStructureID":67469,"TargetStructureID":5562,"Label":"67469-5562 via Unknown from 78795 -> 78794","Type":"Unknown","Directional":false,"Links":[{"SourceID":78795,"TargetID":78794,"Directional":false}]},{"ID":2975,"SourceStructureID":67705,"TargetStructureID":5562,"Label":"67705-5562 via Adherens from 81797 -> 77558","Type":"Adherens","Directional":false,"Links":[{"SourceID":81797,"TargetID":77558,"Directional":false}]},{"ID":2976,"SourceStructureID":68188,"TargetStructureID":5562,"Label":"68188-5562 via Adherens from 77585 -> 77586","Type":"Adherens","Directional":false,"Links":[{"SourceID":77585,"TargetID":77586,"Directional":false}]},{"ID":2977,"SourceStructureID":5562,"TargetStructureID":68188,"Label":"5562-68188 via Unknown from 77587 -> 77588","Type":"Unknown","Directional":false,"Links":[{"SourceID":77587,"TargetID":77588,"Directional":false}]},{"ID":2978,"SourceStructureID":68480,"TargetStructureID":5562,"Label":"68480-5562 via Adherens from 84036 -> 76685, 84047 -> 77155","Type":"Adherens","Directional":false,"Links":[{"SourceID":84036,"TargetID":76685,"Directional":false},{"SourceID":84047,"TargetID":77155,"Directional":false}]},{"ID":2979,"SourceStructureID":68480,"TargetStructureID":5562,"Label":"68480-5562 via Unknown from 84037 -> 76692, 116711 -> 76926, 134314 -> 76686","Type":"Unknown","Directional":false,"Links":[{"SourceID":84037,"TargetID":76692,"Directional":false},{"SourceID":116711,"TargetID":76926,"Directional":false},{"SourceID":134314,"TargetID":76686,"Directional":false}]},{"ID":2980,"SourceStructureID":69537,"TargetStructureID":5562,"Label":"69537-5562 via Touch from 69617 -> 69618","Type":"Touch","Directional":false,"Links":[{"SourceID":69617,"TargetID":69618,"Directional":false}]},{"ID":2981,"SourceStructureID":76255,"TargetStructureID":5562,"Label":"76255-5562 via Unknown from 135129 -> 135128","Type":"Unknown","Directional":false,"Links":[{"SourceID":135129,"TargetID":135128,"Directional":false}]},{"ID":2982,"SourceStructureID":76257,"TargetStructureID":5562,"Label":"76257-5562 via Adherens from 76258 -> 76259","Type":"Adherens","Directional":false,"Links":[{"SourceID":76258,"TargetID":76259,"Directional":false}]},{"ID":2983,"SourceStructureID":5562,"TargetStructureID":76286,"Label":"5562-76286 via Unknown from 76285 -> 76287","Type":"Unknown","Directional":false,"Links":[{"SourceID":76285,"TargetID":76287,"Directional":false}]},{"ID":2984,"SourceStructureID":76288,"TargetStructureID":5562,"Label":"76288-5562 via Unknown from 76289 -> 76290","Type":"Unknown","Directional":false,"Links":[{"SourceID":76289,"TargetID":76290,"Directional":false}]},{"ID":2985,"SourceStructureID":76302,"TargetStructureID":5562,"Label":"76302-5562 via Adherens from 76303 -> 76304","Type":"Adherens","Directional":false,"Links":[{"SourceID":76303,"TargetID":76304,"Directional":false}]},{"ID":2986,"SourceStructureID":76315,"TargetStructureID":5562,"Label":"76315-5562 via Unknown from 76316 -> 76314","Type":"Unknown","Directional":false,"Links":[{"SourceID":76316,"TargetID":76314,"Directional":false}]},{"ID":2987,"SourceStructureID":76332,"TargetStructureID":5562,"Label":"76332-5562 via Unknown from 76333 -> 76331","Type":"Unknown","Directional":false,"Links":[{"SourceID":76333,"TargetID":76331,"Directional":false}]},{"ID":2988,"SourceStructureID":5562,"TargetStructureID":76334,"Label":"5562-76334 via Adherens from 54193 -> 76335","Type":"Adherens","Directional":false,"Links":[{"SourceID":54193,"TargetID":76335,"Directional":false}]},{"ID":2989,"SourceStructureID":76340,"TargetStructureID":5562,"Label":"76340-5562 via Unknown from 76342 -> 76343","Type":"Unknown","Directional":false,"Links":[{"SourceID":76342,"TargetID":76343,"Directional":false}]},{"ID":2990,"SourceStructureID":5562,"TargetStructureID":76349,"Label":"5562-76349 via Unknown from 76354 -> 76355","Type":"Unknown","Directional":false,"Links":[{"SourceID":76354,"TargetID":76355,"Directional":false}]},{"ID":2991,"SourceStructureID":76351,"TargetStructureID":5562,"Label":"76351-5562 via Adherens from 76353 -> 76352","Type":"Adherens","Directional":false,"Links":[{"SourceID":76353,"TargetID":76352,"Directional":false}]},{"ID":2992,"SourceStructureID":76356,"TargetStructureID":5562,"Label":"76356-5562 via Unknown from 76361 -> 76360","Type":"Unknown","Directional":false,"Links":[{"SourceID":76361,"TargetID":76360,"Directional":false}]},{"ID":2993,"SourceStructureID":76357,"TargetStructureID":5562,"Label":"76357-5562 via Unknown from 76359 -> 76358","Type":"Unknown","Directional":false,"Links":[{"SourceID":76359,"TargetID":76358,"Directional":false}]},{"ID":2994,"SourceStructureID":5562,"TargetStructureID":76379,"Label":"5562-76379 via Unknown from 76380 -> 76381","Type":"Unknown","Directional":false,"Links":[{"SourceID":76380,"TargetID":76381,"Directional":false}]},{"ID":2995,"SourceStructureID":76386,"TargetStructureID":5562,"Label":"76386-5562 via Adherens from 76388 -> 76389","Type":"Adherens","Directional":false,"Links":[{"SourceID":76388,"TargetID":76389,"Directional":false}]},{"ID":2996,"SourceStructureID":76399,"TargetStructureID":5562,"Label":"76399-5562 via Unknown from 76400 -> 76398","Type":"Unknown","Directional":false,"Links":[{"SourceID":76400,"TargetID":76398,"Directional":false}]},{"ID":2997,"SourceStructureID":5562,"TargetStructureID":76414,"Label":"5562-76414 via Adherens from 76417 -> 76418","Type":"Adherens","Directional":false,"Links":[{"SourceID":76417,"TargetID":76418,"Directional":false}]},{"ID":2998,"SourceStructureID":5562,"TargetStructureID":76426,"Label":"5562-76426 via Adherens from 76428 -> 76429","Type":"Adherens","Directional":false,"Links":[{"SourceID":76428,"TargetID":76429,"Directional":false}]},{"ID":2999,"SourceStructureID":5562,"TargetStructureID":76448,"Label":"5562-76448 via Adherens from 76447 -> 76449","Type":"Adherens","Directional":false,"Links":[{"SourceID":76447,"TargetID":76449,"Directional":false}]},{"ID":3000,"SourceStructureID":5562,"TargetStructureID":76503,"Label":"5562-76503 via Unknown from 76501 -> 76504","Type":"Unknown","Directional":false,"Links":[{"SourceID":76501,"TargetID":76504,"Directional":false}]},{"ID":3001,"SourceStructureID":5562,"TargetStructureID":76533,"Label":"5562-76533 via Adherens from 76535 -> 76534, 76536 -> 76537, 76538 -> 76539","Type":"Adherens","Directional":false,"Links":[{"SourceID":76535,"TargetID":76534,"Directional":false},{"SourceID":76536,"TargetID":76537,"Directional":false},{"SourceID":76538,"TargetID":76539,"Directional":false}]},{"ID":3002,"SourceStructureID":5562,"TargetStructureID":76543,"Label":"5562-76543 via Adherens from 76587 -> 76588, 76589 -> 76590","Type":"Adherens","Directional":false,"Links":[{"SourceID":76587,"TargetID":76588,"Directional":false},{"SourceID":76589,"TargetID":76590,"Directional":false}]},{"ID":3003,"SourceStructureID":5562,"TargetStructureID":76543,"Label":"5562-76543 via Unknown from 76542 -> 76544","Type":"Unknown","Directional":false,"Links":[{"SourceID":76542,"TargetID":76544,"Directional":false}]},{"ID":3004,"SourceStructureID":5562,"TargetStructureID":76552,"Label":"5562-76552 via Unknown from 76559 -> 76585","Type":"Unknown","Directional":false,"Links":[{"SourceID":76559,"TargetID":76585,"Directional":false}]},{"ID":3005,"SourceStructureID":5562,"TargetStructureID":76556,"Label":"5562-76556 via Unknown from 76558 -> 76557","Type":"Unknown","Directional":false,"Links":[{"SourceID":76558,"TargetID":76557,"Directional":false}]},{"ID":3006,"SourceStructureID":76561,"TargetStructureID":5562,"Label":"76561-5562 via Adherens from 76564 -> 76565","Type":"Adherens","Directional":false,"Links":[{"SourceID":76564,"TargetID":76565,"Directional":false}]},{"ID":3007,"SourceStructureID":5562,"TargetStructureID":76638,"Label":"5562-76638 via Unknown from 76642 -> 76641","Type":"Unknown","Directional":false,"Links":[{"SourceID":76642,"TargetID":76641,"Directional":false}]},{"ID":3008,"SourceStructureID":5562,"TargetStructureID":76670,"Label":"5562-76670 via Gap Junction from 63219 -> 76674","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63219,"TargetID":76674,"Directional":false}]},{"ID":3009,"SourceStructureID":76671,"TargetStructureID":5562,"Label":"76671-5562 via Adherens from 76694 -> 76695","Type":"Adherens","Directional":false,"Links":[{"SourceID":76694,"TargetID":76695,"Directional":false}]},{"ID":3010,"SourceStructureID":76671,"TargetStructureID":5562,"Label":"76671-5562 via Unknown from 76696 -> 76697","Type":"Unknown","Directional":false,"Links":[{"SourceID":76696,"TargetID":76697,"Directional":false}]},{"ID":3011,"SourceStructureID":5562,"TargetStructureID":76688,"Label":"5562-76688 via Unknown from 76690 -> 76691","Type":"Unknown","Directional":false,"Links":[{"SourceID":76690,"TargetID":76691,"Directional":false}]},{"ID":3012,"SourceStructureID":76698,"TargetStructureID":5562,"Label":"76698-5562 via Unknown from 76700 -> 76699","Type":"Unknown","Directional":false,"Links":[{"SourceID":76700,"TargetID":76699,"Directional":false}]},{"ID":3013,"SourceStructureID":5562,"TargetStructureID":76711,"Label":"5562-76711 via Adherens from 76714 -> 76713","Type":"Adherens","Directional":false,"Links":[{"SourceID":76714,"TargetID":76713,"Directional":false}]},{"ID":3014,"SourceStructureID":5562,"TargetStructureID":76719,"Label":"5562-76719 via Adherens from 76892 -> 76893","Type":"Adherens","Directional":false,"Links":[{"SourceID":76892,"TargetID":76893,"Directional":false}]},{"ID":3015,"SourceStructureID":5562,"TargetStructureID":76724,"Label":"5562-76724 via Unknown from 76726 -> 76725","Type":"Unknown","Directional":false,"Links":[{"SourceID":76726,"TargetID":76725,"Directional":false}]},{"ID":3016,"SourceStructureID":76728,"TargetStructureID":5562,"Label":"76728-5562 via Unknown from 76729 -> 76727, 76907 -> 76906","Type":"Unknown","Directional":false,"Links":[{"SourceID":76729,"TargetID":76727,"Directional":false},{"SourceID":76907,"TargetID":76906,"Directional":false}]},{"ID":3017,"SourceStructureID":76730,"TargetStructureID":5562,"Label":"76730-5562 via Adherens from 76909 -> 76908","Type":"Adherens","Directional":false,"Links":[{"SourceID":76909,"TargetID":76908,"Directional":false}]},{"ID":3018,"SourceStructureID":5562,"TargetStructureID":76735,"Label":"5562-76735 via Unknown from 76897 -> 76898","Type":"Unknown","Directional":false,"Links":[{"SourceID":76897,"TargetID":76898,"Directional":false}]},{"ID":3019,"SourceStructureID":76895,"TargetStructureID":5562,"Label":"76895-5562 via Unknown from 76896 -> 76894","Type":"Unknown","Directional":false,"Links":[{"SourceID":76896,"TargetID":76894,"Directional":false}]},{"ID":3020,"SourceStructureID":76919,"TargetStructureID":5562,"Label":"76919-5562 via Adherens from 76921 -> 76920, 76922 -> 76923","Type":"Adherens","Directional":false,"Links":[{"SourceID":76921,"TargetID":76920,"Directional":false},{"SourceID":76922,"TargetID":76923,"Directional":false}]},{"ID":3021,"SourceStructureID":5562,"TargetStructureID":76931,"Label":"5562-76931 via Adherens from 76930 -> 76932","Type":"Adherens","Directional":false,"Links":[{"SourceID":76930,"TargetID":76932,"Directional":false}]},{"ID":3022,"SourceStructureID":5562,"TargetStructureID":76931,"Label":"5562-76931 via BC Conventional Synapse from 134315 -> 134316","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":134315,"TargetID":134316,"Directional":false}]},{"ID":3023,"SourceStructureID":5562,"TargetStructureID":76938,"Label":"5562-76938 via Unknown from 76937 -> 76939","Type":"Unknown","Directional":false,"Links":[{"SourceID":76937,"TargetID":76939,"Directional":false}]},{"ID":3024,"SourceStructureID":5562,"TargetStructureID":76944,"Label":"5562-76944 via Unknown from 135300 -> 134317","Type":"Unknown","Directional":false,"Links":[{"SourceID":135300,"TargetID":134317,"Directional":false}]},{"ID":3025,"SourceStructureID":76953,"TargetStructureID":5562,"Label":"76953-5562 via Adherens from 76954 -> 76955","Type":"Adherens","Directional":false,"Links":[{"SourceID":76954,"TargetID":76955,"Directional":false}]},{"ID":3026,"SourceStructureID":5562,"TargetStructureID":76958,"Label":"5562-76958 via Unknown from 76960 -> 76959","Type":"Unknown","Directional":false,"Links":[{"SourceID":76960,"TargetID":76959,"Directional":false}]},{"ID":3027,"SourceStructureID":5562,"TargetStructureID":77116,"Label":"5562-77116 via Unknown from 77115 -> 77117","Type":"Unknown","Directional":false,"Links":[{"SourceID":77115,"TargetID":77117,"Directional":false}]},{"ID":3028,"SourceStructureID":5562,"TargetStructureID":77124,"Label":"5562-77124 via Adherens from 63228 -> 77125","Type":"Adherens","Directional":false,"Links":[{"SourceID":63228,"TargetID":77125,"Directional":false}]},{"ID":3029,"SourceStructureID":5562,"TargetStructureID":77126,"Label":"5562-77126 via Unknown from 77127 -> 81504","Type":"Unknown","Directional":false,"Links":[{"SourceID":77127,"TargetID":81504,"Directional":false}]},{"ID":3030,"SourceStructureID":5562,"TargetStructureID":77156,"Label":"5562-77156 via Unknown from 77158 -> 77157","Type":"Unknown","Directional":false,"Links":[{"SourceID":77158,"TargetID":77157,"Directional":false}]},{"ID":3031,"SourceStructureID":77160,"TargetStructureID":5562,"Label":"77160-5562 via Unknown from 77161 -> 77159, 77193 -> 77194, 77198 -> 77192","Type":"Unknown","Directional":false,"Links":[{"SourceID":77161,"TargetID":77159,"Directional":false},{"SourceID":77193,"TargetID":77194,"Directional":false},{"SourceID":77198,"TargetID":77192,"Directional":false}]},{"ID":3032,"SourceStructureID":77163,"TargetStructureID":5562,"Label":"77163-5562 via Unknown from 77164 -> 77162","Type":"Unknown","Directional":false,"Links":[{"SourceID":77164,"TargetID":77162,"Directional":false}]},{"ID":3033,"SourceStructureID":5562,"TargetStructureID":77179,"Label":"5562-77179 via Adherens from 77178 -> 77180","Type":"Adherens","Directional":false,"Links":[{"SourceID":77178,"TargetID":77180,"Directional":false}]},{"ID":3034,"SourceStructureID":5562,"TargetStructureID":77179,"Label":"5562-77179 via Gap Junction from 77181 -> 77182","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":77181,"TargetID":77182,"Directional":false}]},{"ID":3035,"SourceStructureID":5562,"TargetStructureID":77202,"Label":"5562-77202 via Unknown from 77203 -> 77204","Type":"Unknown","Directional":false,"Links":[{"SourceID":77203,"TargetID":77204,"Directional":false}]},{"ID":3036,"SourceStructureID":5562,"TargetStructureID":77236,"Label":"5562-77236 via Adherens from 77235 -> 77237","Type":"Adherens","Directional":false,"Links":[{"SourceID":77235,"TargetID":77237,"Directional":false}]},{"ID":3037,"SourceStructureID":5562,"TargetStructureID":77236,"Label":"5562-77236 via Unknown from 77251 -> 134321","Type":"Unknown","Directional":false,"Links":[{"SourceID":77251,"TargetID":134321,"Directional":false}]},{"ID":3038,"SourceStructureID":77262,"TargetStructureID":5562,"Label":"77262-5562 via Adherens from 77263 -> 77261","Type":"Adherens","Directional":false,"Links":[{"SourceID":77263,"TargetID":77261,"Directional":false}]},{"ID":3039,"SourceStructureID":5562,"TargetStructureID":77266,"Label":"5562-77266 via Unknown from 77265 -> 77267","Type":"Unknown","Directional":false,"Links":[{"SourceID":77265,"TargetID":77267,"Directional":false}]},{"ID":3040,"SourceStructureID":5562,"TargetStructureID":77270,"Label":"5562-77270 via Adherens from 77282 -> 77283","Type":"Adherens","Directional":false,"Links":[{"SourceID":77282,"TargetID":77283,"Directional":false}]},{"ID":3041,"SourceStructureID":5562,"TargetStructureID":77286,"Label":"5562-77286 via Adherens from 77288 -> 77287","Type":"Adherens","Directional":false,"Links":[{"SourceID":77288,"TargetID":77287,"Directional":false}]},{"ID":3042,"SourceStructureID":5562,"TargetStructureID":77289,"Label":"5562-77289 via Unknown from 77290 -> 77291","Type":"Unknown","Directional":false,"Links":[{"SourceID":77290,"TargetID":77291,"Directional":false}]},{"ID":3043,"SourceStructureID":5562,"TargetStructureID":77296,"Label":"5562-77296 via Unknown from 77429 -> 77430","Type":"Unknown","Directional":false,"Links":[{"SourceID":77429,"TargetID":77430,"Directional":false}]},{"ID":3044,"SourceStructureID":5562,"TargetStructureID":77299,"Label":"5562-77299 via Unknown from 77301 -> 77302","Type":"Unknown","Directional":false,"Links":[{"SourceID":77301,"TargetID":77302,"Directional":false}]},{"ID":3045,"SourceStructureID":5562,"TargetStructureID":77310,"Label":"5562-77310 via Unknown from 77311 -> 77312","Type":"Unknown","Directional":false,"Links":[{"SourceID":77311,"TargetID":77312,"Directional":false}]},{"ID":3046,"SourceStructureID":77321,"TargetStructureID":5562,"Label":"77321-5562 via Unknown from 134322 -> 77319","Type":"Unknown","Directional":false,"Links":[{"SourceID":134322,"TargetID":77319,"Directional":false}]},{"ID":3047,"SourceStructureID":5562,"TargetStructureID":77417,"Label":"5562-77417 via Unknown from 77416 -> 77418","Type":"Unknown","Directional":false,"Links":[{"SourceID":77416,"TargetID":77418,"Directional":false}]},{"ID":3048,"SourceStructureID":77423,"TargetStructureID":5562,"Label":"77423-5562 via Unknown from 77424 -> 77425","Type":"Unknown","Directional":false,"Links":[{"SourceID":77424,"TargetID":77425,"Directional":false}]},{"ID":3049,"SourceStructureID":77446,"TargetStructureID":5562,"Label":"77446-5562 via Unknown from 77447 -> 77445","Type":"Unknown","Directional":false,"Links":[{"SourceID":77447,"TargetID":77445,"Directional":false}]},{"ID":3050,"SourceStructureID":5562,"TargetStructureID":77450,"Label":"5562-77450 via Adherens from 77449 -> 77451","Type":"Adherens","Directional":false,"Links":[{"SourceID":77449,"TargetID":77451,"Directional":false}]},{"ID":3051,"SourceStructureID":5562,"TargetStructureID":77456,"Label":"5562-77456 via Unknown from 77452 -> 77457","Type":"Unknown","Directional":false,"Links":[{"SourceID":77452,"TargetID":77457,"Directional":false}]},{"ID":3052,"SourceStructureID":77473,"TargetStructureID":5562,"Label":"77473-5562 via Unknown from 77474 -> 77472","Type":"Unknown","Directional":false,"Links":[{"SourceID":77474,"TargetID":77472,"Directional":false}]},{"ID":3053,"SourceStructureID":77507,"TargetStructureID":5562,"Label":"77507-5562 via Unknown from 77508 -> 77509","Type":"Unknown","Directional":false,"Links":[{"SourceID":77508,"TargetID":77509,"Directional":false}]},{"ID":3054,"SourceStructureID":5562,"TargetStructureID":77510,"Label":"5562-77510 via Unknown from 134577 -> 134578","Type":"Unknown","Directional":false,"Links":[{"SourceID":134577,"TargetID":134578,"Directional":false}]},{"ID":3055,"SourceStructureID":5562,"TargetStructureID":77516,"Label":"5562-77516 via Adherens from 77517 -> 77518","Type":"Adherens","Directional":false,"Links":[{"SourceID":77517,"TargetID":77518,"Directional":false}]},{"ID":3056,"SourceStructureID":5562,"TargetStructureID":77519,"Label":"5562-77519 via Unknown from 77520 -> 77521","Type":"Unknown","Directional":false,"Links":[{"SourceID":77520,"TargetID":77521,"Directional":false}]},{"ID":3057,"SourceStructureID":5562,"TargetStructureID":77522,"Label":"5562-77522 via Unknown from 77524 -> 77523","Type":"Unknown","Directional":false,"Links":[{"SourceID":77524,"TargetID":77523,"Directional":false}]},{"ID":3058,"SourceStructureID":77533,"TargetStructureID":5562,"Label":"77533-5562 via Unknown from 77584 -> 77583","Type":"Unknown","Directional":false,"Links":[{"SourceID":77584,"TargetID":77583,"Directional":false}]},{"ID":3059,"SourceStructureID":5562,"TargetStructureID":77536,"Label":"5562-77536 via Unknown from 77538 -> 77537","Type":"Unknown","Directional":false,"Links":[{"SourceID":77538,"TargetID":77537,"Directional":false}]},{"ID":3060,"SourceStructureID":5562,"TargetStructureID":77550,"Label":"5562-77550 via Unknown from 77554 -> 77553","Type":"Unknown","Directional":false,"Links":[{"SourceID":77554,"TargetID":77553,"Directional":false}]},{"ID":3061,"SourceStructureID":5562,"TargetStructureID":77561,"Label":"5562-77561 via Adherens from 77560 -> 77562, 77581 -> 77582","Type":"Adherens","Directional":false,"Links":[{"SourceID":77560,"TargetID":77562,"Directional":false},{"SourceID":77581,"TargetID":77582,"Directional":false}]},{"ID":3062,"SourceStructureID":5562,"TargetStructureID":77572,"Label":"5562-77572 via Unknown from 77573 -> 77574","Type":"Unknown","Directional":false,"Links":[{"SourceID":77573,"TargetID":77574,"Directional":false}]},{"ID":3063,"SourceStructureID":5562,"TargetStructureID":77578,"Label":"5562-77578 via Unknown from 77580 -> 77579","Type":"Unknown","Directional":false,"Links":[{"SourceID":77580,"TargetID":77579,"Directional":false}]},{"ID":3064,"SourceStructureID":5562,"TargetStructureID":77612,"Label":"5562-77612 via Unknown from 77616 -> 77617","Type":"Unknown","Directional":false,"Links":[{"SourceID":77616,"TargetID":77617,"Directional":false}]},{"ID":3065,"SourceStructureID":5562,"TargetStructureID":77726,"Label":"5562-77726 via Unknown from 77725 -> 77727","Type":"Unknown","Directional":false,"Links":[{"SourceID":77725,"TargetID":77727,"Directional":false}]},{"ID":3066,"SourceStructureID":5562,"TargetStructureID":77731,"Label":"5562-77731 via Unknown from 77730 -> 77732","Type":"Unknown","Directional":false,"Links":[{"SourceID":77730,"TargetID":77732,"Directional":false}]},{"ID":3067,"SourceStructureID":77733,"TargetStructureID":5562,"Label":"77733-5562 via Unknown from 77735 -> 77734","Type":"Unknown","Directional":false,"Links":[{"SourceID":77735,"TargetID":77734,"Directional":false}]},{"ID":3068,"SourceStructureID":5562,"TargetStructureID":77736,"Label":"5562-77736 via Unknown from 77739 -> 77740","Type":"Unknown","Directional":false,"Links":[{"SourceID":77739,"TargetID":77740,"Directional":false}]},{"ID":3069,"SourceStructureID":77745,"TargetStructureID":5562,"Label":"77745-5562 via Unknown from 77746 -> 77744","Type":"Unknown","Directional":false,"Links":[{"SourceID":77746,"TargetID":77744,"Directional":false}]},{"ID":3070,"SourceStructureID":5562,"TargetStructureID":77765,"Label":"5562-77765 via Unknown from 77768 -> 77769","Type":"Unknown","Directional":false,"Links":[{"SourceID":77768,"TargetID":77769,"Directional":false}]},{"ID":3071,"SourceStructureID":77786,"TargetStructureID":5562,"Label":"77786-5562 via Unknown from 77787 -> 77788","Type":"Unknown","Directional":false,"Links":[{"SourceID":77787,"TargetID":77788,"Directional":false}]},{"ID":3072,"SourceStructureID":5562,"TargetStructureID":77790,"Label":"5562-77790 via Unknown from 77789 -> 77791","Type":"Unknown","Directional":false,"Links":[{"SourceID":77789,"TargetID":77791,"Directional":false}]},{"ID":3073,"SourceStructureID":5562,"TargetStructureID":77811,"Label":"5562-77811 via Unknown from 77813 -> 77814","Type":"Unknown","Directional":false,"Links":[{"SourceID":77813,"TargetID":77814,"Directional":false}]},{"ID":3074,"SourceStructureID":5562,"TargetStructureID":77816,"Label":"5562-77816 via Adherens from 77815 -> 77817","Type":"Adherens","Directional":false,"Links":[{"SourceID":77815,"TargetID":77817,"Directional":false}]},{"ID":3075,"SourceStructureID":5562,"TargetStructureID":77826,"Label":"5562-77826 via Adherens from 77829 -> 77830","Type":"Adherens","Directional":false,"Links":[{"SourceID":77829,"TargetID":77830,"Directional":false}]},{"ID":3076,"SourceStructureID":5562,"TargetStructureID":77840,"Label":"5562-77840 via Adherens from 63277 -> 82417, 77880 -> 82416","Type":"Adherens","Directional":false,"Links":[{"SourceID":63277,"TargetID":82417,"Directional":false},{"SourceID":77880,"TargetID":82416,"Directional":false}]},{"ID":3077,"SourceStructureID":5562,"TargetStructureID":77840,"Label":"5562-77840 via Gap Junction from 63067 -> 76282, 77863 -> 82415","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63067,"TargetID":76282,"Directional":false},{"SourceID":77863,"TargetID":82415,"Directional":false}]},{"ID":3078,"SourceStructureID":5562,"TargetStructureID":77846,"Label":"5562-77846 via Unknown from 77845 -> 77847","Type":"Unknown","Directional":false,"Links":[{"SourceID":77845,"TargetID":77847,"Directional":false}]},{"ID":3079,"SourceStructureID":77848,"TargetStructureID":5562,"Label":"77848-5562 via Adherens from 134427 -> 134426","Type":"Adherens","Directional":false,"Links":[{"SourceID":134427,"TargetID":134426,"Directional":false}]},{"ID":3080,"SourceStructureID":77855,"TargetStructureID":5562,"Label":"77855-5562 via Unknown from 77856 -> 77854","Type":"Unknown","Directional":false,"Links":[{"SourceID":77856,"TargetID":77854,"Directional":false}]},{"ID":3081,"SourceStructureID":5562,"TargetStructureID":77858,"Label":"5562-77858 via Unknown from 77857 -> 77859","Type":"Unknown","Directional":false,"Links":[{"SourceID":77857,"TargetID":77859,"Directional":false}]},{"ID":3082,"SourceStructureID":5562,"TargetStructureID":77865,"Label":"5562-77865 via Adherens from 77866 -> 77867","Type":"Adherens","Directional":false,"Links":[{"SourceID":77866,"TargetID":77867,"Directional":false}]},{"ID":3083,"SourceStructureID":5562,"TargetStructureID":77872,"Label":"5562-77872 via Unknown from 77874 -> 77873","Type":"Unknown","Directional":false,"Links":[{"SourceID":77874,"TargetID":77873,"Directional":false}]},{"ID":3084,"SourceStructureID":5562,"TargetStructureID":77885,"Label":"5562-77885 via Adherens from 77886 -> 77887","Type":"Adherens","Directional":false,"Links":[{"SourceID":77886,"TargetID":77887,"Directional":false}]},{"ID":3085,"SourceStructureID":5562,"TargetStructureID":77889,"Label":"5562-77889 via Unknown from 77891 -> 77890","Type":"Unknown","Directional":false,"Links":[{"SourceID":77891,"TargetID":77890,"Directional":false}]},{"ID":3086,"SourceStructureID":5562,"TargetStructureID":77893,"Label":"5562-77893 via Adherens from 77895 -> 77894","Type":"Adherens","Directional":false,"Links":[{"SourceID":77895,"TargetID":77894,"Directional":false}]},{"ID":3087,"SourceStructureID":5562,"TargetStructureID":78098,"Label":"5562-78098 via Gap Junction from 78101 -> 78100","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":78101,"TargetID":78100,"Directional":false}]},{"ID":3088,"SourceStructureID":5562,"TargetStructureID":78098,"Label":"5562-78098 via Unknown from 78097 -> 78099","Type":"Unknown","Directional":false,"Links":[{"SourceID":78097,"TargetID":78099,"Directional":false}]},{"ID":3089,"SourceStructureID":5562,"TargetStructureID":78102,"Label":"5562-78102 via Unknown from 78104 -> 78103","Type":"Unknown","Directional":false,"Links":[{"SourceID":78104,"TargetID":78103,"Directional":false}]},{"ID":3090,"SourceStructureID":78107,"TargetStructureID":5562,"Label":"78107-5562 via Unknown from 78121 -> 78120","Type":"Unknown","Directional":false,"Links":[{"SourceID":78121,"TargetID":78120,"Directional":false}]},{"ID":3091,"SourceStructureID":5562,"TargetStructureID":78109,"Label":"5562-78109 via Adherens from 78111 -> 78110","Type":"Adherens","Directional":false,"Links":[{"SourceID":78111,"TargetID":78110,"Directional":false}]},{"ID":3092,"SourceStructureID":5562,"TargetStructureID":78124,"Label":"5562-78124 via Adherens from 63338 -> 78125, 78138 -> 78137","Type":"Adherens","Directional":false,"Links":[{"SourceID":63338,"TargetID":78125,"Directional":false},{"SourceID":78138,"TargetID":78137,"Directional":false}]},{"ID":3093,"SourceStructureID":5562,"TargetStructureID":78126,"Label":"5562-78126 via Adherens from 49536 -> 78846, 63658 -> 78546","Type":"Adherens","Directional":false,"Links":[{"SourceID":49536,"TargetID":78846,"Directional":false},{"SourceID":63658,"TargetID":78546,"Directional":false}]},{"ID":3094,"SourceStructureID":78126,"TargetStructureID":5562,"Label":"78126-5562 via Gap Junction from 78547 -> 63657, 135139 -> 135138","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":78547,"TargetID":63657,"Directional":false},{"SourceID":135139,"TargetID":135138,"Directional":false}]},{"ID":3095,"SourceStructureID":5562,"TargetStructureID":78126,"Label":"5562-78126 via Unknown from 78127 -> 78128, 78577 -> 78576, 135137 -> 78504","Type":"Unknown","Directional":false,"Links":[{"SourceID":78127,"TargetID":78128,"Directional":false},{"SourceID":78577,"TargetID":78576,"Directional":false},{"SourceID":135137,"TargetID":78504,"Directional":false}]},{"ID":3096,"SourceStructureID":78129,"TargetStructureID":5562,"Label":"78129-5562 via Adherens from 78130 -> 78131","Type":"Adherens","Directional":false,"Links":[{"SourceID":78130,"TargetID":78131,"Directional":false}]},{"ID":3097,"SourceStructureID":5562,"TargetStructureID":78143,"Label":"5562-78143 via Unknown from 78144 -> 78145","Type":"Unknown","Directional":false,"Links":[{"SourceID":78144,"TargetID":78145,"Directional":false}]},{"ID":3098,"SourceStructureID":78146,"TargetStructureID":5562,"Label":"78146-5562 via Adherens from 78148 -> 78147","Type":"Adherens","Directional":false,"Links":[{"SourceID":78148,"TargetID":78147,"Directional":false}]},{"ID":3099,"SourceStructureID":5562,"TargetStructureID":78149,"Label":"5562-78149 via Unknown from 78150 -> 78151","Type":"Unknown","Directional":false,"Links":[{"SourceID":78150,"TargetID":78151,"Directional":false}]},{"ID":3100,"SourceStructureID":5562,"TargetStructureID":78152,"Label":"5562-78152 via Unknown from 78154 -> 78153","Type":"Unknown","Directional":false,"Links":[{"SourceID":78154,"TargetID":78153,"Directional":false}]},{"ID":3101,"SourceStructureID":5562,"TargetStructureID":78157,"Label":"5562-78157 via Adherens from 78159 -> 78158","Type":"Adherens","Directional":false,"Links":[{"SourceID":78159,"TargetID":78158,"Directional":false}]},{"ID":3102,"SourceStructureID":5562,"TargetStructureID":78183,"Label":"5562-78183 via Unknown from 78184 -> 78185","Type":"Unknown","Directional":false,"Links":[{"SourceID":78184,"TargetID":78185,"Directional":false}]},{"ID":3103,"SourceStructureID":5562,"TargetStructureID":78200,"Label":"5562-78200 via Adherens from 78237 -> 78238","Type":"Adherens","Directional":false,"Links":[{"SourceID":78237,"TargetID":78238,"Directional":false}]},{"ID":3104,"SourceStructureID":78220,"TargetStructureID":5562,"Label":"78220-5562 via Unknown from 78221 -> 78213","Type":"Unknown","Directional":false,"Links":[{"SourceID":78221,"TargetID":78213,"Directional":false}]},{"ID":3105,"SourceStructureID":5562,"TargetStructureID":78222,"Label":"5562-78222 via Unknown from 63353 -> 78231","Type":"Unknown","Directional":false,"Links":[{"SourceID":63353,"TargetID":78231,"Directional":false}]},{"ID":3106,"SourceStructureID":78239,"TargetStructureID":5562,"Label":"78239-5562 via Unknown from 78241 -> 78240","Type":"Unknown","Directional":false,"Links":[{"SourceID":78241,"TargetID":78240,"Directional":false}]},{"ID":3107,"SourceStructureID":5562,"TargetStructureID":78248,"Label":"5562-78248 via Unknown from 78259 -> 78260","Type":"Unknown","Directional":false,"Links":[{"SourceID":78259,"TargetID":78260,"Directional":false}]},{"ID":3108,"SourceStructureID":78261,"TargetStructureID":5562,"Label":"78261-5562 via Unknown from 78269 -> 78270","Type":"Unknown","Directional":false,"Links":[{"SourceID":78269,"TargetID":78270,"Directional":false}]},{"ID":3109,"SourceStructureID":5562,"TargetStructureID":78262,"Label":"5562-78262 via Adherens from 78606 -> 78605","Type":"Adherens","Directional":false,"Links":[{"SourceID":78606,"TargetID":78605,"Directional":false}]},{"ID":3110,"SourceStructureID":78262,"TargetStructureID":5562,"Label":"78262-5562 via Unknown from 78268 -> 78267, 79901 -> 79902","Type":"Unknown","Directional":false,"Links":[{"SourceID":78268,"TargetID":78267,"Directional":false},{"SourceID":79901,"TargetID":79902,"Directional":false}]},{"ID":3111,"SourceStructureID":78263,"TargetStructureID":5562,"Label":"78263-5562 via Unknown from 78264 -> 78266","Type":"Unknown","Directional":false,"Links":[{"SourceID":78264,"TargetID":78266,"Directional":false}]},{"ID":3112,"SourceStructureID":5562,"TargetStructureID":78275,"Label":"5562-78275 via Adherens from 78274 -> 78276","Type":"Adherens","Directional":false,"Links":[{"SourceID":78274,"TargetID":78276,"Directional":false}]},{"ID":3113,"SourceStructureID":5562,"TargetStructureID":78275,"Label":"5562-78275 via Unknown from 78279 -> 78280","Type":"Unknown","Directional":false,"Links":[{"SourceID":78279,"TargetID":78280,"Directional":false}]},{"ID":3114,"SourceStructureID":5562,"TargetStructureID":78334,"Label":"5562-78334 via Adherens from 78287 -> 78341, 78340 -> 78342","Type":"Adherens","Directional":false,"Links":[{"SourceID":78287,"TargetID":78341,"Directional":false},{"SourceID":78340,"TargetID":78342,"Directional":false}]},{"ID":3115,"SourceStructureID":78336,"TargetStructureID":5562,"Label":"78336-5562 via Unknown from 78337 -> 78339","Type":"Unknown","Directional":false,"Links":[{"SourceID":78337,"TargetID":78339,"Directional":false}]},{"ID":3116,"SourceStructureID":5562,"TargetStructureID":78355,"Label":"5562-78355 via Unknown from 78356 -> 78357","Type":"Unknown","Directional":false,"Links":[{"SourceID":78356,"TargetID":78357,"Directional":false}]},{"ID":3117,"SourceStructureID":5562,"TargetStructureID":78359,"Label":"5562-78359 via Unknown from 78358 -> 78360, 78361 -> 78362","Type":"Unknown","Directional":false,"Links":[{"SourceID":78358,"TargetID":78360,"Directional":false},{"SourceID":78361,"TargetID":78362,"Directional":false}]},{"ID":3118,"SourceStructureID":5562,"TargetStructureID":78364,"Label":"5562-78364 via Adherens from 78363 -> 78365","Type":"Adherens","Directional":false,"Links":[{"SourceID":78363,"TargetID":78365,"Directional":false}]},{"ID":3119,"SourceStructureID":78377,"TargetStructureID":5562,"Label":"78377-5562 via Unknown from 78382 -> 78381","Type":"Unknown","Directional":false,"Links":[{"SourceID":78382,"TargetID":78381,"Directional":false}]},{"ID":3120,"SourceStructureID":5562,"TargetStructureID":78378,"Label":"5562-78378 via Unknown from 78379 -> 78380","Type":"Unknown","Directional":false,"Links":[{"SourceID":78379,"TargetID":78380,"Directional":false}]},{"ID":3121,"SourceStructureID":5562,"TargetStructureID":78387,"Label":"5562-78387 via Adherens from 78386 -> 78388","Type":"Adherens","Directional":false,"Links":[{"SourceID":78386,"TargetID":78388,"Directional":false}]},{"ID":3122,"SourceStructureID":78387,"TargetStructureID":5562,"Label":"78387-5562 via Unknown from 78390 -> 78389","Type":"Unknown","Directional":false,"Links":[{"SourceID":78390,"TargetID":78389,"Directional":false}]},{"ID":3123,"SourceStructureID":5562,"TargetStructureID":78391,"Label":"5562-78391 via BC Conventional Synapse from 63538 -> 78392","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":63538,"TargetID":78392,"Directional":false}]},{"ID":3124,"SourceStructureID":5562,"TargetStructureID":78398,"Label":"5562-78398 via Unknown from 78441 -> 78442","Type":"Unknown","Directional":false,"Links":[{"SourceID":78441,"TargetID":78442,"Directional":false}]},{"ID":3125,"SourceStructureID":5562,"TargetStructureID":78400,"Label":"5562-78400 via Unknown from 78403 -> 78402","Type":"Unknown","Directional":false,"Links":[{"SourceID":78403,"TargetID":78402,"Directional":false}]},{"ID":3126,"SourceStructureID":5562,"TargetStructureID":78409,"Label":"5562-78409 via Unknown from 49398 -> 78410","Type":"Unknown","Directional":false,"Links":[{"SourceID":49398,"TargetID":78410,"Directional":false}]},{"ID":3127,"SourceStructureID":5562,"TargetStructureID":78444,"Label":"5562-78444 via Unknown from 78443 -> 78445","Type":"Unknown","Directional":false,"Links":[{"SourceID":78443,"TargetID":78445,"Directional":false}]},{"ID":3128,"SourceStructureID":78457,"TargetStructureID":5562,"Label":"78457-5562 via Unknown from 78458 -> 78456","Type":"Unknown","Directional":false,"Links":[{"SourceID":78458,"TargetID":78456,"Directional":false}]},{"ID":3129,"SourceStructureID":78459,"TargetStructureID":5562,"Label":"78459-5562 via Adherens from 78460 -> 78461","Type":"Adherens","Directional":false,"Links":[{"SourceID":78460,"TargetID":78461,"Directional":false}]},{"ID":3130,"SourceStructureID":78462,"TargetStructureID":5562,"Label":"78462-5562 via Unknown from 78464 -> 78463","Type":"Unknown","Directional":false,"Links":[{"SourceID":78464,"TargetID":78463,"Directional":false}]},{"ID":3131,"SourceStructureID":5562,"TargetStructureID":78467,"Label":"5562-78467 via Adherens from 63645 -> 78468","Type":"Adherens","Directional":false,"Links":[{"SourceID":63645,"TargetID":78468,"Directional":false}]},{"ID":3132,"SourceStructureID":5562,"TargetStructureID":78478,"Label":"5562-78478 via Unknown from 78480 -> 78481","Type":"Unknown","Directional":false,"Links":[{"SourceID":78480,"TargetID":78481,"Directional":false}]},{"ID":3133,"SourceStructureID":5562,"TargetStructureID":78506,"Label":"5562-78506 via Unknown from 78834 -> 78835","Type":"Unknown","Directional":false,"Links":[{"SourceID":78834,"TargetID":78835,"Directional":false}]},{"ID":3134,"SourceStructureID":5562,"TargetStructureID":78507,"Label":"5562-78507 via Unknown from 78508 -> 78509","Type":"Unknown","Directional":false,"Links":[{"SourceID":78508,"TargetID":78509,"Directional":false}]},{"ID":3135,"SourceStructureID":78510,"TargetStructureID":5562,"Label":"78510-5562 via Adherens from 78511 -> 78512","Type":"Adherens","Directional":false,"Links":[{"SourceID":78511,"TargetID":78512,"Directional":false}]},{"ID":3136,"SourceStructureID":78520,"TargetStructureID":5562,"Label":"78520-5562 via Unknown from 78538 -> 78539","Type":"Unknown","Directional":false,"Links":[{"SourceID":78538,"TargetID":78539,"Directional":false}]},{"ID":3137,"SourceStructureID":5562,"TargetStructureID":78526,"Label":"5562-78526 via Unknown from 78527 -> 78528","Type":"Unknown","Directional":false,"Links":[{"SourceID":78527,"TargetID":78528,"Directional":false}]},{"ID":3138,"SourceStructureID":5562,"TargetStructureID":78529,"Label":"5562-78529 via Unknown from 78530 -> 78531","Type":"Unknown","Directional":false,"Links":[{"SourceID":78530,"TargetID":78531,"Directional":false}]},{"ID":3139,"SourceStructureID":5562,"TargetStructureID":78532,"Label":"5562-78532 via Unknown from 78534 -> 78533","Type":"Unknown","Directional":false,"Links":[{"SourceID":78534,"TargetID":78533,"Directional":false}]},{"ID":3140,"SourceStructureID":78552,"TargetStructureID":5562,"Label":"78552-5562 via Unknown from 78563 -> 78562","Type":"Unknown","Directional":false,"Links":[{"SourceID":78563,"TargetID":78562,"Directional":false}]},{"ID":3141,"SourceStructureID":5562,"TargetStructureID":78568,"Label":"5562-78568 via Adherens from 78567 -> 78569","Type":"Adherens","Directional":false,"Links":[{"SourceID":78567,"TargetID":78569,"Directional":false}]},{"ID":3142,"SourceStructureID":5562,"TargetStructureID":78578,"Label":"5562-78578 via Adherens from 63665 -> 78579","Type":"Adherens","Directional":false,"Links":[{"SourceID":63665,"TargetID":78579,"Directional":false}]},{"ID":3143,"SourceStructureID":5562,"TargetStructureID":78582,"Label":"5562-78582 via Adherens from 63668 -> 78583","Type":"Adherens","Directional":false,"Links":[{"SourceID":63668,"TargetID":78583,"Directional":false}]},{"ID":3144,"SourceStructureID":78588,"TargetStructureID":5562,"Label":"78588-5562 via Unknown from 78592 -> 78593","Type":"Unknown","Directional":false,"Links":[{"SourceID":78592,"TargetID":78593,"Directional":false}]},{"ID":3145,"SourceStructureID":78607,"TargetStructureID":5562,"Label":"78607-5562 via Adherens from 78608 -> 78609","Type":"Adherens","Directional":false,"Links":[{"SourceID":78608,"TargetID":78609,"Directional":false}]},{"ID":3146,"SourceStructureID":78610,"TargetStructureID":5562,"Label":"78610-5562 via Adherens from 132074 -> 132073","Type":"Adherens","Directional":false,"Links":[{"SourceID":132074,"TargetID":132073,"Directional":false}]},{"ID":3147,"SourceStructureID":5562,"TargetStructureID":78617,"Label":"5562-78617 via Unknown from 78619 -> 78620","Type":"Unknown","Directional":false,"Links":[{"SourceID":78619,"TargetID":78620,"Directional":false}]},{"ID":3148,"SourceStructureID":5562,"TargetStructureID":78638,"Label":"5562-78638 via Unknown from 78637 -> 78639","Type":"Unknown","Directional":false,"Links":[{"SourceID":78637,"TargetID":78639,"Directional":false}]},{"ID":3149,"SourceStructureID":78644,"TargetStructureID":5562,"Label":"78644-5562 via Unknown from 78646 -> 78645","Type":"Unknown","Directional":false,"Links":[{"SourceID":78646,"TargetID":78645,"Directional":false}]},{"ID":3150,"SourceStructureID":5562,"TargetStructureID":78660,"Label":"5562-78660 via Unknown from 78661 -> 78662","Type":"Unknown","Directional":false,"Links":[{"SourceID":78661,"TargetID":78662,"Directional":false}]},{"ID":3151,"SourceStructureID":5562,"TargetStructureID":78679,"Label":"5562-78679 via Adherens from 63711 -> 78680","Type":"Adherens","Directional":false,"Links":[{"SourceID":63711,"TargetID":78680,"Directional":false}]},{"ID":3152,"SourceStructureID":78681,"TargetStructureID":5562,"Label":"78681-5562 via Unknown from 78682 -> 78683","Type":"Unknown","Directional":false,"Links":[{"SourceID":78682,"TargetID":78683,"Directional":false}]},{"ID":3153,"SourceStructureID":5562,"TargetStructureID":78686,"Label":"5562-78686 via Unknown from 78690 -> 78687, 78691 -> 78692","Type":"Unknown","Directional":false,"Links":[{"SourceID":78690,"TargetID":78687,"Directional":false},{"SourceID":78691,"TargetID":78692,"Directional":false}]},{"ID":3154,"SourceStructureID":5562,"TargetStructureID":78701,"Label":"5562-78701 via Unknown from 78702 -> 78703","Type":"Unknown","Directional":false,"Links":[{"SourceID":78702,"TargetID":78703,"Directional":false}]},{"ID":3155,"SourceStructureID":5562,"TargetStructureID":78704,"Label":"5562-78704 via Adherens from 63723 -> 78705","Type":"Adherens","Directional":false,"Links":[{"SourceID":63723,"TargetID":78705,"Directional":false}]},{"ID":3156,"SourceStructureID":5562,"TargetStructureID":78735,"Label":"5562-78735 via Unknown from 78745 -> 78743, 78758 -> 78756","Type":"Unknown","Directional":false,"Links":[{"SourceID":78745,"TargetID":78743,"Directional":false},{"SourceID":78758,"TargetID":78756,"Directional":false}]},{"ID":3157,"SourceStructureID":78749,"TargetStructureID":5562,"Label":"78749-5562 via Unknown from 78750 -> 63722","Type":"Unknown","Directional":false,"Links":[{"SourceID":78750,"TargetID":63722,"Directional":false}]},{"ID":3158,"SourceStructureID":5562,"TargetStructureID":78766,"Label":"5562-78766 via Unknown from 78767 -> 78768, 78772 -> 78771","Type":"Unknown","Directional":false,"Links":[{"SourceID":78767,"TargetID":78768,"Directional":false},{"SourceID":78772,"TargetID":78771,"Directional":false}]},{"ID":3159,"SourceStructureID":5562,"TargetStructureID":78775,"Label":"5562-78775 via Adherens from 78778 -> 78779","Type":"Adherens","Directional":false,"Links":[{"SourceID":78778,"TargetID":78779,"Directional":false}]},{"ID":3160,"SourceStructureID":5562,"TargetStructureID":78785,"Label":"5562-78785 via Unknown from 78817 -> 78818","Type":"Unknown","Directional":false,"Links":[{"SourceID":78817,"TargetID":78818,"Directional":false}]},{"ID":3161,"SourceStructureID":78787,"TargetStructureID":5562,"Label":"78787-5562 via Unknown from 78789 -> 78788","Type":"Unknown","Directional":false,"Links":[{"SourceID":78789,"TargetID":78788,"Directional":false}]},{"ID":3162,"SourceStructureID":5562,"TargetStructureID":78790,"Label":"5562-78790 via Unknown from 78802 -> 78803","Type":"Unknown","Directional":false,"Links":[{"SourceID":78802,"TargetID":78803,"Directional":false}]},{"ID":3163,"SourceStructureID":78791,"TargetStructureID":5562,"Label":"78791-5562 via Unknown from 78793 -> 78792","Type":"Unknown","Directional":false,"Links":[{"SourceID":78793,"TargetID":78792,"Directional":false}]},{"ID":3164,"SourceStructureID":5562,"TargetStructureID":78804,"Label":"5562-78804 via Unknown from 78808 -> 78809","Type":"Unknown","Directional":false,"Links":[{"SourceID":78808,"TargetID":78809,"Directional":false}]},{"ID":3165,"SourceStructureID":5562,"TargetStructureID":78822,"Label":"5562-78822 via Unknown from 78832 -> 78833","Type":"Unknown","Directional":false,"Links":[{"SourceID":78832,"TargetID":78833,"Directional":false}]},{"ID":3166,"SourceStructureID":78829,"TargetStructureID":5562,"Label":"78829-5562 via Unknown from 78831 -> 78830","Type":"Unknown","Directional":false,"Links":[{"SourceID":78831,"TargetID":78830,"Directional":false}]},{"ID":3167,"SourceStructureID":5562,"TargetStructureID":78837,"Label":"5562-78837 via BC Conventional Synapse from 78836 -> 78838","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":78836,"TargetID":78838,"Directional":false}]},{"ID":3168,"SourceStructureID":5562,"TargetStructureID":78839,"Label":"5562-78839 via Unknown from 135302 -> 134468","Type":"Unknown","Directional":false,"Links":[{"SourceID":135302,"TargetID":134468,"Directional":false}]},{"ID":3169,"SourceStructureID":78840,"TargetStructureID":5562,"Label":"78840-5562 via Unknown from 134467 -> 78841","Type":"Unknown","Directional":false,"Links":[{"SourceID":134467,"TargetID":78841,"Directional":false}]},{"ID":3170,"SourceStructureID":5562,"TargetStructureID":78852,"Label":"5562-78852 via Unknown from 78854 -> 78853","Type":"Unknown","Directional":false,"Links":[{"SourceID":78854,"TargetID":78853,"Directional":false}]},{"ID":3171,"SourceStructureID":78856,"TargetStructureID":5562,"Label":"78856-5562 via Unknown from 78857 -> 78855","Type":"Unknown","Directional":false,"Links":[{"SourceID":78857,"TargetID":78855,"Directional":false}]},{"ID":3172,"SourceStructureID":5562,"TargetStructureID":78860,"Label":"5562-78860 via Adherens from 78861 -> 78862","Type":"Adherens","Directional":false,"Links":[{"SourceID":78861,"TargetID":78862,"Directional":false}]},{"ID":3173,"SourceStructureID":78894,"TargetStructureID":5562,"Label":"78894-5562 via Adherens from 78895 -> 63757","Type":"Adherens","Directional":false,"Links":[{"SourceID":78895,"TargetID":63757,"Directional":false}]},{"ID":3174,"SourceStructureID":78894,"TargetStructureID":5562,"Label":"78894-5562 via Unknown from 78904 -> 78903","Type":"Unknown","Directional":false,"Links":[{"SourceID":78904,"TargetID":78903,"Directional":false}]},{"ID":3175,"SourceStructureID":5562,"TargetStructureID":78909,"Label":"5562-78909 via Unknown from 77255 -> 87509, 87515 -> 77462","Type":"Unknown","Directional":false,"Links":[{"SourceID":77255,"TargetID":87509,"Directional":false},{"SourceID":87515,"TargetID":77462,"Directional":false}]},{"ID":3176,"SourceStructureID":5562,"TargetStructureID":78917,"Label":"5562-78917 via Adherens from 78916 -> 78918","Type":"Adherens","Directional":false,"Links":[{"SourceID":78916,"TargetID":78918,"Directional":false}]},{"ID":3177,"SourceStructureID":78924,"TargetStructureID":5562,"Label":"78924-5562 via Adherens from 78925 -> 63772","Type":"Adherens","Directional":false,"Links":[{"SourceID":78925,"TargetID":63772,"Directional":false}]},{"ID":3178,"SourceStructureID":5562,"TargetStructureID":78930,"Label":"5562-78930 via Adherens from 63773 -> 78934","Type":"Adherens","Directional":false,"Links":[{"SourceID":63773,"TargetID":78934,"Directional":false}]},{"ID":3179,"SourceStructureID":78938,"TargetStructureID":5562,"Label":"78938-5562 via Adherens from 78994 -> 78995","Type":"Adherens","Directional":false,"Links":[{"SourceID":78994,"TargetID":78995,"Directional":false}]},{"ID":3180,"SourceStructureID":78946,"TargetStructureID":5562,"Label":"78946-5562 via Unknown from 78960 -> 78958","Type":"Unknown","Directional":false,"Links":[{"SourceID":78960,"TargetID":78958,"Directional":false}]},{"ID":3181,"SourceStructureID":78969,"TargetStructureID":5562,"Label":"78969-5562 via Unknown from 78971 -> 78970","Type":"Unknown","Directional":false,"Links":[{"SourceID":78971,"TargetID":78970,"Directional":false}]},{"ID":3182,"SourceStructureID":5562,"TargetStructureID":78988,"Label":"5562-78988 via Unknown from 78989 -> 78990","Type":"Unknown","Directional":false,"Links":[{"SourceID":78989,"TargetID":78990,"Directional":false}]},{"ID":3183,"SourceStructureID":5562,"TargetStructureID":78991,"Label":"5562-78991 via BC Conventional Synapse from 63781 -> 78992","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":63781,"TargetID":78992,"Directional":false}]},{"ID":3184,"SourceStructureID":5562,"TargetStructureID":79017,"Label":"5562-79017 via Adherens from 79164 -> 79165","Type":"Adherens","Directional":false,"Links":[{"SourceID":79164,"TargetID":79165,"Directional":false}]},{"ID":3185,"SourceStructureID":5562,"TargetStructureID":79026,"Label":"5562-79026 via Unknown from 134583 -> 134584","Type":"Unknown","Directional":false,"Links":[{"SourceID":134583,"TargetID":134584,"Directional":false}]},{"ID":3186,"SourceStructureID":5562,"TargetStructureID":79170,"Label":"5562-79170 via Adherens from 79174 -> 79173","Type":"Adherens","Directional":false,"Links":[{"SourceID":79174,"TargetID":79173,"Directional":false}]},{"ID":3187,"SourceStructureID":79175,"TargetStructureID":5562,"Label":"79175-5562 via Adherens from 93088 -> 63836","Type":"Adherens","Directional":false,"Links":[{"SourceID":93088,"TargetID":63836,"Directional":false}]},{"ID":3188,"SourceStructureID":5562,"TargetStructureID":79189,"Label":"5562-79189 via Adherens from 63842 -> 79191","Type":"Adherens","Directional":false,"Links":[{"SourceID":63842,"TargetID":79191,"Directional":false}]},{"ID":3189,"SourceStructureID":5562,"TargetStructureID":79196,"Label":"5562-79196 via Adherens from 79199 -> 79198","Type":"Adherens","Directional":false,"Links":[{"SourceID":79199,"TargetID":79198,"Directional":false}]},{"ID":3190,"SourceStructureID":5562,"TargetStructureID":79196,"Label":"5562-79196 via Unknown from 63845 -> 79197","Type":"Unknown","Directional":false,"Links":[{"SourceID":63845,"TargetID":79197,"Directional":false}]},{"ID":3191,"SourceStructureID":5562,"TargetStructureID":79209,"Label":"5562-79209 via Adherens from 79214 -> 79213","Type":"Adherens","Directional":false,"Links":[{"SourceID":79214,"TargetID":79213,"Directional":false}]},{"ID":3192,"SourceStructureID":5562,"TargetStructureID":79222,"Label":"5562-79222 via Adherens from 79221 -> 79223","Type":"Adherens","Directional":false,"Links":[{"SourceID":79221,"TargetID":79223,"Directional":false}]},{"ID":3193,"SourceStructureID":5562,"TargetStructureID":79224,"Label":"5562-79224 via Unknown from 79225 -> 79226","Type":"Unknown","Directional":false,"Links":[{"SourceID":79225,"TargetID":79226,"Directional":false}]},{"ID":3194,"SourceStructureID":79227,"TargetStructureID":5562,"Label":"79227-5562 via Adherens from 79231 -> 63855","Type":"Adherens","Directional":false,"Links":[{"SourceID":79231,"TargetID":63855,"Directional":false}]},{"ID":3195,"SourceStructureID":79623,"TargetStructureID":5562,"Label":"79623-5562 via Adherens from 79624 -> 79622","Type":"Adherens","Directional":false,"Links":[{"SourceID":79624,"TargetID":79622,"Directional":false}]},{"ID":3196,"SourceStructureID":79643,"TargetStructureID":5562,"Label":"79643-5562 via Adherens from 79644 -> 63873","Type":"Adherens","Directional":false,"Links":[{"SourceID":79644,"TargetID":63873,"Directional":false}]},{"ID":3197,"SourceStructureID":79695,"TargetStructureID":5562,"Label":"79695-5562 via Adherens from 79696 -> 79697","Type":"Adherens","Directional":false,"Links":[{"SourceID":79696,"TargetID":79697,"Directional":false}]},{"ID":3198,"SourceStructureID":79735,"TargetStructureID":5562,"Label":"79735-5562 via Adherens from 79736 -> 79737","Type":"Adherens","Directional":false,"Links":[{"SourceID":79736,"TargetID":79737,"Directional":false}]},{"ID":3199,"SourceStructureID":79738,"TargetStructureID":5562,"Label":"79738-5562 via Adherens from 79739 -> 79740","Type":"Adherens","Directional":false,"Links":[{"SourceID":79739,"TargetID":79740,"Directional":false}]},{"ID":3200,"SourceStructureID":5562,"TargetStructureID":79741,"Label":"5562-79741 via Adherens from 81867 -> 81868","Type":"Adherens","Directional":false,"Links":[{"SourceID":81867,"TargetID":81868,"Directional":false}]},{"ID":3201,"SourceStructureID":5562,"TargetStructureID":79747,"Label":"5562-79747 via Adherens from 63891 -> 79748","Type":"Adherens","Directional":false,"Links":[{"SourceID":63891,"TargetID":79748,"Directional":false}]},{"ID":3202,"SourceStructureID":5562,"TargetStructureID":79758,"Label":"5562-79758 via Unknown from 79759 -> 79760","Type":"Unknown","Directional":false,"Links":[{"SourceID":79759,"TargetID":79760,"Directional":false}]},{"ID":3203,"SourceStructureID":79761,"TargetStructureID":5562,"Label":"79761-5562 via Adherens from 79762 -> 79763","Type":"Adherens","Directional":false,"Links":[{"SourceID":79762,"TargetID":79763,"Directional":false}]},{"ID":3204,"SourceStructureID":5562,"TargetStructureID":79770,"Label":"5562-79770 via Unknown from 79769 -> 79771","Type":"Unknown","Directional":false,"Links":[{"SourceID":79769,"TargetID":79771,"Directional":false}]},{"ID":3205,"SourceStructureID":79772,"TargetStructureID":5562,"Label":"79772-5562 via Adherens from 79774 -> 79775","Type":"Adherens","Directional":false,"Links":[{"SourceID":79774,"TargetID":79775,"Directional":false}]},{"ID":3206,"SourceStructureID":5562,"TargetStructureID":79776,"Label":"5562-79776 via Unknown from 79777 -> 79778","Type":"Unknown","Directional":false,"Links":[{"SourceID":79777,"TargetID":79778,"Directional":false}]},{"ID":3207,"SourceStructureID":5562,"TargetStructureID":79791,"Label":"5562-79791 via Unknown from 79789 -> 79792","Type":"Unknown","Directional":false,"Links":[{"SourceID":79789,"TargetID":79792,"Directional":false}]},{"ID":3208,"SourceStructureID":5562,"TargetStructureID":79797,"Label":"5562-79797 via Adherens from 63916 -> 79801","Type":"Adherens","Directional":false,"Links":[{"SourceID":63916,"TargetID":79801,"Directional":false}]},{"ID":3209,"SourceStructureID":79805,"TargetStructureID":5562,"Label":"79805-5562 via Unknown from 79806 -> 79807","Type":"Unknown","Directional":false,"Links":[{"SourceID":79806,"TargetID":79807,"Directional":false}]},{"ID":3210,"SourceStructureID":79808,"TargetStructureID":5562,"Label":"79808-5562 via Unknown from 79831 -> 79812","Type":"Unknown","Directional":false,"Links":[{"SourceID":79831,"TargetID":79812,"Directional":false}]},{"ID":3211,"SourceStructureID":5562,"TargetStructureID":79818,"Label":"5562-79818 via Unknown from 79819 -> 79820","Type":"Unknown","Directional":false,"Links":[{"SourceID":79819,"TargetID":79820,"Directional":false}]},{"ID":3212,"SourceStructureID":79837,"TargetStructureID":5562,"Label":"79837-5562 via Unknown from 79839 -> 79838","Type":"Unknown","Directional":false,"Links":[{"SourceID":79839,"TargetID":79838,"Directional":false}]},{"ID":3213,"SourceStructureID":5562,"TargetStructureID":79898,"Label":"5562-79898 via Unknown from 79897 -> 79899","Type":"Unknown","Directional":false,"Links":[{"SourceID":79897,"TargetID":79899,"Directional":false}]},{"ID":3214,"SourceStructureID":5562,"TargetStructureID":80209,"Label":"5562-80209 via Adherens from 80225 -> 80226","Type":"Adherens","Directional":false,"Links":[{"SourceID":80225,"TargetID":80226,"Directional":false}]},{"ID":3215,"SourceStructureID":5562,"TargetStructureID":80213,"Label":"5562-80213 via Unknown from 80216 -> 80217","Type":"Unknown","Directional":false,"Links":[{"SourceID":80216,"TargetID":80217,"Directional":false}]},{"ID":3216,"SourceStructureID":80229,"TargetStructureID":5562,"Label":"80229-5562 via Unknown from 80230 -> 80227","Type":"Unknown","Directional":false,"Links":[{"SourceID":80230,"TargetID":80227,"Directional":false}]},{"ID":3217,"SourceStructureID":80232,"TargetStructureID":5562,"Label":"80232-5562 via Adherens from 80234 -> 80233","Type":"Adherens","Directional":false,"Links":[{"SourceID":80234,"TargetID":80233,"Directional":false}]},{"ID":3218,"SourceStructureID":80253,"TargetStructureID":5562,"Label":"80253-5562 via Unknown from 80271 -> 80272","Type":"Unknown","Directional":false,"Links":[{"SourceID":80271,"TargetID":80272,"Directional":false}]},{"ID":3219,"SourceStructureID":5562,"TargetStructureID":80296,"Label":"5562-80296 via Unknown from 80298 -> 80300","Type":"Unknown","Directional":false,"Links":[{"SourceID":80298,"TargetID":80300,"Directional":false}]},{"ID":3220,"SourceStructureID":80331,"TargetStructureID":5562,"Label":"80331-5562 via Adherens from 80332 -> 80330","Type":"Adherens","Directional":false,"Links":[{"SourceID":80332,"TargetID":80330,"Directional":false}]},{"ID":3221,"SourceStructureID":80338,"TargetStructureID":5562,"Label":"80338-5562 via Adherens from 80339 -> 80340","Type":"Adherens","Directional":false,"Links":[{"SourceID":80339,"TargetID":80340,"Directional":false}]},{"ID":3222,"SourceStructureID":80350,"TargetStructureID":5562,"Label":"80350-5562 via Adherens from 80351 -> 80352","Type":"Adherens","Directional":false,"Links":[{"SourceID":80351,"TargetID":80352,"Directional":false}]},{"ID":3223,"SourceStructureID":5562,"TargetStructureID":80359,"Label":"5562-80359 via Unknown from 63296 -> 80360","Type":"Unknown","Directional":false,"Links":[{"SourceID":63296,"TargetID":80360,"Directional":false}]},{"ID":3224,"SourceStructureID":5562,"TargetStructureID":80364,"Label":"5562-80364 via Unknown from 80370 -> 80371","Type":"Unknown","Directional":false,"Links":[{"SourceID":80370,"TargetID":80371,"Directional":false}]},{"ID":3225,"SourceStructureID":5562,"TargetStructureID":80368,"Label":"5562-80368 via Unknown from 80367 -> 80369","Type":"Unknown","Directional":false,"Links":[{"SourceID":80367,"TargetID":80369,"Directional":false}]},{"ID":3226,"SourceStructureID":5562,"TargetStructureID":80374,"Label":"5562-80374 via Unknown from 80375 -> 80376","Type":"Unknown","Directional":false,"Links":[{"SourceID":80375,"TargetID":80376,"Directional":false}]},{"ID":3227,"SourceStructureID":80378,"TargetStructureID":5562,"Label":"80378-5562 via Adherens from 93087 -> 80377","Type":"Adherens","Directional":false,"Links":[{"SourceID":93087,"TargetID":80377,"Directional":false}]},{"ID":3228,"SourceStructureID":5562,"TargetStructureID":80399,"Label":"5562-80399 via Gap Junction from 63284 -> 80676","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63284,"TargetID":80676,"Directional":false}]},{"ID":3229,"SourceStructureID":80401,"TargetStructureID":5562,"Label":"80401-5562 via Unknown from 80694 -> 80695","Type":"Unknown","Directional":false,"Links":[{"SourceID":80694,"TargetID":80695,"Directional":false}]},{"ID":3230,"SourceStructureID":80697,"TargetStructureID":5562,"Label":"80697-5562 via Unknown from 80698 -> 80699","Type":"Unknown","Directional":false,"Links":[{"SourceID":80698,"TargetID":80699,"Directional":false}]},{"ID":3231,"SourceStructureID":80702,"TargetStructureID":5562,"Label":"80702-5562 via Unknown from 80704 -> 80705","Type":"Unknown","Directional":false,"Links":[{"SourceID":80704,"TargetID":80705,"Directional":false}]},{"ID":3232,"SourceStructureID":80795,"TargetStructureID":5562,"Label":"80795-5562 via Adherens from 80796 -> 63312","Type":"Adherens","Directional":false,"Links":[{"SourceID":80796,"TargetID":63312,"Directional":false}]},{"ID":3233,"SourceStructureID":80811,"TargetStructureID":5562,"Label":"80811-5562 via Adherens from 80812 -> 80813","Type":"Adherens","Directional":false,"Links":[{"SourceID":80812,"TargetID":80813,"Directional":false}]},{"ID":3234,"SourceStructureID":5562,"TargetStructureID":80823,"Label":"5562-80823 via Adherens from 80822 -> 80824","Type":"Adherens","Directional":false,"Links":[{"SourceID":80822,"TargetID":80824,"Directional":false}]},{"ID":3235,"SourceStructureID":5562,"TargetStructureID":80836,"Label":"5562-80836 via Unknown from 80837 -> 80838","Type":"Unknown","Directional":false,"Links":[{"SourceID":80837,"TargetID":80838,"Directional":false}]},{"ID":3236,"SourceStructureID":5562,"TargetStructureID":80839,"Label":"5562-80839 via Unknown from 80840 -> 80841","Type":"Unknown","Directional":false,"Links":[{"SourceID":80840,"TargetID":80841,"Directional":false}]},{"ID":3237,"SourceStructureID":5562,"TargetStructureID":80876,"Label":"5562-80876 via Adherens from 80888 -> 80887","Type":"Adherens","Directional":false,"Links":[{"SourceID":80888,"TargetID":80887,"Directional":false}]},{"ID":3238,"SourceStructureID":5562,"TargetStructureID":80885,"Label":"5562-80885 via Unknown from 126890 -> 126891","Type":"Unknown","Directional":false,"Links":[{"SourceID":126890,"TargetID":126891,"Directional":false}]},{"ID":3239,"SourceStructureID":80900,"TargetStructureID":5562,"Label":"80900-5562 via Adherens from 134633 -> 134632","Type":"Adherens","Directional":false,"Links":[{"SourceID":134633,"TargetID":134632,"Directional":false}]},{"ID":3240,"SourceStructureID":80900,"TargetStructureID":5562,"Label":"80900-5562 via Unknown from 80901 -> 64194","Type":"Unknown","Directional":false,"Links":[{"SourceID":80901,"TargetID":64194,"Directional":false}]},{"ID":3241,"SourceStructureID":5562,"TargetStructureID":81712,"Label":"5562-81712 via Unknown from 78544 -> 81713","Type":"Unknown","Directional":false,"Links":[{"SourceID":78544,"TargetID":81713,"Directional":false}]},{"ID":3242,"SourceStructureID":81799,"TargetStructureID":5562,"Label":"81799-5562 via Unknown from 81843 -> 81841","Type":"Unknown","Directional":false,"Links":[{"SourceID":81843,"TargetID":81841,"Directional":false}]},{"ID":3243,"SourceStructureID":5562,"TargetStructureID":81810,"Label":"5562-81810 via Adherens from 77243 -> 81812","Type":"Adherens","Directional":false,"Links":[{"SourceID":77243,"TargetID":81812,"Directional":false}]},{"ID":3244,"SourceStructureID":84530,"TargetStructureID":5562,"Label":"84530-5562 via Unknown from 134651 -> 134650","Type":"Unknown","Directional":false,"Links":[{"SourceID":134651,"TargetID":134650,"Directional":false}]},{"ID":3245,"SourceStructureID":89312,"TargetStructureID":5562,"Label":"89312-5562 via Unknown from 116713 -> 78189","Type":"Unknown","Directional":false,"Links":[{"SourceID":116713,"TargetID":78189,"Directional":false}]},{"ID":3246,"SourceStructureID":5563,"TargetStructureID":8037,"Label":"5563-8037 via Adherens from 32392 -> 32391","Type":"Adherens","Directional":false,"Links":[{"SourceID":32392,"TargetID":32391,"Directional":false}]},{"ID":3247,"SourceStructureID":5565,"TargetStructureID":5568,"Label":"5565-5568 via Gap Junction from 50174 -> 50374, 50847 -> 50364, 121318 -> 121317","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50174,"TargetID":50374,"Directional":false},{"SourceID":50847,"TargetID":50364,"Directional":false},{"SourceID":121318,"TargetID":121317,"Directional":false}]},{"ID":3248,"SourceStructureID":7024,"TargetStructureID":5565,"Label":"7024-5565 via Gap Junction from 114150 -> 115305","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":114150,"TargetID":115305,"Directional":false}]},{"ID":3249,"SourceStructureID":5565,"TargetStructureID":7040,"Label":"5565-7040 via Gap Junction from 37692 -> 50890, 50191 -> 50316, 136157 -> 50192, 136164 -> 136163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37692,"TargetID":50890,"Directional":false},{"SourceID":50191,"TargetID":50316,"Directional":false},{"SourceID":136157,"TargetID":50192,"Directional":false},{"SourceID":136164,"TargetID":136163,"Directional":false}]},{"ID":3250,"SourceStructureID":5565,"TargetStructureID":7050,"Label":"5565-7050 via Gap Junction from 32484 -> 14312","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32484,"TargetID":14312,"Directional":false}]},{"ID":3251,"SourceStructureID":5565,"TargetStructureID":8037,"Label":"5565-8037 via Gap Junction from 50235 -> 50236, 50814 -> 136198, 50823 -> 50822, 50827 -> 24600, 50839 -> 50838, 136194 -> 136197, 136196 -> 136195, 148264 -> 148265","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50235,"TargetID":50236,"Directional":false},{"SourceID":50814,"TargetID":136198,"Directional":false},{"SourceID":50823,"TargetID":50822,"Directional":false},{"SourceID":50827,"TargetID":24600,"Directional":false},{"SourceID":50839,"TargetID":50838,"Directional":false},{"SourceID":136194,"TargetID":136197,"Directional":false},{"SourceID":136196,"TargetID":136195,"Directional":false},{"SourceID":148264,"TargetID":148265,"Directional":false}]},{"ID":3252,"SourceStructureID":5565,"TargetStructureID":8038,"Label":"5565-8038 via Gap Junction from 37694 -> 50330, 37708 -> 37709, 37710 -> 37711, 50169 -> 50980, 68923 -> 68922","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37694,"TargetID":50330,"Directional":false},{"SourceID":37708,"TargetID":37709,"Directional":false},{"SourceID":37710,"TargetID":37711,"Directional":false},{"SourceID":50169,"TargetID":50980,"Directional":false},{"SourceID":68923,"TargetID":68922,"Directional":false}]},{"ID":3253,"SourceStructureID":5566,"TargetStructureID":59262,"Label":"5566-59262 via Gap Junction from 59266 -> 59264, 59324 -> 59322","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59266,"TargetID":59264,"Directional":false},{"SourceID":59324,"TargetID":59322,"Directional":false}]},{"ID":3254,"SourceStructureID":5566,"TargetStructureID":59278,"Label":"5566-59278 via Gap Junction from 59269 -> 59279","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59269,"TargetID":59279,"Directional":false}]},{"ID":3255,"SourceStructureID":59280,"TargetStructureID":5566,"Label":"59280-5566 via Gap Junction from 59281 -> 59267","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59281,"TargetID":59267,"Directional":false}]},{"ID":3256,"SourceStructureID":59310,"TargetStructureID":5566,"Label":"59310-5566 via Gap Junction from 59311 -> 59309","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59311,"TargetID":59309,"Directional":false}]},{"ID":3257,"SourceStructureID":8037,"TargetStructureID":5568,"Label":"8037-5568 via Touch from 148214 -> 148213","Type":"Touch","Directional":false,"Links":[{"SourceID":148214,"TargetID":148213,"Directional":false}]},{"ID":3258,"SourceStructureID":5568,"TargetStructureID":46388,"Label":"5568-46388 via Gap Junction from 121399 -> 121398, 121429 -> 121428, 121475 -> 121474, 121482 -> 121481","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121399,"TargetID":121398,"Directional":false},{"SourceID":121429,"TargetID":121428,"Directional":false},{"SourceID":121475,"TargetID":121474,"Directional":false},{"SourceID":121482,"TargetID":121481,"Directional":false}]},{"ID":3259,"SourceStructureID":5568,"TargetStructureID":50449,"Label":"5568-50449 via Gap Junction from 49971 -> 50487, 50389 -> 50659, 99185 -> 50622, 120841 -> 120840, 120850 -> 99176, 120853 -> 120852, 121342 -> 121341, 121360 -> 121358, 121417 -> 121416, 121479 -> 121478, 121512 -> 121513, 121532 -> 121533","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49971,"TargetID":50487,"Directional":false},{"SourceID":50389,"TargetID":50659,"Directional":false},{"SourceID":99185,"TargetID":50622,"Directional":false},{"SourceID":120841,"TargetID":120840,"Directional":false},{"SourceID":120850,"TargetID":99176,"Directional":false},{"SourceID":120853,"TargetID":120852,"Directional":false},{"SourceID":121342,"TargetID":121341,"Directional":false},{"SourceID":121360,"TargetID":121358,"Directional":false},{"SourceID":121417,"TargetID":121416,"Directional":false},{"SourceID":121479,"TargetID":121478,"Directional":false},{"SourceID":121512,"TargetID":121513,"Directional":false},{"SourceID":121532,"TargetID":121533,"Directional":false}]},{"ID":3260,"SourceStructureID":5568,"TargetStructureID":56714,"Label":"5568-56714 via Unknown from 121225 -> 121226","Type":"Unknown","Directional":false,"Links":[{"SourceID":121225,"TargetID":121226,"Directional":false}]},{"ID":3261,"SourceStructureID":5575,"TargetStructureID":5575,"Label":"5575-5575 via Adherens from 22963 -> 22962","Type":"Adherens","Directional":false,"Links":[{"SourceID":22963,"TargetID":22962,"Directional":false}]},{"ID":3262,"SourceStructureID":6156,"TargetStructureID":5575,"Label":"6156-5575 via Unknown from 133149 -> 133150","Type":"Unknown","Directional":false,"Links":[{"SourceID":133149,"TargetID":133150,"Directional":false}]},{"ID":3263,"SourceStructureID":5575,"TargetStructureID":7568,"Label":"5575-7568 via Adherens from 27063 -> 27062, 27065 -> 27064","Type":"Adherens","Directional":false,"Links":[{"SourceID":27063,"TargetID":27062,"Directional":false},{"SourceID":27065,"TargetID":27064,"Directional":false}]},{"ID":3264,"SourceStructureID":5584,"TargetStructureID":5584,"Label":"5584-5584 via Gap Junction from 126922 -> 126923","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":126922,"TargetID":126923,"Directional":false}]},{"ID":3265,"SourceStructureID":5584,"TargetStructureID":5592,"Label":"5584-5592 via Gap Junction from 38964 -> 36845, 121801 -> 121800, 121802 -> 57409, 121804 -> 121803, 121807 -> 121806","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38964,"TargetID":36845,"Directional":false},{"SourceID":121801,"TargetID":121800,"Directional":false},{"SourceID":121802,"TargetID":57409,"Directional":false},{"SourceID":121804,"TargetID":121803,"Directional":false},{"SourceID":121807,"TargetID":121806,"Directional":false}]},{"ID":3266,"SourceStructureID":5598,"TargetStructureID":5584,"Label":"5598-5584 via Adherens from 123871 -> 123870, 124473 -> 124474, 126934 -> 126935, 126953 -> 126954","Type":"Adherens","Directional":false,"Links":[{"SourceID":123871,"TargetID":123870,"Directional":false},{"SourceID":124473,"TargetID":124474,"Directional":false},{"SourceID":126934,"TargetID":126935,"Directional":false},{"SourceID":126953,"TargetID":126954,"Directional":false}]},{"ID":3267,"SourceStructureID":5584,"TargetStructureID":5598,"Label":"5584-5598 via Gap Junction from 37927 -> 37926, 57124 -> 57123, 114469 -> 114468, 114472 -> 114471, 114479 -> 114476, 114585 -> 114584, 115077 -> 115076, 115131 -> 57183, 123820 -> 123821, 124250 -> 124251, 126920 -> 126921, 147989 -> 147990","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37927,"TargetID":37926,"Directional":false},{"SourceID":57124,"TargetID":57123,"Directional":false},{"SourceID":114469,"TargetID":114468,"Directional":false},{"SourceID":114472,"TargetID":114471,"Directional":false},{"SourceID":114479,"TargetID":114476,"Directional":false},{"SourceID":114585,"TargetID":114584,"Directional":false},{"SourceID":115077,"TargetID":115076,"Directional":false},{"SourceID":115131,"TargetID":57183,"Directional":false},{"SourceID":123820,"TargetID":123821,"Directional":false},{"SourceID":124250,"TargetID":124251,"Directional":false},{"SourceID":126920,"TargetID":126921,"Directional":false},{"SourceID":147989,"TargetID":147990,"Directional":false}]},{"ID":3268,"SourceStructureID":5584,"TargetStructureID":5598,"Label":"5584-5598 via Touch from 123875 -> 123876","Type":"Touch","Directional":false,"Links":[{"SourceID":123875,"TargetID":123876,"Directional":false}]},{"ID":3269,"SourceStructureID":6047,"TargetStructureID":5584,"Label":"6047-5584 via Gap Junction from 113320 -> 113321","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113320,"TargetID":113321,"Directional":false}]},{"ID":3270,"SourceStructureID":6203,"TargetStructureID":5584,"Label":"6203-5584 via Gap Junction from 57221 -> 57220","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57221,"TargetID":57220,"Directional":false}]},{"ID":3271,"SourceStructureID":7114,"TargetStructureID":5584,"Label":"7114-5584 via Adherens from 124464 -> 124465","Type":"Adherens","Directional":false,"Links":[{"SourceID":124464,"TargetID":124465,"Directional":false}]},{"ID":3272,"SourceStructureID":15976,"TargetStructureID":5584,"Label":"15976-5584 via Gap Junction from 57357 -> 57356","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57357,"TargetID":57356,"Directional":false}]},{"ID":3273,"SourceStructureID":57178,"TargetStructureID":5584,"Label":"57178-5584 via Unknown from 124248 -> 124249","Type":"Unknown","Directional":false,"Links":[{"SourceID":124248,"TargetID":124249,"Directional":false}]},{"ID":3274,"SourceStructureID":57218,"TargetStructureID":5584,"Label":"57218-5584 via Gap Junction from 57219 -> 57217","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57219,"TargetID":57217,"Directional":false}]},{"ID":3275,"SourceStructureID":57360,"TargetStructureID":5584,"Label":"57360-5584 via Gap Junction from 57361 -> 57359, 57363 -> 57362","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57361,"TargetID":57359,"Directional":false},{"SourceID":57363,"TargetID":57362,"Directional":false}]},{"ID":3276,"SourceStructureID":57487,"TargetStructureID":5584,"Label":"57487-5584 via Gap Junction from 57488 -> 57406","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57488,"TargetID":57406,"Directional":false}]},{"ID":3277,"SourceStructureID":126901,"TargetStructureID":5584,"Label":"126901-5584 via Adherens from 126929 -> 126930","Type":"Adherens","Directional":false,"Links":[{"SourceID":126929,"TargetID":126930,"Directional":false}]},{"ID":3278,"SourceStructureID":5584,"TargetStructureID":126901,"Label":"5584-126901 via Unknown from 126908 -> 126909","Type":"Unknown","Directional":false,"Links":[{"SourceID":126908,"TargetID":126909,"Directional":false}]},{"ID":3279,"SourceStructureID":136465,"TargetStructureID":5587,"Label":"136465-5587 via Gap Junction from 136468 -> 136464","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136468,"TargetID":136464,"Directional":false}]},{"ID":3280,"SourceStructureID":5592,"TargetStructureID":5592,"Label":"5592-5592 via Gap Junction from 121797 -> 121798","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121797,"TargetID":121798,"Directional":false}]},{"ID":3281,"SourceStructureID":5592,"TargetStructureID":15976,"Label":"5592-15976 via Gap Junction from 57490 -> 57493","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57490,"TargetID":57493,"Directional":false}]},{"ID":3282,"SourceStructureID":92954,"TargetStructureID":5592,"Label":"92954-5592 via Gap Junction from 92958 -> 92961, 121756 -> 121755","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92958,"TargetID":92961,"Directional":false},{"SourceID":121756,"TargetID":121755,"Directional":false}]},{"ID":3283,"SourceStructureID":122018,"TargetStructureID":5596,"Label":"122018-5596 via Gap Junction from 122019 -> 122017","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122019,"TargetID":122017,"Directional":false}]},{"ID":3284,"SourceStructureID":5598,"TargetStructureID":5598,"Label":"5598-5598 via Gap Junction from 115287 -> 45199, 124164 -> 124165","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115287,"TargetID":45199,"Directional":false},{"SourceID":124164,"TargetID":124165,"Directional":false}]},{"ID":3285,"SourceStructureID":5598,"TargetStructureID":5601,"Label":"5598-5601 via Gap Junction from 123806 -> 123805","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123806,"TargetID":123805,"Directional":false}]},{"ID":3286,"SourceStructureID":5598,"TargetStructureID":5641,"Label":"5598-5641 via Adherens from 124052 -> 124053, 126939 -> 126940, 147995 -> 147996","Type":"Adherens","Directional":false,"Links":[{"SourceID":124052,"TargetID":124053,"Directional":false},{"SourceID":126939,"TargetID":126940,"Directional":false},{"SourceID":147995,"TargetID":147996,"Directional":false}]},{"ID":3287,"SourceStructureID":5641,"TargetStructureID":5598,"Label":"5641-5598 via Gap Junction from 57507 -> 57484, 114964 -> 114966, 114971 -> 114970, 114985 -> 114986, 114999 -> 114998, 115011 -> 115010, 115030 -> 115028, 115047 -> 115046, 123810 -> 114962, 123816 -> 114967, 124229 -> 124228, 124230 -> 124231, 124241 -> 124242, 124438 -> 124437, 124443 -> 124444, 124478 -> 124479","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57507,"TargetID":57484,"Directional":false},{"SourceID":114964,"TargetID":114966,"Directional":false},{"SourceID":114971,"TargetID":114970,"Directional":false},{"SourceID":114985,"TargetID":114986,"Directional":false},{"SourceID":114999,"TargetID":114998,"Directional":false},{"SourceID":115011,"TargetID":115010,"Directional":false},{"SourceID":115030,"TargetID":115028,"Directional":false},{"SourceID":115047,"TargetID":115046,"Directional":false},{"SourceID":123810,"TargetID":114962,"Directional":false},{"SourceID":123816,"TargetID":114967,"Directional":false},{"SourceID":124229,"TargetID":124228,"Directional":false},{"SourceID":124230,"TargetID":124231,"Directional":false},{"SourceID":124241,"TargetID":124242,"Directional":false},{"SourceID":124438,"TargetID":124437,"Directional":false},{"SourceID":124443,"TargetID":124444,"Directional":false},{"SourceID":124478,"TargetID":124479,"Directional":false}]},{"ID":3288,"SourceStructureID":5598,"TargetStructureID":6047,"Label":"5598-6047 via Gap Junction from 45200 -> 30637, 113319 -> 113318, 113793 -> 113792","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45200,"TargetID":30637,"Directional":false},{"SourceID":113319,"TargetID":113318,"Directional":false},{"SourceID":113793,"TargetID":113792,"Directional":false}]},{"ID":3289,"SourceStructureID":5598,"TargetStructureID":6203,"Label":"5598-6203 via Gap Junction from 124470 -> 124469","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124470,"TargetID":124469,"Directional":false}]},{"ID":3290,"SourceStructureID":7113,"TargetStructureID":5598,"Label":"7113-5598 via Adherens from 126938 -> 126937, 126958 -> 126957, 126959 -> 126960","Type":"Adherens","Directional":false,"Links":[{"SourceID":126938,"TargetID":126937,"Directional":false},{"SourceID":126958,"TargetID":126957,"Directional":false},{"SourceID":126959,"TargetID":126960,"Directional":false}]},{"ID":3291,"SourceStructureID":7113,"TargetStructureID":5598,"Label":"7113-5598 via Gap Junction from 24311 -> 115032, 32417 -> 27344, 32418 -> 27343, 36023 -> 27342, 36024 -> 36025, 57082 -> 27353, 82080 -> 82081, 91506 -> 91505, 114600 -> 27345, 115005 -> 115004, 115017 -> 115016, 115036 -> 115035, 124078 -> 124077, 124083 -> 124082, 124092 -> 124091, 124247 -> 124246","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24311,"TargetID":115032,"Directional":false},{"SourceID":32417,"TargetID":27344,"Directional":false},{"SourceID":32418,"TargetID":27343,"Directional":false},{"SourceID":36023,"TargetID":27342,"Directional":false},{"SourceID":36024,"TargetID":36025,"Directional":false},{"SourceID":57082,"TargetID":27353,"Directional":false},{"SourceID":82080,"TargetID":82081,"Directional":false},{"SourceID":91506,"TargetID":91505,"Directional":false},{"SourceID":114600,"TargetID":27345,"Directional":false},{"SourceID":115005,"TargetID":115004,"Directional":false},{"SourceID":115017,"TargetID":115016,"Directional":false},{"SourceID":115036,"TargetID":115035,"Directional":false},{"SourceID":124078,"TargetID":124077,"Directional":false},{"SourceID":124083,"TargetID":124082,"Directional":false},{"SourceID":124092,"TargetID":124091,"Directional":false},{"SourceID":124247,"TargetID":124246,"Directional":false}]},{"ID":3292,"SourceStructureID":5598,"TargetStructureID":7114,"Label":"5598-7114 via Gap Junction from 12557 -> 12522, 52987 -> 52986, 57186 -> 115116, 59068 -> 59067, 115153 -> 115152, 124186 -> 26610, 124208 -> 124209, 124446 -> 124447, 124467 -> 124466","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12557,"TargetID":12522,"Directional":false},{"SourceID":52987,"TargetID":52986,"Directional":false},{"SourceID":57186,"TargetID":115116,"Directional":false},{"SourceID":59068,"TargetID":59067,"Directional":false},{"SourceID":115153,"TargetID":115152,"Directional":false},{"SourceID":124186,"TargetID":26610,"Directional":false},{"SourceID":124208,"TargetID":124209,"Directional":false},{"SourceID":124446,"TargetID":124447,"Directional":false},{"SourceID":124467,"TargetID":124466,"Directional":false}]},{"ID":3293,"SourceStructureID":5598,"TargetStructureID":15977,"Label":"5598-15977 via Touch from 126945 -> 126946","Type":"Touch","Directional":false,"Links":[{"SourceID":126945,"TargetID":126946,"Directional":false}]},{"ID":3294,"SourceStructureID":5598,"TargetStructureID":35811,"Label":"5598-35811 via Unknown from 124484 -> 126918","Type":"Unknown","Directional":false,"Links":[{"SourceID":124484,"TargetID":126918,"Directional":false}]},{"ID":3295,"SourceStructureID":38949,"TargetStructureID":5598,"Label":"38949-5598 via Adherens from 124476 -> 124475","Type":"Adherens","Directional":false,"Links":[{"SourceID":124476,"TargetID":124475,"Directional":false}]},{"ID":3296,"SourceStructureID":5598,"TargetStructureID":54698,"Label":"5598-54698 via Unknown from 115172 -> 115173","Type":"Unknown","Directional":false,"Links":[{"SourceID":115172,"TargetID":115173,"Directional":false}]},{"ID":3297,"SourceStructureID":5598,"TargetStructureID":57178,"Label":"5598-57178 via Unknown from 57177 -> 57181","Type":"Unknown","Directional":false,"Links":[{"SourceID":57177,"TargetID":57181,"Directional":false}]},{"ID":3298,"SourceStructureID":57299,"TargetStructureID":5598,"Label":"57299-5598 via Adherens from 123855 -> 123856","Type":"Adherens","Directional":false,"Links":[{"SourceID":123855,"TargetID":123856,"Directional":false}]},{"ID":3299,"SourceStructureID":73348,"TargetStructureID":5598,"Label":"73348-5598 via Adherens from 124603 -> 124602","Type":"Adherens","Directional":false,"Links":[{"SourceID":124603,"TargetID":124602,"Directional":false}]},{"ID":3300,"SourceStructureID":91578,"TargetStructureID":5598,"Label":"91578-5598 via Adherens from 114939 -> 114938","Type":"Adherens","Directional":false,"Links":[{"SourceID":114939,"TargetID":114938,"Directional":false}]},{"ID":3301,"SourceStructureID":5598,"TargetStructureID":114618,"Label":"5598-114618 via Unknown from 57104 -> 114619","Type":"Unknown","Directional":false,"Links":[{"SourceID":57104,"TargetID":114619,"Directional":false}]},{"ID":3302,"SourceStructureID":5598,"TargetStructureID":114996,"Label":"5598-114996 via Adherens from 115034 -> 123790","Type":"Adherens","Directional":false,"Links":[{"SourceID":115034,"TargetID":123790,"Directional":false}]},{"ID":3303,"SourceStructureID":114996,"TargetStructureID":5598,"Label":"114996-5598 via Unknown from 124049 -> 124048, 124051 -> 124050","Type":"Unknown","Directional":false,"Links":[{"SourceID":124049,"TargetID":124048,"Directional":false},{"SourceID":124051,"TargetID":124050,"Directional":false}]},{"ID":3304,"SourceStructureID":5598,"TargetStructureID":115007,"Label":"5598-115007 via Adherens from 115009 -> 115008","Type":"Adherens","Directional":false,"Links":[{"SourceID":115009,"TargetID":115008,"Directional":false}]},{"ID":3305,"SourceStructureID":5598,"TargetStructureID":115118,"Label":"5598-115118 via Gap Junction from 148028 -> 148029, 148031 -> 148030","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":148028,"TargetID":148029,"Directional":false},{"SourceID":148031,"TargetID":148030,"Directional":false}]},{"ID":3306,"SourceStructureID":115291,"TargetStructureID":5598,"Label":"115291-5598 via Unknown from 124193 -> 124192","Type":"Unknown","Directional":false,"Links":[{"SourceID":124193,"TargetID":124192,"Directional":false}]},{"ID":3307,"SourceStructureID":116142,"TargetStructureID":5598,"Label":"116142-5598 via Unknown from 115281 -> 115279, 124194 -> 124195","Type":"Unknown","Directional":false,"Links":[{"SourceID":115281,"TargetID":115279,"Directional":false},{"SourceID":124194,"TargetID":124195,"Directional":false}]},{"ID":3308,"SourceStructureID":5598,"TargetStructureID":124069,"Label":"5598-124069 via Unknown from 124072 -> 124073, 124090 -> 126916, 126913 -> 124081, 147987 -> 147988","Type":"Unknown","Directional":false,"Links":[{"SourceID":124072,"TargetID":124073,"Directional":false},{"SourceID":124090,"TargetID":126916,"Directional":false},{"SourceID":126913,"TargetID":124081,"Directional":false},{"SourceID":147987,"TargetID":147988,"Directional":false}]},{"ID":3309,"SourceStructureID":5598,"TargetStructureID":126901,"Label":"5598-126901 via Unknown from 124605 -> 126932, 126907 -> 114453, 126910 -> 114583","Type":"Unknown","Directional":false,"Links":[{"SourceID":124605,"TargetID":126932,"Directional":false},{"SourceID":126907,"TargetID":114453,"Directional":false},{"SourceID":126910,"TargetID":114583,"Directional":false}]},{"ID":3310,"SourceStructureID":5601,"TargetStructureID":5599,"Label":"5601-5599 via Gap Junction from 92521 -> 92522","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92521,"TargetID":92522,"Directional":false}]},{"ID":3311,"SourceStructureID":5599,"TargetStructureID":5635,"Label":"5599-5635 via Gap Junction from 55948 -> 55947, 66592 -> 66593, 117765 -> 117764, 117766 -> 56138, 117772 -> 117769","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55948,"TargetID":55947,"Directional":false},{"SourceID":66592,"TargetID":66593,"Directional":false},{"SourceID":117765,"TargetID":117764,"Directional":false},{"SourceID":117766,"TargetID":56138,"Directional":false},{"SourceID":117772,"TargetID":117769,"Directional":false}]},{"ID":3312,"SourceStructureID":5638,"TargetStructureID":5599,"Label":"5638-5599 via Gap Junction from 117195 -> 117194","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117195,"TargetID":117194,"Directional":false}]},{"ID":3313,"SourceStructureID":5860,"TargetStructureID":5599,"Label":"5860-5599 via Gap Junction from 38332 -> 38331, 118432 -> 118431","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38332,"TargetID":38331,"Directional":false},{"SourceID":118432,"TargetID":118431,"Directional":false}]},{"ID":3314,"SourceStructureID":5599,"TargetStructureID":6115,"Label":"5599-6115 via Adherens from 72333 -> 72334, 73231 -> 73232, 73954 -> 73955, 75846 -> 75847, 135178 -> 135179","Type":"Adherens","Directional":false,"Links":[{"SourceID":72333,"TargetID":72334,"Directional":false},{"SourceID":73231,"TargetID":73232,"Directional":false},{"SourceID":73954,"TargetID":73955,"Directional":false},{"SourceID":75846,"TargetID":75847,"Directional":false},{"SourceID":135178,"TargetID":135179,"Directional":false}]},{"ID":3315,"SourceStructureID":6115,"TargetStructureID":5599,"Label":"6115-5599 via Gap Junction from 56158 -> 56157, 56258 -> 74006, 56308 -> 73944, 73234 -> 73233, 75511 -> 75510, 116741 -> 116742, 116745 -> 116746","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56158,"TargetID":56157,"Directional":false},{"SourceID":56258,"TargetID":74006,"Directional":false},{"SourceID":56308,"TargetID":73944,"Directional":false},{"SourceID":73234,"TargetID":73233,"Directional":false},{"SourceID":75511,"TargetID":75510,"Directional":false},{"SourceID":116741,"TargetID":116742,"Directional":false},{"SourceID":116745,"TargetID":116746,"Directional":false}]},{"ID":3316,"SourceStructureID":5599,"TargetStructureID":7113,"Label":"5599-7113 via Gap Junction from 27352 -> 27351, 37913 -> 37912, 118424 -> 118425, 118430 -> 118429, 128734 -> 128735","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":27352,"TargetID":27351,"Directional":false},{"SourceID":37913,"TargetID":37912,"Directional":false},{"SourceID":118424,"TargetID":118425,"Directional":false},{"SourceID":118430,"TargetID":118429,"Directional":false},{"SourceID":128734,"TargetID":128735,"Directional":false}]},{"ID":3317,"SourceStructureID":7114,"TargetStructureID":5599,"Label":"7114-5599 via Gap Junction from 116822 -> 116821","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116822,"TargetID":116821,"Directional":false}]},{"ID":3318,"SourceStructureID":5599,"TargetStructureID":7231,"Label":"5599-7231 via Adherens from 117017 -> 117016","Type":"Adherens","Directional":false,"Links":[{"SourceID":117017,"TargetID":117016,"Directional":false}]},{"ID":3319,"SourceStructureID":15977,"TargetStructureID":5599,"Label":"15977-5599 via Adherens from 116938 -> 116937, 117192 -> 117191","Type":"Adherens","Directional":false,"Links":[{"SourceID":116938,"TargetID":116937,"Directional":false},{"SourceID":117192,"TargetID":117191,"Directional":false}]},{"ID":3320,"SourceStructureID":15977,"TargetStructureID":5599,"Label":"15977-5599 via Gap Junction from 33955 -> 115585, 56319 -> 56321, 117193 -> 117189","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":33955,"TargetID":115585,"Directional":false},{"SourceID":56319,"TargetID":56321,"Directional":false},{"SourceID":117193,"TargetID":117189,"Directional":false}]},{"ID":3321,"SourceStructureID":5599,"TargetStructureID":72299,"Label":"5599-72299 via Gap Junction from 56154 -> 82116","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56154,"TargetID":82116,"Directional":false}]},{"ID":3322,"SourceStructureID":5599,"TargetStructureID":131156,"Label":"5599-131156 via Gap Junction from 56126 -> 133802","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56126,"TargetID":133802,"Directional":false}]},{"ID":3323,"SourceStructureID":5600,"TargetStructureID":6958,"Label":"5600-6958 via Adherens from 116668 -> 116636, 116687 -> 116686","Type":"Adherens","Directional":false,"Links":[{"SourceID":116668,"TargetID":116636,"Directional":false},{"SourceID":116687,"TargetID":116686,"Directional":false}]},{"ID":3324,"SourceStructureID":5600,"TargetStructureID":7113,"Label":"5600-7113 via Gap Junction from 117246 -> 27356","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117246,"TargetID":27356,"Directional":false}]},{"ID":3325,"SourceStructureID":7114,"TargetStructureID":5600,"Label":"7114-5600 via Gap Junction from 26617 -> 26623, 71355 -> 26616, 116685 -> 122902, 116826 -> 116825, 116830 -> 116824, 124449 -> 124450, 124451 -> 124452","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":26617,"TargetID":26623,"Directional":false},{"SourceID":71355,"TargetID":26616,"Directional":false},{"SourceID":116685,"TargetID":122902,"Directional":false},{"SourceID":116826,"TargetID":116825,"Directional":false},{"SourceID":116830,"TargetID":116824,"Directional":false},{"SourceID":124449,"TargetID":124450,"Directional":false},{"SourceID":124451,"TargetID":124452,"Directional":false}]},{"ID":3326,"SourceStructureID":7231,"TargetStructureID":5600,"Label":"7231-5600 via Unknown from 116998 -> 116997","Type":"Unknown","Directional":false,"Links":[{"SourceID":116998,"TargetID":116997,"Directional":false}]},{"ID":3327,"SourceStructureID":39319,"TargetStructureID":5600,"Label":"39319-5600 via Adherens from 121945 -> 121944","Type":"Adherens","Directional":false,"Links":[{"SourceID":121945,"TargetID":121944,"Directional":false}]},{"ID":3328,"SourceStructureID":5601,"TargetStructureID":5601,"Label":"5601-5601 via Gap Junction from 127568 -> 135646","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":127568,"TargetID":135646,"Directional":false}]},{"ID":3329,"SourceStructureID":5601,"TargetStructureID":5637,"Label":"5601-5637 via Gap Junction from 56029 -> 56028, 127622 -> 127623","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56029,"TargetID":56028,"Directional":false},{"SourceID":127622,"TargetID":127623,"Directional":false}]},{"ID":3330,"SourceStructureID":5637,"TargetStructureID":5601,"Label":"5637-5601 via Touch from 91482 -> 91481, 135630 -> 135631","Type":"Touch","Directional":false,"Links":[{"SourceID":91482,"TargetID":91481,"Directional":false},{"SourceID":135630,"TargetID":135631,"Directional":false}]},{"ID":3331,"SourceStructureID":5650,"TargetStructureID":5601,"Label":"5650-5601 via Gap Junction from 56107 -> 56106","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56107,"TargetID":56106,"Directional":false}]},{"ID":3332,"SourceStructureID":5601,"TargetStructureID":6117,"Label":"5601-6117 via Gap Junction from 45391 -> 30915, 60117 -> 60056","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45391,"TargetID":30915,"Directional":false},{"SourceID":60117,"TargetID":60056,"Directional":false}]},{"ID":3333,"SourceStructureID":5601,"TargetStructureID":7113,"Label":"5601-7113 via Gap Junction from 15250 -> 15246, 29944 -> 29946, 29945 -> 29942, 54474 -> 54473, 54801 -> 54800, 91431 -> 91430, 92106 -> 127187, 124059 -> 124058","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15250,"TargetID":15246,"Directional":false},{"SourceID":29944,"TargetID":29946,"Directional":false},{"SourceID":29945,"TargetID":29942,"Directional":false},{"SourceID":54474,"TargetID":54473,"Directional":false},{"SourceID":54801,"TargetID":54800,"Directional":false},{"SourceID":91431,"TargetID":91430,"Directional":false},{"SourceID":92106,"TargetID":127187,"Directional":false},{"SourceID":124059,"TargetID":124058,"Directional":false}]},{"ID":3334,"SourceStructureID":5601,"TargetStructureID":7114,"Label":"5601-7114 via Gap Junction from 36037 -> 122807, 57372 -> 57371, 134797 -> 127519","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36037,"TargetID":122807,"Directional":false},{"SourceID":57372,"TargetID":57371,"Directional":false},{"SourceID":134797,"TargetID":127519,"Directional":false}]},{"ID":3335,"SourceStructureID":7114,"TargetStructureID":5601,"Label":"7114-5601 via Touch from 135628 -> 135629","Type":"Touch","Directional":false,"Links":[{"SourceID":135628,"TargetID":135629,"Directional":false}]},{"ID":3336,"SourceStructureID":9769,"TargetStructureID":5601,"Label":"9769-5601 via Adherens from 127377 -> 127376, 127561 -> 127562","Type":"Adherens","Directional":false,"Links":[{"SourceID":127377,"TargetID":127376,"Directional":false},{"SourceID":127561,"TargetID":127562,"Directional":false}]},{"ID":3337,"SourceStructureID":9769,"TargetStructureID":5601,"Label":"9769-5601 via Unknown from 127211 -> 127210, 127566 -> 127567","Type":"Unknown","Directional":false,"Links":[{"SourceID":127211,"TargetID":127210,"Directional":false},{"SourceID":127566,"TargetID":127567,"Directional":false}]},{"ID":3338,"SourceStructureID":5601,"TargetStructureID":11229,"Label":"5601-11229 via Gap Junction from 58588 -> 58587, 91444 -> 15633, 91480 -> 135680","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58588,"TargetID":58587,"Directional":false},{"SourceID":91444,"TargetID":15633,"Directional":false},{"SourceID":91480,"TargetID":135680,"Directional":false}]},{"ID":3339,"SourceStructureID":5601,"TargetStructureID":23836,"Label":"5601-23836 via Adherens from 127427 -> 127431","Type":"Adherens","Directional":false,"Links":[{"SourceID":127427,"TargetID":127431,"Directional":false}]},{"ID":3340,"SourceStructureID":33057,"TargetStructureID":5601,"Label":"33057-5601 via Unknown from 127564 -> 127563","Type":"Unknown","Directional":false,"Links":[{"SourceID":127564,"TargetID":127563,"Directional":false}]},{"ID":3341,"SourceStructureID":34055,"TargetStructureID":5601,"Label":"34055-5601 via Unknown from 127166 -> 127165","Type":"Unknown","Directional":false,"Links":[{"SourceID":127166,"TargetID":127165,"Directional":false}]},{"ID":3342,"SourceStructureID":5601,"TargetStructureID":35180,"Label":"5601-35180 via Unknown from 127576 -> 127577","Type":"Unknown","Directional":false,"Links":[{"SourceID":127576,"TargetID":127577,"Directional":false}]},{"ID":3343,"SourceStructureID":56108,"TargetStructureID":5601,"Label":"56108-5601 via Unknown from 56109 -> 56105","Type":"Unknown","Directional":false,"Links":[{"SourceID":56109,"TargetID":56105,"Directional":false}]},{"ID":3344,"SourceStructureID":5601,"TargetStructureID":58757,"Label":"5601-58757 via Adherens from 127416 -> 127420","Type":"Adherens","Directional":false,"Links":[{"SourceID":127416,"TargetID":127420,"Directional":false}]},{"ID":3345,"SourceStructureID":5601,"TargetStructureID":84118,"Label":"5601-84118 via Adherens from 127617 -> 127618","Type":"Adherens","Directional":false,"Links":[{"SourceID":127617,"TargetID":127618,"Directional":false}]},{"ID":3346,"SourceStructureID":5601,"TargetStructureID":158859,"Label":"5601-158859 via Unknown from 126894 -> 158860","Type":"Unknown","Directional":false,"Links":[{"SourceID":126894,"TargetID":158860,"Directional":false}]},{"ID":3347,"SourceStructureID":5606,"TargetStructureID":5607,"Label":"5606-5607 via Adherens from 36905 -> 38962","Type":"Adherens","Directional":false,"Links":[{"SourceID":36905,"TargetID":38962,"Directional":false}]},{"ID":3348,"SourceStructureID":5606,"TargetStructureID":5607,"Label":"5606-5607 via Gap Junction from 36907 -> 38963, 38946 -> 38944, 43051 -> 43050, 121851 -> 121850","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36907,"TargetID":38963,"Directional":false},{"SourceID":38946,"TargetID":38944,"Directional":false},{"SourceID":43051,"TargetID":43050,"Directional":false},{"SourceID":121851,"TargetID":121850,"Directional":false}]},{"ID":3349,"SourceStructureID":5606,"TargetStructureID":5608,"Label":"5606-5608 via Gap Junction from 42843 -> 42842, 120880 -> 120879","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":42843,"TargetID":42842,"Directional":false},{"SourceID":120880,"TargetID":120879,"Directional":false}]},{"ID":3350,"SourceStructureID":5637,"TargetStructureID":5606,"Label":"5637-5606 via Gap Junction from 92987 -> 92988","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92987,"TargetID":92988,"Directional":false}]},{"ID":3351,"SourceStructureID":5607,"TargetStructureID":5637,"Label":"5607-5637 via Gap Junction from 121841 -> 121840","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121841,"TargetID":121840,"Directional":false}]},{"ID":3352,"SourceStructureID":5607,"TargetStructureID":7149,"Label":"5607-7149 via Gap Junction from 121831 -> 121829","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121831,"TargetID":121829,"Directional":false}]},{"ID":3353,"SourceStructureID":7279,"TargetStructureID":5607,"Label":"7279-5607 via Gap Junction from 38943 -> 38942, 121847 -> 121846, 121849 -> 121848, 123519 -> 123518","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38943,"TargetID":38942,"Directional":false},{"SourceID":121847,"TargetID":121846,"Directional":false},{"SourceID":121849,"TargetID":121848,"Directional":false},{"SourceID":123519,"TargetID":123518,"Directional":false}]},{"ID":3354,"SourceStructureID":58682,"TargetStructureID":5607,"Label":"58682-5607 via Gap Junction from 58683 -> 54865","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58683,"TargetID":54865,"Directional":false}]},{"ID":3355,"SourceStructureID":5637,"TargetStructureID":5608,"Label":"5637-5608 via Gap Junction from 56013 -> 147523, 121837 -> 121836, 121842 -> 121843, 147525 -> 147524, 147527 -> 147526","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56013,"TargetID":147523,"Directional":false},{"SourceID":121837,"TargetID":121836,"Directional":false},{"SourceID":121842,"TargetID":121843,"Directional":false},{"SourceID":147525,"TargetID":147524,"Directional":false},{"SourceID":147527,"TargetID":147526,"Directional":false}]},{"ID":3356,"SourceStructureID":5608,"TargetStructureID":44256,"Label":"5608-44256 via Gap Junction from 118335 -> 120572, 123110 -> 123108, 123111 -> 123112, 123113 -> 123114","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118335,"TargetID":120572,"Directional":false},{"SourceID":123110,"TargetID":123108,"Directional":false},{"SourceID":123111,"TargetID":123112,"Directional":false},{"SourceID":123113,"TargetID":123114,"Directional":false}]},{"ID":3357,"SourceStructureID":7113,"TargetStructureID":5609,"Label":"7113-5609 via Adherens from 54796 -> 54797","Type":"Adherens","Directional":false,"Links":[{"SourceID":54796,"TargetID":54797,"Directional":false}]},{"ID":3358,"SourceStructureID":30332,"TargetStructureID":5618,"Label":"30332-5618 via Gap Junction from 66008 -> 66007","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66008,"TargetID":66007,"Directional":false}]},{"ID":3359,"SourceStructureID":5618,"TargetStructureID":66004,"Label":"5618-66004 via Adherens from 66003 -> 66005","Type":"Adherens","Directional":false,"Links":[{"SourceID":66003,"TargetID":66005,"Directional":false}]},{"ID":3360,"SourceStructureID":5623,"TargetStructureID":5623,"Label":"5623-5623 via Gap Junction from 123704 -> 123702","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123704,"TargetID":123702,"Directional":false}]},{"ID":3361,"SourceStructureID":5623,"TargetStructureID":6589,"Label":"5623-6589 via Gap Junction from 130631 -> 130630","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130631,"TargetID":130630,"Directional":false}]},{"ID":3362,"SourceStructureID":5623,"TargetStructureID":6997,"Label":"5623-6997 via Adherens from 136653 -> 136652, 136768 -> 136769","Type":"Adherens","Directional":false,"Links":[{"SourceID":136653,"TargetID":136652,"Directional":false},{"SourceID":136768,"TargetID":136769,"Directional":false}]},{"ID":3363,"SourceStructureID":6997,"TargetStructureID":5623,"Label":"6997-5623 via Gap Junction from 40384 -> 40383, 52738 -> 52739","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40384,"TargetID":40383,"Directional":false},{"SourceID":52738,"TargetID":52739,"Directional":false}]},{"ID":3364,"SourceStructureID":5623,"TargetStructureID":94784,"Label":"5623-94784 via Adherens from 94786 -> 94787","Type":"Adherens","Directional":false,"Links":[{"SourceID":94786,"TargetID":94787,"Directional":false}]},{"ID":3365,"SourceStructureID":5631,"TargetStructureID":69537,"Label":"5631-69537 via Adherens from 69594 -> 69593","Type":"Adherens","Directional":false,"Links":[{"SourceID":69594,"TargetID":69593,"Directional":false}]},{"ID":3366,"SourceStructureID":5860,"TargetStructureID":5635,"Label":"5860-5635 via Gap Junction from 28806 -> 28805, 55960 -> 55959, 135577 -> 135578, 147677 -> 24728","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":28806,"TargetID":28805,"Directional":false},{"SourceID":55960,"TargetID":55959,"Directional":false},{"SourceID":135577,"TargetID":135578,"Directional":false},{"SourceID":147677,"TargetID":24728,"Directional":false}]},{"ID":3367,"SourceStructureID":5637,"TargetStructureID":5641,"Label":"5637-5641 via Gap Junction from 54787 -> 39054, 54789 -> 54788, 55820 -> 55819, 58566 -> 58565","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54787,"TargetID":39054,"Directional":false},{"SourceID":54789,"TargetID":54788,"Directional":false},{"SourceID":55820,"TargetID":55819,"Directional":false},{"SourceID":58566,"TargetID":58565,"Directional":false}]},{"ID":3368,"SourceStructureID":7113,"TargetStructureID":5637,"Label":"7113-5637 via Gap Junction from 54799 -> 54794","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54799,"TargetID":54794,"Directional":false}]},{"ID":3369,"SourceStructureID":5637,"TargetStructureID":7114,"Label":"5637-7114 via Gap Junction from 31387 -> 31386, 135627 -> 56056","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":31387,"TargetID":31386,"Directional":false},{"SourceID":135627,"TargetID":56056,"Directional":false}]},{"ID":3370,"SourceStructureID":5637,"TargetStructureID":11229,"Label":"5637-11229 via Gap Junction from 39082 -> 39083, 58575 -> 58574, 135679 -> 56047, 135681 -> 56040","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39082,"TargetID":39083,"Directional":false},{"SourceID":58575,"TargetID":58574,"Directional":false},{"SourceID":135679,"TargetID":56047,"Directional":false},{"SourceID":135681,"TargetID":56040,"Directional":false}]},{"ID":3371,"SourceStructureID":5638,"TargetStructureID":7279,"Label":"5638-7279 via Gap Junction from 117181 -> 118943","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117181,"TargetID":118943,"Directional":false}]},{"ID":3372,"SourceStructureID":15977,"TargetStructureID":5638,"Label":"15977-5638 via Adherens from 33976 -> 33975","Type":"Adherens","Directional":false,"Links":[{"SourceID":33976,"TargetID":33975,"Directional":false}]},{"ID":3373,"SourceStructureID":5638,"TargetStructureID":15977,"Label":"5638-15977 via Gap Junction from 56419 -> 56418, 60603 -> 60602, 117089 -> 117088, 117103 -> 117102, 117177 -> 117176","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56419,"TargetID":56418,"Directional":false},{"SourceID":60603,"TargetID":60602,"Directional":false},{"SourceID":117089,"TargetID":117088,"Directional":false},{"SourceID":117103,"TargetID":117102,"Directional":false},{"SourceID":117177,"TargetID":117176,"Directional":false}]},{"ID":3374,"SourceStructureID":25182,"TargetStructureID":5638,"Label":"25182-5638 via Adherens from 25187 -> 66242","Type":"Adherens","Directional":false,"Links":[{"SourceID":25187,"TargetID":66242,"Directional":false}]},{"ID":3375,"SourceStructureID":71411,"TargetStructureID":5638,"Label":"71411-5638 via Gap Junction from 71959 -> 71404","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71959,"TargetID":71404,"Directional":false}]},{"ID":3376,"SourceStructureID":117112,"TargetStructureID":5638,"Label":"117112-5638 via Gap Junction from 117114 -> 117111, 117116 -> 117115","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117114,"TargetID":117111,"Directional":false},{"SourceID":117116,"TargetID":117115,"Directional":false}]},{"ID":3377,"SourceStructureID":117127,"TargetStructureID":5638,"Label":"117127-5638 via Gap Junction from 117128 -> 117126","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117128,"TargetID":117126,"Directional":false}]},{"ID":3378,"SourceStructureID":5640,"TargetStructureID":5640,"Label":"5640-5640 via Gap Junction from 136431 -> 136430","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136431,"TargetID":136430,"Directional":false}]},{"ID":3379,"SourceStructureID":136427,"TargetStructureID":5640,"Label":"136427-5640 via Gap Junction from 136428 -> 136426","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136428,"TargetID":136426,"Directional":false}]},{"ID":3380,"SourceStructureID":7113,"TargetStructureID":5641,"Label":"7113-5641 via Postsynapse from 124054 -> 124055","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":124054,"TargetID":124055,"Directional":false}]},{"ID":3381,"SourceStructureID":15976,"TargetStructureID":5641,"Label":"15976-5641 via Gap Junction from 57520 -> 57519, 58564 -> 57516","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57520,"TargetID":57519,"Directional":false},{"SourceID":58564,"TargetID":57516,"Directional":false}]},{"ID":3382,"SourceStructureID":124069,"TargetStructureID":5641,"Label":"124069-5641 via Unknown from 147985 -> 147986","Type":"Unknown","Directional":false,"Links":[{"SourceID":147985,"TargetID":147986,"Directional":false}]},{"ID":3383,"SourceStructureID":30177,"TargetStructureID":5643,"Label":"30177-5643 via Gap Junction from 131968 -> 131969","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131968,"TargetID":131969,"Directional":false}]},{"ID":3384,"SourceStructureID":5645,"TargetStructureID":5645,"Label":"5645-5645 via Gap Junction from 47100 -> 47099, 135383 -> 135382","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47100,"TargetID":47099,"Directional":false},{"SourceID":135383,"TargetID":135382,"Directional":false}]},{"ID":3385,"SourceStructureID":5645,"TargetStructureID":5649,"Label":"5645-5649 via Adherens from 135434 -> 135433","Type":"Adherens","Directional":false,"Links":[{"SourceID":135434,"TargetID":135433,"Directional":false}]},{"ID":3386,"SourceStructureID":5645,"TargetStructureID":5649,"Label":"5645-5649 via Gap Junction from 54526 -> 54297, 108495 -> 108484, 108496 -> 108486","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54526,"TargetID":54297,"Directional":false},{"SourceID":108495,"TargetID":108484,"Directional":false},{"SourceID":108496,"TargetID":108486,"Directional":false}]},{"ID":3387,"SourceStructureID":5645,"TargetStructureID":5916,"Label":"5645-5916 via Gap Junction from 109476 -> 109473","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109476,"TargetID":109473,"Directional":false}]},{"ID":3388,"SourceStructureID":6121,"TargetStructureID":5645,"Label":"6121-5645 via Touch from 147839 -> 147838","Type":"Touch","Directional":false,"Links":[{"SourceID":147839,"TargetID":147838,"Directional":false}]},{"ID":3389,"SourceStructureID":6142,"TargetStructureID":5645,"Label":"6142-5645 via Gap Junction from 108667 -> 108647","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108667,"TargetID":108647,"Directional":false}]},{"ID":3390,"SourceStructureID":7904,"TargetStructureID":5645,"Label":"7904-5645 via Gap Junction from 54315 -> 54314, 105842 -> 105841, 108583 -> 108581, 108591 -> 108588, 122376 -> 122377, 130621 -> 130620","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54315,"TargetID":54314,"Directional":false},{"SourceID":105842,"TargetID":105841,"Directional":false},{"SourceID":108583,"TargetID":108581,"Directional":false},{"SourceID":108591,"TargetID":108588,"Directional":false},{"SourceID":122376,"TargetID":122377,"Directional":false},{"SourceID":130621,"TargetID":130620,"Directional":false}]},{"ID":3391,"SourceStructureID":5645,"TargetStructureID":7951,"Label":"5645-7951 via Gap Junction from 47695 -> 118977, 118976 -> 118975, 118978 -> 47719, 118987 -> 47750","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47695,"TargetID":118977,"Directional":false},{"SourceID":118976,"TargetID":118975,"Directional":false},{"SourceID":118978,"TargetID":47719,"Directional":false},{"SourceID":118987,"TargetID":47750,"Directional":false}]},{"ID":3392,"SourceStructureID":8032,"TargetStructureID":5645,"Label":"8032-5645 via Gap Junction from 147836 -> 147835","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":147836,"TargetID":147835,"Directional":false}]},{"ID":3393,"SourceStructureID":31334,"TargetStructureID":5645,"Label":"31334-5645 via Gap Junction from 47409 -> 31333","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47409,"TargetID":31333,"Directional":false}]},{"ID":3394,"SourceStructureID":77664,"TargetStructureID":5645,"Label":"77664-5645 via Adherens from 77666 -> 77667","Type":"Adherens","Directional":false,"Links":[{"SourceID":77666,"TargetID":77667,"Directional":false}]},{"ID":3395,"SourceStructureID":105780,"TargetStructureID":5645,"Label":"105780-5645 via Gap Junction from 108552 -> 108551","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108552,"TargetID":108551,"Directional":false}]},{"ID":3396,"SourceStructureID":5648,"TargetStructureID":13469,"Label":"5648-13469 via Adherens from 130122 -> 130121","Type":"Adherens","Directional":false,"Links":[{"SourceID":130122,"TargetID":130121,"Directional":false}]},{"ID":3397,"SourceStructureID":13469,"TargetStructureID":5648,"Label":"13469-5648 via Gap Junction from 130123 -> 130124","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130123,"TargetID":130124,"Directional":false}]},{"ID":3398,"SourceStructureID":5649,"TargetStructureID":5649,"Label":"5649-5649 via Adherens from 104603 -> 104604","Type":"Adherens","Directional":false,"Links":[{"SourceID":104603,"TargetID":104604,"Directional":false}]},{"ID":3399,"SourceStructureID":5649,"TargetStructureID":5649,"Label":"5649-5649 via Gap Junction from 108489 -> 108488, 134965 -> 134966","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108489,"TargetID":108488,"Directional":false},{"SourceID":134965,"TargetID":134966,"Directional":false}]},{"ID":3400,"SourceStructureID":5649,"TargetStructureID":5916,"Label":"5649-5916 via Adherens from 134978 -> 134977","Type":"Adherens","Directional":false,"Links":[{"SourceID":134978,"TargetID":134977,"Directional":false}]},{"ID":3401,"SourceStructureID":5649,"TargetStructureID":5916,"Label":"5649-5916 via Gap Junction from 54116 -> 71971, 71973 -> 71972","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54116,"TargetID":71971,"Directional":false},{"SourceID":71973,"TargetID":71972,"Directional":false}]},{"ID":3402,"SourceStructureID":6115,"TargetStructureID":5649,"Label":"6115-5649 via Adherens from 131168 -> 131169","Type":"Adherens","Directional":false,"Links":[{"SourceID":131168,"TargetID":131169,"Directional":false}]},{"ID":3403,"SourceStructureID":6115,"TargetStructureID":5649,"Label":"6115-5649 via Gap Junction from 55753 -> 55752, 55888 -> 55886, 60057 -> 76140, 75439 -> 105395, 134958 -> 134957","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55753,"TargetID":55752,"Directional":false},{"SourceID":55888,"TargetID":55886,"Directional":false},{"SourceID":60057,"TargetID":76140,"Directional":false},{"SourceID":75439,"TargetID":105395,"Directional":false},{"SourceID":134958,"TargetID":134957,"Directional":false}]},{"ID":3404,"SourceStructureID":5649,"TargetStructureID":6120,"Label":"5649-6120 via Gap Junction from 111023 -> 114843","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111023,"TargetID":114843,"Directional":false}]},{"ID":3405,"SourceStructureID":5649,"TargetStructureID":6142,"Label":"5649-6142 via Gap Junction from 38492 -> 38491, 106031 -> 106030","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38492,"TargetID":38491,"Directional":false},{"SourceID":106031,"TargetID":106030,"Directional":false}]},{"ID":3406,"SourceStructureID":7147,"TargetStructureID":5649,"Label":"7147-5649 via Gap Junction from 30302 -> 55750, 134960 -> 134959","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30302,"TargetID":55750,"Directional":false},{"SourceID":134960,"TargetID":134959,"Directional":false}]},{"ID":3407,"SourceStructureID":5649,"TargetStructureID":12897,"Label":"5649-12897 via Gap Junction from 54101 -> 54099, 107217 -> 107216, 107366 -> 107365, 134407 -> 134406, 134967 -> 134968","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54101,"TargetID":54099,"Directional":false},{"SourceID":107217,"TargetID":107216,"Directional":false},{"SourceID":107366,"TargetID":107365,"Directional":false},{"SourceID":134407,"TargetID":134406,"Directional":false},{"SourceID":134967,"TargetID":134968,"Directional":false}]},{"ID":3408,"SourceStructureID":5649,"TargetStructureID":16026,"Label":"5649-16026 via Adherens from 124801 -> 124800","Type":"Adherens","Directional":false,"Links":[{"SourceID":124801,"TargetID":124800,"Directional":false}]},{"ID":3409,"SourceStructureID":16026,"TargetStructureID":5649,"Label":"16026-5649 via Touch from 134438 -> 134439","Type":"Touch","Directional":false,"Links":[{"SourceID":134438,"TargetID":134439,"Directional":false}]},{"ID":3410,"SourceStructureID":35064,"TargetStructureID":5649,"Label":"35064-5649 via Unknown from 53902 -> 53901","Type":"Unknown","Directional":false,"Links":[{"SourceID":53902,"TargetID":53901,"Directional":false}]},{"ID":3411,"SourceStructureID":5649,"TargetStructureID":65172,"Label":"5649-65172 via Unknown from 111025 -> 111024","Type":"Unknown","Directional":false,"Links":[{"SourceID":111025,"TargetID":111024,"Directional":false}]},{"ID":3412,"SourceStructureID":67671,"TargetStructureID":5649,"Label":"67671-5649 via Adherens from 78002 -> 78003","Type":"Adherens","Directional":false,"Links":[{"SourceID":78002,"TargetID":78003,"Directional":false}]},{"ID":3413,"SourceStructureID":68153,"TargetStructureID":5649,"Label":"68153-5649 via Adherens from 68175 -> 68176","Type":"Adherens","Directional":false,"Links":[{"SourceID":68175,"TargetID":68176,"Directional":false}]},{"ID":3414,"SourceStructureID":5649,"TargetStructureID":68497,"Label":"5649-68497 via Adherens from 81591 -> 81590","Type":"Adherens","Directional":false,"Links":[{"SourceID":81591,"TargetID":81590,"Directional":false}]},{"ID":3415,"SourceStructureID":5649,"TargetStructureID":73313,"Label":"5649-73313 via Adherens from 135174 -> 135175","Type":"Adherens","Directional":false,"Links":[{"SourceID":135174,"TargetID":135175,"Directional":false}]},{"ID":3416,"SourceStructureID":5649,"TargetStructureID":78909,"Label":"5649-78909 via Adherens from 87519 -> 87518","Type":"Adherens","Directional":false,"Links":[{"SourceID":87519,"TargetID":87518,"Directional":false}]},{"ID":3417,"SourceStructureID":5649,"TargetStructureID":92926,"Label":"5649-92926 via Adherens from 75686 -> 75685","Type":"Adherens","Directional":false,"Links":[{"SourceID":75686,"TargetID":75685,"Directional":false}]},{"ID":3418,"SourceStructureID":5649,"TargetStructureID":92926,"Label":"5649-92926 via Unknown from 53835 -> 75684","Type":"Unknown","Directional":false,"Links":[{"SourceID":53835,"TargetID":75684,"Directional":false}]},{"ID":3419,"SourceStructureID":103774,"TargetStructureID":5649,"Label":"103774-5649 via Unknown from 134837 -> 134838","Type":"Unknown","Directional":false,"Links":[{"SourceID":134837,"TargetID":134838,"Directional":false}]},{"ID":3420,"SourceStructureID":5649,"TargetStructureID":104480,"Label":"5649-104480 via Unknown from 104482 -> 104481","Type":"Unknown","Directional":false,"Links":[{"SourceID":104482,"TargetID":104481,"Directional":false}]},{"ID":3421,"SourceStructureID":5649,"TargetStructureID":104484,"Label":"5649-104484 via Adherens from 104483 -> 104485","Type":"Adherens","Directional":false,"Links":[{"SourceID":104483,"TargetID":104485,"Directional":false}]},{"ID":3422,"SourceStructureID":104559,"TargetStructureID":5649,"Label":"104559-5649 via Unknown from 104562 -> 104563","Type":"Unknown","Directional":false,"Links":[{"SourceID":104562,"TargetID":104563,"Directional":false}]},{"ID":3423,"SourceStructureID":104616,"TargetStructureID":5649,"Label":"104616-5649 via Adherens from 136135 -> 136134","Type":"Adherens","Directional":false,"Links":[{"SourceID":136135,"TargetID":136134,"Directional":false}]},{"ID":3424,"SourceStructureID":104633,"TargetStructureID":5649,"Label":"104633-5649 via Unknown from 104635 -> 53842","Type":"Unknown","Directional":false,"Links":[{"SourceID":104635,"TargetID":53842,"Directional":false}]},{"ID":3425,"SourceStructureID":5649,"TargetStructureID":104721,"Label":"5649-104721 via Adherens from 135419 -> 135418","Type":"Adherens","Directional":false,"Links":[{"SourceID":135419,"TargetID":135418,"Directional":false}]},{"ID":3426,"SourceStructureID":104721,"TargetStructureID":5649,"Label":"104721-5649 via Gap Junction from 104722 -> 53889","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":104722,"TargetID":53889,"Directional":false}]},{"ID":3427,"SourceStructureID":104791,"TargetStructureID":5649,"Label":"104791-5649 via Adherens from 134848 -> 134847","Type":"Adherens","Directional":false,"Links":[{"SourceID":134848,"TargetID":134847,"Directional":false}]},{"ID":3428,"SourceStructureID":104794,"TargetStructureID":5649,"Label":"104794-5649 via Unknown from 104795 -> 104793","Type":"Unknown","Directional":false,"Links":[{"SourceID":104795,"TargetID":104793,"Directional":false}]},{"ID":3429,"SourceStructureID":5649,"TargetStructureID":104796,"Label":"5649-104796 via Unknown from 104798 -> 104797","Type":"Unknown","Directional":false,"Links":[{"SourceID":104798,"TargetID":104797,"Directional":false}]},{"ID":3430,"SourceStructureID":5649,"TargetStructureID":105333,"Label":"5649-105333 via Unknown from 134861 -> 134860","Type":"Unknown","Directional":false,"Links":[{"SourceID":134861,"TargetID":134860,"Directional":false}]},{"ID":3431,"SourceStructureID":5649,"TargetStructureID":105393,"Label":"5649-105393 via Unknown from 134872 -> 134871","Type":"Unknown","Directional":false,"Links":[{"SourceID":134872,"TargetID":134871,"Directional":false}]},{"ID":3432,"SourceStructureID":5649,"TargetStructureID":105426,"Label":"5649-105426 via Unknown from 135156 -> 135157","Type":"Unknown","Directional":false,"Links":[{"SourceID":135156,"TargetID":135157,"Directional":false}]},{"ID":3433,"SourceStructureID":105547,"TargetStructureID":5649,"Label":"105547-5649 via Adherens from 134893 -> 134892","Type":"Adherens","Directional":false,"Links":[{"SourceID":134893,"TargetID":134892,"Directional":false}]},{"ID":3434,"SourceStructureID":105580,"TargetStructureID":5649,"Label":"105580-5649 via Conventional from 105582 -> 105583","Type":"Conventional","Directional":false,"Links":[{"SourceID":105582,"TargetID":105583,"Directional":false}]},{"ID":3435,"SourceStructureID":105673,"TargetStructureID":5649,"Label":"105673-5649 via Adherens from 105691 -> 53905","Type":"Adherens","Directional":false,"Links":[{"SourceID":105691,"TargetID":53905,"Directional":false}]},{"ID":3436,"SourceStructureID":5649,"TargetStructureID":105676,"Label":"5649-105676 via Unknown from 134899 -> 134900","Type":"Unknown","Directional":false,"Links":[{"SourceID":134899,"TargetID":134900,"Directional":false}]},{"ID":3437,"SourceStructureID":105704,"TargetStructureID":5649,"Label":"105704-5649 via Unknown from 134903 -> 134902","Type":"Unknown","Directional":false,"Links":[{"SourceID":134903,"TargetID":134902,"Directional":false}]},{"ID":3438,"SourceStructureID":105706,"TargetStructureID":5649,"Label":"105706-5649 via Adherens from 105732 -> 105731","Type":"Adherens","Directional":false,"Links":[{"SourceID":105732,"TargetID":105731,"Directional":false}]},{"ID":3439,"SourceStructureID":105735,"TargetStructureID":5649,"Label":"105735-5649 via Adherens from 135422 -> 135421","Type":"Adherens","Directional":false,"Links":[{"SourceID":135422,"TargetID":135421,"Directional":false}]},{"ID":3440,"SourceStructureID":5649,"TargetStructureID":105735,"Label":"5649-105735 via Gap Junction from 53950 -> 105736","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53950,"TargetID":105736,"Directional":false}]},{"ID":3441,"SourceStructureID":5649,"TargetStructureID":105906,"Label":"5649-105906 via Unknown from 105911 -> 105910","Type":"Unknown","Directional":false,"Links":[{"SourceID":105911,"TargetID":105910,"Directional":false}]},{"ID":3442,"SourceStructureID":105908,"TargetStructureID":5649,"Label":"105908-5649 via Unknown from 134910 -> 134909","Type":"Unknown","Directional":false,"Links":[{"SourceID":134910,"TargetID":134909,"Directional":false}]},{"ID":3443,"SourceStructureID":5649,"TargetStructureID":106005,"Label":"5649-106005 via Adherens from 106004 -> 106006","Type":"Adherens","Directional":false,"Links":[{"SourceID":106004,"TargetID":106006,"Directional":false}]},{"ID":3444,"SourceStructureID":5649,"TargetStructureID":106013,"Label":"5649-106013 via Unknown from 134961 -> 134962","Type":"Unknown","Directional":false,"Links":[{"SourceID":134961,"TargetID":134962,"Directional":false}]},{"ID":3445,"SourceStructureID":106059,"TargetStructureID":5649,"Label":"106059-5649 via Adherens from 135388 -> 131925","Type":"Adherens","Directional":false,"Links":[{"SourceID":135388,"TargetID":131925,"Directional":false}]},{"ID":3446,"SourceStructureID":106059,"TargetStructureID":5649,"Label":"106059-5649 via Gap Junction from 135387 -> 131926","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135387,"TargetID":131926,"Directional":false}]},{"ID":3447,"SourceStructureID":5649,"TargetStructureID":106105,"Label":"5649-106105 via Unknown from 134916 -> 134915","Type":"Unknown","Directional":false,"Links":[{"SourceID":134916,"TargetID":134915,"Directional":false}]},{"ID":3448,"SourceStructureID":106258,"TargetStructureID":5649,"Label":"106258-5649 via Adherens from 106267 -> 106266","Type":"Adherens","Directional":false,"Links":[{"SourceID":106267,"TargetID":106266,"Directional":false}]},{"ID":3449,"SourceStructureID":5649,"TargetStructureID":106280,"Label":"5649-106280 via Unknown from 134918 -> 134917","Type":"Unknown","Directional":false,"Links":[{"SourceID":134918,"TargetID":134917,"Directional":false}]},{"ID":3450,"SourceStructureID":5649,"TargetStructureID":106285,"Label":"5649-106285 via Adherens from 106284 -> 106286","Type":"Adherens","Directional":false,"Links":[{"SourceID":106284,"TargetID":106286,"Directional":false}]},{"ID":3451,"SourceStructureID":106303,"TargetStructureID":5649,"Label":"106303-5649 via Adherens from 106305 -> 54186","Type":"Adherens","Directional":false,"Links":[{"SourceID":106305,"TargetID":54186,"Directional":false}]},{"ID":3452,"SourceStructureID":106552,"TargetStructureID":5649,"Label":"106552-5649 via Adherens from 106593 -> 106592","Type":"Adherens","Directional":false,"Links":[{"SourceID":106593,"TargetID":106592,"Directional":false}]},{"ID":3453,"SourceStructureID":106703,"TargetStructureID":5649,"Label":"106703-5649 via Adherens from 106704 -> 106702","Type":"Adherens","Directional":false,"Links":[{"SourceID":106704,"TargetID":106702,"Directional":false}]},{"ID":3454,"SourceStructureID":106720,"TargetStructureID":5649,"Label":"106720-5649 via Unknown from 106721 -> 106719","Type":"Unknown","Directional":false,"Links":[{"SourceID":106721,"TargetID":106719,"Directional":false}]},{"ID":3455,"SourceStructureID":106913,"TargetStructureID":5649,"Label":"106913-5649 via Adherens from 106914 -> 106912","Type":"Adherens","Directional":false,"Links":[{"SourceID":106914,"TargetID":106912,"Directional":false}]},{"ID":3456,"SourceStructureID":107054,"TargetStructureID":5649,"Label":"107054-5649 via Adherens from 107057 -> 107053","Type":"Adherens","Directional":false,"Links":[{"SourceID":107057,"TargetID":107053,"Directional":false}]},{"ID":3457,"SourceStructureID":5649,"TargetStructureID":107078,"Label":"5649-107078 via Adherens from 107081 -> 107080","Type":"Adherens","Directional":false,"Links":[{"SourceID":107081,"TargetID":107080,"Directional":false}]},{"ID":3458,"SourceStructureID":107078,"TargetStructureID":5649,"Label":"107078-5649 via Gap Junction from 131915 -> 131914","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131915,"TargetID":131914,"Directional":false}]},{"ID":3459,"SourceStructureID":107110,"TargetStructureID":5649,"Label":"107110-5649 via Unknown from 134921 -> 134920","Type":"Unknown","Directional":false,"Links":[{"SourceID":134921,"TargetID":134920,"Directional":false}]},{"ID":3460,"SourceStructureID":107117,"TargetStructureID":5649,"Label":"107117-5649 via Unknown from 131917 -> 131916","Type":"Unknown","Directional":false,"Links":[{"SourceID":131917,"TargetID":131916,"Directional":false}]},{"ID":3461,"SourceStructureID":5649,"TargetStructureID":107134,"Label":"5649-107134 via Unknown from 134924 -> 134925","Type":"Unknown","Directional":false,"Links":[{"SourceID":134924,"TargetID":134925,"Directional":false}]},{"ID":3462,"SourceStructureID":5649,"TargetStructureID":107140,"Label":"5649-107140 via Unknown from 134927 -> 134926","Type":"Unknown","Directional":false,"Links":[{"SourceID":134927,"TargetID":134926,"Directional":false}]},{"ID":3463,"SourceStructureID":107182,"TargetStructureID":5649,"Label":"107182-5649 via Postsynapse from 107183 -> 54307","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":107183,"TargetID":54307,"Directional":false}]},{"ID":3464,"SourceStructureID":107213,"TargetStructureID":5649,"Label":"107213-5649 via Unknown from 131923 -> 131922","Type":"Unknown","Directional":false,"Links":[{"SourceID":131923,"TargetID":131922,"Directional":false}]},{"ID":3465,"SourceStructureID":107335,"TargetStructureID":5649,"Label":"107335-5649 via Adherens from 107336 -> 107334","Type":"Adherens","Directional":false,"Links":[{"SourceID":107336,"TargetID":107334,"Directional":false}]},{"ID":3466,"SourceStructureID":107339,"TargetStructureID":5649,"Label":"107339-5649 via Adherens from 135369 -> 135370","Type":"Adherens","Directional":false,"Links":[{"SourceID":135369,"TargetID":135370,"Directional":false}]},{"ID":3467,"SourceStructureID":5649,"TargetStructureID":107339,"Label":"5649-107339 via Gap Junction from 107317 -> 107341","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":107317,"TargetID":107341,"Directional":false}]},{"ID":3468,"SourceStructureID":107360,"TargetStructureID":5649,"Label":"107360-5649 via Adherens from 107361 -> 70019","Type":"Adherens","Directional":false,"Links":[{"SourceID":107361,"TargetID":70019,"Directional":false}]},{"ID":3469,"SourceStructureID":134950,"TargetStructureID":5649,"Label":"134950-5649 via Unknown from 134951 -> 53966","Type":"Unknown","Directional":false,"Links":[{"SourceID":134951,"TargetID":53966,"Directional":false}]},{"ID":3470,"SourceStructureID":134952,"TargetStructureID":5649,"Label":"134952-5649 via Unknown from 134953 -> 54123","Type":"Unknown","Directional":false,"Links":[{"SourceID":134953,"TargetID":54123,"Directional":false}]},{"ID":3471,"SourceStructureID":134954,"TargetStructureID":5649,"Label":"134954-5649 via Unknown from 134955 -> 54300","Type":"Unknown","Directional":false,"Links":[{"SourceID":134955,"TargetID":54300,"Directional":false}]},{"ID":3472,"SourceStructureID":135401,"TargetStructureID":5649,"Label":"135401-5649 via Adherens from 135403 -> 108184","Type":"Adherens","Directional":false,"Links":[{"SourceID":135403,"TargetID":108184,"Directional":false}]},{"ID":3473,"SourceStructureID":135401,"TargetStructureID":5649,"Label":"135401-5649 via Unknown from 135402 -> 134969","Type":"Unknown","Directional":false,"Links":[{"SourceID":135402,"TargetID":134969,"Directional":false}]},{"ID":3474,"SourceStructureID":5650,"TargetStructureID":5650,"Label":"5650-5650 via Gap Junction from 103852 -> 103851, 103973 -> 103974, 104166 -> 104167, 104319 -> 104320, 104323 -> 104322, 104472 -> 104471, 105158 -> 105157, 118209 -> 118208, 126400 -> 126401","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":103852,"TargetID":103851,"Directional":false},{"SourceID":103973,"TargetID":103974,"Directional":false},{"SourceID":104166,"TargetID":104167,"Directional":false},{"SourceID":104319,"TargetID":104320,"Directional":false},{"SourceID":104323,"TargetID":104322,"Directional":false},{"SourceID":104472,"TargetID":104471,"Directional":false},{"SourceID":105158,"TargetID":105157,"Directional":false},{"SourceID":118209,"TargetID":118208,"Directional":false},{"SourceID":126400,"TargetID":126401,"Directional":false}]},{"ID":3475,"SourceStructureID":5650,"TargetStructureID":5729,"Label":"5650-5729 via Gap Junction from 102921 -> 102928","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":102921,"TargetID":102928,"Directional":false}]},{"ID":3476,"SourceStructureID":6047,"TargetStructureID":5650,"Label":"6047-5650 via Gap Junction from 19726 -> 105098","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19726,"TargetID":105098,"Directional":false}]},{"ID":3477,"SourceStructureID":5650,"TargetStructureID":6117,"Label":"5650-6117 via Gap Junction from 54324 -> 54325, 60118 -> 23474, 106295 -> 106293, 113293 -> 54317","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54324,"TargetID":54325,"Directional":false},{"SourceID":60118,"TargetID":23474,"Directional":false},{"SourceID":106295,"TargetID":106293,"Directional":false},{"SourceID":113293,"TargetID":54317,"Directional":false}]},{"ID":3478,"SourceStructureID":5650,"TargetStructureID":6118,"Label":"5650-6118 via Gap Junction from 118196 -> 118195","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118196,"TargetID":118195,"Directional":false}]},{"ID":3479,"SourceStructureID":6120,"TargetStructureID":5650,"Label":"6120-5650 via Gap Junction from 104272 -> 104271","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":104272,"TargetID":104271,"Directional":false}]},{"ID":3480,"SourceStructureID":5650,"TargetStructureID":7024,"Label":"5650-7024 via Gap Junction from 93905 -> 93901","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93905,"TargetID":93901,"Directional":false}]},{"ID":3481,"SourceStructureID":7073,"TargetStructureID":5650,"Label":"7073-5650 via Unknown from 135608 -> 135609","Type":"Unknown","Directional":false,"Links":[{"SourceID":135608,"TargetID":135609,"Directional":false}]},{"ID":3482,"SourceStructureID":7147,"TargetStructureID":5650,"Label":"7147-5650 via Gap Junction from 52599 -> 52600, 134984 -> 134983","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52599,"TargetID":52600,"Directional":false},{"SourceID":134984,"TargetID":134983,"Directional":false}]},{"ID":3483,"SourceStructureID":9769,"TargetStructureID":5650,"Label":"9769-5650 via Adherens from 104125 -> 104126, 104270 -> 104269, 105051 -> 105052, 106321 -> 106320, 126343 -> 126342, 127300 -> 127301","Type":"Adherens","Directional":false,"Links":[{"SourceID":104125,"TargetID":104126,"Directional":false},{"SourceID":104270,"TargetID":104269,"Directional":false},{"SourceID":105051,"TargetID":105052,"Directional":false},{"SourceID":106321,"TargetID":106320,"Directional":false},{"SourceID":126343,"TargetID":126342,"Directional":false},{"SourceID":127300,"TargetID":127301,"Directional":false}]},{"ID":3484,"SourceStructureID":12897,"TargetStructureID":5650,"Label":"12897-5650 via Gap Junction from 103664 -> 103665, 103679 -> 103678, 103682 -> 103681, 103829 -> 103828, 134981 -> 134980, 135373 -> 135374","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":103664,"TargetID":103665,"Directional":false},{"SourceID":103679,"TargetID":103678,"Directional":false},{"SourceID":103682,"TargetID":103681,"Directional":false},{"SourceID":103829,"TargetID":103828,"Directional":false},{"SourceID":134981,"TargetID":134980,"Directional":false},{"SourceID":135373,"TargetID":135374,"Directional":false}]},{"ID":3485,"SourceStructureID":5650,"TargetStructureID":15796,"Label":"5650-15796 via Unknown from 124723 -> 134985","Type":"Unknown","Directional":false,"Links":[{"SourceID":124723,"TargetID":134985,"Directional":false}]},{"ID":3486,"SourceStructureID":16073,"TargetStructureID":5650,"Label":"16073-5650 via Unknown from 103903 -> 103902","Type":"Unknown","Directional":false,"Links":[{"SourceID":103903,"TargetID":103902,"Directional":false}]},{"ID":3487,"SourceStructureID":5650,"TargetStructureID":20136,"Label":"5650-20136 via Gap Junction from 127754 -> 127753","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":127754,"TargetID":127753,"Directional":false}]},{"ID":3488,"SourceStructureID":5650,"TargetStructureID":30130,"Label":"5650-30130 via Adherens from 103858 -> 103857","Type":"Adherens","Directional":false,"Links":[{"SourceID":103858,"TargetID":103857,"Directional":false}]},{"ID":3489,"SourceStructureID":35240,"TargetStructureID":5650,"Label":"35240-5650 via Adherens from 104457 -> 104458","Type":"Adherens","Directional":false,"Links":[{"SourceID":104457,"TargetID":104458,"Directional":false}]},{"ID":3490,"SourceStructureID":5650,"TargetStructureID":53202,"Label":"5650-53202 via Unknown from 103849 -> 103850","Type":"Unknown","Directional":false,"Links":[{"SourceID":103849,"TargetID":103850,"Directional":false}]},{"ID":3491,"SourceStructureID":5650,"TargetStructureID":53407,"Label":"5650-53407 via Adherens from 103886 -> 103885","Type":"Adherens","Directional":false,"Links":[{"SourceID":103886,"TargetID":103885,"Directional":false}]},{"ID":3492,"SourceStructureID":53987,"TargetStructureID":5650,"Label":"53987-5650 via Adherens from 103630 -> 103629","Type":"Adherens","Directional":false,"Links":[{"SourceID":103630,"TargetID":103629,"Directional":false}]},{"ID":3493,"SourceStructureID":5650,"TargetStructureID":68511,"Label":"5650-68511 via Unknown from 68515 -> 68514","Type":"Unknown","Directional":false,"Links":[{"SourceID":68515,"TargetID":68514,"Directional":false}]},{"ID":3494,"SourceStructureID":5650,"TargetStructureID":102643,"Label":"5650-102643 via Unknown from 102645 -> 102644","Type":"Unknown","Directional":false,"Links":[{"SourceID":102645,"TargetID":102644,"Directional":false}]},{"ID":3495,"SourceStructureID":5650,"TargetStructureID":102661,"Label":"5650-102661 via Unknown from 102663 -> 102662","Type":"Unknown","Directional":false,"Links":[{"SourceID":102663,"TargetID":102662,"Directional":false}]},{"ID":3496,"SourceStructureID":5650,"TargetStructureID":102757,"Label":"5650-102757 via Unknown from 102781 -> 102780","Type":"Unknown","Directional":false,"Links":[{"SourceID":102781,"TargetID":102780,"Directional":false}]},{"ID":3497,"SourceStructureID":102793,"TargetStructureID":5650,"Label":"102793-5650 via Unknown from 102822 -> 102821","Type":"Unknown","Directional":false,"Links":[{"SourceID":102822,"TargetID":102821,"Directional":false}]},{"ID":3498,"SourceStructureID":5650,"TargetStructureID":102795,"Label":"5650-102795 via Unknown from 102797 -> 102796","Type":"Unknown","Directional":false,"Links":[{"SourceID":102797,"TargetID":102796,"Directional":false}]},{"ID":3499,"SourceStructureID":102953,"TargetStructureID":5650,"Label":"102953-5650 via Adherens from 102996 -> 102995","Type":"Adherens","Directional":false,"Links":[{"SourceID":102996,"TargetID":102995,"Directional":false}]},{"ID":3500,"SourceStructureID":5650,"TargetStructureID":103001,"Label":"5650-103001 via Adherens from 103002 -> 103003","Type":"Adherens","Directional":false,"Links":[{"SourceID":103002,"TargetID":103003,"Directional":false}]},{"ID":3501,"SourceStructureID":103029,"TargetStructureID":5650,"Label":"103029-5650 via Adherens from 103031 -> 103030","Type":"Adherens","Directional":false,"Links":[{"SourceID":103031,"TargetID":103030,"Directional":false}]},{"ID":3502,"SourceStructureID":5650,"TargetStructureID":103037,"Label":"5650-103037 via Adherens from 103038 -> 103039","Type":"Adherens","Directional":false,"Links":[{"SourceID":103038,"TargetID":103039,"Directional":false}]},{"ID":3503,"SourceStructureID":5650,"TargetStructureID":103557,"Label":"5650-103557 via Adherens from 103559 -> 103558","Type":"Adherens","Directional":false,"Links":[{"SourceID":103559,"TargetID":103558,"Directional":false}]},{"ID":3504,"SourceStructureID":103572,"TargetStructureID":5650,"Label":"103572-5650 via Adherens from 103577 -> 103576","Type":"Adherens","Directional":false,"Links":[{"SourceID":103577,"TargetID":103576,"Directional":false}]},{"ID":3505,"SourceStructureID":103579,"TargetStructureID":5650,"Label":"103579-5650 via Unknown from 103581 -> 103580","Type":"Unknown","Directional":false,"Links":[{"SourceID":103581,"TargetID":103580,"Directional":false}]},{"ID":3506,"SourceStructureID":5650,"TargetStructureID":103595,"Label":"5650-103595 via Adherens from 103599 -> 103600","Type":"Adherens","Directional":false,"Links":[{"SourceID":103599,"TargetID":103600,"Directional":false}]},{"ID":3507,"SourceStructureID":103636,"TargetStructureID":5650,"Label":"103636-5650 via Unknown from 103638 -> 103637","Type":"Unknown","Directional":false,"Links":[{"SourceID":103638,"TargetID":103637,"Directional":false}]},{"ID":3508,"SourceStructureID":103654,"TargetStructureID":5650,"Label":"103654-5650 via Adherens from 103656 -> 103655","Type":"Adherens","Directional":false,"Links":[{"SourceID":103656,"TargetID":103655,"Directional":false}]},{"ID":3509,"SourceStructureID":5650,"TargetStructureID":103657,"Label":"5650-103657 via Adherens from 103659 -> 103658","Type":"Adherens","Directional":false,"Links":[{"SourceID":103659,"TargetID":103658,"Directional":false}]},{"ID":3510,"SourceStructureID":5650,"TargetStructureID":103675,"Label":"5650-103675 via Unknown from 103676 -> 103677","Type":"Unknown","Directional":false,"Links":[{"SourceID":103676,"TargetID":103677,"Directional":false}]},{"ID":3511,"SourceStructureID":5650,"TargetStructureID":103693,"Label":"5650-103693 via Adherens from 103695 -> 103694","Type":"Adherens","Directional":false,"Links":[{"SourceID":103695,"TargetID":103694,"Directional":false}]},{"ID":3512,"SourceStructureID":103710,"TargetStructureID":5650,"Label":"103710-5650 via Unknown from 103712 -> 103711","Type":"Unknown","Directional":false,"Links":[{"SourceID":103712,"TargetID":103711,"Directional":false}]},{"ID":3513,"SourceStructureID":5650,"TargetStructureID":103820,"Label":"5650-103820 via Adherens from 103822 -> 103821","Type":"Adherens","Directional":false,"Links":[{"SourceID":103822,"TargetID":103821,"Directional":false}]},{"ID":3514,"SourceStructureID":104089,"TargetStructureID":5650,"Label":"104089-5650 via Adherens from 104094 -> 104093","Type":"Adherens","Directional":false,"Links":[{"SourceID":104094,"TargetID":104093,"Directional":false}]},{"ID":3515,"SourceStructureID":5650,"TargetStructureID":104120,"Label":"5650-104120 via Unknown from 104121 -> 104122","Type":"Unknown","Directional":false,"Links":[{"SourceID":104121,"TargetID":104122,"Directional":false}]},{"ID":3516,"SourceStructureID":5650,"TargetStructureID":104304,"Label":"5650-104304 via Unknown from 104310 -> 104308","Type":"Unknown","Directional":false,"Links":[{"SourceID":104310,"TargetID":104308,"Directional":false}]},{"ID":3517,"SourceStructureID":104330,"TargetStructureID":5650,"Label":"104330-5650 via Unknown from 104334 -> 104332","Type":"Unknown","Directional":false,"Links":[{"SourceID":104334,"TargetID":104332,"Directional":false}]},{"ID":3518,"SourceStructureID":104370,"TargetStructureID":5650,"Label":"104370-5650 via Unknown from 104372 -> 104371","Type":"Unknown","Directional":false,"Links":[{"SourceID":104372,"TargetID":104371,"Directional":false}]},{"ID":3519,"SourceStructureID":5650,"TargetStructureID":104459,"Label":"5650-104459 via Adherens from 104461 -> 104460","Type":"Adherens","Directional":false,"Links":[{"SourceID":104461,"TargetID":104460,"Directional":false}]},{"ID":3520,"SourceStructureID":5650,"TargetStructureID":104465,"Label":"5650-104465 via Adherens from 104466 -> 104467","Type":"Adherens","Directional":false,"Links":[{"SourceID":104466,"TargetID":104467,"Directional":false}]},{"ID":3521,"SourceStructureID":104987,"TargetStructureID":5650,"Label":"104987-5650 via Adherens from 104989 -> 104988","Type":"Adherens","Directional":false,"Links":[{"SourceID":104989,"TargetID":104988,"Directional":false}]},{"ID":3522,"SourceStructureID":105070,"TargetStructureID":5650,"Label":"105070-5650 via Adherens from 105072 -> 105071","Type":"Adherens","Directional":false,"Links":[{"SourceID":105072,"TargetID":105071,"Directional":false}]},{"ID":3523,"SourceStructureID":105106,"TargetStructureID":5650,"Label":"105106-5650 via Unknown from 105107 -> 105105","Type":"Unknown","Directional":false,"Links":[{"SourceID":105107,"TargetID":105105,"Directional":false}]},{"ID":3524,"SourceStructureID":105131,"TargetStructureID":5650,"Label":"105131-5650 via Adherens from 105139 -> 105138","Type":"Adherens","Directional":false,"Links":[{"SourceID":105139,"TargetID":105138,"Directional":false}]},{"ID":3525,"SourceStructureID":105167,"TargetStructureID":5650,"Label":"105167-5650 via Unknown from 105169 -> 105168","Type":"Unknown","Directional":false,"Links":[{"SourceID":105169,"TargetID":105168,"Directional":false}]},{"ID":3526,"SourceStructureID":105199,"TargetStructureID":5650,"Label":"105199-5650 via Adherens from 126406 -> 126407","Type":"Adherens","Directional":false,"Links":[{"SourceID":126406,"TargetID":126407,"Directional":false}]},{"ID":3527,"SourceStructureID":106325,"TargetStructureID":5650,"Label":"106325-5650 via Adherens from 106328 -> 106324","Type":"Adherens","Directional":false,"Links":[{"SourceID":106328,"TargetID":106324,"Directional":false}]},{"ID":3528,"SourceStructureID":106336,"TargetStructureID":5650,"Label":"106336-5650 via Unknown from 106343 -> 106342","Type":"Unknown","Directional":false,"Links":[{"SourceID":106343,"TargetID":106342,"Directional":false}]},{"ID":3529,"SourceStructureID":5729,"TargetStructureID":5729,"Label":"5729-5729 via Adherens from 112683 -> 64523","Type":"Adherens","Directional":false,"Links":[{"SourceID":112683,"TargetID":64523,"Directional":false}]},{"ID":3530,"SourceStructureID":5729,"TargetStructureID":5729,"Label":"5729-5729 via Gap Junction from 64474 -> 64473, 105778 -> 105779","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64474,"TargetID":64473,"Directional":false},{"SourceID":105778,"TargetID":105779,"Directional":false}]},{"ID":3531,"SourceStructureID":6158,"TargetStructureID":5729,"Label":"6158-5729 via Gap Junction from 47218 -> 47217, 111940 -> 111941, 113087 -> 111943","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47218,"TargetID":47217,"Directional":false},{"SourceID":111940,"TargetID":111941,"Directional":false},{"SourceID":113087,"TargetID":111943,"Directional":false}]},{"ID":3532,"SourceStructureID":5729,"TargetStructureID":6158,"Label":"5729-6158 via Touch from 120654 -> 120655","Type":"Touch","Directional":false,"Links":[{"SourceID":120654,"TargetID":120655,"Directional":false}]},{"ID":3533,"SourceStructureID":6162,"TargetStructureID":5729,"Label":"6162-5729 via Adherens from 37852 -> 37853, 105759 -> 123359","Type":"Adherens","Directional":false,"Links":[{"SourceID":37852,"TargetID":37853,"Directional":false},{"SourceID":105759,"TargetID":123359,"Directional":false}]},{"ID":3534,"SourceStructureID":6162,"TargetStructureID":5729,"Label":"6162-5729 via Gap Junction from 37848 -> 37847, 37851 -> 37850, 47223 -> 29108, 55252 -> 47235, 110912 -> 110913, 118170 -> 118171","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37848,"TargetID":37847,"Directional":false},{"SourceID":37851,"TargetID":37850,"Directional":false},{"SourceID":47223,"TargetID":29108,"Directional":false},{"SourceID":55252,"TargetID":47235,"Directional":false},{"SourceID":110912,"TargetID":110913,"Directional":false},{"SourceID":118170,"TargetID":118171,"Directional":false}]},{"ID":3535,"SourceStructureID":5729,"TargetStructureID":7050,"Label":"5729-7050 via Gap Junction from 37816 -> 37815, 64587 -> 24877","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37816,"TargetID":37815,"Directional":false},{"SourceID":64587,"TargetID":24877,"Directional":false}]},{"ID":3536,"SourceStructureID":7897,"TargetStructureID":5729,"Label":"7897-5729 via Adherens from 112012 -> 112013","Type":"Adherens","Directional":false,"Links":[{"SourceID":112012,"TargetID":112013,"Directional":false}]},{"ID":3537,"SourceStructureID":8040,"TargetStructureID":5729,"Label":"8040-5729 via Adherens from 112671 -> 112672","Type":"Adherens","Directional":false,"Links":[{"SourceID":112671,"TargetID":112672,"Directional":false}]},{"ID":3538,"SourceStructureID":8040,"TargetStructureID":5729,"Label":"8040-5729 via Gap Junction from 111797 -> 111796","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111797,"TargetID":111796,"Directional":false}]},{"ID":3539,"SourceStructureID":11408,"TargetStructureID":5729,"Label":"11408-5729 via Gap Junction from 112645 -> 112620","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112645,"TargetID":112620,"Directional":false}]},{"ID":3540,"SourceStructureID":35240,"TargetStructureID":5729,"Label":"35240-5729 via Adherens from 111778 -> 111779","Type":"Adherens","Directional":false,"Links":[{"SourceID":111778,"TargetID":111779,"Directional":false}]},{"ID":3541,"SourceStructureID":35428,"TargetStructureID":5729,"Label":"35428-5729 via Unknown from 111952 -> 111951","Type":"Unknown","Directional":false,"Links":[{"SourceID":111952,"TargetID":111951,"Directional":false}]},{"ID":3542,"SourceStructureID":35555,"TargetStructureID":5729,"Label":"35555-5729 via Adherens from 112726 -> 112725","Type":"Adherens","Directional":false,"Links":[{"SourceID":112726,"TargetID":112725,"Directional":false}]},{"ID":3543,"SourceStructureID":47445,"TargetStructureID":5729,"Label":"47445-5729 via Gap Junction from 118183 -> 118178","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118183,"TargetID":118178,"Directional":false}]},{"ID":3544,"SourceStructureID":5729,"TargetStructureID":48516,"Label":"5729-48516 via Gap Junction from 123287 -> 123297","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123287,"TargetID":123297,"Directional":false}]},{"ID":3545,"SourceStructureID":55232,"TargetStructureID":5729,"Label":"55232-5729 via Adherens from 111155 -> 111156, 111195 -> 111194","Type":"Adherens","Directional":false,"Links":[{"SourceID":111155,"TargetID":111156,"Directional":false},{"SourceID":111195,"TargetID":111194,"Directional":false}]},{"ID":3546,"SourceStructureID":5729,"TargetStructureID":64452,"Label":"5729-64452 via Adherens from 111959 -> 89622, 111962 -> 111948, 111983 -> 111985","Type":"Adherens","Directional":false,"Links":[{"SourceID":111959,"TargetID":89622,"Directional":false},{"SourceID":111962,"TargetID":111948,"Directional":false},{"SourceID":111983,"TargetID":111985,"Directional":false}]},{"ID":3547,"SourceStructureID":64452,"TargetStructureID":5729,"Label":"64452-5729 via Unknown from 111979 -> 111978","Type":"Unknown","Directional":false,"Links":[{"SourceID":111979,"TargetID":111978,"Directional":false}]},{"ID":3548,"SourceStructureID":5729,"TargetStructureID":64939,"Label":"5729-64939 via Adherens from 64529 -> 112949, 112445 -> 112444","Type":"Adherens","Directional":false,"Links":[{"SourceID":64529,"TargetID":112949,"Directional":false},{"SourceID":112445,"TargetID":112444,"Directional":false}]},{"ID":3549,"SourceStructureID":64939,"TargetStructureID":5729,"Label":"64939-5729 via Gap Junction from 64941 -> 64466, 69661 -> 69659, 69717 -> 69718, 70022 -> 70021, 93219 -> 93218, 93606 -> 64528, 111646 -> 111647, 111960 -> 111961, 112600 -> 112601, 113797 -> 113796, 123288 -> 123289","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64941,"TargetID":64466,"Directional":false},{"SourceID":69661,"TargetID":69659,"Directional":false},{"SourceID":69717,"TargetID":69718,"Directional":false},{"SourceID":70022,"TargetID":70021,"Directional":false},{"SourceID":93219,"TargetID":93218,"Directional":false},{"SourceID":93606,"TargetID":64528,"Directional":false},{"SourceID":111646,"TargetID":111647,"Directional":false},{"SourceID":111960,"TargetID":111961,"Directional":false},{"SourceID":112600,"TargetID":112601,"Directional":false},{"SourceID":113797,"TargetID":113796,"Directional":false},{"SourceID":123288,"TargetID":123289,"Directional":false}]},{"ID":3550,"SourceStructureID":69691,"TargetStructureID":5729,"Label":"69691-5729 via Unknown from 136309 -> 136308","Type":"Unknown","Directional":false,"Links":[{"SourceID":136309,"TargetID":136308,"Directional":false}]},{"ID":3551,"SourceStructureID":5729,"TargetStructureID":89124,"Label":"5729-89124 via Adherens from 111438 -> 111439","Type":"Adherens","Directional":false,"Links":[{"SourceID":111438,"TargetID":111439,"Directional":false}]},{"ID":3552,"SourceStructureID":89631,"TargetStructureID":5729,"Label":"89631-5729 via Adherens from 89632 -> 89630","Type":"Adherens","Directional":false,"Links":[{"SourceID":89632,"TargetID":89630,"Directional":false}]},{"ID":3553,"SourceStructureID":100017,"TargetStructureID":5729,"Label":"100017-5729 via Unknown from 100594 -> 112605","Type":"Unknown","Directional":false,"Links":[{"SourceID":100594,"TargetID":112605,"Directional":false}]},{"ID":3554,"SourceStructureID":110842,"TargetStructureID":5729,"Label":"110842-5729 via Adherens from 110846 -> 110847","Type":"Adherens","Directional":false,"Links":[{"SourceID":110846,"TargetID":110847,"Directional":false}]},{"ID":3555,"SourceStructureID":5729,"TargetStructureID":110899,"Label":"5729-110899 via Adherens from 110900 -> 110901","Type":"Adherens","Directional":false,"Links":[{"SourceID":110900,"TargetID":110901,"Directional":false}]},{"ID":3556,"SourceStructureID":110903,"TargetStructureID":5729,"Label":"110903-5729 via Adherens from 110917 -> 110918","Type":"Adherens","Directional":false,"Links":[{"SourceID":110917,"TargetID":110918,"Directional":false}]},{"ID":3557,"SourceStructureID":5729,"TargetStructureID":110924,"Label":"5729-110924 via Adherens from 110925 -> 110926","Type":"Adherens","Directional":false,"Links":[{"SourceID":110925,"TargetID":110926,"Directional":false}]},{"ID":3558,"SourceStructureID":110928,"TargetStructureID":5729,"Label":"110928-5729 via Unknown from 110929 -> 110927","Type":"Unknown","Directional":false,"Links":[{"SourceID":110929,"TargetID":110927,"Directional":false}]},{"ID":3559,"SourceStructureID":110952,"TargetStructureID":5729,"Label":"110952-5729 via Unknown from 110954 -> 110953","Type":"Unknown","Directional":false,"Links":[{"SourceID":110954,"TargetID":110953,"Directional":false}]},{"ID":3560,"SourceStructureID":5729,"TargetStructureID":110959,"Label":"5729-110959 via Unknown from 110958 -> 110960","Type":"Unknown","Directional":false,"Links":[{"SourceID":110958,"TargetID":110960,"Directional":false}]},{"ID":3561,"SourceStructureID":5729,"TargetStructureID":111040,"Label":"5729-111040 via Adherens from 111042 -> 111041","Type":"Adherens","Directional":false,"Links":[{"SourceID":111042,"TargetID":111041,"Directional":false}]},{"ID":3562,"SourceStructureID":5729,"TargetStructureID":111057,"Label":"5729-111057 via Adherens from 111063 -> 111062","Type":"Adherens","Directional":false,"Links":[{"SourceID":111063,"TargetID":111062,"Directional":false}]},{"ID":3563,"SourceStructureID":5729,"TargetStructureID":111059,"Label":"5729-111059 via Adherens from 111068 -> 111069","Type":"Adherens","Directional":false,"Links":[{"SourceID":111068,"TargetID":111069,"Directional":false}]},{"ID":3564,"SourceStructureID":111064,"TargetStructureID":5729,"Label":"111064-5729 via Adherens from 111066 -> 111067","Type":"Adherens","Directional":false,"Links":[{"SourceID":111066,"TargetID":111067,"Directional":false}]},{"ID":3565,"SourceStructureID":5729,"TargetStructureID":111078,"Label":"5729-111078 via Adherens from 111158 -> 111159","Type":"Adherens","Directional":false,"Links":[{"SourceID":111158,"TargetID":111159,"Directional":false}]},{"ID":3566,"SourceStructureID":111160,"TargetStructureID":5729,"Label":"111160-5729 via Unknown from 111161 -> 111162","Type":"Unknown","Directional":false,"Links":[{"SourceID":111161,"TargetID":111162,"Directional":false}]},{"ID":3567,"SourceStructureID":5729,"TargetStructureID":111165,"Label":"5729-111165 via Adherens from 111168 -> 111169","Type":"Adherens","Directional":false,"Links":[{"SourceID":111168,"TargetID":111169,"Directional":false}]},{"ID":3568,"SourceStructureID":5729,"TargetStructureID":111165,"Label":"5729-111165 via Gap Junction from 111166 -> 111167","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111166,"TargetID":111167,"Directional":false}]},{"ID":3569,"SourceStructureID":5729,"TargetStructureID":111174,"Label":"5729-111174 via Unknown from 111176 -> 111175","Type":"Unknown","Directional":false,"Links":[{"SourceID":111176,"TargetID":111175,"Directional":false}]},{"ID":3570,"SourceStructureID":111180,"TargetStructureID":5729,"Label":"111180-5729 via Gap Junction from 111181 -> 111182","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111181,"TargetID":111182,"Directional":false}]},{"ID":3571,"SourceStructureID":111183,"TargetStructureID":5729,"Label":"111183-5729 via Gap Junction from 111185 -> 111186","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111185,"TargetID":111186,"Directional":false}]},{"ID":3572,"SourceStructureID":111288,"TargetStructureID":5729,"Label":"111288-5729 via Unknown from 111290 -> 111289","Type":"Unknown","Directional":false,"Links":[{"SourceID":111290,"TargetID":111289,"Directional":false}]},{"ID":3573,"SourceStructureID":5729,"TargetStructureID":111298,"Label":"5729-111298 via Adherens from 37814 -> 111302","Type":"Adherens","Directional":false,"Links":[{"SourceID":37814,"TargetID":111302,"Directional":false}]},{"ID":3574,"SourceStructureID":111306,"TargetStructureID":5729,"Label":"111306-5729 via Adherens from 111308 -> 37819","Type":"Adherens","Directional":false,"Links":[{"SourceID":111308,"TargetID":37819,"Directional":false}]},{"ID":3575,"SourceStructureID":111311,"TargetStructureID":5729,"Label":"111311-5729 via Adherens from 111326 -> 111327","Type":"Adherens","Directional":false,"Links":[{"SourceID":111326,"TargetID":111327,"Directional":false}]},{"ID":3576,"SourceStructureID":5729,"TargetStructureID":111312,"Label":"5729-111312 via Adherens from 37825 -> 111323","Type":"Adherens","Directional":false,"Links":[{"SourceID":37825,"TargetID":111323,"Directional":false}]},{"ID":3577,"SourceStructureID":5729,"TargetStructureID":111417,"Label":"5729-111417 via Unknown from 111465 -> 111466","Type":"Unknown","Directional":false,"Links":[{"SourceID":111465,"TargetID":111466,"Directional":false}]},{"ID":3578,"SourceStructureID":111448,"TargetStructureID":5729,"Label":"111448-5729 via Adherens from 111461 -> 111460","Type":"Adherens","Directional":false,"Links":[{"SourceID":111461,"TargetID":111460,"Directional":false}]},{"ID":3579,"SourceStructureID":111611,"TargetStructureID":5729,"Label":"111611-5729 via Adherens from 111634 -> 111635","Type":"Adherens","Directional":false,"Links":[{"SourceID":111634,"TargetID":111635,"Directional":false}]},{"ID":3580,"SourceStructureID":5729,"TargetStructureID":111740,"Label":"5729-111740 via Unknown from 111743 -> 111744","Type":"Unknown","Directional":false,"Links":[{"SourceID":111743,"TargetID":111744,"Directional":false}]},{"ID":3581,"SourceStructureID":111751,"TargetStructureID":5729,"Label":"111751-5729 via Unknown from 111752 -> 111750","Type":"Unknown","Directional":false,"Links":[{"SourceID":111752,"TargetID":111750,"Directional":false}]},{"ID":3582,"SourceStructureID":111758,"TargetStructureID":5729,"Label":"111758-5729 via Unknown from 111759 -> 111757","Type":"Unknown","Directional":false,"Links":[{"SourceID":111759,"TargetID":111757,"Directional":false}]},{"ID":3583,"SourceStructureID":111774,"TargetStructureID":5729,"Label":"111774-5729 via Gap Junction from 111775 -> 111763","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111775,"TargetID":111763,"Directional":false}]},{"ID":3584,"SourceStructureID":111788,"TargetStructureID":5729,"Label":"111788-5729 via Adherens from 111789 -> 111790","Type":"Adherens","Directional":false,"Links":[{"SourceID":111789,"TargetID":111790,"Directional":false}]},{"ID":3585,"SourceStructureID":111791,"TargetStructureID":5729,"Label":"111791-5729 via Unknown from 111792 -> 111794","Type":"Unknown","Directional":false,"Links":[{"SourceID":111792,"TargetID":111794,"Directional":false}]},{"ID":3586,"SourceStructureID":111963,"TargetStructureID":5729,"Label":"111963-5729 via Adherens from 111967 -> 89612","Type":"Adherens","Directional":false,"Links":[{"SourceID":111967,"TargetID":89612,"Directional":false}]},{"ID":3587,"SourceStructureID":5729,"TargetStructureID":111991,"Label":"5729-111991 via Adherens from 93224 -> 111992","Type":"Adherens","Directional":false,"Links":[{"SourceID":93224,"TargetID":111992,"Directional":false}]},{"ID":3588,"SourceStructureID":111997,"TargetStructureID":5729,"Label":"111997-5729 via Unknown from 111998 -> 111999","Type":"Unknown","Directional":false,"Links":[{"SourceID":111998,"TargetID":111999,"Directional":false}]},{"ID":3589,"SourceStructureID":112000,"TargetStructureID":5729,"Label":"112000-5729 via Unknown from 112001 -> 112002","Type":"Unknown","Directional":false,"Links":[{"SourceID":112001,"TargetID":112002,"Directional":false}]},{"ID":3590,"SourceStructureID":5729,"TargetStructureID":112310,"Label":"5729-112310 via Adherens from 112312 -> 112311","Type":"Adherens","Directional":false,"Links":[{"SourceID":112312,"TargetID":112311,"Directional":false}]},{"ID":3591,"SourceStructureID":112313,"TargetStructureID":5729,"Label":"112313-5729 via Adherens from 112314 -> 112316","Type":"Adherens","Directional":false,"Links":[{"SourceID":112314,"TargetID":112316,"Directional":false}]},{"ID":3592,"SourceStructureID":112455,"TargetStructureID":5729,"Label":"112455-5729 via Adherens from 112596 -> 112597","Type":"Adherens","Directional":false,"Links":[{"SourceID":112596,"TargetID":112597,"Directional":false}]},{"ID":3593,"SourceStructureID":112632,"TargetStructureID":5729,"Label":"112632-5729 via Unknown from 112633 -> 112631","Type":"Unknown","Directional":false,"Links":[{"SourceID":112633,"TargetID":112631,"Directional":false}]},{"ID":3594,"SourceStructureID":5729,"TargetStructureID":112641,"Label":"5729-112641 via Adherens from 112615 -> 112643, 112618 -> 112644","Type":"Adherens","Directional":false,"Links":[{"SourceID":112615,"TargetID":112643,"Directional":false},{"SourceID":112618,"TargetID":112644,"Directional":false}]},{"ID":3595,"SourceStructureID":5729,"TargetStructureID":112656,"Label":"5729-112656 via Adherens from 112655 -> 112657","Type":"Adherens","Directional":false,"Links":[{"SourceID":112655,"TargetID":112657,"Directional":false}]},{"ID":3596,"SourceStructureID":112666,"TargetStructureID":5729,"Label":"112666-5729 via Unknown from 112668 -> 112667","Type":"Unknown","Directional":false,"Links":[{"SourceID":112668,"TargetID":112667,"Directional":false}]},{"ID":3597,"SourceStructureID":112669,"TargetStructureID":5729,"Label":"112669-5729 via Adherens from 112673 -> 112674, 112675 -> 112676","Type":"Adherens","Directional":false,"Links":[{"SourceID":112673,"TargetID":112674,"Directional":false},{"SourceID":112675,"TargetID":112676,"Directional":false}]},{"ID":3598,"SourceStructureID":5729,"TargetStructureID":112696,"Label":"5729-112696 via Unknown from 112698 -> 112699","Type":"Unknown","Directional":false,"Links":[{"SourceID":112698,"TargetID":112699,"Directional":false}]},{"ID":3599,"SourceStructureID":5729,"TargetStructureID":112703,"Label":"5729-112703 via Unknown from 112707 -> 112708, 112735 -> 112736","Type":"Unknown","Directional":false,"Links":[{"SourceID":112707,"TargetID":112708,"Directional":false},{"SourceID":112735,"TargetID":112736,"Directional":false}]},{"ID":3600,"SourceStructureID":112715,"TargetStructureID":5729,"Label":"112715-5729 via Adherens from 112717 -> 64472","Type":"Adherens","Directional":false,"Links":[{"SourceID":112717,"TargetID":64472,"Directional":false}]},{"ID":3601,"SourceStructureID":5729,"TargetStructureID":112721,"Label":"5729-112721 via Gap Junction from 64477 -> 112722","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64477,"TargetID":112722,"Directional":false}]},{"ID":3602,"SourceStructureID":112884,"TargetStructureID":5729,"Label":"112884-5729 via Adherens from 112885 -> 64463","Type":"Adherens","Directional":false,"Links":[{"SourceID":112885,"TargetID":64463,"Directional":false}]},{"ID":3603,"SourceStructureID":112916,"TargetStructureID":5729,"Label":"112916-5729 via Unknown from 112922 -> 112923","Type":"Unknown","Directional":false,"Links":[{"SourceID":112922,"TargetID":112923,"Directional":false}]},{"ID":3604,"SourceStructureID":5729,"TargetStructureID":112925,"Label":"5729-112925 via Adherens from 112929 -> 112930","Type":"Adherens","Directional":false,"Links":[{"SourceID":112929,"TargetID":112930,"Directional":false}]},{"ID":3605,"SourceStructureID":112934,"TargetStructureID":5729,"Label":"112934-5729 via Unknown from 112946 -> 112947","Type":"Unknown","Directional":false,"Links":[{"SourceID":112946,"TargetID":112947,"Directional":false}]},{"ID":3606,"SourceStructureID":5729,"TargetStructureID":112942,"Label":"5729-112942 via Adherens from 64535 -> 112960","Type":"Adherens","Directional":false,"Links":[{"SourceID":64535,"TargetID":112960,"Directional":false}]},{"ID":3607,"SourceStructureID":5729,"TargetStructureID":113810,"Label":"5729-113810 via Gap Junction from 113812 -> 113811","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113812,"TargetID":113811,"Directional":false}]},{"ID":3608,"SourceStructureID":115424,"TargetStructureID":5729,"Label":"115424-5729 via Gap Junction from 115426 -> 113819","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115426,"TargetID":113819,"Directional":false}]},{"ID":3609,"SourceStructureID":136739,"TargetStructureID":5729,"Label":"136739-5729 via Gap Junction from 136740 -> 112647","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136740,"TargetID":112647,"Directional":false}]},{"ID":3610,"SourceStructureID":5775,"TargetStructureID":5775,"Label":"5775-5775 via Gap Junction from 120838 -> 120839","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120838,"TargetID":120839,"Directional":false}]},{"ID":3611,"SourceStructureID":5775,"TargetStructureID":5775,"Label":"5775-5775 via Touch from 93768 -> 93767","Type":"Touch","Directional":false,"Links":[{"SourceID":93768,"TargetID":93767,"Directional":false}]},{"ID":3612,"SourceStructureID":8040,"TargetStructureID":5775,"Label":"8040-5775 via Gap Junction from 48694 -> 48751, 48713 -> 49144, 48716 -> 48696, 52069 -> 48746, 93755 -> 49109, 93766 -> 48911, 120831 -> 120830, 120833 -> 120832, 120836 -> 48782","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48694,"TargetID":48751,"Directional":false},{"SourceID":48713,"TargetID":49144,"Directional":false},{"SourceID":48716,"TargetID":48696,"Directional":false},{"SourceID":52069,"TargetID":48746,"Directional":false},{"SourceID":93755,"TargetID":49109,"Directional":false},{"SourceID":93766,"TargetID":48911,"Directional":false},{"SourceID":120831,"TargetID":120830,"Directional":false},{"SourceID":120833,"TargetID":120832,"Directional":false},{"SourceID":120836,"TargetID":48782,"Directional":false}]},{"ID":3613,"SourceStructureID":5838,"TargetStructureID":5916,"Label":"5838-5916 via Gap Junction from 109052 -> 109051","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109052,"TargetID":109051,"Directional":false}]},{"ID":3614,"SourceStructureID":5916,"TargetStructureID":5838,"Label":"5916-5838 via Unknown from 109101 -> 109102","Type":"Unknown","Directional":false,"Links":[{"SourceID":109101,"TargetID":109102,"Directional":false}]},{"ID":3615,"SourceStructureID":7951,"TargetStructureID":5838,"Label":"7951-5838 via Gap Junction from 120669 -> 38029, 120670 -> 38030","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120669,"TargetID":38029,"Directional":false},{"SourceID":120670,"TargetID":38030,"Directional":false}]},{"ID":3616,"SourceStructureID":102554,"TargetStructureID":5838,"Label":"102554-5838 via Adherens from 102556 -> 102558","Type":"Adherens","Directional":false,"Links":[{"SourceID":102556,"TargetID":102558,"Directional":false}]},{"ID":3617,"SourceStructureID":6169,"TargetStructureID":5860,"Label":"6169-5860 via Gap Junction from 133082 -> 133083, 133085 -> 24733","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133082,"TargetID":133083,"Directional":false},{"SourceID":133085,"TargetID":24733,"Directional":false}]},{"ID":3618,"SourceStructureID":7113,"TargetStructureID":5860,"Label":"7113-5860 via Gap Junction from 131417 -> 131416","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131417,"TargetID":131416,"Directional":false}]},{"ID":3619,"SourceStructureID":5860,"TargetStructureID":7174,"Label":"5860-7174 via Gap Junction from 7173 -> 7175","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":7173,"TargetID":7175,"Directional":false}]},{"ID":3620,"SourceStructureID":5860,"TargetStructureID":40863,"Label":"5860-40863 via Gap Junction from 14739 -> 40866","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14739,"TargetID":40866,"Directional":false}]},{"ID":3621,"SourceStructureID":51715,"TargetStructureID":5860,"Label":"51715-5860 via Gap Junction from 52097 -> 52099, 131166 -> 131165","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52097,"TargetID":52099,"Directional":false},{"SourceID":131166,"TargetID":131165,"Directional":false}]},{"ID":3622,"SourceStructureID":98572,"TargetStructureID":5860,"Label":"98572-5860 via Gap Junction from 98610 -> 98612, 98616 -> 98617","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98610,"TargetID":98612,"Directional":false},{"SourceID":98616,"TargetID":98617,"Directional":false}]},{"ID":3623,"SourceStructureID":5916,"TargetStructureID":7050,"Label":"5916-7050 via Gap Junction from 63205 -> 63204, 63969 -> 63968, 109206 -> 109207","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63205,"TargetID":63204,"Directional":false},{"SourceID":63969,"TargetID":63968,"Directional":false},{"SourceID":109206,"TargetID":109207,"Directional":false}]},{"ID":3624,"SourceStructureID":12897,"TargetStructureID":5916,"Label":"12897-5916 via Gap Junction from 109380 -> 109379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109380,"TargetID":109379,"Directional":false}]},{"ID":3625,"SourceStructureID":5916,"TargetStructureID":63199,"Label":"5916-63199 via Gap Junction from 147550 -> 147549","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":147550,"TargetID":147549,"Directional":false}]},{"ID":3626,"SourceStructureID":69049,"TargetStructureID":5916,"Label":"69049-5916 via Unknown from 109194 -> 109193","Type":"Unknown","Directional":false,"Links":[{"SourceID":109194,"TargetID":109193,"Directional":false}]},{"ID":3627,"SourceStructureID":5916,"TargetStructureID":106339,"Label":"5916-106339 via Adherens from 134977 -> 134975","Type":"Adherens","Directional":false,"Links":[{"SourceID":134977,"TargetID":134975,"Directional":false}]},{"ID":3628,"SourceStructureID":5916,"TargetStructureID":106345,"Label":"5916-106345 via Unknown from 135446 -> 135447","Type":"Unknown","Directional":false,"Links":[{"SourceID":135446,"TargetID":135447,"Directional":false}]},{"ID":3629,"SourceStructureID":108731,"TargetStructureID":5916,"Label":"108731-5916 via Unknown from 158861 -> 158862","Type":"Unknown","Directional":false,"Links":[{"SourceID":158861,"TargetID":158862,"Directional":false}]},{"ID":3630,"SourceStructureID":109308,"TargetStructureID":5916,"Label":"109308-5916 via Unknown from 109321 -> 109320","Type":"Unknown","Directional":false,"Links":[{"SourceID":109321,"TargetID":109320,"Directional":false}]},{"ID":3631,"SourceStructureID":5916,"TargetStructureID":109731,"Label":"5916-109731 via Unknown from 109686 -> 109737, 109733 -> 109734, 109735 -> 109736","Type":"Unknown","Directional":false,"Links":[{"SourceID":109686,"TargetID":109737,"Directional":false},{"SourceID":109733,"TargetID":109734,"Directional":false},{"SourceID":109735,"TargetID":109736,"Directional":false}]},{"ID":3632,"SourceStructureID":5923,"TargetStructureID":33625,"Label":"5923-33625 via Touch from 33644 -> 33643","Type":"Touch","Directional":false,"Links":[{"SourceID":33644,"TargetID":33643,"Directional":false}]},{"ID":3633,"SourceStructureID":6047,"TargetStructureID":6120,"Label":"6047-6120 via Gap Junction from 61771 -> 57394, 110605 -> 110604, 111898 -> 111896","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61771,"TargetID":57394,"Directional":false},{"SourceID":110605,"TargetID":110604,"Directional":false},{"SourceID":111898,"TargetID":111896,"Directional":false}]},{"ID":3634,"SourceStructureID":6141,"TargetStructureID":6047,"Label":"6141-6047 via Gap Junction from 57397 -> 112030, 57398 -> 57395","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57397,"TargetID":112030,"Directional":false},{"SourceID":57398,"TargetID":57395,"Directional":false}]},{"ID":3635,"SourceStructureID":6203,"TargetStructureID":6047,"Label":"6203-6047 via Unknown from 112054 -> 112055","Type":"Unknown","Directional":false,"Links":[{"SourceID":112054,"TargetID":112055,"Directional":false}]},{"ID":3636,"SourceStructureID":6047,"TargetStructureID":7147,"Label":"6047-7147 via Adherens from 129300 -> 129301","Type":"Adherens","Directional":false,"Links":[{"SourceID":129300,"TargetID":129301,"Directional":false}]},{"ID":3637,"SourceStructureID":7147,"TargetStructureID":6047,"Label":"7147-6047 via Gap Junction from 16066 -> 19650, 19721 -> 19720, 19723 -> 19722, 19732 -> 19731, 61327 -> 61326, 61344 -> 61343, 117227 -> 129329, 129295 -> 129296","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16066,"TargetID":19650,"Directional":false},{"SourceID":19721,"TargetID":19720,"Directional":false},{"SourceID":19723,"TargetID":19722,"Directional":false},{"SourceID":19732,"TargetID":19731,"Directional":false},{"SourceID":61327,"TargetID":61326,"Directional":false},{"SourceID":61344,"TargetID":61343,"Directional":false},{"SourceID":117227,"TargetID":129329,"Directional":false},{"SourceID":129295,"TargetID":129296,"Directional":false}]},{"ID":3638,"SourceStructureID":16073,"TargetStructureID":6047,"Label":"16073-6047 via Unknown from 112229 -> 112227","Type":"Unknown","Directional":false,"Links":[{"SourceID":112229,"TargetID":112227,"Directional":false}]},{"ID":3639,"SourceStructureID":35343,"TargetStructureID":6047,"Label":"35343-6047 via Unknown from 113264 -> 113263","Type":"Unknown","Directional":false,"Links":[{"SourceID":113264,"TargetID":113263,"Directional":false}]},{"ID":3640,"SourceStructureID":6047,"TargetStructureID":111351,"Label":"6047-111351 via Unknown from 125494 -> 125493","Type":"Unknown","Directional":false,"Links":[{"SourceID":125494,"TargetID":125493,"Directional":false}]},{"ID":3641,"SourceStructureID":111912,"TargetStructureID":6047,"Label":"111912-6047 via Unknown from 111913 -> 111911","Type":"Unknown","Directional":false,"Links":[{"SourceID":111913,"TargetID":111911,"Directional":false}]},{"ID":3642,"SourceStructureID":111920,"TargetStructureID":6047,"Label":"111920-6047 via Adherens from 111921 -> 19621","Type":"Adherens","Directional":false,"Links":[{"SourceID":111921,"TargetID":19621,"Directional":false}]},{"ID":3643,"SourceStructureID":6047,"TargetStructureID":112064,"Label":"6047-112064 via Unknown from 112065 -> 112066","Type":"Unknown","Directional":false,"Links":[{"SourceID":112065,"TargetID":112066,"Directional":false}]},{"ID":3644,"SourceStructureID":112069,"TargetStructureID":6047,"Label":"112069-6047 via Adherens from 112070 -> 112068","Type":"Adherens","Directional":false,"Links":[{"SourceID":112070,"TargetID":112068,"Directional":false}]},{"ID":3645,"SourceStructureID":6047,"TargetStructureID":112081,"Label":"6047-112081 via Gap Junction from 112080 -> 112083","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112080,"TargetID":112083,"Directional":false}]},{"ID":3646,"SourceStructureID":112102,"TargetStructureID":6047,"Label":"112102-6047 via Adherens from 112103 -> 112101","Type":"Adherens","Directional":false,"Links":[{"SourceID":112103,"TargetID":112101,"Directional":false}]},{"ID":3647,"SourceStructureID":112126,"TargetStructureID":6047,"Label":"112126-6047 via Gap Junction from 112136 -> 112135, 112138 -> 112137, 112140 -> 112139","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112136,"TargetID":112135,"Directional":false},{"SourceID":112138,"TargetID":112137,"Directional":false},{"SourceID":112140,"TargetID":112139,"Directional":false}]},{"ID":3648,"SourceStructureID":6047,"TargetStructureID":112199,"Label":"6047-112199 via Gap Junction from 112201 -> 112200","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112201,"TargetID":112200,"Directional":false}]},{"ID":3649,"SourceStructureID":112233,"TargetStructureID":6047,"Label":"112233-6047 via Gap Junction from 112237 -> 112236, 112238 -> 112239","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112237,"TargetID":112236,"Directional":false},{"SourceID":112238,"TargetID":112239,"Directional":false}]},{"ID":3650,"SourceStructureID":6047,"TargetStructureID":112275,"Label":"6047-112275 via Unknown from 112276 -> 112277","Type":"Unknown","Directional":false,"Links":[{"SourceID":112276,"TargetID":112277,"Directional":false}]},{"ID":3651,"SourceStructureID":112292,"TargetStructureID":6047,"Label":"112292-6047 via Adherens from 112293 -> 56886","Type":"Adherens","Directional":false,"Links":[{"SourceID":112293,"TargetID":56886,"Directional":false}]},{"ID":3652,"SourceStructureID":6047,"TargetStructureID":112342,"Label":"6047-112342 via Adherens from 112344 -> 112345","Type":"Adherens","Directional":false,"Links":[{"SourceID":112344,"TargetID":112345,"Directional":false}]},{"ID":3653,"SourceStructureID":112358,"TargetStructureID":6047,"Label":"112358-6047 via Adherens from 112359 -> 112357","Type":"Adherens","Directional":false,"Links":[{"SourceID":112359,"TargetID":112357,"Directional":false}]},{"ID":3654,"SourceStructureID":6047,"TargetStructureID":112395,"Label":"6047-112395 via Adherens from 112399 -> 112398","Type":"Adherens","Directional":false,"Links":[{"SourceID":112399,"TargetID":112398,"Directional":false}]},{"ID":3655,"SourceStructureID":112411,"TargetStructureID":6047,"Label":"112411-6047 via Adherens from 112413 -> 112414","Type":"Adherens","Directional":false,"Links":[{"SourceID":112413,"TargetID":112414,"Directional":false}]},{"ID":3656,"SourceStructureID":112415,"TargetStructureID":6047,"Label":"112415-6047 via Gap Junction from 112416 -> 112417","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112416,"TargetID":112417,"Directional":false}]},{"ID":3657,"SourceStructureID":112425,"TargetStructureID":6047,"Label":"112425-6047 via Adherens from 112426 -> 19738","Type":"Adherens","Directional":false,"Links":[{"SourceID":112426,"TargetID":19738,"Directional":false}]},{"ID":3658,"SourceStructureID":112427,"TargetStructureID":6047,"Label":"112427-6047 via Adherens from 112429 -> 19673","Type":"Adherens","Directional":false,"Links":[{"SourceID":112429,"TargetID":19673,"Directional":false}]},{"ID":3659,"SourceStructureID":112436,"TargetStructureID":6047,"Label":"112436-6047 via Gap Junction from 112437 -> 112435","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112437,"TargetID":112435,"Directional":false}]},{"ID":3660,"SourceStructureID":6047,"TargetStructureID":112480,"Label":"6047-112480 via Unknown from 112485 -> 112484","Type":"Unknown","Directional":false,"Links":[{"SourceID":112485,"TargetID":112484,"Directional":false}]},{"ID":3661,"SourceStructureID":6047,"TargetStructureID":112481,"Label":"6047-112481 via Unknown from 112483 -> 112482","Type":"Unknown","Directional":false,"Links":[{"SourceID":112483,"TargetID":112482,"Directional":false}]},{"ID":3662,"SourceStructureID":112540,"TargetStructureID":6047,"Label":"112540-6047 via Unknown from 129322 -> 129321","Type":"Unknown","Directional":false,"Links":[{"SourceID":129322,"TargetID":129321,"Directional":false}]},{"ID":3663,"SourceStructureID":6047,"TargetStructureID":112549,"Label":"6047-112549 via Adherens from 19661 -> 112553","Type":"Adherens","Directional":false,"Links":[{"SourceID":19661,"TargetID":112553,"Directional":false}]},{"ID":3664,"SourceStructureID":112772,"TargetStructureID":6047,"Label":"112772-6047 via Gap Junction from 112773 -> 112771","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112773,"TargetID":112771,"Directional":false}]},{"ID":3665,"SourceStructureID":112786,"TargetStructureID":6047,"Label":"112786-6047 via Adherens from 112792 -> 112785","Type":"Adherens","Directional":false,"Links":[{"SourceID":112792,"TargetID":112785,"Directional":false}]},{"ID":3666,"SourceStructureID":6047,"TargetStructureID":113170,"Label":"6047-113170 via Adherens from 113169 -> 113172","Type":"Adherens","Directional":false,"Links":[{"SourceID":113169,"TargetID":113172,"Directional":false}]},{"ID":3667,"SourceStructureID":113179,"TargetStructureID":6047,"Label":"113179-6047 via Adherens from 113180 -> 19633","Type":"Adherens","Directional":false,"Links":[{"SourceID":113180,"TargetID":19633,"Directional":false}]},{"ID":3668,"SourceStructureID":113689,"TargetStructureID":6047,"Label":"113689-6047 via Unknown from 113690 -> 113688","Type":"Unknown","Directional":false,"Links":[{"SourceID":113690,"TargetID":113688,"Directional":false}]},{"ID":3669,"SourceStructureID":6047,"TargetStructureID":120936,"Label":"6047-120936 via Unknown from 120939 -> 120938","Type":"Unknown","Directional":false,"Links":[{"SourceID":120939,"TargetID":120938,"Directional":false}]},{"ID":3670,"SourceStructureID":6047,"TargetStructureID":129340,"Label":"6047-129340 via Gap Junction from 129318 -> 129342","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129318,"TargetID":129342,"Directional":false}]},{"ID":3671,"SourceStructureID":6050,"TargetStructureID":6050,"Label":"6050-6050 via Touch from 147979 -> 147978","Type":"Touch","Directional":false,"Links":[{"SourceID":147979,"TargetID":147978,"Directional":false}]},{"ID":3672,"SourceStructureID":6050,"TargetStructureID":6115,"Label":"6050-6115 via Touch from 127055 -> 127056","Type":"Touch","Directional":false,"Links":[{"SourceID":127055,"TargetID":127056,"Directional":false}]},{"ID":3673,"SourceStructureID":6050,"TargetStructureID":6169,"Label":"6050-6169 via Adherens from 127012 -> 127013, 127061 -> 127062, 127065 -> 127064","Type":"Adherens","Directional":false,"Links":[{"SourceID":127012,"TargetID":127013,"Directional":false},{"SourceID":127061,"TargetID":127062,"Directional":false},{"SourceID":127065,"TargetID":127064,"Directional":false}]},{"ID":3674,"SourceStructureID":6050,"TargetStructureID":6169,"Label":"6050-6169 via Gap Junction from 29709 -> 29708, 101828 -> 24647, 114326 -> 114325","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29709,"TargetID":29708,"Directional":false},{"SourceID":101828,"TargetID":24647,"Directional":false},{"SourceID":114326,"TargetID":114325,"Directional":false}]},{"ID":3675,"SourceStructureID":6300,"TargetStructureID":6050,"Label":"6300-6050 via Adherens from 127096 -> 127097, 127098 -> 127099","Type":"Adherens","Directional":false,"Links":[{"SourceID":127096,"TargetID":127097,"Directional":false},{"SourceID":127098,"TargetID":127099,"Directional":false}]},{"ID":3676,"SourceStructureID":7113,"TargetStructureID":6050,"Label":"7113-6050 via Adherens from 127191 -> 127190, 127245 -> 127244","Type":"Adherens","Directional":false,"Links":[{"SourceID":127191,"TargetID":127190,"Directional":false},{"SourceID":127245,"TargetID":127244,"Directional":false}]},{"ID":3677,"SourceStructureID":7113,"TargetStructureID":6050,"Label":"7113-6050 via Gap Junction from 35953 -> 35952, 35954 -> 29716, 51680 -> 51681, 113574 -> 113573, 113875 -> 113874","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35953,"TargetID":35952,"Directional":false},{"SourceID":35954,"TargetID":29716,"Directional":false},{"SourceID":51680,"TargetID":51681,"Directional":false},{"SourceID":113574,"TargetID":113573,"Directional":false},{"SourceID":113875,"TargetID":113874,"Directional":false}]},{"ID":3678,"SourceStructureID":7147,"TargetStructureID":6050,"Label":"7147-6050 via Adherens from 127658 -> 127657","Type":"Adherens","Directional":false,"Links":[{"SourceID":127658,"TargetID":127657,"Directional":false}]},{"ID":3679,"SourceStructureID":7147,"TargetStructureID":6050,"Label":"7147-6050 via Gap Junction from 51917 -> 51916, 114007 -> 114008, 114375 -> 114376","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51917,"TargetID":51916,"Directional":false},{"SourceID":114007,"TargetID":114008,"Directional":false},{"SourceID":114375,"TargetID":114376,"Directional":false}]},{"ID":3680,"SourceStructureID":9769,"TargetStructureID":6050,"Label":"9769-6050 via Unknown from 126971 -> 126970, 127630 -> 127631","Type":"Unknown","Directional":false,"Links":[{"SourceID":126971,"TargetID":126970,"Directional":false},{"SourceID":127630,"TargetID":127631,"Directional":false}]},{"ID":3681,"SourceStructureID":6050,"TargetStructureID":22974,"Label":"6050-22974 via Adherens from 127638 -> 127639","Type":"Adherens","Directional":false,"Links":[{"SourceID":127638,"TargetID":127639,"Directional":false}]},{"ID":3682,"SourceStructureID":6050,"TargetStructureID":32945,"Label":"6050-32945 via Unknown from 127027 -> 127028","Type":"Unknown","Directional":false,"Links":[{"SourceID":127027,"TargetID":127028,"Directional":false}]},{"ID":3683,"SourceStructureID":6050,"TargetStructureID":38302,"Label":"6050-38302 via Adherens from 127349 -> 127350","Type":"Adherens","Directional":false,"Links":[{"SourceID":127349,"TargetID":127350,"Directional":false}]},{"ID":3684,"SourceStructureID":38307,"TargetStructureID":6050,"Label":"38307-6050 via Adherens from 127282 -> 127281","Type":"Adherens","Directional":false,"Links":[{"SourceID":127282,"TargetID":127281,"Directional":false}]},{"ID":3685,"SourceStructureID":56841,"TargetStructureID":6050,"Label":"56841-6050 via Unknown from 127595 -> 127594","Type":"Unknown","Directional":false,"Links":[{"SourceID":127595,"TargetID":127594,"Directional":false}]},{"ID":3686,"SourceStructureID":6050,"TargetStructureID":57063,"Label":"6050-57063 via Unknown from 51657 -> 113871","Type":"Unknown","Directional":false,"Links":[{"SourceID":51657,"TargetID":113871,"Directional":false}]},{"ID":3687,"SourceStructureID":6050,"TargetStructureID":57064,"Label":"6050-57064 via Unknown from 119688 -> 128924, 127128 -> 127129, 127219 -> 113872, 127221 -> 127220, 127436 -> 127435, 128928 -> 128927, 136478 -> 127102","Type":"Unknown","Directional":false,"Links":[{"SourceID":119688,"TargetID":128924,"Directional":false},{"SourceID":127128,"TargetID":127129,"Directional":false},{"SourceID":127219,"TargetID":113872,"Directional":false},{"SourceID":127221,"TargetID":127220,"Directional":false},{"SourceID":127436,"TargetID":127435,"Directional":false},{"SourceID":128928,"TargetID":128927,"Directional":false},{"SourceID":136478,"TargetID":127102,"Directional":false}]},{"ID":3688,"SourceStructureID":6050,"TargetStructureID":70219,"Label":"6050-70219 via Unknown from 127040 -> 127041","Type":"Unknown","Directional":false,"Links":[{"SourceID":127040,"TargetID":127041,"Directional":false}]},{"ID":3689,"SourceStructureID":6050,"TargetStructureID":77658,"Label":"6050-77658 via Unknown from 126989 -> 126988","Type":"Unknown","Directional":false,"Links":[{"SourceID":126989,"TargetID":126988,"Directional":false}]},{"ID":3690,"SourceStructureID":82091,"TargetStructureID":6050,"Label":"82091-6050 via Unknown from 126997 -> 126996","Type":"Unknown","Directional":false,"Links":[{"SourceID":126997,"TargetID":126996,"Directional":false}]},{"ID":3691,"SourceStructureID":91867,"TargetStructureID":6050,"Label":"91867-6050 via Adherens from 127230 -> 127231, 127233 -> 127234","Type":"Adherens","Directional":false,"Links":[{"SourceID":127230,"TargetID":127231,"Directional":false},{"SourceID":127233,"TargetID":127234,"Directional":false}]},{"ID":3692,"SourceStructureID":6050,"TargetStructureID":91867,"Label":"6050-91867 via Unknown from 113537 -> 128989, 113561 -> 113559","Type":"Unknown","Directional":false,"Links":[{"SourceID":113537,"TargetID":128989,"Directional":false},{"SourceID":113561,"TargetID":113559,"Directional":false}]},{"ID":3693,"SourceStructureID":6050,"TargetStructureID":105188,"Label":"6050-105188 via Unknown from 127481 -> 127482","Type":"Unknown","Directional":false,"Links":[{"SourceID":127481,"TargetID":127482,"Directional":false}]},{"ID":3694,"SourceStructureID":6050,"TargetStructureID":113939,"Label":"6050-113939 via Adherens from 119464 -> 119463, 127462 -> 127463","Type":"Adherens","Directional":false,"Links":[{"SourceID":119464,"TargetID":119463,"Directional":false},{"SourceID":127462,"TargetID":127463,"Directional":false}]},{"ID":3695,"SourceStructureID":113939,"TargetStructureID":6050,"Label":"113939-6050 via Unknown from 119462 -> 119460","Type":"Unknown","Directional":false,"Links":[{"SourceID":119462,"TargetID":119460,"Directional":false}]},{"ID":3696,"SourceStructureID":6050,"TargetStructureID":113965,"Label":"6050-113965 via Unknown from 119465 -> 119466","Type":"Unknown","Directional":false,"Links":[{"SourceID":119465,"TargetID":119466,"Directional":false}]},{"ID":3697,"SourceStructureID":114230,"TargetStructureID":6050,"Label":"114230-6050 via Unknown from 114231 -> 56067, 127544 -> 127545","Type":"Unknown","Directional":false,"Links":[{"SourceID":114231,"TargetID":56067,"Directional":false},{"SourceID":127544,"TargetID":127545,"Directional":false}]},{"ID":3698,"SourceStructureID":6050,"TargetStructureID":114242,"Label":"6050-114242 via Unknown from 119468 -> 119467","Type":"Unknown","Directional":false,"Links":[{"SourceID":119468,"TargetID":119467,"Directional":false}]},{"ID":3699,"SourceStructureID":6050,"TargetStructureID":114259,"Label":"6050-114259 via Unknown from 127655 -> 127656","Type":"Unknown","Directional":false,"Links":[{"SourceID":127655,"TargetID":127656,"Directional":false}]},{"ID":3700,"SourceStructureID":120956,"TargetStructureID":6050,"Label":"120956-6050 via Unknown from 127252 -> 127251","Type":"Unknown","Directional":false,"Links":[{"SourceID":127252,"TargetID":127251,"Directional":false}]},{"ID":3701,"SourceStructureID":6050,"TargetStructureID":124198,"Label":"6050-124198 via Unknown from 127288 -> 127289","Type":"Unknown","Directional":false,"Links":[{"SourceID":127288,"TargetID":127289,"Directional":false}]},{"ID":3702,"SourceStructureID":6050,"TargetStructureID":127148,"Label":"6050-127148 via Unknown from 127150 -> 127151","Type":"Unknown","Directional":false,"Links":[{"SourceID":127150,"TargetID":127151,"Directional":false}]},{"ID":3703,"SourceStructureID":128961,"TargetStructureID":6050,"Label":"128961-6050 via Unknown from 128962 -> 128960","Type":"Unknown","Directional":false,"Links":[{"SourceID":128962,"TargetID":128960,"Directional":false}]},{"ID":3704,"SourceStructureID":6115,"TargetStructureID":6115,"Label":"6115-6115 via Gap Junction from 16063 -> 55784, 72770 -> 72769","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16063,"TargetID":55784,"Directional":false},{"SourceID":72770,"TargetID":72769,"Directional":false}]},{"ID":3705,"SourceStructureID":6115,"TargetStructureID":6169,"Label":"6115-6169 via Gap Junction from 24649 -> 24648, 55853 -> 55852, 72533 -> 72532, 72675 -> 72676, 73194 -> 73193, 135173 -> 135172","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24649,"TargetID":24648,"Directional":false},{"SourceID":55853,"TargetID":55852,"Directional":false},{"SourceID":72533,"TargetID":72532,"Directional":false},{"SourceID":72675,"TargetID":72676,"Directional":false},{"SourceID":73194,"TargetID":73193,"Directional":false},{"SourceID":135173,"TargetID":135172,"Directional":false}]},{"ID":3706,"SourceStructureID":7113,"TargetStructureID":6115,"Label":"7113-6115 via Adherens from 135307 -> 135306","Type":"Adherens","Directional":false,"Links":[{"SourceID":135307,"TargetID":135306,"Directional":false}]},{"ID":3707,"SourceStructureID":6115,"TargetStructureID":7113,"Label":"6115-7113 via Gap Junction from 72214 -> 72213, 73879 -> 73880, 73935 -> 80966, 74172 -> 81891","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":72214,"TargetID":72213,"Directional":false},{"SourceID":73879,"TargetID":73880,"Directional":false},{"SourceID":73935,"TargetID":80966,"Directional":false},{"SourceID":74172,"TargetID":81891,"Directional":false}]},{"ID":3708,"SourceStructureID":7147,"TargetStructureID":6115,"Label":"7147-6115 via Gap Junction from 52194 -> 52193, 134239 -> 134240, 134252 -> 134253, 134255 -> 134254, 134256 -> 134257","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52194,"TargetID":52193,"Directional":false},{"SourceID":134239,"TargetID":134240,"Directional":false},{"SourceID":134252,"TargetID":134253,"Directional":false},{"SourceID":134255,"TargetID":134254,"Directional":false},{"SourceID":134256,"TargetID":134257,"Directional":false}]},{"ID":3709,"SourceStructureID":6115,"TargetStructureID":8577,"Label":"6115-8577 via Unknown from 73403 -> 73405","Type":"Unknown","Directional":false,"Links":[{"SourceID":73403,"TargetID":73405,"Directional":false}]},{"ID":3710,"SourceStructureID":6115,"TargetStructureID":8579,"Label":"6115-8579 via Adherens from 81173 -> 81174","Type":"Adherens","Directional":false,"Links":[{"SourceID":81173,"TargetID":81174,"Directional":false}]},{"ID":3711,"SourceStructureID":8579,"TargetStructureID":6115,"Label":"8579-6115 via Unknown from 72504 -> 72502, 72534 -> 72536, 72601 -> 72602, 73554 -> 134229","Type":"Unknown","Directional":false,"Links":[{"SourceID":72504,"TargetID":72502,"Directional":false},{"SourceID":72534,"TargetID":72536,"Directional":false},{"SourceID":72601,"TargetID":72602,"Directional":false},{"SourceID":73554,"TargetID":134229,"Directional":false}]},{"ID":3712,"SourceStructureID":6115,"TargetStructureID":8720,"Label":"6115-8720 via Unknown from 72944 -> 72945, 127791 -> 73209","Type":"Unknown","Directional":false,"Links":[{"SourceID":72944,"TargetID":72945,"Directional":false},{"SourceID":127791,"TargetID":73209,"Directional":false}]},{"ID":3713,"SourceStructureID":16087,"TargetStructureID":6115,"Label":"16087-6115 via Adherens from 72686 -> 72685, 75422 -> 75421","Type":"Adherens","Directional":false,"Links":[{"SourceID":72686,"TargetID":72685,"Directional":false},{"SourceID":75422,"TargetID":75421,"Directional":false}]},{"ID":3714,"SourceStructureID":6115,"TargetStructureID":18282,"Label":"6115-18282 via Unknown from 73239 -> 73240","Type":"Unknown","Directional":false,"Links":[{"SourceID":73239,"TargetID":73240,"Directional":false}]},{"ID":3715,"SourceStructureID":6115,"TargetStructureID":29702,"Label":"6115-29702 via Adherens from 75477 -> 75476, 75542 -> 75543, 75544 -> 75545","Type":"Adherens","Directional":false,"Links":[{"SourceID":75477,"TargetID":75476,"Directional":false},{"SourceID":75542,"TargetID":75543,"Directional":false},{"SourceID":75544,"TargetID":75545,"Directional":false}]},{"ID":3716,"SourceStructureID":6115,"TargetStructureID":29702,"Label":"6115-29702 via Unknown from 73247 -> 73248, 74102 -> 74103","Type":"Unknown","Directional":false,"Links":[{"SourceID":73247,"TargetID":73248,"Directional":false},{"SourceID":74102,"TargetID":74103,"Directional":false}]},{"ID":3717,"SourceStructureID":6115,"TargetStructureID":32970,"Label":"6115-32970 via Unknown from 80944 -> 80943","Type":"Unknown","Directional":false,"Links":[{"SourceID":80944,"TargetID":80943,"Directional":false}]},{"ID":3718,"SourceStructureID":6115,"TargetStructureID":41608,"Label":"6115-41608 via Unknown from 72279 -> 72280, 72806 -> 72805","Type":"Unknown","Directional":false,"Links":[{"SourceID":72279,"TargetID":72280,"Directional":false},{"SourceID":72806,"TargetID":72805,"Directional":false}]},{"ID":3719,"SourceStructureID":61853,"TargetStructureID":6115,"Label":"61853-6115 via Adherens from 81426 -> 73776","Type":"Adherens","Directional":false,"Links":[{"SourceID":81426,"TargetID":73776,"Directional":false}]},{"ID":3720,"SourceStructureID":6115,"TargetStructureID":66323,"Label":"6115-66323 via Adherens from 73129 -> 84324","Type":"Adherens","Directional":false,"Links":[{"SourceID":73129,"TargetID":84324,"Directional":false}]},{"ID":3721,"SourceStructureID":66323,"TargetStructureID":6115,"Label":"66323-6115 via Unknown from 84400 -> 74274","Type":"Unknown","Directional":false,"Links":[{"SourceID":84400,"TargetID":74274,"Directional":false}]},{"ID":3722,"SourceStructureID":6115,"TargetStructureID":66339,"Label":"6115-66339 via Adherens from 84272 -> 84271","Type":"Adherens","Directional":false,"Links":[{"SourceID":84272,"TargetID":84271,"Directional":false}]},{"ID":3723,"SourceStructureID":6115,"TargetStructureID":66339,"Label":"6115-66339 via Unknown from 73131 -> 73132, 76008 -> 76009","Type":"Unknown","Directional":false,"Links":[{"SourceID":73131,"TargetID":73132,"Directional":false},{"SourceID":76008,"TargetID":76009,"Directional":false}]},{"ID":3724,"SourceStructureID":6115,"TargetStructureID":66634,"Label":"6115-66634 via Adherens from 74411 -> 74410","Type":"Adherens","Directional":false,"Links":[{"SourceID":74411,"TargetID":74410,"Directional":false}]},{"ID":3725,"SourceStructureID":6115,"TargetStructureID":66696,"Label":"6115-66696 via Unknown from 72636 -> 72637","Type":"Unknown","Directional":false,"Links":[{"SourceID":72636,"TargetID":72637,"Directional":false}]},{"ID":3726,"SourceStructureID":68548,"TargetStructureID":6115,"Label":"68548-6115 via Unknown from 73563 -> 73046","Type":"Unknown","Directional":false,"Links":[{"SourceID":73563,"TargetID":73046,"Directional":false}]},{"ID":3727,"SourceStructureID":6115,"TargetStructureID":69500,"Label":"6115-69500 via Adherens from 81172 -> 81171","Type":"Adherens","Directional":false,"Links":[{"SourceID":81172,"TargetID":81171,"Directional":false}]},{"ID":3728,"SourceStructureID":69500,"TargetStructureID":6115,"Label":"69500-6115 via Unknown from 72434 -> 72433","Type":"Unknown","Directional":false,"Links":[{"SourceID":72434,"TargetID":72433,"Directional":false}]},{"ID":3729,"SourceStructureID":6115,"TargetStructureID":69503,"Label":"6115-69503 via Adherens from 72416 -> 116708","Type":"Adherens","Directional":false,"Links":[{"SourceID":72416,"TargetID":116708,"Directional":false}]},{"ID":3730,"SourceStructureID":6115,"TargetStructureID":69503,"Label":"6115-69503 via Unknown from 72435 -> 72437","Type":"Unknown","Directional":false,"Links":[{"SourceID":72435,"TargetID":72437,"Directional":false}]},{"ID":3731,"SourceStructureID":6115,"TargetStructureID":71351,"Label":"6115-71351 via Unknown from 74421 -> 74422, 134262 -> 75527","Type":"Unknown","Directional":false,"Links":[{"SourceID":74421,"TargetID":74422,"Directional":false},{"SourceID":134262,"TargetID":75527,"Directional":false}]},{"ID":3732,"SourceStructureID":6115,"TargetStructureID":71615,"Label":"6115-71615 via Unknown from 72918 -> 72919, 75983 -> 81334","Type":"Unknown","Directional":false,"Links":[{"SourceID":72918,"TargetID":72919,"Directional":false},{"SourceID":75983,"TargetID":81334,"Directional":false}]},{"ID":3733,"SourceStructureID":6115,"TargetStructureID":72072,"Label":"6115-72072 via Unknown from 72073 -> 134155","Type":"Unknown","Directional":false,"Links":[{"SourceID":72073,"TargetID":134155,"Directional":false}]},{"ID":3734,"SourceStructureID":6115,"TargetStructureID":72082,"Label":"6115-72082 via Adherens from 72083 -> 72084","Type":"Adherens","Directional":false,"Links":[{"SourceID":72083,"TargetID":72084,"Directional":false}]},{"ID":3735,"SourceStructureID":6115,"TargetStructureID":72162,"Label":"6115-72162 via Adherens from 37633 -> 82093","Type":"Adherens","Directional":false,"Links":[{"SourceID":37633,"TargetID":82093,"Directional":false}]},{"ID":3736,"SourceStructureID":72166,"TargetStructureID":6115,"Label":"72166-6115 via Adherens from 134159 -> 134158","Type":"Adherens","Directional":false,"Links":[{"SourceID":134159,"TargetID":134158,"Directional":false}]},{"ID":3737,"SourceStructureID":72176,"TargetStructureID":6115,"Label":"72176-6115 via Unknown from 81157 -> 75533","Type":"Unknown","Directional":false,"Links":[{"SourceID":81157,"TargetID":75533,"Directional":false}]},{"ID":3738,"SourceStructureID":6115,"TargetStructureID":72180,"Label":"6115-72180 via Adherens from 81152 -> 81151","Type":"Adherens","Directional":false,"Links":[{"SourceID":81152,"TargetID":81151,"Directional":false}]},{"ID":3739,"SourceStructureID":6115,"TargetStructureID":72188,"Label":"6115-72188 via Adherens from 127273 -> 127274","Type":"Adherens","Directional":false,"Links":[{"SourceID":127273,"TargetID":127274,"Directional":false}]},{"ID":3740,"SourceStructureID":6115,"TargetStructureID":72218,"Label":"6115-72218 via Adherens from 72219 -> 72220","Type":"Adherens","Directional":false,"Links":[{"SourceID":72219,"TargetID":72220,"Directional":false}]},{"ID":3741,"SourceStructureID":72223,"TargetStructureID":6115,"Label":"72223-6115 via Unknown from 80930 -> 80931","Type":"Unknown","Directional":false,"Links":[{"SourceID":80930,"TargetID":80931,"Directional":false}]},{"ID":3742,"SourceStructureID":6115,"TargetStructureID":72227,"Label":"6115-72227 via Unknown from 80939 -> 80940","Type":"Unknown","Directional":false,"Links":[{"SourceID":80939,"TargetID":80940,"Directional":false}]},{"ID":3743,"SourceStructureID":6115,"TargetStructureID":72252,"Label":"6115-72252 via Unknown from 72253 -> 72254","Type":"Unknown","Directional":false,"Links":[{"SourceID":72253,"TargetID":72254,"Directional":false}]},{"ID":3744,"SourceStructureID":6115,"TargetStructureID":72299,"Label":"6115-72299 via Unknown from 74743 -> 74744, 134162 -> 134163","Type":"Unknown","Directional":false,"Links":[{"SourceID":74743,"TargetID":74744,"Directional":false},{"SourceID":134162,"TargetID":134163,"Directional":false}]},{"ID":3745,"SourceStructureID":6115,"TargetStructureID":72326,"Label":"6115-72326 via Unknown from 82370 -> 82373","Type":"Unknown","Directional":false,"Links":[{"SourceID":82370,"TargetID":82373,"Directional":false}]},{"ID":3746,"SourceStructureID":6115,"TargetStructureID":72331,"Label":"6115-72331 via Adherens from 73236 -> 73235","Type":"Adherens","Directional":false,"Links":[{"SourceID":73236,"TargetID":73235,"Directional":false}]},{"ID":3747,"SourceStructureID":6115,"TargetStructureID":72363,"Label":"6115-72363 via Unknown from 72374 -> 82038, 73256 -> 73257","Type":"Unknown","Directional":false,"Links":[{"SourceID":72374,"TargetID":82038,"Directional":false},{"SourceID":73256,"TargetID":73257,"Directional":false}]},{"ID":3748,"SourceStructureID":72376,"TargetStructureID":6115,"Label":"72376-6115 via Adherens from 75601 -> 75600","Type":"Adherens","Directional":false,"Links":[{"SourceID":75601,"TargetID":75600,"Directional":false}]},{"ID":3749,"SourceStructureID":72402,"TargetStructureID":6115,"Label":"72402-6115 via Adherens from 80946 -> 80947","Type":"Adherens","Directional":false,"Links":[{"SourceID":80946,"TargetID":80947,"Directional":false}]},{"ID":3750,"SourceStructureID":72438,"TargetStructureID":6115,"Label":"72438-6115 via Unknown from 72439 -> 72440","Type":"Unknown","Directional":false,"Links":[{"SourceID":72439,"TargetID":72440,"Directional":false}]},{"ID":3751,"SourceStructureID":72445,"TargetStructureID":6115,"Label":"72445-6115 via Unknown from 72447 -> 72446","Type":"Unknown","Directional":false,"Links":[{"SourceID":72447,"TargetID":72446,"Directional":false}]},{"ID":3752,"SourceStructureID":72486,"TargetStructureID":6115,"Label":"72486-6115 via Unknown from 72487 -> 72488","Type":"Unknown","Directional":false,"Links":[{"SourceID":72487,"TargetID":72488,"Directional":false}]},{"ID":3753,"SourceStructureID":6115,"TargetStructureID":72496,"Label":"6115-72496 via Unknown from 72499 -> 72500","Type":"Unknown","Directional":false,"Links":[{"SourceID":72499,"TargetID":72500,"Directional":false}]},{"ID":3754,"SourceStructureID":6115,"TargetStructureID":72505,"Label":"6115-72505 via Adherens from 72498 -> 72509, 72508 -> 72507","Type":"Adherens","Directional":false,"Links":[{"SourceID":72498,"TargetID":72509,"Directional":false},{"SourceID":72508,"TargetID":72507,"Directional":false}]},{"ID":3755,"SourceStructureID":72518,"TargetStructureID":6115,"Label":"72518-6115 via Unknown from 82311 -> 135176, 82313 -> 82312","Type":"Unknown","Directional":false,"Links":[{"SourceID":82311,"TargetID":135176,"Directional":false},{"SourceID":82313,"TargetID":82312,"Directional":false}]},{"ID":3756,"SourceStructureID":72523,"TargetStructureID":6115,"Label":"72523-6115 via Unknown from 75606 -> 75605","Type":"Unknown","Directional":false,"Links":[{"SourceID":75606,"TargetID":75605,"Directional":false}]},{"ID":3757,"SourceStructureID":6115,"TargetStructureID":72526,"Label":"6115-72526 via Adherens from 72537 -> 72538","Type":"Adherens","Directional":false,"Links":[{"SourceID":72537,"TargetID":72538,"Directional":false}]},{"ID":3758,"SourceStructureID":6115,"TargetStructureID":72539,"Label":"6115-72539 via BC Conventional Synapse from 72541 -> 72540","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":72541,"TargetID":72540,"Directional":false}]},{"ID":3759,"SourceStructureID":6115,"TargetStructureID":72542,"Label":"6115-72542 via Unknown from 75613 -> 75614","Type":"Unknown","Directional":false,"Links":[{"SourceID":75613,"TargetID":75614,"Directional":false}]},{"ID":3760,"SourceStructureID":6115,"TargetStructureID":72556,"Label":"6115-72556 via Unknown from 72558 -> 72557","Type":"Unknown","Directional":false,"Links":[{"SourceID":72558,"TargetID":72557,"Directional":false}]},{"ID":3761,"SourceStructureID":6115,"TargetStructureID":72569,"Label":"6115-72569 via Adherens from 72579 -> 72581","Type":"Adherens","Directional":false,"Links":[{"SourceID":72579,"TargetID":72581,"Directional":false}]},{"ID":3762,"SourceStructureID":72584,"TargetStructureID":6115,"Label":"72584-6115 via Unknown from 72585 -> 72586","Type":"Unknown","Directional":false,"Links":[{"SourceID":72585,"TargetID":72586,"Directional":false}]},{"ID":3763,"SourceStructureID":72592,"TargetStructureID":6115,"Label":"72592-6115 via Unknown from 72597 -> 72596, 72598 -> 72599, 75656 -> 75657","Type":"Unknown","Directional":false,"Links":[{"SourceID":72597,"TargetID":72596,"Directional":false},{"SourceID":72598,"TargetID":72599,"Directional":false},{"SourceID":75656,"TargetID":75657,"Directional":false}]},{"ID":3764,"SourceStructureID":6115,"TargetStructureID":72604,"Label":"6115-72604 via Adherens from 72603 -> 72605, 75659 -> 75660","Type":"Adherens","Directional":false,"Links":[{"SourceID":72603,"TargetID":72605,"Directional":false},{"SourceID":75659,"TargetID":75660,"Directional":false}]},{"ID":3765,"SourceStructureID":72604,"TargetStructureID":6115,"Label":"72604-6115 via Unknown from 72667 -> 72666, 72674 -> 72673, 75669 -> 75670","Type":"Unknown","Directional":false,"Links":[{"SourceID":72667,"TargetID":72666,"Directional":false},{"SourceID":72674,"TargetID":72673,"Directional":false},{"SourceID":75669,"TargetID":75670,"Directional":false}]},{"ID":3766,"SourceStructureID":6115,"TargetStructureID":72612,"Label":"6115-72612 via Unknown from 72611 -> 72613","Type":"Unknown","Directional":false,"Links":[{"SourceID":72611,"TargetID":72613,"Directional":false}]},{"ID":3767,"SourceStructureID":72633,"TargetStructureID":6115,"Label":"72633-6115 via Unknown from 72634 -> 72635","Type":"Unknown","Directional":false,"Links":[{"SourceID":72634,"TargetID":72635,"Directional":false}]},{"ID":3768,"SourceStructureID":6115,"TargetStructureID":72643,"Label":"6115-72643 via Unknown from 73262 -> 73263","Type":"Unknown","Directional":false,"Links":[{"SourceID":73262,"TargetID":73263,"Directional":false}]},{"ID":3769,"SourceStructureID":6115,"TargetStructureID":72658,"Label":"6115-72658 via Unknown from 72663 -> 72662","Type":"Unknown","Directional":false,"Links":[{"SourceID":72663,"TargetID":72662,"Directional":false}]},{"ID":3770,"SourceStructureID":72687,"TargetStructureID":6115,"Label":"72687-6115 via Adherens from 72700 -> 72699","Type":"Adherens","Directional":false,"Links":[{"SourceID":72700,"TargetID":72699,"Directional":false}]},{"ID":3771,"SourceStructureID":6115,"TargetStructureID":72687,"Label":"6115-72687 via Unknown from 72703 -> 72704","Type":"Unknown","Directional":false,"Links":[{"SourceID":72703,"TargetID":72704,"Directional":false}]},{"ID":3772,"SourceStructureID":6115,"TargetStructureID":72690,"Label":"6115-72690 via Unknown from 81914 -> 81915","Type":"Unknown","Directional":false,"Links":[{"SourceID":81914,"TargetID":81915,"Directional":false}]},{"ID":3773,"SourceStructureID":6115,"TargetStructureID":72697,"Label":"6115-72697 via Unknown from 72701 -> 72702","Type":"Unknown","Directional":false,"Links":[{"SourceID":72701,"TargetID":72702,"Directional":false}]},{"ID":3774,"SourceStructureID":6115,"TargetStructureID":72712,"Label":"6115-72712 via Unknown from 72720 -> 72721","Type":"Unknown","Directional":false,"Links":[{"SourceID":72720,"TargetID":72721,"Directional":false}]},{"ID":3775,"SourceStructureID":6115,"TargetStructureID":72730,"Label":"6115-72730 via Unknown from 72733 -> 72734","Type":"Unknown","Directional":false,"Links":[{"SourceID":72733,"TargetID":72734,"Directional":false}]},{"ID":3776,"SourceStructureID":72749,"TargetStructureID":6115,"Label":"72749-6115 via Adherens from 72750 -> 72748","Type":"Adherens","Directional":false,"Links":[{"SourceID":72750,"TargetID":72748,"Directional":false}]},{"ID":3777,"SourceStructureID":72751,"TargetStructureID":6115,"Label":"72751-6115 via Unknown from 72752 -> 72753","Type":"Unknown","Directional":false,"Links":[{"SourceID":72752,"TargetID":72753,"Directional":false}]},{"ID":3778,"SourceStructureID":6115,"TargetStructureID":72754,"Label":"6115-72754 via Unknown from 72761 -> 72762","Type":"Unknown","Directional":false,"Links":[{"SourceID":72761,"TargetID":72762,"Directional":false}]},{"ID":3779,"SourceStructureID":6115,"TargetStructureID":72756,"Label":"6115-72756 via Unknown from 72759 -> 72760","Type":"Unknown","Directional":false,"Links":[{"SourceID":72759,"TargetID":72760,"Directional":false}]},{"ID":3780,"SourceStructureID":6115,"TargetStructureID":72765,"Label":"6115-72765 via Unknown from 72764 -> 72767","Type":"Unknown","Directional":false,"Links":[{"SourceID":72764,"TargetID":72767,"Directional":false}]},{"ID":3781,"SourceStructureID":6115,"TargetStructureID":72772,"Label":"6115-72772 via Adherens from 72802 -> 72801","Type":"Adherens","Directional":false,"Links":[{"SourceID":72802,"TargetID":72801,"Directional":false}]},{"ID":3782,"SourceStructureID":6115,"TargetStructureID":72778,"Label":"6115-72778 via Adherens from 72783 -> 72782","Type":"Adherens","Directional":false,"Links":[{"SourceID":72783,"TargetID":72782,"Directional":false}]},{"ID":3783,"SourceStructureID":6115,"TargetStructureID":72784,"Label":"6115-72784 via Unknown from 72790 -> 72791","Type":"Unknown","Directional":false,"Links":[{"SourceID":72790,"TargetID":72791,"Directional":false}]},{"ID":3784,"SourceStructureID":72818,"TargetStructureID":6115,"Label":"72818-6115 via Unknown from 134265 -> 75837","Type":"Unknown","Directional":false,"Links":[{"SourceID":134265,"TargetID":75837,"Directional":false}]},{"ID":3785,"SourceStructureID":72821,"TargetStructureID":6115,"Label":"72821-6115 via Gap Junction from 72822 -> 55805","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":72822,"TargetID":55805,"Directional":false}]},{"ID":3786,"SourceStructureID":6115,"TargetStructureID":72837,"Label":"6115-72837 via Unknown from 72838 -> 72839","Type":"Unknown","Directional":false,"Links":[{"SourceID":72838,"TargetID":72839,"Directional":false}]},{"ID":3787,"SourceStructureID":6115,"TargetStructureID":72844,"Label":"6115-72844 via Unknown from 75980 -> 75981","Type":"Unknown","Directional":false,"Links":[{"SourceID":75980,"TargetID":75981,"Directional":false}]},{"ID":3788,"SourceStructureID":72847,"TargetStructureID":6115,"Label":"72847-6115 via Adherens from 72911 -> 72910","Type":"Adherens","Directional":false,"Links":[{"SourceID":72911,"TargetID":72910,"Directional":false}]},{"ID":3789,"SourceStructureID":6115,"TargetStructureID":72901,"Label":"6115-72901 via Unknown from 75978 -> 75979","Type":"Unknown","Directional":false,"Links":[{"SourceID":75978,"TargetID":75979,"Directional":false}]},{"ID":3790,"SourceStructureID":6115,"TargetStructureID":72915,"Label":"6115-72915 via Unknown from 80941 -> 80942","Type":"Unknown","Directional":false,"Links":[{"SourceID":80941,"TargetID":80942,"Directional":false}]},{"ID":3791,"SourceStructureID":72920,"TargetStructureID":6115,"Label":"72920-6115 via Unknown from 82300 -> 75984","Type":"Unknown","Directional":false,"Links":[{"SourceID":82300,"TargetID":75984,"Directional":false}]},{"ID":3792,"SourceStructureID":6115,"TargetStructureID":72930,"Label":"6115-72930 via Unknown from 73039 -> 82410, 81345 -> 81346","Type":"Unknown","Directional":false,"Links":[{"SourceID":73039,"TargetID":82410,"Directional":false},{"SourceID":81345,"TargetID":81346,"Directional":false}]},{"ID":3793,"SourceStructureID":6115,"TargetStructureID":72936,"Label":"6115-72936 via Adherens from 76021 -> 76022","Type":"Adherens","Directional":false,"Links":[{"SourceID":76021,"TargetID":76022,"Directional":false}]},{"ID":3794,"SourceStructureID":72939,"TargetStructureID":6115,"Label":"72939-6115 via Adherens from 76020 -> 76019","Type":"Adherens","Directional":false,"Links":[{"SourceID":76020,"TargetID":76019,"Directional":false}]},{"ID":3795,"SourceStructureID":72941,"TargetStructureID":6115,"Label":"72941-6115 via Gap Junction from 72942 -> 72943","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":72942,"TargetID":72943,"Directional":false}]},{"ID":3796,"SourceStructureID":72964,"TargetStructureID":6115,"Label":"72964-6115 via Adherens from 72971 -> 72972","Type":"Adherens","Directional":false,"Links":[{"SourceID":72971,"TargetID":72972,"Directional":false}]},{"ID":3797,"SourceStructureID":6115,"TargetStructureID":72964,"Label":"6115-72964 via Unknown from 74306 -> 74307","Type":"Unknown","Directional":false,"Links":[{"SourceID":74306,"TargetID":74307,"Directional":false}]},{"ID":3798,"SourceStructureID":6115,"TargetStructureID":72969,"Label":"6115-72969 via Unknown from 73041 -> 73042","Type":"Unknown","Directional":false,"Links":[{"SourceID":73041,"TargetID":73042,"Directional":false}]},{"ID":3799,"SourceStructureID":6115,"TargetStructureID":72985,"Label":"6115-72985 via Unknown from 134269 -> 134270","Type":"Unknown","Directional":false,"Links":[{"SourceID":134269,"TargetID":134270,"Directional":false}]},{"ID":3800,"SourceStructureID":6115,"TargetStructureID":72987,"Label":"6115-72987 via Unknown from 73002 -> 73003, 73049 -> 73050, 75992 -> 75993","Type":"Unknown","Directional":false,"Links":[{"SourceID":73002,"TargetID":73003,"Directional":false},{"SourceID":73049,"TargetID":73050,"Directional":false},{"SourceID":75992,"TargetID":75993,"Directional":false}]},{"ID":3801,"SourceStructureID":6115,"TargetStructureID":73010,"Label":"6115-73010 via Unknown from 73009 -> 73011","Type":"Unknown","Directional":false,"Links":[{"SourceID":73009,"TargetID":73011,"Directional":false}]},{"ID":3802,"SourceStructureID":6115,"TargetStructureID":73069,"Label":"6115-73069 via Unknown from 73070 -> 73071","Type":"Unknown","Directional":false,"Links":[{"SourceID":73070,"TargetID":73071,"Directional":false}]},{"ID":3803,"SourceStructureID":6115,"TargetStructureID":73086,"Label":"6115-73086 via Unknown from 75998 -> 75999","Type":"Unknown","Directional":false,"Links":[{"SourceID":75998,"TargetID":75999,"Directional":false}]},{"ID":3804,"SourceStructureID":6115,"TargetStructureID":73096,"Label":"6115-73096 via Adherens from 134221 -> 134222","Type":"Adherens","Directional":false,"Links":[{"SourceID":134221,"TargetID":134222,"Directional":false}]},{"ID":3805,"SourceStructureID":6115,"TargetStructureID":73096,"Label":"6115-73096 via Unknown from 73097 -> 73098","Type":"Unknown","Directional":false,"Links":[{"SourceID":73097,"TargetID":73098,"Directional":false}]},{"ID":3806,"SourceStructureID":73118,"TargetStructureID":6115,"Label":"73118-6115 via Adherens from 76006 -> 76005","Type":"Adherens","Directional":false,"Links":[{"SourceID":76006,"TargetID":76005,"Directional":false}]},{"ID":3807,"SourceStructureID":73144,"TargetStructureID":6115,"Label":"73144-6115 via Adherens from 73154 -> 73155, 116698 -> 73413","Type":"Adherens","Directional":false,"Links":[{"SourceID":73154,"TargetID":73155,"Directional":false},{"SourceID":116698,"TargetID":73413,"Directional":false}]},{"ID":3808,"SourceStructureID":6115,"TargetStructureID":73173,"Label":"6115-73173 via Unknown from 73172 -> 73174","Type":"Unknown","Directional":false,"Links":[{"SourceID":73172,"TargetID":73174,"Directional":false}]},{"ID":3809,"SourceStructureID":6115,"TargetStructureID":73197,"Label":"6115-73197 via Unknown from 73206 -> 73207","Type":"Unknown","Directional":false,"Links":[{"SourceID":73206,"TargetID":73207,"Directional":false}]},{"ID":3810,"SourceStructureID":73212,"TargetStructureID":6115,"Label":"73212-6115 via Adherens from 80911 -> 80910","Type":"Adherens","Directional":false,"Links":[{"SourceID":80911,"TargetID":80910,"Directional":false}]},{"ID":3811,"SourceStructureID":6115,"TargetStructureID":73270,"Label":"6115-73270 via Unknown from 73269 -> 73271","Type":"Unknown","Directional":false,"Links":[{"SourceID":73269,"TargetID":73271,"Directional":false}]},{"ID":3812,"SourceStructureID":73273,"TargetStructureID":6115,"Label":"73273-6115 via Adherens from 73288 -> 73286","Type":"Adherens","Directional":false,"Links":[{"SourceID":73288,"TargetID":73286,"Directional":false}]},{"ID":3813,"SourceStructureID":73273,"TargetStructureID":6115,"Label":"73273-6115 via Unknown from 73287 -> 73285","Type":"Unknown","Directional":false,"Links":[{"SourceID":73287,"TargetID":73285,"Directional":false}]},{"ID":3814,"SourceStructureID":73275,"TargetStructureID":6115,"Label":"73275-6115 via Unknown from 82045 -> 73284","Type":"Unknown","Directional":false,"Links":[{"SourceID":82045,"TargetID":73284,"Directional":false}]},{"ID":3815,"SourceStructureID":6115,"TargetStructureID":73280,"Label":"6115-73280 via Unknown from 73281 -> 73282","Type":"Unknown","Directional":false,"Links":[{"SourceID":73281,"TargetID":73282,"Directional":false}]},{"ID":3816,"SourceStructureID":6115,"TargetStructureID":73293,"Label":"6115-73293 via Unknown from 73296 -> 73298","Type":"Unknown","Directional":false,"Links":[{"SourceID":73296,"TargetID":73298,"Directional":false}]},{"ID":3817,"SourceStructureID":6115,"TargetStructureID":73313,"Label":"6115-73313 via Adherens from 73318 -> 73319","Type":"Adherens","Directional":false,"Links":[{"SourceID":73318,"TargetID":73319,"Directional":false}]},{"ID":3818,"SourceStructureID":6115,"TargetStructureID":73339,"Label":"6115-73339 via Unknown from 73340 -> 73341","Type":"Unknown","Directional":false,"Links":[{"SourceID":73340,"TargetID":73341,"Directional":false}]},{"ID":3819,"SourceStructureID":73343,"TargetStructureID":6115,"Label":"73343-6115 via Unknown from 73346 -> 73347","Type":"Unknown","Directional":false,"Links":[{"SourceID":73346,"TargetID":73347,"Directional":false}]},{"ID":3820,"SourceStructureID":73368,"TargetStructureID":6115,"Label":"73368-6115 via Unknown from 73370 -> 73369","Type":"Unknown","Directional":false,"Links":[{"SourceID":73370,"TargetID":73369,"Directional":false}]},{"ID":3821,"SourceStructureID":6115,"TargetStructureID":73439,"Label":"6115-73439 via Unknown from 73441 -> 73442","Type":"Unknown","Directional":false,"Links":[{"SourceID":73441,"TargetID":73442,"Directional":false}]},{"ID":3822,"SourceStructureID":6115,"TargetStructureID":73488,"Label":"6115-73488 via Unknown from 73489 -> 73490","Type":"Unknown","Directional":false,"Links":[{"SourceID":73489,"TargetID":73490,"Directional":false}]},{"ID":3823,"SourceStructureID":73503,"TargetStructureID":6115,"Label":"73503-6115 via Unknown from 73504 -> 73505","Type":"Unknown","Directional":false,"Links":[{"SourceID":73504,"TargetID":73505,"Directional":false}]},{"ID":3824,"SourceStructureID":6115,"TargetStructureID":73524,"Label":"6115-73524 via Adherens from 73526 -> 73525","Type":"Adherens","Directional":false,"Links":[{"SourceID":73526,"TargetID":73525,"Directional":false}]},{"ID":3825,"SourceStructureID":6115,"TargetStructureID":73524,"Label":"6115-73524 via Unknown from 73536 -> 73537","Type":"Unknown","Directional":false,"Links":[{"SourceID":73536,"TargetID":73537,"Directional":false}]},{"ID":3826,"SourceStructureID":73564,"TargetStructureID":6115,"Label":"73564-6115 via Unknown from 74180 -> 74181, 74183 -> 74184","Type":"Unknown","Directional":false,"Links":[{"SourceID":74180,"TargetID":74181,"Directional":false},{"SourceID":74183,"TargetID":74184,"Directional":false}]},{"ID":3827,"SourceStructureID":6115,"TargetStructureID":73772,"Label":"6115-73772 via Unknown from 73778 -> 73779","Type":"Unknown","Directional":false,"Links":[{"SourceID":73778,"TargetID":73779,"Directional":false}]},{"ID":3828,"SourceStructureID":6115,"TargetStructureID":73796,"Label":"6115-73796 via Unknown from 73798 -> 73799","Type":"Unknown","Directional":false,"Links":[{"SourceID":73798,"TargetID":73799,"Directional":false}]},{"ID":3829,"SourceStructureID":73804,"TargetStructureID":6115,"Label":"73804-6115 via Unknown from 74201 -> 74200","Type":"Unknown","Directional":false,"Links":[{"SourceID":74201,"TargetID":74200,"Directional":false}]},{"ID":3830,"SourceStructureID":6115,"TargetStructureID":73807,"Label":"6115-73807 via Unknown from 74707 -> 82108","Type":"Unknown","Directional":false,"Links":[{"SourceID":74707,"TargetID":82108,"Directional":false}]},{"ID":3831,"SourceStructureID":73825,"TargetStructureID":6115,"Label":"73825-6115 via Unknown from 75844 -> 75843","Type":"Unknown","Directional":false,"Links":[{"SourceID":75844,"TargetID":75843,"Directional":false}]},{"ID":3832,"SourceStructureID":6115,"TargetStructureID":73846,"Label":"6115-73846 via Adherens from 73850 -> 73849","Type":"Adherens","Directional":false,"Links":[{"SourceID":73850,"TargetID":73849,"Directional":false}]},{"ID":3833,"SourceStructureID":73864,"TargetStructureID":6115,"Label":"73864-6115 via Unknown from 81335 -> 73865","Type":"Unknown","Directional":false,"Links":[{"SourceID":81335,"TargetID":73865,"Directional":false}]},{"ID":3834,"SourceStructureID":6115,"TargetStructureID":73868,"Label":"6115-73868 via Unknown from 73960 -> 134235","Type":"Unknown","Directional":false,"Links":[{"SourceID":73960,"TargetID":134235,"Directional":false}]},{"ID":3835,"SourceStructureID":6115,"TargetStructureID":73871,"Label":"6115-73871 via Unknown from 73876 -> 134230","Type":"Unknown","Directional":false,"Links":[{"SourceID":73876,"TargetID":134230,"Directional":false}]},{"ID":3836,"SourceStructureID":73921,"TargetStructureID":6115,"Label":"73921-6115 via Unknown from 134234 -> 73922","Type":"Unknown","Directional":false,"Links":[{"SourceID":134234,"TargetID":73922,"Directional":false}]},{"ID":3837,"SourceStructureID":6115,"TargetStructureID":73937,"Label":"6115-73937 via Adherens from 73936 -> 73938","Type":"Adherens","Directional":false,"Links":[{"SourceID":73936,"TargetID":73938,"Directional":false}]},{"ID":3838,"SourceStructureID":73979,"TargetStructureID":6115,"Label":"73979-6115 via Adherens from 73980 -> 73981","Type":"Adherens","Directional":false,"Links":[{"SourceID":73980,"TargetID":73981,"Directional":false}]},{"ID":3839,"SourceStructureID":6115,"TargetStructureID":74007,"Label":"6115-74007 via Adherens from 80937 -> 80938","Type":"Adherens","Directional":false,"Links":[{"SourceID":80937,"TargetID":80938,"Directional":false}]},{"ID":3840,"SourceStructureID":74008,"TargetStructureID":6115,"Label":"74008-6115 via Unknown from 134236 -> 74011","Type":"Unknown","Directional":false,"Links":[{"SourceID":134236,"TargetID":74011,"Directional":false}]},{"ID":3841,"SourceStructureID":6115,"TargetStructureID":74039,"Label":"6115-74039 via Unknown from 74040 -> 134237","Type":"Unknown","Directional":false,"Links":[{"SourceID":74040,"TargetID":134237,"Directional":false}]},{"ID":3842,"SourceStructureID":74064,"TargetStructureID":6115,"Label":"74064-6115 via Adherens from 74112 -> 74111","Type":"Adherens","Directional":false,"Links":[{"SourceID":74112,"TargetID":74111,"Directional":false}]},{"ID":3843,"SourceStructureID":74082,"TargetStructureID":6115,"Label":"74082-6115 via Adherens from 74108 -> 74109","Type":"Adherens","Directional":false,"Links":[{"SourceID":74108,"TargetID":74109,"Directional":false}]},{"ID":3844,"SourceStructureID":6115,"TargetStructureID":74082,"Label":"6115-74082 via Unknown from 74084 -> 74085","Type":"Unknown","Directional":false,"Links":[{"SourceID":74084,"TargetID":74085,"Directional":false}]},{"ID":3845,"SourceStructureID":6115,"TargetStructureID":74094,"Label":"6115-74094 via Unknown from 74095 -> 74096","Type":"Unknown","Directional":false,"Links":[{"SourceID":74095,"TargetID":74096,"Directional":false}]},{"ID":3846,"SourceStructureID":6115,"TargetStructureID":74104,"Label":"6115-74104 via Unknown from 74105 -> 74106","Type":"Unknown","Directional":false,"Links":[{"SourceID":74105,"TargetID":74106,"Directional":false}]},{"ID":3847,"SourceStructureID":6115,"TargetStructureID":74279,"Label":"6115-74279 via Adherens from 80948 -> 80949","Type":"Adherens","Directional":false,"Links":[{"SourceID":80948,"TargetID":80949,"Directional":false}]},{"ID":3848,"SourceStructureID":74308,"TargetStructureID":6115,"Label":"74308-6115 via Unknown from 134238 -> 74311","Type":"Unknown","Directional":false,"Links":[{"SourceID":134238,"TargetID":74311,"Directional":false}]},{"ID":3849,"SourceStructureID":74313,"TargetStructureID":6115,"Label":"74313-6115 via Adherens from 74314 -> 74312","Type":"Adherens","Directional":false,"Links":[{"SourceID":74314,"TargetID":74312,"Directional":false}]},{"ID":3850,"SourceStructureID":6115,"TargetStructureID":74328,"Label":"6115-74328 via Unknown from 74329 -> 74330","Type":"Unknown","Directional":false,"Links":[{"SourceID":74329,"TargetID":74330,"Directional":false}]},{"ID":3851,"SourceStructureID":74402,"TargetStructureID":6115,"Label":"74402-6115 via Adherens from 74405 -> 74406","Type":"Adherens","Directional":false,"Links":[{"SourceID":74405,"TargetID":74406,"Directional":false}]},{"ID":3852,"SourceStructureID":74469,"TargetStructureID":6115,"Label":"74469-6115 via Adherens from 134245 -> 134244","Type":"Adherens","Directional":false,"Links":[{"SourceID":134245,"TargetID":134244,"Directional":false}]},{"ID":3853,"SourceStructureID":6115,"TargetStructureID":74471,"Label":"6115-74471 via Unknown from 75871 -> 75872","Type":"Unknown","Directional":false,"Links":[{"SourceID":75871,"TargetID":75872,"Directional":false}]},{"ID":3854,"SourceStructureID":74485,"TargetStructureID":6115,"Label":"74485-6115 via Unknown from 134267 -> 75875","Type":"Unknown","Directional":false,"Links":[{"SourceID":134267,"TargetID":75875,"Directional":false}]},{"ID":3855,"SourceStructureID":6115,"TargetStructureID":74489,"Label":"6115-74489 via Unknown from 75876 -> 75877","Type":"Unknown","Directional":false,"Links":[{"SourceID":75876,"TargetID":75877,"Directional":false}]},{"ID":3856,"SourceStructureID":6115,"TargetStructureID":74502,"Label":"6115-74502 via Adherens from 74504 -> 74503","Type":"Adherens","Directional":false,"Links":[{"SourceID":74504,"TargetID":74503,"Directional":false}]},{"ID":3857,"SourceStructureID":74508,"TargetStructureID":6115,"Label":"74508-6115 via Adherens from 74510 -> 74509","Type":"Adherens","Directional":false,"Links":[{"SourceID":74510,"TargetID":74509,"Directional":false}]},{"ID":3858,"SourceStructureID":74511,"TargetStructureID":6115,"Label":"74511-6115 via Adherens from 74541 -> 74542","Type":"Adherens","Directional":false,"Links":[{"SourceID":74541,"TargetID":74542,"Directional":false}]},{"ID":3859,"SourceStructureID":6115,"TargetStructureID":74545,"Label":"6115-74545 via Unknown from 74544 -> 74546","Type":"Unknown","Directional":false,"Links":[{"SourceID":74544,"TargetID":74546,"Directional":false}]},{"ID":3860,"SourceStructureID":74655,"TargetStructureID":6115,"Label":"74655-6115 via Adherens from 74656 -> 74657","Type":"Adherens","Directional":false,"Links":[{"SourceID":74656,"TargetID":74657,"Directional":false}]},{"ID":3861,"SourceStructureID":74687,"TargetStructureID":6115,"Label":"74687-6115 via Unknown from 74692 -> 74693, 74758 -> 74757","Type":"Unknown","Directional":false,"Links":[{"SourceID":74692,"TargetID":74693,"Directional":false},{"SourceID":74758,"TargetID":74757,"Directional":false}]},{"ID":3862,"SourceStructureID":6115,"TargetStructureID":74699,"Label":"6115-74699 via Unknown from 74789 -> 76190","Type":"Unknown","Directional":false,"Links":[{"SourceID":74789,"TargetID":76190,"Directional":false}]},{"ID":3863,"SourceStructureID":6115,"TargetStructureID":74706,"Label":"6115-74706 via Unknown from 74709 -> 74710","Type":"Unknown","Directional":false,"Links":[{"SourceID":74709,"TargetID":74710,"Directional":false}]},{"ID":3864,"SourceStructureID":6115,"TargetStructureID":74714,"Label":"6115-74714 via Adherens from 74716 -> 74717","Type":"Adherens","Directional":false,"Links":[{"SourceID":74716,"TargetID":74717,"Directional":false}]},{"ID":3865,"SourceStructureID":6115,"TargetStructureID":74749,"Label":"6115-74749 via Adherens from 74752 -> 74753","Type":"Adherens","Directional":false,"Links":[{"SourceID":74752,"TargetID":74753,"Directional":false}]},{"ID":3866,"SourceStructureID":6115,"TargetStructureID":74756,"Label":"6115-74756 via Unknown from 74759 -> 74760","Type":"Unknown","Directional":false,"Links":[{"SourceID":74759,"TargetID":74760,"Directional":false}]},{"ID":3867,"SourceStructureID":6115,"TargetStructureID":74775,"Label":"6115-74775 via Unknown from 134248 -> 134247","Type":"Unknown","Directional":false,"Links":[{"SourceID":134248,"TargetID":134247,"Directional":false}]},{"ID":3868,"SourceStructureID":6115,"TargetStructureID":74783,"Label":"6115-74783 via Unknown from 74782 -> 74784","Type":"Unknown","Directional":false,"Links":[{"SourceID":74782,"TargetID":74784,"Directional":false}]},{"ID":3869,"SourceStructureID":6115,"TargetStructureID":74797,"Label":"6115-74797 via Unknown from 74796 -> 134249","Type":"Unknown","Directional":false,"Links":[{"SourceID":74796,"TargetID":134249,"Directional":false}]},{"ID":3870,"SourceStructureID":6115,"TargetStructureID":74807,"Label":"6115-74807 via Unknown from 74808 -> 74809","Type":"Unknown","Directional":false,"Links":[{"SourceID":74808,"TargetID":74809,"Directional":false}]},{"ID":3871,"SourceStructureID":6115,"TargetStructureID":74812,"Label":"6115-74812 via Unknown from 74813 -> 74814","Type":"Unknown","Directional":false,"Links":[{"SourceID":74813,"TargetID":74814,"Directional":false}]},{"ID":3872,"SourceStructureID":74830,"TargetStructureID":6115,"Label":"74830-6115 via Adherens from 80917 -> 80918","Type":"Adherens","Directional":false,"Links":[{"SourceID":80917,"TargetID":80918,"Directional":false}]},{"ID":3873,"SourceStructureID":74834,"TargetStructureID":6115,"Label":"74834-6115 via Adherens from 135170 -> 135169","Type":"Adherens","Directional":false,"Links":[{"SourceID":135170,"TargetID":135169,"Directional":false}]},{"ID":3874,"SourceStructureID":74846,"TargetStructureID":6115,"Label":"74846-6115 via Adherens from 74847 -> 74848","Type":"Adherens","Directional":false,"Links":[{"SourceID":74847,"TargetID":74848,"Directional":false}]},{"ID":3875,"SourceStructureID":6115,"TargetStructureID":74994,"Label":"6115-74994 via Adherens from 74996 -> 74997","Type":"Adherens","Directional":false,"Links":[{"SourceID":74996,"TargetID":74997,"Directional":false}]},{"ID":3876,"SourceStructureID":75078,"TargetStructureID":6115,"Label":"75078-6115 via Unknown from 135308 -> 134250","Type":"Unknown","Directional":false,"Links":[{"SourceID":135308,"TargetID":134250,"Directional":false}]},{"ID":3877,"SourceStructureID":6115,"TargetStructureID":75099,"Label":"6115-75099 via Unknown from 75100 -> 80954","Type":"Unknown","Directional":false,"Links":[{"SourceID":75100,"TargetID":80954,"Directional":false}]},{"ID":3878,"SourceStructureID":6115,"TargetStructureID":75141,"Label":"6115-75141 via Unknown from 75142 -> 80955","Type":"Unknown","Directional":false,"Links":[{"SourceID":75142,"TargetID":80955,"Directional":false}]},{"ID":3879,"SourceStructureID":75144,"TargetStructureID":6115,"Label":"75144-6115 via Adherens from 75145 -> 75143","Type":"Adherens","Directional":false,"Links":[{"SourceID":75145,"TargetID":75143,"Directional":false}]},{"ID":3880,"SourceStructureID":75150,"TargetStructureID":6115,"Label":"75150-6115 via Adherens from 75151 -> 75152","Type":"Adherens","Directional":false,"Links":[{"SourceID":75151,"TargetID":75152,"Directional":false}]},{"ID":3881,"SourceStructureID":6115,"TargetStructureID":75189,"Label":"6115-75189 via Unknown from 75203 -> 75204","Type":"Unknown","Directional":false,"Links":[{"SourceID":75203,"TargetID":75204,"Directional":false}]},{"ID":3882,"SourceStructureID":6115,"TargetStructureID":75199,"Label":"6115-75199 via Adherens from 75198 -> 75200","Type":"Adherens","Directional":false,"Links":[{"SourceID":75198,"TargetID":75200,"Directional":false}]},{"ID":3883,"SourceStructureID":75205,"TargetStructureID":6115,"Label":"75205-6115 via Adherens from 116714 -> 80929","Type":"Adherens","Directional":false,"Links":[{"SourceID":116714,"TargetID":80929,"Directional":false}]},{"ID":3884,"SourceStructureID":6115,"TargetStructureID":75223,"Label":"6115-75223 via Adherens from 75222 -> 75224","Type":"Adherens","Directional":false,"Links":[{"SourceID":75222,"TargetID":75224,"Directional":false}]},{"ID":3885,"SourceStructureID":6115,"TargetStructureID":75257,"Label":"6115-75257 via Unknown from 75258 -> 75259","Type":"Unknown","Directional":false,"Links":[{"SourceID":75258,"TargetID":75259,"Directional":false}]},{"ID":3886,"SourceStructureID":6115,"TargetStructureID":75263,"Label":"6115-75263 via Adherens from 75265 -> 75264","Type":"Adherens","Directional":false,"Links":[{"SourceID":75265,"TargetID":75264,"Directional":false}]},{"ID":3887,"SourceStructureID":75429,"TargetStructureID":6115,"Label":"75429-6115 via Adherens from 75430 -> 75431","Type":"Adherens","Directional":false,"Links":[{"SourceID":75430,"TargetID":75431,"Directional":false}]},{"ID":3888,"SourceStructureID":6115,"TargetStructureID":75442,"Label":"6115-75442 via Adherens from 75443 -> 75444","Type":"Adherens","Directional":false,"Links":[{"SourceID":75443,"TargetID":75444,"Directional":false}]},{"ID":3889,"SourceStructureID":6115,"TargetStructureID":75474,"Label":"6115-75474 via Adherens from 134260 -> 134261","Type":"Adherens","Directional":false,"Links":[{"SourceID":134260,"TargetID":134261,"Directional":false}]},{"ID":3890,"SourceStructureID":75564,"TargetStructureID":6115,"Label":"75564-6115 via Adherens from 75565 -> 75566","Type":"Adherens","Directional":false,"Links":[{"SourceID":75565,"TargetID":75566,"Directional":false}]},{"ID":3891,"SourceStructureID":6115,"TargetStructureID":75603,"Label":"6115-75603 via Unknown from 75602 -> 75604","Type":"Unknown","Directional":false,"Links":[{"SourceID":75602,"TargetID":75604,"Directional":false}]},{"ID":3892,"SourceStructureID":75615,"TargetStructureID":6115,"Label":"75615-6115 via Adherens from 75616 -> 75617, 75618 -> 75619","Type":"Adherens","Directional":false,"Links":[{"SourceID":75616,"TargetID":75617,"Directional":false},{"SourceID":75618,"TargetID":75619,"Directional":false}]},{"ID":3893,"SourceStructureID":75848,"TargetStructureID":6115,"Label":"75848-6115 via Adherens from 75849 -> 75850","Type":"Adherens","Directional":false,"Links":[{"SourceID":75849,"TargetID":75850,"Directional":false}]},{"ID":3894,"SourceStructureID":75885,"TargetStructureID":6115,"Label":"75885-6115 via Adherens from 75886 -> 75884","Type":"Adherens","Directional":false,"Links":[{"SourceID":75886,"TargetID":75884,"Directional":false}]},{"ID":3895,"SourceStructureID":6115,"TargetStructureID":75953,"Label":"6115-75953 via Adherens from 75952 -> 75954","Type":"Adherens","Directional":false,"Links":[{"SourceID":75952,"TargetID":75954,"Directional":false}]},{"ID":3896,"SourceStructureID":6115,"TargetStructureID":75965,"Label":"6115-75965 via Adherens from 75964 -> 75966","Type":"Adherens","Directional":false,"Links":[{"SourceID":75964,"TargetID":75966,"Directional":false}]},{"ID":3897,"SourceStructureID":6115,"TargetStructureID":75968,"Label":"6115-75968 via Unknown from 75967 -> 75969","Type":"Unknown","Directional":false,"Links":[{"SourceID":75967,"TargetID":75969,"Directional":false}]},{"ID":3898,"SourceStructureID":6115,"TargetStructureID":75976,"Label":"6115-75976 via Unknown from 75975 -> 75977","Type":"Unknown","Directional":false,"Links":[{"SourceID":75975,"TargetID":75977,"Directional":false}]},{"ID":3899,"SourceStructureID":6115,"TargetStructureID":75988,"Label":"6115-75988 via Unknown from 75987 -> 75989","Type":"Unknown","Directional":false,"Links":[{"SourceID":75987,"TargetID":75989,"Directional":false}]},{"ID":3900,"SourceStructureID":6115,"TargetStructureID":76029,"Label":"6115-76029 via Adherens from 76028 -> 76030","Type":"Adherens","Directional":false,"Links":[{"SourceID":76028,"TargetID":76030,"Directional":false}]},{"ID":3901,"SourceStructureID":76034,"TargetStructureID":6115,"Label":"76034-6115 via Unknown from 76035 -> 76033","Type":"Unknown","Directional":false,"Links":[{"SourceID":76035,"TargetID":76033,"Directional":false}]},{"ID":3902,"SourceStructureID":76095,"TargetStructureID":6115,"Label":"76095-6115 via Unknown from 76100 -> 76099","Type":"Unknown","Directional":false,"Links":[{"SourceID":76100,"TargetID":76099,"Directional":false}]},{"ID":3903,"SourceStructureID":76137,"TargetStructureID":6115,"Label":"76137-6115 via Gap Junction from 76167 -> 76168","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":76167,"TargetID":76168,"Directional":false}]},{"ID":3904,"SourceStructureID":6115,"TargetStructureID":76161,"Label":"6115-76161 via Adherens from 76163 -> 76162","Type":"Adherens","Directional":false,"Links":[{"SourceID":76163,"TargetID":76162,"Directional":false}]},{"ID":3905,"SourceStructureID":6115,"TargetStructureID":77674,"Label":"6115-77674 via Adherens from 90647 -> 90649","Type":"Adherens","Directional":false,"Links":[{"SourceID":90647,"TargetID":90649,"Directional":false}]},{"ID":3906,"SourceStructureID":6115,"TargetStructureID":80912,"Label":"6115-80912 via Adherens from 80913 -> 80914","Type":"Adherens","Directional":false,"Links":[{"SourceID":80913,"TargetID":80914,"Directional":false}]},{"ID":3907,"SourceStructureID":6115,"TargetStructureID":80919,"Label":"6115-80919 via Adherens from 80921 -> 80920","Type":"Adherens","Directional":false,"Links":[{"SourceID":80921,"TargetID":80920,"Directional":false}]},{"ID":3908,"SourceStructureID":6115,"TargetStructureID":80935,"Label":"6115-80935 via Unknown from 73780 -> 80936","Type":"Unknown","Directional":false,"Links":[{"SourceID":73780,"TargetID":80936,"Directional":false}]},{"ID":3909,"SourceStructureID":6115,"TargetStructureID":80957,"Label":"6115-80957 via Adherens from 80956 -> 80958","Type":"Adherens","Directional":false,"Links":[{"SourceID":80956,"TargetID":80958,"Directional":false}]},{"ID":3910,"SourceStructureID":6115,"TargetStructureID":80957,"Label":"6115-80957 via Unknown from 75208 -> 80959","Type":"Unknown","Directional":false,"Links":[{"SourceID":75208,"TargetID":80959,"Directional":false}]},{"ID":3911,"SourceStructureID":6115,"TargetStructureID":80962,"Label":"6115-80962 via Unknown from 75556 -> 80963","Type":"Unknown","Directional":false,"Links":[{"SourceID":75556,"TargetID":80963,"Directional":false}]},{"ID":3912,"SourceStructureID":6115,"TargetStructureID":81153,"Label":"6115-81153 via Unknown from 75077 -> 81154","Type":"Unknown","Directional":false,"Links":[{"SourceID":75077,"TargetID":81154,"Directional":false}]},{"ID":3913,"SourceStructureID":6115,"TargetStructureID":81160,"Label":"6115-81160 via Unknown from 76023 -> 81161","Type":"Unknown","Directional":false,"Links":[{"SourceID":76023,"TargetID":81161,"Directional":false}]},{"ID":3914,"SourceStructureID":81165,"TargetStructureID":6115,"Label":"81165-6115 via Unknown from 81166 -> 75154","Type":"Unknown","Directional":false,"Links":[{"SourceID":81166,"TargetID":75154,"Directional":false}]},{"ID":3915,"SourceStructureID":6115,"TargetStructureID":81167,"Label":"6115-81167 via Unknown from 74533 -> 81168","Type":"Unknown","Directional":false,"Links":[{"SourceID":74533,"TargetID":81168,"Directional":false}]},{"ID":3916,"SourceStructureID":81169,"TargetStructureID":6115,"Label":"81169-6115 via Unknown from 81170 -> 75093, 135163 -> 135164","Type":"Unknown","Directional":false,"Links":[{"SourceID":81170,"TargetID":75093,"Directional":false},{"SourceID":135163,"TargetID":135164,"Directional":false}]},{"ID":3917,"SourceStructureID":81350,"TargetStructureID":6115,"Label":"81350-6115 via Unknown from 82371 -> 81351","Type":"Unknown","Directional":false,"Links":[{"SourceID":82371,"TargetID":81351,"Directional":false}]},{"ID":3918,"SourceStructureID":82566,"TargetStructureID":6115,"Label":"82566-6115 via Unknown from 82567 -> 74477","Type":"Unknown","Directional":false,"Links":[{"SourceID":82567,"TargetID":74477,"Directional":false}]},{"ID":3919,"SourceStructureID":6115,"TargetStructureID":82644,"Label":"6115-82644 via Unknown from 90632 -> 90633","Type":"Unknown","Directional":false,"Links":[{"SourceID":90632,"TargetID":90633,"Directional":false}]},{"ID":3920,"SourceStructureID":6115,"TargetStructureID":82653,"Label":"6115-82653 via Adherens from 90628 -> 90629","Type":"Adherens","Directional":false,"Links":[{"SourceID":90628,"TargetID":90629,"Directional":false}]},{"ID":3921,"SourceStructureID":6115,"TargetStructureID":82969,"Label":"6115-82969 via Unknown from 72242 -> 82970","Type":"Unknown","Directional":false,"Links":[{"SourceID":72242,"TargetID":82970,"Directional":false}]},{"ID":3922,"SourceStructureID":90631,"TargetStructureID":6115,"Label":"90631-6115 via Unknown from 90639 -> 90640","Type":"Unknown","Directional":false,"Links":[{"SourceID":90639,"TargetID":90640,"Directional":false}]},{"ID":3923,"SourceStructureID":90645,"TargetStructureID":6115,"Label":"90645-6115 via Adherens from 90646 -> 90644","Type":"Adherens","Directional":false,"Links":[{"SourceID":90646,"TargetID":90644,"Directional":false}]},{"ID":3924,"SourceStructureID":6117,"TargetStructureID":6117,"Label":"6117-6117 via Gap Junction from 134146 -> 134145","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134146,"TargetID":134145,"Directional":false}]},{"ID":3925,"SourceStructureID":6169,"TargetStructureID":6117,"Label":"6169-6117 via Gap Junction from 20565 -> 20566, 24645 -> 20580, 59087 -> 59084, 86222 -> 86223, 92385 -> 92386","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20565,"TargetID":20566,"Directional":false},{"SourceID":24645,"TargetID":20580,"Directional":false},{"SourceID":59087,"TargetID":59084,"Directional":false},{"SourceID":86222,"TargetID":86223,"Directional":false},{"SourceID":92385,"TargetID":92386,"Directional":false}]},{"ID":3926,"SourceStructureID":7024,"TargetStructureID":6117,"Label":"7024-6117 via Gap Junction from 45119 -> 30873","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45119,"TargetID":30873,"Directional":false}]},{"ID":3927,"SourceStructureID":7113,"TargetStructureID":6117,"Label":"7113-6117 via Gap Junction from 58790 -> 58789","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58790,"TargetID":58789,"Directional":false}]},{"ID":3928,"SourceStructureID":6117,"TargetStructureID":7594,"Label":"6117-7594 via Adherens from 83914 -> 83915","Type":"Adherens","Directional":false,"Links":[{"SourceID":83914,"TargetID":83915,"Directional":false}]},{"ID":3929,"SourceStructureID":9769,"TargetStructureID":6117,"Label":"9769-6117 via Adherens from 84243 -> 84242","Type":"Adherens","Directional":false,"Links":[{"SourceID":84243,"TargetID":84242,"Directional":false}]},{"ID":3930,"SourceStructureID":9769,"TargetStructureID":6117,"Label":"9769-6117 via Unknown from 83143 -> 83142, 84172 -> 84168, 84386 -> 84385, 84638 -> 84637","Type":"Unknown","Directional":false,"Links":[{"SourceID":83143,"TargetID":83142,"Directional":false},{"SourceID":84172,"TargetID":84168,"Directional":false},{"SourceID":84386,"TargetID":84385,"Directional":false},{"SourceID":84638,"TargetID":84637,"Directional":false}]},{"ID":3931,"SourceStructureID":6117,"TargetStructureID":20136,"Label":"6117-20136 via Adherens from 86095 -> 86096","Type":"Adherens","Directional":false,"Links":[{"SourceID":86095,"TargetID":86096,"Directional":false}]},{"ID":3932,"SourceStructureID":6117,"TargetStructureID":20136,"Label":"6117-20136 via Gap Junction from 83961 -> 83962, 83969 -> 83970, 83983 -> 83984, 134141 -> 134142","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83961,"TargetID":83962,"Directional":false},{"SourceID":83969,"TargetID":83970,"Directional":false},{"SourceID":83983,"TargetID":83984,"Directional":false},{"SourceID":134141,"TargetID":134142,"Directional":false}]},{"ID":3933,"SourceStructureID":32035,"TargetStructureID":6117,"Label":"32035-6117 via Adherens from 32039 -> 10531, 86085 -> 86351, 86266 -> 86267","Type":"Adherens","Directional":false,"Links":[{"SourceID":32039,"TargetID":10531,"Directional":false},{"SourceID":86085,"TargetID":86351,"Directional":false},{"SourceID":86266,"TargetID":86267,"Directional":false}]},{"ID":3934,"SourceStructureID":6117,"TargetStructureID":32035,"Label":"6117-32035 via Unknown from 86019 -> 86020","Type":"Unknown","Directional":false,"Links":[{"SourceID":86019,"TargetID":86020,"Directional":false}]},{"ID":3935,"SourceStructureID":6117,"TargetStructureID":35240,"Label":"6117-35240 via Adherens from 86471 -> 86472","Type":"Adherens","Directional":false,"Links":[{"SourceID":86471,"TargetID":86472,"Directional":false}]},{"ID":3936,"SourceStructureID":35240,"TargetStructureID":6117,"Label":"35240-6117 via Unknown from 86460 -> 86461, 86478 -> 86477","Type":"Unknown","Directional":false,"Links":[{"SourceID":86460,"TargetID":86461,"Directional":false},{"SourceID":86478,"TargetID":86477,"Directional":false}]},{"ID":3937,"SourceStructureID":6117,"TargetStructureID":35975,"Label":"6117-35975 via Unknown from 84977 -> 84979","Type":"Unknown","Directional":false,"Links":[{"SourceID":84977,"TargetID":84979,"Directional":false}]},{"ID":3938,"SourceStructureID":6117,"TargetStructureID":39957,"Label":"6117-39957 via Unknown from 86104 -> 86103","Type":"Unknown","Directional":false,"Links":[{"SourceID":86104,"TargetID":86103,"Directional":false}]},{"ID":3939,"SourceStructureID":40037,"TargetStructureID":6117,"Label":"40037-6117 via Unknown from 86021 -> 86022","Type":"Unknown","Directional":false,"Links":[{"SourceID":86021,"TargetID":86022,"Directional":false}]},{"ID":3940,"SourceStructureID":6117,"TargetStructureID":40039,"Label":"6117-40039 via Adherens from 86379 -> 86380","Type":"Adherens","Directional":false,"Links":[{"SourceID":86379,"TargetID":86380,"Directional":false}]},{"ID":3941,"SourceStructureID":40602,"TargetStructureID":6117,"Label":"40602-6117 via Adherens from 86417 -> 86416","Type":"Adherens","Directional":false,"Links":[{"SourceID":86417,"TargetID":86416,"Directional":false}]},{"ID":3942,"SourceStructureID":40602,"TargetStructureID":6117,"Label":"40602-6117 via Unknown from 86433 -> 86434","Type":"Unknown","Directional":false,"Links":[{"SourceID":86433,"TargetID":86434,"Directional":false}]},{"ID":3943,"SourceStructureID":6117,"TargetStructureID":45220,"Label":"6117-45220 via Adherens from 86507 -> 86508","Type":"Adherens","Directional":false,"Links":[{"SourceID":86507,"TargetID":86508,"Directional":false}]},{"ID":3944,"SourceStructureID":6117,"TargetStructureID":54881,"Label":"6117-54881 via Adherens from 86297 -> 86296","Type":"Adherens","Directional":false,"Links":[{"SourceID":86297,"TargetID":86296,"Directional":false}]},{"ID":3945,"SourceStructureID":6117,"TargetStructureID":58592,"Label":"6117-58592 via Unknown from 84941 -> 84939, 86491 -> 86492","Type":"Unknown","Directional":false,"Links":[{"SourceID":84941,"TargetID":84939,"Directional":false},{"SourceID":86491,"TargetID":86492,"Directional":false}]},{"ID":3946,"SourceStructureID":58691,"TargetStructureID":6117,"Label":"58691-6117 via Adherens from 84933 -> 84934, 84954 -> 84955","Type":"Adherens","Directional":false,"Links":[{"SourceID":84933,"TargetID":84934,"Directional":false},{"SourceID":84954,"TargetID":84955,"Directional":false}]},{"ID":3947,"SourceStructureID":6117,"TargetStructureID":58691,"Label":"6117-58691 via Unknown from 84872 -> 84871","Type":"Unknown","Directional":false,"Links":[{"SourceID":84872,"TargetID":84871,"Directional":false}]},{"ID":3948,"SourceStructureID":6117,"TargetStructureID":58714,"Label":"6117-58714 via Adherens from 86109 -> 86108, 86184 -> 86185, 86188 -> 86187, 86190 -> 86191, 86411 -> 86410","Type":"Adherens","Directional":false,"Links":[{"SourceID":86109,"TargetID":86108,"Directional":false},{"SourceID":86184,"TargetID":86185,"Directional":false},{"SourceID":86188,"TargetID":86187,"Directional":false},{"SourceID":86190,"TargetID":86191,"Directional":false},{"SourceID":86411,"TargetID":86410,"Directional":false}]},{"ID":3949,"SourceStructureID":6117,"TargetStructureID":58714,"Label":"6117-58714 via Unknown from 86156 -> 86157, 86160 -> 86161","Type":"Unknown","Directional":false,"Links":[{"SourceID":86156,"TargetID":86157,"Directional":false},{"SourceID":86160,"TargetID":86161,"Directional":false}]},{"ID":3950,"SourceStructureID":6117,"TargetStructureID":58757,"Label":"6117-58757 via Adherens from 86500 -> 86501","Type":"Adherens","Directional":false,"Links":[{"SourceID":86500,"TargetID":86501,"Directional":false}]},{"ID":3951,"SourceStructureID":6117,"TargetStructureID":58777,"Label":"6117-58777 via Adherens from 86510 -> 86509, 86522 -> 86523, 86560 -> 86561","Type":"Adherens","Directional":false,"Links":[{"SourceID":86510,"TargetID":86509,"Directional":false},{"SourceID":86522,"TargetID":86523,"Directional":false},{"SourceID":86560,"TargetID":86561,"Directional":false}]},{"ID":3952,"SourceStructureID":6117,"TargetStructureID":58777,"Label":"6117-58777 via Unknown from 86520 -> 86521","Type":"Unknown","Directional":false,"Links":[{"SourceID":86520,"TargetID":86521,"Directional":false}]},{"ID":3953,"SourceStructureID":61897,"TargetStructureID":6117,"Label":"61897-6117 via Unknown from 83221 -> 83220","Type":"Unknown","Directional":false,"Links":[{"SourceID":83221,"TargetID":83220,"Directional":false}]},{"ID":3954,"SourceStructureID":68691,"TargetStructureID":6117,"Label":"68691-6117 via Unknown from 84159 -> 84157","Type":"Unknown","Directional":false,"Links":[{"SourceID":84159,"TargetID":84157,"Directional":false}]},{"ID":3955,"SourceStructureID":6117,"TargetStructureID":70469,"Label":"6117-70469 via Adherens from 83138 -> 83141","Type":"Adherens","Directional":false,"Links":[{"SourceID":83138,"TargetID":83141,"Directional":false}]},{"ID":3956,"SourceStructureID":70653,"TargetStructureID":6117,"Label":"70653-6117 via Unknown from 86363 -> 86364","Type":"Unknown","Directional":false,"Links":[{"SourceID":86363,"TargetID":86364,"Directional":false}]},{"ID":3957,"SourceStructureID":75578,"TargetStructureID":6117,"Label":"75578-6117 via Unknown from 75585 -> 83187","Type":"Unknown","Directional":false,"Links":[{"SourceID":75585,"TargetID":83187,"Directional":false}]},{"ID":3958,"SourceStructureID":6117,"TargetStructureID":83133,"Label":"6117-83133 via Unknown from 83132 -> 83134, 83136 -> 83137","Type":"Unknown","Directional":false,"Links":[{"SourceID":83132,"TargetID":83134,"Directional":false},{"SourceID":83136,"TargetID":83137,"Directional":false}]},{"ID":3959,"SourceStructureID":83155,"TargetStructureID":6117,"Label":"83155-6117 via Unknown from 83156 -> 83154","Type":"Unknown","Directional":false,"Links":[{"SourceID":83156,"TargetID":83154,"Directional":false}]},{"ID":3960,"SourceStructureID":6117,"TargetStructureID":83226,"Label":"6117-83226 via Unknown from 83225 -> 83227","Type":"Unknown","Directional":false,"Links":[{"SourceID":83225,"TargetID":83227,"Directional":false}]},{"ID":3961,"SourceStructureID":6117,"TargetStructureID":83229,"Label":"6117-83229 via Unknown from 83230 -> 83231","Type":"Unknown","Directional":false,"Links":[{"SourceID":83230,"TargetID":83231,"Directional":false}]},{"ID":3962,"SourceStructureID":6117,"TargetStructureID":83234,"Label":"6117-83234 via Unknown from 134139 -> 83235","Type":"Unknown","Directional":false,"Links":[{"SourceID":134139,"TargetID":83235,"Directional":false}]},{"ID":3963,"SourceStructureID":83264,"TargetStructureID":6117,"Label":"83264-6117 via Unknown from 83265 -> 83263","Type":"Unknown","Directional":false,"Links":[{"SourceID":83265,"TargetID":83263,"Directional":false}]},{"ID":3964,"SourceStructureID":83921,"TargetStructureID":6117,"Label":"83921-6117 via Unknown from 83926 -> 83927","Type":"Unknown","Directional":false,"Links":[{"SourceID":83926,"TargetID":83927,"Directional":false}]},{"ID":3965,"SourceStructureID":6117,"TargetStructureID":83954,"Label":"6117-83954 via Adherens from 83953 -> 83955","Type":"Adherens","Directional":false,"Links":[{"SourceID":83953,"TargetID":83955,"Directional":false}]},{"ID":3966,"SourceStructureID":84170,"TargetStructureID":6117,"Label":"84170-6117 via Unknown from 84171 -> 84169","Type":"Unknown","Directional":false,"Links":[{"SourceID":84171,"TargetID":84169,"Directional":false}]},{"ID":3967,"SourceStructureID":6117,"TargetStructureID":84181,"Label":"6117-84181 via Unknown from 84191 -> 84192","Type":"Unknown","Directional":false,"Links":[{"SourceID":84191,"TargetID":84192,"Directional":false}]},{"ID":3968,"SourceStructureID":6117,"TargetStructureID":84193,"Label":"6117-84193 via Adherens from 84196 -> 84197","Type":"Adherens","Directional":false,"Links":[{"SourceID":84196,"TargetID":84197,"Directional":false}]},{"ID":3969,"SourceStructureID":6117,"TargetStructureID":84235,"Label":"6117-84235 via Adherens from 84234 -> 84236","Type":"Adherens","Directional":false,"Links":[{"SourceID":84234,"TargetID":84236,"Directional":false}]},{"ID":3970,"SourceStructureID":6117,"TargetStructureID":84656,"Label":"6117-84656 via Unknown from 84655 -> 84657","Type":"Unknown","Directional":false,"Links":[{"SourceID":84655,"TargetID":84657,"Directional":false}]},{"ID":3971,"SourceStructureID":84782,"TargetStructureID":6117,"Label":"84782-6117 via Unknown from 84785 -> 84784","Type":"Unknown","Directional":false,"Links":[{"SourceID":84785,"TargetID":84784,"Directional":false}]},{"ID":3972,"SourceStructureID":84790,"TargetStructureID":6117,"Label":"84790-6117 via Adherens from 84850 -> 84851, 84854 -> 84855, 86008 -> 86009","Type":"Adherens","Directional":false,"Links":[{"SourceID":84850,"TargetID":84851,"Directional":false},{"SourceID":84854,"TargetID":84855,"Directional":false},{"SourceID":86008,"TargetID":86009,"Directional":false}]},{"ID":3973,"SourceStructureID":84790,"TargetStructureID":6117,"Label":"84790-6117 via Unknown from 84852 -> 84853","Type":"Unknown","Directional":false,"Links":[{"SourceID":84852,"TargetID":84853,"Directional":false}]},{"ID":3974,"SourceStructureID":6117,"TargetStructureID":84858,"Label":"6117-84858 via Unknown from 84869 -> 84868","Type":"Unknown","Directional":false,"Links":[{"SourceID":84869,"TargetID":84868,"Directional":false}]},{"ID":3975,"SourceStructureID":6117,"TargetStructureID":84937,"Label":"6117-84937 via Adherens from 84936 -> 84938","Type":"Adherens","Directional":false,"Links":[{"SourceID":84936,"TargetID":84938,"Directional":false}]},{"ID":3976,"SourceStructureID":6117,"TargetStructureID":84957,"Label":"6117-84957 via Adherens from 84956 -> 84958","Type":"Adherens","Directional":false,"Links":[{"SourceID":84956,"TargetID":84958,"Directional":false}]},{"ID":3977,"SourceStructureID":6117,"TargetStructureID":84971,"Label":"6117-84971 via Adherens from 84970 -> 84972","Type":"Adherens","Directional":false,"Links":[{"SourceID":84970,"TargetID":84972,"Directional":false}]},{"ID":3978,"SourceStructureID":84983,"TargetStructureID":6117,"Label":"84983-6117 via Unknown from 84990 -> 84991","Type":"Unknown","Directional":false,"Links":[{"SourceID":84990,"TargetID":84991,"Directional":false}]},{"ID":3979,"SourceStructureID":84988,"TargetStructureID":6117,"Label":"84988-6117 via Unknown from 84989 -> 84987","Type":"Unknown","Directional":false,"Links":[{"SourceID":84989,"TargetID":84987,"Directional":false}]},{"ID":3980,"SourceStructureID":6117,"TargetStructureID":84995,"Label":"6117-84995 via Unknown from 84996 -> 84997","Type":"Unknown","Directional":false,"Links":[{"SourceID":84996,"TargetID":84997,"Directional":false}]},{"ID":3981,"SourceStructureID":6117,"TargetStructureID":85002,"Label":"6117-85002 via Adherens from 85001 -> 85003","Type":"Adherens","Directional":false,"Links":[{"SourceID":85001,"TargetID":85003,"Directional":false}]},{"ID":3982,"SourceStructureID":85009,"TargetStructureID":6117,"Label":"85009-6117 via Unknown from 85010 -> 85011","Type":"Unknown","Directional":false,"Links":[{"SourceID":85010,"TargetID":85011,"Directional":false}]},{"ID":3983,"SourceStructureID":85018,"TargetStructureID":6117,"Label":"85018-6117 via Unknown from 85020 -> 85021","Type":"Unknown","Directional":false,"Links":[{"SourceID":85020,"TargetID":85021,"Directional":false}]},{"ID":3984,"SourceStructureID":6117,"TargetStructureID":85219,"Label":"6117-85219 via Unknown from 85229 -> 85227","Type":"Unknown","Directional":false,"Links":[{"SourceID":85229,"TargetID":85227,"Directional":false}]},{"ID":3985,"SourceStructureID":6117,"TargetStructureID":85235,"Label":"6117-85235 via Adherens from 85237 -> 85236","Type":"Adherens","Directional":false,"Links":[{"SourceID":85237,"TargetID":85236,"Directional":false}]},{"ID":3986,"SourceStructureID":6117,"TargetStructureID":85266,"Label":"6117-85266 via Unknown from 85291 -> 85292","Type":"Unknown","Directional":false,"Links":[{"SourceID":85291,"TargetID":85292,"Directional":false}]},{"ID":3987,"SourceStructureID":6117,"TargetStructureID":85293,"Label":"6117-85293 via Unknown from 85296 -> 85295","Type":"Unknown","Directional":false,"Links":[{"SourceID":85296,"TargetID":85295,"Directional":false}]},{"ID":3988,"SourceStructureID":85298,"TargetStructureID":6117,"Label":"85298-6117 via Unknown from 85300 -> 85299","Type":"Unknown","Directional":false,"Links":[{"SourceID":85300,"TargetID":85299,"Directional":false}]},{"ID":3989,"SourceStructureID":6117,"TargetStructureID":85307,"Label":"6117-85307 via Unknown from 85306 -> 85308","Type":"Unknown","Directional":false,"Links":[{"SourceID":85306,"TargetID":85308,"Directional":false}]},{"ID":3990,"SourceStructureID":6117,"TargetStructureID":85435,"Label":"6117-85435 via Adherens from 85432 -> 85437","Type":"Adherens","Directional":false,"Links":[{"SourceID":85432,"TargetID":85437,"Directional":false}]},{"ID":3991,"SourceStructureID":6117,"TargetStructureID":85661,"Label":"6117-85661 via Adherens from 85871 -> 85872","Type":"Adherens","Directional":false,"Links":[{"SourceID":85871,"TargetID":85872,"Directional":false}]},{"ID":3992,"SourceStructureID":6117,"TargetStructureID":85661,"Label":"6117-85661 via Unknown from 85664 -> 85665","Type":"Unknown","Directional":false,"Links":[{"SourceID":85664,"TargetID":85665,"Directional":false}]},{"ID":3993,"SourceStructureID":85831,"TargetStructureID":6117,"Label":"85831-6117 via Unknown from 85832 -> 85833","Type":"Unknown","Directional":false,"Links":[{"SourceID":85832,"TargetID":85833,"Directional":false}]},{"ID":3994,"SourceStructureID":6117,"TargetStructureID":85906,"Label":"6117-85906 via Unknown from 85950 -> 85951","Type":"Unknown","Directional":false,"Links":[{"SourceID":85950,"TargetID":85951,"Directional":false}]},{"ID":3995,"SourceStructureID":6117,"TargetStructureID":85928,"Label":"6117-85928 via Adherens from 85930 -> 85929","Type":"Adherens","Directional":false,"Links":[{"SourceID":85930,"TargetID":85929,"Directional":false}]},{"ID":3996,"SourceStructureID":85932,"TargetStructureID":6117,"Label":"85932-6117 via Unknown from 85936 -> 85935","Type":"Unknown","Directional":false,"Links":[{"SourceID":85936,"TargetID":85935,"Directional":false}]},{"ID":3997,"SourceStructureID":6117,"TargetStructureID":85937,"Label":"6117-85937 via Adherens from 85939 -> 85938","Type":"Adherens","Directional":false,"Links":[{"SourceID":85939,"TargetID":85938,"Directional":false}]},{"ID":3998,"SourceStructureID":85941,"TargetStructureID":6117,"Label":"85941-6117 via Unknown from 85942 -> 85940","Type":"Unknown","Directional":false,"Links":[{"SourceID":85942,"TargetID":85940,"Directional":false}]},{"ID":3999,"SourceStructureID":6117,"TargetStructureID":85958,"Label":"6117-85958 via Unknown from 85968 -> 85969","Type":"Unknown","Directional":false,"Links":[{"SourceID":85968,"TargetID":85969,"Directional":false}]},{"ID":4000,"SourceStructureID":6117,"TargetStructureID":85974,"Label":"6117-85974 via Unknown from 85977 -> 85978","Type":"Unknown","Directional":false,"Links":[{"SourceID":85977,"TargetID":85978,"Directional":false}]},{"ID":4001,"SourceStructureID":6117,"TargetStructureID":85991,"Label":"6117-85991 via Unknown from 85993 -> 85992, 86056 -> 86057","Type":"Unknown","Directional":false,"Links":[{"SourceID":85993,"TargetID":85992,"Directional":false},{"SourceID":86056,"TargetID":86057,"Directional":false}]},{"ID":4002,"SourceStructureID":6117,"TargetStructureID":86001,"Label":"6117-86001 via Unknown from 86000 -> 86007","Type":"Unknown","Directional":false,"Links":[{"SourceID":86000,"TargetID":86007,"Directional":false}]},{"ID":4003,"SourceStructureID":6117,"TargetStructureID":86026,"Label":"6117-86026 via Unknown from 86025 -> 86027, 86029 -> 86028","Type":"Unknown","Directional":false,"Links":[{"SourceID":86025,"TargetID":86027,"Directional":false},{"SourceID":86029,"TargetID":86028,"Directional":false}]},{"ID":4004,"SourceStructureID":6117,"TargetStructureID":86032,"Label":"6117-86032 via Unknown from 86031 -> 86033","Type":"Unknown","Directional":false,"Links":[{"SourceID":86031,"TargetID":86033,"Directional":false}]},{"ID":4005,"SourceStructureID":86036,"TargetStructureID":6117,"Label":"86036-6117 via Adherens from 86040 -> 86041","Type":"Adherens","Directional":false,"Links":[{"SourceID":86040,"TargetID":86041,"Directional":false}]},{"ID":4006,"SourceStructureID":6117,"TargetStructureID":86045,"Label":"6117-86045 via Unknown from 86044 -> 86049","Type":"Unknown","Directional":false,"Links":[{"SourceID":86044,"TargetID":86049,"Directional":false}]},{"ID":4007,"SourceStructureID":6117,"TargetStructureID":86050,"Label":"6117-86050 via Unknown from 86053 -> 86054","Type":"Unknown","Directional":false,"Links":[{"SourceID":86053,"TargetID":86054,"Directional":false}]},{"ID":4008,"SourceStructureID":86063,"TargetStructureID":6117,"Label":"86063-6117 via Unknown from 86064 -> 86062","Type":"Unknown","Directional":false,"Links":[{"SourceID":86064,"TargetID":86062,"Directional":false}]},{"ID":4009,"SourceStructureID":86098,"TargetStructureID":6117,"Label":"86098-6117 via Adherens from 86101 -> 86102","Type":"Adherens","Directional":false,"Links":[{"SourceID":86101,"TargetID":86102,"Directional":false}]},{"ID":4010,"SourceStructureID":6117,"TargetStructureID":86098,"Label":"6117-86098 via Unknown from 86097 -> 86099","Type":"Unknown","Directional":false,"Links":[{"SourceID":86097,"TargetID":86099,"Directional":false}]},{"ID":4011,"SourceStructureID":86106,"TargetStructureID":6117,"Label":"86106-6117 via Adherens from 86107 -> 86105","Type":"Adherens","Directional":false,"Links":[{"SourceID":86107,"TargetID":86105,"Directional":false}]},{"ID":4012,"SourceStructureID":6117,"TargetStructureID":86110,"Label":"6117-86110 via Adherens from 86154 -> 86155, 86159 -> 86158","Type":"Adherens","Directional":false,"Links":[{"SourceID":86154,"TargetID":86155,"Directional":false},{"SourceID":86159,"TargetID":86158,"Directional":false}]},{"ID":4013,"SourceStructureID":6117,"TargetStructureID":86110,"Label":"6117-86110 via Unknown from 86124 -> 86125","Type":"Unknown","Directional":false,"Links":[{"SourceID":86124,"TargetID":86125,"Directional":false}]},{"ID":4014,"SourceStructureID":6117,"TargetStructureID":86134,"Label":"6117-86134 via Unknown from 86133 -> 86138","Type":"Unknown","Directional":false,"Links":[{"SourceID":86133,"TargetID":86138,"Directional":false}]},{"ID":4015,"SourceStructureID":6117,"TargetStructureID":86145,"Label":"6117-86145 via Unknown from 86152 -> 86153","Type":"Unknown","Directional":false,"Links":[{"SourceID":86152,"TargetID":86153,"Directional":false}]},{"ID":4016,"SourceStructureID":86171,"TargetStructureID":6117,"Label":"86171-6117 via Unknown from 86173 -> 86172","Type":"Unknown","Directional":false,"Links":[{"SourceID":86173,"TargetID":86172,"Directional":false}]},{"ID":4017,"SourceStructureID":6117,"TargetStructureID":86237,"Label":"6117-86237 via Adherens from 86242 -> 86243","Type":"Adherens","Directional":false,"Links":[{"SourceID":86242,"TargetID":86243,"Directional":false}]},{"ID":4018,"SourceStructureID":6117,"TargetStructureID":86293,"Label":"6117-86293 via Unknown from 86292 -> 86294","Type":"Unknown","Directional":false,"Links":[{"SourceID":86292,"TargetID":86294,"Directional":false}]},{"ID":4019,"SourceStructureID":6117,"TargetStructureID":86305,"Label":"6117-86305 via Unknown from 86304 -> 86308","Type":"Unknown","Directional":false,"Links":[{"SourceID":86304,"TargetID":86308,"Directional":false}]},{"ID":4020,"SourceStructureID":86323,"TargetStructureID":6117,"Label":"86323-6117 via Unknown from 86324 -> 86325","Type":"Unknown","Directional":false,"Links":[{"SourceID":86324,"TargetID":86325,"Directional":false}]},{"ID":4021,"SourceStructureID":6117,"TargetStructureID":86327,"Label":"6117-86327 via Unknown from 86326 -> 86329","Type":"Unknown","Directional":false,"Links":[{"SourceID":86326,"TargetID":86329,"Directional":false}]},{"ID":4022,"SourceStructureID":86330,"TargetStructureID":6117,"Label":"86330-6117 via Unknown from 86339 -> 86338","Type":"Unknown","Directional":false,"Links":[{"SourceID":86339,"TargetID":86338,"Directional":false}]},{"ID":4023,"SourceStructureID":6117,"TargetStructureID":86340,"Label":"6117-86340 via Unknown from 86341 -> 86342","Type":"Unknown","Directional":false,"Links":[{"SourceID":86341,"TargetID":86342,"Directional":false}]},{"ID":4024,"SourceStructureID":86359,"TargetStructureID":6117,"Label":"86359-6117 via Adherens from 86360 -> 86362","Type":"Adherens","Directional":false,"Links":[{"SourceID":86360,"TargetID":86362,"Directional":false}]},{"ID":4025,"SourceStructureID":86385,"TargetStructureID":6117,"Label":"86385-6117 via Unknown from 86387 -> 86388","Type":"Unknown","Directional":false,"Links":[{"SourceID":86387,"TargetID":86388,"Directional":false}]},{"ID":4026,"SourceStructureID":6117,"TargetStructureID":86489,"Label":"6117-86489 via Unknown from 86488 -> 86490","Type":"Unknown","Directional":false,"Links":[{"SourceID":86488,"TargetID":86490,"Directional":false}]},{"ID":4027,"SourceStructureID":6117,"TargetStructureID":86505,"Label":"6117-86505 via Unknown from 86504 -> 86506","Type":"Unknown","Directional":false,"Links":[{"SourceID":86504,"TargetID":86506,"Directional":false}]},{"ID":4028,"SourceStructureID":6117,"TargetStructureID":86512,"Label":"6117-86512 via Unknown from 86514 -> 86515","Type":"Unknown","Directional":false,"Links":[{"SourceID":86514,"TargetID":86515,"Directional":false}]},{"ID":4029,"SourceStructureID":86524,"TargetStructureID":6117,"Label":"86524-6117 via Unknown from 86546 -> 86547","Type":"Unknown","Directional":false,"Links":[{"SourceID":86546,"TargetID":86547,"Directional":false}]},{"ID":4030,"SourceStructureID":6117,"TargetStructureID":86569,"Label":"6117-86569 via Unknown from 86573 -> 86575","Type":"Unknown","Directional":false,"Links":[{"SourceID":86573,"TargetID":86575,"Directional":false}]},{"ID":4031,"SourceStructureID":6117,"TargetStructureID":86582,"Label":"6117-86582 via Unknown from 86591 -> 86592","Type":"Unknown","Directional":false,"Links":[{"SourceID":86591,"TargetID":86592,"Directional":false}]},{"ID":4032,"SourceStructureID":86609,"TargetStructureID":6117,"Label":"86609-6117 via Unknown from 86613 -> 86612","Type":"Unknown","Directional":false,"Links":[{"SourceID":86613,"TargetID":86612,"Directional":false}]},{"ID":4033,"SourceStructureID":6120,"TargetStructureID":6118,"Label":"6120-6118 via Gap Junction from 65051 -> 65050, 65170 -> 65168, 119471 -> 119470","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65051,"TargetID":65050,"Directional":false},{"SourceID":65170,"TargetID":65168,"Directional":false},{"SourceID":119471,"TargetID":119470,"Directional":false}]},{"ID":4034,"SourceStructureID":6120,"TargetStructureID":6118,"Label":"6120-6118 via Unknown from 120789 -> 120788","Type":"Unknown","Directional":false,"Links":[{"SourceID":120789,"TargetID":120788,"Directional":false}]},{"ID":4035,"SourceStructureID":6121,"TargetStructureID":6118,"Label":"6121-6118 via Gap Junction from 120695 -> 120677, 120700 -> 120699, 120781 -> 120782, 120791 -> 120792, 120794 -> 120793, 125293 -> 125294","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120695,"TargetID":120677,"Directional":false},{"SourceID":120700,"TargetID":120699,"Directional":false},{"SourceID":120781,"TargetID":120782,"Directional":false},{"SourceID":120791,"TargetID":120792,"Directional":false},{"SourceID":120794,"TargetID":120793,"Directional":false},{"SourceID":125293,"TargetID":125294,"Directional":false}]},{"ID":4036,"SourceStructureID":6118,"TargetStructureID":6121,"Label":"6118-6121 via Unknown from 120685 -> 120686","Type":"Unknown","Directional":false,"Links":[{"SourceID":120685,"TargetID":120686,"Directional":false}]},{"ID":4037,"SourceStructureID":6158,"TargetStructureID":6118,"Label":"6158-6118 via Unknown from 115484 -> 115485","Type":"Unknown","Directional":false,"Links":[{"SourceID":115484,"TargetID":115485,"Directional":false}]},{"ID":4038,"SourceStructureID":6118,"TargetStructureID":6162,"Label":"6118-6162 via Gap Junction from 120730 -> 120731, 120733 -> 120732, 120752 -> 120751, 120758 -> 120757, 120768 -> 120769, 120784 -> 120785","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120730,"TargetID":120731,"Directional":false},{"SourceID":120733,"TargetID":120732,"Directional":false},{"SourceID":120752,"TargetID":120751,"Directional":false},{"SourceID":120758,"TargetID":120757,"Directional":false},{"SourceID":120768,"TargetID":120769,"Directional":false},{"SourceID":120784,"TargetID":120785,"Directional":false}]},{"ID":4039,"SourceStructureID":7904,"TargetStructureID":6118,"Label":"7904-6118 via Gap Junction from 119475 -> 119474, 120800 -> 120797, 120815 -> 120814, 122374 -> 122375","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119475,"TargetID":119474,"Directional":false},{"SourceID":120800,"TargetID":120797,"Directional":false},{"SourceID":120815,"TargetID":120814,"Directional":false},{"SourceID":122374,"TargetID":122375,"Directional":false}]},{"ID":4040,"SourceStructureID":6118,"TargetStructureID":7951,"Label":"6118-7951 via Gap Junction from 32496 -> 32495, 40002 -> 40003, 40005 -> 40004, 120642 -> 115364, 120761 -> 120760, 120763 -> 120762, 120766 -> 120765, 120776 -> 120775","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32496,"TargetID":32495,"Directional":false},{"SourceID":40002,"TargetID":40003,"Directional":false},{"SourceID":40005,"TargetID":40004,"Directional":false},{"SourceID":120642,"TargetID":115364,"Directional":false},{"SourceID":120761,"TargetID":120760,"Directional":false},{"SourceID":120763,"TargetID":120762,"Directional":false},{"SourceID":120766,"TargetID":120765,"Directional":false},{"SourceID":120776,"TargetID":120775,"Directional":false}]},{"ID":4041,"SourceStructureID":8032,"TargetStructureID":6118,"Label":"8032-6118 via Gap Junction from 56502 -> 56501","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56502,"TargetID":56501,"Directional":false}]},{"ID":4042,"SourceStructureID":65037,"TargetStructureID":6118,"Label":"65037-6118 via Adherens from 65039 -> 65038, 65040 -> 65041, 65043 -> 65042, 65044 -> 65045","Type":"Adherens","Directional":false,"Links":[{"SourceID":65039,"TargetID":65038,"Directional":false},{"SourceID":65040,"TargetID":65041,"Directional":false},{"SourceID":65043,"TargetID":65042,"Directional":false},{"SourceID":65044,"TargetID":65045,"Directional":false}]},{"ID":4043,"SourceStructureID":6118,"TargetStructureID":136707,"Label":"6118-136707 via Gap Junction from 115393 -> 136708","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115393,"TargetID":136708,"Directional":false}]},{"ID":4044,"SourceStructureID":136711,"TargetStructureID":6118,"Label":"136711-6118 via Gap Junction from 136712 -> 120702","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136712,"TargetID":120702,"Directional":false}]},{"ID":4045,"SourceStructureID":6121,"TargetStructureID":6120,"Label":"6121-6120 via Adherens from 111660 -> 111658, 126716 -> 126715","Type":"Adherens","Directional":false,"Links":[{"SourceID":111660,"TargetID":111658,"Directional":false},{"SourceID":126716,"TargetID":126715,"Directional":false}]},{"ID":4046,"SourceStructureID":6120,"TargetStructureID":6121,"Label":"6120-6121 via Gap Junction from 38106 -> 38120, 65064 -> 64353, 65166 -> 125300, 110573 -> 110572, 110776 -> 110775, 110788 -> 110787, 110822 -> 110823, 110840 -> 110839, 110872 -> 110873, 111211 -> 111210, 111392 -> 111393, 111486 -> 111487, 125230 -> 125231, 125674 -> 125673","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38106,"TargetID":38120,"Directional":false},{"SourceID":65064,"TargetID":64353,"Directional":false},{"SourceID":65166,"TargetID":125300,"Directional":false},{"SourceID":110573,"TargetID":110572,"Directional":false},{"SourceID":110776,"TargetID":110775,"Directional":false},{"SourceID":110788,"TargetID":110787,"Directional":false},{"SourceID":110822,"TargetID":110823,"Directional":false},{"SourceID":110840,"TargetID":110839,"Directional":false},{"SourceID":110872,"TargetID":110873,"Directional":false},{"SourceID":111211,"TargetID":111210,"Directional":false},{"SourceID":111392,"TargetID":111393,"Directional":false},{"SourceID":111486,"TargetID":111487,"Directional":false},{"SourceID":125230,"TargetID":125231,"Directional":false},{"SourceID":125674,"TargetID":125673,"Directional":false}]},{"ID":4047,"SourceStructureID":6141,"TargetStructureID":6120,"Label":"6141-6120 via Gap Junction from 110628 -> 64354","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":110628,"TargetID":64354,"Directional":false}]},{"ID":4048,"SourceStructureID":7904,"TargetStructureID":6120,"Label":"7904-6120 via Gap Junction from 52426 -> 52427, 111574 -> 52425, 111593 -> 111592","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52426,"TargetID":52427,"Directional":false},{"SourceID":111574,"TargetID":52425,"Directional":false},{"SourceID":111593,"TargetID":111592,"Directional":false}]},{"ID":4049,"SourceStructureID":6120,"TargetStructureID":8032,"Label":"6120-8032 via Adherens from 111538 -> 111537","Type":"Adherens","Directional":false,"Links":[{"SourceID":111538,"TargetID":111537,"Directional":false}]},{"ID":4050,"SourceStructureID":8032,"TargetStructureID":6120,"Label":"8032-6120 via Gap Junction from 30181 -> 30182, 32509 -> 32507","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30181,"TargetID":30182,"Directional":false},{"SourceID":32509,"TargetID":32507,"Directional":false}]},{"ID":4051,"SourceStructureID":8032,"TargetStructureID":6120,"Label":"8032-6120 via Unknown from 111542 -> 111541","Type":"Unknown","Directional":false,"Links":[{"SourceID":111542,"TargetID":111541,"Directional":false}]},{"ID":4052,"SourceStructureID":22994,"TargetStructureID":6120,"Label":"22994-6120 via Gap Junction from 118144 -> 118148","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118144,"TargetID":118148,"Directional":false}]},{"ID":4053,"SourceStructureID":31334,"TargetStructureID":6120,"Label":"31334-6120 via Unknown from 111704 -> 111703","Type":"Unknown","Directional":false,"Links":[{"SourceID":111704,"TargetID":111703,"Directional":false}]},{"ID":4054,"SourceStructureID":60491,"TargetStructureID":6120,"Label":"60491-6120 via Adherens from 60492 -> 60490","Type":"Adherens","Directional":false,"Links":[{"SourceID":60492,"TargetID":60490,"Directional":false}]},{"ID":4055,"SourceStructureID":65172,"TargetStructureID":6120,"Label":"65172-6120 via Gap Junction from 65174 -> 65171","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65174,"TargetID":65171,"Directional":false}]},{"ID":4056,"SourceStructureID":6120,"TargetStructureID":89124,"Label":"6120-89124 via Adherens from 110553 -> 89344","Type":"Adherens","Directional":false,"Links":[{"SourceID":110553,"TargetID":89344,"Directional":false}]},{"ID":4057,"SourceStructureID":110566,"TargetStructureID":6120,"Label":"110566-6120 via Gap Junction from 110579 -> 110578","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":110579,"TargetID":110578,"Directional":false}]},{"ID":4058,"SourceStructureID":110607,"TargetStructureID":6120,"Label":"110607-6120 via Adherens from 110608 -> 110606","Type":"Adherens","Directional":false,"Links":[{"SourceID":110608,"TargetID":110606,"Directional":false}]},{"ID":4059,"SourceStructureID":110747,"TargetStructureID":6120,"Label":"110747-6120 via Adherens from 110774 -> 110773","Type":"Adherens","Directional":false,"Links":[{"SourceID":110774,"TargetID":110773,"Directional":false}]},{"ID":4060,"SourceStructureID":110779,"TargetStructureID":6120,"Label":"110779-6120 via Adherens from 110780 -> 110778","Type":"Adherens","Directional":false,"Links":[{"SourceID":110780,"TargetID":110778,"Directional":false}]},{"ID":4061,"SourceStructureID":110866,"TargetStructureID":6120,"Label":"110866-6120 via Adherens from 110868 -> 110865","Type":"Adherens","Directional":false,"Links":[{"SourceID":110868,"TargetID":110865,"Directional":false}]},{"ID":4062,"SourceStructureID":111269,"TargetStructureID":6120,"Label":"111269-6120 via Adherens from 111364 -> 111363","Type":"Adherens","Directional":false,"Links":[{"SourceID":111364,"TargetID":111363,"Directional":false}]},{"ID":4063,"SourceStructureID":6120,"TargetStructureID":111351,"Label":"6120-111351 via Unknown from 111348 -> 111347","Type":"Unknown","Directional":false,"Links":[{"SourceID":111348,"TargetID":111347,"Directional":false}]},{"ID":4064,"SourceStructureID":111374,"TargetStructureID":6120,"Label":"111374-6120 via Gap Junction from 111375 -> 111373","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111375,"TargetID":111373,"Directional":false}]},{"ID":4065,"SourceStructureID":6120,"TargetStructureID":111421,"Label":"6120-111421 via Adherens from 111490 -> 111491","Type":"Adherens","Directional":false,"Links":[{"SourceID":111490,"TargetID":111491,"Directional":false}]},{"ID":4066,"SourceStructureID":6120,"TargetStructureID":111553,"Label":"6120-111553 via Adherens from 111555 -> 111556","Type":"Adherens","Directional":false,"Links":[{"SourceID":111555,"TargetID":111556,"Directional":false}]},{"ID":4067,"SourceStructureID":6120,"TargetStructureID":111598,"Label":"6120-111598 via Unknown from 111600 -> 111599","Type":"Unknown","Directional":false,"Links":[{"SourceID":111600,"TargetID":111599,"Directional":false}]},{"ID":4068,"SourceStructureID":6120,"TargetStructureID":111607,"Label":"6120-111607 via Unknown from 111606 -> 111608","Type":"Unknown","Directional":false,"Links":[{"SourceID":111606,"TargetID":111608,"Directional":false}]},{"ID":4069,"SourceStructureID":111615,"TargetStructureID":6120,"Label":"111615-6120 via Adherens from 111617 -> 111597","Type":"Adherens","Directional":false,"Links":[{"SourceID":111617,"TargetID":111597,"Directional":false}]},{"ID":4070,"SourceStructureID":6120,"TargetStructureID":111887,"Label":"6120-111887 via Gap Junction from 111886 -> 111888","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111886,"TargetID":111888,"Directional":false}]},{"ID":4071,"SourceStructureID":6121,"TargetStructureID":6141,"Label":"6121-6141 via Gap Junction from 122920 -> 61386, 122922 -> 61369","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122920,"TargetID":61386,"Directional":false},{"SourceID":122922,"TargetID":61369,"Directional":false}]},{"ID":4072,"SourceStructureID":6146,"TargetStructureID":6121,"Label":"6146-6121 via Adherens from 38107 -> 131951","Type":"Adherens","Directional":false,"Links":[{"SourceID":38107,"TargetID":131951,"Directional":false}]},{"ID":4073,"SourceStructureID":6146,"TargetStructureID":6121,"Label":"6146-6121 via Gap Junction from 38108 -> 38113, 38118 -> 38100, 120804 -> 121872, 131955 -> 131954","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38108,"TargetID":38113,"Directional":false},{"SourceID":38118,"TargetID":38100,"Directional":false},{"SourceID":120804,"TargetID":121872,"Directional":false},{"SourceID":131955,"TargetID":131954,"Directional":false}]},{"ID":4074,"SourceStructureID":6146,"TargetStructureID":6121,"Label":"6146-6121 via Unknown from 121860 -> 121861","Type":"Unknown","Directional":false,"Links":[{"SourceID":121860,"TargetID":121861,"Directional":false}]},{"ID":4075,"SourceStructureID":6121,"TargetStructureID":6158,"Label":"6121-6158 via Gap Junction from 120717 -> 120647, 120725 -> 120645, 120753 -> 120754, 120756 -> 120755","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120717,"TargetID":120647,"Directional":false},{"SourceID":120725,"TargetID":120645,"Directional":false},{"SourceID":120753,"TargetID":120754,"Directional":false},{"SourceID":120756,"TargetID":120755,"Directional":false}]},{"ID":4076,"SourceStructureID":22994,"TargetStructureID":6121,"Label":"22994-6121 via Gap Junction from 118141 -> 118142","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118141,"TargetID":118142,"Directional":false}]},{"ID":4077,"SourceStructureID":110607,"TargetStructureID":6121,"Label":"110607-6121 via Unknown from 126895 -> 126896","Type":"Unknown","Directional":false,"Links":[{"SourceID":126895,"TargetID":126896,"Directional":false}]},{"ID":4078,"SourceStructureID":7904,"TargetStructureID":6123,"Label":"7904-6123 via Gap Junction from 130622 -> 130616","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130622,"TargetID":130616,"Directional":false}]},{"ID":4079,"SourceStructureID":6123,"TargetStructureID":7951,"Label":"6123-7951 via Gap Junction from 37208 -> 37209, 48019 -> 132456, 118986 -> 38075, 132457 -> 48038","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37208,"TargetID":37209,"Directional":false},{"SourceID":48019,"TargetID":132456,"Directional":false},{"SourceID":118986,"TargetID":38075,"Directional":false},{"SourceID":132457,"TargetID":48038,"Directional":false}]},{"ID":4080,"SourceStructureID":6123,"TargetStructureID":34893,"Label":"6123-34893 via Adherens from 34897 -> 34896","Type":"Adherens","Directional":false,"Links":[{"SourceID":34897,"TargetID":34896,"Directional":false}]},{"ID":4081,"SourceStructureID":71517,"TargetStructureID":6123,"Label":"71517-6123 via Adherens from 74925 -> 74926, 74930 -> 47991","Type":"Adherens","Directional":false,"Links":[{"SourceID":74925,"TargetID":74926,"Directional":false},{"SourceID":74930,"TargetID":47991,"Directional":false}]},{"ID":4082,"SourceStructureID":74957,"TargetStructureID":6123,"Label":"74957-6123 via Adherens from 74960 -> 48065","Type":"Adherens","Directional":false,"Links":[{"SourceID":74960,"TargetID":48065,"Directional":false}]},{"ID":4083,"SourceStructureID":122868,"TargetStructureID":6123,"Label":"122868-6123 via Adherens from 130530 -> 130531, 132436 -> 132437","Type":"Adherens","Directional":false,"Links":[{"SourceID":130530,"TargetID":130531,"Directional":false},{"SourceID":132436,"TargetID":132437,"Directional":false}]},{"ID":4084,"SourceStructureID":122868,"TargetStructureID":6123,"Label":"122868-6123 via Gap Junction from 130527 -> 130528","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130527,"TargetID":130528,"Directional":false}]},{"ID":4085,"SourceStructureID":6127,"TargetStructureID":6129,"Label":"6127-6129 via Gap Junction from 118289 -> 118288, 122525 -> 122524, 122535 -> 122534","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118289,"TargetID":118288,"Directional":false},{"SourceID":122525,"TargetID":122524,"Directional":false},{"SourceID":122535,"TargetID":122534,"Directional":false}]},{"ID":4086,"SourceStructureID":7225,"TargetStructureID":6127,"Label":"7225-6127 via Gap Junction from 118286 -> 118287, 118291 -> 118292, 118293 -> 118294, 122632 -> 122634","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118286,"TargetID":118287,"Directional":false},{"SourceID":118291,"TargetID":118292,"Directional":false},{"SourceID":118293,"TargetID":118294,"Directional":false},{"SourceID":122632,"TargetID":122634,"Directional":false}]},{"ID":4087,"SourceStructureID":7446,"TargetStructureID":6127,"Label":"7446-6127 via Gap Junction from 35670 -> 35669, 122642 -> 123057","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35670,"TargetID":35669,"Directional":false},{"SourceID":122642,"TargetID":123057,"Directional":false}]},{"ID":4088,"SourceStructureID":7564,"TargetStructureID":6127,"Label":"7564-6127 via Gap Junction from 122540 -> 122539, 122603 -> 122604, 122606 -> 88490","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122540,"TargetID":122539,"Directional":false},{"SourceID":122603,"TargetID":122604,"Directional":false},{"SourceID":122606,"TargetID":88490,"Directional":false}]},{"ID":4089,"SourceStructureID":6127,"TargetStructureID":7861,"Label":"6127-7861 via Gap Junction from 122585 -> 122586","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122585,"TargetID":122586,"Directional":false}]},{"ID":4090,"SourceStructureID":6127,"TargetStructureID":82677,"Label":"6127-82677 via Gap Junction from 114631 -> 114630","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":114631,"TargetID":114630,"Directional":false}]},{"ID":4091,"SourceStructureID":94189,"TargetStructureID":6127,"Label":"94189-6127 via Gap Junction from 122614 -> 122613","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122614,"TargetID":122613,"Directional":false}]},{"ID":4092,"SourceStructureID":7346,"TargetStructureID":6128,"Label":"7346-6128 via Adherens from 45429 -> 45430","Type":"Adherens","Directional":false,"Links":[{"SourceID":45429,"TargetID":45430,"Directional":false}]},{"ID":4093,"SourceStructureID":7346,"TargetStructureID":6128,"Label":"7346-6128 via Gap Junction from 43851 -> 20869, 44028 -> 20882, 44067 -> 20890, 45230 -> 45229, 45416 -> 45418","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43851,"TargetID":20869,"Directional":false},{"SourceID":44028,"TargetID":20882,"Directional":false},{"SourceID":44067,"TargetID":20890,"Directional":false},{"SourceID":45230,"TargetID":45229,"Directional":false},{"SourceID":45416,"TargetID":45418,"Directional":false}]},{"ID":4094,"SourceStructureID":32359,"TargetStructureID":6128,"Label":"32359-6128 via Gap Junction from 41681 -> 21096","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":41681,"TargetID":21096,"Directional":false}]},{"ID":4095,"SourceStructureID":6128,"TargetStructureID":43207,"Label":"6128-43207 via Adherens from 60743 -> 60742","Type":"Adherens","Directional":false,"Links":[{"SourceID":60743,"TargetID":60742,"Directional":false}]},{"ID":4096,"SourceStructureID":6129,"TargetStructureID":7576,"Label":"6129-7576 via Gap Junction from 54773 -> 54774","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54773,"TargetID":54774,"Directional":false}]},{"ID":4097,"SourceStructureID":7576,"TargetStructureID":6129,"Label":"7576-6129 via Unknown from 92621 -> 92620","Type":"Unknown","Directional":false,"Links":[{"SourceID":92621,"TargetID":92620,"Directional":false}]},{"ID":4098,"SourceStructureID":6129,"TargetStructureID":82677,"Label":"6129-82677 via Adherens from 83664 -> 83663","Type":"Adherens","Directional":false,"Links":[{"SourceID":83664,"TargetID":83663,"Directional":false}]},{"ID":4099,"SourceStructureID":6129,"TargetStructureID":82677,"Label":"6129-82677 via Gap Junction from 83666 -> 83665, 114632 -> 114634","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83666,"TargetID":83665,"Directional":false},{"SourceID":114632,"TargetID":114634,"Directional":false}]},{"ID":4100,"SourceStructureID":6131,"TargetStructureID":13525,"Label":"6131-13525 via Adherens from 158491 -> 130231","Type":"Adherens","Directional":false,"Links":[{"SourceID":158491,"TargetID":130231,"Directional":false}]},{"ID":4101,"SourceStructureID":6131,"TargetStructureID":32359,"Label":"6131-32359 via Gap Junction from 43673 -> 41324","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43673,"TargetID":41324,"Directional":false}]},{"ID":4102,"SourceStructureID":6133,"TargetStructureID":65438,"Label":"6133-65438 via Gap Junction from 37393 -> 65442","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37393,"TargetID":65442,"Directional":false}]},{"ID":4103,"SourceStructureID":6134,"TargetStructureID":32465,"Label":"6134-32465 via Adherens from 32475 -> 32474","Type":"Adherens","Directional":false,"Links":[{"SourceID":32475,"TargetID":32474,"Directional":false}]},{"ID":4104,"SourceStructureID":6138,"TargetStructureID":57353,"Label":"6138-57353 via Unknown from 124274 -> 124273","Type":"Unknown","Directional":false,"Links":[{"SourceID":124274,"TargetID":124273,"Directional":false}]},{"ID":4105,"SourceStructureID":8032,"TargetStructureID":6141,"Label":"8032-6141 via Gap Junction from 26703 -> 61367, 26712 -> 61362, 32522 -> 32518, 61363 -> 26713, 61390 -> 26702","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":26703,"TargetID":61367,"Directional":false},{"SourceID":26712,"TargetID":61362,"Directional":false},{"SourceID":32522,"TargetID":32518,"Directional":false},{"SourceID":61363,"TargetID":26713,"Directional":false},{"SourceID":61390,"TargetID":26702,"Directional":false}]},{"ID":4106,"SourceStructureID":22994,"TargetStructureID":6141,"Label":"22994-6141 via Adherens from 56753 -> 56754","Type":"Adherens","Directional":false,"Links":[{"SourceID":56753,"TargetID":56754,"Directional":false}]},{"ID":4107,"SourceStructureID":6141,"TargetStructureID":22994,"Label":"6141-22994 via Gap Junction from 56752 -> 56751, 118123 -> 118124, 118138 -> 118137","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56752,"TargetID":56751,"Directional":false},{"SourceID":118123,"TargetID":118124,"Directional":false},{"SourceID":118138,"TargetID":118137,"Directional":false}]},{"ID":4108,"SourceStructureID":6141,"TargetStructureID":57353,"Label":"6141-57353 via Gap Junction from 61408 -> 124291, 122938 -> 122937, 124330 -> 124331, 124397 -> 124396, 124410 -> 124409","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61408,"TargetID":124291,"Directional":false},{"SourceID":122938,"TargetID":122937,"Directional":false},{"SourceID":124330,"TargetID":124331,"Directional":false},{"SourceID":124397,"TargetID":124396,"Directional":false},{"SourceID":124410,"TargetID":124409,"Directional":false}]},{"ID":4109,"SourceStructureID":6141,"TargetStructureID":57353,"Label":"6141-57353 via Touch from 124424 -> 124423","Type":"Touch","Directional":false,"Links":[{"SourceID":124424,"TargetID":124423,"Directional":false}]},{"ID":4110,"SourceStructureID":61397,"TargetStructureID":6141,"Label":"61397-6141 via Gap Junction from 61398 -> 61396","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61398,"TargetID":61396,"Directional":false}]},{"ID":4111,"SourceStructureID":6142,"TargetStructureID":6142,"Label":"6142-6142 via Gap Junction from 117158 -> 117154, 117161 -> 117157, 117162 -> 117152, 117169 -> 117167","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117158,"TargetID":117154,"Directional":false},{"SourceID":117161,"TargetID":117157,"Directional":false},{"SourceID":117162,"TargetID":117152,"Directional":false},{"SourceID":117169,"TargetID":117167,"Directional":false}]},{"ID":4112,"SourceStructureID":6142,"TargetStructureID":6958,"Label":"6142-6958 via Gap Junction from 27532 -> 27526","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":27532,"TargetID":27526,"Directional":false}]},{"ID":4113,"SourceStructureID":8032,"TargetStructureID":6142,"Label":"8032-6142 via Gap Junction from 32523 -> 16118, 32525 -> 32524","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32523,"TargetID":16118,"Directional":false},{"SourceID":32525,"TargetID":32524,"Directional":false}]},{"ID":4114,"SourceStructureID":6142,"TargetStructureID":57353,"Label":"6142-57353 via Unknown from 124420 -> 124419","Type":"Unknown","Directional":false,"Links":[{"SourceID":124420,"TargetID":124419,"Directional":false}]},{"ID":4115,"SourceStructureID":89775,"TargetStructureID":6142,"Label":"89775-6142 via Adherens from 89784 -> 16115, 89785 -> 89786","Type":"Adherens","Directional":false,"Links":[{"SourceID":89784,"TargetID":16115,"Directional":false},{"SourceID":89785,"TargetID":89786,"Directional":false}]},{"ID":4116,"SourceStructureID":6162,"TargetStructureID":6146,"Label":"6162-6146 via Gap Junction from 120811 -> 120810, 121879 -> 120805, 131999 -> 132000","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120811,"TargetID":120810,"Directional":false},{"SourceID":121879,"TargetID":120805,"Directional":false},{"SourceID":131999,"TargetID":132000,"Directional":false}]},{"ID":4117,"SourceStructureID":7904,"TargetStructureID":6146,"Label":"7904-6146 via Gap Junction from 120813 -> 120812, 121887 -> 120806, 131928 -> 121888","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120813,"TargetID":120812,"Directional":false},{"SourceID":121887,"TargetID":120806,"Directional":false},{"SourceID":131928,"TargetID":121888,"Directional":false}]},{"ID":4118,"SourceStructureID":8032,"TargetStructureID":6146,"Label":"8032-6146 via Gap Junction from 32508 -> 56734","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32508,"TargetID":56734,"Directional":false}]},{"ID":4119,"SourceStructureID":9769,"TargetStructureID":6146,"Label":"9769-6146 via Adherens from 38104 -> 38103","Type":"Adherens","Directional":false,"Links":[{"SourceID":38104,"TargetID":38103,"Directional":false}]},{"ID":4120,"SourceStructureID":22994,"TargetStructureID":6146,"Label":"22994-6146 via Gap Junction from 56742 -> 56736, 56746 -> 56747","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56742,"TargetID":56736,"Directional":false},{"SourceID":56746,"TargetID":56747,"Directional":false}]},{"ID":4121,"SourceStructureID":30177,"TargetStructureID":6146,"Label":"30177-6146 via Gap Junction from 131963 -> 131964, 131970 -> 131971","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131963,"TargetID":131964,"Directional":false},{"SourceID":131970,"TargetID":131971,"Directional":false}]},{"ID":4122,"SourceStructureID":6146,"TargetStructureID":87419,"Label":"6146-87419 via Adherens from 87423 -> 87422","Type":"Adherens","Directional":false,"Links":[{"SourceID":87423,"TargetID":87422,"Directional":false}]},{"ID":4123,"SourceStructureID":6146,"TargetStructureID":121864,"Label":"6146-121864 via Gap Junction from 121863 -> 121865","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121863,"TargetID":121865,"Directional":false}]},{"ID":4124,"SourceStructureID":6146,"TargetStructureID":121866,"Label":"6146-121866 via Gap Junction from 131960 -> 131959","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131960,"TargetID":131959,"Directional":false}]},{"ID":4125,"SourceStructureID":6146,"TargetStructureID":121881,"Label":"6146-121881 via Gap Junction from 121877 -> 121882","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121877,"TargetID":121882,"Directional":false}]},{"ID":4126,"SourceStructureID":121889,"TargetStructureID":6146,"Label":"121889-6146 via Gap Junction from 121890 -> 120807","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121890,"TargetID":120807,"Directional":false}]},{"ID":4127,"SourceStructureID":6146,"TargetStructureID":121893,"Label":"6146-121893 via Gap Junction from 121892 -> 121894","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121892,"TargetID":121894,"Directional":false}]},{"ID":4128,"SourceStructureID":6146,"TargetStructureID":121899,"Label":"6146-121899 via Gap Junction from 120809 -> 121901","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120809,"TargetID":121901,"Directional":false}]},{"ID":4129,"SourceStructureID":6146,"TargetStructureID":131988,"Label":"6146-131988 via Gap Junction from 131989 -> 131990, 131991 -> 131992","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131989,"TargetID":131990,"Directional":false},{"SourceID":131991,"TargetID":131992,"Directional":false}]},{"ID":4130,"SourceStructureID":6153,"TargetStructureID":6153,"Label":"6153-6153 via Gap Junction from 71559 -> 17468","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71559,"TargetID":17468,"Directional":false}]},{"ID":4131,"SourceStructureID":6153,"TargetStructureID":7157,"Label":"6153-7157 via Adherens from 26520 -> 26519","Type":"Adherens","Directional":false,"Links":[{"SourceID":26520,"TargetID":26519,"Directional":false}]},{"ID":4132,"SourceStructureID":7157,"TargetStructureID":6153,"Label":"7157-6153 via Gap Junction from 24531 -> 24528, 29500 -> 29499","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24531,"TargetID":24528,"Directional":false},{"SourceID":29500,"TargetID":29499,"Directional":false}]},{"ID":4133,"SourceStructureID":6153,"TargetStructureID":15412,"Label":"6153-15412 via Adherens from 15415 -> 15414","Type":"Adherens","Directional":false,"Links":[{"SourceID":15415,"TargetID":15414,"Directional":false}]},{"ID":4134,"SourceStructureID":6153,"TargetStructureID":37295,"Label":"6153-37295 via Gap Junction from 24533 -> 130520, 39164 -> 39163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24533,"TargetID":130520,"Directional":false},{"SourceID":39164,"TargetID":39163,"Directional":false}]},{"ID":4135,"SourceStructureID":100055,"TargetStructureID":6153,"Label":"100055-6153 via Adherens from 100057 -> 100058","Type":"Adherens","Directional":false,"Links":[{"SourceID":100057,"TargetID":100058,"Directional":false}]},{"ID":4136,"SourceStructureID":6153,"TargetStructureID":114925,"Label":"6153-114925 via Adherens from 114928 -> 114927","Type":"Adherens","Directional":false,"Links":[{"SourceID":114928,"TargetID":114927,"Directional":false}]},{"ID":4137,"SourceStructureID":6155,"TargetStructureID":6155,"Label":"6155-6155 via Gap Junction from 108283 -> 108282","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108283,"TargetID":108282,"Directional":false}]},{"ID":4138,"SourceStructureID":6300,"TargetStructureID":6155,"Label":"6300-6155 via Adherens from 104890 -> 104891","Type":"Adherens","Directional":false,"Links":[{"SourceID":104890,"TargetID":104891,"Directional":false}]},{"ID":4139,"SourceStructureID":8720,"TargetStructureID":6155,"Label":"8720-6155 via Unknown from 104924 -> 104925","Type":"Unknown","Directional":false,"Links":[{"SourceID":104924,"TargetID":104925,"Directional":false}]},{"ID":4140,"SourceStructureID":6155,"TargetStructureID":9260,"Label":"6155-9260 via Unknown from 107825 -> 107826","Type":"Unknown","Directional":false,"Links":[{"SourceID":107825,"TargetID":107826,"Directional":false}]},{"ID":4141,"SourceStructureID":9769,"TargetStructureID":6155,"Label":"9769-6155 via Unknown from 106039 -> 105989","Type":"Unknown","Directional":false,"Links":[{"SourceID":106039,"TargetID":105989,"Directional":false}]},{"ID":4142,"SourceStructureID":18693,"TargetStructureID":6155,"Label":"18693-6155 via Adherens from 106121 -> 106122","Type":"Adherens","Directional":false,"Links":[{"SourceID":106121,"TargetID":106122,"Directional":false}]},{"ID":4143,"SourceStructureID":6155,"TargetStructureID":24401,"Label":"6155-24401 via Gap Junction from 15553 -> 34748, 34786 -> 34782, 48035 -> 48036, 104939 -> 104938, 104944 -> 104946, 107924 -> 107925, 121132 -> 121131, 121133 -> 121134","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15553,"TargetID":34748,"Directional":false},{"SourceID":34786,"TargetID":34782,"Directional":false},{"SourceID":48035,"TargetID":48036,"Directional":false},{"SourceID":104939,"TargetID":104938,"Directional":false},{"SourceID":104944,"TargetID":104946,"Directional":false},{"SourceID":107924,"TargetID":107925,"Directional":false},{"SourceID":121132,"TargetID":121131,"Directional":false},{"SourceID":121133,"TargetID":121134,"Directional":false}]},{"ID":4144,"SourceStructureID":26079,"TargetStructureID":6155,"Label":"26079-6155 via Adherens from 106359 -> 106360, 106405 -> 106406, 106407 -> 106408","Type":"Adherens","Directional":false,"Links":[{"SourceID":106359,"TargetID":106360,"Directional":false},{"SourceID":106405,"TargetID":106406,"Directional":false},{"SourceID":106407,"TargetID":106408,"Directional":false}]},{"ID":4145,"SourceStructureID":6155,"TargetStructureID":26079,"Label":"6155-26079 via Gap Junction from 35911 -> 35910, 48264 -> 106869, 106052 -> 106053, 106073 -> 106074, 106401 -> 106402, 106433 -> 106434, 121240 -> 121239","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35911,"TargetID":35910,"Directional":false},{"SourceID":48264,"TargetID":106869,"Directional":false},{"SourceID":106052,"TargetID":106053,"Directional":false},{"SourceID":106073,"TargetID":106074,"Directional":false},{"SourceID":106401,"TargetID":106402,"Directional":false},{"SourceID":106433,"TargetID":106434,"Directional":false},{"SourceID":121240,"TargetID":121239,"Directional":false}]},{"ID":4146,"SourceStructureID":26079,"TargetStructureID":6155,"Label":"26079-6155 via Unknown from 106017 -> 106014, 106054 -> 106055, 107873 -> 107874, 108044 -> 108046, 121252 -> 121253","Type":"Unknown","Directional":false,"Links":[{"SourceID":106017,"TargetID":106014,"Directional":false},{"SourceID":106054,"TargetID":106055,"Directional":false},{"SourceID":107873,"TargetID":107874,"Directional":false},{"SourceID":108044,"TargetID":108046,"Directional":false},{"SourceID":121252,"TargetID":121253,"Directional":false}]},{"ID":4147,"SourceStructureID":36421,"TargetStructureID":6155,"Label":"36421-6155 via Gap Junction from 108128 -> 108129","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108128,"TargetID":108129,"Directional":false}]},{"ID":4148,"SourceStructureID":36421,"TargetStructureID":6155,"Label":"36421-6155 via Unknown from 108135 -> 108136, 108213 -> 108214","Type":"Unknown","Directional":false,"Links":[{"SourceID":108135,"TargetID":108136,"Directional":false},{"SourceID":108213,"TargetID":108214,"Directional":false}]},{"ID":4149,"SourceStructureID":6155,"TargetStructureID":39867,"Label":"6155-39867 via Gap Junction from 49074 -> 49075","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49074,"TargetID":49075,"Directional":false}]},{"ID":4150,"SourceStructureID":101620,"TargetStructureID":6155,"Label":"101620-6155 via Adherens from 107771 -> 107772","Type":"Adherens","Directional":false,"Links":[{"SourceID":107771,"TargetID":107772,"Directional":false}]},{"ID":4151,"SourceStructureID":6155,"TargetStructureID":104879,"Label":"6155-104879 via Unknown from 104884 -> 104885","Type":"Unknown","Directional":false,"Links":[{"SourceID":104884,"TargetID":104885,"Directional":false}]},{"ID":4152,"SourceStructureID":6155,"TargetStructureID":104895,"Label":"6155-104895 via Unknown from 104896 -> 104897","Type":"Unknown","Directional":false,"Links":[{"SourceID":104896,"TargetID":104897,"Directional":false}]},{"ID":4153,"SourceStructureID":104909,"TargetStructureID":6155,"Label":"104909-6155 via Unknown from 104910 -> 104911","Type":"Unknown","Directional":false,"Links":[{"SourceID":104910,"TargetID":104911,"Directional":false}]},{"ID":4154,"SourceStructureID":6155,"TargetStructureID":104914,"Label":"6155-104914 via Unknown from 104915 -> 104916","Type":"Unknown","Directional":false,"Links":[{"SourceID":104915,"TargetID":104916,"Directional":false}]},{"ID":4155,"SourceStructureID":6155,"TargetStructureID":104940,"Label":"6155-104940 via Unknown from 104941 -> 104942","Type":"Unknown","Directional":false,"Links":[{"SourceID":104941,"TargetID":104942,"Directional":false}]},{"ID":4156,"SourceStructureID":104954,"TargetStructureID":6155,"Label":"104954-6155 via Adherens from 104955 -> 104956","Type":"Adherens","Directional":false,"Links":[{"SourceID":104955,"TargetID":104956,"Directional":false}]},{"ID":4157,"SourceStructureID":6155,"TargetStructureID":104968,"Label":"6155-104968 via Unknown from 104967 -> 104969","Type":"Unknown","Directional":false,"Links":[{"SourceID":104967,"TargetID":104969,"Directional":false}]},{"ID":4158,"SourceStructureID":104976,"TargetStructureID":6155,"Label":"104976-6155 via Unknown from 104977 -> 104978","Type":"Unknown","Directional":false,"Links":[{"SourceID":104977,"TargetID":104978,"Directional":false}]},{"ID":4159,"SourceStructureID":6155,"TargetStructureID":105844,"Label":"6155-105844 via Adherens from 16875 -> 105850","Type":"Adherens","Directional":false,"Links":[{"SourceID":16875,"TargetID":105850,"Directional":false}]},{"ID":4160,"SourceStructureID":6155,"TargetStructureID":105865,"Label":"6155-105865 via Unknown from 105864 -> 105866","Type":"Unknown","Directional":false,"Links":[{"SourceID":105864,"TargetID":105866,"Directional":false}]},{"ID":4161,"SourceStructureID":6155,"TargetStructureID":105881,"Label":"6155-105881 via Unknown from 105887 -> 105901","Type":"Unknown","Directional":false,"Links":[{"SourceID":105887,"TargetID":105901,"Directional":false}]},{"ID":4162,"SourceStructureID":6155,"TargetStructureID":105904,"Label":"6155-105904 via Adherens from 16873 -> 105905","Type":"Adherens","Directional":false,"Links":[{"SourceID":16873,"TargetID":105905,"Directional":false}]},{"ID":4163,"SourceStructureID":6155,"TargetStructureID":105904,"Label":"6155-105904 via Unknown from 105922 -> 105921","Type":"Unknown","Directional":false,"Links":[{"SourceID":105922,"TargetID":105921,"Directional":false}]},{"ID":4164,"SourceStructureID":6155,"TargetStructureID":105928,"Label":"6155-105928 via Adherens from 105955 -> 105956","Type":"Adherens","Directional":false,"Links":[{"SourceID":105955,"TargetID":105956,"Directional":false}]},{"ID":4165,"SourceStructureID":105928,"TargetStructureID":6155,"Label":"105928-6155 via Unknown from 105958 -> 105957","Type":"Unknown","Directional":false,"Links":[{"SourceID":105958,"TargetID":105957,"Directional":false}]},{"ID":4166,"SourceStructureID":6155,"TargetStructureID":105992,"Label":"6155-105992 via Adherens from 16878 -> 106044","Type":"Adherens","Directional":false,"Links":[{"SourceID":16878,"TargetID":106044,"Directional":false}]},{"ID":4167,"SourceStructureID":106008,"TargetStructureID":6155,"Label":"106008-6155 via Unknown from 106010 -> 106011","Type":"Unknown","Directional":false,"Links":[{"SourceID":106010,"TargetID":106011,"Directional":false}]},{"ID":4168,"SourceStructureID":106056,"TargetStructureID":6155,"Label":"106056-6155 via Unknown from 106057 -> 106058","Type":"Unknown","Directional":false,"Links":[{"SourceID":106057,"TargetID":106058,"Directional":false}]},{"ID":4169,"SourceStructureID":6155,"TargetStructureID":106064,"Label":"6155-106064 via Adherens from 15759 -> 106066","Type":"Adherens","Directional":false,"Links":[{"SourceID":15759,"TargetID":106066,"Directional":false}]},{"ID":4170,"SourceStructureID":6155,"TargetStructureID":106080,"Label":"6155-106080 via Adherens from 106081 -> 106082","Type":"Adherens","Directional":false,"Links":[{"SourceID":106081,"TargetID":106082,"Directional":false}]},{"ID":4171,"SourceStructureID":6155,"TargetStructureID":106083,"Label":"6155-106083 via Unknown from 106086 -> 106085","Type":"Unknown","Directional":false,"Links":[{"SourceID":106086,"TargetID":106085,"Directional":false}]},{"ID":4172,"SourceStructureID":6155,"TargetStructureID":106095,"Label":"6155-106095 via Adherens from 106117 -> 106118","Type":"Adherens","Directional":false,"Links":[{"SourceID":106117,"TargetID":106118,"Directional":false}]},{"ID":4173,"SourceStructureID":6155,"TargetStructureID":106110,"Label":"6155-106110 via Adherens from 106366 -> 106367","Type":"Adherens","Directional":false,"Links":[{"SourceID":106366,"TargetID":106367,"Directional":false}]},{"ID":4174,"SourceStructureID":6155,"TargetStructureID":106384,"Label":"6155-106384 via Adherens from 106392 -> 106393","Type":"Adherens","Directional":false,"Links":[{"SourceID":106392,"TargetID":106393,"Directional":false}]},{"ID":4175,"SourceStructureID":106384,"TargetStructureID":6155,"Label":"106384-6155 via Unknown from 106385 -> 106383","Type":"Unknown","Directional":false,"Links":[{"SourceID":106385,"TargetID":106383,"Directional":false}]},{"ID":4176,"SourceStructureID":6155,"TargetStructureID":106410,"Label":"6155-106410 via Adherens from 106411 -> 106412","Type":"Adherens","Directional":false,"Links":[{"SourceID":106411,"TargetID":106412,"Directional":false}]},{"ID":4177,"SourceStructureID":6155,"TargetStructureID":106448,"Label":"6155-106448 via Adherens from 106449 -> 106450","Type":"Adherens","Directional":false,"Links":[{"SourceID":106449,"TargetID":106450,"Directional":false}]},{"ID":4178,"SourceStructureID":6155,"TargetStructureID":106451,"Label":"6155-106451 via Gap Junction from 106452 -> 106453","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":106452,"TargetID":106453,"Directional":false}]},{"ID":4179,"SourceStructureID":6155,"TargetStructureID":106480,"Label":"6155-106480 via Adherens from 15811 -> 106481","Type":"Adherens","Directional":false,"Links":[{"SourceID":15811,"TargetID":106481,"Directional":false}]},{"ID":4180,"SourceStructureID":6155,"TargetStructureID":106571,"Label":"6155-106571 via Unknown from 106570 -> 106572","Type":"Unknown","Directional":false,"Links":[{"SourceID":106570,"TargetID":106572,"Directional":false}]},{"ID":4181,"SourceStructureID":6155,"TargetStructureID":106574,"Label":"6155-106574 via Adherens from 106575 -> 106576","Type":"Adherens","Directional":false,"Links":[{"SourceID":106575,"TargetID":106576,"Directional":false}]},{"ID":4182,"SourceStructureID":106629,"TargetStructureID":6155,"Label":"106629-6155 via Adherens from 106630 -> 106631","Type":"Adherens","Directional":false,"Links":[{"SourceID":106630,"TargetID":106631,"Directional":false}]},{"ID":4183,"SourceStructureID":6155,"TargetStructureID":106705,"Label":"6155-106705 via Adherens from 106707 -> 106708","Type":"Adherens","Directional":false,"Links":[{"SourceID":106707,"TargetID":106708,"Directional":false}]},{"ID":4184,"SourceStructureID":6155,"TargetStructureID":106744,"Label":"6155-106744 via Unknown from 106743 -> 106745","Type":"Unknown","Directional":false,"Links":[{"SourceID":106743,"TargetID":106745,"Directional":false}]},{"ID":4185,"SourceStructureID":6155,"TargetStructureID":106776,"Label":"6155-106776 via Adherens from 108272 -> 108271","Type":"Adherens","Directional":false,"Links":[{"SourceID":108272,"TargetID":108271,"Directional":false}]},{"ID":4186,"SourceStructureID":106776,"TargetStructureID":6155,"Label":"106776-6155 via Unknown from 106787 -> 106788","Type":"Unknown","Directional":false,"Links":[{"SourceID":106787,"TargetID":106788,"Directional":false}]},{"ID":4187,"SourceStructureID":106805,"TargetStructureID":6155,"Label":"106805-6155 via Unknown from 106806 -> 106808","Type":"Unknown","Directional":false,"Links":[{"SourceID":106806,"TargetID":106808,"Directional":false}]},{"ID":4188,"SourceStructureID":6155,"TargetStructureID":106836,"Label":"6155-106836 via Adherens from 106837 -> 106838","Type":"Adherens","Directional":false,"Links":[{"SourceID":106837,"TargetID":106838,"Directional":false}]},{"ID":4189,"SourceStructureID":106842,"TargetStructureID":6155,"Label":"106842-6155 via Unknown from 106843 -> 106840","Type":"Unknown","Directional":false,"Links":[{"SourceID":106843,"TargetID":106840,"Directional":false}]},{"ID":4190,"SourceStructureID":6155,"TargetStructureID":107619,"Label":"6155-107619 via Adherens from 107620 -> 107621","Type":"Adherens","Directional":false,"Links":[{"SourceID":107620,"TargetID":107621,"Directional":false}]},{"ID":4191,"SourceStructureID":6155,"TargetStructureID":107753,"Label":"6155-107753 via Adherens from 107775 -> 107776","Type":"Adherens","Directional":false,"Links":[{"SourceID":107775,"TargetID":107776,"Directional":false}]},{"ID":4192,"SourceStructureID":107769,"TargetStructureID":6155,"Label":"107769-6155 via Unknown from 107773 -> 107774","Type":"Unknown","Directional":false,"Links":[{"SourceID":107773,"TargetID":107774,"Directional":false}]},{"ID":4193,"SourceStructureID":107781,"TargetStructureID":6155,"Label":"107781-6155 via Adherens from 107783 -> 107782","Type":"Adherens","Directional":false,"Links":[{"SourceID":107783,"TargetID":107782,"Directional":false}]},{"ID":4194,"SourceStructureID":6155,"TargetStructureID":107794,"Label":"6155-107794 via Adherens from 107813 -> 107814","Type":"Adherens","Directional":false,"Links":[{"SourceID":107813,"TargetID":107814,"Directional":false}]},{"ID":4195,"SourceStructureID":6155,"TargetStructureID":107802,"Label":"6155-107802 via Adherens from 107804 -> 107803","Type":"Adherens","Directional":false,"Links":[{"SourceID":107804,"TargetID":107803,"Directional":false}]},{"ID":4196,"SourceStructureID":6155,"TargetStructureID":107805,"Label":"6155-107805 via Adherens from 16132 -> 107806","Type":"Adherens","Directional":false,"Links":[{"SourceID":16132,"TargetID":107806,"Directional":false}]},{"ID":4197,"SourceStructureID":107845,"TargetStructureID":6155,"Label":"107845-6155 via Adherens from 107847 -> 107848","Type":"Adherens","Directional":false,"Links":[{"SourceID":107847,"TargetID":107848,"Directional":false}]},{"ID":4198,"SourceStructureID":6155,"TargetStructureID":107857,"Label":"6155-107857 via Adherens from 107858 -> 107859","Type":"Adherens","Directional":false,"Links":[{"SourceID":107858,"TargetID":107859,"Directional":false}]},{"ID":4199,"SourceStructureID":107860,"TargetStructureID":6155,"Label":"107860-6155 via Adherens from 107861 -> 107862","Type":"Adherens","Directional":false,"Links":[{"SourceID":107861,"TargetID":107862,"Directional":false}]},{"ID":4200,"SourceStructureID":6155,"TargetStructureID":107887,"Label":"6155-107887 via Adherens from 107886 -> 107892","Type":"Adherens","Directional":false,"Links":[{"SourceID":107886,"TargetID":107892,"Directional":false}]},{"ID":4201,"SourceStructureID":107889,"TargetStructureID":6155,"Label":"107889-6155 via Unknown from 107890 -> 107891","Type":"Unknown","Directional":false,"Links":[{"SourceID":107890,"TargetID":107891,"Directional":false}]},{"ID":4202,"SourceStructureID":6155,"TargetStructureID":107894,"Label":"6155-107894 via Adherens from 107895 -> 107896","Type":"Adherens","Directional":false,"Links":[{"SourceID":107895,"TargetID":107896,"Directional":false}]},{"ID":4203,"SourceStructureID":6155,"TargetStructureID":107897,"Label":"6155-107897 via Adherens from 107898 -> 107899","Type":"Adherens","Directional":false,"Links":[{"SourceID":107898,"TargetID":107899,"Directional":false}]},{"ID":4204,"SourceStructureID":107900,"TargetStructureID":6155,"Label":"107900-6155 via Unknown from 107901 -> 107902","Type":"Unknown","Directional":false,"Links":[{"SourceID":107901,"TargetID":107902,"Directional":false}]},{"ID":4205,"SourceStructureID":6155,"TargetStructureID":107928,"Label":"6155-107928 via Adherens from 15539 -> 107929","Type":"Adherens","Directional":false,"Links":[{"SourceID":15539,"TargetID":107929,"Directional":false}]},{"ID":4206,"SourceStructureID":6155,"TargetStructureID":107933,"Label":"6155-107933 via Adherens from 107934 -> 107936","Type":"Adherens","Directional":false,"Links":[{"SourceID":107934,"TargetID":107936,"Directional":false}]},{"ID":4207,"SourceStructureID":107944,"TargetStructureID":6155,"Label":"107944-6155 via Adherens from 107945 -> 107946","Type":"Adherens","Directional":false,"Links":[{"SourceID":107945,"TargetID":107946,"Directional":false}]},{"ID":4208,"SourceStructureID":6155,"TargetStructureID":107979,"Label":"6155-107979 via Adherens from 15543 -> 107980","Type":"Adherens","Directional":false,"Links":[{"SourceID":15543,"TargetID":107980,"Directional":false}]},{"ID":4209,"SourceStructureID":6155,"TargetStructureID":107989,"Label":"6155-107989 via Adherens from 107990 -> 107991","Type":"Adherens","Directional":false,"Links":[{"SourceID":107990,"TargetID":107991,"Directional":false}]},{"ID":4210,"SourceStructureID":6155,"TargetStructureID":107992,"Label":"6155-107992 via Adherens from 15570 -> 108003","Type":"Adherens","Directional":false,"Links":[{"SourceID":15570,"TargetID":108003,"Directional":false}]},{"ID":4211,"SourceStructureID":107999,"TargetStructureID":6155,"Label":"107999-6155 via Adherens from 108002 -> 108001","Type":"Adherens","Directional":false,"Links":[{"SourceID":108002,"TargetID":108001,"Directional":false}]},{"ID":4212,"SourceStructureID":108031,"TargetStructureID":6155,"Label":"108031-6155 via Adherens from 108035 -> 108036","Type":"Adherens","Directional":false,"Links":[{"SourceID":108035,"TargetID":108036,"Directional":false}]},{"ID":4213,"SourceStructureID":108053,"TargetStructureID":6155,"Label":"108053-6155 via Adherens from 108054 -> 108056","Type":"Adherens","Directional":false,"Links":[{"SourceID":108054,"TargetID":108056,"Directional":false}]},{"ID":4214,"SourceStructureID":6155,"TargetStructureID":108064,"Label":"6155-108064 via Gap Junction from 48306 -> 108065","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48306,"TargetID":108065,"Directional":false}]},{"ID":4215,"SourceStructureID":108066,"TargetStructureID":6155,"Label":"108066-6155 via Adherens from 108067 -> 108068, 108071 -> 108070","Type":"Adherens","Directional":false,"Links":[{"SourceID":108067,"TargetID":108068,"Directional":false},{"SourceID":108071,"TargetID":108070,"Directional":false}]},{"ID":4216,"SourceStructureID":108072,"TargetStructureID":6155,"Label":"108072-6155 via Adherens from 108074 -> 108075","Type":"Adherens","Directional":false,"Links":[{"SourceID":108074,"TargetID":108075,"Directional":false}]},{"ID":4217,"SourceStructureID":6155,"TargetStructureID":108072,"Label":"6155-108072 via Gap Junction from 48302 -> 108073","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48302,"TargetID":108073,"Directional":false}]},{"ID":4218,"SourceStructureID":6155,"TargetStructureID":108076,"Label":"6155-108076 via Adherens from 49081 -> 108077","Type":"Adherens","Directional":false,"Links":[{"SourceID":49081,"TargetID":108077,"Directional":false}]},{"ID":4219,"SourceStructureID":6155,"TargetStructureID":108114,"Label":"6155-108114 via Unknown from 108116 -> 108115","Type":"Unknown","Directional":false,"Links":[{"SourceID":108116,"TargetID":108115,"Directional":false}]},{"ID":4220,"SourceStructureID":108162,"TargetStructureID":6155,"Label":"108162-6155 via Unknown from 108163 -> 108161","Type":"Unknown","Directional":false,"Links":[{"SourceID":108163,"TargetID":108161,"Directional":false}]},{"ID":4221,"SourceStructureID":6155,"TargetStructureID":108235,"Label":"6155-108235 via Adherens from 108245 -> 108244","Type":"Adherens","Directional":false,"Links":[{"SourceID":108245,"TargetID":108244,"Directional":false}]},{"ID":4222,"SourceStructureID":108289,"TargetStructureID":6155,"Label":"108289-6155 via Adherens from 108291 -> 108290","Type":"Adherens","Directional":false,"Links":[{"SourceID":108291,"TargetID":108290,"Directional":false}]},{"ID":4223,"SourceStructureID":6155,"TargetStructureID":108300,"Label":"6155-108300 via Unknown from 108303 -> 108304","Type":"Unknown","Directional":false,"Links":[{"SourceID":108303,"TargetID":108304,"Directional":false}]},{"ID":4224,"SourceStructureID":108351,"TargetStructureID":6155,"Label":"108351-6155 via Unknown from 108352 -> 108350","Type":"Unknown","Directional":false,"Links":[{"SourceID":108352,"TargetID":108350,"Directional":false}]},{"ID":4225,"SourceStructureID":6857,"TargetStructureID":6156,"Label":"6857-6156 via Unknown from 133425 -> 133426","Type":"Unknown","Directional":false,"Links":[{"SourceID":133425,"TargetID":133426,"Directional":false}]},{"ID":4226,"SourceStructureID":6997,"TargetStructureID":6156,"Label":"6997-6156 via Gap Junction from 135075 -> 135074","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135075,"TargetID":135074,"Directional":false}]},{"ID":4227,"SourceStructureID":6156,"TargetStructureID":6997,"Label":"6156-6997 via Touch from 136724 -> 136725","Type":"Touch","Directional":false,"Links":[{"SourceID":136724,"TargetID":136725,"Directional":false}]},{"ID":4228,"SourceStructureID":6156,"TargetStructureID":8037,"Label":"6156-8037 via Adherens from 133323 -> 133322","Type":"Adherens","Directional":false,"Links":[{"SourceID":133323,"TargetID":133322,"Directional":false}]},{"ID":4229,"SourceStructureID":8037,"TargetStructureID":6156,"Label":"8037-6156 via Gap Junction from 117528 -> 117527","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117528,"TargetID":117527,"Directional":false}]},{"ID":4230,"SourceStructureID":6156,"TargetStructureID":12208,"Label":"6156-12208 via Adherens from 22345 -> 22344","Type":"Adherens","Directional":false,"Links":[{"SourceID":22345,"TargetID":22344,"Directional":false}]},{"ID":4231,"SourceStructureID":18576,"TargetStructureID":6156,"Label":"18576-6156 via Adherens from 133215 -> 133214","Type":"Adherens","Directional":false,"Links":[{"SourceID":133215,"TargetID":133214,"Directional":false}]},{"ID":4232,"SourceStructureID":6156,"TargetStructureID":39530,"Label":"6156-39530 via Unknown from 133376 -> 133377","Type":"Unknown","Directional":false,"Links":[{"SourceID":133376,"TargetID":133377,"Directional":false}]},{"ID":4233,"SourceStructureID":6156,"TargetStructureID":47104,"Label":"6156-47104 via Unknown from 133394 -> 133395","Type":"Unknown","Directional":false,"Links":[{"SourceID":133394,"TargetID":133395,"Directional":false}]},{"ID":4234,"SourceStructureID":48612,"TargetStructureID":6156,"Label":"48612-6156 via Adherens from 133340 -> 117607","Type":"Adherens","Directional":false,"Links":[{"SourceID":133340,"TargetID":117607,"Directional":false}]},{"ID":4235,"SourceStructureID":6156,"TargetStructureID":49600,"Label":"6156-49600 via Adherens from 133358 -> 133359","Type":"Adherens","Directional":false,"Links":[{"SourceID":133358,"TargetID":133359,"Directional":false}]},{"ID":4236,"SourceStructureID":6156,"TargetStructureID":54744,"Label":"6156-54744 via Adherens from 133373 -> 133374","Type":"Adherens","Directional":false,"Links":[{"SourceID":133373,"TargetID":133374,"Directional":false}]},{"ID":4237,"SourceStructureID":59422,"TargetStructureID":6156,"Label":"59422-6156 via Adherens from 59435 -> 59436","Type":"Adherens","Directional":false,"Links":[{"SourceID":59435,"TargetID":59436,"Directional":false}]},{"ID":4238,"SourceStructureID":60201,"TargetStructureID":6156,"Label":"60201-6156 via Unknown from 133231 -> 133232","Type":"Unknown","Directional":false,"Links":[{"SourceID":133231,"TargetID":133232,"Directional":false}]},{"ID":4239,"SourceStructureID":60645,"TargetStructureID":6156,"Label":"60645-6156 via Adherens from 133180 -> 133179","Type":"Adherens","Directional":false,"Links":[{"SourceID":133180,"TargetID":133179,"Directional":false}]},{"ID":4240,"SourceStructureID":60657,"TargetStructureID":6156,"Label":"60657-6156 via Adherens from 133174 -> 133175","Type":"Adherens","Directional":false,"Links":[{"SourceID":133174,"TargetID":133175,"Directional":false}]},{"ID":4241,"SourceStructureID":6156,"TargetStructureID":68042,"Label":"6156-68042 via Unknown from 133327 -> 133326","Type":"Unknown","Directional":false,"Links":[{"SourceID":133327,"TargetID":133326,"Directional":false}]},{"ID":4242,"SourceStructureID":91267,"TargetStructureID":6156,"Label":"91267-6156 via Unknown from 133444 -> 133443","Type":"Unknown","Directional":false,"Links":[{"SourceID":133444,"TargetID":133443,"Directional":false}]},{"ID":4243,"SourceStructureID":101686,"TargetStructureID":6156,"Label":"101686-6156 via Adherens from 133397 -> 133396","Type":"Adherens","Directional":false,"Links":[{"SourceID":133397,"TargetID":133396,"Directional":false}]},{"ID":4244,"SourceStructureID":101707,"TargetStructureID":6156,"Label":"101707-6156 via Unknown from 133199 -> 133198","Type":"Unknown","Directional":false,"Links":[{"SourceID":133199,"TargetID":133198,"Directional":false}]},{"ID":4245,"SourceStructureID":6158,"TargetStructureID":6162,"Label":"6158-6162 via Gap Junction from 115480 -> 115481","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115480,"TargetID":115481,"Directional":false}]},{"ID":4246,"SourceStructureID":6158,"TargetStructureID":6162,"Label":"6158-6162 via Unknown from 115475 -> 115476","Type":"Unknown","Directional":false,"Links":[{"SourceID":115475,"TargetID":115476,"Directional":false}]},{"ID":4247,"SourceStructureID":7951,"TargetStructureID":6158,"Label":"7951-6158 via Gap Junction from 115479 -> 38074, 120644 -> 120643, 120667 -> 120666, 132454 -> 132453","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115479,"TargetID":38074,"Directional":false},{"SourceID":120644,"TargetID":120643,"Directional":false},{"SourceID":120667,"TargetID":120666,"Directional":false},{"SourceID":132454,"TargetID":132453,"Directional":false}]},{"ID":4248,"SourceStructureID":69428,"TargetStructureID":6158,"Label":"69428-6158 via Gap Junction from 120827 -> 120826","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120827,"TargetID":120826,"Directional":false}]},{"ID":4249,"SourceStructureID":115424,"TargetStructureID":6158,"Label":"115424-6158 via Gap Junction from 120817 -> 120816","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120817,"TargetID":120816,"Directional":false}]},{"ID":4250,"SourceStructureID":115487,"TargetStructureID":6158,"Label":"115487-6158 via Gap Junction from 115488 -> 115486","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115488,"TargetID":115486,"Directional":false}]},{"ID":4251,"SourceStructureID":6162,"TargetStructureID":6162,"Label":"6162-6162 via Gap Junction from 120749 -> 120750","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120749,"TargetID":120750,"Directional":false}]},{"ID":4252,"SourceStructureID":6162,"TargetStructureID":47445,"Label":"6162-47445 via Gap Junction from 131995 -> 131996, 132003 -> 132004, 132005 -> 132006, 132031 -> 47448","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131995,"TargetID":131996,"Directional":false},{"SourceID":132003,"TargetID":132004,"Directional":false},{"SourceID":132005,"TargetID":132006,"Directional":false},{"SourceID":132031,"TargetID":47448,"Directional":false}]},{"ID":4253,"SourceStructureID":121889,"TargetStructureID":6162,"Label":"121889-6162 via Gap Junction from 132001 -> 132002","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132001,"TargetID":132002,"Directional":false}]},{"ID":4254,"SourceStructureID":6162,"TargetStructureID":121899,"Label":"6162-121899 via Gap Junction from 122378 -> 122379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122378,"TargetID":122379,"Directional":false}]},{"ID":4255,"SourceStructureID":131886,"TargetStructureID":6162,"Label":"131886-6162 via Gap Junction from 131887 -> 29107","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131887,"TargetID":29107,"Directional":false}]},{"ID":4256,"SourceStructureID":61270,"TargetStructureID":6163,"Label":"61270-6163 via Touch from 61299 -> 61298","Type":"Touch","Directional":false,"Links":[{"SourceID":61299,"TargetID":61298,"Directional":false}]},{"ID":4257,"SourceStructureID":6165,"TargetStructureID":6165,"Label":"6165-6165 via Gap Junction from 118057 -> 118056","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118057,"TargetID":118056,"Directional":false}]},{"ID":4258,"SourceStructureID":6169,"TargetStructureID":7113,"Label":"6169-7113 via Gap Junction from 29711 -> 29710","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29711,"TargetID":29710,"Directional":false}]},{"ID":4259,"SourceStructureID":6169,"TargetStructureID":7147,"Label":"6169-7147 via Gap Junction from 29707 -> 29697, 29714 -> 29713","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29707,"TargetID":29697,"Directional":false},{"SourceID":29714,"TargetID":29713,"Directional":false}]},{"ID":4260,"SourceStructureID":7859,"TargetStructureID":6169,"Label":"7859-6169 via Touch from 64686 -> 64687","Type":"Touch","Directional":false,"Links":[{"SourceID":64686,"TargetID":64687,"Directional":false}]},{"ID":4261,"SourceStructureID":6169,"TargetStructureID":39201,"Label":"6169-39201 via Adherens from 16168 -> 89479","Type":"Adherens","Directional":false,"Links":[{"SourceID":16168,"TargetID":89479,"Directional":false}]},{"ID":4262,"SourceStructureID":6169,"TargetStructureID":39787,"Label":"6169-39787 via Adherens from 87739 -> 87736","Type":"Adherens","Directional":false,"Links":[{"SourceID":87739,"TargetID":87736,"Directional":false}]},{"ID":4263,"SourceStructureID":39816,"TargetStructureID":6169,"Label":"39816-6169 via Unknown from 89973 -> 89974","Type":"Unknown","Directional":false,"Links":[{"SourceID":89973,"TargetID":89974,"Directional":false}]},{"ID":4264,"SourceStructureID":40896,"TargetStructureID":6169,"Label":"40896-6169 via Adherens from 40900 -> 14162","Type":"Adherens","Directional":false,"Links":[{"SourceID":40900,"TargetID":14162,"Directional":false}]},{"ID":4265,"SourceStructureID":6169,"TargetStructureID":60863,"Label":"6169-60863 via Adherens from 75233 -> 75231","Type":"Adherens","Directional":false,"Links":[{"SourceID":75233,"TargetID":75231,"Directional":false}]},{"ID":4266,"SourceStructureID":6169,"TargetStructureID":136432,"Label":"6169-136432 via Touch from 136541 -> 136540","Type":"Touch","Directional":false,"Links":[{"SourceID":136541,"TargetID":136540,"Directional":false}]},{"ID":4267,"SourceStructureID":7114,"TargetStructureID":6203,"Label":"7114-6203 via Gap Junction from 57229 -> 57213","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57229,"TargetID":57213,"Directional":false}]},{"ID":4268,"SourceStructureID":57226,"TargetStructureID":6203,"Label":"57226-6203 via Gap Junction from 57227 -> 57225","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57227,"TargetID":57225,"Directional":false}]},{"ID":4269,"SourceStructureID":57248,"TargetStructureID":6203,"Label":"57248-6203 via Gap Junction from 57249 -> 57247","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57249,"TargetID":57247,"Directional":false}]},{"ID":4270,"SourceStructureID":6203,"TargetStructureID":57273,"Label":"6203-57273 via Gap Junction from 57272 -> 57286","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57272,"TargetID":57286,"Directional":false}]},{"ID":4271,"SourceStructureID":6203,"TargetStructureID":57353,"Label":"6203-57353 via Gap Junction from 52117 -> 57354, 115323 -> 115322, 124296 -> 124297","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52117,"TargetID":57354,"Directional":false},{"SourceID":115323,"TargetID":115322,"Directional":false},{"SourceID":124296,"TargetID":124297,"Directional":false}]},{"ID":4272,"SourceStructureID":6203,"TargetStructureID":57353,"Label":"6203-57353 via Unknown from 124413 -> 124414","Type":"Unknown","Directional":false,"Links":[{"SourceID":124413,"TargetID":124414,"Directional":false}]},{"ID":4273,"SourceStructureID":89670,"TargetStructureID":6203,"Label":"89670-6203 via Unknown from 125781 -> 125780","Type":"Unknown","Directional":false,"Links":[{"SourceID":125781,"TargetID":125780,"Directional":false}]},{"ID":4274,"SourceStructureID":6204,"TargetStructureID":6204,"Label":"6204-6204 via Gap Junction from 118085 -> 57293, 118154 -> 118153","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118085,"TargetID":57293,"Directional":false},{"SourceID":118154,"TargetID":118153,"Directional":false}]},{"ID":4275,"SourceStructureID":8032,"TargetStructureID":6204,"Label":"8032-6204 via Gap Junction from 32521 -> 118116","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32521,"TargetID":118116,"Directional":false}]},{"ID":4276,"SourceStructureID":22994,"TargetStructureID":6204,"Label":"22994-6204 via Gap Junction from 118120 -> 118118, 118128 -> 118129, 118131 -> 118132, 118134 -> 118133","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118120,"TargetID":118118,"Directional":false},{"SourceID":118128,"TargetID":118129,"Directional":false},{"SourceID":118131,"TargetID":118132,"Directional":false},{"SourceID":118134,"TargetID":118133,"Directional":false}]},{"ID":4277,"SourceStructureID":6204,"TargetStructureID":33039,"Label":"6204-33039 via Gap Junction from 52633 -> 52634","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52633,"TargetID":52634,"Directional":false}]},{"ID":4278,"SourceStructureID":6204,"TargetStructureID":57353,"Label":"6204-57353 via Touch from 124327 -> 124326","Type":"Touch","Directional":false,"Links":[{"SourceID":124327,"TargetID":124326,"Directional":false}]},{"ID":4279,"SourceStructureID":6204,"TargetStructureID":132009,"Label":"6204-132009 via Gap Junction from 132008 -> 132010","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132008,"TargetID":132010,"Directional":false}]},{"ID":4280,"SourceStructureID":86634,"TargetStructureID":6561,"Label":"86634-6561 via Adherens from 86706 -> 8304","Type":"Adherens","Directional":false,"Links":[{"SourceID":86706,"TargetID":8304,"Directional":false}]},{"ID":4281,"SourceStructureID":6589,"TargetStructureID":6589,"Label":"6589-6589 via Adherens from 119941 -> 119940","Type":"Adherens","Directional":false,"Links":[{"SourceID":119941,"TargetID":119940,"Directional":false}]},{"ID":4282,"SourceStructureID":6997,"TargetStructureID":6589,"Label":"6997-6589 via Adherens from 130563 -> 130562","Type":"Adherens","Directional":false,"Links":[{"SourceID":130563,"TargetID":130562,"Directional":false}]},{"ID":4283,"SourceStructureID":6997,"TargetStructureID":6589,"Label":"6997-6589 via Gap Junction from 130565 -> 130564, 132620 -> 132619","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130565,"TargetID":130564,"Directional":false},{"SourceID":132620,"TargetID":132619,"Directional":false}]},{"ID":4284,"SourceStructureID":6589,"TargetStructureID":8037,"Label":"6589-8037 via Adherens from 130636 -> 132615","Type":"Adherens","Directional":false,"Links":[{"SourceID":130636,"TargetID":132615,"Directional":false}]},{"ID":4285,"SourceStructureID":6589,"TargetStructureID":8037,"Label":"6589-8037 via Gap Junction from 130637 -> 132616","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130637,"TargetID":132616,"Directional":false}]},{"ID":4286,"SourceStructureID":9693,"TargetStructureID":6589,"Label":"9693-6589 via Adherens from 130583 -> 130582","Type":"Adherens","Directional":false,"Links":[{"SourceID":130583,"TargetID":130582,"Directional":false}]},{"ID":4287,"SourceStructureID":13855,"TargetStructureID":6589,"Label":"13855-6589 via Unknown from 132691 -> 132690, 132708 -> 132709, 132762 -> 132763","Type":"Unknown","Directional":false,"Links":[{"SourceID":132691,"TargetID":132690,"Directional":false},{"SourceID":132708,"TargetID":132709,"Directional":false},{"SourceID":132762,"TargetID":132763,"Directional":false}]},{"ID":4288,"SourceStructureID":6589,"TargetStructureID":22554,"Label":"6589-22554 via Unknown from 132682 -> 132683","Type":"Unknown","Directional":false,"Links":[{"SourceID":132682,"TargetID":132683,"Directional":false}]},{"ID":4289,"SourceStructureID":40469,"TargetStructureID":6589,"Label":"40469-6589 via Unknown from 132701 -> 132700","Type":"Unknown","Directional":false,"Links":[{"SourceID":132701,"TargetID":132700,"Directional":false}]},{"ID":4290,"SourceStructureID":6589,"TargetStructureID":87158,"Label":"6589-87158 via Unknown from 130557 -> 130558","Type":"Unknown","Directional":false,"Links":[{"SourceID":130557,"TargetID":130558,"Directional":false}]},{"ID":4291,"SourceStructureID":6589,"TargetStructureID":95701,"Label":"6589-95701 via Unknown from 132702 -> 132703","Type":"Unknown","Directional":false,"Links":[{"SourceID":132702,"TargetID":132703,"Directional":false}]},{"ID":4292,"SourceStructureID":132773,"TargetStructureID":6589,"Label":"132773-6589 via Gap Junction from 132780 -> 130629","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132780,"TargetID":130629,"Directional":false}]},{"ID":4293,"SourceStructureID":6617,"TargetStructureID":8033,"Label":"6617-8033 via Touch from 61253 -> 61254","Type":"Touch","Directional":false,"Links":[{"SourceID":61253,"TargetID":61254,"Directional":false}]},{"ID":4294,"SourceStructureID":6618,"TargetStructureID":40919,"Label":"6618-40919 via Touch from 60506 -> 60505","Type":"Touch","Directional":false,"Links":[{"SourceID":60506,"TargetID":60505,"Directional":false}]},{"ID":4295,"SourceStructureID":8586,"TargetStructureID":6857,"Label":"8586-6857 via Touch from 32688 -> 32687","Type":"Touch","Directional":false,"Links":[{"SourceID":32688,"TargetID":32687,"Directional":false}]},{"ID":4296,"SourceStructureID":6857,"TargetStructureID":18576,"Label":"6857-18576 via Adherens from 100534 -> 100533","Type":"Adherens","Directional":false,"Links":[{"SourceID":100534,"TargetID":100533,"Directional":false}]},{"ID":4297,"SourceStructureID":6857,"TargetStructureID":71513,"Label":"6857-71513 via Adherens from 77722 -> 77721","Type":"Adherens","Directional":false,"Links":[{"SourceID":77722,"TargetID":77721,"Directional":false}]},{"ID":4298,"SourceStructureID":6857,"TargetStructureID":71517,"Label":"6857-71517 via Adherens from 66680 -> 66681, 72123 -> 72122, 74985 -> 74984, 74986 -> 74987, 75165 -> 75164","Type":"Adherens","Directional":false,"Links":[{"SourceID":66680,"TargetID":66681,"Directional":false},{"SourceID":72123,"TargetID":72122,"Directional":false},{"SourceID":74985,"TargetID":74984,"Directional":false},{"SourceID":74986,"TargetID":74987,"Directional":false},{"SourceID":75165,"TargetID":75164,"Directional":false}]},{"ID":4299,"SourceStructureID":6909,"TargetStructureID":6909,"Label":"6909-6909 via Gap Junction from 122782 -> 122789","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122782,"TargetID":122789,"Directional":false}]},{"ID":4300,"SourceStructureID":6909,"TargetStructureID":6964,"Label":"6909-6964 via Gap Junction from 122965 -> 122966, 122968 -> 122969, 122972 -> 122971, 122973 -> 122974, 122975 -> 122976, 122977 -> 121677, 123104 -> 123105","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122965,"TargetID":122966,"Directional":false},{"SourceID":122968,"TargetID":122969,"Directional":false},{"SourceID":122972,"TargetID":122971,"Directional":false},{"SourceID":122973,"TargetID":122974,"Directional":false},{"SourceID":122975,"TargetID":122976,"Directional":false},{"SourceID":122977,"TargetID":121677,"Directional":false},{"SourceID":123104,"TargetID":123105,"Directional":false}]},{"ID":4301,"SourceStructureID":6909,"TargetStructureID":6965,"Label":"6909-6965 via Gap Junction from 123009 -> 123008, 123011 -> 123010, 123013 -> 123012, 123016 -> 123015, 123019 -> 123018, 123020 -> 123021, 123022 -> 123023, 123024 -> 123025","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123009,"TargetID":123008,"Directional":false},{"SourceID":123011,"TargetID":123010,"Directional":false},{"SourceID":123013,"TargetID":123012,"Directional":false},{"SourceID":123016,"TargetID":123015,"Directional":false},{"SourceID":123019,"TargetID":123018,"Directional":false},{"SourceID":123020,"TargetID":123021,"Directional":false},{"SourceID":123022,"TargetID":123023,"Directional":false},{"SourceID":123024,"TargetID":123025,"Directional":false}]},{"ID":4302,"SourceStructureID":6909,"TargetStructureID":7345,"Label":"6909-7345 via Gap Junction from 121675 -> 56577, 122645 -> 39139, 122788 -> 122787","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121675,"TargetID":56577,"Directional":false},{"SourceID":122645,"TargetID":39139,"Directional":false},{"SourceID":122788,"TargetID":122787,"Directional":false}]},{"ID":4303,"SourceStructureID":44256,"TargetStructureID":6909,"Label":"44256-6909 via Gap Junction from 121683 -> 121682, 121687 -> 121686, 123103 -> 123107","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121683,"TargetID":121682,"Directional":false},{"SourceID":121687,"TargetID":121686,"Directional":false},{"SourceID":123103,"TargetID":123107,"Directional":false}]},{"ID":4304,"SourceStructureID":44256,"TargetStructureID":6909,"Label":"44256-6909 via Unknown from 122651 -> 122650","Type":"Unknown","Directional":false,"Links":[{"SourceID":122651,"TargetID":122650,"Directional":false}]},{"ID":4305,"SourceStructureID":44338,"TargetStructureID":6909,"Label":"44338-6909 via Gap Junction from 122978 -> 122661","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122978,"TargetID":122661,"Directional":false}]},{"ID":4306,"SourceStructureID":122663,"TargetStructureID":6909,"Label":"122663-6909 via Gap Junction from 122664 -> 122662","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122664,"TargetID":122662,"Directional":false}]},{"ID":4307,"SourceStructureID":24401,"TargetStructureID":6912,"Label":"24401-6912 via Gap Junction from 48016 -> 48018","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48016,"TargetID":48018,"Directional":false}]},{"ID":4308,"SourceStructureID":26079,"TargetStructureID":6912,"Label":"26079-6912 via Gap Junction from 48666 -> 48350, 48672 -> 121215, 121210 -> 51034","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48666,"TargetID":48350,"Directional":false},{"SourceID":48672,"TargetID":121215,"Directional":false},{"SourceID":121210,"TargetID":51034,"Directional":false}]},{"ID":4309,"SourceStructureID":6912,"TargetStructureID":39862,"Label":"6912-39862 via Gap Junction from 51026 -> 51210, 51133 -> 51178, 51209 -> 51027","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51026,"TargetID":51210,"Directional":false},{"SourceID":51133,"TargetID":51178,"Directional":false},{"SourceID":51209,"TargetID":51027,"Directional":false}]},{"ID":4310,"SourceStructureID":6912,"TargetStructureID":51100,"Label":"6912-51100 via Gap Junction from 51080 -> 51101","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51080,"TargetID":51101,"Directional":false}]},{"ID":4311,"SourceStructureID":7114,"TargetStructureID":6958,"Label":"7114-6958 via Gap Junction from 116682 -> 116677, 117151 -> 117150, 122901 -> 116838","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116682,"TargetID":116677,"Directional":false},{"SourceID":117151,"TargetID":117150,"Directional":false},{"SourceID":122901,"TargetID":116838,"Directional":false}]},{"ID":4312,"SourceStructureID":8589,"TargetStructureID":6958,"Label":"8589-6958 via Adherens from 70473 -> 70474, 71316 -> 71317","Type":"Adherens","Directional":false,"Links":[{"SourceID":70473,"TargetID":70474,"Directional":false},{"SourceID":71316,"TargetID":71317,"Directional":false}]},{"ID":4313,"SourceStructureID":57169,"TargetStructureID":6958,"Label":"57169-6958 via Gap Junction from 57173 -> 57175, 117083 -> 117082","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57173,"TargetID":57175,"Directional":false},{"SourceID":117083,"TargetID":117082,"Directional":false}]},{"ID":4314,"SourceStructureID":116835,"TargetStructureID":6958,"Label":"116835-6958 via Gap Junction from 116836 -> 116683","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116836,"TargetID":116683,"Directional":false}]},{"ID":4315,"SourceStructureID":6958,"TargetStructureID":118087,"Label":"6958-118087 via Unknown from 118089 -> 118090","Type":"Unknown","Directional":false,"Links":[{"SourceID":118089,"TargetID":118090,"Directional":false}]},{"ID":4316,"SourceStructureID":6961,"TargetStructureID":7279,"Label":"6961-7279 via Gap Junction from 34731 -> 34730","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":34731,"TargetID":34730,"Directional":false}]},{"ID":4317,"SourceStructureID":6965,"TargetStructureID":6965,"Label":"6965-6965 via Gap Junction from 123029 -> 123030","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123029,"TargetID":123030,"Directional":false}]},{"ID":4318,"SourceStructureID":7446,"TargetStructureID":6965,"Label":"7446-6965 via Gap Junction from 64766 -> 121941, 118312 -> 121935, 118313 -> 121936, 122413 -> 122412, 123047 -> 123046, 123123 -> 123124","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64766,"TargetID":121941,"Directional":false},{"SourceID":118312,"TargetID":121935,"Directional":false},{"SourceID":118313,"TargetID":121936,"Directional":false},{"SourceID":122413,"TargetID":122412,"Directional":false},{"SourceID":123047,"TargetID":123046,"Directional":false},{"SourceID":123123,"TargetID":123124,"Directional":false}]},{"ID":4319,"SourceStructureID":6997,"TargetStructureID":8720,"Label":"6997-8720 via Unknown from 136746 -> 136745","Type":"Unknown","Directional":false,"Links":[{"SourceID":136746,"TargetID":136745,"Directional":false}]},{"ID":4320,"SourceStructureID":6997,"TargetStructureID":9693,"Label":"6997-9693 via Touch from 136665 -> 136666","Type":"Touch","Directional":false,"Links":[{"SourceID":136665,"TargetID":136666,"Directional":false}]},{"ID":4321,"SourceStructureID":6997,"TargetStructureID":19203,"Label":"6997-19203 via Touch from 135818 -> 135819","Type":"Touch","Directional":false,"Links":[{"SourceID":135818,"TargetID":135819,"Directional":false}]},{"ID":4322,"SourceStructureID":32654,"TargetStructureID":6997,"Label":"32654-6997 via Gap Junction from 49278 -> 22249","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49278,"TargetID":22249,"Directional":false}]},{"ID":4323,"SourceStructureID":32804,"TargetStructureID":6997,"Label":"32804-6997 via Adherens from 136558 -> 136557","Type":"Adherens","Directional":false,"Links":[{"SourceID":136558,"TargetID":136557,"Directional":false}]},{"ID":4324,"SourceStructureID":6997,"TargetStructureID":56486,"Label":"6997-56486 via Unknown from 49246 -> 56487, 136765 -> 136242","Type":"Unknown","Directional":false,"Links":[{"SourceID":49246,"TargetID":56487,"Directional":false},{"SourceID":136765,"TargetID":136242,"Directional":false}]},{"ID":4325,"SourceStructureID":6997,"TargetStructureID":66958,"Label":"6997-66958 via Adherens from 83029 -> 70071","Type":"Adherens","Directional":false,"Links":[{"SourceID":83029,"TargetID":70071,"Directional":false}]},{"ID":4326,"SourceStructureID":6997,"TargetStructureID":66958,"Label":"6997-66958 via Unknown from 136718 -> 136717","Type":"Unknown","Directional":false,"Links":[{"SourceID":136718,"TargetID":136717,"Directional":false}]},{"ID":4327,"SourceStructureID":68286,"TargetStructureID":6997,"Label":"68286-6997 via Adherens from 80651 -> 80650","Type":"Adherens","Directional":false,"Links":[{"SourceID":80651,"TargetID":80650,"Directional":false}]},{"ID":4328,"SourceStructureID":6997,"TargetStructureID":68289,"Label":"6997-68289 via Adherens from 80643 -> 80642","Type":"Adherens","Directional":false,"Links":[{"SourceID":80643,"TargetID":80642,"Directional":false}]},{"ID":4329,"SourceStructureID":6997,"TargetStructureID":70014,"Label":"6997-70014 via Unknown from 96052 -> 96051","Type":"Unknown","Directional":false,"Links":[{"SourceID":96052,"TargetID":96051,"Directional":false}]},{"ID":4330,"SourceStructureID":6997,"TargetStructureID":70069,"Label":"6997-70069 via Gap Junction from 83070 -> 83071","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83070,"TargetID":83071,"Directional":false}]},{"ID":4331,"SourceStructureID":78303,"TargetStructureID":6997,"Label":"78303-6997 via Adherens from 136272 -> 136271","Type":"Adherens","Directional":false,"Links":[{"SourceID":136272,"TargetID":136271,"Directional":false}]},{"ID":4332,"SourceStructureID":6997,"TargetStructureID":79916,"Label":"6997-79916 via Adherens from 83116 -> 79919","Type":"Adherens","Directional":false,"Links":[{"SourceID":83116,"TargetID":79919,"Directional":false}]},{"ID":4333,"SourceStructureID":79928,"TargetStructureID":6997,"Label":"79928-6997 via Unknown from 83101 -> 83102","Type":"Unknown","Directional":false,"Links":[{"SourceID":83101,"TargetID":83102,"Directional":false}]},{"ID":4334,"SourceStructureID":79937,"TargetStructureID":6997,"Label":"79937-6997 via Adherens from 79938 -> 83103","Type":"Adherens","Directional":false,"Links":[{"SourceID":79938,"TargetID":83103,"Directional":false}]},{"ID":4335,"SourceStructureID":6997,"TargetStructureID":79950,"Label":"6997-79950 via Unknown from 83110 -> 79953","Type":"Unknown","Directional":false,"Links":[{"SourceID":83110,"TargetID":79953,"Directional":false}]},{"ID":4336,"SourceStructureID":79962,"TargetStructureID":6997,"Label":"79962-6997 via Adherens from 79963 -> 83092","Type":"Adherens","Directional":false,"Links":[{"SourceID":79963,"TargetID":83092,"Directional":false}]},{"ID":4337,"SourceStructureID":6997,"TargetStructureID":79970,"Label":"6997-79970 via Adherens from 83075 -> 79972","Type":"Adherens","Directional":false,"Links":[{"SourceID":83075,"TargetID":79972,"Directional":false}]},{"ID":4338,"SourceStructureID":79981,"TargetStructureID":6997,"Label":"79981-6997 via Unknown from 79982 -> 83074","Type":"Unknown","Directional":false,"Links":[{"SourceID":79982,"TargetID":83074,"Directional":false}]},{"ID":4339,"SourceStructureID":79986,"TargetStructureID":6997,"Label":"79986-6997 via Unknown from 80012 -> 83087","Type":"Unknown","Directional":false,"Links":[{"SourceID":80012,"TargetID":83087,"Directional":false}]},{"ID":4340,"SourceStructureID":6997,"TargetStructureID":79988,"Label":"6997-79988 via Unknown from 83077 -> 79989","Type":"Unknown","Directional":false,"Links":[{"SourceID":83077,"TargetID":79989,"Directional":false}]},{"ID":4341,"SourceStructureID":6997,"TargetStructureID":79993,"Label":"6997-79993 via Unknown from 83083 -> 80005, 83084 -> 83093","Type":"Unknown","Directional":false,"Links":[{"SourceID":83083,"TargetID":80005,"Directional":false},{"SourceID":83084,"TargetID":83093,"Directional":false}]},{"ID":4342,"SourceStructureID":6997,"TargetStructureID":80007,"Label":"6997-80007 via Unknown from 83090 -> 80010","Type":"Unknown","Directional":false,"Links":[{"SourceID":83090,"TargetID":80010,"Directional":false}]},{"ID":4343,"SourceStructureID":6997,"TargetStructureID":80008,"Label":"6997-80008 via Unknown from 83090 -> 80009","Type":"Unknown","Directional":false,"Links":[{"SourceID":83090,"TargetID":80009,"Directional":false}]},{"ID":4344,"SourceStructureID":6997,"TargetStructureID":80013,"Label":"6997-80013 via Unknown from 83086 -> 80015","Type":"Unknown","Directional":false,"Links":[{"SourceID":83086,"TargetID":80015,"Directional":false}]},{"ID":4345,"SourceStructureID":6997,"TargetStructureID":80039,"Label":"6997-80039 via Unknown from 83028 -> 80040","Type":"Unknown","Directional":false,"Links":[{"SourceID":83028,"TargetID":80040,"Directional":false}]},{"ID":4346,"SourceStructureID":6997,"TargetStructureID":80046,"Label":"6997-80046 via Adherens from 83068 -> 80047","Type":"Adherens","Directional":false,"Links":[{"SourceID":83068,"TargetID":80047,"Directional":false}]},{"ID":4347,"SourceStructureID":80049,"TargetStructureID":6997,"Label":"80049-6997 via Unknown from 80050 -> 83022","Type":"Unknown","Directional":false,"Links":[{"SourceID":80050,"TargetID":83022,"Directional":false}]},{"ID":4348,"SourceStructureID":6997,"TargetStructureID":80051,"Label":"6997-80051 via Unknown from 83018 -> 80052","Type":"Unknown","Directional":false,"Links":[{"SourceID":83018,"TargetID":80052,"Directional":false}]},{"ID":4349,"SourceStructureID":92331,"TargetStructureID":6997,"Label":"92331-6997 via Unknown from 92332 -> 22273","Type":"Unknown","Directional":false,"Links":[{"SourceID":92332,"TargetID":22273,"Directional":false}]},{"ID":4350,"SourceStructureID":6997,"TargetStructureID":95482,"Label":"6997-95482 via Adherens from 95481 -> 95483","Type":"Adherens","Directional":false,"Links":[{"SourceID":95481,"TargetID":95483,"Directional":false}]},{"ID":4351,"SourceStructureID":6997,"TargetStructureID":95772,"Label":"6997-95772 via Gap Junction from 95771 -> 95775","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95771,"TargetID":95775,"Directional":false}]},{"ID":4352,"SourceStructureID":6997,"TargetStructureID":95999,"Label":"6997-95999 via Adherens from 136693 -> 136694","Type":"Adherens","Directional":false,"Links":[{"SourceID":136693,"TargetID":136694,"Directional":false}]},{"ID":4353,"SourceStructureID":95999,"TargetStructureID":6997,"Label":"95999-6997 via Gap Junction from 136638 -> 136639","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136638,"TargetID":136639,"Directional":false}]},{"ID":4354,"SourceStructureID":6997,"TargetStructureID":95999,"Label":"6997-95999 via Unknown from 136695 -> 136696, 136697 -> 136698","Type":"Unknown","Directional":false,"Links":[{"SourceID":136695,"TargetID":136696,"Directional":false},{"SourceID":136697,"TargetID":136698,"Directional":false}]},{"ID":4355,"SourceStructureID":96015,"TargetStructureID":6997,"Label":"96015-6997 via Unknown from 96016 -> 96014","Type":"Unknown","Directional":false,"Links":[{"SourceID":96016,"TargetID":96014,"Directional":false}]},{"ID":4356,"SourceStructureID":96036,"TargetStructureID":6997,"Label":"96036-6997 via Unknown from 96038 -> 96035","Type":"Unknown","Directional":false,"Links":[{"SourceID":96038,"TargetID":96035,"Directional":false}]},{"ID":4357,"SourceStructureID":6997,"TargetStructureID":101437,"Label":"6997-101437 via Unknown from 136281 -> 136282","Type":"Unknown","Directional":false,"Links":[{"SourceID":136281,"TargetID":136282,"Directional":false}]},{"ID":4358,"SourceStructureID":136659,"TargetStructureID":6997,"Label":"136659-6997 via Gap Junction from 136660 -> 133251","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136660,"TargetID":133251,"Directional":false}]},{"ID":4359,"SourceStructureID":6997,"TargetStructureID":136674,"Label":"6997-136674 via Adherens from 136780 -> 136779","Type":"Adherens","Directional":false,"Links":[{"SourceID":136780,"TargetID":136779,"Directional":false}]},{"ID":4360,"SourceStructureID":136674,"TargetStructureID":6997,"Label":"136674-6997 via Gap Junction from 136778 -> 56995","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136778,"TargetID":56995,"Directional":false}]},{"ID":4361,"SourceStructureID":136677,"TargetStructureID":6997,"Label":"136677-6997 via Adherens from 136686 -> 136685","Type":"Adherens","Directional":false,"Links":[{"SourceID":136686,"TargetID":136685,"Directional":false}]},{"ID":4362,"SourceStructureID":136677,"TargetStructureID":6997,"Label":"136677-6997 via Gap Junction from 136684 -> 136595","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136684,"TargetID":136595,"Directional":false}]},{"ID":4363,"SourceStructureID":6997,"TargetStructureID":136688,"Label":"6997-136688 via Unknown from 136623 -> 136793","Type":"Unknown","Directional":false,"Links":[{"SourceID":136623,"TargetID":136793,"Directional":false}]},{"ID":4364,"SourceStructureID":136742,"TargetStructureID":6997,"Label":"136742-6997 via Unknown from 136840 -> 22189","Type":"Unknown","Directional":false,"Links":[{"SourceID":136840,"TargetID":22189,"Directional":false}]},{"ID":4365,"SourceStructureID":136748,"TargetStructureID":6997,"Label":"136748-6997 via Unknown from 136749 -> 22287","Type":"Unknown","Directional":false,"Links":[{"SourceID":136749,"TargetID":22287,"Directional":false}]},{"ID":4366,"SourceStructureID":136759,"TargetStructureID":6997,"Label":"136759-6997 via Unknown from 136761 -> 57004","Type":"Unknown","Directional":false,"Links":[{"SourceID":136761,"TargetID":57004,"Directional":false}]},{"ID":4367,"SourceStructureID":136766,"TargetStructureID":6997,"Label":"136766-6997 via Unknown from 136767 -> 63928","Type":"Unknown","Directional":false,"Links":[{"SourceID":136767,"TargetID":63928,"Directional":false}]},{"ID":4368,"SourceStructureID":6997,"TargetStructureID":136822,"Label":"6997-136822 via Gap Junction from 63927 -> 136827","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63927,"TargetID":136827,"Directional":false}]},{"ID":4369,"SourceStructureID":7024,"TargetStructureID":7024,"Label":"7024-7024 via Gap Junction from 54971 -> 40162, 93878 -> 93874, 114897 -> 114898, 136215 -> 136214","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54971,"TargetID":40162,"Directional":false},{"SourceID":93878,"TargetID":93874,"Directional":false},{"SourceID":114897,"TargetID":114898,"Directional":false},{"SourceID":136215,"TargetID":136214,"Directional":false}]},{"ID":4370,"SourceStructureID":8037,"TargetStructureID":7024,"Label":"8037-7024 via Gap Junction from 10907 -> 10906, 20235 -> 20234, 43563 -> 43564, 43566 -> 43565, 47338 -> 47335, 113487 -> 113486, 136199 -> 106964","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10907,"TargetID":10906,"Directional":false},{"SourceID":20235,"TargetID":20234,"Directional":false},{"SourceID":43563,"TargetID":43564,"Directional":false},{"SourceID":43566,"TargetID":43565,"Directional":false},{"SourceID":47338,"TargetID":47335,"Directional":false},{"SourceID":113487,"TargetID":113486,"Directional":false},{"SourceID":136199,"TargetID":106964,"Directional":false}]},{"ID":4371,"SourceStructureID":8037,"TargetStructureID":7024,"Label":"8037-7024 via Postsynapse from 114159 -> 114158","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":114159,"TargetID":114158,"Directional":false}]},{"ID":4372,"SourceStructureID":9769,"TargetStructureID":7024,"Label":"9769-7024 via Adherens from 20239 -> 20238, 20241 -> 20240, 63404 -> 63405, 93900 -> 93899, 113728 -> 113729, 113730 -> 113731, 113738 -> 113739, 113741 -> 113742, 114133 -> 114135, 114330 -> 114329, 114333 -> 114332, 114338 -> 114337, 114369 -> 114368","Type":"Adherens","Directional":false,"Links":[{"SourceID":20239,"TargetID":20238,"Directional":false},{"SourceID":20241,"TargetID":20240,"Directional":false},{"SourceID":63404,"TargetID":63405,"Directional":false},{"SourceID":93900,"TargetID":93899,"Directional":false},{"SourceID":113728,"TargetID":113729,"Directional":false},{"SourceID":113730,"TargetID":113731,"Directional":false},{"SourceID":113738,"TargetID":113739,"Directional":false},{"SourceID":113741,"TargetID":113742,"Directional":false},{"SourceID":114133,"TargetID":114135,"Directional":false},{"SourceID":114330,"TargetID":114329,"Directional":false},{"SourceID":114333,"TargetID":114332,"Directional":false},{"SourceID":114338,"TargetID":114337,"Directional":false},{"SourceID":114369,"TargetID":114368,"Directional":false}]},{"ID":4373,"SourceStructureID":7024,"TargetStructureID":9769,"Label":"7024-9769 via Unknown from 113732 -> 113733","Type":"Unknown","Directional":false,"Links":[{"SourceID":113732,"TargetID":113733,"Directional":false}]},{"ID":4374,"SourceStructureID":20136,"TargetStructureID":7024,"Label":"20136-7024 via Gap Junction from 93849 -> 93848, 93854 -> 93850","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93849,"TargetID":93848,"Directional":false},{"SourceID":93854,"TargetID":93850,"Directional":false}]},{"ID":4375,"SourceStructureID":31161,"TargetStructureID":7024,"Label":"31161-7024 via Unknown from 106566 -> 106567","Type":"Unknown","Directional":false,"Links":[{"SourceID":106566,"TargetID":106567,"Directional":false}]},{"ID":4376,"SourceStructureID":46388,"TargetStructureID":7024,"Label":"46388-7024 via Adherens from 148227 -> 148226","Type":"Adherens","Directional":false,"Links":[{"SourceID":148227,"TargetID":148226,"Directional":false}]},{"ID":4377,"SourceStructureID":46388,"TargetStructureID":7024,"Label":"46388-7024 via Gap Junction from 46428 -> 46427, 46466 -> 46465, 46610 -> 46622, 121379 -> 121378, 121426 -> 121425, 148228 -> 93884","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46428,"TargetID":46427,"Directional":false},{"SourceID":46466,"TargetID":46465,"Directional":false},{"SourceID":46610,"TargetID":46622,"Directional":false},{"SourceID":121379,"TargetID":121378,"Directional":false},{"SourceID":121426,"TargetID":121425,"Directional":false},{"SourceID":148228,"TargetID":93884,"Directional":false}]},{"ID":4378,"SourceStructureID":7024,"TargetStructureID":48516,"Label":"7024-48516 via Gap Junction from 48576 -> 48569, 93999 -> 136225","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48576,"TargetID":48569,"Directional":false},{"SourceID":93999,"TargetID":136225,"Directional":false}]},{"ID":4379,"SourceStructureID":7024,"TargetStructureID":87294,"Label":"7024-87294 via Adherens from 114152 -> 114153","Type":"Adherens","Directional":false,"Links":[{"SourceID":114152,"TargetID":114153,"Directional":false}]},{"ID":4380,"SourceStructureID":93881,"TargetStructureID":7024,"Label":"93881-7024 via Gap Junction from 93882 -> 93880","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93882,"TargetID":93880,"Directional":false}]},{"ID":4381,"SourceStructureID":118258,"TargetStructureID":7024,"Label":"118258-7024 via Gap Junction from 118259 -> 118257","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118259,"TargetID":118257,"Directional":false}]},{"ID":4382,"SourceStructureID":8037,"TargetStructureID":7040,"Label":"8037-7040 via Touch from 136166 -> 136165","Type":"Touch","Directional":false,"Links":[{"SourceID":136166,"TargetID":136165,"Directional":false}]},{"ID":4383,"SourceStructureID":8040,"TargetStructureID":7040,"Label":"8040-7040 via Gap Junction from 93736 -> 93735, 93739 -> 93738, 93747 -> 93742, 120820 -> 93741","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93736,"TargetID":93735,"Directional":false},{"SourceID":93739,"TargetID":93738,"Directional":false},{"SourceID":93747,"TargetID":93742,"Directional":false},{"SourceID":120820,"TargetID":93741,"Directional":false}]},{"ID":4384,"SourceStructureID":8040,"TargetStructureID":7040,"Label":"8040-7040 via Unknown from 93677 -> 93676","Type":"Unknown","Directional":false,"Links":[{"SourceID":93677,"TargetID":93676,"Directional":false}]},{"ID":4385,"SourceStructureID":64939,"TargetStructureID":7040,"Label":"64939-7040 via Gap Junction from 93653 -> 93652","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93653,"TargetID":93652,"Directional":false}]},{"ID":4386,"SourceStructureID":64939,"TargetStructureID":7040,"Label":"64939-7040 via Touch from 93659 -> 93660","Type":"Touch","Directional":false,"Links":[{"SourceID":93659,"TargetID":93660,"Directional":false}]},{"ID":4387,"SourceStructureID":7040,"TargetStructureID":93647,"Label":"7040-93647 via Adherens from 93651 -> 93650","Type":"Adherens","Directional":false,"Links":[{"SourceID":93651,"TargetID":93650,"Directional":false}]},{"ID":4388,"SourceStructureID":93665,"TargetStructureID":7040,"Label":"93665-7040 via Adherens from 93669 -> 93668","Type":"Adherens","Directional":false,"Links":[{"SourceID":93669,"TargetID":93668,"Directional":false}]},{"ID":4389,"SourceStructureID":93673,"TargetStructureID":7040,"Label":"93673-7040 via Adherens from 93674 -> 93672","Type":"Adherens","Directional":false,"Links":[{"SourceID":93674,"TargetID":93672,"Directional":false}]},{"ID":4390,"SourceStructureID":93679,"TargetStructureID":7040,"Label":"93679-7040 via Gap Junction from 93680 -> 93678","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93680,"TargetID":93678,"Directional":false}]},{"ID":4391,"SourceStructureID":93685,"TargetStructureID":7040,"Label":"93685-7040 via Unknown from 93686 -> 93684","Type":"Unknown","Directional":false,"Links":[{"SourceID":93686,"TargetID":93684,"Directional":false}]},{"ID":4392,"SourceStructureID":7040,"TargetStructureID":93719,"Label":"7040-93719 via Gap Junction from 93718 -> 93720","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93718,"TargetID":93720,"Directional":false}]},{"ID":4393,"SourceStructureID":7050,"TargetStructureID":7043,"Label":"7050-7043 via Gap Junction from 24883 -> 81869, 118857 -> 118856, 131446 -> 118882","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24883,"TargetID":81869,"Directional":false},{"SourceID":118857,"TargetID":118856,"Directional":false},{"SourceID":131446,"TargetID":118882,"Directional":false}]},{"ID":4394,"SourceStructureID":7043,"TargetStructureID":8037,"Label":"7043-8037 via Gap Junction from 37729 -> 37730, 118753 -> 118752, 118790 -> 118789, 118812 -> 118809","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37729,"TargetID":37730,"Directional":false},{"SourceID":118753,"TargetID":118752,"Directional":false},{"SourceID":118790,"TargetID":118789,"Directional":false},{"SourceID":118812,"TargetID":118809,"Directional":false}]},{"ID":4395,"SourceStructureID":7043,"TargetStructureID":8038,"Label":"7043-8038 via Gap Junction from 89290 -> 68951","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89290,"TargetID":68951,"Directional":false}]},{"ID":4396,"SourceStructureID":7043,"TargetStructureID":12897,"Label":"7043-12897 via Gap Junction from 131458 -> 131459","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131458,"TargetID":131459,"Directional":false}]},{"ID":4397,"SourceStructureID":7043,"TargetStructureID":56653,"Label":"7043-56653 via Gap Junction from 118860 -> 118861","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118860,"TargetID":118861,"Directional":false}]},{"ID":4398,"SourceStructureID":89279,"TargetStructureID":7043,"Label":"89279-7043 via Gap Junction from 89288 -> 89277","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89288,"TargetID":89277,"Directional":false}]},{"ID":4399,"SourceStructureID":118682,"TargetStructureID":7043,"Label":"118682-7043 via Gap Junction from 118684 -> 118572","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118684,"TargetID":118572,"Directional":false}]},{"ID":4400,"SourceStructureID":7043,"TargetStructureID":118736,"Label":"7043-118736 via Gap Junction from 118725 -> 118737, 118738 -> 118728","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118725,"TargetID":118737,"Directional":false},{"SourceID":118738,"TargetID":118728,"Directional":false}]},{"ID":4401,"SourceStructureID":7050,"TargetStructureID":8037,"Label":"7050-8037 via Gap Junction from 29778 -> 29779, 32398 -> 32390, 68909 -> 14324, 68911 -> 68910","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29778,"TargetID":29779,"Directional":false},{"SourceID":32398,"TargetID":32390,"Directional":false},{"SourceID":68909,"TargetID":14324,"Directional":false},{"SourceID":68911,"TargetID":68910,"Directional":false}]},{"ID":4402,"SourceStructureID":8038,"TargetStructureID":7050,"Label":"8038-7050 via Gap Junction from 68939 -> 68904, 113059 -> 113056","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68939,"TargetID":68904,"Directional":false},{"SourceID":113059,"TargetID":113056,"Directional":false}]},{"ID":4403,"SourceStructureID":8040,"TargetStructureID":7050,"Label":"8040-7050 via Gap Junction from 35465 -> 24878","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35465,"TargetID":24878,"Directional":false}]},{"ID":4404,"SourceStructureID":12897,"TargetStructureID":7050,"Label":"12897-7050 via Gap Junction from 24679 -> 19501, 24727 -> 24580, 24745 -> 24713, 24845 -> 24844, 24846 -> 24843, 24875 -> 24874, 29658 -> 29657","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24679,"TargetID":19501,"Directional":false},{"SourceID":24727,"TargetID":24580,"Directional":false},{"SourceID":24745,"TargetID":24713,"Directional":false},{"SourceID":24845,"TargetID":24844,"Directional":false},{"SourceID":24846,"TargetID":24843,"Directional":false},{"SourceID":24875,"TargetID":24874,"Directional":false},{"SourceID":29658,"TargetID":29657,"Directional":false}]},{"ID":4405,"SourceStructureID":15796,"TargetStructureID":7050,"Label":"15796-7050 via Touch from 55669 -> 55670","Type":"Touch","Directional":false,"Links":[{"SourceID":55669,"TargetID":55670,"Directional":false}]},{"ID":4406,"SourceStructureID":48516,"TargetStructureID":7050,"Label":"48516-7050 via Gap Junction from 93789 -> 24880","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93789,"TargetID":24880,"Directional":false}]},{"ID":4407,"SourceStructureID":7050,"TargetStructureID":63089,"Label":"7050-63089 via Gap Junction from 63092 -> 63093","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63092,"TargetID":63093,"Directional":false}]},{"ID":4408,"SourceStructureID":7147,"TargetStructureID":7113,"Label":"7147-7113 via Gap Junction from 29720 -> 29719, 29724 -> 29718","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29720,"TargetID":29719,"Directional":false},{"SourceID":29724,"TargetID":29718,"Directional":false}]},{"ID":4409,"SourceStructureID":12203,"TargetStructureID":7113,"Label":"12203-7113 via Touch from 31369 -> 31370","Type":"Touch","Directional":false,"Links":[{"SourceID":31369,"TargetID":31370,"Directional":false}]},{"ID":4410,"SourceStructureID":15977,"TargetStructureID":7114,"Label":"15977-7114 via Gap Junction from 33950 -> 20437, 33954 -> 26611, 135959 -> 135960, 135962 -> 135963","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":33950,"TargetID":20437,"Directional":false},{"SourceID":33954,"TargetID":26611,"Directional":false},{"SourceID":135959,"TargetID":135960,"Directional":false},{"SourceID":135962,"TargetID":135963,"Directional":false}]},{"ID":4411,"SourceStructureID":7114,"TargetStructureID":88139,"Label":"7114-88139 via Adherens from 88142 -> 88141","Type":"Adherens","Directional":false,"Links":[{"SourceID":88142,"TargetID":88141,"Directional":false}]},{"ID":4412,"SourceStructureID":7114,"TargetStructureID":115118,"Label":"7114-115118 via Gap Junction from 124174 -> 124225","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124174,"TargetID":124225,"Directional":false}]},{"ID":4413,"SourceStructureID":12897,"TargetStructureID":7139,"Label":"12897-7139 via Touch from 24851 -> 24850","Type":"Touch","Directional":false,"Links":[{"SourceID":24851,"TargetID":24850,"Directional":false}]},{"ID":4414,"SourceStructureID":7147,"TargetStructureID":9769,"Label":"7147-9769 via Touch from 52594 -> 52593","Type":"Touch","Directional":false,"Links":[{"SourceID":52594,"TargetID":52593,"Directional":false}]},{"ID":4415,"SourceStructureID":7147,"TargetStructureID":12897,"Label":"7147-12897 via Gap Junction from 24636 -> 24635, 24639 -> 24638, 92806 -> 92808, 134415 -> 134412","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24636,"TargetID":24635,"Directional":false},{"SourceID":24639,"TargetID":24638,"Directional":false},{"SourceID":92806,"TargetID":92808,"Directional":false},{"SourceID":134415,"TargetID":134412,"Directional":false}]},{"ID":4416,"SourceStructureID":7147,"TargetStructureID":16026,"Label":"7147-16026 via Gap Junction from 91211 -> 91209, 91246 -> 91245","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91211,"TargetID":91209,"Directional":false},{"SourceID":91246,"TargetID":91245,"Directional":false}]},{"ID":4417,"SourceStructureID":73722,"TargetStructureID":7147,"Label":"73722-7147 via Gap Junction from 112281 -> 16067","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112281,"TargetID":16067,"Directional":false}]},{"ID":4418,"SourceStructureID":91207,"TargetStructureID":7147,"Label":"91207-7147 via Gap Junction from 91229 -> 91228","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91229,"TargetID":91228,"Directional":false}]},{"ID":4419,"SourceStructureID":7147,"TargetStructureID":122849,"Label":"7147-122849 via Gap Junction from 130525 -> 130524","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130525,"TargetID":130524,"Directional":false}]},{"ID":4420,"SourceStructureID":7149,"TargetStructureID":15976,"Label":"7149-15976 via Gap Junction from 57151 -> 36042, 93346 -> 93345, 93363 -> 93361, 121767 -> 93302","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57151,"TargetID":36042,"Directional":false},{"SourceID":93346,"TargetID":93345,"Directional":false},{"SourceID":93363,"TargetID":93361,"Directional":false},{"SourceID":121767,"TargetID":93302,"Directional":false}]},{"ID":4421,"SourceStructureID":7149,"TargetStructureID":15976,"Label":"7149-15976 via Unknown from 93349 -> 93348, 93612 -> 93611","Type":"Unknown","Directional":false,"Links":[{"SourceID":93349,"TargetID":93348,"Directional":false},{"SourceID":93612,"TargetID":93611,"Directional":false}]},{"ID":4422,"SourceStructureID":7149,"TargetStructureID":121823,"Label":"7149-121823 via Gap Junction from 121822 -> 121824","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121822,"TargetID":121824,"Directional":false}]},{"ID":4423,"SourceStructureID":121827,"TargetStructureID":7149,"Label":"121827-7149 via Gap Junction from 121828 -> 121826","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121828,"TargetID":121826,"Directional":false}]},{"ID":4424,"SourceStructureID":7468,"TargetStructureID":7157,"Label":"7468-7157 via Adherens from 31751 -> 31750","Type":"Adherens","Directional":false,"Links":[{"SourceID":31751,"TargetID":31750,"Directional":false}]},{"ID":4425,"SourceStructureID":7468,"TargetStructureID":7157,"Label":"7468-7157 via Gap Junction from 31753 -> 31752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":31753,"TargetID":31752,"Directional":false}]},{"ID":4426,"SourceStructureID":7157,"TargetStructureID":33588,"Label":"7157-33588 via Adherens from 33596 -> 33595","Type":"Adherens","Directional":false,"Links":[{"SourceID":33596,"TargetID":33595,"Directional":false}]},{"ID":4427,"SourceStructureID":37295,"TargetStructureID":7157,"Label":"37295-7157 via Gap Junction from 37301 -> 37302","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37301,"TargetID":37302,"Directional":false}]},{"ID":4428,"SourceStructureID":7157,"TargetStructureID":55403,"Label":"7157-55403 via Adherens from 55442 -> 55441","Type":"Adherens","Directional":false,"Links":[{"SourceID":55442,"TargetID":55441,"Directional":false}]},{"ID":4429,"SourceStructureID":87667,"TargetStructureID":7157,"Label":"87667-7157 via Gap Junction from 87676 -> 87675","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87676,"TargetID":87675,"Directional":false}]},{"ID":4430,"SourceStructureID":7188,"TargetStructureID":19571,"Label":"7188-19571 via Adherens from 8522 -> 22717, 22719 -> 8529, 22722 -> 22721","Type":"Adherens","Directional":false,"Links":[{"SourceID":8522,"TargetID":22717,"Directional":false},{"SourceID":22719,"TargetID":8529,"Directional":false},{"SourceID":22722,"TargetID":22721,"Directional":false}]},{"ID":4431,"SourceStructureID":25155,"TargetStructureID":7225,"Label":"25155-7225 via Gap Junction from 25177 -> 25176","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":25177,"TargetID":25176,"Directional":false}]},{"ID":4432,"SourceStructureID":38245,"TargetStructureID":7225,"Label":"38245-7225 via Gap Junction from 39165 -> 39167","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39165,"TargetID":39167,"Directional":false}]},{"ID":4433,"SourceStructureID":7231,"TargetStructureID":7231,"Label":"7231-7231 via Adherens from 117033 -> 117032","Type":"Adherens","Directional":false,"Links":[{"SourceID":117033,"TargetID":117032,"Directional":false}]},{"ID":4434,"SourceStructureID":7231,"TargetStructureID":15977,"Label":"7231-15977 via Adherens from 116989 -> 116988","Type":"Adherens","Directional":false,"Links":[{"SourceID":116989,"TargetID":116988,"Directional":false}]},{"ID":4435,"SourceStructureID":7231,"TargetStructureID":15977,"Label":"7231-15977 via Gap Junction from 116965 -> 116987","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116965,"TargetID":116987,"Directional":false}]},{"ID":4436,"SourceStructureID":7231,"TargetStructureID":15977,"Label":"7231-15977 via Unknown from 117022 -> 117021","Type":"Unknown","Directional":false,"Links":[{"SourceID":117022,"TargetID":117021,"Directional":false}]},{"ID":4437,"SourceStructureID":7279,"TargetStructureID":117112,"Label":"7279-117112 via Gap Junction from 123521 -> 123520","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123521,"TargetID":123520,"Directional":false}]},{"ID":4438,"SourceStructureID":7346,"TargetStructureID":7346,"Label":"7346-7346 via Gap Junction from 43864 -> 43866, 44122 -> 43882, 45423 -> 45422","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43864,"TargetID":43866,"Directional":false},{"SourceID":44122,"TargetID":43882,"Directional":false},{"SourceID":45423,"TargetID":45422,"Directional":false}]},{"ID":4439,"SourceStructureID":7880,"TargetStructureID":7346,"Label":"7880-7346 via Gap Junction from 45190 -> 45139, 45307 -> 45308","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45190,"TargetID":45139,"Directional":false},{"SourceID":45307,"TargetID":45308,"Directional":false}]},{"ID":4440,"SourceStructureID":11066,"TargetStructureID":7346,"Label":"11066-7346 via Gap Junction from 43951 -> 43950","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43951,"TargetID":43950,"Directional":false}]},{"ID":4441,"SourceStructureID":7346,"TargetStructureID":44095,"Label":"7346-44095 via Gap Junction from 45415 -> 44097","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45415,"TargetID":44097,"Directional":false}]},{"ID":4442,"SourceStructureID":7346,"TargetStructureID":44117,"Label":"7346-44117 via Gap Junction from 44116 -> 44118","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44116,"TargetID":44118,"Directional":false}]},{"ID":4443,"SourceStructureID":158538,"TargetStructureID":7362,"Label":"158538-7362 via Adherens from 158539 -> 117294","Type":"Adherens","Directional":false,"Links":[{"SourceID":158539,"TargetID":117294,"Directional":false}]},{"ID":4444,"SourceStructureID":31710,"TargetStructureID":7468,"Label":"31710-7468 via Gap Junction from 121299 -> 121298, 121302 -> 121301","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121299,"TargetID":121298,"Directional":false},{"SourceID":121302,"TargetID":121301,"Directional":false}]},{"ID":4445,"SourceStructureID":82677,"TargetStructureID":7564,"Label":"82677-7564 via Gap Junction from 114626 -> 29639","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":114626,"TargetID":29639,"Directional":false}]},{"ID":4446,"SourceStructureID":7568,"TargetStructureID":10945,"Label":"7568-10945 via Adherens from 27045 -> 27046","Type":"Adherens","Directional":false,"Links":[{"SourceID":27045,"TargetID":27046,"Directional":false}]},{"ID":4447,"SourceStructureID":137159,"TargetStructureID":7568,"Label":"137159-7568 via Adherens from 147206 -> 27082","Type":"Adherens","Directional":false,"Links":[{"SourceID":147206,"TargetID":27082,"Directional":false}]},{"ID":4448,"SourceStructureID":7576,"TargetStructureID":7576,"Label":"7576-7576 via Adherens from 54974 -> 54973, 55002 -> 55001, 55089 -> 55090","Type":"Adherens","Directional":false,"Links":[{"SourceID":54974,"TargetID":54973,"Directional":false},{"SourceID":55002,"TargetID":55001,"Directional":false},{"SourceID":55089,"TargetID":55090,"Directional":false}]},{"ID":4449,"SourceStructureID":7576,"TargetStructureID":54913,"Label":"7576-54913 via Gap Junction from 55059 -> 55060","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55059,"TargetID":55060,"Directional":false}]},{"ID":4450,"SourceStructureID":135295,"TargetStructureID":7587,"Label":"135295-7587 via Gap Junction from 135296 -> 135294","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135296,"TargetID":135294,"Directional":false}]},{"ID":4451,"SourceStructureID":9769,"TargetStructureID":7594,"Label":"9769-7594 via Adherens from 46856 -> 46855","Type":"Adherens","Directional":false,"Links":[{"SourceID":46856,"TargetID":46855,"Directional":false}]},{"ID":4452,"SourceStructureID":7594,"TargetStructureID":9769,"Label":"7594-9769 via Touch from 52408 -> 52407","Type":"Touch","Directional":false,"Links":[{"SourceID":52408,"TargetID":52407,"Directional":false}]},{"ID":4453,"SourceStructureID":7850,"TargetStructureID":68153,"Label":"7850-68153 via Adherens from 70037 -> 70036","Type":"Adherens","Directional":false,"Links":[{"SourceID":70037,"TargetID":70036,"Directional":false}]},{"ID":4454,"SourceStructureID":7859,"TargetStructureID":9787,"Label":"7859-9787 via Gap Junction from 84682 -> 84683, 84684 -> 56330, 84685 -> 56330","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84682,"TargetID":84683,"Directional":false},{"SourceID":84684,"TargetID":56330,"Directional":false},{"SourceID":84685,"TargetID":56330,"Directional":false}]},{"ID":4455,"SourceStructureID":28950,"TargetStructureID":7859,"Label":"28950-7859 via Gap Junction from 84729 -> 84728","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84729,"TargetID":84728,"Directional":false}]},{"ID":4456,"SourceStructureID":64665,"TargetStructureID":7859,"Label":"64665-7859 via Adherens from 64666 -> 64663","Type":"Adherens","Directional":false,"Links":[{"SourceID":64666,"TargetID":64663,"Directional":false}]},{"ID":4457,"SourceStructureID":84825,"TargetStructureID":7859,"Label":"84825-7859 via Touch from 84826 -> 84824","Type":"Touch","Directional":false,"Links":[{"SourceID":84826,"TargetID":84824,"Directional":false}]},{"ID":4458,"SourceStructureID":7861,"TargetStructureID":52152,"Label":"7861-52152 via Gap Junction from 52153 -> 52154","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52153,"TargetID":52154,"Directional":false}]},{"ID":4459,"SourceStructureID":7861,"TargetStructureID":82677,"Label":"7861-82677 via Adherens from 84070 -> 84076","Type":"Adherens","Directional":false,"Links":[{"SourceID":84070,"TargetID":84076,"Directional":false}]},{"ID":4460,"SourceStructureID":7861,"TargetStructureID":82677,"Label":"7861-82677 via Gap Junction from 61750 -> 114622, 84016 -> 61749, 84072 -> 84071, 114624 -> 114623, 114638 -> 114637, 118006 -> 91495","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61750,"TargetID":114622,"Directional":false},{"SourceID":84016,"TargetID":61749,"Directional":false},{"SourceID":84072,"TargetID":84071,"Directional":false},{"SourceID":114624,"TargetID":114623,"Directional":false},{"SourceID":114638,"TargetID":114637,"Directional":false},{"SourceID":118006,"TargetID":91495,"Directional":false}]},{"ID":4461,"SourceStructureID":7861,"TargetStructureID":99639,"Label":"7861-99639 via Gap Junction from 121015 -> 101273","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121015,"TargetID":101273,"Directional":false}]},{"ID":4462,"SourceStructureID":7861,"TargetStructureID":117990,"Label":"7861-117990 via Gap Junction from 117997 -> 117996","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117997,"TargetID":117996,"Directional":false}]},{"ID":4463,"SourceStructureID":122415,"TargetStructureID":7861,"Label":"122415-7861 via Gap Junction from 122416 -> 122414","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122416,"TargetID":122414,"Directional":false}]},{"ID":4464,"SourceStructureID":7861,"TargetStructureID":122420,"Label":"7861-122420 via Gap Junction from 122419 -> 122421","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122419,"TargetID":122421,"Directional":false}]},{"ID":4465,"SourceStructureID":122424,"TargetStructureID":7861,"Label":"122424-7861 via Gap Junction from 122425 -> 122423","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122425,"TargetID":122423,"Directional":false}]},{"ID":4466,"SourceStructureID":7861,"TargetStructureID":137070,"Label":"7861-137070 via Adherens from 137072 -> 137071","Type":"Adherens","Directional":false,"Links":[{"SourceID":137072,"TargetID":137071,"Directional":false}]},{"ID":4467,"SourceStructureID":8033,"TargetStructureID":9769,"Label":"8033-9769 via Touch from 29922 -> 29921","Type":"Touch","Directional":false,"Links":[{"SourceID":29922,"TargetID":29921,"Directional":false}]},{"ID":4468,"SourceStructureID":66111,"TargetStructureID":8033,"Label":"66111-8033 via Adherens from 68590 -> 68591","Type":"Adherens","Directional":false,"Links":[{"SourceID":68590,"TargetID":68591,"Directional":false}]},{"ID":4469,"SourceStructureID":8038,"TargetStructureID":8037,"Label":"8038-8037 via Gap Junction from 68971 -> 68970, 136200 -> 68925","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68971,"TargetID":68970,"Directional":false},{"SourceID":136200,"TargetID":68925,"Directional":false}]},{"ID":4470,"SourceStructureID":9693,"TargetStructureID":8037,"Label":"9693-8037 via Adherens from 119773 -> 119774","Type":"Adherens","Directional":false,"Links":[{"SourceID":119773,"TargetID":119774,"Directional":false}]},{"ID":4471,"SourceStructureID":9769,"TargetStructureID":8037,"Label":"9769-8037 via Touch from 29891 -> 29890","Type":"Touch","Directional":false,"Links":[{"SourceID":29891,"TargetID":29890,"Directional":false}]},{"ID":4472,"SourceStructureID":8037,"TargetStructureID":12897,"Label":"8037-12897 via Gap Junction from 16408 -> 24707, 24694 -> 24606, 24699 -> 24598, 24716 -> 24607, 24744 -> 15732","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16408,"TargetID":24707,"Directional":false},{"SourceID":24694,"TargetID":24606,"Directional":false},{"SourceID":24699,"TargetID":24598,"Directional":false},{"SourceID":24716,"TargetID":24607,"Directional":false},{"SourceID":24744,"TargetID":15732,"Directional":false}]},{"ID":4473,"SourceStructureID":8037,"TargetStructureID":25410,"Label":"8037-25410 via Adherens from 25427 -> 25419","Type":"Adherens","Directional":false,"Links":[{"SourceID":25427,"TargetID":25419,"Directional":false}]},{"ID":4474,"SourceStructureID":50449,"TargetStructureID":8037,"Label":"50449-8037 via Gap Junction from 50520 -> 120858, 120855 -> 120854, 120857 -> 120856, 148212 -> 148215","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50520,"TargetID":120858,"Directional":false},{"SourceID":120855,"TargetID":120854,"Directional":false},{"SourceID":120857,"TargetID":120856,"Directional":false},{"SourceID":148212,"TargetID":148215,"Directional":false}]},{"ID":4475,"SourceStructureID":132773,"TargetStructureID":8037,"Label":"132773-8037 via Adherens from 132777 -> 88897","Type":"Adherens","Directional":false,"Links":[{"SourceID":132777,"TargetID":88897,"Directional":false}]},{"ID":4476,"SourceStructureID":132773,"TargetStructureID":8037,"Label":"132773-8037 via Gap Junction from 132778 -> 130628","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132778,"TargetID":130628,"Directional":false}]},{"ID":4477,"SourceStructureID":8038,"TargetStructureID":8040,"Label":"8038-8040 via Gap Junction from 48598 -> 48596, 113049 -> 48628","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48598,"TargetID":48596,"Directional":false},{"SourceID":113049,"TargetID":48628,"Directional":false}]},{"ID":4478,"SourceStructureID":11246,"TargetStructureID":8038,"Label":"11246-8038 via Adherens from 68963 -> 68962","Type":"Adherens","Directional":false,"Links":[{"SourceID":68963,"TargetID":68962,"Directional":false}]},{"ID":4479,"SourceStructureID":32804,"TargetStructureID":8038,"Label":"32804-8038 via Touch from 32814 -> 32815","Type":"Touch","Directional":false,"Links":[{"SourceID":32814,"TargetID":32815,"Directional":false}]},{"ID":4480,"SourceStructureID":50449,"TargetStructureID":8038,"Label":"50449-8038 via Gap Junction from 50477 -> 50478","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50477,"TargetID":50478,"Directional":false}]},{"ID":4481,"SourceStructureID":70500,"TargetStructureID":8038,"Label":"70500-8038 via Adherens from 129063 -> 129064, 129065 -> 129066","Type":"Adherens","Directional":false,"Links":[{"SourceID":129063,"TargetID":129064,"Directional":false},{"SourceID":129065,"TargetID":129066,"Directional":false}]},{"ID":4482,"SourceStructureID":8038,"TargetStructureID":70500,"Label":"8038-70500 via Gap Junction from 129062 -> 129051","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129062,"TargetID":129051,"Directional":false}]},{"ID":4483,"SourceStructureID":8038,"TargetStructureID":118654,"Label":"8038-118654 via Gap Junction from 118676 -> 118657","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118676,"TargetID":118657,"Directional":false}]},{"ID":4484,"SourceStructureID":8040,"TargetStructureID":8040,"Label":"8040-8040 via Gap Junction from 120818 -> 120819","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120818,"TargetID":120819,"Directional":false}]},{"ID":4485,"SourceStructureID":8040,"TargetStructureID":64939,"Label":"8040-64939 via Adherens from 48657 -> 65452","Type":"Adherens","Directional":false,"Links":[{"SourceID":48657,"TargetID":65452,"Directional":false}]},{"ID":4486,"SourceStructureID":8040,"TargetStructureID":64939,"Label":"8040-64939 via Gap Junction from 93631 -> 93630, 120823 -> 120824","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93631,"TargetID":93630,"Directional":false},{"SourceID":120823,"TargetID":120824,"Directional":false}]},{"ID":4487,"SourceStructureID":102459,"TargetStructureID":8080,"Label":"102459-8080 via Adherens from 129544 -> 129543","Type":"Adherens","Directional":false,"Links":[{"SourceID":129544,"TargetID":129543,"Directional":false}]},{"ID":4488,"SourceStructureID":61672,"TargetStructureID":8575,"Label":"61672-8575 via Gap Junction from 61674 -> 61671","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61674,"TargetID":61671,"Directional":false}]},{"ID":4489,"SourceStructureID":61752,"TargetStructureID":8575,"Label":"61752-8575 via Gap Junction from 61753 -> 61751","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61753,"TargetID":61751,"Directional":false}]},{"ID":4490,"SourceStructureID":62842,"TargetStructureID":8575,"Label":"62842-8575 via Adherens from 62843 -> 62841","Type":"Adherens","Directional":false,"Links":[{"SourceID":62843,"TargetID":62841,"Directional":false}]},{"ID":4491,"SourceStructureID":8576,"TargetStructureID":8576,"Label":"8576-8576 via Postsynapse from 20050 -> 37725","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":20050,"TargetID":37725,"Directional":false}]},{"ID":4492,"SourceStructureID":8579,"TargetStructureID":8577,"Label":"8579-8577 via Adherens from 62905 -> 62904","Type":"Adherens","Directional":false,"Links":[{"SourceID":62905,"TargetID":62904,"Directional":false}]},{"ID":4493,"SourceStructureID":8579,"TargetStructureID":8577,"Label":"8579-8577 via Unknown from 132850 -> 132849","Type":"Unknown","Directional":false,"Links":[{"SourceID":132850,"TargetID":132849,"Directional":false}]},{"ID":4494,"SourceStructureID":79071,"TargetStructureID":8577,"Label":"79071-8577 via Neuroglial adherens from 79331 -> 79332","Type":"Neuroglial adherens","Directional":false,"Links":[{"SourceID":79331,"TargetID":79332,"Directional":false}]},{"ID":4495,"SourceStructureID":8577,"TargetStructureID":79091,"Label":"8577-79091 via Neuroglial adherens from 79404 -> 79403","Type":"Neuroglial adherens","Directional":false,"Links":[{"SourceID":79404,"TargetID":79403,"Directional":false}]},{"ID":4496,"SourceStructureID":8579,"TargetStructureID":8580,"Label":"8579-8580 via Gap Junction from 72104 -> 72103","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":72104,"TargetID":72103,"Directional":false}]},{"ID":4497,"SourceStructureID":8579,"TargetStructureID":16026,"Label":"8579-16026 via Adherens from 134329 -> 134328, 134331 -> 134330","Type":"Adherens","Directional":false,"Links":[{"SourceID":134329,"TargetID":134328,"Directional":false},{"SourceID":134331,"TargetID":134330,"Directional":false}]},{"ID":4498,"SourceStructureID":8579,"TargetStructureID":16026,"Label":"8579-16026 via Unknown from 134586 -> 134585, 134587 -> 134588","Type":"Unknown","Directional":false,"Links":[{"SourceID":134586,"TargetID":134585,"Directional":false},{"SourceID":134587,"TargetID":134588,"Directional":false}]},{"ID":4499,"SourceStructureID":20136,"TargetStructureID":8579,"Label":"20136-8579 via Unknown from 109077 -> 109078","Type":"Unknown","Directional":false,"Links":[{"SourceID":109077,"TargetID":109078,"Directional":false}]},{"ID":4500,"SourceStructureID":8579,"TargetStructureID":29702,"Label":"8579-29702 via Adherens from 76076 -> 76077","Type":"Adherens","Directional":false,"Links":[{"SourceID":76076,"TargetID":76077,"Directional":false}]},{"ID":4501,"SourceStructureID":8579,"TargetStructureID":61864,"Label":"8579-61864 via Adherens from 19803 -> 66331, 65490 -> 19804","Type":"Adherens","Directional":false,"Links":[{"SourceID":19803,"TargetID":66331,"Directional":false},{"SourceID":65490,"TargetID":19804,"Directional":false}]},{"ID":4502,"SourceStructureID":62933,"TargetStructureID":8579,"Label":"62933-8579 via Adherens from 62936 -> 62937","Type":"Adherens","Directional":false,"Links":[{"SourceID":62936,"TargetID":62937,"Directional":false}]},{"ID":4503,"SourceStructureID":11030,"TargetStructureID":8580,"Label":"11030-8580 via Touch from 59882 -> 59881","Type":"Touch","Directional":false,"Links":[{"SourceID":59882,"TargetID":59881,"Directional":false}]},{"ID":4504,"SourceStructureID":11043,"TargetStructureID":8580,"Label":"11043-8580 via Touch from 59893 -> 59892","Type":"Touch","Directional":false,"Links":[{"SourceID":59893,"TargetID":59892,"Directional":false}]},{"ID":4505,"SourceStructureID":72395,"TargetStructureID":8580,"Label":"72395-8580 via Unknown from 72412 -> 72413","Type":"Unknown","Directional":false,"Links":[{"SourceID":72412,"TargetID":72413,"Directional":false}]},{"ID":4506,"SourceStructureID":72483,"TargetStructureID":8580,"Label":"72483-8580 via Adherens from 72485 -> 72484","Type":"Adherens","Directional":false,"Links":[{"SourceID":72485,"TargetID":72484,"Directional":false}]},{"ID":4507,"SourceStructureID":73678,"TargetStructureID":8580,"Label":"73678-8580 via Adherens from 73679 -> 73677","Type":"Adherens","Directional":false,"Links":[{"SourceID":73679,"TargetID":73677,"Directional":false}]},{"ID":4508,"SourceStructureID":75721,"TargetStructureID":8580,"Label":"75721-8580 via Adherens from 75723 -> 75720, 75725 -> 75724","Type":"Adherens","Directional":false,"Links":[{"SourceID":75723,"TargetID":75720,"Directional":false},{"SourceID":75725,"TargetID":75724,"Directional":false}]},{"ID":4509,"SourceStructureID":31161,"TargetStructureID":8588,"Label":"31161-8588 via Touch from 32712 -> 32711","Type":"Touch","Directional":false,"Links":[{"SourceID":32712,"TargetID":32711,"Directional":false}]},{"ID":4510,"SourceStructureID":66946,"TargetStructureID":8588,"Label":"66946-8588 via Adherens from 83324 -> 67415","Type":"Adherens","Directional":false,"Links":[{"SourceID":83324,"TargetID":67415,"Directional":false}]},{"ID":4511,"SourceStructureID":82271,"TargetStructureID":8588,"Label":"82271-8588 via Adherens from 82276 -> 80587","Type":"Adherens","Directional":false,"Links":[{"SourceID":82276,"TargetID":80587,"Directional":false}]},{"ID":4512,"SourceStructureID":8589,"TargetStructureID":8589,"Label":"8589-8589 via Gap Junction from 70453 -> 70452, 71975 -> 71974","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70453,"TargetID":70452,"Directional":false},{"SourceID":71975,"TargetID":71974,"Directional":false}]},{"ID":4513,"SourceStructureID":70398,"TargetStructureID":8589,"Label":"70398-8589 via Adherens from 70399 -> 70397","Type":"Adherens","Directional":false,"Links":[{"SourceID":70399,"TargetID":70397,"Directional":false}]},{"ID":4514,"SourceStructureID":8589,"TargetStructureID":70403,"Label":"8589-70403 via Adherens from 70405 -> 70404","Type":"Adherens","Directional":false,"Links":[{"SourceID":70405,"TargetID":70404,"Directional":false}]},{"ID":4515,"SourceStructureID":8589,"TargetStructureID":70444,"Label":"8589-70444 via Adherens from 71313 -> 71312, 71314 -> 71315","Type":"Adherens","Directional":false,"Links":[{"SourceID":71313,"TargetID":71312,"Directional":false},{"SourceID":71314,"TargetID":71315,"Directional":false}]},{"ID":4516,"SourceStructureID":8589,"TargetStructureID":70444,"Label":"8589-70444 via Gap Junction from 70447 -> 70448","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70447,"TargetID":70448,"Directional":false}]},{"ID":4517,"SourceStructureID":8589,"TargetStructureID":70462,"Label":"8589-70462 via Adherens from 70392 -> 70463","Type":"Adherens","Directional":false,"Links":[{"SourceID":70392,"TargetID":70463,"Directional":false}]},{"ID":4518,"SourceStructureID":8589,"TargetStructureID":71318,"Label":"8589-71318 via Adherens from 71320 -> 71319","Type":"Adherens","Directional":false,"Links":[{"SourceID":71320,"TargetID":71319,"Directional":false}]},{"ID":4519,"SourceStructureID":8589,"TargetStructureID":71322,"Label":"8589-71322 via Adherens from 71390 -> 71391","Type":"Adherens","Directional":false,"Links":[{"SourceID":71390,"TargetID":71391,"Directional":false}]},{"ID":4520,"SourceStructureID":71411,"TargetStructureID":8589,"Label":"71411-8589 via Gap Junction from 71412 -> 71409","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71412,"TargetID":71409,"Directional":false}]},{"ID":4521,"SourceStructureID":71597,"TargetStructureID":8589,"Label":"71597-8589 via Adherens from 71750 -> 71749","Type":"Adherens","Directional":false,"Links":[{"SourceID":71750,"TargetID":71749,"Directional":false}]},{"ID":4522,"SourceStructureID":8589,"TargetStructureID":71625,"Label":"8589-71625 via Adherens from 71745 -> 71746","Type":"Adherens","Directional":false,"Links":[{"SourceID":71745,"TargetID":71746,"Directional":false}]},{"ID":4523,"SourceStructureID":16026,"TargetStructureID":8720,"Label":"16026-8720 via Unknown from 114652 -> 134419","Type":"Unknown","Directional":false,"Links":[{"SourceID":114652,"TargetID":134419,"Directional":false}]},{"ID":4524,"SourceStructureID":59974,"TargetStructureID":8720,"Label":"59974-8720 via Adherens from 59975 -> 59973","Type":"Adherens","Directional":false,"Links":[{"SourceID":59975,"TargetID":59973,"Directional":false}]},{"ID":4525,"SourceStructureID":9129,"TargetStructureID":35526,"Label":"9129-35526 via Adherens from 64332 -> 64333","Type":"Adherens","Directional":false,"Links":[{"SourceID":64332,"TargetID":64333,"Directional":false}]},{"ID":4526,"SourceStructureID":9129,"TargetStructureID":74205,"Label":"9129-74205 via Adherens from 74207 -> 74208","Type":"Adherens","Directional":false,"Links":[{"SourceID":74207,"TargetID":74208,"Directional":false}]},{"ID":4527,"SourceStructureID":122829,"TargetStructureID":9129,"Label":"122829-9129 via Touch from 122847 -> 122846","Type":"Touch","Directional":false,"Links":[{"SourceID":122847,"TargetID":122846,"Directional":false}]},{"ID":4528,"SourceStructureID":9260,"TargetStructureID":9260,"Label":"9260-9260 via Adherens from 39676 -> 39675","Type":"Adherens","Directional":false,"Links":[{"SourceID":39676,"TargetID":39675,"Directional":false}]},{"ID":4529,"SourceStructureID":9260,"TargetStructureID":39285,"Label":"9260-39285 via Unknown from 93093 -> 93092","Type":"Unknown","Directional":false,"Links":[{"SourceID":93093,"TargetID":93092,"Directional":false}]},{"ID":4530,"SourceStructureID":15394,"TargetStructureID":9693,"Label":"15394-9693 via Adherens from 47699 -> 47698","Type":"Adherens","Directional":false,"Links":[{"SourceID":47699,"TargetID":47698,"Directional":false}]},{"ID":4531,"SourceStructureID":9693,"TargetStructureID":15394,"Label":"9693-15394 via Unknown from 120115 -> 120116","Type":"Unknown","Directional":false,"Links":[{"SourceID":120115,"TargetID":120116,"Directional":false}]},{"ID":4532,"SourceStructureID":9693,"TargetStructureID":32739,"Label":"9693-32739 via Adherens from 119829 -> 119833","Type":"Adherens","Directional":false,"Links":[{"SourceID":119829,"TargetID":119833,"Directional":false}]},{"ID":4533,"SourceStructureID":134659,"TargetStructureID":9693,"Label":"134659-9693 via Adherens from 134661 -> 119783","Type":"Adherens","Directional":false,"Links":[{"SourceID":134661,"TargetID":119783,"Directional":false}]},{"ID":4534,"SourceStructureID":9693,"TargetStructureID":134674,"Label":"9693-134674 via Adherens from 134673 -> 134675","Type":"Adherens","Directional":false,"Links":[{"SourceID":134673,"TargetID":134675,"Directional":false}]},{"ID":4535,"SourceStructureID":134687,"TargetStructureID":9693,"Label":"134687-9693 via Adherens from 134689 -> 134683","Type":"Adherens","Directional":false,"Links":[{"SourceID":134689,"TargetID":134683,"Directional":false}]},{"ID":4536,"SourceStructureID":9693,"TargetStructureID":134718,"Label":"9693-134718 via Unknown from 134998 -> 134997","Type":"Unknown","Directional":false,"Links":[{"SourceID":134998,"TargetID":134997,"Directional":false}]},{"ID":4537,"SourceStructureID":45220,"TargetStructureID":9769,"Label":"45220-9769 via Gap Junction from 45327 -> 45219","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45327,"TargetID":45219,"Directional":false}]},{"ID":4538,"SourceStructureID":9769,"TargetStructureID":45326,"Label":"9769-45326 via Gap Junction from 45325 -> 45329","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45325,"TargetID":45329,"Directional":false}]},{"ID":4539,"SourceStructureID":45358,"TargetStructureID":9769,"Label":"45358-9769 via Gap Junction from 45359 -> 45357","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45359,"TargetID":45357,"Directional":false}]},{"ID":4540,"SourceStructureID":9769,"TargetStructureID":50982,"Label":"9769-50982 via Adherens from 52387 -> 52388","Type":"Adherens","Directional":false,"Links":[{"SourceID":52387,"TargetID":52388,"Directional":false}]},{"ID":4541,"SourceStructureID":9769,"TargetStructureID":53421,"Label":"9769-53421 via Adherens from 53424 -> 53423","Type":"Adherens","Directional":false,"Links":[{"SourceID":53424,"TargetID":53423,"Directional":false}]},{"ID":4542,"SourceStructureID":54264,"TargetStructureID":9769,"Label":"54264-9769 via Adherens from 54265 -> 23928","Type":"Adherens","Directional":false,"Links":[{"SourceID":54265,"TargetID":23928,"Directional":false}]},{"ID":4543,"SourceStructureID":74047,"TargetStructureID":9769,"Label":"74047-9769 via Adherens from 74339 -> 74340, 74342 -> 74343","Type":"Adherens","Directional":false,"Links":[{"SourceID":74339,"TargetID":74340,"Directional":false},{"SourceID":74342,"TargetID":74343,"Directional":false}]},{"ID":4544,"SourceStructureID":9769,"TargetStructureID":74047,"Label":"9769-74047 via Unknown from 74332 -> 74327","Type":"Unknown","Directional":false,"Links":[{"SourceID":74332,"TargetID":74327,"Directional":false}]},{"ID":4545,"SourceStructureID":9769,"TargetStructureID":84401,"Label":"9769-84401 via Adherens from 84404 -> 84403","Type":"Adherens","Directional":false,"Links":[{"SourceID":84404,"TargetID":84403,"Directional":false}]},{"ID":4546,"SourceStructureID":56211,"TargetStructureID":9787,"Label":"56211-9787 via Gap Junction from 56238 -> 56239, 85606 -> 56381","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56238,"TargetID":56239,"Directional":false},{"SourceID":85606,"TargetID":56381,"Directional":false}]},{"ID":4547,"SourceStructureID":56328,"TargetStructureID":9787,"Label":"56328-9787 via Gap Junction from 56329 -> 56327","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56329,"TargetID":56327,"Directional":false}]},{"ID":4548,"SourceStructureID":56598,"TargetStructureID":9787,"Label":"56598-9787 via Gap Junction from 75640 -> 75639","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":75640,"TargetID":75639,"Directional":false}]},{"ID":4549,"SourceStructureID":59229,"TargetStructureID":9787,"Label":"59229-9787 via Gap Junction from 85537 -> 56379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85537,"TargetID":56379,"Directional":false}]},{"ID":4550,"SourceStructureID":85508,"TargetStructureID":9787,"Label":"85508-9787 via Gap Junction from 85509 -> 56376","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85509,"TargetID":56376,"Directional":false}]},{"ID":4551,"SourceStructureID":85517,"TargetStructureID":9787,"Label":"85517-9787 via Gap Junction from 85518 -> 56377","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85518,"TargetID":56377,"Directional":false}]},{"ID":4552,"SourceStructureID":85604,"TargetStructureID":9787,"Label":"85604-9787 via Gap Junction from 85605 -> 56380","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85605,"TargetID":56380,"Directional":false}]},{"ID":4553,"SourceStructureID":85607,"TargetStructureID":9787,"Label":"85607-9787 via Gap Junction from 85608 -> 56382","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85608,"TargetID":56382,"Directional":false}]},{"ID":4554,"SourceStructureID":49185,"TargetStructureID":10559,"Label":"49185-10559 via Adherens from 49189 -> 49190, 49191 -> 49192","Type":"Adherens","Directional":false,"Links":[{"SourceID":49189,"TargetID":49190,"Directional":false},{"SourceID":49191,"TargetID":49192,"Directional":false}]},{"ID":4555,"SourceStructureID":39602,"TargetStructureID":10625,"Label":"39602-10625 via Adherens from 64338 -> 64337","Type":"Adherens","Directional":false,"Links":[{"SourceID":64338,"TargetID":64337,"Directional":false}]},{"ID":4556,"SourceStructureID":96788,"TargetStructureID":10872,"Label":"96788-10872 via Unknown from 96803 -> 96804","Type":"Unknown","Directional":false,"Links":[{"SourceID":96803,"TargetID":96804,"Directional":false}]},{"ID":4557,"SourceStructureID":98127,"TargetStructureID":10957,"Label":"98127-10957 via Unknown from 98876 -> 98877","Type":"Unknown","Directional":false,"Links":[{"SourceID":98876,"TargetID":98877,"Directional":false}]},{"ID":4558,"SourceStructureID":10959,"TargetStructureID":10959,"Label":"10959-10959 via Unknown from 94441 -> 94440","Type":"Unknown","Directional":false,"Links":[{"SourceID":94441,"TargetID":94440,"Directional":false}]},{"ID":4559,"SourceStructureID":10959,"TargetStructureID":86751,"Label":"10959-86751 via Unknown from 86754 -> 86753","Type":"Unknown","Directional":false,"Links":[{"SourceID":86754,"TargetID":86753,"Directional":false}]},{"ID":4560,"SourceStructureID":86775,"TargetStructureID":10959,"Label":"86775-10959 via Adherens from 86776 -> 86774","Type":"Adherens","Directional":false,"Links":[{"SourceID":86776,"TargetID":86774,"Directional":false}]},{"ID":4561,"SourceStructureID":86783,"TargetStructureID":10959,"Label":"86783-10959 via Adherens from 86785 -> 86781","Type":"Adherens","Directional":false,"Links":[{"SourceID":86785,"TargetID":86781,"Directional":false}]},{"ID":4562,"SourceStructureID":10959,"TargetStructureID":86816,"Label":"10959-86816 via Adherens from 86835 -> 86836","Type":"Adherens","Directional":false,"Links":[{"SourceID":86835,"TargetID":86836,"Directional":false}]},{"ID":4563,"SourceStructureID":86838,"TargetStructureID":10959,"Label":"86838-10959 via Adherens from 86839 -> 86837","Type":"Adherens","Directional":false,"Links":[{"SourceID":86839,"TargetID":86837,"Directional":false}]},{"ID":4564,"SourceStructureID":86891,"TargetStructureID":10959,"Label":"86891-10959 via Adherens from 86892 -> 86893","Type":"Adherens","Directional":false,"Links":[{"SourceID":86892,"TargetID":86893,"Directional":false}]},{"ID":4565,"SourceStructureID":15394,"TargetStructureID":10960,"Label":"15394-10960 via Touch from 41017 -> 41018","Type":"Touch","Directional":false,"Links":[{"SourceID":41017,"TargetID":41018,"Directional":false}]},{"ID":4566,"SourceStructureID":10963,"TargetStructureID":64777,"Label":"10963-64777 via Touch from 64810 -> 64809","Type":"Touch","Directional":false,"Links":[{"SourceID":64810,"TargetID":64809,"Directional":false}]},{"ID":4567,"SourceStructureID":99650,"TargetStructureID":11037,"Label":"99650-11037 via Unknown from 99660 -> 99661","Type":"Unknown","Directional":false,"Links":[{"SourceID":99660,"TargetID":99661,"Directional":false}]},{"ID":4568,"SourceStructureID":11044,"TargetStructureID":15796,"Label":"11044-15796 via Touch from 32764 -> 32765","Type":"Touch","Directional":false,"Links":[{"SourceID":32764,"TargetID":32765,"Directional":false}]},{"ID":4569,"SourceStructureID":11074,"TargetStructureID":98618,"Label":"11074-98618 via Gap Junction from 98647 -> 98646","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98647,"TargetID":98646,"Directional":false}]},{"ID":4570,"SourceStructureID":11092,"TargetStructureID":95072,"Label":"11092-95072 via Gap Junction from 95075 -> 95076","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95075,"TargetID":95076,"Directional":false}]},{"ID":4571,"SourceStructureID":11092,"TargetStructureID":123499,"Label":"11092-123499 via Gap Junction from 123505 -> 123506","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123505,"TargetID":123506,"Directional":false}]},{"ID":4572,"SourceStructureID":11229,"TargetStructureID":13624,"Label":"11229-13624 via Adherens from 15327 -> 15326","Type":"Adherens","Directional":false,"Links":[{"SourceID":15327,"TargetID":15326,"Directional":false}]},{"ID":4573,"SourceStructureID":11229,"TargetStructureID":15977,"Label":"11229-15977 via Gap Junction from 135683 -> 135682, 135684 -> 135685","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135683,"TargetID":135682,"Directional":false},{"SourceID":135684,"TargetID":135685,"Directional":false}]},{"ID":4574,"SourceStructureID":35418,"TargetStructureID":11234,"Label":"35418-11234 via Adherens from 64610 -> 64611","Type":"Adherens","Directional":false,"Links":[{"SourceID":64610,"TargetID":64611,"Directional":false}]},{"ID":4575,"SourceStructureID":24401,"TargetStructureID":11485,"Label":"24401-11485 via Adherens from 48127 -> 48128","Type":"Adherens","Directional":false,"Links":[{"SourceID":48127,"TargetID":48128,"Directional":false}]},{"ID":4576,"SourceStructureID":38698,"TargetStructureID":12564,"Label":"38698-12564 via Adherens from 55638 -> 55639","Type":"Adherens","Directional":false,"Links":[{"SourceID":55638,"TargetID":55639,"Directional":false}]},{"ID":4577,"SourceStructureID":12897,"TargetStructureID":16026,"Label":"12897-16026 via Adherens from 134422 -> 134421, 134886 -> 134885","Type":"Adherens","Directional":false,"Links":[{"SourceID":134422,"TargetID":134421,"Directional":false},{"SourceID":134886,"TargetID":134885,"Directional":false}]},{"ID":4578,"SourceStructureID":16026,"TargetStructureID":12897,"Label":"16026-12897 via Gap Junction from 24753 -> 24752, 91195 -> 91194, 91244 -> 24634, 92079 -> 92078, 92232 -> 92230, 92575 -> 92576, 92898 -> 92897","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24753,"TargetID":24752,"Directional":false},{"SourceID":91195,"TargetID":91194,"Directional":false},{"SourceID":91244,"TargetID":24634,"Directional":false},{"SourceID":92079,"TargetID":92078,"Directional":false},{"SourceID":92232,"TargetID":92230,"Directional":false},{"SourceID":92575,"TargetID":92576,"Directional":false},{"SourceID":92898,"TargetID":92897,"Directional":false}]},{"ID":4579,"SourceStructureID":87569,"TargetStructureID":12897,"Label":"87569-12897 via Adherens from 87574 -> 24841","Type":"Adherens","Directional":false,"Links":[{"SourceID":87574,"TargetID":24841,"Directional":false}]},{"ID":4580,"SourceStructureID":12897,"TargetStructureID":104764,"Label":"12897-104764 via Unknown from 134409 -> 134410","Type":"Unknown","Directional":false,"Links":[{"SourceID":134409,"TargetID":134410,"Directional":false}]},{"ID":4581,"SourceStructureID":12897,"TargetStructureID":122868,"Label":"12897-122868 via Adherens from 130536 -> 130535","Type":"Adherens","Directional":false,"Links":[{"SourceID":130536,"TargetID":130535,"Directional":false}]},{"ID":4582,"SourceStructureID":12897,"TargetStructureID":122868,"Label":"12897-122868 via Gap Junction from 130534 -> 130533, 132417 -> 132419, 132421 -> 132422","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130534,"TargetID":130533,"Directional":false},{"SourceID":132417,"TargetID":132419,"Directional":false},{"SourceID":132421,"TargetID":132422,"Directional":false}]},{"ID":4583,"SourceStructureID":135039,"TargetStructureID":12897,"Label":"135039-12897 via Gap Junction from 135040 -> 108243, 135043 -> 135044","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135040,"TargetID":108243,"Directional":false},{"SourceID":135043,"TargetID":135044,"Directional":false}]},{"ID":4584,"SourceStructureID":135039,"TargetStructureID":12897,"Label":"135039-12897 via Unknown from 135049 -> 135050","Type":"Unknown","Directional":false,"Links":[{"SourceID":135049,"TargetID":135050,"Directional":false}]},{"ID":4585,"SourceStructureID":13130,"TargetStructureID":59737,"Label":"13130-59737 via Adherens from 59741 -> 59742","Type":"Adherens","Directional":false,"Links":[{"SourceID":59741,"TargetID":59742,"Directional":false}]},{"ID":4586,"SourceStructureID":101625,"TargetStructureID":13525,"Label":"101625-13525 via Adherens from 104701 -> 101624","Type":"Adherens","Directional":false,"Links":[{"SourceID":104701,"TargetID":101624,"Directional":false}]},{"ID":4587,"SourceStructureID":104677,"TargetStructureID":13525,"Label":"104677-13525 via Adherens from 104679 -> 85668","Type":"Adherens","Directional":false,"Links":[{"SourceID":104679,"TargetID":85668,"Directional":false}]},{"ID":4588,"SourceStructureID":104691,"TargetStructureID":13525,"Label":"104691-13525 via Adherens from 104692 -> 86728","Type":"Adherens","Directional":false,"Links":[{"SourceID":104692,"TargetID":86728,"Directional":false}]},{"ID":4589,"SourceStructureID":104693,"TargetStructureID":13525,"Label":"104693-13525 via Adherens from 104695 -> 94562","Type":"Adherens","Directional":false,"Links":[{"SourceID":104695,"TargetID":94562,"Directional":false}]},{"ID":4590,"SourceStructureID":104726,"TargetStructureID":13525,"Label":"104726-13525 via Adherens from 104730 -> 94557","Type":"Adherens","Directional":false,"Links":[{"SourceID":104730,"TargetID":94557,"Directional":false}]},{"ID":4591,"SourceStructureID":130371,"TargetStructureID":13525,"Label":"130371-13525 via Gap Junction from 130372 -> 130370","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130372,"TargetID":130370,"Directional":false}]},{"ID":4592,"SourceStructureID":13525,"TargetStructureID":130383,"Label":"13525-130383 via Gap Junction from 130382 -> 130384","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130382,"TargetID":130384,"Directional":false}]},{"ID":4593,"SourceStructureID":13855,"TargetStructureID":17183,"Label":"13855-17183 via Touch from 70918 -> 70919","Type":"Touch","Directional":false,"Links":[{"SourceID":70918,"TargetID":70919,"Directional":false}]},{"ID":4594,"SourceStructureID":14615,"TargetStructureID":14615,"Label":"14615-14615 via Adherens from 92256 -> 92257","Type":"Adherens","Directional":false,"Links":[{"SourceID":92256,"TargetID":92257,"Directional":false}]},{"ID":4595,"SourceStructureID":14615,"TargetStructureID":76864,"Label":"14615-76864 via Adherens from 76866 -> 76865","Type":"Adherens","Directional":false,"Links":[{"SourceID":76866,"TargetID":76865,"Directional":false}]},{"ID":4596,"SourceStructureID":76912,"TargetStructureID":14615,"Label":"76912-14615 via Adherens from 76915 -> 76916","Type":"Adherens","Directional":false,"Links":[{"SourceID":76915,"TargetID":76916,"Directional":false}]},{"ID":4597,"SourceStructureID":33117,"TargetStructureID":15100,"Label":"33117-15100 via Adherens from 64581 -> 64580","Type":"Adherens","Directional":false,"Links":[{"SourceID":64581,"TargetID":64580,"Directional":false}]},{"ID":4598,"SourceStructureID":72252,"TargetStructureID":15796,"Label":"72252-15796 via Touch from 147791 -> 147792","Type":"Touch","Directional":false,"Links":[{"SourceID":147791,"TargetID":147792,"Directional":false}]},{"ID":4599,"SourceStructureID":15796,"TargetStructureID":83935,"Label":"15796-83935 via Gap Junction from 83940 -> 83939","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83940,"TargetID":83939,"Directional":false}]},{"ID":4600,"SourceStructureID":40965,"TargetStructureID":15942,"Label":"40965-15942 via Unknown from 91186 -> 91187","Type":"Unknown","Directional":false,"Links":[{"SourceID":91186,"TargetID":91187,"Directional":false}]},{"ID":4601,"SourceStructureID":104735,"TargetStructureID":15942,"Label":"104735-15942 via Unknown from 104759 -> 104760","Type":"Unknown","Directional":false,"Links":[{"SourceID":104759,"TargetID":104760,"Directional":false}]},{"ID":4602,"SourceStructureID":57161,"TargetStructureID":15976,"Label":"57161-15976 via Gap Junction from 57162 -> 57160","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57162,"TargetID":57160,"Directional":false}]},{"ID":4603,"SourceStructureID":57169,"TargetStructureID":15976,"Label":"57169-15976 via Gap Junction from 57170 -> 57168, 57171 -> 57172, 117085 -> 117084","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57170,"TargetID":57168,"Directional":false},{"SourceID":57171,"TargetID":57172,"Directional":false},{"SourceID":117085,"TargetID":117084,"Directional":false}]},{"ID":4604,"SourceStructureID":15976,"TargetStructureID":92954,"Label":"15976-92954 via Gap Junction from 92963 -> 92962","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92963,"TargetID":92962,"Directional":false}]},{"ID":4605,"SourceStructureID":15976,"TargetStructureID":93168,"Label":"15976-93168 via Adherens from 93167 -> 93170","Type":"Adherens","Directional":false,"Links":[{"SourceID":93167,"TargetID":93170,"Directional":false}]},{"ID":4606,"SourceStructureID":15976,"TargetStructureID":93175,"Label":"15976-93175 via Adherens from 93177 -> 93178","Type":"Adherens","Directional":false,"Links":[{"SourceID":93177,"TargetID":93178,"Directional":false}]},{"ID":4607,"SourceStructureID":15976,"TargetStructureID":93175,"Label":"15976-93175 via Gap Junction from 93174 -> 93176, 93204 -> 93203","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93174,"TargetID":93176,"Directional":false},{"SourceID":93204,"TargetID":93203,"Directional":false}]},{"ID":4608,"SourceStructureID":15976,"TargetStructureID":93281,"Label":"15976-93281 via Adherens from 93285 -> 93284","Type":"Adherens","Directional":false,"Links":[{"SourceID":93285,"TargetID":93284,"Directional":false}]},{"ID":4609,"SourceStructureID":93281,"TargetStructureID":15976,"Label":"93281-15976 via Gap Junction from 93283 -> 57436","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93283,"TargetID":57436,"Directional":false}]},{"ID":4610,"SourceStructureID":93287,"TargetStructureID":15976,"Label":"93287-15976 via Gap Junction from 93288 -> 93286","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93288,"TargetID":93286,"Directional":false}]},{"ID":4611,"SourceStructureID":15976,"TargetStructureID":93290,"Label":"15976-93290 via Gap Junction from 57163 -> 93292","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57163,"TargetID":93292,"Directional":false}]},{"ID":4612,"SourceStructureID":93297,"TargetStructureID":15976,"Label":"93297-15976 via Gap Junction from 93299 -> 57410","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93299,"TargetID":57410,"Directional":false}]},{"ID":4613,"SourceStructureID":93352,"TargetStructureID":15976,"Label":"93352-15976 via Gap Junction from 93353 -> 93351","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93353,"TargetID":93351,"Directional":false}]},{"ID":4614,"SourceStructureID":93579,"TargetStructureID":15976,"Label":"93579-15976 via Unknown from 93580 -> 93578","Type":"Unknown","Directional":false,"Links":[{"SourceID":93580,"TargetID":93578,"Directional":false}]},{"ID":4615,"SourceStructureID":15977,"TargetStructureID":15977,"Label":"15977-15977 via Gap Junction from 116816 -> 116817, 116939 -> 116940","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116816,"TargetID":116817,"Directional":false},{"SourceID":116939,"TargetID":116940,"Directional":false}]},{"ID":4616,"SourceStructureID":15977,"TargetStructureID":70761,"Label":"15977-70761 via Adherens from 70764 -> 70763","Type":"Adherens","Directional":false,"Links":[{"SourceID":70764,"TargetID":70763,"Directional":false}]},{"ID":4617,"SourceStructureID":16026,"TargetStructureID":16026,"Label":"16026-16026 via Adherens from 91101 -> 91100, 91107 -> 91106, 91148 -> 91147","Type":"Adherens","Directional":false,"Links":[{"SourceID":91101,"TargetID":91100,"Directional":false},{"SourceID":91107,"TargetID":91106,"Directional":false},{"SourceID":91148,"TargetID":91147,"Directional":false}]},{"ID":4618,"SourceStructureID":16026,"TargetStructureID":16026,"Label":"16026-16026 via Gap Junction from 91162 -> 91161","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91162,"TargetID":91161,"Directional":false}]},{"ID":4619,"SourceStructureID":38373,"TargetStructureID":16026,"Label":"38373-16026 via Unknown from 134486 -> 134485","Type":"Unknown","Directional":false,"Links":[{"SourceID":134486,"TargetID":134485,"Directional":false}]},{"ID":4620,"SourceStructureID":16026,"TargetStructureID":54078,"Label":"16026-54078 via Adherens from 67860 -> 67859, 134514 -> 134513, 134694 -> 134696","Type":"Adherens","Directional":false,"Links":[{"SourceID":67860,"TargetID":67859,"Directional":false},{"SourceID":134514,"TargetID":134513,"Directional":false},{"SourceID":134694,"TargetID":134696,"Directional":false}]},{"ID":4621,"SourceStructureID":54078,"TargetStructureID":16026,"Label":"54078-16026 via Unknown from 92919 -> 92918, 124776 -> 124777","Type":"Unknown","Directional":false,"Links":[{"SourceID":92919,"TargetID":92918,"Directional":false},{"SourceID":124776,"TargetID":124777,"Directional":false}]},{"ID":4622,"SourceStructureID":56841,"TargetStructureID":16026,"Label":"56841-16026 via Adherens from 134541 -> 134539","Type":"Adherens","Directional":false,"Links":[{"SourceID":134541,"TargetID":134539,"Directional":false}]},{"ID":4623,"SourceStructureID":16026,"TargetStructureID":61836,"Label":"16026-61836 via Adherens from 134783 -> 134784","Type":"Adherens","Directional":false,"Links":[{"SourceID":134783,"TargetID":134784,"Directional":false}]},{"ID":4624,"SourceStructureID":16026,"TargetStructureID":65864,"Label":"16026-65864 via Unknown from 134556 -> 134557","Type":"Unknown","Directional":false,"Links":[{"SourceID":134556,"TargetID":134557,"Directional":false}]},{"ID":4625,"SourceStructureID":66111,"TargetStructureID":16026,"Label":"66111-16026 via Adherens from 134754 -> 134755","Type":"Adherens","Directional":false,"Links":[{"SourceID":134754,"TargetID":134755,"Directional":false}]},{"ID":4626,"SourceStructureID":66111,"TargetStructureID":16026,"Label":"66111-16026 via Unknown from 92571 -> 92570","Type":"Unknown","Directional":false,"Links":[{"SourceID":92571,"TargetID":92570,"Directional":false}]},{"ID":4627,"SourceStructureID":16026,"TargetStructureID":66477,"Label":"16026-66477 via Unknown from 134710 -> 134711","Type":"Unknown","Directional":false,"Links":[{"SourceID":134710,"TargetID":134711,"Directional":false}]},{"ID":4628,"SourceStructureID":16026,"TargetStructureID":66828,"Label":"16026-66828 via Adherens from 66835 -> 66834, 134793 -> 134794","Type":"Adherens","Directional":false,"Links":[{"SourceID":66835,"TargetID":66834,"Directional":false},{"SourceID":134793,"TargetID":134794,"Directional":false}]},{"ID":4629,"SourceStructureID":66962,"TargetStructureID":16026,"Label":"66962-16026 via Adherens from 134605 -> 134604","Type":"Adherens","Directional":false,"Links":[{"SourceID":134605,"TargetID":134604,"Directional":false}]},{"ID":4630,"SourceStructureID":67354,"TargetStructureID":16026,"Label":"67354-16026 via Adherens from 67358 -> 67359","Type":"Adherens","Directional":false,"Links":[{"SourceID":67358,"TargetID":67359,"Directional":false}]},{"ID":4631,"SourceStructureID":67361,"TargetStructureID":16026,"Label":"67361-16026 via Adherens from 91130 -> 91129","Type":"Adherens","Directional":false,"Links":[{"SourceID":91130,"TargetID":91129,"Directional":false}]},{"ID":4632,"SourceStructureID":67595,"TargetStructureID":16026,"Label":"67595-16026 via Adherens from 67637 -> 67638, 67639 -> 67640, 67650 -> 67649, 134392 -> 134393","Type":"Adherens","Directional":false,"Links":[{"SourceID":67637,"TargetID":67638,"Directional":false},{"SourceID":67639,"TargetID":67640,"Directional":false},{"SourceID":67650,"TargetID":67649,"Directional":false},{"SourceID":134392,"TargetID":134393,"Directional":false}]},{"ID":4633,"SourceStructureID":67818,"TargetStructureID":16026,"Label":"67818-16026 via Unknown from 134779 -> 134778","Type":"Unknown","Directional":false,"Links":[{"SourceID":134779,"TargetID":134778,"Directional":false}]},{"ID":4634,"SourceStructureID":16026,"TargetStructureID":67933,"Label":"16026-67933 via Unknown from 134787 -> 134788","Type":"Unknown","Directional":false,"Links":[{"SourceID":134787,"TargetID":134788,"Directional":false}]},{"ID":4635,"SourceStructureID":78876,"TargetStructureID":16026,"Label":"78876-16026 via Unknown from 134802 -> 134801","Type":"Unknown","Directional":false,"Links":[{"SourceID":134802,"TargetID":134801,"Directional":false}]},{"ID":4636,"SourceStructureID":80721,"TargetStructureID":16026,"Label":"80721-16026 via Unknown from 125040 -> 125039","Type":"Unknown","Directional":false,"Links":[{"SourceID":125040,"TargetID":125039,"Directional":false}]},{"ID":4637,"SourceStructureID":16026,"TargetStructureID":81396,"Label":"16026-81396 via Unknown from 134756 -> 134757","Type":"Unknown","Directional":false,"Links":[{"SourceID":134756,"TargetID":134757,"Directional":false}]},{"ID":4638,"SourceStructureID":16026,"TargetStructureID":82305,"Label":"16026-82305 via Adherens from 82335 -> 82334","Type":"Adherens","Directional":false,"Links":[{"SourceID":82335,"TargetID":82334,"Directional":false}]},{"ID":4639,"SourceStructureID":16026,"TargetStructureID":83616,"Label":"16026-83616 via Unknown from 134619 -> 134620","Type":"Unknown","Directional":false,"Links":[{"SourceID":134619,"TargetID":134620,"Directional":false}]},{"ID":4640,"SourceStructureID":84260,"TargetStructureID":16026,"Label":"84260-16026 via Adherens from 91122 -> 91121","Type":"Adherens","Directional":false,"Links":[{"SourceID":91122,"TargetID":91121,"Directional":false}]},{"ID":4641,"SourceStructureID":16026,"TargetStructureID":84656,"Label":"16026-84656 via Adherens from 134503 -> 134502","Type":"Adherens","Directional":false,"Links":[{"SourceID":134503,"TargetID":134502,"Directional":false}]},{"ID":4642,"SourceStructureID":91036,"TargetStructureID":16026,"Label":"91036-16026 via Adherens from 91039 -> 91035","Type":"Adherens","Directional":false,"Links":[{"SourceID":91039,"TargetID":91035,"Directional":false}]},{"ID":4643,"SourceStructureID":91042,"TargetStructureID":16026,"Label":"91042-16026 via Adherens from 91045 -> 91041","Type":"Adherens","Directional":false,"Links":[{"SourceID":91045,"TargetID":91041,"Directional":false}]},{"ID":4644,"SourceStructureID":91043,"TargetStructureID":16026,"Label":"91043-16026 via Adherens from 91044 -> 91041","Type":"Adherens","Directional":false,"Links":[{"SourceID":91044,"TargetID":91041,"Directional":false}]},{"ID":4645,"SourceStructureID":91060,"TargetStructureID":16026,"Label":"91060-16026 via Adherens from 91061 -> 91059","Type":"Adherens","Directional":false,"Links":[{"SourceID":91061,"TargetID":91059,"Directional":false}]},{"ID":4646,"SourceStructureID":91073,"TargetStructureID":16026,"Label":"91073-16026 via Adherens from 92815 -> 91075","Type":"Adherens","Directional":false,"Links":[{"SourceID":92815,"TargetID":91075,"Directional":false}]},{"ID":4647,"SourceStructureID":16026,"TargetStructureID":91098,"Label":"16026-91098 via Adherens from 91097 -> 91099","Type":"Adherens","Directional":false,"Links":[{"SourceID":91097,"TargetID":91099,"Directional":false}]},{"ID":4648,"SourceStructureID":91103,"TargetStructureID":16026,"Label":"91103-16026 via Adherens from 91104 -> 91102","Type":"Adherens","Directional":false,"Links":[{"SourceID":91104,"TargetID":91102,"Directional":false}]},{"ID":4649,"SourceStructureID":91207,"TargetStructureID":16026,"Label":"91207-16026 via Gap Junction from 91208 -> 91205","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91208,"TargetID":91205,"Directional":false}]},{"ID":4650,"SourceStructureID":91213,"TargetStructureID":16026,"Label":"91213-16026 via Unknown from 134364 -> 134363","Type":"Unknown","Directional":false,"Links":[{"SourceID":134364,"TargetID":134363,"Directional":false}]},{"ID":4651,"SourceStructureID":16026,"TargetStructureID":92086,"Label":"16026-92086 via Unknown from 134450 -> 134449","Type":"Unknown","Directional":false,"Links":[{"SourceID":134450,"TargetID":134449,"Directional":false}]},{"ID":4652,"SourceStructureID":92092,"TargetStructureID":16026,"Label":"92092-16026 via Adherens from 134488 -> 134487","Type":"Adherens","Directional":false,"Links":[{"SourceID":134488,"TargetID":134487,"Directional":false}]},{"ID":4653,"SourceStructureID":92092,"TargetStructureID":16026,"Label":"92092-16026 via Postsynapse from 92192 -> 92191","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":92192,"TargetID":92191,"Directional":false}]},{"ID":4654,"SourceStructureID":92092,"TargetStructureID":16026,"Label":"92092-16026 via Unknown from 134436 -> 134435","Type":"Unknown","Directional":false,"Links":[{"SourceID":134436,"TargetID":134435,"Directional":false}]},{"ID":4655,"SourceStructureID":16026,"TargetStructureID":92200,"Label":"16026-92200 via Unknown from 92204 -> 92203, 92206 -> 92205","Type":"Unknown","Directional":false,"Links":[{"SourceID":92204,"TargetID":92203,"Directional":false},{"SourceID":92206,"TargetID":92205,"Directional":false}]},{"ID":4656,"SourceStructureID":16026,"TargetStructureID":92222,"Label":"16026-92222 via Unknown from 134543 -> 134544","Type":"Unknown","Directional":false,"Links":[{"SourceID":134543,"TargetID":134544,"Directional":false}]},{"ID":4657,"SourceStructureID":16026,"TargetStructureID":92226,"Label":"16026-92226 via Gap Junction from 92228 -> 92227","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92228,"TargetID":92227,"Directional":false}]},{"ID":4658,"SourceStructureID":16026,"TargetStructureID":92233,"Label":"16026-92233 via Unknown from 92235 -> 92234","Type":"Unknown","Directional":false,"Links":[{"SourceID":92235,"TargetID":92234,"Directional":false}]},{"ID":4659,"SourceStructureID":16026,"TargetStructureID":92239,"Label":"16026-92239 via Unknown from 114662 -> 114663","Type":"Unknown","Directional":false,"Links":[{"SourceID":114662,"TargetID":114663,"Directional":false}]},{"ID":4660,"SourceStructureID":16026,"TargetStructureID":92250,"Label":"16026-92250 via Unknown from 92251 -> 92252","Type":"Unknown","Directional":false,"Links":[{"SourceID":92251,"TargetID":92252,"Directional":false}]},{"ID":4661,"SourceStructureID":16026,"TargetStructureID":92253,"Label":"16026-92253 via Unknown from 92254 -> 92255","Type":"Unknown","Directional":false,"Links":[{"SourceID":92254,"TargetID":92255,"Directional":false}]},{"ID":4662,"SourceStructureID":92353,"TargetStructureID":16026,"Label":"92353-16026 via Unknown from 134383 -> 134382","Type":"Unknown","Directional":false,"Links":[{"SourceID":134383,"TargetID":134382,"Directional":false}]},{"ID":4663,"SourceStructureID":92356,"TargetStructureID":16026,"Label":"92356-16026 via Unknown from 134384 -> 134385","Type":"Unknown","Directional":false,"Links":[{"SourceID":134384,"TargetID":134385,"Directional":false}]},{"ID":4664,"SourceStructureID":92361,"TargetStructureID":16026,"Label":"92361-16026 via Adherens from 134349 -> 134350, 134353 -> 134352","Type":"Adherens","Directional":false,"Links":[{"SourceID":134349,"TargetID":134350,"Directional":false},{"SourceID":134353,"TargetID":134352,"Directional":false}]},{"ID":4665,"SourceStructureID":16026,"TargetStructureID":92361,"Label":"16026-92361 via Unknown from 134373 -> 134372","Type":"Unknown","Directional":false,"Links":[{"SourceID":134373,"TargetID":134372,"Directional":false}]},{"ID":4666,"SourceStructureID":92369,"TargetStructureID":16026,"Label":"92369-16026 via Unknown from 92371 -> 92370","Type":"Unknown","Directional":false,"Links":[{"SourceID":92371,"TargetID":92370,"Directional":false}]},{"ID":4667,"SourceStructureID":16026,"TargetStructureID":92376,"Label":"16026-92376 via Unknown from 92378 -> 92377","Type":"Unknown","Directional":false,"Links":[{"SourceID":92378,"TargetID":92377,"Directional":false}]},{"ID":4668,"SourceStructureID":16026,"TargetStructureID":92406,"Label":"16026-92406 via Unknown from 92407 -> 92408","Type":"Unknown","Directional":false,"Links":[{"SourceID":92407,"TargetID":92408,"Directional":false}]},{"ID":4669,"SourceStructureID":16026,"TargetStructureID":92417,"Label":"16026-92417 via Unknown from 92419 -> 92418","Type":"Unknown","Directional":false,"Links":[{"SourceID":92419,"TargetID":92418,"Directional":false}]},{"ID":4670,"SourceStructureID":16026,"TargetStructureID":92424,"Label":"16026-92424 via Unknown from 92426 -> 92425","Type":"Unknown","Directional":false,"Links":[{"SourceID":92426,"TargetID":92425,"Directional":false}]},{"ID":4671,"SourceStructureID":92427,"TargetStructureID":16026,"Label":"92427-16026 via Unknown from 134600 -> 134601","Type":"Unknown","Directional":false,"Links":[{"SourceID":134600,"TargetID":134601,"Directional":false}]},{"ID":4672,"SourceStructureID":92560,"TargetStructureID":16026,"Label":"92560-16026 via Postsynapse from 92564 -> 92563","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":92564,"TargetID":92563,"Directional":false}]},{"ID":4673,"SourceStructureID":92577,"TargetStructureID":16026,"Label":"92577-16026 via Unknown from 134895 -> 134894","Type":"Unknown","Directional":false,"Links":[{"SourceID":134895,"TargetID":134894,"Directional":false}]},{"ID":4674,"SourceStructureID":92582,"TargetStructureID":16026,"Label":"92582-16026 via Unknown from 92586 -> 92585","Type":"Unknown","Directional":false,"Links":[{"SourceID":92586,"TargetID":92585,"Directional":false}]},{"ID":4675,"SourceStructureID":92587,"TargetStructureID":16026,"Label":"92587-16026 via Unknown from 92589 -> 92588","Type":"Unknown","Directional":false,"Links":[{"SourceID":92589,"TargetID":92588,"Directional":false}]},{"ID":4676,"SourceStructureID":16026,"TargetStructureID":92595,"Label":"16026-92595 via Unknown from 134883 -> 134884","Type":"Unknown","Directional":false,"Links":[{"SourceID":134883,"TargetID":134884,"Directional":false}]},{"ID":4677,"SourceStructureID":92899,"TargetStructureID":16026,"Label":"92899-16026 via Unknown from 134829 -> 134828","Type":"Unknown","Directional":false,"Links":[{"SourceID":134829,"TargetID":134828,"Directional":false}]},{"ID":4678,"SourceStructureID":16026,"TargetStructureID":92908,"Label":"16026-92908 via Unknown from 92911 -> 92910, 134649 -> 124841","Type":"Unknown","Directional":false,"Links":[{"SourceID":92911,"TargetID":92910,"Directional":false},{"SourceID":134649,"TargetID":124841,"Directional":false}]},{"ID":4679,"SourceStructureID":92913,"TargetStructureID":16026,"Label":"92913-16026 via Unknown from 92914 -> 92912","Type":"Unknown","Directional":false,"Links":[{"SourceID":92914,"TargetID":92912,"Directional":false}]},{"ID":4680,"SourceStructureID":16026,"TargetStructureID":92915,"Label":"16026-92915 via Unknown from 92917 -> 92916","Type":"Unknown","Directional":false,"Links":[{"SourceID":92917,"TargetID":92916,"Directional":false}]},{"ID":4681,"SourceStructureID":92920,"TargetStructureID":16026,"Label":"92920-16026 via Unknown from 92922 -> 92921","Type":"Unknown","Directional":false,"Links":[{"SourceID":92922,"TargetID":92921,"Directional":false}]},{"ID":4682,"SourceStructureID":16026,"TargetStructureID":93139,"Label":"16026-93139 via Unknown from 125005 -> 125006","Type":"Unknown","Directional":false,"Links":[{"SourceID":125005,"TargetID":125006,"Directional":false}]},{"ID":4683,"SourceStructureID":16026,"TargetStructureID":104641,"Label":"16026-104641 via Adherens from 104643 -> 104642","Type":"Adherens","Directional":false,"Links":[{"SourceID":104643,"TargetID":104642,"Directional":false}]},{"ID":4684,"SourceStructureID":16026,"TargetStructureID":122829,"Label":"16026-122829 via Adherens from 114655 -> 134420","Type":"Adherens","Directional":false,"Links":[{"SourceID":114655,"TargetID":134420,"Directional":false}]},{"ID":4685,"SourceStructureID":122829,"TargetStructureID":16026,"Label":"122829-16026 via Unknown from 123360 -> 114658","Type":"Unknown","Directional":false,"Links":[{"SourceID":123360,"TargetID":114658,"Directional":false}]},{"ID":4686,"SourceStructureID":16087,"TargetStructureID":67671,"Label":"16087-67671 via Adherens from 78019 -> 78018","Type":"Adherens","Directional":false,"Links":[{"SourceID":78019,"TargetID":78018,"Directional":false}]},{"ID":4687,"SourceStructureID":16087,"TargetStructureID":67671,"Label":"16087-67671 via Gap Junction from 78017 -> 78016","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":78017,"TargetID":78016,"Directional":false}]},{"ID":4688,"SourceStructureID":17527,"TargetStructureID":70095,"Label":"17527-70095 via Gap Junction from 129046 -> 129045","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129046,"TargetID":129045,"Directional":false}]},{"ID":4689,"SourceStructureID":129048,"TargetStructureID":17527,"Label":"129048-17527 via Gap Junction from 129049 -> 129047","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129049,"TargetID":129047,"Directional":false}]},{"ID":4690,"SourceStructureID":18693,"TargetStructureID":88702,"Label":"18693-88702 via Gap Junction from 64739 -> 88705","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64739,"TargetID":88705,"Directional":false}]},{"ID":4691,"SourceStructureID":19203,"TargetStructureID":19203,"Label":"19203-19203 via Gap Junction from 121653 -> 121654","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121653,"TargetID":121654,"Directional":false}]},{"ID":4692,"SourceStructureID":19203,"TargetStructureID":28886,"Label":"19203-28886 via Gap Junction from 51416 -> 51415, 51619 -> 51618, 51955 -> 51445, 120875 -> 51428, 121659 -> 121656","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51416,"TargetID":51415,"Directional":false},{"SourceID":51619,"TargetID":51618,"Directional":false},{"SourceID":51955,"TargetID":51445,"Directional":false},{"SourceID":120875,"TargetID":51428,"Directional":false},{"SourceID":121659,"TargetID":121656,"Directional":false}]},{"ID":4693,"SourceStructureID":96102,"TargetStructureID":19203,"Label":"96102-19203 via Adherens from 135824 -> 135823","Type":"Adherens","Directional":false,"Links":[{"SourceID":135824,"TargetID":135823,"Directional":false}]},{"ID":4694,"SourceStructureID":121635,"TargetStructureID":19203,"Label":"121635-19203 via Gap Junction from 121636 -> 121634","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121636,"TargetID":121634,"Directional":false}]},{"ID":4695,"SourceStructureID":19203,"TargetStructureID":121644,"Label":"19203-121644 via Gap Junction from 121643 -> 121645","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121643,"TargetID":121645,"Directional":false}]},{"ID":4696,"SourceStructureID":19203,"TargetStructureID":121647,"Label":"19203-121647 via Gap Junction from 121646 -> 121648","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121646,"TargetID":121648,"Directional":false}]},{"ID":4697,"SourceStructureID":121660,"TargetStructureID":19203,"Label":"121660-19203 via Gap Junction from 121662 -> 51953","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121662,"TargetID":51953,"Directional":false}]},{"ID":4698,"SourceStructureID":20136,"TargetStructureID":20136,"Label":"20136-20136 via Adherens from 135800 -> 135799","Type":"Adherens","Directional":false,"Links":[{"SourceID":135800,"TargetID":135799,"Directional":false}]},{"ID":4699,"SourceStructureID":20136,"TargetStructureID":20136,"Label":"20136-20136 via Gap Junction from 92412 -> 92413, 130800 -> 130801","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92412,"TargetID":92413,"Directional":false},{"SourceID":130800,"TargetID":130801,"Directional":false}]},{"ID":4700,"SourceStructureID":20136,"TargetStructureID":32911,"Label":"20136-32911 via Adherens from 135776 -> 135777","Type":"Adherens","Directional":false,"Links":[{"SourceID":135776,"TargetID":135777,"Directional":false}]},{"ID":4701,"SourceStructureID":32911,"TargetStructureID":20136,"Label":"32911-20136 via Gap Junction from 109157 -> 109158","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109157,"TargetID":109158,"Directional":false}]},{"ID":4702,"SourceStructureID":20136,"TargetStructureID":68277,"Label":"20136-68277 via Adherens from 109898 -> 109899","Type":"Adherens","Directional":false,"Links":[{"SourceID":109898,"TargetID":109899,"Directional":false}]},{"ID":4703,"SourceStructureID":20136,"TargetStructureID":83954,"Label":"20136-83954 via Adherens from 109114 -> 109115","Type":"Adherens","Directional":false,"Links":[{"SourceID":109114,"TargetID":109115,"Directional":false}]},{"ID":4704,"SourceStructureID":83981,"TargetStructureID":20136,"Label":"83981-20136 via Unknown from 109024 -> 109025","Type":"Unknown","Directional":false,"Links":[{"SourceID":109024,"TargetID":109025,"Directional":false}]},{"ID":4705,"SourceStructureID":96102,"TargetStructureID":20136,"Label":"96102-20136 via Gap Junction from 96185 -> 110430","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96185,"TargetID":110430,"Directional":false}]},{"ID":4706,"SourceStructureID":98762,"TargetStructureID":20136,"Label":"98762-20136 via Adherens from 109904 -> 109903","Type":"Adherens","Directional":false,"Links":[{"SourceID":109904,"TargetID":109903,"Directional":false}]},{"ID":4707,"SourceStructureID":20136,"TargetStructureID":108408,"Label":"20136-108408 via BC Conventional Synapse from 108409 -> 108410","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":108409,"TargetID":108410,"Directional":false}]},{"ID":4708,"SourceStructureID":20136,"TargetStructureID":108429,"Label":"20136-108429 via Adherens from 108432 -> 108431","Type":"Adherens","Directional":false,"Links":[{"SourceID":108432,"TargetID":108431,"Directional":false}]},{"ID":4709,"SourceStructureID":108434,"TargetStructureID":20136,"Label":"108434-20136 via Unknown from 108435 -> 108438","Type":"Unknown","Directional":false,"Links":[{"SourceID":108435,"TargetID":108438,"Directional":false}]},{"ID":4710,"SourceStructureID":108506,"TargetStructureID":20136,"Label":"108506-20136 via Unknown from 108507 -> 108508","Type":"Unknown","Directional":false,"Links":[{"SourceID":108507,"TargetID":108508,"Directional":false}]},{"ID":4711,"SourceStructureID":20136,"TargetStructureID":108512,"Label":"20136-108512 via Adherens from 108516 -> 108515","Type":"Adherens","Directional":false,"Links":[{"SourceID":108516,"TargetID":108515,"Directional":false}]},{"ID":4712,"SourceStructureID":20136,"TargetStructureID":108766,"Label":"20136-108766 via Unknown from 108778 -> 108779","Type":"Unknown","Directional":false,"Links":[{"SourceID":108778,"TargetID":108779,"Directional":false}]},{"ID":4713,"SourceStructureID":20136,"TargetStructureID":108770,"Label":"20136-108770 via Adherens from 108773 -> 108774","Type":"Adherens","Directional":false,"Links":[{"SourceID":108773,"TargetID":108774,"Directional":false}]},{"ID":4714,"SourceStructureID":20136,"TargetStructureID":108800,"Label":"20136-108800 via Adherens from 108813 -> 108812","Type":"Adherens","Directional":false,"Links":[{"SourceID":108813,"TargetID":108812,"Directional":false}]},{"ID":4715,"SourceStructureID":20136,"TargetStructureID":108804,"Label":"20136-108804 via Adherens from 108811 -> 108810","Type":"Adherens","Directional":false,"Links":[{"SourceID":108811,"TargetID":108810,"Directional":false}]},{"ID":4716,"SourceStructureID":20136,"TargetStructureID":108849,"Label":"20136-108849 via Unknown from 108850 -> 108851","Type":"Unknown","Directional":false,"Links":[{"SourceID":108850,"TargetID":108851,"Directional":false}]},{"ID":4717,"SourceStructureID":20136,"TargetStructureID":108853,"Label":"20136-108853 via Unknown from 108854 -> 108855","Type":"Unknown","Directional":false,"Links":[{"SourceID":108854,"TargetID":108855,"Directional":false}]},{"ID":4718,"SourceStructureID":20136,"TargetStructureID":108899,"Label":"20136-108899 via Unknown from 108902 -> 108901","Type":"Unknown","Directional":false,"Links":[{"SourceID":108902,"TargetID":108901,"Directional":false}]},{"ID":4719,"SourceStructureID":20136,"TargetStructureID":108903,"Label":"20136-108903 via Unknown from 108909 -> 108908","Type":"Unknown","Directional":false,"Links":[{"SourceID":108909,"TargetID":108908,"Directional":false}]},{"ID":4720,"SourceStructureID":108944,"TargetStructureID":20136,"Label":"108944-20136 via Adherens from 108947 -> 108948","Type":"Adherens","Directional":false,"Links":[{"SourceID":108947,"TargetID":108948,"Directional":false}]},{"ID":4721,"SourceStructureID":20136,"TargetStructureID":108963,"Label":"20136-108963 via Unknown from 108965 -> 108964","Type":"Unknown","Directional":false,"Links":[{"SourceID":108965,"TargetID":108964,"Directional":false}]},{"ID":4722,"SourceStructureID":20136,"TargetStructureID":108975,"Label":"20136-108975 via Adherens from 108977 -> 108976","Type":"Adherens","Directional":false,"Links":[{"SourceID":108977,"TargetID":108976,"Directional":false}]},{"ID":4723,"SourceStructureID":20136,"TargetStructureID":109097,"Label":"20136-109097 via Adherens from 109100 -> 109103","Type":"Adherens","Directional":false,"Links":[{"SourceID":109100,"TargetID":109103,"Directional":false}]},{"ID":4724,"SourceStructureID":20136,"TargetStructureID":109116,"Label":"20136-109116 via Adherens from 109170 -> 109171","Type":"Adherens","Directional":false,"Links":[{"SourceID":109170,"TargetID":109171,"Directional":false}]},{"ID":4725,"SourceStructureID":20136,"TargetStructureID":109124,"Label":"20136-109124 via Adherens from 109174 -> 109175","Type":"Adherens","Directional":false,"Links":[{"SourceID":109174,"TargetID":109175,"Directional":false}]},{"ID":4726,"SourceStructureID":20136,"TargetStructureID":109190,"Label":"20136-109190 via Unknown from 109192 -> 109191","Type":"Unknown","Directional":false,"Links":[{"SourceID":109192,"TargetID":109191,"Directional":false}]},{"ID":4727,"SourceStructureID":20136,"TargetStructureID":109220,"Label":"20136-109220 via Unknown from 109222 -> 109221","Type":"Unknown","Directional":false,"Links":[{"SourceID":109222,"TargetID":109221,"Directional":false}]},{"ID":4728,"SourceStructureID":20136,"TargetStructureID":109223,"Label":"20136-109223 via Unknown from 97826 -> 109224","Type":"Unknown","Directional":false,"Links":[{"SourceID":97826,"TargetID":109224,"Directional":false}]},{"ID":4729,"SourceStructureID":109225,"TargetStructureID":20136,"Label":"109225-20136 via Unknown from 109250 -> 109249","Type":"Unknown","Directional":false,"Links":[{"SourceID":109250,"TargetID":109249,"Directional":false}]},{"ID":4730,"SourceStructureID":109257,"TargetStructureID":20136,"Label":"109257-20136 via Adherens from 109265 -> 109266","Type":"Adherens","Directional":false,"Links":[{"SourceID":109265,"TargetID":109266,"Directional":false}]},{"ID":4731,"SourceStructureID":20136,"TargetStructureID":109262,"Label":"20136-109262 via Gap Junction from 109263 -> 109264","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109263,"TargetID":109264,"Directional":false}]},{"ID":4732,"SourceStructureID":20136,"TargetStructureID":109305,"Label":"20136-109305 via Adherens from 109355 -> 109356","Type":"Adherens","Directional":false,"Links":[{"SourceID":109355,"TargetID":109356,"Directional":false}]},{"ID":4733,"SourceStructureID":109350,"TargetStructureID":20136,"Label":"109350-20136 via Unknown from 109351 -> 109349","Type":"Unknown","Directional":false,"Links":[{"SourceID":109351,"TargetID":109349,"Directional":false}]},{"ID":4734,"SourceStructureID":20136,"TargetStructureID":109500,"Label":"20136-109500 via Unknown from 109501 -> 109502","Type":"Unknown","Directional":false,"Links":[{"SourceID":109501,"TargetID":109502,"Directional":false}]},{"ID":4735,"SourceStructureID":20136,"TargetStructureID":109540,"Label":"20136-109540 via Unknown from 109682 -> 109684, 133989 -> 109684","Type":"Unknown","Directional":false,"Links":[{"SourceID":109682,"TargetID":109684,"Directional":false},{"SourceID":133989,"TargetID":109684,"Directional":false}]},{"ID":4736,"SourceStructureID":20136,"TargetStructureID":109552,"Label":"20136-109552 via Unknown from 109556 -> 109557","Type":"Unknown","Directional":false,"Links":[{"SourceID":109556,"TargetID":109557,"Directional":false}]},{"ID":4737,"SourceStructureID":109582,"TargetStructureID":20136,"Label":"109582-20136 via Unknown from 109583 -> 109584","Type":"Unknown","Directional":false,"Links":[{"SourceID":109583,"TargetID":109584,"Directional":false}]},{"ID":4738,"SourceStructureID":109588,"TargetStructureID":20136,"Label":"109588-20136 via Unknown from 109592 -> 109593","Type":"Unknown","Directional":false,"Links":[{"SourceID":109592,"TargetID":109593,"Directional":false}]},{"ID":4739,"SourceStructureID":20136,"TargetStructureID":109674,"Label":"20136-109674 via Unknown from 109682 -> 109683","Type":"Unknown","Directional":false,"Links":[{"SourceID":109682,"TargetID":109683,"Directional":false}]},{"ID":4740,"SourceStructureID":20136,"TargetStructureID":109722,"Label":"20136-109722 via Unknown from 109725 -> 109726, 109752 -> 109751","Type":"Unknown","Directional":false,"Links":[{"SourceID":109725,"TargetID":109726,"Directional":false},{"SourceID":109752,"TargetID":109751,"Directional":false}]},{"ID":4741,"SourceStructureID":109753,"TargetStructureID":20136,"Label":"109753-20136 via Unknown from 109754 -> 109755","Type":"Unknown","Directional":false,"Links":[{"SourceID":109754,"TargetID":109755,"Directional":false}]},{"ID":4742,"SourceStructureID":109756,"TargetStructureID":20136,"Label":"109756-20136 via Unknown from 109784 -> 109785","Type":"Unknown","Directional":false,"Links":[{"SourceID":109784,"TargetID":109785,"Directional":false}]},{"ID":4743,"SourceStructureID":20136,"TargetStructureID":109774,"Label":"20136-109774 via Unknown from 109359 -> 109775","Type":"Unknown","Directional":false,"Links":[{"SourceID":109359,"TargetID":109775,"Directional":false}]},{"ID":4744,"SourceStructureID":20136,"TargetStructureID":109821,"Label":"20136-109821 via Adherens from 109823 -> 109822","Type":"Adherens","Directional":false,"Links":[{"SourceID":109823,"TargetID":109822,"Directional":false}]},{"ID":4745,"SourceStructureID":109853,"TargetStructureID":20136,"Label":"109853-20136 via Adherens from 109854 -> 109855, 109867 -> 109868","Type":"Adherens","Directional":false,"Links":[{"SourceID":109854,"TargetID":109855,"Directional":false},{"SourceID":109867,"TargetID":109868,"Directional":false}]},{"ID":4746,"SourceStructureID":20136,"TargetStructureID":109873,"Label":"20136-109873 via Unknown from 109874 -> 109875","Type":"Unknown","Directional":false,"Links":[{"SourceID":109874,"TargetID":109875,"Directional":false}]},{"ID":4747,"SourceStructureID":109884,"TargetStructureID":20136,"Label":"109884-20136 via Unknown from 109886 -> 109885","Type":"Unknown","Directional":false,"Links":[{"SourceID":109886,"TargetID":109885,"Directional":false}]},{"ID":4748,"SourceStructureID":20136,"TargetStructureID":109908,"Label":"20136-109908 via Unknown from 109909 -> 109910","Type":"Unknown","Directional":false,"Links":[{"SourceID":109909,"TargetID":109910,"Directional":false}]},{"ID":4749,"SourceStructureID":20136,"TargetStructureID":110227,"Label":"20136-110227 via Unknown from 110229 -> 110230","Type":"Unknown","Directional":false,"Links":[{"SourceID":110229,"TargetID":110230,"Directional":false}]},{"ID":4750,"SourceStructureID":110233,"TargetStructureID":20136,"Label":"110233-20136 via Unknown from 110268 -> 110269","Type":"Unknown","Directional":false,"Links":[{"SourceID":110268,"TargetID":110269,"Directional":false}]},{"ID":4751,"SourceStructureID":110265,"TargetStructureID":20136,"Label":"110265-20136 via Unknown from 110266 -> 110267","Type":"Unknown","Directional":false,"Links":[{"SourceID":110266,"TargetID":110267,"Directional":false}]},{"ID":4752,"SourceStructureID":110271,"TargetStructureID":20136,"Label":"110271-20136 via Adherens from 110279 -> 110280","Type":"Adherens","Directional":false,"Links":[{"SourceID":110279,"TargetID":110280,"Directional":false}]},{"ID":4753,"SourceStructureID":110292,"TargetStructureID":20136,"Label":"110292-20136 via Adherens from 110344 -> 110264","Type":"Adherens","Directional":false,"Links":[{"SourceID":110344,"TargetID":110264,"Directional":false}]},{"ID":4754,"SourceStructureID":110309,"TargetStructureID":20136,"Label":"110309-20136 via Unknown from 110310 -> 110311","Type":"Unknown","Directional":false,"Links":[{"SourceID":110310,"TargetID":110311,"Directional":false}]},{"ID":4755,"SourceStructureID":20136,"TargetStructureID":110327,"Label":"20136-110327 via Adherens from 110328 -> 110329","Type":"Adherens","Directional":false,"Links":[{"SourceID":110328,"TargetID":110329,"Directional":false}]},{"ID":4756,"SourceStructureID":110335,"TargetStructureID":20136,"Label":"110335-20136 via Unknown from 110336 -> 110338","Type":"Unknown","Directional":false,"Links":[{"SourceID":110336,"TargetID":110338,"Directional":false}]},{"ID":4757,"SourceStructureID":110340,"TargetStructureID":20136,"Label":"110340-20136 via Adherens from 110341 -> 110342","Type":"Adherens","Directional":false,"Links":[{"SourceID":110341,"TargetID":110342,"Directional":false}]},{"ID":4758,"SourceStructureID":110356,"TargetStructureID":20136,"Label":"110356-20136 via Adherens from 110397 -> 110398","Type":"Adherens","Directional":false,"Links":[{"SourceID":110397,"TargetID":110398,"Directional":false}]},{"ID":4759,"SourceStructureID":110367,"TargetStructureID":20136,"Label":"110367-20136 via Gap Junction from 110369 -> 93852","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":110369,"TargetID":93852,"Directional":false}]},{"ID":4760,"SourceStructureID":20136,"TargetStructureID":110394,"Label":"20136-110394 via Unknown from 110409 -> 133990","Type":"Unknown","Directional":false,"Links":[{"SourceID":110409,"TargetID":133990,"Directional":false}]},{"ID":4761,"SourceStructureID":20136,"TargetStructureID":110399,"Label":"20136-110399 via Adherens from 110401 -> 110402","Type":"Adherens","Directional":false,"Links":[{"SourceID":110401,"TargetID":110402,"Directional":false}]},{"ID":4762,"SourceStructureID":20136,"TargetStructureID":110412,"Label":"20136-110412 via Unknown from 110413 -> 110414","Type":"Unknown","Directional":false,"Links":[{"SourceID":110413,"TargetID":110414,"Directional":false}]},{"ID":4763,"SourceStructureID":110416,"TargetStructureID":20136,"Label":"110416-20136 via Adherens from 110427 -> 110428","Type":"Adherens","Directional":false,"Links":[{"SourceID":110427,"TargetID":110428,"Directional":false}]},{"ID":4764,"SourceStructureID":21299,"TargetStructureID":21299,"Label":"21299-21299 via Unknown from 91629 -> 91628","Type":"Unknown","Directional":false,"Links":[{"SourceID":91629,"TargetID":91628,"Directional":false}]},{"ID":4765,"SourceStructureID":21299,"TargetStructureID":56583,"Label":"21299-56583 via Unknown from 92833 -> 91739","Type":"Unknown","Directional":false,"Links":[{"SourceID":92833,"TargetID":91739,"Directional":false}]},{"ID":4766,"SourceStructureID":21299,"TargetStructureID":59422,"Label":"21299-59422 via Touch from 59460 -> 59461","Type":"Touch","Directional":false,"Links":[{"SourceID":59460,"TargetID":59461,"Directional":false}]},{"ID":4767,"SourceStructureID":21299,"TargetStructureID":88790,"Label":"21299-88790 via Gap Junction from 48990 -> 91631","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48990,"TargetID":91631,"Directional":false}]},{"ID":4768,"SourceStructureID":21299,"TargetStructureID":91585,"Label":"21299-91585 via Gap Junction from 48875 -> 91586","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48875,"TargetID":91586,"Directional":false}]},{"ID":4769,"SourceStructureID":91588,"TargetStructureID":21299,"Label":"91588-21299 via Unknown from 91589 -> 91587","Type":"Unknown","Directional":false,"Links":[{"SourceID":91589,"TargetID":91587,"Directional":false}]},{"ID":4770,"SourceStructureID":21299,"TargetStructureID":91593,"Label":"21299-91593 via Gap Junction from 49005 -> 92590","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49005,"TargetID":92590,"Directional":false}]},{"ID":4771,"SourceStructureID":21299,"TargetStructureID":91593,"Label":"21299-91593 via Unknown from 91600 -> 91599","Type":"Unknown","Directional":false,"Links":[{"SourceID":91600,"TargetID":91599,"Directional":false}]},{"ID":4772,"SourceStructureID":91651,"TargetStructureID":21299,"Label":"91651-21299 via Gap Junction from 91652 -> 49019","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91652,"TargetID":49019,"Directional":false}]},{"ID":4773,"SourceStructureID":21299,"TargetStructureID":91653,"Label":"21299-91653 via Unknown from 91656 -> 91655","Type":"Unknown","Directional":false,"Links":[{"SourceID":91656,"TargetID":91655,"Directional":false}]},{"ID":4774,"SourceStructureID":91692,"TargetStructureID":21299,"Label":"91692-21299 via Unknown from 91693 -> 91684","Type":"Unknown","Directional":false,"Links":[{"SourceID":91693,"TargetID":91684,"Directional":false}]},{"ID":4775,"SourceStructureID":91694,"TargetStructureID":21299,"Label":"91694-21299 via Unknown from 91695 -> 91685","Type":"Unknown","Directional":false,"Links":[{"SourceID":91695,"TargetID":91685,"Directional":false}]},{"ID":4776,"SourceStructureID":91701,"TargetStructureID":21299,"Label":"91701-21299 via Unknown from 91702 -> 48964","Type":"Unknown","Directional":false,"Links":[{"SourceID":91702,"TargetID":48964,"Directional":false}]},{"ID":4777,"SourceStructureID":21299,"TargetStructureID":91709,"Label":"21299-91709 via Adherens from 91714 -> 91713","Type":"Adherens","Directional":false,"Links":[{"SourceID":91714,"TargetID":91713,"Directional":false}]},{"ID":4778,"SourceStructureID":91709,"TargetStructureID":21299,"Label":"91709-21299 via Gap Junction from 91710 -> 91708","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91710,"TargetID":91708,"Directional":false}]},{"ID":4779,"SourceStructureID":21299,"TargetStructureID":91723,"Label":"21299-91723 via Gap Junction from 48841 -> 91724","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48841,"TargetID":91724,"Directional":false}]},{"ID":4780,"SourceStructureID":91727,"TargetStructureID":21299,"Label":"91727-21299 via Gap Junction from 91728 -> 48810","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91728,"TargetID":48810,"Directional":false}]},{"ID":4781,"SourceStructureID":91740,"TargetStructureID":21299,"Label":"91740-21299 via Gap Junction from 91741 -> 48799","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91741,"TargetID":48799,"Directional":false}]},{"ID":4782,"SourceStructureID":91743,"TargetStructureID":21299,"Label":"91743-21299 via Gap Junction from 91744 -> 48802","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91744,"TargetID":48802,"Directional":false}]},{"ID":4783,"SourceStructureID":91754,"TargetStructureID":21299,"Label":"91754-21299 via Gap Junction from 91755 -> 48848","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91755,"TargetID":48848,"Directional":false}]},{"ID":4784,"SourceStructureID":91768,"TargetStructureID":21299,"Label":"91768-21299 via Unknown from 91769 -> 91767","Type":"Unknown","Directional":false,"Links":[{"SourceID":91769,"TargetID":91767,"Directional":false}]},{"ID":4785,"SourceStructureID":98262,"TargetStructureID":21299,"Label":"98262-21299 via Gap Junction from 98264 -> 48502","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98264,"TargetID":48502,"Directional":false}]},{"ID":4786,"SourceStructureID":119517,"TargetStructureID":21299,"Label":"119517-21299 via Gap Junction from 119530 -> 119529","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119530,"TargetID":119529,"Directional":false}]},{"ID":4787,"SourceStructureID":131177,"TargetStructureID":21299,"Label":"131177-21299 via Gap Junction from 131178 -> 131176","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131178,"TargetID":131176,"Directional":false}]},{"ID":4788,"SourceStructureID":131177,"TargetStructureID":21299,"Label":"131177-21299 via Unknown from 133798 -> 133799","Type":"Unknown","Directional":false,"Links":[{"SourceID":133798,"TargetID":133799,"Directional":false}]},{"ID":4789,"SourceStructureID":21779,"TargetStructureID":22210,"Label":"21779-22210 via Adherens from 32133 -> 32040","Type":"Adherens","Directional":false,"Links":[{"SourceID":32133,"TargetID":32040,"Directional":false}]},{"ID":4790,"SourceStructureID":32273,"TargetStructureID":21779,"Label":"32273-21779 via Adherens from 32275 -> 32106","Type":"Adherens","Directional":false,"Links":[{"SourceID":32275,"TargetID":32106,"Directional":false}]},{"ID":4791,"SourceStructureID":68539,"TargetStructureID":22974,"Label":"68539-22974 via Adherens from 70271 -> 68983","Type":"Adherens","Directional":false,"Links":[{"SourceID":70271,"TargetID":68983,"Directional":false}]},{"ID":4792,"SourceStructureID":22974,"TargetStructureID":68563,"Label":"22974-68563 via Adherens from 68562 -> 68564","Type":"Adherens","Directional":false,"Links":[{"SourceID":68562,"TargetID":68564,"Directional":false}]},{"ID":4793,"SourceStructureID":68539,"TargetStructureID":22994,"Label":"68539-22994 via Adherens from 75943 -> 75942","Type":"Adherens","Directional":false,"Links":[{"SourceID":75943,"TargetID":75942,"Directional":false}]},{"ID":4794,"SourceStructureID":22994,"TargetStructureID":75933,"Label":"22994-75933 via Adherens from 75938 -> 75937","Type":"Adherens","Directional":false,"Links":[{"SourceID":75938,"TargetID":75937,"Directional":false}]},{"ID":4795,"SourceStructureID":23870,"TargetStructureID":73460,"Label":"23870-73460 via Unknown from 73462 -> 73461","Type":"Unknown","Directional":false,"Links":[{"SourceID":73462,"TargetID":73461,"Directional":false}]},{"ID":4796,"SourceStructureID":24303,"TargetStructureID":24303,"Label":"24303-24303 via Unknown from 122496 -> 122495","Type":"Unknown","Directional":false,"Links":[{"SourceID":122496,"TargetID":122495,"Directional":false}]},{"ID":4797,"SourceStructureID":24303,"TargetStructureID":28886,"Label":"24303-28886 via Gap Junction from 51373 -> 51372, 122498 -> 122497","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51373,"TargetID":51372,"Directional":false},{"SourceID":122498,"TargetID":122497,"Directional":false}]},{"ID":4798,"SourceStructureID":122484,"TargetStructureID":24303,"Label":"122484-24303 via Gap Junction from 122485 -> 122483","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122485,"TargetID":122483,"Directional":false}]},{"ID":4799,"SourceStructureID":24303,"TargetStructureID":122488,"Label":"24303-122488 via Gap Junction from 122487 -> 122489","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122487,"TargetID":122489,"Directional":false}]},{"ID":4800,"SourceStructureID":24366,"TargetStructureID":24366,"Label":"24366-24366 via Gap Junction from 24380 -> 24379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24380,"TargetID":24379,"Directional":false}]},{"ID":4801,"SourceStructureID":105844,"TargetStructureID":24401,"Label":"105844-24401 via Gap Junction from 105845 -> 105846","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":105845,"TargetID":105846,"Directional":false}]},{"ID":4802,"SourceStructureID":121135,"TargetStructureID":24401,"Label":"121135-24401 via Gap Junction from 121136 -> 48093","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121136,"TargetID":48093,"Directional":false}]},{"ID":4803,"SourceStructureID":121141,"TargetStructureID":24401,"Label":"121141-24401 via Gap Junction from 121142 -> 121140","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121142,"TargetID":121140,"Directional":false}]},{"ID":4804,"SourceStructureID":24401,"TargetStructureID":121177,"Label":"24401-121177 via Gap Junction from 121175 -> 121178","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121175,"TargetID":121178,"Directional":false}]},{"ID":4805,"SourceStructureID":25155,"TargetStructureID":25155,"Label":"25155-25155 via Gap Junction from 38210 -> 38211","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38210,"TargetID":38211,"Directional":false}]},{"ID":4806,"SourceStructureID":25359,"TargetStructureID":25342,"Label":"25359-25342 via Unknown from 88461 -> 88463","Type":"Unknown","Directional":false,"Links":[{"SourceID":88461,"TargetID":88463,"Directional":false}]},{"ID":4807,"SourceStructureID":25367,"TargetStructureID":68023,"Label":"25367-68023 via Adherens from 82355 -> 68660","Type":"Adherens","Directional":false,"Links":[{"SourceID":82355,"TargetID":68660,"Directional":false}]},{"ID":4808,"SourceStructureID":82362,"TargetStructureID":25367,"Label":"82362-25367 via Unknown from 82363 -> 82361","Type":"Unknown","Directional":false,"Links":[{"SourceID":82363,"TargetID":82361,"Directional":false}]},{"ID":4809,"SourceStructureID":25440,"TargetStructureID":54744,"Label":"25440-54744 via Adherens from 91008 -> 91009, 91010 -> 91011","Type":"Adherens","Directional":false,"Links":[{"SourceID":91008,"TargetID":91009,"Directional":false},{"SourceID":91010,"TargetID":91011,"Directional":false}]},{"ID":4810,"SourceStructureID":25869,"TargetStructureID":36419,"Label":"25869-36419 via Adherens from 118361 -> 118360, 118365 -> 118364, 118369 -> 98606, 118370 -> 98607","Type":"Adherens","Directional":false,"Links":[{"SourceID":118361,"TargetID":118360,"Directional":false},{"SourceID":118365,"TargetID":118364,"Directional":false},{"SourceID":118369,"TargetID":98606,"Directional":false},{"SourceID":118370,"TargetID":98607,"Directional":false}]},{"ID":4811,"SourceStructureID":26079,"TargetStructureID":26079,"Label":"26079-26079 via Gap Junction from 120871 -> 47043","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120871,"TargetID":47043,"Directional":false}]},{"ID":4812,"SourceStructureID":26079,"TargetStructureID":102007,"Label":"26079-102007 via Unknown from 121243 -> 121244","Type":"Unknown","Directional":false,"Links":[{"SourceID":121243,"TargetID":121244,"Directional":false}]},{"ID":4813,"SourceStructureID":102517,"TargetStructureID":26079,"Label":"102517-26079 via Unknown from 102938 -> 102937","Type":"Unknown","Directional":false,"Links":[{"SourceID":102938,"TargetID":102937,"Directional":false}]},{"ID":4814,"SourceStructureID":121258,"TargetStructureID":26079,"Label":"121258-26079 via Gap Junction from 121259 -> 121257","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121259,"TargetID":121257,"Directional":false}]},{"ID":4815,"SourceStructureID":26079,"TargetStructureID":121265,"Label":"26079-121265 via Gap Junction from 121263 -> 121266","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121263,"TargetID":121266,"Directional":false}]},{"ID":4816,"SourceStructureID":39862,"TargetStructureID":28886,"Label":"39862-28886 via Gap Junction from 51357 -> 51356, 51386 -> 52365, 52317 -> 51336, 52368 -> 51400","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51357,"TargetID":51356,"Directional":false},{"SourceID":51386,"TargetID":52365,"Directional":false},{"SourceID":52317,"TargetID":51336,"Directional":false},{"SourceID":52368,"TargetID":51400,"Directional":false}]},{"ID":4817,"SourceStructureID":56973,"TargetStructureID":28886,"Label":"56973-28886 via Gap Junction from 56974 -> 51418","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56974,"TargetID":51418,"Directional":false}]},{"ID":4818,"SourceStructureID":56975,"TargetStructureID":28886,"Label":"56975-28886 via Gap Junction from 56976 -> 51452","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56976,"TargetID":51452,"Directional":false}]},{"ID":4819,"SourceStructureID":30130,"TargetStructureID":68548,"Label":"30130-68548 via Adherens from 75365 -> 75364","Type":"Adherens","Directional":false,"Links":[{"SourceID":75365,"TargetID":75364,"Directional":false}]},{"ID":4820,"SourceStructureID":31161,"TargetStructureID":31024,"Label":"31161-31024 via Adherens from 31175 -> 31113","Type":"Adherens","Directional":false,"Links":[{"SourceID":31175,"TargetID":31113,"Directional":false}]},{"ID":4821,"SourceStructureID":31024,"TargetStructureID":75272,"Label":"31024-75272 via Adherens from 75278 -> 75277","Type":"Adherens","Directional":false,"Links":[{"SourceID":75278,"TargetID":75277,"Directional":false}]},{"ID":4822,"SourceStructureID":68486,"TargetStructureID":31161,"Label":"68486-31161 via Adherens from 79607 -> 79606","Type":"Adherens","Directional":false,"Links":[{"SourceID":79607,"TargetID":79606,"Directional":false}]},{"ID":4823,"SourceStructureID":31702,"TargetStructureID":39998,"Label":"31702-39998 via Adherens from 40001 -> 40000","Type":"Adherens","Directional":false,"Links":[{"SourceID":40001,"TargetID":40000,"Directional":false}]},{"ID":4824,"SourceStructureID":40844,"TargetStructureID":32035,"Label":"40844-32035 via Adherens from 40847 -> 32041","Type":"Adherens","Directional":false,"Links":[{"SourceID":40847,"TargetID":32041,"Directional":false}]},{"ID":4825,"SourceStructureID":61114,"TargetStructureID":32383,"Label":"61114-32383 via Gap Junction from 61115 -> 61113","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61115,"TargetID":61113,"Directional":false}]},{"ID":4826,"SourceStructureID":80755,"TargetStructureID":32654,"Label":"80755-32654 via Gap Junction from 80778 -> 80777","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":80778,"TargetID":80777,"Directional":false}]},{"ID":4827,"SourceStructureID":32804,"TargetStructureID":64196,"Label":"32804-64196 via Adherens from 64212 -> 64213","Type":"Adherens","Directional":false,"Links":[{"SourceID":64212,"TargetID":64213,"Directional":false}]},{"ID":4828,"SourceStructureID":32959,"TargetStructureID":60535,"Label":"32959-60535 via Adherens from 60539 -> 60538","Type":"Adherens","Directional":false,"Links":[{"SourceID":60539,"TargetID":60538,"Directional":false}]},{"ID":4829,"SourceStructureID":68277,"TargetStructureID":35176,"Label":"68277-35176 via Adherens from 82248 -> 82249","Type":"Adherens","Directional":false,"Links":[{"SourceID":82248,"TargetID":82249,"Directional":false}]},{"ID":4830,"SourceStructureID":86201,"TargetStructureID":35894,"Label":"86201-35894 via Adherens from 86208 -> 35933","Type":"Adherens","Directional":false,"Links":[{"SourceID":86208,"TargetID":35933,"Directional":false}]},{"ID":4831,"SourceStructureID":82743,"TargetStructureID":36130,"Label":"82743-36130 via Adherens from 82785 -> 82786","Type":"Adherens","Directional":false,"Links":[{"SourceID":82785,"TargetID":82786,"Directional":false}]},{"ID":4832,"SourceStructureID":36516,"TargetStructureID":67331,"Label":"36516-67331 via Gap Junction from 67335 -> 67334","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":67335,"TargetID":67334,"Directional":false}]},{"ID":4833,"SourceStructureID":36516,"TargetStructureID":67410,"Label":"36516-67410 via Adherens from 82771 -> 82770","Type":"Adherens","Directional":false,"Links":[{"SourceID":82771,"TargetID":82770,"Directional":false}]},{"ID":4834,"SourceStructureID":90530,"TargetStructureID":38632,"Label":"90530-38632 via Adherens from 90532 -> 90533","Type":"Adherens","Directional":false,"Links":[{"SourceID":90532,"TargetID":90533,"Directional":false}]},{"ID":4835,"SourceStructureID":40934,"TargetStructureID":39216,"Label":"40934-39216 via Unknown from 90144 -> 90146","Type":"Unknown","Directional":false,"Links":[{"SourceID":90144,"TargetID":90146,"Directional":false}]},{"ID":4836,"SourceStructureID":39530,"TargetStructureID":97024,"Label":"39530-97024 via Unknown from 97083 -> 97082","Type":"Unknown","Directional":false,"Links":[{"SourceID":97083,"TargetID":97082,"Directional":false}]},{"ID":4837,"SourceStructureID":116581,"TargetStructureID":39615,"Label":"116581-39615 via Adherens from 116583 -> 116580","Type":"Adherens","Directional":false,"Links":[{"SourceID":116583,"TargetID":116580,"Directional":false}]},{"ID":4838,"SourceStructureID":39787,"TargetStructureID":39790,"Label":"39787-39790 via Gap Junction from 93135 -> 93136","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93135,"TargetID":93136,"Directional":false}]},{"ID":4839,"SourceStructureID":39807,"TargetStructureID":39816,"Label":"39807-39816 via Gap Junction from 89977 -> 89976","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89977,"TargetID":89976,"Directional":false}]},{"ID":4840,"SourceStructureID":39816,"TargetStructureID":39824,"Label":"39816-39824 via Unknown from 89973 -> 89975","Type":"Unknown","Directional":false,"Links":[{"SourceID":89973,"TargetID":89975,"Directional":false}]},{"ID":4841,"SourceStructureID":40039,"TargetStructureID":80210,"Label":"40039-80210 via Adherens from 84382 -> 84383","Type":"Adherens","Directional":false,"Links":[{"SourceID":84382,"TargetID":84383,"Directional":false}]},{"ID":4842,"SourceStructureID":40039,"TargetStructureID":82704,"Label":"40039-82704 via Adherens from 82705 -> 82706","Type":"Adherens","Directional":false,"Links":[{"SourceID":82705,"TargetID":82706,"Directional":false}]},{"ID":4843,"SourceStructureID":40039,"TargetStructureID":86162,"Label":"40039-86162 via Gap Junction from 82701 -> 86163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":82701,"TargetID":86163,"Directional":false}]},{"ID":4844,"SourceStructureID":40469,"TargetStructureID":40469,"Label":"40469-40469 via Adherens from 40492 -> 40491","Type":"Adherens","Directional":false,"Links":[{"SourceID":40492,"TargetID":40491,"Directional":false}]},{"ID":4845,"SourceStructureID":40911,"TargetStructureID":40917,"Label":"40911-40917 via Unknown from 93294 -> 93293","Type":"Unknown","Directional":false,"Links":[{"SourceID":93294,"TargetID":93293,"Directional":false}]},{"ID":4846,"SourceStructureID":90328,"TargetStructureID":40951,"Label":"90328-40951 via Unknown from 90342 -> 90343","Type":"Unknown","Directional":false,"Links":[{"SourceID":90342,"TargetID":90343,"Directional":false}]},{"ID":4847,"SourceStructureID":41474,"TargetStructureID":41474,"Label":"41474-41474 via Gap Junction from 103300 -> 103299","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":103300,"TargetID":103299,"Directional":false}]},{"ID":4848,"SourceStructureID":41608,"TargetStructureID":66523,"Label":"41608-66523 via Adherens from 77955 -> 77954","Type":"Adherens","Directional":false,"Links":[{"SourceID":77955,"TargetID":77954,"Directional":false}]},{"ID":4849,"SourceStructureID":68497,"TargetStructureID":41608,"Label":"68497-41608 via Adherens from 81598 -> 81599","Type":"Adherens","Directional":false,"Links":[{"SourceID":81598,"TargetID":81599,"Directional":false}]},{"ID":4850,"SourceStructureID":41636,"TargetStructureID":85946,"Label":"41636-85946 via Gap Junction from 85949 -> 85948","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85949,"TargetID":85948,"Directional":false}]},{"ID":4851,"SourceStructureID":68444,"TargetStructureID":43431,"Label":"68444-43431 via Adherens from 80455 -> 80456","Type":"Adherens","Directional":false,"Links":[{"SourceID":80455,"TargetID":80456,"Directional":false}]},{"ID":4852,"SourceStructureID":68585,"TargetStructureID":43712,"Label":"68585-43712 via Adherens from 68586 -> 68584","Type":"Adherens","Directional":false,"Links":[{"SourceID":68586,"TargetID":68584,"Directional":false}]},{"ID":4853,"SourceStructureID":43716,"TargetStructureID":88260,"Label":"43716-88260 via Adherens from 88298 -> 88297","Type":"Adherens","Directional":false,"Links":[{"SourceID":88298,"TargetID":88297,"Directional":false}]},{"ID":4854,"SourceStructureID":53828,"TargetStructureID":44256,"Label":"53828-44256 via Gap Junction from 54664 -> 54663, 121672 -> 121673","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54664,"TargetID":54663,"Directional":false},{"SourceID":121672,"TargetID":121673,"Directional":false}]},{"ID":4855,"SourceStructureID":44970,"TargetStructureID":44346,"Label":"44970-44346 via Adherens from 44976 -> 44347","Type":"Adherens","Directional":false,"Links":[{"SourceID":44976,"TargetID":44347,"Directional":false}]},{"ID":4856,"SourceStructureID":44346,"TargetStructureID":87972,"Label":"44346-87972 via Adherens from 44367 -> 88042, 87976 -> 87977, 87984 -> 87985, 87986 -> 87987, 88041 -> 88040","Type":"Adherens","Directional":false,"Links":[{"SourceID":44367,"TargetID":88042,"Directional":false},{"SourceID":87976,"TargetID":87977,"Directional":false},{"SourceID":87984,"TargetID":87985,"Directional":false},{"SourceID":87986,"TargetID":87987,"Directional":false},{"SourceID":88041,"TargetID":88040,"Directional":false}]},{"ID":4857,"SourceStructureID":68539,"TargetStructureID":45555,"Label":"68539-45555 via Adherens from 70278 -> 70277","Type":"Adherens","Directional":false,"Links":[{"SourceID":70278,"TargetID":70277,"Directional":false}]},{"ID":4858,"SourceStructureID":68539,"TargetStructureID":45571,"Label":"68539-45571 via Adherens from 76036 -> 70282","Type":"Adherens","Directional":false,"Links":[{"SourceID":76036,"TargetID":70282,"Directional":false}]},{"ID":4859,"SourceStructureID":61836,"TargetStructureID":45574,"Label":"61836-45574 via Adherens from 69787 -> 69788","Type":"Adherens","Directional":false,"Links":[{"SourceID":69787,"TargetID":69788,"Directional":false}]},{"ID":4860,"SourceStructureID":46801,"TargetStructureID":45894,"Label":"46801-45894 via Gap Junction from 46802 -> 45905","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46802,"TargetID":45905,"Directional":false}]},{"ID":4861,"SourceStructureID":46388,"TargetStructureID":46105,"Label":"46388-46105 via Gap Junction from 46397 -> 46233","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46397,"TargetID":46233,"Directional":false}]},{"ID":4862,"SourceStructureID":46388,"TargetStructureID":50449,"Label":"46388-50449 via Gap Junction from 121433 -> 121434, 121436 -> 120843, 121442 -> 121443","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121433,"TargetID":121434,"Directional":false},{"SourceID":121436,"TargetID":120843,"Directional":false},{"SourceID":121442,"TargetID":121443,"Directional":false}]},{"ID":4863,"SourceStructureID":89120,"TargetStructureID":46388,"Label":"89120-46388 via Gap Junction from 89147 -> 46588, 122403 -> 122402","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89147,"TargetID":46588,"Directional":false},{"SourceID":122403,"TargetID":122402,"Directional":false}]},{"ID":4864,"SourceStructureID":118258,"TargetStructureID":46388,"Label":"118258-46388 via Gap Junction from 118260 -> 148231, 118261 -> 148232","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118260,"TargetID":148231,"Directional":false},{"SourceID":118261,"TargetID":148232,"Directional":false}]},{"ID":4865,"SourceStructureID":46498,"TargetStructureID":136884,"Label":"46498-136884 via Conventional from 127915 -> 136888","Type":"Conventional","Directional":false,"Links":[{"SourceID":127915,"TargetID":136888,"Directional":false}]},{"ID":4866,"SourceStructureID":69162,"TargetStructureID":47013,"Label":"69162-47013 via Adherens from 69256 -> 47027","Type":"Adherens","Directional":false,"Links":[{"SourceID":69256,"TargetID":47027,"Directional":false}]},{"ID":4867,"SourceStructureID":47445,"TargetStructureID":47445,"Label":"47445-47445 via Gap Junction from 118185 -> 118184","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118185,"TargetID":118184,"Directional":false}]},{"ID":4868,"SourceStructureID":121889,"TargetStructureID":47445,"Label":"121889-47445 via Gap Junction from 121891 -> 118187","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121891,"TargetID":118187,"Directional":false}]},{"ID":4869,"SourceStructureID":132009,"TargetStructureID":47445,"Label":"132009-47445 via Gap Junction from 132024 -> 132026","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132024,"TargetID":132026,"Directional":false}]},{"ID":4870,"SourceStructureID":48516,"TargetStructureID":48516,"Label":"48516-48516 via Adherens from 93796 -> 93798","Type":"Adherens","Directional":false,"Links":[{"SourceID":93796,"TargetID":93798,"Directional":false}]},{"ID":4871,"SourceStructureID":48516,"TargetStructureID":48516,"Label":"48516-48516 via Gap Junction from 93795 -> 51691, 93800 -> 52027, 93803 -> 93802","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93795,"TargetID":51691,"Directional":false},{"SourceID":93800,"TargetID":52027,"Directional":false},{"SourceID":93803,"TargetID":93802,"Directional":false}]},{"ID":4872,"SourceStructureID":48516,"TargetStructureID":64939,"Label":"48516-64939 via Gap Junction from 93818 -> 93819, 123298 -> 123299","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93818,"TargetID":93819,"Directional":false},{"SourceID":123298,"TargetID":123299,"Directional":false}]},{"ID":4873,"SourceStructureID":93790,"TargetStructureID":48516,"Label":"93790-48516 via Gap Junction from 93791 -> 93783","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93791,"TargetID":93783,"Directional":false}]},{"ID":4874,"SourceStructureID":89020,"TargetStructureID":49184,"Label":"89020-49184 via Gap Junction from 89021 -> 49356","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89021,"TargetID":49356,"Directional":false}]},{"ID":4875,"SourceStructureID":89029,"TargetStructureID":49184,"Label":"89029-49184 via Gap Junction from 89030 -> 49344","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89030,"TargetID":49344,"Directional":false}]},{"ID":4876,"SourceStructureID":50449,"TargetStructureID":89120,"Label":"50449-89120 via Gap Junction from 122407 -> 122406","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122407,"TargetID":122406,"Directional":false}]},{"ID":4877,"SourceStructureID":89829,"TargetStructureID":50894,"Label":"89829-50894 via Gap Junction from 89830 -> 52399","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89830,"TargetID":52399,"Directional":false}]},{"ID":4878,"SourceStructureID":88733,"TargetStructureID":51617,"Label":"88733-51617 via Unknown from 115464 -> 115463","Type":"Unknown","Directional":false,"Links":[{"SourceID":115464,"TargetID":115463,"Directional":false}]},{"ID":4879,"SourceStructureID":52410,"TargetStructureID":87294,"Label":"52410-87294 via Adherens from 87299 -> 87298","Type":"Adherens","Directional":false,"Links":[{"SourceID":87299,"TargetID":87298,"Directional":false}]},{"ID":4880,"SourceStructureID":53828,"TargetStructureID":53778,"Label":"53828-53778 via Gap Junction from 54666 -> 54665","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54666,"TargetID":54665,"Directional":false}]},{"ID":4881,"SourceStructureID":53828,"TargetStructureID":53828,"Label":"53828-53828 via Gap Junction from 123118 -> 123117","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123118,"TargetID":123117,"Directional":false}]},{"ID":4882,"SourceStructureID":67864,"TargetStructureID":54078,"Label":"67864-54078 via Adherens from 67865 -> 67863","Type":"Adherens","Directional":false,"Links":[{"SourceID":67865,"TargetID":67863,"Directional":false}]},{"ID":4883,"SourceStructureID":88975,"TargetStructureID":55098,"Label":"88975-55098 via Adherens from 88976 -> 88974","Type":"Adherens","Directional":false,"Links":[{"SourceID":88976,"TargetID":88974,"Directional":false}]},{"ID":4884,"SourceStructureID":57133,"TargetStructureID":117127,"Label":"57133-117127 via Gap Junction from 57138 -> 117144","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57138,"TargetID":117144,"Directional":false}]},{"ID":4885,"SourceStructureID":57353,"TargetStructureID":57353,"Label":"57353-57353 via Unknown from 124425 -> 124426","Type":"Unknown","Directional":false,"Links":[{"SourceID":124425,"TargetID":124426,"Directional":false}]},{"ID":4886,"SourceStructureID":61397,"TargetStructureID":57353,"Label":"61397-57353 via Gap Junction from 124398 -> 124395","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124398,"TargetID":124395,"Directional":false}]},{"ID":4887,"SourceStructureID":124282,"TargetStructureID":57353,"Label":"124282-57353 via Gap Junction from 124283 -> 124276, 124284 -> 124285","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124283,"TargetID":124276,"Directional":false},{"SourceID":124284,"TargetID":124285,"Directional":false}]},{"ID":4888,"SourceStructureID":57353,"TargetStructureID":124301,"Label":"57353-124301 via Adherens from 124428 -> 124429","Type":"Adherens","Directional":false,"Links":[{"SourceID":124428,"TargetID":124429,"Directional":false}]},{"ID":4889,"SourceStructureID":124313,"TargetStructureID":57353,"Label":"124313-57353 via Gap Junction from 124316 -> 124311","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124316,"TargetID":124311,"Directional":false}]},{"ID":4890,"SourceStructureID":124402,"TargetStructureID":57353,"Label":"124402-57353 via Gap Junction from 124403 -> 124401","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124403,"TargetID":124401,"Directional":false}]},{"ID":4891,"SourceStructureID":86620,"TargetStructureID":58696,"Label":"86620-58696 via Adherens from 86621 -> 86619","Type":"Adherens","Directional":false,"Links":[{"SourceID":86621,"TargetID":86619,"Directional":false}]},{"ID":4892,"SourceStructureID":86927,"TargetStructureID":58696,"Label":"86927-58696 via Adherens from 86930 -> 86929","Type":"Adherens","Directional":false,"Links":[{"SourceID":86930,"TargetID":86929,"Directional":false}]},{"ID":4893,"SourceStructureID":86945,"TargetStructureID":58696,"Label":"86945-58696 via Adherens from 86949 -> 86948","Type":"Adherens","Directional":false,"Links":[{"SourceID":86949,"TargetID":86948,"Directional":false}]},{"ID":4894,"SourceStructureID":86971,"TargetStructureID":58696,"Label":"86971-58696 via Adherens from 86973 -> 86974, 86978 -> 86977","Type":"Adherens","Directional":false,"Links":[{"SourceID":86973,"TargetID":86974,"Directional":false},{"SourceID":86978,"TargetID":86977,"Directional":false}]},{"ID":4895,"SourceStructureID":58723,"TargetStructureID":58714,"Label":"58723-58714 via Adherens from 86140 -> 86139","Type":"Adherens","Directional":false,"Links":[{"SourceID":86140,"TargetID":86139,"Directional":false}]},{"ID":4896,"SourceStructureID":58784,"TargetStructureID":58782,"Label":"58784-58782 via Gap Junction from 58788 -> 58787","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58788,"TargetID":58787,"Directional":false}]},{"ID":4897,"SourceStructureID":59211,"TargetStructureID":59208,"Label":"59211-59208 via Gap Junction from 59213 -> 59214","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59213,"TargetID":59214,"Directional":false}]},{"ID":4898,"SourceStructureID":59211,"TargetStructureID":59219,"Label":"59211-59219 via Gap Junction from 59218 -> 59220","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59218,"TargetID":59220,"Directional":false}]},{"ID":4899,"SourceStructureID":59225,"TargetStructureID":59223,"Label":"59225-59223 via Gap Junction from 59226 -> 59224","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59226,"TargetID":59224,"Directional":false}]},{"ID":4900,"SourceStructureID":59229,"TargetStructureID":59223,"Label":"59229-59223 via Gap Junction from 59230 -> 59231, 59235 -> 59237, 59238 -> 59239, 59241 -> 59240","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59230,"TargetID":59231,"Directional":false},{"SourceID":59235,"TargetID":59237,"Directional":false},{"SourceID":59238,"TargetID":59239,"Directional":false},{"SourceID":59241,"TargetID":59240,"Directional":false}]},{"ID":4901,"SourceStructureID":59294,"TargetStructureID":59262,"Label":"59294-59262 via Unknown from 59295 -> 59293","Type":"Unknown","Directional":false,"Links":[{"SourceID":59295,"TargetID":59293,"Directional":false}]},{"ID":4902,"SourceStructureID":59262,"TargetStructureID":59301,"Label":"59262-59301 via Gap Junction from 59299 -> 59302","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59299,"TargetID":59302,"Directional":false}]},{"ID":4903,"SourceStructureID":59262,"TargetStructureID":59304,"Label":"59262-59304 via Gap Junction from 59306 -> 59307","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59306,"TargetID":59307,"Directional":false}]},{"ID":4904,"SourceStructureID":59340,"TargetStructureID":59333,"Label":"59340-59333 via Gap Junction from 59341 -> 59339","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59341,"TargetID":59339,"Directional":false}]},{"ID":4905,"SourceStructureID":85050,"TargetStructureID":59333,"Label":"85050-59333 via Adherens from 85051 -> 85049","Type":"Adherens","Directional":false,"Links":[{"SourceID":85051,"TargetID":85049,"Directional":false}]},{"ID":4906,"SourceStructureID":85056,"TargetStructureID":59333,"Label":"85056-59333 via Adherens from 85057 -> 85055","Type":"Adherens","Directional":false,"Links":[{"SourceID":85057,"TargetID":85055,"Directional":false}]},{"ID":4907,"SourceStructureID":59333,"TargetStructureID":85062,"Label":"59333-85062 via Adherens from 85064 -> 85063","Type":"Adherens","Directional":false,"Links":[{"SourceID":85064,"TargetID":85063,"Directional":false}]},{"ID":4908,"SourceStructureID":59392,"TargetStructureID":59362,"Label":"59392-59362 via Gap Junction from 59401 -> 59403, 59414 -> 59415","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59401,"TargetID":59403,"Directional":false},{"SourceID":59414,"TargetID":59415,"Directional":false}]},{"ID":4909,"SourceStructureID":59419,"TargetStructureID":85141,"Label":"59419-85141 via Adherens from 85272 -> 85271","Type":"Adherens","Directional":false,"Links":[{"SourceID":85272,"TargetID":85271,"Directional":false}]},{"ID":4910,"SourceStructureID":59419,"TargetStructureID":85141,"Label":"59419-85141 via Gap Junction from 85273 -> 85267, 85384 -> 85383","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85273,"TargetID":85267,"Directional":false},{"SourceID":85384,"TargetID":85383,"Directional":false}]},{"ID":4911,"SourceStructureID":59419,"TargetStructureID":85352,"Label":"59419-85352 via Adherens from 85355 -> 85354","Type":"Adherens","Directional":false,"Links":[{"SourceID":85355,"TargetID":85354,"Directional":false}]},{"ID":4912,"SourceStructureID":59422,"TargetStructureID":59469,"Label":"59422-59469 via Gap Junction from 59472 -> 59470","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59472,"TargetID":59470,"Directional":false}]},{"ID":4913,"SourceStructureID":65267,"TargetStructureID":59455,"Label":"65267-59455 via Gap Junction from 69949 -> 59457","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":69949,"TargetID":59457,"Directional":false}]},{"ID":4914,"SourceStructureID":59474,"TargetStructureID":59469,"Label":"59474-59469 via Gap Junction from 59475 -> 59473","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59475,"TargetID":59473,"Directional":false}]},{"ID":4915,"SourceStructureID":59477,"TargetStructureID":59474,"Label":"59477-59474 via Gap Junction from 59478 -> 59476, 59479 -> 59481","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59478,"TargetID":59476,"Directional":false},{"SourceID":59479,"TargetID":59481,"Directional":false}]},{"ID":4916,"SourceStructureID":59474,"TargetStructureID":59491,"Label":"59474-59491 via Gap Junction from 59496 -> 59495","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59496,"TargetID":59495,"Directional":false}]},{"ID":4917,"SourceStructureID":59524,"TargetStructureID":59523,"Label":"59524-59523 via Gap Junction from 59527 -> 59528","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59527,"TargetID":59528,"Directional":false}]},{"ID":4918,"SourceStructureID":60989,"TargetStructureID":60976,"Label":"60989-60976 via Gap Junction from 60993 -> 60987","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60993,"TargetID":60987,"Directional":false}]},{"ID":4919,"SourceStructureID":61108,"TargetStructureID":79350,"Label":"61108-79350 via Unknown from 117738 -> 79352","Type":"Unknown","Directional":false,"Links":[{"SourceID":117738,"TargetID":79352,"Directional":false}]},{"ID":4920,"SourceStructureID":61809,"TargetStructureID":61807,"Label":"61809-61807 via Adherens from 68383 -> 68385","Type":"Adherens","Directional":false,"Links":[{"SourceID":68383,"TargetID":68385,"Directional":false}]},{"ID":4921,"SourceStructureID":61809,"TargetStructureID":80491,"Label":"61809-80491 via Adherens from 80490 -> 80492","Type":"Adherens","Directional":false,"Links":[{"SourceID":80490,"TargetID":80492,"Directional":false}]},{"ID":4922,"SourceStructureID":68548,"TargetStructureID":61823,"Label":"68548-61823 via Gap Junction from 73558 -> 64616","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":73558,"TargetID":64616,"Directional":false}]},{"ID":4923,"SourceStructureID":70317,"TargetStructureID":61823,"Label":"70317-61823 via Adherens from 70320 -> 70316","Type":"Adherens","Directional":false,"Links":[{"SourceID":70320,"TargetID":70316,"Directional":false}]},{"ID":4924,"SourceStructureID":61823,"TargetStructureID":70343,"Label":"61823-70343 via Adherens from 70345 -> 70344","Type":"Adherens","Directional":false,"Links":[{"SourceID":70345,"TargetID":70344,"Directional":false}]},{"ID":4925,"SourceStructureID":61864,"TargetStructureID":68901,"Label":"61864-68901 via Adherens from 68913 -> 68912","Type":"Adherens","Directional":false,"Links":[{"SourceID":68913,"TargetID":68912,"Directional":false}]},{"ID":4926,"SourceStructureID":62325,"TargetStructureID":80516,"Label":"62325-80516 via Adherens from 80515 -> 80517","Type":"Adherens","Directional":false,"Links":[{"SourceID":80515,"TargetID":80517,"Directional":false}]},{"ID":4927,"SourceStructureID":62325,"TargetStructureID":80534,"Label":"62325-80534 via Adherens from 80909 -> 80908","Type":"Adherens","Directional":false,"Links":[{"SourceID":80909,"TargetID":80908,"Directional":false}]},{"ID":4928,"SourceStructureID":80684,"TargetStructureID":62325,"Label":"80684-62325 via Unknown from 80688 -> 80687","Type":"Unknown","Directional":false,"Links":[{"SourceID":80688,"TargetID":80687,"Directional":false}]},{"ID":4929,"SourceStructureID":62325,"TargetStructureID":80751,"Label":"62325-80751 via Gap Junction from 62331 -> 80752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":62331,"TargetID":80752,"Directional":false}]},{"ID":4930,"SourceStructureID":62325,"TargetStructureID":80849,"Label":"62325-80849 via Unknown from 80850 -> 80851","Type":"Unknown","Directional":false,"Links":[{"SourceID":80850,"TargetID":80851,"Directional":false}]},{"ID":4931,"SourceStructureID":62325,"TargetStructureID":80871,"Label":"62325-80871 via Adherens from 80994 -> 80995","Type":"Adherens","Directional":false,"Links":[{"SourceID":80994,"TargetID":80995,"Directional":false}]},{"ID":4932,"SourceStructureID":80896,"TargetStructureID":62325,"Label":"80896-62325 via Adherens from 80903 -> 80902","Type":"Adherens","Directional":false,"Links":[{"SourceID":80903,"TargetID":80902,"Directional":false}]},{"ID":4933,"SourceStructureID":62325,"TargetStructureID":80896,"Label":"62325-80896 via Unknown from 80906 -> 80907","Type":"Unknown","Directional":false,"Links":[{"SourceID":80906,"TargetID":80907,"Directional":false}]},{"ID":4934,"SourceStructureID":81267,"TargetStructureID":62325,"Label":"81267-62325 via Adherens from 81268 -> 81269","Type":"Adherens","Directional":false,"Links":[{"SourceID":81268,"TargetID":81269,"Directional":false}]},{"ID":4935,"SourceStructureID":62325,"TargetStructureID":81282,"Label":"62325-81282 via Gap Junction from 81284 -> 81283","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81284,"TargetID":81283,"Directional":false}]},{"ID":4936,"SourceStructureID":62325,"TargetStructureID":81304,"Label":"62325-81304 via Adherens from 81307 -> 81306, 81312 -> 81280, 81314 -> 81313","Type":"Adherens","Directional":false,"Links":[{"SourceID":81307,"TargetID":81306,"Directional":false},{"SourceID":81312,"TargetID":81280,"Directional":false},{"SourceID":81314,"TargetID":81313,"Directional":false}]},{"ID":4937,"SourceStructureID":81304,"TargetStructureID":62325,"Label":"81304-62325 via Gap Junction from 81383 -> 81382, 81390 -> 81389","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81383,"TargetID":81382,"Directional":false},{"SourceID":81390,"TargetID":81389,"Directional":false}]},{"ID":4938,"SourceStructureID":81308,"TargetStructureID":62325,"Label":"81308-62325 via Adherens from 81310 -> 81309","Type":"Adherens","Directional":false,"Links":[{"SourceID":81310,"TargetID":81309,"Directional":false}]},{"ID":4939,"SourceStructureID":81308,"TargetStructureID":62325,"Label":"81308-62325 via Unknown from 81385 -> 81384","Type":"Unknown","Directional":false,"Links":[{"SourceID":81385,"TargetID":81384,"Directional":false}]},{"ID":4940,"SourceStructureID":62325,"TargetStructureID":81316,"Label":"62325-81316 via Unknown from 81318 -> 81320","Type":"Unknown","Directional":false,"Links":[{"SourceID":81318,"TargetID":81320,"Directional":false}]},{"ID":4941,"SourceStructureID":81361,"TargetStructureID":62325,"Label":"81361-62325 via Adherens from 81364 -> 81365","Type":"Adherens","Directional":false,"Links":[{"SourceID":81364,"TargetID":81365,"Directional":false}]},{"ID":4942,"SourceStructureID":62325,"TargetStructureID":81361,"Label":"62325-81361 via Gap Junction from 81362 -> 81363","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81362,"TargetID":81363,"Directional":false}]},{"ID":4943,"SourceStructureID":81366,"TargetStructureID":62325,"Label":"81366-62325 via Gap Junction from 81369 -> 81368","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81369,"TargetID":81368,"Directional":false}]},{"ID":4944,"SourceStructureID":62325,"TargetStructureID":81367,"Label":"62325-81367 via Gap Junction from 81370 -> 81371","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81370,"TargetID":81371,"Directional":false}]},{"ID":4945,"SourceStructureID":62325,"TargetStructureID":81373,"Label":"62325-81373 via Adherens from 81376 -> 81374","Type":"Adherens","Directional":false,"Links":[{"SourceID":81376,"TargetID":81374,"Directional":false}]},{"ID":4946,"SourceStructureID":62325,"TargetStructureID":81422,"Label":"62325-81422 via Unknown from 81424 -> 81423","Type":"Unknown","Directional":false,"Links":[{"SourceID":81424,"TargetID":81423,"Directional":false}]},{"ID":4947,"SourceStructureID":65351,"TargetStructureID":63371,"Label":"65351-63371 via Adherens from 79032 -> 79031","Type":"Adherens","Directional":false,"Links":[{"SourceID":79032,"TargetID":79031,"Directional":false}]},{"ID":4948,"SourceStructureID":64417,"TargetStructureID":64414,"Label":"64417-64414 via Adherens from 64419 -> 64416","Type":"Adherens","Directional":false,"Links":[{"SourceID":64419,"TargetID":64416,"Directional":false}]},{"ID":4949,"SourceStructureID":89599,"TargetStructureID":64452,"Label":"89599-64452 via Adherens from 89600 -> 89598","Type":"Adherens","Directional":false,"Links":[{"SourceID":89600,"TargetID":89598,"Directional":false}]},{"ID":4950,"SourceStructureID":89599,"TargetStructureID":64452,"Label":"89599-64452 via Gap Junction from 89601 -> 89597","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89601,"TargetID":89597,"Directional":false}]},{"ID":4951,"SourceStructureID":64452,"TargetStructureID":89617,"Label":"64452-89617 via Adherens from 89615 -> 89619","Type":"Adherens","Directional":false,"Links":[{"SourceID":89615,"TargetID":89619,"Directional":false}]},{"ID":4952,"SourceStructureID":111986,"TargetStructureID":64452,"Label":"111986-64452 via Adherens from 111988 -> 111989","Type":"Adherens","Directional":false,"Links":[{"SourceID":111988,"TargetID":111989,"Directional":false}]},{"ID":4953,"SourceStructureID":65576,"TargetStructureID":64492,"Label":"65576-64492 via Adherens from 65583 -> 65582","Type":"Adherens","Directional":false,"Links":[{"SourceID":65583,"TargetID":65582,"Directional":false}]},{"ID":4954,"SourceStructureID":64492,"TargetStructureID":65963,"Label":"64492-65963 via Adherens from 65975 -> 65976","Type":"Adherens","Directional":false,"Links":[{"SourceID":65975,"TargetID":65976,"Directional":false}]},{"ID":4955,"SourceStructureID":69428,"TargetStructureID":64939,"Label":"69428-64939 via Gap Junction from 69429 -> 69420","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":69429,"TargetID":69420,"Directional":false}]},{"ID":4956,"SourceStructureID":69431,"TargetStructureID":64939,"Label":"69431-64939 via Adherens from 69432 -> 69430","Type":"Adherens","Directional":false,"Links":[{"SourceID":69432,"TargetID":69430,"Directional":false}]},{"ID":4957,"SourceStructureID":64939,"TargetStructureID":70084,"Label":"64939-70084 via Gap Junction from 69724 -> 70085","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":69724,"TargetID":70085,"Directional":false}]},{"ID":4958,"SourceStructureID":74907,"TargetStructureID":64939,"Label":"74907-64939 via Adherens from 83779 -> 83780","Type":"Adherens","Directional":false,"Links":[{"SourceID":83779,"TargetID":83780,"Directional":false}]},{"ID":4959,"SourceStructureID":64939,"TargetStructureID":74907,"Label":"64939-74907 via Unknown from 83840 -> 83835","Type":"Unknown","Directional":false,"Links":[{"SourceID":83840,"TargetID":83835,"Directional":false}]},{"ID":4960,"SourceStructureID":66523,"TargetStructureID":65318,"Label":"66523-65318 via Adherens from 77925 -> 77924","Type":"Adherens","Directional":false,"Links":[{"SourceID":77925,"TargetID":77924,"Directional":false}]},{"ID":4961,"SourceStructureID":65320,"TargetStructureID":67423,"Label":"65320-67423 via Adherens from 81356 -> 81357","Type":"Adherens","Directional":false,"Links":[{"SourceID":81356,"TargetID":81357,"Directional":false}]},{"ID":4962,"SourceStructureID":67291,"TargetStructureID":65324,"Label":"67291-65324 via Adherens from 67296 -> 67295","Type":"Adherens","Directional":false,"Links":[{"SourceID":67296,"TargetID":67295,"Directional":false}]},{"ID":4963,"SourceStructureID":76947,"TargetStructureID":65351,"Label":"76947-65351 via Adherens from 79007 -> 79006","Type":"Adherens","Directional":false,"Links":[{"SourceID":79007,"TargetID":79006,"Directional":false}]},{"ID":4964,"SourceStructureID":78950,"TargetStructureID":65351,"Label":"78950-65351 via Adherens from 78951 -> 78952","Type":"Adherens","Directional":false,"Links":[{"SourceID":78951,"TargetID":78952,"Directional":false}]},{"ID":4965,"SourceStructureID":78964,"TargetStructureID":65351,"Label":"78964-65351 via Adherens from 78973 -> 78972","Type":"Adherens","Directional":false,"Links":[{"SourceID":78973,"TargetID":78972,"Directional":false}]},{"ID":4966,"SourceStructureID":78964,"TargetStructureID":65351,"Label":"78964-65351 via Unknown from 78965 -> 78963","Type":"Unknown","Directional":false,"Links":[{"SourceID":78965,"TargetID":78963,"Directional":false}]},{"ID":4967,"SourceStructureID":65351,"TargetStructureID":78977,"Label":"65351-78977 via Adherens from 78976 -> 78978","Type":"Adherens","Directional":false,"Links":[{"SourceID":78976,"TargetID":78978,"Directional":false}]},{"ID":4968,"SourceStructureID":65351,"TargetStructureID":79034,"Label":"65351-79034 via Adherens from 79040 -> 79036","Type":"Adherens","Directional":false,"Links":[{"SourceID":79040,"TargetID":79036,"Directional":false}]},{"ID":4969,"SourceStructureID":79045,"TargetStructureID":65351,"Label":"79045-65351 via Adherens from 79046 -> 79044","Type":"Adherens","Directional":false,"Links":[{"SourceID":79046,"TargetID":79044,"Directional":false}]},{"ID":4970,"SourceStructureID":65358,"TargetStructureID":65369,"Label":"65358-65369 via Adherens from 65370 -> 65371","Type":"Adherens","Directional":false,"Links":[{"SourceID":65370,"TargetID":65371,"Directional":false}]},{"ID":4971,"SourceStructureID":65470,"TargetStructureID":65464,"Label":"65470-65464 via Gap Junction from 65471 -> 65469","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65471,"TargetID":65469,"Directional":false}]},{"ID":4972,"SourceStructureID":116703,"TargetStructureID":65536,"Label":"116703-65536 via Adherens from 116704 -> 67069","Type":"Adherens","Directional":false,"Links":[{"SourceID":116704,"TargetID":67069,"Directional":false}]},{"ID":4973,"SourceStructureID":65623,"TargetStructureID":65569,"Label":"65623-65569 via Adherens from 81391 -> 81392","Type":"Adherens","Directional":false,"Links":[{"SourceID":81391,"TargetID":81392,"Directional":false}]},{"ID":4974,"SourceStructureID":83461,"TargetStructureID":65835,"Label":"83461-65835 via Gap Junction from 83462 -> 83460, 83463 -> 83464","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83462,"TargetID":83460,"Directional":false},{"SourceID":83463,"TargetID":83464,"Directional":false}]},{"ID":4975,"SourceStructureID":67322,"TargetStructureID":65864,"Label":"67322-65864 via Postsynapse from 67363 -> 65879","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":67363,"TargetID":65879,"Directional":false}]},{"ID":4976,"SourceStructureID":65893,"TargetStructureID":66053,"Label":"65893-66053 via Adherens from 84437 -> 84436","Type":"Adherens","Directional":false,"Links":[{"SourceID":84437,"TargetID":84436,"Directional":false}]},{"ID":4977,"SourceStructureID":66809,"TargetStructureID":66031,"Label":"66809-66031 via Adherens from 66042 -> 66043","Type":"Adherens","Directional":false,"Links":[{"SourceID":66042,"TargetID":66043,"Directional":false}]},{"ID":4978,"SourceStructureID":68214,"TargetStructureID":66096,"Label":"68214-66096 via Adherens from 68449 -> 68448","Type":"Adherens","Directional":false,"Links":[{"SourceID":68449,"TargetID":68448,"Directional":false}]},{"ID":4979,"SourceStructureID":66096,"TargetStructureID":68292,"Label":"66096-68292 via Adherens from 70005 -> 68293","Type":"Adherens","Directional":false,"Links":[{"SourceID":70005,"TargetID":68293,"Directional":false}]},{"ID":4980,"SourceStructureID":66102,"TargetStructureID":66339,"Label":"66102-66339 via Adherens from 84259 -> 84258","Type":"Adherens","Directional":false,"Links":[{"SourceID":84259,"TargetID":84258,"Directional":false}]},{"ID":4981,"SourceStructureID":66102,"TargetStructureID":67350,"Label":"66102-67350 via Adherens from 68323 -> 68322","Type":"Adherens","Directional":false,"Links":[{"SourceID":68323,"TargetID":68322,"Directional":false}]},{"ID":4982,"SourceStructureID":66114,"TargetStructureID":66111,"Label":"66114-66111 via Gap Junction from 66115 -> 66113","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66115,"TargetID":66113,"Directional":false}]},{"ID":4983,"SourceStructureID":66111,"TargetStructureID":68444,"Label":"66111-68444 via Adherens from 68466 -> 68465, 68472 -> 68471","Type":"Adherens","Directional":false,"Links":[{"SourceID":68466,"TargetID":68465,"Directional":false},{"SourceID":68472,"TargetID":68471,"Directional":false}]},{"ID":4984,"SourceStructureID":66278,"TargetStructureID":66295,"Label":"66278-66295 via Adherens from 66294 -> 66296","Type":"Adherens","Directional":false,"Links":[{"SourceID":66294,"TargetID":66296,"Directional":false}]},{"ID":4985,"SourceStructureID":66323,"TargetStructureID":84342,"Label":"66323-84342 via Adherens from 84345 -> 84344","Type":"Adherens","Directional":false,"Links":[{"SourceID":84345,"TargetID":84344,"Directional":false}]},{"ID":4986,"SourceStructureID":84407,"TargetStructureID":66323,"Label":"84407-66323 via Adherens from 84409 -> 84406, 84414 -> 84415","Type":"Adherens","Directional":false,"Links":[{"SourceID":84409,"TargetID":84406,"Directional":false},{"SourceID":84414,"TargetID":84415,"Directional":false}]},{"ID":4987,"SourceStructureID":84427,"TargetStructureID":66323,"Label":"84427-66323 via Unknown from 84428 -> 84426","Type":"Unknown","Directional":false,"Links":[{"SourceID":84428,"TargetID":84426,"Directional":false}]},{"ID":4988,"SourceStructureID":84429,"TargetStructureID":66323,"Label":"84429-66323 via Unknown from 84431 -> 84430","Type":"Unknown","Directional":false,"Links":[{"SourceID":84431,"TargetID":84430,"Directional":false}]},{"ID":4989,"SourceStructureID":66477,"TargetStructureID":66487,"Label":"66477-66487 via Adherens from 66491 -> 66490","Type":"Adherens","Directional":false,"Links":[{"SourceID":66491,"TargetID":66490,"Directional":false}]},{"ID":4990,"SourceStructureID":84127,"TargetStructureID":66477,"Label":"84127-66477 via Adherens from 84128 -> 66491, 84133 -> 84132","Type":"Adherens","Directional":false,"Links":[{"SourceID":84128,"TargetID":66491,"Directional":false},{"SourceID":84133,"TargetID":84132,"Directional":false}]},{"ID":4991,"SourceStructureID":66487,"TargetStructureID":66493,"Label":"66487-66493 via Adherens from 84134 -> 84135","Type":"Adherens","Directional":false,"Links":[{"SourceID":84134,"TargetID":84135,"Directional":false}]},{"ID":4992,"SourceStructureID":84127,"TargetStructureID":66487,"Label":"84127-66487 via Adherens from 84128 -> 66490, 84130 -> 84131","Type":"Adherens","Directional":false,"Links":[{"SourceID":84128,"TargetID":66490,"Directional":false},{"SourceID":84130,"TargetID":84131,"Directional":false}]},{"ID":4993,"SourceStructureID":66523,"TargetStructureID":66520,"Label":"66523-66520 via Adherens from 66524 -> 66525","Type":"Adherens","Directional":false,"Links":[{"SourceID":66524,"TargetID":66525,"Directional":false}]},{"ID":4994,"SourceStructureID":66523,"TargetStructureID":70415,"Label":"66523-70415 via Adherens from 74884 -> 74885","Type":"Adherens","Directional":false,"Links":[{"SourceID":74884,"TargetID":74885,"Directional":false}]},{"ID":4995,"SourceStructureID":66523,"TargetStructureID":75307,"Label":"66523-75307 via Adherens from 75305 -> 75308","Type":"Adherens","Directional":false,"Links":[{"SourceID":75305,"TargetID":75308,"Directional":false}]},{"ID":4996,"SourceStructureID":77965,"TargetStructureID":66523,"Label":"77965-66523 via Adherens from 77969 -> 77968","Type":"Adherens","Directional":false,"Links":[{"SourceID":77969,"TargetID":77968,"Directional":false}]},{"ID":4997,"SourceStructureID":66634,"TargetStructureID":71345,"Label":"66634-71345 via Adherens from 75177 -> 75176","Type":"Adherens","Directional":false,"Links":[{"SourceID":75177,"TargetID":75176,"Directional":false}]},{"ID":4998,"SourceStructureID":71351,"TargetStructureID":66634,"Label":"71351-66634 via Adherens from 71914 -> 71913","Type":"Adherens","Directional":false,"Links":[{"SourceID":71914,"TargetID":71913,"Directional":false}]},{"ID":4999,"SourceStructureID":66634,"TargetStructureID":71517,"Label":"66634-71517 via Adherens from 66679 -> 66678, 72117 -> 72116","Type":"Adherens","Directional":false,"Links":[{"SourceID":66679,"TargetID":66678,"Directional":false},{"SourceID":72117,"TargetID":72116,"Directional":false}]},{"ID":5000,"SourceStructureID":75179,"TargetStructureID":66634,"Label":"75179-66634 via Adherens from 75180 -> 75178","Type":"Adherens","Directional":false,"Links":[{"SourceID":75180,"TargetID":75178,"Directional":false}]},{"ID":5001,"SourceStructureID":66685,"TargetStructureID":66688,"Label":"66685-66688 via Adherens from 83337 -> 83336","Type":"Adherens","Directional":false,"Links":[{"SourceID":83337,"TargetID":83336,"Directional":false}]},{"ID":5002,"SourceStructureID":66731,"TargetStructureID":66734,"Label":"66731-66734 via Adherens from 66736 -> 66737","Type":"Adherens","Directional":false,"Links":[{"SourceID":66736,"TargetID":66737,"Directional":false}]},{"ID":5003,"SourceStructureID":66734,"TargetStructureID":66743,"Label":"66734-66743 via Adherens from 66745 -> 66744","Type":"Adherens","Directional":false,"Links":[{"SourceID":66745,"TargetID":66744,"Directional":false}]},{"ID":5004,"SourceStructureID":66768,"TargetStructureID":68214,"Label":"66768-68214 via Adherens from 68484 -> 68483","Type":"Adherens","Directional":false,"Links":[{"SourceID":68484,"TargetID":68483,"Directional":false}]},{"ID":5005,"SourceStructureID":66777,"TargetStructureID":66848,"Label":"66777-66848 via Adherens from 66859 -> 66857","Type":"Adherens","Directional":false,"Links":[{"SourceID":66859,"TargetID":66857,"Directional":false}]},{"ID":5006,"SourceStructureID":67626,"TargetStructureID":66779,"Label":"67626-66779 via Adherens from 67628 -> 67629","Type":"Adherens","Directional":false,"Links":[{"SourceID":67628,"TargetID":67629,"Directional":false}]},{"ID":5007,"SourceStructureID":66785,"TargetStructureID":66788,"Label":"66785-66788 via Adherens from 66787 -> 66789","Type":"Adherens","Directional":false,"Links":[{"SourceID":66787,"TargetID":66789,"Directional":false}]},{"ID":5008,"SourceStructureID":66809,"TargetStructureID":66804,"Label":"66809-66804 via Adherens from 66868 -> 66869","Type":"Adherens","Directional":false,"Links":[{"SourceID":66868,"TargetID":66869,"Directional":false}]},{"ID":5009,"SourceStructureID":66871,"TargetStructureID":66804,"Label":"66871-66804 via Adherens from 66872 -> 66870, 66876 -> 66877","Type":"Adherens","Directional":false,"Links":[{"SourceID":66872,"TargetID":66870,"Directional":false},{"SourceID":66876,"TargetID":66877,"Directional":false}]},{"ID":5010,"SourceStructureID":66952,"TargetStructureID":66809,"Label":"66952-66809 via Unknown from 83042 -> 83043","Type":"Unknown","Directional":false,"Links":[{"SourceID":83042,"TargetID":83043,"Directional":false}]},{"ID":5011,"SourceStructureID":68444,"TargetStructureID":66888,"Label":"68444-66888 via Adherens from 68473 -> 68474","Type":"Adherens","Directional":false,"Links":[{"SourceID":68473,"TargetID":68474,"Directional":false}]},{"ID":5012,"SourceStructureID":82305,"TargetStructureID":66888,"Label":"82305-66888 via Adherens from 82321 -> 82322","Type":"Adherens","Directional":false,"Links":[{"SourceID":82321,"TargetID":82322,"Directional":false}]},{"ID":5013,"SourceStructureID":66910,"TargetStructureID":66905,"Label":"66910-66905 via Adherens from 66911 -> 66909","Type":"Adherens","Directional":false,"Links":[{"SourceID":66911,"TargetID":66909,"Directional":false}]},{"ID":5014,"SourceStructureID":66946,"TargetStructureID":68548,"Label":"66946-68548 via Adherens from 82893 -> 75710","Type":"Adherens","Directional":false,"Links":[{"SourceID":82893,"TargetID":75710,"Directional":false}]},{"ID":5015,"SourceStructureID":67736,"TargetStructureID":66958,"Label":"67736-66958 via Adherens from 67746 -> 70029","Type":"Adherens","Directional":false,"Links":[{"SourceID":67746,"TargetID":70029,"Directional":false}]},{"ID":5016,"SourceStructureID":68153,"TargetStructureID":66958,"Label":"68153-66958 via Adherens from 70147 -> 70148","Type":"Adherens","Directional":false,"Links":[{"SourceID":70147,"TargetID":70148,"Directional":false}]},{"ID":5017,"SourceStructureID":69908,"TargetStructureID":66958,"Label":"69908-66958 via Adherens from 69909 -> 69318","Type":"Adherens","Directional":false,"Links":[{"SourceID":69909,"TargetID":69318,"Directional":false}]},{"ID":5018,"SourceStructureID":66958,"TargetStructureID":70126,"Label":"66958-70126 via Adherens from 70128 -> 70127","Type":"Adherens","Directional":false,"Links":[{"SourceID":70128,"TargetID":70127,"Directional":false}]},{"ID":5019,"SourceStructureID":66958,"TargetStructureID":70134,"Label":"66958-70134 via Adherens from 70137 -> 70136","Type":"Adherens","Directional":false,"Links":[{"SourceID":70137,"TargetID":70136,"Directional":false}]},{"ID":5020,"SourceStructureID":67042,"TargetStructureID":76463,"Label":"67042-76463 via Adherens from 76462 -> 76464","Type":"Adherens","Directional":false,"Links":[{"SourceID":76462,"TargetID":76464,"Directional":false}]},{"ID":5021,"SourceStructureID":67756,"TargetStructureID":67045,"Label":"67756-67045 via Adherens from 75402 -> 68698","Type":"Adherens","Directional":false,"Links":[{"SourceID":75402,"TargetID":68698,"Directional":false}]},{"ID":5022,"SourceStructureID":67140,"TargetStructureID":67135,"Label":"67140-67135 via Adherens from 67141 -> 67139","Type":"Adherens","Directional":false,"Links":[{"SourceID":67141,"TargetID":67139,"Directional":false}]},{"ID":5023,"SourceStructureID":67190,"TargetStructureID":67585,"Label":"67190-67585 via Adherens from 67604 -> 67603","Type":"Adherens","Directional":false,"Links":[{"SourceID":67604,"TargetID":67603,"Directional":false}]},{"ID":5024,"SourceStructureID":67266,"TargetStructureID":79254,"Label":"67266-79254 via Adherens from 79253 -> 79255","Type":"Adherens","Directional":false,"Links":[{"SourceID":79253,"TargetID":79255,"Directional":false}]},{"ID":5025,"SourceStructureID":82806,"TargetStructureID":67305,"Label":"82806-67305 via Adherens from 82811 -> 82810","Type":"Adherens","Directional":false,"Links":[{"SourceID":82811,"TargetID":82810,"Directional":false}]},{"ID":5026,"SourceStructureID":67350,"TargetStructureID":67337,"Label":"67350-67337 via Gap Junction from 67351 -> 67349","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":67351,"TargetID":67349,"Directional":false}]},{"ID":5027,"SourceStructureID":84260,"TargetStructureID":67350,"Label":"84260-67350 via Adherens from 84263 -> 68320","Type":"Adherens","Directional":false,"Links":[{"SourceID":84263,"TargetID":68320,"Directional":false}]},{"ID":5028,"SourceStructureID":67372,"TargetStructureID":67364,"Label":"67372-67364 via Gap Junction from 67374 -> 67373","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":67374,"TargetID":67373,"Directional":false}]},{"ID":5029,"SourceStructureID":82717,"TargetStructureID":67460,"Label":"82717-67460 via Adherens from 82719 -> 82720","Type":"Adherens","Directional":false,"Links":[{"SourceID":82719,"TargetID":82720,"Directional":false}]},{"ID":5030,"SourceStructureID":67520,"TargetStructureID":67508,"Label":"67520-67508 via Adherens from 68919 -> 68918","Type":"Adherens","Directional":false,"Links":[{"SourceID":68919,"TargetID":68918,"Directional":false}]},{"ID":5031,"SourceStructureID":67666,"TargetStructureID":67663,"Label":"67666-67663 via Adherens from 67667 -> 67665","Type":"Adherens","Directional":false,"Links":[{"SourceID":67667,"TargetID":67665,"Directional":false}]},{"ID":5032,"SourceStructureID":68497,"TargetStructureID":67671,"Label":"68497-67671 via Adherens from 81581 -> 77356","Type":"Adherens","Directional":false,"Links":[{"SourceID":81581,"TargetID":77356,"Directional":false}]},{"ID":5033,"SourceStructureID":67671,"TargetStructureID":77375,"Label":"67671-77375 via Adherens from 77997 -> 77996","Type":"Adherens","Directional":false,"Links":[{"SourceID":77997,"TargetID":77996,"Directional":false}]},{"ID":5034,"SourceStructureID":67671,"TargetStructureID":77378,"Label":"67671-77378 via Adherens from 77999 -> 77998","Type":"Adherens","Directional":false,"Links":[{"SourceID":77999,"TargetID":77998,"Directional":false}]},{"ID":5035,"SourceStructureID":67671,"TargetStructureID":77682,"Label":"67671-77682 via Adherens from 78001 -> 78000","Type":"Adherens","Directional":false,"Links":[{"SourceID":78001,"TargetID":78000,"Directional":false}]},{"ID":5036,"SourceStructureID":77985,"TargetStructureID":67671,"Label":"77985-67671 via Adherens from 77986 -> 77987","Type":"Adherens","Directional":false,"Links":[{"SourceID":77986,"TargetID":77987,"Directional":false}]},{"ID":5037,"SourceStructureID":78005,"TargetStructureID":67671,"Label":"78005-67671 via Adherens from 78006 -> 78004","Type":"Adherens","Directional":false,"Links":[{"SourceID":78006,"TargetID":78004,"Directional":false}]},{"ID":5038,"SourceStructureID":67671,"TargetStructureID":78021,"Label":"67671-78021 via Adherens from 78020 -> 78022","Type":"Adherens","Directional":false,"Links":[{"SourceID":78020,"TargetID":78022,"Directional":false}]},{"ID":5039,"SourceStructureID":67671,"TargetStructureID":78023,"Label":"67671-78023 via Adherens from 78027 -> 78026","Type":"Adherens","Directional":false,"Links":[{"SourceID":78027,"TargetID":78026,"Directional":false}]},{"ID":5040,"SourceStructureID":67671,"TargetStructureID":78042,"Label":"67671-78042 via Adherens from 78041 -> 78044","Type":"Adherens","Directional":false,"Links":[{"SourceID":78041,"TargetID":78044,"Directional":false}]},{"ID":5041,"SourceStructureID":67671,"TargetStructureID":78045,"Label":"67671-78045 via Adherens from 78056 -> 78055","Type":"Adherens","Directional":false,"Links":[{"SourceID":78056,"TargetID":78055,"Directional":false}]},{"ID":5042,"SourceStructureID":67671,"TargetStructureID":78074,"Label":"67671-78074 via Adherens from 78073 -> 78076","Type":"Adherens","Directional":false,"Links":[{"SourceID":78073,"TargetID":78076,"Directional":false}]},{"ID":5043,"SourceStructureID":78080,"TargetStructureID":67671,"Label":"78080-67671 via Adherens from 78081 -> 78079","Type":"Adherens","Directional":false,"Links":[{"SourceID":78081,"TargetID":78079,"Directional":false}]},{"ID":5044,"SourceStructureID":67671,"TargetStructureID":78228,"Label":"67671-78228 via Adherens from 78407 -> 78408","Type":"Adherens","Directional":false,"Links":[{"SourceID":78407,"TargetID":78408,"Directional":false}]},{"ID":5045,"SourceStructureID":78415,"TargetStructureID":67671,"Label":"78415-67671 via Adherens from 78416 -> 78414","Type":"Adherens","Directional":false,"Links":[{"SourceID":78416,"TargetID":78414,"Directional":false}]},{"ID":5046,"SourceStructureID":67689,"TargetStructureID":68548,"Label":"67689-68548 via Adherens from 67691 -> 73570, 73571 -> 67691","Type":"Adherens","Directional":false,"Links":[{"SourceID":67691,"TargetID":73570,"Directional":false},{"SourceID":73571,"TargetID":67691,"Directional":false}]},{"ID":5047,"SourceStructureID":68486,"TargetStructureID":67756,"Label":"68486-67756 via Adherens from 79603 -> 79604","Type":"Adherens","Directional":false,"Links":[{"SourceID":79603,"TargetID":79604,"Directional":false}]},{"ID":5048,"SourceStructureID":67796,"TargetStructureID":67796,"Label":"67796-67796 via Adherens from 67798 -> 67799","Type":"Adherens","Directional":false,"Links":[{"SourceID":67798,"TargetID":67799,"Directional":false}]},{"ID":5049,"SourceStructureID":67874,"TargetStructureID":67871,"Label":"67874-67871 via Adherens from 67875 -> 67873","Type":"Adherens","Directional":false,"Links":[{"SourceID":67875,"TargetID":67873,"Directional":false}]},{"ID":5050,"SourceStructureID":67894,"TargetStructureID":68096,"Label":"67894-68096 via Adherens from 82234 -> 68108","Type":"Adherens","Directional":false,"Links":[{"SourceID":82234,"TargetID":68108,"Directional":false}]},{"ID":5051,"SourceStructureID":67952,"TargetStructureID":67947,"Label":"67952-67947 via Adherens from 68092 -> 68084","Type":"Adherens","Directional":false,"Links":[{"SourceID":68092,"TargetID":68084,"Directional":false}]},{"ID":5052,"SourceStructureID":68232,"TargetStructureID":68087,"Label":"68232-68087 via Adherens from 68236 -> 68237","Type":"Adherens","Directional":false,"Links":[{"SourceID":68236,"TargetID":68237,"Directional":false}]},{"ID":5053,"SourceStructureID":68093,"TargetStructureID":68153,"Label":"68093-68153 via Adherens from 68174 -> 68173","Type":"Adherens","Directional":false,"Links":[{"SourceID":68174,"TargetID":68173,"Directional":false}]},{"ID":5054,"SourceStructureID":68096,"TargetStructureID":68101,"Label":"68096-68101 via Gap Junction from 68103 -> 68102","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68103,"TargetID":68102,"Directional":false}]},{"ID":5055,"SourceStructureID":68153,"TargetStructureID":68161,"Label":"68153-68161 via Adherens from 68160 -> 68162, 68164 -> 68163","Type":"Adherens","Directional":false,"Links":[{"SourceID":68160,"TargetID":68162,"Directional":false},{"SourceID":68164,"TargetID":68163,"Directional":false}]},{"ID":5056,"SourceStructureID":68168,"TargetStructureID":68153,"Label":"68168-68153 via Adherens from 91164 -> 91163","Type":"Adherens","Directional":false,"Links":[{"SourceID":91164,"TargetID":91163,"Directional":false}]},{"ID":5057,"SourceStructureID":68180,"TargetStructureID":68153,"Label":"68180-68153 via Adherens from 68181 -> 68179","Type":"Adherens","Directional":false,"Links":[{"SourceID":68181,"TargetID":68179,"Directional":false}]},{"ID":5058,"SourceStructureID":68153,"TargetStructureID":70058,"Label":"68153-70058 via Adherens from 70056 -> 70059","Type":"Adherens","Directional":false,"Links":[{"SourceID":70056,"TargetID":70059,"Directional":false}]},{"ID":5059,"SourceStructureID":70149,"TargetStructureID":68153,"Label":"70149-68153 via Adherens from 70152 -> 70151","Type":"Adherens","Directional":false,"Links":[{"SourceID":70152,"TargetID":70151,"Directional":false}]},{"ID":5060,"SourceStructureID":68153,"TargetStructureID":70171,"Label":"68153-70171 via Adherens from 70168 -> 70174, 70169 -> 70173, 70170 -> 70172","Type":"Adherens","Directional":false,"Links":[{"SourceID":70168,"TargetID":70174,"Directional":false},{"SourceID":70169,"TargetID":70173,"Directional":false},{"SourceID":70170,"TargetID":70172,"Directional":false}]},{"ID":5061,"SourceStructureID":68153,"TargetStructureID":70176,"Label":"68153-70176 via Adherens from 70180 -> 70179","Type":"Adherens","Directional":false,"Links":[{"SourceID":70180,"TargetID":70179,"Directional":false}]},{"ID":5062,"SourceStructureID":88050,"TargetStructureID":68153,"Label":"88050-68153 via Adherens from 88051 -> 88048","Type":"Adherens","Directional":false,"Links":[{"SourceID":88051,"TargetID":88048,"Directional":false}]},{"ID":5063,"SourceStructureID":68238,"TargetStructureID":68239,"Label":"68238-68239 via Gap Junction from 68244 -> 68245","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68244,"TargetID":68245,"Directional":false}]},{"ID":5064,"SourceStructureID":68286,"TargetStructureID":80657,"Label":"68286-80657 via Adherens from 80659 -> 80660","Type":"Adherens","Directional":false,"Links":[{"SourceID":80659,"TargetID":80660,"Directional":false}]},{"ID":5065,"SourceStructureID":69162,"TargetStructureID":68289,"Label":"69162-68289 via Adherens from 80645 -> 80644","Type":"Adherens","Directional":false,"Links":[{"SourceID":80645,"TargetID":80644,"Directional":false}]},{"ID":5066,"SourceStructureID":68341,"TargetStructureID":79586,"Label":"68341-79586 via Adherens from 80626 -> 79597","Type":"Adherens","Directional":false,"Links":[{"SourceID":80626,"TargetID":79597,"Directional":false}]},{"ID":5067,"SourceStructureID":68444,"TargetStructureID":80459,"Label":"68444-80459 via Adherens from 80461 -> 80462","Type":"Adherens","Directional":false,"Links":[{"SourceID":80461,"TargetID":80462,"Directional":false}]},{"ID":5068,"SourceStructureID":80412,"TargetStructureID":68463,"Label":"80412-68463 via Adherens from 80413 -> 80411","Type":"Adherens","Directional":false,"Links":[{"SourceID":80413,"TargetID":80411,"Directional":false}]},{"ID":5069,"SourceStructureID":80419,"TargetStructureID":68463,"Label":"80419-68463 via Adherens from 80420 -> 80418","Type":"Adherens","Directional":false,"Links":[{"SourceID":80420,"TargetID":80418,"Directional":false}]},{"ID":5070,"SourceStructureID":68486,"TargetStructureID":68669,"Label":"68486-68669 via Adherens from 79610 -> 68674","Type":"Adherens","Directional":false,"Links":[{"SourceID":79610,"TargetID":68674,"Directional":false}]},{"ID":5071,"SourceStructureID":79370,"TargetStructureID":68497,"Label":"79370-68497 via Adherens from 81602 -> 81603","Type":"Adherens","Directional":false,"Links":[{"SourceID":81602,"TargetID":81603,"Directional":false}]},{"ID":5072,"SourceStructureID":79474,"TargetStructureID":68497,"Label":"79474-68497 via Adherens from 79475 -> 79473","Type":"Adherens","Directional":false,"Links":[{"SourceID":79475,"TargetID":79473,"Directional":false}]},{"ID":5073,"SourceStructureID":68497,"TargetStructureID":79487,"Label":"68497-79487 via Gap Junction from 79488 -> 79489","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":79488,"TargetID":79489,"Directional":false}]},{"ID":5074,"SourceStructureID":68539,"TargetStructureID":68569,"Label":"68539-68569 via Adherens from 68568 -> 68570","Type":"Adherens","Directional":false,"Links":[{"SourceID":68568,"TargetID":68570,"Directional":false}]},{"ID":5075,"SourceStructureID":69162,"TargetStructureID":68539,"Label":"69162-68539 via Adherens from 69163 -> 69131, 69164 -> 69132","Type":"Adherens","Directional":false,"Links":[{"SourceID":69163,"TargetID":69131,"Directional":false},{"SourceID":69164,"TargetID":69132,"Directional":false}]},{"ID":5076,"SourceStructureID":68539,"TargetStructureID":70267,"Label":"68539-70267 via Adherens from 70269 -> 70268","Type":"Adherens","Directional":false,"Links":[{"SourceID":70269,"TargetID":70268,"Directional":false}]},{"ID":5077,"SourceStructureID":68539,"TargetStructureID":70302,"Label":"68539-70302 via Adherens from 70306 -> 70305","Type":"Adherens","Directional":false,"Links":[{"SourceID":70306,"TargetID":70305,"Directional":false}]},{"ID":5078,"SourceStructureID":68539,"TargetStructureID":70422,"Label":"68539-70422 via Adherens from 76038 -> 70423","Type":"Adherens","Directional":false,"Links":[{"SourceID":76038,"TargetID":70423,"Directional":false}]},{"ID":5079,"SourceStructureID":68539,"TargetStructureID":73314,"Label":"68539-73314 via Adherens from 73321 -> 73320","Type":"Adherens","Directional":false,"Links":[{"SourceID":73321,"TargetID":73320,"Directional":false}]},{"ID":5080,"SourceStructureID":68539,"TargetStructureID":73322,"Label":"68539-73322 via Adherens from 73331 -> 73330","Type":"Adherens","Directional":false,"Links":[{"SourceID":73331,"TargetID":73330,"Directional":false}]},{"ID":5081,"SourceStructureID":68539,"TargetStructureID":73350,"Label":"68539-73350 via Adherens from 73591 -> 73592","Type":"Adherens","Directional":false,"Links":[{"SourceID":73591,"TargetID":73592,"Directional":false}]},{"ID":5082,"SourceStructureID":73380,"TargetStructureID":68539,"Label":"73380-68539 via Unknown from 73381 -> 73382","Type":"Unknown","Directional":false,"Links":[{"SourceID":73381,"TargetID":73382,"Directional":false}]},{"ID":5083,"SourceStructureID":73390,"TargetStructureID":68539,"Label":"73390-68539 via Adherens from 73392 -> 73393","Type":"Adherens","Directional":false,"Links":[{"SourceID":73392,"TargetID":73393,"Directional":false}]},{"ID":5084,"SourceStructureID":73593,"TargetStructureID":68539,"Label":"73593-68539 via Unknown from 73596 -> 73352","Type":"Unknown","Directional":false,"Links":[{"SourceID":73596,"TargetID":73352,"Directional":false}]},{"ID":5085,"SourceStructureID":73594,"TargetStructureID":68539,"Label":"73594-68539 via Unknown from 73595 -> 73352","Type":"Unknown","Directional":false,"Links":[{"SourceID":73595,"TargetID":73352,"Directional":false}]},{"ID":5086,"SourceStructureID":73621,"TargetStructureID":68539,"Label":"73621-68539 via Adherens from 73624 -> 73623","Type":"Adherens","Directional":false,"Links":[{"SourceID":73624,"TargetID":73623,"Directional":false}]},{"ID":5087,"SourceStructureID":73644,"TargetStructureID":68539,"Label":"73644-68539 via Adherens from 73645 -> 73643","Type":"Adherens","Directional":false,"Links":[{"SourceID":73645,"TargetID":73643,"Directional":false}]},{"ID":5088,"SourceStructureID":73690,"TargetStructureID":68539,"Label":"73690-68539 via Adherens from 73697 -> 73696","Type":"Adherens","Directional":false,"Links":[{"SourceID":73697,"TargetID":73696,"Directional":false}]},{"ID":5089,"SourceStructureID":68539,"TargetStructureID":74237,"Label":"68539-74237 via Adherens from 74250 -> 74249","Type":"Adherens","Directional":false,"Links":[{"SourceID":74250,"TargetID":74249,"Directional":false}]},{"ID":5090,"SourceStructureID":74548,"TargetStructureID":68539,"Label":"74548-68539 via Adherens from 74553 -> 74554","Type":"Adherens","Directional":false,"Links":[{"SourceID":74553,"TargetID":74554,"Directional":false}]},{"ID":5091,"SourceStructureID":68539,"TargetStructureID":74576,"Label":"68539-74576 via Adherens from 74581 -> 74582","Type":"Adherens","Directional":false,"Links":[{"SourceID":74581,"TargetID":74582,"Directional":false}]},{"ID":5092,"SourceStructureID":68539,"TargetStructureID":74624,"Label":"68539-74624 via Adherens from 74632 -> 74631","Type":"Adherens","Directional":false,"Links":[{"SourceID":74632,"TargetID":74631,"Directional":false}]},{"ID":5093,"SourceStructureID":74645,"TargetStructureID":68539,"Label":"74645-68539 via Adherens from 74652 -> 74651","Type":"Adherens","Directional":false,"Links":[{"SourceID":74652,"TargetID":74651,"Directional":false}]},{"ID":5094,"SourceStructureID":74667,"TargetStructureID":68539,"Label":"74667-68539 via Adherens from 74668 -> 74669","Type":"Adherens","Directional":false,"Links":[{"SourceID":74668,"TargetID":74669,"Directional":false}]},{"ID":5095,"SourceStructureID":68539,"TargetStructureID":74902,"Label":"68539-74902 via Unknown from 75769 -> 75770","Type":"Unknown","Directional":false,"Links":[{"SourceID":75769,"TargetID":75770,"Directional":false}]},{"ID":5096,"SourceStructureID":75816,"TargetStructureID":68539,"Label":"75816-68539 via Adherens from 75818 -> 75817","Type":"Adherens","Directional":false,"Links":[{"SourceID":75818,"TargetID":75817,"Directional":false}]},{"ID":5097,"SourceStructureID":75825,"TargetStructureID":68539,"Label":"75825-68539 via Adherens from 75829 -> 75828","Type":"Adherens","Directional":false,"Links":[{"SourceID":75829,"TargetID":75828,"Directional":false}]},{"ID":5098,"SourceStructureID":76039,"TargetStructureID":68539,"Label":"76039-68539 via Adherens from 76044 -> 76045, 76046 -> 76047, 76048 -> 76049, 76050 -> 76051, 76053 -> 76054","Type":"Adherens","Directional":false,"Links":[{"SourceID":76044,"TargetID":76045,"Directional":false},{"SourceID":76046,"TargetID":76047,"Directional":false},{"SourceID":76048,"TargetID":76049,"Directional":false},{"SourceID":76050,"TargetID":76051,"Directional":false},{"SourceID":76053,"TargetID":76054,"Directional":false}]},{"ID":5099,"SourceStructureID":76103,"TargetStructureID":68539,"Label":"76103-68539 via Adherens from 76104 -> 76102","Type":"Adherens","Directional":false,"Links":[{"SourceID":76104,"TargetID":76102,"Directional":false}]},{"ID":5100,"SourceStructureID":68548,"TargetStructureID":73528,"Label":"68548-73528 via Adherens from 75727 -> 75726","Type":"Adherens","Directional":false,"Links":[{"SourceID":75727,"TargetID":75726,"Directional":false}]},{"ID":5101,"SourceStructureID":68548,"TargetStructureID":74902,"Label":"68548-74902 via Adherens from 76191 -> 76192","Type":"Adherens","Directional":false,"Links":[{"SourceID":76191,"TargetID":76192,"Directional":false}]},{"ID":5102,"SourceStructureID":68548,"TargetStructureID":75359,"Label":"68548-75359 via Adherens from 75715 -> 75716","Type":"Adherens","Directional":false,"Links":[{"SourceID":75715,"TargetID":75716,"Directional":false}]},{"ID":5103,"SourceStructureID":68548,"TargetStructureID":75367,"Label":"68548-75367 via Adherens from 75366 -> 75368","Type":"Adherens","Directional":false,"Links":[{"SourceID":75366,"TargetID":75368,"Directional":false}]},{"ID":5104,"SourceStructureID":75678,"TargetStructureID":68548,"Label":"75678-68548 via Adherens from 75680 -> 75681","Type":"Adherens","Directional":false,"Links":[{"SourceID":75680,"TargetID":75681,"Directional":false}]},{"ID":5105,"SourceStructureID":68548,"TargetStructureID":75689,"Label":"68548-75689 via Adherens from 75691 -> 75690","Type":"Adherens","Directional":false,"Links":[{"SourceID":75691,"TargetID":75690,"Directional":false}]},{"ID":5106,"SourceStructureID":75695,"TargetStructureID":68548,"Label":"75695-68548 via Adherens from 75698 -> 75697","Type":"Adherens","Directional":false,"Links":[{"SourceID":75698,"TargetID":75697,"Directional":false}]},{"ID":5107,"SourceStructureID":68548,"TargetStructureID":75700,"Label":"68548-75700 via Adherens from 75706 -> 75707","Type":"Adherens","Directional":false,"Links":[{"SourceID":75706,"TargetID":75707,"Directional":false}]},{"ID":5108,"SourceStructureID":68548,"TargetStructureID":75728,"Label":"68548-75728 via Adherens from 75732 -> 75731","Type":"Adherens","Directional":false,"Links":[{"SourceID":75732,"TargetID":75731,"Directional":false}]},{"ID":5109,"SourceStructureID":75739,"TargetStructureID":68548,"Label":"75739-68548 via Adherens from 75747 -> 75748","Type":"Adherens","Directional":false,"Links":[{"SourceID":75747,"TargetID":75748,"Directional":false}]},{"ID":5110,"SourceStructureID":75761,"TargetStructureID":68548,"Label":"75761-68548 via Adherens from 75762 -> 75763","Type":"Adherens","Directional":false,"Links":[{"SourceID":75762,"TargetID":75763,"Directional":false}]},{"ID":5111,"SourceStructureID":68548,"TargetStructureID":75764,"Label":"68548-75764 via Adherens from 75763 -> 75765","Type":"Adherens","Directional":false,"Links":[{"SourceID":75763,"TargetID":75765,"Directional":false}]},{"ID":5112,"SourceStructureID":92926,"TargetStructureID":68548,"Label":"92926-68548 via Adherens from 75687 -> 75688","Type":"Adherens","Directional":false,"Links":[{"SourceID":75687,"TargetID":75688,"Directional":false}]},{"ID":5113,"SourceStructureID":68691,"TargetStructureID":68686,"Label":"68691-68686 via Gap Junction from 68692 -> 68690","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68692,"TargetID":68690,"Directional":false}]},{"ID":5114,"SourceStructureID":68707,"TargetStructureID":68705,"Label":"68707-68705 via Adherens from 68709 -> 68708, 68711 -> 68710","Type":"Adherens","Directional":false,"Links":[{"SourceID":68709,"TargetID":68708,"Directional":false},{"SourceID":68711,"TargetID":68710,"Directional":false}]},{"ID":5115,"SourceStructureID":69030,"TargetStructureID":69030,"Label":"69030-69030 via Adherens from 110297 -> 110293","Type":"Adherens","Directional":false,"Links":[{"SourceID":110297,"TargetID":110293,"Directional":false}]},{"ID":5116,"SourceStructureID":69030,"TargetStructureID":87345,"Label":"69030-87345 via Adherens from 87353 -> 87354","Type":"Adherens","Directional":false,"Links":[{"SourceID":87353,"TargetID":87354,"Directional":false}]},{"ID":5117,"SourceStructureID":78262,"TargetStructureID":69049,"Label":"78262-69049 via Adherens from 82556 -> 82557","Type":"Adherens","Directional":false,"Links":[{"SourceID":82556,"TargetID":82557,"Directional":false}]},{"ID":5118,"SourceStructureID":69363,"TargetStructureID":72384,"Label":"69363-72384 via Adherens from 78707 -> 78708","Type":"Adherens","Directional":false,"Links":[{"SourceID":78707,"TargetID":78708,"Directional":false}]},{"ID":5119,"SourceStructureID":72975,"TargetStructureID":69385,"Label":"72975-69385 via Adherens from 72979 -> 72978, 72984 -> 72983","Type":"Adherens","Directional":false,"Links":[{"SourceID":72979,"TargetID":72978,"Directional":false},{"SourceID":72984,"TargetID":72983,"Directional":false}]},{"ID":5120,"SourceStructureID":72975,"TargetStructureID":69385,"Label":"72975-69385 via Gap Junction from 72982 -> 72981","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":72982,"TargetID":72981,"Directional":false}]},{"ID":5121,"SourceStructureID":70050,"TargetStructureID":70046,"Label":"70050-70046 via Adherens from 70051 -> 70049","Type":"Adherens","Directional":false,"Links":[{"SourceID":70051,"TargetID":70049,"Directional":false}]},{"ID":5122,"SourceStructureID":70418,"TargetStructureID":70415,"Label":"70418-70415 via Adherens from 70419 -> 70417","Type":"Adherens","Directional":false,"Links":[{"SourceID":70419,"TargetID":70417,"Directional":false}]},{"ID":5123,"SourceStructureID":70454,"TargetStructureID":89554,"Label":"70454-89554 via Adherens from 89557 -> 89556","Type":"Adherens","Directional":false,"Links":[{"SourceID":89557,"TargetID":89556,"Directional":false}]},{"ID":5124,"SourceStructureID":89120,"TargetStructureID":70500,"Label":"89120-70500 via Gap Junction from 89145 -> 89115, 122404 -> 122410, 122409 -> 122408, 122411 -> 122405","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89145,"TargetID":89115,"Directional":false},{"SourceID":122404,"TargetID":122410,"Directional":false},{"SourceID":122409,"TargetID":122408,"Directional":false},{"SourceID":122411,"TargetID":122405,"Directional":false}]},{"ID":5125,"SourceStructureID":70659,"TargetStructureID":70655,"Label":"70659-70655 via Adherens from 70661 -> 70662","Type":"Adherens","Directional":false,"Links":[{"SourceID":70661,"TargetID":70662,"Directional":false}]},{"ID":5126,"SourceStructureID":70684,"TargetStructureID":70712,"Label":"70684-70712 via Adherens from 70715 -> 70714","Type":"Adherens","Directional":false,"Links":[{"SourceID":70715,"TargetID":70714,"Directional":false}]},{"ID":5127,"SourceStructureID":70684,"TargetStructureID":70712,"Label":"70684-70712 via Gap Junction from 70719 -> 70718","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70719,"TargetID":70718,"Directional":false}]},{"ID":5128,"SourceStructureID":70743,"TargetStructureID":70745,"Label":"70743-70745 via Adherens from 70754 -> 70753","Type":"Adherens","Directional":false,"Links":[{"SourceID":70754,"TargetID":70753,"Directional":false}]},{"ID":5129,"SourceStructureID":70789,"TargetStructureID":70795,"Label":"70789-70795 via Adherens from 70794 -> 70797","Type":"Adherens","Directional":false,"Links":[{"SourceID":70794,"TargetID":70797,"Directional":false}]},{"ID":5130,"SourceStructureID":70987,"TargetStructureID":70924,"Label":"70987-70924 via Adherens from 70988 -> 70929, 71002 -> 71000, 71030 -> 71029, 71039 -> 71040","Type":"Adherens","Directional":false,"Links":[{"SourceID":70988,"TargetID":70929,"Directional":false},{"SourceID":71002,"TargetID":71000,"Directional":false},{"SourceID":71030,"TargetID":71029,"Directional":false},{"SourceID":71039,"TargetID":71040,"Directional":false}]},{"ID":5131,"SourceStructureID":71118,"TargetStructureID":71063,"Label":"71118-71063 via Gap Junction from 71120 -> 71078","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71120,"TargetID":71078,"Directional":false}]},{"ID":5132,"SourceStructureID":71538,"TargetStructureID":71517,"Label":"71538-71517 via Adherens from 74950 -> 74949","Type":"Adherens","Directional":false,"Links":[{"SourceID":74950,"TargetID":74949,"Directional":false}]},{"ID":5133,"SourceStructureID":71517,"TargetStructureID":71545,"Label":"71517-71545 via Adherens from 72119 -> 72120","Type":"Adherens","Directional":false,"Links":[{"SourceID":72119,"TargetID":72120,"Directional":false}]},{"ID":5134,"SourceStructureID":74388,"TargetStructureID":71517,"Label":"74388-71517 via Adherens from 75011 -> 75010","Type":"Adherens","Directional":false,"Links":[{"SourceID":75011,"TargetID":75010,"Directional":false}]},{"ID":5135,"SourceStructureID":71517,"TargetStructureID":74931,"Label":"71517-74931 via Adherens from 74932 -> 74933","Type":"Adherens","Directional":false,"Links":[{"SourceID":74932,"TargetID":74933,"Directional":false}]},{"ID":5136,"SourceStructureID":74952,"TargetStructureID":71517,"Label":"74952-71517 via Gap Junction from 74954 -> 74953","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":74954,"TargetID":74953,"Directional":false}]},{"ID":5137,"SourceStructureID":74969,"TargetStructureID":71517,"Label":"74969-71517 via Adherens from 74975 -> 74976","Type":"Adherens","Directional":false,"Links":[{"SourceID":74975,"TargetID":74976,"Directional":false}]},{"ID":5138,"SourceStructureID":75052,"TargetStructureID":71517,"Label":"75052-71517 via Adherens from 75054 -> 75053","Type":"Adherens","Directional":false,"Links":[{"SourceID":75054,"TargetID":75053,"Directional":false}]},{"ID":5139,"SourceStructureID":71671,"TargetStructureID":71715,"Label":"71671-71715 via Adherens from 71718 -> 71719, 71727 -> 71728","Type":"Adherens","Directional":false,"Links":[{"SourceID":71718,"TargetID":71719,"Directional":false},{"SourceID":71727,"TargetID":71728,"Directional":false}]},{"ID":5140,"SourceStructureID":71771,"TargetStructureID":71781,"Label":"71771-71781 via Adherens from 71813 -> 71814","Type":"Adherens","Directional":false,"Links":[{"SourceID":71813,"TargetID":71814,"Directional":false}]},{"ID":5141,"SourceStructureID":90324,"TargetStructureID":71882,"Label":"90324-71882 via Adherens from 90325 -> 90323","Type":"Adherens","Directional":false,"Links":[{"SourceID":90325,"TargetID":90323,"Directional":false}]},{"ID":5142,"SourceStructureID":90334,"TargetStructureID":71882,"Label":"90334-71882 via Adherens from 90337 -> 90333","Type":"Adherens","Directional":false,"Links":[{"SourceID":90337,"TargetID":90333,"Directional":false}]},{"ID":5143,"SourceStructureID":90334,"TargetStructureID":71882,"Label":"90334-71882 via Gap Junction from 90336 -> 90335","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90336,"TargetID":90335,"Directional":false}]},{"ID":5144,"SourceStructureID":90376,"TargetStructureID":71882,"Label":"90376-71882 via Adherens from 90380 -> 90379","Type":"Adherens","Directional":false,"Links":[{"SourceID":90380,"TargetID":90379,"Directional":false}]},{"ID":5145,"SourceStructureID":90376,"TargetStructureID":71882,"Label":"90376-71882 via Gap Junction from 90378 -> 90374","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90378,"TargetID":90374,"Directional":false}]},{"ID":5146,"SourceStructureID":90389,"TargetStructureID":71882,"Label":"90389-71882 via Unknown from 90391 -> 90388","Type":"Unknown","Directional":false,"Links":[{"SourceID":90391,"TargetID":90388,"Directional":false}]},{"ID":5147,"SourceStructureID":90446,"TargetStructureID":71882,"Label":"90446-71882 via Adherens from 90447 -> 90445","Type":"Adherens","Directional":false,"Links":[{"SourceID":90447,"TargetID":90445,"Directional":false}]},{"ID":5148,"SourceStructureID":90446,"TargetStructureID":71882,"Label":"90446-71882 via Gap Junction from 90448 -> 90444","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90448,"TargetID":90444,"Directional":false}]},{"ID":5149,"SourceStructureID":71954,"TargetStructureID":71953,"Label":"71954-71953 via Gap Junction from 71956 -> 71955","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71956,"TargetID":71955,"Directional":false}]},{"ID":5150,"SourceStructureID":72168,"TargetStructureID":82961,"Label":"72168-82961 via Adherens from 82960 -> 82962, 82967 -> 82968","Type":"Adherens","Directional":false,"Links":[{"SourceID":82960,"TargetID":82962,"Directional":false},{"SourceID":82967,"TargetID":82968,"Directional":false}]},{"ID":5151,"SourceStructureID":72994,"TargetStructureID":72989,"Label":"72994-72989 via Adherens from 72999 -> 73000","Type":"Adherens","Directional":false,"Links":[{"SourceID":72999,"TargetID":73000,"Directional":false}]},{"ID":5152,"SourceStructureID":75752,"TargetStructureID":73025,"Label":"75752-73025 via Adherens from 75756 -> 75757","Type":"Adherens","Directional":false,"Links":[{"SourceID":75756,"TargetID":75757,"Directional":false}]},{"ID":5153,"SourceStructureID":73394,"TargetStructureID":73397,"Label":"73394-73397 via Adherens from 73401 -> 73402","Type":"Adherens","Directional":false,"Links":[{"SourceID":73401,"TargetID":73402,"Directional":false}]},{"ID":5154,"SourceStructureID":73465,"TargetStructureID":73460,"Label":"73465-73460 via Adherens from 73471 -> 73470","Type":"Adherens","Directional":false,"Links":[{"SourceID":73471,"TargetID":73470,"Directional":false}]},{"ID":5155,"SourceStructureID":73594,"TargetStructureID":73593,"Label":"73594-73593 via Unknown from 73595 -> 73596","Type":"Unknown","Directional":false,"Links":[{"SourceID":73595,"TargetID":73596,"Directional":false}]},{"ID":5156,"SourceStructureID":73655,"TargetStructureID":73658,"Label":"73655-73658 via Adherens from 73657 -> 73660","Type":"Adherens","Directional":false,"Links":[{"SourceID":73657,"TargetID":73660,"Directional":false}]},{"ID":5157,"SourceStructureID":73665,"TargetStructureID":73662,"Label":"73665-73662 via Adherens from 73666 -> 73664","Type":"Adherens","Directional":false,"Links":[{"SourceID":73666,"TargetID":73664,"Directional":false}]},{"ID":5158,"SourceStructureID":73681,"TargetStructureID":73676,"Label":"73681-73676 via Adherens from 73682 -> 73680","Type":"Adherens","Directional":false,"Links":[{"SourceID":73682,"TargetID":73680,"Directional":false}]},{"ID":5159,"SourceStructureID":74069,"TargetStructureID":74069,"Label":"74069-74069 via Unknown from 74070 -> 74072","Type":"Unknown","Directional":false,"Links":[{"SourceID":74070,"TargetID":74072,"Directional":false}]},{"ID":5160,"SourceStructureID":74238,"TargetStructureID":74237,"Label":"74238-74237 via Adherens from 74263 -> 74262","Type":"Adherens","Directional":false,"Links":[{"SourceID":74263,"TargetID":74262,"Directional":false}]},{"ID":5161,"SourceStructureID":74238,"TargetStructureID":74240,"Label":"74238-74240 via Adherens from 74260 -> 74261","Type":"Adherens","Directional":false,"Links":[{"SourceID":74260,"TargetID":74261,"Directional":false}]},{"ID":5162,"SourceStructureID":74292,"TargetStructureID":74282,"Label":"74292-74282 via Adherens from 74293 -> 74294","Type":"Adherens","Directional":false,"Links":[{"SourceID":74293,"TargetID":74294,"Directional":false}]},{"ID":5163,"SourceStructureID":75130,"TargetStructureID":74321,"Label":"75130-74321 via Gap Junction from 121969 -> 121970","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121969,"TargetID":121970,"Directional":false}]},{"ID":5164,"SourceStructureID":74601,"TargetStructureID":74590,"Label":"74601-74590 via Adherens from 74602 -> 74600","Type":"Adherens","Directional":false,"Links":[{"SourceID":74602,"TargetID":74600,"Directional":false}]},{"ID":5165,"SourceStructureID":74610,"TargetStructureID":74614,"Label":"74610-74614 via Adherens from 74615 -> 74616","Type":"Adherens","Directional":false,"Links":[{"SourceID":74615,"TargetID":74616,"Directional":false}]},{"ID":5166,"SourceStructureID":74907,"TargetStructureID":83698,"Label":"74907-83698 via Adherens from 83741 -> 83742","Type":"Adherens","Directional":false,"Links":[{"SourceID":83741,"TargetID":83742,"Directional":false}]},{"ID":5167,"SourceStructureID":74907,"TargetStructureID":83749,"Label":"74907-83749 via Unknown from 83755 -> 83756","Type":"Unknown","Directional":false,"Links":[{"SourceID":83755,"TargetID":83756,"Directional":false}]},{"ID":5168,"SourceStructureID":74907,"TargetStructureID":83757,"Label":"74907-83757 via Adherens from 84614 -> 84615","Type":"Adherens","Directional":false,"Links":[{"SourceID":84614,"TargetID":84615,"Directional":false}]},{"ID":5169,"SourceStructureID":74907,"TargetStructureID":83757,"Label":"74907-83757 via Unknown from 84617 -> 84618","Type":"Unknown","Directional":false,"Links":[{"SourceID":84617,"TargetID":84618,"Directional":false}]},{"ID":5170,"SourceStructureID":74907,"TargetStructureID":83790,"Label":"74907-83790 via Adherens from 83794 -> 83795","Type":"Adherens","Directional":false,"Links":[{"SourceID":83794,"TargetID":83795,"Directional":false}]},{"ID":5171,"SourceStructureID":74907,"TargetStructureID":83790,"Label":"74907-83790 via Gap Junction from 115439 -> 115440","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115439,"TargetID":115440,"Directional":false}]},{"ID":5172,"SourceStructureID":83834,"TargetStructureID":74907,"Label":"83834-74907 via Unknown from 83836 -> 83835","Type":"Unknown","Directional":false,"Links":[{"SourceID":83836,"TargetID":83835,"Directional":false}]},{"ID":5173,"SourceStructureID":74907,"TargetStructureID":83845,"Label":"74907-83845 via Unknown from 83847 -> 83848","Type":"Unknown","Directional":false,"Links":[{"SourceID":83847,"TargetID":83848,"Directional":false}]},{"ID":5174,"SourceStructureID":74907,"TargetStructureID":83894,"Label":"74907-83894 via Adherens from 84448 -> 84447","Type":"Adherens","Directional":false,"Links":[{"SourceID":84448,"TargetID":84447,"Directional":false}]},{"ID":5175,"SourceStructureID":83894,"TargetStructureID":74907,"Label":"83894-74907 via Unknown from 84476 -> 84475","Type":"Unknown","Directional":false,"Links":[{"SourceID":84476,"TargetID":84475,"Directional":false}]},{"ID":5176,"SourceStructureID":74907,"TargetStructureID":83898,"Label":"74907-83898 via Unknown from 84452 -> 84453","Type":"Unknown","Directional":false,"Links":[{"SourceID":84452,"TargetID":84453,"Directional":false}]},{"ID":5177,"SourceStructureID":74907,"TargetStructureID":83911,"Label":"74907-83911 via Unknown from 84468 -> 84469","Type":"Unknown","Directional":false,"Links":[{"SourceID":84468,"TargetID":84469,"Directional":false}]},{"ID":5178,"SourceStructureID":74907,"TargetStructureID":84280,"Label":"74907-84280 via Unknown from 84470 -> 84471","Type":"Unknown","Directional":false,"Links":[{"SourceID":84470,"TargetID":84471,"Directional":false}]},{"ID":5179,"SourceStructureID":84294,"TargetStructureID":74907,"Label":"84294-74907 via Adherens from 84479 -> 84480","Type":"Adherens","Directional":false,"Links":[{"SourceID":84479,"TargetID":84480,"Directional":false}]},{"ID":5180,"SourceStructureID":74907,"TargetStructureID":84308,"Label":"74907-84308 via Adherens from 84315 -> 84314","Type":"Adherens","Directional":false,"Links":[{"SourceID":84315,"TargetID":84314,"Directional":false}]},{"ID":5181,"SourceStructureID":74907,"TargetStructureID":84308,"Label":"74907-84308 via Gap Junction from 84312 -> 84313","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84312,"TargetID":84313,"Directional":false}]},{"ID":5182,"SourceStructureID":74907,"TargetStructureID":84316,"Label":"74907-84316 via Gap Junction from 84319 -> 84320, 84333 -> 84332","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84319,"TargetID":84320,"Directional":false},{"SourceID":84333,"TargetID":84332,"Directional":false}]},{"ID":5183,"SourceStructureID":74907,"TargetStructureID":84316,"Label":"74907-84316 via Unknown from 84326 -> 84327","Type":"Unknown","Directional":false,"Links":[{"SourceID":84326,"TargetID":84327,"Directional":false}]},{"ID":5184,"SourceStructureID":74907,"TargetStructureID":84449,"Label":"74907-84449 via Unknown from 84454 -> 84455","Type":"Unknown","Directional":false,"Links":[{"SourceID":84454,"TargetID":84455,"Directional":false}]},{"ID":5185,"SourceStructureID":74907,"TargetStructureID":84514,"Label":"74907-84514 via Unknown from 84595 -> 84594","Type":"Unknown","Directional":false,"Links":[{"SourceID":84595,"TargetID":84594,"Directional":false}]},{"ID":5186,"SourceStructureID":74907,"TargetStructureID":84570,"Label":"74907-84570 via Unknown from 84474 -> 84571","Type":"Unknown","Directional":false,"Links":[{"SourceID":84474,"TargetID":84571,"Directional":false}]},{"ID":5187,"SourceStructureID":74907,"TargetStructureID":84586,"Label":"74907-84586 via Unknown from 84772 -> 84608","Type":"Unknown","Directional":false,"Links":[{"SourceID":84772,"TargetID":84608,"Directional":false}]},{"ID":5188,"SourceStructureID":74907,"TargetStructureID":84621,"Label":"74907-84621 via Unknown from 84628 -> 84629","Type":"Unknown","Directional":false,"Links":[{"SourceID":84628,"TargetID":84629,"Directional":false}]},{"ID":5189,"SourceStructureID":74907,"TargetStructureID":84636,"Label":"74907-84636 via Unknown from 83816 -> 84736","Type":"Unknown","Directional":false,"Links":[{"SourceID":83816,"TargetID":84736,"Directional":false}]},{"ID":5190,"SourceStructureID":84831,"TargetStructureID":74907,"Label":"84831-74907 via Unknown from 84835 -> 84834","Type":"Unknown","Directional":false,"Links":[{"SourceID":84835,"TargetID":84834,"Directional":false}]},{"ID":5191,"SourceStructureID":75021,"TargetStructureID":75028,"Label":"75021-75028 via Adherens from 75029 -> 75030","Type":"Adherens","Directional":false,"Links":[{"SourceID":75029,"TargetID":75030,"Directional":false}]},{"ID":5192,"SourceStructureID":75073,"TargetStructureID":81153,"Label":"75073-81153 via Adherens from 82231 -> 82232","Type":"Adherens","Directional":false,"Links":[{"SourceID":82231,"TargetID":82232,"Directional":false}]},{"ID":5193,"SourceStructureID":75130,"TargetStructureID":77677,"Label":"75130-77677 via Adherens from 77687 -> 77685","Type":"Adherens","Directional":false,"Links":[{"SourceID":77687,"TargetID":77685,"Directional":false}]},{"ID":5194,"SourceStructureID":75395,"TargetStructureID":75400,"Label":"75395-75400 via Adherens from 82527 -> 82528","Type":"Adherens","Directional":false,"Links":[{"SourceID":82527,"TargetID":82528,"Directional":false}]},{"ID":5195,"SourceStructureID":75622,"TargetStructureID":75621,"Label":"75622-75621 via Gap Junction from 75624 -> 75623","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":75624,"TargetID":75623,"Directional":false}]},{"ID":5196,"SourceStructureID":75742,"TargetStructureID":75739,"Label":"75742-75739 via Adherens from 75743 -> 75740","Type":"Adherens","Directional":false,"Links":[{"SourceID":75743,"TargetID":75740,"Directional":false}]},{"ID":5197,"SourceStructureID":75764,"TargetStructureID":75761,"Label":"75764-75761 via Adherens from 75765 -> 75762","Type":"Adherens","Directional":false,"Links":[{"SourceID":75765,"TargetID":75762,"Directional":false}]},{"ID":5198,"SourceStructureID":76877,"TargetStructureID":76595,"Label":"76877-76595 via Adherens from 76879 -> 76876","Type":"Adherens","Directional":false,"Links":[{"SourceID":76879,"TargetID":76876,"Directional":false}]},{"ID":5199,"SourceStructureID":76867,"TargetStructureID":76752,"Label":"76867-76752 via Unknown from 82575 -> 82576","Type":"Unknown","Directional":false,"Links":[{"SourceID":82575,"TargetID":82576,"Directional":false}]},{"ID":5200,"SourceStructureID":76829,"TargetStructureID":76827,"Label":"76829-76827 via Adherens from 76830 -> 76828","Type":"Adherens","Directional":false,"Links":[{"SourceID":76830,"TargetID":76828,"Directional":false}]},{"ID":5201,"SourceStructureID":76829,"TargetStructureID":76832,"Label":"76829-76832 via Adherens from 76839 -> 76840","Type":"Adherens","Directional":false,"Links":[{"SourceID":76839,"TargetID":76840,"Directional":false}]},{"ID":5202,"SourceStructureID":76832,"TargetStructureID":76829,"Label":"76832-76829 via Gap Junction from 76833 -> 76831","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":76833,"TargetID":76831,"Directional":false}]},{"ID":5203,"SourceStructureID":82677,"TargetStructureID":77403,"Label":"82677-77403 via Adherens from 83672 -> 83673","Type":"Adherens","Directional":false,"Links":[{"SourceID":83672,"TargetID":83673,"Directional":false}]},{"ID":5204,"SourceStructureID":78367,"TargetStructureID":78367,"Label":"78367-78367 via Unknown from 78368 -> 78369","Type":"Unknown","Directional":false,"Links":[{"SourceID":78368,"TargetID":78369,"Directional":false}]},{"ID":5205,"SourceStructureID":78423,"TargetStructureID":78710,"Label":"78423-78710 via Adherens from 78712 -> 78711","Type":"Adherens","Directional":false,"Links":[{"SourceID":78712,"TargetID":78711,"Directional":false}]},{"ID":5206,"SourceStructureID":78761,"TargetStructureID":78709,"Label":"78761-78709 via Adherens from 78764 -> 78763","Type":"Adherens","Directional":false,"Links":[{"SourceID":78764,"TargetID":78763,"Directional":false}]},{"ID":5207,"SourceStructureID":87545,"TargetStructureID":78909,"Label":"87545-78909 via Adherens from 87546 -> 87544","Type":"Adherens","Directional":false,"Links":[{"SourceID":87546,"TargetID":87544,"Directional":false}]},{"ID":5208,"SourceStructureID":87604,"TargetStructureID":78909,"Label":"87604-78909 via Adherens from 87605 -> 87603","Type":"Adherens","Directional":false,"Links":[{"SourceID":87605,"TargetID":87603,"Directional":false}]},{"ID":5209,"SourceStructureID":79069,"TargetStructureID":79068,"Label":"79069-79068 via Adherens from 79076 -> 79075, 79289 -> 79287","Type":"Adherens","Directional":false,"Links":[{"SourceID":79076,"TargetID":79075,"Directional":false},{"SourceID":79289,"TargetID":79287,"Directional":false}]},{"ID":5210,"SourceStructureID":79068,"TargetStructureID":79091,"Label":"79068-79091 via Adherens from 79139 -> 79138, 79140 -> 79141, 79266 -> 79267, 79293 -> 79292","Type":"Adherens","Directional":false,"Links":[{"SourceID":79139,"TargetID":79138,"Directional":false},{"SourceID":79140,"TargetID":79141,"Directional":false},{"SourceID":79266,"TargetID":79267,"Directional":false},{"SourceID":79293,"TargetID":79292,"Directional":false}]},{"ID":5211,"SourceStructureID":79072,"TargetStructureID":79069,"Label":"79072-79069 via Adherens from 79100 -> 79099, 79133 -> 79134, 79272 -> 79273, 79390 -> 79392","Type":"Adherens","Directional":false,"Links":[{"SourceID":79100,"TargetID":79099,"Directional":false},{"SourceID":79133,"TargetID":79134,"Directional":false},{"SourceID":79272,"TargetID":79273,"Directional":false},{"SourceID":79390,"TargetID":79392,"Directional":false}]},{"ID":5212,"SourceStructureID":79074,"TargetStructureID":79069,"Label":"79074-79069 via Adherens from 79113 -> 79114, 79115 -> 79116, 79275 -> 79274, 79391 -> 79392, 79393 -> 79394, 79395 -> 79396","Type":"Adherens","Directional":false,"Links":[{"SourceID":79113,"TargetID":79114,"Directional":false},{"SourceID":79115,"TargetID":79116,"Directional":false},{"SourceID":79275,"TargetID":79274,"Directional":false},{"SourceID":79391,"TargetID":79392,"Directional":false},{"SourceID":79393,"TargetID":79394,"Directional":false},{"SourceID":79395,"TargetID":79396,"Directional":false}]},{"ID":5213,"SourceStructureID":79072,"TargetStructureID":79071,"Label":"79072-79071 via Adherens from 79306 -> 79305, 79387 -> 79386, 79388 -> 79389","Type":"Adherens","Directional":false,"Links":[{"SourceID":79306,"TargetID":79305,"Directional":false},{"SourceID":79387,"TargetID":79386,"Directional":false},{"SourceID":79388,"TargetID":79389,"Directional":false}]},{"ID":5214,"SourceStructureID":79074,"TargetStructureID":79072,"Label":"79074-79072 via Adherens from 79079 -> 79080, 79082 -> 79081, 79084 -> 79083, 79103 -> 79101, 79104 -> 79102, 79110 -> 79109, 79136 -> 79135, 79312 -> 79314, 79313 -> 79314, 79327 -> 79328, 79344 -> 79343, 79391 -> 79390","Type":"Adherens","Directional":false,"Links":[{"SourceID":79079,"TargetID":79080,"Directional":false},{"SourceID":79082,"TargetID":79081,"Directional":false},{"SourceID":79084,"TargetID":79083,"Directional":false},{"SourceID":79103,"TargetID":79101,"Directional":false},{"SourceID":79104,"TargetID":79102,"Directional":false},{"SourceID":79110,"TargetID":79109,"Directional":false},{"SourceID":79136,"TargetID":79135,"Directional":false},{"SourceID":79312,"TargetID":79314,"Directional":false},{"SourceID":79313,"TargetID":79314,"Directional":false},{"SourceID":79327,"TargetID":79328,"Directional":false},{"SourceID":79344,"TargetID":79343,"Directional":false},{"SourceID":79391,"TargetID":79390,"Directional":false}]},{"ID":5215,"SourceStructureID":81917,"TargetStructureID":79317,"Label":"81917-79317 via Gap Junction from 99034 -> 99033","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99034,"TargetID":99033,"Directional":false}]},{"ID":5216,"SourceStructureID":79559,"TargetStructureID":79512,"Label":"79559-79512 via Adherens from 79569 -> 79529","Type":"Adherens","Directional":false,"Links":[{"SourceID":79569,"TargetID":79529,"Directional":false}]},{"ID":5217,"SourceStructureID":82305,"TargetStructureID":79586,"Label":"82305-79586 via Adherens from 116718 -> 79593","Type":"Adherens","Directional":false,"Links":[{"SourceID":116718,"TargetID":79593,"Directional":false}]},{"ID":5218,"SourceStructureID":79908,"TargetStructureID":83121,"Label":"79908-83121 via BC Conventional Synapse from 83120 -> 83122","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":83120,"TargetID":83122,"Directional":false}]},{"ID":5219,"SourceStructureID":80139,"TargetStructureID":82271,"Label":"80139-82271 via Adherens from 83629 -> 83630","Type":"Adherens","Directional":false,"Links":[{"SourceID":83629,"TargetID":83630,"Directional":false}]},{"ID":5220,"SourceStructureID":81304,"TargetStructureID":81316,"Label":"81304-81316 via Unknown from 81317 -> 81319","Type":"Unknown","Directional":false,"Links":[{"SourceID":81317,"TargetID":81319,"Directional":false}]},{"ID":5221,"SourceStructureID":131704,"TargetStructureID":81429,"Label":"131704-81429 via Adherens from 131705 -> 81443","Type":"Adherens","Directional":false,"Links":[{"SourceID":131705,"TargetID":81443,"Directional":false}]},{"ID":5222,"SourceStructureID":81615,"TargetStructureID":133891,"Label":"81615-133891 via Adherens from 133899 -> 133898","Type":"Adherens","Directional":false,"Links":[{"SourceID":133899,"TargetID":133898,"Directional":false}]},{"ID":5223,"SourceStructureID":81771,"TargetStructureID":81667,"Label":"81771-81667 via Adherens from 81772 -> 81773","Type":"Adherens","Directional":false,"Links":[{"SourceID":81772,"TargetID":81773,"Directional":false}]},{"ID":5224,"SourceStructureID":81776,"TargetStructureID":81667,"Label":"81776-81667 via Adherens from 81777 -> 81778","Type":"Adherens","Directional":false,"Links":[{"SourceID":81777,"TargetID":81778,"Directional":false}]},{"ID":5225,"SourceStructureID":81748,"TargetStructureID":81743,"Label":"81748-81743 via Adherens from 81749 -> 81747, 81750 -> 81746","Type":"Adherens","Directional":false,"Links":[{"SourceID":81749,"TargetID":81747,"Directional":false},{"SourceID":81750,"TargetID":81746,"Directional":false}]},{"ID":5226,"SourceStructureID":81808,"TargetStructureID":81799,"Label":"81808-81799 via Adherens from 81809 -> 81807","Type":"Adherens","Directional":false,"Links":[{"SourceID":81809,"TargetID":81807,"Directional":false}]},{"ID":5227,"SourceStructureID":81799,"TargetStructureID":81831,"Label":"81799-81831 via Adherens from 81830 -> 81832","Type":"Adherens","Directional":false,"Links":[{"SourceID":81830,"TargetID":81832,"Directional":false}]},{"ID":5228,"SourceStructureID":82172,"TargetStructureID":82177,"Label":"82172-82177 via Adherens from 82176 -> 82178","Type":"Adherens","Directional":false,"Links":[{"SourceID":82176,"TargetID":82178,"Directional":false}]},{"ID":5229,"SourceStructureID":82330,"TargetStructureID":82305,"Label":"82330-82305 via Adherens from 82331 -> 82329","Type":"Adherens","Directional":false,"Links":[{"SourceID":82331,"TargetID":82329,"Directional":false}]},{"ID":5230,"SourceStructureID":82412,"TargetStructureID":82773,"Label":"82412-82773 via Adherens from 82775 -> 82774","Type":"Adherens","Directional":false,"Links":[{"SourceID":82775,"TargetID":82774,"Directional":false}]},{"ID":5231,"SourceStructureID":83638,"TargetStructureID":82677,"Label":"83638-82677 via Adherens from 83639 -> 83640","Type":"Adherens","Directional":false,"Links":[{"SourceID":83639,"TargetID":83640,"Directional":false}]},{"ID":5232,"SourceStructureID":82677,"TargetStructureID":83674,"Label":"82677-83674 via Adherens from 83675 -> 83676","Type":"Adherens","Directional":false,"Links":[{"SourceID":83675,"TargetID":83676,"Directional":false}]},{"ID":5233,"SourceStructureID":82677,"TargetStructureID":83679,"Label":"82677-83679 via Adherens from 83695 -> 83696","Type":"Adherens","Directional":false,"Links":[{"SourceID":83695,"TargetID":83696,"Directional":false}]},{"ID":5234,"SourceStructureID":82677,"TargetStructureID":83714,"Label":"82677-83714 via Adherens from 83723 -> 83722","Type":"Adherens","Directional":false,"Links":[{"SourceID":83723,"TargetID":83722,"Directional":false}]},{"ID":5235,"SourceStructureID":83725,"TargetStructureID":82677,"Label":"83725-82677 via Adherens from 83728 -> 83729","Type":"Adherens","Directional":false,"Links":[{"SourceID":83728,"TargetID":83729,"Directional":false}]},{"ID":5236,"SourceStructureID":82677,"TargetStructureID":83767,"Label":"82677-83767 via Adherens from 83769 -> 83768, 83775 -> 83774","Type":"Adherens","Directional":false,"Links":[{"SourceID":83769,"TargetID":83768,"Directional":false},{"SourceID":83775,"TargetID":83774,"Directional":false}]},{"ID":5237,"SourceStructureID":83782,"TargetStructureID":82677,"Label":"83782-82677 via Adherens from 83783 -> 83781","Type":"Adherens","Directional":false,"Links":[{"SourceID":83783,"TargetID":83781,"Directional":false}]},{"ID":5238,"SourceStructureID":83828,"TargetStructureID":82677,"Label":"83828-82677 via Adherens from 83829 -> 83827","Type":"Adherens","Directional":false,"Links":[{"SourceID":83829,"TargetID":83827,"Directional":false}]},{"ID":5239,"SourceStructureID":82677,"TargetStructureID":83866,"Label":"82677-83866 via Adherens from 83880 -> 83879","Type":"Adherens","Directional":false,"Links":[{"SourceID":83880,"TargetID":83879,"Directional":false}]},{"ID":5240,"SourceStructureID":84021,"TargetStructureID":82677,"Label":"84021-82677 via Adherens from 84022 -> 84020","Type":"Adherens","Directional":false,"Links":[{"SourceID":84022,"TargetID":84020,"Directional":false}]},{"ID":5241,"SourceStructureID":84050,"TargetStructureID":82677,"Label":"84050-82677 via Adherens from 84051 -> 84049","Type":"Adherens","Directional":false,"Links":[{"SourceID":84051,"TargetID":84049,"Directional":false}]},{"ID":5242,"SourceStructureID":82677,"TargetStructureID":117990,"Label":"82677-117990 via Gap Junction from 118005 -> 118002","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118005,"TargetID":118002,"Directional":false}]},{"ID":5243,"SourceStructureID":82743,"TargetStructureID":82777,"Label":"82743-82777 via Unknown from 82776 -> 82778","Type":"Unknown","Directional":false,"Links":[{"SourceID":82776,"TargetID":82778,"Directional":false}]},{"ID":5244,"SourceStructureID":82743,"TargetStructureID":82789,"Label":"82743-82789 via Unknown from 82788 -> 82790","Type":"Unknown","Directional":false,"Links":[{"SourceID":82788,"TargetID":82790,"Directional":false}]},{"ID":5245,"SourceStructureID":83008,"TargetStructureID":82743,"Label":"83008-82743 via Unknown from 83009 -> 83007","Type":"Unknown","Directional":false,"Links":[{"SourceID":83009,"TargetID":83007,"Directional":false}]},{"ID":5246,"SourceStructureID":82743,"TargetStructureID":83010,"Label":"82743-83010 via Unknown from 83006 -> 83011","Type":"Unknown","Directional":false,"Links":[{"SourceID":83006,"TargetID":83011,"Directional":false}]},{"ID":5247,"SourceStructureID":82743,"TargetStructureID":83012,"Label":"82743-83012 via Unknown from 83013 -> 83014","Type":"Unknown","Directional":false,"Links":[{"SourceID":83013,"TargetID":83014,"Directional":false}]},{"ID":5248,"SourceStructureID":83619,"TargetStructureID":83056,"Label":"83619-83056 via Adherens from 83620 -> 83618","Type":"Adherens","Directional":false,"Links":[{"SourceID":83620,"TargetID":83618,"Directional":false}]},{"ID":5249,"SourceStructureID":83200,"TargetStructureID":83161,"Label":"83200-83161 via Gap Junction from 83201 -> 83199","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83201,"TargetID":83199,"Directional":false}]},{"ID":5250,"SourceStructureID":83329,"TargetStructureID":83331,"Label":"83329-83331 via Gap Junction from 83330 -> 83332","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83330,"TargetID":83332,"Directional":false}]},{"ID":5251,"SourceStructureID":83449,"TargetStructureID":83448,"Label":"83449-83448 via Adherens from 83453 -> 83452","Type":"Adherens","Directional":false,"Links":[{"SourceID":83453,"TargetID":83452,"Directional":false}]},{"ID":5252,"SourceStructureID":83650,"TargetStructureID":83648,"Label":"83650-83648 via Adherens from 83651 -> 83649","Type":"Adherens","Directional":false,"Links":[{"SourceID":83651,"TargetID":83649,"Directional":false}]},{"ID":5253,"SourceStructureID":83807,"TargetStructureID":84636,"Label":"83807-84636 via Unknown from 84735 -> 84734","Type":"Unknown","Directional":false,"Links":[{"SourceID":84735,"TargetID":84734,"Directional":false}]},{"ID":5254,"SourceStructureID":84082,"TargetStructureID":84088,"Label":"84082-84088 via Adherens from 84094 -> 84093","Type":"Adherens","Directional":false,"Links":[{"SourceID":84094,"TargetID":84093,"Directional":false}]},{"ID":5255,"SourceStructureID":84177,"TargetStructureID":84165,"Label":"84177-84165 via Adherens from 84178 -> 84176","Type":"Adherens","Directional":false,"Links":[{"SourceID":84178,"TargetID":84176,"Directional":false}]},{"ID":5256,"SourceStructureID":84751,"TargetStructureID":84748,"Label":"84751-84748 via Adherens from 84752 -> 84750","Type":"Adherens","Directional":false,"Links":[{"SourceID":84752,"TargetID":84750,"Directional":false}]},{"ID":5257,"SourceStructureID":84830,"TargetStructureID":84847,"Label":"84830-84847 via Adherens from 84846 -> 84848","Type":"Adherens","Directional":false,"Links":[{"SourceID":84846,"TargetID":84848,"Directional":false}]},{"ID":5258,"SourceStructureID":84900,"TargetStructureID":84830,"Label":"84900-84830 via Adherens from 84901 -> 84899","Type":"Adherens","Directional":false,"Links":[{"SourceID":84901,"TargetID":84899,"Directional":false}]},{"ID":5259,"SourceStructureID":84919,"TargetStructureID":84830,"Label":"84919-84830 via Adherens from 85470 -> 85469","Type":"Adherens","Directional":false,"Links":[{"SourceID":85470,"TargetID":85469,"Directional":false}]},{"ID":5260,"SourceStructureID":84924,"TargetStructureID":84830,"Label":"84924-84830 via Unknown from 84925 -> 84923","Type":"Unknown","Directional":false,"Links":[{"SourceID":84925,"TargetID":84923,"Directional":false}]},{"ID":5261,"SourceStructureID":84909,"TargetStructureID":84900,"Label":"84909-84900 via Adherens from 84910 -> 84908","Type":"Adherens","Directional":false,"Links":[{"SourceID":84910,"TargetID":84908,"Directional":false}]},{"ID":5262,"SourceStructureID":84903,"TargetStructureID":84905,"Label":"84903-84905 via Adherens from 84904 -> 84906","Type":"Adherens","Directional":false,"Links":[{"SourceID":84904,"TargetID":84906,"Directional":false}]},{"ID":5263,"SourceStructureID":85053,"TargetStructureID":85094,"Label":"85053-85094 via Adherens from 85111 -> 85110","Type":"Adherens","Directional":false,"Links":[{"SourceID":85111,"TargetID":85110,"Directional":false}]},{"ID":5264,"SourceStructureID":85072,"TargetStructureID":85068,"Label":"85072-85068 via Adherens from 85073 -> 85071","Type":"Adherens","Directional":false,"Links":[{"SourceID":85073,"TargetID":85071,"Directional":false}]},{"ID":5265,"SourceStructureID":85079,"TargetStructureID":85082,"Label":"85079-85082 via Adherens from 85086 -> 85085","Type":"Adherens","Directional":false,"Links":[{"SourceID":85086,"TargetID":85085,"Directional":false}]},{"ID":5266,"SourceStructureID":85121,"TargetStructureID":85119,"Label":"85121-85119 via Adherens from 85126 -> 85120, 85130 -> 85131","Type":"Adherens","Directional":false,"Links":[{"SourceID":85126,"TargetID":85120,"Directional":false},{"SourceID":85130,"TargetID":85131,"Directional":false}]},{"ID":5267,"SourceStructureID":85141,"TargetStructureID":85149,"Label":"85141-85149 via Adherens from 85152 -> 85153","Type":"Adherens","Directional":false,"Links":[{"SourceID":85152,"TargetID":85153,"Directional":false}]},{"ID":5268,"SourceStructureID":85159,"TargetStructureID":85141,"Label":"85159-85141 via Adherens from 85160 -> 85158","Type":"Adherens","Directional":false,"Links":[{"SourceID":85160,"TargetID":85158,"Directional":false}]},{"ID":5269,"SourceStructureID":85162,"TargetStructureID":85141,"Label":"85162-85141 via Adherens from 85163 -> 85161","Type":"Adherens","Directional":false,"Links":[{"SourceID":85163,"TargetID":85161,"Directional":false}]},{"ID":5270,"SourceStructureID":85172,"TargetStructureID":85141,"Label":"85172-85141 via Adherens from 85177 -> 85178","Type":"Adherens","Directional":false,"Links":[{"SourceID":85177,"TargetID":85178,"Directional":false}]},{"ID":5271,"SourceStructureID":85141,"TargetStructureID":85214,"Label":"85141-85214 via Unknown from 85393 -> 85394","Type":"Unknown","Directional":false,"Links":[{"SourceID":85393,"TargetID":85394,"Directional":false}]},{"ID":5272,"SourceStructureID":85233,"TargetStructureID":85141,"Label":"85233-85141 via Adherens from 85398 -> 85397","Type":"Adherens","Directional":false,"Links":[{"SourceID":85398,"TargetID":85397,"Directional":false}]},{"ID":5273,"SourceStructureID":85352,"TargetStructureID":85141,"Label":"85352-85141 via Adherens from 85353 -> 85351","Type":"Adherens","Directional":false,"Links":[{"SourceID":85353,"TargetID":85351,"Directional":false}]},{"ID":5274,"SourceStructureID":85141,"TargetStructureID":85386,"Label":"85141-85386 via Adherens from 85385 -> 85387","Type":"Adherens","Directional":false,"Links":[{"SourceID":85385,"TargetID":85387,"Directional":false}]},{"ID":5275,"SourceStructureID":85750,"TargetStructureID":85748,"Label":"85750-85748 via Adherens from 85753 -> 85752","Type":"Adherens","Directional":false,"Links":[{"SourceID":85753,"TargetID":85752,"Directional":false}]},{"ID":5276,"SourceStructureID":85748,"TargetStructureID":85766,"Label":"85748-85766 via Adherens from 85764 -> 85767","Type":"Adherens","Directional":false,"Links":[{"SourceID":85764,"TargetID":85767,"Directional":false}]},{"ID":5277,"SourceStructureID":85771,"TargetStructureID":85748,"Label":"85771-85748 via Adherens from 85773 -> 85769","Type":"Adherens","Directional":false,"Links":[{"SourceID":85773,"TargetID":85769,"Directional":false}]},{"ID":5278,"SourceStructureID":85900,"TargetStructureID":85856,"Label":"85900-85856 via Gap Junction from 85901 -> 85899","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85901,"TargetID":85899,"Directional":false}]},{"ID":5279,"SourceStructureID":85856,"TargetStructureID":136970,"Label":"85856-136970 via Gap Junction from 136982 -> 136981","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136982,"TargetID":136981,"Directional":false}]},{"ID":5280,"SourceStructureID":85924,"TargetStructureID":85928,"Label":"85924-85928 via Adherens from 85952 -> 85953","Type":"Adherens","Directional":false,"Links":[{"SourceID":85952,"TargetID":85953,"Directional":false}]},{"ID":5281,"SourceStructureID":86050,"TargetStructureID":86036,"Label":"86050-86036 via Adherens from 86058 -> 86051","Type":"Adherens","Directional":false,"Links":[{"SourceID":86058,"TargetID":86051,"Directional":false}]},{"ID":5282,"SourceStructureID":86634,"TargetStructureID":86662,"Label":"86634-86662 via Adherens from 86664 -> 86665","Type":"Adherens","Directional":false,"Links":[{"SourceID":86664,"TargetID":86665,"Directional":false}]},{"ID":5283,"SourceStructureID":86667,"TargetStructureID":86634,"Label":"86667-86634 via Adherens from 86668 -> 86666","Type":"Adherens","Directional":false,"Links":[{"SourceID":86668,"TargetID":86666,"Directional":false}]},{"ID":5284,"SourceStructureID":86672,"TargetStructureID":86634,"Label":"86672-86634 via Adherens from 86682 -> 86681","Type":"Adherens","Directional":false,"Links":[{"SourceID":86682,"TargetID":86681,"Directional":false}]},{"ID":5285,"SourceStructureID":86634,"TargetStructureID":86675,"Label":"86634-86675 via Adherens from 86679 -> 86680","Type":"Adherens","Directional":false,"Links":[{"SourceID":86679,"TargetID":86680,"Directional":false}]},{"ID":5286,"SourceStructureID":86702,"TargetStructureID":86634,"Label":"86702-86634 via Unknown from 86703 -> 86701","Type":"Unknown","Directional":false,"Links":[{"SourceID":86703,"TargetID":86701,"Directional":false}]},{"ID":5287,"SourceStructureID":86675,"TargetStructureID":86672,"Label":"86675-86672 via Adherens from 86677 -> 86676","Type":"Adherens","Directional":false,"Links":[{"SourceID":86677,"TargetID":86676,"Directional":false}]},{"ID":5288,"SourceStructureID":86933,"TargetStructureID":86934,"Label":"86933-86934 via Adherens from 86937 -> 86938","Type":"Adherens","Directional":false,"Links":[{"SourceID":86937,"TargetID":86938,"Directional":false}]},{"ID":5289,"SourceStructureID":86991,"TargetStructureID":86985,"Label":"86991-86985 via Adherens from 86993 -> 86994","Type":"Adherens","Directional":false,"Links":[{"SourceID":86993,"TargetID":86994,"Directional":false}]},{"ID":5290,"SourceStructureID":87145,"TargetStructureID":87149,"Label":"87145-87149 via Adherens from 87153 -> 87152","Type":"Adherens","Directional":false,"Links":[{"SourceID":87153,"TargetID":87152,"Directional":false}]},{"ID":5291,"SourceStructureID":87189,"TargetStructureID":87183,"Label":"87189-87183 via Adherens from 87191 -> 87188","Type":"Adherens","Directional":false,"Links":[{"SourceID":87191,"TargetID":87188,"Directional":false}]},{"ID":5292,"SourceStructureID":87304,"TargetStructureID":87294,"Label":"87304-87294 via Adherens from 87306 -> 87307","Type":"Adherens","Directional":false,"Links":[{"SourceID":87306,"TargetID":87307,"Directional":false}]},{"ID":5293,"SourceStructureID":87309,"TargetStructureID":87294,"Label":"87309-87294 via Adherens from 87310 -> 87308","Type":"Adherens","Directional":false,"Links":[{"SourceID":87310,"TargetID":87308,"Directional":false}]},{"ID":5294,"SourceStructureID":87294,"TargetStructureID":87318,"Label":"87294-87318 via Unknown from 87317 -> 87319","Type":"Unknown","Directional":false,"Links":[{"SourceID":87317,"TargetID":87319,"Directional":false}]},{"ID":5295,"SourceStructureID":89124,"TargetStructureID":87294,"Label":"89124-87294 via Adherens from 89154 -> 89155","Type":"Adherens","Directional":false,"Links":[{"SourceID":89154,"TargetID":89155,"Directional":false}]},{"ID":5296,"SourceStructureID":87396,"TargetStructureID":87342,"Label":"87396-87342 via Adherens from 87397 -> 87395","Type":"Adherens","Directional":false,"Links":[{"SourceID":87397,"TargetID":87395,"Directional":false}]},{"ID":5297,"SourceStructureID":87349,"TargetStructureID":87345,"Label":"87349-87345 via Adherens from 87351 -> 87352","Type":"Adherens","Directional":false,"Links":[{"SourceID":87351,"TargetID":87352,"Directional":false}]},{"ID":5298,"SourceStructureID":88199,"TargetStructureID":88205,"Label":"88199-88205 via Adherens from 88204 -> 88206","Type":"Adherens","Directional":false,"Links":[{"SourceID":88204,"TargetID":88206,"Directional":false}]},{"ID":5299,"SourceStructureID":88199,"TargetStructureID":88215,"Label":"88199-88215 via Adherens from 88217 -> 88218","Type":"Adherens","Directional":false,"Links":[{"SourceID":88217,"TargetID":88218,"Directional":false}]},{"ID":5300,"SourceStructureID":88230,"TargetStructureID":88199,"Label":"88230-88199 via Adherens from 88233 -> 88232","Type":"Adherens","Directional":false,"Links":[{"SourceID":88233,"TargetID":88232,"Directional":false}]},{"ID":5301,"SourceStructureID":88300,"TargetStructureID":88260,"Label":"88300-88260 via Adherens from 88303 -> 88295","Type":"Adherens","Directional":false,"Links":[{"SourceID":88303,"TargetID":88295,"Directional":false}]},{"ID":5302,"SourceStructureID":88305,"TargetStructureID":88260,"Label":"88305-88260 via Adherens from 88307 -> 88308, 88311 -> 88310","Type":"Adherens","Directional":false,"Links":[{"SourceID":88307,"TargetID":88308,"Directional":false},{"SourceID":88311,"TargetID":88310,"Directional":false}]},{"ID":5303,"SourceStructureID":88320,"TargetStructureID":88260,"Label":"88320-88260 via Unknown from 88321 -> 88319","Type":"Unknown","Directional":false,"Links":[{"SourceID":88321,"TargetID":88319,"Directional":false}]},{"ID":5304,"SourceStructureID":88323,"TargetStructureID":88260,"Label":"88323-88260 via Adherens from 88324 -> 88322","Type":"Adherens","Directional":false,"Links":[{"SourceID":88324,"TargetID":88322,"Directional":false}]},{"ID":5305,"SourceStructureID":88325,"TargetStructureID":88323,"Label":"88325-88323 via Adherens from 88326 -> 88324","Type":"Adherens","Directional":false,"Links":[{"SourceID":88326,"TargetID":88324,"Directional":false}]},{"ID":5306,"SourceStructureID":88600,"TargetStructureID":88594,"Label":"88600-88594 via Adherens from 88601 -> 88599","Type":"Adherens","Directional":false,"Links":[{"SourceID":88601,"TargetID":88599,"Directional":false}]},{"ID":5307,"SourceStructureID":88923,"TargetStructureID":88919,"Label":"88923-88919 via Adherens from 88925 -> 88922","Type":"Adherens","Directional":false,"Links":[{"SourceID":88925,"TargetID":88922,"Directional":false}]},{"ID":5308,"SourceStructureID":89039,"TargetStructureID":89046,"Label":"89039-89046 via Adherens from 89048 -> 89049","Type":"Adherens","Directional":false,"Links":[{"SourceID":89048,"TargetID":89049,"Directional":false}]},{"ID":5309,"SourceStructureID":89160,"TargetStructureID":89120,"Label":"89160-89120 via Adherens from 89164 -> 89163","Type":"Adherens","Directional":false,"Links":[{"SourceID":89164,"TargetID":89163,"Directional":false}]},{"ID":5310,"SourceStructureID":89323,"TargetStructureID":89124,"Label":"89323-89124 via Adherens from 89326 -> 89325","Type":"Adherens","Directional":false,"Links":[{"SourceID":89326,"TargetID":89325,"Directional":false}]},{"ID":5311,"SourceStructureID":89323,"TargetStructureID":89124,"Label":"89323-89124 via Gap Junction from 89324 -> 89322","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89324,"TargetID":89322,"Directional":false}]},{"ID":5312,"SourceStructureID":89336,"TargetStructureID":89124,"Label":"89336-89124 via Unknown from 89337 -> 89335","Type":"Unknown","Directional":false,"Links":[{"SourceID":89337,"TargetID":89335,"Directional":false}]},{"ID":5313,"SourceStructureID":89355,"TargetStructureID":89124,"Label":"89355-89124 via Adherens from 89358 -> 89354","Type":"Adherens","Directional":false,"Links":[{"SourceID":89358,"TargetID":89354,"Directional":false}]},{"ID":5314,"SourceStructureID":89133,"TargetStructureID":89133,"Label":"89133-89133 via Gap Junction from 89203 -> 89202","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89203,"TargetID":89202,"Directional":false}]},{"ID":5315,"SourceStructureID":97959,"TargetStructureID":89433,"Label":"97959-89433 via Gap Junction from 97960 -> 97958","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97960,"TargetID":97958,"Directional":false}]},{"ID":5316,"SourceStructureID":89694,"TargetStructureID":89677,"Label":"89694-89677 via Adherens from 89697 -> 89692","Type":"Adherens","Directional":false,"Links":[{"SourceID":89697,"TargetID":89692,"Directional":false}]},{"ID":5317,"SourceStructureID":89677,"TargetStructureID":89694,"Label":"89677-89694 via Unknown from 89693 -> 89696, 89695 -> 89691","Type":"Unknown","Directional":false,"Links":[{"SourceID":89693,"TargetID":89696,"Directional":false},{"SourceID":89695,"TargetID":89691,"Directional":false}]},{"ID":5318,"SourceStructureID":89798,"TargetStructureID":89775,"Label":"89798-89775 via Adherens from 89799 -> 89797","Type":"Adherens","Directional":false,"Links":[{"SourceID":89799,"TargetID":89797,"Directional":false}]},{"ID":5319,"SourceStructureID":89801,"TargetStructureID":89775,"Label":"89801-89775 via Adherens from 89802 -> 89800","Type":"Adherens","Directional":false,"Links":[{"SourceID":89802,"TargetID":89800,"Directional":false}]},{"ID":5320,"SourceStructureID":89814,"TargetStructureID":89811,"Label":"89814-89811 via Adherens from 89819 -> 89818","Type":"Adherens","Directional":false,"Links":[{"SourceID":89819,"TargetID":89818,"Directional":false}]},{"ID":5321,"SourceStructureID":89836,"TargetStructureID":89831,"Label":"89836-89831 via Adherens from 89841 -> 89835","Type":"Adherens","Directional":false,"Links":[{"SourceID":89841,"TargetID":89835,"Directional":false}]},{"ID":5322,"SourceStructureID":89910,"TargetStructureID":89851,"Label":"89910-89851 via Adherens from 89911 -> 89909","Type":"Adherens","Directional":false,"Links":[{"SourceID":89911,"TargetID":89909,"Directional":false}]},{"ID":5323,"SourceStructureID":89928,"TargetStructureID":89851,"Label":"89928-89851 via Adherens from 89929 -> 89925, 89930 -> 89927","Type":"Adherens","Directional":false,"Links":[{"SourceID":89929,"TargetID":89925,"Directional":false},{"SourceID":89930,"TargetID":89927,"Directional":false}]},{"ID":5324,"SourceStructureID":89993,"TargetStructureID":89989,"Label":"89993-89989 via Adherens from 89994 -> 89992","Type":"Adherens","Directional":false,"Links":[{"SourceID":89994,"TargetID":89992,"Directional":false}]},{"ID":5325,"SourceStructureID":90035,"TargetStructureID":89989,"Label":"90035-89989 via Adherens from 90036 -> 90034","Type":"Adherens","Directional":false,"Links":[{"SourceID":90036,"TargetID":90034,"Directional":false}]},{"ID":5326,"SourceStructureID":90089,"TargetStructureID":89989,"Label":"90089-89989 via Adherens from 90090 -> 90088","Type":"Adherens","Directional":false,"Links":[{"SourceID":90090,"TargetID":90088,"Directional":false}]},{"ID":5327,"SourceStructureID":90092,"TargetStructureID":89989,"Label":"90092-89989 via Adherens from 90093 -> 90091","Type":"Adherens","Directional":false,"Links":[{"SourceID":90093,"TargetID":90091,"Directional":false}]},{"ID":5328,"SourceStructureID":90795,"TargetStructureID":90791,"Label":"90795-90791 via Adherens from 90797 -> 90794","Type":"Adherens","Directional":false,"Links":[{"SourceID":90797,"TargetID":90794,"Directional":false}]},{"ID":5329,"SourceStructureID":90795,"TargetStructureID":90791,"Label":"90795-90791 via Gap Junction from 90798 -> 90793","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90798,"TargetID":90793,"Directional":false}]},{"ID":5330,"SourceStructureID":90956,"TargetStructureID":90952,"Label":"90956-90952 via Adherens from 90957 -> 90954","Type":"Adherens","Directional":false,"Links":[{"SourceID":90957,"TargetID":90954,"Directional":false}]},{"ID":5331,"SourceStructureID":91042,"TargetStructureID":91043,"Label":"91042-91043 via Adherens from 91045 -> 91044","Type":"Adherens","Directional":false,"Links":[{"SourceID":91045,"TargetID":91044,"Directional":false}]},{"ID":5332,"SourceStructureID":91073,"TargetStructureID":91080,"Label":"91073-91080 via Adherens from 91083 -> 91082","Type":"Adherens","Directional":false,"Links":[{"SourceID":91083,"TargetID":91082,"Directional":false}]},{"ID":5333,"SourceStructureID":91240,"TargetStructureID":91240,"Label":"91240-91240 via Adherens from 91242 -> 91241","Type":"Adherens","Directional":false,"Links":[{"SourceID":91242,"TargetID":91241,"Directional":false}]},{"ID":5334,"SourceStructureID":92092,"TargetStructureID":92092,"Label":"92092-92092 via Adherens from 92798 -> 92797","Type":"Adherens","Directional":false,"Links":[{"SourceID":92798,"TargetID":92797,"Directional":false}]},{"ID":5335,"SourceStructureID":113541,"TargetStructureID":92865,"Label":"113541-92865 via Gap Junction from 113543 -> 92866","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113543,"TargetID":92866,"Directional":false}]},{"ID":5336,"SourceStructureID":93494,"TargetStructureID":93486,"Label":"93494-93486 via Adherens from 93495 -> 93493","Type":"Adherens","Directional":false,"Links":[{"SourceID":93495,"TargetID":93493,"Directional":false}]},{"ID":5337,"SourceStructureID":94579,"TargetStructureID":94579,"Label":"94579-94579 via Unknown from 94580 -> 94581","Type":"Unknown","Directional":false,"Links":[{"SourceID":94580,"TargetID":94581,"Directional":false}]},{"ID":5338,"SourceStructureID":95299,"TargetStructureID":95311,"Label":"95299-95311 via Unknown from 132857 -> 132859","Type":"Unknown","Directional":false,"Links":[{"SourceID":132857,"TargetID":132859,"Directional":false}]},{"ID":5339,"SourceStructureID":95607,"TargetStructureID":95605,"Label":"95607-95605 via Adherens from 133054 -> 133055","Type":"Adherens","Directional":false,"Links":[{"SourceID":133054,"TargetID":133055,"Directional":false}]},{"ID":5340,"SourceStructureID":96189,"TargetStructureID":96212,"Label":"96189-96212 via Unknown from 96214 -> 96213","Type":"Unknown","Directional":false,"Links":[{"SourceID":96214,"TargetID":96213,"Directional":false}]},{"ID":5341,"SourceStructureID":108026,"TargetStructureID":96898,"Label":"108026-96898 via Unknown from 108027 -> 108028","Type":"Unknown","Directional":false,"Links":[{"SourceID":108027,"TargetID":108028,"Directional":false}]},{"ID":5342,"SourceStructureID":97352,"TargetStructureID":97355,"Label":"97352-97355 via Unknown from 131106 -> 131105","Type":"Unknown","Directional":false,"Links":[{"SourceID":131106,"TargetID":131105,"Directional":false}]},{"ID":5343,"SourceStructureID":97376,"TargetStructureID":97541,"Label":"97376-97541 via Adherens from 97433 -> 97542","Type":"Adherens","Directional":false,"Links":[{"SourceID":97433,"TargetID":97542,"Directional":false}]},{"ID":5344,"SourceStructureID":98127,"TargetStructureID":98556,"Label":"98127-98556 via Unknown from 98783 -> 98568","Type":"Unknown","Directional":false,"Links":[{"SourceID":98783,"TargetID":98568,"Directional":false}]},{"ID":5345,"SourceStructureID":98505,"TargetStructureID":98505,"Label":"98505-98505 via Adherens from 98508 -> 98507","Type":"Adherens","Directional":false,"Links":[{"SourceID":98508,"TargetID":98507,"Directional":false}]},{"ID":5346,"SourceStructureID":99365,"TargetStructureID":99356,"Label":"99365-99356 via Gap Junction from 99367 -> 99360","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99367,"TargetID":99360,"Directional":false}]},{"ID":5347,"SourceStructureID":99831,"TargetStructureID":100129,"Label":"99831-100129 via Adherens from 100133 -> 100134","Type":"Adherens","Directional":false,"Links":[{"SourceID":100133,"TargetID":100134,"Directional":false}]},{"ID":5348,"SourceStructureID":99981,"TargetStructureID":99981,"Label":"99981-99981 via Adherens from 134212 -> 134211","Type":"Adherens","Directional":false,"Links":[{"SourceID":134212,"TargetID":134211,"Directional":false}]},{"ID":5349,"SourceStructureID":100709,"TargetStructureID":100147,"Label":"100709-100147 via Adherens from 100711 -> 100712","Type":"Adherens","Directional":false,"Links":[{"SourceID":100711,"TargetID":100712,"Directional":false}]},{"ID":5350,"SourceStructureID":103084,"TargetStructureID":102607,"Label":"103084-102607 via Unknown from 134061 -> 134060","Type":"Unknown","Directional":false,"Links":[{"SourceID":134061,"TargetID":134060,"Directional":false}]},{"ID":5351,"SourceStructureID":103572,"TargetStructureID":103572,"Label":"103572-103572 via Unknown from 103583 -> 103582","Type":"Unknown","Directional":false,"Links":[{"SourceID":103583,"TargetID":103582,"Directional":false}]},{"ID":5352,"SourceStructureID":133891,"TargetStructureID":105210,"Label":"133891-105210 via Gap Junction from 133892 -> 133893","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133892,"TargetID":133893,"Directional":false}]},{"ID":5353,"SourceStructureID":108539,"TargetStructureID":108539,"Label":"108539-108539 via Unknown from 108544 -> 108543","Type":"Unknown","Directional":false,"Links":[{"SourceID":108544,"TargetID":108543,"Directional":false}]},{"ID":5354,"SourceStructureID":110880,"TargetStructureID":110879,"Label":"110880-110879 via Adherens from 110897 -> 110898","Type":"Adherens","Directional":false,"Links":[{"SourceID":110897,"TargetID":110898,"Directional":false}]},{"ID":5355,"SourceStructureID":112264,"TargetStructureID":112260,"Label":"112264-112260 via Adherens from 112265 -> 112262","Type":"Adherens","Directional":false,"Links":[{"SourceID":112265,"TargetID":112262,"Directional":false}]},{"ID":5356,"SourceStructureID":117093,"TargetStructureID":117091,"Label":"117093-117091 via Gap Junction from 117094 -> 117092","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117094,"TargetID":117092,"Directional":false}]},{"ID":5357,"SourceStructureID":117132,"TargetStructureID":117127,"Label":"117132-117127 via Gap Junction from 117133 -> 117131","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117133,"TargetID":117131,"Directional":false}]},{"ID":5358,"SourceStructureID":117778,"TargetStructureID":117774,"Label":"117778-117774 via Gap Junction from 117779 -> 117777","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117779,"TargetID":117777,"Directional":false}]},{"ID":5359,"SourceStructureID":117999,"TargetStructureID":117990,"Label":"117999-117990 via Gap Junction from 118000 -> 117998","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118000,"TargetID":117998,"Directional":false}]},{"ID":5360,"SourceStructureID":118058,"TargetStructureID":118058,"Label":"118058-118058 via Gap Junction from 118067 -> 118060","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118067,"TargetID":118060,"Directional":false}]},{"ID":5361,"SourceStructureID":128907,"TargetStructureID":120291,"Label":"128907-120291 via Unknown from 128909 -> 128910","Type":"Unknown","Directional":false,"Links":[{"SourceID":128909,"TargetID":128910,"Directional":false}]},{"ID":5362,"SourceStructureID":136418,"TargetStructureID":122091,"Label":"136418-122091 via Gap Junction from 136420 -> 136419","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136420,"TargetID":136419,"Directional":false}]},{"ID":5363,"SourceStructureID":131740,"TargetStructureID":122868,"Label":"131740-122868 via Adherens from 131741 -> 131739","Type":"Adherens","Directional":false,"Links":[{"SourceID":131741,"TargetID":131739,"Directional":false}]},{"ID":5364,"SourceStructureID":123552,"TargetStructureID":123551,"Label":"123552-123551 via Adherens from 123555 -> 123554","Type":"Adherens","Directional":false,"Links":[{"SourceID":123555,"TargetID":123554,"Directional":false}]},{"ID":5365,"SourceStructureID":124301,"TargetStructureID":124301,"Label":"124301-124301 via Unknown from 124435 -> 124434","Type":"Unknown","Directional":false,"Links":[{"SourceID":124435,"TargetID":124434,"Directional":false}]},{"ID":5366,"SourceStructureID":132009,"TargetStructureID":132009,"Label":"132009-132009 via Gap Junction from 132015 -> 132016","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132015,"TargetID":132016,"Directional":false}]},{"ID":5367,"SourceStructureID":132009,"TargetStructureID":132021,"Label":"132009-132021 via Gap Junction from 132020 -> 132022","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132020,"TargetID":132022,"Directional":false}]},{"ID":5368,"SourceStructureID":135829,"TargetStructureID":135225,"Label":"135829-135225 via Touch from 135831 -> 135830","Type":"Touch","Directional":false,"Links":[{"SourceID":135831,"TargetID":135830,"Directional":false}]},{"ID":5369,"SourceStructureID":148300,"TargetStructureID":148300,"Label":"148300-148300 via Adherens from 148309 -> 148308","Type":"Adherens","Directional":false,"Links":[{"SourceID":148309,"TargetID":148308,"Directional":false}]},{"ID":5370,"SourceStructureID":115,"TargetStructureID":165,"Label":"115-165 via Conventional from 8072 -> 21678","Type":"Conventional","Directional":true,"Links":[{"SourceID":8072,"TargetID":21678,"Directional":true}]},{"ID":5371,"SourceStructureID":115,"TargetStructureID":359,"Label":"115-359 via Conventional from 8127 -> 21462","Type":"Conventional","Directional":true,"Links":[{"SourceID":8127,"TargetID":21462,"Directional":true}]},{"ID":5372,"SourceStructureID":115,"TargetStructureID":373,"Label":"115-373 via Conventional from 8170 -> 55275","Type":"Conventional","Directional":true,"Links":[{"SourceID":8170,"TargetID":55275,"Directional":true}]},{"ID":5373,"SourceStructureID":115,"TargetStructureID":425,"Label":"115-425 via Conventional from 8168 -> 87462","Type":"Conventional","Directional":true,"Links":[{"SourceID":8168,"TargetID":87462,"Directional":true}]},{"ID":5374,"SourceStructureID":115,"TargetStructureID":458,"Label":"115-458 via Conventional from 8156 -> 8157","Type":"Conventional","Directional":true,"Links":[{"SourceID":8156,"TargetID":8157,"Directional":true}]},{"ID":5375,"SourceStructureID":115,"TargetStructureID":3928,"Label":"115-3928 via Conventional from 8081 -> 39952","Type":"Conventional","Directional":true,"Links":[{"SourceID":8081,"TargetID":39952,"Directional":true}]},{"ID":5376,"SourceStructureID":115,"TargetStructureID":13469,"Label":"115-13469 via Conventional from 10810 -> 13478","Type":"Conventional","Directional":true,"Links":[{"SourceID":10810,"TargetID":13478,"Directional":true}]},{"ID":5377,"SourceStructureID":115,"TargetStructureID":130472,"Label":"115-130472 via Conventional from 8115 -> 130497","Type":"Conventional","Directional":true,"Links":[{"SourceID":8115,"TargetID":130497,"Directional":true}]},{"ID":5378,"SourceStructureID":115,"TargetStructureID":159045,"Label":"115-159045 via Conventional from 8112 -> 159073","Type":"Conventional","Directional":true,"Links":[{"SourceID":8112,"TargetID":159073,"Directional":true}]},{"ID":5379,"SourceStructureID":138,"TargetStructureID":3679,"Label":"138-3679 via Ribbon Synapse from 2213 -> 65999, 2214 -> 66001, 2403 -> 22732, 11466 -> 11868, 11472 -> 11692, 11857 -> 29405, 46421 -> 22708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2213,"TargetID":65999,"Directional":true},{"SourceID":2214,"TargetID":66001,"Directional":true},{"SourceID":2403,"TargetID":22732,"Directional":true},{"SourceID":11466,"TargetID":11868,"Directional":true},{"SourceID":11472,"TargetID":11692,"Directional":true},{"SourceID":11857,"TargetID":29405,"Directional":true},{"SourceID":46421,"TargetID":22708,"Directional":true}]},{"ID":5380,"SourceStructureID":138,"TargetStructureID":7073,"Label":"138-7073 via Ribbon Synapse from 2197 -> 11856","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2197,"TargetID":11856,"Directional":true}]},{"ID":5381,"SourceStructureID":138,"TargetStructureID":7897,"Label":"138-7897 via Ribbon Synapse from 46479 -> 46480, 46483 -> 46484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46479,"TargetID":46480,"Directional":true},{"SourceID":46483,"TargetID":46484,"Directional":true}]},{"ID":5382,"SourceStructureID":138,"TargetStructureID":12203,"Label":"138-12203 via Ribbon Synapse from 2187 -> 12204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2187,"TargetID":12204,"Directional":true}]},{"ID":5383,"SourceStructureID":138,"TargetStructureID":20681,"Label":"138-20681 via BC Conventional Synapse from 123274 -> 123275","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123274,"TargetID":123275,"Directional":true}]},{"ID":5384,"SourceStructureID":138,"TargetStructureID":29340,"Label":"138-29340 via Ribbon Synapse from 2197 -> 29398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2197,"TargetID":29398,"Directional":true}]},{"ID":5385,"SourceStructureID":138,"TargetStructureID":31486,"Label":"138-31486 via Ribbon Synapse from 19565 -> 31653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19565,"TargetID":31653,"Directional":true}]},{"ID":5386,"SourceStructureID":138,"TargetStructureID":32874,"Label":"138-32874 via Ribbon Synapse from 32887 -> 32886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32887,"TargetID":32886,"Directional":true}]},{"ID":5387,"SourceStructureID":138,"TargetStructureID":32892,"Label":"138-32892 via Ribbon Synapse from 32887 -> 32895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32887,"TargetID":32895,"Directional":true}]},{"ID":5388,"SourceStructureID":138,"TargetStructureID":43404,"Label":"138-43404 via Ribbon Synapse from 33284 -> 43413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33284,"TargetID":43413,"Directional":true}]},{"ID":5389,"SourceStructureID":138,"TargetStructureID":46449,"Label":"138-46449 via Ribbon Synapse from 46460 -> 46459, 60788 -> 60789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46460,"TargetID":46459,"Directional":true},{"SourceID":60788,"TargetID":60789,"Directional":true}]},{"ID":5390,"SourceStructureID":138,"TargetStructureID":54264,"Label":"138-54264 via Ribbon Synapse from 54273 -> 54272, 54274 -> 54275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54273,"TargetID":54272,"Directional":true},{"SourceID":54274,"TargetID":54275,"Directional":true}]},{"ID":5391,"SourceStructureID":138,"TargetStructureID":54622,"Label":"138-54622 via BC Conventional Synapse from 55939 -> 55940","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55939,"TargetID":55940,"Directional":true}]},{"ID":5392,"SourceStructureID":138,"TargetStructureID":70205,"Label":"138-70205 via Ribbon Synapse from 11449 -> 70217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11449,"TargetID":70217,"Directional":true}]},{"ID":5393,"SourceStructureID":138,"TargetStructureID":136432,"Label":"138-136432 via Ribbon Synapse from 11857 -> 136501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11857,"TargetID":136501,"Directional":true}]},{"ID":5394,"SourceStructureID":142,"TargetStructureID":5107,"Label":"142-5107 via Ribbon Synapse from 92448 -> 125962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92448,"TargetID":125962,"Directional":true}]},{"ID":5395,"SourceStructureID":142,"TargetStructureID":5435,"Label":"142-5435 via BC Conventional Synapse from 125938 -> 125939","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125938,"TargetID":125939,"Directional":true}]},{"ID":5396,"SourceStructureID":142,"TargetStructureID":5485,"Label":"142-5485 via Ribbon Synapse from 49747 -> 126181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49747,"TargetID":126181,"Directional":true}]},{"ID":5397,"SourceStructureID":142,"TargetStructureID":5487,"Label":"142-5487 via Ribbon Synapse from 91678 -> 91680","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91678,"TargetID":91680,"Directional":true}]},{"ID":5398,"SourceStructureID":142,"TargetStructureID":5618,"Label":"142-5618 via Ribbon Synapse from 65988 -> 65986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65988,"TargetID":65986,"Directional":true}]},{"ID":5399,"SourceStructureID":142,"TargetStructureID":6300,"Label":"142-6300 via Ribbon Synapse from 32016 -> 125931, 50128 -> 126052, 126051 -> 126052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32016,"TargetID":125931,"Directional":true},{"SourceID":50128,"TargetID":126052,"Directional":true},{"SourceID":126051,"TargetID":126052,"Directional":true}]},{"ID":5400,"SourceStructureID":142,"TargetStructureID":9347,"Label":"142-9347 via Cistern Pre from 126307 -> 126318","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":126307,"TargetID":126318,"Directional":true}]},{"ID":5401,"SourceStructureID":142,"TargetStructureID":9347,"Label":"142-9347 via Ribbon Synapse from 30700 -> 126321, 30704 -> 126249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30700,"TargetID":126321,"Directional":true},{"SourceID":30704,"TargetID":126249,"Directional":true}]},{"ID":5402,"SourceStructureID":142,"TargetStructureID":18693,"Label":"142-18693 via BC Conventional Synapse from 126217 -> 27332","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":126217,"TargetID":27332,"Directional":true}]},{"ID":5403,"SourceStructureID":142,"TargetStructureID":18693,"Label":"142-18693 via Ribbon Synapse from 126136 -> 126135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126136,"TargetID":126135,"Directional":true}]},{"ID":5404,"SourceStructureID":142,"TargetStructureID":30513,"Label":"142-30513 via Cistern Pre from 49704 -> 125974, 126169 -> 126170","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":49704,"TargetID":125974,"Directional":true},{"SourceID":126169,"TargetID":126170,"Directional":true}]},{"ID":5405,"SourceStructureID":142,"TargetStructureID":30513,"Label":"142-30513 via Ribbon Synapse from 10321 -> 30515","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10321,"TargetID":30515,"Directional":true}]},{"ID":5406,"SourceStructureID":142,"TargetStructureID":30567,"Label":"142-30567 via Ribbon Synapse from 32084 -> 32083, 126239 -> 126240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32084,"TargetID":32083,"Directional":true},{"SourceID":126239,"TargetID":126240,"Directional":true}]},{"ID":5407,"SourceStructureID":142,"TargetStructureID":34036,"Label":"142-34036 via Ribbon Synapse from 31793 -> 34041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31793,"TargetID":34041,"Directional":true}]},{"ID":5408,"SourceStructureID":142,"TargetStructureID":39968,"Label":"142-39968 via Ribbon Synapse from 125980 -> 125996","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125980,"TargetID":125996,"Directional":true}]},{"ID":5409,"SourceStructureID":142,"TargetStructureID":44346,"Label":"142-44346 via Ribbon Synapse from 44448 -> 44445, 87994 -> 44449, 87995 -> 44449, 87995 -> 87990, 87996 -> 87998, 119585 -> 44444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44448,"TargetID":44445,"Directional":true},{"SourceID":87994,"TargetID":44449,"Directional":true},{"SourceID":87995,"TargetID":44449,"Directional":true},{"SourceID":87995,"TargetID":87990,"Directional":true},{"SourceID":87996,"TargetID":87998,"Directional":true},{"SourceID":119585,"TargetID":44444,"Directional":true}]},{"ID":5410,"SourceStructureID":142,"TargetStructureID":64774,"Label":"142-64774 via Ribbon Synapse from 126132 -> 64776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126132,"TargetID":64776,"Directional":true}]},{"ID":5411,"SourceStructureID":142,"TargetStructureID":72879,"Label":"142-72879 via Ribbon Synapse from 35931 -> 72881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35931,"TargetID":72881,"Directional":true}]},{"ID":5412,"SourceStructureID":142,"TargetStructureID":82543,"Label":"142-82543 via Ribbon Synapse from 49753 -> 126241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49753,"TargetID":126241,"Directional":true}]},{"ID":5413,"SourceStructureID":142,"TargetStructureID":84946,"Label":"142-84946 via Ribbon Synapse from 30694 -> 126286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30694,"TargetID":126286,"Directional":true}]},{"ID":5414,"SourceStructureID":142,"TargetStructureID":86106,"Label":"142-86106 via Ribbon Synapse from 49746 -> 126182","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49746,"TargetID":126182,"Directional":true}]},{"ID":5415,"SourceStructureID":142,"TargetStructureID":86110,"Label":"142-86110 via Ribbon Synapse from 49762 -> 86126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49762,"TargetID":86126,"Directional":true}]},{"ID":5416,"SourceStructureID":142,"TargetStructureID":87972,"Label":"142-87972 via Ribbon Synapse from 44448 -> 87983, 87994 -> 87992, 119585 -> 125954","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44448,"TargetID":87983,"Directional":true},{"SourceID":87994,"TargetID":87992,"Directional":true},{"SourceID":119585,"TargetID":125954,"Directional":true}]},{"ID":5417,"SourceStructureID":142,"TargetStructureID":87999,"Label":"142-87999 via Ribbon Synapse from 87997 -> 88000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87997,"TargetID":88000,"Directional":true}]},{"ID":5418,"SourceStructureID":142,"TargetStructureID":88055,"Label":"142-88055 via Ribbon Synapse from 50124 -> 88057","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50124,"TargetID":88057,"Directional":true}]},{"ID":5419,"SourceStructureID":142,"TargetStructureID":92295,"Label":"142-92295 via Ribbon Synapse from 49692 -> 127678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49692,"TargetID":127678,"Directional":true}]},{"ID":5420,"SourceStructureID":142,"TargetStructureID":92434,"Label":"142-92434 via BC Conventional Synapse from 119572 -> 119570, 126167 -> 126369","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119572,"TargetID":119570,"Directional":true},{"SourceID":126167,"TargetID":126369,"Directional":true}]},{"ID":5421,"SourceStructureID":142,"TargetStructureID":92434,"Label":"142-92434 via Ribbon Synapse from 92442 -> 126370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92442,"TargetID":126370,"Directional":true}]},{"ID":5422,"SourceStructureID":142,"TargetStructureID":92445,"Label":"142-92445 via Unknown from 126160 -> 126159","Type":"Unknown","Directional":true,"Links":[{"SourceID":126160,"TargetID":126159,"Directional":true}]},{"ID":5423,"SourceStructureID":142,"TargetStructureID":92935,"Label":"142-92935 via Ribbon Synapse from 30704 -> 116793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30704,"TargetID":116793,"Directional":true}]},{"ID":5424,"SourceStructureID":142,"TargetStructureID":103964,"Label":"142-103964 via Ribbon Synapse from 126140 -> 126142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126140,"TargetID":126142,"Directional":true}]},{"ID":5425,"SourceStructureID":142,"TargetStructureID":104053,"Label":"142-104053 via Ribbon Synapse from 119568 -> 119567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119568,"TargetID":119567,"Directional":true}]},{"ID":5426,"SourceStructureID":142,"TargetStructureID":115195,"Label":"142-115195 via Ribbon Synapse from 31803 -> 115198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31803,"TargetID":115198,"Directional":true}]},{"ID":5427,"SourceStructureID":142,"TargetStructureID":125934,"Label":"142-125934 via Ribbon Synapse from 32016 -> 125935","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32016,"TargetID":125935,"Directional":true}]},{"ID":5428,"SourceStructureID":142,"TargetStructureID":127667,"Label":"142-127667 via Ribbon Synapse from 31775 -> 127668, 125980 -> 127671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31775,"TargetID":127668,"Directional":true},{"SourceID":125980,"TargetID":127671,"Directional":true}]},{"ID":5429,"SourceStructureID":142,"TargetStructureID":136728,"Label":"142-136728 via Ribbon Synapse from 92929 -> 136729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92929,"TargetID":136729,"Directional":true}]},{"ID":5430,"SourceStructureID":146,"TargetStructureID":425,"Label":"146-425 via Conventional from 22094 -> 22095","Type":"Conventional","Directional":true,"Links":[{"SourceID":22094,"TargetID":22095,"Directional":true}]},{"ID":5431,"SourceStructureID":161,"TargetStructureID":5377,"Label":"161-5377 via Ribbon Synapse from 22736 -> 22734, 87016 -> 87014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22736,"TargetID":22734,"Directional":true},{"SourceID":87016,"TargetID":87014,"Directional":true}]},{"ID":5432,"SourceStructureID":161,"TargetStructureID":7147,"Label":"161-7147 via Ribbon Synapse from 11766 -> 11769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11766,"TargetID":11769,"Directional":true}]},{"ID":5433,"SourceStructureID":161,"TargetStructureID":12897,"Label":"161-12897 via Ribbon Synapse from 22868 -> 22867, 35586 -> 22862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22868,"TargetID":22867,"Directional":true},{"SourceID":35586,"TargetID":22862,"Directional":true}]},{"ID":5434,"SourceStructureID":161,"TargetStructureID":43784,"Label":"161-43784 via Ribbon Synapse from 11780 -> 43788","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11780,"TargetID":43788,"Directional":true}]},{"ID":5435,"SourceStructureID":161,"TargetStructureID":77068,"Label":"161-77068 via Ribbon Synapse from 77072 -> 77071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77072,"TargetID":77071,"Directional":true}]},{"ID":5436,"SourceStructureID":162,"TargetStructureID":5118,"Label":"162-5118 via Conventional from 6435 -> 6434","Type":"Conventional","Directional":true,"Links":[{"SourceID":6435,"TargetID":6434,"Directional":true}]},{"ID":5437,"SourceStructureID":162,"TargetStructureID":6203,"Label":"162-6203 via Conventional from 52645 -> 125784","Type":"Conventional","Directional":true,"Links":[{"SourceID":52645,"TargetID":125784,"Directional":true}]},{"ID":5438,"SourceStructureID":162,"TargetStructureID":8580,"Label":"162-8580 via Conventional from 11865 -> 59777","Type":"Conventional","Directional":true,"Links":[{"SourceID":11865,"TargetID":59777,"Directional":true}]},{"ID":5439,"SourceStructureID":165,"TargetStructureID":5351,"Label":"165-5351 via Ribbon Synapse from 12544 -> 24067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12544,"TargetID":24067,"Directional":true}]},{"ID":5440,"SourceStructureID":165,"TargetStructureID":6169,"Label":"165-6169 via Ribbon Synapse from 12559 -> 20775","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12559,"TargetID":20775,"Directional":true}]},{"ID":5441,"SourceStructureID":165,"TargetStructureID":9787,"Label":"165-9787 via Ribbon Synapse from 12506 -> 12068, 12507 -> 12068, 12586 -> 18052, 21681 -> 21682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12506,"TargetID":12068,"Directional":true},{"SourceID":12507,"TargetID":12068,"Directional":true},{"SourceID":12586,"TargetID":18052,"Directional":true},{"SourceID":21681,"TargetID":21682,"Directional":true}]},{"ID":5442,"SourceStructureID":165,"TargetStructureID":12210,"Label":"165-12210 via Ribbon Synapse from 12209 -> 12211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12209,"TargetID":12211,"Directional":true}]},{"ID":5443,"SourceStructureID":165,"TargetStructureID":12492,"Label":"165-12492 via Ribbon Synapse from 7095 -> 12499, 12489 -> 12499, 12490 -> 12499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7095,"TargetID":12499,"Directional":true},{"SourceID":12489,"TargetID":12499,"Directional":true},{"SourceID":12490,"TargetID":12499,"Directional":true}]},{"ID":5444,"SourceStructureID":165,"TargetStructureID":34336,"Label":"165-34336 via Ribbon Synapse from 12503 -> 34382, 12530 -> 34381, 12531 -> 34381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12503,"TargetID":34382,"Directional":true},{"SourceID":12530,"TargetID":34381,"Directional":true},{"SourceID":12531,"TargetID":34381,"Directional":true}]},{"ID":5445,"SourceStructureID":165,"TargetStructureID":46741,"Label":"165-46741 via Ribbon Synapse from 20863 -> 136949, 21664 -> 136958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20863,"TargetID":136949,"Directional":true},{"SourceID":21664,"TargetID":136958,"Directional":true}]},{"ID":5446,"SourceStructureID":165,"TargetStructureID":132202,"Label":"165-132202 via Ribbon Synapse from 12554 -> 132204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12554,"TargetID":132204,"Directional":true}]},{"ID":5447,"SourceStructureID":166,"TargetStructureID":390,"Label":"166-390 via Ribbon Synapse from 65224 -> 65223, 94748 -> 65220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65224,"TargetID":65223,"Directional":true},{"SourceID":94748,"TargetID":65220,"Directional":true}]},{"ID":5448,"SourceStructureID":166,"TargetStructureID":1620,"Label":"166-1620 via Ribbon Synapse from 4366 -> 16859, 4374 -> 101155, 16863 -> 16862, 20626 -> 16887, 20627 -> 16870","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4366,"TargetID":16859,"Directional":true},{"SourceID":4374,"TargetID":101155,"Directional":true},{"SourceID":16863,"TargetID":16862,"Directional":true},{"SourceID":20626,"TargetID":16887,"Directional":true},{"SourceID":20627,"TargetID":16870,"Directional":true}]},{"ID":5449,"SourceStructureID":166,"TargetStructureID":4890,"Label":"166-4890 via Ribbon Synapse from 4431 -> 5329, 5792 -> 5793, 5839 -> 4920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4431,"TargetID":5329,"Directional":true},{"SourceID":5792,"TargetID":5793,"Directional":true},{"SourceID":5839,"TargetID":4920,"Directional":true}]},{"ID":5450,"SourceStructureID":166,"TargetStructureID":5437,"Label":"166-5437 via Ribbon Synapse from 4434 -> 88062, 4439 -> 88064, 101163 -> 101162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4434,"TargetID":88062,"Directional":true},{"SourceID":4439,"TargetID":88064,"Directional":true},{"SourceID":101163,"TargetID":101162,"Directional":true}]},{"ID":5451,"SourceStructureID":166,"TargetStructureID":5439,"Label":"166-5439 via Ribbon Synapse from 39360 -> 70799, 70812 -> 70813, 71452 -> 71443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39360,"TargetID":70799,"Directional":true},{"SourceID":70812,"TargetID":70813,"Directional":true},{"SourceID":71452,"TargetID":71443,"Directional":true}]},{"ID":5452,"SourceStructureID":166,"TargetStructureID":5794,"Label":"166-5794 via Ribbon Synapse from 5766 -> 5809, 5791 -> 5795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5766,"TargetID":5809,"Directional":true},{"SourceID":5791,"TargetID":5795,"Directional":true}]},{"ID":5453,"SourceStructureID":166,"TargetStructureID":5919,"Label":"166-5919 via Ribbon Synapse from 4126 -> 5921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4126,"TargetID":5921,"Directional":true}]},{"ID":5454,"SourceStructureID":166,"TargetStructureID":6857,"Label":"166-6857 via BC Conventional Synapse from 71342 -> 71343","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71342,"TargetID":71343,"Directional":true}]},{"ID":5455,"SourceStructureID":166,"TargetStructureID":6857,"Label":"166-6857 via Ribbon Synapse from 39006 -> 39007","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39006,"TargetID":39007,"Directional":true}]},{"ID":5456,"SourceStructureID":166,"TargetStructureID":8579,"Label":"166-8579 via Ribbon Synapse from 19814 -> 19812, 19817 -> 19815, 19826 -> 19823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19814,"TargetID":19812,"Directional":true},{"SourceID":19817,"TargetID":19815,"Directional":true},{"SourceID":19826,"TargetID":19823,"Directional":true}]},{"ID":5457,"SourceStructureID":166,"TargetStructureID":8720,"Label":"166-8720 via Ribbon Synapse from 4498 -> 59976","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4498,"TargetID":59976,"Directional":true}]},{"ID":5458,"SourceStructureID":166,"TargetStructureID":16087,"Label":"166-16087 via Ribbon Synapse from 4378 -> 23106, 4409 -> 23107, 5797 -> 16088, 59886 -> 59885, 59895 -> 59894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4378,"TargetID":23106,"Directional":true},{"SourceID":4409,"TargetID":23107,"Directional":true},{"SourceID":5797,"TargetID":16088,"Directional":true},{"SourceID":59886,"TargetID":59885,"Directional":true},{"SourceID":59895,"TargetID":59894,"Directional":true}]},{"ID":5459,"SourceStructureID":166,"TargetStructureID":29198,"Label":"166-29198 via Ribbon Synapse from 71486 -> 29218, 71851 -> 29216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71486,"TargetID":29218,"Directional":true},{"SourceID":71851,"TargetID":29216,"Directional":true}]},{"ID":5460,"SourceStructureID":166,"TargetStructureID":29702,"Label":"166-29702 via Ribbon Synapse from 72573 -> 72572, 72621 -> 72619","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72573,"TargetID":72572,"Directional":true},{"SourceID":72621,"TargetID":72619,"Directional":true}]},{"ID":5461,"SourceStructureID":166,"TargetStructureID":30518,"Label":"166-30518 via Ribbon Synapse from 30522 -> 30520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30522,"TargetID":30520,"Directional":true}]},{"ID":5462,"SourceStructureID":166,"TargetStructureID":30526,"Label":"166-30526 via Ribbon Synapse from 4126 -> 30536, 23622 -> 30536, 23624 -> 30536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4126,"TargetID":30536,"Directional":true},{"SourceID":23622,"TargetID":30536,"Directional":true},{"SourceID":23624,"TargetID":30536,"Directional":true}]},{"ID":5463,"SourceStructureID":166,"TargetStructureID":32970,"Label":"166-32970 via Ribbon Synapse from 4421 -> 32986, 4423 -> 32985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4421,"TargetID":32986,"Directional":true},{"SourceID":4423,"TargetID":32985,"Directional":true}]},{"ID":5464,"SourceStructureID":166,"TargetStructureID":35222,"Label":"166-35222 via Ribbon Synapse from 35231 -> 35226","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35231,"TargetID":35226,"Directional":true}]},{"ID":5465,"SourceStructureID":166,"TargetStructureID":39345,"Label":"166-39345 via Ribbon Synapse from 4470 -> 39347, 4530 -> 66718, 39010 -> 39356, 39351 -> 39349, 39355 -> 39354, 39360 -> 39359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4470,"TargetID":39347,"Directional":true},{"SourceID":4530,"TargetID":66718,"Directional":true},{"SourceID":39010,"TargetID":39356,"Directional":true},{"SourceID":39351,"TargetID":39349,"Directional":true},{"SourceID":39355,"TargetID":39354,"Directional":true},{"SourceID":39360,"TargetID":39359,"Directional":true}]},{"ID":5466,"SourceStructureID":166,"TargetStructureID":39596,"Label":"166-39596 via Ribbon Synapse from 4427 -> 39599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4427,"TargetID":39599,"Directional":true}]},{"ID":5467,"SourceStructureID":166,"TargetStructureID":39602,"Label":"166-39602 via Ribbon Synapse from 39606 -> 39604","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39606,"TargetID":39604,"Directional":true}]},{"ID":5468,"SourceStructureID":166,"TargetStructureID":39615,"Label":"166-39615 via Ribbon Synapse from 4376 -> 39646, 4454 -> 39630, 4521 -> 39635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4376,"TargetID":39646,"Directional":true},{"SourceID":4454,"TargetID":39630,"Directional":true},{"SourceID":4521,"TargetID":39635,"Directional":true}]},{"ID":5469,"SourceStructureID":166,"TargetStructureID":39717,"Label":"166-39717 via Ribbon Synapse from 39723 -> 39722","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39723,"TargetID":39722,"Directional":true}]},{"ID":5470,"SourceStructureID":166,"TargetStructureID":56822,"Label":"166-56822 via Ribbon Synapse from 4554 -> 56823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4554,"TargetID":56823,"Directional":true}]},{"ID":5471,"SourceStructureID":166,"TargetStructureID":58696,"Label":"166-58696 via BC Conventional Synapse from 84810 -> 84811","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84810,"TargetID":84811,"Directional":true}]},{"ID":5472,"SourceStructureID":166,"TargetStructureID":58696,"Label":"166-58696 via Ribbon Synapse from 4494 -> 66721, 58707 -> 58706, 60006 -> 66711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4494,"TargetID":66721,"Directional":true},{"SourceID":58707,"TargetID":58706,"Directional":true},{"SourceID":60006,"TargetID":66711,"Directional":true}]},{"ID":5473,"SourceStructureID":166,"TargetStructureID":66278,"Label":"166-66278 via Ribbon Synapse from 28580 -> 81897, 60028 -> 66293, 81907 -> 81908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28580,"TargetID":81897,"Directional":true},{"SourceID":60028,"TargetID":66293,"Directional":true},{"SourceID":81907,"TargetID":81908,"Directional":true}]},{"ID":5474,"SourceStructureID":166,"TargetStructureID":66634,"Label":"166-66634 via Ribbon Synapse from 71339 -> 71340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71339,"TargetID":71340,"Directional":true}]},{"ID":5475,"SourceStructureID":166,"TargetStructureID":66713,"Label":"166-66713 via Ribbon Synapse from 60006 -> 66714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60006,"TargetID":66714,"Directional":true}]},{"ID":5476,"SourceStructureID":166,"TargetStructureID":69899,"Label":"166-69899 via Ribbon Synapse from 69898 -> 69900","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69898,"TargetID":69900,"Directional":true}]},{"ID":5477,"SourceStructureID":166,"TargetStructureID":69902,"Label":"166-69902 via Ribbon Synapse from 69901 -> 69903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69901,"TargetID":69903,"Directional":true}]},{"ID":5478,"SourceStructureID":166,"TargetStructureID":70572,"Label":"166-70572 via Ribbon Synapse from 39006 -> 70788","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39006,"TargetID":70788,"Directional":true}]},{"ID":5479,"SourceStructureID":166,"TargetStructureID":70577,"Label":"166-70577 via Ribbon Synapse from 70579 -> 70580","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70579,"TargetID":70580,"Directional":true}]},{"ID":5480,"SourceStructureID":166,"TargetStructureID":71351,"Label":"166-71351 via Ribbon Synapse from 4460 -> 71903, 60013 -> 71901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4460,"TargetID":71903,"Directional":true},{"SourceID":60013,"TargetID":71901,"Directional":true}]},{"ID":5481,"SourceStructureID":166,"TargetStructureID":71429,"Label":"166-71429 via BC Conventional Synapse from 71440 -> 71441","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71440,"TargetID":71441,"Directional":true}]},{"ID":5482,"SourceStructureID":166,"TargetStructureID":71445,"Label":"166-71445 via Ribbon Synapse from 71452 -> 71453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71452,"TargetID":71453,"Directional":true}]},{"ID":5483,"SourceStructureID":166,"TargetStructureID":71454,"Label":"166-71454 via Ribbon Synapse from 71452 -> 71455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71452,"TargetID":71455,"Directional":true}]},{"ID":5484,"SourceStructureID":166,"TargetStructureID":75939,"Label":"166-75939 via Ribbon Synapse from 72620 -> 75940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72620,"TargetID":75940,"Directional":true}]},{"ID":5485,"SourceStructureID":166,"TargetStructureID":88082,"Label":"166-88082 via Ribbon Synapse from 88099 -> 88098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88099,"TargetID":88098,"Directional":true}]},{"ID":5486,"SourceStructureID":166,"TargetStructureID":101156,"Label":"166-101156 via Ribbon Synapse from 4374 -> 101157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4374,"TargetID":101157,"Directional":true}]},{"ID":5487,"SourceStructureID":166,"TargetStructureID":116581,"Label":"166-116581 via Ribbon Synapse from 4454 -> 116582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4454,"TargetID":116582,"Directional":true}]},{"ID":5488,"SourceStructureID":166,"TargetStructureID":123322,"Label":"166-123322 via BC Conventional Synapse from 123321 -> 123323","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123321,"TargetID":123323,"Directional":true}]},{"ID":5489,"SourceStructureID":166,"TargetStructureID":125981,"Label":"166-125981 via Ribbon Synapse from 4448 -> 39969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4448,"TargetID":39969,"Directional":true}]},{"ID":5490,"SourceStructureID":168,"TargetStructureID":606,"Label":"168-606 via Ribbon Synapse from 4185 -> 53384, 33417 -> 53382, 44415 -> 53517, 53388 -> 53389, 53484 -> 53485","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4185,"TargetID":53384,"Directional":true},{"SourceID":33417,"TargetID":53382,"Directional":true},{"SourceID":44415,"TargetID":53517,"Directional":true},{"SourceID":53388,"TargetID":53389,"Directional":true},{"SourceID":53484,"TargetID":53485,"Directional":true}]},{"ID":5491,"SourceStructureID":168,"TargetStructureID":906,"Label":"168-906 via Cistern Pre from 12453 -> 27449","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":12453,"TargetID":27449,"Directional":true}]},{"ID":5492,"SourceStructureID":168,"TargetStructureID":3257,"Label":"168-3257 via BC Conventional Synapse from 119580 -> 119579","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119580,"TargetID":119579,"Directional":true}]},{"ID":5493,"SourceStructureID":168,"TargetStructureID":3257,"Label":"168-3257 via Cistern Pre from 39084 -> 39085","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":39084,"TargetID":39085,"Directional":true}]},{"ID":5494,"SourceStructureID":168,"TargetStructureID":5487,"Label":"168-5487 via BC Conventional Synapse from 126387 -> 126386","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":126387,"TargetID":126386,"Directional":true}]},{"ID":5495,"SourceStructureID":168,"TargetStructureID":5487,"Label":"168-5487 via Ribbon Synapse from 4148 -> 126388, 4185 -> 34597, 4196 -> 34596, 4206 -> 34598, 29842 -> 29843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4148,"TargetID":126388,"Directional":true},{"SourceID":4185,"TargetID":34597,"Directional":true},{"SourceID":4196,"TargetID":34596,"Directional":true},{"SourceID":4206,"TargetID":34598,"Directional":true},{"SourceID":29842,"TargetID":29843,"Directional":true}]},{"ID":5496,"SourceStructureID":168,"TargetStructureID":5489,"Label":"168-5489 via BC Conventional Synapse from 119043 -> 119042","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119043,"TargetID":119042,"Directional":true}]},{"ID":5497,"SourceStructureID":168,"TargetStructureID":7576,"Label":"168-7576 via Ribbon Synapse from 4304 -> 54842, 50946 -> 54834, 55007 -> 55006, 55011 -> 55009","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4304,"TargetID":54842,"Directional":true},{"SourceID":50946,"TargetID":54834,"Directional":true},{"SourceID":55007,"TargetID":55006,"Directional":true},{"SourceID":55011,"TargetID":55009,"Directional":true}]},{"ID":5498,"SourceStructureID":168,"TargetStructureID":34055,"Label":"168-34055 via Ribbon Synapse from 4228 -> 34086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4228,"TargetID":34086,"Directional":true}]},{"ID":5499,"SourceStructureID":168,"TargetStructureID":40444,"Label":"168-40444 via Ribbon Synapse from 40443 -> 40445","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40443,"TargetID":40445,"Directional":true}]},{"ID":5500,"SourceStructureID":168,"TargetStructureID":44346,"Label":"168-44346 via Ribbon Synapse from 44415 -> 44413, 44426 -> 44425","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44415,"TargetID":44413,"Directional":true},{"SourceID":44426,"TargetID":44425,"Directional":true}]},{"ID":5501,"SourceStructureID":168,"TargetStructureID":54958,"Label":"168-54958 via Ribbon Synapse from 29841 -> 54960","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29841,"TargetID":54960,"Directional":true}]},{"ID":5502,"SourceStructureID":168,"TargetStructureID":81916,"Label":"168-81916 via Ribbon Synapse from 81918 -> 81961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81918,"TargetID":81961,"Directional":true}]},{"ID":5503,"SourceStructureID":168,"TargetStructureID":81919,"Label":"168-81919 via Ribbon Synapse from 81918 -> 81920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81918,"TargetID":81920,"Directional":true}]},{"ID":5504,"SourceStructureID":168,"TargetStructureID":81921,"Label":"168-81921 via Ribbon Synapse from 81918 -> 81958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81918,"TargetID":81958,"Directional":true}]},{"ID":5505,"SourceStructureID":168,"TargetStructureID":81925,"Label":"168-81925 via BC Conventional Synapse from 81971 -> 81972","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81971,"TargetID":81972,"Directional":true}]},{"ID":5506,"SourceStructureID":168,"TargetStructureID":81925,"Label":"168-81925 via Ribbon Synapse from 81967 -> 81970","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81967,"TargetID":81970,"Directional":true}]},{"ID":5507,"SourceStructureID":168,"TargetStructureID":81946,"Label":"168-81946 via BC Conventional Synapse from 82221 -> 82222","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":82221,"TargetID":82222,"Directional":true}]},{"ID":5508,"SourceStructureID":168,"TargetStructureID":81968,"Label":"168-81968 via Ribbon Synapse from 81967 -> 81969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81967,"TargetID":81969,"Directional":true}]},{"ID":5509,"SourceStructureID":168,"TargetStructureID":81989,"Label":"168-81989 via Ribbon Synapse from 4294 -> 81994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4294,"TargetID":81994,"Directional":true}]},{"ID":5510,"SourceStructureID":168,"TargetStructureID":81990,"Label":"168-81990 via Ribbon Synapse from 4294 -> 81993","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4294,"TargetID":81993,"Directional":true}]},{"ID":5511,"SourceStructureID":168,"TargetStructureID":81991,"Label":"168-81991 via Ribbon Synapse from 4289 -> 82225, 4294 -> 81992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4289,"TargetID":82225,"Directional":true},{"SourceID":4294,"TargetID":81992,"Directional":true}]},{"ID":5512,"SourceStructureID":168,"TargetStructureID":82217,"Label":"168-82217 via Ribbon Synapse from 82215 -> 82218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82215,"TargetID":82218,"Directional":true}]},{"ID":5513,"SourceStructureID":168,"TargetStructureID":91178,"Label":"168-91178 via BC Conventional Synapse from 91751 -> 91750","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91751,"TargetID":91750,"Directional":true}]},{"ID":5514,"SourceStructureID":168,"TargetStructureID":91593,"Label":"168-91593 via Ribbon Synapse from 4270 -> 91598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4270,"TargetID":91598,"Directional":true}]},{"ID":5515,"SourceStructureID":168,"TargetStructureID":91742,"Label":"168-91742 via Ribbon Synapse from 92773 -> 92774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92773,"TargetID":92774,"Directional":true}]},{"ID":5516,"SourceStructureID":168,"TargetStructureID":112211,"Label":"168-112211 via Ribbon Synapse from 4306 -> 112212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4306,"TargetID":112212,"Directional":true}]},{"ID":5517,"SourceStructureID":170,"TargetStructureID":606,"Label":"170-606 via Ribbon Synapse from 1411 -> 53327, 1422 -> 53201, 47805 -> 47806, 53348 -> 53347, 53354 -> 53347, 53358 -> 53357","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1411,"TargetID":53327,"Directional":true},{"SourceID":1422,"TargetID":53201,"Directional":true},{"SourceID":47805,"TargetID":47806,"Directional":true},{"SourceID":53348,"TargetID":53347,"Directional":true},{"SourceID":53354,"TargetID":53347,"Directional":true},{"SourceID":53358,"TargetID":53357,"Directional":true}]},{"ID":5518,"SourceStructureID":170,"TargetStructureID":5481,"Label":"170-5481 via Ribbon Synapse from 39515 -> 90247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39515,"TargetID":90247,"Directional":true}]},{"ID":5519,"SourceStructureID":170,"TargetStructureID":9769,"Label":"170-9769 via Ribbon Synapse from 1222 -> 29844, 1224 -> 54957, 1228 -> 29845, 1314 -> 29825, 1315 -> 89730, 88757 -> 88758","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1222,"TargetID":29844,"Directional":true},{"SourceID":1224,"TargetID":54957,"Directional":true},{"SourceID":1228,"TargetID":29845,"Directional":true},{"SourceID":1314,"TargetID":29825,"Directional":true},{"SourceID":1315,"TargetID":89730,"Directional":true},{"SourceID":88757,"TargetID":88758,"Directional":true}]},{"ID":5520,"SourceStructureID":170,"TargetStructureID":18693,"Label":"170-18693 via Ribbon Synapse from 1244 -> 89744, 1252 -> 89745, 89490 -> 89491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1244,"TargetID":89744,"Directional":true},{"SourceID":1252,"TargetID":89745,"Directional":true},{"SourceID":89490,"TargetID":89491,"Directional":true}]},{"ID":5521,"SourceStructureID":170,"TargetStructureID":23512,"Label":"170-23512 via Ribbon Synapse from 1290 -> 23533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1290,"TargetID":23533,"Directional":true}]},{"ID":5522,"SourceStructureID":170,"TargetStructureID":29827,"Label":"170-29827 via Ribbon Synapse from 1294 -> 29828, 1315 -> 89724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1294,"TargetID":29828,"Directional":true},{"SourceID":1315,"TargetID":89724,"Directional":true}]},{"ID":5523,"SourceStructureID":170,"TargetStructureID":32920,"Label":"170-32920 via Ribbon Synapse from 1224 -> 32922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1224,"TargetID":32922,"Directional":true}]},{"ID":5524,"SourceStructureID":170,"TargetStructureID":33675,"Label":"170-33675 via Ribbon Synapse from 28368 -> 33678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28368,"TargetID":33678,"Directional":true}]},{"ID":5525,"SourceStructureID":170,"TargetStructureID":38949,"Label":"170-38949 via Ribbon Synapse from 1331 -> 39032","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1331,"TargetID":39032,"Directional":true}]},{"ID":5526,"SourceStructureID":170,"TargetStructureID":51617,"Label":"170-51617 via Ribbon Synapse from 89205 -> 89862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89205,"TargetID":89862,"Directional":true}]},{"ID":5527,"SourceStructureID":170,"TargetStructureID":71882,"Label":"170-71882 via Ribbon Synapse from 1272 -> 90439, 1359 -> 90410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1272,"TargetID":90439,"Directional":true},{"SourceID":1359,"TargetID":90410,"Directional":true}]},{"ID":5528,"SourceStructureID":170,"TargetStructureID":74727,"Label":"170-74727 via Ribbon Synapse from 147492 -> 147493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147492,"TargetID":147493,"Directional":true}]},{"ID":5529,"SourceStructureID":170,"TargetStructureID":88367,"Label":"170-88367 via Ribbon Synapse from 1144 -> 88369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1144,"TargetID":88369,"Directional":true}]},{"ID":5530,"SourceStructureID":170,"TargetStructureID":88424,"Label":"170-88424 via Ribbon Synapse from 1215 -> 88428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1215,"TargetID":88428,"Directional":true}]},{"ID":5531,"SourceStructureID":170,"TargetStructureID":88457,"Label":"170-88457 via Ribbon Synapse from 1222 -> 88458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1222,"TargetID":88458,"Directional":true}]},{"ID":5532,"SourceStructureID":170,"TargetStructureID":88479,"Label":"170-88479 via Ribbon Synapse from 1228 -> 88481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1228,"TargetID":88481,"Directional":true}]},{"ID":5533,"SourceStructureID":170,"TargetStructureID":88559,"Label":"170-88559 via Ribbon Synapse from 1230 -> 88560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1230,"TargetID":88560,"Directional":true}]},{"ID":5534,"SourceStructureID":170,"TargetStructureID":88584,"Label":"170-88584 via BC Conventional Synapse from 88592 -> 88593","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":88592,"TargetID":88593,"Directional":true}]},{"ID":5535,"SourceStructureID":170,"TargetStructureID":88689,"Label":"170-88689 via Ribbon Synapse from 1237 -> 88707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1237,"TargetID":88707,"Directional":true}]},{"ID":5536,"SourceStructureID":170,"TargetStructureID":88692,"Label":"170-88692 via Ribbon Synapse from 28364 -> 88697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28364,"TargetID":88697,"Directional":true}]},{"ID":5537,"SourceStructureID":170,"TargetStructureID":88702,"Label":"170-88702 via Ribbon Synapse from 1234 -> 88704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1234,"TargetID":88704,"Directional":true}]},{"ID":5538,"SourceStructureID":170,"TargetStructureID":88717,"Label":"170-88717 via Ribbon Synapse from 1244 -> 89518, 1252 -> 89519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1244,"TargetID":89518,"Directional":true},{"SourceID":1252,"TargetID":89519,"Directional":true}]},{"ID":5539,"SourceStructureID":170,"TargetStructureID":88747,"Label":"170-88747 via Ribbon Synapse from 88751 -> 88752","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88751,"TargetID":88752,"Directional":true}]},{"ID":5540,"SourceStructureID":170,"TargetStructureID":88759,"Label":"170-88759 via Ribbon Synapse from 88757 -> 88760","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88757,"TargetID":88760,"Directional":true}]},{"ID":5541,"SourceStructureID":170,"TargetStructureID":88775,"Label":"170-88775 via BC Conventional Synapse from 88779 -> 88776","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":88779,"TargetID":88776,"Directional":true}]},{"ID":5542,"SourceStructureID":170,"TargetStructureID":88793,"Label":"170-88793 via Ribbon Synapse from 88794 -> 88795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88794,"TargetID":88795,"Directional":true}]},{"ID":5543,"SourceStructureID":170,"TargetStructureID":88797,"Label":"170-88797 via Ribbon Synapse from 88794 -> 88798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88794,"TargetID":88798,"Directional":true}]},{"ID":5544,"SourceStructureID":170,"TargetStructureID":88810,"Label":"170-88810 via Ribbon Synapse from 1365 -> 88811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1365,"TargetID":88811,"Directional":true}]},{"ID":5545,"SourceStructureID":170,"TargetStructureID":88817,"Label":"170-88817 via Ribbon Synapse from 1338 -> 88821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1338,"TargetID":88821,"Directional":true}]},{"ID":5546,"SourceStructureID":170,"TargetStructureID":88945,"Label":"170-88945 via Ribbon Synapse from 1345 -> 88949, 28374 -> 88946, 28375 -> 88949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1345,"TargetID":88949,"Directional":true},{"SourceID":28374,"TargetID":88946,"Directional":true},{"SourceID":28375,"TargetID":88949,"Directional":true}]},{"ID":5547,"SourceStructureID":170,"TargetStructureID":88947,"Label":"170-88947 via Ribbon Synapse from 1344 -> 88960, 28375 -> 88948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1344,"TargetID":88960,"Directional":true},{"SourceID":28375,"TargetID":88948,"Directional":true}]},{"ID":5548,"SourceStructureID":170,"TargetStructureID":88986,"Label":"170-88986 via Ribbon Synapse from 1342 -> 88991","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1342,"TargetID":88991,"Directional":true}]},{"ID":5549,"SourceStructureID":170,"TargetStructureID":88988,"Label":"170-88988 via Ribbon Synapse from 1342 -> 88992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1342,"TargetID":88992,"Directional":true}]},{"ID":5550,"SourceStructureID":170,"TargetStructureID":89008,"Label":"170-89008 via Ribbon Synapse from 89007 -> 89010","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89007,"TargetID":89010,"Directional":true}]},{"ID":5551,"SourceStructureID":170,"TargetStructureID":89034,"Label":"170-89034 via Ribbon Synapse from 1347 -> 89035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1347,"TargetID":89035,"Directional":true}]},{"ID":5552,"SourceStructureID":170,"TargetStructureID":89078,"Label":"170-89078 via Ribbon Synapse from 985 -> 89079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":985,"TargetID":89079,"Directional":true}]},{"ID":5553,"SourceStructureID":170,"TargetStructureID":89086,"Label":"170-89086 via Ribbon Synapse from 28368 -> 89156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28368,"TargetID":89156,"Directional":true}]},{"ID":5554,"SourceStructureID":170,"TargetStructureID":89175,"Label":"170-89175 via Ribbon Synapse from 1263 -> 89495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1263,"TargetID":89495,"Directional":true}]},{"ID":5555,"SourceStructureID":170,"TargetStructureID":89217,"Label":"170-89217 via Ribbon Synapse from 1351 -> 89218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1351,"TargetID":89218,"Directional":true}]},{"ID":5556,"SourceStructureID":170,"TargetStructureID":89246,"Label":"170-89246 via Ribbon Synapse from 1278 -> 89247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1278,"TargetID":89247,"Directional":true}]},{"ID":5557,"SourceStructureID":170,"TargetStructureID":89359,"Label":"170-89359 via Ribbon Synapse from 1279 -> 89360","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1279,"TargetID":89360,"Directional":true}]},{"ID":5558,"SourceStructureID":170,"TargetStructureID":89367,"Label":"170-89367 via Ribbon Synapse from 89371 -> 89368","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89371,"TargetID":89368,"Directional":true}]},{"ID":5559,"SourceStructureID":170,"TargetStructureID":89377,"Label":"170-89377 via Ribbon Synapse from 89376 -> 89379, 89382 -> 89383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89376,"TargetID":89379,"Directional":true},{"SourceID":89382,"TargetID":89383,"Directional":true}]},{"ID":5560,"SourceStructureID":170,"TargetStructureID":89400,"Label":"170-89400 via Ribbon Synapse from 89401 -> 89403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89401,"TargetID":89403,"Directional":true}]},{"ID":5561,"SourceStructureID":170,"TargetStructureID":89402,"Label":"170-89402 via Ribbon Synapse from 89401 -> 89404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89401,"TargetID":89404,"Directional":true}]},{"ID":5562,"SourceStructureID":170,"TargetStructureID":89407,"Label":"170-89407 via Ribbon Synapse from 89406 -> 89408","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89406,"TargetID":89408,"Directional":true}]},{"ID":5563,"SourceStructureID":170,"TargetStructureID":89417,"Label":"170-89417 via Ribbon Synapse from 1283 -> 89418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1283,"TargetID":89418,"Directional":true}]},{"ID":5564,"SourceStructureID":170,"TargetStructureID":89472,"Label":"170-89472 via Ribbon Synapse from 1285 -> 89473, 1288 -> 89474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1285,"TargetID":89473,"Directional":true},{"SourceID":1288,"TargetID":89474,"Directional":true}]},{"ID":5565,"SourceStructureID":170,"TargetStructureID":89475,"Label":"170-89475 via Ribbon Synapse from 1288 -> 89476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1288,"TargetID":89476,"Directional":true}]},{"ID":5566,"SourceStructureID":170,"TargetStructureID":89496,"Label":"170-89496 via Ribbon Synapse from 1263 -> 89497, 1275 -> 90052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1263,"TargetID":89497,"Directional":true},{"SourceID":1275,"TargetID":90052,"Directional":true}]},{"ID":5567,"SourceStructureID":170,"TargetStructureID":89669,"Label":"170-89669 via Ribbon Synapse from 1298 -> 89671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1298,"TargetID":89671,"Directional":true}]},{"ID":5568,"SourceStructureID":170,"TargetStructureID":89687,"Label":"170-89687 via Ribbon Synapse from 1301 -> 89689, 89686 -> 89688","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1301,"TargetID":89689,"Directional":true},{"SourceID":89686,"TargetID":89688,"Directional":true}]},{"ID":5569,"SourceStructureID":170,"TargetStructureID":89698,"Label":"170-89698 via Ribbon Synapse from 1301 -> 89700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1301,"TargetID":89700,"Directional":true}]},{"ID":5570,"SourceStructureID":170,"TargetStructureID":89739,"Label":"170-89739 via BC Conventional Synapse from 89740 -> 89741","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":89740,"TargetID":89741,"Directional":true}]},{"ID":5571,"SourceStructureID":170,"TargetStructureID":89855,"Label":"170-89855 via Ribbon Synapse from 89205 -> 89861","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89205,"TargetID":89861,"Directional":true}]},{"ID":5572,"SourceStructureID":170,"TargetStructureID":89888,"Label":"170-89888 via Ribbon Synapse from 89206 -> 89889","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89206,"TargetID":89889,"Directional":true}]},{"ID":5573,"SourceStructureID":170,"TargetStructureID":89935,"Label":"170-89935 via Ribbon Synapse from 89933 -> 89940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89933,"TargetID":89940,"Directional":true}]},{"ID":5574,"SourceStructureID":170,"TargetStructureID":89985,"Label":"170-89985 via Ribbon Synapse from 89986 -> 89987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89986,"TargetID":89987,"Directional":true}]},{"ID":5575,"SourceStructureID":170,"TargetStructureID":90047,"Label":"170-90047 via Ribbon Synapse from 28370 -> 90060, 28373 -> 90085","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28370,"TargetID":90060,"Directional":true},{"SourceID":28373,"TargetID":90085,"Directional":true}]},{"ID":5576,"SourceStructureID":170,"TargetStructureID":90053,"Label":"170-90053 via Ribbon Synapse from 1272 -> 90058, 1275 -> 90057, 28373 -> 90086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1272,"TargetID":90058,"Directional":true},{"SourceID":1275,"TargetID":90057,"Directional":true},{"SourceID":28373,"TargetID":90086,"Directional":true}]},{"ID":5577,"SourceStructureID":170,"TargetStructureID":90061,"Label":"170-90061 via Ribbon Synapse from 28370 -> 90062","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28370,"TargetID":90062,"Directional":true}]},{"ID":5578,"SourceStructureID":170,"TargetStructureID":90077,"Label":"170-90077 via Ribbon Synapse from 28372 -> 90081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28372,"TargetID":90081,"Directional":true}]},{"ID":5579,"SourceStructureID":170,"TargetStructureID":90078,"Label":"170-90078 via Ribbon Synapse from 28372 -> 90082","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28372,"TargetID":90082,"Directional":true}]},{"ID":5580,"SourceStructureID":170,"TargetStructureID":90079,"Label":"170-90079 via Ribbon Synapse from 28372 -> 90080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28372,"TargetID":90080,"Directional":true}]},{"ID":5581,"SourceStructureID":170,"TargetStructureID":90241,"Label":"170-90241 via Ribbon Synapse from 39515 -> 90242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39515,"TargetID":90242,"Directional":true}]},{"ID":5582,"SourceStructureID":170,"TargetStructureID":90248,"Label":"170-90248 via Ribbon Synapse from 1278 -> 90249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1278,"TargetID":90249,"Directional":true}]},{"ID":5583,"SourceStructureID":170,"TargetStructureID":90258,"Label":"170-90258 via Ribbon Synapse from 90257 -> 90259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90257,"TargetID":90259,"Directional":true}]},{"ID":5584,"SourceStructureID":170,"TargetStructureID":90260,"Label":"170-90260 via Ribbon Synapse from 90257 -> 90261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90257,"TargetID":90261,"Directional":true}]},{"ID":5585,"SourceStructureID":170,"TargetStructureID":90269,"Label":"170-90269 via Ribbon Synapse from 53354 -> 90270","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53354,"TargetID":90270,"Directional":true}]},{"ID":5586,"SourceStructureID":170,"TargetStructureID":90273,"Label":"170-90273 via Ribbon Synapse from 90272 -> 90277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90272,"TargetID":90277,"Directional":true}]},{"ID":5587,"SourceStructureID":170,"TargetStructureID":90278,"Label":"170-90278 via Ribbon Synapse from 90272 -> 90279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90272,"TargetID":90279,"Directional":true}]},{"ID":5588,"SourceStructureID":170,"TargetStructureID":90287,"Label":"170-90287 via Ribbon Synapse from 90286 -> 90288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90286,"TargetID":90288,"Directional":true}]},{"ID":5589,"SourceStructureID":170,"TargetStructureID":90296,"Label":"170-90296 via Ribbon Synapse from 90307 -> 90308","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90307,"TargetID":90308,"Directional":true}]},{"ID":5590,"SourceStructureID":170,"TargetStructureID":90309,"Label":"170-90309 via Ribbon Synapse from 90307 -> 90310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90307,"TargetID":90310,"Directional":true}]},{"ID":5591,"SourceStructureID":170,"TargetStructureID":90327,"Label":"170-90327 via Ribbon Synapse from 53358 -> 90329","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53358,"TargetID":90329,"Directional":true}]},{"ID":5592,"SourceStructureID":170,"TargetStructureID":90330,"Label":"170-90330 via Ribbon Synapse from 53358 -> 90331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53358,"TargetID":90331,"Directional":true}]},{"ID":5593,"SourceStructureID":170,"TargetStructureID":90366,"Label":"170-90366 via Ribbon Synapse from 1404 -> 90367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1404,"TargetID":90367,"Directional":true}]},{"ID":5594,"SourceStructureID":170,"TargetStructureID":90368,"Label":"170-90368 via Ribbon Synapse from 1411 -> 90370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1411,"TargetID":90370,"Directional":true}]},{"ID":5595,"SourceStructureID":170,"TargetStructureID":90409,"Label":"170-90409 via Ribbon Synapse from 90407 -> 90411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90407,"TargetID":90411,"Directional":true}]},{"ID":5596,"SourceStructureID":170,"TargetStructureID":90421,"Label":"170-90421 via Ribbon Synapse from 15995 -> 90422","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15995,"TargetID":90422,"Directional":true}]},{"ID":5597,"SourceStructureID":170,"TargetStructureID":90423,"Label":"170-90423 via Ribbon Synapse from 90425 -> 90426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90425,"TargetID":90426,"Directional":true}]},{"ID":5598,"SourceStructureID":170,"TargetStructureID":90428,"Label":"170-90428 via Ribbon Synapse from 90427 -> 90431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90427,"TargetID":90431,"Directional":true}]},{"ID":5599,"SourceStructureID":170,"TargetStructureID":90460,"Label":"170-90460 via Ribbon Synapse from 15997 -> 90462","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15997,"TargetID":90462,"Directional":true}]},{"ID":5600,"SourceStructureID":170,"TargetStructureID":90550,"Label":"170-90550 via Ribbon Synapse from 90549 -> 90556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90549,"TargetID":90556,"Directional":true}]},{"ID":5601,"SourceStructureID":170,"TargetStructureID":90558,"Label":"170-90558 via Ribbon Synapse from 90549 -> 90559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90549,"TargetID":90559,"Directional":true}]},{"ID":5602,"SourceStructureID":170,"TargetStructureID":90563,"Label":"170-90563 via Ribbon Synapse from 1413 -> 90565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1413,"TargetID":90565,"Directional":true}]},{"ID":5603,"SourceStructureID":170,"TargetStructureID":90566,"Label":"170-90566 via Ribbon Synapse from 1413 -> 90567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1413,"TargetID":90567,"Directional":true}]},{"ID":5604,"SourceStructureID":170,"TargetStructureID":90570,"Label":"170-90570 via Ribbon Synapse from 1426 -> 90571, 133996 -> 133997","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1426,"TargetID":90571,"Directional":true},{"SourceID":133996,"TargetID":133997,"Directional":true}]},{"ID":5605,"SourceStructureID":170,"TargetStructureID":90572,"Label":"170-90572 via Ribbon Synapse from 1426 -> 90573","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1426,"TargetID":90573,"Directional":true}]},{"ID":5606,"SourceStructureID":170,"TargetStructureID":90577,"Label":"170-90577 via Ribbon Synapse from 90576 -> 90578","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90576,"TargetID":90578,"Directional":true}]},{"ID":5607,"SourceStructureID":170,"TargetStructureID":90579,"Label":"170-90579 via Ribbon Synapse from 90576 -> 90580","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90576,"TargetID":90580,"Directional":true}]},{"ID":5608,"SourceStructureID":170,"TargetStructureID":90591,"Label":"170-90591 via Ribbon Synapse from 1422 -> 90592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1422,"TargetID":90592,"Directional":true}]},{"ID":5609,"SourceStructureID":170,"TargetStructureID":90600,"Label":"170-90600 via Ribbon Synapse from 1434 -> 90601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1434,"TargetID":90601,"Directional":true}]},{"ID":5610,"SourceStructureID":170,"TargetStructureID":90602,"Label":"170-90602 via Ribbon Synapse from 1434 -> 90603","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1434,"TargetID":90603,"Directional":true}]},{"ID":5611,"SourceStructureID":170,"TargetStructureID":90622,"Label":"170-90622 via Ribbon Synapse from 90621 -> 90623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90621,"TargetID":90623,"Directional":true}]},{"ID":5612,"SourceStructureID":170,"TargetStructureID":90626,"Label":"170-90626 via Ribbon Synapse from 90621 -> 90627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90621,"TargetID":90627,"Directional":true}]},{"ID":5613,"SourceStructureID":171,"TargetStructureID":591,"Label":"171-591 via Ribbon Synapse from 15443 -> 15445","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15443,"TargetID":15445,"Directional":true}]},{"ID":5614,"SourceStructureID":171,"TargetStructureID":3257,"Label":"171-3257 via Ribbon Synapse from 15447 -> 15446, 15448 -> 15449, 15460 -> 15459, 22911 -> 22909","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15447,"TargetID":15446,"Directional":true},{"SourceID":15448,"TargetID":15449,"Directional":true},{"SourceID":15460,"TargetID":15459,"Directional":true},{"SourceID":22911,"TargetID":22909,"Directional":true}]},{"ID":5615,"SourceStructureID":171,"TargetStructureID":5860,"Label":"171-5860 via Ribbon Synapse from 14737 -> 14738, 87730 -> 87731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14737,"TargetID":14738,"Directional":true},{"SourceID":87730,"TargetID":87731,"Directional":true}]},{"ID":5616,"SourceStructureID":171,"TargetStructureID":6169,"Label":"171-6169 via Ribbon Synapse from 6001 -> 16244, 9713 -> 133073, 15450 -> 16241, 29467 -> 29466, 29470 -> 29469, 29471 -> 29472, 133088 -> 133087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6001,"TargetID":16244,"Directional":true},{"SourceID":9713,"TargetID":133073,"Directional":true},{"SourceID":15450,"TargetID":16241,"Directional":true},{"SourceID":29467,"TargetID":29466,"Directional":true},{"SourceID":29470,"TargetID":29469,"Directional":true},{"SourceID":29471,"TargetID":29472,"Directional":true},{"SourceID":133088,"TargetID":133087,"Directional":true}]},{"ID":5617,"SourceStructureID":172,"TargetStructureID":3257,"Label":"172-3257 via Ribbon Synapse from 128138 -> 18067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128138,"TargetID":18067,"Directional":true}]},{"ID":5618,"SourceStructureID":172,"TargetStructureID":5860,"Label":"172-5860 via Ribbon Synapse from 29464 -> 29465, 119985 -> 119986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29464,"TargetID":29465,"Directional":true},{"SourceID":119985,"TargetID":119986,"Directional":true}]},{"ID":5619,"SourceStructureID":172,"TargetStructureID":6169,"Label":"172-6169 via Ribbon Synapse from 12219 -> 12226, 46369 -> 46370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12219,"TargetID":12226,"Directional":true},{"SourceID":46369,"TargetID":46370,"Directional":true}]},{"ID":5620,"SourceStructureID":172,"TargetStructureID":10574,"Label":"172-10574 via Ribbon Synapse from 84546 -> 10598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84546,"TargetID":10598,"Directional":true}]},{"ID":5621,"SourceStructureID":172,"TargetStructureID":12203,"Label":"172-12203 via Ribbon Synapse from 12232 -> 12205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12232,"TargetID":12205,"Directional":true}]},{"ID":5622,"SourceStructureID":172,"TargetStructureID":13448,"Label":"172-13448 via Ribbon Synapse from 119992 -> 24298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119992,"TargetID":24298,"Directional":true}]},{"ID":5623,"SourceStructureID":172,"TargetStructureID":31486,"Label":"172-31486 via Ribbon Synapse from 31633 -> 31534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31633,"TargetID":31534,"Directional":true}]},{"ID":5624,"SourceStructureID":172,"TargetStructureID":46359,"Label":"172-46359 via Ribbon Synapse from 44637 -> 46365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44637,"TargetID":46365,"Directional":true}]},{"ID":5625,"SourceStructureID":172,"TargetStructureID":128122,"Label":"172-128122 via Ribbon Synapse from 128134 -> 128132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128134,"TargetID":128132,"Directional":true}]},{"ID":5626,"SourceStructureID":172,"TargetStructureID":136432,"Label":"172-136432 via Ribbon Synapse from 136545 -> 136544","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136545,"TargetID":136544,"Directional":true}]},{"ID":5627,"SourceStructureID":173,"TargetStructureID":5377,"Label":"173-5377 via Ribbon Synapse from 11998 -> 87082, 12018 -> 87064, 87071 -> 87081, 128180 -> 128182","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11998,"TargetID":87082,"Directional":true},{"SourceID":12018,"TargetID":87064,"Directional":true},{"SourceID":87071,"TargetID":87081,"Directional":true},{"SourceID":128180,"TargetID":128182,"Directional":true}]},{"ID":5628,"SourceStructureID":173,"TargetStructureID":5435,"Label":"173-5435 via Ribbon Synapse from 12038 -> 24349, 60064 -> 60065","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12038,"TargetID":24349,"Directional":true},{"SourceID":60064,"TargetID":60065,"Directional":true}]},{"ID":5629,"SourceStructureID":173,"TargetStructureID":6169,"Label":"173-6169 via Ribbon Synapse from 5911 -> 88190, 11986 -> 60924, 12002 -> 60928","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5911,"TargetID":88190,"Directional":true},{"SourceID":11986,"TargetID":60924,"Directional":true},{"SourceID":12002,"TargetID":60928,"Directional":true}]},{"ID":5630,"SourceStructureID":173,"TargetStructureID":7073,"Label":"173-7073 via Ribbon Synapse from 19588 -> 19586","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19588,"TargetID":19586,"Directional":true}]},{"ID":5631,"SourceStructureID":173,"TargetStructureID":7113,"Label":"173-7113 via Ribbon Synapse from 12028 -> 18103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12028,"TargetID":18103,"Directional":true}]},{"ID":5632,"SourceStructureID":173,"TargetStructureID":7145,"Label":"173-7145 via Ribbon Synapse from 12127 -> 15828","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12127,"TargetID":15828,"Directional":true}]},{"ID":5633,"SourceStructureID":173,"TargetStructureID":9787,"Label":"173-9787 via Ribbon Synapse from 11984 -> 18085, 12028 -> 24350, 24293 -> 24292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11984,"TargetID":18085,"Directional":true},{"SourceID":12028,"TargetID":24350,"Directional":true},{"SourceID":24293,"TargetID":24292,"Directional":true}]},{"ID":5634,"SourceStructureID":173,"TargetStructureID":12203,"Label":"173-12203 via Ribbon Synapse from 12035 -> 12251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12035,"TargetID":12251,"Directional":true}]},{"ID":5635,"SourceStructureID":173,"TargetStructureID":20681,"Label":"173-20681 via BC Conventional Synapse from 12032 -> 20751","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":12032,"TargetID":20751,"Directional":true}]},{"ID":5636,"SourceStructureID":173,"TargetStructureID":31486,"Label":"173-31486 via Ribbon Synapse from 11891 -> 31643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11891,"TargetID":31643,"Directional":true}]},{"ID":5637,"SourceStructureID":173,"TargetStructureID":46389,"Label":"173-46389 via Ribbon Synapse from 12098 -> 60744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12098,"TargetID":60744,"Directional":true}]},{"ID":5638,"SourceStructureID":173,"TargetStructureID":50240,"Label":"173-50240 via Ribbon Synapse from 11986 -> 60925","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11986,"TargetID":60925,"Directional":true}]},{"ID":5639,"SourceStructureID":173,"TargetStructureID":54264,"Label":"173-54264 via Ribbon Synapse from 13042 -> 54279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13042,"TargetID":54279,"Directional":true}]},{"ID":5640,"SourceStructureID":173,"TargetStructureID":85856,"Label":"173-85856 via Ribbon Synapse from 7053 -> 11887, 11873 -> 11886, 12011 -> 32006, 32008 -> 32007, 88148 -> 88147, 136867 -> 136868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7053,"TargetID":11887,"Directional":true},{"SourceID":11873,"TargetID":11886,"Directional":true},{"SourceID":12011,"TargetID":32006,"Directional":true},{"SourceID":32008,"TargetID":32007,"Directional":true},{"SourceID":88148,"TargetID":88147,"Directional":true},{"SourceID":136867,"TargetID":136868,"Directional":true}]},{"ID":5641,"SourceStructureID":173,"TargetStructureID":87076,"Label":"173-87076 via BC Conventional Synapse from 87080 -> 87079","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87080,"TargetID":87079,"Directional":true}]},{"ID":5642,"SourceStructureID":173,"TargetStructureID":103094,"Label":"173-103094 via Ribbon Synapse from 11925 -> 103096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11925,"TargetID":103096,"Directional":true}]},{"ID":5643,"SourceStructureID":173,"TargetStructureID":128101,"Label":"173-128101 via Ribbon Synapse from 12013 -> 128105","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12013,"TargetID":128105,"Directional":true}]},{"ID":5644,"SourceStructureID":173,"TargetStructureID":128152,"Label":"173-128152 via Ribbon Synapse from 12118 -> 128157, 128154 -> 128155","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12118,"TargetID":128157,"Directional":true},{"SourceID":128154,"TargetID":128155,"Directional":true}]},{"ID":5645,"SourceStructureID":173,"TargetStructureID":128184,"Label":"173-128184 via Ribbon Synapse from 11995 -> 128188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11995,"TargetID":128188,"Directional":true}]},{"ID":5646,"SourceStructureID":173,"TargetStructureID":129927,"Label":"173-129927 via Ribbon Synapse from 12139 -> 129937","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12139,"TargetID":129937,"Directional":true}]},{"ID":5647,"SourceStructureID":175,"TargetStructureID":174,"Label":"175-174 via Ribbon Synapse from 18811 -> 18799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18811,"TargetID":18799,"Directional":true}]},{"ID":5648,"SourceStructureID":175,"TargetStructureID":178,"Label":"175-178 via Ribbon Synapse from 24291 -> 3271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24291,"TargetID":3271,"Directional":true}]},{"ID":5649,"SourceStructureID":175,"TargetStructureID":5351,"Label":"175-5351 via Ribbon Synapse from 21894 -> 24073, 24072 -> 24070, 24077 -> 24076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21894,"TargetID":24073,"Directional":true},{"SourceID":24072,"TargetID":24070,"Directional":true},{"SourceID":24077,"TargetID":24076,"Directional":true}]},{"ID":5650,"SourceStructureID":175,"TargetStructureID":7113,"Label":"175-7113 via Ribbon Synapse from 21886 -> 21888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21886,"TargetID":21888,"Directional":true}]},{"ID":5651,"SourceStructureID":175,"TargetStructureID":9787,"Label":"175-9787 via Ribbon Synapse from 7070 -> 18137, 29375 -> 18141, 29379 -> 18142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7070,"TargetID":18137,"Directional":true},{"SourceID":29375,"TargetID":18141,"Directional":true},{"SourceID":29379,"TargetID":18142,"Directional":true}]},{"ID":5652,"SourceStructureID":175,"TargetStructureID":29340,"Label":"175-29340 via Conventional from 33553 -> 29373","Type":"Conventional","Directional":true,"Links":[{"SourceID":33553,"TargetID":29373,"Directional":true}]},{"ID":5653,"SourceStructureID":175,"TargetStructureID":29340,"Label":"175-29340 via Ribbon Synapse from 19791 -> 29397, 29380 -> 29374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19791,"TargetID":29397,"Directional":true},{"SourceID":29380,"TargetID":29374,"Directional":true}]},{"ID":5654,"SourceStructureID":175,"TargetStructureID":46443,"Label":"175-46443 via Ribbon Synapse from 46448 -> 46447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46448,"TargetID":46447,"Directional":true}]},{"ID":5655,"SourceStructureID":175,"TargetStructureID":85856,"Label":"175-85856 via Ribbon Synapse from 21718 -> 24507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21718,"TargetID":24507,"Directional":true}]},{"ID":5656,"SourceStructureID":176,"TargetStructureID":545,"Label":"176-545 via Cistern Pre from 128013 -> 128012","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":128013,"TargetID":128012,"Directional":true}]},{"ID":5657,"SourceStructureID":176,"TargetStructureID":582,"Label":"176-582 via Cistern Pre from 11704 -> 587","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":11704,"TargetID":587,"Directional":true}]},{"ID":5658,"SourceStructureID":176,"TargetStructureID":606,"Label":"176-606 via Ribbon Synapse from 53563 -> 53564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53563,"TargetID":53564,"Directional":true}]},{"ID":5659,"SourceStructureID":176,"TargetStructureID":5481,"Label":"176-5481 via Cistern Pre from 128327 -> 128328","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":128327,"TargetID":128328,"Directional":true}]},{"ID":5660,"SourceStructureID":176,"TargetStructureID":5481,"Label":"176-5481 via Ribbon Synapse from 5870 -> 128452","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5870,"TargetID":128452,"Directional":true}]},{"ID":5661,"SourceStructureID":176,"TargetStructureID":7576,"Label":"176-7576 via BC Conventional Synapse from 55927 -> 55926","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55927,"TargetID":55926,"Directional":true}]},{"ID":5662,"SourceStructureID":176,"TargetStructureID":20327,"Label":"176-20327 via Ribbon Synapse from 58651 -> 58652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58651,"TargetID":58652,"Directional":true}]},{"ID":5663,"SourceStructureID":176,"TargetStructureID":20537,"Label":"176-20537 via Cistern Pre from 5836 -> 23509","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":5836,"TargetID":23509,"Directional":true}]},{"ID":5664,"SourceStructureID":176,"TargetStructureID":30567,"Label":"176-30567 via Ribbon Synapse from 32099 -> 32090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32099,"TargetID":32090,"Directional":true}]},{"ID":5665,"SourceStructureID":176,"TargetStructureID":32405,"Label":"176-32405 via Ribbon Synapse from 5899 -> 38528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5899,"TargetID":38528,"Directional":true}]},{"ID":5666,"SourceStructureID":176,"TargetStructureID":35212,"Label":"176-35212 via Ribbon Synapse from 35220 -> 35219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35220,"TargetID":35219,"Directional":true}]},{"ID":5667,"SourceStructureID":176,"TargetStructureID":38949,"Label":"176-38949 via Ribbon Synapse from 38986 -> 38985, 38992 -> 38991","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38986,"TargetID":38985,"Directional":true},{"SourceID":38992,"TargetID":38991,"Directional":true}]},{"ID":5668,"SourceStructureID":176,"TargetStructureID":44893,"Label":"176-44893 via Ribbon Synapse from 5858 -> 123328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5858,"TargetID":123328,"Directional":true}]},{"ID":5669,"SourceStructureID":176,"TargetStructureID":44912,"Label":"176-44912 via Ribbon Synapse from 5858 -> 44914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5858,"TargetID":44914,"Directional":true}]},{"ID":5670,"SourceStructureID":176,"TargetStructureID":44970,"Label":"176-44970 via Ribbon Synapse from 5856 -> 44975, 45005 -> 45004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5856,"TargetID":44975,"Directional":true},{"SourceID":45005,"TargetID":45004,"Directional":true}]},{"ID":5671,"SourceStructureID":176,"TargetStructureID":45220,"Label":"176-45220 via Ribbon Synapse from 91900 -> 45228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91900,"TargetID":45228,"Directional":true}]},{"ID":5672,"SourceStructureID":176,"TargetStructureID":54948,"Label":"176-54948 via Ribbon Synapse from 54954 -> 54953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54954,"TargetID":54953,"Directional":true}]},{"ID":5673,"SourceStructureID":176,"TargetStructureID":56802,"Label":"176-56802 via Cistern Pre from 91790 -> 128032","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":91790,"TargetID":128032,"Directional":true}]},{"ID":5674,"SourceStructureID":176,"TargetStructureID":58592,"Label":"176-58592 via Ribbon Synapse from 34108 -> 58649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34108,"TargetID":58649,"Directional":true}]},{"ID":5675,"SourceStructureID":176,"TargetStructureID":69893,"Label":"176-69893 via Ribbon Synapse from 69892 -> 69894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69892,"TargetID":69894,"Directional":true}]},{"ID":5676,"SourceStructureID":176,"TargetStructureID":70648,"Label":"176-70648 via Ribbon Synapse from 128244 -> 128245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128244,"TargetID":128245,"Directional":true}]},{"ID":5677,"SourceStructureID":176,"TargetStructureID":72299,"Label":"176-72299 via BC Conventional Synapse from 126437 -> 126438","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":126437,"TargetID":126438,"Directional":true}]},{"ID":5678,"SourceStructureID":176,"TargetStructureID":80609,"Label":"176-80609 via Ribbon Synapse from 5868 -> 82477, 82460 -> 82461, 82464 -> 82463","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5868,"TargetID":82477,"Directional":true},{"SourceID":82460,"TargetID":82461,"Directional":true},{"SourceID":82464,"TargetID":82463,"Directional":true}]},{"ID":5679,"SourceStructureID":176,"TargetStructureID":88260,"Label":"176-88260 via Ribbon Synapse from 5896 -> 88277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5896,"TargetID":88277,"Directional":true}]},{"ID":5680,"SourceStructureID":176,"TargetStructureID":89039,"Label":"176-89039 via Ribbon Synapse from 124556 -> 128241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124556,"TargetID":128241,"Directional":true}]},{"ID":5681,"SourceStructureID":176,"TargetStructureID":91780,"Label":"176-91780 via Ribbon Synapse from 38998 -> 93039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38998,"TargetID":93039,"Directional":true}]},{"ID":5682,"SourceStructureID":176,"TargetStructureID":91832,"Label":"176-91832 via Adherens from 124679 -> 124680","Type":"Adherens","Directional":true,"Links":[{"SourceID":124679,"TargetID":124680,"Directional":true}]},{"ID":5683,"SourceStructureID":176,"TargetStructureID":91832,"Label":"176-91832 via Ribbon Synapse from 91829 -> 91835","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91829,"TargetID":91835,"Directional":true}]},{"ID":5684,"SourceStructureID":176,"TargetStructureID":91856,"Label":"176-91856 via BC Conventional Synapse from 91861 -> 91860, 91861 -> 124752","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91861,"TargetID":91860,"Directional":true},{"SourceID":91861,"TargetID":124752,"Directional":true}]},{"ID":5685,"SourceStructureID":176,"TargetStructureID":91913,"Label":"176-91913 via BC Conventional Synapse from 128432 -> 147451","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":128432,"TargetID":147451,"Directional":true}]},{"ID":5686,"SourceStructureID":176,"TargetStructureID":91918,"Label":"176-91918 via Ribbon Synapse from 93037 -> 93036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93037,"TargetID":93036,"Directional":true}]},{"ID":5687,"SourceStructureID":176,"TargetStructureID":91930,"Label":"176-91930 via BC Conventional Synapse from 91951 -> 91950","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91951,"TargetID":91950,"Directional":true}]},{"ID":5688,"SourceStructureID":176,"TargetStructureID":91959,"Label":"176-91959 via Cistern Pre from 91957 -> 128704","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":91957,"TargetID":128704,"Directional":true}]},{"ID":5689,"SourceStructureID":176,"TargetStructureID":91994,"Label":"176-91994 via Ribbon Synapse from 91906 -> 128443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91906,"TargetID":128443,"Directional":true}]},{"ID":5690,"SourceStructureID":176,"TargetStructureID":97272,"Label":"176-97272 via Ribbon Synapse from 91999 -> 128442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91999,"TargetID":128442,"Directional":true}]},{"ID":5691,"SourceStructureID":176,"TargetStructureID":97280,"Label":"176-97280 via Ribbon Synapse from 91999 -> 128441","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91999,"TargetID":128441,"Directional":true}]},{"ID":5692,"SourceStructureID":176,"TargetStructureID":106922,"Label":"176-106922 via Ribbon Synapse from 128258 -> 128259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128258,"TargetID":128259,"Directional":true}]},{"ID":5693,"SourceStructureID":176,"TargetStructureID":107438,"Label":"176-107438 via Cistern Pre from 124930 -> 124931","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":124930,"TargetID":124931,"Directional":true}]},{"ID":5694,"SourceStructureID":176,"TargetStructureID":107639,"Label":"176-107639 via Ribbon Synapse from 5876 -> 128672","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5876,"TargetID":128672,"Directional":true}]},{"ID":5695,"SourceStructureID":176,"TargetStructureID":107672,"Label":"176-107672 via Ribbon Synapse from 91900 -> 128447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91900,"TargetID":128447,"Directional":true}]},{"ID":5696,"SourceStructureID":176,"TargetStructureID":125857,"Label":"176-125857 via BC Conventional Synapse from 125858 -> 125859","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125858,"TargetID":125859,"Directional":true}]},{"ID":5697,"SourceStructureID":176,"TargetStructureID":125857,"Label":"176-125857 via Ribbon Synapse from 124129 -> 128742","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124129,"TargetID":128742,"Directional":true}]},{"ID":5698,"SourceStructureID":176,"TargetStructureID":126585,"Label":"176-126585 via BC Conventional Synapse from 125429 -> 126586","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125429,"TargetID":126586,"Directional":true}]},{"ID":5699,"SourceStructureID":176,"TargetStructureID":128278,"Label":"176-128278 via Ribbon Synapse from 128277 -> 128279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128277,"TargetID":128279,"Directional":true}]},{"ID":5700,"SourceStructureID":176,"TargetStructureID":128682,"Label":"176-128682 via Ribbon Synapse from 34108 -> 128684","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34108,"TargetID":128684,"Directional":true}]},{"ID":5701,"SourceStructureID":176,"TargetStructureID":128696,"Label":"176-128696 via Ribbon Synapse from 125799 -> 128697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125799,"TargetID":128697,"Directional":true}]},{"ID":5702,"SourceStructureID":176,"TargetStructureID":136680,"Label":"176-136680 via BC Conventional Synapse from 124558 -> 136682","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124558,"TargetID":136682,"Directional":true}]},{"ID":5703,"SourceStructureID":176,"TargetStructureID":147412,"Label":"176-147412 via Ribbon Synapse from 5870 -> 147413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5870,"TargetID":147413,"Directional":true}]},{"ID":5704,"SourceStructureID":176,"TargetStructureID":147696,"Label":"176-147696 via Ribbon Synapse from 54992 -> 147731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54992,"TargetID":147731,"Directional":true}]},{"ID":5705,"SourceStructureID":176,"TargetStructureID":147713,"Label":"176-147713 via Ribbon Synapse from 125807 -> 147714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125807,"TargetID":147714,"Directional":true}]},{"ID":5706,"SourceStructureID":177,"TargetStructureID":606,"Label":"177-606 via Ribbon Synapse from 5925 -> 51731, 27983 -> 51731, 47946 -> 51731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5925,"TargetID":51731,"Directional":true},{"SourceID":27983,"TargetID":51731,"Directional":true},{"SourceID":47946,"TargetID":51731,"Directional":true}]},{"ID":5707,"SourceStructureID":177,"TargetStructureID":7576,"Label":"177-7576 via Ribbon Synapse from 27945 -> 55013, 27951 -> 55930, 27955 -> 54984, 27965 -> 54998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27945,"TargetID":55013,"Directional":true},{"SourceID":27951,"TargetID":55930,"Directional":true},{"SourceID":27955,"TargetID":54984,"Directional":true},{"SourceID":27965,"TargetID":54998,"Directional":true}]},{"ID":5708,"SourceStructureID":177,"TargetStructureID":30526,"Label":"177-30526 via Ribbon Synapse from 23642 -> 30527","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23642,"TargetID":30527,"Directional":true}]},{"ID":5709,"SourceStructureID":177,"TargetStructureID":34914,"Label":"177-34914 via Ribbon Synapse from 5945 -> 34918, 5954 -> 34916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5945,"TargetID":34918,"Directional":true},{"SourceID":5954,"TargetID":34916,"Directional":true}]},{"ID":5710,"SourceStructureID":177,"TargetStructureID":56802,"Label":"177-56802 via BC Conventional Synapse from 119615 -> 119614","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119615,"TargetID":119614,"Directional":true}]},{"ID":5711,"SourceStructureID":179,"TargetStructureID":410,"Label":"179-410 via Conventional from 103833 -> 23276","Type":"Conventional","Directional":true,"Links":[{"SourceID":103833,"TargetID":23276,"Directional":true}]},{"ID":5712,"SourceStructureID":179,"TargetStructureID":517,"Label":"179-517 via Conventional from 41026 -> 16427","Type":"Conventional","Directional":true,"Links":[{"SourceID":41026,"TargetID":16427,"Directional":true}]},{"ID":5713,"SourceStructureID":179,"TargetStructureID":518,"Label":"179-518 via Conventional from 25301 -> 25304, 36506 -> 3376, 36507 -> 3508","Type":"Conventional","Directional":true,"Links":[{"SourceID":25301,"TargetID":25304,"Directional":true},{"SourceID":36506,"TargetID":3376,"Directional":true},{"SourceID":36507,"TargetID":3508,"Directional":true}]},{"ID":5714,"SourceStructureID":179,"TargetStructureID":519,"Label":"179-519 via Conventional from 9332 -> 9305, 9333 -> 9307, 25363 -> 9238, 25786 -> 25787","Type":"Conventional","Directional":true,"Links":[{"SourceID":9332,"TargetID":9305,"Directional":true},{"SourceID":9333,"TargetID":9307,"Directional":true},{"SourceID":25363,"TargetID":9238,"Directional":true},{"SourceID":25786,"TargetID":25787,"Directional":true}]},{"ID":5715,"SourceStructureID":179,"TargetStructureID":6561,"Label":"179-6561 via Conventional from 103873 -> 17306, 103874 -> 17305","Type":"Conventional","Directional":true,"Links":[{"SourceID":103873,"TargetID":17306,"Directional":true},{"SourceID":103874,"TargetID":17305,"Directional":true}]},{"ID":5716,"SourceStructureID":179,"TargetStructureID":10897,"Label":"179-10897 via Conventional from 104881 -> 104883","Type":"Conventional","Directional":true,"Links":[{"SourceID":104881,"TargetID":104883,"Directional":true}]},{"ID":5717,"SourceStructureID":179,"TargetStructureID":10931,"Label":"179-10931 via Conventional from 87469 -> 87470","Type":"Conventional","Directional":true,"Links":[{"SourceID":87469,"TargetID":87470,"Directional":true}]},{"ID":5718,"SourceStructureID":179,"TargetStructureID":10943,"Label":"179-10943 via Conventional from 105528 -> 10944","Type":"Conventional","Directional":true,"Links":[{"SourceID":105528,"TargetID":10944,"Directional":true}]},{"ID":5719,"SourceStructureID":179,"TargetStructureID":10953,"Label":"179-10953 via Conventional from 87482 -> 87483","Type":"Conventional","Directional":true,"Links":[{"SourceID":87482,"TargetID":87483,"Directional":true}]},{"ID":5720,"SourceStructureID":179,"TargetStructureID":14615,"Label":"179-14615 via Conventional from 25314 -> 25318, 33084 -> 25315","Type":"Conventional","Directional":true,"Links":[{"SourceID":25314,"TargetID":25318,"Directional":true},{"SourceID":33084,"TargetID":25315,"Directional":true}]},{"ID":5721,"SourceStructureID":179,"TargetStructureID":15100,"Label":"179-15100 via Conventional from 33112 -> 17995","Type":"Conventional","Directional":true,"Links":[{"SourceID":33112,"TargetID":17995,"Directional":true}]},{"ID":5722,"SourceStructureID":179,"TargetStructureID":15942,"Label":"179-15942 via Conventional from 103840 -> 103839","Type":"Conventional","Directional":true,"Links":[{"SourceID":103840,"TargetID":103839,"Directional":true}]},{"ID":5723,"SourceStructureID":179,"TargetStructureID":16446,"Label":"179-16446 via Conventional from 103861 -> 16459","Type":"Conventional","Directional":true,"Links":[{"SourceID":103861,"TargetID":16459,"Directional":true}]},{"ID":5724,"SourceStructureID":179,"TargetStructureID":17228,"Label":"179-17228 via Conventional from 104932 -> 104936","Type":"Conventional","Directional":true,"Links":[{"SourceID":104932,"TargetID":104936,"Directional":true}]},{"ID":5725,"SourceStructureID":179,"TargetStructureID":117272,"Label":"179-117272 via Postsynapse from 130219 -> 130220","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":130219,"TargetID":130220,"Directional":true}]},{"ID":5726,"SourceStructureID":180,"TargetStructureID":318,"Label":"180-318 via Ribbon Synapse from 14151 -> 14152, 14156 -> 14118, 84487 -> 133008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14151,"TargetID":14152,"Directional":true},{"SourceID":14156,"TargetID":14118,"Directional":true},{"SourceID":84487,"TargetID":133008,"Directional":true}]},{"ID":5727,"SourceStructureID":180,"TargetStructureID":606,"Label":"180-606 via Ribbon Synapse from 51239 -> 51242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51239,"TargetID":51242,"Directional":true}]},{"ID":5728,"SourceStructureID":180,"TargetStructureID":3679,"Label":"180-3679 via Ribbon Synapse from 56870 -> 9708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56870,"TargetID":9708,"Directional":true}]},{"ID":5729,"SourceStructureID":180,"TargetStructureID":4890,"Label":"180-4890 via Ribbon Synapse from 4925 -> 4924, 6097 -> 6098, 14149 -> 6100, 56879 -> 6000, 95519 -> 95520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4925,"TargetID":4924,"Directional":true},{"SourceID":6097,"TargetID":6098,"Directional":true},{"SourceID":14149,"TargetID":6100,"Directional":true},{"SourceID":56879,"TargetID":6000,"Directional":true},{"SourceID":95519,"TargetID":95520,"Directional":true}]},{"ID":5730,"SourceStructureID":180,"TargetStructureID":5303,"Label":"180-5303 via Ribbon Synapse from 847 -> 133052, 133051 -> 133052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":847,"TargetID":133052,"Directional":true},{"SourceID":133051,"TargetID":133052,"Directional":true}]},{"ID":5731,"SourceStructureID":180,"TargetStructureID":5618,"Label":"180-5618 via Ribbon Synapse from 6056 -> 65979, 65983 -> 65982, 65984 -> 65982","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6056,"TargetID":65979,"Directional":true},{"SourceID":65983,"TargetID":65982,"Directional":true},{"SourceID":65984,"TargetID":65982,"Directional":true}]},{"ID":5732,"SourceStructureID":180,"TargetStructureID":6169,"Label":"180-6169 via Ribbon Synapse from 24656 -> 24653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24656,"TargetID":24653,"Directional":true}]},{"ID":5733,"SourceStructureID":180,"TargetStructureID":8577,"Label":"180-8577 via BC Conventional Synapse from 15883 -> 15881","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":15883,"TargetID":15881,"Directional":true}]},{"ID":5734,"SourceStructureID":180,"TargetStructureID":8577,"Label":"180-8577 via Ribbon Synapse from 15885 -> 15884, 56873 -> 15876, 126090 -> 133014, 132883 -> 15879, 133126 -> 133127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15885,"TargetID":15884,"Directional":true},{"SourceID":56873,"TargetID":15876,"Directional":true},{"SourceID":126090,"TargetID":133014,"Directional":true},{"SourceID":132883,"TargetID":15879,"Directional":true},{"SourceID":133126,"TargetID":133127,"Directional":true}]},{"ID":5735,"SourceStructureID":180,"TargetStructureID":8579,"Label":"180-8579 via Ribbon Synapse from 6055 -> 94668, 6059 -> 94891, 16128 -> 19805, 19807 -> 66082, 19810 -> 19811, 19821 -> 19820, 133100 -> 133101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6055,"TargetID":94668,"Directional":true},{"SourceID":6059,"TargetID":94891,"Directional":true},{"SourceID":16128,"TargetID":19805,"Directional":true},{"SourceID":19807,"TargetID":66082,"Directional":true},{"SourceID":19810,"TargetID":19811,"Directional":true},{"SourceID":19821,"TargetID":19820,"Directional":true},{"SourceID":133100,"TargetID":133101,"Directional":true}]},{"ID":5736,"SourceStructureID":180,"TargetStructureID":8720,"Label":"180-8720 via Ribbon Synapse from 853 -> 133049, 868 -> 15292, 65604 -> 133050, 133057 -> 15292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":853,"TargetID":133049,"Directional":true},{"SourceID":868,"TargetID":15292,"Directional":true},{"SourceID":65604,"TargetID":133050,"Directional":true},{"SourceID":133057,"TargetID":15292,"Directional":true}]},{"ID":5737,"SourceStructureID":180,"TargetStructureID":9347,"Label":"180-9347 via Ribbon Synapse from 95404 -> 95406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95404,"TargetID":95406,"Directional":true}]},{"ID":5738,"SourceStructureID":180,"TargetStructureID":16087,"Label":"180-16087 via Ribbon Synapse from 126090 -> 133013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126090,"TargetID":133013,"Directional":true}]},{"ID":5739,"SourceStructureID":180,"TargetStructureID":18282,"Label":"180-18282 via Ribbon Synapse from 890 -> 18322, 133009 -> 135147","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":890,"TargetID":18322,"Directional":true},{"SourceID":133009,"TargetID":135147,"Directional":true}]},{"ID":5740,"SourceStructureID":180,"TargetStructureID":25440,"Label":"180-25440 via BC Conventional Synapse from 133113 -> 133114","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133113,"TargetID":133114,"Directional":true}]},{"ID":5741,"SourceStructureID":180,"TargetStructureID":25440,"Label":"180-25440 via Ribbon Synapse from 91004 -> 91006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91004,"TargetID":91006,"Directional":true}]},{"ID":5742,"SourceStructureID":180,"TargetStructureID":29277,"Label":"180-29277 via Ribbon Synapse from 29266 -> 132928, 31106 -> 29279, 90906 -> 123161, 95251 -> 115583, 95252 -> 115583, 95253 -> 115583","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29266,"TargetID":132928,"Directional":true},{"SourceID":31106,"TargetID":29279,"Directional":true},{"SourceID":90906,"TargetID":123161,"Directional":true},{"SourceID":95251,"TargetID":115583,"Directional":true},{"SourceID":95252,"TargetID":115583,"Directional":true},{"SourceID":95253,"TargetID":115583,"Directional":true}]},{"ID":5743,"SourceStructureID":180,"TargetStructureID":30518,"Label":"180-30518 via Ribbon Synapse from 6566 -> 32783","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6566,"TargetID":32783,"Directional":true}]},{"ID":5744,"SourceStructureID":180,"TargetStructureID":31024,"Label":"180-31024 via Ribbon Synapse from 6060 -> 31066, 15885 -> 133023, 31100 -> 31072","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6060,"TargetID":31066,"Directional":true},{"SourceID":15885,"TargetID":133023,"Directional":true},{"SourceID":31100,"TargetID":31072,"Directional":true}]},{"ID":5745,"SourceStructureID":180,"TargetStructureID":33330,"Label":"180-33330 via Ribbon Synapse from 33329 -> 33331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33329,"TargetID":33331,"Directional":true}]},{"ID":5746,"SourceStructureID":180,"TargetStructureID":38363,"Label":"180-38363 via Ribbon Synapse from 31277 -> 133031","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31277,"TargetID":133031,"Directional":true}]},{"ID":5747,"SourceStructureID":180,"TargetStructureID":39345,"Label":"180-39345 via Ribbon Synapse from 6566 -> 39348, 31283 -> 39363, 39365 -> 39364","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6566,"TargetID":39348,"Directional":true},{"SourceID":31283,"TargetID":39363,"Directional":true},{"SourceID":39365,"TargetID":39364,"Directional":true}]},{"ID":5748,"SourceStructureID":180,"TargetStructureID":54744,"Label":"180-54744 via Ribbon Synapse from 91004 -> 91007","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91004,"TargetID":91007,"Directional":true}]},{"ID":5749,"SourceStructureID":180,"TargetStructureID":64492,"Label":"180-64492 via Ribbon Synapse from 6058 -> 64498, 65586 -> 65587, 91002 -> 91003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6058,"TargetID":64498,"Directional":true},{"SourceID":65586,"TargetID":65587,"Directional":true},{"SourceID":91002,"TargetID":91003,"Directional":true}]},{"ID":5750,"SourceStructureID":180,"TargetStructureID":65591,"Label":"180-65591 via Ribbon Synapse from 65590 -> 65592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65590,"TargetID":65592,"Directional":true}]},{"ID":5751,"SourceStructureID":180,"TargetStructureID":65594,"Label":"180-65594 via Ribbon Synapse from 65593 -> 130253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65593,"TargetID":130253,"Directional":true}]},{"ID":5752,"SourceStructureID":180,"TargetStructureID":65596,"Label":"180-65596 via Ribbon Synapse from 65593 -> 65597","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65593,"TargetID":65597,"Directional":true}]},{"ID":5753,"SourceStructureID":180,"TargetStructureID":65602,"Label":"180-65602 via Ribbon Synapse from 133047 -> 65603","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133047,"TargetID":65603,"Directional":true}]},{"ID":5754,"SourceStructureID":180,"TargetStructureID":65864,"Label":"180-65864 via Ribbon Synapse from 19807 -> 133024, 91024 -> 94882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19807,"TargetID":133024,"Directional":true},{"SourceID":91024,"TargetID":94882,"Directional":true}]},{"ID":5755,"SourceStructureID":180,"TargetStructureID":65971,"Label":"180-65971 via Ribbon Synapse from 59681 -> 65972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59681,"TargetID":65972,"Directional":true}]},{"ID":5756,"SourceStructureID":180,"TargetStructureID":66510,"Label":"180-66510 via Ribbon Synapse from 91016 -> 91019","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91016,"TargetID":91019,"Directional":true}]},{"ID":5757,"SourceStructureID":180,"TargetStructureID":66634,"Label":"180-66634 via Ribbon Synapse from 59663 -> 94943","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59663,"TargetID":94943,"Directional":true}]},{"ID":5758,"SourceStructureID":180,"TargetStructureID":70315,"Label":"180-70315 via Ribbon Synapse from 6059 -> 94890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6059,"TargetID":94890,"Directional":true}]},{"ID":5759,"SourceStructureID":180,"TargetStructureID":71351,"Label":"180-71351 via Ribbon Synapse from 875 -> 71902, 31270 -> 71889, 71890 -> 71894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":875,"TargetID":71902,"Directional":true},{"SourceID":31270,"TargetID":71889,"Directional":true},{"SourceID":71890,"TargetID":71894,"Directional":true}]},{"ID":5760,"SourceStructureID":180,"TargetStructureID":71351,"Label":"180-71351 via Unknown from 133092 -> 95235","Type":"Unknown","Directional":true,"Links":[{"SourceID":133092,"TargetID":95235,"Directional":true}]},{"ID":5761,"SourceStructureID":180,"TargetStructureID":71517,"Label":"180-71517 via Ribbon Synapse from 31277 -> 75161, 71494 -> 71495, 72010 -> 72011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31277,"TargetID":75161,"Directional":true},{"SourceID":71494,"TargetID":71495,"Directional":true},{"SourceID":72010,"TargetID":72011,"Directional":true}]},{"ID":5762,"SourceStructureID":180,"TargetStructureID":72012,"Label":"180-72012 via Ribbon Synapse from 31101 -> 132885, 132883 -> 132885","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31101,"TargetID":132885,"Directional":true},{"SourceID":132883,"TargetID":132885,"Directional":true}]},{"ID":5763,"SourceStructureID":180,"TargetStructureID":72638,"Label":"180-72638 via Ribbon Synapse from 31284 -> 133033","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31284,"TargetID":133033,"Directional":true}]},{"ID":5764,"SourceStructureID":180,"TargetStructureID":75130,"Label":"180-75130 via Ribbon Synapse from 31277 -> 133030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31277,"TargetID":133030,"Directional":true}]},{"ID":5765,"SourceStructureID":180,"TargetStructureID":75339,"Label":"180-75339 via Ribbon Synapse from 31274 -> 95231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31274,"TargetID":95231,"Directional":true}]},{"ID":5766,"SourceStructureID":180,"TargetStructureID":80609,"Label":"180-80609 via Ribbon Synapse from 56879 -> 95510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56879,"TargetID":95510,"Directional":true}]},{"ID":5767,"SourceStructureID":180,"TargetStructureID":84335,"Label":"180-84335 via Ribbon Synapse from 59664 -> 94936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59664,"TargetID":94936,"Directional":true}]},{"ID":5768,"SourceStructureID":180,"TargetStructureID":84806,"Label":"180-84806 via Ribbon Synapse from 84809 -> 95904","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84809,"TargetID":95904,"Directional":true}]},{"ID":5769,"SourceStructureID":180,"TargetStructureID":90217,"Label":"180-90217 via BC Conventional Synapse from 90505 -> 90504","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90505,"TargetID":90504,"Directional":true}]},{"ID":5770,"SourceStructureID":180,"TargetStructureID":90217,"Label":"180-90217 via Ribbon Synapse from 59669 -> 95255, 132882 -> 90506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59669,"TargetID":95255,"Directional":true},{"SourceID":132882,"TargetID":90506,"Directional":true}]},{"ID":5771,"SourceStructureID":180,"TargetStructureID":90739,"Label":"180-90739 via Ribbon Synapse from 6053 -> 90740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6053,"TargetID":90740,"Directional":true}]},{"ID":5772,"SourceStructureID":180,"TargetStructureID":90743,"Label":"180-90743 via Ribbon Synapse from 29446 -> 90745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29446,"TargetID":90745,"Directional":true}]},{"ID":5773,"SourceStructureID":180,"TargetStructureID":90744,"Label":"180-90744 via Ribbon Synapse from 29445 -> 90747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29445,"TargetID":90747,"Directional":true}]},{"ID":5774,"SourceStructureID":180,"TargetStructureID":90753,"Label":"180-90753 via Ribbon Synapse from 6060 -> 133045, 90749 -> 90754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6060,"TargetID":133045,"Directional":true},{"SourceID":90749,"TargetID":90754,"Directional":true}]},{"ID":5775,"SourceStructureID":180,"TargetStructureID":90764,"Label":"180-90764 via BC Conventional Synapse from 90763 -> 90765","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90763,"TargetID":90765,"Directional":true}]},{"ID":5776,"SourceStructureID":180,"TargetStructureID":90775,"Label":"180-90775 via Ribbon Synapse from 31101 -> 90776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31101,"TargetID":90776,"Directional":true}]},{"ID":5777,"SourceStructureID":180,"TargetStructureID":90779,"Label":"180-90779 via Ribbon Synapse from 6062 -> 90780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6062,"TargetID":90780,"Directional":true}]},{"ID":5778,"SourceStructureID":180,"TargetStructureID":90781,"Label":"180-90781 via Ribbon Synapse from 6061 -> 90782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6061,"TargetID":90782,"Directional":true}]},{"ID":5779,"SourceStructureID":180,"TargetStructureID":90783,"Label":"180-90783 via BC Conventional Synapse from 90785 -> 90786","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90785,"TargetID":90786,"Directional":true}]},{"ID":5780,"SourceStructureID":180,"TargetStructureID":90791,"Label":"180-90791 via Ribbon Synapse from 81903 -> 90792, 81904 -> 90792","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81903,"TargetID":90792,"Directional":true},{"SourceID":81904,"TargetID":90792,"Directional":true}]},{"ID":5781,"SourceStructureID":180,"TargetStructureID":90795,"Label":"180-90795 via Ribbon Synapse from 81902 -> 90796","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81902,"TargetID":90796,"Directional":true}]},{"ID":5782,"SourceStructureID":180,"TargetStructureID":90811,"Label":"180-90811 via Ribbon Synapse from 132888 -> 133018, 133119 -> 133118, 133120 -> 90812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132888,"TargetID":133018,"Directional":true},{"SourceID":133119,"TargetID":133118,"Directional":true},{"SourceID":133120,"TargetID":90812,"Directional":true}]},{"ID":5783,"SourceStructureID":180,"TargetStructureID":90814,"Label":"180-90814 via Ribbon Synapse from 6065 -> 90815, 133010 -> 90815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6065,"TargetID":90815,"Directional":true},{"SourceID":133010,"TargetID":90815,"Directional":true}]},{"ID":5784,"SourceStructureID":180,"TargetStructureID":90817,"Label":"180-90817 via BC Conventional Synapse from 90816 -> 90818","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90816,"TargetID":90818,"Directional":true}]},{"ID":5785,"SourceStructureID":180,"TargetStructureID":90822,"Label":"180-90822 via Ribbon Synapse from 5049 -> 90825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5049,"TargetID":90825,"Directional":true}]},{"ID":5786,"SourceStructureID":180,"TargetStructureID":90840,"Label":"180-90840 via Ribbon Synapse from 90784 -> 90841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90784,"TargetID":90841,"Directional":true}]},{"ID":5787,"SourceStructureID":180,"TargetStructureID":90842,"Label":"180-90842 via Ribbon Synapse from 6063 -> 90843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6063,"TargetID":90843,"Directional":true}]},{"ID":5788,"SourceStructureID":180,"TargetStructureID":90844,"Label":"180-90844 via Ribbon Synapse from 6063 -> 95722","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6063,"TargetID":95722,"Directional":true}]},{"ID":5789,"SourceStructureID":180,"TargetStructureID":90851,"Label":"180-90851 via Ribbon Synapse from 90850 -> 90852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90850,"TargetID":90852,"Directional":true}]},{"ID":5790,"SourceStructureID":180,"TargetStructureID":90853,"Label":"180-90853 via Ribbon Synapse from 90850 -> 90854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90850,"TargetID":90854,"Directional":true}]},{"ID":5791,"SourceStructureID":180,"TargetStructureID":90856,"Label":"180-90856 via BC Conventional Synapse from 90855 -> 90857","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90855,"TargetID":90857,"Directional":true}]},{"ID":5792,"SourceStructureID":180,"TargetStructureID":90859,"Label":"180-90859 via BC Conventional Synapse from 90862 -> 90861","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90862,"TargetID":90861,"Directional":true}]},{"ID":5793,"SourceStructureID":180,"TargetStructureID":90867,"Label":"180-90867 via BC Conventional Synapse from 90866 -> 90868","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90866,"TargetID":90868,"Directional":true}]},{"ID":5794,"SourceStructureID":180,"TargetStructureID":90872,"Label":"180-90872 via Ribbon Synapse from 90870 -> 90873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90870,"TargetID":90873,"Directional":true}]},{"ID":5795,"SourceStructureID":180,"TargetStructureID":90874,"Label":"180-90874 via Ribbon Synapse from 90870 -> 90875","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90870,"TargetID":90875,"Directional":true}]},{"ID":5796,"SourceStructureID":180,"TargetStructureID":90880,"Label":"180-90880 via BC Conventional Synapse from 90879 -> 90881","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90879,"TargetID":90881,"Directional":true}]},{"ID":5797,"SourceStructureID":180,"TargetStructureID":90883,"Label":"180-90883 via Ribbon Synapse from 84809 -> 90884","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84809,"TargetID":90884,"Directional":true}]},{"ID":5798,"SourceStructureID":180,"TargetStructureID":90922,"Label":"180-90922 via Ribbon Synapse from 90921 -> 90923","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90921,"TargetID":90923,"Directional":true}]},{"ID":5799,"SourceStructureID":180,"TargetStructureID":90924,"Label":"180-90924 via Ribbon Synapse from 4925 -> 90927, 90921 -> 90925","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4925,"TargetID":90927,"Directional":true},{"SourceID":90921,"TargetID":90925,"Directional":true}]},{"ID":5800,"SourceStructureID":180,"TargetStructureID":90928,"Label":"180-90928 via Ribbon Synapse from 4925 -> 90930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4925,"TargetID":90930,"Directional":true}]},{"ID":5801,"SourceStructureID":180,"TargetStructureID":90935,"Label":"180-90935 via Ribbon Synapse from 132890 -> 90936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132890,"TargetID":90936,"Directional":true}]},{"ID":5802,"SourceStructureID":180,"TargetStructureID":90949,"Label":"180-90949 via Ribbon Synapse from 902 -> 90950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":902,"TargetID":90950,"Directional":true}]},{"ID":5803,"SourceStructureID":180,"TargetStructureID":90952,"Label":"180-90952 via Ribbon Synapse from 898 -> 90953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":898,"TargetID":90953,"Directional":true}]},{"ID":5804,"SourceStructureID":180,"TargetStructureID":90956,"Label":"180-90956 via Ribbon Synapse from 90959 -> 92723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90959,"TargetID":92723,"Directional":true}]},{"ID":5805,"SourceStructureID":180,"TargetStructureID":90967,"Label":"180-90967 via Ribbon Synapse from 90965 -> 90968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90965,"TargetID":90968,"Directional":true}]},{"ID":5806,"SourceStructureID":180,"TargetStructureID":90971,"Label":"180-90971 via Ribbon Synapse from 90966 -> 90972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90966,"TargetID":90972,"Directional":true}]},{"ID":5807,"SourceStructureID":180,"TargetStructureID":90973,"Label":"180-90973 via Ribbon Synapse from 90966 -> 90974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90966,"TargetID":90974,"Directional":true}]},{"ID":5808,"SourceStructureID":180,"TargetStructureID":90979,"Label":"180-90979 via Ribbon Synapse from 132971 -> 132972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132971,"TargetID":132972,"Directional":true}]},{"ID":5809,"SourceStructureID":180,"TargetStructureID":91014,"Label":"180-91014 via BC Conventional Synapse from 91013 -> 91015, 94888 -> 94889","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91013,"TargetID":91015,"Directional":true},{"SourceID":94888,"TargetID":94889,"Directional":true}]},{"ID":5810,"SourceStructureID":180,"TargetStructureID":94575,"Label":"180-94575 via Ribbon Synapse from 36173 -> 94576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36173,"TargetID":94576,"Directional":true}]},{"ID":5811,"SourceStructureID":180,"TargetStructureID":94577,"Label":"180-94577 via Ribbon Synapse from 36175 -> 133035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36175,"TargetID":133035,"Directional":true}]},{"ID":5812,"SourceStructureID":180,"TargetStructureID":94622,"Label":"180-94622 via Ribbon Synapse from 847 -> 94623, 133051 -> 94623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":847,"TargetID":94623,"Directional":true},{"SourceID":133051,"TargetID":94623,"Directional":true}]},{"ID":5813,"SourceStructureID":180,"TargetStructureID":94633,"Label":"180-94633 via BC Conventional Synapse from 92737 -> 94634","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92737,"TargetID":94634,"Directional":true}]},{"ID":5814,"SourceStructureID":180,"TargetStructureID":94656,"Label":"180-94656 via Ribbon Synapse from 6056 -> 94659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6056,"TargetID":94659,"Directional":true}]},{"ID":5815,"SourceStructureID":180,"TargetStructureID":94664,"Label":"180-94664 via Ribbon Synapse from 6055 -> 94669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6055,"TargetID":94669,"Directional":true}]},{"ID":5816,"SourceStructureID":180,"TargetStructureID":94878,"Label":"180-94878 via Ribbon Synapse from 91024 -> 94879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91024,"TargetID":94879,"Directional":true}]},{"ID":5817,"SourceStructureID":180,"TargetStructureID":94935,"Label":"180-94935 via Ribbon Synapse from 59662 -> 94941","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59662,"TargetID":94941,"Directional":true}]},{"ID":5818,"SourceStructureID":180,"TargetStructureID":94939,"Label":"180-94939 via Ribbon Synapse from 59662 -> 94940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59662,"TargetID":94940,"Directional":true}]},{"ID":5819,"SourceStructureID":180,"TargetStructureID":94950,"Label":"180-94950 via BC Conventional Synapse from 133029 -> 94951","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133029,"TargetID":94951,"Directional":true}]},{"ID":5820,"SourceStructureID":180,"TargetStructureID":94952,"Label":"180-94952 via Ribbon Synapse from 31272 -> 94953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31272,"TargetID":94953,"Directional":true}]},{"ID":5821,"SourceStructureID":180,"TargetStructureID":94964,"Label":"180-94964 via Ribbon Synapse from 29252 -> 94966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29252,"TargetID":94966,"Directional":true}]},{"ID":5822,"SourceStructureID":180,"TargetStructureID":94965,"Label":"180-94965 via Ribbon Synapse from 29253 -> 94967, 133025 -> 94967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29253,"TargetID":94967,"Directional":true},{"SourceID":133025,"TargetID":94967,"Directional":true}]},{"ID":5823,"SourceStructureID":180,"TargetStructureID":94981,"Label":"180-94981 via Ribbon Synapse from 29266 -> 94982","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29266,"TargetID":94982,"Directional":true}]},{"ID":5824,"SourceStructureID":180,"TargetStructureID":94993,"Label":"180-94993 via Ribbon Synapse from 29263 -> 94996","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29263,"TargetID":94996,"Directional":true}]},{"ID":5825,"SourceStructureID":180,"TargetStructureID":94997,"Label":"180-94997 via BC Conventional Synapse from 126085 -> 132878","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":126085,"TargetID":132878,"Directional":true}]},{"ID":5826,"SourceStructureID":180,"TargetStructureID":94997,"Label":"180-94997 via Ribbon Synapse from 29262 -> 94998, 95259 -> 132875, 95264 -> 95265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29262,"TargetID":94998,"Directional":true},{"SourceID":95259,"TargetID":132875,"Directional":true},{"SourceID":95264,"TargetID":95265,"Directional":true}]},{"ID":5827,"SourceStructureID":180,"TargetStructureID":95229,"Label":"180-95229 via Ribbon Synapse from 31274 -> 95230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31274,"TargetID":95230,"Directional":true}]},{"ID":5828,"SourceStructureID":180,"TargetStructureID":95236,"Label":"180-95236 via Unknown from 133092 -> 95237","Type":"Unknown","Directional":true,"Links":[{"SourceID":133092,"TargetID":95237,"Directional":true}]},{"ID":5829,"SourceStructureID":180,"TargetStructureID":95238,"Label":"180-95238 via Ribbon Synapse from 31271 -> 95239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31271,"TargetID":95239,"Directional":true}]},{"ID":5830,"SourceStructureID":180,"TargetStructureID":95256,"Label":"180-95256 via BC Conventional Synapse from 95257 -> 95258","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95257,"TargetID":95258,"Directional":true}]},{"ID":5831,"SourceStructureID":180,"TargetStructureID":95305,"Label":"180-95305 via Ribbon Synapse from 24656 -> 95306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24656,"TargetID":95306,"Directional":true}]},{"ID":5832,"SourceStructureID":180,"TargetStructureID":95321,"Label":"180-95321 via Ribbon Synapse from 59672 -> 133038, 59674 -> 95322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59672,"TargetID":133038,"Directional":true},{"SourceID":59674,"TargetID":95322,"Directional":true}]},{"ID":5833,"SourceStructureID":180,"TargetStructureID":95326,"Label":"180-95326 via Ribbon Synapse from 132945 -> 132946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132945,"TargetID":132946,"Directional":true}]},{"ID":5834,"SourceStructureID":180,"TargetStructureID":95330,"Label":"180-95330 via Ribbon Synapse from 59672 -> 95331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59672,"TargetID":95331,"Directional":true}]},{"ID":5835,"SourceStructureID":180,"TargetStructureID":95332,"Label":"180-95332 via Ribbon Synapse from 71494 -> 95333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71494,"TargetID":95333,"Directional":true}]},{"ID":5836,"SourceStructureID":180,"TargetStructureID":95334,"Label":"180-95334 via Ribbon Synapse from 132945 -> 132947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132945,"TargetID":132947,"Directional":true}]},{"ID":5837,"SourceStructureID":180,"TargetStructureID":95349,"Label":"180-95349 via BC Conventional Synapse from 95352 -> 95353","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95352,"TargetID":95353,"Directional":true}]},{"ID":5838,"SourceStructureID":180,"TargetStructureID":95365,"Label":"180-95365 via Ribbon Synapse from 5735 -> 95372, 133037 -> 95372","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5735,"TargetID":95372,"Directional":true},{"SourceID":133037,"TargetID":95372,"Directional":true}]},{"ID":5839,"SourceStructureID":180,"TargetStructureID":95382,"Label":"180-95382 via Ribbon Synapse from 844 -> 95383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":844,"TargetID":95383,"Directional":true}]},{"ID":5840,"SourceStructureID":180,"TargetStructureID":95384,"Label":"180-95384 via Ribbon Synapse from 95386 -> 95385","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95386,"TargetID":95385,"Directional":true}]},{"ID":5841,"SourceStructureID":180,"TargetStructureID":95398,"Label":"180-95398 via Ribbon Synapse from 862 -> 95403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":862,"TargetID":95403,"Directional":true}]},{"ID":5842,"SourceStructureID":180,"TargetStructureID":95399,"Label":"180-95399 via Ribbon Synapse from 862 -> 95402, 90916 -> 95402","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":862,"TargetID":95402,"Directional":true},{"SourceID":90916,"TargetID":95402,"Directional":true}]},{"ID":5843,"SourceStructureID":180,"TargetStructureID":95408,"Label":"180-95408 via Ribbon Synapse from 95407 -> 95410, 133057 -> 95418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95407,"TargetID":95410,"Directional":true},{"SourceID":133057,"TargetID":95418,"Directional":true}]},{"ID":5844,"SourceStructureID":180,"TargetStructureID":95411,"Label":"180-95411 via Ribbon Synapse from 867 -> 95412, 11938 -> 95413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":867,"TargetID":95412,"Directional":true},{"SourceID":11938,"TargetID":95413,"Directional":true}]},{"ID":5845,"SourceStructureID":180,"TargetStructureID":95419,"Label":"180-95419 via Ribbon Synapse from 875 -> 95420","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":875,"TargetID":95420,"Directional":true}]},{"ID":5846,"SourceStructureID":180,"TargetStructureID":95424,"Label":"180-95424 via Ribbon Synapse from 31286 -> 95425, 95427 -> 95426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31286,"TargetID":95425,"Directional":true},{"SourceID":95427,"TargetID":95426,"Directional":true}]},{"ID":5847,"SourceStructureID":180,"TargetStructureID":95441,"Label":"180-95441 via Ribbon Synapse from 883 -> 95442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":883,"TargetID":95442,"Directional":true}]},{"ID":5848,"SourceStructureID":180,"TargetStructureID":95445,"Label":"180-95445 via Ribbon Synapse from 132896 -> 132984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132896,"TargetID":132984,"Directional":true}]},{"ID":5849,"SourceStructureID":180,"TargetStructureID":95454,"Label":"180-95454 via Ribbon Synapse from 897 -> 95456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":897,"TargetID":95456,"Directional":true}]},{"ID":5850,"SourceStructureID":180,"TargetStructureID":95495,"Label":"180-95495 via BC Conventional Synapse from 132943 -> 132942","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":132943,"TargetID":132942,"Directional":true}]},{"ID":5851,"SourceStructureID":180,"TargetStructureID":95498,"Label":"180-95498 via BC Conventional Synapse from 95497 -> 95499","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95497,"TargetID":95499,"Directional":true}]},{"ID":5852,"SourceStructureID":180,"TargetStructureID":95501,"Label":"180-95501 via Ribbon Synapse from 90959 -> 95505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90959,"TargetID":95505,"Directional":true}]},{"ID":5853,"SourceStructureID":180,"TargetStructureID":95515,"Label":"180-95515 via BC Conventional Synapse from 95516 -> 95517","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95516,"TargetID":95517,"Directional":true}]},{"ID":5854,"SourceStructureID":180,"TargetStructureID":95527,"Label":"180-95527 via Ribbon Synapse from 90986 -> 95529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90986,"TargetID":95529,"Directional":true}]},{"ID":5855,"SourceStructureID":180,"TargetStructureID":95530,"Label":"180-95530 via BC Conventional Synapse from 95535 -> 95536","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95535,"TargetID":95536,"Directional":true}]},{"ID":5856,"SourceStructureID":180,"TargetStructureID":95538,"Label":"180-95538 via Ribbon Synapse from 904 -> 95539, 95544 -> 133099","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":904,"TargetID":95539,"Directional":true},{"SourceID":95544,"TargetID":133099,"Directional":true}]},{"ID":5857,"SourceStructureID":180,"TargetStructureID":95543,"Label":"180-95543 via Ribbon Synapse from 895 -> 133058","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":895,"TargetID":133058,"Directional":true}]},{"ID":5858,"SourceStructureID":180,"TargetStructureID":95545,"Label":"180-95545 via Ribbon Synapse from 95544 -> 133097","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95544,"TargetID":133097,"Directional":true}]},{"ID":5859,"SourceStructureID":180,"TargetStructureID":95546,"Label":"180-95546 via Ribbon Synapse from 11939 -> 95547","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11939,"TargetID":95547,"Directional":true}]},{"ID":5860,"SourceStructureID":180,"TargetStructureID":95560,"Label":"180-95560 via Ribbon Synapse from 95561 -> 95571","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95561,"TargetID":95571,"Directional":true}]},{"ID":5861,"SourceStructureID":180,"TargetStructureID":95562,"Label":"180-95562 via Ribbon Synapse from 95561 -> 95572","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95561,"TargetID":95572,"Directional":true}]},{"ID":5862,"SourceStructureID":180,"TargetStructureID":95563,"Label":"180-95563 via Postsynapse from 95565 -> 95564","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":95565,"TargetID":95564,"Directional":true}]},{"ID":5863,"SourceStructureID":180,"TargetStructureID":95563,"Label":"180-95563 via Ribbon Synapse from 95576 -> 95577","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95576,"TargetID":95577,"Directional":true}]},{"ID":5864,"SourceStructureID":180,"TargetStructureID":95586,"Label":"180-95586 via Ribbon Synapse from 95587 -> 95588","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95587,"TargetID":95588,"Directional":true}]},{"ID":5865,"SourceStructureID":180,"TargetStructureID":95589,"Label":"180-95589 via Cistern Pre from 132904 -> 132905","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":132904,"TargetID":132905,"Directional":true}]},{"ID":5866,"SourceStructureID":180,"TargetStructureID":95589,"Label":"180-95589 via Ribbon Synapse from 132903 -> 95591","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132903,"TargetID":95591,"Directional":true}]},{"ID":5867,"SourceStructureID":180,"TargetStructureID":95603,"Label":"180-95603 via Ribbon Synapse from 4926 -> 95604","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4926,"TargetID":95604,"Directional":true}]},{"ID":5868,"SourceStructureID":180,"TargetStructureID":95607,"Label":"180-95607 via Ribbon Synapse from 855 -> 95608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":855,"TargetID":95608,"Directional":true}]},{"ID":5869,"SourceStructureID":180,"TargetStructureID":95620,"Label":"180-95620 via Ribbon Synapse from 65600 -> 133048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65600,"TargetID":133048,"Directional":true}]},{"ID":5870,"SourceStructureID":180,"TargetStructureID":95674,"Label":"180-95674 via Ribbon Synapse from 95672 -> 95677","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95672,"TargetID":95677,"Directional":true}]},{"ID":5871,"SourceStructureID":180,"TargetStructureID":95678,"Label":"180-95678 via Ribbon Synapse from 90909 -> 95679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90909,"TargetID":95679,"Directional":true}]},{"ID":5872,"SourceStructureID":180,"TargetStructureID":95683,"Label":"180-95683 via Ribbon Synapse from 90910 -> 95685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90910,"TargetID":95685,"Directional":true}]},{"ID":5873,"SourceStructureID":180,"TargetStructureID":95703,"Label":"180-95703 via Ribbon Synapse from 132869 -> 132870","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132869,"TargetID":132870,"Directional":true}]},{"ID":5874,"SourceStructureID":180,"TargetStructureID":95737,"Label":"180-95737 via Ribbon Synapse from 132939 -> 132940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132939,"TargetID":132940,"Directional":true}]},{"ID":5875,"SourceStructureID":180,"TargetStructureID":95740,"Label":"180-95740 via BC Conventional Synapse from 95741 -> 95742","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95741,"TargetID":95742,"Directional":true}]},{"ID":5876,"SourceStructureID":180,"TargetStructureID":95743,"Label":"180-95743 via Ribbon Synapse from 95744 -> 95745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95744,"TargetID":95745,"Directional":true}]},{"ID":5877,"SourceStructureID":180,"TargetStructureID":95759,"Label":"180-95759 via Ribbon Synapse from 19821 -> 95760","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19821,"TargetID":95760,"Directional":true}]},{"ID":5878,"SourceStructureID":180,"TargetStructureID":95807,"Label":"180-95807 via Ribbon Synapse from 31100 -> 95809","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31100,"TargetID":95809,"Directional":true}]},{"ID":5879,"SourceStructureID":180,"TargetStructureID":95810,"Label":"180-95810 via Ribbon Synapse from 31100 -> 95811, 88071 -> 95832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31100,"TargetID":95811,"Directional":true},{"SourceID":88071,"TargetID":95832,"Directional":true}]},{"ID":5880,"SourceStructureID":180,"TargetStructureID":95824,"Label":"180-95824 via Ribbon Synapse from 6097 -> 95825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6097,"TargetID":95825,"Directional":true}]},{"ID":5881,"SourceStructureID":180,"TargetStructureID":95827,"Label":"180-95827 via BC Conventional Synapse from 88070 -> 95828","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":88070,"TargetID":95828,"Directional":true}]},{"ID":5882,"SourceStructureID":180,"TargetStructureID":95829,"Label":"180-95829 via BC Conventional Synapse from 132965 -> 132964","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":132965,"TargetID":132964,"Directional":true}]},{"ID":5883,"SourceStructureID":180,"TargetStructureID":95829,"Label":"180-95829 via Ribbon Synapse from 88071 -> 95831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88071,"TargetID":95831,"Directional":true}]},{"ID":5884,"SourceStructureID":180,"TargetStructureID":95840,"Label":"180-95840 via Ribbon Synapse from 95842 -> 95843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95842,"TargetID":95843,"Directional":true}]},{"ID":5885,"SourceStructureID":180,"TargetStructureID":95844,"Label":"180-95844 via Ribbon Synapse from 95842 -> 95845","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95842,"TargetID":95845,"Directional":true}]},{"ID":5886,"SourceStructureID":180,"TargetStructureID":95877,"Label":"180-95877 via Ribbon Synapse from 95878 -> 95879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95878,"TargetID":95879,"Directional":true}]},{"ID":5887,"SourceStructureID":180,"TargetStructureID":95927,"Label":"180-95927 via Ribbon Synapse from 14139 -> 95958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14139,"TargetID":95958,"Directional":true}]},{"ID":5888,"SourceStructureID":180,"TargetStructureID":95951,"Label":"180-95951 via Ribbon Synapse from 95953 -> 95954","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95953,"TargetID":95954,"Directional":true}]},{"ID":5889,"SourceStructureID":180,"TargetStructureID":95978,"Label":"180-95978 via Ribbon Synapse from 14156 -> 95982","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14156,"TargetID":95982,"Directional":true}]},{"ID":5890,"SourceStructureID":180,"TargetStructureID":95983,"Label":"180-95983 via BC Conventional Synapse from 95984 -> 95985","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95984,"TargetID":95985,"Directional":true}]},{"ID":5891,"SourceStructureID":180,"TargetStructureID":96021,"Label":"180-96021 via Ribbon Synapse from 14151 -> 96022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14151,"TargetID":96022,"Directional":true}]},{"ID":5892,"SourceStructureID":180,"TargetStructureID":96023,"Label":"180-96023 via Ribbon Synapse from 81387 -> 96030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81387,"TargetID":96030,"Directional":true}]},{"ID":5893,"SourceStructureID":180,"TargetStructureID":96026,"Label":"180-96026 via Ribbon Synapse from 14149 -> 96027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14149,"TargetID":96027,"Directional":true}]},{"ID":5894,"SourceStructureID":180,"TargetStructureID":96028,"Label":"180-96028 via Ribbon Synapse from 14155 -> 96029","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14155,"TargetID":96029,"Directional":true}]},{"ID":5895,"SourceStructureID":180,"TargetStructureID":96033,"Label":"180-96033 via Ribbon Synapse from 81387 -> 96034","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81387,"TargetID":96034,"Directional":true}]},{"ID":5896,"SourceStructureID":180,"TargetStructureID":133015,"Label":"180-133015 via Ribbon Synapse from 126090 -> 133016","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126090,"TargetID":133016,"Directional":true}]},{"ID":5897,"SourceStructureID":180,"TargetStructureID":133027,"Label":"180-133027 via Ribbon Synapse from 31272 -> 133028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31272,"TargetID":133028,"Directional":true}]},{"ID":5898,"SourceStructureID":181,"TargetStructureID":173,"Label":"181-173 via Adherens from 20426 -> 20427, 20439 -> 20440","Type":"Adherens","Directional":true,"Links":[{"SourceID":20426,"TargetID":20427,"Directional":true},{"SourceID":20439,"TargetID":20440,"Directional":true}]},{"ID":5899,"SourceStructureID":181,"TargetStructureID":3865,"Label":"181-3865 via Ribbon Synapse from 20521 -> 132174, 33291 -> 36121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20521,"TargetID":132174,"Directional":true},{"SourceID":33291,"TargetID":36121,"Directional":true}]},{"ID":5900,"SourceStructureID":181,"TargetStructureID":8575,"Label":"181-8575 via BC Conventional Synapse from 62847 -> 62846","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62847,"TargetID":62846,"Directional":true}]},{"ID":5901,"SourceStructureID":181,"TargetStructureID":8575,"Label":"181-8575 via Ribbon Synapse from 20520 -> 62258","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20520,"TargetID":62258,"Directional":true}]},{"ID":5902,"SourceStructureID":181,"TargetStructureID":12203,"Label":"181-12203 via Ribbon Synapse from 12244 -> 12242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12244,"TargetID":12242,"Directional":true}]},{"ID":5903,"SourceStructureID":181,"TargetStructureID":31605,"Label":"181-31605 via Ribbon Synapse from 31621 -> 31622","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31621,"TargetID":31622,"Directional":true}]},{"ID":5904,"SourceStructureID":181,"TargetStructureID":54622,"Label":"181-54622 via BC Conventional Synapse from 55945 -> 55946","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55945,"TargetID":55946,"Directional":true}]},{"ID":5905,"SourceStructureID":181,"TargetStructureID":56211,"Label":"181-56211 via Ribbon Synapse from 56232 -> 56231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56232,"TargetID":56231,"Directional":true}]},{"ID":5906,"SourceStructureID":181,"TargetStructureID":129648,"Label":"181-129648 via Ribbon Synapse from 33291 -> 129649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33291,"TargetID":129649,"Directional":true}]},{"ID":5907,"SourceStructureID":181,"TargetStructureID":136432,"Label":"181-136432 via Ribbon Synapse from 18410 -> 136542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18410,"TargetID":136542,"Directional":true}]},{"ID":5908,"SourceStructureID":184,"TargetStructureID":9260,"Label":"184-9260 via Conventional from 30392 -> 30391","Type":"Conventional","Directional":true,"Links":[{"SourceID":30392,"TargetID":30391,"Directional":true}]},{"ID":5909,"SourceStructureID":222,"TargetStructureID":8720,"Label":"222-8720 via BC Conventional Synapse from 63144 -> 15318","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63144,"TargetID":15318,"Directional":true}]},{"ID":5910,"SourceStructureID":223,"TargetStructureID":380,"Label":"223-380 via Conventional from 26532 -> 17876","Type":"Conventional","Directional":true,"Links":[{"SourceID":26532,"TargetID":17876,"Directional":true}]},{"ID":5911,"SourceStructureID":223,"TargetStructureID":5150,"Label":"223-5150 via Conventional from 131213 -> 131212","Type":"Conventional","Directional":true,"Links":[{"SourceID":131213,"TargetID":131212,"Directional":true}]},{"ID":5912,"SourceStructureID":223,"TargetStructureID":6163,"Label":"223-6163 via Conventional from 34935 -> 34936","Type":"Conventional","Directional":true,"Links":[{"SourceID":34935,"TargetID":34936,"Directional":true}]},{"ID":5913,"SourceStructureID":223,"TargetStructureID":21874,"Label":"223-21874 via Conventional from 47086 -> 47087","Type":"Conventional","Directional":true,"Links":[{"SourceID":47086,"TargetID":47087,"Directional":true}]},{"ID":5914,"SourceStructureID":260,"TargetStructureID":250,"Label":"260-250 via Ribbon Synapse from 36184 -> 36185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36184,"TargetID":36185,"Directional":true}]},{"ID":5915,"SourceStructureID":268,"TargetStructureID":5117,"Label":"268-5117 via Ribbon Synapse from 135192 -> 135193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135192,"TargetID":135193,"Directional":true}]},{"ID":5916,"SourceStructureID":269,"TargetStructureID":7468,"Label":"269-7468 via Ribbon Synapse from 42464 -> 29064","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42464,"TargetID":29064,"Directional":true}]},{"ID":5917,"SourceStructureID":273,"TargetStructureID":352,"Label":"273-352 via Ribbon Synapse from 31641 -> 31654, 39992 -> 39994, 64539 -> 31654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31641,"TargetID":31654,"Directional":true},{"SourceID":39992,"TargetID":39994,"Directional":true},{"SourceID":64539,"TargetID":31654,"Directional":true}]},{"ID":5918,"SourceStructureID":273,"TargetStructureID":7157,"Label":"273-7157 via Ribbon Synapse from 26221 -> 26222, 26223 -> 26224, 31641 -> 31645, 31672 -> 31671, 87624 -> 26226, 87632 -> 26239, 87641 -> 87642, 87644 -> 87643, 87651 -> 87657, 87674 -> 87677","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26221,"TargetID":26222,"Directional":true},{"SourceID":26223,"TargetID":26224,"Directional":true},{"SourceID":31641,"TargetID":31645,"Directional":true},{"SourceID":31672,"TargetID":31671,"Directional":true},{"SourceID":87624,"TargetID":26226,"Directional":true},{"SourceID":87632,"TargetID":26239,"Directional":true},{"SourceID":87641,"TargetID":87642,"Directional":true},{"SourceID":87644,"TargetID":87643,"Directional":true},{"SourceID":87651,"TargetID":87657,"Directional":true},{"SourceID":87674,"TargetID":87677,"Directional":true}]},{"ID":5919,"SourceStructureID":273,"TargetStructureID":87626,"Label":"273-87626 via Ribbon Synapse from 87624 -> 87627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87624,"TargetID":87627,"Directional":true}]},{"ID":5920,"SourceStructureID":273,"TargetStructureID":87635,"Label":"273-87635 via Ribbon Synapse from 87634 -> 87636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87634,"TargetID":87636,"Directional":true}]},{"ID":5921,"SourceStructureID":273,"TargetStructureID":87678,"Label":"273-87678 via Ribbon Synapse from 87674 -> 87679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87674,"TargetID":87679,"Directional":true}]},{"ID":5922,"SourceStructureID":276,"TargetStructureID":284,"Label":"276-284 via Ribbon Synapse from 29519 -> 29535, 29534 -> 29533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29519,"TargetID":29535,"Directional":true},{"SourceID":29534,"TargetID":29533,"Directional":true}]},{"ID":5923,"SourceStructureID":276,"TargetStructureID":7157,"Label":"276-7157 via Ribbon Synapse from 94910 -> 29518","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94910,"TargetID":29518,"Directional":true}]},{"ID":5924,"SourceStructureID":276,"TargetStructureID":31399,"Label":"276-31399 via Ribbon Synapse from 31409 -> 31408","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31409,"TargetID":31408,"Directional":true}]},{"ID":5925,"SourceStructureID":277,"TargetStructureID":278,"Label":"277-278 via BC Conventional Synapse from 60497 -> 60496","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":60497,"TargetID":60496,"Directional":true}]},{"ID":5926,"SourceStructureID":277,"TargetStructureID":278,"Label":"277-278 via Ribbon Synapse from 26072 -> 31728","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26072,"TargetID":31728,"Directional":true}]},{"ID":5927,"SourceStructureID":277,"TargetStructureID":606,"Label":"277-606 via Ribbon Synapse from 26011 -> 49132, 26019 -> 52851, 26065 -> 52764, 52847 -> 52829","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26011,"TargetID":49132,"Directional":true},{"SourceID":26019,"TargetID":52851,"Directional":true},{"SourceID":26065,"TargetID":52764,"Directional":true},{"SourceID":52847,"TargetID":52829,"Directional":true}]},{"ID":5928,"SourceStructureID":277,"TargetStructureID":7568,"Label":"277-7568 via Ribbon Synapse from 26048 -> 27147","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26048,"TargetID":27147,"Directional":true}]},{"ID":5929,"SourceStructureID":277,"TargetStructureID":31679,"Label":"277-31679 via Ribbon Synapse from 26412 -> 31692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26412,"TargetID":31692,"Directional":true}]},{"ID":5930,"SourceStructureID":277,"TargetStructureID":70924,"Label":"277-70924 via Ribbon Synapse from 26045 -> 71033","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26045,"TargetID":71033,"Directional":true}]},{"ID":5931,"SourceStructureID":278,"TargetStructureID":276,"Label":"278-276 via Conventional from 46038 -> 46039","Type":"Conventional","Directional":true,"Links":[{"SourceID":46038,"TargetID":46039,"Directional":true}]},{"ID":5932,"SourceStructureID":278,"TargetStructureID":334,"Label":"278-334 via Conventional from 35486 -> 35487","Type":"Conventional","Directional":true,"Links":[{"SourceID":35486,"TargetID":35487,"Directional":true}]},{"ID":5933,"SourceStructureID":278,"TargetStructureID":342,"Label":"278-342 via Conventional from 31726 -> 31724","Type":"Conventional","Directional":true,"Links":[{"SourceID":31726,"TargetID":31724,"Directional":true}]},{"ID":5934,"SourceStructureID":280,"TargetStructureID":284,"Label":"280-284 via Ribbon Synapse from 32575 -> 32574","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32575,"TargetID":32574,"Directional":true}]},{"ID":5935,"SourceStructureID":280,"TargetStructureID":7157,"Label":"280-7157 via Ribbon Synapse from 33590 -> 26265, 87686 -> 87691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33590,"TargetID":26265,"Directional":true},{"SourceID":87686,"TargetID":87691,"Directional":true}]},{"ID":5936,"SourceStructureID":280,"TargetStructureID":33588,"Label":"280-33588 via Ribbon Synapse from 33590 -> 33589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33590,"TargetID":33589,"Directional":true}]},{"ID":5937,"SourceStructureID":280,"TargetStructureID":115519,"Label":"280-115519 via Ribbon Synapse from 115523 -> 115522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115523,"TargetID":115522,"Directional":true}]},{"ID":5938,"SourceStructureID":284,"TargetStructureID":605,"Label":"284-605 via Conventional from 22516 -> 22517","Type":"Conventional","Directional":true,"Links":[{"SourceID":22516,"TargetID":22517,"Directional":true}]},{"ID":5939,"SourceStructureID":284,"TargetStructureID":5150,"Label":"284-5150 via Conventional from 15425 -> 5261","Type":"Conventional","Directional":true,"Links":[{"SourceID":15425,"TargetID":5261,"Directional":true}]},{"ID":5940,"SourceStructureID":284,"TargetStructureID":9787,"Label":"284-9787 via Conventional from 12055 -> 9844","Type":"Conventional","Directional":true,"Links":[{"SourceID":12055,"TargetID":9844,"Directional":true}]},{"ID":5941,"SourceStructureID":285,"TargetStructureID":284,"Label":"285-284 via Ribbon Synapse from 95373 -> 95374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95373,"TargetID":95374,"Directional":true}]},{"ID":5942,"SourceStructureID":285,"TargetStructureID":20299,"Label":"285-20299 via Ribbon Synapse from 20310 -> 20300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20310,"TargetID":20300,"Directional":true}]},{"ID":5943,"SourceStructureID":286,"TargetStructureID":4890,"Label":"286-4890 via Ribbon Synapse from 20294 -> 20006, 20295 -> 20007, 20522 -> 20008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20294,"TargetID":20006,"Directional":true},{"SourceID":20295,"TargetID":20007,"Directional":true},{"SourceID":20522,"TargetID":20008,"Directional":true}]},{"ID":5944,"SourceStructureID":286,"TargetStructureID":5439,"Label":"286-5439 via Ribbon Synapse from 85715 -> 85716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85715,"TargetID":85716,"Directional":true}]},{"ID":5945,"SourceStructureID":286,"TargetStructureID":8579,"Label":"286-8579 via Ribbon Synapse from 20506 -> 62673","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20506,"TargetID":62673,"Directional":true}]},{"ID":5946,"SourceStructureID":286,"TargetStructureID":15796,"Label":"286-15796 via BC Conventional Synapse from 121619 -> 121618","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":121619,"TargetID":121618,"Directional":true}]},{"ID":5947,"SourceStructureID":286,"TargetStructureID":18282,"Label":"286-18282 via Ribbon Synapse from 20506 -> 20502, 38860 -> 38851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20506,"TargetID":20502,"Directional":true},{"SourceID":38860,"TargetID":38851,"Directional":true}]},{"ID":5948,"SourceStructureID":286,"TargetStructureID":20299,"Label":"286-20299 via Ribbon Synapse from 27669 -> 45608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27669,"TargetID":45608,"Directional":true}]},{"ID":5949,"SourceStructureID":286,"TargetStructureID":20311,"Label":"286-20311 via Ribbon Synapse from 100586 -> 100585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100586,"TargetID":100585,"Directional":true}]},{"ID":5950,"SourceStructureID":286,"TargetStructureID":32547,"Label":"286-32547 via Ribbon Synapse from 26452 -> 99150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26452,"TargetID":99150,"Directional":true}]},{"ID":5951,"SourceStructureID":286,"TargetStructureID":33148,"Label":"286-33148 via BC Conventional Synapse from 129128 -> 33158","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":129128,"TargetID":33158,"Directional":true}]},{"ID":5952,"SourceStructureID":286,"TargetStructureID":34138,"Label":"286-34138 via Ribbon Synapse from 34143 -> 34142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34143,"TargetID":34142,"Directional":true}]},{"ID":5953,"SourceStructureID":286,"TargetStructureID":34148,"Label":"286-34148 via Ribbon Synapse from 26460 -> 38751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26460,"TargetID":38751,"Directional":true}]},{"ID":5954,"SourceStructureID":289,"TargetStructureID":606,"Label":"289-606 via Conventional from 53204 -> 53203","Type":"Conventional","Directional":true,"Links":[{"SourceID":53204,"TargetID":53203,"Directional":true}]},{"ID":5955,"SourceStructureID":293,"TargetStructureID":284,"Label":"293-284 via Ribbon Synapse from 14379 -> 17507, 17425 -> 17516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14379,"TargetID":17507,"Directional":true},{"SourceID":17425,"TargetID":17516,"Directional":true}]},{"ID":5956,"SourceStructureID":293,"TargetStructureID":6153,"Label":"293-6153 via Ribbon Synapse from 17424 -> 18167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17424,"TargetID":18167,"Directional":true}]},{"ID":5957,"SourceStructureID":294,"TargetStructureID":223,"Label":"294-223 via Ribbon Synapse from 17399 -> 17400, 17406 -> 17417, 17873 -> 17874, 120618 -> 120622, 120619 -> 120623, 120620 -> 120625, 120621 -> 120624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17399,"TargetID":17400,"Directional":true},{"SourceID":17406,"TargetID":17417,"Directional":true},{"SourceID":17873,"TargetID":17874,"Directional":true},{"SourceID":120618,"TargetID":120622,"Directional":true},{"SourceID":120619,"TargetID":120623,"Directional":true},{"SourceID":120620,"TargetID":120625,"Directional":true},{"SourceID":120621,"TargetID":120624,"Directional":true}]},{"ID":5958,"SourceStructureID":294,"TargetStructureID":284,"Label":"294-284 via Ribbon Synapse from 14352 -> 21567, 17406 -> 17522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14352,"TargetID":21567,"Directional":true},{"SourceID":17406,"TargetID":17522,"Directional":true}]},{"ID":5959,"SourceStructureID":294,"TargetStructureID":410,"Label":"294-410 via Ribbon Synapse from 16665 -> 16699, 17412 -> 17411, 17413 -> 17414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16665,"TargetID":16699,"Directional":true},{"SourceID":17412,"TargetID":17411,"Directional":true},{"SourceID":17413,"TargetID":17414,"Directional":true}]},{"ID":5960,"SourceStructureID":294,"TargetStructureID":4850,"Label":"294-4850 via Ribbon Synapse from 17873 -> 22540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17873,"TargetID":22540,"Directional":true}]},{"ID":5961,"SourceStructureID":294,"TargetStructureID":6153,"Label":"294-6153 via Ribbon Synapse from 16654 -> 16655, 16656 -> 16657, 16659 -> 16660, 16664 -> 16698, 16669 -> 16668, 16709 -> 16707, 17835 -> 17834","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16654,"TargetID":16655,"Directional":true},{"SourceID":16656,"TargetID":16657,"Directional":true},{"SourceID":16659,"TargetID":16660,"Directional":true},{"SourceID":16664,"TargetID":16698,"Directional":true},{"SourceID":16669,"TargetID":16668,"Directional":true},{"SourceID":16709,"TargetID":16707,"Directional":true},{"SourceID":17835,"TargetID":17834,"Directional":true}]},{"ID":5962,"SourceStructureID":294,"TargetStructureID":25688,"Label":"294-25688 via Ribbon Synapse from 17413 -> 25701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17413,"TargetID":25701,"Directional":true}]},{"ID":5963,"SourceStructureID":298,"TargetStructureID":8720,"Label":"298-8720 via Ribbon Synapse from 63500 -> 63499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63500,"TargetID":63499,"Directional":true}]},{"ID":5964,"SourceStructureID":299,"TargetStructureID":5107,"Label":"299-5107 via Ribbon Synapse from 7218 -> 55355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7218,"TargetID":55355,"Directional":true}]},{"ID":5965,"SourceStructureID":299,"TargetStructureID":38735,"Label":"299-38735 via Ribbon Synapse from 38739 -> 38738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38739,"TargetID":38738,"Directional":true}]},{"ID":5966,"SourceStructureID":299,"TargetStructureID":47013,"Label":"299-47013 via Ribbon Synapse from 47074 -> 47070, 47075 -> 47069","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47074,"TargetID":47070,"Directional":true},{"SourceID":47075,"TargetID":47069,"Directional":true}]},{"ID":5967,"SourceStructureID":299,"TargetStructureID":47095,"Label":"299-47095 via Ribbon Synapse from 47096 -> 47097","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47096,"TargetID":47097,"Directional":true}]},{"ID":5968,"SourceStructureID":299,"TargetStructureID":47104,"Label":"299-47104 via Ribbon Synapse from 47103 -> 47105","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47103,"TargetID":47105,"Directional":true}]},{"ID":5969,"SourceStructureID":299,"TargetStructureID":47109,"Label":"299-47109 via Ribbon Synapse from 47103 -> 47111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47103,"TargetID":47111,"Directional":true}]},{"ID":5970,"SourceStructureID":304,"TargetStructureID":28913,"Label":"304-28913 via Conventional from 129168 -> 28923, 129174 -> 28921","Type":"Conventional","Directional":true,"Links":[{"SourceID":129168,"TargetID":28923,"Directional":true},{"SourceID":129174,"TargetID":28921,"Directional":true}]},{"ID":5971,"SourceStructureID":304,"TargetStructureID":129181,"Label":"304-129181 via Conventional from 129182 -> 129183","Type":"Conventional","Directional":true,"Links":[{"SourceID":129182,"TargetID":129183,"Directional":true}]},{"ID":5972,"SourceStructureID":307,"TargetStructureID":906,"Label":"307-906 via Ribbon Synapse from 15973 -> 15903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15973,"TargetID":15903,"Directional":true}]},{"ID":5973,"SourceStructureID":307,"TargetStructureID":7594,"Label":"307-7594 via Ribbon Synapse from 16591 -> 46860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16591,"TargetID":46860,"Directional":true}]},{"ID":5974,"SourceStructureID":307,"TargetStructureID":9769,"Label":"307-9769 via Ribbon Synapse from 7257 -> 55107, 7281 -> 12356, 12335 -> 12332, 12337 -> 12338, 12357 -> 12358, 15954 -> 15955, 15975 -> 55153, 16362 -> 12330, 16364 -> 12326","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7257,"TargetID":55107,"Directional":true},{"SourceID":7281,"TargetID":12356,"Directional":true},{"SourceID":12335,"TargetID":12332,"Directional":true},{"SourceID":12337,"TargetID":12338,"Directional":true},{"SourceID":12357,"TargetID":12358,"Directional":true},{"SourceID":15954,"TargetID":15955,"Directional":true},{"SourceID":15975,"TargetID":55153,"Directional":true},{"SourceID":16362,"TargetID":12330,"Directional":true},{"SourceID":16364,"TargetID":12326,"Directional":true}]},{"ID":5975,"SourceStructureID":307,"TargetStructureID":32668,"Label":"307-32668 via Ribbon Synapse from 7253 -> 32669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7253,"TargetID":32669,"Directional":true}]},{"ID":5976,"SourceStructureID":307,"TargetStructureID":38632,"Label":"307-38632 via Ribbon Synapse from 68703 -> 68704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68703,"TargetID":68704,"Directional":true}]},{"ID":5977,"SourceStructureID":307,"TargetStructureID":45326,"Label":"307-45326 via Ribbon Synapse from 7233 -> 45330, 7250 -> 45333, 7264 -> 45341, 7265 -> 45342","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7233,"TargetID":45330,"Directional":true},{"SourceID":7250,"TargetID":45333,"Directional":true},{"SourceID":7264,"TargetID":45341,"Directional":true},{"SourceID":7265,"TargetID":45342,"Directional":true}]},{"ID":5978,"SourceStructureID":307,"TargetStructureID":45336,"Label":"307-45336 via Ribbon Synapse from 7250 -> 45338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7250,"TargetID":45338,"Directional":true}]},{"ID":5979,"SourceStructureID":307,"TargetStructureID":45358,"Label":"307-45358 via Ribbon Synapse from 7237 -> 45363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7237,"TargetID":45363,"Directional":true}]},{"ID":5980,"SourceStructureID":308,"TargetStructureID":422,"Label":"308-422 via Conventional from 43339 -> 43340, 43341 -> 43342","Type":"Conventional","Directional":true,"Links":[{"SourceID":43339,"TargetID":43340,"Directional":true},{"SourceID":43341,"TargetID":43342,"Directional":true}]},{"ID":5981,"SourceStructureID":308,"TargetStructureID":2610,"Label":"308-2610 via Conventional from 43590 -> 43591, 43760 -> 43761","Type":"Conventional","Directional":true,"Links":[{"SourceID":43590,"TargetID":43591,"Directional":true},{"SourceID":43760,"TargetID":43761,"Directional":true}]},{"ID":5982,"SourceStructureID":308,"TargetStructureID":5017,"Label":"308-5017 via Conventional from 42551 -> 42554, 42556 -> 42557, 42558 -> 42559, 42560 -> 42561, 86721 -> 86722","Type":"Conventional","Directional":true,"Links":[{"SourceID":42551,"TargetID":42554,"Directional":true},{"SourceID":42556,"TargetID":42557,"Directional":true},{"SourceID":42558,"TargetID":42559,"Directional":true},{"SourceID":42560,"TargetID":42561,"Directional":true},{"SourceID":86721,"TargetID":86722,"Directional":true}]},{"ID":5983,"SourceStructureID":308,"TargetStructureID":8749,"Label":"308-8749 via Conventional from 42571 -> 8830, 42572 -> 42573, 43459 -> 8823, 43462 -> 8821, 43465 -> 43467, 43469 -> 43468, 43470 -> 8801, 43471 -> 43472, 86718 -> 86719","Type":"Conventional","Directional":true,"Links":[{"SourceID":42571,"TargetID":8830,"Directional":true},{"SourceID":42572,"TargetID":42573,"Directional":true},{"SourceID":43459,"TargetID":8823,"Directional":true},{"SourceID":43462,"TargetID":8821,"Directional":true},{"SourceID":43465,"TargetID":43467,"Directional":true},{"SourceID":43469,"TargetID":43468,"Directional":true},{"SourceID":43470,"TargetID":8801,"Directional":true},{"SourceID":43471,"TargetID":43472,"Directional":true},{"SourceID":86718,"TargetID":86719,"Directional":true}]},{"ID":5984,"SourceStructureID":308,"TargetStructureID":10872,"Label":"308-10872 via Conventional from 43774 -> 15055, 43775 -> 15058","Type":"Conventional","Directional":true,"Links":[{"SourceID":43774,"TargetID":15055,"Directional":true},{"SourceID":43775,"TargetID":15058,"Directional":true}]},{"ID":5985,"SourceStructureID":308,"TargetStructureID":11042,"Label":"308-11042 via Conventional from 42696 -> 42701","Type":"Conventional","Directional":true,"Links":[{"SourceID":42696,"TargetID":42701,"Directional":true}]},{"ID":5986,"SourceStructureID":308,"TargetStructureID":17228,"Label":"308-17228 via Conventional from 43535 -> 43537, 43536 -> 43538","Type":"Conventional","Directional":true,"Links":[{"SourceID":43535,"TargetID":43537,"Directional":true},{"SourceID":43536,"TargetID":43538,"Directional":true}]},{"ID":5987,"SourceStructureID":309,"TargetStructureID":223,"Label":"309-223 via Ribbon Synapse from 120616 -> 120617","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120616,"TargetID":120617,"Directional":true}]},{"ID":5988,"SourceStructureID":309,"TargetStructureID":310,"Label":"309-310 via Ribbon cluster from 122253 -> 21798","Type":"Ribbon cluster","Directional":true,"Links":[{"SourceID":122253,"TargetID":21798,"Directional":true}]},{"ID":5989,"SourceStructureID":309,"TargetStructureID":310,"Label":"309-310 via Ribbon Synapse from 6676 -> 21798, 13221 -> 21799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6676,"TargetID":21798,"Directional":true},{"SourceID":13221,"TargetID":21799,"Directional":true}]},{"ID":5990,"SourceStructureID":309,"TargetStructureID":525,"Label":"309-525 via Ribbon Synapse from 13239 -> 6270","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13239,"TargetID":6270,"Directional":true}]},{"ID":5991,"SourceStructureID":309,"TargetStructureID":5118,"Label":"309-5118 via Ribbon Synapse from 13387 -> 6545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13387,"TargetID":6545,"Directional":true}]},{"ID":5992,"SourceStructureID":309,"TargetStructureID":18282,"Label":"309-18282 via Ribbon Synapse from 13343 -> 20330","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13343,"TargetID":20330,"Directional":true}]},{"ID":5993,"SourceStructureID":309,"TargetStructureID":25440,"Label":"309-25440 via Ribbon Synapse from 13331 -> 25463","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13331,"TargetID":25463,"Directional":true}]},{"ID":5994,"SourceStructureID":309,"TargetStructureID":37288,"Label":"309-37288 via Ribbon Synapse from 13246 -> 37371, 13255 -> 37369, 13265 -> 37385, 13309 -> 37356, 28697 -> 37370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13246,"TargetID":37371,"Directional":true},{"SourceID":13255,"TargetID":37369,"Directional":true},{"SourceID":13265,"TargetID":37385,"Directional":true},{"SourceID":13309,"TargetID":37356,"Directional":true},{"SourceID":28697,"TargetID":37370,"Directional":true}]},{"ID":5995,"SourceStructureID":309,"TargetStructureID":121541,"Label":"309-121541 via Ribbon Synapse from 13306 -> 121542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13306,"TargetID":121542,"Directional":true}]},{"ID":5996,"SourceStructureID":311,"TargetStructureID":69537,"Label":"311-69537 via Ribbon Synapse from 69572 -> 69571","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69572,"TargetID":69571,"Directional":true}]},{"ID":5997,"SourceStructureID":318,"TargetStructureID":483,"Label":"318-483 via Conventional from 102686 -> 6757","Type":"Conventional","Directional":true,"Links":[{"SourceID":102686,"TargetID":6757,"Directional":true}]},{"ID":5998,"SourceStructureID":321,"TargetStructureID":288,"Label":"321-288 via Cistern Pre from 38808 -> 38809","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":38808,"TargetID":38809,"Directional":true}]},{"ID":5999,"SourceStructureID":321,"TargetStructureID":9769,"Label":"321-9769 via Ribbon Synapse from 30094 -> 30091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30094,"TargetID":30091,"Directional":true}]},{"ID":6000,"SourceStructureID":321,"TargetStructureID":32566,"Label":"321-32566 via Ribbon Synapse from 99154 -> 99151","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99154,"TargetID":99151,"Directional":true}]},{"ID":6001,"SourceStructureID":321,"TargetStructureID":70924,"Label":"321-70924 via Ribbon Synapse from 122217 -> 122216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122217,"TargetID":122216,"Directional":true}]},{"ID":6002,"SourceStructureID":321,"TargetStructureID":71882,"Label":"321-71882 via Ribbon Synapse from 90239 -> 90236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90239,"TargetID":90236,"Directional":true}]},{"ID":6003,"SourceStructureID":321,"TargetStructureID":90151,"Label":"321-90151 via Ribbon Synapse from 65949 -> 90158","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65949,"TargetID":90158,"Directional":true}]},{"ID":6004,"SourceStructureID":324,"TargetStructureID":606,"Label":"324-606 via Ribbon Synapse from 12381 -> 53072, 30744 -> 53080, 50893 -> 53282, 52391 -> 52392, 53056 -> 53055, 53062 -> 53061, 53086 -> 53087, 53158 -> 53159, 53160 -> 53161, 53261 -> 53262, 53271 -> 53270, 53280 -> 53285, 53289 -> 53290, 53301 -> 53302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12381,"TargetID":53072,"Directional":true},{"SourceID":30744,"TargetID":53080,"Directional":true},{"SourceID":50893,"TargetID":53282,"Directional":true},{"SourceID":52391,"TargetID":52392,"Directional":true},{"SourceID":53056,"TargetID":53055,"Directional":true},{"SourceID":53062,"TargetID":53061,"Directional":true},{"SourceID":53086,"TargetID":53087,"Directional":true},{"SourceID":53158,"TargetID":53159,"Directional":true},{"SourceID":53160,"TargetID":53161,"Directional":true},{"SourceID":53261,"TargetID":53262,"Directional":true},{"SourceID":53271,"TargetID":53270,"Directional":true},{"SourceID":53280,"TargetID":53285,"Directional":true},{"SourceID":53289,"TargetID":53290,"Directional":true},{"SourceID":53301,"TargetID":53302,"Directional":true}]},{"ID":6005,"SourceStructureID":324,"TargetStructureID":9769,"Label":"324-9769 via Ribbon Synapse from 12369 -> 12367, 12381 -> 12375, 12383 -> 12384, 12385 -> 12386, 12387 -> 12388, 12572 -> 12390, 30744 -> 53081, 52391 -> 12371, 120594 -> 120595","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12369,"TargetID":12367,"Directional":true},{"SourceID":12381,"TargetID":12375,"Directional":true},{"SourceID":12383,"TargetID":12384,"Directional":true},{"SourceID":12385,"TargetID":12386,"Directional":true},{"SourceID":12387,"TargetID":12388,"Directional":true},{"SourceID":12572,"TargetID":12390,"Directional":true},{"SourceID":30744,"TargetID":53081,"Directional":true},{"SourceID":52391,"TargetID":12371,"Directional":true},{"SourceID":120594,"TargetID":120595,"Directional":true}]},{"ID":6006,"SourceStructureID":324,"TargetStructureID":20311,"Label":"324-20311 via Ribbon Synapse from 30740 -> 100601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30740,"TargetID":100601,"Directional":true}]},{"ID":6007,"SourceStructureID":324,"TargetStructureID":32581,"Label":"324-32581 via Ribbon Synapse from 32596 -> 32594","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32596,"TargetID":32594,"Directional":true}]},{"ID":6008,"SourceStructureID":324,"TargetStructureID":34494,"Label":"324-34494 via Ribbon Synapse from 35173 -> 35172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35173,"TargetID":35172,"Directional":true}]},{"ID":6009,"SourceStructureID":324,"TargetStructureID":38632,"Label":"324-38632 via Ribbon Synapse from 30724 -> 38661, 30726 -> 38660, 30728 -> 38663, 30731 -> 38658, 30733 -> 38653, 30734 -> 38650, 30735 -> 38648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30724,"TargetID":38661,"Directional":true},{"SourceID":30726,"TargetID":38660,"Directional":true},{"SourceID":30728,"TargetID":38663,"Directional":true},{"SourceID":30731,"TargetID":38658,"Directional":true},{"SourceID":30733,"TargetID":38653,"Directional":true},{"SourceID":30734,"TargetID":38650,"Directional":true},{"SourceID":30735,"TargetID":38648,"Directional":true}]},{"ID":6010,"SourceStructureID":324,"TargetStructureID":50982,"Label":"324-50982 via Ribbon Synapse from 52383 -> 52384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52383,"TargetID":52384,"Directional":true}]},{"ID":6011,"SourceStructureID":324,"TargetStructureID":55403,"Label":"324-55403 via Ribbon Synapse from 43562 -> 55452, 53271 -> 55406, 55416 -> 55417, 55434 -> 55433","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43562,"TargetID":55452,"Directional":true},{"SourceID":53271,"TargetID":55406,"Directional":true},{"SourceID":55416,"TargetID":55417,"Directional":true},{"SourceID":55434,"TargetID":55433,"Directional":true}]},{"ID":6012,"SourceStructureID":324,"TargetStructureID":55517,"Label":"324-55517 via Ribbon Synapse from 53261 -> 55525, 53301 -> 55520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53261,"TargetID":55525,"Directional":true},{"SourceID":53301,"TargetID":55520,"Directional":true}]},{"ID":6013,"SourceStructureID":324,"TargetStructureID":71882,"Label":"324-71882 via Ribbon Synapse from 90354 -> 90345","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90354,"TargetID":90345,"Directional":true}]},{"ID":6014,"SourceStructureID":324,"TargetStructureID":83385,"Label":"324-83385 via Ribbon Synapse from 83398 -> 83438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83398,"TargetID":83438,"Directional":true}]},{"ID":6015,"SourceStructureID":324,"TargetStructureID":83409,"Label":"324-83409 via Ribbon Synapse from 83405 -> 83442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83405,"TargetID":83442,"Directional":true}]},{"ID":6016,"SourceStructureID":324,"TargetStructureID":83421,"Label":"324-83421 via BC Conventional Synapse from 83447 -> 83446","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":83447,"TargetID":83446,"Directional":true}]},{"ID":6017,"SourceStructureID":324,"TargetStructureID":83425,"Label":"324-83425 via Ribbon Synapse from 83424 -> 83426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83424,"TargetID":83426,"Directional":true}]},{"ID":6018,"SourceStructureID":324,"TargetStructureID":83430,"Label":"324-83430 via Ribbon Synapse from 83597 -> 83598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83597,"TargetID":83598,"Directional":true}]},{"ID":6019,"SourceStructureID":324,"TargetStructureID":83439,"Label":"324-83439 via Ribbon Synapse from 83402 -> 83440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83402,"TargetID":83440,"Directional":true}]},{"ID":6020,"SourceStructureID":324,"TargetStructureID":83482,"Label":"324-83482 via Ribbon Synapse from 83481 -> 83485","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83481,"TargetID":83485,"Directional":true}]},{"ID":6021,"SourceStructureID":324,"TargetStructureID":83487,"Label":"324-83487 via Ribbon Synapse from 83481 -> 96962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83481,"TargetID":96962,"Directional":true}]},{"ID":6022,"SourceStructureID":324,"TargetStructureID":83535,"Label":"324-83535 via Ribbon Synapse from 83384 -> 83536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83384,"TargetID":83536,"Directional":true}]},{"ID":6023,"SourceStructureID":324,"TargetStructureID":83540,"Label":"324-83540 via Ribbon Synapse from 83539 -> 83543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83539,"TargetID":83543,"Directional":true}]},{"ID":6024,"SourceStructureID":324,"TargetStructureID":83541,"Label":"324-83541 via Ribbon Synapse from 83539 -> 83542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83539,"TargetID":83542,"Directional":true}]},{"ID":6025,"SourceStructureID":324,"TargetStructureID":83545,"Label":"324-83545 via Ribbon Synapse from 83544 -> 96551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83544,"TargetID":96551,"Directional":true}]},{"ID":6026,"SourceStructureID":324,"TargetStructureID":83550,"Label":"324-83550 via Ribbon Synapse from 83544 -> 83551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83544,"TargetID":83551,"Directional":true}]},{"ID":6027,"SourceStructureID":324,"TargetStructureID":83552,"Label":"324-83552 via Ribbon Synapse from 83544 -> 83553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83544,"TargetID":83553,"Directional":true}]},{"ID":6028,"SourceStructureID":324,"TargetStructureID":83554,"Label":"324-83554 via Ribbon Synapse from 83544 -> 83555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83544,"TargetID":83555,"Directional":true}]},{"ID":6029,"SourceStructureID":324,"TargetStructureID":83590,"Label":"324-83590 via Ribbon Synapse from 83568 -> 83593","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83568,"TargetID":83593,"Directional":true}]},{"ID":6030,"SourceStructureID":324,"TargetStructureID":83591,"Label":"324-83591 via Ribbon Synapse from 83568 -> 83592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83568,"TargetID":83592,"Directional":true}]},{"ID":6031,"SourceStructureID":324,"TargetStructureID":93779,"Label":"324-93779 via BC Conventional Synapse from 122108 -> 122107","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":122108,"TargetID":122107,"Directional":true}]},{"ID":6032,"SourceStructureID":325,"TargetStructureID":6153,"Label":"325-6153 via Ribbon Synapse from 8173 -> 10739","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8173,"TargetID":10739,"Directional":true}]},{"ID":6033,"SourceStructureID":325,"TargetStructureID":29198,"Label":"325-29198 via Ribbon Synapse from 29205 -> 29203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29205,"TargetID":29203,"Directional":true}]},{"ID":6034,"SourceStructureID":325,"TargetStructureID":30379,"Label":"325-30379 via Ribbon Synapse from 29204 -> 30380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29204,"TargetID":30380,"Directional":true}]},{"ID":6035,"SourceStructureID":327,"TargetStructureID":5107,"Label":"327-5107 via Ribbon Synapse from 23037 -> 23036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23037,"TargetID":23036,"Directional":true}]},{"ID":6036,"SourceStructureID":327,"TargetStructureID":5481,"Label":"327-5481 via Ribbon Synapse from 14283 -> 90179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14283,"TargetID":90179,"Directional":true}]},{"ID":6037,"SourceStructureID":327,"TargetStructureID":7568,"Label":"327-7568 via Ribbon Synapse from 27138 -> 27119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27138,"TargetID":27119,"Directional":true}]},{"ID":6038,"SourceStructureID":327,"TargetStructureID":8575,"Label":"327-8575 via BC Conventional Synapse from 14238 -> 55281","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":14238,"TargetID":55281,"Directional":true}]},{"ID":6039,"SourceStructureID":327,"TargetStructureID":9769,"Label":"327-9769 via Ribbon Synapse from 12394 -> 12393, 31685 -> 31686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12394,"TargetID":12393,"Directional":true},{"SourceID":31685,"TargetID":31686,"Directional":true}]},{"ID":6040,"SourceStructureID":327,"TargetStructureID":12564,"Label":"327-12564 via Ribbon Synapse from 55629 -> 55628","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55629,"TargetID":55628,"Directional":true}]},{"ID":6041,"SourceStructureID":327,"TargetStructureID":32566,"Label":"327-32566 via BC Conventional Synapse from 14308 -> 32568","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":14308,"TargetID":32568,"Directional":true}]},{"ID":6042,"SourceStructureID":327,"TargetStructureID":34055,"Label":"327-34055 via Ribbon Synapse from 122146 -> 34060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122146,"TargetID":34060,"Directional":true}]},{"ID":6043,"SourceStructureID":327,"TargetStructureID":55201,"Label":"327-55201 via Ribbon Synapse from 14283 -> 55207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14283,"TargetID":55207,"Directional":true}]},{"ID":6044,"SourceStructureID":328,"TargetStructureID":284,"Label":"328-284 via Ribbon Synapse from 29522 -> 29521, 31678 -> 12054","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29522,"TargetID":29521,"Directional":true},{"SourceID":31678,"TargetID":12054,"Directional":true}]},{"ID":6045,"SourceStructureID":328,"TargetStructureID":6153,"Label":"328-6153 via Ribbon Synapse from 33512 -> 37292, 33514 -> 37291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33512,"TargetID":37292,"Directional":true},{"SourceID":33514,"TargetID":37291,"Directional":true}]},{"ID":6046,"SourceStructureID":328,"TargetStructureID":7157,"Label":"328-7157 via Ribbon Synapse from 29517 -> 29516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29517,"TargetID":29516,"Directional":true}]},{"ID":6047,"SourceStructureID":328,"TargetStructureID":30370,"Label":"328-30370 via Ribbon Synapse from 30365 -> 30374, 30367 -> 30375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30365,"TargetID":30374,"Directional":true},{"SourceID":30367,"TargetID":30375,"Directional":true}]},{"ID":6048,"SourceStructureID":330,"TargetStructureID":606,"Label":"330-606 via Ribbon Synapse from 12351 -> 12349, 25934 -> 49178, 25939 -> 52927, 25944 -> 52976, 25945 -> 52988, 25950 -> 53043, 25952 -> 53038, 25977 -> 49153, 26103 -> 52789, 26118 -> 49025, 26124 -> 9798, 26131 -> 52711, 26164 -> 53143, 26181 -> 52601, 52614 -> 52613, 52649 -> 52648, 52760 -> 52761, 52809 -> 52810, 53053 -> 53052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12351,"TargetID":12349,"Directional":true},{"SourceID":25934,"TargetID":49178,"Directional":true},{"SourceID":25939,"TargetID":52927,"Directional":true},{"SourceID":25944,"TargetID":52976,"Directional":true},{"SourceID":25945,"TargetID":52988,"Directional":true},{"SourceID":25950,"TargetID":53043,"Directional":true},{"SourceID":25952,"TargetID":53038,"Directional":true},{"SourceID":25977,"TargetID":49153,"Directional":true},{"SourceID":26103,"TargetID":52789,"Directional":true},{"SourceID":26118,"TargetID":49025,"Directional":true},{"SourceID":26124,"TargetID":9798,"Directional":true},{"SourceID":26131,"TargetID":52711,"Directional":true},{"SourceID":26164,"TargetID":53143,"Directional":true},{"SourceID":26181,"TargetID":52601,"Directional":true},{"SourceID":52614,"TargetID":52613,"Directional":true},{"SourceID":52649,"TargetID":52648,"Directional":true},{"SourceID":52760,"TargetID":52761,"Directional":true},{"SourceID":52809,"TargetID":52810,"Directional":true},{"SourceID":53053,"TargetID":53052,"Directional":true}]},{"ID":6049,"SourceStructureID":330,"TargetStructureID":9769,"Label":"330-9769 via Ribbon Synapse from 25945 -> 53027, 54637 -> 55283, 122143 -> 122145, 122144 -> 122145","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25945,"TargetID":53027,"Directional":true},{"SourceID":54637,"TargetID":55283,"Directional":true},{"SourceID":122143,"TargetID":122145,"Directional":true},{"SourceID":122144,"TargetID":122145,"Directional":true}]},{"ID":6050,"SourceStructureID":330,"TargetStructureID":12408,"Label":"330-12408 via Ribbon Synapse from 12426 -> 12420, 52809 -> 52811, 54637 -> 55282","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12426,"TargetID":12420,"Directional":true},{"SourceID":52809,"TargetID":52811,"Directional":true},{"SourceID":54637,"TargetID":55282,"Directional":true}]},{"ID":6051,"SourceStructureID":330,"TargetStructureID":31679,"Label":"330-31679 via Ribbon Synapse from 25951 -> 31682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25951,"TargetID":31682,"Directional":true}]},{"ID":6052,"SourceStructureID":330,"TargetStructureID":34055,"Label":"330-34055 via Ribbon Synapse from 25773 -> 34069, 26174 -> 34285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25773,"TargetID":34069,"Directional":true},{"SourceID":26174,"TargetID":34285,"Directional":true}]},{"ID":6053,"SourceStructureID":330,"TargetStructureID":34270,"Label":"330-34270 via Ribbon Synapse from 26154 -> 34278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26154,"TargetID":34278,"Directional":true}]},{"ID":6054,"SourceStructureID":330,"TargetStructureID":38632,"Label":"330-38632 via Ribbon Synapse from 26087 -> 38679, 26147 -> 38671, 26156 -> 38670, 26163 -> 38666, 38691 -> 38689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26087,"TargetID":38679,"Directional":true},{"SourceID":26147,"TargetID":38671,"Directional":true},{"SourceID":26156,"TargetID":38670,"Directional":true},{"SourceID":26163,"TargetID":38666,"Directional":true},{"SourceID":38691,"TargetID":38689,"Directional":true}]},{"ID":6055,"SourceStructureID":330,"TargetStructureID":38703,"Label":"330-38703 via Ribbon Synapse from 25767 -> 38706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25767,"TargetID":38706,"Directional":true}]},{"ID":6056,"SourceStructureID":330,"TargetStructureID":89989,"Label":"330-89989 via Ribbon Synapse from 26131 -> 89991","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26131,"TargetID":89991,"Directional":true}]},{"ID":6057,"SourceStructureID":330,"TargetStructureID":119008,"Label":"330-119008 via Ribbon Synapse from 119005 -> 119012","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119005,"TargetID":119012,"Directional":true}]},{"ID":6058,"SourceStructureID":330,"TargetStructureID":147696,"Label":"330-147696 via Ribbon Synapse from 147748 -> 147747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147748,"TargetID":147747,"Directional":true}]},{"ID":6059,"SourceStructureID":332,"TargetStructureID":4890,"Label":"332-4890 via Ribbon Synapse from 96582 -> 96583","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96582,"TargetID":96583,"Directional":true}]},{"ID":6060,"SourceStructureID":332,"TargetStructureID":5117,"Label":"332-5117 via Ribbon Synapse from 82147 -> 135205, 135204 -> 135203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82147,"TargetID":135205,"Directional":true},{"SourceID":135204,"TargetID":135203,"Directional":true}]},{"ID":6061,"SourceStructureID":332,"TargetStructureID":5410,"Label":"332-5410 via BC Conventional Synapse from 96531 -> 96532","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96531,"TargetID":96532,"Directional":true}]},{"ID":6062,"SourceStructureID":332,"TargetStructureID":5439,"Label":"332-5439 via BC Conventional Synapse from 85689 -> 85687","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85689,"TargetID":85687,"Directional":true}]},{"ID":6063,"SourceStructureID":332,"TargetStructureID":18282,"Label":"332-18282 via Ribbon Synapse from 25217 -> 38863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25217,"TargetID":38863,"Directional":true}]},{"ID":6064,"SourceStructureID":332,"TargetStructureID":31804,"Label":"332-31804 via BC Conventional Synapse from 31812 -> 31811","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":31812,"TargetID":31811,"Directional":true}]},{"ID":6065,"SourceStructureID":332,"TargetStructureID":33161,"Label":"332-33161 via Ribbon Synapse from 33184 -> 33179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33184,"TargetID":33179,"Directional":true}]},{"ID":6066,"SourceStructureID":332,"TargetStructureID":34259,"Label":"332-34259 via Ribbon Synapse from 127761 -> 127760","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127761,"TargetID":127760,"Directional":true}]},{"ID":6067,"SourceStructureID":332,"TargetStructureID":35103,"Label":"332-35103 via Ribbon Synapse from 25219 -> 35109","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25219,"TargetID":35109,"Directional":true}]},{"ID":6068,"SourceStructureID":332,"TargetStructureID":35167,"Label":"332-35167 via Ribbon Synapse from 35171 -> 35168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35171,"TargetID":35168,"Directional":true}]},{"ID":6069,"SourceStructureID":332,"TargetStructureID":38727,"Label":"332-38727 via Ribbon Synapse from 38734 -> 38733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38734,"TargetID":38733,"Directional":true}]},{"ID":6070,"SourceStructureID":332,"TargetStructureID":41474,"Label":"332-41474 via BC Conventional Synapse from 55944 -> 55943","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55944,"TargetID":55943,"Directional":true}]},{"ID":6071,"SourceStructureID":332,"TargetStructureID":95013,"Label":"332-95013 via BC Conventional Synapse from 95014 -> 95015","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95014,"TargetID":95015,"Directional":true}]},{"ID":6072,"SourceStructureID":332,"TargetStructureID":96487,"Label":"332-96487 via BC Conventional Synapse from 97255 -> 97254","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97255,"TargetID":97254,"Directional":true}]},{"ID":6073,"SourceStructureID":332,"TargetStructureID":96499,"Label":"332-96499 via Ribbon Synapse from 96475 -> 96500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96475,"TargetID":96500,"Directional":true}]},{"ID":6074,"SourceStructureID":332,"TargetStructureID":96503,"Label":"332-96503 via Ribbon Synapse from 96475 -> 96504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96475,"TargetID":96504,"Directional":true}]},{"ID":6075,"SourceStructureID":332,"TargetStructureID":96516,"Label":"332-96516 via Ribbon Synapse from 94873 -> 96521, 94876 -> 96520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94873,"TargetID":96521,"Directional":true},{"SourceID":94876,"TargetID":96520,"Directional":true}]},{"ID":6076,"SourceStructureID":332,"TargetStructureID":96522,"Label":"332-96522 via Ribbon Synapse from 94873 -> 96525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94873,"TargetID":96525,"Directional":true}]},{"ID":6077,"SourceStructureID":332,"TargetStructureID":96547,"Label":"332-96547 via BC Conventional Synapse from 97398 -> 96548","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97398,"TargetID":96548,"Directional":true}]},{"ID":6078,"SourceStructureID":332,"TargetStructureID":96547,"Label":"332-96547 via Ribbon Synapse from 95045 -> 96548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95045,"TargetID":96548,"Directional":true}]},{"ID":6079,"SourceStructureID":332,"TargetStructureID":96550,"Label":"332-96550 via Ribbon Synapse from 96549 -> 96552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96549,"TargetID":96552,"Directional":true}]},{"ID":6080,"SourceStructureID":332,"TargetStructureID":96554,"Label":"332-96554 via Ribbon Synapse from 95044 -> 96557","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95044,"TargetID":96557,"Directional":true}]},{"ID":6081,"SourceStructureID":332,"TargetStructureID":96555,"Label":"332-96555 via Ribbon Synapse from 95044 -> 96556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95044,"TargetID":96556,"Directional":true}]},{"ID":6082,"SourceStructureID":332,"TargetStructureID":96568,"Label":"332-96568 via BC Conventional Synapse from 96567 -> 96569","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96567,"TargetID":96569,"Directional":true}]},{"ID":6083,"SourceStructureID":334,"TargetStructureID":7157,"Label":"334-7157 via Ribbon Synapse from 26196 -> 26197, 26207 -> 26208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26196,"TargetID":26197,"Directional":true},{"SourceID":26207,"TargetID":26208,"Directional":true}]},{"ID":6084,"SourceStructureID":334,"TargetStructureID":7468,"Label":"334-7468 via Ribbon Synapse from 31757 -> 31755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31757,"TargetID":31755,"Directional":true}]},{"ID":6085,"SourceStructureID":334,"TargetStructureID":32681,"Label":"334-32681 via Ribbon Synapse from 64571 -> 64577","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64571,"TargetID":64577,"Directional":true}]},{"ID":6086,"SourceStructureID":335,"TargetStructureID":606,"Label":"335-606 via BC Conventional Synapse from 52683 -> 52681","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52683,"TargetID":52681,"Directional":true}]},{"ID":6087,"SourceStructureID":335,"TargetStructureID":606,"Label":"335-606 via Ribbon Synapse from 10063 -> 9795, 49129 -> 49130, 49151 -> 49150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10063,"TargetID":9795,"Directional":true},{"SourceID":49129,"TargetID":49130,"Directional":true},{"SourceID":49151,"TargetID":49150,"Directional":true}]},{"ID":6088,"SourceStructureID":335,"TargetStructureID":9769,"Label":"335-9769 via Ribbon Synapse from 12407 -> 12404, 30085 -> 30086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12407,"TargetID":12404,"Directional":true},{"SourceID":30085,"TargetID":30086,"Directional":true}]},{"ID":6089,"SourceStructureID":335,"TargetStructureID":31694,"Label":"335-31694 via Ribbon Synapse from 34134 -> 34131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34134,"TargetID":34131,"Directional":true}]},{"ID":6090,"SourceStructureID":335,"TargetStructureID":38703,"Label":"335-38703 via Ribbon Synapse from 38708 -> 38707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38708,"TargetID":38707,"Directional":true}]},{"ID":6091,"SourceStructureID":335,"TargetStructureID":55304,"Label":"335-55304 via Ribbon Synapse from 12407 -> 55306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12407,"TargetID":55306,"Directional":true}]},{"ID":6092,"SourceStructureID":335,"TargetStructureID":70924,"Label":"335-70924 via Ribbon Synapse from 13635 -> 70960","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13635,"TargetID":70960,"Directional":true}]},{"ID":6093,"SourceStructureID":335,"TargetStructureID":70987,"Label":"335-70987 via Ribbon Synapse from 34132 -> 71027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34132,"TargetID":71027,"Directional":true}]},{"ID":6094,"SourceStructureID":335,"TargetStructureID":89851,"Label":"335-89851 via Ribbon Synapse from 33444 -> 89865, 33445 -> 89903, 89884 -> 89896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33444,"TargetID":89865,"Directional":true},{"SourceID":33445,"TargetID":89903,"Directional":true},{"SourceID":89884,"TargetID":89896,"Directional":true}]},{"ID":6095,"SourceStructureID":335,"TargetStructureID":89898,"Label":"335-89898 via Ribbon Synapse from 33445 -> 89901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33445,"TargetID":89901,"Directional":true}]},{"ID":6096,"SourceStructureID":335,"TargetStructureID":90475,"Label":"335-90475 via Ribbon Synapse from 13641 -> 90509","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13641,"TargetID":90509,"Directional":true}]},{"ID":6097,"SourceStructureID":341,"TargetStructureID":30015,"Label":"341-30015 via Conventional from 29996 -> 30050","Type":"Conventional","Directional":true,"Links":[{"SourceID":29996,"TargetID":30050,"Directional":true}]},{"ID":6098,"SourceStructureID":342,"TargetStructureID":7468,"Label":"342-7468 via Ribbon Synapse from 31705 -> 121297, 31738 -> 31737","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31705,"TargetID":121297,"Directional":true},{"SourceID":31738,"TargetID":31737,"Directional":true}]},{"ID":6099,"SourceStructureID":342,"TargetStructureID":31700,"Label":"342-31700 via Ribbon Synapse from 31705 -> 31704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31705,"TargetID":31704,"Directional":true}]},{"ID":6100,"SourceStructureID":342,"TargetStructureID":135219,"Label":"342-135219 via Ribbon Synapse from 135224 -> 135223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135224,"TargetID":135223,"Directional":true}]},{"ID":6101,"SourceStructureID":344,"TargetStructureID":278,"Label":"344-278 via Ribbon Synapse from 31735 -> 31727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31735,"TargetID":31727,"Directional":true}]},{"ID":6102,"SourceStructureID":344,"TargetStructureID":31702,"Label":"344-31702 via Ribbon Synapse from 31723 -> 31718, 45612 -> 45611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31723,"TargetID":31718,"Directional":true},{"SourceID":45612,"TargetID":45611,"Directional":true}]},{"ID":6103,"SourceStructureID":344,"TargetStructureID":35513,"Label":"344-35513 via Ribbon Synapse from 35519 -> 35518","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35519,"TargetID":35518,"Directional":true}]},{"ID":6104,"SourceStructureID":344,"TargetStructureID":61709,"Label":"344-61709 via Ribbon Synapse from 65746 -> 65745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65746,"TargetID":65745,"Directional":true}]},{"ID":6105,"SourceStructureID":352,"TargetStructureID":273,"Label":"352-273 via Conventional from 31655 -> 31646, 31659 -> 31662, 31660 -> 31661","Type":"Conventional","Directional":true,"Links":[{"SourceID":31655,"TargetID":31646,"Directional":true},{"SourceID":31659,"TargetID":31662,"Directional":true},{"SourceID":31660,"TargetID":31661,"Directional":true}]},{"ID":6106,"SourceStructureID":352,"TargetStructureID":350,"Label":"352-350 via Conventional from 20662 -> 18708","Type":"Conventional","Directional":true,"Links":[{"SourceID":20662,"TargetID":18708,"Directional":true}]},{"ID":6107,"SourceStructureID":352,"TargetStructureID":7157,"Label":"352-7157 via Conventional from 31656 -> 31657","Type":"Conventional","Directional":true,"Links":[{"SourceID":31656,"TargetID":31657,"Directional":true}]},{"ID":6108,"SourceStructureID":353,"TargetStructureID":21779,"Label":"353-21779 via Ribbon Synapse from 25230 -> 32134, 25231 -> 32134, 25232 -> 32134, 25233 -> 32134, 25236 -> 32134, 25237 -> 32134, 25238 -> 32134, 25242 -> 32134, 25245 -> 32134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25230,"TargetID":32134,"Directional":true},{"SourceID":25231,"TargetID":32134,"Directional":true},{"SourceID":25232,"TargetID":32134,"Directional":true},{"SourceID":25233,"TargetID":32134,"Directional":true},{"SourceID":25236,"TargetID":32134,"Directional":true},{"SourceID":25237,"TargetID":32134,"Directional":true},{"SourceID":25238,"TargetID":32134,"Directional":true},{"SourceID":25242,"TargetID":32134,"Directional":true},{"SourceID":25245,"TargetID":32134,"Directional":true}]},{"ID":6109,"SourceStructureID":353,"TargetStructureID":22210,"Label":"353-22210 via Ribbon Synapse from 6688 -> 32038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6688,"TargetID":32038,"Directional":true}]},{"ID":6110,"SourceStructureID":354,"TargetStructureID":13525,"Label":"354-13525 via Ribbon Synapse from 133789 -> 130872","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133789,"TargetID":130872,"Directional":true}]},{"ID":6111,"SourceStructureID":359,"TargetStructureID":115,"Label":"359-115 via Ribbon Synapse from 21461 -> 8124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21461,"TargetID":8124,"Directional":true}]},{"ID":6112,"SourceStructureID":359,"TargetStructureID":5413,"Label":"359-5413 via Ribbon Synapse from 21431 -> 30451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21431,"TargetID":30451,"Directional":true}]},{"ID":6113,"SourceStructureID":359,"TargetStructureID":7157,"Label":"359-7157 via Ribbon Synapse from 21426 -> 21449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21426,"TargetID":21449,"Directional":true}]},{"ID":6114,"SourceStructureID":359,"TargetStructureID":7859,"Label":"359-7859 via Ribbon Synapse from 21432 -> 84816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21432,"TargetID":84816,"Directional":true}]},{"ID":6115,"SourceStructureID":360,"TargetStructureID":4835,"Label":"360-4835 via Ribbon Synapse from 26575 -> 87850, 26577 -> 26578","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26575,"TargetID":87850,"Directional":true},{"SourceID":26577,"TargetID":26578,"Directional":true}]},{"ID":6116,"SourceStructureID":360,"TargetStructureID":5457,"Label":"360-5457 via Ribbon Synapse from 26575 -> 87849, 26577 -> 87845","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26575,"TargetID":87849,"Directional":true},{"SourceID":26577,"TargetID":87845,"Directional":true}]},{"ID":6117,"SourceStructureID":360,"TargetStructureID":7157,"Label":"360-7157 via Ribbon Synapse from 26215 -> 26216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26215,"TargetID":26216,"Directional":true}]},{"ID":6118,"SourceStructureID":360,"TargetStructureID":7468,"Label":"360-7468 via Ribbon Synapse from 26599 -> 31749, 26600 -> 31747, 26601 -> 31748","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26599,"TargetID":31749,"Directional":true},{"SourceID":26600,"TargetID":31747,"Directional":true},{"SourceID":26601,"TargetID":31748,"Directional":true}]},{"ID":6119,"SourceStructureID":364,"TargetStructureID":5435,"Label":"364-5435 via Ribbon Synapse from 12861 -> 41739, 32024 -> 32021, 32027 -> 32028, 32032 -> 32031, 120612 -> 41740, 120614 -> 41745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12861,"TargetID":41739,"Directional":true},{"SourceID":32024,"TargetID":32021,"Directional":true},{"SourceID":32027,"TargetID":32028,"Directional":true},{"SourceID":32032,"TargetID":32031,"Directional":true},{"SourceID":120612,"TargetID":41740,"Directional":true},{"SourceID":120614,"TargetID":41745,"Directional":true}]},{"ID":6120,"SourceStructureID":364,"TargetStructureID":7568,"Label":"364-7568 via Ribbon Synapse from 90551 -> 27083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90551,"TargetID":27083,"Directional":true}]},{"ID":6121,"SourceStructureID":364,"TargetStructureID":20299,"Label":"364-20299 via Ribbon Synapse from 130193 -> 130192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130193,"TargetID":130192,"Directional":true}]},{"ID":6122,"SourceStructureID":364,"TargetStructureID":34055,"Label":"364-34055 via Ribbon Synapse from 12885 -> 34072","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12885,"TargetID":34072,"Directional":true}]},{"ID":6123,"SourceStructureID":364,"TargetStructureID":35283,"Label":"364-35283 via BC Conventional Synapse from 12876 -> 35287","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":12876,"TargetID":35287,"Directional":true}]},{"ID":6124,"SourceStructureID":364,"TargetStructureID":38605,"Label":"364-38605 via Ribbon Synapse from 14101 -> 98744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14101,"TargetID":98744,"Directional":true}]},{"ID":6125,"SourceStructureID":364,"TargetStructureID":38632,"Label":"364-38632 via Ribbon Synapse from 38675 -> 38673, 38682 -> 38680, 38683 -> 38680","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38675,"TargetID":38673,"Directional":true},{"SourceID":38682,"TargetID":38680,"Directional":true},{"SourceID":38683,"TargetID":38680,"Directional":true}]},{"ID":6126,"SourceStructureID":364,"TargetStructureID":71882,"Label":"364-71882 via Ribbon Synapse from 12798 -> 90355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12798,"TargetID":90355,"Directional":true}]},{"ID":6127,"SourceStructureID":364,"TargetStructureID":90334,"Label":"364-90334 via Ribbon Synapse from 12818 -> 90340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12818,"TargetID":90340,"Directional":true}]},{"ID":6128,"SourceStructureID":365,"TargetStructureID":6153,"Label":"365-6153 via Ribbon Synapse from 29504 -> 29503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29504,"TargetID":29503,"Directional":true}]},{"ID":6129,"SourceStructureID":365,"TargetStructureID":9260,"Label":"365-9260 via Ribbon Synapse from 33601 -> 33602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33601,"TargetID":33602,"Directional":true}]},{"ID":6130,"SourceStructureID":366,"TargetStructureID":606,"Label":"366-606 via Ribbon Synapse from 13645 -> 49154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13645,"TargetID":49154,"Directional":true}]},{"ID":6131,"SourceStructureID":366,"TargetStructureID":5481,"Label":"366-5481 via Ribbon Synapse from 14045 -> 90205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14045,"TargetID":90205,"Directional":true}]},{"ID":6132,"SourceStructureID":366,"TargetStructureID":12564,"Label":"366-12564 via Ribbon Synapse from 14056 -> 53240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14056,"TargetID":53240,"Directional":true}]},{"ID":6133,"SourceStructureID":366,"TargetStructureID":31804,"Label":"366-31804 via Ribbon Synapse from 31810 -> 31809","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31810,"TargetID":31809,"Directional":true}]},{"ID":6134,"SourceStructureID":366,"TargetStructureID":32608,"Label":"366-32608 via Ribbon Synapse from 13940 -> 32614","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13940,"TargetID":32614,"Directional":true}]},{"ID":6135,"SourceStructureID":366,"TargetStructureID":38605,"Label":"366-38605 via Ribbon Synapse from 38610 -> 38611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38610,"TargetID":38611,"Directional":true}]},{"ID":6136,"SourceStructureID":366,"TargetStructureID":71882,"Label":"366-71882 via Ribbon Synapse from 13559 -> 90322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13559,"TargetID":90322,"Directional":true}]},{"ID":6137,"SourceStructureID":369,"TargetStructureID":284,"Label":"369-284 via Ribbon Synapse from 29565 -> 29548, 29567 -> 29566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29565,"TargetID":29548,"Directional":true},{"SourceID":29567,"TargetID":29566,"Directional":true}]},{"ID":6138,"SourceStructureID":369,"TargetStructureID":4850,"Label":"369-4850 via Ribbon Synapse from 29555 -> 83683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29555,"TargetID":83683,"Directional":true}]},{"ID":6139,"SourceStructureID":369,"TargetStructureID":6153,"Label":"369-6153 via Ribbon Synapse from 29559 -> 29560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29559,"TargetID":29560,"Directional":true}]},{"ID":6140,"SourceStructureID":369,"TargetStructureID":7157,"Label":"369-7157 via Ribbon Synapse from 29555 -> 29556, 29558 -> 29557, 29559 -> 26518, 29561 -> 18180, 29562 -> 18180, 29563 -> 45664","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29555,"TargetID":29556,"Directional":true},{"SourceID":29558,"TargetID":29557,"Directional":true},{"SourceID":29559,"TargetID":26518,"Directional":true},{"SourceID":29561,"TargetID":18180,"Directional":true},{"SourceID":29562,"TargetID":18180,"Directional":true},{"SourceID":29563,"TargetID":45664,"Directional":true}]},{"ID":6141,"SourceStructureID":372,"TargetStructureID":412,"Label":"372-412 via BC Conventional Synapse from 122387 -> 122386","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":122387,"TargetID":122386,"Directional":true}]},{"ID":6142,"SourceStructureID":372,"TargetStructureID":606,"Label":"372-606 via Ribbon Synapse from 50897 -> 50898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50897,"TargetID":50898,"Directional":true}]},{"ID":6143,"SourceStructureID":372,"TargetStructureID":34509,"Label":"372-34509 via Ribbon Synapse from 122340 -> 45638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122340,"TargetID":45638,"Directional":true}]},{"ID":6144,"SourceStructureID":372,"TargetStructureID":38632,"Label":"372-38632 via Ribbon Synapse from 30993 -> 38644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30993,"TargetID":38644,"Directional":true}]},{"ID":6145,"SourceStructureID":372,"TargetStructureID":59499,"Label":"372-59499 via BC Conventional Synapse from 122358 -> 122357","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":122358,"TargetID":122357,"Directional":true}]},{"ID":6146,"SourceStructureID":372,"TargetStructureID":59499,"Label":"372-59499 via Ribbon Synapse from 122336 -> 90553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122336,"TargetID":90553,"Directional":true}]},{"ID":6147,"SourceStructureID":372,"TargetStructureID":71531,"Label":"372-71531 via Ribbon Synapse from 71480 -> 71534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71480,"TargetID":71534,"Directional":true}]},{"ID":6148,"SourceStructureID":372,"TargetStructureID":71535,"Label":"372-71535 via Ribbon Synapse from 71480 -> 71536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71480,"TargetID":71536,"Directional":true}]},{"ID":6149,"SourceStructureID":372,"TargetStructureID":71550,"Label":"372-71550 via Ribbon Synapse from 71554 -> 71553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71554,"TargetID":71553,"Directional":true}]},{"ID":6150,"SourceStructureID":372,"TargetStructureID":71560,"Label":"372-71560 via BC Conventional Synapse from 71561 -> 71562","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71561,"TargetID":71562,"Directional":true}]},{"ID":6151,"SourceStructureID":372,"TargetStructureID":71566,"Label":"372-71566 via Ribbon Synapse from 71564 -> 71567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71564,"TargetID":71567,"Directional":true}]},{"ID":6152,"SourceStructureID":372,"TargetStructureID":71865,"Label":"372-71865 via Ribbon Synapse from 62670 -> 71866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62670,"TargetID":71866,"Directional":true}]},{"ID":6153,"SourceStructureID":372,"TargetStructureID":71867,"Label":"372-71867 via Ribbon Synapse from 62670 -> 71868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62670,"TargetID":71868,"Directional":true}]},{"ID":6154,"SourceStructureID":372,"TargetStructureID":71877,"Label":"372-71877 via Ribbon Synapse from 71564 -> 71878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71564,"TargetID":71878,"Directional":true}]},{"ID":6155,"SourceStructureID":372,"TargetStructureID":108196,"Label":"372-108196 via Ribbon Synapse from 30790 -> 122360","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30790,"TargetID":122360,"Directional":true}]},{"ID":6156,"SourceStructureID":373,"TargetStructureID":9769,"Label":"373-9769 via Conventional from 55228 -> 12392","Type":"Conventional","Directional":true,"Links":[{"SourceID":55228,"TargetID":12392,"Directional":true}]},{"ID":6157,"SourceStructureID":375,"TargetStructureID":479,"Label":"375-479 via Conventional from 21839 -> 12366","Type":"Conventional","Directional":true,"Links":[{"SourceID":21839,"TargetID":12366,"Directional":true}]},{"ID":6158,"SourceStructureID":375,"TargetStructureID":24401,"Label":"375-24401 via Conventional from 21841 -> 48253","Type":"Conventional","Directional":true,"Links":[{"SourceID":21841,"TargetID":48253,"Directional":true}]},{"ID":6159,"SourceStructureID":380,"TargetStructureID":223,"Label":"380-223 via Ribbon Synapse from 17671 -> 17670, 19132 -> 19135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17671,"TargetID":17670,"Directional":true},{"SourceID":19132,"TargetID":19135,"Directional":true}]},{"ID":6160,"SourceStructureID":380,"TargetStructureID":304,"Label":"380-304 via Ribbon Synapse from 18279 -> 18278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18279,"TargetID":18278,"Directional":true}]},{"ID":6161,"SourceStructureID":380,"TargetStructureID":410,"Label":"380-410 via Ribbon Synapse from 9526 -> 9525, 17677 -> 17676, 17681 -> 17680, 17878 -> 17877, 17880 -> 17879, 17882 -> 17881, 18368 -> 18367, 18370 -> 18369, 18372 -> 18371, 18514 -> 18536, 18540 -> 18539, 20944 -> 20945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9526,"TargetID":9525,"Directional":true},{"SourceID":17677,"TargetID":17676,"Directional":true},{"SourceID":17681,"TargetID":17680,"Directional":true},{"SourceID":17878,"TargetID":17877,"Directional":true},{"SourceID":17880,"TargetID":17879,"Directional":true},{"SourceID":17882,"TargetID":17881,"Directional":true},{"SourceID":18368,"TargetID":18367,"Directional":true},{"SourceID":18370,"TargetID":18369,"Directional":true},{"SourceID":18372,"TargetID":18371,"Directional":true},{"SourceID":18514,"TargetID":18536,"Directional":true},{"SourceID":18540,"TargetID":18539,"Directional":true},{"SourceID":20944,"TargetID":20945,"Directional":true}]},{"ID":6162,"SourceStructureID":380,"TargetStructureID":17527,"Label":"380-17527 via Ribbon Synapse from 17742 -> 38616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17742,"TargetID":38616,"Directional":true}]},{"ID":6163,"SourceStructureID":382,"TargetStructureID":2610,"Label":"382-2610 via Ribbon Synapse from 71305 -> 71304, 71307 -> 71306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71305,"TargetID":71304,"Directional":true},{"SourceID":71307,"TargetID":71306,"Directional":true}]},{"ID":6164,"SourceStructureID":389,"TargetStructureID":19203,"Label":"389-19203 via Conventional from 62118 -> 62115","Type":"Conventional","Directional":true,"Links":[{"SourceID":62118,"TargetID":62115,"Directional":true}]},{"ID":6165,"SourceStructureID":390,"TargetStructureID":6857,"Label":"390-6857 via Conventional from 65101 -> 65230, 65122 -> 7472, 65124 -> 65125, 65227 -> 133424","Type":"Conventional","Directional":true,"Links":[{"SourceID":65101,"TargetID":65230,"Directional":true},{"SourceID":65122,"TargetID":7472,"Directional":true},{"SourceID":65124,"TargetID":65125,"Directional":true},{"SourceID":65227,"TargetID":133424,"Directional":true}]},{"ID":6166,"SourceStructureID":390,"TargetStructureID":31024,"Label":"390-31024 via Conventional from 65126 -> 65127","Type":"Conventional","Directional":true,"Links":[{"SourceID":65126,"TargetID":65127,"Directional":true}]},{"ID":6167,"SourceStructureID":390,"TargetStructureID":65211,"Label":"390-65211 via Conventional from 65208 -> 65212","Type":"Conventional","Directional":true,"Links":[{"SourceID":65208,"TargetID":65212,"Directional":true}]},{"ID":6168,"SourceStructureID":390,"TargetStructureID":65218,"Label":"390-65218 via Conventional from 65217 -> 65219","Type":"Conventional","Directional":true,"Links":[{"SourceID":65217,"TargetID":65219,"Directional":true}]},{"ID":6169,"SourceStructureID":391,"TargetStructureID":10826,"Label":"391-10826 via Conventional from 108561 -> 108562, 108563 -> 108565, 108688 -> 108689","Type":"Conventional","Directional":true,"Links":[{"SourceID":108561,"TargetID":108562,"Directional":true},{"SourceID":108563,"TargetID":108565,"Directional":true},{"SourceID":108688,"TargetID":108689,"Directional":true}]},{"ID":6170,"SourceStructureID":391,"TargetStructureID":10897,"Label":"391-10897 via Conventional from 108369 -> 108370, 108389 -> 108390","Type":"Conventional","Directional":true,"Links":[{"SourceID":108369,"TargetID":108370,"Directional":true},{"SourceID":108389,"TargetID":108390,"Directional":true}]},{"ID":6171,"SourceStructureID":391,"TargetStructureID":11401,"Label":"391-11401 via Conventional from 108197 -> 108211, 108205 -> 108216, 108210 -> 108217, 108315 -> 108316, 108318 -> 108319","Type":"Conventional","Directional":true,"Links":[{"SourceID":108197,"TargetID":108211,"Directional":true},{"SourceID":108205,"TargetID":108216,"Directional":true},{"SourceID":108210,"TargetID":108217,"Directional":true},{"SourceID":108315,"TargetID":108316,"Directional":true},{"SourceID":108318,"TargetID":108319,"Directional":true}]},{"ID":6172,"SourceStructureID":397,"TargetStructureID":399,"Label":"397-399 via BC Conventional Synapse from 122659 -> 122658","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":122659,"TargetID":122658,"Directional":true}]},{"ID":6173,"SourceStructureID":397,"TargetStructureID":399,"Label":"397-399 via Ribbon Synapse from 46894 -> 46890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46894,"TargetID":46890,"Directional":true}]},{"ID":6174,"SourceStructureID":397,"TargetStructureID":598,"Label":"397-598 via Ribbon Synapse from 38788 -> 38786","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38788,"TargetID":38786,"Directional":true}]},{"ID":6175,"SourceStructureID":397,"TargetStructureID":45358,"Label":"397-45358 via Ribbon Synapse from 46884 -> 45361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46884,"TargetID":45361,"Directional":true}]},{"ID":6176,"SourceStructureID":397,"TargetStructureID":55330,"Label":"397-55330 via Ribbon Synapse from 55334 -> 55332","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55334,"TargetID":55332,"Directional":true}]},{"ID":6177,"SourceStructureID":397,"TargetStructureID":63628,"Label":"397-63628 via Ribbon Synapse from 68725 -> 63825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68725,"TargetID":63825,"Directional":true}]},{"ID":6178,"SourceStructureID":397,"TargetStructureID":71043,"Label":"397-71043 via Ribbon Synapse from 71052 -> 71048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71052,"TargetID":71048,"Directional":true}]},{"ID":6179,"SourceStructureID":398,"TargetStructureID":22358,"Label":"398-22358 via Ribbon Synapse from 37567 -> 37568, 37569 -> 37568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37567,"TargetID":37568,"Directional":true},{"SourceID":37569,"TargetID":37568,"Directional":true}]},{"ID":6180,"SourceStructureID":399,"TargetStructureID":400,"Label":"399-400 via Conventional from 46896 -> 46900, 46897 -> 46898, 46906 -> 28483, 46907 -> 46908","Type":"Conventional","Directional":true,"Links":[{"SourceID":46896,"TargetID":46900,"Directional":true},{"SourceID":46897,"TargetID":46898,"Directional":true},{"SourceID":46906,"TargetID":28483,"Directional":true},{"SourceID":46907,"TargetID":46908,"Directional":true}]},{"ID":6181,"SourceStructureID":400,"TargetStructureID":5117,"Label":"400-5117 via Ribbon Synapse from 18767 -> 18736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18767,"TargetID":18736,"Directional":true}]},{"ID":6182,"SourceStructureID":400,"TargetStructureID":5118,"Label":"400-5118 via Ribbon Synapse from 18769 -> 18772, 18770 -> 18772, 18771 -> 18772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18769,"TargetID":18772,"Directional":true},{"SourceID":18770,"TargetID":18772,"Directional":true},{"SourceID":18771,"TargetID":18772,"Directional":true}]},{"ID":6183,"SourceStructureID":400,"TargetStructureID":8033,"Label":"400-8033 via BC Conventional Synapse from 61256 -> 61255","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61256,"TargetID":61255,"Directional":true}]},{"ID":6184,"SourceStructureID":400,"TargetStructureID":8033,"Label":"400-8033 via Ribbon Synapse from 61248 -> 61246, 61249 -> 61246, 61250 -> 61246, 61251 -> 61252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61248,"TargetID":61246,"Directional":true},{"SourceID":61249,"TargetID":61246,"Directional":true},{"SourceID":61250,"TargetID":61246,"Directional":true},{"SourceID":61251,"TargetID":61252,"Directional":true}]},{"ID":6185,"SourceStructureID":400,"TargetStructureID":13855,"Label":"400-13855 via Ribbon Synapse from 70922 -> 70921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70922,"TargetID":70921,"Directional":true}]},{"ID":6186,"SourceStructureID":400,"TargetStructureID":15394,"Label":"400-15394 via Ribbon Synapse from 18779 -> 18780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18779,"TargetID":18780,"Directional":true}]},{"ID":6187,"SourceStructureID":400,"TargetStructureID":37288,"Label":"400-37288 via Ribbon Synapse from 1938 -> 37380, 28488 -> 37377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1938,"TargetID":37380,"Directional":true},{"SourceID":28488,"TargetID":37377,"Directional":true}]},{"ID":6188,"SourceStructureID":400,"TargetStructureID":61270,"Label":"400-61270 via Ribbon Synapse from 61269 -> 61271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61269,"TargetID":61271,"Directional":true}]},{"ID":6189,"SourceStructureID":407,"TargetStructureID":382,"Label":"407-382 via Conventional from 41969 -> 41968","Type":"Conventional","Directional":true,"Links":[{"SourceID":41969,"TargetID":41968,"Directional":true}]},{"ID":6190,"SourceStructureID":408,"TargetStructureID":405,"Label":"408-405 via BC Conventional Synapse from 122381 -> 122380, 122385 -> 122384","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":122381,"TargetID":122380,"Directional":true},{"SourceID":122385,"TargetID":122384,"Directional":true}]},{"ID":6191,"SourceStructureID":408,"TargetStructureID":405,"Label":"408-405 via Ribbon Synapse from 122382 -> 122383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122382,"TargetID":122383,"Directional":true}]},{"ID":6192,"SourceStructureID":408,"TargetStructureID":598,"Label":"408-598 via Ribbon Synapse from 38804 -> 38803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38804,"TargetID":38803,"Directional":true}]},{"ID":6193,"SourceStructureID":408,"TargetStructureID":25879,"Label":"408-25879 via Ribbon Synapse from 25885 -> 25886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25885,"TargetID":25886,"Directional":true}]},{"ID":6194,"SourceStructureID":408,"TargetStructureID":33127,"Label":"408-33127 via Ribbon Synapse from 33132 -> 33130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33132,"TargetID":33130,"Directional":true}]},{"ID":6195,"SourceStructureID":408,"TargetStructureID":35775,"Label":"408-35775 via Ribbon Synapse from 35769 -> 35776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35769,"TargetID":35776,"Directional":true}]},{"ID":6196,"SourceStructureID":408,"TargetStructureID":35887,"Label":"408-35887 via Ribbon Synapse from 35799 -> 35889","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35799,"TargetID":35889,"Directional":true}]},{"ID":6197,"SourceStructureID":408,"TargetStructureID":35894,"Label":"408-35894 via Ribbon Synapse from 35900 -> 35901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35900,"TargetID":35901,"Directional":true}]},{"ID":6198,"SourceStructureID":408,"TargetStructureID":35966,"Label":"408-35966 via Ribbon Synapse from 29273 -> 35967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29273,"TargetID":35967,"Directional":true}]},{"ID":6199,"SourceStructureID":408,"TargetStructureID":47013,"Label":"408-47013 via Ribbon Synapse from 29274 -> 47014, 53023 -> 47018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29274,"TargetID":47014,"Directional":true},{"SourceID":53023,"TargetID":47018,"Directional":true}]},{"ID":6200,"SourceStructureID":408,"TargetStructureID":61587,"Label":"408-61587 via Ribbon Synapse from 52909 -> 61592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52909,"TargetID":61592,"Directional":true}]},{"ID":6201,"SourceStructureID":410,"TargetStructureID":478,"Label":"410-478 via Conventional from 21348 -> 21349","Type":"Conventional","Directional":true,"Links":[{"SourceID":21348,"TargetID":21349,"Directional":true}]},{"ID":6202,"SourceStructureID":410,"TargetStructureID":35046,"Label":"410-35046 via Conventional from 20948 -> 62000, 21353 -> 61994, 21354 -> 61995, 21370 -> 61997","Type":"Conventional","Directional":true,"Links":[{"SourceID":20948,"TargetID":62000,"Directional":true},{"SourceID":21353,"TargetID":61994,"Directional":true},{"SourceID":21354,"TargetID":61995,"Directional":true},{"SourceID":21370,"TargetID":61997,"Directional":true}]},{"ID":6203,"SourceStructureID":410,"TargetStructureID":70820,"Label":"410-70820 via Conventional from 70828 -> 70827","Type":"Conventional","Directional":true,"Links":[{"SourceID":70828,"TargetID":70827,"Directional":true}]},{"ID":6204,"SourceStructureID":412,"TargetStructureID":308,"Label":"412-308 via Cistern Pre from 37592 -> 107260","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37592,"TargetID":107260,"Directional":true}]},{"ID":6205,"SourceStructureID":412,"TargetStructureID":419,"Label":"412-419 via Conventional from 49093 -> 37809","Type":"Conventional","Directional":true,"Links":[{"SourceID":49093,"TargetID":37809,"Directional":true}]},{"ID":6206,"SourceStructureID":415,"TargetStructureID":12208,"Label":"415-12208 via Conventional from 22464 -> 22463","Type":"Conventional","Directional":true,"Links":[{"SourceID":22464,"TargetID":22463,"Directional":true}]},{"ID":6207,"SourceStructureID":419,"TargetStructureID":179,"Label":"419-179 via Ribbon Synapse from 132544 -> 133586","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132544,"TargetID":133586,"Directional":true}]},{"ID":6208,"SourceStructureID":419,"TargetStructureID":318,"Label":"419-318 via Ribbon Synapse from 10187 -> 133605, 14600 -> 14601, 20372 -> 20373, 20382 -> 20384, 29317 -> 29316, 29318 -> 29316, 34959 -> 133694, 132070 -> 14601, 132236 -> 14601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10187,"TargetID":133605,"Directional":true},{"SourceID":14600,"TargetID":14601,"Directional":true},{"SourceID":20372,"TargetID":20373,"Directional":true},{"SourceID":20382,"TargetID":20384,"Directional":true},{"SourceID":29317,"TargetID":29316,"Directional":true},{"SourceID":29318,"TargetID":29316,"Directional":true},{"SourceID":34959,"TargetID":133694,"Directional":true},{"SourceID":132070,"TargetID":14601,"Directional":true},{"SourceID":132236,"TargetID":14601,"Directional":true}]},{"ID":6209,"SourceStructureID":419,"TargetStructureID":476,"Label":"419-476 via Ribbon Synapse from 6553 -> 10073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6553,"TargetID":10073,"Directional":true}]},{"ID":6210,"SourceStructureID":419,"TargetStructureID":591,"Label":"419-591 via Ribbon Synapse from 6553 -> 6554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6553,"TargetID":6554,"Directional":true}]},{"ID":6211,"SourceStructureID":419,"TargetStructureID":4890,"Label":"419-4890 via BC Conventional Synapse from 133698 -> 133699","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133698,"TargetID":133699,"Directional":true}]},{"ID":6212,"SourceStructureID":419,"TargetStructureID":4890,"Label":"419-4890 via Ribbon Synapse from 10130 -> 133637, 19989 -> 19988, 19993 -> 19992, 19996 -> 19997, 34837 -> 64863, 35022 -> 133660, 131766 -> 131767, 132319 -> 133622","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10130,"TargetID":133637,"Directional":true},{"SourceID":19989,"TargetID":19988,"Directional":true},{"SourceID":19993,"TargetID":19992,"Directional":true},{"SourceID":19996,"TargetID":19997,"Directional":true},{"SourceID":34837,"TargetID":64863,"Directional":true},{"SourceID":35022,"TargetID":133660,"Directional":true},{"SourceID":131766,"TargetID":131767,"Directional":true},{"SourceID":132319,"TargetID":133622,"Directional":true}]},{"ID":6213,"SourceStructureID":419,"TargetStructureID":5118,"Label":"419-5118 via Ribbon Synapse from 132333 -> 133624, 133618 -> 133673","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132333,"TargetID":133624,"Directional":true},{"SourceID":133618,"TargetID":133673,"Directional":true}]},{"ID":6214,"SourceStructureID":419,"TargetStructureID":5350,"Label":"419-5350 via Ribbon Synapse from 132537 -> 132538, 133695 -> 133696","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132537,"TargetID":132538,"Directional":true},{"SourceID":133695,"TargetID":133696,"Directional":true}]},{"ID":6215,"SourceStructureID":419,"TargetStructureID":8579,"Label":"419-8579 via Ribbon Synapse from 62667 -> 62666, 131770 -> 133571","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62667,"TargetID":62666,"Directional":true},{"SourceID":131770,"TargetID":133571,"Directional":true}]},{"ID":6216,"SourceStructureID":419,"TargetStructureID":9226,"Label":"419-9226 via Ribbon Synapse from 19989 -> 132599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19989,"TargetID":132599,"Directional":true}]},{"ID":6217,"SourceStructureID":419,"TargetStructureID":13855,"Label":"419-13855 via Ribbon Synapse from 14597 -> 14598, 14895 -> 14896, 14900 -> 14899, 34954 -> 133635, 34970 -> 133655, 132401 -> 133630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14597,"TargetID":14598,"Directional":true},{"SourceID":14895,"TargetID":14896,"Directional":true},{"SourceID":14900,"TargetID":14899,"Directional":true},{"SourceID":34954,"TargetID":133635,"Directional":true},{"SourceID":34970,"TargetID":133655,"Directional":true},{"SourceID":132401,"TargetID":133630,"Directional":true}]},{"ID":6218,"SourceStructureID":419,"TargetStructureID":18282,"Label":"419-18282 via Ribbon Synapse from 20336 -> 20335, 20387 -> 20364","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20336,"TargetID":20335,"Directional":true},{"SourceID":20387,"TargetID":20364,"Directional":true}]},{"ID":6219,"SourceStructureID":419,"TargetStructureID":18576,"Label":"419-18576 via BC Conventional Synapse from 133513 -> 133514","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133513,"TargetID":133514,"Directional":true}]},{"ID":6220,"SourceStructureID":419,"TargetStructureID":18576,"Label":"419-18576 via Ribbon Synapse from 8937 -> 100459, 132529 -> 133585, 132530 -> 133585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8937,"TargetID":100459,"Directional":true},{"SourceID":132529,"TargetID":133585,"Directional":true},{"SourceID":132530,"TargetID":133585,"Directional":true}]},{"ID":6221,"SourceStructureID":419,"TargetStructureID":22554,"Label":"419-22554 via Ribbon Synapse from 103898 -> 133610, 133606 -> 133609","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103898,"TargetID":133610,"Directional":true},{"SourceID":133606,"TargetID":133609,"Directional":true}]},{"ID":6222,"SourceStructureID":419,"TargetStructureID":25869,"Label":"419-25869 via Ribbon Synapse from 132544 -> 133587","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132544,"TargetID":133587,"Directional":true}]},{"ID":6223,"SourceStructureID":419,"TargetStructureID":29277,"Label":"419-29277 via Ribbon Synapse from 29321 -> 29320, 29324 -> 29323, 38451 -> 29310, 65685 -> 29313, 65686 -> 29313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29321,"TargetID":29320,"Directional":true},{"SourceID":29324,"TargetID":29323,"Directional":true},{"SourceID":38451,"TargetID":29310,"Directional":true},{"SourceID":65685,"TargetID":29313,"Directional":true},{"SourceID":65686,"TargetID":29313,"Directional":true}]},{"ID":6224,"SourceStructureID":419,"TargetStructureID":34621,"Label":"419-34621 via Ribbon Synapse from 131470 -> 38454, 131471 -> 38454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131470,"TargetID":38454,"Directional":true},{"SourceID":131471,"TargetID":38454,"Directional":true}]},{"ID":6225,"SourceStructureID":419,"TargetStructureID":36234,"Label":"419-36234 via Ribbon Synapse from 10175 -> 36236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10175,"TargetID":36236,"Directional":true}]},{"ID":6226,"SourceStructureID":419,"TargetStructureID":37286,"Label":"419-37286 via Ribbon Synapse from 34966 -> 101667, 101670 -> 101669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34966,"TargetID":101667,"Directional":true},{"SourceID":101670,"TargetID":101669,"Directional":true}]},{"ID":6227,"SourceStructureID":419,"TargetStructureID":60185,"Label":"419-60185 via Ribbon Synapse from 60187 -> 60188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60187,"TargetID":60188,"Directional":true}]},{"ID":6228,"SourceStructureID":419,"TargetStructureID":65267,"Label":"419-65267 via Ribbon Synapse from 132535 -> 69963","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132535,"TargetID":69963,"Directional":true}]},{"ID":6229,"SourceStructureID":419,"TargetStructureID":70518,"Label":"419-70518 via BC Conventional Synapse from 70520 -> 70519","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":70520,"TargetID":70519,"Directional":true}]},{"ID":6230,"SourceStructureID":419,"TargetStructureID":70833,"Label":"419-70833 via Ribbon Synapse from 34969 -> 70863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34969,"TargetID":70863,"Directional":true}]},{"ID":6231,"SourceStructureID":419,"TargetStructureID":71189,"Label":"419-71189 via Ribbon Synapse from 19989 -> 71194, 34941 -> 133650, 34951 -> 71191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19989,"TargetID":71194,"Directional":true},{"SourceID":34941,"TargetID":133650,"Directional":true},{"SourceID":34951,"TargetID":71191,"Directional":true}]},{"ID":6232,"SourceStructureID":419,"TargetStructureID":71882,"Label":"419-71882 via Ribbon Synapse from 20387 -> 133642, 35002 -> 90317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20387,"TargetID":133642,"Directional":true},{"SourceID":35002,"TargetID":90317,"Directional":true}]},{"ID":6233,"SourceStructureID":419,"TargetStructureID":100946,"Label":"419-100946 via Ribbon Synapse from 10203 -> 100947, 34975 -> 133658, 132584 -> 133658","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10203,"TargetID":100947,"Directional":true},{"SourceID":34975,"TargetID":133658,"Directional":true},{"SourceID":132584,"TargetID":133658,"Directional":true}]},{"ID":6234,"SourceStructureID":419,"TargetStructureID":102226,"Label":"419-102226 via Ribbon Synapse from 35005 -> 102229, 35008 -> 133659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35005,"TargetID":102229,"Directional":true},{"SourceID":35008,"TargetID":133659,"Directional":true}]},{"ID":6235,"SourceStructureID":419,"TargetStructureID":102286,"Label":"419-102286 via Ribbon Synapse from 19996 -> 133640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19996,"TargetID":133640,"Directional":true}]},{"ID":6236,"SourceStructureID":419,"TargetStructureID":102524,"Label":"419-102524 via Ribbon Synapse from 10175 -> 133564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10175,"TargetID":133564,"Directional":true}]},{"ID":6237,"SourceStructureID":419,"TargetStructureID":103508,"Label":"419-103508 via Ribbon Synapse from 19993 -> 103509","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19993,"TargetID":103509,"Directional":true}]},{"ID":6238,"SourceStructureID":419,"TargetStructureID":103510,"Label":"419-103510 via BC Conventional Synapse from 103512 -> 103511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103512,"TargetID":103511,"Directional":true}]},{"ID":6239,"SourceStructureID":419,"TargetStructureID":133550,"Label":"419-133550 via Ribbon Synapse from 20388 -> 133551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20388,"TargetID":133551,"Directional":true}]},{"ID":6240,"SourceStructureID":419,"TargetStructureID":133553,"Label":"419-133553 via Ribbon Synapse from 34951 -> 133554, 133520 -> 133556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34951,"TargetID":133554,"Directional":true},{"SourceID":133520,"TargetID":133556,"Directional":true}]},{"ID":6241,"SourceStructureID":419,"TargetStructureID":133557,"Label":"419-133557 via Ribbon Synapse from 132558 -> 133558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132558,"TargetID":133558,"Directional":true}]},{"ID":6242,"SourceStructureID":422,"TargetStructureID":284,"Label":"422-284 via Ribbon Synapse from 17466 -> 17465","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17466,"TargetID":17465,"Directional":true}]},{"ID":6243,"SourceStructureID":422,"TargetStructureID":308,"Label":"422-308 via Ribbon Synapse from 10210 -> 31870, 10210 -> 43098, 10211 -> 43336, 86635 -> 86636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10210,"TargetID":31870,"Directional":true},{"SourceID":10210,"TargetID":43098,"Directional":true},{"SourceID":10211,"TargetID":43336,"Directional":true},{"SourceID":86635,"TargetID":86636,"Directional":true}]},{"ID":6244,"SourceStructureID":422,"TargetStructureID":476,"Label":"422-476 via Ribbon Synapse from 5685 -> 5674, 5686 -> 5687, 5696 -> 5675, 10477 -> 10442, 10478 -> 10479, 10481 -> 10444, 10484 -> 10485, 10486 -> 10468, 16550 -> 16551, 18016 -> 10454, 18017 -> 10455, 87886 -> 87887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5685,"TargetID":5674,"Directional":true},{"SourceID":5686,"TargetID":5687,"Directional":true},{"SourceID":5696,"TargetID":5675,"Directional":true},{"SourceID":10477,"TargetID":10442,"Directional":true},{"SourceID":10478,"TargetID":10479,"Directional":true},{"SourceID":10481,"TargetID":10444,"Directional":true},{"SourceID":10484,"TargetID":10485,"Directional":true},{"SourceID":10486,"TargetID":10468,"Directional":true},{"SourceID":16550,"TargetID":16551,"Directional":true},{"SourceID":18016,"TargetID":10454,"Directional":true},{"SourceID":18017,"TargetID":10455,"Directional":true},{"SourceID":87886,"TargetID":87887,"Directional":true}]},{"ID":6245,"SourceStructureID":422,"TargetStructureID":488,"Label":"422-488 via Ribbon Synapse from 16603 -> 87800","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16603,"TargetID":87800,"Directional":true}]},{"ID":6246,"SourceStructureID":422,"TargetStructureID":591,"Label":"422-591 via Ribbon Synapse from 10474 -> 36444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10474,"TargetID":36444,"Directional":true}]},{"ID":6247,"SourceStructureID":422,"TargetStructureID":6153,"Label":"422-6153 via Ribbon Synapse from 5694 -> 8437, 5695 -> 8438, 8423 -> 8424, 10210 -> 31858, 16603 -> 16605, 16611 -> 16610, 16616 -> 16617, 17477 -> 17478, 17482 -> 17483","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5694,"TargetID":8437,"Directional":true},{"SourceID":5695,"TargetID":8438,"Directional":true},{"SourceID":8423,"TargetID":8424,"Directional":true},{"SourceID":10210,"TargetID":31858,"Directional":true},{"SourceID":16603,"TargetID":16605,"Directional":true},{"SourceID":16611,"TargetID":16610,"Directional":true},{"SourceID":16616,"TargetID":16617,"Directional":true},{"SourceID":17477,"TargetID":17478,"Directional":true},{"SourceID":17482,"TargetID":17483,"Directional":true}]},{"ID":6248,"SourceStructureID":422,"TargetStructureID":7157,"Label":"422-7157 via Ribbon Synapse from 18205 -> 18204, 18206 -> 18207, 18210 -> 18209","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18205,"TargetID":18204,"Directional":true},{"SourceID":18206,"TargetID":18207,"Directional":true},{"SourceID":18210,"TargetID":18209,"Directional":true}]},{"ID":6249,"SourceStructureID":424,"TargetStructureID":906,"Label":"424-906 via Ribbon Synapse from 19520 -> 15204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19520,"TargetID":15204,"Directional":true}]},{"ID":6250,"SourceStructureID":424,"TargetStructureID":4835,"Label":"424-4835 via Ribbon Synapse from 62984 -> 62985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62984,"TargetID":62985,"Directional":true}]},{"ID":6251,"SourceStructureID":424,"TargetStructureID":5107,"Label":"424-5107 via Ribbon Synapse from 19511 -> 64971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19511,"TargetID":64971,"Directional":true}]},{"ID":6252,"SourceStructureID":424,"TargetStructureID":8575,"Label":"424-8575 via BC Conventional Synapse from 61728 -> 61726","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61728,"TargetID":61726,"Directional":true}]},{"ID":6253,"SourceStructureID":424,"TargetStructureID":8575,"Label":"424-8575 via Ribbon Synapse from 19546 -> 61581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19546,"TargetID":61581,"Directional":true}]},{"ID":6254,"SourceStructureID":424,"TargetStructureID":56211,"Label":"424-56211 via Ribbon Synapse from 19531 -> 56223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19531,"TargetID":56223,"Directional":true}]},{"ID":6255,"SourceStructureID":425,"TargetStructureID":5486,"Label":"425-5486 via Ribbon Synapse from 9441 -> 22099","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9441,"TargetID":22099,"Directional":true}]},{"ID":6256,"SourceStructureID":425,"TargetStructureID":8575,"Label":"425-8575 via BC Conventional Synapse from 61686 -> 61685, 61714 -> 61713","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61686,"TargetID":61685,"Directional":true},{"SourceID":61714,"TargetID":61713,"Directional":true}]},{"ID":6257,"SourceStructureID":425,"TargetStructureID":42387,"Label":"425-42387 via Ribbon Synapse from 22083 -> 129517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22083,"TargetID":129517,"Directional":true}]},{"ID":6258,"SourceStructureID":426,"TargetStructureID":341,"Label":"426-341 via Ribbon Synapse from 24511 -> 31834","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24511,"TargetID":31834,"Directional":true}]},{"ID":6259,"SourceStructureID":426,"TargetStructureID":5150,"Label":"426-5150 via Ribbon Synapse from 46133 -> 46142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46133,"TargetID":46142,"Directional":true}]},{"ID":6260,"SourceStructureID":426,"TargetStructureID":5351,"Label":"426-5351 via Ribbon Synapse from 24509 -> 24508, 24511 -> 24510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24509,"TargetID":24508,"Directional":true},{"SourceID":24511,"TargetID":24510,"Directional":true}]},{"ID":6261,"SourceStructureID":426,"TargetStructureID":46741,"Label":"426-46741 via Ribbon Synapse from 46137 -> 90213","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46137,"TargetID":90213,"Directional":true}]},{"ID":6262,"SourceStructureID":428,"TargetStructureID":606,"Label":"428-606 via Ribbon Synapse from 50896 -> 53313, 53215 -> 53216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50896,"TargetID":53313,"Directional":true},{"SourceID":53215,"TargetID":53216,"Directional":true}]},{"ID":6263,"SourceStructureID":428,"TargetStructureID":8575,"Label":"428-8575 via BC Conventional Synapse from 61691 -> 61690","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61691,"TargetID":61690,"Directional":true}]},{"ID":6264,"SourceStructureID":428,"TargetStructureID":8720,"Label":"428-8720 via Ribbon Synapse from 52688 -> 60254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52688,"TargetID":60254,"Directional":true}]},{"ID":6265,"SourceStructureID":428,"TargetStructureID":12564,"Label":"428-12564 via Ribbon Synapse from 7163 -> 53238, 52712 -> 55627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7163,"TargetID":53238,"Directional":true},{"SourceID":52712,"TargetID":55627,"Directional":true}]},{"ID":6266,"SourceStructureID":428,"TargetStructureID":34263,"Label":"428-34263 via Ribbon Synapse from 34268 -> 34267","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34268,"TargetID":34267,"Directional":true}]},{"ID":6267,"SourceStructureID":428,"TargetStructureID":34940,"Label":"428-34940 via Ribbon Synapse from 14084 -> 38523","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14084,"TargetID":38523,"Directional":true}]},{"ID":6268,"SourceStructureID":428,"TargetStructureID":53115,"Label":"428-53115 via Ribbon Synapse from 14084 -> 53147, 14085 -> 53147","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14084,"TargetID":53147,"Directional":true},{"SourceID":14085,"TargetID":53147,"Directional":true}]},{"ID":6269,"SourceStructureID":428,"TargetStructureID":59474,"Label":"428-59474 via Ribbon Synapse from 7177 -> 59489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7177,"TargetID":59489,"Directional":true}]},{"ID":6270,"SourceStructureID":428,"TargetStructureID":70924,"Label":"428-70924 via Ribbon Synapse from 7158 -> 70954","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7158,"TargetID":70954,"Directional":true}]},{"ID":6271,"SourceStructureID":428,"TargetStructureID":137122,"Label":"428-137122 via Ribbon Synapse from 66180 -> 137181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66180,"TargetID":137181,"Directional":true}]},{"ID":6272,"SourceStructureID":428,"TargetStructureID":147696,"Label":"428-147696 via Ribbon Synapse from 38599 -> 147756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38599,"TargetID":147756,"Directional":true}]},{"ID":6273,"SourceStructureID":431,"TargetStructureID":20299,"Label":"431-20299 via Ribbon Synapse from 12764 -> 121517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12764,"TargetID":121517,"Directional":true}]},{"ID":6274,"SourceStructureID":431,"TargetStructureID":30015,"Label":"431-30015 via Ribbon Synapse from 12684 -> 30032","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12684,"TargetID":30032,"Directional":true}]},{"ID":6275,"SourceStructureID":431,"TargetStructureID":31804,"Label":"431-31804 via Ribbon Synapse from 31815 -> 31814","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31815,"TargetID":31814,"Directional":true}]},{"ID":6276,"SourceStructureID":431,"TargetStructureID":34055,"Label":"431-34055 via Ribbon Synapse from 12656 -> 34064","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12656,"TargetID":34064,"Directional":true}]},{"ID":6277,"SourceStructureID":431,"TargetStructureID":34302,"Label":"431-34302 via Ribbon Synapse from 34304 -> 34303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34304,"TargetID":34303,"Directional":true}]},{"ID":6278,"SourceStructureID":431,"TargetStructureID":34868,"Label":"431-34868 via Ribbon Synapse from 38594 -> 38592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38594,"TargetID":38592,"Directional":true}]},{"ID":6279,"SourceStructureID":431,"TargetStructureID":38949,"Label":"431-38949 via Ribbon Synapse from 12734 -> 39047","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12734,"TargetID":39047,"Directional":true}]},{"ID":6280,"SourceStructureID":431,"TargetStructureID":60264,"Label":"431-60264 via Ribbon Synapse from 12684 -> 60267","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12684,"TargetID":60267,"Directional":true}]},{"ID":6281,"SourceStructureID":431,"TargetStructureID":71882,"Label":"431-71882 via Ribbon Synapse from 12772 -> 90359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12772,"TargetID":90359,"Directional":true}]},{"ID":6282,"SourceStructureID":431,"TargetStructureID":98754,"Label":"431-98754 via Ribbon Synapse from 119069 -> 98755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119069,"TargetID":98755,"Directional":true}]},{"ID":6283,"SourceStructureID":431,"TargetStructureID":98766,"Label":"431-98766 via Ribbon Synapse from 119065 -> 98769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119065,"TargetID":98769,"Directional":true}]},{"ID":6284,"SourceStructureID":431,"TargetStructureID":98776,"Label":"431-98776 via Ribbon Synapse from 119062 -> 98778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119062,"TargetID":98778,"Directional":true}]},{"ID":6285,"SourceStructureID":431,"TargetStructureID":98780,"Label":"431-98780 via Ribbon Synapse from 119062 -> 98781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119062,"TargetID":98781,"Directional":true}]},{"ID":6286,"SourceStructureID":431,"TargetStructureID":108821,"Label":"431-108821 via Unknown from 109656 -> 109655","Type":"Unknown","Directional":true,"Links":[{"SourceID":109656,"TargetID":109655,"Directional":true}]},{"ID":6287,"SourceStructureID":431,"TargetStructureID":115510,"Label":"431-115510 via Ribbon Synapse from 115509 -> 115511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115509,"TargetID":115511,"Directional":true}]},{"ID":6288,"SourceStructureID":432,"TargetStructureID":373,"Label":"432-373 via Ribbon Synapse from 55235 -> 55231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55235,"TargetID":55231,"Directional":true}]},{"ID":6289,"SourceStructureID":432,"TargetStructureID":8575,"Label":"432-8575 via BC Conventional Synapse from 55238 -> 55237, 55269 -> 55270","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55238,"TargetID":55237,"Directional":true},{"SourceID":55269,"TargetID":55270,"Directional":true}]},{"ID":6290,"SourceStructureID":433,"TargetStructureID":7858,"Label":"433-7858 via Ribbon Synapse from 21486 -> 34519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21486,"TargetID":34519,"Directional":true}]},{"ID":6291,"SourceStructureID":434,"TargetStructureID":7860,"Label":"434-7860 via Ribbon Synapse from 29661 -> 29660, 29663 -> 29662","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29661,"TargetID":29660,"Directional":true},{"SourceID":29663,"TargetID":29662,"Directional":true}]},{"ID":6292,"SourceStructureID":437,"TargetStructureID":4835,"Label":"437-4835 via Ribbon Synapse from 6641 -> 6642, 7064 -> 17614, 17602 -> 17603, 65717 -> 65736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6641,"TargetID":6642,"Directional":true},{"SourceID":7064,"TargetID":17614,"Directional":true},{"SourceID":17602,"TargetID":17603,"Directional":true},{"SourceID":65717,"TargetID":65736,"Directional":true}]},{"ID":6293,"SourceStructureID":437,"TargetStructureID":13525,"Label":"437-13525 via Ribbon Synapse from 96751 -> 85363, 159032 -> 158517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96751,"TargetID":85363,"Directional":true},{"SourceID":159032,"TargetID":158517,"Directional":true}]},{"ID":6294,"SourceStructureID":437,"TargetStructureID":61709,"Label":"437-61709 via Ribbon Synapse from 65707 -> 65704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65707,"TargetID":65704,"Directional":true}]},{"ID":6295,"SourceStructureID":437,"TargetStructureID":65751,"Label":"437-65751 via Ribbon Synapse from 17579 -> 65756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17579,"TargetID":65756,"Directional":true}]},{"ID":6296,"SourceStructureID":440,"TargetStructureID":5453,"Label":"440-5453 via Ribbon Synapse from 24458 -> 62010, 62006 -> 62007, 122528 -> 122529, 122531 -> 122529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24458,"TargetID":62010,"Directional":true},{"SourceID":62006,"TargetID":62007,"Directional":true},{"SourceID":122528,"TargetID":122529,"Directional":true},{"SourceID":122531,"TargetID":122529,"Directional":true}]},{"ID":6297,"SourceStructureID":440,"TargetStructureID":7703,"Label":"440-7703 via Ribbon Synapse from 18639 -> 18597, 18641 -> 18598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18639,"TargetID":18597,"Directional":true},{"SourceID":18641,"TargetID":18598,"Directional":true}]},{"ID":6298,"SourceStructureID":440,"TargetStructureID":8575,"Label":"440-8575 via BC Conventional Synapse from 62003 -> 61739","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62003,"TargetID":61739,"Directional":true}]},{"ID":6299,"SourceStructureID":440,"TargetStructureID":12563,"Label":"440-12563 via Ribbon Synapse from 18631 -> 30506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18631,"TargetID":30506,"Directional":true}]},{"ID":6300,"SourceStructureID":440,"TargetStructureID":32581,"Label":"440-32581 via Ribbon Synapse from 24770 -> 32606","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24770,"TargetID":32606,"Directional":true}]},{"ID":6301,"SourceStructureID":440,"TargetStructureID":33161,"Label":"440-33161 via Ribbon Synapse from 33193 -> 33192, 33194 -> 33192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33193,"TargetID":33192,"Directional":true},{"SourceID":33194,"TargetID":33192,"Directional":true}]},{"ID":6302,"SourceStructureID":440,"TargetStructureID":34311,"Label":"440-34311 via Ribbon Synapse from 39160 -> 35502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39160,"TargetID":35502,"Directional":true}]},{"ID":6303,"SourceStructureID":440,"TargetStructureID":39998,"Label":"440-39998 via Ribbon Synapse from 40009 -> 40008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40009,"TargetID":40008,"Directional":true}]},{"ID":6304,"SourceStructureID":440,"TargetStructureID":44346,"Label":"440-44346 via Ribbon Synapse from 44389 -> 44388, 122875 -> 122876","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44389,"TargetID":44388,"Directional":true},{"SourceID":122875,"TargetID":122876,"Directional":true}]},{"ID":6305,"SourceStructureID":440,"TargetStructureID":60272,"Label":"440-60272 via Ribbon Synapse from 60270 -> 60273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60270,"TargetID":60273,"Directional":true}]},{"ID":6306,"SourceStructureID":440,"TargetStructureID":60283,"Label":"440-60283 via Ribbon Synapse from 60282 -> 60285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60282,"TargetID":60285,"Directional":true}]},{"ID":6307,"SourceStructureID":440,"TargetStructureID":60288,"Label":"440-60288 via Ribbon Synapse from 60286 -> 60290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60286,"TargetID":60290,"Directional":true}]},{"ID":6308,"SourceStructureID":440,"TargetStructureID":60292,"Label":"440-60292 via BC Conventional Synapse from 60291 -> 60293","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":60291,"TargetID":60293,"Directional":true}]},{"ID":6309,"SourceStructureID":440,"TargetStructureID":60303,"Label":"440-60303 via Ribbon Synapse from 60302 -> 60304","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60302,"TargetID":60304,"Directional":true}]},{"ID":6310,"SourceStructureID":440,"TargetStructureID":60309,"Label":"440-60309 via Ribbon Synapse from 60308 -> 60310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60308,"TargetID":60310,"Directional":true}]},{"ID":6311,"SourceStructureID":440,"TargetStructureID":60311,"Label":"440-60311 via Ribbon Synapse from 60308 -> 60312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60308,"TargetID":60312,"Directional":true}]},{"ID":6312,"SourceStructureID":440,"TargetStructureID":60315,"Label":"440-60315 via Ribbon Synapse from 60314 -> 60316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60314,"TargetID":60316,"Directional":true}]},{"ID":6313,"SourceStructureID":440,"TargetStructureID":60317,"Label":"440-60317 via Ribbon Synapse from 60314 -> 60318","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60314,"TargetID":60318,"Directional":true}]},{"ID":6314,"SourceStructureID":440,"TargetStructureID":60319,"Label":"440-60319 via Ribbon Synapse from 60314 -> 60320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60314,"TargetID":60320,"Directional":true}]},{"ID":6315,"SourceStructureID":440,"TargetStructureID":60322,"Label":"440-60322 via BC Conventional Synapse from 60321 -> 60323","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":60321,"TargetID":60323,"Directional":true}]},{"ID":6316,"SourceStructureID":441,"TargetStructureID":7861,"Label":"441-7861 via Ribbon Synapse from 2051 -> 21267, 32630 -> 121012, 121020 -> 121021, 121023 -> 121022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2051,"TargetID":21267,"Directional":true},{"SourceID":32630,"TargetID":121012,"Directional":true},{"SourceID":121020,"TargetID":121021,"Directional":true},{"SourceID":121023,"TargetID":121022,"Directional":true}]},{"ID":6317,"SourceStructureID":445,"TargetStructureID":7861,"Label":"445-7861 via Ribbon Synapse from 121031 -> 121029, 121034 -> 121033, 121039 -> 121038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121031,"TargetID":121029,"Directional":true},{"SourceID":121034,"TargetID":121033,"Directional":true},{"SourceID":121039,"TargetID":121038,"Directional":true}]},{"ID":6318,"SourceStructureID":446,"TargetStructureID":5737,"Label":"446-5737 via Cistern Pre from 34279 -> 34280","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":34279,"TargetID":34280,"Directional":true}]},{"ID":6319,"SourceStructureID":446,"TargetStructureID":34165,"Label":"446-34165 via Ribbon Synapse from 2020 -> 34168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2020,"TargetID":34168,"Directional":true}]},{"ID":6320,"SourceStructureID":447,"TargetStructureID":21779,"Label":"447-21779 via Ribbon Synapse from 32094 -> 32091, 32095 -> 32091, 32096 -> 32091, 32097 -> 32091, 32100 -> 32091, 32101 -> 32091, 32102 -> 32091, 32103 -> 32091, 32104 -> 32091, 32105 -> 32091, 123231 -> 32091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32094,"TargetID":32091,"Directional":true},{"SourceID":32095,"TargetID":32091,"Directional":true},{"SourceID":32096,"TargetID":32091,"Directional":true},{"SourceID":32097,"TargetID":32091,"Directional":true},{"SourceID":32100,"TargetID":32091,"Directional":true},{"SourceID":32101,"TargetID":32091,"Directional":true},{"SourceID":32102,"TargetID":32091,"Directional":true},{"SourceID":32103,"TargetID":32091,"Directional":true},{"SourceID":32104,"TargetID":32091,"Directional":true},{"SourceID":32105,"TargetID":32091,"Directional":true},{"SourceID":123231,"TargetID":32091,"Directional":true}]},{"ID":6321,"SourceStructureID":447,"TargetStructureID":32273,"Label":"447-32273 via Ribbon Synapse from 32101 -> 32276, 32103 -> 32276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32101,"TargetID":32276,"Directional":true},{"SourceID":32103,"TargetID":32276,"Directional":true}]},{"ID":6322,"SourceStructureID":447,"TargetStructureID":34336,"Label":"447-34336 via Ribbon Synapse from 33852 -> 34341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33852,"TargetID":34341,"Directional":true}]},{"ID":6323,"SourceStructureID":447,"TargetStructureID":34337,"Label":"447-34337 via Ribbon Synapse from 33852 -> 34338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33852,"TargetID":34338,"Directional":true}]},{"ID":6324,"SourceStructureID":447,"TargetStructureID":123243,"Label":"447-123243 via Ribbon Synapse from 33855 -> 123245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33855,"TargetID":123245,"Directional":true}]},{"ID":6325,"SourceStructureID":450,"TargetStructureID":606,"Label":"450-606 via Ribbon Synapse from 5075 -> 5074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5075,"TargetID":5074,"Directional":true}]},{"ID":6326,"SourceStructureID":450,"TargetStructureID":34336,"Label":"450-34336 via Ribbon Synapse from 122508 -> 122507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122508,"TargetID":122507,"Directional":true}]},{"ID":6327,"SourceStructureID":453,"TargetStructureID":7564,"Label":"453-7564 via Ribbon Synapse from 45628 -> 29640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45628,"TargetID":29640,"Directional":true}]},{"ID":6328,"SourceStructureID":455,"TargetStructureID":4835,"Label":"455-4835 via Ribbon Synapse from 20591 -> 31365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20591,"TargetID":31365,"Directional":true}]},{"ID":6329,"SourceStructureID":455,"TargetStructureID":8575,"Label":"455-8575 via BC Conventional Synapse from 55286 -> 55285","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55286,"TargetID":55285,"Directional":true}]},{"ID":6330,"SourceStructureID":455,"TargetStructureID":42795,"Label":"455-42795 via Ribbon Synapse from 42809 -> 42806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42809,"TargetID":42806,"Directional":true}]},{"ID":6331,"SourceStructureID":455,"TargetStructureID":64777,"Label":"455-64777 via Ribbon Synapse from 28775 -> 64802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28775,"TargetID":64802,"Directional":true}]},{"ID":6332,"SourceStructureID":456,"TargetStructureID":108821,"Label":"456-108821 via Conventional from 109642 -> 109641","Type":"Conventional","Directional":true,"Links":[{"SourceID":109642,"TargetID":109641,"Directional":true}]},{"ID":6333,"SourceStructureID":458,"TargetStructureID":115,"Label":"458-115 via Ribbon Synapse from 8155 -> 8154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8155,"TargetID":8154,"Directional":true}]},{"ID":6334,"SourceStructureID":458,"TargetStructureID":7564,"Label":"458-7564 via Ribbon Synapse from 14470 -> 37285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14470,"TargetID":37285,"Directional":true}]},{"ID":6335,"SourceStructureID":458,"TargetStructureID":7703,"Label":"458-7703 via Ribbon Synapse from 14471 -> 24794, 14513 -> 14530, 14517 -> 14527, 14524 -> 14525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14471,"TargetID":24794,"Directional":true},{"SourceID":14513,"TargetID":14530,"Directional":true},{"SourceID":14517,"TargetID":14527,"Directional":true},{"SourceID":14524,"TargetID":14525,"Directional":true}]},{"ID":6336,"SourceStructureID":458,"TargetStructureID":8575,"Label":"458-8575 via BC Conventional Synapse from 55291 -> 55290, 61738 -> 61737","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55291,"TargetID":55290,"Directional":true},{"SourceID":61738,"TargetID":61737,"Directional":true}]},{"ID":6337,"SourceStructureID":458,"TargetStructureID":8575,"Label":"458-8575 via Ribbon Synapse from 14478 -> 55289, 37284 -> 55288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14478,"TargetID":55289,"Directional":true},{"SourceID":37284,"TargetID":55288,"Directional":true}]},{"ID":6338,"SourceStructureID":458,"TargetStructureID":11238,"Label":"458-11238 via Ribbon Synapse from 14504 -> 88582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14504,"TargetID":88582,"Directional":true}]},{"ID":6339,"SourceStructureID":458,"TargetStructureID":98590,"Label":"458-98590 via Ribbon Synapse from 14461 -> 117180","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14461,"TargetID":117180,"Directional":true}]},{"ID":6340,"SourceStructureID":458,"TargetStructureID":101369,"Label":"458-101369 via Ribbon Synapse from 101412 -> 101405","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101412,"TargetID":101405,"Directional":true}]},{"ID":6341,"SourceStructureID":458,"TargetStructureID":137024,"Label":"458-137024 via Ribbon Synapse from 14515 -> 137025","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14515,"TargetID":137025,"Directional":true}]},{"ID":6342,"SourceStructureID":458,"TargetStructureID":137122,"Label":"458-137122 via BC Conventional Synapse from 137138 -> 137139, 137141 -> 137140","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":137138,"TargetID":137139,"Directional":true},{"SourceID":137141,"TargetID":137140,"Directional":true}]},{"ID":6343,"SourceStructureID":460,"TargetStructureID":7568,"Label":"460-7568 via Ribbon Synapse from 14437 -> 27107, 27106 -> 27104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14437,"TargetID":27107,"Directional":true},{"SourceID":27106,"TargetID":27104,"Directional":true}]},{"ID":6344,"SourceStructureID":460,"TargetStructureID":9787,"Label":"460-9787 via Ribbon Synapse from 14443 -> 18032, 14447 -> 18649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14443,"TargetID":18032,"Directional":true},{"SourceID":14447,"TargetID":18649,"Directional":true}]},{"ID":6345,"SourceStructureID":460,"TargetStructureID":11238,"Label":"460-11238 via Ribbon Synapse from 44941 -> 88585, 44947 -> 88583, 88580 -> 88573, 88581 -> 88574","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44941,"TargetID":88585,"Directional":true},{"SourceID":44947,"TargetID":88583,"Directional":true},{"SourceID":88580,"TargetID":88573,"Directional":true},{"SourceID":88581,"TargetID":88574,"Directional":true}]},{"ID":6346,"SourceStructureID":460,"TargetStructureID":13525,"Label":"460-13525 via Ribbon Synapse from 130160 -> 129949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130160,"TargetID":129949,"Directional":true}]},{"ID":6347,"SourceStructureID":460,"TargetStructureID":31915,"Label":"460-31915 via Ribbon Synapse from 31923 -> 31920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31923,"TargetID":31920,"Directional":true}]},{"ID":6348,"SourceStructureID":461,"TargetStructureID":390,"Label":"461-390 via Ribbon Synapse from 14754 -> 65205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14754,"TargetID":65205,"Directional":true}]},{"ID":6349,"SourceStructureID":461,"TargetStructureID":606,"Label":"461-606 via Ribbon Synapse from 49699 -> 49172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49699,"TargetID":49172,"Directional":true}]},{"ID":6350,"SourceStructureID":461,"TargetStructureID":1620,"Label":"461-1620 via Ribbon Synapse from 14828 -> 16890, 14831 -> 16895, 14833 -> 16894, 14837 -> 16893, 20620 -> 20619, 20623 -> 20624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14828,"TargetID":16890,"Directional":true},{"SourceID":14831,"TargetID":16895,"Directional":true},{"SourceID":14833,"TargetID":16894,"Directional":true},{"SourceID":14837,"TargetID":16893,"Directional":true},{"SourceID":20620,"TargetID":20619,"Directional":true},{"SourceID":20623,"TargetID":20624,"Directional":true}]},{"ID":6351,"SourceStructureID":461,"TargetStructureID":5117,"Label":"461-5117 via Ribbon Synapse from 60138 -> 135211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60138,"TargetID":135211,"Directional":true}]},{"ID":6352,"SourceStructureID":461,"TargetStructureID":5410,"Label":"461-5410 via Ribbon Synapse from 49581 -> 82168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49581,"TargetID":82168,"Directional":true}]},{"ID":6353,"SourceStructureID":461,"TargetStructureID":18282,"Label":"461-18282 via Ribbon Synapse from 86710 -> 86711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86710,"TargetID":86711,"Directional":true}]},{"ID":6354,"SourceStructureID":461,"TargetStructureID":29198,"Label":"461-29198 via Ribbon Synapse from 49795 -> 29212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49795,"TargetID":29212,"Directional":true}]},{"ID":6355,"SourceStructureID":461,"TargetStructureID":34306,"Label":"461-34306 via Ribbon Synapse from 34310 -> 34309","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34310,"TargetID":34309,"Directional":true}]},{"ID":6356,"SourceStructureID":463,"TargetStructureID":458,"Label":"463-458 via Ribbon Synapse from 37512 -> 37513","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37512,"TargetID":37513,"Directional":true}]},{"ID":6357,"SourceStructureID":463,"TargetStructureID":5422,"Label":"463-5422 via Ribbon Synapse from 74131 -> 74128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74131,"TargetID":74128,"Directional":true}]},{"ID":6358,"SourceStructureID":463,"TargetStructureID":74141,"Label":"463-74141 via Ribbon Synapse from 74140 -> 74142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74140,"TargetID":74142,"Directional":true}]},{"ID":6359,"SourceStructureID":464,"TargetStructureID":4835,"Label":"464-4835 via Ribbon Synapse from 6653 -> 6652, 26641 -> 87868, 87870 -> 87871, 87874 -> 29509, 87876 -> 29510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6653,"TargetID":6652,"Directional":true},{"SourceID":26641,"TargetID":87868,"Directional":true},{"SourceID":87870,"TargetID":87871,"Directional":true},{"SourceID":87874,"TargetID":29509,"Directional":true},{"SourceID":87876,"TargetID":29510,"Directional":true}]},{"ID":6360,"SourceStructureID":468,"TargetStructureID":4835,"Label":"468-4835 via Ribbon Synapse from 12926 -> 12927","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12926,"TargetID":12927,"Directional":true}]},{"ID":6361,"SourceStructureID":469,"TargetStructureID":390,"Label":"469-390 via Ribbon Synapse from 4654 -> 65128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4654,"TargetID":65128,"Directional":true}]},{"ID":6362,"SourceStructureID":469,"TargetStructureID":476,"Label":"469-476 via Ribbon Synapse from 4653 -> 5723, 4665 -> 15065, 4672 -> 15066, 4684 -> 16315, 4685 -> 16317, 16300 -> 16298, 16312 -> 16310, 18021 -> 18020, 18025 -> 18024","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4653,"TargetID":5723,"Directional":true},{"SourceID":4665,"TargetID":15065,"Directional":true},{"SourceID":4672,"TargetID":15066,"Directional":true},{"SourceID":4684,"TargetID":16315,"Directional":true},{"SourceID":4685,"TargetID":16317,"Directional":true},{"SourceID":16300,"TargetID":16298,"Directional":true},{"SourceID":16312,"TargetID":16310,"Directional":true},{"SourceID":18021,"TargetID":18020,"Directional":true},{"SourceID":18025,"TargetID":18024,"Directional":true}]},{"ID":6363,"SourceStructureID":469,"TargetStructureID":514,"Label":"469-514 via Ribbon Synapse from 4645 -> 14959, 4676 -> 14959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4645,"TargetID":14959,"Directional":true},{"SourceID":4676,"TargetID":14959,"Directional":true}]},{"ID":6364,"SourceStructureID":469,"TargetStructureID":3257,"Label":"469-3257 via Ribbon Synapse from 16308 -> 16307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16308,"TargetID":16307,"Directional":true}]},{"ID":6365,"SourceStructureID":469,"TargetStructureID":4835,"Label":"469-4835 via Ribbon Synapse from 4688 -> 36738, 36735 -> 36734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4688,"TargetID":36738,"Directional":true},{"SourceID":36735,"TargetID":36734,"Directional":true}]},{"ID":6366,"SourceStructureID":469,"TargetStructureID":4943,"Label":"469-4943 via Ribbon Synapse from 4641 -> 13432, 4676 -> 13430, 4677 -> 13431, 18025 -> 13435","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4641,"TargetID":13432,"Directional":true},{"SourceID":4676,"TargetID":13430,"Directional":true},{"SourceID":4677,"TargetID":13431,"Directional":true},{"SourceID":18025,"TargetID":13435,"Directional":true}]},{"ID":6367,"SourceStructureID":469,"TargetStructureID":9643,"Label":"469-9643 via Ribbon Synapse from 4653 -> 9683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4653,"TargetID":9683,"Directional":true}]},{"ID":6368,"SourceStructureID":469,"TargetStructureID":105212,"Label":"469-105212 via Ribbon Synapse from 36735 -> 105769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36735,"TargetID":105769,"Directional":true}]},{"ID":6369,"SourceStructureID":471,"TargetStructureID":476,"Label":"471-476 via Ribbon Synapse from 7023 -> 31971, 9649 -> 3162, 9652 -> 3163, 16035 -> 16034, 16283 -> 16284, 16295 -> 16294, 16297 -> 16296, 16302 -> 16301, 16304 -> 16303, 16316 -> 4682, 16318 -> 18009, 18006 -> 3184, 18007 -> 3182, 18008 -> 3203, 18380 -> 3171, 18380 -> 3172, 60637 -> 2235, 65180 -> 3165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7023,"TargetID":31971,"Directional":true},{"SourceID":9649,"TargetID":3162,"Directional":true},{"SourceID":9652,"TargetID":3163,"Directional":true},{"SourceID":16035,"TargetID":16034,"Directional":true},{"SourceID":16283,"TargetID":16284,"Directional":true},{"SourceID":16295,"TargetID":16294,"Directional":true},{"SourceID":16297,"TargetID":16296,"Directional":true},{"SourceID":16302,"TargetID":16301,"Directional":true},{"SourceID":16304,"TargetID":16303,"Directional":true},{"SourceID":16316,"TargetID":4682,"Directional":true},{"SourceID":16318,"TargetID":18009,"Directional":true},{"SourceID":18006,"TargetID":3184,"Directional":true},{"SourceID":18007,"TargetID":3182,"Directional":true},{"SourceID":18008,"TargetID":3203,"Directional":true},{"SourceID":18380,"TargetID":3171,"Directional":true},{"SourceID":18380,"TargetID":3172,"Directional":true},{"SourceID":60637,"TargetID":2235,"Directional":true},{"SourceID":65180,"TargetID":3165,"Directional":true}]},{"ID":6370,"SourceStructureID":471,"TargetStructureID":514,"Label":"471-514 via Ribbon Synapse from 16039 -> 3551, 16292 -> 16293, 16309 -> 3565, 88077 -> 88078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16039,"TargetID":3551,"Directional":true},{"SourceID":16292,"TargetID":16293,"Directional":true},{"SourceID":16309,"TargetID":3565,"Directional":true},{"SourceID":88077,"TargetID":88078,"Directional":true}]},{"ID":6371,"SourceStructureID":471,"TargetStructureID":3257,"Label":"471-3257 via Ribbon Synapse from 8234 -> 8233, 10864 -> 10863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8234,"TargetID":8233,"Directional":true},{"SourceID":10864,"TargetID":10863,"Directional":true}]},{"ID":6372,"SourceStructureID":471,"TargetStructureID":9643,"Label":"471-9643 via Ribbon Synapse from 9652 -> 9653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9652,"TargetID":9653,"Directional":true}]},{"ID":6373,"SourceStructureID":471,"TargetStructureID":39530,"Label":"471-39530 via Ribbon Synapse from 16035 -> 83492, 60637 -> 83495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16035,"TargetID":83492,"Directional":true},{"SourceID":60637,"TargetID":83495,"Directional":true}]},{"ID":6374,"SourceStructureID":471,"TargetStructureID":89984,"Label":"471-89984 via Ribbon Synapse from 90097 -> 90098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90097,"TargetID":90098,"Directional":true}]},{"ID":6375,"SourceStructureID":471,"TargetStructureID":97024,"Label":"471-97024 via Ribbon Synapse from 16283 -> 97116","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16283,"TargetID":97116,"Directional":true}]},{"ID":6376,"SourceStructureID":475,"TargetStructureID":476,"Label":"475-476 via Ribbon Synapse from 43835 -> 65834, 133729 -> 133728","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43835,"TargetID":65834,"Directional":true},{"SourceID":133729,"TargetID":133728,"Directional":true}]},{"ID":6377,"SourceStructureID":475,"TargetStructureID":46074,"Label":"475-46074 via Ribbon Synapse from 60739 -> 60740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60739,"TargetID":60740,"Directional":true}]},{"ID":6378,"SourceStructureID":476,"TargetStructureID":425,"Label":"476-425 via Conventional from 2147 -> 22046","Type":"Conventional","Directional":true,"Links":[{"SourceID":2147,"TargetID":22046,"Directional":true}]},{"ID":6379,"SourceStructureID":476,"TargetStructureID":460,"Label":"476-460 via Conventional from 4714 -> 18026","Type":"Conventional","Directional":true,"Links":[{"SourceID":4714,"TargetID":18026,"Directional":true}]},{"ID":6380,"SourceStructureID":476,"TargetStructureID":475,"Label":"476-475 via Conventional from 3054 -> 43837, 5053 -> 5052, 65828 -> 65829, 65832 -> 65833","Type":"Conventional","Directional":true,"Links":[{"SourceID":3054,"TargetID":43837,"Directional":true},{"SourceID":5053,"TargetID":5052,"Directional":true},{"SourceID":65828,"TargetID":65829,"Directional":true},{"SourceID":65832,"TargetID":65833,"Directional":true}]},{"ID":6381,"SourceStructureID":476,"TargetStructureID":4567,"Label":"476-4567 via Conventional from 3052 -> 15589","Type":"Conventional","Directional":true,"Links":[{"SourceID":3052,"TargetID":15589,"Directional":true}]},{"ID":6382,"SourceStructureID":476,"TargetStructureID":4568,"Label":"476-4568 via Conventional from 2117 -> 11482","Type":"Conventional","Directional":true,"Links":[{"SourceID":2117,"TargetID":11482,"Directional":true}]},{"ID":6383,"SourceStructureID":476,"TargetStructureID":5150,"Label":"476-5150 via Conventional from 3040 -> 5152, 4831 -> 5155","Type":"Conventional","Directional":true,"Links":[{"SourceID":3040,"TargetID":5152,"Directional":true},{"SourceID":4831,"TargetID":5155,"Directional":true}]},{"ID":6384,"SourceStructureID":476,"TargetStructureID":6656,"Label":"476-6656 via Conventional from 65830 -> 40417, 65831 -> 40416","Type":"Conventional","Directional":true,"Links":[{"SourceID":65830,"TargetID":40417,"Directional":true},{"SourceID":65831,"TargetID":40416,"Directional":true}]},{"ID":6385,"SourceStructureID":476,"TargetStructureID":65835,"Label":"476-65835 via Conventional from 3063 -> 65836","Type":"Conventional","Directional":true,"Links":[{"SourceID":3063,"TargetID":65836,"Directional":true}]},{"ID":6386,"SourceStructureID":476,"TargetStructureID":147796,"Label":"476-147796 via Conventional from 147802 -> 147801","Type":"Conventional","Directional":true,"Links":[{"SourceID":147802,"TargetID":147801,"Directional":true}]},{"ID":6387,"SourceStructureID":476,"TargetStructureID":147809,"Label":"476-147809 via Conventional from 3140 -> 147814","Type":"Conventional","Directional":true,"Links":[{"SourceID":3140,"TargetID":147814,"Directional":true}]},{"ID":6388,"SourceStructureID":478,"TargetStructureID":906,"Label":"478-906 via Ribbon Synapse from 19396 -> 15200, 19397 -> 19400","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19396,"TargetID":15200,"Directional":true},{"SourceID":19397,"TargetID":19400,"Directional":true}]},{"ID":6389,"SourceStructureID":478,"TargetStructureID":5107,"Label":"478-5107 via Ribbon Synapse from 724 -> 19412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":724,"TargetID":19412,"Directional":true}]},{"ID":6390,"SourceStructureID":478,"TargetStructureID":5150,"Label":"478-5150 via Ribbon Synapse from 10947 -> 5162, 19386 -> 19385","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10947,"TargetID":5162,"Directional":true},{"SourceID":19386,"TargetID":19385,"Directional":true}]},{"ID":6391,"SourceStructureID":478,"TargetStructureID":7568,"Label":"478-7568 via Ribbon Synapse from 4622 -> 27050, 19408 -> 27077, 19414 -> 27044","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4622,"TargetID":27050,"Directional":true},{"SourceID":19408,"TargetID":27077,"Directional":true},{"SourceID":19414,"TargetID":27044,"Directional":true}]},{"ID":6392,"SourceStructureID":478,"TargetStructureID":7859,"Label":"478-7859 via Ribbon Synapse from 19424 -> 64678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19424,"TargetID":64678,"Directional":true}]},{"ID":6393,"SourceStructureID":478,"TargetStructureID":10945,"Label":"478-10945 via Ribbon Synapse from 10947 -> 10946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10947,"TargetID":10946,"Directional":true}]},{"ID":6394,"SourceStructureID":478,"TargetStructureID":22634,"Label":"478-22634 via Ribbon Synapse from 706 -> 22641","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":706,"TargetID":22641,"Directional":true}]},{"ID":6395,"SourceStructureID":479,"TargetStructureID":314,"Label":"479-314 via Ribbon Synapse from 21861 -> 21862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21861,"TargetID":21862,"Directional":true}]},{"ID":6396,"SourceStructureID":479,"TargetStructureID":375,"Label":"479-375 via Ribbon Synapse from 8310 -> 21838, 21866 -> 21852, 21867 -> 21852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8310,"TargetID":21838,"Directional":true},{"SourceID":21866,"TargetID":21852,"Directional":true},{"SourceID":21867,"TargetID":21852,"Directional":true}]},{"ID":6397,"SourceStructureID":479,"TargetStructureID":8575,"Label":"479-8575 via BC Conventional Synapse from 61564 -> 61563, 122370 -> 122369","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61564,"TargetID":61563,"Directional":true},{"SourceID":122370,"TargetID":122369,"Directional":true}]},{"ID":6398,"SourceStructureID":479,"TargetStructureID":32637,"Label":"479-32637 via Ribbon Synapse from 34985 -> 34984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34985,"TargetID":34984,"Directional":true}]},{"ID":6399,"SourceStructureID":479,"TargetStructureID":36153,"Label":"479-36153 via Ribbon Synapse from 45887 -> 61616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45887,"TargetID":61616,"Directional":true}]},{"ID":6400,"SourceStructureID":479,"TargetStructureID":36158,"Label":"479-36158 via Ribbon Synapse from 8309 -> 36160","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8309,"TargetID":36160,"Directional":true}]},{"ID":6401,"SourceStructureID":479,"TargetStructureID":36162,"Label":"479-36162 via Ribbon Synapse from 36165 -> 36164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36165,"TargetID":36164,"Directional":true}]},{"ID":6402,"SourceStructureID":479,"TargetStructureID":59568,"Label":"479-59568 via Ribbon Synapse from 56494 -> 59569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56494,"TargetID":59569,"Directional":true}]},{"ID":6403,"SourceStructureID":483,"TargetStructureID":4890,"Label":"483-4890 via Ribbon Synapse from 6794 -> 7921, 6798 -> 103718, 19999 -> 19998, 20001 -> 20000, 26824 -> 64860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6794,"TargetID":7921,"Directional":true},{"SourceID":6798,"TargetID":103718,"Directional":true},{"SourceID":19999,"TargetID":19998,"Directional":true},{"SourceID":20001,"TargetID":20000,"Directional":true},{"SourceID":26824,"TargetID":64860,"Directional":true}]},{"ID":6404,"SourceStructureID":483,"TargetStructureID":5350,"Label":"483-5350 via Ribbon Synapse from 71247 -> 10674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71247,"TargetID":10674,"Directional":true}]},{"ID":6405,"SourceStructureID":483,"TargetStructureID":5439,"Label":"483-5439 via Ribbon Synapse from 6750 -> 66578, 7469 -> 102700, 92341 -> 96636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6750,"TargetID":66578,"Directional":true},{"SourceID":7469,"TargetID":102700,"Directional":true},{"SourceID":92341,"TargetID":96636,"Directional":true}]},{"ID":6406,"SourceStructureID":483,"TargetStructureID":6073,"Label":"483-6073 via Ribbon Synapse from 6072 -> 6074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6072,"TargetID":6074,"Directional":true}]},{"ID":6407,"SourceStructureID":483,"TargetStructureID":6857,"Label":"483-6857 via Ribbon Synapse from 26824 -> 56080, 65234 -> 65231, 85758 -> 96627, 103539 -> 103540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26824,"TargetID":56080,"Directional":true},{"SourceID":65234,"TargetID":65231,"Directional":true},{"SourceID":85758,"TargetID":96627,"Directional":true},{"SourceID":103539,"TargetID":103540,"Directional":true}]},{"ID":6408,"SourceStructureID":483,"TargetStructureID":8577,"Label":"483-8577 via Ribbon Synapse from 6764 -> 15929, 6798 -> 15930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6764,"TargetID":15929,"Directional":true},{"SourceID":6798,"TargetID":15930,"Directional":true}]},{"ID":6409,"SourceStructureID":483,"TargetStructureID":8579,"Label":"483-8579 via Ribbon Synapse from 6770 -> 103350, 103344 -> 103347","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6770,"TargetID":103350,"Directional":true},{"SourceID":103344,"TargetID":103347,"Directional":true}]},{"ID":6410,"SourceStructureID":483,"TargetStructureID":8720,"Label":"483-8720 via Ribbon Synapse from 97748 -> 97749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97748,"TargetID":97749,"Directional":true}]},{"ID":6411,"SourceStructureID":483,"TargetStructureID":12208,"Label":"483-12208 via BC Conventional Synapse from 97704 -> 22461","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97704,"TargetID":22461,"Directional":true}]},{"ID":6412,"SourceStructureID":483,"TargetStructureID":12208,"Label":"483-12208 via Ribbon Synapse from 97724 -> 22460, 97726 -> 22460, 97729 -> 22460","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97724,"TargetID":22460,"Directional":true},{"SourceID":97726,"TargetID":22460,"Directional":true},{"SourceID":97729,"TargetID":22460,"Directional":true}]},{"ID":6413,"SourceStructureID":483,"TargetStructureID":18282,"Label":"483-18282 via Ribbon Synapse from 6736 -> 29195, 71188 -> 71187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6736,"TargetID":29195,"Directional":true},{"SourceID":71188,"TargetID":71187,"Directional":true}]},{"ID":6414,"SourceStructureID":483,"TargetStructureID":18576,"Label":"483-18576 via Ribbon Synapse from 100555 -> 100554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100555,"TargetID":100554,"Directional":true}]},{"ID":6415,"SourceStructureID":483,"TargetStructureID":20299,"Label":"483-20299 via Ribbon Synapse from 20355 -> 20324, 26821 -> 33598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20355,"TargetID":20324,"Directional":true},{"SourceID":26821,"TargetID":33598,"Directional":true}]},{"ID":6416,"SourceStructureID":483,"TargetStructureID":29198,"Label":"483-29198 via BC Conventional Synapse from 103394 -> 103395, 103430 -> 103431","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103394,"TargetID":103395,"Directional":true},{"SourceID":103430,"TargetID":103431,"Directional":true}]},{"ID":6417,"SourceStructureID":483,"TargetStructureID":29702,"Label":"483-29702 via Ribbon Synapse from 75947 -> 75946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75947,"TargetID":75946,"Directional":true}]},{"ID":6418,"SourceStructureID":483,"TargetStructureID":30526,"Label":"483-30526 via Ribbon Synapse from 6707 -> 30542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6707,"TargetID":30542,"Directional":true}]},{"ID":6419,"SourceStructureID":483,"TargetStructureID":32643,"Label":"483-32643 via Ribbon Synapse from 81493 -> 32649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81493,"TargetID":32649,"Directional":true}]},{"ID":6420,"SourceStructureID":483,"TargetStructureID":34601,"Label":"483-34601 via Ribbon Synapse from 6804 -> 60341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6804,"TargetID":60341,"Directional":true}]},{"ID":6421,"SourceStructureID":483,"TargetStructureID":40010,"Label":"483-40010 via Ribbon Synapse from 14986 -> 40013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14986,"TargetID":40013,"Directional":true}]},{"ID":6422,"SourceStructureID":483,"TargetStructureID":41474,"Label":"483-41474 via BC Conventional Synapse from 103223 -> 103222","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103223,"TargetID":103222,"Directional":true}]},{"ID":6423,"SourceStructureID":483,"TargetStructureID":41474,"Label":"483-41474 via Ribbon Synapse from 94597 -> 103298, 103194 -> 103197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94597,"TargetID":103298,"Directional":true},{"SourceID":103194,"TargetID":103197,"Directional":true}]},{"ID":6424,"SourceStructureID":483,"TargetStructureID":43747,"Label":"483-43747 via Ribbon Synapse from 6735 -> 43749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6735,"TargetID":43749,"Directional":true}]},{"ID":6425,"SourceStructureID":483,"TargetStructureID":46823,"Label":"483-46823 via Ribbon Synapse from 6715 -> 46830, 6717 -> 46827, 6728 -> 46825, 6820 -> 46835, 26829 -> 46834, 46829 -> 46828","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6715,"TargetID":46830,"Directional":true},{"SourceID":6717,"TargetID":46827,"Directional":true},{"SourceID":6728,"TargetID":46825,"Directional":true},{"SourceID":6820,"TargetID":46835,"Directional":true},{"SourceID":26829,"TargetID":46834,"Directional":true},{"SourceID":46829,"TargetID":46828,"Directional":true}]},{"ID":6426,"SourceStructureID":483,"TargetStructureID":49489,"Label":"483-49489 via Ribbon Synapse from 6787 -> 49490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6787,"TargetID":49490,"Directional":true}]},{"ID":6427,"SourceStructureID":483,"TargetStructureID":59130,"Label":"483-59130 via Ribbon Synapse from 23393 -> 59131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23393,"TargetID":59131,"Directional":true}]},{"ID":6428,"SourceStructureID":483,"TargetStructureID":59283,"Label":"483-59283 via Ribbon Synapse from 6705 -> 59284, 15162 -> 59284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6705,"TargetID":59284,"Directional":true},{"SourceID":15162,"TargetID":59284,"Directional":true}]},{"ID":6429,"SourceStructureID":483,"TargetStructureID":59285,"Label":"483-59285 via Ribbon Synapse from 15162 -> 59286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15162,"TargetID":59286,"Directional":true}]},{"ID":6430,"SourceStructureID":483,"TargetStructureID":59289,"Label":"483-59289 via Plaque-like Pre from 6706 -> 59290","Type":"Plaque-like Pre","Directional":true,"Links":[{"SourceID":6706,"TargetID":59290,"Directional":true}]},{"ID":6431,"SourceStructureID":483,"TargetStructureID":59432,"Label":"483-59432 via Ribbon Synapse from 59431 -> 59433","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59431,"TargetID":59433,"Directional":true}]},{"ID":6432,"SourceStructureID":483,"TargetStructureID":59437,"Label":"483-59437 via Ribbon Synapse from 6779 -> 97768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6779,"TargetID":97768,"Directional":true}]},{"ID":6433,"SourceStructureID":483,"TargetStructureID":59439,"Label":"483-59439 via Ribbon Synapse from 6779 -> 59440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6779,"TargetID":59440,"Directional":true}]},{"ID":6434,"SourceStructureID":483,"TargetStructureID":59441,"Label":"483-59441 via Ribbon Synapse from 6778 -> 59442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6778,"TargetID":59442,"Directional":true}]},{"ID":6435,"SourceStructureID":483,"TargetStructureID":60185,"Label":"483-60185 via Ribbon Synapse from 6784 -> 60186","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6784,"TargetID":60186,"Directional":true}]},{"ID":6436,"SourceStructureID":483,"TargetStructureID":60200,"Label":"483-60200 via Ribbon Synapse from 6789 -> 103553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6789,"TargetID":103553,"Directional":true}]},{"ID":6437,"SourceStructureID":483,"TargetStructureID":60201,"Label":"483-60201 via Ribbon Synapse from 6789 -> 60202","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6789,"TargetID":60202,"Directional":true}]},{"ID":6438,"SourceStructureID":483,"TargetStructureID":60223,"Label":"483-60223 via Ribbon Synapse from 6797 -> 60224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6797,"TargetID":60224,"Directional":true}]},{"ID":6439,"SourceStructureID":483,"TargetStructureID":60227,"Label":"483-60227 via Ribbon Synapse from 6803 -> 60228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6803,"TargetID":60228,"Directional":true}]},{"ID":6440,"SourceStructureID":483,"TargetStructureID":60229,"Label":"483-60229 via Ribbon Synapse from 6803 -> 60230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6803,"TargetID":60230,"Directional":true}]},{"ID":6441,"SourceStructureID":483,"TargetStructureID":60337,"Label":"483-60337 via Ribbon Synapse from 6804 -> 60339","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6804,"TargetID":60339,"Directional":true}]},{"ID":6442,"SourceStructureID":483,"TargetStructureID":60352,"Label":"483-60352 via Ribbon Synapse from 6812 -> 60353","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6812,"TargetID":60353,"Directional":true}]},{"ID":6443,"SourceStructureID":483,"TargetStructureID":60358,"Label":"483-60358 via Ribbon Synapse from 60356 -> 60359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60356,"TargetID":60359,"Directional":true}]},{"ID":6444,"SourceStructureID":483,"TargetStructureID":60360,"Label":"483-60360 via Ribbon Synapse from 60356 -> 60361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60356,"TargetID":60361,"Directional":true}]},{"ID":6445,"SourceStructureID":483,"TargetStructureID":60363,"Label":"483-60363 via Ribbon Synapse from 60362 -> 60364","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60362,"TargetID":60364,"Directional":true}]},{"ID":6446,"SourceStructureID":483,"TargetStructureID":61816,"Label":"483-61816 via Ribbon Synapse from 6763 -> 80744, 102803 -> 102806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6763,"TargetID":80744,"Directional":true},{"SourceID":102803,"TargetID":102806,"Directional":true}]},{"ID":6447,"SourceStructureID":483,"TargetStructureID":65267,"Label":"483-65267 via Ribbon Synapse from 26823 -> 69940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26823,"TargetID":69940,"Directional":true}]},{"ID":6448,"SourceStructureID":483,"TargetStructureID":69944,"Label":"483-69944 via BC Conventional Synapse from 69945 -> 69946","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":69945,"TargetID":69946,"Directional":true}]},{"ID":6449,"SourceStructureID":483,"TargetStructureID":70284,"Label":"483-70284 via BC Conventional Synapse from 97738 -> 103457","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97738,"TargetID":103457,"Directional":true}]},{"ID":6450,"SourceStructureID":483,"TargetStructureID":70610,"Label":"483-70610 via Ribbon Synapse from 102812 -> 102818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102812,"TargetID":102818,"Directional":true}]},{"ID":6451,"SourceStructureID":483,"TargetStructureID":71089,"Label":"483-71089 via Ribbon Synapse from 71088 -> 71090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71088,"TargetID":71090,"Directional":true}]},{"ID":6452,"SourceStructureID":483,"TargetStructureID":71098,"Label":"483-71098 via Ribbon Synapse from 71122 -> 71123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71122,"TargetID":71123,"Directional":true}]},{"ID":6453,"SourceStructureID":483,"TargetStructureID":71107,"Label":"483-71107 via Ribbon Synapse from 71109 -> 71111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71109,"TargetID":71111,"Directional":true}]},{"ID":6454,"SourceStructureID":483,"TargetStructureID":71108,"Label":"483-71108 via Ribbon Synapse from 71109 -> 71114","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71109,"TargetID":71114,"Directional":true}]},{"ID":6455,"SourceStructureID":483,"TargetStructureID":71115,"Label":"483-71115 via BC Conventional Synapse from 71116 -> 71117","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71116,"TargetID":71117,"Directional":true}]},{"ID":6456,"SourceStructureID":483,"TargetStructureID":71145,"Label":"483-71145 via Ribbon Synapse from 71144 -> 71146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71144,"TargetID":71146,"Directional":true}]},{"ID":6457,"SourceStructureID":483,"TargetStructureID":71151,"Label":"483-71151 via Ribbon Synapse from 71144 -> 71168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71144,"TargetID":71168,"Directional":true}]},{"ID":6458,"SourceStructureID":483,"TargetStructureID":71153,"Label":"483-71153 via Ribbon Synapse from 71144 -> 71166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71144,"TargetID":71166,"Directional":true}]},{"ID":6459,"SourceStructureID":483,"TargetStructureID":71155,"Label":"483-71155 via Ribbon Synapse from 71144 -> 71167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71144,"TargetID":71167,"Directional":true}]},{"ID":6460,"SourceStructureID":483,"TargetStructureID":71189,"Label":"483-71189 via Ribbon Synapse from 71188 -> 71190, 92322 -> 92323","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71188,"TargetID":71190,"Directional":true},{"SourceID":92322,"TargetID":92323,"Directional":true}]},{"ID":6461,"SourceStructureID":483,"TargetStructureID":71210,"Label":"483-71210 via Ribbon Synapse from 71201 -> 71211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71201,"TargetID":71211,"Directional":true}]},{"ID":6462,"SourceStructureID":483,"TargetStructureID":71213,"Label":"483-71213 via Ribbon Synapse from 71201 -> 71214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71201,"TargetID":71214,"Directional":true}]},{"ID":6463,"SourceStructureID":483,"TargetStructureID":71241,"Label":"483-71241 via BC Conventional Synapse from 71265 -> 71266","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71265,"TargetID":71266,"Directional":true}]},{"ID":6464,"SourceStructureID":483,"TargetStructureID":71243,"Label":"483-71243 via Ribbon Synapse from 71244 -> 71245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71244,"TargetID":71245,"Directional":true}]},{"ID":6465,"SourceStructureID":483,"TargetStructureID":71288,"Label":"483-71288 via Adherens from 71385 -> 71386","Type":"Adherens","Directional":true,"Links":[{"SourceID":71385,"TargetID":71386,"Directional":true}]},{"ID":6466,"SourceStructureID":483,"TargetStructureID":71362,"Label":"483-71362 via Ribbon Synapse from 71368 -> 71375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71368,"TargetID":71375,"Directional":true}]},{"ID":6467,"SourceStructureID":483,"TargetStructureID":71374,"Label":"483-71374 via Ribbon Synapse from 71368 -> 71376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71368,"TargetID":71376,"Directional":true}]},{"ID":6468,"SourceStructureID":483,"TargetStructureID":81489,"Label":"483-81489 via Ribbon Synapse from 81488 -> 81492","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81488,"TargetID":81492,"Directional":true}]},{"ID":6469,"SourceStructureID":483,"TargetStructureID":81497,"Label":"483-81497 via Ribbon Synapse from 81493 -> 81498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81493,"TargetID":81498,"Directional":true}]},{"ID":6470,"SourceStructureID":483,"TargetStructureID":85748,"Label":"483-85748 via BC Conventional Synapse from 85760 -> 85759, 85768 -> 85765, 96632 -> 96633","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85760,"TargetID":85759,"Directional":true},{"SourceID":85768,"TargetID":85765,"Directional":true},{"SourceID":96632,"TargetID":96633,"Directional":true}]},{"ID":6471,"SourceStructureID":483,"TargetStructureID":86634,"Label":"483-86634 via Ribbon Synapse from 86659 -> 102360, 86705 -> 86704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86659,"TargetID":102360,"Directional":true},{"SourceID":86705,"TargetID":86704,"Directional":true}]},{"ID":6472,"SourceStructureID":483,"TargetStructureID":86654,"Label":"483-86654 via Ribbon Synapse from 20340 -> 102366, 26833 -> 86655","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20340,"TargetID":102366,"Directional":true},{"SourceID":26833,"TargetID":86655,"Directional":true}]},{"ID":6473,"SourceStructureID":483,"TargetStructureID":86702,"Label":"483-86702 via BC Conventional Synapse from 102349 -> 102353","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102349,"TargetID":102353,"Directional":true}]},{"ID":6474,"SourceStructureID":483,"TargetStructureID":87145,"Label":"483-87145 via Ribbon Synapse from 81493 -> 103513","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81493,"TargetID":103513,"Directional":true}]},{"ID":6475,"SourceStructureID":483,"TargetStructureID":96595,"Label":"483-96595 via Ribbon Synapse from 81487 -> 96596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81487,"TargetID":96596,"Directional":true}]},{"ID":6476,"SourceStructureID":483,"TargetStructureID":96597,"Label":"483-96597 via Ribbon Synapse from 81487 -> 96598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81487,"TargetID":96598,"Directional":true}]},{"ID":6477,"SourceStructureID":483,"TargetStructureID":96629,"Label":"483-96629 via Ribbon Synapse from 96628 -> 96630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96628,"TargetID":96630,"Directional":true}]},{"ID":6478,"SourceStructureID":483,"TargetStructureID":96634,"Label":"483-96634 via BC Conventional Synapse from 92339 -> 96635","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92339,"TargetID":96635,"Directional":true}]},{"ID":6479,"SourceStructureID":483,"TargetStructureID":96642,"Label":"483-96642 via Ribbon Synapse from 92350 -> 103545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92350,"TargetID":103545,"Directional":true}]},{"ID":6480,"SourceStructureID":483,"TargetStructureID":96644,"Label":"483-96644 via Ribbon Synapse from 92350 -> 96645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92350,"TargetID":96645,"Directional":true}]},{"ID":6481,"SourceStructureID":483,"TargetStructureID":96649,"Label":"483-96649 via Ribbon Synapse from 92346 -> 96651, 96665 -> 96666","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92346,"TargetID":96651,"Directional":true},{"SourceID":96665,"TargetID":96666,"Directional":true}]},{"ID":6482,"SourceStructureID":483,"TargetStructureID":96667,"Label":"483-96667 via Ribbon Synapse from 96665 -> 96670","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96665,"TargetID":96670,"Directional":true}]},{"ID":6483,"SourceStructureID":483,"TargetStructureID":96668,"Label":"483-96668 via Ribbon Synapse from 96665 -> 96669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96665,"TargetID":96669,"Directional":true}]},{"ID":6484,"SourceStructureID":483,"TargetStructureID":97674,"Label":"483-97674 via Ribbon Synapse from 97673 -> 97675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97673,"TargetID":97675,"Directional":true}]},{"ID":6485,"SourceStructureID":483,"TargetStructureID":101187,"Label":"483-101187 via Ribbon Synapse from 92326 -> 103495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92326,"TargetID":103495,"Directional":true}]},{"ID":6486,"SourceStructureID":483,"TargetStructureID":102042,"Label":"483-102042 via Ribbon Synapse from 6711 -> 102046, 26827 -> 102045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6711,"TargetID":102046,"Directional":true},{"SourceID":26827,"TargetID":102045,"Directional":true}]},{"ID":6487,"SourceStructureID":483,"TargetStructureID":102051,"Label":"483-102051 via Ribbon Synapse from 26828 -> 102052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26828,"TargetID":102052,"Directional":true}]},{"ID":6488,"SourceStructureID":483,"TargetStructureID":102053,"Label":"483-102053 via Ribbon Synapse from 102050 -> 102054","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102050,"TargetID":102054,"Directional":true}]},{"ID":6489,"SourceStructureID":483,"TargetStructureID":102055,"Label":"483-102055 via Ribbon Synapse from 26828 -> 102056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26828,"TargetID":102056,"Directional":true}]},{"ID":6490,"SourceStructureID":483,"TargetStructureID":102059,"Label":"483-102059 via Ribbon Synapse from 6820 -> 102060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6820,"TargetID":102060,"Directional":true}]},{"ID":6491,"SourceStructureID":483,"TargetStructureID":102063,"Label":"483-102063 via BC Conventional Synapse from 102062 -> 102064","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102062,"TargetID":102064,"Directional":true}]},{"ID":6492,"SourceStructureID":483,"TargetStructureID":102067,"Label":"483-102067 via Ribbon Synapse from 26831 -> 102069","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26831,"TargetID":102069,"Directional":true}]},{"ID":6493,"SourceStructureID":483,"TargetStructureID":102070,"Label":"483-102070 via Ribbon Synapse from 6825 -> 102071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6825,"TargetID":102071,"Directional":true}]},{"ID":6494,"SourceStructureID":483,"TargetStructureID":102072,"Label":"483-102072 via Ribbon Synapse from 6826 -> 102073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6826,"TargetID":102073,"Directional":true}]},{"ID":6495,"SourceStructureID":483,"TargetStructureID":102078,"Label":"483-102078 via Ribbon Synapse from 6849 -> 102081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6849,"TargetID":102081,"Directional":true}]},{"ID":6496,"SourceStructureID":483,"TargetStructureID":102079,"Label":"483-102079 via Ribbon Synapse from 6849 -> 102080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6849,"TargetID":102080,"Directional":true}]},{"ID":6497,"SourceStructureID":483,"TargetStructureID":102085,"Label":"483-102085 via BC Conventional Synapse from 102084 -> 102086","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102084,"TargetID":102086,"Directional":true}]},{"ID":6498,"SourceStructureID":483,"TargetStructureID":102087,"Label":"483-102087 via BC Conventional Synapse from 102089 -> 102088","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102089,"TargetID":102088,"Directional":true}]},{"ID":6499,"SourceStructureID":483,"TargetStructureID":102090,"Label":"483-102090 via Ribbon Synapse from 6828 -> 102091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6828,"TargetID":102091,"Directional":true}]},{"ID":6500,"SourceStructureID":483,"TargetStructureID":102096,"Label":"483-102096 via Ribbon Synapse from 102095 -> 134079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102095,"TargetID":134079,"Directional":true}]},{"ID":6501,"SourceStructureID":483,"TargetStructureID":102101,"Label":"483-102101 via Ribbon Synapse from 102103 -> 102102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102103,"TargetID":102102,"Directional":true}]},{"ID":6502,"SourceStructureID":483,"TargetStructureID":102113,"Label":"483-102113 via Ribbon Synapse from 6847 -> 102114","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6847,"TargetID":102114,"Directional":true}]},{"ID":6503,"SourceStructureID":483,"TargetStructureID":102118,"Label":"483-102118 via Ribbon Synapse from 58611 -> 102120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58611,"TargetID":102120,"Directional":true}]},{"ID":6504,"SourceStructureID":483,"TargetStructureID":102122,"Label":"483-102122 via Ribbon Synapse from 58611 -> 102123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58611,"TargetID":102123,"Directional":true}]},{"ID":6505,"SourceStructureID":483,"TargetStructureID":102129,"Label":"483-102129 via Ribbon Synapse from 58613 -> 102134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58613,"TargetID":102134,"Directional":true}]},{"ID":6506,"SourceStructureID":483,"TargetStructureID":102135,"Label":"483-102135 via Ribbon Synapse from 58612 -> 102137","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58612,"TargetID":102137,"Directional":true}]},{"ID":6507,"SourceStructureID":483,"TargetStructureID":102136,"Label":"483-102136 via Ribbon Synapse from 58612 -> 102138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58612,"TargetID":102138,"Directional":true}]},{"ID":6508,"SourceStructureID":483,"TargetStructureID":102147,"Label":"483-102147 via BC Conventional Synapse from 102146 -> 102148","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102146,"TargetID":102148,"Directional":true}]},{"ID":6509,"SourceStructureID":483,"TargetStructureID":102153,"Label":"483-102153 via Ribbon Synapse from 6832 -> 102155","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6832,"TargetID":102155,"Directional":true}]},{"ID":6510,"SourceStructureID":483,"TargetStructureID":102179,"Label":"483-102179 via Ribbon Synapse from 6842 -> 102180","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6842,"TargetID":102180,"Directional":true}]},{"ID":6511,"SourceStructureID":483,"TargetStructureID":102182,"Label":"483-102182 via Ribbon Synapse from 6837 -> 102183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6837,"TargetID":102183,"Directional":true}]},{"ID":6512,"SourceStructureID":483,"TargetStructureID":102184,"Label":"483-102184 via Ribbon Synapse from 6837 -> 102185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6837,"TargetID":102185,"Directional":true}]},{"ID":6513,"SourceStructureID":483,"TargetStructureID":102187,"Label":"483-102187 via Ribbon Synapse from 6836 -> 102188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6836,"TargetID":102188,"Directional":true}]},{"ID":6514,"SourceStructureID":483,"TargetStructureID":102189,"Label":"483-102189 via BC Conventional Synapse from 102166 -> 102190","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102166,"TargetID":102190,"Directional":true}]},{"ID":6515,"SourceStructureID":483,"TargetStructureID":102196,"Label":"483-102196 via Ribbon Synapse from 26796 -> 102199","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26796,"TargetID":102199,"Directional":true}]},{"ID":6516,"SourceStructureID":483,"TargetStructureID":102202,"Label":"483-102202 via Ribbon Synapse from 26796 -> 102203, 102214 -> 102215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26796,"TargetID":102203,"Directional":true},{"SourceID":102214,"TargetID":102215,"Directional":true}]},{"ID":6517,"SourceStructureID":483,"TargetStructureID":102216,"Label":"483-102216 via Ribbon Synapse from 102214 -> 102217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102214,"TargetID":102217,"Directional":true}]},{"ID":6518,"SourceStructureID":483,"TargetStructureID":102218,"Label":"483-102218 via Ribbon Synapse from 26793 -> 102219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26793,"TargetID":102219,"Directional":true}]},{"ID":6519,"SourceStructureID":483,"TargetStructureID":102226,"Label":"483-102226 via Ribbon Synapse from 19999 -> 102227","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19999,"TargetID":102227,"Directional":true}]},{"ID":6520,"SourceStructureID":483,"TargetStructureID":102232,"Label":"483-102232 via BC Conventional Synapse from 102234 -> 102233","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102234,"TargetID":102233,"Directional":true}]},{"ID":6521,"SourceStructureID":483,"TargetStructureID":102235,"Label":"483-102235 via Ribbon Synapse from 102212 -> 102239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102212,"TargetID":102239,"Directional":true}]},{"ID":6522,"SourceStructureID":483,"TargetStructureID":102237,"Label":"483-102237 via Ribbon Synapse from 102212 -> 102240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102212,"TargetID":102240,"Directional":true}]},{"ID":6523,"SourceStructureID":483,"TargetStructureID":102241,"Label":"483-102241 via Ribbon Synapse from 102212 -> 102242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102212,"TargetID":102242,"Directional":true}]},{"ID":6524,"SourceStructureID":483,"TargetStructureID":102244,"Label":"483-102244 via BC Conventional Synapse from 102243 -> 102245","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102243,"TargetID":102245,"Directional":true}]},{"ID":6525,"SourceStructureID":483,"TargetStructureID":102248,"Label":"483-102248 via Ribbon Synapse from 102247 -> 102249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102247,"TargetID":102249,"Directional":true}]},{"ID":6526,"SourceStructureID":483,"TargetStructureID":102250,"Label":"483-102250 via BC Conventional Synapse from 102253 -> 102252","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102253,"TargetID":102252,"Directional":true}]},{"ID":6527,"SourceStructureID":483,"TargetStructureID":102257,"Label":"483-102257 via BC Conventional Synapse from 102256 -> 102258","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102256,"TargetID":102258,"Directional":true}]},{"ID":6528,"SourceStructureID":483,"TargetStructureID":102259,"Label":"483-102259 via Ribbon Synapse from 26795 -> 102260","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26795,"TargetID":102260,"Directional":true}]},{"ID":6529,"SourceStructureID":483,"TargetStructureID":102262,"Label":"483-102262 via Ribbon Synapse from 26841 -> 102263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26841,"TargetID":102263,"Directional":true}]},{"ID":6530,"SourceStructureID":483,"TargetStructureID":102264,"Label":"483-102264 via Ribbon Synapse from 102266 -> 102265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102266,"TargetID":102265,"Directional":true}]},{"ID":6531,"SourceStructureID":483,"TargetStructureID":102267,"Label":"483-102267 via Ribbon Synapse from 102266 -> 102268","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102266,"TargetID":102268,"Directional":true}]},{"ID":6532,"SourceStructureID":483,"TargetStructureID":102280,"Label":"483-102280 via BC Conventional Synapse from 102279 -> 102281","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102279,"TargetID":102281,"Directional":true}]},{"ID":6533,"SourceStructureID":483,"TargetStructureID":102282,"Label":"483-102282 via Ribbon Synapse from 26801 -> 102283","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26801,"TargetID":102283,"Directional":true}]},{"ID":6534,"SourceStructureID":483,"TargetStructureID":102288,"Label":"483-102288 via Ribbon Synapse from 26810 -> 102289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26810,"TargetID":102289,"Directional":true}]},{"ID":6535,"SourceStructureID":483,"TargetStructureID":102290,"Label":"483-102290 via Ribbon Synapse from 26810 -> 102291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26810,"TargetID":102291,"Directional":true}]},{"ID":6536,"SourceStructureID":483,"TargetStructureID":102293,"Label":"483-102293 via Ribbon Synapse from 26802 -> 102294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26802,"TargetID":102294,"Directional":true}]},{"ID":6537,"SourceStructureID":483,"TargetStructureID":102298,"Label":"483-102298 via BC Conventional Synapse from 102300 -> 102299","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102300,"TargetID":102299,"Directional":true}]},{"ID":6538,"SourceStructureID":483,"TargetStructureID":102301,"Label":"483-102301 via BC Conventional Synapse from 102305 -> 102304","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102305,"TargetID":102304,"Directional":true}]},{"ID":6539,"SourceStructureID":483,"TargetStructureID":102302,"Label":"483-102302 via BC Conventional Synapse from 102306 -> 102303","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102306,"TargetID":102303,"Directional":true}]},{"ID":6540,"SourceStructureID":483,"TargetStructureID":102312,"Label":"483-102312 via Ribbon Synapse from 38908 -> 102313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38908,"TargetID":102313,"Directional":true}]},{"ID":6541,"SourceStructureID":483,"TargetStructureID":102318,"Label":"483-102318 via BC Conventional Synapse from 102320 -> 102319","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102320,"TargetID":102319,"Directional":true}]},{"ID":6542,"SourceStructureID":483,"TargetStructureID":102323,"Label":"483-102323 via Ribbon Synapse from 26815 -> 102324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26815,"TargetID":102324,"Directional":true}]},{"ID":6543,"SourceStructureID":483,"TargetStructureID":102327,"Label":"483-102327 via BC Conventional Synapse from 102329 -> 102328","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102329,"TargetID":102328,"Directional":true}]},{"ID":6544,"SourceStructureID":483,"TargetStructureID":102330,"Label":"483-102330 via BC Conventional Synapse from 102332 -> 102331","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102332,"TargetID":102331,"Directional":true}]},{"ID":6545,"SourceStructureID":483,"TargetStructureID":102343,"Label":"483-102343 via Ribbon Synapse from 26833 -> 102344","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26833,"TargetID":102344,"Directional":true}]},{"ID":6546,"SourceStructureID":483,"TargetStructureID":102358,"Label":"483-102358 via BC Conventional Synapse from 102357 -> 102359","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102357,"TargetID":102359,"Directional":true}]},{"ID":6547,"SourceStructureID":483,"TargetStructureID":102362,"Label":"483-102362 via Ribbon Synapse from 20341 -> 102370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20341,"TargetID":102370,"Directional":true}]},{"ID":6548,"SourceStructureID":483,"TargetStructureID":102364,"Label":"483-102364 via Ribbon Synapse from 20340 -> 102365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20340,"TargetID":102365,"Directional":true}]},{"ID":6549,"SourceStructureID":483,"TargetStructureID":102368,"Label":"483-102368 via Ribbon Synapse from 20341 -> 102369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20341,"TargetID":102369,"Directional":true}]},{"ID":6550,"SourceStructureID":483,"TargetStructureID":102371,"Label":"483-102371 via Ribbon Synapse from 26837 -> 102372","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26837,"TargetID":102372,"Directional":true}]},{"ID":6551,"SourceStructureID":483,"TargetStructureID":102387,"Label":"483-102387 via Ribbon Synapse from 26820 -> 102388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26820,"TargetID":102388,"Directional":true}]},{"ID":6552,"SourceStructureID":483,"TargetStructureID":102391,"Label":"483-102391 via Ribbon Synapse from 26820 -> 102392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26820,"TargetID":102392,"Directional":true}]},{"ID":6553,"SourceStructureID":483,"TargetStructureID":102403,"Label":"483-102403 via Ribbon Synapse from 20345 -> 102404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20345,"TargetID":102404,"Directional":true}]},{"ID":6554,"SourceStructureID":483,"TargetStructureID":102408,"Label":"483-102408 via BC Conventional Synapse from 20350 -> 102409","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":20350,"TargetID":102409,"Directional":true}]},{"ID":6555,"SourceStructureID":483,"TargetStructureID":102410,"Label":"483-102410 via BC Conventional Synapse from 102407 -> 102411","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102407,"TargetID":102411,"Directional":true}]},{"ID":6556,"SourceStructureID":483,"TargetStructureID":102423,"Label":"483-102423 via BC Conventional Synapse from 102548 -> 102424","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102548,"TargetID":102424,"Directional":true}]},{"ID":6557,"SourceStructureID":483,"TargetStructureID":102425,"Label":"483-102425 via Ribbon Synapse from 26821 -> 102550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26821,"TargetID":102550,"Directional":true}]},{"ID":6558,"SourceStructureID":483,"TargetStructureID":102435,"Label":"483-102435 via Ribbon Synapse from 20392 -> 102436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20392,"TargetID":102436,"Directional":true}]},{"ID":6559,"SourceStructureID":483,"TargetStructureID":102443,"Label":"483-102443 via BC Conventional Synapse from 102434 -> 102445","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102434,"TargetID":102445,"Directional":true}]},{"ID":6560,"SourceStructureID":483,"TargetStructureID":102449,"Label":"483-102449 via Ribbon Synapse from 20395 -> 102450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20395,"TargetID":102450,"Directional":true}]},{"ID":6561,"SourceStructureID":483,"TargetStructureID":102451,"Label":"483-102451 via Ribbon Synapse from 20394 -> 102455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20394,"TargetID":102455,"Directional":true}]},{"ID":6562,"SourceStructureID":483,"TargetStructureID":102453,"Label":"483-102453 via Ribbon Synapse from 20393 -> 102454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20393,"TargetID":102454,"Directional":true}]},{"ID":6563,"SourceStructureID":483,"TargetStructureID":102470,"Label":"483-102470 via Ribbon Synapse from 26819 -> 102472, 102469 -> 102472","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26819,"TargetID":102472,"Directional":true},{"SourceID":102469,"TargetID":102472,"Directional":true}]},{"ID":6564,"SourceStructureID":483,"TargetStructureID":102473,"Label":"483-102473 via Ribbon Synapse from 102469 -> 102474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102469,"TargetID":102474,"Directional":true}]},{"ID":6565,"SourceStructureID":483,"TargetStructureID":102479,"Label":"483-102479 via Ribbon Synapse from 26817 -> 102481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26817,"TargetID":102481,"Directional":true}]},{"ID":6566,"SourceStructureID":483,"TargetStructureID":102484,"Label":"483-102484 via Ribbon Synapse from 26817 -> 102485","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26817,"TargetID":102485,"Directional":true}]},{"ID":6567,"SourceStructureID":483,"TargetStructureID":102487,"Label":"483-102487 via Ribbon Synapse from 26783 -> 102488","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26783,"TargetID":102488,"Directional":true}]},{"ID":6568,"SourceStructureID":483,"TargetStructureID":102491,"Label":"483-102491 via Ribbon Synapse from 26783 -> 102492","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26783,"TargetID":102492,"Directional":true}]},{"ID":6569,"SourceStructureID":483,"TargetStructureID":102493,"Label":"483-102493 via Ribbon Synapse from 26783 -> 102495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26783,"TargetID":102495,"Directional":true}]},{"ID":6570,"SourceStructureID":483,"TargetStructureID":102496,"Label":"483-102496 via Ribbon Synapse from 26782 -> 102497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26782,"TargetID":102497,"Directional":true}]},{"ID":6571,"SourceStructureID":483,"TargetStructureID":102499,"Label":"483-102499 via Ribbon Synapse from 26782 -> 102500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26782,"TargetID":102500,"Directional":true}]},{"ID":6572,"SourceStructureID":483,"TargetStructureID":102502,"Label":"483-102502 via BC Conventional Synapse from 102501 -> 102503","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102501,"TargetID":102503,"Directional":true}]},{"ID":6573,"SourceStructureID":483,"TargetStructureID":102511,"Label":"483-102511 via Ribbon Synapse from 20361 -> 102512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20361,"TargetID":102512,"Directional":true}]},{"ID":6574,"SourceStructureID":483,"TargetStructureID":102513,"Label":"483-102513 via Ribbon Synapse from 20361 -> 102514","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20361,"TargetID":102514,"Directional":true}]},{"ID":6575,"SourceStructureID":483,"TargetStructureID":102524,"Label":"483-102524 via Ribbon Synapse from 75947 -> 102525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75947,"TargetID":102525,"Directional":true}]},{"ID":6576,"SourceStructureID":483,"TargetStructureID":102527,"Label":"483-102527 via BC Conventional Synapse from 102526 -> 102528","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102526,"TargetID":102528,"Directional":true}]},{"ID":6577,"SourceStructureID":483,"TargetStructureID":102527,"Label":"483-102527 via Ribbon Synapse from 94710 -> 102539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94710,"TargetID":102539,"Directional":true}]},{"ID":6578,"SourceStructureID":483,"TargetStructureID":102529,"Label":"483-102529 via Ribbon Synapse from 20358 -> 102530","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20358,"TargetID":102530,"Directional":true}]},{"ID":6579,"SourceStructureID":483,"TargetStructureID":102531,"Label":"483-102531 via Ribbon Synapse from 20358 -> 102532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20358,"TargetID":102532,"Directional":true}]},{"ID":6580,"SourceStructureID":483,"TargetStructureID":102540,"Label":"483-102540 via Ribbon Synapse from 94710 -> 102541","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94710,"TargetID":102541,"Directional":true}]},{"ID":6581,"SourceStructureID":483,"TargetStructureID":102545,"Label":"483-102545 via Ribbon Synapse from 26819 -> 102546","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26819,"TargetID":102546,"Directional":true}]},{"ID":6582,"SourceStructureID":483,"TargetStructureID":102555,"Label":"483-102555 via Ribbon Synapse from 6708 -> 102560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6708,"TargetID":102560,"Directional":true}]},{"ID":6583,"SourceStructureID":483,"TargetStructureID":102565,"Label":"483-102565 via Ribbon Synapse from 6714 -> 102567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6714,"TargetID":102567,"Directional":true}]},{"ID":6584,"SourceStructureID":483,"TargetStructureID":102568,"Label":"483-102568 via Ribbon Synapse from 6714 -> 102569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6714,"TargetID":102569,"Directional":true}]},{"ID":6585,"SourceStructureID":483,"TargetStructureID":102571,"Label":"483-102571 via BC Conventional Synapse from 102570 -> 102572","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102570,"TargetID":102572,"Directional":true}]},{"ID":6586,"SourceStructureID":483,"TargetStructureID":102575,"Label":"483-102575 via BC Conventional Synapse from 102574 -> 102576","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102574,"TargetID":102576,"Directional":true}]},{"ID":6587,"SourceStructureID":483,"TargetStructureID":102582,"Label":"483-102582 via Ribbon Synapse from 134008 -> 102583","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134008,"TargetID":102583,"Directional":true}]},{"ID":6588,"SourceStructureID":483,"TargetStructureID":102590,"Label":"483-102590 via Ribbon Synapse from 6721 -> 102591","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6721,"TargetID":102591,"Directional":true}]},{"ID":6589,"SourceStructureID":483,"TargetStructureID":102593,"Label":"483-102593 via BC Conventional Synapse from 102592 -> 102594","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102592,"TargetID":102594,"Directional":true}]},{"ID":6590,"SourceStructureID":483,"TargetStructureID":102596,"Label":"483-102596 via BC Conventional Synapse from 102595 -> 102597","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102595,"TargetID":102597,"Directional":true}]},{"ID":6591,"SourceStructureID":483,"TargetStructureID":102603,"Label":"483-102603 via Ribbon Synapse from 6720 -> 102606","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6720,"TargetID":102606,"Directional":true}]},{"ID":6592,"SourceStructureID":483,"TargetStructureID":102607,"Label":"483-102607 via Ribbon Synapse from 6720 -> 102611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6720,"TargetID":102611,"Directional":true}]},{"ID":6593,"SourceStructureID":483,"TargetStructureID":102626,"Label":"483-102626 via Ribbon Synapse from 102625 -> 102627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102625,"TargetID":102627,"Directional":true}]},{"ID":6594,"SourceStructureID":483,"TargetStructureID":102631,"Label":"483-102631 via Ribbon Synapse from 102622 -> 102632","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102622,"TargetID":102632,"Directional":true}]},{"ID":6595,"SourceStructureID":483,"TargetStructureID":102651,"Label":"483-102651 via Ribbon Synapse from 94568 -> 102652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94568,"TargetID":102652,"Directional":true}]},{"ID":6596,"SourceStructureID":483,"TargetStructureID":102691,"Label":"483-102691 via Ribbon Synapse from 26784 -> 102692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26784,"TargetID":102692,"Directional":true}]},{"ID":6597,"SourceStructureID":483,"TargetStructureID":102720,"Label":"483-102720 via Ribbon Synapse from 102803 -> 102809","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102803,"TargetID":102809,"Directional":true}]},{"ID":6598,"SourceStructureID":483,"TargetStructureID":102726,"Label":"483-102726 via Ribbon Synapse from 26786 -> 102732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26786,"TargetID":102732,"Directional":true}]},{"ID":6599,"SourceStructureID":483,"TargetStructureID":102734,"Label":"483-102734 via BC Conventional Synapse from 102733 -> 102735","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102733,"TargetID":102735,"Directional":true}]},{"ID":6600,"SourceStructureID":483,"TargetStructureID":102741,"Label":"483-102741 via Ribbon Synapse from 6763 -> 102743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6763,"TargetID":102743,"Directional":true}]},{"ID":6601,"SourceStructureID":483,"TargetStructureID":102748,"Label":"483-102748 via Ribbon Synapse from 6761 -> 102765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6761,"TargetID":102765,"Directional":true}]},{"ID":6602,"SourceStructureID":483,"TargetStructureID":102773,"Label":"483-102773 via BC Conventional Synapse from 102771 -> 102774","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102771,"TargetID":102774,"Directional":true}]},{"ID":6603,"SourceStructureID":483,"TargetStructureID":102807,"Label":"483-102807 via Ribbon Synapse from 102803 -> 102808, 102812 -> 102817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102803,"TargetID":102808,"Directional":true},{"SourceID":102812,"TargetID":102817,"Directional":true}]},{"ID":6604,"SourceStructureID":483,"TargetStructureID":102810,"Label":"483-102810 via Ribbon Synapse from 102803 -> 102811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102803,"TargetID":102811,"Directional":true}]},{"ID":6605,"SourceStructureID":483,"TargetStructureID":102813,"Label":"483-102813 via Ribbon Synapse from 102812 -> 102814","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102812,"TargetID":102814,"Directional":true}]},{"ID":6606,"SourceStructureID":483,"TargetStructureID":102825,"Label":"483-102825 via Ribbon Synapse from 102824 -> 102826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102824,"TargetID":102826,"Directional":true}]},{"ID":6607,"SourceStructureID":483,"TargetStructureID":102828,"Label":"483-102828 via BC Conventional Synapse from 102827 -> 102829","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102827,"TargetID":102829,"Directional":true}]},{"ID":6608,"SourceStructureID":483,"TargetStructureID":102838,"Label":"483-102838 via Ribbon Synapse from 31020 -> 102841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31020,"TargetID":102841,"Directional":true}]},{"ID":6609,"SourceStructureID":483,"TargetStructureID":102845,"Label":"483-102845 via Ribbon Synapse from 31020 -> 102847","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31020,"TargetID":102847,"Directional":true}]},{"ID":6610,"SourceStructureID":483,"TargetStructureID":102854,"Label":"483-102854 via BC Conventional Synapse from 102853 -> 102855","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102853,"TargetID":102855,"Directional":true}]},{"ID":6611,"SourceStructureID":483,"TargetStructureID":102856,"Label":"483-102856 via Ribbon Synapse from 102843 -> 102857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102843,"TargetID":102857,"Directional":true}]},{"ID":6612,"SourceStructureID":483,"TargetStructureID":102863,"Label":"483-102863 via Ribbon Synapse from 92041 -> 102866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92041,"TargetID":102866,"Directional":true}]},{"ID":6613,"SourceStructureID":483,"TargetStructureID":102867,"Label":"483-102867 via Ribbon Synapse from 92041 -> 102868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92041,"TargetID":102868,"Directional":true}]},{"ID":6614,"SourceStructureID":483,"TargetStructureID":102869,"Label":"483-102869 via Ribbon Synapse from 92041 -> 102870","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92041,"TargetID":102870,"Directional":true}]},{"ID":6615,"SourceStructureID":483,"TargetStructureID":102879,"Label":"483-102879 via Ribbon Synapse from 31021 -> 102887, 31022 -> 102881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31021,"TargetID":102887,"Directional":true},{"SourceID":31022,"TargetID":102881,"Directional":true}]},{"ID":6616,"SourceStructureID":483,"TargetStructureID":102884,"Label":"483-102884 via Ribbon Synapse from 31021 -> 102886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31021,"TargetID":102886,"Directional":true}]},{"ID":6617,"SourceStructureID":483,"TargetStructureID":102888,"Label":"483-102888 via Ribbon Synapse from 31021 -> 102889","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31021,"TargetID":102889,"Directional":true}]},{"ID":6618,"SourceStructureID":483,"TargetStructureID":102892,"Label":"483-102892 via Ribbon Synapse from 31022 -> 102893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31022,"TargetID":102893,"Directional":true}]},{"ID":6619,"SourceStructureID":483,"TargetStructureID":103056,"Label":"483-103056 via Ribbon Synapse from 31023 -> 103057","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31023,"TargetID":103057,"Directional":true}]},{"ID":6620,"SourceStructureID":483,"TargetStructureID":103058,"Label":"483-103058 via Ribbon Synapse from 31023 -> 103059, 103081 -> 103082","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31023,"TargetID":103059,"Directional":true},{"SourceID":103081,"TargetID":103082,"Directional":true}]},{"ID":6621,"SourceStructureID":483,"TargetStructureID":103060,"Label":"483-103060 via Ribbon Synapse from 31023 -> 103061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31023,"TargetID":103061,"Directional":true}]},{"ID":6622,"SourceStructureID":483,"TargetStructureID":103067,"Label":"483-103067 via BC Conventional Synapse from 103066 -> 103068","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103066,"TargetID":103068,"Directional":true}]},{"ID":6623,"SourceStructureID":483,"TargetStructureID":103072,"Label":"483-103072 via BC Conventional Synapse from 103074 -> 103073","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103074,"TargetID":103073,"Directional":true}]},{"ID":6624,"SourceStructureID":483,"TargetStructureID":103079,"Label":"483-103079 via Ribbon Synapse from 103078 -> 103080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103078,"TargetID":103080,"Directional":true}]},{"ID":6625,"SourceStructureID":483,"TargetStructureID":103084,"Label":"483-103084 via BC Conventional Synapse from 103092 -> 103093","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103092,"TargetID":103093,"Directional":true}]},{"ID":6626,"SourceStructureID":483,"TargetStructureID":103086,"Label":"483-103086 via Ribbon Synapse from 6725 -> 103087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6725,"TargetID":103087,"Directional":true}]},{"ID":6627,"SourceStructureID":483,"TargetStructureID":103097,"Label":"483-103097 via Ribbon Synapse from 6728 -> 103099","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6728,"TargetID":103099,"Directional":true}]},{"ID":6628,"SourceStructureID":483,"TargetStructureID":103102,"Label":"483-103102 via Ribbon Synapse from 6737 -> 103104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6737,"TargetID":103104,"Directional":true}]},{"ID":6629,"SourceStructureID":483,"TargetStructureID":103105,"Label":"483-103105 via Ribbon Synapse from 6737 -> 103107","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6737,"TargetID":103107,"Directional":true}]},{"ID":6630,"SourceStructureID":483,"TargetStructureID":103108,"Label":"483-103108 via Ribbon Synapse from 6729 -> 103109","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6729,"TargetID":103109,"Directional":true}]},{"ID":6631,"SourceStructureID":483,"TargetStructureID":103110,"Label":"483-103110 via Ribbon Synapse from 6729 -> 103111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6729,"TargetID":103111,"Directional":true}]},{"ID":6632,"SourceStructureID":483,"TargetStructureID":103116,"Label":"483-103116 via BC Conventional Synapse from 103115 -> 103117","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103115,"TargetID":103117,"Directional":true}]},{"ID":6633,"SourceStructureID":483,"TargetStructureID":103122,"Label":"483-103122 via Ribbon Synapse from 6742 -> 103123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6742,"TargetID":103123,"Directional":true}]},{"ID":6634,"SourceStructureID":483,"TargetStructureID":103126,"Label":"483-103126 via BC Conventional Synapse from 103134 -> 103127","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103134,"TargetID":103127,"Directional":true}]},{"ID":6635,"SourceStructureID":483,"TargetStructureID":103136,"Label":"483-103136 via BC Conventional Synapse from 103135 -> 103137","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103135,"TargetID":103137,"Directional":true}]},{"ID":6636,"SourceStructureID":483,"TargetStructureID":103136,"Label":"483-103136 via Ribbon Synapse from 28763 -> 103138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28763,"TargetID":103138,"Directional":true}]},{"ID":6637,"SourceStructureID":483,"TargetStructureID":103152,"Label":"483-103152 via BC Conventional Synapse from 103151 -> 103153","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103151,"TargetID":103153,"Directional":true}]},{"ID":6638,"SourceStructureID":483,"TargetStructureID":103156,"Label":"483-103156 via Ribbon Synapse from 103161 -> 103157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103161,"TargetID":103157,"Directional":true}]},{"ID":6639,"SourceStructureID":483,"TargetStructureID":103158,"Label":"483-103158 via Ribbon Synapse from 103161 -> 103159","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103161,"TargetID":103159,"Directional":true}]},{"ID":6640,"SourceStructureID":483,"TargetStructureID":103165,"Label":"483-103165 via Ribbon Synapse from 103161 -> 103166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103161,"TargetID":103166,"Directional":true}]},{"ID":6641,"SourceStructureID":483,"TargetStructureID":103173,"Label":"483-103173 via BC Conventional Synapse from 103172 -> 103175","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103172,"TargetID":103175,"Directional":true}]},{"ID":6642,"SourceStructureID":483,"TargetStructureID":103179,"Label":"483-103179 via BC Conventional Synapse from 103177 -> 103181","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103177,"TargetID":103181,"Directional":true}]},{"ID":6643,"SourceStructureID":483,"TargetStructureID":103192,"Label":"483-103192 via Ribbon Synapse from 28764 -> 103193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28764,"TargetID":103193,"Directional":true}]},{"ID":6644,"SourceStructureID":483,"TargetStructureID":103195,"Label":"483-103195 via Ribbon Synapse from 103194 -> 103196","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103194,"TargetID":103196,"Directional":true}]},{"ID":6645,"SourceStructureID":483,"TargetStructureID":103203,"Label":"483-103203 via Ribbon Synapse from 28765 -> 103214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28765,"TargetID":103214,"Directional":true}]},{"ID":6646,"SourceStructureID":483,"TargetStructureID":103228,"Label":"483-103228 via Ribbon Synapse from 28767 -> 103229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28767,"TargetID":103229,"Directional":true}]},{"ID":6647,"SourceStructureID":483,"TargetStructureID":103240,"Label":"483-103240 via Ribbon Synapse from 28772 -> 103253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28772,"TargetID":103253,"Directional":true}]},{"ID":6648,"SourceStructureID":483,"TargetStructureID":103242,"Label":"483-103242 via Ribbon Synapse from 28770 -> 103243","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28770,"TargetID":103243,"Directional":true}]},{"ID":6649,"SourceStructureID":483,"TargetStructureID":103272,"Label":"483-103272 via Ribbon Synapse from 94594 -> 103273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94594,"TargetID":103273,"Directional":true}]},{"ID":6650,"SourceStructureID":483,"TargetStructureID":103275,"Label":"483-103275 via Ribbon Synapse from 94594 -> 103276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94594,"TargetID":103276,"Directional":true}]},{"ID":6651,"SourceStructureID":483,"TargetStructureID":103287,"Label":"483-103287 via Ribbon Synapse from 103290 -> 103288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103290,"TargetID":103288,"Directional":true}]},{"ID":6652,"SourceStructureID":483,"TargetStructureID":103291,"Label":"483-103291 via Ribbon Synapse from 103290 -> 103292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103290,"TargetID":103292,"Directional":true}]},{"ID":6653,"SourceStructureID":483,"TargetStructureID":103296,"Label":"483-103296 via Ribbon Synapse from 94596 -> 103297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94596,"TargetID":103297,"Directional":true}]},{"ID":6654,"SourceStructureID":483,"TargetStructureID":103302,"Label":"483-103302 via BC Conventional Synapse from 103301 -> 103303","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103301,"TargetID":103303,"Directional":true}]},{"ID":6655,"SourceStructureID":483,"TargetStructureID":103305,"Label":"483-103305 via Ribbon Synapse from 94595 -> 103306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94595,"TargetID":103306,"Directional":true}]},{"ID":6656,"SourceStructureID":483,"TargetStructureID":103307,"Label":"483-103307 via Ribbon Synapse from 94595 -> 103308","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94595,"TargetID":103308,"Directional":true}]},{"ID":6657,"SourceStructureID":483,"TargetStructureID":103310,"Label":"483-103310 via BC Conventional Synapse from 103309 -> 103311","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103309,"TargetID":103311,"Directional":true}]},{"ID":6658,"SourceStructureID":483,"TargetStructureID":103326,"Label":"483-103326 via Ribbon Synapse from 6091 -> 103327","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6091,"TargetID":103327,"Directional":true}]},{"ID":6659,"SourceStructureID":483,"TargetStructureID":103331,"Label":"483-103331 via Ribbon Synapse from 6091 -> 103333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6091,"TargetID":103333,"Directional":true}]},{"ID":6660,"SourceStructureID":483,"TargetStructureID":103334,"Label":"483-103334 via Ribbon Synapse from 6094 -> 103337","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6094,"TargetID":103337,"Directional":true}]},{"ID":6661,"SourceStructureID":483,"TargetStructureID":103335,"Label":"483-103335 via Ribbon Synapse from 6094 -> 103336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6094,"TargetID":103336,"Directional":true}]},{"ID":6662,"SourceStructureID":483,"TargetStructureID":103345,"Label":"483-103345 via Ribbon Synapse from 103344 -> 103346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103344,"TargetID":103346,"Directional":true}]},{"ID":6663,"SourceStructureID":483,"TargetStructureID":103362,"Label":"483-103362 via Ribbon Synapse from 103364 -> 103365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103364,"TargetID":103365,"Directional":true}]},{"ID":6664,"SourceStructureID":483,"TargetStructureID":103369,"Label":"483-103369 via Ribbon Synapse from 6083 -> 103370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6083,"TargetID":103370,"Directional":true}]},{"ID":6665,"SourceStructureID":483,"TargetStructureID":103372,"Label":"483-103372 via BC Conventional Synapse from 103371 -> 103373","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103371,"TargetID":103373,"Directional":true}]},{"ID":6666,"SourceStructureID":483,"TargetStructureID":103381,"Label":"483-103381 via Ribbon Synapse from 6776 -> 103383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6776,"TargetID":103383,"Directional":true}]},{"ID":6667,"SourceStructureID":483,"TargetStructureID":103385,"Label":"483-103385 via BC Conventional Synapse from 103384 -> 103386","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103384,"TargetID":103386,"Directional":true}]},{"ID":6668,"SourceStructureID":483,"TargetStructureID":103387,"Label":"483-103387 via Ribbon Synapse from 6080 -> 103388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6080,"TargetID":103388,"Directional":true}]},{"ID":6669,"SourceStructureID":483,"TargetStructureID":103389,"Label":"483-103389 via Ribbon Synapse from 6080 -> 103390","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6080,"TargetID":103390,"Directional":true}]},{"ID":6670,"SourceStructureID":483,"TargetStructureID":103392,"Label":"483-103392 via Ribbon Synapse from 6776 -> 103393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6776,"TargetID":103393,"Directional":true}]},{"ID":6671,"SourceStructureID":483,"TargetStructureID":103397,"Label":"483-103397 via BC Conventional Synapse from 103396 -> 103398","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103396,"TargetID":103398,"Directional":true}]},{"ID":6672,"SourceStructureID":483,"TargetStructureID":103408,"Label":"483-103408 via BC Conventional Synapse from 103407 -> 103409","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103407,"TargetID":103409,"Directional":true}]},{"ID":6673,"SourceStructureID":483,"TargetStructureID":103411,"Label":"483-103411 via Ribbon Synapse from 6771 -> 103412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6771,"TargetID":103412,"Directional":true}]},{"ID":6674,"SourceStructureID":483,"TargetStructureID":103422,"Label":"483-103422 via Ribbon Synapse from 6773 -> 103424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6773,"TargetID":103424,"Directional":true}]},{"ID":6675,"SourceStructureID":483,"TargetStructureID":103425,"Label":"483-103425 via Ribbon Synapse from 6773 -> 103426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6773,"TargetID":103426,"Directional":true}]},{"ID":6676,"SourceStructureID":483,"TargetStructureID":103427,"Label":"483-103427 via Ribbon Synapse from 6773 -> 103428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6773,"TargetID":103428,"Directional":true}]},{"ID":6677,"SourceStructureID":483,"TargetStructureID":103433,"Label":"483-103433 via BC Conventional Synapse from 103432 -> 103434","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103432,"TargetID":103434,"Directional":true}]},{"ID":6678,"SourceStructureID":483,"TargetStructureID":103435,"Label":"483-103435 via Ribbon Synapse from 6088 -> 103436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6088,"TargetID":103436,"Directional":true}]},{"ID":6679,"SourceStructureID":483,"TargetStructureID":103437,"Label":"483-103437 via Ribbon Synapse from 6088 -> 103438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6088,"TargetID":103438,"Directional":true}]},{"ID":6680,"SourceStructureID":483,"TargetStructureID":103440,"Label":"483-103440 via Ribbon Synapse from 49798 -> 103448, 49798 -> 103449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49798,"TargetID":103448,"Directional":true},{"SourceID":49798,"TargetID":103449,"Directional":true}]},{"ID":6681,"SourceStructureID":483,"TargetStructureID":103444,"Label":"483-103444 via Ribbon Synapse from 49802 -> 103445","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49802,"TargetID":103445,"Directional":true}]},{"ID":6682,"SourceStructureID":483,"TargetStructureID":103446,"Label":"483-103446 via Ribbon Synapse from 49798 -> 103447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49798,"TargetID":103447,"Directional":true}]},{"ID":6683,"SourceStructureID":483,"TargetStructureID":103450,"Label":"483-103450 via Ribbon Synapse from 49798 -> 103451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49798,"TargetID":103451,"Directional":true}]},{"ID":6684,"SourceStructureID":483,"TargetStructureID":103452,"Label":"483-103452 via BC Conventional Synapse from 148242 -> 148241","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":148242,"TargetID":148241,"Directional":true}]},{"ID":6685,"SourceStructureID":483,"TargetStructureID":103460,"Label":"483-103460 via Ribbon Synapse from 97735 -> 103461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97735,"TargetID":103461,"Directional":true}]},{"ID":6686,"SourceStructureID":483,"TargetStructureID":103466,"Label":"483-103466 via BC Conventional Synapse from 97699 -> 103467","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97699,"TargetID":103467,"Directional":true}]},{"ID":6687,"SourceStructureID":483,"TargetStructureID":103468,"Label":"483-103468 via Ribbon Synapse from 97698 -> 103469","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97698,"TargetID":103469,"Directional":true}]},{"ID":6688,"SourceStructureID":483,"TargetStructureID":103470,"Label":"483-103470 via BC Conventional Synapse from 97702 -> 103471","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97702,"TargetID":103471,"Directional":true}]},{"ID":6689,"SourceStructureID":483,"TargetStructureID":103473,"Label":"483-103473 via Ribbon Synapse from 6778 -> 103474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6778,"TargetID":103474,"Directional":true}]},{"ID":6690,"SourceStructureID":483,"TargetStructureID":103481,"Label":"483-103481 via Ribbon Synapse from 92311 -> 103482","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92311,"TargetID":103482,"Directional":true}]},{"ID":6691,"SourceStructureID":483,"TargetStructureID":103483,"Label":"483-103483 via Ribbon Synapse from 92315 -> 103484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92315,"TargetID":103484,"Directional":true}]},{"ID":6692,"SourceStructureID":483,"TargetStructureID":103496,"Label":"483-103496 via Ribbon Synapse from 92326 -> 103497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92326,"TargetID":103497,"Directional":true}]},{"ID":6693,"SourceStructureID":483,"TargetStructureID":103501,"Label":"483-103501 via Ribbon Synapse from 92327 -> 103502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92327,"TargetID":103502,"Directional":true}]},{"ID":6694,"SourceStructureID":483,"TargetStructureID":103503,"Label":"483-103503 via Ribbon Synapse from 92327 -> 103504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92327,"TargetID":103504,"Directional":true}]},{"ID":6695,"SourceStructureID":483,"TargetStructureID":103506,"Label":"483-103506 via Ribbon Synapse from 103505 -> 103507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103505,"TargetID":103507,"Directional":true}]},{"ID":6696,"SourceStructureID":483,"TargetStructureID":103508,"Label":"483-103508 via Ribbon Synapse from 81499 -> 116715","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81499,"TargetID":116715,"Directional":true}]},{"ID":6697,"SourceStructureID":483,"TargetStructureID":103530,"Label":"483-103530 via Ribbon Synapse from 92337 -> 103531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92337,"TargetID":103531,"Directional":true}]},{"ID":6698,"SourceStructureID":483,"TargetStructureID":103543,"Label":"483-103543 via Ribbon Synapse from 92345 -> 103544","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92345,"TargetID":103544,"Directional":true}]},{"ID":6699,"SourceStructureID":483,"TargetStructureID":103550,"Label":"483-103550 via Ribbon Synapse from 6786 -> 103551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6786,"TargetID":103551,"Directional":true}]},{"ID":6700,"SourceStructureID":483,"TargetStructureID":103725,"Label":"483-103725 via BC Conventional Synapse from 103724 -> 103726","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103724,"TargetID":103726,"Directional":true}]},{"ID":6701,"SourceStructureID":483,"TargetStructureID":103728,"Label":"483-103728 via Ribbon Synapse from 65234 -> 103731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65234,"TargetID":103731,"Directional":true}]},{"ID":6702,"SourceStructureID":483,"TargetStructureID":103736,"Label":"483-103736 via Ribbon Synapse from 94625 -> 103737","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94625,"TargetID":103737,"Directional":true}]},{"ID":6703,"SourceStructureID":483,"TargetStructureID":103743,"Label":"483-103743 via Ribbon Synapse from 94629 -> 103744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94629,"TargetID":103744,"Directional":true}]},{"ID":6704,"SourceStructureID":485,"TargetStructureID":318,"Label":"485-318 via BC Conventional Synapse from 100891 -> 100892","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100891,"TargetID":100892,"Directional":true}]},{"ID":6705,"SourceStructureID":485,"TargetStructureID":4890,"Label":"485-4890 via Ribbon Synapse from 15934 -> 7924, 19984 -> 19985, 99875 -> 99877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15934,"TargetID":7924,"Directional":true},{"SourceID":19984,"TargetID":19985,"Directional":true},{"SourceID":99875,"TargetID":99877,"Directional":true}]},{"ID":6706,"SourceStructureID":485,"TargetStructureID":5117,"Label":"485-5117 via BC Conventional Synapse from 101211 -> 101212","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101211,"TargetID":101212,"Directional":true}]},{"ID":6707,"SourceStructureID":485,"TargetStructureID":5117,"Label":"485-5117 via Ribbon Synapse from 50854 -> 100170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50854,"TargetID":100170,"Directional":true}]},{"ID":6708,"SourceStructureID":485,"TargetStructureID":5575,"Label":"485-5575 via Adherens from 27204 -> 23087","Type":"Adherens","Directional":true,"Links":[{"SourceID":27204,"TargetID":23087,"Directional":true}]},{"ID":6709,"SourceStructureID":485,"TargetStructureID":8577,"Label":"485-8577 via Ribbon Synapse from 68784 -> 15931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68784,"TargetID":15931,"Directional":true}]},{"ID":6710,"SourceStructureID":485,"TargetStructureID":15796,"Label":"485-15796 via Ribbon Synapse from 43477 -> 43478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43477,"TargetID":43478,"Directional":true}]},{"ID":6711,"SourceStructureID":485,"TargetStructureID":18282,"Label":"485-18282 via Ribbon Synapse from 18300 -> 18301, 18311 -> 18307, 47532 -> 100938, 50888 -> 101088, 100815 -> 18303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18300,"TargetID":18301,"Directional":true},{"SourceID":18311,"TargetID":18307,"Directional":true},{"SourceID":47532,"TargetID":100938,"Directional":true},{"SourceID":50888,"TargetID":101088,"Directional":true},{"SourceID":100815,"TargetID":18303,"Directional":true}]},{"ID":6712,"SourceStructureID":485,"TargetStructureID":18576,"Label":"485-18576 via Ribbon Synapse from 94212 -> 100471","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94212,"TargetID":100471,"Directional":true}]},{"ID":6713,"SourceStructureID":485,"TargetStructureID":22554,"Label":"485-22554 via BC Conventional Synapse from 22567 -> 22566","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":22567,"TargetID":22566,"Directional":true}]},{"ID":6714,"SourceStructureID":485,"TargetStructureID":22974,"Label":"485-22974 via Ribbon Synapse from 100873 -> 100881, 101492 -> 101713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100873,"TargetID":100881,"Directional":true},{"SourceID":101492,"TargetID":101713,"Directional":true}]},{"ID":6715,"SourceStructureID":485,"TargetStructureID":24148,"Label":"485-24148 via Ribbon Synapse from 24166 -> 24167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24166,"TargetID":24167,"Directional":true}]},{"ID":6716,"SourceStructureID":485,"TargetStructureID":25367,"Label":"485-25367 via Ribbon Synapse from 18310 -> 25369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18310,"TargetID":25369,"Directional":true}]},{"ID":6717,"SourceStructureID":485,"TargetStructureID":25392,"Label":"485-25392 via Ribbon Synapse from 32297 -> 32298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32297,"TargetID":32298,"Directional":true}]},{"ID":6718,"SourceStructureID":485,"TargetStructureID":27288,"Label":"485-27288 via Ribbon Synapse from 19984 -> 27296, 27302 -> 27303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19984,"TargetID":27296,"Directional":true},{"SourceID":27302,"TargetID":27303,"Directional":true}]},{"ID":6719,"SourceStructureID":485,"TargetStructureID":34601,"Label":"485-34601 via Ribbon Synapse from 18311 -> 35174","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18311,"TargetID":35174,"Directional":true}]},{"ID":6720,"SourceStructureID":485,"TargetStructureID":35117,"Label":"485-35117 via Ribbon Synapse from 35124 -> 35121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35124,"TargetID":35121,"Directional":true}]},{"ID":6721,"SourceStructureID":485,"TargetStructureID":39876,"Label":"485-39876 via Ribbon Synapse from 15934 -> 39882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15934,"TargetID":39882,"Directional":true}]},{"ID":6722,"SourceStructureID":485,"TargetStructureID":46823,"Label":"485-46823 via Ribbon Synapse from 46845 -> 46844, 46847 -> 46846, 46850 -> 46849, 50914 -> 99499, 101009 -> 46837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46845,"TargetID":46844,"Directional":true},{"SourceID":46847,"TargetID":46846,"Directional":true},{"SourceID":46850,"TargetID":46849,"Directional":true},{"SourceID":50914,"TargetID":99499,"Directional":true},{"SourceID":101009,"TargetID":46837,"Directional":true}]},{"ID":6723,"SourceStructureID":485,"TargetStructureID":49489,"Label":"485-49489 via Ribbon Synapse from 49532 -> 49529, 65187 -> 103713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49532,"TargetID":49529,"Directional":true},{"SourceID":65187,"TargetID":103713,"Directional":true}]},{"ID":6724,"SourceStructureID":485,"TargetStructureID":60657,"Label":"485-60657 via Ribbon Synapse from 50878 -> 99467, 61428 -> 61427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50878,"TargetID":99467,"Directional":true},{"SourceID":61428,"TargetID":61427,"Directional":true}]},{"ID":6725,"SourceStructureID":485,"TargetStructureID":61270,"Label":"485-61270 via Ribbon Synapse from 50644 -> 61295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50644,"TargetID":61295,"Directional":true}]},{"ID":6726,"SourceStructureID":485,"TargetStructureID":61864,"Label":"485-61864 via Ribbon Synapse from 23148 -> 61866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23148,"TargetID":61866,"Directional":true}]},{"ID":6727,"SourceStructureID":485,"TargetStructureID":61960,"Label":"485-61960 via Ribbon Synapse from 47536 -> 81467, 51159 -> 81503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47536,"TargetID":81467,"Directional":true},{"SourceID":51159,"TargetID":81503,"Directional":true}]},{"ID":6728,"SourceStructureID":485,"TargetStructureID":65267,"Label":"485-65267 via Ribbon Synapse from 47529 -> 69964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47529,"TargetID":69964,"Directional":true}]},{"ID":6729,"SourceStructureID":485,"TargetStructureID":70868,"Label":"485-70868 via Ribbon Synapse from 70877 -> 70876","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70877,"TargetID":70876,"Directional":true}]},{"ID":6730,"SourceStructureID":485,"TargetStructureID":70878,"Label":"485-70878 via Ribbon Synapse from 70877 -> 70880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70877,"TargetID":70880,"Directional":true}]},{"ID":6731,"SourceStructureID":485,"TargetStructureID":71189,"Label":"485-71189 via Ribbon Synapse from 101122 -> 101126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101122,"TargetID":101126,"Directional":true}]},{"ID":6732,"SourceStructureID":485,"TargetStructureID":81459,"Label":"485-81459 via Ribbon Synapse from 81464 -> 81466","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81464,"TargetID":81466,"Directional":true}]},{"ID":6733,"SourceStructureID":485,"TargetStructureID":85748,"Label":"485-85748 via Ribbon Synapse from 100228 -> 85790, 148418 -> 148419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100228,"TargetID":85790,"Directional":true},{"SourceID":148418,"TargetID":148419,"Directional":true}]},{"ID":6734,"SourceStructureID":485,"TargetStructureID":86634,"Label":"485-86634 via Ribbon Synapse from 50865 -> 86707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50865,"TargetID":86707,"Directional":true}]},{"ID":6735,"SourceStructureID":485,"TargetStructureID":99217,"Label":"485-99217 via Ribbon Synapse from 24474 -> 99221","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24474,"TargetID":99221,"Directional":true}]},{"ID":6736,"SourceStructureID":485,"TargetStructureID":99218,"Label":"485-99218 via Ribbon Synapse from 24474 -> 99222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24474,"TargetID":99222,"Directional":true}]},{"ID":6737,"SourceStructureID":485,"TargetStructureID":99223,"Label":"485-99223 via Ribbon Synapse from 38778 -> 99224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38778,"TargetID":99224,"Directional":true}]},{"ID":6738,"SourceStructureID":485,"TargetStructureID":99228,"Label":"485-99228 via Ribbon Synapse from 24476 -> 99229, 24477 -> 99229, 24478 -> 99229, 24480 -> 99229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24476,"TargetID":99229,"Directional":true},{"SourceID":24477,"TargetID":99229,"Directional":true},{"SourceID":24478,"TargetID":99229,"Directional":true},{"SourceID":24480,"TargetID":99229,"Directional":true}]},{"ID":6739,"SourceStructureID":485,"TargetStructureID":99230,"Label":"485-99230 via Ribbon Synapse from 24480 -> 99231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24480,"TargetID":99231,"Directional":true}]},{"ID":6740,"SourceStructureID":485,"TargetStructureID":99247,"Label":"485-99247 via Ribbon Synapse from 24482 -> 99248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24482,"TargetID":99248,"Directional":true}]},{"ID":6741,"SourceStructureID":485,"TargetStructureID":99249,"Label":"485-99249 via Ribbon Synapse from 24481 -> 99250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24481,"TargetID":99250,"Directional":true}]},{"ID":6742,"SourceStructureID":485,"TargetStructureID":99347,"Label":"485-99347 via Ribbon Synapse from 7032 -> 99348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7032,"TargetID":99348,"Directional":true}]},{"ID":6743,"SourceStructureID":485,"TargetStructureID":99349,"Label":"485-99349 via Ribbon Synapse from 99283 -> 99350","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99283,"TargetID":99350,"Directional":true}]},{"ID":6744,"SourceStructureID":485,"TargetStructureID":99362,"Label":"485-99362 via Ribbon Synapse from 99354 -> 99363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99354,"TargetID":99363,"Directional":true}]},{"ID":6745,"SourceStructureID":485,"TargetStructureID":99388,"Label":"485-99388 via Ribbon Synapse from 7034 -> 99390","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7034,"TargetID":99390,"Directional":true}]},{"ID":6746,"SourceStructureID":485,"TargetStructureID":99391,"Label":"485-99391 via Ribbon Synapse from 7034 -> 99392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7034,"TargetID":99392,"Directional":true}]},{"ID":6747,"SourceStructureID":485,"TargetStructureID":99397,"Label":"485-99397 via Ribbon Synapse from 99394 -> 99398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99394,"TargetID":99398,"Directional":true}]},{"ID":6748,"SourceStructureID":485,"TargetStructureID":99403,"Label":"485-99403 via Ribbon Synapse from 7036 -> 99404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7036,"TargetID":99404,"Directional":true}]},{"ID":6749,"SourceStructureID":485,"TargetStructureID":99406,"Label":"485-99406 via BC Conventional Synapse from 99405 -> 99407","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99405,"TargetID":99407,"Directional":true}]},{"ID":6750,"SourceStructureID":485,"TargetStructureID":99422,"Label":"485-99422 via Ribbon Synapse from 99421 -> 99424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99421,"TargetID":99424,"Directional":true}]},{"ID":6751,"SourceStructureID":485,"TargetStructureID":99423,"Label":"485-99423 via Ribbon Synapse from 99421 -> 99425","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99421,"TargetID":99425,"Directional":true}]},{"ID":6752,"SourceStructureID":485,"TargetStructureID":99441,"Label":"485-99441 via Ribbon Synapse from 50879 -> 99442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50879,"TargetID":99442,"Directional":true}]},{"ID":6753,"SourceStructureID":485,"TargetStructureID":99451,"Label":"485-99451 via BC Conventional Synapse from 94060 -> 99452","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94060,"TargetID":99452,"Directional":true}]},{"ID":6754,"SourceStructureID":485,"TargetStructureID":99457,"Label":"485-99457 via Ribbon Synapse from 50861 -> 99458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50861,"TargetID":99458,"Directional":true}]},{"ID":6755,"SourceStructureID":485,"TargetStructureID":99459,"Label":"485-99459 via Ribbon Synapse from 50859 -> 99460","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50859,"TargetID":99460,"Directional":true}]},{"ID":6756,"SourceStructureID":485,"TargetStructureID":99461,"Label":"485-99461 via Ribbon Synapse from 50859 -> 99462","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50859,"TargetID":99462,"Directional":true}]},{"ID":6757,"SourceStructureID":485,"TargetStructureID":99479,"Label":"485-99479 via Ribbon Synapse from 50878 -> 99481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50878,"TargetID":99481,"Directional":true}]},{"ID":6758,"SourceStructureID":485,"TargetStructureID":99525,"Label":"485-99525 via Ribbon Synapse from 7044 -> 99526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7044,"TargetID":99526,"Directional":true}]},{"ID":6759,"SourceStructureID":485,"TargetStructureID":99617,"Label":"485-99617 via Ribbon Synapse from 50856 -> 99619","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50856,"TargetID":99619,"Directional":true}]},{"ID":6760,"SourceStructureID":485,"TargetStructureID":99621,"Label":"485-99621 via Ribbon Synapse from 50856 -> 99623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50856,"TargetID":99623,"Directional":true}]},{"ID":6761,"SourceStructureID":485,"TargetStructureID":99624,"Label":"485-99624 via Ribbon Synapse from 94092 -> 99627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94092,"TargetID":99627,"Directional":true}]},{"ID":6762,"SourceStructureID":485,"TargetStructureID":99625,"Label":"485-99625 via Ribbon Synapse from 94092 -> 99626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94092,"TargetID":99626,"Directional":true}]},{"ID":6763,"SourceStructureID":485,"TargetStructureID":99644,"Label":"485-99644 via Ribbon Synapse from 99875 -> 99876","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99875,"TargetID":99876,"Directional":true}]},{"ID":6764,"SourceStructureID":485,"TargetStructureID":99651,"Label":"485-99651 via Ribbon Synapse from 46847 -> 99652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46847,"TargetID":99652,"Directional":true}]},{"ID":6765,"SourceStructureID":485,"TargetStructureID":99653,"Label":"485-99653 via Ribbon Synapse from 99669 -> 99654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99669,"TargetID":99654,"Directional":true}]},{"ID":6766,"SourceStructureID":485,"TargetStructureID":99655,"Label":"485-99655 via Ribbon Synapse from 99669 -> 99656","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99669,"TargetID":99656,"Directional":true}]},{"ID":6767,"SourceStructureID":485,"TargetStructureID":99701,"Label":"485-99701 via Ribbon Synapse from 99691 -> 99860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99691,"TargetID":99860,"Directional":true}]},{"ID":6768,"SourceStructureID":485,"TargetStructureID":99711,"Label":"485-99711 via Ribbon Synapse from 94111 -> 99718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94111,"TargetID":99718,"Directional":true}]},{"ID":6769,"SourceStructureID":485,"TargetStructureID":99731,"Label":"485-99731 via Ribbon Synapse from 99730 -> 99732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99730,"TargetID":99732,"Directional":true}]},{"ID":6770,"SourceStructureID":485,"TargetStructureID":99773,"Label":"485-99773 via Ribbon Synapse from 50689 -> 99777","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50689,"TargetID":99777,"Directional":true}]},{"ID":6771,"SourceStructureID":485,"TargetStructureID":99841,"Label":"485-99841 via Ribbon Synapse from 99840 -> 99842","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99840,"TargetID":99842,"Directional":true}]},{"ID":6772,"SourceStructureID":485,"TargetStructureID":99848,"Label":"485-99848 via Ribbon Synapse from 51171 -> 99849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51171,"TargetID":99849,"Directional":true}]},{"ID":6773,"SourceStructureID":485,"TargetStructureID":99850,"Label":"485-99850 via Ribbon Synapse from 50685 -> 99851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50685,"TargetID":99851,"Directional":true}]},{"ID":6774,"SourceStructureID":485,"TargetStructureID":99852,"Label":"485-99852 via Ribbon Synapse from 50685 -> 99853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50685,"TargetID":99853,"Directional":true}]},{"ID":6775,"SourceStructureID":485,"TargetStructureID":99857,"Label":"485-99857 via Ribbon Synapse from 99681 -> 99859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99681,"TargetID":99859,"Directional":true}]},{"ID":6776,"SourceStructureID":485,"TargetStructureID":99861,"Label":"485-99861 via Ribbon Synapse from 50631 -> 99864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50631,"TargetID":99864,"Directional":true}]},{"ID":6777,"SourceStructureID":485,"TargetStructureID":99862,"Label":"485-99862 via Ribbon Synapse from 50631 -> 99863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50631,"TargetID":99863,"Directional":true}]},{"ID":6778,"SourceStructureID":485,"TargetStructureID":99865,"Label":"485-99865 via Ribbon Synapse from 50631 -> 99866, 99896 -> 99897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50631,"TargetID":99866,"Directional":true},{"SourceID":99896,"TargetID":99897,"Directional":true}]},{"ID":6779,"SourceStructureID":485,"TargetStructureID":99879,"Label":"485-99879 via BC Conventional Synapse from 99878 -> 99880","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99878,"TargetID":99880,"Directional":true}]},{"ID":6780,"SourceStructureID":485,"TargetStructureID":99906,"Label":"485-99906 via BC Conventional Synapse from 148021 -> 148020","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":148021,"TargetID":148020,"Directional":true}]},{"ID":6781,"SourceStructureID":485,"TargetStructureID":99909,"Label":"485-99909 via Ribbon Synapse from 99908 -> 99910","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99908,"TargetID":99910,"Directional":true}]},{"ID":6782,"SourceStructureID":485,"TargetStructureID":99915,"Label":"485-99915 via BC Conventional Synapse from 99920 -> 99919","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99920,"TargetID":99919,"Directional":true}]},{"ID":6783,"SourceStructureID":485,"TargetStructureID":99915,"Label":"485-99915 via Ribbon Synapse from 99914 -> 99917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99914,"TargetID":99917,"Directional":true}]},{"ID":6784,"SourceStructureID":485,"TargetStructureID":99916,"Label":"485-99916 via Ribbon Synapse from 99914 -> 99918, 99925 -> 99926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99914,"TargetID":99918,"Directional":true},{"SourceID":99925,"TargetID":99926,"Directional":true}]},{"ID":6785,"SourceStructureID":485,"TargetStructureID":99933,"Label":"485-99933 via Ribbon Synapse from 46850 -> 99934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46850,"TargetID":99934,"Directional":true}]},{"ID":6786,"SourceStructureID":485,"TargetStructureID":99936,"Label":"485-99936 via BC Conventional Synapse from 99935 -> 99939","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99935,"TargetID":99939,"Directional":true}]},{"ID":6787,"SourceStructureID":485,"TargetStructureID":99938,"Label":"485-99938 via BC Conventional Synapse from 99937 -> 99946","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99937,"TargetID":99946,"Directional":true}]},{"ID":6788,"SourceStructureID":485,"TargetStructureID":99944,"Label":"485-99944 via Ribbon Synapse from 99943 -> 99945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99943,"TargetID":99945,"Directional":true}]},{"ID":6789,"SourceStructureID":485,"TargetStructureID":99958,"Label":"485-99958 via Ribbon Synapse from 99955 -> 99959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99955,"TargetID":99959,"Directional":true}]},{"ID":6790,"SourceStructureID":485,"TargetStructureID":99960,"Label":"485-99960 via Ribbon Synapse from 99955 -> 99961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99955,"TargetID":99961,"Directional":true}]},{"ID":6791,"SourceStructureID":485,"TargetStructureID":99975,"Label":"485-99975 via Ribbon Synapse from 99974 -> 99978","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99974,"TargetID":99978,"Directional":true}]},{"ID":6792,"SourceStructureID":485,"TargetStructureID":99976,"Label":"485-99976 via Ribbon Synapse from 99974 -> 99977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99974,"TargetID":99977,"Directional":true}]},{"ID":6793,"SourceStructureID":485,"TargetStructureID":99987,"Label":"485-99987 via Ribbon Synapse from 99983 -> 99988","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99983,"TargetID":99988,"Directional":true}]},{"ID":6794,"SourceStructureID":485,"TargetStructureID":99989,"Label":"485-99989 via Ribbon Synapse from 99983 -> 99990","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99983,"TargetID":99990,"Directional":true}]},{"ID":6795,"SourceStructureID":485,"TargetStructureID":100010,"Label":"485-100010 via Ribbon Synapse from 94198 -> 100013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94198,"TargetID":100013,"Directional":true}]},{"ID":6796,"SourceStructureID":485,"TargetStructureID":100014,"Label":"485-100014 via Ribbon Synapse from 29184 -> 100016","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29184,"TargetID":100016,"Directional":true}]},{"ID":6797,"SourceStructureID":485,"TargetStructureID":100023,"Label":"485-100023 via Ribbon Synapse from 100022 -> 100024","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100022,"TargetID":100024,"Directional":true}]},{"ID":6798,"SourceStructureID":485,"TargetStructureID":100032,"Label":"485-100032 via BC Conventional Synapse from 100034 -> 100033","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100034,"TargetID":100033,"Directional":true}]},{"ID":6799,"SourceStructureID":485,"TargetStructureID":100041,"Label":"485-100041 via BC Conventional Synapse from 100042 -> 118443","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100042,"TargetID":118443,"Directional":true}]},{"ID":6800,"SourceStructureID":485,"TargetStructureID":100046,"Label":"485-100046 via Ribbon Synapse from 29189 -> 100049","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29189,"TargetID":100049,"Directional":true}]},{"ID":6801,"SourceStructureID":485,"TargetStructureID":100047,"Label":"485-100047 via Ribbon Synapse from 29189 -> 100048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29189,"TargetID":100048,"Directional":true}]},{"ID":6802,"SourceStructureID":485,"TargetStructureID":100050,"Label":"485-100050 via Ribbon Synapse from 29189 -> 100051","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29189,"TargetID":100051,"Directional":true}]},{"ID":6803,"SourceStructureID":485,"TargetStructureID":100062,"Label":"485-100062 via Ribbon Synapse from 29192 -> 100063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29192,"TargetID":100063,"Directional":true}]},{"ID":6804,"SourceStructureID":485,"TargetStructureID":100072,"Label":"485-100072 via BC Conventional Synapse from 94207 -> 100073","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94207,"TargetID":100073,"Directional":true}]},{"ID":6805,"SourceStructureID":485,"TargetStructureID":100081,"Label":"485-100081 via BC Conventional Synapse from 49524 -> 100083","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":49524,"TargetID":100083,"Directional":true}]},{"ID":6806,"SourceStructureID":485,"TargetStructureID":100089,"Label":"485-100089 via BC Conventional Synapse from 100088 -> 100090","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100088,"TargetID":100090,"Directional":true}]},{"ID":6807,"SourceStructureID":485,"TargetStructureID":100095,"Label":"485-100095 via Ribbon Synapse from 148072 -> 148073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148072,"TargetID":148073,"Directional":true}]},{"ID":6808,"SourceStructureID":485,"TargetStructureID":100098,"Label":"485-100098 via Ribbon Synapse from 51028 -> 100099","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51028,"TargetID":100099,"Directional":true}]},{"ID":6809,"SourceStructureID":485,"TargetStructureID":100105,"Label":"485-100105 via BC Conventional Synapse from 100104 -> 100106","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100104,"TargetID":100106,"Directional":true}]},{"ID":6810,"SourceStructureID":485,"TargetStructureID":100111,"Label":"485-100111 via Ribbon Synapse from 51067 -> 100112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51067,"TargetID":100112,"Directional":true}]},{"ID":6811,"SourceStructureID":485,"TargetStructureID":100116,"Label":"485-100116 via Ribbon Synapse from 51068 -> 100119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51068,"TargetID":100119,"Directional":true}]},{"ID":6812,"SourceStructureID":485,"TargetStructureID":100117,"Label":"485-100117 via Ribbon Synapse from 51068 -> 100118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51068,"TargetID":100118,"Directional":true}]},{"ID":6813,"SourceStructureID":485,"TargetStructureID":100128,"Label":"485-100128 via Ribbon Synapse from 51071 -> 100130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51071,"TargetID":100130,"Directional":true}]},{"ID":6814,"SourceStructureID":485,"TargetStructureID":100131,"Label":"485-100131 via Ribbon Synapse from 51071 -> 100132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51071,"TargetID":100132,"Directional":true}]},{"ID":6815,"SourceStructureID":485,"TargetStructureID":100135,"Label":"485-100135 via Ribbon Synapse from 50920 -> 100139","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50920,"TargetID":100139,"Directional":true}]},{"ID":6816,"SourceStructureID":485,"TargetStructureID":100156,"Label":"485-100156 via Ribbon Synapse from 50920 -> 100158, 51088 -> 100163","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50920,"TargetID":100158,"Directional":true},{"SourceID":51088,"TargetID":100163,"Directional":true}]},{"ID":6817,"SourceStructureID":485,"TargetStructureID":100173,"Label":"485-100173 via Ribbon Synapse from 50690 -> 100192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50690,"TargetID":100192,"Directional":true}]},{"ID":6818,"SourceStructureID":485,"TargetStructureID":100198,"Label":"485-100198 via BC Conventional Synapse from 49531 -> 100199","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":49531,"TargetID":100199,"Directional":true}]},{"ID":6819,"SourceStructureID":485,"TargetStructureID":100207,"Label":"485-100207 via Ribbon Synapse from 50686 -> 100208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50686,"TargetID":100208,"Directional":true}]},{"ID":6820,"SourceStructureID":485,"TargetStructureID":100209,"Label":"485-100209 via Ribbon Synapse from 50686 -> 100211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50686,"TargetID":100211,"Directional":true}]},{"ID":6821,"SourceStructureID":485,"TargetStructureID":100217,"Label":"485-100217 via Ribbon Synapse from 99358 -> 100218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99358,"TargetID":100218,"Directional":true}]},{"ID":6822,"SourceStructureID":485,"TargetStructureID":100221,"Label":"485-100221 via BC Conventional Synapse from 100223 -> 100222","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100223,"TargetID":100222,"Directional":true}]},{"ID":6823,"SourceStructureID":485,"TargetStructureID":100257,"Label":"485-100257 via Ribbon Synapse from 7038 -> 100258","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7038,"TargetID":100258,"Directional":true}]},{"ID":6824,"SourceStructureID":485,"TargetStructureID":100271,"Label":"485-100271 via Ribbon Synapse from 100226 -> 100272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100226,"TargetID":100272,"Directional":true}]},{"ID":6825,"SourceStructureID":485,"TargetStructureID":100279,"Label":"485-100279 via Ribbon Synapse from 100277 -> 100280","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100277,"TargetID":100280,"Directional":true}]},{"ID":6826,"SourceStructureID":485,"TargetStructureID":100289,"Label":"485-100289 via BC Conventional Synapse from 100288 -> 100290","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100288,"TargetID":100290,"Directional":true}]},{"ID":6827,"SourceStructureID":485,"TargetStructureID":100292,"Label":"485-100292 via Ribbon Synapse from 100291 -> 100295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100291,"TargetID":100295,"Directional":true}]},{"ID":6828,"SourceStructureID":485,"TargetStructureID":100299,"Label":"485-100299 via Ribbon Synapse from 47642 -> 100300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47642,"TargetID":100300,"Directional":true}]},{"ID":6829,"SourceStructureID":485,"TargetStructureID":100304,"Label":"485-100304 via Ribbon Synapse from 18296 -> 100305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18296,"TargetID":100305,"Directional":true}]},{"ID":6830,"SourceStructureID":485,"TargetStructureID":100308,"Label":"485-100308 via Ribbon Synapse from 51157 -> 100311","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51157,"TargetID":100311,"Directional":true}]},{"ID":6831,"SourceStructureID":485,"TargetStructureID":100312,"Label":"485-100312 via Ribbon Synapse from 51159 -> 100314","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51159,"TargetID":100314,"Directional":true}]},{"ID":6832,"SourceStructureID":485,"TargetStructureID":100315,"Label":"485-100315 via Ribbon Synapse from 47651 -> 100318","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47651,"TargetID":100318,"Directional":true}]},{"ID":6833,"SourceStructureID":485,"TargetStructureID":100316,"Label":"485-100316 via Ribbon Synapse from 47651 -> 100317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47651,"TargetID":100317,"Directional":true}]},{"ID":6834,"SourceStructureID":485,"TargetStructureID":100322,"Label":"485-100322 via Ribbon Synapse from 47653 -> 100323","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47653,"TargetID":100323,"Directional":true}]},{"ID":6835,"SourceStructureID":485,"TargetStructureID":100355,"Label":"485-100355 via Ribbon Synapse from 47646 -> 100356","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47646,"TargetID":100356,"Directional":true}]},{"ID":6836,"SourceStructureID":485,"TargetStructureID":100381,"Label":"485-100381 via Ribbon Synapse from 51156 -> 100382","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51156,"TargetID":100382,"Directional":true}]},{"ID":6837,"SourceStructureID":485,"TargetStructureID":100391,"Label":"485-100391 via Ribbon Synapse from 51156 -> 100392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51156,"TargetID":100392,"Directional":true}]},{"ID":6838,"SourceStructureID":485,"TargetStructureID":100410,"Label":"485-100410 via Ribbon Synapse from 47662 -> 100411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47662,"TargetID":100411,"Directional":true}]},{"ID":6839,"SourceStructureID":485,"TargetStructureID":100426,"Label":"485-100426 via Ribbon Synapse from 51153 -> 100432","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51153,"TargetID":100432,"Directional":true}]},{"ID":6840,"SourceStructureID":485,"TargetStructureID":100436,"Label":"485-100436 via BC Conventional Synapse from 100435 -> 100437","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100435,"TargetID":100437,"Directional":true}]},{"ID":6841,"SourceStructureID":485,"TargetStructureID":100439,"Label":"485-100439 via BC Conventional Synapse from 100438 -> 100440","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100438,"TargetID":100440,"Directional":true}]},{"ID":6842,"SourceStructureID":485,"TargetStructureID":100441,"Label":"485-100441 via Ribbon Synapse from 51152 -> 100442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51152,"TargetID":100442,"Directional":true}]},{"ID":6843,"SourceStructureID":485,"TargetStructureID":100460,"Label":"485-100460 via Ribbon Synapse from 51149 -> 100472","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51149,"TargetID":100472,"Directional":true}]},{"ID":6844,"SourceStructureID":485,"TargetStructureID":100469,"Label":"485-100469 via Ribbon Synapse from 51149 -> 100470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51149,"TargetID":100470,"Directional":true}]},{"ID":6845,"SourceStructureID":485,"TargetStructureID":100474,"Label":"485-100474 via Ribbon Synapse from 94051 -> 100475","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94051,"TargetID":100475,"Directional":true}]},{"ID":6846,"SourceStructureID":485,"TargetStructureID":100479,"Label":"485-100479 via Ribbon Synapse from 100489 -> 100487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100489,"TargetID":100487,"Directional":true}]},{"ID":6847,"SourceStructureID":485,"TargetStructureID":100490,"Label":"485-100490 via Ribbon Synapse from 100489 -> 100491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100489,"TargetID":100491,"Directional":true}]},{"ID":6848,"SourceStructureID":485,"TargetStructureID":100498,"Label":"485-100498 via Ribbon Synapse from 100497 -> 100500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100497,"TargetID":100500,"Directional":true}]},{"ID":6849,"SourceStructureID":485,"TargetStructureID":100568,"Label":"485-100568 via Ribbon Synapse from 100539 -> 100569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100539,"TargetID":100569,"Directional":true}]},{"ID":6850,"SourceStructureID":485,"TargetStructureID":100573,"Label":"485-100573 via Ribbon Synapse from 100577 -> 100576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100577,"TargetID":100576,"Directional":true}]},{"ID":6851,"SourceStructureID":485,"TargetStructureID":100574,"Label":"485-100574 via Ribbon Synapse from 100577 -> 100575","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100577,"TargetID":100575,"Directional":true}]},{"ID":6852,"SourceStructureID":485,"TargetStructureID":100588,"Label":"485-100588 via Ribbon Synapse from 100587 -> 100589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100587,"TargetID":100589,"Directional":true}]},{"ID":6853,"SourceStructureID":485,"TargetStructureID":100605,"Label":"485-100605 via Ribbon Synapse from 100604 -> 100608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100604,"TargetID":100608,"Directional":true}]},{"ID":6854,"SourceStructureID":485,"TargetStructureID":100606,"Label":"485-100606 via Ribbon Synapse from 100604 -> 100607","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100604,"TargetID":100607,"Directional":true}]},{"ID":6855,"SourceStructureID":485,"TargetStructureID":100614,"Label":"485-100614 via Ribbon Synapse from 100611 -> 100617","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100611,"TargetID":100617,"Directional":true}]},{"ID":6856,"SourceStructureID":485,"TargetStructureID":100615,"Label":"485-100615 via Ribbon Synapse from 100611 -> 100616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100611,"TargetID":100616,"Directional":true}]},{"ID":6857,"SourceStructureID":485,"TargetStructureID":100620,"Label":"485-100620 via Ribbon Synapse from 51081 -> 100726, 100619 -> 100621","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51081,"TargetID":100726,"Directional":true},{"SourceID":100619,"TargetID":100621,"Directional":true}]},{"ID":6858,"SourceStructureID":485,"TargetStructureID":100629,"Label":"485-100629 via BC Conventional Synapse from 100628 -> 100630","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100628,"TargetID":100630,"Directional":true}]},{"ID":6859,"SourceStructureID":485,"TargetStructureID":100634,"Label":"485-100634 via BC Conventional Synapse from 100637 -> 100635","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100637,"TargetID":100635,"Directional":true}]},{"ID":6860,"SourceStructureID":485,"TargetStructureID":100671,"Label":"485-100671 via BC Conventional Synapse from 100653 -> 100672","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100653,"TargetID":100672,"Directional":true}]},{"ID":6861,"SourceStructureID":485,"TargetStructureID":100687,"Label":"485-100687 via Ribbon Synapse from 100658 -> 100688, 100659 -> 100689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100658,"TargetID":100688,"Directional":true},{"SourceID":100659,"TargetID":100689,"Directional":true}]},{"ID":6862,"SourceStructureID":485,"TargetStructureID":100695,"Label":"485-100695 via BC Conventional Synapse from 100693 -> 100697","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100693,"TargetID":100697,"Directional":true}]},{"ID":6863,"SourceStructureID":485,"TargetStructureID":100715,"Label":"485-100715 via Ribbon Synapse from 51086 -> 100719","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51086,"TargetID":100719,"Directional":true}]},{"ID":6864,"SourceStructureID":485,"TargetStructureID":100716,"Label":"485-100716 via Ribbon Synapse from 51086 -> 100718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51086,"TargetID":100718,"Directional":true}]},{"ID":6865,"SourceStructureID":485,"TargetStructureID":100717,"Label":"485-100717 via Ribbon Synapse from 51086 -> 100720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51086,"TargetID":100720,"Directional":true}]},{"ID":6866,"SourceStructureID":485,"TargetStructureID":100721,"Label":"485-100721 via Ribbon Synapse from 51083 -> 100723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51083,"TargetID":100723,"Directional":true}]},{"ID":6867,"SourceStructureID":485,"TargetStructureID":100731,"Label":"485-100731 via BC Conventional Synapse from 100727 -> 100732","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100727,"TargetID":100732,"Directional":true}]},{"ID":6868,"SourceStructureID":485,"TargetStructureID":100739,"Label":"485-100739 via Ribbon Synapse from 47520 -> 100740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47520,"TargetID":100740,"Directional":true}]},{"ID":6869,"SourceStructureID":485,"TargetStructureID":100744,"Label":"485-100744 via Ribbon Synapse from 7035 -> 100758","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7035,"TargetID":100758,"Directional":true}]},{"ID":6870,"SourceStructureID":485,"TargetStructureID":100762,"Label":"485-100762 via Ribbon Synapse from 47525 -> 100764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47525,"TargetID":100764,"Directional":true}]},{"ID":6871,"SourceStructureID":485,"TargetStructureID":100767,"Label":"485-100767 via Ribbon Synapse from 7035 -> 100769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7035,"TargetID":100769,"Directional":true}]},{"ID":6872,"SourceStructureID":485,"TargetStructureID":100771,"Label":"485-100771 via Ribbon Synapse from 47528 -> 100782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47528,"TargetID":100782,"Directional":true}]},{"ID":6873,"SourceStructureID":485,"TargetStructureID":100787,"Label":"485-100787 via BC Conventional Synapse from 100786 -> 100791","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100786,"TargetID":100791,"Directional":true}]},{"ID":6874,"SourceStructureID":485,"TargetStructureID":100840,"Label":"485-100840 via Ribbon Synapse from 47623 -> 100841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47623,"TargetID":100841,"Directional":true}]},{"ID":6875,"SourceStructureID":485,"TargetStructureID":100842,"Label":"485-100842 via Ribbon Synapse from 47528 -> 100940, 118441 -> 118442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47528,"TargetID":100940,"Directional":true},{"SourceID":118441,"TargetID":118442,"Directional":true}]},{"ID":6876,"SourceStructureID":485,"TargetStructureID":100845,"Label":"485-100845 via BC Conventional Synapse from 100844 -> 100847","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100844,"TargetID":100847,"Directional":true}]},{"ID":6877,"SourceStructureID":485,"TargetStructureID":100856,"Label":"485-100856 via Ribbon Synapse from 47621 -> 100857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47621,"TargetID":100857,"Directional":true}]},{"ID":6878,"SourceStructureID":485,"TargetStructureID":100883,"Label":"485-100883 via Ribbon Synapse from 100873 -> 100884","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100873,"TargetID":100884,"Directional":true}]},{"ID":6879,"SourceStructureID":485,"TargetStructureID":100885,"Label":"485-100885 via Ribbon Synapse from 100873 -> 100887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100873,"TargetID":100887,"Directional":true}]},{"ID":6880,"SourceStructureID":485,"TargetStructureID":100895,"Label":"485-100895 via BC Conventional Synapse from 100894 -> 100899","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100894,"TargetID":100899,"Directional":true}]},{"ID":6881,"SourceStructureID":485,"TargetStructureID":100900,"Label":"485-100900 via Ribbon Synapse from 47628 -> 100903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47628,"TargetID":100903,"Directional":true}]},{"ID":6882,"SourceStructureID":485,"TargetStructureID":100901,"Label":"485-100901 via Ribbon Synapse from 47628 -> 100902","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47628,"TargetID":100902,"Directional":true}]},{"ID":6883,"SourceStructureID":485,"TargetStructureID":100911,"Label":"485-100911 via Ribbon Synapse from 100910 -> 100915","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100910,"TargetID":100915,"Directional":true}]},{"ID":6884,"SourceStructureID":485,"TargetStructureID":100918,"Label":"485-100918 via Ribbon Synapse from 100917 -> 100968, 101020 -> 100969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100917,"TargetID":100968,"Directional":true},{"SourceID":101020,"TargetID":100969,"Directional":true}]},{"ID":6885,"SourceStructureID":485,"TargetStructureID":100924,"Label":"485-100924 via BC Conventional Synapse from 100922 -> 100925","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100922,"TargetID":100925,"Directional":true}]},{"ID":6886,"SourceStructureID":485,"TargetStructureID":100928,"Label":"485-100928 via BC Conventional Synapse from 100927 -> 100929","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100927,"TargetID":100929,"Directional":true}]},{"ID":6887,"SourceStructureID":485,"TargetStructureID":100934,"Label":"485-100934 via Ribbon Synapse from 47531 -> 100936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47531,"TargetID":100936,"Directional":true}]},{"ID":6888,"SourceStructureID":485,"TargetStructureID":100953,"Label":"485-100953 via Ribbon Synapse from 100917 -> 100964, 100952 -> 100957","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100917,"TargetID":100964,"Directional":true},{"SourceID":100952,"TargetID":100957,"Directional":true}]},{"ID":6889,"SourceStructureID":485,"TargetStructureID":100965,"Label":"485-100965 via Ribbon Synapse from 100917 -> 100966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100917,"TargetID":100966,"Directional":true}]},{"ID":6890,"SourceStructureID":485,"TargetStructureID":100994,"Label":"485-100994 via BC Conventional Synapse from 100993 -> 100995","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100993,"TargetID":100995,"Directional":true}]},{"ID":6891,"SourceStructureID":485,"TargetStructureID":101010,"Label":"485-101010 via Ribbon Synapse from 94213 -> 101011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94213,"TargetID":101011,"Directional":true}]},{"ID":6892,"SourceStructureID":485,"TargetStructureID":101015,"Label":"485-101015 via Ribbon Synapse from 101020 -> 101022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101020,"TargetID":101022,"Directional":true}]},{"ID":6893,"SourceStructureID":485,"TargetStructureID":101023,"Label":"485-101023 via Ribbon Synapse from 101020 -> 101024, 101029 -> 101030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101020,"TargetID":101024,"Directional":true},{"SourceID":101029,"TargetID":101030,"Directional":true}]},{"ID":6894,"SourceStructureID":485,"TargetStructureID":101027,"Label":"485-101027 via Ribbon Synapse from 101020 -> 101028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101020,"TargetID":101028,"Directional":true}]},{"ID":6895,"SourceStructureID":485,"TargetStructureID":101031,"Label":"485-101031 via BC Conventional Synapse from 101033 -> 101032","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101033,"TargetID":101032,"Directional":true}]},{"ID":6896,"SourceStructureID":485,"TargetStructureID":101085,"Label":"485-101085 via Ribbon Synapse from 94214 -> 101087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94214,"TargetID":101087,"Directional":true}]},{"ID":6897,"SourceStructureID":485,"TargetStructureID":101093,"Label":"485-101093 via BC Conventional Synapse from 101092 -> 101094","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101092,"TargetID":101094,"Directional":true}]},{"ID":6898,"SourceStructureID":485,"TargetStructureID":101095,"Label":"485-101095 via BC Conventional Synapse from 94215 -> 101096","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94215,"TargetID":101096,"Directional":true}]},{"ID":6899,"SourceStructureID":485,"TargetStructureID":101112,"Label":"485-101112 via BC Conventional Synapse from 101111 -> 101113","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101111,"TargetID":101113,"Directional":true}]},{"ID":6900,"SourceStructureID":485,"TargetStructureID":101127,"Label":"485-101127 via Ribbon Synapse from 101122 -> 101128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101122,"TargetID":101128,"Directional":true}]},{"ID":6901,"SourceStructureID":485,"TargetStructureID":101129,"Label":"485-101129 via Ribbon Synapse from 47539 -> 101130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47539,"TargetID":101130,"Directional":true}]},{"ID":6902,"SourceStructureID":485,"TargetStructureID":101137,"Label":"485-101137 via Ribbon Synapse from 47534 -> 101139","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47534,"TargetID":101139,"Directional":true}]},{"ID":6903,"SourceStructureID":485,"TargetStructureID":101138,"Label":"485-101138 via Ribbon Synapse from 47534 -> 101140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47534,"TargetID":101140,"Directional":true}]},{"ID":6904,"SourceStructureID":485,"TargetStructureID":101142,"Label":"485-101142 via Ribbon Synapse from 101136 -> 101148","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101136,"TargetID":101148,"Directional":true}]},{"ID":6905,"SourceStructureID":485,"TargetStructureID":101145,"Label":"485-101145 via Ribbon Synapse from 19986 -> 101149, 101144 -> 101152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19986,"TargetID":101149,"Directional":true},{"SourceID":101144,"TargetID":101152,"Directional":true}]},{"ID":6906,"SourceStructureID":485,"TargetStructureID":101178,"Label":"485-101178 via Ribbon Synapse from 94356 -> 101179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94356,"TargetID":101179,"Directional":true}]},{"ID":6907,"SourceStructureID":485,"TargetStructureID":101180,"Label":"485-101180 via Ribbon Synapse from 94355 -> 101181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94355,"TargetID":101181,"Directional":true}]},{"ID":6908,"SourceStructureID":485,"TargetStructureID":101182,"Label":"485-101182 via Ribbon Synapse from 94357 -> 101183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94357,"TargetID":101183,"Directional":true}]},{"ID":6909,"SourceStructureID":485,"TargetStructureID":101185,"Label":"485-101185 via Ribbon Synapse from 94355 -> 101186","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94355,"TargetID":101186,"Directional":true}]},{"ID":6910,"SourceStructureID":485,"TargetStructureID":101187,"Label":"485-101187 via Ribbon Synapse from 94354 -> 101189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94354,"TargetID":101189,"Directional":true}]},{"ID":6911,"SourceStructureID":485,"TargetStructureID":101194,"Label":"485-101194 via Ribbon Synapse from 94354 -> 101199","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94354,"TargetID":101199,"Directional":true}]},{"ID":6912,"SourceStructureID":485,"TargetStructureID":101201,"Label":"485-101201 via Ribbon Synapse from 101204 -> 101205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101204,"TargetID":101205,"Directional":true}]},{"ID":6913,"SourceStructureID":485,"TargetStructureID":101206,"Label":"485-101206 via Ribbon Synapse from 101204 -> 101207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101204,"TargetID":101207,"Directional":true}]},{"ID":6914,"SourceStructureID":485,"TargetStructureID":101220,"Label":"485-101220 via BC Conventional Synapse from 101222 -> 101221","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101222,"TargetID":101221,"Directional":true}]},{"ID":6915,"SourceStructureID":485,"TargetStructureID":101228,"Label":"485-101228 via BC Conventional Synapse from 101227 -> 101229","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101227,"TargetID":101229,"Directional":true}]},{"ID":6916,"SourceStructureID":485,"TargetStructureID":101238,"Label":"485-101238 via Ribbon Synapse from 101237 -> 101239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101237,"TargetID":101239,"Directional":true}]},{"ID":6917,"SourceStructureID":485,"TargetStructureID":101257,"Label":"485-101257 via Ribbon Synapse from 43488 -> 101259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43488,"TargetID":101259,"Directional":true}]},{"ID":6918,"SourceStructureID":485,"TargetStructureID":101261,"Label":"485-101261 via Ribbon Synapse from 43488 -> 101263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43488,"TargetID":101263,"Directional":true}]},{"ID":6919,"SourceStructureID":485,"TargetStructureID":101289,"Label":"485-101289 via Ribbon Synapse from 101285 -> 101292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101285,"TargetID":101292,"Directional":true}]},{"ID":6920,"SourceStructureID":485,"TargetStructureID":101294,"Label":"485-101294 via Ribbon Synapse from 101296 -> 101295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101296,"TargetID":101295,"Directional":true}]},{"ID":6921,"SourceStructureID":485,"TargetStructureID":101299,"Label":"485-101299 via BC Conventional Synapse from 101298 -> 101302","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101298,"TargetID":101302,"Directional":true}]},{"ID":6922,"SourceStructureID":485,"TargetStructureID":101314,"Label":"485-101314 via Ribbon Synapse from 101296 -> 101315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101296,"TargetID":101315,"Directional":true}]},{"ID":6923,"SourceStructureID":485,"TargetStructureID":101343,"Label":"485-101343 via BC Conventional Synapse from 101338 -> 101346","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101338,"TargetID":101346,"Directional":true}]},{"ID":6924,"SourceStructureID":485,"TargetStructureID":101351,"Label":"485-101351 via BC Conventional Synapse from 101353 -> 101352","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101353,"TargetID":101352,"Directional":true}]},{"ID":6925,"SourceStructureID":485,"TargetStructureID":101375,"Label":"485-101375 via BC Conventional Synapse from 101373 -> 101376","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101373,"TargetID":101376,"Directional":true}]},{"ID":6926,"SourceStructureID":485,"TargetStructureID":101392,"Label":"485-101392 via Ribbon Synapse from 94245 -> 101426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94245,"TargetID":101426,"Directional":true}]},{"ID":6927,"SourceStructureID":485,"TargetStructureID":101394,"Label":"485-101394 via Ribbon Synapse from 94268 -> 101398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94268,"TargetID":101398,"Directional":true}]},{"ID":6928,"SourceStructureID":485,"TargetStructureID":101437,"Label":"485-101437 via Ribbon Synapse from 101434 -> 101438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101434,"TargetID":101438,"Directional":true}]},{"ID":6929,"SourceStructureID":485,"TargetStructureID":101439,"Label":"485-101439 via Ribbon Synapse from 94266 -> 101446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94266,"TargetID":101446,"Directional":true}]},{"ID":6930,"SourceStructureID":485,"TargetStructureID":101466,"Label":"485-101466 via BC Conventional Synapse from 101467 -> 101468","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101467,"TargetID":101468,"Directional":true}]},{"ID":6931,"SourceStructureID":485,"TargetStructureID":101473,"Label":"485-101473 via Ribbon Synapse from 101472 -> 101476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101472,"TargetID":101476,"Directional":true}]},{"ID":6932,"SourceStructureID":485,"TargetStructureID":101474,"Label":"485-101474 via Ribbon Synapse from 101472 -> 101475","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101472,"TargetID":101475,"Directional":true}]},{"ID":6933,"SourceStructureID":485,"TargetStructureID":101704,"Label":"485-101704 via Ribbon Synapse from 101703 -> 101705","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101703,"TargetID":101705,"Directional":true}]},{"ID":6934,"SourceStructureID":485,"TargetStructureID":101707,"Label":"485-101707 via Ribbon Synapse from 101477 -> 101708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101477,"TargetID":101708,"Directional":true}]},{"ID":6935,"SourceStructureID":485,"TargetStructureID":101711,"Label":"485-101711 via Ribbon Synapse from 101492 -> 101714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101492,"TargetID":101714,"Directional":true}]},{"ID":6936,"SourceStructureID":485,"TargetStructureID":101715,"Label":"485-101715 via Ribbon Synapse from 101492 -> 101716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101492,"TargetID":101716,"Directional":true}]},{"ID":6937,"SourceStructureID":485,"TargetStructureID":101721,"Label":"485-101721 via BC Conventional Synapse from 101723 -> 101722","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101723,"TargetID":101722,"Directional":true}]},{"ID":6938,"SourceStructureID":485,"TargetStructureID":101730,"Label":"485-101730 via BC Conventional Synapse from 101731 -> 101732","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101731,"TargetID":101732,"Directional":true}]},{"ID":6939,"SourceStructureID":485,"TargetStructureID":101733,"Label":"485-101733 via Ribbon Synapse from 47559 -> 101734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47559,"TargetID":101734,"Directional":true}]},{"ID":6940,"SourceStructureID":485,"TargetStructureID":101740,"Label":"485-101740 via Ribbon Synapse from 47558 -> 101741","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47558,"TargetID":101741,"Directional":true}]},{"ID":6941,"SourceStructureID":485,"TargetStructureID":101742,"Label":"485-101742 via Ribbon Synapse from 47558 -> 101743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47558,"TargetID":101743,"Directional":true}]},{"ID":6942,"SourceStructureID":485,"TargetStructureID":101744,"Label":"485-101744 via Ribbon Synapse from 47555 -> 101746","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47555,"TargetID":101746,"Directional":true}]},{"ID":6943,"SourceStructureID":485,"TargetStructureID":101751,"Label":"485-101751 via BC Conventional Synapse from 101779 -> 101755","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101779,"TargetID":101755,"Directional":true}]},{"ID":6944,"SourceStructureID":485,"TargetStructureID":101777,"Label":"485-101777 via Ribbon Synapse from 101776 -> 101778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101776,"TargetID":101778,"Directional":true}]},{"ID":6945,"SourceStructureID":485,"TargetStructureID":101781,"Label":"485-101781 via BC Conventional Synapse from 101780 -> 101782","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101780,"TargetID":101782,"Directional":true}]},{"ID":6946,"SourceStructureID":485,"TargetStructureID":101785,"Label":"485-101785 via Ribbon Synapse from 101861 -> 101862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101861,"TargetID":101862,"Directional":true}]},{"ID":6947,"SourceStructureID":485,"TargetStructureID":101793,"Label":"485-101793 via Ribbon Synapse from 47561 -> 101795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47561,"TargetID":101795,"Directional":true}]},{"ID":6948,"SourceStructureID":485,"TargetStructureID":101796,"Label":"485-101796 via Ribbon Synapse from 47561 -> 101797","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47561,"TargetID":101797,"Directional":true}]},{"ID":6949,"SourceStructureID":485,"TargetStructureID":101798,"Label":"485-101798 via BC Conventional Synapse from 101800 -> 101799","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101800,"TargetID":101799,"Directional":true}]},{"ID":6950,"SourceStructureID":485,"TargetStructureID":101801,"Label":"485-101801 via Ribbon Synapse from 47564 -> 101806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47564,"TargetID":101806,"Directional":true}]},{"ID":6951,"SourceStructureID":485,"TargetStructureID":101815,"Label":"485-101815 via Ribbon Synapse from 101861 -> 101863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101861,"TargetID":101863,"Directional":true}]},{"ID":6952,"SourceStructureID":485,"TargetStructureID":101830,"Label":"485-101830 via BC Conventional Synapse from 101829 -> 101832","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101829,"TargetID":101832,"Directional":true}]},{"ID":6953,"SourceStructureID":485,"TargetStructureID":101833,"Label":"485-101833 via BC Conventional Synapse from 101831 -> 101834","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101831,"TargetID":101834,"Directional":true}]},{"ID":6954,"SourceStructureID":485,"TargetStructureID":101837,"Label":"485-101837 via BC Conventional Synapse from 101836 -> 101840","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101836,"TargetID":101840,"Directional":true}]},{"ID":6955,"SourceStructureID":485,"TargetStructureID":101864,"Label":"485-101864 via BC Conventional Synapse from 101856 -> 101865","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101856,"TargetID":101865,"Directional":true}]},{"ID":6956,"SourceStructureID":485,"TargetStructureID":101866,"Label":"485-101866 via Ribbon Synapse from 23146 -> 101867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23146,"TargetID":101867,"Directional":true}]},{"ID":6957,"SourceStructureID":485,"TargetStructureID":101868,"Label":"485-101868 via Ribbon Synapse from 23146 -> 101875","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23146,"TargetID":101875,"Directional":true}]},{"ID":6958,"SourceStructureID":485,"TargetStructureID":101903,"Label":"485-101903 via BC Conventional Synapse from 101905 -> 101904","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101905,"TargetID":101904,"Directional":true}]},{"ID":6959,"SourceStructureID":485,"TargetStructureID":101917,"Label":"485-101917 via Ribbon Synapse from 101916 -> 101918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101916,"TargetID":101918,"Directional":true}]},{"ID":6960,"SourceStructureID":485,"TargetStructureID":101923,"Label":"485-101923 via BC Conventional Synapse from 101922 -> 101924","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101922,"TargetID":101924,"Directional":true}]},{"ID":6961,"SourceStructureID":485,"TargetStructureID":101933,"Label":"485-101933 via BC Conventional Synapse from 101929 -> 101934","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101929,"TargetID":101934,"Directional":true}]},{"ID":6962,"SourceStructureID":485,"TargetStructureID":101961,"Label":"485-101961 via Ribbon Synapse from 101963 -> 101964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101963,"TargetID":101964,"Directional":true}]},{"ID":6963,"SourceStructureID":485,"TargetStructureID":101965,"Label":"485-101965 via Ribbon Synapse from 23149 -> 101968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23149,"TargetID":101968,"Directional":true}]},{"ID":6964,"SourceStructureID":485,"TargetStructureID":101966,"Label":"485-101966 via Ribbon Synapse from 23149 -> 101967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23149,"TargetID":101967,"Directional":true}]},{"ID":6965,"SourceStructureID":485,"TargetStructureID":102007,"Label":"485-102007 via Ribbon Synapse from 102006 -> 102010","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102006,"TargetID":102010,"Directional":true}]},{"ID":6966,"SourceStructureID":485,"TargetStructureID":102014,"Label":"485-102014 via Ribbon Synapse from 18310 -> 102019","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18310,"TargetID":102019,"Directional":true}]},{"ID":6967,"SourceStructureID":485,"TargetStructureID":102023,"Label":"485-102023 via Ribbon Synapse from 102022 -> 102031","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102022,"TargetID":102031,"Directional":true}]},{"ID":6968,"SourceStructureID":485,"TargetStructureID":102032,"Label":"485-102032 via Ribbon Synapse from 102022 -> 102033","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102022,"TargetID":102033,"Directional":true}]},{"ID":6969,"SourceStructureID":485,"TargetStructureID":102034,"Label":"485-102034 via Ribbon Synapse from 102022 -> 102035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102022,"TargetID":102035,"Directional":true}]},{"ID":6970,"SourceStructureID":485,"TargetStructureID":127846,"Label":"485-127846 via Ribbon Synapse from 100539 -> 127864, 101928 -> 101931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100539,"TargetID":127864,"Directional":true},{"SourceID":101928,"TargetID":101931,"Directional":true}]},{"ID":6971,"SourceStructureID":488,"TargetStructureID":422,"Label":"488-422 via Conventional from 87795 -> 16601, 87796 -> 87797","Type":"Conventional","Directional":true,"Links":[{"SourceID":87795,"TargetID":16601,"Directional":true},{"SourceID":87796,"TargetID":87797,"Directional":true}]},{"ID":6972,"SourceStructureID":488,"TargetStructureID":517,"Label":"488-517 via Conventional from 40938 -> 40939","Type":"Conventional","Directional":true,"Links":[{"SourceID":40938,"TargetID":40939,"Directional":true}]},{"ID":6973,"SourceStructureID":488,"TargetStructureID":519,"Label":"488-519 via Conventional from 32310 -> 9298","Type":"Conventional","Directional":true,"Links":[{"SourceID":32310,"TargetID":9298,"Directional":true}]},{"ID":6974,"SourceStructureID":488,"TargetStructureID":11250,"Label":"488-11250 via Conventional from 40940 -> 40941","Type":"Conventional","Directional":true,"Links":[{"SourceID":40940,"TargetID":40941,"Directional":true}]},{"ID":6975,"SourceStructureID":492,"TargetStructureID":408,"Label":"492-408 via Conventional from 35044 -> 35043","Type":"Conventional","Directional":true,"Links":[{"SourceID":35044,"TargetID":35043,"Directional":true}]},{"ID":6976,"SourceStructureID":492,"TargetStructureID":6155,"Label":"492-6155 via Conventional from 35062 -> 35063","Type":"Conventional","Directional":true,"Links":[{"SourceID":35062,"TargetID":35063,"Directional":true}]},{"ID":6977,"SourceStructureID":492,"TargetStructureID":7054,"Label":"492-7054 via Conventional from 34987 -> 10895","Type":"Conventional","Directional":true,"Links":[{"SourceID":34987,"TargetID":10895,"Directional":true}]},{"ID":6978,"SourceStructureID":492,"TargetStructureID":26079,"Label":"492-26079 via Conventional from 35038 -> 48669","Type":"Conventional","Directional":true,"Links":[{"SourceID":35038,"TargetID":48669,"Directional":true}]},{"ID":6979,"SourceStructureID":492,"TargetStructureID":35046,"Label":"492-35046 via Conventional from 61993 -> 61992","Type":"Conventional","Directional":true,"Links":[{"SourceID":61993,"TargetID":61992,"Directional":true}]},{"ID":6980,"SourceStructureID":514,"TargetStructureID":478,"Label":"514-478 via Conventional from 1171 -> 19455, 1176 -> 4634, 1189 -> 4629, 4820 -> 19441, 4826 -> 19440","Type":"Conventional","Directional":true,"Links":[{"SourceID":1171,"TargetID":19455,"Directional":true},{"SourceID":1176,"TargetID":4634,"Directional":true},{"SourceID":1189,"TargetID":4629,"Directional":true},{"SourceID":4820,"TargetID":19441,"Directional":true},{"SourceID":4826,"TargetID":19440,"Directional":true}]},{"ID":6981,"SourceStructureID":514,"TargetStructureID":597,"Label":"514-597 via Conventional from 43399 -> 43400","Type":"Conventional","Directional":true,"Links":[{"SourceID":43399,"TargetID":43400,"Directional":true}]},{"ID":6982,"SourceStructureID":514,"TargetStructureID":992,"Label":"514-992 via Conventional from 59642 -> 15120, 59643 -> 15121","Type":"Conventional","Directional":true,"Links":[{"SourceID":59642,"TargetID":15120,"Directional":true},{"SourceID":59643,"TargetID":15121,"Directional":true}]},{"ID":6983,"SourceStructureID":514,"TargetStructureID":4567,"Label":"514-4567 via Conventional from 6210 -> 23293, 15469 -> 15596, 15580 -> 15573, 15581 -> 15575, 15595 -> 15594","Type":"Conventional","Directional":true,"Links":[{"SourceID":6210,"TargetID":23293,"Directional":true},{"SourceID":15469,"TargetID":15596,"Directional":true},{"SourceID":15580,"TargetID":15573,"Directional":true},{"SourceID":15581,"TargetID":15575,"Directional":true},{"SourceID":15595,"TargetID":15594,"Directional":true}]},{"ID":6984,"SourceStructureID":514,"TargetStructureID":4568,"Label":"514-4568 via Conventional from 4572 -> 43402","Type":"Conventional","Directional":true,"Links":[{"SourceID":4572,"TargetID":43402,"Directional":true}]},{"ID":6985,"SourceStructureID":514,"TargetStructureID":5150,"Label":"514-5150 via Conventional from 1304 -> 5172, 4576 -> 5167","Type":"Conventional","Directional":true,"Links":[{"SourceID":1304,"TargetID":5172,"Directional":true},{"SourceID":4576,"TargetID":5167,"Directional":true}]},{"ID":6986,"SourceStructureID":514,"TargetStructureID":6850,"Label":"514-6850 via Conventional from 4823 -> 6854","Type":"Conventional","Directional":true,"Links":[{"SourceID":4823,"TargetID":6854,"Directional":true}]},{"ID":6987,"SourceStructureID":514,"TargetStructureID":8485,"Label":"514-8485 via Conventional from 1147 -> 15366, 1151 -> 15370, 1154 -> 15371, 11666 -> 11667","Type":"Conventional","Directional":true,"Links":[{"SourceID":1147,"TargetID":15366,"Directional":true},{"SourceID":1151,"TargetID":15370,"Directional":true},{"SourceID":1154,"TargetID":15371,"Directional":true},{"SourceID":11666,"TargetID":11667,"Directional":true}]},{"ID":6988,"SourceStructureID":514,"TargetStructureID":9504,"Label":"514-9504 via Conventional from 1370 -> 9505, 16649 -> 16648","Type":"Conventional","Directional":true,"Links":[{"SourceID":1370,"TargetID":9505,"Directional":true},{"SourceID":16649,"TargetID":16648,"Directional":true}]},{"ID":6989,"SourceStructureID":514,"TargetStructureID":15377,"Label":"514-15377 via Conventional from 4817 -> 15378","Type":"Conventional","Directional":true,"Links":[{"SourceID":4817,"TargetID":15378,"Directional":true}]},{"ID":6990,"SourceStructureID":514,"TargetStructureID":25392,"Label":"514-25392 via Adherens from 25396 -> 25395","Type":"Adherens","Directional":true,"Links":[{"SourceID":25396,"TargetID":25395,"Directional":true}]},{"ID":6991,"SourceStructureID":514,"TargetStructureID":28913,"Label":"514-28913 via Conventional from 28930 -> 28928","Type":"Conventional","Directional":true,"Links":[{"SourceID":28930,"TargetID":28928,"Directional":true}]},{"ID":6992,"SourceStructureID":514,"TargetStructureID":60440,"Label":"514-60440 via Conventional from 3221 -> 60444, 3222 -> 60441, 3222 -> 60443","Type":"Conventional","Directional":true,"Links":[{"SourceID":3221,"TargetID":60444,"Directional":true},{"SourceID":3222,"TargetID":60441,"Directional":true},{"SourceID":3222,"TargetID":60443,"Directional":true}]},{"ID":6993,"SourceStructureID":514,"TargetStructureID":83461,"Label":"514-83461 via Conventional from 4585 -> 83467","Type":"Conventional","Directional":true,"Links":[{"SourceID":4585,"TargetID":83467,"Directional":true}]},{"ID":6994,"SourceStructureID":516,"TargetStructureID":514,"Label":"516-514 via Ribbon Synapse from 10848 -> 10849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10848,"TargetID":10849,"Directional":true}]},{"ID":6995,"SourceStructureID":516,"TargetStructureID":3257,"Label":"516-3257 via Ribbon Synapse from 6575 -> 16198, 16196 -> 16197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6575,"TargetID":16198,"Directional":true},{"SourceID":16196,"TargetID":16197,"Directional":true}]},{"ID":6996,"SourceStructureID":516,"TargetStructureID":3679,"Label":"516-3679 via Ribbon Synapse from 6188 -> 6186, 6190 -> 6189, 6510 -> 8015, 18402 -> 39335, 39329 -> 39330, 66147 -> 66148, 66149 -> 8013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6188,"TargetID":6186,"Directional":true},{"SourceID":6190,"TargetID":6189,"Directional":true},{"SourceID":6510,"TargetID":8015,"Directional":true},{"SourceID":18402,"TargetID":39335,"Directional":true},{"SourceID":39329,"TargetID":39330,"Directional":true},{"SourceID":66147,"TargetID":66148,"Directional":true},{"SourceID":66149,"TargetID":8013,"Directional":true}]},{"ID":6997,"SourceStructureID":516,"TargetStructureID":4850,"Label":"516-4850 via Ribbon Synapse from 6510 -> 14208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6510,"TargetID":14208,"Directional":true}]},{"ID":6998,"SourceStructureID":516,"TargetStructureID":5331,"Label":"516-5331 via Ribbon Synapse from 6385 -> 39172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6385,"TargetID":39172,"Directional":true}]},{"ID":6999,"SourceStructureID":516,"TargetStructureID":5860,"Label":"516-5860 via Ribbon Synapse from 16347 -> 16348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16347,"TargetID":16348,"Directional":true}]},{"ID":7000,"SourceStructureID":516,"TargetStructureID":6169,"Label":"516-6169 via Ribbon Synapse from 3737 -> 16330, 6384 -> 16224, 6385 -> 16223, 6391 -> 16247, 6393 -> 29692, 6399 -> 18392, 6405 -> 39341, 10833 -> 10832, 10835 -> 10836, 16177 -> 16176, 16204 -> 16205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3737,"TargetID":16330,"Directional":true},{"SourceID":6384,"TargetID":16224,"Directional":true},{"SourceID":6385,"TargetID":16223,"Directional":true},{"SourceID":6391,"TargetID":16247,"Directional":true},{"SourceID":6393,"TargetID":29692,"Directional":true},{"SourceID":6399,"TargetID":18392,"Directional":true},{"SourceID":6405,"TargetID":39341,"Directional":true},{"SourceID":10833,"TargetID":10832,"Directional":true},{"SourceID":10835,"TargetID":10836,"Directional":true},{"SourceID":16177,"TargetID":16176,"Directional":true},{"SourceID":16204,"TargetID":16205,"Directional":true}]},{"ID":7001,"SourceStructureID":516,"TargetStructureID":9260,"Label":"516-9260 via Ribbon Synapse from 6398 -> 39673, 6399 -> 39674, 6401 -> 39672, 64612 -> 64613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6398,"TargetID":39673,"Directional":true},{"SourceID":6399,"TargetID":39674,"Directional":true},{"SourceID":6401,"TargetID":39672,"Directional":true},{"SourceID":64612,"TargetID":64613,"Directional":true}]},{"ID":7002,"SourceStructureID":516,"TargetStructureID":32046,"Label":"516-32046 via Ribbon Synapse from 6506 -> 32048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6506,"TargetID":32048,"Directional":true}]},{"ID":7003,"SourceStructureID":516,"TargetStructureID":32371,"Label":"516-32371 via Ribbon Synapse from 3737 -> 32375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3737,"TargetID":32375,"Directional":true}]},{"ID":7004,"SourceStructureID":516,"TargetStructureID":39168,"Label":"516-39168 via Ribbon Synapse from 6384 -> 39170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6384,"TargetID":39170,"Directional":true}]},{"ID":7005,"SourceStructureID":516,"TargetStructureID":39201,"Label":"516-39201 via Ribbon Synapse from 16204 -> 64582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16204,"TargetID":64582,"Directional":true}]},{"ID":7006,"SourceStructureID":516,"TargetStructureID":39208,"Label":"516-39208 via Ribbon Synapse from 6188 -> 39211, 6498 -> 39256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6188,"TargetID":39211,"Directional":true},{"SourceID":6498,"TargetID":39256,"Directional":true}]},{"ID":7007,"SourceStructureID":516,"TargetStructureID":39244,"Label":"516-39244 via Ribbon Synapse from 6507 -> 39247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6507,"TargetID":39247,"Directional":true}]},{"ID":7008,"SourceStructureID":516,"TargetStructureID":39324,"Label":"516-39324 via Ribbon Synapse from 39329 -> 39328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39329,"TargetID":39328,"Directional":true}]},{"ID":7009,"SourceStructureID":516,"TargetStructureID":39331,"Label":"516-39331 via Ribbon Synapse from 18402 -> 39336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18402,"TargetID":39336,"Directional":true}]},{"ID":7010,"SourceStructureID":516,"TargetStructureID":39342,"Label":"516-39342 via Ribbon Synapse from 6391 -> 114817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6391,"TargetID":114817,"Directional":true}]},{"ID":7011,"SourceStructureID":516,"TargetStructureID":39516,"Label":"516-39516 via Ribbon Synapse from 16177 -> 39519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16177,"TargetID":39519,"Directional":true}]},{"ID":7012,"SourceStructureID":516,"TargetStructureID":39560,"Label":"516-39560 via Ribbon Synapse from 39566 -> 39565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39566,"TargetID":39565,"Directional":true}]},{"ID":7013,"SourceStructureID":516,"TargetStructureID":39575,"Label":"516-39575 via Ribbon Synapse from 16347 -> 39579","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16347,"TargetID":39579,"Directional":true}]},{"ID":7014,"SourceStructureID":516,"TargetStructureID":39590,"Label":"516-39590 via Ribbon Synapse from 6393 -> 39593","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6393,"TargetID":39593,"Directional":true}]},{"ID":7015,"SourceStructureID":516,"TargetStructureID":39688,"Label":"516-39688 via Ribbon Synapse from 39692 -> 39691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39692,"TargetID":39691,"Directional":true}]},{"ID":7016,"SourceStructureID":516,"TargetStructureID":40856,"Label":"516-40856 via Ribbon Synapse from 123169 -> 123168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123169,"TargetID":123168,"Directional":true}]},{"ID":7017,"SourceStructureID":516,"TargetStructureID":40863,"Label":"516-40863 via Ribbon Synapse from 16349 -> 40864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16349,"TargetID":40864,"Directional":true}]},{"ID":7018,"SourceStructureID":517,"TargetStructureID":514,"Label":"517-514 via Ribbon Synapse from 10812 -> 10811, 16411 -> 1591, 16421 -> 3081, 16422 -> 3082, 16575 -> 1602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10812,"TargetID":10811,"Directional":true},{"SourceID":16411,"TargetID":1591,"Directional":true},{"SourceID":16421,"TargetID":3081,"Directional":true},{"SourceID":16422,"TargetID":3082,"Directional":true},{"SourceID":16575,"TargetID":1602,"Directional":true}]},{"ID":7019,"SourceStructureID":517,"TargetStructureID":591,"Label":"517-591 via Ribbon Synapse from 14947 -> 40892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14947,"TargetID":40892,"Directional":true}]},{"ID":7020,"SourceStructureID":517,"TargetStructureID":3679,"Label":"517-3679 via Ribbon Synapse from 14945 -> 3714, 14946 -> 3711, 14947 -> 14915, 16420 -> 16419, 16428 -> 16429, 16442 -> 16431, 16443 -> 16432, 19155 -> 19156, 19157 -> 19160, 19158 -> 19159, 19161 -> 92719, 19163 -> 33031, 19164 -> 35626, 41038 -> 3722, 66136 -> 66137","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14945,"TargetID":3714,"Directional":true},{"SourceID":14946,"TargetID":3711,"Directional":true},{"SourceID":14947,"TargetID":14915,"Directional":true},{"SourceID":16420,"TargetID":16419,"Directional":true},{"SourceID":16428,"TargetID":16429,"Directional":true},{"SourceID":16442,"TargetID":16431,"Directional":true},{"SourceID":16443,"TargetID":16432,"Directional":true},{"SourceID":19155,"TargetID":19156,"Directional":true},{"SourceID":19157,"TargetID":19160,"Directional":true},{"SourceID":19158,"TargetID":19159,"Directional":true},{"SourceID":19161,"TargetID":92719,"Directional":true},{"SourceID":19163,"TargetID":33031,"Directional":true},{"SourceID":19164,"TargetID":35626,"Directional":true},{"SourceID":41038,"TargetID":3722,"Directional":true},{"SourceID":66136,"TargetID":66137,"Directional":true}]},{"ID":7021,"SourceStructureID":517,"TargetStructureID":4850,"Label":"517-4850 via Ribbon Synapse from 11624 -> 24300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11624,"TargetID":24300,"Directional":true}]},{"ID":7022,"SourceStructureID":517,"TargetStructureID":4943,"Label":"517-4943 via Ribbon Synapse from 19157 -> 40987, 19158 -> 40979","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19157,"TargetID":40987,"Directional":true},{"SourceID":19158,"TargetID":40979,"Directional":true}]},{"ID":7023,"SourceStructureID":517,"TargetStructureID":5303,"Label":"517-5303 via Ribbon Synapse from 19164 -> 35625","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19164,"TargetID":35625,"Directional":true}]},{"ID":7024,"SourceStructureID":517,"TargetStructureID":5609,"Label":"517-5609 via Ribbon Synapse from 16422 -> 20659, 16428 -> 20661","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16422,"TargetID":20659,"Directional":true},{"SourceID":16428,"TargetID":20661,"Directional":true}]},{"ID":7025,"SourceStructureID":517,"TargetStructureID":6169,"Label":"517-6169 via Ribbon Synapse from 6903 -> 18158, 10814 -> 11623, 11624 -> 9460, 14165 -> 14166, 41034 -> 41035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6903,"TargetID":18158,"Directional":true},{"SourceID":10814,"TargetID":11623,"Directional":true},{"SourceID":11624,"TargetID":9460,"Directional":true},{"SourceID":14165,"TargetID":14166,"Directional":true},{"SourceID":41034,"TargetID":41035,"Directional":true}]},{"ID":7026,"SourceStructureID":517,"TargetStructureID":40896,"Label":"517-40896 via Ribbon Synapse from 41024 -> 41023","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41024,"TargetID":41023,"Directional":true}]},{"ID":7027,"SourceStructureID":517,"TargetStructureID":40919,"Label":"517-40919 via Ribbon Synapse from 19165 -> 40922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19165,"TargetID":40922,"Directional":true}]},{"ID":7028,"SourceStructureID":517,"TargetStructureID":40927,"Label":"517-40927 via Ribbon Synapse from 16421 -> 40930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16421,"TargetID":40930,"Directional":true}]},{"ID":7029,"SourceStructureID":517,"TargetStructureID":40934,"Label":"517-40934 via Ribbon Synapse from 14946 -> 40936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14946,"TargetID":40936,"Directional":true}]},{"ID":7030,"SourceStructureID":517,"TargetStructureID":40951,"Label":"517-40951 via Ribbon Synapse from 19163 -> 51427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19163,"TargetID":51427,"Directional":true}]},{"ID":7031,"SourceStructureID":517,"TargetStructureID":40956,"Label":"517-40956 via Ribbon Synapse from 19162 -> 40959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19162,"TargetID":40959,"Directional":true}]},{"ID":7032,"SourceStructureID":517,"TargetStructureID":40965,"Label":"517-40965 via Ribbon Synapse from 19155 -> 40968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19155,"TargetID":40968,"Directional":true}]},{"ID":7033,"SourceStructureID":517,"TargetStructureID":60523,"Label":"517-60523 via Ribbon Synapse from 19166 -> 123156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19166,"TargetID":123156,"Directional":true}]},{"ID":7034,"SourceStructureID":517,"TargetStructureID":89887,"Label":"517-89887 via Ribbon Synapse from 89893 -> 89894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89893,"TargetID":89894,"Directional":true}]},{"ID":7035,"SourceStructureID":518,"TargetStructureID":179,"Label":"518-179 via Ribbon Synapse from 3442 -> 25302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3442,"TargetID":25302,"Directional":true}]},{"ID":7036,"SourceStructureID":518,"TargetStructureID":476,"Label":"518-476 via Ribbon Synapse from 2303 -> 2300, 2323 -> 2331, 2325 -> 2333, 3354 -> 16029, 3371 -> 14713, 3380 -> 14741, 3387 -> 14999, 3399 -> 14998, 3413 -> 14992, 3419 -> 14996, 3439 -> 2442, 3442 -> 18012, 3445 -> 32137, 3457 -> 2414, 3459 -> 2416, 3475 -> 2448, 3487 -> 18015, 3503 -> 36695, 3519 -> 18013, 5783 -> 37191, 14722 -> 3305, 18014 -> 2441","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2303,"TargetID":2300,"Directional":true},{"SourceID":2323,"TargetID":2331,"Directional":true},{"SourceID":2325,"TargetID":2333,"Directional":true},{"SourceID":3354,"TargetID":16029,"Directional":true},{"SourceID":3371,"TargetID":14713,"Directional":true},{"SourceID":3380,"TargetID":14741,"Directional":true},{"SourceID":3387,"TargetID":14999,"Directional":true},{"SourceID":3399,"TargetID":14998,"Directional":true},{"SourceID":3413,"TargetID":14992,"Directional":true},{"SourceID":3419,"TargetID":14996,"Directional":true},{"SourceID":3439,"TargetID":2442,"Directional":true},{"SourceID":3442,"TargetID":18012,"Directional":true},{"SourceID":3445,"TargetID":32137,"Directional":true},{"SourceID":3457,"TargetID":2414,"Directional":true},{"SourceID":3459,"TargetID":2416,"Directional":true},{"SourceID":3475,"TargetID":2448,"Directional":true},{"SourceID":3487,"TargetID":18015,"Directional":true},{"SourceID":3503,"TargetID":36695,"Directional":true},{"SourceID":3519,"TargetID":18013,"Directional":true},{"SourceID":5783,"TargetID":37191,"Directional":true},{"SourceID":14722,"TargetID":3305,"Directional":true},{"SourceID":18014,"TargetID":2441,"Directional":true}]},{"ID":7037,"SourceStructureID":518,"TargetStructureID":514,"Label":"518-514 via Ribbon Synapse from 3303 -> 3296, 3471 -> 37188, 14717 -> 1554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3303,"TargetID":3296,"Directional":true},{"SourceID":3471,"TargetID":37188,"Directional":true},{"SourceID":14717,"TargetID":1554,"Directional":true}]},{"ID":7038,"SourceStructureID":518,"TargetStructureID":591,"Label":"518-591 via Ribbon Synapse from 3371 -> 36470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3371,"TargetID":36470,"Directional":true}]},{"ID":7039,"SourceStructureID":518,"TargetStructureID":4835,"Label":"518-4835 via Ribbon Synapse from 3390 -> 36743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3390,"TargetID":36743,"Directional":true}]},{"ID":7040,"SourceStructureID":518,"TargetStructureID":4941,"Label":"518-4941 via Ribbon Synapse from 3439 -> 118354","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3439,"TargetID":118354,"Directional":true}]},{"ID":7041,"SourceStructureID":518,"TargetStructureID":4942,"Label":"518-4942 via Ribbon Synapse from 3475 -> 118357","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3475,"TargetID":118357,"Directional":true}]},{"ID":7042,"SourceStructureID":518,"TargetStructureID":5006,"Label":"518-5006 via Ribbon Synapse from 3303 -> 6547, 3459 -> 18866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3303,"TargetID":6547,"Directional":true},{"SourceID":3459,"TargetID":18866,"Directional":true}]},{"ID":7043,"SourceStructureID":518,"TargetStructureID":5394,"Label":"518-5394 via Ribbon Synapse from 3380 -> 22813, 3387 -> 22814","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3380,"TargetID":22813,"Directional":true},{"SourceID":3387,"TargetID":22814,"Directional":true}]},{"ID":7044,"SourceStructureID":518,"TargetStructureID":9023,"Label":"518-9023 via Ribbon Synapse from 14722 -> 36672, 14723 -> 36673","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14722,"TargetID":36672,"Directional":true},{"SourceID":14723,"TargetID":36673,"Directional":true}]},{"ID":7045,"SourceStructureID":518,"TargetStructureID":13313,"Label":"518-13313 via Ribbon Synapse from 3449 -> 37185, 3486 -> 37190","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3449,"TargetID":37185,"Directional":true},{"SourceID":3486,"TargetID":37190,"Directional":true}]},{"ID":7046,"SourceStructureID":518,"TargetStructureID":32848,"Label":"518-32848 via Ribbon Synapse from 3354 -> 36414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3354,"TargetID":36414,"Directional":true}]},{"ID":7047,"SourceStructureID":518,"TargetStructureID":36276,"Label":"518-36276 via Ribbon Synapse from 2303 -> 36278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2303,"TargetID":36278,"Directional":true}]},{"ID":7048,"SourceStructureID":518,"TargetStructureID":36481,"Label":"518-36481 via Ribbon Synapse from 2325 -> 36495, 3425 -> 36494, 3427 -> 36493, 14711 -> 36484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2325,"TargetID":36495,"Directional":true},{"SourceID":3425,"TargetID":36494,"Directional":true},{"SourceID":3427,"TargetID":36493,"Directional":true},{"SourceID":14711,"TargetID":36484,"Directional":true}]},{"ID":7049,"SourceStructureID":518,"TargetStructureID":36501,"Label":"518-36501 via Ribbon Synapse from 3427 -> 36503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3427,"TargetID":36503,"Directional":true}]},{"ID":7050,"SourceStructureID":518,"TargetStructureID":36650,"Label":"518-36650 via Ribbon Synapse from 3435 -> 36653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3435,"TargetID":36653,"Directional":true}]},{"ID":7051,"SourceStructureID":518,"TargetStructureID":36661,"Label":"518-36661 via Ribbon Synapse from 3471 -> 42787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3471,"TargetID":42787,"Directional":true}]},{"ID":7052,"SourceStructureID":518,"TargetStructureID":36724,"Label":"518-36724 via Ribbon Synapse from 3390 -> 36732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3390,"TargetID":36732,"Directional":true}]},{"ID":7053,"SourceStructureID":518,"TargetStructureID":37183,"Label":"518-37183 via Ribbon Synapse from 5783 -> 118374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5783,"TargetID":118374,"Directional":true}]},{"ID":7054,"SourceStructureID":518,"TargetStructureID":49487,"Label":"518-49487 via Ribbon Synapse from 18014 -> 118358","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18014,"TargetID":118358,"Directional":true}]},{"ID":7055,"SourceStructureID":518,"TargetStructureID":87929,"Label":"518-87929 via Ribbon Synapse from 18867 -> 87932","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18867,"TargetID":87932,"Directional":true}]},{"ID":7056,"SourceStructureID":519,"TargetStructureID":179,"Label":"519-179 via Conventional from 9292 -> 9338","Type":"Conventional","Directional":true,"Links":[{"SourceID":9292,"TargetID":9338,"Directional":true}]},{"ID":7057,"SourceStructureID":519,"TargetStructureID":179,"Label":"519-179 via Ribbon Synapse from 9284 -> 25788, 9299 -> 9331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9284,"TargetID":25788,"Directional":true},{"SourceID":9299,"TargetID":9331,"Directional":true}]},{"ID":7058,"SourceStructureID":519,"TargetStructureID":476,"Label":"519-476 via Ribbon Synapse from 9237 -> 25373, 16518 -> 16519, 16520 -> 16521, 22616 -> 3345, 25435 -> 25434","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9237,"TargetID":25373,"Directional":true},{"SourceID":16518,"TargetID":16519,"Directional":true},{"SourceID":16520,"TargetID":16521,"Directional":true},{"SourceID":22616,"TargetID":3345,"Directional":true},{"SourceID":25435,"TargetID":25434,"Directional":true}]},{"ID":7059,"SourceStructureID":519,"TargetStructureID":488,"Label":"519-488 via Ribbon Synapse from 9297 -> 39850","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9297,"TargetID":39850,"Directional":true}]},{"ID":7060,"SourceStructureID":519,"TargetStructureID":514,"Label":"519-514 via Ribbon Synapse from 1376 -> 1383, 1464 -> 1466, 9237 -> 3334, 9241 -> 3335, 9243 -> 3579, 9250 -> 3340, 9278 -> 15081, 9282 -> 93914, 9299 -> 9302, 13807 -> 13806, 13810 -> 13809, 16154 -> 16155, 16156 -> 16157, 16158 -> 3596, 16520 -> 16541, 16531 -> 16522, 16533 -> 16534, 16537 -> 16536, 22589 -> 1448, 22617 -> 3282, 133246 -> 133245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1376,"TargetID":1383,"Directional":true},{"SourceID":1464,"TargetID":1466,"Directional":true},{"SourceID":9237,"TargetID":3334,"Directional":true},{"SourceID":9241,"TargetID":3335,"Directional":true},{"SourceID":9243,"TargetID":3579,"Directional":true},{"SourceID":9250,"TargetID":3340,"Directional":true},{"SourceID":9278,"TargetID":15081,"Directional":true},{"SourceID":9282,"TargetID":93914,"Directional":true},{"SourceID":9299,"TargetID":9302,"Directional":true},{"SourceID":13807,"TargetID":13806,"Directional":true},{"SourceID":13810,"TargetID":13809,"Directional":true},{"SourceID":16154,"TargetID":16155,"Directional":true},{"SourceID":16156,"TargetID":16157,"Directional":true},{"SourceID":16158,"TargetID":3596,"Directional":true},{"SourceID":16520,"TargetID":16541,"Directional":true},{"SourceID":16531,"TargetID":16522,"Directional":true},{"SourceID":16533,"TargetID":16534,"Directional":true},{"SourceID":16537,"TargetID":16536,"Directional":true},{"SourceID":22589,"TargetID":1448,"Directional":true},{"SourceID":22617,"TargetID":3282,"Directional":true},{"SourceID":133246,"TargetID":133245,"Directional":true}]},{"ID":7061,"SourceStructureID":519,"TargetStructureID":2610,"Label":"519-2610 via Ribbon Synapse from 1468 -> 66173, 9254 -> 9255, 66171 -> 66172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1468,"TargetID":66173,"Directional":true},{"SourceID":9254,"TargetID":9255,"Directional":true},{"SourceID":66171,"TargetID":66172,"Directional":true}]},{"ID":7062,"SourceStructureID":519,"TargetStructureID":5303,"Label":"519-5303 via Ribbon Synapse from 1468 -> 8744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1468,"TargetID":8744,"Directional":true}]},{"ID":7063,"SourceStructureID":519,"TargetStructureID":9260,"Label":"519-9260 via Postsynapse from 9259 -> 9272","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":9259,"TargetID":9272,"Directional":true}]},{"ID":7064,"SourceStructureID":519,"TargetStructureID":25327,"Label":"519-25327 via Ribbon Synapse from 16518 -> 25333, 25332 -> 25331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16518,"TargetID":25333,"Directional":true},{"SourceID":25332,"TargetID":25331,"Directional":true}]},{"ID":7065,"SourceStructureID":519,"TargetStructureID":25359,"Label":"519-25359 via Ribbon Synapse from 16533 -> 39871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16533,"TargetID":39871,"Directional":true}]},{"ID":7066,"SourceStructureID":519,"TargetStructureID":25385,"Label":"519-25385 via Ribbon Synapse from 9278 -> 25855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9278,"TargetID":25855,"Directional":true}]},{"ID":7067,"SourceStructureID":519,"TargetStructureID":25429,"Label":"519-25429 via Ribbon Synapse from 16531 -> 25430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16531,"TargetID":25430,"Directional":true}]},{"ID":7068,"SourceStructureID":519,"TargetStructureID":25440,"Label":"519-25440 via Ribbon Synapse from 9243 -> 25459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9243,"TargetID":25459,"Directional":true}]},{"ID":7069,"SourceStructureID":519,"TargetStructureID":25529,"Label":"519-25529 via Ribbon Synapse from 13807 -> 25530","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13807,"TargetID":25530,"Directional":true}]},{"ID":7070,"SourceStructureID":519,"TargetStructureID":25551,"Label":"519-25551 via Ribbon Synapse from 25470 -> 101275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25470,"TargetID":101275,"Directional":true}]},{"ID":7071,"SourceStructureID":519,"TargetStructureID":25561,"Label":"519-25561 via Ribbon Synapse from 25470 -> 25709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25470,"TargetID":25709,"Directional":true}]},{"ID":7072,"SourceStructureID":519,"TargetStructureID":25575,"Label":"519-25575 via Ribbon Synapse from 16156 -> 25634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16156,"TargetID":25634,"Directional":true}]},{"ID":7073,"SourceStructureID":521,"TargetStructureID":478,"Label":"521-478 via Conventional from 9640 -> 613","Type":"Conventional","Directional":true,"Links":[{"SourceID":9640,"TargetID":613,"Directional":true}]},{"ID":7074,"SourceStructureID":525,"TargetStructureID":9693,"Label":"525-9693 via Conventional from 6293 -> 9768, 6294 -> 9767","Type":"Conventional","Directional":true,"Links":[{"SourceID":6293,"TargetID":9768,"Directional":true},{"SourceID":6294,"TargetID":9767,"Directional":true}]},{"ID":7075,"SourceStructureID":525,"TargetStructureID":46741,"Label":"525-46741 via Conventional from 6254 -> 46748","Type":"Conventional","Directional":true,"Links":[{"SourceID":6254,"TargetID":46748,"Directional":true}]},{"ID":7076,"SourceStructureID":525,"TargetStructureID":92880,"Label":"525-92880 via Conventional from 132750 -> 132749","Type":"Conventional","Directional":true,"Links":[{"SourceID":132750,"TargetID":132749,"Directional":true}]},{"ID":7077,"SourceStructureID":545,"TargetStructureID":176,"Label":"545-176 via Conventional from 546 -> 5730","Type":"Conventional","Directional":true,"Links":[{"SourceID":546,"TargetID":5730,"Directional":true}]},{"ID":7078,"SourceStructureID":545,"TargetStructureID":5303,"Label":"545-5303 via Conventional from 24043 -> 24042","Type":"Conventional","Directional":true,"Links":[{"SourceID":24043,"TargetID":24042,"Directional":true}]},{"ID":7079,"SourceStructureID":573,"TargetStructureID":572,"Label":"573-572 via Conventional from 90169 -> 40238, 90171 -> 90172","Type":"Conventional","Directional":true,"Links":[{"SourceID":90169,"TargetID":40238,"Directional":true},{"SourceID":90171,"TargetID":90172,"Directional":true}]},{"ID":7080,"SourceStructureID":573,"TargetStructureID":6166,"Label":"573-6166 via Conventional from 22315 -> 22320","Type":"Conventional","Directional":true,"Links":[{"SourceID":22315,"TargetID":22320,"Directional":true}]},{"ID":7081,"SourceStructureID":579,"TargetStructureID":5345,"Label":"579-5345 via Ribbon Synapse from 18461 -> 18462, 18464 -> 18463, 88874 -> 88873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18461,"TargetID":18462,"Directional":true},{"SourceID":18464,"TargetID":18463,"Directional":true},{"SourceID":88874,"TargetID":88873,"Directional":true}]},{"ID":7082,"SourceStructureID":579,"TargetStructureID":32312,"Label":"579-32312 via Ribbon Synapse from 11041 -> 32315, 64543 -> 32315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11041,"TargetID":32315,"Directional":true},{"SourceID":64543,"TargetID":32315,"Directional":true}]},{"ID":7083,"SourceStructureID":579,"TargetStructureID":129144,"Label":"579-129144 via Ribbon Synapse from 18461 -> 129153, 18464 -> 129152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18461,"TargetID":129153,"Directional":true},{"SourceID":18464,"TargetID":129152,"Directional":true}]},{"ID":7084,"SourceStructureID":590,"TargetStructureID":2063,"Label":"590-2063 via Conventional from 81514 -> 81515","Type":"Conventional","Directional":true,"Links":[{"SourceID":81514,"TargetID":81515,"Directional":true}]},{"ID":7085,"SourceStructureID":591,"TargetStructureID":171,"Label":"591-171 via Conventional from 15442 -> 5725","Type":"Conventional","Directional":true,"Links":[{"SourceID":15442,"TargetID":5725,"Directional":true}]},{"ID":7086,"SourceStructureID":591,"TargetStructureID":476,"Label":"591-476 via Conventional from 14956 -> 2386, 16445 -> 16444","Type":"Conventional","Directional":true,"Links":[{"SourceID":14956,"TargetID":2386,"Directional":true},{"SourceID":16445,"TargetID":16444,"Directional":true}]},{"ID":7087,"SourceStructureID":591,"TargetStructureID":517,"Label":"591-517 via Conventional from 40888 -> 40889, 40890 -> 40891","Type":"Conventional","Directional":true,"Links":[{"SourceID":40888,"TargetID":40889,"Directional":true},{"SourceID":40890,"TargetID":40891,"Directional":true}]},{"ID":7088,"SourceStructureID":591,"TargetStructureID":518,"Label":"591-518 via Conventional from 36441 -> 3366, 36468 -> 3362","Type":"Conventional","Directional":true,"Links":[{"SourceID":36441,"TargetID":3366,"Directional":true},{"SourceID":36468,"TargetID":3362,"Directional":true}]},{"ID":7089,"SourceStructureID":591,"TargetStructureID":6561,"Label":"591-6561 via Conventional from 6550 -> 6563, 6550 -> 8345, 6552 -> 8301","Type":"Conventional","Directional":true,"Links":[{"SourceID":6550,"TargetID":6563,"Directional":true},{"SourceID":6550,"TargetID":8345,"Directional":true},{"SourceID":6552,"TargetID":8301,"Directional":true}]},{"ID":7090,"SourceStructureID":591,"TargetStructureID":8586,"Label":"591-8586 via Conventional from 10348 -> 10349, 10351 -> 8604","Type":"Conventional","Directional":true,"Links":[{"SourceID":10348,"TargetID":10349,"Directional":true},{"SourceID":10351,"TargetID":8604,"Directional":true}]},{"ID":7091,"SourceStructureID":591,"TargetStructureID":10412,"Label":"591-10412 via Conventional from 10379 -> 10420, 10423 -> 10422","Type":"Conventional","Directional":true,"Links":[{"SourceID":10379,"TargetID":10420,"Directional":true},{"SourceID":10423,"TargetID":10422,"Directional":true}]},{"ID":7092,"SourceStructureID":591,"TargetStructureID":15942,"Label":"591-15942 via Conventional from 10289 -> 15960, 15959 -> 15958","Type":"Conventional","Directional":true,"Links":[{"SourceID":10289,"TargetID":15960,"Directional":true},{"SourceID":15959,"TargetID":15958,"Directional":true}]},{"ID":7093,"SourceStructureID":591,"TargetStructureID":15979,"Label":"591-15979 via Conventional from 36445 -> 36446, 36447 -> 36448, 36452 -> 36453, 36454 -> 36455, 36459 -> 36460","Type":"Conventional","Directional":true,"Links":[{"SourceID":36445,"TargetID":36446,"Directional":true},{"SourceID":36447,"TargetID":36448,"Directional":true},{"SourceID":36452,"TargetID":36453,"Directional":true},{"SourceID":36454,"TargetID":36455,"Directional":true},{"SourceID":36459,"TargetID":36460,"Directional":true}]},{"ID":7094,"SourceStructureID":591,"TargetStructureID":89253,"Label":"591-89253 via Conventional from 10299 -> 89255, 89256 -> 89257","Type":"Conventional","Directional":true,"Links":[{"SourceID":10299,"TargetID":89255,"Directional":true},{"SourceID":89256,"TargetID":89257,"Directional":true}]},{"ID":7095,"SourceStructureID":592,"TargetStructureID":591,"Label":"592-591 via Conventional from 10084 -> 10083","Type":"Conventional","Directional":true,"Links":[{"SourceID":10084,"TargetID":10083,"Directional":true}]},{"ID":7096,"SourceStructureID":593,"TargetStructureID":162,"Label":"593-162 via Ribbon Synapse from 70257 -> 70258","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70257,"TargetID":70258,"Directional":true}]},{"ID":7097,"SourceStructureID":593,"TargetStructureID":596,"Label":"593-596 via Ribbon Synapse from 33858 -> 59136, 59100 -> 59136, 63047 -> 68611, 68610 -> 68611, 69360 -> 59136, 115704 -> 59136","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33858,"TargetID":59136,"Directional":true},{"SourceID":59100,"TargetID":59136,"Directional":true},{"SourceID":63047,"TargetID":68611,"Directional":true},{"SourceID":68610,"TargetID":68611,"Directional":true},{"SourceID":69360,"TargetID":59136,"Directional":true},{"SourceID":115704,"TargetID":59136,"Directional":true}]},{"ID":7098,"SourceStructureID":593,"TargetStructureID":4890,"Label":"593-4890 via BC Conventional Synapse from 68139 -> 68143","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68139,"TargetID":68143,"Directional":true}]},{"ID":7099,"SourceStructureID":593,"TargetStructureID":4890,"Label":"593-4890 via Ribbon Synapse from 7705 -> 6104, 36527 -> 6109, 49568 -> 6107, 49572 -> 64913, 130733 -> 6108","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7705,"TargetID":6104,"Directional":true},{"SourceID":36527,"TargetID":6109,"Directional":true},{"SourceID":49568,"TargetID":6107,"Directional":true},{"SourceID":49572,"TargetID":64913,"Directional":true},{"SourceID":130733,"TargetID":6108,"Directional":true}]},{"ID":7100,"SourceStructureID":593,"TargetStructureID":5117,"Label":"593-5117 via Ribbon Synapse from 15889 -> 61805, 28430 -> 66803, 65503 -> 65504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15889,"TargetID":61805,"Directional":true},{"SourceID":28430,"TargetID":66803,"Directional":true},{"SourceID":65503,"TargetID":65504,"Directional":true}]},{"ID":7101,"SourceStructureID":593,"TargetStructureID":5118,"Label":"593-5118 via Ribbon Synapse from 120216 -> 120223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120216,"TargetID":120223,"Directional":true}]},{"ID":7102,"SourceStructureID":593,"TargetStructureID":5618,"Label":"593-5618 via BC Conventional Synapse from 65959 -> 65961","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65959,"TargetID":65961,"Directional":true}]},{"ID":7103,"SourceStructureID":593,"TargetStructureID":5618,"Label":"593-5618 via Ribbon Synapse from 59627 -> 66508, 130874 -> 66541","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59627,"TargetID":66508,"Directional":true},{"SourceID":130874,"TargetID":66541,"Directional":true}]},{"ID":7104,"SourceStructureID":593,"TargetStructureID":6857,"Label":"593-6857 via Ribbon Synapse from 59625 -> 6886, 59626 -> 6886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59625,"TargetID":6886,"Directional":true},{"SourceID":59626,"TargetID":6886,"Directional":true}]},{"ID":7105,"SourceStructureID":593,"TargetStructureID":8033,"Label":"593-8033 via Ribbon Synapse from 130778 -> 68437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130778,"TargetID":68437,"Directional":true}]},{"ID":7106,"SourceStructureID":593,"TargetStructureID":8577,"Label":"593-8577 via Ribbon Synapse from 15899 -> 15886, 61957 -> 61970, 61957 -> 115685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15899,"TargetID":15886,"Directional":true},{"SourceID":61957,"TargetID":61970,"Directional":true},{"SourceID":61957,"TargetID":115685,"Directional":true}]},{"ID":7107,"SourceStructureID":593,"TargetStructureID":8579,"Label":"593-8579 via BC Conventional Synapse from 52498 -> 61875","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52498,"TargetID":61875,"Directional":true}]},{"ID":7108,"SourceStructureID":593,"TargetStructureID":8579,"Label":"593-8579 via Ribbon Synapse from 7717 -> 62868, 28429 -> 59113, 61957 -> 65260, 65858 -> 65862, 66480 -> 66482, 130775 -> 61874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7717,"TargetID":62868,"Directional":true},{"SourceID":28429,"TargetID":59113,"Directional":true},{"SourceID":61957,"TargetID":65260,"Directional":true},{"SourceID":65858,"TargetID":65862,"Directional":true},{"SourceID":66480,"TargetID":66482,"Directional":true},{"SourceID":130775,"TargetID":61874,"Directional":true}]},{"ID":7109,"SourceStructureID":593,"TargetStructureID":8580,"Label":"593-8580 via BC Conventional Synapse from 115726 -> 59653","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115726,"TargetID":59653,"Directional":true}]},{"ID":7110,"SourceStructureID":593,"TargetStructureID":8580,"Label":"593-8580 via Ribbon Synapse from 36524 -> 59648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36524,"TargetID":59648,"Directional":true}]},{"ID":7111,"SourceStructureID":593,"TargetStructureID":8588,"Label":"593-8588 via Ribbon Synapse from 7710 -> 32714, 7764 -> 32709, 52470 -> 59729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7710,"TargetID":32714,"Directional":true},{"SourceID":7764,"TargetID":32709,"Directional":true},{"SourceID":52470,"TargetID":59729,"Directional":true}]},{"ID":7112,"SourceStructureID":593,"TargetStructureID":12687,"Label":"593-12687 via BC Conventional Synapse from 130708 -> 130709","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130708,"TargetID":130709,"Directional":true}]},{"ID":7113,"SourceStructureID":593,"TargetStructureID":12804,"Label":"593-12804 via BC Conventional Synapse from 130995 -> 115670","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130995,"TargetID":115670,"Directional":true}]},{"ID":7114,"SourceStructureID":593,"TargetStructureID":12804,"Label":"593-12804 via Ribbon Synapse from 59700 -> 59702","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59700,"TargetID":59702,"Directional":true}]},{"ID":7115,"SourceStructureID":593,"TargetStructureID":15796,"Label":"593-15796 via Ribbon Synapse from 62886 -> 20135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62886,"TargetID":20135,"Directional":true}]},{"ID":7116,"SourceStructureID":593,"TargetStructureID":18282,"Label":"593-18282 via Unknown from 87215 -> 87216","Type":"Unknown","Directional":true,"Links":[{"SourceID":87215,"TargetID":87216,"Directional":true}]},{"ID":7117,"SourceStructureID":593,"TargetStructureID":20537,"Label":"593-20537 via Ribbon Synapse from 115678 -> 24138, 115679 -> 24138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115678,"TargetID":24138,"Directional":true},{"SourceID":115679,"TargetID":24138,"Directional":true}]},{"ID":7118,"SourceStructureID":593,"TargetStructureID":22974,"Label":"593-22974 via BC Conventional Synapse from 115690 -> 68546","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115690,"TargetID":68546,"Directional":true}]},{"ID":7119,"SourceStructureID":593,"TargetStructureID":22974,"Label":"593-22974 via Ribbon Synapse from 7713 -> 61822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7713,"TargetID":61822,"Directional":true}]},{"ID":7120,"SourceStructureID":593,"TargetStructureID":24148,"Label":"593-24148 via BC Conventional Synapse from 7842 -> 24149","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":7842,"TargetID":24149,"Directional":true}]},{"ID":7121,"SourceStructureID":593,"TargetStructureID":31024,"Label":"593-31024 via Ribbon Synapse from 28434 -> 63042","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28434,"TargetID":63042,"Directional":true}]},{"ID":7122,"SourceStructureID":593,"TargetStructureID":31161,"Label":"593-31161 via Ribbon Synapse from 7764 -> 67545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7764,"TargetID":67545,"Directional":true}]},{"ID":7123,"SourceStructureID":593,"TargetStructureID":32913,"Label":"593-32913 via Ribbon Synapse from 66440 -> 66442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66440,"TargetID":66442,"Directional":true}]},{"ID":7124,"SourceStructureID":593,"TargetStructureID":33092,"Label":"593-33092 via Ribbon Synapse from 66630 -> 66631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66630,"TargetID":66631,"Directional":true}]},{"ID":7125,"SourceStructureID":593,"TargetStructureID":36516,"Label":"593-36516 via Ribbon Synapse from 36597 -> 36595, 130712 -> 135146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36597,"TargetID":36595,"Directional":true},{"SourceID":130712,"TargetID":135146,"Directional":true}]},{"ID":7126,"SourceStructureID":593,"TargetStructureID":39973,"Label":"593-39973 via BC Conventional Synapse from 115688 -> 115687","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115688,"TargetID":115687,"Directional":true}]},{"ID":7127,"SourceStructureID":593,"TargetStructureID":45574,"Label":"593-45574 via Ribbon Synapse from 67717 -> 67842","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67717,"TargetID":67842,"Directional":true}]},{"ID":7128,"SourceStructureID":593,"TargetStructureID":47104,"Label":"593-47104 via Ribbon Synapse from 50442 -> 87205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50442,"TargetID":87205,"Directional":true}]},{"ID":7129,"SourceStructureID":593,"TargetStructureID":49489,"Label":"593-49489 via Ribbon Synapse from 49598 -> 49597","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49598,"TargetID":49597,"Directional":true}]},{"ID":7130,"SourceStructureID":593,"TargetStructureID":54078,"Label":"593-54078 via Ribbon Synapse from 53816 -> 67801, 66405 -> 66409, 67717 -> 67844","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53816,"TargetID":67801,"Directional":true},{"SourceID":66405,"TargetID":66409,"Directional":true},{"SourceID":67717,"TargetID":67844,"Directional":true}]},{"ID":7131,"SourceStructureID":593,"TargetStructureID":54744,"Label":"593-54744 via Ribbon Synapse from 28394 -> 130764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28394,"TargetID":130764,"Directional":true}]},{"ID":7132,"SourceStructureID":593,"TargetStructureID":58696,"Label":"593-58696 via Ribbon Synapse from 59619 -> 66705, 63963 -> 86962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59619,"TargetID":66705,"Directional":true},{"SourceID":63963,"TargetID":86962,"Directional":true}]},{"ID":7133,"SourceStructureID":593,"TargetStructureID":59121,"Label":"593-59121 via Ribbon Synapse from 33859 -> 59122, 59095 -> 59122","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33859,"TargetID":59122,"Directional":true},{"SourceID":59095,"TargetID":59122,"Directional":true}]},{"ID":7134,"SourceStructureID":593,"TargetStructureID":59137,"Label":"593-59137 via BC Conventional Synapse from 59104 -> 59138","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59104,"TargetID":59138,"Directional":true}]},{"ID":7135,"SourceStructureID":593,"TargetStructureID":59139,"Label":"593-59139 via Ribbon Synapse from 7699 -> 59140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7699,"TargetID":59140,"Directional":true}]},{"ID":7136,"SourceStructureID":593,"TargetStructureID":59145,"Label":"593-59145 via BC Conventional Synapse from 59144 -> 85026","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59144,"TargetID":85026,"Directional":true}]},{"ID":7137,"SourceStructureID":593,"TargetStructureID":59333,"Label":"593-59333 via Ribbon Synapse from 7701 -> 59336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7701,"TargetID":59336,"Directional":true}]},{"ID":7138,"SourceStructureID":593,"TargetStructureID":59523,"Label":"593-59523 via BC Conventional Synapse from 59529 -> 59526","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59529,"TargetID":59526,"Directional":true}]},{"ID":7139,"SourceStructureID":593,"TargetStructureID":59524,"Label":"593-59524 via BC Conventional Synapse from 59530 -> 59525","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59530,"TargetID":59525,"Directional":true}]},{"ID":7140,"SourceStructureID":593,"TargetStructureID":59531,"Label":"593-59531 via BC Conventional Synapse from 59530 -> 59532","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59530,"TargetID":59532,"Directional":true}]},{"ID":7141,"SourceStructureID":593,"TargetStructureID":59548,"Label":"593-59548 via Ribbon Synapse from 7704 -> 59549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7704,"TargetID":59549,"Directional":true}]},{"ID":7142,"SourceStructureID":593,"TargetStructureID":59589,"Label":"593-59589 via BC Conventional Synapse from 59590 -> 59591","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59590,"TargetID":59591,"Directional":true}]},{"ID":7143,"SourceStructureID":593,"TargetStructureID":59696,"Label":"593-59696 via Ribbon Synapse from 59695 -> 59697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59695,"TargetID":59697,"Directional":true}]},{"ID":7144,"SourceStructureID":593,"TargetStructureID":61773,"Label":"593-61773 via Ribbon Synapse from 7705 -> 130951","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7705,"TargetID":130951,"Directional":true}]},{"ID":7145,"SourceStructureID":593,"TargetStructureID":61775,"Label":"593-61775 via Ribbon Synapse from 7810 -> 61776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7810,"TargetID":61776,"Directional":true}]},{"ID":7146,"SourceStructureID":593,"TargetStructureID":61779,"Label":"593-61779 via Ribbon Synapse from 7816 -> 61780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7816,"TargetID":61780,"Directional":true}]},{"ID":7147,"SourceStructureID":593,"TargetStructureID":61785,"Label":"593-61785 via Ribbon Synapse from 7819 -> 61786","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7819,"TargetID":61786,"Directional":true}]},{"ID":7148,"SourceStructureID":593,"TargetStructureID":61797,"Label":"593-61797 via Ribbon Synapse from 15891 -> 61877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15891,"TargetID":61877,"Directional":true}]},{"ID":7149,"SourceStructureID":593,"TargetStructureID":61799,"Label":"593-61799 via Ribbon Synapse from 15889 -> 61803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15889,"TargetID":61803,"Directional":true}]},{"ID":7150,"SourceStructureID":593,"TargetStructureID":61811,"Label":"593-61811 via Ribbon Synapse from 28394 -> 61812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28394,"TargetID":61812,"Directional":true}]},{"ID":7151,"SourceStructureID":593,"TargetStructureID":61813,"Label":"593-61813 via Ribbon Synapse from 7713 -> 61821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7713,"TargetID":61821,"Directional":true}]},{"ID":7152,"SourceStructureID":593,"TargetStructureID":61817,"Label":"593-61817 via Ribbon Synapse from 7711 -> 61825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7711,"TargetID":61825,"Directional":true}]},{"ID":7153,"SourceStructureID":593,"TargetStructureID":61823,"Label":"593-61823 via Ribbon Synapse from 7713 -> 61824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7713,"TargetID":61824,"Directional":true}]},{"ID":7154,"SourceStructureID":593,"TargetStructureID":61836,"Label":"593-61836 via BC Conventional Synapse from 115743 -> 115742","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115743,"TargetID":115742,"Directional":true}]},{"ID":7155,"SourceStructureID":593,"TargetStructureID":61836,"Label":"593-61836 via Ribbon Synapse from 7722 -> 67513, 53822 -> 68113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7722,"TargetID":67513,"Directional":true},{"SourceID":53822,"TargetID":68113,"Directional":true}]},{"ID":7156,"SourceStructureID":593,"TargetStructureID":61840,"Label":"593-61840 via BC Conventional Synapse from 61839 -> 61841","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61839,"TargetID":61841,"Directional":true}]},{"ID":7157,"SourceStructureID":593,"TargetStructureID":61842,"Label":"593-61842 via Ribbon Synapse from 28423 -> 61843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28423,"TargetID":61843,"Directional":true}]},{"ID":7158,"SourceStructureID":593,"TargetStructureID":61853,"Label":"593-61853 via Ribbon Synapse from 28418 -> 61855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28418,"TargetID":61855,"Directional":true}]},{"ID":7159,"SourceStructureID":593,"TargetStructureID":61857,"Label":"593-61857 via Ribbon Synapse from 28404 -> 130765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28404,"TargetID":130765,"Directional":true}]},{"ID":7160,"SourceStructureID":593,"TargetStructureID":61862,"Label":"593-61862 via BC Conventional Synapse from 65253 -> 65255","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65253,"TargetID":65255,"Directional":true}]},{"ID":7161,"SourceStructureID":593,"TargetStructureID":61864,"Label":"593-61864 via Ribbon Synapse from 28419 -> 61865, 65312 -> 65314, 66480 -> 66486, 130784 -> 65315, 130789 -> 65476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28419,"TargetID":61865,"Directional":true},{"SourceID":65312,"TargetID":65314,"Directional":true},{"SourceID":66480,"TargetID":66486,"Directional":true},{"SourceID":130784,"TargetID":65315,"Directional":true},{"SourceID":130789,"TargetID":65476,"Directional":true}]},{"ID":7162,"SourceStructureID":593,"TargetStructureID":61868,"Label":"593-61868 via Ribbon Synapse from 130775 -> 61872","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130775,"TargetID":61872,"Directional":true}]},{"ID":7163,"SourceStructureID":593,"TargetStructureID":61878,"Label":"593-61878 via Ribbon Synapse from 28392 -> 61879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28392,"TargetID":61879,"Directional":true}]},{"ID":7164,"SourceStructureID":593,"TargetStructureID":61880,"Label":"593-61880 via Ribbon Synapse from 28415 -> 61881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28415,"TargetID":61881,"Directional":true}]},{"ID":7165,"SourceStructureID":593,"TargetStructureID":61882,"Label":"593-61882 via BC Conventional Synapse from 82196 -> 82197","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":82196,"TargetID":82197,"Directional":true}]},{"ID":7166,"SourceStructureID":593,"TargetStructureID":61891,"Label":"593-61891 via BC Conventional Synapse from 61890 -> 61893","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61890,"TargetID":61893,"Directional":true}]},{"ID":7167,"SourceStructureID":593,"TargetStructureID":61897,"Label":"593-61897 via BC Conventional Synapse from 65256 -> 65257","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65256,"TargetID":65257,"Directional":true}]},{"ID":7168,"SourceStructureID":593,"TargetStructureID":61897,"Label":"593-61897 via Ribbon Synapse from 130776 -> 61899","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130776,"TargetID":61899,"Directional":true}]},{"ID":7169,"SourceStructureID":593,"TargetStructureID":61898,"Label":"593-61898 via Ribbon Synapse from 28396 -> 68398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28396,"TargetID":68398,"Directional":true}]},{"ID":7170,"SourceStructureID":593,"TargetStructureID":61914,"Label":"593-61914 via Adherens from 61915 -> 61916","Type":"Adherens","Directional":true,"Links":[{"SourceID":61915,"TargetID":61916,"Directional":true}]},{"ID":7171,"SourceStructureID":593,"TargetStructureID":61920,"Label":"593-61920 via Ribbon Synapse from 28419 -> 83361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28419,"TargetID":83361,"Directional":true}]},{"ID":7172,"SourceStructureID":593,"TargetStructureID":61923,"Label":"593-61923 via Ribbon Synapse from 28390 -> 61924, 115697 -> 61924","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28390,"TargetID":61924,"Directional":true},{"SourceID":115697,"TargetID":61924,"Directional":true}]},{"ID":7173,"SourceStructureID":593,"TargetStructureID":61933,"Label":"593-61933 via Ribbon Synapse from 50440 -> 68886, 68071 -> 68078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50440,"TargetID":68886,"Directional":true},{"SourceID":68071,"TargetID":68078,"Directional":true}]},{"ID":7174,"SourceStructureID":593,"TargetStructureID":61936,"Label":"593-61936 via Ribbon Synapse from 28406 -> 61937","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28406,"TargetID":61937,"Directional":true}]},{"ID":7175,"SourceStructureID":593,"TargetStructureID":61956,"Label":"593-61956 via Ribbon Synapse from 50447 -> 61958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50447,"TargetID":61958,"Directional":true}]},{"ID":7176,"SourceStructureID":593,"TargetStructureID":61960,"Label":"593-61960 via Ribbon Synapse from 50440 -> 61964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50440,"TargetID":61964,"Directional":true}]},{"ID":7177,"SourceStructureID":593,"TargetStructureID":61965,"Label":"593-61965 via BC Conventional Synapse from 68411 -> 68410","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68411,"TargetID":68410,"Directional":true}]},{"ID":7178,"SourceStructureID":593,"TargetStructureID":61982,"Label":"593-61982 via BC Conventional Synapse from 65292 -> 65293","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65292,"TargetID":65293,"Directional":true}]},{"ID":7179,"SourceStructureID":593,"TargetStructureID":64362,"Label":"593-64362 via Ribbon Synapse from 64367 -> 64366","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64367,"TargetID":64366,"Directional":true}]},{"ID":7180,"SourceStructureID":593,"TargetStructureID":64491,"Label":"593-64491 via Ribbon Synapse from 28421 -> 64494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28421,"TargetID":64494,"Directional":true}]},{"ID":7181,"SourceStructureID":593,"TargetStructureID":64492,"Label":"593-64492 via Ribbon Synapse from 28421 -> 64493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28421,"TargetID":64493,"Directional":true}]},{"ID":7182,"SourceStructureID":593,"TargetStructureID":65258,"Label":"593-65258 via Ribbon Synapse from 130776 -> 65259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130776,"TargetID":65259,"Directional":true}]},{"ID":7183,"SourceStructureID":593,"TargetStructureID":65267,"Label":"593-65267 via BC Conventional Synapse from 115749 -> 115748","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115749,"TargetID":115748,"Directional":true}]},{"ID":7184,"SourceStructureID":593,"TargetStructureID":65267,"Label":"593-65267 via Ribbon Synapse from 65264 -> 65268","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65264,"TargetID":65268,"Directional":true}]},{"ID":7185,"SourceStructureID":593,"TargetStructureID":65271,"Label":"593-65271 via Ribbon Synapse from 28404 -> 65272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28404,"TargetID":65272,"Directional":true}]},{"ID":7186,"SourceStructureID":593,"TargetStructureID":65276,"Label":"593-65276 via Ribbon Synapse from 65273 -> 65277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65273,"TargetID":65277,"Directional":true}]},{"ID":7187,"SourceStructureID":593,"TargetStructureID":65284,"Label":"593-65284 via Ribbon Synapse from 65414 -> 65285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65414,"TargetID":65285,"Directional":true}]},{"ID":7188,"SourceStructureID":593,"TargetStructureID":65303,"Label":"593-65303 via Ribbon Synapse from 65305 -> 65304","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65305,"TargetID":65304,"Directional":true}]},{"ID":7189,"SourceStructureID":593,"TargetStructureID":65324,"Label":"593-65324 via Ribbon Synapse from 63033 -> 65325","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63033,"TargetID":65325,"Directional":true}]},{"ID":7190,"SourceStructureID":593,"TargetStructureID":65349,"Label":"593-65349 via Ribbon Synapse from 65348 -> 65350","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65348,"TargetID":65350,"Directional":true}]},{"ID":7191,"SourceStructureID":593,"TargetStructureID":65351,"Label":"593-65351 via Ribbon Synapse from 67313 -> 67316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67313,"TargetID":67316,"Directional":true}]},{"ID":7192,"SourceStructureID":593,"TargetStructureID":65375,"Label":"593-65375 via Ribbon Synapse from 65387 -> 65386","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65387,"TargetID":65386,"Directional":true}]},{"ID":7193,"SourceStructureID":593,"TargetStructureID":65376,"Label":"593-65376 via Ribbon Synapse from 59683 -> 65857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59683,"TargetID":65857,"Directional":true}]},{"ID":7194,"SourceStructureID":593,"TargetStructureID":65388,"Label":"593-65388 via Ribbon Synapse from 65387 -> 65389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65387,"TargetID":65389,"Directional":true}]},{"ID":7195,"SourceStructureID":593,"TargetStructureID":65408,"Label":"593-65408 via BC Conventional Synapse from 115723 -> 115722","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115723,"TargetID":115722,"Directional":true}]},{"ID":7196,"SourceStructureID":593,"TargetStructureID":65411,"Label":"593-65411 via Ribbon Synapse from 130784 -> 81896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130784,"TargetID":81896,"Directional":true}]},{"ID":7197,"SourceStructureID":593,"TargetStructureID":65454,"Label":"593-65454 via Ribbon Synapse from 65453 -> 65455, 65529 -> 65531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65453,"TargetID":65455,"Directional":true},{"SourceID":65529,"TargetID":65531,"Directional":true}]},{"ID":7198,"SourceStructureID":593,"TargetStructureID":65477,"Label":"593-65477 via Ribbon Synapse from 66429 -> 66432, 130789 -> 65478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66429,"TargetID":66432,"Directional":true},{"SourceID":130789,"TargetID":65478,"Directional":true}]},{"ID":7199,"SourceStructureID":593,"TargetStructureID":65532,"Label":"593-65532 via Ribbon Synapse from 65529 -> 65533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65529,"TargetID":65533,"Directional":true}]},{"ID":7200,"SourceStructureID":593,"TargetStructureID":65536,"Label":"593-65536 via BC Conventional Synapse from 67087 -> 67088","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67087,"TargetID":67088,"Directional":true}]},{"ID":7201,"SourceStructureID":593,"TargetStructureID":65536,"Label":"593-65536 via Ribbon Synapse from 66839 -> 67066","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66839,"TargetID":67066,"Directional":true}]},{"ID":7202,"SourceStructureID":593,"TargetStructureID":65561,"Label":"593-65561 via Ribbon Synapse from 65560 -> 65562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65560,"TargetID":65562,"Directional":true}]},{"ID":7203,"SourceStructureID":593,"TargetStructureID":65579,"Label":"593-65579 via Ribbon Synapse from 115724 -> 130757","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115724,"TargetID":130757,"Directional":true}]},{"ID":7204,"SourceStructureID":593,"TargetStructureID":65623,"Label":"593-65623 via BC Conventional Synapse from 115778 -> 115779","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115778,"TargetID":115779,"Directional":true}]},{"ID":7205,"SourceStructureID":593,"TargetStructureID":65864,"Label":"593-65864 via BC Conventional Synapse from 65889 -> 65888","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65889,"TargetID":65888,"Directional":true}]},{"ID":7206,"SourceStructureID":593,"TargetStructureID":65864,"Label":"593-65864 via Ribbon Synapse from 7748 -> 65879, 65858 -> 65865","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7748,"TargetID":65879,"Directional":true},{"SourceID":65858,"TargetID":65865,"Directional":true}]},{"ID":7207,"SourceStructureID":593,"TargetStructureID":66028,"Label":"593-66028 via BC Conventional Synapse from 66027 -> 66029","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66027,"TargetID":66029,"Directional":true}]},{"ID":7208,"SourceStructureID":593,"TargetStructureID":66031,"Label":"593-66031 via BC Conventional Synapse from 66052 -> 66051","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66052,"TargetID":66051,"Directional":true}]},{"ID":7209,"SourceStructureID":593,"TargetStructureID":66073,"Label":"593-66073 via Ribbon Synapse from 28436 -> 68513, 65529 -> 66074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28436,"TargetID":68513,"Directional":true},{"SourceID":65529,"TargetID":66074,"Directional":true}]},{"ID":7210,"SourceStructureID":593,"TargetStructureID":66089,"Label":"593-66089 via Ribbon Synapse from 28439 -> 66091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28439,"TargetID":66091,"Directional":true}]},{"ID":7211,"SourceStructureID":593,"TargetStructureID":66100,"Label":"593-66100 via BC Conventional Synapse from 68529 -> 68530","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68529,"TargetID":68530,"Directional":true}]},{"ID":7212,"SourceStructureID":593,"TargetStructureID":66111,"Label":"593-66111 via Ribbon Synapse from 28443 -> 66112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28443,"TargetID":66112,"Directional":true}]},{"ID":7213,"SourceStructureID":593,"TargetStructureID":66114,"Label":"593-66114 via Ribbon Synapse from 7738 -> 66116","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7738,"TargetID":66116,"Directional":true}]},{"ID":7214,"SourceStructureID":593,"TargetStructureID":66283,"Label":"593-66283 via BC Conventional Synapse from 66282 -> 66284","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66282,"TargetID":66284,"Directional":true}]},{"ID":7215,"SourceStructureID":593,"TargetStructureID":66299,"Label":"593-66299 via BC Conventional Synapse from 66298 -> 66300","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66298,"TargetID":66300,"Directional":true}]},{"ID":7216,"SourceStructureID":593,"TargetStructureID":66303,"Label":"593-66303 via Ribbon Synapse from 59788 -> 66306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59788,"TargetID":66306,"Directional":true}]},{"ID":7217,"SourceStructureID":593,"TargetStructureID":66316,"Label":"593-66316 via BC Conventional Synapse from 66315 -> 66317, 66320 -> 66321","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66315,"TargetID":66317,"Directional":true},{"SourceID":66320,"TargetID":66321,"Directional":true}]},{"ID":7218,"SourceStructureID":593,"TargetStructureID":66323,"Label":"593-66323 via Ribbon Synapse from 66435 -> 130869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66435,"TargetID":130869,"Directional":true}]},{"ID":7219,"SourceStructureID":593,"TargetStructureID":66371,"Label":"593-66371 via BC Conventional Synapse from 66370 -> 66372","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66370,"TargetID":66372,"Directional":true}]},{"ID":7220,"SourceStructureID":593,"TargetStructureID":66401,"Label":"593-66401 via Ribbon Synapse from 7760 -> 66424, 66405 -> 66406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7760,"TargetID":66424,"Directional":true},{"SourceID":66405,"TargetID":66406,"Directional":true}]},{"ID":7221,"SourceStructureID":593,"TargetStructureID":66407,"Label":"593-66407 via Ribbon Synapse from 49570 -> 67242, 66405 -> 66408, 86279 -> 130988","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49570,"TargetID":67242,"Directional":true},{"SourceID":66405,"TargetID":66408,"Directional":true},{"SourceID":86279,"TargetID":130988,"Directional":true}]},{"ID":7222,"SourceStructureID":593,"TargetStructureID":66436,"Label":"593-66436 via Ribbon Synapse from 66435 -> 66437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66435,"TargetID":66437,"Directional":true}]},{"ID":7223,"SourceStructureID":593,"TargetStructureID":66443,"Label":"593-66443 via Ribbon Synapse from 66440 -> 66444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66440,"TargetID":66444,"Directional":true}]},{"ID":7224,"SourceStructureID":593,"TargetStructureID":66496,"Label":"593-66496 via Ribbon Synapse from 66435 -> 66497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66435,"TargetID":66497,"Directional":true}]},{"ID":7225,"SourceStructureID":593,"TargetStructureID":66498,"Label":"593-66498 via BC Conventional Synapse from 66501 -> 66502","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66501,"TargetID":66502,"Directional":true}]},{"ID":7226,"SourceStructureID":593,"TargetStructureID":66503,"Label":"593-66503 via Ribbon Synapse from 59627 -> 66506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59627,"TargetID":66506,"Directional":true}]},{"ID":7227,"SourceStructureID":593,"TargetStructureID":66516,"Label":"593-66516 via Ribbon Synapse from 59622 -> 66519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59622,"TargetID":66519,"Directional":true}]},{"ID":7228,"SourceStructureID":593,"TargetStructureID":66520,"Label":"593-66520 via Ribbon Synapse from 66522 -> 66521","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66522,"TargetID":66521,"Directional":true}]},{"ID":7229,"SourceStructureID":593,"TargetStructureID":66539,"Label":"593-66539 via Ribbon Synapse from 130874 -> 66540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130874,"TargetID":66540,"Directional":true}]},{"ID":7230,"SourceStructureID":593,"TargetStructureID":66634,"Label":"593-66634 via Ribbon Synapse from 59626 -> 66639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59626,"TargetID":66639,"Directional":true}]},{"ID":7231,"SourceStructureID":593,"TargetStructureID":66640,"Label":"593-66640 via BC Conventional Synapse from 66642 -> 66641","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66642,"TargetID":66641,"Directional":true}]},{"ID":7232,"SourceStructureID":593,"TargetStructureID":66682,"Label":"593-66682 via Ribbon Synapse from 59619 -> 66683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59619,"TargetID":66683,"Directional":true}]},{"ID":7233,"SourceStructureID":593,"TargetStructureID":66693,"Label":"593-66693 via Ribbon Synapse from 130751 -> 66694","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130751,"TargetID":66694,"Directional":true}]},{"ID":7234,"SourceStructureID":593,"TargetStructureID":66696,"Label":"593-66696 via Ribbon Synapse from 130751 -> 66697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130751,"TargetID":66697,"Directional":true}]},{"ID":7235,"SourceStructureID":593,"TargetStructureID":66702,"Label":"593-66702 via Ribbon Synapse from 59618 -> 66729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59618,"TargetID":66729,"Directional":true}]},{"ID":7236,"SourceStructureID":593,"TargetStructureID":66706,"Label":"593-66706 via Ribbon Synapse from 59619 -> 66707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59619,"TargetID":66707,"Directional":true}]},{"ID":7237,"SourceStructureID":593,"TargetStructureID":66731,"Label":"593-66731 via BC Conventional Synapse from 115750 -> 115751","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115750,"TargetID":115751,"Directional":true}]},{"ID":7238,"SourceStructureID":593,"TargetStructureID":66764,"Label":"593-66764 via BC Conventional Synapse from 66766 -> 66767","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66766,"TargetID":66767,"Directional":true}]},{"ID":7239,"SourceStructureID":593,"TargetStructureID":66768,"Label":"593-66768 via BC Conventional Synapse from 115718 -> 115717","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115718,"TargetID":115717,"Directional":true}]},{"ID":7240,"SourceStructureID":593,"TargetStructureID":66768,"Label":"593-66768 via Ribbon Synapse from 28436 -> 68428, 28439 -> 68432","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28436,"TargetID":68428,"Directional":true},{"SourceID":28439,"TargetID":68432,"Directional":true}]},{"ID":7241,"SourceStructureID":593,"TargetStructureID":66774,"Label":"593-66774 via BC Conventional Synapse from 66776 -> 66775, 66822 -> 66820","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66776,"TargetID":66775,"Directional":true},{"SourceID":66822,"TargetID":66820,"Directional":true}]},{"ID":7242,"SourceStructureID":593,"TargetStructureID":66777,"Label":"593-66777 via BC Conventional Synapse from 115703 -> 66778","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115703,"TargetID":66778,"Directional":true}]},{"ID":7243,"SourceStructureID":593,"TargetStructureID":66777,"Label":"593-66777 via Ribbon Synapse from 28431 -> 66878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28431,"TargetID":66878,"Directional":true}]},{"ID":7244,"SourceStructureID":593,"TargetStructureID":66782,"Label":"593-66782 via Ribbon Synapse from 28428 -> 66784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28428,"TargetID":66784,"Directional":true}]},{"ID":7245,"SourceStructureID":593,"TargetStructureID":66785,"Label":"593-66785 via Ribbon Synapse from 28428 -> 66786","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28428,"TargetID":66786,"Directional":true}]},{"ID":7246,"SourceStructureID":593,"TargetStructureID":66795,"Label":"593-66795 via Ribbon Synapse from 7768 -> 67568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7768,"TargetID":67568,"Directional":true}]},{"ID":7247,"SourceStructureID":593,"TargetStructureID":66804,"Label":"593-66804 via Ribbon Synapse from 28430 -> 66805","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28430,"TargetID":66805,"Directional":true}]},{"ID":7248,"SourceStructureID":593,"TargetStructureID":66809,"Label":"593-66809 via Ribbon Synapse from 64367 -> 66862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64367,"TargetID":66862,"Directional":true}]},{"ID":7249,"SourceStructureID":593,"TargetStructureID":66828,"Label":"593-66828 via Ribbon Synapse from 7752 -> 66829","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7752,"TargetID":66829,"Directional":true}]},{"ID":7250,"SourceStructureID":593,"TargetStructureID":66840,"Label":"593-66840 via Ribbon Synapse from 66839 -> 66841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66839,"TargetID":66841,"Directional":true}]},{"ID":7251,"SourceStructureID":593,"TargetStructureID":66843,"Label":"593-66843 via BC Conventional Synapse from 115686 -> 66845, 115762 -> 115761","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115686,"TargetID":66845,"Directional":true},{"SourceID":115762,"TargetID":115761,"Directional":true}]},{"ID":7252,"SourceStructureID":593,"TargetStructureID":66848,"Label":"593-66848 via Ribbon Synapse from 66846 -> 66849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66846,"TargetID":66849,"Directional":true}]},{"ID":7253,"SourceStructureID":593,"TargetStructureID":66879,"Label":"593-66879 via BC Conventional Synapse from 66881 -> 66880","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66881,"TargetID":66880,"Directional":true}]},{"ID":7254,"SourceStructureID":593,"TargetStructureID":66888,"Label":"593-66888 via Ribbon Synapse from 7759 -> 68224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7759,"TargetID":68224,"Directional":true}]},{"ID":7255,"SourceStructureID":593,"TargetStructureID":66933,"Label":"593-66933 via BC Conventional Synapse from 66932 -> 66934","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66932,"TargetID":66934,"Directional":true}]},{"ID":7256,"SourceStructureID":593,"TargetStructureID":66937,"Label":"593-66937 via Ribbon Synapse from 7720 -> 66938","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7720,"TargetID":66938,"Directional":true}]},{"ID":7257,"SourceStructureID":593,"TargetStructureID":66946,"Label":"593-66946 via Ribbon Synapse from 7719 -> 66947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7719,"TargetID":66947,"Directional":true}]},{"ID":7258,"SourceStructureID":593,"TargetStructureID":66952,"Label":"593-66952 via Ribbon Synapse from 7721 -> 67387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7721,"TargetID":67387,"Directional":true}]},{"ID":7259,"SourceStructureID":593,"TargetStructureID":66958,"Label":"593-66958 via BC Conventional Synapse from 49575 -> 67040, 69922 -> 69924","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":49575,"TargetID":67040,"Directional":true},{"SourceID":69922,"TargetID":69924,"Directional":true}]},{"ID":7260,"SourceStructureID":593,"TargetStructureID":66958,"Label":"593-66958 via Ribbon Synapse from 7736 -> 70028, 7768 -> 70026, 49572 -> 67044, 64367 -> 130781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7736,"TargetID":70028,"Directional":true},{"SourceID":7768,"TargetID":70026,"Directional":true},{"SourceID":49572,"TargetID":67044,"Directional":true},{"SourceID":64367,"TargetID":130781,"Directional":true}]},{"ID":7261,"SourceStructureID":593,"TargetStructureID":66983,"Label":"593-66983 via Ribbon Synapse from 7722 -> 66998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7722,"TargetID":66998,"Directional":true}]},{"ID":7262,"SourceStructureID":593,"TargetStructureID":67016,"Label":"593-67016 via Ribbon Synapse from 7832 -> 67018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7832,"TargetID":67018,"Directional":true}]},{"ID":7263,"SourceStructureID":593,"TargetStructureID":67019,"Label":"593-67019 via Ribbon Synapse from 7832 -> 67020","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7832,"TargetID":67020,"Directional":true}]},{"ID":7264,"SourceStructureID":593,"TargetStructureID":67042,"Label":"593-67042 via Ribbon Synapse from 130884 -> 67261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130884,"TargetID":67261,"Directional":true}]},{"ID":7265,"SourceStructureID":593,"TargetStructureID":67045,"Label":"593-67045 via Ribbon Synapse from 65503 -> 130790, 67211 -> 67217, 130960 -> 67677","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65503,"TargetID":130790,"Directional":true},{"SourceID":67211,"TargetID":67217,"Directional":true},{"SourceID":130960,"TargetID":67677,"Directional":true}]},{"ID":7266,"SourceStructureID":593,"TargetStructureID":67063,"Label":"593-67063 via Ribbon Synapse from 64367 -> 67064","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64367,"TargetID":67064,"Directional":true}]},{"ID":7267,"SourceStructureID":593,"TargetStructureID":67093,"Label":"593-67093 via BC Conventional Synapse from 67092 -> 67094","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67092,"TargetID":67094,"Directional":true}]},{"ID":7268,"SourceStructureID":593,"TargetStructureID":67095,"Label":"593-67095 via Ribbon Synapse from 28432 -> 67096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28432,"TargetID":67096,"Directional":true}]},{"ID":7269,"SourceStructureID":593,"TargetStructureID":67101,"Label":"593-67101 via Ribbon Synapse from 7810 -> 67103, 66621 -> 67102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7810,"TargetID":67103,"Directional":true},{"SourceID":66621,"TargetID":67102,"Directional":true}]},{"ID":7270,"SourceStructureID":593,"TargetStructureID":67109,"Label":"593-67109 via Ribbon Synapse from 67108 -> 67110","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67108,"TargetID":67110,"Directional":true}]},{"ID":7271,"SourceStructureID":593,"TargetStructureID":67112,"Label":"593-67112 via Ribbon Synapse from 62883 -> 67114","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62883,"TargetID":67114,"Directional":true}]},{"ID":7272,"SourceStructureID":593,"TargetStructureID":67119,"Label":"593-67119 via Ribbon Synapse from 66624 -> 67120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66624,"TargetID":67120,"Directional":true}]},{"ID":7273,"SourceStructureID":593,"TargetStructureID":67121,"Label":"593-67121 via Ribbon Synapse from 85529 -> 85530","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85529,"TargetID":85530,"Directional":true}]},{"ID":7274,"SourceStructureID":593,"TargetStructureID":67125,"Label":"593-67125 via BC Conventional Synapse from 67127 -> 67126","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67127,"TargetID":67126,"Directional":true}]},{"ID":7275,"SourceStructureID":593,"TargetStructureID":67128,"Label":"593-67128 via Ribbon Synapse from 66629 -> 67129","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66629,"TargetID":67129,"Directional":true}]},{"ID":7276,"SourceStructureID":593,"TargetStructureID":67130,"Label":"593-67130 via Ribbon Synapse from 66629 -> 67132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66629,"TargetID":67132,"Directional":true}]},{"ID":7277,"SourceStructureID":593,"TargetStructureID":67131,"Label":"593-67131 via Ribbon Synapse from 66629 -> 67133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66629,"TargetID":67133,"Directional":true}]},{"ID":7278,"SourceStructureID":593,"TargetStructureID":67135,"Label":"593-67135 via Ribbon Synapse from 66630 -> 67136","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66630,"TargetID":67136,"Directional":true}]},{"ID":7279,"SourceStructureID":593,"TargetStructureID":67137,"Label":"593-67137 via Ribbon Synapse from 66630 -> 67138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66630,"TargetID":67138,"Directional":true}]},{"ID":7280,"SourceStructureID":593,"TargetStructureID":67161,"Label":"593-67161 via Ribbon Synapse from 66652 -> 67164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66652,"TargetID":67164,"Directional":true}]},{"ID":7281,"SourceStructureID":593,"TargetStructureID":67187,"Label":"593-67187 via Ribbon Synapse from 62887 -> 67188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62887,"TargetID":67188,"Directional":true}]},{"ID":7282,"SourceStructureID":593,"TargetStructureID":67190,"Label":"593-67190 via Ribbon Synapse from 70257 -> 130933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70257,"TargetID":130933,"Directional":true}]},{"ID":7283,"SourceStructureID":593,"TargetStructureID":67208,"Label":"593-67208 via BC Conventional Synapse from 67210 -> 67209","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67210,"TargetID":67209,"Directional":true}]},{"ID":7284,"SourceStructureID":593,"TargetStructureID":67219,"Label":"593-67219 via Ribbon Synapse from 67211 -> 67220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67211,"TargetID":67220,"Directional":true}]},{"ID":7285,"SourceStructureID":593,"TargetStructureID":67221,"Label":"593-67221 via Ribbon Synapse from 67211 -> 67222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67211,"TargetID":67222,"Directional":true}]},{"ID":7286,"SourceStructureID":593,"TargetStructureID":67227,"Label":"593-67227 via Ribbon Synapse from 130983 -> 82754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130983,"TargetID":82754,"Directional":true}]},{"ID":7287,"SourceStructureID":593,"TargetStructureID":67246,"Label":"593-67246 via BC Conventional Synapse from 67248 -> 67247","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67248,"TargetID":67247,"Directional":true}]},{"ID":7288,"SourceStructureID":593,"TargetStructureID":67252,"Label":"593-67252 via Ribbon Synapse from 67251 -> 67253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67251,"TargetID":67253,"Directional":true}]},{"ID":7289,"SourceStructureID":593,"TargetStructureID":67254,"Label":"593-67254 via Ribbon Synapse from 49573 -> 67422","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49573,"TargetID":67422,"Directional":true}]},{"ID":7290,"SourceStructureID":593,"TargetStructureID":67258,"Label":"593-67258 via Ribbon Synapse from 7731 -> 68485, 130884 -> 67259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7731,"TargetID":68485,"Directional":true},{"SourceID":130884,"TargetID":67259,"Directional":true}]},{"ID":7291,"SourceStructureID":593,"TargetStructureID":67262,"Label":"593-67262 via BC Conventional Synapse from 130887 -> 130888","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130887,"TargetID":130888,"Directional":true}]},{"ID":7292,"SourceStructureID":593,"TargetStructureID":67262,"Label":"593-67262 via Ribbon Synapse from 49573 -> 67416, 130884 -> 67263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49573,"TargetID":67416,"Directional":true},{"SourceID":130884,"TargetID":67263,"Directional":true}]},{"ID":7293,"SourceStructureID":593,"TargetStructureID":67269,"Label":"593-67269 via Ribbon Synapse from 67272 -> 67273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67272,"TargetID":67273,"Directional":true}]},{"ID":7294,"SourceStructureID":593,"TargetStructureID":67291,"Label":"593-67291 via Ribbon Synapse from 68343 -> 68345, 68343 -> 130932","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68343,"TargetID":68345,"Directional":true},{"SourceID":68343,"TargetID":130932,"Directional":true}]},{"ID":7295,"SourceStructureID":593,"TargetStructureID":67307,"Label":"593-67307 via BC Conventional Synapse from 67312 -> 67311","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67312,"TargetID":67311,"Directional":true}]},{"ID":7296,"SourceStructureID":593,"TargetStructureID":67322,"Label":"593-67322 via Ribbon Synapse from 7748 -> 67363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7748,"TargetID":67363,"Directional":true}]},{"ID":7297,"SourceStructureID":593,"TargetStructureID":67331,"Label":"593-67331 via Ribbon Synapse from 130712 -> 67336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130712,"TargetID":67336,"Directional":true}]},{"ID":7298,"SourceStructureID":593,"TargetStructureID":67341,"Label":"593-67341 via Ribbon Synapse from 130712 -> 67342, 130989 -> 67391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130712,"TargetID":67342,"Directional":true},{"SourceID":130989,"TargetID":67391,"Directional":true}]},{"ID":7299,"SourceStructureID":593,"TargetStructureID":67352,"Label":"593-67352 via BC Conventional Synapse from 68208 -> 68209","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68208,"TargetID":68209,"Directional":true}]},{"ID":7300,"SourceStructureID":593,"TargetStructureID":67370,"Label":"593-67370 via Ribbon Synapse from 36597 -> 67371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36597,"TargetID":67371,"Directional":true}]},{"ID":7301,"SourceStructureID":593,"TargetStructureID":67375,"Label":"593-67375 via Ribbon Synapse from 7764 -> 67543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7764,"TargetID":67543,"Directional":true}]},{"ID":7302,"SourceStructureID":593,"TargetStructureID":67382,"Label":"593-67382 via Ribbon Synapse from 130989 -> 67384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130989,"TargetID":67384,"Directional":true}]},{"ID":7303,"SourceStructureID":593,"TargetStructureID":67401,"Label":"593-67401 via BC Conventional Synapse from 67399 -> 67402","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67399,"TargetID":67402,"Directional":true}]},{"ID":7304,"SourceStructureID":593,"TargetStructureID":67406,"Label":"593-67406 via BC Conventional Synapse from 67408 -> 67407","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67408,"TargetID":67407,"Directional":true}]},{"ID":7305,"SourceStructureID":593,"TargetStructureID":67425,"Label":"593-67425 via BC Conventional Synapse from 67431 -> 67428","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67431,"TargetID":67428,"Directional":true}]},{"ID":7306,"SourceStructureID":593,"TargetStructureID":67430,"Label":"593-67430 via Ribbon Synapse from 7719 -> 130953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7719,"TargetID":130953,"Directional":true}]},{"ID":7307,"SourceStructureID":593,"TargetStructureID":67455,"Label":"593-67455 via Ribbon Synapse from 85609 -> 67456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85609,"TargetID":67456,"Directional":true}]},{"ID":7308,"SourceStructureID":593,"TargetStructureID":67458,"Label":"593-67458 via Ribbon Synapse from 85609 -> 67459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85609,"TargetID":67459,"Directional":true}]},{"ID":7309,"SourceStructureID":593,"TargetStructureID":67466,"Label":"593-67466 via BC Conventional Synapse from 67465 -> 67467","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67465,"TargetID":67467,"Directional":true}]},{"ID":7310,"SourceStructureID":593,"TargetStructureID":67486,"Label":"593-67486 via BC Conventional Synapse from 67485 -> 67487","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67485,"TargetID":67487,"Directional":true}]},{"ID":7311,"SourceStructureID":593,"TargetStructureID":67494,"Label":"593-67494 via BC Conventional Synapse from 67496 -> 67495","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67496,"TargetID":67495,"Directional":true}]},{"ID":7312,"SourceStructureID":593,"TargetStructureID":67502,"Label":"593-67502 via Ribbon Synapse from 28408 -> 67503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28408,"TargetID":67503,"Directional":true}]},{"ID":7313,"SourceStructureID":593,"TargetStructureID":67506,"Label":"593-67506 via Ribbon Synapse from 7821 -> 67507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7821,"TargetID":67507,"Directional":true}]},{"ID":7314,"SourceStructureID":593,"TargetStructureID":67508,"Label":"593-67508 via Ribbon Synapse from 7815 -> 130974, 7821 -> 67509","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7815,"TargetID":130974,"Directional":true},{"SourceID":7821,"TargetID":67509,"Directional":true}]},{"ID":7315,"SourceStructureID":593,"TargetStructureID":67520,"Label":"593-67520 via Ribbon Synapse from 130917 -> 67534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130917,"TargetID":67534,"Directional":true}]},{"ID":7316,"SourceStructureID":593,"TargetStructureID":67531,"Label":"593-67531 via Ribbon Synapse from 130917 -> 67532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130917,"TargetID":67532,"Directional":true}]},{"ID":7317,"SourceStructureID":593,"TargetStructureID":67546,"Label":"593-67546 via BC Conventional Synapse from 7829 -> 67547","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":7829,"TargetID":67547,"Directional":true}]},{"ID":7318,"SourceStructureID":593,"TargetStructureID":67551,"Label":"593-67551 via BC Conventional Synapse from 7830 -> 67552","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":7830,"TargetID":67552,"Directional":true}]},{"ID":7319,"SourceStructureID":593,"TargetStructureID":67560,"Label":"593-67560 via BC Conventional Synapse from 67804 -> 67803","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67804,"TargetID":67803,"Directional":true}]},{"ID":7320,"SourceStructureID":593,"TargetStructureID":67575,"Label":"593-67575 via BC Conventional Synapse from 67578 -> 67577","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67578,"TargetID":67577,"Directional":true}]},{"ID":7321,"SourceStructureID":593,"TargetStructureID":67580,"Label":"593-67580 via Ribbon Synapse from 7835 -> 67582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7835,"TargetID":67582,"Directional":true}]},{"ID":7322,"SourceStructureID":593,"TargetStructureID":67585,"Label":"593-67585 via BC Conventional Synapse from 134750 -> 134751","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134750,"TargetID":134751,"Directional":true}]},{"ID":7323,"SourceStructureID":593,"TargetStructureID":67586,"Label":"593-67586 via Ribbon Synapse from 130977 -> 67587","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130977,"TargetID":67587,"Directional":true}]},{"ID":7324,"SourceStructureID":593,"TargetStructureID":67595,"Label":"593-67595 via Ribbon Synapse from 28447 -> 67631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28447,"TargetID":67631,"Directional":true}]},{"ID":7325,"SourceStructureID":593,"TargetStructureID":67663,"Label":"593-67663 via BC Conventional Synapse from 7807 -> 67664","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":7807,"TargetID":67664,"Directional":true}]},{"ID":7326,"SourceStructureID":593,"TargetStructureID":67686,"Label":"593-67686 via Ribbon Synapse from 7736 -> 67738, 7768 -> 67754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7736,"TargetID":67738,"Directional":true},{"SourceID":7768,"TargetID":67754,"Directional":true}]},{"ID":7327,"SourceStructureID":593,"TargetStructureID":67705,"Label":"593-67705 via BC Conventional Synapse from 82125 -> 82126","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":82125,"TargetID":82126,"Directional":true}]},{"ID":7328,"SourceStructureID":593,"TargetStructureID":67711,"Label":"593-67711 via Ribbon Synapse from 67717 -> 67718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67717,"TargetID":67718,"Directional":true}]},{"ID":7329,"SourceStructureID":593,"TargetStructureID":67729,"Label":"593-67729 via Ribbon Synapse from 130960 -> 67730","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130960,"TargetID":67730,"Directional":true}]},{"ID":7330,"SourceStructureID":593,"TargetStructureID":67731,"Label":"593-67731 via BC Conventional Synapse from 67733 -> 67732","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67733,"TargetID":67732,"Directional":true}]},{"ID":7331,"SourceStructureID":593,"TargetStructureID":67736,"Label":"593-67736 via Ribbon Synapse from 7736 -> 67737, 53817 -> 67747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7736,"TargetID":67737,"Directional":true},{"SourceID":53817,"TargetID":67747,"Directional":true}]},{"ID":7332,"SourceStructureID":593,"TargetStructureID":67756,"Label":"593-67756 via Ribbon Synapse from 78293 -> 78294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78293,"TargetID":78294,"Directional":true}]},{"ID":7333,"SourceStructureID":593,"TargetStructureID":67779,"Label":"593-67779 via BC Conventional Synapse from 67781 -> 67782","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67781,"TargetID":67782,"Directional":true}]},{"ID":7334,"SourceStructureID":593,"TargetStructureID":67779,"Label":"593-67779 via Ribbon Synapse from 53811 -> 67783","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53811,"TargetID":67783,"Directional":true}]},{"ID":7335,"SourceStructureID":593,"TargetStructureID":67784,"Label":"593-67784 via Ribbon Synapse from 130977 -> 67785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130977,"TargetID":67785,"Directional":true}]},{"ID":7336,"SourceStructureID":593,"TargetStructureID":67809,"Label":"593-67809 via Ribbon Synapse from 7831 -> 67811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7831,"TargetID":67811,"Directional":true}]},{"ID":7337,"SourceStructureID":593,"TargetStructureID":67812,"Label":"593-67812 via BC Conventional Synapse from 67814 -> 67813","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67814,"TargetID":67813,"Directional":true}]},{"ID":7338,"SourceStructureID":593,"TargetStructureID":67833,"Label":"593-67833 via Ribbon Synapse from 87237 -> 87239, 130990 -> 87239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87237,"TargetID":87239,"Directional":true},{"SourceID":130990,"TargetID":87239,"Directional":true}]},{"ID":7339,"SourceStructureID":593,"TargetStructureID":67839,"Label":"593-67839 via Ribbon Synapse from 28411 -> 67840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28411,"TargetID":67840,"Directional":true}]},{"ID":7340,"SourceStructureID":593,"TargetStructureID":67871,"Label":"593-67871 via Ribbon Synapse from 52488 -> 67872","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52488,"TargetID":67872,"Directional":true}]},{"ID":7341,"SourceStructureID":593,"TargetStructureID":67883,"Label":"593-67883 via Ribbon Synapse from 130982 -> 67911","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130982,"TargetID":67911,"Directional":true}]},{"ID":7342,"SourceStructureID":593,"TargetStructureID":67890,"Label":"593-67890 via Ribbon Synapse from 130982 -> 67908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130982,"TargetID":67908,"Directional":true}]},{"ID":7343,"SourceStructureID":593,"TargetStructureID":67892,"Label":"593-67892 via Ribbon Synapse from 28413 -> 67893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28413,"TargetID":67893,"Directional":true}]},{"ID":7344,"SourceStructureID":593,"TargetStructureID":67915,"Label":"593-67915 via Ribbon Synapse from 7836 -> 67916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7836,"TargetID":67916,"Directional":true}]},{"ID":7345,"SourceStructureID":593,"TargetStructureID":67918,"Label":"593-67918 via Ribbon Synapse from 7836 -> 67919, 49855 -> 67946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7836,"TargetID":67919,"Directional":true},{"SourceID":49855,"TargetID":67946,"Directional":true}]},{"ID":7346,"SourceStructureID":593,"TargetStructureID":67920,"Label":"593-67920 via Ribbon Synapse from 7836 -> 67921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7836,"TargetID":67921,"Directional":true}]},{"ID":7347,"SourceStructureID":593,"TargetStructureID":67932,"Label":"593-67932 via BC Conventional Synapse from 115738 -> 115739","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115738,"TargetID":115739,"Directional":true}]},{"ID":7348,"SourceStructureID":593,"TargetStructureID":67952,"Label":"593-67952 via BC Conventional Synapse from 68139 -> 82247","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68139,"TargetID":82247,"Directional":true}]},{"ID":7349,"SourceStructureID":593,"TargetStructureID":67952,"Label":"593-67952 via Ribbon Synapse from 7738 -> 67962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7738,"TargetID":67962,"Directional":true}]},{"ID":7350,"SourceStructureID":593,"TargetStructureID":67967,"Label":"593-67967 via BC Conventional Synapse from 7843 -> 67968","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":7843,"TargetID":67968,"Directional":true}]},{"ID":7351,"SourceStructureID":593,"TargetStructureID":67996,"Label":"593-67996 via BC Conventional Synapse from 87283 -> 67997","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87283,"TargetID":67997,"Directional":true}]},{"ID":7352,"SourceStructureID":593,"TargetStructureID":68003,"Label":"593-68003 via Ribbon Synapse from 52487 -> 68008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52487,"TargetID":68008,"Directional":true}]},{"ID":7353,"SourceStructureID":593,"TargetStructureID":68009,"Label":"593-68009 via Ribbon Synapse from 52451 -> 115707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52451,"TargetID":115707,"Directional":true}]},{"ID":7354,"SourceStructureID":593,"TargetStructureID":68014,"Label":"593-68014 via Ribbon Synapse from 52451 -> 68015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52451,"TargetID":68015,"Directional":true}]},{"ID":7355,"SourceStructureID":593,"TargetStructureID":68031,"Label":"593-68031 via Cistern Pre from 68627 -> 68628","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":68627,"TargetID":68628,"Directional":true}]},{"ID":7356,"SourceStructureID":593,"TargetStructureID":68040,"Label":"593-68040 via BC Conventional Synapse from 68054 -> 68055","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68054,"TargetID":68055,"Directional":true}]},{"ID":7357,"SourceStructureID":593,"TargetStructureID":68042,"Label":"593-68042 via Ribbon Synapse from 68029 -> 68043","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68029,"TargetID":68043,"Directional":true}]},{"ID":7358,"SourceStructureID":593,"TargetStructureID":68077,"Label":"593-68077 via BC Conventional Synapse from 68082 -> 68081","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68082,"TargetID":68081,"Directional":true}]},{"ID":7359,"SourceStructureID":593,"TargetStructureID":68093,"Label":"593-68093 via BC Conventional Synapse from 68123 -> 68122","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68123,"TargetID":68122,"Directional":true}]},{"ID":7360,"SourceStructureID":593,"TargetStructureID":68093,"Label":"593-68093 via Ribbon Synapse from 53816 -> 68094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53816,"TargetID":68094,"Directional":true}]},{"ID":7361,"SourceStructureID":593,"TargetStructureID":68140,"Label":"593-68140 via BC Conventional Synapse from 68139 -> 68141","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68139,"TargetID":68141,"Directional":true}]},{"ID":7362,"SourceStructureID":593,"TargetStructureID":68153,"Label":"593-68153 via Ribbon Synapse from 53817 -> 68154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53817,"TargetID":68154,"Directional":true}]},{"ID":7363,"SourceStructureID":593,"TargetStructureID":68202,"Label":"593-68202 via Ribbon Synapse from 53817 -> 72576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53817,"TargetID":72576,"Directional":true}]},{"ID":7364,"SourceStructureID":593,"TargetStructureID":68214,"Label":"593-68214 via BC Conventional Synapse from 68441 -> 68443","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68441,"TargetID":68443,"Directional":true}]},{"ID":7365,"SourceStructureID":593,"TargetStructureID":68214,"Label":"593-68214 via Ribbon Synapse from 7759 -> 68479","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7759,"TargetID":68479,"Directional":true}]},{"ID":7366,"SourceStructureID":593,"TargetStructureID":68238,"Label":"593-68238 via Ribbon Synapse from 130744 -> 68241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130744,"TargetID":68241,"Directional":true}]},{"ID":7367,"SourceStructureID":593,"TargetStructureID":68239,"Label":"593-68239 via BC Conventional Synapse from 87513 -> 87514","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87513,"TargetID":87514,"Directional":true}]},{"ID":7368,"SourceStructureID":593,"TargetStructureID":68239,"Label":"593-68239 via Ribbon Synapse from 130744 -> 68242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130744,"TargetID":68242,"Directional":true}]},{"ID":7369,"SourceStructureID":593,"TargetStructureID":68252,"Label":"593-68252 via Ribbon Synapse from 52470 -> 68629","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52470,"TargetID":68629,"Directional":true}]},{"ID":7370,"SourceStructureID":593,"TargetStructureID":68296,"Label":"593-68296 via Ribbon Synapse from 130742 -> 68297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130742,"TargetID":68297,"Directional":true}]},{"ID":7371,"SourceStructureID":593,"TargetStructureID":68300,"Label":"593-68300 via Ribbon Synapse from 130742 -> 68301","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130742,"TargetID":68301,"Directional":true}]},{"ID":7372,"SourceStructureID":593,"TargetStructureID":68312,"Label":"593-68312 via Ribbon Synapse from 68311 -> 68313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68311,"TargetID":68313,"Directional":true}]},{"ID":7373,"SourceStructureID":593,"TargetStructureID":68318,"Label":"593-68318 via Ribbon Synapse from 28434 -> 68415","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28434,"TargetID":68415,"Directional":true}]},{"ID":7374,"SourceStructureID":593,"TargetStructureID":68326,"Label":"593-68326 via BC Conventional Synapse from 68328 -> 68327","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68328,"TargetID":68327,"Directional":true}]},{"ID":7375,"SourceStructureID":593,"TargetStructureID":68399,"Label":"593-68399 via BC Conventional Synapse from 115698 -> 68400","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115698,"TargetID":68400,"Directional":true}]},{"ID":7376,"SourceStructureID":593,"TargetStructureID":68412,"Label":"593-68412 via Ribbon Synapse from 28434 -> 68413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28434,"TargetID":68413,"Directional":true}]},{"ID":7377,"SourceStructureID":593,"TargetStructureID":68433,"Label":"593-68433 via BC Conventional Synapse from 87220 -> 68434","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87220,"TargetID":68434,"Directional":true}]},{"ID":7378,"SourceStructureID":593,"TargetStructureID":68435,"Label":"593-68435 via Ribbon Synapse from 130778 -> 68436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130778,"TargetID":68436,"Directional":true}]},{"ID":7379,"SourceStructureID":593,"TargetStructureID":68453,"Label":"593-68453 via Ribbon Synapse from 130778 -> 68454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130778,"TargetID":68454,"Directional":true}]},{"ID":7380,"SourceStructureID":593,"TargetStructureID":68459,"Label":"593-68459 via Ribbon Synapse from 49882 -> 68460","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49882,"TargetID":68460,"Directional":true}]},{"ID":7381,"SourceStructureID":593,"TargetStructureID":68461,"Label":"593-68461 via Ribbon Synapse from 67265 -> 86544, 130889 -> 86544","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67265,"TargetID":86544,"Directional":true},{"SourceID":130889,"TargetID":86544,"Directional":true}]},{"ID":7382,"SourceStructureID":593,"TargetStructureID":68463,"Label":"593-68463 via Ribbon Synapse from 67279 -> 86564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67279,"TargetID":86564,"Directional":true}]},{"ID":7383,"SourceStructureID":593,"TargetStructureID":68480,"Label":"593-68480 via Ribbon Synapse from 63032 -> 84102, 130733 -> 84114","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63032,"TargetID":84102,"Directional":true},{"SourceID":130733,"TargetID":84114,"Directional":true}]},{"ID":7384,"SourceStructureID":593,"TargetStructureID":68486,"Label":"593-68486 via Ribbon Synapse from 130884 -> 79608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130884,"TargetID":79608,"Directional":true}]},{"ID":7385,"SourceStructureID":593,"TargetStructureID":68488,"Label":"593-68488 via Ribbon Synapse from 7735 -> 68491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7735,"TargetID":68491,"Directional":true}]},{"ID":7386,"SourceStructureID":593,"TargetStructureID":68501,"Label":"593-68501 via Ribbon Synapse from 7740 -> 68503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7740,"TargetID":68503,"Directional":true}]},{"ID":7387,"SourceStructureID":593,"TargetStructureID":68511,"Label":"593-68511 via Ribbon Synapse from 7727 -> 68512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7727,"TargetID":68512,"Directional":true}]},{"ID":7388,"SourceStructureID":593,"TargetStructureID":68527,"Label":"593-68527 via BC Conventional Synapse from 115693 -> 68528","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115693,"TargetID":68528,"Directional":true}]},{"ID":7389,"SourceStructureID":593,"TargetStructureID":68539,"Label":"593-68539 via Ribbon Synapse from 131104 -> 68540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131104,"TargetID":68540,"Directional":true}]},{"ID":7390,"SourceStructureID":593,"TargetStructureID":68543,"Label":"593-68543 via Ribbon Synapse from 131104 -> 68544","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131104,"TargetID":68544,"Directional":true}]},{"ID":7391,"SourceStructureID":593,"TargetStructureID":68548,"Label":"593-68548 via BC Conventional Synapse from 68547 -> 68549","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68547,"TargetID":68549,"Directional":true}]},{"ID":7392,"SourceStructureID":593,"TargetStructureID":68548,"Label":"593-68548 via Ribbon Synapse from 63040 -> 73568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63040,"TargetID":73568,"Directional":true}]},{"ID":7393,"SourceStructureID":593,"TargetStructureID":68613,"Label":"593-68613 via Ribbon Synapse from 115710 -> 115711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115710,"TargetID":115711,"Directional":true}]},{"ID":7394,"SourceStructureID":593,"TargetStructureID":68655,"Label":"593-68655 via Ribbon Synapse from 67553 -> 68657","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67553,"TargetID":68657,"Directional":true}]},{"ID":7395,"SourceStructureID":593,"TargetStructureID":68669,"Label":"593-68669 via Ribbon Synapse from 130713 -> 68685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130713,"TargetID":68685,"Directional":true}]},{"ID":7396,"SourceStructureID":593,"TargetStructureID":68678,"Label":"593-68678 via Ribbon Synapse from 130715 -> 68681","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130715,"TargetID":68681,"Directional":true}]},{"ID":7397,"SourceStructureID":593,"TargetStructureID":68679,"Label":"593-68679 via Ribbon Synapse from 130713 -> 130714, 130715 -> 130714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130713,"TargetID":130714,"Directional":true},{"SourceID":130715,"TargetID":130714,"Directional":true}]},{"ID":7398,"SourceStructureID":593,"TargetStructureID":68879,"Label":"593-68879 via Ribbon Synapse from 49568 -> 68880, 130983 -> 82764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49568,"TargetID":68880,"Directional":true},{"SourceID":130983,"TargetID":82764,"Directional":true}]},{"ID":7399,"SourceStructureID":593,"TargetStructureID":68988,"Label":"593-68988 via Ribbon Synapse from 52488 -> 68989","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52488,"TargetID":68989,"Directional":true}]},{"ID":7400,"SourceStructureID":593,"TargetStructureID":70040,"Label":"593-70040 via Ribbon Synapse from 7719 -> 70041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7719,"TargetID":70041,"Directional":true}]},{"ID":7401,"SourceStructureID":593,"TargetStructureID":71517,"Label":"593-71517 via Ribbon Synapse from 59625 -> 66676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59625,"TargetID":66676,"Directional":true}]},{"ID":7402,"SourceStructureID":593,"TargetStructureID":75573,"Label":"593-75573 via Ribbon Synapse from 62883 -> 78882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62883,"TargetID":78882,"Directional":true}]},{"ID":7403,"SourceStructureID":593,"TargetStructureID":79431,"Label":"593-79431 via BC Conventional Synapse from 115721 -> 115719","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115721,"TargetID":115719,"Directional":true}]},{"ID":7404,"SourceStructureID":593,"TargetStructureID":79433,"Label":"593-79433 via BC Conventional Synapse from 115721 -> 115720","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115721,"TargetID":115720,"Directional":true}]},{"ID":7405,"SourceStructureID":593,"TargetStructureID":79586,"Label":"593-79586 via Ribbon Synapse from 49882 -> 79594","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49882,"TargetID":79594,"Directional":true}]},{"ID":7406,"SourceStructureID":593,"TargetStructureID":79654,"Label":"593-79654 via Ribbon Synapse from 86287 -> 86295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86287,"TargetID":86295,"Directional":true}]},{"ID":7407,"SourceStructureID":593,"TargetStructureID":81894,"Label":"593-81894 via Ribbon Synapse from 130784 -> 81895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130784,"TargetID":81895,"Directional":true}]},{"ID":7408,"SourceStructureID":593,"TargetStructureID":82757,"Label":"593-82757 via BC Conventional Synapse from 130984 -> 82758","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130984,"TargetID":82758,"Directional":true}]},{"ID":7409,"SourceStructureID":593,"TargetStructureID":82757,"Label":"593-82757 via Ribbon Synapse from 130983 -> 82758","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130983,"TargetID":82758,"Directional":true}]},{"ID":7410,"SourceStructureID":593,"TargetStructureID":83443,"Label":"593-83443 via BC Conventional Synapse from 67199 -> 83444","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67199,"TargetID":83444,"Directional":true}]},{"ID":7411,"SourceStructureID":593,"TargetStructureID":83476,"Label":"593-83476 via Ribbon Synapse from 49598 -> 83477","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49598,"TargetID":83477,"Directional":true}]},{"ID":7412,"SourceStructureID":593,"TargetStructureID":84275,"Label":"593-84275 via Ribbon Synapse from 115724 -> 115725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115724,"TargetID":115725,"Directional":true}]},{"ID":7413,"SourceStructureID":593,"TargetStructureID":84613,"Label":"593-84613 via Ribbon Synapse from 7745 -> 84616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7745,"TargetID":84616,"Directional":true}]},{"ID":7414,"SourceStructureID":593,"TargetStructureID":85220,"Label":"593-85220 via BC Conventional Synapse from 115731 -> 115730","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115731,"TargetID":115730,"Directional":true}]},{"ID":7415,"SourceStructureID":593,"TargetStructureID":85490,"Label":"593-85490 via BC Conventional Synapse from 85494 -> 85492, 85495 -> 85493","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85494,"TargetID":85492,"Directional":true},{"SourceID":85495,"TargetID":85493,"Directional":true}]},{"ID":7416,"SourceStructureID":593,"TargetStructureID":85491,"Label":"593-85491 via Ribbon Synapse from 66620 -> 85497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66620,"TargetID":85497,"Directional":true}]},{"ID":7417,"SourceStructureID":593,"TargetStructureID":85496,"Label":"593-85496 via Ribbon Synapse from 66620 -> 85498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66620,"TargetID":85498,"Directional":true}]},{"ID":7418,"SourceStructureID":593,"TargetStructureID":85534,"Label":"593-85534 via BC Conventional Synapse from 85533 -> 85535","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85533,"TargetID":85535,"Directional":true}]},{"ID":7419,"SourceStructureID":593,"TargetStructureID":85549,"Label":"593-85549 via Ribbon Synapse from 62886 -> 85550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62886,"TargetID":85550,"Directional":true}]},{"ID":7420,"SourceStructureID":593,"TargetStructureID":85563,"Label":"593-85563 via Ribbon Synapse from 62887 -> 85564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62887,"TargetID":85564,"Directional":true}]},{"ID":7421,"SourceStructureID":593,"TargetStructureID":85595,"Label":"593-85595 via Ribbon Synapse from 66651 -> 85596, 85609 -> 130987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66651,"TargetID":85596,"Directional":true},{"SourceID":85609,"TargetID":130987,"Directional":true}]},{"ID":7422,"SourceStructureID":593,"TargetStructureID":86545,"Label":"593-86545 via Ribbon Synapse from 67265 -> 86553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67265,"TargetID":86553,"Directional":true}]},{"ID":7423,"SourceStructureID":593,"TargetStructureID":87200,"Label":"593-87200 via Ribbon Synapse from 50442 -> 87202","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50442,"TargetID":87202,"Directional":true}]},{"ID":7424,"SourceStructureID":593,"TargetStructureID":87201,"Label":"593-87201 via Ribbon Synapse from 50442 -> 87204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50442,"TargetID":87204,"Directional":true}]},{"ID":7425,"SourceStructureID":593,"TargetStructureID":87221,"Label":"593-87221 via BC Conventional Synapse from 87222 -> 87223","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87222,"TargetID":87223,"Directional":true}]},{"ID":7426,"SourceStructureID":593,"TargetStructureID":87238,"Label":"593-87238 via Ribbon Synapse from 87237 -> 87240, 130990 -> 87240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87237,"TargetID":87240,"Directional":true},{"SourceID":130990,"TargetID":87240,"Directional":true}]},{"ID":7427,"SourceStructureID":593,"TargetStructureID":87263,"Label":"593-87263 via Ribbon Synapse from 87262 -> 87264","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87262,"TargetID":87264,"Directional":true}]},{"ID":7428,"SourceStructureID":593,"TargetStructureID":87271,"Label":"593-87271 via Ribbon Synapse from 7838 -> 115695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7838,"TargetID":115695,"Directional":true}]},{"ID":7429,"SourceStructureID":593,"TargetStructureID":115701,"Label":"593-115701 via Ribbon Synapse from 28406 -> 115702","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28406,"TargetID":115702,"Directional":true}]},{"ID":7430,"SourceStructureID":593,"TargetStructureID":130710,"Label":"593-130710 via Ribbon Synapse from 115681 -> 130711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115681,"TargetID":130711,"Directional":true}]},{"ID":7431,"SourceStructureID":593,"TargetStructureID":130739,"Label":"593-130739 via Ribbon Synapse from 130738 -> 130740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130738,"TargetID":130740,"Directional":true}]},{"ID":7432,"SourceStructureID":593,"TargetStructureID":130755,"Label":"593-130755 via Ribbon Synapse from 120216 -> 130756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120216,"TargetID":130756,"Directional":true}]},{"ID":7433,"SourceStructureID":593,"TargetStructureID":130760,"Label":"593-130760 via Ribbon Synapse from 15899 -> 130761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15899,"TargetID":130761,"Directional":true}]},{"ID":7434,"SourceStructureID":593,"TargetStructureID":130762,"Label":"593-130762 via Ribbon Synapse from 15899 -> 130763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15899,"TargetID":130763,"Directional":true}]},{"ID":7435,"SourceStructureID":593,"TargetStructureID":130772,"Label":"593-130772 via Ribbon Synapse from 36527 -> 130773","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36527,"TargetID":130773,"Directional":true}]},{"ID":7436,"SourceStructureID":593,"TargetStructureID":130779,"Label":"593-130779 via Ribbon Synapse from 63963 -> 130780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63963,"TargetID":130780,"Directional":true}]},{"ID":7437,"SourceStructureID":593,"TargetStructureID":130885,"Label":"593-130885 via Ribbon Synapse from 130884 -> 130886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130884,"TargetID":130886,"Directional":true}]},{"ID":7438,"SourceStructureID":593,"TargetStructureID":130891,"Label":"593-130891 via Ribbon Synapse from 67279 -> 130892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67279,"TargetID":130892,"Directional":true}]},{"ID":7439,"SourceStructureID":593,"TargetStructureID":130913,"Label":"593-130913 via Ribbon Synapse from 67553 -> 130914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67553,"TargetID":130914,"Directional":true}]},{"ID":7440,"SourceStructureID":593,"TargetStructureID":130930,"Label":"593-130930 via Ribbon Synapse from 68071 -> 130931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68071,"TargetID":130931,"Directional":true}]},{"ID":7441,"SourceStructureID":593,"TargetStructureID":130964,"Label":"593-130964 via Ribbon Synapse from 7736 -> 130965","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7736,"TargetID":130965,"Directional":true}]},{"ID":7442,"SourceStructureID":593,"TargetStructureID":130975,"Label":"593-130975 via Ribbon Synapse from 7815 -> 130976","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7815,"TargetID":130976,"Directional":true}]},{"ID":7443,"SourceStructureID":595,"TargetStructureID":606,"Label":"595-606 via Ribbon Synapse from 47254 -> 47255, 53469 -> 53470, 53508 -> 53509, 53512 -> 53513, 53977 -> 53978","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47254,"TargetID":47255,"Directional":true},{"SourceID":53469,"TargetID":53470,"Directional":true},{"SourceID":53508,"TargetID":53509,"Directional":true},{"SourceID":53512,"TargetID":53513,"Directional":true},{"SourceID":53977,"TargetID":53978,"Directional":true}]},{"ID":7444,"SourceStructureID":595,"TargetStructureID":5423,"Label":"595-5423 via Ribbon Synapse from 92825 -> 92826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92825,"TargetID":92826,"Directional":true}]},{"ID":7445,"SourceStructureID":595,"TargetStructureID":5435,"Label":"595-5435 via Ribbon Synapse from 40656 -> 40546, 125078 -> 125080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40656,"TargetID":40546,"Directional":true},{"SourceID":125078,"TargetID":125080,"Directional":true}]},{"ID":7446,"SourceStructureID":595,"TargetStructureID":5436,"Label":"595-5436 via Ribbon Synapse from 91646 -> 23074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91646,"TargetID":23074,"Directional":true}]},{"ID":7447,"SourceStructureID":595,"TargetStructureID":5451,"Label":"595-5451 via Ribbon Synapse from 46655 -> 55160, 46659 -> 55163, 46661 -> 55159","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46655,"TargetID":55160,"Directional":true},{"SourceID":46659,"TargetID":55163,"Directional":true},{"SourceID":46661,"TargetID":55159,"Directional":true}]},{"ID":7448,"SourceStructureID":595,"TargetStructureID":5481,"Label":"595-5481 via Ribbon Synapse from 19557 -> 19555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19557,"TargetID":19555,"Directional":true}]},{"ID":7449,"SourceStructureID":595,"TargetStructureID":10565,"Label":"595-10565 via Ribbon Synapse from 135568 -> 135569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135568,"TargetID":135569,"Directional":true}]},{"ID":7450,"SourceStructureID":595,"TargetStructureID":15796,"Label":"595-15796 via Ribbon Synapse from 135688 -> 135690","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135688,"TargetID":135690,"Directional":true}]},{"ID":7451,"SourceStructureID":595,"TargetStructureID":34055,"Label":"595-34055 via Ribbon Synapse from 40648 -> 40649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40648,"TargetID":40649,"Directional":true}]},{"ID":7452,"SourceStructureID":595,"TargetStructureID":44346,"Label":"595-44346 via Ribbon Synapse from 44816 -> 44814, 125203 -> 135700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44816,"TargetID":44814,"Directional":true},{"SourceID":125203,"TargetID":135700,"Directional":true}]},{"ID":7453,"SourceStructureID":595,"TargetStructureID":54925,"Label":"595-54925 via Ribbon Synapse from 54940 -> 54939","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54940,"TargetID":54939,"Directional":true}]},{"ID":7454,"SourceStructureID":595,"TargetStructureID":74727,"Label":"595-74727 via Ribbon Synapse from 82480 -> 82481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82480,"TargetID":82481,"Directional":true}]},{"ID":7455,"SourceStructureID":595,"TargetStructureID":79259,"Label":"595-79259 via Ribbon Synapse from 46650 -> 135707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46650,"TargetID":135707,"Directional":true}]},{"ID":7456,"SourceStructureID":595,"TargetStructureID":88521,"Label":"595-88521 via BC Conventional Synapse from 92684 -> 92683","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92684,"TargetID":92683,"Directional":true}]},{"ID":7457,"SourceStructureID":595,"TargetStructureID":89039,"Label":"595-89039 via Ribbon Synapse from 46691 -> 89055","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46691,"TargetID":89055,"Directional":true}]},{"ID":7458,"SourceStructureID":595,"TargetStructureID":91132,"Label":"595-91132 via Ribbon Synapse from 92618 -> 92619","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92618,"TargetID":92619,"Directional":true}]},{"ID":7459,"SourceStructureID":595,"TargetStructureID":91232,"Label":"595-91232 via Ribbon Synapse from 92600 -> 92601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92600,"TargetID":92601,"Directional":true}]},{"ID":7460,"SourceStructureID":595,"TargetStructureID":91376,"Label":"595-91376 via Ribbon Synapse from 91276 -> 92704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91276,"TargetID":92704,"Directional":true}]},{"ID":7461,"SourceStructureID":595,"TargetStructureID":96270,"Label":"595-96270 via Ribbon Synapse from 46650 -> 135706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46650,"TargetID":135706,"Directional":true}]},{"ID":7462,"SourceStructureID":595,"TargetStructureID":126012,"Label":"595-126012 via Ribbon Synapse from 47206 -> 126015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47206,"TargetID":126015,"Directional":true}]},{"ID":7463,"SourceStructureID":598,"TargetStructureID":408,"Label":"598-408 via Conventional from 25881 -> 25880","Type":"Conventional","Directional":true,"Links":[{"SourceID":25881,"TargetID":25880,"Directional":true}]},{"ID":7464,"SourceStructureID":598,"TargetStructureID":485,"Label":"598-485 via Conventional from 38812 -> 38814","Type":"Conventional","Directional":true,"Links":[{"SourceID":38812,"TargetID":38814,"Directional":true}]},{"ID":7465,"SourceStructureID":598,"TargetStructureID":5396,"Label":"598-5396 via Conventional from 32401 -> 89481","Type":"Conventional","Directional":true,"Links":[{"SourceID":32401,"TargetID":89481,"Directional":true}]},{"ID":7466,"SourceStructureID":598,"TargetStructureID":5563,"Label":"598-5563 via Conventional from 32402 -> 32399","Type":"Conventional","Directional":true,"Links":[{"SourceID":32402,"TargetID":32399,"Directional":true}]},{"ID":7467,"SourceStructureID":598,"TargetStructureID":5650,"Label":"598-5650 via Conventional from 6323 -> 104312","Type":"Conventional","Directional":true,"Links":[{"SourceID":6323,"TargetID":104312,"Directional":true}]},{"ID":7468,"SourceStructureID":598,"TargetStructureID":6120,"Label":"598-6120 via Conventional from 6328 -> 110543","Type":"Conventional","Directional":true,"Links":[{"SourceID":6328,"TargetID":110543,"Directional":true}]},{"ID":7469,"SourceStructureID":598,"TargetStructureID":38810,"Label":"598-38810 via Conventional from 38806 -> 38811","Type":"Conventional","Directional":true,"Links":[{"SourceID":38806,"TargetID":38811,"Directional":true}]},{"ID":7470,"SourceStructureID":606,"TargetStructureID":7594,"Label":"606-7594 via Cistern Pre from 47615 -> 47616","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":47615,"TargetID":47616,"Directional":true}]},{"ID":7471,"SourceStructureID":606,"TargetStructureID":55517,"Label":"606-55517 via Cistern Pre from 52853 -> 55560","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":52853,"TargetID":55560,"Directional":true}]},{"ID":7472,"SourceStructureID":606,"TargetStructureID":89554,"Label":"606-89554 via Cistern Pre from 51540 -> 89555","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":51540,"TargetID":89555,"Directional":true}]},{"ID":7473,"SourceStructureID":611,"TargetStructureID":70205,"Label":"611-70205 via Ribbon Synapse from 70216 -> 70214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70216,"TargetID":70214,"Directional":true}]},{"ID":7474,"SourceStructureID":906,"TargetStructureID":307,"Label":"906-307 via Conventional from 15874 -> 15896, 15875 -> 15895, 15904 -> 15972, 15905 -> 16793","Type":"Conventional","Directional":true,"Links":[{"SourceID":15874,"TargetID":15896,"Directional":true},{"SourceID":15875,"TargetID":15895,"Directional":true},{"SourceID":15904,"TargetID":15972,"Directional":true},{"SourceID":15905,"TargetID":16793,"Directional":true}]},{"ID":7475,"SourceStructureID":906,"TargetStructureID":4570,"Label":"906-4570 via Conventional from 15194 -> 4751","Type":"Conventional","Directional":true,"Links":[{"SourceID":15194,"TargetID":4751,"Directional":true}]},{"ID":7476,"SourceStructureID":906,"TargetStructureID":5575,"Label":"906-5575 via Conventional from 15229 -> 22950","Type":"Conventional","Directional":true,"Links":[{"SourceID":15229,"TargetID":22950,"Directional":true}]},{"ID":7477,"SourceStructureID":906,"TargetStructureID":18693,"Label":"906-18693 via Conventional from 15912 -> 18822, 15913 -> 18727, 22957 -> 22958","Type":"Conventional","Directional":true,"Links":[{"SourceID":15912,"TargetID":18822,"Directional":true},{"SourceID":15913,"TargetID":18727,"Directional":true},{"SourceID":22957,"TargetID":22958,"Directional":true}]},{"ID":7478,"SourceStructureID":906,"TargetStructureID":25392,"Label":"906-25392 via Conventional from 15231 -> 25401","Type":"Conventional","Directional":true,"Links":[{"SourceID":15231,"TargetID":25401,"Directional":true}]},{"ID":7479,"SourceStructureID":906,"TargetStructureID":122467,"Label":"906-122467 via Conventional from 15172 -> 122468","Type":"Conventional","Directional":true,"Links":[{"SourceID":15172,"TargetID":122468,"Directional":true}]},{"ID":7480,"SourceStructureID":906,"TargetStructureID":122469,"Label":"906-122469 via Conventional from 15179 -> 122470","Type":"Conventional","Directional":true,"Links":[{"SourceID":15179,"TargetID":122470,"Directional":true}]},{"ID":7481,"SourceStructureID":907,"TargetStructureID":1724,"Label":"907-1724 via Cistern Pre from 47910 -> 47909","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":47910,"TargetID":47909,"Directional":true}]},{"ID":7482,"SourceStructureID":907,"TargetStructureID":5575,"Label":"907-5575 via Conventional from 64545 -> 64544","Type":"Conventional","Directional":true,"Links":[{"SourceID":64545,"TargetID":64544,"Directional":true}]},{"ID":7483,"SourceStructureID":909,"TargetStructureID":598,"Label":"909-598 via BC Conventional Synapse from 117796 -> 117797","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117796,"TargetID":117797,"Directional":true}]},{"ID":7484,"SourceStructureID":909,"TargetStructureID":598,"Label":"909-598 via Ribbon Synapse from 36055 -> 36056, 53772 -> 117258, 55601 -> 117795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36055,"TargetID":36056,"Directional":true},{"SourceID":53772,"TargetID":117258,"Directional":true},{"SourceID":55601,"TargetID":117795,"Directional":true}]},{"ID":7485,"SourceStructureID":909,"TargetStructureID":4890,"Label":"909-4890 via Ribbon Synapse from 64915 -> 64914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64915,"TargetID":64914,"Directional":true}]},{"ID":7486,"SourceStructureID":909,"TargetStructureID":5282,"Label":"909-5282 via Ribbon Synapse from 113682 -> 121606","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113682,"TargetID":121606,"Directional":true}]},{"ID":7487,"SourceStructureID":909,"TargetStructureID":5377,"Label":"909-5377 via Ribbon Synapse from 87039 -> 87030, 87040 -> 87042","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87039,"TargetID":87030,"Directional":true},{"SourceID":87040,"TargetID":87042,"Directional":true}]},{"ID":7488,"SourceStructureID":909,"TargetStructureID":5405,"Label":"909-5405 via BC Conventional Synapse from 87041 -> 11177, 120200 -> 120201","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87041,"TargetID":11177,"Directional":true},{"SourceID":120200,"TargetID":120201,"Directional":true}]},{"ID":7489,"SourceStructureID":909,"TargetStructureID":5405,"Label":"909-5405 via Ribbon Synapse from 53735 -> 117427, 113675 -> 113676, 113679 -> 131025, 117275 -> 117282, 117425 -> 117426, 118645 -> 11175, 120109 -> 11181, 130018 -> 130017","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53735,"TargetID":117427,"Directional":true},{"SourceID":113675,"TargetID":113676,"Directional":true},{"SourceID":113679,"TargetID":131025,"Directional":true},{"SourceID":117275,"TargetID":117282,"Directional":true},{"SourceID":117425,"TargetID":117426,"Directional":true},{"SourceID":118645,"TargetID":11175,"Directional":true},{"SourceID":120109,"TargetID":11181,"Directional":true},{"SourceID":130018,"TargetID":130017,"Directional":true}]},{"ID":7490,"SourceStructureID":909,"TargetStructureID":5497,"Label":"909-5497 via Ribbon Synapse from 45938 -> 131091, 53746 -> 117469, 130118 -> 117653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45938,"TargetID":131091,"Directional":true},{"SourceID":53746,"TargetID":117469,"Directional":true},{"SourceID":130118,"TargetID":117653,"Directional":true}]},{"ID":7491,"SourceStructureID":909,"TargetStructureID":7134,"Label":"909-7134 via Ribbon Synapse from 117824 -> 117900, 117911 -> 117914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117824,"TargetID":117900,"Directional":true},{"SourceID":117911,"TargetID":117914,"Directional":true}]},{"ID":7492,"SourceStructureID":909,"TargetStructureID":7594,"Label":"909-7594 via Ribbon Synapse from 55601 -> 117794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55601,"TargetID":117794,"Directional":true}]},{"ID":7493,"SourceStructureID":909,"TargetStructureID":8575,"Label":"909-8575 via BC Conventional Synapse from 130864 -> 130865","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130864,"TargetID":130865,"Directional":true}]},{"ID":7494,"SourceStructureID":909,"TargetStructureID":8575,"Label":"909-8575 via Ribbon cluster from 130822 -> 130821","Type":"Ribbon cluster","Directional":true,"Links":[{"SourceID":130822,"TargetID":130821,"Directional":true}]},{"ID":7495,"SourceStructureID":909,"TargetStructureID":8575,"Label":"909-8575 via Ribbon Synapse from 62060 -> 62058, 120142 -> 120146, 129568 -> 62077, 129570 -> 62077, 130823 -> 130821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62060,"TargetID":62058,"Directional":true},{"SourceID":120142,"TargetID":120146,"Directional":true},{"SourceID":129568,"TargetID":62077,"Directional":true},{"SourceID":129570,"TargetID":62077,"Directional":true},{"SourceID":130823,"TargetID":130821,"Directional":true}]},{"ID":7496,"SourceStructureID":909,"TargetStructureID":8579,"Label":"909-8579 via Ribbon Synapse from 36057 -> 62900","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36057,"TargetID":62900,"Directional":true}]},{"ID":7497,"SourceStructureID":909,"TargetStructureID":15796,"Label":"909-15796 via Ribbon Synapse from 87039 -> 131063, 116366 -> 116392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87039,"TargetID":131063,"Directional":true},{"SourceID":116366,"TargetID":116392,"Directional":true}]},{"ID":7498,"SourceStructureID":909,"TargetStructureID":16073,"Label":"909-16073 via Ribbon Synapse from 116783 -> 116784, 130018 -> 130019","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116783,"TargetID":116784,"Directional":true},{"SourceID":130018,"TargetID":130019,"Directional":true}]},{"ID":7499,"SourceStructureID":909,"TargetStructureID":30567,"Label":"909-30567 via Ribbon Synapse from 30652 -> 30647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30652,"TargetID":30647,"Directional":true}]},{"ID":7500,"SourceStructureID":909,"TargetStructureID":48573,"Label":"909-48573 via Ribbon Synapse from 45883 -> 115927","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45883,"TargetID":115927,"Directional":true}]},{"ID":7501,"SourceStructureID":909,"TargetStructureID":54078,"Label":"909-54078 via Ribbon Synapse from 53804 -> 67802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53804,"TargetID":67802,"Directional":true}]},{"ID":7502,"SourceStructureID":909,"TargetStructureID":55517,"Label":"909-55517 via Ribbon Synapse from 55601 -> 55602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55601,"TargetID":55602,"Directional":true}]},{"ID":7503,"SourceStructureID":909,"TargetStructureID":58592,"Label":"909-58592 via Ribbon Synapse from 45882 -> 58626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45882,"TargetID":58626,"Directional":true}]},{"ID":7504,"SourceStructureID":909,"TargetStructureID":58829,"Label":"909-58829 via Ribbon Synapse from 45933 -> 131079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45933,"TargetID":131079,"Directional":true}]},{"ID":7505,"SourceStructureID":909,"TargetStructureID":59145,"Label":"909-59145 via Ribbon Synapse from 30651 -> 59146, 128748 -> 59146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30651,"TargetID":59146,"Directional":true},{"SourceID":128748,"TargetID":59146,"Directional":true}]},{"ID":7506,"SourceStructureID":909,"TargetStructureID":59147,"Label":"909-59147 via Ribbon Synapse from 30651 -> 59150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30651,"TargetID":59150,"Directional":true}]},{"ID":7507,"SourceStructureID":909,"TargetStructureID":61450,"Label":"909-61450 via BC Conventional Synapse from 117231 -> 61492","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117231,"TargetID":61492,"Directional":true}]},{"ID":7508,"SourceStructureID":909,"TargetStructureID":61450,"Label":"909-61450 via Ribbon Synapse from 130261 -> 117890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130261,"TargetID":117890,"Directional":true}]},{"ID":7509,"SourceStructureID":909,"TargetStructureID":61500,"Label":"909-61500 via Ribbon Synapse from 45924 -> 130980, 61502 -> 61501, 61505 -> 61504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45924,"TargetID":130980,"Directional":true},{"SourceID":61502,"TargetID":61501,"Directional":true},{"SourceID":61505,"TargetID":61504,"Directional":true}]},{"ID":7510,"SourceStructureID":909,"TargetStructureID":62578,"Label":"909-62578 via BC Conventional Synapse from 120169 -> 120168","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120169,"TargetID":120168,"Directional":true}]},{"ID":7511,"SourceStructureID":909,"TargetStructureID":62578,"Label":"909-62578 via Ribbon Synapse from 113675 -> 62583, 117275 -> 117281, 118407 -> 118416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113675,"TargetID":62583,"Directional":true},{"SourceID":117275,"TargetID":117281,"Directional":true},{"SourceID":118407,"TargetID":118416,"Directional":true}]},{"ID":7512,"SourceStructureID":909,"TargetStructureID":65134,"Label":"909-65134 via BC Conventional Synapse from 123565 -> 123564","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123565,"TargetID":123564,"Directional":true}]},{"ID":7513,"SourceStructureID":909,"TargetStructureID":66374,"Label":"909-66374 via Ribbon Synapse from 115966 -> 66387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115966,"TargetID":66387,"Directional":true}]},{"ID":7514,"SourceStructureID":909,"TargetStructureID":66390,"Label":"909-66390 via Ribbon Synapse from 36058 -> 66393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36058,"TargetID":66393,"Directional":true}]},{"ID":7515,"SourceStructureID":909,"TargetStructureID":67663,"Label":"909-67663 via Ribbon Synapse from 36061 -> 69866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36061,"TargetID":69866,"Directional":true}]},{"ID":7516,"SourceStructureID":909,"TargetStructureID":68153,"Label":"909-68153 via Ribbon Synapse from 130077 -> 130078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130077,"TargetID":130078,"Directional":true}]},{"ID":7517,"SourceStructureID":909,"TargetStructureID":69162,"Label":"909-69162 via Ribbon Synapse from 45918 -> 69214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45918,"TargetID":69214,"Directional":true}]},{"ID":7518,"SourceStructureID":909,"TargetStructureID":69367,"Label":"909-69367 via Ribbon Synapse from 53740 -> 72371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53740,"TargetID":72371,"Directional":true}]},{"ID":7519,"SourceStructureID":909,"TargetStructureID":75922,"Label":"909-75922 via Ribbon Synapse from 129969 -> 129970","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129969,"TargetID":129970,"Directional":true}]},{"ID":7520,"SourceStructureID":909,"TargetStructureID":78333,"Label":"909-78333 via BC Conventional Synapse from 117480 -> 117481","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117480,"TargetID":117481,"Directional":true}]},{"ID":7521,"SourceStructureID":909,"TargetStructureID":78709,"Label":"909-78709 via Ribbon Synapse from 45932 -> 131021","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45932,"TargetID":131021,"Directional":true}]},{"ID":7522,"SourceStructureID":909,"TargetStructureID":81532,"Label":"909-81532 via Ribbon Synapse from 53772 -> 117257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53772,"TargetID":117257,"Directional":true}]},{"ID":7523,"SourceStructureID":909,"TargetStructureID":96139,"Label":"909-96139 via Ribbon Synapse from 118471 -> 130854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118471,"TargetID":130854,"Directional":true}]},{"ID":7524,"SourceStructureID":909,"TargetStructureID":97131,"Label":"909-97131 via Ribbon Synapse from 130116 -> 130117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130116,"TargetID":130117,"Directional":true}]},{"ID":7525,"SourceStructureID":909,"TargetStructureID":97363,"Label":"909-97363 via Ribbon Synapse from 115939 -> 129616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115939,"TargetID":129616,"Directional":true}]},{"ID":7526,"SourceStructureID":909,"TargetStructureID":99091,"Label":"909-99091 via Ribbon Synapse from 45882 -> 129574","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45882,"TargetID":129574,"Directional":true}]},{"ID":7527,"SourceStructureID":909,"TargetStructureID":103987,"Label":"909-103987 via Ribbon Synapse from 130073 -> 130074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130073,"TargetID":130074,"Directional":true}]},{"ID":7528,"SourceStructureID":909,"TargetStructureID":104619,"Label":"909-104619 via Ribbon Synapse from 53802 -> 118383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53802,"TargetID":118383,"Directional":true}]},{"ID":7529,"SourceStructureID":909,"TargetStructureID":104662,"Label":"909-104662 via Ribbon Synapse from 130266 -> 130267","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130266,"TargetID":130267,"Directional":true}]},{"ID":7530,"SourceStructureID":909,"TargetStructureID":110295,"Label":"909-110295 via BC Conventional Synapse from 130934 -> 130935","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130934,"TargetID":130935,"Directional":true}]},{"ID":7531,"SourceStructureID":909,"TargetStructureID":115853,"Label":"909-115853 via Ribbon Synapse from 129472 -> 115854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129472,"TargetID":115854,"Directional":true}]},{"ID":7532,"SourceStructureID":909,"TargetStructureID":115855,"Label":"909-115855 via BC Conventional Synapse from 130471 -> 130470","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130471,"TargetID":130470,"Directional":true}]},{"ID":7533,"SourceStructureID":909,"TargetStructureID":115855,"Label":"909-115855 via Ribbon Synapse from 38884 -> 115859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38884,"TargetID":115859,"Directional":true}]},{"ID":7534,"SourceStructureID":909,"TargetStructureID":115860,"Label":"909-115860 via Ribbon Synapse from 40312 -> 115862, 129472 -> 129473","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40312,"TargetID":115862,"Directional":true},{"SourceID":129472,"TargetID":129473,"Directional":true}]},{"ID":7535,"SourceStructureID":909,"TargetStructureID":115878,"Label":"909-115878 via Ribbon Synapse from 115877 -> 115879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115877,"TargetID":115879,"Directional":true}]},{"ID":7536,"SourceStructureID":909,"TargetStructureID":115880,"Label":"909-115880 via Ribbon Synapse from 115877 -> 115881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115877,"TargetID":115881,"Directional":true}]},{"ID":7537,"SourceStructureID":909,"TargetStructureID":115884,"Label":"909-115884 via Ribbon Synapse from 115883 -> 115885","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115883,"TargetID":115885,"Directional":true}]},{"ID":7538,"SourceStructureID":909,"TargetStructureID":115886,"Label":"909-115886 via Ribbon Synapse from 115883 -> 115887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115883,"TargetID":115887,"Directional":true}]},{"ID":7539,"SourceStructureID":909,"TargetStructureID":115890,"Label":"909-115890 via Ribbon Synapse from 45839 -> 115893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45839,"TargetID":115893,"Directional":true}]},{"ID":7540,"SourceStructureID":909,"TargetStructureID":115895,"Label":"909-115895 via Ribbon Synapse from 115894 -> 115898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115894,"TargetID":115898,"Directional":true}]},{"ID":7541,"SourceStructureID":909,"TargetStructureID":115897,"Label":"909-115897 via Ribbon Synapse from 115894 -> 115899","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115894,"TargetID":115899,"Directional":true}]},{"ID":7542,"SourceStructureID":909,"TargetStructureID":115916,"Label":"909-115916 via Ribbon Synapse from 115913 -> 115917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115913,"TargetID":115917,"Directional":true}]},{"ID":7543,"SourceStructureID":909,"TargetStructureID":115921,"Label":"909-115921 via Ribbon Synapse from 115920 -> 115924","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115920,"TargetID":115924,"Directional":true}]},{"ID":7544,"SourceStructureID":909,"TargetStructureID":115922,"Label":"909-115922 via Ribbon Synapse from 115920 -> 115925","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115920,"TargetID":115925,"Directional":true}]},{"ID":7545,"SourceStructureID":909,"TargetStructureID":115923,"Label":"909-115923 via Ribbon Synapse from 115920 -> 115926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115920,"TargetID":115926,"Directional":true}]},{"ID":7546,"SourceStructureID":909,"TargetStructureID":115928,"Label":"909-115928 via BC Conventional Synapse from 115113 -> 115932","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115113,"TargetID":115932,"Directional":true}]},{"ID":7547,"SourceStructureID":909,"TargetStructureID":115930,"Label":"909-115930 via BC Conventional Synapse from 115114 -> 115933","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115114,"TargetID":115933,"Directional":true}]},{"ID":7548,"SourceStructureID":909,"TargetStructureID":115944,"Label":"909-115944 via Ribbon Synapse from 115939 -> 115945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115939,"TargetID":115945,"Directional":true}]},{"ID":7549,"SourceStructureID":909,"TargetStructureID":115967,"Label":"909-115967 via Ribbon Synapse from 115966 -> 115968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115966,"TargetID":115968,"Directional":true}]},{"ID":7550,"SourceStructureID":909,"TargetStructureID":115969,"Label":"909-115969 via Ribbon Synapse from 36059 -> 115970","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36059,"TargetID":115970,"Directional":true}]},{"ID":7551,"SourceStructureID":909,"TargetStructureID":115984,"Label":"909-115984 via Ribbon Synapse from 115115 -> 115985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115115,"TargetID":115985,"Directional":true}]},{"ID":7552,"SourceStructureID":909,"TargetStructureID":115990,"Label":"909-115990 via Ribbon Synapse from 120103 -> 120102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120103,"TargetID":120102,"Directional":true}]},{"ID":7553,"SourceStructureID":909,"TargetStructureID":116373,"Label":"909-116373 via Ribbon Synapse from 115997 -> 116374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115997,"TargetID":116374,"Directional":true}]},{"ID":7554,"SourceStructureID":909,"TargetStructureID":116378,"Label":"909-116378 via Ribbon Synapse from 116379 -> 116380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116379,"TargetID":116380,"Directional":true}]},{"ID":7555,"SourceStructureID":909,"TargetStructureID":116387,"Label":"909-116387 via Ribbon Synapse from 116379 -> 129975","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116379,"TargetID":129975,"Directional":true}]},{"ID":7556,"SourceStructureID":909,"TargetStructureID":116390,"Label":"909-116390 via Ribbon Synapse from 116366 -> 116391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116366,"TargetID":116391,"Directional":true}]},{"ID":7557,"SourceStructureID":909,"TargetStructureID":116395,"Label":"909-116395 via Ribbon Synapse from 129987 -> 116397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129987,"TargetID":116397,"Directional":true}]},{"ID":7558,"SourceStructureID":909,"TargetStructureID":116400,"Label":"909-116400 via Ribbon Synapse from 116780 -> 116781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116780,"TargetID":116781,"Directional":true}]},{"ID":7559,"SourceStructureID":909,"TargetStructureID":116769,"Label":"909-116769 via Ribbon Synapse from 116780 -> 116774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116780,"TargetID":116774,"Directional":true}]},{"ID":7560,"SourceStructureID":909,"TargetStructureID":116775,"Label":"909-116775 via Ribbon Synapse from 116402 -> 116776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116402,"TargetID":116776,"Directional":true}]},{"ID":7561,"SourceStructureID":909,"TargetStructureID":116785,"Label":"909-116785 via Ribbon Synapse from 116783 -> 116787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116783,"TargetID":116787,"Directional":true}]},{"ID":7562,"SourceStructureID":909,"TargetStructureID":117200,"Label":"909-117200 via Ribbon Synapse from 97715 -> 117201","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97715,"TargetID":117201,"Directional":true}]},{"ID":7563,"SourceStructureID":909,"TargetStructureID":117202,"Label":"909-117202 via Ribbon Synapse from 97715 -> 117203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97715,"TargetID":117203,"Directional":true}]},{"ID":7564,"SourceStructureID":909,"TargetStructureID":117208,"Label":"909-117208 via BC Conventional Synapse from 117212 -> 117213","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117212,"TargetID":117213,"Directional":true}]},{"ID":7565,"SourceStructureID":909,"TargetStructureID":117214,"Label":"909-117214 via Ribbon Synapse from 113684 -> 117217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113684,"TargetID":117217,"Directional":true}]},{"ID":7566,"SourceStructureID":909,"TargetStructureID":117218,"Label":"909-117218 via Ribbon Synapse from 113684 -> 131067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113684,"TargetID":131067,"Directional":true}]},{"ID":7567,"SourceStructureID":909,"TargetStructureID":117233,"Label":"909-117233 via Ribbon Synapse from 87043 -> 117234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87043,"TargetID":117234,"Directional":true}]},{"ID":7568,"SourceStructureID":909,"TargetStructureID":117263,"Label":"909-117263 via Ribbon Synapse from 53805 -> 117264","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53805,"TargetID":117264,"Directional":true}]},{"ID":7569,"SourceStructureID":909,"TargetStructureID":117269,"Label":"909-117269 via BC Conventional Synapse from 117267 -> 117270","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117267,"TargetID":117270,"Directional":true}]},{"ID":7570,"SourceStructureID":909,"TargetStructureID":117272,"Label":"909-117272 via BC Conventional Synapse from 130135 -> 130136","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130135,"TargetID":130136,"Directional":true}]},{"ID":7571,"SourceStructureID":909,"TargetStructureID":117285,"Label":"909-117285 via Ribbon Synapse from 117279 -> 117434","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117279,"TargetID":117434,"Directional":true}]},{"ID":7572,"SourceStructureID":909,"TargetStructureID":117388,"Label":"909-117388 via Ribbon Synapse from 53736 -> 117389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53736,"TargetID":117389,"Directional":true}]},{"ID":7573,"SourceStructureID":909,"TargetStructureID":117390,"Label":"909-117390 via Ribbon Synapse from 53736 -> 117391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53736,"TargetID":117391,"Directional":true}]},{"ID":7574,"SourceStructureID":909,"TargetStructureID":117394,"Label":"909-117394 via Ribbon Synapse from 117393 -> 117395","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117393,"TargetID":117395,"Directional":true}]},{"ID":7575,"SourceStructureID":909,"TargetStructureID":117406,"Label":"909-117406 via Ribbon Synapse from 53731 -> 117418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53731,"TargetID":117418,"Directional":true}]},{"ID":7576,"SourceStructureID":909,"TargetStructureID":117411,"Label":"909-117411 via Ribbon Synapse from 53731 -> 117419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53731,"TargetID":117419,"Directional":true}]},{"ID":7577,"SourceStructureID":909,"TargetStructureID":117431,"Label":"909-117431 via Ribbon Synapse from 117425 -> 120164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117425,"TargetID":120164,"Directional":true}]},{"ID":7578,"SourceStructureID":909,"TargetStructureID":117433,"Label":"909-117433 via Ribbon Synapse from 117275 -> 117435","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117275,"TargetID":117435,"Directional":true}]},{"ID":7579,"SourceStructureID":909,"TargetStructureID":117450,"Label":"909-117450 via BC Conventional Synapse from 130075 -> 130076","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130075,"TargetID":130076,"Directional":true}]},{"ID":7580,"SourceStructureID":909,"TargetStructureID":117461,"Label":"909-117461 via Ribbon Synapse from 117460 -> 117462","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117460,"TargetID":117462,"Directional":true}]},{"ID":7581,"SourceStructureID":909,"TargetStructureID":117465,"Label":"909-117465 via Ribbon Synapse from 117479 -> 130089","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117479,"TargetID":130089,"Directional":true}]},{"ID":7582,"SourceStructureID":909,"TargetStructureID":117470,"Label":"909-117470 via Ribbon Synapse from 53746 -> 117473","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53746,"TargetID":117473,"Directional":true}]},{"ID":7583,"SourceStructureID":909,"TargetStructureID":117637,"Label":"909-117637 via BC Conventional Synapse from 117636 -> 117638","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117636,"TargetID":117638,"Directional":true}]},{"ID":7584,"SourceStructureID":909,"TargetStructureID":117639,"Label":"909-117639 via Ribbon Synapse from 130080 -> 130081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130080,"TargetID":130081,"Directional":true}]},{"ID":7585,"SourceStructureID":909,"TargetStructureID":117643,"Label":"909-117643 via Ribbon Synapse from 117642 -> 117644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117642,"TargetID":117644,"Directional":true}]},{"ID":7586,"SourceStructureID":909,"TargetStructureID":117645,"Label":"909-117645 via Ribbon Synapse from 117642 -> 117646","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117642,"TargetID":117646,"Directional":true}]},{"ID":7587,"SourceStructureID":909,"TargetStructureID":117650,"Label":"909-117650 via Ribbon Synapse from 130118 -> 117651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130118,"TargetID":117651,"Directional":true}]},{"ID":7588,"SourceStructureID":909,"TargetStructureID":117668,"Label":"909-117668 via BC Conventional Synapse from 117667 -> 117669","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117667,"TargetID":117669,"Directional":true}]},{"ID":7589,"SourceStructureID":909,"TargetStructureID":117670,"Label":"909-117670 via BC Conventional Synapse from 117459 -> 117671, 120170 -> 120171","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117459,"TargetID":117671,"Directional":true},{"SourceID":120170,"TargetID":120171,"Directional":true}]},{"ID":7590,"SourceStructureID":909,"TargetStructureID":117672,"Label":"909-117672 via BC Conventional Synapse from 117676 -> 117677","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117676,"TargetID":117677,"Directional":true}]},{"ID":7591,"SourceStructureID":909,"TargetStructureID":117678,"Label":"909-117678 via Ribbon Synapse from 130133 -> 130131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130133,"TargetID":130131,"Directional":true}]},{"ID":7592,"SourceStructureID":909,"TargetStructureID":117683,"Label":"909-117683 via Ribbon Synapse from 130133 -> 130132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130133,"TargetID":130132,"Directional":true}]},{"ID":7593,"SourceStructureID":909,"TargetStructureID":117689,"Label":"909-117689 via Ribbon Synapse from 117693 -> 120174","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117693,"TargetID":120174,"Directional":true}]},{"ID":7594,"SourceStructureID":909,"TargetStructureID":117780,"Label":"909-117780 via Ribbon Synapse from 117696 -> 117781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117696,"TargetID":117781,"Directional":true}]},{"ID":7595,"SourceStructureID":909,"TargetStructureID":117811,"Label":"909-117811 via Ribbon Synapse from 117809 -> 117812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117809,"TargetID":117812,"Directional":true}]},{"ID":7596,"SourceStructureID":909,"TargetStructureID":117835,"Label":"909-117835 via BC Conventional Synapse from 117834 -> 117836","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117834,"TargetID":117836,"Directional":true}]},{"ID":7597,"SourceStructureID":909,"TargetStructureID":117843,"Label":"909-117843 via Ribbon Synapse from 53788 -> 117848, 117844 -> 130277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53788,"TargetID":117848,"Directional":true},{"SourceID":117844,"TargetID":130277,"Directional":true}]},{"ID":7598,"SourceStructureID":909,"TargetStructureID":117854,"Label":"909-117854 via Ribbon Synapse from 117844 -> 117855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117844,"TargetID":117855,"Directional":true}]},{"ID":7599,"SourceStructureID":909,"TargetStructureID":117860,"Label":"909-117860 via Ribbon Synapse from 117849 -> 130276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117849,"TargetID":130276,"Directional":true}]},{"ID":7600,"SourceStructureID":909,"TargetStructureID":117868,"Label":"909-117868 via Ribbon Synapse from 117867 -> 117869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117867,"TargetID":117869,"Directional":true}]},{"ID":7601,"SourceStructureID":909,"TargetStructureID":117873,"Label":"909-117873 via Ribbon Synapse from 130275 -> 117875","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130275,"TargetID":117875,"Directional":true}]},{"ID":7602,"SourceStructureID":909,"TargetStructureID":117876,"Label":"909-117876 via Ribbon Synapse from 130273 -> 130274","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130273,"TargetID":130274,"Directional":true}]},{"ID":7603,"SourceStructureID":909,"TargetStructureID":117881,"Label":"909-117881 via Ribbon Synapse from 117880 -> 117882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117880,"TargetID":117882,"Directional":true}]},{"ID":7604,"SourceStructureID":909,"TargetStructureID":117883,"Label":"909-117883 via BC Conventional Synapse from 130269 -> 130268","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130269,"TargetID":130268,"Directional":true}]},{"ID":7605,"SourceStructureID":909,"TargetStructureID":117897,"Label":"909-117897 via Ribbon Synapse from 117824 -> 117910, 130261 -> 130262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117824,"TargetID":117910,"Directional":true},{"SourceID":130261,"TargetID":130262,"Directional":true}]},{"ID":7606,"SourceStructureID":909,"TargetStructureID":117906,"Label":"909-117906 via Ribbon Synapse from 117911 -> 117912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117911,"TargetID":117912,"Directional":true}]},{"ID":7607,"SourceStructureID":909,"TargetStructureID":117916,"Label":"909-117916 via Ribbon Synapse from 117915 -> 117917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117915,"TargetID":117917,"Directional":true}]},{"ID":7608,"SourceStructureID":909,"TargetStructureID":118380,"Label":"909-118380 via Ribbon Synapse from 53800 -> 118381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53800,"TargetID":118381,"Directional":true}]},{"ID":7609,"SourceStructureID":909,"TargetStructureID":118388,"Label":"909-118388 via BC Conventional Synapse from 118390 -> 118389","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":118390,"TargetID":118389,"Directional":true}]},{"ID":7610,"SourceStructureID":909,"TargetStructureID":118391,"Label":"909-118391 via Ribbon Synapse from 53802 -> 118392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53802,"TargetID":118392,"Directional":true}]},{"ID":7611,"SourceStructureID":909,"TargetStructureID":118398,"Label":"909-118398 via Ribbon Synapse from 118396 -> 118399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118396,"TargetID":118399,"Directional":true}]},{"ID":7612,"SourceStructureID":909,"TargetStructureID":118402,"Label":"909-118402 via Ribbon Synapse from 53804 -> 118403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53804,"TargetID":118403,"Directional":true}]},{"ID":7613,"SourceStructureID":909,"TargetStructureID":118410,"Label":"909-118410 via Ribbon Synapse from 117792 -> 118411, 118409 -> 130306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117792,"TargetID":118411,"Directional":true},{"SourceID":118409,"TargetID":130306,"Directional":true}]},{"ID":7614,"SourceStructureID":909,"TargetStructureID":118412,"Label":"909-118412 via Ribbon Synapse from 118409 -> 118413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118409,"TargetID":118413,"Directional":true}]},{"ID":7615,"SourceStructureID":909,"TargetStructureID":118417,"Label":"909-118417 via Ribbon Synapse from 117792 -> 118418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117792,"TargetID":118418,"Directional":true}]},{"ID":7616,"SourceStructureID":909,"TargetStructureID":118446,"Label":"909-118446 via Ribbon Synapse from 45167 -> 118447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45167,"TargetID":118447,"Directional":true}]},{"ID":7617,"SourceStructureID":909,"TargetStructureID":118453,"Label":"909-118453 via Ribbon Synapse from 45890 -> 118454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45890,"TargetID":118454,"Directional":true}]},{"ID":7618,"SourceStructureID":909,"TargetStructureID":118588,"Label":"909-118588 via Ribbon Synapse from 118582 -> 118589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118582,"TargetID":118589,"Directional":true}]},{"ID":7619,"SourceStructureID":909,"TargetStructureID":118590,"Label":"909-118590 via Ribbon Synapse from 118582 -> 118591","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118582,"TargetID":118591,"Directional":true}]},{"ID":7620,"SourceStructureID":909,"TargetStructureID":120197,"Label":"909-120197 via Ribbon Synapse from 117692 -> 130241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117692,"TargetID":130241,"Directional":true}]},{"ID":7621,"SourceStructureID":909,"TargetStructureID":130012,"Label":"909-130012 via Ribbon Synapse from 36061 -> 130015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36061,"TargetID":130015,"Directional":true}]},{"ID":7622,"SourceStructureID":911,"TargetStructureID":492,"Label":"911-492 via Conventional from 924 -> 35036, 26675 -> 34991","Type":"Conventional","Directional":true,"Links":[{"SourceID":924,"TargetID":35036,"Directional":true},{"SourceID":26675,"TargetID":34991,"Directional":true}]},{"ID":7623,"SourceStructureID":968,"TargetStructureID":3865,"Label":"968-3865 via Ribbon Synapse from 132112 -> 132104, 132114 -> 132113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132112,"TargetID":132104,"Directional":true},{"SourceID":132114,"TargetID":132113,"Directional":true}]},{"ID":7624,"SourceStructureID":968,"TargetStructureID":4568,"Label":"968-4568 via Ribbon Synapse from 12194 -> 11515, 12195 -> 11516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12194,"TargetID":11515,"Directional":true},{"SourceID":12195,"TargetID":11516,"Directional":true}]},{"ID":7625,"SourceStructureID":968,"TargetStructureID":4835,"Label":"968-4835 via Ribbon Synapse from 12312 -> 12313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12312,"TargetID":12313,"Directional":true}]},{"ID":7626,"SourceStructureID":968,"TargetStructureID":5486,"Label":"968-5486 via Ribbon Synapse from 129873 -> 41085","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129873,"TargetID":41085,"Directional":true}]},{"ID":7627,"SourceStructureID":968,"TargetStructureID":7568,"Label":"968-7568 via Ribbon Synapse from 27102 -> 27096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27102,"TargetID":27096,"Directional":true}]},{"ID":7628,"SourceStructureID":968,"TargetStructureID":8575,"Label":"968-8575 via Ribbon Synapse from 12161 -> 62254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12161,"TargetID":62254,"Directional":true}]},{"ID":7629,"SourceStructureID":968,"TargetStructureID":129648,"Label":"968-129648 via Ribbon Synapse from 12158 -> 129656","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12158,"TargetID":129656,"Directional":true}]},{"ID":7630,"SourceStructureID":968,"TargetStructureID":133744,"Label":"968-133744 via Ribbon Synapse from 12189 -> 133745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12189,"TargetID":133745,"Directional":true}]},{"ID":7631,"SourceStructureID":989,"TargetStructureID":3257,"Label":"989-3257 via Ribbon Synapse from 13069 -> 129881, 13092 -> 129882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13069,"TargetID":129881,"Directional":true},{"SourceID":13092,"TargetID":129882,"Directional":true}]},{"ID":7632,"SourceStructureID":989,"TargetStructureID":20681,"Label":"989-20681 via Ribbon Synapse from 13095 -> 65807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13095,"TargetID":65807,"Directional":true}]},{"ID":7633,"SourceStructureID":992,"TargetStructureID":3679,"Label":"992-3679 via Ribbon Synapse from 23295 -> 23294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23295,"TargetID":23294,"Directional":true}]},{"ID":7634,"SourceStructureID":992,"TargetStructureID":29340,"Label":"992-29340 via Ribbon Synapse from 29431 -> 29430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29431,"TargetID":29430,"Directional":true}]},{"ID":7635,"SourceStructureID":992,"TargetStructureID":46498,"Label":"992-46498 via Ribbon Synapse from 127921 -> 127920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127921,"TargetID":127920,"Directional":true}]},{"ID":7636,"SourceStructureID":992,"TargetStructureID":60386,"Label":"992-60386 via Ribbon Synapse from 60423 -> 60422","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60423,"TargetID":60422,"Directional":true}]},{"ID":7637,"SourceStructureID":999,"TargetStructureID":5405,"Label":"999-5405 via Ribbon Synapse from 23412 -> 23409, 23413 -> 23408, 23416 -> 11054","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23412,"TargetID":23409,"Directional":true},{"SourceID":23413,"TargetID":23408,"Directional":true},{"SourceID":23416,"TargetID":11054,"Directional":true}]},{"ID":7638,"SourceStructureID":999,"TargetStructureID":5497,"Label":"999-5497 via Ribbon Synapse from 23411 -> 62525, 62527 -> 62526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23411,"TargetID":62525,"Directional":true},{"SourceID":62527,"TargetID":62526,"Directional":true}]},{"ID":7639,"SourceStructureID":1021,"TargetStructureID":598,"Label":"1021-598 via Ribbon Synapse from 19754 -> 6325, 125623 -> 125628, 125654 -> 125653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19754,"TargetID":6325,"Directional":true},{"SourceID":125623,"TargetID":125628,"Directional":true},{"SourceID":125654,"TargetID":125653,"Directional":true}]},{"ID":7640,"SourceStructureID":1021,"TargetStructureID":606,"Label":"1021-606 via Ribbon Synapse from 51471 -> 51468, 51475 -> 51476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51471,"TargetID":51468,"Directional":true},{"SourceID":51475,"TargetID":51476,"Directional":true}]},{"ID":7641,"SourceStructureID":1021,"TargetStructureID":5377,"Label":"1021-5377 via Ribbon Synapse from 58796 -> 87128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58796,"TargetID":87128,"Directional":true}]},{"ID":7642,"SourceStructureID":1021,"TargetStructureID":6121,"Label":"1021-6121 via Ribbon Synapse from 125308 -> 125309","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125308,"TargetID":125309,"Directional":true}]},{"ID":7643,"SourceStructureID":1021,"TargetStructureID":7134,"Label":"1021-7134 via Ribbon Synapse from 19766 -> 53487, 61087 -> 125711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19766,"TargetID":53487,"Directional":true},{"SourceID":61087,"TargetID":125711,"Directional":true}]},{"ID":7644,"SourceStructureID":1021,"TargetStructureID":7594,"Label":"1021-7594 via Ribbon Synapse from 19748 -> 25086, 19750 -> 125132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19748,"TargetID":25086,"Directional":true},{"SourceID":19750,"TargetID":125132,"Directional":true}]},{"ID":7645,"SourceStructureID":1021,"TargetStructureID":9769,"Label":"1021-9769 via Ribbon Synapse from 26483 -> 52609, 28348 -> 125260, 28349 -> 30150, 30187 -> 30163, 51475 -> 125332, 115343 -> 30140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26483,"TargetID":52609,"Directional":true},{"SourceID":28348,"TargetID":125260,"Directional":true},{"SourceID":28349,"TargetID":30150,"Directional":true},{"SourceID":30187,"TargetID":30163,"Directional":true},{"SourceID":51475,"TargetID":125332,"Directional":true},{"SourceID":115343,"TargetID":30140,"Directional":true}]},{"ID":7646,"SourceStructureID":1021,"TargetStructureID":16073,"Label":"1021-16073 via Ribbon Synapse from 125148 -> 19838, 125520 -> 125521, 125527 -> 125528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125148,"TargetID":19838,"Directional":true},{"SourceID":125520,"TargetID":125521,"Directional":true},{"SourceID":125527,"TargetID":125528,"Directional":true}]},{"ID":7647,"SourceStructureID":1021,"TargetStructureID":22974,"Label":"1021-22974 via Ribbon Synapse from 51533 -> 125333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51533,"TargetID":125333,"Directional":true}]},{"ID":7648,"SourceStructureID":1021,"TargetStructureID":53436,"Label":"1021-53436 via Ribbon Synapse from 55833 -> 55834, 115343 -> 125327, 115349 -> 120569, 120568 -> 53437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55833,"TargetID":55834,"Directional":true},{"SourceID":115343,"TargetID":125327,"Directional":true},{"SourceID":115349,"TargetID":120569,"Directional":true},{"SourceID":120568,"TargetID":53437,"Directional":true}]},{"ID":7649,"SourceStructureID":1021,"TargetStructureID":53991,"Label":"1021-53991 via Ribbon Synapse from 28349 -> 53994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28349,"TargetID":53994,"Directional":true}]},{"ID":7650,"SourceStructureID":1021,"TargetStructureID":57064,"Label":"1021-57064 via Unknown from 124965 -> 124964","Type":"Unknown","Directional":true,"Links":[{"SourceID":124965,"TargetID":124964,"Directional":true}]},{"ID":7651,"SourceStructureID":1021,"TargetStructureID":64923,"Label":"1021-64923 via Ribbon Synapse from 103025 -> 126718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103025,"TargetID":126718,"Directional":true}]},{"ID":7652,"SourceStructureID":1021,"TargetStructureID":68539,"Label":"1021-68539 via Ribbon Synapse from 19787 -> 72853, 125343 -> 125342, 125417 -> 125418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19787,"TargetID":72853,"Directional":true},{"SourceID":125343,"TargetID":125342,"Directional":true},{"SourceID":125417,"TargetID":125418,"Directional":true}]},{"ID":7653,"SourceStructureID":1021,"TargetStructureID":69162,"Label":"1021-69162 via Ribbon Synapse from 103018 -> 125761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103018,"TargetID":125761,"Directional":true}]},{"ID":7654,"SourceStructureID":1021,"TargetStructureID":87419,"Label":"1021-87419 via Ribbon Synapse from 58795 -> 125696","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58795,"TargetID":125696,"Directional":true}]},{"ID":7655,"SourceStructureID":1021,"TargetStructureID":89124,"Label":"1021-89124 via Ribbon Synapse from 28323 -> 89334","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28323,"TargetID":89334,"Directional":true}]},{"ID":7656,"SourceStructureID":1021,"TargetStructureID":89124,"Label":"1021-89124 via Unknown from 125535 -> 125533","Type":"Unknown","Directional":true,"Links":[{"SourceID":125535,"TargetID":125533,"Directional":true}]},{"ID":7657,"SourceStructureID":1021,"TargetStructureID":89350,"Label":"1021-89350 via Unknown from 125535 -> 125534","Type":"Unknown","Directional":true,"Links":[{"SourceID":125535,"TargetID":125534,"Directional":true}]},{"ID":7658,"SourceStructureID":1021,"TargetStructureID":103001,"Label":"1021-103001 via Ribbon Synapse from 28362 -> 125310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28362,"TargetID":125310,"Directional":true}]},{"ID":7659,"SourceStructureID":1021,"TargetStructureID":103008,"Label":"1021-103008 via Ribbon Synapse from 125291 -> 125292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125291,"TargetID":125292,"Directional":true}]},{"ID":7660,"SourceStructureID":1021,"TargetStructureID":105090,"Label":"1021-105090 via Ribbon Synapse from 19779 -> 125074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19779,"TargetID":125074,"Directional":true}]},{"ID":7661,"SourceStructureID":1021,"TargetStructureID":105553,"Label":"1021-105553 via Ribbon Synapse from 19748 -> 125131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19748,"TargetID":125131,"Directional":true}]},{"ID":7662,"SourceStructureID":1021,"TargetStructureID":111342,"Label":"1021-111342 via Ribbon Synapse from 28316 -> 125492","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28316,"TargetID":125492,"Directional":true}]},{"ID":7663,"SourceStructureID":1021,"TargetStructureID":111351,"Label":"1021-111351 via Unknown from 125496 -> 125495","Type":"Unknown","Directional":true,"Links":[{"SourceID":125496,"TargetID":125495,"Directional":true}]},{"ID":7664,"SourceStructureID":1021,"TargetStructureID":111394,"Label":"1021-111394 via Ribbon Synapse from 61092 -> 125661","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61092,"TargetID":125661,"Directional":true}]},{"ID":7665,"SourceStructureID":1021,"TargetStructureID":112077,"Label":"1021-112077 via Ribbon Synapse from 19746 -> 112078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19746,"TargetID":112078,"Directional":true}]},{"ID":7666,"SourceStructureID":1021,"TargetStructureID":112342,"Label":"1021-112342 via Ribbon Synapse from 1626 -> 125122","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1626,"TargetID":125122,"Directional":true}]},{"ID":7667,"SourceStructureID":1021,"TargetStructureID":112362,"Label":"1021-112362 via Ribbon Synapse from 19772 -> 124990, 19773 -> 124990","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19772,"TargetID":124990,"Directional":true},{"SourceID":19773,"TargetID":124990,"Directional":true}]},{"ID":7668,"SourceStructureID":1021,"TargetStructureID":113689,"Label":"1021-113689 via Unknown from 125526 -> 125525","Type":"Unknown","Directional":true,"Links":[{"SourceID":125526,"TargetID":125525,"Directional":true}]},{"ID":7669,"SourceStructureID":1021,"TargetStructureID":126711,"Label":"1021-126711 via Ribbon Synapse from 125343 -> 126714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125343,"TargetID":126714,"Directional":true}]},{"ID":7670,"SourceStructureID":1021,"TargetStructureID":126711,"Label":"1021-126711 via Unknown from 126713 -> 126712","Type":"Unknown","Directional":true,"Links":[{"SourceID":126713,"TargetID":126712,"Directional":true}]},{"ID":7671,"SourceStructureID":1021,"TargetStructureID":126886,"Label":"1021-126886 via Ribbon Synapse from 19754 -> 126887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19754,"TargetID":126887,"Directional":true}]},{"ID":7672,"SourceStructureID":1021,"TargetStructureID":128800,"Label":"1021-128800 via Ribbon Synapse from 19781 -> 128802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19781,"TargetID":128802,"Directional":true}]},{"ID":7673,"SourceStructureID":1021,"TargetStructureID":128803,"Label":"1021-128803 via Ribbon Synapse from 19781 -> 128807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19781,"TargetID":128807,"Directional":true}]},{"ID":7674,"SourceStructureID":1610,"TargetStructureID":514,"Label":"1610-514 via Conventional from 23281 -> 23279","Type":"Conventional","Directional":true,"Links":[{"SourceID":23281,"TargetID":23279,"Directional":true}]},{"ID":7675,"SourceStructureID":1620,"TargetStructureID":166,"Label":"1620-166 via Conventional from 16860 -> 4369","Type":"Conventional","Directional":true,"Links":[{"SourceID":16860,"TargetID":4369,"Directional":true}]},{"ID":7676,"SourceStructureID":1620,"TargetStructureID":461,"Label":"1620-461 via Conventional from 16892 -> 14834, 20622 -> 20621","Type":"Conventional","Directional":true,"Links":[{"SourceID":16892,"TargetID":14834,"Directional":true},{"SourceID":20622,"TargetID":20621,"Directional":true}]},{"ID":7677,"SourceStructureID":1620,"TargetStructureID":483,"Label":"1620-483 via Conventional from 103742 -> 103741","Type":"Conventional","Directional":true,"Links":[{"SourceID":103742,"TargetID":103741,"Directional":true}]},{"ID":7678,"SourceStructureID":1620,"TargetStructureID":6997,"Label":"1620-6997 via Conventional from 16842 -> 21933","Type":"Conventional","Directional":true,"Links":[{"SourceID":16842,"TargetID":21933,"Directional":true}]},{"ID":7679,"SourceStructureID":1620,"TargetStructureID":20614,"Label":"1620-20614 via Conventional from 16996 -> 20615","Type":"Conventional","Directional":true,"Links":[{"SourceID":16996,"TargetID":20615,"Directional":true}]},{"ID":7680,"SourceStructureID":1620,"TargetStructureID":20728,"Label":"1620-20728 via Conventional from 16905 -> 33074","Type":"Conventional","Directional":true,"Links":[{"SourceID":16905,"TargetID":33074,"Directional":true}]},{"ID":7681,"SourceStructureID":1620,"TargetStructureID":29198,"Label":"1620-29198 via Conventional from 16864 -> 29222","Type":"Conventional","Directional":true,"Links":[{"SourceID":16864,"TargetID":29222,"Directional":true}]},{"ID":7682,"SourceStructureID":1620,"TargetStructureID":45894,"Label":"1620-45894 via Conventional from 16908 -> 46930","Type":"Conventional","Directional":true,"Links":[{"SourceID":16908,"TargetID":46930,"Directional":true}]},{"ID":7683,"SourceStructureID":1620,"TargetStructureID":91730,"Label":"1620-91730 via Conventional from 16852 -> 91732","Type":"Conventional","Directional":true,"Links":[{"SourceID":16852,"TargetID":91732,"Directional":true}]},{"ID":7684,"SourceStructureID":1637,"TargetStructureID":179,"Label":"1637-179 via Ribbon Synapse from 23704 -> 30409","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23704,"TargetID":30409,"Directional":true}]},{"ID":7685,"SourceStructureID":1637,"TargetStructureID":8575,"Label":"1637-8575 via BC Conventional Synapse from 62088 -> 62087, 62855 -> 62854","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62088,"TargetID":62087,"Directional":true},{"SourceID":62855,"TargetID":62854,"Directional":true}]},{"ID":7686,"SourceStructureID":1637,"TargetStructureID":8575,"Label":"1637-8575 via Ribbon Synapse from 1689 -> 62073, 30198 -> 62091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1689,"TargetID":62073,"Directional":true},{"SourceID":30198,"TargetID":62091,"Directional":true}]},{"ID":7687,"SourceStructureID":1637,"TargetStructureID":8577,"Label":"1637-8577 via BC Conventional Synapse from 30406 -> 30407","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":30406,"TargetID":30407,"Directional":true}]},{"ID":7688,"SourceStructureID":1637,"TargetStructureID":9347,"Label":"1637-9347 via Ribbon Synapse from 30242 -> 30243","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30242,"TargetID":30243,"Directional":true}]},{"ID":7689,"SourceStructureID":1637,"TargetStructureID":13154,"Label":"1637-13154 via Ribbon Synapse from 1639 -> 23698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1639,"TargetID":23698,"Directional":true}]},{"ID":7690,"SourceStructureID":1637,"TargetStructureID":22974,"Label":"1637-22974 via Ribbon Synapse from 23710 -> 23713, 30366 -> 30368","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23710,"TargetID":23713,"Directional":true},{"SourceID":30366,"TargetID":30368,"Directional":true}]},{"ID":7691,"SourceStructureID":1637,"TargetStructureID":32227,"Label":"1637-32227 via Ribbon Synapse from 23723 -> 32229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23723,"TargetID":32229,"Directional":true}]},{"ID":7692,"SourceStructureID":1637,"TargetStructureID":39957,"Label":"1637-39957 via Ribbon Synapse from 28277 -> 58450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28277,"TargetID":58450,"Directional":true}]},{"ID":7693,"SourceStructureID":1637,"TargetStructureID":61793,"Label":"1637-61793 via Ribbon Synapse from 28270 -> 61795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28270,"TargetID":61795,"Directional":true}]},{"ID":7694,"SourceStructureID":1637,"TargetStructureID":61933,"Label":"1637-61933 via Ribbon Synapse from 1707 -> 68649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1707,"TargetID":68649,"Directional":true}]},{"ID":7695,"SourceStructureID":1637,"TargetStructureID":67920,"Label":"1637-67920 via Ribbon Synapse from 49631 -> 67958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49631,"TargetID":67958,"Directional":true}]},{"ID":7696,"SourceStructureID":1637,"TargetStructureID":67959,"Label":"1637-67959 via Ribbon Synapse from 49631 -> 67960","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49631,"TargetID":67960,"Directional":true}]},{"ID":7697,"SourceStructureID":1637,"TargetStructureID":68277,"Label":"1637-68277 via BC Conventional Synapse from 68281 -> 68280","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68281,"TargetID":68280,"Directional":true}]},{"ID":7698,"SourceStructureID":1637,"TargetStructureID":98762,"Label":"1637-98762 via Ribbon Synapse from 23709 -> 98768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23709,"TargetID":98768,"Directional":true}]},{"ID":7699,"SourceStructureID":1724,"TargetStructureID":5107,"Label":"1724-5107 via Ribbon Synapse from 3970 -> 119510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3970,"TargetID":119510,"Directional":true}]},{"ID":7700,"SourceStructureID":1724,"TargetStructureID":5579,"Label":"1724-5579 via BC Conventional Synapse from 119148 -> 119149","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119148,"TargetID":119149,"Directional":true}]},{"ID":7701,"SourceStructureID":1724,"TargetStructureID":7594,"Label":"1724-7594 via Ribbon Synapse from 23721 -> 101854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23721,"TargetID":101854,"Directional":true}]},{"ID":7702,"SourceStructureID":1724,"TargetStructureID":15796,"Label":"1724-15796 via Ribbon Synapse from 4092 -> 101770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4092,"TargetID":101770,"Directional":true}]},{"ID":7703,"SourceStructureID":1724,"TargetStructureID":23512,"Label":"1724-23512 via Ribbon Synapse from 1738 -> 23544, 4092 -> 101769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1738,"TargetID":23544,"Directional":true},{"SourceID":4092,"TargetID":101769,"Directional":true}]},{"ID":7704,"SourceStructureID":1724,"TargetStructureID":32227,"Label":"1724-32227 via Ribbon Synapse from 3984 -> 32233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3984,"TargetID":32233,"Directional":true}]},{"ID":7705,"SourceStructureID":1724,"TargetStructureID":35894,"Label":"1724-35894 via Ribbon Synapse from 3951 -> 35917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3951,"TargetID":35917,"Directional":true}]},{"ID":7706,"SourceStructureID":1724,"TargetStructureID":41003,"Label":"1724-41003 via Ribbon Synapse from 4094 -> 41008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4094,"TargetID":41008,"Directional":true}]},{"ID":7707,"SourceStructureID":1724,"TargetStructureID":43314,"Label":"1724-43314 via Ribbon Synapse from 43315 -> 43316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43315,"TargetID":43316,"Directional":true}]},{"ID":7708,"SourceStructureID":1724,"TargetStructureID":47104,"Label":"1724-47104 via Ribbon Synapse from 3995 -> 47132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3995,"TargetID":47132,"Directional":true}]},{"ID":7709,"SourceStructureID":1724,"TargetStructureID":48455,"Label":"1724-48455 via BC Conventional Synapse from 99417 -> 99418, 101980 -> 101981, 119542 -> 119541","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99417,"TargetID":99418,"Directional":true},{"SourceID":101980,"TargetID":101981,"Directional":true},{"SourceID":119542,"TargetID":119541,"Directional":true}]},{"ID":7710,"SourceStructureID":1724,"TargetStructureID":48612,"Label":"1724-48612 via Ribbon Synapse from 1736 -> 48613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1736,"TargetID":48613,"Directional":true}]},{"ID":7711,"SourceStructureID":1724,"TargetStructureID":68978,"Label":"1724-68978 via Ribbon Synapse from 4116 -> 101977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4116,"TargetID":101977,"Directional":true}]},{"ID":7712,"SourceStructureID":1724,"TargetStructureID":99106,"Label":"1724-99106 via BC Conventional Synapse from 99512 -> 99511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99512,"TargetID":99511,"Directional":true}]},{"ID":7713,"SourceStructureID":1724,"TargetStructureID":99256,"Label":"1724-99256 via Ribbon Synapse from 1769 -> 99260","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1769,"TargetID":99260,"Directional":true}]},{"ID":7714,"SourceStructureID":1724,"TargetStructureID":99309,"Label":"1724-99309 via Ribbon Synapse from 4029 -> 100404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4029,"TargetID":100404,"Directional":true}]},{"ID":7715,"SourceStructureID":1724,"TargetStructureID":99314,"Label":"1724-99314 via Ribbon Synapse from 4037 -> 99315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4037,"TargetID":99315,"Directional":true}]},{"ID":7716,"SourceStructureID":1724,"TargetStructureID":99334,"Label":"1724-99334 via Ribbon Synapse from 4044 -> 99335","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4044,"TargetID":99335,"Directional":true}]},{"ID":7717,"SourceStructureID":1724,"TargetStructureID":99364,"Label":"1724-99364 via Ribbon Synapse from 47391 -> 99430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47391,"TargetID":99430,"Directional":true}]},{"ID":7718,"SourceStructureID":1724,"TargetStructureID":99429,"Label":"1724-99429 via Ribbon Synapse from 47391 -> 99431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47391,"TargetID":99431,"Directional":true}]},{"ID":7719,"SourceStructureID":1724,"TargetStructureID":99440,"Label":"1724-99440 via BC Conventional Synapse from 99446 -> 99449","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99446,"TargetID":99449,"Directional":true}]},{"ID":7720,"SourceStructureID":1724,"TargetStructureID":99454,"Label":"1724-99454 via Ribbon Synapse from 47390 -> 99456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47390,"TargetID":99456,"Directional":true}]},{"ID":7721,"SourceStructureID":1724,"TargetStructureID":99468,"Label":"1724-99468 via Ribbon Synapse from 4062 -> 99471","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4062,"TargetID":99471,"Directional":true}]},{"ID":7722,"SourceStructureID":1724,"TargetStructureID":99472,"Label":"1724-99472 via Ribbon Synapse from 4062 -> 99478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4062,"TargetID":99478,"Directional":true}]},{"ID":7723,"SourceStructureID":1724,"TargetStructureID":99498,"Label":"1724-99498 via Ribbon Synapse from 4060 -> 99500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4060,"TargetID":99500,"Directional":true}]},{"ID":7724,"SourceStructureID":1724,"TargetStructureID":99549,"Label":"1724-99549 via Ribbon Synapse from 1798 -> 99550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1798,"TargetID":99550,"Directional":true}]},{"ID":7725,"SourceStructureID":1724,"TargetStructureID":99551,"Label":"1724-99551 via Ribbon Synapse from 1792 -> 99556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1792,"TargetID":99556,"Directional":true}]},{"ID":7726,"SourceStructureID":1724,"TargetStructureID":99554,"Label":"1724-99554 via Ribbon Synapse from 1792 -> 99555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1792,"TargetID":99555,"Directional":true}]},{"ID":7727,"SourceStructureID":1724,"TargetStructureID":99564,"Label":"1724-99564 via Ribbon Synapse from 1788 -> 99565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1788,"TargetID":99565,"Directional":true}]},{"ID":7728,"SourceStructureID":1724,"TargetStructureID":99566,"Label":"1724-99566 via Ribbon Synapse from 1788 -> 99567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1788,"TargetID":99567,"Directional":true}]},{"ID":7729,"SourceStructureID":1724,"TargetStructureID":99569,"Label":"1724-99569 via Ribbon Synapse from 1783 -> 99570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1783,"TargetID":99570,"Directional":true}]},{"ID":7730,"SourceStructureID":1724,"TargetStructureID":100248,"Label":"1724-100248 via Ribbon Synapse from 47397 -> 100249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47397,"TargetID":100249,"Directional":true}]},{"ID":7731,"SourceStructureID":1724,"TargetStructureID":100250,"Label":"1724-100250 via Ribbon Synapse from 43315 -> 100251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43315,"TargetID":100251,"Directional":true}]},{"ID":7732,"SourceStructureID":1724,"TargetStructureID":100310,"Label":"1724-100310 via Ribbon Synapse from 100313 -> 100321","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100313,"TargetID":100321,"Directional":true}]},{"ID":7733,"SourceStructureID":1724,"TargetStructureID":100338,"Label":"1724-100338 via BC Conventional Synapse from 119137 -> 119136","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119137,"TargetID":119136,"Directional":true}]},{"ID":7734,"SourceStructureID":1724,"TargetStructureID":100360,"Label":"1724-100360 via BC Conventional Synapse from 101511 -> 101512","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101511,"TargetID":101512,"Directional":true}]},{"ID":7735,"SourceStructureID":1724,"TargetStructureID":100405,"Label":"1724-100405 via Ribbon Synapse from 4027 -> 100406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4027,"TargetID":100406,"Directional":true}]},{"ID":7736,"SourceStructureID":1724,"TargetStructureID":100486,"Label":"1724-100486 via BC Conventional Synapse from 100494 -> 100495","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100494,"TargetID":100495,"Directional":true}]},{"ID":7737,"SourceStructureID":1724,"TargetStructureID":100562,"Label":"1724-100562 via Ribbon Synapse from 47369 -> 100563","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47369,"TargetID":100563,"Directional":true}]},{"ID":7738,"SourceStructureID":1724,"TargetStructureID":100572,"Label":"1724-100572 via Ribbon Synapse from 3940 -> 100590","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3940,"TargetID":100590,"Directional":true}]},{"ID":7739,"SourceStructureID":1724,"TargetStructureID":100591,"Label":"1724-100591 via Ribbon Synapse from 20013 -> 100592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20013,"TargetID":100592,"Directional":true}]},{"ID":7740,"SourceStructureID":1724,"TargetStructureID":100682,"Label":"1724-100682 via BC Conventional Synapse from 100683 -> 100684","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100683,"TargetID":100684,"Directional":true}]},{"ID":7741,"SourceStructureID":1724,"TargetStructureID":100685,"Label":"1724-100685 via Ribbon Synapse from 20180 -> 100686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20180,"TargetID":100686,"Directional":true}]},{"ID":7742,"SourceStructureID":1724,"TargetStructureID":100690,"Label":"1724-100690 via Ribbon Synapse from 20180 -> 100691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20180,"TargetID":100691,"Directional":true}]},{"ID":7743,"SourceStructureID":1724,"TargetStructureID":100748,"Label":"1724-100748 via Ribbon Synapse from 20182 -> 100749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20182,"TargetID":100749,"Directional":true}]},{"ID":7744,"SourceStructureID":1724,"TargetStructureID":100750,"Label":"1724-100750 via Ribbon Synapse from 20182 -> 100751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20182,"TargetID":100751,"Directional":true}]},{"ID":7745,"SourceStructureID":1724,"TargetStructureID":100846,"Label":"1724-100846 via Ribbon Synapse from 20185 -> 100851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20185,"TargetID":100851,"Directional":true}]},{"ID":7746,"SourceStructureID":1724,"TargetStructureID":100860,"Label":"1724-100860 via Ribbon Synapse from 20183 -> 101540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20183,"TargetID":101540,"Directional":true}]},{"ID":7747,"SourceStructureID":1724,"TargetStructureID":100871,"Label":"1724-100871 via Ribbon Synapse from 20191 -> 100893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20191,"TargetID":100893,"Directional":true}]},{"ID":7748,"SourceStructureID":1724,"TargetStructureID":100877,"Label":"1724-100877 via Ribbon Synapse from 20189 -> 100880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20189,"TargetID":100880,"Directional":true}]},{"ID":7749,"SourceStructureID":1724,"TargetStructureID":100878,"Label":"1724-100878 via Ribbon Synapse from 20189 -> 100879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20189,"TargetID":100879,"Directional":true}]},{"ID":7750,"SourceStructureID":1724,"TargetStructureID":101507,"Label":"1724-101507 via Ribbon Synapse from 20198 -> 101526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20198,"TargetID":101526,"Directional":true}]},{"ID":7751,"SourceStructureID":1724,"TargetStructureID":101516,"Label":"1724-101516 via Ribbon Synapse from 20194 -> 101517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20194,"TargetID":101517,"Directional":true}]},{"ID":7752,"SourceStructureID":1724,"TargetStructureID":101518,"Label":"1724-101518 via Ribbon Synapse from 20193 -> 101519, 20194 -> 101520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20193,"TargetID":101519,"Directional":true},{"SourceID":20194,"TargetID":101520,"Directional":true}]},{"ID":7753,"SourceStructureID":1724,"TargetStructureID":101550,"Label":"1724-101550 via BC Conventional Synapse from 101549 -> 101551","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101549,"TargetID":101551,"Directional":true}]},{"ID":7754,"SourceStructureID":1724,"TargetStructureID":101558,"Label":"1724-101558 via Ribbon Synapse from 1808 -> 101561","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1808,"TargetID":101561,"Directional":true}]},{"ID":7755,"SourceStructureID":1724,"TargetStructureID":101581,"Label":"1724-101581 via Ribbon Synapse from 1758 -> 101582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1758,"TargetID":101582,"Directional":true}]},{"ID":7756,"SourceStructureID":1724,"TargetStructureID":101594,"Label":"1724-101594 via Ribbon Synapse from 1746 -> 101595","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1746,"TargetID":101595,"Directional":true}]},{"ID":7757,"SourceStructureID":1724,"TargetStructureID":101675,"Label":"1724-101675 via Ribbon Synapse from 47342 -> 101676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47342,"TargetID":101676,"Directional":true}]},{"ID":7758,"SourceStructureID":1724,"TargetStructureID":101686,"Label":"1724-101686 via Ribbon Synapse from 4014 -> 101687","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4014,"TargetID":101687,"Directional":true}]},{"ID":7759,"SourceStructureID":1724,"TargetStructureID":101749,"Label":"1724-101749 via BC Conventional Synapse from 101752 -> 101754","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101752,"TargetID":101754,"Directional":true}]},{"ID":7760,"SourceStructureID":1724,"TargetStructureID":101767,"Label":"1724-101767 via Ribbon Synapse from 4094 -> 101768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4094,"TargetID":101768,"Directional":true}]},{"ID":7761,"SourceStructureID":1724,"TargetStructureID":101771,"Label":"1724-101771 via BC Conventional Synapse from 119170 -> 119169","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119170,"TargetID":119169,"Directional":true}]},{"ID":7762,"SourceStructureID":1724,"TargetStructureID":101814,"Label":"1724-101814 via Ribbon Synapse from 4096 -> 101817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4096,"TargetID":101817,"Directional":true}]},{"ID":7763,"SourceStructureID":1724,"TargetStructureID":101824,"Label":"1724-101824 via Ribbon Synapse from 4103 -> 101825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4103,"TargetID":101825,"Directional":true}]},{"ID":7764,"SourceStructureID":1724,"TargetStructureID":101842,"Label":"1724-101842 via Ribbon Synapse from 23721 -> 101853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23721,"TargetID":101853,"Directional":true}]},{"ID":7765,"SourceStructureID":1724,"TargetStructureID":101880,"Label":"1724-101880 via Ribbon Synapse from 101890 -> 101891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101890,"TargetID":101891,"Directional":true}]},{"ID":7766,"SourceStructureID":1724,"TargetStructureID":101892,"Label":"1724-101892 via Ribbon Synapse from 101890 -> 101893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101890,"TargetID":101893,"Directional":true}]},{"ID":7767,"SourceStructureID":1724,"TargetStructureID":101938,"Label":"1724-101938 via BC Conventional Synapse from 119542 -> 101949","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119542,"TargetID":101949,"Directional":true}]},{"ID":7768,"SourceStructureID":1724,"TargetStructureID":101944,"Label":"1724-101944 via Ribbon Synapse from 4105 -> 101945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4105,"TargetID":101945,"Directional":true}]},{"ID":7769,"SourceStructureID":1724,"TargetStructureID":101951,"Label":"1724-101951 via Ribbon Synapse from 47355 -> 101953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47355,"TargetID":101953,"Directional":true}]},{"ID":7770,"SourceStructureID":1724,"TargetStructureID":101954,"Label":"1724-101954 via Ribbon Synapse from 47356 -> 101955","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47356,"TargetID":101955,"Directional":true}]},{"ID":7771,"SourceStructureID":1724,"TargetStructureID":101972,"Label":"1724-101972 via Ribbon Synapse from 4120 -> 101973","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4120,"TargetID":101973,"Directional":true}]},{"ID":7772,"SourceStructureID":1724,"TargetStructureID":101974,"Label":"1724-101974 via Ribbon Synapse from 4120 -> 101976","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4120,"TargetID":101976,"Directional":true}]},{"ID":7773,"SourceStructureID":1724,"TargetStructureID":102509,"Label":"1724-102509 via Ribbon Synapse from 102508 -> 102510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102508,"TargetID":102510,"Directional":true}]},{"ID":7774,"SourceStructureID":1724,"TargetStructureID":102517,"Label":"1724-102517 via Ribbon Synapse from 30430 -> 102522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30430,"TargetID":102522,"Directional":true}]},{"ID":7775,"SourceStructureID":2063,"TargetStructureID":36130,"Label":"2063-36130 via Ribbon Synapse from 36139 -> 36140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36139,"TargetID":36140,"Directional":true}]},{"ID":7776,"SourceStructureID":2064,"TargetStructureID":5575,"Label":"2064-5575 via Conventional from 13185 -> 23054","Type":"Conventional","Directional":true,"Links":[{"SourceID":13185,"TargetID":23054,"Directional":true}]},{"ID":7777,"SourceStructureID":2064,"TargetStructureID":8749,"Label":"2064-8749 via Conventional from 123206 -> 123207","Type":"Conventional","Directional":true,"Links":[{"SourceID":123206,"TargetID":123207,"Directional":true}]},{"ID":7778,"SourceStructureID":2064,"TargetStructureID":9693,"Label":"2064-9693 via Conventional from 13197 -> 13198","Type":"Conventional","Directional":true,"Links":[{"SourceID":13197,"TargetID":13198,"Directional":true}]},{"ID":7779,"SourceStructureID":2065,"TargetStructureID":8575,"Label":"2065-8575 via BC Conventional Synapse from 62086 -> 62081","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62086,"TargetID":62081,"Directional":true}]},{"ID":7780,"SourceStructureID":2065,"TargetStructureID":59524,"Label":"2065-59524 via Ribbon Synapse from 36345 -> 59541, 36347 -> 59542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36345,"TargetID":59541,"Directional":true},{"SourceID":36347,"TargetID":59542,"Directional":true}]},{"ID":7781,"SourceStructureID":2065,"TargetStructureID":61439,"Label":"2065-61439 via Ribbon Synapse from 120083 -> 120084","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120083,"TargetID":120084,"Directional":true}]},{"ID":7782,"SourceStructureID":2610,"TargetStructureID":382,"Label":"2610-382 via Conventional from 2656 -> 41977","Type":"Conventional","Directional":true,"Links":[{"SourceID":2656,"TargetID":41977,"Directional":true}]},{"ID":7783,"SourceStructureID":2610,"TargetStructureID":5325,"Label":"2610-5325 via Conventional from 2679 -> 68758","Type":"Conventional","Directional":true,"Links":[{"SourceID":2679,"TargetID":68758,"Directional":true}]},{"ID":7784,"SourceStructureID":2610,"TargetStructureID":7594,"Label":"2610-7594 via Touch from 25117 -> 25116","Type":"Touch","Directional":true,"Links":[{"SourceID":25117,"TargetID":25116,"Directional":true}]},{"ID":7785,"SourceStructureID":2610,"TargetStructureID":8485,"Label":"2610-8485 via Conventional from 2630 -> 28881, 2632 -> 28879","Type":"Conventional","Directional":true,"Links":[{"SourceID":2630,"TargetID":28881,"Directional":true},{"SourceID":2632,"TargetID":28879,"Directional":true}]},{"ID":7786,"SourceStructureID":2610,"TargetStructureID":16940,"Label":"2610-16940 via Conventional from 23153 -> 71260","Type":"Conventional","Directional":true,"Links":[{"SourceID":23153,"TargetID":71260,"Directional":true}]},{"ID":7787,"SourceStructureID":2610,"TargetStructureID":28913,"Label":"2610-28913 via Conventional from 2634 -> 28926, 2657 -> 28914","Type":"Conventional","Directional":true,"Links":[{"SourceID":2634,"TargetID":28926,"Directional":true},{"SourceID":2657,"TargetID":28914,"Directional":true}]},{"ID":7788,"SourceStructureID":2610,"TargetStructureID":71261,"Label":"2610-71261 via Conventional from 23155 -> 71262","Type":"Conventional","Directional":true,"Links":[{"SourceID":23155,"TargetID":71262,"Directional":true}]},{"ID":7789,"SourceStructureID":3116,"TargetStructureID":606,"Label":"3116-606 via Ribbon Synapse from 46566 -> 53369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46566,"TargetID":53369,"Directional":true}]},{"ID":7790,"SourceStructureID":3116,"TargetStructureID":5107,"Label":"3116-5107 via Ribbon Synapse from 43862 -> 43491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43862,"TargetID":43491,"Directional":true}]},{"ID":7791,"SourceStructureID":3116,"TargetStructureID":5435,"Label":"3116-5435 via Ribbon Synapse from 126382 -> 41138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126382,"TargetID":41138,"Directional":true}]},{"ID":7792,"SourceStructureID":3116,"TargetStructureID":15796,"Label":"3116-15796 via Ribbon Synapse from 3144 -> 19369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3144,"TargetID":19369,"Directional":true}]},{"ID":7793,"SourceStructureID":3116,"TargetStructureID":35811,"Label":"3116-35811 via Ribbon Synapse from 23822 -> 35816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23822,"TargetID":35816,"Directional":true}]},{"ID":7794,"SourceStructureID":3116,"TargetStructureID":68539,"Label":"3116-68539 via Ribbon Synapse from 27995 -> 73642","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27995,"TargetID":73642,"Directional":true}]},{"ID":7795,"SourceStructureID":3116,"TargetStructureID":90254,"Label":"3116-90254 via Ribbon Synapse from 46567 -> 116732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46567,"TargetID":116732,"Directional":true}]},{"ID":7796,"SourceStructureID":3116,"TargetStructureID":91547,"Label":"3116-91547 via Ribbon Synapse from 23811 -> 91548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23811,"TargetID":91548,"Directional":true}]},{"ID":7797,"SourceStructureID":3116,"TargetStructureID":91549,"Label":"3116-91549 via Ribbon Synapse from 23810 -> 91550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23810,"TargetID":91550,"Directional":true}]},{"ID":7798,"SourceStructureID":3116,"TargetStructureID":100765,"Label":"3116-100765 via Ribbon Synapse from 27999 -> 147295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27999,"TargetID":147295,"Directional":true}]},{"ID":7799,"SourceStructureID":3116,"TargetStructureID":116729,"Label":"3116-116729 via Ribbon Synapse from 46567 -> 116731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46567,"TargetID":116731,"Directional":true}]},{"ID":7800,"SourceStructureID":3257,"TargetStructureID":165,"Label":"3257-165 via Conventional from 66219 -> 66224","Type":"Conventional","Directional":true,"Links":[{"SourceID":66219,"TargetID":66224,"Directional":true}]},{"ID":7801,"SourceStructureID":3257,"TargetStructureID":172,"Label":"3257-172 via Conventional from 18066 -> 128137","Type":"Conventional","Directional":true,"Links":[{"SourceID":18066,"TargetID":128137,"Directional":true}]},{"ID":7802,"SourceStructureID":3257,"TargetStructureID":968,"Label":"3257-968 via Conventional from 33287 -> 12174, 33289 -> 12172","Type":"Conventional","Directional":true,"Links":[{"SourceID":33287,"TargetID":12174,"Directional":true},{"SourceID":33289,"TargetID":12172,"Directional":true}]},{"ID":7803,"SourceStructureID":3257,"TargetStructureID":989,"Label":"3257-989 via Conventional from 129880 -> 13093","Type":"Conventional","Directional":true,"Links":[{"SourceID":129880,"TargetID":13093,"Directional":true}]},{"ID":7804,"SourceStructureID":3257,"TargetStructureID":4568,"Label":"3257-4568 via Conventional from 21881 -> 11513, 66225 -> 11524, 130016 -> 11512","Type":"Conventional","Directional":true,"Links":[{"SourceID":21881,"TargetID":11513,"Directional":true},{"SourceID":66225,"TargetID":11524,"Directional":true},{"SourceID":130016,"TargetID":11512,"Directional":true}]},{"ID":7805,"SourceStructureID":3257,"TargetStructureID":4569,"Label":"3257-4569 via Conventional from 47537 -> 47535","Type":"Conventional","Directional":true,"Links":[{"SourceID":47537,"TargetID":47535,"Directional":true}]},{"ID":7806,"SourceStructureID":3257,"TargetStructureID":9787,"Label":"3257-9787 via Conventional from 9175 -> 12067, 18069 -> 18061, 129887 -> 18045","Type":"Conventional","Directional":true,"Links":[{"SourceID":9175,"TargetID":12067,"Directional":true},{"SourceID":18069,"TargetID":18061,"Directional":true},{"SourceID":129887,"TargetID":18045,"Directional":true}]},{"ID":7807,"SourceStructureID":3257,"TargetStructureID":34336,"Label":"3257-34336 via Conventional from 9122 -> 34376","Type":"Conventional","Directional":true,"Links":[{"SourceID":9122,"TargetID":34376,"Directional":true}]},{"ID":7808,"SourceStructureID":3679,"TargetStructureID":138,"Label":"3679-138 via Conventional from 3768 -> 32877, 22701 -> 46419, 22709 -> 46420, 22726 -> 2429, 22729 -> 2219, 29401 -> 29402, 29403 -> 29404","Type":"Conventional","Directional":true,"Links":[{"SourceID":3768,"TargetID":32877,"Directional":true},{"SourceID":22701,"TargetID":46419,"Directional":true},{"SourceID":22709,"TargetID":46420,"Directional":true},{"SourceID":22726,"TargetID":2429,"Directional":true},{"SourceID":22729,"TargetID":2219,"Directional":true},{"SourceID":29401,"TargetID":29402,"Directional":true},{"SourceID":29403,"TargetID":29404,"Directional":true}]},{"ID":7809,"SourceStructureID":3679,"TargetStructureID":161,"Label":"3679-161 via Conventional from 7929 -> 27209, 27212 -> 27211","Type":"Conventional","Directional":true,"Links":[{"SourceID":7929,"TargetID":27209,"Directional":true},{"SourceID":27212,"TargetID":27211,"Directional":true}]},{"ID":7810,"SourceStructureID":3679,"TargetStructureID":992,"Label":"3679-992 via Conventional from 5066 -> 5065, 29409 -> 29410, 29413 -> 29412, 31145 -> 31144, 31147 -> 31146, 33878 -> 33879","Type":"Conventional","Directional":true,"Links":[{"SourceID":5066,"TargetID":5065,"Directional":true},{"SourceID":29409,"TargetID":29410,"Directional":true},{"SourceID":29413,"TargetID":29412,"Directional":true},{"SourceID":31145,"TargetID":31144,"Directional":true},{"SourceID":31147,"TargetID":31146,"Directional":true},{"SourceID":33878,"TargetID":33879,"Directional":true}]},{"ID":7811,"SourceStructureID":3679,"TargetStructureID":2063,"Label":"3679-2063 via Conventional from 31131 -> 21761","Type":"Conventional","Directional":true,"Links":[{"SourceID":31131,"TargetID":21761,"Directional":true}]},{"ID":7812,"SourceStructureID":3679,"TargetStructureID":4567,"Label":"3679-4567 via Conventional from 29407 -> 60554, 29414 -> 21334, 29415 -> 29416, 60553 -> 60552, 60862 -> 60861","Type":"Conventional","Directional":true,"Links":[{"SourceID":29407,"TargetID":60554,"Directional":true},{"SourceID":29414,"TargetID":21334,"Directional":true},{"SourceID":29415,"TargetID":29416,"Directional":true},{"SourceID":60553,"TargetID":60552,"Directional":true},{"SourceID":60862,"TargetID":60861,"Directional":true}]},{"ID":7813,"SourceStructureID":3679,"TargetStructureID":4849,"Label":"3679-4849 via Conventional from 31124 -> 31125, 31126 -> 31127, 31128 -> 31129, 130021 -> 130020","Type":"Conventional","Directional":true,"Links":[{"SourceID":31124,"TargetID":31125,"Directional":true},{"SourceID":31126,"TargetID":31127,"Directional":true},{"SourceID":31128,"TargetID":31129,"Directional":true},{"SourceID":130021,"TargetID":130020,"Directional":true}]},{"ID":7814,"SourceStructureID":3679,"TargetStructureID":5150,"Label":"3679-5150 via Conventional from 5185 -> 5183, 15437 -> 5233","Type":"Conventional","Directional":true,"Links":[{"SourceID":5185,"TargetID":5183,"Directional":true},{"SourceID":15437,"TargetID":5233,"Directional":true}]},{"ID":7815,"SourceStructureID":3679,"TargetStructureID":5502,"Label":"3679-5502 via Conventional from 6374 -> 27267, 6375 -> 27263, 27261 -> 27262","Type":"Conventional","Directional":true,"Links":[{"SourceID":6374,"TargetID":27267,"Directional":true},{"SourceID":6375,"TargetID":27263,"Directional":true},{"SourceID":27261,"TargetID":27262,"Directional":true}]},{"ID":7816,"SourceStructureID":3679,"TargetStructureID":5648,"Label":"3679-5648 via Conventional from 6372 -> 23417","Type":"Conventional","Directional":true,"Links":[{"SourceID":6372,"TargetID":23417,"Directional":true}]},{"ID":7817,"SourceStructureID":3679,"TargetStructureID":10335,"Label":"3679-10335 via Conventional from 10330 -> 106282","Type":"Conventional","Directional":true,"Links":[{"SourceID":10330,"TargetID":106282,"Directional":true}]},{"ID":7818,"SourceStructureID":3679,"TargetStructureID":13469,"Label":"3679-13469 via Conventional from 16252 -> 13471","Type":"Conventional","Directional":true,"Links":[{"SourceID":16252,"TargetID":13471,"Directional":true}]},{"ID":7819,"SourceStructureID":3679,"TargetStructureID":28913,"Label":"3679-28913 via Conventional from 28936 -> 28935, 29408 -> 28934","Type":"Conventional","Directional":true,"Links":[{"SourceID":28936,"TargetID":28935,"Directional":true},{"SourceID":29408,"TargetID":28934,"Directional":true}]},{"ID":7820,"SourceStructureID":3679,"TargetStructureID":33881,"Label":"3679-33881 via Conventional from 33880 -> 33926","Type":"Conventional","Directional":true,"Links":[{"SourceID":33880,"TargetID":33926,"Directional":true}]},{"ID":7821,"SourceStructureID":3756,"TargetStructureID":162,"Label":"3756-162 via Ribbon Synapse from 56913 -> 129453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56913,"TargetID":129453,"Directional":true}]},{"ID":7822,"SourceStructureID":3756,"TargetStructureID":5107,"Label":"3756-5107 via Ribbon Synapse from 116264 -> 129069, 116284 -> 129098, 129213 -> 129214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116264,"TargetID":129069,"Directional":true},{"SourceID":116284,"TargetID":129098,"Directional":true},{"SourceID":129213,"TargetID":129214,"Directional":true}]},{"ID":7823,"SourceStructureID":3756,"TargetStructureID":5374,"Label":"3756-5374 via Ribbon Synapse from 127642 -> 127643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127642,"TargetID":127643,"Directional":true}]},{"ID":7824,"SourceStructureID":3756,"TargetStructureID":5405,"Label":"3756-5405 via Ribbon Synapse from 116256 -> 129006, 116257 -> 129007, 128994 -> 128998, 128999 -> 129000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116256,"TargetID":129006,"Directional":true},{"SourceID":116257,"TargetID":129007,"Directional":true},{"SourceID":128994,"TargetID":128998,"Directional":true},{"SourceID":128999,"TargetID":129000,"Directional":true}]},{"ID":7825,"SourceStructureID":3756,"TargetStructureID":5442,"Label":"3756-5442 via Ribbon Synapse from 129076 -> 129077","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129076,"TargetID":129077,"Directional":true}]},{"ID":7826,"SourceStructureID":3756,"TargetStructureID":6300,"Label":"3756-6300 via Ribbon Synapse from 129234 -> 129233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129234,"TargetID":129233,"Directional":true}]},{"ID":7827,"SourceStructureID":3756,"TargetStructureID":7134,"Label":"3756-7134 via Ribbon Synapse from 53621 -> 53617, 122234 -> 122231, 122235 -> 122236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53621,"TargetID":53617,"Directional":true},{"SourceID":122234,"TargetID":122231,"Directional":true},{"SourceID":122235,"TargetID":122236,"Directional":true}]},{"ID":7828,"SourceStructureID":3756,"TargetStructureID":8575,"Label":"3756-8575 via BC Conventional Synapse from 98368 -> 62832, 128893 -> 62811","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98368,"TargetID":62832,"Directional":true},{"SourceID":128893,"TargetID":62811,"Directional":true}]},{"ID":7829,"SourceStructureID":3756,"TargetStructureID":8575,"Label":"3756-8575 via Ribbon Synapse from 122232 -> 62848, 128868 -> 62813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122232,"TargetID":62848,"Directional":true},{"SourceID":128868,"TargetID":62813,"Directional":true}]},{"ID":7830,"SourceStructureID":3756,"TargetStructureID":12203,"Label":"3756-12203 via Ribbon Synapse from 12253 -> 12252, 129017 -> 12252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12253,"TargetID":12252,"Directional":true},{"SourceID":129017,"TargetID":12252,"Directional":true}]},{"ID":7831,"SourceStructureID":3756,"TargetStructureID":15796,"Label":"3756-15796 via BC Conventional Synapse from 119336 -> 147779","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119336,"TargetID":147779,"Directional":true}]},{"ID":7832,"SourceStructureID":3756,"TargetStructureID":15796,"Label":"3756-15796 via Ribbon Synapse from 116206 -> 147786, 129196 -> 147785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116206,"TargetID":147786,"Directional":true},{"SourceID":129196,"TargetID":147785,"Directional":true}]},{"ID":7833,"SourceStructureID":3756,"TargetStructureID":22974,"Label":"3756-22974 via Ribbon Synapse from 54440 -> 68993, 93262 -> 128781, 127642 -> 68990","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54440,"TargetID":68993,"Directional":true},{"SourceID":93262,"TargetID":128781,"Directional":true},{"SourceID":127642,"TargetID":68990,"Directional":true}]},{"ID":7834,"SourceStructureID":3756,"TargetStructureID":24174,"Label":"3756-24174 via Ribbon Synapse from 129114 -> 129116","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129114,"TargetID":129116,"Directional":true}]},{"ID":7835,"SourceStructureID":3756,"TargetStructureID":29702,"Label":"3756-29702 via Ribbon Synapse from 128982 -> 75479","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128982,"TargetID":75479,"Directional":true}]},{"ID":7836,"SourceStructureID":3756,"TargetStructureID":35894,"Label":"3756-35894 via Ribbon Synapse from 35960 -> 35961, 35963 -> 35962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35960,"TargetID":35961,"Directional":true},{"SourceID":35963,"TargetID":35962,"Directional":true}]},{"ID":7837,"SourceStructureID":3756,"TargetStructureID":40604,"Label":"3756-40604 via BC Conventional Synapse from 116079 -> 129211","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":116079,"TargetID":129211,"Directional":true}]},{"ID":7838,"SourceStructureID":3756,"TargetStructureID":40604,"Label":"3756-40604 via Ribbon Synapse from 116260 -> 41402","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116260,"TargetID":41402,"Directional":true}]},{"ID":7839,"SourceStructureID":3756,"TargetStructureID":45220,"Label":"3756-45220 via Ribbon Synapse from 69849 -> 128968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69849,"TargetID":128968,"Directional":true}]},{"ID":7840,"SourceStructureID":3756,"TargetStructureID":56955,"Label":"3756-56955 via Ribbon Synapse from 35857 -> 129127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35857,"TargetID":129127,"Directional":true}]},{"ID":7841,"SourceStructureID":3756,"TargetStructureID":57064,"Label":"3756-57064 via BC Conventional Synapse from 128943 -> 128944","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":128943,"TargetID":128944,"Directional":true}]},{"ID":7842,"SourceStructureID":3756,"TargetStructureID":61823,"Label":"3756-61823 via Ribbon Synapse from 116008 -> 128879, 116009 -> 128878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116008,"TargetID":128879,"Directional":true},{"SourceID":116009,"TargetID":128878,"Directional":true}]},{"ID":7843,"SourceStructureID":3756,"TargetStructureID":68539,"Label":"3756-68539 via Ribbon Synapse from 129092 -> 129096, 129094 -> 129095","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129092,"TargetID":129096,"Directional":true},{"SourceID":129094,"TargetID":129095,"Directional":true}]},{"ID":7844,"SourceStructureID":3756,"TargetStructureID":69845,"Label":"3756-69845 via Ribbon Synapse from 69844 -> 69846","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69844,"TargetID":69846,"Directional":true}]},{"ID":7845,"SourceStructureID":3756,"TargetStructureID":69847,"Label":"3756-69847 via Ribbon Synapse from 69844 -> 69848, 69849 -> 69848","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69844,"TargetID":69848,"Directional":true},{"SourceID":69849,"TargetID":69848,"Directional":true}]},{"ID":7846,"SourceStructureID":3756,"TargetStructureID":82961,"Label":"3756-82961 via Ribbon Synapse from 15639 -> 82963, 116237 -> 82963","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15639,"TargetID":82963,"Directional":true},{"SourceID":116237,"TargetID":82963,"Directional":true}]},{"ID":7847,"SourceStructureID":3756,"TargetStructureID":112205,"Label":"3756-112205 via Ribbon Synapse from 116119 -> 129349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116119,"TargetID":129349,"Directional":true}]},{"ID":7848,"SourceStructureID":3756,"TargetStructureID":112476,"Label":"3756-112476 via Ribbon Synapse from 116113 -> 129317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116113,"TargetID":129317,"Directional":true}]},{"ID":7849,"SourceStructureID":3756,"TargetStructureID":112843,"Label":"3756-112843 via Ribbon Synapse from 56894 -> 120367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56894,"TargetID":120367,"Directional":true}]},{"ID":7850,"SourceStructureID":3756,"TargetStructureID":113186,"Label":"3756-113186 via Ribbon Synapse from 129392 -> 129393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129392,"TargetID":129393,"Directional":true}]},{"ID":7851,"SourceStructureID":3756,"TargetStructureID":120282,"Label":"3756-120282 via Ribbon Synapse from 54456 -> 128821, 114043 -> 128891, 128819 -> 128820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54456,"TargetID":128821,"Directional":true},{"SourceID":114043,"TargetID":128891,"Directional":true},{"SourceID":128819,"TargetID":128820,"Directional":true}]},{"ID":7852,"SourceStructureID":3756,"TargetStructureID":120285,"Label":"3756-120285 via Ribbon Synapse from 120284 -> 120286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120284,"TargetID":120286,"Directional":true}]},{"ID":7853,"SourceStructureID":3756,"TargetStructureID":120291,"Label":"3756-120291 via Ribbon Synapse from 116017 -> 120297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116017,"TargetID":120297,"Directional":true}]},{"ID":7854,"SourceStructureID":3756,"TargetStructureID":120299,"Label":"3756-120299 via Ribbon Synapse from 116018 -> 120302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116018,"TargetID":120302,"Directional":true}]},{"ID":7855,"SourceStructureID":3756,"TargetStructureID":120309,"Label":"3756-120309 via Ribbon Synapse from 128782 -> 128784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128782,"TargetID":128784,"Directional":true}]},{"ID":7856,"SourceStructureID":3756,"TargetStructureID":120321,"Label":"3756-120321 via Ribbon Synapse from 116037 -> 128795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116037,"TargetID":128795,"Directional":true}]},{"ID":7857,"SourceStructureID":3756,"TargetStructureID":120331,"Label":"3756-120331 via Ribbon Synapse from 116052 -> 120333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116052,"TargetID":120333,"Directional":true}]},{"ID":7858,"SourceStructureID":3756,"TargetStructureID":120343,"Label":"3756-120343 via Ribbon Synapse from 116047 -> 129232","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116047,"TargetID":129232,"Directional":true}]},{"ID":7859,"SourceStructureID":3756,"TargetStructureID":120347,"Label":"3756-120347 via Ribbon Synapse from 56918 -> 120353","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56918,"TargetID":120353,"Directional":true}]},{"ID":7860,"SourceStructureID":3756,"TargetStructureID":120355,"Label":"3756-120355 via Ribbon Synapse from 129209 -> 129210","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129209,"TargetID":129210,"Directional":true}]},{"ID":7861,"SourceStructureID":3756,"TargetStructureID":120372,"Label":"3756-120372 via Ribbon Synapse from 129313 -> 129314","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129313,"TargetID":129314,"Directional":true}]},{"ID":7862,"SourceStructureID":3756,"TargetStructureID":120379,"Label":"3756-120379 via Ribbon Synapse from 57327 -> 120385, 116131 -> 120381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57327,"TargetID":120385,"Directional":true},{"SourceID":116131,"TargetID":120381,"Directional":true}]},{"ID":7863,"SourceStructureID":3756,"TargetStructureID":120393,"Label":"3756-120393 via Ribbon Synapse from 129404 -> 129405, 129419 -> 129420","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129404,"TargetID":129405,"Directional":true},{"SourceID":129419,"TargetID":129420,"Directional":true}]},{"ID":7864,"SourceStructureID":3756,"TargetStructureID":120398,"Label":"3756-120398 via Ribbon Synapse from 116151 -> 129421","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116151,"TargetID":129421,"Directional":true}]},{"ID":7865,"SourceStructureID":3756,"TargetStructureID":120403,"Label":"3756-120403 via Ribbon Synapse from 116163 -> 120407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116163,"TargetID":120407,"Directional":true}]},{"ID":7866,"SourceStructureID":3756,"TargetStructureID":120416,"Label":"3756-120416 via Ribbon Synapse from 116170 -> 129429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116170,"TargetID":129429,"Directional":true}]},{"ID":7867,"SourceStructureID":3756,"TargetStructureID":120425,"Label":"3756-120425 via Ribbon Synapse from 116180 -> 129468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116180,"TargetID":129468,"Directional":true}]},{"ID":7868,"SourceStructureID":3756,"TargetStructureID":120431,"Label":"3756-120431 via Ribbon Synapse from 116173 -> 120438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116173,"TargetID":120438,"Directional":true}]},{"ID":7869,"SourceStructureID":3756,"TargetStructureID":120464,"Label":"3756-120464 via Ribbon Synapse from 128940 -> 128939","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128940,"TargetID":128939,"Directional":true}]},{"ID":7870,"SourceStructureID":3756,"TargetStructureID":120478,"Label":"3756-120478 via Ribbon Synapse from 56680 -> 129074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56680,"TargetID":129074,"Directional":true}]},{"ID":7871,"SourceStructureID":3756,"TargetStructureID":120480,"Label":"3756-120480 via Ribbon Synapse from 129104 -> 129105","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129104,"TargetID":129105,"Directional":true}]},{"ID":7872,"SourceStructureID":3756,"TargetStructureID":120484,"Label":"3756-120484 via Ribbon Synapse from 116272 -> 120486, 116281 -> 129100","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116272,"TargetID":120486,"Directional":true},{"SourceID":116281,"TargetID":129100,"Directional":true}]},{"ID":7873,"SourceStructureID":3756,"TargetStructureID":120489,"Label":"3756-120489 via Ribbon Synapse from 35963 -> 129123, 56954 -> 120492, 116286 -> 120493, 129114 -> 129117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35963,"TargetID":129123,"Directional":true},{"SourceID":56954,"TargetID":120492,"Directional":true},{"SourceID":116286,"TargetID":120493,"Directional":true},{"SourceID":129114,"TargetID":129117,"Directional":true}]},{"ID":7874,"SourceStructureID":3756,"TargetStructureID":120499,"Label":"3756-120499 via Ribbon Synapse from 35857 -> 129162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35857,"TargetID":129162,"Directional":true}]},{"ID":7875,"SourceStructureID":3756,"TargetStructureID":120518,"Label":"3756-120518 via Ribbon Synapse from 129204 -> 129205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129204,"TargetID":129205,"Directional":true}]},{"ID":7876,"SourceStructureID":3756,"TargetStructureID":120521,"Label":"3756-120521 via Ribbon Synapse from 116012 -> 128902","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116012,"TargetID":128902,"Directional":true}]},{"ID":7877,"SourceStructureID":3756,"TargetStructureID":120523,"Label":"3756-120523 via Ribbon Synapse from 35857 -> 120531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35857,"TargetID":120531,"Directional":true}]},{"ID":7878,"SourceStructureID":3756,"TargetStructureID":120534,"Label":"3756-120534 via Ribbon Synapse from 11707 -> 128754, 37801 -> 128755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11707,"TargetID":128754,"Directional":true},{"SourceID":37801,"TargetID":128755,"Directional":true}]},{"ID":7879,"SourceStructureID":3756,"TargetStructureID":120536,"Label":"3756-120536 via BC Conventional Synapse from 128769 -> 128770","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":128769,"TargetID":128770,"Directional":true}]},{"ID":7880,"SourceStructureID":3756,"TargetStructureID":120536,"Label":"3756-120536 via Ribbon Synapse from 11710 -> 128768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11710,"TargetID":128768,"Directional":true}]},{"ID":7881,"SourceStructureID":3756,"TargetStructureID":120538,"Label":"3756-120538 via Ribbon Synapse from 116003 -> 120540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116003,"TargetID":120540,"Directional":true}]},{"ID":7882,"SourceStructureID":3756,"TargetStructureID":120544,"Label":"3756-120544 via Ribbon Synapse from 54457 -> 128825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54457,"TargetID":128825,"Directional":true}]},{"ID":7883,"SourceStructureID":3756,"TargetStructureID":120554,"Label":"3756-120554 via Ribbon Synapse from 56899 -> 129400","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56899,"TargetID":129400,"Directional":true}]},{"ID":7884,"SourceStructureID":3756,"TargetStructureID":120563,"Label":"3756-120563 via Ribbon Synapse from 129001 -> 129002","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129001,"TargetID":129002,"Directional":true}]},{"ID":7885,"SourceStructureID":3756,"TargetStructureID":120953,"Label":"3756-120953 via Ribbon Synapse from 56952 -> 120955","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56952,"TargetID":120955,"Directional":true}]},{"ID":7886,"SourceStructureID":3756,"TargetStructureID":120963,"Label":"3756-120963 via Ribbon Synapse from 116293 -> 129166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116293,"TargetID":129166,"Directional":true}]},{"ID":7887,"SourceStructureID":3756,"TargetStructureID":125397,"Label":"3756-125397 via Ribbon Synapse from 56913 -> 129454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56913,"TargetID":129454,"Directional":true}]},{"ID":7888,"SourceStructureID":3756,"TargetStructureID":128758,"Label":"3756-128758 via Ribbon Synapse from 37802 -> 128759, 128760 -> 128759, 128761 -> 128759","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37802,"TargetID":128759,"Directional":true},{"SourceID":128760,"TargetID":128759,"Directional":true},{"SourceID":128761,"TargetID":128759,"Directional":true}]},{"ID":7889,"SourceStructureID":3756,"TargetStructureID":128790,"Label":"3756-128790 via Ribbon Synapse from 93258 -> 128791, 93259 -> 128792, 116037 -> 128793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93258,"TargetID":128791,"Directional":true},{"SourceID":93259,"TargetID":128792,"Directional":true},{"SourceID":116037,"TargetID":128793,"Directional":true}]},{"ID":7890,"SourceStructureID":3756,"TargetStructureID":128803,"Label":"3756-128803 via Ribbon Synapse from 116035 -> 128804","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116035,"TargetID":128804,"Directional":true}]},{"ID":7891,"SourceStructureID":3756,"TargetStructureID":128816,"Label":"3756-128816 via Ribbon Synapse from 128814 -> 128818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128814,"TargetID":128818,"Directional":true}]},{"ID":7892,"SourceStructureID":3756,"TargetStructureID":128907,"Label":"3756-128907 via Ribbon Synapse from 116017 -> 128908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116017,"TargetID":128908,"Directional":true}]},{"ID":7893,"SourceStructureID":3756,"TargetStructureID":128992,"Label":"3756-128992 via Ribbon Synapse from 128993 -> 128995","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128993,"TargetID":128995,"Directional":true}]},{"ID":7894,"SourceStructureID":3756,"TargetStructureID":129465,"Label":"3756-129465 via Ribbon Synapse from 129462 -> 129466","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129462,"TargetID":129466,"Directional":true}]},{"ID":7895,"SourceStructureID":3865,"TargetStructureID":181,"Label":"3865-181 via Conventional from 36120 -> 34090","Type":"Conventional","Directional":true,"Links":[{"SourceID":36120,"TargetID":34090,"Directional":true}]},{"ID":7896,"SourceStructureID":3865,"TargetStructureID":968,"Label":"3865-968 via Conventional from 132115 -> 132116","Type":"Conventional","Directional":true,"Links":[{"SourceID":132115,"TargetID":132116,"Directional":true}]},{"ID":7897,"SourceStructureID":3865,"TargetStructureID":5278,"Label":"3865-5278 via Conventional from 36112 -> 114521, 99727 -> 20079, 99823 -> 20158","Type":"Conventional","Directional":true,"Links":[{"SourceID":36112,"TargetID":114521,"Directional":true},{"SourceID":99727,"TargetID":20079,"Directional":true},{"SourceID":99823,"TargetID":20158,"Directional":true}]},{"ID":7898,"SourceStructureID":3865,"TargetStructureID":6169,"Label":"3865-6169 via Conventional from 36126 -> 36127","Type":"Conventional","Directional":true,"Links":[{"SourceID":36126,"TargetID":36127,"Directional":true}]},{"ID":7899,"SourceStructureID":3865,"TargetStructureID":8575,"Label":"3865-8575 via Conventional from 132213 -> 132214","Type":"Conventional","Directional":true,"Links":[{"SourceID":132213,"TargetID":132214,"Directional":true}]},{"ID":7900,"SourceStructureID":3865,"TargetStructureID":129648,"Label":"3865-129648 via Conventional from 36123 -> 129652","Type":"Conventional","Directional":true,"Links":[{"SourceID":36123,"TargetID":129652,"Directional":true}]},{"ID":7901,"SourceStructureID":3865,"TargetStructureID":132220,"Label":"3865-132220 via Conventional from 132232 -> 132234","Type":"Conventional","Directional":true,"Links":[{"SourceID":132232,"TargetID":132234,"Directional":true}]},{"ID":7902,"SourceStructureID":3881,"TargetStructureID":5609,"Label":"3881-5609 via Ribbon Synapse from 31396 -> 31395","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31396,"TargetID":31395,"Directional":true}]},{"ID":7903,"SourceStructureID":3881,"TargetStructureID":11229,"Label":"3881-11229 via Ribbon Synapse from 28979 -> 28978, 135599 -> 135600","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28979,"TargetID":28978,"Directional":true},{"SourceID":135599,"TargetID":135600,"Directional":true}]},{"ID":7904,"SourceStructureID":3928,"TargetStructureID":115,"Label":"3928-115 via Ribbon Synapse from 42555 -> 8083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42555,"TargetID":8083,"Directional":true}]},{"ID":7905,"SourceStructureID":3928,"TargetStructureID":7225,"Label":"3928-7225 via Ribbon Synapse from 40704 -> 42446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40704,"TargetID":42446,"Directional":true}]},{"ID":7906,"SourceStructureID":3928,"TargetStructureID":7274,"Label":"3928-7274 via BC Conventional Synapse from 40680 -> 40676, 40823 -> 41813","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":40680,"TargetID":40676,"Directional":true},{"SourceID":40823,"TargetID":41813,"Directional":true}]},{"ID":7907,"SourceStructureID":3928,"TargetStructureID":7688,"Label":"3928-7688 via BC Conventional Synapse from 36364 -> 40787","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":36364,"TargetID":40787,"Directional":true}]},{"ID":7908,"SourceStructureID":3928,"TargetStructureID":8551,"Label":"3928-8551 via Ribbon Synapse from 40707 -> 8559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40707,"TargetID":8559,"Directional":true}]},{"ID":7909,"SourceStructureID":3928,"TargetStructureID":46741,"Label":"3928-46741 via Ribbon Synapse from 41457 -> 137006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41457,"TargetID":137006,"Directional":true}]},{"ID":7910,"SourceStructureID":4568,"TargetStructureID":174,"Label":"4568-174 via Ribbon Synapse from 21882 -> 21883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21882,"TargetID":21883,"Directional":true}]},{"ID":7911,"SourceStructureID":4568,"TargetStructureID":3257,"Label":"4568-3257 via Ribbon Synapse from 11521 -> 66231, 11523 -> 12448","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11521,"TargetID":66231,"Directional":true},{"SourceID":11523,"TargetID":12448,"Directional":true}]},{"ID":7912,"SourceStructureID":4568,"TargetStructureID":5435,"Label":"4568-5435 via Ribbon Synapse from 11580 -> 41139, 11593 -> 41098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11580,"TargetID":41139,"Directional":true},{"SourceID":11593,"TargetID":41098,"Directional":true}]},{"ID":7913,"SourceStructureID":4568,"TargetStructureID":6169,"Label":"4568-6169 via Ribbon Synapse from 11551 -> 9473","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11551,"TargetID":9473,"Directional":true}]},{"ID":7914,"SourceStructureID":4568,"TargetStructureID":7859,"Label":"4568-7859 via Ribbon Synapse from 11561 -> 64685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11561,"TargetID":64685,"Directional":true}]},{"ID":7915,"SourceStructureID":4568,"TargetStructureID":8575,"Label":"4568-8575 via Ribbon Synapse from 11574 -> 62255","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11574,"TargetID":62255,"Directional":true}]},{"ID":7916,"SourceStructureID":4568,"TargetStructureID":43404,"Label":"4568-43404 via Ribbon Synapse from 11521 -> 43405","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11521,"TargetID":43405,"Directional":true}]},{"ID":7917,"SourceStructureID":4568,"TargetStructureID":64777,"Label":"4568-64777 via Ribbon Synapse from 11571 -> 64782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11571,"TargetID":64782,"Directional":true}]},{"ID":7918,"SourceStructureID":4569,"TargetStructureID":606,"Label":"4569-606 via Ribbon Synapse from 47507 -> 50891, 53319 -> 53320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47507,"TargetID":50891,"Directional":true},{"SourceID":53319,"TargetID":53320,"Directional":true}]},{"ID":7919,"SourceStructureID":4569,"TargetStructureID":6300,"Label":"4569-6300 via Ribbon Synapse from 6296 -> 6301, 98552 -> 98553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6296,"TargetID":6301,"Directional":true},{"SourceID":98552,"TargetID":98553,"Directional":true}]},{"ID":7920,"SourceStructureID":4569,"TargetStructureID":11072,"Label":"4569-11072 via Ribbon Synapse from 11070 -> 11075","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11070,"TargetID":11075,"Directional":true}]},{"ID":7921,"SourceStructureID":4569,"TargetStructureID":18693,"Label":"4569-18693 via Ribbon Synapse from 4738 -> 64724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4738,"TargetID":64724,"Directional":true}]},{"ID":7922,"SourceStructureID":4569,"TargetStructureID":20299,"Label":"4569-20299 via Ribbon Synapse from 98682 -> 98691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98682,"TargetID":98691,"Directional":true}]},{"ID":7923,"SourceStructureID":4569,"TargetStructureID":38605,"Label":"4569-38605 via Ribbon Synapse from 38615 -> 38614","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38615,"TargetID":38614,"Directional":true}]},{"ID":7924,"SourceStructureID":4569,"TargetStructureID":43327,"Label":"4569-43327 via Ribbon Synapse from 6296 -> 43329, 6296 -> 99067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6296,"TargetID":43329,"Directional":true},{"SourceID":6296,"TargetID":99067,"Directional":true}]},{"ID":7925,"SourceStructureID":4569,"TargetStructureID":89008,"Label":"4569-89008 via Ribbon Synapse from 30860 -> 99021","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30860,"TargetID":99021,"Directional":true}]},{"ID":7926,"SourceStructureID":4569,"TargetStructureID":89388,"Label":"4569-89388 via BC Conventional Synapse from 98954 -> 98953","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98954,"TargetID":98953,"Directional":true}]},{"ID":7927,"SourceStructureID":4569,"TargetStructureID":90280,"Label":"4569-90280 via Ribbon Synapse from 52509 -> 98545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52509,"TargetID":98545,"Directional":true}]},{"ID":7928,"SourceStructureID":4569,"TargetStructureID":90483,"Label":"4569-90483 via Ribbon Synapse from 38615 -> 90489, 90490 -> 90489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38615,"TargetID":90489,"Directional":true},{"SourceID":90490,"TargetID":90489,"Directional":true}]},{"ID":7929,"SourceStructureID":4569,"TargetStructureID":97786,"Label":"4569-97786 via Ribbon Synapse from 52448 -> 97789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52448,"TargetID":97789,"Directional":true}]},{"ID":7930,"SourceStructureID":4569,"TargetStructureID":97794,"Label":"4569-97794 via Ribbon Synapse from 52460 -> 97795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52460,"TargetID":97795,"Directional":true}]},{"ID":7931,"SourceStructureID":4569,"TargetStructureID":97807,"Label":"4569-97807 via Ribbon Synapse from 52464 -> 97808","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52464,"TargetID":97808,"Directional":true}]},{"ID":7932,"SourceStructureID":4569,"TargetStructureID":97810,"Label":"4569-97810 via Ribbon Synapse from 97809 -> 97811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97809,"TargetID":97811,"Directional":true}]},{"ID":7933,"SourceStructureID":4569,"TargetStructureID":97812,"Label":"4569-97812 via Ribbon Synapse from 97809 -> 97813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97809,"TargetID":97813,"Directional":true}]},{"ID":7934,"SourceStructureID":4569,"TargetStructureID":97819,"Label":"4569-97819 via Ribbon Synapse from 52465 -> 97820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52465,"TargetID":97820,"Directional":true}]},{"ID":7935,"SourceStructureID":4569,"TargetStructureID":97855,"Label":"4569-97855 via BC Conventional Synapse from 97854 -> 97856","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97854,"TargetID":97856,"Directional":true}]},{"ID":7936,"SourceStructureID":4569,"TargetStructureID":97864,"Label":"4569-97864 via Ribbon Synapse from 4745 -> 97865","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4745,"TargetID":97865,"Directional":true}]},{"ID":7937,"SourceStructureID":4569,"TargetStructureID":98163,"Label":"4569-98163 via Ribbon Synapse from 23784 -> 98164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23784,"TargetID":98164,"Directional":true}]},{"ID":7938,"SourceStructureID":4569,"TargetStructureID":98175,"Label":"4569-98175 via Ribbon Synapse from 23788 -> 98176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23788,"TargetID":98176,"Directional":true}]},{"ID":7939,"SourceStructureID":4569,"TargetStructureID":98186,"Label":"4569-98186 via BC Conventional Synapse from 98226 -> 98223, 98227 -> 98222","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98226,"TargetID":98223,"Directional":true},{"SourceID":98227,"TargetID":98222,"Directional":true}]},{"ID":7940,"SourceStructureID":4569,"TargetStructureID":98195,"Label":"4569-98195 via Ribbon Synapse from 23804 -> 98197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23804,"TargetID":98197,"Directional":true}]},{"ID":7941,"SourceStructureID":4569,"TargetStructureID":98208,"Label":"4569-98208 via Ribbon Synapse from 23804 -> 98209","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23804,"TargetID":98209,"Directional":true}]},{"ID":7942,"SourceStructureID":4569,"TargetStructureID":98254,"Label":"4569-98254 via Ribbon Synapse from 23794 -> 98256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23794,"TargetID":98256,"Directional":true}]},{"ID":7943,"SourceStructureID":4569,"TargetStructureID":98353,"Label":"4569-98353 via Ribbon Synapse from 15999 -> 98354","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15999,"TargetID":98354,"Directional":true}]},{"ID":7944,"SourceStructureID":4569,"TargetStructureID":98372,"Label":"4569-98372 via Ribbon Synapse from 47492 -> 98373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47492,"TargetID":98373,"Directional":true}]},{"ID":7945,"SourceStructureID":4569,"TargetStructureID":98375,"Label":"4569-98375 via Ribbon Synapse from 47492 -> 98376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47492,"TargetID":98376,"Directional":true}]},{"ID":7946,"SourceStructureID":4569,"TargetStructureID":98377,"Label":"4569-98377 via Ribbon Synapse from 47492 -> 98378","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47492,"TargetID":98378,"Directional":true}]},{"ID":7947,"SourceStructureID":4569,"TargetStructureID":98379,"Label":"4569-98379 via Ribbon Synapse from 30827 -> 98380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30827,"TargetID":98380,"Directional":true}]},{"ID":7948,"SourceStructureID":4569,"TargetStructureID":98381,"Label":"4569-98381 via Ribbon Synapse from 30827 -> 98382","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30827,"TargetID":98382,"Directional":true}]},{"ID":7949,"SourceStructureID":4569,"TargetStructureID":98424,"Label":"4569-98424 via Ribbon Synapse from 30830 -> 98427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30830,"TargetID":98427,"Directional":true}]},{"ID":7950,"SourceStructureID":4569,"TargetStructureID":98436,"Label":"4569-98436 via Ribbon Synapse from 92754 -> 98437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92754,"TargetID":98437,"Directional":true}]},{"ID":7951,"SourceStructureID":4569,"TargetStructureID":98449,"Label":"4569-98449 via BC Conventional Synapse from 98448 -> 98450","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98448,"TargetID":98450,"Directional":true}]},{"ID":7952,"SourceStructureID":4569,"TargetStructureID":98453,"Label":"4569-98453 via Ribbon Synapse from 98452 -> 98454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98452,"TargetID":98454,"Directional":true}]},{"ID":7953,"SourceStructureID":4569,"TargetStructureID":98471,"Label":"4569-98471 via BC Conventional Synapse from 98470 -> 98473","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98470,"TargetID":98473,"Directional":true}]},{"ID":7954,"SourceStructureID":4569,"TargetStructureID":98475,"Label":"4569-98475 via Ribbon Synapse from 30832 -> 98477","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30832,"TargetID":98477,"Directional":true}]},{"ID":7955,"SourceStructureID":4569,"TargetStructureID":98484,"Label":"4569-98484 via Ribbon Synapse from 98481 -> 98497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98481,"TargetID":98497,"Directional":true}]},{"ID":7956,"SourceStructureID":4569,"TargetStructureID":98489,"Label":"4569-98489 via Ribbon Synapse from 11070 -> 98490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11070,"TargetID":98490,"Directional":true}]},{"ID":7957,"SourceStructureID":4569,"TargetStructureID":98495,"Label":"4569-98495 via Ribbon Synapse from 98481 -> 98496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98481,"TargetID":98496,"Directional":true}]},{"ID":7958,"SourceStructureID":4569,"TargetStructureID":98498,"Label":"4569-98498 via Ribbon Synapse from 98480 -> 98499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98480,"TargetID":98499,"Directional":true}]},{"ID":7959,"SourceStructureID":4569,"TargetStructureID":98500,"Label":"4569-98500 via Ribbon Synapse from 98480 -> 98501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98480,"TargetID":98501,"Directional":true}]},{"ID":7960,"SourceStructureID":4569,"TargetStructureID":98513,"Label":"4569-98513 via Ribbon Synapse from 98509 -> 98514","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98509,"TargetID":98514,"Directional":true}]},{"ID":7961,"SourceStructureID":4569,"TargetStructureID":98517,"Label":"4569-98517 via Ribbon Synapse from 98509 -> 98518","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98509,"TargetID":98518,"Directional":true}]},{"ID":7962,"SourceStructureID":4569,"TargetStructureID":98519,"Label":"4569-98519 via Ribbon Synapse from 65202 -> 98520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65202,"TargetID":98520,"Directional":true}]},{"ID":7963,"SourceStructureID":4569,"TargetStructureID":98521,"Label":"4569-98521 via Ribbon Synapse from 65202 -> 98522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65202,"TargetID":98522,"Directional":true}]},{"ID":7964,"SourceStructureID":4569,"TargetStructureID":98525,"Label":"4569-98525 via BC Conventional Synapse from 98523 -> 98527","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98523,"TargetID":98527,"Directional":true}]},{"ID":7965,"SourceStructureID":4569,"TargetStructureID":98570,"Label":"4569-98570 via BC Conventional Synapse from 98569 -> 98571","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98569,"TargetID":98571,"Directional":true}]},{"ID":7966,"SourceStructureID":4569,"TargetStructureID":98574,"Label":"4569-98574 via Ribbon Synapse from 47504 -> 98602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47504,"TargetID":98602,"Directional":true}]},{"ID":7967,"SourceStructureID":4569,"TargetStructureID":98600,"Label":"4569-98600 via Ribbon Synapse from 47504 -> 98601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47504,"TargetID":98601,"Directional":true}]},{"ID":7968,"SourceStructureID":4569,"TargetStructureID":98635,"Label":"4569-98635 via Ribbon Synapse from 98634 -> 98639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98634,"TargetID":98639,"Directional":true}]},{"ID":7969,"SourceStructureID":4569,"TargetStructureID":98697,"Label":"4569-98697 via BC Conventional Synapse from 98699 -> 98698","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98699,"TargetID":98698,"Directional":true}]},{"ID":7970,"SourceStructureID":4569,"TargetStructureID":98700,"Label":"4569-98700 via BC Conventional Synapse from 98718 -> 98719","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98718,"TargetID":98719,"Directional":true}]},{"ID":7971,"SourceStructureID":4569,"TargetStructureID":98700,"Label":"4569-98700 via Ribbon Synapse from 53319 -> 98701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53319,"TargetID":98701,"Directional":true}]},{"ID":7972,"SourceStructureID":4569,"TargetStructureID":98714,"Label":"4569-98714 via Ribbon Synapse from 53682 -> 98715","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53682,"TargetID":98715,"Directional":true}]},{"ID":7973,"SourceStructureID":4569,"TargetStructureID":98716,"Label":"4569-98716 via Ribbon Synapse from 53682 -> 98717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53682,"TargetID":98717,"Directional":true}]},{"ID":7974,"SourceStructureID":4569,"TargetStructureID":98740,"Label":"4569-98740 via Ribbon Synapse from 98739 -> 98743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98739,"TargetID":98743,"Directional":true}]},{"ID":7975,"SourceStructureID":4569,"TargetStructureID":98745,"Label":"4569-98745 via Ribbon Synapse from 47510 -> 98746","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47510,"TargetID":98746,"Directional":true}]},{"ID":7976,"SourceStructureID":4569,"TargetStructureID":98852,"Label":"4569-98852 via Ribbon Synapse from 52513 -> 98853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52513,"TargetID":98853,"Directional":true}]},{"ID":7977,"SourceStructureID":4569,"TargetStructureID":98854,"Label":"4569-98854 via Ribbon Synapse from 52515 -> 98855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52515,"TargetID":98855,"Directional":true}]},{"ID":7978,"SourceStructureID":4569,"TargetStructureID":98856,"Label":"4569-98856 via Ribbon Synapse from 52515 -> 98857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52515,"TargetID":98857,"Directional":true}]},{"ID":7979,"SourceStructureID":4569,"TargetStructureID":98861,"Label":"4569-98861 via Ribbon Synapse from 98860 -> 98862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98860,"TargetID":98862,"Directional":true}]},{"ID":7980,"SourceStructureID":4569,"TargetStructureID":98867,"Label":"4569-98867 via Ribbon Synapse from 30836 -> 98868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30836,"TargetID":98868,"Directional":true}]},{"ID":7981,"SourceStructureID":4569,"TargetStructureID":98878,"Label":"4569-98878 via Ribbon Synapse from 30838 -> 98879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30838,"TargetID":98879,"Directional":true}]},{"ID":7982,"SourceStructureID":4569,"TargetStructureID":98880,"Label":"4569-98880 via Ribbon Synapse from 30837 -> 98881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30837,"TargetID":98881,"Directional":true}]},{"ID":7983,"SourceStructureID":4569,"TargetStructureID":98882,"Label":"4569-98882 via Ribbon Synapse from 30837 -> 98883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30837,"TargetID":98883,"Directional":true}]},{"ID":7984,"SourceStructureID":4569,"TargetStructureID":98898,"Label":"4569-98898 via Ribbon Synapse from 30844 -> 98906, 30845 -> 98905","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30844,"TargetID":98906,"Directional":true},{"SourceID":30845,"TargetID":98905,"Directional":true}]},{"ID":7985,"SourceStructureID":4569,"TargetStructureID":98912,"Label":"4569-98912 via Ribbon Synapse from 98911 -> 98913","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98911,"TargetID":98913,"Directional":true}]},{"ID":7986,"SourceStructureID":4569,"TargetStructureID":98927,"Label":"4569-98927 via BC Conventional Synapse from 98926 -> 98928","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98926,"TargetID":98928,"Directional":true}]},{"ID":7987,"SourceStructureID":4569,"TargetStructureID":98929,"Label":"4569-98929 via Ribbon Synapse from 52544 -> 98940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52544,"TargetID":98940,"Directional":true}]},{"ID":7988,"SourceStructureID":4569,"TargetStructureID":98936,"Label":"4569-98936 via Ribbon Synapse from 52544 -> 98939","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52544,"TargetID":98939,"Directional":true}]},{"ID":7989,"SourceStructureID":4569,"TargetStructureID":98941,"Label":"4569-98941 via Ribbon Synapse from 52544 -> 98942","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52544,"TargetID":98942,"Directional":true}]},{"ID":7990,"SourceStructureID":4569,"TargetStructureID":98999,"Label":"4569-98999 via Ribbon Synapse from 30858 -> 99000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30858,"TargetID":99000,"Directional":true}]},{"ID":7991,"SourceStructureID":4569,"TargetStructureID":99004,"Label":"4569-99004 via Ribbon Synapse from 30860 -> 99005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30860,"TargetID":99005,"Directional":true}]},{"ID":7992,"SourceStructureID":4569,"TargetStructureID":99025,"Label":"4569-99025 via BC Conventional Synapse from 99052 -> 99053","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99052,"TargetID":99053,"Directional":true}]},{"ID":7993,"SourceStructureID":4569,"TargetStructureID":99025,"Label":"4569-99025 via Ribbon Synapse from 47533 -> 99030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47533,"TargetID":99030,"Directional":true}]},{"ID":7994,"SourceStructureID":4569,"TargetStructureID":99057,"Label":"4569-99057 via Ribbon Synapse from 29786 -> 99060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29786,"TargetID":99060,"Directional":true}]},{"ID":7995,"SourceStructureID":4569,"TargetStructureID":99058,"Label":"4569-99058 via Ribbon Synapse from 29786 -> 99059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29786,"TargetID":99059,"Directional":true}]},{"ID":7996,"SourceStructureID":4569,"TargetStructureID":99081,"Label":"4569-99081 via Ribbon Synapse from 40130 -> 99084","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40130,"TargetID":99084,"Directional":true}]},{"ID":7997,"SourceStructureID":4569,"TargetStructureID":99100,"Label":"4569-99100 via Ribbon Synapse from 23567 -> 99101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23567,"TargetID":99101,"Directional":true}]},{"ID":7998,"SourceStructureID":4570,"TargetStructureID":318,"Label":"4570-318 via Ribbon Synapse from 4814 -> 14130, 14127 -> 14126, 14987 -> 14975","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4814,"TargetID":14130,"Directional":true},{"SourceID":14127,"TargetID":14126,"Directional":true},{"SourceID":14987,"TargetID":14975,"Directional":true}]},{"ID":7999,"SourceStructureID":4570,"TargetStructureID":390,"Label":"4570-390 via Ribbon Synapse from 65216 -> 65215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65216,"TargetID":65215,"Directional":true}]},{"ID":8000,"SourceStructureID":4570,"TargetStructureID":906,"Label":"4570-906 via Ribbon Synapse from 4750 -> 15192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4750,"TargetID":15192,"Directional":true}]},{"ID":8001,"SourceStructureID":4570,"TargetStructureID":4890,"Label":"4570-4890 via Ribbon Synapse from 4770 -> 7910, 4771 -> 4891, 7909 -> 4892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4770,"TargetID":7910,"Directional":true},{"SourceID":4771,"TargetID":4891,"Directional":true},{"SourceID":7909,"TargetID":4892,"Directional":true}]},{"ID":8002,"SourceStructureID":4570,"TargetStructureID":5117,"Label":"4570-5117 via Ribbon Synapse from 14399 -> 28793, 28537 -> 28787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14399,"TargetID":28793,"Directional":true},{"SourceID":28537,"TargetID":28787,"Directional":true}]},{"ID":8003,"SourceStructureID":4570,"TargetStructureID":5118,"Label":"4570-5118 via Ribbon Synapse from 13423 -> 6537","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13423,"TargetID":6537,"Directional":true}]},{"ID":8004,"SourceStructureID":4570,"TargetStructureID":5303,"Label":"4570-5303 via Ribbon Synapse from 14404 -> 20762","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14404,"TargetID":20762,"Directional":true}]},{"ID":8005,"SourceStructureID":4570,"TargetStructureID":5350,"Label":"4570-5350 via Ribbon Synapse from 4783 -> 10678, 4791 -> 10676, 10673 -> 10667","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4783,"TargetID":10678,"Directional":true},{"SourceID":4791,"TargetID":10676,"Directional":true},{"SourceID":10673,"TargetID":10667,"Directional":true}]},{"ID":8006,"SourceStructureID":4570,"TargetStructureID":8579,"Label":"4570-8579 via Ribbon Synapse from 4757 -> 62657","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4757,"TargetID":62657,"Directional":true}]},{"ID":8007,"SourceStructureID":4570,"TargetStructureID":13855,"Label":"4570-13855 via Ribbon Synapse from 4783 -> 36317, 4791 -> 36314, 14386 -> 36308","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4783,"TargetID":36317,"Directional":true},{"SourceID":4791,"TargetID":36314,"Directional":true},{"SourceID":14386,"TargetID":36308,"Directional":true}]},{"ID":8008,"SourceStructureID":4570,"TargetStructureID":29277,"Label":"4570-29277 via Ribbon Synapse from 28539 -> 29302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28539,"TargetID":29302,"Directional":true}]},{"ID":8009,"SourceStructureID":4570,"TargetStructureID":29702,"Label":"4570-29702 via Ribbon Synapse from 4761 -> 72628, 28513 -> 72628","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4761,"TargetID":72628,"Directional":true},{"SourceID":28513,"TargetID":72628,"Directional":true}]},{"ID":8010,"SourceStructureID":4570,"TargetStructureID":31024,"Label":"4570-31024 via Ribbon Synapse from 4759 -> 31085","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4759,"TargetID":31085,"Directional":true}]},{"ID":8011,"SourceStructureID":4570,"TargetStructureID":40010,"Label":"4570-40010 via Ribbon Synapse from 14983 -> 40011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14983,"TargetID":40011,"Directional":true}]},{"ID":8012,"SourceStructureID":4570,"TargetStructureID":40858,"Label":"4570-40858 via Ribbon Synapse from 123179 -> 123172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123179,"TargetID":123172,"Directional":true}]},{"ID":8013,"SourceStructureID":4570,"TargetStructureID":41474,"Label":"4570-41474 via Conventional from 41529 -> 41528","Type":"Conventional","Directional":true,"Links":[{"SourceID":41529,"TargetID":41528,"Directional":true}]},{"ID":8014,"SourceStructureID":4570,"TargetStructureID":41474,"Label":"4570-41474 via Ribbon Synapse from 4764 -> 41508, 123177 -> 123178","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4764,"TargetID":41508,"Directional":true},{"SourceID":123177,"TargetID":123178,"Directional":true}]},{"ID":8015,"SourceStructureID":4570,"TargetStructureID":71284,"Label":"4570-71284 via BC Conventional Synapse from 71285 -> 71286","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71285,"TargetID":71286,"Directional":true}]},{"ID":8016,"SourceStructureID":4570,"TargetStructureID":88082,"Label":"4570-88082 via Ribbon Synapse from 28516 -> 88083, 88086 -> 88085, 88089 -> 88090, 88091 -> 88090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28516,"TargetID":88083,"Directional":true},{"SourceID":88086,"TargetID":88085,"Directional":true},{"SourceID":88089,"TargetID":88090,"Directional":true},{"SourceID":88091,"TargetID":88090,"Directional":true}]},{"ID":8017,"SourceStructureID":4835,"TargetStructureID":354,"Label":"4835-354 via Conventional from 65735 -> 44673","Type":"Conventional","Directional":true,"Links":[{"SourceID":65735,"TargetID":44673,"Directional":true}]},{"ID":8018,"SourceStructureID":4835,"TargetStructureID":424,"Label":"4835-424 via Conventional from 121853 -> 121852","Type":"Conventional","Directional":true,"Links":[{"SourceID":121853,"TargetID":121852,"Directional":true}]},{"ID":8019,"SourceStructureID":4835,"TargetStructureID":437,"Label":"4835-437 via Conventional from 6640 -> 6634, 17604 -> 17605, 17608 -> 17606, 17609 -> 17607, 17612 -> 17613, 65738 -> 65715","Type":"Conventional","Directional":true,"Links":[{"SourceID":6640,"TargetID":6634,"Directional":true},{"SourceID":17604,"TargetID":17605,"Directional":true},{"SourceID":17608,"TargetID":17606,"Directional":true},{"SourceID":17609,"TargetID":17607,"Directional":true},{"SourceID":17612,"TargetID":17613,"Directional":true},{"SourceID":65738,"TargetID":65715,"Directional":true}]},{"ID":8020,"SourceStructureID":4835,"TargetStructureID":455,"Label":"4835-455 via Conventional from 21417 -> 7391","Type":"Conventional","Directional":true,"Links":[{"SourceID":21417,"TargetID":7391,"Directional":true}]},{"ID":8021,"SourceStructureID":4835,"TargetStructureID":460,"Label":"4835-460 via Conventional from 18034 -> 14442","Type":"Conventional","Directional":true,"Links":[{"SourceID":18034,"TargetID":14442,"Directional":true}]},{"ID":8022,"SourceStructureID":4835,"TargetStructureID":463,"Label":"4835-463 via Conventional from 74144 -> 74143, 74149 -> 74148, 74151 -> 74150, 74176 -> 74175","Type":"Conventional","Directional":true,"Links":[{"SourceID":74144,"TargetID":74143,"Directional":true},{"SourceID":74149,"TargetID":74148,"Directional":true},{"SourceID":74151,"TargetID":74150,"Directional":true},{"SourceID":74176,"TargetID":74175,"Directional":true}]},{"ID":8023,"SourceStructureID":4835,"TargetStructureID":9787,"Label":"4835-9787 via Conventional from 12042 -> 12045, 12043 -> 12044, 12060 -> 9788, 18038 -> 18037, 18650 -> 12066","Type":"Conventional","Directional":true,"Links":[{"SourceID":12042,"TargetID":12045,"Directional":true},{"SourceID":12043,"TargetID":12044,"Directional":true},{"SourceID":12060,"TargetID":9788,"Directional":true},{"SourceID":18038,"TargetID":18037,"Directional":true},{"SourceID":18650,"TargetID":12066,"Directional":true}]},{"ID":8024,"SourceStructureID":4835,"TargetStructureID":131516,"Label":"4835-131516 via Conventional from 18043 -> 131523","Type":"Conventional","Directional":true,"Links":[{"SourceID":18043,"TargetID":131523,"Directional":true}]},{"ID":8025,"SourceStructureID":4849,"TargetStructureID":115,"Label":"4849-115 via Conventional from 42566 -> 10796","Type":"Conventional","Directional":true,"Links":[{"SourceID":42566,"TargetID":10796,"Directional":true}]},{"ID":8026,"SourceStructureID":4849,"TargetStructureID":115,"Label":"4849-115 via Ribbon Synapse from 40563 -> 10794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40563,"TargetID":10794,"Directional":true}]},{"ID":8027,"SourceStructureID":4849,"TargetStructureID":3865,"Label":"4849-3865 via Ribbon Synapse from 132102 -> 132098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132102,"TargetID":132098,"Directional":true}]},{"ID":8028,"SourceStructureID":4849,"TargetStructureID":5372,"Label":"4849-5372 via Ribbon Synapse from 26120 -> 26115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26120,"TargetID":26115,"Directional":true}]},{"ID":8029,"SourceStructureID":4849,"TargetStructureID":8575,"Label":"4849-8575 via BC Conventional Synapse from 26121 -> 62282, 62281 -> 62280","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":26121,"TargetID":62282,"Directional":true},{"SourceID":62281,"TargetID":62280,"Directional":true}]},{"ID":8030,"SourceStructureID":4850,"TargetStructureID":294,"Label":"4850-294 via Conventional from 22532 -> 22534, 22533 -> 22535, 22537 -> 22536, 22538 -> 22539","Type":"Conventional","Directional":true,"Links":[{"SourceID":22532,"TargetID":22534,"Directional":true},{"SourceID":22533,"TargetID":22535,"Directional":true},{"SourceID":22537,"TargetID":22536,"Directional":true},{"SourceID":22538,"TargetID":22539,"Directional":true}]},{"ID":8031,"SourceStructureID":4850,"TargetStructureID":369,"Label":"4850-369 via Conventional from 83682 -> 29554, 83684 -> 83685, 83687 -> 83689, 83688 -> 83690","Type":"Conventional","Directional":true,"Links":[{"SourceID":83682,"TargetID":29554,"Directional":true},{"SourceID":83684,"TargetID":83685,"Directional":true},{"SourceID":83687,"TargetID":83689,"Directional":true},{"SourceID":83688,"TargetID":83690,"Directional":true}]},{"ID":8032,"SourceStructureID":4850,"TargetStructureID":516,"Label":"4850-516 via Conventional from 14209 -> 6508, 14210 -> 14211","Type":"Conventional","Directional":true,"Links":[{"SourceID":14209,"TargetID":6508,"Directional":true},{"SourceID":14210,"TargetID":14211,"Directional":true}]},{"ID":8033,"SourceStructureID":4850,"TargetStructureID":517,"Label":"4850-517 via Conventional from 14200 -> 14168, 14201 -> 14164, 14205 -> 14164","Type":"Conventional","Directional":true,"Links":[{"SourceID":14200,"TargetID":14168,"Directional":true},{"SourceID":14201,"TargetID":14164,"Directional":true},{"SourceID":14205,"TargetID":14164,"Directional":true}]},{"ID":8034,"SourceStructureID":4850,"TargetStructureID":5563,"Label":"4850-5563 via Conventional from 14303 -> 14304, 14306 -> 14307","Type":"Conventional","Directional":true,"Links":[{"SourceID":14303,"TargetID":14304,"Directional":true},{"SourceID":14306,"TargetID":14307,"Directional":true}]},{"ID":8035,"SourceStructureID":4850,"TargetStructureID":6169,"Label":"4850-6169 via Conventional from 14202 -> 14204, 14206 -> 9460","Type":"Conventional","Directional":true,"Links":[{"SourceID":14202,"TargetID":14204,"Directional":true},{"SourceID":14206,"TargetID":9460,"Directional":true}]},{"ID":8036,"SourceStructureID":4850,"TargetStructureID":6618,"Label":"4850-6618 via Conventional from 30712 -> 30711, 30713 -> 30710","Type":"Conventional","Directional":true,"Links":[{"SourceID":30712,"TargetID":30711,"Directional":true},{"SourceID":30713,"TargetID":30710,"Directional":true}]},{"ID":8037,"SourceStructureID":4850,"TargetStructureID":7054,"Label":"4850-7054 via Conventional from 19465 -> 19466, 19469 -> 19472, 97847 -> 97848","Type":"Conventional","Directional":true,"Links":[{"SourceID":19465,"TargetID":19466,"Directional":true},{"SourceID":19469,"TargetID":19472,"Directional":true},{"SourceID":97847,"TargetID":97848,"Directional":true}]},{"ID":8038,"SourceStructureID":4850,"TargetStructureID":9693,"Label":"4850-9693 via Conventional from 15389 -> 15390, 15392 -> 15076","Type":"Conventional","Directional":true,"Links":[{"SourceID":15389,"TargetID":15390,"Directional":true},{"SourceID":15392,"TargetID":15076,"Directional":true}]},{"ID":8039,"SourceStructureID":4850,"TargetStructureID":10897,"Label":"4850-10897 via Conventional from 22548 -> 13833","Type":"Conventional","Directional":true,"Links":[{"SourceID":22548,"TargetID":13833,"Directional":true}]},{"ID":8040,"SourceStructureID":4850,"TargetStructureID":10931,"Label":"4850-10931 via Conventional from 14213 -> 14214, 14222 -> 14224, 14223 -> 14225, 14231 -> 14232","Type":"Conventional","Directional":true,"Links":[{"SourceID":14213,"TargetID":14214,"Directional":true},{"SourceID":14222,"TargetID":14224,"Directional":true},{"SourceID":14223,"TargetID":14225,"Directional":true},{"SourceID":14231,"TargetID":14232,"Directional":true}]},{"ID":8041,"SourceStructureID":4850,"TargetStructureID":11033,"Label":"4850-11033 via Conventional from 33898 -> 33901, 33899 -> 33904, 33900 -> 33902","Type":"Conventional","Directional":true,"Links":[{"SourceID":33898,"TargetID":33901,"Directional":true},{"SourceID":33899,"TargetID":33904,"Directional":true},{"SourceID":33900,"TargetID":33902,"Directional":true}]},{"ID":8042,"SourceStructureID":4850,"TargetStructureID":11172,"Label":"4850-11172 via Conventional from 22549 -> 22550","Type":"Conventional","Directional":true,"Links":[{"SourceID":22549,"TargetID":22550,"Directional":true}]},{"ID":8043,"SourceStructureID":4876,"TargetStructureID":597,"Label":"4876-597 via Ribbon Synapse from 60472 -> 60470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60472,"TargetID":60470,"Directional":true}]},{"ID":8044,"SourceStructureID":4876,"TargetStructureID":608,"Label":"4876-608 via Ribbon Synapse from 131361 -> 148297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131361,"TargetID":148297,"Directional":true}]},{"ID":8045,"SourceStructureID":4876,"TargetStructureID":4876,"Label":"4876-4876 via Ribbon Synapse from 131361 -> 44420","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131361,"TargetID":44420,"Directional":true}]},{"ID":8046,"SourceStructureID":4876,"TargetStructureID":5441,"Label":"4876-5441 via Ribbon Synapse from 91462 -> 91452","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91462,"TargetID":91452,"Directional":true}]},{"ID":8047,"SourceStructureID":4876,"TargetStructureID":6857,"Label":"4876-6857 via Ribbon Synapse from 18997 -> 18899, 19000 -> 19001, 19002 -> 7519, 19004 -> 19005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18997,"TargetID":18899,"Directional":true},{"SourceID":19000,"TargetID":19001,"Directional":true},{"SourceID":19002,"TargetID":7519,"Directional":true},{"SourceID":19004,"TargetID":19005,"Directional":true}]},{"ID":8048,"SourceStructureID":4876,"TargetStructureID":7147,"Label":"4876-7147 via Ribbon Synapse from 19114 -> 52243, 114062 -> 114061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19114,"TargetID":52243,"Directional":true},{"SourceID":114062,"TargetID":114061,"Directional":true}]},{"ID":8049,"SourceStructureID":4877,"TargetStructureID":5435,"Label":"4877-5435 via Ribbon Synapse from 24357 -> 24356","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24357,"TargetID":24356,"Directional":true}]},{"ID":8050,"SourceStructureID":4877,"TargetStructureID":5491,"Label":"4877-5491 via BC Conventional Synapse from 54709 -> 54710","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54709,"TargetID":54710,"Directional":true}]},{"ID":8051,"SourceStructureID":4877,"TargetStructureID":5491,"Label":"4877-5491 via Ribbon Synapse from 126824 -> 135623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126824,"TargetID":135623,"Directional":true}]},{"ID":8052,"SourceStructureID":4877,"TargetStructureID":9769,"Label":"4877-9769 via Ribbon Synapse from 23964 -> 23959, 54702 -> 54703, 91384 -> 147815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23964,"TargetID":23959,"Directional":true},{"SourceID":54702,"TargetID":54703,"Directional":true},{"SourceID":91384,"TargetID":147815,"Directional":true}]},{"ID":8053,"SourceStructureID":4877,"TargetStructureID":15796,"Label":"4877-15796 via Ribbon Synapse from 20272 -> 20268, 46441 -> 46442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20272,"TargetID":20268,"Directional":true},{"SourceID":46441,"TargetID":46442,"Directional":true}]},{"ID":8054,"SourceStructureID":4877,"TargetStructureID":35212,"Label":"4877-35212 via Ribbon Synapse from 33385 -> 35217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33385,"TargetID":35217,"Directional":true}]},{"ID":8055,"SourceStructureID":4877,"TargetStructureID":38307,"Label":"4877-38307 via Ribbon Synapse from 33305 -> 38334","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33305,"TargetID":38334,"Directional":true}]},{"ID":8056,"SourceStructureID":4877,"TargetStructureID":43716,"Label":"4877-43716 via BC Conventional Synapse from 123571 -> 123570","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123571,"TargetID":123570,"Directional":true}]},{"ID":8057,"SourceStructureID":4877,"TargetStructureID":43716,"Label":"4877-43716 via Ribbon Synapse from 54702 -> 54704, 54707 -> 54708, 54716 -> 54715, 56595 -> 123569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54702,"TargetID":54704,"Directional":true},{"SourceID":54707,"TargetID":54708,"Directional":true},{"SourceID":54716,"TargetID":54715,"Directional":true},{"SourceID":56595,"TargetID":123569,"Directional":true}]},{"ID":8058,"SourceStructureID":4877,"TargetStructureID":44346,"Label":"4877-44346 via Ribbon Synapse from 33392 -> 44455, 44453 -> 44452","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33392,"TargetID":44455,"Directional":true},{"SourceID":44453,"TargetID":44452,"Directional":true}]},{"ID":8059,"SourceStructureID":4877,"TargetStructureID":54778,"Label":"4877-54778 via BC Conventional Synapse from 126850 -> 126851","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":126850,"TargetID":126851,"Directional":true}]},{"ID":8060,"SourceStructureID":4877,"TargetStructureID":54818,"Label":"4877-54818 via Ribbon Synapse from 54821 -> 54820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54821,"TargetID":54820,"Directional":true}]},{"ID":8061,"SourceStructureID":4877,"TargetStructureID":58592,"Label":"4877-58592 via Ribbon Synapse from 33307 -> 58660","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33307,"TargetID":58660,"Directional":true}]},{"ID":8062,"SourceStructureID":4877,"TargetStructureID":58642,"Label":"4877-58642 via Ribbon Synapse from 33385 -> 58647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33385,"TargetID":58647,"Directional":true}]},{"ID":8063,"SourceStructureID":4877,"TargetStructureID":72299,"Label":"4877-72299 via Ribbon Synapse from 33384 -> 82117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33384,"TargetID":82117,"Directional":true}]},{"ID":8064,"SourceStructureID":4877,"TargetStructureID":82071,"Label":"4877-82071 via Ribbon Synapse from 33311 -> 82503, 33312 -> 82504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33311,"TargetID":82503,"Directional":true},{"SourceID":33312,"TargetID":82504,"Directional":true}]},{"ID":8065,"SourceStructureID":4877,"TargetStructureID":126582,"Label":"4877-126582 via Ribbon Synapse from 126581 -> 126583","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126581,"TargetID":126583,"Directional":true}]},{"ID":8066,"SourceStructureID":4877,"TargetStructureID":127764,"Label":"4877-127764 via Ribbon Synapse from 62755 -> 129273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62755,"TargetID":129273,"Directional":true}]},{"ID":8067,"SourceStructureID":4877,"TargetStructureID":136432,"Label":"4877-136432 via Ribbon Synapse from 133995 -> 136534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133995,"TargetID":136534,"Directional":true}]},{"ID":8068,"SourceStructureID":4890,"TargetStructureID":397,"Label":"4890-397 via Conventional from 71055 -> 71056","Type":"Conventional","Directional":true,"Links":[{"SourceID":71055,"TargetID":71056,"Directional":true}]},{"ID":8069,"SourceStructureID":4890,"TargetStructureID":5514,"Label":"4890-5514 via Conventional from 64870 -> 50662, 64871 -> 50701","Type":"Conventional","Directional":true,"Links":[{"SourceID":64870,"TargetID":50662,"Directional":true},{"SourceID":64871,"TargetID":50701,"Directional":true}]},{"ID":8070,"SourceStructureID":4890,"TargetStructureID":5530,"Label":"4890-5530 via Conventional from 82064 -> 82065","Type":"Conventional","Directional":true,"Links":[{"SourceID":82064,"TargetID":82065,"Directional":true}]},{"ID":8071,"SourceStructureID":4890,"TargetStructureID":6156,"Label":"4890-6156 via Postsynapse from 133469 -> 91270","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":133469,"TargetID":91270,"Directional":true}]},{"ID":8072,"SourceStructureID":4890,"TargetStructureID":7024,"Label":"4890-7024 via Conventional from 64879 -> 64880","Type":"Conventional","Directional":true,"Links":[{"SourceID":64879,"TargetID":64880,"Directional":true}]},{"ID":8073,"SourceStructureID":4890,"TargetStructureID":50449,"Label":"4890-50449 via Conventional from 64875 -> 50599, 64877 -> 50658","Type":"Conventional","Directional":true,"Links":[{"SourceID":64875,"TargetID":50599,"Directional":true},{"SourceID":64877,"TargetID":50658,"Directional":true}]},{"ID":8074,"SourceStructureID":4890,"TargetStructureID":62777,"Label":"4890-62777 via Conventional from 64884 -> 64885","Type":"Conventional","Directional":true,"Links":[{"SourceID":64884,"TargetID":64885,"Directional":true}]},{"ID":8075,"SourceStructureID":4890,"TargetStructureID":64887,"Label":"4890-64887 via Conventional from 64886 -> 64889","Type":"Conventional","Directional":true,"Links":[{"SourceID":64886,"TargetID":64889,"Directional":true}]},{"ID":8076,"SourceStructureID":4890,"TargetStructureID":64923,"Label":"4890-64923 via Conventional from 64922 -> 64924","Type":"Conventional","Directional":true,"Links":[{"SourceID":64922,"TargetID":64924,"Directional":true}]},{"ID":8077,"SourceStructureID":4890,"TargetStructureID":70924,"Label":"4890-70924 via Conventional from 20525 -> 70937, 70940 -> 70939","Type":"Conventional","Directional":true,"Links":[{"SourceID":20525,"TargetID":70937,"Directional":true},{"SourceID":70940,"TargetID":70939,"Directional":true}]},{"ID":8078,"SourceStructureID":4941,"TargetStructureID":518,"Label":"4941-518 via Conventional from 5750 -> 3464, 36660 -> 3298","Type":"Conventional","Directional":true,"Links":[{"SourceID":5750,"TargetID":3464,"Directional":true},{"SourceID":36660,"TargetID":3298,"Directional":true}]},{"ID":8079,"SourceStructureID":4942,"TargetStructureID":518,"Label":"4942-518 via Conventional from 5751 -> 3480, 36658 -> 3301","Type":"Conventional","Directional":true,"Links":[{"SourceID":5751,"TargetID":3480,"Directional":true},{"SourceID":36658,"TargetID":3301,"Directional":true}]},{"ID":8080,"SourceStructureID":4943,"TargetStructureID":469,"Label":"4943-469 via Conventional from 13426 -> 4664, 13429 -> 4673","Type":"Conventional","Directional":true,"Links":[{"SourceID":13426,"TargetID":4664,"Directional":true},{"SourceID":13429,"TargetID":4673,"Directional":true}]},{"ID":8081,"SourceStructureID":4943,"TargetStructureID":514,"Label":"4943-514 via Conventional from 13433 -> 14957","Type":"Conventional","Directional":true,"Links":[{"SourceID":13433,"TargetID":14957,"Directional":true}]},{"ID":8082,"SourceStructureID":4943,"TargetStructureID":517,"Label":"4943-517 via Conventional from 42786 -> 40978","Type":"Conventional","Directional":true,"Links":[{"SourceID":42786,"TargetID":40978,"Directional":true}]},{"ID":8083,"SourceStructureID":4943,"TargetStructureID":518,"Label":"4943-518 via Conventional from 8501 -> 3467","Type":"Conventional","Directional":true,"Links":[{"SourceID":8501,"TargetID":3467,"Directional":true}]},{"ID":8084,"SourceStructureID":4943,"TargetStructureID":3881,"Label":"4943-3881 via Conventional from 4969 -> 3883","Type":"Conventional","Directional":true,"Links":[{"SourceID":4969,"TargetID":3883,"Directional":true}]},{"ID":8085,"SourceStructureID":4943,"TargetStructureID":5923,"Label":"4943-5923 via Conventional from 4996 -> 8690","Type":"Conventional","Directional":true,"Links":[{"SourceID":4996,"TargetID":8690,"Directional":true}]},{"ID":8086,"SourceStructureID":4943,"TargetStructureID":8586,"Label":"4943-8586 via Conventional from 4967 -> 8665","Type":"Conventional","Directional":true,"Links":[{"SourceID":4967,"TargetID":8665,"Directional":true}]},{"ID":8087,"SourceStructureID":4943,"TargetStructureID":10815,"Label":"4943-10815 via Conventional from 43370 -> 43371, 43374 -> 43375, 43378 -> 43379","Type":"Conventional","Directional":true,"Links":[{"SourceID":43370,"TargetID":43371,"Directional":true},{"SourceID":43374,"TargetID":43375,"Directional":true},{"SourceID":43378,"TargetID":43379,"Directional":true}]},{"ID":8088,"SourceStructureID":4943,"TargetStructureID":10826,"Label":"4943-10826 via Conventional from 43251 -> 43252, 43253 -> 43254","Type":"Conventional","Directional":true,"Links":[{"SourceID":43251,"TargetID":43252,"Directional":true},{"SourceID":43253,"TargetID":43254,"Directional":true}]},{"ID":8089,"SourceStructureID":4943,"TargetStructureID":10957,"Label":"4943-10957 via Conventional from 83508 -> 83509, 83518 -> 83521, 83519 -> 83522, 83520 -> 83523, 83524 -> 83526, 83525 -> 83527","Type":"Conventional","Directional":true,"Links":[{"SourceID":83508,"TargetID":83509,"Directional":true},{"SourceID":83518,"TargetID":83521,"Directional":true},{"SourceID":83519,"TargetID":83522,"Directional":true},{"SourceID":83520,"TargetID":83523,"Directional":true},{"SourceID":83524,"TargetID":83526,"Directional":true},{"SourceID":83525,"TargetID":83527,"Directional":true}]},{"ID":8090,"SourceStructureID":4943,"TargetStructureID":11031,"Label":"4943-11031 via Conventional from 40982 -> 40983","Type":"Conventional","Directional":true,"Links":[{"SourceID":40982,"TargetID":40983,"Directional":true}]},{"ID":8091,"SourceStructureID":4943,"TargetStructureID":15969,"Label":"4943-15969 via Conventional from 43275 -> 43276","Type":"Conventional","Directional":true,"Links":[{"SourceID":43275,"TargetID":43276,"Directional":true}]},{"ID":8092,"SourceStructureID":5006,"TargetStructureID":518,"Label":"5006-518 via Conventional from 5009 -> 3300, 5010 -> 3494, 9642 -> 9641, 36656 -> 3461","Type":"Conventional","Directional":true,"Links":[{"SourceID":5009,"TargetID":3300,"Directional":true},{"SourceID":5010,"TargetID":3494,"Directional":true},{"SourceID":9642,"TargetID":9641,"Directional":true},{"SourceID":36656,"TargetID":3461,"Directional":true}]},{"ID":8093,"SourceStructureID":5017,"TargetStructureID":308,"Label":"5017-308 via Ribbon Synapse from 42553 -> 86720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42553,"TargetID":86720,"Directional":true}]},{"ID":8094,"SourceStructureID":5017,"TargetStructureID":514,"Label":"5017-514 via Ribbon Synapse from 5021 -> 5014, 13821 -> 13816, 13829 -> 13828, 16152 -> 16151, 17048 -> 17049, 17066 -> 17083, 17068 -> 17938, 133284 -> 133285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5021,"TargetID":5014,"Directional":true},{"SourceID":13821,"TargetID":13816,"Directional":true},{"SourceID":13829,"TargetID":13828,"Directional":true},{"SourceID":16152,"TargetID":16151,"Directional":true},{"SourceID":17048,"TargetID":17049,"Directional":true},{"SourceID":17066,"TargetID":17083,"Directional":true},{"SourceID":17068,"TargetID":17938,"Directional":true},{"SourceID":133284,"TargetID":133285,"Directional":true}]},{"ID":8095,"SourceStructureID":5017,"TargetStructureID":2610,"Label":"5017-2610 via Ribbon Synapse from 13818 -> 13817, 17054 -> 3616, 17065 -> 17064, 17099 -> 17100, 17104 -> 13788, 17974 -> 17973, 17987 -> 17985, 17988 -> 17986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13818,"TargetID":13817,"Directional":true},{"SourceID":17054,"TargetID":3616,"Directional":true},{"SourceID":17065,"TargetID":17064,"Directional":true},{"SourceID":17099,"TargetID":17100,"Directional":true},{"SourceID":17104,"TargetID":13788,"Directional":true},{"SourceID":17974,"TargetID":17973,"Directional":true},{"SourceID":17987,"TargetID":17985,"Directional":true},{"SourceID":17988,"TargetID":17986,"Directional":true}]},{"ID":8096,"SourceStructureID":5017,"TargetStructureID":3679,"Label":"5017-3679 via Ribbon Synapse from 5027 -> 66141, 17056 -> 3832, 17060 -> 3830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5027,"TargetID":66141,"Directional":true},{"SourceID":17056,"TargetID":3832,"Directional":true},{"SourceID":17060,"TargetID":3830,"Directional":true}]},{"ID":8097,"SourceStructureID":5017,"TargetStructureID":9260,"Label":"5017-9260 via Ribbon Synapse from 5035 -> 96772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5035,"TargetID":96772,"Directional":true}]},{"ID":8098,"SourceStructureID":5017,"TargetStructureID":25575,"Label":"5017-25575 via Ribbon Synapse from 25581 -> 25580, 25583 -> 25582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25581,"TargetID":25580,"Directional":true},{"SourceID":25583,"TargetID":25582,"Directional":true}]},{"ID":8099,"SourceStructureID":5017,"TargetStructureID":25669,"Label":"5017-25669 via Ribbon Synapse from 25687 -> 25686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25687,"TargetID":25686,"Directional":true}]},{"ID":8100,"SourceStructureID":5017,"TargetStructureID":39530,"Label":"5017-39530 via Ribbon Synapse from 17054 -> 39555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17054,"TargetID":39555,"Directional":true}]},{"ID":8101,"SourceStructureID":5017,"TargetStructureID":61214,"Label":"5017-61214 via Ribbon Synapse from 17066 -> 61241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17066,"TargetID":61241,"Directional":true}]},{"ID":8102,"SourceStructureID":5057,"TargetStructureID":397,"Label":"5057-397 via Conventional from 45641 -> 122673","Type":"Conventional","Directional":true,"Links":[{"SourceID":45641,"TargetID":122673,"Directional":true}]},{"ID":8103,"SourceStructureID":5057,"TargetStructureID":606,"Label":"5057-606 via Conventional from 10225 -> 45602","Type":"Conventional","Directional":true,"Links":[{"SourceID":10225,"TargetID":45602,"Directional":true}]},{"ID":8104,"SourceStructureID":5057,"TargetStructureID":6912,"Label":"5057-6912 via Conventional from 10224 -> 6923","Type":"Conventional","Directional":true,"Links":[{"SourceID":10224,"TargetID":6923,"Directional":true}]},{"ID":8105,"SourceStructureID":5057,"TargetStructureID":7594,"Label":"5057-7594 via Conventional from 45654 -> 45655","Type":"Conventional","Directional":true,"Links":[{"SourceID":45654,"TargetID":45655,"Directional":true}]},{"ID":8106,"SourceStructureID":5107,"TargetStructureID":5107,"Label":"5107-5107 via Conventional from 148322 -> 148320","Type":"Conventional","Directional":true,"Links":[{"SourceID":148322,"TargetID":148320,"Directional":true}]},{"ID":8107,"SourceStructureID":5117,"TargetStructureID":483,"Label":"5117-483 via Cistern Pre from 28781 -> 28784","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":28781,"TargetID":28784,"Directional":true}]},{"ID":8108,"SourceStructureID":5117,"TargetStructureID":61864,"Label":"5117-61864 via Conventional from 69342 -> 69343","Type":"Conventional","Directional":true,"Links":[{"SourceID":69342,"TargetID":69343,"Directional":true}]},{"ID":8109,"SourceStructureID":5278,"TargetStructureID":3865,"Label":"5278-3865 via Ribbon Synapse from 20077 -> 99726, 20157 -> 99822, 95952 -> 36111, 104833 -> 104840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20077,"TargetID":99726,"Directional":true},{"SourceID":20157,"TargetID":99822,"Directional":true},{"SourceID":95952,"TargetID":36111,"Directional":true},{"SourceID":104833,"TargetID":104840,"Directional":true}]},{"ID":8110,"SourceStructureID":5278,"TargetStructureID":5107,"Label":"5278-5107 via Ribbon Synapse from 11208 -> 104215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11208,"TargetID":104215,"Directional":true}]},{"ID":8111,"SourceStructureID":5278,"TargetStructureID":6406,"Label":"5278-6406 via Ribbon Synapse from 20091 -> 20093","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20091,"TargetID":20093,"Directional":true}]},{"ID":8112,"SourceStructureID":5278,"TargetStructureID":8575,"Label":"5278-8575 via BC Conventional Synapse from 62069 -> 62068, 93411 -> 93412, 104822 -> 62259","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62069,"TargetID":62068,"Directional":true},{"SourceID":93411,"TargetID":93412,"Directional":true},{"SourceID":104822,"TargetID":62259,"Directional":true}]},{"ID":8113,"SourceStructureID":5278,"TargetStructureID":8579,"Label":"5278-8579 via Ribbon Synapse from 92309 -> 114300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92309,"TargetID":114300,"Directional":true}]},{"ID":8114,"SourceStructureID":5278,"TargetStructureID":15796,"Label":"5278-15796 via BC Conventional Synapse from 147262 -> 147261, 147320 -> 147319","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147262,"TargetID":147261,"Directional":true},{"SourceID":147320,"TargetID":147319,"Directional":true}]},{"ID":8115,"SourceStructureID":5278,"TargetStructureID":16073,"Label":"5278-16073 via BC Conventional Synapse from 19885 -> 19881, 92023 -> 19874","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":19885,"TargetID":19881,"Directional":true},{"SourceID":92023,"TargetID":19874,"Directional":true}]},{"ID":8116,"SourceStructureID":5278,"TargetStructureID":16073,"Label":"5278-16073 via Ribbon Synapse from 20017 -> 20018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20017,"TargetID":20018,"Directional":true}]},{"ID":8117,"SourceStructureID":5278,"TargetStructureID":18693,"Label":"5278-18693 via Ribbon Synapse from 8980 -> 100412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8980,"TargetID":100412,"Directional":true}]},{"ID":8118,"SourceStructureID":5278,"TargetStructureID":27304,"Label":"5278-27304 via Ribbon Synapse from 20069 -> 27306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20069,"TargetID":27306,"Directional":true}]},{"ID":8119,"SourceStructureID":5278,"TargetStructureID":32035,"Label":"5278-32035 via Ribbon Synapse from 11202 -> 32044","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11202,"TargetID":32044,"Directional":true}]},{"ID":8120,"SourceStructureID":5278,"TargetStructureID":34336,"Label":"5278-34336 via BC Conventional Synapse from 147290 -> 147289","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147290,"TargetID":147289,"Directional":true}]},{"ID":8121,"SourceStructureID":5278,"TargetStructureID":35894,"Label":"5278-35894 via Ribbon Synapse from 11191 -> 104083, 11199 -> 104177","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11191,"TargetID":104083,"Directional":true},{"SourceID":11199,"TargetID":104177,"Directional":true}]},{"ID":8122,"SourceStructureID":5278,"TargetStructureID":64774,"Label":"5278-64774 via BC Conventional Synapse from 147251 -> 147252","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147251,"TargetID":147252,"Directional":true}]},{"ID":8123,"SourceStructureID":5278,"TargetStructureID":65284,"Label":"5278-65284 via Ribbon Synapse from 20098 -> 99611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20098,"TargetID":99611,"Directional":true}]},{"ID":8124,"SourceStructureID":5278,"TargetStructureID":67182,"Label":"5278-67182 via Ribbon Synapse from 8984 -> 83311","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8984,"TargetID":83311,"Directional":true}]},{"ID":8125,"SourceStructureID":5278,"TargetStructureID":68539,"Label":"5278-68539 via Ribbon Synapse from 20126 -> 104034, 104193 -> 104196","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20126,"TargetID":104034,"Directional":true},{"SourceID":104193,"TargetID":104196,"Directional":true}]},{"ID":8126,"SourceStructureID":5278,"TargetStructureID":73390,"Label":"5278-73390 via Ribbon Synapse from 20126 -> 104035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20126,"TargetID":104035,"Directional":true}]},{"ID":8127,"SourceStructureID":5278,"TargetStructureID":73593,"Label":"5278-73593 via Ribbon Synapse from 104193 -> 104195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104193,"TargetID":104195,"Directional":true}]},{"ID":8128,"SourceStructureID":5278,"TargetStructureID":85955,"Label":"5278-85955 via Ribbon Synapse from 104241 -> 104376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104241,"TargetID":104376,"Directional":true}]},{"ID":8129,"SourceStructureID":5278,"TargetStructureID":86042,"Label":"5278-86042 via Ribbon Synapse from 114527 -> 89089","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114527,"TargetID":89089,"Directional":true}]},{"ID":8130,"SourceStructureID":5278,"TargetStructureID":92169,"Label":"5278-92169 via Ribbon Synapse from 104833 -> 104841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104833,"TargetID":104841,"Directional":true}]},{"ID":8131,"SourceStructureID":5278,"TargetStructureID":93392,"Label":"5278-93392 via Ribbon Synapse from 114502 -> 114504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114502,"TargetID":114504,"Directional":true}]},{"ID":8132,"SourceStructureID":5278,"TargetStructureID":93396,"Label":"5278-93396 via Ribbon Synapse from 114502 -> 114503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114502,"TargetID":114503,"Directional":true}]},{"ID":8133,"SourceStructureID":5278,"TargetStructureID":93399,"Label":"5278-93399 via Unknown from 114501 -> 93400","Type":"Unknown","Directional":true,"Links":[{"SourceID":114501,"TargetID":93400,"Directional":true}]},{"ID":8134,"SourceStructureID":5278,"TargetStructureID":93401,"Label":"5278-93401 via Unknown from 114501 -> 93402","Type":"Unknown","Directional":true,"Links":[{"SourceID":114501,"TargetID":93402,"Directional":true}]},{"ID":8135,"SourceStructureID":5278,"TargetStructureID":93407,"Label":"5278-93407 via BC Conventional Synapse from 93409 -> 93408","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93409,"TargetID":93408,"Directional":true}]},{"ID":8136,"SourceStructureID":5278,"TargetStructureID":93416,"Label":"5278-93416 via BC Conventional Synapse from 93417 -> 93418","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93417,"TargetID":93418,"Directional":true}]},{"ID":8137,"SourceStructureID":5278,"TargetStructureID":93420,"Label":"5278-93420 via Ribbon Synapse from 93419 -> 93421","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93419,"TargetID":93421,"Directional":true}]},{"ID":8138,"SourceStructureID":5278,"TargetStructureID":93424,"Label":"5278-93424 via Ribbon Synapse from 93419 -> 93425","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93419,"TargetID":93425,"Directional":true}]},{"ID":8139,"SourceStructureID":5278,"TargetStructureID":93463,"Label":"5278-93463 via Ribbon Synapse from 114497 -> 93464, 114499 -> 93464","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114497,"TargetID":93464,"Directional":true},{"SourceID":114499,"TargetID":93464,"Directional":true}]},{"ID":8140,"SourceStructureID":5278,"TargetStructureID":97925,"Label":"5278-97925 via Ribbon Synapse from 18485 -> 97926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18485,"TargetID":97926,"Directional":true}]},{"ID":8141,"SourceStructureID":5278,"TargetStructureID":97927,"Label":"5278-97927 via BC Conventional Synapse from 147324 -> 147323","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147324,"TargetID":147323,"Directional":true}]},{"ID":8142,"SourceStructureID":5278,"TargetStructureID":97933,"Label":"5278-97933 via Ribbon Synapse from 20032 -> 97950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20032,"TargetID":97950,"Directional":true}]},{"ID":8143,"SourceStructureID":5278,"TargetStructureID":97936,"Label":"5278-97936 via Ribbon Synapse from 11224 -> 97937","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11224,"TargetID":97937,"Directional":true}]},{"ID":8144,"SourceStructureID":5278,"TargetStructureID":97944,"Label":"5278-97944 via BC Conventional Synapse from 97945 -> 97946","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97945,"TargetID":97946,"Directional":true}]},{"ID":8145,"SourceStructureID":5278,"TargetStructureID":98810,"Label":"5278-98810 via Ribbon Synapse from 92096 -> 98811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92096,"TargetID":98811,"Directional":true}]},{"ID":8146,"SourceStructureID":5278,"TargetStructureID":98812,"Label":"5278-98812 via Ribbon Synapse from 92096 -> 98813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92096,"TargetID":98813,"Directional":true}]},{"ID":8147,"SourceStructureID":5278,"TargetStructureID":98814,"Label":"5278-98814 via Ribbon Synapse from 11227 -> 98816, 92096 -> 98815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11227,"TargetID":98816,"Directional":true},{"SourceID":92096,"TargetID":98815,"Directional":true}]},{"ID":8148,"SourceStructureID":5278,"TargetStructureID":98818,"Label":"5278-98818 via Ribbon Synapse from 11227 -> 98819","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11227,"TargetID":98819,"Directional":true}]},{"ID":8149,"SourceStructureID":5278,"TargetStructureID":98823,"Label":"5278-98823 via Ribbon Synapse from 20035 -> 98825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20035,"TargetID":98825,"Directional":true}]},{"ID":8150,"SourceStructureID":5278,"TargetStructureID":99237,"Label":"5278-99237 via Ribbon cluster from 92105 -> 99246","Type":"Ribbon cluster","Directional":true,"Links":[{"SourceID":92105,"TargetID":99246,"Directional":true}]},{"ID":8151,"SourceStructureID":5278,"TargetStructureID":99262,"Label":"5278-99262 via Ribbon Synapse from 133882 -> 133883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133882,"TargetID":133883,"Directional":true}]},{"ID":8152,"SourceStructureID":5278,"TargetStructureID":99268,"Label":"5278-99268 via Ribbon Synapse from 133882 -> 147325","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133882,"TargetID":147325,"Directional":true}]},{"ID":8153,"SourceStructureID":5278,"TargetStructureID":99288,"Label":"5278-99288 via Ribbon Synapse from 20048 -> 99289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20048,"TargetID":99289,"Directional":true}]},{"ID":8154,"SourceStructureID":5278,"TargetStructureID":99295,"Label":"5278-99295 via Ribbon Synapse from 20069 -> 99296","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20069,"TargetID":99296,"Directional":true}]},{"ID":8155,"SourceStructureID":5278,"TargetStructureID":99302,"Label":"5278-99302 via Ribbon Synapse from 20108 -> 99303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20108,"TargetID":99303,"Directional":true}]},{"ID":8156,"SourceStructureID":5278,"TargetStructureID":99309,"Label":"5278-99309 via Ribbon Synapse from 20109 -> 99310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20109,"TargetID":99310,"Directional":true}]},{"ID":8157,"SourceStructureID":5278,"TargetStructureID":99311,"Label":"5278-99311 via Ribbon Synapse from 20109 -> 99312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20109,"TargetID":99312,"Directional":true}]},{"ID":8158,"SourceStructureID":5278,"TargetStructureID":99513,"Label":"5278-99513 via Ribbon Synapse from 93419 -> 129644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93419,"TargetID":129644,"Directional":true}]},{"ID":8159,"SourceStructureID":5278,"TargetStructureID":99584,"Label":"5278-99584 via Ribbon Synapse from 20112 -> 99585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20112,"TargetID":99585,"Directional":true}]},{"ID":8160,"SourceStructureID":5278,"TargetStructureID":99586,"Label":"5278-99586 via Ribbon Synapse from 20112 -> 99588","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20112,"TargetID":99588,"Directional":true}]},{"ID":8161,"SourceStructureID":5278,"TargetStructureID":99600,"Label":"5278-99600 via Ribbon Synapse from 147327 -> 147328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147327,"TargetID":147328,"Directional":true}]},{"ID":8162,"SourceStructureID":5278,"TargetStructureID":99601,"Label":"5278-99601 via Ribbon Synapse from 92115 -> 99605","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92115,"TargetID":99605,"Directional":true}]},{"ID":8163,"SourceStructureID":5278,"TargetStructureID":99609,"Label":"5278-99609 via Ribbon Synapse from 20098 -> 99610","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20098,"TargetID":99610,"Directional":true}]},{"ID":8164,"SourceStructureID":5278,"TargetStructureID":99612,"Label":"5278-99612 via BC Conventional Synapse from 20072 -> 99613","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":20072,"TargetID":99613,"Directional":true}]},{"ID":8165,"SourceStructureID":5278,"TargetStructureID":99728,"Label":"5278-99728 via Ribbon Synapse from 20077 -> 99729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20077,"TargetID":99729,"Directional":true}]},{"ID":8166,"SourceStructureID":5278,"TargetStructureID":99784,"Label":"5278-99784 via Ribbon Synapse from 20091 -> 99785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20091,"TargetID":99785,"Directional":true}]},{"ID":8167,"SourceStructureID":5278,"TargetStructureID":99786,"Label":"5278-99786 via BC Conventional Synapse from 20119 -> 99787","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":20119,"TargetID":99787,"Directional":true}]},{"ID":8168,"SourceStructureID":5278,"TargetStructureID":99792,"Label":"5278-99792 via Ribbon Synapse from 8958 -> 99794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8958,"TargetID":99794,"Directional":true}]},{"ID":8169,"SourceStructureID":5278,"TargetStructureID":99812,"Label":"5278-99812 via Ribbon Synapse from 20155 -> 99813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20155,"TargetID":99813,"Directional":true}]},{"ID":8170,"SourceStructureID":5278,"TargetStructureID":99818,"Label":"5278-99818 via Ribbon Synapse from 20157 -> 99820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20157,"TargetID":99820,"Directional":true}]},{"ID":8171,"SourceStructureID":5278,"TargetStructureID":99824,"Label":"5278-99824 via Ribbon Synapse from 20161 -> 99825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20161,"TargetID":99825,"Directional":true}]},{"ID":8172,"SourceStructureID":5278,"TargetStructureID":99827,"Label":"5278-99827 via BC Conventional Synapse from 20162 -> 99828","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":20162,"TargetID":99828,"Directional":true}]},{"ID":8173,"SourceStructureID":5278,"TargetStructureID":99831,"Label":"5278-99831 via Ribbon Synapse from 20165 -> 100140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20165,"TargetID":100140,"Directional":true}]},{"ID":8174,"SourceStructureID":5278,"TargetStructureID":100110,"Label":"5278-100110 via Ribbon Synapse from 20164 -> 100115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20164,"TargetID":100115,"Directional":true}]},{"ID":8175,"SourceStructureID":5278,"TargetStructureID":100121,"Label":"5278-100121 via Ribbon Synapse from 20164 -> 100122","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20164,"TargetID":100122,"Directional":true}]},{"ID":8176,"SourceStructureID":5278,"TargetStructureID":100129,"Label":"5278-100129 via Ribbon Synapse from 20165 -> 100141","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20165,"TargetID":100141,"Directional":true}]},{"ID":8177,"SourceStructureID":5278,"TargetStructureID":100157,"Label":"5278-100157 via Ribbon Synapse from 20163 -> 100159","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20163,"TargetID":100159,"Directional":true}]},{"ID":8178,"SourceStructureID":5278,"TargetStructureID":100195,"Label":"5278-100195 via Ribbon Synapse from 8973 -> 100196","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8973,"TargetID":100196,"Directional":true}]},{"ID":8179,"SourceStructureID":5278,"TargetStructureID":100201,"Label":"5278-100201 via BC Conventional Synapse from 100213 -> 100214","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100213,"TargetID":100214,"Directional":true}]},{"ID":8180,"SourceStructureID":5278,"TargetStructureID":100235,"Label":"5278-100235 via Ribbon Synapse from 8977 -> 100236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8977,"TargetID":100236,"Directional":true}]},{"ID":8181,"SourceStructureID":5278,"TargetStructureID":100365,"Label":"5278-100365 via Ribbon Synapse from 8982 -> 100368","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8982,"TargetID":100368,"Directional":true}]},{"ID":8182,"SourceStructureID":5278,"TargetStructureID":100374,"Label":"5278-100374 via Ribbon Synapse from 147298 -> 147299","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147298,"TargetID":147299,"Directional":true}]},{"ID":8183,"SourceStructureID":5278,"TargetStructureID":100389,"Label":"5278-100389 via Ribbon Synapse from 8981 -> 100394","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8981,"TargetID":100394,"Directional":true}]},{"ID":8184,"SourceStructureID":5278,"TargetStructureID":100396,"Label":"5278-100396 via Ribbon Synapse from 8981 -> 100397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8981,"TargetID":100397,"Directional":true}]},{"ID":8185,"SourceStructureID":5278,"TargetStructureID":100400,"Label":"5278-100400 via Ribbon Synapse from 8976 -> 100424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8976,"TargetID":100424,"Directional":true}]},{"ID":8186,"SourceStructureID":5278,"TargetStructureID":100414,"Label":"5278-100414 via Ribbon Synapse from 8975 -> 100428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8975,"TargetID":100428,"Directional":true}]},{"ID":8187,"SourceStructureID":5278,"TargetStructureID":100422,"Label":"5278-100422 via Ribbon Synapse from 8976 -> 100423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8976,"TargetID":100423,"Directional":true}]},{"ID":8188,"SourceStructureID":5278,"TargetStructureID":100425,"Label":"5278-100425 via Ribbon Synapse from 8975 -> 100427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8975,"TargetID":100427,"Directional":true}]},{"ID":8189,"SourceStructureID":5278,"TargetStructureID":100450,"Label":"5278-100450 via Ribbon Synapse from 8974 -> 100451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8974,"TargetID":100451,"Directional":true}]},{"ID":8190,"SourceStructureID":5278,"TargetStructureID":100452,"Label":"5278-100452 via Ribbon Synapse from 8974 -> 100453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8974,"TargetID":100453,"Directional":true}]},{"ID":8191,"SourceStructureID":5278,"TargetStructureID":100455,"Label":"5278-100455 via Ribbon Synapse from 8974 -> 100456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8974,"TargetID":100456,"Directional":true}]},{"ID":8192,"SourceStructureID":5278,"TargetStructureID":100485,"Label":"5278-100485 via Ribbon Synapse from 147460 -> 147300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147460,"TargetID":147300,"Directional":true}]},{"ID":8193,"SourceStructureID":5278,"TargetStructureID":100521,"Label":"5278-100521 via Ribbon Synapse from 100520 -> 100523","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100520,"TargetID":100523,"Directional":true}]},{"ID":8194,"SourceStructureID":5278,"TargetStructureID":100524,"Label":"5278-100524 via Ribbon Synapse from 100520 -> 100531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100520,"TargetID":100531,"Directional":true}]},{"ID":8195,"SourceStructureID":5278,"TargetStructureID":100536,"Label":"5278-100536 via Ribbon Synapse from 100545 -> 100547","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100545,"TargetID":100547,"Directional":true}]},{"ID":8196,"SourceStructureID":5278,"TargetStructureID":100548,"Label":"5278-100548 via Ribbon Synapse from 92152 -> 100550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92152,"TargetID":100550,"Directional":true}]},{"ID":8197,"SourceStructureID":5278,"TargetStructureID":100779,"Label":"5278-100779 via Ribbon Synapse from 92138 -> 100781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92138,"TargetID":100781,"Directional":true}]},{"ID":8198,"SourceStructureID":5278,"TargetStructureID":100788,"Label":"5278-100788 via Ribbon Synapse from 92138 -> 100790","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92138,"TargetID":100790,"Directional":true}]},{"ID":8199,"SourceStructureID":5278,"TargetStructureID":100795,"Label":"5278-100795 via BC Conventional Synapse from 100794 -> 100796","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100794,"TargetID":100796,"Directional":true}]},{"ID":8200,"SourceStructureID":5278,"TargetStructureID":100803,"Label":"5278-100803 via Ribbon Synapse from 92137 -> 100806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92137,"TargetID":100806,"Directional":true}]},{"ID":8201,"SourceStructureID":5278,"TargetStructureID":100829,"Label":"5278-100829 via Ribbon Synapse from 8984 -> 100830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8984,"TargetID":100830,"Directional":true}]},{"ID":8202,"SourceStructureID":5278,"TargetStructureID":100831,"Label":"5278-100831 via Ribbon Synapse from 8986 -> 100832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8986,"TargetID":100832,"Directional":true}]},{"ID":8203,"SourceStructureID":5278,"TargetStructureID":104007,"Label":"5278-104007 via Ribbon Synapse from 11188 -> 104008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11188,"TargetID":104008,"Directional":true}]},{"ID":8204,"SourceStructureID":5278,"TargetStructureID":104009,"Label":"5278-104009 via Ribbon Synapse from 11188 -> 104010","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11188,"TargetID":104010,"Directional":true}]},{"ID":8205,"SourceStructureID":5278,"TargetStructureID":104012,"Label":"5278-104012 via Ribbon Synapse from 8985 -> 104014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8985,"TargetID":104014,"Directional":true}]},{"ID":8206,"SourceStructureID":5278,"TargetStructureID":104015,"Label":"5278-104015 via Ribbon Synapse from 8985 -> 104021, 20125 -> 104020","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8985,"TargetID":104021,"Directional":true},{"SourceID":20125,"TargetID":104020,"Directional":true}]},{"ID":8207,"SourceStructureID":5278,"TargetStructureID":104028,"Label":"5278-104028 via Ribbon Synapse from 20125 -> 104029","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20125,"TargetID":104029,"Directional":true}]},{"ID":8208,"SourceStructureID":5278,"TargetStructureID":104038,"Label":"5278-104038 via Ribbon Synapse from 8988 -> 104042, 8989 -> 104039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8988,"TargetID":104042,"Directional":true},{"SourceID":8989,"TargetID":104039,"Directional":true}]},{"ID":8209,"SourceStructureID":5278,"TargetStructureID":104040,"Label":"5278-104040 via Ribbon Synapse from 8989 -> 104041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8989,"TargetID":104041,"Directional":true}]},{"ID":8210,"SourceStructureID":5278,"TargetStructureID":104044,"Label":"5278-104044 via Ribbon Synapse from 8988 -> 104045, 8989 -> 104046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8988,"TargetID":104045,"Directional":true},{"SourceID":8989,"TargetID":104046,"Directional":true}]},{"ID":8211,"SourceStructureID":5278,"TargetStructureID":104068,"Label":"5278-104068 via Unknown from 104070 -> 104069","Type":"Unknown","Directional":true,"Links":[{"SourceID":104070,"TargetID":104069,"Directional":true}]},{"ID":8212,"SourceStructureID":5278,"TargetStructureID":104079,"Label":"5278-104079 via Ribbon Synapse from 11191 -> 104080, 11191 -> 104081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11191,"TargetID":104080,"Directional":true},{"SourceID":11191,"TargetID":104081,"Directional":true}]},{"ID":8213,"SourceStructureID":5278,"TargetStructureID":104084,"Label":"5278-104084 via Ribbon Synapse from 104099 -> 104100","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104099,"TargetID":104100,"Directional":true}]},{"ID":8214,"SourceStructureID":5278,"TargetStructureID":104095,"Label":"5278-104095 via BC Conventional Synapse from 104098 -> 104096","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104098,"TargetID":104096,"Directional":true}]},{"ID":8215,"SourceStructureID":5278,"TargetStructureID":104105,"Label":"5278-104105 via Ribbon Synapse from 11195 -> 104106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11195,"TargetID":104106,"Directional":true}]},{"ID":8216,"SourceStructureID":5278,"TargetStructureID":104107,"Label":"5278-104107 via Ribbon Synapse from 11195 -> 104108","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11195,"TargetID":104108,"Directional":true}]},{"ID":8217,"SourceStructureID":5278,"TargetStructureID":104114,"Label":"5278-104114 via BC Conventional Synapse from 104116 -> 104115","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104116,"TargetID":104115,"Directional":true}]},{"ID":8218,"SourceStructureID":5278,"TargetStructureID":104117,"Label":"5278-104117 via Ribbon Synapse from 11211 -> 104128, 11212 -> 104132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11211,"TargetID":104128,"Directional":true},{"SourceID":11212,"TargetID":104132,"Directional":true}]},{"ID":8219,"SourceStructureID":5278,"TargetStructureID":104129,"Label":"5278-104129 via Ribbon Synapse from 11211 -> 104134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11211,"TargetID":104134,"Directional":true}]},{"ID":8220,"SourceStructureID":5278,"TargetStructureID":104137,"Label":"5278-104137 via Ribbon Synapse from 11212 -> 104138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11212,"TargetID":104138,"Directional":true}]},{"ID":8221,"SourceStructureID":5278,"TargetStructureID":104168,"Label":"5278-104168 via Ribbon Synapse from 20128 -> 104187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20128,"TargetID":104187,"Directional":true}]},{"ID":8222,"SourceStructureID":5278,"TargetStructureID":104170,"Label":"5278-104170 via Ribbon Synapse from 20128 -> 104186, 20129 -> 104185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20128,"TargetID":104186,"Directional":true},{"SourceID":20129,"TargetID":104185,"Directional":true}]},{"ID":8223,"SourceStructureID":5278,"TargetStructureID":104178,"Label":"5278-104178 via Ribbon Synapse from 11199 -> 104179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11199,"TargetID":104179,"Directional":true}]},{"ID":8224,"SourceStructureID":5278,"TargetStructureID":104180,"Label":"5278-104180 via Ribbon Synapse from 20129 -> 104184","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20129,"TargetID":104184,"Directional":true}]},{"ID":8225,"SourceStructureID":5278,"TargetStructureID":104202,"Label":"5278-104202 via Ribbon Synapse from 104197 -> 104203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104197,"TargetID":104203,"Directional":true}]},{"ID":8226,"SourceStructureID":5278,"TargetStructureID":104204,"Label":"5278-104204 via Ribbon Synapse from 104197 -> 104205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104197,"TargetID":104205,"Directional":true}]},{"ID":8227,"SourceStructureID":5278,"TargetStructureID":104206,"Label":"5278-104206 via Ribbon Synapse from 11202 -> 104207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11202,"TargetID":104207,"Directional":true}]},{"ID":8228,"SourceStructureID":5278,"TargetStructureID":104216,"Label":"5278-104216 via Ribbon Synapse from 11208 -> 104217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11208,"TargetID":104217,"Directional":true}]},{"ID":8229,"SourceStructureID":5278,"TargetStructureID":104218,"Label":"5278-104218 via Ribbon Synapse from 11208 -> 104219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11208,"TargetID":104219,"Directional":true}]},{"ID":8230,"SourceStructureID":5278,"TargetStructureID":104222,"Label":"5278-104222 via Ribbon Synapse from 104227 -> 104228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104227,"TargetID":104228,"Directional":true}]},{"ID":8231,"SourceStructureID":5278,"TargetStructureID":104223,"Label":"5278-104223 via Ribbon Synapse from 11206 -> 104229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11206,"TargetID":104229,"Directional":true}]},{"ID":8232,"SourceStructureID":5278,"TargetStructureID":104235,"Label":"5278-104235 via Ribbon Synapse from 147305 -> 147306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147305,"TargetID":147306,"Directional":true}]},{"ID":8233,"SourceStructureID":5278,"TargetStructureID":104242,"Label":"5278-104242 via BC Conventional Synapse from 104383 -> 104382","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104383,"TargetID":104382,"Directional":true}]},{"ID":8234,"SourceStructureID":5278,"TargetStructureID":104242,"Label":"5278-104242 via Ribbon Synapse from 104241 -> 104243","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104241,"TargetID":104243,"Directional":true}]},{"ID":8235,"SourceStructureID":5278,"TargetStructureID":104244,"Label":"5278-104244 via Ribbon Synapse from 104245 -> 104246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104245,"TargetID":104246,"Directional":true}]},{"ID":8236,"SourceStructureID":5278,"TargetStructureID":104247,"Label":"5278-104247 via Ribbon Synapse from 104245 -> 104248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104245,"TargetID":104248,"Directional":true}]},{"ID":8237,"SourceStructureID":5278,"TargetStructureID":104250,"Label":"5278-104250 via Ribbon Synapse from 104249 -> 104251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104249,"TargetID":104251,"Directional":true}]},{"ID":8238,"SourceStructureID":5278,"TargetStructureID":104252,"Label":"5278-104252 via Ribbon Synapse from 104249 -> 104253, 104254 -> 104257, 104258 -> 104262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104249,"TargetID":104253,"Directional":true},{"SourceID":104254,"TargetID":104257,"Directional":true},{"SourceID":104258,"TargetID":104262,"Directional":true}]},{"ID":8239,"SourceStructureID":5278,"TargetStructureID":104255,"Label":"5278-104255 via Ribbon Synapse from 104254 -> 104256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104254,"TargetID":104256,"Directional":true}]},{"ID":8240,"SourceStructureID":5278,"TargetStructureID":104259,"Label":"5278-104259 via Ribbon Synapse from 104249 -> 147304, 104258 -> 104260","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104249,"TargetID":147304,"Directional":true},{"SourceID":104258,"TargetID":104260,"Directional":true}]},{"ID":8241,"SourceStructureID":5278,"TargetStructureID":104263,"Label":"5278-104263 via BC Conventional Synapse from 147308 -> 147309","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147308,"TargetID":147309,"Directional":true}]},{"ID":8242,"SourceStructureID":5278,"TargetStructureID":104299,"Label":"5278-104299 via Ribbon Synapse from 104298 -> 104311","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104298,"TargetID":104311,"Directional":true}]},{"ID":8243,"SourceStructureID":5278,"TargetStructureID":104301,"Label":"5278-104301 via Ribbon Synapse from 104298 -> 104307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104298,"TargetID":104307,"Directional":true}]},{"ID":8244,"SourceStructureID":5278,"TargetStructureID":104302,"Label":"5278-104302 via Ribbon Synapse from 104298 -> 104305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104298,"TargetID":104305,"Directional":true}]},{"ID":8245,"SourceStructureID":5278,"TargetStructureID":104333,"Label":"5278-104333 via Ribbon Synapse from 104331 -> 104336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104331,"TargetID":104336,"Directional":true}]},{"ID":8246,"SourceStructureID":5278,"TargetStructureID":104346,"Label":"5278-104346 via Ribbon Synapse from 104351 -> 104355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104351,"TargetID":104355,"Directional":true}]},{"ID":8247,"SourceStructureID":5278,"TargetStructureID":104353,"Label":"5278-104353 via Ribbon Synapse from 104351 -> 104354","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104351,"TargetID":104354,"Directional":true}]},{"ID":8248,"SourceStructureID":5278,"TargetStructureID":104377,"Label":"5278-104377 via Ribbon Synapse from 104384 -> 104387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104384,"TargetID":104387,"Directional":true}]},{"ID":8249,"SourceStructureID":5278,"TargetStructureID":104385,"Label":"5278-104385 via Ribbon Synapse from 104384 -> 104386","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104384,"TargetID":104386,"Directional":true}]},{"ID":8250,"SourceStructureID":5278,"TargetStructureID":104397,"Label":"5278-104397 via Ribbon Synapse from 92194 -> 104398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92194,"TargetID":104398,"Directional":true}]},{"ID":8251,"SourceStructureID":5278,"TargetStructureID":104402,"Label":"5278-104402 via Ribbon Synapse from 104407 -> 104408","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104407,"TargetID":104408,"Directional":true}]},{"ID":8252,"SourceStructureID":5278,"TargetStructureID":104403,"Label":"5278-104403 via Ribbon Synapse from 104407 -> 104409","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104407,"TargetID":104409,"Directional":true}]},{"ID":8253,"SourceStructureID":5278,"TargetStructureID":104411,"Label":"5278-104411 via Ribbon Synapse from 92194 -> 104412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92194,"TargetID":104412,"Directional":true}]},{"ID":8254,"SourceStructureID":5278,"TargetStructureID":104421,"Label":"5278-104421 via Ribbon Synapse from 104420 -> 104423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104420,"TargetID":104423,"Directional":true}]},{"ID":8255,"SourceStructureID":5278,"TargetStructureID":104425,"Label":"5278-104425 via BC Conventional Synapse from 92166 -> 104426","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92166,"TargetID":104426,"Directional":true}]},{"ID":8256,"SourceStructureID":5278,"TargetStructureID":104428,"Label":"5278-104428 via Ribbon Synapse from 92164 -> 104429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92164,"TargetID":104429,"Directional":true}]},{"ID":8257,"SourceStructureID":5278,"TargetStructureID":104444,"Label":"5278-104444 via Ribbon Synapse from 92181 -> 104529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92181,"TargetID":104529,"Directional":true}]},{"ID":8258,"SourceStructureID":5278,"TargetStructureID":104496,"Label":"5278-104496 via Ribbon Synapse from 92163 -> 104498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92163,"TargetID":104498,"Directional":true}]},{"ID":8259,"SourceStructureID":5278,"TargetStructureID":104499,"Label":"5278-104499 via Ribbon Synapse from 92163 -> 104500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92163,"TargetID":104500,"Directional":true}]},{"ID":8260,"SourceStructureID":5278,"TargetStructureID":104516,"Label":"5278-104516 via Ribbon Synapse from 104515 -> 104517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104515,"TargetID":104517,"Directional":true}]},{"ID":8261,"SourceStructureID":5278,"TargetStructureID":104521,"Label":"5278-104521 via Ribbon Synapse from 92181 -> 116724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92181,"TargetID":116724,"Directional":true}]},{"ID":8262,"SourceStructureID":5278,"TargetStructureID":104547,"Label":"5278-104547 via Ribbon Synapse from 104420 -> 104551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104420,"TargetID":104551,"Directional":true}]},{"ID":8263,"SourceStructureID":5278,"TargetStructureID":104568,"Label":"5278-104568 via Ribbon Synapse from 104584 -> 104585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104584,"TargetID":104585,"Directional":true}]},{"ID":8264,"SourceStructureID":5278,"TargetStructureID":104569,"Label":"5278-104569 via Ribbon Synapse from 92211 -> 104578","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92211,"TargetID":104578,"Directional":true}]},{"ID":8265,"SourceStructureID":5278,"TargetStructureID":104571,"Label":"5278-104571 via Ribbon Synapse from 92211 -> 104576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92211,"TargetID":104576,"Directional":true}]},{"ID":8266,"SourceStructureID":5278,"TargetStructureID":104591,"Label":"5278-104591 via Ribbon Synapse from 92219 -> 104596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92219,"TargetID":104596,"Directional":true}]},{"ID":8267,"SourceStructureID":5278,"TargetStructureID":104806,"Label":"5278-104806 via Ribbon Synapse from 92219 -> 104807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92219,"TargetID":104807,"Directional":true}]},{"ID":8268,"SourceStructureID":5278,"TargetStructureID":104808,"Label":"5278-104808 via Ribbon Synapse from 104811 -> 104821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104811,"TargetID":104821,"Directional":true}]},{"ID":8269,"SourceStructureID":5278,"TargetStructureID":104812,"Label":"5278-104812 via Ribbon Synapse from 92216 -> 104816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92216,"TargetID":104816,"Directional":true}]},{"ID":8270,"SourceStructureID":5278,"TargetStructureID":104823,"Label":"5278-104823 via Ribbon Synapse from 92216 -> 104827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92216,"TargetID":104827,"Directional":true}]},{"ID":8271,"SourceStructureID":5278,"TargetStructureID":104834,"Label":"5278-104834 via Ribbon Synapse from 104833 -> 104839","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104833,"TargetID":104839,"Directional":true}]},{"ID":8272,"SourceStructureID":5278,"TargetStructureID":104842,"Label":"5278-104842 via Ribbon Synapse from 104845 -> 104852, 104854 -> 104855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104845,"TargetID":104852,"Directional":true},{"SourceID":104854,"TargetID":104855,"Directional":true}]},{"ID":8273,"SourceStructureID":5278,"TargetStructureID":104848,"Label":"5278-104848 via Ribbon Synapse from 104845 -> 104849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104845,"TargetID":104849,"Directional":true}]},{"ID":8274,"SourceStructureID":5278,"TargetStructureID":104850,"Label":"5278-104850 via Ribbon Synapse from 104845 -> 104851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104845,"TargetID":104851,"Directional":true}]},{"ID":8275,"SourceStructureID":5278,"TargetStructureID":104856,"Label":"5278-104856 via Ribbon Synapse from 104854 -> 104857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104854,"TargetID":104857,"Directional":true}]},{"ID":8276,"SourceStructureID":5278,"TargetStructureID":104858,"Label":"5278-104858 via Ribbon Synapse from 104853 -> 104859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104853,"TargetID":104859,"Directional":true}]},{"ID":8277,"SourceStructureID":5278,"TargetStructureID":120783,"Label":"5278-120783 via Ribbon Synapse from 114179 -> 120928","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114179,"TargetID":120928,"Directional":true}]},{"ID":8278,"SourceStructureID":5279,"TargetStructureID":5107,"Label":"5279-5107 via Ribbon Synapse from 6354 -> 97284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6354,"TargetID":97284,"Directional":true}]},{"ID":8279,"SourceStructureID":5279,"TargetStructureID":5280,"Label":"5279-5280 via Ribbon Synapse from 25683 -> 96398, 25683 -> 96399, 25685 -> 40883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25683,"TargetID":96398,"Directional":true},{"SourceID":25683,"TargetID":96399,"Directional":true},{"SourceID":25685,"TargetID":40883,"Directional":true}]},{"ID":8280,"SourceStructureID":5279,"TargetStructureID":5282,"Label":"5279-5282 via Ribbon Synapse from 6351 -> 87549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6351,"TargetID":87549,"Directional":true}]},{"ID":8281,"SourceStructureID":5279,"TargetStructureID":5489,"Label":"5279-5489 via Ribbon Synapse from 92556 -> 119112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92556,"TargetID":119112,"Directional":true}]},{"ID":8282,"SourceStructureID":5279,"TargetStructureID":6857,"Label":"5279-6857 via Ribbon Synapse from 59054 -> 7539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59054,"TargetID":7539,"Directional":true}]},{"ID":8283,"SourceStructureID":5279,"TargetStructureID":8579,"Label":"5279-8579 via Ribbon Synapse from 6351 -> 62897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6351,"TargetID":62897,"Directional":true}]},{"ID":8284,"SourceStructureID":5279,"TargetStructureID":15796,"Label":"5279-15796 via Ribbon Synapse from 27433 -> 20151","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27433,"TargetID":20151,"Directional":true}]},{"ID":8285,"SourceStructureID":5279,"TargetStructureID":37466,"Label":"5279-37466 via Ribbon Synapse from 11479 -> 37478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11479,"TargetID":37478,"Directional":true}]},{"ID":8286,"SourceStructureID":5279,"TargetStructureID":39957,"Label":"5279-39957 via BC Conventional Synapse from 97623 -> 97624","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97623,"TargetID":97624,"Directional":true}]},{"ID":8287,"SourceStructureID":5279,"TargetStructureID":47104,"Label":"5279-47104 via Ribbon Synapse from 47147 -> 47146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47147,"TargetID":47146,"Directional":true}]},{"ID":8288,"SourceStructureID":5279,"TargetStructureID":55347,"Label":"5279-55347 via Ribbon Synapse from 119116 -> 119115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119116,"TargetID":119115,"Directional":true}]},{"ID":8289,"SourceStructureID":5279,"TargetStructureID":57034,"Label":"5279-57034 via Ribbon Synapse from 92550 -> 65397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92550,"TargetID":65397,"Directional":true}]},{"ID":8290,"SourceStructureID":5279,"TargetStructureID":58592,"Label":"5279-58592 via Ribbon Synapse from 49229 -> 58627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49229,"TargetID":58627,"Directional":true}]},{"ID":8291,"SourceStructureID":5279,"TargetStructureID":58816,"Label":"5279-58816 via Ribbon Synapse from 49203 -> 58824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49203,"TargetID":58824,"Directional":true}]},{"ID":8292,"SourceStructureID":5279,"TargetStructureID":59012,"Label":"5279-59012 via Ribbon Synapse from 59016 -> 59017, 59016 -> 116767","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59016,"TargetID":59017,"Directional":true},{"SourceID":59016,"TargetID":116767,"Directional":true}]},{"ID":8293,"SourceStructureID":5279,"TargetStructureID":61793,"Label":"5279-61793 via Ribbon Synapse from 130718 -> 61794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130718,"TargetID":61794,"Directional":true}]},{"ID":8294,"SourceStructureID":5279,"TargetStructureID":66395,"Label":"5279-66395 via Ribbon Synapse from 27433 -> 97596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27433,"TargetID":97596,"Directional":true}]},{"ID":8295,"SourceStructureID":5279,"TargetStructureID":66523,"Label":"5279-66523 via Ribbon Synapse from 97217 -> 97220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97217,"TargetID":97220,"Directional":true}]},{"ID":8296,"SourceStructureID":5279,"TargetStructureID":67182,"Label":"5279-67182 via Ribbon Synapse from 25819 -> 92662","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25819,"TargetID":92662,"Directional":true}]},{"ID":8297,"SourceStructureID":5279,"TargetStructureID":68335,"Label":"5279-68335 via Ribbon Synapse from 130718 -> 68336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130718,"TargetID":68336,"Directional":true}]},{"ID":8298,"SourceStructureID":5279,"TargetStructureID":68430,"Label":"5279-68430 via BC Conventional Synapse from 98089 -> 98090","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98089,"TargetID":98090,"Directional":true}]},{"ID":8299,"SourceStructureID":5279,"TargetStructureID":70360,"Label":"5279-70360 via Ribbon Synapse from 28312 -> 97338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28312,"TargetID":97338,"Directional":true}]},{"ID":8300,"SourceStructureID":5279,"TargetStructureID":83190,"Label":"5279-83190 via Ribbon Synapse from 92556 -> 129646","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92556,"TargetID":129646,"Directional":true}]},{"ID":8301,"SourceStructureID":5279,"TargetStructureID":83293,"Label":"5279-83293 via Ribbon Synapse from 25795 -> 96482","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25795,"TargetID":96482,"Directional":true}]},{"ID":8302,"SourceStructureID":5279,"TargetStructureID":88565,"Label":"5279-88565 via Ribbon Synapse from 6351 -> 97231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6351,"TargetID":97231,"Directional":true}]},{"ID":8303,"SourceStructureID":5279,"TargetStructureID":92638,"Label":"5279-92638 via Ribbon Synapse from 25999 -> 92857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25999,"TargetID":92857,"Directional":true}]},{"ID":8304,"SourceStructureID":5279,"TargetStructureID":94878,"Label":"5279-94878 via Ribbon Synapse from 25796 -> 96509","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25796,"TargetID":96509,"Directional":true}]},{"ID":8305,"SourceStructureID":5279,"TargetStructureID":96343,"Label":"5279-96343 via Cistern Pre from 27529 -> 126411","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":27529,"TargetID":126411,"Directional":true}]},{"ID":8306,"SourceStructureID":5279,"TargetStructureID":96345,"Label":"5279-96345 via Ribbon Synapse from 15122 -> 96349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15122,"TargetID":96349,"Directional":true}]},{"ID":8307,"SourceStructureID":5279,"TargetStructureID":96353,"Label":"5279-96353 via Ribbon Synapse from 6905 -> 96355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6905,"TargetID":96355,"Directional":true}]},{"ID":8308,"SourceStructureID":5279,"TargetStructureID":96413,"Label":"5279-96413 via Ribbon Synapse from 96412 -> 96416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96412,"TargetID":96416,"Directional":true}]},{"ID":8309,"SourceStructureID":5279,"TargetStructureID":96417,"Label":"5279-96417 via Ribbon Synapse from 49236 -> 96418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49236,"TargetID":96418,"Directional":true}]},{"ID":8310,"SourceStructureID":5279,"TargetStructureID":96423,"Label":"5279-96423 via Ribbon Synapse from 49238 -> 96424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49238,"TargetID":96424,"Directional":true}]},{"ID":8311,"SourceStructureID":5279,"TargetStructureID":96439,"Label":"5279-96439 via Ribbon Synapse from 47147 -> 96441","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47147,"TargetID":96441,"Directional":true}]},{"ID":8312,"SourceStructureID":5279,"TargetStructureID":96446,"Label":"5279-96446 via Ribbon Synapse from 147963 -> 147962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147963,"TargetID":147962,"Directional":true}]},{"ID":8313,"SourceStructureID":5279,"TargetStructureID":96465,"Label":"5279-96465 via Ribbon Synapse from 133835 -> 133836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133835,"TargetID":133836,"Directional":true}]},{"ID":8314,"SourceStructureID":5279,"TargetStructureID":96483,"Label":"5279-96483 via Ribbon Synapse from 25795 -> 96484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25795,"TargetID":96484,"Directional":true}]},{"ID":8315,"SourceStructureID":5279,"TargetStructureID":96493,"Label":"5279-96493 via Ribbon Synapse from 6341 -> 96498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6341,"TargetID":96498,"Directional":true}]},{"ID":8316,"SourceStructureID":5279,"TargetStructureID":96494,"Label":"5279-96494 via Ribbon Synapse from 6341 -> 96497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6341,"TargetID":96497,"Directional":true}]},{"ID":8317,"SourceStructureID":5279,"TargetStructureID":96505,"Label":"5279-96505 via BC Conventional Synapse from 96514 -> 96513","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96514,"TargetID":96513,"Directional":true}]},{"ID":8318,"SourceStructureID":5279,"TargetStructureID":96505,"Label":"5279-96505 via Ribbon Synapse from 25796 -> 96507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25796,"TargetID":96507,"Directional":true}]},{"ID":8319,"SourceStructureID":5279,"TargetStructureID":97018,"Label":"5279-97018 via Ribbon Synapse from 25802 -> 97022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25802,"TargetID":97022,"Directional":true}]},{"ID":8320,"SourceStructureID":5279,"TargetStructureID":97034,"Label":"5279-97034 via Ribbon Synapse from 25801 -> 97036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25801,"TargetID":97036,"Directional":true}]},{"ID":8321,"SourceStructureID":5279,"TargetStructureID":97124,"Label":"5279-97124 via Ribbon Synapse from 25805 -> 97125","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25805,"TargetID":97125,"Directional":true}]},{"ID":8322,"SourceStructureID":5279,"TargetStructureID":97126,"Label":"5279-97126 via Ribbon Synapse from 97127 -> 97128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97127,"TargetID":97128,"Directional":true}]},{"ID":8323,"SourceStructureID":5279,"TargetStructureID":97129,"Label":"5279-97129 via Ribbon Synapse from 97127 -> 97132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97127,"TargetID":97132,"Directional":true}]},{"ID":8324,"SourceStructureID":5279,"TargetStructureID":97152,"Label":"5279-97152 via Ribbon Synapse from 25809 -> 97153","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25809,"TargetID":97153,"Directional":true}]},{"ID":8325,"SourceStructureID":5279,"TargetStructureID":97156,"Label":"5279-97156 via Ribbon Synapse from 25811 -> 97158","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25811,"TargetID":97158,"Directional":true}]},{"ID":8326,"SourceStructureID":5279,"TargetStructureID":97162,"Label":"5279-97162 via Ribbon Synapse from 25809 -> 97163","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25809,"TargetID":97163,"Directional":true}]},{"ID":8327,"SourceStructureID":5279,"TargetStructureID":97167,"Label":"5279-97167 via Ribbon Synapse from 97168 -> 97169","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97168,"TargetID":97169,"Directional":true}]},{"ID":8328,"SourceStructureID":5279,"TargetStructureID":97218,"Label":"5279-97218 via Ribbon Synapse from 97217 -> 97219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97217,"TargetID":97219,"Directional":true}]},{"ID":8329,"SourceStructureID":5279,"TargetStructureID":97223,"Label":"5279-97223 via Ribbon Synapse from 6346 -> 97224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6346,"TargetID":97224,"Directional":true}]},{"ID":8330,"SourceStructureID":5279,"TargetStructureID":97228,"Label":"5279-97228 via Ribbon Synapse from 6346 -> 97229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6346,"TargetID":97229,"Directional":true}]},{"ID":8331,"SourceStructureID":5279,"TargetStructureID":97261,"Label":"5279-97261 via Ribbon Synapse from 6343 -> 97262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6343,"TargetID":97262,"Directional":true}]},{"ID":8332,"SourceStructureID":5279,"TargetStructureID":97294,"Label":"5279-97294 via Ribbon Synapse from 6353 -> 97296","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6353,"TargetID":97296,"Directional":true}]},{"ID":8333,"SourceStructureID":5279,"TargetStructureID":97302,"Label":"5279-97302 via Ribbon Synapse from 25838 -> 97303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25838,"TargetID":97303,"Directional":true}]},{"ID":8334,"SourceStructureID":5279,"TargetStructureID":97305,"Label":"5279-97305 via Ribbon Synapse from 25838 -> 97309","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25838,"TargetID":97309,"Directional":true}]},{"ID":8335,"SourceStructureID":5279,"TargetStructureID":97329,"Label":"5279-97329 via Ribbon Synapse from 97330 -> 97331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97330,"TargetID":97331,"Directional":true}]},{"ID":8336,"SourceStructureID":5279,"TargetStructureID":97358,"Label":"5279-97358 via BC Conventional Synapse from 97359 -> 97360","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97359,"TargetID":97360,"Directional":true}]},{"ID":8337,"SourceStructureID":5279,"TargetStructureID":97374,"Label":"5279-97374 via Ribbon Synapse from 49261 -> 97375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49261,"TargetID":97375,"Directional":true}]},{"ID":8338,"SourceStructureID":5279,"TargetStructureID":97532,"Label":"5279-97532 via Ribbon Synapse from 97527 -> 97533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97527,"TargetID":97533,"Directional":true}]},{"ID":8339,"SourceStructureID":5279,"TargetStructureID":97538,"Label":"5279-97538 via BC Conventional Synapse from 97537 -> 97540","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97537,"TargetID":97540,"Directional":true}]},{"ID":8340,"SourceStructureID":5279,"TargetStructureID":97548,"Label":"5279-97548 via Ribbon Synapse from 97545 -> 97551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97545,"TargetID":97551,"Directional":true}]},{"ID":8341,"SourceStructureID":5279,"TargetStructureID":97552,"Label":"5279-97552 via Ribbon Synapse from 97545 -> 97556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97545,"TargetID":97556,"Directional":true}]},{"ID":8342,"SourceStructureID":5279,"TargetStructureID":97609,"Label":"5279-97609 via Ribbon Synapse from 97608 -> 97612","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97608,"TargetID":97612,"Directional":true}]},{"ID":8343,"SourceStructureID":5279,"TargetStructureID":97610,"Label":"5279-97610 via Ribbon Synapse from 97608 -> 97611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97608,"TargetID":97611,"Directional":true}]},{"ID":8344,"SourceStructureID":5279,"TargetStructureID":97615,"Label":"5279-97615 via Ribbon Synapse from 97613 -> 97618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97613,"TargetID":97618,"Directional":true}]},{"ID":8345,"SourceStructureID":5279,"TargetStructureID":97649,"Label":"5279-97649 via Ribbon Synapse from 25819 -> 98007","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25819,"TargetID":98007,"Directional":true}]},{"ID":8346,"SourceStructureID":5279,"TargetStructureID":98000,"Label":"5279-98000 via Ribbon Synapse from 25818 -> 98004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25818,"TargetID":98004,"Directional":true}]},{"ID":8347,"SourceStructureID":5279,"TargetStructureID":98029,"Label":"5279-98029 via Ribbon Synapse from 25823 -> 98032","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25823,"TargetID":98032,"Directional":true}]},{"ID":8348,"SourceStructureID":5279,"TargetStructureID":98030,"Label":"5279-98030 via Ribbon Synapse from 25823 -> 98031","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25823,"TargetID":98031,"Directional":true}]},{"ID":8349,"SourceStructureID":5279,"TargetStructureID":98037,"Label":"5279-98037 via Ribbon Synapse from 26005 -> 98038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26005,"TargetID":98038,"Directional":true}]},{"ID":8350,"SourceStructureID":5279,"TargetStructureID":98039,"Label":"5279-98039 via Ribbon Synapse from 20133 -> 98044","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20133,"TargetID":98044,"Directional":true}]},{"ID":8351,"SourceStructureID":5279,"TargetStructureID":98041,"Label":"5279-98041 via Ribbon Synapse from 20133 -> 98045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20133,"TargetID":98045,"Directional":true}]},{"ID":8352,"SourceStructureID":5279,"TargetStructureID":98074,"Label":"5279-98074 via Ribbon Synapse from 147287 -> 147288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147287,"TargetID":147288,"Directional":true}]},{"ID":8353,"SourceStructureID":5279,"TargetStructureID":98106,"Label":"5279-98106 via Ribbon Synapse from 11479 -> 98110","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11479,"TargetID":98110,"Directional":true}]},{"ID":8354,"SourceStructureID":5279,"TargetStructureID":98534,"Label":"5279-98534 via Ribbon Synapse from 49209 -> 98536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49209,"TargetID":98536,"Directional":true}]},{"ID":8355,"SourceStructureID":5279,"TargetStructureID":98579,"Label":"5279-98579 via Ribbon Synapse from 25842 -> 98580","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25842,"TargetID":98580,"Directional":true}]},{"ID":8356,"SourceStructureID":5279,"TargetStructureID":98584,"Label":"5279-98584 via Ribbon Synapse from 25845 -> 147956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25845,"TargetID":147956,"Directional":true}]},{"ID":8357,"SourceStructureID":5279,"TargetStructureID":98589,"Label":"5279-98589 via BC Conventional Synapse from 98593 -> 98594","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98593,"TargetID":98594,"Directional":true}]},{"ID":8358,"SourceStructureID":5279,"TargetStructureID":98599,"Label":"5279-98599 via Ribbon Synapse from 25845 -> 98603","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25845,"TargetID":98603,"Directional":true}]},{"ID":8359,"SourceStructureID":5279,"TargetStructureID":98630,"Label":"5279-98630 via Ribbon Synapse from 25989 -> 98631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25989,"TargetID":98631,"Directional":true}]},{"ID":8360,"SourceStructureID":5279,"TargetStructureID":98632,"Label":"5279-98632 via Ribbon Synapse from 25989 -> 98633","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25989,"TargetID":98633,"Directional":true}]},{"ID":8361,"SourceStructureID":5279,"TargetStructureID":98644,"Label":"5279-98644 via Ribbon Synapse from 25990 -> 98645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25990,"TargetID":98645,"Directional":true}]},{"ID":8362,"SourceStructureID":5279,"TargetStructureID":98676,"Label":"5279-98676 via Ribbon Synapse from 25991 -> 98684","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25991,"TargetID":98684,"Directional":true}]},{"ID":8363,"SourceStructureID":5279,"TargetStructureID":98689,"Label":"5279-98689 via Ribbon Synapse from 25992 -> 98692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25992,"TargetID":98692,"Directional":true}]},{"ID":8364,"SourceStructureID":5279,"TargetStructureID":98993,"Label":"5279-98993 via Ribbon Synapse from 26003 -> 98994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26003,"TargetID":98994,"Directional":true}]},{"ID":8365,"SourceStructureID":5279,"TargetStructureID":99044,"Label":"5279-99044 via Ribbon Synapse from 49231 -> 99045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49231,"TargetID":99045,"Directional":true}]},{"ID":8366,"SourceStructureID":5279,"TargetStructureID":99054,"Label":"5279-99054 via Ribbon Synapse from 49221 -> 99055","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49221,"TargetID":99055,"Directional":true}]},{"ID":8367,"SourceStructureID":5279,"TargetStructureID":99056,"Label":"5279-99056 via Ribbon Synapse from 49221 -> 99061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49221,"TargetID":99061,"Directional":true}]},{"ID":8368,"SourceStructureID":5279,"TargetStructureID":99088,"Label":"5279-99088 via BC Conventional Synapse from 99089 -> 99090","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99089,"TargetID":99090,"Directional":true}]},{"ID":8369,"SourceStructureID":5279,"TargetStructureID":99106,"Label":"5279-99106 via Ribbon Synapse from 49224 -> 99107","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49224,"TargetID":99107,"Directional":true}]},{"ID":8370,"SourceStructureID":5279,"TargetStructureID":99118,"Label":"5279-99118 via Ribbon Synapse from 49229 -> 99120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49229,"TargetID":99120,"Directional":true}]},{"ID":8371,"SourceStructureID":5279,"TargetStructureID":99122,"Label":"5279-99122 via Ribbon Synapse from 99121 -> 99123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99121,"TargetID":99123,"Directional":true}]},{"ID":8372,"SourceStructureID":5279,"TargetStructureID":99139,"Label":"5279-99139 via Ribbon Synapse from 99138 -> 99140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99138,"TargetID":99140,"Directional":true}]},{"ID":8373,"SourceStructureID":5279,"TargetStructureID":99142,"Label":"5279-99142 via Ribbon Synapse from 99138 -> 99143","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99138,"TargetID":99143,"Directional":true}]},{"ID":8374,"SourceStructureID":5279,"TargetStructureID":99795,"Label":"5279-99795 via Ribbon Synapse from 92676 -> 99796","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92676,"TargetID":99796,"Directional":true}]},{"ID":8375,"SourceStructureID":5279,"TargetStructureID":99797,"Label":"5279-99797 via Ribbon Synapse from 92676 -> 99798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92676,"TargetID":99798,"Directional":true}]},{"ID":8376,"SourceStructureID":5279,"TargetStructureID":99799,"Label":"5279-99799 via Ribbon Synapse from 92676 -> 99800","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92676,"TargetID":99800,"Directional":true}]},{"ID":8377,"SourceStructureID":5279,"TargetStructureID":99806,"Label":"5279-99806 via Ribbon Synapse from 92675 -> 99807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92675,"TargetID":99807,"Directional":true}]},{"ID":8378,"SourceStructureID":5279,"TargetStructureID":136667,"Label":"5279-136667 via Ribbon Synapse from 92551 -> 147692, 119107 -> 147693","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92551,"TargetID":147692,"Directional":true},{"SourceID":119107,"TargetID":147693,"Directional":true}]},{"ID":8379,"SourceStructureID":5280,"TargetStructureID":517,"Label":"5280-517 via Conventional from 40877 -> 6907","Type":"Conventional","Directional":true,"Links":[{"SourceID":40877,"TargetID":6907,"Directional":true}]},{"ID":8380,"SourceStructureID":5281,"TargetStructureID":166,"Label":"5281-166 via Conventional from 39262 -> 39261, 39266 -> 4402","Type":"Conventional","Directional":true,"Links":[{"SourceID":39262,"TargetID":39261,"Directional":true},{"SourceID":39266,"TargetID":4402,"Directional":true}]},{"ID":8381,"SourceStructureID":5281,"TargetStructureID":483,"Label":"5281-483 via Conventional from 36765 -> 6754, 36766 -> 6753","Type":"Conventional","Directional":true,"Links":[{"SourceID":36765,"TargetID":6754,"Directional":true},{"SourceID":36766,"TargetID":6753,"Directional":true}]},{"ID":8382,"SourceStructureID":5281,"TargetStructureID":516,"Label":"5281-516 via Conventional from 39199 -> 39200, 39260 -> 39259, 116591 -> 39259, 116592 -> 39200","Type":"Conventional","Directional":true,"Links":[{"SourceID":39199,"TargetID":39200,"Directional":true},{"SourceID":39260,"TargetID":39259,"Directional":true},{"SourceID":116591,"TargetID":39259,"Directional":true},{"SourceID":116592,"TargetID":39200,"Directional":true}]},{"ID":8383,"SourceStructureID":5281,"TargetStructureID":518,"Label":"5281-518 via Conventional from 36756 -> 36757, 36758 -> 36759, 36760 -> 36761","Type":"Conventional","Directional":true,"Links":[{"SourceID":36756,"TargetID":36757,"Directional":true},{"SourceID":36758,"TargetID":36759,"Directional":true},{"SourceID":36760,"TargetID":36761,"Directional":true}]},{"ID":8384,"SourceStructureID":5281,"TargetStructureID":606,"Label":"5281-606 via Conventional from 51280 -> 42517","Type":"Conventional","Directional":true,"Links":[{"SourceID":51280,"TargetID":42517,"Directional":true}]},{"ID":8385,"SourceStructureID":5281,"TargetStructureID":5485,"Label":"5281-5485 via Conventional from 36772 -> 36773","Type":"Conventional","Directional":true,"Links":[{"SourceID":36772,"TargetID":36773,"Directional":true}]},{"ID":8386,"SourceStructureID":5281,"TargetStructureID":6117,"Label":"5281-6117 via Conventional from 39282 -> 39283, 85970 -> 85971","Type":"Conventional","Directional":true,"Links":[{"SourceID":39282,"TargetID":39283,"Directional":true},{"SourceID":85970,"TargetID":85971,"Directional":true}]},{"ID":8387,"SourceStructureID":5281,"TargetStructureID":10625,"Label":"5281-10625 via Conventional from 39264 -> 39263","Type":"Conventional","Directional":true,"Links":[{"SourceID":39264,"TargetID":39263,"Directional":true}]},{"ID":8388,"SourceStructureID":5281,"TargetStructureID":10959,"Label":"5281-10959 via Conventional from 39272 -> 39271, 39274 -> 39273","Type":"Conventional","Directional":true,"Links":[{"SourceID":39272,"TargetID":39271,"Directional":true},{"SourceID":39274,"TargetID":39273,"Directional":true}]},{"ID":8389,"SourceStructureID":5281,"TargetStructureID":10960,"Label":"5281-10960 via Conventional from 39275 -> 39276","Type":"Conventional","Directional":true,"Links":[{"SourceID":39275,"TargetID":39276,"Directional":true}]},{"ID":8390,"SourceStructureID":5281,"TargetStructureID":15796,"Label":"5281-15796 via Conventional from 36769 -> 19831","Type":"Conventional","Directional":true,"Links":[{"SourceID":36769,"TargetID":19831,"Directional":true}]},{"ID":8391,"SourceStructureID":5281,"TargetStructureID":15977,"Label":"5281-15977 via Conventional from 36791 -> 33961","Type":"Conventional","Directional":true,"Links":[{"SourceID":36791,"TargetID":33961,"Directional":true}]},{"ID":8392,"SourceStructureID":5281,"TargetStructureID":29277,"Label":"5281-29277 via Conventional from 39269 -> 29286","Type":"Conventional","Directional":true,"Links":[{"SourceID":39269,"TargetID":29286,"Directional":true}]},{"ID":8393,"SourceStructureID":5281,"TargetStructureID":40991,"Label":"5281-40991 via Conventional from 39284 -> 40996","Type":"Conventional","Directional":true,"Links":[{"SourceID":39284,"TargetID":40996,"Directional":true}]},{"ID":8394,"SourceStructureID":5282,"TargetStructureID":909,"Label":"5282-909 via Conventional from 87556 -> 53739","Type":"Conventional","Directional":true,"Links":[{"SourceID":87556,"TargetID":53739,"Directional":true}]},{"ID":8395,"SourceStructureID":5282,"TargetStructureID":7129,"Label":"5282-7129 via Conventional from 87554 -> 87555","Type":"Conventional","Directional":true,"Links":[{"SourceID":87554,"TargetID":87555,"Directional":true}]},{"ID":8396,"SourceStructureID":5283,"TargetStructureID":3679,"Label":"5283-3679 via Ribbon Synapse from 124118 -> 132294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124118,"TargetID":132294,"Directional":true}]},{"ID":8397,"SourceStructureID":5283,"TargetStructureID":5350,"Label":"5283-5350 via Ribbon Synapse from 117748 -> 117749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117748,"TargetID":117749,"Directional":true}]},{"ID":8398,"SourceStructureID":5283,"TargetStructureID":8033,"Label":"5283-8033 via Ribbon Synapse from 80063 -> 18442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80063,"TargetID":18442,"Directional":true}]},{"ID":8399,"SourceStructureID":5283,"TargetStructureID":12208,"Label":"5283-12208 via Ribbon Synapse from 24047 -> 22367, 24048 -> 22367, 24051 -> 22367, 131706 -> 22367, 131707 -> 22367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24047,"TargetID":22367,"Directional":true},{"SourceID":24048,"TargetID":22367,"Directional":true},{"SourceID":24051,"TargetID":22367,"Directional":true},{"SourceID":131706,"TargetID":22367,"Directional":true},{"SourceID":131707,"TargetID":22367,"Directional":true}]},{"ID":8400,"SourceStructureID":5283,"TargetStructureID":20537,"Label":"5283-20537 via Cistern Pre from 24053 -> 24134","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":24053,"TargetID":24134,"Directional":true}]},{"ID":8401,"SourceStructureID":5283,"TargetStructureID":22554,"Label":"5283-22554 via Ribbon Synapse from 60882 -> 60883, 80165 -> 80169, 118742 -> 118743, 123819 -> 132121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60882,"TargetID":60883,"Directional":true},{"SourceID":80165,"TargetID":80169,"Directional":true},{"SourceID":118742,"TargetID":118743,"Directional":true},{"SourceID":123819,"TargetID":132121,"Directional":true}]},{"ID":8402,"SourceStructureID":5283,"TargetStructureID":32913,"Label":"5283-32913 via Ribbon Synapse from 28015 -> 38353, 28016 -> 38353, 28017 -> 38353, 28018 -> 38353, 28019 -> 38353","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28015,"TargetID":38353,"Directional":true},{"SourceID":28016,"TargetID":38353,"Directional":true},{"SourceID":28017,"TargetID":38353,"Directional":true},{"SourceID":28018,"TargetID":38353,"Directional":true},{"SourceID":28019,"TargetID":38353,"Directional":true}]},{"ID":8403,"SourceStructureID":5283,"TargetStructureID":33092,"Label":"5283-33092 via Ribbon Synapse from 22430 -> 132130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22430,"TargetID":132130,"Directional":true}]},{"ID":8404,"SourceStructureID":5283,"TargetStructureID":59422,"Label":"5283-59422 via Cistern Pre from 132094 -> 132095","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":132094,"TargetID":132095,"Directional":true}]},{"ID":8405,"SourceStructureID":5283,"TargetStructureID":61836,"Label":"5283-61836 via Ribbon Synapse from 28097 -> 69772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28097,"TargetID":69772,"Directional":true}]},{"ID":8406,"SourceStructureID":5283,"TargetStructureID":64371,"Label":"5283-64371 via Ribbon Synapse from 28105 -> 124036, 64376 -> 64374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28105,"TargetID":124036,"Directional":true},{"SourceID":64376,"TargetID":64374,"Directional":true}]},{"ID":8407,"SourceStructureID":5283,"TargetStructureID":65538,"Label":"5283-65538 via Ribbon Synapse from 28015 -> 65549, 28016 -> 65549, 28017 -> 65549, 28018 -> 65549, 28019 -> 65549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28015,"TargetID":65549,"Directional":true},{"SourceID":28016,"TargetID":65549,"Directional":true},{"SourceID":28017,"TargetID":65549,"Directional":true},{"SourceID":28018,"TargetID":65549,"Directional":true},{"SourceID":28019,"TargetID":65549,"Directional":true}]},{"ID":8408,"SourceStructureID":5283,"TargetStructureID":66303,"Label":"5283-66303 via Ribbon Synapse from 66311 -> 66312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66311,"TargetID":66312,"Directional":true}]},{"ID":8409,"SourceStructureID":5283,"TargetStructureID":66828,"Label":"5283-66828 via Ribbon Synapse from 80150 -> 82731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80150,"TargetID":82731,"Directional":true}]},{"ID":8410,"SourceStructureID":5283,"TargetStructureID":67361,"Label":"5283-67361 via Ribbon Synapse from 118740 -> 131712, 131680 -> 131681","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118740,"TargetID":131712,"Directional":true},{"SourceID":131680,"TargetID":131681,"Directional":true}]},{"ID":8411,"SourceStructureID":5283,"TargetStructureID":67973,"Label":"5283-67973 via Ribbon Synapse from 22429 -> 67977, 22430 -> 67977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22429,"TargetID":67977,"Directional":true},{"SourceID":22430,"TargetID":67977,"Directional":true}]},{"ID":8412,"SourceStructureID":5283,"TargetStructureID":68087,"Label":"5283-68087 via Ribbon Synapse from 80150 -> 68227","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80150,"TargetID":68227,"Directional":true}]},{"ID":8413,"SourceStructureID":5283,"TargetStructureID":68435,"Label":"5283-68435 via Ribbon Synapse from 79884 -> 68451, 80057 -> 68450, 132107 -> 68451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79884,"TargetID":68451,"Directional":true},{"SourceID":80057,"TargetID":68450,"Directional":true},{"SourceID":132107,"TargetID":68451,"Directional":true}]},{"ID":8414,"SourceStructureID":5283,"TargetStructureID":68453,"Label":"5283-68453 via Ribbon Synapse from 79889 -> 68458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79889,"TargetID":68458,"Directional":true}]},{"ID":8415,"SourceStructureID":5283,"TargetStructureID":68463,"Label":"5283-68463 via BC Conventional Synapse from 16141 -> 80406","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":16141,"TargetID":80406,"Directional":true}]},{"ID":8416,"SourceStructureID":5283,"TargetStructureID":68463,"Label":"5283-68463 via Ribbon Synapse from 79884 -> 132106, 132107 -> 132106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79884,"TargetID":132106,"Directional":true},{"SourceID":132107,"TargetID":132106,"Directional":true}]},{"ID":8417,"SourceStructureID":5283,"TargetStructureID":69773,"Label":"5283-69773 via Ribbon Synapse from 28097 -> 69774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28097,"TargetID":69774,"Directional":true}]},{"ID":8418,"SourceStructureID":5283,"TargetStructureID":71195,"Label":"5283-71195 via Ribbon Synapse from 124159 -> 132302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124159,"TargetID":132302,"Directional":true}]},{"ID":8419,"SourceStructureID":5283,"TargetStructureID":80074,"Label":"5283-80074 via BC Conventional Synapse from 80073 -> 80077","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80073,"TargetID":80077,"Directional":true}]},{"ID":8420,"SourceStructureID":5283,"TargetStructureID":80083,"Label":"5283-80083 via Ribbon Synapse from 80082 -> 80084","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80082,"TargetID":80084,"Directional":true}]},{"ID":8421,"SourceStructureID":5283,"TargetStructureID":80086,"Label":"5283-80086 via Ribbon Synapse from 80085 -> 80087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80085,"TargetID":80087,"Directional":true}]},{"ID":8422,"SourceStructureID":5283,"TargetStructureID":80123,"Label":"5283-80123 via Ribbon Synapse from 131699 -> 131698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131699,"TargetID":131698,"Directional":true}]},{"ID":8423,"SourceStructureID":5283,"TargetStructureID":80131,"Label":"5283-80131 via Ribbon Synapse from 80129 -> 132151, 132211 -> 132151, 132212 -> 132151","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80129,"TargetID":132151,"Directional":true},{"SourceID":132211,"TargetID":132151,"Directional":true},{"SourceID":132212,"TargetID":132151,"Directional":true}]},{"ID":8424,"SourceStructureID":5283,"TargetStructureID":80139,"Label":"5283-80139 via Ribbon Synapse from 132211 -> 132210, 132212 -> 132210","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132211,"TargetID":132210,"Directional":true},{"SourceID":132212,"TargetID":132210,"Directional":true}]},{"ID":8425,"SourceStructureID":5283,"TargetStructureID":80163,"Label":"5283-80163 via Ribbon Synapse from 123897 -> 80164, 123898 -> 131652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123897,"TargetID":80164,"Directional":true},{"SourceID":123898,"TargetID":131652,"Directional":true}]},{"ID":8426,"SourceStructureID":5283,"TargetStructureID":82307,"Label":"5283-82307 via Ribbon Synapse from 80103 -> 132149","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80103,"TargetID":132149,"Directional":true}]},{"ID":8427,"SourceStructureID":5283,"TargetStructureID":122829,"Label":"5283-122829 via Ribbon Synapse from 28100 -> 122879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28100,"TargetID":122879,"Directional":true}]},{"ID":8428,"SourceStructureID":5283,"TargetStructureID":131635,"Label":"5283-131635 via Ribbon Synapse from 22438 -> 131636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22438,"TargetID":131636,"Directional":true}]},{"ID":8429,"SourceStructureID":5283,"TargetStructureID":131638,"Label":"5283-131638 via Ribbon Synapse from 22436 -> 131640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22436,"TargetID":131640,"Directional":true}]},{"ID":8430,"SourceStructureID":5283,"TargetStructureID":131708,"Label":"5283-131708 via Ribbon Synapse from 118740 -> 131711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118740,"TargetID":131711,"Directional":true}]},{"ID":8431,"SourceStructureID":5283,"TargetStructureID":132038,"Label":"5283-132038 via Ribbon Synapse from 123377 -> 132039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123377,"TargetID":132039,"Directional":true}]},{"ID":8432,"SourceStructureID":5283,"TargetStructureID":132123,"Label":"5283-132123 via Ribbon Synapse from 124029 -> 132124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124029,"TargetID":132124,"Directional":true}]},{"ID":8433,"SourceStructureID":5283,"TargetStructureID":132135,"Label":"5283-132135 via Ribbon Synapse from 28062 -> 132136, 28063 -> 132136, 28064 -> 132136","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28062,"TargetID":132136,"Directional":true},{"SourceID":28063,"TargetID":132136,"Directional":true},{"SourceID":28064,"TargetID":132136,"Directional":true}]},{"ID":8434,"SourceStructureID":5283,"TargetStructureID":132162,"Label":"5283-132162 via Ribbon Synapse from 22459 -> 132166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22459,"TargetID":132166,"Directional":true}]},{"ID":8435,"SourceStructureID":5283,"TargetStructureID":132255,"Label":"5283-132255 via Ribbon Synapse from 132262 -> 132256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132262,"TargetID":132256,"Directional":true}]},{"ID":8436,"SourceStructureID":5283,"TargetStructureID":132257,"Label":"5283-132257 via Ribbon Synapse from 124012 -> 132258","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124012,"TargetID":132258,"Directional":true}]},{"ID":8437,"SourceStructureID":5283,"TargetStructureID":132259,"Label":"5283-132259 via Ribbon Synapse from 124012 -> 132260","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124012,"TargetID":132260,"Directional":true}]},{"ID":8438,"SourceStructureID":5284,"TargetStructureID":5107,"Label":"5284-5107 via Ribbon Synapse from 43706 -> 43691, 53427 -> 53428, 113584 -> 113585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43706,"TargetID":43691,"Directional":true},{"SourceID":53427,"TargetID":53428,"Directional":true},{"SourceID":113584,"TargetID":113585,"Directional":true}]},{"ID":8439,"SourceStructureID":5284,"TargetStructureID":5292,"Label":"5284-5292 via Adherens from 124681 -> 124683","Type":"Adherens","Directional":true,"Links":[{"SourceID":124681,"TargetID":124683,"Directional":true}]},{"ID":8440,"SourceStructureID":5284,"TargetStructureID":5442,"Label":"5284-5442 via Ribbon Synapse from 54341 -> 56698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54341,"TargetID":56698,"Directional":true}]},{"ID":8441,"SourceStructureID":5284,"TargetStructureID":7073,"Label":"5284-7073 via Ribbon Synapse from 112565 -> 112564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112565,"TargetID":112564,"Directional":true}]},{"ID":8442,"SourceStructureID":5284,"TargetStructureID":8033,"Label":"5284-8033 via Ribbon Synapse from 18441 -> 18438, 54375 -> 113203, 60845 -> 113357, 81526 -> 113648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18441,"TargetID":18438,"Directional":true},{"SourceID":54375,"TargetID":113203,"Directional":true},{"SourceID":60845,"TargetID":113357,"Directional":true},{"SourceID":81526,"TargetID":113648,"Directional":true}]},{"ID":8443,"SourceStructureID":5284,"TargetStructureID":8720,"Label":"5284-8720 via Ribbon Synapse from 54377 -> 127823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54377,"TargetID":127823,"Directional":true}]},{"ID":8444,"SourceStructureID":5284,"TargetStructureID":9769,"Label":"5284-9769 via Ribbon Synapse from 23465 -> 23466, 23926 -> 23924, 53406 -> 53405","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23465,"TargetID":23466,"Directional":true},{"SourceID":23926,"TargetID":23924,"Directional":true},{"SourceID":53406,"TargetID":53405,"Directional":true}]},{"ID":8445,"SourceStructureID":5284,"TargetStructureID":16073,"Label":"5284-16073 via Ribbon Synapse from 23463 -> 23462","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23463,"TargetID":23462,"Directional":true}]},{"ID":8446,"SourceStructureID":5284,"TargetStructureID":35367,"Label":"5284-35367 via Ribbon Synapse from 35379 -> 35378","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35379,"TargetID":35378,"Directional":true}]},{"ID":8447,"SourceStructureID":5284,"TargetStructureID":38379,"Label":"5284-38379 via BC Conventional Synapse from 113193 -> 124735","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":113193,"TargetID":124735,"Directional":true}]},{"ID":8448,"SourceStructureID":5284,"TargetStructureID":53202,"Label":"5284-53202 via Ribbon Synapse from 112799 -> 112801","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112799,"TargetID":112801,"Directional":true}]},{"ID":8449,"SourceStructureID":5284,"TargetStructureID":55132,"Label":"5284-55132 via Ribbon Synapse from 113066 -> 55133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113066,"TargetID":55133,"Directional":true}]},{"ID":8450,"SourceStructureID":5284,"TargetStructureID":55517,"Label":"5284-55517 via Ribbon Synapse from 49850 -> 55608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49850,"TargetID":55608,"Directional":true}]},{"ID":8451,"SourceStructureID":5284,"TargetStructureID":66165,"Label":"5284-66165 via Ribbon Synapse from 92852 -> 113272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92852,"TargetID":113272,"Directional":true}]},{"ID":8452,"SourceStructureID":5284,"TargetStructureID":67045,"Label":"5284-67045 via Ribbon Synapse from 53427 -> 81547","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53427,"TargetID":81547,"Directional":true}]},{"ID":8453,"SourceStructureID":5284,"TargetStructureID":67818,"Label":"5284-67818 via Ribbon Synapse from 67904 -> 67905","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67904,"TargetID":67905,"Directional":true}]},{"ID":8454,"SourceStructureID":5284,"TargetStructureID":67868,"Label":"5284-67868 via Ribbon Synapse from 67877 -> 67876","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67877,"TargetID":67876,"Directional":true}]},{"ID":8455,"SourceStructureID":5284,"TargetStructureID":68093,"Label":"5284-68093 via Ribbon Synapse from 68128 -> 68127, 68132 -> 68133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68128,"TargetID":68127,"Directional":true},{"SourceID":68132,"TargetID":68133,"Directional":true}]},{"ID":8456,"SourceStructureID":5284,"TargetStructureID":68135,"Label":"5284-68135 via Ribbon Synapse from 113594 -> 147971, 147970 -> 147969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113594,"TargetID":147971,"Directional":true},{"SourceID":147970,"TargetID":147969,"Directional":true}]},{"ID":8457,"SourceStructureID":5284,"TargetStructureID":68153,"Label":"5284-68153 via Ribbon Synapse from 68170 -> 68171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68170,"TargetID":68171,"Directional":true}]},{"ID":8458,"SourceStructureID":5284,"TargetStructureID":68198,"Label":"5284-68198 via Ribbon Synapse from 112873 -> 135757","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112873,"TargetID":135757,"Directional":true}]},{"ID":8459,"SourceStructureID":5284,"TargetStructureID":69162,"Label":"5284-69162 via Ribbon Synapse from 64608 -> 69176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64608,"TargetID":69176,"Directional":true}]},{"ID":8460,"SourceStructureID":5284,"TargetStructureID":70379,"Label":"5284-70379 via Ribbon Synapse from 70378 -> 70380, 113390 -> 113399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70378,"TargetID":70380,"Directional":true},{"SourceID":113390,"TargetID":113399,"Directional":true}]},{"ID":8461,"SourceStructureID":5284,"TargetStructureID":73521,"Label":"5284-73521 via Ribbon Synapse from 98155 -> 127693","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98155,"TargetID":127693,"Directional":true}]},{"ID":8462,"SourceStructureID":5284,"TargetStructureID":75713,"Label":"5284-75713 via Ribbon Synapse from 113381 -> 113382","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113381,"TargetID":113382,"Directional":true}]},{"ID":8463,"SourceStructureID":5284,"TargetStructureID":76811,"Label":"5284-76811 via Ribbon Synapse from 112926 -> 130279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112926,"TargetID":130279,"Directional":true}]},{"ID":8464,"SourceStructureID":5284,"TargetStructureID":81691,"Label":"5284-81691 via Ribbon Synapse from 56719 -> 113374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56719,"TargetID":113374,"Directional":true}]},{"ID":8465,"SourceStructureID":5284,"TargetStructureID":92092,"Label":"5284-92092 via Ribbon Synapse from 112818 -> 112831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112818,"TargetID":112831,"Directional":true}]},{"ID":8466,"SourceStructureID":5284,"TargetStructureID":92865,"Label":"5284-92865 via Ribbon Synapse from 113540 -> 127688","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113540,"TargetID":127688,"Directional":true}]},{"ID":8467,"SourceStructureID":5284,"TargetStructureID":92872,"Label":"5284-92872 via Ribbon Synapse from 127697 -> 127698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127697,"TargetID":127698,"Directional":true}]},{"ID":8468,"SourceStructureID":5284,"TargetStructureID":104662,"Label":"5284-104662 via BC Conventional Synapse from 112592 -> 112591","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112592,"TargetID":112591,"Directional":true}]},{"ID":8469,"SourceStructureID":5284,"TargetStructureID":112819,"Label":"5284-112819 via Ribbon Synapse from 112818 -> 112820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112818,"TargetID":112820,"Directional":true}]},{"ID":8470,"SourceStructureID":5284,"TargetStructureID":112859,"Label":"5284-112859 via Ribbon Synapse from 67877 -> 112864, 112872 -> 127909","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67877,"TargetID":112864,"Directional":true},{"SourceID":112872,"TargetID":127909,"Directional":true}]},{"ID":8471,"SourceStructureID":5284,"TargetStructureID":113086,"Label":"5284-113086 via Ribbon Synapse from 64590 -> 113109, 64605 -> 113116","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64590,"TargetID":113109,"Directional":true},{"SourceID":64605,"TargetID":113116,"Directional":true}]},{"ID":8472,"SourceStructureID":5284,"TargetStructureID":113342,"Label":"5284-113342 via Ribbon Synapse from 35379 -> 113349, 54355 -> 113344","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35379,"TargetID":113349,"Directional":true},{"SourceID":54355,"TargetID":113344,"Directional":true}]},{"ID":8473,"SourceStructureID":5284,"TargetStructureID":117803,"Label":"5284-117803 via Ribbon Synapse from 53406 -> 127740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53406,"TargetID":127740,"Directional":true}]},{"ID":8474,"SourceStructureID":5284,"TargetStructureID":117892,"Label":"5284-117892 via Ribbon Synapse from 127883 -> 130259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127883,"TargetID":130259,"Directional":true}]},{"ID":8475,"SourceStructureID":5284,"TargetStructureID":118405,"Label":"5284-118405 via BC Conventional Synapse from 113600 -> 130302","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":113600,"TargetID":130302,"Directional":true}]},{"ID":8476,"SourceStructureID":5284,"TargetStructureID":120987,"Label":"5284-120987 via Cistern Pre from 113440 -> 120989","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":113440,"TargetID":120989,"Directional":true}]},{"ID":8477,"SourceStructureID":5284,"TargetStructureID":121044,"Label":"5284-121044 via Ribbon Synapse from 98157 -> 124617","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98157,"TargetID":124617,"Directional":true}]},{"ID":8478,"SourceStructureID":5284,"TargetStructureID":127897,"Label":"5284-127897 via Ribbon Synapse from 112795 -> 127898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112795,"TargetID":127898,"Directional":true}]},{"ID":8479,"SourceStructureID":5284,"TargetStructureID":134553,"Label":"5284-134553 via Ribbon Synapse from 127737 -> 127738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127737,"TargetID":127738,"Directional":true}]},{"ID":8480,"SourceStructureID":5285,"TargetStructureID":5150,"Label":"5285-5150 via Conventional from 5286 -> 5168, 5298 -> 5161","Type":"Conventional","Directional":true,"Links":[{"SourceID":5286,"TargetID":5168,"Directional":true},{"SourceID":5298,"TargetID":5161,"Directional":true}]},{"ID":8481,"SourceStructureID":5285,"TargetStructureID":46741,"Label":"5285-46741 via Conventional from 5291 -> 90189","Type":"Conventional","Directional":true,"Links":[{"SourceID":5291,"TargetID":90189,"Directional":true}]},{"ID":8482,"SourceStructureID":5292,"TargetStructureID":598,"Label":"5292-598 via Ribbon Synapse from 45606 -> 6322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45606,"TargetID":6322,"Directional":true}]},{"ID":8483,"SourceStructureID":5292,"TargetStructureID":606,"Label":"5292-606 via Ribbon Synapse from 51341 -> 51351, 51352 -> 51353, 51366 -> 51367, 59487 -> 59488","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51341,"TargetID":51351,"Directional":true},{"SourceID":51352,"TargetID":51353,"Directional":true},{"SourceID":51366,"TargetID":51367,"Directional":true},{"SourceID":59487,"TargetID":59488,"Directional":true}]},{"ID":8484,"SourceStructureID":5292,"TargetStructureID":5377,"Label":"5292-5377 via Ribbon Synapse from 87050 -> 87051","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87050,"TargetID":87051,"Directional":true}]},{"ID":8485,"SourceStructureID":5292,"TargetStructureID":5618,"Label":"5292-5618 via Ribbon Synapse from 49787 -> 65993","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49787,"TargetID":65993,"Directional":true}]},{"ID":8486,"SourceStructureID":5292,"TargetStructureID":9769,"Label":"5292-9769 via Ribbon Synapse from 23935 -> 23934, 53649 -> 54444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23935,"TargetID":23934,"Directional":true},{"SourceID":53649,"TargetID":54444,"Directional":true}]},{"ID":8487,"SourceStructureID":5292,"TargetStructureID":15796,"Label":"5292-15796 via Ribbon Synapse from 36006 -> 36004, 51556 -> 15841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36006,"TargetID":36004,"Directional":true},{"SourceID":51556,"TargetID":15841,"Directional":true}]},{"ID":8488,"SourceStructureID":5292,"TargetStructureID":35975,"Label":"5292-35975 via Ribbon Synapse from 36006 -> 36003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36006,"TargetID":36003,"Directional":true}]},{"ID":8489,"SourceStructureID":5292,"TargetStructureID":54078,"Label":"5292-54078 via Ribbon Synapse from 51578 -> 54082","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51578,"TargetID":54082,"Directional":true}]},{"ID":8490,"SourceStructureID":5292,"TargetStructureID":54261,"Label":"5292-54261 via Ribbon Synapse from 54258 -> 54262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54258,"TargetID":54262,"Directional":true}]},{"ID":8491,"SourceStructureID":5292,"TargetStructureID":55098,"Label":"5292-55098 via Ribbon Synapse from 55100 -> 55106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55100,"TargetID":55106,"Directional":true}]},{"ID":8492,"SourceStructureID":5292,"TargetStructureID":55517,"Label":"5292-55517 via Ribbon Synapse from 49833 -> 55605","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49833,"TargetID":55605,"Directional":true}]},{"ID":8493,"SourceStructureID":5292,"TargetStructureID":59482,"Label":"5292-59482 via Ribbon Synapse from 51366 -> 59484, 51542 -> 59483, 59487 -> 59486","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51366,"TargetID":59484,"Directional":true},{"SourceID":51542,"TargetID":59483,"Directional":true},{"SourceID":59487,"TargetID":59486,"Directional":true}]},{"ID":8494,"SourceStructureID":5292,"TargetStructureID":67868,"Label":"5292-67868 via Ribbon Synapse from 49839 -> 67878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49839,"TargetID":67878,"Directional":true}]},{"ID":8495,"SourceStructureID":5292,"TargetStructureID":68539,"Label":"5292-68539 via Ribbon Synapse from 51547 -> 84389, 70299 -> 70300, 70301 -> 70411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51547,"TargetID":84389,"Directional":true},{"SourceID":70299,"TargetID":70300,"Directional":true},{"SourceID":70301,"TargetID":70411,"Directional":true}]},{"ID":8496,"SourceStructureID":5292,"TargetStructureID":70331,"Label":"5292-70331 via Ribbon Synapse from 51579 -> 70333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51579,"TargetID":70333,"Directional":true}]},{"ID":8497,"SourceStructureID":5292,"TargetStructureID":70334,"Label":"5292-70334 via Ribbon Synapse from 51579 -> 70336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51579,"TargetID":70336,"Directional":true}]},{"ID":8498,"SourceStructureID":5292,"TargetStructureID":70454,"Label":"5292-70454 via Ribbon Synapse from 51547 -> 89565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51547,"TargetID":89565,"Directional":true}]},{"ID":8499,"SourceStructureID":5292,"TargetStructureID":87052,"Label":"5292-87052 via Ribbon Synapse from 87050 -> 87053","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87050,"TargetID":87053,"Directional":true}]},{"ID":8500,"SourceStructureID":5294,"TargetStructureID":579,"Label":"5294-579 via Conventional from 32322 -> 32320","Type":"Conventional","Directional":true,"Links":[{"SourceID":32322,"TargetID":32320,"Directional":true}]},{"ID":8501,"SourceStructureID":5294,"TargetStructureID":5562,"Label":"5294-5562 via Conventional from 32338 -> 32339","Type":"Conventional","Directional":true,"Links":[{"SourceID":32338,"TargetID":32339,"Directional":true}]},{"ID":8502,"SourceStructureID":5294,"TargetStructureID":5645,"Label":"5294-5645 via Conventional from 39474 -> 39490, 39493 -> 39494, 93040 -> 93041","Type":"Conventional","Directional":true,"Links":[{"SourceID":39474,"TargetID":39490,"Directional":true},{"SourceID":39493,"TargetID":39494,"Directional":true},{"SourceID":93040,"TargetID":93041,"Directional":true}]},{"ID":8503,"SourceStructureID":5294,"TargetStructureID":5650,"Label":"5294-5650 via Conventional from 39468 -> 39469","Type":"Conventional","Directional":true,"Links":[{"SourceID":39468,"TargetID":39469,"Directional":true}]},{"ID":8504,"SourceStructureID":5294,"TargetStructureID":7897,"Label":"5294-7897 via Conventional from 93047 -> 93048","Type":"Conventional","Directional":true,"Links":[{"SourceID":93047,"TargetID":93048,"Directional":true}]},{"ID":8505,"SourceStructureID":5294,"TargetStructureID":15796,"Label":"5294-15796 via Conventional from 93050 -> 93051","Type":"Conventional","Directional":true,"Links":[{"SourceID":93050,"TargetID":93051,"Directional":true}]},{"ID":8506,"SourceStructureID":5294,"TargetStructureID":92970,"Label":"5294-92970 via Conventional from 92969 -> 93034","Type":"Conventional","Directional":true,"Links":[{"SourceID":92969,"TargetID":93034,"Directional":true}]},{"ID":8507,"SourceStructureID":5294,"TargetStructureID":93053,"Label":"5294-93053 via Conventional from 39475 -> 93054","Type":"Conventional","Directional":true,"Links":[{"SourceID":39475,"TargetID":93054,"Directional":true}]},{"ID":8508,"SourceStructureID":5294,"TargetStructureID":93115,"Label":"5294-93115 via Conventional from 32328 -> 93116","Type":"Conventional","Directional":true,"Links":[{"SourceID":32328,"TargetID":93116,"Directional":true}]},{"ID":8509,"SourceStructureID":5295,"TargetStructureID":85629,"Label":"5295-85629 via Ribbon Synapse from 36401 -> 85829, 36403 -> 85827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36401,"TargetID":85829,"Directional":true},{"SourceID":36403,"TargetID":85827,"Directional":true}]},{"ID":8510,"SourceStructureID":5295,"TargetStructureID":85856,"Label":"5295-85856 via Ribbon Synapse from 85864 -> 85863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85864,"TargetID":85863,"Directional":true}]},{"ID":8511,"SourceStructureID":5297,"TargetStructureID":5405,"Label":"5297-5405 via Ribbon Synapse from 23430 -> 23429, 32225 -> 11183, 98469 -> 11187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23430,"TargetID":23429,"Directional":true},{"SourceID":32225,"TargetID":11183,"Directional":true},{"SourceID":98469,"TargetID":11187,"Directional":true}]},{"ID":8512,"SourceStructureID":5297,"TargetStructureID":5618,"Label":"5297-5618 via Ribbon Synapse from 56810 -> 66006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56810,"TargetID":66006,"Directional":true}]},{"ID":8513,"SourceStructureID":5297,"TargetStructureID":7134,"Label":"5297-7134 via Ribbon Synapse from 61483 -> 122178, 93271 -> 122221, 93276 -> 122224, 116488 -> 147934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61483,"TargetID":122178,"Directional":true},{"SourceID":93271,"TargetID":122221,"Directional":true},{"SourceID":93276,"TargetID":122224,"Directional":true},{"SourceID":116488,"TargetID":147934,"Directional":true}]},{"ID":8514,"SourceStructureID":5297,"TargetStructureID":8575,"Label":"5297-8575 via BC Conventional Synapse from 93339 -> 93340","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93339,"TargetID":93340,"Directional":true}]},{"ID":8515,"SourceStructureID":5297,"TargetStructureID":8575,"Label":"5297-8575 via Ribbon Synapse from 53671 -> 62270, 93388 -> 93391, 98134 -> 62823, 98257 -> 62817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53671,"TargetID":62270,"Directional":true},{"SourceID":93388,"TargetID":93391,"Directional":true},{"SourceID":98134,"TargetID":62823,"Directional":true},{"SourceID":98257,"TargetID":62817,"Directional":true}]},{"ID":8516,"SourceStructureID":5297,"TargetStructureID":9347,"Label":"5297-9347 via Ribbon Synapse from 53640 -> 93341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53640,"TargetID":93341,"Directional":true}]},{"ID":8517,"SourceStructureID":5297,"TargetStructureID":9769,"Label":"5297-9769 via Ribbon Synapse from 39422 -> 39423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39422,"TargetID":39423,"Directional":true}]},{"ID":8518,"SourceStructureID":5297,"TargetStructureID":13492,"Label":"5297-13492 via Ribbon Synapse from 37615 -> 37616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37615,"TargetID":37616,"Directional":true}]},{"ID":8519,"SourceStructureID":5297,"TargetStructureID":22974,"Label":"5297-22974 via BC Conventional Synapse from 116436 -> 134279","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":116436,"TargetID":134279,"Directional":true}]},{"ID":8520,"SourceStructureID":5297,"TargetStructureID":22974,"Label":"5297-22974 via Ribbon Synapse from 39431 -> 39432","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39431,"TargetID":39432,"Directional":true}]},{"ID":8521,"SourceStructureID":5297,"TargetStructureID":38379,"Label":"5297-38379 via Ribbon Synapse from 38384 -> 38383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38384,"TargetID":38383,"Directional":true}]},{"ID":8522,"SourceStructureID":5297,"TargetStructureID":54078,"Label":"5297-54078 via Ribbon Synapse from 54081 -> 54080, 116343 -> 134512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54081,"TargetID":54080,"Directional":true},{"SourceID":116343,"TargetID":134512,"Directional":true}]},{"ID":8523,"SourceStructureID":5297,"TargetStructureID":61450,"Label":"5297-61450 via BC Conventional Synapse from 116466 -> 61459","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":116466,"TargetID":61459,"Directional":true}]},{"ID":8524,"SourceStructureID":5297,"TargetStructureID":61450,"Label":"5297-61450 via Ribbon Synapse from 131395 -> 131396","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131395,"TargetID":131396,"Directional":true}]},{"ID":8525,"SourceStructureID":5297,"TargetStructureID":61823,"Label":"5297-61823 via Ribbon Synapse from 64620 -> 64621, 68580 -> 68639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64620,"TargetID":64621,"Directional":true},{"SourceID":68580,"TargetID":68639,"Directional":true}]},{"ID":8526,"SourceStructureID":5297,"TargetStructureID":62842,"Label":"5297-62842 via BC Conventional Synapse from 62845 -> 62844","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62845,"TargetID":62844,"Directional":true}]},{"ID":8527,"SourceStructureID":5297,"TargetStructureID":66111,"Label":"5297-66111 via Ribbon Synapse from 61349 -> 68592, 68593 -> 68592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61349,"TargetID":68592,"Directional":true},{"SourceID":68593,"TargetID":68592,"Directional":true}]},{"ID":8528,"SourceStructureID":5297,"TargetStructureID":66523,"Label":"5297-66523 via Ribbon Synapse from 75345 -> 75346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75345,"TargetID":75346,"Directional":true}]},{"ID":8529,"SourceStructureID":5297,"TargetStructureID":68539,"Label":"5297-68539 via Ribbon Synapse from 68575 -> 68574, 68580 -> 68581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68575,"TargetID":68574,"Directional":true},{"SourceID":68580,"TargetID":68581,"Directional":true}]},{"ID":8530,"SourceStructureID":5297,"TargetStructureID":75347,"Label":"5297-75347 via Ribbon Synapse from 75345 -> 75348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75345,"TargetID":75348,"Directional":true}]},{"ID":8531,"SourceStructureID":5297,"TargetStructureID":93318,"Label":"5297-93318 via Ribbon Synapse from 93317 -> 93319","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93317,"TargetID":93319,"Directional":true}]},{"ID":8532,"SourceStructureID":5297,"TargetStructureID":93325,"Label":"5297-93325 via Ribbon Synapse from 93331 -> 98463","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93331,"TargetID":98463,"Directional":true}]},{"ID":8533,"SourceStructureID":5297,"TargetStructureID":93327,"Label":"5297-93327 via Ribbon Synapse from 53661 -> 93328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53661,"TargetID":93328,"Directional":true}]},{"ID":8534,"SourceStructureID":5297,"TargetStructureID":93336,"Label":"5297-93336 via Ribbon Synapse from 53696 -> 93337","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53696,"TargetID":93337,"Directional":true}]},{"ID":8535,"SourceStructureID":5297,"TargetStructureID":93342,"Label":"5297-93342 via Ribbon Synapse from 53640 -> 93343","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53640,"TargetID":93343,"Directional":true}]},{"ID":8536,"SourceStructureID":5297,"TargetStructureID":93371,"Label":"5297-93371 via Ribbon Synapse from 93378 -> 93376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93378,"TargetID":93376,"Directional":true}]},{"ID":8537,"SourceStructureID":5297,"TargetStructureID":93373,"Label":"5297-93373 via Ribbon Synapse from 93378 -> 93375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93378,"TargetID":93375,"Directional":true}]},{"ID":8538,"SourceStructureID":5297,"TargetStructureID":93384,"Label":"5297-93384 via Ribbon Synapse from 53657 -> 93385","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53657,"TargetID":93385,"Directional":true}]},{"ID":8539,"SourceStructureID":5297,"TargetStructureID":98456,"Label":"5297-98456 via Ribbon Synapse from 93378 -> 98458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93378,"TargetID":98458,"Directional":true}]},{"ID":8540,"SourceStructureID":5297,"TargetStructureID":121070,"Label":"5297-121070 via BC Conventional Synapse from 98266 -> 134293","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98266,"TargetID":134293,"Directional":true}]},{"ID":8541,"SourceStructureID":5297,"TargetStructureID":121288,"Label":"5297-121288 via BC Conventional Synapse from 116355 -> 121290","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":116355,"TargetID":121290,"Directional":true}]},{"ID":8542,"SourceStructureID":5297,"TargetStructureID":121294,"Label":"5297-121294 via Ribbon Synapse from 116354 -> 121296","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116354,"TargetID":121296,"Directional":true}]},{"ID":8543,"SourceStructureID":5297,"TargetStructureID":121315,"Label":"5297-121315 via Ribbon Synapse from 113609 -> 121320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113609,"TargetID":121320,"Directional":true}]},{"ID":8544,"SourceStructureID":5303,"TargetStructureID":471,"Label":"5303-471 via Conventional from 32784 -> 32785","Type":"Conventional","Directional":true,"Links":[{"SourceID":32784,"TargetID":32785,"Directional":true}]},{"ID":8545,"SourceStructureID":5303,"TargetStructureID":476,"Label":"5303-476 via Conventional from 102991 -> 3212","Type":"Conventional","Directional":true,"Links":[{"SourceID":102991,"TargetID":3212,"Directional":true}]},{"ID":8546,"SourceStructureID":5303,"TargetStructureID":517,"Label":"5303-517 via Conventional from 35624 -> 14948","Type":"Conventional","Directional":true,"Links":[{"SourceID":35624,"TargetID":14948,"Directional":true}]},{"ID":8547,"SourceStructureID":5303,"TargetStructureID":519,"Label":"5303-519 via Conventional from 8743 -> 3598","Type":"Conventional","Directional":true,"Links":[{"SourceID":8743,"TargetID":3598,"Directional":true}]},{"ID":8548,"SourceStructureID":5303,"TargetStructureID":5017,"Label":"5303-5017 via Conventional from 102634 -> 5037","Type":"Conventional","Directional":true,"Links":[{"SourceID":102634,"TargetID":5037,"Directional":true}]},{"ID":8549,"SourceStructureID":5303,"TargetStructureID":5563,"Label":"5303-5563 via Conventional from 6180 -> 35650","Type":"Conventional","Directional":true,"Links":[{"SourceID":6180,"TargetID":35650,"Directional":true}]},{"ID":8550,"SourceStructureID":5303,"TargetStructureID":5592,"Label":"5303-5592 via Conventional from 35734 -> 36841","Type":"Conventional","Directional":true,"Links":[{"SourceID":35734,"TargetID":36841,"Directional":true}]},{"ID":8551,"SourceStructureID":5303,"TargetStructureID":6135,"Label":"5303-6135 via Conventional from 35638 -> 35639","Type":"Conventional","Directional":true,"Links":[{"SourceID":35638,"TargetID":35639,"Directional":true}]},{"ID":8552,"SourceStructureID":5303,"TargetStructureID":7054,"Label":"5303-7054 via Conventional from 30550 -> 30552","Type":"Conventional","Directional":true,"Links":[{"SourceID":30550,"TargetID":30552,"Directional":true}]},{"ID":8553,"SourceStructureID":5303,"TargetStructureID":10625,"Label":"5303-10625 via Conventional from 30523 -> 20760","Type":"Conventional","Directional":true,"Links":[{"SourceID":30523,"TargetID":20760,"Directional":true}]},{"ID":8554,"SourceStructureID":5303,"TargetStructureID":10826,"Label":"5303-10826 via Conventional from 6182 -> 11269","Type":"Conventional","Directional":true,"Links":[{"SourceID":6182,"TargetID":11269,"Directional":true}]},{"ID":8555,"SourceStructureID":5303,"TargetStructureID":10872,"Label":"5303-10872 via Conventional from 30565 -> 15748, 100700 -> 15750","Type":"Conventional","Directional":true,"Links":[{"SourceID":30565,"TargetID":15748,"Directional":true},{"SourceID":100700,"TargetID":15750,"Directional":true}]},{"ID":8556,"SourceStructureID":5303,"TargetStructureID":10897,"Label":"5303-10897 via Conventional from 35632 -> 35633, 35634 -> 35635, 102666 -> 102667","Type":"Conventional","Directional":true,"Links":[{"SourceID":35632,"TargetID":35633,"Directional":true},{"SourceID":35634,"TargetID":35635,"Directional":true},{"SourceID":102666,"TargetID":102667,"Directional":true}]},{"ID":8557,"SourceStructureID":5303,"TargetStructureID":10943,"Label":"5303-10943 via Conventional from 35627 -> 35628","Type":"Conventional","Directional":true,"Links":[{"SourceID":35627,"TargetID":35628,"Directional":true}]},{"ID":8558,"SourceStructureID":5303,"TargetStructureID":10953,"Label":"5303-10953 via Conventional from 24054 -> 33266","Type":"Conventional","Directional":true,"Links":[{"SourceID":24054,"TargetID":33266,"Directional":true}]},{"ID":8559,"SourceStructureID":5303,"TargetStructureID":10956,"Label":"5303-10956 via Conventional from 24061 -> 35652","Type":"Conventional","Directional":true,"Links":[{"SourceID":24061,"TargetID":35652,"Directional":true}]},{"ID":8560,"SourceStructureID":5303,"TargetStructureID":10961,"Label":"5303-10961 via Conventional from 24057 -> 33250","Type":"Conventional","Directional":true,"Links":[{"SourceID":24057,"TargetID":33250,"Directional":true}]},{"ID":8561,"SourceStructureID":5303,"TargetStructureID":11049,"Label":"5303-11049 via Conventional from 35594 -> 35595, 35602 -> 35603","Type":"Conventional","Directional":true,"Links":[{"SourceID":35594,"TargetID":35595,"Directional":true},{"SourceID":35602,"TargetID":35603,"Directional":true}]},{"ID":8562,"SourceStructureID":5303,"TargetStructureID":11085,"Label":"5303-11085 via Conventional from 24013 -> 24026","Type":"Conventional","Directional":true,"Links":[{"SourceID":24013,"TargetID":24026,"Directional":true}]},{"ID":8563,"SourceStructureID":5303,"TargetStructureID":11172,"Label":"5303-11172 via Conventional from 30554 -> 100698, 33000 -> 15700","Type":"Conventional","Directional":true,"Links":[{"SourceID":30554,"TargetID":100698,"Directional":true},{"SourceID":33000,"TargetID":15700,"Directional":true}]},{"ID":8564,"SourceStructureID":5303,"TargetStructureID":14615,"Label":"5303-14615 via Conventional from 6178 -> 35648, 6179 -> 35649, 64558 -> 64559","Type":"Conventional","Directional":true,"Links":[{"SourceID":6178,"TargetID":35648,"Directional":true},{"SourceID":6179,"TargetID":35649,"Directional":true},{"SourceID":64558,"TargetID":64559,"Directional":true}]},{"ID":8565,"SourceStructureID":5303,"TargetStructureID":15100,"Label":"5303-15100 via Conventional from 102939 -> 102940","Type":"Conventional","Directional":true,"Links":[{"SourceID":102939,"TargetID":102940,"Directional":true}]},{"ID":8566,"SourceStructureID":5325,"TargetStructureID":8575,"Label":"5325-8575 via Ribbon Synapse from 68755 -> 21634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68755,"TargetID":21634,"Directional":true}]},{"ID":8567,"SourceStructureID":5325,"TargetStructureID":40493,"Label":"5325-40493 via Ribbon Synapse from 36409 -> 40494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36409,"TargetID":40494,"Directional":true}]},{"ID":8568,"SourceStructureID":5325,"TargetStructureID":40495,"Label":"5325-40495 via BC Conventional Synapse from 36410 -> 40496","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":36410,"TargetID":40496,"Directional":true}]},{"ID":8569,"SourceStructureID":5325,"TargetStructureID":40498,"Label":"5325-40498 via Ribbon Synapse from 36408 -> 40499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36408,"TargetID":40499,"Directional":true}]},{"ID":8570,"SourceStructureID":5331,"TargetStructureID":5595,"Label":"5331-5595 via Conventional from 39185 -> 33622","Type":"Conventional","Directional":true,"Links":[{"SourceID":39185,"TargetID":33622,"Directional":true}]},{"ID":8571,"SourceStructureID":5331,"TargetStructureID":10625,"Label":"5331-10625 via Conventional from 39174 -> 26926, 39176 -> 39177","Type":"Conventional","Directional":true,"Links":[{"SourceID":39174,"TargetID":26926,"Directional":true},{"SourceID":39176,"TargetID":39177,"Directional":true}]},{"ID":8572,"SourceStructureID":5338,"TargetStructureID":8575,"Label":"5338-8575 via Conventional from 63004 -> 63002, 63006 -> 21647","Type":"Conventional","Directional":true,"Links":[{"SourceID":63004,"TargetID":63002,"Directional":true},{"SourceID":63006,"TargetID":21647,"Directional":true}]},{"ID":8573,"SourceStructureID":5345,"TargetStructureID":59229,"Label":"5345-59229 via Conventional from 59259 -> 59260","Type":"Conventional","Directional":true,"Links":[{"SourceID":59259,"TargetID":59260,"Directional":true}]},{"ID":8574,"SourceStructureID":5350,"TargetStructureID":6857,"Label":"5350-6857 via Conventional from 10635 -> 10636, 10660 -> 10661","Type":"Conventional","Directional":true,"Links":[{"SourceID":10635,"TargetID":10636,"Directional":true},{"SourceID":10660,"TargetID":10661,"Directional":true}]},{"ID":8575,"SourceStructureID":5351,"TargetStructureID":178,"Label":"5351-178 via Conventional from 24106 -> 3273","Type":"Conventional","Directional":true,"Links":[{"SourceID":24106,"TargetID":3273,"Directional":true}]},{"ID":8576,"SourceStructureID":5351,"TargetStructureID":5602,"Label":"5351-5602 via Conventional from 24081 -> 24104","Type":"Conventional","Directional":true,"Links":[{"SourceID":24081,"TargetID":24104,"Directional":true}]},{"ID":8577,"SourceStructureID":5351,"TargetStructureID":7073,"Label":"5351-7073 via Conventional from 24068 -> 24066","Type":"Conventional","Directional":true,"Links":[{"SourceID":24068,"TargetID":24066,"Directional":true}]},{"ID":8578,"SourceStructureID":5352,"TargetStructureID":5575,"Label":"5352-5575 via Conventional from 24118 -> 24117","Type":"Conventional","Directional":true,"Links":[{"SourceID":24118,"TargetID":24117,"Directional":true}]},{"ID":8579,"SourceStructureID":5355,"TargetStructureID":10963,"Label":"5355-10963 via Conventional from 5461 -> 136923","Type":"Conventional","Directional":true,"Links":[{"SourceID":5461,"TargetID":136923,"Directional":true}]},{"ID":8580,"SourceStructureID":5372,"TargetStructureID":906,"Label":"5372-906 via Conventional from 41076 -> 16627","Type":"Conventional","Directional":true,"Links":[{"SourceID":41076,"TargetID":16627,"Directional":true}]},{"ID":8581,"SourceStructureID":5377,"TargetStructureID":161,"Label":"5377-161 via Conventional from 22740 -> 22741, 87013 -> 22741","Type":"Conventional","Directional":true,"Links":[{"SourceID":22740,"TargetID":22741,"Directional":true},{"SourceID":87013,"TargetID":22741,"Directional":true}]},{"ID":8582,"SourceStructureID":5377,"TargetStructureID":173,"Label":"5377-173 via Conventional from 87063 -> 12019, 87083 -> 11999","Type":"Conventional","Directional":true,"Links":[{"SourceID":87063,"TargetID":12019,"Directional":true},{"SourceID":87083,"TargetID":11999,"Directional":true}]},{"ID":8583,"SourceStructureID":5377,"TargetStructureID":1637,"Label":"5377-1637 via Conventional from 22774 -> 22779","Type":"Conventional","Directional":true,"Links":[{"SourceID":22774,"TargetID":22779,"Directional":true}]},{"ID":8584,"SourceStructureID":5377,"TargetStructureID":5118,"Label":"5377-5118 via Conventional from 87024 -> 52227","Type":"Conventional","Directional":true,"Links":[{"SourceID":87024,"TargetID":52227,"Directional":true}]},{"ID":8585,"SourceStructureID":5377,"TargetStructureID":5279,"Label":"5377-5279 via Conventional from 22751 -> 119108, 98582 -> 98583","Type":"Conventional","Directional":true,"Links":[{"SourceID":22751,"TargetID":119108,"Directional":true},{"SourceID":98582,"TargetID":98583,"Directional":true}]},{"ID":8586,"SourceStructureID":5377,"TargetStructureID":5292,"Label":"5377-5292 via Conventional from 22738 -> 22739","Type":"Conventional","Directional":true,"Links":[{"SourceID":22738,"TargetID":22739,"Directional":true}]},{"ID":8587,"SourceStructureID":5377,"TargetStructureID":5530,"Label":"5377-5530 via Conventional from 87088 -> 42131","Type":"Conventional","Directional":true,"Links":[{"SourceID":87088,"TargetID":42131,"Directional":true}]},{"ID":8588,"SourceStructureID":5377,"TargetStructureID":5561,"Label":"5377-5561 via Conventional from 97747 -> 97746","Type":"Conventional","Directional":true,"Links":[{"SourceID":97747,"TargetID":97746,"Directional":true}]},{"ID":8589,"SourceStructureID":5377,"TargetStructureID":20136,"Label":"5377-20136 via Conventional from 87028 -> 87029","Type":"Conventional","Directional":true,"Links":[{"SourceID":87028,"TargetID":87029,"Directional":true}]},{"ID":8590,"SourceStructureID":5377,"TargetStructureID":58714,"Label":"5377-58714 via Conventional from 87086 -> 58734","Type":"Conventional","Directional":true,"Links":[{"SourceID":87086,"TargetID":58734,"Directional":true}]},{"ID":8591,"SourceStructureID":5377,"TargetStructureID":75583,"Label":"5377-75583 via Conventional from 22753 -> 75592","Type":"Conventional","Directional":true,"Links":[{"SourceID":22753,"TargetID":75592,"Directional":true}]},{"ID":8592,"SourceStructureID":5377,"TargetStructureID":80562,"Label":"5377-80562 via Conventional from 87089 -> 87092","Type":"Conventional","Directional":true,"Links":[{"SourceID":87089,"TargetID":87092,"Directional":true}]},{"ID":8593,"SourceStructureID":5377,"TargetStructureID":87020,"Label":"5377-87020 via Conventional from 87019 -> 87021","Type":"Conventional","Directional":true,"Links":[{"SourceID":87019,"TargetID":87021,"Directional":true}]},{"ID":8594,"SourceStructureID":5377,"TargetStructureID":87095,"Label":"5377-87095 via Conventional from 87094 -> 87096","Type":"Conventional","Directional":true,"Links":[{"SourceID":87094,"TargetID":87096,"Directional":true}]},{"ID":8595,"SourceStructureID":5377,"TargetStructureID":87098,"Label":"5377-87098 via Conventional from 87097 -> 87099","Type":"Conventional","Directional":true,"Links":[{"SourceID":87097,"TargetID":87099,"Directional":true}]},{"ID":8596,"SourceStructureID":5377,"TargetStructureID":88199,"Label":"5377-88199 via Conventional from 87044 -> 88237","Type":"Conventional","Directional":true,"Links":[{"SourceID":87044,"TargetID":88237,"Directional":true}]},{"ID":8597,"SourceStructureID":5382,"TargetStructureID":6857,"Label":"5382-6857 via Conventional from 59641 -> 7526","Type":"Conventional","Directional":true,"Links":[{"SourceID":59641,"TargetID":7526,"Directional":true}]},{"ID":8598,"SourceStructureID":5388,"TargetStructureID":6146,"Label":"5388-6146 via Conventional from 20215 -> 38097","Type":"Conventional","Directional":true,"Links":[{"SourceID":20215,"TargetID":38097,"Directional":true}]},{"ID":8599,"SourceStructureID":5390,"TargetStructureID":5916,"Label":"5390-5916 via Conventional from 55696 -> 37980","Type":"Conventional","Directional":true,"Links":[{"SourceID":55696,"TargetID":37980,"Directional":true}]},{"ID":8600,"SourceStructureID":5394,"TargetStructureID":518,"Label":"5394-518 via Conventional from 22811 -> 3384","Type":"Conventional","Directional":true,"Links":[{"SourceID":22811,"TargetID":3384,"Directional":true}]},{"ID":8601,"SourceStructureID":5394,"TargetStructureID":10931,"Label":"5394-10931 via Conventional from 77054 -> 77055, 77057 -> 77058","Type":"Conventional","Directional":true,"Links":[{"SourceID":77054,"TargetID":77055,"Directional":true},{"SourceID":77057,"TargetID":77058,"Directional":true}]},{"ID":8602,"SourceStructureID":5394,"TargetStructureID":10943,"Label":"5394-10943 via Conventional from 22808 -> 22809","Type":"Conventional","Directional":true,"Links":[{"SourceID":22808,"TargetID":22809,"Directional":true}]},{"ID":8603,"SourceStructureID":5394,"TargetStructureID":11031,"Label":"5394-11031 via Conventional from 77060 -> 77064, 77062 -> 25443, 77063 -> 25444","Type":"Conventional","Directional":true,"Links":[{"SourceID":77060,"TargetID":77064,"Directional":true},{"SourceID":77062,"TargetID":25443,"Directional":true},{"SourceID":77063,"TargetID":25444,"Directional":true}]},{"ID":8604,"SourceStructureID":5394,"TargetStructureID":14615,"Label":"5394-14615 via Conventional from 76804 -> 76805, 76817 -> 76818, 76819 -> 76820, 77101 -> 77102, 87951 -> 87952","Type":"Conventional","Directional":true,"Links":[{"SourceID":76804,"TargetID":76805,"Directional":true},{"SourceID":76817,"TargetID":76818,"Directional":true},{"SourceID":76819,"TargetID":76820,"Directional":true},{"SourceID":77101,"TargetID":77102,"Directional":true},{"SourceID":87951,"TargetID":87952,"Directional":true}]},{"ID":8605,"SourceStructureID":5396,"TargetStructureID":5565,"Label":"5396-5565 via Conventional from 89484 -> 53961","Type":"Conventional","Directional":true,"Links":[{"SourceID":89484,"TargetID":53961,"Directional":true}]},{"ID":8606,"SourceStructureID":5396,"TargetStructureID":89312,"Label":"5396-89312 via Conventional from 89454 -> 89315","Type":"Conventional","Directional":true,"Links":[{"SourceID":89454,"TargetID":89315,"Directional":true}]},{"ID":8607,"SourceStructureID":5402,"TargetStructureID":5563,"Label":"5402-5563 via Conventional from 129595 -> 129597, 129596 -> 129598, 129599 -> 129600, 129602 -> 129603","Type":"Conventional","Directional":true,"Links":[{"SourceID":129595,"TargetID":129597,"Directional":true},{"SourceID":129596,"TargetID":129598,"Directional":true},{"SourceID":129599,"TargetID":129600,"Directional":true},{"SourceID":129602,"TargetID":129603,"Directional":true}]},{"ID":8608,"SourceStructureID":5402,"TargetStructureID":10943,"Label":"5402-10943 via Conventional from 129551 -> 16255, 129553 -> 16257","Type":"Conventional","Directional":true,"Links":[{"SourceID":129551,"TargetID":16255,"Directional":true},{"SourceID":129553,"TargetID":16257,"Directional":true}]},{"ID":8609,"SourceStructureID":5402,"TargetStructureID":14615,"Label":"5402-14615 via Conventional from 76605 -> 76910, 76606 -> 76911","Type":"Conventional","Directional":true,"Links":[{"SourceID":76605,"TargetID":76910,"Directional":true},{"SourceID":76606,"TargetID":76911,"Directional":true}]},{"ID":8610,"SourceStructureID":5405,"TargetStructureID":909,"Label":"5405-909 via Conventional from 11176 -> 87035, 11182 -> 120110, 117424 -> 53733, 117658 -> 53761, 131033 -> 131031","Type":"Conventional","Directional":true,"Links":[{"SourceID":11176,"TargetID":87035,"Directional":true},{"SourceID":11182,"TargetID":120110,"Directional":true},{"SourceID":117424,"TargetID":53733,"Directional":true},{"SourceID":117658,"TargetID":53761,"Directional":true},{"SourceID":131033,"TargetID":131031,"Directional":true}]},{"ID":8611,"SourceStructureID":5405,"TargetStructureID":999,"Label":"5405-999 via Conventional from 23406 -> 23415, 23407 -> 23414","Type":"Conventional","Directional":true,"Links":[{"SourceID":23406,"TargetID":23415,"Directional":true},{"SourceID":23407,"TargetID":23414,"Directional":true}]},{"ID":8612,"SourceStructureID":5405,"TargetStructureID":3756,"Label":"5405-3756 via Conventional from 116247 -> 116246, 116259 -> 116258, 120469 -> 116238","Type":"Conventional","Directional":true,"Links":[{"SourceID":116247,"TargetID":116246,"Directional":true},{"SourceID":116259,"TargetID":116258,"Directional":true},{"SourceID":120469,"TargetID":116238,"Directional":true}]},{"ID":8613,"SourceStructureID":5405,"TargetStructureID":5297,"Label":"5405-5297 via Conventional from 11184 -> 32226, 23431 -> 23432, 116496 -> 116495","Type":"Conventional","Directional":true,"Links":[{"SourceID":11184,"TargetID":32226,"Directional":true},{"SourceID":23431,"TargetID":23432,"Directional":true},{"SourceID":116496,"TargetID":116495,"Directional":true}]},{"ID":8614,"SourceStructureID":5405,"TargetStructureID":5500,"Label":"5405-5500 via Conventional from 11171 -> 40071","Type":"Conventional","Directional":true,"Links":[{"SourceID":11171,"TargetID":40071,"Directional":true}]},{"ID":8615,"SourceStructureID":5405,"TargetStructureID":5501,"Label":"5405-5501 via Conventional from 42923 -> 110209, 42929 -> 110195, 42930 -> 115368","Type":"Conventional","Directional":true,"Links":[{"SourceID":42923,"TargetID":110209,"Directional":true},{"SourceID":42929,"TargetID":110195,"Directional":true},{"SourceID":42930,"TargetID":115368,"Directional":true}]},{"ID":8616,"SourceStructureID":5405,"TargetStructureID":5504,"Label":"5405-5504 via Conventional from 42934 -> 37894","Type":"Conventional","Directional":true,"Links":[{"SourceID":42934,"TargetID":37894,"Directional":true}]},{"ID":8617,"SourceStructureID":5405,"TargetStructureID":5561,"Label":"5405-5561 via Conventional from 42911 -> 46211","Type":"Conventional","Directional":true,"Links":[{"SourceID":42911,"TargetID":46211,"Directional":true}]},{"ID":8618,"SourceStructureID":5405,"TargetStructureID":5568,"Label":"5405-5568 via Conventional from 11146 -> 50338","Type":"Conventional","Directional":true,"Links":[{"SourceID":11146,"TargetID":50338,"Directional":true}]},{"ID":8619,"SourceStructureID":5405,"TargetStructureID":5648,"Label":"5405-5648 via Conventional from 11178 -> 23420","Type":"Conventional","Directional":true,"Links":[{"SourceID":11178,"TargetID":23420,"Directional":true}]},{"ID":8620,"SourceStructureID":5405,"TargetStructureID":6118,"Label":"5405-6118 via Conventional from 42939 -> 65674","Type":"Conventional","Directional":true,"Links":[{"SourceID":42939,"TargetID":65674,"Directional":true}]},{"ID":8621,"SourceStructureID":5405,"TargetStructureID":6121,"Label":"5405-6121 via Conventional from 11141 -> 30184, 42944 -> 52277","Type":"Conventional","Directional":true,"Links":[{"SourceID":11141,"TargetID":30184,"Directional":true},{"SourceID":42944,"TargetID":52277,"Directional":true}]},{"ID":8622,"SourceStructureID":5405,"TargetStructureID":18693,"Label":"5405-18693 via Conventional from 42908 -> 33807","Type":"Conventional","Directional":true,"Links":[{"SourceID":42908,"TargetID":33807,"Directional":true}]},{"ID":8623,"SourceStructureID":5405,"TargetStructureID":59392,"Label":"5405-59392 via Conventional from 11168 -> 59417","Type":"Conventional","Directional":true,"Links":[{"SourceID":11168,"TargetID":59417,"Directional":true}]},{"ID":8624,"SourceStructureID":5405,"TargetStructureID":85088,"Label":"5405-85088 via Conventional from 11165 -> 85089","Type":"Conventional","Directional":true,"Links":[{"SourceID":11165,"TargetID":85089,"Directional":true}]},{"ID":8625,"SourceStructureID":5405,"TargetStructureID":85119,"Label":"5405-85119 via Conventional from 42907 -> 85135","Type":"Conventional","Directional":true,"Links":[{"SourceID":42907,"TargetID":85135,"Directional":true}]},{"ID":8626,"SourceStructureID":5410,"TargetStructureID":330,"Label":"5410-330 via Cistern Pre from 82127 -> 38882","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":82127,"TargetID":38882,"Directional":true}]},{"ID":8627,"SourceStructureID":5410,"TargetStructureID":332,"Label":"5410-332 via Conventional from 82141 -> 82146, 82152 -> 97394","Type":"Conventional","Directional":true,"Links":[{"SourceID":82141,"TargetID":82146,"Directional":true},{"SourceID":82152,"TargetID":97394,"Directional":true}]},{"ID":8628,"SourceStructureID":5411,"TargetStructureID":184,"Label":"5411-184 via Conventional from 31764 -> 17364","Type":"Conventional","Directional":true,"Links":[{"SourceID":31764,"TargetID":17364,"Directional":true}]},{"ID":8629,"SourceStructureID":5411,"TargetStructureID":11244,"Label":"5411-11244 via Conventional from 31762 -> 31761","Type":"Conventional","Directional":true,"Links":[{"SourceID":31762,"TargetID":31761,"Directional":true}]},{"ID":8630,"SourceStructureID":5413,"TargetStructureID":7446,"Label":"5413-7446 via Conventional from 130915 -> 123028","Type":"Conventional","Directional":true,"Links":[{"SourceID":130915,"TargetID":123028,"Directional":true}]},{"ID":8631,"SourceStructureID":5413,"TargetStructureID":7461,"Label":"5413-7461 via Conventional from 41183 -> 41132","Type":"Conventional","Directional":true,"Links":[{"SourceID":41183,"TargetID":41132,"Directional":true}]},{"ID":8632,"SourceStructureID":5413,"TargetStructureID":38605,"Label":"5413-38605 via Conventional from 30436 -> 30439","Type":"Conventional","Directional":true,"Links":[{"SourceID":30436,"TargetID":30439,"Directional":true}]},{"ID":8633,"SourceStructureID":5423,"TargetStructureID":595,"Label":"5423-595 via Conventional from 92827 -> 92828","Type":"Conventional","Directional":true,"Links":[{"SourceID":92827,"TargetID":92828,"Directional":true}]},{"ID":8634,"SourceStructureID":5423,"TargetStructureID":5530,"Label":"5423-5530 via Conventional from 80465 -> 80466","Type":"Conventional","Directional":true,"Links":[{"SourceID":80465,"TargetID":80466,"Directional":true}]},{"ID":8635,"SourceStructureID":5435,"TargetStructureID":138,"Label":"5435-138 via Conventional from 41136 -> 46417","Type":"Conventional","Directional":true,"Links":[{"SourceID":41136,"TargetID":46417,"Directional":true}]},{"ID":8636,"SourceStructureID":5435,"TargetStructureID":142,"Label":"5435-142 via Cistern Pre from 147681 -> 147682","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":147681,"TargetID":147682,"Directional":true}]},{"ID":8637,"SourceStructureID":5435,"TargetStructureID":170,"Label":"5435-170 via Conventional from 89037 -> 89038, 89999 -> 90000","Type":"Conventional","Directional":true,"Links":[{"SourceID":89037,"TargetID":89038,"Directional":true},{"SourceID":89999,"TargetID":90000,"Directional":true}]},{"ID":8638,"SourceStructureID":5435,"TargetStructureID":173,"Label":"5435-173 via Conventional from 24346 -> 12040, 41174 -> 41175","Type":"Conventional","Directional":true,"Links":[{"SourceID":24346,"TargetID":12040,"Directional":true},{"SourceID":41174,"TargetID":41175,"Directional":true}]},{"ID":8639,"SourceStructureID":5435,"TargetStructureID":364,"Label":"5435-364 via Conventional from 32023 -> 32022, 32026 -> 32025, 41792 -> 120615","Type":"Conventional","Directional":true,"Links":[{"SourceID":32023,"TargetID":32022,"Directional":true},{"SourceID":32026,"TargetID":32025,"Directional":true},{"SourceID":41792,"TargetID":120615,"Directional":true}]},{"ID":8640,"SourceStructureID":5435,"TargetStructureID":595,"Label":"5435-595 via Conventional from 41147 -> 53505","Type":"Conventional","Directional":true,"Links":[{"SourceID":41147,"TargetID":53505,"Directional":true}]},{"ID":8641,"SourceStructureID":5435,"TargetStructureID":1724,"Label":"5435-1724 via Conventional from 119515 -> 119514","Type":"Conventional","Directional":true,"Links":[{"SourceID":119515,"TargetID":119514,"Directional":true}]},{"ID":8642,"SourceStructureID":5435,"TargetStructureID":4568,"Label":"5435-4568 via Conventional from 41099 -> 36318","Type":"Conventional","Directional":true,"Links":[{"SourceID":41099,"TargetID":36318,"Directional":true}]},{"ID":8643,"SourceStructureID":5435,"TargetStructureID":4569,"Label":"5435-4569 via Conventional from 41125 -> 4744","Type":"Conventional","Directional":true,"Links":[{"SourceID":41125,"TargetID":4744,"Directional":true}]},{"ID":8644,"SourceStructureID":5435,"TargetStructureID":4877,"Label":"5435-4877 via Conventional from 24358 -> 23963","Type":"Conventional","Directional":true,"Links":[{"SourceID":24358,"TargetID":23963,"Directional":true}]},{"ID":8645,"SourceStructureID":5435,"TargetStructureID":5427,"Label":"5435-5427 via Conventional from 41679 -> 129984","Type":"Conventional","Directional":true,"Links":[{"SourceID":41679,"TargetID":129984,"Directional":true}]},{"ID":8646,"SourceStructureID":5435,"TargetStructureID":5534,"Label":"5435-5534 via Conventional from 41153 -> 34629","Type":"Conventional","Directional":true,"Links":[{"SourceID":41153,"TargetID":34629,"Directional":true}]},{"ID":8647,"SourceStructureID":5435,"TargetStructureID":5601,"Label":"5435-5601 via Conventional from 24359 -> 127312, 24364 -> 127321","Type":"Conventional","Directional":true,"Links":[{"SourceID":24359,"TargetID":127312,"Directional":true},{"SourceID":24364,"TargetID":127321,"Directional":true}]},{"ID":8648,"SourceStructureID":5435,"TargetStructureID":11092,"Label":"5435-11092 via Conventional from 41152 -> 128635","Type":"Conventional","Directional":true,"Links":[{"SourceID":41152,"TargetID":128635,"Directional":true}]},{"ID":8649,"SourceStructureID":5435,"TargetStructureID":20136,"Label":"5435-20136 via Conventional from 41179 -> 135513","Type":"Conventional","Directional":true,"Links":[{"SourceID":41179,"TargetID":135513,"Directional":true}]},{"ID":8650,"SourceStructureID":5435,"TargetStructureID":59362,"Label":"5435-59362 via Conventional from 41259 -> 63794","Type":"Conventional","Directional":true,"Links":[{"SourceID":41259,"TargetID":63794,"Directional":true}]},{"ID":8651,"SourceStructureID":5435,"TargetStructureID":82743,"Label":"5435-82743 via Conventional from 41215 -> 82779","Type":"Conventional","Directional":true,"Links":[{"SourceID":41215,"TargetID":82779,"Directional":true}]},{"ID":8652,"SourceStructureID":5435,"TargetStructureID":85856,"Label":"5435-85856 via Cistern Pre from 85917 -> 85919","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":85917,"TargetID":85919,"Directional":true}]},{"ID":8653,"SourceStructureID":5435,"TargetStructureID":127846,"Label":"5435-127846 via Conventional from 41130 -> 127877","Type":"Conventional","Directional":true,"Links":[{"SourceID":41130,"TargetID":127877,"Directional":true}]},{"ID":8654,"SourceStructureID":5435,"TargetStructureID":131568,"Label":"5435-131568 via Conventional from 41738 -> 131587","Type":"Conventional","Directional":true,"Links":[{"SourceID":41738,"TargetID":131587,"Directional":true}]},{"ID":8655,"SourceStructureID":5436,"TargetStructureID":5453,"Label":"5436-5453 via Conventional from 23095 -> 18551","Type":"Conventional","Directional":true,"Links":[{"SourceID":23095,"TargetID":18551,"Directional":true}]},{"ID":8656,"SourceStructureID":5436,"TargetStructureID":5528,"Label":"5436-5528 via Conventional from 23092 -> 94269","Type":"Conventional","Directional":true,"Links":[{"SourceID":23092,"TargetID":94269,"Directional":true}]},{"ID":8657,"SourceStructureID":5436,"TargetStructureID":6129,"Label":"5436-6129 via Conventional from 23089 -> 23090","Type":"Conventional","Directional":true,"Links":[{"SourceID":23089,"TargetID":23090,"Directional":true}]},{"ID":8658,"SourceStructureID":5436,"TargetStructureID":7215,"Label":"5436-7215 via Conventional from 41603 -> 31578","Type":"Conventional","Directional":true,"Links":[{"SourceID":41603,"TargetID":31578,"Directional":true}]},{"ID":8659,"SourceStructureID":5436,"TargetStructureID":8575,"Label":"5436-8575 via Conventional from 61663 -> 61662","Type":"Conventional","Directional":true,"Links":[{"SourceID":61663,"TargetID":61662,"Directional":true}]},{"ID":8660,"SourceStructureID":5439,"TargetStructureID":166,"Label":"5439-166 via Conventional from 70807 -> 70808, 71457 -> 71458","Type":"Conventional","Directional":true,"Links":[{"SourceID":70807,"TargetID":70808,"Directional":true},{"SourceID":71457,"TargetID":71458,"Directional":true}]},{"ID":8661,"SourceStructureID":5439,"TargetStructureID":280,"Label":"5439-280 via Conventional from 85705 -> 85706","Type":"Conventional","Directional":true,"Links":[{"SourceID":85705,"TargetID":85706,"Directional":true}]},{"ID":8662,"SourceStructureID":5439,"TargetStructureID":332,"Label":"5439-332 via Conventional from 85675 -> 85676, 85677 -> 85678, 85688 -> 25207","Type":"Conventional","Directional":true,"Links":[{"SourceID":85675,"TargetID":85676,"Directional":true},{"SourceID":85677,"TargetID":85678,"Directional":true},{"SourceID":85688,"TargetID":25207,"Directional":true}]},{"ID":8663,"SourceStructureID":5439,"TargetStructureID":431,"Label":"5439-431 via Conventional from 98774 -> 119074","Type":"Conventional","Directional":true,"Links":[{"SourceID":98774,"TargetID":119074,"Directional":true}]},{"ID":8664,"SourceStructureID":5439,"TargetStructureID":5599,"Label":"5439-5599 via Conventional from 66594 -> 70669, 70636 -> 70638","Type":"Conventional","Directional":true,"Links":[{"SourceID":66594,"TargetID":70669,"Directional":true},{"SourceID":70636,"TargetID":70638,"Directional":true}]},{"ID":8665,"SourceStructureID":5439,"TargetStructureID":5635,"Label":"5439-5635 via Conventional from 66555 -> 55993, 66557 -> 66558, 66562 -> 55983, 66581 -> 28818, 70636 -> 70637","Type":"Conventional","Directional":true,"Links":[{"SourceID":66555,"TargetID":55993,"Directional":true},{"SourceID":66557,"TargetID":66558,"Directional":true},{"SourceID":66562,"TargetID":55983,"Directional":true},{"SourceID":66581,"TargetID":28818,"Directional":true},{"SourceID":70636,"TargetID":70637,"Directional":true}]},{"ID":8666,"SourceStructureID":5439,"TargetStructureID":5638,"Label":"5439-5638 via Conventional from 66545 -> 66255, 66611 -> 39126","Type":"Conventional","Directional":true,"Links":[{"SourceID":66545,"TargetID":66255,"Directional":true},{"SourceID":66611,"TargetID":39126,"Directional":true}]},{"ID":8667,"SourceStructureID":5439,"TargetStructureID":7568,"Label":"5439-7568 via Conventional from 85516 -> 27087","Type":"Conventional","Directional":true,"Links":[{"SourceID":85516,"TargetID":27087,"Directional":true}]},{"ID":8668,"SourceStructureID":5439,"TargetStructureID":10959,"Label":"5439-10959 via Conventional from 66572 -> 16374","Type":"Conventional","Directional":true,"Links":[{"SourceID":66572,"TargetID":16374,"Directional":true}]},{"ID":8669,"SourceStructureID":5439,"TargetStructureID":15977,"Label":"5439-15977 via Conventional from 66614 -> 70756","Type":"Conventional","Directional":true,"Links":[{"SourceID":66614,"TargetID":70756,"Directional":true}]},{"ID":8670,"SourceStructureID":5439,"TargetStructureID":29198,"Label":"5439-29198 via Conventional from 66554 -> 29226, 85589 -> 29209","Type":"Conventional","Directional":true,"Links":[{"SourceID":66554,"TargetID":29226,"Directional":true},{"SourceID":85589,"TargetID":29209,"Directional":true}]},{"ID":8671,"SourceStructureID":5439,"TargetStructureID":32608,"Label":"5439-32608 via Conventional from 85598 -> 85600","Type":"Conventional","Directional":true,"Links":[{"SourceID":85598,"TargetID":85600,"Directional":true}]},{"ID":8672,"SourceStructureID":5439,"TargetStructureID":56822,"Label":"5439-56822 via Conventional from 66561 -> 70569","Type":"Conventional","Directional":true,"Links":[{"SourceID":66561,"TargetID":70569,"Directional":true}]},{"ID":8673,"SourceStructureID":5439,"TargetStructureID":61816,"Label":"5439-61816 via Conventional from 80747 -> 80748","Type":"Conventional","Directional":true,"Links":[{"SourceID":80747,"TargetID":80748,"Directional":true}]},{"ID":8674,"SourceStructureID":5439,"TargetStructureID":70535,"Label":"5439-70535 via Cistern Pre from 66586 -> 70536","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":66586,"TargetID":70536,"Directional":true}]},{"ID":8675,"SourceStructureID":5439,"TargetStructureID":70557,"Label":"5439-70557 via Conventional from 66549 -> 70558","Type":"Conventional","Directional":true,"Links":[{"SourceID":66549,"TargetID":70558,"Directional":true}]},{"ID":8676,"SourceStructureID":5439,"TargetStructureID":70562,"Label":"5439-70562 via Conventional from 70561 -> 70564","Type":"Conventional","Directional":true,"Links":[{"SourceID":70561,"TargetID":70564,"Directional":true}]},{"ID":8677,"SourceStructureID":5439,"TargetStructureID":70572,"Label":"5439-70572 via Conventional from 66563 -> 70574","Type":"Conventional","Directional":true,"Links":[{"SourceID":66563,"TargetID":70574,"Directional":true}]},{"ID":8678,"SourceStructureID":5439,"TargetStructureID":70577,"Label":"5439-70577 via Conventional from 66570 -> 70578","Type":"Conventional","Directional":true,"Links":[{"SourceID":66570,"TargetID":70578,"Directional":true}]},{"ID":8679,"SourceStructureID":5439,"TargetStructureID":70610,"Label":"5439-70610 via Conventional from 70609 -> 70611","Type":"Conventional","Directional":true,"Links":[{"SourceID":70609,"TargetID":70611,"Directional":true}]},{"ID":8680,"SourceStructureID":5439,"TargetStructureID":70615,"Label":"5439-70615 via Conventional from 66579 -> 70616","Type":"Conventional","Directional":true,"Links":[{"SourceID":66579,"TargetID":70616,"Directional":true}]},{"ID":8681,"SourceStructureID":5439,"TargetStructureID":70618,"Label":"5439-70618 via Conventional from 70617 -> 70619","Type":"Conventional","Directional":true,"Links":[{"SourceID":70617,"TargetID":70619,"Directional":true}]},{"ID":8682,"SourceStructureID":5439,"TargetStructureID":70680,"Label":"5439-70680 via Conventional from 70679 -> 70681","Type":"Conventional","Directional":true,"Links":[{"SourceID":70679,"TargetID":70681,"Directional":true}]},{"ID":8683,"SourceStructureID":5439,"TargetStructureID":70768,"Label":"5439-70768 via Conventional from 66565 -> 70769","Type":"Conventional","Directional":true,"Links":[{"SourceID":66565,"TargetID":70769,"Directional":true}]},{"ID":8684,"SourceStructureID":5439,"TargetStructureID":70776,"Label":"5439-70776 via Conventional from 70568 -> 70777","Type":"Conventional","Directional":true,"Links":[{"SourceID":70568,"TargetID":70777,"Directional":true}]},{"ID":8685,"SourceStructureID":5439,"TargetStructureID":70780,"Label":"5439-70780 via Conventional from 70782 -> 70783","Type":"Conventional","Directional":true,"Links":[{"SourceID":70782,"TargetID":70783,"Directional":true}]},{"ID":8686,"SourceStructureID":5439,"TargetStructureID":70789,"Label":"5439-70789 via Conventional from 66574 -> 70790","Type":"Conventional","Directional":true,"Links":[{"SourceID":66574,"TargetID":70790,"Directional":true}]},{"ID":8687,"SourceStructureID":5439,"TargetStructureID":85634,"Label":"5439-85634 via Conventional from 85633 -> 85635","Type":"Conventional","Directional":true,"Links":[{"SourceID":85633,"TargetID":85635,"Directional":true}]},{"ID":8688,"SourceStructureID":5439,"TargetStructureID":85711,"Label":"5439-85711 via Conventional from 85710 -> 85718","Type":"Conventional","Directional":true,"Links":[{"SourceID":85710,"TargetID":85718,"Directional":true}]},{"ID":8689,"SourceStructureID":5439,"TargetStructureID":85722,"Label":"5439-85722 via Conventional from 85719 -> 85723","Type":"Conventional","Directional":true,"Links":[{"SourceID":85719,"TargetID":85723,"Directional":true}]},{"ID":8690,"SourceStructureID":5442,"TargetStructureID":5601,"Label":"5442-5601 via Cistern Pre from 124493 -> 124492","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":124493,"TargetID":124492,"Directional":true}]},{"ID":8691,"SourceStructureID":5451,"TargetStructureID":28950,"Label":"5451-28950 via Conventional from 44794 -> 44795, 44802 -> 28967","Type":"Conventional","Directional":true,"Links":[{"SourceID":44794,"TargetID":44795,"Directional":true},{"SourceID":44802,"TargetID":28967,"Directional":true}]},{"ID":8692,"SourceStructureID":5453,"TargetStructureID":440,"Label":"5453-440 via Conventional from 41728 -> 122532, 41729 -> 62005, 41730 -> 24453","Type":"Conventional","Directional":true,"Links":[{"SourceID":41728,"TargetID":122532,"Directional":true},{"SourceID":41729,"TargetID":62005,"Directional":true},{"SourceID":41730,"TargetID":24453,"Directional":true}]},{"ID":8693,"SourceStructureID":5453,"TargetStructureID":5531,"Label":"5453-5531 via Conventional from 41698 -> 41699, 41706 -> 62362","Type":"Conventional","Directional":true,"Links":[{"SourceID":41698,"TargetID":41699,"Directional":true},{"SourceID":41706,"TargetID":62362,"Directional":true}]},{"ID":8694,"SourceStructureID":5453,"TargetStructureID":5543,"Label":"5453-5543 via Conventional from 18564 -> 17028, 18665 -> 17098","Type":"Conventional","Directional":true,"Links":[{"SourceID":18564,"TargetID":17028,"Directional":true},{"SourceID":18665,"TargetID":17098,"Directional":true}]},{"ID":8695,"SourceStructureID":5453,"TargetStructureID":5545,"Label":"5453-5545 via Conventional from 28778 -> 128474","Type":"Conventional","Directional":true,"Links":[{"SourceID":28778,"TargetID":128474,"Directional":true}]},{"ID":8696,"SourceStructureID":5453,"TargetStructureID":5636,"Label":"5453-5636 via Conventional from 41712 -> 34710","Type":"Conventional","Directional":true,"Links":[{"SourceID":41712,"TargetID":34710,"Directional":true}]},{"ID":8697,"SourceStructureID":5453,"TargetStructureID":6129,"Label":"5453-6129 via Conventional from 18541 -> 38874, 18545 -> 38871, 18552 -> 18557","Type":"Conventional","Directional":true,"Links":[{"SourceID":18541,"TargetID":38874,"Directional":true},{"SourceID":18545,"TargetID":38871,"Directional":true},{"SourceID":18552,"TargetID":18557,"Directional":true}]},{"ID":8698,"SourceStructureID":5454,"TargetStructureID":330,"Label":"5454-330 via Conventional from 34242 -> 38690","Type":"Conventional","Directional":true,"Links":[{"SourceID":34242,"TargetID":38690,"Directional":true}]},{"ID":8699,"SourceStructureID":5454,"TargetStructureID":360,"Label":"5454-360 via Conventional from 34172 -> 26584","Type":"Conventional","Directional":true,"Links":[{"SourceID":34172,"TargetID":26584,"Directional":true}]},{"ID":8700,"SourceStructureID":5454,"TargetStructureID":3881,"Label":"5454-3881 via Conventional from 34205 -> 3895","Type":"Conventional","Directional":true,"Links":[{"SourceID":34205,"TargetID":3895,"Directional":true}]},{"ID":8701,"SourceStructureID":5454,"TargetStructureID":5536,"Label":"5454-5536 via Conventional from 34194 -> 22654","Type":"Conventional","Directional":true,"Links":[{"SourceID":34194,"TargetID":22654,"Directional":true}]},{"ID":8702,"SourceStructureID":5454,"TargetStructureID":5614,"Label":"5454-5614 via Conventional from 32461 -> 5620","Type":"Conventional","Directional":true,"Links":[{"SourceID":32461,"TargetID":5620,"Directional":true}]},{"ID":8703,"SourceStructureID":5454,"TargetStructureID":5635,"Label":"5454-5635 via Conventional from 34208 -> 28844","Type":"Conventional","Directional":true,"Links":[{"SourceID":34208,"TargetID":28844,"Directional":true}]},{"ID":8704,"SourceStructureID":5454,"TargetStructureID":8575,"Label":"5454-8575 via Conventional from 34214 -> 62327, 147397 -> 147398","Type":"Conventional","Directional":true,"Links":[{"SourceID":34214,"TargetID":62327,"Directional":true},{"SourceID":147397,"TargetID":147398,"Directional":true}]},{"ID":8705,"SourceStructureID":5454,"TargetStructureID":10840,"Label":"5454-10840 via Conventional from 34200 -> 33269","Type":"Conventional","Directional":true,"Links":[{"SourceID":34200,"TargetID":33269,"Directional":true}]},{"ID":8706,"SourceStructureID":5454,"TargetStructureID":25155,"Label":"5454-25155 via Conventional from 38438 -> 34640","Type":"Conventional","Directional":true,"Links":[{"SourceID":38438,"TargetID":34640,"Directional":true}]},{"ID":8707,"SourceStructureID":5456,"TargetStructureID":606,"Label":"5456-606 via Ribbon Synapse from 38164 -> 10564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38164,"TargetID":10564,"Directional":true}]},{"ID":8708,"SourceStructureID":5456,"TargetStructureID":8720,"Label":"5456-8720 via Ribbon Synapse from 38153 -> 63168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38153,"TargetID":63168,"Directional":true}]},{"ID":8709,"SourceStructureID":5457,"TargetStructureID":360,"Label":"5457-360 via Conventional from 87846 -> 26579, 87847 -> 87848","Type":"Conventional","Directional":true,"Links":[{"SourceID":87846,"TargetID":26579,"Directional":true},{"SourceID":87847,"TargetID":87848,"Directional":true}]},{"ID":8710,"SourceStructureID":5457,"TargetStructureID":5614,"Label":"5457-5614 via Conventional from 15355 -> 8734, 15356 -> 15357, 15359 -> 40810","Type":"Conventional","Directional":true,"Links":[{"SourceID":15355,"TargetID":8734,"Directional":true},{"SourceID":15356,"TargetID":15357,"Directional":true},{"SourceID":15359,"TargetID":40810,"Directional":true}]},{"ID":8711,"SourceStructureID":5464,"TargetStructureID":46521,"Label":"5464-46521 via Conventional from 46524 -> 46523","Type":"Conventional","Directional":true,"Links":[{"SourceID":46524,"TargetID":46523,"Directional":true}]},{"ID":8712,"SourceStructureID":5468,"TargetStructureID":606,"Label":"5468-606 via Ribbon Synapse from 38474 -> 51782, 38476 -> 51783, 48073 -> 48077, 48112 -> 48114, 51791 -> 51790, 51852 -> 51850","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38474,"TargetID":51782,"Directional":true},{"SourceID":38476,"TargetID":51783,"Directional":true},{"SourceID":48073,"TargetID":48077,"Directional":true},{"SourceID":48112,"TargetID":48114,"Directional":true},{"SourceID":51791,"TargetID":51790,"Directional":true},{"SourceID":51852,"TargetID":51850,"Directional":true}]},{"ID":8713,"SourceStructureID":5468,"TargetStructureID":5442,"Label":"5468-5442 via Ribbon Synapse from 55127 -> 55128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55127,"TargetID":55128,"Directional":true}]},{"ID":8714,"SourceStructureID":5468,"TargetStructureID":9769,"Label":"5468-9769 via Ribbon Synapse from 29967 -> 29966, 38476 -> 38475, 45698 -> 52857, 45702 -> 29970, 45705 -> 52856, 48300 -> 52855, 52879 -> 52880, 53121 -> 29963","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29967,"TargetID":29966,"Directional":true},{"SourceID":38476,"TargetID":38475,"Directional":true},{"SourceID":45698,"TargetID":52857,"Directional":true},{"SourceID":45702,"TargetID":29970,"Directional":true},{"SourceID":45705,"TargetID":52856,"Directional":true},{"SourceID":48300,"TargetID":52855,"Directional":true},{"SourceID":52879,"TargetID":52880,"Directional":true},{"SourceID":53121,"TargetID":29963,"Directional":true}]},{"ID":8715,"SourceStructureID":5468,"TargetStructureID":23870,"Label":"5468-23870 via Ribbon Synapse from 23879 -> 23873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23879,"TargetID":23873,"Directional":true}]},{"ID":8716,"SourceStructureID":5468,"TargetStructureID":33039,"Label":"5468-33039 via Ribbon Synapse from 33044 -> 33042, 33046 -> 33045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33044,"TargetID":33042,"Directional":true},{"SourceID":33046,"TargetID":33045,"Directional":true}]},{"ID":8717,"SourceStructureID":5468,"TargetStructureID":33057,"Label":"5468-33057 via BC Conventional Synapse from 48224 -> 48227","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":48224,"TargetID":48227,"Directional":true}]},{"ID":8718,"SourceStructureID":5468,"TargetStructureID":35811,"Label":"5468-35811 via Ribbon Synapse from 23876 -> 35879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23876,"TargetID":35879,"Directional":true}]},{"ID":8719,"SourceStructureID":5468,"TargetStructureID":74047,"Label":"5468-74047 via Ribbon Synapse from 48211 -> 74390, 55127 -> 74359, 74319 -> 74320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48211,"TargetID":74390,"Directional":true},{"SourceID":55127,"TargetID":74359,"Directional":true},{"SourceID":74319,"TargetID":74320,"Directional":true}]},{"ID":8720,"SourceStructureID":5468,"TargetStructureID":93067,"Label":"5468-93067 via Ribbon Synapse from 45728 -> 93068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45728,"TargetID":93068,"Directional":true}]},{"ID":8721,"SourceStructureID":5468,"TargetStructureID":93069,"Label":"5468-93069 via Ribbon Synapse from 45728 -> 93071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45728,"TargetID":93071,"Directional":true}]},{"ID":8722,"SourceStructureID":5468,"TargetStructureID":93072,"Label":"5468-93072 via Ribbon Synapse from 48229 -> 93079, 48230 -> 93073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48229,"TargetID":93079,"Directional":true},{"SourceID":48230,"TargetID":93073,"Directional":true}]},{"ID":8723,"SourceStructureID":5468,"TargetStructureID":93074,"Label":"5468-93074 via Ribbon Synapse from 23876 -> 93075","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23876,"TargetID":93075,"Directional":true}]},{"ID":8724,"SourceStructureID":5468,"TargetStructureID":93076,"Label":"5468-93076 via Ribbon Synapse from 23876 -> 93077","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23876,"TargetID":93077,"Directional":true}]},{"ID":8725,"SourceStructureID":5470,"TargetStructureID":7204,"Label":"5470-7204 via Conventional from 54692 -> 24344","Type":"Conventional","Directional":true,"Links":[{"SourceID":54692,"TargetID":24344,"Directional":true}]},{"ID":8726,"SourceStructureID":5470,"TargetStructureID":9769,"Label":"5470-9769 via Conventional from 54690 -> 23957","Type":"Conventional","Directional":true,"Links":[{"SourceID":54690,"TargetID":23957,"Directional":true}]},{"ID":8727,"SourceStructureID":5473,"TargetStructureID":5587,"Label":"5473-5587 via Conventional from 28956 -> 136555, 129034 -> 129033","Type":"Conventional","Directional":true,"Links":[{"SourceID":28956,"TargetID":136555,"Directional":true},{"SourceID":129034,"TargetID":129033,"Directional":true}]},{"ID":8728,"SourceStructureID":5473,"TargetStructureID":5640,"Label":"5473-5640 via Conventional from 37122 -> 37117","Type":"Conventional","Directional":true,"Links":[{"SourceID":37122,"TargetID":37117,"Directional":true}]},{"ID":8729,"SourceStructureID":5473,"TargetStructureID":28913,"Label":"5473-28913 via Conventional from 37123 -> 28944","Type":"Conventional","Directional":true,"Links":[{"SourceID":37123,"TargetID":28944,"Directional":true}]},{"ID":8730,"SourceStructureID":5473,"TargetStructureID":28950,"Label":"5473-28950 via Conventional from 23893 -> 84727, 28955 -> 28951","Type":"Conventional","Directional":true,"Links":[{"SourceID":23893,"TargetID":84727,"Directional":true},{"SourceID":28955,"TargetID":28951,"Directional":true}]},{"ID":8731,"SourceStructureID":5481,"TargetStructureID":60174,"Label":"5481-60174 via Cistern Pre from 60173 -> 60175","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":60173,"TargetID":60175,"Directional":true}]},{"ID":8732,"SourceStructureID":5481,"TargetStructureID":90177,"Label":"5481-90177 via Conventional from 90176 -> 90178","Type":"Conventional","Directional":true,"Links":[{"SourceID":90176,"TargetID":90178,"Directional":true}]},{"ID":8733,"SourceStructureID":5481,"TargetStructureID":90186,"Label":"5481-90186 via Conventional from 90185 -> 90187","Type":"Conventional","Directional":true,"Links":[{"SourceID":90185,"TargetID":90187,"Directional":true}]},{"ID":8734,"SourceStructureID":5481,"TargetStructureID":133757,"Label":"5481-133757 via Cistern Pre from 133760 -> 133761","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":133760,"TargetID":133761,"Directional":true}]},{"ID":8735,"SourceStructureID":5485,"TargetStructureID":5150,"Label":"5485-5150 via Conventional from 26965 -> 5157","Type":"Conventional","Directional":true,"Links":[{"SourceID":26965,"TargetID":5157,"Directional":true}]},{"ID":8736,"SourceStructureID":5485,"TargetStructureID":8575,"Label":"5485-8575 via Conventional from 62291 -> 62290","Type":"Conventional","Directional":true,"Links":[{"SourceID":62291,"TargetID":62290,"Directional":true}]},{"ID":8737,"SourceStructureID":5485,"TargetStructureID":34336,"Label":"5485-34336 via Conventional from 34366 -> 34365, 34370 -> 34369, 34392 -> 34391","Type":"Conventional","Directional":true,"Links":[{"SourceID":34366,"TargetID":34365,"Directional":true},{"SourceID":34370,"TargetID":34369,"Directional":true},{"SourceID":34392,"TargetID":34391,"Directional":true}]},{"ID":8738,"SourceStructureID":5485,"TargetStructureID":84830,"Label":"5485-84830 via Conventional from 84836 -> 84833","Type":"Conventional","Directional":true,"Links":[{"SourceID":84836,"TargetID":84833,"Directional":true}]},{"ID":8739,"SourceStructureID":5486,"TargetStructureID":8575,"Label":"5486-8575 via Conventional from 21140 -> 61723","Type":"Conventional","Directional":true,"Links":[{"SourceID":21140,"TargetID":61723,"Directional":true}]},{"ID":8740,"SourceStructureID":5486,"TargetStructureID":10959,"Label":"5486-10959 via Cistern Pre from 86723 -> 86725","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":86723,"TargetID":86725,"Directional":true}]},{"ID":8741,"SourceStructureID":5486,"TargetStructureID":137122,"Label":"5486-137122 via Conventional from 21152 -> 137180","Type":"Conventional","Directional":true,"Links":[{"SourceID":21152,"TargetID":137180,"Directional":true}]},{"ID":8742,"SourceStructureID":5487,"TargetStructureID":142,"Label":"5487-142 via Conventional from 91679 -> 50123","Type":"Conventional","Directional":true,"Links":[{"SourceID":91679,"TargetID":50123,"Directional":true}]},{"ID":8743,"SourceStructureID":5487,"TargetStructureID":469,"Label":"5487-469 via Conventional from 34563 -> 4656","Type":"Conventional","Directional":true,"Links":[{"SourceID":34563,"TargetID":4656,"Directional":true}]},{"ID":8744,"SourceStructureID":5487,"TargetStructureID":4570,"Label":"5487-4570 via Conventional from 34574 -> 24487","Type":"Conventional","Directional":true,"Links":[{"SourceID":34574,"TargetID":24487,"Directional":true}]},{"ID":8745,"SourceStructureID":5487,"TargetStructureID":5480,"Label":"5487-5480 via Cistern Pre from 87229 -> 87230","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":87229,"TargetID":87230,"Directional":true}]},{"ID":8746,"SourceStructureID":5487,"TargetStructureID":60798,"Label":"5487-60798 via Conventional from 34593 -> 60802","Type":"Conventional","Directional":true,"Links":[{"SourceID":34593,"TargetID":60802,"Directional":true}]},{"ID":8747,"SourceStructureID":5487,"TargetStructureID":129995,"Label":"5487-129995 via Conventional from 34588 -> 130001, 34588 -> 130002, 130000 -> 129998","Type":"Conventional","Directional":true,"Links":[{"SourceID":34588,"TargetID":130001,"Directional":true},{"SourceID":34588,"TargetID":130002,"Directional":true},{"SourceID":130000,"TargetID":129998,"Directional":true}]},{"ID":8748,"SourceStructureID":5489,"TargetStructureID":11222,"Label":"5489-11222 via Conventional from 37147 -> 11223","Type":"Conventional","Directional":true,"Links":[{"SourceID":37147,"TargetID":11223,"Directional":true}]},{"ID":8749,"SourceStructureID":5489,"TargetStructureID":16073,"Label":"5489-16073 via Conventional from 37148 -> 19871","Type":"Conventional","Directional":true,"Links":[{"SourceID":37148,"TargetID":19871,"Directional":true}]},{"ID":8750,"SourceStructureID":5489,"TargetStructureID":68497,"Label":"5489-68497 via Conventional from 81594 -> 81595","Type":"Conventional","Directional":true,"Links":[{"SourceID":81594,"TargetID":81595,"Directional":true}]},{"ID":8751,"SourceStructureID":5489,"TargetStructureID":128107,"Label":"5489-128107 via Conventional from 128112 -> 128113","Type":"Conventional","Directional":true,"Links":[{"SourceID":128112,"TargetID":128113,"Directional":true}]},{"ID":8752,"SourceStructureID":5491,"TargetStructureID":606,"Label":"5491-606 via Conventional from 45479 -> 53514","Type":"Conventional","Directional":true,"Links":[{"SourceID":45479,"TargetID":53514,"Directional":true}]},{"ID":8753,"SourceStructureID":5491,"TargetStructureID":7231,"Label":"5491-7231 via Conventional from 116958 -> 116957","Type":"Conventional","Directional":true,"Links":[{"SourceID":116958,"TargetID":116957,"Directional":true}]},{"ID":8754,"SourceStructureID":5491,"TargetStructureID":8575,"Label":"5491-8575 via Conventional from 62365 -> 62363, 62369 -> 62368","Type":"Conventional","Directional":true,"Links":[{"SourceID":62365,"TargetID":62363,"Directional":true},{"SourceID":62369,"TargetID":62368,"Directional":true}]},{"ID":8755,"SourceStructureID":5491,"TargetStructureID":8578,"Label":"5491-8578 via Conventional from 54671 -> 54672","Type":"Conventional","Directional":true,"Links":[{"SourceID":54671,"TargetID":54672,"Directional":true}]},{"ID":8756,"SourceStructureID":5491,"TargetStructureID":44346,"Label":"5491-44346 via Conventional from 44410 -> 44409","Type":"Conventional","Directional":true,"Links":[{"SourceID":44410,"TargetID":44409,"Directional":true}]},{"ID":8757,"SourceStructureID":5497,"TargetStructureID":909,"Label":"5497-909 via Conventional from 62559 -> 45939, 62596 -> 117468","Type":"Conventional","Directional":true,"Links":[{"SourceID":62559,"TargetID":45939,"Directional":true},{"SourceID":62596,"TargetID":117468,"Directional":true}]},{"ID":8758,"SourceStructureID":5497,"TargetStructureID":5500,"Label":"5497-5500 via Conventional from 62562 -> 62563, 62566 -> 62567","Type":"Conventional","Directional":true,"Links":[{"SourceID":62562,"TargetID":62563,"Directional":true},{"SourceID":62566,"TargetID":62567,"Directional":true}]},{"ID":8759,"SourceStructureID":5497,"TargetStructureID":8575,"Label":"5497-8575 via Conventional from 21735 -> 62449, 21745 -> 21744, 62543 -> 62544","Type":"Conventional","Directional":true,"Links":[{"SourceID":21735,"TargetID":62449,"Directional":true},{"SourceID":21745,"TargetID":21744,"Directional":true},{"SourceID":62543,"TargetID":62544,"Directional":true}]},{"ID":8760,"SourceStructureID":5497,"TargetStructureID":14293,"Label":"5497-14293 via Conventional from 62549 -> 40209","Type":"Conventional","Directional":true,"Links":[{"SourceID":62549,"TargetID":40209,"Directional":true}]},{"ID":8761,"SourceStructureID":5497,"TargetStructureID":19203,"Label":"5497-19203 via Conventional from 21740 -> 22890, 22941 -> 22920","Type":"Conventional","Directional":true,"Links":[{"SourceID":21740,"TargetID":22890,"Directional":true},{"SourceID":22941,"TargetID":22920,"Directional":true}]},{"ID":8762,"SourceStructureID":5497,"TargetStructureID":62500,"Label":"5497-62500 via Conventional from 62499 -> 62501","Type":"Conventional","Directional":true,"Links":[{"SourceID":62499,"TargetID":62501,"Directional":true}]},{"ID":8763,"SourceStructureID":5497,"TargetStructureID":62578,"Label":"5497-62578 via Conventional from 62577 -> 62579","Type":"Conventional","Directional":true,"Links":[{"SourceID":62577,"TargetID":62579,"Directional":true}]},{"ID":8764,"SourceStructureID":5498,"TargetStructureID":12192,"Label":"5498-12192 via Ribbon Synapse from 46617 -> 46618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46617,"TargetID":46618,"Directional":true}]},{"ID":8765,"SourceStructureID":5498,"TargetStructureID":84670,"Label":"5498-84670 via Ribbon Synapse from 59723 -> 84676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59723,"TargetID":84676,"Directional":true}]},{"ID":8766,"SourceStructureID":5498,"TargetStructureID":93125,"Label":"5498-93125 via BC Conventional Synapse from 93140 -> 93137","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93140,"TargetID":93137,"Directional":true}]},{"ID":8767,"SourceStructureID":5499,"TargetStructureID":606,"Label":"5499-606 via BC Conventional Synapse from 106639 -> 106638","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106639,"TargetID":106638,"Directional":true}]},{"ID":8768,"SourceStructureID":5499,"TargetStructureID":606,"Label":"5499-606 via Ribbon Synapse from 48514 -> 48515, 48531 -> 51611, 49658 -> 47318, 49659 -> 47319, 51612 -> 51613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48514,"TargetID":48515,"Directional":true},{"SourceID":48531,"TargetID":51611,"Directional":true},{"SourceID":49658,"TargetID":47318,"Directional":true},{"SourceID":49659,"TargetID":47319,"Directional":true},{"SourceID":51612,"TargetID":51613,"Directional":true}]},{"ID":8769,"SourceStructureID":5499,"TargetStructureID":5396,"Label":"5499-5396 via Ribbon Synapse from 40144 -> 40143","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40144,"TargetID":40143,"Directional":true}]},{"ID":8770,"SourceStructureID":5499,"TargetStructureID":7897,"Label":"5499-7897 via Ribbon Synapse from 55722 -> 55721","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55722,"TargetID":55721,"Directional":true}]},{"ID":8771,"SourceStructureID":5499,"TargetStructureID":22232,"Label":"5499-22232 via Ribbon Synapse from 40139 -> 68824, 49644 -> 105276, 95213 -> 68817, 96684 -> 96685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40139,"TargetID":68824,"Directional":true},{"SourceID":49644,"TargetID":105276,"Directional":true},{"SourceID":95213,"TargetID":68817,"Directional":true},{"SourceID":96684,"TargetID":96685,"Directional":true}]},{"ID":8772,"SourceStructureID":5499,"TargetStructureID":31161,"Label":"5499-31161 via Ribbon Synapse from 49664 -> 31220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49664,"TargetID":31220,"Directional":true}]},{"ID":8773,"SourceStructureID":5499,"TargetStructureID":55403,"Label":"5499-55403 via Ribbon Synapse from 49664 -> 55497, 55484 -> 55485, 55488 -> 55487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49664,"TargetID":55497,"Directional":true},{"SourceID":55484,"TargetID":55485,"Directional":true},{"SourceID":55488,"TargetID":55487,"Directional":true}]},{"ID":8774,"SourceStructureID":5499,"TargetStructureID":68539,"Label":"5499-68539 via Ribbon Synapse from 97896 -> 69091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97896,"TargetID":69091,"Directional":true}]},{"ID":8775,"SourceStructureID":5499,"TargetStructureID":78409,"Label":"5499-78409 via Ribbon Synapse from 106779 -> 106780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106779,"TargetID":106780,"Directional":true}]},{"ID":8776,"SourceStructureID":5499,"TargetStructureID":85730,"Label":"5499-85730 via Ribbon Synapse from 85743 -> 85742","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85743,"TargetID":85742,"Directional":true}]},{"ID":8777,"SourceStructureID":5499,"TargetStructureID":89571,"Label":"5499-89571 via Ribbon Synapse from 89574 -> 89572","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89574,"TargetID":89572,"Directional":true}]},{"ID":8778,"SourceStructureID":5499,"TargetStructureID":96676,"Label":"5499-96676 via BC Conventional Synapse from 96675 -> 96677","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96675,"TargetID":96677,"Directional":true}]},{"ID":8779,"SourceStructureID":5499,"TargetStructureID":96682,"Label":"5499-96682 via BC Conventional Synapse from 96681 -> 96683","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96681,"TargetID":96683,"Directional":true}]},{"ID":8780,"SourceStructureID":5499,"TargetStructureID":96688,"Label":"5499-96688 via Ribbon Synapse from 95216 -> 96689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95216,"TargetID":96689,"Directional":true}]},{"ID":8781,"SourceStructureID":5499,"TargetStructureID":96690,"Label":"5499-96690 via Ribbon Synapse from 95213 -> 96691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95213,"TargetID":96691,"Directional":true}]},{"ID":8782,"SourceStructureID":5499,"TargetStructureID":96695,"Label":"5499-96695 via Ribbon Synapse from 96692 -> 96696","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96692,"TargetID":96696,"Directional":true}]},{"ID":8783,"SourceStructureID":5499,"TargetStructureID":96703,"Label":"5499-96703 via Ribbon Synapse from 96702 -> 96704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96702,"TargetID":96704,"Directional":true}]},{"ID":8784,"SourceStructureID":5499,"TargetStructureID":96705,"Label":"5499-96705 via Ribbon Synapse from 87330 -> 96706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87330,"TargetID":96706,"Directional":true}]},{"ID":8785,"SourceStructureID":5499,"TargetStructureID":96708,"Label":"5499-96708 via Ribbon Synapse from 87330 -> 96709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87330,"TargetID":96709,"Directional":true}]},{"ID":8786,"SourceStructureID":5499,"TargetStructureID":96711,"Label":"5499-96711 via Ribbon Synapse from 87330 -> 96712","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87330,"TargetID":96712,"Directional":true}]},{"ID":8787,"SourceStructureID":5499,"TargetStructureID":96720,"Label":"5499-96720 via Ribbon Synapse from 96714 -> 96722","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96714,"TargetID":96722,"Directional":true}]},{"ID":8788,"SourceStructureID":5499,"TargetStructureID":96730,"Label":"5499-96730 via Ribbon Synapse from 96723 -> 96732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96723,"TargetID":96732,"Directional":true}]},{"ID":8789,"SourceStructureID":5499,"TargetStructureID":96733,"Label":"5499-96733 via Ribbon Synapse from 96723 -> 96735","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96723,"TargetID":96735,"Directional":true}]},{"ID":8790,"SourceStructureID":5499,"TargetStructureID":96738,"Label":"5499-96738 via Ribbon Synapse from 96724 -> 96739","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96724,"TargetID":96739,"Directional":true}]},{"ID":8791,"SourceStructureID":5499,"TargetStructureID":97171,"Label":"5499-97171 via Ribbon Synapse from 97179 -> 97185, 106670 -> 106671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97179,"TargetID":97185,"Directional":true},{"SourceID":106670,"TargetID":106671,"Directional":true}]},{"ID":8792,"SourceStructureID":5499,"TargetStructureID":105498,"Label":"5499-105498 via Ribbon Synapse from 105497 -> 105499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105497,"TargetID":105499,"Directional":true}]},{"ID":8793,"SourceStructureID":5499,"TargetStructureID":105506,"Label":"5499-105506 via Ribbon Synapse from 105505 -> 105508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105505,"TargetID":105508,"Directional":true}]},{"ID":8794,"SourceStructureID":5499,"TargetStructureID":105509,"Label":"5499-105509 via Ribbon Synapse from 105505 -> 105510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105505,"TargetID":105510,"Directional":true}]},{"ID":8795,"SourceStructureID":5499,"TargetStructureID":105521,"Label":"5499-105521 via Ribbon Synapse from 105523 -> 105524","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105523,"TargetID":105524,"Directional":true}]},{"ID":8796,"SourceStructureID":5499,"TargetStructureID":105526,"Label":"5499-105526 via Ribbon Synapse from 105518 -> 105529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105518,"TargetID":105529,"Directional":true}]},{"ID":8797,"SourceStructureID":5499,"TargetStructureID":106752,"Label":"5499-106752 via Ribbon Synapse from 40151 -> 106753","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40151,"TargetID":106753,"Directional":true}]},{"ID":8798,"SourceStructureID":5499,"TargetStructureID":108722,"Label":"5499-108722 via BC Conventional Synapse from 105782 -> 108723","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105782,"TargetID":108723,"Directional":true}]},{"ID":8799,"SourceStructureID":5499,"TargetStructureID":108727,"Label":"5499-108727 via Ribbon Synapse from 105741 -> 108728","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105741,"TargetID":108728,"Directional":true}]},{"ID":8800,"SourceStructureID":5499,"TargetStructureID":129927,"Label":"5499-129927 via Ribbon Synapse from 96692 -> 96694, 106891 -> 129944","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96692,"TargetID":96694,"Directional":true},{"SourceID":106891,"TargetID":129944,"Directional":true}]},{"ID":8801,"SourceStructureID":5500,"TargetStructureID":5405,"Label":"5500-5405 via Ribbon Synapse from 40070 -> 11170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40070,"TargetID":11170,"Directional":true}]},{"ID":8802,"SourceStructureID":5500,"TargetStructureID":5497,"Label":"5500-5497 via Ribbon Synapse from 36498 -> 62564, 59385 -> 62569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36498,"TargetID":62564,"Directional":true},{"SourceID":59385,"TargetID":62569,"Directional":true}]},{"ID":8803,"SourceStructureID":5500,"TargetStructureID":59333,"Label":"5500-59333 via Ribbon Synapse from 59358 -> 59361, 59359 -> 59360","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59358,"TargetID":59361,"Directional":true},{"SourceID":59359,"TargetID":59360,"Directional":true}]},{"ID":8804,"SourceStructureID":5500,"TargetStructureID":59371,"Label":"5500-59371 via Ribbon Synapse from 59373 -> 59372","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59373,"TargetID":59372,"Directional":true}]},{"ID":8805,"SourceStructureID":5500,"TargetStructureID":59389,"Label":"5500-59389 via Ribbon Synapse from 59388 -> 59390","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59388,"TargetID":59390,"Directional":true}]},{"ID":8806,"SourceStructureID":5500,"TargetStructureID":61450,"Label":"5500-61450 via BC Conventional Synapse from 61495 -> 61494","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61495,"TargetID":61494,"Directional":true}]},{"ID":8807,"SourceStructureID":5500,"TargetStructureID":85032,"Label":"5500-85032 via Ribbon Synapse from 59358 -> 85034, 85035 -> 85036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59358,"TargetID":85034,"Directional":true},{"SourceID":85035,"TargetID":85036,"Directional":true}]},{"ID":8808,"SourceStructureID":5501,"TargetStructureID":5107,"Label":"5501-5107 via Ribbon Synapse from 131432 -> 65004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131432,"TargetID":65004,"Directional":true}]},{"ID":8809,"SourceStructureID":5501,"TargetStructureID":5405,"Label":"5501-5405 via Ribbon Synapse from 60766 -> 42920, 110210 -> 110211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60766,"TargetID":42920,"Directional":true},{"SourceID":110210,"TargetID":110211,"Directional":true}]},{"ID":8810,"SourceStructureID":5501,"TargetStructureID":7134,"Label":"5501-7134 via Ribbon Synapse from 15775 -> 29650, 36570 -> 122193, 122458 -> 41656","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15775,"TargetID":29650,"Directional":true},{"SourceID":36570,"TargetID":122193,"Directional":true},{"SourceID":122458,"TargetID":41656,"Directional":true}]},{"ID":8811,"SourceStructureID":5501,"TargetStructureID":8575,"Label":"5501-8575 via Ribbon Synapse from 62952 -> 62951","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62952,"TargetID":62951,"Directional":true}]},{"ID":8812,"SourceStructureID":5501,"TargetStructureID":31024,"Label":"5501-31024 via BC Conventional Synapse from 110243 -> 110242","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110243,"TargetID":110242,"Directional":true}]},{"ID":8813,"SourceStructureID":5501,"TargetStructureID":68539,"Label":"5501-68539 via Ribbon Synapse from 60408 -> 69080, 114049 -> 114048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60408,"TargetID":69080,"Directional":true},{"SourceID":114049,"TargetID":114048,"Directional":true}]},{"ID":8814,"SourceStructureID":5501,"TargetStructureID":87342,"Label":"5501-87342 via Ribbon Synapse from 36553 -> 87393, 36558 -> 87398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36553,"TargetID":87393,"Directional":true},{"SourceID":36558,"TargetID":87398,"Directional":true}]},{"ID":8815,"SourceStructureID":5501,"TargetStructureID":87396,"Label":"5501-87396 via Ribbon Synapse from 36558 -> 87399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36558,"TargetID":87399,"Directional":true}]},{"ID":8816,"SourceStructureID":5501,"TargetStructureID":102793,"Label":"5501-102793 via Ribbon Synapse from 131435 -> 131436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131435,"TargetID":131436,"Directional":true}]},{"ID":8817,"SourceStructureID":5501,"TargetStructureID":106709,"Label":"5501-106709 via Ribbon Synapse from 110246 -> 110255, 110252 -> 110251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110246,"TargetID":110255,"Directional":true},{"SourceID":110252,"TargetID":110251,"Directional":true}]},{"ID":8818,"SourceStructureID":5501,"TargetStructureID":106732,"Label":"5501-106732 via Ribbon Synapse from 110256 -> 110257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110256,"TargetID":110257,"Directional":true}]},{"ID":8819,"SourceStructureID":5501,"TargetStructureID":108083,"Label":"5501-108083 via Ribbon Synapse from 110212 -> 110220, 110216 -> 110222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110212,"TargetID":110220,"Directional":true},{"SourceID":110216,"TargetID":110222,"Directional":true}]},{"ID":8820,"SourceStructureID":5501,"TargetStructureID":110064,"Label":"5501-110064 via Ribbon Synapse from 36578 -> 110065","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36578,"TargetID":110065,"Directional":true}]},{"ID":8821,"SourceStructureID":5502,"TargetStructureID":3679,"Label":"5502-3679 via Ribbon Synapse from 27254 -> 27255","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27254,"TargetID":27255,"Directional":true}]},{"ID":8822,"SourceStructureID":5502,"TargetStructureID":59229,"Label":"5502-59229 via Ribbon Synapse from 27283 -> 85577","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27283,"TargetID":85577,"Directional":true}]},{"ID":8823,"SourceStructureID":5502,"TargetStructureID":60657,"Label":"5502-60657 via Ribbon Synapse from 27243 -> 61448","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27243,"TargetID":61448,"Directional":true}]},{"ID":8824,"SourceStructureID":5503,"TargetStructureID":606,"Label":"5503-606 via Ribbon Synapse from 47378 -> 110424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47378,"TargetID":110424,"Directional":true}]},{"ID":8825,"SourceStructureID":5503,"TargetStructureID":5107,"Label":"5503-5107 via Ribbon Synapse from 24861 -> 24863, 65000 -> 64999, 110052 -> 110056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24861,"TargetID":24863,"Directional":true},{"SourceID":65000,"TargetID":64999,"Directional":true},{"SourceID":110052,"TargetID":110056,"Directional":true}]},{"ID":8826,"SourceStructureID":5503,"TargetStructureID":7897,"Label":"5503-7897 via Ribbon Synapse from 60667 -> 109891, 60690 -> 109714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60667,"TargetID":109891,"Directional":true},{"SourceID":60690,"TargetID":109714,"Directional":true}]},{"ID":8827,"SourceStructureID":5503,"TargetStructureID":8575,"Label":"5503-8575 via Ribbon Synapse from 60725 -> 62995","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60725,"TargetID":62995,"Directional":true}]},{"ID":8828,"SourceStructureID":5503,"TargetStructureID":16073,"Label":"5503-16073 via Ribbon Synapse from 36635 -> 108919","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36635,"TargetID":108919,"Directional":true}]},{"ID":8829,"SourceStructureID":5503,"TargetStructureID":52410,"Label":"5503-52410 via Ribbon Synapse from 52438 -> 52439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52438,"TargetID":52439,"Directional":true}]},{"ID":8830,"SourceStructureID":5503,"TargetStructureID":65002,"Label":"5503-65002 via Ribbon Synapse from 65001 -> 110006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65001,"TargetID":110006,"Directional":true}]},{"ID":8831,"SourceStructureID":5503,"TargetStructureID":87294,"Label":"5503-87294 via Ribbon Synapse from 52438 -> 108379, 108422 -> 108428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52438,"TargetID":108379,"Directional":true},{"SourceID":108422,"TargetID":108428,"Directional":true}]},{"ID":8832,"SourceStructureID":5503,"TargetStructureID":107374,"Label":"5503-107374 via Cistern Pre from 36624 -> 107375","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":36624,"TargetID":107375,"Directional":true}]},{"ID":8833,"SourceStructureID":5503,"TargetStructureID":107405,"Label":"5503-107405 via Cistern Pre from 107404 -> 107407","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":107404,"TargetID":107407,"Directional":true}]},{"ID":8834,"SourceStructureID":5503,"TargetStructureID":107414,"Label":"5503-107414 via Ribbon Synapse from 60728 -> 107426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60728,"TargetID":107426,"Directional":true}]},{"ID":8835,"SourceStructureID":5503,"TargetStructureID":107463,"Label":"5503-107463 via Cistern Pre from 107462 -> 107465","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":107462,"TargetID":107465,"Directional":true}]},{"ID":8836,"SourceStructureID":5503,"TargetStructureID":107510,"Label":"5503-107510 via BC Conventional Synapse from 107509 -> 107522","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107509,"TargetID":107522,"Directional":true}]},{"ID":8837,"SourceStructureID":5503,"TargetStructureID":107525,"Label":"5503-107525 via Ribbon Synapse from 60707 -> 107959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60707,"TargetID":107959,"Directional":true}]},{"ID":8838,"SourceStructureID":5503,"TargetStructureID":107957,"Label":"5503-107957 via Ribbon Synapse from 60707 -> 107958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60707,"TargetID":107958,"Directional":true}]},{"ID":8839,"SourceStructureID":5503,"TargetStructureID":107964,"Label":"5503-107964 via BC Conventional Synapse from 107963 -> 107965","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107963,"TargetID":107965,"Directional":true}]},{"ID":8840,"SourceStructureID":5503,"TargetStructureID":107966,"Label":"5503-107966 via Ribbon Synapse from 60710 -> 107967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60710,"TargetID":107967,"Directional":true}]},{"ID":8841,"SourceStructureID":5503,"TargetStructureID":107968,"Label":"5503-107968 via Ribbon Synapse from 60710 -> 107969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60710,"TargetID":107969,"Directional":true}]},{"ID":8842,"SourceStructureID":5503,"TargetStructureID":108011,"Label":"5503-108011 via Ribbon Synapse from 60722 -> 108013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60722,"TargetID":108013,"Directional":true}]},{"ID":8843,"SourceStructureID":5503,"TargetStructureID":108032,"Label":"5503-108032 via BC Conventional Synapse from 108030 -> 108033","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108030,"TargetID":108033,"Directional":true}]},{"ID":8844,"SourceStructureID":5503,"TargetStructureID":108257,"Label":"5503-108257 via Ribbon Synapse from 37957 -> 108259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37957,"TargetID":108259,"Directional":true}]},{"ID":8845,"SourceStructureID":5503,"TargetStructureID":108260,"Label":"5503-108260 via Ribbon Synapse from 37957 -> 108261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37957,"TargetID":108261,"Directional":true}]},{"ID":8846,"SourceStructureID":5503,"TargetStructureID":108426,"Label":"5503-108426 via Ribbon Synapse from 108422 -> 108427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108422,"TargetID":108427,"Directional":true}]},{"ID":8847,"SourceStructureID":5503,"TargetStructureID":108464,"Label":"5503-108464 via BC Conventional Synapse from 108460 -> 108511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108460,"TargetID":108511,"Directional":true}]},{"ID":8848,"SourceStructureID":5503,"TargetStructureID":108464,"Label":"5503-108464 via Ribbon Synapse from 60633 -> 108683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60633,"TargetID":108683,"Directional":true}]},{"ID":8849,"SourceStructureID":5503,"TargetStructureID":108485,"Label":"5503-108485 via Ribbon Synapse from 60635 -> 108686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60635,"TargetID":108686,"Directional":true}]},{"ID":8850,"SourceStructureID":5503,"TargetStructureID":108569,"Label":"5503-108569 via Ribbon Synapse from 60632 -> 108570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60632,"TargetID":108570,"Directional":true}]},{"ID":8851,"SourceStructureID":5503,"TargetStructureID":108684,"Label":"5503-108684 via Ribbon Synapse from 60635 -> 108685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60635,"TargetID":108685,"Directional":true}]},{"ID":8852,"SourceStructureID":5503,"TargetStructureID":108771,"Label":"5503-108771 via Ribbon Synapse from 36634 -> 108772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36634,"TargetID":108772,"Directional":true}]},{"ID":8853,"SourceStructureID":5503,"TargetStructureID":108787,"Label":"5503-108787 via Ribbon Synapse from 36637 -> 108925","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36637,"TargetID":108925,"Directional":true}]},{"ID":8854,"SourceStructureID":5503,"TargetStructureID":108826,"Label":"5503-108826 via Ribbon Synapse from 36639 -> 108827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36639,"TargetID":108827,"Directional":true}]},{"ID":8855,"SourceStructureID":5503,"TargetStructureID":108831,"Label":"5503-108831 via Ribbon Synapse from 36639 -> 108838","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36639,"TargetID":108838,"Directional":true}]},{"ID":8856,"SourceStructureID":5503,"TargetStructureID":108839,"Label":"5503-108839 via Ribbon Synapse from 36641 -> 108841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36641,"TargetID":108841,"Directional":true}]},{"ID":8857,"SourceStructureID":5503,"TargetStructureID":108856,"Label":"5503-108856 via BC Conventional Synapse from 108852 -> 108864","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108852,"TargetID":108864,"Directional":true}]},{"ID":8858,"SourceStructureID":5503,"TargetStructureID":108871,"Label":"5503-108871 via Ribbon Synapse from 36648 -> 109961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36648,"TargetID":109961,"Directional":true}]},{"ID":8859,"SourceStructureID":5503,"TargetStructureID":108923,"Label":"5503-108923 via Ribbon Synapse from 36637 -> 108924","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36637,"TargetID":108924,"Directional":true}]},{"ID":8860,"SourceStructureID":5503,"TargetStructureID":109693,"Label":"5503-109693 via BC Conventional Synapse from 109690 -> 109701","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109690,"TargetID":109701,"Directional":true}]},{"ID":8861,"SourceStructureID":5503,"TargetStructureID":109703,"Label":"5503-109703 via Ribbon Synapse from 60691 -> 109705","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60691,"TargetID":109705,"Directional":true}]},{"ID":8862,"SourceStructureID":5503,"TargetStructureID":109706,"Label":"5503-109706 via Ribbon Synapse from 60691 -> 109707, 109744 -> 109745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60691,"TargetID":109707,"Directional":true},{"SourceID":109744,"TargetID":109745,"Directional":true}]},{"ID":8863,"SourceStructureID":5503,"TargetStructureID":109746,"Label":"5503-109746 via Ribbon Synapse from 109744 -> 109747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109744,"TargetID":109747,"Directional":true}]},{"ID":8864,"SourceStructureID":5503,"TargetStructureID":109804,"Label":"5503-109804 via Ribbon Synapse from 60667 -> 109869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60667,"TargetID":109869,"Directional":true}]},{"ID":8865,"SourceStructureID":5503,"TargetStructureID":109870,"Label":"5503-109870 via Ribbon Synapse from 60667 -> 109871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60667,"TargetID":109871,"Directional":true}]},{"ID":8866,"SourceStructureID":5503,"TargetStructureID":109872,"Label":"5503-109872 via Ribbon Synapse from 60667 -> 109888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60667,"TargetID":109888,"Directional":true}]},{"ID":8867,"SourceStructureID":5503,"TargetStructureID":109893,"Label":"5503-109893 via Ribbon Synapse from 60687 -> 109912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60687,"TargetID":109912,"Directional":true}]},{"ID":8868,"SourceStructureID":5503,"TargetStructureID":109913,"Label":"5503-109913 via Ribbon Synapse from 60673 -> 109919","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60673,"TargetID":109919,"Directional":true}]},{"ID":8869,"SourceStructureID":5503,"TargetStructureID":109920,"Label":"5503-109920 via Ribbon Synapse from 60673 -> 109921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60673,"TargetID":109921,"Directional":true}]},{"ID":8870,"SourceStructureID":5503,"TargetStructureID":109965,"Label":"5503-109965 via Ribbon Synapse from 36645 -> 109966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36645,"TargetID":109966,"Directional":true}]},{"ID":8871,"SourceStructureID":5503,"TargetStructureID":109967,"Label":"5503-109967 via Ribbon Synapse from 36644 -> 109968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36644,"TargetID":109968,"Directional":true}]},{"ID":8872,"SourceStructureID":5503,"TargetStructureID":109977,"Label":"5503-109977 via BC Conventional Synapse from 109976 -> 109978","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109976,"TargetID":109978,"Directional":true}]},{"ID":8873,"SourceStructureID":5503,"TargetStructureID":109980,"Label":"5503-109980 via Ribbon Synapse from 109983 -> 109985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109983,"TargetID":109985,"Directional":true}]},{"ID":8874,"SourceStructureID":5503,"TargetStructureID":109986,"Label":"5503-109986 via Ribbon Synapse from 109983 -> 109987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109983,"TargetID":109987,"Directional":true}]},{"ID":8875,"SourceStructureID":5503,"TargetStructureID":109994,"Label":"5503-109994 via BC Conventional Synapse from 109993 -> 109995","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109993,"TargetID":109995,"Directional":true}]},{"ID":8876,"SourceStructureID":5503,"TargetStructureID":110007,"Label":"5503-110007 via Ribbon Synapse from 65001 -> 110008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65001,"TargetID":110008,"Directional":true}]},{"ID":8877,"SourceStructureID":5503,"TargetStructureID":110013,"Label":"5503-110013 via BC Conventional Synapse from 110012 -> 110014","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110012,"TargetID":110014,"Directional":true}]},{"ID":8878,"SourceStructureID":5503,"TargetStructureID":110019,"Label":"5503-110019 via BC Conventional Synapse from 110021 -> 110020","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110021,"TargetID":110020,"Directional":true}]},{"ID":8879,"SourceStructureID":5503,"TargetStructureID":110043,"Label":"5503-110043 via BC Conventional Synapse from 110042 -> 110044","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110042,"TargetID":110044,"Directional":true}]},{"ID":8880,"SourceStructureID":5503,"TargetStructureID":110050,"Label":"5503-110050 via Ribbon Synapse from 24861 -> 110051","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24861,"TargetID":110051,"Directional":true}]},{"ID":8881,"SourceStructureID":5503,"TargetStructureID":110062,"Label":"5503-110062 via Ribbon Synapse from 110061 -> 110063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110061,"TargetID":110063,"Directional":true}]},{"ID":8882,"SourceStructureID":5503,"TargetStructureID":110066,"Label":"5503-110066 via Ribbon Synapse from 36583 -> 110093","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36583,"TargetID":110093,"Directional":true}]},{"ID":8883,"SourceStructureID":5503,"TargetStructureID":110072,"Label":"5503-110072 via Ribbon Synapse from 110085 -> 110086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110085,"TargetID":110086,"Directional":true}]},{"ID":8884,"SourceStructureID":5503,"TargetStructureID":110078,"Label":"5503-110078 via BC Conventional Synapse from 110077 -> 110079","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110077,"TargetID":110079,"Directional":true}]},{"ID":8885,"SourceStructureID":5503,"TargetStructureID":110087,"Label":"5503-110087 via Ribbon Synapse from 110085 -> 110088","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110085,"TargetID":110088,"Directional":true}]},{"ID":8886,"SourceStructureID":5503,"TargetStructureID":110097,"Label":"5503-110097 via Ribbon Synapse from 61321 -> 110098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61321,"TargetID":110098,"Directional":true}]},{"ID":8887,"SourceStructureID":5503,"TargetStructureID":110110,"Label":"5503-110110 via Ribbon Synapse from 110109 -> 110111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110109,"TargetID":110111,"Directional":true}]},{"ID":8888,"SourceStructureID":5503,"TargetStructureID":110112,"Label":"5503-110112 via Ribbon Synapse from 110109 -> 110117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110109,"TargetID":110117,"Directional":true}]},{"ID":8889,"SourceStructureID":5503,"TargetStructureID":110129,"Label":"5503-110129 via Ribbon Synapse from 110113 -> 110130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110113,"TargetID":110130,"Directional":true}]},{"ID":8890,"SourceStructureID":5503,"TargetStructureID":110131,"Label":"5503-110131 via Ribbon Synapse from 110113 -> 110132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110113,"TargetID":110132,"Directional":true}]},{"ID":8891,"SourceStructureID":5503,"TargetStructureID":110157,"Label":"5503-110157 via Ribbon Synapse from 110153 -> 110158","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110153,"TargetID":110158,"Directional":true}]},{"ID":8892,"SourceStructureID":5503,"TargetStructureID":110159,"Label":"5503-110159 via Ribbon Synapse from 110153 -> 110162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110153,"TargetID":110162,"Directional":true}]},{"ID":8893,"SourceStructureID":5503,"TargetStructureID":110164,"Label":"5503-110164 via Ribbon Synapse from 110163 -> 110165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110163,"TargetID":110165,"Directional":true}]},{"ID":8894,"SourceStructureID":5503,"TargetStructureID":110247,"Label":"5503-110247 via Ribbon Synapse from 110245 -> 110250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110245,"TargetID":110250,"Directional":true}]},{"ID":8895,"SourceStructureID":5503,"TargetStructureID":110248,"Label":"5503-110248 via Ribbon Synapse from 110245 -> 110249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110245,"TargetID":110249,"Directional":true}]},{"ID":8896,"SourceStructureID":5503,"TargetStructureID":110281,"Label":"5503-110281 via Ribbon Synapse from 36564 -> 110286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36564,"TargetID":110286,"Directional":true}]},{"ID":8897,"SourceStructureID":5503,"TargetStructureID":110282,"Label":"5503-110282 via Ribbon Synapse from 36564 -> 110285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36564,"TargetID":110285,"Directional":true}]},{"ID":8898,"SourceStructureID":5503,"TargetStructureID":110354,"Label":"5503-110354 via Ribbon Synapse from 110330 -> 110365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110330,"TargetID":110365,"Directional":true}]},{"ID":8899,"SourceStructureID":5503,"TargetStructureID":110360,"Label":"5503-110360 via Ribbon Synapse from 110330 -> 110363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110330,"TargetID":110363,"Directional":true}]},{"ID":8900,"SourceStructureID":5503,"TargetStructureID":110392,"Label":"5503-110392 via Ribbon Synapse from 110343 -> 110393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110343,"TargetID":110393,"Directional":true}]},{"ID":8901,"SourceStructureID":5503,"TargetStructureID":110403,"Label":"5503-110403 via Ribbon Synapse from 110400 -> 110405","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110400,"TargetID":110405,"Directional":true}]},{"ID":8902,"SourceStructureID":5503,"TargetStructureID":110406,"Label":"5503-110406 via Ribbon Synapse from 110400 -> 110407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110400,"TargetID":110407,"Directional":true}]},{"ID":8903,"SourceStructureID":5503,"TargetStructureID":110410,"Label":"5503-110410 via Ribbon Synapse from 110400 -> 110411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110400,"TargetID":110411,"Directional":true}]},{"ID":8904,"SourceStructureID":5503,"TargetStructureID":110444,"Label":"5503-110444 via BC Conventional Synapse from 110446 -> 110445","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110446,"TargetID":110445,"Directional":true}]},{"ID":8905,"SourceStructureID":5503,"TargetStructureID":110449,"Label":"5503-110449 via Ribbon Synapse from 60782 -> 110456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60782,"TargetID":110456,"Directional":true}]},{"ID":8906,"SourceStructureID":5503,"TargetStructureID":110457,"Label":"5503-110457 via Ribbon Synapse from 52806 -> 110458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52806,"TargetID":110458,"Directional":true}]},{"ID":8907,"SourceStructureID":5503,"TargetStructureID":110459,"Label":"5503-110459 via Ribbon Synapse from 52806 -> 110460","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52806,"TargetID":110460,"Directional":true}]},{"ID":8908,"SourceStructureID":5503,"TargetStructureID":110463,"Label":"5503-110463 via BC Conventional Synapse from 110462 -> 110464","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110462,"TargetID":110464,"Directional":true}]},{"ID":8909,"SourceStructureID":5503,"TargetStructureID":110477,"Label":"5503-110477 via Ribbon Synapse from 110461 -> 110478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110461,"TargetID":110478,"Directional":true}]},{"ID":8910,"SourceStructureID":5503,"TargetStructureID":110479,"Label":"5503-110479 via Ribbon Synapse from 110461 -> 110480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110461,"TargetID":110480,"Directional":true}]},{"ID":8911,"SourceStructureID":5503,"TargetStructureID":110488,"Label":"5503-110488 via BC Conventional Synapse from 110487 -> 110489","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110487,"TargetID":110489,"Directional":true}]},{"ID":8912,"SourceStructureID":5503,"TargetStructureID":110490,"Label":"5503-110490 via BC Conventional Synapse from 110486 -> 110491","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110486,"TargetID":110491,"Directional":true}]},{"ID":8913,"SourceStructureID":5503,"TargetStructureID":111474,"Label":"5503-111474 via Ribbon Synapse from 52438 -> 111475","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52438,"TargetID":111475,"Directional":true}]},{"ID":8914,"SourceStructureID":5504,"TargetStructureID":5405,"Label":"5504-5405 via Ribbon Synapse from 11121 -> 11122","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11121,"TargetID":11122,"Directional":true}]},{"ID":8915,"SourceStructureID":5504,"TargetStructureID":8035,"Label":"5504-8035 via Ribbon Synapse from 25014 -> 25018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25014,"TargetID":25018,"Directional":true}]},{"ID":8916,"SourceStructureID":5511,"TargetStructureID":1620,"Label":"5511-1620 via Ribbon Synapse from 17022 -> 16998, 17025 -> 17026, 21965 -> 16998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17022,"TargetID":16998,"Directional":true},{"SourceID":17025,"TargetID":17026,"Directional":true},{"SourceID":21965,"TargetID":16998,"Directional":true}]},{"ID":8917,"SourceStructureID":5511,"TargetStructureID":12897,"Label":"5511-12897 via Ribbon Synapse from 21972 -> 65175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21972,"TargetID":65175,"Directional":true}]},{"ID":8918,"SourceStructureID":5511,"TargetStructureID":20608,"Label":"5511-20608 via Ribbon Synapse from 20609 -> 20611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20609,"TargetID":20611,"Directional":true}]},{"ID":8919,"SourceStructureID":5513,"TargetStructureID":606,"Label":"5513-606 via Ribbon Synapse from 30666 -> 30667, 30668 -> 98784, 30670 -> 30671, 47580 -> 47581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30666,"TargetID":30667,"Directional":true},{"SourceID":30668,"TargetID":98784,"Directional":true},{"SourceID":30670,"TargetID":30671,"Directional":true},{"SourceID":47580,"TargetID":47581,"Directional":true}]},{"ID":8920,"SourceStructureID":5513,"TargetStructureID":911,"Label":"5513-911 via Ribbon Synapse from 35136 -> 35134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35136,"TargetID":35134,"Directional":true}]},{"ID":8921,"SourceStructureID":5513,"TargetStructureID":7594,"Label":"5513-7594 via Ribbon Synapse from 25123 -> 25122, 29590 -> 64855, 29603 -> 64853, 29604 -> 64854, 118216 -> 25118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25123,"TargetID":25122,"Directional":true},{"SourceID":29590,"TargetID":64855,"Directional":true},{"SourceID":29603,"TargetID":64853,"Directional":true},{"SourceID":29604,"TargetID":64854,"Directional":true},{"SourceID":118216,"TargetID":25118,"Directional":true}]},{"ID":8922,"SourceStructureID":5513,"TargetStructureID":9769,"Label":"5513-9769 via Ribbon Synapse from 12347 -> 12340, 46974 -> 12340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12347,"TargetID":12340,"Directional":true},{"SourceID":46974,"TargetID":12340,"Directional":true}]},{"ID":8923,"SourceStructureID":5513,"TargetStructureID":32862,"Label":"5513-32862 via Ribbon Synapse from 32870 -> 32869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32870,"TargetID":32869,"Directional":true}]},{"ID":8924,"SourceStructureID":5513,"TargetStructureID":33117,"Label":"5513-33117 via Ribbon Synapse from 29614 -> 33123, 33122 -> 33121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29614,"TargetID":33123,"Directional":true},{"SourceID":33122,"TargetID":33121,"Directional":true}]},{"ID":8925,"SourceStructureID":5513,"TargetStructureID":35138,"Label":"5513-35138 via Ribbon Synapse from 29625 -> 35141","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29625,"TargetID":35141,"Directional":true}]},{"ID":8926,"SourceStructureID":5513,"TargetStructureID":37466,"Label":"5513-37466 via Ribbon Synapse from 37469 -> 37468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37469,"TargetID":37468,"Directional":true}]},{"ID":8927,"SourceStructureID":5513,"TargetStructureID":87162,"Label":"5513-87162 via Ribbon Synapse from 87171 -> 87164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87171,"TargetID":87164,"Directional":true}]},{"ID":8928,"SourceStructureID":5513,"TargetStructureID":99513,"Label":"5513-99513 via Ribbon Synapse from 29612 -> 129631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29612,"TargetID":129631,"Directional":true}]},{"ID":8929,"SourceStructureID":5514,"TargetStructureID":18693,"Label":"5514-18693 via Ribbon Synapse from 121564 -> 121563","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121564,"TargetID":121563,"Directional":true}]},{"ID":8930,"SourceStructureID":5514,"TargetStructureID":55366,"Label":"5514-55366 via Ribbon Synapse from 55380 -> 55376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55380,"TargetID":55376,"Directional":true}]},{"ID":8931,"SourceStructureID":5514,"TargetStructureID":105635,"Label":"5514-105635 via Ribbon Synapse from 50698 -> 105637","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50698,"TargetID":105637,"Directional":true}]},{"ID":8932,"SourceStructureID":5515,"TargetStructureID":525,"Label":"5515-525 via Ribbon Synapse from 11333 -> 11332, 11391 -> 6246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11333,"TargetID":11332,"Directional":true},{"SourceID":11391,"TargetID":6246,"Directional":true}]},{"ID":8933,"SourceStructureID":5515,"TargetStructureID":8576,"Label":"5515-8576 via Ribbon Synapse from 11282 -> 69045, 69040 -> 69039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11282,"TargetID":69045,"Directional":true},{"SourceID":69040,"TargetID":69039,"Directional":true}]},{"ID":8934,"SourceStructureID":5515,"TargetStructureID":8720,"Label":"5515-8720 via Ribbon Synapse from 60110 -> 60108","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60110,"TargetID":60108,"Directional":true}]},{"ID":8935,"SourceStructureID":5515,"TargetStructureID":18282,"Label":"5515-18282 via Ribbon Synapse from 31441 -> 31440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31441,"TargetID":31440,"Directional":true}]},{"ID":8936,"SourceStructureID":5515,"TargetStructureID":40480,"Label":"5515-40480 via Ribbon Synapse from 56512 -> 59938","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56512,"TargetID":59938,"Directional":true}]},{"ID":8937,"SourceStructureID":5515,"TargetStructureID":66958,"Label":"5515-66958 via Ribbon Synapse from 70063 -> 70061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70063,"TargetID":70061,"Directional":true}]},{"ID":8938,"SourceStructureID":5515,"TargetStructureID":69049,"Label":"5515-69049 via Ribbon Synapse from 69053 -> 69052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69053,"TargetID":69052,"Directional":true}]},{"ID":8939,"SourceStructureID":5515,"TargetStructureID":132162,"Label":"5515-132162 via Ribbon Synapse from 132165 -> 132167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132165,"TargetID":132167,"Directional":true}]},{"ID":8940,"SourceStructureID":5515,"TargetStructureID":136742,"Label":"5515-136742 via BC Conventional Synapse from 119130 -> 136750","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119130,"TargetID":136750,"Directional":true}]},{"ID":8941,"SourceStructureID":5516,"TargetStructureID":5345,"Label":"5516-5345 via Ribbon Synapse from 50086 -> 88853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50086,"TargetID":88853,"Directional":true}]},{"ID":8942,"SourceStructureID":5516,"TargetStructureID":7594,"Label":"5516-7594 via Ribbon Synapse from 50031 -> 7669, 50078 -> 7671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50031,"TargetID":7669,"Directional":true},{"SourceID":50078,"TargetID":7671,"Directional":true}]},{"ID":8943,"SourceStructureID":5516,"TargetStructureID":9769,"Label":"5516-9769 via Ribbon Synapse from 148194 -> 148195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148194,"TargetID":148195,"Directional":true}]},{"ID":8944,"SourceStructureID":5516,"TargetStructureID":40018,"Label":"5516-40018 via Ribbon Synapse from 40028 -> 40027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40028,"TargetID":40027,"Directional":true}]},{"ID":8945,"SourceStructureID":5516,"TargetStructureID":68153,"Label":"5516-68153 via Ribbon Synapse from 50112 -> 70155, 50113 -> 96580, 70167 -> 70161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50112,"TargetID":70155,"Directional":true},{"SourceID":50113,"TargetID":96580,"Directional":true},{"SourceID":70167,"TargetID":70161,"Directional":true}]},{"ID":8946,"SourceStructureID":5516,"TargetStructureID":69162,"Label":"5516-69162 via Ribbon Synapse from 50113 -> 96581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50113,"TargetID":96581,"Directional":true}]},{"ID":8947,"SourceStructureID":5517,"TargetStructureID":598,"Label":"5517-598 via Ribbon Synapse from 49371 -> 6319","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49371,"TargetID":6319,"Directional":true}]},{"ID":8948,"SourceStructureID":5517,"TargetStructureID":1610,"Label":"5517-1610 via Ribbon Synapse from 96074 -> 96075","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96074,"TargetID":96075,"Directional":true}]},{"ID":8949,"SourceStructureID":5517,"TargetStructureID":5509,"Label":"5517-5509 via Ribbon Synapse from 49404 -> 122392, 49405 -> 121911","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49404,"TargetID":122392,"Directional":true},{"SourceID":49405,"TargetID":121911,"Directional":true}]},{"ID":8950,"SourceStructureID":5517,"TargetStructureID":7594,"Label":"5517-7594 via Ribbon Synapse from 25105 -> 25103, 96065 -> 25115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25105,"TargetID":25103,"Directional":true},{"SourceID":96065,"TargetID":25115,"Directional":true}]},{"ID":8951,"SourceStructureID":5517,"TargetStructureID":18693,"Label":"5517-18693 via Ribbon Synapse from 18703 -> 18702, 23502 -> 23503, 96081 -> 96533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18703,"TargetID":18702,"Directional":true},{"SourceID":23502,"TargetID":23503,"Directional":true},{"SourceID":96081,"TargetID":96533,"Directional":true}]},{"ID":8952,"SourceStructureID":5517,"TargetStructureID":30567,"Label":"5517-30567 via Ribbon Synapse from 30659 -> 30658","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30659,"TargetID":30658,"Directional":true}]},{"ID":8953,"SourceStructureID":5517,"TargetStructureID":40018,"Label":"5517-40018 via Ribbon Synapse from 40021 -> 40020, 40025 -> 40024","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40021,"TargetID":40020,"Directional":true},{"SourceID":40025,"TargetID":40024,"Directional":true}]},{"ID":8954,"SourceStructureID":5517,"TargetStructureID":53344,"Label":"5517-53344 via Ribbon Synapse from 53343 -> 53345","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53343,"TargetID":53345,"Directional":true}]},{"ID":8955,"SourceStructureID":5517,"TargetStructureID":53395,"Label":"5517-53395 via Ribbon Synapse from 49475 -> 53397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49475,"TargetID":53397,"Directional":true}]},{"ID":8956,"SourceStructureID":5517,"TargetStructureID":58592,"Label":"5517-58592 via Ribbon Synapse from 49367 -> 58631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49367,"TargetID":58631,"Directional":true}]},{"ID":8957,"SourceStructureID":5517,"TargetStructureID":68277,"Label":"5517-68277 via Ribbon Synapse from 49364 -> 68279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49364,"TargetID":68279,"Directional":true}]},{"ID":8958,"SourceStructureID":5517,"TargetStructureID":82229,"Label":"5517-82229 via Ribbon Synapse from 49359 -> 82230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49359,"TargetID":82230,"Directional":true}]},{"ID":8959,"SourceStructureID":5517,"TargetStructureID":87972,"Label":"5517-87972 via Ribbon Synapse from 49272 -> 88011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49272,"TargetID":88011,"Directional":true}]},{"ID":8960,"SourceStructureID":5517,"TargetStructureID":96178,"Label":"5517-96178 via BC Conventional Synapse from 96177 -> 96179","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96177,"TargetID":96179,"Directional":true}]},{"ID":8961,"SourceStructureID":5517,"TargetStructureID":96217,"Label":"5517-96217 via BC Conventional Synapse from 96305 -> 96306","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96305,"TargetID":96306,"Directional":true}]},{"ID":8962,"SourceStructureID":5517,"TargetStructureID":96217,"Label":"5517-96217 via Ribbon Synapse from 96113 -> 96218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96113,"TargetID":96218,"Directional":true}]},{"ID":8963,"SourceStructureID":5517,"TargetStructureID":96323,"Label":"5517-96323 via Ribbon Synapse from 96109 -> 96324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96109,"TargetID":96324,"Directional":true}]},{"ID":8964,"SourceStructureID":5517,"TargetStructureID":96335,"Label":"5517-96335 via BC Conventional Synapse from 96330 -> 96336","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96330,"TargetID":96336,"Directional":true}]},{"ID":8965,"SourceStructureID":5517,"TargetStructureID":109799,"Label":"5517-109799 via BC Conventional Synapse from 119235 -> 119236","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119235,"TargetID":119236,"Directional":true}]},{"ID":8966,"SourceStructureID":5517,"TargetStructureID":110367,"Label":"5517-110367 via Cistern Pre from 135806 -> 135805","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":135806,"TargetID":135805,"Directional":true}]},{"ID":8967,"SourceStructureID":5519,"TargetStructureID":46741,"Label":"5519-46741 via Ribbon Synapse from 46740 -> 46742, 46745 -> 46743, 46747 -> 46744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46740,"TargetID":46742,"Directional":true},{"SourceID":46745,"TargetID":46743,"Directional":true},{"SourceID":46747,"TargetID":46744,"Directional":true}]},{"ID":8968,"SourceStructureID":5519,"TargetStructureID":70501,"Label":"5519-70501 via Ribbon Synapse from 46746 -> 70502, 70503 -> 70502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46746,"TargetID":70502,"Directional":true},{"SourceID":70503,"TargetID":70502,"Directional":true}]},{"ID":8969,"SourceStructureID":5520,"TargetStructureID":5499,"Label":"5520-5499 via Adherens from 105461 -> 105462","Type":"Adherens","Directional":true,"Links":[{"SourceID":105461,"TargetID":105462,"Directional":true}]},{"ID":8970,"SourceStructureID":5520,"TargetStructureID":5520,"Label":"5520-5520 via Cistern Pre from 37930 -> 37931","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37930,"TargetID":37931,"Directional":true}]},{"ID":8971,"SourceStructureID":5520,"TargetStructureID":7897,"Label":"5520-7897 via Ribbon Synapse from 119750 -> 55720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119750,"TargetID":55720,"Directional":true}]},{"ID":8972,"SourceStructureID":5520,"TargetStructureID":8575,"Label":"5520-8575 via Ribbon Synapse from 62998 -> 62997","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62998,"TargetID":62997,"Directional":true}]},{"ID":8973,"SourceStructureID":5520,"TargetStructureID":136236,"Label":"5520-136236 via Ribbon Synapse from 97903 -> 136237","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97903,"TargetID":136237,"Directional":true}]},{"ID":8974,"SourceStructureID":5522,"TargetStructureID":18282,"Label":"5522-18282 via Ribbon Synapse from 43504 -> 43494, 109815 -> 43494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43504,"TargetID":43494,"Directional":true},{"SourceID":109815,"TargetID":43494,"Directional":true}]},{"ID":8975,"SourceStructureID":5522,"TargetStructureID":31024,"Label":"5522-31024 via Ribbon Synapse from 63128 -> 63130, 64119 -> 31363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63128,"TargetID":63130,"Directional":true},{"SourceID":64119,"TargetID":31363,"Directional":true}]},{"ID":8976,"SourceStructureID":5522,"TargetStructureID":32804,"Label":"5522-32804 via Ribbon Synapse from 43499 -> 32809, 43500 -> 32807, 64127 -> 32806, 64137 -> 64138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43499,"TargetID":32809,"Directional":true},{"SourceID":43500,"TargetID":32807,"Directional":true},{"SourceID":64127,"TargetID":32806,"Directional":true},{"SourceID":64137,"TargetID":64138,"Directional":true}]},{"ID":8977,"SourceStructureID":5522,"TargetStructureID":63115,"Label":"5522-63115 via Ribbon Synapse from 63118 -> 63119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63118,"TargetID":63119,"Directional":true}]},{"ID":8978,"SourceStructureID":5522,"TargetStructureID":69554,"Label":"5522-69554 via Ribbon Synapse from 63180 -> 69560, 63181 -> 69559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63180,"TargetID":69560,"Directional":true},{"SourceID":63181,"TargetID":69559,"Directional":true}]},{"ID":8979,"SourceStructureID":5522,"TargetStructureID":75272,"Label":"5522-75272 via Ribbon Synapse from 64320 -> 75298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64320,"TargetID":75298,"Directional":true}]},{"ID":8980,"SourceStructureID":5528,"TargetStructureID":606,"Label":"5528-606 via Ribbon Synapse from 54722 -> 54723, 107105 -> 53568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54722,"TargetID":54723,"Directional":true},{"SourceID":107105,"TargetID":53568,"Directional":true}]},{"ID":8981,"SourceStructureID":5528,"TargetStructureID":7225,"Label":"5528-7225 via Ribbon Synapse from 94517 -> 10029","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94517,"TargetID":10029,"Directional":true}]},{"ID":8982,"SourceStructureID":5528,"TargetStructureID":7576,"Label":"5528-7576 via BC Conventional Synapse from 55925 -> 55924, 95184 -> 95183, 95196 -> 55087","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55925,"TargetID":55924,"Directional":true},{"SourceID":95184,"TargetID":95183,"Directional":true},{"SourceID":95196,"TargetID":55087,"Directional":true}]},{"ID":8983,"SourceStructureID":5528,"TargetStructureID":7576,"Label":"5528-7576 via Ribbon Synapse from 8265 -> 54809, 8272 -> 55043, 54873 -> 54870, 55024 -> 55025, 55047 -> 55048, 55086 -> 55087, 95637 -> 95639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8265,"TargetID":54809,"Directional":true},{"SourceID":8272,"TargetID":55043,"Directional":true},{"SourceID":54873,"TargetID":54870,"Directional":true},{"SourceID":55024,"TargetID":55025,"Directional":true},{"SourceID":55047,"TargetID":55048,"Directional":true},{"SourceID":55086,"TargetID":55087,"Directional":true},{"SourceID":95637,"TargetID":95639,"Directional":true}]},{"ID":8984,"SourceStructureID":5528,"TargetStructureID":7594,"Label":"5528-7594 via Ribbon Synapse from 95172 -> 95174, 113943 -> 113944","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95172,"TargetID":95174,"Directional":true},{"SourceID":113943,"TargetID":113944,"Directional":true}]},{"ID":8985,"SourceStructureID":5528,"TargetStructureID":33217,"Label":"5528-33217 via Ribbon Synapse from 33237 -> 33232","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33237,"TargetID":33232,"Directional":true}]},{"ID":8986,"SourceStructureID":5528,"TargetStructureID":43716,"Label":"5528-43716 via Ribbon Synapse from 95172 -> 95173","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95172,"TargetID":95173,"Directional":true}]},{"ID":8987,"SourceStructureID":5528,"TargetStructureID":55034,"Label":"5528-55034 via Ribbon Synapse from 55035 -> 55036, 94721 -> 94724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55035,"TargetID":55036,"Directional":true},{"SourceID":94721,"TargetID":94724,"Directional":true}]},{"ID":8988,"SourceStructureID":5528,"TargetStructureID":60243,"Label":"5528-60243 via Ribbon Synapse from 60248 -> 96183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60248,"TargetID":96183,"Directional":true}]},{"ID":8989,"SourceStructureID":5528,"TargetStructureID":64414,"Label":"5528-64414 via Ribbon Synapse from 93944 -> 93949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93944,"TargetID":93949,"Directional":true}]},{"ID":8990,"SourceStructureID":5528,"TargetStructureID":68793,"Label":"5528-68793 via Ribbon Synapse from 68792 -> 68794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68792,"TargetID":68794,"Directional":true}]},{"ID":8991,"SourceStructureID":5528,"TargetStructureID":77329,"Label":"5528-77329 via Ribbon Synapse from 94401 -> 94402","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94401,"TargetID":94402,"Directional":true}]},{"ID":8992,"SourceStructureID":5528,"TargetStructureID":77920,"Label":"5528-77920 via Ribbon Synapse from 93944 -> 93948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93944,"TargetID":93948,"Directional":true}]},{"ID":8993,"SourceStructureID":5528,"TargetStructureID":93523,"Label":"5528-93523 via BC Conventional Synapse from 93526 -> 93527","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93526,"TargetID":93527,"Directional":true}]},{"ID":8994,"SourceStructureID":5528,"TargetStructureID":93523,"Label":"5528-93523 via Cistern Pre from 36390 -> 93525","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":36390,"TargetID":93525,"Directional":true}]},{"ID":8995,"SourceStructureID":5528,"TargetStructureID":93565,"Label":"5528-93565 via Ribbon Synapse from 93567 -> 93566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93567,"TargetID":93566,"Directional":true}]},{"ID":8996,"SourceStructureID":5528,"TargetStructureID":93568,"Label":"5528-93568 via Ribbon Synapse from 36394 -> 93569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36394,"TargetID":93569,"Directional":true}]},{"ID":8997,"SourceStructureID":5528,"TargetStructureID":93571,"Label":"5528-93571 via Cistern Pre from 93570 -> 93572","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":93570,"TargetID":93572,"Directional":true}]},{"ID":8998,"SourceStructureID":5528,"TargetStructureID":93945,"Label":"5528-93945 via Ribbon Synapse from 93944 -> 93946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93944,"TargetID":93946,"Directional":true}]},{"ID":8999,"SourceStructureID":5528,"TargetStructureID":93950,"Label":"5528-93950 via BC Conventional Synapse from 93952 -> 93951","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93952,"TargetID":93951,"Directional":true}]},{"ID":9000,"SourceStructureID":5528,"TargetStructureID":93966,"Label":"5528-93966 via Ribbon Synapse from 93956 -> 93967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93956,"TargetID":93967,"Directional":true}]},{"ID":9001,"SourceStructureID":5528,"TargetStructureID":93968,"Label":"5528-93968 via Ribbon Synapse from 93956 -> 93969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93956,"TargetID":93969,"Directional":true}]},{"ID":9002,"SourceStructureID":5528,"TargetStructureID":93982,"Label":"5528-93982 via BC Conventional Synapse from 93983 -> 93984","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93983,"TargetID":93984,"Directional":true}]},{"ID":9003,"SourceStructureID":5528,"TargetStructureID":93993,"Label":"5528-93993 via Ribbon Synapse from 93582 -> 93994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93582,"TargetID":93994,"Directional":true}]},{"ID":9004,"SourceStructureID":5528,"TargetStructureID":94003,"Label":"5528-94003 via Ribbon Synapse from 93582 -> 94004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93582,"TargetID":94004,"Directional":true}]},{"ID":9005,"SourceStructureID":5528,"TargetStructureID":94015,"Label":"5528-94015 via Ribbon Synapse from 93585 -> 94017","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93585,"TargetID":94017,"Directional":true}]},{"ID":9006,"SourceStructureID":5528,"TargetStructureID":94021,"Label":"5528-94021 via BC Conventional Synapse from 94020 -> 94022","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94020,"TargetID":94022,"Directional":true}]},{"ID":9007,"SourceStructureID":5528,"TargetStructureID":94029,"Label":"5528-94029 via Ribbon Synapse from 93601 -> 94030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93601,"TargetID":94030,"Directional":true}]},{"ID":9008,"SourceStructureID":5528,"TargetStructureID":94038,"Label":"5528-94038 via Ribbon Synapse from 94040 -> 94041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94040,"TargetID":94041,"Directional":true}]},{"ID":9009,"SourceStructureID":5528,"TargetStructureID":94039,"Label":"5528-94039 via Ribbon Synapse from 94040 -> 94042","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94040,"TargetID":94042,"Directional":true}]},{"ID":9010,"SourceStructureID":5528,"TargetStructureID":94044,"Label":"5528-94044 via Ribbon Synapse from 94043 -> 94045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94043,"TargetID":94045,"Directional":true}]},{"ID":9011,"SourceStructureID":5528,"TargetStructureID":94046,"Label":"5528-94046 via Ribbon Synapse from 94043 -> 94047","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94043,"TargetID":94047,"Directional":true}]},{"ID":9012,"SourceStructureID":5528,"TargetStructureID":94123,"Label":"5528-94123 via BC Conventional Synapse from 94125 -> 94124","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94125,"TargetID":94124,"Directional":true}]},{"ID":9013,"SourceStructureID":5528,"TargetStructureID":94123,"Label":"5528-94123 via Ribbon Synapse from 94134 -> 94135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94134,"TargetID":94135,"Directional":true}]},{"ID":9014,"SourceStructureID":5528,"TargetStructureID":94127,"Label":"5528-94127 via Ribbon Synapse from 94126 -> 94128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94126,"TargetID":94128,"Directional":true}]},{"ID":9015,"SourceStructureID":5528,"TargetStructureID":94155,"Label":"5528-94155 via Ribbon Synapse from 94154 -> 94156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94154,"TargetID":94156,"Directional":true}]},{"ID":9016,"SourceStructureID":5528,"TargetStructureID":94161,"Label":"5528-94161 via Ribbon Synapse from 94160 -> 94162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94160,"TargetID":94162,"Directional":true}]},{"ID":9017,"SourceStructureID":5528,"TargetStructureID":94194,"Label":"5528-94194 via BC Conventional Synapse from 94275 -> 94274","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94275,"TargetID":94274,"Directional":true}]},{"ID":9018,"SourceStructureID":5528,"TargetStructureID":94262,"Label":"5528-94262 via Ribbon Synapse from 94261 -> 94265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94261,"TargetID":94265,"Directional":true}]},{"ID":9019,"SourceStructureID":5528,"TargetStructureID":94297,"Label":"5528-94297 via Ribbon Synapse from 94304 -> 94310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94304,"TargetID":94310,"Directional":true}]},{"ID":9020,"SourceStructureID":5528,"TargetStructureID":94303,"Label":"5528-94303 via Ribbon Synapse from 94304 -> 94305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94304,"TargetID":94305,"Directional":true}]},{"ID":9021,"SourceStructureID":5528,"TargetStructureID":94309,"Label":"5528-94309 via BC Conventional Synapse from 94308 -> 94311","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94308,"TargetID":94311,"Directional":true}]},{"ID":9022,"SourceStructureID":5528,"TargetStructureID":94353,"Label":"5528-94353 via Ribbon Synapse from 94352 -> 94377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94352,"TargetID":94377,"Directional":true}]},{"ID":9023,"SourceStructureID":5528,"TargetStructureID":94381,"Label":"5528-94381 via Ribbon Synapse from 94380 -> 94382","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94380,"TargetID":94382,"Directional":true}]},{"ID":9024,"SourceStructureID":5528,"TargetStructureID":94403,"Label":"5528-94403 via Ribbon Synapse from 94401 -> 94404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94401,"TargetID":94404,"Directional":true}]},{"ID":9025,"SourceStructureID":5528,"TargetStructureID":94409,"Label":"5528-94409 via Ribbon Synapse from 91643 -> 94410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91643,"TargetID":94410,"Directional":true}]},{"ID":9026,"SourceStructureID":5528,"TargetStructureID":94428,"Label":"5528-94428 via Ribbon Synapse from 84674 -> 94429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84674,"TargetID":94429,"Directional":true}]},{"ID":9027,"SourceStructureID":5528,"TargetStructureID":94430,"Label":"5528-94430 via BC Conventional Synapse from 94431 -> 94432","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94431,"TargetID":94432,"Directional":true}]},{"ID":9028,"SourceStructureID":5528,"TargetStructureID":94433,"Label":"5528-94433 via BC Conventional Synapse from 94435 -> 94434","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94435,"TargetID":94434,"Directional":true}]},{"ID":9029,"SourceStructureID":5528,"TargetStructureID":94479,"Label":"5528-94479 via BC Conventional Synapse from 94510 -> 94511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94510,"TargetID":94511,"Directional":true}]},{"ID":9030,"SourceStructureID":5528,"TargetStructureID":94479,"Label":"5528-94479 via Ribbon Synapse from 94484 -> 94496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94484,"TargetID":94496,"Directional":true}]},{"ID":9031,"SourceStructureID":5528,"TargetStructureID":94482,"Label":"5528-94482 via Ribbon Synapse from 55024 -> 94483","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55024,"TargetID":94483,"Directional":true}]},{"ID":9032,"SourceStructureID":5528,"TargetStructureID":94485,"Label":"5528-94485 via Ribbon Synapse from 94484 -> 94495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94484,"TargetID":94495,"Directional":true}]},{"ID":9033,"SourceStructureID":5528,"TargetStructureID":94518,"Label":"5528-94518 via Ribbon Synapse from 94517 -> 94522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94517,"TargetID":94522,"Directional":true}]},{"ID":9034,"SourceStructureID":5528,"TargetStructureID":94523,"Label":"5528-94523 via Ribbon Synapse from 94517 -> 94524","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94517,"TargetID":94524,"Directional":true}]},{"ID":9035,"SourceStructureID":5528,"TargetStructureID":94719,"Label":"5528-94719 via Ribbon Synapse from 94718 -> 94720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94718,"TargetID":94720,"Directional":true}]},{"ID":9036,"SourceStructureID":5528,"TargetStructureID":94722,"Label":"5528-94722 via Ribbon Synapse from 94721 -> 94723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94721,"TargetID":94723,"Directional":true}]},{"ID":9037,"SourceStructureID":5528,"TargetStructureID":94729,"Label":"5528-94729 via Ribbon Synapse from 94730 -> 94731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94730,"TargetID":94731,"Directional":true}]},{"ID":9038,"SourceStructureID":5528,"TargetStructureID":94733,"Label":"5528-94733 via Ribbon Synapse from 94732 -> 94734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94732,"TargetID":94734,"Directional":true}]},{"ID":9039,"SourceStructureID":5528,"TargetStructureID":94741,"Label":"5528-94741 via Ribbon Synapse from 94792 -> 94793, 94792 -> 94795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94792,"TargetID":94793,"Directional":true},{"SourceID":94792,"TargetID":94795,"Directional":true}]},{"ID":9040,"SourceStructureID":5528,"TargetStructureID":94827,"Label":"5528-94827 via BC Conventional Synapse from 94829 -> 94828","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94829,"TargetID":94828,"Directional":true}]},{"ID":9041,"SourceStructureID":5528,"TargetStructureID":94867,"Label":"5528-94867 via Ribbon Synapse from 8256 -> 95061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8256,"TargetID":95061,"Directional":true}]},{"ID":9042,"SourceStructureID":5528,"TargetStructureID":94870,"Label":"5528-94870 via Ribbon Synapse from 8255 -> 95055","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8255,"TargetID":95055,"Directional":true}]},{"ID":9043,"SourceStructureID":5528,"TargetStructureID":95059,"Label":"5528-95059 via Ribbon Synapse from 8256 -> 95060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8256,"TargetID":95060,"Directional":true}]},{"ID":9044,"SourceStructureID":5528,"TargetStructureID":95069,"Label":"5528-95069 via Ribbon Synapse from 68792 -> 95087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68792,"TargetID":95087,"Directional":true}]},{"ID":9045,"SourceStructureID":5528,"TargetStructureID":95131,"Label":"5528-95131 via Ribbon Synapse from 95132 -> 95133, 95141 -> 95142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95132,"TargetID":95133,"Directional":true},{"SourceID":95141,"TargetID":95142,"Directional":true}]},{"ID":9046,"SourceStructureID":5528,"TargetStructureID":95134,"Label":"5528-95134 via Ribbon Synapse from 95132 -> 95135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95132,"TargetID":95135,"Directional":true}]},{"ID":9047,"SourceStructureID":5528,"TargetStructureID":95166,"Label":"5528-95166 via Ribbon Synapse from 95165 -> 95169","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95165,"TargetID":95169,"Directional":true}]},{"ID":9048,"SourceStructureID":5528,"TargetStructureID":95167,"Label":"5528-95167 via Ribbon Synapse from 95165 -> 95168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95165,"TargetID":95168,"Directional":true}]},{"ID":9049,"SourceStructureID":5528,"TargetStructureID":95187,"Label":"5528-95187 via BC Conventional Synapse from 95189 -> 95188","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95189,"TargetID":95188,"Directional":true}]},{"ID":9050,"SourceStructureID":5528,"TargetStructureID":95195,"Label":"5528-95195 via Ribbon Synapse from 55086 -> 95464, 95637 -> 95638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55086,"TargetID":95464,"Directional":true},{"SourceID":95637,"TargetID":95638,"Directional":true}]},{"ID":9051,"SourceStructureID":5528,"TargetStructureID":95435,"Label":"5528-95435 via Ribbon Synapse from 95200 -> 95437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95200,"TargetID":95437,"Directional":true}]},{"ID":9052,"SourceStructureID":5528,"TargetStructureID":95440,"Label":"5528-95440 via Ribbon Synapse from 95200 -> 95453, 95462 -> 95463","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95200,"TargetID":95453,"Directional":true},{"SourceID":95462,"TargetID":95463,"Directional":true}]},{"ID":9053,"SourceStructureID":5528,"TargetStructureID":95468,"Label":"5528-95468 via BC Conventional Synapse from 95470 -> 95469","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95470,"TargetID":95469,"Directional":true}]},{"ID":9054,"SourceStructureID":5528,"TargetStructureID":95659,"Label":"5528-95659 via Ribbon Synapse from 8265 -> 95660","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8265,"TargetID":95660,"Directional":true}]},{"ID":9055,"SourceStructureID":5528,"TargetStructureID":95662,"Label":"5528-95662 via Ribbon Synapse from 8265 -> 95663","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8265,"TargetID":95663,"Directional":true}]},{"ID":9056,"SourceStructureID":5528,"TargetStructureID":95670,"Label":"5528-95670 via Ribbon Synapse from 8265 -> 95671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8265,"TargetID":95671,"Directional":true}]},{"ID":9057,"SourceStructureID":5528,"TargetStructureID":95693,"Label":"5528-95693 via Ribbon Synapse from 8267 -> 95695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8267,"TargetID":95695,"Directional":true}]},{"ID":9058,"SourceStructureID":5528,"TargetStructureID":95696,"Label":"5528-95696 via Ribbon Synapse from 8267 -> 95697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8267,"TargetID":95697,"Directional":true}]},{"ID":9059,"SourceStructureID":5528,"TargetStructureID":95698,"Label":"5528-95698 via Ribbon Synapse from 8269 -> 96167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8269,"TargetID":96167,"Directional":true}]},{"ID":9060,"SourceStructureID":5528,"TargetStructureID":96143,"Label":"5528-96143 via Ribbon Synapse from 8269 -> 96168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8269,"TargetID":96168,"Directional":true}]},{"ID":9061,"SourceStructureID":5528,"TargetStructureID":96207,"Label":"5528-96207 via Ribbon Synapse from 96206 -> 96208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96206,"TargetID":96208,"Directional":true}]},{"ID":9062,"SourceStructureID":5528,"TargetStructureID":96227,"Label":"5528-96227 via BC Conventional Synapse from 96229 -> 96230","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96229,"TargetID":96230,"Directional":true}]},{"ID":9063,"SourceStructureID":5528,"TargetStructureID":96227,"Label":"5528-96227 via Ribbon Synapse from 96231 -> 96232","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96231,"TargetID":96232,"Directional":true}]},{"ID":9064,"SourceStructureID":5528,"TargetStructureID":96234,"Label":"5528-96234 via Ribbon Synapse from 96233 -> 96235","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96233,"TargetID":96235,"Directional":true}]},{"ID":9065,"SourceStructureID":5528,"TargetStructureID":96236,"Label":"5528-96236 via Ribbon Synapse from 96233 -> 96237","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96233,"TargetID":96237,"Directional":true}]},{"ID":9066,"SourceStructureID":5528,"TargetStructureID":96238,"Label":"5528-96238 via Ribbon Synapse from 96231 -> 96239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96231,"TargetID":96239,"Directional":true}]},{"ID":9067,"SourceStructureID":5528,"TargetStructureID":96240,"Label":"5528-96240 via BC Conventional Synapse from 96241 -> 96242","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96241,"TargetID":96242,"Directional":true}]},{"ID":9068,"SourceStructureID":5528,"TargetStructureID":96252,"Label":"5528-96252 via BC Conventional Synapse from 96253 -> 96254","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96253,"TargetID":96254,"Directional":true}]},{"ID":9069,"SourceStructureID":5528,"TargetStructureID":96280,"Label":"5528-96280 via Ribbon Synapse from 8284 -> 96281","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8284,"TargetID":96281,"Directional":true}]},{"ID":9070,"SourceStructureID":5528,"TargetStructureID":96303,"Label":"5528-96303 via Ribbon Synapse from 8279 -> 96831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8279,"TargetID":96831,"Directional":true}]},{"ID":9071,"SourceStructureID":5528,"TargetStructureID":96304,"Label":"5528-96304 via Ribbon Synapse from 8279 -> 96828, 8280 -> 96827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8279,"TargetID":96828,"Directional":true},{"SourceID":8280,"TargetID":96827,"Directional":true}]},{"ID":9072,"SourceStructureID":5528,"TargetStructureID":96832,"Label":"5528-96832 via Ribbon Synapse from 107105 -> 96833","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107105,"TargetID":96833,"Directional":true}]},{"ID":9073,"SourceStructureID":5528,"TargetStructureID":96834,"Label":"5528-96834 via Ribbon Synapse from 107105 -> 96836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107105,"TargetID":96836,"Directional":true}]},{"ID":9074,"SourceStructureID":5528,"TargetStructureID":96837,"Label":"5528-96837 via Ribbon Synapse from 107105 -> 96838","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107105,"TargetID":96838,"Directional":true}]},{"ID":9075,"SourceStructureID":5528,"TargetStructureID":96880,"Label":"5528-96880 via Ribbon Synapse from 8291 -> 96882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8291,"TargetID":96882,"Directional":true}]},{"ID":9076,"SourceStructureID":5528,"TargetStructureID":96883,"Label":"5528-96883 via Ribbon Synapse from 8295 -> 96886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8295,"TargetID":96886,"Directional":true}]},{"ID":9077,"SourceStructureID":5528,"TargetStructureID":96884,"Label":"5528-96884 via Ribbon Synapse from 8295 -> 96885","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8295,"TargetID":96885,"Directional":true}]},{"ID":9078,"SourceStructureID":5528,"TargetStructureID":96891,"Label":"5528-96891 via Ribbon Synapse from 8292 -> 96892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8292,"TargetID":96892,"Directional":true}]},{"ID":9079,"SourceStructureID":5528,"TargetStructureID":96893,"Label":"5528-96893 via Ribbon Synapse from 8292 -> 96913, 96894 -> 96896, 96894 -> 96897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8292,"TargetID":96913,"Directional":true},{"SourceID":96894,"TargetID":96896,"Directional":true},{"SourceID":96894,"TargetID":96897,"Directional":true}]},{"ID":9080,"SourceStructureID":5528,"TargetStructureID":96898,"Label":"5528-96898 via BC Conventional Synapse from 96903 -> 96904","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96903,"TargetID":96904,"Directional":true}]},{"ID":9081,"SourceStructureID":5528,"TargetStructureID":96906,"Label":"5528-96906 via Ribbon Synapse from 96905 -> 96907","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96905,"TargetID":96907,"Directional":true}]},{"ID":9082,"SourceStructureID":5528,"TargetStructureID":96909,"Label":"5528-96909 via Ribbon Synapse from 8296 -> 96910","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8296,"TargetID":96910,"Directional":true}]},{"ID":9083,"SourceStructureID":5528,"TargetStructureID":96911,"Label":"5528-96911 via Ribbon Synapse from 8296 -> 96912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8296,"TargetID":96912,"Directional":true}]},{"ID":9084,"SourceStructureID":5528,"TargetStructureID":97244,"Label":"5528-97244 via Ribbon Synapse from 55047 -> 97251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55047,"TargetID":97251,"Directional":true}]},{"ID":9085,"SourceStructureID":5528,"TargetStructureID":97252,"Label":"5528-97252 via Ribbon Synapse from 55047 -> 97257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55047,"TargetID":97257,"Directional":true}]},{"ID":9086,"SourceStructureID":5528,"TargetStructureID":97260,"Label":"5528-97260 via Ribbon Synapse from 55047 -> 97263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55047,"TargetID":97263,"Directional":true}]},{"ID":9087,"SourceStructureID":5528,"TargetStructureID":97272,"Label":"5528-97272 via Ribbon Synapse from 97270 -> 97277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97270,"TargetID":97277,"Directional":true}]},{"ID":9088,"SourceStructureID":5528,"TargetStructureID":97280,"Label":"5528-97280 via Ribbon Synapse from 97270 -> 97283","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97270,"TargetID":97283,"Directional":true}]},{"ID":9089,"SourceStructureID":5528,"TargetStructureID":97293,"Label":"5528-97293 via Ribbon Synapse from 54722 -> 97301","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54722,"TargetID":97301,"Directional":true}]},{"ID":9090,"SourceStructureID":5530,"TargetStructureID":606,"Label":"5530-606 via Ribbon Synapse from 23844 -> 23840, 23859 -> 44214, 23861 -> 10514, 42097 -> 50902, 42099 -> 50903, 42141 -> 50906, 42145 -> 53541, 44215 -> 10511, 44247 -> 44243, 45233 -> 52543, 50952 -> 50950, 53413 -> 53412, 53506 -> 53507, 53543 -> 53544, 54034 -> 54035, 54043 -> 54044, 54047 -> 10518, 54055 -> 54056, 54106 -> 10521","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23844,"TargetID":23840,"Directional":true},{"SourceID":23859,"TargetID":44214,"Directional":true},{"SourceID":23861,"TargetID":10514,"Directional":true},{"SourceID":42097,"TargetID":50902,"Directional":true},{"SourceID":42099,"TargetID":50903,"Directional":true},{"SourceID":42141,"TargetID":50906,"Directional":true},{"SourceID":42145,"TargetID":53541,"Directional":true},{"SourceID":44215,"TargetID":10511,"Directional":true},{"SourceID":44247,"TargetID":44243,"Directional":true},{"SourceID":45233,"TargetID":52543,"Directional":true},{"SourceID":50952,"TargetID":50950,"Directional":true},{"SourceID":53413,"TargetID":53412,"Directional":true},{"SourceID":53506,"TargetID":53507,"Directional":true},{"SourceID":53543,"TargetID":53544,"Directional":true},{"SourceID":54034,"TargetID":54035,"Directional":true},{"SourceID":54043,"TargetID":54044,"Directional":true},{"SourceID":54047,"TargetID":10518,"Directional":true},{"SourceID":54055,"TargetID":54056,"Directional":true},{"SourceID":54106,"TargetID":10521,"Directional":true}]},{"ID":9091,"SourceStructureID":5530,"TargetStructureID":5435,"Label":"5530-5435 via Ribbon Synapse from 52537 -> 82419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52537,"TargetID":82419,"Directional":true}]},{"ID":9092,"SourceStructureID":5530,"TargetStructureID":5451,"Label":"5530-5451 via BC Conventional Synapse from 81114 -> 81116","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81114,"TargetID":81116,"Directional":true}]},{"ID":9093,"SourceStructureID":5530,"TargetStructureID":5451,"Label":"5530-5451 via Ribbon Synapse from 55199 -> 55196","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55199,"TargetID":55196,"Directional":true}]},{"ID":9094,"SourceStructureID":5530,"TargetStructureID":7594,"Label":"5530-7594 via Ribbon Synapse from 17906 -> 17907","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17906,"TargetID":17907,"Directional":true}]},{"ID":9095,"SourceStructureID":5530,"TargetStructureID":9769,"Label":"5530-9769 via Ribbon Synapse from 29867 -> 29859, 30119 -> 30113, 39712 -> 126459, 45218 -> 45217, 45314 -> 45315, 74220 -> 74221, 74676 -> 74876, 80481 -> 80482","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29867,"TargetID":29859,"Directional":true},{"SourceID":30119,"TargetID":30113,"Directional":true},{"SourceID":39712,"TargetID":126459,"Directional":true},{"SourceID":45218,"TargetID":45217,"Directional":true},{"SourceID":45314,"TargetID":45315,"Directional":true},{"SourceID":74220,"TargetID":74221,"Directional":true},{"SourceID":74676,"TargetID":74876,"Directional":true},{"SourceID":80481,"TargetID":80482,"Directional":true}]},{"ID":9096,"SourceStructureID":5530,"TargetStructureID":12564,"Label":"5530-12564 via Ribbon Synapse from 77345 -> 77346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77345,"TargetID":77346,"Directional":true}]},{"ID":9097,"SourceStructureID":5530,"TargetStructureID":18693,"Label":"5530-18693 via Ribbon Synapse from 77650 -> 77651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77650,"TargetID":77651,"Directional":true}]},{"ID":9098,"SourceStructureID":5530,"TargetStructureID":23512,"Label":"5530-23512 via Ribbon Synapse from 23842 -> 23843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23842,"TargetID":23843,"Directional":true}]},{"ID":9099,"SourceStructureID":5530,"TargetStructureID":25293,"Label":"5530-25293 via Ribbon Synapse from 23859 -> 25299","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23859,"TargetID":25299,"Directional":true}]},{"ID":9100,"SourceStructureID":5530,"TargetStructureID":35152,"Label":"5530-35152 via Ribbon Synapse from 35163 -> 35162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35163,"TargetID":35162,"Directional":true}]},{"ID":9101,"SourceStructureID":5530,"TargetStructureID":35288,"Label":"5530-35288 via Ribbon Synapse from 35304 -> 35303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35304,"TargetID":35303,"Directional":true}]},{"ID":9102,"SourceStructureID":5530,"TargetStructureID":35539,"Label":"5530-35539 via Ribbon Synapse from 17906 -> 35543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17906,"TargetID":35543,"Directional":true}]},{"ID":9103,"SourceStructureID":5530,"TargetStructureID":35653,"Label":"5530-35653 via Ribbon Synapse from 75534 -> 75535","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75534,"TargetID":75535,"Directional":true}]},{"ID":9104,"SourceStructureID":5530,"TargetStructureID":39696,"Label":"5530-39696 via Ribbon Synapse from 39715 -> 39711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39715,"TargetID":39711,"Directional":true}]},{"ID":9105,"SourceStructureID":5530,"TargetStructureID":45220,"Label":"5530-45220 via Ribbon Synapse from 45233 -> 45232, 54034 -> 55182, 54063 -> 81574, 55178 -> 55180, 55205 -> 55206, 81226 -> 45224, 81243 -> 81246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45233,"TargetID":45232,"Directional":true},{"SourceID":54034,"TargetID":55182,"Directional":true},{"SourceID":54063,"TargetID":81574,"Directional":true},{"SourceID":55178,"TargetID":55180,"Directional":true},{"SourceID":55205,"TargetID":55206,"Directional":true},{"SourceID":81226,"TargetID":45224,"Directional":true},{"SourceID":81243,"TargetID":81246,"Directional":true}]},{"ID":9106,"SourceStructureID":5530,"TargetStructureID":54925,"Label":"5530-54925 via Ribbon Synapse from 54047 -> 54946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54047,"TargetID":54946,"Directional":true}]},{"ID":9107,"SourceStructureID":5530,"TargetStructureID":70566,"Label":"5530-70566 via Ribbon Synapse from 80306 -> 80308","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80306,"TargetID":80308,"Directional":true}]},{"ID":9108,"SourceStructureID":5530,"TargetStructureID":71882,"Label":"5530-71882 via Ribbon Synapse from 75909 -> 90451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75909,"TargetID":90451,"Directional":true}]},{"ID":9109,"SourceStructureID":5530,"TargetStructureID":74049,"Label":"5530-74049 via Cistern Pre from 37805 -> 74050","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37805,"TargetID":74050,"Directional":true}]},{"ID":9110,"SourceStructureID":5530,"TargetStructureID":74056,"Label":"5530-74056 via BC Conventional Synapse from 74055 -> 74057","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74055,"TargetID":74057,"Directional":true}]},{"ID":9111,"SourceStructureID":5530,"TargetStructureID":74222,"Label":"5530-74222 via Ribbon Synapse from 74220 -> 74223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74220,"TargetID":74223,"Directional":true}]},{"ID":9112,"SourceStructureID":5530,"TargetStructureID":74909,"Label":"5530-74909 via Ribbon Synapse from 74676 -> 74910","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74676,"TargetID":74910,"Directional":true}]},{"ID":9113,"SourceStructureID":5530,"TargetStructureID":74911,"Label":"5530-74911 via Ribbon Synapse from 45218 -> 74912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45218,"TargetID":74912,"Directional":true}]},{"ID":9114,"SourceStructureID":5530,"TargetStructureID":74978,"Label":"5530-74978 via Adherens from 74980 -> 74982","Type":"Adherens","Directional":true,"Links":[{"SourceID":74980,"TargetID":74982,"Directional":true}]},{"ID":9115,"SourceStructureID":5530,"TargetStructureID":74978,"Label":"5530-74978 via Ribbon Synapse from 74989 -> 74988","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74989,"TargetID":74988,"Directional":true}]},{"ID":9116,"SourceStructureID":5530,"TargetStructureID":75395,"Label":"5530-75395 via Ribbon Synapse from 75398 -> 75399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75398,"TargetID":75399,"Directional":true}]},{"ID":9117,"SourceStructureID":5530,"TargetStructureID":75400,"Label":"5530-75400 via Ribbon Synapse from 75398 -> 75403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75398,"TargetID":75403,"Directional":true}]},{"ID":9118,"SourceStructureID":5530,"TargetStructureID":75404,"Label":"5530-75404 via Ribbon Synapse from 75406 -> 75407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75406,"TargetID":75407,"Directional":true}]},{"ID":9119,"SourceStructureID":5530,"TargetStructureID":75488,"Label":"5530-75488 via Ribbon Synapse from 75492 -> 75494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75492,"TargetID":75494,"Directional":true}]},{"ID":9120,"SourceStructureID":5530,"TargetStructureID":75491,"Label":"5530-75491 via Ribbon Synapse from 75492 -> 75493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75492,"TargetID":75493,"Directional":true}]},{"ID":9121,"SourceStructureID":5530,"TargetStructureID":75517,"Label":"5530-75517 via Ribbon Synapse from 53414 -> 75518, 75534 -> 75536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53414,"TargetID":75518,"Directional":true},{"SourceID":75534,"TargetID":75536,"Directional":true}]},{"ID":9122,"SourceStructureID":5530,"TargetStructureID":75519,"Label":"5530-75519 via Ribbon Synapse from 53414 -> 75520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53414,"TargetID":75520,"Directional":true}]},{"ID":9123,"SourceStructureID":5530,"TargetStructureID":75521,"Label":"5530-75521 via Ribbon Synapse from 53413 -> 75523","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53413,"TargetID":75523,"Directional":true}]},{"ID":9124,"SourceStructureID":5530,"TargetStructureID":75780,"Label":"5530-75780 via Ribbon Synapse from 75779 -> 75781, 75786 -> 75787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75779,"TargetID":75781,"Directional":true},{"SourceID":75786,"TargetID":75787,"Directional":true}]},{"ID":9125,"SourceStructureID":5530,"TargetStructureID":75782,"Label":"5530-75782 via Ribbon Synapse from 75779 -> 75785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75779,"TargetID":75785,"Directional":true}]},{"ID":9126,"SourceStructureID":5530,"TargetStructureID":75795,"Label":"5530-75795 via Ribbon Synapse from 75800 -> 75803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75800,"TargetID":75803,"Directional":true}]},{"ID":9127,"SourceStructureID":5530,"TargetStructureID":75796,"Label":"5530-75796 via Ribbon Synapse from 75797 -> 75798, 75800 -> 75802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75797,"TargetID":75798,"Directional":true},{"SourceID":75800,"TargetID":75802,"Directional":true}]},{"ID":9128,"SourceStructureID":5530,"TargetStructureID":75890,"Label":"5530-75890 via Ribbon Synapse from 75889 -> 75891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75889,"TargetID":75891,"Directional":true}]},{"ID":9129,"SourceStructureID":5530,"TargetStructureID":75898,"Label":"5530-75898 via Ribbon Synapse from 75897 -> 75899","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75897,"TargetID":75899,"Directional":true}]},{"ID":9130,"SourceStructureID":5530,"TargetStructureID":75911,"Label":"5530-75911 via Ribbon Synapse from 75909 -> 75914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75909,"TargetID":75914,"Directional":true}]},{"ID":9131,"SourceStructureID":5530,"TargetStructureID":76483,"Label":"5530-76483 via Ribbon Synapse from 76486 -> 76487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76486,"TargetID":76487,"Directional":true}]},{"ID":9132,"SourceStructureID":5530,"TargetStructureID":76489,"Label":"5530-76489 via Ribbon Synapse from 76486 -> 76491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76486,"TargetID":76491,"Directional":true}]},{"ID":9133,"SourceStructureID":5530,"TargetStructureID":76492,"Label":"5530-76492 via Ribbon Synapse from 35304 -> 76493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35304,"TargetID":76493,"Directional":true}]},{"ID":9134,"SourceStructureID":5530,"TargetStructureID":76764,"Label":"5530-76764 via Ribbon Synapse from 76763 -> 76765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76763,"TargetID":76765,"Directional":true}]},{"ID":9135,"SourceStructureID":5530,"TargetStructureID":76770,"Label":"5530-76770 via Ribbon Synapse from 76769 -> 76772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76769,"TargetID":76772,"Directional":true}]},{"ID":9136,"SourceStructureID":5530,"TargetStructureID":76771,"Label":"5530-76771 via Ribbon Synapse from 76769 -> 76773","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76769,"TargetID":76773,"Directional":true}]},{"ID":9137,"SourceStructureID":5530,"TargetStructureID":77332,"Label":"5530-77332 via Ribbon Synapse from 82586 -> 82585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82586,"TargetID":82585,"Directional":true}]},{"ID":9138,"SourceStructureID":5530,"TargetStructureID":77342,"Label":"5530-77342 via Ribbon Synapse from 77345 -> 77349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77345,"TargetID":77349,"Directional":true}]},{"ID":9139,"SourceStructureID":5530,"TargetStructureID":77347,"Label":"5530-77347 via Ribbon Synapse from 77345 -> 77348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77345,"TargetID":77348,"Directional":true}]},{"ID":9140,"SourceStructureID":5530,"TargetStructureID":77428,"Label":"5530-77428 via Ribbon Synapse from 44247 -> 77431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44247,"TargetID":77431,"Directional":true}]},{"ID":9141,"SourceStructureID":5530,"TargetStructureID":77632,"Label":"5530-77632 via Ribbon Synapse from 77631 -> 77634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77631,"TargetID":77634,"Directional":true}]},{"ID":9142,"SourceStructureID":5530,"TargetStructureID":77633,"Label":"5530-77633 via Ribbon Synapse from 77631 -> 77635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77631,"TargetID":77635,"Directional":true}]},{"ID":9143,"SourceStructureID":5530,"TargetStructureID":77641,"Label":"5530-77641 via Ribbon Synapse from 77640 -> 77643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77640,"TargetID":77643,"Directional":true}]},{"ID":9144,"SourceStructureID":5530,"TargetStructureID":77642,"Label":"5530-77642 via Ribbon Synapse from 77640 -> 77644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77640,"TargetID":77644,"Directional":true}]},{"ID":9145,"SourceStructureID":5530,"TargetStructureID":77652,"Label":"5530-77652 via Ribbon Synapse from 77650 -> 77653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77650,"TargetID":77653,"Directional":true}]},{"ID":9146,"SourceStructureID":5530,"TargetStructureID":77905,"Label":"5530-77905 via Ribbon Synapse from 17908 -> 82342","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17908,"TargetID":82342,"Directional":true}]},{"ID":9147,"SourceStructureID":5530,"TargetStructureID":77918,"Label":"5530-77918 via Ribbon Synapse from 77917 -> 77921, 77919 -> 77921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77917,"TargetID":77921,"Directional":true},{"SourceID":77919,"TargetID":77921,"Directional":true}]},{"ID":9148,"SourceStructureID":5530,"TargetStructureID":79061,"Label":"5530-79061 via Ribbon Synapse from 50952 -> 79062","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50952,"TargetID":79062,"Directional":true}]},{"ID":9149,"SourceStructureID":5530,"TargetStructureID":79159,"Label":"5530-79159 via Ribbon Synapse from 42137 -> 80709, 42138 -> 80709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42137,"TargetID":80709,"Directional":true},{"SourceID":42138,"TargetID":80709,"Directional":true}]},{"ID":9150,"SourceStructureID":5530,"TargetStructureID":79264,"Label":"5530-79264 via Ribbon Synapse from 126450 -> 79269","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126450,"TargetID":79269,"Directional":true}]},{"ID":9151,"SourceStructureID":5530,"TargetStructureID":79549,"Label":"5530-79549 via Ribbon Synapse from 42108 -> 79550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42108,"TargetID":79550,"Directional":true}]},{"ID":9152,"SourceStructureID":5530,"TargetStructureID":79551,"Label":"5530-79551 via Ribbon Synapse from 42107 -> 79552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42107,"TargetID":79552,"Directional":true}]},{"ID":9153,"SourceStructureID":5530,"TargetStructureID":79555,"Label":"5530-79555 via Ribbon Synapse from 42106 -> 79556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42106,"TargetID":79556,"Directional":true}]},{"ID":9154,"SourceStructureID":5530,"TargetStructureID":80182,"Label":"5530-80182 via Ribbon Synapse from 42101 -> 80183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42101,"TargetID":80183,"Directional":true}]},{"ID":9155,"SourceStructureID":5530,"TargetStructureID":80190,"Label":"5530-80190 via Ribbon Synapse from 42104 -> 80195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42104,"TargetID":80195,"Directional":true}]},{"ID":9156,"SourceStructureID":5530,"TargetStructureID":80208,"Label":"5530-80208 via Ribbon Synapse from 80205 -> 80212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80205,"TargetID":80212,"Directional":true}]},{"ID":9157,"SourceStructureID":5530,"TargetStructureID":80210,"Label":"5530-80210 via Ribbon Synapse from 80205 -> 80218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80205,"TargetID":80218,"Directional":true}]},{"ID":9158,"SourceStructureID":5530,"TargetStructureID":80228,"Label":"5530-80228 via Ribbon Synapse from 42110 -> 80231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42110,"TargetID":80231,"Directional":true}]},{"ID":9159,"SourceStructureID":5530,"TargetStructureID":80417,"Label":"5530-80417 via Ribbon Synapse from 80415 -> 83041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80415,"TargetID":83041,"Directional":true}]},{"ID":9160,"SourceStructureID":5530,"TargetStructureID":80425,"Label":"5530-80425 via Ribbon Synapse from 80429 -> 80430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80429,"TargetID":80430,"Directional":true}]},{"ID":9161,"SourceStructureID":5530,"TargetStructureID":80433,"Label":"5530-80433 via Ribbon Synapse from 42117 -> 80435","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42117,"TargetID":80435,"Directional":true}]},{"ID":9162,"SourceStructureID":5530,"TargetStructureID":80436,"Label":"5530-80436 via Ribbon Synapse from 42117 -> 80437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42117,"TargetID":80437,"Directional":true}]},{"ID":9163,"SourceStructureID":5530,"TargetStructureID":80483,"Label":"5530-80483 via Ribbon Synapse from 42126 -> 80485","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42126,"TargetID":80485,"Directional":true}]},{"ID":9164,"SourceStructureID":5530,"TargetStructureID":80484,"Label":"5530-80484 via Ribbon Synapse from 42126 -> 80486","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42126,"TargetID":80486,"Directional":true}]},{"ID":9165,"SourceStructureID":5530,"TargetStructureID":80495,"Label":"5530-80495 via Ribbon Synapse from 42127 -> 80497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42127,"TargetID":80497,"Directional":true}]},{"ID":9166,"SourceStructureID":5530,"TargetStructureID":80498,"Label":"5530-80498 via Ribbon Synapse from 30119 -> 80499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30119,"TargetID":80499,"Directional":true}]},{"ID":9167,"SourceStructureID":5530,"TargetStructureID":80501,"Label":"5530-80501 via Ribbon Synapse from 80500 -> 80502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80500,"TargetID":80502,"Directional":true}]},{"ID":9168,"SourceStructureID":5530,"TargetStructureID":80568,"Label":"5530-80568 via Ribbon Synapse from 39713 -> 80571","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39713,"TargetID":80571,"Directional":true}]},{"ID":9169,"SourceStructureID":5530,"TargetStructureID":80569,"Label":"5530-80569 via Ribbon Synapse from 39713 -> 80570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39713,"TargetID":80570,"Directional":true}]},{"ID":9170,"SourceStructureID":5530,"TargetStructureID":80592,"Label":"5530-80592 via Ribbon Synapse from 39715 -> 80593","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39715,"TargetID":80593,"Directional":true}]},{"ID":9171,"SourceStructureID":5530,"TargetStructureID":80713,"Label":"5530-80713 via Ribbon Synapse from 80715 -> 80716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80715,"TargetID":80716,"Directional":true}]},{"ID":9172,"SourceStructureID":5530,"TargetStructureID":80971,"Label":"5530-80971 via Ribbon Synapse from 42141 -> 80972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42141,"TargetID":80972,"Directional":true}]},{"ID":9173,"SourceStructureID":5530,"TargetStructureID":80980,"Label":"5530-80980 via Ribbon Synapse from 42139 -> 80982","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42139,"TargetID":80982,"Directional":true}]},{"ID":9174,"SourceStructureID":5530,"TargetStructureID":81003,"Label":"5530-81003 via Ribbon Synapse from 42145 -> 81006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42145,"TargetID":81006,"Directional":true}]},{"ID":9175,"SourceStructureID":5530,"TargetStructureID":81008,"Label":"5530-81008 via Ribbon Synapse from 42148 -> 81010","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42148,"TargetID":81010,"Directional":true}]},{"ID":9176,"SourceStructureID":5530,"TargetStructureID":81014,"Label":"5530-81014 via Ribbon Synapse from 42148 -> 81015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42148,"TargetID":81015,"Directional":true}]},{"ID":9177,"SourceStructureID":5530,"TargetStructureID":81123,"Label":"5530-81123 via Ribbon Synapse from 55178 -> 81126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55178,"TargetID":81126,"Directional":true}]},{"ID":9178,"SourceStructureID":5530,"TargetStructureID":81207,"Label":"5530-81207 via Ribbon Synapse from 81206 -> 81208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81206,"TargetID":81208,"Directional":true}]},{"ID":9179,"SourceStructureID":5530,"TargetStructureID":81215,"Label":"5530-81215 via Ribbon Synapse from 55205 -> 81216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55205,"TargetID":81216,"Directional":true}]},{"ID":9180,"SourceStructureID":5530,"TargetStructureID":81244,"Label":"5530-81244 via Ribbon Synapse from 81243 -> 81247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81243,"TargetID":81247,"Directional":true}]},{"ID":9181,"SourceStructureID":5530,"TargetStructureID":81250,"Label":"5530-81250 via Ribbon Synapse from 81248 -> 81251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81248,"TargetID":81251,"Directional":true}]},{"ID":9182,"SourceStructureID":5530,"TargetStructureID":81566,"Label":"5530-81566 via Ribbon Synapse from 54063 -> 81575","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54063,"TargetID":81575,"Directional":true}]},{"ID":9183,"SourceStructureID":5530,"TargetStructureID":81637,"Label":"5530-81637 via Ribbon Synapse from 115794 -> 115795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115794,"TargetID":115795,"Directional":true}]},{"ID":9184,"SourceStructureID":5530,"TargetStructureID":81857,"Label":"5530-81857 via Ribbon Synapse from 130672 -> 81858","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130672,"TargetID":81858,"Directional":true}]},{"ID":9185,"SourceStructureID":5530,"TargetStructureID":81862,"Label":"5530-81862 via Ribbon Synapse from 54055 -> 81864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54055,"TargetID":81864,"Directional":true}]},{"ID":9186,"SourceStructureID":5530,"TargetStructureID":82060,"Label":"5530-82060 via Ribbon Synapse from 82059 -> 82063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82059,"TargetID":82063,"Directional":true}]},{"ID":9187,"SourceStructureID":5530,"TargetStructureID":82061,"Label":"5530-82061 via Ribbon Synapse from 82059 -> 82062","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82059,"TargetID":82062,"Directional":true}]},{"ID":9188,"SourceStructureID":5530,"TargetStructureID":83051,"Label":"5530-83051 via Ribbon Synapse from 75484 -> 83052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75484,"TargetID":83052,"Directional":true}]},{"ID":9189,"SourceStructureID":5530,"TargetStructureID":147696,"Label":"5530-147696 via Ribbon Synapse from 42148 -> 147729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42148,"TargetID":147729,"Directional":true}]},{"ID":9190,"SourceStructureID":5531,"TargetStructureID":606,"Label":"5531-606 via Ribbon Synapse from 45213 -> 10517, 53538 -> 53539, 53929 -> 53930, 54136 -> 54137","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45213,"TargetID":10517,"Directional":true},{"SourceID":53538,"TargetID":53539,"Directional":true},{"SourceID":53929,"TargetID":53930,"Directional":true},{"SourceID":54136,"TargetID":54137,"Directional":true}]},{"ID":9191,"SourceStructureID":5531,"TargetStructureID":5118,"Label":"5531-5118 via BC Conventional Synapse from 120313 -> 120314","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120313,"TargetID":120314,"Directional":true}]},{"ID":9192,"SourceStructureID":5531,"TargetStructureID":5451,"Label":"5531-5451 via Ribbon Synapse from 55168 -> 55169","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55168,"TargetID":55169,"Directional":true}]},{"ID":9193,"SourceStructureID":5531,"TargetStructureID":5453,"Label":"5531-5453 via Ribbon Synapse from 54536 -> 106756, 106649 -> 106650, 113849 -> 113848","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54536,"TargetID":106756,"Directional":true},{"SourceID":106649,"TargetID":106650,"Directional":true},{"SourceID":113849,"TargetID":113848,"Directional":true}]},{"ID":9194,"SourceStructureID":5531,"TargetStructureID":5481,"Label":"5531-5481 via Ribbon Synapse from 62920 -> 62921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62920,"TargetID":62921,"Directional":true}]},{"ID":9195,"SourceStructureID":5531,"TargetStructureID":7274,"Label":"5531-7274 via BC Conventional Synapse from 113967 -> 41805","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":113967,"TargetID":41805,"Directional":true}]},{"ID":9196,"SourceStructureID":5531,"TargetStructureID":7274,"Label":"5531-7274 via Ribbon Synapse from 113957 -> 41808","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113957,"TargetID":41808,"Directional":true}]},{"ID":9197,"SourceStructureID":5531,"TargetStructureID":8575,"Label":"5531-8575 via BC Conventional Synapse from 147401 -> 147400","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147401,"TargetID":147400,"Directional":true}]},{"ID":9198,"SourceStructureID":5531,"TargetStructureID":8575,"Label":"5531-8575 via Ribbon Synapse from 113846 -> 62359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113846,"TargetID":62359,"Directional":true}]},{"ID":9199,"SourceStructureID":5531,"TargetStructureID":15796,"Label":"5531-15796 via BC Conventional Synapse from 125992 -> 92624","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125992,"TargetID":92624,"Directional":true}]},{"ID":9200,"SourceStructureID":5531,"TargetStructureID":15796,"Label":"5531-15796 via Ribbon Synapse from 125914 -> 107168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125914,"TargetID":107168,"Directional":true}]},{"ID":9201,"SourceStructureID":5531,"TargetStructureID":43874,"Label":"5531-43874 via Ribbon Synapse from 54547 -> 106741, 106746 -> 106741","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54547,"TargetID":106741,"Directional":true},{"SourceID":106746,"TargetID":106741,"Directional":true}]},{"ID":9202,"SourceStructureID":5531,"TargetStructureID":44346,"Label":"5531-44346 via Ribbon Synapse from 114744 -> 44818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114744,"TargetID":44818,"Directional":true}]},{"ID":9203,"SourceStructureID":5531,"TargetStructureID":54913,"Label":"5531-54913 via Ribbon Synapse from 54917 -> 54916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54917,"TargetID":54916,"Directional":true}]},{"ID":9204,"SourceStructureID":5531,"TargetStructureID":79256,"Label":"5531-79256 via Ribbon Synapse from 112456 -> 112457","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112456,"TargetID":112457,"Directional":true}]},{"ID":9205,"SourceStructureID":5531,"TargetStructureID":81618,"Label":"5531-81618 via BC Conventional Synapse from 105215 -> 105214","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105215,"TargetID":105214,"Directional":true}]},{"ID":9206,"SourceStructureID":5531,"TargetStructureID":82070,"Label":"5531-82070 via Ribbon Synapse from 40520 -> 82508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40520,"TargetID":82508,"Directional":true}]},{"ID":9207,"SourceStructureID":5531,"TargetStructureID":82071,"Label":"5531-82071 via Ribbon Synapse from 82501 -> 82502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82501,"TargetID":82502,"Directional":true}]},{"ID":9208,"SourceStructureID":5531,"TargetStructureID":82569,"Label":"5531-82569 via Ribbon Synapse from 82568 -> 82570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82568,"TargetID":82570,"Directional":true}]},{"ID":9209,"SourceStructureID":5531,"TargetStructureID":82832,"Label":"5531-82832 via Ribbon Synapse from 107190 -> 107191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107190,"TargetID":107191,"Directional":true}]},{"ID":9210,"SourceStructureID":5531,"TargetStructureID":82897,"Label":"5531-82897 via Ribbon Synapse from 110684 -> 110685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110684,"TargetID":110685,"Directional":true}]},{"ID":9211,"SourceStructureID":5531,"TargetStructureID":88260,"Label":"5531-88260 via Ribbon Synapse from 88272 -> 88269","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88272,"TargetID":88269,"Directional":true}]},{"ID":9212,"SourceStructureID":5531,"TargetStructureID":93431,"Label":"5531-93431 via BC Conventional Synapse from 147455 -> 147454","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147455,"TargetID":147454,"Directional":true}]},{"ID":9213,"SourceStructureID":5531,"TargetStructureID":95195,"Label":"5531-95195 via Ribbon Synapse from 147423 -> 147424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147423,"TargetID":147424,"Directional":true}]},{"ID":9214,"SourceStructureID":5531,"TargetStructureID":96266,"Label":"5531-96266 via Ribbon Synapse from 96839 -> 107106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96839,"TargetID":107106,"Directional":true}]},{"ID":9215,"SourceStructureID":5531,"TargetStructureID":96832,"Label":"5531-96832 via Ribbon Synapse from 96839 -> 96833","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96839,"TargetID":96833,"Directional":true}]},{"ID":9216,"SourceStructureID":5531,"TargetStructureID":96837,"Label":"5531-96837 via Ribbon Synapse from 96839 -> 96838","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96839,"TargetID":96838,"Directional":true}]},{"ID":9217,"SourceStructureID":5531,"TargetStructureID":96872,"Label":"5531-96872 via Ribbon Synapse from 106513 -> 107173","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106513,"TargetID":107173,"Directional":true}]},{"ID":9218,"SourceStructureID":5531,"TargetStructureID":96891,"Label":"5531-96891 via Ribbon Synapse from 125914 -> 107169","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125914,"TargetID":107169,"Directional":true}]},{"ID":9219,"SourceStructureID":5531,"TargetStructureID":96893,"Label":"5531-96893 via Ribbon Synapse from 106526 -> 107167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106526,"TargetID":107167,"Directional":true}]},{"ID":9220,"SourceStructureID":5531,"TargetStructureID":105210,"Label":"5531-105210 via Ribbon Synapse from 82568 -> 105211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82568,"TargetID":105211,"Directional":true}]},{"ID":9221,"SourceStructureID":5531,"TargetStructureID":105222,"Label":"5531-105222 via Ribbon Synapse from 40549 -> 105225","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40549,"TargetID":105225,"Directional":true}]},{"ID":9222,"SourceStructureID":5531,"TargetStructureID":105223,"Label":"5531-105223 via Ribbon Synapse from 40549 -> 105224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40549,"TargetID":105224,"Directional":true}]},{"ID":9223,"SourceStructureID":5531,"TargetStructureID":105226,"Label":"5531-105226 via Ribbon Synapse from 40550 -> 105227","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40550,"TargetID":105227,"Directional":true}]},{"ID":9224,"SourceStructureID":5531,"TargetStructureID":105232,"Label":"5531-105232 via Ribbon Synapse from 40538 -> 105233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40538,"TargetID":105233,"Directional":true}]},{"ID":9225,"SourceStructureID":5531,"TargetStructureID":105234,"Label":"5531-105234 via BC Conventional Synapse from 105235 -> 105236","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105235,"TargetID":105236,"Directional":true}]},{"ID":9226,"SourceStructureID":5531,"TargetStructureID":105239,"Label":"5531-105239 via Ribbon Synapse from 105238 -> 105240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105238,"TargetID":105240,"Directional":true}]},{"ID":9227,"SourceStructureID":5531,"TargetStructureID":105241,"Label":"5531-105241 via BC Conventional Synapse from 105242 -> 105244","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105242,"TargetID":105244,"Directional":true}]},{"ID":9228,"SourceStructureID":5531,"TargetStructureID":105241,"Label":"5531-105241 via Ribbon Synapse from 40522 -> 147432","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40522,"TargetID":147432,"Directional":true}]},{"ID":9229,"SourceStructureID":5531,"TargetStructureID":105255,"Label":"5531-105255 via Ribbon Synapse from 105256 -> 105257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105256,"TargetID":105257,"Directional":true}]},{"ID":9230,"SourceStructureID":5531,"TargetStructureID":105262,"Label":"5531-105262 via Ribbon Synapse from 105263 -> 105264","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105263,"TargetID":105264,"Directional":true}]},{"ID":9231,"SourceStructureID":5531,"TargetStructureID":105265,"Label":"5531-105265 via Ribbon Synapse from 105267 -> 105290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105267,"TargetID":105290,"Directional":true}]},{"ID":9232,"SourceStructureID":5531,"TargetStructureID":105269,"Label":"5531-105269 via Ribbon Synapse from 105268 -> 105272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105268,"TargetID":105272,"Directional":true}]},{"ID":9233,"SourceStructureID":5531,"TargetStructureID":105273,"Label":"5531-105273 via Ribbon Synapse from 105268 -> 105274","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105268,"TargetID":105274,"Directional":true}]},{"ID":9234,"SourceStructureID":5531,"TargetStructureID":105285,"Label":"5531-105285 via Ribbon Synapse from 105286 -> 105289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105286,"TargetID":105289,"Directional":true}]},{"ID":9235,"SourceStructureID":5531,"TargetStructureID":105287,"Label":"5531-105287 via Ribbon Synapse from 105286 -> 105288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105286,"TargetID":105288,"Directional":true}]},{"ID":9236,"SourceStructureID":5531,"TargetStructureID":105311,"Label":"5531-105311 via Ribbon Synapse from 105310 -> 105312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105310,"TargetID":105312,"Directional":true}]},{"ID":9237,"SourceStructureID":5531,"TargetStructureID":105313,"Label":"5531-105313 via Ribbon Synapse from 106200 -> 106201","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106200,"TargetID":106201,"Directional":true}]},{"ID":9238,"SourceStructureID":5531,"TargetStructureID":105324,"Label":"5531-105324 via Ribbon Synapse from 62923 -> 105330","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62923,"TargetID":105330,"Directional":true}]},{"ID":9239,"SourceStructureID":5531,"TargetStructureID":105325,"Label":"5531-105325 via Ribbon Synapse from 62923 -> 105327","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62923,"TargetID":105327,"Directional":true}]},{"ID":9240,"SourceStructureID":5531,"TargetStructureID":105331,"Label":"5531-105331 via BC Conventional Synapse from 105336 -> 105334","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105336,"TargetID":105334,"Directional":true}]},{"ID":9241,"SourceStructureID":5531,"TargetStructureID":105360,"Label":"5531-105360 via Ribbon Synapse from 105361 -> 105362","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105361,"TargetID":105362,"Directional":true}]},{"ID":9242,"SourceStructureID":5531,"TargetStructureID":106141,"Label":"5531-106141 via Ribbon Synapse from 62929 -> 106142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62929,"TargetID":106142,"Directional":true}]},{"ID":9243,"SourceStructureID":5531,"TargetStructureID":106151,"Label":"5531-106151 via Ribbon Synapse from 62932 -> 106152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62932,"TargetID":106152,"Directional":true}]},{"ID":9244,"SourceStructureID":5531,"TargetStructureID":106156,"Label":"5531-106156 via Ribbon Synapse from 82501 -> 106157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82501,"TargetID":106157,"Directional":true}]},{"ID":9245,"SourceStructureID":5531,"TargetStructureID":106164,"Label":"5531-106164 via Ribbon Synapse from 62925 -> 106167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62925,"TargetID":106167,"Directional":true}]},{"ID":9246,"SourceStructureID":5531,"TargetStructureID":106165,"Label":"5531-106165 via Ribbon Synapse from 62925 -> 106166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62925,"TargetID":106166,"Directional":true}]},{"ID":9247,"SourceStructureID":5531,"TargetStructureID":106168,"Label":"5531-106168 via Ribbon Synapse from 62926 -> 106169, 62926 -> 136320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62926,"TargetID":106169,"Directional":true},{"SourceID":62926,"TargetID":136320,"Directional":true}]},{"ID":9248,"SourceStructureID":5531,"TargetStructureID":106175,"Label":"5531-106175 via Ribbon Synapse from 62928 -> 106176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62928,"TargetID":106176,"Directional":true}]},{"ID":9249,"SourceStructureID":5531,"TargetStructureID":106177,"Label":"5531-106177 via Ribbon Synapse from 62928 -> 106178","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62928,"TargetID":106178,"Directional":true}]},{"ID":9250,"SourceStructureID":5531,"TargetStructureID":106179,"Label":"5531-106179 via Ribbon Synapse from 62928 -> 106180","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62928,"TargetID":106180,"Directional":true}]},{"ID":9251,"SourceStructureID":5531,"TargetStructureID":106189,"Label":"5531-106189 via Ribbon Synapse from 40515 -> 106190","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40515,"TargetID":106190,"Directional":true}]},{"ID":9252,"SourceStructureID":5531,"TargetStructureID":106197,"Label":"5531-106197 via Ribbon Synapse from 106198 -> 106199","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106198,"TargetID":106199,"Directional":true}]},{"ID":9253,"SourceStructureID":5531,"TargetStructureID":106204,"Label":"5531-106204 via Ribbon Synapse from 40511 -> 106205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40511,"TargetID":106205,"Directional":true}]},{"ID":9254,"SourceStructureID":5531,"TargetStructureID":106206,"Label":"5531-106206 via Ribbon Synapse from 40511 -> 106207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40511,"TargetID":106207,"Directional":true}]},{"ID":9255,"SourceStructureID":5531,"TargetStructureID":106211,"Label":"5531-106211 via Ribbon Synapse from 40512 -> 106212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40512,"TargetID":106212,"Directional":true}]},{"ID":9256,"SourceStructureID":5531,"TargetStructureID":106213,"Label":"5531-106213 via Ribbon Synapse from 40512 -> 106214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40512,"TargetID":106214,"Directional":true}]},{"ID":9257,"SourceStructureID":5531,"TargetStructureID":106221,"Label":"5531-106221 via Ribbon Synapse from 40510 -> 106223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40510,"TargetID":106223,"Directional":true}]},{"ID":9258,"SourceStructureID":5531,"TargetStructureID":106224,"Label":"5531-106224 via Ribbon Synapse from 40510 -> 106226","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40510,"TargetID":106226,"Directional":true}]},{"ID":9259,"SourceStructureID":5531,"TargetStructureID":106227,"Label":"5531-106227 via Ribbon Synapse from 40509 -> 106228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40509,"TargetID":106228,"Directional":true}]},{"ID":9260,"SourceStructureID":5531,"TargetStructureID":106230,"Label":"5531-106230 via BC Conventional Synapse from 120317 -> 120315","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120317,"TargetID":120315,"Directional":true}]},{"ID":9261,"SourceStructureID":5531,"TargetStructureID":106253,"Label":"5531-106253 via Ribbon Synapse from 40514 -> 106255","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40514,"TargetID":106255,"Directional":true}]},{"ID":9262,"SourceStructureID":5531,"TargetStructureID":106256,"Label":"5531-106256 via Ribbon Synapse from 106262 -> 106265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106262,"TargetID":106265,"Directional":true}]},{"ID":9263,"SourceStructureID":5531,"TargetStructureID":106263,"Label":"5531-106263 via Ribbon Synapse from 106262 -> 106264","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106262,"TargetID":106264,"Directional":true}]},{"ID":9264,"SourceStructureID":5531,"TargetStructureID":106484,"Label":"5531-106484 via BC Conventional Synapse from 91662 -> 107653","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91662,"TargetID":107653,"Directional":true}]},{"ID":9265,"SourceStructureID":5531,"TargetStructureID":106486,"Label":"5531-106486 via Ribbon Synapse from 106485 -> 106487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106485,"TargetID":106487,"Directional":true}]},{"ID":9266,"SourceStructureID":5531,"TargetStructureID":106493,"Label":"5531-106493 via Ribbon Synapse from 106488 -> 106494, 106499 -> 107984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106488,"TargetID":106494,"Directional":true},{"SourceID":106499,"TargetID":107984,"Directional":true}]},{"ID":9267,"SourceStructureID":5531,"TargetStructureID":106495,"Label":"5531-106495 via Ribbon Synapse from 106488 -> 106496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106488,"TargetID":106496,"Directional":true}]},{"ID":9268,"SourceStructureID":5531,"TargetStructureID":106586,"Label":"5531-106586 via Ribbon Synapse from 106585 -> 106587","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106585,"TargetID":106587,"Directional":true}]},{"ID":9269,"SourceStructureID":5531,"TargetStructureID":106625,"Label":"5531-106625 via Ribbon Synapse from 91668 -> 106634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91668,"TargetID":106634,"Directional":true}]},{"ID":9270,"SourceStructureID":5531,"TargetStructureID":106628,"Label":"5531-106628 via Ribbon Synapse from 91668 -> 106635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91668,"TargetID":106635,"Directional":true}]},{"ID":9271,"SourceStructureID":5531,"TargetStructureID":106637,"Label":"5531-106637 via Ribbon Synapse from 54587 -> 120206","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54587,"TargetID":120206,"Directional":true}]},{"ID":9272,"SourceStructureID":5531,"TargetStructureID":106651,"Label":"5531-106651 via Ribbon Synapse from 106648 -> 106652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106648,"TargetID":106652,"Directional":true}]},{"ID":9273,"SourceStructureID":5531,"TargetStructureID":106689,"Label":"5531-106689 via BC Conventional Synapse from 133890 -> 133889","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133890,"TargetID":133889,"Directional":true}]},{"ID":9274,"SourceStructureID":5531,"TargetStructureID":106689,"Label":"5531-106689 via Ribbon Synapse from 106748 -> 106749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106748,"TargetID":106749,"Directional":true}]},{"ID":9275,"SourceStructureID":5531,"TargetStructureID":106697,"Label":"5531-106697 via Ribbon Synapse from 54560 -> 106701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54560,"TargetID":106701,"Directional":true}]},{"ID":9276,"SourceStructureID":5531,"TargetStructureID":106742,"Label":"5531-106742 via Ribbon Synapse from 106746 -> 106747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106746,"TargetID":106747,"Directional":true}]},{"ID":9277,"SourceStructureID":5531,"TargetStructureID":106757,"Label":"5531-106757 via Ribbon Synapse from 54536 -> 106758","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54536,"TargetID":106758,"Directional":true}]},{"ID":9278,"SourceStructureID":5531,"TargetStructureID":106762,"Label":"5531-106762 via Ribbon Synapse from 147402 -> 147403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147402,"TargetID":147403,"Directional":true}]},{"ID":9279,"SourceStructureID":5531,"TargetStructureID":106767,"Label":"5531-106767 via Ribbon Synapse from 54537 -> 106774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54537,"TargetID":106774,"Directional":true}]},{"ID":9280,"SourceStructureID":5531,"TargetStructureID":106775,"Label":"5531-106775 via Ribbon Synapse from 54537 -> 106777","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54537,"TargetID":106777,"Directional":true}]},{"ID":9281,"SourceStructureID":5531,"TargetStructureID":106778,"Label":"5531-106778 via Ribbon Synapse from 54535 -> 106789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54535,"TargetID":106789,"Directional":true}]},{"ID":9282,"SourceStructureID":5531,"TargetStructureID":106807,"Label":"5531-106807 via Ribbon Synapse from 54532 -> 106811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54532,"TargetID":106811,"Directional":true}]},{"ID":9283,"SourceStructureID":5531,"TargetStructureID":106813,"Label":"5531-106813 via Ribbon Synapse from 53538 -> 106823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53538,"TargetID":106823,"Directional":true}]},{"ID":9284,"SourceStructureID":5531,"TargetStructureID":106826,"Label":"5531-106826 via Ribbon Synapse from 54531 -> 106830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54531,"TargetID":106830,"Directional":true}]},{"ID":9285,"SourceStructureID":5531,"TargetStructureID":106832,"Label":"5531-106832 via Ribbon Synapse from 54528 -> 106834","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54528,"TargetID":106834,"Directional":true}]},{"ID":9286,"SourceStructureID":5531,"TargetStructureID":106835,"Label":"5531-106835 via Ribbon Synapse from 54528 -> 106845","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54528,"TargetID":106845,"Directional":true}]},{"ID":9287,"SourceStructureID":5531,"TargetStructureID":106846,"Label":"5531-106846 via Ribbon Synapse from 54545 -> 106850","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54545,"TargetID":106850,"Directional":true}]},{"ID":9288,"SourceStructureID":5531,"TargetStructureID":106875,"Label":"5531-106875 via BC Conventional Synapse from 147438 -> 147437","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147438,"TargetID":147437,"Directional":true}]},{"ID":9289,"SourceStructureID":5531,"TargetStructureID":106887,"Label":"5531-106887 via Ribbon Synapse from 54569 -> 106888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54569,"TargetID":106888,"Directional":true}]},{"ID":9290,"SourceStructureID":5531,"TargetStructureID":106890,"Label":"5531-106890 via Ribbon Synapse from 54582 -> 107415","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54582,"TargetID":107415,"Directional":true}]},{"ID":9291,"SourceStructureID":5531,"TargetStructureID":106941,"Label":"5531-106941 via Ribbon Synapse from 88271 -> 106943","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88271,"TargetID":106943,"Directional":true}]},{"ID":9292,"SourceStructureID":5531,"TargetStructureID":107170,"Label":"5531-107170 via Ribbon Synapse from 106526 -> 107171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106526,"TargetID":107171,"Directional":true}]},{"ID":9293,"SourceStructureID":5531,"TargetStructureID":107370,"Label":"5531-107370 via Ribbon Synapse from 107369 -> 107371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107369,"TargetID":107371,"Directional":true}]},{"ID":9294,"SourceStructureID":5531,"TargetStructureID":107372,"Label":"5531-107372 via Ribbon Synapse from 107369 -> 107373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107369,"TargetID":107373,"Directional":true}]},{"ID":9295,"SourceStructureID":5531,"TargetStructureID":107382,"Label":"5531-107382 via Ribbon Synapse from 107376 -> 107387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107376,"TargetID":107387,"Directional":true}]},{"ID":9296,"SourceStructureID":5531,"TargetStructureID":107401,"Label":"5531-107401 via Ribbon Synapse from 54583 -> 107411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54583,"TargetID":107411,"Directional":true}]},{"ID":9297,"SourceStructureID":5531,"TargetStructureID":107408,"Label":"5531-107408 via Ribbon Synapse from 54583 -> 107410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54583,"TargetID":107410,"Directional":true}]},{"ID":9298,"SourceStructureID":5531,"TargetStructureID":107412,"Label":"5531-107412 via Ribbon Synapse from 54582 -> 107413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54582,"TargetID":107413,"Directional":true}]},{"ID":9299,"SourceStructureID":5531,"TargetStructureID":107431,"Label":"5531-107431 via Ribbon Synapse from 91487 -> 107432","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91487,"TargetID":107432,"Directional":true}]},{"ID":9300,"SourceStructureID":5531,"TargetStructureID":107436,"Label":"5531-107436 via Ribbon Synapse from 91486 -> 107437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91486,"TargetID":107437,"Directional":true}]},{"ID":9301,"SourceStructureID":5531,"TargetStructureID":107442,"Label":"5531-107442 via BC Conventional Synapse from 91682 -> 107443","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91682,"TargetID":107443,"Directional":true}]},{"ID":9302,"SourceStructureID":5531,"TargetStructureID":107449,"Label":"5531-107449 via Ribbon Synapse from 107448 -> 107450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107448,"TargetID":107450,"Directional":true}]},{"ID":9303,"SourceStructureID":5531,"TargetStructureID":107460,"Label":"5531-107460 via Ribbon Synapse from 107452 -> 107464, 107459 -> 107461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107452,"TargetID":107464,"Directional":true},{"SourceID":107459,"TargetID":107461,"Directional":true}]},{"ID":9304,"SourceStructureID":5531,"TargetStructureID":107468,"Label":"5531-107468 via Ribbon Synapse from 107459 -> 107469","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107459,"TargetID":107469,"Directional":true}]},{"ID":9305,"SourceStructureID":5531,"TargetStructureID":107483,"Label":"5531-107483 via Ribbon Synapse from 107515 -> 107518, 107516 -> 107517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107515,"TargetID":107518,"Directional":true},{"SourceID":107516,"TargetID":107517,"Directional":true}]},{"ID":9306,"SourceStructureID":5531,"TargetStructureID":107502,"Label":"5531-107502 via Ribbon Synapse from 107499 -> 107503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107499,"TargetID":107503,"Directional":true}]},{"ID":9307,"SourceStructureID":5531,"TargetStructureID":107504,"Label":"5531-107504 via Ribbon Synapse from 107470 -> 107505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107470,"TargetID":107505,"Directional":true}]},{"ID":9308,"SourceStructureID":5531,"TargetStructureID":107533,"Label":"5531-107533 via Ribbon Synapse from 107534 -> 107535","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107534,"TargetID":107535,"Directional":true}]},{"ID":9309,"SourceStructureID":5531,"TargetStructureID":107538,"Label":"5531-107538 via Ribbon Synapse from 107496 -> 107539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107496,"TargetID":107539,"Directional":true}]},{"ID":9310,"SourceStructureID":5531,"TargetStructureID":107551,"Label":"5531-107551 via Ribbon Synapse from 107550 -> 107552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107550,"TargetID":107552,"Directional":true}]},{"ID":9311,"SourceStructureID":5531,"TargetStructureID":107553,"Label":"5531-107553 via Ribbon Synapse from 107550 -> 107554, 107563 -> 107564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107550,"TargetID":107554,"Directional":true},{"SourceID":107563,"TargetID":107564,"Directional":true}]},{"ID":9312,"SourceStructureID":5531,"TargetStructureID":107557,"Label":"5531-107557 via Ribbon Synapse from 107555 -> 107558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107555,"TargetID":107558,"Directional":true}]},{"ID":9313,"SourceStructureID":5531,"TargetStructureID":107559,"Label":"5531-107559 via Ribbon Synapse from 107555 -> 107566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107555,"TargetID":107566,"Directional":true}]},{"ID":9314,"SourceStructureID":5531,"TargetStructureID":107560,"Label":"5531-107560 via Ribbon Synapse from 107563 -> 107565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107563,"TargetID":107565,"Directional":true}]},{"ID":9315,"SourceStructureID":5531,"TargetStructureID":107567,"Label":"5531-107567 via BC Conventional Synapse from 107568 -> 107569","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107568,"TargetID":107569,"Directional":true}]},{"ID":9316,"SourceStructureID":5531,"TargetStructureID":107575,"Label":"5531-107575 via Ribbon Synapse from 91725 -> 107576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91725,"TargetID":107576,"Directional":true}]},{"ID":9317,"SourceStructureID":5531,"TargetStructureID":107580,"Label":"5531-107580 via Ribbon Synapse from 107579 -> 107581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107579,"TargetID":107581,"Directional":true}]},{"ID":9318,"SourceStructureID":5531,"TargetStructureID":107635,"Label":"5531-107635 via Ribbon Synapse from 107634 -> 107636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107634,"TargetID":107636,"Directional":true}]},{"ID":9319,"SourceStructureID":5531,"TargetStructureID":107639,"Label":"5531-107639 via Ribbon Synapse from 91716 -> 107640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91716,"TargetID":107640,"Directional":true}]},{"ID":9320,"SourceStructureID":5531,"TargetStructureID":107646,"Label":"5531-107646 via BC Conventional Synapse from 107647 -> 107648","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107647,"TargetID":107648,"Directional":true}]},{"ID":9321,"SourceStructureID":5531,"TargetStructureID":107649,"Label":"5531-107649 via Ribbon Synapse from 91711 -> 107652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91711,"TargetID":107652,"Directional":true}]},{"ID":9322,"SourceStructureID":5531,"TargetStructureID":107654,"Label":"5531-107654 via Ribbon Synapse from 107656 -> 107660","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107656,"TargetID":107660,"Directional":true}]},{"ID":9323,"SourceStructureID":5531,"TargetStructureID":107657,"Label":"5531-107657 via Ribbon Synapse from 107656 -> 107659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107656,"TargetID":107659,"Directional":true}]},{"ID":9324,"SourceStructureID":5531,"TargetStructureID":107665,"Label":"5531-107665 via Ribbon Synapse from 107664 -> 107666","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107664,"TargetID":107666,"Directional":true}]},{"ID":9325,"SourceStructureID":5531,"TargetStructureID":107667,"Label":"5531-107667 via BC Conventional Synapse from 107671 -> 107668","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107671,"TargetID":107668,"Directional":true}]},{"ID":9326,"SourceStructureID":5531,"TargetStructureID":107667,"Label":"5531-107667 via Ribbon Synapse from 107664 -> 107669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107664,"TargetID":107669,"Directional":true}]},{"ID":9327,"SourceStructureID":5531,"TargetStructureID":107680,"Label":"5531-107680 via Ribbon Synapse from 107681 -> 107682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107681,"TargetID":107682,"Directional":true}]},{"ID":9328,"SourceStructureID":5531,"TargetStructureID":107686,"Label":"5531-107686 via Ribbon Synapse from 107690 -> 107692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107690,"TargetID":107692,"Directional":true}]},{"ID":9329,"SourceStructureID":5531,"TargetStructureID":107687,"Label":"5531-107687 via Ribbon Synapse from 107690 -> 107691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107690,"TargetID":107691,"Directional":true}]},{"ID":9330,"SourceStructureID":5531,"TargetStructureID":107699,"Label":"5531-107699 via Ribbon Synapse from 107698 -> 107700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107698,"TargetID":107700,"Directional":true}]},{"ID":9331,"SourceStructureID":5531,"TargetStructureID":107709,"Label":"5531-107709 via Ribbon Synapse from 107710 -> 107711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107710,"TargetID":107711,"Directional":true}]},{"ID":9332,"SourceStructureID":5531,"TargetStructureID":107715,"Label":"5531-107715 via BC Conventional Synapse from 107716 -> 107717","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107716,"TargetID":107717,"Directional":true}]},{"ID":9333,"SourceStructureID":5531,"TargetStructureID":107715,"Label":"5531-107715 via Ribbon Synapse from 107718 -> 107720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107718,"TargetID":107720,"Directional":true}]},{"ID":9334,"SourceStructureID":5531,"TargetStructureID":107719,"Label":"5531-107719 via Ribbon Synapse from 107718 -> 107721","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107718,"TargetID":107721,"Directional":true}]},{"ID":9335,"SourceStructureID":5531,"TargetStructureID":107723,"Label":"5531-107723 via Ribbon Synapse from 107722 -> 107724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107722,"TargetID":107724,"Directional":true}]},{"ID":9336,"SourceStructureID":5531,"TargetStructureID":107725,"Label":"5531-107725 via Ribbon Synapse from 107722 -> 107726","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107722,"TargetID":107726,"Directional":true}]},{"ID":9337,"SourceStructureID":5531,"TargetStructureID":107727,"Label":"5531-107727 via Ribbon Synapse from 107730 -> 107731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107730,"TargetID":107731,"Directional":true}]},{"ID":9338,"SourceStructureID":5531,"TargetStructureID":107732,"Label":"5531-107732 via Ribbon Synapse from 107730 -> 107733, 107734 -> 107735","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107730,"TargetID":107733,"Directional":true},{"SourceID":107734,"TargetID":107735,"Directional":true}]},{"ID":9339,"SourceStructureID":5531,"TargetStructureID":108061,"Label":"5531-108061 via BC Conventional Synapse from 108126 -> 108125","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108126,"TargetID":108125,"Directional":true}]},{"ID":9340,"SourceStructureID":5531,"TargetStructureID":110648,"Label":"5531-110648 via Ribbon Synapse from 147463 -> 147461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147463,"TargetID":147461,"Directional":true}]},{"ID":9341,"SourceStructureID":5531,"TargetStructureID":110666,"Label":"5531-110666 via Ribbon Synapse from 110665 -> 110667, 147463 -> 147462","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110665,"TargetID":110667,"Directional":true},{"SourceID":147463,"TargetID":147462,"Directional":true}]},{"ID":9342,"SourceStructureID":5531,"TargetStructureID":110681,"Label":"5531-110681 via Ribbon Synapse from 110679 -> 110682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110679,"TargetID":110682,"Directional":true}]},{"ID":9343,"SourceStructureID":5531,"TargetStructureID":110686,"Label":"5531-110686 via Ribbon Synapse from 110684 -> 114823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110684,"TargetID":114823,"Directional":true}]},{"ID":9344,"SourceStructureID":5531,"TargetStructureID":111806,"Label":"5531-111806 via Ribbon Synapse from 87140 -> 111807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87140,"TargetID":111807,"Directional":true}]},{"ID":9345,"SourceStructureID":5531,"TargetStructureID":111808,"Label":"5531-111808 via Ribbon Synapse from 56793 -> 111810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56793,"TargetID":111810,"Directional":true}]},{"ID":9346,"SourceStructureID":5531,"TargetStructureID":111812,"Label":"5531-111812 via Ribbon Synapse from 56794 -> 111815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56794,"TargetID":111815,"Directional":true}]},{"ID":9347,"SourceStructureID":5531,"TargetStructureID":111813,"Label":"5531-111813 via Ribbon Synapse from 56794 -> 111816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56794,"TargetID":111816,"Directional":true}]},{"ID":9348,"SourceStructureID":5531,"TargetStructureID":111814,"Label":"5531-111814 via Ribbon Synapse from 111817 -> 111818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111817,"TargetID":111818,"Directional":true}]},{"ID":9349,"SourceStructureID":5531,"TargetStructureID":111821,"Label":"5531-111821 via Ribbon Synapse from 111820 -> 111822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111820,"TargetID":111822,"Directional":true}]},{"ID":9350,"SourceStructureID":5531,"TargetStructureID":111823,"Label":"5531-111823 via Ribbon Synapse from 56795 -> 111824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56795,"TargetID":111824,"Directional":true}]},{"ID":9351,"SourceStructureID":5531,"TargetStructureID":111835,"Label":"5531-111835 via Ribbon Synapse from 111834 -> 111836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111834,"TargetID":111836,"Directional":true}]},{"ID":9352,"SourceStructureID":5531,"TargetStructureID":111838,"Label":"5531-111838 via Ribbon Synapse from 111837 -> 111839","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111837,"TargetID":111839,"Directional":true}]},{"ID":9353,"SourceStructureID":5531,"TargetStructureID":111842,"Label":"5531-111842 via Ribbon Synapse from 111846 -> 111847","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111846,"TargetID":111847,"Directional":true}]},{"ID":9354,"SourceStructureID":5531,"TargetStructureID":111852,"Label":"5531-111852 via Ribbon Synapse from 111851 -> 111853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111851,"TargetID":111853,"Directional":true}]},{"ID":9355,"SourceStructureID":5531,"TargetStructureID":111854,"Label":"5531-111854 via Ribbon Synapse from 56801 -> 111855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56801,"TargetID":111855,"Directional":true}]},{"ID":9356,"SourceStructureID":5531,"TargetStructureID":111856,"Label":"5531-111856 via Ribbon Synapse from 56801 -> 111857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56801,"TargetID":111857,"Directional":true}]},{"ID":9357,"SourceStructureID":5531,"TargetStructureID":112458,"Label":"5531-112458 via Ribbon Synapse from 112456 -> 112459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112456,"TargetID":112459,"Directional":true}]},{"ID":9358,"SourceStructureID":5531,"TargetStructureID":112465,"Label":"5531-112465 via BC Conventional Synapse from 112466 -> 112467","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112466,"TargetID":112467,"Directional":true}]},{"ID":9359,"SourceStructureID":5531,"TargetStructureID":112473,"Label":"5531-112473 via Ribbon Synapse from 112472 -> 114567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112472,"TargetID":114567,"Directional":true}]},{"ID":9360,"SourceStructureID":5531,"TargetStructureID":114540,"Label":"5531-114540 via Ribbon Synapse from 107190 -> 114541","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107190,"TargetID":114541,"Directional":true}]},{"ID":9361,"SourceStructureID":5531,"TargetStructureID":114556,"Label":"5531-114556 via Ribbon Synapse from 112472 -> 114557","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112472,"TargetID":114557,"Directional":true}]},{"ID":9362,"SourceStructureID":5531,"TargetStructureID":114558,"Label":"5531-114558 via Ribbon Synapse from 112472 -> 114559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112472,"TargetID":114559,"Directional":true}]},{"ID":9363,"SourceStructureID":5531,"TargetStructureID":114560,"Label":"5531-114560 via BC Conventional Synapse from 114562 -> 114563","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":114562,"TargetID":114563,"Directional":true}]},{"ID":9364,"SourceStructureID":5531,"TargetStructureID":114564,"Label":"5531-114564 via BC Conventional Synapse from 114579 -> 114580","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":114579,"TargetID":114580,"Directional":true}]},{"ID":9365,"SourceStructureID":5531,"TargetStructureID":114568,"Label":"5531-114568 via BC Conventional Synapse from 127296 -> 127297","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":127296,"TargetID":127297,"Directional":true}]},{"ID":9366,"SourceStructureID":5531,"TargetStructureID":114573,"Label":"5531-114573 via Ribbon Synapse from 114574 -> 114575","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114574,"TargetID":114575,"Directional":true}]},{"ID":9367,"SourceStructureID":5531,"TargetStructureID":114695,"Label":"5531-114695 via BC Conventional Synapse from 114696 -> 114697","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":114696,"TargetID":114697,"Directional":true}]},{"ID":9368,"SourceStructureID":5531,"TargetStructureID":114702,"Label":"5531-114702 via Ribbon Synapse from 114701 -> 114703","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114701,"TargetID":114703,"Directional":true}]},{"ID":9369,"SourceStructureID":5531,"TargetStructureID":114705,"Label":"5531-114705 via Ribbon Synapse from 114704 -> 114706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114704,"TargetID":114706,"Directional":true}]},{"ID":9370,"SourceStructureID":5531,"TargetStructureID":114707,"Label":"5531-114707 via Ribbon Synapse from 114704 -> 114708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114704,"TargetID":114708,"Directional":true}]},{"ID":9371,"SourceStructureID":5531,"TargetStructureID":114709,"Label":"5531-114709 via BC Conventional Synapse from 114710 -> 114711","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":114710,"TargetID":114711,"Directional":true}]},{"ID":9372,"SourceStructureID":5531,"TargetStructureID":114718,"Label":"5531-114718 via Ribbon Synapse from 114719 -> 114720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114719,"TargetID":114720,"Directional":true}]},{"ID":9373,"SourceStructureID":5531,"TargetStructureID":114721,"Label":"5531-114721 via Ribbon Synapse from 114722 -> 114723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114722,"TargetID":114723,"Directional":true}]},{"ID":9374,"SourceStructureID":5531,"TargetStructureID":114724,"Label":"5531-114724 via Ribbon Synapse from 114722 -> 114725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114722,"TargetID":114725,"Directional":true}]},{"ID":9375,"SourceStructureID":5531,"TargetStructureID":114732,"Label":"5531-114732 via Ribbon Synapse from 54917 -> 114733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54917,"TargetID":114733,"Directional":true}]},{"ID":9376,"SourceStructureID":5531,"TargetStructureID":114745,"Label":"5531-114745 via Ribbon Synapse from 114746 -> 114753","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114746,"TargetID":114753,"Directional":true}]},{"ID":9377,"SourceStructureID":5531,"TargetStructureID":114747,"Label":"5531-114747 via Ribbon Synapse from 114746 -> 114752","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114746,"TargetID":114752,"Directional":true}]},{"ID":9378,"SourceStructureID":5531,"TargetStructureID":114748,"Label":"5531-114748 via Ribbon Synapse from 54651 -> 114749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54651,"TargetID":114749,"Directional":true}]},{"ID":9379,"SourceStructureID":5531,"TargetStructureID":114760,"Label":"5531-114760 via Ribbon Synapse from 54648 -> 114761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54648,"TargetID":114761,"Directional":true}]},{"ID":9380,"SourceStructureID":5531,"TargetStructureID":114763,"Label":"5531-114763 via Ribbon Synapse from 54648 -> 114764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54648,"TargetID":114764,"Directional":true}]},{"ID":9381,"SourceStructureID":5532,"TargetStructureID":13448,"Label":"5532-13448 via Ribbon Synapse from 43394 -> 13449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43394,"TargetID":13449,"Directional":true}]},{"ID":9382,"SourceStructureID":5532,"TargetStructureID":90715,"Label":"5532-90715 via Ribbon Synapse from 43155 -> 91311, 43394 -> 91320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43155,"TargetID":91311,"Directional":true},{"SourceID":43394,"TargetID":91320,"Directional":true}]},{"ID":9383,"SourceStructureID":5534,"TargetStructureID":606,"Label":"5534-606 via Ribbon Synapse from 34644 -> 54327, 44250 -> 44249, 44303 -> 44302, 49803 -> 49804, 53667 -> 53668, 54206 -> 44277, 54296 -> 44300, 54303 -> 54304","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34644,"TargetID":54327,"Directional":true},{"SourceID":44250,"TargetID":44249,"Directional":true},{"SourceID":44303,"TargetID":44302,"Directional":true},{"SourceID":49803,"TargetID":49804,"Directional":true},{"SourceID":53667,"TargetID":53668,"Directional":true},{"SourceID":54206,"TargetID":44277,"Directional":true},{"SourceID":54296,"TargetID":44300,"Directional":true},{"SourceID":54303,"TargetID":54304,"Directional":true}]},{"ID":9384,"SourceStructureID":5534,"TargetStructureID":9769,"Label":"5534-9769 via Ribbon Synapse from 29879 -> 29878, 35323 -> 29877, 45321 -> 45209","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29879,"TargetID":29878,"Directional":true},{"SourceID":35323,"TargetID":29877,"Directional":true},{"SourceID":45321,"TargetID":45209,"Directional":true}]},{"ID":9385,"SourceStructureID":5534,"TargetStructureID":32938,"Label":"5534-32938 via Ribbon Synapse from 32944 -> 32943","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32944,"TargetID":32943,"Directional":true}]},{"ID":9386,"SourceStructureID":5534,"TargetStructureID":35317,"Label":"5534-35317 via Ribbon Synapse from 35323 -> 35321","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35323,"TargetID":35321,"Directional":true}]},{"ID":9387,"SourceStructureID":5534,"TargetStructureID":45220,"Label":"5534-45220 via Ribbon Synapse from 118274 -> 45252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118274,"TargetID":45252,"Directional":true}]},{"ID":9388,"SourceStructureID":5534,"TargetStructureID":58592,"Label":"5534-58592 via Ribbon Synapse from 118350 -> 118351","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118350,"TargetID":118351,"Directional":true}]},{"ID":9389,"SourceStructureID":5534,"TargetStructureID":84118,"Label":"5534-84118 via Ribbon Synapse from 123621 -> 123622","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123621,"TargetID":123622,"Directional":true}]},{"ID":9390,"SourceStructureID":5534,"TargetStructureID":88912,"Label":"5534-88912 via Ribbon Synapse from 88917 -> 88918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88917,"TargetID":88918,"Directional":true}]},{"ID":9391,"SourceStructureID":5535,"TargetStructureID":35092,"Label":"5535-35092 via Ribbon Synapse from 35100 -> 35098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35100,"TargetID":35098,"Directional":true}]},{"ID":9392,"SourceStructureID":5536,"TargetStructureID":19571,"Label":"5536-19571 via Ribbon Synapse from 22697 -> 22714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22697,"TargetID":22714,"Directional":true}]},{"ID":9393,"SourceStructureID":5536,"TargetStructureID":20537,"Label":"5536-20537 via Ribbon Synapse from 22697 -> 23528, 22711 -> 23528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22697,"TargetID":23528,"Directional":true},{"SourceID":22711,"TargetID":23528,"Directional":true}]},{"ID":9394,"SourceStructureID":5536,"TargetStructureID":26971,"Label":"5536-26971 via Ribbon Synapse from 22645 -> 26972, 27807 -> 26972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22645,"TargetID":26972,"Directional":true},{"SourceID":27807,"TargetID":26972,"Directional":true}]},{"ID":9395,"SourceStructureID":5536,"TargetStructureID":70684,"Label":"5536-70684 via Ribbon Synapse from 27813 -> 70691, 27817 -> 70689, 27822 -> 70686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27813,"TargetID":70691,"Directional":true},{"SourceID":27817,"TargetID":70689,"Directional":true},{"SourceID":27822,"TargetID":70686,"Directional":true}]},{"ID":9396,"SourceStructureID":5537,"TargetStructureID":606,"Label":"5537-606 via Ribbon Synapse from 44957 -> 54330, 54381 -> 54380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44957,"TargetID":54330,"Directional":true},{"SourceID":54381,"TargetID":54380,"Directional":true}]},{"ID":9397,"SourceStructureID":5537,"TargetStructureID":5451,"Label":"5537-5451 via Ribbon Synapse from 44784 -> 44785, 44925 -> 44926, 44957 -> 44958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44784,"TargetID":44785,"Directional":true},{"SourceID":44925,"TargetID":44926,"Directional":true},{"SourceID":44957,"TargetID":44958,"Directional":true}]},{"ID":9398,"SourceStructureID":5537,"TargetStructureID":7594,"Label":"5537-7594 via Ribbon Synapse from 25142 -> 24396, 38187 -> 38188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25142,"TargetID":24396,"Directional":true},{"SourceID":38187,"TargetID":38188,"Directional":true}]},{"ID":9399,"SourceStructureID":5537,"TargetStructureID":10559,"Label":"5537-10559 via Ribbon Synapse from 44317 -> 44316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44317,"TargetID":44316,"Directional":true}]},{"ID":9400,"SourceStructureID":5537,"TargetStructureID":11238,"Label":"5537-11238 via Ribbon Synapse from 88356 -> 88318, 88382 -> 88378, 88383 -> 88384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88356,"TargetID":88318,"Directional":true},{"SourceID":88382,"TargetID":88378,"Directional":true},{"SourceID":88383,"TargetID":88384,"Directional":true}]},{"ID":9401,"SourceStructureID":5537,"TargetStructureID":32926,"Label":"5537-32926 via Ribbon Synapse from 32935 -> 32934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32935,"TargetID":32934,"Directional":true}]},{"ID":9402,"SourceStructureID":5537,"TargetStructureID":35188,"Label":"5537-35188 via Ribbon Synapse from 127762 -> 127763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127762,"TargetID":127763,"Directional":true}]},{"ID":9403,"SourceStructureID":5537,"TargetStructureID":45220,"Label":"5537-45220 via Ribbon Synapse from 56095 -> 45247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56095,"TargetID":45247,"Directional":true}]},{"ID":9404,"SourceStructureID":5537,"TargetStructureID":56093,"Label":"5537-56093 via Ribbon Synapse from 56095 -> 56094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56095,"TargetID":56094,"Directional":true}]},{"ID":9405,"SourceStructureID":5538,"TargetStructureID":5451,"Label":"5538-5451 via BC Conventional Synapse from 55936 -> 55937","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55936,"TargetID":55937,"Directional":true}]},{"ID":9406,"SourceStructureID":5538,"TargetStructureID":5453,"Label":"5538-5453 via Ribbon Synapse from 42198 -> 18509, 42202 -> 18504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42198,"TargetID":18509,"Directional":true},{"SourceID":42202,"TargetID":18504,"Directional":true}]},{"ID":9407,"SourceStructureID":5538,"TargetStructureID":8504,"Label":"5538-8504 via Ribbon Synapse from 45012 -> 8709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45012,"TargetID":8709,"Directional":true}]},{"ID":9408,"SourceStructureID":5538,"TargetStructureID":8551,"Label":"5538-8551 via Ribbon Synapse from 8545 -> 8566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8545,"TargetID":8566,"Directional":true}]},{"ID":9409,"SourceStructureID":5538,"TargetStructureID":16073,"Label":"5538-16073 via Ribbon Synapse from 24223 -> 24220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24223,"TargetID":24220,"Directional":true}]},{"ID":9410,"SourceStructureID":5538,"TargetStructureID":42770,"Label":"5538-42770 via Ribbon Synapse from 24222 -> 42772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24222,"TargetID":42772,"Directional":true}]},{"ID":9411,"SourceStructureID":5538,"TargetStructureID":55933,"Label":"5538-55933 via BC Conventional Synapse from 55935 -> 55934","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55935,"TargetID":55934,"Directional":true}]},{"ID":9412,"SourceStructureID":5539,"TargetStructureID":7188,"Label":"5539-7188 via Ribbon Synapse from 8514 -> 7190, 8519 -> 8516, 8521 -> 7192, 9816 -> 8517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8514,"TargetID":7190,"Directional":true},{"SourceID":8519,"TargetID":8516,"Directional":true},{"SourceID":8521,"TargetID":7192,"Directional":true},{"SourceID":9816,"TargetID":8517,"Directional":true}]},{"ID":9413,"SourceStructureID":5539,"TargetStructureID":7225,"Label":"5539-7225 via Ribbon Synapse from 10022 -> 22689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10022,"TargetID":22689,"Directional":true}]},{"ID":9414,"SourceStructureID":5539,"TargetStructureID":19572,"Label":"5539-19572 via Ribbon Synapse from 8521 -> 22625","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8521,"TargetID":22625,"Directional":true}]},{"ID":9415,"SourceStructureID":5539,"TargetStructureID":20681,"Label":"5539-20681 via Ribbon Synapse from 44471 -> 65772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44471,"TargetID":65772,"Directional":true}]},{"ID":9416,"SourceStructureID":5541,"TargetStructureID":606,"Label":"5541-606 via Ribbon Synapse from 33240 -> 44252, 33241 -> 44251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33240,"TargetID":44252,"Directional":true},{"SourceID":33241,"TargetID":44251,"Directional":true}]},{"ID":9417,"SourceStructureID":5541,"TargetStructureID":4890,"Label":"5541-4890 via Ribbon Synapse from 7914 -> 7915","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7914,"TargetID":7915,"Directional":true}]},{"ID":9418,"SourceStructureID":5541,"TargetStructureID":35325,"Label":"5541-35325 via Ribbon Synapse from 38254 -> 38249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38254,"TargetID":38249,"Directional":true}]},{"ID":9419,"SourceStructureID":5541,"TargetStructureID":71985,"Label":"5541-71985 via Ribbon Synapse from 72023 -> 72026","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72023,"TargetID":72026,"Directional":true}]},{"ID":9420,"SourceStructureID":5541,"TargetStructureID":72036,"Label":"5541-72036 via Ribbon Synapse from 72038 -> 72039, 72041 -> 72040","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72038,"TargetID":72039,"Directional":true},{"SourceID":72041,"TargetID":72040,"Directional":true}]},{"ID":9421,"SourceStructureID":5542,"TargetStructureID":456,"Label":"5542-456 via Ribbon Synapse from 39990 -> 14424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39990,"TargetID":14424,"Directional":true}]},{"ID":9422,"SourceStructureID":5542,"TargetStructureID":7564,"Label":"5542-7564 via Ribbon Synapse from 29055 -> 29049","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29055,"TargetID":29049,"Directional":true}]},{"ID":9423,"SourceStructureID":5542,"TargetStructureID":13525,"Label":"5542-13525 via Ribbon Synapse from 95794 -> 85330, 133824 -> 129028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95794,"TargetID":85330,"Directional":true},{"SourceID":133824,"TargetID":129028,"Directional":true}]},{"ID":9424,"SourceStructureID":5542,"TargetStructureID":90715,"Label":"5542-90715 via Ribbon Synapse from 43158 -> 91225, 43164 -> 91027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43158,"TargetID":91225,"Directional":true},{"SourceID":43164,"TargetID":91027,"Directional":true}]},{"ID":9425,"SourceStructureID":5542,"TargetStructureID":130365,"Label":"5542-130365 via Ribbon Synapse from 95796 -> 130367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95796,"TargetID":130367,"Directional":true}]},{"ID":9426,"SourceStructureID":5542,"TargetStructureID":137122,"Label":"5542-137122 via Ribbon Synapse from 137132 -> 137130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137132,"TargetID":137130,"Directional":true}]},{"ID":9427,"SourceStructureID":5543,"TargetStructureID":5453,"Label":"5543-5453 via Ribbon Synapse from 17033 -> 18570, 17095 -> 18664, 17096 -> 18674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17033,"TargetID":18570,"Directional":true},{"SourceID":17095,"TargetID":18664,"Directional":true},{"SourceID":17096,"TargetID":18674,"Directional":true}]},{"ID":9428,"SourceStructureID":5543,"TargetStructureID":7703,"Label":"5543-7703 via Ribbon Synapse from 17018 -> 17020, 17091 -> 18652, 17096 -> 18591, 17097 -> 18592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17018,"TargetID":17020,"Directional":true},{"SourceID":17091,"TargetID":18652,"Directional":true},{"SourceID":17096,"TargetID":18591,"Directional":true},{"SourceID":17097,"TargetID":18592,"Directional":true}]},{"ID":9429,"SourceStructureID":5543,"TargetStructureID":8575,"Label":"5543-8575 via BC Conventional Synapse from 55284 -> 37282","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55284,"TargetID":37282,"Directional":true}]},{"ID":9430,"SourceStructureID":5543,"TargetStructureID":98590,"Label":"5543-98590 via Ribbon Synapse from 17088 -> 117185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17088,"TargetID":117185,"Directional":true}]},{"ID":9431,"SourceStructureID":5543,"TargetStructureID":101369,"Label":"5543-101369 via Ribbon Synapse from 101421 -> 101416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101421,"TargetID":101416,"Directional":true}]},{"ID":9432,"SourceStructureID":5543,"TargetStructureID":135225,"Label":"5543-135225 via Ribbon Synapse from 17131 -> 135241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17131,"TargetID":135241,"Directional":true}]},{"ID":9433,"SourceStructureID":5544,"TargetStructureID":458,"Label":"5544-458 via Ribbon Synapse from 44714 -> 14491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44714,"TargetID":14491,"Directional":true}]},{"ID":9434,"SourceStructureID":5544,"TargetStructureID":5421,"Label":"5544-5421 via Ribbon Synapse from 44703 -> 130831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44703,"TargetID":130831,"Directional":true}]},{"ID":9435,"SourceStructureID":5544,"TargetStructureID":5422,"Label":"5544-5422 via Ribbon Synapse from 74125 -> 74124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74125,"TargetID":74124,"Directional":true}]},{"ID":9436,"SourceStructureID":5544,"TargetStructureID":7564,"Label":"5544-7564 via Ribbon Synapse from 44703 -> 44707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44703,"TargetID":44707,"Directional":true}]},{"ID":9437,"SourceStructureID":5544,"TargetStructureID":20681,"Label":"5544-20681 via Ribbon Synapse from 45082 -> 65811, 65804 -> 65803, 65815 -> 65814","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45082,"TargetID":65811,"Directional":true},{"SourceID":65804,"TargetID":65803,"Directional":true},{"SourceID":65815,"TargetID":65814,"Directional":true}]},{"ID":9438,"SourceStructureID":5544,"TargetStructureID":31931,"Label":"5544-31931 via Ribbon Synapse from 31936 -> 31935","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31936,"TargetID":31935,"Directional":true}]},{"ID":9439,"SourceStructureID":5544,"TargetStructureID":137024,"Label":"5544-137024 via Ribbon Synapse from 137032 -> 137031","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137032,"TargetID":137031,"Directional":true}]},{"ID":9440,"SourceStructureID":5545,"TargetStructureID":5453,"Label":"5545-5453 via Ribbon Synapse from 128475 -> 28779","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128475,"TargetID":28779,"Directional":true}]},{"ID":9441,"SourceStructureID":5545,"TargetStructureID":7859,"Label":"5545-7859 via Ribbon Synapse from 40080 -> 84687, 84692 -> 84693","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40080,"TargetID":84687,"Directional":true},{"SourceID":84692,"TargetID":84693,"Directional":true}]},{"ID":9442,"SourceStructureID":5545,"TargetStructureID":13525,"Label":"5545-13525 via Ribbon Synapse from 21278 -> 129965, 128463 -> 87084","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21278,"TargetID":129965,"Directional":true},{"SourceID":128463,"TargetID":87084,"Directional":true}]},{"ID":9443,"SourceStructureID":5545,"TargetStructureID":22225,"Label":"5545-22225 via Ribbon Synapse from 40078 -> 128201","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40078,"TargetID":128201,"Directional":true}]},{"ID":9444,"SourceStructureID":5545,"TargetStructureID":46741,"Label":"5545-46741 via BC Conventional Synapse from 136955 -> 136954","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":136955,"TargetID":136954,"Directional":true}]},{"ID":9445,"SourceStructureID":5545,"TargetStructureID":64777,"Label":"5545-64777 via Ribbon Synapse from 64835 -> 64829","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64835,"TargetID":64829,"Directional":true}]},{"ID":9446,"SourceStructureID":5545,"TargetStructureID":122073,"Label":"5545-122073 via Ribbon Synapse from 128465 -> 123252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128465,"TargetID":123252,"Directional":true}]},{"ID":9447,"SourceStructureID":5551,"TargetStructureID":116925,"Label":"5551-116925 via Ribbon Synapse from 116923 -> 116926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116923,"TargetID":116926,"Directional":true}]},{"ID":9448,"SourceStructureID":5557,"TargetStructureID":117065,"Label":"5557-117065 via Ribbon Synapse from 117064 -> 117068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117064,"TargetID":117068,"Directional":true}]},{"ID":9449,"SourceStructureID":5561,"TargetStructureID":606,"Label":"5561-606 via Ribbon Synapse from 20252 -> 20253, 46263 -> 51599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20252,"TargetID":20253,"Directional":true},{"SourceID":46263,"TargetID":51599,"Directional":true}]},{"ID":9450,"SourceStructureID":5561,"TargetStructureID":5282,"Label":"5561-5282 via Ribbon Synapse from 46043 -> 97665","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46043,"TargetID":97665,"Directional":true}]},{"ID":9451,"SourceStructureID":5561,"TargetStructureID":9769,"Label":"5561-9769 via Ribbon Synapse from 29900 -> 20229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29900,"TargetID":20229,"Directional":true}]},{"ID":9452,"SourceStructureID":5561,"TargetStructureID":53399,"Label":"5561-53399 via Ribbon Synapse from 46301 -> 53402","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46301,"TargetID":53402,"Directional":true}]},{"ID":9453,"SourceStructureID":5561,"TargetStructureID":63594,"Label":"5561-63594 via Ribbon Synapse from 46288 -> 63604, 49639 -> 96820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46288,"TargetID":63604,"Directional":true},{"SourceID":49639,"TargetID":96820,"Directional":true}]},{"ID":9454,"SourceStructureID":5561,"TargetStructureID":69162,"Label":"5561-69162 via Ribbon Synapse from 46308 -> 148171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46308,"TargetID":148171,"Directional":true}]},{"ID":9455,"SourceStructureID":5561,"TargetStructureID":70050,"Label":"5561-70050 via Ribbon Synapse from 46279 -> 130901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46279,"TargetID":130901,"Directional":true}]},{"ID":9456,"SourceStructureID":5561,"TargetStructureID":96762,"Label":"5561-96762 via Cistern Pre from 46112 -> 96763","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":46112,"TargetID":96763,"Directional":true}]},{"ID":9457,"SourceStructureID":5561,"TargetStructureID":96764,"Label":"5561-96764 via Cistern Pre from 46115 -> 96765","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":46115,"TargetID":96765,"Directional":true}]},{"ID":9458,"SourceStructureID":5561,"TargetStructureID":96766,"Label":"5561-96766 via Cistern Pre from 46134 -> 96767","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":46134,"TargetID":96767,"Directional":true}]},{"ID":9459,"SourceStructureID":5561,"TargetStructureID":96768,"Label":"5561-96768 via Ribbon Synapse from 46135 -> 96769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46135,"TargetID":96769,"Directional":true}]},{"ID":9460,"SourceStructureID":5561,"TargetStructureID":96781,"Label":"5561-96781 via Ribbon Synapse from 46145 -> 96783, 46294 -> 96782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46145,"TargetID":96783,"Directional":true},{"SourceID":46294,"TargetID":96782,"Directional":true}]},{"ID":9461,"SourceStructureID":5561,"TargetStructureID":96784,"Label":"5561-96784 via Ribbon Synapse from 46294 -> 96785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46294,"TargetID":96785,"Directional":true}]},{"ID":9462,"SourceStructureID":5561,"TargetStructureID":96786,"Label":"5561-96786 via Ribbon Synapse from 46263 -> 96789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46263,"TargetID":96789,"Directional":true}]},{"ID":9463,"SourceStructureID":5561,"TargetStructureID":96791,"Label":"5561-96791 via BC Conventional Synapse from 96792 -> 96793","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96792,"TargetID":96793,"Directional":true}]},{"ID":9464,"SourceStructureID":5561,"TargetStructureID":96791,"Label":"5561-96791 via Ribbon Synapse from 46292 -> 96798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46292,"TargetID":96798,"Directional":true}]},{"ID":9465,"SourceStructureID":5561,"TargetStructureID":96794,"Label":"5561-96794 via Ribbon Synapse from 46292 -> 96795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46292,"TargetID":96795,"Directional":true}]},{"ID":9466,"SourceStructureID":5561,"TargetStructureID":96812,"Label":"5561-96812 via BC Conventional Synapse from 96809 -> 96813","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96809,"TargetID":96813,"Directional":true}]},{"ID":9467,"SourceStructureID":5561,"TargetStructureID":96851,"Label":"5561-96851 via Ribbon Synapse from 96850 -> 96853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96850,"TargetID":96853,"Directional":true}]},{"ID":9468,"SourceStructureID":5561,"TargetStructureID":96927,"Label":"5561-96927 via BC Conventional Synapse from 96929 -> 96928","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96929,"TargetID":96928,"Directional":true}]},{"ID":9469,"SourceStructureID":5561,"TargetStructureID":96934,"Label":"5561-96934 via Ribbon Synapse from 29900 -> 96935","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29900,"TargetID":96935,"Directional":true}]},{"ID":9470,"SourceStructureID":5561,"TargetStructureID":96938,"Label":"5561-96938 via BC Conventional Synapse from 96939 -> 96940","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96939,"TargetID":96940,"Directional":true}]},{"ID":9471,"SourceStructureID":5561,"TargetStructureID":96943,"Label":"5561-96943 via BC Conventional Synapse from 96946 -> 96945","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96946,"TargetID":96945,"Directional":true}]},{"ID":9472,"SourceStructureID":5561,"TargetStructureID":96974,"Label":"5561-96974 via Ribbon Synapse from 46271 -> 96975","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46271,"TargetID":96975,"Directional":true}]},{"ID":9473,"SourceStructureID":5561,"TargetStructureID":96980,"Label":"5561-96980 via Ribbon Synapse from 46273 -> 96981","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46273,"TargetID":96981,"Directional":true}]},{"ID":9474,"SourceStructureID":5561,"TargetStructureID":96988,"Label":"5561-96988 via Ribbon Synapse from 46277 -> 96989","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46277,"TargetID":96989,"Directional":true}]},{"ID":9475,"SourceStructureID":5561,"TargetStructureID":97001,"Label":"5561-97001 via Ribbon Synapse from 97000 -> 97002","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97000,"TargetID":97002,"Directional":true}]},{"ID":9476,"SourceStructureID":5561,"TargetStructureID":97012,"Label":"5561-97012 via Ribbon Synapse from 46279 -> 97014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46279,"TargetID":97014,"Directional":true}]},{"ID":9477,"SourceStructureID":5561,"TargetStructureID":97065,"Label":"5561-97065 via BC Conventional Synapse from 46196 -> 97066","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":46196,"TargetID":97066,"Directional":true}]},{"ID":9478,"SourceStructureID":5561,"TargetStructureID":97090,"Label":"5561-97090 via Ribbon Synapse from 97085 -> 97091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97085,"TargetID":97091,"Directional":true}]},{"ID":9479,"SourceStructureID":5561,"TargetStructureID":97093,"Label":"5561-97093 via Ribbon Synapse from 97092 -> 97094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97092,"TargetID":97094,"Directional":true}]},{"ID":9480,"SourceStructureID":5561,"TargetStructureID":97159,"Label":"5561-97159 via Ribbon Synapse from 46172 -> 148167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46172,"TargetID":148167,"Directional":true}]},{"ID":9481,"SourceStructureID":5561,"TargetStructureID":97166,"Label":"5561-97166 via Ribbon Synapse from 46172 -> 97170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46172,"TargetID":97170,"Directional":true}]},{"ID":9482,"SourceStructureID":5561,"TargetStructureID":97202,"Label":"5561-97202 via BC Conventional Synapse from 97201 -> 97203","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97201,"TargetID":97203,"Directional":true}]},{"ID":9483,"SourceStructureID":5561,"TargetStructureID":97204,"Label":"5561-97204 via Ribbon Synapse from 97200 -> 97205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97200,"TargetID":97205,"Directional":true}]},{"ID":9484,"SourceStructureID":5561,"TargetStructureID":97215,"Label":"5561-97215 via BC Conventional Synapse from 97214 -> 97216","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97214,"TargetID":97216,"Directional":true}]},{"ID":9485,"SourceStructureID":5561,"TargetStructureID":97347,"Label":"5561-97347 via Ribbon Synapse from 46123 -> 97348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46123,"TargetID":97348,"Directional":true}]},{"ID":9486,"SourceStructureID":5561,"TargetStructureID":97350,"Label":"5561-97350 via Ribbon Synapse from 46123 -> 97351","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46123,"TargetID":97351,"Directional":true}]},{"ID":9487,"SourceStructureID":5561,"TargetStructureID":97381,"Label":"5561-97381 via BC Conventional Synapse from 97384 -> 97383","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97384,"TargetID":97383,"Directional":true}]},{"ID":9488,"SourceStructureID":5561,"TargetStructureID":97391,"Label":"5561-97391 via BC Conventional Synapse from 97393 -> 97392","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97393,"TargetID":97392,"Directional":true}]},{"ID":9489,"SourceStructureID":5561,"TargetStructureID":97443,"Label":"5561-97443 via Ribbon Synapse from 46212 -> 97444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46212,"TargetID":97444,"Directional":true}]},{"ID":9490,"SourceStructureID":5561,"TargetStructureID":97445,"Label":"5561-97445 via Ribbon Synapse from 46213 -> 97446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46213,"TargetID":97446,"Directional":true}]},{"ID":9491,"SourceStructureID":5561,"TargetStructureID":97485,"Label":"5561-97485 via Ribbon Synapse from 97472 -> 97487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97472,"TargetID":97487,"Directional":true}]},{"ID":9492,"SourceStructureID":5561,"TargetStructureID":97486,"Label":"5561-97486 via Ribbon Synapse from 97472 -> 97488","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97472,"TargetID":97488,"Directional":true}]},{"ID":9493,"SourceStructureID":5561,"TargetStructureID":97492,"Label":"5561-97492 via Ribbon Synapse from 97469 -> 97495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97469,"TargetID":97495,"Directional":true}]},{"ID":9494,"SourceStructureID":5561,"TargetStructureID":97496,"Label":"5561-97496 via Ribbon Synapse from 97469 -> 97497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97469,"TargetID":97497,"Directional":true}]},{"ID":9495,"SourceStructureID":5561,"TargetStructureID":97503,"Label":"5561-97503 via Ribbon Synapse from 46231 -> 97505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46231,"TargetID":97505,"Directional":true}]},{"ID":9496,"SourceStructureID":5561,"TargetStructureID":97512,"Label":"5561-97512 via Ribbon Synapse from 46259 -> 97513","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46259,"TargetID":97513,"Directional":true}]},{"ID":9497,"SourceStructureID":5561,"TargetStructureID":97514,"Label":"5561-97514 via Ribbon Synapse from 46258 -> 97517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46258,"TargetID":97517,"Directional":true}]},{"ID":9498,"SourceStructureID":5561,"TargetStructureID":97515,"Label":"5561-97515 via Ribbon Synapse from 46258 -> 97516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46258,"TargetID":97516,"Directional":true}]},{"ID":9499,"SourceStructureID":5561,"TargetStructureID":97518,"Label":"5561-97518 via Ribbon Synapse from 46259 -> 97519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46259,"TargetID":97519,"Directional":true}]},{"ID":9500,"SourceStructureID":5561,"TargetStructureID":97558,"Label":"5561-97558 via Ribbon Synapse from 46251 -> 97566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46251,"TargetID":97566,"Directional":true}]},{"ID":9501,"SourceStructureID":5561,"TargetStructureID":97559,"Label":"5561-97559 via Ribbon Synapse from 46246 -> 97562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46246,"TargetID":97562,"Directional":true}]},{"ID":9502,"SourceStructureID":5561,"TargetStructureID":97560,"Label":"5561-97560 via Ribbon Synapse from 46246 -> 97561","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46246,"TargetID":97561,"Directional":true}]},{"ID":9503,"SourceStructureID":5561,"TargetStructureID":97584,"Label":"5561-97584 via Ribbon Synapse from 46251 -> 97589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46251,"TargetID":97589,"Directional":true}]},{"ID":9504,"SourceStructureID":5561,"TargetStructureID":97636,"Label":"5561-97636 via BC Conventional Synapse from 97635 -> 97637","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97635,"TargetID":97637,"Directional":true}]},{"ID":9505,"SourceStructureID":5561,"TargetStructureID":97653,"Label":"5561-97653 via Ribbon Synapse from 46309 -> 97654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46309,"TargetID":97654,"Directional":true}]},{"ID":9506,"SourceStructureID":5561,"TargetStructureID":97684,"Label":"5561-97684 via Ribbon Synapse from 48984 -> 97686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48984,"TargetID":97686,"Directional":true}]},{"ID":9507,"SourceStructureID":5561,"TargetStructureID":97707,"Label":"5561-97707 via Ribbon Synapse from 97705 -> 97708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97705,"TargetID":97708,"Directional":true}]},{"ID":9508,"SourceStructureID":5561,"TargetStructureID":97709,"Label":"5561-97709 via Ribbon Synapse from 97705 -> 97710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97705,"TargetID":97710,"Directional":true}]},{"ID":9509,"SourceStructureID":5562,"TargetStructureID":5117,"Label":"5562-5117 via BC Conventional Synapse from 77532 -> 65513","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77532,"TargetID":65513,"Directional":true}]},{"ID":9510,"SourceStructureID":5562,"TargetStructureID":5117,"Label":"5562-5117 via Ribbon Synapse from 65511 -> 65510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65511,"TargetID":65510,"Directional":true}]},{"ID":9511,"SourceStructureID":5562,"TargetStructureID":5294,"Label":"5562-5294 via Ribbon Synapse from 32337 -> 32336, 37649 -> 32336, 37650 -> 32336, 37651 -> 32336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32337,"TargetID":32336,"Directional":true},{"SourceID":37649,"TargetID":32336,"Directional":true},{"SourceID":37650,"TargetID":32336,"Directional":true},{"SourceID":37651,"TargetID":32336,"Directional":true}]},{"ID":9512,"SourceStructureID":5562,"TargetStructureID":8576,"Label":"5562-8576 via Ribbon Synapse from 20060 -> 20059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20060,"TargetID":20059,"Directional":true}]},{"ID":9513,"SourceStructureID":5562,"TargetStructureID":18282,"Label":"5562-18282 via Ribbon Synapse from 31445 -> 31443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31445,"TargetID":31443,"Directional":true}]},{"ID":9514,"SourceStructureID":5562,"TargetStructureID":24148,"Label":"5562-24148 via Ribbon Synapse from 48948 -> 147570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48948,"TargetID":147570,"Directional":true}]},{"ID":9515,"SourceStructureID":5562,"TargetStructureID":31024,"Label":"5562-31024 via Ribbon Synapse from 31044 -> 31043, 31051 -> 31159, 31064 -> 31047, 31359 -> 31160, 49518 -> 78898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31044,"TargetID":31043,"Directional":true},{"SourceID":31051,"TargetID":31159,"Directional":true},{"SourceID":31064,"TargetID":31047,"Directional":true},{"SourceID":31359,"TargetID":31160,"Directional":true},{"SourceID":49518,"TargetID":78898,"Directional":true}]},{"ID":9516,"SourceStructureID":5562,"TargetStructureID":33092,"Label":"5562-33092 via Ribbon Synapse from 25324 -> 38292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25324,"TargetID":38292,"Directional":true}]},{"ID":9517,"SourceStructureID":5562,"TargetStructureID":36516,"Label":"5562-36516 via Ribbon Synapse from 33096 -> 36612, 36522 -> 36521","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33096,"TargetID":36612,"Directional":true},{"SourceID":36522,"TargetID":36521,"Directional":true}]},{"ID":9518,"SourceStructureID":5562,"TargetStructureID":58696,"Label":"5562-58696 via Ribbon Synapse from 63787 -> 86968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63787,"TargetID":86968,"Directional":true}]},{"ID":9519,"SourceStructureID":5562,"TargetStructureID":61816,"Label":"5562-61816 via Ribbon Synapse from 31291 -> 116712, 63215 -> 80727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31291,"TargetID":116712,"Directional":true},{"SourceID":63215,"TargetID":80727,"Directional":true}]},{"ID":9520,"SourceStructureID":5562,"TargetStructureID":63274,"Label":"5562-63274 via BC Conventional Synapse from 80345 -> 80343","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80345,"TargetID":80343,"Directional":true}]},{"ID":9521,"SourceStructureID":5562,"TargetStructureID":63371,"Label":"5562-63371 via BC Conventional Synapse from 63382 -> 63380, 77165 -> 63387","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63382,"TargetID":63380,"Directional":true},{"SourceID":77165,"TargetID":63387,"Directional":true}]},{"ID":9522,"SourceStructureID":5562,"TargetStructureID":63371,"Label":"5562-63371 via Ribbon Synapse from 31299 -> 63388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31299,"TargetID":63388,"Directional":true}]},{"ID":9523,"SourceStructureID":5562,"TargetStructureID":65351,"Label":"5562-65351 via Ribbon Synapse from 77245 -> 78959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77245,"TargetID":78959,"Directional":true}]},{"ID":9524,"SourceStructureID":5562,"TargetStructureID":65366,"Label":"5562-65366 via Ribbon Synapse from 49516 -> 78911, 49516 -> 78912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49516,"TargetID":78911,"Directional":true},{"SourceID":49516,"TargetID":78912,"Directional":true}]},{"ID":9525,"SourceStructureID":5562,"TargetStructureID":66958,"Label":"5562-66958 via Ribbon Synapse from 63876 -> 79633","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63876,"TargetID":79633,"Directional":true}]},{"ID":9526,"SourceStructureID":5562,"TargetStructureID":67269,"Label":"5562-67269 via Ribbon Synapse from 63237 -> 69640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63237,"TargetID":69640,"Directional":true}]},{"ID":9527,"SourceStructureID":5562,"TargetStructureID":68480,"Label":"5562-68480 via Ribbon Synapse from 65511 -> 79641","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65511,"TargetID":79641,"Directional":true}]},{"ID":9528,"SourceStructureID":5562,"TargetStructureID":69049,"Label":"5562-69049 via Ribbon Synapse from 40289 -> 76436, 63267 -> 69060, 63355 -> 69057","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40289,"TargetID":76436,"Directional":true},{"SourceID":63267,"TargetID":69060,"Directional":true},{"SourceID":63355,"TargetID":69057,"Directional":true}]},{"ID":9529,"SourceStructureID":5562,"TargetStructureID":69926,"Label":"5562-69926 via Ribbon Synapse from 48959 -> 72852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48959,"TargetID":72852,"Directional":true}]},{"ID":9530,"SourceStructureID":5562,"TargetStructureID":69930,"Label":"5562-69930 via Ribbon Synapse from 48959 -> 79638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48959,"TargetID":79638,"Directional":true}]},{"ID":9531,"SourceStructureID":5562,"TargetStructureID":76228,"Label":"5562-76228 via Ribbon Synapse from 37636 -> 76229, 37638 -> 76229, 37639 -> 76229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37636,"TargetID":76229,"Directional":true},{"SourceID":37638,"TargetID":76229,"Directional":true},{"SourceID":37639,"TargetID":76229,"Directional":true}]},{"ID":9532,"SourceStructureID":5562,"TargetStructureID":76230,"Label":"5562-76230 via Ribbon Synapse from 37637 -> 76231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37637,"TargetID":76231,"Directional":true}]},{"ID":9533,"SourceStructureID":5562,"TargetStructureID":76233,"Label":"5562-76233 via Ribbon Synapse from 37641 -> 76234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37641,"TargetID":76234,"Directional":true}]},{"ID":9534,"SourceStructureID":5562,"TargetStructureID":76235,"Label":"5562-76235 via BC Conventional Synapse from 76238 -> 76239","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76238,"TargetID":76239,"Directional":true}]},{"ID":9535,"SourceStructureID":5562,"TargetStructureID":76235,"Label":"5562-76235 via Ribbon Synapse from 37642 -> 76236, 37643 -> 76236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37642,"TargetID":76236,"Directional":true},{"SourceID":37643,"TargetID":76236,"Directional":true}]},{"ID":9536,"SourceStructureID":5562,"TargetStructureID":76240,"Label":"5562-76240 via Ribbon Synapse from 37644 -> 76241, 37644 -> 76242, 37645 -> 76242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37644,"TargetID":76241,"Directional":true},{"SourceID":37644,"TargetID":76242,"Directional":true},{"SourceID":37645,"TargetID":76242,"Directional":true}]},{"ID":9537,"SourceStructureID":5562,"TargetStructureID":76243,"Label":"5562-76243 via Ribbon Synapse from 63049 -> 76244","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63049,"TargetID":76244,"Directional":true}]},{"ID":9538,"SourceStructureID":5562,"TargetStructureID":76245,"Label":"5562-76245 via Ribbon Synapse from 63049 -> 76246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63049,"TargetID":76246,"Directional":true}]},{"ID":9539,"SourceStructureID":5562,"TargetStructureID":76247,"Label":"5562-76247 via Ribbon Synapse from 37647 -> 76250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37647,"TargetID":76250,"Directional":true}]},{"ID":9540,"SourceStructureID":5562,"TargetStructureID":76251,"Label":"5562-76251 via Ribbon Synapse from 37649 -> 76252, 37650 -> 76252, 37651 -> 76252, 37652 -> 76252, 37652 -> 76261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37649,"TargetID":76252,"Directional":true},{"SourceID":37650,"TargetID":76252,"Directional":true},{"SourceID":37651,"TargetID":76252,"Directional":true},{"SourceID":37652,"TargetID":76252,"Directional":true},{"SourceID":37652,"TargetID":76261,"Directional":true}]},{"ID":9541,"SourceStructureID":5562,"TargetStructureID":76255,"Label":"5562-76255 via Ribbon Synapse from 37652 -> 76260, 37653 -> 76265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37652,"TargetID":76260,"Directional":true},{"SourceID":37653,"TargetID":76265,"Directional":true}]},{"ID":9542,"SourceStructureID":5562,"TargetStructureID":76262,"Label":"5562-76262 via BC Conventional Synapse from 76264 -> 76263","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76264,"TargetID":76263,"Directional":true}]},{"ID":9543,"SourceStructureID":5562,"TargetStructureID":76275,"Label":"5562-76275 via Ribbon Synapse from 40294 -> 76276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40294,"TargetID":76276,"Directional":true}]},{"ID":9544,"SourceStructureID":5562,"TargetStructureID":76277,"Label":"5562-76277 via Ribbon Synapse from 40294 -> 76278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40294,"TargetID":76278,"Directional":true}]},{"ID":9545,"SourceStructureID":5562,"TargetStructureID":76291,"Label":"5562-76291 via Ribbon Synapse from 40287 -> 76293","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40287,"TargetID":76293,"Directional":true}]},{"ID":9546,"SourceStructureID":5562,"TargetStructureID":76294,"Label":"5562-76294 via Ribbon Synapse from 40286 -> 76295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40286,"TargetID":76295,"Directional":true}]},{"ID":9547,"SourceStructureID":5562,"TargetStructureID":76296,"Label":"5562-76296 via Ribbon Synapse from 40286 -> 76297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40286,"TargetID":76297,"Directional":true}]},{"ID":9548,"SourceStructureID":5562,"TargetStructureID":76302,"Label":"5562-76302 via Ribbon Synapse from 40283 -> 76305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40283,"TargetID":76305,"Directional":true}]},{"ID":9549,"SourceStructureID":5562,"TargetStructureID":76310,"Label":"5562-76310 via Ribbon Synapse from 40285 -> 76312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40285,"TargetID":76312,"Directional":true}]},{"ID":9550,"SourceStructureID":5562,"TargetStructureID":76311,"Label":"5562-76311 via Ribbon Synapse from 40285 -> 76313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40285,"TargetID":76313,"Directional":true}]},{"ID":9551,"SourceStructureID":5562,"TargetStructureID":76317,"Label":"5562-76317 via Ribbon Synapse from 40282 -> 76318","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40282,"TargetID":76318,"Directional":true}]},{"ID":9552,"SourceStructureID":5562,"TargetStructureID":76319,"Label":"5562-76319 via BC Conventional Synapse from 76320 -> 76321","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76320,"TargetID":76321,"Directional":true}]},{"ID":9553,"SourceStructureID":5562,"TargetStructureID":76322,"Label":"5562-76322 via Ribbon Synapse from 40281 -> 76327","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40281,"TargetID":76327,"Directional":true}]},{"ID":9554,"SourceStructureID":5562,"TargetStructureID":76323,"Label":"5562-76323 via Ribbon Synapse from 40281 -> 76325","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40281,"TargetID":76325,"Directional":true}]},{"ID":9555,"SourceStructureID":5562,"TargetStructureID":76324,"Label":"5562-76324 via Ribbon Synapse from 40281 -> 76326","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40281,"TargetID":76326,"Directional":true}]},{"ID":9556,"SourceStructureID":5562,"TargetStructureID":76336,"Label":"5562-76336 via Ribbon Synapse from 40280 -> 76339","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40280,"TargetID":76339,"Directional":true}]},{"ID":9557,"SourceStructureID":5562,"TargetStructureID":76337,"Label":"5562-76337 via Ribbon Synapse from 40280 -> 76338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40280,"TargetID":76338,"Directional":true}]},{"ID":9558,"SourceStructureID":5562,"TargetStructureID":76340,"Label":"5562-76340 via Ribbon Synapse from 40280 -> 76341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40280,"TargetID":76341,"Directional":true}]},{"ID":9559,"SourceStructureID":5562,"TargetStructureID":76365,"Label":"5562-76365 via Ribbon Synapse from 40275 -> 76366","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40275,"TargetID":76366,"Directional":true}]},{"ID":9560,"SourceStructureID":5562,"TargetStructureID":76367,"Label":"5562-76367 via BC Conventional Synapse from 76369 -> 76370","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76369,"TargetID":76370,"Directional":true}]},{"ID":9561,"SourceStructureID":5562,"TargetStructureID":76384,"Label":"5562-76384 via Ribbon Synapse from 31044 -> 76385","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31044,"TargetID":76385,"Directional":true}]},{"ID":9562,"SourceStructureID":5562,"TargetStructureID":76391,"Label":"5562-76391 via Ribbon Synapse from 40270 -> 76393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40270,"TargetID":76393,"Directional":true}]},{"ID":9563,"SourceStructureID":5562,"TargetStructureID":76394,"Label":"5562-76394 via Ribbon Synapse from 40270 -> 76395","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40270,"TargetID":76395,"Directional":true}]},{"ID":9564,"SourceStructureID":5562,"TargetStructureID":76403,"Label":"5562-76403 via BC Conventional Synapse from 76404 -> 76405","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76404,"TargetID":76405,"Directional":true}]},{"ID":9565,"SourceStructureID":5562,"TargetStructureID":76406,"Label":"5562-76406 via Ribbon Synapse from 40269 -> 76408","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40269,"TargetID":76408,"Directional":true}]},{"ID":9566,"SourceStructureID":5562,"TargetStructureID":76409,"Label":"5562-76409 via Ribbon Synapse from 40267 -> 76416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40267,"TargetID":76416,"Directional":true}]},{"ID":9567,"SourceStructureID":5562,"TargetStructureID":76414,"Label":"5562-76414 via Ribbon Synapse from 40267 -> 76415","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40267,"TargetID":76415,"Directional":true}]},{"ID":9568,"SourceStructureID":5562,"TargetStructureID":76419,"Label":"5562-76419 via Ribbon Synapse from 40267 -> 76420","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40267,"TargetID":76420,"Directional":true}]},{"ID":9569,"SourceStructureID":5562,"TargetStructureID":76430,"Label":"5562-76430 via Ribbon Synapse from 40289 -> 76434","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40289,"TargetID":76434,"Directional":true}]},{"ID":9570,"SourceStructureID":5562,"TargetStructureID":76432,"Label":"5562-76432 via Ribbon Synapse from 40289 -> 76437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40289,"TargetID":76437,"Directional":true}]},{"ID":9571,"SourceStructureID":5562,"TargetStructureID":76433,"Label":"5562-76433 via Ribbon Synapse from 40289 -> 76435","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40289,"TargetID":76435,"Directional":true}]},{"ID":9572,"SourceStructureID":5562,"TargetStructureID":76446,"Label":"5562-76446 via Ribbon Synapse from 76514 -> 76515","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76514,"TargetID":76515,"Directional":true}]},{"ID":9573,"SourceStructureID":5562,"TargetStructureID":76450,"Label":"5562-76450 via Ribbon Synapse from 40292 -> 76451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40292,"TargetID":76451,"Directional":true}]},{"ID":9574,"SourceStructureID":5562,"TargetStructureID":76452,"Label":"5562-76452 via Ribbon Synapse from 40292 -> 76453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40292,"TargetID":76453,"Directional":true}]},{"ID":9575,"SourceStructureID":5562,"TargetStructureID":76457,"Label":"5562-76457 via BC Conventional Synapse from 76456 -> 76458","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76456,"TargetID":76458,"Directional":true}]},{"ID":9576,"SourceStructureID":5562,"TargetStructureID":76510,"Label":"5562-76510 via Unknown from 76509 -> 76511","Type":"Unknown","Directional":true,"Links":[{"SourceID":76509,"TargetID":76511,"Directional":true}]},{"ID":9577,"SourceStructureID":5562,"TargetStructureID":76526,"Label":"5562-76526 via Ribbon Synapse from 49397 -> 76527","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49397,"TargetID":76527,"Directional":true}]},{"ID":9578,"SourceStructureID":5562,"TargetStructureID":76531,"Label":"5562-76531 via Ribbon Synapse from 49397 -> 76532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49397,"TargetID":76532,"Directional":true}]},{"ID":9579,"SourceStructureID":5562,"TargetStructureID":76545,"Label":"5562-76545 via Ribbon Synapse from 63212 -> 76546","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63212,"TargetID":76546,"Directional":true}]},{"ID":9580,"SourceStructureID":5562,"TargetStructureID":76548,"Label":"5562-76548 via Ribbon Synapse from 63211 -> 76549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63211,"TargetID":76549,"Directional":true}]},{"ID":9581,"SourceStructureID":5562,"TargetStructureID":76561,"Label":"5562-76561 via BC Conventional Synapse from 76560 -> 76562","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76560,"TargetID":76562,"Directional":true}]},{"ID":9582,"SourceStructureID":5562,"TargetStructureID":76573,"Label":"5562-76573 via Ribbon Synapse from 49395 -> 76575","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49395,"TargetID":76575,"Directional":true}]},{"ID":9583,"SourceStructureID":5562,"TargetStructureID":76574,"Label":"5562-76574 via Ribbon Synapse from 49395 -> 76576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49395,"TargetID":76576,"Directional":true}]},{"ID":9584,"SourceStructureID":5562,"TargetStructureID":76593,"Label":"5562-76593 via Ribbon Synapse from 49393 -> 76602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49393,"TargetID":76602,"Directional":true}]},{"ID":9585,"SourceStructureID":5562,"TargetStructureID":76600,"Label":"5562-76600 via Ribbon Synapse from 49393 -> 76601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49393,"TargetID":76601,"Directional":true}]},{"ID":9586,"SourceStructureID":5562,"TargetStructureID":76610,"Label":"5562-76610 via Unknown from 76608 -> 76611","Type":"Unknown","Directional":true,"Links":[{"SourceID":76608,"TargetID":76611,"Directional":true}]},{"ID":9587,"SourceStructureID":5562,"TargetStructureID":76619,"Label":"5562-76619 via Ribbon Synapse from 63215 -> 76624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63215,"TargetID":76624,"Directional":true}]},{"ID":9588,"SourceStructureID":5562,"TargetStructureID":76620,"Label":"5562-76620 via Ribbon Synapse from 63215 -> 76623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63215,"TargetID":76623,"Directional":true}]},{"ID":9589,"SourceStructureID":5562,"TargetStructureID":76625,"Label":"5562-76625 via BC Conventional Synapse from 76626 -> 76627","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76626,"TargetID":76627,"Directional":true}]},{"ID":9590,"SourceStructureID":5562,"TargetStructureID":76646,"Label":"5562-76646 via Ribbon Synapse from 49392 -> 76647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49392,"TargetID":76647,"Directional":true}]},{"ID":9591,"SourceStructureID":5562,"TargetStructureID":76653,"Label":"5562-76653 via BC Conventional Synapse from 76652 -> 92085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76652,"TargetID":92085,"Directional":true}]},{"ID":9592,"SourceStructureID":5562,"TargetStructureID":76663,"Label":"5562-76663 via Ribbon Synapse from 31301 -> 76664","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31301,"TargetID":76664,"Directional":true}]},{"ID":9593,"SourceStructureID":5562,"TargetStructureID":76665,"Label":"5562-76665 via Ribbon Synapse from 31301 -> 76666","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31301,"TargetID":76666,"Directional":true}]},{"ID":9594,"SourceStructureID":5562,"TargetStructureID":76671,"Label":"5562-76671 via BC Conventional Synapse from 76672 -> 76673","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76672,"TargetID":76673,"Directional":true}]},{"ID":9595,"SourceStructureID":5562,"TargetStructureID":76677,"Label":"5562-76677 via Ribbon Synapse from 76676 -> 76679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76676,"TargetID":76679,"Directional":true}]},{"ID":9596,"SourceStructureID":5562,"TargetStructureID":76704,"Label":"5562-76704 via BC Conventional Synapse from 76705 -> 76706","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76705,"TargetID":76706,"Directional":true}]},{"ID":9597,"SourceStructureID":5562,"TargetStructureID":76711,"Label":"5562-76711 via Ribbon Synapse from 49391 -> 76712","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49391,"TargetID":76712,"Directional":true}]},{"ID":9598,"SourceStructureID":5562,"TargetStructureID":76724,"Label":"5562-76724 via Ribbon Synapse from 47311 -> 76716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47311,"TargetID":76716,"Directional":true}]},{"ID":9599,"SourceStructureID":5562,"TargetStructureID":76730,"Label":"5562-76730 via Ribbon Synapse from 47359 -> 76731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47359,"TargetID":76731,"Directional":true}]},{"ID":9600,"SourceStructureID":5562,"TargetStructureID":76732,"Label":"5562-76732 via Ribbon Synapse from 47359 -> 76734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47359,"TargetID":76734,"Directional":true}]},{"ID":9601,"SourceStructureID":5562,"TargetStructureID":76904,"Label":"5562-76904 via Ribbon Synapse from 47305 -> 76905","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47305,"TargetID":76905,"Directional":true}]},{"ID":9602,"SourceStructureID":5562,"TargetStructureID":76917,"Label":"5562-76917 via Ribbon Synapse from 134311 -> 76918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134311,"TargetID":76918,"Directional":true}]},{"ID":9603,"SourceStructureID":5562,"TargetStructureID":76956,"Label":"5562-76956 via Ribbon Synapse from 63233 -> 76957","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63233,"TargetID":76957,"Directional":true}]},{"ID":9604,"SourceStructureID":5562,"TargetStructureID":77103,"Label":"5562-77103 via Ribbon Synapse from 63233 -> 77104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63233,"TargetID":77104,"Directional":true}]},{"ID":9605,"SourceStructureID":5562,"TargetStructureID":77105,"Label":"5562-77105 via Ribbon Synapse from 63233 -> 77106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63233,"TargetID":77106,"Directional":true}]},{"ID":9606,"SourceStructureID":5562,"TargetStructureID":77109,"Label":"5562-77109 via Ribbon Synapse from 63230 -> 77112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63230,"TargetID":77112,"Directional":true}]},{"ID":9607,"SourceStructureID":5562,"TargetStructureID":77110,"Label":"5562-77110 via Ribbon Synapse from 63230 -> 77111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63230,"TargetID":77111,"Directional":true}]},{"ID":9608,"SourceStructureID":5562,"TargetStructureID":77130,"Label":"5562-77130 via Ribbon Synapse from 31296 -> 77131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31296,"TargetID":77131,"Directional":true}]},{"ID":9609,"SourceStructureID":5562,"TargetStructureID":77132,"Label":"5562-77132 via Ribbon Synapse from 31296 -> 77133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31296,"TargetID":77133,"Directional":true}]},{"ID":9610,"SourceStructureID":5562,"TargetStructureID":77134,"Label":"5562-77134 via BC Conventional Synapse from 77136 -> 77135","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77136,"TargetID":77135,"Directional":true}]},{"ID":9611,"SourceStructureID":5562,"TargetStructureID":77137,"Label":"5562-77137 via Ribbon Synapse from 134318 -> 134320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134318,"TargetID":134320,"Directional":true}]},{"ID":9612,"SourceStructureID":5562,"TargetStructureID":77149,"Label":"5562-77149 via BC Conventional Synapse from 81505 -> 81506","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81505,"TargetID":81506,"Directional":true}]},{"ID":9613,"SourceStructureID":5562,"TargetStructureID":77172,"Label":"5562-77172 via Ribbon Synapse from 77205 -> 77208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77205,"TargetID":77208,"Directional":true}]},{"ID":9614,"SourceStructureID":5562,"TargetStructureID":77175,"Label":"5562-77175 via Ribbon Synapse from 31291 -> 77176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31291,"TargetID":77176,"Directional":true}]},{"ID":9615,"SourceStructureID":5562,"TargetStructureID":77183,"Label":"5562-77183 via Ribbon Synapse from 31293 -> 77184","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31293,"TargetID":77184,"Directional":true}]},{"ID":9616,"SourceStructureID":5562,"TargetStructureID":77186,"Label":"5562-77186 via Ribbon Synapse from 134318 -> 134319","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134318,"TargetID":134319,"Directional":true}]},{"ID":9617,"SourceStructureID":5562,"TargetStructureID":77206,"Label":"5562-77206 via Ribbon Synapse from 77205 -> 77207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77205,"TargetID":77207,"Directional":true}]},{"ID":9618,"SourceStructureID":5562,"TargetStructureID":77212,"Label":"5562-77212 via Ribbon Synapse from 77213 -> 77214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77213,"TargetID":77214,"Directional":true}]},{"ID":9619,"SourceStructureID":5562,"TargetStructureID":77215,"Label":"5562-77215 via Ribbon Synapse from 77213 -> 77216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77213,"TargetID":77216,"Directional":true}]},{"ID":9620,"SourceStructureID":5562,"TargetStructureID":77228,"Label":"5562-77228 via Ribbon Synapse from 77231 -> 77234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77231,"TargetID":77234,"Directional":true}]},{"ID":9621,"SourceStructureID":5562,"TargetStructureID":77232,"Label":"5562-77232 via Ribbon Synapse from 77231 -> 77233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77231,"TargetID":77233,"Directional":true}]},{"ID":9622,"SourceStructureID":5562,"TargetStructureID":77246,"Label":"5562-77246 via Ribbon Synapse from 77245 -> 77247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77245,"TargetID":77247,"Directional":true}]},{"ID":9623,"SourceStructureID":5562,"TargetStructureID":77259,"Label":"5562-77259 via Unknown from 77258 -> 77260","Type":"Unknown","Directional":true,"Links":[{"SourceID":77258,"TargetID":77260,"Directional":true}]},{"ID":9624,"SourceStructureID":5562,"TargetStructureID":77272,"Label":"5562-77272 via Ribbon Synapse from 49562 -> 77273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49562,"TargetID":77273,"Directional":true}]},{"ID":9625,"SourceStructureID":5562,"TargetStructureID":77274,"Label":"5562-77274 via Ribbon Synapse from 49562 -> 77275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49562,"TargetID":77275,"Directional":true}]},{"ID":9626,"SourceStructureID":5562,"TargetStructureID":77276,"Label":"5562-77276 via Ribbon Synapse from 49562 -> 77277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49562,"TargetID":77277,"Directional":true}]},{"ID":9627,"SourceStructureID":5562,"TargetStructureID":77304,"Label":"5562-77304 via Ribbon Synapse from 49559 -> 77307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49559,"TargetID":77307,"Directional":true}]},{"ID":9628,"SourceStructureID":5562,"TargetStructureID":77305,"Label":"5562-77305 via Ribbon Synapse from 49559 -> 77306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49559,"TargetID":77306,"Directional":true}]},{"ID":9629,"SourceStructureID":5562,"TargetStructureID":77313,"Label":"5562-77313 via BC Conventional Synapse from 77315 -> 77314","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77315,"TargetID":77314,"Directional":true}]},{"ID":9630,"SourceStructureID":5562,"TargetStructureID":77316,"Label":"5562-77316 via Ribbon Synapse from 25324 -> 77320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25324,"TargetID":77320,"Directional":true}]},{"ID":9631,"SourceStructureID":5562,"TargetStructureID":77321,"Label":"5562-77321 via Ribbon Synapse from 25324 -> 77322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25324,"TargetID":77322,"Directional":true}]},{"ID":9632,"SourceStructureID":5562,"TargetStructureID":77441,"Label":"5562-77441 via Ribbon Synapse from 49563 -> 77443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49563,"TargetID":77443,"Directional":true}]},{"ID":9633,"SourceStructureID":5562,"TargetStructureID":77463,"Label":"5562-77463 via Ribbon Synapse from 77467 -> 77468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77467,"TargetID":77468,"Directional":true}]},{"ID":9634,"SourceStructureID":5562,"TargetStructureID":77479,"Label":"5562-77479 via Ribbon Synapse from 77471 -> 77480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77471,"TargetID":77480,"Directional":true}]},{"ID":9635,"SourceStructureID":5562,"TargetStructureID":77481,"Label":"5562-77481 via Ribbon Synapse from 77471 -> 77482","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77471,"TargetID":77482,"Directional":true}]},{"ID":9636,"SourceStructureID":5562,"TargetStructureID":77487,"Label":"5562-77487 via Ribbon Synapse from 77483 -> 77491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77483,"TargetID":77491,"Directional":true}]},{"ID":9637,"SourceStructureID":5562,"TargetStructureID":77488,"Label":"5562-77488 via Ribbon Synapse from 77483 -> 77489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77483,"TargetID":77489,"Directional":true}]},{"ID":9638,"SourceStructureID":5562,"TargetStructureID":77490,"Label":"5562-77490 via BC Conventional Synapse from 78320 -> 78321","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78320,"TargetID":78321,"Directional":true}]},{"ID":9639,"SourceStructureID":5562,"TargetStructureID":77495,"Label":"5562-77495 via Ribbon Synapse from 77494 -> 77498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77494,"TargetID":77498,"Directional":true}]},{"ID":9640,"SourceStructureID":5562,"TargetStructureID":77496,"Label":"5562-77496 via Ribbon Synapse from 77494 -> 77497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77494,"TargetID":77497,"Directional":true}]},{"ID":9641,"SourceStructureID":5562,"TargetStructureID":77500,"Label":"5562-77500 via Ribbon Synapse from 77499 -> 77501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77499,"TargetID":77501,"Directional":true}]},{"ID":9642,"SourceStructureID":5562,"TargetStructureID":77502,"Label":"5562-77502 via Ribbon Synapse from 77499 -> 77503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77499,"TargetID":77503,"Directional":true}]},{"ID":9643,"SourceStructureID":5562,"TargetStructureID":77525,"Label":"5562-77525 via Ribbon Synapse from 77526 -> 77527","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77526,"TargetID":77527,"Directional":true}]},{"ID":9644,"SourceStructureID":5562,"TargetStructureID":77545,"Label":"5562-77545 via Ribbon Synapse from 76853 -> 77546","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76853,"TargetID":77546,"Directional":true}]},{"ID":9645,"SourceStructureID":5562,"TargetStructureID":77550,"Label":"5562-77550 via BC Conventional Synapse from 77552 -> 77551","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77552,"TargetID":77551,"Directional":true}]},{"ID":9646,"SourceStructureID":5562,"TargetStructureID":77589,"Label":"5562-77589 via BC Conventional Synapse from 77591 -> 77592","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77591,"TargetID":77592,"Directional":true}]},{"ID":9647,"SourceStructureID":5562,"TargetStructureID":77607,"Label":"5562-77607 via Ribbon Synapse from 63252 -> 77608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63252,"TargetID":77608,"Directional":true}]},{"ID":9648,"SourceStructureID":5562,"TargetStructureID":77612,"Label":"5562-77612 via BC Conventional Synapse from 77723 -> 77724","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77723,"TargetID":77724,"Directional":true}]},{"ID":9649,"SourceStructureID":5562,"TargetStructureID":77747,"Label":"5562-77747 via BC Conventional Synapse from 77748 -> 77749","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77748,"TargetID":77749,"Directional":true}]},{"ID":9650,"SourceStructureID":5562,"TargetStructureID":77756,"Label":"5562-77756 via Ribbon Synapse from 63254 -> 77761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63254,"TargetID":77761,"Directional":true}]},{"ID":9651,"SourceStructureID":5562,"TargetStructureID":77757,"Label":"5562-77757 via Ribbon Synapse from 63254 -> 77760","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63254,"TargetID":77760,"Directional":true}]},{"ID":9652,"SourceStructureID":5562,"TargetStructureID":77758,"Label":"5562-77758 via Ribbon Synapse from 63254 -> 77759","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63254,"TargetID":77759,"Directional":true}]},{"ID":9653,"SourceStructureID":5562,"TargetStructureID":77762,"Label":"5562-77762 via Ribbon Synapse from 31051 -> 77763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31051,"TargetID":77763,"Directional":true}]},{"ID":9654,"SourceStructureID":5562,"TargetStructureID":77764,"Label":"5562-77764 via Ribbon Synapse from 31052 -> 77767","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31052,"TargetID":77767,"Directional":true}]},{"ID":9655,"SourceStructureID":5562,"TargetStructureID":77765,"Label":"5562-77765 via Ribbon Synapse from 31052 -> 77766","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31052,"TargetID":77766,"Directional":true}]},{"ID":9656,"SourceStructureID":5562,"TargetStructureID":77777,"Label":"5562-77777 via Ribbon Synapse from 63256 -> 77778, 63256 -> 77779","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63256,"TargetID":77778,"Directional":true},{"SourceID":63256,"TargetID":77779,"Directional":true}]},{"ID":9657,"SourceStructureID":5562,"TargetStructureID":77780,"Label":"5562-77780 via Ribbon Synapse from 63256 -> 77781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63256,"TargetID":77781,"Directional":true}]},{"ID":9658,"SourceStructureID":5562,"TargetStructureID":77792,"Label":"5562-77792 via Ribbon Synapse from 63260 -> 77795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63260,"TargetID":77795,"Directional":true}]},{"ID":9659,"SourceStructureID":5562,"TargetStructureID":77793,"Label":"5562-77793 via Ribbon Synapse from 63260 -> 77794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63260,"TargetID":77794,"Directional":true}]},{"ID":9660,"SourceStructureID":5562,"TargetStructureID":77800,"Label":"5562-77800 via Ribbon Synapse from 63264 -> 77802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63264,"TargetID":77802,"Directional":true}]},{"ID":9661,"SourceStructureID":5562,"TargetStructureID":77805,"Label":"5562-77805 via Ribbon Synapse from 63262 -> 77806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63262,"TargetID":77806,"Directional":true}]},{"ID":9662,"SourceStructureID":5562,"TargetStructureID":77807,"Label":"5562-77807 via Ribbon Synapse from 37728 -> 77808","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37728,"TargetID":77808,"Directional":true}]},{"ID":9663,"SourceStructureID":5562,"TargetStructureID":77809,"Label":"5562-77809 via Ribbon Synapse from 37728 -> 77810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37728,"TargetID":77810,"Directional":true}]},{"ID":9664,"SourceStructureID":5562,"TargetStructureID":77836,"Label":"5562-77836 via Ribbon Synapse from 63267 -> 77837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63267,"TargetID":77837,"Directional":true}]},{"ID":9665,"SourceStructureID":5562,"TargetStructureID":77840,"Label":"5562-77840 via BC Conventional Synapse from 77860 -> 82414, 93084 -> 93083, 135142 -> 135143","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77860,"TargetID":82414,"Directional":true},{"SourceID":93084,"TargetID":93083,"Directional":true},{"SourceID":135142,"TargetID":135143,"Directional":true}]},{"ID":9666,"SourceStructureID":5562,"TargetStructureID":77875,"Label":"5562-77875 via Ribbon Synapse from 63276 -> 77878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63276,"TargetID":77878,"Directional":true}]},{"ID":9667,"SourceStructureID":5562,"TargetStructureID":77876,"Label":"5562-77876 via Ribbon Synapse from 63276 -> 77877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63276,"TargetID":77877,"Directional":true}]},{"ID":9668,"SourceStructureID":5562,"TargetStructureID":77896,"Label":"5562-77896 via Ribbon Synapse from 63279 -> 77897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63279,"TargetID":77897,"Directional":true}]},{"ID":9669,"SourceStructureID":5562,"TargetStructureID":77900,"Label":"5562-77900 via Ribbon Synapse from 63279 -> 77901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63279,"TargetID":77901,"Directional":true}]},{"ID":9670,"SourceStructureID":5562,"TargetStructureID":78088,"Label":"5562-78088 via Ribbon Synapse from 31055 -> 78089","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31055,"TargetID":78089,"Directional":true}]},{"ID":9671,"SourceStructureID":5562,"TargetStructureID":78090,"Label":"5562-78090 via Ribbon Synapse from 31057 -> 78091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31057,"TargetID":78091,"Directional":true}]},{"ID":9672,"SourceStructureID":5562,"TargetStructureID":78098,"Label":"5562-78098 via BC Conventional Synapse from 63329 -> 82413","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63329,"TargetID":82413,"Directional":true}]},{"ID":9673,"SourceStructureID":5562,"TargetStructureID":78105,"Label":"5562-78105 via BC Conventional Synapse from 63335 -> 78106","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63335,"TargetID":78106,"Directional":true}]},{"ID":9674,"SourceStructureID":5562,"TargetStructureID":78112,"Label":"5562-78112 via Ribbon Synapse from 31060 -> 78113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31060,"TargetID":78113,"Directional":true}]},{"ID":9675,"SourceStructureID":5562,"TargetStructureID":78115,"Label":"5562-78115 via Ribbon Synapse from 63330 -> 78117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63330,"TargetID":78117,"Directional":true}]},{"ID":9676,"SourceStructureID":5562,"TargetStructureID":78124,"Label":"5562-78124 via Ribbon Synapse from 48473 -> 78133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48473,"TargetID":78133,"Directional":true}]},{"ID":9677,"SourceStructureID":5562,"TargetStructureID":78126,"Label":"5562-78126 via BC Conventional Synapse from 78848 -> 78849","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78848,"TargetID":78849,"Directional":true}]},{"ID":9678,"SourceStructureID":5562,"TargetStructureID":78134,"Label":"5562-78134 via Ribbon Synapse from 48473 -> 78135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48473,"TargetID":78135,"Directional":true}]},{"ID":9679,"SourceStructureID":5562,"TargetStructureID":78139,"Label":"5562-78139 via Ribbon Synapse from 31062 -> 78140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31062,"TargetID":78140,"Directional":true}]},{"ID":9680,"SourceStructureID":5562,"TargetStructureID":78155,"Label":"5562-78155 via Ribbon Synapse from 63340 -> 78156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63340,"TargetID":78156,"Directional":true}]},{"ID":9681,"SourceStructureID":5562,"TargetStructureID":78166,"Label":"5562-78166 via Ribbon Synapse from 48463 -> 78167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48463,"TargetID":78167,"Directional":true}]},{"ID":9682,"SourceStructureID":5562,"TargetStructureID":78168,"Label":"5562-78168 via Ribbon Synapse from 63611 -> 78169","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63611,"TargetID":78169,"Directional":true}]},{"ID":9683,"SourceStructureID":5562,"TargetStructureID":78170,"Label":"5562-78170 via Ribbon Synapse from 63611 -> 78171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63611,"TargetID":78171,"Directional":true}]},{"ID":9684,"SourceStructureID":5562,"TargetStructureID":78174,"Label":"5562-78174 via BC Conventional Synapse from 48469 -> 78175","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":48469,"TargetID":78175,"Directional":true}]},{"ID":9685,"SourceStructureID":5562,"TargetStructureID":78191,"Label":"5562-78191 via Ribbon Synapse from 63350 -> 78193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63350,"TargetID":78193,"Directional":true}]},{"ID":9686,"SourceStructureID":5562,"TargetStructureID":78194,"Label":"5562-78194 via Ribbon Synapse from 63350 -> 78195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63350,"TargetID":78195,"Directional":true}]},{"ID":9687,"SourceStructureID":5562,"TargetStructureID":78196,"Label":"5562-78196 via Ribbon Synapse from 63350 -> 78197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63350,"TargetID":78197,"Directional":true}]},{"ID":9688,"SourceStructureID":5562,"TargetStructureID":78202,"Label":"5562-78202 via BC Conventional Synapse from 134447 -> 134448","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134447,"TargetID":134448,"Directional":true}]},{"ID":9689,"SourceStructureID":5562,"TargetStructureID":78205,"Label":"5562-78205 via Ribbon Synapse from 63354 -> 78206","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63354,"TargetID":78206,"Directional":true}]},{"ID":9690,"SourceStructureID":5562,"TargetStructureID":78220,"Label":"5562-78220 via Ribbon Synapse from 63354 -> 82475","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63354,"TargetID":82475,"Directional":true}]},{"ID":9691,"SourceStructureID":5562,"TargetStructureID":78222,"Label":"5562-78222 via BC Conventional Synapse from 78234 -> 78236","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78234,"TargetID":78236,"Directional":true}]},{"ID":9692,"SourceStructureID":5562,"TargetStructureID":78262,"Label":"5562-78262 via BC Conventional Synapse from 79905 -> 79906","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79905,"TargetID":79906,"Directional":true}]},{"ID":9693,"SourceStructureID":5562,"TargetStructureID":78262,"Label":"5562-78262 via Ribbon Synapse from 49009 -> 79768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49009,"TargetID":79768,"Directional":true}]},{"ID":9694,"SourceStructureID":5562,"TargetStructureID":78283,"Label":"5562-78283 via Ribbon Synapse from 63364 -> 78286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63364,"TargetID":78286,"Directional":true}]},{"ID":9695,"SourceStructureID":5562,"TargetStructureID":78284,"Label":"5562-78284 via Ribbon Synapse from 63364 -> 78285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63364,"TargetID":78285,"Directional":true}]},{"ID":9696,"SourceStructureID":5562,"TargetStructureID":78343,"Label":"5562-78343 via Ribbon Synapse from 78347 -> 78345","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78347,"TargetID":78345,"Directional":true}]},{"ID":9697,"SourceStructureID":5562,"TargetStructureID":78355,"Label":"5562-78355 via Ribbon Synapse from 78347 -> 82713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78347,"TargetID":82713,"Directional":true}]},{"ID":9698,"SourceStructureID":5562,"TargetStructureID":78364,"Label":"5562-78364 via Ribbon Synapse from 63530 -> 78373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63530,"TargetID":78373,"Directional":true}]},{"ID":9699,"SourceStructureID":5562,"TargetStructureID":78374,"Label":"5562-78374 via BC Conventional Synapse from 78376 -> 78375","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78376,"TargetID":78375,"Directional":true}]},{"ID":9700,"SourceStructureID":5562,"TargetStructureID":78398,"Label":"5562-78398 via Ribbon Synapse from 31049 -> 78399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31049,"TargetID":78399,"Directional":true}]},{"ID":9701,"SourceStructureID":5562,"TargetStructureID":78400,"Label":"5562-78400 via Ribbon Synapse from 31049 -> 78401","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31049,"TargetID":78401,"Directional":true}]},{"ID":9702,"SourceStructureID":5562,"TargetStructureID":78469,"Label":"5562-78469 via Ribbon Synapse from 49537 -> 78470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49537,"TargetID":78470,"Directional":true}]},{"ID":9703,"SourceStructureID":5562,"TargetStructureID":78473,"Label":"5562-78473 via Ribbon Synapse from 40297 -> 78474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40297,"TargetID":78474,"Directional":true}]},{"ID":9704,"SourceStructureID":5562,"TargetStructureID":78475,"Label":"5562-78475 via BC Conventional Synapse from 78476 -> 78477","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78476,"TargetID":78477,"Directional":true}]},{"ID":9705,"SourceStructureID":5562,"TargetStructureID":78483,"Label":"5562-78483 via BC Conventional Synapse from 134461 -> 134462","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134461,"TargetID":134462,"Directional":true}]},{"ID":9706,"SourceStructureID":5562,"TargetStructureID":78493,"Label":"5562-78493 via Ribbon Synapse from 40298 -> 78494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40298,"TargetID":78494,"Directional":true}]},{"ID":9707,"SourceStructureID":5562,"TargetStructureID":78495,"Label":"5562-78495 via Ribbon Synapse from 40298 -> 78496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40298,"TargetID":78496,"Directional":true}]},{"ID":9708,"SourceStructureID":5562,"TargetStructureID":78497,"Label":"5562-78497 via Ribbon Synapse from 40299 -> 78498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40299,"TargetID":78498,"Directional":true}]},{"ID":9709,"SourceStructureID":5562,"TargetStructureID":78499,"Label":"5562-78499 via Ribbon Synapse from 40299 -> 78500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40299,"TargetID":78500,"Directional":true}]},{"ID":9710,"SourceStructureID":5562,"TargetStructureID":78514,"Label":"5562-78514 via Ribbon Synapse from 63646 -> 78516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63646,"TargetID":78516,"Directional":true}]},{"ID":9711,"SourceStructureID":5562,"TargetStructureID":78515,"Label":"5562-78515 via Ribbon Synapse from 63646 -> 78517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63646,"TargetID":78517,"Directional":true}]},{"ID":9712,"SourceStructureID":5562,"TargetStructureID":78523,"Label":"5562-78523 via Ribbon Synapse from 63655 -> 78525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63655,"TargetID":78525,"Directional":true}]},{"ID":9713,"SourceStructureID":5562,"TargetStructureID":78548,"Label":"5562-78548 via BC Conventional Synapse from 63659 -> 78549","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63659,"TargetID":78549,"Directional":true}]},{"ID":9714,"SourceStructureID":5562,"TargetStructureID":78556,"Label":"5562-78556 via Ribbon Synapse from 40301 -> 78559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40301,"TargetID":78559,"Directional":true}]},{"ID":9715,"SourceStructureID":5562,"TargetStructureID":78557,"Label":"5562-78557 via Ribbon Synapse from 40301 -> 78558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40301,"TargetID":78558,"Directional":true}]},{"ID":9716,"SourceStructureID":5562,"TargetStructureID":78564,"Label":"5562-78564 via BC Conventional Synapse from 134463 -> 134464","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134463,"TargetID":134464,"Directional":true}]},{"ID":9717,"SourceStructureID":5562,"TargetStructureID":78582,"Label":"5562-78582 via BC Conventional Synapse from 93090 -> 93089","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93090,"TargetID":93089,"Directional":true}]},{"ID":9718,"SourceStructureID":5562,"TargetStructureID":78596,"Label":"5562-78596 via Ribbon Synapse from 63675 -> 78597","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63675,"TargetID":78597,"Directional":true}]},{"ID":9719,"SourceStructureID":5562,"TargetStructureID":78598,"Label":"5562-78598 via Ribbon Synapse from 63675 -> 78599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63675,"TargetID":78599,"Directional":true}]},{"ID":9720,"SourceStructureID":5562,"TargetStructureID":78600,"Label":"5562-78600 via Ribbon Synapse from 63673 -> 78601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63673,"TargetID":78601,"Directional":true}]},{"ID":9721,"SourceStructureID":5562,"TargetStructureID":78602,"Label":"5562-78602 via Ribbon Synapse from 63673 -> 78603","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63673,"TargetID":78603,"Directional":true}]},{"ID":9722,"SourceStructureID":5562,"TargetStructureID":78610,"Label":"5562-78610 via Ribbon Synapse from 132072 -> 78611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132072,"TargetID":78611,"Directional":true}]},{"ID":9723,"SourceStructureID":5562,"TargetStructureID":78621,"Label":"5562-78621 via Ribbon Synapse from 63679 -> 78622","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63679,"TargetID":78622,"Directional":true}]},{"ID":9724,"SourceStructureID":5562,"TargetStructureID":78623,"Label":"5562-78623 via Ribbon Synapse from 63679 -> 78624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63679,"TargetID":78624,"Directional":true}]},{"ID":9725,"SourceStructureID":5562,"TargetStructureID":78626,"Label":"5562-78626 via BC Conventional Synapse from 78625 -> 78627","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78625,"TargetID":78627,"Directional":true}]},{"ID":9726,"SourceStructureID":5562,"TargetStructureID":78628,"Label":"5562-78628 via Ribbon Synapse from 63681 -> 78631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63681,"TargetID":78631,"Directional":true}]},{"ID":9727,"SourceStructureID":5562,"TargetStructureID":78629,"Label":"5562-78629 via Ribbon Synapse from 63681 -> 78630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63681,"TargetID":78630,"Directional":true}]},{"ID":9728,"SourceStructureID":5562,"TargetStructureID":78632,"Label":"5562-78632 via BC Conventional Synapse from 78633 -> 78634","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78633,"TargetID":78634,"Directional":true}]},{"ID":9729,"SourceStructureID":5562,"TargetStructureID":78635,"Label":"5562-78635 via Ribbon Synapse from 63680 -> 78636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63680,"TargetID":78636,"Directional":true}]},{"ID":9730,"SourceStructureID":5562,"TargetStructureID":78647,"Label":"5562-78647 via Ribbon Synapse from 54210 -> 78649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54210,"TargetID":78649,"Directional":true}]},{"ID":9731,"SourceStructureID":5562,"TargetStructureID":78652,"Label":"5562-78652 via Ribbon Synapse from 49416 -> 78653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49416,"TargetID":78653,"Directional":true}]},{"ID":9732,"SourceStructureID":5562,"TargetStructureID":78656,"Label":"5562-78656 via Ribbon Synapse from 49417 -> 78657","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49417,"TargetID":78657,"Directional":true}]},{"ID":9733,"SourceStructureID":5562,"TargetStructureID":78658,"Label":"5562-78658 via Ribbon Synapse from 49417 -> 78659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49417,"TargetID":78659,"Directional":true}]},{"ID":9734,"SourceStructureID":5562,"TargetStructureID":78663,"Label":"5562-78663 via Ribbon Synapse from 63704 -> 78664","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63704,"TargetID":78664,"Directional":true}]},{"ID":9735,"SourceStructureID":5562,"TargetStructureID":78675,"Label":"5562-78675 via Ribbon Synapse from 54210 -> 78676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54210,"TargetID":78676,"Directional":true}]},{"ID":9736,"SourceStructureID":5562,"TargetStructureID":78684,"Label":"5562-78684 via Ribbon Synapse from 49566 -> 78685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49566,"TargetID":78685,"Directional":true}]},{"ID":9737,"SourceStructureID":5562,"TargetStructureID":78699,"Label":"5562-78699 via Ribbon Synapse from 49567 -> 78700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49567,"TargetID":78700,"Directional":true}]},{"ID":9738,"SourceStructureID":5562,"TargetStructureID":78739,"Label":"5562-78739 via Ribbon Synapse from 49566 -> 78742","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49566,"TargetID":78742,"Directional":true}]},{"ID":9739,"SourceStructureID":5562,"TargetStructureID":78785,"Label":"5562-78785 via Ribbon Synapse from 49424 -> 78786","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49424,"TargetID":78786,"Directional":true}]},{"ID":9740,"SourceStructureID":5562,"TargetStructureID":78810,"Label":"5562-78810 via Ribbon Synapse from 63725 -> 78811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63725,"TargetID":78811,"Directional":true}]},{"ID":9741,"SourceStructureID":5562,"TargetStructureID":78812,"Label":"5562-78812 via Ribbon Synapse from 63725 -> 78813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63725,"TargetID":78813,"Directional":true}]},{"ID":9742,"SourceStructureID":5562,"TargetStructureID":78825,"Label":"5562-78825 via Ribbon Synapse from 54212 -> 78828","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54212,"TargetID":78828,"Directional":true}]},{"ID":9743,"SourceStructureID":5562,"TargetStructureID":78826,"Label":"5562-78826 via Ribbon Synapse from 54212 -> 78827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54212,"TargetID":78827,"Directional":true}]},{"ID":9744,"SourceStructureID":5562,"TargetStructureID":78858,"Label":"5562-78858 via BC Conventional Synapse from 63747 -> 78859","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63747,"TargetID":78859,"Directional":true}]},{"ID":9745,"SourceStructureID":5562,"TargetStructureID":78864,"Label":"5562-78864 via BC Conventional Synapse from 134469 -> 134470","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134469,"TargetID":134470,"Directional":true}]},{"ID":9746,"SourceStructureID":5562,"TargetStructureID":78867,"Label":"5562-78867 via Ribbon Synapse from 31358 -> 78869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31358,"TargetID":78869,"Directional":true}]},{"ID":9747,"SourceStructureID":5562,"TargetStructureID":78870,"Label":"5562-78870 via Ribbon Synapse from 31359 -> 78871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31359,"TargetID":78871,"Directional":true}]},{"ID":9748,"SourceStructureID":5562,"TargetStructureID":78896,"Label":"5562-78896 via Ribbon Synapse from 49519 -> 78897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49519,"TargetID":78897,"Directional":true}]},{"ID":9749,"SourceStructureID":5562,"TargetStructureID":78899,"Label":"5562-78899 via Ribbon Synapse from 49518 -> 78900","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49518,"TargetID":78900,"Directional":true}]},{"ID":9750,"SourceStructureID":5562,"TargetStructureID":78905,"Label":"5562-78905 via Ribbon Synapse from 49517 -> 78908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49517,"TargetID":78908,"Directional":true}]},{"ID":9751,"SourceStructureID":5562,"TargetStructureID":78906,"Label":"5562-78906 via Ribbon Synapse from 49517 -> 78907","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49517,"TargetID":78907,"Directional":true}]},{"ID":9752,"SourceStructureID":5562,"TargetStructureID":78909,"Label":"5562-78909 via Ribbon Synapse from 77467 -> 87516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77467,"TargetID":87516,"Directional":true}]},{"ID":9753,"SourceStructureID":5562,"TargetStructureID":78920,"Label":"5562-78920 via Ribbon Synapse from 63762 -> 78923","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63762,"TargetID":78923,"Directional":true}]},{"ID":9754,"SourceStructureID":5562,"TargetStructureID":78921,"Label":"5562-78921 via Ribbon Synapse from 63762 -> 78922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63762,"TargetID":78922,"Directional":true}]},{"ID":9755,"SourceStructureID":5562,"TargetStructureID":78926,"Label":"5562-78926 via Ribbon Synapse from 63767 -> 78927","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63767,"TargetID":78927,"Directional":true}]},{"ID":9756,"SourceStructureID":5562,"TargetStructureID":78928,"Label":"5562-78928 via Ribbon Synapse from 63767 -> 78929","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63767,"TargetID":78929,"Directional":true}]},{"ID":9757,"SourceStructureID":5562,"TargetStructureID":78938,"Label":"5562-78938 via Ribbon Synapse from 63764 -> 78939","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63764,"TargetID":78939,"Directional":true}]},{"ID":9758,"SourceStructureID":5562,"TargetStructureID":78946,"Label":"5562-78946 via Ribbon Synapse from 63771 -> 78953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63771,"TargetID":78953,"Directional":true}]},{"ID":9759,"SourceStructureID":5562,"TargetStructureID":78954,"Label":"5562-78954 via Ribbon Synapse from 63771 -> 78955","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63771,"TargetID":78955,"Directional":true}]},{"ID":9760,"SourceStructureID":5562,"TargetStructureID":78961,"Label":"5562-78961 via Ribbon Synapse from 49436 -> 78962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49436,"TargetID":78962,"Directional":true}]},{"ID":9761,"SourceStructureID":5562,"TargetStructureID":78974,"Label":"5562-78974 via BC Conventional Synapse from 63776 -> 78975","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63776,"TargetID":78975,"Directional":true}]},{"ID":9762,"SourceStructureID":5562,"TargetStructureID":78982,"Label":"5562-78982 via BC Conventional Synapse from 78983 -> 78984","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78983,"TargetID":78984,"Directional":true}]},{"ID":9763,"SourceStructureID":5562,"TargetStructureID":78985,"Label":"5562-78985 via Ribbon Synapse from 63783 -> 78986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63783,"TargetID":78986,"Directional":true}]},{"ID":9764,"SourceStructureID":5562,"TargetStructureID":78997,"Label":"5562-78997 via Ribbon Synapse from 63787 -> 78998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63787,"TargetID":78998,"Directional":true}]},{"ID":9765,"SourceStructureID":5562,"TargetStructureID":79000,"Label":"5562-79000 via BC Conventional Synapse from 134473 -> 134474","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134473,"TargetID":134474,"Directional":true}]},{"ID":9766,"SourceStructureID":5562,"TargetStructureID":79013,"Label":"5562-79013 via Ribbon Synapse from 49106 -> 79014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49106,"TargetID":79014,"Directional":true}]},{"ID":9767,"SourceStructureID":5562,"TargetStructureID":79015,"Label":"5562-79015 via Ribbon Synapse from 49106 -> 79016","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49106,"TargetID":79016,"Directional":true}]},{"ID":9768,"SourceStructureID":5562,"TargetStructureID":79027,"Label":"5562-79027 via BC Conventional Synapse from 134475 -> 134476","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134475,"TargetID":134476,"Directional":true}]},{"ID":9769,"SourceStructureID":5562,"TargetStructureID":79160,"Label":"5562-79160 via BC Conventional Synapse from 79158 -> 79161","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79158,"TargetID":79161,"Directional":true}]},{"ID":9770,"SourceStructureID":5562,"TargetStructureID":79166,"Label":"5562-79166 via Ribbon Synapse from 63835 -> 79167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63835,"TargetID":79167,"Directional":true}]},{"ID":9771,"SourceStructureID":5562,"TargetStructureID":79185,"Label":"5562-79185 via Ribbon Synapse from 63838 -> 79186","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63838,"TargetID":79186,"Directional":true}]},{"ID":9772,"SourceStructureID":5562,"TargetStructureID":79187,"Label":"5562-79187 via Ribbon Synapse from 63838 -> 79188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63838,"TargetID":79188,"Directional":true}]},{"ID":9773,"SourceStructureID":5562,"TargetStructureID":79194,"Label":"5562-79194 via Ribbon Synapse from 63844 -> 79195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63844,"TargetID":79195,"Directional":true}]},{"ID":9774,"SourceStructureID":5562,"TargetStructureID":79202,"Label":"5562-79202 via Ribbon Synapse from 63847 -> 79203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63847,"TargetID":79203,"Directional":true}]},{"ID":9775,"SourceStructureID":5562,"TargetStructureID":79204,"Label":"5562-79204 via BC Conventional Synapse from 63850 -> 79205","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63850,"TargetID":79205,"Directional":true}]},{"ID":9776,"SourceStructureID":5562,"TargetStructureID":79209,"Label":"5562-79209 via Ribbon Synapse from 134309 -> 79210","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134309,"TargetID":79210,"Directional":true}]},{"ID":9777,"SourceStructureID":5562,"TargetStructureID":79211,"Label":"5562-79211 via Ribbon Synapse from 134309 -> 79212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134309,"TargetID":79212,"Directional":true}]},{"ID":9778,"SourceStructureID":5562,"TargetStructureID":79217,"Label":"5562-79217 via BC Conventional Synapse from 63840 -> 79218","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63840,"TargetID":79218,"Directional":true}]},{"ID":9779,"SourceStructureID":5562,"TargetStructureID":79232,"Label":"5562-79232 via Ribbon Synapse from 48960 -> 79234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48960,"TargetID":79234,"Directional":true}]},{"ID":9780,"SourceStructureID":5562,"TargetStructureID":79235,"Label":"5562-79235 via Ribbon Synapse from 48960 -> 79236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48960,"TargetID":79236,"Directional":true}]},{"ID":9781,"SourceStructureID":5562,"TargetStructureID":79242,"Label":"5562-79242 via Ribbon Synapse from 36522 -> 79243","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36522,"TargetID":79243,"Directional":true}]},{"ID":9782,"SourceStructureID":5562,"TargetStructureID":79244,"Label":"5562-79244 via Ribbon Synapse from 63862 -> 79249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63862,"TargetID":79249,"Directional":true}]},{"ID":9783,"SourceStructureID":5562,"TargetStructureID":79245,"Label":"5562-79245 via Ribbon Synapse from 63862 -> 79246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63862,"TargetID":79246,"Directional":true}]},{"ID":9784,"SourceStructureID":5562,"TargetStructureID":79247,"Label":"5562-79247 via Ribbon Synapse from 63862 -> 79248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63862,"TargetID":79248,"Directional":true}]},{"ID":9785,"SourceStructureID":5562,"TargetStructureID":79618,"Label":"5562-79618 via Ribbon Synapse from 63859 -> 79619","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63859,"TargetID":79619,"Directional":true}]},{"ID":9786,"SourceStructureID":5562,"TargetStructureID":79625,"Label":"5562-79625 via Ribbon Synapse from 63860 -> 79628","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63860,"TargetID":79628,"Directional":true}]},{"ID":9787,"SourceStructureID":5562,"TargetStructureID":79626,"Label":"5562-79626 via Ribbon Synapse from 63860 -> 79627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63860,"TargetID":79627,"Directional":true}]},{"ID":9788,"SourceStructureID":5562,"TargetStructureID":79629,"Label":"5562-79629 via Ribbon Synapse from 48959 -> 79642, 63876 -> 79630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48959,"TargetID":79642,"Directional":true},{"SourceID":63876,"TargetID":79630,"Directional":true}]},{"ID":9789,"SourceStructureID":5562,"TargetStructureID":79631,"Label":"5562-79631 via Ribbon Synapse from 63876 -> 79632","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63876,"TargetID":79632,"Directional":true}]},{"ID":9790,"SourceStructureID":5562,"TargetStructureID":79635,"Label":"5562-79635 via Ribbon Synapse from 48959 -> 79636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48959,"TargetID":79636,"Directional":true}]},{"ID":9791,"SourceStructureID":5562,"TargetStructureID":79639,"Label":"5562-79639 via Ribbon Synapse from 48959 -> 79640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48959,"TargetID":79640,"Directional":true}]},{"ID":9792,"SourceStructureID":5562,"TargetStructureID":79645,"Label":"5562-79645 via BC Conventional Synapse from 134490 -> 134489","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134490,"TargetID":134489,"Directional":true}]},{"ID":9793,"SourceStructureID":5562,"TargetStructureID":79651,"Label":"5562-79651 via BC Conventional Synapse from 79652 -> 79653","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79652,"TargetID":79653,"Directional":true}]},{"ID":9794,"SourceStructureID":5562,"TargetStructureID":79654,"Label":"5562-79654 via Ribbon Synapse from 48948 -> 79655","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48948,"TargetID":79655,"Directional":true}]},{"ID":9795,"SourceStructureID":5562,"TargetStructureID":79669,"Label":"5562-79669 via BC Conventional Synapse from 134492 -> 134491","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134492,"TargetID":134491,"Directional":true}]},{"ID":9796,"SourceStructureID":5562,"TargetStructureID":79678,"Label":"5562-79678 via Ribbon Synapse from 63878 -> 79679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63878,"TargetID":79679,"Directional":true}]},{"ID":9797,"SourceStructureID":5562,"TargetStructureID":79680,"Label":"5562-79680 via Ribbon Synapse from 63878 -> 79681","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63878,"TargetID":79681,"Directional":true}]},{"ID":9798,"SourceStructureID":5562,"TargetStructureID":79688,"Label":"5562-79688 via Ribbon Synapse from 49103 -> 79689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49103,"TargetID":79689,"Directional":true}]},{"ID":9799,"SourceStructureID":5562,"TargetStructureID":79690,"Label":"5562-79690 via BC Conventional Synapse from 134494 -> 134493","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134494,"TargetID":134493,"Directional":true}]},{"ID":9800,"SourceStructureID":5562,"TargetStructureID":79698,"Label":"5562-79698 via Adherens from 79701 -> 79702","Type":"Adherens","Directional":true,"Links":[{"SourceID":79701,"TargetID":79702,"Directional":true}]},{"ID":9801,"SourceStructureID":5562,"TargetStructureID":79698,"Label":"5562-79698 via BC Conventional Synapse from 134496 -> 134497","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134496,"TargetID":134497,"Directional":true}]},{"ID":9802,"SourceStructureID":5562,"TargetStructureID":79707,"Label":"5562-79707 via BC Conventional Synapse from 134500 -> 134501","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134500,"TargetID":134501,"Directional":true}]},{"ID":9803,"SourceStructureID":5562,"TargetStructureID":79710,"Label":"5562-79710 via Ribbon Synapse from 63886 -> 79711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63886,"TargetID":79711,"Directional":true}]},{"ID":9804,"SourceStructureID":5562,"TargetStructureID":79712,"Label":"5562-79712 via Ribbon Synapse from 63886 -> 79713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63886,"TargetID":79713,"Directional":true}]},{"ID":9805,"SourceStructureID":5562,"TargetStructureID":79716,"Label":"5562-79716 via Ribbon Synapse from 49011 -> 79717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49011,"TargetID":79717,"Directional":true}]},{"ID":9806,"SourceStructureID":5562,"TargetStructureID":79718,"Label":"5562-79718 via Ribbon Synapse from 49011 -> 79719","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49011,"TargetID":79719,"Directional":true}]},{"ID":9807,"SourceStructureID":5562,"TargetStructureID":79725,"Label":"5562-79725 via Ribbon Synapse from 79724 -> 79728","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79724,"TargetID":79728,"Directional":true}]},{"ID":9808,"SourceStructureID":5562,"TargetStructureID":79726,"Label":"5562-79726 via Ribbon Synapse from 79724 -> 79727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79724,"TargetID":79727,"Directional":true}]},{"ID":9809,"SourceStructureID":5562,"TargetStructureID":79731,"Label":"5562-79731 via Ribbon Synapse from 49010 -> 79734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49010,"TargetID":79734,"Directional":true}]},{"ID":9810,"SourceStructureID":5562,"TargetStructureID":79732,"Label":"5562-79732 via Ribbon Synapse from 49010 -> 79733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49010,"TargetID":79733,"Directional":true}]},{"ID":9811,"SourceStructureID":5562,"TargetStructureID":79749,"Label":"5562-79749 via Ribbon Synapse from 49021 -> 79752","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49021,"TargetID":79752,"Directional":true}]},{"ID":9812,"SourceStructureID":5562,"TargetStructureID":79750,"Label":"5562-79750 via Ribbon Synapse from 49021 -> 79751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49021,"TargetID":79751,"Directional":true}]},{"ID":9813,"SourceStructureID":5562,"TargetStructureID":79753,"Label":"5562-79753 via BC Conventional Synapse from 79754 -> 79755","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79754,"TargetID":79755,"Directional":true}]},{"ID":9814,"SourceStructureID":5562,"TargetStructureID":79764,"Label":"5562-79764 via BC Conventional Synapse from 134505 -> 134506","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134505,"TargetID":134506,"Directional":true}]},{"ID":9815,"SourceStructureID":5562,"TargetStructureID":79781,"Label":"5562-79781 via BC Conventional Synapse from 63381 -> 79783","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63381,"TargetID":79783,"Directional":true}]},{"ID":9816,"SourceStructureID":5562,"TargetStructureID":79802,"Label":"5562-79802 via BC Conventional Synapse from 81751 -> 81752","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81751,"TargetID":81752,"Directional":true}]},{"ID":9817,"SourceStructureID":5562,"TargetStructureID":79813,"Label":"5562-79813 via Ribbon Synapse from 63900 -> 79814","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63900,"TargetID":79814,"Directional":true}]},{"ID":9818,"SourceStructureID":5562,"TargetStructureID":79815,"Label":"5562-79815 via Ribbon Synapse from 63900 -> 79816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63900,"TargetID":79816,"Directional":true}]},{"ID":9819,"SourceStructureID":5562,"TargetStructureID":79821,"Label":"5562-79821 via Ribbon Synapse from 63906 -> 79825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63906,"TargetID":79825,"Directional":true}]},{"ID":9820,"SourceStructureID":5562,"TargetStructureID":79822,"Label":"5562-79822 via Ribbon Synapse from 63906 -> 79826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63906,"TargetID":79826,"Directional":true}]},{"ID":9821,"SourceStructureID":5562,"TargetStructureID":79823,"Label":"5562-79823 via Ribbon Synapse from 63906 -> 79824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63906,"TargetID":79824,"Directional":true}]},{"ID":9822,"SourceStructureID":5562,"TargetStructureID":79827,"Label":"5562-79827 via BC Conventional Synapse from 79829 -> 79830","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79829,"TargetID":79830,"Directional":true}]},{"ID":9823,"SourceStructureID":5562,"TargetStructureID":79832,"Label":"5562-79832 via Ribbon Synapse from 63909 -> 79833","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63909,"TargetID":79833,"Directional":true}]},{"ID":9824,"SourceStructureID":5562,"TargetStructureID":79834,"Label":"5562-79834 via Ribbon Synapse from 134646 -> 134647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134646,"TargetID":134647,"Directional":true}]},{"ID":9825,"SourceStructureID":5562,"TargetStructureID":79847,"Label":"5562-79847 via BC Conventional Synapse from 79848 -> 92080","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79848,"TargetID":92080,"Directional":true}]},{"ID":9826,"SourceStructureID":5562,"TargetStructureID":79849,"Label":"5562-79849 via Ribbon Synapse from 48997 -> 79850","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48997,"TargetID":79850,"Directional":true}]},{"ID":9827,"SourceStructureID":5562,"TargetStructureID":79851,"Label":"5562-79851 via Ribbon Synapse from 48997 -> 79853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48997,"TargetID":79853,"Directional":true}]},{"ID":9828,"SourceStructureID":5562,"TargetStructureID":79854,"Label":"5562-79854 via Ribbon Synapse from 48998 -> 79856","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48998,"TargetID":79856,"Directional":true}]},{"ID":9829,"SourceStructureID":5562,"TargetStructureID":79863,"Label":"5562-79863 via Ribbon Synapse from 79860 -> 79864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79860,"TargetID":79864,"Directional":true}]},{"ID":9830,"SourceStructureID":5562,"TargetStructureID":79865,"Label":"5562-79865 via Ribbon Synapse from 79860 -> 79866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79860,"TargetID":79866,"Directional":true}]},{"ID":9831,"SourceStructureID":5562,"TargetStructureID":79867,"Label":"5562-79867 via Ribbon Synapse from 79860 -> 79868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79860,"TargetID":79868,"Directional":true}]},{"ID":9832,"SourceStructureID":5562,"TargetStructureID":79886,"Label":"5562-79886 via Ribbon Synapse from 63923 -> 79887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63923,"TargetID":79887,"Directional":true}]},{"ID":9833,"SourceStructureID":5562,"TargetStructureID":79890,"Label":"5562-79890 via Ribbon Synapse from 63923 -> 79892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63923,"TargetID":79892,"Directional":true}]},{"ID":9834,"SourceStructureID":5562,"TargetStructureID":80206,"Label":"5562-80206 via Ribbon Synapse from 63082 -> 80207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63082,"TargetID":80207,"Directional":true}]},{"ID":9835,"SourceStructureID":5562,"TargetStructureID":80209,"Label":"5562-80209 via Ribbon Synapse from 63082 -> 80211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63082,"TargetID":80211,"Directional":true}]},{"ID":9836,"SourceStructureID":5562,"TargetStructureID":80219,"Label":"5562-80219 via Ribbon Synapse from 63081 -> 80222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63081,"TargetID":80222,"Directional":true}]},{"ID":9837,"SourceStructureID":5562,"TargetStructureID":80220,"Label":"5562-80220 via Ribbon Synapse from 63081 -> 80221","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63081,"TargetID":80221,"Directional":true}]},{"ID":9838,"SourceStructureID":5562,"TargetStructureID":80252,"Label":"5562-80252 via Ribbon Synapse from 63088 -> 80254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63088,"TargetID":80254,"Directional":true}]},{"ID":9839,"SourceStructureID":5562,"TargetStructureID":80253,"Label":"5562-80253 via Ribbon Synapse from 63088 -> 80255","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63088,"TargetID":80255,"Directional":true}]},{"ID":9840,"SourceStructureID":5562,"TargetStructureID":80315,"Label":"5562-80315 via Ribbon Synapse from 80317 -> 80316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80317,"TargetID":80316,"Directional":true}]},{"ID":9841,"SourceStructureID":5562,"TargetStructureID":80318,"Label":"5562-80318 via Ribbon Synapse from 63242 -> 80319","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63242,"TargetID":80319,"Directional":true}]},{"ID":9842,"SourceStructureID":5562,"TargetStructureID":80320,"Label":"5562-80320 via Ribbon Synapse from 63242 -> 80321","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63242,"TargetID":80321,"Directional":true}]},{"ID":9843,"SourceStructureID":5562,"TargetStructureID":80322,"Label":"5562-80322 via Ribbon Synapse from 63242 -> 80323","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63242,"TargetID":80323,"Directional":true}]},{"ID":9844,"SourceStructureID":5562,"TargetStructureID":80348,"Label":"5562-80348 via Ribbon Synapse from 63295 -> 80349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63295,"TargetID":80349,"Directional":true}]},{"ID":9845,"SourceStructureID":5562,"TargetStructureID":80353,"Label":"5562-80353 via Ribbon Synapse from 63299 -> 80355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63299,"TargetID":80355,"Directional":true}]},{"ID":9846,"SourceStructureID":5562,"TargetStructureID":80359,"Label":"5562-80359 via Ribbon Synapse from 63295 -> 81478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63295,"TargetID":81478,"Directional":true}]},{"ID":9847,"SourceStructureID":5562,"TargetStructureID":80372,"Label":"5562-80372 via BC Conventional Synapse from 93086 -> 93085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93086,"TargetID":93085,"Directional":true}]},{"ID":9848,"SourceStructureID":5562,"TargetStructureID":80381,"Label":"5562-80381 via Ribbon Synapse from 63307 -> 80389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63307,"TargetID":80389,"Directional":true}]},{"ID":9849,"SourceStructureID":5562,"TargetStructureID":80385,"Label":"5562-80385 via Ribbon Synapse from 63304 -> 80386","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63304,"TargetID":80386,"Directional":true}]},{"ID":9850,"SourceStructureID":5562,"TargetStructureID":80387,"Label":"5562-80387 via Ribbon Synapse from 63304 -> 80388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63304,"TargetID":80388,"Directional":true}]},{"ID":9851,"SourceStructureID":5562,"TargetStructureID":80390,"Label":"5562-80390 via Ribbon Synapse from 63307 -> 80391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63307,"TargetID":80391,"Directional":true}]},{"ID":9852,"SourceStructureID":5562,"TargetStructureID":80399,"Label":"5562-80399 via Ribbon Synapse from 63285 -> 80682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63285,"TargetID":80682,"Directional":true}]},{"ID":9853,"SourceStructureID":5562,"TargetStructureID":80673,"Label":"5562-80673 via Ribbon Synapse from 63285 -> 80675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63285,"TargetID":80675,"Directional":true}]},{"ID":9854,"SourceStructureID":5562,"TargetStructureID":80691,"Label":"5562-80691 via BC Conventional Synapse from 134629 -> 134630","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134629,"TargetID":134630,"Directional":true}]},{"ID":9855,"SourceStructureID":5562,"TargetStructureID":80700,"Label":"5562-80700 via Ribbon Synapse from 63291 -> 80701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63291,"TargetID":80701,"Directional":true}]},{"ID":9856,"SourceStructureID":5562,"TargetStructureID":80799,"Label":"5562-80799 via Ribbon Synapse from 63316 -> 80800","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63316,"TargetID":80800,"Directional":true}]},{"ID":9857,"SourceStructureID":5562,"TargetStructureID":80801,"Label":"5562-80801 via BC Conventional Synapse from 80803 -> 80802","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80803,"TargetID":80802,"Directional":true}]},{"ID":9858,"SourceStructureID":5562,"TargetStructureID":80818,"Label":"5562-80818 via Ribbon Synapse from 63315 -> 80821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63315,"TargetID":80821,"Directional":true}]},{"ID":9859,"SourceStructureID":5562,"TargetStructureID":80819,"Label":"5562-80819 via Ribbon Synapse from 63315 -> 80820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63315,"TargetID":80820,"Directional":true}]},{"ID":9860,"SourceStructureID":5562,"TargetStructureID":80826,"Label":"5562-80826 via Ribbon Synapse from 63317 -> 80830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63317,"TargetID":80830,"Directional":true}]},{"ID":9861,"SourceStructureID":5562,"TargetStructureID":80827,"Label":"5562-80827 via Ribbon Synapse from 63317 -> 80832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63317,"TargetID":80832,"Directional":true}]},{"ID":9862,"SourceStructureID":5562,"TargetStructureID":80829,"Label":"5562-80829 via Ribbon Synapse from 63317 -> 80831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63317,"TargetID":80831,"Directional":true}]},{"ID":9863,"SourceStructureID":5562,"TargetStructureID":80855,"Label":"5562-80855 via Ribbon Synapse from 134634 -> 134637","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134634,"TargetID":134637,"Directional":true}]},{"ID":9864,"SourceStructureID":5562,"TargetStructureID":80856,"Label":"5562-80856 via Ribbon Synapse from 134634 -> 134636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134634,"TargetID":134636,"Directional":true}]},{"ID":9865,"SourceStructureID":5562,"TargetStructureID":80858,"Label":"5562-80858 via Ribbon Synapse from 134634 -> 134635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134634,"TargetID":134635,"Directional":true}]},{"ID":9866,"SourceStructureID":5562,"TargetStructureID":80859,"Label":"5562-80859 via Ribbon Synapse from 134634 -> 134638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134634,"TargetID":134638,"Directional":true}]},{"ID":9867,"SourceStructureID":5562,"TargetStructureID":80874,"Label":"5562-80874 via Ribbon Synapse from 63324 -> 80875","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63324,"TargetID":80875,"Directional":true}]},{"ID":9868,"SourceStructureID":5562,"TargetStructureID":80876,"Label":"5562-80876 via Ribbon Synapse from 63324 -> 80877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63324,"TargetID":80877,"Directional":true}]},{"ID":9869,"SourceStructureID":5562,"TargetStructureID":80882,"Label":"5562-80882 via Ribbon Synapse from 63323 -> 80883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63323,"TargetID":80883,"Directional":true}]},{"ID":9870,"SourceStructureID":5562,"TargetStructureID":80891,"Label":"5562-80891 via Ribbon Synapse from 63325 -> 80892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63325,"TargetID":80892,"Directional":true}]},{"ID":9871,"SourceStructureID":5562,"TargetStructureID":80893,"Label":"5562-80893 via Ribbon Synapse from 63325 -> 80895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63325,"TargetID":80895,"Directional":true}]},{"ID":9872,"SourceStructureID":5562,"TargetStructureID":81799,"Label":"5562-81799 via Ribbon Synapse from 77220 -> 81815, 77238 -> 81806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77220,"TargetID":81815,"Directional":true},{"SourceID":77238,"TargetID":81806,"Directional":true}]},{"ID":9873,"SourceStructureID":5562,"TargetStructureID":81810,"Label":"5562-81810 via Ribbon Synapse from 77238 -> 81811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77238,"TargetID":81811,"Directional":true}]},{"ID":9874,"SourceStructureID":5562,"TargetStructureID":81852,"Label":"5562-81852 via Unknown from 81851 -> 81853","Type":"Unknown","Directional":true,"Links":[{"SourceID":81851,"TargetID":81853,"Directional":true}]},{"ID":9875,"SourceStructureID":5562,"TargetStructureID":81875,"Label":"5562-81875 via Ribbon Synapse from 134646 -> 134648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134646,"TargetID":134648,"Directional":true}]},{"ID":9876,"SourceStructureID":5562,"TargetStructureID":82462,"Label":"5562-82462 via Ribbon Synapse from 63731 -> 82465","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63731,"TargetID":82465,"Directional":true}]},{"ID":9877,"SourceStructureID":5562,"TargetStructureID":84520,"Label":"5562-84520 via Ribbon Synapse from 49563 -> 84522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49563,"TargetID":84522,"Directional":true}]},{"ID":9878,"SourceStructureID":5562,"TargetStructureID":84530,"Label":"5562-84530 via Ribbon Synapse from 31300 -> 116710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31300,"TargetID":116710,"Directional":true}]},{"ID":9879,"SourceStructureID":5563,"TargetStructureID":4850,"Label":"5563-4850 via Ribbon Synapse from 14302 -> 14301, 19488 -> 19489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14302,"TargetID":14301,"Directional":true},{"SourceID":19488,"TargetID":19489,"Directional":true}]},{"ID":9880,"SourceStructureID":5563,"TargetStructureID":5402,"Label":"5563-5402 via Ribbon Synapse from 32387 -> 129594, 32393 -> 129601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32387,"TargetID":129594,"Directional":true},{"SourceID":32393,"TargetID":129601,"Directional":true}]},{"ID":9881,"SourceStructureID":5563,"TargetStructureID":7050,"Label":"5563-7050 via Ribbon Synapse from 19504 -> 19503, 31447 -> 32397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19504,"TargetID":19503,"Directional":true},{"SourceID":31447,"TargetID":32397,"Directional":true}]},{"ID":9882,"SourceStructureID":5563,"TargetStructureID":8037,"Label":"5563-8037 via Ribbon Synapse from 32387 -> 32386, 32389 -> 32388, 32393 -> 32394, 32395 -> 32396, 56818 -> 56821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32387,"TargetID":32386,"Directional":true},{"SourceID":32389,"TargetID":32388,"Directional":true},{"SourceID":32393,"TargetID":32394,"Directional":true},{"SourceID":32395,"TargetID":32396,"Directional":true},{"SourceID":56818,"TargetID":56821,"Directional":true}]},{"ID":9883,"SourceStructureID":5563,"TargetStructureID":9260,"Label":"5563-9260 via Ribbon Synapse from 66248 -> 98789, 98792 -> 98793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66248,"TargetID":98789,"Directional":true},{"SourceID":98792,"TargetID":98793,"Directional":true}]},{"ID":9884,"SourceStructureID":5563,"TargetStructureID":12897,"Label":"5563-12897 via Ribbon Synapse from 56657 -> 60636, 66250 -> 66251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56657,"TargetID":60636,"Directional":true},{"SourceID":66250,"TargetID":66251,"Directional":true}]},{"ID":9885,"SourceStructureID":5563,"TargetStructureID":18282,"Label":"5563-18282 via Ribbon Synapse from 31447 -> 31446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31447,"TargetID":31446,"Directional":true}]},{"ID":9886,"SourceStructureID":5565,"TargetStructureID":606,"Label":"5565-606 via Ribbon Synapse from 50172 -> 39921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50172,"TargetID":39921,"Directional":true}]},{"ID":9887,"SourceStructureID":5565,"TargetStructureID":32994,"Label":"5565-32994 via Ribbon Synapse from 35102 -> 35101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35102,"TargetID":35101,"Directional":true}]},{"ID":9888,"SourceStructureID":5565,"TargetStructureID":35232,"Label":"5565-35232 via Ribbon Synapse from 37685 -> 35235","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37685,"TargetID":35235,"Directional":true}]},{"ID":9889,"SourceStructureID":5565,"TargetStructureID":89312,"Label":"5565-89312 via BC Conventional Synapse from 89314 -> 89313","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":89314,"TargetID":89313,"Directional":true}]},{"ID":9890,"SourceStructureID":5565,"TargetStructureID":97401,"Label":"5565-97401 via Ribbon Synapse from 53985 -> 97402","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53985,"TargetID":97402,"Directional":true}]},{"ID":9891,"SourceStructureID":5566,"TargetStructureID":5107,"Label":"5566-5107 via Ribbon Synapse from 148326 -> 148324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148326,"TargetID":148324,"Directional":true}]},{"ID":9892,"SourceStructureID":5566,"TargetStructureID":5497,"Label":"5566-5497 via Ribbon Synapse from 59199 -> 59200","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59199,"TargetID":59200,"Directional":true}]},{"ID":9893,"SourceStructureID":5566,"TargetStructureID":59271,"Label":"5566-59271 via Ribbon Synapse from 33669 -> 59272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33669,"TargetID":59272,"Directional":true}]},{"ID":9894,"SourceStructureID":5566,"TargetStructureID":59275,"Label":"5566-59275 via Ribbon Synapse from 59274 -> 59276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59274,"TargetID":59276,"Directional":true}]},{"ID":9895,"SourceStructureID":5568,"TargetStructureID":389,"Label":"5568-389 via BC Conventional Synapse from 62141 -> 62140","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62141,"TargetID":62140,"Directional":true}]},{"ID":9896,"SourceStructureID":5568,"TargetStructureID":4890,"Label":"5568-4890 via Ribbon Synapse from 99177 -> 64873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99177,"TargetID":64873,"Directional":true}]},{"ID":9897,"SourceStructureID":5568,"TargetStructureID":5405,"Label":"5568-5405 via Ribbon Synapse from 11062 -> 11061, 49987 -> 11047, 50368 -> 11149","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11062,"TargetID":11061,"Directional":true},{"SourceID":49987,"TargetID":11047,"Directional":true},{"SourceID":50368,"TargetID":11149,"Directional":true}]},{"ID":9898,"SourceStructureID":5568,"TargetStructureID":8575,"Label":"5568-8575 via BC Conventional Synapse from 62139 -> 62134","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62139,"TargetID":62134,"Directional":true}]},{"ID":9899,"SourceStructureID":5568,"TargetStructureID":8575,"Label":"5568-8575 via Ribbon Synapse from 49961 -> 62780, 62380 -> 62376, 62782 -> 62781, 121329 -> 121330, 121405 -> 43288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49961,"TargetID":62780,"Directional":true},{"SourceID":62380,"TargetID":62376,"Directional":true},{"SourceID":62782,"TargetID":62781,"Directional":true},{"SourceID":121329,"TargetID":121330,"Directional":true},{"SourceID":121405,"TargetID":43288,"Directional":true}]},{"ID":9900,"SourceStructureID":5568,"TargetStructureID":32994,"Label":"5568-32994 via Ribbon Synapse from 99174 -> 32998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99174,"TargetID":32998,"Directional":true}]},{"ID":9901,"SourceStructureID":5568,"TargetStructureID":35475,"Label":"5568-35475 via Ribbon Synapse from 35479 -> 35478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35479,"TargetID":35478,"Directional":true}]},{"ID":9902,"SourceStructureID":5568,"TargetStructureID":87178,"Label":"5568-87178 via Ribbon Synapse from 121473 -> 87179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121473,"TargetID":87179,"Directional":true}]},{"ID":9903,"SourceStructureID":5568,"TargetStructureID":89571,"Label":"5568-89571 via Ribbon Synapse from 50362 -> 89575","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50362,"TargetID":89575,"Directional":true}]},{"ID":9904,"SourceStructureID":5575,"TargetStructureID":906,"Label":"5575-906 via Conventional from 22959 -> 15235","Type":"Conventional","Directional":true,"Links":[{"SourceID":22959,"TargetID":15235,"Directional":true}]},{"ID":9905,"SourceStructureID":5575,"TargetStructureID":15796,"Label":"5575-15796 via Conventional from 23079 -> 27205","Type":"Conventional","Directional":true,"Links":[{"SourceID":23079,"TargetID":27205,"Directional":true}]},{"ID":9906,"SourceStructureID":5575,"TargetStructureID":18693,"Label":"5575-18693 via Conventional from 22966 -> 18724, 23081 -> 39463","Type":"Conventional","Directional":true,"Links":[{"SourceID":22966,"TargetID":18724,"Directional":true},{"SourceID":23081,"TargetID":39463,"Directional":true}]},{"ID":9907,"SourceStructureID":5575,"TargetStructureID":27288,"Label":"5575-27288 via Conventional from 23088 -> 27298, 23096 -> 27295","Type":"Conventional","Directional":true,"Links":[{"SourceID":23088,"TargetID":27298,"Directional":true},{"SourceID":23096,"TargetID":27295,"Directional":true}]},{"ID":9908,"SourceStructureID":5575,"TargetStructureID":27304,"Label":"5575-27304 via Conventional from 22955 -> 27315","Type":"Conventional","Directional":true,"Links":[{"SourceID":22955,"TargetID":27315,"Directional":true}]},{"ID":9909,"SourceStructureID":5575,"TargetStructureID":47013,"Label":"5575-47013 via Conventional from 23068 -> 47028","Type":"Conventional","Directional":true,"Links":[{"SourceID":23068,"TargetID":47028,"Directional":true}]},{"ID":9910,"SourceStructureID":5582,"TargetStructureID":28950,"Label":"5582-28950 via Ribbon Synapse from 136371 -> 136364, 136395 -> 136396","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136371,"TargetID":136364,"Directional":true},{"SourceID":136395,"TargetID":136396,"Directional":true}]},{"ID":9911,"SourceStructureID":5582,"TargetStructureID":136393,"Label":"5582-136393 via Ribbon Synapse from 136392 -> 136394","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136392,"TargetID":136394,"Directional":true}]},{"ID":9912,"SourceStructureID":5584,"TargetStructureID":5107,"Label":"5584-5107 via Ribbon Synapse from 124490 -> 124489, 126927 -> 126919","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124490,"TargetID":124489,"Directional":true},{"SourceID":126927,"TargetID":126919,"Directional":true}]},{"ID":9913,"SourceStructureID":5584,"TargetStructureID":5117,"Label":"5584-5117 via Ribbon Synapse from 126925 -> 126926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126925,"TargetID":126926,"Directional":true}]},{"ID":9914,"SourceStructureID":5584,"TargetStructureID":5442,"Label":"5584-5442 via Ribbon Synapse from 48219 -> 15275, 55118 -> 15274","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48219,"TargetID":15275,"Directional":true},{"SourceID":55118,"TargetID":15274,"Directional":true}]},{"ID":9915,"SourceStructureID":5584,"TargetStructureID":15796,"Label":"5584-15796 via Ribbon Synapse from 55835 -> 52884, 147763 -> 147762","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55835,"TargetID":52884,"Directional":true},{"SourceID":147763,"TargetID":147762,"Directional":true}]},{"ID":9916,"SourceStructureID":5584,"TargetStructureID":23870,"Label":"5584-23870 via BC Conventional Synapse from 37925 -> 23900","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":37925,"TargetID":23900,"Directional":true}]},{"ID":9917,"SourceStructureID":5584,"TargetStructureID":33272,"Label":"5584-33272 via Ribbon Synapse from 57198 -> 33279, 89768 -> 89769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57198,"TargetID":33279,"Directional":true},{"SourceID":89768,"TargetID":89769,"Directional":true}]},{"ID":9918,"SourceStructureID":5584,"TargetStructureID":35811,"Label":"5584-35811 via Ribbon Synapse from 35881 -> 35880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35881,"TargetID":35880,"Directional":true}]},{"ID":9919,"SourceStructureID":5584,"TargetStructureID":38949,"Label":"5584-38949 via Ribbon Synapse from 38974 -> 38971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38974,"TargetID":38971,"Directional":true}]},{"ID":9920,"SourceStructureID":5584,"TargetStructureID":56841,"Label":"5584-56841 via Ribbon Synapse from 123795 -> 123796","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123795,"TargetID":123796,"Directional":true}]},{"ID":9921,"SourceStructureID":5585,"TargetStructureID":5351,"Label":"5585-5351 via Ribbon Synapse from 24109 -> 24107","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24109,"TargetID":24107,"Directional":true}]},{"ID":9922,"SourceStructureID":5585,"TargetStructureID":7114,"Label":"5585-7114 via Ribbon Synapse from 24113 -> 24112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24113,"TargetID":24112,"Directional":true}]},{"ID":9923,"SourceStructureID":5585,"TargetStructureID":85856,"Label":"5585-85856 via Ribbon Synapse from 32436 -> 32434, 32438 -> 32437, 32439 -> 32440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32436,"TargetID":32434,"Directional":true},{"SourceID":32438,"TargetID":32437,"Directional":true},{"SourceID":32439,"TargetID":32440,"Directional":true}]},{"ID":9924,"SourceStructureID":5587,"TargetStructureID":7114,"Label":"5587-7114 via Ribbon Synapse from 136454 -> 136455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136454,"TargetID":136455,"Directional":true}]},{"ID":9925,"SourceStructureID":5587,"TargetStructureID":28950,"Label":"5587-28950 via Ribbon Synapse from 136553 -> 136551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136553,"TargetID":136551,"Directional":true}]},{"ID":9926,"SourceStructureID":5587,"TargetStructureID":129648,"Label":"5587-129648 via Ribbon Synapse from 129733 -> 129731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129733,"TargetID":129731,"Directional":true}]},{"ID":9927,"SourceStructureID":5587,"TargetStructureID":129798,"Label":"5587-129798 via Ribbon Synapse from 129819 -> 129818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129819,"TargetID":129818,"Directional":true}]},{"ID":9928,"SourceStructureID":5587,"TargetStructureID":136432,"Label":"5587-136432 via Ribbon Synapse from 136443 -> 136440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136443,"TargetID":136440,"Directional":true}]},{"ID":9929,"SourceStructureID":5592,"TargetStructureID":5442,"Label":"5592-5442 via Ribbon Synapse from 36834 -> 74425","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36834,"TargetID":74425,"Directional":true}]},{"ID":9930,"SourceStructureID":5592,"TargetStructureID":23870,"Label":"5592-23870 via Ribbon Synapse from 92948 -> 92950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92948,"TargetID":92950,"Directional":true}]},{"ID":9931,"SourceStructureID":5595,"TargetStructureID":7113,"Label":"5595-7113 via Ribbon Synapse from 15283 -> 34911, 15285 -> 34912, 32425 -> 32430, 32425 -> 124076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15283,"TargetID":34911,"Directional":true},{"SourceID":15285,"TargetID":34912,"Directional":true},{"SourceID":32425,"TargetID":32430,"Directional":true},{"SourceID":32425,"TargetID":124076,"Directional":true}]},{"ID":9932,"SourceStructureID":5595,"TargetStructureID":32422,"Label":"5595-32422 via Ribbon Synapse from 32425 -> 32424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32425,"TargetID":32424,"Directional":true}]},{"ID":9933,"SourceStructureID":5596,"TargetStructureID":7114,"Label":"5596-7114 via Ribbon Synapse from 36871 -> 26608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36871,"TargetID":26608,"Directional":true}]},{"ID":9934,"SourceStructureID":5596,"TargetStructureID":42816,"Label":"5596-42816 via Ribbon Synapse from 42835 -> 42836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42835,"TargetID":42836,"Directional":true}]},{"ID":9935,"SourceStructureID":5596,"TargetStructureID":60558,"Label":"5596-60558 via Cistern Pre from 60580 -> 60582","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":60580,"TargetID":60582,"Directional":true}]},{"ID":9936,"SourceStructureID":5596,"TargetStructureID":60558,"Label":"5596-60558 via Ribbon Synapse from 36868 -> 60579, 36870 -> 60560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36868,"TargetID":60579,"Directional":true},{"SourceID":36870,"TargetID":60560,"Directional":true}]},{"ID":9937,"SourceStructureID":5598,"TargetStructureID":5107,"Label":"5598-5107 via Ribbon Synapse from 45195 -> 53135, 52969 -> 116701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45195,"TargetID":53135,"Directional":true},{"SourceID":52969,"TargetID":116701,"Directional":true}]},{"ID":9938,"SourceStructureID":5598,"TargetStructureID":5442,"Label":"5598-5442 via Ribbon Synapse from 12549 -> 55123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12549,"TargetID":55123,"Directional":true}]},{"ID":9939,"SourceStructureID":5598,"TargetStructureID":9769,"Label":"5598-9769 via Ribbon Synapse from 23907 -> 53125, 45196 -> 29957, 54479 -> 54481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23907,"TargetID":53125,"Directional":true},{"SourceID":45196,"TargetID":29957,"Directional":true},{"SourceID":54479,"TargetID":54481,"Directional":true}]},{"ID":9940,"SourceStructureID":5598,"TargetStructureID":23870,"Label":"5598-23870 via Ribbon Synapse from 23907 -> 23906, 23908 -> 23905, 23912 -> 23911, 36018 -> 36019, 36021 -> 23915, 54479 -> 23918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23907,"TargetID":23906,"Directional":true},{"SourceID":23908,"TargetID":23905,"Directional":true},{"SourceID":23912,"TargetID":23911,"Directional":true},{"SourceID":36018,"TargetID":36019,"Directional":true},{"SourceID":36021,"TargetID":23915,"Directional":true},{"SourceID":54479,"TargetID":23918,"Directional":true}]},{"ID":9941,"SourceStructureID":5598,"TargetStructureID":31605,"Label":"5598-31605 via BC Conventional Synapse from 124087 -> 126965","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124087,"TargetID":126965,"Directional":true}]},{"ID":9942,"SourceStructureID":5598,"TargetStructureID":34055,"Label":"5598-34055 via Ribbon Synapse from 34120 -> 34119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34120,"TargetID":34119,"Directional":true}]},{"ID":9943,"SourceStructureID":5598,"TargetStructureID":35335,"Label":"5598-35335 via Ribbon Synapse from 35341 -> 35340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35341,"TargetID":35340,"Directional":true}]},{"ID":9944,"SourceStructureID":5598,"TargetStructureID":35811,"Label":"5598-35811 via Ribbon Synapse from 35874 -> 35873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35874,"TargetID":35873,"Directional":true}]},{"ID":9945,"SourceStructureID":5598,"TargetStructureID":38949,"Label":"5598-38949 via Postsynapse from 130064 -> 130063","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":130064,"TargetID":130063,"Directional":true}]},{"ID":9946,"SourceStructureID":5598,"TargetStructureID":54482,"Label":"5598-54482 via Ribbon Synapse from 54485 -> 54484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54485,"TargetID":54484,"Directional":true}]},{"ID":9947,"SourceStructureID":5598,"TargetStructureID":57299,"Label":"5598-57299 via Ribbon Synapse from 56774 -> 123854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56774,"TargetID":123854,"Directional":true}]},{"ID":9948,"SourceStructureID":5598,"TargetStructureID":68539,"Label":"5598-68539 via Ribbon Synapse from 74550 -> 74552, 114936 -> 123879, 115227 -> 124257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74550,"TargetID":74552,"Directional":true},{"SourceID":114936,"TargetID":123879,"Directional":true},{"SourceID":115227,"TargetID":124257,"Directional":true}]},{"ID":9949,"SourceStructureID":5598,"TargetStructureID":73348,"Label":"5598-73348 via Ribbon Synapse from 59061 -> 124604","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59061,"TargetID":124604,"Directional":true}]},{"ID":9950,"SourceStructureID":5598,"TargetStructureID":74548,"Label":"5598-74548 via Ribbon Synapse from 74550 -> 74551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74550,"TargetID":74551,"Directional":true}]},{"ID":9951,"SourceStructureID":5598,"TargetStructureID":116142,"Label":"5598-116142 via BC Conventional Synapse from 115250 -> 123865, 115252 -> 123866, 115262 -> 120934","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115250,"TargetID":123865,"Directional":true},{"SourceID":115252,"TargetID":123866,"Directional":true},{"SourceID":115262,"TargetID":120934,"Directional":true}]},{"ID":9952,"SourceStructureID":5598,"TargetStructureID":116142,"Label":"5598-116142 via Ribbon Synapse from 115283 -> 120933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115283,"TargetID":120933,"Directional":true}]},{"ID":9953,"SourceStructureID":5598,"TargetStructureID":124069,"Label":"5598-124069 via Ribbon Synapse from 115000 -> 124071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115000,"TargetID":124071,"Directional":true}]},{"ID":9954,"SourceStructureID":5598,"TargetStructureID":124198,"Label":"5598-124198 via BC Conventional Synapse from 114611 -> 124204","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":114611,"TargetID":124204,"Directional":true}]},{"ID":9955,"SourceStructureID":5599,"TargetStructureID":4890,"Label":"5599-4890 via Ribbon Synapse from 28842 -> 5318, 28849 -> 28838, 38327 -> 4931, 38328 -> 6095","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28842,"TargetID":5318,"Directional":true},{"SourceID":28849,"TargetID":28838,"Directional":true},{"SourceID":38327,"TargetID":4931,"Directional":true},{"SourceID":38328,"TargetID":6095,"Directional":true}]},{"ID":9956,"SourceStructureID":5599,"TargetStructureID":5117,"Label":"5599-5117 via Ribbon Synapse from 38330 -> 28799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38330,"TargetID":28799,"Directional":true}]},{"ID":9957,"SourceStructureID":5599,"TargetStructureID":5118,"Label":"5599-5118 via BC Conventional Synapse from 52173 -> 52172, 56278 -> 56279","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52173,"TargetID":52172,"Directional":true},{"SourceID":56278,"TargetID":56279,"Directional":true}]},{"ID":9958,"SourceStructureID":5599,"TargetStructureID":5118,"Label":"5599-5118 via Ribbon Synapse from 52168 -> 52167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52168,"TargetID":52167,"Directional":true}]},{"ID":9959,"SourceStructureID":5599,"TargetStructureID":5374,"Label":"5599-5374 via Ribbon Synapse from 56119 -> 131158","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56119,"TargetID":131158,"Directional":true}]},{"ID":9960,"SourceStructureID":5599,"TargetStructureID":5439,"Label":"5599-5439 via Ribbon Synapse from 66595 -> 66596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66595,"TargetID":66596,"Directional":true}]},{"ID":9961,"SourceStructureID":5599,"TargetStructureID":8580,"Label":"5599-8580 via BC Conventional Synapse from 73673 -> 59827, 73673 -> 73675","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73673,"TargetID":59827,"Directional":true},{"SourceID":73673,"TargetID":73675,"Directional":true}]},{"ID":9962,"SourceStructureID":5599,"TargetStructureID":8580,"Label":"5599-8580 via Ribbon Synapse from 59828 -> 59827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59828,"TargetID":59827,"Directional":true}]},{"ID":9963,"SourceStructureID":5599,"TargetStructureID":18282,"Label":"5599-18282 via BC Conventional Synapse from 56159 -> 72340","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":56159,"TargetID":72340,"Directional":true}]},{"ID":9964,"SourceStructureID":5599,"TargetStructureID":29702,"Label":"5599-29702 via Ribbon Synapse from 75555 -> 75505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75555,"TargetID":75505,"Directional":true}]},{"ID":9965,"SourceStructureID":5599,"TargetStructureID":38307,"Label":"5599-38307 via Ribbon Synapse from 38325 -> 38323","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38325,"TargetID":38323,"Directional":true}]},{"ID":9966,"SourceStructureID":5599,"TargetStructureID":44970,"Label":"5599-44970 via Ribbon Synapse from 44789 -> 44992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44789,"TargetID":44992,"Directional":true}]},{"ID":9967,"SourceStructureID":5599,"TargetStructureID":63978,"Label":"5599-63978 via Ribbon Synapse from 64005 -> 64004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64005,"TargetID":64004,"Directional":true}]},{"ID":9968,"SourceStructureID":5599,"TargetStructureID":66407,"Label":"5599-66407 via Ribbon Synapse from 56200 -> 69492, 135180 -> 135182","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56200,"TargetID":69492,"Directional":true},{"SourceID":135180,"TargetID":135182,"Directional":true}]},{"ID":9969,"SourceStructureID":5599,"TargetStructureID":66768,"Label":"5599-66768 via Ribbon Synapse from 131159 -> 131160","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131159,"TargetID":131160,"Directional":true}]},{"ID":9970,"SourceStructureID":5599,"TargetStructureID":72299,"Label":"5599-72299 via Ribbon Synapse from 135160 -> 135161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135160,"TargetID":135161,"Directional":true}]},{"ID":9971,"SourceStructureID":5599,"TargetStructureID":131156,"Label":"5599-131156 via Ribbon Synapse from 56119 -> 131157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56119,"TargetID":131157,"Directional":true}]},{"ID":9972,"SourceStructureID":5600,"TargetStructureID":606,"Label":"5600-606 via Ribbon Synapse from 51860 -> 51861","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51860,"TargetID":51861,"Directional":true}]},{"ID":9973,"SourceStructureID":5600,"TargetStructureID":5118,"Label":"5600-5118 via BC Conventional Synapse from 52197 -> 52196, 52203 -> 52202","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52197,"TargetID":52196,"Directional":true},{"SourceID":52203,"TargetID":52202,"Directional":true}]},{"ID":9974,"SourceStructureID":5600,"TargetStructureID":5118,"Label":"5600-5118 via Ribbon Synapse from 52201 -> 52198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52201,"TargetID":52198,"Directional":true}]},{"ID":9975,"SourceStructureID":5600,"TargetStructureID":5374,"Label":"5600-5374 via Ribbon Synapse from 20454 -> 20453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20454,"TargetID":20453,"Directional":true}]},{"ID":9976,"SourceStructureID":5600,"TargetStructureID":7114,"Label":"5600-7114 via Ribbon Synapse from 20436 -> 7917, 26613 -> 26612, 95595 -> 95596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20436,"TargetID":7917,"Directional":true},{"SourceID":26613,"TargetID":26612,"Directional":true},{"SourceID":95595,"TargetID":95596,"Directional":true}]},{"ID":9977,"SourceStructureID":5600,"TargetStructureID":7231,"Label":"5600-7231 via BC Conventional Synapse from 116993 -> 116992, 116999 -> 116996, 117004 -> 117003","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":116993,"TargetID":116992,"Directional":true},{"SourceID":116999,"TargetID":116996,"Directional":true},{"SourceID":117004,"TargetID":117003,"Directional":true}]},{"ID":9978,"SourceStructureID":5600,"TargetStructureID":7231,"Label":"5600-7231 via Ribbon Synapse from 37874 -> 117019, 116942 -> 117006, 116943 -> 117006, 116944 -> 116996, 116963 -> 116964, 117001 -> 116996","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37874,"TargetID":117019,"Directional":true},{"SourceID":116942,"TargetID":117006,"Directional":true},{"SourceID":116943,"TargetID":117006,"Directional":true},{"SourceID":116944,"TargetID":116996,"Directional":true},{"SourceID":116963,"TargetID":116964,"Directional":true},{"SourceID":117001,"TargetID":116996,"Directional":true}]},{"ID":9979,"SourceStructureID":5600,"TargetStructureID":8579,"Label":"5600-8579 via Ribbon Synapse from 26626 -> 62701, 62691 -> 62690, 116648 -> 63138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26626,"TargetID":62701,"Directional":true},{"SourceID":62691,"TargetID":62690,"Directional":true},{"SourceID":116648,"TargetID":63138,"Directional":true}]},{"ID":9980,"SourceStructureID":5600,"TargetStructureID":18282,"Label":"5600-18282 via Ribbon Synapse from 20438 -> 20433","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20438,"TargetID":20433,"Directional":true}]},{"ID":9981,"SourceStructureID":5600,"TargetStructureID":35183,"Label":"5600-35183 via Ribbon Synapse from 35187 -> 35186","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35187,"TargetID":35186,"Directional":true}]},{"ID":9982,"SourceStructureID":5600,"TargetStructureID":39319,"Label":"5600-39319 via Ribbon Synapse from 39687 -> 39686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39687,"TargetID":39686,"Directional":true}]},{"ID":9983,"SourceStructureID":5600,"TargetStructureID":122760,"Label":"5600-122760 via Ribbon Synapse from 122762 -> 122761, 122762 -> 122765, 122764 -> 122765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122762,"TargetID":122761,"Directional":true},{"SourceID":122762,"TargetID":122765,"Directional":true},{"SourceID":122764,"TargetID":122765,"Directional":true}]},{"ID":9984,"SourceStructureID":5600,"TargetStructureID":122768,"Label":"5600-122768 via Ribbon Synapse from 122772 -> 122771, 122783 -> 122784, 122819 -> 122818, 122820 -> 122818, 122821 -> 122822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122772,"TargetID":122771,"Directional":true},{"SourceID":122783,"TargetID":122784,"Directional":true},{"SourceID":122819,"TargetID":122818,"Directional":true},{"SourceID":122820,"TargetID":122818,"Directional":true},{"SourceID":122821,"TargetID":122822,"Directional":true}]},{"ID":9985,"SourceStructureID":5600,"TargetStructureID":122829,"Label":"5600-122829 via Ribbon Synapse from 122831 -> 122830, 122833 -> 122832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122831,"TargetID":122830,"Directional":true},{"SourceID":122833,"TargetID":122832,"Directional":true}]},{"ID":9986,"SourceStructureID":5600,"TargetStructureID":126901,"Label":"5600-126901 via Ribbon Synapse from 126902 -> 126903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126902,"TargetID":126903,"Directional":true}]},{"ID":9987,"SourceStructureID":5601,"TargetStructureID":606,"Label":"5601-606 via BC Conventional Synapse from 54592 -> 54591","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54592,"TargetID":54591,"Directional":true}]},{"ID":9988,"SourceStructureID":5601,"TargetStructureID":606,"Label":"5601-606 via Ribbon Synapse from 44282 -> 10523, 54132 -> 54134, 54151 -> 54147, 54153 -> 10522, 54154 -> 54157, 54155 -> 54156, 54487 -> 54488, 54550 -> 54488, 54568 -> 54571, 54573 -> 54575, 54603 -> 54607, 54604 -> 54607, 54605 -> 54607","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44282,"TargetID":10523,"Directional":true},{"SourceID":54132,"TargetID":54134,"Directional":true},{"SourceID":54151,"TargetID":54147,"Directional":true},{"SourceID":54153,"TargetID":10522,"Directional":true},{"SourceID":54154,"TargetID":54157,"Directional":true},{"SourceID":54155,"TargetID":54156,"Directional":true},{"SourceID":54487,"TargetID":54488,"Directional":true},{"SourceID":54550,"TargetID":54488,"Directional":true},{"SourceID":54568,"TargetID":54571,"Directional":true},{"SourceID":54573,"TargetID":54575,"Directional":true},{"SourceID":54603,"TargetID":54607,"Directional":true},{"SourceID":54604,"TargetID":54607,"Directional":true},{"SourceID":54605,"TargetID":54607,"Directional":true}]},{"ID":9989,"SourceStructureID":5601,"TargetStructureID":7594,"Label":"5601-7594 via Ribbon Synapse from 54132 -> 7607, 54154 -> 7612, 91349 -> 7630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54132,"TargetID":7607,"Directional":true},{"SourceID":54154,"TargetID":7612,"Directional":true},{"SourceID":91349,"TargetID":7630,"Directional":true}]},{"ID":9990,"SourceStructureID":5601,"TargetStructureID":9769,"Label":"5601-9769 via Ribbon Synapse from 23945 -> 23939, 23953 -> 23952, 23969 -> 23968, 23980 -> 23976, 23984 -> 23981, 23989 -> 23988, 23991 -> 23990, 29951 -> 29941, 54487 -> 23966, 54550 -> 23966, 56103 -> 75335, 93096 -> 93097","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23945,"TargetID":23939,"Directional":true},{"SourceID":23953,"TargetID":23952,"Directional":true},{"SourceID":23969,"TargetID":23968,"Directional":true},{"SourceID":23980,"TargetID":23976,"Directional":true},{"SourceID":23984,"TargetID":23981,"Directional":true},{"SourceID":23989,"TargetID":23988,"Directional":true},{"SourceID":23991,"TargetID":23990,"Directional":true},{"SourceID":29951,"TargetID":29941,"Directional":true},{"SourceID":54487,"TargetID":23966,"Directional":true},{"SourceID":54550,"TargetID":23966,"Directional":true},{"SourceID":56103,"TargetID":75335,"Directional":true},{"SourceID":93096,"TargetID":93097,"Directional":true}]},{"ID":9991,"SourceStructureID":5601,"TargetStructureID":23870,"Label":"5601-23870 via Ribbon Synapse from 23943 -> 23921, 23945 -> 23942, 93096 -> 93098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23943,"TargetID":23921,"Directional":true},{"SourceID":23945,"TargetID":23942,"Directional":true},{"SourceID":93096,"TargetID":93098,"Directional":true}]},{"ID":9992,"SourceStructureID":5601,"TargetStructureID":32409,"Label":"5601-32409 via Ribbon Synapse from 32411 -> 32410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32411,"TargetID":32410,"Directional":true}]},{"ID":9993,"SourceStructureID":5601,"TargetStructureID":32451,"Label":"5601-32451 via Ribbon Synapse from 32459 -> 32458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32459,"TargetID":32458,"Directional":true}]},{"ID":9994,"SourceStructureID":5601,"TargetStructureID":32787,"Label":"5601-32787 via Ribbon Synapse from 23980 -> 32789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23980,"TargetID":32789,"Directional":true}]},{"ID":9995,"SourceStructureID":5601,"TargetStructureID":34055,"Label":"5601-34055 via Ribbon Synapse from 34102 -> 34103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34102,"TargetID":34103,"Directional":true}]},{"ID":9996,"SourceStructureID":5601,"TargetStructureID":35526,"Label":"5601-35526 via Ribbon Synapse from 35533 -> 35532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35533,"TargetID":35532,"Directional":true}]},{"ID":9997,"SourceStructureID":5601,"TargetStructureID":38307,"Label":"5601-38307 via Ribbon Synapse from 38313 -> 38314","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38313,"TargetID":38314,"Directional":true}]},{"ID":9998,"SourceStructureID":5601,"TargetStructureID":54469,"Label":"5601-54469 via Ribbon Synapse from 23947 -> 54476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23947,"TargetID":54476,"Directional":true}]},{"ID":9999,"SourceStructureID":5601,"TargetStructureID":54778,"Label":"5601-54778 via Ribbon Synapse from 54811 -> 54810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54811,"TargetID":54810,"Directional":true}]},{"ID":10000,"SourceStructureID":5601,"TargetStructureID":62396,"Label":"5601-62396 via Ribbon Synapse from 36015 -> 62402, 36039 -> 62414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36015,"TargetID":62402,"Directional":true},{"SourceID":36039,"TargetID":62414,"Directional":true}]},{"ID":10001,"SourceStructureID":5601,"TargetStructureID":84118,"Label":"5601-84118 via Ribbon Synapse from 57494 -> 123651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57494,"TargetID":123651,"Directional":true}]},{"ID":10002,"SourceStructureID":5601,"TargetStructureID":91979,"Label":"5601-91979 via BC Conventional Synapse from 127154 -> 134791","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":127154,"TargetID":134791,"Directional":true}]},{"ID":10003,"SourceStructureID":5602,"TargetStructureID":115,"Label":"5602-115 via Ribbon Synapse from 10402 -> 8097","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10402,"TargetID":8097,"Directional":true}]},{"ID":10004,"SourceStructureID":5602,"TargetStructureID":5351,"Label":"5602-5351 via Ribbon Synapse from 24105 -> 24082","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24105,"TargetID":24082,"Directional":true}]},{"ID":10005,"SourceStructureID":5606,"TargetStructureID":606,"Label":"5606-606 via Ribbon Synapse from 36906 -> 5098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36906,"TargetID":5098,"Directional":true}]},{"ID":10006,"SourceStructureID":5606,"TargetStructureID":10559,"Label":"5606-10559 via Ribbon Synapse from 43647 -> 44322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43647,"TargetID":44322,"Directional":true}]},{"ID":10007,"SourceStructureID":5607,"TargetStructureID":606,"Label":"5607-606 via Ribbon Synapse from 43056 -> 44273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43056,"TargetID":44273,"Directional":true}]},{"ID":10008,"SourceStructureID":5607,"TargetStructureID":9769,"Label":"5607-9769 via Ribbon Synapse from 24007 -> 23998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24007,"TargetID":23998,"Directional":true}]},{"ID":10009,"SourceStructureID":5607,"TargetStructureID":54862,"Label":"5607-54862 via Ribbon Synapse from 54866 -> 54864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54866,"TargetID":54864,"Directional":true}]},{"ID":10010,"SourceStructureID":5608,"TargetStructureID":115,"Label":"5608-115 via Ribbon Synapse from 42664 -> 8088","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42664,"TargetID":8088,"Directional":true}]},{"ID":10011,"SourceStructureID":5608,"TargetStructureID":606,"Label":"5608-606 via BC Conventional Synapse from 54277 -> 54276","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54277,"TargetID":54276,"Directional":true}]},{"ID":10012,"SourceStructureID":5608,"TargetStructureID":606,"Label":"5608-606 via Ribbon Synapse from 54196 -> 10525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54196,"TargetID":10525,"Directional":true}]},{"ID":10013,"SourceStructureID":5608,"TargetStructureID":5607,"Label":"5608-5607 via Ribbon Synapse from 42839 -> 42840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42839,"TargetID":42840,"Directional":true}]},{"ID":10014,"SourceStructureID":5608,"TargetStructureID":10559,"Label":"5608-10559 via BC Conventional Synapse from 54277 -> 54280","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54277,"TargetID":54280,"Directional":true}]},{"ID":10015,"SourceStructureID":5608,"TargetStructureID":88762,"Label":"5608-88762 via Ribbon Synapse from 88787 -> 88783, 88788 -> 88783","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88787,"TargetID":88783,"Directional":true},{"SourceID":88788,"TargetID":88783,"Directional":true}]},{"ID":10016,"SourceStructureID":5609,"TargetStructureID":517,"Label":"5609-517 via Conventional from 20656 -> 16417, 20657 -> 20658, 20663 -> 20665, 20664 -> 20667, 61446 -> 16423","Type":"Conventional","Directional":true,"Links":[{"SourceID":20656,"TargetID":16417,"Directional":true},{"SourceID":20657,"TargetID":20658,"Directional":true},{"SourceID":20663,"TargetID":20665,"Directional":true},{"SourceID":20664,"TargetID":20667,"Directional":true},{"SourceID":61446,"TargetID":16423,"Directional":true}]},{"ID":10017,"SourceStructureID":5609,"TargetStructureID":3881,"Label":"5609-3881 via Conventional from 32348 -> 31394","Type":"Conventional","Directional":true,"Links":[{"SourceID":32348,"TargetID":31394,"Directional":true}]},{"ID":10018,"SourceStructureID":5609,"TargetStructureID":10815,"Label":"5609-10815 via Conventional from 20642 -> 31377","Type":"Conventional","Directional":true,"Links":[{"SourceID":20642,"TargetID":31377,"Directional":true}]},{"ID":10019,"SourceStructureID":5611,"TargetStructureID":8720,"Label":"5611-8720 via Ribbon Synapse from 63954 -> 63952","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63954,"TargetID":63952,"Directional":true}]},{"ID":10020,"SourceStructureID":5614,"TargetStructureID":5457,"Label":"5614-5457 via Ribbon Synapse from 8733 -> 15353, 15361 -> 15360, 15362 -> 15363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8733,"TargetID":15353,"Directional":true},{"SourceID":15361,"TargetID":15360,"Directional":true},{"SourceID":15362,"TargetID":15363,"Directional":true}]},{"ID":10021,"SourceStructureID":5614,"TargetStructureID":5634,"Label":"5614-5634 via Ribbon Synapse from 8736 -> 8731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8736,"TargetID":8731,"Directional":true}]},{"ID":10022,"SourceStructureID":5614,"TargetStructureID":11229,"Label":"5614-11229 via Ribbon Synapse from 25186 -> 25185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25186,"TargetID":25185,"Directional":true}]},{"ID":10023,"SourceStructureID":5618,"TargetStructureID":5292,"Label":"5618-5292 via Conventional from 65991 -> 65992","Type":"Conventional","Directional":true,"Links":[{"SourceID":65991,"TargetID":65992,"Directional":true}]},{"ID":10024,"SourceStructureID":5618,"TargetStructureID":18693,"Label":"5618-18693 via Conventional from 65985 -> 33819","Type":"Conventional","Directional":true,"Links":[{"SourceID":65985,"TargetID":33819,"Directional":true}]},{"ID":10025,"SourceStructureID":5622,"TargetStructureID":7050,"Label":"5622-7050 via Ribbon Synapse from 113043 -> 113044","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113043,"TargetID":113044,"Directional":true}]},{"ID":10026,"SourceStructureID":5623,"TargetStructureID":8576,"Label":"5623-8576 via Ribbon Synapse from 69042 -> 69041, 69044 -> 69043, 69047 -> 69046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69042,"TargetID":69041,"Directional":true},{"SourceID":69044,"TargetID":69043,"Directional":true},{"SourceID":69047,"TargetID":69046,"Directional":true}]},{"ID":10027,"SourceStructureID":5623,"TargetStructureID":32804,"Label":"5623-32804 via Ribbon Synapse from 32817 -> 32816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32817,"TargetID":32816,"Directional":true}]},{"ID":10028,"SourceStructureID":5623,"TargetStructureID":38236,"Label":"5623-38236 via Ribbon Synapse from 38240 -> 38239, 38244 -> 38243","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38240,"TargetID":38239,"Directional":true},{"SourceID":38244,"TargetID":38243,"Directional":true}]},{"ID":10029,"SourceStructureID":5623,"TargetStructureID":66958,"Label":"5623-66958 via Ribbon Synapse from 131980 -> 131981","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131980,"TargetID":131981,"Directional":true}]},{"ID":10030,"SourceStructureID":5623,"TargetStructureID":69049,"Label":"5623-69049 via Ribbon Synapse from 40379 -> 69051","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40379,"TargetID":69051,"Directional":true}]},{"ID":10031,"SourceStructureID":5623,"TargetStructureID":127813,"Label":"5623-127813 via Ribbon Synapse from 40376 -> 127818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40376,"TargetID":127818,"Directional":true}]},{"ID":10032,"SourceStructureID":5634,"TargetStructureID":5614,"Label":"5634-5614 via Conventional from 8729 -> 8735","Type":"Conventional","Directional":true,"Links":[{"SourceID":8729,"TargetID":8735,"Directional":true}]},{"ID":10033,"SourceStructureID":5634,"TargetStructureID":10956,"Label":"5634-10956 via Conventional from 33245 -> 33244","Type":"Conventional","Directional":true,"Links":[{"SourceID":33245,"TargetID":33244,"Directional":true}]},{"ID":10034,"SourceStructureID":5635,"TargetStructureID":5117,"Label":"5635-5117 via Ribbon Synapse from 28826 -> 28800","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28826,"TargetID":28800,"Directional":true}]},{"ID":10035,"SourceStructureID":5635,"TargetStructureID":5439,"Label":"5635-5439 via Ribbon Synapse from 55976 -> 66556, 55984 -> 70784, 55985 -> 66560, 55995 -> 66564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55976,"TargetID":66556,"Directional":true},{"SourceID":55984,"TargetID":70784,"Directional":true},{"SourceID":55985,"TargetID":66560,"Directional":true},{"SourceID":55995,"TargetID":66564,"Directional":true}]},{"ID":10036,"SourceStructureID":5635,"TargetStructureID":73617,"Label":"5635-73617 via Ribbon Synapse from 56145 -> 73618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56145,"TargetID":73618,"Directional":true}]},{"ID":10037,"SourceStructureID":5636,"TargetStructureID":7279,"Label":"5636-7279 via Ribbon Synapse from 34725 -> 34729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34725,"TargetID":34729,"Directional":true}]},{"ID":10038,"SourceStructureID":5636,"TargetStructureID":8551,"Label":"5636-8551 via Ribbon Synapse from 34706 -> 8581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34706,"TargetID":8581,"Directional":true}]},{"ID":10039,"SourceStructureID":5636,"TargetStructureID":31389,"Label":"5636-31389 via Ribbon Synapse from 36975 -> 36977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36975,"TargetID":36977,"Directional":true}]},{"ID":10040,"SourceStructureID":5637,"TargetStructureID":606,"Label":"5637-606 via Ribbon Synapse from 44293 -> 44287, 44299 -> 44297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44293,"TargetID":44287,"Directional":true},{"SourceID":44299,"TargetID":44297,"Directional":true}]},{"ID":10041,"SourceStructureID":5637,"TargetStructureID":5451,"Label":"5637-5451 via Cistern Pre from 39077 -> 39078","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":39077,"TargetID":39078,"Directional":true}]},{"ID":10042,"SourceStructureID":5637,"TargetStructureID":7594,"Label":"5637-7594 via Ribbon Synapse from 56027 -> 7611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56027,"TargetID":7611,"Directional":true}]},{"ID":10043,"SourceStructureID":5637,"TargetStructureID":31471,"Label":"5637-31471 via Ribbon Synapse from 44290 -> 44291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44290,"TargetID":44291,"Directional":true}]},{"ID":10044,"SourceStructureID":5637,"TargetStructureID":43716,"Label":"5637-43716 via BC Conventional Synapse from 123647 -> 123646","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123647,"TargetID":123646,"Directional":true}]},{"ID":10045,"SourceStructureID":5637,"TargetStructureID":54776,"Label":"5637-54776 via Ribbon Synapse from 54792 -> 54785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54792,"TargetID":54785,"Directional":true}]},{"ID":10046,"SourceStructureID":5638,"TargetStructureID":5439,"Label":"5638-5439 via Ribbon Synapse from 39125 -> 66612, 65937 -> 66607","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39125,"TargetID":66612,"Directional":true},{"SourceID":65937,"TargetID":66607,"Directional":true}]},{"ID":10047,"SourceStructureID":5639,"TargetStructureID":7113,"Label":"5639-7113 via Ribbon Synapse from 46219 -> 46218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46219,"TargetID":46218,"Directional":true}]},{"ID":10048,"SourceStructureID":5639,"TargetStructureID":7274,"Label":"5639-7274 via Ribbon Synapse from 36987 -> 41888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36987,"TargetID":41888,"Directional":true}]},{"ID":10049,"SourceStructureID":5639,"TargetStructureID":10574,"Label":"5639-10574 via BC Conventional Synapse from 37010 -> 37011","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":37010,"TargetID":37011,"Directional":true}]},{"ID":10050,"SourceStructureID":5639,"TargetStructureID":10574,"Label":"5639-10574 via Ribbon Synapse from 37045 -> 38901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37045,"TargetID":38901,"Directional":true}]},{"ID":10051,"SourceStructureID":5639,"TargetStructureID":13858,"Label":"5639-13858 via BC Conventional Synapse from 37052 -> 13915","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":37052,"TargetID":13915,"Directional":true}]},{"ID":10052,"SourceStructureID":5639,"TargetStructureID":136432,"Label":"5639-136432 via Ribbon Synapse from 37007 -> 136526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37007,"TargetID":136526,"Directional":true}]},{"ID":10053,"SourceStructureID":5640,"TargetStructureID":5473,"Label":"5640-5473 via Ribbon Synapse from 37114 -> 37120, 37115 -> 37121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37114,"TargetID":37120,"Directional":true},{"SourceID":37115,"TargetID":37121,"Directional":true}]},{"ID":10054,"SourceStructureID":5640,"TargetStructureID":7114,"Label":"5640-7114 via Ribbon Synapse from 37059 -> 37060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37059,"TargetID":37060,"Directional":true}]},{"ID":10055,"SourceStructureID":5641,"TargetStructureID":5491,"Label":"5641-5491 via Ribbon Synapse from 20607 -> 54812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20607,"TargetID":54812,"Directional":true}]},{"ID":10056,"SourceStructureID":5641,"TargetStructureID":7204,"Label":"5641-7204 via Ribbon Synapse from 20647 -> 24345, 24184 -> 24338, 24342 -> 24341, 39050 -> 39051","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20647,"TargetID":24345,"Directional":true},{"SourceID":24184,"TargetID":24338,"Directional":true},{"SourceID":24342,"TargetID":24341,"Directional":true},{"SourceID":39050,"TargetID":39051,"Directional":true}]},{"ID":10057,"SourceStructureID":5641,"TargetStructureID":8578,"Label":"5641-8578 via Ribbon Synapse from 54499 -> 54498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54499,"TargetID":54498,"Directional":true}]},{"ID":10058,"SourceStructureID":5641,"TargetStructureID":9769,"Label":"5641-9769 via Ribbon Synapse from 54686 -> 54687","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54686,"TargetID":54687,"Directional":true}]},{"ID":10059,"SourceStructureID":5641,"TargetStructureID":12203,"Label":"5641-12203 via Ribbon Synapse from 20711 -> 12262, 27411 -> 12262, 27412 -> 12262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20711,"TargetID":12262,"Directional":true},{"SourceID":27411,"TargetID":12262,"Directional":true},{"SourceID":27412,"TargetID":12262,"Directional":true}]},{"ID":10060,"SourceStructureID":5641,"TargetStructureID":24174,"Label":"5641-24174 via Ribbon Synapse from 20677 -> 24178, 24184 -> 24179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20677,"TargetID":24178,"Directional":true},{"SourceID":24184,"TargetID":24179,"Directional":true}]},{"ID":10061,"SourceStructureID":5641,"TargetStructureID":30567,"Label":"5641-30567 via Ribbon Synapse from 32116 -> 32110","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32116,"TargetID":32110,"Directional":true}]},{"ID":10062,"SourceStructureID":5641,"TargetStructureID":34055,"Label":"5641-34055 via Ribbon Synapse from 27666 -> 34116","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27666,"TargetID":34116,"Directional":true}]},{"ID":10063,"SourceStructureID":5641,"TargetStructureID":35811,"Label":"5641-35811 via Ribbon Synapse from 35867 -> 35866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35867,"TargetID":35866,"Directional":true}]},{"ID":10064,"SourceStructureID":5641,"TargetStructureID":38404,"Label":"5641-38404 via Ribbon Synapse from 39049 -> 39048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39049,"TargetID":39048,"Directional":true}]},{"ID":10065,"SourceStructureID":5641,"TargetStructureID":54681,"Label":"5641-54681 via Ribbon Synapse from 20666 -> 54688, 54686 -> 54685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20666,"TargetID":54688,"Directional":true},{"SourceID":54686,"TargetID":54685,"Directional":true}]},{"ID":10066,"SourceStructureID":5641,"TargetStructureID":54695,"Label":"5641-54695 via Ribbon Synapse from 57508 -> 54697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57508,"TargetID":54697,"Directional":true}]},{"ID":10067,"SourceStructureID":5641,"TargetStructureID":54818,"Label":"5641-54818 via BC Conventional Synapse from 54849 -> 54848","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54849,"TargetID":54848,"Directional":true}]},{"ID":10068,"SourceStructureID":5641,"TargetStructureID":55610,"Label":"5641-55610 via Ribbon Synapse from 55613 -> 55611, 55617 -> 55618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55613,"TargetID":55611,"Directional":true},{"SourceID":55617,"TargetID":55618,"Directional":true}]},{"ID":10069,"SourceStructureID":5641,"TargetStructureID":112748,"Label":"5641-112748 via Ribbon Synapse from 20603 -> 129923","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20603,"TargetID":129923,"Directional":true}]},{"ID":10070,"SourceStructureID":5641,"TargetStructureID":147696,"Label":"5641-147696 via Ribbon Synapse from 27659 -> 147702","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27659,"TargetID":147702,"Directional":true}]},{"ID":10071,"SourceStructureID":5641,"TargetStructureID":147818,"Label":"5641-147818 via Ribbon Synapse from 147817 -> 147819","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147817,"TargetID":147819,"Directional":true}]},{"ID":10072,"SourceStructureID":5643,"TargetStructureID":5556,"Label":"5643-5556 via Conventional from 34907 -> 34908","Type":"Conventional","Directional":true,"Links":[{"SourceID":34907,"TargetID":34908,"Directional":true}]},{"ID":10073,"SourceStructureID":5643,"TargetStructureID":5650,"Label":"5643-5650 via Conventional from 38551 -> 102749","Type":"Conventional","Directional":true,"Links":[{"SourceID":38551,"TargetID":102749,"Directional":true}]},{"ID":10074,"SourceStructureID":5643,"TargetStructureID":30177,"Label":"5643-30177 via Conventional from 34909 -> 34910","Type":"Conventional","Directional":true,"Links":[{"SourceID":34909,"TargetID":34910,"Directional":true}]},{"ID":10075,"SourceStructureID":5643,"TargetStructureID":35440,"Label":"5643-35440 via Conventional from 38547 -> 35448","Type":"Conventional","Directional":true,"Links":[{"SourceID":38547,"TargetID":35448,"Directional":true}]},{"ID":10076,"SourceStructureID":5645,"TargetStructureID":606,"Label":"5645-606 via Ribbon Synapse from 47420 -> 47419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47420,"TargetID":47419,"Directional":true}]},{"ID":10077,"SourceStructureID":5645,"TargetStructureID":5107,"Label":"5645-5107 via Ribbon Synapse from 108513 -> 108514","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108513,"TargetID":108514,"Directional":true}]},{"ID":10078,"SourceStructureID":5645,"TargetStructureID":5117,"Label":"5645-5117 via Ribbon Synapse from 47763 -> 66357","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47763,"TargetID":66357,"Directional":true}]},{"ID":10079,"SourceStructureID":5645,"TargetStructureID":5294,"Label":"5645-5294 via BC Conventional Synapse from 54504 -> 39472","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54504,"TargetID":39472,"Directional":true}]},{"ID":10080,"SourceStructureID":5645,"TargetStructureID":6857,"Label":"5645-6857 via Ribbon Synapse from 108615 -> 6898, 108619 -> 6898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108615,"TargetID":6898,"Directional":true},{"SourceID":108619,"TargetID":6898,"Directional":true}]},{"ID":10081,"SourceStructureID":5645,"TargetStructureID":22974,"Label":"5645-22974 via Ribbon Synapse from 78061 -> 108627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78061,"TargetID":108627,"Directional":true}]},{"ID":10082,"SourceStructureID":5645,"TargetStructureID":31024,"Label":"5645-31024 via Ribbon Synapse from 31154 -> 31118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31154,"TargetID":31118,"Directional":true}]},{"ID":10083,"SourceStructureID":5645,"TargetStructureID":31305,"Label":"5645-31305 via Ribbon Synapse from 31327 -> 31306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31327,"TargetID":31306,"Directional":true}]},{"ID":10084,"SourceStructureID":5645,"TargetStructureID":31356,"Label":"5645-31356 via Ribbon Synapse from 32762 -> 32761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32762,"TargetID":32761,"Directional":true}]},{"ID":10085,"SourceStructureID":5645,"TargetStructureID":35384,"Label":"5645-35384 via Ribbon Synapse from 39480 -> 39481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39480,"TargetID":39481,"Directional":true}]},{"ID":10086,"SourceStructureID":5645,"TargetStructureID":67671,"Label":"5645-67671 via Ribbon Synapse from 78049 -> 78050","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78049,"TargetID":78050,"Directional":true}]},{"ID":10087,"SourceStructureID":5645,"TargetStructureID":71517,"Label":"5645-71517 via Ribbon Synapse from 72129 -> 72127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72129,"TargetID":72127,"Directional":true}]},{"ID":10088,"SourceStructureID":5645,"TargetStructureID":72124,"Label":"5645-72124 via Ribbon Synapse from 108572 -> 108573","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108572,"TargetID":108573,"Directional":true}]},{"ID":10089,"SourceStructureID":5645,"TargetStructureID":78051,"Label":"5645-78051 via Ribbon Synapse from 78049 -> 78052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78049,"TargetID":78052,"Directional":true}]},{"ID":10090,"SourceStructureID":5645,"TargetStructureID":78423,"Label":"5645-78423 via Ribbon Synapse from 72132 -> 78424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72132,"TargetID":78424,"Directional":true}]},{"ID":10091,"SourceStructureID":5645,"TargetStructureID":87432,"Label":"5645-87432 via Ribbon Synapse from 47649 -> 87439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47649,"TargetID":87439,"Directional":true}]},{"ID":10092,"SourceStructureID":5645,"TargetStructureID":98703,"Label":"5645-98703 via Ribbon Synapse from 31332 -> 98706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31332,"TargetID":98706,"Directional":true}]},{"ID":10093,"SourceStructureID":5645,"TargetStructureID":108539,"Label":"5645-108539 via Ribbon Synapse from 108546 -> 108545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108546,"TargetID":108545,"Directional":true}]},{"ID":10094,"SourceStructureID":5645,"TargetStructureID":108616,"Label":"5645-108616 via Ribbon Synapse from 108615 -> 108618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108615,"TargetID":108618,"Directional":true}]},{"ID":10095,"SourceStructureID":5648,"TargetStructureID":5405,"Label":"5648-5405 via Ribbon Synapse from 23419 -> 11180","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23419,"TargetID":11180,"Directional":true}]},{"ID":10096,"SourceStructureID":5648,"TargetStructureID":7134,"Label":"5648-7134 via Ribbon Synapse from 53973 -> 26672","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53973,"TargetID":26672,"Directional":true}]},{"ID":10097,"SourceStructureID":5648,"TargetStructureID":8575,"Label":"5648-8575 via BC Conventional Synapse from 62286 -> 62285","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62286,"TargetID":62285,"Directional":true}]},{"ID":10098,"SourceStructureID":5648,"TargetStructureID":16073,"Label":"5648-16073 via BC Conventional Synapse from 32222 -> 32221","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":32222,"TargetID":32221,"Directional":true}]},{"ID":10099,"SourceStructureID":5648,"TargetStructureID":77077,"Label":"5648-77077 via Ribbon Synapse from 77076 -> 77079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77076,"TargetID":77079,"Directional":true}]},{"ID":10100,"SourceStructureID":5649,"TargetStructureID":4890,"Label":"5649-4890 via BC Conventional Synapse from 104702 -> 104703","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104702,"TargetID":104703,"Directional":true}]},{"ID":10101,"SourceStructureID":5649,"TargetStructureID":4890,"Label":"5649-4890 via Ribbon Synapse from 53849 -> 104545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53849,"TargetID":104545,"Directional":true}]},{"ID":10102,"SourceStructureID":5649,"TargetStructureID":5117,"Label":"5649-5117 via Ribbon Synapse from 66353 -> 66352","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66353,"TargetID":66352,"Directional":true}]},{"ID":10103,"SourceStructureID":5649,"TargetStructureID":6857,"Label":"5649-6857 via Ribbon Synapse from 105764 -> 105765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105764,"TargetID":105765,"Directional":true}]},{"ID":10104,"SourceStructureID":5649,"TargetStructureID":8027,"Label":"5649-8027 via Ribbon Synapse from 37858 -> 37857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37858,"TargetID":37857,"Directional":true}]},{"ID":10105,"SourceStructureID":5649,"TargetStructureID":8579,"Label":"5649-8579 via Ribbon Synapse from 135350 -> 62685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135350,"TargetID":62685,"Directional":true}]},{"ID":10106,"SourceStructureID":5649,"TargetStructureID":8580,"Label":"5649-8580 via BC Conventional Synapse from 107096 -> 107089","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107096,"TargetID":107089,"Directional":true}]},{"ID":10107,"SourceStructureID":5649,"TargetStructureID":8580,"Label":"5649-8580 via Ribbon Synapse from 59659 -> 59658, 70012 -> 59658, 104598 -> 104607","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59659,"TargetID":59658,"Directional":true},{"SourceID":70012,"TargetID":59658,"Directional":true},{"SourceID":104598,"TargetID":104607,"Directional":true}]},{"ID":10108,"SourceStructureID":5649,"TargetStructureID":8588,"Label":"5649-8588 via Ribbon Synapse from 106814 -> 106822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106814,"TargetID":106822,"Directional":true}]},{"ID":10109,"SourceStructureID":5649,"TargetStructureID":16087,"Label":"5649-16087 via BC Conventional Synapse from 38488 -> 16096","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":38488,"TargetID":16096,"Directional":true}]},{"ID":10110,"SourceStructureID":5649,"TargetStructureID":16087,"Label":"5649-16087 via Ribbon Synapse from 53900 -> 105611, 55733 -> 16095, 78012 -> 78013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53900,"TargetID":105611,"Directional":true},{"SourceID":55733,"TargetID":16095,"Directional":true},{"SourceID":78012,"TargetID":78013,"Directional":true}]},{"ID":10111,"SourceStructureID":5649,"TargetStructureID":22974,"Label":"5649-22974 via Ribbon Synapse from 23026 -> 23027, 23028 -> 23025, 53907 -> 105686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23026,"TargetID":23027,"Directional":true},{"SourceID":23028,"TargetID":23025,"Directional":true},{"SourceID":53907,"TargetID":105686,"Directional":true}]},{"ID":10112,"SourceStructureID":5649,"TargetStructureID":31024,"Label":"5649-31024 via Ribbon Synapse from 31042 -> 31039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31042,"TargetID":31039,"Directional":true}]},{"ID":10113,"SourceStructureID":5649,"TargetStructureID":35064,"Label":"5649-35064 via BC Conventional Synapse from 105775 -> 105776","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105775,"TargetID":105776,"Directional":true}]},{"ID":10114,"SourceStructureID":5649,"TargetStructureID":35064,"Label":"5649-35064 via Ribbon Synapse from 35067 -> 35066","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35067,"TargetID":35066,"Directional":true}]},{"ID":10115,"SourceStructureID":5649,"TargetStructureID":35356,"Label":"5649-35356 via Ribbon Synapse from 35365 -> 35364, 35366 -> 35363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35365,"TargetID":35364,"Directional":true},{"SourceID":35366,"TargetID":35363,"Directional":true}]},{"ID":10116,"SourceStructureID":5649,"TargetStructureID":36516,"Label":"5649-36516 via Ribbon Synapse from 33105 -> 36621, 33110 -> 36625","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33105,"TargetID":36621,"Directional":true},{"SourceID":33110,"TargetID":36625,"Directional":true}]},{"ID":10117,"SourceStructureID":5649,"TargetStructureID":38483,"Label":"5649-38483 via Ribbon Synapse from 38489 -> 38486, 38498 -> 38497, 106853 -> 106862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38489,"TargetID":38486,"Directional":true},{"SourceID":38498,"TargetID":38497,"Directional":true},{"SourceID":106853,"TargetID":106862,"Directional":true}]},{"ID":10118,"SourceStructureID":5649,"TargetStructureID":53202,"Label":"5649-53202 via Ribbon Synapse from 81698 -> 104674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81698,"TargetID":104674,"Directional":true}]},{"ID":10119,"SourceStructureID":5649,"TargetStructureID":61836,"Label":"5649-61836 via Ribbon Synapse from 38498 -> 69777, 68118 -> 68117, 68120 -> 68119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38498,"TargetID":69777,"Directional":true},{"SourceID":68118,"TargetID":68117,"Directional":true},{"SourceID":68120,"TargetID":68119,"Directional":true}]},{"ID":10120,"SourceStructureID":5649,"TargetStructureID":65576,"Label":"5649-65576 via Ribbon Synapse from 84501 -> 84504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84501,"TargetID":84504,"Directional":true}]},{"ID":10121,"SourceStructureID":5649,"TargetStructureID":67671,"Label":"5649-67671 via Ribbon Synapse from 53886 -> 77362, 53888 -> 104738, 53897 -> 77385, 53943 -> 105727, 53999 -> 77720, 54033 -> 77701, 76890 -> 76891, 78012 -> 78014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53886,"TargetID":77362,"Directional":true},{"SourceID":53888,"TargetID":104738,"Directional":true},{"SourceID":53897,"TargetID":77385,"Directional":true},{"SourceID":53943,"TargetID":105727,"Directional":true},{"SourceID":53999,"TargetID":77720,"Directional":true},{"SourceID":54033,"TargetID":77701,"Directional":true},{"SourceID":76890,"TargetID":76891,"Directional":true},{"SourceID":78012,"TargetID":78014,"Directional":true}]},{"ID":10122,"SourceStructureID":5649,"TargetStructureID":67894,"Label":"5649-67894 via Ribbon Synapse from 35365 -> 82237","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35365,"TargetID":82237,"Directional":true}]},{"ID":10123,"SourceStructureID":5649,"TargetStructureID":68153,"Label":"5649-68153 via Ribbon Synapse from 68177 -> 68178","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68177,"TargetID":68178,"Directional":true}]},{"ID":10124,"SourceStructureID":5649,"TargetStructureID":68497,"Label":"5649-68497 via Ribbon Synapse from 81587 -> 81586","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81587,"TargetID":81586,"Directional":true}]},{"ID":10125,"SourceStructureID":5649,"TargetStructureID":68548,"Label":"5649-68548 via BC Conventional Synapse from 73169 -> 73170","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73169,"TargetID":73170,"Directional":true}]},{"ID":10126,"SourceStructureID":5649,"TargetStructureID":71634,"Label":"5649-71634 via Ribbon Synapse from 105699 -> 105702, 105764 -> 105763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105699,"TargetID":105702,"Directional":true},{"SourceID":105764,"TargetID":105763,"Directional":true}]},{"ID":10127,"SourceStructureID":5649,"TargetStructureID":75099,"Label":"5649-75099 via BC Conventional Synapse from 82564 -> 82565","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":82564,"TargetID":82565,"Directional":true}]},{"ID":10128,"SourceStructureID":5649,"TargetStructureID":75099,"Label":"5649-75099 via Ribbon Synapse from 105397 -> 105412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105397,"TargetID":105412,"Directional":true}]},{"ID":10129,"SourceStructureID":5649,"TargetStructureID":77688,"Label":"5649-77688 via Ribbon Synapse from 53943 -> 105726","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53943,"TargetID":105726,"Directional":true}]},{"ID":10130,"SourceStructureID":5649,"TargetStructureID":78021,"Label":"5649-78021 via Ribbon Synapse from 53960 -> 105903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53960,"TargetID":105903,"Directional":true}]},{"ID":10131,"SourceStructureID":5649,"TargetStructureID":78023,"Label":"5649-78023 via Ribbon Synapse from 78025 -> 78024","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78025,"TargetID":78024,"Directional":true}]},{"ID":10132,"SourceStructureID":5649,"TargetStructureID":78032,"Label":"5649-78032 via Ribbon Synapse from 106020 -> 106021","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106020,"TargetID":106021,"Directional":true}]},{"ID":10133,"SourceStructureID":5649,"TargetStructureID":78290,"Label":"5649-78290 via Ribbon Synapse from 53999 -> 106003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53999,"TargetID":106003,"Directional":true}]},{"ID":10134,"SourceStructureID":5649,"TargetStructureID":78431,"Label":"5649-78431 via Ribbon Synapse from 54308 -> 107184","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54308,"TargetID":107184,"Directional":true}]},{"ID":10135,"SourceStructureID":5649,"TargetStructureID":78909,"Label":"5649-78909 via Ribbon Synapse from 54180 -> 106317, 54301 -> 87523","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54180,"TargetID":106317,"Directional":true},{"SourceID":54301,"TargetID":87523,"Directional":true}]},{"ID":10136,"SourceStructureID":5649,"TargetStructureID":80294,"Label":"5649-80294 via Ribbon Synapse from 54107 -> 106558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54107,"TargetID":106558,"Directional":true}]},{"ID":10137,"SourceStructureID":5649,"TargetStructureID":80338,"Label":"5649-80338 via Ribbon Synapse from 54103 -> 106538","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54103,"TargetID":106538,"Directional":true}]},{"ID":10138,"SourceStructureID":5649,"TargetStructureID":81588,"Label":"5649-81588 via Ribbon Synapse from 81587 -> 81589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81587,"TargetID":81589,"Directional":true}]},{"ID":10139,"SourceStructureID":5649,"TargetStructureID":81667,"Label":"5649-81667 via BC Conventional Synapse from 81723 -> 81721","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81723,"TargetID":81721,"Directional":true}]},{"ID":10140,"SourceStructureID":5649,"TargetStructureID":81667,"Label":"5649-81667 via Ribbon Synapse from 81698 -> 81699","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81698,"TargetID":81699,"Directional":true}]},{"ID":10141,"SourceStructureID":5649,"TargetStructureID":84502,"Label":"5649-84502 via Ribbon Synapse from 84501 -> 84503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84501,"TargetID":84503,"Directional":true}]},{"ID":10142,"SourceStructureID":5649,"TargetStructureID":103756,"Label":"5649-103756 via BC Conventional Synapse from 37860 -> 103757","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":37860,"TargetID":103757,"Directional":true}]},{"ID":10143,"SourceStructureID":5649,"TargetStructureID":103760,"Label":"5649-103760 via BC Conventional Synapse from 103758 -> 103761","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103758,"TargetID":103761,"Directional":true}]},{"ID":10144,"SourceStructureID":5649,"TargetStructureID":103766,"Label":"5649-103766 via BC Conventional Synapse from 103762 -> 103767","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103762,"TargetID":103767,"Directional":true}]},{"ID":10145,"SourceStructureID":5649,"TargetStructureID":103771,"Label":"5649-103771 via Ribbon Synapse from 53884 -> 104732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53884,"TargetID":104732,"Directional":true}]},{"ID":10146,"SourceStructureID":5649,"TargetStructureID":103777,"Label":"5649-103777 via Ribbon Synapse from 103769 -> 103778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103769,"TargetID":103778,"Directional":true}]},{"ID":10147,"SourceStructureID":5649,"TargetStructureID":104484,"Label":"5649-104484 via Ribbon Synapse from 104476 -> 104488","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104476,"TargetID":104488,"Directional":true}]},{"ID":10148,"SourceStructureID":5649,"TargetStructureID":104489,"Label":"5649-104489 via Ribbon Synapse from 104475 -> 104490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104475,"TargetID":104490,"Directional":true}]},{"ID":10149,"SourceStructureID":5649,"TargetStructureID":104491,"Label":"5649-104491 via BC Conventional Synapse from 104493 -> 104492","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104493,"TargetID":104492,"Directional":true}]},{"ID":10150,"SourceStructureID":5649,"TargetStructureID":104497,"Label":"5649-104497 via Ribbon Synapse from 104502 -> 104501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104502,"TargetID":104501,"Directional":true}]},{"ID":10151,"SourceStructureID":5649,"TargetStructureID":104509,"Label":"5649-104509 via Ribbon Synapse from 104508 -> 104518, 104561 -> 104570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104508,"TargetID":104518,"Directional":true},{"SourceID":104561,"TargetID":104570,"Directional":true}]},{"ID":10152,"SourceStructureID":5649,"TargetStructureID":104538,"Label":"5649-104538 via Ribbon Synapse from 53848 -> 104540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53848,"TargetID":104540,"Directional":true}]},{"ID":10153,"SourceStructureID":5649,"TargetStructureID":104541,"Label":"5649-104541 via Ribbon Synapse from 53848 -> 104543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53848,"TargetID":104543,"Directional":true}]},{"ID":10154,"SourceStructureID":5649,"TargetStructureID":104559,"Label":"5649-104559 via Ribbon Synapse from 104561 -> 104560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104561,"TargetID":104560,"Directional":true}]},{"ID":10155,"SourceStructureID":5649,"TargetStructureID":104575,"Label":"5649-104575 via Ribbon Synapse from 68120 -> 104577","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68120,"TargetID":104577,"Directional":true}]},{"ID":10156,"SourceStructureID":5649,"TargetStructureID":104609,"Label":"5649-104609 via BC Conventional Synapse from 104611 -> 104610","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104611,"TargetID":104610,"Directional":true}]},{"ID":10157,"SourceStructureID":5649,"TargetStructureID":104613,"Label":"5649-104613 via BC Conventional Synapse from 104612 -> 104614","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104612,"TargetID":104614,"Directional":true}]},{"ID":10158,"SourceStructureID":5649,"TargetStructureID":104619,"Label":"5649-104619 via Ribbon Synapse from 77980 -> 104621","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77980,"TargetID":104621,"Directional":true}]},{"ID":10159,"SourceStructureID":5649,"TargetStructureID":104622,"Label":"5649-104622 via Ribbon Synapse from 76890 -> 104623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76890,"TargetID":104623,"Directional":true}]},{"ID":10160,"SourceStructureID":5649,"TargetStructureID":104633,"Label":"5649-104633 via Ribbon Synapse from 53836 -> 104634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53836,"TargetID":104634,"Directional":true}]},{"ID":10161,"SourceStructureID":5649,"TargetStructureID":104636,"Label":"5649-104636 via Ribbon Synapse from 53844 -> 104637","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53844,"TargetID":104637,"Directional":true}]},{"ID":10162,"SourceStructureID":5649,"TargetStructureID":104638,"Label":"5649-104638 via Ribbon Synapse from 53844 -> 104640, 53845 -> 104645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53844,"TargetID":104640,"Directional":true},{"SourceID":53845,"TargetID":104645,"Directional":true}]},{"ID":10163,"SourceStructureID":5649,"TargetStructureID":104641,"Label":"5649-104641 via Ribbon Synapse from 53843 -> 104644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53843,"TargetID":104644,"Directional":true}]},{"ID":10164,"SourceStructureID":5649,"TargetStructureID":104646,"Label":"5649-104646 via Ribbon Synapse from 53845 -> 104647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53845,"TargetID":104647,"Directional":true}]},{"ID":10165,"SourceStructureID":5649,"TargetStructureID":104655,"Label":"5649-104655 via Ribbon Synapse from 104632 -> 104658","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104632,"TargetID":104658,"Directional":true}]},{"ID":10166,"SourceStructureID":5649,"TargetStructureID":104656,"Label":"5649-104656 via Ribbon Synapse from 104632 -> 104657","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104632,"TargetID":104657,"Directional":true}]},{"ID":10167,"SourceStructureID":5649,"TargetStructureID":104659,"Label":"5649-104659 via BC Conventional Synapse from 104664 -> 104661","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104664,"TargetID":104661,"Directional":true}]},{"ID":10168,"SourceStructureID":5649,"TargetStructureID":104662,"Label":"5649-104662 via BC Conventional Synapse from 104665 -> 104663","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104665,"TargetID":104663,"Directional":true}]},{"ID":10169,"SourceStructureID":5649,"TargetStructureID":104676,"Label":"5649-104676 via BC Conventional Synapse from 104675 -> 104678","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104675,"TargetID":104678,"Directional":true}]},{"ID":10170,"SourceStructureID":5649,"TargetStructureID":104680,"Label":"5649-104680 via Ribbon Synapse from 92022 -> 104681","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92022,"TargetID":104681,"Directional":true}]},{"ID":10171,"SourceStructureID":5649,"TargetStructureID":104682,"Label":"5649-104682 via Ribbon Synapse from 92022 -> 104689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92022,"TargetID":104689,"Directional":true}]},{"ID":10172,"SourceStructureID":5649,"TargetStructureID":104707,"Label":"5649-104707 via BC Conventional Synapse from 104704 -> 104709","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104704,"TargetID":104709,"Directional":true}]},{"ID":10173,"SourceStructureID":5649,"TargetStructureID":104710,"Label":"5649-104710 via BC Conventional Synapse from 104705 -> 104711","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104705,"TargetID":104711,"Directional":true}]},{"ID":10174,"SourceStructureID":5649,"TargetStructureID":104717,"Label":"5649-104717 via Ribbon Synapse from 53883 -> 104718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53883,"TargetID":104718,"Directional":true}]},{"ID":10175,"SourceStructureID":5649,"TargetStructureID":104721,"Label":"5649-104721 via Ribbon Synapse from 53881 -> 104723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53881,"TargetID":104723,"Directional":true}]},{"ID":10176,"SourceStructureID":5649,"TargetStructureID":104724,"Label":"5649-104724 via Ribbon Synapse from 53881 -> 104725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53881,"TargetID":104725,"Directional":true}]},{"ID":10177,"SourceStructureID":5649,"TargetStructureID":104733,"Label":"5649-104733 via Ribbon Synapse from 53886 -> 104737","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53886,"TargetID":104737,"Directional":true}]},{"ID":10178,"SourceStructureID":5649,"TargetStructureID":104739,"Label":"5649-104739 via Ribbon Synapse from 53888 -> 104758","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53888,"TargetID":104758,"Directional":true}]},{"ID":10179,"SourceStructureID":5649,"TargetStructureID":104746,"Label":"5649-104746 via Ribbon Synapse from 55740 -> 104747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55740,"TargetID":104747,"Directional":true}]},{"ID":10180,"SourceStructureID":5649,"TargetStructureID":104761,"Label":"5649-104761 via Ribbon Synapse from 23029 -> 104762","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23029,"TargetID":104762,"Directional":true}]},{"ID":10181,"SourceStructureID":5649,"TargetStructureID":104764,"Label":"5649-104764 via Ribbon Synapse from 53891 -> 104765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53891,"TargetID":104765,"Directional":true}]},{"ID":10182,"SourceStructureID":5649,"TargetStructureID":104767,"Label":"5649-104767 via BC Conventional Synapse from 104766 -> 104769","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104766,"TargetID":104769,"Directional":true}]},{"ID":10183,"SourceStructureID":5649,"TargetStructureID":104771,"Label":"5649-104771 via Ribbon Synapse from 104770 -> 104772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104770,"TargetID":104772,"Directional":true}]},{"ID":10184,"SourceStructureID":5649,"TargetStructureID":104776,"Label":"5649-104776 via BC Conventional Synapse from 104778 -> 104777","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104778,"TargetID":104777,"Directional":true}]},{"ID":10185,"SourceStructureID":5649,"TargetStructureID":104780,"Label":"5649-104780 via BC Conventional Synapse from 104779 -> 104781","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104779,"TargetID":104781,"Directional":true}]},{"ID":10186,"SourceStructureID":5649,"TargetStructureID":104783,"Label":"5649-104783 via BC Conventional Synapse from 104782 -> 104785","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104782,"TargetID":104785,"Directional":true}]},{"ID":10187,"SourceStructureID":5649,"TargetStructureID":104786,"Label":"5649-104786 via Ribbon Synapse from 55731 -> 104787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55731,"TargetID":104787,"Directional":true}]},{"ID":10188,"SourceStructureID":5649,"TargetStructureID":104788,"Label":"5649-104788 via Ribbon Synapse from 55731 -> 104789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55731,"TargetID":104789,"Directional":true}]},{"ID":10189,"SourceStructureID":5649,"TargetStructureID":104801,"Label":"5649-104801 via BC Conventional Synapse from 104800 -> 104802","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104800,"TargetID":104802,"Directional":true}]},{"ID":10190,"SourceStructureID":5649,"TargetStructureID":105320,"Label":"5649-105320 via BC Conventional Synapse from 105319 -> 105329","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105319,"TargetID":105329,"Directional":true}]},{"ID":10191,"SourceStructureID":5649,"TargetStructureID":105346,"Label":"5649-105346 via Ribbon Synapse from 105317 -> 105347","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105317,"TargetID":105347,"Directional":true}]},{"ID":10192,"SourceStructureID":5649,"TargetStructureID":105349,"Label":"5649-105349 via Ribbon Synapse from 105348 -> 105350","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105348,"TargetID":105350,"Directional":true}]},{"ID":10193,"SourceStructureID":5649,"TargetStructureID":105354,"Label":"5649-105354 via Ribbon Synapse from 105348 -> 105355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105348,"TargetID":105355,"Directional":true}]},{"ID":10194,"SourceStructureID":5649,"TargetStructureID":105359,"Label":"5649-105359 via Ribbon Synapse from 105358 -> 105371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105358,"TargetID":105371,"Directional":true}]},{"ID":10195,"SourceStructureID":5649,"TargetStructureID":105372,"Label":"5649-105372 via Ribbon Synapse from 105358 -> 105373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105358,"TargetID":105373,"Directional":true}]},{"ID":10196,"SourceStructureID":5649,"TargetStructureID":105376,"Label":"5649-105376 via Ribbon Synapse from 105374 -> 105378, 105388 -> 105389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105374,"TargetID":105378,"Directional":true},{"SourceID":105388,"TargetID":105389,"Directional":true}]},{"ID":10197,"SourceStructureID":5649,"TargetStructureID":105380,"Label":"5649-105380 via BC Conventional Synapse from 105379 -> 105387","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105379,"TargetID":105387,"Directional":true}]},{"ID":10198,"SourceStructureID":5649,"TargetStructureID":105382,"Label":"5649-105382 via Ribbon Synapse from 105388 -> 105384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105388,"TargetID":105384,"Directional":true}]},{"ID":10199,"SourceStructureID":5649,"TargetStructureID":105390,"Label":"5649-105390 via Ribbon Synapse from 105388 -> 105391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105388,"TargetID":105391,"Directional":true}]},{"ID":10200,"SourceStructureID":5649,"TargetStructureID":105398,"Label":"5649-105398 via Ribbon Synapse from 105397 -> 105399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105397,"TargetID":105399,"Directional":true}]},{"ID":10201,"SourceStructureID":5649,"TargetStructureID":105403,"Label":"5649-105403 via BC Conventional Synapse from 105405 -> 105404","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105405,"TargetID":105404,"Directional":true}]},{"ID":10202,"SourceStructureID":5649,"TargetStructureID":105410,"Label":"5649-105410 via Ribbon Synapse from 105409 -> 105411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105409,"TargetID":105411,"Directional":true}]},{"ID":10203,"SourceStructureID":5649,"TargetStructureID":105414,"Label":"5649-105414 via BC Conventional Synapse from 105413 -> 105415","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105413,"TargetID":105415,"Directional":true}]},{"ID":10204,"SourceStructureID":5649,"TargetStructureID":105418,"Label":"5649-105418 via Ribbon Synapse from 105416 -> 105419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105416,"TargetID":105419,"Directional":true}]},{"ID":10205,"SourceStructureID":5649,"TargetStructureID":105426,"Label":"5649-105426 via Ribbon Synapse from 53894 -> 105428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53894,"TargetID":105428,"Directional":true}]},{"ID":10206,"SourceStructureID":5649,"TargetStructureID":105429,"Label":"5649-105429 via Ribbon Synapse from 53895 -> 105430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53895,"TargetID":105430,"Directional":true}]},{"ID":10207,"SourceStructureID":5649,"TargetStructureID":105436,"Label":"5649-105436 via Ribbon Synapse from 53895 -> 105437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53895,"TargetID":105437,"Directional":true}]},{"ID":10208,"SourceStructureID":5649,"TargetStructureID":105438,"Label":"5649-105438 via Ribbon Synapse from 53899 -> 105442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53899,"TargetID":105442,"Directional":true}]},{"ID":10209,"SourceStructureID":5649,"TargetStructureID":105443,"Label":"5649-105443 via Ribbon Synapse from 53899 -> 105444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53899,"TargetID":105444,"Directional":true}]},{"ID":10210,"SourceStructureID":5649,"TargetStructureID":105445,"Label":"5649-105445 via Ribbon Synapse from 53898 -> 105446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53898,"TargetID":105446,"Directional":true}]},{"ID":10211,"SourceStructureID":5649,"TargetStructureID":105553,"Label":"5649-105553 via BC Conventional Synapse from 134970 -> 134971","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134970,"TargetID":134971,"Directional":true}]},{"ID":10212,"SourceStructureID":5649,"TargetStructureID":105553,"Label":"5649-105553 via Ribbon Synapse from 105557 -> 105561","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105557,"TargetID":105561,"Directional":true}]},{"ID":10213,"SourceStructureID":5649,"TargetStructureID":105558,"Label":"5649-105558 via Ribbon Synapse from 105557 -> 105560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105557,"TargetID":105560,"Directional":true}]},{"ID":10214,"SourceStructureID":5649,"TargetStructureID":105566,"Label":"5649-105566 via Ribbon Synapse from 105565 -> 105567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105565,"TargetID":105567,"Directional":true}]},{"ID":10215,"SourceStructureID":5649,"TargetStructureID":105568,"Label":"5649-105568 via Ribbon Synapse from 105565 -> 105569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105565,"TargetID":105569,"Directional":true}]},{"ID":10216,"SourceStructureID":5649,"TargetStructureID":105575,"Label":"5649-105575 via BC Conventional Synapse from 105573 -> 105576","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105573,"TargetID":105576,"Directional":true}]},{"ID":10217,"SourceStructureID":5649,"TargetStructureID":105585,"Label":"5649-105585 via BC Conventional Synapse from 105584 -> 105586","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105584,"TargetID":105586,"Directional":true}]},{"ID":10218,"SourceStructureID":5649,"TargetStructureID":105588,"Label":"5649-105588 via BC Conventional Synapse from 105590 -> 105591","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105590,"TargetID":105591,"Directional":true}]},{"ID":10219,"SourceStructureID":5649,"TargetStructureID":105595,"Label":"5649-105595 via Ribbon Synapse from 105594 -> 105596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105594,"TargetID":105596,"Directional":true}]},{"ID":10220,"SourceStructureID":5649,"TargetStructureID":105597,"Label":"5649-105597 via Ribbon Synapse from 105594 -> 105598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105594,"TargetID":105598,"Directional":true}]},{"ID":10221,"SourceStructureID":5649,"TargetStructureID":105609,"Label":"5649-105609 via BC Conventional Synapse from 105608 -> 105610","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105608,"TargetID":105610,"Directional":true}]},{"ID":10222,"SourceStructureID":5649,"TargetStructureID":105616,"Label":"5649-105616 via BC Conventional Synapse from 105615 -> 105617","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105615,"TargetID":105617,"Directional":true}]},{"ID":10223,"SourceStructureID":5649,"TargetStructureID":105619,"Label":"5649-105619 via BC Conventional Synapse from 105618 -> 105620","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105618,"TargetID":105620,"Directional":true}]},{"ID":10224,"SourceStructureID":5649,"TargetStructureID":105659,"Label":"5649-105659 via BC Conventional Synapse from 105656 -> 105661","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105656,"TargetID":105661,"Directional":true}]},{"ID":10225,"SourceStructureID":5649,"TargetStructureID":105659,"Label":"5649-105659 via Ribbon Synapse from 105668 -> 105662","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105668,"TargetID":105662,"Directional":true}]},{"ID":10226,"SourceStructureID":5649,"TargetStructureID":105663,"Label":"5649-105663 via Ribbon Synapse from 105668 -> 105669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105668,"TargetID":105669,"Directional":true}]},{"ID":10227,"SourceStructureID":5649,"TargetStructureID":105666,"Label":"5649-105666 via BC Conventional Synapse from 105665 -> 105667","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105665,"TargetID":105667,"Directional":true}]},{"ID":10228,"SourceStructureID":5649,"TargetStructureID":105673,"Label":"5649-105673 via Ribbon Synapse from 105672 -> 105674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105672,"TargetID":105674,"Directional":true}]},{"ID":10229,"SourceStructureID":5649,"TargetStructureID":105687,"Label":"5649-105687 via Ribbon Synapse from 53904 -> 105689, 53907 -> 105688","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53904,"TargetID":105689,"Directional":true},{"SourceID":53907,"TargetID":105688,"Directional":true}]},{"ID":10230,"SourceStructureID":5649,"TargetStructureID":105700,"Label":"5649-105700 via Ribbon Synapse from 105699 -> 105701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105699,"TargetID":105701,"Directional":true}]},{"ID":10231,"SourceStructureID":5649,"TargetStructureID":105711,"Label":"5649-105711 via Ribbon Synapse from 53945 -> 105713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53945,"TargetID":105713,"Directional":true}]},{"ID":10232,"SourceStructureID":5649,"TargetStructureID":105712,"Label":"5649-105712 via Ribbon Synapse from 53945 -> 105714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53945,"TargetID":105714,"Directional":true}]},{"ID":10233,"SourceStructureID":5649,"TargetStructureID":105715,"Label":"5649-105715 via Ribbon Synapse from 55733 -> 105717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55733,"TargetID":105717,"Directional":true}]},{"ID":10234,"SourceStructureID":5649,"TargetStructureID":105723,"Label":"5649-105723 via Ribbon Synapse from 38490 -> 105724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38490,"TargetID":105724,"Directional":true}]},{"ID":10235,"SourceStructureID":5649,"TargetStructureID":105734,"Label":"5649-105734 via BC Conventional Synapse from 105733 -> 105737","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105733,"TargetID":105737,"Directional":true}]},{"ID":10236,"SourceStructureID":5649,"TargetStructureID":105756,"Label":"5649-105756 via BC Conventional Synapse from 105752 -> 105757","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105752,"TargetID":105757,"Directional":true}]},{"ID":10237,"SourceStructureID":5649,"TargetStructureID":105773,"Label":"5649-105773 via BC Conventional Synapse from 105771 -> 105774","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105771,"TargetID":105774,"Directional":true}]},{"ID":10238,"SourceStructureID":5649,"TargetStructureID":105793,"Label":"5649-105793 via BC Conventional Synapse from 105792 -> 134907","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105792,"TargetID":134907,"Directional":true}]},{"ID":10239,"SourceStructureID":5649,"TargetStructureID":105860,"Label":"5649-105860 via Ribbon Synapse from 53947 -> 105861","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53947,"TargetID":105861,"Directional":true}]},{"ID":10240,"SourceStructureID":5649,"TargetStructureID":105862,"Label":"5649-105862 via Ribbon Synapse from 53947 -> 105863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53947,"TargetID":105863,"Directional":true}]},{"ID":10241,"SourceStructureID":5649,"TargetStructureID":105868,"Label":"5649-105868 via BC Conventional Synapse from 105867 -> 105869","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105867,"TargetID":105869,"Directional":true}]},{"ID":10242,"SourceStructureID":5649,"TargetStructureID":105871,"Label":"5649-105871 via BC Conventional Synapse from 105870 -> 105872","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105870,"TargetID":105872,"Directional":true}]},{"ID":10243,"SourceStructureID":5649,"TargetStructureID":105889,"Label":"5649-105889 via Ribbon Synapse from 53957 -> 105890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53957,"TargetID":105890,"Directional":true}]},{"ID":10244,"SourceStructureID":5649,"TargetStructureID":105897,"Label":"5649-105897 via Ribbon Synapse from 53960 -> 105898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53960,"TargetID":105898,"Directional":true}]},{"ID":10245,"SourceStructureID":5649,"TargetStructureID":105900,"Label":"5649-105900 via Ribbon Synapse from 53960 -> 105902","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53960,"TargetID":105902,"Directional":true}]},{"ID":10246,"SourceStructureID":5649,"TargetStructureID":105912,"Label":"5649-105912 via Ribbon Synapse from 53952 -> 105914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53952,"TargetID":105914,"Directional":true}]},{"ID":10247,"SourceStructureID":5649,"TargetStructureID":105916,"Label":"5649-105916 via Ribbon Synapse from 53952 -> 105917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53952,"TargetID":105917,"Directional":true}]},{"ID":10248,"SourceStructureID":5649,"TargetStructureID":105931,"Label":"5649-105931 via Ribbon Synapse from 105930 -> 105933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105930,"TargetID":105933,"Directional":true}]},{"ID":10249,"SourceStructureID":5649,"TargetStructureID":105934,"Label":"5649-105934 via Ribbon Synapse from 53974 -> 105935","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53974,"TargetID":105935,"Directional":true}]},{"ID":10250,"SourceStructureID":5649,"TargetStructureID":105936,"Label":"5649-105936 via Ribbon Synapse from 53974 -> 105938","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53974,"TargetID":105938,"Directional":true}]},{"ID":10251,"SourceStructureID":5649,"TargetStructureID":105940,"Label":"5649-105940 via Ribbon Synapse from 54003 -> 105941","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54003,"TargetID":105941,"Directional":true}]},{"ID":10252,"SourceStructureID":5649,"TargetStructureID":105942,"Label":"5649-105942 via Ribbon Synapse from 54003 -> 105943","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54003,"TargetID":105943,"Directional":true}]},{"ID":10253,"SourceStructureID":5649,"TargetStructureID":105946,"Label":"5649-105946 via BC Conventional Synapse from 105945 -> 105948","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105945,"TargetID":105948,"Directional":true}]},{"ID":10254,"SourceStructureID":5649,"TargetStructureID":105950,"Label":"5649-105950 via BC Conventional Synapse from 105949 -> 105951","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105949,"TargetID":105951,"Directional":true}]},{"ID":10255,"SourceStructureID":5649,"TargetStructureID":105952,"Label":"5649-105952 via BC Conventional Synapse from 105954 -> 105953","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105954,"TargetID":105953,"Directional":true}]},{"ID":10256,"SourceStructureID":5649,"TargetStructureID":105963,"Label":"5649-105963 via Ribbon Synapse from 105962 -> 105964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105962,"TargetID":105964,"Directional":true}]},{"ID":10257,"SourceStructureID":5649,"TargetStructureID":105982,"Label":"5649-105982 via Ribbon Synapse from 53998 -> 105985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53998,"TargetID":105985,"Directional":true}]},{"ID":10258,"SourceStructureID":5649,"TargetStructureID":105996,"Label":"5649-105996 via Ribbon Synapse from 105995 -> 105997","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105995,"TargetID":105997,"Directional":true}]},{"ID":10259,"SourceStructureID":5649,"TargetStructureID":106023,"Label":"5649-106023 via BC Conventional Synapse from 106022 -> 106025","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106022,"TargetID":106025,"Directional":true}]},{"ID":10260,"SourceStructureID":5649,"TargetStructureID":106035,"Label":"5649-106035 via Ribbon Synapse from 106034 -> 106036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106034,"TargetID":106036,"Directional":true}]},{"ID":10261,"SourceStructureID":5649,"TargetStructureID":106037,"Label":"5649-106037 via Ribbon Synapse from 106034 -> 106038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106034,"TargetID":106038,"Directional":true}]},{"ID":10262,"SourceStructureID":5649,"TargetStructureID":106059,"Label":"5649-106059 via Ribbon Synapse from 37867 -> 135385, 106043 -> 106063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37867,"TargetID":135385,"Directional":true},{"SourceID":106043,"TargetID":106063,"Directional":true}]},{"ID":10263,"SourceStructureID":5649,"TargetStructureID":106098,"Label":"5649-106098 via BC Conventional Synapse from 135386 -> 106100","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":135386,"TargetID":106100,"Directional":true}]},{"ID":10264,"SourceStructureID":5649,"TargetStructureID":106099,"Label":"5649-106099 via BC Conventional Synapse from 135386 -> 106101","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":135386,"TargetID":106101,"Directional":true}]},{"ID":10265,"SourceStructureID":5649,"TargetStructureID":106107,"Label":"5649-106107 via Ribbon Synapse from 31040 -> 106109","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31040,"TargetID":106109,"Directional":true}]},{"ID":10266,"SourceStructureID":5649,"TargetStructureID":106112,"Label":"5649-106112 via Ribbon Synapse from 37867 -> 106113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37867,"TargetID":106113,"Directional":true}]},{"ID":10267,"SourceStructureID":5649,"TargetStructureID":106114,"Label":"5649-106114 via Ribbon Synapse from 106111 -> 106115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106111,"TargetID":106115,"Directional":true}]},{"ID":10268,"SourceStructureID":5649,"TargetStructureID":106119,"Label":"5649-106119 via Ribbon Synapse from 31040 -> 106120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31040,"TargetID":106120,"Directional":true}]},{"ID":10269,"SourceStructureID":5649,"TargetStructureID":106134,"Label":"5649-106134 via Ribbon Synapse from 54084 -> 106135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54084,"TargetID":106135,"Directional":true}]},{"ID":10270,"SourceStructureID":5649,"TargetStructureID":106246,"Label":"5649-106246 via Ribbon Synapse from 54086 -> 106248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54086,"TargetID":106248,"Directional":true}]},{"ID":10271,"SourceStructureID":5649,"TargetStructureID":106247,"Label":"5649-106247 via Ribbon Synapse from 54086 -> 106252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54086,"TargetID":106252,"Directional":true}]},{"ID":10272,"SourceStructureID":5649,"TargetStructureID":106269,"Label":"5649-106269 via Ribbon Synapse from 33110 -> 106271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33110,"TargetID":106271,"Directional":true}]},{"ID":10273,"SourceStructureID":5649,"TargetStructureID":106272,"Label":"5649-106272 via Ribbon Synapse from 54087 -> 106275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54087,"TargetID":106275,"Directional":true}]},{"ID":10274,"SourceStructureID":5649,"TargetStructureID":106273,"Label":"5649-106273 via Ribbon Synapse from 54087 -> 106274","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54087,"TargetID":106274,"Directional":true}]},{"ID":10275,"SourceStructureID":5649,"TargetStructureID":106277,"Label":"5649-106277 via Ribbon Synapse from 54090 -> 106278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54090,"TargetID":106278,"Directional":true}]},{"ID":10276,"SourceStructureID":5649,"TargetStructureID":106288,"Label":"5649-106288 via Ribbon Synapse from 106287 -> 106289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106287,"TargetID":106289,"Directional":true}]},{"ID":10277,"SourceStructureID":5649,"TargetStructureID":106291,"Label":"5649-106291 via Ribbon Synapse from 54093 -> 106307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54093,"TargetID":106307,"Directional":true}]},{"ID":10278,"SourceStructureID":5649,"TargetStructureID":106298,"Label":"5649-106298 via BC Conventional Synapse from 106300 -> 106301","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106300,"TargetID":106301,"Directional":true}]},{"ID":10279,"SourceStructureID":5649,"TargetStructureID":106308,"Label":"5649-106308 via BC Conventional Synapse from 106311 -> 106309","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106311,"TargetID":106309,"Directional":true}]},{"ID":10280,"SourceStructureID":5649,"TargetStructureID":106315,"Label":"5649-106315 via Ribbon Synapse from 54180 -> 106316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54180,"TargetID":106316,"Directional":true}]},{"ID":10281,"SourceStructureID":5649,"TargetStructureID":106339,"Label":"5649-106339 via Ribbon Synapse from 54183 -> 106340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54183,"TargetID":106340,"Directional":true}]},{"ID":10282,"SourceStructureID":5649,"TargetStructureID":106352,"Label":"5649-106352 via BC Conventional Synapse from 54114 -> 106353","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54114,"TargetID":106353,"Directional":true}]},{"ID":10283,"SourceStructureID":5649,"TargetStructureID":106419,"Label":"5649-106419 via Ribbon Synapse from 54119 -> 106420","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54119,"TargetID":106420,"Directional":true}]},{"ID":10284,"SourceStructureID":5649,"TargetStructureID":106531,"Label":"5649-106531 via Ribbon Synapse from 54108 -> 106533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54108,"TargetID":106533,"Directional":true}]},{"ID":10285,"SourceStructureID":5649,"TargetStructureID":106532,"Label":"5649-106532 via Ribbon Synapse from 54108 -> 106534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54108,"TargetID":106534,"Directional":true}]},{"ID":10286,"SourceStructureID":5649,"TargetStructureID":106539,"Label":"5649-106539 via Ribbon Synapse from 54103 -> 106540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54103,"TargetID":106540,"Directional":true}]},{"ID":10287,"SourceStructureID":5649,"TargetStructureID":106552,"Label":"5649-106552 via Ribbon Synapse from 106551 -> 106553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106551,"TargetID":106553,"Directional":true}]},{"ID":10288,"SourceStructureID":5649,"TargetStructureID":106560,"Label":"5649-106560 via BC Conventional Synapse from 106559 -> 106561","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106559,"TargetID":106561,"Directional":true}]},{"ID":10289,"SourceStructureID":5649,"TargetStructureID":106562,"Label":"5649-106562 via Ribbon Synapse from 54107 -> 106563","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54107,"TargetID":106563,"Directional":true}]},{"ID":10290,"SourceStructureID":5649,"TargetStructureID":106564,"Label":"5649-106564 via Ribbon Synapse from 54107 -> 106590","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54107,"TargetID":106590,"Directional":true}]},{"ID":10291,"SourceStructureID":5649,"TargetStructureID":106595,"Label":"5649-106595 via Ribbon Synapse from 106594 -> 106596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106594,"TargetID":106596,"Directional":true}]},{"ID":10292,"SourceStructureID":5649,"TargetStructureID":106661,"Label":"5649-106661 via Ribbon Synapse from 106605 -> 106664","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106605,"TargetID":106664,"Directional":true}]},{"ID":10293,"SourceStructureID":5649,"TargetStructureID":106709,"Label":"5649-106709 via Ribbon Synapse from 106706 -> 106710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106706,"TargetID":106710,"Directional":true}]},{"ID":10294,"SourceStructureID":5649,"TargetStructureID":106761,"Label":"5649-106761 via Ribbon Synapse from 54085 -> 106763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54085,"TargetID":106763,"Directional":true}]},{"ID":10295,"SourceStructureID":5649,"TargetStructureID":106764,"Label":"5649-106764 via Ribbon Synapse from 54085 -> 106769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54085,"TargetID":106769,"Directional":true}]},{"ID":10296,"SourceStructureID":5649,"TargetStructureID":106770,"Label":"5649-106770 via Ribbon Synapse from 54085 -> 106771","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54085,"TargetID":106771,"Directional":true}]},{"ID":10297,"SourceStructureID":5649,"TargetStructureID":106781,"Label":"5649-106781 via Ribbon Synapse from 106760 -> 106783","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106760,"TargetID":106783,"Directional":true}]},{"ID":10298,"SourceStructureID":5649,"TargetStructureID":106782,"Label":"5649-106782 via Ribbon Synapse from 106760 -> 106784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106760,"TargetID":106784,"Directional":true}]},{"ID":10299,"SourceStructureID":5649,"TargetStructureID":106801,"Label":"5649-106801 via Ribbon Synapse from 106814 -> 106817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106814,"TargetID":106817,"Directional":true}]},{"ID":10300,"SourceStructureID":5649,"TargetStructureID":106859,"Label":"5649-106859 via Ribbon Synapse from 106853 -> 106860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106853,"TargetID":106860,"Directional":true}]},{"ID":10301,"SourceStructureID":5649,"TargetStructureID":106873,"Label":"5649-106873 via Ribbon Synapse from 106866 -> 106874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106866,"TargetID":106874,"Directional":true}]},{"ID":10302,"SourceStructureID":5649,"TargetStructureID":106881,"Label":"5649-106881 via Ribbon Synapse from 106866 -> 106882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106866,"TargetID":106882,"Directional":true}]},{"ID":10303,"SourceStructureID":5649,"TargetStructureID":106883,"Label":"5649-106883 via Ribbon Synapse from 106866 -> 106884","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106866,"TargetID":106884,"Directional":true}]},{"ID":10304,"SourceStructureID":5649,"TargetStructureID":106926,"Label":"5649-106926 via Ribbon Synapse from 106923 -> 106930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106923,"TargetID":106930,"Directional":true}]},{"ID":10305,"SourceStructureID":5649,"TargetStructureID":107054,"Label":"5649-107054 via Ribbon Synapse from 107055 -> 107056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107055,"TargetID":107056,"Directional":true}]},{"ID":10306,"SourceStructureID":5649,"TargetStructureID":107059,"Label":"5649-107059 via Ribbon Synapse from 107058 -> 107060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107058,"TargetID":107060,"Directional":true}]},{"ID":10307,"SourceStructureID":5649,"TargetStructureID":107063,"Label":"5649-107063 via Ribbon Synapse from 107058 -> 107064","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107058,"TargetID":107064,"Directional":true}]},{"ID":10308,"SourceStructureID":5649,"TargetStructureID":107074,"Label":"5649-107074 via Ribbon Synapse from 107077 -> 107076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107077,"TargetID":107076,"Directional":true}]},{"ID":10309,"SourceStructureID":5649,"TargetStructureID":107078,"Label":"5649-107078 via Ribbon Synapse from 107077 -> 107079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107077,"TargetID":107079,"Directional":true}]},{"ID":10310,"SourceStructureID":5649,"TargetStructureID":107085,"Label":"5649-107085 via BC Conventional Synapse from 107097 -> 107086","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107097,"TargetID":107086,"Directional":true}]},{"ID":10311,"SourceStructureID":5649,"TargetStructureID":107122,"Label":"5649-107122 via Ribbon Synapse from 35067 -> 107123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35067,"TargetID":107123,"Directional":true}]},{"ID":10312,"SourceStructureID":5649,"TargetStructureID":107126,"Label":"5649-107126 via Ribbon Synapse from 54291 -> 107127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54291,"TargetID":107127,"Directional":true}]},{"ID":10313,"SourceStructureID":5649,"TargetStructureID":107129,"Label":"5649-107129 via Ribbon Synapse from 54292 -> 107130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54292,"TargetID":107130,"Directional":true}]},{"ID":10314,"SourceStructureID":5649,"TargetStructureID":107160,"Label":"5649-107160 via BC Conventional Synapse from 107159 -> 107161","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107159,"TargetID":107161,"Directional":true}]},{"ID":10315,"SourceStructureID":5649,"TargetStructureID":107179,"Label":"5649-107179 via Ribbon Synapse from 135438 -> 135439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135438,"TargetID":135439,"Directional":true}]},{"ID":10316,"SourceStructureID":5649,"TargetStructureID":107213,"Label":"5649-107213 via BC Conventional Synapse from 107212 -> 107214","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107212,"TargetID":107214,"Directional":true}]},{"ID":10317,"SourceStructureID":5649,"TargetStructureID":107220,"Label":"5649-107220 via BC Conventional Synapse from 107219 -> 107221","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107219,"TargetID":107221,"Directional":true}]},{"ID":10318,"SourceStructureID":5649,"TargetStructureID":107222,"Label":"5649-107222 via Ribbon Synapse from 107218 -> 107223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107218,"TargetID":107223,"Directional":true}]},{"ID":10319,"SourceStructureID":5649,"TargetStructureID":107227,"Label":"5649-107227 via BC Conventional Synapse from 107226 -> 107228, 134972 -> 134973","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107226,"TargetID":107228,"Directional":true},{"SourceID":134972,"TargetID":134973,"Directional":true}]},{"ID":10320,"SourceStructureID":5649,"TargetStructureID":107233,"Label":"5649-107233 via Ribbon Synapse from 107231 -> 107234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107231,"TargetID":107234,"Directional":true}]},{"ID":10321,"SourceStructureID":5649,"TargetStructureID":107235,"Label":"5649-107235 via Ribbon Synapse from 107232 -> 107236, 107269 -> 107272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107232,"TargetID":107236,"Directional":true},{"SourceID":107269,"TargetID":107272,"Directional":true}]},{"ID":10322,"SourceStructureID":5649,"TargetStructureID":107237,"Label":"5649-107237 via Ribbon Synapse from 107232 -> 107238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107232,"TargetID":107238,"Directional":true}]},{"ID":10323,"SourceStructureID":5649,"TargetStructureID":107246,"Label":"5649-107246 via BC Conventional Synapse from 107244 -> 107247","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107244,"TargetID":107247,"Directional":true}]},{"ID":10324,"SourceStructureID":5649,"TargetStructureID":107248,"Label":"5649-107248 via Ribbon Synapse from 107242 -> 107250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107242,"TargetID":107250,"Directional":true}]},{"ID":10325,"SourceStructureID":5649,"TargetStructureID":107257,"Label":"5649-107257 via BC Conventional Synapse from 107251 -> 107258","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107251,"TargetID":107258,"Directional":true}]},{"ID":10326,"SourceStructureID":5649,"TargetStructureID":107262,"Label":"5649-107262 via Ribbon Synapse from 107239 -> 107284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107239,"TargetID":107284,"Directional":true}]},{"ID":10327,"SourceStructureID":5649,"TargetStructureID":107265,"Label":"5649-107265 via Ribbon Synapse from 107241 -> 107274, 107242 -> 107286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107241,"TargetID":107274,"Directional":true},{"SourceID":107242,"TargetID":107286,"Directional":true}]},{"ID":10328,"SourceStructureID":5649,"TargetStructureID":107275,"Label":"5649-107275 via Ribbon Synapse from 107241 -> 107276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107241,"TargetID":107276,"Directional":true}]},{"ID":10329,"SourceStructureID":5649,"TargetStructureID":107280,"Label":"5649-107280 via Ribbon Synapse from 107240 -> 107282","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107240,"TargetID":107282,"Directional":true}]},{"ID":10330,"SourceStructureID":5649,"TargetStructureID":107287,"Label":"5649-107287 via Ribbon Synapse from 107242 -> 107288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107242,"TargetID":107288,"Directional":true}]},{"ID":10331,"SourceStructureID":5649,"TargetStructureID":107295,"Label":"5649-107295 via BC Conventional Synapse from 107294 -> 107296","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107294,"TargetID":107296,"Directional":true}]},{"ID":10332,"SourceStructureID":5649,"TargetStructureID":107304,"Label":"5649-107304 via Ribbon Synapse from 107303 -> 107305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107303,"TargetID":107305,"Directional":true}]},{"ID":10333,"SourceStructureID":5649,"TargetStructureID":107306,"Label":"5649-107306 via Ribbon Synapse from 107303 -> 107307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107303,"TargetID":107307,"Directional":true}]},{"ID":10334,"SourceStructureID":5649,"TargetStructureID":107312,"Label":"5649-107312 via BC Conventional Synapse from 107311 -> 107313","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107311,"TargetID":107313,"Directional":true}]},{"ID":10335,"SourceStructureID":5649,"TargetStructureID":107328,"Label":"5649-107328 via Ribbon Synapse from 70011 -> 116725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70011,"TargetID":116725,"Directional":true}]},{"ID":10336,"SourceStructureID":5649,"TargetStructureID":107332,"Label":"5649-107332 via Ribbon Synapse from 35366 -> 107333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35366,"TargetID":107333,"Directional":true}]},{"ID":10337,"SourceStructureID":5649,"TargetStructureID":107339,"Label":"5649-107339 via BC Conventional Synapse from 104606 -> 104602","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104606,"TargetID":104602,"Directional":true}]},{"ID":10338,"SourceStructureID":5649,"TargetStructureID":107339,"Label":"5649-107339 via Ribbon Synapse from 59659 -> 107340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59659,"TargetID":107340,"Directional":true}]},{"ID":10339,"SourceStructureID":5649,"TargetStructureID":107342,"Label":"5649-107342 via Ribbon Synapse from 70012 -> 107343","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70012,"TargetID":107343,"Directional":true}]},{"ID":10340,"SourceStructureID":5649,"TargetStructureID":107344,"Label":"5649-107344 via BC Conventional Synapse from 107346 -> 107345","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107346,"TargetID":107345,"Directional":true}]},{"ID":10341,"SourceStructureID":5649,"TargetStructureID":108143,"Label":"5649-108143 via Ribbon Synapse from 108142 -> 108145","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108142,"TargetID":108145,"Directional":true}]},{"ID":10342,"SourceStructureID":5649,"TargetStructureID":113086,"Label":"5649-113086 via BC Conventional Synapse from 104624 -> 104626","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104624,"TargetID":104626,"Directional":true}]},{"ID":10343,"SourceStructureID":5649,"TargetStructureID":135401,"Label":"5649-135401 via Ribbon Synapse from 81727 -> 135404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81727,"TargetID":135404,"Directional":true}]},{"ID":10344,"SourceStructureID":5650,"TargetStructureID":598,"Label":"5650-598 via Ribbon Synapse from 104303 -> 6324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104303,"TargetID":6324,"Directional":true}]},{"ID":10345,"SourceStructureID":5650,"TargetStructureID":606,"Label":"5650-606 via Ribbon Synapse from 30159 -> 51486, 51396 -> 51401, 51397 -> 51399, 51442 -> 51443, 51451 -> 51453, 51465 -> 51467, 51479 -> 51480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30159,"TargetID":51486,"Directional":true},{"SourceID":51396,"TargetID":51401,"Directional":true},{"SourceID":51397,"TargetID":51399,"Directional":true},{"SourceID":51442,"TargetID":51443,"Directional":true},{"SourceID":51451,"TargetID":51453,"Directional":true},{"SourceID":51465,"TargetID":51467,"Directional":true},{"SourceID":51479,"TargetID":51480,"Directional":true}]},{"ID":10346,"SourceStructureID":5650,"TargetStructureID":5643,"Label":"5650-5643 via Ribbon Synapse from 38553 -> 38552, 102750 -> 102751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38553,"TargetID":38552,"Directional":true},{"SourceID":102750,"TargetID":102751,"Directional":true}]},{"ID":10347,"SourceStructureID":5650,"TargetStructureID":7594,"Label":"5650-7594 via Ribbon Synapse from 25090 -> 25089, 30264 -> 30273, 105061 -> 25087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25090,"TargetID":25089,"Directional":true},{"SourceID":30264,"TargetID":30273,"Directional":true},{"SourceID":105061,"TargetID":25087,"Directional":true}]},{"ID":10348,"SourceStructureID":5650,"TargetStructureID":9769,"Label":"5650-9769 via Ribbon Synapse from 23470 -> 30125, 23478 -> 23479, 23480 -> 103955, 23483 -> 23484, 23486 -> 23467, 25091 -> 52588, 29913 -> 29920, 29915 -> 20262, 29931 -> 29924, 29938 -> 29936, 30123 -> 30122, 30149 -> 30143, 30154 -> 30155, 30159 -> 30160, 30217 -> 30211, 50563 -> 103838, 51442 -> 51444, 52586 -> 52587, 52606 -> 52596, 53189 -> 53190, 103625 -> 103628, 105039 -> 52590, 105196 -> 105198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23470,"TargetID":30125,"Directional":true},{"SourceID":23478,"TargetID":23479,"Directional":true},{"SourceID":23480,"TargetID":103955,"Directional":true},{"SourceID":23483,"TargetID":23484,"Directional":true},{"SourceID":23486,"TargetID":23467,"Directional":true},{"SourceID":25091,"TargetID":52588,"Directional":true},{"SourceID":29913,"TargetID":29920,"Directional":true},{"SourceID":29915,"TargetID":20262,"Directional":true},{"SourceID":29931,"TargetID":29924,"Directional":true},{"SourceID":29938,"TargetID":29936,"Directional":true},{"SourceID":30123,"TargetID":30122,"Directional":true},{"SourceID":30149,"TargetID":30143,"Directional":true},{"SourceID":30154,"TargetID":30155,"Directional":true},{"SourceID":30159,"TargetID":30160,"Directional":true},{"SourceID":30217,"TargetID":30211,"Directional":true},{"SourceID":50563,"TargetID":103838,"Directional":true},{"SourceID":51442,"TargetID":51444,"Directional":true},{"SourceID":52586,"TargetID":52587,"Directional":true},{"SourceID":52606,"TargetID":52596,"Directional":true},{"SourceID":53189,"TargetID":53190,"Directional":true},{"SourceID":103625,"TargetID":103628,"Directional":true},{"SourceID":105039,"TargetID":52590,"Directional":true},{"SourceID":105196,"TargetID":105198,"Directional":true}]},{"ID":10349,"SourceStructureID":5650,"TargetStructureID":12897,"Label":"5650-12897 via BC Conventional Synapse from 102746 -> 102747","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102746,"TargetID":102747,"Directional":true}]},{"ID":10350,"SourceStructureID":5650,"TargetStructureID":16073,"Label":"5650-16073 via Ribbon Synapse from 105172 -> 105174","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105172,"TargetID":105174,"Directional":true}]},{"ID":10351,"SourceStructureID":5650,"TargetStructureID":30130,"Label":"5650-30130 via Postsynapse from 103827 -> 103826","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":103827,"TargetID":103826,"Directional":true}]},{"ID":10352,"SourceStructureID":5650,"TargetStructureID":30130,"Label":"5650-30130 via Ribbon Synapse from 30137 -> 30138, 30264 -> 30263, 50563 -> 103837, 104281 -> 104284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30137,"TargetID":30138,"Directional":true},{"SourceID":30264,"TargetID":30263,"Directional":true},{"SourceID":50563,"TargetID":103837,"Directional":true},{"SourceID":104281,"TargetID":104284,"Directional":true}]},{"ID":10353,"SourceStructureID":5650,"TargetStructureID":35240,"Label":"5650-35240 via Ribbon Synapse from 35264 -> 35263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35264,"TargetID":35263,"Directional":true}]},{"ID":10354,"SourceStructureID":5650,"TargetStructureID":35351,"Label":"5650-35351 via Ribbon Synapse from 50565 -> 103598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50565,"TargetID":103598,"Directional":true}]},{"ID":10355,"SourceStructureID":5650,"TargetStructureID":35440,"Label":"5650-35440 via Ribbon Synapse from 35451 -> 35450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35451,"TargetID":35450,"Directional":true}]},{"ID":10356,"SourceStructureID":5650,"TargetStructureID":53407,"Label":"5650-53407 via Ribbon Synapse from 23486 -> 53410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23486,"TargetID":53410,"Directional":true}]},{"ID":10357,"SourceStructureID":5650,"TargetStructureID":53443,"Label":"5650-53443 via Ribbon Synapse from 104153 -> 104154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104153,"TargetID":104154,"Directional":true}]},{"ID":10358,"SourceStructureID":5650,"TargetStructureID":57034,"Label":"5650-57034 via Ribbon Synapse from 57038 -> 57037, 105172 -> 105173","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57038,"TargetID":57037,"Directional":true},{"SourceID":105172,"TargetID":105173,"Directional":true}]},{"ID":10359,"SourceStructureID":5650,"TargetStructureID":89097,"Label":"5650-89097 via Ribbon Synapse from 23490 -> 89100","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23490,"TargetID":89100,"Directional":true}]},{"ID":10360,"SourceStructureID":5650,"TargetStructureID":102646,"Label":"5650-102646 via Ribbon Synapse from 102647 -> 102648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102647,"TargetID":102648,"Directional":true}]},{"ID":10361,"SourceStructureID":5650,"TargetStructureID":102649,"Label":"5650-102649 via Ribbon Synapse from 102657 -> 102654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102657,"TargetID":102654,"Directional":true}]},{"ID":10362,"SourceStructureID":5650,"TargetStructureID":102650,"Label":"5650-102650 via Ribbon Synapse from 102657 -> 102653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102657,"TargetID":102653,"Directional":true}]},{"ID":10363,"SourceStructureID":5650,"TargetStructureID":102664,"Label":"5650-102664 via Ribbon Synapse from 102668 -> 102669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102668,"TargetID":102669,"Directional":true}]},{"ID":10364,"SourceStructureID":5650,"TargetStructureID":102671,"Label":"5650-102671 via Ribbon Synapse from 102670 -> 102673","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102670,"TargetID":102673,"Directional":true}]},{"ID":10365,"SourceStructureID":5650,"TargetStructureID":102674,"Label":"5650-102674 via Ribbon Synapse from 102670 -> 102675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102670,"TargetID":102675,"Directional":true}]},{"ID":10366,"SourceStructureID":5650,"TargetStructureID":102693,"Label":"5650-102693 via BC Conventional Synapse from 102701 -> 102702","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102701,"TargetID":102702,"Directional":true}]},{"ID":10367,"SourceStructureID":5650,"TargetStructureID":102697,"Label":"5650-102697 via BC Conventional Synapse from 102698 -> 102699","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102698,"TargetID":102699,"Directional":true}]},{"ID":10368,"SourceStructureID":5650,"TargetStructureID":102761,"Label":"5650-102761 via Ribbon Synapse from 102763 -> 102762","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102763,"TargetID":102762,"Directional":true}]},{"ID":10369,"SourceStructureID":5650,"TargetStructureID":102787,"Label":"5650-102787 via Ribbon Synapse from 102786 -> 102794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102786,"TargetID":102794,"Directional":true}]},{"ID":10370,"SourceStructureID":5650,"TargetStructureID":102793,"Label":"5650-102793 via Ribbon Synapse from 102798 -> 102799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102798,"TargetID":102799,"Directional":true}]},{"ID":10371,"SourceStructureID":5650,"TargetStructureID":102953,"Label":"5650-102953 via Ribbon Synapse from 102963 -> 102972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102963,"TargetID":102972,"Directional":true}]},{"ID":10372,"SourceStructureID":5650,"TargetStructureID":102975,"Label":"5650-102975 via Ribbon Synapse from 102978 -> 102979","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102978,"TargetID":102979,"Directional":true}]},{"ID":10373,"SourceStructureID":5650,"TargetStructureID":102982,"Label":"5650-102982 via Ribbon Synapse from 102984 -> 102983","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102984,"TargetID":102983,"Directional":true}]},{"ID":10374,"SourceStructureID":5650,"TargetStructureID":102990,"Label":"5650-102990 via Ribbon Synapse from 102989 -> 102992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102989,"TargetID":102992,"Directional":true}]},{"ID":10375,"SourceStructureID":5650,"TargetStructureID":102993,"Label":"5650-102993 via Ribbon Synapse from 102989 -> 102994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102989,"TargetID":102994,"Directional":true}]},{"ID":10376,"SourceStructureID":5650,"TargetStructureID":102999,"Label":"5650-102999 via Ribbon Synapse from 61077 -> 103000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61077,"TargetID":103000,"Directional":true}]},{"ID":10377,"SourceStructureID":5650,"TargetStructureID":103005,"Label":"5650-103005 via Ribbon Synapse from 103006 -> 103007","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103006,"TargetID":103007,"Directional":true}]},{"ID":10378,"SourceStructureID":5650,"TargetStructureID":103043,"Label":"5650-103043 via Ribbon Synapse from 103042 -> 103044","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103042,"TargetID":103044,"Directional":true}]},{"ID":10379,"SourceStructureID":5650,"TargetStructureID":103045,"Label":"5650-103045 via Ribbon Synapse from 103042 -> 103046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103042,"TargetID":103046,"Directional":true}]},{"ID":10380,"SourceStructureID":5650,"TargetStructureID":103554,"Label":"5650-103554 via Ribbon Synapse from 50567 -> 103555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50567,"TargetID":103555,"Directional":true}]},{"ID":10381,"SourceStructureID":5650,"TargetStructureID":103556,"Label":"5650-103556 via Ribbon Synapse from 50567 -> 103560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50567,"TargetID":103560,"Directional":true}]},{"ID":10382,"SourceStructureID":5650,"TargetStructureID":103561,"Label":"5650-103561 via Ribbon Synapse from 50570 -> 103562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50570,"TargetID":103562,"Directional":true}]},{"ID":10383,"SourceStructureID":5650,"TargetStructureID":103563,"Label":"5650-103563 via Ribbon Synapse from 50569 -> 103584","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50569,"TargetID":103584,"Directional":true}]},{"ID":10384,"SourceStructureID":5650,"TargetStructureID":103592,"Label":"5650-103592 via Ribbon Synapse from 50565 -> 103593","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50565,"TargetID":103593,"Directional":true}]},{"ID":10385,"SourceStructureID":5650,"TargetStructureID":103601,"Label":"5650-103601 via Ribbon Synapse from 50564 -> 103602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50564,"TargetID":103602,"Directional":true}]},{"ID":10386,"SourceStructureID":5650,"TargetStructureID":103603,"Label":"5650-103603 via Ribbon Synapse from 50564 -> 103604","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50564,"TargetID":103604,"Directional":true}]},{"ID":10387,"SourceStructureID":5650,"TargetStructureID":103622,"Label":"5650-103622 via Ribbon Synapse from 50566 -> 103624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50566,"TargetID":103624,"Directional":true}]},{"ID":10388,"SourceStructureID":5650,"TargetStructureID":103626,"Label":"5650-103626 via Ribbon Synapse from 103625 -> 103627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103625,"TargetID":103627,"Directional":true}]},{"ID":10389,"SourceStructureID":5650,"TargetStructureID":103648,"Label":"5650-103648 via Ribbon Synapse from 103649 -> 103650","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103649,"TargetID":103650,"Directional":true}]},{"ID":10390,"SourceStructureID":5650,"TargetStructureID":103661,"Label":"5650-103661 via Ribbon Synapse from 103660 -> 103662","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103660,"TargetID":103662,"Directional":true}]},{"ID":10391,"SourceStructureID":5650,"TargetStructureID":103673,"Label":"5650-103673 via Ribbon Synapse from 103668 -> 103674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103668,"TargetID":103674,"Directional":true}]},{"ID":10392,"SourceStructureID":5650,"TargetStructureID":103690,"Label":"5650-103690 via Ribbon Synapse from 103688 -> 103691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103688,"TargetID":103691,"Directional":true}]},{"ID":10393,"SourceStructureID":5650,"TargetStructureID":103699,"Label":"5650-103699 via BC Conventional Synapse from 103698 -> 103700","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103698,"TargetID":103700,"Directional":true}]},{"ID":10394,"SourceStructureID":5650,"TargetStructureID":103823,"Label":"5650-103823 via Postsynapse from 103825 -> 103824","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":103825,"TargetID":103824,"Directional":true}]},{"ID":10395,"SourceStructureID":5650,"TargetStructureID":103841,"Label":"5650-103841 via Ribbon Synapse from 103844 -> 103845","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103844,"TargetID":103845,"Directional":true}]},{"ID":10396,"SourceStructureID":5650,"TargetStructureID":103889,"Label":"5650-103889 via Ribbon Synapse from 50555 -> 103890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50555,"TargetID":103890,"Directional":true}]},{"ID":10397,"SourceStructureID":5650,"TargetStructureID":103893,"Label":"5650-103893 via Ribbon Synapse from 23488 -> 103894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23488,"TargetID":103894,"Directional":true}]},{"ID":10398,"SourceStructureID":5650,"TargetStructureID":103905,"Label":"5650-103905 via Ribbon Synapse from 23478 -> 103906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23478,"TargetID":103906,"Directional":true}]},{"ID":10399,"SourceStructureID":5650,"TargetStructureID":103924,"Label":"5650-103924 via Ribbon Synapse from 103927 -> 103925","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103927,"TargetID":103925,"Directional":true}]},{"ID":10400,"SourceStructureID":5650,"TargetStructureID":103987,"Label":"5650-103987 via Ribbon Synapse from 103986 -> 104003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103986,"TargetID":104003,"Directional":true}]},{"ID":10401,"SourceStructureID":5650,"TargetStructureID":104005,"Label":"5650-104005 via Ribbon Synapse from 103986 -> 104011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103986,"TargetID":104011,"Directional":true}]},{"ID":10402,"SourceStructureID":5650,"TargetStructureID":104123,"Label":"5650-104123 via Ribbon Synapse from 30145 -> 104124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30145,"TargetID":104124,"Directional":true}]},{"ID":10403,"SourceStructureID":5650,"TargetStructureID":104130,"Label":"5650-104130 via Ribbon Synapse from 104127 -> 118189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104127,"TargetID":118189,"Directional":true}]},{"ID":10404,"SourceStructureID":5650,"TargetStructureID":104149,"Label":"5650-104149 via Ribbon Synapse from 30149 -> 104152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30149,"TargetID":104152,"Directional":true}]},{"ID":10405,"SourceStructureID":5650,"TargetStructureID":104155,"Label":"5650-104155 via Ribbon Synapse from 104153 -> 104156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104153,"TargetID":104156,"Directional":true}]},{"ID":10406,"SourceStructureID":5650,"TargetStructureID":104282,"Label":"5650-104282 via Ribbon Synapse from 104281 -> 104283","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104281,"TargetID":104283,"Directional":true}]},{"ID":10407,"SourceStructureID":5650,"TargetStructureID":104285,"Label":"5650-104285 via Ribbon Synapse from 30137 -> 104286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30137,"TargetID":104286,"Directional":true}]},{"ID":10408,"SourceStructureID":5650,"TargetStructureID":104304,"Label":"5650-104304 via Ribbon Synapse from 104303 -> 104306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104303,"TargetID":104306,"Directional":true}]},{"ID":10409,"SourceStructureID":5650,"TargetStructureID":104313,"Label":"5650-104313 via Ribbon Synapse from 104314 -> 104315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104314,"TargetID":104315,"Directional":true}]},{"ID":10410,"SourceStructureID":5650,"TargetStructureID":104316,"Label":"5650-104316 via Ribbon Synapse from 104314 -> 104317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104314,"TargetID":104317,"Directional":true}]},{"ID":10411,"SourceStructureID":5650,"TargetStructureID":104345,"Label":"5650-104345 via Ribbon Synapse from 104344 -> 104347","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104344,"TargetID":104347,"Directional":true}]},{"ID":10412,"SourceStructureID":5650,"TargetStructureID":104433,"Label":"5650-104433 via Ribbon Synapse from 104437 -> 104439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104437,"TargetID":104439,"Directional":true}]},{"ID":10413,"SourceStructureID":5650,"TargetStructureID":104435,"Label":"5650-104435 via Ribbon Synapse from 104437 -> 104438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104437,"TargetID":104438,"Directional":true}]},{"ID":10414,"SourceStructureID":5650,"TargetStructureID":104452,"Label":"5650-104452 via Ribbon Synapse from 29913 -> 104453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29913,"TargetID":104453,"Directional":true}]},{"ID":10415,"SourceStructureID":5650,"TargetStructureID":104454,"Label":"5650-104454 via Ribbon Synapse from 104455 -> 104456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104455,"TargetID":104456,"Directional":true}]},{"ID":10416,"SourceStructureID":5650,"TargetStructureID":104985,"Label":"5650-104985 via Ribbon Synapse from 29915 -> 104986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29915,"TargetID":104986,"Directional":true}]},{"ID":10417,"SourceStructureID":5650,"TargetStructureID":105002,"Label":"5650-105002 via Ribbon Synapse from 25091 -> 105003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25091,"TargetID":105003,"Directional":true}]},{"ID":10418,"SourceStructureID":5650,"TargetStructureID":105014,"Label":"5650-105014 via Ribbon Synapse from 105013 -> 105015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105013,"TargetID":105015,"Directional":true}]},{"ID":10419,"SourceStructureID":5650,"TargetStructureID":105022,"Label":"5650-105022 via Ribbon Synapse from 105034 -> 105035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105034,"TargetID":105035,"Directional":true}]},{"ID":10420,"SourceStructureID":5650,"TargetStructureID":105023,"Label":"5650-105023 via Unknown from 105025 -> 105024","Type":"Unknown","Directional":true,"Links":[{"SourceID":105025,"TargetID":105024,"Directional":true}]},{"ID":10421,"SourceStructureID":5650,"TargetStructureID":105062,"Label":"5650-105062 via Ribbon Synapse from 105061 -> 105063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105061,"TargetID":105063,"Directional":true}]},{"ID":10422,"SourceStructureID":5650,"TargetStructureID":105090,"Label":"5650-105090 via Ribbon Synapse from 105093 -> 105094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105093,"TargetID":105094,"Directional":true}]},{"ID":10423,"SourceStructureID":5650,"TargetStructureID":105100,"Label":"5650-105100 via Ribbon Synapse from 105099 -> 105101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105099,"TargetID":105101,"Directional":true}]},{"ID":10424,"SourceStructureID":5650,"TargetStructureID":105102,"Label":"5650-105102 via Ribbon Synapse from 105111 -> 105115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105111,"TargetID":105115,"Directional":true}]},{"ID":10425,"SourceStructureID":5650,"TargetStructureID":105112,"Label":"5650-105112 via Ribbon Synapse from 105111 -> 105113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105111,"TargetID":105113,"Directional":true}]},{"ID":10426,"SourceStructureID":5650,"TargetStructureID":105126,"Label":"5650-105126 via Ribbon Synapse from 105125 -> 105127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105125,"TargetID":105127,"Directional":true}]},{"ID":10427,"SourceStructureID":5650,"TargetStructureID":105131,"Label":"5650-105131 via Ribbon Synapse from 52606 -> 105132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52606,"TargetID":105132,"Directional":true}]},{"ID":10428,"SourceStructureID":5650,"TargetStructureID":105146,"Label":"5650-105146 via Ribbon Synapse from 105145 -> 105147","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105145,"TargetID":105147,"Directional":true}]},{"ID":10429,"SourceStructureID":5650,"TargetStructureID":105148,"Label":"5650-105148 via Ribbon Synapse from 105145 -> 105149","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105145,"TargetID":105149,"Directional":true}]},{"ID":10430,"SourceStructureID":5650,"TargetStructureID":105151,"Label":"5650-105151 via Ribbon Synapse from 105150 -> 105152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105150,"TargetID":105152,"Directional":true}]},{"ID":10431,"SourceStructureID":5650,"TargetStructureID":105164,"Label":"5650-105164 via Ribbon Synapse from 105166 -> 105165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105166,"TargetID":105165,"Directional":true}]},{"ID":10432,"SourceStructureID":5650,"TargetStructureID":105167,"Label":"5650-105167 via Ribbon Synapse from 30216 -> 105170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30216,"TargetID":105170,"Directional":true}]},{"ID":10433,"SourceStructureID":5650,"TargetStructureID":105184,"Label":"5650-105184 via Ribbon Synapse from 105183 -> 105185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105183,"TargetID":105185,"Directional":true}]},{"ID":10434,"SourceStructureID":5650,"TargetStructureID":105186,"Label":"5650-105186 via Ribbon Synapse from 105183 -> 105187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105183,"TargetID":105187,"Directional":true}]},{"ID":10435,"SourceStructureID":5650,"TargetStructureID":105199,"Label":"5650-105199 via Postsynapse from 29928 -> 105201","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":29928,"TargetID":105201,"Directional":true}]},{"ID":10436,"SourceStructureID":5650,"TargetStructureID":106336,"Label":"5650-106336 via Ribbon Synapse from 57038 -> 106341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57038,"TargetID":106341,"Directional":true}]},{"ID":10437,"SourceStructureID":5650,"TargetStructureID":106361,"Label":"5650-106361 via BC Conventional Synapse from 106362 -> 106363","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106362,"TargetID":106363,"Directional":true}]},{"ID":10438,"SourceStructureID":5650,"TargetStructureID":106378,"Label":"5650-106378 via Ribbon Synapse from 29931 -> 106379","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29931,"TargetID":106379,"Directional":true}]},{"ID":10439,"SourceStructureID":5650,"TargetStructureID":106380,"Label":"5650-106380 via Ribbon Synapse from 29932 -> 106381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29932,"TargetID":106381,"Directional":true}]},{"ID":10440,"SourceStructureID":5671,"TargetStructureID":7859,"Label":"5671-7859 via Ribbon Synapse from 24930 -> 84705","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24930,"TargetID":84705,"Directional":true}]},{"ID":10441,"SourceStructureID":5671,"TargetStructureID":24898,"Label":"5671-24898 via Ribbon Synapse from 24923 -> 24900","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24923,"TargetID":24900,"Directional":true}]},{"ID":10442,"SourceStructureID":5711,"TargetStructureID":71118,"Label":"5711-71118 via Ribbon Synapse from 38129 -> 71149","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38129,"TargetID":71149,"Directional":true}]},{"ID":10443,"SourceStructureID":5711,"TargetStructureID":71152,"Label":"5711-71152 via Ribbon Synapse from 38129 -> 71154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38129,"TargetID":71154,"Directional":true}]},{"ID":10444,"SourceStructureID":5711,"TargetStructureID":93456,"Label":"5711-93456 via Ribbon Synapse from 38135 -> 93468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38135,"TargetID":93468,"Directional":true}]},{"ID":10445,"SourceStructureID":5729,"TargetStructureID":606,"Label":"5729-606 via Ribbon Synapse from 37828 -> 47277, 47228 -> 47227, 47229 -> 47221, 47236 -> 47237, 47262 -> 47263, 47264 -> 47265, 47278 -> 47279, 47280 -> 47281, 47295 -> 47293, 110919 -> 110923","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37828,"TargetID":47277,"Directional":true},{"SourceID":47228,"TargetID":47227,"Directional":true},{"SourceID":47229,"TargetID":47221,"Directional":true},{"SourceID":47236,"TargetID":47237,"Directional":true},{"SourceID":47262,"TargetID":47263,"Directional":true},{"SourceID":47264,"TargetID":47265,"Directional":true},{"SourceID":47278,"TargetID":47279,"Directional":true},{"SourceID":47280,"TargetID":47281,"Directional":true},{"SourceID":47295,"TargetID":47293,"Directional":true},{"SourceID":110919,"TargetID":110923,"Directional":true}]},{"ID":10446,"SourceStructureID":5729,"TargetStructureID":7594,"Label":"5729-7594 via Ribbon Synapse from 47242 -> 110957","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47242,"TargetID":110957,"Directional":true}]},{"ID":10447,"SourceStructureID":5729,"TargetStructureID":11408,"Label":"5729-11408 via BC Conventional Synapse from 112614 -> 112646","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112614,"TargetID":112646,"Directional":true}]},{"ID":10448,"SourceStructureID":5729,"TargetStructureID":35240,"Label":"5729-35240 via Ribbon Synapse from 35281 -> 35280","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35281,"TargetID":35280,"Directional":true}]},{"ID":10449,"SourceStructureID":5729,"TargetStructureID":35428,"Label":"5729-35428 via Ribbon Synapse from 89624 -> 111956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89624,"TargetID":111956,"Directional":true}]},{"ID":10450,"SourceStructureID":5729,"TargetStructureID":35440,"Label":"5729-35440 via Ribbon Synapse from 105768 -> 111631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105768,"TargetID":111631,"Directional":true}]},{"ID":10451,"SourceStructureID":5729,"TargetStructureID":55232,"Label":"5729-55232 via Ribbon Synapse from 47229 -> 55239, 47229 -> 111152, 47236 -> 55250, 55388 -> 55389, 55392 -> 55393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47229,"TargetID":55239,"Directional":true},{"SourceID":47229,"TargetID":111152,"Directional":true},{"SourceID":47236,"TargetID":55250,"Directional":true},{"SourceID":55388,"TargetID":55389,"Directional":true},{"SourceID":55392,"TargetID":55393,"Directional":true}]},{"ID":10452,"SourceStructureID":5729,"TargetStructureID":55403,"Label":"5729-55403 via Ribbon Synapse from 112616 -> 112619, 112622 -> 55472, 112623 -> 55468, 112624 -> 55468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112616,"TargetID":112619,"Directional":true},{"SourceID":112622,"TargetID":55472,"Directional":true},{"SourceID":112623,"TargetID":55468,"Directional":true},{"SourceID":112624,"TargetID":55468,"Directional":true}]},{"ID":10453,"SourceStructureID":5729,"TargetStructureID":64447,"Label":"5729-64447 via Ribbon Synapse from 64450 -> 64449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64450,"TargetID":64449,"Directional":true}]},{"ID":10454,"SourceStructureID":5729,"TargetStructureID":64452,"Label":"5729-64452 via Ribbon Synapse from 64536 -> 64455, 89609 -> 89605, 89610 -> 111990, 89627 -> 111947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64536,"TargetID":64455,"Directional":true},{"SourceID":89609,"TargetID":89605,"Directional":true},{"SourceID":89610,"TargetID":111990,"Directional":true},{"SourceID":89627,"TargetID":111947,"Directional":true}]},{"ID":10455,"SourceStructureID":5729,"TargetStructureID":64520,"Label":"5729-64520 via Ribbon Synapse from 64511 -> 64522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64511,"TargetID":64522,"Directional":true}]},{"ID":10456,"SourceStructureID":5729,"TargetStructureID":68539,"Label":"5729-68539 via Ribbon Synapse from 47262 -> 110933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47262,"TargetID":110933,"Directional":true}]},{"ID":10457,"SourceStructureID":5729,"TargetStructureID":87277,"Label":"5729-87277 via Ribbon Synapse from 47295 -> 111451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47295,"TargetID":111451,"Directional":true}]},{"ID":10458,"SourceStructureID":5729,"TargetStructureID":88981,"Label":"5729-88981 via Ribbon Synapse from 110919 -> 110920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110919,"TargetID":110920,"Directional":true}]},{"ID":10459,"SourceStructureID":5729,"TargetStructureID":89586,"Label":"5729-89586 via Ribbon Synapse from 64507 -> 89592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64507,"TargetID":89592,"Directional":true}]},{"ID":10460,"SourceStructureID":5729,"TargetStructureID":108749,"Label":"5729-108749 via Ribbon Synapse from 47296 -> 108750","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47296,"TargetID":108750,"Directional":true}]},{"ID":10461,"SourceStructureID":5729,"TargetStructureID":110535,"Label":"5729-110535 via Cistern Pre from 37810 -> 110536","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37810,"TargetID":110536,"Directional":true}]},{"ID":10462,"SourceStructureID":5729,"TargetStructureID":110540,"Label":"5729-110540 via Ribbon Synapse from 110542 -> 110541","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110542,"TargetID":110541,"Directional":true}]},{"ID":10463,"SourceStructureID":5729,"TargetStructureID":110842,"Label":"5729-110842 via Ribbon Synapse from 37835 -> 110849, 110848 -> 110849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37835,"TargetID":110849,"Directional":true},{"SourceID":110848,"TargetID":110849,"Directional":true}]},{"ID":10464,"SourceStructureID":5729,"TargetStructureID":110854,"Label":"5729-110854 via Ribbon Synapse from 37836 -> 110856, 37837 -> 110856","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37836,"TargetID":110856,"Directional":true},{"SourceID":37837,"TargetID":110856,"Directional":true}]},{"ID":10465,"SourceStructureID":5729,"TargetStructureID":110876,"Label":"5729-110876 via Ribbon Synapse from 37843 -> 110877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37843,"TargetID":110877,"Directional":true}]},{"ID":10466,"SourceStructureID":5729,"TargetStructureID":110879,"Label":"5729-110879 via Ribbon Synapse from 110878 -> 110891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110878,"TargetID":110891,"Directional":true}]},{"ID":10467,"SourceStructureID":5729,"TargetStructureID":110880,"Label":"5729-110880 via Ribbon Synapse from 37842 -> 110887, 110878 -> 110890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37842,"TargetID":110887,"Directional":true},{"SourceID":110878,"TargetID":110890,"Directional":true}]},{"ID":10468,"SourceStructureID":5729,"TargetStructureID":110885,"Label":"5729-110885 via Ribbon Synapse from 37842 -> 110886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37842,"TargetID":110886,"Directional":true}]},{"ID":10469,"SourceStructureID":5729,"TargetStructureID":110921,"Label":"5729-110921 via Ribbon Synapse from 110919 -> 110922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110919,"TargetID":110922,"Directional":true}]},{"ID":10470,"SourceStructureID":5729,"TargetStructureID":110930,"Label":"5729-110930 via Ribbon Synapse from 47264 -> 110931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47264,"TargetID":110931,"Directional":true}]},{"ID":10471,"SourceStructureID":5729,"TargetStructureID":110946,"Label":"5729-110946 via Ribbon Synapse from 37854 -> 110950, 37854 -> 110951","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37854,"TargetID":110950,"Directional":true},{"SourceID":37854,"TargetID":110951,"Directional":true}]},{"ID":10472,"SourceStructureID":5729,"TargetStructureID":110948,"Label":"5729-110948 via Ribbon Synapse from 37854 -> 110949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37854,"TargetID":110949,"Directional":true}]},{"ID":10473,"SourceStructureID":5729,"TargetStructureID":111040,"Label":"5729-111040 via Ribbon Synapse from 47240 -> 111072","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47240,"TargetID":111072,"Directional":true}]},{"ID":10474,"SourceStructureID":5729,"TargetStructureID":111043,"Label":"5729-111043 via Ribbon Synapse from 111048 -> 111046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111048,"TargetID":111046,"Directional":true}]},{"ID":10475,"SourceStructureID":5729,"TargetStructureID":111049,"Label":"5729-111049 via Ribbon Synapse from 111048 -> 111050","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111048,"TargetID":111050,"Directional":true}]},{"ID":10476,"SourceStructureID":5729,"TargetStructureID":111051,"Label":"5729-111051 via Ribbon Synapse from 111048 -> 111052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111048,"TargetID":111052,"Directional":true}]},{"ID":10477,"SourceStructureID":5729,"TargetStructureID":111057,"Label":"5729-111057 via Ribbon Synapse from 111058 -> 111061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111058,"TargetID":111061,"Directional":true}]},{"ID":10478,"SourceStructureID":5729,"TargetStructureID":111064,"Label":"5729-111064 via Ribbon Synapse from 111058 -> 111065","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111058,"TargetID":111065,"Directional":true}]},{"ID":10479,"SourceStructureID":5729,"TargetStructureID":111073,"Label":"5729-111073 via Ribbon Synapse from 47240 -> 111074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47240,"TargetID":111074,"Directional":true}]},{"ID":10480,"SourceStructureID":5729,"TargetStructureID":111164,"Label":"5729-111164 via Ribbon Synapse from 111163 -> 111170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111163,"TargetID":111170,"Directional":true}]},{"ID":10481,"SourceStructureID":5729,"TargetStructureID":111171,"Label":"5729-111171 via Ribbon Synapse from 111163 -> 111172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111163,"TargetID":111172,"Directional":true}]},{"ID":10482,"SourceStructureID":5729,"TargetStructureID":111174,"Label":"5729-111174 via Ribbon Synapse from 55388 -> 111177","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55388,"TargetID":111177,"Directional":true}]},{"ID":10483,"SourceStructureID":5729,"TargetStructureID":111178,"Label":"5729-111178 via Ribbon Synapse from 55388 -> 111179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55388,"TargetID":111179,"Directional":true}]},{"ID":10484,"SourceStructureID":5729,"TargetStructureID":111201,"Label":"5729-111201 via Ribbon Synapse from 111200 -> 111202","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111200,"TargetID":111202,"Directional":true}]},{"ID":10485,"SourceStructureID":5729,"TargetStructureID":111296,"Label":"5729-111296 via Ribbon Synapse from 37813 -> 111297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37813,"TargetID":111297,"Directional":true}]},{"ID":10486,"SourceStructureID":5729,"TargetStructureID":111309,"Label":"5729-111309 via Ribbon Synapse from 37817 -> 111310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37817,"TargetID":111310,"Directional":true}]},{"ID":10487,"SourceStructureID":5729,"TargetStructureID":111312,"Label":"5729-111312 via Ribbon Synapse from 37824 -> 111313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37824,"TargetID":111313,"Directional":true}]},{"ID":10488,"SourceStructureID":5729,"TargetStructureID":111314,"Label":"5729-111314 via Ribbon Synapse from 37820 -> 111333, 37822 -> 111334, 37824 -> 111317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37820,"TargetID":111333,"Directional":true},{"SourceID":37822,"TargetID":111334,"Directional":true},{"SourceID":37824,"TargetID":111317,"Directional":true}]},{"ID":10489,"SourceStructureID":5729,"TargetStructureID":111318,"Label":"5729-111318 via Ribbon Synapse from 37824 -> 111322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37824,"TargetID":111322,"Directional":true}]},{"ID":10490,"SourceStructureID":5729,"TargetStructureID":111328,"Label":"5729-111328 via Ribbon Synapse from 37820 -> 111329","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37820,"TargetID":111329,"Directional":true}]},{"ID":10491,"SourceStructureID":5729,"TargetStructureID":111330,"Label":"5729-111330 via Ribbon Synapse from 37820 -> 111337","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37820,"TargetID":111337,"Directional":true}]},{"ID":10492,"SourceStructureID":5729,"TargetStructureID":111335,"Label":"5729-111335 via Ribbon Synapse from 37822 -> 111336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37822,"TargetID":111336,"Directional":true}]},{"ID":10493,"SourceStructureID":5729,"TargetStructureID":111339,"Label":"5729-111339 via Ribbon Synapse from 37823 -> 111340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37823,"TargetID":111340,"Directional":true}]},{"ID":10494,"SourceStructureID":5729,"TargetStructureID":111410,"Label":"5729-111410 via Ribbon Synapse from 37830 -> 111420, 111412 -> 111413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37830,"TargetID":111420,"Directional":true},{"SourceID":111412,"TargetID":111413,"Directional":true}]},{"ID":10495,"SourceStructureID":5729,"TargetStructureID":111414,"Label":"5729-111414 via Ribbon Synapse from 37831 -> 111416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37831,"TargetID":111416,"Directional":true}]},{"ID":10496,"SourceStructureID":5729,"TargetStructureID":111417,"Label":"5729-111417 via Ribbon Synapse from 37830 -> 111419, 37831 -> 111418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37830,"TargetID":111419,"Directional":true},{"SourceID":37831,"TargetID":111418,"Directional":true}]},{"ID":10497,"SourceStructureID":5729,"TargetStructureID":111428,"Label":"5729-111428 via Ribbon Synapse from 47278 -> 111429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47278,"TargetID":111429,"Directional":true}]},{"ID":10498,"SourceStructureID":5729,"TargetStructureID":111436,"Label":"5729-111436 via Ribbon Synapse from 47280 -> 111437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47280,"TargetID":111437,"Directional":true}]},{"ID":10499,"SourceStructureID":5729,"TargetStructureID":111470,"Label":"5729-111470 via Ribbon Synapse from 37834 -> 111471","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37834,"TargetID":111471,"Directional":true}]},{"ID":10500,"SourceStructureID":5729,"TargetStructureID":111472,"Label":"5729-111472 via Ribbon Synapse from 105777 -> 111473","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105777,"TargetID":111473,"Directional":true}]},{"ID":10501,"SourceStructureID":5729,"TargetStructureID":111474,"Label":"5729-111474 via Ribbon Synapse from 105777 -> 111476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105777,"TargetID":111476,"Directional":true}]},{"ID":10502,"SourceStructureID":5729,"TargetStructureID":111616,"Label":"5729-111616 via Ribbon Synapse from 102926 -> 111618, 105768 -> 111626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102926,"TargetID":111618,"Directional":true},{"SourceID":105768,"TargetID":111626,"Directional":true}]},{"ID":10503,"SourceStructureID":5729,"TargetStructureID":111620,"Label":"5729-111620 via Ribbon Synapse from 102926 -> 111621","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102926,"TargetID":111621,"Directional":true}]},{"ID":10504,"SourceStructureID":5729,"TargetStructureID":111629,"Label":"5729-111629 via Ribbon Synapse from 105768 -> 111632","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105768,"TargetID":111632,"Directional":true}]},{"ID":10505,"SourceStructureID":5729,"TargetStructureID":111638,"Label":"5729-111638 via Ribbon Synapse from 48384 -> 111643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48384,"TargetID":111643,"Directional":true}]},{"ID":10506,"SourceStructureID":5729,"TargetStructureID":111641,"Label":"5729-111641 via Ribbon Synapse from 48384 -> 111642","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48384,"TargetID":111642,"Directional":true}]},{"ID":10507,"SourceStructureID":5729,"TargetStructureID":111738,"Label":"5729-111738 via Ribbon Synapse from 48379 -> 111739","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48379,"TargetID":111739,"Directional":true}]},{"ID":10508,"SourceStructureID":5729,"TargetStructureID":111746,"Label":"5729-111746 via Ribbon Synapse from 48379 -> 111747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48379,"TargetID":111747,"Directional":true}]},{"ID":10509,"SourceStructureID":5729,"TargetStructureID":111753,"Label":"5729-111753 via Ribbon Synapse from 48381 -> 111754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48381,"TargetID":111754,"Directional":true}]},{"ID":10510,"SourceStructureID":5729,"TargetStructureID":111755,"Label":"5729-111755 via Ribbon Synapse from 48381 -> 111756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48381,"TargetID":111756,"Directional":true}]},{"ID":10511,"SourceStructureID":5729,"TargetStructureID":111764,"Label":"5729-111764 via Ribbon Synapse from 111760 -> 111765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111760,"TargetID":111765,"Directional":true}]},{"ID":10512,"SourceStructureID":5729,"TargetStructureID":111772,"Label":"5729-111772 via Ribbon Synapse from 48383 -> 111773","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48383,"TargetID":111773,"Directional":true}]},{"ID":10513,"SourceStructureID":5729,"TargetStructureID":111776,"Label":"5729-111776 via Ribbon Synapse from 111762 -> 111777","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111762,"TargetID":111777,"Directional":true}]},{"ID":10514,"SourceStructureID":5729,"TargetStructureID":111781,"Label":"5729-111781 via Ribbon Synapse from 35281 -> 111782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35281,"TargetID":111782,"Directional":true}]},{"ID":10515,"SourceStructureID":5729,"TargetStructureID":111783,"Label":"5729-111783 via Ribbon Synapse from 111761 -> 111784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111761,"TargetID":111784,"Directional":true}]},{"ID":10516,"SourceStructureID":5729,"TargetStructureID":111949,"Label":"5729-111949 via Ribbon Synapse from 89627 -> 111950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89627,"TargetID":111950,"Directional":true}]},{"ID":10517,"SourceStructureID":5729,"TargetStructureID":111957,"Label":"5729-111957 via Ribbon Synapse from 89624 -> 111958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89624,"TargetID":111958,"Directional":true}]},{"ID":10518,"SourceStructureID":5729,"TargetStructureID":111974,"Label":"5729-111974 via Ribbon Synapse from 111973 -> 111975","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111973,"TargetID":111975,"Directional":true}]},{"ID":10519,"SourceStructureID":5729,"TargetStructureID":111976,"Label":"5729-111976 via Ribbon Synapse from 111973 -> 111977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111973,"TargetID":111977,"Directional":true}]},{"ID":10520,"SourceStructureID":5729,"TargetStructureID":111980,"Label":"5729-111980 via Ribbon Synapse from 89608 -> 111981","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89608,"TargetID":111981,"Directional":true}]},{"ID":10521,"SourceStructureID":5729,"TargetStructureID":111982,"Label":"5729-111982 via Ribbon Synapse from 89608 -> 111984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89608,"TargetID":111984,"Directional":true}]},{"ID":10522,"SourceStructureID":5729,"TargetStructureID":111986,"Label":"5729-111986 via Ribbon Synapse from 89609 -> 111987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89609,"TargetID":111987,"Directional":true}]},{"ID":10523,"SourceStructureID":5729,"TargetStructureID":111991,"Label":"5729-111991 via Ribbon Synapse from 89610 -> 111993","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89610,"TargetID":111993,"Directional":true}]},{"ID":10524,"SourceStructureID":5729,"TargetStructureID":112005,"Label":"5729-112005 via Ribbon Synapse from 112008 -> 112009","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112008,"TargetID":112009,"Directional":true}]},{"ID":10525,"SourceStructureID":5729,"TargetStructureID":112010,"Label":"5729-112010 via Ribbon Synapse from 112008 -> 112011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112008,"TargetID":112011,"Directional":true}]},{"ID":10526,"SourceStructureID":5729,"TargetStructureID":112304,"Label":"5729-112304 via Ribbon Synapse from 112305 -> 112309","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112305,"TargetID":112309,"Directional":true}]},{"ID":10527,"SourceStructureID":5729,"TargetStructureID":112447,"Label":"5729-112447 via Ribbon Synapse from 112446 -> 112448, 112450 -> 112452","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112446,"TargetID":112448,"Directional":true},{"SourceID":112450,"TargetID":112452,"Directional":true}]},{"ID":10528,"SourceStructureID":5729,"TargetStructureID":112449,"Label":"5729-112449 via Ribbon Synapse from 112450 -> 112453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112450,"TargetID":112453,"Directional":true}]},{"ID":10529,"SourceStructureID":5729,"TargetStructureID":112593,"Label":"5729-112593 via Ribbon Synapse from 112450 -> 112599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112450,"TargetID":112599,"Directional":true}]},{"ID":10530,"SourceStructureID":5729,"TargetStructureID":112625,"Label":"5729-112625 via Ribbon Synapse from 112623 -> 112626, 112624 -> 112626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112623,"TargetID":112626,"Directional":true},{"SourceID":112624,"TargetID":112626,"Directional":true}]},{"ID":10531,"SourceStructureID":5729,"TargetStructureID":112628,"Label":"5729-112628 via Ribbon Synapse from 112627 -> 112629","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112627,"TargetID":112629,"Directional":true}]},{"ID":10532,"SourceStructureID":5729,"TargetStructureID":112634,"Label":"5729-112634 via Ribbon Synapse from 112627 -> 112635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112627,"TargetID":112635,"Directional":true}]},{"ID":10533,"SourceStructureID":5729,"TargetStructureID":112638,"Label":"5729-112638 via Ribbon Synapse from 112622 -> 112639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112622,"TargetID":112639,"Directional":true}]},{"ID":10534,"SourceStructureID":5729,"TargetStructureID":112641,"Label":"5729-112641 via Ribbon Synapse from 112616 -> 112642, 112617 -> 112642","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112616,"TargetID":112642,"Directional":true},{"SourceID":112617,"TargetID":112642,"Directional":true}]},{"ID":10535,"SourceStructureID":5729,"TargetStructureID":112658,"Label":"5729-112658 via Ribbon Synapse from 112654 -> 112659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112654,"TargetID":112659,"Directional":true}]},{"ID":10536,"SourceStructureID":5729,"TargetStructureID":112669,"Label":"5729-112669 via Ribbon Synapse from 64513 -> 112670","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64513,"TargetID":112670,"Directional":true}]},{"ID":10537,"SourceStructureID":5729,"TargetStructureID":112678,"Label":"5729-112678 via Ribbon Synapse from 64511 -> 112679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64511,"TargetID":112679,"Directional":true}]},{"ID":10538,"SourceStructureID":5729,"TargetStructureID":112681,"Label":"5729-112681 via Ribbon Synapse from 64506 -> 112682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64506,"TargetID":112682,"Directional":true}]},{"ID":10539,"SourceStructureID":5729,"TargetStructureID":112684,"Label":"5729-112684 via Ribbon Synapse from 64507 -> 112686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64507,"TargetID":112686,"Directional":true}]},{"ID":10540,"SourceStructureID":5729,"TargetStructureID":112689,"Label":"5729-112689 via Ribbon Synapse from 64502 -> 112690","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64502,"TargetID":112690,"Directional":true}]},{"ID":10541,"SourceStructureID":5729,"TargetStructureID":112692,"Label":"5729-112692 via Ribbon Synapse from 64501 -> 112693","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64501,"TargetID":112693,"Directional":true}]},{"ID":10542,"SourceStructureID":5729,"TargetStructureID":112700,"Label":"5729-112700 via Ribbon Synapse from 64484 -> 112702","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64484,"TargetID":112702,"Directional":true}]},{"ID":10543,"SourceStructureID":5729,"TargetStructureID":112703,"Label":"5729-112703 via Ribbon Synapse from 64486 -> 112704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64486,"TargetID":112704,"Directional":true}]},{"ID":10544,"SourceStructureID":5729,"TargetStructureID":112709,"Label":"5729-112709 via Ribbon Synapse from 64482 -> 112711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64482,"TargetID":112711,"Directional":true}]},{"ID":10545,"SourceStructureID":5729,"TargetStructureID":112715,"Label":"5729-112715 via Ribbon Synapse from 64501 -> 112716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64501,"TargetID":112716,"Directional":true}]},{"ID":10546,"SourceStructureID":5729,"TargetStructureID":112721,"Label":"5729-112721 via Adherens from 64476 -> 112724","Type":"Adherens","Directional":true,"Links":[{"SourceID":64476,"TargetID":112724,"Directional":true}]},{"ID":10547,"SourceStructureID":5729,"TargetStructureID":112729,"Label":"5729-112729 via Ribbon Synapse from 64469 -> 112730","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64469,"TargetID":112730,"Directional":true}]},{"ID":10548,"SourceStructureID":5729,"TargetStructureID":112732,"Label":"5729-112732 via Ribbon Synapse from 64469 -> 112733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64469,"TargetID":112733,"Directional":true}]},{"ID":10549,"SourceStructureID":5729,"TargetStructureID":112887,"Label":"5729-112887 via Ribbon Synapse from 64461 -> 112892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64461,"TargetID":112892,"Directional":true}]},{"ID":10550,"SourceStructureID":5729,"TargetStructureID":112898,"Label":"5729-112898 via Ribbon Synapse from 64467 -> 112901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64467,"TargetID":112901,"Directional":true}]},{"ID":10551,"SourceStructureID":5729,"TargetStructureID":112912,"Label":"5729-112912 via Ribbon Synapse from 64585 -> 112915","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64585,"TargetID":112915,"Directional":true}]},{"ID":10552,"SourceStructureID":5729,"TargetStructureID":112931,"Label":"5729-112931 via Ribbon Synapse from 64532 -> 112933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64532,"TargetID":112933,"Directional":true}]},{"ID":10553,"SourceStructureID":5729,"TargetStructureID":112934,"Label":"5729-112934 via Ribbon Synapse from 64532 -> 112935, 64536 -> 112936, 64583 -> 112959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64532,"TargetID":112935,"Directional":true},{"SourceID":64536,"TargetID":112936,"Directional":true},{"SourceID":64583,"TargetID":112959,"Directional":true}]},{"ID":10554,"SourceStructureID":5729,"TargetStructureID":112943,"Label":"5729-112943 via Ribbon Synapse from 64583 -> 112945, 64584 -> 112945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64583,"TargetID":112945,"Directional":true},{"SourceID":64584,"TargetID":112945,"Directional":true}]},{"ID":10555,"SourceStructureID":5729,"TargetStructureID":112950,"Label":"5729-112950 via Ribbon Synapse from 64531 -> 112951","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64531,"TargetID":112951,"Directional":true}]},{"ID":10556,"SourceStructureID":5729,"TargetStructureID":112952,"Label":"5729-112952 via Ribbon Synapse from 64534 -> 112953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64534,"TargetID":112953,"Directional":true}]},{"ID":10557,"SourceStructureID":5729,"TargetStructureID":112955,"Label":"5729-112955 via Ribbon Synapse from 64584 -> 112956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64584,"TargetID":112956,"Directional":true}]},{"ID":10558,"SourceStructureID":5729,"TargetStructureID":112961,"Label":"5729-112961 via Ribbon Synapse from 111942 -> 112962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111942,"TargetID":112962,"Directional":true}]},{"ID":10559,"SourceStructureID":5729,"TargetStructureID":112977,"Label":"5729-112977 via Ribbon Synapse from 112976 -> 112980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112976,"TargetID":112980,"Directional":true}]},{"ID":10560,"SourceStructureID":5729,"TargetStructureID":112978,"Label":"5729-112978 via Ribbon Synapse from 112975 -> 112981, 112976 -> 112979","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112975,"TargetID":112981,"Directional":true},{"SourceID":112976,"TargetID":112979,"Directional":true}]},{"ID":10561,"SourceStructureID":5729,"TargetStructureID":112982,"Label":"5729-112982 via Ribbon Synapse from 112975 -> 112983","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112975,"TargetID":112983,"Directional":true}]},{"ID":10562,"SourceStructureID":5729,"TargetStructureID":112984,"Label":"5729-112984 via Ribbon Synapse from 112973 -> 112985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112973,"TargetID":112985,"Directional":true}]},{"ID":10563,"SourceStructureID":5729,"TargetStructureID":112991,"Label":"5729-112991 via Ribbon Synapse from 112972 -> 112992, 112975 -> 112993","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112972,"TargetID":112992,"Directional":true},{"SourceID":112975,"TargetID":112993,"Directional":true}]},{"ID":10564,"SourceStructureID":5729,"TargetStructureID":113095,"Label":"5729-113095 via Ribbon Synapse from 113092 -> 113096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113092,"TargetID":113096,"Directional":true}]},{"ID":10565,"SourceStructureID":5729,"TargetStructureID":113097,"Label":"5729-113097 via Ribbon Synapse from 113092 -> 113098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113092,"TargetID":113098,"Directional":true}]},{"ID":10566,"SourceStructureID":5729,"TargetStructureID":113099,"Label":"5729-113099 via Ribbon Synapse from 111795 -> 113100","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111795,"TargetID":113100,"Directional":true}]},{"ID":10567,"SourceStructureID":5737,"TargetStructureID":352,"Label":"5737-352 via Conventional from 5741 -> 5742","Type":"Conventional","Directional":true,"Links":[{"SourceID":5741,"TargetID":5742,"Directional":true}]},{"ID":10568,"SourceStructureID":5775,"TargetStructureID":8575,"Label":"5775-8575 via BC Conventional Synapse from 62247 -> 62245","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62247,"TargetID":62245,"Directional":true}]},{"ID":10569,"SourceStructureID":5838,"TargetStructureID":5118,"Label":"5838-5118 via BC Conventional Synapse from 52220 -> 52219","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52220,"TargetID":52219,"Directional":true}]},{"ID":10570,"SourceStructureID":5838,"TargetStructureID":5118,"Label":"5838-5118 via Ribbon Synapse from 38041 -> 52221","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38041,"TargetID":52221,"Directional":true}]},{"ID":10571,"SourceStructureID":5838,"TargetStructureID":8579,"Label":"5838-8579 via Ribbon Synapse from 38036 -> 62677","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38036,"TargetID":62677,"Directional":true}]},{"ID":10572,"SourceStructureID":5860,"TargetStructureID":172,"Label":"5860-172 via Conventional from 29463 -> 29462, 119989 -> 119991","Type":"Conventional","Directional":true,"Links":[{"SourceID":29463,"TargetID":29462,"Directional":true},{"SourceID":119989,"TargetID":119991,"Directional":true}]},{"ID":10573,"SourceStructureID":5860,"TargetStructureID":5528,"Label":"5860-5528 via Conventional from 8248 -> 96908","Type":"Conventional","Directional":true,"Links":[{"SourceID":8248,"TargetID":96908,"Directional":true}]},{"ID":10574,"SourceStructureID":5860,"TargetStructureID":5544,"Label":"5860-5544 via Conventional from 9920 -> 9916, 9922 -> 9921","Type":"Conventional","Directional":true,"Links":[{"SourceID":9920,"TargetID":9916,"Directional":true},{"SourceID":9922,"TargetID":9921,"Directional":true}]},{"ID":10575,"SourceStructureID":5860,"TargetStructureID":7075,"Label":"5860-7075 via Conventional from 62356 -> 62355","Type":"Conventional","Directional":true,"Links":[{"SourceID":62356,"TargetID":62355,"Directional":true}]},{"ID":10576,"SourceStructureID":5860,"TargetStructureID":38911,"Label":"5860-38911 via Conventional from 38910 -> 38914","Type":"Conventional","Directional":true,"Links":[{"SourceID":38910,"TargetID":38914,"Directional":true}]},{"ID":10577,"SourceStructureID":5916,"TargetStructureID":8579,"Label":"5916-8579 via BC Conventional Synapse from 109327 -> 109328","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109327,"TargetID":109328,"Directional":true}]},{"ID":10578,"SourceStructureID":5916,"TargetStructureID":8579,"Label":"5916-8579 via Ribbon Synapse from 63973 -> 108279, 109435 -> 19795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63973,"TargetID":108279,"Directional":true},{"SourceID":109435,"TargetID":19795,"Directional":true}]},{"ID":10579,"SourceStructureID":5916,"TargetStructureID":18282,"Label":"5916-18282 via Ribbon Synapse from 38845 -> 38843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38845,"TargetID":38843,"Directional":true}]},{"ID":10580,"SourceStructureID":5916,"TargetStructureID":52262,"Label":"5916-52262 via Ribbon Synapse from 37990 -> 52289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37990,"TargetID":52289,"Directional":true}]},{"ID":10581,"SourceStructureID":5916,"TargetStructureID":106352,"Label":"5916-106352 via BC Conventional Synapse from 109645 -> 109646","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109645,"TargetID":109646,"Directional":true}]},{"ID":10582,"SourceStructureID":5916,"TargetStructureID":108734,"Label":"5916-108734 via Ribbon Synapse from 37970 -> 108735","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37970,"TargetID":108735,"Directional":true}]},{"ID":10583,"SourceStructureID":5916,"TargetStructureID":108745,"Label":"5916-108745 via BC Conventional Synapse from 108747 -> 108748","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108747,"TargetID":108748,"Directional":true}]},{"ID":10584,"SourceStructureID":5916,"TargetStructureID":109039,"Label":"5916-109039 via Ribbon Synapse from 108922 -> 109044, 108933 -> 109040","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108922,"TargetID":109044,"Directional":true},{"SourceID":108933,"TargetID":109040,"Directional":true}]},{"ID":10585,"SourceStructureID":5916,"TargetStructureID":109079,"Label":"5916-109079 via Ribbon Synapse from 38001 -> 109080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38001,"TargetID":109080,"Directional":true}]},{"ID":10586,"SourceStructureID":5916,"TargetStructureID":109308,"Label":"5916-109308 via Ribbon Synapse from 109312 -> 109313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109312,"TargetID":109313,"Directional":true}]},{"ID":10587,"SourceStructureID":5916,"TargetStructureID":109696,"Label":"5916-109696 via Ribbon Synapse from 109702 -> 109700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109702,"TargetID":109700,"Directional":true}]},{"ID":10588,"SourceStructureID":5916,"TargetStructureID":109716,"Label":"5916-109716 via Ribbon Synapse from 109702 -> 109719","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109702,"TargetID":109719,"Directional":true}]},{"ID":10589,"SourceStructureID":5919,"TargetStructureID":166,"Label":"5919-166 via Conventional from 23613 -> 4128","Type":"Conventional","Directional":true,"Links":[{"SourceID":23613,"TargetID":4128,"Directional":true}]},{"ID":10590,"SourceStructureID":5922,"TargetStructureID":7050,"Label":"5922-7050 via Ribbon Synapse from 68834 -> 68835","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68834,"TargetID":68835,"Directional":true}]},{"ID":10591,"SourceStructureID":5922,"TargetStructureID":22232,"Label":"5922-22232 via Ribbon Synapse from 68829 -> 68830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68829,"TargetID":68830,"Directional":true}]},{"ID":10592,"SourceStructureID":5922,"TargetStructureID":68836,"Label":"5922-68836 via Ribbon Synapse from 68834 -> 68839","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68834,"TargetID":68839,"Directional":true}]},{"ID":10593,"SourceStructureID":5923,"TargetStructureID":4943,"Label":"5923-4943 via Ribbon Synapse from 8691 -> 4997, 87584 -> 4997","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8691,"TargetID":4997,"Directional":true},{"SourceID":87584,"TargetID":4997,"Directional":true}]},{"ID":10594,"SourceStructureID":5923,"TargetStructureID":7050,"Label":"5923-7050 via Ribbon Synapse from 9974 -> 10069, 10007 -> 14316, 33624 -> 55666","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9974,"TargetID":10069,"Directional":true},{"SourceID":10007,"TargetID":14316,"Directional":true},{"SourceID":33624,"TargetID":55666,"Directional":true}]},{"ID":10595,"SourceStructureID":5923,"TargetStructureID":12897,"Label":"5923-12897 via Ribbon Synapse from 9961 -> 24724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9961,"TargetID":24724,"Directional":true}]},{"ID":10596,"SourceStructureID":5923,"TargetStructureID":87589,"Label":"5923-87589 via Ribbon Synapse from 87587 -> 98799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87587,"TargetID":98799,"Directional":true}]},{"ID":10597,"SourceStructureID":6011,"TargetStructureID":138,"Label":"6011-138 via Conventional from 6034 -> 32880, 6035 -> 32881","Type":"Conventional","Directional":true,"Links":[{"SourceID":6034,"TargetID":32880,"Directional":true},{"SourceID":6035,"TargetID":32881,"Directional":true}]},{"ID":10598,"SourceStructureID":6011,"TargetStructureID":5640,"Label":"6011-5640 via Conventional from 37063 -> 37062","Type":"Conventional","Directional":true,"Links":[{"SourceID":37063,"TargetID":37062,"Directional":true}]},{"ID":10599,"SourceStructureID":6011,"TargetStructureID":5648,"Label":"6011-5648 via Conventional from 6037 -> 23418","Type":"Conventional","Directional":true,"Links":[{"SourceID":6037,"TargetID":23418,"Directional":true}]},{"ID":10600,"SourceStructureID":6011,"TargetStructureID":6050,"Label":"6011-6050 via Conventional from 6029 -> 37632","Type":"Conventional","Directional":true,"Links":[{"SourceID":6029,"TargetID":37632,"Directional":true}]},{"ID":10601,"SourceStructureID":6011,"TargetStructureID":6136,"Label":"6011-6136 via Conventional from 6028 -> 10366","Type":"Conventional","Directional":true,"Links":[{"SourceID":6028,"TargetID":10366,"Directional":true}]},{"ID":10602,"SourceStructureID":6046,"TargetStructureID":7134,"Label":"6046-7134 via Ribbon Synapse from 16715 -> 16747, 16716 -> 16748, 16719 -> 16745, 16726 -> 53602, 18189 -> 53593, 18191 -> 53594, 42759 -> 41648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16715,"TargetID":16747,"Directional":true},{"SourceID":16716,"TargetID":16748,"Directional":true},{"SourceID":16719,"TargetID":16745,"Directional":true},{"SourceID":16726,"TargetID":53602,"Directional":true},{"SourceID":18189,"TargetID":53593,"Directional":true},{"SourceID":18191,"TargetID":53594,"Directional":true},{"SourceID":42759,"TargetID":41648,"Directional":true}]},{"ID":10603,"SourceStructureID":6046,"TargetStructureID":7145,"Label":"6046-7145 via Ribbon Synapse from 16676 -> 16684, 16678 -> 15834","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16676,"TargetID":16684,"Directional":true},{"SourceID":16678,"TargetID":15834,"Directional":true}]},{"ID":10604,"SourceStructureID":6046,"TargetStructureID":7897,"Label":"6046-7897 via Ribbon Synapse from 11859 -> 55690","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11859,"TargetID":55690,"Directional":true}]},{"ID":10605,"SourceStructureID":6046,"TargetStructureID":16073,"Label":"6046-16073 via Ribbon Synapse from 16729 -> 18213","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16729,"TargetID":18213,"Directional":true}]},{"ID":10606,"SourceStructureID":6046,"TargetStructureID":35576,"Label":"6046-35576 via Ribbon Synapse from 16734 -> 35581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16734,"TargetID":35581,"Directional":true}]},{"ID":10607,"SourceStructureID":6046,"TargetStructureID":43261,"Label":"6046-43261 via Ribbon Synapse from 18179 -> 122049","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18179,"TargetID":122049,"Directional":true}]},{"ID":10608,"SourceStructureID":6046,"TargetStructureID":61450,"Label":"6046-61450 via BC Conventional Synapse from 61454 -> 61453","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61454,"TargetID":61453,"Directional":true}]},{"ID":10609,"SourceStructureID":6047,"TargetStructureID":5107,"Label":"6047-5107 via Ribbon Synapse from 112034 -> 65074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112034,"TargetID":65074,"Directional":true}]},{"ID":10610,"SourceStructureID":6047,"TargetStructureID":7073,"Label":"6047-7073 via Ribbon Synapse from 19623 -> 19624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19623,"TargetID":19624,"Directional":true}]},{"ID":10611,"SourceStructureID":6047,"TargetStructureID":9769,"Label":"6047-9769 via Ribbon Synapse from 19680 -> 52611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19680,"TargetID":52611,"Directional":true}]},{"ID":10612,"SourceStructureID":6047,"TargetStructureID":35343,"Label":"6047-35343 via Cistern Pre from 129332 -> 129333","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":129332,"TargetID":129333,"Directional":true}]},{"ID":10613,"SourceStructureID":6047,"TargetStructureID":47104,"Label":"6047-47104 via Ribbon Synapse from 30639 -> 47185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30639,"TargetID":47185,"Directional":true}]},{"ID":10614,"SourceStructureID":6047,"TargetStructureID":68539,"Label":"6047-68539 via Ribbon Synapse from 19655 -> 73768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19655,"TargetID":73768,"Directional":true}]},{"ID":10615,"SourceStructureID":6047,"TargetStructureID":74231,"Label":"6047-74231 via Ribbon Synapse from 112493 -> 112504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112493,"TargetID":112504,"Directional":true}]},{"ID":10616,"SourceStructureID":6047,"TargetStructureID":75133,"Label":"6047-75133 via Ribbon Synapse from 19719 -> 112377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19719,"TargetID":112377,"Directional":true}]},{"ID":10617,"SourceStructureID":6047,"TargetStructureID":111904,"Label":"6047-111904 via Cistern Pre from 19615 -> 111906, 19617 -> 111905","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":19615,"TargetID":111906,"Directional":true},{"SourceID":19617,"TargetID":111905,"Directional":true}]},{"ID":10618,"SourceStructureID":6047,"TargetStructureID":111908,"Label":"6047-111908 via Cistern Pre from 19614 -> 111910","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":19614,"TargetID":111910,"Directional":true}]},{"ID":10619,"SourceStructureID":6047,"TargetStructureID":111914,"Label":"6047-111914 via Ribbon Synapse from 19618 -> 111915","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19618,"TargetID":111915,"Directional":true}]},{"ID":10620,"SourceStructureID":6047,"TargetStructureID":111923,"Label":"6047-111923 via BC Conventional Synapse from 111922 -> 111925","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111922,"TargetID":111925,"Directional":true}]},{"ID":10621,"SourceStructureID":6047,"TargetStructureID":111923,"Label":"6047-111923 via Ribbon Synapse from 19619 -> 111924","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19619,"TargetID":111924,"Directional":true}]},{"ID":10622,"SourceStructureID":6047,"TargetStructureID":111929,"Label":"6047-111929 via Ribbon Synapse from 19693 -> 111930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19693,"TargetID":111930,"Directional":true}]},{"ID":10623,"SourceStructureID":6047,"TargetStructureID":111934,"Label":"6047-111934 via BC Conventional Synapse from 111933 -> 111935","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111933,"TargetID":111935,"Directional":true}]},{"ID":10624,"SourceStructureID":6047,"TargetStructureID":112020,"Label":"6047-112020 via BC Conventional Synapse from 112022 -> 112023","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112022,"TargetID":112023,"Directional":true}]},{"ID":10625,"SourceStructureID":6047,"TargetStructureID":112020,"Label":"6047-112020 via Ribbon Synapse from 19694 -> 112021","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19694,"TargetID":112021,"Directional":true}]},{"ID":10626,"SourceStructureID":6047,"TargetStructureID":112024,"Label":"6047-112024 via Ribbon Synapse from 19695 -> 112025","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19695,"TargetID":112025,"Directional":true}]},{"ID":10627,"SourceStructureID":6047,"TargetStructureID":112036,"Label":"6047-112036 via Ribbon Synapse from 112035 -> 112038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112035,"TargetID":112038,"Directional":true}]},{"ID":10628,"SourceStructureID":6047,"TargetStructureID":112049,"Label":"6047-112049 via Ribbon Synapse from 112041 -> 112050","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112041,"TargetID":112050,"Directional":true}]},{"ID":10629,"SourceStructureID":6047,"TargetStructureID":112051,"Label":"6047-112051 via Ribbon Synapse from 112041 -> 112052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112041,"TargetID":112052,"Directional":true}]},{"ID":10630,"SourceStructureID":6047,"TargetStructureID":112075,"Label":"6047-112075 via Ribbon Synapse from 19697 -> 112076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19697,"TargetID":112076,"Directional":true}]},{"ID":10631,"SourceStructureID":6047,"TargetStructureID":112091,"Label":"6047-112091 via Ribbon Synapse from 19706 -> 112092","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19706,"TargetID":112092,"Directional":true}]},{"ID":10632,"SourceStructureID":6047,"TargetStructureID":112115,"Label":"6047-112115 via Ribbon Synapse from 19676 -> 112117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19676,"TargetID":112117,"Directional":true}]},{"ID":10633,"SourceStructureID":6047,"TargetStructureID":112120,"Label":"6047-112120 via Ribbon Synapse from 19676 -> 112121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19676,"TargetID":112121,"Directional":true}]},{"ID":10634,"SourceStructureID":6047,"TargetStructureID":112122,"Label":"6047-112122 via Ribbon Synapse from 19676 -> 112123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19676,"TargetID":112123,"Directional":true}]},{"ID":10635,"SourceStructureID":6047,"TargetStructureID":112142,"Label":"6047-112142 via Ribbon Synapse from 112141 -> 112143","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112141,"TargetID":112143,"Directional":true}]},{"ID":10636,"SourceStructureID":6047,"TargetStructureID":112144,"Label":"6047-112144 via Ribbon Synapse from 112146 -> 112145","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112146,"TargetID":112145,"Directional":true}]},{"ID":10637,"SourceStructureID":6047,"TargetStructureID":112147,"Label":"6047-112147 via Ribbon Synapse from 112153 -> 112148","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112153,"TargetID":112148,"Directional":true}]},{"ID":10638,"SourceStructureID":6047,"TargetStructureID":112149,"Label":"6047-112149 via Ribbon Synapse from 112153 -> 112150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112153,"TargetID":112150,"Directional":true}]},{"ID":10639,"SourceStructureID":6047,"TargetStructureID":112151,"Label":"6047-112151 via Ribbon Synapse from 112153 -> 112152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112153,"TargetID":112152,"Directional":true}]},{"ID":10640,"SourceStructureID":6047,"TargetStructureID":112157,"Label":"6047-112157 via BC Conventional Synapse from 148296 -> 112158","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":148296,"TargetID":112158,"Directional":true}]},{"ID":10641,"SourceStructureID":6047,"TargetStructureID":112170,"Label":"6047-112170 via Ribbon Synapse from 19684 -> 112171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19684,"TargetID":112171,"Directional":true}]},{"ID":10642,"SourceStructureID":6047,"TargetStructureID":112172,"Label":"6047-112172 via Ribbon Synapse from 19684 -> 112175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19684,"TargetID":112175,"Directional":true}]},{"ID":10643,"SourceStructureID":6047,"TargetStructureID":112176,"Label":"6047-112176 via Ribbon Synapse from 19684 -> 112177","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19684,"TargetID":112177,"Directional":true}]},{"ID":10644,"SourceStructureID":6047,"TargetStructureID":112188,"Label":"6047-112188 via Ribbon Synapse from 19669 -> 112195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19669,"TargetID":112195,"Directional":true}]},{"ID":10645,"SourceStructureID":6047,"TargetStructureID":112192,"Label":"6047-112192 via Ribbon Synapse from 19669 -> 112193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19669,"TargetID":112193,"Directional":true}]},{"ID":10646,"SourceStructureID":6047,"TargetStructureID":112197,"Label":"6047-112197 via BC Conventional Synapse from 112196 -> 112198","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112196,"TargetID":112198,"Directional":true}]},{"ID":10647,"SourceStructureID":6047,"TargetStructureID":112203,"Label":"6047-112203 via BC Conventional Synapse from 112202 -> 112204","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112202,"TargetID":112204,"Directional":true}]},{"ID":10648,"SourceStructureID":6047,"TargetStructureID":112209,"Label":"6047-112209 via Ribbon Synapse from 19711 -> 112210","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19711,"TargetID":112210,"Directional":true}]},{"ID":10649,"SourceStructureID":6047,"TargetStructureID":112221,"Label":"6047-112221 via BC Conventional Synapse from 112224 -> 112225","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112224,"TargetID":112225,"Directional":true}]},{"ID":10650,"SourceStructureID":6047,"TargetStructureID":112232,"Label":"6047-112232 via Ribbon Synapse from 61335 -> 112235","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61335,"TargetID":112235,"Directional":true}]},{"ID":10651,"SourceStructureID":6047,"TargetStructureID":112246,"Label":"6047-112246 via Ribbon Synapse from 112243 -> 112249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112243,"TargetID":112249,"Directional":true}]},{"ID":10652,"SourceStructureID":6047,"TargetStructureID":112253,"Label":"6047-112253 via Ribbon Synapse from 61332 -> 112266","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61332,"TargetID":112266,"Directional":true}]},{"ID":10653,"SourceStructureID":6047,"TargetStructureID":112257,"Label":"6047-112257 via BC Conventional Synapse from 112259 -> 112258","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112259,"TargetID":112258,"Directional":true}]},{"ID":10654,"SourceStructureID":6047,"TargetStructureID":112260,"Label":"6047-112260 via BC Conventional Synapse from 112263 -> 112261","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112263,"TargetID":112261,"Directional":true}]},{"ID":10655,"SourceStructureID":6047,"TargetStructureID":112264,"Label":"6047-112264 via Ribbon Synapse from 112248 -> 112269","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112248,"TargetID":112269,"Directional":true}]},{"ID":10656,"SourceStructureID":6047,"TargetStructureID":112267,"Label":"6047-112267 via Ribbon Synapse from 61332 -> 112268","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61332,"TargetID":112268,"Directional":true}]},{"ID":10657,"SourceStructureID":6047,"TargetStructureID":112282,"Label":"6047-112282 via Ribbon Synapse from 61332 -> 112335","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61332,"TargetID":112335,"Directional":true}]},{"ID":10658,"SourceStructureID":6047,"TargetStructureID":112284,"Label":"6047-112284 via Ribbon Synapse from 112331 -> 126798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112331,"TargetID":126798,"Directional":true}]},{"ID":10659,"SourceStructureID":6047,"TargetStructureID":112292,"Label":"6047-112292 via BC Conventional Synapse from 112295 -> 112294","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112295,"TargetID":112294,"Directional":true}]},{"ID":10660,"SourceStructureID":6047,"TargetStructureID":112319,"Label":"6047-112319 via Ribbon Synapse from 61322 -> 112339","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61322,"TargetID":112339,"Directional":true}]},{"ID":10661,"SourceStructureID":6047,"TargetStructureID":112322,"Label":"6047-112322 via Ribbon Synapse from 112327 -> 112330","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112327,"TargetID":112330,"Directional":true}]},{"ID":10662,"SourceStructureID":6047,"TargetStructureID":112328,"Label":"6047-112328 via Ribbon Synapse from 112327 -> 112329","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112327,"TargetID":112329,"Directional":true}]},{"ID":10663,"SourceStructureID":6047,"TargetStructureID":112333,"Label":"6047-112333 via Ribbon Synapse from 112331 -> 112334","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112331,"TargetID":112334,"Directional":true}]},{"ID":10664,"SourceStructureID":6047,"TargetStructureID":112340,"Label":"6047-112340 via Ribbon Synapse from 61322 -> 112341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61322,"TargetID":112341,"Directional":true}]},{"ID":10665,"SourceStructureID":6047,"TargetStructureID":112342,"Label":"6047-112342 via Ribbon Synapse from 19713 -> 112343","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19713,"TargetID":112343,"Directional":true}]},{"ID":10666,"SourceStructureID":6047,"TargetStructureID":112360,"Label":"6047-112360 via Ribbon Synapse from 19715 -> 112361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19715,"TargetID":112361,"Directional":true}]},{"ID":10667,"SourceStructureID":6047,"TargetStructureID":112362,"Label":"6047-112362 via Ribbon Synapse from 19715 -> 112363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19715,"TargetID":112363,"Directional":true}]},{"ID":10668,"SourceStructureID":6047,"TargetStructureID":112364,"Label":"6047-112364 via BC Conventional Synapse from 112367 -> 112369","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112367,"TargetID":112369,"Directional":true}]},{"ID":10669,"SourceStructureID":6047,"TargetStructureID":112370,"Label":"6047-112370 via Ribbon Synapse from 19719 -> 112371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19719,"TargetID":112371,"Directional":true}]},{"ID":10670,"SourceStructureID":6047,"TargetStructureID":112389,"Label":"6047-112389 via BC Conventional Synapse from 112388 -> 112391","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112388,"TargetID":112391,"Directional":true}]},{"ID":10671,"SourceStructureID":6047,"TargetStructureID":112392,"Label":"6047-112392 via Ribbon Synapse from 19728 -> 112394","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19728,"TargetID":112394,"Directional":true}]},{"ID":10672,"SourceStructureID":6047,"TargetStructureID":112395,"Label":"6047-112395 via Ribbon Synapse from 19728 -> 112397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19728,"TargetID":112397,"Directional":true}]},{"ID":10673,"SourceStructureID":6047,"TargetStructureID":112409,"Label":"6047-112409 via Ribbon Synapse from 19737 -> 112410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19737,"TargetID":112410,"Directional":true}]},{"ID":10674,"SourceStructureID":6047,"TargetStructureID":112411,"Label":"6047-112411 via Ribbon Synapse from 19737 -> 112412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19737,"TargetID":112412,"Directional":true}]},{"ID":10675,"SourceStructureID":6047,"TargetStructureID":112419,"Label":"6047-112419 via BC Conventional Synapse from 112421 -> 112422","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112421,"TargetID":112422,"Directional":true}]},{"ID":10676,"SourceStructureID":6047,"TargetStructureID":112436,"Label":"6047-112436 via BC Conventional Synapse from 112536 -> 112535","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112536,"TargetID":112535,"Directional":true}]},{"ID":10677,"SourceStructureID":6047,"TargetStructureID":112500,"Label":"6047-112500 via BC Conventional Synapse from 112499 -> 112503, 112511 -> 112501","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112499,"TargetID":112503,"Directional":true},{"SourceID":112511,"TargetID":112501,"Directional":true}]},{"ID":10678,"SourceStructureID":6047,"TargetStructureID":112505,"Label":"6047-112505 via Ribbon Synapse from 112493 -> 112506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112493,"TargetID":112506,"Directional":true}]},{"ID":10679,"SourceStructureID":6047,"TargetStructureID":112507,"Label":"6047-112507 via Ribbon Synapse from 112493 -> 112508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112493,"TargetID":112508,"Directional":true}]},{"ID":10680,"SourceStructureID":6047,"TargetStructureID":112518,"Label":"6047-112518 via Ribbon Synapse from 112513 -> 112522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112513,"TargetID":112522,"Directional":true}]},{"ID":10681,"SourceStructureID":6047,"TargetStructureID":112519,"Label":"6047-112519 via Ribbon Synapse from 112513 -> 112520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112513,"TargetID":112520,"Directional":true}]},{"ID":10682,"SourceStructureID":6047,"TargetStructureID":112523,"Label":"6047-112523 via Ribbon Synapse from 112512 -> 112524","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112512,"TargetID":112524,"Directional":true}]},{"ID":10683,"SourceStructureID":6047,"TargetStructureID":112525,"Label":"6047-112525 via Ribbon Synapse from 112512 -> 112528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112512,"TargetID":112528,"Directional":true}]},{"ID":10684,"SourceStructureID":6047,"TargetStructureID":112549,"Label":"6047-112549 via Ribbon Synapse from 19660 -> 112554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19660,"TargetID":112554,"Directional":true}]},{"ID":10685,"SourceStructureID":6047,"TargetStructureID":112557,"Label":"6047-112557 via Ribbon Synapse from 19659 -> 112558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19659,"TargetID":112558,"Directional":true}]},{"ID":10686,"SourceStructureID":6047,"TargetStructureID":112582,"Label":"6047-112582 via Ribbon Synapse from 19656 -> 112583","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19656,"TargetID":112583,"Directional":true}]},{"ID":10687,"SourceStructureID":6047,"TargetStructureID":112753,"Label":"6047-112753 via Ribbon Synapse from 61339 -> 112755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61339,"TargetID":112755,"Directional":true}]},{"ID":10688,"SourceStructureID":6047,"TargetStructureID":112756,"Label":"6047-112756 via Ribbon Synapse from 61339 -> 112757","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61339,"TargetID":112757,"Directional":true}]},{"ID":10689,"SourceStructureID":6047,"TargetStructureID":112764,"Label":"6047-112764 via BC Conventional Synapse from 112763 -> 112765","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112763,"TargetID":112765,"Directional":true}]},{"ID":10690,"SourceStructureID":6047,"TargetStructureID":112769,"Label":"6047-112769 via Ribbon Synapse from 61341 -> 112770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61341,"TargetID":112770,"Directional":true}]},{"ID":10691,"SourceStructureID":6047,"TargetStructureID":112782,"Label":"6047-112782 via BC Conventional Synapse from 112781 -> 112783","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112781,"TargetID":112783,"Directional":true}]},{"ID":10692,"SourceStructureID":6047,"TargetStructureID":112805,"Label":"6047-112805 via Ribbon Synapse from 19647 -> 112807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19647,"TargetID":112807,"Directional":true}]},{"ID":10693,"SourceStructureID":6047,"TargetStructureID":112824,"Label":"6047-112824 via Ribbon Synapse from 19643 -> 112826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19643,"TargetID":112826,"Directional":true}]},{"ID":10694,"SourceStructureID":6047,"TargetStructureID":112835,"Label":"6047-112835 via BC Conventional Synapse from 112834 -> 112840","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112834,"TargetID":112840,"Directional":true}]},{"ID":10695,"SourceStructureID":6047,"TargetStructureID":112841,"Label":"6047-112841 via Ribbon Synapse from 19643 -> 112842","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19643,"TargetID":112842,"Directional":true}]},{"ID":10696,"SourceStructureID":6047,"TargetStructureID":113122,"Label":"6047-113122 via Ribbon Synapse from 19638 -> 113124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19638,"TargetID":113124,"Directional":true}]},{"ID":10697,"SourceStructureID":6047,"TargetStructureID":113125,"Label":"6047-113125 via Ribbon Synapse from 19638 -> 113126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19638,"TargetID":113126,"Directional":true}]},{"ID":10698,"SourceStructureID":6047,"TargetStructureID":113127,"Label":"6047-113127 via Ribbon Synapse from 19641 -> 113128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19641,"TargetID":113128,"Directional":true}]},{"ID":10699,"SourceStructureID":6047,"TargetStructureID":113149,"Label":"6047-113149 via Ribbon Synapse from 19637 -> 113150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19637,"TargetID":113150,"Directional":true}]},{"ID":10700,"SourceStructureID":6047,"TargetStructureID":113153,"Label":"6047-113153 via BC Conventional Synapse from 113155 -> 113154","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":113155,"TargetID":113154,"Directional":true}]},{"ID":10701,"SourceStructureID":6047,"TargetStructureID":113162,"Label":"6047-113162 via Ribbon Synapse from 19628 -> 113163","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19628,"TargetID":113163,"Directional":true}]},{"ID":10702,"SourceStructureID":6047,"TargetStructureID":113176,"Label":"6047-113176 via BC Conventional Synapse from 113177 -> 113178","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":113177,"TargetID":113178,"Directional":true}]},{"ID":10703,"SourceStructureID":6047,"TargetStructureID":113179,"Label":"6047-113179 via Ribbon Synapse from 19634 -> 113183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19634,"TargetID":113183,"Directional":true}]},{"ID":10704,"SourceStructureID":6047,"TargetStructureID":113184,"Label":"6047-113184 via Ribbon Synapse from 19634 -> 113185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19634,"TargetID":113185,"Directional":true}]},{"ID":10705,"SourceStructureID":6047,"TargetStructureID":113230,"Label":"6047-113230 via Ribbon Synapse from 19691 -> 113231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19691,"TargetID":113231,"Directional":true}]},{"ID":10706,"SourceStructureID":6047,"TargetStructureID":113693,"Label":"6047-113693 via Ribbon Synapse from 113696 -> 113695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113696,"TargetID":113695,"Directional":true}]},{"ID":10707,"SourceStructureID":6048,"TargetStructureID":597,"Label":"6048-597 via Ribbon Synapse from 60481 -> 60475","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60481,"TargetID":60475,"Directional":true}]},{"ID":10708,"SourceStructureID":6048,"TargetStructureID":7147,"Label":"6048-7147 via Ribbon Synapse from 60476 -> 60477","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60476,"TargetID":60477,"Directional":true}]},{"ID":10709,"SourceStructureID":6050,"TargetStructureID":5442,"Label":"6050-5442 via Ribbon Synapse from 51648 -> 56662","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51648,"TargetID":56662,"Directional":true}]},{"ID":10710,"SourceStructureID":6050,"TargetStructureID":6300,"Label":"6050-6300 via Ribbon Synapse from 35946 -> 35947, 51653 -> 56097, 69795 -> 69799, 113884 -> 127104, 113890 -> 127161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35946,"TargetID":35947,"Directional":true},{"SourceID":51653,"TargetID":56097,"Directional":true},{"SourceID":69795,"TargetID":69799,"Directional":true},{"SourceID":113884,"TargetID":127104,"Directional":true},{"SourceID":113890,"TargetID":127161,"Directional":true}]},{"ID":10711,"SourceStructureID":6050,"TargetStructureID":9769,"Label":"6050-9769 via Ribbon Synapse from 35944 -> 23938, 51887 -> 127034, 126968 -> 126969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35944,"TargetID":23938,"Directional":true},{"SourceID":51887,"TargetID":127034,"Directional":true},{"SourceID":126968,"TargetID":126969,"Directional":true}]},{"ID":10712,"SourceStructureID":6050,"TargetStructureID":15796,"Label":"6050-15796 via Ribbon Synapse from 19306 -> 19282","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19306,"TargetID":19282,"Directional":true}]},{"ID":10713,"SourceStructureID":6050,"TargetStructureID":35894,"Label":"6050-35894 via Ribbon Synapse from 119685 -> 119686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119685,"TargetID":119686,"Directional":true}]},{"ID":10714,"SourceStructureID":6050,"TargetStructureID":45536,"Label":"6050-45536 via Ribbon Synapse from 45535 -> 45539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45535,"TargetID":45539,"Directional":true}]},{"ID":10715,"SourceStructureID":6050,"TargetStructureID":45551,"Label":"6050-45551 via Ribbon Synapse from 45549 -> 45552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45549,"TargetID":45552,"Directional":true}]},{"ID":10716,"SourceStructureID":6050,"TargetStructureID":45555,"Label":"6050-45555 via Ribbon Synapse from 54399 -> 127068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54399,"TargetID":127068,"Directional":true}]},{"ID":10717,"SourceStructureID":6050,"TargetStructureID":57064,"Label":"6050-57064 via Ribbon Synapse from 51879 -> 128926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51879,"TargetID":128926,"Directional":true}]},{"ID":10718,"SourceStructureID":6050,"TargetStructureID":62396,"Label":"6050-62396 via Ribbon Synapse from 36012 -> 62398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36012,"TargetID":62398,"Directional":true}]},{"ID":10719,"SourceStructureID":6050,"TargetStructureID":66366,"Label":"6050-66366 via Ribbon Synapse from 66365 -> 66367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66365,"TargetID":66367,"Directional":true}]},{"ID":10720,"SourceStructureID":6050,"TargetStructureID":66368,"Label":"6050-66368 via Ribbon Synapse from 66153 -> 66369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66153,"TargetID":66369,"Directional":true}]},{"ID":10721,"SourceStructureID":6050,"TargetStructureID":67291,"Label":"6050-67291 via Ribbon Synapse from 68369 -> 68368, 69794 -> 69792","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68369,"TargetID":68368,"Directional":true},{"SourceID":69794,"TargetID":69792,"Directional":true}]},{"ID":10722,"SourceStructureID":6050,"TargetStructureID":74894,"Label":"6050-74894 via Ribbon Synapse from 19299 -> 74895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19299,"TargetID":74895,"Directional":true}]},{"ID":10723,"SourceStructureID":6050,"TargetStructureID":82091,"Label":"6050-82091 via Ribbon Synapse from 126994 -> 126998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126994,"TargetID":126998,"Directional":true}]},{"ID":10724,"SourceStructureID":6050,"TargetStructureID":86254,"Label":"6050-86254 via Ribbon Synapse from 127053 -> 127054","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127053,"TargetID":127054,"Directional":true}]},{"ID":10725,"SourceStructureID":6050,"TargetStructureID":91867,"Label":"6050-91867 via Ribbon Synapse from 51653 -> 128990, 51666 -> 127229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51653,"TargetID":128990,"Directional":true},{"SourceID":51666,"TargetID":127229,"Directional":true}]},{"ID":10726,"SourceStructureID":6050,"TargetStructureID":105188,"Label":"6050-105188 via Ribbon Synapse from 114349 -> 114351","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114349,"TargetID":114351,"Directional":true}]},{"ID":10727,"SourceStructureID":6050,"TargetStructureID":116279,"Label":"6050-116279 via Ribbon Synapse from 51684 -> 120962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51684,"TargetID":120962,"Directional":true}]},{"ID":10728,"SourceStructureID":6050,"TargetStructureID":120956,"Label":"6050-120956 via Ribbon Synapse from 35955 -> 127248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35955,"TargetID":127248,"Directional":true}]},{"ID":10729,"SourceStructureID":6050,"TargetStructureID":124198,"Label":"6050-124198 via Ribbon Synapse from 113565 -> 124199","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113565,"TargetID":124199,"Directional":true}]},{"ID":10730,"SourceStructureID":6050,"TargetStructureID":128843,"Label":"6050-128843 via Ribbon Synapse from 114253 -> 128844","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114253,"TargetID":128844,"Directional":true}]},{"ID":10731,"SourceStructureID":6115,"TargetStructureID":593,"Label":"6115-593 via Ribbon Synapse from 66337 -> 73127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66337,"TargetID":73127,"Directional":true}]},{"ID":10732,"SourceStructureID":6115,"TargetStructureID":5117,"Label":"6115-5117 via Ribbon Synapse from 66335 -> 66336, 66337 -> 66338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66335,"TargetID":66336,"Directional":true},{"SourceID":66337,"TargetID":66338,"Directional":true}]},{"ID":10733,"SourceStructureID":6115,"TargetStructureID":5118,"Label":"6115-5118 via BC Conventional Synapse from 52189 -> 52187, 73770 -> 73771, 74800 -> 52192","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52189,"TargetID":52187,"Directional":true},{"SourceID":73770,"TargetID":73771,"Directional":true},{"SourceID":74800,"TargetID":52192,"Directional":true}]},{"ID":10734,"SourceStructureID":6115,"TargetStructureID":5118,"Label":"6115-5118 via Unknown from 75598 -> 75599","Type":"Unknown","Directional":true,"Links":[{"SourceID":75598,"TargetID":75599,"Directional":true}]},{"ID":10735,"SourceStructureID":6115,"TargetStructureID":8577,"Label":"6115-8577 via Ribbon Synapse from 16058 -> 16048, 72962 -> 76011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16058,"TargetID":16048,"Directional":true},{"SourceID":72962,"TargetID":76011,"Directional":true}]},{"ID":10736,"SourceStructureID":6115,"TargetStructureID":8579,"Label":"6115-8579 via Ribbon Synapse from 18325 -> 72517, 55845 -> 62740, 55902 -> 62736, 59596 -> 72562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18325,"TargetID":72517,"Directional":true},{"SourceID":55845,"TargetID":62740,"Directional":true},{"SourceID":55902,"TargetID":62736,"Directional":true},{"SourceID":59596,"TargetID":72562,"Directional":true}]},{"ID":10737,"SourceStructureID":6115,"TargetStructureID":8720,"Label":"6115-8720 via Ribbon Synapse from 127792 -> 127793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127792,"TargetID":127793,"Directional":true}]},{"ID":10738,"SourceStructureID":6115,"TargetStructureID":15796,"Label":"6115-15796 via Ribbon Synapse from 72256 -> 147790","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72256,"TargetID":147790,"Directional":true}]},{"ID":10739,"SourceStructureID":6115,"TargetStructureID":16087,"Label":"6115-16087 via BC Conventional Synapse from 134152 -> 134151","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134152,"TargetID":134151,"Directional":true}]},{"ID":10740,"SourceStructureID":6115,"TargetStructureID":16087,"Label":"6115-16087 via Ribbon Synapse from 16058 -> 75658, 32979 -> 16090, 59604 -> 73182, 75449 -> 75452, 77672 -> 77697, 90650 -> 77697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16058,"TargetID":75658,"Directional":true},{"SourceID":32979,"TargetID":16090,"Directional":true},{"SourceID":59604,"TargetID":73182,"Directional":true},{"SourceID":75449,"TargetID":75452,"Directional":true},{"SourceID":77672,"TargetID":77697,"Directional":true},{"SourceID":90650,"TargetID":77697,"Directional":true}]},{"ID":10741,"SourceStructureID":6115,"TargetStructureID":18282,"Label":"6115-18282 via Ribbon Synapse from 18325 -> 18324, 72708 -> 72709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18325,"TargetID":18324,"Directional":true},{"SourceID":72708,"TargetID":72709,"Directional":true}]},{"ID":10742,"SourceStructureID":6115,"TargetStructureID":29702,"Label":"6115-29702 via Ribbon Synapse from 55849 -> 72495, 72272 -> 72274, 73885 -> 75506, 75502 -> 75501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55849,"TargetID":72495,"Directional":true},{"SourceID":72272,"TargetID":72274,"Directional":true},{"SourceID":73885,"TargetID":75506,"Directional":true},{"SourceID":75502,"TargetID":75501,"Directional":true}]},{"ID":10743,"SourceStructureID":6115,"TargetStructureID":32954,"Label":"6115-32954 via Ribbon Synapse from 32958 -> 32955","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32958,"TargetID":32955,"Directional":true}]},{"ID":10744,"SourceStructureID":6115,"TargetStructureID":32970,"Label":"6115-32970 via Ribbon Synapse from 55802 -> 72833, 55855 -> 73189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55802,"TargetID":72833,"Directional":true},{"SourceID":55855,"TargetID":73189,"Directional":true}]},{"ID":10745,"SourceStructureID":6115,"TargetStructureID":32970,"Label":"6115-32970 via Unknown from 72722 -> 72723","Type":"Unknown","Directional":true,"Links":[{"SourceID":72722,"TargetID":72723,"Directional":true}]},{"ID":10746,"SourceStructureID":6115,"TargetStructureID":41608,"Label":"6115-41608 via Ribbon Synapse from 55798 -> 41692, 55799 -> 41691, 55809 -> 72270, 55810 -> 72288, 56310 -> 41752, 72275 -> 72276, 72305 -> 72314, 73360 -> 73361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55798,"TargetID":41692,"Directional":true},{"SourceID":55799,"TargetID":41691,"Directional":true},{"SourceID":55809,"TargetID":72270,"Directional":true},{"SourceID":55810,"TargetID":72288,"Directional":true},{"SourceID":56310,"TargetID":41752,"Directional":true},{"SourceID":72275,"TargetID":72276,"Directional":true},{"SourceID":72305,"TargetID":72314,"Directional":true},{"SourceID":73360,"TargetID":73361,"Directional":true}]},{"ID":10747,"SourceStructureID":6115,"TargetStructureID":58696,"Label":"6115-58696 via Ribbon Synapse from 72653 -> 84770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72653,"TargetID":84770,"Directional":true}]},{"ID":10748,"SourceStructureID":6115,"TargetStructureID":61823,"Label":"6115-61823 via BC Conventional Synapse from 73859 -> 73860, 73889 -> 73890","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73859,"TargetID":73860,"Directional":true},{"SourceID":73889,"TargetID":73890,"Directional":true}]},{"ID":10749,"SourceStructureID":6115,"TargetStructureID":61864,"Label":"6115-61864 via Ribbon Synapse from 66335 -> 73130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66335,"TargetID":73130,"Directional":true}]},{"ID":10750,"SourceStructureID":6115,"TargetStructureID":64362,"Label":"6115-64362 via Ribbon Synapse from 134223 -> 134224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134223,"TargetID":134224,"Directional":true}]},{"ID":10751,"SourceStructureID":6115,"TargetStructureID":66407,"Label":"6115-66407 via Ribbon Synapse from 55799 -> 72795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55799,"TargetID":72795,"Directional":true}]},{"ID":10752,"SourceStructureID":6115,"TargetStructureID":66634,"Label":"6115-66634 via Ribbon Synapse from 55788 -> 71337, 55909 -> 71333, 73386 -> 73387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55788,"TargetID":71337,"Directional":true},{"SourceID":55909,"TargetID":71333,"Directional":true},{"SourceID":73386,"TargetID":73387,"Directional":true}]},{"ID":10753,"SourceStructureID":6115,"TargetStructureID":66696,"Label":"6115-66696 via Ribbon Synapse from 59606 -> 66748, 66751 -> 66750, 75652 -> 75655","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59606,"TargetID":66748,"Directional":true},{"SourceID":66751,"TargetID":66750,"Directional":true},{"SourceID":75652,"TargetID":75655,"Directional":true}]},{"ID":10754,"SourceStructureID":6115,"TargetStructureID":66768,"Label":"6115-66768 via Ribbon Synapse from 72653 -> 72655","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72653,"TargetID":72655,"Directional":true}]},{"ID":10755,"SourceStructureID":6115,"TargetStructureID":68153,"Label":"6115-68153 via Ribbon Synapse from 68187 -> 68186, 73493 -> 73496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68187,"TargetID":68186,"Directional":true},{"SourceID":73493,"TargetID":73496,"Directional":true}]},{"ID":10756,"SourceStructureID":6115,"TargetStructureID":68548,"Label":"6115-68548 via BC Conventional Synapse from 73027 -> 75737","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73027,"TargetID":75737,"Directional":true}]},{"ID":10757,"SourceStructureID":6115,"TargetStructureID":69385,"Label":"6115-69385 via Ribbon Synapse from 55783 -> 72170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55783,"TargetID":72170,"Directional":true}]},{"ID":10758,"SourceStructureID":6115,"TargetStructureID":69464,"Label":"6115-69464 via Ribbon Synapse from 55845 -> 69471","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55845,"TargetID":69471,"Directional":true}]},{"ID":10759,"SourceStructureID":6115,"TargetStructureID":69472,"Label":"6115-69472 via Ribbon Synapse from 59610 -> 69474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59610,"TargetID":69474,"Directional":true}]},{"ID":10760,"SourceStructureID":6115,"TargetStructureID":69493,"Label":"6115-69493 via Ribbon Synapse from 16049 -> 69495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16049,"TargetID":69495,"Directional":true}]},{"ID":10761,"SourceStructureID":6115,"TargetStructureID":69496,"Label":"6115-69496 via Ribbon Synapse from 16052 -> 69499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16052,"TargetID":69499,"Directional":true}]},{"ID":10762,"SourceStructureID":6115,"TargetStructureID":69500,"Label":"6115-69500 via Ribbon Synapse from 55854 -> 69501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55854,"TargetID":69501,"Directional":true}]},{"ID":10763,"SourceStructureID":6115,"TargetStructureID":70308,"Label":"6115-70308 via Ribbon Synapse from 70311 -> 70312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70311,"TargetID":70312,"Directional":true}]},{"ID":10764,"SourceStructureID":6115,"TargetStructureID":71351,"Label":"6115-71351 via BC Conventional Synapse from 71899 -> 71900","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71899,"TargetID":71900,"Directional":true}]},{"ID":10765,"SourceStructureID":6115,"TargetStructureID":71351,"Label":"6115-71351 via Ribbon Synapse from 55754 -> 71673, 55789 -> 71672, 55905 -> 71352, 70410 -> 71898, 135165 -> 135166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55754,"TargetID":71673,"Directional":true},{"SourceID":55789,"TargetID":71672,"Directional":true},{"SourceID":55905,"TargetID":71352,"Directional":true},{"SourceID":70410,"TargetID":71898,"Directional":true},{"SourceID":135165,"TargetID":135166,"Directional":true}]},{"ID":10766,"SourceStructureID":6115,"TargetStructureID":71517,"Label":"6115-71517 via Ribbon Synapse from 55785 -> 71509, 55791 -> 71514, 75002 -> 75003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55785,"TargetID":71509,"Directional":true},{"SourceID":55791,"TargetID":71514,"Directional":true},{"SourceID":75002,"TargetID":75003,"Directional":true}]},{"ID":10767,"SourceStructureID":6115,"TargetStructureID":72003,"Label":"6115-72003 via Ribbon Synapse from 55843 -> 75092","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55843,"TargetID":75092,"Directional":true}]},{"ID":10768,"SourceStructureID":6115,"TargetStructureID":72074,"Label":"6115-72074 via Ribbon Synapse from 37625 -> 72075","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37625,"TargetID":72075,"Directional":true}]},{"ID":10769,"SourceStructureID":6115,"TargetStructureID":72076,"Label":"6115-72076 via BC Conventional Synapse from 72148 -> 72147","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72148,"TargetID":72147,"Directional":true}]},{"ID":10770,"SourceStructureID":6115,"TargetStructureID":72079,"Label":"6115-72079 via Ribbon Synapse from 37631 -> 72080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37631,"TargetID":72080,"Directional":true}]},{"ID":10771,"SourceStructureID":6115,"TargetStructureID":72091,"Label":"6115-72091 via Ribbon Synapse from 55859 -> 72095","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55859,"TargetID":72095,"Directional":true}]},{"ID":10772,"SourceStructureID":6115,"TargetStructureID":72092,"Label":"6115-72092 via Ribbon Synapse from 55859 -> 72145, 72090 -> 72145","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55859,"TargetID":72145,"Directional":true},{"SourceID":72090,"TargetID":72145,"Directional":true}]},{"ID":10773,"SourceStructureID":6115,"TargetStructureID":72093,"Label":"6115-72093 via Ribbon Synapse from 55858 -> 72094, 72158 -> 72094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55858,"TargetID":72094,"Directional":true},{"SourceID":72158,"TargetID":72094,"Directional":true}]},{"ID":10774,"SourceStructureID":6115,"TargetStructureID":72142,"Label":"6115-72142 via Ribbon Synapse from 37635 -> 72143","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37635,"TargetID":72143,"Directional":true}]},{"ID":10775,"SourceStructureID":6115,"TargetStructureID":72152,"Label":"6115-72152 via Ribbon Synapse from 37631 -> 72153","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37631,"TargetID":72153,"Directional":true}]},{"ID":10776,"SourceStructureID":6115,"TargetStructureID":72159,"Label":"6115-72159 via Ribbon Synapse from 37635 -> 72160","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37635,"TargetID":72160,"Directional":true}]},{"ID":10777,"SourceStructureID":6115,"TargetStructureID":72162,"Label":"6115-72162 via Unknown from 72236 -> 72235","Type":"Unknown","Directional":true,"Links":[{"SourceID":72236,"TargetID":72235,"Directional":true}]},{"ID":10778,"SourceStructureID":6115,"TargetStructureID":72166,"Label":"6115-72166 via Ribbon Synapse from 134156 -> 134157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134156,"TargetID":134157,"Directional":true}]},{"ID":10779,"SourceStructureID":6115,"TargetStructureID":72168,"Label":"6115-72168 via BC Conventional Synapse from 72241 -> 72239","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72241,"TargetID":72239,"Directional":true}]},{"ID":10780,"SourceStructureID":6115,"TargetStructureID":72173,"Label":"6115-72173 via Ribbon Synapse from 72244 -> 82709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72244,"TargetID":82709,"Directional":true}]},{"ID":10781,"SourceStructureID":6115,"TargetStructureID":72176,"Label":"6115-72176 via Ribbon Synapse from 72244 -> 72249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72244,"TargetID":72249,"Directional":true}]},{"ID":10782,"SourceStructureID":6115,"TargetStructureID":72186,"Label":"6115-72186 via Ribbon Synapse from 20424 -> 72187, 72196 -> 72194","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20424,"TargetID":72187,"Directional":true},{"SourceID":72196,"TargetID":72194,"Directional":true}]},{"ID":10783,"SourceStructureID":6115,"TargetStructureID":72218,"Label":"6115-72218 via Ribbon Synapse from 55807 -> 72232, 80749 -> 80750","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55807,"TargetID":72232,"Directional":true},{"SourceID":80749,"TargetID":80750,"Directional":true}]},{"ID":10784,"SourceStructureID":6115,"TargetStructureID":72233,"Label":"6115-72233 via Ribbon Synapse from 55807 -> 72234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55807,"TargetID":72234,"Directional":true}]},{"ID":10785,"SourceStructureID":6115,"TargetStructureID":72259,"Label":"6115-72259 via BC Conventional Synapse from 72263 -> 72264","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72263,"TargetID":72264,"Directional":true}]},{"ID":10786,"SourceStructureID":6115,"TargetStructureID":72285,"Label":"6115-72285 via Ribbon Synapse from 72284 -> 72286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72284,"TargetID":72286,"Directional":true}]},{"ID":10787,"SourceStructureID":6115,"TargetStructureID":72287,"Label":"6115-72287 via Ribbon Synapse from 55810 -> 72289, 134160 -> 134161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55810,"TargetID":72289,"Directional":true},{"SourceID":134160,"TargetID":134161,"Directional":true}]},{"ID":10788,"SourceStructureID":6115,"TargetStructureID":72296,"Label":"6115-72296 via BC Conventional Synapse from 72295 -> 72297","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72295,"TargetID":72297,"Directional":true}]},{"ID":10789,"SourceStructureID":6115,"TargetStructureID":72309,"Label":"6115-72309 via Ribbon Synapse from 72305 -> 81347","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72305,"TargetID":81347,"Directional":true}]},{"ID":10790,"SourceStructureID":6115,"TargetStructureID":72320,"Label":"6115-72320 via BC Conventional Synapse from 134166 -> 134165","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134166,"TargetID":134165,"Directional":true}]},{"ID":10791,"SourceStructureID":6115,"TargetStructureID":72329,"Label":"6115-72329 via Ribbon Synapse from 55812 -> 72330","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55812,"TargetID":72330,"Directional":true}]},{"ID":10792,"SourceStructureID":6115,"TargetStructureID":72331,"Label":"6115-72331 via Ribbon Synapse from 55812 -> 72332","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55812,"TargetID":72332,"Directional":true}]},{"ID":10793,"SourceStructureID":6115,"TargetStructureID":72401,"Label":"6115-72401 via Ribbon Synapse from 55854 -> 72415","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55854,"TargetID":72415,"Directional":true}]},{"ID":10794,"SourceStructureID":6115,"TargetStructureID":72449,"Label":"6115-72449 via BC Conventional Synapse from 72448 -> 72450","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72448,"TargetID":72450,"Directional":true}]},{"ID":10795,"SourceStructureID":6115,"TargetStructureID":72458,"Label":"6115-72458 via Ribbon Synapse from 55855 -> 72459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55855,"TargetID":72459,"Directional":true}]},{"ID":10796,"SourceStructureID":6115,"TargetStructureID":72460,"Label":"6115-72460 via Ribbon Synapse from 72462 -> 73188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72462,"TargetID":73188,"Directional":true}]},{"ID":10797,"SourceStructureID":6115,"TargetStructureID":72492,"Label":"6115-72492 via Ribbon Synapse from 55849 -> 72493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55849,"TargetID":72493,"Directional":true}]},{"ID":10798,"SourceStructureID":6115,"TargetStructureID":72515,"Label":"6115-72515 via BC Conventional Synapse from 72514 -> 72516","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72514,"TargetID":72516,"Directional":true}]},{"ID":10799,"SourceStructureID":6115,"TargetStructureID":72526,"Label":"6115-72526 via Ribbon Synapse from 72525 -> 72531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72525,"TargetID":72531,"Directional":true}]},{"ID":10800,"SourceStructureID":6115,"TargetStructureID":72529,"Label":"6115-72529 via Ribbon Synapse from 72525 -> 72530","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72525,"TargetID":72530,"Directional":true}]},{"ID":10801,"SourceStructureID":6115,"TargetStructureID":72545,"Label":"6115-72545 via Ribbon Synapse from 59597 -> 72546","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59597,"TargetID":72546,"Directional":true}]},{"ID":10802,"SourceStructureID":6115,"TargetStructureID":72559,"Label":"6115-72559 via Ribbon Synapse from 59596 -> 72561","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59596,"TargetID":72561,"Directional":true}]},{"ID":10803,"SourceStructureID":6115,"TargetStructureID":72566,"Label":"6115-72566 via BC Conventional Synapse from 72568 -> 72567","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72568,"TargetID":72567,"Directional":true}]},{"ID":10804,"SourceStructureID":6115,"TargetStructureID":72589,"Label":"6115-72589 via BC Conventional Synapse from 72590 -> 72591","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72590,"TargetID":72591,"Directional":true}]},{"ID":10805,"SourceStructureID":6115,"TargetStructureID":72594,"Label":"6115-72594 via Ribbon Synapse from 55848 -> 72595","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55848,"TargetID":72595,"Directional":true}]},{"ID":10806,"SourceStructureID":6115,"TargetStructureID":72604,"Label":"6115-72604 via BC Conventional Synapse from 72632 -> 82408, 72671 -> 72672, 75661 -> 75662","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72632,"TargetID":82408,"Directional":true},{"SourceID":72671,"TargetID":72672,"Directional":true},{"SourceID":75661,"TargetID":75662,"Directional":true}]},{"ID":10807,"SourceStructureID":6115,"TargetStructureID":72606,"Label":"6115-72606 via BC Conventional Synapse from 72632 -> 82409","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72632,"TargetID":82409,"Directional":true}]},{"ID":10808,"SourceStructureID":6115,"TargetStructureID":72606,"Label":"6115-72606 via Ribbon Synapse from 82423 -> 82409","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82423,"TargetID":82409,"Directional":true}]},{"ID":10809,"SourceStructureID":6115,"TargetStructureID":72612,"Label":"6115-72612 via BC Conventional Synapse from 73261 -> 73260","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73261,"TargetID":73260,"Directional":true}]},{"ID":10810,"SourceStructureID":6115,"TargetStructureID":72638,"Label":"6115-72638 via Ribbon Synapse from 59606 -> 72639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59606,"TargetID":72639,"Directional":true}]},{"ID":10811,"SourceStructureID":6115,"TargetStructureID":72643,"Label":"6115-72643 via Ribbon Synapse from 59604 -> 73181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59604,"TargetID":73181,"Directional":true}]},{"ID":10812,"SourceStructureID":6115,"TargetStructureID":72647,"Label":"6115-72647 via BC Conventional Synapse from 72646 -> 72648","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72646,"TargetID":72648,"Directional":true}]},{"ID":10813,"SourceStructureID":6115,"TargetStructureID":72650,"Label":"6115-72650 via Ribbon Synapse from 72653 -> 78315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72653,"TargetID":78315,"Directional":true}]},{"ID":10814,"SourceStructureID":6115,"TargetStructureID":72658,"Label":"6115-72658 via Ribbon Synapse from 59610 -> 72661","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59610,"TargetID":72661,"Directional":true}]},{"ID":10815,"SourceStructureID":6115,"TargetStructureID":72681,"Label":"6115-72681 via Ribbon Synapse from 32979 -> 72682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32979,"TargetID":72682,"Directional":true}]},{"ID":10816,"SourceStructureID":6115,"TargetStructureID":72694,"Label":"6115-72694 via Ribbon Synapse from 72693 -> 72695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72693,"TargetID":72695,"Directional":true}]},{"ID":10817,"SourceStructureID":6115,"TargetStructureID":72716,"Label":"6115-72716 via Ribbon Synapse from 55813 -> 72717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55813,"TargetID":72717,"Directional":true}]},{"ID":10818,"SourceStructureID":6115,"TargetStructureID":72718,"Label":"6115-72718 via Ribbon Synapse from 55813 -> 72719","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55813,"TargetID":72719,"Directional":true}]},{"ID":10819,"SourceStructureID":6115,"TargetStructureID":72724,"Label":"6115-72724 via BC Conventional Synapse from 72725 -> 72726","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72725,"TargetID":72726,"Directional":true}]},{"ID":10820,"SourceStructureID":6115,"TargetStructureID":72728,"Label":"6115-72728 via BC Conventional Synapse from 72745 -> 72746","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72745,"TargetID":72746,"Directional":true}]},{"ID":10821,"SourceStructureID":6115,"TargetStructureID":72730,"Label":"6115-72730 via Ribbon Synapse from 55796 -> 72755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55796,"TargetID":72755,"Directional":true}]},{"ID":10822,"SourceStructureID":6115,"TargetStructureID":72731,"Label":"6115-72731 via Ribbon Synapse from 55796 -> 72732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55796,"TargetID":72732,"Directional":true}]},{"ID":10823,"SourceStructureID":6115,"TargetStructureID":72735,"Label":"6115-72735 via Ribbon Synapse from 55795 -> 72736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55795,"TargetID":72736,"Directional":true}]},{"ID":10824,"SourceStructureID":6115,"TargetStructureID":72737,"Label":"6115-72737 via Ribbon Synapse from 55795 -> 72738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55795,"TargetID":72738,"Directional":true}]},{"ID":10825,"SourceStructureID":6115,"TargetStructureID":72742,"Label":"6115-72742 via BC Conventional Synapse from 72741 -> 72743","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72741,"TargetID":72743,"Directional":true}]},{"ID":10826,"SourceStructureID":6115,"TargetStructureID":72754,"Label":"6115-72754 via BC Conventional Synapse from 82711 -> 82710","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":82711,"TargetID":82710,"Directional":true}]},{"ID":10827,"SourceStructureID":6115,"TargetStructureID":72772,"Label":"6115-72772 via Ribbon Synapse from 72771 -> 72774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72771,"TargetID":72774,"Directional":true}]},{"ID":10828,"SourceStructureID":6115,"TargetStructureID":72773,"Label":"6115-72773 via Ribbon Synapse from 72771 -> 72775","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72771,"TargetID":72775,"Directional":true}]},{"ID":10829,"SourceStructureID":6115,"TargetStructureID":72787,"Label":"6115-72787 via Ribbon Synapse from 55798 -> 81164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55798,"TargetID":81164,"Directional":true}]},{"ID":10830,"SourceStructureID":6115,"TargetStructureID":72792,"Label":"6115-72792 via BC Conventional Synapse from 72794 -> 72793","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72794,"TargetID":72793,"Directional":true}]},{"ID":10831,"SourceStructureID":6115,"TargetStructureID":72796,"Label":"6115-72796 via Ribbon Synapse from 55799 -> 72797","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55799,"TargetID":72797,"Directional":true}]},{"ID":10832,"SourceStructureID":6115,"TargetStructureID":72826,"Label":"6115-72826 via Ribbon Synapse from 55803 -> 72827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55803,"TargetID":72827,"Directional":true}]},{"ID":10833,"SourceStructureID":6115,"TargetStructureID":72829,"Label":"6115-72829 via Ribbon Synapse from 73264 -> 72830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73264,"TargetID":72830,"Directional":true}]},{"ID":10834,"SourceStructureID":6115,"TargetStructureID":72831,"Label":"6115-72831 via Ribbon Synapse from 55802 -> 72832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55802,"TargetID":72832,"Directional":true}]},{"ID":10835,"SourceStructureID":6115,"TargetStructureID":72841,"Label":"6115-72841 via Ribbon Synapse from 72842 -> 72843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72842,"TargetID":72843,"Directional":true}]},{"ID":10836,"SourceStructureID":6115,"TargetStructureID":72901,"Label":"6115-72901 via Ribbon Synapse from 72903 -> 72902","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72903,"TargetID":72902,"Directional":true}]},{"ID":10837,"SourceStructureID":6115,"TargetStructureID":72905,"Label":"6115-72905 via Ribbon Synapse from 72904 -> 72906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72904,"TargetID":72906,"Directional":true}]},{"ID":10838,"SourceStructureID":6115,"TargetStructureID":72923,"Label":"6115-72923 via Unknown from 72924 -> 72925","Type":"Unknown","Directional":true,"Links":[{"SourceID":72924,"TargetID":72925,"Directional":true}]},{"ID":10839,"SourceStructureID":6115,"TargetStructureID":72936,"Label":"6115-72936 via Unknown from 72946 -> 72947","Type":"Unknown","Directional":true,"Links":[{"SourceID":72946,"TargetID":72947,"Directional":true}]},{"ID":10840,"SourceStructureID":6115,"TargetStructureID":72939,"Label":"6115-72939 via Ribbon Synapse from 55865 -> 72948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55865,"TargetID":72948,"Directional":true}]},{"ID":10841,"SourceStructureID":6115,"TargetStructureID":72941,"Label":"6115-72941 via Ribbon Synapse from 73138 -> 81890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73138,"TargetID":81890,"Directional":true}]},{"ID":10842,"SourceStructureID":6115,"TargetStructureID":72952,"Label":"6115-72952 via BC Conventional Synapse from 72953 -> 72954","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72953,"TargetID":72954,"Directional":true}]},{"ID":10843,"SourceStructureID":6115,"TargetStructureID":72955,"Label":"6115-72955 via Ribbon Synapse from 55865 -> 72956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55865,"TargetID":72956,"Directional":true}]},{"ID":10844,"SourceStructureID":6115,"TargetStructureID":72957,"Label":"6115-72957 via Ribbon Synapse from 55915 -> 72958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55915,"TargetID":72958,"Directional":true}]},{"ID":10845,"SourceStructureID":6115,"TargetStructureID":72959,"Label":"6115-72959 via Ribbon Synapse from 72960 -> 72961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72960,"TargetID":72961,"Directional":true}]},{"ID":10846,"SourceStructureID":6115,"TargetStructureID":72975,"Label":"6115-72975 via Ribbon Synapse from 55783 -> 74290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55783,"TargetID":74290,"Directional":true}]},{"ID":10847,"SourceStructureID":6115,"TargetStructureID":72987,"Label":"6115-72987 via Ribbon Synapse from 55902 -> 75994, 55902 -> 81352, 55911 -> 73015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55902,"TargetID":75994,"Directional":true},{"SourceID":55902,"TargetID":81352,"Directional":true},{"SourceID":55911,"TargetID":73015,"Directional":true}]},{"ID":10848,"SourceStructureID":6115,"TargetStructureID":73004,"Label":"6115-73004 via Ribbon Synapse from 55910 -> 73005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55910,"TargetID":73005,"Directional":true}]},{"ID":10849,"SourceStructureID":6115,"TargetStructureID":73007,"Label":"6115-73007 via Ribbon Synapse from 55909 -> 73008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55909,"TargetID":73008,"Directional":true}]},{"ID":10850,"SourceStructureID":6115,"TargetStructureID":73021,"Label":"6115-73021 via Ribbon Synapse from 55898 -> 73022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55898,"TargetID":73022,"Directional":true}]},{"ID":10851,"SourceStructureID":6115,"TargetStructureID":73023,"Label":"6115-73023 via Ribbon Synapse from 55898 -> 73024","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55898,"TargetID":73024,"Directional":true}]},{"ID":10852,"SourceStructureID":6115,"TargetStructureID":73030,"Label":"6115-73030 via Unknown from 73031 -> 73032","Type":"Unknown","Directional":true,"Links":[{"SourceID":73031,"TargetID":73032,"Directional":true}]},{"ID":10853,"SourceStructureID":6115,"TargetStructureID":73037,"Label":"6115-73037 via Unknown from 73036 -> 73038","Type":"Unknown","Directional":true,"Links":[{"SourceID":73036,"TargetID":73038,"Directional":true}]},{"ID":10854,"SourceStructureID":6115,"TargetStructureID":73043,"Label":"6115-73043 via BC Conventional Synapse from 73044 -> 73045","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73044,"TargetID":73045,"Directional":true}]},{"ID":10855,"SourceStructureID":6115,"TargetStructureID":73051,"Label":"6115-73051 via Unknown from 73052 -> 73053","Type":"Unknown","Directional":true,"Links":[{"SourceID":73052,"TargetID":73053,"Directional":true}]},{"ID":10856,"SourceStructureID":6115,"TargetStructureID":73067,"Label":"6115-73067 via Ribbon Synapse from 73064 -> 73068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73064,"TargetID":73068,"Directional":true}]},{"ID":10857,"SourceStructureID":6115,"TargetStructureID":73094,"Label":"6115-73094 via Ribbon Synapse from 73093 -> 73095","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73093,"TargetID":73095,"Directional":true}]},{"ID":10858,"SourceStructureID":6115,"TargetStructureID":73110,"Label":"6115-73110 via Ribbon Synapse from 73109 -> 73111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73109,"TargetID":73111,"Directional":true}]},{"ID":10859,"SourceStructureID":6115,"TargetStructureID":73118,"Label":"6115-73118 via Ribbon Synapse from 73117 -> 73119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73117,"TargetID":73119,"Directional":true}]},{"ID":10860,"SourceStructureID":6115,"TargetStructureID":73124,"Label":"6115-73124 via BC Conventional Synapse from 73125 -> 73126","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73125,"TargetID":73126,"Directional":true}]},{"ID":10861,"SourceStructureID":6115,"TargetStructureID":73144,"Label":"6115-73144 via Ribbon Synapse from 55916 -> 73145, 73156 -> 73203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55916,"TargetID":73145,"Directional":true},{"SourceID":73156,"TargetID":73203,"Directional":true}]},{"ID":10862,"SourceStructureID":6115,"TargetStructureID":73204,"Label":"6115-73204 via Ribbon Synapse from 73156 -> 73205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73156,"TargetID":73205,"Directional":true}]},{"ID":10863,"SourceStructureID":6115,"TargetStructureID":73219,"Label":"6115-73219 via Ribbon Synapse from 73218 -> 73220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73218,"TargetID":73220,"Directional":true}]},{"ID":10864,"SourceStructureID":6115,"TargetStructureID":73225,"Label":"6115-73225 via Ribbon Synapse from 72327 -> 73228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72327,"TargetID":73228,"Directional":true}]},{"ID":10865,"SourceStructureID":6115,"TargetStructureID":73229,"Label":"6115-73229 via Ribbon Synapse from 72327 -> 73230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72327,"TargetID":73230,"Directional":true}]},{"ID":10866,"SourceStructureID":6115,"TargetStructureID":73250,"Label":"6115-73250 via Ribbon Synapse from 73249 -> 73251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73249,"TargetID":73251,"Directional":true}]},{"ID":10867,"SourceStructureID":6115,"TargetStructureID":73252,"Label":"6115-73252 via Ribbon Synapse from 55810 -> 73253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55810,"TargetID":73253,"Directional":true}]},{"ID":10868,"SourceStructureID":6115,"TargetStructureID":73273,"Label":"6115-73273 via Ribbon Synapse from 73215 -> 82676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73215,"TargetID":82676,"Directional":true}]},{"ID":10869,"SourceStructureID":6115,"TargetStructureID":73275,"Label":"6115-73275 via Ribbon Synapse from 73272 -> 73278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73272,"TargetID":73278,"Directional":true}]},{"ID":10870,"SourceStructureID":6115,"TargetStructureID":73276,"Label":"6115-73276 via Ribbon Synapse from 73272 -> 73277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73272,"TargetID":73277,"Directional":true}]},{"ID":10871,"SourceStructureID":6115,"TargetStructureID":73301,"Label":"6115-73301 via Ribbon Synapse from 55881 -> 73302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55881,"TargetID":73302,"Directional":true}]},{"ID":10872,"SourceStructureID":6115,"TargetStructureID":73303,"Label":"6115-73303 via Ribbon Synapse from 55882 -> 73306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55882,"TargetID":73306,"Directional":true}]},{"ID":10873,"SourceStructureID":6115,"TargetStructureID":73304,"Label":"6115-73304 via Ribbon Synapse from 55882 -> 73305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55882,"TargetID":73305,"Directional":true}]},{"ID":10874,"SourceStructureID":6115,"TargetStructureID":73313,"Label":"6115-73313 via BC Conventional Synapse from 73312 -> 73317","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73312,"TargetID":73317,"Directional":true}]},{"ID":10875,"SourceStructureID":6115,"TargetStructureID":73323,"Label":"6115-73323 via Ribbon Synapse from 55883 -> 73329","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55883,"TargetID":73329,"Directional":true}]},{"ID":10876,"SourceStructureID":6115,"TargetStructureID":73324,"Label":"6115-73324 via Ribbon Synapse from 55883 -> 73328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55883,"TargetID":73328,"Directional":true}]},{"ID":10877,"SourceStructureID":6115,"TargetStructureID":73332,"Label":"6115-73332 via Ribbon Synapse from 55884 -> 73333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55884,"TargetID":73333,"Directional":true}]},{"ID":10878,"SourceStructureID":6115,"TargetStructureID":73335,"Label":"6115-73335 via Ribbon Synapse from 73334 -> 73336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73334,"TargetID":73336,"Directional":true}]},{"ID":10879,"SourceStructureID":6115,"TargetStructureID":73399,"Label":"6115-73399 via BC Conventional Synapse from 73396 -> 73400","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73396,"TargetID":73400,"Directional":true}]},{"ID":10880,"SourceStructureID":6115,"TargetStructureID":73426,"Label":"6115-73426 via Ribbon Synapse from 73425 -> 73427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73425,"TargetID":73427,"Directional":true}]},{"ID":10881,"SourceStructureID":6115,"TargetStructureID":73428,"Label":"6115-73428 via Ribbon Synapse from 73425 -> 73429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73425,"TargetID":73429,"Directional":true}]},{"ID":10882,"SourceStructureID":6115,"TargetStructureID":73436,"Label":"6115-73436 via Unknown from 73437 -> 73438","Type":"Unknown","Directional":true,"Links":[{"SourceID":73437,"TargetID":73438,"Directional":true}]},{"ID":10883,"SourceStructureID":6115,"TargetStructureID":73448,"Label":"6115-73448 via Ribbon Synapse from 73447 -> 73449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73447,"TargetID":73449,"Directional":true}]},{"ID":10884,"SourceStructureID":6115,"TargetStructureID":73472,"Label":"6115-73472 via BC Conventional Synapse from 73474 -> 73473","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73474,"TargetID":73473,"Directional":true}]},{"ID":10885,"SourceStructureID":6115,"TargetStructureID":73494,"Label":"6115-73494 via Ribbon Synapse from 73493 -> 73495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73493,"TargetID":73495,"Directional":true}]},{"ID":10886,"SourceStructureID":6115,"TargetStructureID":73509,"Label":"6115-73509 via BC Conventional Synapse from 73510 -> 73511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73510,"TargetID":73511,"Directional":true}]},{"ID":10887,"SourceStructureID":6115,"TargetStructureID":73540,"Label":"6115-73540 via Ribbon Synapse from 73539 -> 73541","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73539,"TargetID":73541,"Directional":true}]},{"ID":10888,"SourceStructureID":6115,"TargetStructureID":73542,"Label":"6115-73542 via Ribbon Synapse from 73539 -> 73543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73539,"TargetID":73543,"Directional":true}]},{"ID":10889,"SourceStructureID":6115,"TargetStructureID":73565,"Label":"6115-73565 via Ribbon Synapse from 74174 -> 74178","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74174,"TargetID":74178,"Directional":true}]},{"ID":10890,"SourceStructureID":6115,"TargetStructureID":73784,"Label":"6115-73784 via BC Conventional Synapse from 73785 -> 73786","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73785,"TargetID":73786,"Directional":true}]},{"ID":10891,"SourceStructureID":6115,"TargetStructureID":73792,"Label":"6115-73792 via Ribbon Synapse from 73787 -> 73794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73787,"TargetID":73794,"Directional":true}]},{"ID":10892,"SourceStructureID":6115,"TargetStructureID":73793,"Label":"6115-73793 via Ribbon Synapse from 73787 -> 73795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73787,"TargetID":73795,"Directional":true}]},{"ID":10893,"SourceStructureID":6115,"TargetStructureID":73796,"Label":"6115-73796 via Ribbon Synapse from 73788 -> 73797","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73788,"TargetID":73797,"Directional":true}]},{"ID":10894,"SourceStructureID":6115,"TargetStructureID":73821,"Label":"6115-73821 via Ribbon Synapse from 32958 -> 73835","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32958,"TargetID":73835,"Directional":true}]},{"ID":10895,"SourceStructureID":6115,"TargetStructureID":73838,"Label":"6115-73838 via BC Conventional Synapse from 78311 -> 78312","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78311,"TargetID":78312,"Directional":true}]},{"ID":10896,"SourceStructureID":6115,"TargetStructureID":73846,"Label":"6115-73846 via Ribbon Synapse from 73851 -> 73852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73851,"TargetID":73852,"Directional":true}]},{"ID":10897,"SourceStructureID":6115,"TargetStructureID":73853,"Label":"6115-73853 via Ribbon Synapse from 73851 -> 73854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73851,"TargetID":73854,"Directional":true}]},{"ID":10898,"SourceStructureID":6115,"TargetStructureID":73884,"Label":"6115-73884 via Ribbon Synapse from 73885 -> 73888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73885,"TargetID":73888,"Directional":true}]},{"ID":10899,"SourceStructureID":6115,"TargetStructureID":73891,"Label":"6115-73891 via Ribbon Synapse from 73894 -> 73895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73894,"TargetID":73895,"Directional":true}]},{"ID":10900,"SourceStructureID":6115,"TargetStructureID":73896,"Label":"6115-73896 via Ribbon Synapse from 73894 -> 73897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73894,"TargetID":73897,"Directional":true}]},{"ID":10901,"SourceStructureID":6115,"TargetStructureID":73909,"Label":"6115-73909 via BC Conventional Synapse from 134232 -> 134233","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134232,"TargetID":134233,"Directional":true}]},{"ID":10902,"SourceStructureID":6115,"TargetStructureID":73916,"Label":"6115-73916 via Ribbon Synapse from 73915 -> 73917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73915,"TargetID":73917,"Directional":true}]},{"ID":10903,"SourceStructureID":6115,"TargetStructureID":73926,"Label":"6115-73926 via Ribbon Synapse from 73929 -> 73931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73929,"TargetID":73931,"Directional":true}]},{"ID":10904,"SourceStructureID":6115,"TargetStructureID":73928,"Label":"6115-73928 via Ribbon Synapse from 73929 -> 73930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73929,"TargetID":73930,"Directional":true}]},{"ID":10905,"SourceStructureID":6115,"TargetStructureID":73965,"Label":"6115-73965 via Ribbon Synapse from 56311 -> 73966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56311,"TargetID":73966,"Directional":true}]},{"ID":10906,"SourceStructureID":6115,"TargetStructureID":73967,"Label":"6115-73967 via Ribbon Synapse from 56311 -> 73969, 56312 -> 73972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56311,"TargetID":73969,"Directional":true},{"SourceID":56312,"TargetID":73972,"Directional":true}]},{"ID":10907,"SourceStructureID":6115,"TargetStructureID":73970,"Label":"6115-73970 via Ribbon Synapse from 56312 -> 73971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56312,"TargetID":73971,"Directional":true}]},{"ID":10908,"SourceStructureID":6115,"TargetStructureID":73977,"Label":"6115-73977 via BC Conventional Synapse from 73976 -> 73978","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73976,"TargetID":73978,"Directional":true}]},{"ID":10909,"SourceStructureID":6115,"TargetStructureID":73979,"Label":"6115-73979 via Ribbon Synapse from 74000 -> 74001","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74000,"TargetID":74001,"Directional":true}]},{"ID":10910,"SourceStructureID":6115,"TargetStructureID":74002,"Label":"6115-74002 via Ribbon Synapse from 74000 -> 74003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74000,"TargetID":74003,"Directional":true}]},{"ID":10911,"SourceStructureID":6115,"TargetStructureID":74004,"Label":"6115-74004 via Ribbon Synapse from 74000 -> 74005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74000,"TargetID":74005,"Directional":true}]},{"ID":10912,"SourceStructureID":6115,"TargetStructureID":74026,"Label":"6115-74026 via Ribbon Synapse from 74025 -> 74031","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74025,"TargetID":74031,"Directional":true}]},{"ID":10913,"SourceStructureID":6115,"TargetStructureID":74028,"Label":"6115-74028 via Ribbon Synapse from 74025 -> 74032","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74025,"TargetID":74032,"Directional":true}]},{"ID":10914,"SourceStructureID":6115,"TargetStructureID":74029,"Label":"6115-74029 via Ribbon Synapse from 74025 -> 74030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74025,"TargetID":74030,"Directional":true}]},{"ID":10915,"SourceStructureID":6115,"TargetStructureID":74045,"Label":"6115-74045 via Ribbon Synapse from 74060 -> 74062","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74060,"TargetID":74062,"Directional":true}]},{"ID":10916,"SourceStructureID":6115,"TargetStructureID":74046,"Label":"6115-74046 via Ribbon Synapse from 74060 -> 74061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74060,"TargetID":74061,"Directional":true}]},{"ID":10917,"SourceStructureID":6115,"TargetStructureID":74067,"Label":"6115-74067 via Ribbon Synapse from 74063 -> 74068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74063,"TargetID":74068,"Directional":true}]},{"ID":10918,"SourceStructureID":6115,"TargetStructureID":74073,"Label":"6115-74073 via Unknown from 74071 -> 74074","Type":"Unknown","Directional":true,"Links":[{"SourceID":74071,"TargetID":74074,"Directional":true}]},{"ID":10919,"SourceStructureID":6115,"TargetStructureID":74075,"Label":"6115-74075 via Ribbon Synapse from 56315 -> 74076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56315,"TargetID":74076,"Directional":true}]},{"ID":10920,"SourceStructureID":6115,"TargetStructureID":74077,"Label":"6115-74077 via Ribbon Synapse from 56315 -> 74078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56315,"TargetID":74078,"Directional":true}]},{"ID":10921,"SourceStructureID":6115,"TargetStructureID":74086,"Label":"6115-74086 via Ribbon Synapse from 74083 -> 74090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74083,"TargetID":74090,"Directional":true}]},{"ID":10922,"SourceStructureID":6115,"TargetStructureID":74087,"Label":"6115-74087 via Ribbon Synapse from 74083 -> 74091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74083,"TargetID":74091,"Directional":true}]},{"ID":10923,"SourceStructureID":6115,"TargetStructureID":74088,"Label":"6115-74088 via Ribbon Synapse from 74083 -> 74089","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74083,"TargetID":74089,"Directional":true}]},{"ID":10924,"SourceStructureID":6115,"TargetStructureID":74165,"Label":"6115-74165 via Ribbon Synapse from 74164 -> 74166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74164,"TargetID":74166,"Directional":true}]},{"ID":10925,"SourceStructureID":6115,"TargetStructureID":74177,"Label":"6115-74177 via Ribbon Synapse from 74174 -> 74179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74174,"TargetID":74179,"Directional":true}]},{"ID":10926,"SourceStructureID":6115,"TargetStructureID":74187,"Label":"6115-74187 via Ribbon Synapse from 74188 -> 74189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74188,"TargetID":74189,"Directional":true}]},{"ID":10927,"SourceStructureID":6115,"TargetStructureID":74197,"Label":"6115-74197 via Ribbon Synapse from 74196 -> 74198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74196,"TargetID":74198,"Directional":true}]},{"ID":10928,"SourceStructureID":6115,"TargetStructureID":74203,"Label":"6115-74203 via Ribbon Synapse from 74202 -> 74204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74202,"TargetID":74204,"Directional":true}]},{"ID":10929,"SourceStructureID":6115,"TargetStructureID":74276,"Label":"6115-74276 via BC Conventional Synapse from 74275 -> 74277","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74275,"TargetID":74277,"Directional":true}]},{"ID":10930,"SourceStructureID":6115,"TargetStructureID":74279,"Label":"6115-74279 via BC Conventional Synapse from 74280 -> 74281","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74280,"TargetID":74281,"Directional":true}]},{"ID":10931,"SourceStructureID":6115,"TargetStructureID":74299,"Label":"6115-74299 via Ribbon Synapse from 55776 -> 74300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55776,"TargetID":74300,"Directional":true}]},{"ID":10932,"SourceStructureID":6115,"TargetStructureID":74301,"Label":"6115-74301 via Ribbon Synapse from 55776 -> 74302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55776,"TargetID":74302,"Directional":true}]},{"ID":10933,"SourceStructureID":6115,"TargetStructureID":74333,"Label":"6115-74333 via Ribbon Synapse from 55780 -> 74336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55780,"TargetID":74336,"Directional":true}]},{"ID":10934,"SourceStructureID":6115,"TargetStructureID":74334,"Label":"6115-74334 via Ribbon Synapse from 55780 -> 74335","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55780,"TargetID":74335,"Directional":true}]},{"ID":10935,"SourceStructureID":6115,"TargetStructureID":74337,"Label":"6115-74337 via Ribbon Synapse from 55779 -> 74349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55779,"TargetID":74349,"Directional":true}]},{"ID":10936,"SourceStructureID":6115,"TargetStructureID":74364,"Label":"6115-74364 via Ribbon Synapse from 55793 -> 74365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55793,"TargetID":74365,"Directional":true}]},{"ID":10937,"SourceStructureID":6115,"TargetStructureID":74366,"Label":"6115-74366 via Ribbon Synapse from 55793 -> 74367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55793,"TargetID":74367,"Directional":true}]},{"ID":10938,"SourceStructureID":6115,"TargetStructureID":74370,"Label":"6115-74370 via Ribbon Synapse from 55792 -> 74375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55792,"TargetID":74375,"Directional":true}]},{"ID":10939,"SourceStructureID":6115,"TargetStructureID":74382,"Label":"6115-74382 via Ribbon Synapse from 55792 -> 74383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55792,"TargetID":74383,"Directional":true}]},{"ID":10940,"SourceStructureID":6115,"TargetStructureID":74388,"Label":"6115-74388 via Ribbon Synapse from 55791 -> 74389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55791,"TargetID":74389,"Directional":true}]},{"ID":10941,"SourceStructureID":6115,"TargetStructureID":74396,"Label":"6115-74396 via BC Conventional Synapse from 74395 -> 74397","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74395,"TargetID":74397,"Directional":true}]},{"ID":10942,"SourceStructureID":6115,"TargetStructureID":74416,"Label":"6115-74416 via BC Conventional Synapse from 74415 -> 74417","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74415,"TargetID":74417,"Directional":true}]},{"ID":10943,"SourceStructureID":6115,"TargetStructureID":74441,"Label":"6115-74441 via Ribbon Synapse from 55785 -> 74444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55785,"TargetID":74444,"Directional":true}]},{"ID":10944,"SourceStructureID":6115,"TargetStructureID":74448,"Label":"6115-74448 via Unknown from 75973 -> 75974","Type":"Unknown","Directional":true,"Links":[{"SourceID":75973,"TargetID":75974,"Directional":true}]},{"ID":10945,"SourceStructureID":6115,"TargetStructureID":74452,"Label":"6115-74452 via BC Conventional Synapse from 74451 -> 74453","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74451,"TargetID":74453,"Directional":true}]},{"ID":10946,"SourceStructureID":6115,"TargetStructureID":74471,"Label":"6115-74471 via Ribbon Synapse from 55775 -> 74474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55775,"TargetID":74474,"Directional":true}]},{"ID":10947,"SourceStructureID":6115,"TargetStructureID":74480,"Label":"6115-74480 via Adherens from 75873 -> 75874","Type":"Adherens","Directional":true,"Links":[{"SourceID":75873,"TargetID":75874,"Directional":true}]},{"ID":10948,"SourceStructureID":6115,"TargetStructureID":74480,"Label":"6115-74480 via BC Conventional Synapse from 74479 -> 74481","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74479,"TargetID":74481,"Directional":true}]},{"ID":10949,"SourceStructureID":6115,"TargetStructureID":74497,"Label":"6115-74497 via Ribbon Synapse from 74496 -> 74498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74496,"TargetID":74498,"Directional":true}]},{"ID":10950,"SourceStructureID":6115,"TargetStructureID":74517,"Label":"6115-74517 via Ribbon Synapse from 74516 -> 74521","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74516,"TargetID":74521,"Directional":true}]},{"ID":10951,"SourceStructureID":6115,"TargetStructureID":74519,"Label":"6115-74519 via Ribbon Synapse from 74516 -> 74520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74516,"TargetID":74520,"Directional":true}]},{"ID":10952,"SourceStructureID":6115,"TargetStructureID":74524,"Label":"6115-74524 via Ribbon Synapse from 74522 -> 74525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74522,"TargetID":74525,"Directional":true}]},{"ID":10953,"SourceStructureID":6115,"TargetStructureID":74530,"Label":"6115-74530 via BC Conventional Synapse from 74531 -> 74532","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74531,"TargetID":74532,"Directional":true}]},{"ID":10954,"SourceStructureID":6115,"TargetStructureID":74536,"Label":"6115-74536 via Ribbon Synapse from 74535 -> 74537","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74535,"TargetID":74537,"Directional":true}]},{"ID":10955,"SourceStructureID":6115,"TargetStructureID":74539,"Label":"6115-74539 via Ribbon Synapse from 74535 -> 74540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74535,"TargetID":74540,"Directional":true}]},{"ID":10956,"SourceStructureID":6115,"TargetStructureID":74683,"Label":"6115-74683 via BC Conventional Synapse from 74682 -> 74684","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74682,"TargetID":74684,"Directional":true}]},{"ID":10957,"SourceStructureID":6115,"TargetStructureID":74699,"Label":"6115-74699 via Ribbon Synapse from 74761 -> 74768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74761,"TargetID":74768,"Directional":true}]},{"ID":10958,"SourceStructureID":6115,"TargetStructureID":74701,"Label":"6115-74701 via Ribbon Synapse from 74700 -> 74703","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74700,"TargetID":74703,"Directional":true}]},{"ID":10959,"SourceStructureID":6115,"TargetStructureID":74702,"Label":"6115-74702 via Ribbon Synapse from 74700 -> 74704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74700,"TargetID":74704,"Directional":true}]},{"ID":10960,"SourceStructureID":6115,"TargetStructureID":74719,"Label":"6115-74719 via Unknown from 74722 -> 74723","Type":"Unknown","Directional":true,"Links":[{"SourceID":74722,"TargetID":74723,"Directional":true}]},{"ID":10961,"SourceStructureID":6115,"TargetStructureID":74728,"Label":"6115-74728 via Ribbon Synapse from 74725 -> 74729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74725,"TargetID":74729,"Directional":true}]},{"ID":10962,"SourceStructureID":6115,"TargetStructureID":74731,"Label":"6115-74731 via Ribbon Synapse from 74725 -> 74732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74725,"TargetID":74732,"Directional":true}]},{"ID":10963,"SourceStructureID":6115,"TargetStructureID":74749,"Label":"6115-74749 via BC Conventional Synapse from 80952 -> 80950","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80952,"TargetID":80950,"Directional":true}]},{"ID":10964,"SourceStructureID":6115,"TargetStructureID":74762,"Label":"6115-74762 via Ribbon Synapse from 74761 -> 74765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74761,"TargetID":74765,"Directional":true}]},{"ID":10965,"SourceStructureID":6115,"TargetStructureID":74763,"Label":"6115-74763 via Ribbon Synapse from 74761 -> 74766","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74761,"TargetID":74766,"Directional":true}]},{"ID":10966,"SourceStructureID":6115,"TargetStructureID":74764,"Label":"6115-74764 via Ribbon Synapse from 74761 -> 74767","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74761,"TargetID":74767,"Directional":true}]},{"ID":10967,"SourceStructureID":6115,"TargetStructureID":74769,"Label":"6115-74769 via Ribbon Synapse from 74778 -> 74779","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74778,"TargetID":74779,"Directional":true}]},{"ID":10968,"SourceStructureID":6115,"TargetStructureID":74780,"Label":"6115-74780 via Ribbon Synapse from 74778 -> 74781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74778,"TargetID":74781,"Directional":true}]},{"ID":10969,"SourceStructureID":6115,"TargetStructureID":74795,"Label":"6115-74795 via Ribbon Synapse from 55774 -> 74798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55774,"TargetID":74798,"Directional":true}]},{"ID":10970,"SourceStructureID":6115,"TargetStructureID":74797,"Label":"6115-74797 via Ribbon Synapse from 55774 -> 74799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55774,"TargetID":74799,"Directional":true}]},{"ID":10971,"SourceStructureID":6115,"TargetStructureID":74815,"Label":"6115-74815 via Ribbon Synapse from 55771 -> 74822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55771,"TargetID":74822,"Directional":true}]},{"ID":10972,"SourceStructureID":6115,"TargetStructureID":74818,"Label":"6115-74818 via Ribbon Synapse from 55771 -> 74820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55771,"TargetID":74820,"Directional":true}]},{"ID":10973,"SourceStructureID":6115,"TargetStructureID":74819,"Label":"6115-74819 via Ribbon Synapse from 55771 -> 74821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55771,"TargetID":74821,"Directional":true}]},{"ID":10974,"SourceStructureID":6115,"TargetStructureID":74825,"Label":"6115-74825 via Ribbon Synapse from 55840 -> 74826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55840,"TargetID":74826,"Directional":true}]},{"ID":10975,"SourceStructureID":6115,"TargetStructureID":74828,"Label":"6115-74828 via Ribbon Synapse from 55773 -> 74829","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55773,"TargetID":74829,"Directional":true}]},{"ID":10976,"SourceStructureID":6115,"TargetStructureID":74843,"Label":"6115-74843 via Ribbon Synapse from 55770 -> 74844","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55770,"TargetID":74844,"Directional":true}]},{"ID":10977,"SourceStructureID":6115,"TargetStructureID":75035,"Label":"6115-75035 via BC Conventional Synapse from 75037 -> 75039","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75037,"TargetID":75039,"Directional":true}]},{"ID":10978,"SourceStructureID":6115,"TargetStructureID":75059,"Label":"6115-75059 via BC Conventional Synapse from 75060 -> 75061","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75060,"TargetID":75061,"Directional":true}]},{"ID":10979,"SourceStructureID":6115,"TargetStructureID":75065,"Label":"6115-75065 via Ribbon Synapse from 75066 -> 75067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75066,"TargetID":75067,"Directional":true}]},{"ID":10980,"SourceStructureID":6115,"TargetStructureID":75073,"Label":"6115-75073 via Ribbon Synapse from 55843 -> 75091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55843,"TargetID":75091,"Directional":true}]},{"ID":10981,"SourceStructureID":6115,"TargetStructureID":75081,"Label":"6115-75081 via Ribbon Synapse from 55757 -> 75083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55757,"TargetID":75083,"Directional":true}]},{"ID":10982,"SourceStructureID":6115,"TargetStructureID":75082,"Label":"6115-75082 via Ribbon Synapse from 55757 -> 75084","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55757,"TargetID":75084,"Directional":true}]},{"ID":10983,"SourceStructureID":6115,"TargetStructureID":75085,"Label":"6115-75085 via Ribbon Synapse from 55757 -> 75088","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55757,"TargetID":75088,"Directional":true}]},{"ID":10984,"SourceStructureID":6115,"TargetStructureID":75086,"Label":"6115-75086 via Ribbon Synapse from 55757 -> 75087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55757,"TargetID":75087,"Directional":true}]},{"ID":10985,"SourceStructureID":6115,"TargetStructureID":75089,"Label":"6115-75089 via Ribbon Synapse from 55843 -> 75090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55843,"TargetID":75090,"Directional":true}]},{"ID":10986,"SourceStructureID":6115,"TargetStructureID":75099,"Label":"6115-75099 via Ribbon Synapse from 55767 -> 75254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55767,"TargetID":75254,"Directional":true}]},{"ID":10987,"SourceStructureID":6115,"TargetStructureID":75102,"Label":"6115-75102 via Ribbon Synapse from 55756 -> 75103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55756,"TargetID":75103,"Directional":true}]},{"ID":10988,"SourceStructureID":6115,"TargetStructureID":75110,"Label":"6115-75110 via Ribbon Synapse from 55754 -> 75111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55754,"TargetID":75111,"Directional":true}]},{"ID":10989,"SourceStructureID":6115,"TargetStructureID":75112,"Label":"6115-75112 via Ribbon Synapse from 75115 -> 75122","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75115,"TargetID":75122,"Directional":true}]},{"ID":10990,"SourceStructureID":6115,"TargetStructureID":75116,"Label":"6115-75116 via Ribbon Synapse from 75115 -> 75118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75115,"TargetID":75118,"Directional":true}]},{"ID":10991,"SourceStructureID":6115,"TargetStructureID":75117,"Label":"6115-75117 via Ribbon Synapse from 75115 -> 75119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75115,"TargetID":75119,"Directional":true}]},{"ID":10992,"SourceStructureID":6115,"TargetStructureID":75120,"Label":"6115-75120 via Ribbon Synapse from 75115 -> 75121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75115,"TargetID":75121,"Directional":true}]},{"ID":10993,"SourceStructureID":6115,"TargetStructureID":75130,"Label":"6115-75130 via Ribbon Synapse from 55840 -> 74827, 82662 -> 90638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55840,"TargetID":74827,"Directional":true},{"SourceID":82662,"TargetID":90638,"Directional":true}]},{"ID":10994,"SourceStructureID":6115,"TargetStructureID":75156,"Label":"6115-75156 via Ribbon Synapse from 75155 -> 75157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75155,"TargetID":75157,"Directional":true}]},{"ID":10995,"SourceStructureID":6115,"TargetStructureID":75158,"Label":"6115-75158 via Ribbon Synapse from 75155 -> 75159","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75155,"TargetID":75159,"Directional":true}]},{"ID":10996,"SourceStructureID":6115,"TargetStructureID":75189,"Label":"6115-75189 via Ribbon Synapse from 75188 -> 75191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75188,"TargetID":75191,"Directional":true}]},{"ID":10997,"SourceStructureID":6115,"TargetStructureID":75194,"Label":"6115-75194 via Ribbon Synapse from 75193 -> 75195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75193,"TargetID":75195,"Directional":true}]},{"ID":10998,"SourceStructureID":6115,"TargetStructureID":75196,"Label":"6115-75196 via Ribbon Synapse from 75193 -> 75197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75193,"TargetID":75197,"Directional":true}]},{"ID":10999,"SourceStructureID":6115,"TargetStructureID":75205,"Label":"6115-75205 via BC Conventional Synapse from 75207 -> 75206","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75207,"TargetID":75206,"Directional":true}]},{"ID":11000,"SourceStructureID":6115,"TargetStructureID":75214,"Label":"6115-75214 via BC Conventional Synapse from 75215 -> 75216","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75215,"TargetID":75216,"Directional":true}]},{"ID":11001,"SourceStructureID":6115,"TargetStructureID":75223,"Label":"6115-75223 via BC Conventional Synapse from 93081 -> 93082","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93081,"TargetID":93082,"Directional":true}]},{"ID":11002,"SourceStructureID":6115,"TargetStructureID":75223,"Label":"6115-75223 via Ribbon Synapse from 55766 -> 75229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55766,"TargetID":75229,"Directional":true}]},{"ID":11003,"SourceStructureID":6115,"TargetStructureID":75227,"Label":"6115-75227 via Ribbon Synapse from 55766 -> 75228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55766,"TargetID":75228,"Directional":true}]},{"ID":11004,"SourceStructureID":6115,"TargetStructureID":75235,"Label":"6115-75235 via Ribbon Synapse from 55861 -> 75237","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55861,"TargetID":75237,"Directional":true}]},{"ID":11005,"SourceStructureID":6115,"TargetStructureID":75236,"Label":"6115-75236 via Ribbon Synapse from 55861 -> 75240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55861,"TargetID":75240,"Directional":true}]},{"ID":11006,"SourceStructureID":6115,"TargetStructureID":75246,"Label":"6115-75246 via Ribbon Synapse from 55860 -> 75247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55860,"TargetID":75247,"Directional":true}]},{"ID":11007,"SourceStructureID":6115,"TargetStructureID":75255,"Label":"6115-75255 via Ribbon Synapse from 55767 -> 75256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55767,"TargetID":75256,"Directional":true}]},{"ID":11008,"SourceStructureID":6115,"TargetStructureID":75266,"Label":"6115-75266 via Ribbon Synapse from 75002 -> 75267","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75002,"TargetID":75267,"Directional":true}]},{"ID":11009,"SourceStructureID":6115,"TargetStructureID":75268,"Label":"6115-75268 via Ribbon Synapse from 55765 -> 75270","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55765,"TargetID":75270,"Directional":true}]},{"ID":11010,"SourceStructureID":6115,"TargetStructureID":75269,"Label":"6115-75269 via Ribbon Synapse from 55765 -> 75271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55765,"TargetID":75271,"Directional":true}]},{"ID":11011,"SourceStructureID":6115,"TargetStructureID":75283,"Label":"6115-75283 via Ribbon Synapse from 134153 -> 75284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134153,"TargetID":75284,"Directional":true}]},{"ID":11012,"SourceStructureID":6115,"TargetStructureID":75285,"Label":"6115-75285 via Ribbon Synapse from 134153 -> 75286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134153,"TargetID":75286,"Directional":true}]},{"ID":11013,"SourceStructureID":6115,"TargetStructureID":75288,"Label":"6115-75288 via Ribbon Synapse from 55761 -> 75289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55761,"TargetID":75289,"Directional":true}]},{"ID":11014,"SourceStructureID":6115,"TargetStructureID":75290,"Label":"6115-75290 via Ribbon Synapse from 55761 -> 75291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55761,"TargetID":75291,"Directional":true}]},{"ID":11015,"SourceStructureID":6115,"TargetStructureID":75292,"Label":"6115-75292 via Ribbon Synapse from 55763 -> 75295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55763,"TargetID":75295,"Directional":true}]},{"ID":11016,"SourceStructureID":6115,"TargetStructureID":75293,"Label":"6115-75293 via Ribbon Synapse from 55763 -> 75294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55763,"TargetID":75294,"Directional":true}]},{"ID":11017,"SourceStructureID":6115,"TargetStructureID":75440,"Label":"6115-75440 via Ribbon Synapse from 55763 -> 75441","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55763,"TargetID":75441,"Directional":true}]},{"ID":11018,"SourceStructureID":6115,"TargetStructureID":75446,"Label":"6115-75446 via Ribbon Synapse from 75449 -> 75451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75449,"TargetID":75451,"Directional":true}]},{"ID":11019,"SourceStructureID":6115,"TargetStructureID":75450,"Label":"6115-75450 via Ribbon Synapse from 75449 -> 75453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75449,"TargetID":75453,"Directional":true}]},{"ID":11020,"SourceStructureID":6115,"TargetStructureID":75465,"Label":"6115-75465 via Ribbon Synapse from 70310 -> 75466","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70310,"TargetID":75466,"Directional":true}]},{"ID":11021,"SourceStructureID":6115,"TargetStructureID":75467,"Label":"6115-75467 via Ribbon Synapse from 70310 -> 75468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70310,"TargetID":75468,"Directional":true}]},{"ID":11022,"SourceStructureID":6115,"TargetStructureID":75470,"Label":"6115-75470 via BC Conventional Synapse from 75469 -> 75471","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75469,"TargetID":75471,"Directional":true}]},{"ID":11023,"SourceStructureID":6115,"TargetStructureID":75472,"Label":"6115-75472 via Ribbon Synapse from 70409 -> 75473","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70409,"TargetID":75473,"Directional":true}]},{"ID":11024,"SourceStructureID":6115,"TargetStructureID":75548,"Label":"6115-75548 via Ribbon Synapse from 75547 -> 75549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75547,"TargetID":75549,"Directional":true}]},{"ID":11025,"SourceStructureID":6115,"TargetStructureID":75550,"Label":"6115-75550 via Ribbon Synapse from 75547 -> 75551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75547,"TargetID":75551,"Directional":true}]},{"ID":11026,"SourceStructureID":6115,"TargetStructureID":75569,"Label":"6115-75569 via Ribbon Synapse from 72327 -> 75570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72327,"TargetID":75570,"Directional":true}]},{"ID":11027,"SourceStructureID":6115,"TargetStructureID":75644,"Label":"6115-75644 via Ribbon Synapse from 73171 -> 75645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73171,"TargetID":75645,"Directional":true}]},{"ID":11028,"SourceStructureID":6115,"TargetStructureID":75646,"Label":"6115-75646 via Ribbon Synapse from 72626 -> 75647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72626,"TargetID":75647,"Directional":true}]},{"ID":11029,"SourceStructureID":6115,"TargetStructureID":75648,"Label":"6115-75648 via Ribbon Synapse from 66751 -> 75651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66751,"TargetID":75651,"Directional":true}]},{"ID":11030,"SourceStructureID":6115,"TargetStructureID":75649,"Label":"6115-75649 via Ribbon Synapse from 66751 -> 75650","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66751,"TargetID":75650,"Directional":true}]},{"ID":11031,"SourceStructureID":6115,"TargetStructureID":75653,"Label":"6115-75653 via Ribbon Synapse from 75652 -> 75654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75652,"TargetID":75654,"Directional":true}]},{"ID":11032,"SourceStructureID":6115,"TargetStructureID":75672,"Label":"6115-75672 via BC Conventional Synapse from 75671 -> 75673","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75671,"TargetID":75673,"Directional":true}]},{"ID":11033,"SourceStructureID":6115,"TargetStructureID":75674,"Label":"6115-75674 via Ribbon Synapse from 134154 -> 75675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134154,"TargetID":75675,"Directional":true}]},{"ID":11034,"SourceStructureID":6115,"TargetStructureID":75841,"Label":"6115-75841 via Ribbon Synapse from 75838 -> 75842","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75838,"TargetID":75842,"Directional":true}]},{"ID":11035,"SourceStructureID":6115,"TargetStructureID":75857,"Label":"6115-75857 via Ribbon Synapse from 75856 -> 75860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75856,"TargetID":75860,"Directional":true}]},{"ID":11036,"SourceStructureID":6115,"TargetStructureID":75861,"Label":"6115-75861 via Ribbon Synapse from 75856 -> 75862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75856,"TargetID":75862,"Directional":true}]},{"ID":11037,"SourceStructureID":6115,"TargetStructureID":75866,"Label":"6115-75866 via Ribbon Synapse from 75865 -> 75867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75865,"TargetID":75867,"Directional":true}]},{"ID":11038,"SourceStructureID":6115,"TargetStructureID":75868,"Label":"6115-75868 via Ribbon Synapse from 75865 -> 75869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75865,"TargetID":75869,"Directional":true}]},{"ID":11039,"SourceStructureID":6115,"TargetStructureID":75882,"Label":"6115-75882 via Ribbon Synapse from 55843 -> 75883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55843,"TargetID":75883,"Directional":true}]},{"ID":11040,"SourceStructureID":6115,"TargetStructureID":75985,"Label":"6115-75985 via Ribbon Synapse from 73386 -> 75986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73386,"TargetID":75986,"Directional":true}]},{"ID":11041,"SourceStructureID":6115,"TargetStructureID":76000,"Label":"6115-76000 via Ribbon Synapse from 73093 -> 76001","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73093,"TargetID":76001,"Directional":true}]},{"ID":11042,"SourceStructureID":6115,"TargetStructureID":76010,"Label":"6115-76010 via Ribbon Synapse from 72962 -> 76012","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72962,"TargetID":76012,"Directional":true}]},{"ID":11043,"SourceStructureID":6115,"TargetStructureID":76013,"Label":"6115-76013 via Ribbon Synapse from 55915 -> 76018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55915,"TargetID":76018,"Directional":true}]},{"ID":11044,"SourceStructureID":6115,"TargetStructureID":76014,"Label":"6115-76014 via Ribbon Synapse from 55915 -> 76017","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55915,"TargetID":76017,"Directional":true}]},{"ID":11045,"SourceStructureID":6115,"TargetStructureID":76015,"Label":"6115-76015 via Ribbon Synapse from 55915 -> 76016","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55915,"TargetID":76016,"Directional":true}]},{"ID":11046,"SourceStructureID":6115,"TargetStructureID":76024,"Label":"6115-76024 via Ribbon Synapse from 73218 -> 76025","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73218,"TargetID":76025,"Directional":true}]},{"ID":11047,"SourceStructureID":6115,"TargetStructureID":76111,"Label":"6115-76111 via Unknown from 76113 -> 76112","Type":"Unknown","Directional":true,"Links":[{"SourceID":76113,"TargetID":76112,"Directional":true}]},{"ID":11048,"SourceStructureID":6115,"TargetStructureID":76182,"Label":"6115-76182 via Ribbon Synapse from 76181 -> 76183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76181,"TargetID":76183,"Directional":true}]},{"ID":11049,"SourceStructureID":6115,"TargetStructureID":76184,"Label":"6115-76184 via Ribbon Synapse from 76181 -> 76185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76181,"TargetID":76185,"Directional":true}]},{"ID":11050,"SourceStructureID":6115,"TargetStructureID":76186,"Label":"6115-76186 via Ribbon Synapse from 76181 -> 76187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76181,"TargetID":76187,"Directional":true}]},{"ID":11051,"SourceStructureID":6115,"TargetStructureID":77677,"Label":"6115-77677 via Ribbon Synapse from 77676 -> 77678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77676,"TargetID":77678,"Directional":true}]},{"ID":11052,"SourceStructureID":6115,"TargetStructureID":78309,"Label":"6115-78309 via Ribbon Synapse from 55842 -> 78310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55842,"TargetID":78310,"Directional":true}]},{"ID":11053,"SourceStructureID":6115,"TargetStructureID":80957,"Label":"6115-80957 via Ribbon Synapse from 75188 -> 82233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75188,"TargetID":82233,"Directional":true}]},{"ID":11054,"SourceStructureID":6115,"TargetStructureID":81167,"Label":"6115-81167 via Ribbon Synapse from 74522 -> 82103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74522,"TargetID":82103,"Directional":true}]},{"ID":11055,"SourceStructureID":6115,"TargetStructureID":81337,"Label":"6115-81337 via Ribbon Synapse from 81340 -> 81339","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81340,"TargetID":81339,"Directional":true}]},{"ID":11056,"SourceStructureID":6115,"TargetStructureID":81348,"Label":"6115-81348 via Ribbon Synapse from 72305 -> 81349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72305,"TargetID":81349,"Directional":true}]},{"ID":11057,"SourceStructureID":6115,"TargetStructureID":81667,"Label":"6115-81667 via Ribbon Synapse from 55866 -> 81706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55866,"TargetID":81706,"Directional":true}]},{"ID":11058,"SourceStructureID":6115,"TargetStructureID":81964,"Label":"6115-81964 via Ribbon Synapse from 55811 -> 81965","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55811,"TargetID":81965,"Directional":true}]},{"ID":11059,"SourceStructureID":6115,"TargetStructureID":82368,"Label":"6115-82368 via BC Conventional Synapse from 72912 -> 82369","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72912,"TargetID":82369,"Directional":true}]},{"ID":11060,"SourceStructureID":6115,"TargetStructureID":82402,"Label":"6115-82402 via Ribbon Synapse from 55770 -> 82563","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55770,"TargetID":82563,"Directional":true}]},{"ID":11061,"SourceStructureID":6115,"TargetStructureID":82644,"Label":"6115-82644 via Ribbon Synapse from 77671 -> 82645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77671,"TargetID":82645,"Directional":true}]},{"ID":11062,"SourceStructureID":6115,"TargetStructureID":82653,"Label":"6115-82653 via Ribbon Synapse from 77671 -> 90630, 77672 -> 82658, 134154 -> 90719","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77671,"TargetID":90630,"Directional":true},{"SourceID":77672,"TargetID":82658,"Directional":true},{"SourceID":134154,"TargetID":90719,"Directional":true}]},{"ID":11063,"SourceStructureID":6115,"TargetStructureID":82659,"Label":"6115-82659 via Ribbon Synapse from 77672 -> 82660","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77672,"TargetID":82660,"Directional":true}]},{"ID":11064,"SourceStructureID":6115,"TargetStructureID":82795,"Label":"6115-82795 via Ribbon Synapse from 55861 -> 82797","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55861,"TargetID":82797,"Directional":true}]},{"ID":11065,"SourceStructureID":6115,"TargetStructureID":82803,"Label":"6115-82803 via BC Conventional Synapse from 55790 -> 134149","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55790,"TargetID":134149,"Directional":true}]},{"ID":11066,"SourceStructureID":6115,"TargetStructureID":82954,"Label":"6115-82954 via Ribbon Synapse from 72244 -> 82956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72244,"TargetID":82956,"Directional":true}]},{"ID":11067,"SourceStructureID":6115,"TargetStructureID":82969,"Label":"6115-82969 via Ribbon Synapse from 72353 -> 82971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72353,"TargetID":82971,"Directional":true}]},{"ID":11068,"SourceStructureID":6115,"TargetStructureID":86246,"Label":"6115-86246 via Ribbon Synapse from 16049 -> 86247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16049,"TargetID":86247,"Directional":true}]},{"ID":11069,"SourceStructureID":6115,"TargetStructureID":90651,"Label":"6115-90651 via Ribbon Synapse from 82669 -> 90652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82669,"TargetID":90652,"Directional":true}]},{"ID":11070,"SourceStructureID":6115,"TargetStructureID":90654,"Label":"6115-90654 via Ribbon Synapse from 82669 -> 90655","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82669,"TargetID":90655,"Directional":true}]},{"ID":11071,"SourceStructureID":6117,"TargetStructureID":606,"Label":"6117-606 via Ribbon Synapse from 6967 -> 6968, 10053 -> 10052, 10056 -> 10055, 10714 -> 10709, 10715 -> 10708, 10717 -> 10706, 12318 -> 12319, 30887 -> 10713, 51326 -> 51327, 51334 -> 51335, 51530 -> 51368, 51546 -> 10718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6967,"TargetID":6968,"Directional":true},{"SourceID":10053,"TargetID":10052,"Directional":true},{"SourceID":10056,"TargetID":10055,"Directional":true},{"SourceID":10714,"TargetID":10709,"Directional":true},{"SourceID":10715,"TargetID":10708,"Directional":true},{"SourceID":10717,"TargetID":10706,"Directional":true},{"SourceID":12318,"TargetID":12319,"Directional":true},{"SourceID":30887,"TargetID":10713,"Directional":true},{"SourceID":51326,"TargetID":51327,"Directional":true},{"SourceID":51334,"TargetID":51335,"Directional":true},{"SourceID":51530,"TargetID":51368,"Directional":true},{"SourceID":51546,"TargetID":10718,"Directional":true}]},{"ID":11072,"SourceStructureID":6117,"TargetStructureID":5377,"Label":"6117-5377 via BC Conventional Synapse from 86374 -> 87085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":86374,"TargetID":87085,"Directional":true}]},{"ID":11073,"SourceStructureID":6117,"TargetStructureID":5377,"Label":"6117-5377 via Ribbon Synapse from 86400 -> 87087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86400,"TargetID":87087,"Directional":true}]},{"ID":11074,"SourceStructureID":6117,"TargetStructureID":5489,"Label":"6117-5489 via Ribbon Synapse from 85960 -> 85962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85960,"TargetID":85962,"Directional":true}]},{"ID":11075,"SourceStructureID":6117,"TargetStructureID":6300,"Label":"6117-6300 via Ribbon Synapse from 20587 -> 86241, 30902 -> 86358","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20587,"TargetID":86241,"Directional":true},{"SourceID":30902,"TargetID":86358,"Directional":true}]},{"ID":11076,"SourceStructureID":6117,"TargetStructureID":7594,"Label":"6117-7594 via Ribbon Synapse from 10717 -> 25096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10717,"TargetID":25096,"Directional":true}]},{"ID":11077,"SourceStructureID":6117,"TargetStructureID":9769,"Label":"6117-9769 via Ribbon Synapse from 6967 -> 51270, 10526 -> 12566, 10715 -> 51305, 22385 -> 84190, 30883 -> 84247, 45117 -> 45118, 51326 -> 11268, 51546 -> 84173, 54012 -> 83281, 54285 -> 23929, 58594 -> 83130, 86013 -> 86075","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6967,"TargetID":51270,"Directional":true},{"SourceID":10526,"TargetID":12566,"Directional":true},{"SourceID":10715,"TargetID":51305,"Directional":true},{"SourceID":22385,"TargetID":84190,"Directional":true},{"SourceID":30883,"TargetID":84247,"Directional":true},{"SourceID":45117,"TargetID":45118,"Directional":true},{"SourceID":51326,"TargetID":11268,"Directional":true},{"SourceID":51546,"TargetID":84173,"Directional":true},{"SourceID":54012,"TargetID":83281,"Directional":true},{"SourceID":54285,"TargetID":23929,"Directional":true},{"SourceID":58594,"TargetID":83130,"Directional":true},{"SourceID":86013,"TargetID":86075,"Directional":true}]},{"ID":11078,"SourceStructureID":6117,"TargetStructureID":15796,"Label":"6117-15796 via Ribbon Synapse from 83934 -> 83937","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83934,"TargetID":83937,"Directional":true}]},{"ID":11079,"SourceStructureID":6117,"TargetStructureID":18693,"Label":"6117-18693 via Ribbon Synapse from 84221 -> 27325","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84221,"TargetID":27325,"Directional":true}]},{"ID":11080,"SourceStructureID":6117,"TargetStructureID":30567,"Label":"6117-30567 via Ribbon Synapse from 20585 -> 32088","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20585,"TargetID":32088,"Directional":true}]},{"ID":11081,"SourceStructureID":6117,"TargetStructureID":32035,"Label":"6117-32035 via Adherens from 86085 -> 86352","Type":"Adherens","Directional":true,"Links":[{"SourceID":86085,"TargetID":86352,"Directional":true}]},{"ID":11082,"SourceStructureID":6117,"TargetStructureID":32035,"Label":"6117-32035 via Ribbon Synapse from 10526 -> 41661","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10526,"TargetID":41661,"Directional":true}]},{"ID":11083,"SourceStructureID":6117,"TargetStructureID":35811,"Label":"6117-35811 via Ribbon Synapse from 30908 -> 35846, 30922 -> 35851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30908,"TargetID":35846,"Directional":true},{"SourceID":30922,"TargetID":35851,"Directional":true}]},{"ID":11084,"SourceStructureID":6117,"TargetStructureID":35894,"Label":"6117-35894 via Ribbon Synapse from 30931 -> 35923","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30931,"TargetID":35923,"Directional":true}]},{"ID":11085,"SourceStructureID":6117,"TargetStructureID":35975,"Label":"6117-35975 via Ribbon Synapse from 30892 -> 35997, 85986 -> 85988","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30892,"TargetID":35997,"Directional":true},{"SourceID":85986,"TargetID":85988,"Directional":true}]},{"ID":11086,"SourceStructureID":6117,"TargetStructureID":40844,"Label":"6117-40844 via Ribbon Synapse from 10532 -> 40846","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10532,"TargetID":40846,"Directional":true}]},{"ID":11087,"SourceStructureID":6117,"TargetStructureID":40880,"Label":"6117-40880 via Ribbon Synapse from 121987 -> 121988","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121987,"TargetID":121988,"Directional":true}]},{"ID":11088,"SourceStructureID":6117,"TargetStructureID":45220,"Label":"6117-45220 via Ribbon Synapse from 30927 -> 86511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30927,"TargetID":86511,"Directional":true}]},{"ID":11089,"SourceStructureID":6117,"TargetStructureID":54006,"Label":"6117-54006 via Ribbon Synapse from 22385 -> 54009, 54012 -> 83283","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22385,"TargetID":54009,"Directional":true},{"SourceID":54012,"TargetID":83283,"Directional":true}]},{"ID":11090,"SourceStructureID":6117,"TargetStructureID":54078,"Label":"6117-54078 via Ribbon Synapse from 30883 -> 84246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30883,"TargetID":84246,"Directional":true}]},{"ID":11091,"SourceStructureID":6117,"TargetStructureID":54287,"Label":"6117-54287 via Ribbon Synapse from 54294 -> 54293, 85411 -> 85414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54294,"TargetID":54293,"Directional":true},{"SourceID":85411,"TargetID":85414,"Directional":true}]},{"ID":11092,"SourceStructureID":6117,"TargetStructureID":55517,"Label":"6117-55517 via Ribbon Synapse from 55577 -> 55578, 55593 -> 55592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55577,"TargetID":55578,"Directional":true},{"SourceID":55593,"TargetID":55592,"Directional":true}]},{"ID":11093,"SourceStructureID":6117,"TargetStructureID":56841,"Label":"6117-56841 via Ribbon Synapse from 83944 -> 83948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83944,"TargetID":83948,"Directional":true}]},{"ID":11094,"SourceStructureID":6117,"TargetStructureID":58592,"Label":"6117-58592 via Ribbon Synapse from 20573 -> 86144, 30908 -> 58639, 30916 -> 58640, 58594 -> 83129","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20573,"TargetID":86144,"Directional":true},{"SourceID":30908,"TargetID":58639,"Directional":true},{"SourceID":30916,"TargetID":58640,"Directional":true},{"SourceID":58594,"TargetID":83129,"Directional":true}]},{"ID":11095,"SourceStructureID":6117,"TargetStructureID":58687,"Label":"6117-58687 via Ribbon Synapse from 85999 -> 86006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85999,"TargetID":86006,"Directional":true}]},{"ID":11096,"SourceStructureID":6117,"TargetStructureID":58691,"Label":"6117-58691 via Ribbon Synapse from 10539 -> 84935, 84859 -> 84865, 84959 -> 84961, 84964 -> 84967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10539,"TargetID":84935,"Directional":true},{"SourceID":84859,"TargetID":84865,"Directional":true},{"SourceID":84959,"TargetID":84961,"Directional":true},{"SourceID":84964,"TargetID":84967,"Directional":true}]},{"ID":11097,"SourceStructureID":6117,"TargetStructureID":58714,"Label":"6117-58714 via Ribbon Synapse from 20573 -> 86142, 30910 -> 86414, 30916 -> 86484, 58731 -> 58730","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20573,"TargetID":86142,"Directional":true},{"SourceID":30910,"TargetID":86414,"Directional":true},{"SourceID":30916,"TargetID":86484,"Directional":true},{"SourceID":58731,"TargetID":58730,"Directional":true}]},{"ID":11098,"SourceStructureID":6117,"TargetStructureID":58723,"Label":"6117-58723 via Ribbon Synapse from 20570 -> 58727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20570,"TargetID":58727,"Directional":true}]},{"ID":11099,"SourceStructureID":6117,"TargetStructureID":58741,"Label":"6117-58741 via Ribbon Synapse from 30911 -> 58743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30911,"TargetID":58743,"Directional":true}]},{"ID":11100,"SourceStructureID":6117,"TargetStructureID":58775,"Label":"6117-58775 via Ribbon Synapse from 30917 -> 58776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30917,"TargetID":58776,"Directional":true}]},{"ID":11101,"SourceStructureID":6117,"TargetStructureID":58777,"Label":"6117-58777 via Ribbon Synapse from 30927 -> 58778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30927,"TargetID":58778,"Directional":true}]},{"ID":11102,"SourceStructureID":6117,"TargetStructureID":58816,"Label":"6117-58816 via Ribbon Synapse from 85986 -> 85987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85986,"TargetID":85987,"Directional":true}]},{"ID":11103,"SourceStructureID":6117,"TargetStructureID":58825,"Label":"6117-58825 via Ribbon Synapse from 58811 -> 58826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58811,"TargetID":58826,"Directional":true}]},{"ID":11104,"SourceStructureID":6117,"TargetStructureID":59008,"Label":"6117-59008 via Ribbon Synapse from 58811 -> 59010","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58811,"TargetID":59010,"Directional":true}]},{"ID":11105,"SourceStructureID":6117,"TargetStructureID":59482,"Label":"6117-59482 via Ribbon Synapse from 51530 -> 84654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51530,"TargetID":84654,"Directional":true}]},{"ID":11106,"SourceStructureID":6117,"TargetStructureID":66374,"Label":"6117-66374 via Ribbon Synapse from 30879 -> 66377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30879,"TargetID":66377,"Directional":true}]},{"ID":11107,"SourceStructureID":6117,"TargetStructureID":66523,"Label":"6117-66523 via Ribbon Synapse from 30869 -> 77928","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30869,"TargetID":77928,"Directional":true}]},{"ID":11108,"SourceStructureID":6117,"TargetStructureID":68539,"Label":"6117-68539 via Ribbon Synapse from 84371 -> 84381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84371,"TargetID":84381,"Directional":true}]},{"ID":11109,"SourceStructureID":6117,"TargetStructureID":70388,"Label":"6117-70388 via Ribbon Synapse from 70387 -> 70389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70387,"TargetID":70389,"Directional":true}]},{"ID":11110,"SourceStructureID":6117,"TargetStructureID":70454,"Label":"6117-70454 via Ribbon Synapse from 84198 -> 89562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84198,"TargetID":89562,"Directional":true}]},{"ID":11111,"SourceStructureID":6117,"TargetStructureID":70460,"Label":"6117-70460 via Ribbon Synapse from 30885 -> 70461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30885,"TargetID":70461,"Directional":true}]},{"ID":11112,"SourceStructureID":6117,"TargetStructureID":70476,"Label":"6117-70476 via Ribbon Synapse from 30934 -> 70477","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30934,"TargetID":70477,"Directional":true}]},{"ID":11113,"SourceStructureID":6117,"TargetStructureID":75583,"Label":"6117-75583 via Ribbon Synapse from 83209 -> 83210","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83209,"TargetID":83210,"Directional":true}]},{"ID":11114,"SourceStructureID":6117,"TargetStructureID":82704,"Label":"6117-82704 via Ribbon Synapse from 20577 -> 86181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20577,"TargetID":86181,"Directional":true}]},{"ID":11115,"SourceStructureID":6117,"TargetStructureID":83147,"Label":"6117-83147 via Ribbon Synapse from 83150 -> 83153","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83150,"TargetID":83153,"Directional":true}]},{"ID":11116,"SourceStructureID":6117,"TargetStructureID":83157,"Label":"6117-83157 via Ribbon Synapse from 83196 -> 83198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83196,"TargetID":83198,"Directional":true}]},{"ID":11117,"SourceStructureID":6117,"TargetStructureID":83161,"Label":"6117-83161 via Ribbon Synapse from 83196 -> 83197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83196,"TargetID":83197,"Directional":true}]},{"ID":11118,"SourceStructureID":6117,"TargetStructureID":83163,"Label":"6117-83163 via Ribbon Synapse from 83146 -> 83164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83146,"TargetID":83164,"Directional":true}]},{"ID":11119,"SourceStructureID":6117,"TargetStructureID":83165,"Label":"6117-83165 via Ribbon Synapse from 83146 -> 83166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83146,"TargetID":83166,"Directional":true}]},{"ID":11120,"SourceStructureID":6117,"TargetStructureID":83186,"Label":"6117-83186 via Ribbon Synapse from 83146 -> 83188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83146,"TargetID":83188,"Directional":true}]},{"ID":11121,"SourceStructureID":6117,"TargetStructureID":83204,"Label":"6117-83204 via Ribbon Synapse from 30888 -> 83207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30888,"TargetID":83207,"Directional":true}]},{"ID":11122,"SourceStructureID":6117,"TargetStructureID":83205,"Label":"6117-83205 via Ribbon Synapse from 30888 -> 83208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30888,"TargetID":83208,"Directional":true}]},{"ID":11123,"SourceStructureID":6117,"TargetStructureID":83211,"Label":"6117-83211 via Ribbon Synapse from 83209 -> 83212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83209,"TargetID":83212,"Directional":true}]},{"ID":11124,"SourceStructureID":6117,"TargetStructureID":83214,"Label":"6117-83214 via Ribbon Synapse from 83209 -> 83215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83209,"TargetID":83215,"Directional":true}]},{"ID":11125,"SourceStructureID":6117,"TargetStructureID":83246,"Label":"6117-83246 via Ribbon Synapse from 30925 -> 83247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30925,"TargetID":83247,"Directional":true}]},{"ID":11126,"SourceStructureID":6117,"TargetStructureID":83248,"Label":"6117-83248 via Ribbon Synapse from 30925 -> 83249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30925,"TargetID":83249,"Directional":true}]},{"ID":11127,"SourceStructureID":6117,"TargetStructureID":83253,"Label":"6117-83253 via Ribbon Synapse from 83252 -> 83254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83252,"TargetID":83254,"Directional":true}]},{"ID":11128,"SourceStructureID":6117,"TargetStructureID":83255,"Label":"6117-83255 via Ribbon Synapse from 83252 -> 83256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83252,"TargetID":83256,"Directional":true}]},{"ID":11129,"SourceStructureID":6117,"TargetStructureID":83270,"Label":"6117-83270 via Ribbon Synapse from 30867 -> 83271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30867,"TargetID":83271,"Directional":true}]},{"ID":11130,"SourceStructureID":6117,"TargetStructureID":83272,"Label":"6117-83272 via Ribbon Synapse from 30867 -> 83273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30867,"TargetID":83273,"Directional":true}]},{"ID":11131,"SourceStructureID":6117,"TargetStructureID":83282,"Label":"6117-83282 via Ribbon Synapse from 54012 -> 83284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54012,"TargetID":83284,"Directional":true}]},{"ID":11132,"SourceStructureID":6117,"TargetStructureID":83288,"Label":"6117-83288 via Ribbon Synapse from 30869 -> 83289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30869,"TargetID":83289,"Directional":true}]},{"ID":11133,"SourceStructureID":6117,"TargetStructureID":83290,"Label":"6117-83290 via Ribbon Synapse from 30869 -> 83291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30869,"TargetID":83291,"Directional":true}]},{"ID":11134,"SourceStructureID":6117,"TargetStructureID":83935,"Label":"6117-83935 via Ribbon Synapse from 83934 -> 83936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83934,"TargetID":83936,"Directional":true}]},{"ID":11135,"SourceStructureID":6117,"TargetStructureID":83949,"Label":"6117-83949 via Ribbon Synapse from 83944 -> 83950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83944,"TargetID":83950,"Directional":true}]},{"ID":11136,"SourceStructureID":6117,"TargetStructureID":83951,"Label":"6117-83951 via Ribbon Synapse from 83944 -> 83952","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83944,"TargetID":83952,"Directional":true}]},{"ID":11137,"SourceStructureID":6117,"TargetStructureID":83963,"Label":"6117-83963 via Ribbon Synapse from 10717 -> 83964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10717,"TargetID":83964,"Directional":true}]},{"ID":11138,"SourceStructureID":6117,"TargetStructureID":83972,"Label":"6117-83972 via Ribbon Synapse from 83971 -> 83973","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83971,"TargetID":83973,"Directional":true}]},{"ID":11139,"SourceStructureID":6117,"TargetStructureID":83974,"Label":"6117-83974 via Ribbon Synapse from 30871 -> 83977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30871,"TargetID":83977,"Directional":true}]},{"ID":11140,"SourceStructureID":6117,"TargetStructureID":83975,"Label":"6117-83975 via Ribbon Synapse from 30871 -> 83976","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30871,"TargetID":83976,"Directional":true}]},{"ID":11141,"SourceStructureID":6117,"TargetStructureID":84136,"Label":"6117-84136 via Ribbon Synapse from 51546 -> 84139","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51546,"TargetID":84139,"Directional":true}]},{"ID":11142,"SourceStructureID":6117,"TargetStructureID":84151,"Label":"6117-84151 via Ribbon Synapse from 84153 -> 84154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84153,"TargetID":84154,"Directional":true}]},{"ID":11143,"SourceStructureID":6117,"TargetStructureID":84165,"Label":"6117-84165 via Ribbon Synapse from 45117 -> 84166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45117,"TargetID":84166,"Directional":true}]},{"ID":11144,"SourceStructureID":6117,"TargetStructureID":84188,"Label":"6117-84188 via Ribbon Synapse from 22385 -> 84189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22385,"TargetID":84189,"Directional":true}]},{"ID":11145,"SourceStructureID":6117,"TargetStructureID":84201,"Label":"6117-84201 via Ribbon Synapse from 84198 -> 84202","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84198,"TargetID":84202,"Directional":true}]},{"ID":11146,"SourceStructureID":6117,"TargetStructureID":84203,"Label":"6117-84203 via Ribbon Synapse from 22389 -> 84204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22389,"TargetID":84204,"Directional":true}]},{"ID":11147,"SourceStructureID":6117,"TargetStructureID":84205,"Label":"6117-84205 via Ribbon Synapse from 22389 -> 84206","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22389,"TargetID":84206,"Directional":true}]},{"ID":11148,"SourceStructureID":6117,"TargetStructureID":84222,"Label":"6117-84222 via Ribbon Synapse from 30875 -> 84223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30875,"TargetID":84223,"Directional":true}]},{"ID":11149,"SourceStructureID":6117,"TargetStructureID":84228,"Label":"6117-84228 via Ribbon Synapse from 30880 -> 84231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30880,"TargetID":84231,"Directional":true}]},{"ID":11150,"SourceStructureID":6117,"TargetStructureID":84229,"Label":"6117-84229 via Ribbon Synapse from 30880 -> 84230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30880,"TargetID":84230,"Directional":true}]},{"ID":11151,"SourceStructureID":6117,"TargetStructureID":84237,"Label":"6117-84237 via Ribbon Synapse from 30884 -> 84250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30884,"TargetID":84250,"Directional":true}]},{"ID":11152,"SourceStructureID":6117,"TargetStructureID":84238,"Label":"6117-84238 via Ribbon Synapse from 30884 -> 84249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30884,"TargetID":84249,"Directional":true}]},{"ID":11153,"SourceStructureID":6117,"TargetStructureID":84256,"Label":"6117-84256 via Ribbon Synapse from 84213 -> 84257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84213,"TargetID":84257,"Directional":true}]},{"ID":11154,"SourceStructureID":6117,"TargetStructureID":84482,"Label":"6117-84482 via Ribbon Synapse from 51326 -> 84484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51326,"TargetID":84484,"Directional":true}]},{"ID":11155,"SourceStructureID":6117,"TargetStructureID":84650,"Label":"6117-84650 via Ribbon Synapse from 84646 -> 84651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84646,"TargetID":84651,"Directional":true}]},{"ID":11156,"SourceStructureID":6117,"TargetStructureID":84652,"Label":"6117-84652 via Ribbon Synapse from 84646 -> 84653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84646,"TargetID":84653,"Directional":true}]},{"ID":11157,"SourceStructureID":6117,"TargetStructureID":84790,"Label":"6117-84790 via Ribbon Synapse from 10529 -> 84856, 10539 -> 84932","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10529,"TargetID":84856,"Directional":true},{"SourceID":10539,"TargetID":84932,"Directional":true}]},{"ID":11158,"SourceStructureID":6117,"TargetStructureID":84858,"Label":"6117-84858 via Ribbon Synapse from 84859 -> 84860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84859,"TargetID":84860,"Directional":true}]},{"ID":11159,"SourceStructureID":6117,"TargetStructureID":84861,"Label":"6117-84861 via Ribbon Synapse from 84859 -> 84862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84859,"TargetID":84862,"Directional":true}]},{"ID":11160,"SourceStructureID":6117,"TargetStructureID":84948,"Label":"6117-84948 via Ribbon Synapse from 30895 -> 84949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30895,"TargetID":84949,"Directional":true}]},{"ID":11161,"SourceStructureID":6117,"TargetStructureID":84950,"Label":"6117-84950 via Ribbon Synapse from 30891 -> 84952","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30891,"TargetID":84952,"Directional":true}]},{"ID":11162,"SourceStructureID":6117,"TargetStructureID":84957,"Label":"6117-84957 via BC Conventional Synapse from 86093 -> 86094","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":86093,"TargetID":86094,"Directional":true}]},{"ID":11163,"SourceStructureID":6117,"TargetStructureID":84957,"Label":"6117-84957 via Ribbon Synapse from 84959 -> 84960","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84959,"TargetID":84960,"Directional":true}]},{"ID":11164,"SourceStructureID":6117,"TargetStructureID":84965,"Label":"6117-84965 via Ribbon Synapse from 84964 -> 84966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84964,"TargetID":84966,"Directional":true}]},{"ID":11165,"SourceStructureID":6117,"TargetStructureID":85013,"Label":"6117-85013 via Ribbon Synapse from 85012 -> 85014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85012,"TargetID":85014,"Directional":true}]},{"ID":11166,"SourceStructureID":6117,"TargetStructureID":85015,"Label":"6117-85015 via Ribbon Synapse from 30899 -> 85283","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30899,"TargetID":85283,"Directional":true}]},{"ID":11167,"SourceStructureID":6117,"TargetStructureID":85235,"Label":"6117-85235 via Ribbon Synapse from 85223 -> 85238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85223,"TargetID":85238,"Directional":true}]},{"ID":11168,"SourceStructureID":6117,"TargetStructureID":85239,"Label":"6117-85239 via Ribbon Synapse from 30897 -> 85242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30897,"TargetID":85242,"Directional":true}]},{"ID":11169,"SourceStructureID":6117,"TargetStructureID":85240,"Label":"6117-85240 via Ribbon Synapse from 30897 -> 85241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30897,"TargetID":85241,"Directional":true}]},{"ID":11170,"SourceStructureID":6117,"TargetStructureID":85279,"Label":"6117-85279 via Ribbon Synapse from 30899 -> 85282, 85280 -> 85281","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30899,"TargetID":85282,"Directional":true},{"SourceID":85280,"TargetID":85281,"Directional":true}]},{"ID":11171,"SourceStructureID":6117,"TargetStructureID":85317,"Label":"6117-85317 via Ribbon Synapse from 54285 -> 85318","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54285,"TargetID":85318,"Directional":true}]},{"ID":11172,"SourceStructureID":6117,"TargetStructureID":85404,"Label":"6117-85404 via Ribbon Synapse from 85403 -> 85407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85403,"TargetID":85407,"Directional":true}]},{"ID":11173,"SourceStructureID":6117,"TargetStructureID":85405,"Label":"6117-85405 via Ribbon Synapse from 85403 -> 85406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85403,"TargetID":85406,"Directional":true}]},{"ID":11174,"SourceStructureID":6117,"TargetStructureID":85412,"Label":"6117-85412 via Ribbon Synapse from 85411 -> 85413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85411,"TargetID":85413,"Directional":true}]},{"ID":11175,"SourceStructureID":6117,"TargetStructureID":85661,"Label":"6117-85661 via Ribbon Synapse from 58803 -> 85663, 86013 -> 86076, 86074 -> 86079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58803,"TargetID":85663,"Directional":true},{"SourceID":86013,"TargetID":86076,"Directional":true},{"SourceID":86074,"TargetID":86079,"Directional":true}]},{"ID":11176,"SourceStructureID":6117,"TargetStructureID":85891,"Label":"6117-85891 via Ribbon Synapse from 58804 -> 85923, 58806 -> 85894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58804,"TargetID":85923,"Directional":true},{"SourceID":58806,"TargetID":85894,"Directional":true}]},{"ID":11177,"SourceStructureID":6117,"TargetStructureID":85905,"Label":"6117-85905 via Ribbon Synapse from 58804 -> 85922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58804,"TargetID":85922,"Directional":true}]},{"ID":11178,"SourceStructureID":6117,"TargetStructureID":85931,"Label":"6117-85931 via Ribbon Synapse from 58805 -> 85934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58805,"TargetID":85934,"Directional":true}]},{"ID":11179,"SourceStructureID":6117,"TargetStructureID":85932,"Label":"6117-85932 via Ribbon Synapse from 58805 -> 85933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58805,"TargetID":85933,"Directional":true}]},{"ID":11180,"SourceStructureID":6117,"TargetStructureID":85955,"Label":"6117-85955 via Ribbon Synapse from 85960 -> 85961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85960,"TargetID":85961,"Directional":true}]},{"ID":11181,"SourceStructureID":6117,"TargetStructureID":85964,"Label":"6117-85964 via Ribbon Synapse from 58808 -> 85967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58808,"TargetID":85967,"Directional":true}]},{"ID":11182,"SourceStructureID":6117,"TargetStructureID":85965,"Label":"6117-85965 via Ribbon Synapse from 58808 -> 85966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58808,"TargetID":85966,"Directional":true}]},{"ID":11183,"SourceStructureID":6117,"TargetStructureID":86004,"Label":"6117-86004 via Ribbon Synapse from 85999 -> 86005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85999,"TargetID":86005,"Directional":true}]},{"ID":11184,"SourceStructureID":6117,"TargetStructureID":86010,"Label":"6117-86010 via Ribbon Synapse from 10528 -> 86011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10528,"TargetID":86011,"Directional":true}]},{"ID":11185,"SourceStructureID":6117,"TargetStructureID":86017,"Label":"6117-86017 via Ribbon Synapse from 86016 -> 86018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86016,"TargetID":86018,"Directional":true}]},{"ID":11186,"SourceStructureID":6117,"TargetStructureID":86042,"Label":"6117-86042 via Ribbon Synapse from 10534 -> 86043","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10534,"TargetID":86043,"Directional":true}]},{"ID":11187,"SourceStructureID":6117,"TargetStructureID":86070,"Label":"6117-86070 via Ribbon Synapse from 59085 -> 86071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59085,"TargetID":86071,"Directional":true}]},{"ID":11188,"SourceStructureID":6117,"TargetStructureID":86072,"Label":"6117-86072 via Ribbon Synapse from 59085 -> 86073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59085,"TargetID":86073,"Directional":true}]},{"ID":11189,"SourceStructureID":6117,"TargetStructureID":86077,"Label":"6117-86077 via Ribbon Synapse from 86074 -> 86078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86074,"TargetID":86078,"Directional":true}]},{"ID":11190,"SourceStructureID":6117,"TargetStructureID":86110,"Label":"6117-86110 via Ribbon Synapse from 20573 -> 86143, 58731 -> 86111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20573,"TargetID":86143,"Directional":true},{"SourceID":58731,"TargetID":86111,"Directional":true}]},{"ID":11191,"SourceStructureID":6117,"TargetStructureID":86114,"Label":"6117-86114 via Ribbon Synapse from 86113 -> 86117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86113,"TargetID":86117,"Directional":true}]},{"ID":11192,"SourceStructureID":6117,"TargetStructureID":86145,"Label":"6117-86145 via Ribbon Synapse from 86127 -> 86146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86127,"TargetID":86146,"Directional":true}]},{"ID":11193,"SourceStructureID":6117,"TargetStructureID":86147,"Label":"6117-86147 via Ribbon Synapse from 86127 -> 86148","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86127,"TargetID":86148,"Directional":true}]},{"ID":11194,"SourceStructureID":6117,"TargetStructureID":86149,"Label":"6117-86149 via Ribbon Synapse from 86127 -> 86150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86127,"TargetID":86150,"Directional":true}]},{"ID":11195,"SourceStructureID":6117,"TargetStructureID":86165,"Label":"6117-86165 via Ribbon Synapse from 86186 -> 86189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86186,"TargetID":86189,"Directional":true}]},{"ID":11196,"SourceStructureID":6117,"TargetStructureID":86178,"Label":"6117-86178 via Ribbon Synapse from 20577 -> 86180","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20577,"TargetID":86180,"Directional":true}]},{"ID":11197,"SourceStructureID":6117,"TargetStructureID":86182,"Label":"6117-86182 via Ribbon Synapse from 20576 -> 86183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20576,"TargetID":86183,"Directional":true}]},{"ID":11198,"SourceStructureID":6117,"TargetStructureID":86192,"Label":"6117-86192 via Ribbon Synapse from 20581 -> 86197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20581,"TargetID":86197,"Directional":true}]},{"ID":11199,"SourceStructureID":6117,"TargetStructureID":86198,"Label":"6117-86198 via Ribbon Synapse from 20581 -> 86199","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20581,"TargetID":86199,"Directional":true}]},{"ID":11200,"SourceStructureID":6117,"TargetStructureID":86201,"Label":"6117-86201 via Ribbon Synapse from 20579 -> 86203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20579,"TargetID":86203,"Directional":true}]},{"ID":11201,"SourceStructureID":6117,"TargetStructureID":86209,"Label":"6117-86209 via Ribbon Synapse from 20583 -> 86213","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20583,"TargetID":86213,"Directional":true}]},{"ID":11202,"SourceStructureID":6117,"TargetStructureID":86210,"Label":"6117-86210 via Ribbon Synapse from 20583 -> 86214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20583,"TargetID":86214,"Directional":true}]},{"ID":11203,"SourceStructureID":6117,"TargetStructureID":86211,"Label":"6117-86211 via Ribbon Synapse from 20583 -> 86212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20583,"TargetID":86212,"Directional":true}]},{"ID":11204,"SourceStructureID":6117,"TargetStructureID":86215,"Label":"6117-86215 via Ribbon Synapse from 20582 -> 86216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20582,"TargetID":86216,"Directional":true}]},{"ID":11205,"SourceStructureID":6117,"TargetStructureID":86237,"Label":"6117-86237 via Ribbon Synapse from 20585 -> 86238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20585,"TargetID":86238,"Directional":true}]},{"ID":11206,"SourceStructureID":6117,"TargetStructureID":86246,"Label":"6117-86246 via BC Conventional Synapse from 86248 -> 86249","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":86248,"TargetID":86249,"Directional":true}]},{"ID":11207,"SourceStructureID":6117,"TargetStructureID":86246,"Label":"6117-86246 via Ribbon Synapse from 20589 -> 86250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20589,"TargetID":86250,"Directional":true}]},{"ID":11208,"SourceStructureID":6117,"TargetStructureID":86254,"Label":"6117-86254 via Ribbon Synapse from 86253 -> 86255","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86253,"TargetID":86255,"Directional":true}]},{"ID":11209,"SourceStructureID":6117,"TargetStructureID":86268,"Label":"6117-86268 via Ribbon Synapse from 30933 -> 86269","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30933,"TargetID":86269,"Directional":true}]},{"ID":11210,"SourceStructureID":6117,"TargetStructureID":86272,"Label":"6117-86272 via Ribbon Synapse from 30931 -> 86273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30931,"TargetID":86273,"Directional":true}]},{"ID":11211,"SourceStructureID":6117,"TargetStructureID":86274,"Label":"6117-86274 via Ribbon Synapse from 30932 -> 86275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30932,"TargetID":86275,"Directional":true}]},{"ID":11212,"SourceStructureID":6117,"TargetStructureID":86282,"Label":"6117-86282 via BC Conventional Synapse from 86284 -> 86283, 86290 -> 86291","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":86284,"TargetID":86283,"Directional":true},{"SourceID":86290,"TargetID":86291,"Directional":true}]},{"ID":11213,"SourceStructureID":6117,"TargetStructureID":86330,"Label":"6117-86330 via Ribbon Synapse from 86336 -> 86333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86336,"TargetID":86333,"Directional":true}]},{"ID":11214,"SourceStructureID":6117,"TargetStructureID":86334,"Label":"6117-86334 via Ribbon Synapse from 86336 -> 86337","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86336,"TargetID":86337,"Directional":true}]},{"ID":11215,"SourceStructureID":6117,"TargetStructureID":86345,"Label":"6117-86345 via Postsynapse from 86344 -> 86346","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":86344,"TargetID":86346,"Directional":true}]},{"ID":11216,"SourceStructureID":6117,"TargetStructureID":86356,"Label":"6117-86356 via Ribbon Synapse from 30902 -> 86357","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30902,"TargetID":86357,"Directional":true}]},{"ID":11217,"SourceStructureID":6117,"TargetStructureID":86366,"Label":"6117-86366 via Ribbon Synapse from 30907 -> 86406, 86365 -> 86367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30907,"TargetID":86406,"Directional":true},{"SourceID":86365,"TargetID":86367,"Directional":true}]},{"ID":11218,"SourceStructureID":6117,"TargetStructureID":86383,"Label":"6117-86383 via Ribbon Synapse from 30930 -> 86384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30930,"TargetID":86384,"Directional":true}]},{"ID":11219,"SourceStructureID":6117,"TargetStructureID":86385,"Label":"6117-86385 via Ribbon Synapse from 30930 -> 86386","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30930,"TargetID":86386,"Directional":true}]},{"ID":11220,"SourceStructureID":6117,"TargetStructureID":86391,"Label":"6117-86391 via Ribbon Synapse from 30906 -> 86394","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30906,"TargetID":86394,"Directional":true}]},{"ID":11221,"SourceStructureID":6117,"TargetStructureID":86395,"Label":"6117-86395 via Ribbon Synapse from 30906 -> 86396","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30906,"TargetID":86396,"Directional":true}]},{"ID":11222,"SourceStructureID":6117,"TargetStructureID":86397,"Label":"6117-86397 via Ribbon Synapse from 86400 -> 86401","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86400,"TargetID":86401,"Directional":true}]},{"ID":11223,"SourceStructureID":6117,"TargetStructureID":86402,"Label":"6117-86402 via Ribbon Synapse from 86400 -> 86403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86400,"TargetID":86403,"Directional":true}]},{"ID":11224,"SourceStructureID":6117,"TargetStructureID":86412,"Label":"6117-86412 via Ribbon Synapse from 30910 -> 86413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30910,"TargetID":86413,"Directional":true}]},{"ID":11225,"SourceStructureID":6117,"TargetStructureID":86418,"Label":"6117-86418 via Ribbon Synapse from 30911 -> 86419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30911,"TargetID":86419,"Directional":true}]},{"ID":11226,"SourceStructureID":6117,"TargetStructureID":86422,"Label":"6117-86422 via Ribbon Synapse from 30913 -> 86423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30913,"TargetID":86423,"Directional":true}]},{"ID":11227,"SourceStructureID":6117,"TargetStructureID":86435,"Label":"6117-86435 via Ribbon Synapse from 30914 -> 86436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30914,"TargetID":86436,"Directional":true}]},{"ID":11228,"SourceStructureID":6117,"TargetStructureID":86444,"Label":"6117-86444 via Ribbon Synapse from 86443 -> 86446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86443,"TargetID":86446,"Directional":true}]},{"ID":11229,"SourceStructureID":6117,"TargetStructureID":86449,"Label":"6117-86449 via Ribbon Synapse from 86443 -> 86452","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86443,"TargetID":86452,"Directional":true}]},{"ID":11230,"SourceStructureID":6117,"TargetStructureID":86462,"Label":"6117-86462 via Ribbon Synapse from 30929 -> 86463","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30929,"TargetID":86463,"Directional":true}]},{"ID":11231,"SourceStructureID":6117,"TargetStructureID":86464,"Label":"6117-86464 via Ribbon Synapse from 30929 -> 86465","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30929,"TargetID":86465,"Directional":true}]},{"ID":11232,"SourceStructureID":6117,"TargetStructureID":86466,"Label":"6117-86466 via Ribbon Synapse from 30929 -> 86467","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30929,"TargetID":86467,"Directional":true}]},{"ID":11233,"SourceStructureID":6117,"TargetStructureID":86479,"Label":"6117-86479 via Ribbon Synapse from 30916 -> 86480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30916,"TargetID":86480,"Directional":true}]},{"ID":11234,"SourceStructureID":6117,"TargetStructureID":86502,"Label":"6117-86502 via Ribbon Synapse from 30917 -> 86503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30917,"TargetID":86503,"Directional":true}]},{"ID":11235,"SourceStructureID":6117,"TargetStructureID":86516,"Label":"6117-86516 via Ribbon Synapse from 30928 -> 86517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30928,"TargetID":86517,"Directional":true}]},{"ID":11236,"SourceStructureID":6117,"TargetStructureID":86518,"Label":"6117-86518 via Ribbon Synapse from 30928 -> 86519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30928,"TargetID":86519,"Directional":true}]},{"ID":11237,"SourceStructureID":6117,"TargetStructureID":86565,"Label":"6117-86565 via Ribbon Synapse from 86090 -> 86566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86090,"TargetID":86566,"Directional":true}]},{"ID":11238,"SourceStructureID":6117,"TargetStructureID":86607,"Label":"6117-86607 via Ribbon Synapse from 30922 -> 86618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30922,"TargetID":86618,"Directional":true}]},{"ID":11239,"SourceStructureID":6118,"TargetStructureID":5107,"Label":"6118-5107 via Ribbon Synapse from 120673 -> 120671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120673,"TargetID":120671,"Directional":true}]},{"ID":11240,"SourceStructureID":6118,"TargetStructureID":65020,"Label":"6118-65020 via Ribbon Synapse from 65026 -> 65022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65026,"TargetID":65022,"Directional":true}]},{"ID":11241,"SourceStructureID":6118,"TargetStructureID":65023,"Label":"6118-65023 via Ribbon Synapse from 65033 -> 65034","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65033,"TargetID":65034,"Directional":true}]},{"ID":11242,"SourceStructureID":6118,"TargetStructureID":65035,"Label":"6118-65035 via Ribbon Synapse from 65033 -> 65036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65033,"TargetID":65036,"Directional":true}]},{"ID":11243,"SourceStructureID":6118,"TargetStructureID":65047,"Label":"6118-65047 via Ribbon Synapse from 65026 -> 65048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65026,"TargetID":65048,"Directional":true}]},{"ID":11244,"SourceStructureID":6118,"TargetStructureID":136700,"Label":"6118-136700 via BC Conventional Synapse from 136699 -> 136701","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":136699,"TargetID":136701,"Directional":true}]},{"ID":11245,"SourceStructureID":6120,"TargetStructureID":598,"Label":"6120-598 via Ribbon Synapse from 61176 -> 111236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61176,"TargetID":111236,"Directional":true}]},{"ID":11246,"SourceStructureID":6120,"TargetStructureID":606,"Label":"6120-606 via Ribbon Synapse from 51491 -> 51492, 51495 -> 51496, 51500 -> 51502, 51505 -> 51504, 51519 -> 50969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51491,"TargetID":51492,"Directional":true},{"SourceID":51495,"TargetID":51496,"Directional":true},{"SourceID":51500,"TargetID":51502,"Directional":true},{"SourceID":51505,"TargetID":51504,"Directional":true},{"SourceID":51519,"TargetID":50969,"Directional":true}]},{"ID":11247,"SourceStructureID":6120,"TargetStructureID":5107,"Label":"6120-5107 via Ribbon Synapse from 111678 -> 111682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111678,"TargetID":111682,"Directional":true}]},{"ID":11248,"SourceStructureID":6120,"TargetStructureID":7594,"Label":"6120-7594 via Ribbon Synapse from 111246 -> 25084, 111669 -> 111675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111246,"TargetID":25084,"Directional":true},{"SourceID":111669,"TargetID":111675,"Directional":true}]},{"ID":11249,"SourceStructureID":6120,"TargetStructureID":9769,"Label":"6120-9769 via Ribbon Synapse from 30179 -> 30167, 51519 -> 30166, 61191 -> 111484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30179,"TargetID":30167,"Directional":true},{"SourceID":51519,"TargetID":30166,"Directional":true},{"SourceID":61191,"TargetID":111484,"Directional":true}]},{"ID":11250,"SourceStructureID":6120,"TargetStructureID":16073,"Label":"6120-16073 via Ribbon Synapse from 61177 -> 111254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61177,"TargetID":111254,"Directional":true}]},{"ID":11251,"SourceStructureID":6120,"TargetStructureID":31334,"Label":"6120-31334 via Ribbon Synapse from 98734 -> 98733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98734,"TargetID":98733,"Directional":true}]},{"ID":11252,"SourceStructureID":6120,"TargetStructureID":32477,"Label":"6120-32477 via Ribbon Synapse from 32506 -> 32504, 101195 -> 101197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32506,"TargetID":32504,"Directional":true},{"SourceID":101195,"TargetID":101197,"Directional":true}]},{"ID":11253,"SourceStructureID":6120,"TargetStructureID":35367,"Label":"6120-35367 via Ribbon Synapse from 51500 -> 110754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51500,"TargetID":110754,"Directional":true}]},{"ID":11254,"SourceStructureID":6120,"TargetStructureID":52410,"Label":"6120-52410 via Ribbon Synapse from 37240 -> 52416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37240,"TargetID":52416,"Directional":true}]},{"ID":11255,"SourceStructureID":6120,"TargetStructureID":60491,"Label":"6120-60491 via Ribbon Synapse from 60489 -> 60493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60489,"TargetID":60493,"Directional":true}]},{"ID":11256,"SourceStructureID":6120,"TargetStructureID":60494,"Label":"6120-60494 via Ribbon Synapse from 32506 -> 60495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32506,"TargetID":60495,"Directional":true}]},{"ID":11257,"SourceStructureID":6120,"TargetStructureID":64923,"Label":"6120-64923 via Ribbon Synapse from 64929 -> 64928","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64929,"TargetID":64928,"Directional":true}]},{"ID":11258,"SourceStructureID":6120,"TargetStructureID":68539,"Label":"6120-68539 via BC Conventional Synapse from 111725 -> 111726","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111725,"TargetID":111726,"Directional":true}]},{"ID":11259,"SourceStructureID":6120,"TargetStructureID":68539,"Label":"6120-68539 via Ribbon Synapse from 110765 -> 69140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110765,"TargetID":69140,"Directional":true}]},{"ID":11260,"SourceStructureID":6120,"TargetStructureID":87428,"Label":"6120-87428 via Ribbon Synapse from 111408 -> 111409","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111408,"TargetID":111409,"Directional":true}]},{"ID":11261,"SourceStructureID":6120,"TargetStructureID":89124,"Label":"6120-89124 via Ribbon Synapse from 110549 -> 89342","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110549,"TargetID":89342,"Directional":true}]},{"ID":11262,"SourceStructureID":6120,"TargetStructureID":101184,"Label":"6120-101184 via Ribbon Synapse from 51519 -> 111488","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51519,"TargetID":111488,"Directional":true}]},{"ID":11263,"SourceStructureID":6120,"TargetStructureID":110493,"Label":"6120-110493 via Cistern Pre from 37229 -> 110495","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37229,"TargetID":110495,"Directional":true}]},{"ID":11264,"SourceStructureID":6120,"TargetStructureID":110499,"Label":"6120-110499 via BC Conventional Synapse from 37234 -> 110500","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":37234,"TargetID":110500,"Directional":true}]},{"ID":11265,"SourceStructureID":6120,"TargetStructureID":110501,"Label":"6120-110501 via Ribbon Synapse from 37235 -> 110502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37235,"TargetID":110502,"Directional":true}]},{"ID":11266,"SourceStructureID":6120,"TargetStructureID":110503,"Label":"6120-110503 via Ribbon Synapse from 37237 -> 110504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37237,"TargetID":110504,"Directional":true}]},{"ID":11267,"SourceStructureID":6120,"TargetStructureID":110506,"Label":"6120-110506 via Ribbon Synapse from 37237 -> 110507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37237,"TargetID":110507,"Directional":true}]},{"ID":11268,"SourceStructureID":6120,"TargetStructureID":110510,"Label":"6120-110510 via BC Conventional Synapse from 110508 -> 110511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110508,"TargetID":110511,"Directional":true}]},{"ID":11269,"SourceStructureID":6120,"TargetStructureID":110512,"Label":"6120-110512 via Ribbon Synapse from 37238 -> 110513","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37238,"TargetID":110513,"Directional":true}]},{"ID":11270,"SourceStructureID":6120,"TargetStructureID":110516,"Label":"6120-110516 via Ribbon Synapse from 37240 -> 110517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37240,"TargetID":110517,"Directional":true}]},{"ID":11271,"SourceStructureID":6120,"TargetStructureID":110547,"Label":"6120-110547 via Ribbon Synapse from 110546 -> 110548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110546,"TargetID":110548,"Directional":true}]},{"ID":11272,"SourceStructureID":6120,"TargetStructureID":110557,"Label":"6120-110557 via Ribbon Synapse from 110549 -> 110558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110549,"TargetID":110558,"Directional":true}]},{"ID":11273,"SourceStructureID":6120,"TargetStructureID":110567,"Label":"6120-110567 via Ribbon Synapse from 37245 -> 110569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37245,"TargetID":110569,"Directional":true}]},{"ID":11274,"SourceStructureID":6120,"TargetStructureID":110570,"Label":"6120-110570 via Ribbon Synapse from 37244 -> 110571","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37244,"TargetID":110571,"Directional":true}]},{"ID":11275,"SourceStructureID":6120,"TargetStructureID":110583,"Label":"6120-110583 via Ribbon Synapse from 37248 -> 110585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37248,"TargetID":110585,"Directional":true}]},{"ID":11276,"SourceStructureID":6120,"TargetStructureID":110586,"Label":"6120-110586 via Ribbon Synapse from 37248 -> 110587","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37248,"TargetID":110587,"Directional":true}]},{"ID":11277,"SourceStructureID":6120,"TargetStructureID":110595,"Label":"6120-110595 via Ribbon Synapse from 37250 -> 110596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37250,"TargetID":110596,"Directional":true}]},{"ID":11278,"SourceStructureID":6120,"TargetStructureID":110607,"Label":"6120-110607 via BC Conventional Synapse from 110577 -> 110576","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110577,"TargetID":110576,"Directional":true}]},{"ID":11279,"SourceStructureID":6120,"TargetStructureID":110610,"Label":"6120-110610 via Ribbon Synapse from 110612 -> 110613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110612,"TargetID":110613,"Directional":true}]},{"ID":11280,"SourceStructureID":6120,"TargetStructureID":110614,"Label":"6120-110614 via Ribbon Synapse from 110612 -> 110615","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110612,"TargetID":110615,"Directional":true}]},{"ID":11281,"SourceStructureID":6120,"TargetStructureID":110622,"Label":"6120-110622 via Ribbon Synapse from 110632 -> 110634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110632,"TargetID":110634,"Directional":true}]},{"ID":11282,"SourceStructureID":6120,"TargetStructureID":110623,"Label":"6120-110623 via Ribbon Synapse from 110632 -> 110633","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110632,"TargetID":110633,"Directional":true}]},{"ID":11283,"SourceStructureID":6120,"TargetStructureID":110641,"Label":"6120-110641 via Ribbon Synapse from 110639 -> 110642","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110639,"TargetID":110642,"Directional":true}]},{"ID":11284,"SourceStructureID":6120,"TargetStructureID":110644,"Label":"6120-110644 via Ribbon Synapse from 110635 -> 110645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110635,"TargetID":110645,"Directional":true}]},{"ID":11285,"SourceStructureID":6120,"TargetStructureID":110731,"Label":"6120-110731 via Ribbon Synapse from 61163 -> 110732, 61164 -> 110733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61163,"TargetID":110732,"Directional":true},{"SourceID":61164,"TargetID":110733,"Directional":true}]},{"ID":11286,"SourceStructureID":6120,"TargetStructureID":110734,"Label":"6120-110734 via Ribbon Synapse from 61164 -> 110777","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61164,"TargetID":110777,"Directional":true}]},{"ID":11287,"SourceStructureID":6120,"TargetStructureID":110738,"Label":"6120-110738 via Ribbon Synapse from 61163 -> 110739","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61163,"TargetID":110739,"Directional":true}]},{"ID":11288,"SourceStructureID":6120,"TargetStructureID":110747,"Label":"6120-110747 via BC Conventional Synapse from 110746 -> 110748","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110746,"TargetID":110748,"Directional":true}]},{"ID":11289,"SourceStructureID":6120,"TargetStructureID":110758,"Label":"6120-110758 via BC Conventional Synapse from 110757 -> 110759","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110757,"TargetID":110759,"Directional":true}]},{"ID":11290,"SourceStructureID":6120,"TargetStructureID":110760,"Label":"6120-110760 via Ribbon Synapse from 51501 -> 110761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51501,"TargetID":110761,"Directional":true}]},{"ID":11291,"SourceStructureID":6120,"TargetStructureID":110762,"Label":"6120-110762 via Ribbon Synapse from 51501 -> 110781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51501,"TargetID":110781,"Directional":true}]},{"ID":11292,"SourceStructureID":6120,"TargetStructureID":110763,"Label":"6120-110763 via Ribbon Synapse from 61163 -> 110764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61163,"TargetID":110764,"Directional":true}]},{"ID":11293,"SourceStructureID":6120,"TargetStructureID":110793,"Label":"6120-110793 via Ribbon Synapse from 110789 -> 110795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110789,"TargetID":110795,"Directional":true}]},{"ID":11294,"SourceStructureID":6120,"TargetStructureID":110798,"Label":"6120-110798 via Ribbon Synapse from 61160 -> 110799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61160,"TargetID":110799,"Directional":true}]},{"ID":11295,"SourceStructureID":6120,"TargetStructureID":110812,"Label":"6120-110812 via BC Conventional Synapse from 110811 -> 110813","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110811,"TargetID":110813,"Directional":true}]},{"ID":11296,"SourceStructureID":6120,"TargetStructureID":110814,"Label":"6120-110814 via Ribbon Synapse from 61156 -> 110815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61156,"TargetID":110815,"Directional":true}]},{"ID":11297,"SourceStructureID":6120,"TargetStructureID":110816,"Label":"6120-110816 via BC Conventional Synapse from 110855 -> 110858","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110855,"TargetID":110858,"Directional":true}]},{"ID":11298,"SourceStructureID":6120,"TargetStructureID":110816,"Label":"6120-110816 via Ribbon Synapse from 61156 -> 110817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61156,"TargetID":110817,"Directional":true}]},{"ID":11299,"SourceStructureID":6120,"TargetStructureID":110835,"Label":"6120-110835 via Ribbon Synapse from 110827 -> 110836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110827,"TargetID":110836,"Directional":true}]},{"ID":11300,"SourceStructureID":6120,"TargetStructureID":110860,"Label":"6120-110860 via Ribbon Synapse from 51491 -> 110863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51491,"TargetID":110863,"Directional":true}]},{"ID":11301,"SourceStructureID":6120,"TargetStructureID":110869,"Label":"6120-110869 via Ribbon Synapse from 61145 -> 110870","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61145,"TargetID":110870,"Directional":true}]},{"ID":11302,"SourceStructureID":6120,"TargetStructureID":110875,"Label":"6120-110875 via BC Conventional Synapse from 110991 -> 110993","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110991,"TargetID":110993,"Directional":true}]},{"ID":11303,"SourceStructureID":6120,"TargetStructureID":110997,"Label":"6120-110997 via Ribbon Synapse from 61146 -> 110998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61146,"TargetID":110998,"Directional":true}]},{"ID":11304,"SourceStructureID":6120,"TargetStructureID":110999,"Label":"6120-110999 via Ribbon Synapse from 61146 -> 111000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61146,"TargetID":111000,"Directional":true}]},{"ID":11305,"SourceStructureID":6120,"TargetStructureID":111012,"Label":"6120-111012 via BC Conventional Synapse from 111011 -> 111013","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111011,"TargetID":111013,"Directional":true}]},{"ID":11306,"SourceStructureID":6120,"TargetStructureID":111026,"Label":"6120-111026 via Ribbon Synapse from 61148 -> 111028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61148,"TargetID":111028,"Directional":true}]},{"ID":11307,"SourceStructureID":6120,"TargetStructureID":111029,"Label":"6120-111029 via Ribbon Synapse from 61148 -> 111030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61148,"TargetID":111030,"Directional":true}]},{"ID":11308,"SourceStructureID":6120,"TargetStructureID":111033,"Label":"6120-111033 via Ribbon Synapse from 61128 -> 111034","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61128,"TargetID":111034,"Directional":true}]},{"ID":11309,"SourceStructureID":6120,"TargetStructureID":111035,"Label":"6120-111035 via Ribbon Synapse from 61128 -> 111036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61128,"TargetID":111036,"Directional":true}]},{"ID":11310,"SourceStructureID":6120,"TargetStructureID":111044,"Label":"6120-111044 via Ribbon Synapse from 61128 -> 111045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61128,"TargetID":111045,"Directional":true}]},{"ID":11311,"SourceStructureID":6120,"TargetStructureID":111092,"Label":"6120-111092 via BC Conventional Synapse from 111091 -> 111093","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111091,"TargetID":111093,"Directional":true}]},{"ID":11312,"SourceStructureID":6120,"TargetStructureID":111110,"Label":"6120-111110 via Ribbon Synapse from 61143 -> 111120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61143,"TargetID":111120,"Directional":true}]},{"ID":11313,"SourceStructureID":6120,"TargetStructureID":111111,"Label":"6120-111111 via BC Conventional Synapse from 111113 -> 111114","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111113,"TargetID":111114,"Directional":true}]},{"ID":11314,"SourceStructureID":6120,"TargetStructureID":111111,"Label":"6120-111111 via Ribbon Synapse from 61143 -> 111115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61143,"TargetID":111115,"Directional":true}]},{"ID":11315,"SourceStructureID":6120,"TargetStructureID":111117,"Label":"6120-111117 via BC Conventional Synapse from 111116 -> 111119","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111116,"TargetID":111119,"Directional":true}]},{"ID":11316,"SourceStructureID":6120,"TargetStructureID":111126,"Label":"6120-111126 via Ribbon Synapse from 111125 -> 111127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111125,"TargetID":111127,"Directional":true}]},{"ID":11317,"SourceStructureID":6120,"TargetStructureID":111135,"Label":"6120-111135 via Ribbon Synapse from 61176 -> 111136, 111141 -> 111250, 111246 -> 111245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61176,"TargetID":111136,"Directional":true},{"SourceID":111141,"TargetID":111250,"Directional":true},{"SourceID":111246,"TargetID":111245,"Directional":true}]},{"ID":11318,"SourceStructureID":6120,"TargetStructureID":111139,"Label":"6120-111139 via Ribbon Synapse from 111137 -> 111140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111137,"TargetID":111140,"Directional":true}]},{"ID":11319,"SourceStructureID":6120,"TargetStructureID":111216,"Label":"6120-111216 via Ribbon Synapse from 61180 -> 111217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61180,"TargetID":111217,"Directional":true}]},{"ID":11320,"SourceStructureID":6120,"TargetStructureID":111221,"Label":"6120-111221 via Ribbon Synapse from 61180 -> 111222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61180,"TargetID":111222,"Directional":true}]},{"ID":11321,"SourceStructureID":6120,"TargetStructureID":111231,"Label":"6120-111231 via Ribbon Synapse from 57389 -> 111285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57389,"TargetID":111285,"Directional":true}]},{"ID":11322,"SourceStructureID":6120,"TargetStructureID":111235,"Label":"6120-111235 via Ribbon Synapse from 61176 -> 111237","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61176,"TargetID":111237,"Directional":true}]},{"ID":11323,"SourceStructureID":6120,"TargetStructureID":111238,"Label":"6120-111238 via Ribbon Synapse from 111141 -> 111239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111141,"TargetID":111239,"Directional":true}]},{"ID":11324,"SourceStructureID":6120,"TargetStructureID":111251,"Label":"6120-111251 via Ribbon Synapse from 61177 -> 111252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61177,"TargetID":111252,"Directional":true}]},{"ID":11325,"SourceStructureID":6120,"TargetStructureID":111260,"Label":"6120-111260 via Ribbon Synapse from 111258 -> 111262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111258,"TargetID":111262,"Directional":true}]},{"ID":11326,"SourceStructureID":6120,"TargetStructureID":111269,"Label":"6120-111269 via Ribbon Synapse from 57383 -> 111274, 111353 -> 111355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57383,"TargetID":111274,"Directional":true},{"SourceID":111353,"TargetID":111355,"Directional":true}]},{"ID":11327,"SourceStructureID":6120,"TargetStructureID":111286,"Label":"6120-111286 via Ribbon Synapse from 57389 -> 111287","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57389,"TargetID":111287,"Directional":true}]},{"ID":11328,"SourceStructureID":6120,"TargetStructureID":111292,"Label":"6120-111292 via BC Conventional Synapse from 111291 -> 111293","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111291,"TargetID":111293,"Directional":true}]},{"ID":11329,"SourceStructureID":6120,"TargetStructureID":111351,"Label":"6120-111351 via BC Conventional Synapse from 111350 -> 111352","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111350,"TargetID":111352,"Directional":true}]},{"ID":11330,"SourceStructureID":6120,"TargetStructureID":111356,"Label":"6120-111356 via Ribbon Synapse from 111353 -> 111359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111353,"TargetID":111359,"Directional":true}]},{"ID":11331,"SourceStructureID":6120,"TargetStructureID":111377,"Label":"6120-111377 via BC Conventional Synapse from 111376 -> 111378","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111376,"TargetID":111378,"Directional":true}]},{"ID":11332,"SourceStructureID":6120,"TargetStructureID":111399,"Label":"6120-111399 via BC Conventional Synapse from 111398 -> 111400","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111398,"TargetID":111400,"Directional":true}]},{"ID":11333,"SourceStructureID":6120,"TargetStructureID":111485,"Label":"6120-111485 via Ribbon Synapse from 61191 -> 111489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61191,"TargetID":111489,"Directional":true}]},{"ID":11334,"SourceStructureID":6120,"TargetStructureID":111503,"Label":"6120-111503 via BC Conventional Synapse from 111495 -> 111504","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111495,"TargetID":111504,"Directional":true}]},{"ID":11335,"SourceStructureID":6120,"TargetStructureID":111515,"Label":"6120-111515 via Ribbon Synapse from 61186 -> 111517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61186,"TargetID":111517,"Directional":true}]},{"ID":11336,"SourceStructureID":6120,"TargetStructureID":111518,"Label":"6120-111518 via BC Conventional Synapse from 111520 -> 111519","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111520,"TargetID":111519,"Directional":true}]},{"ID":11337,"SourceStructureID":6120,"TargetStructureID":111521,"Label":"6120-111521 via Ribbon Synapse from 61186 -> 111522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61186,"TargetID":111522,"Directional":true}]},{"ID":11338,"SourceStructureID":6120,"TargetStructureID":111523,"Label":"6120-111523 via Ribbon Synapse from 61197 -> 111524","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61197,"TargetID":111524,"Directional":true}]},{"ID":11339,"SourceStructureID":6120,"TargetStructureID":111525,"Label":"6120-111525 via Ribbon Synapse from 61197 -> 111526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61197,"TargetID":111526,"Directional":true}]},{"ID":11340,"SourceStructureID":6120,"TargetStructureID":111533,"Label":"6120-111533 via Ribbon Synapse from 61188 -> 111534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61188,"TargetID":111534,"Directional":true}]},{"ID":11341,"SourceStructureID":6120,"TargetStructureID":111553,"Label":"6120-111553 via Ribbon Synapse from 64929 -> 111554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64929,"TargetID":111554,"Directional":true}]},{"ID":11342,"SourceStructureID":6120,"TargetStructureID":111557,"Label":"6120-111557 via Ribbon Synapse from 64929 -> 111558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64929,"TargetID":111558,"Directional":true}]},{"ID":11343,"SourceStructureID":6120,"TargetStructureID":111563,"Label":"6120-111563 via Ribbon Synapse from 111561 -> 111565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111561,"TargetID":111565,"Directional":true}]},{"ID":11344,"SourceStructureID":6120,"TargetStructureID":111564,"Label":"6120-111564 via Ribbon Synapse from 111561 -> 111566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111561,"TargetID":111566,"Directional":true}]},{"ID":11345,"SourceStructureID":6120,"TargetStructureID":111580,"Label":"6120-111580 via Ribbon Synapse from 52428 -> 111582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52428,"TargetID":111582,"Directional":true}]},{"ID":11346,"SourceStructureID":6120,"TargetStructureID":111662,"Label":"6120-111662 via Ribbon Synapse from 111661 -> 111663","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111661,"TargetID":111663,"Directional":true}]},{"ID":11347,"SourceStructureID":6120,"TargetStructureID":111672,"Label":"6120-111672 via Ribbon Synapse from 111669 -> 111674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111669,"TargetID":111674,"Directional":true}]},{"ID":11348,"SourceStructureID":6120,"TargetStructureID":111677,"Label":"6120-111677 via Ribbon Synapse from 111678 -> 111681","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111678,"TargetID":111681,"Directional":true}]},{"ID":11349,"SourceStructureID":6120,"TargetStructureID":111684,"Label":"6120-111684 via BC Conventional Synapse from 111683 -> 111685","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111683,"TargetID":111685,"Directional":true}]},{"ID":11350,"SourceStructureID":6120,"TargetStructureID":111691,"Label":"6120-111691 via BC Conventional Synapse from 111690 -> 111692","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111690,"TargetID":111692,"Directional":true}]},{"ID":11351,"SourceStructureID":6120,"TargetStructureID":111698,"Label":"6120-111698 via Ribbon Synapse from 111678 -> 111700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111678,"TargetID":111700,"Directional":true}]},{"ID":11352,"SourceStructureID":6120,"TargetStructureID":111708,"Label":"6120-111708 via Ribbon Synapse from 111707 -> 111710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111707,"TargetID":111710,"Directional":true}]},{"ID":11353,"SourceStructureID":6120,"TargetStructureID":111713,"Label":"6120-111713 via Ribbon Synapse from 111706 -> 111714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111706,"TargetID":111714,"Directional":true}]},{"ID":11354,"SourceStructureID":6120,"TargetStructureID":111718,"Label":"6120-111718 via BC Conventional Synapse from 111705 -> 111719","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111705,"TargetID":111719,"Directional":true}]},{"ID":11355,"SourceStructureID":6120,"TargetStructureID":111723,"Label":"6120-111723 via BC Conventional Synapse from 111722 -> 111724","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111722,"TargetID":111724,"Directional":true}]},{"ID":11356,"SourceStructureID":6120,"TargetStructureID":111732,"Label":"6120-111732 via Ribbon Synapse from 111731 -> 111733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111731,"TargetID":111733,"Directional":true}]},{"ID":11357,"SourceStructureID":6120,"TargetStructureID":111866,"Label":"6120-111866 via Ribbon Synapse from 30179 -> 111867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30179,"TargetID":111867,"Directional":true}]},{"ID":11358,"SourceStructureID":6120,"TargetStructureID":111890,"Label":"6120-111890 via Ribbon Synapse from 111865 -> 111891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111865,"TargetID":111891,"Directional":true}]},{"ID":11359,"SourceStructureID":6120,"TargetStructureID":111894,"Label":"6120-111894 via BC Conventional Synapse from 111893 -> 111895","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111893,"TargetID":111895,"Directional":true}]},{"ID":11360,"SourceStructureID":6121,"TargetStructureID":5107,"Label":"6121-5107 via Ribbon Synapse from 65010 -> 65009, 65055 -> 65054, 65065 -> 65060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65010,"TargetID":65009,"Directional":true},{"SourceID":65055,"TargetID":65054,"Directional":true},{"SourceID":65065,"TargetID":65060,"Directional":true}]},{"ID":11361,"SourceStructureID":6121,"TargetStructureID":5405,"Label":"6121-5405 via Ribbon Synapse from 40014 -> 40015, 52276 -> 42945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40014,"TargetID":40015,"Directional":true},{"SourceID":52276,"TargetID":42945,"Directional":true}]},{"ID":11362,"SourceStructureID":6121,"TargetStructureID":7134,"Label":"6121-7134 via Ribbon Synapse from 53462 -> 53457, 53492 -> 53489, 53493 -> 53494, 53497 -> 53496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53462,"TargetID":53457,"Directional":true},{"SourceID":53492,"TargetID":53489,"Directional":true},{"SourceID":53493,"TargetID":53494,"Directional":true},{"SourceID":53497,"TargetID":53496,"Directional":true}]},{"ID":11363,"SourceStructureID":6121,"TargetStructureID":9769,"Label":"6121-9769 via Ribbon Synapse from 30183 -> 30165, 52577 -> 52579","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30183,"TargetID":30165,"Directional":true},{"SourceID":52577,"TargetID":52579,"Directional":true}]},{"ID":11364,"SourceStructureID":6121,"TargetStructureID":16073,"Label":"6121-16073 via BC Conventional Synapse from 125214 -> 125215","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125214,"TargetID":125215,"Directional":true}]},{"ID":11365,"SourceStructureID":6121,"TargetStructureID":22974,"Label":"6121-22974 via Ribbon Synapse from 125226 -> 125228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125226,"TargetID":125228,"Directional":true}]},{"ID":11366,"SourceStructureID":6121,"TargetStructureID":30130,"Label":"6121-30130 via Ribbon Synapse from 30327 -> 30326","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30327,"TargetID":30326,"Directional":true}]},{"ID":11367,"SourceStructureID":6121,"TargetStructureID":52262,"Label":"6121-52262 via Ribbon Synapse from 52275 -> 52272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52275,"TargetID":52272,"Directional":true}]},{"ID":11368,"SourceStructureID":6121,"TargetStructureID":52410,"Label":"6121-52410 via Ribbon Synapse from 30183 -> 52411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30183,"TargetID":52411,"Directional":true}]},{"ID":11369,"SourceStructureID":6121,"TargetStructureID":53991,"Label":"6121-53991 via Ribbon Synapse from 52577 -> 53995","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52577,"TargetID":53995,"Directional":true}]},{"ID":11370,"SourceStructureID":6121,"TargetStructureID":64923,"Label":"6121-64923 via Ribbon Synapse from 64927 -> 64926, 123563 -> 123562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64927,"TargetID":64926,"Directional":true},{"SourceID":123563,"TargetID":123562,"Directional":true}]},{"ID":11371,"SourceStructureID":6121,"TargetStructureID":68539,"Label":"6121-68539 via BC Conventional Synapse from 120720 -> 120721","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120720,"TargetID":120721,"Directional":true}]},{"ID":11372,"SourceStructureID":6121,"TargetStructureID":110997,"Label":"6121-110997 via BC Conventional Synapse from 125283 -> 125282","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125283,"TargetID":125282,"Directional":true}]},{"ID":11373,"SourceStructureID":6121,"TargetStructureID":111539,"Label":"6121-111539 via Ribbon Synapse from 127707 -> 127708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127707,"TargetID":127708,"Directional":true}]},{"ID":11374,"SourceStructureID":6123,"TargetStructureID":606,"Label":"6123-606 via Ribbon Synapse from 47239 -> 47238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47239,"TargetID":47238,"Directional":true}]},{"ID":11375,"SourceStructureID":6123,"TargetStructureID":71517,"Label":"6123-71517 via Ribbon Synapse from 47891 -> 71540, 47993 -> 72151, 47994 -> 74924, 48017 -> 76999, 48020 -> 74919, 74928 -> 74929","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47891,"TargetID":71540,"Directional":true},{"SourceID":47993,"TargetID":72151,"Directional":true},{"SourceID":47994,"TargetID":74924,"Directional":true},{"SourceID":48017,"TargetID":76999,"Directional":true},{"SourceID":48020,"TargetID":74919,"Directional":true},{"SourceID":74928,"TargetID":74929,"Directional":true}]},{"ID":11376,"SourceStructureID":6123,"TargetStructureID":134954,"Label":"6123-134954 via Ribbon Synapse from 47860 -> 135436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47860,"TargetID":135436,"Directional":true}]},{"ID":11377,"SourceStructureID":6123,"TargetStructureID":148300,"Label":"6123-148300 via Ribbon Synapse from 148298 -> 148301, 148304 -> 148301","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148298,"TargetID":148301,"Directional":true},{"SourceID":148304,"TargetID":148301,"Directional":true}]},{"ID":11378,"SourceStructureID":6123,"TargetStructureID":148302,"Label":"6123-148302 via Ribbon Synapse from 148298 -> 148303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148298,"TargetID":148303,"Directional":true}]},{"ID":11379,"SourceStructureID":6125,"TargetStructureID":608,"Label":"6125-608 via BC Conventional Synapse from 31206 -> 31199","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":31206,"TargetID":31199,"Directional":true}]},{"ID":11380,"SourceStructureID":6125,"TargetStructureID":5150,"Label":"6125-5150 via Ribbon Synapse from 131351 -> 5249, 131352 -> 5249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131351,"TargetID":5249,"Directional":true},{"SourceID":131352,"TargetID":5249,"Directional":true}]},{"ID":11381,"SourceStructureID":6125,"TargetStructureID":7951,"Label":"6125-7951 via Ribbon Synapse from 31204 -> 31205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31204,"TargetID":31205,"Directional":true}]},{"ID":11382,"SourceStructureID":6125,"TargetStructureID":34761,"Label":"6125-34761 via Ribbon Synapse from 34773 -> 34771","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34773,"TargetID":34771,"Directional":true}]},{"ID":11383,"SourceStructureID":6127,"TargetStructureID":34847,"Label":"6127-34847 via Ribbon Synapse from 34865 -> 34863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34865,"TargetID":34863,"Directional":true}]},{"ID":11384,"SourceStructureID":6127,"TargetStructureID":35653,"Label":"6127-35653 via Ribbon Synapse from 35665 -> 35664","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35665,"TargetID":35664,"Directional":true}]},{"ID":11385,"SourceStructureID":6127,"TargetStructureID":84118,"Label":"6127-84118 via Ribbon Synapse from 123614 -> 123616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123614,"TargetID":123616,"Directional":true}]},{"ID":11386,"SourceStructureID":6128,"TargetStructureID":7225,"Label":"6128-7225 via Ribbon Synapse from 21178 -> 88400","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21178,"TargetID":88400,"Directional":true}]},{"ID":11387,"SourceStructureID":6128,"TargetStructureID":7461,"Label":"6128-7461 via Ribbon Synapse from 20997 -> 30472, 33735 -> 30467","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20997,"TargetID":30472,"Directional":true},{"SourceID":33735,"TargetID":30467,"Directional":true}]},{"ID":11388,"SourceStructureID":6128,"TargetStructureID":7859,"Label":"6128-7859 via Ribbon Synapse from 84732 -> 84731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84732,"TargetID":84731,"Directional":true}]},{"ID":11389,"SourceStructureID":6128,"TargetStructureID":28950,"Label":"6128-28950 via Ribbon Synapse from 21016 -> 29043, 21017 -> 29043","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21016,"TargetID":29043,"Directional":true},{"SourceID":21017,"TargetID":29043,"Directional":true}]},{"ID":11390,"SourceStructureID":6128,"TargetStructureID":30015,"Label":"6128-30015 via Ribbon Synapse from 20982 -> 30042","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20982,"TargetID":30042,"Directional":true}]},{"ID":11391,"SourceStructureID":6128,"TargetStructureID":31486,"Label":"6128-31486 via Ribbon Synapse from 21041 -> 31512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21041,"TargetID":31512,"Directional":true}]},{"ID":11392,"SourceStructureID":6128,"TargetStructureID":46741,"Label":"6128-46741 via BC Conventional Synapse from 137107 -> 137106, 137117 -> 137118","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":137107,"TargetID":137106,"Directional":true},{"SourceID":137117,"TargetID":137118,"Directional":true}]},{"ID":11393,"SourceStructureID":6128,"TargetStructureID":46741,"Label":"6128-46741 via Ribbon Synapse from 20992 -> 137098, 33737 -> 137094, 136966 -> 136964, 136968 -> 136969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20992,"TargetID":137098,"Directional":true},{"SourceID":33737,"TargetID":137094,"Directional":true},{"SourceID":136966,"TargetID":136964,"Directional":true},{"SourceID":136968,"TargetID":136969,"Directional":true}]},{"ID":11394,"SourceStructureID":6128,"TargetStructureID":122431,"Label":"6128-122431 via Ribbon Synapse from 20935 -> 129523","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20935,"TargetID":129523,"Directional":true}]},{"ID":11395,"SourceStructureID":6129,"TargetStructureID":5453,"Label":"6129-5453 via BC Conventional Synapse from 38870 -> 18547","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":38870,"TargetID":18547,"Directional":true}]},{"ID":11396,"SourceStructureID":6129,"TargetStructureID":5453,"Label":"6129-5453 via Ribbon Synapse from 17819 -> 18550, 18584 -> 18549, 38872 -> 18544, 38875 -> 18524, 38877 -> 18532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17819,"TargetID":18550,"Directional":true},{"SourceID":18584,"TargetID":18549,"Directional":true},{"SourceID":38872,"TargetID":18544,"Directional":true},{"SourceID":38875,"TargetID":18524,"Directional":true},{"SourceID":38877,"TargetID":18532,"Directional":true}]},{"ID":11397,"SourceStructureID":6129,"TargetStructureID":5528,"Label":"6129-5528 via Ribbon Synapse from 17850 -> 94142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17850,"TargetID":94142,"Directional":true}]},{"ID":11398,"SourceStructureID":6129,"TargetStructureID":7703,"Label":"6129-7703 via Ribbon Synapse from 17785 -> 17758, 42081 -> 26776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17785,"TargetID":17758,"Directional":true},{"SourceID":42081,"TargetID":26776,"Directional":true}]},{"ID":11399,"SourceStructureID":6129,"TargetStructureID":11238,"Label":"6129-11238 via Ribbon Synapse from 88568 -> 88528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88568,"TargetID":88528,"Directional":true}]},{"ID":11400,"SourceStructureID":6129,"TargetStructureID":64414,"Label":"6129-64414 via BC Conventional Synapse from 64424 -> 64423","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":64424,"TargetID":64423,"Directional":true}]},{"ID":11401,"SourceStructureID":6129,"TargetStructureID":88539,"Label":"6129-88539 via Ribbon Synapse from 88538 -> 88542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88538,"TargetID":88542,"Directional":true}]},{"ID":11402,"SourceStructureID":6131,"TargetStructureID":13525,"Label":"6131-13525 via Ribbon Synapse from 37331 -> 129030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37331,"TargetID":129030,"Directional":true}]},{"ID":11403,"SourceStructureID":6131,"TargetStructureID":130189,"Label":"6131-130189 via Ribbon Synapse from 37331 -> 130191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37331,"TargetID":130191,"Directional":true}]},{"ID":11404,"SourceStructureID":6132,"TargetStructureID":7225,"Label":"6132-7225 via Ribbon Synapse from 29018 -> 29031, 29028 -> 29027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29018,"TargetID":29031,"Directional":true},{"SourceID":29028,"TargetID":29027,"Directional":true}]},{"ID":11405,"SourceStructureID":6132,"TargetStructureID":7564,"Label":"6132-7564 via Ribbon Synapse from 88502 -> 88497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88502,"TargetID":88497,"Directional":true}]},{"ID":11406,"SourceStructureID":6132,"TargetStructureID":11238,"Label":"6132-11238 via Ribbon Synapse from 88437 -> 88443, 88504 -> 88505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88437,"TargetID":88443,"Directional":true},{"SourceID":88504,"TargetID":88505,"Directional":true}]},{"ID":11407,"SourceStructureID":6132,"TargetStructureID":35681,"Label":"6132-35681 via Ribbon Synapse from 35727 -> 35726","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35727,"TargetID":35726,"Directional":true}]},{"ID":11408,"SourceStructureID":6132,"TargetStructureID":43203,"Label":"6132-43203 via Ribbon Synapse from 122036 -> 122035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122036,"TargetID":122035,"Directional":true}]},{"ID":11409,"SourceStructureID":6133,"TargetStructureID":7859,"Label":"6133-7859 via Ribbon Synapse from 84840 -> 84838","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84840,"TargetID":84838,"Directional":true}]},{"ID":11410,"SourceStructureID":6133,"TargetStructureID":8504,"Label":"6133-8504 via Ribbon Synapse from 8702 -> 8718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8702,"TargetID":8718,"Directional":true}]},{"ID":11411,"SourceStructureID":6133,"TargetStructureID":10574,"Label":"6133-10574 via Ribbon Synapse from 37405 -> 10608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37405,"TargetID":10608,"Directional":true}]},{"ID":11412,"SourceStructureID":6133,"TargetStructureID":11229,"Label":"6133-11229 via Ribbon Synapse from 37404 -> 28974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37404,"TargetID":28974,"Directional":true}]},{"ID":11413,"SourceStructureID":6133,"TargetStructureID":43205,"Label":"6133-43205 via Ribbon Synapse from 65446 -> 122086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65446,"TargetID":122086,"Directional":true}]},{"ID":11414,"SourceStructureID":6133,"TargetStructureID":96877,"Label":"6133-96877 via Ribbon Synapse from 37412 -> 131152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37412,"TargetID":131152,"Directional":true}]},{"ID":11415,"SourceStructureID":6134,"TargetStructureID":122173,"Label":"6134-122173 via Ribbon Synapse from 32473 -> 122175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32473,"TargetID":122175,"Directional":true}]},{"ID":11416,"SourceStructureID":6136,"TargetStructureID":7145,"Label":"6136-7145 via Ribbon Synapse from 10952 -> 18111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10952,"TargetID":18111,"Directional":true}]},{"ID":11417,"SourceStructureID":6136,"TargetStructureID":10371,"Label":"6136-10371 via Ribbon Synapse from 10370 -> 10373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10370,"TargetID":10373,"Directional":true}]},{"ID":11418,"SourceStructureID":6136,"TargetStructureID":56211,"Label":"6136-56211 via Ribbon Synapse from 13029 -> 85453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13029,"TargetID":85453,"Directional":true}]},{"ID":11419,"SourceStructureID":6136,"TargetStructureID":59229,"Label":"6136-59229 via Ribbon Synapse from 85560 -> 85559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85560,"TargetID":85559,"Directional":true}]},{"ID":11420,"SourceStructureID":6138,"TargetStructureID":5464,"Label":"6138-5464 via Ribbon Synapse from 37430 -> 37431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37430,"TargetID":37431,"Directional":true}]},{"ID":11421,"SourceStructureID":6140,"TargetStructureID":29340,"Label":"6140-29340 via Ribbon Synapse from 29360 -> 29354","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29360,"TargetID":29354,"Directional":true}]},{"ID":11422,"SourceStructureID":6141,"TargetStructureID":606,"Label":"6141-606 via Ribbon Synapse from 51958 -> 51959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51958,"TargetID":51959,"Directional":true}]},{"ID":11423,"SourceStructureID":6141,"TargetStructureID":5117,"Label":"6141-5117 via Ribbon Synapse from 66359 -> 66358","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66359,"TargetID":66358,"Directional":true}]},{"ID":11424,"SourceStructureID":6141,"TargetStructureID":32513,"Label":"6141-32513 via Ribbon Synapse from 32520 -> 32516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32520,"TargetID":32516,"Directional":true}]},{"ID":11425,"SourceStructureID":6142,"TargetStructureID":8579,"Label":"6142-8579 via Ribbon Synapse from 16121 -> 62859, 27900 -> 62723, 62862 -> 62863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16121,"TargetID":62859,"Directional":true},{"SourceID":27900,"TargetID":62723,"Directional":true},{"SourceID":62862,"TargetID":62863,"Directional":true}]},{"ID":11426,"SourceStructureID":6142,"TargetStructureID":67671,"Label":"6142-67671 via Ribbon Synapse from 23334 -> 78036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23334,"TargetID":78036,"Directional":true}]},{"ID":11427,"SourceStructureID":6142,"TargetStructureID":68539,"Label":"6142-68539 via Ribbon Synapse from 27843 -> 76069","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27843,"TargetID":76069,"Directional":true}]},{"ID":11428,"SourceStructureID":6142,"TargetStructureID":71351,"Label":"6142-71351 via Ribbon Synapse from 71682 -> 71683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71682,"TargetID":71683,"Directional":true}]},{"ID":11429,"SourceStructureID":6142,"TargetStructureID":71684,"Label":"6142-71684 via Ribbon Synapse from 71682 -> 71685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71682,"TargetID":71685,"Directional":true}]},{"ID":11430,"SourceStructureID":6142,"TargetStructureID":71686,"Label":"6142-71686 via Ribbon Synapse from 71682 -> 71687","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71682,"TargetID":71687,"Directional":true}]},{"ID":11431,"SourceStructureID":6142,"TargetStructureID":78909,"Label":"6142-78909 via Ribbon Synapse from 16119 -> 87553, 23586 -> 87551, 23587 -> 87552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16119,"TargetID":87553,"Directional":true},{"SourceID":23586,"TargetID":87551,"Directional":true},{"SourceID":23587,"TargetID":87552,"Directional":true}]},{"ID":11432,"SourceStructureID":6142,"TargetStructureID":88473,"Label":"6142-88473 via Ribbon Synapse from 27887 -> 88474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27887,"TargetID":88474,"Directional":true}]},{"ID":11433,"SourceStructureID":6142,"TargetStructureID":89336,"Label":"6142-89336 via Ribbon Synapse from 23577 -> 89338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23577,"TargetID":89338,"Directional":true}]},{"ID":11434,"SourceStructureID":6142,"TargetStructureID":89775,"Label":"6142-89775 via BC Conventional Synapse from 16116 -> 89782","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":16116,"TargetID":89782,"Directional":true}]},{"ID":11435,"SourceStructureID":6146,"TargetStructureID":5388,"Label":"6146-5388 via Ribbon Synapse from 20219 -> 20214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20219,"TargetID":20214,"Directional":true}]},{"ID":11436,"SourceStructureID":6146,"TargetStructureID":7594,"Label":"6146-7594 via Ribbon Synapse from 38101 -> 38105","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38101,"TargetID":38105,"Directional":true}]},{"ID":11437,"SourceStructureID":6146,"TargetStructureID":8212,"Label":"6146-8212 via Cistern Pre from 38078 -> 38082","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":38078,"TargetID":38082,"Directional":true}]},{"ID":11438,"SourceStructureID":6146,"TargetStructureID":9769,"Label":"6146-9769 via Ribbon Synapse from 38101 -> 38102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38101,"TargetID":38102,"Directional":true}]},{"ID":11439,"SourceStructureID":6146,"TargetStructureID":45574,"Label":"6146-45574 via Ribbon Synapse from 131947 -> 131948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131947,"TargetID":131948,"Directional":true}]},{"ID":11440,"SourceStructureID":6146,"TargetStructureID":87419,"Label":"6146-87419 via Cistern Pre from 87418 -> 87421","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":87418,"TargetID":87421,"Directional":true}]},{"ID":11441,"SourceStructureID":6150,"TargetStructureID":6118,"Label":"6150-6118 via Cistern Pre from 37177 -> 37175","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37177,"TargetID":37175,"Directional":true}]},{"ID":11442,"SourceStructureID":6153,"TargetStructureID":325,"Label":"6153-325 via Conventional from 10726 -> 8183, 10728 -> 7027","Type":"Conventional","Directional":true,"Links":[{"SourceID":10726,"TargetID":8183,"Directional":true},{"SourceID":10728,"TargetID":7027,"Directional":true}]},{"ID":11443,"SourceStructureID":6153,"TargetStructureID":425,"Label":"6153-425 via Conventional from 39980 -> 39981","Type":"Conventional","Directional":true,"Links":[{"SourceID":39980,"TargetID":39981,"Directional":true}]},{"ID":11444,"SourceStructureID":6153,"TargetStructureID":426,"Label":"6153-426 via Conventional from 21579 -> 21586","Type":"Conventional","Directional":true,"Links":[{"SourceID":21579,"TargetID":21586,"Directional":true}]},{"ID":11445,"SourceStructureID":6153,"TargetStructureID":463,"Label":"6153-463 via Conventional from 74156 -> 74154, 74157 -> 74155, 74159 -> 74158, 74160 -> 74161","Type":"Conventional","Directional":true,"Links":[{"SourceID":74156,"TargetID":74154,"Directional":true},{"SourceID":74157,"TargetID":74155,"Directional":true},{"SourceID":74159,"TargetID":74158,"Directional":true},{"SourceID":74160,"TargetID":74161,"Directional":true}]},{"ID":11446,"SourceStructureID":6153,"TargetStructureID":476,"Label":"6153-476 via Cistern Pre from 31957 -> 31958","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":31957,"TargetID":31958,"Directional":true}]},{"ID":11447,"SourceStructureID":6153,"TargetStructureID":5150,"Label":"6153-5150 via Conventional from 15411 -> 5268, 15421 -> 15418","Type":"Conventional","Directional":true,"Links":[{"SourceID":15411,"TargetID":5268,"Directional":true},{"SourceID":15421,"TargetID":15418,"Directional":true}]},{"ID":11448,"SourceStructureID":6153,"TargetStructureID":5351,"Label":"6153-5351 via Conventional from 24123 -> 24122","Type":"Conventional","Directional":true,"Links":[{"SourceID":24123,"TargetID":24122,"Directional":true}]},{"ID":11449,"SourceStructureID":6155,"TargetStructureID":289,"Label":"6155-289 via Ribbon Synapse from 56649 -> 56647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56649,"TargetID":56647,"Directional":true}]},{"ID":11450,"SourceStructureID":6155,"TargetStructureID":2064,"Label":"6155-2064 via Ribbon Synapse from 15525 -> 13189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15525,"TargetID":13189,"Directional":true}]},{"ID":11451,"SourceStructureID":6155,"TargetStructureID":6300,"Label":"6155-6300 via Ribbon Synapse from 15381 -> 104888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15381,"TargetID":104888,"Directional":true}]},{"ID":11452,"SourceStructureID":6155,"TargetStructureID":7594,"Label":"6155-7594 via Ribbon Synapse from 15511 -> 107869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15511,"TargetID":107869,"Directional":true}]},{"ID":11453,"SourceStructureID":6155,"TargetStructureID":8720,"Label":"6155-8720 via Cistern Pre from 24083 -> 24100","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":24083,"TargetID":24100,"Directional":true}]},{"ID":11454,"SourceStructureID":6155,"TargetStructureID":9769,"Label":"6155-9769 via Ribbon Synapse from 15767 -> 29811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15767,"TargetID":29811,"Directional":true}]},{"ID":11455,"SourceStructureID":6155,"TargetStructureID":18693,"Label":"6155-18693 via Ribbon Synapse from 56650 -> 33803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56650,"TargetID":33803,"Directional":true}]},{"ID":11456,"SourceStructureID":6155,"TargetStructureID":36421,"Label":"6155-36421 via Ribbon Synapse from 34785 -> 36436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34785,"TargetID":36436,"Directional":true}]},{"ID":11457,"SourceStructureID":6155,"TargetStructureID":47104,"Label":"6155-47104 via Ribbon Synapse from 15510 -> 107878, 15511 -> 47125","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15510,"TargetID":107878,"Directional":true},{"SourceID":15511,"TargetID":47125,"Directional":true}]},{"ID":11458,"SourceStructureID":6155,"TargetStructureID":48612,"Label":"6155-48612 via Ribbon Synapse from 15761 -> 48621","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15761,"TargetID":48621,"Directional":true}]},{"ID":11459,"SourceStructureID":6155,"TargetStructureID":104886,"Label":"6155-104886 via Ribbon Synapse from 15381 -> 104887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15381,"TargetID":104887,"Directional":true}]},{"ID":11460,"SourceStructureID":6155,"TargetStructureID":104893,"Label":"6155-104893 via Ribbon Synapse from 104892 -> 104894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104892,"TargetID":104894,"Directional":true}]},{"ID":11461,"SourceStructureID":6155,"TargetStructureID":104952,"Label":"6155-104952 via Ribbon Synapse from 15606 -> 104953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15606,"TargetID":104953,"Directional":true}]},{"ID":11462,"SourceStructureID":6155,"TargetStructureID":104957,"Label":"6155-104957 via Ribbon Synapse from 15607 -> 104958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15607,"TargetID":104958,"Directional":true}]},{"ID":11463,"SourceStructureID":6155,"TargetStructureID":104959,"Label":"6155-104959 via Ribbon Synapse from 15607 -> 104960","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15607,"TargetID":104960,"Directional":true}]},{"ID":11464,"SourceStructureID":6155,"TargetStructureID":104963,"Label":"6155-104963 via Ribbon Synapse from 48319 -> 104964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48319,"TargetID":104964,"Directional":true}]},{"ID":11465,"SourceStructureID":6155,"TargetStructureID":104965,"Label":"6155-104965 via Ribbon Synapse from 48319 -> 104966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48319,"TargetID":104966,"Directional":true}]},{"ID":11466,"SourceStructureID":6155,"TargetStructureID":104971,"Label":"6155-104971 via Ribbon Synapse from 15612 -> 104972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15612,"TargetID":104972,"Directional":true}]},{"ID":11467,"SourceStructureID":6155,"TargetStructureID":104979,"Label":"6155-104979 via Ribbon Synapse from 15756 -> 104980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15756,"TargetID":104980,"Directional":true}]},{"ID":11468,"SourceStructureID":6155,"TargetStructureID":104981,"Label":"6155-104981 via Ribbon Synapse from 15756 -> 104982","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15756,"TargetID":104982,"Directional":true}]},{"ID":11469,"SourceStructureID":6155,"TargetStructureID":105838,"Label":"6155-105838 via Ribbon Synapse from 16874 -> 105840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16874,"TargetID":105840,"Directional":true}]},{"ID":11470,"SourceStructureID":6155,"TargetStructureID":105844,"Label":"6155-105844 via Ribbon Synapse from 16874 -> 105847","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16874,"TargetID":105847,"Directional":true}]},{"ID":11471,"SourceStructureID":6155,"TargetStructureID":105928,"Label":"6155-105928 via Ribbon Synapse from 15761 -> 105998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15761,"TargetID":105998,"Directional":true}]},{"ID":11472,"SourceStructureID":6155,"TargetStructureID":105944,"Label":"6155-105944 via Ribbon Synapse from 15606 -> 105947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15606,"TargetID":105947,"Directional":true}]},{"ID":11473,"SourceStructureID":6155,"TargetStructureID":105965,"Label":"6155-105965 via Ribbon Synapse from 29758 -> 105993","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29758,"TargetID":105993,"Directional":true}]},{"ID":11474,"SourceStructureID":6155,"TargetStructureID":106045,"Label":"6155-106045 via Ribbon Synapse from 15610 -> 106046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15610,"TargetID":106046,"Directional":true}]},{"ID":11475,"SourceStructureID":6155,"TargetStructureID":106048,"Label":"6155-106048 via Cistern Pre from 48326 -> 106049","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":48326,"TargetID":106049,"Directional":true}]},{"ID":11476,"SourceStructureID":6155,"TargetStructureID":106060,"Label":"6155-106060 via BC Conventional Synapse from 106062 -> 106061","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106062,"TargetID":106061,"Directional":true}]},{"ID":11477,"SourceStructureID":6155,"TargetStructureID":106067,"Label":"6155-106067 via BC Conventional Synapse from 106356 -> 106357","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106356,"TargetID":106357,"Directional":true}]},{"ID":11478,"SourceStructureID":6155,"TargetStructureID":106094,"Label":"6155-106094 via Ribbon Synapse from 106093 -> 106103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106093,"TargetID":106103,"Directional":true}]},{"ID":11479,"SourceStructureID":6155,"TargetStructureID":106095,"Label":"6155-106095 via Ribbon Synapse from 56650 -> 106096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56650,"TargetID":106096,"Directional":true}]},{"ID":11480,"SourceStructureID":6155,"TargetStructureID":106123,"Label":"6155-106123 via Ribbon Synapse from 106124 -> 106125","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106124,"TargetID":106125,"Directional":true}]},{"ID":11481,"SourceStructureID":6155,"TargetStructureID":106413,"Label":"6155-106413 via Ribbon Synapse from 106395 -> 106416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106395,"TargetID":106416,"Directional":true}]},{"ID":11482,"SourceStructureID":6155,"TargetStructureID":106435,"Label":"6155-106435 via Ribbon Synapse from 48327 -> 106436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48327,"TargetID":106436,"Directional":true}]},{"ID":11483,"SourceStructureID":6155,"TargetStructureID":106458,"Label":"6155-106458 via Ribbon Synapse from 15799 -> 106459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15799,"TargetID":106459,"Directional":true}]},{"ID":11484,"SourceStructureID":6155,"TargetStructureID":106460,"Label":"6155-106460 via Ribbon Synapse from 15799 -> 106461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15799,"TargetID":106461,"Directional":true}]},{"ID":11485,"SourceStructureID":6155,"TargetStructureID":106463,"Label":"6155-106463 via Ribbon Synapse from 15799 -> 106579","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15799,"TargetID":106579,"Directional":true}]},{"ID":11486,"SourceStructureID":6155,"TargetStructureID":106483,"Label":"6155-106483 via BC Conventional Synapse from 106568 -> 106569","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106568,"TargetID":106569,"Directional":true}]},{"ID":11487,"SourceStructureID":6155,"TargetStructureID":106604,"Label":"6155-106604 via Ribbon Synapse from 15767 -> 106611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15767,"TargetID":106611,"Directional":true}]},{"ID":11488,"SourceStructureID":6155,"TargetStructureID":106612,"Label":"6155-106612 via Ribbon Synapse from 15768 -> 106613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15768,"TargetID":106613,"Directional":true}]},{"ID":11489,"SourceStructureID":6155,"TargetStructureID":106617,"Label":"6155-106617 via Ribbon Synapse from 15768 -> 106618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15768,"TargetID":106618,"Directional":true}]},{"ID":11490,"SourceStructureID":6155,"TargetStructureID":106750,"Label":"6155-106750 via Ribbon Synapse from 15518 -> 106751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15518,"TargetID":106751,"Directional":true}]},{"ID":11491,"SourceStructureID":6155,"TargetStructureID":106812,"Label":"6155-106812 via BC Conventional Synapse from 106815 -> 106816","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106815,"TargetID":106816,"Directional":true}]},{"ID":11492,"SourceStructureID":6155,"TargetStructureID":106824,"Label":"6155-106824 via Ribbon Synapse from 49068 -> 106827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49068,"TargetID":106827,"Directional":true}]},{"ID":11493,"SourceStructureID":6155,"TargetStructureID":106831,"Label":"6155-106831 via Ribbon Synapse from 49068 -> 106833","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49068,"TargetID":106833,"Directional":true}]},{"ID":11494,"SourceStructureID":6155,"TargetStructureID":107619,"Label":"6155-107619 via Ribbon Synapse from 48267 -> 107627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48267,"TargetID":107627,"Directional":true}]},{"ID":11495,"SourceStructureID":6155,"TargetStructureID":107622,"Label":"6155-107622 via Ribbon Synapse from 15397 -> 107623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15397,"TargetID":107623,"Directional":true}]},{"ID":11496,"SourceStructureID":6155,"TargetStructureID":107739,"Label":"6155-107739 via Ribbon Synapse from 48267 -> 107740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48267,"TargetID":107740,"Directional":true}]},{"ID":11497,"SourceStructureID":6155,"TargetStructureID":107741,"Label":"6155-107741 via Ribbon Synapse from 15397 -> 107742","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15397,"TargetID":107742,"Directional":true}]},{"ID":11498,"SourceStructureID":6155,"TargetStructureID":107747,"Label":"6155-107747 via Ribbon Synapse from 15430 -> 107752","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15430,"TargetID":107752,"Directional":true}]},{"ID":11499,"SourceStructureID":6155,"TargetStructureID":107750,"Label":"6155-107750 via Ribbon Synapse from 15430 -> 107751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15430,"TargetID":107751,"Directional":true}]},{"ID":11500,"SourceStructureID":6155,"TargetStructureID":107767,"Label":"6155-107767 via Ribbon Synapse from 15395 -> 107768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15395,"TargetID":107768,"Directional":true}]},{"ID":11501,"SourceStructureID":6155,"TargetStructureID":107769,"Label":"6155-107769 via Ribbon Synapse from 15395 -> 107770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15395,"TargetID":107770,"Directional":true}]},{"ID":11502,"SourceStructureID":6155,"TargetStructureID":107779,"Label":"6155-107779 via Ribbon Synapse from 15433 -> 107780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15433,"TargetID":107780,"Directional":true}]},{"ID":11503,"SourceStructureID":6155,"TargetStructureID":107784,"Label":"6155-107784 via Ribbon Synapse from 15429 -> 107785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15429,"TargetID":107785,"Directional":true}]},{"ID":11504,"SourceStructureID":6155,"TargetStructureID":107786,"Label":"6155-107786 via Ribbon Synapse from 15429 -> 107787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15429,"TargetID":107787,"Directional":true}]},{"ID":11505,"SourceStructureID":6155,"TargetStructureID":107789,"Label":"6155-107789 via Ribbon Synapse from 107788 -> 107790","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107788,"TargetID":107790,"Directional":true}]},{"ID":11506,"SourceStructureID":6155,"TargetStructureID":107798,"Label":"6155-107798 via Ribbon Synapse from 15400 -> 107799, 107791 -> 107799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15400,"TargetID":107799,"Directional":true},{"SourceID":107791,"TargetID":107799,"Directional":true}]},{"ID":11507,"SourceStructureID":6155,"TargetStructureID":107800,"Label":"6155-107800 via Ribbon Synapse from 15400 -> 107801","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15400,"TargetID":107801,"Directional":true}]},{"ID":11508,"SourceStructureID":6155,"TargetStructureID":107805,"Label":"6155-107805 via BC Conventional Synapse from 107811 -> 107812","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107811,"TargetID":107812,"Directional":true}]},{"ID":11509,"SourceStructureID":6155,"TargetStructureID":107818,"Label":"6155-107818 via Ribbon Synapse from 107817 -> 107819","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107817,"TargetID":107819,"Directional":true}]},{"ID":11510,"SourceStructureID":6155,"TargetStructureID":107838,"Label":"6155-107838 via Ribbon Synapse from 15384 -> 107839","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15384,"TargetID":107839,"Directional":true}]},{"ID":11511,"SourceStructureID":6155,"TargetStructureID":107840,"Label":"6155-107840 via Ribbon Synapse from 15384 -> 107841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15384,"TargetID":107841,"Directional":true}]},{"ID":11512,"SourceStructureID":6155,"TargetStructureID":107845,"Label":"6155-107845 via Ribbon Synapse from 49076 -> 107864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49076,"TargetID":107864,"Directional":true}]},{"ID":11513,"SourceStructureID":6155,"TargetStructureID":107860,"Label":"6155-107860 via Ribbon Synapse from 49076 -> 107863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49076,"TargetID":107863,"Directional":true}]},{"ID":11514,"SourceStructureID":6155,"TargetStructureID":107870,"Label":"6155-107870 via Ribbon Synapse from 15511 -> 107871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15511,"TargetID":107871,"Directional":true}]},{"ID":11515,"SourceStructureID":6155,"TargetStructureID":107879,"Label":"6155-107879 via Ribbon Synapse from 15510 -> 107881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15510,"TargetID":107881,"Directional":true}]},{"ID":11516,"SourceStructureID":6155,"TargetStructureID":107882,"Label":"6155-107882 via Ribbon Synapse from 15510 -> 107885","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15510,"TargetID":107885,"Directional":true}]},{"ID":11517,"SourceStructureID":6155,"TargetStructureID":107894,"Label":"6155-107894 via Ribbon Synapse from 15386 -> 107903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15386,"TargetID":107903,"Directional":true}]},{"ID":11518,"SourceStructureID":6155,"TargetStructureID":107904,"Label":"6155-107904 via Ribbon Synapse from 49078 -> 107906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49078,"TargetID":107906,"Directional":true}]},{"ID":11519,"SourceStructureID":6155,"TargetStructureID":107908,"Label":"6155-107908 via Ribbon Synapse from 15541 -> 107949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15541,"TargetID":107949,"Directional":true}]},{"ID":11520,"SourceStructureID":6155,"TargetStructureID":107910,"Label":"6155-107910 via Ribbon Synapse from 15541 -> 107972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15541,"TargetID":107972,"Directional":true}]},{"ID":11521,"SourceStructureID":6155,"TargetStructureID":107915,"Label":"6155-107915 via Ribbon Synapse from 15509 -> 107916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15509,"TargetID":107916,"Directional":true}]},{"ID":11522,"SourceStructureID":6155,"TargetStructureID":107917,"Label":"6155-107917 via Ribbon Synapse from 15508 -> 107920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15508,"TargetID":107920,"Directional":true}]},{"ID":11523,"SourceStructureID":6155,"TargetStructureID":107918,"Label":"6155-107918 via Ribbon Synapse from 15508 -> 107919","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15508,"TargetID":107919,"Directional":true}]},{"ID":11524,"SourceStructureID":6155,"TargetStructureID":107989,"Label":"6155-107989 via Ribbon Synapse from 15569 -> 108007","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15569,"TargetID":108007,"Directional":true}]},{"ID":11525,"SourceStructureID":6155,"TargetStructureID":107992,"Label":"6155-107992 via BC Conventional Synapse from 107995 -> 107994","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107995,"TargetID":107994,"Directional":true}]},{"ID":11526,"SourceStructureID":6155,"TargetStructureID":108004,"Label":"6155-108004 via Ribbon Synapse from 15568 -> 108009","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15568,"TargetID":108009,"Directional":true}]},{"ID":11527,"SourceStructureID":6155,"TargetStructureID":108008,"Label":"6155-108008 via Ribbon Synapse from 15569 -> 108015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15569,"TargetID":108015,"Directional":true}]},{"ID":11528,"SourceStructureID":6155,"TargetStructureID":108010,"Label":"6155-108010 via Ribbon Synapse from 15568 -> 108014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15568,"TargetID":108014,"Directional":true}]},{"ID":11529,"SourceStructureID":6155,"TargetStructureID":108066,"Label":"6155-108066 via Ribbon Synapse from 48305 -> 108069","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48305,"TargetID":108069,"Directional":true}]},{"ID":11530,"SourceStructureID":6155,"TargetStructureID":108076,"Label":"6155-108076 via Ribbon Synapse from 48303 -> 108078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48303,"TargetID":108078,"Directional":true}]},{"ID":11531,"SourceStructureID":6155,"TargetStructureID":108079,"Label":"6155-108079 via Ribbon Synapse from 48303 -> 108080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48303,"TargetID":108080,"Directional":true}]},{"ID":11532,"SourceStructureID":6155,"TargetStructureID":108081,"Label":"6155-108081 via BC Conventional Synapse from 108084 -> 108085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108084,"TargetID":108085,"Directional":true}]},{"ID":11533,"SourceStructureID":6155,"TargetStructureID":108092,"Label":"6155-108092 via Ribbon Synapse from 15546 -> 108093","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15546,"TargetID":108093,"Directional":true}]},{"ID":11534,"SourceStructureID":6155,"TargetStructureID":108117,"Label":"6155-108117 via Ribbon Synapse from 15549 -> 108121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15549,"TargetID":108121,"Directional":true}]},{"ID":11535,"SourceStructureID":6155,"TargetStructureID":108119,"Label":"6155-108119 via Ribbon Synapse from 15550 -> 108120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15550,"TargetID":108120,"Directional":true}]},{"ID":11536,"SourceStructureID":6155,"TargetStructureID":108122,"Label":"6155-108122 via Ribbon Synapse from 48293 -> 108123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48293,"TargetID":108123,"Directional":true}]},{"ID":11537,"SourceStructureID":6155,"TargetStructureID":108196,"Label":"6155-108196 via Ribbon Synapse from 34785 -> 108198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34785,"TargetID":108198,"Directional":true}]},{"ID":11538,"SourceStructureID":6155,"TargetStructureID":108286,"Label":"6155-108286 via Ribbon Synapse from 15521 -> 108287","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15521,"TargetID":108287,"Directional":true}]},{"ID":11539,"SourceStructureID":6155,"TargetStructureID":108292,"Label":"6155-108292 via Ribbon Synapse from 15521 -> 108293","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15521,"TargetID":108293,"Directional":true}]},{"ID":11540,"SourceStructureID":6155,"TargetStructureID":108296,"Label":"6155-108296 via Ribbon Synapse from 15520 -> 108297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15520,"TargetID":108297,"Directional":true}]},{"ID":11541,"SourceStructureID":6155,"TargetStructureID":108301,"Label":"6155-108301 via Ribbon Synapse from 15522 -> 108302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15522,"TargetID":108302,"Directional":true}]},{"ID":11542,"SourceStructureID":6155,"TargetStructureID":108325,"Label":"6155-108325 via Ribbon Synapse from 15523 -> 108326","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15523,"TargetID":108326,"Directional":true}]},{"ID":11543,"SourceStructureID":6155,"TargetStructureID":108327,"Label":"6155-108327 via Ribbon Synapse from 15525 -> 108329","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15525,"TargetID":108329,"Directional":true}]},{"ID":11544,"SourceStructureID":6155,"TargetStructureID":108339,"Label":"6155-108339 via Ribbon Synapse from 49083 -> 108341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49083,"TargetID":108341,"Directional":true}]},{"ID":11545,"SourceStructureID":6156,"TargetStructureID":318,"Label":"6156-318 via Ribbon Synapse from 14099 -> 14098, 15852 -> 15853, 65190 -> 65191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14099,"TargetID":14098,"Directional":true},{"SourceID":15852,"TargetID":15853,"Directional":true},{"SourceID":65190,"TargetID":65191,"Directional":true}]},{"ID":11546,"SourceStructureID":6156,"TargetStructureID":390,"Label":"6156-390 via Ribbon Synapse from 23199 -> 65106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23199,"TargetID":65106,"Directional":true}]},{"ID":11547,"SourceStructureID":6156,"TargetStructureID":514,"Label":"6156-514 via Ribbon Synapse from 11622 -> 11597, 117625 -> 133371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11622,"TargetID":11597,"Directional":true},{"SourceID":117625,"TargetID":133371,"Directional":true}]},{"ID":11548,"SourceStructureID":6156,"TargetStructureID":4890,"Label":"6156-4890 via BC Conventional Synapse from 117575 -> 133465","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117575,"TargetID":133465,"Directional":true}]},{"ID":11549,"SourceStructureID":6156,"TargetStructureID":4890,"Label":"6156-4890 via Ribbon Synapse from 18574 -> 9635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18574,"TargetID":9635,"Directional":true}]},{"ID":11550,"SourceStructureID":6156,"TargetStructureID":5117,"Label":"6156-5117 via BC Conventional Synapse from 133228 -> 23233","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133228,"TargetID":23233,"Directional":true}]},{"ID":11551,"SourceStructureID":6156,"TargetStructureID":5117,"Label":"6156-5117 via Ribbon Synapse from 23229 -> 133221, 23230 -> 23232, 23231 -> 23233, 23269 -> 69329, 28677 -> 133182, 28678 -> 133176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23229,"TargetID":133221,"Directional":true},{"SourceID":23230,"TargetID":23232,"Directional":true},{"SourceID":23231,"TargetID":23233,"Directional":true},{"SourceID":23269,"TargetID":69329,"Directional":true},{"SourceID":28677,"TargetID":133182,"Directional":true},{"SourceID":28678,"TargetID":133176,"Directional":true}]},{"ID":11552,"SourceStructureID":6156,"TargetStructureID":5118,"Label":"6156-5118 via Ribbon Synapse from 23231 -> 133238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23231,"TargetID":133238,"Directional":true}]},{"ID":11553,"SourceStructureID":6156,"TargetStructureID":5350,"Label":"6156-5350 via Ribbon Synapse from 22574 -> 133279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22574,"TargetID":133279,"Directional":true}]},{"ID":11554,"SourceStructureID":6156,"TargetStructureID":5575,"Label":"6156-5575 via Ribbon Synapse from 11604 -> 22948, 11605 -> 22949, 23625 -> 22948, 24495 -> 24494, 24497 -> 24494, 133153 -> 22948, 133154 -> 22948, 133155 -> 22949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11604,"TargetID":22948,"Directional":true},{"SourceID":11605,"TargetID":22949,"Directional":true},{"SourceID":23625,"TargetID":22948,"Directional":true},{"SourceID":24495,"TargetID":24494,"Directional":true},{"SourceID":24497,"TargetID":24494,"Directional":true},{"SourceID":133153,"TargetID":22948,"Directional":true},{"SourceID":133154,"TargetID":22948,"Directional":true},{"SourceID":133155,"TargetID":22949,"Directional":true}]},{"ID":11555,"SourceStructureID":6156,"TargetStructureID":8577,"Label":"6156-8577 via Ribbon Synapse from 117566 -> 15927","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117566,"TargetID":15927,"Directional":true}]},{"ID":11556,"SourceStructureID":6156,"TargetStructureID":8579,"Label":"6156-8579 via Ribbon Synapse from 23251 -> 61876, 23259 -> 133385","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23251,"TargetID":61876,"Directional":true},{"SourceID":23259,"TargetID":133385,"Directional":true}]},{"ID":11557,"SourceStructureID":6156,"TargetStructureID":8720,"Label":"6156-8720 via BC Conventional Synapse from 133388 -> 60103","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133388,"TargetID":60103,"Directional":true}]},{"ID":11558,"SourceStructureID":6156,"TargetStructureID":8720,"Label":"6156-8720 via Ribbon Synapse from 15304 -> 15303, 22375 -> 15306, 28673 -> 63198, 117510 -> 133313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15304,"TargetID":15303,"Directional":true},{"SourceID":22375,"TargetID":15306,"Directional":true},{"SourceID":28673,"TargetID":63198,"Directional":true},{"SourceID":117510,"TargetID":133313,"Directional":true}]},{"ID":11559,"SourceStructureID":6156,"TargetStructureID":12208,"Label":"6156-12208 via Ribbon Synapse from 11599 -> 22343","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11599,"TargetID":22343,"Directional":true}]},{"ID":11560,"SourceStructureID":6156,"TargetStructureID":13855,"Label":"6156-13855 via Ribbon Synapse from 133477 -> 133478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133477,"TargetID":133478,"Directional":true}]},{"ID":11561,"SourceStructureID":6156,"TargetStructureID":15394,"Label":"6156-15394 via Ribbon Synapse from 15858 -> 133421","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15858,"TargetID":133421,"Directional":true}]},{"ID":11562,"SourceStructureID":6156,"TargetStructureID":18282,"Label":"6156-18282 via Ribbon Synapse from 18574 -> 18305, 18575 -> 18572","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18574,"TargetID":18305,"Directional":true},{"SourceID":18575,"TargetID":18572,"Directional":true}]},{"ID":11563,"SourceStructureID":6156,"TargetStructureID":18576,"Label":"6156-18576 via Ribbon Synapse from 18575 -> 18577, 20418 -> 100454, 133204 -> 133203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18575,"TargetID":18577,"Directional":true},{"SourceID":20418,"TargetID":100454,"Directional":true},{"SourceID":133204,"TargetID":133203,"Directional":true}]},{"ID":11564,"SourceStructureID":6156,"TargetStructureID":20413,"Label":"6156-20413 via Ribbon Synapse from 20418 -> 20417","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20418,"TargetID":20417,"Directional":true}]},{"ID":11565,"SourceStructureID":6156,"TargetStructureID":22554,"Label":"6156-22554 via Ribbon Synapse from 28654 -> 135148","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28654,"TargetID":135148,"Directional":true}]},{"ID":11566,"SourceStructureID":6156,"TargetStructureID":22974,"Label":"6156-22974 via Ribbon Synapse from 11621 -> 23030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11621,"TargetID":23030,"Directional":true}]},{"ID":11567,"SourceStructureID":6156,"TargetStructureID":25374,"Label":"6156-25374 via Ribbon Synapse from 25381 -> 25380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25381,"TargetID":25380,"Directional":true}]},{"ID":11568,"SourceStructureID":6156,"TargetStructureID":25440,"Label":"6156-25440 via Ribbon Synapse from 23227 -> 25460, 28677 -> 133183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23227,"TargetID":25460,"Directional":true},{"SourceID":28677,"TargetID":133183,"Directional":true}]},{"ID":11569,"SourceStructureID":6156,"TargetStructureID":25861,"Label":"6156-25861 via Ribbon Synapse from 23166 -> 32236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23166,"TargetID":32236,"Directional":true}]},{"ID":11570,"SourceStructureID":6156,"TargetStructureID":34601,"Label":"6156-34601 via Ribbon Synapse from 60642 -> 60643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60642,"TargetID":60643,"Directional":true}]},{"ID":11571,"SourceStructureID":6156,"TargetStructureID":54727,"Label":"6156-54727 via Ribbon Synapse from 23180 -> 54738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23180,"TargetID":54738,"Directional":true}]},{"ID":11572,"SourceStructureID":6156,"TargetStructureID":54744,"Label":"6156-54744 via Ribbon Synapse from 23192 -> 133254, 23269 -> 54746","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23192,"TargetID":133254,"Directional":true},{"SourceID":23269,"TargetID":54746,"Directional":true}]},{"ID":11573,"SourceStructureID":6156,"TargetStructureID":59422,"Label":"6156-59422 via Ribbon Synapse from 23258 -> 59423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23258,"TargetID":59423,"Directional":true}]},{"ID":11574,"SourceStructureID":6156,"TargetStructureID":60201,"Label":"6156-60201 via Ribbon Synapse from 23230 -> 133230, 23234 -> 60205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23230,"TargetID":133230,"Directional":true},{"SourceID":23234,"TargetID":60205,"Directional":true}]},{"ID":11575,"SourceStructureID":6156,"TargetStructureID":60657,"Label":"6156-60657 via Ribbon Synapse from 28678 -> 60659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28678,"TargetID":60659,"Directional":true}]},{"ID":11576,"SourceStructureID":6156,"TargetStructureID":61816,"Label":"6156-61816 via Ribbon Synapse from 22375 -> 80737, 22376 -> 74052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22375,"TargetID":80737,"Directional":true},{"SourceID":22376,"TargetID":74052,"Directional":true}]},{"ID":11577,"SourceStructureID":6156,"TargetStructureID":61882,"Label":"6156-61882 via Ribbon Synapse from 23257 -> 61885","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23257,"TargetID":61885,"Directional":true}]},{"ID":11578,"SourceStructureID":6156,"TargetStructureID":61898,"Label":"6156-61898 via Ribbon Synapse from 23255 -> 61903, 23260 -> 61901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23255,"TargetID":61903,"Directional":true},{"SourceID":23260,"TargetID":61901,"Directional":true}]},{"ID":11579,"SourceStructureID":6156,"TargetStructureID":61933,"Label":"6156-61933 via Ribbon Synapse from 28692 -> 68641","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28692,"TargetID":68641,"Directional":true}]},{"ID":11580,"SourceStructureID":6156,"TargetStructureID":65267,"Label":"6156-65267 via Ribbon Synapse from 28637 -> 65301, 28638 -> 65301, 28639 -> 65301","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28637,"TargetID":65301,"Directional":true},{"SourceID":28638,"TargetID":65301,"Directional":true},{"SourceID":28639,"TargetID":65301,"Directional":true}]},{"ID":11581,"SourceStructureID":6156,"TargetStructureID":67812,"Label":"6156-67812 via BC Conventional Synapse from 67821 -> 67822","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67821,"TargetID":67822,"Directional":true}]},{"ID":11582,"SourceStructureID":6156,"TargetStructureID":67871,"Label":"6156-67871 via Ribbon Synapse from 28696 -> 133338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28696,"TargetID":133338,"Directional":true}]},{"ID":11583,"SourceStructureID":6156,"TargetStructureID":67874,"Label":"6156-67874 via Ribbon Synapse from 133337 -> 67880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133337,"TargetID":67880,"Directional":true}]},{"ID":11584,"SourceStructureID":6156,"TargetStructureID":68042,"Label":"6156-68042 via BC Conventional Synapse from 68048 -> 68049","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68048,"TargetID":68049,"Directional":true}]},{"ID":11585,"SourceStructureID":6156,"TargetStructureID":68077,"Label":"6156-68077 via Ribbon Synapse from 28695 -> 68650","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28695,"TargetID":68650,"Directional":true}]},{"ID":11586,"SourceStructureID":6156,"TargetStructureID":68894,"Label":"6156-68894 via Ribbon Synapse from 28692 -> 68896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28692,"TargetID":68896,"Directional":true}]},{"ID":11587,"SourceStructureID":6156,"TargetStructureID":70284,"Label":"6156-70284 via Ribbon Synapse from 22323 -> 133148","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22323,"TargetID":133148,"Directional":true}]},{"ID":11588,"SourceStructureID":6156,"TargetStructureID":101325,"Label":"6156-101325 via Ribbon Synapse from 25560 -> 101328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25560,"TargetID":101328,"Directional":true}]},{"ID":11589,"SourceStructureID":6156,"TargetStructureID":133192,"Label":"6156-133192 via Ribbon Synapse from 23208 -> 133193, 23210 -> 133193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23208,"TargetID":133193,"Directional":true},{"SourceID":23210,"TargetID":133193,"Directional":true}]},{"ID":11590,"SourceStructureID":6156,"TargetStructureID":133260,"Label":"6156-133260 via Ribbon Synapse from 133259 -> 133261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133259,"TargetID":133261,"Directional":true}]},{"ID":11591,"SourceStructureID":6156,"TargetStructureID":133264,"Label":"6156-133264 via Ribbon Synapse from 133259 -> 133265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133259,"TargetID":133265,"Directional":true}]},{"ID":11592,"SourceStructureID":6156,"TargetStructureID":133304,"Label":"6156-133304 via Ribbon Synapse from 133307 -> 133306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133307,"TargetID":133306,"Directional":true}]},{"ID":11593,"SourceStructureID":6156,"TargetStructureID":133364,"Label":"6156-133364 via Ribbon Synapse from 23265 -> 133365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23265,"TargetID":133365,"Directional":true}]},{"ID":11594,"SourceStructureID":6156,"TargetStructureID":133451,"Label":"6156-133451 via Ribbon Synapse from 133450 -> 133453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133450,"TargetID":133453,"Directional":true}]},{"ID":11595,"SourceStructureID":6158,"TargetStructureID":606,"Label":"6158-606 via Ribbon Synapse from 47268 -> 47266, 47269 -> 47270","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47268,"TargetID":47266,"Directional":true},{"SourceID":47269,"TargetID":47270,"Directional":true}]},{"ID":11596,"SourceStructureID":6162,"TargetStructureID":7594,"Label":"6162-7594 via Ribbon Synapse from 29120 -> 55751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29120,"TargetID":55751,"Directional":true}]},{"ID":11597,"SourceStructureID":6162,"TargetStructureID":15796,"Label":"6162-15796 via Ribbon Synapse from 19982 -> 19978, 20797 -> 20799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19982,"TargetID":19978,"Directional":true},{"SourceID":20797,"TargetID":20799,"Directional":true}]},{"ID":11598,"SourceStructureID":6162,"TargetStructureID":35597,"Label":"6162-35597 via Ribbon Synapse from 127715 -> 127714, 127717 -> 127716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127715,"TargetID":127714,"Directional":true},{"SourceID":127717,"TargetID":127716,"Directional":true}]},{"ID":11599,"SourceStructureID":6162,"TargetStructureID":55232,"Label":"6162-55232 via Ribbon Synapse from 29094 -> 55249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29094,"TargetID":55249,"Directional":true}]},{"ID":11600,"SourceStructureID":6162,"TargetStructureID":87277,"Label":"6162-87277 via Ribbon Synapse from 29122 -> 87290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29122,"TargetID":87290,"Directional":true}]},{"ID":11601,"SourceStructureID":6162,"TargetStructureID":87291,"Label":"6162-87291 via Ribbon Synapse from 29122 -> 87292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29122,"TargetID":87292,"Directional":true}]},{"ID":11602,"SourceStructureID":6162,"TargetStructureID":110908,"Label":"6162-110908 via Ribbon Synapse from 136306 -> 136307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136306,"TargetID":136307,"Directional":true}]},{"ID":11603,"SourceStructureID":6162,"TargetStructureID":111078,"Label":"6162-111078 via Ribbon Synapse from 29077 -> 111079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29077,"TargetID":111079,"Directional":true}]},{"ID":11604,"SourceStructureID":6162,"TargetStructureID":111080,"Label":"6162-111080 via Ribbon Synapse from 29077 -> 111081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29077,"TargetID":111081,"Directional":true}]},{"ID":11605,"SourceStructureID":6163,"TargetStructureID":223,"Label":"6163-223 via Ribbon Synapse from 35979 -> 35980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35979,"TargetID":35980,"Directional":true}]},{"ID":11606,"SourceStructureID":6163,"TargetStructureID":410,"Label":"6163-410 via Ribbon Synapse from 17526 -> 17524, 17739 -> 38509, 17761 -> 17760, 17767 -> 17766, 17768 -> 17765, 19147 -> 19149","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17526,"TargetID":17524,"Directional":true},{"SourceID":17739,"TargetID":38509,"Directional":true},{"SourceID":17761,"TargetID":17760,"Directional":true},{"SourceID":17767,"TargetID":17766,"Directional":true},{"SourceID":17768,"TargetID":17765,"Directional":true},{"SourceID":19147,"TargetID":19149,"Directional":true}]},{"ID":11607,"SourceStructureID":6163,"TargetStructureID":591,"Label":"6163-591 via Ribbon Synapse from 19150 -> 10294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19150,"TargetID":10294,"Directional":true}]},{"ID":11608,"SourceStructureID":6163,"TargetStructureID":17527,"Label":"6163-17527 via Ribbon Synapse from 17529 -> 17528, 17530 -> 17531, 17731 -> 17730, 17737 -> 17736, 17739 -> 17738, 18363 -> 18364, 19144 -> 19145, 19153 -> 19154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17529,"TargetID":17528,"Directional":true},{"SourceID":17530,"TargetID":17531,"Directional":true},{"SourceID":17731,"TargetID":17730,"Directional":true},{"SourceID":17737,"TargetID":17736,"Directional":true},{"SourceID":17739,"TargetID":17738,"Directional":true},{"SourceID":18363,"TargetID":18364,"Directional":true},{"SourceID":19144,"TargetID":19145,"Directional":true},{"SourceID":19153,"TargetID":19154,"Directional":true}]},{"ID":11609,"SourceStructureID":6163,"TargetStructureID":29791,"Label":"6163-29791 via Ribbon Synapse from 18375 -> 29798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18375,"TargetID":29798,"Directional":true}]},{"ID":11610,"SourceStructureID":6164,"TargetStructureID":284,"Label":"6164-284 via Ribbon Synapse from 17437 -> 17438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17437,"TargetID":17438,"Directional":true}]},{"ID":11611,"SourceStructureID":6164,"TargetStructureID":6153,"Label":"6164-6153 via Ribbon Synapse from 11759 -> 11760, 17443 -> 17442, 17445 -> 17447, 17450 -> 17449, 17451 -> 17452, 17460 -> 17461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11759,"TargetID":11760,"Directional":true},{"SourceID":17443,"TargetID":17442,"Directional":true},{"SourceID":17445,"TargetID":17447,"Directional":true},{"SourceID":17450,"TargetID":17449,"Directional":true},{"SourceID":17451,"TargetID":17452,"Directional":true},{"SourceID":17460,"TargetID":17461,"Directional":true}]},{"ID":11612,"SourceStructureID":6164,"TargetStructureID":7157,"Label":"6164-7157 via Ribbon Synapse from 18186 -> 18185, 18201 -> 18200","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18186,"TargetID":18185,"Directional":true},{"SourceID":18201,"TargetID":18200,"Directional":true}]},{"ID":11613,"SourceStructureID":6164,"TargetStructureID":114925,"Label":"6164-114925 via Ribbon Synapse from 17445 -> 114933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17445,"TargetID":114933,"Directional":true}]},{"ID":11614,"SourceStructureID":6165,"TargetStructureID":38718,"Label":"6165-38718 via Ribbon Synapse from 38726 -> 38725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38726,"TargetID":38725,"Directional":true}]},{"ID":11615,"SourceStructureID":6165,"TargetStructureID":83803,"Label":"6165-83803 via Ribbon Synapse from 38726 -> 83804","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38726,"TargetID":83804,"Directional":true}]},{"ID":11616,"SourceStructureID":6166,"TargetStructureID":8575,"Label":"6166-8575 via BC Conventional Synapse from 62645 -> 62644","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62645,"TargetID":62644,"Directional":true}]},{"ID":11617,"SourceStructureID":6169,"TargetStructureID":138,"Label":"6169-138 via Conventional from 14909 -> 2173","Type":"Conventional","Directional":true,"Links":[{"SourceID":14909,"TargetID":2173,"Directional":true}]},{"ID":11618,"SourceStructureID":6169,"TargetStructureID":165,"Label":"6169-165 via Conventional from 20776 -> 20777, 21684 -> 20781","Type":"Conventional","Directional":true,"Links":[{"SourceID":20776,"TargetID":20777,"Directional":true},{"SourceID":21684,"TargetID":20781,"Directional":true}]},{"ID":11619,"SourceStructureID":6169,"TargetStructureID":172,"Label":"6169-172 via Conventional from 12227 -> 12218, 18408 -> 18407","Type":"Conventional","Directional":true,"Links":[{"SourceID":12227,"TargetID":12218,"Directional":true},{"SourceID":18408,"TargetID":18407,"Directional":true}]},{"ID":11620,"SourceStructureID":6169,"TargetStructureID":173,"Label":"6169-173 via Conventional from 11953 -> 11911, 11954 -> 11915, 11956 -> 11955, 12221 -> 11890, 12223 -> 11890, 12224 -> 12225, 60919 -> 11982, 60920 -> 11985, 60926 -> 60927, 88183 -> 5913, 88186 -> 88187, 88189 -> 88188, 136856 -> 136858, 136860 -> 136861, 136871 -> 136872","Type":"Conventional","Directional":true,"Links":[{"SourceID":11953,"TargetID":11911,"Directional":true},{"SourceID":11954,"TargetID":11915,"Directional":true},{"SourceID":11956,"TargetID":11955,"Directional":true},{"SourceID":12221,"TargetID":11890,"Directional":true},{"SourceID":12223,"TargetID":11890,"Directional":true},{"SourceID":12224,"TargetID":12225,"Directional":true},{"SourceID":60919,"TargetID":11982,"Directional":true},{"SourceID":60920,"TargetID":11985,"Directional":true},{"SourceID":60926,"TargetID":60927,"Directional":true},{"SourceID":88183,"TargetID":5913,"Directional":true},{"SourceID":88186,"TargetID":88187,"Directional":true},{"SourceID":88189,"TargetID":88188,"Directional":true},{"SourceID":136856,"TargetID":136858,"Directional":true},{"SourceID":136860,"TargetID":136861,"Directional":true},{"SourceID":136871,"TargetID":136872,"Directional":true}]},{"ID":11621,"SourceStructureID":6169,"TargetStructureID":181,"Label":"6169-181 via Conventional from 20421 -> 20422, 20441 -> 20442","Type":"Conventional","Directional":true,"Links":[{"SourceID":20421,"TargetID":20422,"Directional":true},{"SourceID":20441,"TargetID":20442,"Directional":true}]},{"ID":11622,"SourceStructureID":6169,"TargetStructureID":992,"Label":"6169-992 via Conventional from 29417 -> 29425, 29417 -> 29433","Type":"Conventional","Directional":true,"Links":[{"SourceID":29417,"TargetID":29425,"Directional":true},{"SourceID":29417,"TargetID":29433,"Directional":true}]},{"ID":11623,"SourceStructureID":6169,"TargetStructureID":4568,"Label":"6169-4568 via Conventional from 9472 -> 11554, 9476 -> 20778","Type":"Conventional","Directional":true,"Links":[{"SourceID":9472,"TargetID":11554,"Directional":true},{"SourceID":9476,"TargetID":20778,"Directional":true}]},{"ID":11624,"SourceStructureID":6169,"TargetStructureID":6169,"Label":"6169-6169 via Conventional from 88185 -> 88184","Type":"Conventional","Directional":true,"Links":[{"SourceID":88185,"TargetID":88184,"Directional":true}]},{"ID":11625,"SourceStructureID":6169,"TargetStructureID":9787,"Label":"6169-9787 via Conventional from 18076 -> 12071, 60922 -> 18086","Type":"Conventional","Directional":true,"Links":[{"SourceID":18076,"TargetID":12071,"Directional":true},{"SourceID":60922,"TargetID":18086,"Directional":true}]},{"ID":11626,"SourceStructureID":6169,"TargetStructureID":11030,"Label":"6169-11030 via Conventional from 77661 -> 77662","Type":"Conventional","Directional":true,"Links":[{"SourceID":77661,"TargetID":77662,"Directional":true}]},{"ID":11627,"SourceStructureID":6169,"TargetStructureID":12203,"Label":"6169-12203 via Conventional from 18813 -> 15636","Type":"Conventional","Directional":true,"Links":[{"SourceID":18813,"TargetID":15636,"Directional":true}]},{"ID":11628,"SourceStructureID":6169,"TargetStructureID":91280,"Label":"6169-91280 via Conventional from 91300 -> 91301","Type":"Conventional","Directional":true,"Links":[{"SourceID":91300,"TargetID":91301,"Directional":true}]},{"ID":11629,"SourceStructureID":6169,"TargetStructureID":132220,"Label":"6169-132220 via Conventional from 60853 -> 132227, 60856 -> 132226","Type":"Conventional","Directional":true,"Links":[{"SourceID":60853,"TargetID":132227,"Directional":true},{"SourceID":60856,"TargetID":132226,"Directional":true}]},{"ID":11630,"SourceStructureID":6203,"TargetStructureID":162,"Label":"6203-162 via Ribbon Synapse from 12001 -> 11867, 52644 -> 52643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12001,"TargetID":11867,"Directional":true},{"SourceID":52644,"TargetID":52643,"Directional":true}]},{"ID":11631,"SourceStructureID":6203,"TargetStructureID":606,"Label":"6203-606 via Ribbon Synapse from 51942 -> 51943, 54617 -> 54618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51942,"TargetID":51943,"Directional":true},{"SourceID":54617,"TargetID":54618,"Directional":true}]},{"ID":11632,"SourceStructureID":6203,"TargetStructureID":9769,"Label":"6203-9769 via Ribbon Synapse from 52628 -> 52626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52628,"TargetID":52626,"Directional":true}]},{"ID":11633,"SourceStructureID":6203,"TargetStructureID":33272,"Label":"6203-33272 via Ribbon Synapse from 11973 -> 33273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11973,"TargetID":33273,"Directional":true}]},{"ID":11634,"SourceStructureID":6203,"TargetStructureID":43716,"Label":"6203-43716 via Ribbon Synapse from 123671 -> 123670, 123674 -> 123673","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123671,"TargetID":123670,"Directional":true},{"SourceID":123674,"TargetID":123673,"Directional":true}]},{"ID":11635,"SourceStructureID":6203,"TargetStructureID":56841,"Label":"6203-56841 via Ribbon Synapse from 57215 -> 57216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57215,"TargetID":57216,"Directional":true}]},{"ID":11636,"SourceStructureID":6203,"TargetStructureID":120945,"Label":"6203-120945 via Ribbon Synapse from 57261 -> 120947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57261,"TargetID":120947,"Directional":true}]},{"ID":11637,"SourceStructureID":6203,"TargetStructureID":123675,"Label":"6203-123675 via Ribbon Synapse from 123674 -> 123676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123674,"TargetID":123676,"Directional":true}]},{"ID":11638,"SourceStructureID":6204,"TargetStructureID":162,"Label":"6204-162 via Ribbon Synapse from 52642 -> 52641","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52642,"TargetID":52641,"Directional":true}]},{"ID":11639,"SourceStructureID":6204,"TargetStructureID":606,"Label":"6204-606 via Ribbon Synapse from 51922 -> 51921, 51937 -> 51938, 51954 -> 51949, 51956 -> 51957, 51967 -> 51968, 51985 -> 51986, 51987 -> 51982, 51998 -> 51999","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51922,"TargetID":51921,"Directional":true},{"SourceID":51937,"TargetID":51938,"Directional":true},{"SourceID":51954,"TargetID":51949,"Directional":true},{"SourceID":51956,"TargetID":51957,"Directional":true},{"SourceID":51967,"TargetID":51968,"Directional":true},{"SourceID":51985,"TargetID":51986,"Directional":true},{"SourceID":51987,"TargetID":51982,"Directional":true},{"SourceID":51998,"TargetID":51999,"Directional":true}]},{"ID":11640,"SourceStructureID":6204,"TargetStructureID":5442,"Label":"6204-5442 via Ribbon Synapse from 74439 -> 74440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74439,"TargetID":74440,"Directional":true}]},{"ID":11641,"SourceStructureID":6204,"TargetStructureID":9769,"Label":"6204-9769 via Ribbon Synapse from 52825 -> 52824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52825,"TargetID":52824,"Directional":true}]},{"ID":11642,"SourceStructureID":6204,"TargetStructureID":16073,"Label":"6204-16073 via Ribbon Synapse from 52121 -> 16076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52121,"TargetID":16076,"Directional":true}]},{"ID":11643,"SourceStructureID":6204,"TargetStructureID":32773,"Label":"6204-32773 via Ribbon Synapse from 101702 -> 32782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101702,"TargetID":32782,"Directional":true}]},{"ID":11644,"SourceStructureID":6204,"TargetStructureID":33039,"Label":"6204-33039 via Ribbon Synapse from 33051 -> 33050","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33051,"TargetID":33050,"Directional":true}]},{"ID":11645,"SourceStructureID":6204,"TargetStructureID":33714,"Label":"6204-33714 via Ribbon Synapse from 33717 -> 33715","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33717,"TargetID":33715,"Directional":true}]},{"ID":11646,"SourceStructureID":6204,"TargetStructureID":35343,"Label":"6204-35343 via Ribbon Synapse from 35347 -> 35346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35347,"TargetID":35346,"Directional":true}]},{"ID":11647,"SourceStructureID":6204,"TargetStructureID":51923,"Label":"6204-51923 via Ribbon Synapse from 51926 -> 51927","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51926,"TargetID":51927,"Directional":true}]},{"ID":11648,"SourceStructureID":6204,"TargetStructureID":68539,"Label":"6204-68539 via Ribbon Synapse from 52123 -> 75959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52123,"TargetID":75959,"Directional":true}]},{"ID":11649,"SourceStructureID":6204,"TargetStructureID":75960,"Label":"6204-75960 via Ribbon Synapse from 52123 -> 75961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52123,"TargetID":75961,"Directional":true}]},{"ID":11650,"SourceStructureID":6204,"TargetStructureID":88395,"Label":"6204-88395 via Ribbon Synapse from 51987 -> 88421","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51987,"TargetID":88421,"Directional":true}]},{"ID":11651,"SourceStructureID":6300,"TargetStructureID":6047,"Label":"6300-6047 via Conventional from 113701 -> 113702","Type":"Conventional","Directional":true,"Links":[{"SourceID":113701,"TargetID":113702,"Directional":true}]},{"ID":11652,"SourceStructureID":6406,"TargetStructureID":514,"Label":"6406-514 via Conventional from 6418 -> 1006, 6419 -> 1441","Type":"Conventional","Directional":true,"Links":[{"SourceID":6418,"TargetID":1006,"Directional":true},{"SourceID":6419,"TargetID":1441,"Directional":true}]},{"ID":11653,"SourceStructureID":6406,"TargetStructureID":5278,"Label":"6406-5278 via Conventional from 20094 -> 20095","Type":"Conventional","Directional":true,"Links":[{"SourceID":20094,"TargetID":20095,"Directional":true}]},{"ID":11654,"SourceStructureID":6406,"TargetStructureID":20681,"Label":"6406-20681 via Conventional from 6415 -> 20698","Type":"Conventional","Directional":true,"Links":[{"SourceID":6415,"TargetID":20698,"Directional":true}]},{"ID":11655,"SourceStructureID":6561,"TargetStructureID":223,"Label":"6561-223 via Ribbon Synapse from 8326 -> 17312, 17307 -> 17304, 17309 -> 17308, 17318 -> 17317, 17751 -> 18491, 17843 -> 17842, 17892 -> 17668, 18487 -> 18488, 18489 -> 18490, 18493 -> 18494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8326,"TargetID":17312,"Directional":true},{"SourceID":17307,"TargetID":17304,"Directional":true},{"SourceID":17309,"TargetID":17308,"Directional":true},{"SourceID":17318,"TargetID":17317,"Directional":true},{"SourceID":17751,"TargetID":18491,"Directional":true},{"SourceID":17843,"TargetID":17842,"Directional":true},{"SourceID":17892,"TargetID":17668,"Directional":true},{"SourceID":18487,"TargetID":18488,"Directional":true},{"SourceID":18489,"TargetID":18490,"Directional":true},{"SourceID":18493,"TargetID":18494,"Directional":true}]},{"ID":11656,"SourceStructureID":6561,"TargetStructureID":410,"Label":"6561-410 via Ribbon Synapse from 8303 -> 17335, 8306 -> 17334, 8312 -> 17333, 8333 -> 17826, 17812 -> 17811, 17814 -> 17813, 17816 -> 17815, 17823 -> 17822, 17824 -> 17825, 17828 -> 17827, 17891 -> 17669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8303,"TargetID":17335,"Directional":true},{"SourceID":8306,"TargetID":17334,"Directional":true},{"SourceID":8312,"TargetID":17333,"Directional":true},{"SourceID":8333,"TargetID":17826,"Directional":true},{"SourceID":17812,"TargetID":17811,"Directional":true},{"SourceID":17814,"TargetID":17813,"Directional":true},{"SourceID":17816,"TargetID":17815,"Directional":true},{"SourceID":17823,"TargetID":17822,"Directional":true},{"SourceID":17824,"TargetID":17825,"Directional":true},{"SourceID":17828,"TargetID":17827,"Directional":true},{"SourceID":17891,"TargetID":17669,"Directional":true}]},{"ID":11657,"SourceStructureID":6561,"TargetStructureID":476,"Label":"6561-476 via Ribbon Synapse from 6562 -> 2388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6562,"TargetID":2388,"Directional":true}]},{"ID":11658,"SourceStructureID":6561,"TargetStructureID":591,"Label":"6561-591 via Ribbon Synapse from 6562 -> 6551, 8299 -> 8300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6562,"TargetID":6551,"Directional":true},{"SourceID":8299,"TargetID":8300,"Directional":true}]},{"ID":11659,"SourceStructureID":6561,"TargetStructureID":6153,"Label":"6561-6153 via Ribbon Synapse from 8312 -> 17350, 8314 -> 17353, 8317 -> 17321, 8318 -> 17322, 17326 -> 17325, 17787 -> 17786, 17828 -> 17831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8312,"TargetID":17350,"Directional":true},{"SourceID":8314,"TargetID":17353,"Directional":true},{"SourceID":8317,"TargetID":17321,"Directional":true},{"SourceID":8318,"TargetID":17322,"Directional":true},{"SourceID":17326,"TargetID":17325,"Directional":true},{"SourceID":17787,"TargetID":17786,"Directional":true},{"SourceID":17828,"TargetID":17831,"Directional":true}]},{"ID":11660,"SourceStructureID":6589,"TargetStructureID":525,"Label":"6589-525 via BC Conventional Synapse from 120019 -> 132625","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120019,"TargetID":132625,"Directional":true}]},{"ID":11661,"SourceStructureID":6589,"TargetStructureID":525,"Label":"6589-525 via Ribbon Synapse from 9547 -> 6228, 14575 -> 9729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9547,"TargetID":6228,"Directional":true},{"SourceID":14575,"TargetID":9729,"Directional":true}]},{"ID":11662,"SourceStructureID":6589,"TargetStructureID":5118,"Label":"6589-5118 via Ribbon Synapse from 6991 -> 6454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6991,"TargetID":6454,"Directional":true}]},{"ID":11663,"SourceStructureID":6589,"TargetStructureID":5345,"Label":"6589-5345 via Ribbon Synapse from 14576 -> 14589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14576,"TargetID":14589,"Directional":true}]},{"ID":11664,"SourceStructureID":6589,"TargetStructureID":5350,"Label":"6589-5350 via Ribbon Synapse from 6596 -> 13800","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6596,"TargetID":13800,"Directional":true}]},{"ID":11665,"SourceStructureID":6589,"TargetStructureID":8033,"Label":"6589-8033 via Ribbon Synapse from 132670 -> 132671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132670,"TargetID":132671,"Directional":true}]},{"ID":11666,"SourceStructureID":6589,"TargetStructureID":11531,"Label":"6589-11531 via Ribbon Synapse from 6590 -> 11532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6590,"TargetID":11532,"Directional":true}]},{"ID":11667,"SourceStructureID":6589,"TargetStructureID":13855,"Label":"6589-13855 via Ribbon Synapse from 9586 -> 132761, 9591 -> 132638, 81480 -> 132747, 123736 -> 132729, 123737 -> 132710, 123755 -> 70816, 132718 -> 132717, 132769 -> 132770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9586,"TargetID":132761,"Directional":true},{"SourceID":9591,"TargetID":132638,"Directional":true},{"SourceID":81480,"TargetID":132747,"Directional":true},{"SourceID":123736,"TargetID":132729,"Directional":true},{"SourceID":123737,"TargetID":132710,"Directional":true},{"SourceID":123755,"TargetID":70816,"Directional":true},{"SourceID":132718,"TargetID":132717,"Directional":true},{"SourceID":132769,"TargetID":132770,"Directional":true}]},{"ID":11668,"SourceStructureID":6589,"TargetStructureID":22554,"Label":"6589-22554 via BC Conventional Synapse from 60886 -> 22562, 132684 -> 132685","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":60886,"TargetID":22562,"Directional":true},{"SourceID":132684,"TargetID":132685,"Directional":true}]},{"ID":11669,"SourceStructureID":6589,"TargetStructureID":22554,"Label":"6589-22554 via Ribbon Synapse from 60888 -> 22559, 120032 -> 22558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60888,"TargetID":22559,"Directional":true},{"SourceID":120032,"TargetID":22558,"Directional":true}]},{"ID":11670,"SourceStructureID":6589,"TargetStructureID":40469,"Label":"6589-40469 via Ribbon Synapse from 132670 -> 40470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132670,"TargetID":40470,"Directional":true}]},{"ID":11671,"SourceStructureID":6589,"TargetStructureID":54744,"Label":"6589-54744 via Ribbon Synapse from 6600 -> 54761, 6602 -> 54760, 9578 -> 132759, 123737 -> 132711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6600,"TargetID":54761,"Directional":true},{"SourceID":6602,"TargetID":54760,"Directional":true},{"SourceID":9578,"TargetID":132759,"Directional":true},{"SourceID":123737,"TargetID":132711,"Directional":true}]},{"ID":11672,"SourceStructureID":6589,"TargetStructureID":63371,"Label":"6589-63371 via Ribbon Synapse from 63374 -> 63372","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63374,"TargetID":63372,"Directional":true}]},{"ID":11673,"SourceStructureID":6589,"TargetStructureID":64357,"Label":"6589-64357 via Ribbon Synapse from 60889 -> 132649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60889,"TargetID":132649,"Directional":true}]},{"ID":11674,"SourceStructureID":6589,"TargetStructureID":70833,"Label":"6589-70833 via Ribbon Synapse from 70858 -> 70859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70858,"TargetID":70859,"Directional":true}]},{"ID":11675,"SourceStructureID":6589,"TargetStructureID":70868,"Label":"6589-70868 via Ribbon Synapse from 123755 -> 132735","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123755,"TargetID":132735,"Directional":true}]},{"ID":11676,"SourceStructureID":6589,"TargetStructureID":92331,"Label":"6589-92331 via Ribbon Synapse from 9591 -> 132637","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9591,"TargetID":132637,"Directional":true}]},{"ID":11677,"SourceStructureID":6589,"TargetStructureID":95701,"Label":"6589-95701 via Ribbon Synapse from 6590 -> 95750, 6596 -> 132738, 6604 -> 95702, 9534 -> 95747, 9538 -> 132748","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6590,"TargetID":95750,"Directional":true},{"SourceID":6596,"TargetID":132738,"Directional":true},{"SourceID":6604,"TargetID":95702,"Directional":true},{"SourceID":9534,"TargetID":95747,"Directional":true},{"SourceID":9538,"TargetID":132748,"Directional":true}]},{"ID":11678,"SourceStructureID":6589,"TargetStructureID":121541,"Label":"6589-121541 via Ribbon Synapse from 9570 -> 121553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9570,"TargetID":121553,"Directional":true}]},{"ID":11679,"SourceStructureID":6589,"TargetStructureID":132712,"Label":"6589-132712 via Ribbon Synapse from 9566 -> 132713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9566,"TargetID":132713,"Directional":true}]},{"ID":11680,"SourceStructureID":6589,"TargetStructureID":132722,"Label":"6589-132722 via Ribbon Synapse from 9565 -> 132723, 132721 -> 132723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9565,"TargetID":132723,"Directional":true},{"SourceID":132721,"TargetID":132723,"Directional":true}]},{"ID":11681,"SourceStructureID":6589,"TargetStructureID":132740,"Label":"6589-132740 via BC Conventional Synapse from 132741 -> 132742","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":132741,"TargetID":132742,"Directional":true}]},{"ID":11682,"SourceStructureID":6617,"TargetStructureID":304,"Label":"6617-304 via Ribbon Synapse from 17289 -> 17288, 17290 -> 17291, 17294 -> 17293, 17574 -> 17573, 17683 -> 17682, 17723 -> 17722, 18331 -> 18330, 18874 -> 18881, 18893 -> 18894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17289,"TargetID":17288,"Directional":true},{"SourceID":17290,"TargetID":17291,"Directional":true},{"SourceID":17294,"TargetID":17293,"Directional":true},{"SourceID":17574,"TargetID":17573,"Directional":true},{"SourceID":17683,"TargetID":17682,"Directional":true},{"SourceID":17723,"TargetID":17722,"Directional":true},{"SourceID":18331,"TargetID":18330,"Directional":true},{"SourceID":18874,"TargetID":18881,"Directional":true},{"SourceID":18893,"TargetID":18894,"Directional":true}]},{"ID":11683,"SourceStructureID":6617,"TargetStructureID":410,"Label":"6617-410 via Ribbon Synapse from 17566 -> 17565, 17707 -> 17706, 17711 -> 17710, 17716 -> 17715, 18346 -> 17656","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17566,"TargetID":17565,"Directional":true},{"SourceID":17707,"TargetID":17706,"Directional":true},{"SourceID":17711,"TargetID":17710,"Directional":true},{"SourceID":17716,"TargetID":17715,"Directional":true},{"SourceID":18346,"TargetID":17656,"Directional":true}]},{"ID":11684,"SourceStructureID":6617,"TargetStructureID":2610,"Label":"6617-2610 via Ribbon Synapse from 18874 -> 18877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18874,"TargetID":18877,"Directional":true}]},{"ID":11685,"SourceStructureID":6617,"TargetStructureID":32660,"Label":"6617-32660 via Ribbon Synapse from 6625 -> 32665","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6625,"TargetID":32665,"Directional":true}]},{"ID":11686,"SourceStructureID":6618,"TargetStructureID":304,"Label":"6618-304 via Ribbon Synapse from 17743 -> 17744, 18919 -> 18920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17743,"TargetID":17744,"Directional":true},{"SourceID":18919,"TargetID":18920,"Directional":true}]},{"ID":11687,"SourceStructureID":6618,"TargetStructureID":410,"Label":"6618-410 via Ribbon Synapse from 17701 -> 17700, 17704 -> 17703, 17709 -> 17708, 18335 -> 17578, 18337 -> 18336, 18340 -> 18339, 18905 -> 18906, 18918 -> 22486, 22485 -> 22487, 22499 -> 22498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17701,"TargetID":17700,"Directional":true},{"SourceID":17704,"TargetID":17703,"Directional":true},{"SourceID":17709,"TargetID":17708,"Directional":true},{"SourceID":18335,"TargetID":17578,"Directional":true},{"SourceID":18337,"TargetID":18336,"Directional":true},{"SourceID":18340,"TargetID":18339,"Directional":true},{"SourceID":18905,"TargetID":18906,"Directional":true},{"SourceID":18918,"TargetID":22486,"Directional":true},{"SourceID":22485,"TargetID":22487,"Directional":true},{"SourceID":22499,"TargetID":22498,"Directional":true}]},{"ID":11688,"SourceStructureID":6618,"TargetStructureID":4850,"Label":"6618-4850 via Ribbon Synapse from 18900 -> 30714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18900,"TargetID":30714,"Directional":true}]},{"ID":11689,"SourceStructureID":6618,"TargetStructureID":29791,"Label":"6618-29791 via Ribbon Synapse from 18908 -> 29794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18908,"TargetID":29794,"Directional":true}]},{"ID":11690,"SourceStructureID":6618,"TargetStructureID":40919,"Label":"6618-40919 via Ribbon Synapse from 18901 -> 60507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18901,"TargetID":60507,"Directional":true}]},{"ID":11691,"SourceStructureID":6656,"TargetStructureID":421,"Label":"6656-421 via BC Conventional Synapse from 31857 -> 31856","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":31857,"TargetID":31856,"Directional":true}]},{"ID":11692,"SourceStructureID":6909,"TargetStructureID":7594,"Label":"6909-7594 via Ribbon Synapse from 38220 -> 25161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38220,"TargetID":25161,"Directional":true}]},{"ID":11693,"SourceStructureID":6910,"TargetStructureID":42951,"Label":"6910-42951 via Ribbon Synapse from 42998 -> 42994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42998,"TargetID":42994,"Directional":true}]},{"ID":11694,"SourceStructureID":6911,"TargetStructureID":7345,"Label":"6911-7345 via Ribbon Synapse from 33654 -> 56576, 56579 -> 56578","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33654,"TargetID":56576,"Directional":true},{"SourceID":56579,"TargetID":56578,"Directional":true}]},{"ID":11695,"SourceStructureID":6912,"TargetStructureID":2064,"Label":"6912-2064 via Ribbon Synapse from 6922 -> 13192, 51059 -> 13196","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6922,"TargetID":13192,"Directional":true},{"SourceID":51059,"TargetID":13196,"Directional":true}]},{"ID":11696,"SourceStructureID":6912,"TargetStructureID":7594,"Label":"6912-7594 via Ribbon Synapse from 25125 -> 25124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25125,"TargetID":25124,"Directional":true}]},{"ID":11697,"SourceStructureID":6912,"TargetStructureID":25869,"Label":"6912-25869 via Ribbon Synapse from 6937 -> 98609","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6937,"TargetID":98609,"Directional":true}]},{"ID":11698,"SourceStructureID":6912,"TargetStructureID":32379,"Label":"6912-32379 via Ribbon Synapse from 51075 -> 101689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51075,"TargetID":101689,"Directional":true}]},{"ID":11699,"SourceStructureID":6912,"TargetStructureID":33127,"Label":"6912-33127 via Ribbon Synapse from 33137 -> 33136","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33137,"TargetID":33136,"Directional":true}]},{"ID":11700,"SourceStructureID":6912,"TargetStructureID":35068,"Label":"6912-35068 via BC Conventional Synapse from 123180 -> 35070","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123180,"TargetID":35070,"Directional":true}]},{"ID":11701,"SourceStructureID":6912,"TargetStructureID":35068,"Label":"6912-35068 via Ribbon Synapse from 35074 -> 35071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35074,"TargetID":35071,"Directional":true}]},{"ID":11702,"SourceStructureID":6912,"TargetStructureID":69162,"Label":"6912-69162 via Ribbon Synapse from 48370 -> 69254, 51147 -> 69250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48370,"TargetID":69254,"Directional":true},{"SourceID":51147,"TargetID":69250,"Directional":true}]},{"ID":11703,"SourceStructureID":6957,"TargetStructureID":42866,"Label":"6957-42866 via Ribbon Synapse from 42913 -> 42868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42913,"TargetID":42868,"Directional":true}]},{"ID":11704,"SourceStructureID":6957,"TargetStructureID":42890,"Label":"6957-42890 via Ribbon Synapse from 122052 -> 122053","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122052,"TargetID":122053,"Directional":true}]},{"ID":11705,"SourceStructureID":6957,"TargetStructureID":42895,"Label":"6957-42895 via Ribbon Synapse from 42919 -> 42906, 42921 -> 42922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42919,"TargetID":42906,"Directional":true},{"SourceID":42921,"TargetID":42922,"Directional":true}]},{"ID":11706,"SourceStructureID":6958,"TargetStructureID":606,"Label":"6958-606 via Ribbon Synapse from 51832 -> 51835, 51833 -> 51834, 117945 -> 51795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51832,"TargetID":51835,"Directional":true},{"SourceID":51833,"TargetID":51834,"Directional":true},{"SourceID":117945,"TargetID":51795,"Directional":true}]},{"ID":11707,"SourceStructureID":6958,"TargetStructureID":5117,"Label":"6958-5117 via Ribbon Synapse from 116573 -> 116572, 116574 -> 116572, 117939 -> 117946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116573,"TargetID":116572,"Directional":true},{"SourceID":116574,"TargetID":116572,"Directional":true},{"SourceID":117939,"TargetID":117946,"Directional":true}]},{"ID":11708,"SourceStructureID":6958,"TargetStructureID":5374,"Label":"6958-5374 via Ribbon Synapse from 20450 -> 20446, 20452 -> 20449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20450,"TargetID":20446,"Directional":true},{"SourceID":20452,"TargetID":20449,"Directional":true}]},{"ID":11709,"SourceStructureID":6958,"TargetStructureID":8579,"Label":"6958-8579 via Ribbon Synapse from 118042 -> 62947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118042,"TargetID":62947,"Directional":true}]},{"ID":11710,"SourceStructureID":6958,"TargetStructureID":8589,"Label":"6958-8589 via BC Conventional Synapse from 70475 -> 70478","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":70475,"TargetID":70478,"Directional":true}]},{"ID":11711,"SourceStructureID":6958,"TargetStructureID":63978,"Label":"6958-63978 via Ribbon Synapse from 56413 -> 63995","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56413,"TargetID":63995,"Directional":true}]},{"ID":11712,"SourceStructureID":6958,"TargetStructureID":122768,"Label":"6958-122768 via Ribbon Synapse from 118032 -> 122791","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118032,"TargetID":122791,"Directional":true}]},{"ID":11713,"SourceStructureID":6965,"TargetStructureID":606,"Label":"6965-606 via Ribbon Synapse from 54424 -> 54422","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54424,"TargetID":54422,"Directional":true}]},{"ID":11714,"SourceStructureID":6965,"TargetStructureID":5413,"Label":"6965-5413 via Ribbon Synapse from 121942 -> 130918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121942,"TargetID":130918,"Directional":true}]},{"ID":11715,"SourceStructureID":6965,"TargetStructureID":11238,"Label":"6965-11238 via Ribbon Synapse from 136245 -> 136244","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136245,"TargetID":136244,"Directional":true}]},{"ID":11716,"SourceStructureID":6997,"TargetStructureID":390,"Label":"6997-390 via Ribbon Synapse from 70894 -> 65110","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70894,"TargetID":65110,"Directional":true}]},{"ID":11717,"SourceStructureID":6997,"TargetStructureID":525,"Label":"6997-525 via BC Conventional Synapse from 22033 -> 22034","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":22033,"TargetID":22034,"Directional":true}]},{"ID":11718,"SourceStructureID":6997,"TargetStructureID":1620,"Label":"6997-1620 via Ribbon Synapse from 21951 -> 16841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21951,"TargetID":16841,"Directional":true}]},{"ID":11719,"SourceStructureID":6997,"TargetStructureID":4890,"Label":"6997-4890 via Ribbon Synapse from 64901 -> 64900, 64904 -> 64903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64901,"TargetID":64900,"Directional":true},{"SourceID":64904,"TargetID":64903,"Directional":true}]},{"ID":11720,"SourceStructureID":6997,"TargetStructureID":5117,"Label":"6997-5117 via Ribbon Synapse from 22042 -> 15010, 22108 -> 15008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22042,"TargetID":15010,"Directional":true},{"SourceID":22108,"TargetID":15008,"Directional":true}]},{"ID":11721,"SourceStructureID":6997,"TargetStructureID":5507,"Label":"6997-5507 via Ribbon Synapse from 7000 -> 21896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7000,"TargetID":21896,"Directional":true}]},{"ID":11722,"SourceStructureID":6997,"TargetStructureID":8720,"Label":"6997-8720 via Ribbon Synapse from 136642 -> 15302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136642,"TargetID":15302,"Directional":true}]},{"ID":11723,"SourceStructureID":6997,"TargetStructureID":18282,"Label":"6997-18282 via Ribbon Synapse from 31419 -> 31416, 31438 -> 31437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31419,"TargetID":31416,"Directional":true},{"SourceID":31438,"TargetID":31437,"Directional":true}]},{"ID":11724,"SourceStructureID":6997,"TargetStructureID":20728,"Label":"6997-20728 via Ribbon Synapse from 20732 -> 20731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20732,"TargetID":20731,"Directional":true}]},{"ID":11725,"SourceStructureID":6997,"TargetStructureID":32804,"Label":"6997-32804 via Ribbon Synapse from 22170 -> 32823, 22282 -> 32826, 22311 -> 32830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22170,"TargetID":32823,"Directional":true},{"SourceID":22282,"TargetID":32826,"Directional":true},{"SourceID":22311,"TargetID":32830,"Directional":true}]},{"ID":11726,"SourceStructureID":6997,"TargetStructureID":34882,"Label":"6997-34882 via Ribbon Synapse from 28761 -> 34885, 70892 -> 70893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28761,"TargetID":34885,"Directional":true},{"SourceID":70892,"TargetID":70893,"Directional":true}]},{"ID":11727,"SourceStructureID":6997,"TargetStructureID":43507,"Label":"6997-43507 via BC Conventional Synapse from 136647 -> 136648","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":136647,"TargetID":136648,"Directional":true}]},{"ID":11728,"SourceStructureID":6997,"TargetStructureID":45677,"Label":"6997-45677 via Ribbon Synapse from 82947 -> 82948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82947,"TargetID":82948,"Directional":true}]},{"ID":11729,"SourceStructureID":6997,"TargetStructureID":61270,"Label":"6997-61270 via Ribbon Synapse from 22153 -> 61283, 22311 -> 61275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22153,"TargetID":61283,"Directional":true},{"SourceID":22311,"TargetID":61275,"Directional":true}]},{"ID":11730,"SourceStructureID":6997,"TargetStructureID":63371,"Label":"6997-63371 via BC Conventional Synapse from 95992 -> 63375","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95992,"TargetID":63375,"Directional":true}]},{"ID":11731,"SourceStructureID":6997,"TargetStructureID":66407,"Label":"6997-66407 via Ribbon Synapse from 83109 -> 83104, 83112 -> 69353","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83109,"TargetID":83104,"Directional":true},{"SourceID":83112,"TargetID":69353,"Directional":true}]},{"ID":11732,"SourceStructureID":6997,"TargetStructureID":66946,"Label":"6997-66946 via Ribbon Synapse from 80637 -> 82944","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80637,"TargetID":82944,"Directional":true}]},{"ID":11733,"SourceStructureID":6997,"TargetStructureID":66958,"Label":"6997-66958 via Ribbon Synapse from 22245 -> 70103, 83030 -> 70067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22245,"TargetID":70103,"Directional":true},{"SourceID":83030,"TargetID":70067,"Directional":true}]},{"ID":11734,"SourceStructureID":6997,"TargetStructureID":68286,"Label":"6997-68286 via Ribbon Synapse from 28710 -> 80652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28710,"TargetID":80652,"Directional":true}]},{"ID":11735,"SourceStructureID":6997,"TargetStructureID":68302,"Label":"6997-68302 via Ribbon Synapse from 22108 -> 82940, 82930 -> 82929, 82935 -> 82934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22108,"TargetID":82940,"Directional":true},{"SourceID":82930,"TargetID":82929,"Directional":true},{"SourceID":82935,"TargetID":82934,"Directional":true}]},{"ID":11736,"SourceStructureID":6997,"TargetStructureID":70069,"Label":"6997-70069 via Ribbon Synapse from 83030 -> 70070","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83030,"TargetID":70070,"Directional":true}]},{"ID":11737,"SourceStructureID":6997,"TargetStructureID":70868,"Label":"6997-70868 via Ribbon Synapse from 70895 -> 70888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70895,"TargetID":70888,"Directional":true}]},{"ID":11738,"SourceStructureID":6997,"TargetStructureID":78301,"Label":"6997-78301 via Ribbon Synapse from 28762 -> 78302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28762,"TargetID":78302,"Directional":true}]},{"ID":11739,"SourceStructureID":6997,"TargetStructureID":78303,"Label":"6997-78303 via Ribbon Synapse from 136268 -> 136833","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136268,"TargetID":136833,"Directional":true}]},{"ID":11740,"SourceStructureID":6997,"TargetStructureID":79911,"Label":"6997-79911 via Ribbon Synapse from 83118 -> 79912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83118,"TargetID":79912,"Directional":true}]},{"ID":11741,"SourceStructureID":6997,"TargetStructureID":79921,"Label":"6997-79921 via Ribbon Synapse from 83094 -> 79922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83094,"TargetID":79922,"Directional":true}]},{"ID":11742,"SourceStructureID":6997,"TargetStructureID":79926,"Label":"6997-79926 via Ribbon Synapse from 83094 -> 83098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83094,"TargetID":83098,"Directional":true}]},{"ID":11743,"SourceStructureID":6997,"TargetStructureID":79943,"Label":"6997-79943 via Ribbon Synapse from 83109 -> 79944","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83109,"TargetID":79944,"Directional":true}]},{"ID":11744,"SourceStructureID":6997,"TargetStructureID":79946,"Label":"6997-79946 via Ribbon Synapse from 83111 -> 79947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83111,"TargetID":79947,"Directional":true}]},{"ID":11745,"SourceStructureID":6997,"TargetStructureID":79948,"Label":"6997-79948 via Ribbon Synapse from 83111 -> 79949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83111,"TargetID":79949,"Directional":true}]},{"ID":11746,"SourceStructureID":6997,"TargetStructureID":79958,"Label":"6997-79958 via Ribbon Synapse from 83112 -> 79959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83112,"TargetID":79959,"Directional":true}]},{"ID":11747,"SourceStructureID":6997,"TargetStructureID":79960,"Label":"6997-79960 via Ribbon Synapse from 83112 -> 79961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83112,"TargetID":79961,"Directional":true}]},{"ID":11748,"SourceStructureID":6997,"TargetStructureID":79966,"Label":"6997-79966 via Ribbon Synapse from 83091 -> 79967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83091,"TargetID":79967,"Directional":true}]},{"ID":11749,"SourceStructureID":6997,"TargetStructureID":79968,"Label":"6997-79968 via Ribbon Synapse from 83091 -> 79969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83091,"TargetID":79969,"Directional":true}]},{"ID":11750,"SourceStructureID":6997,"TargetStructureID":79970,"Label":"6997-79970 via Ribbon Synapse from 83078 -> 79974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83078,"TargetID":79974,"Directional":true}]},{"ID":11751,"SourceStructureID":6997,"TargetStructureID":79975,"Label":"6997-79975 via Ribbon Synapse from 83078 -> 79976","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83078,"TargetID":79976,"Directional":true}]},{"ID":11752,"SourceStructureID":6997,"TargetStructureID":79984,"Label":"6997-79984 via Ribbon Synapse from 83082 -> 79992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83082,"TargetID":79992,"Directional":true}]},{"ID":11753,"SourceStructureID":6997,"TargetStructureID":79993,"Label":"6997-79993 via Ribbon Synapse from 83082 -> 79994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83082,"TargetID":79994,"Directional":true}]},{"ID":11754,"SourceStructureID":6997,"TargetStructureID":80026,"Label":"6997-80026 via Ribbon Synapse from 83025 -> 80027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83025,"TargetID":80027,"Directional":true}]},{"ID":11755,"SourceStructureID":6997,"TargetStructureID":80034,"Label":"6997-80034 via Ribbon Synapse from 84434 -> 84435","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84434,"TargetID":84435,"Directional":true}]},{"ID":11756,"SourceStructureID":6997,"TargetStructureID":80042,"Label":"6997-80042 via BC Conventional Synapse from 83066 -> 80044","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":83066,"TargetID":80044,"Directional":true}]},{"ID":11757,"SourceStructureID":6997,"TargetStructureID":80051,"Label":"6997-80051 via Ribbon Synapse from 83024 -> 81886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83024,"TargetID":81886,"Directional":true}]},{"ID":11758,"SourceStructureID":6997,"TargetStructureID":81098,"Label":"6997-81098 via Ribbon Synapse from 22300 -> 81101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22300,"TargetID":81101,"Directional":true}]},{"ID":11759,"SourceStructureID":6997,"TargetStructureID":82216,"Label":"6997-82216 via Ribbon Synapse from 31428 -> 82219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31428,"TargetID":82219,"Directional":true}]},{"ID":11760,"SourceStructureID":6997,"TargetStructureID":83105,"Label":"6997-83105 via Ribbon Synapse from 83109 -> 83106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83109,"TargetID":83106,"Directional":true}]},{"ID":11761,"SourceStructureID":6997,"TargetStructureID":83114,"Label":"6997-83114 via Ribbon Synapse from 83112 -> 83115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83112,"TargetID":83115,"Directional":true}]},{"ID":11762,"SourceStructureID":6997,"TargetStructureID":84830,"Label":"6997-84830 via BC Conventional Synapse from 84883 -> 84882","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84883,"TargetID":84882,"Directional":true}]},{"ID":11763,"SourceStructureID":6997,"TargetStructureID":84830,"Label":"6997-84830 via Ribbon Synapse from 21927 -> 85447, 22143 -> 84895, 52510 -> 84891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21927,"TargetID":85447,"Directional":true},{"SourceID":22143,"TargetID":84895,"Directional":true},{"SourceID":52510,"TargetID":84891,"Directional":true}]},{"ID":11764,"SourceStructureID":6997,"TargetStructureID":95772,"Label":"6997-95772 via BC Conventional Synapse from 95774 -> 95773","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95774,"TargetID":95773,"Directional":true}]},{"ID":11765,"SourceStructureID":6997,"TargetStructureID":95999,"Label":"6997-95999 via Ribbon Synapse from 136702 -> 136703, 136709 -> 96002","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136702,"TargetID":136703,"Directional":true},{"SourceID":136709,"TargetID":96002,"Directional":true}]},{"ID":11766,"SourceStructureID":6997,"TargetStructureID":101428,"Label":"6997-101428 via Ribbon Synapse from 136268 -> 136832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136268,"TargetID":136832,"Directional":true}]},{"ID":11767,"SourceStructureID":6997,"TargetStructureID":127841,"Label":"6997-127841 via Ribbon Synapse from 22272 -> 127843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22272,"TargetID":127843,"Directional":true}]},{"ID":11768,"SourceStructureID":6997,"TargetStructureID":133260,"Label":"6997-133260 via Ribbon Synapse from 133263 -> 133262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133263,"TargetID":133262,"Directional":true}]},{"ID":11769,"SourceStructureID":6997,"TargetStructureID":136677,"Label":"6997-136677 via BC Conventional Synapse from 136679 -> 136678","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":136679,"TargetID":136678,"Directional":true}]},{"ID":11770,"SourceStructureID":7024,"TargetStructureID":606,"Label":"7024-606 via Ribbon Synapse from 46436 -> 10502, 46473 -> 46585, 46596 -> 10498, 46609 -> 10499, 47347 -> 47346, 48510 -> 48511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46436,"TargetID":10502,"Directional":true},{"SourceID":46473,"TargetID":46585,"Directional":true},{"SourceID":46596,"TargetID":10498,"Directional":true},{"SourceID":46609,"TargetID":10499,"Directional":true},{"SourceID":47347,"TargetID":47346,"Directional":true},{"SourceID":48510,"TargetID":48511,"Directional":true}]},{"ID":11771,"SourceStructureID":7024,"TargetStructureID":5396,"Label":"7024-5396 via Ribbon Synapse from 40154 -> 89451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40154,"TargetID":89451,"Directional":true}]},{"ID":11772,"SourceStructureID":7024,"TargetStructureID":9769,"Label":"7024-9769 via Ribbon Synapse from 10908 -> 10909, 10911 -> 10910, 10913 -> 10912, 20232 -> 20230, 20242 -> 20243, 20245 -> 20246, 53239 -> 53237, 53391 -> 11259, 114206 -> 148205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10908,"TargetID":10909,"Directional":true},{"SourceID":10911,"TargetID":10910,"Directional":true},{"SourceID":10913,"TargetID":10912,"Directional":true},{"SourceID":20232,"TargetID":20230,"Directional":true},{"SourceID":20242,"TargetID":20243,"Directional":true},{"SourceID":20245,"TargetID":20246,"Directional":true},{"SourceID":53239,"TargetID":53237,"Directional":true},{"SourceID":53391,"TargetID":11259,"Directional":true},{"SourceID":114206,"TargetID":148205,"Directional":true}]},{"ID":11773,"SourceStructureID":7024,"TargetStructureID":31161,"Label":"7024-31161 via Ribbon Synapse from 106600 -> 31219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106600,"TargetID":31219,"Directional":true}]},{"ID":11774,"SourceStructureID":7024,"TargetStructureID":39982,"Label":"7024-39982 via Ribbon Synapse from 40159 -> 40138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40159,"TargetID":40138,"Directional":true}]},{"ID":11775,"SourceStructureID":7024,"TargetStructureID":53245,"Label":"7024-53245 via Ribbon Synapse from 20245 -> 53248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20245,"TargetID":53248,"Directional":true}]},{"ID":11776,"SourceStructureID":7024,"TargetStructureID":77215,"Label":"7024-77215 via Ribbon Synapse from 106600 -> 106565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106600,"TargetID":106565,"Directional":true}]},{"ID":11777,"SourceStructureID":7024,"TargetStructureID":97443,"Label":"7024-97443 via Ribbon Synapse from 40159 -> 113495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40159,"TargetID":113495,"Directional":true}]},{"ID":11778,"SourceStructureID":7024,"TargetStructureID":97445,"Label":"7024-97445 via Ribbon Synapse from 40159 -> 97447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40159,"TargetID":97447,"Directional":true}]},{"ID":11779,"SourceStructureID":7040,"TargetStructureID":5396,"Label":"7040-5396 via Ribbon Synapse from 93699 -> 89492","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93699,"TargetID":89492,"Directional":true}]},{"ID":11780,"SourceStructureID":7040,"TargetStructureID":8575,"Label":"7040-8575 via Ribbon Synapse from 63056 -> 63055, 93727 -> 62231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63056,"TargetID":63055,"Directional":true},{"SourceID":93727,"TargetID":62231,"Directional":true}]},{"ID":11781,"SourceStructureID":7040,"TargetStructureID":16073,"Label":"7040-16073 via BC Conventional Synapse from 19962 -> 19958","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":19962,"TargetID":19958,"Directional":true}]},{"ID":11782,"SourceStructureID":7040,"TargetStructureID":68539,"Label":"7040-68539 via Ribbon Synapse from 50300 -> 69096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50300,"TargetID":69096,"Directional":true}]},{"ID":11783,"SourceStructureID":7040,"TargetStructureID":93685,"Label":"7040-93685 via Ribbon Synapse from 93690 -> 93691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93690,"TargetID":93691,"Directional":true}]},{"ID":11784,"SourceStructureID":7043,"TargetStructureID":8576,"Label":"7043-8576 via Ribbon Synapse from 37724 -> 37725, 37738 -> 69037","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37724,"TargetID":37725,"Directional":true},{"SourceID":37738,"TargetID":69037,"Directional":true}]},{"ID":11785,"SourceStructureID":7043,"TargetStructureID":31024,"Label":"7043-31024 via Ribbon Synapse from 31360 -> 31082, 31361 -> 31046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31360,"TargetID":31082,"Directional":true},{"SourceID":31361,"TargetID":31046,"Directional":true}]},{"ID":11786,"SourceStructureID":7043,"TargetStructureID":69049,"Label":"7043-69049 via Ribbon Synapse from 37726 -> 69059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37726,"TargetID":69059,"Directional":true}]},{"ID":11787,"SourceStructureID":7043,"TargetStructureID":77777,"Label":"7043-77777 via Ribbon Synapse from 37727 -> 119029","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37727,"TargetID":119029,"Directional":true}]},{"ID":11788,"SourceStructureID":7043,"TargetStructureID":78174,"Label":"7043-78174 via Ribbon Synapse from 118711 -> 118967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118711,"TargetID":118967,"Directional":true}]},{"ID":11789,"SourceStructureID":7043,"TargetStructureID":89292,"Label":"7043-89292 via Ribbon Synapse from 89263 -> 89294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89263,"TargetID":89294,"Directional":true}]},{"ID":11790,"SourceStructureID":7050,"TargetStructureID":5622,"Label":"7050-5622 via Conventional from 113003 -> 113000","Type":"Conventional","Directional":true,"Links":[{"SourceID":113003,"TargetID":113000,"Directional":true}]},{"ID":11791,"SourceStructureID":7050,"TargetStructureID":5671,"Label":"7050-5671 via Conventional from 24904 -> 24903, 24905 -> 24906, 24920 -> 24921","Type":"Conventional","Directional":true,"Links":[{"SourceID":24904,"TargetID":24903,"Directional":true},{"SourceID":24905,"TargetID":24906,"Directional":true},{"SourceID":24920,"TargetID":24921,"Directional":true}]},{"ID":11792,"SourceStructureID":7050,"TargetStructureID":5922,"Label":"7050-5922 via Conventional from 55667 -> 68833, 68843 -> 68842, 68845 -> 68844","Type":"Conventional","Directional":true,"Links":[{"SourceID":55667,"TargetID":68833,"Directional":true},{"SourceID":68843,"TargetID":68842,"Directional":true},{"SourceID":68845,"TargetID":68844,"Directional":true}]},{"ID":11793,"SourceStructureID":7050,"TargetStructureID":24898,"Label":"7050-24898 via Conventional from 24942 -> 24939","Type":"Conventional","Directional":true,"Links":[{"SourceID":24942,"TargetID":24939,"Directional":true}]},{"ID":11794,"SourceStructureID":7050,"TargetStructureID":24909,"Label":"7050-24909 via Conventional from 24907 -> 24910","Type":"Conventional","Directional":true,"Links":[{"SourceID":24907,"TargetID":24910,"Directional":true}]},{"ID":11795,"SourceStructureID":7050,"TargetStructureID":148374,"Label":"7050-148374 via Conventional from 113006 -> 148395","Type":"Conventional","Directional":true,"Links":[{"SourceID":113006,"TargetID":148395,"Directional":true}]},{"ID":11796,"SourceStructureID":7054,"TargetStructureID":514,"Label":"7054-514 via Ribbon Synapse from 7056 -> 2601, 10917 -> 1553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7056,"TargetID":2601,"Directional":true},{"SourceID":10917,"TargetID":1553,"Directional":true}]},{"ID":11797,"SourceStructureID":7054,"TargetStructureID":3679,"Label":"7054-3679 via Ribbon Synapse from 43246 -> 43245, 66132 -> 66133, 66134 -> 66135, 135061 -> 135060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43246,"TargetID":43245,"Directional":true},{"SourceID":66132,"TargetID":66133,"Directional":true},{"SourceID":66134,"TargetID":66135,"Directional":true},{"SourceID":135061,"TargetID":135060,"Directional":true}]},{"ID":11798,"SourceStructureID":7054,"TargetStructureID":4850,"Label":"7054-4850 via Ribbon Synapse from 10916 -> 19467","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10916,"TargetID":19467,"Directional":true}]},{"ID":11799,"SourceStructureID":7054,"TargetStructureID":8037,"Label":"7054-8037 via Ribbon Synapse from 25425 -> 25424, 30553 -> 15730","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25425,"TargetID":25424,"Directional":true},{"SourceID":30553,"TargetID":15730,"Directional":true}]},{"ID":11800,"SourceStructureID":7054,"TargetStructureID":12897,"Label":"7054-12897 via Ribbon Synapse from 30553 -> 24743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30553,"TargetID":24743,"Directional":true}]},{"ID":11801,"SourceStructureID":7054,"TargetStructureID":25410,"Label":"7054-25410 via Ribbon Synapse from 25418 -> 25417","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25418,"TargetID":25417,"Directional":true}]},{"ID":11802,"SourceStructureID":7054,"TargetStructureID":32676,"Label":"7054-32676 via Ribbon Synapse from 10901 -> 32679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10901,"TargetID":32679,"Directional":true}]},{"ID":11803,"SourceStructureID":7073,"TargetStructureID":5150,"Label":"7073-5150 via Conventional from 11822 -> 5239, 11822 -> 19802","Type":"Conventional","Directional":true,"Links":[{"SourceID":11822,"TargetID":5239,"Directional":true},{"SourceID":11822,"TargetID":19802,"Directional":true}]},{"ID":11804,"SourceStructureID":7073,"TargetStructureID":8575,"Label":"7073-8575 via Conventional from 19883 -> 62816","Type":"Conventional","Directional":true,"Links":[{"SourceID":19883,"TargetID":62816,"Directional":true}]},{"ID":11805,"SourceStructureID":7073,"TargetStructureID":16073,"Label":"7073-16073 via Conventional from 24520 -> 24198","Type":"Conventional","Directional":true,"Links":[{"SourceID":24520,"TargetID":24198,"Directional":true}]},{"ID":11806,"SourceStructureID":7073,"TargetStructureID":29340,"Label":"7073-29340 via Conventional from 11844 -> 29394","Type":"Conventional","Directional":true,"Links":[{"SourceID":11844,"TargetID":29394,"Directional":true}]},{"ID":11807,"SourceStructureID":7073,"TargetStructureID":72162,"Label":"7073-72162 via Conventional from 11789 -> 82949","Type":"Conventional","Directional":true,"Links":[{"SourceID":11789,"TargetID":82949,"Directional":true}]},{"ID":11808,"SourceStructureID":7073,"TargetStructureID":129927,"Label":"7073-129927 via Conventional from 19595 -> 129935","Type":"Conventional","Directional":true,"Links":[{"SourceID":19595,"TargetID":129935,"Directional":true}]},{"ID":11809,"SourceStructureID":7075,"TargetStructureID":5860,"Label":"7075-5860 via Ribbon Synapse from 62353 -> 62352, 123334 -> 62352","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62353,"TargetID":62352,"Directional":true},{"SourceID":123334,"TargetID":62352,"Directional":true}]},{"ID":11810,"SourceStructureID":7075,"TargetStructureID":7204,"Label":"7075-7204 via Ribbon Synapse from 133765 -> 133763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133765,"TargetID":133763,"Directional":true}]},{"ID":11811,"SourceStructureID":7075,"TargetStructureID":8575,"Label":"7075-8575 via BC Conventional Synapse from 62358 -> 62347","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62358,"TargetID":62347,"Directional":true}]},{"ID":11812,"SourceStructureID":7075,"TargetStructureID":43631,"Label":"7075-43631 via Ribbon Synapse from 43649 -> 43635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43649,"TargetID":43635,"Directional":true}]},{"ID":11813,"SourceStructureID":7112,"TargetStructureID":7073,"Label":"7112-7073 via Conventional from 122000 -> 11793","Type":"Conventional","Directional":true,"Links":[{"SourceID":122000,"TargetID":11793,"Directional":true}]},{"ID":11814,"SourceStructureID":7112,"TargetStructureID":15796,"Label":"7112-15796 via Conventional from 122001 -> 29444, 122003 -> 15816","Type":"Conventional","Directional":true,"Links":[{"SourceID":122001,"TargetID":29444,"Directional":true},{"SourceID":122003,"TargetID":15816,"Directional":true}]},{"ID":11815,"SourceStructureID":7113,"TargetStructureID":173,"Label":"7113-173 via Conventional from 19578 -> 19576, 31371 -> 31372, 31374 -> 39397","Type":"Conventional","Directional":true,"Links":[{"SourceID":19578,"TargetID":19576,"Directional":true},{"SourceID":31371,"TargetID":31372,"Directional":true},{"SourceID":31374,"TargetID":39397,"Directional":true}]},{"ID":11816,"SourceStructureID":7113,"TargetStructureID":4876,"Label":"7113-4876 via Conventional from 44988 -> 44465, 60566 -> 18943","Type":"Conventional","Directional":true,"Links":[{"SourceID":44988,"TargetID":44465,"Directional":true},{"SourceID":60566,"TargetID":18943,"Directional":true}]},{"ID":11817,"SourceStructureID":7113,"TargetStructureID":5351,"Label":"7113-5351 via Conventional from 15258 -> 24074","Type":"Conventional","Directional":true,"Links":[{"SourceID":15258,"TargetID":24074,"Directional":true}]},{"ID":11818,"SourceStructureID":7113,"TargetStructureID":5618,"Label":"7113-5618 via Conventional from 66012 -> 66013","Type":"Conventional","Directional":true,"Links":[{"SourceID":66012,"TargetID":66013,"Directional":true}]},{"ID":11819,"SourceStructureID":7113,"TargetStructureID":6011,"Label":"7113-6011 via Conventional from 21885 -> 6017, 21891 -> 6014","Type":"Conventional","Directional":true,"Links":[{"SourceID":21885,"TargetID":6017,"Directional":true},{"SourceID":21891,"TargetID":6014,"Directional":true}]},{"ID":11820,"SourceStructureID":7113,"TargetStructureID":6050,"Label":"7113-6050 via Cistern Pre from 127237 -> 127238","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":127237,"TargetID":127238,"Directional":true}]},{"ID":11821,"SourceStructureID":7113,"TargetStructureID":9376,"Label":"7113-9376 via Conventional from 27369 -> 33656","Type":"Conventional","Directional":true,"Links":[{"SourceID":27369,"TargetID":33656,"Directional":true}]},{"ID":11822,"SourceStructureID":7113,"TargetStructureID":9787,"Label":"7113-9787 via Conventional from 18104 -> 18105, 18128 -> 18122","Type":"Conventional","Directional":true,"Links":[{"SourceID":18104,"TargetID":18105,"Directional":true},{"SourceID":18128,"TargetID":18122,"Directional":true}]},{"ID":11823,"SourceStructureID":7113,"TargetStructureID":35696,"Label":"7113-35696 via Conventional from 18126 -> 35707, 35705 -> 35704, 46431 -> 46429","Type":"Conventional","Directional":true,"Links":[{"SourceID":18126,"TargetID":35707,"Directional":true},{"SourceID":35705,"TargetID":35704,"Directional":true},{"SourceID":46431,"TargetID":46429,"Directional":true}]},{"ID":11824,"SourceStructureID":7113,"TargetStructureID":60558,"Label":"7113-60558 via Conventional from 60571 -> 60561","Type":"Conventional","Directional":true,"Links":[{"SourceID":60571,"TargetID":60561,"Directional":true}]},{"ID":11825,"SourceStructureID":7113,"TargetStructureID":126536,"Label":"7113-126536 via Conventional from 27363 -> 131393, 131390 -> 131389","Type":"Conventional","Directional":true,"Links":[{"SourceID":27363,"TargetID":131393,"Directional":true},{"SourceID":131390,"TargetID":131389,"Directional":true}]},{"ID":11826,"SourceStructureID":7113,"TargetStructureID":129827,"Label":"7113-129827 via Conventional from 129837 -> 129836","Type":"Conventional","Directional":true,"Links":[{"SourceID":129837,"TargetID":129836,"Directional":true}]},{"ID":11827,"SourceStructureID":7114,"TargetStructureID":5585,"Label":"7114-5585 via Conventional from 12483 -> 24108, 24111 -> 24110, 24127 -> 24128, 36809 -> 36808, 136517 -> 32441","Type":"Conventional","Directional":true,"Links":[{"SourceID":12483,"TargetID":24108,"Directional":true},{"SourceID":24111,"TargetID":24110,"Directional":true},{"SourceID":24127,"TargetID":24128,"Directional":true},{"SourceID":36809,"TargetID":36808,"Directional":true},{"SourceID":136517,"TargetID":32441,"Directional":true}]},{"ID":11828,"SourceStructureID":7114,"TargetStructureID":5587,"Label":"7114-5587 via Conventional from 136451 -> 136450, 136457 -> 136456","Type":"Conventional","Directional":true,"Links":[{"SourceID":136451,"TargetID":136450,"Directional":true},{"SourceID":136457,"TargetID":136456,"Directional":true}]},{"ID":11829,"SourceStructureID":7114,"TargetStructureID":5596,"Label":"7114-5596 via Cistern Pre from 36873 -> 36874","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":36873,"TargetID":36874,"Directional":true}]},{"ID":11830,"SourceStructureID":7114,"TargetStructureID":5640,"Label":"7114-5640 via Conventional from 26634 -> 37061","Type":"Conventional","Directional":true,"Links":[{"SourceID":26634,"TargetID":37061,"Directional":true}]},{"ID":11831,"SourceStructureID":7114,"TargetStructureID":28913,"Label":"7114-28913 via Conventional from 32442 -> 28942, 88143 -> 28947","Type":"Conventional","Directional":true,"Links":[{"SourceID":32442,"TargetID":28942,"Directional":true},{"SourceID":88143,"TargetID":28947,"Directional":true}]},{"ID":11832,"SourceStructureID":7114,"TargetStructureID":136513,"Label":"7114-136513 via Conventional from 136518 -> 136516, 136523 -> 136522","Type":"Conventional","Directional":true,"Links":[{"SourceID":136518,"TargetID":136516,"Directional":true},{"SourceID":136523,"TargetID":136522,"Directional":true}]},{"ID":11833,"SourceStructureID":7129,"TargetStructureID":598,"Label":"7129-598 via Conventional from 56457 -> 6321","Type":"Conventional","Directional":true,"Links":[{"SourceID":56457,"TargetID":6321,"Directional":true}]},{"ID":11834,"SourceStructureID":7129,"TargetStructureID":9769,"Label":"7129-9769 via Conventional from 54016 -> 11262","Type":"Conventional","Directional":true,"Links":[{"SourceID":54016,"TargetID":11262,"Directional":true}]},{"ID":11835,"SourceStructureID":7129,"TargetStructureID":55517,"Label":"7129-55517 via Conventional from 55598 -> 55599","Type":"Conventional","Directional":true,"Links":[{"SourceID":55598,"TargetID":55599,"Directional":true}]},{"ID":11836,"SourceStructureID":7129,"TargetStructureID":89097,"Label":"7129-89097 via Conventional from 130294 -> 130295","Type":"Conventional","Directional":true,"Links":[{"SourceID":130294,"TargetID":130295,"Directional":true}]},{"ID":11837,"SourceStructureID":7134,"TargetStructureID":909,"Label":"7134-909 via Conventional from 130250 -> 130251","Type":"Conventional","Directional":true,"Links":[{"SourceID":130250,"TargetID":130251,"Directional":true}]},{"ID":11838,"SourceStructureID":7134,"TargetStructureID":3756,"Label":"7134-3756 via Conventional from 53616 -> 53622","Type":"Conventional","Directional":true,"Links":[{"SourceID":53616,"TargetID":53622,"Directional":true}]},{"ID":11839,"SourceStructureID":7134,"TargetStructureID":5297,"Label":"7134-5297 via Conventional from 98333 -> 98334, 121120 -> 116309, 121328 -> 116441, 121505 -> 98283, 122220 -> 98267, 147350 -> 147349","Type":"Conventional","Directional":true,"Links":[{"SourceID":98333,"TargetID":98334,"Directional":true},{"SourceID":121120,"TargetID":116309,"Directional":true},{"SourceID":121328,"TargetID":116441,"Directional":true},{"SourceID":121505,"TargetID":98283,"Directional":true},{"SourceID":122220,"TargetID":98267,"Directional":true},{"SourceID":147350,"TargetID":147349,"Directional":true}]},{"ID":11840,"SourceStructureID":7134,"TargetStructureID":5501,"Label":"7134-5501 via Conventional from 41657 -> 122176, 42386 -> 15778","Type":"Conventional","Directional":true,"Links":[{"SourceID":41657,"TargetID":122176,"Directional":true},{"SourceID":42386,"TargetID":15778,"Directional":true}]},{"ID":11841,"SourceStructureID":7134,"TargetStructureID":5648,"Label":"7134-5648 via Conventional from 53971 -> 53970, 122457 -> 122456","Type":"Conventional","Directional":true,"Links":[{"SourceID":53971,"TargetID":53970,"Directional":true},{"SourceID":122457,"TargetID":122456,"Directional":true}]},{"ID":11842,"SourceStructureID":7134,"TargetStructureID":6046,"Label":"7134-6046 via Conventional from 16746 -> 16721, 26766 -> 16683, 53595 -> 53596","Type":"Conventional","Directional":true,"Links":[{"SourceID":16746,"TargetID":16721,"Directional":true},{"SourceID":26766,"TargetID":16683,"Directional":true},{"SourceID":53595,"TargetID":53596,"Directional":true}]},{"ID":11843,"SourceStructureID":7134,"TargetStructureID":6121,"Label":"7134-6121 via Conventional from 53458 -> 53465, 53471 -> 53472, 53498 -> 53491","Type":"Conventional","Directional":true,"Links":[{"SourceID":53458,"TargetID":53465,"Directional":true},{"SourceID":53471,"TargetID":53472,"Directional":true},{"SourceID":53498,"TargetID":53491,"Directional":true}]},{"ID":11844,"SourceStructureID":7134,"TargetStructureID":8575,"Label":"7134-8575 via Conventional from 53609 -> 62826, 121507 -> 62822","Type":"Conventional","Directional":true,"Links":[{"SourceID":53609,"TargetID":62826,"Directional":true},{"SourceID":121507,"TargetID":62822,"Directional":true}]},{"ID":11845,"SourceStructureID":7134,"TargetStructureID":15779,"Label":"7134-15779 via Conventional from 29652 -> 29653","Type":"Conventional","Directional":true,"Links":[{"SourceID":29652,"TargetID":29653,"Directional":true}]},{"ID":11846,"SourceStructureID":7134,"TargetStructureID":46468,"Label":"7134-46468 via Conventional from 122009 -> 122010","Type":"Conventional","Directional":true,"Links":[{"SourceID":122009,"TargetID":122010,"Directional":true}]},{"ID":11847,"SourceStructureID":7134,"TargetStructureID":61450,"Label":"7134-61450 via Conventional from 61457 -> 61456","Type":"Conventional","Directional":true,"Links":[{"SourceID":61457,"TargetID":61456,"Directional":true}]},{"ID":11848,"SourceStructureID":7134,"TargetStructureID":87754,"Label":"7134-87754 via Conventional from 122195 -> 87756","Type":"Conventional","Directional":true,"Links":[{"SourceID":122195,"TargetID":87756,"Directional":true}]},{"ID":11849,"SourceStructureID":7134,"TargetStructureID":117906,"Label":"7134-117906 via Conventional from 122185 -> 122186","Type":"Conventional","Directional":true,"Links":[{"SourceID":122185,"TargetID":122186,"Directional":true}]},{"ID":11850,"SourceStructureID":7144,"TargetStructureID":59229,"Label":"7144-59229 via Ribbon Synapse from 59249 -> 59245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59249,"TargetID":59245,"Directional":true}]},{"ID":11851,"SourceStructureID":7145,"TargetStructureID":173,"Label":"7145-173 via Conventional from 15825 -> 12116, 15826 -> 12135, 15827 -> 12132, 15829 -> 12131, 60151 -> 41241","Type":"Conventional","Directional":true,"Links":[{"SourceID":15825,"TargetID":12116,"Directional":true},{"SourceID":15826,"TargetID":12135,"Directional":true},{"SourceID":15827,"TargetID":12132,"Directional":true},{"SourceID":15829,"TargetID":12131,"Directional":true},{"SourceID":60151,"TargetID":41241,"Directional":true}]},{"ID":11852,"SourceStructureID":7145,"TargetStructureID":175,"Label":"7145-175 via Conventional from 18108 -> 2264","Type":"Conventional","Directional":true,"Links":[{"SourceID":18108,"TargetID":2264,"Directional":true}]},{"ID":11853,"SourceStructureID":7145,"TargetStructureID":4876,"Label":"7145-4876 via Conventional from 15831 -> 129035, 18109 -> 18982","Type":"Conventional","Directional":true,"Links":[{"SourceID":15831,"TargetID":129035,"Directional":true},{"SourceID":18109,"TargetID":18982,"Directional":true}]},{"ID":11854,"SourceStructureID":7145,"TargetStructureID":9787,"Label":"7145-9787 via Conventional from 18112 -> 18106, 27142 -> 27143","Type":"Conventional","Directional":true,"Links":[{"SourceID":18112,"TargetID":18106,"Directional":true},{"SourceID":27142,"TargetID":27143,"Directional":true}]},{"ID":11855,"SourceStructureID":7145,"TargetStructureID":91459,"Label":"7145-91459 via Conventional from 16667 -> 91460","Type":"Conventional","Directional":true,"Links":[{"SourceID":16667,"TargetID":91460,"Directional":true}]},{"ID":11856,"SourceStructureID":7145,"TargetStructureID":129798,"Label":"7145-129798 via Conventional from 129805 -> 129804","Type":"Conventional","Directional":true,"Links":[{"SourceID":129805,"TargetID":129804,"Directional":true}]},{"ID":11857,"SourceStructureID":7147,"TargetStructureID":161,"Label":"7147-161 via Conventional from 11768 -> 11765","Type":"Conventional","Directional":true,"Links":[{"SourceID":11768,"TargetID":11765,"Directional":true}]},{"ID":11858,"SourceStructureID":7147,"TargetStructureID":4876,"Label":"7147-4876 via Conventional from 52240 -> 19079, 52241 -> 19112","Type":"Conventional","Directional":true,"Links":[{"SourceID":52240,"TargetID":19079,"Directional":true},{"SourceID":52241,"TargetID":19112,"Directional":true}]},{"ID":11859,"SourceStructureID":7147,"TargetStructureID":6048,"Label":"7147-6048 via Conventional from 60479 -> 60478","Type":"Conventional","Directional":true,"Links":[{"SourceID":60479,"TargetID":60478,"Directional":true}]},{"ID":11860,"SourceStructureID":7147,"TargetStructureID":6136,"Label":"7147-6136 via Conventional from 36068 -> 13033","Type":"Conventional","Directional":true,"Links":[{"SourceID":36068,"TargetID":13033,"Directional":true}]},{"ID":11861,"SourceStructureID":7147,"TargetStructureID":28913,"Label":"7147-28913 via Conventional from 52238 -> 52239","Type":"Conventional","Directional":true,"Links":[{"SourceID":52238,"TargetID":52239,"Directional":true}]},{"ID":11862,"SourceStructureID":7157,"TargetStructureID":354,"Label":"7157-354 via Conventional from 21451 -> 133819, 26514 -> 133816","Type":"Conventional","Directional":true,"Links":[{"SourceID":21451,"TargetID":133819,"Directional":true},{"SourceID":26514,"TargetID":133816,"Directional":true}]},{"ID":11863,"SourceStructureID":7157,"TargetStructureID":359,"Label":"7157-359 via Conventional from 21450 -> 21435","Type":"Conventional","Directional":true,"Links":[{"SourceID":21450,"TargetID":21435,"Directional":true}]},{"ID":11864,"SourceStructureID":7157,"TargetStructureID":433,"Label":"7157-433 via Conventional from 8207 -> 8200","Type":"Conventional","Directional":true,"Links":[{"SourceID":8207,"TargetID":8200,"Directional":true}]},{"ID":11865,"SourceStructureID":7157,"TargetStructureID":437,"Label":"7157-437 via Conventional from 65722 -> 65719, 65723 -> 65720, 65724 -> 65721, 65728 -> 65726, 65732 -> 65716","Type":"Conventional","Directional":true,"Links":[{"SourceID":65722,"TargetID":65719,"Directional":true},{"SourceID":65723,"TargetID":65720,"Directional":true},{"SourceID":65724,"TargetID":65721,"Directional":true},{"SourceID":65728,"TargetID":65726,"Directional":true},{"SourceID":65732,"TargetID":65716,"Directional":true}]},{"ID":11866,"SourceStructureID":7157,"TargetStructureID":9787,"Label":"7157-9787 via Conventional from 12050 -> 9838","Type":"Conventional","Directional":true,"Links":[{"SourceID":12050,"TargetID":9838,"Directional":true}]},{"ID":11867,"SourceStructureID":7157,"TargetStructureID":26304,"Label":"7157-26304 via Conventional from 12049 -> 26306, 25970 -> 26330, 26501 -> 26356, 26504 -> 26355, 26538 -> 26537","Type":"Conventional","Directional":true,"Links":[{"SourceID":12049,"TargetID":26306,"Directional":true},{"SourceID":25970,"TargetID":26330,"Directional":true},{"SourceID":26501,"TargetID":26356,"Directional":true},{"SourceID":26504,"TargetID":26355,"Directional":true},{"SourceID":26538,"TargetID":26537,"Directional":true}]},{"ID":11868,"SourceStructureID":7157,"TargetStructureID":31944,"Label":"7157-31944 via Conventional from 31949 -> 31947, 31950 -> 31948","Type":"Conventional","Directional":true,"Links":[{"SourceID":31949,"TargetID":31947,"Directional":true},{"SourceID":31950,"TargetID":31948,"Directional":true}]},{"ID":11869,"SourceStructureID":7157,"TargetStructureID":158844,"Label":"7157-158844 via Conventional from 8214 -> 158845","Type":"Conventional","Directional":true,"Links":[{"SourceID":8214,"TargetID":158845,"Directional":true}]},{"ID":11870,"SourceStructureID":7157,"TargetStructureID":158846,"Label":"7157-158846 via Conventional from 8210 -> 158850","Type":"Conventional","Directional":true,"Links":[{"SourceID":8210,"TargetID":158850,"Directional":true}]},{"ID":11871,"SourceStructureID":7157,"TargetStructureID":158907,"Label":"7157-158907 via Conventional from 21445 -> 158909, 21448 -> 158911","Type":"Conventional","Directional":true,"Links":[{"SourceID":21445,"TargetID":158909,"Directional":true},{"SourceID":21448,"TargetID":158911,"Directional":true}]},{"ID":11872,"SourceStructureID":7174,"TargetStructureID":29277,"Label":"7174-29277 via Ribbon Synapse from 29285 -> 29284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29285,"TargetID":29284,"Directional":true}]},{"ID":11873,"SourceStructureID":7188,"TargetStructureID":4943,"Label":"7188-4943 via Conventional from 8513 -> 4971","Type":"Conventional","Directional":true,"Links":[{"SourceID":8513,"TargetID":4971,"Directional":true}]},{"ID":11874,"SourceStructureID":7188,"TargetStructureID":5634,"Label":"7188-5634 via Conventional from 22801 -> 122030","Type":"Conventional","Directional":true,"Links":[{"SourceID":22801,"TargetID":122030,"Directional":true}]},{"ID":11875,"SourceStructureID":7188,"TargetStructureID":9810,"Label":"7188-9810 via Conventional from 9802 -> 9812","Type":"Conventional","Directional":true,"Links":[{"SourceID":9802,"TargetID":9812,"Directional":true}]},{"ID":11876,"SourceStructureID":7188,"TargetStructureID":90715,"Label":"7188-90715 via Conventional from 9820 -> 91314","Type":"Conventional","Directional":true,"Links":[{"SourceID":9820,"TargetID":91314,"Directional":true}]},{"ID":11877,"SourceStructureID":7203,"TargetStructureID":5532,"Label":"7203-5532 via Cistern Pre from 37536 -> 37537","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37536,"TargetID":37537,"Directional":true}]},{"ID":11878,"SourceStructureID":7204,"TargetStructureID":5641,"Label":"7204-5641 via Conventional from 24336 -> 24185, 39052 -> 39053","Type":"Conventional","Directional":true,"Links":[{"SourceID":24336,"TargetID":24185,"Directional":true},{"SourceID":39052,"TargetID":39053,"Directional":true}]},{"ID":11879,"SourceStructureID":7204,"TargetStructureID":8578,"Label":"7204-8578 via Conventional from 54670 -> 54669","Type":"Conventional","Directional":true,"Links":[{"SourceID":54670,"TargetID":54669,"Directional":true}]},{"ID":11880,"SourceStructureID":7215,"TargetStructureID":7691,"Label":"7215-7691 via Conventional from 41565 -> 14705","Type":"Conventional","Directional":true,"Links":[{"SourceID":41565,"TargetID":14705,"Directional":true}]},{"ID":11881,"SourceStructureID":7215,"TargetStructureID":34336,"Label":"7215-34336 via Conventional from 31587 -> 34371","Type":"Conventional","Directional":true,"Links":[{"SourceID":31587,"TargetID":34371,"Directional":true}]},{"ID":11882,"SourceStructureID":7225,"TargetStructureID":3928,"Label":"7225-3928 via Conventional from 28998 -> 40819, 29023 -> 40703","Type":"Conventional","Directional":true,"Links":[{"SourceID":28998,"TargetID":40819,"Directional":true},{"SourceID":29023,"TargetID":40703,"Directional":true}]},{"ID":11883,"SourceStructureID":7225,"TargetStructureID":5539,"Label":"7225-5539 via Conventional from 10034 -> 10023","Type":"Conventional","Directional":true,"Links":[{"SourceID":10034,"TargetID":10023,"Directional":true}]},{"ID":11884,"SourceStructureID":7225,"TargetStructureID":5544,"Label":"7225-5544 via Conventional from 137048 -> 44751","Type":"Conventional","Directional":true,"Links":[{"SourceID":137048,"TargetID":44751,"Directional":true}]},{"ID":11885,"SourceStructureID":7225,"TargetStructureID":6128,"Label":"7225-6128 via Conventional from 88399 -> 21177, 88401 -> 88402","Type":"Conventional","Directional":true,"Links":[{"SourceID":88399,"TargetID":21177,"Directional":true},{"SourceID":88401,"TargetID":88402,"Directional":true}]},{"ID":11886,"SourceStructureID":7225,"TargetStructureID":6131,"Label":"7225-6131 via Conventional from 88396 -> 88397","Type":"Conventional","Directional":true,"Links":[{"SourceID":88396,"TargetID":88397,"Directional":true}]},{"ID":11887,"SourceStructureID":7225,"TargetStructureID":6132,"Label":"7225-6132 via Conventional from 29025 -> 29003, 29026 -> 29004, 88408 -> 88432","Type":"Conventional","Directional":true,"Links":[{"SourceID":29025,"TargetID":29003,"Directional":true},{"SourceID":29026,"TargetID":29004,"Directional":true},{"SourceID":88408,"TargetID":88432,"Directional":true}]},{"ID":11888,"SourceStructureID":7225,"TargetStructureID":7293,"Label":"7225-7293 via Conventional from 10032 -> 10033","Type":"Conventional","Directional":true,"Links":[{"SourceID":10032,"TargetID":10033,"Directional":true}]},{"ID":11889,"SourceStructureID":7225,"TargetStructureID":7346,"Label":"7225-7346 via Conventional from 43994 -> 44009","Type":"Conventional","Directional":true,"Links":[{"SourceID":43994,"TargetID":44009,"Directional":true}]},{"ID":11890,"SourceStructureID":7225,"TargetStructureID":11066,"Label":"7225-11066 via Conventional from 31557 -> 31555","Type":"Conventional","Directional":true,"Links":[{"SourceID":31557,"TargetID":31555,"Directional":true}]},{"ID":11891,"SourceStructureID":7225,"TargetStructureID":28950,"Label":"7225-28950 via Conventional from 28994 -> 28990, 28995 -> 28993, 28996 -> 28991","Type":"Conventional","Directional":true,"Links":[{"SourceID":28994,"TargetID":28990,"Directional":true},{"SourceID":28995,"TargetID":28993,"Directional":true},{"SourceID":28996,"TargetID":28991,"Directional":true}]},{"ID":11892,"SourceStructureID":7225,"TargetStructureID":117778,"Label":"7225-117778 via Conventional from 28997 -> 117784","Type":"Conventional","Directional":true,"Links":[{"SourceID":28997,"TargetID":117784,"Directional":true}]},{"ID":11893,"SourceStructureID":7225,"TargetStructureID":137024,"Label":"7225-137024 via Conventional from 137045 -> 137046","Type":"Conventional","Directional":true,"Links":[{"SourceID":137045,"TargetID":137046,"Directional":true}]},{"ID":11894,"SourceStructureID":7231,"TargetStructureID":16073,"Label":"7231-16073 via Conventional from 116952 -> 24204, 117038 -> 117039, 117040 -> 41249, 117041 -> 41251","Type":"Conventional","Directional":true,"Links":[{"SourceID":116952,"TargetID":24204,"Directional":true},{"SourceID":117038,"TargetID":117039,"Directional":true},{"SourceID":117040,"TargetID":41249,"Directional":true},{"SourceID":117041,"TargetID":41251,"Directional":true}]},{"ID":11895,"SourceStructureID":7274,"TargetStructureID":5303,"Label":"7274-5303 via Conventional from 41802 -> 24046","Type":"Conventional","Directional":true,"Links":[{"SourceID":41802,"TargetID":24046,"Directional":true}]},{"ID":11896,"SourceStructureID":7279,"TargetStructureID":5551,"Label":"7279-5551 via Conventional from 34688 -> 116916","Type":"Conventional","Directional":true,"Links":[{"SourceID":34688,"TargetID":116916,"Directional":true}]},{"ID":11897,"SourceStructureID":7279,"TargetStructureID":5604,"Label":"7279-5604 via Conventional from 131380 -> 36882","Type":"Conventional","Directional":true,"Links":[{"SourceID":131380,"TargetID":36882,"Directional":true}]},{"ID":11898,"SourceStructureID":7279,"TargetStructureID":5636,"Label":"7279-5636 via Conventional from 34689 -> 34728","Type":"Conventional","Directional":true,"Links":[{"SourceID":34689,"TargetID":34728,"Directional":true}]},{"ID":11899,"SourceStructureID":7279,"TargetStructureID":116919,"Label":"7279-116919 via Conventional from 34686 -> 116922","Type":"Conventional","Directional":true,"Links":[{"SourceID":34686,"TargetID":116922,"Directional":true}]},{"ID":11900,"SourceStructureID":7279,"TargetStructureID":137024,"Label":"7279-137024 via Conventional from 137060 -> 137059","Type":"Conventional","Directional":true,"Links":[{"SourceID":137060,"TargetID":137059,"Directional":true}]},{"ID":11901,"SourceStructureID":7344,"TargetStructureID":5422,"Label":"7344-5422 via Cistern Pre from 74118 -> 74117","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":74118,"TargetID":74117,"Directional":true}]},{"ID":11902,"SourceStructureID":7345,"TargetStructureID":11066,"Label":"7345-11066 via Conventional from 34447 -> 34410, 34448 -> 34404, 34450 -> 34406","Type":"Conventional","Directional":true,"Links":[{"SourceID":34447,"TargetID":34410,"Directional":true},{"SourceID":34448,"TargetID":34404,"Directional":true},{"SourceID":34450,"TargetID":34406,"Directional":true}]},{"ID":11903,"SourceStructureID":7345,"TargetStructureID":135295,"Label":"7345-135295 via Conventional from 135314 -> 135313","Type":"Conventional","Directional":true,"Links":[{"SourceID":135314,"TargetID":135313,"Directional":true}]},{"ID":11904,"SourceStructureID":7346,"TargetStructureID":6128,"Label":"7346-6128 via BC Conventional Synapse from 44069 -> 20977","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":44069,"TargetID":20977,"Directional":true}]},{"ID":11905,"SourceStructureID":7346,"TargetStructureID":43198,"Label":"7346-43198 via Ribbon Synapse from 122102 -> 122101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122102,"TargetID":122101,"Directional":true}]},{"ID":11906,"SourceStructureID":7346,"TargetStructureID":44095,"Label":"7346-44095 via Ribbon Synapse from 44105 -> 44096, 44109 -> 44508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44105,"TargetID":44096,"Directional":true},{"SourceID":44109,"TargetID":44508,"Directional":true}]},{"ID":11907,"SourceStructureID":7346,"TargetStructureID":64414,"Label":"7346-64414 via Ribbon Synapse from 64431 -> 64430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64431,"TargetID":64430,"Directional":true}]},{"ID":11908,"SourceStructureID":7361,"TargetStructureID":11238,"Label":"7361-11238 via Ribbon Synapse from 136251 -> 136246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136251,"TargetID":136246,"Directional":true}]},{"ID":11909,"SourceStructureID":7362,"TargetStructureID":13525,"Label":"7362-13525 via Ribbon Synapse from 103930 -> 86531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103930,"TargetID":86531,"Directional":true}]},{"ID":11910,"SourceStructureID":7446,"TargetStructureID":5413,"Label":"7446-5413 via Ribbon Synapse from 121931 -> 130909","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121931,"TargetID":130909,"Directional":true}]},{"ID":11911,"SourceStructureID":7446,"TargetStructureID":18693,"Label":"7446-18693 via Ribbon Synapse from 64765 -> 64764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64765,"TargetID":64764,"Directional":true}]},{"ID":11912,"SourceStructureID":7446,"TargetStructureID":45220,"Label":"7446-45220 via Ribbon Synapse from 123044 -> 45259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123044,"TargetID":45259,"Directional":true}]},{"ID":11913,"SourceStructureID":7446,"TargetStructureID":118315,"Label":"7446-118315 via Ribbon Synapse from 118314 -> 118317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118314,"TargetID":118317,"Directional":true}]},{"ID":11914,"SourceStructureID":7461,"TargetStructureID":433,"Label":"7461-433 via Conventional from 41087 -> 21593","Type":"Conventional","Directional":true,"Links":[{"SourceID":41087,"TargetID":21593,"Directional":true}]},{"ID":11915,"SourceStructureID":7461,"TargetStructureID":6128,"Label":"7461-6128 via Conventional from 30465 -> 30466, 30470 -> 39989","Type":"Conventional","Directional":true,"Links":[{"SourceID":30465,"TargetID":30466,"Directional":true},{"SourceID":30470,"TargetID":39989,"Directional":true}]},{"ID":11916,"SourceStructureID":7464,"TargetStructureID":446,"Label":"7464-446 via Cistern Pre from 39437 -> 39438","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":39437,"TargetID":39438,"Directional":true}]},{"ID":11917,"SourceStructureID":7468,"TargetStructureID":354,"Label":"7468-354 via Conventional from 47906 -> 44656","Type":"Conventional","Directional":true,"Links":[{"SourceID":47906,"TargetID":44656,"Directional":true}]},{"ID":11918,"SourceStructureID":7468,"TargetStructureID":28950,"Label":"7468-28950 via Conventional from 29065 -> 29063, 29065 -> 29066","Type":"Conventional","Directional":true,"Links":[{"SourceID":29065,"TargetID":29063,"Directional":true},{"SourceID":29065,"TargetID":29066,"Directional":true}]},{"ID":11919,"SourceStructureID":7468,"TargetStructureID":47908,"Label":"7468-47908 via Conventional from 47905 -> 47914","Type":"Conventional","Directional":true,"Links":[{"SourceID":47905,"TargetID":47914,"Directional":true}]},{"ID":11920,"SourceStructureID":7468,"TargetStructureID":129484,"Label":"7468-129484 via Conventional from 129482 -> 129485, 129486 -> 129487","Type":"Conventional","Directional":true,"Links":[{"SourceID":129482,"TargetID":129485,"Directional":true},{"SourceID":129486,"TargetID":129487,"Directional":true}]},{"ID":11921,"SourceStructureID":7561,"TargetStructureID":7054,"Label":"7561-7054 via Conventional from 7562 -> 7055","Type":"Conventional","Directional":true,"Links":[{"SourceID":7562,"TargetID":7055,"Directional":true}]},{"ID":11922,"SourceStructureID":7564,"TargetStructureID":458,"Label":"7564-458 via Conventional from 28773 -> 14493, 34345 -> 34344","Type":"Conventional","Directional":true,"Links":[{"SourceID":28773,"TargetID":14493,"Directional":true},{"SourceID":34345,"TargetID":34344,"Directional":true}]},{"ID":11923,"SourceStructureID":7564,"TargetStructureID":5542,"Label":"7564-5542 via Conventional from 29052 -> 29054, 82104 -> 127976","Type":"Conventional","Directional":true,"Links":[{"SourceID":29052,"TargetID":29054,"Directional":true},{"SourceID":82104,"TargetID":127976,"Directional":true}]},{"ID":11924,"SourceStructureID":7564,"TargetStructureID":5544,"Label":"7564-5544 via Conventional from 29156 -> 29162, 44709 -> 44708","Type":"Conventional","Directional":true,"Links":[{"SourceID":29156,"TargetID":29162,"Directional":true},{"SourceID":44709,"TargetID":44708,"Directional":true}]},{"ID":11925,"SourceStructureID":7564,"TargetStructureID":6128,"Label":"7564-6128 via Conventional from 137019 -> 33759","Type":"Conventional","Directional":true,"Links":[{"SourceID":137019,"TargetID":33759,"Directional":true}]},{"ID":11926,"SourceStructureID":7564,"TargetStructureID":6131,"Label":"7564-6131 via Conventional from 82105 -> 45282","Type":"Conventional","Directional":true,"Links":[{"SourceID":82105,"TargetID":45282,"Directional":true}]},{"ID":11927,"SourceStructureID":7564,"TargetStructureID":6132,"Label":"7564-6132 via Conventional from 88492 -> 88503","Type":"Conventional","Directional":true,"Links":[{"SourceID":88492,"TargetID":88503,"Directional":true}]},{"ID":11928,"SourceStructureID":7564,"TargetStructureID":10963,"Label":"7564-10963 via Conventional from 31930 -> 31929","Type":"Conventional","Directional":true,"Links":[{"SourceID":31930,"TargetID":31929,"Directional":true}]},{"ID":11929,"SourceStructureID":7564,"TargetStructureID":28950,"Label":"7564-28950 via Conventional from 29048 -> 29045","Type":"Conventional","Directional":true,"Links":[{"SourceID":29048,"TargetID":29045,"Directional":true}]},{"ID":11930,"SourceStructureID":7564,"TargetStructureID":46741,"Label":"7564-46741 via Conventional from 137000 -> 136994","Type":"Conventional","Directional":true,"Links":[{"SourceID":137000,"TargetID":136994,"Directional":true}]},{"ID":11931,"SourceStructureID":7564,"TargetStructureID":137024,"Label":"7564-137024 via Conventional from 137028 -> 137027","Type":"Conventional","Directional":true,"Links":[{"SourceID":137028,"TargetID":137027,"Directional":true}]},{"ID":11932,"SourceStructureID":7564,"TargetStructureID":158673,"Label":"7564-158673 via Conventional from 137018 -> 158675","Type":"Conventional","Directional":true,"Links":[{"SourceID":137018,"TargetID":158675,"Directional":true}]},{"ID":11933,"SourceStructureID":7565,"TargetStructureID":172,"Label":"7565-172 via Conventional from 129856 -> 129857","Type":"Conventional","Directional":true,"Links":[{"SourceID":129856,"TargetID":129857,"Directional":true}]},{"ID":11934,"SourceStructureID":7568,"TargetStructureID":5350,"Label":"7568-5350 via Conventional from 27020 -> 10655","Type":"Conventional","Directional":true,"Links":[{"SourceID":27020,"TargetID":10655,"Directional":true}]},{"ID":11935,"SourceStructureID":7568,"TargetStructureID":5439,"Label":"7568-5439 via Conventional from 27086 -> 85515","Type":"Conventional","Directional":true,"Links":[{"SourceID":27086,"TargetID":85515,"Directional":true}]},{"ID":11936,"SourceStructureID":7568,"TargetStructureID":29198,"Label":"7568-29198 via Conventional from 27114 -> 29208","Type":"Conventional","Directional":true,"Links":[{"SourceID":27114,"TargetID":29208,"Directional":true}]},{"ID":11937,"SourceStructureID":7568,"TargetStructureID":30015,"Label":"7568-30015 via Conventional from 30024 -> 30023","Type":"Conventional","Directional":true,"Links":[{"SourceID":30024,"TargetID":30023,"Directional":true}]},{"ID":11938,"SourceStructureID":7568,"TargetStructureID":78303,"Label":"7568-78303 via Conventional from 78306 -> 78307","Type":"Conventional","Directional":true,"Links":[{"SourceID":78306,"TargetID":78307,"Directional":true}]},{"ID":11939,"SourceStructureID":7576,"TargetStructureID":177,"Label":"7576-177 via Conventional from 54980 -> 27967, 54985 -> 27954","Type":"Conventional","Directional":true,"Links":[{"SourceID":54980,"TargetID":27967,"Directional":true},{"SourceID":54985,"TargetID":27954,"Directional":true}]},{"ID":11940,"SourceStructureID":7576,"TargetStructureID":10961,"Label":"7576-10961 via Conventional from 54977 -> 54978","Type":"Conventional","Directional":true,"Links":[{"SourceID":54977,"TargetID":54978,"Directional":true}]},{"ID":11941,"SourceStructureID":7576,"TargetStructureID":54913,"Label":"7576-54913 via Conventional from 54770 -> 55058, 55056 -> 55057","Type":"Conventional","Directional":true,"Links":[{"SourceID":54770,"TargetID":55058,"Directional":true},{"SourceID":55056,"TargetID":55057,"Directional":true}]},{"ID":11942,"SourceStructureID":7577,"TargetStructureID":137024,"Label":"7577-137024 via Plaque-like Pre from 130512 -> 137053","Type":"Plaque-like Pre","Directional":true,"Links":[{"SourceID":130512,"TargetID":137053,"Directional":true}]},{"ID":11943,"SourceStructureID":7587,"TargetStructureID":135225,"Label":"7587-135225 via Ribbon Synapse from 135272 -> 135261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135272,"TargetID":135261,"Directional":true}]},{"ID":11944,"SourceStructureID":7703,"TargetStructureID":115,"Label":"7703-115 via Conventional from 15212 -> 15214, 18593 -> 8159","Type":"Conventional","Directional":true,"Links":[{"SourceID":15212,"TargetID":15214,"Directional":true},{"SourceID":18593,"TargetID":8159,"Directional":true}]},{"ID":11945,"SourceStructureID":7703,"TargetStructureID":440,"Label":"7703-440 via Conventional from 18599 -> 18648","Type":"Conventional","Directional":true,"Links":[{"SourceID":18599,"TargetID":18648,"Directional":true}]},{"ID":11946,"SourceStructureID":7703,"TargetStructureID":458,"Label":"7703-458 via Conventional from 14522 -> 8151","Type":"Conventional","Directional":true,"Links":[{"SourceID":14522,"TargetID":8151,"Directional":true}]},{"ID":11947,"SourceStructureID":7703,"TargetStructureID":5453,"Label":"7703-5453 via Conventional from 18590 -> 18660","Type":"Conventional","Directional":true,"Links":[{"SourceID":18590,"TargetID":18660,"Directional":true}]},{"ID":11948,"SourceStructureID":7703,"TargetStructureID":5543,"Label":"7703-5543 via Conventional from 17004 -> 17019, 18275 -> 17135, 18589 -> 17092","Type":"Conventional","Directional":true,"Links":[{"SourceID":17004,"TargetID":17019,"Directional":true},{"SourceID":18275,"TargetID":17135,"Directional":true},{"SourceID":18589,"TargetID":17092,"Directional":true}]},{"ID":11949,"SourceStructureID":7703,"TargetStructureID":6129,"Label":"7703-6129 via Conventional from 17757 -> 17784","Type":"Conventional","Directional":true,"Links":[{"SourceID":17757,"TargetID":17784,"Directional":true}]},{"ID":11950,"SourceStructureID":7703,"TargetStructureID":8575,"Label":"7703-8575 via Conventional from 18595 -> 37281","Type":"Conventional","Directional":true,"Links":[{"SourceID":18595,"TargetID":37281,"Directional":true}]},{"ID":11951,"SourceStructureID":7703,"TargetStructureID":62632,"Label":"7703-62632 via Conventional from 62635 -> 62636","Type":"Conventional","Directional":true,"Links":[{"SourceID":62635,"TargetID":62636,"Directional":true}]},{"ID":11952,"SourceStructureID":7703,"TargetStructureID":137122,"Label":"7703-137122 via Conventional from 137129 -> 137128","Type":"Conventional","Directional":true,"Links":[{"SourceID":137129,"TargetID":137128,"Directional":true}]},{"ID":11953,"SourceStructureID":7850,"TargetStructureID":4890,"Label":"7850-4890 via Conventional from 7851 -> 6111","Type":"Conventional","Directional":true,"Links":[{"SourceID":7851,"TargetID":6111,"Directional":true}]},{"ID":11954,"SourceStructureID":7850,"TargetStructureID":78327,"Label":"7850-78327 via Conventional from 7852 -> 78328","Type":"Conventional","Directional":true,"Links":[{"SourceID":7852,"TargetID":78328,"Directional":true}]},{"ID":11955,"SourceStructureID":7858,"TargetStructureID":64414,"Label":"7858-64414 via Conventional from 31906 -> 64439","Type":"Conventional","Directional":true,"Links":[{"SourceID":31906,"TargetID":64439,"Directional":true}]},{"ID":11956,"SourceStructureID":7859,"TargetStructureID":11238,"Label":"7859-11238 via Conventional from 84698 -> 136112, 84808 -> 136114, 84819 -> 136137","Type":"Conventional","Directional":true,"Links":[{"SourceID":84698,"TargetID":136112,"Directional":true},{"SourceID":84808,"TargetID":136114,"Directional":true},{"SourceID":84819,"TargetID":136137,"Directional":true}]},{"ID":11957,"SourceStructureID":7859,"TargetStructureID":43716,"Label":"7859-43716 via Conventional from 84808 -> 43723","Type":"Conventional","Directional":true,"Links":[{"SourceID":84808,"TargetID":43723,"Directional":true}]},{"ID":11958,"SourceStructureID":7859,"TargetStructureID":62531,"Label":"7859-62531 via Conventional from 64636 -> 64637","Type":"Conventional","Directional":true,"Links":[{"SourceID":64636,"TargetID":64637,"Directional":true}]},{"ID":11959,"SourceStructureID":7859,"TargetStructureID":64670,"Label":"7859-64670 via Conventional from 64669 -> 64671","Type":"Conventional","Directional":true,"Links":[{"SourceID":64669,"TargetID":64671,"Directional":true}]},{"ID":11960,"SourceStructureID":7859,"TargetStructureID":136351,"Label":"7859-136351 via Conventional from 136354 -> 136352","Type":"Conventional","Directional":true,"Links":[{"SourceID":136354,"TargetID":136352,"Directional":true}]},{"ID":11961,"SourceStructureID":7860,"TargetStructureID":452,"Label":"7860-452 via Conventional from 36085 -> 7324, 36086 -> 7380","Type":"Conventional","Directional":true,"Links":[{"SourceID":36085,"TargetID":7324,"Directional":true},{"SourceID":36086,"TargetID":7380,"Directional":true}]},{"ID":11962,"SourceStructureID":7860,"TargetStructureID":452,"Label":"7860-452 via Ribbon Synapse from 36084 -> 7324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36084,"TargetID":7324,"Directional":true}]},{"ID":11963,"SourceStructureID":7860,"TargetStructureID":28950,"Label":"7860-28950 via Conventional from 29062 -> 29060","Type":"Conventional","Directional":true,"Links":[{"SourceID":29062,"TargetID":29060,"Directional":true}]},{"ID":11964,"SourceStructureID":7861,"TargetStructureID":441,"Label":"7861-441 via Conventional from 21268 -> 21269","Type":"Conventional","Directional":true,"Links":[{"SourceID":21268,"TargetID":21269,"Directional":true}]},{"ID":11965,"SourceStructureID":7861,"TargetStructureID":452,"Label":"7861-452 via Conventional from 34547 -> 7343, 36072 -> 21243, 36073 -> 21243","Type":"Conventional","Directional":true,"Links":[{"SourceID":34547,"TargetID":7343,"Directional":true},{"SourceID":36072,"TargetID":21243,"Directional":true},{"SourceID":36073,"TargetID":21243,"Directional":true}]},{"ID":11966,"SourceStructureID":7861,"TargetStructureID":5542,"Label":"7861-5542 via Conventional from 18250 -> 18266, 18250 -> 130353","Type":"Conventional","Directional":true,"Links":[{"SourceID":18250,"TargetID":18266,"Directional":true},{"SourceID":18250,"TargetID":130353,"Directional":true}]},{"ID":11967,"SourceStructureID":7861,"TargetStructureID":5543,"Label":"7861-5543 via Conventional from 18243 -> 17159, 18244 -> 17158","Type":"Conventional","Directional":true,"Links":[{"SourceID":18243,"TargetID":17159,"Directional":true},{"SourceID":18244,"TargetID":17158,"Directional":true}]},{"ID":11968,"SourceStructureID":7861,"TargetStructureID":6128,"Label":"7861-6128 via Conventional from 21253 -> 20885, 36071 -> 20973","Type":"Conventional","Directional":true,"Links":[{"SourceID":21253,"TargetID":20885,"Directional":true},{"SourceID":36071,"TargetID":20973,"Directional":true}]},{"ID":11969,"SourceStructureID":7861,"TargetStructureID":7346,"Label":"7861-7346 via Conventional from 44108 -> 44107","Type":"Conventional","Directional":true,"Links":[{"SourceID":44108,"TargetID":44107,"Directional":true}]},{"ID":11970,"SourceStructureID":7861,"TargetStructureID":11092,"Label":"7861-11092 via Conventional from 34544 -> 125793, 121014 -> 123471","Type":"Conventional","Directional":true,"Links":[{"SourceID":34544,"TargetID":125793,"Directional":true},{"SourceID":121014,"TargetID":123471,"Directional":true}]},{"ID":11971,"SourceStructureID":7861,"TargetStructureID":137070,"Label":"7861-137070 via Conventional from 137069 -> 137073","Type":"Conventional","Directional":true,"Links":[{"SourceID":137069,"TargetID":137073,"Directional":true}]},{"ID":11972,"SourceStructureID":7897,"TargetStructureID":138,"Label":"7897-138 via Conventional from 46476 -> 46477, 46481 -> 46482","Type":"Conventional","Directional":true,"Links":[{"SourceID":46476,"TargetID":46477,"Directional":true},{"SourceID":46481,"TargetID":46482,"Directional":true}]},{"ID":11973,"SourceStructureID":7897,"TargetStructureID":5303,"Label":"7897-5303 via Conventional from 46475 -> 35623","Type":"Conventional","Directional":true,"Links":[{"SourceID":46475,"TargetID":35623,"Directional":true}]},{"ID":11974,"SourceStructureID":7897,"TargetStructureID":15796,"Label":"7897-15796 via Conventional from 55755 -> 55678","Type":"Conventional","Directional":true,"Links":[{"SourceID":55755,"TargetID":55678,"Directional":true}]},{"ID":11975,"SourceStructureID":7897,"TargetStructureID":36130,"Label":"7897-36130 via Conventional from 15795 -> 36132","Type":"Conventional","Directional":true,"Links":[{"SourceID":15795,"TargetID":36132,"Directional":true}]},{"ID":11976,"SourceStructureID":7904,"TargetStructureID":5150,"Label":"7904-5150 via Conventional from 131348 -> 5247, 131353 -> 5252","Type":"Conventional","Directional":true,"Links":[{"SourceID":131348,"TargetID":5247,"Directional":true},{"SourceID":131353,"TargetID":5252,"Directional":true}]},{"ID":11977,"SourceStructureID":7904,"TargetStructureID":6125,"Label":"7904-6125 via Conventional from 129040 -> 129041","Type":"Conventional","Directional":true,"Links":[{"SourceID":129040,"TargetID":129041,"Directional":true}]},{"ID":11978,"SourceStructureID":7904,"TargetStructureID":119547,"Label":"7904-119547 via Conventional from 131345 -> 119573","Type":"Conventional","Directional":true,"Links":[{"SourceID":131345,"TargetID":119573,"Directional":true}]},{"ID":11979,"SourceStructureID":7951,"TargetStructureID":5504,"Label":"7951-5504 via Conventional from 11126 -> 11125","Type":"Conventional","Directional":true,"Links":[{"SourceID":11126,"TargetID":11125,"Directional":true}]},{"ID":11980,"SourceStructureID":7951,"TargetStructureID":5909,"Label":"7951-5909 via Conventional from 93153 -> 93152","Type":"Conventional","Directional":true,"Links":[{"SourceID":93153,"TargetID":93152,"Directional":true}]},{"ID":11981,"SourceStructureID":7951,"TargetStructureID":5922,"Label":"7951-5922 via Conventional from 26732 -> 68846","Type":"Conventional","Directional":true,"Links":[{"SourceID":26732,"TargetID":68846,"Directional":true}]},{"ID":11982,"SourceStructureID":7951,"TargetStructureID":6125,"Label":"7951-6125 via Conventional from 26757 -> 31202","Type":"Conventional","Directional":true,"Links":[{"SourceID":26757,"TargetID":31202,"Directional":true}]},{"ID":11983,"SourceStructureID":7951,"TargetStructureID":34761,"Label":"7951-34761 via Conventional from 34767 -> 34766, 34768 -> 34765, 34775 -> 34776","Type":"Conventional","Directional":true,"Links":[{"SourceID":34767,"TargetID":34766,"Directional":true},{"SourceID":34768,"TargetID":34765,"Directional":true},{"SourceID":34775,"TargetID":34776,"Directional":true}]},{"ID":11984,"SourceStructureID":8032,"TargetStructureID":6140,"Label":"8032-6140 via Conventional from 47950 -> 47951","Type":"Conventional","Directional":true,"Links":[{"SourceID":47950,"TargetID":47951,"Directional":true}]},{"ID":11985,"SourceStructureID":8035,"TargetStructureID":5504,"Label":"8035-5504 via Conventional from 25016 -> 25015","Type":"Conventional","Directional":true,"Links":[{"SourceID":25016,"TargetID":25015,"Directional":true}]},{"ID":11986,"SourceStructureID":8035,"TargetStructureID":5609,"Label":"8035-5609 via Conventional from 25051 -> 25050","Type":"Conventional","Directional":true,"Links":[{"SourceID":25051,"TargetID":25050,"Directional":true}]},{"ID":11987,"SourceStructureID":8035,"TargetStructureID":6118,"Label":"8035-6118 via Conventional from 25019 -> 25031","Type":"Conventional","Directional":true,"Links":[{"SourceID":25019,"TargetID":25031,"Directional":true}]},{"ID":11988,"SourceStructureID":8037,"TargetStructureID":5498,"Label":"8037-5498 via Conventional from 48003 -> 48004","Type":"Conventional","Directional":true,"Links":[{"SourceID":48003,"TargetID":48004,"Directional":true}]},{"ID":11989,"SourceStructureID":8037,"TargetStructureID":8485,"Label":"8037-8485 via Conventional from 11671 -> 11672, 11673 -> 11674","Type":"Conventional","Directional":true,"Links":[{"SourceID":11671,"TargetID":11672,"Directional":true},{"SourceID":11673,"TargetID":11674,"Directional":true}]},{"ID":11990,"SourceStructureID":8037,"TargetStructureID":18471,"Label":"8037-18471 via Conventional from 18470 -> 18473","Type":"Conventional","Directional":true,"Links":[{"SourceID":18470,"TargetID":18473,"Directional":true}]},{"ID":11991,"SourceStructureID":8037,"TargetStructureID":85094,"Label":"8037-85094 via Conventional from 85114 -> 85112","Type":"Conventional","Directional":true,"Links":[{"SourceID":85114,"TargetID":85112,"Directional":true}]},{"ID":11992,"SourceStructureID":8038,"TargetStructureID":5622,"Label":"8038-5622 via Conventional from 24173 -> 24172","Type":"Conventional","Directional":true,"Links":[{"SourceID":24173,"TargetID":24172,"Directional":true}]},{"ID":11993,"SourceStructureID":8040,"TargetStructureID":606,"Label":"8040-606 via Ribbon Synapse from 39149 -> 39150, 48523 -> 48524, 48525 -> 48526, 51705 -> 51706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39149,"TargetID":39150,"Directional":true},{"SourceID":48523,"TargetID":48524,"Directional":true},{"SourceID":48525,"TargetID":48526,"Directional":true},{"SourceID":51705,"TargetID":51706,"Directional":true}]},{"ID":11994,"SourceStructureID":8040,"TargetStructureID":35452,"Label":"8040-35452 via Ribbon Synapse from 35464 -> 35460","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35464,"TargetID":35460,"Directional":true}]},{"ID":11995,"SourceStructureID":8040,"TargetStructureID":52410,"Label":"8040-52410 via Ribbon Synapse from 48629 -> 52562, 48774 -> 52556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48629,"TargetID":52562,"Directional":true},{"SourceID":48774,"TargetID":52556,"Directional":true}]},{"ID":11996,"SourceStructureID":8040,"TargetStructureID":69554,"Label":"8040-69554 via Cistern Pre from 39140 -> 69556, 39142 -> 69563","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":39140,"TargetID":69556,"Directional":true},{"SourceID":39142,"TargetID":69563,"Directional":true}]},{"ID":11997,"SourceStructureID":8045,"TargetStructureID":7114,"Label":"8045-7114 via Conventional from 12486 -> 12487","Type":"Conventional","Directional":true,"Links":[{"SourceID":12486,"TargetID":12487,"Directional":true}]},{"ID":11998,"SourceStructureID":8059,"TargetStructureID":8575,"Label":"8059-8575 via Conventional from 62215 -> 62214","Type":"Conventional","Directional":true,"Links":[{"SourceID":62215,"TargetID":62214,"Directional":true}]},{"ID":11999,"SourceStructureID":8212,"TargetStructureID":6146,"Label":"8212-6146 via Conventional from 38080 -> 38079","Type":"Conventional","Directional":true,"Links":[{"SourceID":38080,"TargetID":38079,"Directional":true}]},{"ID":12000,"SourceStructureID":8218,"TargetStructureID":5598,"Label":"8218-5598 via Conventional from 12533 -> 12532","Type":"Conventional","Directional":true,"Links":[{"SourceID":12533,"TargetID":12532,"Directional":true}]},{"ID":12001,"SourceStructureID":8485,"TargetStructureID":2610,"Label":"8485-2610 via Ribbon Synapse from 71249 -> 71250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71249,"TargetID":71250,"Directional":true}]},{"ID":12002,"SourceStructureID":8485,"TargetStructureID":12192,"Label":"8485-12192 via Ribbon Synapse from 46619 -> 46620","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46619,"TargetID":46620,"Directional":true}]},{"ID":12003,"SourceStructureID":8485,"TargetStructureID":28913,"Label":"8485-28913 via Conventional from 43990 -> 43991","Type":"Conventional","Directional":true,"Links":[{"SourceID":43990,"TargetID":43991,"Directional":true}]},{"ID":12004,"SourceStructureID":8485,"TargetStructureID":69534,"Label":"8485-69534 via Ribbon Synapse from 28877 -> 69535","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28877,"TargetID":69535,"Directional":true}]},{"ID":12005,"SourceStructureID":8504,"TargetStructureID":4943,"Label":"8504-4943 via Conventional from 8716 -> 4988","Type":"Conventional","Directional":true,"Links":[{"SourceID":8716,"TargetID":4988,"Directional":true}]},{"ID":12006,"SourceStructureID":8504,"TargetStructureID":5538,"Label":"8504-5538 via Conventional from 8710 -> 45011","Type":"Conventional","Directional":true,"Links":[{"SourceID":8710,"TargetID":45011,"Directional":true}]},{"ID":12007,"SourceStructureID":8504,"TargetStructureID":6133,"Label":"8504-6133 via Conventional from 8694 -> 8701","Type":"Conventional","Directional":true,"Links":[{"SourceID":8694,"TargetID":8701,"Directional":true}]},{"ID":12008,"SourceStructureID":8504,"TargetStructureID":32359,"Label":"8504-32359 via Conventional from 8711 -> 41351","Type":"Conventional","Directional":true,"Links":[{"SourceID":8711,"TargetID":41351,"Directional":true}]},{"ID":12009,"SourceStructureID":8551,"TargetStructureID":3928,"Label":"8551-3928 via Conventional from 8557 -> 40706","Type":"Conventional","Directional":true,"Links":[{"SourceID":8557,"TargetID":40706,"Directional":true}]},{"ID":12010,"SourceStructureID":8551,"TargetStructureID":4943,"Label":"8551-4943 via Conventional from 8554 -> 8537","Type":"Conventional","Directional":true,"Links":[{"SourceID":8554,"TargetID":8537,"Directional":true}]},{"ID":12011,"SourceStructureID":8551,"TargetStructureID":5538,"Label":"8551-5538 via Conventional from 8565 -> 8550","Type":"Conventional","Directional":true,"Links":[{"SourceID":8565,"TargetID":8550,"Directional":true}]},{"ID":12012,"SourceStructureID":8551,"TargetStructureID":5636,"Label":"8551-5636 via Conventional from 8583 -> 34707","Type":"Conventional","Directional":true,"Links":[{"SourceID":8583,"TargetID":34707,"Directional":true}]},{"ID":12013,"SourceStructureID":8576,"TargetStructureID":5501,"Label":"8576-5501 via Conventional from 20075 -> 36592","Type":"Conventional","Directional":true,"Links":[{"SourceID":20075,"TargetID":36592,"Directional":true}]},{"ID":12014,"SourceStructureID":8576,"TargetStructureID":5503,"Label":"8576-5503 via Conventional from 20070 -> 20086, 20076 -> 60665","Type":"Conventional","Directional":true,"Links":[{"SourceID":20070,"TargetID":20086,"Directional":true},{"SourceID":20076,"TargetID":60665,"Directional":true}]},{"ID":12015,"SourceStructureID":8576,"TargetStructureID":5561,"Label":"8576-5561 via Conventional from 20066 -> 46249","Type":"Conventional","Directional":true,"Links":[{"SourceID":20066,"TargetID":46249,"Directional":true}]},{"ID":12016,"SourceStructureID":8577,"TargetStructureID":8579,"Label":"8577-8579 via Adherens from 62739 -> 62738","Type":"Adherens","Directional":true,"Links":[{"SourceID":62739,"TargetID":62738,"Directional":true}]},{"ID":12017,"SourceStructureID":8577,"TargetStructureID":61933,"Label":"8577-61933 via Conventional from 68648 -> 68647","Type":"Conventional","Directional":true,"Links":[{"SourceID":68648,"TargetID":68647,"Directional":true}]},{"ID":12018,"SourceStructureID":8579,"TargetStructureID":6142,"Label":"8579-6142 via Conventional from 62715 -> 23381","Type":"Conventional","Directional":true,"Links":[{"SourceID":62715,"TargetID":23381,"Directional":true}]},{"ID":12019,"SourceStructureID":8579,"TargetStructureID":8580,"Label":"8579-8580 via Plaque-like Pre from 72106 -> 72107","Type":"Plaque-like Pre","Directional":true,"Links":[{"SourceID":72106,"TargetID":72107,"Directional":true}]},{"ID":12020,"SourceStructureID":8579,"TargetStructureID":16026,"Label":"8579-16026 via Conventional from 25985 -> 24085","Type":"Conventional","Directional":true,"Links":[{"SourceID":25985,"TargetID":24085,"Directional":true}]},{"ID":12021,"SourceStructureID":8579,"TargetStructureID":62710,"Label":"8579-62710 via Conventional from 62703 -> 62711","Type":"Conventional","Directional":true,"Links":[{"SourceID":62703,"TargetID":62711,"Directional":true}]},{"ID":12022,"SourceStructureID":8580,"TargetStructureID":8580,"Label":"8580-8580 via Conventional from 59836 -> 59834","Type":"Conventional","Directional":true,"Links":[{"SourceID":59836,"TargetID":59834,"Directional":true}]},{"ID":12023,"SourceStructureID":8586,"TargetStructureID":591,"Label":"8586-591 via Ribbon Synapse from 8603 -> 10350, 8606 -> 10347, 10352 -> 10353","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8603,"TargetID":10350,"Directional":true},{"SourceID":8606,"TargetID":10347,"Directional":true},{"SourceID":10352,"TargetID":10353,"Directional":true}]},{"ID":12024,"SourceStructureID":8586,"TargetStructureID":4943,"Label":"8586-4943 via Ribbon Synapse from 8654 -> 4966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8654,"TargetID":4966,"Directional":true}]},{"ID":12025,"SourceStructureID":8586,"TargetStructureID":7147,"Label":"8586-7147 via Ribbon Synapse from 8655 -> 32689, 8670 -> 16070","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8655,"TargetID":32689,"Directional":true},{"SourceID":8670,"TargetID":16070,"Directional":true}]},{"ID":12026,"SourceStructureID":8589,"TargetStructureID":71309,"Label":"8589-71309 via Adherens from 71308 -> 71310","Type":"Adherens","Directional":true,"Links":[{"SourceID":71308,"TargetID":71310,"Directional":true}]},{"ID":12027,"SourceStructureID":8720,"TargetStructureID":8575,"Label":"8720-8575 via Conventional from 63141 -> 43265, 104922 -> 62850","Type":"Conventional","Directional":true,"Links":[{"SourceID":63141,"TargetID":43265,"Directional":true},{"SourceID":104922,"TargetID":62850,"Directional":true}]},{"ID":12028,"SourceStructureID":8720,"TargetStructureID":13858,"Label":"8720-13858 via Conventional from 63406 -> 63415","Type":"Conventional","Directional":true,"Links":[{"SourceID":63406,"TargetID":63415,"Directional":true}]},{"ID":12029,"SourceStructureID":8720,"TargetStructureID":63371,"Label":"8720-63371 via Conventional from 63370 -> 63373, 63400 -> 63401","Type":"Conventional","Directional":true,"Links":[{"SourceID":63370,"TargetID":63373,"Directional":true},{"SourceID":63400,"TargetID":63401,"Directional":true}]},{"ID":12030,"SourceStructureID":8749,"TargetStructureID":308,"Label":"8749-308 via Ribbon Synapse from 8820 -> 43450, 8822 -> 43451, 17035 -> 42580, 42564 -> 42565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8820,"TargetID":43450,"Directional":true},{"SourceID":8822,"TargetID":43451,"Directional":true},{"SourceID":17035,"TargetID":42580,"Directional":true},{"SourceID":42564,"TargetID":42565,"Directional":true}]},{"ID":12031,"SourceStructureID":8749,"TargetStructureID":410,"Label":"8749-410 via Ribbon Synapse from 8845 -> 17491, 8847 -> 17492, 15090 -> 15089, 17370 -> 17371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8845,"TargetID":17491,"Directional":true},{"SourceID":8847,"TargetID":17492,"Directional":true},{"SourceID":15090,"TargetID":15089,"Directional":true},{"SourceID":17370,"TargetID":17371,"Directional":true}]},{"ID":12032,"SourceStructureID":8749,"TargetStructureID":514,"Label":"8749-514 via Ribbon Synapse from 8818 -> 32716, 8820 -> 38204, 8869 -> 15091, 15095 -> 15094, 17035 -> 17034, 17037 -> 17036, 17154 -> 2530, 17155 -> 17156, 17161 -> 17163, 17162 -> 17164, 17165 -> 2500, 18004 -> 18003, 32717 -> 32718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8818,"TargetID":32716,"Directional":true},{"SourceID":8820,"TargetID":38204,"Directional":true},{"SourceID":8869,"TargetID":15091,"Directional":true},{"SourceID":15095,"TargetID":15094,"Directional":true},{"SourceID":17035,"TargetID":17034,"Directional":true},{"SourceID":17037,"TargetID":17036,"Directional":true},{"SourceID":17154,"TargetID":2530,"Directional":true},{"SourceID":17155,"TargetID":17156,"Directional":true},{"SourceID":17161,"TargetID":17163,"Directional":true},{"SourceID":17162,"TargetID":17164,"Directional":true},{"SourceID":17165,"TargetID":2500,"Directional":true},{"SourceID":18004,"TargetID":18003,"Directional":true},{"SourceID":32717,"TargetID":32718,"Directional":true}]},{"ID":12033,"SourceStructureID":8749,"TargetStructureID":2610,"Label":"8749-2610 via Ribbon Synapse from 8856 -> 8857, 8870 -> 2743, 17167 -> 2783, 17373 -> 2748, 17945 -> 17944, 17981 -> 17980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8856,"TargetID":8857,"Directional":true},{"SourceID":8870,"TargetID":2743,"Directional":true},{"SourceID":17167,"TargetID":2783,"Directional":true},{"SourceID":17373,"TargetID":2748,"Directional":true},{"SourceID":17945,"TargetID":17944,"Directional":true},{"SourceID":17981,"TargetID":17980,"Directional":true}]},{"ID":12034,"SourceStructureID":8749,"TargetStructureID":5303,"Label":"8749-5303 via Ribbon Synapse from 17155 -> 8747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17155,"TargetID":8747,"Directional":true}]},{"ID":12035,"SourceStructureID":8749,"TargetStructureID":8749,"Label":"8749-8749 via Postsynapse from 8831 -> 159264","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":8831,"TargetID":159264,"Directional":true}]},{"ID":12036,"SourceStructureID":8749,"TargetStructureID":8749,"Label":"8749-8749 via Ribbon Synapse from 17981 -> 8832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17981,"TargetID":8832,"Directional":true}]},{"ID":12037,"SourceStructureID":8749,"TargetStructureID":25352,"Label":"8749-25352 via Ribbon Synapse from 17370 -> 32291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17370,"TargetID":32291,"Directional":true}]},{"ID":12038,"SourceStructureID":8749,"TargetStructureID":25410,"Label":"8749-25410 via Ribbon Synapse from 8856 -> 25415","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8856,"TargetID":25415,"Directional":true}]},{"ID":12039,"SourceStructureID":8749,"TargetStructureID":32719,"Label":"8749-32719 via Ribbon Synapse from 8851 -> 32721","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8851,"TargetID":32721,"Directional":true}]},{"ID":12040,"SourceStructureID":8749,"TargetStructureID":39208,"Label":"8749-39208 via Ribbon Synapse from 17981 -> 39221","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17981,"TargetID":39221,"Directional":true}]},{"ID":12041,"SourceStructureID":8749,"TargetStructureID":93099,"Label":"8749-93099 via Ribbon Synapse from 93105 -> 93104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93105,"TargetID":93104,"Directional":true}]},{"ID":12042,"SourceStructureID":8749,"TargetStructureID":123181,"Label":"8749-123181 via Ribbon Synapse from 32717 -> 123185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32717,"TargetID":123185,"Directional":true}]},{"ID":12043,"SourceStructureID":8749,"TargetStructureID":123186,"Label":"8749-123186 via Ribbon Synapse from 8818 -> 123188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8818,"TargetID":123188,"Directional":true}]},{"ID":12044,"SourceStructureID":8749,"TargetStructureID":123209,"Label":"8749-123209 via Ribbon Synapse from 8847 -> 123211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8847,"TargetID":123211,"Directional":true}]},{"ID":12045,"SourceStructureID":8749,"TargetStructureID":123227,"Label":"8749-123227 via Ribbon Synapse from 17162 -> 123228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17162,"TargetID":123228,"Directional":true}]},{"ID":12046,"SourceStructureID":8990,"TargetStructureID":5017,"Label":"8990-5017 via Conventional from 8991 -> 5019, 8992 -> 5022","Type":"Conventional","Directional":true,"Links":[{"SourceID":8991,"TargetID":5019,"Directional":true},{"SourceID":8992,"TargetID":5022,"Directional":true}]},{"ID":12047,"SourceStructureID":8990,"TargetStructureID":15942,"Label":"8990-15942 via Conventional from 95933 -> 95934, 95935 -> 95936","Type":"Conventional","Directional":true,"Links":[{"SourceID":95933,"TargetID":95934,"Directional":true},{"SourceID":95935,"TargetID":95936,"Directional":true}]},{"ID":12048,"SourceStructureID":9023,"TargetStructureID":517,"Label":"9023-517 via Conventional from 36677 -> 36679, 36678 -> 36680","Type":"Conventional","Directional":true,"Links":[{"SourceID":36677,"TargetID":36679,"Directional":true},{"SourceID":36678,"TargetID":36680,"Directional":true}]},{"ID":12049,"SourceStructureID":9023,"TargetStructureID":518,"Label":"9023-518 via Conventional from 36669 -> 36668, 37134 -> 14720","Type":"Conventional","Directional":true,"Links":[{"SourceID":36669,"TargetID":36668,"Directional":true},{"SourceID":37134,"TargetID":14720,"Directional":true}]},{"ID":12050,"SourceStructureID":9124,"TargetStructureID":514,"Label":"9124-514 via Conventional from 22629 -> 3556","Type":"Conventional","Directional":true,"Links":[{"SourceID":22629,"TargetID":3556,"Directional":true}]},{"ID":12051,"SourceStructureID":9226,"TargetStructureID":514,"Label":"9226-514 via Conventional from 9227 -> 3328","Type":"Conventional","Directional":true,"Links":[{"SourceID":9227,"TargetID":3328,"Directional":true}]},{"ID":12052,"SourceStructureID":9228,"TargetStructureID":514,"Label":"9228-514 via Conventional from 9229 -> 3329","Type":"Conventional","Directional":true,"Links":[{"SourceID":9229,"TargetID":3329,"Directional":true}]},{"ID":12053,"SourceStructureID":9260,"TargetStructureID":365,"Label":"9260-365 via Conventional from 31820 -> 30390","Type":"Conventional","Directional":true,"Links":[{"SourceID":31820,"TargetID":30390,"Directional":true}]},{"ID":12054,"SourceStructureID":9260,"TargetStructureID":516,"Label":"9260-516 via Conventional from 39660 -> 39662, 39661 -> 39663, 39666 -> 39667, 39668 -> 39669, 39670 -> 39671","Type":"Conventional","Directional":true,"Links":[{"SourceID":39660,"TargetID":39662,"Directional":true},{"SourceID":39661,"TargetID":39663,"Directional":true},{"SourceID":39666,"TargetID":39667,"Directional":true},{"SourceID":39668,"TargetID":39669,"Directional":true},{"SourceID":39670,"TargetID":39671,"Directional":true}]},{"ID":12055,"SourceStructureID":9260,"TargetStructureID":519,"Label":"9260-519 via Conventional from 9263 -> 9257, 9271 -> 9273, 9274 -> 9259, 9275 -> 9276, 25390 -> 25391","Type":"Conventional","Directional":true,"Links":[{"SourceID":9263,"TargetID":9257,"Directional":true},{"SourceID":9271,"TargetID":9273,"Directional":true},{"SourceID":9274,"TargetID":9259,"Directional":true},{"SourceID":9275,"TargetID":9276,"Directional":true},{"SourceID":25390,"TargetID":25391,"Directional":true}]},{"ID":12056,"SourceStructureID":9260,"TargetStructureID":2610,"Label":"9260-2610 via Conventional from 9261 -> 9266, 9262 -> 9265, 9264 -> 9267","Type":"Conventional","Directional":true,"Links":[{"SourceID":9261,"TargetID":9266,"Directional":true},{"SourceID":9262,"TargetID":9265,"Directional":true},{"SourceID":9264,"TargetID":9267,"Directional":true}]},{"ID":12057,"SourceStructureID":9260,"TargetStructureID":5563,"Label":"9260-5563 via Conventional from 98790 -> 98791, 98794 -> 98795","Type":"Conventional","Directional":true,"Links":[{"SourceID":98790,"TargetID":98791,"Directional":true},{"SourceID":98794,"TargetID":98795,"Directional":true}]},{"ID":12058,"SourceStructureID":9347,"TargetStructureID":180,"Label":"9347-180 via Conventional from 29447 -> 29448, 92729 -> 92727, 95415 -> 871","Type":"Conventional","Directional":true,"Links":[{"SourceID":29447,"TargetID":29448,"Directional":true},{"SourceID":92729,"TargetID":92727,"Directional":true},{"SourceID":95415,"TargetID":871,"Directional":true}]},{"ID":12059,"SourceStructureID":9347,"TargetStructureID":1637,"Label":"9347-1637 via Conventional from 9360 -> 117313, 30244 -> 30245","Type":"Conventional","Directional":true,"Links":[{"SourceID":9360,"TargetID":117313,"Directional":true},{"SourceID":30244,"TargetID":30245,"Directional":true}]},{"ID":12060,"SourceStructureID":9347,"TargetStructureID":5297,"Label":"9347-5297 via Conventional from 53647 -> 53644","Type":"Conventional","Directional":true,"Links":[{"SourceID":53647,"TargetID":53644,"Directional":true}]},{"ID":12061,"SourceStructureID":9347,"TargetStructureID":39957,"Label":"9347-39957 via Conventional from 58440 -> 58439","Type":"Conventional","Directional":true,"Links":[{"SourceID":58440,"TargetID":58439,"Directional":true}]},{"ID":12062,"SourceStructureID":9347,"TargetStructureID":59340,"Label":"9347-59340 via Conventional from 9373 -> 59346","Type":"Conventional","Directional":true,"Links":[{"SourceID":9373,"TargetID":59346,"Directional":true}]},{"ID":12063,"SourceStructureID":9376,"TargetStructureID":352,"Label":"9376-352 via Ribbon Synapse from 90700 -> 90695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90700,"TargetID":90695,"Directional":true}]},{"ID":12064,"SourceStructureID":9376,"TargetStructureID":5860,"Label":"9376-5860 via Ribbon Synapse from 90698 -> 8810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90698,"TargetID":8810,"Directional":true}]},{"ID":12065,"SourceStructureID":9492,"TargetStructureID":9260,"Label":"9492-9260 via Conventional from 9493 -> 9475","Type":"Conventional","Directional":true,"Links":[{"SourceID":9493,"TargetID":9475,"Directional":true}]},{"ID":12066,"SourceStructureID":9504,"TargetStructureID":514,"Label":"9504-514 via Ribbon Synapse from 9512 -> 66204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9512,"TargetID":66204,"Directional":true}]},{"ID":12067,"SourceStructureID":9504,"TargetStructureID":906,"Label":"9504-906 via Ribbon Synapse from 16644 -> 16630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16644,"TargetID":16630,"Directional":true}]},{"ID":12068,"SourceStructureID":9604,"TargetStructureID":968,"Label":"9604-968 via Conventional from 9605 -> 977","Type":"Conventional","Directional":true,"Links":[{"SourceID":9605,"TargetID":977,"Directional":true}]},{"ID":12069,"SourceStructureID":9606,"TargetStructureID":968,"Label":"9606-968 via Conventional from 9610 -> 981","Type":"Conventional","Directional":true,"Links":[{"SourceID":9610,"TargetID":981,"Directional":true}]},{"ID":12070,"SourceStructureID":9614,"TargetStructureID":4849,"Label":"9614-4849 via Conventional from 9617 -> 9612","Type":"Conventional","Directional":true,"Links":[{"SourceID":9617,"TargetID":9612,"Directional":true}]},{"ID":12071,"SourceStructureID":9643,"TargetStructureID":469,"Label":"9643-469 via Conventional from 9644 -> 9645, 9646 -> 4652","Type":"Conventional","Directional":true,"Links":[{"SourceID":9644,"TargetID":9645,"Directional":true},{"SourceID":9646,"TargetID":4652,"Directional":true}]},{"ID":12072,"SourceStructureID":9643,"TargetStructureID":471,"Label":"9643-471 via Conventional from 9647 -> 9648, 9650 -> 9651","Type":"Conventional","Directional":true,"Links":[{"SourceID":9647,"TargetID":9648,"Directional":true},{"SourceID":9650,"TargetID":9651,"Directional":true}]},{"ID":12073,"SourceStructureID":9643,"TargetStructureID":10625,"Label":"9643-10625 via Conventional from 9657 -> 16251, 9658 -> 16249","Type":"Conventional","Directional":true,"Links":[{"SourceID":9657,"TargetID":16251,"Directional":true},{"SourceID":9658,"TargetID":16249,"Directional":true}]},{"ID":12074,"SourceStructureID":9693,"TargetStructureID":304,"Label":"9693-304 via Ribbon Synapse from 28242 -> 39225","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28242,"TargetID":39225,"Directional":true}]},{"ID":12075,"SourceStructureID":9693,"TargetStructureID":390,"Label":"9693-390 via Ribbon Synapse from 9753 -> 65113, 9891 -> 65107, 9892 -> 65107","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9753,"TargetID":65113,"Directional":true},{"SourceID":9891,"TargetID":65107,"Directional":true},{"SourceID":9892,"TargetID":65107,"Directional":true}]},{"ID":12076,"SourceStructureID":9693,"TargetStructureID":514,"Label":"9693-514 via Ribbon Synapse from 10437 -> 2512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10437,"TargetID":2512,"Directional":true}]},{"ID":12077,"SourceStructureID":9693,"TargetStructureID":525,"Label":"9693-525 via Ribbon Synapse from 11630 -> 6232","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11630,"TargetID":6232,"Directional":true}]},{"ID":12078,"SourceStructureID":9693,"TargetStructureID":606,"Label":"9693-606 via Ribbon Synapse from 9722 -> 37752, 9724 -> 37752, 14095 -> 45879, 27485 -> 37752, 28256 -> 45878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9722,"TargetID":37752,"Directional":true},{"SourceID":9724,"TargetID":37752,"Directional":true},{"SourceID":14095,"TargetID":45879,"Directional":true},{"SourceID":27485,"TargetID":37752,"Directional":true},{"SourceID":28256,"TargetID":45878,"Directional":true}]},{"ID":12079,"SourceStructureID":9693,"TargetStructureID":608,"Label":"9693-608 via Ribbon Synapse from 28169 -> 59070","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28169,"TargetID":59070,"Directional":true}]},{"ID":12080,"SourceStructureID":9693,"TargetStructureID":2610,"Label":"9693-2610 via Ribbon Synapse from 15013 -> 2854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15013,"TargetID":2854,"Directional":true}]},{"ID":12081,"SourceStructureID":9693,"TargetStructureID":4850,"Label":"9693-4850 via Ribbon Synapse from 15079 -> 15388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15079,"TargetID":15388,"Directional":true}]},{"ID":12082,"SourceStructureID":9693,"TargetStructureID":4890,"Label":"9693-4890 via BC Conventional Synapse from 119830 -> 64899, 119871 -> 7926","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119830,"TargetID":64899,"Directional":true},{"SourceID":119871,"TargetID":7926,"Directional":true}]},{"ID":12083,"SourceStructureID":9693,"TargetStructureID":4890,"Label":"9693-4890 via Ribbon Synapse from 15079 -> 7926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15079,"TargetID":7926,"Directional":true}]},{"ID":12084,"SourceStructureID":9693,"TargetStructureID":5117,"Label":"9693-5117 via Ribbon Synapse from 18734 -> 18736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18734,"TargetID":18736,"Directional":true}]},{"ID":12085,"SourceStructureID":9693,"TargetStructureID":5118,"Label":"9693-5118 via Ribbon Synapse from 28245 -> 70916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28245,"TargetID":70916,"Directional":true}]},{"ID":12086,"SourceStructureID":9693,"TargetStructureID":8033,"Label":"9693-8033 via Ribbon Synapse from 9777 -> 18444, 18445 -> 18446, 18448 -> 18447, 18451 -> 18450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9777,"TargetID":18444,"Directional":true},{"SourceID":18445,"TargetID":18446,"Directional":true},{"SourceID":18448,"TargetID":18447,"Directional":true},{"SourceID":18451,"TargetID":18450,"Directional":true}]},{"ID":12087,"SourceStructureID":9693,"TargetStructureID":15394,"Label":"9693-15394 via Ribbon Synapse from 15393 -> 41020, 135020 -> 135019","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15393,"TargetID":41020,"Directional":true},{"SourceID":135020,"TargetID":135019,"Directional":true}]},{"ID":12088,"SourceStructureID":9693,"TargetStructureID":32804,"Label":"9693-32804 via Ribbon Synapse from 14066 -> 32827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14066,"TargetID":32827,"Directional":true}]},{"ID":12089,"SourceStructureID":9693,"TargetStructureID":54727,"Label":"9693-54727 via Ribbon Synapse from 15393 -> 54729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15393,"TargetID":54729,"Directional":true}]},{"ID":12090,"SourceStructureID":9693,"TargetStructureID":59560,"Label":"9693-59560 via Ribbon Synapse from 59559 -> 59561","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59559,"TargetID":59561,"Directional":true}]},{"ID":12091,"SourceStructureID":9693,"TargetStructureID":95701,"Label":"9693-95701 via Ribbon Synapse from 10437 -> 135152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10437,"TargetID":135152,"Directional":true}]},{"ID":12092,"SourceStructureID":9693,"TargetStructureID":134654,"Label":"9693-134654 via BC Conventional Synapse from 119733 -> 134655","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119733,"TargetID":134655,"Directional":true}]},{"ID":12093,"SourceStructureID":9693,"TargetStructureID":134657,"Label":"9693-134657 via BC Conventional Synapse from 119771 -> 134658","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119771,"TargetID":134658,"Directional":true}]},{"ID":12094,"SourceStructureID":9693,"TargetStructureID":134659,"Label":"9693-134659 via BC Conventional Synapse from 119782 -> 134660","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119782,"TargetID":134660,"Directional":true}]},{"ID":12095,"SourceStructureID":9693,"TargetStructureID":134662,"Label":"9693-134662 via BC Conventional Synapse from 119808 -> 134663","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119808,"TargetID":134663,"Directional":true}]},{"ID":12096,"SourceStructureID":9693,"TargetStructureID":134664,"Label":"9693-134664 via BC Conventional Synapse from 119813 -> 134665","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119813,"TargetID":134665,"Directional":true}]},{"ID":12097,"SourceStructureID":9693,"TargetStructureID":134667,"Label":"9693-134667 via BC Conventional Synapse from 119842 -> 134668","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119842,"TargetID":134668,"Directional":true}]},{"ID":12098,"SourceStructureID":9693,"TargetStructureID":134669,"Label":"9693-134669 via BC Conventional Synapse from 119849 -> 134670","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119849,"TargetID":134670,"Directional":true}]},{"ID":12099,"SourceStructureID":9693,"TargetStructureID":134671,"Label":"9693-134671 via BC Conventional Synapse from 119851 -> 134672","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119851,"TargetID":134672,"Directional":true}]},{"ID":12100,"SourceStructureID":9693,"TargetStructureID":134674,"Label":"9693-134674 via BC Conventional Synapse from 119855 -> 134676","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119855,"TargetID":134676,"Directional":true}]},{"ID":12101,"SourceStructureID":9693,"TargetStructureID":134677,"Label":"9693-134677 via BC Conventional Synapse from 119868 -> 134678","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119868,"TargetID":134678,"Directional":true}]},{"ID":12102,"SourceStructureID":9693,"TargetStructureID":134681,"Label":"9693-134681 via BC Conventional Synapse from 119875 -> 134682","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119875,"TargetID":134682,"Directional":true}]},{"ID":12103,"SourceStructureID":9693,"TargetStructureID":134691,"Label":"9693-134691 via BC Conventional Synapse from 120061 -> 134692","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120061,"TargetID":134692,"Directional":true}]},{"ID":12104,"SourceStructureID":9693,"TargetStructureID":134693,"Label":"9693-134693 via BC Conventional Synapse from 120069 -> 134695","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120069,"TargetID":134695,"Directional":true}]},{"ID":12105,"SourceStructureID":9693,"TargetStructureID":134698,"Label":"9693-134698 via BC Conventional Synapse from 120094 -> 134699","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120094,"TargetID":134699,"Directional":true}]},{"ID":12106,"SourceStructureID":9693,"TargetStructureID":134701,"Label":"9693-134701 via BC Conventional Synapse from 120098 -> 134702","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120098,"TargetID":134702,"Directional":true}]},{"ID":12107,"SourceStructureID":9693,"TargetStructureID":134703,"Label":"9693-134703 via BC Conventional Synapse from 120211 -> 134705","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120211,"TargetID":134705,"Directional":true}]},{"ID":12108,"SourceStructureID":9693,"TargetStructureID":134706,"Label":"9693-134706 via BC Conventional Synapse from 15014 -> 134707","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":15014,"TargetID":134707,"Directional":true}]},{"ID":12109,"SourceStructureID":9693,"TargetStructureID":134713,"Label":"9693-134713 via BC Conventional Synapse from 15073 -> 134714","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":15073,"TargetID":134714,"Directional":true}]},{"ID":12110,"SourceStructureID":9693,"TargetStructureID":134715,"Label":"9693-134715 via BC Conventional Synapse from 9754 -> 134716","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":9754,"TargetID":134716,"Directional":true}]},{"ID":12111,"SourceStructureID":9769,"TargetStructureID":606,"Label":"9769-606 via Conventional from 25889 -> 25890, 42521 -> 42520, 51208 -> 51207, 51257 -> 51258, 51275 -> 51274, 51592 -> 51591, 51866 -> 51865","Type":"Conventional","Directional":true,"Links":[{"SourceID":25889,"TargetID":25890,"Directional":true},{"SourceID":42521,"TargetID":42520,"Directional":true},{"SourceID":51208,"TargetID":51207,"Directional":true},{"SourceID":51257,"TargetID":51258,"Directional":true},{"SourceID":51275,"TargetID":51274,"Directional":true},{"SourceID":51592,"TargetID":51591,"Directional":true},{"SourceID":51866,"TargetID":51865,"Directional":true}]},{"ID":12112,"SourceStructureID":9769,"TargetStructureID":5107,"Label":"9769-5107 via Conventional from 29960 -> 53163","Type":"Conventional","Directional":true,"Links":[{"SourceID":29960,"TargetID":53163,"Directional":true}]},{"ID":12113,"SourceStructureID":9769,"TargetStructureID":5528,"Label":"9769-5528 via Conventional from 54899 -> 55030","Type":"Conventional","Directional":true,"Links":[{"SourceID":54899,"TargetID":55030,"Directional":true}]},{"ID":12114,"SourceStructureID":9769,"TargetStructureID":5643,"Label":"9769-5643 via Conventional from 30174 -> 52255, 38539 -> 38538","Type":"Conventional","Directional":true,"Links":[{"SourceID":30174,"TargetID":52255,"Directional":true},{"SourceID":38539,"TargetID":38538,"Directional":true}]},{"ID":12115,"SourceStructureID":9769,"TargetStructureID":5650,"Label":"9769-5650 via Conventional from 105189 -> 105192","Type":"Conventional","Directional":true,"Links":[{"SourceID":105189,"TargetID":105192,"Directional":true}]},{"ID":12116,"SourceStructureID":9769,"TargetStructureID":6203,"Label":"9769-6203 via Conventional from 52828 -> 52830","Type":"Conventional","Directional":true,"Links":[{"SourceID":52828,"TargetID":52830,"Directional":true}]},{"ID":12117,"SourceStructureID":9769,"TargetStructureID":6857,"Label":"9769-6857 via Conventional from 29846 -> 29847","Type":"Conventional","Directional":true,"Links":[{"SourceID":29846,"TargetID":29847,"Directional":true}]},{"ID":12118,"SourceStructureID":9769,"TargetStructureID":15796,"Label":"9769-15796 via Conventional from 11265 -> 15843, 12374 -> 38155, 52881 -> 52914","Type":"Conventional","Directional":true,"Links":[{"SourceID":11265,"TargetID":15843,"Directional":true},{"SourceID":12374,"TargetID":38155,"Directional":true},{"SourceID":52881,"TargetID":52914,"Directional":true}]},{"ID":12119,"SourceStructureID":9769,"TargetStructureID":24381,"Label":"9769-24381 via Conventional from 12402 -> 24383","Type":"Conventional","Directional":true,"Links":[{"SourceID":12402,"TargetID":24383,"Directional":true}]},{"ID":12120,"SourceStructureID":9769,"TargetStructureID":25865,"Label":"9769-25865 via Conventional from 29808 -> 32249","Type":"Conventional","Directional":true,"Links":[{"SourceID":29808,"TargetID":32249,"Directional":true}]},{"ID":12121,"SourceStructureID":9769,"TargetStructureID":29827,"Label":"9769-29827 via Conventional from 29826 -> 29838","Type":"Conventional","Directional":true,"Links":[{"SourceID":29826,"TargetID":29838,"Directional":true}]},{"ID":12122,"SourceStructureID":9769,"TargetStructureID":30130,"Label":"9769-30130 via Conventional from 30126 -> 30133, 30128 -> 52581","Type":"Conventional","Directional":true,"Links":[{"SourceID":30126,"TargetID":30133,"Directional":true},{"SourceID":30128,"TargetID":52581,"Directional":true}]},{"ID":12123,"SourceStructureID":9769,"TargetStructureID":32945,"Label":"9769-32945 via Conventional from 23936 -> 32948, 54451 -> 54452","Type":"Conventional","Directional":true,"Links":[{"SourceID":23936,"TargetID":32948,"Directional":true},{"SourceID":54451,"TargetID":54452,"Directional":true}]},{"ID":12124,"SourceStructureID":9769,"TargetStructureID":38357,"Label":"9769-38357 via Conventional from 12403 -> 38890","Type":"Conventional","Directional":true,"Links":[{"SourceID":12403,"TargetID":38890,"Directional":true}]},{"ID":12125,"SourceStructureID":9769,"TargetStructureID":38461,"Label":"9769-38461 via Conventional from 29965 -> 38471","Type":"Conventional","Directional":true,"Links":[{"SourceID":29965,"TargetID":38471,"Directional":true}]},{"ID":12126,"SourceStructureID":9769,"TargetStructureID":38502,"Label":"9769-38502 via Conventional from 38507 -> 38506","Type":"Conventional","Directional":true,"Links":[{"SourceID":38507,"TargetID":38506,"Directional":true}]},{"ID":12127,"SourceStructureID":9769,"TargetStructureID":38949,"Label":"9769-38949 via Conventional from 30114 -> 38996","Type":"Conventional","Directional":true,"Links":[{"SourceID":30114,"TargetID":38996,"Directional":true}]},{"ID":12128,"SourceStructureID":9769,"TargetStructureID":43716,"Label":"9769-43716 via Conventional from 23971 -> 54705","Type":"Conventional","Directional":true,"Links":[{"SourceID":23971,"TargetID":54705,"Directional":true}]},{"ID":12129,"SourceStructureID":9769,"TargetStructureID":46975,"Label":"9769-46975 via Conventional from 46978 -> 46977","Type":"Conventional","Directional":true,"Links":[{"SourceID":46978,"TargetID":46977,"Directional":true}]},{"ID":12130,"SourceStructureID":9769,"TargetStructureID":51812,"Label":"9769-51812 via Conventional from 29848 -> 51813","Type":"Conventional","Directional":true,"Links":[{"SourceID":29848,"TargetID":51813,"Directional":true}]},{"ID":12131,"SourceStructureID":9769,"TargetStructureID":52921,"Label":"9769-52921 via Conventional from 29964 -> 52925","Type":"Conventional","Directional":true,"Links":[{"SourceID":29964,"TargetID":52925,"Directional":true}]},{"ID":12132,"SourceStructureID":9769,"TargetStructureID":53000,"Label":"9769-53000 via Conventional from 29962 -> 53122","Type":"Conventional","Directional":true,"Links":[{"SourceID":29962,"TargetID":53122,"Directional":true}]},{"ID":12133,"SourceStructureID":9769,"TargetStructureID":53182,"Label":"9769-53182 via Conventional from 29935 -> 53183","Type":"Conventional","Directional":true,"Links":[{"SourceID":29935,"TargetID":53183,"Directional":true}]},{"ID":12134,"SourceStructureID":9769,"TargetStructureID":53202,"Label":"9769-53202 via Conventional from 53199 -> 53214","Type":"Conventional","Directional":true,"Links":[{"SourceID":53199,"TargetID":53214,"Directional":true}]},{"ID":12135,"SourceStructureID":9769,"TargetStructureID":53218,"Label":"9769-53218 via Conventional from 53217 -> 53219","Type":"Conventional","Directional":true,"Links":[{"SourceID":53217,"TargetID":53219,"Directional":true}]},{"ID":12136,"SourceStructureID":9769,"TargetStructureID":53221,"Label":"9769-53221 via Conventional from 20258 -> 53222","Type":"Conventional","Directional":true,"Links":[{"SourceID":20258,"TargetID":53222,"Directional":true}]},{"ID":12137,"SourceStructureID":9769,"TargetStructureID":53224,"Label":"9769-53224 via Conventional from 20257 -> 53225","Type":"Conventional","Directional":true,"Links":[{"SourceID":20257,"TargetID":53225,"Directional":true}]},{"ID":12138,"SourceStructureID":9769,"TargetStructureID":53229,"Label":"9769-53229 via Conventional from 20254 -> 53230","Type":"Conventional","Directional":true,"Links":[{"SourceID":20254,"TargetID":53230,"Directional":true}]},{"ID":12139,"SourceStructureID":9769,"TargetStructureID":53232,"Label":"9769-53232 via Conventional from 53231 -> 53234","Type":"Conventional","Directional":true,"Links":[{"SourceID":53231,"TargetID":53234,"Directional":true}]},{"ID":12140,"SourceStructureID":9769,"TargetStructureID":53245,"Label":"9769-53245 via Conventional from 20244 -> 53246","Type":"Conventional","Directional":true,"Links":[{"SourceID":20244,"TargetID":53246,"Directional":true}]},{"ID":12141,"SourceStructureID":9769,"TargetStructureID":53399,"Label":"9769-53399 via Conventional from 53398 -> 53401","Type":"Conventional","Directional":true,"Links":[{"SourceID":53398,"TargetID":53401,"Directional":true}]},{"ID":12142,"SourceStructureID":9769,"TargetStructureID":53407,"Label":"9769-53407 via Conventional from 20652 -> 53408","Type":"Conventional","Directional":true,"Links":[{"SourceID":20652,"TargetID":53408,"Directional":true}]},{"ID":12143,"SourceStructureID":9769,"TargetStructureID":53416,"Label":"9769-53416 via Conventional from 53415 -> 53417","Type":"Conventional","Directional":true,"Links":[{"SourceID":53415,"TargetID":53417,"Directional":true}]},{"ID":12144,"SourceStructureID":9769,"TargetStructureID":53436,"Label":"9769-53436 via Conventional from 30139 -> 53438","Type":"Conventional","Directional":true,"Links":[{"SourceID":30139,"TargetID":53438,"Directional":true}]},{"ID":12145,"SourceStructureID":9769,"TargetStructureID":53443,"Label":"9769-53443 via Conventional from 30152 -> 53444","Type":"Conventional","Directional":true,"Links":[{"SourceID":30152,"TargetID":53444,"Directional":true}]},{"ID":12146,"SourceStructureID":9769,"TargetStructureID":53991,"Label":"9769-53991 via Conventional from 30156 -> 53992","Type":"Conventional","Directional":true,"Links":[{"SourceID":30156,"TargetID":53992,"Directional":true}]},{"ID":12147,"SourceStructureID":9769,"TargetStructureID":54006,"Label":"9769-54006 via Conventional from 11264 -> 54007, 54013 -> 54014","Type":"Conventional","Directional":true,"Links":[{"SourceID":11264,"TargetID":54007,"Directional":true},{"SourceID":54013,"TargetID":54014,"Directional":true}]},{"ID":12148,"SourceStructureID":9769,"TargetStructureID":54078,"Label":"9769-54078 via Conventional from 54077 -> 54079","Type":"Conventional","Directional":true,"Links":[{"SourceID":54077,"TargetID":54079,"Directional":true}]},{"ID":12149,"SourceStructureID":9769,"TargetStructureID":54261,"Label":"9769-54261 via Conventional from 54254 -> 54263","Type":"Conventional","Directional":true,"Links":[{"SourceID":54254,"TargetID":54263,"Directional":true}]},{"ID":12150,"SourceStructureID":9769,"TargetStructureID":54287,"Label":"9769-54287 via Conventional from 23930 -> 54288","Type":"Conventional","Directional":true,"Links":[{"SourceID":23930,"TargetID":54288,"Directional":true}]},{"ID":12151,"SourceStructureID":9769,"TargetStructureID":54681,"Label":"9769-54681 via Conventional from 23956 -> 54684","Type":"Conventional","Directional":true,"Links":[{"SourceID":23956,"TargetID":54684,"Directional":true}]},{"ID":12152,"SourceStructureID":9769,"TargetStructureID":54695,"Label":"9769-54695 via Conventional from 23958 -> 54696","Type":"Conventional","Directional":true,"Links":[{"SourceID":23958,"TargetID":54696,"Directional":true}]},{"ID":12153,"SourceStructureID":9769,"TargetStructureID":54818,"Label":"9769-54818 via Conventional from 23975 -> 54819","Type":"Conventional","Directional":true,"Links":[{"SourceID":23975,"TargetID":54819,"Directional":true}]},{"ID":12154,"SourceStructureID":9769,"TargetStructureID":54862,"Label":"9769-54862 via Conventional from 24008 -> 54863","Type":"Conventional","Directional":true,"Links":[{"SourceID":24008,"TargetID":54863,"Directional":true}]},{"ID":12155,"SourceStructureID":9769,"TargetStructureID":54877,"Label":"9769-54877 via Conventional from 12565 -> 54878","Type":"Conventional","Directional":true,"Links":[{"SourceID":12565,"TargetID":54878,"Directional":true}]},{"ID":12156,"SourceStructureID":9769,"TargetStructureID":54908,"Label":"9769-54908 via Conventional from 29886 -> 54909","Type":"Conventional","Directional":true,"Links":[{"SourceID":29886,"TargetID":54909,"Directional":true}]},{"ID":12157,"SourceStructureID":9769,"TargetStructureID":54925,"Label":"9769-54925 via Conventional from 29855 -> 54936, 54924 -> 54926","Type":"Conventional","Directional":true,"Links":[{"SourceID":29855,"TargetID":54936,"Directional":true},{"SourceID":54924,"TargetID":54926,"Directional":true}]},{"ID":12158,"SourceStructureID":9769,"TargetStructureID":55103,"Label":"9769-55103 via Conventional from 12329 -> 55104","Type":"Conventional","Directional":true,"Links":[{"SourceID":12329,"TargetID":55104,"Directional":true}]},{"ID":12159,"SourceStructureID":9769,"TargetStructureID":55166,"Label":"9769-55166 via Conventional from 30076 -> 55167","Type":"Conventional","Directional":true,"Links":[{"SourceID":30076,"TargetID":55167,"Directional":true}]},{"ID":12160,"SourceStructureID":9769,"TargetStructureID":55201,"Label":"9769-55201 via Conventional from 55200 -> 55202","Type":"Conventional","Directional":true,"Links":[{"SourceID":55200,"TargetID":55202,"Directional":true}]},{"ID":12161,"SourceStructureID":9769,"TargetStructureID":55212,"Label":"9769-55212 via Conventional from 30096 -> 55214","Type":"Conventional","Directional":true,"Links":[{"SourceID":30096,"TargetID":55214,"Directional":true}]},{"ID":12162,"SourceStructureID":9769,"TargetStructureID":55215,"Label":"9769-55215 via Conventional from 30098 -> 55217","Type":"Conventional","Directional":true,"Links":[{"SourceID":30098,"TargetID":55217,"Directional":true}]},{"ID":12163,"SourceStructureID":9769,"TargetStructureID":55218,"Label":"9769-55218 via Conventional from 30108 -> 55219","Type":"Conventional","Directional":true,"Links":[{"SourceID":30108,"TargetID":55219,"Directional":true}]},{"ID":12164,"SourceStructureID":9769,"TargetStructureID":55304,"Label":"9769-55304 via Conventional from 12405 -> 55305","Type":"Conventional","Directional":true,"Links":[{"SourceID":12405,"TargetID":55305,"Directional":true}]},{"ID":12165,"SourceStructureID":9769,"TargetStructureID":55311,"Label":"9769-55311 via Conventional from 55310 -> 55312","Type":"Conventional","Directional":true,"Links":[{"SourceID":55310,"TargetID":55312,"Directional":true}]},{"ID":12166,"SourceStructureID":9769,"TargetStructureID":55319,"Label":"9769-55319 via Conventional from 55321 -> 55320","Type":"Conventional","Directional":true,"Links":[{"SourceID":55321,"TargetID":55320,"Directional":true}]},{"ID":12167,"SourceStructureID":9769,"TargetStructureID":74584,"Label":"9769-74584 via Conventional from 81827 -> 81828","Type":"Conventional","Directional":true,"Links":[{"SourceID":81827,"TargetID":81828,"Directional":true}]},{"ID":12168,"SourceStructureID":9810,"TargetStructureID":6134,"Label":"9810-6134 via Conventional from 9811 -> 9809","Type":"Conventional","Directional":true,"Links":[{"SourceID":9811,"TargetID":9809,"Directional":true}]},{"ID":12169,"SourceStructureID":10142,"TargetStructureID":7225,"Label":"10142-7225 via Ribbon Synapse from 31468 -> 31469, 63493 -> 63492","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31468,"TargetID":31469,"Directional":true},{"SourceID":63493,"TargetID":63492,"Directional":true}]},{"ID":12170,"SourceStructureID":10146,"TargetStructureID":7279,"Label":"10146-7279 via Ribbon Synapse from 60574 -> 60576, 60574 -> 87898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60574,"TargetID":60576,"Directional":true},{"SourceID":60574,"TargetID":87898,"Directional":true}]},{"ID":12171,"SourceStructureID":10335,"TargetStructureID":591,"Label":"10335-591 via Conventional from 10337 -> 10323","Type":"Conventional","Directional":true,"Links":[{"SourceID":10337,"TargetID":10323,"Directional":true}]},{"ID":12172,"SourceStructureID":10335,"TargetStructureID":3679,"Label":"10335-3679 via Conventional from 10338 -> 10328","Type":"Conventional","Directional":true,"Links":[{"SourceID":10338,"TargetID":10328,"Directional":true}]},{"ID":12173,"SourceStructureID":10371,"TargetStructureID":591,"Label":"10371-591 via Conventional from 10372 -> 10362","Type":"Conventional","Directional":true,"Links":[{"SourceID":10372,"TargetID":10362,"Directional":true}]},{"ID":12174,"SourceStructureID":10412,"TargetStructureID":591,"Label":"10412-591 via Ribbon Synapse from 10417 -> 10418, 10421 -> 10380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10417,"TargetID":10418,"Directional":true},{"SourceID":10421,"TargetID":10380,"Directional":true}]},{"ID":12175,"SourceStructureID":10412,"TargetStructureID":7114,"Label":"10412-7114 via Ribbon Synapse from 10429 -> 10433, 124457 -> 124458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10429,"TargetID":10433,"Directional":true},{"SourceID":124457,"TargetID":124458,"Directional":true}]},{"ID":12176,"SourceStructureID":10565,"TargetStructureID":176,"Label":"10565-176 via Conventional from 44198 -> 5886","Type":"Conventional","Directional":true,"Links":[{"SourceID":44198,"TargetID":5886,"Directional":true}]},{"ID":12177,"SourceStructureID":10565,"TargetStructureID":606,"Label":"10565-606 via Conventional from 45408 -> 10515, 45410 -> 53958, 45412 -> 10513","Type":"Conventional","Directional":true,"Links":[{"SourceID":45408,"TargetID":10515,"Directional":true},{"SourceID":45410,"TargetID":53958,"Directional":true},{"SourceID":45412,"TargetID":10513,"Directional":true}]},{"ID":12178,"SourceStructureID":10574,"TargetStructureID":165,"Label":"10574-165 via Conventional from 84552 -> 84553","Type":"Conventional","Directional":true,"Links":[{"SourceID":84552,"TargetID":84553,"Directional":true}]},{"ID":12179,"SourceStructureID":10574,"TargetStructureID":456,"Label":"10574-456 via Conventional from 84602 -> 84603","Type":"Conventional","Directional":true,"Links":[{"SourceID":84602,"TargetID":84603,"Directional":true}]},{"ID":12180,"SourceStructureID":10574,"TargetStructureID":460,"Label":"10574-460 via Conventional from 84557 -> 130170","Type":"Conventional","Directional":true,"Links":[{"SourceID":84557,"TargetID":130170,"Directional":true}]},{"ID":12181,"SourceStructureID":10574,"TargetStructureID":5530,"Label":"10574-5530 via Cistern Pre from 82546 -> 80493","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":82546,"TargetID":80493,"Directional":true}]},{"ID":12182,"SourceStructureID":10574,"TargetStructureID":26304,"Label":"10574-26304 via Conventional from 84599 -> 26311","Type":"Conventional","Directional":true,"Links":[{"SourceID":84599,"TargetID":26311,"Directional":true}]},{"ID":12183,"SourceStructureID":10574,"TargetStructureID":56600,"Label":"10574-56600 via Conventional from 84601 -> 56602","Type":"Conventional","Directional":true,"Links":[{"SourceID":84601,"TargetID":56602,"Directional":true}]},{"ID":12184,"SourceStructureID":10574,"TargetStructureID":64690,"Label":"10574-64690 via Conventional from 84550 -> 84551","Type":"Conventional","Directional":true,"Links":[{"SourceID":84550,"TargetID":84551,"Directional":true}]},{"ID":12185,"SourceStructureID":10574,"TargetStructureID":88266,"Label":"10574-88266 via Cistern Pre from 45013 -> 88268","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":45013,"TargetID":88268,"Directional":true}]},{"ID":12186,"SourceStructureID":10596,"TargetStructureID":7564,"Label":"10596-7564 via Ribbon Synapse from 82325 -> 82324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82325,"TargetID":82324,"Directional":true}]},{"ID":12187,"SourceStructureID":10596,"TargetStructureID":7861,"Label":"10596-7861 via Ribbon Synapse from 122418 -> 122417, 122427 -> 122426, 122429 -> 122428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122418,"TargetID":122417,"Directional":true},{"SourceID":122427,"TargetID":122426,"Directional":true},{"SourceID":122429,"TargetID":122428,"Directional":true}]},{"ID":12188,"SourceStructureID":10602,"TargetStructureID":5457,"Label":"10602-5457 via Ribbon Synapse from 103359 -> 103360","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103359,"TargetID":103360,"Directional":true}]},{"ID":12189,"SourceStructureID":10625,"TargetStructureID":514,"Label":"10625-514 via Ribbon Synapse from 16239 -> 16335, 16337 -> 16336, 16339 -> 16338, 16757 -> 16346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16239,"TargetID":16335,"Directional":true},{"SourceID":16337,"TargetID":16336,"Directional":true},{"SourceID":16339,"TargetID":16338,"Directional":true},{"SourceID":16757,"TargetID":16346,"Directional":true}]},{"ID":12190,"SourceStructureID":10625,"TargetStructureID":3257,"Label":"10625-3257 via Ribbon Synapse from 16211 -> 22973, 16354 -> 16355, 22915 -> 22914, 22917 -> 22916, 51375 -> 51378","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16211,"TargetID":22973,"Directional":true},{"SourceID":16354,"TargetID":16355,"Directional":true},{"SourceID":22915,"TargetID":22914,"Directional":true},{"SourceID":22917,"TargetID":22916,"Directional":true},{"SourceID":51375,"TargetID":51378,"Directional":true}]},{"ID":12191,"SourceStructureID":10625,"TargetStructureID":3679,"Label":"10625-3679 via Ribbon Synapse from 16235 -> 8026, 16236 -> 8022, 16754 -> 6192, 16756 -> 6193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16235,"TargetID":8026,"Directional":true},{"SourceID":16236,"TargetID":8022,"Directional":true},{"SourceID":16754,"TargetID":6192,"Directional":true},{"SourceID":16756,"TargetID":6193,"Directional":true}]},{"ID":12192,"SourceStructureID":10625,"TargetStructureID":5331,"Label":"10625-5331 via Ribbon Synapse from 16222 -> 39175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16222,"TargetID":39175,"Directional":true}]},{"ID":12193,"SourceStructureID":10625,"TargetStructureID":5860,"Label":"10625-5860 via Ribbon Synapse from 26915 -> 7653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26915,"TargetID":7653,"Directional":true}]},{"ID":12194,"SourceStructureID":10625,"TargetStructureID":6169,"Label":"10625-6169 via Ribbon Synapse from 16183 -> 16182, 16185 -> 16184, 16187 -> 16186, 16190 -> 16189, 16192 -> 16191, 16219 -> 16218, 16222 -> 16221, 16229 -> 16230, 16231 -> 16232, 16323 -> 16322, 16325 -> 16324, 26923 -> 29693","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16183,"TargetID":16182,"Directional":true},{"SourceID":16185,"TargetID":16184,"Directional":true},{"SourceID":16187,"TargetID":16186,"Directional":true},{"SourceID":16190,"TargetID":16189,"Directional":true},{"SourceID":16192,"TargetID":16191,"Directional":true},{"SourceID":16219,"TargetID":16218,"Directional":true},{"SourceID":16222,"TargetID":16221,"Directional":true},{"SourceID":16229,"TargetID":16230,"Directional":true},{"SourceID":16231,"TargetID":16232,"Directional":true},{"SourceID":16323,"TargetID":16322,"Directional":true},{"SourceID":16325,"TargetID":16324,"Directional":true},{"SourceID":26923,"TargetID":29693,"Directional":true}]},{"ID":12195,"SourceStructureID":10625,"TargetStructureID":9643,"Label":"10625-9643 via Ribbon Synapse from 16229 -> 9659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16229,"TargetID":9659,"Directional":true}]},{"ID":12196,"SourceStructureID":10625,"TargetStructureID":39528,"Label":"10625-39528 via Ribbon Synapse from 16192 -> 39773","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16192,"TargetID":39773,"Directional":true}]},{"ID":12197,"SourceStructureID":10625,"TargetStructureID":39530,"Label":"10625-39530 via Ribbon Synapse from 16183 -> 39540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16183,"TargetID":39540,"Directional":true}]},{"ID":12198,"SourceStructureID":10625,"TargetStructureID":39724,"Label":"10625-39724 via Ribbon Synapse from 16211 -> 39728, 19264 -> 39727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16211,"TargetID":39728,"Directional":true},{"SourceID":19264,"TargetID":39727,"Directional":true}]},{"ID":12199,"SourceStructureID":10625,"TargetStructureID":39737,"Label":"10625-39737 via Ribbon Synapse from 16239 -> 39744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16239,"TargetID":39744,"Directional":true}]},{"ID":12200,"SourceStructureID":10625,"TargetStructureID":39745,"Label":"10625-39745 via Ribbon Synapse from 16337 -> 39747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16337,"TargetID":39747,"Directional":true}]},{"ID":12201,"SourceStructureID":10625,"TargetStructureID":39748,"Label":"10625-39748 via Ribbon Synapse from 22915 -> 39749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22915,"TargetID":39749,"Directional":true}]},{"ID":12202,"SourceStructureID":10625,"TargetStructureID":39759,"Label":"10625-39759 via Ribbon Synapse from 22917 -> 39762","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22917,"TargetID":39762,"Directional":true}]},{"ID":12203,"SourceStructureID":10625,"TargetStructureID":39764,"Label":"10625-39764 via Ribbon Synapse from 16236 -> 39767, 16325 -> 39770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16236,"TargetID":39767,"Directional":true},{"SourceID":16325,"TargetID":39770,"Directional":true}]},{"ID":12204,"SourceStructureID":10625,"TargetStructureID":39784,"Label":"10625-39784 via Ribbon Synapse from 19263 -> 39786","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19263,"TargetID":39786,"Directional":true}]},{"ID":12205,"SourceStructureID":10625,"TargetStructureID":39787,"Label":"10625-39787 via Ribbon Synapse from 19262 -> 39789, 19262 -> 87732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19262,"TargetID":39789,"Directional":true},{"SourceID":19262,"TargetID":87732,"Directional":true}]},{"ID":12206,"SourceStructureID":10625,"TargetStructureID":39790,"Label":"10625-39790 via Ribbon Synapse from 19261 -> 39793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19261,"TargetID":39793,"Directional":true}]},{"ID":12207,"SourceStructureID":10625,"TargetStructureID":39794,"Label":"10625-39794 via Ribbon Synapse from 16323 -> 39795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16323,"TargetID":39795,"Directional":true}]},{"ID":12208,"SourceStructureID":10625,"TargetStructureID":39798,"Label":"10625-39798 via Ribbon Synapse from 16187 -> 39801","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16187,"TargetID":39801,"Directional":true}]},{"ID":12209,"SourceStructureID":10625,"TargetStructureID":39802,"Label":"10625-39802 via Ribbon Synapse from 16190 -> 39806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16190,"TargetID":39806,"Directional":true}]},{"ID":12210,"SourceStructureID":10625,"TargetStructureID":39807,"Label":"10625-39807 via Ribbon Synapse from 26913 -> 39810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26913,"TargetID":39810,"Directional":true}]},{"ID":12211,"SourceStructureID":10625,"TargetStructureID":39811,"Label":"10625-39811 via Ribbon Synapse from 16756 -> 39815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16756,"TargetID":39815,"Directional":true}]},{"ID":12212,"SourceStructureID":10625,"TargetStructureID":39816,"Label":"10625-39816 via Ribbon Synapse from 16755 -> 39819, 26912 -> 39818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16755,"TargetID":39819,"Directional":true},{"SourceID":26912,"TargetID":39818,"Directional":true}]},{"ID":12213,"SourceStructureID":10625,"TargetStructureID":39830,"Label":"10625-39830 via Ribbon Synapse from 26915 -> 39831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26915,"TargetID":39831,"Directional":true}]},{"ID":12214,"SourceStructureID":10625,"TargetStructureID":39835,"Label":"10625-39835 via Ribbon Synapse from 26916 -> 39837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26916,"TargetID":39837,"Directional":true}]},{"ID":12215,"SourceStructureID":10625,"TargetStructureID":39838,"Label":"10625-39838 via Ribbon Synapse from 51375 -> 51376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51375,"TargetID":51376,"Directional":true}]},{"ID":12216,"SourceStructureID":10625,"TargetStructureID":40863,"Label":"10625-40863 via Ribbon Synapse from 26906 -> 40874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26906,"TargetID":40874,"Directional":true}]},{"ID":12217,"SourceStructureID":10632,"TargetStructureID":8038,"Label":"10632-8038 via Ribbon Synapse from 68921 -> 68920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68921,"TargetID":68920,"Directional":true}]},{"ID":12218,"SourceStructureID":10720,"TargetStructureID":138,"Label":"10720-138 via Conventional from 27176 -> 136847","Type":"Conventional","Directional":true,"Links":[{"SourceID":27176,"TargetID":136847,"Directional":true}]},{"ID":12219,"SourceStructureID":10720,"TargetStructureID":173,"Label":"10720-173 via Conventional from 27177 -> 11930, 27180 -> 128179, 27180 -> 128181","Type":"Conventional","Directional":true,"Links":[{"SourceID":27177,"TargetID":11930,"Directional":true},{"SourceID":27180,"TargetID":128179,"Directional":true},{"SourceID":27180,"TargetID":128181,"Directional":true}]},{"ID":12220,"SourceStructureID":10720,"TargetStructureID":5150,"Label":"10720-5150 via Conventional from 27152 -> 10719","Type":"Conventional","Directional":true,"Links":[{"SourceID":27152,"TargetID":10719,"Directional":true}]},{"ID":12221,"SourceStructureID":10720,"TargetStructureID":5585,"Label":"10720-5585 via Conventional from 36817 -> 36816","Type":"Conventional","Directional":true,"Links":[{"SourceID":36817,"TargetID":36816,"Directional":true}]},{"ID":12222,"SourceStructureID":10720,"TargetStructureID":10720,"Label":"10720-10720 via Conventional from 27153 -> 27155","Type":"Conventional","Directional":true,"Links":[{"SourceID":27153,"TargetID":27155,"Directional":true}]},{"ID":12223,"SourceStructureID":10720,"TargetStructureID":147796,"Label":"10720-147796 via Conventional from 27158 -> 147803","Type":"Conventional","Directional":true,"Links":[{"SourceID":27158,"TargetID":147803,"Directional":true}]},{"ID":12224,"SourceStructureID":10815,"TargetStructureID":4943,"Label":"10815-4943 via Ribbon Synapse from 43373 -> 43372","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43373,"TargetID":43372,"Directional":true}]},{"ID":12225,"SourceStructureID":10815,"TargetStructureID":5609,"Label":"10815-5609 via Ribbon Synapse from 31380 -> 31381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31380,"TargetID":31381,"Directional":true}]},{"ID":12226,"SourceStructureID":10815,"TargetStructureID":7114,"Label":"10815-7114 via Ribbon Synapse from 31380 -> 31384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31380,"TargetID":31384,"Directional":true}]},{"ID":12227,"SourceStructureID":10826,"TargetStructureID":391,"Label":"10826-391 via Ribbon Synapse from 108557 -> 108559, 108571 -> 108574","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108557,"TargetID":108559,"Directional":true},{"SourceID":108571,"TargetID":108574,"Directional":true}]},{"ID":12228,"SourceStructureID":10826,"TargetStructureID":5345,"Label":"10826-5345 via Ribbon Synapse from 11387 -> 11382, 94781 -> 94780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11387,"TargetID":11382,"Directional":true},{"SourceID":94781,"TargetID":94780,"Directional":true}]},{"ID":12229,"SourceStructureID":10826,"TargetStructureID":8037,"Label":"10826-8037 via Ribbon Synapse from 11388 -> 11379, 11390 -> 11378","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11388,"TargetID":11379,"Directional":true},{"SourceID":11390,"TargetID":11378,"Directional":true}]},{"ID":12230,"SourceStructureID":10826,"TargetStructureID":32795,"Label":"10826-32795 via Ribbon Synapse from 32799 -> 32798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32799,"TargetID":32798,"Directional":true}]},{"ID":12231,"SourceStructureID":10826,"TargetStructureID":38231,"Label":"10826-38231 via Ribbon Synapse from 38234 -> 38235","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38234,"TargetID":38235,"Directional":true}]},{"ID":12232,"SourceStructureID":10826,"TargetStructureID":101402,"Label":"10826-101402 via Ribbon Synapse from 102083 -> 102082","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102083,"TargetID":102082,"Directional":true}]},{"ID":12233,"SourceStructureID":10840,"TargetStructureID":38401,"Label":"10840-38401 via Ribbon Synapse from 33271 -> 38403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33271,"TargetID":38403,"Directional":true}]},{"ID":12234,"SourceStructureID":10840,"TargetStructureID":38404,"Label":"10840-38404 via Ribbon Synapse from 33271 -> 38407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33271,"TargetID":38407,"Directional":true}]},{"ID":12235,"SourceStructureID":10872,"TargetStructureID":308,"Label":"10872-308 via Ribbon Synapse from 15042 -> 43776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15042,"TargetID":43776,"Directional":true}]},{"ID":12236,"SourceStructureID":10872,"TargetStructureID":514,"Label":"10872-514 via Ribbon Synapse from 10893 -> 2525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10893,"TargetID":2525,"Directional":true}]},{"ID":12237,"SourceStructureID":10872,"TargetStructureID":573,"Label":"10872-573 via Ribbon Synapse from 19220 -> 11430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19220,"TargetID":11430,"Directional":true}]},{"ID":12238,"SourceStructureID":10872,"TargetStructureID":2610,"Label":"10872-2610 via Ribbon Synapse from 15036 -> 19226, 15040 -> 2901, 15042 -> 17940, 15640 -> 2910, 15641 -> 17898, 15645 -> 2913, 15740 -> 15663, 17897 -> 15647, 17900 -> 17899","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15036,"TargetID":19226,"Directional":true},{"SourceID":15040,"TargetID":2901,"Directional":true},{"SourceID":15042,"TargetID":17940,"Directional":true},{"SourceID":15640,"TargetID":2910,"Directional":true},{"SourceID":15641,"TargetID":17898,"Directional":true},{"SourceID":15645,"TargetID":2913,"Directional":true},{"SourceID":15740,"TargetID":15663,"Directional":true},{"SourceID":17897,"TargetID":15647,"Directional":true},{"SourceID":17900,"TargetID":17899,"Directional":true}]},{"ID":12239,"SourceStructureID":10872,"TargetStructureID":5303,"Label":"10872-5303 via Ribbon Synapse from 15747 -> 30566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15747,"TargetID":30566,"Directional":true}]},{"ID":12240,"SourceStructureID":10872,"TargetStructureID":5345,"Label":"10872-5345 via Ribbon Synapse from 10879 -> 10881, 10882 -> 10883, 10889 -> 10890, 15021 -> 15020, 15742 -> 15674, 15744 -> 15737, 15747 -> 14592, 15751 -> 15753, 19233 -> 32860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10879,"TargetID":10881,"Directional":true},{"SourceID":10882,"TargetID":10883,"Directional":true},{"SourceID":10889,"TargetID":10890,"Directional":true},{"SourceID":15021,"TargetID":15020,"Directional":true},{"SourceID":15742,"TargetID":15674,"Directional":true},{"SourceID":15744,"TargetID":15737,"Directional":true},{"SourceID":15747,"TargetID":14592,"Directional":true},{"SourceID":15751,"TargetID":15753,"Directional":true},{"SourceID":19233,"TargetID":32860,"Directional":true}]},{"ID":12241,"SourceStructureID":10872,"TargetStructureID":8037,"Label":"10872-8037 via Ribbon Synapse from 10891 -> 10892, 11629 -> 11628, 19222 -> 19223, 19224 -> 19225, 19227 -> 19230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10891,"TargetID":10892,"Directional":true},{"SourceID":11629,"TargetID":11628,"Directional":true},{"SourceID":19222,"TargetID":19223,"Directional":true},{"SourceID":19224,"TargetID":19225,"Directional":true},{"SourceID":19227,"TargetID":19230,"Directional":true}]},{"ID":12242,"SourceStructureID":10897,"TargetStructureID":179,"Label":"10897-179 via Ribbon Synapse from 104875 -> 104874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104875,"TargetID":104874,"Directional":true}]},{"ID":12243,"SourceStructureID":10897,"TargetStructureID":391,"Label":"10897-391 via Ribbon Synapse from 13838 -> 108368, 13839 -> 108364, 13843 -> 108365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13838,"TargetID":108368,"Directional":true},{"SourceID":13839,"TargetID":108364,"Directional":true},{"SourceID":13843,"TargetID":108365,"Directional":true}]},{"ID":12244,"SourceStructureID":10897,"TargetStructureID":514,"Label":"10897-514 via Ribbon Synapse from 10898 -> 1528, 10899 -> 2596, 10900 -> 1534, 10922 -> 2582, 10923 -> 2584, 10924 -> 10925, 13843 -> 13842, 18949 -> 18950, 18958 -> 2580, 18959 -> 18960, 18965 -> 82028, 104875 -> 104873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10898,"TargetID":1528,"Directional":true},{"SourceID":10899,"TargetID":2596,"Directional":true},{"SourceID":10900,"TargetID":1534,"Directional":true},{"SourceID":10922,"TargetID":2582,"Directional":true},{"SourceID":10923,"TargetID":2584,"Directional":true},{"SourceID":10924,"TargetID":10925,"Directional":true},{"SourceID":13843,"TargetID":13842,"Directional":true},{"SourceID":18949,"TargetID":18950,"Directional":true},{"SourceID":18958,"TargetID":2580,"Directional":true},{"SourceID":18959,"TargetID":18960,"Directional":true},{"SourceID":18965,"TargetID":82028,"Directional":true},{"SourceID":104875,"TargetID":104873,"Directional":true}]},{"ID":12245,"SourceStructureID":10897,"TargetStructureID":3679,"Label":"10897-3679 via Ribbon Synapse from 10927 -> 4701, 10927 -> 10928, 10929 -> 4702, 13839 -> 13840, 13841 -> 3812, 18946 -> 18947, 18954 -> 4702, 18955 -> 66142, 18961 -> 3808, 18962 -> 3856, 18968 -> 3822, 18969 -> 3823, 66139 -> 3815, 66140 -> 3819, 158724 -> 158725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10927,"TargetID":4701,"Directional":true},{"SourceID":10927,"TargetID":10928,"Directional":true},{"SourceID":10929,"TargetID":4702,"Directional":true},{"SourceID":13839,"TargetID":13840,"Directional":true},{"SourceID":13841,"TargetID":3812,"Directional":true},{"SourceID":18946,"TargetID":18947,"Directional":true},{"SourceID":18954,"TargetID":4702,"Directional":true},{"SourceID":18955,"TargetID":66142,"Directional":true},{"SourceID":18961,"TargetID":3808,"Directional":true},{"SourceID":18962,"TargetID":3856,"Directional":true},{"SourceID":18968,"TargetID":3822,"Directional":true},{"SourceID":18969,"TargetID":3823,"Directional":true},{"SourceID":66139,"TargetID":3815,"Directional":true},{"SourceID":66140,"TargetID":3819,"Directional":true},{"SourceID":158724,"TargetID":158725,"Directional":true}]},{"ID":12246,"SourceStructureID":10897,"TargetStructureID":5303,"Label":"10897-5303 via Ribbon Synapse from 18959 -> 35629, 18967 -> 102665","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18959,"TargetID":35629,"Directional":true},{"SourceID":18967,"TargetID":102665,"Directional":true}]},{"ID":12247,"SourceStructureID":10897,"TargetStructureID":8037,"Label":"10897-8037 via Ribbon Synapse from 18965 -> 18966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18965,"TargetID":18966,"Directional":true}]},{"ID":12248,"SourceStructureID":10897,"TargetStructureID":97683,"Label":"10897-97683 via Ribbon Synapse from 13835 -> 97703","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13835,"TargetID":97703,"Directional":true}]},{"ID":12249,"SourceStructureID":10897,"TargetStructureID":101553,"Label":"10897-101553 via Ribbon Synapse from 18958 -> 101569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18958,"TargetID":101569,"Directional":true}]},{"ID":12250,"SourceStructureID":10931,"TargetStructureID":179,"Label":"10931-179 via Ribbon Synapse from 19242 -> 87471, 19243 -> 87468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19242,"TargetID":87471,"Directional":true},{"SourceID":19243,"TargetID":87468,"Directional":true}]},{"ID":12251,"SourceStructureID":10931,"TargetStructureID":514,"Label":"10931-514 via Ribbon Synapse from 10940 -> 5223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10940,"TargetID":5223,"Directional":true}]},{"ID":12252,"SourceStructureID":10931,"TargetStructureID":3679,"Label":"10931-3679 via Ribbon Synapse from 10933 -> 7935, 10934 -> 7934, 10937 -> 7971, 10938 -> 10939, 13844 -> 13845, 14226 -> 14227, 18990 -> 29647, 19248 -> 22794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10933,"TargetID":7935,"Directional":true},{"SourceID":10934,"TargetID":7934,"Directional":true},{"SourceID":10937,"TargetID":7971,"Directional":true},{"SourceID":10938,"TargetID":10939,"Directional":true},{"SourceID":13844,"TargetID":13845,"Directional":true},{"SourceID":14226,"TargetID":14227,"Directional":true},{"SourceID":18990,"TargetID":29647,"Directional":true},{"SourceID":19248,"TargetID":22794,"Directional":true}]},{"ID":12253,"SourceStructureID":10931,"TargetStructureID":4850,"Label":"10931-4850 via Ribbon Synapse from 14219 -> 14218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14219,"TargetID":14218,"Directional":true}]},{"ID":12254,"SourceStructureID":10931,"TargetStructureID":5394,"Label":"10931-5394 via Ribbon Synapse from 18980 -> 77059, 18998 -> 77056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18980,"TargetID":77059,"Directional":true},{"SourceID":18998,"TargetID":77056,"Directional":true}]},{"ID":12255,"SourceStructureID":10931,"TargetStructureID":7147,"Label":"10931-7147 via Ribbon Synapse from 19241 -> 22902, 19244 -> 22901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19241,"TargetID":22902,"Directional":true},{"SourceID":19244,"TargetID":22901,"Directional":true}]},{"ID":12256,"SourceStructureID":10931,"TargetStructureID":12897,"Label":"10931-12897 via Ribbon Synapse from 18978 -> 24621, 18980 -> 24617, 18998 -> 24616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18978,"TargetID":24621,"Directional":true},{"SourceID":18980,"TargetID":24617,"Directional":true},{"SourceID":18998,"TargetID":24616,"Directional":true}]},{"ID":12257,"SourceStructureID":10931,"TargetStructureID":32871,"Label":"10931-32871 via Ribbon Synapse from 10933 -> 93906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10933,"TargetID":93906,"Directional":true}]},{"ID":12258,"SourceStructureID":10931,"TargetStructureID":76973,"Label":"10931-76973 via Ribbon Synapse from 13844 -> 77010, 14226 -> 76974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13844,"TargetID":77010,"Directional":true},{"SourceID":14226,"TargetID":76974,"Directional":true}]},{"ID":12259,"SourceStructureID":10931,"TargetStructureID":77019,"Label":"10931-77019 via Ribbon Synapse from 10940 -> 77020","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10940,"TargetID":77020,"Directional":true}]},{"ID":12260,"SourceStructureID":10943,"TargetStructureID":514,"Label":"10943-514 via Ribbon Synapse from 16274 -> 3097, 16276 -> 3110, 16279 -> 5224, 22579 -> 3100","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16274,"TargetID":3097,"Directional":true},{"SourceID":16276,"TargetID":3110,"Directional":true},{"SourceID":16279,"TargetID":5224,"Directional":true},{"SourceID":22579,"TargetID":3100,"Directional":true}]},{"ID":12261,"SourceStructureID":10943,"TargetStructureID":3679,"Label":"10943-3679 via Ribbon Synapse from 16256 -> 3774, 16260 -> 3775, 16265 -> 120444, 16271 -> 5191, 16272 -> 5195, 16273 -> 5211, 16277 -> 16278, 18847 -> 18846, 19012 -> 66145, 19023 -> 63366, 66143 -> 8003, 66144 -> 8004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16256,"TargetID":3774,"Directional":true},{"SourceID":16260,"TargetID":3775,"Directional":true},{"SourceID":16265,"TargetID":120444,"Directional":true},{"SourceID":16271,"TargetID":5191,"Directional":true},{"SourceID":16272,"TargetID":5195,"Directional":true},{"SourceID":16273,"TargetID":5211,"Directional":true},{"SourceID":16277,"TargetID":16278,"Directional":true},{"SourceID":18847,"TargetID":18846,"Directional":true},{"SourceID":19012,"TargetID":66145,"Directional":true},{"SourceID":19023,"TargetID":63366,"Directional":true},{"SourceID":66143,"TargetID":8003,"Directional":true},{"SourceID":66144,"TargetID":8004,"Directional":true}]},{"ID":12262,"SourceStructureID":10943,"TargetStructureID":5394,"Label":"10943-5394 via Ribbon Synapse from 16271 -> 87955, 22579 -> 22810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16271,"TargetID":87955,"Directional":true},{"SourceID":22579,"TargetID":22810,"Directional":true}]},{"ID":12263,"SourceStructureID":10943,"TargetStructureID":5402,"Label":"10943-5402 via Ribbon Synapse from 16254 -> 129552, 16256 -> 129550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16254,"TargetID":129552,"Directional":true},{"SourceID":16256,"TargetID":129550,"Directional":true}]},{"ID":12264,"SourceStructureID":10943,"TargetStructureID":8720,"Label":"10943-8720 via Ribbon Synapse from 19023 -> 63367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19023,"TargetID":63367,"Directional":true}]},{"ID":12265,"SourceStructureID":10943,"TargetStructureID":66815,"Label":"10943-66815 via Ribbon Synapse from 16266 -> 66816, 16268 -> 66819","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16266,"TargetID":66816,"Directional":true},{"SourceID":16268,"TargetID":66819,"Directional":true}]},{"ID":12266,"SourceStructureID":10945,"TargetStructureID":424,"Label":"10945-424 via Conventional from 10979 -> 19528, 19535 -> 19534","Type":"Conventional","Directional":true,"Links":[{"SourceID":10979,"TargetID":19528,"Directional":true},{"SourceID":19535,"TargetID":19534,"Directional":true}]},{"ID":12267,"SourceStructureID":10945,"TargetStructureID":478,"Label":"10945-478 via Conventional from 10948 -> 10949, 10974 -> 3024, 10977 -> 19389","Type":"Conventional","Directional":true,"Links":[{"SourceID":10948,"TargetID":10949,"Directional":true},{"SourceID":10974,"TargetID":3024,"Directional":true},{"SourceID":10977,"TargetID":19389,"Directional":true}]},{"ID":12268,"SourceStructureID":10945,"TargetStructureID":26304,"Label":"10945-26304 via Conventional from 10992 -> 26321","Type":"Conventional","Directional":true,"Links":[{"SourceID":10992,"TargetID":26321,"Directional":true}]},{"ID":12269,"SourceStructureID":10945,"TargetStructureID":31944,"Label":"10945-31944 via Conventional from 10988 -> 31952","Type":"Conventional","Directional":true,"Links":[{"SourceID":10988,"TargetID":31952,"Directional":true}]},{"ID":12270,"SourceStructureID":10950,"TargetStructureID":6857,"Label":"10950-6857 via Conventional from 19010 -> 7521, 19016 -> 7520","Type":"Conventional","Directional":true,"Links":[{"SourceID":19010,"TargetID":7521,"Directional":true},{"SourceID":19016,"TargetID":7520,"Directional":true}]},{"ID":12271,"SourceStructureID":10953,"TargetStructureID":179,"Label":"10953-179 via Ribbon Synapse from 87479 -> 87480, 87484 -> 87485","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87479,"TargetID":87480,"Directional":true},{"SourceID":87484,"TargetID":87485,"Directional":true}]},{"ID":12272,"SourceStructureID":10953,"TargetStructureID":5303,"Label":"10953-5303 via Ribbon Synapse from 33268 -> 24056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33268,"TargetID":24056,"Directional":true}]},{"ID":12273,"SourceStructureID":10953,"TargetStructureID":5860,"Label":"10953-5860 via Ribbon Synapse from 33672 -> 33673, 87479 -> 87481, 87484 -> 87486","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33672,"TargetID":33673,"Directional":true},{"SourceID":87479,"TargetID":87481,"Directional":true},{"SourceID":87484,"TargetID":87486,"Directional":true}]},{"ID":12274,"SourceStructureID":10954,"TargetStructureID":514,"Label":"10954-514 via Conventional from 10955 -> 1089","Type":"Conventional","Directional":true,"Links":[{"SourceID":10955,"TargetID":1089,"Directional":true}]},{"ID":12275,"SourceStructureID":10957,"TargetStructureID":4943,"Label":"10957-4943 via Ribbon Synapse from 83511 -> 83510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83511,"TargetID":83510,"Directional":true}]},{"ID":12276,"SourceStructureID":10957,"TargetStructureID":83514,"Label":"10957-83514 via Ribbon Synapse from 83511 -> 83515, 83516 -> 83517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83511,"TargetID":83515,"Directional":true},{"SourceID":83516,"TargetID":83517,"Directional":true}]},{"ID":12277,"SourceStructureID":10957,"TargetStructureID":98127,"Label":"10957-98127 via Ribbon Synapse from 33683 -> 98875","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33683,"TargetID":98875,"Directional":true}]},{"ID":12278,"SourceStructureID":10957,"TargetStructureID":105212,"Label":"10957-105212 via Ribbon Synapse from 105716 -> 105710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105716,"TargetID":105710,"Directional":true}]},{"ID":12279,"SourceStructureID":10959,"TargetStructureID":476,"Label":"10959-476 via Ribbon Synapse from 16555 -> 3210, 16557 -> 3208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16555,"TargetID":3210,"Directional":true},{"SourceID":16557,"TargetID":3208,"Directional":true}]},{"ID":12280,"SourceStructureID":10959,"TargetStructureID":3257,"Label":"10959-3257 via Ribbon Synapse from 16369 -> 16370, 16378 -> 16379, 16381 -> 16382, 16383 -> 16384, 16385 -> 16387, 16388 -> 18381, 16389 -> 16390, 16393 -> 16392, 16562 -> 16560, 16563 -> 16564, 16581 -> 16582, 16584 -> 16583, 16596 -> 16597, 18935 -> 10854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16369,"TargetID":16370,"Directional":true},{"SourceID":16378,"TargetID":16379,"Directional":true},{"SourceID":16381,"TargetID":16382,"Directional":true},{"SourceID":16383,"TargetID":16384,"Directional":true},{"SourceID":16385,"TargetID":16387,"Directional":true},{"SourceID":16388,"TargetID":18381,"Directional":true},{"SourceID":16389,"TargetID":16390,"Directional":true},{"SourceID":16393,"TargetID":16392,"Directional":true},{"SourceID":16562,"TargetID":16560,"Directional":true},{"SourceID":16563,"TargetID":16564,"Directional":true},{"SourceID":16581,"TargetID":16582,"Directional":true},{"SourceID":16584,"TargetID":16583,"Directional":true},{"SourceID":16596,"TargetID":16597,"Directional":true},{"SourceID":18935,"TargetID":10854,"Directional":true}]},{"ID":12281,"SourceStructureID":10959,"TargetStructureID":5394,"Label":"10959-5394 via Ribbon Synapse from 18927 -> 87750","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18927,"TargetID":87750,"Directional":true}]},{"ID":12282,"SourceStructureID":10959,"TargetStructureID":86747,"Label":"10959-86747 via Ribbon Synapse from 16369 -> 86750","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16369,"TargetID":86750,"Directional":true}]},{"ID":12283,"SourceStructureID":10959,"TargetStructureID":86751,"Label":"10959-86751 via Ribbon Synapse from 16369 -> 86755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16369,"TargetID":86755,"Directional":true}]},{"ID":12284,"SourceStructureID":10959,"TargetStructureID":86775,"Label":"10959-86775 via Ribbon Synapse from 16380 -> 86778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16380,"TargetID":86778,"Directional":true}]},{"ID":12285,"SourceStructureID":10959,"TargetStructureID":86779,"Label":"10959-86779 via Ribbon Synapse from 16380 -> 86780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16380,"TargetID":86780,"Directional":true}]},{"ID":12286,"SourceStructureID":10959,"TargetStructureID":86783,"Label":"10959-86783 via Ribbon Synapse from 16563 -> 86787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16563,"TargetID":86787,"Directional":true}]},{"ID":12287,"SourceStructureID":10959,"TargetStructureID":86799,"Label":"10959-86799 via Ribbon Synapse from 16555 -> 86805","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16555,"TargetID":86805,"Directional":true}]},{"ID":12288,"SourceStructureID":10959,"TargetStructureID":86860,"Label":"10959-86860 via Ribbon Synapse from 19260 -> 86861","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19260,"TargetID":86861,"Directional":true}]},{"ID":12289,"SourceStructureID":10959,"TargetStructureID":86862,"Label":"10959-86862 via Ribbon Synapse from 16393 -> 86863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16393,"TargetID":86863,"Directional":true}]},{"ID":12290,"SourceStructureID":10959,"TargetStructureID":86864,"Label":"10959-86864 via Ribbon Synapse from 18936 -> 86866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18936,"TargetID":86866,"Directional":true}]},{"ID":12291,"SourceStructureID":10959,"TargetStructureID":86871,"Label":"10959-86871 via Ribbon Synapse from 18934 -> 86873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18934,"TargetID":86873,"Directional":true}]},{"ID":12292,"SourceStructureID":10959,"TargetStructureID":86876,"Label":"10959-86876 via Ribbon Synapse from 16383 -> 86877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16383,"TargetID":86877,"Directional":true}]},{"ID":12293,"SourceStructureID":10959,"TargetStructureID":86888,"Label":"10959-86888 via Ribbon Synapse from 16385 -> 86890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16385,"TargetID":86890,"Directional":true}]},{"ID":12294,"SourceStructureID":10959,"TargetStructureID":86913,"Label":"10959-86913 via Ribbon Synapse from 16581 -> 86914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16581,"TargetID":86914,"Directional":true}]},{"ID":12295,"SourceStructureID":10959,"TargetStructureID":86915,"Label":"10959-86915 via Ribbon Synapse from 16584 -> 86917, 16596 -> 86926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16584,"TargetID":86917,"Directional":true},{"SourceID":16596,"TargetID":86926,"Directional":true}]},{"ID":12296,"SourceStructureID":10960,"TargetStructureID":3257,"Label":"10960-3257 via Ribbon Synapse from 12469 -> 8226","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12469,"TargetID":8226,"Directional":true}]},{"ID":12297,"SourceStructureID":10960,"TargetStructureID":42432,"Label":"10960-42432 via Ribbon Synapse from 42434 -> 42433","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42434,"TargetID":42433,"Directional":true}]},{"ID":12298,"SourceStructureID":10960,"TargetStructureID":42450,"Label":"10960-42450 via Ribbon Synapse from 42452 -> 42451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42452,"TargetID":42451,"Directional":true}]},{"ID":12299,"SourceStructureID":10961,"TargetStructureID":5303,"Label":"10961-5303 via Ribbon Synapse from 33252 -> 24059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33252,"TargetID":24059,"Directional":true}]},{"ID":12300,"SourceStructureID":10963,"TargetStructureID":11238,"Label":"10963-11238 via Ribbon Synapse from 88572 -> 88569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88572,"TargetID":88569,"Directional":true}]},{"ID":12301,"SourceStructureID":10963,"TargetStructureID":136913,"Label":"10963-136913 via Ribbon Synapse from 136912 -> 136914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136912,"TargetID":136914,"Directional":true}]},{"ID":12302,"SourceStructureID":10963,"TargetStructureID":136917,"Label":"10963-136917 via Ribbon Synapse from 136920 -> 136921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136920,"TargetID":136921,"Directional":true}]},{"ID":12303,"SourceStructureID":10966,"TargetStructureID":514,"Label":"10966-514 via Conventional from 10967 -> 1091","Type":"Conventional","Directional":true,"Links":[{"SourceID":10967,"TargetID":1091,"Directional":true}]},{"ID":12304,"SourceStructureID":10970,"TargetStructureID":514,"Label":"10970-514 via Conventional from 10971 -> 1102, 10972 -> 1098","Type":"Conventional","Directional":true,"Links":[{"SourceID":10971,"TargetID":1102,"Directional":true},{"SourceID":10972,"TargetID":1098,"Directional":true}]},{"ID":12305,"SourceStructureID":11011,"TargetStructureID":514,"Label":"11011-514 via Conventional from 11012 -> 1103","Type":"Conventional","Directional":true,"Links":[{"SourceID":11012,"TargetID":1103,"Directional":true}]},{"ID":12306,"SourceStructureID":11015,"TargetStructureID":514,"Label":"11015-514 via Conventional from 11016 -> 1105","Type":"Conventional","Directional":true,"Links":[{"SourceID":11016,"TargetID":1105,"Directional":true}]},{"ID":12307,"SourceStructureID":11017,"TargetStructureID":8575,"Label":"11017-8575 via Conventional from 11008 -> 61570","Type":"Conventional","Directional":true,"Links":[{"SourceID":11008,"TargetID":61570,"Directional":true}]},{"ID":12308,"SourceStructureID":11020,"TargetStructureID":7861,"Label":"11020-7861 via Ribbon Synapse from 20012 -> 10558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20012,"TargetID":10558,"Directional":true}]},{"ID":12309,"SourceStructureID":11023,"TargetStructureID":2610,"Label":"11023-2610 via Conventional from 11027 -> 2614, 11028 -> 2621","Type":"Conventional","Directional":true,"Links":[{"SourceID":11027,"TargetID":2614,"Directional":true},{"SourceID":11028,"TargetID":2621,"Directional":true}]},{"ID":12310,"SourceStructureID":11024,"TargetStructureID":2610,"Label":"11024-2610 via Conventional from 11025 -> 2616","Type":"Conventional","Directional":true,"Links":[{"SourceID":11025,"TargetID":2616,"Directional":true}]},{"ID":12311,"SourceStructureID":11031,"TargetStructureID":3679,"Label":"11031-3679 via Ribbon Synapse from 25442 -> 7965, 25445 -> 7969, 25446 -> 7970, 25450 -> 25451, 66121 -> 66122, 66123 -> 7967, 66124 -> 66125","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25442,"TargetID":7965,"Directional":true},{"SourceID":25445,"TargetID":7969,"Directional":true},{"SourceID":25446,"TargetID":7970,"Directional":true},{"SourceID":25450,"TargetID":25451,"Directional":true},{"SourceID":66121,"TargetID":66122,"Directional":true},{"SourceID":66123,"TargetID":7967,"Directional":true},{"SourceID":66124,"TargetID":66125,"Directional":true}]},{"ID":12312,"SourceStructureID":11031,"TargetStructureID":4943,"Label":"11031-4943 via Ribbon Synapse from 40981 -> 40980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40981,"TargetID":40980,"Directional":true}]},{"ID":12313,"SourceStructureID":11031,"TargetStructureID":5394,"Label":"11031-5394 via Ribbon Synapse from 25442 -> 77061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25442,"TargetID":77061,"Directional":true}]},{"ID":12314,"SourceStructureID":11031,"TargetStructureID":6169,"Label":"11031-6169 via Ribbon Synapse from 29782 -> 29781, 60865 -> 14938","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29782,"TargetID":29781,"Directional":true},{"SourceID":60865,"TargetID":14938,"Directional":true}]},{"ID":12315,"SourceStructureID":11031,"TargetStructureID":60863,"Label":"11031-60863 via Ribbon Synapse from 60865 -> 60864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60865,"TargetID":60864,"Directional":true}]},{"ID":12316,"SourceStructureID":11033,"TargetStructureID":7113,"Label":"11033-7113 via Ribbon Synapse from 82687 -> 82688","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82687,"TargetID":82688,"Directional":true}]},{"ID":12317,"SourceStructureID":11033,"TargetStructureID":7147,"Label":"11033-7147 via Ribbon Synapse from 32966 -> 32965","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32966,"TargetID":32965,"Directional":true}]},{"ID":12318,"SourceStructureID":11033,"TargetStructureID":32959,"Label":"11033-32959 via Ribbon Synapse from 32963 -> 32962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32963,"TargetID":32962,"Directional":true}]},{"ID":12319,"SourceStructureID":11037,"TargetStructureID":7114,"Label":"11037-7114 via Ribbon Synapse from 33706 -> 33707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33706,"TargetID":33707,"Directional":true}]},{"ID":12320,"SourceStructureID":11042,"TargetStructureID":308,"Label":"11042-308 via Ribbon Synapse from 42697 -> 42698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42697,"TargetID":42698,"Directional":true}]},{"ID":12321,"SourceStructureID":11042,"TargetStructureID":7147,"Label":"11042-7147 via Ribbon Synapse from 91327 -> 91326, 92810 -> 22900","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91327,"TargetID":91326,"Directional":true},{"SourceID":92810,"TargetID":22900,"Directional":true}]},{"ID":12322,"SourceStructureID":11042,"TargetStructureID":12897,"Label":"11042-12897 via Ribbon Synapse from 92810 -> 92809, 108238 -> 108239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92810,"TargetID":92809,"Directional":true},{"SourceID":108238,"TargetID":108239,"Directional":true}]},{"ID":12323,"SourceStructureID":11042,"TargetStructureID":91207,"Label":"11042-91207 via Ribbon Synapse from 91540 -> 91539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91540,"TargetID":91539,"Directional":true}]},{"ID":12324,"SourceStructureID":11043,"TargetStructureID":3679,"Label":"11043-3679 via Ribbon Synapse from 66130 -> 66131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66130,"TargetID":66131,"Directional":true}]},{"ID":12325,"SourceStructureID":11043,"TargetStructureID":12897,"Label":"11043-12897 via Ribbon Synapse from 87573 -> 24842, 108258 -> 108256, 108263 -> 108251, 135377 -> 135379","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87573,"TargetID":24842,"Directional":true},{"SourceID":108258,"TargetID":108256,"Directional":true},{"SourceID":108263,"TargetID":108251,"Directional":true},{"SourceID":135377,"TargetID":135379,"Directional":true}]},{"ID":12326,"SourceStructureID":11043,"TargetStructureID":61466,"Label":"11043-61466 via Ribbon Synapse from 33710 -> 61468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33710,"TargetID":61468,"Directional":true}]},{"ID":12327,"SourceStructureID":11043,"TargetStructureID":87569,"Label":"11043-87569 via Ribbon Synapse from 87573 -> 87572","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87573,"TargetID":87572,"Directional":true}]},{"ID":12328,"SourceStructureID":11043,"TargetStructureID":92226,"Label":"11043-92226 via Ribbon Synapse from 92804 -> 92805","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92804,"TargetID":92805,"Directional":true}]},{"ID":12329,"SourceStructureID":11043,"TargetStructureID":135039,"Label":"11043-135039 via Ribbon Synapse from 135046 -> 135047","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135046,"TargetID":135047,"Directional":true}]},{"ID":12330,"SourceStructureID":11044,"TargetStructureID":5609,"Label":"11044-5609 via Ribbon Synapse from 33322 -> 25059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33322,"TargetID":25059,"Directional":true}]},{"ID":12331,"SourceStructureID":11044,"TargetStructureID":31024,"Label":"11044-31024 via Ribbon Synapse from 33321 -> 33320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33321,"TargetID":33320,"Directional":true}]},{"ID":12332,"SourceStructureID":11044,"TargetStructureID":32767,"Label":"11044-32767 via Ribbon Synapse from 32770 -> 32769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32770,"TargetID":32769,"Directional":true}]},{"ID":12333,"SourceStructureID":11049,"TargetStructureID":5303,"Label":"11049-5303 via Ribbon Synapse from 35605 -> 35604","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35605,"TargetID":35604,"Directional":true}]},{"ID":12334,"SourceStructureID":11063,"TargetStructureID":5394,"Label":"11063-5394 via Ribbon Synapse from 122905 -> 122906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122905,"TargetID":122906,"Directional":true}]},{"ID":12335,"SourceStructureID":11063,"TargetStructureID":7114,"Label":"11063-7114 via Ribbon Synapse from 116680 -> 116681, 122887 -> 122886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116680,"TargetID":116681,"Directional":true},{"SourceID":122887,"TargetID":122886,"Directional":true}]},{"ID":12336,"SourceStructureID":11066,"TargetStructureID":7215,"Label":"11066-7215 via Ribbon Synapse from 31563 -> 31548, 31564 -> 31548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31563,"TargetID":31548,"Directional":true},{"SourceID":31564,"TargetID":31548,"Directional":true}]},{"ID":12337,"SourceStructureID":11066,"TargetStructureID":7858,"Label":"11066-7858 via Ribbon Synapse from 31914 -> 31909","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31914,"TargetID":31909,"Directional":true}]},{"ID":12338,"SourceStructureID":11066,"TargetStructureID":16073,"Label":"11066-16073 via Ribbon Synapse from 34421 -> 24227","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34421,"TargetID":24227,"Directional":true}]},{"ID":12339,"SourceStructureID":11071,"TargetStructureID":4569,"Label":"11071-4569 via Conventional from 11078 -> 11068","Type":"Conventional","Directional":true,"Links":[{"SourceID":11078,"TargetID":11068,"Directional":true}]},{"ID":12340,"SourceStructureID":11073,"TargetStructureID":4569,"Label":"11073-4569 via Conventional from 11079 -> 11069","Type":"Conventional","Directional":true,"Links":[{"SourceID":11079,"TargetID":11069,"Directional":true}]},{"ID":12341,"SourceStructureID":11074,"TargetStructureID":170,"Label":"11074-170 via Conventional from 11082 -> 90372","Type":"Conventional","Directional":true,"Links":[{"SourceID":11082,"TargetID":90372,"Directional":true}]},{"ID":12342,"SourceStructureID":11074,"TargetStructureID":4569,"Label":"11074-4569 via Conventional from 11084 -> 47506","Type":"Conventional","Directional":true,"Links":[{"SourceID":11084,"TargetID":47506,"Directional":true}]},{"ID":12343,"SourceStructureID":11074,"TargetStructureID":11072,"Label":"11074-11072 via Conventional from 11077 -> 11076","Type":"Conventional","Directional":true,"Links":[{"SourceID":11077,"TargetID":11076,"Directional":true}]},{"ID":12344,"SourceStructureID":11085,"TargetStructureID":5303,"Label":"11085-5303 via Ribbon Synapse from 24030 -> 24011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24030,"TargetID":24011,"Directional":true}]},{"ID":12345,"SourceStructureID":11085,"TargetStructureID":5464,"Label":"11085-5464 via Ribbon Synapse from 24015 -> 57269, 116629 -> 116630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24015,"TargetID":57269,"Directional":true},{"SourceID":116629,"TargetID":116630,"Directional":true}]},{"ID":12346,"SourceStructureID":11092,"TargetStructureID":7693,"Label":"11092-7693 via Ribbon Synapse from 95082 -> 95083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95082,"TargetID":95083,"Directional":true}]},{"ID":12347,"SourceStructureID":11092,"TargetStructureID":7703,"Label":"11092-7703 via Ribbon Synapse from 128623 -> 17755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128623,"TargetID":17755,"Directional":true}]},{"ID":12348,"SourceStructureID":11092,"TargetStructureID":7859,"Label":"11092-7859 via Ribbon Synapse from 128615 -> 84694","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128615,"TargetID":84694,"Directional":true}]},{"ID":12349,"SourceStructureID":11092,"TargetStructureID":7861,"Label":"11092-7861 via Ribbon Synapse from 123430 -> 34543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123430,"TargetID":34543,"Directional":true}]},{"ID":12350,"SourceStructureID":11092,"TargetStructureID":13525,"Label":"11092-13525 via Ribbon Synapse from 107594 -> 95779, 109974 -> 109975, 123463 -> 85945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107594,"TargetID":95779,"Directional":true},{"SourceID":109974,"TargetID":109975,"Directional":true},{"SourceID":123463,"TargetID":85945,"Directional":true}]},{"ID":12351,"SourceStructureID":11092,"TargetStructureID":34336,"Label":"11092-34336 via Ribbon Synapse from 95050 -> 34346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95050,"TargetID":34346,"Directional":true}]},{"ID":12352,"SourceStructureID":11092,"TargetStructureID":34337,"Label":"11092-34337 via Ribbon Synapse from 95029 -> 95030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95029,"TargetID":95030,"Directional":true}]},{"ID":12353,"SourceStructureID":11092,"TargetStructureID":64777,"Label":"11092-64777 via Ribbon Synapse from 128623 -> 64837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128623,"TargetID":64837,"Directional":true}]},{"ID":12354,"SourceStructureID":11092,"TargetStructureID":122431,"Label":"11092-122431 via Ribbon Synapse from 128587 -> 129528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128587,"TargetID":129528,"Directional":true}]},{"ID":12355,"SourceStructureID":11092,"TargetStructureID":130408,"Label":"11092-130408 via Ribbon Synapse from 123463 -> 130409","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123463,"TargetID":130409,"Directional":true}]},{"ID":12356,"SourceStructureID":11172,"TargetStructureID":4850,"Label":"11172-4850 via Ribbon Synapse from 22551 -> 22552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22551,"TargetID":22552,"Directional":true}]},{"ID":12357,"SourceStructureID":11172,"TargetStructureID":5303,"Label":"11172-5303 via Ribbon Synapse from 15703 -> 35651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15703,"TargetID":35651,"Directional":true}]},{"ID":12358,"SourceStructureID":11172,"TargetStructureID":8037,"Label":"11172-8037 via Ribbon Synapse from 15724 -> 15723, 19238 -> 11372, 30557 -> 30556, 30563 -> 30562, 33001 -> 33002","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15724,"TargetID":15723,"Directional":true},{"SourceID":19238,"TargetID":11372,"Directional":true},{"SourceID":30557,"TargetID":30556,"Directional":true},{"SourceID":30563,"TargetID":30562,"Directional":true},{"SourceID":33001,"TargetID":33002,"Directional":true}]},{"ID":12359,"SourceStructureID":11172,"TargetStructureID":12897,"Label":"11172-12897 via Ribbon Synapse from 15709 -> 24719, 22551 -> 66246, 24718 -> 24717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15709,"TargetID":24719,"Directional":true},{"SourceID":22551,"TargetID":66246,"Directional":true},{"SourceID":24718,"TargetID":24717,"Directional":true}]},{"ID":12360,"SourceStructureID":11229,"TargetStructureID":6133,"Label":"11229-6133 via Conventional from 28972 -> 37400, 135678 -> 135677","Type":"Conventional","Directional":true,"Links":[{"SourceID":28972,"TargetID":37400,"Directional":true},{"SourceID":135678,"TargetID":135677,"Directional":true}]},{"ID":12361,"SourceStructureID":11229,"TargetStructureID":6134,"Label":"11229-6134 via Conventional from 44860 -> 44859","Type":"Conventional","Directional":true,"Links":[{"SourceID":44860,"TargetID":44859,"Directional":true}]},{"ID":12362,"SourceStructureID":11229,"TargetStructureID":28950,"Label":"11229-28950 via Conventional from 28981 -> 28971","Type":"Conventional","Directional":true,"Links":[{"SourceID":28981,"TargetID":28971,"Directional":true}]},{"ID":12363,"SourceStructureID":11234,"TargetStructureID":7050,"Label":"11234-7050 via Ribbon Synapse from 43505 -> 24893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43505,"TargetID":24893,"Directional":true}]},{"ID":12364,"SourceStructureID":11238,"TargetStructureID":5543,"Label":"11238-5543 via Conventional from 136107 -> 136313","Type":"Conventional","Directional":true,"Links":[{"SourceID":136107,"TargetID":136313,"Directional":true}]},{"ID":12365,"SourceStructureID":11238,"TargetStructureID":6132,"Label":"11238-6132 via Conventional from 88390 -> 88507, 88488 -> 88506","Type":"Conventional","Directional":true,"Links":[{"SourceID":88390,"TargetID":88507,"Directional":true},{"SourceID":88488,"TargetID":88506,"Directional":true}]},{"ID":12366,"SourceStructureID":11238,"TargetStructureID":10963,"Label":"11238-10963 via Conventional from 88570 -> 88571","Type":"Conventional","Directional":true,"Links":[{"SourceID":88570,"TargetID":88571,"Directional":true}]},{"ID":12367,"SourceStructureID":11238,"TargetStructureID":136127,"Label":"11238-136127 via Conventional from 136131 -> 136130","Type":"Conventional","Directional":true,"Links":[{"SourceID":136131,"TargetID":136130,"Directional":true}]},{"ID":12368,"SourceStructureID":11238,"TargetStructureID":136351,"Label":"11238-136351 via Conventional from 136111 -> 136353","Type":"Conventional","Directional":true,"Links":[{"SourceID":136111,"TargetID":136353,"Directional":true}]},{"ID":12369,"SourceStructureID":11246,"TargetStructureID":8038,"Label":"11246-8038 via Ribbon Synapse from 68932 -> 68931, 68936 -> 68935, 68959 -> 68961, 68966 -> 68965","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68932,"TargetID":68931,"Directional":true},{"SourceID":68936,"TargetID":68935,"Directional":true},{"SourceID":68959,"TargetID":68961,"Directional":true},{"SourceID":68966,"TargetID":68965,"Directional":true}]},{"ID":12370,"SourceStructureID":11248,"TargetStructureID":5345,"Label":"11248-5345 via Ribbon Synapse from 88881 -> 88880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88881,"TargetID":88880,"Directional":true}]},{"ID":12371,"SourceStructureID":11248,"TargetStructureID":8037,"Label":"11248-8037 via Ribbon Synapse from 43572 -> 43571, 88903 -> 88901, 88904 -> 88902, 88907 -> 88908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43572,"TargetID":43571,"Directional":true},{"SourceID":88903,"TargetID":88901,"Directional":true},{"SourceID":88904,"TargetID":88902,"Directional":true},{"SourceID":88907,"TargetID":88908,"Directional":true}]},{"ID":12372,"SourceStructureID":11248,"TargetStructureID":88905,"Label":"11248-88905 via Ribbon Synapse from 88903 -> 88906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88903,"TargetID":88906,"Directional":true}]},{"ID":12373,"SourceStructureID":11248,"TargetStructureID":96788,"Label":"11248-96788 via Ribbon Synapse from 96857 -> 96858","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96857,"TargetID":96858,"Directional":true}]},{"ID":12374,"SourceStructureID":11248,"TargetStructureID":132773,"Label":"11248-132773 via Ribbon Synapse from 96857 -> 132776, 132775 -> 132774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96857,"TargetID":132776,"Directional":true},{"SourceID":132775,"TargetID":132774,"Directional":true}]},{"ID":12375,"SourceStructureID":11250,"TargetStructureID":488,"Label":"11250-488 via Ribbon Synapse from 40943 -> 40942","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40943,"TargetID":40942,"Directional":true}]},{"ID":12376,"SourceStructureID":11250,"TargetStructureID":7147,"Label":"11250-7147 via Ribbon Synapse from 30300 -> 30309, 30314 -> 30315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30300,"TargetID":30309,"Directional":true},{"SourceID":30314,"TargetID":30315,"Directional":true}]},{"ID":12377,"SourceStructureID":11250,"TargetStructureID":12897,"Label":"11250-12897 via Ribbon Synapse from 30286 -> 30288, 30293 -> 24631, 129505 -> 129506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30286,"TargetID":30288,"Directional":true},{"SourceID":30293,"TargetID":24631,"Directional":true},{"SourceID":129505,"TargetID":129506,"Directional":true}]},{"ID":12378,"SourceStructureID":11321,"TargetStructureID":5464,"Label":"11321-5464 via Ribbon Synapse from 33011 -> 33010, 33012 -> 33013, 33777 -> 33778, 33779 -> 33780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33011,"TargetID":33010,"Directional":true},{"SourceID":33012,"TargetID":33013,"Directional":true},{"SourceID":33777,"TargetID":33778,"Directional":true},{"SourceID":33779,"TargetID":33780,"Directional":true}]},{"ID":12379,"SourceStructureID":11401,"TargetStructureID":304,"Label":"11401-304 via Ribbon Synapse from 17925 -> 17631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17925,"TargetID":17631,"Directional":true}]},{"ID":12380,"SourceStructureID":11401,"TargetStructureID":391,"Label":"11401-391 via Ribbon Synapse from 16833 -> 108171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16833,"TargetID":108171,"Directional":true}]},{"ID":12381,"SourceStructureID":11401,"TargetStructureID":514,"Label":"11401-514 via Ribbon Synapse from 19051 -> 19058","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19051,"TargetID":19058,"Directional":true}]},{"ID":12382,"SourceStructureID":11401,"TargetStructureID":573,"Label":"11401-573 via Ribbon Synapse from 11413 -> 11424, 11426 -> 11425","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11413,"TargetID":11424,"Directional":true},{"SourceID":11426,"TargetID":11425,"Directional":true}]},{"ID":12383,"SourceStructureID":11401,"TargetStructureID":2610,"Label":"11401-2610 via Ribbon Synapse from 11409 -> 11410, 11412 -> 11411, 16803 -> 2850, 16828 -> 2825, 16830 -> 2822, 17914 -> 3005, 17922 -> 17921, 17924 -> 17923, 17992 -> 17993, 19027 -> 19026, 19050 -> 19049, 19054 -> 19053","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11409,"TargetID":11410,"Directional":true},{"SourceID":11412,"TargetID":11411,"Directional":true},{"SourceID":16803,"TargetID":2850,"Directional":true},{"SourceID":16828,"TargetID":2825,"Directional":true},{"SourceID":16830,"TargetID":2822,"Directional":true},{"SourceID":17914,"TargetID":3005,"Directional":true},{"SourceID":17922,"TargetID":17921,"Directional":true},{"SourceID":17924,"TargetID":17923,"Directional":true},{"SourceID":17992,"TargetID":17993,"Directional":true},{"SourceID":19027,"TargetID":19026,"Directional":true},{"SourceID":19050,"TargetID":19049,"Directional":true},{"SourceID":19054,"TargetID":19053,"Directional":true}]},{"ID":12384,"SourceStructureID":11401,"TargetStructureID":5345,"Label":"11401-5345 via Ribbon Synapse from 16805 -> 16810, 16824 -> 16825, 33782 -> 33784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16805,"TargetID":16810,"Directional":true},{"SourceID":16824,"TargetID":16825,"Directional":true},{"SourceID":33782,"TargetID":33784,"Directional":true}]},{"ID":12385,"SourceStructureID":11401,"TargetStructureID":25342,"Label":"11401-25342 via Ribbon Synapse from 25346 -> 25345","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25346,"TargetID":25345,"Directional":true}]},{"ID":12386,"SourceStructureID":11401,"TargetStructureID":66184,"Label":"11401-66184 via Ribbon Synapse from 11409 -> 92040","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11409,"TargetID":92040,"Directional":true}]},{"ID":12387,"SourceStructureID":11408,"TargetStructureID":5909,"Label":"11408-5909 via Conventional from 93185 -> 93159, 93187 -> 93186","Type":"Conventional","Directional":true,"Links":[{"SourceID":93185,"TargetID":93159,"Directional":true},{"SourceID":93187,"TargetID":93186,"Directional":true}]},{"ID":12388,"SourceStructureID":11485,"TargetStructureID":514,"Label":"11485-514 via Conventional from 22604 -> 3240","Type":"Conventional","Directional":true,"Links":[{"SourceID":22604,"TargetID":3240,"Directional":true}]},{"ID":12389,"SourceStructureID":11485,"TargetStructureID":5575,"Label":"11485-5575 via Conventional from 23061 -> 23053","Type":"Conventional","Directional":true,"Links":[{"SourceID":23061,"TargetID":23053,"Directional":true}]},{"ID":12390,"SourceStructureID":11485,"TargetStructureID":24401,"Label":"11485-24401 via Conventional from 11487 -> 32267, 11488 -> 43627","Type":"Conventional","Directional":true,"Links":[{"SourceID":11487,"TargetID":32267,"Directional":true},{"SourceID":11488,"TargetID":43627,"Directional":true}]},{"ID":12391,"SourceStructureID":11531,"TargetStructureID":390,"Label":"11531-390 via Conventional from 11534 -> 65115","Type":"Conventional","Directional":true,"Links":[{"SourceID":11534,"TargetID":65115,"Directional":true}]},{"ID":12392,"SourceStructureID":11531,"TargetStructureID":5562,"Label":"11531-5562 via Conventional from 78350 -> 63361","Type":"Conventional","Directional":true,"Links":[{"SourceID":78350,"TargetID":63361,"Directional":true}]},{"ID":12393,"SourceStructureID":11531,"TargetStructureID":5623,"Label":"11531-5623 via Conventional from 63584 -> 63581","Type":"Conventional","Directional":true,"Links":[{"SourceID":63584,"TargetID":63581,"Directional":true}]},{"ID":12394,"SourceStructureID":11531,"TargetStructureID":6589,"Label":"11531-6589 via Conventional from 11533 -> 6593","Type":"Conventional","Directional":true,"Links":[{"SourceID":11533,"TargetID":6593,"Directional":true}]},{"ID":12395,"SourceStructureID":11645,"TargetStructureID":514,"Label":"11645-514 via Conventional from 15374 -> 1158","Type":"Conventional","Directional":true,"Links":[{"SourceID":15374,"TargetID":1158,"Directional":true}]},{"ID":12396,"SourceStructureID":11650,"TargetStructureID":179,"Label":"11650-179 via Conventional from 25745 -> 25744","Type":"Conventional","Directional":true,"Links":[{"SourceID":25745,"TargetID":25744,"Directional":true}]},{"ID":12397,"SourceStructureID":11651,"TargetStructureID":5281,"Label":"11651-5281 via Conventional from 43121 -> 43119","Type":"Conventional","Directional":true,"Links":[{"SourceID":43121,"TargetID":43119,"Directional":true}]},{"ID":12398,"SourceStructureID":11657,"TargetStructureID":40455,"Label":"11657-40455 via Conventional from 40460 -> 40459","Type":"Conventional","Directional":true,"Links":[{"SourceID":40460,"TargetID":40459,"Directional":true}]},{"ID":12399,"SourceStructureID":11683,"TargetStructureID":5281,"Label":"11683-5281 via Conventional from 43118 -> 36776, 43306 -> 43305","Type":"Conventional","Directional":true,"Links":[{"SourceID":43118,"TargetID":36776,"Directional":true},{"SourceID":43306,"TargetID":43305,"Directional":true}]},{"ID":12400,"SourceStructureID":11696,"TargetStructureID":142,"Label":"11696-142 via Conventional from 11698 -> 6657","Type":"Conventional","Directional":true,"Links":[{"SourceID":11698,"TargetID":6657,"Directional":true}]},{"ID":12401,"SourceStructureID":11696,"TargetStructureID":488,"Label":"11696-488 via Conventional from 11741 -> 71277","Type":"Conventional","Directional":true,"Links":[{"SourceID":11741,"TargetID":71277,"Directional":true}]},{"ID":12402,"SourceStructureID":11696,"TargetStructureID":159084,"Label":"11696-159084 via Conventional from 11740 -> 159085","Type":"Conventional","Directional":true,"Links":[{"SourceID":11740,"TargetID":159085,"Directional":true}]},{"ID":12403,"SourceStructureID":12072,"TargetStructureID":12208,"Label":"12072-12208 via Conventional from 27336 -> 22361","Type":"Conventional","Directional":true,"Links":[{"SourceID":27336,"TargetID":22361,"Directional":true}]},{"ID":12404,"SourceStructureID":12113,"TargetStructureID":173,"Label":"12113-173 via Ribbon Synapse from 12114 -> 12112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12114,"TargetID":12112,"Directional":true}]},{"ID":12405,"SourceStructureID":12192,"TargetStructureID":591,"Label":"12192-591 via Conventional from 46625 -> 10081","Type":"Conventional","Directional":true,"Links":[{"SourceID":46625,"TargetID":10081,"Directional":true}]},{"ID":12406,"SourceStructureID":12192,"TargetStructureID":93125,"Label":"12192-93125 via Conventional from 46616 -> 93134","Type":"Conventional","Directional":true,"Links":[{"SourceID":46616,"TargetID":93134,"Directional":true}]},{"ID":12407,"SourceStructureID":12298,"TargetStructureID":596,"Label":"12298-596 via Conventional from 84669 -> 68608","Type":"Conventional","Directional":true,"Links":[{"SourceID":84669,"TargetID":68608,"Directional":true}]},{"ID":12408,"SourceStructureID":12298,"TargetStructureID":84667,"Label":"12298-84667 via Conventional from 84666 -> 84668","Type":"Conventional","Directional":true,"Links":[{"SourceID":84666,"TargetID":84668,"Directional":true}]},{"ID":12409,"SourceStructureID":12461,"TargetStructureID":591,"Label":"12461-591 via Conventional from 46624 -> 10082","Type":"Conventional","Directional":true,"Links":[{"SourceID":46624,"TargetID":10082,"Directional":true}]},{"ID":12410,"SourceStructureID":12564,"TargetStructureID":450,"Label":"12564-450 via Conventional from 122559 -> 122558","Type":"Conventional","Directional":true,"Links":[{"SourceID":122559,"TargetID":122558,"Directional":true}]},{"ID":12411,"SourceStructureID":12696,"TargetStructureID":4850,"Label":"12696-4850 via Conventional from 33890 -> 33889","Type":"Conventional","Directional":true,"Links":[{"SourceID":33890,"TargetID":33889,"Directional":true}]},{"ID":12412,"SourceStructureID":12897,"TargetStructureID":161,"Label":"12897-161 via Conventional from 22864 -> 22865, 33770 -> 33769, 35584 -> 35585","Type":"Conventional","Directional":true,"Links":[{"SourceID":22864,"TargetID":22865,"Directional":true},{"SourceID":33770,"TargetID":33769,"Directional":true},{"SourceID":35584,"TargetID":35585,"Directional":true}]},{"ID":12413,"SourceStructureID":12897,"TargetStructureID":5150,"Label":"12897-5150 via Conventional from 131334 -> 5244","Type":"Conventional","Directional":true,"Links":[{"SourceID":131334,"TargetID":5244,"Directional":true}]},{"ID":12414,"SourceStructureID":12897,"TargetStructureID":5502,"Label":"12897-5502 via Conventional from 12907 -> 27233, 12908 -> 27235, 27231 -> 27232, 131333 -> 131341","Type":"Conventional","Directional":true,"Links":[{"SourceID":12907,"TargetID":27233,"Directional":true},{"SourceID":12908,"TargetID":27235,"Directional":true},{"SourceID":27231,"TargetID":27232,"Directional":true},{"SourceID":131333,"TargetID":131341,"Directional":true}]},{"ID":12415,"SourceStructureID":12897,"TargetStructureID":5511,"Label":"12897-5511 via Conventional from 65176 -> 65177","Type":"Conventional","Directional":true,"Links":[{"SourceID":65176,"TargetID":65177,"Directional":true}]},{"ID":12416,"SourceStructureID":13000,"TargetStructureID":11401,"Label":"13000-11401 via Conventional from 21921 -> 11402","Type":"Conventional","Directional":true,"Links":[{"SourceID":21921,"TargetID":11402,"Directional":true}]},{"ID":12417,"SourceStructureID":13015,"TargetStructureID":308,"Label":"13015-308 via Conventional from 86572 -> 86570","Type":"Conventional","Directional":true,"Links":[{"SourceID":86572,"TargetID":86570,"Directional":true}]},{"ID":12418,"SourceStructureID":13056,"TargetStructureID":475,"Label":"13056-475 via Conventional from 46081 -> 46082","Type":"Conventional","Directional":true,"Links":[{"SourceID":46081,"TargetID":46082,"Directional":true}]},{"ID":12419,"SourceStructureID":13130,"TargetStructureID":59737,"Label":"13130-59737 via Conventional from 59739 -> 59740","Type":"Conventional","Directional":true,"Links":[{"SourceID":59739,"TargetID":59740,"Directional":true}]},{"ID":12420,"SourceStructureID":13134,"TargetStructureID":488,"Label":"13134-488 via Conventional from 122103 -> 71301","Type":"Conventional","Directional":true,"Links":[{"SourceID":122103,"TargetID":71301,"Directional":true}]},{"ID":12421,"SourceStructureID":13134,"TargetStructureID":4850,"Label":"13134-4850 via Conventional from 19444 -> 19443","Type":"Conventional","Directional":true,"Links":[{"SourceID":19444,"TargetID":19443,"Directional":true}]},{"ID":12422,"SourceStructureID":13150,"TargetStructureID":5498,"Label":"13150-5498 via Conventional from 40405 -> 40404","Type":"Conventional","Directional":true,"Links":[{"SourceID":40405,"TargetID":40404,"Directional":true}]},{"ID":12423,"SourceStructureID":13159,"TargetStructureID":4850,"Label":"13159-4850 via Conventional from 20768 -> 14518","Type":"Conventional","Directional":true,"Links":[{"SourceID":20768,"TargetID":14518,"Directional":true}]},{"ID":12424,"SourceStructureID":13180,"TargetStructureID":6997,"Label":"13180-6997 via Conventional from 21895 -> 6998","Type":"Conventional","Directional":true,"Links":[{"SourceID":21895,"TargetID":6998,"Directional":true}]},{"ID":12425,"SourceStructureID":13215,"TargetStructureID":4569,"Label":"13215-4569 via Conventional from 15125 -> 4737","Type":"Conventional","Directional":true,"Links":[{"SourceID":15125,"TargetID":4737,"Directional":true}]},{"ID":12426,"SourceStructureID":13313,"TargetStructureID":518,"Label":"13313-518 via Conventional from 37186 -> 3454, 37189 -> 3482","Type":"Conventional","Directional":true,"Links":[{"SourceID":37186,"TargetID":3454,"Directional":true},{"SourceID":37189,"TargetID":3482,"Directional":true}]},{"ID":12427,"SourceStructureID":13444,"TargetStructureID":419,"Label":"13444-419 via Conventional from 13446 -> 10160","Type":"Conventional","Directional":true,"Links":[{"SourceID":13446,"TargetID":10160,"Directional":true}]},{"ID":12428,"SourceStructureID":13444,"TargetStructureID":476,"Label":"13444-476 via Conventional from 13447 -> 10458","Type":"Conventional","Directional":true,"Links":[{"SourceID":13447,"TargetID":10458,"Directional":true}]},{"ID":12429,"SourceStructureID":13444,"TargetStructureID":518,"Label":"13444-518 via Conventional from 13445 -> 3382","Type":"Conventional","Directional":true,"Links":[{"SourceID":13445,"TargetID":3382,"Directional":true}]},{"ID":12430,"SourceStructureID":13448,"TargetStructureID":4943,"Label":"13448-4943 via Conventional from 21344 -> 13441","Type":"Conventional","Directional":true,"Links":[{"SourceID":21344,"TargetID":13441,"Directional":true}]},{"ID":12431,"SourceStructureID":13469,"TargetStructureID":3679,"Label":"13469-3679 via Ribbon Synapse from 13472 -> 13468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13472,"TargetID":13468,"Directional":true}]},{"ID":12432,"SourceStructureID":13485,"TargetStructureID":469,"Label":"13485-469 via Conventional from 30509 -> 4651","Type":"Conventional","Directional":true,"Links":[{"SourceID":30509,"TargetID":4651,"Directional":true}]},{"ID":12433,"SourceStructureID":13499,"TargetStructureID":4567,"Label":"13499-4567 via Conventional from 40589 -> 21329","Type":"Conventional","Directional":true,"Links":[{"SourceID":40589,"TargetID":21329,"Directional":true}]},{"ID":12434,"SourceStructureID":13521,"TargetStructureID":4835,"Label":"13521-4835 via Ribbon Synapse from 13522 -> 13520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13522,"TargetID":13520,"Directional":true}]},{"ID":12435,"SourceStructureID":13624,"TargetStructureID":11229,"Label":"13624-11229 via Conventional from 15328 -> 15329, 15330 -> 15331, 15333 -> 15332","Type":"Conventional","Directional":true,"Links":[{"SourceID":15328,"TargetID":15329,"Directional":true},{"SourceID":15330,"TargetID":15331,"Directional":true},{"SourceID":15333,"TargetID":15332,"Directional":true}]},{"ID":12436,"SourceStructureID":14034,"TargetStructureID":13858,"Label":"14034-13858 via Ribbon Synapse from 14040 -> 14024, 18858 -> 14017","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14040,"TargetID":14024,"Directional":true},{"SourceID":18858,"TargetID":14017,"Directional":true}]},{"ID":12437,"SourceStructureID":14291,"TargetStructureID":4850,"Label":"14291-4850 via Conventional from 14299 -> 14290","Type":"Conventional","Directional":true,"Links":[{"SourceID":14299,"TargetID":14290,"Directional":true}]},{"ID":12438,"SourceStructureID":14293,"TargetStructureID":5497,"Label":"14293-5497 via Ribbon Synapse from 40210 -> 62550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40210,"TargetID":62550,"Directional":true}]},{"ID":12439,"SourceStructureID":14293,"TargetStructureID":8575,"Label":"14293-8575 via BC Conventional Synapse from 61554 -> 61553","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61554,"TargetID":61553,"Directional":true}]},{"ID":12440,"SourceStructureID":14293,"TargetStructureID":8575,"Label":"14293-8575 via Ribbon Synapse from 40215 -> 61553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40215,"TargetID":61553,"Directional":true}]},{"ID":12441,"SourceStructureID":14293,"TargetStructureID":14291,"Label":"14293-14291 via Ribbon Synapse from 14294 -> 14292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14294,"TargetID":14292,"Directional":true}]},{"ID":12442,"SourceStructureID":14293,"TargetStructureID":61500,"Label":"14293-61500 via Ribbon Synapse from 40218 -> 61506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40218,"TargetID":61506,"Directional":true}]},{"ID":12443,"SourceStructureID":14607,"TargetStructureID":5422,"Label":"14607-5422 via Conventional from 74114 -> 74113","Type":"Conventional","Directional":true,"Links":[{"SourceID":74114,"TargetID":74113,"Directional":true}]},{"ID":12444,"SourceStructureID":14615,"TargetStructureID":3679,"Label":"14615-3679 via Ribbon Synapse from 66126 -> 7989, 66127 -> 7988, 66128 -> 7996, 66129 -> 7999, 76225 -> 5207, 132305 -> 132306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66126,"TargetID":7989,"Directional":true},{"SourceID":66127,"TargetID":7988,"Directional":true},{"SourceID":66128,"TargetID":7996,"Directional":true},{"SourceID":66129,"TargetID":7999,"Directional":true},{"SourceID":76225,"TargetID":5207,"Directional":true},{"SourceID":132305,"TargetID":132306,"Directional":true}]},{"ID":12445,"SourceStructureID":14615,"TargetStructureID":5394,"Label":"14615-5394 via Ribbon Synapse from 76801 -> 76803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76801,"TargetID":76803,"Directional":true}]},{"ID":12446,"SourceStructureID":14615,"TargetStructureID":5402,"Label":"14615-5402 via Ribbon Synapse from 76594 -> 76599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76594,"TargetID":76599,"Directional":true}]},{"ID":12447,"SourceStructureID":14615,"TargetStructureID":12897,"Label":"14615-12897 via Ribbon Synapse from 76213 -> 24747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76213,"TargetID":24747,"Directional":true}]},{"ID":12448,"SourceStructureID":14615,"TargetStructureID":76206,"Label":"14615-76206 via Ribbon Synapse from 76205 -> 76209","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76205,"TargetID":76209,"Directional":true}]},{"ID":12449,"SourceStructureID":14615,"TargetStructureID":76207,"Label":"14615-76207 via Ribbon Synapse from 76205 -> 76208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76205,"TargetID":76208,"Directional":true}]},{"ID":12450,"SourceStructureID":14615,"TargetStructureID":76214,"Label":"14615-76214 via Ribbon Synapse from 76213 -> 76215, 76225 -> 76226","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76213,"TargetID":76215,"Directional":true},{"SourceID":76225,"TargetID":76226,"Directional":true}]},{"ID":12451,"SourceStructureID":14615,"TargetStructureID":76595,"Label":"14615-76595 via Ribbon Synapse from 76594 -> 76597","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76594,"TargetID":76597,"Directional":true}]},{"ID":12452,"SourceStructureID":14615,"TargetStructureID":76829,"Label":"14615-76829 via Ribbon Synapse from 76841 -> 76842","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76841,"TargetID":76842,"Directional":true}]},{"ID":12453,"SourceStructureID":14615,"TargetStructureID":76832,"Label":"14615-76832 via Ribbon Synapse from 76845 -> 76848","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76845,"TargetID":76848,"Directional":true}]},{"ID":12454,"SourceStructureID":14615,"TargetStructureID":76849,"Label":"14615-76849 via Ribbon Synapse from 76845 -> 76850","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76845,"TargetID":76850,"Directional":true}]},{"ID":12455,"SourceStructureID":14615,"TargetStructureID":76868,"Label":"14615-76868 via Ribbon Synapse from 25317 -> 76869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25317,"TargetID":76869,"Directional":true}]},{"ID":12456,"SourceStructureID":14615,"TargetStructureID":76901,"Label":"14615-76901 via Ribbon Synapse from 76223 -> 76902, 76224 -> 76903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76223,"TargetID":76902,"Directional":true},{"SourceID":76224,"TargetID":76903,"Directional":true}]},{"ID":12457,"SourceStructureID":14615,"TargetStructureID":87562,"Label":"14615-87562 via Ribbon Synapse from 87564 -> 87563","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87564,"TargetID":87563,"Directional":true}]},{"ID":12458,"SourceStructureID":14725,"TargetStructureID":171,"Label":"14725-171 via Conventional from 14726 -> 14734, 14728 -> 87728, 14729 -> 87729","Type":"Conventional","Directional":true,"Links":[{"SourceID":14726,"TargetID":14734,"Directional":true},{"SourceID":14728,"TargetID":87728,"Directional":true},{"SourceID":14729,"TargetID":87729,"Directional":true}]},{"ID":12459,"SourceStructureID":14894,"TargetStructureID":606,"Label":"14894-606 via Conventional from 14910 -> 52335","Type":"Conventional","Directional":true,"Links":[{"SourceID":14910,"TargetID":52335,"Directional":true}]},{"ID":12460,"SourceStructureID":15100,"TargetStructureID":304,"Label":"15100-304 via Ribbon Synapse from 17117 -> 17628, 17206 -> 17207, 17626 -> 17625, 17955 -> 17954, 18240 -> 18239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17117,"TargetID":17628,"Directional":true},{"SourceID":17206,"TargetID":17207,"Directional":true},{"SourceID":17626,"TargetID":17625,"Directional":true},{"SourceID":17955,"TargetID":17954,"Directional":true},{"SourceID":18240,"TargetID":18239,"Directional":true}]},{"ID":12461,"SourceStructureID":15100,"TargetStructureID":514,"Label":"15100-514 via Ribbon Synapse from 15101 -> 15099, 17214 -> 17215, 17219 -> 17220, 18287 -> 13786, 18289 -> 18288, 19059 -> 19063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15101,"TargetID":15099,"Directional":true},{"SourceID":17214,"TargetID":17215,"Directional":true},{"SourceID":17219,"TargetID":17220,"Directional":true},{"SourceID":18287,"TargetID":13786,"Directional":true},{"SourceID":18289,"TargetID":18288,"Directional":true},{"SourceID":19059,"TargetID":19063,"Directional":true}]},{"ID":12462,"SourceStructureID":15100,"TargetStructureID":2610,"Label":"15100-2610 via Ribbon Synapse from 16398 -> 16397, 17116 -> 18223, 17118 -> 18224, 17172 -> 17504, 17179 -> 17178, 17181 -> 17180, 17227 -> 17224, 17622 -> 2937, 17963 -> 17964, 17966 -> 17965, 17997 -> 15051, 18227 -> 18226, 18230 -> 18231, 18237 -> 18236, 33787 -> 9407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16398,"TargetID":16397,"Directional":true},{"SourceID":17116,"TargetID":18223,"Directional":true},{"SourceID":17118,"TargetID":18224,"Directional":true},{"SourceID":17172,"TargetID":17504,"Directional":true},{"SourceID":17179,"TargetID":17178,"Directional":true},{"SourceID":17181,"TargetID":17180,"Directional":true},{"SourceID":17227,"TargetID":17224,"Directional":true},{"SourceID":17622,"TargetID":2937,"Directional":true},{"SourceID":17963,"TargetID":17964,"Directional":true},{"SourceID":17966,"TargetID":17965,"Directional":true},{"SourceID":17997,"TargetID":15051,"Directional":true},{"SourceID":18227,"TargetID":18226,"Directional":true},{"SourceID":18230,"TargetID":18231,"Directional":true},{"SourceID":18237,"TargetID":18236,"Directional":true},{"SourceID":33787,"TargetID":9407,"Directional":true}]},{"ID":12463,"SourceStructureID":15100,"TargetStructureID":5303,"Label":"15100-5303 via Ribbon Synapse from 18289 -> 102936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18289,"TargetID":102936,"Directional":true}]},{"ID":12464,"SourceStructureID":15130,"TargetStructureID":168,"Label":"15130-168 via Conventional from 15134 -> 4124","Type":"Conventional","Directional":true,"Links":[{"SourceID":15134,"TargetID":4124,"Directional":true}]},{"ID":12465,"SourceStructureID":15377,"TargetStructureID":4850,"Label":"15377-4850 via Conventional from 15379 -> 15387","Type":"Conventional","Directional":true,"Links":[{"SourceID":15379,"TargetID":15387,"Directional":true}]},{"ID":12466,"SourceStructureID":15377,"TargetStructureID":10945,"Label":"15377-10945 via Conventional from 19275 -> 19276","Type":"Conventional","Directional":true,"Links":[{"SourceID":19275,"TargetID":19276,"Directional":true}]},{"ID":12467,"SourceStructureID":15475,"TargetStructureID":5281,"Label":"15475-5281 via Conventional from 43137 -> 43136","Type":"Conventional","Directional":true,"Links":[{"SourceID":43137,"TargetID":43136,"Directional":true}]},{"ID":12468,"SourceStructureID":15614,"TargetStructureID":4876,"Label":"15614-4876 via Conventional from 42512 -> 42511","Type":"Conventional","Directional":true,"Links":[{"SourceID":42512,"TargetID":42511,"Directional":true}]},{"ID":12469,"SourceStructureID":15653,"TargetStructureID":9260,"Label":"15653-9260 via Conventional from 129703 -> 129702","Type":"Conventional","Directional":true,"Links":[{"SourceID":129703,"TargetID":129702,"Directional":true}]},{"ID":12470,"SourceStructureID":15942,"TargetStructureID":304,"Label":"15942-304 via Ribbon Synapse from 17960 -> 17686, 19107 -> 17685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17960,"TargetID":17686,"Directional":true},{"SourceID":19107,"TargetID":17685,"Directional":true}]},{"ID":12471,"SourceStructureID":15942,"TargetStructureID":410,"Label":"15942-410 via Ribbon Synapse from 15116 -> 15114, 16505 -> 15939, 16513 -> 16511, 16801 -> 16800, 17265 -> 17266, 17498 -> 17497, 18525 -> 18526, 18527 -> 18528, 18531 -> 18530, 19121 -> 22672, 19121 -> 23117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15116,"TargetID":15114,"Directional":true},{"SourceID":16505,"TargetID":15939,"Directional":true},{"SourceID":16513,"TargetID":16511,"Directional":true},{"SourceID":16801,"TargetID":16800,"Directional":true},{"SourceID":17265,"TargetID":17266,"Directional":true},{"SourceID":17498,"TargetID":17497,"Directional":true},{"SourceID":18525,"TargetID":18526,"Directional":true},{"SourceID":18527,"TargetID":18528,"Directional":true},{"SourceID":18531,"TargetID":18530,"Directional":true},{"SourceID":19121,"TargetID":22672,"Directional":true},{"SourceID":19121,"TargetID":23117,"Directional":true}]},{"ID":12472,"SourceStructureID":15942,"TargetStructureID":476,"Label":"15942-476 via Ribbon Synapse from 16507 -> 16508, 16507 -> 16774, 17374 -> 17375, 17377 -> 17376, 17378 -> 16503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16507,"TargetID":16508,"Directional":true},{"SourceID":16507,"TargetID":16774,"Directional":true},{"SourceID":17374,"TargetID":17375,"Directional":true},{"SourceID":17377,"TargetID":17376,"Directional":true},{"SourceID":17378,"TargetID":16503,"Directional":true}]},{"ID":12473,"SourceStructureID":15942,"TargetStructureID":514,"Label":"15942-514 via Ribbon Synapse from 16401 -> 16400","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16401,"TargetID":16400,"Directional":true}]},{"ID":12474,"SourceStructureID":15942,"TargetStructureID":591,"Label":"15942-591 via Ribbon Synapse from 15962 -> 10290, 15963 -> 15964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15962,"TargetID":10290,"Directional":true},{"SourceID":15963,"TargetID":15964,"Directional":true}]},{"ID":12475,"SourceStructureID":15942,"TargetStructureID":2610,"Label":"15942-2610 via Ribbon Synapse from 15962 -> 15965, 15966 -> 15941, 16765 -> 16399, 16788 -> 16779, 17268 -> 17269, 17959 -> 2952, 18414 -> 2956, 66158 -> 66160","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15962,"TargetID":15965,"Directional":true},{"SourceID":15966,"TargetID":15941,"Directional":true},{"SourceID":16765,"TargetID":16399,"Directional":true},{"SourceID":16788,"TargetID":16779,"Directional":true},{"SourceID":17268,"TargetID":17269,"Directional":true},{"SourceID":17959,"TargetID":2952,"Directional":true},{"SourceID":18414,"TargetID":2956,"Directional":true},{"SourceID":66158,"TargetID":66160,"Directional":true}]},{"ID":12476,"SourceStructureID":15942,"TargetStructureID":8990,"Label":"15942-8990 via Ribbon Synapse from 18414 -> 95928, 19106 -> 95931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18414,"TargetID":95928,"Directional":true},{"SourceID":19106,"TargetID":95931,"Directional":true}]},{"ID":12477,"SourceStructureID":15976,"TargetStructureID":5442,"Label":"15976-5442 via Ribbon Synapse from 55131 -> 55130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55131,"TargetID":55130,"Directional":true}]},{"ID":12478,"SourceStructureID":15976,"TargetStructureID":57487,"Label":"15976-57487 via Ribbon Synapse from 57425 -> 57489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57425,"TargetID":57489,"Directional":true}]},{"ID":12479,"SourceStructureID":15976,"TargetStructureID":93168,"Label":"15976-93168 via BC Conventional Synapse from 93164 -> 93169","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93164,"TargetID":93169,"Directional":true}]},{"ID":12480,"SourceStructureID":15976,"TargetStructureID":93281,"Label":"15976-93281 via Ribbon Synapse from 57435 -> 93282","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57435,"TargetID":93282,"Directional":true}]},{"ID":12481,"SourceStructureID":15977,"TargetStructureID":4890,"Label":"15977-4890 via Ribbon Synapse from 33953 -> 7916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33953,"TargetID":7916,"Directional":true}]},{"ID":12482,"SourceStructureID":15977,"TargetStructureID":5442,"Label":"15977-5442 via Ribbon Synapse from 73553 -> 73555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73553,"TargetID":73555,"Directional":true}]},{"ID":12483,"SourceStructureID":15977,"TargetStructureID":8579,"Label":"15977-8579 via Ribbon Synapse from 62689 -> 62688, 62695 -> 62694, 62697 -> 62696, 62940 -> 62939, 62944 -> 62943","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62689,"TargetID":62688,"Directional":true},{"SourceID":62695,"TargetID":62694,"Directional":true},{"SourceID":62697,"TargetID":62696,"Directional":true},{"SourceID":62940,"TargetID":62939,"Directional":true},{"SourceID":62944,"TargetID":62943,"Directional":true}]},{"ID":12484,"SourceStructureID":15977,"TargetStructureID":8588,"Label":"15977-8588 via BC Conventional Synapse from 118439 -> 118438","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":118439,"TargetID":118438,"Directional":true}]},{"ID":12485,"SourceStructureID":15977,"TargetStructureID":29198,"Label":"15977-29198 via BC Conventional Synapse from 117188 -> 117187","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117188,"TargetID":117187,"Directional":true}]},{"ID":12486,"SourceStructureID":15977,"TargetStructureID":29198,"Label":"15977-29198 via Ribbon Synapse from 33946 -> 29230, 33973 -> 33974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33946,"TargetID":29230,"Directional":true},{"SourceID":33973,"TargetID":33974,"Directional":true}]},{"ID":12487,"SourceStructureID":15977,"TargetStructureID":35406,"Label":"15977-35406 via Ribbon Synapse from 38301 -> 38297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38301,"TargetID":38297,"Directional":true}]},{"ID":12488,"SourceStructureID":15977,"TargetStructureID":60590,"Label":"15977-60590 via Ribbon Synapse from 60592 -> 60591","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60592,"TargetID":60591,"Directional":true}]},{"ID":12489,"SourceStructureID":15977,"TargetStructureID":123573,"Label":"15977-123573 via Ribbon Synapse from 56333 -> 123585, 56339 -> 123588","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56333,"TargetID":123585,"Directional":true},{"SourceID":56339,"TargetID":123588,"Directional":true}]},{"ID":12490,"SourceStructureID":15979,"TargetStructureID":284,"Label":"15979-284 via Ribbon Synapse from 29490 -> 29489, 29492 -> 29491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29490,"TargetID":29489,"Directional":true},{"SourceID":29492,"TargetID":29491,"Directional":true}]},{"ID":12491,"SourceStructureID":15979,"TargetStructureID":591,"Label":"15979-591 via Ribbon Synapse from 33788 -> 36451, 36450 -> 36449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33788,"TargetID":36451,"Directional":true},{"SourceID":36450,"TargetID":36449,"Directional":true}]},{"ID":12492,"SourceStructureID":15979,"TargetStructureID":6153,"Label":"15979-6153 via Ribbon Synapse from 29475 -> 29474, 29476 -> 29477, 33788 -> 33789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29475,"TargetID":29474,"Directional":true},{"SourceID":29476,"TargetID":29477,"Directional":true},{"SourceID":33788,"TargetID":33789,"Directional":true}]},{"ID":12493,"SourceStructureID":16002,"TargetStructureID":170,"Label":"16002-170 via Conventional from 16009 -> 90435, 16011 -> 16012","Type":"Conventional","Directional":true,"Links":[{"SourceID":16009,"TargetID":90435,"Directional":true},{"SourceID":16011,"TargetID":16012,"Directional":true}]},{"ID":12494,"SourceStructureID":16002,"TargetStructureID":4569,"Label":"16002-4569 via Conventional from 16006 -> 16007, 66654 -> 30841","Type":"Conventional","Directional":true,"Links":[{"SourceID":16006,"TargetID":16007,"Directional":true},{"SourceID":66654,"TargetID":30841,"Directional":true}]},{"ID":12495,"SourceStructureID":16002,"TargetStructureID":21299,"Label":"16002-21299 via Conventional from 46340 -> 46339","Type":"Conventional","Directional":true,"Links":[{"SourceID":46340,"TargetID":46339,"Directional":true}]},{"ID":12496,"SourceStructureID":16002,"TargetStructureID":66656,"Label":"16002-66656 via Conventional from 66655 -> 66657","Type":"Conventional","Directional":true,"Links":[{"SourceID":66655,"TargetID":66657,"Directional":true}]},{"ID":12497,"SourceStructureID":16026,"TargetStructureID":5117,"Label":"16026-5117 via Ribbon Synapse from 24094 -> 65498, 24095 -> 65498, 25542 -> 66349, 25546 -> 66348, 25556 -> 65502, 68158 -> 68159, 91047 -> 134610","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24094,"TargetID":65498,"Directional":true},{"SourceID":24095,"TargetID":65498,"Directional":true},{"SourceID":25542,"TargetID":66349,"Directional":true},{"SourceID":25546,"TargetID":66348,"Directional":true},{"SourceID":25556,"TargetID":65502,"Directional":true},{"SourceID":68158,"TargetID":68159,"Directional":true},{"SourceID":91047,"TargetID":134610,"Directional":true}]},{"ID":12498,"SourceStructureID":16026,"TargetStructureID":5282,"Label":"16026-5282 via Ribbon Synapse from 22336 -> 87547, 134535 -> 87547","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22336,"TargetID":87547,"Directional":true},{"SourceID":134535,"TargetID":87547,"Directional":true}]},{"ID":12499,"SourceStructureID":16026,"TargetStructureID":5374,"Label":"16026-5374 via Ribbon Synapse from 25517 -> 69002","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25517,"TargetID":69002,"Directional":true}]},{"ID":12500,"SourceStructureID":16026,"TargetStructureID":5485,"Label":"16026-5485 via Ribbon Synapse from 25284 -> 134508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25284,"TargetID":134508,"Directional":true}]},{"ID":12501,"SourceStructureID":16026,"TargetStructureID":8033,"Label":"16026-8033 via Ribbon Synapse from 25290 -> 134483, 25291 -> 134483, 25673 -> 134747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25290,"TargetID":134483,"Directional":true},{"SourceID":25291,"TargetID":134483,"Directional":true},{"SourceID":25673,"TargetID":134747,"Directional":true}]},{"ID":12502,"SourceStructureID":16026,"TargetStructureID":8579,"Label":"16026-8579 via Ribbon Synapse from 24087 -> 134547, 25972 -> 62866, 91203 -> 19799, 124822 -> 134548, 134326 -> 19798, 134555 -> 62864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24087,"TargetID":134547,"Directional":true},{"SourceID":25972,"TargetID":62866,"Directional":true},{"SourceID":91203,"TargetID":19799,"Directional":true},{"SourceID":124822,"TargetID":134548,"Directional":true},{"SourceID":134326,"TargetID":19798,"Directional":true},{"SourceID":134555,"TargetID":62864,"Directional":true}]},{"ID":12503,"SourceStructureID":16026,"TargetStructureID":8720,"Label":"16026-8720 via Ribbon Synapse from 63148 -> 63146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63148,"TargetID":63146,"Directional":true}]},{"ID":12504,"SourceStructureID":16026,"TargetStructureID":12208,"Label":"16026-12208 via Ribbon Synapse from 38654 -> 22369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38654,"TargetID":22369,"Directional":true}]},{"ID":12505,"SourceStructureID":16026,"TargetStructureID":12897,"Label":"16026-12897 via Ribbon Synapse from 24596 -> 25703, 25486 -> 134388, 25487 -> 134388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24596,"TargetID":25703,"Directional":true},{"SourceID":25486,"TargetID":134388,"Directional":true},{"SourceID":25487,"TargetID":134388,"Directional":true}]},{"ID":12506,"SourceStructureID":16026,"TargetStructureID":20537,"Label":"16026-20537 via Ribbon Synapse from 22326 -> 24133, 25757 -> 24133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22326,"TargetID":24133,"Directional":true},{"SourceID":25757,"TargetID":24133,"Directional":true}]},{"ID":12507,"SourceStructureID":16026,"TargetStructureID":29277,"Label":"16026-29277 via Ribbon Synapse from 134594 -> 123165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134594,"TargetID":123165,"Directional":true}]},{"ID":12508,"SourceStructureID":16026,"TargetStructureID":31024,"Label":"16026-31024 via BC Conventional Synapse from 134607 -> 124827","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134607,"TargetID":124827,"Directional":true}]},{"ID":12509,"SourceStructureID":16026,"TargetStructureID":31024,"Label":"16026-31024 via Ribbon Synapse from 25558 -> 31025, 25714 -> 31031, 134590 -> 134589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25558,"TargetID":31025,"Directional":true},{"SourceID":25714,"TargetID":31031,"Directional":true},{"SourceID":134590,"TargetID":134589,"Directional":true}]},{"ID":12510,"SourceStructureID":16026,"TargetStructureID":31161,"Label":"16026-31161 via Ribbon Synapse from 67939 -> 134772, 67940 -> 134767","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67939,"TargetID":134772,"Directional":true},{"SourceID":67940,"TargetID":134767,"Directional":true}]},{"ID":12511,"SourceStructureID":16026,"TargetStructureID":40947,"Label":"16026-40947 via Ribbon Synapse from 25563 -> 40950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25563,"TargetID":40950,"Directional":true}]},{"ID":12512,"SourceStructureID":16026,"TargetStructureID":54078,"Label":"16026-54078 via BC Conventional Synapse from 124779 -> 54112","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124779,"TargetID":54112,"Directional":true}]},{"ID":12513,"SourceStructureID":16026,"TargetStructureID":54078,"Label":"16026-54078 via Ribbon Synapse from 25272 -> 134511, 67849 -> 67848, 134510 -> 134511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25272,"TargetID":134511,"Directional":true},{"SourceID":67849,"TargetID":67848,"Directional":true},{"SourceID":134510,"TargetID":134511,"Directional":true}]},{"ID":12514,"SourceStructureID":16026,"TargetStructureID":61836,"Label":"16026-61836 via Ribbon Synapse from 25656 -> 68115, 67939 -> 68114","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25656,"TargetID":68115,"Directional":true},{"SourceID":67939,"TargetID":68114,"Directional":true}]},{"ID":12515,"SourceStructureID":16026,"TargetStructureID":61864,"Label":"16026-61864 via Ribbon Synapse from 66050 -> 66068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66050,"TargetID":66068,"Directional":true}]},{"ID":12516,"SourceStructureID":16026,"TargetStructureID":61864,"Label":"16026-61864 via Unknown from 134704 -> 66486","Type":"Unknown","Directional":true,"Links":[{"SourceID":134704,"TargetID":66486,"Directional":true}]},{"ID":12517,"SourceStructureID":16026,"TargetStructureID":65324,"Label":"16026-65324 via Ribbon Synapse from 25595 -> 134830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25595,"TargetID":134830,"Directional":true}]},{"ID":12518,"SourceStructureID":16026,"TargetStructureID":65536,"Label":"16026-65536 via BC Conventional Synapse from 67086 -> 67085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67086,"TargetID":67085,"Directional":true}]},{"ID":12519,"SourceStructureID":16026,"TargetStructureID":65536,"Label":"16026-65536 via Ribbon Synapse from 24087 -> 67076, 134555 -> 134554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24087,"TargetID":67076,"Directional":true},{"SourceID":134555,"TargetID":134554,"Directional":true}]},{"ID":12520,"SourceStructureID":16026,"TargetStructureID":65538,"Label":"16026-65538 via Ribbon Synapse from 25733 -> 65544","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25733,"TargetID":65544,"Directional":true}]},{"ID":12521,"SourceStructureID":16026,"TargetStructureID":65864,"Label":"16026-65864 via BC Conventional Synapse from 65874 -> 65875","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65874,"TargetID":65875,"Directional":true}]},{"ID":12522,"SourceStructureID":16026,"TargetStructureID":65864,"Label":"16026-65864 via Ribbon Synapse from 25730 -> 65871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25730,"TargetID":65871,"Directional":true}]},{"ID":12523,"SourceStructureID":16026,"TargetStructureID":66031,"Label":"16026-66031 via Ribbon Synapse from 66050 -> 66049","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66050,"TargetID":66049,"Directional":true}]},{"ID":12524,"SourceStructureID":16026,"TargetStructureID":66073,"Label":"16026-66073 via Ribbon Synapse from 25667 -> 66083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25667,"TargetID":66083,"Directional":true}]},{"ID":12525,"SourceStructureID":16026,"TargetStructureID":66111,"Label":"16026-66111 via Ribbon Synapse from 25601 -> 134736, 25611 -> 134741, 25662 -> 68589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25601,"TargetID":134736,"Directional":true},{"SourceID":25611,"TargetID":134741,"Directional":true},{"SourceID":25662,"TargetID":68589,"Directional":true}]},{"ID":12526,"SourceStructureID":16026,"TargetStructureID":66114,"Label":"16026-66114 via Ribbon Synapse from 25605 -> 134800, 25606 -> 66118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25605,"TargetID":134800,"Directional":true},{"SourceID":25606,"TargetID":66118,"Directional":true}]},{"ID":12527,"SourceStructureID":16026,"TargetStructureID":66795,"Label":"16026-66795 via Ribbon Synapse from 91047 -> 134611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91047,"TargetID":134611,"Directional":true}]},{"ID":12528,"SourceStructureID":16026,"TargetStructureID":66828,"Label":"16026-66828 via Ribbon Synapse from 25599 -> 82736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25599,"TargetID":82736,"Directional":true}]},{"ID":12529,"SourceStructureID":16026,"TargetStructureID":66888,"Label":"16026-66888 via Ribbon Synapse from 25645 -> 66895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25645,"TargetID":66895,"Directional":true}]},{"ID":12530,"SourceStructureID":16026,"TargetStructureID":66966,"Label":"16026-66966 via BC Conventional Synapse from 134575 -> 134574","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134575,"TargetID":134574,"Directional":true}]},{"ID":12531,"SourceStructureID":16026,"TargetStructureID":67045,"Label":"16026-67045 via Ribbon Synapse from 25484 -> 134389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25484,"TargetID":134389,"Directional":true}]},{"ID":12532,"SourceStructureID":16026,"TargetStructureID":67354,"Label":"16026-67354 via Ribbon Synapse from 25608 -> 92793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25608,"TargetID":92793,"Directional":true}]},{"ID":12533,"SourceStructureID":16026,"TargetStructureID":67361,"Label":"16026-67361 via Ribbon Synapse from 25595 -> 134831, 25597 -> 130544, 25610 -> 130543, 125026 -> 134845, 125030 -> 134864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25595,"TargetID":134831,"Directional":true},{"SourceID":25597,"TargetID":130544,"Directional":true},{"SourceID":25610,"TargetID":130543,"Directional":true},{"SourceID":125026,"TargetID":134845,"Directional":true},{"SourceID":125030,"TargetID":134864,"Directional":true}]},{"ID":12534,"SourceStructureID":16026,"TargetStructureID":67595,"Label":"16026-67595 via Ribbon Synapse from 24593 -> 134740, 25496 -> 67648, 25672 -> 67630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24593,"TargetID":134740,"Directional":true},{"SourceID":25496,"TargetID":67648,"Directional":true},{"SourceID":25672,"TargetID":67630,"Directional":true}]},{"ID":12535,"SourceStructureID":16026,"TargetStructureID":67793,"Label":"16026-67793 via Ribbon Synapse from 67940 -> 134763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67940,"TargetID":134763,"Directional":true}]},{"ID":12536,"SourceStructureID":16026,"TargetStructureID":67818,"Label":"16026-67818 via BC Conventional Synapse from 124851 -> 124850","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124851,"TargetID":124850,"Directional":true}]},{"ID":12537,"SourceStructureID":16026,"TargetStructureID":67818,"Label":"16026-67818 via Ribbon Synapse from 67917 -> 67912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67917,"TargetID":67912,"Directional":true}]},{"ID":12538,"SourceStructureID":16026,"TargetStructureID":67851,"Label":"16026-67851 via Adherens from 67858 -> 67857","Type":"Adherens","Directional":true,"Links":[{"SourceID":67858,"TargetID":67857,"Directional":true}]},{"ID":12539,"SourceStructureID":16026,"TargetStructureID":67933,"Label":"16026-67933 via Ribbon Synapse from 67917 -> 67934, 67927 -> 134790, 67931 -> 67934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67917,"TargetID":67934,"Directional":true},{"SourceID":67927,"TargetID":134790,"Directional":true},{"SourceID":67931,"TargetID":67934,"Directional":true}]},{"ID":12540,"SourceStructureID":16026,"TargetStructureID":67941,"Label":"16026-67941 via Ribbon Synapse from 67940 -> 134769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67940,"TargetID":134769,"Directional":true}]},{"ID":12541,"SourceStructureID":16026,"TargetStructureID":68153,"Label":"16026-68153 via Ribbon Synapse from 25487 -> 134387, 25516 -> 68185, 68157 -> 68155","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25487,"TargetID":134387,"Directional":true},{"SourceID":25516,"TargetID":68185,"Directional":true},{"SourceID":68157,"TargetID":68155,"Directional":true}]},{"ID":12542,"SourceStructureID":16026,"TargetStructureID":68531,"Label":"16026-68531 via Ribbon Synapse from 25667 -> 134628","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25667,"TargetID":134628,"Directional":true}]},{"ID":12543,"SourceStructureID":16026,"TargetStructureID":68548,"Label":"16026-68548 via Ribbon Synapse from 25289 -> 73481, 25477 -> 73483, 67925 -> 75356, 67926 -> 75356","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25289,"TargetID":73481,"Directional":true},{"SourceID":25477,"TargetID":73483,"Directional":true},{"SourceID":67925,"TargetID":75356,"Directional":true},{"SourceID":67926,"TargetID":75356,"Directional":true}]},{"ID":12544,"SourceStructureID":16026,"TargetStructureID":80412,"Label":"16026-80412 via BC Conventional Synapse from 134870 -> 134869","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134870,"TargetID":134869,"Directional":true}]},{"ID":12545,"SourceStructureID":16026,"TargetStructureID":82305,"Label":"16026-82305 via Ribbon Synapse from 25548 -> 82333, 25662 -> 82327","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25548,"TargetID":82333,"Directional":true},{"SourceID":25662,"TargetID":82327,"Directional":true}]},{"ID":12546,"SourceStructureID":16026,"TargetStructureID":83603,"Label":"16026-83603 via Ribbon Synapse from 134616 -> 134617","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134616,"TargetID":134617,"Directional":true}]},{"ID":12547,"SourceStructureID":16026,"TargetStructureID":84260,"Label":"16026-84260 via Ribbon Synapse from 22332 -> 134533, 25269 -> 134533, 25618 -> 84261, 25619 -> 84261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22332,"TargetID":134533,"Directional":true},{"SourceID":25269,"TargetID":134533,"Directional":true},{"SourceID":25618,"TargetID":84261,"Directional":true},{"SourceID":25619,"TargetID":84261,"Directional":true}]},{"ID":12548,"SourceStructureID":16026,"TargetStructureID":84656,"Label":"16026-84656 via BC Conventional Synapse from 124783 -> 134507","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124783,"TargetID":134507,"Directional":true}]},{"ID":12549,"SourceStructureID":16026,"TargetStructureID":91036,"Label":"16026-91036 via Ribbon Synapse from 25556 -> 91038, 25558 -> 91037","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25556,"TargetID":91038,"Directional":true},{"SourceID":25558,"TargetID":91037,"Directional":true}]},{"ID":12550,"SourceStructureID":16026,"TargetStructureID":91056,"Label":"16026-91056 via Ribbon Synapse from 91055 -> 91057","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91055,"TargetID":91057,"Directional":true}]},{"ID":12551,"SourceStructureID":16026,"TargetStructureID":91060,"Label":"16026-91060 via Ribbon Synapse from 91062 -> 91063, 134616 -> 91063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91062,"TargetID":91063,"Directional":true},{"SourceID":134616,"TargetID":91063,"Directional":true}]},{"ID":12552,"SourceStructureID":16026,"TargetStructureID":91073,"Label":"16026-91073 via Ribbon Synapse from 91067 -> 91074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91067,"TargetID":91074,"Directional":true}]},{"ID":12553,"SourceStructureID":16026,"TargetStructureID":91080,"Label":"16026-91080 via Ribbon Synapse from 91069 -> 91081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91069,"TargetID":91081,"Directional":true}]},{"ID":12554,"SourceStructureID":16026,"TargetStructureID":91085,"Label":"16026-91085 via BC Conventional Synapse from 134622 -> 134621","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134622,"TargetID":134621,"Directional":true}]},{"ID":12555,"SourceStructureID":16026,"TargetStructureID":91090,"Label":"16026-91090 via Ribbon Synapse from 91088 -> 91091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91088,"TargetID":91091,"Directional":true}]},{"ID":12556,"SourceStructureID":16026,"TargetStructureID":91092,"Label":"16026-91092 via Ribbon Synapse from 91088 -> 91093","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91088,"TargetID":91093,"Directional":true}]},{"ID":12557,"SourceStructureID":16026,"TargetStructureID":91094,"Label":"16026-91094 via Ribbon Synapse from 91050 -> 91095","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91050,"TargetID":91095,"Directional":true}]},{"ID":12558,"SourceStructureID":16026,"TargetStructureID":91098,"Label":"16026-91098 via Ribbon Synapse from 25730 -> 134560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25730,"TargetID":134560,"Directional":true}]},{"ID":12559,"SourceStructureID":16026,"TargetStructureID":91111,"Label":"16026-91111 via Ribbon Synapse from 25972 -> 91112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25972,"TargetID":91112,"Directional":true}]},{"ID":12560,"SourceStructureID":16026,"TargetStructureID":91118,"Label":"16026-91118 via Ribbon Synapse from 91116 -> 91119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91116,"TargetID":91119,"Directional":true}]},{"ID":12561,"SourceStructureID":16026,"TargetStructureID":91145,"Label":"16026-91145 via Cistern Pre from 91144 -> 91146","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":91144,"TargetID":91146,"Directional":true}]},{"ID":12562,"SourceStructureID":16026,"TargetStructureID":91150,"Label":"16026-91150 via Ribbon Synapse from 91149 -> 91152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91149,"TargetID":91152,"Directional":true}]},{"ID":12563,"SourceStructureID":16026,"TargetStructureID":91167,"Label":"16026-91167 via Ribbon Synapse from 91166 -> 91168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91166,"TargetID":91168,"Directional":true}]},{"ID":12564,"SourceStructureID":16026,"TargetStructureID":91240,"Label":"16026-91240 via Ribbon Synapse from 114644 -> 114645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114644,"TargetID":114645,"Directional":true}]},{"ID":12565,"SourceStructureID":16026,"TargetStructureID":91533,"Label":"16026-91533 via Ribbon Synapse from 25611 -> 134742","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25611,"TargetID":134742,"Directional":true}]},{"ID":12566,"SourceStructureID":16026,"TargetStructureID":92092,"Label":"16026-92092 via BC Conventional Synapse from 92796 -> 92795","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92796,"TargetID":92795,"Directional":true}]},{"ID":12567,"SourceStructureID":16026,"TargetStructureID":92193,"Label":"16026-92193 via BC Conventional Synapse from 134495 -> 92800","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134495,"TargetID":92800,"Directional":true}]},{"ID":12568,"SourceStructureID":16026,"TargetStructureID":92223,"Label":"16026-92223 via BC Conventional Synapse from 134932 -> 134933","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134932,"TargetID":134933,"Directional":true}]},{"ID":12569,"SourceStructureID":16026,"TargetStructureID":92236,"Label":"16026-92236 via Ribbon Synapse from 92817 -> 92818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92817,"TargetID":92818,"Directional":true}]},{"ID":12570,"SourceStructureID":16026,"TargetStructureID":92361,"Label":"16026-92361 via Ribbon Synapse from 124810 -> 134354, 134376 -> 134377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124810,"TargetID":134354,"Directional":true},{"SourceID":134376,"TargetID":134377,"Directional":true}]},{"ID":12571,"SourceStructureID":16026,"TargetStructureID":92372,"Label":"16026-92372 via Ribbon Synapse from 25542 -> 134368","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25542,"TargetID":134368,"Directional":true}]},{"ID":12572,"SourceStructureID":16026,"TargetStructureID":92400,"Label":"16026-92400 via Ribbon Synapse from 134360 -> 134361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134360,"TargetID":134361,"Directional":true}]},{"ID":12573,"SourceStructureID":16026,"TargetStructureID":92403,"Label":"16026-92403 via Ribbon Synapse from 134537 -> 134536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134537,"TargetID":134536,"Directional":true}]},{"ID":12574,"SourceStructureID":16026,"TargetStructureID":92414,"Label":"16026-92414 via BC Conventional Synapse from 134581 -> 134582","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134581,"TargetID":134582,"Directional":true}]},{"ID":12575,"SourceStructureID":16026,"TargetStructureID":92602,"Label":"16026-92602 via Cistern Pre from 134880 -> 134881","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":134880,"TargetID":134881,"Directional":true}]},{"ID":12576,"SourceStructureID":16026,"TargetStructureID":92607,"Label":"16026-92607 via Ribbon Synapse from 134866 -> 134867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134866,"TargetID":134867,"Directional":true}]},{"ID":12577,"SourceStructureID":16026,"TargetStructureID":92865,"Label":"16026-92865 via Ribbon Synapse from 25643 -> 92869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25643,"TargetID":92869,"Directional":true}]},{"ID":12578,"SourceStructureID":16026,"TargetStructureID":92926,"Label":"16026-92926 via Ribbon Synapse from 82741 -> 134795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82741,"TargetID":134795,"Directional":true}]},{"ID":12579,"SourceStructureID":16026,"TargetStructureID":104497,"Label":"16026-104497 via Ribbon Synapse from 25770 -> 134395","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25770,"TargetID":134395,"Directional":true}]},{"ID":12580,"SourceStructureID":16026,"TargetStructureID":122829,"Label":"16026-122829 via Ribbon Synapse from 25504 -> 122877, 114646 -> 122873, 114647 -> 122872, 114669 -> 122874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25504,"TargetID":122877,"Directional":true},{"SourceID":114646,"TargetID":122873,"Directional":true},{"SourceID":114647,"TargetID":122872,"Directional":true},{"SourceID":114669,"TargetID":122874,"Directional":true}]},{"ID":12581,"SourceStructureID":16073,"TargetStructureID":289,"Label":"16073-289 via Conventional from 19931 -> 30003","Type":"Conventional","Directional":true,"Links":[{"SourceID":19931,"TargetID":30003,"Directional":true}]},{"ID":12582,"SourceStructureID":16073,"TargetStructureID":909,"Label":"16073-909 via Conventional from 32219 -> 32220","Type":"Conventional","Directional":true,"Links":[{"SourceID":32219,"TargetID":32220,"Directional":true}]},{"ID":12583,"SourceStructureID":16073,"TargetStructureID":1021,"Label":"16073-1021 via Conventional from 41264 -> 1617","Type":"Conventional","Directional":true,"Links":[{"SourceID":41264,"TargetID":1617,"Directional":true}]},{"ID":12584,"SourceStructureID":16073,"TargetStructureID":8575,"Label":"16073-8575 via Conventional from 32191 -> 21648","Type":"Conventional","Directional":true,"Links":[{"SourceID":32191,"TargetID":21648,"Directional":true}]},{"ID":12585,"SourceStructureID":16073,"TargetStructureID":15796,"Label":"16073-15796 via Conventional from 19853 -> 19835, 19873 -> 114286, 32218 -> 20120","Type":"Conventional","Directional":true,"Links":[{"SourceID":19853,"TargetID":19835,"Directional":true},{"SourceID":19873,"TargetID":114286,"Directional":true},{"SourceID":32218,"TargetID":20120,"Directional":true}]},{"ID":12586,"SourceStructureID":16073,"TargetStructureID":20136,"Label":"16073-20136 via Conventional from 108504 -> 108505","Type":"Conventional","Directional":true,"Links":[{"SourceID":108504,"TargetID":108505,"Directional":true}]},{"ID":12587,"SourceStructureID":16446,"TargetStructureID":410,"Label":"16446-410 via Ribbon Synapse from 16461 -> 8375, 16463 -> 8379, 18850 -> 18849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16461,"TargetID":8375,"Directional":true},{"SourceID":16463,"TargetID":8379,"Directional":true},{"SourceID":18850,"TargetID":18849,"Directional":true}]},{"ID":12588,"SourceStructureID":16446,"TargetStructureID":476,"Label":"16446-476 via Ribbon Synapse from 16461 -> 16478, 16464 -> 2390, 16466 -> 16467, 16472 -> 19064, 16477 -> 16476, 16484 -> 16482, 16485 -> 16486, 16492 -> 16493, 16496 -> 16495, 16499 -> 16498, 16625 -> 2352, 19071 -> 19073, 19082 -> 10441","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16461,"TargetID":16478,"Directional":true},{"SourceID":16464,"TargetID":2390,"Directional":true},{"SourceID":16466,"TargetID":16467,"Directional":true},{"SourceID":16472,"TargetID":19064,"Directional":true},{"SourceID":16477,"TargetID":16476,"Directional":true},{"SourceID":16484,"TargetID":16482,"Directional":true},{"SourceID":16485,"TargetID":16486,"Directional":true},{"SourceID":16492,"TargetID":16493,"Directional":true},{"SourceID":16496,"TargetID":16495,"Directional":true},{"SourceID":16499,"TargetID":16498,"Directional":true},{"SourceID":16625,"TargetID":2352,"Directional":true},{"SourceID":19071,"TargetID":19073,"Directional":true},{"SourceID":19082,"TargetID":10441,"Directional":true}]},{"ID":12589,"SourceStructureID":16446,"TargetStructureID":6153,"Label":"16446-6153 via Ribbon Synapse from 16623 -> 8417, 18851 -> 8412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16623,"TargetID":8417,"Directional":true},{"SourceID":18851,"TargetID":8412,"Directional":true}]},{"ID":12590,"SourceStructureID":16446,"TargetStructureID":34295,"Label":"16446-34295 via Ribbon Synapse from 16477 -> 34298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16477,"TargetID":34298,"Directional":true}]},{"ID":12591,"SourceStructureID":16940,"TargetStructureID":1620,"Label":"16940-1620 via Ribbon Synapse from 16951 -> 16935, 16952 -> 16934, 16953 -> 16931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16951,"TargetID":16935,"Directional":true},{"SourceID":16952,"TargetID":16934,"Directional":true},{"SourceID":16953,"TargetID":16931,"Directional":true}]},{"ID":12592,"SourceStructureID":16940,"TargetStructureID":5497,"Label":"16940-5497 via Ribbon Synapse from 16948 -> 62613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16948,"TargetID":62613,"Directional":true}]},{"ID":12593,"SourceStructureID":16940,"TargetStructureID":63628,"Label":"16940-63628 via Ribbon Synapse from 63693 -> 63634, 63698 -> 63696, 63703 -> 68718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63693,"TargetID":63634,"Directional":true},{"SourceID":63698,"TargetID":63696,"Directional":true},{"SourceID":63703,"TargetID":68718,"Directional":true}]},{"ID":12594,"SourceStructureID":17183,"TargetStructureID":304,"Label":"17183-304 via Ribbon Synapse from 17185 -> 17186, 17191 -> 17190, 17203 -> 17202, 17205 -> 17204, 17650 -> 17651, 17652 -> 17653, 17654 -> 17655, 18360 -> 18359, 18853 -> 17287, 127856 -> 127857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17185,"TargetID":17186,"Directional":true},{"SourceID":17191,"TargetID":17190,"Directional":true},{"SourceID":17203,"TargetID":17202,"Directional":true},{"SourceID":17205,"TargetID":17204,"Directional":true},{"SourceID":17650,"TargetID":17651,"Directional":true},{"SourceID":17652,"TargetID":17653,"Directional":true},{"SourceID":17654,"TargetID":17655,"Directional":true},{"SourceID":18360,"TargetID":18359,"Directional":true},{"SourceID":18853,"TargetID":17287,"Directional":true},{"SourceID":127856,"TargetID":127857,"Directional":true}]},{"ID":12595,"SourceStructureID":17183,"TargetStructureID":573,"Label":"17183-573 via Ribbon Synapse from 18356 -> 18355, 19089 -> 19090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18356,"TargetID":18355,"Directional":true},{"SourceID":19089,"TargetID":19090,"Directional":true}]},{"ID":12596,"SourceStructureID":17183,"TargetStructureID":2610,"Label":"17183-2610 via Ribbon Synapse from 17196 -> 2983, 17197 -> 2996, 18416 -> 18415, 19101 -> 19102, 19103 -> 19104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17196,"TargetID":2983,"Directional":true},{"SourceID":17197,"TargetID":2996,"Directional":true},{"SourceID":18416,"TargetID":18415,"Directional":true},{"SourceID":19101,"TargetID":19102,"Directional":true},{"SourceID":19103,"TargetID":19104,"Directional":true}]},{"ID":12597,"SourceStructureID":17228,"TargetStructureID":304,"Label":"17228-304 via Ribbon Synapse from 19185 -> 20757, 19186 -> 20755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19185,"TargetID":20757,"Directional":true},{"SourceID":19186,"TargetID":20755,"Directional":true}]},{"ID":12598,"SourceStructureID":17228,"TargetStructureID":308,"Label":"17228-308 via Ribbon Synapse from 19184 -> 43547, 19190 -> 43528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19184,"TargetID":43547,"Directional":true},{"SourceID":19190,"TargetID":43528,"Directional":true}]},{"ID":12599,"SourceStructureID":17228,"TargetStructureID":573,"Label":"17228-573 via Ribbon Synapse from 19184 -> 43542, 19192 -> 18352","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19184,"TargetID":43542,"Directional":true},{"SourceID":19192,"TargetID":18352,"Directional":true}]},{"ID":12600,"SourceStructureID":17228,"TargetStructureID":2610,"Label":"17228-2610 via Ribbon Synapse from 17916 -> 17917, 19169 -> 66183, 19174 -> 19175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17916,"TargetID":17917,"Directional":true},{"SourceID":19169,"TargetID":66183,"Directional":true},{"SourceID":19174,"TargetID":19175,"Directional":true}]},{"ID":12601,"SourceStructureID":17228,"TargetStructureID":61214,"Label":"17228-61214 via Ribbon Synapse from 17263 -> 61224, 19201 -> 61219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17263,"TargetID":61224,"Directional":true},{"SourceID":19201,"TargetID":61219,"Directional":true}]},{"ID":12602,"SourceStructureID":17533,"TargetStructureID":410,"Label":"17533-410 via Ribbon Synapse from 17538 -> 17539, 17540 -> 17541, 17543 -> 17542, 17545 -> 17544, 17547 -> 17548, 17552 -> 17551, 17798 -> 17795, 17799 -> 17794, 17805 -> 17804","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17538,"TargetID":17539,"Directional":true},{"SourceID":17540,"TargetID":17541,"Directional":true},{"SourceID":17543,"TargetID":17542,"Directional":true},{"SourceID":17545,"TargetID":17544,"Directional":true},{"SourceID":17547,"TargetID":17548,"Directional":true},{"SourceID":17552,"TargetID":17551,"Directional":true},{"SourceID":17798,"TargetID":17795,"Directional":true},{"SourceID":17799,"TargetID":17794,"Directional":true},{"SourceID":17805,"TargetID":17804,"Directional":true}]},{"ID":12603,"SourceStructureID":18150,"TargetStructureID":9787,"Label":"18150-9787 via Conventional from 18151 -> 18147","Type":"Conventional","Directional":true,"Links":[{"SourceID":18151,"TargetID":18147,"Directional":true}]},{"ID":12604,"SourceStructureID":18282,"TargetStructureID":166,"Label":"18282-166 via Conventional from 18320 -> 18321, 84792 -> 84787","Type":"Conventional","Directional":true,"Links":[{"SourceID":18320,"TargetID":18321,"Directional":true},{"SourceID":84792,"TargetID":84787,"Directional":true}]},{"ID":12605,"SourceStructureID":18282,"TargetStructureID":268,"Label":"18282-268 via Conventional from 38868 -> 43464, 38869 -> 43461","Type":"Conventional","Directional":true,"Links":[{"SourceID":38868,"TargetID":43464,"Directional":true},{"SourceID":38869,"TargetID":43461,"Directional":true}]},{"ID":12606,"SourceStructureID":18282,"TargetStructureID":286,"Label":"18282-286 via Conventional from 20500 -> 20501, 38852 -> 38859","Type":"Conventional","Directional":true,"Links":[{"SourceID":20500,"TargetID":20501,"Directional":true},{"SourceID":38852,"TargetID":38859,"Directional":true}]},{"ID":12607,"SourceStructureID":18282,"TargetStructureID":332,"Label":"18282-332 via Conventional from 38864 -> 25204","Type":"Conventional","Directional":true,"Links":[{"SourceID":38864,"TargetID":25204,"Directional":true}]},{"ID":12608,"SourceStructureID":18282,"TargetStructureID":461,"Label":"18282-461 via Conventional from 20399 -> 14666, 29232 -> 29236","Type":"Conventional","Directional":true,"Links":[{"SourceID":20399,"TargetID":14666,"Directional":true},{"SourceID":29232,"TargetID":29236,"Directional":true}]},{"ID":12609,"SourceStructureID":18282,"TargetStructureID":483,"Label":"18282-483 via Conventional from 20390 -> 51184, 29194 -> 6739, 71185 -> 71186","Type":"Conventional","Directional":true,"Links":[{"SourceID":20390,"TargetID":51184,"Directional":true},{"SourceID":29194,"TargetID":6739,"Directional":true},{"SourceID":71185,"TargetID":71186,"Directional":true}]},{"ID":12610,"SourceStructureID":18282,"TargetStructureID":485,"Label":"18282-485 via Conventional from 18293 -> 18297, 18294 -> 43485, 18298 -> 18299, 18306 -> 49176, 18308 -> 102013, 20333 -> 29193, 20412 -> 120430, 29181 -> 101089, 31411 -> 43489","Type":"Conventional","Directional":true,"Links":[{"SourceID":18293,"TargetID":18297,"Directional":true},{"SourceID":18294,"TargetID":43485,"Directional":true},{"SourceID":18298,"TargetID":18299,"Directional":true},{"SourceID":18306,"TargetID":49176,"Directional":true},{"SourceID":18308,"TargetID":102013,"Directional":true},{"SourceID":20333,"TargetID":29193,"Directional":true},{"SourceID":20412,"TargetID":120430,"Directional":true},{"SourceID":29181,"TargetID":101089,"Directional":true},{"SourceID":31411,"TargetID":43489,"Directional":true}]},{"ID":12611,"SourceStructureID":18282,"TargetStructureID":593,"Label":"18282-593 via Conventional from 18315 -> 50445","Type":"Conventional","Directional":true,"Links":[{"SourceID":18315,"TargetID":50445,"Directional":true}]},{"ID":12612,"SourceStructureID":18282,"TargetStructureID":5562,"Label":"18282-5562 via Conventional from 31442 -> 31444","Type":"Conventional","Directional":true,"Links":[{"SourceID":31442,"TargetID":31444,"Directional":true}]},{"ID":12613,"SourceStructureID":18282,"TargetStructureID":5916,"Label":"18282-5916 via Conventional from 31450 -> 38844","Type":"Conventional","Directional":true,"Links":[{"SourceID":31450,"TargetID":38844,"Directional":true}]},{"ID":12614,"SourceStructureID":18282,"TargetStructureID":6115,"Label":"18282-6115 via Conventional from 20420 -> 20431, 72711 -> 72710, 129083 -> 75554","Type":"Conventional","Directional":true,"Links":[{"SourceID":20420,"TargetID":20431,"Directional":true},{"SourceID":72711,"TargetID":72710,"Directional":true},{"SourceID":129083,"TargetID":75554,"Directional":true}]},{"ID":12615,"SourceStructureID":18282,"TargetStructureID":6997,"Label":"18282-6997 via Conventional from 31412 -> 22124, 31415 -> 31422, 31424 -> 31434","Type":"Conventional","Directional":true,"Links":[{"SourceID":31412,"TargetID":22124,"Directional":true},{"SourceID":31415,"TargetID":31422,"Directional":true},{"SourceID":31424,"TargetID":31434,"Directional":true}]},{"ID":12616,"SourceStructureID":18282,"TargetStructureID":31430,"Label":"18282-31430 via Conventional from 31423 -> 31432","Type":"Conventional","Directional":true,"Links":[{"SourceID":31423,"TargetID":31432,"Directional":true}]},{"ID":12617,"SourceStructureID":18282,"TargetStructureID":38848,"Label":"18282-38848 via Conventional from 31454 -> 38849","Type":"Conventional","Directional":true,"Links":[{"SourceID":31454,"TargetID":38849,"Directional":true}]},{"ID":12618,"SourceStructureID":18282,"TargetStructureID":61960,"Label":"18282-61960 via Conventional from 18313 -> 81445, 29179 -> 69696","Type":"Conventional","Directional":true,"Links":[{"SourceID":18313,"TargetID":81445,"Directional":true},{"SourceID":29179,"TargetID":69696,"Directional":true}]},{"ID":12619,"SourceStructureID":18471,"TargetStructureID":18472,"Label":"18471-18472 via Conventional from 18474 -> 18475","Type":"Conventional","Directional":true,"Links":[{"SourceID":18474,"TargetID":18475,"Directional":true}]},{"ID":12620,"SourceStructureID":18576,"TargetStructureID":419,"Label":"18576-419 via Conventional from 100465 -> 10124","Type":"Conventional","Directional":true,"Links":[{"SourceID":100465,"TargetID":10124,"Directional":true}]},{"ID":12621,"SourceStructureID":18576,"TargetStructureID":514,"Label":"18576-514 via Conventional from 18582 -> 18581","Type":"Conventional","Directional":true,"Links":[{"SourceID":18582,"TargetID":18581,"Directional":true}]},{"ID":12622,"SourceStructureID":18576,"TargetStructureID":519,"Label":"18576-519 via Conventional from 18580 -> 18579","Type":"Conventional","Directional":true,"Links":[{"SourceID":18580,"TargetID":18579,"Directional":true}]},{"ID":12623,"SourceStructureID":18576,"TargetStructureID":6857,"Label":"18576-6857 via Conventional from 36328 -> 6862","Type":"Conventional","Directional":true,"Links":[{"SourceID":36328,"TargetID":6862,"Directional":true}]},{"ID":12624,"SourceStructureID":18693,"TargetStructureID":64774,"Label":"18693-64774 via Conventional from 64773 -> 64775","Type":"Conventional","Directional":true,"Links":[{"SourceID":64773,"TargetID":64775,"Directional":true}]},{"ID":12625,"SourceStructureID":18693,"TargetStructureID":64777,"Label":"18693-64777 via Conventional from 64720 -> 64778","Type":"Conventional","Directional":true,"Links":[{"SourceID":64720,"TargetID":64778,"Directional":true}]},{"ID":12626,"SourceStructureID":19203,"TargetStructureID":389,"Label":"19203-389 via Ribbon Synapse from 62114 -> 62117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62114,"TargetID":62117,"Directional":true}]},{"ID":12627,"SourceStructureID":19203,"TargetStructureID":598,"Label":"19203-598 via Ribbon Synapse from 22889 -> 38535","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22889,"TargetID":38535,"Directional":true}]},{"ID":12628,"SourceStructureID":19203,"TargetStructureID":5345,"Label":"19203-5345 via Ribbon Synapse from 19321 -> 22837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19321,"TargetID":22837,"Directional":true}]},{"ID":12629,"SourceStructureID":19203,"TargetStructureID":5497,"Label":"19203-5497 via Ribbon Synapse from 21747 -> 21742, 22894 -> 21736, 22896 -> 22897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21747,"TargetID":21742,"Directional":true},{"SourceID":22894,"TargetID":21736,"Directional":true},{"SourceID":22896,"TargetID":22897,"Directional":true}]},{"ID":12630,"SourceStructureID":19203,"TargetStructureID":8575,"Label":"19203-8575 via BC Conventional Synapse from 62431 -> 61549","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62431,"TargetID":61549,"Directional":true}]},{"ID":12631,"SourceStructureID":19203,"TargetStructureID":8575,"Label":"19203-8575 via Ribbon Synapse from 22877 -> 21731, 22942 -> 21733, 62108 -> 62105, 63610 -> 62102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22877,"TargetID":21731,"Directional":true},{"SourceID":22942,"TargetID":21733,"Directional":true},{"SourceID":62108,"TargetID":62105,"Directional":true},{"SourceID":63610,"TargetID":62102,"Directional":true}]},{"ID":12632,"SourceStructureID":19203,"TargetStructureID":18693,"Label":"19203-18693 via Ribbon Synapse from 19313 -> 18701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19313,"TargetID":18701,"Directional":true}]},{"ID":12633,"SourceStructureID":19203,"TargetStructureID":62120,"Label":"19203-62120 via Ribbon Synapse from 62114 -> 62123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62114,"TargetID":62123,"Directional":true}]},{"ID":12634,"SourceStructureID":19351,"TargetStructureID":6131,"Label":"19351-6131 via Conventional from 37312 -> 37311","Type":"Conventional","Directional":true,"Links":[{"SourceID":37312,"TargetID":37311,"Directional":true}]},{"ID":12635,"SourceStructureID":19362,"TargetStructureID":5457,"Label":"19362-5457 via Conventional from 23435 -> 103140, 23461 -> 15341","Type":"Conventional","Directional":true,"Links":[{"SourceID":23435,"TargetID":103140,"Directional":true},{"SourceID":23461,"TargetID":15341,"Directional":true}]},{"ID":12636,"SourceStructureID":19362,"TargetStructureID":5458,"Label":"19362-5458 via Conventional from 23424 -> 23425","Type":"Conventional","Directional":true,"Links":[{"SourceID":23424,"TargetID":23425,"Directional":true}]},{"ID":12637,"SourceStructureID":19362,"TargetStructureID":5536,"Label":"19362-5536 via Conventional from 23423 -> 22690","Type":"Conventional","Directional":true,"Links":[{"SourceID":23423,"TargetID":22690,"Directional":true}]},{"ID":12638,"SourceStructureID":19362,"TargetStructureID":7188,"Label":"19362-7188 via Conventional from 23454 -> 7195","Type":"Conventional","Directional":true,"Links":[{"SourceID":23454,"TargetID":7195,"Directional":true}]},{"ID":12639,"SourceStructureID":19362,"TargetStructureID":7225,"Label":"19362-7225 via Conventional from 23438 -> 23444","Type":"Conventional","Directional":true,"Links":[{"SourceID":23438,"TargetID":23444,"Directional":true}]},{"ID":12640,"SourceStructureID":19383,"TargetStructureID":5541,"Label":"19383-5541 via Conventional from 33205 -> 33204, 33207 -> 33206","Type":"Conventional","Directional":true,"Links":[{"SourceID":33205,"TargetID":33204,"Directional":true},{"SourceID":33207,"TargetID":33206,"Directional":true}]},{"ID":12641,"SourceStructureID":19571,"TargetStructureID":5452,"Label":"19571-5452 via Conventional from 22724 -> 23692","Type":"Conventional","Directional":true,"Links":[{"SourceID":22724,"TargetID":23692,"Directional":true}]},{"ID":12642,"SourceStructureID":19571,"TargetStructureID":5536,"Label":"19571-5536 via Conventional from 22713 -> 22696","Type":"Conventional","Directional":true,"Links":[{"SourceID":22713,"TargetID":22696,"Directional":true}]},{"ID":12643,"SourceStructureID":19571,"TargetStructureID":5539,"Label":"19571-5539 via Conventional from 22720 -> 22631","Type":"Conventional","Directional":true,"Links":[{"SourceID":22720,"TargetID":22631,"Directional":true}]},{"ID":12644,"SourceStructureID":19571,"TargetStructureID":19362,"Label":"19571-19362 via Conventional from 22762 -> 23440, 23451 -> 23450","Type":"Conventional","Directional":true,"Links":[{"SourceID":22762,"TargetID":23440,"Directional":true},{"SourceID":23451,"TargetID":23450,"Directional":true}]},{"ID":12645,"SourceStructureID":19572,"TargetStructureID":5539,"Label":"19572-5539 via Conventional from 22624 -> 22792, 22626 -> 9814","Type":"Conventional","Directional":true,"Links":[{"SourceID":22624,"TargetID":22792,"Directional":true},{"SourceID":22626,"TargetID":9814,"Directional":true}]},{"ID":12646,"SourceStructureID":20136,"TargetStructureID":162,"Label":"20136-162 via Ribbon Synapse from 29137 -> 70265, 29141 -> 109301","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29137,"TargetID":70265,"Directional":true},{"SourceID":29141,"TargetID":109301,"Directional":true}]},{"ID":12647,"SourceStructureID":20136,"TargetStructureID":492,"Label":"20136-492 via Ribbon Synapse from 30655 -> 109850, 109838 -> 109837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30655,"TargetID":109850,"Directional":true},{"SourceID":109838,"TargetID":109837,"Directional":true}]},{"ID":12648,"SourceStructureID":20136,"TargetStructureID":598,"Label":"20136-598 via Ribbon Synapse from 46000 -> 6320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46000,"TargetID":6320,"Directional":true}]},{"ID":12649,"SourceStructureID":20136,"TargetStructureID":5377,"Label":"20136-5377 via Ribbon Synapse from 69862 -> 108969, 87025 -> 87026, 108966 -> 108967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69862,"TargetID":108969,"Directional":true},{"SourceID":87025,"TargetID":87026,"Directional":true},{"SourceID":108966,"TargetID":108967,"Directional":true}]},{"ID":12650,"SourceStructureID":20136,"TargetStructureID":5435,"Label":"20136-5435 via Ribbon Synapse from 127744 -> 135515","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127744,"TargetID":135515,"Directional":true}]},{"ID":12651,"SourceStructureID":20136,"TargetStructureID":7594,"Label":"20136-7594 via Ribbon Synapse from 25107 -> 25106, 29141 -> 29142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25107,"TargetID":25106,"Directional":true},{"SourceID":29141,"TargetID":29142,"Directional":true}]},{"ID":12652,"SourceStructureID":20136,"TargetStructureID":15796,"Label":"20136-15796 via BC Conventional Synapse from 97845 -> 97844","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97845,"TargetID":97844,"Directional":true}]},{"ID":12653,"SourceStructureID":20136,"TargetStructureID":15796,"Label":"20136-15796 via Ribbon Synapse from 20149 -> 15845, 45995 -> 108492, 69861 -> 20117, 130475 -> 130474, 130481 -> 20123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20149,"TargetID":15845,"Directional":true},{"SourceID":45995,"TargetID":108492,"Directional":true},{"SourceID":69861,"TargetID":20117,"Directional":true},{"SourceID":130475,"TargetID":130474,"Directional":true},{"SourceID":130481,"TargetID":20123,"Directional":true}]},{"ID":12654,"SourceStructureID":20136,"TargetStructureID":16073,"Label":"20136-16073 via BC Conventional Synapse from 108471 -> 108472","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108471,"TargetID":108472,"Directional":true}]},{"ID":12655,"SourceStructureID":20136,"TargetStructureID":16073,"Label":"20136-16073 via Ribbon Synapse from 69862 -> 23442, 130479 -> 130480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69862,"TargetID":23442,"Directional":true},{"SourceID":130479,"TargetID":130480,"Directional":true}]},{"ID":12656,"SourceStructureID":20136,"TargetStructureID":30567,"Label":"20136-30567 via Ribbon Synapse from 30655 -> 109848","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30655,"TargetID":109848,"Directional":true}]},{"ID":12657,"SourceStructureID":20136,"TargetStructureID":38502,"Label":"20136-38502 via Ribbon Synapse from 29127 -> 38508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29127,"TargetID":38508,"Directional":true}]},{"ID":12658,"SourceStructureID":20136,"TargetStructureID":40018,"Label":"20136-40018 via Ribbon Synapse from 110350 -> 110351","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110350,"TargetID":110351,"Directional":true}]},{"ID":12659,"SourceStructureID":20136,"TargetStructureID":53399,"Label":"20136-53399 via Ribbon Synapse from 29136 -> 53400","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29136,"TargetID":53400,"Directional":true}]},{"ID":12660,"SourceStructureID":20136,"TargetStructureID":54006,"Label":"20136-54006 via Ribbon Synapse from 20146 -> 109049, 20147 -> 109060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20146,"TargetID":109049,"Directional":true},{"SourceID":20147,"TargetID":109060,"Directional":true}]},{"ID":12661,"SourceStructureID":20136,"TargetStructureID":55403,"Label":"20136-55403 via Ribbon Synapse from 119289 -> 55503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119289,"TargetID":55503,"Directional":true}]},{"ID":12662,"SourceStructureID":20136,"TargetStructureID":59145,"Label":"20136-59145 via BC Conventional Synapse from 20138 -> 59152","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":20138,"TargetID":59152,"Directional":true}]},{"ID":12663,"SourceStructureID":20136,"TargetStructureID":67663,"Label":"20136-67663 via Ribbon Synapse from 69864 -> 108981, 70044 -> 70043","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69864,"TargetID":108981,"Directional":true},{"SourceID":70044,"TargetID":70043,"Directional":true}]},{"ID":12664,"SourceStructureID":20136,"TargetStructureID":68277,"Label":"20136-68277 via Ribbon Synapse from 109894 -> 109897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109894,"TargetID":109897,"Directional":true}]},{"ID":12665,"SourceStructureID":20136,"TargetStructureID":69162,"Label":"20136-69162 via Ribbon Synapse from 46031 -> 109228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46031,"TargetID":109228,"Directional":true}]},{"ID":12666,"SourceStructureID":20136,"TargetStructureID":83949,"Label":"20136-83949 via BC Conventional Synapse from 109087 -> 109089","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109087,"TargetID":109089,"Directional":true}]},{"ID":12667,"SourceStructureID":20136,"TargetStructureID":83949,"Label":"20136-83949 via Ribbon Synapse from 20146 -> 109048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20146,"TargetID":109048,"Directional":true}]},{"ID":12668,"SourceStructureID":20136,"TargetStructureID":83954,"Label":"20136-83954 via Ribbon Synapse from 109092 -> 109091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109092,"TargetID":109091,"Directional":true}]},{"ID":12669,"SourceStructureID":20136,"TargetStructureID":84148,"Label":"20136-84148 via BC Conventional Synapse from 84147 -> 84149","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84147,"TargetID":84149,"Directional":true}]},{"ID":12670,"SourceStructureID":20136,"TargetStructureID":84193,"Label":"20136-84193 via BC Conventional Synapse from 109172 -> 109173","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109172,"TargetID":109173,"Directional":true}]},{"ID":12671,"SourceStructureID":20136,"TargetStructureID":88199,"Label":"20136-88199 via Ribbon Synapse from 110350 -> 110349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110350,"TargetID":110349,"Directional":true}]},{"ID":12672,"SourceStructureID":20136,"TargetStructureID":97691,"Label":"20136-97691 via Ribbon Synapse from 119296 -> 119297, 119301 -> 119302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119296,"TargetID":119297,"Directional":true},{"SourceID":119301,"TargetID":119302,"Directional":true}]},{"ID":12673,"SourceStructureID":20136,"TargetStructureID":103987,"Label":"20136-103987 via Ribbon Synapse from 108875 -> 108879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108875,"TargetID":108879,"Directional":true}]},{"ID":12674,"SourceStructureID":20136,"TargetStructureID":108398,"Label":"20136-108398 via Ribbon Synapse from 108412 -> 108413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108412,"TargetID":108413,"Directional":true}]},{"ID":12675,"SourceStructureID":20136,"TargetStructureID":108421,"Label":"20136-108421 via BC Conventional Synapse from 108440 -> 108425","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108440,"TargetID":108425,"Directional":true}]},{"ID":12676,"SourceStructureID":20136,"TargetStructureID":108448,"Label":"20136-108448 via Ribbon Synapse from 45993 -> 108455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45993,"TargetID":108455,"Directional":true}]},{"ID":12677,"SourceStructureID":20136,"TargetStructureID":108469,"Label":"20136-108469 via BC Conventional Synapse from 108471 -> 108474","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108471,"TargetID":108474,"Directional":true}]},{"ID":12678,"SourceStructureID":20136,"TargetStructureID":108487,"Label":"20136-108487 via Ribbon Synapse from 45995 -> 108490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45995,"TargetID":108490,"Directional":true}]},{"ID":12679,"SourceStructureID":20136,"TargetStructureID":108500,"Label":"20136-108500 via Ribbon Synapse from 108479 -> 108503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108479,"TargetID":108503,"Directional":true}]},{"ID":12680,"SourceStructureID":20136,"TargetStructureID":108766,"Label":"20136-108766 via Ribbon Synapse from 108765 -> 108767","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108765,"TargetID":108767,"Directional":true}]},{"ID":12681,"SourceStructureID":20136,"TargetStructureID":108768,"Label":"20136-108768 via Ribbon Synapse from 108765 -> 108769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108765,"TargetID":108769,"Directional":true}]},{"ID":12682,"SourceStructureID":20136,"TargetStructureID":108800,"Label":"20136-108800 via Ribbon Synapse from 108805 -> 108806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108805,"TargetID":108806,"Directional":true}]},{"ID":12683,"SourceStructureID":20136,"TargetStructureID":108804,"Label":"20136-108804 via Ribbon Synapse from 108805 -> 108809","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108805,"TargetID":108809,"Directional":true}]},{"ID":12684,"SourceStructureID":20136,"TargetStructureID":108818,"Label":"20136-108818 via Ribbon Synapse from 129604 -> 129605","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129604,"TargetID":129605,"Directional":true}]},{"ID":12685,"SourceStructureID":20136,"TargetStructureID":108825,"Label":"20136-108825 via Ribbon Synapse from 108834 -> 108837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108834,"TargetID":108837,"Directional":true}]},{"ID":12686,"SourceStructureID":20136,"TargetStructureID":108835,"Label":"20136-108835 via Ribbon Synapse from 108834 -> 108836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108834,"TargetID":108836,"Directional":true}]},{"ID":12687,"SourceStructureID":20136,"TargetStructureID":108845,"Label":"20136-108845 via Ribbon Synapse from 108832 -> 108848","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108832,"TargetID":108848,"Directional":true}]},{"ID":12688,"SourceStructureID":20136,"TargetStructureID":108846,"Label":"20136-108846 via Ribbon Synapse from 108832 -> 108847","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108832,"TargetID":108847,"Directional":true}]},{"ID":12689,"SourceStructureID":20136,"TargetStructureID":108861,"Label":"20136-108861 via Ribbon Synapse from 108860 -> 108862, 108884 -> 108898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108860,"TargetID":108862,"Directional":true},{"SourceID":108884,"TargetID":108898,"Directional":true}]},{"ID":12690,"SourceStructureID":20136,"TargetStructureID":108881,"Label":"20136-108881 via Ribbon Synapse from 108875 -> 108882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108875,"TargetID":108882,"Directional":true}]},{"ID":12691,"SourceStructureID":20136,"TargetStructureID":108883,"Label":"20136-108883 via Ribbon Synapse from 108884 -> 108886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108884,"TargetID":108886,"Directional":true}]},{"ID":12692,"SourceStructureID":20136,"TargetStructureID":108890,"Label":"20136-108890 via Ribbon Synapse from 108888 -> 108892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108888,"TargetID":108892,"Directional":true}]},{"ID":12693,"SourceStructureID":20136,"TargetStructureID":108893,"Label":"20136-108893 via Ribbon Synapse from 108888 -> 108896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108888,"TargetID":108896,"Directional":true}]},{"ID":12694,"SourceStructureID":20136,"TargetStructureID":108937,"Label":"20136-108937 via Ribbon Synapse from 69864 -> 108979","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69864,"TargetID":108979,"Directional":true}]},{"ID":12695,"SourceStructureID":20136,"TargetStructureID":108949,"Label":"20136-108949 via Ribbon Synapse from 87025 -> 108950, 108951 -> 108952","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87025,"TargetID":108950,"Directional":true},{"SourceID":108951,"TargetID":108952,"Directional":true}]},{"ID":12696,"SourceStructureID":20136,"TargetStructureID":108953,"Label":"20136-108953 via Ribbon Synapse from 108951 -> 108954","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108951,"TargetID":108954,"Directional":true}]},{"ID":12697,"SourceStructureID":20136,"TargetStructureID":108955,"Label":"20136-108955 via Ribbon Synapse from 69862 -> 108968, 108951 -> 108956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69862,"TargetID":108968,"Directional":true},{"SourceID":108951,"TargetID":108956,"Directional":true}]},{"ID":12698,"SourceStructureID":20136,"TargetStructureID":108959,"Label":"20136-108959 via BC Conventional Synapse from 108961 -> 108960","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108961,"TargetID":108960,"Directional":true}]},{"ID":12699,"SourceStructureID":20136,"TargetStructureID":108970,"Label":"20136-108970 via Ribbon Synapse from 108966 -> 108971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108966,"TargetID":108971,"Directional":true}]},{"ID":12700,"SourceStructureID":20136,"TargetStructureID":108972,"Label":"20136-108972 via Ribbon Synapse from 69861 -> 108973, 69861 -> 108974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69861,"TargetID":108973,"Directional":true},{"SourceID":69861,"TargetID":108974,"Directional":true}]},{"ID":12701,"SourceStructureID":20136,"TargetStructureID":108986,"Label":"20136-108986 via BC Conventional Synapse from 108985 -> 108987","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108985,"TargetID":108987,"Directional":true}]},{"ID":12702,"SourceStructureID":20136,"TargetStructureID":108988,"Label":"20136-108988 via Ribbon Synapse from 45996 -> 108989","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45996,"TargetID":108989,"Directional":true}]},{"ID":12703,"SourceStructureID":20136,"TargetStructureID":108991,"Label":"20136-108991 via Ribbon Synapse from 45996 -> 108992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45996,"TargetID":108992,"Directional":true}]},{"ID":12704,"SourceStructureID":20136,"TargetStructureID":108993,"Label":"20136-108993 via Ribbon Synapse from 46003 -> 108994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46003,"TargetID":108994,"Directional":true}]},{"ID":12705,"SourceStructureID":20136,"TargetStructureID":108999,"Label":"20136-108999 via Ribbon Synapse from 108998 -> 109000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108998,"TargetID":109000,"Directional":true}]},{"ID":12706,"SourceStructureID":20136,"TargetStructureID":109007,"Label":"20136-109007 via Ribbon Synapse from 109006 -> 109008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109006,"TargetID":109008,"Directional":true}]},{"ID":12707,"SourceStructureID":20136,"TargetStructureID":109012,"Label":"20136-109012 via Ribbon Synapse from 109009 -> 109013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109009,"TargetID":109013,"Directional":true}]},{"ID":12708,"SourceStructureID":20136,"TargetStructureID":109014,"Label":"20136-109014 via Ribbon Synapse from 109009 -> 109015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109009,"TargetID":109015,"Directional":true}]},{"ID":12709,"SourceStructureID":20136,"TargetStructureID":109016,"Label":"20136-109016 via Ribbon Synapse from 46003 -> 109017, 46004 -> 109018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46003,"TargetID":109017,"Directional":true},{"SourceID":46004,"TargetID":109018,"Directional":true}]},{"ID":12710,"SourceStructureID":20136,"TargetStructureID":109019,"Label":"20136-109019 via Ribbon Synapse from 46005 -> 109020","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46005,"TargetID":109020,"Directional":true}]},{"ID":12711,"SourceStructureID":20136,"TargetStructureID":109021,"Label":"20136-109021 via Ribbon Synapse from 46005 -> 109022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46005,"TargetID":109022,"Directional":true}]},{"ID":12712,"SourceStructureID":20136,"TargetStructureID":109027,"Label":"20136-109027 via Ribbon Synapse from 46008 -> 109028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46008,"TargetID":109028,"Directional":true}]},{"ID":12713,"SourceStructureID":20136,"TargetStructureID":109029,"Label":"20136-109029 via Ribbon Synapse from 109092 -> 109090, 109133 -> 109134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109092,"TargetID":109090,"Directional":true},{"SourceID":109133,"TargetID":109134,"Directional":true}]},{"ID":12714,"SourceStructureID":20136,"TargetStructureID":109030,"Label":"20136-109030 via Ribbon Synapse from 20147 -> 109056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20147,"TargetID":109056,"Directional":true}]},{"ID":12715,"SourceStructureID":20136,"TargetStructureID":109053,"Label":"20136-109053 via Ribbon Synapse from 20147 -> 109054","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20147,"TargetID":109054,"Directional":true}]},{"ID":12716,"SourceStructureID":20136,"TargetStructureID":109065,"Label":"20136-109065 via Ribbon Synapse from 20149 -> 109066","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20149,"TargetID":109066,"Directional":true}]},{"ID":12717,"SourceStructureID":20136,"TargetStructureID":109084,"Label":"20136-109084 via BC Conventional Synapse from 109086 -> 109085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109086,"TargetID":109085,"Directional":true}]},{"ID":12718,"SourceStructureID":20136,"TargetStructureID":109097,"Label":"20136-109097 via Ribbon Synapse from 70044 -> 109098, 109104 -> 109105, 109154 -> 109153","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70044,"TargetID":109098,"Directional":true},{"SourceID":109104,"TargetID":109105,"Directional":true},{"SourceID":109154,"TargetID":109153,"Directional":true}]},{"ID":12719,"SourceStructureID":20136,"TargetStructureID":109106,"Label":"20136-109106 via Ribbon Synapse from 109104 -> 109110","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109104,"TargetID":109110,"Directional":true}]},{"ID":12720,"SourceStructureID":20136,"TargetStructureID":109116,"Label":"20136-109116 via Ribbon Synapse from 46006 -> 109118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46006,"TargetID":109118,"Directional":true}]},{"ID":12721,"SourceStructureID":20136,"TargetStructureID":109119,"Label":"20136-109119 via Ribbon Synapse from 46006 -> 109120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46006,"TargetID":109120,"Directional":true}]},{"ID":12722,"SourceStructureID":20136,"TargetStructureID":109126,"Label":"20136-109126 via Ribbon Synapse from 46008 -> 109127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46008,"TargetID":109127,"Directional":true}]},{"ID":12723,"SourceStructureID":20136,"TargetStructureID":109135,"Label":"20136-109135 via Ribbon Synapse from 109133 -> 109159","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109133,"TargetID":109159,"Directional":true}]},{"ID":12724,"SourceStructureID":20136,"TargetStructureID":109160,"Label":"20136-109160 via Ribbon Synapse from 109161 -> 109162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109161,"TargetID":109162,"Directional":true}]},{"ID":12725,"SourceStructureID":20136,"TargetStructureID":109163,"Label":"20136-109163 via Ribbon Synapse from 109161 -> 109168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109161,"TargetID":109168,"Directional":true}]},{"ID":12726,"SourceStructureID":20136,"TargetStructureID":109164,"Label":"20136-109164 via Ribbon Synapse from 109161 -> 109165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109161,"TargetID":109165,"Directional":true}]},{"ID":12727,"SourceStructureID":20136,"TargetStructureID":109166,"Label":"20136-109166 via Ribbon Synapse from 109161 -> 109167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109161,"TargetID":109167,"Directional":true}]},{"ID":12728,"SourceStructureID":20136,"TargetStructureID":109184,"Label":"20136-109184 via BC Conventional Synapse from 109188 -> 109187","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109188,"TargetID":109187,"Directional":true}]},{"ID":12729,"SourceStructureID":20136,"TargetStructureID":109210,"Label":"20136-109210 via Ribbon Synapse from 29127 -> 109231, 29132 -> 109235, 29134 -> 109213","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29127,"TargetID":109231,"Directional":true},{"SourceID":29132,"TargetID":109235,"Directional":true},{"SourceID":29134,"TargetID":109213,"Directional":true}]},{"ID":12730,"SourceStructureID":20136,"TargetStructureID":109214,"Label":"20136-109214 via Ribbon Synapse from 29134 -> 109215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29134,"TargetID":109215,"Directional":true}]},{"ID":12731,"SourceStructureID":20136,"TargetStructureID":109226,"Label":"20136-109226 via Ribbon Synapse from 46031 -> 109227","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46031,"TargetID":109227,"Directional":true}]},{"ID":12732,"SourceStructureID":20136,"TargetStructureID":109230,"Label":"20136-109230 via Ribbon Synapse from 29132 -> 109236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29132,"TargetID":109236,"Directional":true}]},{"ID":12733,"SourceStructureID":20136,"TargetStructureID":109237,"Label":"20136-109237 via Ribbon Synapse from 46030 -> 109238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46030,"TargetID":109238,"Directional":true}]},{"ID":12734,"SourceStructureID":20136,"TargetStructureID":109243,"Label":"20136-109243 via Ribbon Synapse from 29125 -> 109244","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29125,"TargetID":109244,"Directional":true}]},{"ID":12735,"SourceStructureID":20136,"TargetStructureID":109247,"Label":"20136-109247 via Ribbon Synapse from 96719 -> 109248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96719,"TargetID":109248,"Directional":true}]},{"ID":12736,"SourceStructureID":20136,"TargetStructureID":109251,"Label":"20136-109251 via Ribbon Synapse from 96718 -> 109253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96718,"TargetID":109253,"Directional":true}]},{"ID":12737,"SourceStructureID":20136,"TargetStructureID":109252,"Label":"20136-109252 via Ribbon Synapse from 96718 -> 109254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96718,"TargetID":109254,"Directional":true}]},{"ID":12738,"SourceStructureID":20136,"TargetStructureID":109255,"Label":"20136-109255 via Ribbon Synapse from 96719 -> 109256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96719,"TargetID":109256,"Directional":true}]},{"ID":12739,"SourceStructureID":20136,"TargetStructureID":109257,"Label":"20136-109257 via Ribbon Synapse from 46032 -> 109259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46032,"TargetID":109259,"Directional":true}]},{"ID":12740,"SourceStructureID":20136,"TargetStructureID":109260,"Label":"20136-109260 via Ribbon Synapse from 46032 -> 109261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46032,"TargetID":109261,"Directional":true}]},{"ID":12741,"SourceStructureID":20136,"TargetStructureID":109267,"Label":"20136-109267 via Ribbon Synapse from 46034 -> 109268","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46034,"TargetID":109268,"Directional":true}]},{"ID":12742,"SourceStructureID":20136,"TargetStructureID":109269,"Label":"20136-109269 via Ribbon Synapse from 46034 -> 109270","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46034,"TargetID":109270,"Directional":true}]},{"ID":12743,"SourceStructureID":20136,"TargetStructureID":109271,"Label":"20136-109271 via Ribbon Synapse from 97851 -> 120514","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97851,"TargetID":120514,"Directional":true}]},{"ID":12744,"SourceStructureID":20136,"TargetStructureID":109274,"Label":"20136-109274 via Ribbon Synapse from 97851 -> 109275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97851,"TargetID":109275,"Directional":true}]},{"ID":12745,"SourceStructureID":20136,"TargetStructureID":109287,"Label":"20136-109287 via Ribbon Synapse from 109286 -> 109288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109286,"TargetID":109288,"Directional":true}]},{"ID":12746,"SourceStructureID":20136,"TargetStructureID":109289,"Label":"20136-109289 via Ribbon Synapse from 109286 -> 109290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109286,"TargetID":109290,"Directional":true}]},{"ID":12747,"SourceStructureID":20136,"TargetStructureID":109291,"Label":"20136-109291 via Ribbon Synapse from 29137 -> 109292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29137,"TargetID":109292,"Directional":true}]},{"ID":12748,"SourceStructureID":20136,"TargetStructureID":109293,"Label":"20136-109293 via Ribbon Synapse from 29140 -> 109294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29140,"TargetID":109294,"Directional":true}]},{"ID":12749,"SourceStructureID":20136,"TargetStructureID":109305,"Label":"20136-109305 via Ribbon Synapse from 29144 -> 109314","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29144,"TargetID":109314,"Directional":true}]},{"ID":12750,"SourceStructureID":20136,"TargetStructureID":109316,"Label":"20136-109316 via Ribbon Synapse from 109315 -> 109317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109315,"TargetID":109317,"Directional":true}]},{"ID":12751,"SourceStructureID":20136,"TargetStructureID":109318,"Label":"20136-109318 via Ribbon Synapse from 109315 -> 109319","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109315,"TargetID":109319,"Directional":true}]},{"ID":12752,"SourceStructureID":20136,"TargetStructureID":109335,"Label":"20136-109335 via Ribbon Synapse from 29138 -> 109340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29138,"TargetID":109340,"Directional":true}]},{"ID":12753,"SourceStructureID":20136,"TargetStructureID":109347,"Label":"20136-109347 via Ribbon Synapse from 109346 -> 109348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109346,"TargetID":109348,"Directional":true}]},{"ID":12754,"SourceStructureID":20136,"TargetStructureID":109417,"Label":"20136-109417 via BC Conventional Synapse from 109416 -> 109418","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109416,"TargetID":109418,"Directional":true}]},{"ID":12755,"SourceStructureID":20136,"TargetStructureID":109420,"Label":"20136-109420 via Ribbon Synapse from 109415 -> 109421","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109415,"TargetID":109421,"Directional":true}]},{"ID":12756,"SourceStructureID":20136,"TargetStructureID":109422,"Label":"20136-109422 via Ribbon Synapse from 109415 -> 109423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109415,"TargetID":109423,"Directional":true}]},{"ID":12757,"SourceStructureID":20136,"TargetStructureID":109424,"Label":"20136-109424 via Ribbon Synapse from 109415 -> 109425, 109427 -> 109429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109415,"TargetID":109425,"Directional":true},{"SourceID":109427,"TargetID":109429,"Directional":true}]},{"ID":12758,"SourceStructureID":20136,"TargetStructureID":109430,"Label":"20136-109430 via Ribbon Synapse from 109427 -> 109431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109427,"TargetID":109431,"Directional":true}]},{"ID":12759,"SourceStructureID":20136,"TargetStructureID":109439,"Label":"20136-109439 via Ribbon Synapse from 46025 -> 109443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46025,"TargetID":109443,"Directional":true}]},{"ID":12760,"SourceStructureID":20136,"TargetStructureID":109445,"Label":"20136-109445 via Ribbon Synapse from 46025 -> 109446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46025,"TargetID":109446,"Directional":true}]},{"ID":12761,"SourceStructureID":20136,"TargetStructureID":109450,"Label":"20136-109450 via Ribbon Synapse from 46026 -> 109455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46026,"TargetID":109455,"Directional":true}]},{"ID":12762,"SourceStructureID":20136,"TargetStructureID":109456,"Label":"20136-109456 via Ribbon Synapse from 46026 -> 109457","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46026,"TargetID":109457,"Directional":true}]},{"ID":12763,"SourceStructureID":20136,"TargetStructureID":109458,"Label":"20136-109458 via Ribbon Synapse from 46026 -> 109471","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46026,"TargetID":109471,"Directional":true}]},{"ID":12764,"SourceStructureID":20136,"TargetStructureID":109468,"Label":"20136-109468 via Ribbon Synapse from 46025 -> 109470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46025,"TargetID":109470,"Directional":true}]},{"ID":12765,"SourceStructureID":20136,"TargetStructureID":109472,"Label":"20136-109472 via Ribbon Synapse from 46024 -> 109474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46024,"TargetID":109474,"Directional":true}]},{"ID":12766,"SourceStructureID":20136,"TargetStructureID":109479,"Label":"20136-109479 via Ribbon Synapse from 46024 -> 109480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46024,"TargetID":109480,"Directional":true}]},{"ID":12767,"SourceStructureID":20136,"TargetStructureID":109488,"Label":"20136-109488 via Ribbon Synapse from 109489 -> 109490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109489,"TargetID":109490,"Directional":true}]},{"ID":12768,"SourceStructureID":20136,"TargetStructureID":109491,"Label":"20136-109491 via Ribbon Synapse from 109489 -> 109494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109489,"TargetID":109494,"Directional":true}]},{"ID":12769,"SourceStructureID":20136,"TargetStructureID":109497,"Label":"20136-109497 via Ribbon Synapse from 109503 -> 109506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109503,"TargetID":109506,"Directional":true}]},{"ID":12770,"SourceStructureID":20136,"TargetStructureID":109504,"Label":"20136-109504 via Ribbon Synapse from 109503 -> 109505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109503,"TargetID":109505,"Directional":true}]},{"ID":12771,"SourceStructureID":20136,"TargetStructureID":109528,"Label":"20136-109528 via Ribbon Synapse from 46020 -> 109529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46020,"TargetID":109529,"Directional":true}]},{"ID":12772,"SourceStructureID":20136,"TargetStructureID":109530,"Label":"20136-109530 via Ribbon Synapse from 46020 -> 109531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46020,"TargetID":109531,"Directional":true}]},{"ID":12773,"SourceStructureID":20136,"TargetStructureID":109533,"Label":"20136-109533 via BC Conventional Synapse from 109538 -> 109539","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109538,"TargetID":109539,"Directional":true}]},{"ID":12774,"SourceStructureID":20136,"TargetStructureID":109547,"Label":"20136-109547 via Ribbon Synapse from 46016 -> 109548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46016,"TargetID":109548,"Directional":true}]},{"ID":12775,"SourceStructureID":20136,"TargetStructureID":109554,"Label":"20136-109554 via BC Conventional Synapse from 109541 -> 109555","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109541,"TargetID":109555,"Directional":true}]},{"ID":12776,"SourceStructureID":20136,"TargetStructureID":109575,"Label":"20136-109575 via BC Conventional Synapse from 109595 -> 109596","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109595,"TargetID":109596,"Directional":true}]},{"ID":12777,"SourceStructureID":20136,"TargetStructureID":109577,"Label":"20136-109577 via Ribbon Synapse from 46016 -> 109679, 46017 -> 109581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46016,"TargetID":109679,"Directional":true},{"SourceID":46017,"TargetID":109581,"Directional":true}]},{"ID":12778,"SourceStructureID":20136,"TargetStructureID":109597,"Label":"20136-109597 via Ribbon Synapse from 109644 -> 109669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109644,"TargetID":109669,"Directional":true}]},{"ID":12779,"SourceStructureID":20136,"TargetStructureID":109608,"Label":"20136-109608 via Ribbon Synapse from 109644 -> 109668","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109644,"TargetID":109668,"Directional":true}]},{"ID":12780,"SourceStructureID":20136,"TargetStructureID":109758,"Label":"20136-109758 via Ribbon Synapse from 109759 -> 109760","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109759,"TargetID":109760,"Directional":true}]},{"ID":12781,"SourceStructureID":20136,"TargetStructureID":109762,"Label":"20136-109762 via Ribbon Synapse from 109761 -> 109766","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109761,"TargetID":109766,"Directional":true}]},{"ID":12782,"SourceStructureID":20136,"TargetStructureID":109788,"Label":"20136-109788 via Ribbon Synapse from 46012 -> 109789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46012,"TargetID":109789,"Directional":true}]},{"ID":12783,"SourceStructureID":20136,"TargetStructureID":109797,"Label":"20136-109797 via Ribbon Synapse from 46012 -> 109798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46012,"TargetID":109798,"Directional":true}]},{"ID":12784,"SourceStructureID":20136,"TargetStructureID":109799,"Label":"20136-109799 via BC Conventional Synapse from 119234 -> 119233","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119234,"TargetID":119233,"Directional":true}]},{"ID":12785,"SourceStructureID":20136,"TargetStructureID":109802,"Label":"20136-109802 via Ribbon Synapse from 29150 -> 109863, 46013 -> 109810, 109876 -> 109878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29150,"TargetID":109863,"Directional":true},{"SourceID":46013,"TargetID":109810,"Directional":true},{"SourceID":109876,"TargetID":109878,"Directional":true}]},{"ID":12786,"SourceStructureID":20136,"TargetStructureID":109812,"Label":"20136-109812 via Ribbon Synapse from 46013 -> 109813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46013,"TargetID":109813,"Directional":true}]},{"ID":12787,"SourceStructureID":20136,"TargetStructureID":109816,"Label":"20136-109816 via Ribbon Synapse from 29145 -> 109818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29145,"TargetID":109818,"Directional":true}]},{"ID":12788,"SourceStructureID":20136,"TargetStructureID":109824,"Label":"20136-109824 via Ribbon Synapse from 109829 -> 109826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109829,"TargetID":109826,"Directional":true}]},{"ID":12789,"SourceStructureID":20136,"TargetStructureID":109827,"Label":"20136-109827 via Ribbon Synapse from 109829 -> 109830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109829,"TargetID":109830,"Directional":true}]},{"ID":12790,"SourceStructureID":20136,"TargetStructureID":109839,"Label":"20136-109839 via Ribbon Synapse from 109838 -> 109841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109838,"TargetID":109841,"Directional":true}]},{"ID":12791,"SourceStructureID":20136,"TargetStructureID":109842,"Label":"20136-109842 via Ribbon Synapse from 29146 -> 109843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29146,"TargetID":109843,"Directional":true}]},{"ID":12792,"SourceStructureID":20136,"TargetStructureID":109844,"Label":"20136-109844 via Ribbon Synapse from 29146 -> 109845","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29146,"TargetID":109845,"Directional":true}]},{"ID":12793,"SourceStructureID":20136,"TargetStructureID":109851,"Label":"20136-109851 via Ribbon Synapse from 29149 -> 109852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29149,"TargetID":109852,"Directional":true}]},{"ID":12794,"SourceStructureID":20136,"TargetStructureID":109857,"Label":"20136-109857 via Ribbon Synapse from 29150 -> 109859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29150,"TargetID":109859,"Directional":true}]},{"ID":12795,"SourceStructureID":20136,"TargetStructureID":109865,"Label":"20136-109865 via Ribbon Synapse from 29153 -> 109866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29153,"TargetID":109866,"Directional":true}]},{"ID":12796,"SourceStructureID":20136,"TargetStructureID":109873,"Label":"20136-109873 via Ribbon Synapse from 109876 -> 109877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109876,"TargetID":109877,"Directional":true}]},{"ID":12797,"SourceStructureID":20136,"TargetStructureID":109879,"Label":"20136-109879 via Ribbon Synapse from 109876 -> 109880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109876,"TargetID":109880,"Directional":true}]},{"ID":12798,"SourceStructureID":20136,"TargetStructureID":109895,"Label":"20136-109895 via Ribbon Synapse from 109894 -> 109896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109894,"TargetID":109896,"Directional":true}]},{"ID":12799,"SourceStructureID":20136,"TargetStructureID":109900,"Label":"20136-109900 via Ribbon Synapse from 109902 -> 109907","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109902,"TargetID":109907,"Directional":true}]},{"ID":12800,"SourceStructureID":20136,"TargetStructureID":109905,"Label":"20136-109905 via Ribbon Synapse from 109902 -> 109906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109902,"TargetID":109906,"Directional":true}]},{"ID":12801,"SourceStructureID":20136,"TargetStructureID":110186,"Label":"20136-110186 via Ribbon Synapse from 110185 -> 110187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110185,"TargetID":110187,"Directional":true}]},{"ID":12802,"SourceStructureID":20136,"TargetStructureID":110204,"Label":"20136-110204 via Ribbon Synapse from 110203 -> 110205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110203,"TargetID":110205,"Directional":true}]},{"ID":12803,"SourceStructureID":20136,"TargetStructureID":110208,"Label":"20136-110208 via BC Conventional Synapse from 110217 -> 110218","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110217,"TargetID":110218,"Directional":true}]},{"ID":12804,"SourceStructureID":20136,"TargetStructureID":110271,"Label":"20136-110271 via Ribbon Synapse from 110237 -> 110288, 110299 -> 110300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110237,"TargetID":110288,"Directional":true},{"SourceID":110299,"TargetID":110300,"Directional":true}]},{"ID":12805,"SourceStructureID":20136,"TargetStructureID":110289,"Label":"20136-110289 via Ribbon Synapse from 110237 -> 110290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110237,"TargetID":110290,"Directional":true}]},{"ID":12806,"SourceStructureID":20136,"TargetStructureID":110292,"Label":"20136-110292 via Ribbon Synapse from 110287 -> 110294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110287,"TargetID":110294,"Directional":true}]},{"ID":12807,"SourceStructureID":20136,"TargetStructureID":110295,"Label":"20136-110295 via Ribbon Synapse from 110287 -> 110298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110287,"TargetID":110298,"Directional":true}]},{"ID":12808,"SourceStructureID":20136,"TargetStructureID":110301,"Label":"20136-110301 via Ribbon Synapse from 110299 -> 110302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110299,"TargetID":110302,"Directional":true}]},{"ID":12809,"SourceStructureID":20136,"TargetStructureID":110316,"Label":"20136-110316 via Ribbon Synapse from 110315 -> 110318","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110315,"TargetID":110318,"Directional":true}]},{"ID":12810,"SourceStructureID":20136,"TargetStructureID":110352,"Label":"20136-110352 via Ribbon Synapse from 110350 -> 110355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110350,"TargetID":110355,"Directional":true}]},{"ID":12811,"SourceStructureID":20136,"TargetStructureID":110356,"Label":"20136-110356 via Ribbon Synapse from 93855 -> 110359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93855,"TargetID":110359,"Directional":true}]},{"ID":12812,"SourceStructureID":20136,"TargetStructureID":110364,"Label":"20136-110364 via Ribbon Synapse from 93855 -> 110366","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93855,"TargetID":110366,"Directional":true}]},{"ID":12813,"SourceStructureID":20136,"TargetStructureID":110371,"Label":"20136-110371 via Ribbon Synapse from 110370 -> 110373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110370,"TargetID":110373,"Directional":true}]},{"ID":12814,"SourceStructureID":20136,"TargetStructureID":110374,"Label":"20136-110374 via Ribbon Synapse from 110370 -> 110377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110370,"TargetID":110377,"Directional":true}]},{"ID":12815,"SourceStructureID":20136,"TargetStructureID":110385,"Label":"20136-110385 via Ribbon Synapse from 93853 -> 110388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93853,"TargetID":110388,"Directional":true}]},{"ID":12816,"SourceStructureID":20136,"TargetStructureID":110386,"Label":"20136-110386 via Ribbon Synapse from 93853 -> 110387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93853,"TargetID":110387,"Directional":true}]},{"ID":12817,"SourceStructureID":20136,"TargetStructureID":110416,"Label":"20136-110416 via Ribbon Synapse from 110415 -> 110417","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110415,"TargetID":110417,"Directional":true}]},{"ID":12818,"SourceStructureID":20136,"TargetStructureID":110418,"Label":"20136-110418 via Ribbon Synapse from 110415 -> 110419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110415,"TargetID":110419,"Directional":true}]},{"ID":12819,"SourceStructureID":20299,"TargetStructureID":285,"Label":"20299-285 via Conventional from 20302 -> 20314","Type":"Conventional","Directional":true,"Links":[{"SourceID":20302,"TargetID":20314,"Directional":true}]},{"ID":12820,"SourceStructureID":20299,"TargetStructureID":286,"Label":"20299-286 via Conventional from 20317 -> 45607","Type":"Conventional","Directional":true,"Links":[{"SourceID":20317,"TargetID":45607,"Directional":true}]},{"ID":12821,"SourceStructureID":20299,"TargetStructureID":464,"Label":"20299-464 via Conventional from 55904 -> 121839","Type":"Conventional","Directional":true,"Links":[{"SourceID":55904,"TargetID":121839,"Directional":true}]},{"ID":12822,"SourceStructureID":20299,"TargetStructureID":483,"Label":"20299-483 via Conventional from 33599 -> 102549","Type":"Conventional","Directional":true,"Links":[{"SourceID":33599,"TargetID":102549,"Directional":true}]},{"ID":12823,"SourceStructureID":20299,"TargetStructureID":71935,"Label":"20299-71935 via Conventional from 121494 -> 121495","Type":"Conventional","Directional":true,"Links":[{"SourceID":121494,"TargetID":121495,"Directional":true}]},{"ID":12824,"SourceStructureID":20311,"TargetStructureID":285,"Label":"20311-285 via Conventional from 20312 -> 20313","Type":"Conventional","Directional":true,"Links":[{"SourceID":20312,"TargetID":20313,"Directional":true}]},{"ID":12825,"SourceStructureID":20311,"TargetStructureID":286,"Label":"20311-286 via Conventional from 30343 -> 26463, 93858 -> 93859","Type":"Conventional","Directional":true,"Links":[{"SourceID":30343,"TargetID":26463,"Directional":true},{"SourceID":93858,"TargetID":93859,"Directional":true}]},{"ID":12826,"SourceStructureID":20311,"TargetStructureID":525,"Label":"20311-525 via Conventional from 30341 -> 6280","Type":"Conventional","Directional":true,"Links":[{"SourceID":30341,"TargetID":6280,"Directional":true}]},{"ID":12827,"SourceStructureID":20327,"TargetStructureID":15796,"Label":"20327-15796 via Conventional from 20329 -> 20267","Type":"Conventional","Directional":true,"Links":[{"SourceID":20329,"TargetID":20267,"Directional":true}]},{"ID":12828,"SourceStructureID":20537,"TargetStructureID":5482,"Label":"20537-5482 via Conventional from 23510 -> 23511","Type":"Conventional","Directional":true,"Links":[{"SourceID":23510,"TargetID":23511,"Directional":true}]},{"ID":12829,"SourceStructureID":20537,"TargetStructureID":19571,"Label":"20537-19571 via Conventional from 23507 -> 22715","Type":"Conventional","Directional":true,"Links":[{"SourceID":23507,"TargetID":22715,"Directional":true}]},{"ID":12830,"SourceStructureID":20608,"TargetStructureID":1620,"Label":"20608-1620 via Conventional from 20612 -> 20613","Type":"Conventional","Directional":true,"Links":[{"SourceID":20612,"TargetID":20613,"Directional":true}]},{"ID":12831,"SourceStructureID":20728,"TargetStructureID":1620,"Label":"20728-1620 via Conventional from 33075 -> 16904, 33076 -> 33077","Type":"Conventional","Directional":true,"Links":[{"SourceID":33075,"TargetID":16904,"Directional":true},{"SourceID":33076,"TargetID":33077,"Directional":true}]},{"ID":12832,"SourceStructureID":20728,"TargetStructureID":6997,"Label":"20728-6997 via Conventional from 33078 -> 33079","Type":"Conventional","Directional":true,"Links":[{"SourceID":33078,"TargetID":33079,"Directional":true}]},{"ID":12833,"SourceStructureID":20728,"TargetStructureID":11401,"Label":"20728-11401 via Conventional from 20729 -> 16834","Type":"Conventional","Directional":true,"Links":[{"SourceID":20729,"TargetID":16834,"Directional":true}]},{"ID":12834,"SourceStructureID":21094,"TargetStructureID":165,"Label":"21094-165 via Conventional from 21127 -> 7089, 21130 -> 21131","Type":"Conventional","Directional":true,"Links":[{"SourceID":21127,"TargetID":7089,"Directional":true},{"SourceID":21130,"TargetID":21131,"Directional":true}]},{"ID":12835,"SourceStructureID":21094,"TargetStructureID":424,"Label":"21094-424 via Conventional from 21108 -> 19512","Type":"Conventional","Directional":true,"Links":[{"SourceID":21108,"TargetID":19512,"Directional":true}]},{"ID":12836,"SourceStructureID":21094,"TargetStructureID":4850,"Label":"21094-4850 via Conventional from 21095 -> 14541","Type":"Conventional","Directional":true,"Links":[{"SourceID":21095,"TargetID":14541,"Directional":true}]},{"ID":12837,"SourceStructureID":21094,"TargetStructureID":128015,"Label":"21094-128015 via Conventional from 21136 -> 128047","Type":"Conventional","Directional":true,"Links":[{"SourceID":21136,"TargetID":128047,"Directional":true}]},{"ID":12838,"SourceStructureID":21155,"TargetStructureID":19362,"Label":"21155-19362 via Conventional from 23448 -> 23446","Type":"Conventional","Directional":true,"Links":[{"SourceID":23448,"TargetID":23446,"Directional":true}]},{"ID":12839,"SourceStructureID":21159,"TargetStructureID":19362,"Label":"21159-19362 via Conventional from 23428 -> 23427","Type":"Conventional","Directional":true,"Links":[{"SourceID":23428,"TargetID":23427,"Directional":true}]},{"ID":12840,"SourceStructureID":21163,"TargetStructureID":6910,"Label":"21163-6910 via Conventional from 43000 -> 42999","Type":"Conventional","Directional":true,"Links":[{"SourceID":43000,"TargetID":42999,"Directional":true}]},{"ID":12841,"SourceStructureID":21299,"TargetStructureID":3865,"Label":"21299-3865 via Ribbon Synapse from 39303 -> 132328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39303,"TargetID":132328,"Directional":true}]},{"ID":12842,"SourceStructureID":21299,"TargetStructureID":5435,"Label":"21299-5435 via Ribbon Synapse from 48942 -> 126008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48942,"TargetID":126008,"Directional":true}]},{"ID":12843,"SourceStructureID":21299,"TargetStructureID":6300,"Label":"21299-6300 via Ribbon Synapse from 21310 -> 21311","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21310,"TargetID":21311,"Directional":true}]},{"ID":12844,"SourceStructureID":21299,"TargetStructureID":8575,"Label":"21299-8575 via Ribbon Synapse from 21305 -> 62298, 21306 -> 62297, 62322 -> 62321, 125942 -> 62300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21305,"TargetID":62298,"Directional":true},{"SourceID":21306,"TargetID":62297,"Directional":true},{"SourceID":62322,"TargetID":62321,"Directional":true},{"SourceID":125942,"TargetID":62300,"Directional":true}]},{"ID":12845,"SourceStructureID":21299,"TargetStructureID":9769,"Label":"21299-9769 via Ribbon Synapse from 29853 -> 29850, 119071 -> 119070","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29853,"TargetID":29850,"Directional":true},{"SourceID":119071,"TargetID":119070,"Directional":true}]},{"ID":12846,"SourceStructureID":21299,"TargetStructureID":16002,"Label":"21299-16002 via Ribbon Synapse from 46341 -> 16005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46341,"TargetID":16005,"Directional":true}]},{"ID":12847,"SourceStructureID":21299,"TargetStructureID":29702,"Label":"21299-29702 via BC Conventional Synapse from 72630 -> 72629","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72630,"TargetID":72629,"Directional":true}]},{"ID":12848,"SourceStructureID":21299,"TargetStructureID":34055,"Label":"21299-34055 via Ribbon Synapse from 34093 -> 34087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34093,"TargetID":34087,"Directional":true}]},{"ID":12849,"SourceStructureID":21299,"TargetStructureID":35811,"Label":"21299-35811 via Ribbon Synapse from 35833 -> 35827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35833,"TargetID":35827,"Directional":true}]},{"ID":12850,"SourceStructureID":21299,"TargetStructureID":39299,"Label":"21299-39299 via Ribbon Synapse from 39303 -> 39302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39303,"TargetID":39302,"Directional":true}]},{"ID":12851,"SourceStructureID":21299,"TargetStructureID":44346,"Label":"21299-44346 via Ribbon Synapse from 44440 -> 44439, 44441 -> 44439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44440,"TargetID":44439,"Directional":true},{"SourceID":44441,"TargetID":44439,"Directional":true}]},{"ID":12852,"SourceStructureID":21299,"TargetStructureID":87972,"Label":"21299-87972 via Ribbon Synapse from 44440 -> 87978","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44440,"TargetID":87978,"Directional":true}]},{"ID":12853,"SourceStructureID":21299,"TargetStructureID":87979,"Label":"21299-87979 via Ribbon Synapse from 44441 -> 87980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44441,"TargetID":87980,"Directional":true}]},{"ID":12854,"SourceStructureID":21299,"TargetStructureID":88059,"Label":"21299-88059 via Ribbon Synapse from 48905 -> 88060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48905,"TargetID":88060,"Directional":true}]},{"ID":12855,"SourceStructureID":21299,"TargetStructureID":91737,"Label":"21299-91737 via BC Conventional Synapse from 92845 -> 92846","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92845,"TargetID":92846,"Directional":true}]},{"ID":12856,"SourceStructureID":21299,"TargetStructureID":98238,"Label":"21299-98238 via BC Conventional Synapse from 98242 -> 98243","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98242,"TargetID":98243,"Directional":true}]},{"ID":12857,"SourceStructureID":21299,"TargetStructureID":98838,"Label":"21299-98838 via Ribbon Synapse from 48851 -> 98840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48851,"TargetID":98840,"Directional":true}]},{"ID":12858,"SourceStructureID":21314,"TargetStructureID":5457,"Label":"21314-5457 via Conventional from 103235 -> 15343","Type":"Conventional","Directional":true,"Links":[{"SourceID":103235,"TargetID":15343,"Directional":true}]},{"ID":12859,"SourceStructureID":21384,"TargetStructureID":19571,"Label":"21384-19571 via Conventional from 22768 -> 22769","Type":"Conventional","Directional":true,"Links":[{"SourceID":22768,"TargetID":22769,"Directional":true}]},{"ID":12860,"SourceStructureID":21384,"TargetStructureID":21779,"Label":"21384-21779 via Conventional from 32260 -> 32071","Type":"Conventional","Directional":true,"Links":[{"SourceID":32260,"TargetID":32071,"Directional":true}]},{"ID":12861,"SourceStructureID":21386,"TargetStructureID":21779,"Label":"21386-21779 via Conventional from 32259 -> 32073","Type":"Conventional","Directional":true,"Links":[{"SourceID":32259,"TargetID":32073,"Directional":true}]},{"ID":12862,"SourceStructureID":21778,"TargetStructureID":21779,"Label":"21778-21779 via Conventional from 34536 -> 32060","Type":"Conventional","Directional":true,"Links":[{"SourceID":34536,"TargetID":32060,"Directional":true}]},{"ID":12863,"SourceStructureID":21817,"TargetStructureID":443,"Label":"21817-443 via Conventional from 34612 -> 2031","Type":"Conventional","Directional":true,"Links":[{"SourceID":34612,"TargetID":2031,"Directional":true}]},{"ID":12864,"SourceStructureID":21824,"TargetStructureID":5457,"Label":"21824-5457 via Conventional from 103236 -> 15345","Type":"Conventional","Directional":true,"Links":[{"SourceID":103236,"TargetID":15345,"Directional":true}]},{"ID":12865,"SourceStructureID":21855,"TargetStructureID":7461,"Label":"21855-7461 via Conventional from 41129 -> 30456","Type":"Conventional","Directional":true,"Links":[{"SourceID":41129,"TargetID":30456,"Directional":true}]},{"ID":12866,"SourceStructureID":22225,"TargetStructureID":5545,"Label":"22225-5545 via Conventional from 128202 -> 128203","Type":"Conventional","Directional":true,"Links":[{"SourceID":128202,"TargetID":128203,"Directional":true}]},{"ID":12867,"SourceStructureID":22225,"TargetStructureID":128205,"Label":"22225-128205 via Conventional from 128204 -> 128206","Type":"Conventional","Directional":true,"Links":[{"SourceID":128204,"TargetID":128206,"Directional":true}]},{"ID":12868,"SourceStructureID":22227,"TargetStructureID":98127,"Label":"22227-98127 via Conventional from 98847 -> 98846","Type":"Conventional","Directional":true,"Links":[{"SourceID":98847,"TargetID":98846,"Directional":true}]},{"ID":12869,"SourceStructureID":22228,"TargetStructureID":4850,"Label":"22228-4850 via Conventional from 97962 -> 14540","Type":"Conventional","Directional":true,"Links":[{"SourceID":97962,"TargetID":14540,"Directional":true}]},{"ID":12870,"SourceStructureID":22232,"TargetStructureID":5295,"Label":"22232-5295 via Conventional from 68810 -> 59169","Type":"Conventional","Directional":true,"Links":[{"SourceID":68810,"TargetID":59169,"Directional":true}]},{"ID":12871,"SourceStructureID":22232,"TargetStructureID":5499,"Label":"22232-5499 via Conventional from 68814 -> 95214, 68819 -> 95215","Type":"Conventional","Directional":true,"Links":[{"SourceID":68814,"TargetID":95214,"Directional":true},{"SourceID":68819,"TargetID":95215,"Directional":true}]},{"ID":12872,"SourceStructureID":22232,"TargetStructureID":5922,"Label":"22232-5922 via Conventional from 68827 -> 68847, 68850 -> 68851","Type":"Conventional","Directional":true,"Links":[{"SourceID":68827,"TargetID":68847,"Directional":true},{"SourceID":68850,"TargetID":68851,"Directional":true}]},{"ID":12873,"SourceStructureID":22232,"TargetStructureID":8575,"Label":"22232-8575 via Conventional from 68806 -> 61535","Type":"Conventional","Directional":true,"Links":[{"SourceID":68806,"TargetID":61535,"Directional":true}]},{"ID":12874,"SourceStructureID":22349,"TargetStructureID":4943,"Label":"22349-4943 via Conventional from 96462 -> 4957","Type":"Conventional","Directional":true,"Links":[{"SourceID":96462,"TargetID":4957,"Directional":true}]},{"ID":12875,"SourceStructureID":22358,"TargetStructureID":398,"Label":"22358-398 via Conventional from 37571 -> 37572","Type":"Conventional","Directional":true,"Links":[{"SourceID":37571,"TargetID":37572,"Directional":true}]},{"ID":12876,"SourceStructureID":22368,"TargetStructureID":591,"Label":"22368-591 via Conventional from 29788 -> 10079, 46628 -> 46626","Type":"Conventional","Directional":true,"Links":[{"SourceID":29788,"TargetID":10079,"Directional":true},{"SourceID":46628,"TargetID":46626,"Directional":true}]},{"ID":12877,"SourceStructureID":22374,"TargetStructureID":12208,"Label":"22374-12208 via Cistern Pre from 35736 -> 35737","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":35736,"TargetID":35737,"Directional":true}]},{"ID":12878,"SourceStructureID":22597,"TargetStructureID":98127,"Label":"22597-98127 via Conventional from 98139 -> 98138","Type":"Conventional","Directional":true,"Links":[{"SourceID":98139,"TargetID":98138,"Directional":true}]},{"ID":12879,"SourceStructureID":22634,"TargetStructureID":418,"Label":"22634-418 via Conventional from 22661 -> 129692","Type":"Conventional","Directional":true,"Links":[{"SourceID":22661,"TargetID":129692,"Directional":true}]},{"ID":12880,"SourceStructureID":22760,"TargetStructureID":179,"Label":"22760-179 via Conventional from 25310 -> 25309","Type":"Conventional","Directional":true,"Links":[{"SourceID":25310,"TargetID":25309,"Directional":true}]},{"ID":12881,"SourceStructureID":22772,"TargetStructureID":61439,"Label":"22772-61439 via Conventional from 61441 -> 61440","Type":"Conventional","Directional":true,"Links":[{"SourceID":61441,"TargetID":61440,"Directional":true}]},{"ID":12882,"SourceStructureID":22791,"TargetStructureID":5331,"Label":"22791-5331 via Conventional from 39187 -> 39186","Type":"Conventional","Directional":true,"Links":[{"SourceID":39187,"TargetID":39186,"Directional":true}]},{"ID":12883,"SourceStructureID":22974,"TargetStructureID":22974,"Label":"22974-22974 via Conventional from 70263 -> 70261","Type":"Conventional","Directional":true,"Links":[{"SourceID":70263,"TargetID":70261,"Directional":true}]},{"ID":12884,"SourceStructureID":22994,"TargetStructureID":68539,"Label":"22994-68539 via Ribbon Synapse from 75813 -> 69158, 75931 -> 75932","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75813,"TargetID":69158,"Directional":true},{"SourceID":75931,"TargetID":75932,"Directional":true}]},{"ID":12885,"SourceStructureID":22994,"TargetStructureID":75933,"Label":"22994-75933 via Ribbon Synapse from 75931 -> 75934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75931,"TargetID":75934,"Directional":true}]},{"ID":12886,"SourceStructureID":22994,"TargetStructureID":78909,"Label":"22994-78909 via Ribbon Synapse from 75813 -> 87548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75813,"TargetID":87548,"Directional":true}]},{"ID":12887,"SourceStructureID":23323,"TargetStructureID":5609,"Label":"23323-5609 via Conventional from 31391 -> 31390","Type":"Conventional","Directional":true,"Links":[{"SourceID":31391,"TargetID":31390,"Directional":true}]},{"ID":12888,"SourceStructureID":23512,"TargetStructureID":168,"Label":"23512-168 via Conventional from 23515 -> 125601","Type":"Conventional","Directional":true,"Links":[{"SourceID":23515,"TargetID":125601,"Directional":true}]},{"ID":12889,"SourceStructureID":23512,"TargetStructureID":170,"Label":"23512-170 via Conventional from 23514 -> 1371, 23517 -> 1274, 23531 -> 23532, 23534 -> 1296, 23535 -> 89704","Type":"Conventional","Directional":true,"Links":[{"SourceID":23514,"TargetID":1371,"Directional":true},{"SourceID":23517,"TargetID":1274,"Directional":true},{"SourceID":23531,"TargetID":23532,"Directional":true},{"SourceID":23534,"TargetID":1296,"Directional":true},{"SourceID":23535,"TargetID":89704,"Directional":true}]},{"ID":12890,"SourceStructureID":23512,"TargetStructureID":1724,"Label":"23512-1724 via Conventional from 23540 -> 4008, 23542 -> 1742, 101787 -> 101788","Type":"Conventional","Directional":true,"Links":[{"SourceID":23540,"TargetID":4008,"Directional":true},{"SourceID":23542,"TargetID":1742,"Directional":true},{"SourceID":101787,"TargetID":101788,"Directional":true}]},{"ID":12891,"SourceStructureID":23512,"TargetStructureID":4569,"Label":"23512-4569 via Conventional from 23535 -> 52517, 23536 -> 99075, 23539 -> 23780","Type":"Conventional","Directional":true,"Links":[{"SourceID":23535,"TargetID":52517,"Directional":true},{"SourceID":23536,"TargetID":99075,"Directional":true},{"SourceID":23539,"TargetID":23780,"Directional":true}]},{"ID":12892,"SourceStructureID":23512,"TargetStructureID":5278,"Label":"23512-5278 via Conventional from 99313 -> 20113","Type":"Conventional","Directional":true,"Links":[{"SourceID":99313,"TargetID":20113,"Directional":true}]},{"ID":12893,"SourceStructureID":23512,"TargetStructureID":5530,"Label":"23512-5530 via Conventional from 23520 -> 76494","Type":"Conventional","Directional":true,"Links":[{"SourceID":23520,"TargetID":76494,"Directional":true}]},{"ID":12894,"SourceStructureID":23512,"TargetStructureID":6156,"Label":"23512-6156 via Conventional from 133160 -> 133159","Type":"Conventional","Directional":true,"Links":[{"SourceID":133160,"TargetID":133159,"Directional":true}]},{"ID":12895,"SourceStructureID":23512,"TargetStructureID":10596,"Label":"23512-10596 via Conventional from 23521 -> 33213","Type":"Conventional","Directional":true,"Links":[{"SourceID":23521,"TargetID":33213,"Directional":true}]},{"ID":12896,"SourceStructureID":23512,"TargetStructureID":33675,"Label":"23512-33675 via Conventional from 33681 -> 33680","Type":"Conventional","Directional":true,"Links":[{"SourceID":33681,"TargetID":33680,"Directional":true}]},{"ID":12897,"SourceStructureID":23512,"TargetStructureID":82677,"Label":"23512-82677 via Conventional from 83886 -> 83887","Type":"Conventional","Directional":true,"Links":[{"SourceID":83886,"TargetID":83887,"Directional":true}]},{"ID":12898,"SourceStructureID":23566,"TargetStructureID":168,"Label":"23566-168 via Conventional from 23573 -> 23576, 23574 -> 23575","Type":"Conventional","Directional":true,"Links":[{"SourceID":23573,"TargetID":23576,"Directional":true},{"SourceID":23574,"TargetID":23575,"Directional":true}]},{"ID":12899,"SourceStructureID":23566,"TargetStructureID":170,"Label":"23566-170 via Conventional from 88393 -> 88394","Type":"Conventional","Directional":true,"Links":[{"SourceID":88393,"TargetID":88394,"Directional":true}]},{"ID":12900,"SourceStructureID":23566,"TargetStructureID":4569,"Label":"23566-4569 via Conventional from 23570 -> 23565","Type":"Conventional","Directional":true,"Links":[{"SourceID":23570,"TargetID":23565,"Directional":true}]},{"ID":12901,"SourceStructureID":23836,"TargetStructureID":345,"Label":"23836-345 via Conventional from 23854 -> 64334","Type":"Conventional","Directional":true,"Links":[{"SourceID":23854,"TargetID":64334,"Directional":true}]},{"ID":12902,"SourceStructureID":23836,"TargetStructureID":606,"Label":"23836-606 via Conventional from 23837 -> 10512, 23838 -> 10510, 23847 -> 23848, 23863 -> 54138, 23866 -> 48126, 51776 -> 51775, 53643 -> 53645, 53912 -> 53909, 53914 -> 44234, 53927 -> 53926, 53935 -> 53936, 54561 -> 54562","Type":"Conventional","Directional":true,"Links":[{"SourceID":23837,"TargetID":10512,"Directional":true},{"SourceID":23838,"TargetID":10510,"Directional":true},{"SourceID":23847,"TargetID":23848,"Directional":true},{"SourceID":23863,"TargetID":54138,"Directional":true},{"SourceID":23866,"TargetID":48126,"Directional":true},{"SourceID":51776,"TargetID":51775,"Directional":true},{"SourceID":53643,"TargetID":53645,"Directional":true},{"SourceID":53912,"TargetID":53909,"Directional":true},{"SourceID":53914,"TargetID":44234,"Directional":true},{"SourceID":53927,"TargetID":53926,"Directional":true},{"SourceID":53935,"TargetID":53936,"Directional":true},{"SourceID":54561,"TargetID":54562,"Directional":true}]},{"ID":12903,"SourceStructureID":23836,"TargetStructureID":5468,"Label":"23836-5468 via Conventional from 23867 -> 23877","Type":"Conventional","Directional":true,"Links":[{"SourceID":23867,"TargetID":23877,"Directional":true}]},{"ID":12904,"SourceStructureID":23836,"TargetStructureID":5530,"Label":"23836-5530 via Conventional from 23839 -> 23845","Type":"Conventional","Directional":true,"Links":[{"SourceID":23839,"TargetID":23845,"Directional":true}]},{"ID":12905,"SourceStructureID":23836,"TargetStructureID":5531,"Label":"23836-5531 via Conventional from 106244 -> 59572","Type":"Conventional","Directional":true,"Links":[{"SourceID":106244,"TargetID":59572,"Directional":true}]},{"ID":12906,"SourceStructureID":23836,"TargetStructureID":5601,"Label":"23836-5601 via Conventional from 23865 -> 127422, 127408 -> 127406","Type":"Conventional","Directional":true,"Links":[{"SourceID":23865,"TargetID":127422,"Directional":true},{"SourceID":127408,"TargetID":127406,"Directional":true}]},{"ID":12907,"SourceStructureID":23836,"TargetStructureID":7594,"Label":"23836-7594 via Conventional from 23864 -> 7609","Type":"Conventional","Directional":true,"Links":[{"SourceID":23864,"TargetID":7609,"Directional":true}]},{"ID":12908,"SourceStructureID":23836,"TargetStructureID":23870,"Label":"23836-23870 via Conventional from 23868 -> 92944, 23871 -> 23872","Type":"Conventional","Directional":true,"Links":[{"SourceID":23868,"TargetID":92944,"Directional":true},{"SourceID":23871,"TargetID":23872,"Directional":true}]},{"ID":12909,"SourceStructureID":23836,"TargetStructureID":74047,"Label":"23836-74047 via Conventional from 74325 -> 74323","Type":"Conventional","Directional":true,"Links":[{"SourceID":74325,"TargetID":74323,"Directional":true}]},{"ID":12910,"SourceStructureID":24148,"TargetStructureID":5562,"Label":"24148-5562 via Conventional from 76635 -> 76634","Type":"Conventional","Directional":true,"Links":[{"SourceID":76635,"TargetID":76634,"Directional":true}]},{"ID":12911,"SourceStructureID":24174,"TargetStructureID":5598,"Label":"24174-5598 via Conventional from 24181 -> 115033","Type":"Conventional","Directional":true,"Links":[{"SourceID":24181,"TargetID":115033,"Directional":true}]},{"ID":12912,"SourceStructureID":24174,"TargetStructureID":5609,"Label":"24174-5609 via Conventional from 24175 -> 20646","Type":"Conventional","Directional":true,"Links":[{"SourceID":24175,"TargetID":20646,"Directional":true}]},{"ID":12913,"SourceStructureID":24174,"TargetStructureID":5641,"Label":"24174-5641 via Conventional from 24177 -> 20678","Type":"Conventional","Directional":true,"Links":[{"SourceID":24177,"TargetID":20678,"Directional":true}]},{"ID":12914,"SourceStructureID":24241,"TargetStructureID":175,"Label":"24241-175 via Conventional from 24258 -> 24288","Type":"Conventional","Directional":true,"Links":[{"SourceID":24258,"TargetID":24288,"Directional":true}]},{"ID":12915,"SourceStructureID":24241,"TargetStructureID":178,"Label":"24241-178 via Conventional from 24260 -> 3263, 24261 -> 3261","Type":"Conventional","Directional":true,"Links":[{"SourceID":24260,"TargetID":3263,"Directional":true},{"SourceID":24261,"TargetID":3261,"Directional":true}]},{"ID":12916,"SourceStructureID":24241,"TargetStructureID":325,"Label":"24241-325 via Conventional from 24283 -> 31943","Type":"Conventional","Directional":true,"Links":[{"SourceID":24283,"TargetID":31943,"Directional":true}]},{"ID":12917,"SourceStructureID":24241,"TargetStructureID":426,"Label":"24241-426 via Conventional from 24276 -> 21583, 24277 -> 21584","Type":"Conventional","Directional":true,"Links":[{"SourceID":24276,"TargetID":21583,"Directional":true},{"SourceID":24277,"TargetID":21584,"Directional":true}]},{"ID":12918,"SourceStructureID":24241,"TargetStructureID":9643,"Label":"24241-9643 via Conventional from 24280 -> 9677","Type":"Conventional","Directional":true,"Links":[{"SourceID":24280,"TargetID":9677,"Directional":true}]},{"ID":12919,"SourceStructureID":24303,"TargetStructureID":598,"Label":"24303-598 via Ribbon Synapse from 38782 -> 38775, 38784 -> 38783","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38782,"TargetID":38775,"Directional":true},{"SourceID":38784,"TargetID":38783,"Directional":true}]},{"ID":12920,"SourceStructureID":24303,"TargetStructureID":606,"Label":"24303-606 via Ribbon Synapse from 38780 -> 38779","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38780,"TargetID":38779,"Directional":true}]},{"ID":12921,"SourceStructureID":24303,"TargetStructureID":9769,"Label":"24303-9769 via Ribbon Synapse from 30073 -> 30074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30073,"TargetID":30074,"Directional":true}]},{"ID":12922,"SourceStructureID":24366,"TargetStructureID":12408,"Label":"24366-12408 via Ribbon Synapse from 24377 -> 12431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24377,"TargetID":12431,"Directional":true}]},{"ID":12923,"SourceStructureID":24366,"TargetStructureID":24381,"Label":"24366-24381 via Ribbon Synapse from 24385 -> 24384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24385,"TargetID":24384,"Directional":true}]},{"ID":12924,"SourceStructureID":24381,"TargetStructureID":9769,"Label":"24381-9769 via Conventional from 24382 -> 12401","Type":"Conventional","Directional":true,"Links":[{"SourceID":24382,"TargetID":12401,"Directional":true}]},{"ID":12925,"SourceStructureID":24401,"TargetStructureID":598,"Label":"24401-598 via Ribbon Synapse from 38801 -> 38802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38801,"TargetID":38802,"Directional":true}]},{"ID":12926,"SourceStructureID":24401,"TargetStructureID":6155,"Label":"24401-6155 via Ribbon Synapse from 104947 -> 104948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104947,"TargetID":104948,"Directional":true}]},{"ID":12927,"SourceStructureID":24401,"TargetStructureID":8575,"Label":"24401-8575 via BC Conventional Synapse from 34802 -> 61561, 48107 -> 38618, 62383 -> 62382, 63011 -> 21646, 64348 -> 64347","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":34802,"TargetID":61561,"Directional":true},{"SourceID":48107,"TargetID":38618,"Directional":true},{"SourceID":62383,"TargetID":62382,"Directional":true},{"SourceID":63011,"TargetID":21646,"Directional":true},{"SourceID":64348,"TargetID":64347,"Directional":true}]},{"ID":12928,"SourceStructureID":24401,"TargetStructureID":8575,"Label":"24401-8575 via Ribbon Synapse from 32262 -> 21646","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32262,"TargetID":21646,"Directional":true}]},{"ID":12929,"SourceStructureID":24401,"TargetStructureID":11485,"Label":"24401-11485 via Ribbon Synapse from 32266 -> 11486, 32268 -> 11486","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32266,"TargetID":11486,"Directional":true},{"SourceID":32268,"TargetID":11486,"Directional":true}]},{"ID":12930,"SourceStructureID":24401,"TargetStructureID":15796,"Label":"24401-15796 via Ribbon Synapse from 34751 -> 19834","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34751,"TargetID":19834,"Directional":true}]},{"ID":12931,"SourceStructureID":24401,"TargetStructureID":22232,"Label":"24401-22232 via Ribbon Synapse from 48194 -> 68807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48194,"TargetID":68807,"Directional":true}]},{"ID":12932,"SourceStructureID":24401,"TargetStructureID":22974,"Label":"24401-22974 via Ribbon Synapse from 48068 -> 15478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48068,"TargetID":15478,"Directional":true}]},{"ID":12933,"SourceStructureID":24401,"TargetStructureID":33127,"Label":"24401-33127 via Ribbon Synapse from 34803 -> 34804","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34803,"TargetID":34804,"Directional":true}]},{"ID":12934,"SourceStructureID":24401,"TargetStructureID":35969,"Label":"24401-35969 via Ribbon Synapse from 33070 -> 35971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33070,"TargetID":35971,"Directional":true}]},{"ID":12935,"SourceStructureID":24401,"TargetStructureID":39841,"Label":"24401-39841 via Ribbon Synapse from 39842 -> 39843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39842,"TargetID":39843,"Directional":true}]},{"ID":12936,"SourceStructureID":24401,"TargetStructureID":47104,"Label":"24401-47104 via Ribbon Synapse from 47128 -> 47129","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47128,"TargetID":47129,"Directional":true}]},{"ID":12937,"SourceStructureID":24401,"TargetStructureID":61864,"Label":"24401-61864 via Ribbon Synapse from 48138 -> 69310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48138,"TargetID":69310,"Directional":true}]},{"ID":12938,"SourceStructureID":24401,"TargetStructureID":129666,"Label":"24401-129666 via Ribbon Synapse from 34798 -> 129671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34798,"TargetID":129671,"Directional":true}]},{"ID":12939,"SourceStructureID":24909,"TargetStructureID":5622,"Label":"24909-5622 via Conventional from 24918 -> 24916","Type":"Conventional","Directional":true,"Links":[{"SourceID":24918,"TargetID":24916,"Directional":true}]},{"ID":12940,"SourceStructureID":24909,"TargetStructureID":5671,"Label":"24909-5671 via Conventional from 24919 -> 24933","Type":"Conventional","Directional":true,"Links":[{"SourceID":24919,"TargetID":24933,"Directional":true}]},{"ID":12941,"SourceStructureID":24947,"TargetStructureID":7050,"Label":"24947-7050 via Conventional from 24948 -> 24946","Type":"Conventional","Directional":true,"Links":[{"SourceID":24948,"TargetID":24946,"Directional":true}]},{"ID":12942,"SourceStructureID":25155,"TargetStructureID":606,"Label":"25155-606 via Ribbon Synapse from 34639 -> 44308, 38206 -> 44324, 44335 -> 44334, 50709 -> 50711, 53751 -> 44254, 54366 -> 54367, 54388 -> 54389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34639,"TargetID":44308,"Directional":true},{"SourceID":38206,"TargetID":44324,"Directional":true},{"SourceID":44335,"TargetID":44334,"Directional":true},{"SourceID":50709,"TargetID":50711,"Directional":true},{"SourceID":53751,"TargetID":44254,"Directional":true},{"SourceID":54366,"TargetID":54367,"Directional":true},{"SourceID":54388,"TargetID":54389,"Directional":true}]},{"ID":12943,"SourceStructureID":25155,"TargetStructureID":5451,"Label":"25155-5451 via BC Conventional Synapse from 55941 -> 55942","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55941,"TargetID":55942,"Directional":true}]},{"ID":12944,"SourceStructureID":25155,"TargetStructureID":7594,"Label":"25155-7594 via Ribbon Synapse from 25156 -> 25153, 38207 -> 38208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25156,"TargetID":25153,"Directional":true},{"SourceID":38207,"TargetID":38208,"Directional":true}]},{"ID":12945,"SourceStructureID":25155,"TargetStructureID":9769,"Label":"25155-9769 via Ribbon Synapse from 29883 -> 29884","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29883,"TargetID":29884,"Directional":true}]},{"ID":12946,"SourceStructureID":25155,"TargetStructureID":35188,"Label":"25155-35188 via Ribbon Synapse from 38230 -> 38229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38230,"TargetID":38229,"Directional":true}]},{"ID":12947,"SourceStructureID":25155,"TargetStructureID":35308,"Label":"25155-35308 via Ribbon Synapse from 35315 -> 35312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35315,"TargetID":35312,"Directional":true}]},{"ID":12948,"SourceStructureID":25182,"TargetStructureID":11229,"Label":"25182-11229 via Conventional from 25183 -> 25184, 25189 -> 15631","Type":"Conventional","Directional":true,"Links":[{"SourceID":25183,"TargetID":25184,"Directional":true},{"SourceID":25189,"TargetID":15631,"Directional":true}]},{"ID":12949,"SourceStructureID":25293,"TargetStructureID":5528,"Label":"25293-5528 via Conventional from 25294 -> 25295, 25298 -> 8258","Type":"Conventional","Directional":true,"Links":[{"SourceID":25294,"TargetID":25295,"Directional":true},{"SourceID":25298,"TargetID":8258,"Directional":true}]},{"ID":12950,"SourceStructureID":25293,"TargetStructureID":5530,"Label":"25293-5530 via Conventional from 81128 -> 81129","Type":"Conventional","Directional":true,"Links":[{"SourceID":81128,"TargetID":81129,"Directional":true}]},{"ID":12951,"SourceStructureID":25293,"TargetStructureID":5531,"Label":"25293-5531 via Conventional from 114739 -> 114740","Type":"Conventional","Directional":true,"Links":[{"SourceID":114739,"TargetID":114740,"Directional":true}]},{"ID":12952,"SourceStructureID":25327,"TargetStructureID":519,"Label":"25327-519 via Conventional from 25328 -> 25337, 25329 -> 25336, 25330 -> 25335, 25334 -> 16517","Type":"Conventional","Directional":true,"Links":[{"SourceID":25328,"TargetID":25337,"Directional":true},{"SourceID":25329,"TargetID":25336,"Directional":true},{"SourceID":25330,"TargetID":25335,"Directional":true},{"SourceID":25334,"TargetID":16517,"Directional":true}]},{"ID":12953,"SourceStructureID":25327,"TargetStructureID":11401,"Label":"25327-11401 via Conventional from 25340 -> 25341","Type":"Conventional","Directional":true,"Links":[{"SourceID":25340,"TargetID":25341,"Directional":true}]},{"ID":12954,"SourceStructureID":25342,"TargetStructureID":11401,"Label":"25342-11401 via Conventional from 25347 -> 25348","Type":"Conventional","Directional":true,"Links":[{"SourceID":25347,"TargetID":25348,"Directional":true}]},{"ID":12955,"SourceStructureID":25350,"TargetStructureID":519,"Label":"25350-519 via Conventional from 25351 -> 25349","Type":"Conventional","Directional":true,"Links":[{"SourceID":25351,"TargetID":25349,"Directional":true}]},{"ID":12956,"SourceStructureID":25352,"TargetStructureID":469,"Label":"25352-469 via Conventional from 32287 -> 32285","Type":"Conventional","Directional":true,"Links":[{"SourceID":32287,"TargetID":32285,"Directional":true}]},{"ID":12957,"SourceStructureID":25352,"TargetStructureID":519,"Label":"25352-519 via Conventional from 25353 -> 25338","Type":"Conventional","Directional":true,"Links":[{"SourceID":25353,"TargetID":25338,"Directional":true}]},{"ID":12958,"SourceStructureID":25352,"TargetStructureID":8749,"Label":"25352-8749 via Conventional from 32290 -> 32289","Type":"Conventional","Directional":true,"Links":[{"SourceID":32290,"TargetID":32289,"Directional":true}]},{"ID":12959,"SourceStructureID":25355,"TargetStructureID":519,"Label":"25355-519 via Conventional from 25356 -> 25357","Type":"Conventional","Directional":true,"Links":[{"SourceID":25356,"TargetID":25357,"Directional":true}]},{"ID":12960,"SourceStructureID":25359,"TargetStructureID":519,"Label":"25359-519 via Conventional from 25360 -> 16529, 25361 -> 25362","Type":"Conventional","Directional":true,"Links":[{"SourceID":25360,"TargetID":16529,"Directional":true},{"SourceID":25361,"TargetID":25362,"Directional":true}]},{"ID":12961,"SourceStructureID":25364,"TargetStructureID":518,"Label":"25364-518 via Conventional from 25366 -> 3509","Type":"Conventional","Directional":true,"Links":[{"SourceID":25366,"TargetID":3509,"Directional":true}]},{"ID":12962,"SourceStructureID":25364,"TargetStructureID":519,"Label":"25364-519 via Conventional from 25365 -> 9244","Type":"Conventional","Directional":true,"Links":[{"SourceID":25365,"TargetID":9244,"Directional":true}]},{"ID":12963,"SourceStructureID":25367,"TargetStructureID":469,"Label":"25367-469 via Conventional from 82357 -> 4670, 82359 -> 82358","Type":"Conventional","Directional":true,"Links":[{"SourceID":82357,"TargetID":4670,"Directional":true},{"SourceID":82359,"TargetID":82358,"Directional":true}]},{"ID":12964,"SourceStructureID":25367,"TargetStructureID":485,"Label":"25367-485 via Conventional from 25370 -> 25371","Type":"Conventional","Directional":true,"Links":[{"SourceID":25370,"TargetID":25371,"Directional":true}]},{"ID":12965,"SourceStructureID":25367,"TargetStructureID":519,"Label":"25367-519 via Conventional from 25368 -> 9253","Type":"Conventional","Directional":true,"Links":[{"SourceID":25368,"TargetID":9253,"Directional":true}]},{"ID":12966,"SourceStructureID":25367,"TargetStructureID":593,"Label":"25367-593 via Conventional from 68027 -> 68028","Type":"Conventional","Directional":true,"Links":[{"SourceID":68027,"TargetID":68028,"Directional":true}]},{"ID":12967,"SourceStructureID":25367,"TargetStructureID":5562,"Label":"25367-5562 via Conventional from 82348 -> 79894","Type":"Conventional","Directional":true,"Links":[{"SourceID":82348,"TargetID":79894,"Directional":true}]},{"ID":12968,"SourceStructureID":25367,"TargetStructureID":6156,"Label":"25367-6156 via Conventional from 82346 -> 82347","Type":"Conventional","Directional":true,"Links":[{"SourceID":82346,"TargetID":82347,"Directional":true}]},{"ID":12969,"SourceStructureID":25367,"TargetStructureID":82353,"Label":"25367-82353 via Conventional from 82352 -> 82354","Type":"Conventional","Directional":true,"Links":[{"SourceID":82352,"TargetID":82354,"Directional":true}]},{"ID":12970,"SourceStructureID":25374,"TargetStructureID":514,"Label":"25374-514 via Conventional from 25376 -> 25377","Type":"Conventional","Directional":true,"Links":[{"SourceID":25376,"TargetID":25377,"Directional":true}]},{"ID":12971,"SourceStructureID":25382,"TargetStructureID":519,"Label":"25382-519 via Conventional from 25383 -> 25384","Type":"Conventional","Directional":true,"Links":[{"SourceID":25383,"TargetID":25384,"Directional":true}]},{"ID":12972,"SourceStructureID":25392,"TargetStructureID":485,"Label":"25392-485 via Conventional from 32295 -> 32296","Type":"Conventional","Directional":true,"Links":[{"SourceID":32295,"TargetID":32296,"Directional":true}]},{"ID":12973,"SourceStructureID":25392,"TargetStructureID":519,"Label":"25392-519 via Conventional from 25393 -> 25394","Type":"Conventional","Directional":true,"Links":[{"SourceID":25393,"TargetID":25394,"Directional":true}]},{"ID":12974,"SourceStructureID":25392,"TargetStructureID":606,"Label":"25392-606 via Conventional from 32299 -> 32300","Type":"Conventional","Directional":true,"Links":[{"SourceID":32299,"TargetID":32300,"Directional":true}]},{"ID":12975,"SourceStructureID":25392,"TargetStructureID":906,"Label":"25392-906 via Conventional from 27340 -> 15237","Type":"Conventional","Directional":true,"Links":[{"SourceID":27340,"TargetID":15237,"Directional":true}]},{"ID":12976,"SourceStructureID":25392,"TargetStructureID":5315,"Label":"25392-5315 via Conventional from 32303 -> 26948","Type":"Conventional","Directional":true,"Links":[{"SourceID":32303,"TargetID":26948,"Directional":true}]},{"ID":12977,"SourceStructureID":25402,"TargetStructureID":369,"Label":"25402-369 via Conventional from 100655 -> 100657","Type":"Conventional","Directional":true,"Links":[{"SourceID":100655,"TargetID":100657,"Directional":true}]},{"ID":12978,"SourceStructureID":25402,"TargetStructureID":419,"Label":"25402-419 via Conventional from 100642 -> 20368","Type":"Conventional","Directional":true,"Links":[{"SourceID":100642,"TargetID":20368,"Directional":true}]},{"ID":12979,"SourceStructureID":25402,"TargetStructureID":519,"Label":"25402-519 via Conventional from 25403 -> 25404","Type":"Conventional","Directional":true,"Links":[{"SourceID":25403,"TargetID":25404,"Directional":true}]},{"ID":12980,"SourceStructureID":25402,"TargetStructureID":12897,"Label":"25402-12897 via Conventional from 100746 -> 100747","Type":"Conventional","Directional":true,"Links":[{"SourceID":100746,"TargetID":100747,"Directional":true}]},{"ID":12981,"SourceStructureID":25402,"TargetStructureID":101369,"Label":"25402-101369 via Conventional from 100663 -> 101370","Type":"Conventional","Directional":true,"Links":[{"SourceID":100663,"TargetID":101370,"Directional":true}]},{"ID":12982,"SourceStructureID":25405,"TargetStructureID":519,"Label":"25405-519 via Conventional from 25406 -> 3582","Type":"Conventional","Directional":true,"Links":[{"SourceID":25406,"TargetID":3582,"Directional":true}]},{"ID":12983,"SourceStructureID":25405,"TargetStructureID":2610,"Label":"25405-2610 via Conventional from 25407 -> 17177","Type":"Conventional","Directional":true,"Links":[{"SourceID":25407,"TargetID":17177,"Directional":true}]},{"ID":12984,"SourceStructureID":25410,"TargetStructureID":8749,"Label":"25410-8749 via Conventional from 25411 -> 8862, 25412 -> 8855, 25413 -> 25414, 123208 -> 8863","Type":"Conventional","Directional":true,"Links":[{"SourceID":25411,"TargetID":8862,"Directional":true},{"SourceID":25412,"TargetID":8855,"Directional":true},{"SourceID":25413,"TargetID":25414,"Directional":true},{"SourceID":123208,"TargetID":8863,"Directional":true}]},{"ID":12985,"SourceStructureID":25429,"TargetStructureID":519,"Label":"25429-519 via Conventional from 25431 -> 25432","Type":"Conventional","Directional":true,"Links":[{"SourceID":25431,"TargetID":25432,"Directional":true}]},{"ID":12986,"SourceStructureID":25440,"TargetStructureID":10943,"Label":"25440-10943 via Touch from 25454 -> 25453","Type":"Touch","Directional":true,"Links":[{"SourceID":25454,"TargetID":25453,"Directional":true}]},{"ID":12987,"SourceStructureID":25440,"TargetStructureID":11031,"Label":"25440-11031 via Touch from 25441 -> 25452","Type":"Touch","Directional":true,"Links":[{"SourceID":25441,"TargetID":25452,"Directional":true}]},{"ID":12988,"SourceStructureID":25466,"TargetStructureID":485,"Label":"25466-485 via Conventional from 32239 -> 32240, 32241 -> 32243","Type":"Conventional","Directional":true,"Links":[{"SourceID":32239,"TargetID":32240,"Directional":true},{"SourceID":32241,"TargetID":32243,"Directional":true}]},{"ID":12989,"SourceStructureID":25466,"TargetStructureID":519,"Label":"25466-519 via Conventional from 25468 -> 25469, 25473 -> 3612, 32238 -> 32237","Type":"Conventional","Directional":true,"Links":[{"SourceID":25468,"TargetID":25469,"Directional":true},{"SourceID":25473,"TargetID":3612,"Directional":true},{"SourceID":32238,"TargetID":32237,"Directional":true}]},{"ID":12990,"SourceStructureID":25529,"TargetStructureID":519,"Label":"25529-519 via Conventional from 25531 -> 25532","Type":"Conventional","Directional":true,"Links":[{"SourceID":25531,"TargetID":25532,"Directional":true}]},{"ID":12991,"SourceStructureID":25529,"TargetStructureID":2610,"Label":"25529-2610 via Conventional from 25543 -> 13819","Type":"Conventional","Directional":true,"Links":[{"SourceID":25543,"TargetID":13819,"Directional":true}]},{"ID":12992,"SourceStructureID":25551,"TargetStructureID":519,"Label":"25551-519 via Conventional from 25552 -> 25553","Type":"Conventional","Directional":true,"Links":[{"SourceID":25552,"TargetID":25553,"Directional":true}]},{"ID":12993,"SourceStructureID":25551,"TargetStructureID":22554,"Label":"25551-22554 via Conventional from 123154 -> 123155","Type":"Conventional","Directional":true,"Links":[{"SourceID":123154,"TargetID":123155,"Directional":true}]},{"ID":12994,"SourceStructureID":25561,"TargetStructureID":519,"Label":"25561-519 via Conventional from 25562 -> 3592","Type":"Conventional","Directional":true,"Links":[{"SourceID":25562,"TargetID":3592,"Directional":true}]},{"ID":12995,"SourceStructureID":25575,"TargetStructureID":519,"Label":"25575-519 via Conventional from 25576 -> 25633, 25578 -> 25579","Type":"Conventional","Directional":true,"Links":[{"SourceID":25576,"TargetID":25633,"Directional":true},{"SourceID":25578,"TargetID":25579,"Directional":true}]},{"ID":12996,"SourceStructureID":25575,"TargetStructureID":5017,"Label":"25575-5017 via Conventional from 25584 -> 25585","Type":"Conventional","Directional":true,"Links":[{"SourceID":25584,"TargetID":25585,"Directional":true}]},{"ID":12997,"SourceStructureID":25575,"TargetStructureID":10959,"Label":"25575-10959 via Conventional from 25665 -> 25666","Type":"Conventional","Directional":true,"Links":[{"SourceID":25665,"TargetID":25666,"Directional":true}]},{"ID":12998,"SourceStructureID":25669,"TargetStructureID":519,"Label":"25669-519 via Conventional from 25680 -> 25681","Type":"Conventional","Directional":true,"Links":[{"SourceID":25680,"TargetID":25681,"Directional":true}]},{"ID":12999,"SourceStructureID":25669,"TargetStructureID":6169,"Label":"25669-6169 via Conventional from 123143 -> 123144, 123145 -> 18396","Type":"Conventional","Directional":true,"Links":[{"SourceID":123143,"TargetID":123144,"Directional":true},{"SourceID":123145,"TargetID":18396,"Directional":true}]},{"ID":13000,"SourceStructureID":25688,"TargetStructureID":294,"Label":"25688-294 via Conventional from 25693 -> 25694, 25695 -> 25696, 123150 -> 123151","Type":"Conventional","Directional":true,"Links":[{"SourceID":25693,"TargetID":25694,"Directional":true},{"SourceID":25695,"TargetID":25696,"Directional":true},{"SourceID":123150,"TargetID":123151,"Directional":true}]},{"ID":13001,"SourceStructureID":25688,"TargetStructureID":410,"Label":"25688-410 via Conventional from 25697 -> 25698","Type":"Conventional","Directional":true,"Links":[{"SourceID":25697,"TargetID":25698,"Directional":true}]},{"ID":13002,"SourceStructureID":25688,"TargetStructureID":519,"Label":"25688-519 via Conventional from 25689 -> 25690, 25691 -> 25692","Type":"Conventional","Directional":true,"Links":[{"SourceID":25689,"TargetID":25690,"Directional":true},{"SourceID":25691,"TargetID":25692,"Directional":true}]},{"ID":13003,"SourceStructureID":25858,"TargetStructureID":519,"Label":"25858-519 via Conventional from 25859 -> 25860","Type":"Conventional","Directional":true,"Links":[{"SourceID":25859,"TargetID":25860,"Directional":true}]},{"ID":13004,"SourceStructureID":25861,"TargetStructureID":519,"Label":"25861-519 via Conventional from 25862 -> 25863","Type":"Conventional","Directional":true,"Links":[{"SourceID":25862,"TargetID":25863,"Directional":true}]},{"ID":13005,"SourceStructureID":25861,"TargetStructureID":6156,"Label":"25861-6156 via Conventional from 133275 -> 23167","Type":"Conventional","Directional":true,"Links":[{"SourceID":133275,"TargetID":23167,"Directional":true}]},{"ID":13006,"SourceStructureID":25865,"TargetStructureID":483,"Label":"25865-483 via Conventional from 133438 -> 133437","Type":"Conventional","Directional":true,"Links":[{"SourceID":133438,"TargetID":133437,"Directional":true}]},{"ID":13007,"SourceStructureID":25865,"TargetStructureID":519,"Label":"25865-519 via Conventional from 25866 -> 25867, 32245 -> 32244","Type":"Conventional","Directional":true,"Links":[{"SourceID":25866,"TargetID":25867,"Directional":true},{"SourceID":32245,"TargetID":32244,"Directional":true}]},{"ID":13008,"SourceStructureID":25865,"TargetStructureID":24401,"Label":"25865-24401 via Conventional from 32255 -> 32269","Type":"Conventional","Directional":true,"Links":[{"SourceID":32255,"TargetID":32269,"Directional":true}]},{"ID":13009,"SourceStructureID":25865,"TargetStructureID":26079,"Label":"25865-26079 via Conventional from 32248 -> 29817, 32253 -> 32252, 32270 -> 26191","Type":"Conventional","Directional":true,"Links":[{"SourceID":32248,"TargetID":29817,"Directional":true},{"SourceID":32253,"TargetID":32252,"Directional":true},{"SourceID":32270,"TargetID":26191,"Directional":true}]},{"ID":13010,"SourceStructureID":25869,"TargetStructureID":485,"Label":"25869-485 via Conventional from 45667 -> 45668","Type":"Conventional","Directional":true,"Links":[{"SourceID":45667,"TargetID":45668,"Directional":true}]},{"ID":13011,"SourceStructureID":25869,"TargetStructureID":519,"Label":"25869-519 via Conventional from 25870 -> 25871","Type":"Conventional","Directional":true,"Links":[{"SourceID":25870,"TargetID":25871,"Directional":true}]},{"ID":13012,"SourceStructureID":25869,"TargetStructureID":6912,"Label":"25869-6912 via Conventional from 98608 -> 6952","Type":"Conventional","Directional":true,"Links":[{"SourceID":98608,"TargetID":6952,"Directional":true}]},{"ID":13013,"SourceStructureID":25879,"TargetStructureID":9769,"Label":"25879-9769 via Conventional from 25887 -> 25876","Type":"Conventional","Directional":true,"Links":[{"SourceID":25887,"TargetID":25876,"Directional":true}]},{"ID":13014,"SourceStructureID":26079,"TargetStructureID":7568,"Label":"26079-7568 via Ribbon Synapse from 27028 -> 27027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27028,"TargetID":27027,"Directional":true}]},{"ID":13015,"SourceStructureID":26079,"TargetStructureID":9769,"Label":"26079-9769 via Ribbon Synapse from 29813 -> 29812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29813,"TargetID":29812,"Directional":true}]},{"ID":13016,"SourceStructureID":26079,"TargetStructureID":15796,"Label":"26079-15796 via Ribbon Synapse from 29813 -> 29816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29813,"TargetID":29816,"Directional":true}]},{"ID":13017,"SourceStructureID":26079,"TargetStructureID":25865,"Label":"26079-25865 via Ribbon Synapse from 32247 -> 32246, 32250 -> 32251, 32272 -> 32271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32247,"TargetID":32246,"Directional":true},{"SourceID":32250,"TargetID":32251,"Directional":true},{"SourceID":32272,"TargetID":32271,"Directional":true}]},{"ID":13018,"SourceStructureID":26079,"TargetStructureID":35894,"Label":"26079-35894 via Ribbon Synapse from 35909 -> 35908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35909,"TargetID":35908,"Directional":true}]},{"ID":13019,"SourceStructureID":26079,"TargetStructureID":47013,"Label":"26079-47013 via Ribbon Synapse from 47022 -> 47021, 47034 -> 47031, 47035 -> 47033, 47044 -> 47041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47022,"TargetID":47021,"Directional":true},{"SourceID":47034,"TargetID":47031,"Directional":true},{"SourceID":47035,"TargetID":47033,"Directional":true},{"SourceID":47044,"TargetID":47041,"Directional":true}]},{"ID":13020,"SourceStructureID":26079,"TargetStructureID":84876,"Label":"26079-84876 via Ribbon Synapse from 102910 -> 102913","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102910,"TargetID":102913,"Directional":true}]},{"ID":13021,"SourceStructureID":26304,"TargetStructureID":284,"Label":"26304-284 via Ribbon Synapse from 26305 -> 26296","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26305,"TargetID":26296,"Directional":true}]},{"ID":13022,"SourceStructureID":26304,"TargetStructureID":456,"Label":"26304-456 via Ribbon Synapse from 26324 -> 26325","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26324,"TargetID":26325,"Directional":true}]},{"ID":13023,"SourceStructureID":26304,"TargetStructureID":7157,"Label":"26304-7157 via Ribbon Synapse from 26307 -> 26303, 26331 -> 26332","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26307,"TargetID":26303,"Directional":true},{"SourceID":26331,"TargetID":26332,"Directional":true}]},{"ID":13024,"SourceStructureID":26497,"TargetStructureID":26304,"Label":"26497-26304 via Conventional from 44490 -> 44489","Type":"Conventional","Directional":true,"Links":[{"SourceID":44490,"TargetID":44489,"Directional":true}]},{"ID":13025,"SourceStructureID":26971,"TargetStructureID":26971,"Label":"26971-26971 via Cistern Pre from 38144 -> 26985","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":38144,"TargetID":26985,"Directional":true}]},{"ID":13026,"SourceStructureID":27288,"TargetStructureID":485,"Label":"27288-485 via Conventional from 27289 -> 27292","Type":"Conventional","Directional":true,"Links":[{"SourceID":27289,"TargetID":27292,"Directional":true}]},{"ID":13027,"SourceStructureID":27288,"TargetStructureID":13855,"Label":"27288-13855 via Conventional from 27290 -> 27291","Type":"Conventional","Directional":true,"Links":[{"SourceID":27290,"TargetID":27291,"Directional":true}]},{"ID":13028,"SourceStructureID":27288,"TargetStructureID":101452,"Label":"27288-101452 via Conventional from 27300 -> 101453","Type":"Conventional","Directional":true,"Links":[{"SourceID":27300,"TargetID":101453,"Directional":true}]},{"ID":13029,"SourceStructureID":27304,"TargetStructureID":6857,"Label":"27304-6857 via Conventional from 27305 -> 7536","Type":"Conventional","Directional":true,"Links":[{"SourceID":27305,"TargetID":7536,"Directional":true}]},{"ID":13030,"SourceStructureID":28382,"TargetStructureID":6160,"Label":"28382-6160 via Cistern Pre from 37474 -> 37475","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37474,"TargetID":37475,"Directional":true}]},{"ID":13031,"SourceStructureID":28886,"TargetStructureID":608,"Label":"28886-608 via Ribbon Synapse from 59073 -> 59072","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59073,"TargetID":59072,"Directional":true}]},{"ID":13032,"SourceStructureID":28886,"TargetStructureID":7594,"Label":"28886-7594 via Ribbon Synapse from 51298 -> 7678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51298,"TargetID":7678,"Directional":true}]},{"ID":13033,"SourceStructureID":28886,"TargetStructureID":40482,"Label":"28886-40482 via Ribbon Synapse from 51314 -> 40483","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51314,"TargetID":40483,"Directional":true}]},{"ID":13034,"SourceStructureID":28886,"TargetStructureID":40485,"Label":"28886-40485 via Ribbon Synapse from 51314 -> 40487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51314,"TargetID":40487,"Directional":true}]},{"ID":13035,"SourceStructureID":28886,"TargetStructureID":46842,"Label":"28886-46842 via Ribbon Synapse from 45764 -> 46853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45764,"TargetID":46853,"Directional":true}]},{"ID":13036,"SourceStructureID":28886,"TargetStructureID":99513,"Label":"28886-99513 via Ribbon Synapse from 129639 -> 129636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129639,"TargetID":129636,"Directional":true}]},{"ID":13037,"SourceStructureID":29277,"TargetStructureID":318,"Label":"29277-318 via Conventional from 29314 -> 29315","Type":"Conventional","Directional":true,"Links":[{"SourceID":29314,"TargetID":29315,"Directional":true}]},{"ID":13038,"SourceStructureID":29277,"TargetStructureID":60657,"Label":"29277-60657 via Conventional from 29322 -> 61429","Type":"Conventional","Directional":true,"Links":[{"SourceID":29322,"TargetID":61429,"Directional":true}]},{"ID":13039,"SourceStructureID":29702,"TargetStructureID":76127,"Label":"29702-76127 via Conventional from 76083 -> 76147","Type":"Conventional","Directional":true,"Links":[{"SourceID":76083,"TargetID":76147,"Directional":true}]},{"ID":13040,"SourceStructureID":29783,"TargetStructureID":2610,"Label":"29783-2610 via Conventional from 29784 -> 2815","Type":"Conventional","Directional":true,"Links":[{"SourceID":29784,"TargetID":2815,"Directional":true}]},{"ID":13041,"SourceStructureID":29783,"TargetStructureID":15100,"Label":"29783-15100 via Conventional from 65235 -> 65236","Type":"Conventional","Directional":true,"Links":[{"SourceID":65235,"TargetID":65236,"Directional":true}]},{"ID":13042,"SourceStructureID":29791,"TargetStructureID":410,"Label":"29791-410 via Conventional from 29797 -> 29790","Type":"Conventional","Directional":true,"Links":[{"SourceID":29797,"TargetID":29790,"Directional":true}]},{"ID":13043,"SourceStructureID":29791,"TargetStructureID":6163,"Label":"29791-6163 via Conventional from 29799 -> 29800, 29801 -> 29802, 29803 -> 29804","Type":"Conventional","Directional":true,"Links":[{"SourceID":29799,"TargetID":29800,"Directional":true},{"SourceID":29801,"TargetID":29802,"Directional":true},{"SourceID":29803,"TargetID":29804,"Directional":true}]},{"ID":13044,"SourceStructureID":29791,"TargetStructureID":6618,"Label":"29791-6618 via Conventional from 29792 -> 29793, 29795 -> 29796","Type":"Conventional","Directional":true,"Links":[{"SourceID":29792,"TargetID":29793,"Directional":true},{"SourceID":29795,"TargetID":29796,"Directional":true}]},{"ID":13045,"SourceStructureID":29805,"TargetStructureID":5345,"Label":"29805-5345 via Conventional from 29806 -> 14593","Type":"Conventional","Directional":true,"Links":[{"SourceID":29806,"TargetID":14593,"Directional":true}]},{"ID":13046,"SourceStructureID":29827,"TargetStructureID":170,"Label":"29827-170 via Conventional from 29832 -> 29831","Type":"Conventional","Directional":true,"Links":[{"SourceID":29832,"TargetID":29831,"Directional":true}]},{"ID":13047,"SourceStructureID":29827,"TargetStructureID":10959,"Label":"29827-10959 via Conventional from 29834 -> 29833","Type":"Conventional","Directional":true,"Links":[{"SourceID":29834,"TargetID":29833,"Directional":true}]},{"ID":13048,"SourceStructureID":30015,"TargetStructureID":330,"Label":"30015-330 via Conventional from 30028 -> 30029, 30034 -> 26172","Type":"Conventional","Directional":true,"Links":[{"SourceID":30028,"TargetID":30029,"Directional":true},{"SourceID":30034,"TargetID":26172,"Directional":true}]},{"ID":13049,"SourceStructureID":30015,"TargetStructureID":341,"Label":"30015-341 via Conventional from 30039 -> 30059, 30051 -> 30049","Type":"Conventional","Directional":true,"Links":[{"SourceID":30039,"TargetID":30059,"Directional":true},{"SourceID":30051,"TargetID":30049,"Directional":true}]},{"ID":13050,"SourceStructureID":30015,"TargetStructureID":101369,"Label":"30015-101369 via Conventional from 30027 -> 101400","Type":"Conventional","Directional":true,"Links":[{"SourceID":30027,"TargetID":101400,"Directional":true}]},{"ID":13051,"SourceStructureID":30102,"TargetStructureID":9769,"Label":"30102-9769 via Ribbon Synapse from 30104 -> 30097","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30104,"TargetID":30097,"Directional":true}]},{"ID":13052,"SourceStructureID":30102,"TargetStructureID":32566,"Label":"30102-32566 via Ribbon Synapse from 32570 -> 32569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32570,"TargetID":32569,"Directional":true}]},{"ID":13053,"SourceStructureID":30102,"TargetStructureID":55212,"Label":"30102-55212 via Ribbon Synapse from 30104 -> 55213","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30104,"TargetID":55213,"Directional":true}]},{"ID":13054,"SourceStructureID":30130,"TargetStructureID":5292,"Label":"30130-5292 via Conventional from 30260 -> 30266","Type":"Conventional","Directional":true,"Links":[{"SourceID":30260,"TargetID":30266,"Directional":true}]},{"ID":13055,"SourceStructureID":30130,"TargetStructureID":5649,"Label":"30130-5649 via Conventional from 30134 -> 30127","Type":"Conventional","Directional":true,"Links":[{"SourceID":30134,"TargetID":30127,"Directional":true}]},{"ID":13056,"SourceStructureID":30130,"TargetStructureID":5650,"Label":"30130-5650 via Conventional from 30253 -> 30254, 30258 -> 30259","Type":"Conventional","Directional":true,"Links":[{"SourceID":30253,"TargetID":30254,"Directional":true},{"SourceID":30258,"TargetID":30259,"Directional":true}]},{"ID":13057,"SourceStructureID":30130,"TargetStructureID":11042,"Label":"30130-11042 via Conventional from 30132 -> 30129","Type":"Conventional","Directional":true,"Links":[{"SourceID":30132,"TargetID":30129,"Directional":true}]},{"ID":13058,"SourceStructureID":30130,"TargetStructureID":11250,"Label":"30130-11250 via Conventional from 30283 -> 30292","Type":"Conventional","Directional":true,"Links":[{"SourceID":30283,"TargetID":30292,"Directional":true}]},{"ID":13059,"SourceStructureID":30177,"TargetStructureID":9769,"Label":"30177-9769 via Ribbon Synapse from 30178 -> 30175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30178,"TargetID":30175,"Directional":true}]},{"ID":13060,"SourceStructureID":30332,"TargetStructureID":171,"Label":"30332-171 via Conventional from 30333 -> 30330","Type":"Conventional","Directional":true,"Links":[{"SourceID":30333,"TargetID":30330,"Directional":true}]},{"ID":13061,"SourceStructureID":30332,"TargetStructureID":591,"Label":"30332-591 via Conventional from 30334 -> 15441","Type":"Conventional","Directional":true,"Links":[{"SourceID":30334,"TargetID":15441,"Directional":true}]},{"ID":13062,"SourceStructureID":30332,"TargetStructureID":5297,"Label":"30332-5297 via Conventional from 103220 -> 103219","Type":"Conventional","Directional":true,"Links":[{"SourceID":103220,"TargetID":103219,"Directional":true}]},{"ID":13063,"SourceStructureID":30332,"TargetStructureID":5618,"Label":"30332-5618 via Conventional from 30337 -> 66002","Type":"Conventional","Directional":true,"Links":[{"SourceID":30337,"TargetID":66002,"Directional":true}]},{"ID":13064,"SourceStructureID":30332,"TargetStructureID":6115,"Label":"30332-6115 via Conventional from 75186 -> 75187","Type":"Conventional","Directional":true,"Links":[{"SourceID":75186,"TargetID":75187,"Directional":true}]},{"ID":13065,"SourceStructureID":30332,"TargetStructureID":7073,"Label":"30332-7073 via Conventional from 31623 -> 11795","Type":"Conventional","Directional":true,"Links":[{"SourceID":31623,"TargetID":11795,"Directional":true}]},{"ID":13066,"SourceStructureID":30332,"TargetStructureID":7147,"Label":"30332-7147 via Conventional from 31626 -> 31627","Type":"Conventional","Directional":true,"Links":[{"SourceID":31626,"TargetID":31627,"Directional":true}]},{"ID":13067,"SourceStructureID":30370,"TargetStructureID":328,"Label":"30370-328 via Conventional from 30376 -> 30361, 30377 -> 30363","Type":"Conventional","Directional":true,"Links":[{"SourceID":30376,"TargetID":30361,"Directional":true},{"SourceID":30377,"TargetID":30363,"Directional":true}]},{"ID":13068,"SourceStructureID":30370,"TargetStructureID":15979,"Label":"30370-15979 via Conventional from 30372 -> 30373","Type":"Conventional","Directional":true,"Links":[{"SourceID":30372,"TargetID":30373,"Directional":true}]},{"ID":13069,"SourceStructureID":30379,"TargetStructureID":30370,"Label":"30379-30370 via Conventional from 30384 -> 30378","Type":"Conventional","Directional":true,"Links":[{"SourceID":30384,"TargetID":30378,"Directional":true}]},{"ID":13070,"SourceStructureID":30477,"TargetStructureID":294,"Label":"30477-294 via Conventional from 30478 -> 30358","Type":"Conventional","Directional":true,"Links":[{"SourceID":30478,"TargetID":30358,"Directional":true}]},{"ID":13071,"SourceStructureID":30477,"TargetStructureID":380,"Label":"30477-380 via Conventional from 30484 -> 30476","Type":"Conventional","Directional":true,"Links":[{"SourceID":30484,"TargetID":30476,"Directional":true}]},{"ID":13072,"SourceStructureID":30477,"TargetStructureID":485,"Label":"30477-485 via Conventional from 30487 -> 31677","Type":"Conventional","Directional":true,"Links":[{"SourceID":30487,"TargetID":31677,"Directional":true}]},{"ID":13073,"SourceStructureID":30477,"TargetStructureID":516,"Label":"30477-516 via Conventional from 38625 -> 38626","Type":"Conventional","Directional":true,"Links":[{"SourceID":38625,"TargetID":38626,"Directional":true}]},{"ID":13074,"SourceStructureID":30477,"TargetStructureID":517,"Label":"30477-517 via Conventional from 38623 -> 38624","Type":"Conventional","Directional":true,"Links":[{"SourceID":38623,"TargetID":38624,"Directional":true}]},{"ID":13075,"SourceStructureID":30477,"TargetStructureID":8575,"Label":"30477-8575 via Conventional from 30490 -> 38617","Type":"Conventional","Directional":true,"Links":[{"SourceID":30490,"TargetID":38617,"Directional":true}]},{"ID":13076,"SourceStructureID":30477,"TargetStructureID":24401,"Label":"30477-24401 via Conventional from 38628 -> 38629","Type":"Conventional","Directional":true,"Links":[{"SourceID":38628,"TargetID":38629,"Directional":true}]},{"ID":13077,"SourceStructureID":30495,"TargetStructureID":434,"Label":"30495-434 via Conventional from 31876 -> 30494","Type":"Conventional","Directional":true,"Links":[{"SourceID":31876,"TargetID":30494,"Directional":true}]},{"ID":13078,"SourceStructureID":30495,"TargetStructureID":31874,"Label":"30495-31874 via Conventional from 30497 -> 31875","Type":"Conventional","Directional":true,"Links":[{"SourceID":30497,"TargetID":31875,"Directional":true}]},{"ID":13079,"SourceStructureID":30499,"TargetStructureID":464,"Label":"30499-464 via Conventional from 30500 -> 30369","Type":"Conventional","Directional":true,"Links":[{"SourceID":30500,"TargetID":30369,"Directional":true}]},{"ID":13080,"SourceStructureID":30499,"TargetStructureID":468,"Label":"30499-468 via Conventional from 31941 -> 6651","Type":"Conventional","Directional":true,"Links":[{"SourceID":31941,"TargetID":6651,"Directional":true}]},{"ID":13081,"SourceStructureID":30513,"TargetStructureID":142,"Label":"30513-142 via Conventional from 125932 -> 125933","Type":"Conventional","Directional":true,"Links":[{"SourceID":125932,"TargetID":125933,"Directional":true}]},{"ID":13082,"SourceStructureID":30513,"TargetStructureID":516,"Label":"30513-516 via Conventional from 30514 -> 30511","Type":"Conventional","Directional":true,"Links":[{"SourceID":30514,"TargetID":30511,"Directional":true}]},{"ID":13083,"SourceStructureID":30518,"TargetStructureID":5303,"Label":"30518-5303 via Conventional from 30519 -> 30517","Type":"Conventional","Directional":true,"Links":[{"SourceID":30519,"TargetID":30517,"Directional":true}]},{"ID":13084,"SourceStructureID":30567,"TargetStructureID":142,"Label":"30567-142 via Conventional from 32078 -> 32079, 32082 -> 32085, 49757 -> 49756","Type":"Conventional","Directional":true,"Links":[{"SourceID":32078,"TargetID":32079,"Directional":true},{"SourceID":32082,"TargetID":32085,"Directional":true},{"SourceID":49757,"TargetID":49756,"Directional":true}]},{"ID":13085,"SourceStructureID":30567,"TargetStructureID":176,"Label":"30567-176 via Conventional from 32089 -> 124759","Type":"Conventional","Directional":true,"Links":[{"SourceID":32089,"TargetID":124759,"Directional":true}]},{"ID":13086,"SourceStructureID":30567,"TargetStructureID":517,"Label":"30567-517 via Conventional from 30568 -> 6902","Type":"Conventional","Directional":true,"Links":[{"SourceID":30568,"TargetID":6902,"Directional":true}]},{"ID":13087,"SourceStructureID":30567,"TargetStructureID":909,"Label":"30567-909 via Conventional from 30646 -> 30653","Type":"Conventional","Directional":true,"Links":[{"SourceID":30646,"TargetID":30653,"Directional":true}]},{"ID":13088,"SourceStructureID":30567,"TargetStructureID":1637,"Label":"30567-1637 via Conventional from 30657 -> 1723","Type":"Conventional","Directional":true,"Links":[{"SourceID":30657,"TargetID":1723,"Directional":true}]},{"ID":13089,"SourceStructureID":30567,"TargetStructureID":5279,"Label":"30567-5279 via Conventional from 30644 -> 30645, 96427 -> 96426","Type":"Conventional","Directional":true,"Links":[{"SourceID":30644,"TargetID":30645,"Directional":true},{"SourceID":96427,"TargetID":96426,"Directional":true}]},{"ID":13090,"SourceStructureID":30567,"TargetStructureID":5297,"Label":"30567-5297 via Conventional from 32081 -> 56815","Type":"Conventional","Directional":true,"Links":[{"SourceID":32081,"TargetID":56815,"Directional":true}]},{"ID":13091,"SourceStructureID":30567,"TargetStructureID":5513,"Label":"30567-5513 via Conventional from 30660 -> 30672","Type":"Conventional","Directional":true,"Links":[{"SourceID":30660,"TargetID":30672,"Directional":true}]},{"ID":13092,"SourceStructureID":30567,"TargetStructureID":5517,"Label":"30567-5517 via Conventional from 49512 -> 49510","Type":"Conventional","Directional":true,"Links":[{"SourceID":49512,"TargetID":49510,"Directional":true}]},{"ID":13093,"SourceStructureID":30567,"TargetStructureID":6050,"Label":"30567-6050 via Conventional from 113569 -> 113568","Type":"Conventional","Directional":true,"Links":[{"SourceID":113569,"TargetID":113568,"Directional":true}]},{"ID":13094,"SourceStructureID":30567,"TargetStructureID":6117,"Label":"30567-6117 via Conventional from 30569 -> 30570, 84962 -> 84963","Type":"Conventional","Directional":true,"Links":[{"SourceID":30569,"TargetID":30570,"Directional":true},{"SourceID":84962,"TargetID":84963,"Directional":true}]},{"ID":13095,"SourceStructureID":30567,"TargetStructureID":66523,"Label":"30567-66523 via Conventional from 74315 -> 74316","Type":"Conventional","Directional":true,"Links":[{"SourceID":74315,"TargetID":74316,"Directional":true}]},{"ID":13096,"SourceStructureID":31024,"TargetStructureID":31024,"Label":"31024-31024 via Ribbon Synapse from 130895 -> 130897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130895,"TargetID":130897,"Directional":true}]},{"ID":13097,"SourceStructureID":31024,"TargetStructureID":67290,"Label":"31024-67290 via Ribbon Synapse from 130895 -> 67292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130895,"TargetID":67292,"Directional":true}]},{"ID":13098,"SourceStructureID":31024,"TargetStructureID":67291,"Label":"31024-67291 via Ribbon Synapse from 130895 -> 67293","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130895,"TargetID":67293,"Directional":true}]},{"ID":13099,"SourceStructureID":31157,"TargetStructureID":31024,"Label":"31157-31024 via Ribbon Synapse from 31158 -> 31156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31158,"TargetID":31156,"Directional":true}]},{"ID":13100,"SourceStructureID":31161,"TargetStructureID":608,"Label":"31161-608 via Conventional from 31188 -> 31190, 31223 -> 31224","Type":"Conventional","Directional":true,"Links":[{"SourceID":31188,"TargetID":31190,"Directional":true},{"SourceID":31223,"TargetID":31224,"Directional":true}]},{"ID":13101,"SourceStructureID":31161,"TargetStructureID":31024,"Label":"31161-31024 via Conventional from 31162 -> 31075, 31165 -> 31164, 31169 -> 31109, 31173 -> 31172, 31176 -> 31114, 31177 -> 31115, 31222 -> 31078, 31225 -> 31228, 31226 -> 31227, 31231 -> 31232, 31240 -> 31029, 31243 -> 31242, 31245 -> 31246, 31254 -> 31065, 65496 -> 65497","Type":"Conventional","Directional":true,"Links":[{"SourceID":31162,"TargetID":31075,"Directional":true},{"SourceID":31165,"TargetID":31164,"Directional":true},{"SourceID":31169,"TargetID":31109,"Directional":true},{"SourceID":31173,"TargetID":31172,"Directional":true},{"SourceID":31176,"TargetID":31114,"Directional":true},{"SourceID":31177,"TargetID":31115,"Directional":true},{"SourceID":31222,"TargetID":31078,"Directional":true},{"SourceID":31225,"TargetID":31228,"Directional":true},{"SourceID":31226,"TargetID":31227,"Directional":true},{"SourceID":31231,"TargetID":31232,"Directional":true},{"SourceID":31240,"TargetID":31029,"Directional":true},{"SourceID":31243,"TargetID":31242,"Directional":true},{"SourceID":31245,"TargetID":31246,"Directional":true},{"SourceID":31254,"TargetID":31065,"Directional":true},{"SourceID":65496,"TargetID":65497,"Directional":true}]},{"ID":13102,"SourceStructureID":31161,"TargetStructureID":33092,"Label":"31161-33092 via Conventional from 31214 -> 99210","Type":"Conventional","Directional":true,"Links":[{"SourceID":31214,"TargetID":99210,"Directional":true}]},{"ID":13103,"SourceStructureID":31161,"TargetStructureID":36516,"Label":"31161-36516 via Conventional from 36618 -> 36617","Type":"Conventional","Directional":true,"Links":[{"SourceID":36618,"TargetID":36617,"Directional":true}]},{"ID":13104,"SourceStructureID":31161,"TargetStructureID":61836,"Label":"31161-61836 via Conventional from 31230 -> 68116","Type":"Conventional","Directional":true,"Links":[{"SourceID":31230,"TargetID":68116,"Directional":true}]},{"ID":13105,"SourceStructureID":31161,"TargetStructureID":66828,"Label":"31161-66828 via Conventional from 66833 -> 66832","Type":"Conventional","Directional":true,"Links":[{"SourceID":66833,"TargetID":66832,"Directional":true}]},{"ID":13106,"SourceStructureID":31161,"TargetStructureID":69162,"Label":"31161-69162 via Conventional from 69195 -> 69196","Type":"Conventional","Directional":true,"Links":[{"SourceID":69195,"TargetID":69196,"Directional":true}]},{"ID":13107,"SourceStructureID":31261,"TargetStructureID":5645,"Label":"31261-5645 via Conventional from 31266 -> 31268","Type":"Conventional","Directional":true,"Links":[{"SourceID":31266,"TargetID":31268,"Directional":true}]},{"ID":13108,"SourceStructureID":31261,"TargetStructureID":6857,"Label":"31261-6857 via Conventional from 31262 -> 7559","Type":"Conventional","Directional":true,"Links":[{"SourceID":31262,"TargetID":7559,"Directional":true}]},{"ID":13109,"SourceStructureID":31305,"TargetStructureID":9183,"Label":"31305-9183 via Conventional from 31312 -> 31304","Type":"Conventional","Directional":true,"Links":[{"SourceID":31312,"TargetID":31304,"Directional":true}]},{"ID":13110,"SourceStructureID":31305,"TargetStructureID":101651,"Label":"31305-101651 via Conventional from 101648 -> 101652","Type":"Conventional","Directional":true,"Links":[{"SourceID":101648,"TargetID":101652,"Directional":true}]},{"ID":13111,"SourceStructureID":31334,"TargetStructureID":5645,"Label":"31334-5645 via Conventional from 31340 -> 31341","Type":"Conventional","Directional":true,"Links":[{"SourceID":31340,"TargetID":31341,"Directional":true}]},{"ID":13112,"SourceStructureID":31334,"TargetStructureID":9183,"Label":"31334-9183 via Conventional from 31338 -> 31339","Type":"Conventional","Directional":true,"Links":[{"SourceID":31338,"TargetID":31339,"Directional":true}]},{"ID":13113,"SourceStructureID":31356,"TargetStructureID":9183,"Label":"31356-9183 via Conventional from 32760 -> 31355","Type":"Conventional","Directional":true,"Links":[{"SourceID":32760,"TargetID":31355,"Directional":true}]},{"ID":13114,"SourceStructureID":31356,"TargetStructureID":31161,"Label":"31356-31161 via Conventional from 32759 -> 31178","Type":"Conventional","Directional":true,"Links":[{"SourceID":32759,"TargetID":31178,"Directional":true}]},{"ID":13115,"SourceStructureID":31389,"TargetStructureID":5609,"Label":"31389-5609 via Conventional from 31397 -> 31388","Type":"Conventional","Directional":true,"Links":[{"SourceID":31397,"TargetID":31388,"Directional":true}]},{"ID":13116,"SourceStructureID":31399,"TargetStructureID":4570,"Label":"31399-4570 via Conventional from 31403 -> 31404","Type":"Conventional","Directional":true,"Links":[{"SourceID":31403,"TargetID":31404,"Directional":true}]},{"ID":13117,"SourceStructureID":31399,"TargetStructureID":79317,"Label":"31399-79317 via Conventional from 31405 -> 99006","Type":"Conventional","Directional":true,"Links":[{"SourceID":31405,"TargetID":99006,"Directional":true}]},{"ID":13118,"SourceStructureID":31430,"TargetStructureID":6997,"Label":"31430-6997 via Conventional from 31433 -> 31436","Type":"Conventional","Directional":true,"Links":[{"SourceID":31433,"TargetID":31436,"Directional":true}]},{"ID":13119,"SourceStructureID":31465,"TargetStructureID":10142,"Label":"31465-10142 via Conventional from 31466 -> 31464","Type":"Conventional","Directional":true,"Links":[{"SourceID":31466,"TargetID":31464,"Directional":true}]},{"ID":13120,"SourceStructureID":31471,"TargetStructureID":5535,"Label":"31471-5535 via Conventional from 31476 -> 38442, 31478 -> 31479","Type":"Conventional","Directional":true,"Links":[{"SourceID":31476,"TargetID":38442,"Directional":true},{"SourceID":31478,"TargetID":31479,"Directional":true}]},{"ID":13121,"SourceStructureID":31471,"TargetStructureID":10142,"Label":"31471-10142 via Conventional from 31472 -> 31470","Type":"Conventional","Directional":true,"Links":[{"SourceID":31472,"TargetID":31470,"Directional":true}]},{"ID":13122,"SourceStructureID":31471,"TargetStructureID":10964,"Label":"31471-10964 via Conventional from 31480 -> 31490","Type":"Conventional","Directional":true,"Links":[{"SourceID":31480,"TargetID":31490,"Directional":true}]},{"ID":13123,"SourceStructureID":31471,"TargetStructureID":58592,"Label":"31471-58592 via Conventional from 31497 -> 58670","Type":"Conventional","Directional":true,"Links":[{"SourceID":31497,"TargetID":58670,"Directional":true}]},{"ID":13124,"SourceStructureID":31483,"TargetStructureID":10964,"Label":"31483-10964 via Conventional from 31484 -> 31482","Type":"Conventional","Directional":true,"Links":[{"SourceID":31484,"TargetID":31482,"Directional":true}]},{"ID":13125,"SourceStructureID":31486,"TargetStructureID":172,"Label":"31486-172 via Conventional from 31533 -> 31634","Type":"Conventional","Directional":true,"Links":[{"SourceID":31533,"TargetID":31634,"Directional":true}]},{"ID":13126,"SourceStructureID":31486,"TargetStructureID":6128,"Label":"31486-6128 via Conventional from 31513 -> 21042","Type":"Conventional","Directional":true,"Links":[{"SourceID":31513,"TargetID":21042,"Directional":true}]},{"ID":13127,"SourceStructureID":31603,"TargetStructureID":31605,"Label":"31603-31605 via Conventional from 31604 -> 31615","Type":"Conventional","Directional":true,"Links":[{"SourceID":31604,"TargetID":31615,"Directional":true}]},{"ID":13128,"SourceStructureID":31665,"TargetStructureID":352,"Label":"31665-352 via Conventional from 31666 -> 20669","Type":"Conventional","Directional":true,"Links":[{"SourceID":31666,"TargetID":20669,"Directional":true}]},{"ID":13129,"SourceStructureID":31679,"TargetStructureID":277,"Label":"31679-277 via Conventional from 31691 -> 26410","Type":"Conventional","Directional":true,"Links":[{"SourceID":31691,"TargetID":26410,"Directional":true}]},{"ID":13130,"SourceStructureID":31679,"TargetStructureID":327,"Label":"31679-327 via Conventional from 31684 -> 31687","Type":"Conventional","Directional":true,"Links":[{"SourceID":31684,"TargetID":31687,"Directional":true}]},{"ID":13131,"SourceStructureID":31679,"TargetStructureID":328,"Label":"31679-328 via Conventional from 31680 -> 31681","Type":"Conventional","Directional":true,"Links":[{"SourceID":31680,"TargetID":31681,"Directional":true}]},{"ID":13132,"SourceStructureID":31694,"TargetStructureID":277,"Label":"31694-277 via Conventional from 31696 -> 26418, 31697 -> 26013","Type":"Conventional","Directional":true,"Links":[{"SourceID":31696,"TargetID":26418,"Directional":true},{"SourceID":31697,"TargetID":26013,"Directional":true}]},{"ID":13133,"SourceStructureID":31694,"TargetStructureID":280,"Label":"31694-280 via Conventional from 31695 -> 31693","Type":"Conventional","Directional":true,"Links":[{"SourceID":31695,"TargetID":31693,"Directional":true}]},{"ID":13134,"SourceStructureID":31700,"TargetStructureID":268,"Label":"31700-268 via Conventional from 45613 -> 45614","Type":"Conventional","Directional":true,"Links":[{"SourceID":45613,"TargetID":45614,"Directional":true}]},{"ID":13135,"SourceStructureID":31700,"TargetStructureID":330,"Label":"31700-330 via Conventional from 119080 -> 119081","Type":"Conventional","Directional":true,"Links":[{"SourceID":119080,"TargetID":119081,"Directional":true}]},{"ID":13136,"SourceStructureID":31700,"TargetStructureID":342,"Label":"31700-342 via Conventional from 31701 -> 31698, 64487 -> 64488","Type":"Conventional","Directional":true,"Links":[{"SourceID":31701,"TargetID":31698,"Directional":true},{"SourceID":64487,"TargetID":64488,"Directional":true}]},{"ID":13137,"SourceStructureID":31700,"TargetStructureID":345,"Label":"31700-345 via Conventional from 118993 -> 118994","Type":"Conventional","Directional":true,"Links":[{"SourceID":118993,"TargetID":118994,"Directional":true}]},{"ID":13138,"SourceStructureID":31702,"TargetStructureID":342,"Label":"31702-342 via Conventional from 31703 -> 31699","Type":"Conventional","Directional":true,"Links":[{"SourceID":31703,"TargetID":31699,"Directional":true}]},{"ID":13139,"SourceStructureID":31702,"TargetStructureID":344,"Label":"31702-344 via Conventional from 31717 -> 31721","Type":"Conventional","Directional":true,"Links":[{"SourceID":31717,"TargetID":31721,"Directional":true}]},{"ID":13140,"SourceStructureID":31702,"TargetStructureID":34055,"Label":"31702-34055 via Conventional from 39997 -> 34058","Type":"Conventional","Directional":true,"Links":[{"SourceID":39997,"TargetID":34058,"Directional":true}]},{"ID":13141,"SourceStructureID":31710,"TargetStructureID":606,"Label":"31710-606 via Ribbon Synapse from 52670 -> 52669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52670,"TargetID":52669,"Directional":true}]},{"ID":13142,"SourceStructureID":31710,"TargetStructureID":9769,"Label":"31710-9769 via Ribbon Synapse from 55329 -> 12445","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55329,"TargetID":12445,"Directional":true}]},{"ID":13143,"SourceStructureID":31710,"TargetStructureID":31700,"Label":"31710-31700 via Ribbon Synapse from 31712 -> 31709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31712,"TargetID":31709,"Directional":true}]},{"ID":13144,"SourceStructureID":31710,"TargetStructureID":55319,"Label":"31710-55319 via Ribbon Synapse from 55323 -> 55324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55323,"TargetID":55324,"Directional":true}]},{"ID":13145,"SourceStructureID":31710,"TargetStructureID":89851,"Label":"31710-89851 via Ribbon Synapse from 52670 -> 89856, 89859 -> 89857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52670,"TargetID":89856,"Directional":true},{"SourceID":89859,"TargetID":89857,"Directional":true}]},{"ID":13146,"SourceStructureID":31804,"TargetStructureID":365,"Label":"31804-365 via Conventional from 31806 -> 31805","Type":"Conventional","Directional":true,"Links":[{"SourceID":31806,"TargetID":31805,"Directional":true}]},{"ID":13147,"SourceStructureID":31874,"TargetStructureID":4835,"Label":"31874-4835 via Ribbon Synapse from 31883 -> 31884","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31883,"TargetID":31884,"Directional":true}]},{"ID":13148,"SourceStructureID":31915,"TargetStructureID":460,"Label":"31915-460 via Conventional from 31921 -> 31924","Type":"Conventional","Directional":true,"Links":[{"SourceID":31921,"TargetID":31924,"Directional":true}]},{"ID":13149,"SourceStructureID":31915,"TargetStructureID":10963,"Label":"31915-10963 via Conventional from 31927 -> 31937","Type":"Conventional","Directional":true,"Links":[{"SourceID":31927,"TargetID":31937,"Directional":true}]},{"ID":13150,"SourceStructureID":31915,"TargetStructureID":30499,"Label":"31915-30499 via Conventional from 31916 -> 30501","Type":"Conventional","Directional":true,"Links":[{"SourceID":31916,"TargetID":30501,"Directional":true}]},{"ID":13151,"SourceStructureID":31931,"TargetStructureID":5544,"Label":"31931-5544 via Conventional from 31933 -> 31934","Type":"Conventional","Directional":true,"Links":[{"SourceID":31933,"TargetID":31934,"Directional":true}]},{"ID":13152,"SourceStructureID":31931,"TargetStructureID":5634,"Label":"31931-5634 via Conventional from 31932 -> 8741","Type":"Conventional","Directional":true,"Links":[{"SourceID":31932,"TargetID":8741,"Directional":true}]},{"ID":13153,"SourceStructureID":31944,"TargetStructureID":5413,"Label":"31944-5413 via Ribbon Synapse from 31945 -> 31946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31945,"TargetID":31946,"Directional":true}]},{"ID":13154,"SourceStructureID":31944,"TargetStructureID":128015,"Label":"31944-128015 via Ribbon Synapse from 128059 -> 128058","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128059,"TargetID":128058,"Directional":true}]},{"ID":13155,"SourceStructureID":31960,"TargetStructureID":422,"Label":"31960-422 via Conventional from 31963 -> 5702, 31966 -> 5704, 31967 -> 87879, 31968 -> 5706","Type":"Conventional","Directional":true,"Links":[{"SourceID":31963,"TargetID":5702,"Directional":true},{"SourceID":31966,"TargetID":5704,"Directional":true},{"SourceID":31967,"TargetID":87879,"Directional":true},{"SourceID":31968,"TargetID":5706,"Directional":true}]},{"ID":13156,"SourceStructureID":31969,"TargetStructureID":471,"Label":"31969-471 via Conventional from 31970 -> 30510","Type":"Conventional","Directional":true,"Links":[{"SourceID":31970,"TargetID":30510,"Directional":true}]},{"ID":13157,"SourceStructureID":31994,"TargetStructureID":14291,"Label":"31994-14291 via Conventional from 31995 -> 31993","Type":"Conventional","Directional":true,"Links":[{"SourceID":31995,"TargetID":31993,"Directional":true}]},{"ID":13158,"SourceStructureID":31994,"TargetStructureID":19203,"Label":"31994-19203 via Conventional from 31997 -> 31998","Type":"Conventional","Directional":true,"Links":[{"SourceID":31997,"TargetID":31998,"Directional":true}]},{"ID":13159,"SourceStructureID":32035,"TargetStructureID":516,"Label":"32035-516 via Conventional from 32036 -> 30512","Type":"Conventional","Directional":true,"Links":[{"SourceID":32036,"TargetID":30512,"Directional":true}]},{"ID":13160,"SourceStructureID":32035,"TargetStructureID":6117,"Label":"32035-6117 via Conventional from 41663 -> 30901, 41668 -> 30900","Type":"Conventional","Directional":true,"Links":[{"SourceID":41663,"TargetID":30901,"Directional":true},{"SourceID":41668,"TargetID":30900,"Directional":true}]},{"ID":13161,"SourceStructureID":32046,"TargetStructureID":422,"Label":"32046-422 via Conventional from 32057 -> 32058","Type":"Conventional","Directional":true,"Links":[{"SourceID":32057,"TargetID":32058,"Directional":true}]},{"ID":13162,"SourceStructureID":32046,"TargetStructureID":516,"Label":"32046-516 via Conventional from 32049 -> 32050, 32052 -> 32051, 39233 -> 39235, 39234 -> 39236, 39237 -> 39238","Type":"Conventional","Directional":true,"Links":[{"SourceID":32049,"TargetID":32050,"Directional":true},{"SourceID":32052,"TargetID":32051,"Directional":true},{"SourceID":39233,"TargetID":39235,"Directional":true},{"SourceID":39234,"TargetID":39236,"Directional":true},{"SourceID":39237,"TargetID":39238,"Directional":true}]},{"ID":13163,"SourceStructureID":32141,"TargetStructureID":518,"Label":"32141-518 via Conventional from 32142 -> 3348","Type":"Conventional","Directional":true,"Links":[{"SourceID":32142,"TargetID":3348,"Directional":true}]},{"ID":13164,"SourceStructureID":32147,"TargetStructureID":32144,"Label":"32147-32144 via Conventional from 32149 -> 32146","Type":"Conventional","Directional":true,"Links":[{"SourceID":32149,"TargetID":32146,"Directional":true}]},{"ID":13165,"SourceStructureID":32147,"TargetStructureID":45672,"Label":"32147-45672 via Conventional from 32148 -> 127756","Type":"Conventional","Directional":true,"Links":[{"SourceID":32148,"TargetID":127756,"Directional":true}]},{"ID":13166,"SourceStructureID":32160,"TargetStructureID":519,"Label":"32160-519 via Conventional from 32162 -> 32159","Type":"Conventional","Directional":true,"Links":[{"SourceID":32162,"TargetID":32159,"Directional":true}]},{"ID":13167,"SourceStructureID":32160,"TargetStructureID":6617,"Label":"32160-6617 via Conventional from 32171 -> 6620","Type":"Conventional","Directional":true,"Links":[{"SourceID":32171,"TargetID":6620,"Directional":true}]},{"ID":13168,"SourceStructureID":32160,"TargetStructureID":8575,"Label":"32160-8575 via Conventional from 32174 -> 21639","Type":"Conventional","Directional":true,"Links":[{"SourceID":32174,"TargetID":21639,"Directional":true}]},{"ID":13169,"SourceStructureID":32172,"TargetStructureID":419,"Label":"32172-419 via Conventional from 32185 -> 32186","Type":"Conventional","Directional":true,"Links":[{"SourceID":32185,"TargetID":32186,"Directional":true}]},{"ID":13170,"SourceStructureID":32172,"TargetStructureID":6617,"Label":"32172-6617 via Conventional from 32173 -> 6621, 64340 -> 26873","Type":"Conventional","Directional":true,"Links":[{"SourceID":32173,"TargetID":6621,"Directional":true},{"SourceID":64340,"TargetID":26873,"Directional":true}]},{"ID":13171,"SourceStructureID":32187,"TargetStructureID":6617,"Label":"32187-6617 via Conventional from 32188 -> 6622","Type":"Conventional","Directional":true,"Links":[{"SourceID":32188,"TargetID":6622,"Directional":true}]},{"ID":13172,"SourceStructureID":32227,"TargetStructureID":519,"Label":"32227-519 via Conventional from 32228 -> 9294","Type":"Conventional","Directional":true,"Links":[{"SourceID":32228,"TargetID":9294,"Directional":true}]},{"ID":13173,"SourceStructureID":32227,"TargetStructureID":1724,"Label":"32227-1724 via Conventional from 32232 -> 3986, 101859 -> 101860","Type":"Conventional","Directional":true,"Links":[{"SourceID":32232,"TargetID":3986,"Directional":true},{"SourceID":101859,"TargetID":101860,"Directional":true}]},{"ID":13174,"SourceStructureID":32258,"TargetStructureID":39957,"Label":"32258-39957 via Ribbon Synapse from 58457 -> 58454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58457,"TargetID":58454,"Directional":true}]},{"ID":13175,"SourceStructureID":32273,"TargetStructureID":447,"Label":"32273-447 via Conventional from 32279 -> 32278","Type":"Conventional","Directional":true,"Links":[{"SourceID":32279,"TargetID":32278,"Directional":true}]},{"ID":13176,"SourceStructureID":32273,"TargetStructureID":21779,"Label":"32273-21779 via Conventional from 32274 -> 32092, 32282 -> 32121","Type":"Conventional","Directional":true,"Links":[{"SourceID":32274,"TargetID":32092,"Directional":true},{"SourceID":32282,"TargetID":32121,"Directional":true}]},{"ID":13177,"SourceStructureID":32312,"TargetStructureID":579,"Label":"32312-579 via Conventional from 32313 -> 32314, 32319 -> 11039","Type":"Conventional","Directional":true,"Links":[{"SourceID":32313,"TargetID":32314,"Directional":true},{"SourceID":32319,"TargetID":11039,"Directional":true}]},{"ID":13178,"SourceStructureID":32354,"TargetStructureID":32359,"Label":"32354-32359 via Conventional from 32362 -> 32363","Type":"Conventional","Directional":true,"Links":[{"SourceID":32362,"TargetID":32363,"Directional":true}]},{"ID":13179,"SourceStructureID":32359,"TargetStructureID":6128,"Label":"32359-6128 via Adherens from 41683 -> 21085","Type":"Adherens","Directional":true,"Links":[{"SourceID":41683,"TargetID":21085,"Directional":true}]},{"ID":13180,"SourceStructureID":32359,"TargetStructureID":7225,"Label":"32359-7225 via Ribbon Synapse from 41337 -> 41338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41337,"TargetID":41338,"Directional":true}]},{"ID":13181,"SourceStructureID":32359,"TargetStructureID":7859,"Label":"32359-7859 via Ribbon Synapse from 32369 -> 84730, 41381 -> 84712","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32369,"TargetID":84730,"Directional":true},{"SourceID":41381,"TargetID":84712,"Directional":true}]},{"ID":13182,"SourceStructureID":32359,"TargetStructureID":8504,"Label":"32359-8504 via Ribbon Synapse from 41342 -> 8707, 45014 -> 8708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41342,"TargetID":8707,"Directional":true},{"SourceID":45014,"TargetID":8708,"Directional":true}]},{"ID":13183,"SourceStructureID":32359,"TargetStructureID":28950,"Label":"32359-28950 via Ribbon Synapse from 41639 -> 28964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41639,"TargetID":28964,"Directional":true}]},{"ID":13184,"SourceStructureID":32359,"TargetStructureID":32354,"Label":"32359-32354 via Ribbon Synapse from 32366 -> 32367, 32369 -> 32370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32366,"TargetID":32367,"Directional":true},{"SourceID":32369,"TargetID":32370,"Directional":true}]},{"ID":13185,"SourceStructureID":32359,"TargetStructureID":35681,"Label":"32359-35681 via Ribbon Synapse from 35717 -> 35716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35717,"TargetID":35716,"Directional":true}]},{"ID":13186,"SourceStructureID":32359,"TargetStructureID":42776,"Label":"32359-42776 via Ribbon Synapse from 41335 -> 42777","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41335,"TargetID":42777,"Directional":true}]},{"ID":13187,"SourceStructureID":32371,"TargetStructureID":516,"Label":"32371-516 via Conventional from 32372 -> 3746, 32373 -> 3741, 32374 -> 3748, 64567 -> 64568","Type":"Conventional","Directional":true,"Links":[{"SourceID":32372,"TargetID":3746,"Directional":true},{"SourceID":32373,"TargetID":3741,"Directional":true},{"SourceID":32374,"TargetID":3748,"Directional":true},{"SourceID":64567,"TargetID":64568,"Directional":true}]},{"ID":13188,"SourceStructureID":32379,"TargetStructureID":483,"Label":"32379-483 via Conventional from 100618 -> 6801","Type":"Conventional","Directional":true,"Links":[{"SourceID":100618,"TargetID":6801,"Directional":true}]},{"ID":13189,"SourceStructureID":32379,"TargetStructureID":485,"Label":"32379-485 via Conventional from 100609 -> 100610","Type":"Conventional","Directional":true,"Links":[{"SourceID":100609,"TargetID":100610,"Directional":true}]},{"ID":13190,"SourceStructureID":32379,"TargetStructureID":6912,"Label":"32379-6912 via Conventional from 32382 -> 26843","Type":"Conventional","Directional":true,"Links":[{"SourceID":32382,"TargetID":26843,"Directional":true}]},{"ID":13191,"SourceStructureID":32379,"TargetStructureID":15100,"Label":"32379-15100 via Conventional from 32380 -> 32381","Type":"Conventional","Directional":true,"Links":[{"SourceID":32380,"TargetID":32381,"Directional":true}]},{"ID":13192,"SourceStructureID":32383,"TargetStructureID":142,"Label":"32383-142 via Conventional from 101699 -> 92143","Type":"Conventional","Directional":true,"Links":[{"SourceID":101699,"TargetID":92143,"Directional":true}]},{"ID":13193,"SourceStructureID":32383,"TargetStructureID":1724,"Label":"32383-1724 via Conventional from 99548 -> 1790, 101505 -> 101506","Type":"Conventional","Directional":true,"Links":[{"SourceID":99548,"TargetID":1790,"Directional":true},{"SourceID":101505,"TargetID":101506,"Directional":true}]},{"ID":13194,"SourceStructureID":32383,"TargetStructureID":5017,"Label":"32383-5017 via Conventional from 32385 -> 5045","Type":"Conventional","Directional":true,"Links":[{"SourceID":32385,"TargetID":5045,"Directional":true}]},{"ID":13195,"SourceStructureID":32383,"TargetStructureID":5279,"Label":"32383-5279 via Conventional from 92703 -> 92702, 98049 -> 25828","Type":"Conventional","Directional":true,"Links":[{"SourceID":92703,"TargetID":92702,"Directional":true},{"SourceID":98049,"TargetID":25828,"Directional":true}]},{"ID":13196,"SourceStructureID":32383,"TargetStructureID":5513,"Label":"32383-5513 via Conventional from 35175 -> 40166","Type":"Conventional","Directional":true,"Links":[{"SourceID":35175,"TargetID":40166,"Directional":true}]},{"ID":13197,"SourceStructureID":32405,"TargetStructureID":176,"Label":"32405-176 via Conventional from 38525 -> 5880","Type":"Conventional","Directional":true,"Links":[{"SourceID":38525,"TargetID":5880,"Directional":true}]},{"ID":13198,"SourceStructureID":32405,"TargetStructureID":5531,"Label":"32405-5531 via Conventional from 107528 -> 107529","Type":"Conventional","Directional":true,"Links":[{"SourceID":107528,"TargetID":107529,"Directional":true}]},{"ID":13199,"SourceStructureID":32405,"TargetStructureID":5595,"Label":"32405-5595 via Conventional from 32406 -> 32407","Type":"Conventional","Directional":true,"Links":[{"SourceID":32406,"TargetID":32407,"Directional":true}]},{"ID":13200,"SourceStructureID":32405,"TargetStructureID":5598,"Label":"32405-5598 via Conventional from 32415 -> 32419","Type":"Conventional","Directional":true,"Links":[{"SourceID":32415,"TargetID":32419,"Directional":true}]},{"ID":13201,"SourceStructureID":32405,"TargetStructureID":32409,"Label":"32405-32409 via Conventional from 32408 -> 32414","Type":"Conventional","Directional":true,"Links":[{"SourceID":32408,"TargetID":32414,"Directional":true}]},{"ID":13202,"SourceStructureID":32405,"TargetStructureID":62396,"Label":"32405-62396 via Conventional from 36027 -> 62405","Type":"Conventional","Directional":true,"Links":[{"SourceID":36027,"TargetID":62405,"Directional":true}]},{"ID":13203,"SourceStructureID":32409,"TargetStructureID":5601,"Label":"32409-5601 via Conventional from 32412 -> 32413","Type":"Conventional","Directional":true,"Links":[{"SourceID":32412,"TargetID":32413,"Directional":true}]},{"ID":13204,"SourceStructureID":32422,"TargetStructureID":5595,"Label":"32422-5595 via Conventional from 32423 -> 15281","Type":"Conventional","Directional":true,"Links":[{"SourceID":32423,"TargetID":15281,"Directional":true}]},{"ID":13205,"SourceStructureID":32445,"TargetStructureID":7114,"Label":"32445-7114 via Conventional from 32446 -> 32443","Type":"Conventional","Directional":true,"Links":[{"SourceID":32446,"TargetID":32443,"Directional":true}]},{"ID":13206,"SourceStructureID":32451,"TargetStructureID":5530,"Label":"32451-5530 via Conventional from 32455 -> 32456, 81285 -> 81286, 81647 -> 81648","Type":"Conventional","Directional":true,"Links":[{"SourceID":32455,"TargetID":32456,"Directional":true},{"SourceID":81285,"TargetID":81286,"Directional":true},{"SourceID":81647,"TargetID":81648,"Directional":true}]},{"ID":13207,"SourceStructureID":32451,"TargetStructureID":5614,"Label":"32451-5614 via Conventional from 32452 -> 8732","Type":"Conventional","Directional":true,"Links":[{"SourceID":32452,"TargetID":8732,"Directional":true}]},{"ID":13208,"SourceStructureID":32465,"TargetStructureID":5614,"Label":"32465-5614 via Conventional from 32466 -> 5619","Type":"Conventional","Directional":true,"Links":[{"SourceID":32466,"TargetID":5619,"Directional":true}]},{"ID":13209,"SourceStructureID":32477,"TargetStructureID":5565,"Label":"32477-5565 via Conventional from 32479 -> 32487, 32488 -> 32489, 122605 -> 50186, 122608 -> 50198, 122609 -> 50202, 122612 -> 50213","Type":"Conventional","Directional":true,"Links":[{"SourceID":32479,"TargetID":32487,"Directional":true},{"SourceID":32488,"TargetID":32489,"Directional":true},{"SourceID":122605,"TargetID":50186,"Directional":true},{"SourceID":122608,"TargetID":50198,"Directional":true},{"SourceID":122609,"TargetID":50202,"Directional":true},{"SourceID":122612,"TargetID":50213,"Directional":true}]},{"ID":13210,"SourceStructureID":32477,"TargetStructureID":5923,"Label":"32477-5923 via Conventional from 32478 -> 32476","Type":"Conventional","Directional":true,"Links":[{"SourceID":32478,"TargetID":32476,"Directional":true}]},{"ID":13211,"SourceStructureID":32477,"TargetStructureID":6118,"Label":"32477-6118 via Conventional from 32494 -> 32497, 32498 -> 65907","Type":"Conventional","Directional":true,"Links":[{"SourceID":32494,"TargetID":32497,"Directional":true},{"SourceID":32498,"TargetID":65907,"Directional":true}]},{"ID":13212,"SourceStructureID":32477,"TargetStructureID":6120,"Label":"32477-6120 via Conventional from 32503 -> 32505","Type":"Conventional","Directional":true,"Links":[{"SourceID":32503,"TargetID":32505,"Directional":true}]},{"ID":13213,"SourceStructureID":32477,"TargetStructureID":32513,"Label":"32477-32513 via Conventional from 32511 -> 32514","Type":"Conventional","Directional":true,"Links":[{"SourceID":32511,"TargetID":32514,"Directional":true}]},{"ID":13214,"SourceStructureID":32477,"TargetStructureID":89546,"Label":"32477-89546 via Conventional from 89548 -> 89547","Type":"Conventional","Directional":true,"Links":[{"SourceID":89548,"TargetID":89547,"Directional":true}]},{"ID":13215,"SourceStructureID":32513,"TargetStructureID":6141,"Label":"32513-6141 via Conventional from 32515 -> 32512, 32517 -> 32519","Type":"Conventional","Directional":true,"Links":[{"SourceID":32515,"TargetID":32512,"Directional":true},{"SourceID":32517,"TargetID":32519,"Directional":true}]},{"ID":13216,"SourceStructureID":32534,"TargetStructureID":168,"Label":"32534-168 via Conventional from 32537 -> 4220","Type":"Conventional","Directional":true,"Links":[{"SourceID":32537,"TargetID":4220,"Directional":true}]},{"ID":13217,"SourceStructureID":32534,"TargetStructureID":606,"Label":"32534-606 via Conventional from 32548 -> 53486","Type":"Conventional","Directional":true,"Links":[{"SourceID":32548,"TargetID":53486,"Directional":true}]},{"ID":13218,"SourceStructureID":32534,"TargetStructureID":8720,"Label":"32534-8720 via Conventional from 46313 -> 60250","Type":"Conventional","Directional":true,"Links":[{"SourceID":46313,"TargetID":60250,"Directional":true}]},{"ID":13219,"SourceStructureID":32534,"TargetStructureID":21299,"Label":"32534-21299 via Conventional from 32535 -> 32533","Type":"Conventional","Directional":true,"Links":[{"SourceID":32535,"TargetID":32533,"Directional":true}]},{"ID":13220,"SourceStructureID":32547,"TargetStructureID":286,"Label":"32547-286 via Conventional from 32559 -> 32560","Type":"Conventional","Directional":true,"Links":[{"SourceID":32559,"TargetID":32560,"Directional":true}]},{"ID":13221,"SourceStructureID":32547,"TargetStructureID":6164,"Label":"32547-6164 via Conventional from 32550 -> 26869","Type":"Conventional","Directional":true,"Links":[{"SourceID":32550,"TargetID":26869,"Directional":true}]},{"ID":13222,"SourceStructureID":32566,"TargetStructureID":280,"Label":"32566-280 via Conventional from 32571 -> 32572","Type":"Conventional","Directional":true,"Links":[{"SourceID":32571,"TargetID":32572,"Directional":true}]},{"ID":13223,"SourceStructureID":32577,"TargetStructureID":6164,"Label":"32577-6164 via Conventional from 32578 -> 32576, 32579 -> 26870","Type":"Conventional","Directional":true,"Links":[{"SourceID":32578,"TargetID":32576,"Directional":true},{"SourceID":32579,"TargetID":26870,"Directional":true}]},{"ID":13224,"SourceStructureID":32581,"TargetStructureID":321,"Label":"32581-321 via Conventional from 32584 -> 32585","Type":"Conventional","Directional":true,"Links":[{"SourceID":32584,"TargetID":32585,"Directional":true}]},{"ID":13225,"SourceStructureID":32581,"TargetStructureID":366,"Label":"32581-366 via Conventional from 32601 -> 13963","Type":"Conventional","Directional":true,"Links":[{"SourceID":32601,"TargetID":13963,"Directional":true}]},{"ID":13226,"SourceStructureID":32581,"TargetStructureID":431,"Label":"32581-431 via Conventional from 32604 -> 32605","Type":"Conventional","Directional":true,"Links":[{"SourceID":32604,"TargetID":32605,"Directional":true}]},{"ID":13227,"SourceStructureID":32581,"TargetStructureID":6164,"Label":"32581-6164 via Conventional from 32582 -> 26871","Type":"Conventional","Directional":true,"Links":[{"SourceID":32582,"TargetID":26871,"Directional":true}]},{"ID":13228,"SourceStructureID":32608,"TargetStructureID":366,"Label":"32608-366 via Conventional from 32615 -> 32616","Type":"Conventional","Directional":true,"Links":[{"SourceID":32615,"TargetID":32616,"Directional":true}]},{"ID":13229,"SourceStructureID":32608,"TargetStructureID":369,"Label":"32608-369 via Conventional from 32612 -> 32613","Type":"Conventional","Directional":true,"Links":[{"SourceID":32612,"TargetID":32613,"Directional":true}]},{"ID":13230,"SourceStructureID":32608,"TargetStructureID":431,"Label":"32608-431 via Conventional from 32618 -> 119063","Type":"Conventional","Directional":true,"Links":[{"SourceID":32618,"TargetID":119063,"Directional":true}]},{"ID":13231,"SourceStructureID":32608,"TargetStructureID":6164,"Label":"32608-6164 via Conventional from 32609 -> 11761","Type":"Conventional","Directional":true,"Links":[{"SourceID":32609,"TargetID":11761,"Directional":true}]},{"ID":13232,"SourceStructureID":32621,"TargetStructureID":6164,"Label":"32621-6164 via Conventional from 32622 -> 11758","Type":"Conventional","Directional":true,"Links":[{"SourceID":32622,"TargetID":11758,"Directional":true}]},{"ID":13233,"SourceStructureID":32626,"TargetStructureID":6561,"Label":"32626-6561 via Conventional from 32627 -> 8340, 32628 -> 8341","Type":"Conventional","Directional":true,"Links":[{"SourceID":32627,"TargetID":8340,"Directional":true},{"SourceID":32628,"TargetID":8341,"Directional":true}]},{"ID":13234,"SourceStructureID":32637,"TargetStructureID":6561,"Label":"32637-6561 via Conventional from 32638 -> 8342","Type":"Conventional","Directional":true,"Links":[{"SourceID":32638,"TargetID":8342,"Directional":true}]},{"ID":13235,"SourceStructureID":32641,"TargetStructureID":6561,"Label":"32641-6561 via Conventional from 32642 -> 8343","Type":"Conventional","Directional":true,"Links":[{"SourceID":32642,"TargetID":8343,"Directional":true}]},{"ID":13236,"SourceStructureID":32643,"TargetStructureID":6617,"Label":"32643-6617 via Conventional from 32644 -> 17567","Type":"Conventional","Directional":true,"Links":[{"SourceID":32644,"TargetID":17567,"Directional":true}]},{"ID":13237,"SourceStructureID":32643,"TargetStructureID":32654,"Label":"32643-32654 via Conventional from 32651 -> 32657","Type":"Conventional","Directional":true,"Links":[{"SourceID":32651,"TargetID":32657,"Directional":true}]},{"ID":13238,"SourceStructureID":32643,"TargetStructureID":32668,"Label":"32643-32668 via Conventional from 32673 -> 32674","Type":"Conventional","Directional":true,"Links":[{"SourceID":32673,"TargetID":32674,"Directional":true}]},{"ID":13239,"SourceStructureID":32643,"TargetStructureID":87158,"Label":"32643-87158 via Conventional from 32648 -> 87161","Type":"Conventional","Directional":true,"Links":[{"SourceID":32648,"TargetID":87161,"Directional":true}]},{"ID":13240,"SourceStructureID":32654,"TargetStructureID":32643,"Label":"32654-32643 via Ribbon Synapse from 32658 -> 32653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32658,"TargetID":32653,"Directional":true}]},{"ID":13241,"SourceStructureID":32654,"TargetStructureID":32804,"Label":"32654-32804 via Ribbon Synapse from 32837 -> 32836, 32842 -> 32841, 81047 -> 32839","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32837,"TargetID":32836,"Directional":true},{"SourceID":32842,"TargetID":32841,"Directional":true},{"SourceID":81047,"TargetID":32839,"Directional":true}]},{"ID":13242,"SourceStructureID":32654,"TargetStructureID":61960,"Label":"32654-61960 via Ribbon Synapse from 49306 -> 81650","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49306,"TargetID":81650,"Directional":true}]},{"ID":13243,"SourceStructureID":32654,"TargetStructureID":66958,"Label":"32654-66958 via Ribbon Synapse from 49308 -> 70113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49308,"TargetID":70113,"Directional":true}]},{"ID":13244,"SourceStructureID":32654,"TargetStructureID":81038,"Label":"32654-81038 via Ribbon Synapse from 81037 -> 81040","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81037,"TargetID":81040,"Directional":true}]},{"ID":13245,"SourceStructureID":32654,"TargetStructureID":81039,"Label":"32654-81039 via Ribbon Synapse from 81037 -> 81041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81037,"TargetID":81041,"Directional":true}]},{"ID":13246,"SourceStructureID":32654,"TargetStructureID":81056,"Label":"32654-81056 via Ribbon Synapse from 81055 -> 81060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81055,"TargetID":81060,"Directional":true}]},{"ID":13247,"SourceStructureID":32654,"TargetStructureID":81057,"Label":"32654-81057 via Ribbon Synapse from 81055 -> 81059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81055,"TargetID":81059,"Directional":true}]},{"ID":13248,"SourceStructureID":32654,"TargetStructureID":81063,"Label":"32654-81063 via Ribbon Synapse from 81062 -> 81064","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81062,"TargetID":81064,"Directional":true}]},{"ID":13249,"SourceStructureID":32654,"TargetStructureID":81079,"Label":"32654-81079 via Ribbon Synapse from 81078 -> 81080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81078,"TargetID":81080,"Directional":true}]},{"ID":13250,"SourceStructureID":32654,"TargetStructureID":81085,"Label":"32654-81085 via Ribbon Synapse from 81084 -> 81086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81084,"TargetID":81086,"Directional":true}]},{"ID":13251,"SourceStructureID":32654,"TargetStructureID":81087,"Label":"32654-81087 via Ribbon Synapse from 32842 -> 81088","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32842,"TargetID":81088,"Directional":true}]},{"ID":13252,"SourceStructureID":32654,"TargetStructureID":87158,"Label":"32654-87158 via BC Conventional Synapse from 118970 -> 118969","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":118970,"TargetID":118969,"Directional":true}]},{"ID":13253,"SourceStructureID":32660,"TargetStructureID":6617,"Label":"32660-6617 via Conventional from 32661 -> 6627, 32663 -> 6624, 32664 -> 6626","Type":"Conventional","Directional":true,"Links":[{"SourceID":32661,"TargetID":6627,"Directional":true},{"SourceID":32663,"TargetID":6624,"Directional":true},{"SourceID":32664,"TargetID":6626,"Directional":true}]},{"ID":13254,"SourceStructureID":32666,"TargetStructureID":6618,"Label":"32666-6618 via Conventional from 32667 -> 17611","Type":"Conventional","Directional":true,"Links":[{"SourceID":32667,"TargetID":17611,"Directional":true}]},{"ID":13255,"SourceStructureID":32668,"TargetStructureID":307,"Label":"32668-307 via Conventional from 32671 -> 15980","Type":"Conventional","Directional":true,"Links":[{"SourceID":32671,"TargetID":15980,"Directional":true}]},{"ID":13256,"SourceStructureID":32668,"TargetStructureID":6618,"Label":"32668-6618 via Conventional from 32670 -> 17610","Type":"Conventional","Directional":true,"Links":[{"SourceID":32670,"TargetID":17610,"Directional":true}]},{"ID":13257,"SourceStructureID":32676,"TargetStructureID":7054,"Label":"32676-7054 via Conventional from 32678 -> 10896","Type":"Conventional","Directional":true,"Links":[{"SourceID":32678,"TargetID":10896,"Directional":true}]},{"ID":13258,"SourceStructureID":32681,"TargetStructureID":334,"Label":"32681-334 via Conventional from 38481 -> 38482, 64570 -> 64569, 64573 -> 64572","Type":"Conventional","Directional":true,"Links":[{"SourceID":38481,"TargetID":38482,"Directional":true},{"SourceID":64570,"TargetID":64569,"Directional":true},{"SourceID":64573,"TargetID":64572,"Directional":true}]},{"ID":13259,"SourceStructureID":32681,"TargetStructureID":8586,"Label":"32681-8586 via Conventional from 32682 -> 32680","Type":"Conventional","Directional":true,"Links":[{"SourceID":32682,"TargetID":32680,"Directional":true}]},{"ID":13260,"SourceStructureID":32719,"TargetStructureID":8749,"Label":"32719-8749 via Conventional from 32720 -> 8850, 32724 -> 8852, 32725 -> 8854","Type":"Conventional","Directional":true,"Links":[{"SourceID":32720,"TargetID":8850,"Directional":true},{"SourceID":32724,"TargetID":8852,"Directional":true},{"SourceID":32725,"TargetID":8854,"Directional":true}]},{"ID":13261,"SourceStructureID":32726,"TargetStructureID":410,"Label":"32726-410 via Conventional from 32733 -> 18164","Type":"Conventional","Directional":true,"Links":[{"SourceID":32733,"TargetID":18164,"Directional":true}]},{"ID":13262,"SourceStructureID":32726,"TargetStructureID":5117,"Label":"32726-5117 via Conventional from 32732 -> 15002","Type":"Conventional","Directional":true,"Links":[{"SourceID":32732,"TargetID":15002,"Directional":true}]},{"ID":13263,"SourceStructureID":32726,"TargetStructureID":6153,"Label":"32726-6153 via Conventional from 32727 -> 32728, 32729 -> 32730, 32731 -> 18166","Type":"Conventional","Directional":true,"Links":[{"SourceID":32727,"TargetID":32728,"Directional":true},{"SourceID":32729,"TargetID":32730,"Directional":true},{"SourceID":32731,"TargetID":18166,"Directional":true}]},{"ID":13264,"SourceStructureID":32734,"TargetStructureID":476,"Label":"32734-476 via Conventional from 32735 -> 16501","Type":"Conventional","Directional":true,"Links":[{"SourceID":32735,"TargetID":16501,"Directional":true}]},{"ID":13265,"SourceStructureID":32739,"TargetStructureID":410,"Label":"32739-410 via Conventional from 32742 -> 32737, 32745 -> 23113, 32747 -> 32746, 32748 -> 18277","Type":"Conventional","Directional":true,"Links":[{"SourceID":32742,"TargetID":32737,"Directional":true},{"SourceID":32745,"TargetID":23113,"Directional":true},{"SourceID":32747,"TargetID":32746,"Directional":true},{"SourceID":32748,"TargetID":18277,"Directional":true}]},{"ID":13266,"SourceStructureID":32739,"TargetStructureID":419,"Label":"32739-419 via Conventional from 32740 -> 32741, 32744 -> 32743","Type":"Conventional","Directional":true,"Links":[{"SourceID":32740,"TargetID":32741,"Directional":true},{"SourceID":32744,"TargetID":32743,"Directional":true}]},{"ID":13267,"SourceStructureID":32739,"TargetStructureID":514,"Label":"32739-514 via Conventional from 32749 -> 15085","Type":"Conventional","Directional":true,"Links":[{"SourceID":32749,"TargetID":15085,"Directional":true}]},{"ID":13268,"SourceStructureID":32739,"TargetStructureID":9693,"Label":"32739-9693 via Conventional from 32750 -> 28198","Type":"Conventional","Directional":true,"Links":[{"SourceID":32750,"TargetID":28198,"Directional":true}]},{"ID":13269,"SourceStructureID":32751,"TargetStructureID":2610,"Label":"32751-2610 via Conventional from 32752 -> 18221","Type":"Conventional","Directional":true,"Links":[{"SourceID":32752,"TargetID":18221,"Directional":true}]},{"ID":13270,"SourceStructureID":32751,"TargetStructureID":9693,"Label":"32751-9693 via Conventional from 32753 -> 27495","Type":"Conventional","Directional":true,"Links":[{"SourceID":32753,"TargetID":27495,"Directional":true}]},{"ID":13271,"SourceStructureID":32754,"TargetStructureID":304,"Label":"32754-304 via Conventional from 32755 -> 32756","Type":"Conventional","Directional":true,"Links":[{"SourceID":32755,"TargetID":32756,"Directional":true}]},{"ID":13272,"SourceStructureID":32767,"TargetStructureID":11044,"Label":"32767-11044 via Conventional from 32768 -> 32766","Type":"Conventional","Directional":true,"Links":[{"SourceID":32768,"TargetID":32766,"Directional":true}]},{"ID":13273,"SourceStructureID":32771,"TargetStructureID":10412,"Label":"32771-10412 via Conventional from 32772 -> 10413","Type":"Conventional","Directional":true,"Links":[{"SourceID":32772,"TargetID":10413,"Directional":true}]},{"ID":13274,"SourceStructureID":32773,"TargetStructureID":6203,"Label":"32773-6203 via Conventional from 32775 -> 32776, 32779 -> 32780","Type":"Conventional","Directional":true,"Links":[{"SourceID":32775,"TargetID":32776,"Directional":true},{"SourceID":32779,"TargetID":32780,"Directional":true}]},{"ID":13275,"SourceStructureID":32773,"TargetStructureID":10412,"Label":"32773-10412 via Conventional from 32774 -> 10416","Type":"Conventional","Directional":true,"Links":[{"SourceID":32774,"TargetID":10416,"Directional":true}]},{"ID":13276,"SourceStructureID":32787,"TargetStructureID":5601,"Label":"32787-5601 via Conventional from 32790 -> 32791","Type":"Conventional","Directional":true,"Links":[{"SourceID":32790,"TargetID":32791,"Directional":true}]},{"ID":13277,"SourceStructureID":32787,"TargetStructureID":10815,"Label":"32787-10815 via Conventional from 32788 -> 32786","Type":"Conventional","Directional":true,"Links":[{"SourceID":32788,"TargetID":32786,"Directional":true}]},{"ID":13278,"SourceStructureID":32795,"TargetStructureID":10826,"Label":"32795-10826 via Conventional from 32796 -> 32794, 35466 -> 35467","Type":"Conventional","Directional":true,"Links":[{"SourceID":32796,"TargetID":32794,"Directional":true},{"SourceID":35466,"TargetID":35467,"Directional":true}]},{"ID":13279,"SourceStructureID":32795,"TargetStructureID":11248,"Label":"32795-11248 via Conventional from 33293 -> 33292, 33295 -> 33294","Type":"Conventional","Directional":true,"Links":[{"SourceID":33293,"TargetID":33292,"Directional":true},{"SourceID":33295,"TargetID":33294,"Directional":true}]},{"ID":13280,"SourceStructureID":32802,"TargetStructureID":10826,"Label":"32802-10826 via Conventional from 32803 -> 32801","Type":"Conventional","Directional":true,"Links":[{"SourceID":32803,"TargetID":32801,"Directional":true}]},{"ID":13281,"SourceStructureID":32802,"TargetStructureID":67469,"Label":"32802-67469 via Conventional from 35552 -> 69686","Type":"Conventional","Directional":true,"Links":[{"SourceID":35552,"TargetID":69686,"Directional":true}]},{"ID":13282,"SourceStructureID":32804,"TargetStructureID":5522,"Label":"32804-5522 via Conventional from 32805 -> 64124, 32808 -> 64254, 64304 -> 64303","Type":"Conventional","Directional":true,"Links":[{"SourceID":32805,"TargetID":64124,"Directional":true},{"SourceID":32808,"TargetID":64254,"Directional":true},{"SourceID":64304,"TargetID":64303,"Directional":true}]},{"ID":13283,"SourceStructureID":32804,"TargetStructureID":5623,"Label":"32804-5623 via Conventional from 32818 -> 32820","Type":"Conventional","Directional":true,"Links":[{"SourceID":32818,"TargetID":32820,"Directional":true}]},{"ID":13284,"SourceStructureID":32804,"TargetStructureID":6997,"Label":"32804-6997 via Conventional from 32821 -> 32822, 32825 -> 22281, 32829 -> 22312","Type":"Conventional","Directional":true,"Links":[{"SourceID":32821,"TargetID":32822,"Directional":true},{"SourceID":32825,"TargetID":22281,"Directional":true},{"SourceID":32829,"TargetID":22312,"Directional":true}]},{"ID":13285,"SourceStructureID":32804,"TargetStructureID":32654,"Label":"32804-32654 via Conventional from 32832 -> 49276, 32834 -> 49319, 32840 -> 32843, 32844 -> 32845","Type":"Conventional","Directional":true,"Links":[{"SourceID":32832,"TargetID":49276,"Directional":true},{"SourceID":32834,"TargetID":49319,"Directional":true},{"SourceID":32840,"TargetID":32843,"Directional":true},{"SourceID":32844,"TargetID":32845,"Directional":true}]},{"ID":13286,"SourceStructureID":32804,"TargetStructureID":61270,"Label":"32804-61270 via Conventional from 32831 -> 61274","Type":"Conventional","Directional":true,"Links":[{"SourceID":32831,"TargetID":61274,"Directional":true}]},{"ID":13287,"SourceStructureID":32804,"TargetStructureID":64196,"Label":"32804-64196 via Conventional from 32810 -> 64208","Type":"Conventional","Directional":true,"Links":[{"SourceID":32810,"TargetID":64208,"Directional":true}]},{"ID":13288,"SourceStructureID":32804,"TargetStructureID":64268,"Label":"32804-64268 via Conventional from 32811 -> 64286","Type":"Conventional","Directional":true,"Links":[{"SourceID":32811,"TargetID":64286,"Directional":true}]},{"ID":13289,"SourceStructureID":32804,"TargetStructureID":80755,"Label":"32804-80755 via Conventional from 32847 -> 118928, 80758 -> 80759, 80775 -> 80776","Type":"Conventional","Directional":true,"Links":[{"SourceID":32847,"TargetID":118928,"Directional":true},{"SourceID":80758,"TargetID":80759,"Directional":true},{"SourceID":80775,"TargetID":80776,"Directional":true}]},{"ID":13290,"SourceStructureID":32804,"TargetStructureID":81105,"Label":"32804-81105 via Conventional from 32824 -> 81106","Type":"Conventional","Directional":true,"Links":[{"SourceID":32824,"TargetID":81106,"Directional":true}]},{"ID":13291,"SourceStructureID":32848,"TargetStructureID":518,"Label":"32848-518 via Conventional from 36416 -> 36415, 36417 -> 3358, 36418 -> 3364, 36697 -> 3350","Type":"Conventional","Directional":true,"Links":[{"SourceID":36416,"TargetID":36415,"Directional":true},{"SourceID":36417,"TargetID":3358,"Directional":true},{"SourceID":36418,"TargetID":3364,"Directional":true},{"SourceID":36697,"TargetID":3350,"Directional":true}]},{"ID":13292,"SourceStructureID":32848,"TargetStructureID":10872,"Label":"32848-10872 via Conventional from 32849 -> 10873, 32850 -> 10874, 32851 -> 10875","Type":"Conventional","Directional":true,"Links":[{"SourceID":32849,"TargetID":10873,"Directional":true},{"SourceID":32850,"TargetID":10874,"Directional":true},{"SourceID":32851,"TargetID":10875,"Directional":true}]},{"ID":13293,"SourceStructureID":32853,"TargetStructureID":10872,"Label":"32853-10872 via Conventional from 32854 -> 10876","Type":"Conventional","Directional":true,"Links":[{"SourceID":32854,"TargetID":10876,"Directional":true}]},{"ID":13294,"SourceStructureID":32855,"TargetStructureID":10872,"Label":"32855-10872 via Conventional from 32856 -> 10876","Type":"Conventional","Directional":true,"Links":[{"SourceID":32856,"TargetID":10876,"Directional":true}]},{"ID":13295,"SourceStructureID":32857,"TargetStructureID":10872,"Label":"32857-10872 via Conventional from 32858 -> 10878","Type":"Conventional","Directional":true,"Links":[{"SourceID":32858,"TargetID":10878,"Directional":true}]},{"ID":13296,"SourceStructureID":32862,"TargetStructureID":5513,"Label":"32862-5513 via Conventional from 32865 -> 32866, 32868 -> 118225","Type":"Conventional","Directional":true,"Links":[{"SourceID":32865,"TargetID":32866,"Directional":true},{"SourceID":32868,"TargetID":118225,"Directional":true}]},{"ID":13297,"SourceStructureID":32862,"TargetStructureID":10872,"Label":"32862-10872 via Conventional from 32863 -> 10884","Type":"Conventional","Directional":true,"Links":[{"SourceID":32863,"TargetID":10884,"Directional":true}]},{"ID":13298,"SourceStructureID":32862,"TargetStructureID":25575,"Label":"32862-25575 via Conventional from 32867 -> 25587","Type":"Conventional","Directional":true,"Links":[{"SourceID":32867,"TargetID":25587,"Directional":true}]},{"ID":13299,"SourceStructureID":32871,"TargetStructureID":10931,"Label":"32871-10931 via Conventional from 32872 -> 10932","Type":"Conventional","Directional":true,"Links":[{"SourceID":32872,"TargetID":10932,"Directional":true}]},{"ID":13300,"SourceStructureID":32874,"TargetStructureID":138,"Label":"32874-138 via Conventional from 32876 -> 32882, 32883 -> 32885","Type":"Conventional","Directional":true,"Links":[{"SourceID":32876,"TargetID":32882,"Directional":true},{"SourceID":32883,"TargetID":32885,"Directional":true}]},{"ID":13301,"SourceStructureID":32874,"TargetStructureID":2063,"Label":"32874-2063 via Conventional from 32890 -> 36138","Type":"Conventional","Directional":true,"Links":[{"SourceID":32890,"TargetID":36138,"Directional":true}]},{"ID":13302,"SourceStructureID":32874,"TargetStructureID":32871,"Label":"32874-32871 via Conventional from 32875 -> 32873","Type":"Conventional","Directional":true,"Links":[{"SourceID":32875,"TargetID":32873,"Directional":true}]},{"ID":13303,"SourceStructureID":32892,"TargetStructureID":138,"Label":"32892-138 via Conventional from 32893 -> 32894","Type":"Conventional","Directional":true,"Links":[{"SourceID":32893,"TargetID":32894,"Directional":true}]},{"ID":13304,"SourceStructureID":32892,"TargetStructureID":32874,"Label":"32892-32874 via Conventional from 32896 -> 32888","Type":"Conventional","Directional":true,"Links":[{"SourceID":32896,"TargetID":32888,"Directional":true}]},{"ID":13305,"SourceStructureID":32900,"TargetStructureID":108861,"Label":"32900-108861 via Conventional from 38362 -> 108866","Type":"Conventional","Directional":true,"Links":[{"SourceID":38362,"TargetID":108866,"Directional":true}]},{"ID":13306,"SourceStructureID":32905,"TargetStructureID":10931,"Label":"32905-10931 via Conventional from 32906 -> 10935","Type":"Conventional","Directional":true,"Links":[{"SourceID":32906,"TargetID":10935,"Directional":true}]},{"ID":13307,"SourceStructureID":32911,"TargetStructureID":10943,"Label":"32911-10943 via Conventional from 32912 -> 16259","Type":"Conventional","Directional":true,"Links":[{"SourceID":32912,"TargetID":16259,"Directional":true}]},{"ID":13308,"SourceStructureID":32913,"TargetStructureID":593,"Label":"32913-593 via Conventional from 66288 -> 66289","Type":"Conventional","Directional":true,"Links":[{"SourceID":66288,"TargetID":66289,"Directional":true}]},{"ID":13309,"SourceStructureID":32913,"TargetStructureID":10943,"Label":"32913-10943 via Conventional from 32914 -> 16261","Type":"Conventional","Directional":true,"Links":[{"SourceID":32914,"TargetID":16261,"Directional":true}]},{"ID":13310,"SourceStructureID":32913,"TargetStructureID":16026,"Label":"32913-16026 via Conventional from 38351 -> 38352","Type":"Conventional","Directional":true,"Links":[{"SourceID":38351,"TargetID":38352,"Directional":true}]},{"ID":13311,"SourceStructureID":32913,"TargetStructureID":66804,"Label":"32913-66804 via Conventional from 38350 -> 66811","Type":"Conventional","Directional":true,"Links":[{"SourceID":38350,"TargetID":66811,"Directional":true}]},{"ID":13312,"SourceStructureID":32913,"TargetStructureID":67080,"Label":"32913-67080 via Conventional from 67079 -> 67081","Type":"Conventional","Directional":true,"Links":[{"SourceID":67079,"TargetID":67081,"Directional":true}]},{"ID":13313,"SourceStructureID":32916,"TargetStructureID":168,"Label":"32916-168 via Conventional from 49171 -> 49170","Type":"Conventional","Directional":true,"Links":[{"SourceID":49171,"TargetID":49170,"Directional":true}]},{"ID":13314,"SourceStructureID":32916,"TargetStructureID":10960,"Label":"32916-10960 via Conventional from 32917 -> 12472","Type":"Conventional","Directional":true,"Links":[{"SourceID":32917,"TargetID":12472,"Directional":true}]},{"ID":13315,"SourceStructureID":32920,"TargetStructureID":166,"Label":"32920-166 via Conventional from 39004 -> 39005","Type":"Conventional","Directional":true,"Links":[{"SourceID":39004,"TargetID":39005,"Directional":true}]},{"ID":13316,"SourceStructureID":32920,"TargetStructureID":170,"Label":"32920-170 via Conventional from 32923 -> 1218","Type":"Conventional","Directional":true,"Links":[{"SourceID":32923,"TargetID":1218,"Directional":true}]},{"ID":13317,"SourceStructureID":32920,"TargetStructureID":10960,"Label":"32920-10960 via Conventional from 32921 -> 32919","Type":"Conventional","Directional":true,"Links":[{"SourceID":32921,"TargetID":32919,"Directional":true}]},{"ID":13318,"SourceStructureID":32926,"TargetStructureID":5535,"Label":"32926-5535 via Conventional from 32933 -> 32932","Type":"Conventional","Directional":true,"Links":[{"SourceID":32933,"TargetID":32932,"Directional":true}]},{"ID":13319,"SourceStructureID":32926,"TargetStructureID":5609,"Label":"32926-5609 via Conventional from 32927 -> 32931","Type":"Conventional","Directional":true,"Links":[{"SourceID":32927,"TargetID":32931,"Directional":true}]},{"ID":13320,"SourceStructureID":32926,"TargetStructureID":10964,"Label":"32926-10964 via Conventional from 32928 -> 31489","Type":"Conventional","Directional":true,"Links":[{"SourceID":32928,"TargetID":31489,"Directional":true}]},{"ID":13321,"SourceStructureID":32936,"TargetStructureID":11020,"Label":"32936-11020 via Conventional from 32937 -> 20010","Type":"Conventional","Directional":true,"Links":[{"SourceID":32937,"TargetID":20010,"Directional":true}]},{"ID":13322,"SourceStructureID":32945,"TargetStructureID":11030,"Label":"32945-11030 via Conventional from 32946 -> 32947","Type":"Conventional","Directional":true,"Links":[{"SourceID":32946,"TargetID":32947,"Directional":true}]},{"ID":13323,"SourceStructureID":32950,"TargetStructureID":5297,"Label":"32950-5297 via Conventional from 32953 -> 39415","Type":"Conventional","Directional":true,"Links":[{"SourceID":32953,"TargetID":39415,"Directional":true}]},{"ID":13324,"SourceStructureID":32950,"TargetStructureID":32950,"Label":"32950-32950 via Conventional from 32951 -> 32952","Type":"Conventional","Directional":true,"Links":[{"SourceID":32951,"TargetID":32952,"Directional":true}]},{"ID":13325,"SourceStructureID":32954,"TargetStructureID":6115,"Label":"32954-6115 via Conventional from 32956 -> 32957","Type":"Conventional","Directional":true,"Links":[{"SourceID":32956,"TargetID":32957,"Directional":true}]},{"ID":13326,"SourceStructureID":32959,"TargetStructureID":517,"Label":"32959-517 via Conventional from 33025 -> 33026","Type":"Conventional","Directional":true,"Links":[{"SourceID":33025,"TargetID":33026,"Directional":true}]},{"ID":13327,"SourceStructureID":32959,"TargetStructureID":11033,"Label":"32959-11033 via Conventional from 32960 -> 32961","Type":"Conventional","Directional":true,"Links":[{"SourceID":32960,"TargetID":32961,"Directional":true}]},{"ID":13328,"SourceStructureID":32959,"TargetStructureID":11038,"Label":"32959-11038 via Conventional from 33021 -> 33022","Type":"Conventional","Directional":true,"Links":[{"SourceID":33021,"TargetID":33022,"Directional":true}]},{"ID":13329,"SourceStructureID":32959,"TargetStructureID":11321,"Label":"32959-11321 via Conventional from 33017 -> 33014, 33019 -> 33018","Type":"Conventional","Directional":true,"Links":[{"SourceID":33017,"TargetID":33014,"Directional":true},{"SourceID":33019,"TargetID":33018,"Directional":true}]},{"ID":13330,"SourceStructureID":32970,"TargetStructureID":166,"Label":"32970-166 via Conventional from 32980 -> 59977, 32981 -> 32982, 32981 -> 59988","Type":"Conventional","Directional":true,"Links":[{"SourceID":32980,"TargetID":59977,"Directional":true},{"SourceID":32981,"TargetID":32982,"Directional":true},{"SourceID":32981,"TargetID":59988,"Directional":true}]},{"ID":13331,"SourceStructureID":32970,"TargetStructureID":6115,"Label":"32970-6115 via Conventional from 32974 -> 16056, 32975 -> 32976, 72679 -> 72680","Type":"Conventional","Directional":true,"Links":[{"SourceID":32974,"TargetID":16056,"Directional":true},{"SourceID":32975,"TargetID":32976,"Directional":true},{"SourceID":72679,"TargetID":72680,"Directional":true}]},{"ID":13332,"SourceStructureID":32970,"TargetStructureID":11030,"Label":"32970-11030 via Conventional from 32971 -> 32972","Type":"Conventional","Directional":true,"Links":[{"SourceID":32971,"TargetID":32972,"Directional":true}]},{"ID":13333,"SourceStructureID":32970,"TargetStructureID":16087,"Label":"32970-16087 via Conventional from 32977 -> 16089","Type":"Conventional","Directional":true,"Links":[{"SourceID":32977,"TargetID":16089,"Directional":true}]},{"ID":13334,"SourceStructureID":32970,"TargetStructureID":71519,"Label":"32970-71519 via Conventional from 32973 -> 77036","Type":"Conventional","Directional":true,"Links":[{"SourceID":32973,"TargetID":77036,"Directional":true}]},{"ID":13335,"SourceStructureID":32987,"TargetStructureID":11089,"Label":"32987-11089 via Conventional from 32988 -> 30498","Type":"Conventional","Directional":true,"Links":[{"SourceID":32988,"TargetID":30498,"Directional":true}]},{"ID":13336,"SourceStructureID":32989,"TargetStructureID":11089,"Label":"32989-11089 via Conventional from 32990 -> 32991","Type":"Conventional","Directional":true,"Links":[{"SourceID":32990,"TargetID":32991,"Directional":true}]},{"ID":13337,"SourceStructureID":32992,"TargetStructureID":11172,"Label":"32992-11172 via Conventional from 32993 -> 15697","Type":"Conventional","Directional":true,"Links":[{"SourceID":32993,"TargetID":15697,"Directional":true}]},{"ID":13338,"SourceStructureID":32994,"TargetStructureID":579,"Label":"32994-579 via Conventional from 99197 -> 99198","Type":"Conventional","Directional":true,"Links":[{"SourceID":99197,"TargetID":99198,"Directional":true}]},{"ID":13339,"SourceStructureID":32994,"TargetStructureID":5565,"Label":"32994-5565 via Conventional from 99201 -> 50274","Type":"Conventional","Directional":true,"Links":[{"SourceID":99201,"TargetID":50274,"Directional":true}]},{"ID":13340,"SourceStructureID":32994,"TargetStructureID":11172,"Label":"32994-11172 via Conventional from 32995 -> 15698","Type":"Conventional","Directional":true,"Links":[{"SourceID":32995,"TargetID":15698,"Directional":true}]},{"ID":13341,"SourceStructureID":33003,"TargetStructureID":11172,"Label":"33003-11172 via Conventional from 33004 -> 15705","Type":"Conventional","Directional":true,"Links":[{"SourceID":33004,"TargetID":15705,"Directional":true}]},{"ID":13342,"SourceStructureID":33003,"TargetStructureID":66958,"Label":"33003-66958 via Conventional from 69947 -> 69937","Type":"Conventional","Directional":true,"Links":[{"SourceID":69947,"TargetID":69937,"Directional":true}]},{"ID":13343,"SourceStructureID":33008,"TargetStructureID":11250,"Label":"33008-11250 via Conventional from 33009 -> 30291","Type":"Conventional","Directional":true,"Links":[{"SourceID":33009,"TargetID":30291,"Directional":true}]},{"ID":13344,"SourceStructureID":33039,"TargetStructureID":4877,"Label":"33039-4877 via Conventional from 33049 -> 126822, 54222 -> 126865","Type":"Conventional","Directional":true,"Links":[{"SourceID":33049,"TargetID":126822,"Directional":true},{"SourceID":54222,"TargetID":126865,"Directional":true}]},{"ID":13345,"SourceStructureID":33039,"TargetStructureID":5637,"Label":"33039-5637 via Conventional from 33053 -> 33054","Type":"Conventional","Directional":true,"Links":[{"SourceID":33053,"TargetID":33054,"Directional":true}]},{"ID":13346,"SourceStructureID":33039,"TargetStructureID":11321,"Label":"33039-11321 via Conventional from 33040 -> 33038","Type":"Conventional","Directional":true,"Links":[{"SourceID":33040,"TargetID":33038,"Directional":true}]},{"ID":13347,"SourceStructureID":33057,"TargetStructureID":606,"Label":"33057-606 via Conventional from 33061 -> 48121, 33064 -> 33065","Type":"Conventional","Directional":true,"Links":[{"SourceID":33061,"TargetID":48121,"Directional":true},{"SourceID":33064,"TargetID":33065,"Directional":true}]},{"ID":13348,"SourceStructureID":33057,"TargetStructureID":5468,"Label":"33057-5468 via Conventional from 33060 -> 48130","Type":"Conventional","Directional":true,"Links":[{"SourceID":33060,"TargetID":48130,"Directional":true}]},{"ID":13349,"SourceStructureID":33057,"TargetStructureID":11321,"Label":"33057-11321 via Conventional from 33058 -> 33056","Type":"Conventional","Directional":true,"Links":[{"SourceID":33058,"TargetID":33056,"Directional":true}]},{"ID":13350,"SourceStructureID":33072,"TargetStructureID":11401,"Label":"33072-11401 via Conventional from 33073 -> 11403","Type":"Conventional","Directional":true,"Links":[{"SourceID":33073,"TargetID":11403,"Directional":true}]},{"ID":13351,"SourceStructureID":33088,"TargetStructureID":14615,"Label":"33088-14615 via Conventional from 33089 -> 25316","Type":"Conventional","Directional":true,"Links":[{"SourceID":33089,"TargetID":25316,"Directional":true}]},{"ID":13352,"SourceStructureID":33092,"TargetStructureID":5283,"Label":"33092-5283 via Conventional from 123779 -> 123780","Type":"Conventional","Directional":true,"Links":[{"SourceID":123779,"TargetID":123780,"Directional":true}]},{"ID":13353,"SourceStructureID":33092,"TargetStructureID":14615,"Label":"33092-14615 via Conventional from 36608 -> 33091","Type":"Conventional","Directional":true,"Links":[{"SourceID":36608,"TargetID":33091,"Directional":true}]},{"ID":13354,"SourceStructureID":33114,"TargetStructureID":15100,"Label":"33114-15100 via Conventional from 33115 -> 17999","Type":"Conventional","Directional":true,"Links":[{"SourceID":33115,"TargetID":17999,"Directional":true}]},{"ID":13355,"SourceStructureID":33117,"TargetStructureID":15100,"Label":"33117-15100 via Conventional from 33118 -> 33119","Type":"Conventional","Directional":true,"Links":[{"SourceID":33118,"TargetID":33119,"Directional":true}]},{"ID":13356,"SourceStructureID":33117,"TargetStructureID":26079,"Label":"33117-26079 via Conventional from 33125 -> 33126","Type":"Conventional","Directional":true,"Links":[{"SourceID":33125,"TargetID":33126,"Directional":true}]},{"ID":13357,"SourceStructureID":33127,"TargetStructureID":408,"Label":"33127-408 via Conventional from 33129 -> 33131, 33133 -> 52952","Type":"Conventional","Directional":true,"Links":[{"SourceID":33129,"TargetID":33131,"Directional":true},{"SourceID":33133,"TargetID":52952,"Directional":true}]},{"ID":13358,"SourceStructureID":33127,"TargetStructureID":6912,"Label":"33127-6912 via Conventional from 33135 -> 6927, 33139 -> 33140, 33142 -> 33146","Type":"Conventional","Directional":true,"Links":[{"SourceID":33135,"TargetID":6927,"Directional":true},{"SourceID":33139,"TargetID":33140,"Directional":true},{"SourceID":33142,"TargetID":33146,"Directional":true}]},{"ID":13359,"SourceStructureID":33127,"TargetStructureID":15942,"Label":"33127-15942 via Conventional from 33128 -> 15967","Type":"Conventional","Directional":true,"Links":[{"SourceID":33128,"TargetID":15967,"Directional":true}]},{"ID":13360,"SourceStructureID":33127,"TargetStructureID":28886,"Label":"33127-28886 via Conventional from 33143 -> 51321","Type":"Conventional","Directional":true,"Links":[{"SourceID":33143,"TargetID":51321,"Directional":true}]},{"ID":13361,"SourceStructureID":33148,"TargetStructureID":324,"Label":"33148-324 via Conventional from 33155 -> 12378","Type":"Conventional","Directional":true,"Links":[{"SourceID":33155,"TargetID":12378,"Directional":true}]},{"ID":13362,"SourceStructureID":33148,"TargetStructureID":366,"Label":"33148-366 via Conventional from 33154 -> 13988","Type":"Conventional","Directional":true,"Links":[{"SourceID":33154,"TargetID":13988,"Directional":true}]},{"ID":13363,"SourceStructureID":33148,"TargetStructureID":15979,"Label":"33148-15979 via Conventional from 33149 -> 33147","Type":"Conventional","Directional":true,"Links":[{"SourceID":33149,"TargetID":33147,"Directional":true}]},{"ID":13364,"SourceStructureID":33161,"TargetStructureID":461,"Label":"33161-461 via Conventional from 114779 -> 114778","Type":"Conventional","Directional":true,"Links":[{"SourceID":114779,"TargetID":114778,"Directional":true}]},{"ID":13365,"SourceStructureID":33198,"TargetStructureID":16446,"Label":"33198-16446 via Conventional from 33199 -> 16450","Type":"Conventional","Directional":true,"Links":[{"SourceID":33199,"TargetID":16450,"Directional":true}]},{"ID":13366,"SourceStructureID":33200,"TargetStructureID":16446,"Label":"33200-16446 via Conventional from 33202 -> 33201","Type":"Conventional","Directional":true,"Links":[{"SourceID":33202,"TargetID":33201,"Directional":true}]},{"ID":13367,"SourceStructureID":33217,"TargetStructureID":5528,"Label":"33217-5528 via Conventional from 33228 -> 94177, 93977 -> 93976, 94147 -> 94148","Type":"Conventional","Directional":true,"Links":[{"SourceID":33228,"TargetID":94177,"Directional":true},{"SourceID":93977,"TargetID":93976,"Directional":true},{"SourceID":94147,"TargetID":94148,"Directional":true}]},{"ID":13368,"SourceStructureID":33217,"TargetStructureID":5530,"Label":"33217-5530 via Conventional from 33220 -> 23841","Type":"Conventional","Directional":true,"Links":[{"SourceID":33220,"TargetID":23841,"Directional":true}]},{"ID":13369,"SourceStructureID":33217,"TargetStructureID":6129,"Label":"33217-6129 via Conventional from 88533 -> 88534","Type":"Conventional","Directional":true,"Links":[{"SourceID":88533,"TargetID":88534,"Directional":true}]},{"ID":13370,"SourceStructureID":33217,"TargetStructureID":10596,"Label":"33217-10596 via Conventional from 33218 -> 33215","Type":"Conventional","Directional":true,"Links":[{"SourceID":33218,"TargetID":33215,"Directional":true}]},{"ID":13371,"SourceStructureID":33253,"TargetStructureID":10956,"Label":"33253-10956 via Conventional from 33254 -> 33248","Type":"Conventional","Directional":true,"Links":[{"SourceID":33254,"TargetID":33248,"Directional":true}]},{"ID":13372,"SourceStructureID":33272,"TargetStructureID":5598,"Label":"33272-5598 via Conventional from 89761 -> 89762, 89770 -> 89771, 89773 -> 89774","Type":"Conventional","Directional":true,"Links":[{"SourceID":89761,"TargetID":89762,"Directional":true},{"SourceID":89770,"TargetID":89771,"Directional":true},{"SourceID":89773,"TargetID":89774,"Directional":true}]},{"ID":13373,"SourceStructureID":33272,"TargetStructureID":6141,"Label":"33272-6141 via Conventional from 33276 -> 33277","Type":"Conventional","Directional":true,"Links":[{"SourceID":33276,"TargetID":33277,"Directional":true}]},{"ID":13374,"SourceStructureID":33272,"TargetStructureID":11038,"Label":"33272-11038 via Conventional from 89712 -> 89717","Type":"Conventional","Directional":true,"Links":[{"SourceID":89712,"TargetID":89717,"Directional":true}]},{"ID":13375,"SourceStructureID":33272,"TargetStructureID":89737,"Label":"33272-89737 via Conventional from 33278 -> 89738","Type":"Conventional","Directional":true,"Links":[{"SourceID":33278,"TargetID":89738,"Directional":true}]},{"ID":13376,"SourceStructureID":33333,"TargetStructureID":516,"Label":"33333-516 via Conventional from 33334 -> 10846, 64361 -> 64360","Type":"Conventional","Directional":true,"Links":[{"SourceID":33334,"TargetID":10846,"Directional":true},{"SourceID":64361,"TargetID":64360,"Directional":true}]},{"ID":13377,"SourceStructureID":33588,"TargetStructureID":280,"Label":"33588-280 via Conventional from 33591 -> 33592, 33593 -> 33594","Type":"Conventional","Directional":true,"Links":[{"SourceID":33591,"TargetID":33592,"Directional":true},{"SourceID":33593,"TargetID":33594,"Directional":true}]},{"ID":13378,"SourceStructureID":33615,"TargetStructureID":5563,"Label":"33615-5563 via Conventional from 33619 -> 33614","Type":"Conventional","Directional":true,"Links":[{"SourceID":33619,"TargetID":33614,"Directional":true}]},{"ID":13379,"SourceStructureID":33615,"TargetStructureID":5565,"Label":"33615-5565 via Conventional from 33616 -> 33617","Type":"Conventional","Directional":true,"Links":[{"SourceID":33616,"TargetID":33617,"Directional":true}]},{"ID":13380,"SourceStructureID":33625,"TargetStructureID":15796,"Label":"33625-15796 via Conventional from 33645 -> 55676","Type":"Conventional","Directional":true,"Links":[{"SourceID":33645,"TargetID":55676,"Directional":true}]},{"ID":13381,"SourceStructureID":33625,"TargetStructureID":99338,"Label":"33625-99338 via Conventional from 99216 -> 99339","Type":"Conventional","Directional":true,"Links":[{"SourceID":99216,"TargetID":99339,"Directional":true}]},{"ID":13382,"SourceStructureID":33625,"TargetStructureID":99356,"Label":"33625-99356 via Conventional from 33647 -> 99357","Type":"Conventional","Directional":true,"Links":[{"SourceID":33647,"TargetID":99357,"Directional":true}]},{"ID":13383,"SourceStructureID":33625,"TargetStructureID":99365,"Label":"33625-99365 via Conventional from 33648 -> 99368","Type":"Conventional","Directional":true,"Links":[{"SourceID":33648,"TargetID":99368,"Directional":true}]},{"ID":13384,"SourceStructureID":33625,"TargetStructureID":99370,"Label":"33625-99370 via Conventional from 33649 -> 99373","Type":"Conventional","Directional":true,"Links":[{"SourceID":33649,"TargetID":99373,"Directional":true}]},{"ID":13385,"SourceStructureID":33675,"TargetStructureID":10956,"Label":"33675-10956 via Conventional from 33676 -> 33674","Type":"Conventional","Directional":true,"Links":[{"SourceID":33676,"TargetID":33674,"Directional":true}]},{"ID":13386,"SourceStructureID":33714,"TargetStructureID":5303,"Label":"33714-5303 via Conventional from 99379 -> 35733","Type":"Conventional","Directional":true,"Links":[{"SourceID":99379,"TargetID":35733,"Directional":true}]},{"ID":13387,"SourceStructureID":33714,"TargetStructureID":6204,"Label":"33714-6204 via Conventional from 99382 -> 99384","Type":"Conventional","Directional":true,"Links":[{"SourceID":99382,"TargetID":99384,"Directional":true}]},{"ID":13388,"SourceStructureID":33714,"TargetStructureID":11085,"Label":"33714-11085 via Conventional from 33716 -> 33713","Type":"Conventional","Directional":true,"Links":[{"SourceID":33716,"TargetID":33713,"Directional":true}]},{"ID":13389,"SourceStructureID":33873,"TargetStructureID":1724,"Label":"33873-1724 via Conventional from 33874 -> 3982","Type":"Conventional","Directional":true,"Links":[{"SourceID":33874,"TargetID":3982,"Directional":true}]},{"ID":13390,"SourceStructureID":33873,"TargetStructureID":5575,"Label":"33873-5575 via Conventional from 33876 -> 22951","Type":"Conventional","Directional":true,"Links":[{"SourceID":33876,"TargetID":22951,"Directional":true}]},{"ID":13391,"SourceStructureID":33881,"TargetStructureID":458,"Label":"33881-458 via Conventional from 33922 -> 14531","Type":"Conventional","Directional":true,"Links":[{"SourceID":33922,"TargetID":14531,"Directional":true}]},{"ID":13392,"SourceStructureID":33881,"TargetStructureID":968,"Label":"33881-968 via Conventional from 33912 -> 33913","Type":"Conventional","Directional":true,"Links":[{"SourceID":33912,"TargetID":33913,"Directional":true}]},{"ID":13393,"SourceStructureID":33881,"TargetStructureID":992,"Label":"33881-992 via Conventional from 33908 -> 60207","Type":"Conventional","Directional":true,"Links":[{"SourceID":33908,"TargetID":60207,"Directional":true}]},{"ID":13394,"SourceStructureID":33881,"TargetStructureID":4849,"Label":"33881-4849 via Conventional from 33882 -> 33883, 33884 -> 33885","Type":"Conventional","Directional":true,"Links":[{"SourceID":33882,"TargetID":33883,"Directional":true},{"SourceID":33884,"TargetID":33885,"Directional":true}]},{"ID":13395,"SourceStructureID":33881,"TargetStructureID":4850,"Label":"33881-4850 via Conventional from 33887 -> 33892","Type":"Conventional","Directional":true,"Links":[{"SourceID":33887,"TargetID":33892,"Directional":true}]},{"ID":13396,"SourceStructureID":33881,"TargetStructureID":131722,"Label":"33881-131722 via Conventional from 33917 -> 131737","Type":"Conventional","Directional":true,"Links":[{"SourceID":33917,"TargetID":131737,"Directional":true}]},{"ID":13397,"SourceStructureID":34028,"TargetStructureID":142,"Label":"34028-142 via Conventional from 34033 -> 92931","Type":"Conventional","Directional":true,"Links":[{"SourceID":34033,"TargetID":92931,"Directional":true}]},{"ID":13398,"SourceStructureID":34028,"TargetStructureID":171,"Label":"34028-171 via Conventional from 34029 -> 34030","Type":"Conventional","Directional":true,"Links":[{"SourceID":34029,"TargetID":34030,"Directional":true}]},{"ID":13399,"SourceStructureID":34028,"TargetStructureID":39696,"Label":"34028-39696 via Conventional from 34032 -> 39782","Type":"Conventional","Directional":true,"Links":[{"SourceID":34032,"TargetID":39782,"Directional":true}]},{"ID":13400,"SourceStructureID":34034,"TargetStructureID":171,"Label":"34034-171 via Conventional from 34035 -> 87723","Type":"Conventional","Directional":true,"Links":[{"SourceID":34035,"TargetID":87723,"Directional":true}]},{"ID":13401,"SourceStructureID":34036,"TargetStructureID":142,"Label":"34036-142 via Conventional from 34039 -> 31788, 34050 -> 34051, 47139 -> 47138","Type":"Conventional","Directional":true,"Links":[{"SourceID":34039,"TargetID":31788,"Directional":true},{"SourceID":34050,"TargetID":34051,"Directional":true},{"SourceID":47139,"TargetID":47138,"Directional":true}]},{"ID":13402,"SourceStructureID":34036,"TargetStructureID":171,"Label":"34036-171 via Conventional from 34037 -> 34038","Type":"Conventional","Directional":true,"Links":[{"SourceID":34037,"TargetID":34038,"Directional":true}]},{"ID":13403,"SourceStructureID":34036,"TargetStructureID":176,"Label":"34036-176 via Conventional from 34043 -> 34044","Type":"Conventional","Directional":true,"Links":[{"SourceID":34043,"TargetID":34044,"Directional":true}]},{"ID":13404,"SourceStructureID":34036,"TargetStructureID":5279,"Label":"34036-5279 via Conventional from 34049 -> 49213","Type":"Conventional","Directional":true,"Links":[{"SourceID":34049,"TargetID":49213,"Directional":true}]},{"ID":13405,"SourceStructureID":34036,"TargetStructureID":6117,"Label":"34036-6117 via Conventional from 34040 -> 59089","Type":"Conventional","Directional":true,"Links":[{"SourceID":34040,"TargetID":59089,"Directional":true}]},{"ID":13406,"SourceStructureID":34036,"TargetStructureID":10625,"Label":"34036-10625 via Conventional from 34047 -> 33607","Type":"Conventional","Directional":true,"Links":[{"SourceID":34047,"TargetID":33607,"Directional":true}]},{"ID":13407,"SourceStructureID":34053,"TargetStructureID":273,"Label":"34053-273 via Conventional from 34054 -> 34052","Type":"Conventional","Directional":true,"Links":[{"SourceID":34054,"TargetID":34052,"Directional":true}]},{"ID":13408,"SourceStructureID":34055,"TargetStructureID":168,"Label":"34055-168 via Conventional from 34079 -> 34082, 34085 -> 4226, 81944 -> 81945","Type":"Conventional","Directional":true,"Links":[{"SourceID":34079,"TargetID":34082,"Directional":true},{"SourceID":34085,"TargetID":4226,"Directional":true},{"SourceID":81944,"TargetID":81945,"Directional":true}]},{"ID":13409,"SourceStructureID":34055,"TargetStructureID":176,"Label":"34055-176 via Conventional from 34105 -> 34109","Type":"Conventional","Directional":true,"Links":[{"SourceID":34105,"TargetID":34109,"Directional":true}]},{"ID":13410,"SourceStructureID":34055,"TargetStructureID":273,"Label":"34055-273 via Conventional from 34056 -> 34057","Type":"Conventional","Directional":true,"Links":[{"SourceID":34056,"TargetID":34057,"Directional":true}]},{"ID":13411,"SourceStructureID":34055,"TargetStructureID":330,"Label":"34055-330 via Conventional from 34286 -> 26177","Type":"Conventional","Directional":true,"Links":[{"SourceID":34286,"TargetID":26177,"Directional":true}]},{"ID":13412,"SourceStructureID":34055,"TargetStructureID":431,"Label":"34055-431 via Conventional from 34063 -> 12655, 34283 -> 34284","Type":"Conventional","Directional":true,"Links":[{"SourceID":34063,"TargetID":12655,"Directional":true},{"SourceID":34283,"TargetID":34284,"Directional":true}]},{"ID":13413,"SourceStructureID":34055,"TargetStructureID":446,"Label":"34055-446 via Conventional from 34288 -> 34289, 34290 -> 34291, 34292 -> 34293","Type":"Conventional","Directional":true,"Links":[{"SourceID":34288,"TargetID":34289,"Directional":true},{"SourceID":34290,"TargetID":34291,"Directional":true},{"SourceID":34292,"TargetID":34293,"Directional":true}]},{"ID":13414,"SourceStructureID":34055,"TargetStructureID":461,"Label":"34055-461 via Conventional from 34074 -> 14679, 34075 -> 14802","Type":"Conventional","Directional":true,"Links":[{"SourceID":34074,"TargetID":14679,"Directional":true},{"SourceID":34075,"TargetID":14802,"Directional":true}]},{"ID":13415,"SourceStructureID":34055,"TargetStructureID":468,"Label":"34055-468 via Conventional from 34465 -> 12930, 34469 -> 34470","Type":"Conventional","Directional":true,"Links":[{"SourceID":34465,"TargetID":12930,"Directional":true},{"SourceID":34469,"TargetID":34470,"Directional":true}]},{"ID":13416,"SourceStructureID":34055,"TargetStructureID":5530,"Label":"34055-5530 via Conventional from 34096 -> 80192","Type":"Conventional","Directional":true,"Links":[{"SourceID":34096,"TargetID":80192,"Directional":true}]},{"ID":13417,"SourceStructureID":34055,"TargetStructureID":5598,"Label":"34055-5598 via Conventional from 34121 -> 34122","Type":"Conventional","Directional":true,"Links":[{"SourceID":34121,"TargetID":34122,"Directional":true}]},{"ID":13418,"SourceStructureID":34055,"TargetStructureID":5601,"Label":"34055-5601 via Conventional from 34100 -> 34101","Type":"Conventional","Directional":true,"Links":[{"SourceID":34100,"TargetID":34101,"Directional":true}]},{"ID":13419,"SourceStructureID":34055,"TargetStructureID":6203,"Label":"34055-6203 via Conventional from 34125 -> 34126","Type":"Conventional","Directional":true,"Links":[{"SourceID":34125,"TargetID":34126,"Directional":true}]},{"ID":13420,"SourceStructureID":34055,"TargetStructureID":10412,"Label":"34055-10412 via Conventional from 38477 -> 34124","Type":"Conventional","Directional":true,"Links":[{"SourceID":38477,"TargetID":34124,"Directional":true}]},{"ID":13421,"SourceStructureID":34055,"TargetStructureID":12564,"Label":"34055-12564 via Conventional from 55640 -> 55641","Type":"Conventional","Directional":true,"Links":[{"SourceID":55640,"TargetID":55641,"Directional":true}]},{"ID":13422,"SourceStructureID":34135,"TargetStructureID":285,"Label":"34135-285 via Conventional from 34136 -> 34137","Type":"Conventional","Directional":true,"Links":[{"SourceID":34136,"TargetID":34137,"Directional":true}]},{"ID":13423,"SourceStructureID":34135,"TargetStructureID":309,"Label":"34135-309 via Conventional from 99434 -> 13315","Type":"Conventional","Directional":true,"Links":[{"SourceID":99434,"TargetID":13315,"Directional":true}]},{"ID":13424,"SourceStructureID":34148,"TargetStructureID":286,"Label":"34148-286 via Conventional from 38749 -> 38750","Type":"Conventional","Directional":true,"Links":[{"SourceID":38749,"TargetID":38750,"Directional":true}]},{"ID":13425,"SourceStructureID":34148,"TargetStructureID":293,"Label":"34148-293 via Conventional from 34149 -> 14378","Type":"Conventional","Directional":true,"Links":[{"SourceID":34149,"TargetID":14378,"Directional":true}]},{"ID":13426,"SourceStructureID":34148,"TargetStructureID":20311,"Label":"34148-20311 via Conventional from 38748 -> 30342","Type":"Conventional","Directional":true,"Links":[{"SourceID":38748,"TargetID":30342,"Directional":true}]},{"ID":13427,"SourceStructureID":34152,"TargetStructureID":293,"Label":"34152-293 via Conventional from 34153 -> 34151","Type":"Conventional","Directional":true,"Links":[{"SourceID":34153,"TargetID":34151,"Directional":true}]},{"ID":13428,"SourceStructureID":34152,"TargetStructureID":55191,"Label":"34152-55191 via Conventional from 34155 -> 55193","Type":"Conventional","Directional":true,"Links":[{"SourceID":34155,"TargetID":55193,"Directional":true}]},{"ID":13429,"SourceStructureID":34159,"TargetStructureID":294,"Label":"34159-294 via Conventional from 34160 -> 34158","Type":"Conventional","Directional":true,"Links":[{"SourceID":34160,"TargetID":34158,"Directional":true}]},{"ID":13430,"SourceStructureID":34159,"TargetStructureID":99482,"Label":"34159-99482 via Conventional from 34163 -> 99485","Type":"Conventional","Directional":true,"Links":[{"SourceID":34163,"TargetID":99485,"Directional":true}]},{"ID":13431,"SourceStructureID":34164,"TargetStructureID":71882,"Label":"34164-71882 via Ribbon Synapse from 90289 -> 90290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90289,"TargetID":90290,"Directional":true}]},{"ID":13432,"SourceStructureID":34165,"TargetStructureID":350,"Label":"34165-350 via Conventional from 34166 -> 18730","Type":"Conventional","Directional":true,"Links":[{"SourceID":34166,"TargetID":18730,"Directional":true}]},{"ID":13433,"SourceStructureID":34165,"TargetStructureID":446,"Label":"34165-446 via Conventional from 34169 -> 34170","Type":"Conventional","Directional":true,"Links":[{"SourceID":34169,"TargetID":34170,"Directional":true}]},{"ID":13434,"SourceStructureID":34253,"TargetStructureID":332,"Label":"34253-332 via Conventional from 99491 -> 99492","Type":"Conventional","Directional":true,"Links":[{"SourceID":99491,"TargetID":99492,"Directional":true}]},{"ID":13435,"SourceStructureID":34253,"TargetStructureID":365,"Label":"34253-365 via Conventional from 34254 -> 34252","Type":"Conventional","Directional":true,"Links":[{"SourceID":34254,"TargetID":34252,"Directional":true}]},{"ID":13436,"SourceStructureID":34253,"TargetStructureID":6153,"Label":"34253-6153 via Conventional from 99495 -> 99496","Type":"Conventional","Directional":true,"Links":[{"SourceID":99495,"TargetID":99496,"Directional":true}]},{"ID":13437,"SourceStructureID":34256,"TargetStructureID":365,"Label":"34256-365 via Conventional from 34257 -> 34255","Type":"Conventional","Directional":true,"Links":[{"SourceID":34257,"TargetID":34255,"Directional":true}]},{"ID":13438,"SourceStructureID":34259,"TargetStructureID":365,"Label":"34259-365 via Conventional from 34260 -> 34258","Type":"Conventional","Directional":true,"Links":[{"SourceID":34260,"TargetID":34258,"Directional":true}]},{"ID":13439,"SourceStructureID":34259,"TargetStructureID":34256,"Label":"34259-34256 via Conventional from 34261 -> 45616","Type":"Conventional","Directional":true,"Links":[{"SourceID":34261,"TargetID":45616,"Directional":true}]},{"ID":13440,"SourceStructureID":34263,"TargetStructureID":365,"Label":"34263-365 via Conventional from 34264 -> 34265","Type":"Conventional","Directional":true,"Links":[{"SourceID":34264,"TargetID":34265,"Directional":true}]},{"ID":13441,"SourceStructureID":34270,"TargetStructureID":324,"Label":"34270-324 via Conventional from 34273 -> 34274","Type":"Conventional","Directional":true,"Links":[{"SourceID":34273,"TargetID":34274,"Directional":true}]},{"ID":13442,"SourceStructureID":34270,"TargetStructureID":330,"Label":"34270-330 via Conventional from 34277 -> 26155","Type":"Conventional","Directional":true,"Links":[{"SourceID":34277,"TargetID":26155,"Directional":true}]},{"ID":13443,"SourceStructureID":34270,"TargetStructureID":369,"Label":"34270-369 via Conventional from 34271 -> 34269","Type":"Conventional","Directional":true,"Links":[{"SourceID":34271,"TargetID":34269,"Directional":true}]},{"ID":13444,"SourceStructureID":34270,"TargetStructureID":34055,"Label":"34270-34055 via Conventional from 34281 -> 34066","Type":"Conventional","Directional":true,"Links":[{"SourceID":34281,"TargetID":34066,"Directional":true}]},{"ID":13445,"SourceStructureID":34295,"TargetStructureID":422,"Label":"34295-422 via Conventional from 34296 -> 34294","Type":"Conventional","Directional":true,"Links":[{"SourceID":34296,"TargetID":34294,"Directional":true}]},{"ID":13446,"SourceStructureID":34300,"TargetStructureID":422,"Label":"34300-422 via Conventional from 34301 -> 34299","Type":"Conventional","Directional":true,"Links":[{"SourceID":34301,"TargetID":34299,"Directional":true}]},{"ID":13447,"SourceStructureID":34306,"TargetStructureID":434,"Label":"34306-434 via Conventional from 34307 -> 34305","Type":"Conventional","Directional":true,"Links":[{"SourceID":34307,"TargetID":34305,"Directional":true}]},{"ID":13448,"SourceStructureID":34306,"TargetStructureID":461,"Label":"34306-461 via Conventional from 114809 -> 114808","Type":"Conventional","Directional":true,"Links":[{"SourceID":114809,"TargetID":114808,"Directional":true}]},{"ID":13449,"SourceStructureID":34311,"TargetStructureID":330,"Label":"34311-330 via Conventional from 99509 -> 99510","Type":"Conventional","Directional":true,"Links":[{"SourceID":99509,"TargetID":99510,"Directional":true}]},{"ID":13450,"SourceStructureID":34311,"TargetStructureID":434,"Label":"34311-434 via Conventional from 35496 -> 35497","Type":"Conventional","Directional":true,"Links":[{"SourceID":35496,"TargetID":35497,"Directional":true}]},{"ID":13451,"SourceStructureID":34311,"TargetStructureID":441,"Label":"34311-441 via Conventional from 34312 -> 2041, 64298 -> 2047, 64299 -> 2045","Type":"Conventional","Directional":true,"Links":[{"SourceID":34312,"TargetID":2041,"Directional":true},{"SourceID":64298,"TargetID":2047,"Directional":true},{"SourceID":64299,"TargetID":2045,"Directional":true}]},{"ID":13452,"SourceStructureID":34315,"TargetStructureID":445,"Label":"34315-445 via Conventional from 34335 -> 1969","Type":"Conventional","Directional":true,"Links":[{"SourceID":34335,"TargetID":1969,"Directional":true}]},{"ID":13453,"SourceStructureID":34315,"TargetStructureID":446,"Label":"34315-446 via Conventional from 35147 -> 35148","Type":"Conventional","Directional":true,"Links":[{"SourceID":35147,"TargetID":35148,"Directional":true}]},{"ID":13454,"SourceStructureID":34315,"TargetStructureID":606,"Label":"34315-606 via Conventional from 34324 -> 34327, 34328 -> 48102, 35503 -> 35504, 35505 -> 5077, 52379 -> 52378, 53709 -> 53708","Type":"Conventional","Directional":true,"Links":[{"SourceID":34324,"TargetID":34327,"Directional":true},{"SourceID":34328,"TargetID":48102,"Directional":true},{"SourceID":35503,"TargetID":35504,"Directional":true},{"SourceID":35505,"TargetID":5077,"Directional":true},{"SourceID":52379,"TargetID":52378,"Directional":true},{"SourceID":53709,"TargetID":53708,"Directional":true}]},{"ID":13455,"SourceStructureID":34315,"TargetStructureID":5468,"Label":"34315-5468 via Conventional from 35509 -> 48213","Type":"Conventional","Directional":true,"Links":[{"SourceID":35509,"TargetID":48213,"Directional":true}]},{"ID":13456,"SourceStructureID":34315,"TargetStructureID":5528,"Label":"34315-5528 via Conventional from 34317 -> 34319","Type":"Conventional","Directional":true,"Links":[{"SourceID":34317,"TargetID":34319,"Directional":true}]},{"ID":13457,"SourceStructureID":34315,"TargetStructureID":5601,"Label":"34315-5601 via Conventional from 34323 -> 34326, 35506 -> 35507","Type":"Conventional","Directional":true,"Links":[{"SourceID":34323,"TargetID":34326,"Directional":true},{"SourceID":35506,"TargetID":35507,"Directional":true}]},{"ID":13458,"SourceStructureID":34315,"TargetStructureID":7594,"Label":"34315-7594 via Conventional from 34325 -> 7608","Type":"Conventional","Directional":true,"Links":[{"SourceID":34325,"TargetID":7608,"Directional":true}]},{"ID":13459,"SourceStructureID":34337,"TargetStructureID":34336,"Label":"34337-34336 via Conventional from 34339 -> 34340","Type":"Conventional","Directional":true,"Links":[{"SourceID":34339,"TargetID":34340,"Directional":true}]},{"ID":13460,"SourceStructureID":34452,"TargetStructureID":464,"Label":"34452-464 via Conventional from 34453 -> 8068","Type":"Conventional","Directional":true,"Links":[{"SourceID":34453,"TargetID":8068,"Directional":true}]},{"ID":13461,"SourceStructureID":34494,"TargetStructureID":324,"Label":"34494-324 via Conventional from 34507 -> 34508","Type":"Conventional","Directional":true,"Links":[{"SourceID":34507,"TargetID":34508,"Directional":true}]},{"ID":13462,"SourceStructureID":34494,"TargetStructureID":366,"Label":"34494-366 via Conventional from 34505 -> 34506","Type":"Conventional","Directional":true,"Links":[{"SourceID":34505,"TargetID":34506,"Directional":true}]},{"ID":13463,"SourceStructureID":34494,"TargetStructureID":428,"Label":"34494-428 via Conventional from 66206 -> 66205","Type":"Conventional","Directional":true,"Links":[{"SourceID":66206,"TargetID":66205,"Directional":true}]},{"ID":13464,"SourceStructureID":34494,"TargetStructureID":469,"Label":"34494-469 via Conventional from 34495 -> 34491","Type":"Conventional","Directional":true,"Links":[{"SourceID":34495,"TargetID":34491,"Directional":true}]},{"ID":13465,"SourceStructureID":34494,"TargetStructureID":471,"Label":"34494-471 via Conventional from 34496 -> 34493","Type":"Conventional","Directional":true,"Links":[{"SourceID":34496,"TargetID":34493,"Directional":true}]},{"ID":13466,"SourceStructureID":34494,"TargetStructureID":4569,"Label":"34494-4569 via Conventional from 98361 -> 98362","Type":"Conventional","Directional":true,"Links":[{"SourceID":98361,"TargetID":98362,"Directional":true}]},{"ID":13467,"SourceStructureID":34494,"TargetStructureID":38605,"Label":"34494-38605 via Conventional from 34502 -> 38608","Type":"Conventional","Directional":true,"Links":[{"SourceID":34502,"TargetID":38608,"Directional":true}]},{"ID":13468,"SourceStructureID":34509,"TargetStructureID":469,"Label":"34509-469 via Conventional from 34510 -> 34511","Type":"Conventional","Directional":true,"Links":[{"SourceID":34510,"TargetID":34511,"Directional":true}]},{"ID":13469,"SourceStructureID":34527,"TargetStructureID":469,"Label":"34527-469 via Conventional from 34528 -> 34529","Type":"Conventional","Directional":true,"Links":[{"SourceID":34528,"TargetID":34529,"Directional":true}]},{"ID":13470,"SourceStructureID":34527,"TargetStructureID":483,"Label":"34527-483 via Conventional from 34534 -> 6768","Type":"Conventional","Directional":true,"Links":[{"SourceID":34534,"TargetID":6768,"Directional":true}]},{"ID":13471,"SourceStructureID":34527,"TargetStructureID":4570,"Label":"34527-4570 via Conventional from 34539 -> 4793","Type":"Conventional","Directional":true,"Links":[{"SourceID":34539,"TargetID":4793,"Directional":true}]},{"ID":13472,"SourceStructureID":34601,"TargetStructureID":180,"Label":"34601-180 via Conventional from 33327 -> 33328, 34613 -> 6567","Type":"Conventional","Directional":true,"Links":[{"SourceID":33327,"TargetID":33328,"Directional":true},{"SourceID":34613,"TargetID":6567,"Directional":true}]},{"ID":13473,"SourceStructureID":34601,"TargetStructureID":483,"Label":"34601-483 via Conventional from 32283 -> 6780, 103722 -> 6805","Type":"Conventional","Directional":true,"Links":[{"SourceID":32283,"TargetID":6780,"Directional":true},{"SourceID":103722,"TargetID":6805,"Directional":true}]},{"ID":13474,"SourceStructureID":34601,"TargetStructureID":518,"Label":"34601-518 via Conventional from 34602 -> 14708","Type":"Conventional","Directional":true,"Links":[{"SourceID":34602,"TargetID":14708,"Directional":true}]},{"ID":13475,"SourceStructureID":34601,"TargetStructureID":519,"Label":"34601-519 via Conventional from 25437 -> 9251","Type":"Conventional","Directional":true,"Links":[{"SourceID":25437,"TargetID":9251,"Directional":true}]},{"ID":13476,"SourceStructureID":34601,"TargetStructureID":6155,"Label":"34601-6155 via Conventional from 34604 -> 34605","Type":"Conventional","Directional":true,"Links":[{"SourceID":34604,"TargetID":34605,"Directional":true}]},{"ID":13477,"SourceStructureID":34601,"TargetStructureID":60229,"Label":"34601-60229 via Conventional from 60336 -> 60234","Type":"Conventional","Directional":true,"Links":[{"SourceID":60336,"TargetID":60234,"Directional":true}]},{"ID":13478,"SourceStructureID":34601,"TargetStructureID":60337,"Label":"34601-60337 via Conventional from 60340 -> 60338","Type":"Conventional","Directional":true,"Links":[{"SourceID":60340,"TargetID":60338,"Directional":true}]},{"ID":13479,"SourceStructureID":34621,"TargetStructureID":419,"Label":"34621-419 via Conventional from 36712 -> 38450","Type":"Conventional","Directional":true,"Links":[{"SourceID":36712,"TargetID":38450,"Directional":true}]},{"ID":13480,"SourceStructureID":34621,"TargetStructureID":485,"Label":"34621-485 via Conventional from 101121 -> 101120","Type":"Conventional","Directional":true,"Links":[{"SourceID":101121,"TargetID":101120,"Directional":true}]},{"ID":13481,"SourceStructureID":34621,"TargetStructureID":518,"Label":"34621-518 via Conventional from 34622 -> 14709","Type":"Conventional","Directional":true,"Links":[{"SourceID":34622,"TargetID":14709,"Directional":true}]},{"ID":13482,"SourceStructureID":34756,"TargetStructureID":579,"Label":"34756-579 via Conventional from 34757 -> 33608","Type":"Conventional","Directional":true,"Links":[{"SourceID":34757,"TargetID":33608,"Directional":true}]},{"ID":13483,"SourceStructureID":34847,"TargetStructureID":3881,"Label":"34847-3881 via Conventional from 34848 -> 34846","Type":"Conventional","Directional":true,"Links":[{"SourceID":34848,"TargetID":34846,"Directional":true}]},{"ID":13484,"SourceStructureID":34847,"TargetStructureID":5528,"Label":"34847-5528 via Conventional from 34851 -> 34853","Type":"Conventional","Directional":true,"Links":[{"SourceID":34851,"TargetID":34853,"Directional":true}]},{"ID":13485,"SourceStructureID":34847,"TargetStructureID":5537,"Label":"34847-5537 via Conventional from 34858 -> 34859","Type":"Conventional","Directional":true,"Links":[{"SourceID":34858,"TargetID":34859,"Directional":true}]},{"ID":13486,"SourceStructureID":34847,"TargetStructureID":6127,"Label":"34847-6127 via Conventional from 34861 -> 34862, 34866 -> 34867","Type":"Conventional","Directional":true,"Links":[{"SourceID":34861,"TargetID":34862,"Directional":true},{"SourceID":34866,"TargetID":34867,"Directional":true}]},{"ID":13487,"SourceStructureID":34868,"TargetStructureID":170,"Label":"34868-170 via Conventional from 89384 -> 89385, 89386 -> 89387, 89997 -> 89998, 90357 -> 90358","Type":"Conventional","Directional":true,"Links":[{"SourceID":89384,"TargetID":89385,"Directional":true},{"SourceID":89386,"TargetID":89387,"Directional":true},{"SourceID":89997,"TargetID":89998,"Directional":true},{"SourceID":90357,"TargetID":90358,"Directional":true}]},{"ID":13488,"SourceStructureID":34868,"TargetStructureID":330,"Label":"34868-330 via Conventional from 38572 -> 38574, 38583 -> 25875","Type":"Conventional","Directional":true,"Links":[{"SourceID":38572,"TargetID":38574,"Directional":true},{"SourceID":38583,"TargetID":25875,"Directional":true}]},{"ID":13489,"SourceStructureID":34868,"TargetStructureID":431,"Label":"34868-431 via Conventional from 38578 -> 38581","Type":"Conventional","Directional":true,"Links":[{"SourceID":38578,"TargetID":38581,"Directional":true}]},{"ID":13490,"SourceStructureID":34868,"TargetStructureID":606,"Label":"34868-606 via Conventional from 38596 -> 38597, 52576 -> 48787","Type":"Conventional","Directional":true,"Links":[{"SourceID":38596,"TargetID":38597,"Directional":true},{"SourceID":52576,"TargetID":48787,"Directional":true}]},{"ID":13491,"SourceStructureID":34868,"TargetStructureID":1637,"Label":"34868-1637 via Conventional from 38564 -> 38563","Type":"Conventional","Directional":true,"Links":[{"SourceID":38564,"TargetID":38563,"Directional":true}]},{"ID":13492,"SourceStructureID":34868,"TargetStructureID":4569,"Label":"34868-4569 via Conventional from 38567 -> 38568","Type":"Conventional","Directional":true,"Links":[{"SourceID":38567,"TargetID":38568,"Directional":true}]},{"ID":13493,"SourceStructureID":34868,"TargetStructureID":5017,"Label":"34868-5017 via Conventional from 34869 -> 5043","Type":"Conventional","Directional":true,"Links":[{"SourceID":34869,"TargetID":5043,"Directional":true}]},{"ID":13494,"SourceStructureID":34868,"TargetStructureID":7024,"Label":"34868-7024 via Conventional from 34878 -> 48586, 38557 -> 38558, 38559 -> 38560, 38562 -> 38561","Type":"Conventional","Directional":true,"Links":[{"SourceID":34878,"TargetID":48586,"Directional":true},{"SourceID":38557,"TargetID":38558,"Directional":true},{"SourceID":38559,"TargetID":38560,"Directional":true},{"SourceID":38562,"TargetID":38561,"Directional":true}]},{"ID":13495,"SourceStructureID":34882,"TargetStructureID":5017,"Label":"34882-5017 via Conventional from 34883 -> 17047","Type":"Conventional","Directional":true,"Links":[{"SourceID":34883,"TargetID":17047,"Directional":true}]},{"ID":13496,"SourceStructureID":34882,"TargetStructureID":6997,"Label":"34882-6997 via Conventional from 34886 -> 70891","Type":"Conventional","Directional":true,"Links":[{"SourceID":34886,"TargetID":70891,"Directional":true}]},{"ID":13497,"SourceStructureID":34893,"TargetStructureID":6123,"Label":"34893-6123 via Conventional from 34894 -> 34895","Type":"Conventional","Directional":true,"Links":[{"SourceID":34894,"TargetID":34895,"Directional":true}]},{"ID":13498,"SourceStructureID":34899,"TargetStructureID":5556,"Label":"34899-5556 via Conventional from 34900 -> 33612","Type":"Conventional","Directional":true,"Links":[{"SourceID":34900,"TargetID":33612,"Directional":true}]},{"ID":13499,"SourceStructureID":34899,"TargetStructureID":5645,"Label":"34899-5645 via Conventional from 34904 -> 47717","Type":"Conventional","Directional":true,"Links":[{"SourceID":34904,"TargetID":47717,"Directional":true}]},{"ID":13500,"SourceStructureID":34899,"TargetStructureID":31157,"Label":"34899-31157 via Conventional from 34901 -> 35179","Type":"Conventional","Directional":true,"Links":[{"SourceID":34901,"TargetID":35179,"Directional":true}]},{"ID":13501,"SourceStructureID":34919,"TargetStructureID":6163,"Label":"34919-6163 via Conventional from 34920 -> 34921","Type":"Conventional","Directional":true,"Links":[{"SourceID":34920,"TargetID":34921,"Directional":true}]},{"ID":13502,"SourceStructureID":34922,"TargetStructureID":6163,"Label":"34922-6163 via Conventional from 34923 -> 34924","Type":"Conventional","Directional":true,"Links":[{"SourceID":34923,"TargetID":34924,"Directional":true}]},{"ID":13503,"SourceStructureID":34940,"TargetStructureID":321,"Label":"34940-321 via Conventional from 34953 -> 38510, 38513 -> 38514","Type":"Conventional","Directional":true,"Links":[{"SourceID":34953,"TargetID":38510,"Directional":true},{"SourceID":38513,"TargetID":38514,"Directional":true}]},{"ID":13504,"SourceStructureID":34940,"TargetStructureID":366,"Label":"34940-366 via Conventional from 38517 -> 13990, 38519 -> 38520, 38521 -> 13846, 38522 -> 13957","Type":"Conventional","Directional":true,"Links":[{"SourceID":38517,"TargetID":13990,"Directional":true},{"SourceID":38519,"TargetID":38520,"Directional":true},{"SourceID":38521,"TargetID":13846,"Directional":true},{"SourceID":38522,"TargetID":13957,"Directional":true}]},{"ID":13505,"SourceStructureID":34940,"TargetStructureID":428,"Label":"34940-428 via Conventional from 52722 -> 52721","Type":"Conventional","Directional":true,"Links":[{"SourceID":52722,"TargetID":52721,"Directional":true}]},{"ID":13506,"SourceStructureID":34978,"TargetStructureID":6163,"Label":"34978-6163 via Conventional from 34979 -> 34980","Type":"Conventional","Directional":true,"Links":[{"SourceID":34979,"TargetID":34980,"Directional":true}]},{"ID":13507,"SourceStructureID":34982,"TargetStructureID":6561,"Label":"34982-6561 via Conventional from 34983 -> 8339","Type":"Conventional","Directional":true,"Links":[{"SourceID":34983,"TargetID":8339,"Directional":true}]},{"ID":13508,"SourceStructureID":35046,"TargetStructureID":410,"Label":"35046-410 via Ribbon Synapse from 61996 -> 21368, 61998 -> 61999, 71223 -> 9533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61996,"TargetID":21368,"Directional":true},{"SourceID":61998,"TargetID":61999,"Directional":true},{"SourceID":71223,"TargetID":9533,"Directional":true}]},{"ID":13509,"SourceStructureID":35046,"TargetStructureID":492,"Label":"35046-492 via Ribbon Synapse from 35047 -> 35045, 71225 -> 71224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35047,"TargetID":35045,"Directional":true},{"SourceID":71225,"TargetID":71224,"Directional":true}]},{"ID":13510,"SourceStructureID":35046,"TargetStructureID":906,"Label":"35046-906 via Ribbon Synapse from 40681 -> 16772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40681,"TargetID":16772,"Directional":true}]},{"ID":13511,"SourceStructureID":35064,"TargetStructureID":8586,"Label":"35064-8586 via Conventional from 64342 -> 8643","Type":"Conventional","Directional":true,"Links":[{"SourceID":64342,"TargetID":8643,"Directional":true}]},{"ID":13512,"SourceStructureID":35068,"TargetStructureID":8749,"Label":"35068-8749 via Conventional from 35069 -> 8798","Type":"Conventional","Directional":true,"Links":[{"SourceID":35069,"TargetID":8798,"Directional":true}]},{"ID":13513,"SourceStructureID":35076,"TargetStructureID":6912,"Label":"35076-6912 via Conventional from 35077 -> 35075","Type":"Conventional","Directional":true,"Links":[{"SourceID":35077,"TargetID":35075,"Directional":true}]},{"ID":13514,"SourceStructureID":35084,"TargetStructureID":10826,"Label":"35084-10826 via Conventional from 35085 -> 35086","Type":"Conventional","Directional":true,"Links":[{"SourceID":35085,"TargetID":35086,"Directional":true}]},{"ID":13515,"SourceStructureID":35087,"TargetStructureID":5345,"Label":"35087-5345 via Conventional from 35090 -> 88886","Type":"Conventional","Directional":true,"Links":[{"SourceID":35090,"TargetID":88886,"Directional":true}]},{"ID":13516,"SourceStructureID":35087,"TargetStructureID":10826,"Label":"35087-10826 via Conventional from 35088 -> 35089","Type":"Conventional","Directional":true,"Links":[{"SourceID":35088,"TargetID":35089,"Directional":true}]},{"ID":13517,"SourceStructureID":35103,"TargetStructureID":332,"Label":"35103-332 via Conventional from 35107 -> 35108","Type":"Conventional","Directional":true,"Links":[{"SourceID":35107,"TargetID":35108,"Directional":true}]},{"ID":13518,"SourceStructureID":35103,"TargetStructureID":15979,"Label":"35103-15979 via Conventional from 35106 -> 35105","Type":"Conventional","Directional":true,"Links":[{"SourceID":35106,"TargetID":35105,"Directional":true}]},{"ID":13519,"SourceStructureID":35110,"TargetStructureID":16446,"Label":"35110-16446 via Conventional from 35111 -> 16449","Type":"Conventional","Directional":true,"Links":[{"SourceID":35111,"TargetID":16449,"Directional":true}]},{"ID":13520,"SourceStructureID":35112,"TargetStructureID":422,"Label":"35112-422 via Conventional from 35115 -> 35116","Type":"Conventional","Directional":true,"Links":[{"SourceID":35115,"TargetID":35116,"Directional":true}]},{"ID":13521,"SourceStructureID":35112,"TargetStructureID":16446,"Label":"35112-16446 via Conventional from 35113 -> 35114","Type":"Conventional","Directional":true,"Links":[{"SourceID":35113,"TargetID":35114,"Directional":true}]},{"ID":13522,"SourceStructureID":35117,"TargetStructureID":16446,"Label":"35117-16446 via Conventional from 35118 -> 35119","Type":"Conventional","Directional":true,"Links":[{"SourceID":35118,"TargetID":35119,"Directional":true}]},{"ID":13523,"SourceStructureID":35126,"TargetStructureID":17183,"Label":"35126-17183 via Conventional from 35127 -> 35128","Type":"Conventional","Directional":true,"Links":[{"SourceID":35127,"TargetID":35128,"Directional":true}]},{"ID":13524,"SourceStructureID":35138,"TargetStructureID":17183,"Label":"35138-17183 via Conventional from 35139 -> 35140","Type":"Conventional","Directional":true,"Links":[{"SourceID":35139,"TargetID":35140,"Directional":true}]},{"ID":13525,"SourceStructureID":35142,"TargetStructureID":17228,"Label":"35142-17228 via Conventional from 35143 -> 17258","Type":"Conventional","Directional":true,"Links":[{"SourceID":35143,"TargetID":17258,"Directional":true}]},{"ID":13526,"SourceStructureID":35145,"TargetStructureID":8575,"Label":"35145-8575 via Ribbon Synapse from 45492 -> 63515, 64697 -> 64696","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45492,"TargetID":63515,"Directional":true},{"SourceID":64697,"TargetID":64696,"Directional":true}]},{"ID":13527,"SourceStructureID":35145,"TargetStructureID":35142,"Label":"35145-35142 via Ribbon Synapse from 35146 -> 35144","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35146,"TargetID":35144,"Directional":true}]},{"ID":13528,"SourceStructureID":35145,"TargetStructureID":64698,"Label":"35145-64698 via Ribbon Synapse from 64701 -> 64702","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64701,"TargetID":64702,"Directional":true}]},{"ID":13529,"SourceStructureID":35149,"TargetStructureID":453,"Label":"35149-453 via Conventional from 35150 -> 35151","Type":"Conventional","Directional":true,"Links":[{"SourceID":35150,"TargetID":35151,"Directional":true}]},{"ID":13530,"SourceStructureID":35152,"TargetStructureID":453,"Label":"35152-453 via Conventional from 35153 -> 35154","Type":"Conventional","Directional":true,"Links":[{"SourceID":35153,"TargetID":35154,"Directional":true}]},{"ID":13531,"SourceStructureID":35152,"TargetStructureID":5528,"Label":"35152-5528 via Conventional from 35161 -> 94421","Type":"Conventional","Directional":true,"Links":[{"SourceID":35161,"TargetID":94421,"Directional":true}]},{"ID":13532,"SourceStructureID":35164,"TargetStructureID":332,"Label":"35164-332 via Conventional from 121980 -> 121981","Type":"Conventional","Directional":true,"Links":[{"SourceID":121980,"TargetID":121981,"Directional":true}]},{"ID":13533,"SourceStructureID":35164,"TargetStructureID":464,"Label":"35164-464 via Conventional from 35165 -> 8066","Type":"Conventional","Directional":true,"Links":[{"SourceID":35165,"TargetID":8066,"Directional":true}]},{"ID":13534,"SourceStructureID":35164,"TargetStructureID":121978,"Label":"35164-121978 via Conventional from 121977 -> 121979","Type":"Conventional","Directional":true,"Links":[{"SourceID":121977,"TargetID":121979,"Directional":true}]},{"ID":13535,"SourceStructureID":35176,"TargetStructureID":5017,"Label":"35176-5017 via Conventional from 35177 -> 35178","Type":"Conventional","Directional":true,"Links":[{"SourceID":35177,"TargetID":35178,"Directional":true}]},{"ID":13536,"SourceStructureID":35180,"TargetStructureID":6135,"Label":"35180-6135 via Conventional from 35181 -> 35182","Type":"Conventional","Directional":true,"Links":[{"SourceID":35181,"TargetID":35182,"Directional":true}]},{"ID":13537,"SourceStructureID":35183,"TargetStructureID":6135,"Label":"35183-6135 via Conventional from 35184 -> 35185","Type":"Conventional","Directional":true,"Links":[{"SourceID":35184,"TargetID":35185,"Directional":true}]},{"ID":13538,"SourceStructureID":35188,"TargetStructureID":6909,"Label":"35188-6909 via Conventional from 35522 -> 38227","Type":"Conventional","Directional":true,"Links":[{"SourceID":35522,"TargetID":38227,"Directional":true}]},{"ID":13539,"SourceStructureID":35188,"TargetStructureID":6911,"Label":"35188-6911 via Conventional from 35189 -> 33653","Type":"Conventional","Directional":true,"Links":[{"SourceID":35189,"TargetID":33653,"Directional":true}]},{"ID":13540,"SourceStructureID":35188,"TargetStructureID":7446,"Label":"35188-7446 via Conventional from 35525 -> 123048","Type":"Conventional","Directional":true,"Links":[{"SourceID":35525,"TargetID":123048,"Directional":true}]},{"ID":13541,"SourceStructureID":35188,"TargetStructureID":25155,"Label":"35188-25155 via Conventional from 35191 -> 38209","Type":"Conventional","Directional":true,"Links":[{"SourceID":35191,"TargetID":38209,"Directional":true}]},{"ID":13542,"SourceStructureID":35193,"TargetStructureID":606,"Label":"35193-606 via Conventional from 54221 -> 49685, 54402 -> 44332","Type":"Conventional","Directional":true,"Links":[{"SourceID":54221,"TargetID":49685,"Directional":true},{"SourceID":54402,"TargetID":44332,"Directional":true}]},{"ID":13543,"SourceStructureID":35193,"TargetStructureID":5607,"Label":"35193-5607 via Conventional from 35201 -> 38947, 35204 -> 24004","Type":"Conventional","Directional":true,"Links":[{"SourceID":35201,"TargetID":38947,"Directional":true},{"SourceID":35204,"TargetID":24004,"Directional":true}]},{"ID":13544,"SourceStructureID":35193,"TargetStructureID":7594,"Label":"35193-7594 via Conventional from 35202 -> 7629","Type":"Conventional","Directional":true,"Links":[{"SourceID":35202,"TargetID":7629,"Directional":true}]},{"ID":13545,"SourceStructureID":35193,"TargetStructureID":25155,"Label":"35193-25155 via Conventional from 38215 -> 38214","Type":"Conventional","Directional":true,"Links":[{"SourceID":38215,"TargetID":38214,"Directional":true}]},{"ID":13546,"SourceStructureID":35193,"TargetStructureID":35188,"Label":"35193-35188 via Conventional from 35523 -> 35524","Type":"Conventional","Directional":true,"Links":[{"SourceID":35523,"TargetID":35524,"Directional":true}]},{"ID":13547,"SourceStructureID":35193,"TargetStructureID":88762,"Label":"35193-88762 via Conventional from 35203 -> 88782","Type":"Conventional","Directional":true,"Links":[{"SourceID":35203,"TargetID":88782,"Directional":true}]},{"ID":13548,"SourceStructureID":35193,"TargetStructureID":118301,"Label":"35193-118301 via Conventional from 35194 -> 118302","Type":"Conventional","Directional":true,"Links":[{"SourceID":35194,"TargetID":118302,"Directional":true}]},{"ID":13549,"SourceStructureID":35208,"TargetStructureID":9376,"Label":"35208-9376 via Conventional from 35209 -> 33659","Type":"Conventional","Directional":true,"Links":[{"SourceID":35209,"TargetID":33659,"Directional":true}]},{"ID":13550,"SourceStructureID":35212,"TargetStructureID":176,"Label":"35212-176 via Conventional from 35215 -> 35214, 35216 -> 58650, 35218 -> 35221","Type":"Conventional","Directional":true,"Links":[{"SourceID":35215,"TargetID":35214,"Directional":true},{"SourceID":35216,"TargetID":58650,"Directional":true},{"SourceID":35218,"TargetID":35221,"Directional":true}]},{"ID":13551,"SourceStructureID":35212,"TargetStructureID":9376,"Label":"35212-9376 via Conventional from 35213 -> 33658","Type":"Conventional","Directional":true,"Links":[{"SourceID":35213,"TargetID":33658,"Directional":true}]},{"ID":13552,"SourceStructureID":35222,"TargetStructureID":166,"Label":"35222-166 via Conventional from 35227 -> 35230","Type":"Conventional","Directional":true,"Links":[{"SourceID":35227,"TargetID":35230,"Directional":true}]},{"ID":13553,"SourceStructureID":35222,"TargetStructureID":390,"Label":"35222-390 via Conventional from 65226 -> 65225","Type":"Conventional","Directional":true,"Links":[{"SourceID":65226,"TargetID":65225,"Directional":true}]},{"ID":13554,"SourceStructureID":35222,"TargetStructureID":10961,"Label":"35222-10961 via Conventional from 35223 -> 35224","Type":"Conventional","Directional":true,"Links":[{"SourceID":35223,"TargetID":35224,"Directional":true}]},{"ID":13555,"SourceStructureID":35232,"TargetStructureID":5565,"Label":"35232-5565 via Conventional from 35236 -> 37686","Type":"Conventional","Directional":true,"Links":[{"SourceID":35236,"TargetID":37686,"Directional":true}]},{"ID":13556,"SourceStructureID":35240,"TargetStructureID":606,"Label":"35240-606 via Conventional from 35242 -> 35243, 42152 -> 10434, 44220 -> 44219, 51725 -> 51726, 53432 -> 51437, 53534 -> 53535","Type":"Conventional","Directional":true,"Links":[{"SourceID":35242,"TargetID":35243,"Directional":true},{"SourceID":42152,"TargetID":10434,"Directional":true},{"SourceID":44220,"TargetID":44219,"Directional":true},{"SourceID":51725,"TargetID":51726,"Directional":true},{"SourceID":53432,"TargetID":51437,"Directional":true},{"SourceID":53534,"TargetID":53535,"Directional":true}]},{"ID":13557,"SourceStructureID":35240,"TargetStructureID":5284,"Label":"35240-5284 via Conventional from 113207 -> 113206","Type":"Conventional","Directional":true,"Links":[{"SourceID":113207,"TargetID":113206,"Directional":true}]},{"ID":13558,"SourceStructureID":35240,"TargetStructureID":5530,"Label":"35240-5530 via Conventional from 38260 -> 38261, 38267 -> 38268, 80178 -> 80179, 81026 -> 81027","Type":"Conventional","Directional":true,"Links":[{"SourceID":38260,"TargetID":38261,"Directional":true},{"SourceID":38267,"TargetID":38268,"Directional":true},{"SourceID":80178,"TargetID":80179,"Directional":true},{"SourceID":81026,"TargetID":81027,"Directional":true}]},{"ID":13559,"SourceStructureID":35240,"TargetStructureID":5534,"Label":"35240-5534 via Conventional from 38272 -> 38273, 38276 -> 38278","Type":"Conventional","Directional":true,"Links":[{"SourceID":38272,"TargetID":38273,"Directional":true},{"SourceID":38276,"TargetID":38278,"Directional":true}]},{"ID":13560,"SourceStructureID":35240,"TargetStructureID":5650,"Label":"35240-5650 via Conventional from 35252 -> 29906, 35256 -> 35257, 35261 -> 35262, 35267 -> 38283, 53433 -> 53434, 104445 -> 104446, 104449 -> 104450","Type":"Conventional","Directional":true,"Links":[{"SourceID":35252,"TargetID":29906,"Directional":true},{"SourceID":35256,"TargetID":35257,"Directional":true},{"SourceID":35261,"TargetID":35262,"Directional":true},{"SourceID":35267,"TargetID":38283,"Directional":true},{"SourceID":53433,"TargetID":53434,"Directional":true},{"SourceID":104445,"TargetID":104446,"Directional":true},{"SourceID":104449,"TargetID":104450,"Directional":true}]},{"ID":13561,"SourceStructureID":35240,"TargetStructureID":5729,"Label":"35240-5729 via Conventional from 35271 -> 105772, 35274 -> 37838, 35279 -> 35282, 35279 -> 38290","Type":"Conventional","Directional":true,"Links":[{"SourceID":35271,"TargetID":105772,"Directional":true},{"SourceID":35274,"TargetID":37838,"Directional":true},{"SourceID":35279,"TargetID":35282,"Directional":true},{"SourceID":35279,"TargetID":38290,"Directional":true}]},{"ID":13562,"SourceStructureID":35240,"TargetStructureID":6117,"Label":"35240-6117 via Conventional from 35246 -> 20584, 42153 -> 86092, 85440 -> 85433","Type":"Conventional","Directional":true,"Links":[{"SourceID":35246,"TargetID":20584,"Directional":true},{"SourceID":42153,"TargetID":86092,"Directional":true},{"SourceID":85440,"TargetID":85433,"Directional":true}]},{"ID":13563,"SourceStructureID":35240,"TargetStructureID":6118,"Label":"35240-6118 via Conventional from 35272 -> 38288","Type":"Conventional","Directional":true,"Links":[{"SourceID":35272,"TargetID":38288,"Directional":true}]},{"ID":13564,"SourceStructureID":35240,"TargetStructureID":6127,"Label":"35240-6127 via Conventional from 38280 -> 38281","Type":"Conventional","Directional":true,"Links":[{"SourceID":38280,"TargetID":38281,"Directional":true}]},{"ID":13565,"SourceStructureID":35240,"TargetStructureID":6158,"Label":"35240-6158 via Conventional from 35277 -> 38289","Type":"Conventional","Directional":true,"Links":[{"SourceID":35277,"TargetID":38289,"Directional":true}]},{"ID":13566,"SourceStructureID":35240,"TargetStructureID":7594,"Label":"35240-7594 via Conventional from 35248 -> 7596, 35255 -> 25092, 38258 -> 38259, 38262 -> 38263, 38265 -> 38266","Type":"Conventional","Directional":true,"Links":[{"SourceID":35248,"TargetID":7596,"Directional":true},{"SourceID":35255,"TargetID":25092,"Directional":true},{"SourceID":38258,"TargetID":38259,"Directional":true},{"SourceID":38262,"TargetID":38263,"Directional":true},{"SourceID":38265,"TargetID":38266,"Directional":true}]},{"ID":13567,"SourceStructureID":35240,"TargetStructureID":10953,"Label":"35240-10953 via Conventional from 35241 -> 33265","Type":"Conventional","Directional":true,"Links":[{"SourceID":35241,"TargetID":33265,"Directional":true}]},{"ID":13568,"SourceStructureID":35240,"TargetStructureID":35539,"Label":"35240-35539 via Conventional from 38264 -> 35542","Type":"Conventional","Directional":true,"Links":[{"SourceID":38264,"TargetID":35542,"Directional":true}]},{"ID":13569,"SourceStructureID":35240,"TargetStructureID":35894,"Label":"35240-35894 via Conventional from 35936 -> 35935","Type":"Conventional","Directional":true,"Links":[{"SourceID":35936,"TargetID":35935,"Directional":true}]},{"ID":13570,"SourceStructureID":35240,"TargetStructureID":44222,"Label":"35240-44222 via Conventional from 45017 -> 45018","Type":"Conventional","Directional":true,"Links":[{"SourceID":45017,"TargetID":45018,"Directional":true}]},{"ID":13571,"SourceStructureID":35240,"TargetStructureID":58714,"Label":"35240-58714 via Conventional from 35244 -> 58718","Type":"Conventional","Directional":true,"Links":[{"SourceID":35244,"TargetID":58718,"Directional":true}]},{"ID":13572,"SourceStructureID":35240,"TargetStructureID":86444,"Label":"35240-86444 via Conventional from 86459 -> 86458","Type":"Conventional","Directional":true,"Links":[{"SourceID":86459,"TargetID":86458,"Directional":true}]},{"ID":13573,"SourceStructureID":35240,"TargetStructureID":110842,"Label":"35240-110842 via Conventional from 35273 -> 110845","Type":"Conventional","Directional":true,"Links":[{"SourceID":35273,"TargetID":110845,"Directional":true}]},{"ID":13574,"SourceStructureID":35240,"TargetStructureID":111604,"Label":"35240-111604 via Conventional from 35270 -> 111609","Type":"Conventional","Directional":true,"Links":[{"SourceID":35270,"TargetID":111609,"Directional":true}]},{"ID":13575,"SourceStructureID":35283,"TargetStructureID":4569,"Label":"35283-4569 via Conventional from 35286 -> 30854","Type":"Conventional","Directional":true,"Links":[{"SourceID":35286,"TargetID":30854,"Directional":true}]},{"ID":13576,"SourceStructureID":35283,"TargetStructureID":10957,"Label":"35283-10957 via Conventional from 35284 -> 35285","Type":"Conventional","Directional":true,"Links":[{"SourceID":35284,"TargetID":35285,"Directional":true}]},{"ID":13577,"SourceStructureID":35288,"TargetStructureID":606,"Label":"35288-606 via Conventional from 53727 -> 53726","Type":"Conventional","Directional":true,"Links":[{"SourceID":53727,"TargetID":53726,"Directional":true}]},{"ID":13578,"SourceStructureID":35288,"TargetStructureID":5530,"Label":"35288-5530 via Conventional from 35302 -> 76484","Type":"Conventional","Directional":true,"Links":[{"SourceID":35302,"TargetID":76484,"Directional":true}]},{"ID":13579,"SourceStructureID":35288,"TargetStructureID":10142,"Label":"35288-10142 via Conventional from 35291 -> 35292","Type":"Conventional","Directional":true,"Links":[{"SourceID":35291,"TargetID":35292,"Directional":true}]},{"ID":13580,"SourceStructureID":35288,"TargetStructureID":10962,"Label":"35288-10962 via Conventional from 35289 -> 33687","Type":"Conventional","Directional":true,"Links":[{"SourceID":35289,"TargetID":33687,"Directional":true}]},{"ID":13581,"SourceStructureID":35288,"TargetStructureID":38345,"Label":"35288-38345 via Conventional from 35296 -> 38348","Type":"Conventional","Directional":true,"Links":[{"SourceID":35296,"TargetID":38348,"Directional":true}]},{"ID":13582,"SourceStructureID":35305,"TargetStructureID":10969,"Label":"35305-10969 via Conventional from 35306 -> 33585","Type":"Conventional","Directional":true,"Links":[{"SourceID":35306,"TargetID":33585,"Directional":true}]},{"ID":13583,"SourceStructureID":35308,"TargetStructureID":10969,"Label":"35308-10969 via Conventional from 35309 -> 35307, 35310 -> 33586","Type":"Conventional","Directional":true,"Links":[{"SourceID":35309,"TargetID":35307,"Directional":true},{"SourceID":35310,"TargetID":33586,"Directional":true}]},{"ID":13584,"SourceStructureID":35308,"TargetStructureID":25155,"Label":"35308-25155 via Conventional from 35313 -> 35316","Type":"Conventional","Directional":true,"Links":[{"SourceID":35313,"TargetID":35316,"Directional":true}]},{"ID":13585,"SourceStructureID":35317,"TargetStructureID":11021,"Label":"35317-11021 via Conventional from 35319 -> 35318","Type":"Conventional","Directional":true,"Links":[{"SourceID":35319,"TargetID":35318,"Directional":true}]},{"ID":13586,"SourceStructureID":35325,"TargetStructureID":5541,"Label":"35325-5541 via Conventional from 38252 -> 38253","Type":"Conventional","Directional":true,"Links":[{"SourceID":38252,"TargetID":38253,"Directional":true}]},{"ID":13587,"SourceStructureID":35325,"TargetStructureID":11022,"Label":"35325-11022 via Conventional from 35326 -> 35324","Type":"Conventional","Directional":true,"Links":[{"SourceID":35326,"TargetID":35324,"Directional":true}]},{"ID":13588,"SourceStructureID":35325,"TargetStructureID":35331,"Label":"35325-35331 via Conventional from 38247 -> 35334","Type":"Conventional","Directional":true,"Links":[{"SourceID":38247,"TargetID":35334,"Directional":true}]},{"ID":13589,"SourceStructureID":35325,"TargetStructureID":38245,"Label":"35325-38245 via Conventional from 35327 -> 38246","Type":"Conventional","Directional":true,"Links":[{"SourceID":35327,"TargetID":38246,"Directional":true}]},{"ID":13590,"SourceStructureID":35328,"TargetStructureID":11022,"Label":"35328-11022 via Conventional from 35329 -> 35330","Type":"Conventional","Directional":true,"Links":[{"SourceID":35329,"TargetID":35330,"Directional":true}]},{"ID":13591,"SourceStructureID":35331,"TargetStructureID":11022,"Label":"35331-11022 via Conventional from 35332 -> 33587","Type":"Conventional","Directional":true,"Links":[{"SourceID":35332,"TargetID":33587,"Directional":true}]},{"ID":13592,"SourceStructureID":35335,"TargetStructureID":11037,"Label":"35335-11037 via Conventional from 35336 -> 12552","Type":"Conventional","Directional":true,"Links":[{"SourceID":35336,"TargetID":12552,"Directional":true}]},{"ID":13593,"SourceStructureID":35343,"TargetStructureID":11038,"Label":"35343-11038 via Conventional from 35344 -> 33708","Type":"Conventional","Directional":true,"Links":[{"SourceID":35344,"TargetID":33708,"Directional":true}]},{"ID":13594,"SourceStructureID":35348,"TargetStructureID":11043,"Label":"35348-11043 via Conventional from 35349 -> 35350","Type":"Conventional","Directional":true,"Links":[{"SourceID":35349,"TargetID":35350,"Directional":true}]},{"ID":13595,"SourceStructureID":35351,"TargetStructureID":11043,"Label":"35351-11043 via Conventional from 35352 -> 35353","Type":"Conventional","Directional":true,"Links":[{"SourceID":35352,"TargetID":35353,"Directional":true}]},{"ID":13596,"SourceStructureID":35356,"TargetStructureID":5649,"Label":"35356-5649 via Conventional from 35362 -> 107310","Type":"Conventional","Directional":true,"Links":[{"SourceID":35362,"TargetID":107310,"Directional":true}]},{"ID":13597,"SourceStructureID":35356,"TargetStructureID":11043,"Label":"35356-11043 via Conventional from 35357 -> 35358","Type":"Conventional","Directional":true,"Links":[{"SourceID":35357,"TargetID":35358,"Directional":true}]},{"ID":13598,"SourceStructureID":35356,"TargetStructureID":30130,"Label":"35356-30130 via Conventional from 35360 -> 30250","Type":"Conventional","Directional":true,"Links":[{"SourceID":35360,"TargetID":30250,"Directional":true}]},{"ID":13599,"SourceStructureID":35367,"TargetStructureID":5284,"Label":"35367-5284 via Conventional from 35377 -> 35380","Type":"Conventional","Directional":true,"Links":[{"SourceID":35377,"TargetID":35380,"Directional":true}]},{"ID":13600,"SourceStructureID":35367,"TargetStructureID":6120,"Label":"35367-6120 via Conventional from 35372 -> 110843, 110753 -> 110749","Type":"Conventional","Directional":true,"Links":[{"SourceID":35372,"TargetID":110843,"Directional":true},{"SourceID":110753,"TargetID":110749,"Directional":true}]},{"ID":13601,"SourceStructureID":35367,"TargetStructureID":11044,"Label":"35367-11044 via Conventional from 35368 -> 35370","Type":"Conventional","Directional":true,"Links":[{"SourceID":35368,"TargetID":35370,"Directional":true}]},{"ID":13602,"SourceStructureID":35381,"TargetStructureID":11049,"Label":"35381-11049 via Conventional from 35382 -> 35383","Type":"Conventional","Directional":true,"Links":[{"SourceID":35382,"TargetID":35383,"Directional":true}]},{"ID":13603,"SourceStructureID":35384,"TargetStructureID":5645,"Label":"35384-5645 via Conventional from 35389 -> 39482","Type":"Conventional","Directional":true,"Links":[{"SourceID":35389,"TargetID":39482,"Directional":true}]},{"ID":13604,"SourceStructureID":35384,"TargetStructureID":11049,"Label":"35384-11049 via Conventional from 35385 -> 35386","Type":"Conventional","Directional":true,"Links":[{"SourceID":35385,"TargetID":35386,"Directional":true}]},{"ID":13605,"SourceStructureID":35384,"TargetStructureID":35392,"Label":"35384-35392 via Conventional from 35390 -> 35394","Type":"Conventional","Directional":true,"Links":[{"SourceID":35390,"TargetID":35394,"Directional":true}]},{"ID":13606,"SourceStructureID":35392,"TargetStructureID":35384,"Label":"35392-35384 via Ribbon Synapse from 35393 -> 35391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35393,"TargetID":35391,"Directional":true}]},{"ID":13607,"SourceStructureID":35395,"TargetStructureID":11063,"Label":"35395-11063 via Conventional from 35396 -> 33577","Type":"Conventional","Directional":true,"Links":[{"SourceID":35396,"TargetID":33577,"Directional":true}]},{"ID":13608,"SourceStructureID":35400,"TargetStructureID":11063,"Label":"35400-11063 via Conventional from 35401 -> 35402","Type":"Conventional","Directional":true,"Links":[{"SourceID":35401,"TargetID":35402,"Directional":true}]},{"ID":13609,"SourceStructureID":35403,"TargetStructureID":11063,"Label":"35403-11063 via Conventional from 35404 -> 33581","Type":"Conventional","Directional":true,"Links":[{"SourceID":35404,"TargetID":33581,"Directional":true}]},{"ID":13610,"SourceStructureID":35406,"TargetStructureID":11063,"Label":"35406-11063 via Conventional from 35407 -> 35408","Type":"Conventional","Directional":true,"Links":[{"SourceID":35407,"TargetID":35408,"Directional":true}]},{"ID":13611,"SourceStructureID":35406,"TargetStructureID":15977,"Label":"35406-15977 via Conventional from 35409 -> 38299","Type":"Conventional","Directional":true,"Links":[{"SourceID":35409,"TargetID":38299,"Directional":true}]},{"ID":13612,"SourceStructureID":35418,"TargetStructureID":11234,"Label":"35418-11234 via Conventional from 35419 -> 33316","Type":"Conventional","Directional":true,"Links":[{"SourceID":35419,"TargetID":33316,"Directional":true}]},{"ID":13613,"SourceStructureID":35418,"TargetStructureID":64939,"Label":"35418-64939 via Conventional from 129135 -> 129136, 129137 -> 129138","Type":"Conventional","Directional":true,"Links":[{"SourceID":129135,"TargetID":129136,"Directional":true},{"SourceID":129137,"TargetID":129138,"Directional":true}]},{"ID":13614,"SourceStructureID":35428,"TargetStructureID":5729,"Label":"35428-5729 via Conventional from 35433 -> 111945","Type":"Conventional","Directional":true,"Links":[{"SourceID":35433,"TargetID":111945,"Directional":true}]},{"ID":13615,"SourceStructureID":35428,"TargetStructureID":11235,"Label":"35428-11235 via Conventional from 35429 -> 35427","Type":"Conventional","Directional":true,"Links":[{"SourceID":35429,"TargetID":35427,"Directional":true}]},{"ID":13616,"SourceStructureID":35436,"TargetStructureID":11235,"Label":"35436-11235 via Conventional from 35437 -> 35435","Type":"Conventional","Directional":true,"Links":[{"SourceID":35437,"TargetID":35435,"Directional":true}]},{"ID":13617,"SourceStructureID":35440,"TargetStructureID":5503,"Label":"35440-5503 via Conventional from 108521 -> 108518","Type":"Conventional","Directional":true,"Links":[{"SourceID":108521,"TargetID":108518,"Directional":true}]},{"ID":13618,"SourceStructureID":35440,"TargetStructureID":5729,"Label":"35440-5729 via Conventional from 111624 -> 111625","Type":"Conventional","Directional":true,"Links":[{"SourceID":111624,"TargetID":111625,"Directional":true}]},{"ID":13619,"SourceStructureID":35440,"TargetStructureID":6118,"Label":"35440-6118 via Conventional from 35446 -> 129142, 35449 -> 65926","Type":"Conventional","Directional":true,"Links":[{"SourceID":35446,"TargetID":129142,"Directional":true},{"SourceID":35449,"TargetID":65926,"Directional":true}]},{"ID":13620,"SourceStructureID":35440,"TargetStructureID":11235,"Label":"35440-11235 via Conventional from 35441 -> 35439","Type":"Conventional","Directional":true,"Links":[{"SourceID":35441,"TargetID":35439,"Directional":true}]},{"ID":13621,"SourceStructureID":35452,"TargetStructureID":8040,"Label":"35452-8040 via Conventional from 35459 -> 35462","Type":"Conventional","Directional":true,"Links":[{"SourceID":35459,"TargetID":35462,"Directional":true}]},{"ID":13622,"SourceStructureID":35452,"TargetStructureID":10632,"Label":"35452-10632 via Conventional from 35455 -> 35456","Type":"Conventional","Directional":true,"Links":[{"SourceID":35455,"TargetID":35456,"Directional":true}]},{"ID":13623,"SourceStructureID":35452,"TargetStructureID":11246,"Label":"35452-11246 via Conventional from 35453 -> 35454","Type":"Conventional","Directional":true,"Links":[{"SourceID":35453,"TargetID":35454,"Directional":true}]},{"ID":13624,"SourceStructureID":35468,"TargetStructureID":11248,"Label":"35468-11248 via Conventional from 35469 -> 33767","Type":"Conventional","Directional":true,"Links":[{"SourceID":35469,"TargetID":33767,"Directional":true}]},{"ID":13625,"SourceStructureID":35470,"TargetStructureID":11248,"Label":"35470-11248 via Conventional from 35471 -> 33768","Type":"Conventional","Directional":true,"Links":[{"SourceID":35471,"TargetID":33768,"Directional":true}]},{"ID":13626,"SourceStructureID":35473,"TargetStructureID":11248,"Label":"35473-11248 via Conventional from 35474 -> 35472","Type":"Conventional","Directional":true,"Links":[{"SourceID":35474,"TargetID":35472,"Directional":true}]},{"ID":13627,"SourceStructureID":35475,"TargetStructureID":11248,"Label":"35475-11248 via Conventional from 35476 -> 35477","Type":"Conventional","Directional":true,"Links":[{"SourceID":35476,"TargetID":35477,"Directional":true}]},{"ID":13628,"SourceStructureID":35483,"TargetStructureID":334,"Label":"35483-334 via Conventional from 35484 -> 35482","Type":"Conventional","Directional":true,"Links":[{"SourceID":35484,"TargetID":35482,"Directional":true}]},{"ID":13629,"SourceStructureID":35489,"TargetStructureID":366,"Label":"35489-366 via Conventional from 35492 -> 13670","Type":"Conventional","Directional":true,"Links":[{"SourceID":35492,"TargetID":13670,"Directional":true}]},{"ID":13630,"SourceStructureID":35489,"TargetStructureID":422,"Label":"35489-422 via Conventional from 35490 -> 35491","Type":"Conventional","Directional":true,"Links":[{"SourceID":35490,"TargetID":35491,"Directional":true}]},{"ID":13631,"SourceStructureID":35510,"TargetStructureID":445,"Label":"35510-445 via Conventional from 35511 -> 1979","Type":"Conventional","Directional":true,"Links":[{"SourceID":35511,"TargetID":1979,"Directional":true}]},{"ID":13632,"SourceStructureID":35513,"TargetStructureID":445,"Label":"35513-445 via Conventional from 35514 -> 35512","Type":"Conventional","Directional":true,"Links":[{"SourceID":35514,"TargetID":35512,"Directional":true}]},{"ID":13633,"SourceStructureID":35534,"TargetStructureID":10590,"Label":"35534-10590 via Conventional from 35535 -> 35536","Type":"Conventional","Directional":true,"Links":[{"SourceID":35535,"TargetID":35536,"Directional":true}]},{"ID":13634,"SourceStructureID":35534,"TargetStructureID":10961,"Label":"35534-10961 via Conventional from 35537 -> 35538","Type":"Conventional","Directional":true,"Links":[{"SourceID":35537,"TargetID":35538,"Directional":true}]},{"ID":13635,"SourceStructureID":35539,"TargetStructureID":5530,"Label":"35539-5530 via Conventional from 77912 -> 42447","Type":"Conventional","Directional":true,"Links":[{"SourceID":77912,"TargetID":42447,"Directional":true}]},{"ID":13636,"SourceStructureID":35539,"TargetStructureID":10590,"Label":"35539-10590 via Conventional from 35540 -> 35541","Type":"Conventional","Directional":true,"Links":[{"SourceID":35540,"TargetID":35541,"Directional":true}]},{"ID":13637,"SourceStructureID":35545,"TargetStructureID":10602,"Label":"35545-10602 via Conventional from 35546 -> 35544","Type":"Conventional","Directional":true,"Links":[{"SourceID":35546,"TargetID":35544,"Directional":true}]},{"ID":13638,"SourceStructureID":35550,"TargetStructureID":35545,"Label":"35550-35545 via Ribbon Synapse from 35551 -> 35549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35551,"TargetID":35549,"Directional":true}]},{"ID":13639,"SourceStructureID":35555,"TargetStructureID":5565,"Label":"35555-5565 via Conventional from 35559 -> 50848","Type":"Conventional","Directional":true,"Links":[{"SourceID":35559,"TargetID":50848,"Directional":true}]},{"ID":13640,"SourceStructureID":35555,"TargetStructureID":5568,"Label":"35555-5568 via Conventional from 35558 -> 50361","Type":"Conventional","Directional":true,"Links":[{"SourceID":35558,"TargetID":50361,"Directional":true}]},{"ID":13641,"SourceStructureID":35555,"TargetStructureID":5729,"Label":"35555-5729 via Conventional from 35565 -> 64505","Type":"Conventional","Directional":true,"Links":[{"SourceID":35565,"TargetID":64505,"Directional":true}]},{"ID":13642,"SourceStructureID":35555,"TargetStructureID":8040,"Label":"35555-8040 via Conventional from 35564 -> 48630","Type":"Conventional","Directional":true,"Links":[{"SourceID":35564,"TargetID":48630,"Directional":true}]},{"ID":13643,"SourceStructureID":35555,"TargetStructureID":10826,"Label":"35555-10826 via Conventional from 35556 -> 35554","Type":"Conventional","Directional":true,"Links":[{"SourceID":35556,"TargetID":35554,"Directional":true}]},{"ID":13644,"SourceStructureID":35576,"TargetStructureID":161,"Label":"35576-161 via Conventional from 35582 -> 35588","Type":"Conventional","Directional":true,"Links":[{"SourceID":35582,"TargetID":35588,"Directional":true}]},{"ID":13645,"SourceStructureID":35576,"TargetStructureID":5303,"Label":"35576-5303 via Conventional from 35577 -> 35575","Type":"Conventional","Directional":true,"Links":[{"SourceID":35577,"TargetID":35575,"Directional":true}]},{"ID":13646,"SourceStructureID":35576,"TargetStructureID":5502,"Label":"35576-5502 via Conventional from 35589 -> 27270","Type":"Conventional","Directional":true,"Links":[{"SourceID":35589,"TargetID":27270,"Directional":true}]},{"ID":13647,"SourceStructureID":35576,"TargetStructureID":6121,"Label":"35576-6121 via Conventional from 35579 -> 53466","Type":"Conventional","Directional":true,"Links":[{"SourceID":35579,"TargetID":53466,"Directional":true}]},{"ID":13648,"SourceStructureID":35597,"TargetStructureID":5303,"Label":"35597-5303 via Conventional from 35599 -> 35600","Type":"Conventional","Directional":true,"Links":[{"SourceID":35599,"TargetID":35600,"Directional":true}]},{"ID":13649,"SourceStructureID":35597,"TargetStructureID":6118,"Label":"35597-6118 via Conventional from 121989 -> 121990","Type":"Conventional","Directional":true,"Links":[{"SourceID":121989,"TargetID":121990,"Directional":true}]},{"ID":13650,"SourceStructureID":35597,"TargetStructureID":11049,"Label":"35597-11049 via Conventional from 35598 -> 35596","Type":"Conventional","Directional":true,"Links":[{"SourceID":35598,"TargetID":35596,"Directional":true}]},{"ID":13651,"SourceStructureID":35653,"TargetStructureID":168,"Label":"35653-168 via Conventional from 35674 -> 4282","Type":"Conventional","Directional":true,"Links":[{"SourceID":35674,"TargetID":4282,"Directional":true}]},{"ID":13652,"SourceStructureID":35653,"TargetStructureID":170,"Label":"35653-170 via Conventional from 35680 -> 89663, 89455 -> 89456","Type":"Conventional","Directional":true,"Links":[{"SourceID":35680,"TargetID":89663,"Directional":true},{"SourceID":89455,"TargetID":89456,"Directional":true}]},{"ID":13653,"SourceStructureID":35653,"TargetStructureID":606,"Label":"35653-606 via Conventional from 35677 -> 35678, 47825 -> 47824","Type":"Conventional","Directional":true,"Links":[{"SourceID":35677,"TargetID":35678,"Directional":true},{"SourceID":47825,"TargetID":47824,"Directional":true}]},{"ID":13654,"SourceStructureID":35653,"TargetStructureID":5528,"Label":"35653-5528 via Conventional from 35656 -> 94413, 35657 -> 35658","Type":"Conventional","Directional":true,"Links":[{"SourceID":35656,"TargetID":94413,"Directional":true},{"SourceID":35657,"TargetID":35658,"Directional":true}]},{"ID":13655,"SourceStructureID":35653,"TargetStructureID":5530,"Label":"35653-5530 via Conventional from 35676 -> 75529","Type":"Conventional","Directional":true,"Links":[{"SourceID":35676,"TargetID":75529,"Directional":true}]},{"ID":13656,"SourceStructureID":35653,"TargetStructureID":6127,"Label":"35653-6127 via Conventional from 35666 -> 35668","Type":"Conventional","Directional":true,"Links":[{"SourceID":35666,"TargetID":35668,"Directional":true}]},{"ID":13657,"SourceStructureID":35653,"TargetStructureID":10956,"Label":"35653-10956 via Conventional from 35654 -> 35655","Type":"Conventional","Directional":true,"Links":[{"SourceID":35654,"TargetID":35655,"Directional":true}]},{"ID":13658,"SourceStructureID":35681,"TargetStructureID":5303,"Label":"35681-5303 via Conventional from 35682 -> 35612","Type":"Conventional","Directional":true,"Links":[{"SourceID":35682,"TargetID":35612,"Directional":true}]},{"ID":13659,"SourceStructureID":35681,"TargetStructureID":6048,"Label":"35681-6048 via Conventional from 35684 -> 35685","Type":"Conventional","Directional":true,"Links":[{"SourceID":35684,"TargetID":35685,"Directional":true}]},{"ID":13660,"SourceStructureID":35681,"TargetStructureID":6132,"Label":"35681-6132 via Conventional from 35724 -> 35725","Type":"Conventional","Directional":true,"Links":[{"SourceID":35724,"TargetID":35725,"Directional":true}]},{"ID":13661,"SourceStructureID":35696,"TargetStructureID":9787,"Label":"35696-9787 via Ribbon Synapse from 35702 -> 35703","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35702,"TargetID":35703,"Directional":true}]},{"ID":13662,"SourceStructureID":35696,"TargetStructureID":16073,"Label":"35696-16073 via Ribbon Synapse from 35697 -> 24189, 35700 -> 24188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35697,"TargetID":24189,"Directional":true},{"SourceID":35700,"TargetID":24188,"Directional":true}]},{"ID":13663,"SourceStructureID":35696,"TargetStructureID":35681,"Label":"35696-35681 via Ribbon Synapse from 35711 -> 35695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35711,"TargetID":35695,"Directional":true}]},{"ID":13664,"SourceStructureID":35696,"TargetStructureID":136432,"Label":"35696-136432 via Ribbon Synapse from 40123 -> 136490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40123,"TargetID":136490,"Directional":true}]},{"ID":13665,"SourceStructureID":35751,"TargetStructureID":408,"Label":"35751-408 via Conventional from 35752 -> 22511","Type":"Conventional","Directional":true,"Links":[{"SourceID":35752,"TargetID":22511,"Directional":true}]},{"ID":13666,"SourceStructureID":35811,"TargetStructureID":142,"Label":"35811-142 via Conventional from 35835 -> 126164, 35836 -> 31769, 35837 -> 31776, 35840 -> 49707","Type":"Conventional","Directional":true,"Links":[{"SourceID":35835,"TargetID":126164,"Directional":true},{"SourceID":35836,"TargetID":31769,"Directional":true},{"SourceID":35837,"TargetID":31776,"Directional":true},{"SourceID":35840,"TargetID":49707,"Directional":true}]},{"ID":13667,"SourceStructureID":35811,"TargetStructureID":176,"Label":"35811-176 via Conventional from 35842 -> 35843, 35848 -> 35849","Type":"Conventional","Directional":true,"Links":[{"SourceID":35842,"TargetID":35843,"Directional":true},{"SourceID":35848,"TargetID":35849,"Directional":true}]},{"ID":13668,"SourceStructureID":35811,"TargetStructureID":372,"Label":"35811-372 via Conventional from 35812 -> 30781","Type":"Conventional","Directional":true,"Links":[{"SourceID":35812,"TargetID":30781,"Directional":true}]},{"ID":13669,"SourceStructureID":35811,"TargetStructureID":408,"Label":"35811-408 via Conventional from 35882 -> 35883, 35884 -> 35771","Type":"Conventional","Directional":true,"Links":[{"SourceID":35882,"TargetID":35883,"Directional":true},{"SourceID":35884,"TargetID":35771,"Directional":true}]},{"ID":13670,"SourceStructureID":35811,"TargetStructureID":1724,"Label":"35811-1724 via Conventional from 35823 -> 20187","Type":"Conventional","Directional":true,"Links":[{"SourceID":35823,"TargetID":20187,"Directional":true}]},{"ID":13671,"SourceStructureID":35811,"TargetStructureID":3756,"Label":"35811-3756 via Conventional from 35852 -> 35854","Type":"Conventional","Directional":true,"Links":[{"SourceID":35852,"TargetID":35854,"Directional":true}]},{"ID":13672,"SourceStructureID":35811,"TargetStructureID":4569,"Label":"35811-4569 via Conventional from 35815 -> 52458, 35818 -> 23797, 35820 -> 23783","Type":"Conventional","Directional":true,"Links":[{"SourceID":35815,"TargetID":52458,"Directional":true},{"SourceID":35818,"TargetID":23797,"Directional":true},{"SourceID":35820,"TargetID":23783,"Directional":true}]},{"ID":13673,"SourceStructureID":35811,"TargetStructureID":5442,"Label":"35811-5442 via Conventional from 55122 -> 55121, 55143 -> 55142","Type":"Conventional","Directional":true,"Links":[{"SourceID":55122,"TargetID":55121,"Directional":true},{"SourceID":55143,"TargetID":55142,"Directional":true}]},{"ID":13674,"SourceStructureID":35811,"TargetStructureID":5598,"Label":"35811-5598 via Conventional from 35861 -> 35862, 35864 -> 35865, 35871 -> 35872","Type":"Conventional","Directional":true,"Links":[{"SourceID":35861,"TargetID":35862,"Directional":true},{"SourceID":35864,"TargetID":35865,"Directional":true},{"SourceID":35871,"TargetID":35872,"Directional":true}]},{"ID":13675,"SourceStructureID":35811,"TargetStructureID":5601,"Label":"35811-5601 via Conventional from 35858 -> 35859","Type":"Conventional","Directional":true,"Links":[{"SourceID":35858,"TargetID":35859,"Directional":true}]},{"ID":13676,"SourceStructureID":35811,"TargetStructureID":6050,"Label":"35811-6050 via Conventional from 86605 -> 86606","Type":"Conventional","Directional":true,"Links":[{"SourceID":86605,"TargetID":86606,"Directional":true}]},{"ID":13677,"SourceStructureID":35811,"TargetStructureID":6117,"Label":"35811-6117 via Conventional from 86603 -> 86604","Type":"Conventional","Directional":true,"Links":[{"SourceID":86603,"TargetID":86604,"Directional":true}]},{"ID":13678,"SourceStructureID":35811,"TargetStructureID":6155,"Label":"35811-6155 via Conventional from 35813 -> 34787","Type":"Conventional","Directional":true,"Links":[{"SourceID":35813,"TargetID":34787,"Directional":true}]},{"ID":13679,"SourceStructureID":35811,"TargetStructureID":21299,"Label":"35811-21299 via Conventional from 35825 -> 35834","Type":"Conventional","Directional":true,"Links":[{"SourceID":35825,"TargetID":35834,"Directional":true}]},{"ID":13680,"SourceStructureID":35811,"TargetStructureID":58777,"Label":"35811-58777 via Conventional from 58783 -> 58781","Type":"Conventional","Directional":true,"Links":[{"SourceID":58783,"TargetID":58781,"Directional":true}]},{"ID":13681,"SourceStructureID":35887,"TargetStructureID":372,"Label":"35887-372 via Conventional from 35892 -> 30963, 35893 -> 30992","Type":"Conventional","Directional":true,"Links":[{"SourceID":35892,"TargetID":30963,"Directional":true},{"SourceID":35893,"TargetID":30992,"Directional":true}]},{"ID":13682,"SourceStructureID":35887,"TargetStructureID":408,"Label":"35887-408 via Conventional from 35888 -> 35798","Type":"Conventional","Directional":true,"Links":[{"SourceID":35888,"TargetID":35798,"Directional":true}]},{"ID":13683,"SourceStructureID":35894,"TargetStructureID":142,"Label":"35894-142 via Conventional from 35928 -> 35930","Type":"Conventional","Directional":true,"Links":[{"SourceID":35928,"TargetID":35930,"Directional":true}]},{"ID":13684,"SourceStructureID":35894,"TargetStructureID":176,"Label":"35894-176 via Conventional from 35938 -> 35939, 128229 -> 119680","Type":"Conventional","Directional":true,"Links":[{"SourceID":35938,"TargetID":35939,"Directional":true},{"SourceID":128229,"TargetID":119680,"Directional":true}]},{"ID":13685,"SourceStructureID":35894,"TargetStructureID":408,"Label":"35894-408 via Conventional from 35895 -> 35797, 35897 -> 35899, 35903 -> 35785","Type":"Conventional","Directional":true,"Links":[{"SourceID":35895,"TargetID":35797,"Directional":true},{"SourceID":35897,"TargetID":35899,"Directional":true},{"SourceID":35903,"TargetID":35785,"Directional":true}]},{"ID":13686,"SourceStructureID":35894,"TargetStructureID":1724,"Label":"35894-1724 via Conventional from 35918 -> 20200, 100543 -> 100544, 100638 -> 3944","Type":"Conventional","Directional":true,"Links":[{"SourceID":35918,"TargetID":20200,"Directional":true},{"SourceID":100543,"TargetID":100544,"Directional":true},{"SourceID":100638,"TargetID":3944,"Directional":true}]},{"ID":13687,"SourceStructureID":35894,"TargetStructureID":5278,"Label":"35894-5278 via Conventional from 35920 -> 11192","Type":"Conventional","Directional":true,"Links":[{"SourceID":35920,"TargetID":11192,"Directional":true}]},{"ID":13688,"SourceStructureID":35894,"TargetStructureID":5279,"Label":"35894-5279 via Conventional from 35922 -> 92650","Type":"Conventional","Directional":true,"Links":[{"SourceID":35922,"TargetID":92650,"Directional":true}]},{"ID":13689,"SourceStructureID":35894,"TargetStructureID":6050,"Label":"35894-6050 via Conventional from 35940 -> 119683, 35941 -> 35958","Type":"Conventional","Directional":true,"Links":[{"SourceID":35940,"TargetID":119683,"Directional":true},{"SourceID":35941,"TargetID":35958,"Directional":true}]},{"ID":13690,"SourceStructureID":35894,"TargetStructureID":6117,"Label":"35894-6117 via Conventional from 35927 -> 10527, 86023 -> 86024","Type":"Conventional","Directional":true,"Links":[{"SourceID":35927,"TargetID":10527,"Directional":true},{"SourceID":86023,"TargetID":86024,"Directional":true}]},{"ID":13691,"SourceStructureID":35894,"TargetStructureID":6155,"Label":"35894-6155 via Conventional from 35912 -> 15534, 35913 -> 15611, 107953 -> 107914, 107954 -> 48278","Type":"Conventional","Directional":true,"Links":[{"SourceID":35912,"TargetID":15534,"Directional":true},{"SourceID":35913,"TargetID":15611,"Directional":true},{"SourceID":107953,"TargetID":107914,"Directional":true},{"SourceID":107954,"TargetID":48278,"Directional":true}]},{"ID":13692,"SourceStructureID":35894,"TargetStructureID":32035,"Label":"35894-32035 via Conventional from 41660 -> 41659","Type":"Conventional","Directional":true,"Links":[{"SourceID":41660,"TargetID":41659,"Directional":true}]},{"ID":13693,"SourceStructureID":35969,"TargetStructureID":408,"Label":"35969-408 via Conventional from 35970 -> 29269, 62037 -> 52973","Type":"Conventional","Directional":true,"Links":[{"SourceID":35970,"TargetID":29269,"Directional":true},{"SourceID":62037,"TargetID":52973,"Directional":true}]},{"ID":13694,"SourceStructureID":35972,"TargetStructureID":408,"Label":"35972-408 via Conventional from 35973 -> 35807","Type":"Conventional","Directional":true,"Links":[{"SourceID":35973,"TargetID":35807,"Directional":true}]},{"ID":13695,"SourceStructureID":35975,"TargetStructureID":142,"Label":"35975-142 via Conventional from 84978 -> 49770","Type":"Conventional","Directional":true,"Links":[{"SourceID":84978,"TargetID":49770,"Directional":true}]},{"ID":13696,"SourceStructureID":35975,"TargetStructureID":408,"Label":"35975-408 via Conventional from 35976 -> 35974, 35981 -> 35792","Type":"Conventional","Directional":true,"Links":[{"SourceID":35976,"TargetID":35974,"Directional":true},{"SourceID":35981,"TargetID":35792,"Directional":true}]},{"ID":13697,"SourceStructureID":35975,"TargetStructureID":1724,"Label":"35975-1724 via Conventional from 35989 -> 3930, 48481 -> 4012, 49048 -> 49047","Type":"Conventional","Directional":true,"Links":[{"SourceID":35989,"TargetID":3930,"Directional":true},{"SourceID":48481,"TargetID":4012,"Directional":true},{"SourceID":49048,"TargetID":49047,"Directional":true}]},{"ID":13698,"SourceStructureID":35975,"TargetStructureID":5279,"Label":"35975-5279 via Conventional from 35990 -> 25825, 35991 -> 35993","Type":"Conventional","Directional":true,"Links":[{"SourceID":35990,"TargetID":25825,"Directional":true},{"SourceID":35991,"TargetID":35993,"Directional":true}]},{"ID":13699,"SourceStructureID":35975,"TargetStructureID":5292,"Label":"35975-5292 via Conventional from 36002 -> 36007","Type":"Conventional","Directional":true,"Links":[{"SourceID":36002,"TargetID":36007,"Directional":true}]},{"ID":13700,"SourceStructureID":35975,"TargetStructureID":5598,"Label":"35975-5598 via Conventional from 36028 -> 36029","Type":"Conventional","Directional":true,"Links":[{"SourceID":36028,"TargetID":36029,"Directional":true}]},{"ID":13701,"SourceStructureID":35975,"TargetStructureID":6050,"Label":"35975-6050 via Conventional from 36009 -> 126981, 62392 -> 51878, 62393 -> 35951, 62394 -> 62395, 70350 -> 70356, 126986 -> 126985","Type":"Conventional","Directional":true,"Links":[{"SourceID":36009,"TargetID":126981,"Directional":true},{"SourceID":62392,"TargetID":51878,"Directional":true},{"SourceID":62393,"TargetID":35951,"Directional":true},{"SourceID":62394,"TargetID":62395,"Directional":true},{"SourceID":70350,"TargetID":70356,"Directional":true},{"SourceID":126986,"TargetID":126985,"Directional":true}]},{"ID":13702,"SourceStructureID":35975,"TargetStructureID":6117,"Label":"35975-6117 via Conventional from 84975 -> 84976","Type":"Conventional","Directional":true,"Links":[{"SourceID":84975,"TargetID":84976,"Directional":true}]},{"ID":13703,"SourceStructureID":35975,"TargetStructureID":6155,"Label":"35975-6155 via Conventional from 35982 -> 35983, 35984 -> 15755, 35986 -> 15604, 35987 -> 15686, 108107 -> 48286","Type":"Conventional","Directional":true,"Links":[{"SourceID":35982,"TargetID":35983,"Directional":true},{"SourceID":35984,"TargetID":15755,"Directional":true},{"SourceID":35986,"TargetID":15604,"Directional":true},{"SourceID":35987,"TargetID":15686,"Directional":true},{"SourceID":108107,"TargetID":48286,"Directional":true}]},{"ID":13704,"SourceStructureID":35975,"TargetStructureID":15796,"Label":"35975-15796 via Conventional from 35999 -> 36001","Type":"Conventional","Directional":true,"Links":[{"SourceID":35999,"TargetID":36001,"Directional":true}]},{"ID":13705,"SourceStructureID":35975,"TargetStructureID":15976,"Label":"35975-15976 via Conventional from 36052 -> 36053","Type":"Conventional","Directional":true,"Links":[{"SourceID":36052,"TargetID":36053,"Directional":true}]},{"ID":13706,"SourceStructureID":36130,"TargetStructureID":15796,"Label":"36130-15796 via Conventional from 36131 -> 15838","Type":"Conventional","Directional":true,"Links":[{"SourceID":36131,"TargetID":15838,"Directional":true}]},{"ID":13707,"SourceStructureID":36130,"TargetStructureID":59163,"Label":"36130-59163 via Conventional from 36149 -> 59166","Type":"Conventional","Directional":true,"Links":[{"SourceID":36149,"TargetID":59166,"Directional":true}]},{"ID":13708,"SourceStructureID":36151,"TargetStructureID":36153,"Label":"36151-36153 via Conventional from 36152 -> 36154","Type":"Conventional","Directional":true,"Links":[{"SourceID":36152,"TargetID":36154,"Directional":true}]},{"ID":13709,"SourceStructureID":36153,"TargetStructureID":479,"Label":"36153-479 via Conventional from 61615 -> 61614","Type":"Conventional","Directional":true,"Links":[{"SourceID":61615,"TargetID":61614,"Directional":true}]},{"ID":13710,"SourceStructureID":36153,"TargetStructureID":8575,"Label":"36153-8575 via Conventional from 61612 -> 17385","Type":"Conventional","Directional":true,"Links":[{"SourceID":61612,"TargetID":17385,"Directional":true}]},{"ID":13711,"SourceStructureID":36158,"TargetStructureID":479,"Label":"36158-479 via Conventional from 36159 -> 12365","Type":"Conventional","Directional":true,"Links":[{"SourceID":36159,"TargetID":12365,"Directional":true}]},{"ID":13712,"SourceStructureID":36162,"TargetStructureID":479,"Label":"36162-479 via Conventional from 36163 -> 36161, 36166 -> 36167, 36166 -> 37612","Type":"Conventional","Directional":true,"Links":[{"SourceID":36163,"TargetID":36161,"Directional":true},{"SourceID":36166,"TargetID":36167,"Directional":true},{"SourceID":36166,"TargetID":37612,"Directional":true}]},{"ID":13713,"SourceStructureID":36170,"TargetStructureID":479,"Label":"36170-479 via Conventional from 36171 -> 121708","Type":"Conventional","Directional":true,"Links":[{"SourceID":36171,"TargetID":121708,"Directional":true}]},{"ID":13714,"SourceStructureID":36222,"TargetStructureID":372,"Label":"36222-372 via Conventional from 36223 -> 16019","Type":"Conventional","Directional":true,"Links":[{"SourceID":36223,"TargetID":16019,"Directional":true}]},{"ID":13715,"SourceStructureID":36228,"TargetStructureID":318,"Label":"36228-318 via Conventional from 36233 -> 20276","Type":"Conventional","Directional":true,"Links":[{"SourceID":36233,"TargetID":20276,"Directional":true}]},{"ID":13716,"SourceStructureID":36228,"TargetStructureID":419,"Label":"36228-419 via Conventional from 36229 -> 10174","Type":"Conventional","Directional":true,"Links":[{"SourceID":36229,"TargetID":10174,"Directional":true}]},{"ID":13717,"SourceStructureID":36234,"TargetStructureID":419,"Label":"36234-419 via Conventional from 36235 -> 10166","Type":"Conventional","Directional":true,"Links":[{"SourceID":36235,"TargetID":10166,"Directional":true}]},{"ID":13718,"SourceStructureID":36276,"TargetStructureID":518,"Label":"36276-518 via Conventional from 36277 -> 3408","Type":"Conventional","Directional":true,"Links":[{"SourceID":36277,"TargetID":3408,"Directional":true}]},{"ID":13719,"SourceStructureID":36276,"TargetStructureID":10959,"Label":"36276-10959 via Conventional from 36289 -> 36291, 36290 -> 36292","Type":"Conventional","Directional":true,"Links":[{"SourceID":36289,"TargetID":36291,"Directional":true},{"SourceID":36290,"TargetID":36292,"Directional":true}]},{"ID":13720,"SourceStructureID":36293,"TargetStructureID":518,"Label":"36293-518 via Conventional from 36294 -> 3447, 36296 -> 3409","Type":"Conventional","Directional":true,"Links":[{"SourceID":36294,"TargetID":3447,"Directional":true},{"SourceID":36296,"TargetID":3409,"Directional":true}]},{"ID":13721,"SourceStructureID":36299,"TargetStructureID":518,"Label":"36299-518 via Conventional from 36300 -> 3406, 36304 -> 3412","Type":"Conventional","Directional":true,"Links":[{"SourceID":36300,"TargetID":3406,"Directional":true},{"SourceID":36304,"TargetID":3412,"Directional":true}]},{"ID":13722,"SourceStructureID":36419,"TargetStructureID":518,"Label":"36419-518 via Conventional from 36420 -> 3356","Type":"Conventional","Directional":true,"Links":[{"SourceID":36420,"TargetID":3356,"Directional":true}]},{"ID":13723,"SourceStructureID":36419,"TargetStructureID":118372,"Label":"36419-118372 via Conventional from 118371 -> 118373","Type":"Conventional","Directional":true,"Links":[{"SourceID":118371,"TargetID":118373,"Directional":true}]},{"ID":13724,"SourceStructureID":36421,"TargetStructureID":518,"Label":"36421-518 via Conventional from 36422 -> 36423","Type":"Conventional","Directional":true,"Links":[{"SourceID":36422,"TargetID":36423,"Directional":true}]},{"ID":13725,"SourceStructureID":36481,"TargetStructureID":518,"Label":"36481-518 via Conventional from 36482 -> 3370, 36486 -> 36487, 36723 -> 36721","Type":"Conventional","Directional":true,"Links":[{"SourceID":36482,"TargetID":3370,"Directional":true},{"SourceID":36486,"TargetID":36487,"Directional":true},{"SourceID":36723,"TargetID":36721,"Directional":true}]},{"ID":13726,"SourceStructureID":36481,"TargetStructureID":8749,"Label":"36481-8749 via Conventional from 36496 -> 8864","Type":"Conventional","Directional":true,"Links":[{"SourceID":36496,"TargetID":8864,"Directional":true}]},{"ID":13727,"SourceStructureID":36501,"TargetStructureID":476,"Label":"36501-476 via Conventional from 36504 -> 2317","Type":"Conventional","Directional":true,"Links":[{"SourceID":36504,"TargetID":2317,"Directional":true}]},{"ID":13728,"SourceStructureID":36501,"TargetStructureID":518,"Label":"36501-518 via Conventional from 36502 -> 3374","Type":"Conventional","Directional":true,"Links":[{"SourceID":36502,"TargetID":3374,"Directional":true}]},{"ID":13729,"SourceStructureID":36508,"TargetStructureID":518,"Label":"36508-518 via Conventional from 36509 -> 36510, 36511 -> 3430","Type":"Conventional","Directional":true,"Links":[{"SourceID":36509,"TargetID":36510,"Directional":true},{"SourceID":36511,"TargetID":3430,"Directional":true}]},{"ID":13730,"SourceStructureID":36512,"TargetStructureID":518,"Label":"36512-518 via Conventional from 36514 -> 2321","Type":"Conventional","Directional":true,"Links":[{"SourceID":36514,"TargetID":2321,"Directional":true}]},{"ID":13731,"SourceStructureID":36516,"TargetStructureID":5562,"Label":"36516-5562 via Conventional from 36613 -> 33099","Type":"Conventional","Directional":true,"Links":[{"SourceID":36613,"TargetID":33099,"Directional":true}]},{"ID":13732,"SourceStructureID":36516,"TargetStructureID":5649,"Label":"36516-5649 via Conventional from 36623 -> 33108","Type":"Conventional","Directional":true,"Links":[{"SourceID":36623,"TargetID":33108,"Directional":true}]},{"ID":13733,"SourceStructureID":36516,"TargetStructureID":10872,"Label":"36516-10872 via Conventional from 36519 -> 15025","Type":"Conventional","Directional":true,"Links":[{"SourceID":36519,"TargetID":15025,"Directional":true}]},{"ID":13734,"SourceStructureID":36516,"TargetStructureID":67410,"Label":"36516-67410 via Conventional from 36520 -> 82769","Type":"Conventional","Directional":true,"Links":[{"SourceID":36520,"TargetID":82769,"Directional":true}]},{"ID":13735,"SourceStructureID":36650,"TargetStructureID":518,"Label":"36650-518 via Conventional from 36651 -> 2319, 36652 -> 3433","Type":"Conventional","Directional":true,"Links":[{"SourceID":36651,"TargetID":2319,"Directional":true},{"SourceID":36652,"TargetID":3433,"Directional":true}]},{"ID":13736,"SourceStructureID":36661,"TargetStructureID":518,"Label":"36661-518 via Conventional from 36662 -> 3456","Type":"Conventional","Directional":true,"Links":[{"SourceID":36662,"TargetID":3456,"Directional":true}]},{"ID":13737,"SourceStructureID":36664,"TargetStructureID":518,"Label":"36664-518 via Conventional from 36665 -> 36663","Type":"Conventional","Directional":true,"Links":[{"SourceID":36665,"TargetID":36663,"Directional":true}]},{"ID":13738,"SourceStructureID":36683,"TargetStructureID":518,"Label":"36683-518 via Conventional from 36684 -> 3444, 36686 -> 36685, 118353 -> 118352","Type":"Conventional","Directional":true,"Links":[{"SourceID":36684,"TargetID":3444,"Directional":true},{"SourceID":36686,"TargetID":36685,"Directional":true},{"SourceID":118353,"TargetID":118352,"Directional":true}]},{"ID":13739,"SourceStructureID":36688,"TargetStructureID":476,"Label":"36688-476 via Conventional from 36694 -> 36693","Type":"Conventional","Directional":true,"Links":[{"SourceID":36694,"TargetID":36693,"Directional":true}]},{"ID":13740,"SourceStructureID":36688,"TargetStructureID":518,"Label":"36688-518 via Conventional from 36689 -> 3500, 36691 -> 36692, 36696 -> 3578","Type":"Conventional","Directional":true,"Links":[{"SourceID":36689,"TargetID":3500,"Directional":true},{"SourceID":36691,"TargetID":36692,"Directional":true},{"SourceID":36696,"TargetID":3578,"Directional":true}]},{"ID":13741,"SourceStructureID":36698,"TargetStructureID":476,"Label":"36698-476 via Conventional from 36699 -> 2327","Type":"Conventional","Directional":true,"Links":[{"SourceID":36699,"TargetID":2327,"Directional":true}]},{"ID":13742,"SourceStructureID":36700,"TargetStructureID":476,"Label":"36700-476 via Conventional from 36701 -> 2314, 36703 -> 16546","Type":"Conventional","Directional":true,"Links":[{"SourceID":36701,"TargetID":2314,"Directional":true},{"SourceID":36703,"TargetID":16546,"Directional":true}]},{"ID":13743,"SourceStructureID":36700,"TargetStructureID":5350,"Label":"36700-5350 via Conventional from 36704 -> 36705","Type":"Conventional","Directional":true,"Links":[{"SourceID":36704,"TargetID":36705,"Directional":true}]},{"ID":13744,"SourceStructureID":36714,"TargetStructureID":518,"Label":"36714-518 via Conventional from 36715 -> 36716, 36720 -> 3514","Type":"Conventional","Directional":true,"Links":[{"SourceID":36715,"TargetID":36716,"Directional":true},{"SourceID":36720,"TargetID":3514,"Directional":true}]},{"ID":13745,"SourceStructureID":36724,"TargetStructureID":294,"Label":"36724-294 via Conventional from 36728 -> 36729, 36730 -> 36731","Type":"Conventional","Directional":true,"Links":[{"SourceID":36728,"TargetID":36729,"Directional":true},{"SourceID":36730,"TargetID":36731,"Directional":true}]},{"ID":13746,"SourceStructureID":36724,"TargetStructureID":518,"Label":"36724-518 via Conventional from 36725 -> 3392, 36726 -> 3398, 36727 -> 3386","Type":"Conventional","Directional":true,"Links":[{"SourceID":36725,"TargetID":3392,"Directional":true},{"SourceID":36726,"TargetID":3398,"Directional":true},{"SourceID":36727,"TargetID":3386,"Directional":true}]},{"ID":13747,"SourceStructureID":36746,"TargetStructureID":518,"Label":"36746-518 via Conventional from 36747 -> 36745","Type":"Conventional","Directional":true,"Links":[{"SourceID":36747,"TargetID":36745,"Directional":true}]},{"ID":13748,"SourceStructureID":37012,"TargetStructureID":476,"Label":"37012-476 via Conventional from 37013 -> 2313","Type":"Conventional","Directional":true,"Links":[{"SourceID":37013,"TargetID":2313,"Directional":true}]},{"ID":13749,"SourceStructureID":37021,"TargetStructureID":476,"Label":"37021-476 via Conventional from 37022 -> 37023","Type":"Conventional","Directional":true,"Links":[{"SourceID":37022,"TargetID":37023,"Directional":true}]},{"ID":13750,"SourceStructureID":37042,"TargetStructureID":471,"Label":"37042-471 via Conventional from 37043 -> 16043","Type":"Conventional","Directional":true,"Links":[{"SourceID":37043,"TargetID":16043,"Directional":true}]},{"ID":13751,"SourceStructureID":37127,"TargetStructureID":476,"Label":"37127-476 via Conventional from 37132 -> 2374","Type":"Conventional","Directional":true,"Links":[{"SourceID":37132,"TargetID":2374,"Directional":true}]},{"ID":13752,"SourceStructureID":37127,"TargetStructureID":518,"Label":"37127-518 via Conventional from 37128 -> 3438","Type":"Conventional","Directional":true,"Links":[{"SourceID":37128,"TargetID":3438,"Directional":true}]},{"ID":13753,"SourceStructureID":37135,"TargetStructureID":419,"Label":"37135-419 via Conventional from 45662 -> 45663","Type":"Conventional","Directional":true,"Links":[{"SourceID":45662,"TargetID":45663,"Directional":true}]},{"ID":13754,"SourceStructureID":37135,"TargetStructureID":476,"Label":"37135-476 via Conventional from 37181 -> 2394","Type":"Conventional","Directional":true,"Links":[{"SourceID":37181,"TargetID":2394,"Directional":true}]},{"ID":13755,"SourceStructureID":37135,"TargetStructureID":514,"Label":"37135-514 via Conventional from 37179 -> 1557","Type":"Conventional","Directional":true,"Links":[{"SourceID":37179,"TargetID":1557,"Directional":true}]},{"ID":13756,"SourceStructureID":37135,"TargetStructureID":518,"Label":"37135-518 via Conventional from 37136 -> 14719","Type":"Conventional","Directional":true,"Links":[{"SourceID":37136,"TargetID":14719,"Directional":true}]},{"ID":13757,"SourceStructureID":37183,"TargetStructureID":518,"Label":"37183-518 via Conventional from 37184 -> 3489","Type":"Conventional","Directional":true,"Links":[{"SourceID":37184,"TargetID":3489,"Directional":true}]},{"ID":13758,"SourceStructureID":37192,"TargetStructureID":514,"Label":"37192-514 via Conventional from 37193 -> 3288","Type":"Conventional","Directional":true,"Links":[{"SourceID":37193,"TargetID":3288,"Directional":true}]},{"ID":13759,"SourceStructureID":37192,"TargetStructureID":3679,"Label":"37192-3679 via Conventional from 37196 -> 16433","Type":"Conventional","Directional":true,"Links":[{"SourceID":37196,"TargetID":16433,"Directional":true}]},{"ID":13760,"SourceStructureID":37286,"TargetStructureID":419,"Label":"37286-419 via Conventional from 133552 -> 132365, 133652 -> 132389","Type":"Conventional","Directional":true,"Links":[{"SourceID":133552,"TargetID":132365,"Directional":true},{"SourceID":133652,"TargetID":132389,"Directional":true}]},{"ID":13761,"SourceStructureID":37295,"TargetStructureID":318,"Label":"37295-318 via Ribbon Synapse from 39161 -> 39162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39161,"TargetID":39162,"Directional":true}]},{"ID":13762,"SourceStructureID":37295,"TargetStructureID":37288,"Label":"37295-37288 via Ribbon Synapse from 37296 -> 37289, 37300 -> 37299","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37296,"TargetID":37289,"Directional":true},{"SourceID":37300,"TargetID":37299,"Directional":true}]},{"ID":13763,"SourceStructureID":37309,"TargetStructureID":22554,"Label":"37309-22554 via Ribbon Synapse from 37343 -> 22568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37343,"TargetID":22568,"Directional":true}]},{"ID":13764,"SourceStructureID":37309,"TargetStructureID":37288,"Label":"37309-37288 via Ribbon Synapse from 37353 -> 37354, 37355 -> 37308, 37357 -> 37358, 37360 -> 37359, 37364 -> 37365, 37367 -> 37366, 37438 -> 37437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37353,"TargetID":37354,"Directional":true},{"SourceID":37355,"TargetID":37308,"Directional":true},{"SourceID":37357,"TargetID":37358,"Directional":true},{"SourceID":37360,"TargetID":37359,"Directional":true},{"SourceID":37364,"TargetID":37365,"Directional":true},{"SourceID":37367,"TargetID":37366,"Directional":true},{"SourceID":37438,"TargetID":37437,"Directional":true}]},{"ID":13765,"SourceStructureID":37309,"TargetStructureID":121541,"Label":"37309-121541 via Ribbon Synapse from 121557 -> 121556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121557,"TargetID":121556,"Directional":true}]},{"ID":13766,"SourceStructureID":37440,"TargetStructureID":37288,"Label":"37440-37288 via Conventional from 37446 -> 37307, 37448 -> 37306","Type":"Conventional","Directional":true,"Links":[{"SourceID":37446,"TargetID":37307,"Directional":true},{"SourceID":37448,"TargetID":37306,"Directional":true}]},{"ID":13767,"SourceStructureID":37440,"TargetStructureID":37309,"Label":"37440-37309 via Conventional from 37441 -> 37439","Type":"Conventional","Directional":true,"Links":[{"SourceID":37441,"TargetID":37439,"Directional":true}]},{"ID":13768,"SourceStructureID":37440,"TargetStructureID":37440,"Label":"37440-37440 via Conventional from 37442 -> 37443","Type":"Conventional","Directional":true,"Links":[{"SourceID":37442,"TargetID":37443,"Directional":true}]},{"ID":13769,"SourceStructureID":37461,"TargetStructureID":514,"Label":"37461-514 via Conventional from 37462 -> 1439","Type":"Conventional","Directional":true,"Links":[{"SourceID":37462,"TargetID":1439,"Directional":true}]},{"ID":13770,"SourceStructureID":37461,"TargetStructureID":591,"Label":"37461-591 via Conventional from 37464 -> 10288","Type":"Conventional","Directional":true,"Links":[{"SourceID":37464,"TargetID":10288,"Directional":true}]},{"ID":13771,"SourceStructureID":37466,"TargetStructureID":519,"Label":"37466-519 via Conventional from 37467 -> 37465","Type":"Conventional","Directional":true,"Links":[{"SourceID":37467,"TargetID":37465,"Directional":true}]},{"ID":13772,"SourceStructureID":38200,"TargetStructureID":514,"Label":"38200-514 via Conventional from 38201 -> 1373","Type":"Conventional","Directional":true,"Links":[{"SourceID":38201,"TargetID":1373,"Directional":true}]},{"ID":13773,"SourceStructureID":38231,"TargetStructureID":10826,"Label":"38231-10826 via Conventional from 38232 -> 38233","Type":"Conventional","Directional":true,"Links":[{"SourceID":38232,"TargetID":38233,"Directional":true}]},{"ID":13774,"SourceStructureID":38236,"TargetStructureID":5623,"Label":"38236-5623 via Conventional from 38241 -> 38242","Type":"Conventional","Directional":true,"Links":[{"SourceID":38241,"TargetID":38242,"Directional":true}]},{"ID":13775,"SourceStructureID":38236,"TargetStructureID":10826,"Label":"38236-10826 via Conventional from 38237 -> 38238","Type":"Conventional","Directional":true,"Links":[{"SourceID":38237,"TargetID":38238,"Directional":true}]},{"ID":13776,"SourceStructureID":38302,"TargetStructureID":6050,"Label":"38302-6050 via Conventional from 38305 -> 38306, 127551 -> 127552","Type":"Conventional","Directional":true,"Links":[{"SourceID":38305,"TargetID":38306,"Directional":true},{"SourceID":127551,"TargetID":127552,"Directional":true}]},{"ID":13777,"SourceStructureID":38302,"TargetStructureID":11033,"Label":"38302-11033 via Conventional from 38303 -> 38304","Type":"Conventional","Directional":true,"Links":[{"SourceID":38303,"TargetID":38304,"Directional":true}]},{"ID":13778,"SourceStructureID":38307,"TargetStructureID":5599,"Label":"38307-5599 via Conventional from 38321 -> 38326","Type":"Conventional","Directional":true,"Links":[{"SourceID":38321,"TargetID":38326,"Directional":true}]},{"ID":13779,"SourceStructureID":38307,"TargetStructureID":6050,"Label":"38307-6050 via Conventional from 38311 -> 38312, 38319 -> 38320","Type":"Conventional","Directional":true,"Links":[{"SourceID":38311,"TargetID":38312,"Directional":true},{"SourceID":38319,"TargetID":38320,"Directional":true}]},{"ID":13780,"SourceStructureID":38307,"TargetStructureID":11033,"Label":"38307-11033 via Conventional from 38309 -> 38310","Type":"Conventional","Directional":true,"Links":[{"SourceID":38309,"TargetID":38310,"Directional":true}]},{"ID":13781,"SourceStructureID":38345,"TargetStructureID":11020,"Label":"38345-11020 via Conventional from 38346 -> 20011","Type":"Conventional","Directional":true,"Links":[{"SourceID":38346,"TargetID":20011,"Directional":true}]},{"ID":13782,"SourceStructureID":38357,"TargetStructureID":277,"Label":"38357-277 via Conventional from 38431 -> 38430","Type":"Conventional","Directional":true,"Links":[{"SourceID":38431,"TargetID":38430,"Directional":true}]},{"ID":13783,"SourceStructureID":38357,"TargetStructureID":24366,"Label":"38357-24366 via Conventional from 38889 -> 24378","Type":"Conventional","Directional":true,"Links":[{"SourceID":38889,"TargetID":24378,"Directional":true}]},{"ID":13784,"SourceStructureID":38363,"TargetStructureID":6115,"Label":"38363-6115 via Conventional from 38369 -> 59609","Type":"Conventional","Directional":true,"Links":[{"SourceID":38369,"TargetID":59609,"Directional":true}]},{"ID":13785,"SourceStructureID":38363,"TargetStructureID":10931,"Label":"38363-10931 via Conventional from 38364 -> 38365","Type":"Conventional","Directional":true,"Links":[{"SourceID":38364,"TargetID":38365,"Directional":true}]},{"ID":13786,"SourceStructureID":38363,"TargetStructureID":66407,"Label":"38363-66407 via Conventional from 66467 -> 66468","Type":"Conventional","Directional":true,"Links":[{"SourceID":66467,"TargetID":66468,"Directional":true}]},{"ID":13787,"SourceStructureID":38373,"TargetStructureID":10931,"Label":"38373-10931 via Conventional from 38374 -> 38375","Type":"Conventional","Directional":true,"Links":[{"SourceID":38374,"TargetID":38375,"Directional":true}]},{"ID":13788,"SourceStructureID":38376,"TargetStructureID":10931,"Label":"38376-10931 via Conventional from 38377 -> 14216","Type":"Conventional","Directional":true,"Links":[{"SourceID":38377,"TargetID":14216,"Directional":true}]},{"ID":13789,"SourceStructureID":38379,"TargetStructureID":5297,"Label":"38379-5297 via Conventional from 121285 -> 116331","Type":"Conventional","Directional":true,"Links":[{"SourceID":121285,"TargetID":116331,"Directional":true}]},{"ID":13790,"SourceStructureID":38379,"TargetStructureID":10931,"Label":"38379-10931 via Conventional from 38380 -> 38381","Type":"Conventional","Directional":true,"Links":[{"SourceID":38380,"TargetID":38381,"Directional":true}]},{"ID":13791,"SourceStructureID":38385,"TargetStructureID":10897,"Label":"38385-10897 via Conventional from 38386 -> 38387","Type":"Conventional","Directional":true,"Links":[{"SourceID":38386,"TargetID":38387,"Directional":true}]},{"ID":13792,"SourceStructureID":38385,"TargetStructureID":67981,"Label":"38385-67981 via Conventional from 67991 -> 67990","Type":"Conventional","Directional":true,"Links":[{"SourceID":67991,"TargetID":67990,"Directional":true}]},{"ID":13793,"SourceStructureID":38388,"TargetStructureID":10897,"Label":"38388-10897 via Conventional from 38389 -> 38390","Type":"Conventional","Directional":true,"Links":[{"SourceID":38389,"TargetID":38390,"Directional":true}]},{"ID":13794,"SourceStructureID":38388,"TargetStructureID":11401,"Label":"38388-11401 via Conventional from 38455 -> 38456","Type":"Conventional","Directional":true,"Links":[{"SourceID":38455,"TargetID":38456,"Directional":true}]},{"ID":13795,"SourceStructureID":38395,"TargetStructureID":8037,"Label":"38395-8037 via Conventional from 38398 -> 38399","Type":"Conventional","Directional":true,"Links":[{"SourceID":38398,"TargetID":38399,"Directional":true}]},{"ID":13796,"SourceStructureID":38395,"TargetStructureID":8749,"Label":"38395-8749 via Conventional from 38400 -> 8829","Type":"Conventional","Directional":true,"Links":[{"SourceID":38400,"TargetID":8829,"Directional":true}]},{"ID":13797,"SourceStructureID":38395,"TargetStructureID":10897,"Label":"38395-10897 via Conventional from 38396 -> 38397","Type":"Conventional","Directional":true,"Links":[{"SourceID":38396,"TargetID":38397,"Directional":true}]},{"ID":13798,"SourceStructureID":38401,"TargetStructureID":10840,"Label":"38401-10840 via Conventional from 38402 -> 33270","Type":"Conventional","Directional":true,"Links":[{"SourceID":38402,"TargetID":33270,"Directional":true}]},{"ID":13799,"SourceStructureID":38404,"TargetStructureID":5637,"Label":"38404-5637 via Conventional from 38411 -> 56030","Type":"Conventional","Directional":true,"Links":[{"SourceID":38411,"TargetID":56030,"Directional":true}]},{"ID":13800,"SourceStructureID":38428,"TargetStructureID":16087,"Label":"38428-16087 via Conventional from 38429 -> 38427","Type":"Conventional","Directional":true,"Links":[{"SourceID":38429,"TargetID":38427,"Directional":true}]},{"ID":13801,"SourceStructureID":38435,"TargetStructureID":5454,"Label":"38435-5454 via Conventional from 38436 -> 34195","Type":"Conventional","Directional":true,"Links":[{"SourceID":38436,"TargetID":34195,"Directional":true}]},{"ID":13802,"SourceStructureID":38446,"TargetStructureID":5454,"Label":"38446-5454 via Conventional from 38447 -> 38432","Type":"Conventional","Directional":true,"Links":[{"SourceID":38447,"TargetID":38432,"Directional":true}]},{"ID":13803,"SourceStructureID":38461,"TargetStructureID":5468,"Label":"38461-5468 via Conventional from 38470 -> 38473","Type":"Conventional","Directional":true,"Links":[{"SourceID":38470,"TargetID":38473,"Directional":true}]},{"ID":13804,"SourceStructureID":38461,"TargetStructureID":10412,"Label":"38461-10412 via Conventional from 38462 -> 10419","Type":"Conventional","Directional":true,"Links":[{"SourceID":38462,"TargetID":10419,"Directional":true}]},{"ID":13805,"SourceStructureID":38483,"TargetStructureID":5649,"Label":"38483-5649 via Conventional from 38500 -> 38501, 107116 -> 107114","Type":"Conventional","Directional":true,"Links":[{"SourceID":38500,"TargetID":38501,"Directional":true},{"SourceID":107116,"TargetID":107114,"Directional":true}]},{"ID":13806,"SourceStructureID":38483,"TargetStructureID":8586,"Label":"38483-8586 via Conventional from 38484 -> 8644","Type":"Conventional","Directional":true,"Links":[{"SourceID":38484,"TargetID":8644,"Directional":true}]},{"ID":13807,"SourceStructureID":38502,"TargetStructureID":7054,"Label":"38502-7054 via Conventional from 38503 -> 10914","Type":"Conventional","Directional":true,"Links":[{"SourceID":38503,"TargetID":10914,"Directional":true}]},{"ID":13808,"SourceStructureID":38600,"TargetStructureID":422,"Label":"38600-422 via Conventional from 38601 -> 31854","Type":"Conventional","Directional":true,"Links":[{"SourceID":38601,"TargetID":31854,"Directional":true}]},{"ID":13809,"SourceStructureID":38605,"TargetStructureID":369,"Label":"38605-369 via Conventional from 30438 -> 29552","Type":"Conventional","Directional":true,"Links":[{"SourceID":30438,"TargetID":29552,"Directional":true}]},{"ID":13810,"SourceStructureID":38605,"TargetStructureID":422,"Label":"38605-422 via Conventional from 38606 -> 38604","Type":"Conventional","Directional":true,"Links":[{"SourceID":38606,"TargetID":38604,"Directional":true}]},{"ID":13811,"SourceStructureID":38605,"TargetStructureID":3116,"Label":"38605-3116 via Conventional from 101488 -> 46773","Type":"Conventional","Directional":true,"Links":[{"SourceID":101488,"TargetID":46773,"Directional":true}]},{"ID":13812,"SourceStructureID":38605,"TargetStructureID":4569,"Label":"38605-4569 via Conventional from 38612 -> 38613, 98731 -> 98729","Type":"Conventional","Directional":true,"Links":[{"SourceID":38612,"TargetID":38613,"Directional":true},{"SourceID":98731,"TargetID":98729,"Directional":true}]},{"ID":13813,"SourceStructureID":38632,"TargetStructureID":307,"Label":"38632-307 via Conventional from 38642 -> 38643","Type":"Conventional","Directional":true,"Links":[{"SourceID":38642,"TargetID":38643,"Directional":true}]},{"ID":13814,"SourceStructureID":38632,"TargetStructureID":380,"Label":"38632-380 via Conventional from 38636 -> 38635","Type":"Conventional","Directional":true,"Links":[{"SourceID":38636,"TargetID":38635,"Directional":true}]},{"ID":13815,"SourceStructureID":38698,"TargetStructureID":330,"Label":"38698-330 via Conventional from 38701 -> 38702","Type":"Conventional","Directional":true,"Links":[{"SourceID":38701,"TargetID":38702,"Directional":true}]},{"ID":13816,"SourceStructureID":38698,"TargetStructureID":360,"Label":"38698-360 via Conventional from 38699 -> 26585","Type":"Conventional","Directional":true,"Links":[{"SourceID":38699,"TargetID":26585,"Directional":true}]},{"ID":13817,"SourceStructureID":38698,"TargetStructureID":606,"Label":"38698-606 via Conventional from 52707 -> 9797","Type":"Conventional","Directional":true,"Links":[{"SourceID":52707,"TargetID":9797,"Directional":true}]},{"ID":13818,"SourceStructureID":38703,"TargetStructureID":335,"Label":"38703-335 via Conventional from 38711 -> 38712","Type":"Conventional","Directional":true,"Links":[{"SourceID":38711,"TargetID":38712,"Directional":true}]},{"ID":13819,"SourceStructureID":38703,"TargetStructureID":360,"Label":"38703-360 via Conventional from 38704 -> 26586, 38705 -> 26587","Type":"Conventional","Directional":true,"Links":[{"SourceID":38704,"TargetID":26586,"Directional":true},{"SourceID":38705,"TargetID":26587,"Directional":true}]},{"ID":13820,"SourceStructureID":38713,"TargetStructureID":345,"Label":"38713-345 via Conventional from 38714 -> 38715","Type":"Conventional","Directional":true,"Links":[{"SourceID":38714,"TargetID":38715,"Directional":true}]},{"ID":13821,"SourceStructureID":38718,"TargetStructureID":345,"Label":"38718-345 via Conventional from 38720 -> 38719","Type":"Conventional","Directional":true,"Links":[{"SourceID":38720,"TargetID":38719,"Directional":true}]},{"ID":13822,"SourceStructureID":38718,"TargetStructureID":446,"Label":"38718-446 via Conventional from 38723 -> 38724","Type":"Conventional","Directional":true,"Links":[{"SourceID":38723,"TargetID":38724,"Directional":true}]},{"ID":13823,"SourceStructureID":38727,"TargetStructureID":332,"Label":"38727-332 via Conventional from 38731 -> 38732","Type":"Conventional","Directional":true,"Links":[{"SourceID":38731,"TargetID":38732,"Directional":true}]},{"ID":13824,"SourceStructureID":38727,"TargetStructureID":334,"Label":"38727-334 via Conventional from 38728 -> 26206","Type":"Conventional","Directional":true,"Links":[{"SourceID":38728,"TargetID":26206,"Directional":true}]},{"ID":13825,"SourceStructureID":38727,"TargetStructureID":38703,"Label":"38727-38703 via Conventional from 38729 -> 38730","Type":"Conventional","Directional":true,"Links":[{"SourceID":38729,"TargetID":38730,"Directional":true}]},{"ID":13826,"SourceStructureID":38735,"TargetStructureID":17533,"Label":"38735-17533 via Conventional from 38736 -> 38737","Type":"Conventional","Directional":true,"Links":[{"SourceID":38736,"TargetID":38737,"Directional":true}]},{"ID":13827,"SourceStructureID":38740,"TargetStructureID":293,"Label":"38740-293 via Conventional from 38741 -> 14377","Type":"Conventional","Directional":true,"Links":[{"SourceID":38741,"TargetID":14377,"Directional":true}]},{"ID":13828,"SourceStructureID":38799,"TargetStructureID":598,"Label":"38799-598 via Ribbon Synapse from 38800 -> 38798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38800,"TargetID":38798,"Directional":true}]},{"ID":13829,"SourceStructureID":38848,"TargetStructureID":18282,"Label":"38848-18282 via Ribbon Synapse from 38850 -> 31455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38850,"TargetID":31455,"Directional":true}]},{"ID":13830,"SourceStructureID":38906,"TargetStructureID":483,"Label":"38906-483 via Conventional from 38907 -> 26812","Type":"Conventional","Directional":true,"Links":[{"SourceID":38907,"TargetID":26812,"Directional":true}]},{"ID":13831,"SourceStructureID":38906,"TargetStructureID":4570,"Label":"38906-4570 via Conventional from 38925 -> 14979","Type":"Conventional","Directional":true,"Links":[{"SourceID":38925,"TargetID":14979,"Directional":true}]},{"ID":13832,"SourceStructureID":38949,"TargetStructureID":170,"Label":"38949-170 via Conventional from 39029 -> 39030, 39034 -> 39035","Type":"Conventional","Directional":true,"Links":[{"SourceID":39029,"TargetID":39030,"Directional":true},{"SourceID":39034,"TargetID":39035,"Directional":true}]},{"ID":13833,"SourceStructureID":38949,"TargetStructureID":176,"Label":"38949-176 via Conventional from 38989 -> 128264, 38993 -> 38994, 38997 -> 38999","Type":"Conventional","Directional":true,"Links":[{"SourceID":38989,"TargetID":128264,"Directional":true},{"SourceID":38993,"TargetID":38994,"Directional":true},{"SourceID":38997,"TargetID":38999,"Directional":true}]},{"ID":13834,"SourceStructureID":38949,"TargetStructureID":431,"Label":"38949-431 via Conventional from 39043 -> 12741, 39045 -> 39046","Type":"Conventional","Directional":true,"Links":[{"SourceID":39043,"TargetID":12741,"Directional":true},{"SourceID":39045,"TargetID":39046,"Directional":true}]},{"ID":13835,"SourceStructureID":38949,"TargetStructureID":4569,"Label":"38949-4569 via Conventional from 39038 -> 39039, 39040 -> 39041","Type":"Conventional","Directional":true,"Links":[{"SourceID":39038,"TargetID":39039,"Directional":true},{"SourceID":39040,"TargetID":39041,"Directional":true}]},{"ID":13836,"SourceStructureID":38949,"TargetStructureID":5584,"Label":"38949-5584 via Conventional from 38952 -> 38970","Type":"Conventional","Directional":true,"Links":[{"SourceID":38952,"TargetID":38970,"Directional":true}]},{"ID":13837,"SourceStructureID":38949,"TargetStructureID":5598,"Label":"38949-5598 via Conventional from 38950 -> 38951, 38976 -> 38977, 38980 -> 115006, 124477 -> 114595","Type":"Conventional","Directional":true,"Links":[{"SourceID":38950,"TargetID":38951,"Directional":true},{"SourceID":38976,"TargetID":38977,"Directional":true},{"SourceID":38980,"TargetID":115006,"Directional":true},{"SourceID":124477,"TargetID":114595,"Directional":true}]},{"ID":13838,"SourceStructureID":38949,"TargetStructureID":9376,"Label":"38949-9376 via Conventional from 38983 -> 33657","Type":"Conventional","Directional":true,"Links":[{"SourceID":38983,"TargetID":33657,"Directional":true}]},{"ID":13839,"SourceStructureID":38949,"TargetStructureID":29827,"Label":"38949-29827 via Conventional from 39028 -> 29836","Type":"Conventional","Directional":true,"Links":[{"SourceID":39028,"TargetID":29836,"Directional":true}]},{"ID":13840,"SourceStructureID":38949,"TargetStructureID":90273,"Label":"38949-90273 via Conventional from 39037 -> 90274","Type":"Conventional","Directional":true,"Links":[{"SourceID":39037,"TargetID":90274,"Directional":true}]},{"ID":13841,"SourceStructureID":39168,"TargetStructureID":516,"Label":"39168-516 via Conventional from 39169 -> 6383","Type":"Conventional","Directional":true,"Links":[{"SourceID":39169,"TargetID":6383,"Directional":true}]},{"ID":13842,"SourceStructureID":39192,"TargetStructureID":516,"Label":"39192-516 via Conventional from 39194 -> 39193","Type":"Conventional","Directional":true,"Links":[{"SourceID":39194,"TargetID":39193,"Directional":true}]},{"ID":13843,"SourceStructureID":39196,"TargetStructureID":516,"Label":"39196-516 via Conventional from 39197 -> 39195","Type":"Conventional","Directional":true,"Links":[{"SourceID":39197,"TargetID":39195,"Directional":true}]},{"ID":13844,"SourceStructureID":39201,"TargetStructureID":516,"Label":"39201-516 via Conventional from 39202 -> 6493, 39204 -> 39205, 39206 -> 39207","Type":"Conventional","Directional":true,"Links":[{"SourceID":39202,"TargetID":6493,"Directional":true},{"SourceID":39204,"TargetID":39205,"Directional":true},{"SourceID":39206,"TargetID":39207,"Directional":true}]},{"ID":13845,"SourceStructureID":39208,"TargetStructureID":171,"Label":"39208-171 via Conventional from 39219 -> 39220","Type":"Conventional","Directional":true,"Links":[{"SourceID":39219,"TargetID":39220,"Directional":true}]},{"ID":13846,"SourceStructureID":39208,"TargetStructureID":516,"Label":"39208-516 via Conventional from 39209 -> 39210, 39215 -> 3742","Type":"Conventional","Directional":true,"Links":[{"SourceID":39209,"TargetID":39210,"Directional":true},{"SourceID":39215,"TargetID":3742,"Directional":true}]},{"ID":13847,"SourceStructureID":39216,"TargetStructureID":516,"Label":"39216-516 via Conventional from 39217 -> 39218","Type":"Conventional","Directional":true,"Links":[{"SourceID":39217,"TargetID":39218,"Directional":true}]},{"ID":13848,"SourceStructureID":39226,"TargetStructureID":516,"Label":"39226-516 via Conventional from 39227 -> 39229","Type":"Conventional","Directional":true,"Links":[{"SourceID":39227,"TargetID":39229,"Directional":true}]},{"ID":13849,"SourceStructureID":39239,"TargetStructureID":3679,"Label":"39239-3679 via Conventional from 39242 -> 39243","Type":"Conventional","Directional":true,"Links":[{"SourceID":39242,"TargetID":39243,"Directional":true}]},{"ID":13850,"SourceStructureID":39239,"TargetStructureID":32046,"Label":"39239-32046 via Conventional from 39240 -> 39241","Type":"Conventional","Directional":true,"Links":[{"SourceID":39240,"TargetID":39241,"Directional":true}]},{"ID":13851,"SourceStructureID":39244,"TargetStructureID":516,"Label":"39244-516 via Conventional from 39245 -> 39246","Type":"Conventional","Directional":true,"Links":[{"SourceID":39245,"TargetID":39246,"Directional":true}]},{"ID":13852,"SourceStructureID":39244,"TargetStructureID":517,"Label":"39244-517 via Conventional from 39248 -> 39249","Type":"Conventional","Directional":true,"Links":[{"SourceID":39248,"TargetID":39249,"Directional":true}]},{"ID":13853,"SourceStructureID":39244,"TargetStructureID":10931,"Label":"39244-10931 via Conventional from 39250 -> 39251, 89590 -> 89591","Type":"Conventional","Directional":true,"Links":[{"SourceID":39250,"TargetID":39251,"Directional":true},{"SourceID":89590,"TargetID":89591,"Directional":true}]},{"ID":13854,"SourceStructureID":39252,"TargetStructureID":516,"Label":"39252-516 via Conventional from 39253 -> 39254","Type":"Conventional","Directional":true,"Links":[{"SourceID":39253,"TargetID":39254,"Directional":true}]},{"ID":13855,"SourceStructureID":39252,"TargetStructureID":517,"Label":"39252-517 via Conventional from 39255 -> 1576","Type":"Conventional","Directional":true,"Links":[{"SourceID":39255,"TargetID":1576,"Directional":true}]},{"ID":13856,"SourceStructureID":39285,"TargetStructureID":516,"Label":"39285-516 via Conventional from 39288 -> 39291","Type":"Conventional","Directional":true,"Links":[{"SourceID":39288,"TargetID":39291,"Directional":true}]},{"ID":13857,"SourceStructureID":39299,"TargetStructureID":9260,"Label":"39299-9260 via Conventional from 39300 -> 39298","Type":"Conventional","Directional":true,"Links":[{"SourceID":39300,"TargetID":39298,"Directional":true}]},{"ID":13858,"SourceStructureID":39299,"TargetStructureID":21299,"Label":"39299-21299 via Conventional from 39301 -> 39304","Type":"Conventional","Directional":true,"Links":[{"SourceID":39301,"TargetID":39304,"Directional":true}]},{"ID":13859,"SourceStructureID":39299,"TargetStructureID":24401,"Label":"39299-24401 via Conventional from 39309 -> 48069","Type":"Conventional","Directional":true,"Links":[{"SourceID":39309,"TargetID":48069,"Directional":true}]},{"ID":13860,"SourceStructureID":39319,"TargetStructureID":166,"Label":"39319-166 via Conventional from 39321 -> 59979","Type":"Conventional","Directional":true,"Links":[{"SourceID":39321,"TargetID":59979,"Directional":true}]},{"ID":13861,"SourceStructureID":39319,"TargetStructureID":516,"Label":"39319-516 via Conventional from 39320 -> 6402","Type":"Conventional","Directional":true,"Links":[{"SourceID":39320,"TargetID":6402,"Directional":true}]},{"ID":13862,"SourceStructureID":39324,"TargetStructureID":516,"Label":"39324-516 via Conventional from 39325 -> 39289, 39326 -> 39327","Type":"Conventional","Directional":true,"Links":[{"SourceID":39325,"TargetID":39289,"Directional":true},{"SourceID":39326,"TargetID":39327,"Directional":true}]},{"ID":13863,"SourceStructureID":39331,"TargetStructureID":516,"Label":"39331-516 via Conventional from 39332 -> 18400","Type":"Conventional","Directional":true,"Links":[{"SourceID":39332,"TargetID":18400,"Directional":true}]},{"ID":13864,"SourceStructureID":39342,"TargetStructureID":516,"Label":"39342-516 via Conventional from 39343 -> 39344, 39588 -> 39589","Type":"Conventional","Directional":true,"Links":[{"SourceID":39343,"TargetID":39344,"Directional":true},{"SourceID":39588,"TargetID":39589,"Directional":true}]},{"ID":13865,"SourceStructureID":39345,"TargetStructureID":166,"Label":"39345-166 via Conventional from 39346 -> 4462, 39352 -> 39353, 66719 -> 66720","Type":"Conventional","Directional":true,"Links":[{"SourceID":39346,"TargetID":4462,"Directional":true},{"SourceID":39352,"TargetID":39353,"Directional":true},{"SourceID":66719,"TargetID":66720,"Directional":true}]},{"ID":13866,"SourceStructureID":39516,"TargetStructureID":516,"Label":"39516-516 via Conventional from 39517 -> 6495, 39518 -> 6496","Type":"Conventional","Directional":true,"Links":[{"SourceID":39517,"TargetID":6495,"Directional":true},{"SourceID":39518,"TargetID":6496,"Directional":true}]},{"ID":13867,"SourceStructureID":39520,"TargetStructureID":516,"Label":"39520-516 via Conventional from 39522 -> 39521","Type":"Conventional","Directional":true,"Links":[{"SourceID":39522,"TargetID":39521,"Directional":true}]},{"ID":13868,"SourceStructureID":39523,"TargetStructureID":516,"Label":"39523-516 via Conventional from 39524 -> 39525","Type":"Conventional","Directional":true,"Links":[{"SourceID":39524,"TargetID":39525,"Directional":true}]},{"ID":13869,"SourceStructureID":39528,"TargetStructureID":10625,"Label":"39528-10625 via Conventional from 39529 -> 16238","Type":"Conventional","Directional":true,"Links":[{"SourceID":39529,"TargetID":16238,"Directional":true}]},{"ID":13870,"SourceStructureID":39530,"TargetStructureID":471,"Label":"39530-471 via Conventional from 83493 -> 16287, 83497 -> 16289, 83498 -> 16288, 83501 -> 16290","Type":"Conventional","Directional":true,"Links":[{"SourceID":83493,"TargetID":16287,"Directional":true},{"SourceID":83497,"TargetID":16289,"Directional":true},{"SourceID":83498,"TargetID":16288,"Directional":true},{"SourceID":83501,"TargetID":16290,"Directional":true}]},{"ID":13871,"SourceStructureID":39530,"TargetStructureID":3679,"Label":"39530-3679 via Conventional from 39556 -> 39549","Type":"Conventional","Directional":true,"Links":[{"SourceID":39556,"TargetID":39549,"Directional":true}]},{"ID":13872,"SourceStructureID":39530,"TargetStructureID":5017,"Label":"39530-5017 via Conventional from 39552 -> 39542","Type":"Conventional","Directional":true,"Links":[{"SourceID":39552,"TargetID":39542,"Directional":true}]},{"ID":13873,"SourceStructureID":39530,"TargetStructureID":10625,"Label":"39530-10625 via Conventional from 39531 -> 39532, 39533 -> 39534, 39535 -> 16237, 39536 -> 39537, 39538 -> 39539","Type":"Conventional","Directional":true,"Links":[{"SourceID":39531,"TargetID":39532,"Directional":true},{"SourceID":39533,"TargetID":39534,"Directional":true},{"SourceID":39535,"TargetID":16237,"Directional":true},{"SourceID":39536,"TargetID":39537,"Directional":true},{"SourceID":39538,"TargetID":39539,"Directional":true}]},{"ID":13874,"SourceStructureID":39560,"TargetStructureID":516,"Label":"39560-516 via Conventional from 39561 -> 39562, 39563 -> 39564, 39567 -> 39568, 39569 -> 39570, 39655 -> 39657, 39656 -> 39658","Type":"Conventional","Directional":true,"Links":[{"SourceID":39561,"TargetID":39562,"Directional":true},{"SourceID":39563,"TargetID":39564,"Directional":true},{"SourceID":39567,"TargetID":39568,"Directional":true},{"SourceID":39569,"TargetID":39570,"Directional":true},{"SourceID":39655,"TargetID":39657,"Directional":true},{"SourceID":39656,"TargetID":39658,"Directional":true}]},{"ID":13875,"SourceStructureID":39575,"TargetStructureID":516,"Label":"39575-516 via Conventional from 39576 -> 39572, 39577 -> 39574","Type":"Conventional","Directional":true,"Links":[{"SourceID":39576,"TargetID":39572,"Directional":true},{"SourceID":39577,"TargetID":39574,"Directional":true}]},{"ID":13876,"SourceStructureID":39581,"TargetStructureID":6857,"Label":"39581-6857 via Conventional from 39582 -> 7496, 39583 -> 7495, 39584 -> 7497, 39586 -> 7499, 39587 -> 7498","Type":"Conventional","Directional":true,"Links":[{"SourceID":39582,"TargetID":7496,"Directional":true},{"SourceID":39583,"TargetID":7495,"Directional":true},{"SourceID":39584,"TargetID":7497,"Directional":true},{"SourceID":39586,"TargetID":7499,"Directional":true},{"SourceID":39587,"TargetID":7498,"Directional":true}]},{"ID":13877,"SourceStructureID":39590,"TargetStructureID":516,"Label":"39590-516 via Conventional from 39591 -> 6390, 39592 -> 6388, 39592 -> 6389, 39594 -> 39595","Type":"Conventional","Directional":true,"Links":[{"SourceID":39591,"TargetID":6390,"Directional":true},{"SourceID":39592,"TargetID":6388,"Directional":true},{"SourceID":39592,"TargetID":6389,"Directional":true},{"SourceID":39594,"TargetID":39595,"Directional":true}]},{"ID":13878,"SourceStructureID":39596,"TargetStructureID":516,"Label":"39596-516 via Conventional from 39597 -> 6387","Type":"Conventional","Directional":true,"Links":[{"SourceID":39597,"TargetID":6387,"Directional":true}]},{"ID":13879,"SourceStructureID":39602,"TargetStructureID":516,"Label":"39602-516 via Conventional from 39603 -> 39601","Type":"Conventional","Directional":true,"Links":[{"SourceID":39603,"TargetID":39601,"Directional":true}]},{"ID":13880,"SourceStructureID":39602,"TargetStructureID":10625,"Label":"39602-10625 via Conventional from 51392 -> 51391","Type":"Conventional","Directional":true,"Links":[{"SourceID":51392,"TargetID":51391,"Directional":true}]},{"ID":13881,"SourceStructureID":39610,"TargetStructureID":166,"Label":"39610-166 via Conventional from 121986 -> 5799","Type":"Conventional","Directional":true,"Links":[{"SourceID":121986,"TargetID":5799,"Directional":true}]},{"ID":13882,"SourceStructureID":39610,"TargetStructureID":516,"Label":"39610-516 via Conventional from 39647 -> 39648","Type":"Conventional","Directional":true,"Links":[{"SourceID":39647,"TargetID":39648,"Directional":true}]},{"ID":13883,"SourceStructureID":39615,"TargetStructureID":180,"Label":"39615-180 via Conventional from 66533 -> 66534","Type":"Conventional","Directional":true,"Links":[{"SourceID":66533,"TargetID":66534,"Directional":true}]},{"ID":13884,"SourceStructureID":39615,"TargetStructureID":516,"Label":"39615-516 via Conventional from 45650 -> 39614","Type":"Conventional","Directional":true,"Links":[{"SourceID":45650,"TargetID":39614,"Directional":true}]},{"ID":13885,"SourceStructureID":39615,"TargetStructureID":10931,"Label":"39615-10931 via Conventional from 39643 -> 39629","Type":"Conventional","Directional":true,"Links":[{"SourceID":39643,"TargetID":39629,"Directional":true}]},{"ID":13886,"SourceStructureID":39615,"TargetStructureID":71517,"Label":"39615-71517 via Conventional from 132951 -> 132952","Type":"Conventional","Directional":true,"Links":[{"SourceID":132951,"TargetID":132952,"Directional":true}]},{"ID":13887,"SourceStructureID":39649,"TargetStructureID":516,"Label":"39649-516 via Conventional from 39650 -> 39651","Type":"Conventional","Directional":true,"Links":[{"SourceID":39650,"TargetID":39651,"Directional":true}]},{"ID":13888,"SourceStructureID":39677,"TargetStructureID":516,"Label":"39677-516 via Conventional from 39678 -> 4549","Type":"Conventional","Directional":true,"Links":[{"SourceID":39678,"TargetID":4549,"Directional":true}]},{"ID":13889,"SourceStructureID":39677,"TargetStructureID":31024,"Label":"39677-31024 via Conventional from 39679 -> 31068","Type":"Conventional","Directional":true,"Links":[{"SourceID":39679,"TargetID":31068,"Directional":true}]},{"ID":13890,"SourceStructureID":39688,"TargetStructureID":516,"Label":"39688-516 via Conventional from 39689 -> 39690","Type":"Conventional","Directional":true,"Links":[{"SourceID":39689,"TargetID":39690,"Directional":true}]},{"ID":13891,"SourceStructureID":39688,"TargetStructureID":10625,"Label":"39688-10625 via Conventional from 39693 -> 39694","Type":"Conventional","Directional":true,"Links":[{"SourceID":39693,"TargetID":39694,"Directional":true}]},{"ID":13892,"SourceStructureID":39696,"TargetStructureID":142,"Label":"39696-142 via Conventional from 87725 -> 92839","Type":"Conventional","Directional":true,"Links":[{"SourceID":87725,"TargetID":92839,"Directional":true}]},{"ID":13893,"SourceStructureID":39696,"TargetStructureID":171,"Label":"39696-171 via Conventional from 39700 -> 22910","Type":"Conventional","Directional":true,"Links":[{"SourceID":39700,"TargetID":22910,"Directional":true}]},{"ID":13894,"SourceStructureID":39696,"TargetStructureID":6117,"Label":"39696-6117 via Conventional from 86321 -> 86322","Type":"Conventional","Directional":true,"Links":[{"SourceID":86321,"TargetID":86322,"Directional":true}]},{"ID":13895,"SourceStructureID":39696,"TargetStructureID":10625,"Label":"39696-10625 via Conventional from 39697 -> 39695","Type":"Conventional","Directional":true,"Links":[{"SourceID":39697,"TargetID":39695,"Directional":true}]},{"ID":13896,"SourceStructureID":39706,"TargetStructureID":171,"Label":"39706-171 via Conventional from 39708 -> 39705","Type":"Conventional","Directional":true,"Links":[{"SourceID":39708,"TargetID":39705,"Directional":true}]},{"ID":13897,"SourceStructureID":39706,"TargetStructureID":39696,"Label":"39706-39696 via Conventional from 39707 -> 39703","Type":"Conventional","Directional":true,"Links":[{"SourceID":39707,"TargetID":39703,"Directional":true}]},{"ID":13898,"SourceStructureID":39717,"TargetStructureID":142,"Label":"39717-142 via Conventional from 39721 -> 119586","Type":"Conventional","Directional":true,"Links":[{"SourceID":39721,"TargetID":119586,"Directional":true}]},{"ID":13899,"SourceStructureID":39717,"TargetStructureID":5437,"Label":"39717-5437 via Conventional from 39720 -> 88063","Type":"Conventional","Directional":true,"Links":[{"SourceID":39720,"TargetID":88063,"Directional":true}]},{"ID":13900,"SourceStructureID":39717,"TargetStructureID":10625,"Label":"39717-10625 via Conventional from 39718 -> 39716","Type":"Conventional","Directional":true,"Links":[{"SourceID":39718,"TargetID":39716,"Directional":true}]},{"ID":13901,"SourceStructureID":39724,"TargetStructureID":10625,"Label":"39724-10625 via Conventional from 39725 -> 39726, 39729 -> 26932, 39731 -> 39732, 39733 -> 39734, 39735 -> 39736, 88826 -> 88828","Type":"Conventional","Directional":true,"Links":[{"SourceID":39725,"TargetID":39726,"Directional":true},{"SourceID":39729,"TargetID":26932,"Directional":true},{"SourceID":39731,"TargetID":39732,"Directional":true},{"SourceID":39733,"TargetID":39734,"Directional":true},{"SourceID":39735,"TargetID":39736,"Directional":true},{"SourceID":88826,"TargetID":88828,"Directional":true}]},{"ID":13902,"SourceStructureID":39737,"TargetStructureID":10625,"Label":"39737-10625 via Conventional from 39738 -> 39739, 39740 -> 88829, 39742 -> 39743","Type":"Conventional","Directional":true,"Links":[{"SourceID":39738,"TargetID":39739,"Directional":true},{"SourceID":39740,"TargetID":88829,"Directional":true},{"SourceID":39742,"TargetID":39743,"Directional":true}]},{"ID":13903,"SourceStructureID":39745,"TargetStructureID":10625,"Label":"39745-10625 via Conventional from 39746 -> 26936","Type":"Conventional","Directional":true,"Links":[{"SourceID":39746,"TargetID":26936,"Directional":true}]},{"ID":13904,"SourceStructureID":39748,"TargetStructureID":10625,"Label":"39748-10625 via Conventional from 39750 -> 39751, 39757 -> 39758","Type":"Conventional","Directional":true,"Links":[{"SourceID":39750,"TargetID":39751,"Directional":true},{"SourceID":39757,"TargetID":39758,"Directional":true}]},{"ID":13905,"SourceStructureID":39752,"TargetStructureID":10625,"Label":"39752-10625 via Conventional from 39753 -> 39754, 39755 -> 39756","Type":"Conventional","Directional":true,"Links":[{"SourceID":39753,"TargetID":39754,"Directional":true},{"SourceID":39755,"TargetID":39756,"Directional":true}]},{"ID":13906,"SourceStructureID":39759,"TargetStructureID":10625,"Label":"39759-10625 via Conventional from 39760 -> 39761, 39763 -> 16340","Type":"Conventional","Directional":true,"Links":[{"SourceID":39760,"TargetID":39761,"Directional":true},{"SourceID":39763,"TargetID":16340,"Directional":true}]},{"ID":13907,"SourceStructureID":39764,"TargetStructureID":10625,"Label":"39764-10625 via Conventional from 39765 -> 16233, 39766 -> 16234, 39768 -> 39769","Type":"Conventional","Directional":true,"Links":[{"SourceID":39765,"TargetID":16233,"Directional":true},{"SourceID":39766,"TargetID":16234,"Directional":true},{"SourceID":39768,"TargetID":39769,"Directional":true}]},{"ID":13908,"SourceStructureID":39764,"TargetStructureID":14615,"Label":"39764-14615 via Conventional from 39771 -> 39772","Type":"Conventional","Directional":true,"Links":[{"SourceID":39771,"TargetID":39772,"Directional":true}]},{"ID":13909,"SourceStructureID":39774,"TargetStructureID":180,"Label":"39774-180 via Conventional from 51339 -> 14157","Type":"Conventional","Directional":true,"Links":[{"SourceID":51339,"TargetID":14157,"Directional":true}]},{"ID":13910,"SourceStructureID":39774,"TargetStructureID":516,"Label":"39774-516 via Conventional from 39777 -> 39778","Type":"Conventional","Directional":true,"Links":[{"SourceID":39777,"TargetID":39778,"Directional":true}]},{"ID":13911,"SourceStructureID":39774,"TargetStructureID":10625,"Label":"39774-10625 via Conventional from 39775 -> 39776","Type":"Conventional","Directional":true,"Links":[{"SourceID":39775,"TargetID":39776,"Directional":true}]},{"ID":13912,"SourceStructureID":39784,"TargetStructureID":10625,"Label":"39784-10625 via Conventional from 39785 -> 39783","Type":"Conventional","Directional":true,"Links":[{"SourceID":39785,"TargetID":39783,"Directional":true}]},{"ID":13913,"SourceStructureID":39787,"TargetStructureID":10625,"Label":"39787-10625 via Conventional from 87735 -> 26931","Type":"Conventional","Directional":true,"Links":[{"SourceID":87735,"TargetID":26931,"Directional":true}]},{"ID":13914,"SourceStructureID":39787,"TargetStructureID":39787,"Label":"39787-39787 via Conventional from 87733 -> 87734","Type":"Conventional","Directional":true,"Links":[{"SourceID":87733,"TargetID":87734,"Directional":true}]},{"ID":13915,"SourceStructureID":39790,"TargetStructureID":10625,"Label":"39790-10625 via Conventional from 39791 -> 39792","Type":"Conventional","Directional":true,"Links":[{"SourceID":39791,"TargetID":39792,"Directional":true}]},{"ID":13916,"SourceStructureID":39794,"TargetStructureID":10625,"Label":"39794-10625 via Conventional from 39796 -> 39797","Type":"Conventional","Directional":true,"Links":[{"SourceID":39796,"TargetID":39797,"Directional":true}]},{"ID":13917,"SourceStructureID":39798,"TargetStructureID":10625,"Label":"39798-10625 via Conventional from 39799 -> 39800","Type":"Conventional","Directional":true,"Links":[{"SourceID":39799,"TargetID":39800,"Directional":true}]},{"ID":13918,"SourceStructureID":39802,"TargetStructureID":10625,"Label":"39802-10625 via Conventional from 39803 -> 39804","Type":"Conventional","Directional":true,"Links":[{"SourceID":39803,"TargetID":39804,"Directional":true}]},{"ID":13919,"SourceStructureID":39807,"TargetStructureID":10625,"Label":"39807-10625 via Conventional from 39808 -> 16751, 39809 -> 16752","Type":"Conventional","Directional":true,"Links":[{"SourceID":39808,"TargetID":16751,"Directional":true},{"SourceID":39809,"TargetID":16752,"Directional":true}]},{"ID":13920,"SourceStructureID":39811,"TargetStructureID":10625,"Label":"39811-10625 via Conventional from 39812 -> 39813, 39814 -> 26911","Type":"Conventional","Directional":true,"Links":[{"SourceID":39812,"TargetID":39813,"Directional":true},{"SourceID":39814,"TargetID":26911,"Directional":true}]},{"ID":13921,"SourceStructureID":39816,"TargetStructureID":10625,"Label":"39816-10625 via Conventional from 39820 -> 39821, 88830 -> 88831","Type":"Conventional","Directional":true,"Links":[{"SourceID":39820,"TargetID":39821,"Directional":true},{"SourceID":88830,"TargetID":88831,"Directional":true}]},{"ID":13922,"SourceStructureID":39822,"TargetStructureID":10625,"Label":"39822-10625 via Conventional from 39823 -> 26904","Type":"Conventional","Directional":true,"Links":[{"SourceID":39823,"TargetID":26904,"Directional":true}]},{"ID":13923,"SourceStructureID":39824,"TargetStructureID":10625,"Label":"39824-10625 via Conventional from 39825 -> 26910, 39829 -> 16753","Type":"Conventional","Directional":true,"Links":[{"SourceID":39825,"TargetID":26910,"Directional":true},{"SourceID":39829,"TargetID":16753,"Directional":true}]},{"ID":13924,"SourceStructureID":39830,"TargetStructureID":10625,"Label":"39830-10625 via Conventional from 39832 -> 26918, 39833 -> 26919, 39834 -> 26921","Type":"Conventional","Directional":true,"Links":[{"SourceID":39832,"TargetID":26918,"Directional":true},{"SourceID":39833,"TargetID":26919,"Directional":true},{"SourceID":39834,"TargetID":26921,"Directional":true}]},{"ID":13925,"SourceStructureID":39835,"TargetStructureID":10625,"Label":"39835-10625 via Conventional from 39836 -> 26920","Type":"Conventional","Directional":true,"Links":[{"SourceID":39836,"TargetID":26920,"Directional":true}]},{"ID":13926,"SourceStructureID":39838,"TargetStructureID":10625,"Label":"39838-10625 via Conventional from 39839 -> 26922","Type":"Conventional","Directional":true,"Links":[{"SourceID":39839,"TargetID":26922,"Directional":true}]},{"ID":13927,"SourceStructureID":39846,"TargetStructureID":519,"Label":"39846-519 via Conventional from 39847 -> 9306","Type":"Conventional","Directional":true,"Links":[{"SourceID":39847,"TargetID":9306,"Directional":true}]},{"ID":13928,"SourceStructureID":39846,"TargetStructureID":5575,"Label":"39846-5575 via Conventional from 39849 -> 23084","Type":"Conventional","Directional":true,"Links":[{"SourceID":39849,"TargetID":23084,"Directional":true}]},{"ID":13929,"SourceStructureID":39851,"TargetStructureID":408,"Label":"39851-408 via Conventional from 39860 -> 39861","Type":"Conventional","Directional":true,"Links":[{"SourceID":39860,"TargetID":39861,"Directional":true}]},{"ID":13930,"SourceStructureID":39851,"TargetStructureID":519,"Label":"39851-519 via Conventional from 39852 -> 39853","Type":"Conventional","Directional":true,"Links":[{"SourceID":39852,"TargetID":39853,"Directional":true}]},{"ID":13931,"SourceStructureID":39851,"TargetStructureID":15100,"Label":"39851-15100 via Conventional from 39858 -> 33786","Type":"Conventional","Directional":true,"Links":[{"SourceID":39858,"TargetID":33786,"Directional":true}]},{"ID":13932,"SourceStructureID":39851,"TargetStructureID":26079,"Label":"39851-26079 via Conventional from 39856 -> 39857","Type":"Conventional","Directional":true,"Links":[{"SourceID":39856,"TargetID":39857,"Directional":true}]},{"ID":13933,"SourceStructureID":39862,"TargetStructureID":6912,"Label":"39862-6912 via Ribbon Synapse from 51279 -> 51132, 51283 -> 51284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51279,"TargetID":51132,"Directional":true},{"SourceID":51283,"TargetID":51284,"Directional":true}]},{"ID":13934,"SourceStructureID":39862,"TargetStructureID":39851,"Label":"39862-39851 via Ribbon Synapse from 39866 -> 39859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39866,"TargetID":39859,"Directional":true}]},{"ID":13935,"SourceStructureID":39862,"TargetStructureID":39957,"Label":"39862-39957 via Ribbon Synapse from 52302 -> 58545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52302,"TargetID":58545,"Directional":true}]},{"ID":13936,"SourceStructureID":39862,"TargetStructureID":68737,"Label":"39862-68737 via Ribbon Synapse from 52330 -> 68741","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52330,"TargetID":68741,"Directional":true}]},{"ID":13937,"SourceStructureID":39862,"TargetStructureID":87172,"Label":"39862-87172 via Ribbon Synapse from 51176 -> 87173","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51176,"TargetID":87173,"Directional":true}]},{"ID":13938,"SourceStructureID":39867,"TargetStructureID":519,"Label":"39867-519 via Conventional from 39868 -> 39869","Type":"Conventional","Directional":true,"Links":[{"SourceID":39868,"TargetID":39869,"Directional":true}]},{"ID":13939,"SourceStructureID":39872,"TargetStructureID":485,"Label":"39872-485 via Conventional from 39874 -> 49903","Type":"Conventional","Directional":true,"Links":[{"SourceID":39874,"TargetID":49903,"Directional":true}]},{"ID":13940,"SourceStructureID":39872,"TargetStructureID":519,"Label":"39872-519 via Conventional from 39873 -> 16516","Type":"Conventional","Directional":true,"Links":[{"SourceID":39873,"TargetID":16516,"Directional":true}]},{"ID":13941,"SourceStructureID":39876,"TargetStructureID":485,"Label":"39876-485 via Conventional from 39879 -> 39880","Type":"Conventional","Directional":true,"Links":[{"SourceID":39879,"TargetID":39880,"Directional":true}]},{"ID":13942,"SourceStructureID":39876,"TargetStructureID":519,"Label":"39876-519 via Conventional from 39877 -> 39878","Type":"Conventional","Directional":true,"Links":[{"SourceID":39877,"TargetID":39878,"Directional":true}]},{"ID":13943,"SourceStructureID":39876,"TargetStructureID":27288,"Label":"39876-27288 via Conventional from 39881 -> 27297","Type":"Conventional","Directional":true,"Links":[{"SourceID":39881,"TargetID":27297,"Directional":true}]},{"ID":13944,"SourceStructureID":39883,"TargetStructureID":519,"Label":"39883-519 via Conventional from 39884 -> 39885","Type":"Conventional","Directional":true,"Links":[{"SourceID":39884,"TargetID":39885,"Directional":true}]},{"ID":13945,"SourceStructureID":39896,"TargetStructureID":5729,"Label":"39896-5729 via Conventional from 110888 -> 110889, 110943 -> 37856","Type":"Conventional","Directional":true,"Links":[{"SourceID":110888,"TargetID":110889,"Directional":true},{"SourceID":110943,"TargetID":37856,"Directional":true}]},{"ID":13946,"SourceStructureID":39900,"TargetStructureID":606,"Label":"39900-606 via Conventional from 52169 -> 39898","Type":"Conventional","Directional":true,"Links":[{"SourceID":52169,"TargetID":39898,"Directional":true}]},{"ID":13947,"SourceStructureID":39900,"TargetStructureID":7594,"Label":"39900-7594 via Conventional from 54141 -> 54140","Type":"Conventional","Directional":true,"Links":[{"SourceID":54141,"TargetID":54140,"Directional":true}]},{"ID":13948,"SourceStructureID":39909,"TargetStructureID":606,"Label":"39909-606 via Conventional from 39910 -> 39908, 54162 -> 54163","Type":"Conventional","Directional":true,"Links":[{"SourceID":39910,"TargetID":39908,"Directional":true},{"SourceID":54162,"TargetID":54163,"Directional":true}]},{"ID":13949,"SourceStructureID":39915,"TargetStructureID":606,"Label":"39915-606 via Conventional from 44194 -> 39912","Type":"Conventional","Directional":true,"Links":[{"SourceID":44194,"TargetID":39912,"Directional":true}]},{"ID":13950,"SourceStructureID":39917,"TargetStructureID":606,"Label":"39917-606 via Conventional from 39919 -> 39916","Type":"Conventional","Directional":true,"Links":[{"SourceID":39919,"TargetID":39916,"Directional":true}]},{"ID":13951,"SourceStructureID":39922,"TargetStructureID":606,"Label":"39922-606 via Conventional from 51622 -> 51623","Type":"Conventional","Directional":true,"Links":[{"SourceID":51622,"TargetID":51623,"Directional":true}]},{"ID":13952,"SourceStructureID":39931,"TargetStructureID":606,"Label":"39931-606 via Conventional from 44195 -> 39930, 52047 -> 52046","Type":"Conventional","Directional":true,"Links":[{"SourceID":44195,"TargetID":39930,"Directional":true},{"SourceID":52047,"TargetID":52046,"Directional":true}]},{"ID":13953,"SourceStructureID":39939,"TargetStructureID":606,"Label":"39939-606 via Adherens from 52583 -> 52584","Type":"Adherens","Directional":true,"Links":[{"SourceID":52583,"TargetID":52584,"Directional":true}]},{"ID":13954,"SourceStructureID":39939,"TargetStructureID":606,"Label":"39939-606 via Conventional from 44197 -> 39937","Type":"Conventional","Directional":true,"Links":[{"SourceID":44197,"TargetID":39937,"Directional":true}]},{"ID":13955,"SourceStructureID":39941,"TargetStructureID":606,"Label":"39941-606 via Conventional from 52621 -> 39940","Type":"Conventional","Directional":true,"Links":[{"SourceID":52621,"TargetID":39940,"Directional":true}]},{"ID":13956,"SourceStructureID":39957,"TargetStructureID":606,"Label":"39957-606 via Conventional from 43116 -> 10711, 58552 -> 39960, 58555 -> 44285, 58558 -> 49604","Type":"Conventional","Directional":true,"Links":[{"SourceID":43116,"TargetID":10711,"Directional":true},{"SourceID":58552,"TargetID":39960,"Directional":true},{"SourceID":58555,"TargetID":44285,"Directional":true},{"SourceID":58558,"TargetID":49604,"Directional":true}]},{"ID":13957,"SourceStructureID":39957,"TargetStructureID":6117,"Label":"39957-6117 via Conventional from 58437 -> 6966, 58553 -> 20564, 86429 -> 86430, 116719 -> 30909","Type":"Conventional","Directional":true,"Links":[{"SourceID":58437,"TargetID":6966,"Directional":true},{"SourceID":58553,"TargetID":20564,"Directional":true},{"SourceID":86429,"TargetID":86430,"Directional":true},{"SourceID":116719,"TargetID":30909,"Directional":true}]},{"ID":13958,"SourceStructureID":39957,"TargetStructureID":7594,"Label":"39957-7594 via Conventional from 58557 -> 7627","Type":"Conventional","Directional":true,"Links":[{"SourceID":58557,"TargetID":7627,"Directional":true}]},{"ID":13959,"SourceStructureID":39957,"TargetStructureID":32258,"Label":"39957-32258 via Conventional from 58459 -> 58458","Type":"Conventional","Directional":true,"Links":[{"SourceID":58459,"TargetID":58458,"Directional":true}]},{"ID":13960,"SourceStructureID":39957,"TargetStructureID":39862,"Label":"39957-39862 via Conventional from 58547 -> 52307","Type":"Conventional","Directional":true,"Links":[{"SourceID":58547,"TargetID":52307,"Directional":true}]},{"ID":13961,"SourceStructureID":39963,"TargetStructureID":606,"Label":"39963-606 via Conventional from 52171 -> 39961","Type":"Conventional","Directional":true,"Links":[{"SourceID":52171,"TargetID":39961,"Directional":true}]},{"ID":13962,"SourceStructureID":39963,"TargetStructureID":6117,"Label":"39963-6117 via Conventional from 86264 -> 86265","Type":"Conventional","Directional":true,"Links":[{"SourceID":86264,"TargetID":86265,"Directional":true}]},{"ID":13963,"SourceStructureID":39982,"TargetStructureID":5520,"Label":"39982-5520 via Conventional from 39985 -> 40134","Type":"Conventional","Directional":true,"Links":[{"SourceID":39985,"TargetID":40134,"Directional":true}]},{"ID":13964,"SourceStructureID":39982,"TargetStructureID":5923,"Label":"39982-5923 via Conventional from 39983 -> 39984","Type":"Conventional","Directional":true,"Links":[{"SourceID":39983,"TargetID":39984,"Directional":true}]},{"ID":13965,"SourceStructureID":39998,"TargetStructureID":342,"Label":"39998-342 via Conventional from 39999 -> 31715","Type":"Conventional","Directional":true,"Links":[{"SourceID":39999,"TargetID":31715,"Directional":true}]},{"ID":13966,"SourceStructureID":40010,"TargetStructureID":60798,"Label":"40010-60798 via Conventional from 40012 -> 60799","Type":"Conventional","Directional":true,"Links":[{"SourceID":40012,"TargetID":60799,"Directional":true}]},{"ID":13967,"SourceStructureID":40018,"TargetStructureID":5517,"Label":"40018-5517 via Conventional from 40019 -> 25104","Type":"Conventional","Directional":true,"Links":[{"SourceID":40019,"TargetID":25104,"Directional":true}]},{"ID":13968,"SourceStructureID":40018,"TargetStructureID":10872,"Label":"40018-10872 via Conventional from 40029 -> 10880","Type":"Conventional","Directional":true,"Links":[{"SourceID":40029,"TargetID":10880,"Directional":true}]},{"ID":13969,"SourceStructureID":40018,"TargetStructureID":20136,"Label":"40018-20136 via Conventional from 110223 -> 110224","Type":"Conventional","Directional":true,"Links":[{"SourceID":110223,"TargetID":110224,"Directional":true}]},{"ID":13970,"SourceStructureID":40033,"TargetStructureID":606,"Label":"40033-606 via Conventional from 44190 -> 51255","Type":"Conventional","Directional":true,"Links":[{"SourceID":44190,"TargetID":51255,"Directional":true}]},{"ID":13971,"SourceStructureID":40035,"TargetStructureID":606,"Label":"40035-606 via Conventional from 52175 -> 39498","Type":"Conventional","Directional":true,"Links":[{"SourceID":52175,"TargetID":39498,"Directional":true}]},{"ID":13972,"SourceStructureID":40037,"TargetStructureID":606,"Label":"40037-606 via Conventional from 52176 -> 10057, 52177 -> 52178","Type":"Conventional","Directional":true,"Links":[{"SourceID":52176,"TargetID":10057,"Directional":true},{"SourceID":52177,"TargetID":52178,"Directional":true}]},{"ID":13973,"SourceStructureID":40039,"TargetStructureID":142,"Label":"40039-142 via Conventional from 82523 -> 49763","Type":"Conventional","Directional":true,"Links":[{"SourceID":82523,"TargetID":49763,"Directional":true}]},{"ID":13974,"SourceStructureID":40039,"TargetStructureID":168,"Label":"40039-168 via Conventional from 82603 -> 82607","Type":"Conventional","Directional":true,"Links":[{"SourceID":82603,"TargetID":82607,"Directional":true}]},{"ID":13975,"SourceStructureID":40039,"TargetStructureID":176,"Label":"40039-176 via Conventional from 82514 -> 5865","Type":"Conventional","Directional":true,"Links":[{"SourceID":82514,"TargetID":5865,"Directional":true}]},{"ID":13976,"SourceStructureID":40039,"TargetStructureID":606,"Label":"40039-606 via Conventional from 44192 -> 39504","Type":"Conventional","Directional":true,"Links":[{"SourceID":44192,"TargetID":39504,"Directional":true}]},{"ID":13977,"SourceStructureID":40039,"TargetStructureID":5530,"Label":"40039-5530 via Adherens from 74967 -> 74968","Type":"Adherens","Directional":true,"Links":[{"SourceID":74967,"TargetID":74968,"Directional":true}]},{"ID":13978,"SourceStructureID":40039,"TargetStructureID":5530,"Label":"40039-5530 via Conventional from 74965 -> 74966, 75790 -> 75791, 80202 -> 42112, 80478 -> 80479, 82381 -> 42130","Type":"Conventional","Directional":true,"Links":[{"SourceID":74965,"TargetID":74966,"Directional":true},{"SourceID":75790,"TargetID":75791,"Directional":true},{"SourceID":80202,"TargetID":42112,"Directional":true},{"SourceID":80478,"TargetID":80479,"Directional":true},{"SourceID":82381,"TargetID":42130,"Directional":true}]},{"ID":13979,"SourceStructureID":40039,"TargetStructureID":6117,"Label":"40039-6117 via Conventional from 82515 -> 30904, 82516 -> 82517, 82518 -> 82519, 82698 -> 82699","Type":"Conventional","Directional":true,"Links":[{"SourceID":82515,"TargetID":30904,"Directional":true},{"SourceID":82516,"TargetID":82517,"Directional":true},{"SourceID":82518,"TargetID":82519,"Directional":true},{"SourceID":82698,"TargetID":82699,"Directional":true}]},{"ID":13980,"SourceStructureID":40039,"TargetStructureID":80210,"Label":"40039-80210 via Conventional from 82544 -> 82545","Type":"Conventional","Directional":true,"Links":[{"SourceID":82544,"TargetID":82545,"Directional":true}]},{"ID":13981,"SourceStructureID":40039,"TargetStructureID":80483,"Label":"40039-80483 via Unknown from 82646 -> 82647","Type":"Unknown","Directional":true,"Links":[{"SourceID":82646,"TargetID":82647,"Directional":true}]},{"ID":13982,"SourceStructureID":40039,"TargetStructureID":80569,"Label":"40039-80569 via Conventional from 82512 -> 82513","Type":"Conventional","Directional":true,"Links":[{"SourceID":82512,"TargetID":82513,"Directional":true}]},{"ID":13983,"SourceStructureID":40039,"TargetStructureID":82541,"Label":"40039-82541 via Conventional from 82538 -> 82542","Type":"Conventional","Directional":true,"Links":[{"SourceID":82538,"TargetID":82542,"Directional":true}]},{"ID":13984,"SourceStructureID":40039,"TargetStructureID":82609,"Label":"40039-82609 via Conventional from 82612 -> 84364","Type":"Conventional","Directional":true,"Links":[{"SourceID":82612,"TargetID":84364,"Directional":true}]},{"ID":13985,"SourceStructureID":40039,"TargetStructureID":82667,"Label":"40039-82667 via Conventional from 82670 -> 82671","Type":"Conventional","Directional":true,"Links":[{"SourceID":82670,"TargetID":82671,"Directional":true}]},{"ID":13986,"SourceStructureID":40039,"TargetStructureID":82690,"Label":"40039-82690 via Conventional from 68797 -> 82691","Type":"Conventional","Directional":true,"Links":[{"SourceID":68797,"TargetID":82691,"Directional":true}]},{"ID":13987,"SourceStructureID":40041,"TargetStructureID":606,"Label":"40041-606 via Conventional from 44193 -> 39505","Type":"Conventional","Directional":true,"Links":[{"SourceID":44193,"TargetID":39505,"Directional":true}]},{"ID":13988,"SourceStructureID":40044,"TargetStructureID":176,"Label":"40044-176 via Conventional from 40047 -> 114816, 40048 -> 82539","Type":"Conventional","Directional":true,"Links":[{"SourceID":40047,"TargetID":114816,"Directional":true},{"SourceID":40048,"TargetID":82539,"Directional":true}]},{"ID":13989,"SourceStructureID":40044,"TargetStructureID":606,"Label":"40044-606 via Conventional from 47784 -> 40042","Type":"Conventional","Directional":true,"Links":[{"SourceID":47784,"TargetID":40042,"Directional":true}]},{"ID":13990,"SourceStructureID":40044,"TargetStructureID":5530,"Label":"40044-5530 via Conventional from 40049 -> 80414","Type":"Conventional","Directional":true,"Links":[{"SourceID":40049,"TargetID":80414,"Directional":true}]},{"ID":13991,"SourceStructureID":40051,"TargetStructureID":606,"Label":"40051-606 via Conventional from 52180 -> 10196","Type":"Conventional","Directional":true,"Links":[{"SourceID":52180,"TargetID":10196,"Directional":true}]},{"ID":13992,"SourceStructureID":40053,"TargetStructureID":606,"Label":"40053-606 via Conventional from 44191 -> 10197","Type":"Conventional","Directional":true,"Links":[{"SourceID":44191,"TargetID":10197,"Directional":true}]},{"ID":13993,"SourceStructureID":40057,"TargetStructureID":606,"Label":"40057-606 via Conventional from 43113 -> 10199","Type":"Conventional","Directional":true,"Links":[{"SourceID":43113,"TargetID":10199,"Directional":true}]},{"ID":13994,"SourceStructureID":40059,"TargetStructureID":606,"Label":"40059-606 via Conventional from 43112 -> 10198","Type":"Conventional","Directional":true,"Links":[{"SourceID":43112,"TargetID":10198,"Directional":true}]},{"ID":13995,"SourceStructureID":40439,"TargetStructureID":170,"Label":"40439-170 via Conventional from 88372 -> 1198","Type":"Conventional","Directional":true,"Links":[{"SourceID":88372,"TargetID":1198,"Directional":true}]},{"ID":13996,"SourceStructureID":40469,"TargetStructureID":92880,"Label":"40469-92880 via Conventional from 92886 -> 92885, 92887 -> 92883","Type":"Conventional","Directional":true,"Links":[{"SourceID":92886,"TargetID":92885,"Directional":true},{"SourceID":92887,"TargetID":92883,"Directional":true}]},{"ID":13997,"SourceStructureID":40598,"TargetStructureID":181,"Label":"40598-181 via Conventional from 40601 -> 40600","Type":"Conventional","Directional":true,"Links":[{"SourceID":40601,"TargetID":40600,"Directional":true}]},{"ID":13998,"SourceStructureID":40602,"TargetStructureID":40604,"Label":"40602-40604 via Conventional from 40611 -> 40610","Type":"Conventional","Directional":true,"Links":[{"SourceID":40611,"TargetID":40610,"Directional":true}]},{"ID":13999,"SourceStructureID":40602,"TargetStructureID":86438,"Label":"40602-86438 via Conventional from 86437 -> 86441","Type":"Conventional","Directional":true,"Links":[{"SourceID":86437,"TargetID":86441,"Directional":true}]},{"ID":14000,"SourceStructureID":40606,"TargetStructureID":40602,"Label":"40606-40602 via Conventional from 40608 -> 40607","Type":"Conventional","Directional":true,"Links":[{"SourceID":40608,"TargetID":40607,"Directional":true}]},{"ID":14001,"SourceStructureID":40612,"TargetStructureID":428,"Label":"40612-428 via Conventional from 40614 -> 40613","Type":"Conventional","Directional":true,"Links":[{"SourceID":40614,"TargetID":40613,"Directional":true}]},{"ID":14002,"SourceStructureID":40616,"TargetStructureID":40619,"Label":"40616-40619 via Ribbon Synapse from 40617 -> 40624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40617,"TargetID":40624,"Directional":true}]},{"ID":14003,"SourceStructureID":40619,"TargetStructureID":40616,"Label":"40619-40616 via Conventional from 40622 -> 40623","Type":"Conventional","Directional":true,"Links":[{"SourceID":40622,"TargetID":40623,"Directional":true}]},{"ID":14004,"SourceStructureID":40625,"TargetStructureID":40626,"Label":"40625-40626 via Conventional from 40628 -> 40627","Type":"Conventional","Directional":true,"Links":[{"SourceID":40628,"TargetID":40627,"Directional":true}]},{"ID":14005,"SourceStructureID":40629,"TargetStructureID":40631,"Label":"40629-40631 via Conventional from 40632 -> 40633","Type":"Conventional","Directional":true,"Links":[{"SourceID":40632,"TargetID":40633,"Directional":true}]},{"ID":14006,"SourceStructureID":40635,"TargetStructureID":40637,"Label":"40635-40637 via Conventional from 40636 -> 40638","Type":"Conventional","Directional":true,"Links":[{"SourceID":40636,"TargetID":40638,"Directional":true}]},{"ID":14007,"SourceStructureID":40640,"TargetStructureID":40639,"Label":"40640-40639 via Conventional from 40641 -> 40642","Type":"Conventional","Directional":true,"Links":[{"SourceID":40641,"TargetID":40642,"Directional":true}]},{"ID":14008,"SourceStructureID":40643,"TargetStructureID":40644,"Label":"40643-40644 via Conventional from 40645 -> 40646","Type":"Conventional","Directional":true,"Links":[{"SourceID":40645,"TargetID":40646,"Directional":true}]},{"ID":14009,"SourceStructureID":40844,"TargetStructureID":6117,"Label":"40844-6117 via Conventional from 40845 -> 10530","Type":"Conventional","Directional":true,"Links":[{"SourceID":40845,"TargetID":10530,"Directional":true}]},{"ID":14010,"SourceStructureID":40851,"TargetStructureID":516,"Label":"40851-516 via Conventional from 40852 -> 40853, 40854 -> 10847, 40855 -> 6573","Type":"Conventional","Directional":true,"Links":[{"SourceID":40852,"TargetID":40853,"Directional":true},{"SourceID":40854,"TargetID":10847,"Directional":true},{"SourceID":40855,"TargetID":6573,"Directional":true}]},{"ID":14011,"SourceStructureID":40856,"TargetStructureID":516,"Label":"40856-516 via Conventional from 40857 -> 6574","Type":"Conventional","Directional":true,"Links":[{"SourceID":40857,"TargetID":6574,"Directional":true}]},{"ID":14012,"SourceStructureID":40858,"TargetStructureID":516,"Label":"40858-516 via Conventional from 40859 -> 40860","Type":"Conventional","Directional":true,"Links":[{"SourceID":40859,"TargetID":40860,"Directional":true}]},{"ID":14013,"SourceStructureID":40858,"TargetStructureID":3257,"Label":"40858-3257 via Conventional from 123170 -> 10861","Type":"Conventional","Directional":true,"Links":[{"SourceID":123170,"TargetID":10861,"Directional":true}]},{"ID":14014,"SourceStructureID":40858,"TargetStructureID":4570,"Label":"40858-4570 via Conventional from 123171 -> 4800","Type":"Conventional","Directional":true,"Links":[{"SourceID":123171,"TargetID":4800,"Directional":true}]},{"ID":14015,"SourceStructureID":40858,"TargetStructureID":6169,"Label":"40858-6169 via Conventional from 40861 -> 40862","Type":"Conventional","Directional":true,"Links":[{"SourceID":40861,"TargetID":40862,"Directional":true}]},{"ID":14016,"SourceStructureID":40880,"TargetStructureID":517,"Label":"40880-517 via Conventional from 40881 -> 40879","Type":"Conventional","Directional":true,"Links":[{"SourceID":40881,"TargetID":40879,"Directional":true}]},{"ID":14017,"SourceStructureID":40884,"TargetStructureID":517,"Label":"40884-517 via Conventional from 40885 -> 40886","Type":"Conventional","Directional":true,"Links":[{"SourceID":40885,"TargetID":40886,"Directional":true}]},{"ID":14018,"SourceStructureID":40896,"TargetStructureID":517,"Label":"40896-517 via Conventional from 40897 -> 14163, 40898 -> 40899","Type":"Conventional","Directional":true,"Links":[{"SourceID":40897,"TargetID":14163,"Directional":true},{"SourceID":40898,"TargetID":40899,"Directional":true}]},{"ID":14019,"SourceStructureID":40901,"TargetStructureID":517,"Label":"40901-517 via Conventional from 88838 -> 88839","Type":"Conventional","Directional":true,"Links":[{"SourceID":88838,"TargetID":88839,"Directional":true}]},{"ID":14020,"SourceStructureID":40903,"TargetStructureID":517,"Label":"40903-517 via Conventional from 40904 -> 40905, 40915 -> 10828","Type":"Conventional","Directional":true,"Links":[{"SourceID":40904,"TargetID":40905,"Directional":true},{"SourceID":40915,"TargetID":10828,"Directional":true}]},{"ID":14021,"SourceStructureID":40909,"TargetStructureID":517,"Label":"40909-517 via Conventional from 40910 -> 40908","Type":"Conventional","Directional":true,"Links":[{"SourceID":40910,"TargetID":40908,"Directional":true}]},{"ID":14022,"SourceStructureID":40911,"TargetStructureID":517,"Label":"40911-517 via Conventional from 40912 -> 40913, 40914 -> 10827, 40916 -> 22541","Type":"Conventional","Directional":true,"Links":[{"SourceID":40912,"TargetID":40913,"Directional":true},{"SourceID":40914,"TargetID":10827,"Directional":true},{"SourceID":40916,"TargetID":22541,"Directional":true}]},{"ID":14023,"SourceStructureID":40917,"TargetStructureID":517,"Label":"40917-517 via Conventional from 40918 -> 16412","Type":"Conventional","Directional":true,"Links":[{"SourceID":40918,"TargetID":16412,"Directional":true}]},{"ID":14024,"SourceStructureID":40919,"TargetStructureID":517,"Label":"40919-517 via Conventional from 40920 -> 40921, 40924 -> 40923, 40925 -> 40926, 60501 -> 60500","Type":"Conventional","Directional":true,"Links":[{"SourceID":40920,"TargetID":40921,"Directional":true},{"SourceID":40924,"TargetID":40923,"Directional":true},{"SourceID":40925,"TargetID":40926,"Directional":true},{"SourceID":60501,"TargetID":60500,"Directional":true}]},{"ID":14025,"SourceStructureID":40919,"TargetStructureID":6618,"Label":"40919-6618 via Conventional from 60508 -> 18902, 60509 -> 18903, 60510 -> 60512, 60511 -> 60513","Type":"Conventional","Directional":true,"Links":[{"SourceID":60508,"TargetID":18902,"Directional":true},{"SourceID":60509,"TargetID":18903,"Directional":true},{"SourceID":60510,"TargetID":60512,"Directional":true},{"SourceID":60511,"TargetID":60513,"Directional":true}]},{"ID":14026,"SourceStructureID":40927,"TargetStructureID":517,"Label":"40927-517 via Conventional from 40928 -> 16424, 64460 -> 64459","Type":"Conventional","Directional":true,"Links":[{"SourceID":40928,"TargetID":16424,"Directional":true},{"SourceID":64460,"TargetID":64459,"Directional":true}]},{"ID":14027,"SourceStructureID":40931,"TargetStructureID":517,"Label":"40931-517 via Conventional from 40932 -> 40933","Type":"Conventional","Directional":true,"Links":[{"SourceID":40932,"TargetID":40933,"Directional":true}]},{"ID":14028,"SourceStructureID":40934,"TargetStructureID":517,"Label":"40934-517 via Conventional from 40935 -> 14944, 60528 -> 60527","Type":"Conventional","Directional":true,"Links":[{"SourceID":40935,"TargetID":14944,"Directional":true},{"SourceID":60528,"TargetID":60527,"Directional":true}]},{"ID":14029,"SourceStructureID":40947,"TargetStructureID":517,"Label":"40947-517 via Conventional from 40948 -> 40949","Type":"Conventional","Directional":true,"Links":[{"SourceID":40948,"TargetID":40949,"Directional":true}]},{"ID":14030,"SourceStructureID":40951,"TargetStructureID":517,"Label":"40951-517 via Conventional from 40952 -> 40953, 40954 -> 40955, 51423 -> 51424, 60529 -> 60530","Type":"Conventional","Directional":true,"Links":[{"SourceID":40952,"TargetID":40953,"Directional":true},{"SourceID":40954,"TargetID":40955,"Directional":true},{"SourceID":51423,"TargetID":51424,"Directional":true},{"SourceID":60529,"TargetID":60530,"Directional":true}]},{"ID":14031,"SourceStructureID":40956,"TargetStructureID":517,"Label":"40956-517 via Conventional from 40957 -> 40958, 88847 -> 88848","Type":"Conventional","Directional":true,"Links":[{"SourceID":40957,"TargetID":40958,"Directional":true},{"SourceID":88847,"TargetID":88848,"Directional":true}]},{"ID":14032,"SourceStructureID":40960,"TargetStructureID":516,"Label":"40960-516 via Conventional from 51438 -> 51439","Type":"Conventional","Directional":true,"Links":[{"SourceID":51438,"TargetID":51439,"Directional":true}]},{"ID":14033,"SourceStructureID":40960,"TargetStructureID":517,"Label":"40960-517 via Conventional from 40961 -> 40962","Type":"Conventional","Directional":true,"Links":[{"SourceID":40961,"TargetID":40962,"Directional":true}]},{"ID":14034,"SourceStructureID":40960,"TargetStructureID":10943,"Label":"40960-10943 via Conventional from 40963 -> 40964","Type":"Conventional","Directional":true,"Links":[{"SourceID":40963,"TargetID":40964,"Directional":true}]},{"ID":14035,"SourceStructureID":40965,"TargetStructureID":410,"Label":"40965-410 via Conventional from 91165 -> 16797","Type":"Conventional","Directional":true,"Links":[{"SourceID":91165,"TargetID":16797,"Directional":true}]},{"ID":14036,"SourceStructureID":40965,"TargetStructureID":476,"Label":"40965-476 via Conventional from 91155 -> 16509","Type":"Conventional","Directional":true,"Links":[{"SourceID":91155,"TargetID":16509,"Directional":true}]},{"ID":14037,"SourceStructureID":40965,"TargetStructureID":517,"Label":"40965-517 via Conventional from 40966 -> 40967, 40969 -> 40970, 88845 -> 88846","Type":"Conventional","Directional":true,"Links":[{"SourceID":40966,"TargetID":40967,"Directional":true},{"SourceID":40969,"TargetID":40970,"Directional":true},{"SourceID":88845,"TargetID":88846,"Directional":true}]},{"ID":14038,"SourceStructureID":40973,"TargetStructureID":517,"Label":"40973-517 via Conventional from 40974 -> 40975","Type":"Conventional","Directional":true,"Links":[{"SourceID":40974,"TargetID":40975,"Directional":true}]},{"ID":14039,"SourceStructureID":40973,"TargetStructureID":3679,"Label":"40973-3679 via Conventional from 41057 -> 14920","Type":"Conventional","Directional":true,"Links":[{"SourceID":41057,"TargetID":14920,"Directional":true}]},{"ID":14040,"SourceStructureID":40988,"TargetStructureID":517,"Label":"40988-517 via Conventional from 40989 -> 40990","Type":"Conventional","Directional":true,"Links":[{"SourceID":40989,"TargetID":40990,"Directional":true}]},{"ID":14041,"SourceStructureID":40991,"TargetStructureID":517,"Label":"40991-517 via Conventional from 40992 -> 40993","Type":"Conventional","Directional":true,"Links":[{"SourceID":40992,"TargetID":40993,"Directional":true}]},{"ID":14042,"SourceStructureID":40991,"TargetStructureID":593,"Label":"40991-593 via Conventional from 41001 -> 66033","Type":"Conventional","Directional":true,"Links":[{"SourceID":41001,"TargetID":66033,"Directional":true}]},{"ID":14043,"SourceStructureID":40991,"TargetStructureID":6117,"Label":"40991-6117 via Conventional from 40998 -> 40999","Type":"Conventional","Directional":true,"Links":[{"SourceID":40998,"TargetID":40999,"Directional":true}]},{"ID":14044,"SourceStructureID":41003,"TargetStructureID":517,"Label":"41003-517 via Conventional from 41004 -> 14949","Type":"Conventional","Directional":true,"Links":[{"SourceID":41004,"TargetID":14949,"Directional":true}]},{"ID":14045,"SourceStructureID":41003,"TargetStructureID":1637,"Label":"41003-1637 via Conventional from 41007 -> 1659","Type":"Conventional","Directional":true,"Links":[{"SourceID":41007,"TargetID":1659,"Directional":true}]},{"ID":14046,"SourceStructureID":41003,"TargetStructureID":1724,"Label":"41003-1724 via Conventional from 41006 -> 100284","Type":"Conventional","Directional":true,"Links":[{"SourceID":41006,"TargetID":100284,"Directional":true}]},{"ID":14047,"SourceStructureID":41009,"TargetStructureID":517,"Label":"41009-517 via Conventional from 41010 -> 41011","Type":"Conventional","Directional":true,"Links":[{"SourceID":41010,"TargetID":41011,"Directional":true}]},{"ID":14048,"SourceStructureID":41031,"TargetStructureID":517,"Label":"41031-517 via Conventional from 41032 -> 41050, 41033 -> 41029, 41051 -> 41050","Type":"Conventional","Directional":true,"Links":[{"SourceID":41032,"TargetID":41050,"Directional":true},{"SourceID":41033,"TargetID":41029,"Directional":true},{"SourceID":41051,"TargetID":41050,"Directional":true}]},{"ID":14049,"SourceStructureID":41039,"TargetStructureID":517,"Label":"41039-517 via Conventional from 88849 -> 41047, 88850 -> 41040, 88852 -> 88851, 116700 -> 41045","Type":"Conventional","Directional":true,"Links":[{"SourceID":88849,"TargetID":41047,"Directional":true},{"SourceID":88850,"TargetID":41040,"Directional":true},{"SourceID":88852,"TargetID":88851,"Directional":true},{"SourceID":116700,"TargetID":41045,"Directional":true}]},{"ID":14050,"SourceStructureID":41042,"TargetStructureID":469,"Label":"41042-469 via Conventional from 91472 -> 15070, 91475 -> 4659, 91477 -> 4661, 91478 -> 4661","Type":"Conventional","Directional":true,"Links":[{"SourceID":91472,"TargetID":15070,"Directional":true},{"SourceID":91475,"TargetID":4659,"Directional":true},{"SourceID":91477,"TargetID":4661,"Directional":true},{"SourceID":91478,"TargetID":4661,"Directional":true}]},{"ID":14051,"SourceStructureID":41042,"TargetStructureID":517,"Label":"41042-517 via Conventional from 41043 -> 41041, 41056 -> 41054","Type":"Conventional","Directional":true,"Links":[{"SourceID":41043,"TargetID":41041,"Directional":true},{"SourceID":41056,"TargetID":41054,"Directional":true}]},{"ID":14052,"SourceStructureID":41058,"TargetStructureID":514,"Label":"41058-514 via Conventional from 41061 -> 41062","Type":"Conventional","Directional":true,"Links":[{"SourceID":41061,"TargetID":41062,"Directional":true}]},{"ID":14053,"SourceStructureID":41058,"TargetStructureID":3679,"Label":"41058-3679 via Conventional from 41059 -> 41060","Type":"Conventional","Directional":true,"Links":[{"SourceID":41059,"TargetID":41060,"Directional":true}]},{"ID":14054,"SourceStructureID":41058,"TargetStructureID":12897,"Label":"41058-12897 via Conventional from 41063 -> 41064","Type":"Conventional","Directional":true,"Links":[{"SourceID":41063,"TargetID":41064,"Directional":true}]},{"ID":14055,"SourceStructureID":41126,"TargetStructureID":483,"Label":"41126-483 via Conventional from 41127 -> 6848","Type":"Conventional","Directional":true,"Links":[{"SourceID":41127,"TargetID":6848,"Directional":true}]},{"ID":14056,"SourceStructureID":41159,"TargetStructureID":41159,"Label":"41159-41159 via Adherens from 41880 -> 41881","Type":"Adherens","Directional":true,"Links":[{"SourceID":41880,"TargetID":41881,"Directional":true}]},{"ID":14057,"SourceStructureID":41159,"TargetStructureID":42586,"Label":"41159-42586 via Ribbon Synapse from 41936 -> 42708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41936,"TargetID":42708,"Directional":true}]},{"ID":14058,"SourceStructureID":41587,"TargetStructureID":41583,"Label":"41587-41583 via Conventional from 43151 -> 43152","Type":"Conventional","Directional":true,"Links":[{"SourceID":43151,"TargetID":43152,"Directional":true}]},{"ID":14059,"SourceStructureID":41587,"TargetStructureID":90715,"Label":"41587-90715 via Conventional from 41595 -> 91313","Type":"Conventional","Directional":true,"Links":[{"SourceID":41595,"TargetID":91313,"Directional":true}]},{"ID":14060,"SourceStructureID":41608,"TargetStructureID":6115,"Label":"41608-6115 via Conventional from 41751 -> 73946, 73254 -> 73255","Type":"Conventional","Directional":true,"Links":[{"SourceID":41751,"TargetID":73946,"Directional":true},{"SourceID":73254,"TargetID":73255,"Directional":true}]},{"ID":14061,"SourceStructureID":41608,"TargetStructureID":8575,"Label":"41608-8575 via Conventional from 79326 -> 62278","Type":"Conventional","Directional":true,"Links":[{"SourceID":79326,"TargetID":62278,"Directional":true}]},{"ID":14062,"SourceStructureID":41608,"TargetStructureID":15977,"Label":"41608-15977 via Conventional from 41757 -> 41758","Type":"Conventional","Directional":true,"Links":[{"SourceID":41757,"TargetID":41758,"Directional":true}]},{"ID":14063,"SourceStructureID":41608,"TargetStructureID":66523,"Label":"41608-66523 via Conventional from 74915 -> 74914","Type":"Conventional","Directional":true,"Links":[{"SourceID":74915,"TargetID":74914,"Directional":true}]},{"ID":14064,"SourceStructureID":41608,"TargetStructureID":68497,"Label":"41608-68497 via Conventional from 41612 -> 79323, 41613 -> 79356","Type":"Conventional","Directional":true,"Links":[{"SourceID":41612,"TargetID":79323,"Directional":true},{"SourceID":41613,"TargetID":79356,"Directional":true}]},{"ID":14065,"SourceStructureID":41608,"TargetStructureID":72287,"Label":"41608-72287 via Conventional from 41696 -> 72290","Type":"Conventional","Directional":true,"Links":[{"SourceID":41696,"TargetID":72290,"Directional":true}]},{"ID":14066,"SourceStructureID":41608,"TargetStructureID":72309,"Label":"41608-72309 via Conventional from 72315 -> 72316","Type":"Conventional","Directional":true,"Links":[{"SourceID":72315,"TargetID":72316,"Directional":true}]},{"ID":14067,"SourceStructureID":41608,"TargetStructureID":82653,"Label":"41608-82653 via Conventional from 41694 -> 90720","Type":"Conventional","Directional":true,"Links":[{"SourceID":41694,"TargetID":90720,"Directional":true}]},{"ID":14068,"SourceStructureID":41882,"TargetStructureID":5640,"Label":"41882-5640 via Conventional from 41884 -> 41110","Type":"Conventional","Directional":true,"Links":[{"SourceID":41884,"TargetID":41110,"Directional":true}]},{"ID":14069,"SourceStructureID":41905,"TargetStructureID":41891,"Label":"41905-41891 via Ribbon Synapse from 41906 -> 41895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41906,"TargetID":41895,"Directional":true}]},{"ID":14070,"SourceStructureID":42001,"TargetStructureID":41999,"Label":"42001-41999 via Conventional from 42002 -> 42000","Type":"Conventional","Directional":true,"Links":[{"SourceID":42002,"TargetID":42000,"Directional":true}]},{"ID":14071,"SourceStructureID":42094,"TargetStructureID":606,"Label":"42094-606 via Conventional from 42134 -> 42093","Type":"Conventional","Directional":true,"Links":[{"SourceID":42134,"TargetID":42093,"Directional":true}]},{"ID":14072,"SourceStructureID":42159,"TargetStructureID":606,"Label":"42159-606 via Conventional from 42160 -> 42158","Type":"Conventional","Directional":true,"Links":[{"SourceID":42160,"TargetID":42158,"Directional":true}]},{"ID":14073,"SourceStructureID":42404,"TargetStructureID":606,"Label":"42404-606 via Conventional from 116584 -> 42402","Type":"Conventional","Directional":true,"Links":[{"SourceID":116584,"TargetID":42402,"Directional":true}]},{"ID":14074,"SourceStructureID":42406,"TargetStructureID":606,"Label":"42406-606 via Conventional from 42407 -> 10201","Type":"Conventional","Directional":true,"Links":[{"SourceID":42407,"TargetID":10201,"Directional":true}]},{"ID":14075,"SourceStructureID":42416,"TargetStructureID":606,"Label":"42416-606 via Conventional from 42417 -> 10710","Type":"Conventional","Directional":true,"Links":[{"SourceID":42417,"TargetID":10710,"Directional":true}]},{"ID":14076,"SourceStructureID":42416,"TargetStructureID":6117,"Label":"42416-6117 via Conventional from 51291 -> 83294","Type":"Conventional","Directional":true,"Links":[{"SourceID":51291,"TargetID":83294,"Directional":true}]},{"ID":14077,"SourceStructureID":42416,"TargetStructureID":16073,"Label":"42416-16073 via Conventional from 42515 -> 19866","Type":"Conventional","Directional":true,"Links":[{"SourceID":42515,"TargetID":19866,"Directional":true}]},{"ID":14078,"SourceStructureID":42423,"TargetStructureID":10960,"Label":"42423-10960 via Conventional from 42424 -> 42425, 42426 -> 42427, 42428 -> 42429","Type":"Conventional","Directional":true,"Links":[{"SourceID":42424,"TargetID":42425,"Directional":true},{"SourceID":42426,"TargetID":42427,"Directional":true},{"SourceID":42428,"TargetID":42429,"Directional":true}]},{"ID":14079,"SourceStructureID":42432,"TargetStructureID":10960,"Label":"42432-10960 via Conventional from 42437 -> 42438, 42439 -> 12475, 42442 -> 42443","Type":"Conventional","Directional":true,"Links":[{"SourceID":42437,"TargetID":42438,"Directional":true},{"SourceID":42439,"TargetID":12475,"Directional":true},{"SourceID":42442,"TargetID":42443,"Directional":true}]},{"ID":14080,"SourceStructureID":42523,"TargetStructureID":41159,"Label":"42523-41159 via Conventional from 42524 -> 42522","Type":"Conventional","Directional":true,"Links":[{"SourceID":42524,"TargetID":42522,"Directional":true}]},{"ID":14081,"SourceStructureID":42527,"TargetStructureID":1724,"Label":"42527-1724 via Conventional from 42529 -> 1782","Type":"Conventional","Directional":true,"Links":[{"SourceID":42529,"TargetID":1782,"Directional":true}]},{"ID":14082,"SourceStructureID":42615,"TargetStructureID":42586,"Label":"42615-42586 via Conventional from 42616 -> 42614","Type":"Conventional","Directional":true,"Links":[{"SourceID":42616,"TargetID":42614,"Directional":true}]},{"ID":14083,"SourceStructureID":42711,"TargetStructureID":308,"Label":"42711-308 via Conventional from 42730 -> 31859","Type":"Conventional","Directional":true,"Links":[{"SourceID":42730,"TargetID":31859,"Directional":true}]},{"ID":14084,"SourceStructureID":42715,"TargetStructureID":606,"Label":"42715-606 via Conventional from 128562 -> 42713","Type":"Conventional","Directional":true,"Links":[{"SourceID":128562,"TargetID":42713,"Directional":true}]},{"ID":14085,"SourceStructureID":42770,"TargetStructureID":3928,"Label":"42770-3928 via Conventional from 42774 -> 42775","Type":"Conventional","Directional":true,"Links":[{"SourceID":42774,"TargetID":42775,"Directional":true}]},{"ID":14086,"SourceStructureID":42770,"TargetStructureID":5538,"Label":"42770-5538 via Conventional from 42771 -> 24221","Type":"Conventional","Directional":true,"Links":[{"SourceID":42771,"TargetID":24221,"Directional":true}]},{"ID":14087,"SourceStructureID":42795,"TargetStructureID":4943,"Label":"42795-4943 via Conventional from 43146 -> 8511","Type":"Conventional","Directional":true,"Links":[{"SourceID":43146,"TargetID":8511,"Directional":true}]},{"ID":14088,"SourceStructureID":42795,"TargetStructureID":137024,"Label":"42795-137024 via Conventional from 137036 -> 137038","Type":"Conventional","Directional":true,"Links":[{"SourceID":137036,"TargetID":137038,"Directional":true}]},{"ID":14089,"SourceStructureID":42816,"TargetStructureID":4943,"Label":"42816-4943 via Conventional from 42817 -> 4953","Type":"Conventional","Directional":true,"Links":[{"SourceID":42817,"TargetID":4953,"Directional":true}]},{"ID":14090,"SourceStructureID":42816,"TargetStructureID":5596,"Label":"42816-5596 via Conventional from 42832 -> 42833, 42834 -> 40583","Type":"Conventional","Directional":true,"Links":[{"SourceID":42832,"TargetID":42833,"Directional":true},{"SourceID":42834,"TargetID":40583,"Directional":true}]},{"ID":14091,"SourceStructureID":42819,"TargetStructureID":7114,"Label":"42819-7114 via Conventional from 42822 -> 42821","Type":"Conventional","Directional":true,"Links":[{"SourceID":42822,"TargetID":42821,"Directional":true}]},{"ID":14092,"SourceStructureID":42846,"TargetStructureID":4943,"Label":"42846-4943 via Conventional from 42847 -> 4963","Type":"Conventional","Directional":true,"Links":[{"SourceID":42847,"TargetID":4963,"Directional":true}]},{"ID":14093,"SourceStructureID":42846,"TargetStructureID":5598,"Label":"42846-5598 via Conventional from 91504 -> 37914","Type":"Conventional","Directional":true,"Links":[{"SourceID":91504,"TargetID":37914,"Directional":true}]},{"ID":14094,"SourceStructureID":42846,"TargetStructureID":29340,"Label":"42846-29340 via Conventional from 42853 -> 29370","Type":"Conventional","Directional":true,"Links":[{"SourceID":42853,"TargetID":29370,"Directional":true}]},{"ID":14095,"SourceStructureID":42858,"TargetStructureID":175,"Label":"42858-175 via Conventional from 42864 -> 42865","Type":"Conventional","Directional":true,"Links":[{"SourceID":42864,"TargetID":42865,"Directional":true}]},{"ID":14096,"SourceStructureID":42858,"TargetStructureID":4943,"Label":"42858-4943 via Conventional from 42859 -> 8508","Type":"Conventional","Directional":true,"Links":[{"SourceID":42859,"TargetID":8508,"Directional":true}]},{"ID":14097,"SourceStructureID":42866,"TargetStructureID":4943,"Label":"42866-4943 via Conventional from 42867 -> 4955","Type":"Conventional","Directional":true,"Links":[{"SourceID":42867,"TargetID":4955,"Directional":true}]},{"ID":14098,"SourceStructureID":42871,"TargetStructureID":4943,"Label":"42871-4943 via Conventional from 42872 -> 13440","Type":"Conventional","Directional":true,"Links":[{"SourceID":42872,"TargetID":13440,"Directional":true}]},{"ID":14099,"SourceStructureID":42873,"TargetStructureID":4943,"Label":"42873-4943 via Conventional from 42874 -> 4952","Type":"Conventional","Directional":true,"Links":[{"SourceID":42874,"TargetID":4952,"Directional":true}]},{"ID":14100,"SourceStructureID":42873,"TargetStructureID":5596,"Label":"42873-5596 via Conventional from 42875 -> 122088","Type":"Conventional","Directional":true,"Links":[{"SourceID":42875,"TargetID":122088,"Directional":true}]},{"ID":14101,"SourceStructureID":42877,"TargetStructureID":4943,"Label":"42877-4943 via Conventional from 42878 -> 4951","Type":"Conventional","Directional":true,"Links":[{"SourceID":42878,"TargetID":4951,"Directional":true}]},{"ID":14102,"SourceStructureID":42890,"TargetStructureID":4943,"Label":"42890-4943 via Conventional from 42891 -> 4958","Type":"Conventional","Directional":true,"Links":[{"SourceID":42891,"TargetID":4958,"Directional":true}]},{"ID":14103,"SourceStructureID":42890,"TargetStructureID":6957,"Label":"42890-6957 via Conventional from 122050 -> 122051","Type":"Conventional","Directional":true,"Links":[{"SourceID":122050,"TargetID":122051,"Directional":true}]},{"ID":14104,"SourceStructureID":42895,"TargetStructureID":4943,"Label":"42895-4943 via Conventional from 42896 -> 4976","Type":"Conventional","Directional":true,"Links":[{"SourceID":42896,"TargetID":4976,"Directional":true}]},{"ID":14105,"SourceStructureID":42895,"TargetStructureID":42816,"Label":"42895-42816 via Conventional from 42899 -> 42844","Type":"Conventional","Directional":true,"Links":[{"SourceID":42899,"TargetID":42844,"Directional":true}]},{"ID":14106,"SourceStructureID":42927,"TargetStructureID":4943,"Label":"42927-4943 via Conventional from 42928 -> 4977","Type":"Conventional","Directional":true,"Links":[{"SourceID":42928,"TargetID":4977,"Directional":true}]},{"ID":14107,"SourceStructureID":42948,"TargetStructureID":4943,"Label":"42948-4943 via Conventional from 42949 -> 42947","Type":"Conventional","Directional":true,"Links":[{"SourceID":42949,"TargetID":42947,"Directional":true}]},{"ID":14108,"SourceStructureID":42951,"TargetStructureID":4943,"Label":"42951-4943 via Conventional from 42952 -> 42950","Type":"Conventional","Directional":true,"Links":[{"SourceID":42952,"TargetID":42950,"Directional":true}]},{"ID":14109,"SourceStructureID":42953,"TargetStructureID":4943,"Label":"42953-4943 via Conventional from 42955 -> 42954","Type":"Conventional","Directional":true,"Links":[{"SourceID":42955,"TargetID":42954,"Directional":true}]},{"ID":14110,"SourceStructureID":42953,"TargetStructureID":20681,"Label":"42953-20681 via Conventional from 122055 -> 65779","Type":"Conventional","Directional":true,"Links":[{"SourceID":122055,"TargetID":65779,"Directional":true}]},{"ID":14111,"SourceStructureID":42957,"TargetStructureID":4943,"Label":"42957-4943 via Conventional from 42958 -> 42956","Type":"Conventional","Directional":true,"Links":[{"SourceID":42958,"TargetID":42956,"Directional":true}]},{"ID":14112,"SourceStructureID":42966,"TargetStructureID":4943,"Label":"42966-4943 via Conventional from 42967 -> 42964","Type":"Conventional","Directional":true,"Links":[{"SourceID":42967,"TargetID":42964,"Directional":true}]},{"ID":14113,"SourceStructureID":42966,"TargetStructureID":122091,"Label":"42966-122091 via Conventional from 122097 -> 122098","Type":"Conventional","Directional":true,"Links":[{"SourceID":122097,"TargetID":122098,"Directional":true}]},{"ID":14114,"SourceStructureID":42968,"TargetStructureID":4943,"Label":"42968-4943 via Conventional from 42969 -> 42965","Type":"Conventional","Directional":true,"Links":[{"SourceID":42969,"TargetID":42965,"Directional":true}]},{"ID":14115,"SourceStructureID":42971,"TargetStructureID":4943,"Label":"42971-4943 via Conventional from 42972 -> 42970","Type":"Conventional","Directional":true,"Links":[{"SourceID":42972,"TargetID":42970,"Directional":true}]},{"ID":14116,"SourceStructureID":42977,"TargetStructureID":4943,"Label":"42977-4943 via Conventional from 42978 -> 42976","Type":"Conventional","Directional":true,"Links":[{"SourceID":42978,"TargetID":42976,"Directional":true}]},{"ID":14117,"SourceStructureID":42980,"TargetStructureID":4943,"Label":"42980-4943 via Conventional from 42981 -> 42979","Type":"Conventional","Directional":true,"Links":[{"SourceID":42981,"TargetID":42979,"Directional":true}]},{"ID":14118,"SourceStructureID":42985,"TargetStructureID":4943,"Label":"42985-4943 via Conventional from 42986 -> 42984","Type":"Conventional","Directional":true,"Links":[{"SourceID":42986,"TargetID":42984,"Directional":true}]},{"ID":14119,"SourceStructureID":43114,"TargetStructureID":5281,"Label":"43114-5281 via Conventional from 43115 -> 36777","Type":"Conventional","Directional":true,"Links":[{"SourceID":43115,"TargetID":36777,"Directional":true}]},{"ID":14120,"SourceStructureID":43127,"TargetStructureID":5281,"Label":"43127-5281 via Conventional from 43128 -> 43126","Type":"Conventional","Directional":true,"Links":[{"SourceID":43128,"TargetID":43126,"Directional":true}]},{"ID":14121,"SourceStructureID":43130,"TargetStructureID":5281,"Label":"43130-5281 via Conventional from 43131 -> 43129","Type":"Conventional","Directional":true,"Links":[{"SourceID":43131,"TargetID":43129,"Directional":true}]},{"ID":14122,"SourceStructureID":43132,"TargetStructureID":5281,"Label":"43132-5281 via Conventional from 43133 -> 36779","Type":"Conventional","Directional":true,"Links":[{"SourceID":43133,"TargetID":36779,"Directional":true}]},{"ID":14123,"SourceStructureID":43134,"TargetStructureID":5281,"Label":"43134-5281 via Conventional from 43135 -> 36801","Type":"Conventional","Directional":true,"Links":[{"SourceID":43135,"TargetID":36801,"Directional":true}]},{"ID":14124,"SourceStructureID":43142,"TargetStructureID":4943,"Label":"43142-4943 via Conventional from 43143 -> 10065","Type":"Conventional","Directional":true,"Links":[{"SourceID":43143,"TargetID":10065,"Directional":true}]},{"ID":14125,"SourceStructureID":43198,"TargetStructureID":4943,"Label":"43198-4943 via Conventional from 43199 -> 4975","Type":"Conventional","Directional":true,"Links":[{"SourceID":43199,"TargetID":4975,"Directional":true}]},{"ID":14126,"SourceStructureID":43201,"TargetStructureID":4943,"Label":"43201-4943 via Conventional from 43202 -> 8536","Type":"Conventional","Directional":true,"Links":[{"SourceID":43202,"TargetID":8536,"Directional":true}]},{"ID":14127,"SourceStructureID":43201,"TargetStructureID":7346,"Label":"43201-7346 via Conventional from 122043 -> 122042","Type":"Conventional","Directional":true,"Links":[{"SourceID":122043,"TargetID":122042,"Directional":true}]},{"ID":14128,"SourceStructureID":43201,"TargetStructureID":127972,"Label":"43201-127972 via Conventional from 127969 -> 127974, 127970 -> 127975","Type":"Conventional","Directional":true,"Links":[{"SourceID":127969,"TargetID":127974,"Directional":true},{"SourceID":127970,"TargetID":127975,"Directional":true}]},{"ID":14129,"SourceStructureID":43203,"TargetStructureID":4943,"Label":"43203-4943 via Conventional from 43204 -> 4974","Type":"Conventional","Directional":true,"Links":[{"SourceID":43204,"TargetID":4974,"Directional":true}]},{"ID":14130,"SourceStructureID":43203,"TargetStructureID":5634,"Label":"43203-5634 via Conventional from 122028 -> 122032","Type":"Conventional","Directional":true,"Links":[{"SourceID":122028,"TargetID":122032,"Directional":true}]},{"ID":14131,"SourceStructureID":43203,"TargetStructureID":6132,"Label":"43203-6132 via Conventional from 122033 -> 88414, 122034 -> 122037","Type":"Conventional","Directional":true,"Links":[{"SourceID":122033,"TargetID":88414,"Directional":true},{"SourceID":122034,"TargetID":122037,"Directional":true}]},{"ID":14132,"SourceStructureID":43205,"TargetStructureID":4943,"Label":"43205-4943 via Conventional from 43206 -> 4972","Type":"Conventional","Directional":true,"Links":[{"SourceID":43206,"TargetID":4972,"Directional":true}]},{"ID":14133,"SourceStructureID":43205,"TargetStructureID":65768,"Label":"43205-65768 via Conventional from 65767 -> 65769","Type":"Conventional","Directional":true,"Links":[{"SourceID":65767,"TargetID":65769,"Directional":true}]},{"ID":14134,"SourceStructureID":43207,"TargetStructureID":165,"Label":"43207-165 via Conventional from 43210 -> 12524, 43227 -> 43228, 60745 -> 60746","Type":"Conventional","Directional":true,"Links":[{"SourceID":43210,"TargetID":12524,"Directional":true},{"SourceID":43227,"TargetID":43228,"Directional":true},{"SourceID":60745,"TargetID":60746,"Directional":true}]},{"ID":14135,"SourceStructureID":43207,"TargetStructureID":175,"Label":"43207-175 via Conventional from 43231 -> 43232","Type":"Conventional","Directional":true,"Links":[{"SourceID":43231,"TargetID":43232,"Directional":true}]},{"ID":14136,"SourceStructureID":43207,"TargetStructureID":478,"Label":"43207-478 via Conventional from 43234 -> 43235","Type":"Conventional","Directional":true,"Links":[{"SourceID":43234,"TargetID":43235,"Directional":true}]},{"ID":14137,"SourceStructureID":43207,"TargetStructureID":4943,"Label":"43207-4943 via Conventional from 43208 -> 13438","Type":"Conventional","Directional":true,"Links":[{"SourceID":43208,"TargetID":13438,"Directional":true}]},{"ID":14138,"SourceStructureID":43207,"TargetStructureID":5457,"Label":"43207-5457 via Conventional from 43225 -> 103519","Type":"Conventional","Directional":true,"Links":[{"SourceID":43225,"TargetID":103519,"Directional":true}]},{"ID":14139,"SourceStructureID":43207,"TargetStructureID":6128,"Label":"43207-6128 via Conventional from 43217 -> 21046, 43219 -> 43218, 43220 -> 33762","Type":"Conventional","Directional":true,"Links":[{"SourceID":43217,"TargetID":21046,"Directional":true},{"SourceID":43219,"TargetID":43218,"Directional":true},{"SourceID":43220,"TargetID":33762,"Directional":true}]},{"ID":14140,"SourceStructureID":43207,"TargetStructureID":32359,"Label":"43207-32359 via Conventional from 43221 -> 41323","Type":"Conventional","Directional":true,"Links":[{"SourceID":43221,"TargetID":41323,"Directional":true}]},{"ID":14141,"SourceStructureID":43259,"TargetStructureID":4943,"Label":"43259-4943 via Conventional from 43260 -> 4993","Type":"Conventional","Directional":true,"Links":[{"SourceID":43260,"TargetID":4993,"Directional":true}]},{"ID":14142,"SourceStructureID":43261,"TargetStructureID":4943,"Label":"43261-4943 via Conventional from 43263 -> 4965","Type":"Conventional","Directional":true,"Links":[{"SourceID":43263,"TargetID":4965,"Directional":true}]},{"ID":14143,"SourceStructureID":43261,"TargetStructureID":6046,"Label":"43261-6046 via Conventional from 122047 -> 122048","Type":"Conventional","Directional":true,"Links":[{"SourceID":122047,"TargetID":122048,"Directional":true}]},{"ID":14144,"SourceStructureID":43297,"TargetStructureID":42576,"Label":"43297-42576 via Conventional from 43300 -> 43110","Type":"Conventional","Directional":true,"Links":[{"SourceID":43300,"TargetID":43110,"Directional":true}]},{"ID":14145,"SourceStructureID":43303,"TargetStructureID":42576,"Label":"43303-42576 via Conventional from 43304 -> 43249","Type":"Conventional","Directional":true,"Links":[{"SourceID":43304,"TargetID":43249,"Directional":true}]},{"ID":14146,"SourceStructureID":43327,"TargetStructureID":4569,"Label":"43327-4569 via Conventional from 43328 -> 6297, 43331 -> 52523","Type":"Conventional","Directional":true,"Links":[{"SourceID":43328,"TargetID":6297,"Directional":true},{"SourceID":43331,"TargetID":52523,"Directional":true}]},{"ID":14147,"SourceStructureID":43327,"TargetStructureID":137159,"Label":"43327-137159 via Conventional from 43330 -> 31352","Type":"Conventional","Directional":true,"Links":[{"SourceID":43330,"TargetID":31352,"Directional":true}]},{"ID":14148,"SourceStructureID":43334,"TargetStructureID":4569,"Label":"43334-4569 via Conventional from 43335 -> 23782","Type":"Conventional","Directional":true,"Links":[{"SourceID":43335,"TargetID":23782,"Directional":true}]},{"ID":14149,"SourceStructureID":43404,"TargetStructureID":165,"Label":"43404-165 via Conventional from 43408 -> 43409","Type":"Conventional","Directional":true,"Links":[{"SourceID":43408,"TargetID":43409,"Directional":true}]},{"ID":14150,"SourceStructureID":43404,"TargetStructureID":181,"Label":"43404-181 via Conventional from 43411 -> 20482","Type":"Conventional","Directional":true,"Links":[{"SourceID":43411,"TargetID":20482,"Directional":true}]},{"ID":14151,"SourceStructureID":43404,"TargetStructureID":4568,"Label":"43404-4568 via Conventional from 43407 -> 11518","Type":"Conventional","Directional":true,"Links":[{"SourceID":43407,"TargetID":11518,"Directional":true}]},{"ID":14152,"SourceStructureID":43431,"TargetStructureID":519,"Label":"43431-519 via Conventional from 100171 -> 100172","Type":"Conventional","Directional":true,"Links":[{"SourceID":100171,"TargetID":100172,"Directional":true}]},{"ID":14153,"SourceStructureID":43431,"TargetStructureID":593,"Label":"43431-593 via Conventional from 84268 -> 84267","Type":"Conventional","Directional":true,"Links":[{"SourceID":84268,"TargetID":84267,"Directional":true}]},{"ID":14154,"SourceStructureID":43431,"TargetStructureID":3679,"Label":"43431-3679 via Conventional from 43444 -> 4703","Type":"Conventional","Directional":true,"Links":[{"SourceID":43444,"TargetID":4703,"Directional":true}]},{"ID":14155,"SourceStructureID":43431,"TargetStructureID":8720,"Label":"43431-8720 via Conventional from 43440 -> 60076","Type":"Conventional","Directional":true,"Links":[{"SourceID":43440,"TargetID":60076,"Directional":true}]},{"ID":14156,"SourceStructureID":43431,"TargetStructureID":11031,"Label":"43431-11031 via Conventional from 43432 -> 25448","Type":"Conventional","Directional":true,"Links":[{"SourceID":43432,"TargetID":25448,"Directional":true}]},{"ID":14157,"SourceStructureID":43431,"TargetStructureID":54744,"Label":"43431-54744 via Conventional from 43442 -> 54752, 54758 -> 54757, 100164 -> 54759","Type":"Conventional","Directional":true,"Links":[{"SourceID":43442,"TargetID":54752,"Directional":true},{"SourceID":54758,"TargetID":54757,"Directional":true},{"SourceID":100164,"TargetID":54759,"Directional":true}]},{"ID":14158,"SourceStructureID":43445,"TargetStructureID":25440,"Label":"43445-25440 via Conventional from 43446 -> 25458","Type":"Conventional","Directional":true,"Links":[{"SourceID":43446,"TargetID":25458,"Directional":true}]},{"ID":14159,"SourceStructureID":43482,"TargetStructureID":6857,"Label":"43482-6857 via Conventional from 43483 -> 6878","Type":"Conventional","Directional":true,"Links":[{"SourceID":43483,"TargetID":6878,"Directional":true}]},{"ID":14160,"SourceStructureID":43507,"TargetStructureID":6997,"Label":"43507-6997 via Conventional from 43511 -> 22176","Type":"Conventional","Directional":true,"Links":[{"SourceID":43511,"TargetID":22176,"Directional":true}]},{"ID":14161,"SourceStructureID":43507,"TargetStructureID":8575,"Label":"43507-8575 via Conventional from 43508 -> 43277, 62146 -> 62145","Type":"Conventional","Directional":true,"Links":[{"SourceID":43508,"TargetID":43277,"Directional":true},{"SourceID":62146,"TargetID":62145,"Directional":true}]},{"ID":14162,"SourceStructureID":43507,"TargetStructureID":11401,"Label":"43507-11401 via Conventional from 43509 -> 43510","Type":"Conventional","Directional":true,"Links":[{"SourceID":43509,"TargetID":43510,"Directional":true}]},{"ID":14163,"SourceStructureID":43507,"TargetStructureID":88199,"Label":"43507-88199 via Conventional from 43515 -> 88202","Type":"Conventional","Directional":true,"Links":[{"SourceID":43515,"TargetID":88202,"Directional":true}]},{"ID":14164,"SourceStructureID":43507,"TargetStructureID":136786,"Label":"43507-136786 via Conventional from 136805 -> 136804","Type":"Conventional","Directional":true,"Links":[{"SourceID":136805,"TargetID":136804,"Directional":true}]},{"ID":14165,"SourceStructureID":43601,"TargetStructureID":179,"Label":"43601-179 via Conventional from 43602 -> 25312","Type":"Conventional","Directional":true,"Links":[{"SourceID":43602,"TargetID":25312,"Directional":true}]},{"ID":14166,"SourceStructureID":43700,"TargetStructureID":5107,"Label":"43700-5107 via Ribbon Synapse from 43702 -> 43701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43702,"TargetID":43701,"Directional":true}]},{"ID":14167,"SourceStructureID":43712,"TargetStructureID":5107,"Label":"43712-5107 via Conventional from 43713 -> 43676","Type":"Conventional","Directional":true,"Links":[{"SourceID":43713,"TargetID":43676,"Directional":true}]},{"ID":14168,"SourceStructureID":43747,"TargetStructureID":308,"Label":"43747-308 via Conventional from 43751 -> 43748","Type":"Conventional","Directional":true,"Links":[{"SourceID":43751,"TargetID":43748,"Directional":true}]},{"ID":14169,"SourceStructureID":43770,"TargetStructureID":46074,"Label":"43770-46074 via Conventional from 43779 -> 46086","Type":"Conventional","Directional":true,"Links":[{"SourceID":43779,"TargetID":46086,"Directional":true}]},{"ID":14170,"SourceStructureID":44205,"TargetStructureID":606,"Label":"44205-606 via Conventional from 44206 -> 44204","Type":"Conventional","Directional":true,"Links":[{"SourceID":44206,"TargetID":44204,"Directional":true}]},{"ID":14171,"SourceStructureID":44212,"TargetStructureID":606,"Label":"44212-606 via Conventional from 44213 -> 44211","Type":"Conventional","Directional":true,"Links":[{"SourceID":44213,"TargetID":44211,"Directional":true}]},{"ID":14172,"SourceStructureID":44222,"TargetStructureID":44229,"Label":"44222-44229 via Conventional from 44227 -> 44231","Type":"Conventional","Directional":true,"Links":[{"SourceID":44227,"TargetID":44231,"Directional":true}]},{"ID":14173,"SourceStructureID":44229,"TargetStructureID":606,"Label":"44229-606 via Conventional from 44230 -> 44228","Type":"Conventional","Directional":true,"Links":[{"SourceID":44230,"TargetID":44228,"Directional":true}]},{"ID":14174,"SourceStructureID":44237,"TargetStructureID":606,"Label":"44237-606 via Conventional from 44239 -> 44236","Type":"Conventional","Directional":true,"Links":[{"SourceID":44239,"TargetID":44236,"Directional":true}]},{"ID":14175,"SourceStructureID":44237,"TargetStructureID":5530,"Label":"44237-5530 via Conventional from 44238 -> 23846","Type":"Conventional","Directional":true,"Links":[{"SourceID":44238,"TargetID":23846,"Directional":true}]},{"ID":14176,"SourceStructureID":44241,"TargetStructureID":606,"Label":"44241-606 via Conventional from 44242 -> 44240","Type":"Conventional","Directional":true,"Links":[{"SourceID":44242,"TargetID":44240,"Directional":true}]},{"ID":14177,"SourceStructureID":44256,"TargetStructureID":606,"Label":"44256-606 via Ribbon Synapse from 44257 -> 5087, 44265 -> 5088, 44266 -> 5095, 53832 -> 5094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44257,"TargetID":5087,"Directional":true},{"SourceID":44265,"TargetID":5088,"Directional":true},{"SourceID":44266,"TargetID":5095,"Directional":true},{"SourceID":53832,"TargetID":5094,"Directional":true}]},{"ID":14178,"SourceStructureID":44256,"TargetStructureID":88646,"Label":"44256-88646 via Ribbon Synapse from 88656 -> 88654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88656,"TargetID":88654,"Directional":true}]},{"ID":14179,"SourceStructureID":44338,"TargetStructureID":606,"Label":"44338-606 via Ribbon Synapse from 44339 -> 44337","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44339,"TargetID":44337,"Directional":true}]},{"ID":14180,"SourceStructureID":44893,"TargetStructureID":44895,"Label":"44893-44895 via Conventional from 44894 -> 44897","Type":"Conventional","Directional":true,"Links":[{"SourceID":44894,"TargetID":44897,"Directional":true}]},{"ID":14181,"SourceStructureID":44895,"TargetStructureID":44346,"Label":"44895-44346 via Conventional from 44896 -> 44351","Type":"Conventional","Directional":true,"Links":[{"SourceID":44896,"TargetID":44351,"Directional":true}]},{"ID":14182,"SourceStructureID":44901,"TargetStructureID":44346,"Label":"44901-44346 via Conventional from 44902 -> 44350","Type":"Conventional","Directional":true,"Links":[{"SourceID":44902,"TargetID":44350,"Directional":true}]},{"ID":14183,"SourceStructureID":44912,"TargetStructureID":44346,"Label":"44912-44346 via Conventional from 44913 -> 44355, 44920 -> 44356","Type":"Conventional","Directional":true,"Links":[{"SourceID":44913,"TargetID":44355,"Directional":true},{"SourceID":44920,"TargetID":44356,"Directional":true}]},{"ID":14184,"SourceStructureID":44965,"TargetStructureID":5439,"Label":"44965-5439 via Conventional from 44999 -> 70650","Type":"Conventional","Directional":true,"Links":[{"SourceID":44999,"TargetID":70650,"Directional":true}]},{"ID":14185,"SourceStructureID":45007,"TargetStructureID":44346,"Label":"45007-44346 via Conventional from 45008 -> 44353","Type":"Conventional","Directional":true,"Links":[{"SourceID":45008,"TargetID":44353,"Directional":true}]},{"ID":14186,"SourceStructureID":45220,"TargetStructureID":16073,"Label":"45220-16073 via Conventional from 56091 -> 56092","Type":"Conventional","Directional":true,"Links":[{"SourceID":56091,"TargetID":56092,"Directional":true}]},{"ID":14187,"SourceStructureID":45220,"TargetStructureID":56086,"Label":"45220-56086 via Conventional from 45226 -> 56090","Type":"Conventional","Directional":true,"Links":[{"SourceID":45226,"TargetID":56090,"Directional":true}]},{"ID":14188,"SourceStructureID":45326,"TargetStructureID":45336,"Label":"45326-45336 via Conventional from 45334 -> 45337","Type":"Conventional","Directional":true,"Links":[{"SourceID":45334,"TargetID":45337,"Directional":true}]},{"ID":14189,"SourceStructureID":45326,"TargetStructureID":56084,"Label":"45326-56084 via Conventional from 56083 -> 56085","Type":"Conventional","Directional":true,"Links":[{"SourceID":56083,"TargetID":56085,"Directional":true}]},{"ID":14190,"SourceStructureID":45536,"TargetStructureID":9769,"Label":"45536-9769 via Conventional from 45541 -> 23932","Type":"Conventional","Directional":true,"Links":[{"SourceID":45541,"TargetID":23932,"Directional":true}]},{"ID":14191,"SourceStructureID":45536,"TargetStructureID":68539,"Label":"45536-68539 via Conventional from 45537 -> 70412","Type":"Conventional","Directional":true,"Links":[{"SourceID":45537,"TargetID":70412,"Directional":true}]},{"ID":14192,"SourceStructureID":45551,"TargetStructureID":68539,"Label":"45551-68539 via Conventional from 45553 -> 70276","Type":"Conventional","Directional":true,"Links":[{"SourceID":45553,"TargetID":70276,"Directional":true}]},{"ID":14193,"SourceStructureID":45555,"TargetStructureID":68539,"Label":"45555-68539 via Conventional from 45556 -> 70279, 45561 -> 70413","Type":"Conventional","Directional":true,"Links":[{"SourceID":45556,"TargetID":70279,"Directional":true},{"SourceID":45561,"TargetID":70413,"Directional":true}]},{"ID":14194,"SourceStructureID":45568,"TargetStructureID":68539,"Label":"45568-68539 via Conventional from 45569 -> 70280","Type":"Conventional","Directional":true,"Links":[{"SourceID":45569,"TargetID":70280,"Directional":true}]},{"ID":14195,"SourceStructureID":45571,"TargetStructureID":68539,"Label":"45571-68539 via Conventional from 45572 -> 70281","Type":"Conventional","Directional":true,"Links":[{"SourceID":45572,"TargetID":70281,"Directional":true}]},{"ID":14196,"SourceStructureID":45617,"TargetStructureID":606,"Label":"45617-606 via Conventional from 52136 -> 52135","Type":"Conventional","Directional":true,"Links":[{"SourceID":52136,"TargetID":52135,"Directional":true}]},{"ID":14197,"SourceStructureID":45617,"TargetStructureID":31024,"Label":"45617-31024 via Conventional from 45619 -> 31099","Type":"Conventional","Directional":true,"Links":[{"SourceID":45619,"TargetID":31099,"Directional":true}]},{"ID":14198,"SourceStructureID":45617,"TargetStructureID":44346,"Label":"45617-44346 via Conventional from 45626 -> 44381","Type":"Conventional","Directional":true,"Links":[{"SourceID":45626,"TargetID":44381,"Directional":true}]},{"ID":14199,"SourceStructureID":45629,"TargetStructureID":330,"Label":"45629-330 via Conventional from 45634 -> 25912","Type":"Conventional","Directional":true,"Links":[{"SourceID":45634,"TargetID":25912,"Directional":true}]},{"ID":14200,"SourceStructureID":45629,"TargetStructureID":453,"Label":"45629-453 via Conventional from 45630 -> 45631, 45632 -> 45633","Type":"Conventional","Directional":true,"Links":[{"SourceID":45630,"TargetID":45631,"Directional":true},{"SourceID":45632,"TargetID":45633,"Directional":true}]},{"ID":14201,"SourceStructureID":45672,"TargetStructureID":579,"Label":"45672-579 via Conventional from 45673 -> 45674","Type":"Conventional","Directional":true,"Links":[{"SourceID":45673,"TargetID":45674,"Directional":true}]},{"ID":14202,"SourceStructureID":45672,"TargetStructureID":5623,"Label":"45672-5623 via Conventional from 45676 -> 127729","Type":"Conventional","Directional":true,"Links":[{"SourceID":45676,"TargetID":127729,"Directional":true}]},{"ID":14203,"SourceStructureID":45677,"TargetStructureID":5017,"Label":"45677-5017 via Conventional from 45678 -> 5038","Type":"Conventional","Directional":true,"Links":[{"SourceID":45678,"TargetID":5038,"Directional":true}]},{"ID":14204,"SourceStructureID":45677,"TargetStructureID":6997,"Label":"45677-6997 via Conventional from 82945 -> 82946","Type":"Conventional","Directional":true,"Links":[{"SourceID":82945,"TargetID":82946,"Directional":true}]},{"ID":14205,"SourceStructureID":45680,"TargetStructureID":5017,"Label":"45680-5017 via Conventional from 45681 -> 45679","Type":"Conventional","Directional":true,"Links":[{"SourceID":45681,"TargetID":45679,"Directional":true}]},{"ID":14206,"SourceStructureID":45731,"TargetStructureID":606,"Label":"45731-606 via Ribbon Synapse from 45739 -> 45689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45739,"TargetID":45689,"Directional":true}]},{"ID":14207,"SourceStructureID":45847,"TargetStructureID":606,"Label":"45847-606 via Ribbon Synapse from 45850 -> 45845, 45855 -> 45856","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45850,"TargetID":45845,"Directional":true},{"SourceID":45855,"TargetID":45856,"Directional":true}]},{"ID":14208,"SourceStructureID":45894,"TargetStructureID":606,"Label":"45894-606 via Ribbon Synapse from 45900 -> 45891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45900,"TargetID":45891,"Directional":true}]},{"ID":14209,"SourceStructureID":46050,"TargetStructureID":308,"Label":"46050-308 via Conventional from 46051 -> 15045","Type":"Conventional","Directional":true,"Links":[{"SourceID":46051,"TargetID":15045,"Directional":true}]},{"ID":14210,"SourceStructureID":46052,"TargetStructureID":308,"Label":"46052-308 via Conventional from 46053 -> 15046","Type":"Conventional","Directional":true,"Links":[{"SourceID":46053,"TargetID":15046,"Directional":true}]},{"ID":14211,"SourceStructureID":46054,"TargetStructureID":308,"Label":"46054-308 via Conventional from 46055 -> 15047","Type":"Conventional","Directional":true,"Links":[{"SourceID":46055,"TargetID":15047,"Directional":true}]},{"ID":14212,"SourceStructureID":46054,"TargetStructureID":46057,"Label":"46054-46057 via Conventional from 46056 -> 46058","Type":"Conventional","Directional":true,"Links":[{"SourceID":46056,"TargetID":46058,"Directional":true}]},{"ID":14213,"SourceStructureID":46059,"TargetStructureID":308,"Label":"46059-308 via Conventional from 46060 -> 15050","Type":"Conventional","Directional":true,"Links":[{"SourceID":46060,"TargetID":15050,"Directional":true}]},{"ID":14214,"SourceStructureID":46059,"TargetStructureID":24303,"Label":"46059-24303 via Conventional from 107024 -> 122493","Type":"Conventional","Directional":true,"Links":[{"SourceID":107024,"TargetID":122493,"Directional":true}]},{"ID":14215,"SourceStructureID":46062,"TargetStructureID":15100,"Label":"46062-15100 via Conventional from 46063 -> 17996, 46065 -> 46064, 46066 -> 46069, 46067 -> 46068","Type":"Conventional","Directional":true,"Links":[{"SourceID":46063,"TargetID":17996,"Directional":true},{"SourceID":46065,"TargetID":46064,"Directional":true},{"SourceID":46066,"TargetID":46069,"Directional":true},{"SourceID":46067,"TargetID":46068,"Directional":true}]},{"ID":14216,"SourceStructureID":46070,"TargetStructureID":308,"Label":"46070-308 via Conventional from 46071 -> 31862","Type":"Conventional","Directional":true,"Links":[{"SourceID":46071,"TargetID":31862,"Directional":true}]},{"ID":14217,"SourceStructureID":46074,"TargetStructureID":308,"Label":"46074-308 via Conventional from 46075 -> 31864","Type":"Conventional","Directional":true,"Links":[{"SourceID":46075,"TargetID":31864,"Directional":true}]},{"ID":14218,"SourceStructureID":46074,"TargetStructureID":475,"Label":"46074-475 via Conventional from 46079 -> 46083, 46084 -> 46085","Type":"Conventional","Directional":true,"Links":[{"SourceID":46079,"TargetID":46083,"Directional":true},{"SourceID":46084,"TargetID":46085,"Directional":true}]},{"ID":14219,"SourceStructureID":46090,"TargetStructureID":308,"Label":"46090-308 via Conventional from 46091 -> 31865","Type":"Conventional","Directional":true,"Links":[{"SourceID":46091,"TargetID":31865,"Directional":true}]},{"ID":14220,"SourceStructureID":46090,"TargetStructureID":382,"Label":"46090-382 via Conventional from 107032 -> 107033","Type":"Conventional","Directional":true,"Links":[{"SourceID":107032,"TargetID":107033,"Directional":true}]},{"ID":14221,"SourceStructureID":46093,"TargetStructureID":308,"Label":"46093-308 via Conventional from 46094 -> 31866, 46103 -> 31867","Type":"Conventional","Directional":true,"Links":[{"SourceID":46094,"TargetID":31866,"Directional":true},{"SourceID":46103,"TargetID":31867,"Directional":true}]},{"ID":14222,"SourceStructureID":46093,"TargetStructureID":46098,"Label":"46093-46098 via Conventional from 46097 -> 46099","Type":"Conventional","Directional":true,"Links":[{"SourceID":46097,"TargetID":46099,"Directional":true}]},{"ID":14223,"SourceStructureID":46098,"TargetStructureID":46093,"Label":"46098-46093 via Ribbon Synapse from 46101 -> 46096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46101,"TargetID":46096,"Directional":true}]},{"ID":14224,"SourceStructureID":46105,"TargetStructureID":606,"Label":"46105-606 via Ribbon Synapse from 46238 -> 46104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46238,"TargetID":46104,"Directional":true}]},{"ID":14225,"SourceStructureID":46107,"TargetStructureID":308,"Label":"46107-308 via Conventional from 46108 -> 31860","Type":"Conventional","Directional":true,"Links":[{"SourceID":46108,"TargetID":31860,"Directional":true}]},{"ID":14226,"SourceStructureID":46116,"TargetStructureID":308,"Label":"46116-308 via Conventional from 46117 -> 43385","Type":"Conventional","Directional":true,"Links":[{"SourceID":46117,"TargetID":43385,"Directional":true}]},{"ID":14227,"SourceStructureID":46118,"TargetStructureID":308,"Label":"46118-308 via Conventional from 46119 -> 43397","Type":"Conventional","Directional":true,"Links":[{"SourceID":46119,"TargetID":43397,"Directional":true}]},{"ID":14228,"SourceStructureID":46121,"TargetStructureID":308,"Label":"46121-308 via Conventional from 46122 -> 43600","Type":"Conventional","Directional":true,"Links":[{"SourceID":46122,"TargetID":43600,"Directional":true}]},{"ID":14229,"SourceStructureID":46121,"TargetStructureID":426,"Label":"46121-426 via Conventional from 46128 -> 46136","Type":"Conventional","Directional":true,"Links":[{"SourceID":46128,"TargetID":46136,"Directional":true}]},{"ID":14230,"SourceStructureID":46121,"TargetStructureID":4850,"Label":"46121-4850 via Conventional from 46170 -> 46178","Type":"Conventional","Directional":true,"Links":[{"SourceID":46170,"TargetID":46178,"Directional":true}]},{"ID":14231,"SourceStructureID":46121,"TargetStructureID":5150,"Label":"46121-5150 via Conventional from 46124 -> 5180","Type":"Conventional","Directional":true,"Links":[{"SourceID":46124,"TargetID":5180,"Directional":true}]},{"ID":14232,"SourceStructureID":46121,"TargetStructureID":5639,"Label":"46121-5639 via Conventional from 46214 -> 46217","Type":"Conventional","Directional":true,"Links":[{"SourceID":46214,"TargetID":46217,"Directional":true}]},{"ID":14233,"SourceStructureID":46121,"TargetStructureID":7568,"Label":"46121-7568 via Conventional from 46147 -> 27078","Type":"Conventional","Directional":true,"Links":[{"SourceID":46147,"TargetID":27078,"Directional":true}]},{"ID":14234,"SourceStructureID":46121,"TargetStructureID":9787,"Label":"46121-9787 via Conventional from 46150 -> 46151, 46155 -> 46159","Type":"Conventional","Directional":true,"Links":[{"SourceID":46150,"TargetID":46151,"Directional":true},{"SourceID":46155,"TargetID":46159,"Directional":true}]},{"ID":14235,"SourceStructureID":46121,"TargetStructureID":28950,"Label":"46121-28950 via Conventional from 46235 -> 46239","Type":"Conventional","Directional":true,"Links":[{"SourceID":46235,"TargetID":46239,"Directional":true}]},{"ID":14236,"SourceStructureID":46121,"TargetStructureID":29340,"Label":"46121-29340 via Conventional from 46241 -> 33844","Type":"Conventional","Directional":true,"Links":[{"SourceID":46241,"TargetID":33844,"Directional":true}]},{"ID":14237,"SourceStructureID":46121,"TargetStructureID":46186,"Label":"46121-46186 via Conventional from 46181 -> 46187","Type":"Conventional","Directional":true,"Links":[{"SourceID":46181,"TargetID":46187,"Directional":true}]},{"ID":14238,"SourceStructureID":46347,"TargetStructureID":5303,"Label":"46347-5303 via Conventional from 46349 -> 46348","Type":"Conventional","Directional":true,"Links":[{"SourceID":46349,"TargetID":46348,"Directional":true}]},{"ID":14239,"SourceStructureID":46351,"TargetStructureID":992,"Label":"46351-992 via Conventional from 46353 -> 29421, 46356 -> 46357","Type":"Conventional","Directional":true,"Links":[{"SourceID":46353,"TargetID":29421,"Directional":true},{"SourceID":46356,"TargetID":46357,"Directional":true}]},{"ID":14240,"SourceStructureID":46351,"TargetStructureID":5303,"Label":"46351-5303 via Conventional from 46352 -> 46350","Type":"Conventional","Directional":true,"Links":[{"SourceID":46352,"TargetID":46350,"Directional":true}]},{"ID":14241,"SourceStructureID":46359,"TargetStructureID":172,"Label":"46359-172 via Conventional from 46363 -> 33349, 46367 -> 46368","Type":"Conventional","Directional":true,"Links":[{"SourceID":46363,"TargetID":33349,"Directional":true},{"SourceID":46367,"TargetID":46368,"Directional":true}]},{"ID":14242,"SourceStructureID":46359,"TargetStructureID":5303,"Label":"46359-5303 via Conventional from 46360 -> 6173","Type":"Conventional","Directional":true,"Links":[{"SourceID":46360,"TargetID":6173,"Directional":true}]},{"ID":14243,"SourceStructureID":46359,"TargetStructureID":46373,"Label":"46359-46373 via Conventional from 46372 -> 46374","Type":"Conventional","Directional":true,"Links":[{"SourceID":46372,"TargetID":46374,"Directional":true}]},{"ID":14244,"SourceStructureID":46373,"TargetStructureID":46359,"Label":"46373-46359 via Ribbon Synapse from 46376 -> 46375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46376,"TargetID":46375,"Directional":true}]},{"ID":14245,"SourceStructureID":46379,"TargetStructureID":5303,"Label":"46379-5303 via Conventional from 46380 -> 30548","Type":"Conventional","Directional":true,"Links":[{"SourceID":46380,"TargetID":30548,"Directional":true}]},{"ID":14246,"SourceStructureID":46386,"TargetStructureID":5303,"Label":"46386-5303 via Conventional from 46387 -> 30549","Type":"Conventional","Directional":true,"Links":[{"SourceID":46387,"TargetID":30549,"Directional":true}]},{"ID":14247,"SourceStructureID":46386,"TargetStructureID":46384,"Label":"46386-46384 via Conventional from 127956 -> 127957","Type":"Conventional","Directional":true,"Links":[{"SourceID":127956,"TargetID":127957,"Directional":true}]},{"ID":14248,"SourceStructureID":46388,"TargetStructureID":606,"Label":"46388-606 via Ribbon Synapse from 46403 -> 46404, 46603 -> 46606, 46604 -> 46605, 46629 -> 10496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46403,"TargetID":46404,"Directional":true},{"SourceID":46603,"TargetID":46606,"Directional":true},{"SourceID":46604,"TargetID":46605,"Directional":true},{"SourceID":46629,"TargetID":10496,"Directional":true}]},{"ID":14249,"SourceStructureID":46388,"TargetStructureID":40480,"Label":"46388-40480 via Ribbon Synapse from 121389 -> 59949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121389,"TargetID":59949,"Directional":true}]},{"ID":14250,"SourceStructureID":46388,"TargetStructureID":46589,"Label":"46388-46589 via Ribbon Synapse from 47176 -> 47177, 47179 -> 47181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47176,"TargetID":47177,"Directional":true},{"SourceID":47179,"TargetID":47181,"Directional":true}]},{"ID":14251,"SourceStructureID":46388,"TargetStructureID":127796,"Label":"46388-127796 via Ribbon Synapse from 127807 -> 127806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127807,"TargetID":127806,"Directional":true}]},{"ID":14252,"SourceStructureID":46389,"TargetStructureID":5303,"Label":"46389-5303 via Conventional from 46390 -> 35617","Type":"Conventional","Directional":true,"Links":[{"SourceID":46390,"TargetID":35617,"Directional":true}]},{"ID":14253,"SourceStructureID":46389,"TargetStructureID":12099,"Label":"46389-12099 via Conventional from 46394 -> 12103","Type":"Conventional","Directional":true,"Links":[{"SourceID":46394,"TargetID":12103,"Directional":true}]},{"ID":14254,"SourceStructureID":46391,"TargetStructureID":5303,"Label":"46391-5303 via Conventional from 46392 -> 35618","Type":"Conventional","Directional":true,"Links":[{"SourceID":46392,"TargetID":35618,"Directional":true}]},{"ID":14255,"SourceStructureID":46391,"TargetStructureID":35696,"Label":"46391-35696 via Conventional from 46433 -> 46432","Type":"Conventional","Directional":true,"Links":[{"SourceID":46433,"TargetID":46432,"Directional":true}]},{"ID":14256,"SourceStructureID":46443,"TargetStructureID":5303,"Label":"46443-5303 via Conventional from 46444 -> 35619","Type":"Conventional","Directional":true,"Links":[{"SourceID":46444,"TargetID":35619,"Directional":true}]},{"ID":14257,"SourceStructureID":46443,"TargetStructureID":35696,"Label":"46443-35696 via Conventional from 46445 -> 46446","Type":"Conventional","Directional":true,"Links":[{"SourceID":46445,"TargetID":46446,"Directional":true}]},{"ID":14258,"SourceStructureID":46449,"TargetStructureID":138,"Label":"46449-138 via Conventional from 46457 -> 46458","Type":"Conventional","Directional":true,"Links":[{"SourceID":46457,"TargetID":46458,"Directional":true}]},{"ID":14259,"SourceStructureID":46449,"TargetStructureID":173,"Label":"46449-173 via Conventional from 46452 -> 46454, 60792 -> 60791","Type":"Conventional","Directional":true,"Links":[{"SourceID":46452,"TargetID":46454,"Directional":true},{"SourceID":60792,"TargetID":60791,"Directional":true}]},{"ID":14260,"SourceStructureID":46449,"TargetStructureID":5303,"Label":"46449-5303 via Conventional from 46450 -> 35620","Type":"Conventional","Directional":true,"Links":[{"SourceID":46450,"TargetID":35620,"Directional":true}]},{"ID":14261,"SourceStructureID":46449,"TargetStructureID":6136,"Label":"46449-6136 via Conventional from 60773 -> 12999","Type":"Conventional","Directional":true,"Links":[{"SourceID":60773,"TargetID":12999,"Directional":true}]},{"ID":14262,"SourceStructureID":46461,"TargetStructureID":5303,"Label":"46461-5303 via Conventional from 46462 -> 35621","Type":"Conventional","Directional":true,"Links":[{"SourceID":46462,"TargetID":35621,"Directional":true}]},{"ID":14263,"SourceStructureID":46468,"TargetStructureID":5303,"Label":"46468-5303 via Conventional from 46469 -> 35622","Type":"Conventional","Directional":true,"Links":[{"SourceID":46469,"TargetID":35622,"Directional":true}]},{"ID":14264,"SourceStructureID":46468,"TargetStructureID":7112,"Label":"46468-7112 via Conventional from 46472 -> 121999","Type":"Conventional","Directional":true,"Links":[{"SourceID":46472,"TargetID":121999,"Directional":true}]},{"ID":14265,"SourceStructureID":46468,"TargetStructureID":102116,"Label":"46468-102116 via Conventional from 122013 -> 102119","Type":"Conventional","Directional":true,"Links":[{"SourceID":122013,"TargetID":102119,"Directional":true}]},{"ID":14266,"SourceStructureID":46498,"TargetStructureID":138,"Label":"46498-138 via Conventional from 127911 -> 2199","Type":"Conventional","Directional":true,"Links":[{"SourceID":127911,"TargetID":2199,"Directional":true}]},{"ID":14267,"SourceStructureID":46498,"TargetStructureID":992,"Label":"46498-992 via Conventional from 127912 -> 127913, 127916 -> 127918","Type":"Conventional","Directional":true,"Links":[{"SourceID":127912,"TargetID":127913,"Directional":true},{"SourceID":127916,"TargetID":127918,"Directional":true}]},{"ID":14268,"SourceStructureID":46498,"TargetStructureID":5303,"Label":"46498-5303 via Conventional from 46499 -> 46500","Type":"Conventional","Directional":true,"Links":[{"SourceID":46499,"TargetID":46500,"Directional":true}]},{"ID":14269,"SourceStructureID":46502,"TargetStructureID":181,"Label":"46502-181 via Conventional from 127924 -> 20485","Type":"Conventional","Directional":true,"Links":[{"SourceID":127924,"TargetID":20485,"Directional":true}]},{"ID":14270,"SourceStructureID":46502,"TargetStructureID":5303,"Label":"46502-5303 via Conventional from 46503 -> 46501","Type":"Conventional","Directional":true,"Links":[{"SourceID":46503,"TargetID":46501,"Directional":true}]},{"ID":14271,"SourceStructureID":46502,"TargetStructureID":127930,"Label":"46502-127930 via Conventional from 127928 -> 127932","Type":"Conventional","Directional":true,"Links":[{"SourceID":127928,"TargetID":127932,"Directional":true}]},{"ID":14272,"SourceStructureID":46504,"TargetStructureID":5303,"Label":"46504-5303 via Conventional from 46505 -> 35730","Type":"Conventional","Directional":true,"Links":[{"SourceID":46505,"TargetID":35730,"Directional":true}]},{"ID":14273,"SourceStructureID":46504,"TargetStructureID":46508,"Label":"46504-46508 via Conventional from 46507 -> 46509","Type":"Conventional","Directional":true,"Links":[{"SourceID":46507,"TargetID":46509,"Directional":true}]},{"ID":14274,"SourceStructureID":46504,"TargetStructureID":46512,"Label":"46504-46512 via Conventional from 46510 -> 46513","Type":"Conventional","Directional":true,"Links":[{"SourceID":46510,"TargetID":46513,"Directional":true}]},{"ID":14275,"SourceStructureID":46512,"TargetStructureID":46504,"Label":"46512-46504 via Ribbon Synapse from 60738 -> 46511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60738,"TargetID":46511,"Directional":true}]},{"ID":14276,"SourceStructureID":46514,"TargetStructureID":5303,"Label":"46514-5303 via Conventional from 46515 -> 35731","Type":"Conventional","Directional":true,"Links":[{"SourceID":46515,"TargetID":35731,"Directional":true}]},{"ID":14277,"SourceStructureID":46514,"TargetStructureID":127940,"Label":"46514-127940 via Conventional from 127937 -> 127942","Type":"Conventional","Directional":true,"Links":[{"SourceID":127937,"TargetID":127942,"Directional":true}]},{"ID":14278,"SourceStructureID":46517,"TargetStructureID":175,"Label":"46517-175 via Conventional from 46519 -> 46520","Type":"Conventional","Directional":true,"Links":[{"SourceID":46519,"TargetID":46520,"Directional":true}]},{"ID":14279,"SourceStructureID":46517,"TargetStructureID":5303,"Label":"46517-5303 via Conventional from 46518 -> 46516","Type":"Conventional","Directional":true,"Links":[{"SourceID":46518,"TargetID":46516,"Directional":true}]},{"ID":14280,"SourceStructureID":46521,"TargetStructureID":5303,"Label":"46521-5303 via Conventional from 46522 -> 35732","Type":"Conventional","Directional":true,"Links":[{"SourceID":46522,"TargetID":35732,"Directional":true}]},{"ID":14281,"SourceStructureID":46521,"TargetStructureID":46527,"Label":"46521-46527 via Conventional from 46525 -> 46529","Type":"Conventional","Directional":true,"Links":[{"SourceID":46525,"TargetID":46529,"Directional":true}]},{"ID":14282,"SourceStructureID":46527,"TargetStructureID":46521,"Label":"46527-46521 via Ribbon Synapse from 46528 -> 46526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46528,"TargetID":46526,"Directional":true}]},{"ID":14283,"SourceStructureID":46530,"TargetStructureID":5303,"Label":"46530-5303 via Conventional from 46531 -> 35614, 46535 -> 46536","Type":"Conventional","Directional":true,"Links":[{"SourceID":46531,"TargetID":35614,"Directional":true},{"SourceID":46535,"TargetID":46536,"Directional":true}]},{"ID":14284,"SourceStructureID":46530,"TargetStructureID":6048,"Label":"46530-6048 via Conventional from 46534 -> 127967","Type":"Conventional","Directional":true,"Links":[{"SourceID":46534,"TargetID":127967,"Directional":true}]},{"ID":14285,"SourceStructureID":46530,"TargetStructureID":29340,"Label":"46530-29340 via Conventional from 46538 -> 29390","Type":"Conventional","Directional":true,"Links":[{"SourceID":46538,"TargetID":29390,"Directional":true}]},{"ID":14286,"SourceStructureID":46670,"TargetStructureID":591,"Label":"46670-591 via Conventional from 46671 -> 10280","Type":"Conventional","Directional":true,"Links":[{"SourceID":46671,"TargetID":10280,"Directional":true}]},{"ID":14287,"SourceStructureID":46679,"TargetStructureID":591,"Label":"46679-591 via Conventional from 46680 -> 10281","Type":"Conventional","Directional":true,"Links":[{"SourceID":46680,"TargetID":10281,"Directional":true}]},{"ID":14288,"SourceStructureID":46682,"TargetStructureID":591,"Label":"46682-591 via Conventional from 46683 -> 10282","Type":"Conventional","Directional":true,"Links":[{"SourceID":46683,"TargetID":10282,"Directional":true}]},{"ID":14289,"SourceStructureID":46682,"TargetStructureID":20537,"Label":"46682-20537 via Conventional from 106522 -> 24143","Type":"Conventional","Directional":true,"Links":[{"SourceID":106522,"TargetID":24143,"Directional":true}]},{"ID":14290,"SourceStructureID":46682,"TargetStructureID":93125,"Label":"46682-93125 via Conventional from 106515 -> 93142","Type":"Conventional","Directional":true,"Links":[{"SourceID":106515,"TargetID":93142,"Directional":true}]},{"ID":14291,"SourceStructureID":46693,"TargetStructureID":591,"Label":"46693-591 via Conventional from 46694 -> 10285","Type":"Conventional","Directional":true,"Links":[{"SourceID":46694,"TargetID":10285,"Directional":true}]},{"ID":14292,"SourceStructureID":46693,"TargetStructureID":106528,"Label":"46693-106528 via Conventional from 106527 -> 106529","Type":"Conventional","Directional":true,"Links":[{"SourceID":106527,"TargetID":106529,"Directional":true}]},{"ID":14293,"SourceStructureID":46741,"TargetStructureID":6128,"Label":"46741-6128 via Postsynapse from 137065 -> 137064","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":137065,"TargetID":137064,"Directional":true}]},{"ID":14294,"SourceStructureID":46797,"TargetStructureID":9769,"Label":"46797-9769 via Conventional from 46799 -> 46795, 46800 -> 46796","Type":"Conventional","Directional":true,"Links":[{"SourceID":46799,"TargetID":46795,"Directional":true},{"SourceID":46800,"TargetID":46796,"Directional":true}]},{"ID":14295,"SourceStructureID":46804,"TargetStructureID":9769,"Label":"46804-9769 via Conventional from 46805 -> 46803","Type":"Conventional","Directional":true,"Links":[{"SourceID":46805,"TargetID":46803,"Directional":true}]},{"ID":14296,"SourceStructureID":46807,"TargetStructureID":9769,"Label":"46807-9769 via Conventional from 46809 -> 46806","Type":"Conventional","Directional":true,"Links":[{"SourceID":46809,"TargetID":46806,"Directional":true}]},{"ID":14297,"SourceStructureID":46812,"TargetStructureID":9769,"Label":"46812-9769 via Conventional from 46813 -> 30067","Type":"Conventional","Directional":true,"Links":[{"SourceID":46813,"TargetID":30067,"Directional":true}]},{"ID":14298,"SourceStructureID":46817,"TargetStructureID":9769,"Label":"46817-9769 via Conventional from 46818 -> 23696, 46960 -> 23697","Type":"Conventional","Directional":true,"Links":[{"SourceID":46818,"TargetID":23696,"Directional":true},{"SourceID":46960,"TargetID":23697,"Directional":true}]},{"ID":14299,"SourceStructureID":46817,"TargetStructureID":20728,"Label":"46817-20728 via Conventional from 46819 -> 46820","Type":"Conventional","Directional":true,"Links":[{"SourceID":46819,"TargetID":46820,"Directional":true}]},{"ID":14300,"SourceStructureID":46842,"TargetStructureID":9769,"Label":"46842-9769 via Conventional from 46843 -> 46841","Type":"Conventional","Directional":true,"Links":[{"SourceID":46843,"TargetID":46841,"Directional":true}]},{"ID":14301,"SourceStructureID":46923,"TargetStructureID":9769,"Label":"46923-9769 via Conventional from 46924 -> 30066","Type":"Conventional","Directional":true,"Links":[{"SourceID":46924,"TargetID":30066,"Directional":true}]},{"ID":14302,"SourceStructureID":46931,"TargetStructureID":1620,"Label":"46931-1620 via Conventional from 46932 -> 1624","Type":"Conventional","Directional":true,"Links":[{"SourceID":46932,"TargetID":1624,"Directional":true}]},{"ID":14303,"SourceStructureID":46933,"TargetStructureID":1620,"Label":"46933-1620 via Conventional from 46934 -> 1630","Type":"Conventional","Directional":true,"Links":[{"SourceID":46934,"TargetID":1630,"Directional":true}]},{"ID":14304,"SourceStructureID":46933,"TargetStructureID":69537,"Label":"46933-69537 via Conventional from 93841 -> 69579","Type":"Conventional","Directional":true,"Links":[{"SourceID":93841,"TargetID":69579,"Directional":true}]},{"ID":14305,"SourceStructureID":46943,"TargetStructureID":46933,"Label":"46943-46933 via Ribbon Synapse from 46944 -> 46941, 46945 -> 46942","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46944,"TargetID":46941,"Directional":true},{"SourceID":46945,"TargetID":46942,"Directional":true}]},{"ID":14306,"SourceStructureID":46955,"TargetStructureID":9769,"Label":"46955-9769 via Conventional from 46956 -> 23695","Type":"Conventional","Directional":true,"Links":[{"SourceID":46956,"TargetID":23695,"Directional":true}]},{"ID":14307,"SourceStructureID":46957,"TargetStructureID":9769,"Label":"46957-9769 via Conventional from 46958 -> 30068","Type":"Conventional","Directional":true,"Links":[{"SourceID":46958,"TargetID":30068,"Directional":true}]},{"ID":14308,"SourceStructureID":46962,"TargetStructureID":9769,"Label":"46962-9769 via Conventional from 46963 -> 46961","Type":"Conventional","Directional":true,"Links":[{"SourceID":46963,"TargetID":46961,"Directional":true}]},{"ID":14309,"SourceStructureID":46975,"TargetStructureID":9769,"Label":"46975-9769 via Conventional from 46976 -> 12339","Type":"Conventional","Directional":true,"Links":[{"SourceID":46976,"TargetID":12339,"Directional":true}]},{"ID":14310,"SourceStructureID":46979,"TargetStructureID":9769,"Label":"46979-9769 via Conventional from 46980 -> 45324","Type":"Conventional","Directional":true,"Links":[{"SourceID":46980,"TargetID":45324,"Directional":true}]},{"ID":14311,"SourceStructureID":46979,"TargetStructureID":62500,"Label":"46979-62500 via Conventional from 46981 -> 62521","Type":"Conventional","Directional":true,"Links":[{"SourceID":46981,"TargetID":62521,"Directional":true}]},{"ID":14312,"SourceStructureID":46982,"TargetStructureID":9769,"Label":"46982-9769 via Conventional from 46983 -> 12328","Type":"Conventional","Directional":true,"Links":[{"SourceID":46983,"TargetID":12328,"Directional":true}]},{"ID":14313,"SourceStructureID":46984,"TargetStructureID":9769,"Label":"46984-9769 via Conventional from 46985 -> 30071","Type":"Conventional","Directional":true,"Links":[{"SourceID":46985,"TargetID":30071,"Directional":true}]},{"ID":14314,"SourceStructureID":46988,"TargetStructureID":9769,"Label":"46988-9769 via Conventional from 46989 -> 30070","Type":"Conventional","Directional":true,"Links":[{"SourceID":46989,"TargetID":30070,"Directional":true}]},{"ID":14315,"SourceStructureID":46994,"TargetStructureID":9769,"Label":"46994-9769 via Conventional from 46995 -> 30069","Type":"Conventional","Directional":true,"Links":[{"SourceID":46995,"TargetID":30069,"Directional":true}]},{"ID":14316,"SourceStructureID":46998,"TargetStructureID":9769,"Label":"46998-9769 via Conventional from 46999 -> 12354","Type":"Conventional","Directional":true,"Links":[{"SourceID":46999,"TargetID":12354,"Directional":true}]},{"ID":14317,"SourceStructureID":47002,"TargetStructureID":46998,"Label":"47002-46998 via Conventional from 47003 -> 47000","Type":"Conventional","Directional":true,"Links":[{"SourceID":47003,"TargetID":47000,"Directional":true}]},{"ID":14318,"SourceStructureID":47004,"TargetStructureID":9769,"Label":"47004-9769 via Conventional from 47005 -> 12355","Type":"Conventional","Directional":true,"Links":[{"SourceID":47005,"TargetID":12355,"Directional":true}]},{"ID":14319,"SourceStructureID":47007,"TargetStructureID":47004,"Label":"47007-47004 via Conventional from 47008 -> 47006","Type":"Conventional","Directional":true,"Links":[{"SourceID":47008,"TargetID":47006,"Directional":true}]},{"ID":14320,"SourceStructureID":47010,"TargetStructureID":9769,"Label":"47010-9769 via Conventional from 47011 -> 47009","Type":"Conventional","Directional":true,"Links":[{"SourceID":47011,"TargetID":47009,"Directional":true}]},{"ID":14321,"SourceStructureID":47010,"TargetStructureID":47013,"Label":"47010-47013 via Conventional from 47012 -> 47016","Type":"Conventional","Directional":true,"Links":[{"SourceID":47012,"TargetID":47016,"Directional":true}]},{"ID":14322,"SourceStructureID":47104,"TargetStructureID":142,"Label":"47104-142 via Conventional from 47137 -> 47141, 47149 -> 47150, 47151 -> 47152","Type":"Conventional","Directional":true,"Links":[{"SourceID":47137,"TargetID":47141,"Directional":true},{"SourceID":47149,"TargetID":47150,"Directional":true},{"SourceID":47151,"TargetID":47152,"Directional":true}]},{"ID":14323,"SourceStructureID":47104,"TargetStructureID":299,"Label":"47104-299 via Conventional from 47106 -> 47107","Type":"Conventional","Directional":true,"Links":[{"SourceID":47106,"TargetID":47107,"Directional":true}]},{"ID":14324,"SourceStructureID":47104,"TargetStructureID":307,"Label":"47104-307 via Conventional from 47122 -> 16781","Type":"Conventional","Directional":true,"Links":[{"SourceID":47122,"TargetID":16781,"Directional":true}]},{"ID":14325,"SourceStructureID":47104,"TargetStructureID":408,"Label":"47104-408 via Conventional from 47117 -> 47118","Type":"Conventional","Directional":true,"Links":[{"SourceID":47117,"TargetID":47118,"Directional":true}]},{"ID":14326,"SourceStructureID":47104,"TargetStructureID":485,"Label":"47104-485 via Conventional from 47123 -> 47124","Type":"Conventional","Directional":true,"Links":[{"SourceID":47123,"TargetID":47124,"Directional":true}]},{"ID":14327,"SourceStructureID":47104,"TargetStructureID":1724,"Label":"47104-1724 via Conventional from 47131 -> 3992, 47133 -> 1775","Type":"Conventional","Directional":true,"Links":[{"SourceID":47131,"TargetID":3992,"Directional":true},{"SourceID":47133,"TargetID":1775,"Directional":true}]},{"ID":14328,"SourceStructureID":47104,"TargetStructureID":5279,"Label":"47104-5279 via Conventional from 47136 -> 11481, 47145 -> 47144, 147284 -> 147283","Type":"Conventional","Directional":true,"Links":[{"SourceID":47136,"TargetID":11481,"Directional":true},{"SourceID":47145,"TargetID":47144,"Directional":true},{"SourceID":147284,"TargetID":147283,"Directional":true}]},{"ID":14329,"SourceStructureID":47104,"TargetStructureID":5601,"Label":"47104-5601 via Conventional from 47175 -> 47174","Type":"Conventional","Directional":true,"Links":[{"SourceID":47175,"TargetID":47174,"Directional":true}]},{"ID":14330,"SourceStructureID":47104,"TargetStructureID":6047,"Label":"47104-6047 via Conventional from 47184 -> 30636, 47187 -> 30633, 47188 -> 30631, 47189 -> 47190","Type":"Conventional","Directional":true,"Links":[{"SourceID":47184,"TargetID":30636,"Directional":true},{"SourceID":47187,"TargetID":30633,"Directional":true},{"SourceID":47188,"TargetID":30631,"Directional":true},{"SourceID":47189,"TargetID":47190,"Directional":true}]},{"ID":14331,"SourceStructureID":47104,"TargetStructureID":6050,"Label":"47104-6050 via Conventional from 47153 -> 47154, 47156 -> 30952, 47168 -> 30623, 47170 -> 30625","Type":"Conventional","Directional":true,"Links":[{"SourceID":47153,"TargetID":47154,"Directional":true},{"SourceID":47156,"TargetID":30952,"Directional":true},{"SourceID":47168,"TargetID":30623,"Directional":true},{"SourceID":47170,"TargetID":30625,"Directional":true}]},{"ID":14332,"SourceStructureID":47104,"TargetStructureID":6155,"Label":"47104-6155 via Conventional from 47127 -> 15512, 107745 -> 107746, 108267 -> 49082","Type":"Conventional","Directional":true,"Links":[{"SourceID":47127,"TargetID":15512,"Directional":true},{"SourceID":107745,"TargetID":107746,"Directional":true},{"SourceID":108267,"TargetID":49082,"Directional":true}]},{"ID":14333,"SourceStructureID":47104,"TargetStructureID":11033,"Label":"47104-11033 via Conventional from 47171 -> 47172","Type":"Conventional","Directional":true,"Links":[{"SourceID":47171,"TargetID":47172,"Directional":true}]},{"ID":14334,"SourceStructureID":47104,"TargetStructureID":35894,"Label":"47104-35894 via Conventional from 47121 -> 35896","Type":"Conventional","Directional":true,"Links":[{"SourceID":47121,"TargetID":35896,"Directional":true}]},{"ID":14335,"SourceStructureID":47104,"TargetStructureID":85002,"Label":"47104-85002 via Conventional from 126303 -> 126302","Type":"Conventional","Directional":true,"Links":[{"SourceID":126303,"TargetID":126302,"Directional":true}]},{"ID":14336,"SourceStructureID":47109,"TargetStructureID":299,"Label":"47109-299 via Conventional from 47112 -> 47113","Type":"Conventional","Directional":true,"Links":[{"SourceID":47112,"TargetID":47113,"Directional":true}]},{"ID":14337,"SourceStructureID":47109,"TargetStructureID":47104,"Label":"47109-47104 via Conventional from 47110 -> 47108","Type":"Conventional","Directional":true,"Links":[{"SourceID":47110,"TargetID":47108,"Directional":true}]},{"ID":14338,"SourceStructureID":47195,"TargetStructureID":61270,"Label":"47195-61270 via Ribbon Synapse from 61311 -> 61310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61311,"TargetID":61310,"Directional":true}]},{"ID":14339,"SourceStructureID":47204,"TargetStructureID":223,"Label":"47204-223 via Conventional from 47205 -> 47203","Type":"Conventional","Directional":true,"Links":[{"SourceID":47205,"TargetID":47203,"Directional":true}]},{"ID":14340,"SourceStructureID":47445,"TargetStructureID":606,"Label":"47445-606 via Ribbon Synapse from 47446 -> 47447, 47455 -> 47456, 47458 -> 47460, 47459 -> 47461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47446,"TargetID":47447,"Directional":true},{"SourceID":47455,"TargetID":47456,"Directional":true},{"SourceID":47458,"TargetID":47460,"Directional":true},{"SourceID":47459,"TargetID":47461,"Directional":true}]},{"ID":14341,"SourceStructureID":47445,"TargetStructureID":7594,"Label":"47445-7594 via Ribbon Synapse from 47455 -> 47457","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47455,"TargetID":47457,"Directional":true}]},{"ID":14342,"SourceStructureID":47445,"TargetStructureID":55232,"Label":"47445-55232 via Ribbon Synapse from 118182 -> 55396","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118182,"TargetID":55396,"Directional":true}]},{"ID":14343,"SourceStructureID":47445,"TargetStructureID":87413,"Label":"47445-87413 via Ribbon Synapse from 87415 -> 87414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87415,"TargetID":87414,"Directional":true}]},{"ID":14344,"SourceStructureID":47593,"TargetStructureID":606,"Label":"47593-606 via Conventional from 47594 -> 47595","Type":"Conventional","Directional":true,"Links":[{"SourceID":47594,"TargetID":47595,"Directional":true}]},{"ID":14345,"SourceStructureID":47833,"TargetStructureID":606,"Label":"47833-606 via Conventional from 47834 -> 47832","Type":"Conventional","Directional":true,"Links":[{"SourceID":47834,"TargetID":47832,"Directional":true}]},{"ID":14346,"SourceStructureID":48455,"TargetStructureID":121946,"Label":"48455-121946 via Conventional from 48459 -> 121950","Type":"Conventional","Directional":true,"Links":[{"SourceID":48459,"TargetID":121950,"Directional":true}]},{"ID":14347,"SourceStructureID":48516,"TargetStructureID":606,"Label":"48516-606 via Ribbon Synapse from 48518 -> 48520, 48519 -> 48521, 51642 -> 51643, 51669 -> 51670, 51688 -> 51689, 51695 -> 51696","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48518,"TargetID":48520,"Directional":true},{"SourceID":48519,"TargetID":48521,"Directional":true},{"SourceID":51642,"TargetID":51643,"Directional":true},{"SourceID":51669,"TargetID":51670,"Directional":true},{"SourceID":51688,"TargetID":51689,"Directional":true},{"SourceID":51695,"TargetID":51696,"Directional":true}]},{"ID":14348,"SourceStructureID":48516,"TargetStructureID":89577,"Label":"48516-89577 via BC Conventional Synapse from 48559 -> 89579","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":48559,"TargetID":89579,"Directional":true}]},{"ID":14349,"SourceStructureID":48573,"TargetStructureID":909,"Label":"48573-909 via Conventional from 48608 -> 45934","Type":"Conventional","Directional":true,"Links":[{"SourceID":48608,"TargetID":45934,"Directional":true}]},{"ID":14350,"SourceStructureID":48573,"TargetStructureID":1724,"Label":"48573-1724 via Conventional from 99533 -> 4058","Type":"Conventional","Directional":true,"Links":[{"SourceID":99533,"TargetID":4058,"Directional":true}]},{"ID":14351,"SourceStructureID":48573,"TargetStructureID":5561,"Label":"48573-5561 via Conventional from 48600 -> 46304, 48607 -> 46296","Type":"Conventional","Directional":true,"Links":[{"SourceID":48600,"TargetID":46304,"Directional":true},{"SourceID":48607,"TargetID":46296,"Directional":true}]},{"ID":14352,"SourceStructureID":48573,"TargetStructureID":7024,"Label":"48573-7024 via Conventional from 48610 -> 48609","Type":"Conventional","Directional":true,"Links":[{"SourceID":48610,"TargetID":48609,"Directional":true}]},{"ID":14353,"SourceStructureID":48612,"TargetStructureID":372,"Label":"48612-372 via Conventional from 48623 -> 30786, 48627 -> 46917","Type":"Conventional","Directional":true,"Links":[{"SourceID":48623,"TargetID":30786,"Directional":true},{"SourceID":48627,"TargetID":46917,"Directional":true}]},{"ID":14354,"SourceStructureID":48612,"TargetStructureID":1724,"Label":"48612-1724 via Conventional from 48616 -> 1810","Type":"Conventional","Directional":true,"Links":[{"SourceID":48616,"TargetID":1810,"Directional":true}]},{"ID":14355,"SourceStructureID":48612,"TargetStructureID":6155,"Label":"48612-6155 via Conventional from 48618 -> 16136, 104903 -> 104902","Type":"Conventional","Directional":true,"Links":[{"SourceID":48618,"TargetID":16136,"Directional":true},{"SourceID":104903,"TargetID":104902,"Directional":true}]},{"ID":14356,"SourceStructureID":48612,"TargetStructureID":23512,"Label":"48612-23512 via Conventional from 48615 -> 23545","Type":"Conventional","Directional":true,"Links":[{"SourceID":48615,"TargetID":23545,"Directional":true}]},{"ID":14357,"SourceStructureID":48612,"TargetStructureID":48612,"Label":"48612-48612 via Conventional from 48619 -> 48620","Type":"Conventional","Directional":true,"Links":[{"SourceID":48619,"TargetID":48620,"Directional":true}]},{"ID":14358,"SourceStructureID":49186,"TargetStructureID":49185,"Label":"49186-49185 via Ribbon Synapse from 49187 -> 49188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49187,"TargetID":49188,"Directional":true}]},{"ID":14359,"SourceStructureID":49487,"TargetStructureID":518,"Label":"49487-518 via Conventional from 49488 -> 49486","Type":"Conventional","Directional":true,"Links":[{"SourceID":49488,"TargetID":49486,"Directional":true}]},{"ID":14360,"SourceStructureID":49489,"TargetStructureID":483,"Label":"49489-483 via Conventional from 116702 -> 6783","Type":"Conventional","Directional":true,"Links":[{"SourceID":116702,"TargetID":6783,"Directional":true}]},{"ID":14361,"SourceStructureID":49489,"TargetStructureID":485,"Label":"49489-485 via Conventional from 49520 -> 47626, 49522 -> 148422, 49523 -> 49527, 49528 -> 49530","Type":"Conventional","Directional":true,"Links":[{"SourceID":49520,"TargetID":47626,"Directional":true},{"SourceID":49522,"TargetID":148422,"Directional":true},{"SourceID":49523,"TargetID":49527,"Directional":true},{"SourceID":49528,"TargetID":49530,"Directional":true}]},{"ID":14362,"SourceStructureID":49489,"TargetStructureID":593,"Label":"49489-593 via Conventional from 49596 -> 49599, 61950 -> 61949","Type":"Conventional","Directional":true,"Links":[{"SourceID":49596,"TargetID":49599,"Directional":true},{"SourceID":61950,"TargetID":61949,"Directional":true}]},{"ID":14363,"SourceStructureID":49489,"TargetStructureID":70095,"Label":"49489-70095 via Conventional from 49533 -> 70096","Type":"Conventional","Directional":true,"Links":[{"SourceID":49533,"TargetID":70096,"Directional":true}]},{"ID":14364,"SourceStructureID":49554,"TargetStructureID":606,"Label":"49554-606 via Ribbon Synapse from 49555 -> 5079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49555,"TargetID":5079,"Directional":true}]},{"ID":14365,"SourceStructureID":49600,"TargetStructureID":517,"Label":"49600-517 via Conventional from 49602 -> 16440","Type":"Conventional","Directional":true,"Links":[{"SourceID":49602,"TargetID":16440,"Directional":true}]},{"ID":14366,"SourceStructureID":49600,"TargetStructureID":6156,"Label":"49600-6156 via Conventional from 49603 -> 23263","Type":"Conventional","Directional":true,"Links":[{"SourceID":49603,"TargetID":23263,"Directional":true}]},{"ID":14367,"SourceStructureID":49600,"TargetStructureID":49489,"Label":"49600-49489 via Conventional from 49601 -> 49595","Type":"Conventional","Directional":true,"Links":[{"SourceID":49601,"TargetID":49595,"Directional":true}]},{"ID":14368,"SourceStructureID":50449,"TargetStructureID":4890,"Label":"50449-4890 via Ribbon Synapse from 50652 -> 64878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50652,"TargetID":64878,"Directional":true}]},{"ID":14369,"SourceStructureID":50449,"TargetStructureID":62190,"Label":"50449-62190 via Ribbon Synapse from 50559 -> 62192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50559,"TargetID":62192,"Directional":true}]},{"ID":14370,"SourceStructureID":51617,"TargetStructureID":142,"Label":"51617-142 via Conventional from 82436 -> 126007","Type":"Conventional","Directional":true,"Links":[{"SourceID":82436,"TargetID":126007,"Directional":true}]},{"ID":14371,"SourceStructureID":51617,"TargetStructureID":168,"Label":"51617-168 via Conventional from 115460 -> 4322, 115461 -> 4265, 115467 -> 4296, 115469 -> 92777","Type":"Conventional","Directional":true,"Links":[{"SourceID":115460,"TargetID":4322,"Directional":true},{"SourceID":115461,"TargetID":4265,"Directional":true},{"SourceID":115467,"TargetID":4296,"Directional":true},{"SourceID":115469,"TargetID":92777,"Directional":true}]},{"ID":14372,"SourceStructureID":51617,"TargetStructureID":170,"Label":"51617-170 via Conventional from 89853 -> 89854","Type":"Conventional","Directional":true,"Links":[{"SourceID":89853,"TargetID":89854,"Directional":true}]},{"ID":14373,"SourceStructureID":51667,"TargetStructureID":6050,"Label":"51667-6050 via Conventional from 127223 -> 127224","Type":"Conventional","Directional":true,"Links":[{"SourceID":127223,"TargetID":127224,"Directional":true}]},{"ID":14374,"SourceStructureID":51700,"TargetStructureID":5513,"Label":"51700-5513 via Conventional from 51701 -> 29626","Type":"Conventional","Directional":true,"Links":[{"SourceID":51701,"TargetID":29626,"Directional":true}]},{"ID":14375,"SourceStructureID":51711,"TargetStructureID":606,"Label":"51711-606 via Ribbon Synapse from 51712 -> 51713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51712,"TargetID":51713,"Directional":true}]},{"ID":14376,"SourceStructureID":51715,"TargetStructureID":606,"Label":"51715-606 via Ribbon Synapse from 51716 -> 51717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51716,"TargetID":51717,"Directional":true}]},{"ID":14377,"SourceStructureID":51715,"TargetStructureID":5117,"Label":"51715-5117 via Ribbon Synapse from 52079 -> 28827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52079,"TargetID":28827,"Directional":true}]},{"ID":14378,"SourceStructureID":51808,"TargetStructureID":21299,"Label":"51808-21299 via Conventional from 51810 -> 48985","Type":"Conventional","Directional":true,"Links":[{"SourceID":51810,"TargetID":48985,"Directional":true}]},{"ID":14379,"SourceStructureID":51808,"TargetStructureID":51812,"Label":"51808-51812 via Conventional from 51811 -> 51814","Type":"Conventional","Directional":true,"Links":[{"SourceID":51811,"TargetID":51814,"Directional":true}]},{"ID":14380,"SourceStructureID":51812,"TargetStructureID":170,"Label":"51812-170 via Conventional from 88545 -> 88543","Type":"Conventional","Directional":true,"Links":[{"SourceID":88545,"TargetID":88543,"Directional":true}]},{"ID":14381,"SourceStructureID":51812,"TargetStructureID":88666,"Label":"51812-88666 via Conventional from 82454 -> 88719","Type":"Conventional","Directional":true,"Links":[{"SourceID":82454,"TargetID":88719,"Directional":true}]},{"ID":14382,"SourceStructureID":51923,"TargetStructureID":89670,"Label":"51923-89670 via Conventional from 51930 -> 89675","Type":"Conventional","Directional":true,"Links":[{"SourceID":51930,"TargetID":89675,"Directional":true}]},{"ID":14383,"SourceStructureID":52147,"TargetStructureID":5118,"Label":"52147-5118 via Conventional from 52148 -> 6526","Type":"Conventional","Directional":true,"Links":[{"SourceID":52148,"TargetID":6526,"Directional":true}]},{"ID":14384,"SourceStructureID":52152,"TargetStructureID":7861,"Label":"52152-7861 via Ribbon Synapse from 52155 -> 29644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52155,"TargetID":29644,"Directional":true}]},{"ID":14385,"SourceStructureID":52247,"TargetStructureID":597,"Label":"52247-597 via Ribbon Synapse from 60468 -> 60469","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60468,"TargetID":60469,"Directional":true}]},{"ID":14386,"SourceStructureID":52247,"TargetStructureID":6857,"Label":"52247-6857 via Ribbon Synapse from 52248 -> 35033, 52251 -> 7533, 52252 -> 52246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52248,"TargetID":35033,"Directional":true},{"SourceID":52251,"TargetID":7533,"Directional":true},{"SourceID":52252,"TargetID":52246,"Directional":true}]},{"ID":14387,"SourceStructureID":52257,"TargetStructureID":8032,"Label":"52257-8032 via Ribbon Synapse from 52318 -> 52319, 52323 -> 26677","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52318,"TargetID":52319,"Directional":true},{"SourceID":52323,"TargetID":26677,"Directional":true}]},{"ID":14388,"SourceStructureID":52257,"TargetStructureID":9769,"Label":"52257-9769 via Ribbon Synapse from 52327 -> 30172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52327,"TargetID":30172,"Directional":true}]},{"ID":14389,"SourceStructureID":52257,"TargetStructureID":119241,"Label":"52257-119241 via Ribbon Synapse from 119246 -> 119247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119246,"TargetID":119247,"Directional":true}]},{"ID":14390,"SourceStructureID":52262,"TargetStructureID":6118,"Label":"52262-6118 via Conventional from 52270 -> 52271","Type":"Conventional","Directional":true,"Links":[{"SourceID":52270,"TargetID":52271,"Directional":true}]},{"ID":14391,"SourceStructureID":52262,"TargetStructureID":6146,"Label":"52262-6146 via Conventional from 52264 -> 52265","Type":"Conventional","Directional":true,"Links":[{"SourceID":52264,"TargetID":52265,"Directional":true}]},{"ID":14392,"SourceStructureID":52262,"TargetStructureID":6158,"Label":"52262-6158 via Conventional from 52286 -> 52287","Type":"Conventional","Directional":true,"Links":[{"SourceID":52286,"TargetID":52287,"Directional":true}]},{"ID":14393,"SourceStructureID":52262,"TargetStructureID":52257,"Label":"52262-52257 via Conventional from 52263 -> 52261","Type":"Conventional","Directional":true,"Links":[{"SourceID":52263,"TargetID":52261,"Directional":true}]},{"ID":14394,"SourceStructureID":52410,"TargetStructureID":5503,"Label":"52410-5503 via Conventional from 52436 -> 52440","Type":"Conventional","Directional":true,"Links":[{"SourceID":52436,"TargetID":52440,"Directional":true}]},{"ID":14395,"SourceStructureID":52410,"TargetStructureID":6118,"Label":"52410-6118 via Conventional from 52434 -> 65853","Type":"Conventional","Directional":true,"Links":[{"SourceID":52434,"TargetID":65853,"Directional":true}]},{"ID":14396,"SourceStructureID":52410,"TargetStructureID":6120,"Label":"52410-6120 via Conventional from 52412 -> 52413, 52415 -> 37242, 52417 -> 52418, 52423 -> 52424, 52429 -> 52430","Type":"Conventional","Directional":true,"Links":[{"SourceID":52412,"TargetID":52413,"Directional":true},{"SourceID":52415,"TargetID":37242,"Directional":true},{"SourceID":52417,"TargetID":52418,"Directional":true},{"SourceID":52423,"TargetID":52424,"Directional":true},{"SourceID":52429,"TargetID":52430,"Directional":true}]},{"ID":14397,"SourceStructureID":52410,"TargetStructureID":6141,"Label":"52410-6141 via Conventional from 52422 -> 6472","Type":"Conventional","Directional":true,"Links":[{"SourceID":52422,"TargetID":6472,"Directional":true}]},{"ID":14398,"SourceStructureID":52410,"TargetStructureID":8040,"Label":"52410-8040 via Conventional from 52561 -> 48631","Type":"Conventional","Directional":true,"Links":[{"SourceID":52561,"TargetID":48631,"Directional":true}]},{"ID":14399,"SourceStructureID":52929,"TargetStructureID":9769,"Label":"52929-9769 via Conventional from 52930 -> 52926","Type":"Conventional","Directional":true,"Links":[{"SourceID":52930,"TargetID":52926,"Directional":true}]},{"ID":14400,"SourceStructureID":52932,"TargetStructureID":9769,"Label":"52932-9769 via Conventional from 52933 -> 52928","Type":"Conventional","Directional":true,"Links":[{"SourceID":52933,"TargetID":52928,"Directional":true}]},{"ID":14401,"SourceStructureID":52955,"TargetStructureID":9769,"Label":"52955-9769 via Conventional from 52956 -> 52957","Type":"Conventional","Directional":true,"Links":[{"SourceID":52956,"TargetID":52957,"Directional":true}]},{"ID":14402,"SourceStructureID":52960,"TargetStructureID":9769,"Label":"52960-9769 via Conventional from 52962 -> 52959","Type":"Conventional","Directional":true,"Links":[{"SourceID":52962,"TargetID":52959,"Directional":true}]},{"ID":14403,"SourceStructureID":52991,"TargetStructureID":9769,"Label":"52991-9769 via Conventional from 52992 -> 52990","Type":"Conventional","Directional":true,"Links":[{"SourceID":52992,"TargetID":52990,"Directional":true}]},{"ID":14404,"SourceStructureID":53000,"TargetStructureID":5598,"Label":"53000-5598 via Conventional from 53123 -> 53124","Type":"Conventional","Directional":true,"Links":[{"SourceID":53123,"TargetID":53124,"Directional":true}]},{"ID":14405,"SourceStructureID":53127,"TargetStructureID":5107,"Label":"53127-5107 via Conventional from 53128 -> 53132","Type":"Conventional","Directional":true,"Links":[{"SourceID":53128,"TargetID":53132,"Directional":true}]},{"ID":14406,"SourceStructureID":53127,"TargetStructureID":9769,"Label":"53127-9769 via Conventional from 53130 -> 29959","Type":"Conventional","Directional":true,"Links":[{"SourceID":53130,"TargetID":29959,"Directional":true}]},{"ID":14407,"SourceStructureID":53166,"TargetStructureID":9769,"Label":"53166-9769 via Conventional from 53167 -> 29956","Type":"Conventional","Directional":true,"Links":[{"SourceID":53167,"TargetID":29956,"Directional":true}]},{"ID":14408,"SourceStructureID":53169,"TargetStructureID":9769,"Label":"53169-9769 via Conventional from 53170 -> 29953, 53175 -> 29952","Type":"Conventional","Directional":true,"Links":[{"SourceID":53170,"TargetID":29953,"Directional":true},{"SourceID":53175,"TargetID":29952,"Directional":true}]},{"ID":14409,"SourceStructureID":53173,"TargetStructureID":9769,"Label":"53173-9769 via Conventional from 53174 -> 29940","Type":"Conventional","Directional":true,"Links":[{"SourceID":53174,"TargetID":29940,"Directional":true}]},{"ID":14410,"SourceStructureID":53178,"TargetStructureID":9769,"Label":"53178-9769 via Conventional from 53179 -> 45191","Type":"Conventional","Directional":true,"Links":[{"SourceID":53179,"TargetID":45191,"Directional":true}]},{"ID":14411,"SourceStructureID":53180,"TargetStructureID":9769,"Label":"53180-9769 via Conventional from 53181 -> 29939","Type":"Conventional","Directional":true,"Links":[{"SourceID":53181,"TargetID":29939,"Directional":true}]},{"ID":14412,"SourceStructureID":53182,"TargetStructureID":1021,"Label":"53182-1021 via Conventional from 53184 -> 53185","Type":"Conventional","Directional":true,"Links":[{"SourceID":53184,"TargetID":53185,"Directional":true}]},{"ID":14413,"SourceStructureID":53182,"TargetStructureID":3756,"Label":"53182-3756 via Conventional from 116088 -> 116089","Type":"Conventional","Directional":true,"Links":[{"SourceID":116088,"TargetID":116089,"Directional":true}]},{"ID":14414,"SourceStructureID":53182,"TargetStructureID":5650,"Label":"53182-5650 via Conventional from 105159 -> 105160","Type":"Conventional","Directional":true,"Links":[{"SourceID":105159,"TargetID":105160,"Directional":true}]},{"ID":14415,"SourceStructureID":53186,"TargetStructureID":9769,"Label":"53186-9769 via Conventional from 53187 -> 29934","Type":"Conventional","Directional":true,"Links":[{"SourceID":53187,"TargetID":29934,"Directional":true}]},{"ID":14416,"SourceStructureID":53195,"TargetStructureID":9769,"Label":"53195-9769 via Conventional from 53198 -> 20261","Type":"Conventional","Directional":true,"Links":[{"SourceID":53198,"TargetID":20261,"Directional":true}]},{"ID":14417,"SourceStructureID":53202,"TargetStructureID":32892,"Label":"53202-32892 via Conventional from 53210 -> 53211","Type":"Conventional","Directional":true,"Links":[{"SourceID":53210,"TargetID":53211,"Directional":true}]},{"ID":14418,"SourceStructureID":53224,"TargetStructureID":5562,"Label":"53224-5562 via Conventional from 77548 -> 77547","Type":"Conventional","Directional":true,"Links":[{"SourceID":77548,"TargetID":77547,"Directional":true}]},{"ID":14419,"SourceStructureID":53232,"TargetStructureID":5561,"Label":"53232-5561 via Conventional from 53233 -> 119284","Type":"Conventional","Directional":true,"Links":[{"SourceID":53233,"TargetID":119284,"Directional":true}]},{"ID":14420,"SourceStructureID":53235,"TargetStructureID":9769,"Label":"53235-9769 via Conventional from 53236 -> 20255","Type":"Conventional","Directional":true,"Links":[{"SourceID":53236,"TargetID":20255,"Directional":true}]},{"ID":14421,"SourceStructureID":53241,"TargetStructureID":9769,"Label":"53241-9769 via Conventional from 53242 -> 20251","Type":"Conventional","Directional":true,"Links":[{"SourceID":53242,"TargetID":20251,"Directional":true}]},{"ID":14422,"SourceStructureID":53243,"TargetStructureID":9769,"Label":"53243-9769 via Conventional from 53244 -> 20250","Type":"Conventional","Directional":true,"Links":[{"SourceID":53244,"TargetID":20250,"Directional":true}]},{"ID":14423,"SourceStructureID":53245,"TargetStructureID":7024,"Label":"53245-7024 via Conventional from 53249 -> 20247","Type":"Conventional","Directional":true,"Links":[{"SourceID":53249,"TargetID":20247,"Directional":true}]},{"ID":14424,"SourceStructureID":53250,"TargetStructureID":9769,"Label":"53250-9769 via Conventional from 53251 -> 20236","Type":"Conventional","Directional":true,"Links":[{"SourceID":53251,"TargetID":20236,"Directional":true}]},{"ID":14425,"SourceStructureID":53252,"TargetStructureID":9769,"Label":"53252-9769 via Conventional from 53256 -> 20233","Type":"Conventional","Directional":true,"Links":[{"SourceID":53256,"TargetID":20233,"Directional":true}]},{"ID":14426,"SourceStructureID":53257,"TargetStructureID":9769,"Label":"53257-9769 via Conventional from 53258 -> 20226","Type":"Conventional","Directional":true,"Links":[{"SourceID":53258,"TargetID":20226,"Directional":true}]},{"ID":14427,"SourceStructureID":53259,"TargetStructureID":9769,"Label":"53259-9769 via Conventional from 53260 -> 20225","Type":"Conventional","Directional":true,"Links":[{"SourceID":53260,"TargetID":20225,"Directional":true}]},{"ID":14428,"SourceStructureID":53263,"TargetStructureID":9769,"Label":"53263-9769 via Conventional from 53265 -> 20227","Type":"Conventional","Directional":true,"Links":[{"SourceID":53265,"TargetID":20227,"Directional":true}]},{"ID":14429,"SourceStructureID":53324,"TargetStructureID":9769,"Label":"53324-9769 via Conventional from 53326 -> 53328","Type":"Conventional","Directional":true,"Links":[{"SourceID":53326,"TargetID":53328,"Directional":true}]},{"ID":14430,"SourceStructureID":53330,"TargetStructureID":9769,"Label":"53330-9769 via Conventional from 53331 -> 53329","Type":"Conventional","Directional":true,"Links":[{"SourceID":53331,"TargetID":53329,"Directional":true}]},{"ID":14431,"SourceStructureID":53335,"TargetStructureID":9769,"Label":"53335-9769 via Conventional from 53336 -> 53337","Type":"Conventional","Directional":true,"Links":[{"SourceID":53336,"TargetID":53337,"Directional":true}]},{"ID":14432,"SourceStructureID":53344,"TargetStructureID":5345,"Label":"53344-5345 via Conventional from 53350 -> 53349","Type":"Conventional","Directional":true,"Links":[{"SourceID":53350,"TargetID":53349,"Directional":true}]},{"ID":14433,"SourceStructureID":53344,"TargetStructureID":5517,"Label":"53344-5517 via Conventional from 53351 -> 53352","Type":"Conventional","Directional":true,"Links":[{"SourceID":53351,"TargetID":53352,"Directional":true}]},{"ID":14434,"SourceStructureID":53344,"TargetStructureID":53335,"Label":"53344-53335 via Conventional from 53353 -> 53338","Type":"Conventional","Directional":true,"Links":[{"SourceID":53353,"TargetID":53338,"Directional":true}]},{"ID":14435,"SourceStructureID":53355,"TargetStructureID":9769,"Label":"53355-9769 via Conventional from 53356 -> 20304","Type":"Conventional","Directional":true,"Links":[{"SourceID":53356,"TargetID":20304,"Directional":true}]},{"ID":14436,"SourceStructureID":53374,"TargetStructureID":598,"Label":"53374-598 via Conventional from 53378 -> 38534","Type":"Conventional","Directional":true,"Links":[{"SourceID":53378,"TargetID":38534,"Directional":true}]},{"ID":14437,"SourceStructureID":53374,"TargetStructureID":9769,"Label":"53374-9769 via Conventional from 53375 -> 11258","Type":"Conventional","Directional":true,"Links":[{"SourceID":53375,"TargetID":11258,"Directional":true}]},{"ID":14438,"SourceStructureID":53393,"TargetStructureID":9769,"Label":"53393-9769 via Conventional from 53394 -> 53392","Type":"Conventional","Directional":true,"Links":[{"SourceID":53394,"TargetID":53392,"Directional":true}]},{"ID":14439,"SourceStructureID":53395,"TargetStructureID":9769,"Label":"53395-9769 via Conventional from 53396 -> 11254","Type":"Conventional","Directional":true,"Links":[{"SourceID":53396,"TargetID":11254,"Directional":true}]},{"ID":14440,"SourceStructureID":53403,"TargetStructureID":9769,"Label":"53403-9769 via Conventional from 53404 -> 45116","Type":"Conventional","Directional":true,"Links":[{"SourceID":53404,"TargetID":45116,"Directional":true}]},{"ID":14441,"SourceStructureID":53407,"TargetStructureID":909,"Label":"53407-909 via Conventional from 117271 -> 117268","Type":"Conventional","Directional":true,"Links":[{"SourceID":117271,"TargetID":117268,"Directional":true}]},{"ID":14442,"SourceStructureID":53407,"TargetStructureID":5650,"Label":"53407-5650 via Conventional from 53411 -> 50554","Type":"Conventional","Directional":true,"Links":[{"SourceID":53411,"TargetID":50554,"Directional":true}]},{"ID":14443,"SourceStructureID":53416,"TargetStructureID":5292,"Label":"53416-5292 via Conventional from 53418 -> 49832","Type":"Conventional","Directional":true,"Links":[{"SourceID":53418,"TargetID":49832,"Directional":true}]},{"ID":14444,"SourceStructureID":53421,"TargetStructureID":5284,"Label":"53421-5284 via Conventional from 53426 -> 113596","Type":"Conventional","Directional":true,"Links":[{"SourceID":53426,"TargetID":113596,"Directional":true}]},{"ID":14445,"SourceStructureID":53421,"TargetStructureID":9769,"Label":"53421-9769 via Conventional from 53422 -> 30124","Type":"Conventional","Directional":true,"Links":[{"SourceID":53422,"TargetID":30124,"Directional":true}]},{"ID":14446,"SourceStructureID":53439,"TargetStructureID":9769,"Label":"53439-9769 via Conventional from 53440 -> 30141","Type":"Conventional","Directional":true,"Links":[{"SourceID":53440,"TargetID":30141,"Directional":true}]},{"ID":14447,"SourceStructureID":53441,"TargetStructureID":9769,"Label":"53441-9769 via Conventional from 53442 -> 30142","Type":"Conventional","Directional":true,"Links":[{"SourceID":53442,"TargetID":30142,"Directional":true}]},{"ID":14448,"SourceStructureID":53443,"TargetStructureID":5303,"Label":"53443-5303 via Conventional from 53446 -> 35592","Type":"Conventional","Directional":true,"Links":[{"SourceID":53446,"TargetID":35592,"Directional":true}]},{"ID":14449,"SourceStructureID":53443,"TargetStructureID":5650,"Label":"53443-5650 via Conventional from 53445 -> 30153","Type":"Conventional","Directional":true,"Links":[{"SourceID":53445,"TargetID":30153,"Directional":true}]},{"ID":14450,"SourceStructureID":53447,"TargetStructureID":7134,"Label":"53447-7134 via Conventional from 53449 -> 53499","Type":"Conventional","Directional":true,"Links":[{"SourceID":53449,"TargetID":53499,"Directional":true}]},{"ID":14451,"SourceStructureID":53447,"TargetStructureID":9769,"Label":"53447-9769 via Conventional from 53448 -> 30161, 53452 -> 30162","Type":"Conventional","Directional":true,"Links":[{"SourceID":53448,"TargetID":30161,"Directional":true},{"SourceID":53452,"TargetID":30162,"Directional":true}]},{"ID":14452,"SourceStructureID":53768,"TargetStructureID":606,"Label":"53768-606 via Ribbon Synapse from 53769 -> 53770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53769,"TargetID":53770,"Directional":true}]},{"ID":14453,"SourceStructureID":53778,"TargetStructureID":606,"Label":"53778-606 via Ribbon Synapse from 53779 -> 53780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53779,"TargetID":53780,"Directional":true}]},{"ID":14454,"SourceStructureID":53828,"TargetStructureID":606,"Label":"53828-606 via Ribbon Synapse from 53829 -> 5091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53829,"TargetID":5091,"Directional":true}]},{"ID":14455,"SourceStructureID":53872,"TargetStructureID":606,"Label":"53872-606 via Ribbon Synapse from 53873 -> 5106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53873,"TargetID":5106,"Directional":true}]},{"ID":14456,"SourceStructureID":54006,"TargetStructureID":6117,"Label":"54006-6117 via Conventional from 83277 -> 83278","Type":"Conventional","Directional":true,"Links":[{"SourceID":83277,"TargetID":83278,"Directional":true}]},{"ID":14457,"SourceStructureID":54006,"TargetStructureID":20136,"Label":"54006-20136 via Conventional from 109046 -> 109033, 109058 -> 109059","Type":"Conventional","Directional":true,"Links":[{"SourceID":109046,"TargetID":109033,"Directional":true},{"SourceID":109058,"TargetID":109059,"Directional":true}]},{"ID":14458,"SourceStructureID":54074,"TargetStructureID":9769,"Label":"54074-9769 via Conventional from 54075 -> 11266","Type":"Conventional","Directional":true,"Links":[{"SourceID":54075,"TargetID":11266,"Directional":true}]},{"ID":14459,"SourceStructureID":54078,"TargetStructureID":606,"Label":"54078-606 via Conventional from 54083 -> 51333","Type":"Conventional","Directional":true,"Links":[{"SourceID":54083,"TargetID":51333,"Directional":true}]},{"ID":14460,"SourceStructureID":54078,"TargetStructureID":8579,"Label":"54078-8579 via Conventional from 66484 -> 66483","Type":"Conventional","Directional":true,"Links":[{"SourceID":66484,"TargetID":66483,"Directional":true}]},{"ID":14461,"SourceStructureID":54078,"TargetStructureID":16026,"Label":"54078-16026 via Conventional from 54117 -> 54118","Type":"Conventional","Directional":true,"Links":[{"SourceID":54117,"TargetID":54118,"Directional":true}]},{"ID":14462,"SourceStructureID":54232,"TargetStructureID":606,"Label":"54232-606 via Ribbon Synapse from 54233 -> 54234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54233,"TargetID":54234,"Directional":true}]},{"ID":14463,"SourceStructureID":54245,"TargetStructureID":606,"Label":"54245-606 via Conventional from 54246 -> 39903, 54249 -> 54250","Type":"Conventional","Directional":true,"Links":[{"SourceID":54246,"TargetID":39903,"Directional":true},{"SourceID":54249,"TargetID":54250,"Directional":true}]},{"ID":14464,"SourceStructureID":54245,"TargetStructureID":5637,"Label":"54245-5637 via Conventional from 54248 -> 54247","Type":"Conventional","Directional":true,"Links":[{"SourceID":54248,"TargetID":54247,"Directional":true}]},{"ID":14465,"SourceStructureID":54252,"TargetStructureID":9769,"Label":"54252-9769 via Conventional from 54253 -> 54251","Type":"Conventional","Directional":true,"Links":[{"SourceID":54253,"TargetID":54251,"Directional":true}]},{"ID":14466,"SourceStructureID":54264,"TargetStructureID":9769,"Label":"54264-9769 via Conventional from 54266 -> 23927","Type":"Conventional","Directional":true,"Links":[{"SourceID":54266,"TargetID":23927,"Directional":true}]},{"ID":14467,"SourceStructureID":54264,"TargetStructureID":85404,"Label":"54264-85404 via Conventional from 54267 -> 85410","Type":"Conventional","Directional":true,"Links":[{"SourceID":54267,"TargetID":85410,"Directional":true}]},{"ID":14468,"SourceStructureID":54287,"TargetStructureID":6117,"Label":"54287-6117 via Conventional from 54289 -> 54290, 54299 -> 30896, 85301 -> 85302","Type":"Conventional","Directional":true,"Links":[{"SourceID":54289,"TargetID":54290,"Directional":true},{"SourceID":54299,"TargetID":30896,"Directional":true},{"SourceID":85301,"TargetID":85302,"Directional":true}]},{"ID":14469,"SourceStructureID":54356,"TargetStructureID":9769,"Label":"54356-9769 via Conventional from 54357 -> 23931","Type":"Conventional","Directional":true,"Links":[{"SourceID":54357,"TargetID":23931,"Directional":true}]},{"ID":14470,"SourceStructureID":54428,"TargetStructureID":9769,"Label":"54428-9769 via Conventional from 54429 -> 23933","Type":"Conventional","Directional":true,"Links":[{"SourceID":54429,"TargetID":23933,"Directional":true}]},{"ID":14471,"SourceStructureID":54428,"TargetStructureID":68539,"Label":"54428-68539 via Conventional from 72871 -> 72870","Type":"Conventional","Directional":true,"Links":[{"SourceID":72871,"TargetID":72870,"Directional":true}]},{"ID":14472,"SourceStructureID":54461,"TargetStructureID":9769,"Label":"54461-9769 via Conventional from 54462 -> 23937","Type":"Conventional","Directional":true,"Links":[{"SourceID":54462,"TargetID":23937,"Directional":true}]},{"ID":14473,"SourceStructureID":54469,"TargetStructureID":5601,"Label":"54469-5601 via Conventional from 54471 -> 54472","Type":"Conventional","Directional":true,"Links":[{"SourceID":54471,"TargetID":54472,"Directional":true}]},{"ID":14474,"SourceStructureID":54477,"TargetStructureID":9769,"Label":"54477-9769 via Conventional from 54478 -> 23950","Type":"Conventional","Directional":true,"Links":[{"SourceID":54478,"TargetID":23950,"Directional":true}]},{"ID":14475,"SourceStructureID":54492,"TargetStructureID":8578,"Label":"54492-8578 via Conventional from 54494 -> 54496","Type":"Conventional","Directional":true,"Links":[{"SourceID":54494,"TargetID":54496,"Directional":true}]},{"ID":14476,"SourceStructureID":54492,"TargetStructureID":9769,"Label":"54492-9769 via Conventional from 54493 -> 54491","Type":"Conventional","Directional":true,"Links":[{"SourceID":54493,"TargetID":54491,"Directional":true}]},{"ID":14477,"SourceStructureID":54698,"TargetStructureID":9769,"Label":"54698-9769 via Conventional from 54700 -> 23965","Type":"Conventional","Directional":true,"Links":[{"SourceID":54700,"TargetID":23965,"Directional":true}]},{"ID":14478,"SourceStructureID":54727,"TargetStructureID":15394,"Label":"54727-15394 via Conventional from 54728 -> 41019","Type":"Conventional","Directional":true,"Links":[{"SourceID":54728,"TargetID":41019,"Directional":true}]},{"ID":14479,"SourceStructureID":54727,"TargetStructureID":54744,"Label":"54727-54744 via Conventional from 54730 -> 54745","Type":"Conventional","Directional":true,"Links":[{"SourceID":54730,"TargetID":54745,"Directional":true}]},{"ID":14480,"SourceStructureID":54776,"TargetStructureID":5637,"Label":"54776-5637 via Conventional from 54784 -> 54795","Type":"Conventional","Directional":true,"Links":[{"SourceID":54784,"TargetID":54795,"Directional":true}]},{"ID":14481,"SourceStructureID":54776,"TargetStructureID":9769,"Label":"54776-9769 via Conventional from 54777 -> 23972","Type":"Conventional","Directional":true,"Links":[{"SourceID":54777,"TargetID":23972,"Directional":true}]},{"ID":14482,"SourceStructureID":54778,"TargetStructureID":9769,"Label":"54778-9769 via Conventional from 54779 -> 23973","Type":"Conventional","Directional":true,"Links":[{"SourceID":54779,"TargetID":23973,"Directional":true}]},{"ID":14483,"SourceStructureID":54813,"TargetStructureID":9769,"Label":"54813-9769 via Conventional from 54815 -> 23974","Type":"Conventional","Directional":true,"Links":[{"SourceID":54815,"TargetID":23974,"Directional":true}]},{"ID":14484,"SourceStructureID":54850,"TargetStructureID":9769,"Label":"54850-9769 via Conventional from 54851 -> 23982","Type":"Conventional","Directional":true,"Links":[{"SourceID":54851,"TargetID":23982,"Directional":true}]},{"ID":14485,"SourceStructureID":54857,"TargetStructureID":9769,"Label":"54857-9769 via Conventional from 54858 -> 23994","Type":"Conventional","Directional":true,"Links":[{"SourceID":54858,"TargetID":23994,"Directional":true}]},{"ID":14486,"SourceStructureID":54859,"TargetStructureID":9769,"Label":"54859-9769 via Conventional from 54860 -> 23995","Type":"Conventional","Directional":true,"Links":[{"SourceID":54860,"TargetID":23995,"Directional":true}]},{"ID":14487,"SourceStructureID":54874,"TargetStructureID":16073,"Label":"54874-16073 via Conventional from 54875 -> 19864","Type":"Conventional","Directional":true,"Links":[{"SourceID":54875,"TargetID":19864,"Directional":true}]},{"ID":14488,"SourceStructureID":54877,"TargetStructureID":6117,"Label":"54877-6117 via Conventional from 54879 -> 86012","Type":"Conventional","Directional":true,"Links":[{"SourceID":54879,"TargetID":86012,"Directional":true}]},{"ID":14489,"SourceStructureID":54881,"TargetStructureID":9769,"Label":"54881-9769 via Conventional from 54882 -> 12568","Type":"Conventional","Directional":true,"Links":[{"SourceID":54882,"TargetID":12568,"Directional":true}]},{"ID":14490,"SourceStructureID":54881,"TargetStructureID":34036,"Label":"54881-34036 via Conventional from 54887 -> 34046","Type":"Conventional","Directional":true,"Links":[{"SourceID":54887,"TargetID":34046,"Directional":true}]},{"ID":14491,"SourceStructureID":54895,"TargetStructureID":9769,"Label":"54895-9769 via Conventional from 54896 -> 30120","Type":"Conventional","Directional":true,"Links":[{"SourceID":54896,"TargetID":30120,"Directional":true}]},{"ID":14492,"SourceStructureID":54901,"TargetStructureID":9769,"Label":"54901-9769 via Conventional from 54902 -> 29885","Type":"Conventional","Directional":true,"Links":[{"SourceID":54902,"TargetID":29885,"Directional":true}]},{"ID":14493,"SourceStructureID":54904,"TargetStructureID":9769,"Label":"54904-9769 via Conventional from 54905 -> 29874, 54906 -> 29875","Type":"Conventional","Directional":true,"Links":[{"SourceID":54905,"TargetID":29874,"Directional":true},{"SourceID":54906,"TargetID":29875,"Directional":true}]},{"ID":14494,"SourceStructureID":54908,"TargetStructureID":25155,"Label":"54908-25155 via Conventional from 54911 -> 54912","Type":"Conventional","Directional":true,"Links":[{"SourceID":54911,"TargetID":54912,"Directional":true}]},{"ID":14495,"SourceStructureID":54913,"TargetStructureID":5531,"Label":"54913-5531 via Conventional from 54918 -> 54919","Type":"Conventional","Directional":true,"Links":[{"SourceID":54918,"TargetID":54919,"Directional":true}]},{"ID":14496,"SourceStructureID":54913,"TargetStructureID":9769,"Label":"54913-9769 via Conventional from 54914 -> 29869","Type":"Conventional","Directional":true,"Links":[{"SourceID":54914,"TargetID":29869,"Directional":true}]},{"ID":14497,"SourceStructureID":54925,"TargetStructureID":595,"Label":"54925-595 via Conventional from 115793 -> 115792","Type":"Conventional","Directional":true,"Links":[{"SourceID":115793,"TargetID":115792,"Directional":true}]},{"ID":14498,"SourceStructureID":54925,"TargetStructureID":5528,"Label":"54925-5528 via Conventional from 54942 -> 54943","Type":"Conventional","Directional":true,"Links":[{"SourceID":54942,"TargetID":54943,"Directional":true}]},{"ID":14499,"SourceStructureID":54925,"TargetStructureID":5530,"Label":"54925-5530 via Conventional from 54930 -> 54931, 54937 -> 54938, 54944 -> 54945, 54947 -> 54098, 81563 -> 81564","Type":"Conventional","Directional":true,"Links":[{"SourceID":54930,"TargetID":54931,"Directional":true},{"SourceID":54937,"TargetID":54938,"Directional":true},{"SourceID":54944,"TargetID":54945,"Directional":true},{"SourceID":54947,"TargetID":54098,"Directional":true},{"SourceID":81563,"TargetID":81564,"Directional":true}]},{"ID":14500,"SourceStructureID":54925,"TargetStructureID":5531,"Label":"54925-5531 via Conventional from 106583 -> 106584","Type":"Conventional","Directional":true,"Links":[{"SourceID":106583,"TargetID":106584,"Directional":true}]},{"ID":14501,"SourceStructureID":54948,"TargetStructureID":9769,"Label":"54948-9769 via Conventional from 54949 -> 29849","Type":"Conventional","Directional":true,"Links":[{"SourceID":54949,"TargetID":29849,"Directional":true}]},{"ID":14502,"SourceStructureID":54958,"TargetStructureID":9769,"Label":"54958-9769 via Conventional from 54959 -> 29839","Type":"Conventional","Directional":true,"Links":[{"SourceID":54959,"TargetID":29839,"Directional":true}]},{"ID":14503,"SourceStructureID":54967,"TargetStructureID":9769,"Label":"54967-9769 via Conventional from 54968 -> 54965","Type":"Conventional","Directional":true,"Links":[{"SourceID":54968,"TargetID":54965,"Directional":true}]},{"ID":14504,"SourceStructureID":55098,"TargetStructureID":88970,"Label":"55098-88970 via Conventional from 55105 -> 88971","Type":"Conventional","Directional":true,"Links":[{"SourceID":55105,"TargetID":88971,"Directional":true}]},{"ID":14505,"SourceStructureID":55108,"TargetStructureID":9769,"Label":"55108-9769 via Conventional from 55109 -> 12361, 55145 -> 12362","Type":"Conventional","Directional":true,"Links":[{"SourceID":55109,"TargetID":12361,"Directional":true},{"SourceID":55145,"TargetID":12362,"Directional":true}]},{"ID":14506,"SourceStructureID":55154,"TargetStructureID":9769,"Label":"55154-9769 via Conventional from 55155 -> 12363","Type":"Conventional","Directional":true,"Links":[{"SourceID":55155,"TargetID":12363,"Directional":true}]},{"ID":14507,"SourceStructureID":55161,"TargetStructureID":9769,"Label":"55161-9769 via Conventional from 55162 -> 12364","Type":"Conventional","Directional":true,"Links":[{"SourceID":55162,"TargetID":12364,"Directional":true}]},{"ID":14508,"SourceStructureID":55176,"TargetStructureID":9769,"Label":"55176-9769 via Conventional from 55177 -> 14363","Type":"Conventional","Directional":true,"Links":[{"SourceID":55177,"TargetID":14363,"Directional":true}]},{"ID":14509,"SourceStructureID":55185,"TargetStructureID":324,"Label":"55185-324 via Conventional from 55187 -> 55184","Type":"Conventional","Directional":true,"Links":[{"SourceID":55187,"TargetID":55184,"Directional":true}]},{"ID":14510,"SourceStructureID":55185,"TargetStructureID":6153,"Label":"55185-6153 via Conventional from 55186 -> 55183","Type":"Conventional","Directional":true,"Links":[{"SourceID":55186,"TargetID":55183,"Directional":true}]},{"ID":14511,"SourceStructureID":55185,"TargetStructureID":55191,"Label":"55185-55191 via Conventional from 55188 -> 55194","Type":"Conventional","Directional":true,"Links":[{"SourceID":55188,"TargetID":55194,"Directional":true}]},{"ID":14512,"SourceStructureID":55191,"TargetStructureID":55185,"Label":"55191-55185 via Ribbon Synapse from 55195 -> 55190","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55195,"TargetID":55190,"Directional":true}]},{"ID":14513,"SourceStructureID":55197,"TargetStructureID":9769,"Label":"55197-9769 via Conventional from 55198 -> 30083","Type":"Conventional","Directional":true,"Links":[{"SourceID":55198,"TargetID":30083,"Directional":true}]},{"ID":14514,"SourceStructureID":55201,"TargetStructureID":324,"Label":"55201-324 via Conventional from 55203 -> 55204","Type":"Conventional","Directional":true,"Links":[{"SourceID":55203,"TargetID":55204,"Directional":true}]},{"ID":14515,"SourceStructureID":55208,"TargetStructureID":9769,"Label":"55208-9769 via Conventional from 55209 -> 30092","Type":"Conventional","Directional":true,"Links":[{"SourceID":55209,"TargetID":30092,"Directional":true}]},{"ID":14516,"SourceStructureID":55215,"TargetStructureID":9769,"Label":"55215-9769 via Conventional from 55216 -> 30095","Type":"Conventional","Directional":true,"Links":[{"SourceID":55216,"TargetID":30095,"Directional":true}]},{"ID":14517,"SourceStructureID":55221,"TargetStructureID":9769,"Label":"55221-9769 via Conventional from 55222 -> 30109","Type":"Conventional","Directional":true,"Links":[{"SourceID":55222,"TargetID":30109,"Directional":true}]},{"ID":14518,"SourceStructureID":55223,"TargetStructureID":9769,"Label":"55223-9769 via Ribbon Synapse from 55224 -> 55225","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55224,"TargetID":55225,"Directional":true}]},{"ID":14519,"SourceStructureID":55279,"TargetStructureID":9769,"Label":"55279-9769 via Conventional from 55280 -> 12395","Type":"Conventional","Directional":true,"Links":[{"SourceID":55280,"TargetID":12395,"Directional":true}]},{"ID":14520,"SourceStructureID":55308,"TargetStructureID":9769,"Label":"55308-9769 via Conventional from 55309 -> 55307","Type":"Conventional","Directional":true,"Links":[{"SourceID":55309,"TargetID":55307,"Directional":true}]},{"ID":14521,"SourceStructureID":55311,"TargetStructureID":268,"Label":"55311-268 via Conventional from 55314 -> 55315","Type":"Conventional","Directional":true,"Links":[{"SourceID":55314,"TargetID":55315,"Directional":true}]},{"ID":14522,"SourceStructureID":55317,"TargetStructureID":9769,"Label":"55317-9769 via Conventional from 55318 -> 55316","Type":"Conventional","Directional":true,"Links":[{"SourceID":55318,"TargetID":55316,"Directional":true}]},{"ID":14523,"SourceStructureID":55330,"TargetStructureID":9769,"Label":"55330-9769 via Conventional from 55331 -> 12331","Type":"Conventional","Directional":true,"Links":[{"SourceID":55331,"TargetID":12331,"Directional":true}]},{"ID":14524,"SourceStructureID":55359,"TargetStructureID":9769,"Label":"55359-9769 via Conventional from 55360 -> 12359","Type":"Conventional","Directional":true,"Links":[{"SourceID":55360,"TargetID":12359,"Directional":true}]},{"ID":14525,"SourceStructureID":55361,"TargetStructureID":9769,"Label":"55361-9769 via Conventional from 55362 -> 12360","Type":"Conventional","Directional":true,"Links":[{"SourceID":55362,"TargetID":12360,"Directional":true}]},{"ID":14526,"SourceStructureID":55364,"TargetStructureID":9769,"Label":"55364-9769 via Conventional from 55365 -> 10903","Type":"Conventional","Directional":true,"Links":[{"SourceID":55365,"TargetID":10903,"Directional":true}]},{"ID":14527,"SourceStructureID":55366,"TargetStructureID":9769,"Label":"55366-9769 via Conventional from 55367 -> 29889","Type":"Conventional","Directional":true,"Links":[{"SourceID":55367,"TargetID":29889,"Directional":true}]},{"ID":14528,"SourceStructureID":55403,"TargetStructureID":324,"Label":"55403-324 via Conventional from 55413 -> 55412, 55418 -> 55419, 55425 -> 55426, 55454 -> 55455","Type":"Conventional","Directional":true,"Links":[{"SourceID":55413,"TargetID":55412,"Directional":true},{"SourceID":55418,"TargetID":55419,"Directional":true},{"SourceID":55425,"TargetID":55426,"Directional":true},{"SourceID":55454,"TargetID":55455,"Directional":true}]},{"ID":14529,"SourceStructureID":55403,"TargetStructureID":330,"Label":"55403-330 via Conventional from 55439 -> 12424","Type":"Conventional","Directional":true,"Links":[{"SourceID":55439,"TargetID":12424,"Directional":true}]},{"ID":14530,"SourceStructureID":55403,"TargetStructureID":372,"Label":"55403-372 via Conventional from 55446 -> 55445","Type":"Conventional","Directional":true,"Links":[{"SourceID":55446,"TargetID":55445,"Directional":true}]},{"ID":14531,"SourceStructureID":55403,"TargetStructureID":606,"Label":"55403-606 via Conventional from 55405 -> 53269, 55410 -> 53274, 55447 -> 53315","Type":"Conventional","Directional":true,"Links":[{"SourceID":55405,"TargetID":53269,"Directional":true},{"SourceID":55410,"TargetID":53274,"Directional":true},{"SourceID":55447,"TargetID":53315,"Directional":true}]},{"ID":14532,"SourceStructureID":55403,"TargetStructureID":1724,"Label":"55403-1724 via Conventional from 55461 -> 4042","Type":"Conventional","Directional":true,"Links":[{"SourceID":55461,"TargetID":4042,"Directional":true}]},{"ID":14533,"SourceStructureID":55403,"TargetStructureID":5107,"Label":"55403-5107 via Conventional from 55436 -> 55437","Type":"Conventional","Directional":true,"Links":[{"SourceID":55436,"TargetID":55437,"Directional":true}]},{"ID":14534,"SourceStructureID":55403,"TargetStructureID":20299,"Label":"55403-20299 via Conventional from 55421 -> 55422","Type":"Conventional","Directional":true,"Links":[{"SourceID":55421,"TargetID":55422,"Directional":true}]},{"ID":14535,"SourceStructureID":55403,"TargetStructureID":31024,"Label":"55403-31024 via Conventional from 55509 -> 55508, 55510 -> 55511","Type":"Conventional","Directional":true,"Links":[{"SourceID":55509,"TargetID":55508,"Directional":true},{"SourceID":55510,"TargetID":55511,"Directional":true}]},{"ID":14536,"SourceStructureID":55403,"TargetStructureID":32581,"Label":"55403-32581 via Conventional from 55430 -> 55431","Type":"Conventional","Directional":true,"Links":[{"SourceID":55430,"TargetID":55431,"Directional":true}]},{"ID":14537,"SourceStructureID":55403,"TargetStructureID":35894,"Label":"55403-35894 via Conventional from 55457 -> 55458","Type":"Conventional","Directional":true,"Links":[{"SourceID":55457,"TargetID":55458,"Directional":true}]},{"ID":14538,"SourceStructureID":55403,"TargetStructureID":38605,"Label":"55403-38605 via Conventional from 55420 -> 101484","Type":"Conventional","Directional":true,"Links":[{"SourceID":55420,"TargetID":101484,"Directional":true}]},{"ID":14539,"SourceStructureID":55517,"TargetStructureID":170,"Label":"55517-170 via Conventional from 55562 -> 55563","Type":"Conventional","Directional":true,"Links":[{"SourceID":55562,"TargetID":55563,"Directional":true}]},{"ID":14540,"SourceStructureID":55517,"TargetStructureID":277,"Label":"55517-277 via Conventional from 55549 -> 55548, 55555 -> 26008","Type":"Conventional","Directional":true,"Links":[{"SourceID":55549,"TargetID":55548,"Directional":true},{"SourceID":55555,"TargetID":26008,"Directional":true}]},{"ID":14541,"SourceStructureID":55517,"TargetStructureID":330,"Label":"55517-330 via Conventional from 55546 -> 52977","Type":"Conventional","Directional":true,"Links":[{"SourceID":55546,"TargetID":52977,"Directional":true}]},{"ID":14542,"SourceStructureID":55517,"TargetStructureID":372,"Label":"55517-372 via Conventional from 55524 -> 45647","Type":"Conventional","Directional":true,"Links":[{"SourceID":55524,"TargetID":45647,"Directional":true}]},{"ID":14543,"SourceStructureID":55517,"TargetStructureID":606,"Label":"55517-606 via Conventional from 55519 -> 53305, 55554 -> 52850","Type":"Conventional","Directional":true,"Links":[{"SourceID":55519,"TargetID":53305,"Directional":true},{"SourceID":55554,"TargetID":52850,"Directional":true}]},{"ID":14544,"SourceStructureID":55517,"TargetStructureID":4569,"Label":"55517-4569 via Conventional from 55566 -> 47442","Type":"Conventional","Directional":true,"Links":[{"SourceID":55566,"TargetID":47442,"Directional":true}]},{"ID":14545,"SourceStructureID":55517,"TargetStructureID":5279,"Label":"55517-5279 via Conventional from 55572 -> 92709","Type":"Conventional","Directional":true,"Links":[{"SourceID":55572,"TargetID":92709,"Directional":true}]},{"ID":14546,"SourceStructureID":55517,"TargetStructureID":5284,"Label":"55517-5284 via Conventional from 55603 -> 55604","Type":"Conventional","Directional":true,"Links":[{"SourceID":55603,"TargetID":55604,"Directional":true}]},{"ID":14547,"SourceStructureID":55517,"TargetStructureID":6117,"Label":"55517-6117 via Conventional from 55574 -> 55579, 55585 -> 83236, 55588 -> 30889","Type":"Conventional","Directional":true,"Links":[{"SourceID":55574,"TargetID":55579,"Directional":true},{"SourceID":55585,"TargetID":83236,"Directional":true},{"SourceID":55588,"TargetID":30889,"Directional":true}]},{"ID":14548,"SourceStructureID":55517,"TargetStructureID":9769,"Label":"55517-9769 via Conventional from 55595 -> 55596","Type":"Conventional","Directional":true,"Links":[{"SourceID":55595,"TargetID":55596,"Directional":true}]},{"ID":14549,"SourceStructureID":55517,"TargetStructureID":32581,"Label":"55517-32581 via Conventional from 55538 -> 55539","Type":"Conventional","Directional":true,"Links":[{"SourceID":55538,"TargetID":55539,"Directional":true}]},{"ID":14550,"SourceStructureID":55517,"TargetStructureID":59008,"Label":"55517-59008 via Conventional from 55573 -> 59009","Type":"Conventional","Directional":true,"Links":[{"SourceID":55573,"TargetID":59009,"Directional":true}]},{"ID":14551,"SourceStructureID":55517,"TargetStructureID":75583,"Label":"55517-75583 via Conventional from 55587 -> 83213","Type":"Conventional","Directional":true,"Links":[{"SourceID":55587,"TargetID":83213,"Directional":true}]},{"ID":14552,"SourceStructureID":55517,"TargetStructureID":83204,"Label":"55517-83204 via Conventional from 55586 -> 83206","Type":"Conventional","Directional":true,"Links":[{"SourceID":55586,"TargetID":83206,"Directional":true}]},{"ID":14553,"SourceStructureID":55517,"TargetStructureID":83925,"Label":"55517-83925 via Conventional from 55591 -> 83928","Type":"Conventional","Directional":true,"Links":[{"SourceID":55591,"TargetID":83928,"Directional":true}]},{"ID":14554,"SourceStructureID":55517,"TargetStructureID":90483,"Label":"55517-90483 via Conventional from 55523 -> 90497","Type":"Conventional","Directional":true,"Links":[{"SourceID":55523,"TargetID":90497,"Directional":true}]},{"ID":14555,"SourceStructureID":55686,"TargetStructureID":7897,"Label":"55686-7897 via Ribbon Synapse from 55687 -> 55685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55687,"TargetID":55685,"Directional":true}]},{"ID":14556,"SourceStructureID":55697,"TargetStructureID":5499,"Label":"55697-5499 via Conventional from 55701 -> 105488","Type":"Conventional","Directional":true,"Links":[{"SourceID":55701,"TargetID":105488,"Directional":true}]},{"ID":14557,"SourceStructureID":55697,"TargetStructureID":5503,"Label":"55697-5503 via Conventional from 55702 -> 60727","Type":"Conventional","Directional":true,"Links":[{"SourceID":55702,"TargetID":60727,"Directional":true}]},{"ID":14558,"SourceStructureID":55697,"TargetStructureID":5520,"Label":"55697-5520 via Conventional from 55699 -> 55700","Type":"Conventional","Directional":true,"Links":[{"SourceID":55699,"TargetID":55700,"Directional":true}]},{"ID":14559,"SourceStructureID":55697,"TargetStructureID":7897,"Label":"55697-7897 via Conventional from 55698 -> 55692","Type":"Conventional","Directional":true,"Links":[{"SourceID":55698,"TargetID":55692,"Directional":true}]},{"ID":14560,"SourceStructureID":55830,"TargetStructureID":6047,"Label":"55830-6047 via Conventional from 112347 -> 112346","Type":"Conventional","Directional":true,"Links":[{"SourceID":112347,"TargetID":112346,"Directional":true}]},{"ID":14561,"SourceStructureID":55830,"TargetStructureID":6050,"Label":"55830-6050 via Conventional from 114235 -> 114234","Type":"Conventional","Directional":true,"Links":[{"SourceID":114235,"TargetID":114234,"Directional":true}]},{"ID":14562,"SourceStructureID":55837,"TargetStructureID":9769,"Label":"55837-9769 via Conventional from 55838 -> 55836","Type":"Conventional","Directional":true,"Links":[{"SourceID":55838,"TargetID":55836,"Directional":true}]},{"ID":14563,"SourceStructureID":56078,"TargetStructureID":6857,"Label":"56078-6857 via Conventional from 56079 -> 6858","Type":"Conventional","Directional":true,"Links":[{"SourceID":56079,"TargetID":6858,"Directional":true}]},{"ID":14564,"SourceStructureID":56081,"TargetStructureID":6857,"Label":"56081-6857 via Conventional from 56082 -> 6867","Type":"Conventional","Directional":true,"Links":[{"SourceID":56082,"TargetID":6867,"Directional":true}]},{"ID":14565,"SourceStructureID":56086,"TargetStructureID":5530,"Label":"56086-5530 via Conventional from 56087 -> 56088","Type":"Conventional","Directional":true,"Links":[{"SourceID":56087,"TargetID":56088,"Directional":true}]},{"ID":14566,"SourceStructureID":56148,"TargetStructureID":15796,"Label":"56148-15796 via Conventional from 56149 -> 55760","Type":"Conventional","Directional":true,"Links":[{"SourceID":56149,"TargetID":55760,"Directional":true}]},{"ID":14567,"SourceStructureID":56191,"TargetStructureID":5150,"Label":"56191-5150 via Ribbon Synapse from 56192 -> 5242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56192,"TargetID":5242,"Directional":true}]},{"ID":14568,"SourceStructureID":56211,"TargetStructureID":46261,"Label":"56211-46261 via Conventional from 56242 -> 56243","Type":"Conventional","Directional":true,"Links":[{"SourceID":56242,"TargetID":56243,"Directional":true}]},{"ID":14569,"SourceStructureID":56328,"TargetStructureID":7568,"Label":"56328-7568 via Conventional from 85482 -> 27108","Type":"Conventional","Directional":true,"Links":[{"SourceID":85482,"TargetID":27108,"Directional":true}]},{"ID":14570,"SourceStructureID":56328,"TargetStructureID":131568,"Label":"56328-131568 via Conventional from 85485 -> 131569","Type":"Conventional","Directional":true,"Links":[{"SourceID":85485,"TargetID":131569,"Directional":true}]},{"ID":14571,"SourceStructureID":56598,"TargetStructureID":9787,"Label":"56598-9787 via Conventional from 56599 -> 12246","Type":"Conventional","Directional":true,"Links":[{"SourceID":56599,"TargetID":12246,"Directional":true}]},{"ID":14572,"SourceStructureID":56600,"TargetStructureID":9787,"Label":"56600-9787 via Ribbon Synapse from 56604 -> 12245, 56605 -> 12256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56604,"TargetID":12245,"Directional":true},{"SourceID":56605,"TargetID":12256,"Directional":true}]},{"ID":14573,"SourceStructureID":56631,"TargetStructureID":289,"Label":"56631-289 via Ribbon Synapse from 56632 -> 56630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56632,"TargetID":56630,"Directional":true}]},{"ID":14574,"SourceStructureID":56643,"TargetStructureID":289,"Label":"56643-289 via Ribbon Synapse from 56644 -> 56642","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56644,"TargetID":56642,"Directional":true}]},{"ID":14575,"SourceStructureID":56704,"TargetStructureID":142,"Label":"56704-142 via Conventional from 56707 -> 31789","Type":"Conventional","Directional":true,"Links":[{"SourceID":56707,"TargetID":31789,"Directional":true}]},{"ID":14576,"SourceStructureID":56822,"TargetStructureID":171,"Label":"56822-171 via Conventional from 130199 -> 6002","Type":"Conventional","Directional":true,"Links":[{"SourceID":130199,"TargetID":6002,"Directional":true}]},{"ID":14577,"SourceStructureID":56841,"TargetStructureID":5284,"Label":"56841-5284 via Conventional from 56847 -> 113471, 56853 -> 54343, 113526 -> 113524, 113557 -> 98211","Type":"Conventional","Directional":true,"Links":[{"SourceID":56847,"TargetID":113471,"Directional":true},{"SourceID":56853,"TargetID":54343,"Directional":true},{"SourceID":113526,"TargetID":113524,"Directional":true},{"SourceID":113557,"TargetID":98211,"Directional":true}]},{"ID":14578,"SourceStructureID":56841,"TargetStructureID":5297,"Label":"56841-5297 via Conventional from 120273 -> 120274","Type":"Conventional","Directional":true,"Links":[{"SourceID":120273,"TargetID":120274,"Directional":true}]},{"ID":14579,"SourceStructureID":56841,"TargetStructureID":5517,"Label":"56841-5517 via Conventional from 56932 -> 49293","Type":"Conventional","Directional":true,"Links":[{"SourceID":56932,"TargetID":49293,"Directional":true}]},{"ID":14580,"SourceStructureID":56841,"TargetStructureID":5598,"Label":"56841-5598 via Conventional from 56865 -> 114588, 113789 -> 113788","Type":"Conventional","Directional":true,"Links":[{"SourceID":56865,"TargetID":114588,"Directional":true},{"SourceID":113789,"TargetID":113788,"Directional":true}]},{"ID":14581,"SourceStructureID":56841,"TargetStructureID":5650,"Label":"56841-5650 via Conventional from 104993 -> 104994","Type":"Conventional","Directional":true,"Links":[{"SourceID":104993,"TargetID":104994,"Directional":true}]},{"ID":14582,"SourceStructureID":56841,"TargetStructureID":6047,"Label":"56841-6047 via Conventional from 56863 -> 56864","Type":"Conventional","Directional":true,"Links":[{"SourceID":56863,"TargetID":56864,"Directional":true}]},{"ID":14583,"SourceStructureID":56841,"TargetStructureID":6050,"Label":"56841-6050 via Conventional from 56855 -> 56073, 56858 -> 114028, 56860 -> 114034, 113972 -> 113971","Type":"Conventional","Directional":true,"Links":[{"SourceID":56855,"TargetID":56073,"Directional":true},{"SourceID":56858,"TargetID":114028,"Directional":true},{"SourceID":56860,"TargetID":114034,"Directional":true},{"SourceID":113972,"TargetID":113971,"Directional":true}]},{"ID":14584,"SourceStructureID":56841,"TargetStructureID":6117,"Label":"56841-6117 via Conventional from 56845 -> 30870","Type":"Conventional","Directional":true,"Links":[{"SourceID":56845,"TargetID":30870,"Directional":true}]},{"ID":14585,"SourceStructureID":56841,"TargetStructureID":6203,"Label":"56841-6203 via Conventional from 56868 -> 57214","Type":"Conventional","Directional":true,"Links":[{"SourceID":56868,"TargetID":57214,"Directional":true}]},{"ID":14586,"SourceStructureID":56841,"TargetStructureID":20136,"Label":"56841-20136 via Conventional from 56844 -> 20145","Type":"Conventional","Directional":true,"Links":[{"SourceID":56844,"TargetID":20145,"Directional":true}]},{"ID":14587,"SourceStructureID":56841,"TargetStructureID":28886,"Label":"56841-28886 via Conventional from 56941 -> 51383","Type":"Conventional","Directional":true,"Links":[{"SourceID":56941,"TargetID":51383,"Directional":true}]},{"ID":14588,"SourceStructureID":56841,"TargetStructureID":83954,"Label":"56841-83954 via Conventional from 56846 -> 83956","Type":"Conventional","Directional":true,"Links":[{"SourceID":56846,"TargetID":83956,"Directional":true}]},{"ID":14589,"SourceStructureID":57027,"TargetStructureID":5279,"Label":"57027-5279 via Conventional from 99128 -> 99129","Type":"Conventional","Directional":true,"Links":[{"SourceID":99128,"TargetID":99129,"Directional":true}]},{"ID":14590,"SourceStructureID":57034,"TargetStructureID":3756,"Label":"57034-3756 via Conventional from 120320 -> 116034","Type":"Conventional","Directional":true,"Links":[{"SourceID":120320,"TargetID":116034,"Directional":true}]},{"ID":14591,"SourceStructureID":57034,"TargetStructureID":5650,"Label":"57034-5650 via Conventional from 125089 -> 125088","Type":"Conventional","Directional":true,"Links":[{"SourceID":125089,"TargetID":125088,"Directional":true}]},{"ID":14592,"SourceStructureID":57178,"TargetStructureID":35811,"Label":"57178-35811 via Conventional from 57182 -> 35875","Type":"Conventional","Directional":true,"Links":[{"SourceID":57182,"TargetID":35875,"Directional":true}]},{"ID":14593,"SourceStructureID":57353,"TargetStructureID":5107,"Label":"57353-5107 via Ribbon Synapse from 65078 -> 65077, 122890 -> 65073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65078,"TargetID":65077,"Directional":true},{"SourceID":122890,"TargetID":65073,"Directional":true}]},{"ID":14594,"SourceStructureID":57353,"TargetStructureID":5118,"Label":"57353-5118 via BC Conventional Synapse from 124432 -> 124433","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124432,"TargetID":124433,"Directional":true}]},{"ID":14595,"SourceStructureID":58441,"TargetStructureID":8575,"Label":"58441-8575 via BC Conventional Synapse from 62076 -> 62075","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62076,"TargetID":62075,"Directional":true}]},{"ID":14596,"SourceStructureID":58441,"TargetStructureID":39957,"Label":"58441-39957 via Ribbon Synapse from 58442 -> 58438, 58449 -> 58443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58442,"TargetID":58438,"Directional":true},{"SourceID":58449,"TargetID":58443,"Directional":true}]},{"ID":14597,"SourceStructureID":58441,"TargetStructureID":59333,"Label":"58441-59333 via Ribbon Synapse from 59350 -> 59351","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59350,"TargetID":59351,"Directional":true}]},{"ID":14598,"SourceStructureID":58441,"TargetStructureID":59340,"Label":"58441-59340 via Ribbon Synapse from 58446 -> 59344","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58446,"TargetID":59344,"Directional":true}]},{"ID":14599,"SourceStructureID":58441,"TargetStructureID":59347,"Label":"58441-59347 via Ribbon Synapse from 58445 -> 59349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58445,"TargetID":59349,"Directional":true}]},{"ID":14600,"SourceStructureID":58592,"TargetStructureID":142,"Label":"58592-142 via Conventional from 58636 -> 49759, 114530 -> 49743","Type":"Conventional","Directional":true,"Links":[{"SourceID":58636,"TargetID":49759,"Directional":true},{"SourceID":114530,"TargetID":49743,"Directional":true}]},{"ID":14601,"SourceStructureID":58592,"TargetStructureID":176,"Label":"58592-176 via Conventional from 58648 -> 91304, 58658 -> 58659","Type":"Conventional","Directional":true,"Links":[{"SourceID":58648,"TargetID":91304,"Directional":true},{"SourceID":58658,"TargetID":58659,"Directional":true}]},{"ID":14602,"SourceStructureID":58592,"TargetStructureID":4877,"Label":"58592-4877 via Conventional from 58661 -> 33308","Type":"Conventional","Directional":true,"Links":[{"SourceID":58661,"TargetID":33308,"Directional":true}]},{"ID":14603,"SourceStructureID":58592,"TargetStructureID":5279,"Label":"58592-5279 via Conventional from 58596 -> 49234, 58622 -> 58623, 58628 -> 49226, 58629 -> 58630","Type":"Conventional","Directional":true,"Links":[{"SourceID":58596,"TargetID":49234,"Directional":true},{"SourceID":58622,"TargetID":58623,"Directional":true},{"SourceID":58628,"TargetID":49226,"Directional":true},{"SourceID":58629,"TargetID":58630,"Directional":true}]},{"ID":14604,"SourceStructureID":58592,"TargetStructureID":5534,"Label":"58592-5534 via Conventional from 58676 -> 58677","Type":"Conventional","Directional":true,"Links":[{"SourceID":58676,"TargetID":58677,"Directional":true}]},{"ID":14605,"SourceStructureID":58592,"TargetStructureID":5607,"Label":"58592-5607 via Conventional from 58681 -> 43085, 58685 -> 58684","Type":"Conventional","Directional":true,"Links":[{"SourceID":58681,"TargetID":43085,"Directional":true},{"SourceID":58685,"TargetID":58684,"Directional":true}]},{"ID":14606,"SourceStructureID":58592,"TargetStructureID":5637,"Label":"58592-5637 via Conventional from 58666 -> 58667, 58673 -> 58674","Type":"Conventional","Directional":true,"Links":[{"SourceID":58666,"TargetID":58667,"Directional":true},{"SourceID":58673,"TargetID":58674,"Directional":true}]},{"ID":14607,"SourceStructureID":58592,"TargetStructureID":5641,"Label":"58592-5641 via Conventional from 58671 -> 58672","Type":"Conventional","Directional":true,"Links":[{"SourceID":58671,"TargetID":58672,"Directional":true}]},{"ID":14608,"SourceStructureID":58592,"TargetStructureID":6117,"Label":"58592-6117 via Conventional from 58593 -> 10541, 86425 -> 86426","Type":"Conventional","Directional":true,"Links":[{"SourceID":58593,"TargetID":10541,"Directional":true},{"SourceID":86425,"TargetID":86426,"Directional":true}]},{"ID":14609,"SourceStructureID":58592,"TargetStructureID":58642,"Label":"58592-58642 via Conventional from 58641 -> 58643","Type":"Conventional","Directional":true,"Links":[{"SourceID":58641,"TargetID":58643,"Directional":true}]},{"ID":14610,"SourceStructureID":58592,"TargetStructureID":58714,"Label":"58592-58714 via Conventional from 86121 -> 86122","Type":"Conventional","Directional":true,"Links":[{"SourceID":86121,"TargetID":86122,"Directional":true}]},{"ID":14611,"SourceStructureID":58687,"TargetStructureID":6117,"Label":"58687-6117 via Conventional from 58688 -> 58689","Type":"Conventional","Directional":true,"Links":[{"SourceID":58688,"TargetID":58689,"Directional":true}]},{"ID":14612,"SourceStructureID":58691,"TargetStructureID":6117,"Label":"58691-6117 via Conventional from 58693 -> 58694","Type":"Conventional","Directional":true,"Links":[{"SourceID":58693,"TargetID":58694,"Directional":true}]},{"ID":14613,"SourceStructureID":58696,"TargetStructureID":166,"Label":"58696-166 via Conventional from 58702 -> 4480, 58703 -> 4482, 58705 -> 84812, 58708 -> 16161, 66712 -> 60008","Type":"Conventional","Directional":true,"Links":[{"SourceID":58702,"TargetID":4480,"Directional":true},{"SourceID":58703,"TargetID":4482,"Directional":true},{"SourceID":58705,"TargetID":84812,"Directional":true},{"SourceID":58708,"TargetID":16161,"Directional":true},{"SourceID":66712,"TargetID":60008,"Directional":true}]},{"ID":14614,"SourceStructureID":58696,"TargetStructureID":593,"Label":"58696-593 via Conventional from 86960 -> 86961","Type":"Conventional","Directional":true,"Links":[{"SourceID":86960,"TargetID":86961,"Directional":true}]},{"ID":14615,"SourceStructureID":58696,"TargetStructureID":5377,"Label":"58696-5377 via Conventional from 86954 -> 22746","Type":"Conventional","Directional":true,"Links":[{"SourceID":86954,"TargetID":22746,"Directional":true}]},{"ID":14616,"SourceStructureID":58696,"TargetStructureID":5562,"Label":"58696-5562 via Conventional from 86969 -> 63790, 86979 -> 63846, 86983 -> 63615","Type":"Conventional","Directional":true,"Links":[{"SourceID":86969,"TargetID":63790,"Directional":true},{"SourceID":86979,"TargetID":63846,"Directional":true},{"SourceID":86983,"TargetID":63615,"Directional":true}]},{"ID":14617,"SourceStructureID":58696,"TargetStructureID":6117,"Label":"58696-6117 via Conventional from 58697 -> 58695","Type":"Conventional","Directional":true,"Links":[{"SourceID":58697,"TargetID":58695,"Directional":true}]},{"ID":14618,"SourceStructureID":58696,"TargetStructureID":84828,"Label":"58696-84828 via Conventional from 84827 -> 84829","Type":"Conventional","Directional":true,"Links":[{"SourceID":84827,"TargetID":84829,"Directional":true}]},{"ID":14619,"SourceStructureID":58696,"TargetStructureID":86943,"Label":"58696-86943 via Conventional from 86942 -> 86944","Type":"Conventional","Directional":true,"Links":[{"SourceID":86942,"TargetID":86944,"Directional":true}]},{"ID":14620,"SourceStructureID":58696,"TargetStructureID":86965,"Label":"58696-86965 via Conventional from 86964 -> 86966","Type":"Conventional","Directional":true,"Links":[{"SourceID":86964,"TargetID":86966,"Directional":true}]},{"ID":14621,"SourceStructureID":58696,"TargetStructureID":86985,"Label":"58696-86985 via Conventional from 86984 -> 86986","Type":"Conventional","Directional":true,"Links":[{"SourceID":86984,"TargetID":86986,"Directional":true}]},{"ID":14622,"SourceStructureID":58709,"TargetStructureID":176,"Label":"58709-176 via Conventional from 58712 -> 5814","Type":"Conventional","Directional":true,"Links":[{"SourceID":58712,"TargetID":5814,"Directional":true}]},{"ID":14623,"SourceStructureID":58709,"TargetStructureID":6117,"Label":"58709-6117 via Conventional from 58710 -> 58711","Type":"Conventional","Directional":true,"Links":[{"SourceID":58710,"TargetID":58711,"Directional":true}]},{"ID":14624,"SourceStructureID":58714,"TargetStructureID":4877,"Label":"58714-4877 via Conventional from 58736 -> 58737, 58739 -> 33390","Type":"Conventional","Directional":true,"Links":[{"SourceID":58736,"TargetID":58737,"Directional":true},{"SourceID":58739,"TargetID":33390,"Directional":true}]},{"ID":14625,"SourceStructureID":58714,"TargetStructureID":5303,"Label":"58714-5303 via Conventional from 58738 -> 35610","Type":"Conventional","Directional":true,"Links":[{"SourceID":58738,"TargetID":35610,"Directional":true}]},{"ID":14626,"SourceStructureID":58714,"TargetStructureID":6117,"Label":"58714-6117 via Conventional from 58715 -> 58713, 58719 -> 20578, 86123 -> 20569, 86141 -> 20574, 86454 -> 86455","Type":"Conventional","Directional":true,"Links":[{"SourceID":58715,"TargetID":58713,"Directional":true},{"SourceID":58719,"TargetID":20578,"Directional":true},{"SourceID":86123,"TargetID":20569,"Directional":true},{"SourceID":86141,"TargetID":20574,"Directional":true},{"SourceID":86454,"TargetID":86455,"Directional":true}]},{"ID":14627,"SourceStructureID":58723,"TargetStructureID":6117,"Label":"58723-6117 via Conventional from 58725 -> 20571, 58726 -> 20572","Type":"Conventional","Directional":true,"Links":[{"SourceID":58725,"TargetID":20571,"Directional":true},{"SourceID":58726,"TargetID":20572,"Directional":true}]},{"ID":14628,"SourceStructureID":58723,"TargetStructureID":58714,"Label":"58723-58714 via Conventional from 58724 -> 58722","Type":"Conventional","Directional":true,"Links":[{"SourceID":58724,"TargetID":58722,"Directional":true}]},{"ID":14629,"SourceStructureID":58745,"TargetStructureID":6117,"Label":"58745-6117 via Conventional from 58746 -> 58744","Type":"Conventional","Directional":true,"Links":[{"SourceID":58746,"TargetID":58744,"Directional":true}]},{"ID":14630,"SourceStructureID":58757,"TargetStructureID":5601,"Label":"58757-5601 via Conventional from 58764 -> 127182","Type":"Conventional","Directional":true,"Links":[{"SourceID":58764,"TargetID":127182,"Directional":true}]},{"ID":14631,"SourceStructureID":58757,"TargetStructureID":6117,"Label":"58757-6117 via Conventional from 58758 -> 58756","Type":"Conventional","Directional":true,"Links":[{"SourceID":58758,"TargetID":58756,"Directional":true}]},{"ID":14632,"SourceStructureID":58773,"TargetStructureID":6117,"Label":"58773-6117 via Conventional from 58774 -> 30924","Type":"Conventional","Directional":true,"Links":[{"SourceID":58774,"TargetID":30924,"Directional":true}]},{"ID":14633,"SourceStructureID":58777,"TargetStructureID":6117,"Label":"58777-6117 via Conventional from 58785 -> 58786, 86597 -> 86598","Type":"Conventional","Directional":true,"Links":[{"SourceID":58785,"TargetID":58786,"Directional":true},{"SourceID":86597,"TargetID":86598,"Directional":true}]},{"ID":14634,"SourceStructureID":58816,"TargetStructureID":1724,"Label":"58816-1724 via Conventional from 58819 -> 1772","Type":"Conventional","Directional":true,"Links":[{"SourceID":58819,"TargetID":1772,"Directional":true}]},{"ID":14635,"SourceStructureID":58816,"TargetStructureID":5279,"Label":"58816-5279 via Conventional from 58821 -> 25816","Type":"Conventional","Directional":true,"Links":[{"SourceID":58821,"TargetID":25816,"Directional":true}]},{"ID":14636,"SourceStructureID":58816,"TargetStructureID":6117,"Label":"58816-6117 via Conventional from 85990 -> 58809","Type":"Conventional","Directional":true,"Links":[{"SourceID":85990,"TargetID":58809,"Directional":true}]},{"ID":14637,"SourceStructureID":58827,"TargetStructureID":6117,"Label":"58827-6117 via Conventional from 58828 -> 58810","Type":"Conventional","Directional":true,"Links":[{"SourceID":58828,"TargetID":58810,"Directional":true}]},{"ID":14638,"SourceStructureID":58829,"TargetStructureID":5561,"Label":"58829-5561 via Conventional from 97652 -> 46307, 97679 -> 46303","Type":"Conventional","Directional":true,"Links":[{"SourceID":97652,"TargetID":46307,"Directional":true},{"SourceID":97679,"TargetID":46303,"Directional":true}]},{"ID":14639,"SourceStructureID":59012,"TargetStructureID":1724,"Label":"59012-1724 via Conventional from 101524 -> 20197","Type":"Conventional","Directional":true,"Links":[{"SourceID":101524,"TargetID":20197,"Directional":true}]},{"ID":14640,"SourceStructureID":59012,"TargetStructureID":5279,"Label":"59012-5279 via Conventional from 59013 -> 25826, 59014 -> 59015","Type":"Conventional","Directional":true,"Links":[{"SourceID":59013,"TargetID":25826,"Directional":true},{"SourceID":59014,"TargetID":59015,"Directional":true}]},{"ID":14641,"SourceStructureID":59102,"TargetStructureID":593,"Label":"59102-593 via Postsynapse from 59103 -> 59101","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":59103,"TargetID":59101,"Directional":true}]},{"ID":14642,"SourceStructureID":59125,"TargetStructureID":483,"Label":"59125-483 via Conventional from 59126 -> 6704","Type":"Conventional","Directional":true,"Links":[{"SourceID":59126,"TargetID":6704,"Directional":true}]},{"ID":14643,"SourceStructureID":59139,"TargetStructureID":593,"Label":"59139-593 via Conventional from 59141 -> 7700","Type":"Conventional","Directional":true,"Links":[{"SourceID":59141,"TargetID":7700,"Directional":true}]},{"ID":14644,"SourceStructureID":59147,"TargetStructureID":909,"Label":"59147-909 via Conventional from 59151 -> 30650","Type":"Conventional","Directional":true,"Links":[{"SourceID":59151,"TargetID":30650,"Directional":true}]},{"ID":14645,"SourceStructureID":59147,"TargetStructureID":20136,"Label":"59147-20136 via Conventional from 130468 -> 130467","Type":"Conventional","Directional":true,"Links":[{"SourceID":130468,"TargetID":130467,"Directional":true}]},{"ID":14646,"SourceStructureID":59147,"TargetStructureID":59145,"Label":"59147-59145 via Conventional from 59148 -> 59149","Type":"Conventional","Directional":true,"Links":[{"SourceID":59148,"TargetID":59149,"Directional":true}]},{"ID":14647,"SourceStructureID":59163,"TargetStructureID":8575,"Label":"59163-8575 via BC Conventional Synapse from 62440 -> 62438","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62440,"TargetID":62438,"Directional":true}]},{"ID":14648,"SourceStructureID":59211,"TargetStructureID":59223,"Label":"59211-59223 via Ribbon Synapse from 59216 -> 59234, 59232 -> 59233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59216,"TargetID":59234,"Directional":true},{"SourceID":59232,"TargetID":59233,"Directional":true}]},{"ID":14649,"SourceStructureID":59225,"TargetStructureID":59223,"Label":"59225-59223 via Conventional from 59227 -> 59228","Type":"Conventional","Directional":true,"Links":[{"SourceID":59227,"TargetID":59228,"Directional":true}]},{"ID":14650,"SourceStructureID":59229,"TargetStructureID":6136,"Label":"59229-6136 via Conventional from 85556 -> 85557","Type":"Conventional","Directional":true,"Links":[{"SourceID":85556,"TargetID":85557,"Directional":true}]},{"ID":14651,"SourceStructureID":59229,"TargetStructureID":59251,"Label":"59229-59251 via Conventional from 59250 -> 59252","Type":"Conventional","Directional":true,"Links":[{"SourceID":59250,"TargetID":59252,"Directional":true}]},{"ID":14652,"SourceStructureID":59229,"TargetStructureID":59257,"Label":"59229-59257 via Conventional from 59256 -> 59258","Type":"Conventional","Directional":true,"Links":[{"SourceID":59256,"TargetID":59258,"Directional":true}]},{"ID":14653,"SourceStructureID":59243,"TargetStructureID":59223,"Label":"59243-59223 via Conventional from 59244 -> 59242","Type":"Conventional","Directional":true,"Links":[{"SourceID":59244,"TargetID":59242,"Directional":true}]},{"ID":14654,"SourceStructureID":59247,"TargetStructureID":7144,"Label":"59247-7144 via Conventional from 59248 -> 59246","Type":"Conventional","Directional":true,"Links":[{"SourceID":59248,"TargetID":59246,"Directional":true}]},{"ID":14655,"SourceStructureID":59251,"TargetStructureID":59254,"Label":"59251-59254 via Conventional from 59253 -> 59255","Type":"Conventional","Directional":true,"Links":[{"SourceID":59253,"TargetID":59255,"Directional":true}]},{"ID":14656,"SourceStructureID":59262,"TargetStructureID":5497,"Label":"59262-5497 via Ribbon Synapse from 62621 -> 62620, 62624 -> 62623, 62625 -> 62626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62621,"TargetID":62620,"Directional":true},{"SourceID":62624,"TargetID":62623,"Directional":true},{"SourceID":62625,"TargetID":62626,"Directional":true}]},{"ID":14657,"SourceStructureID":59262,"TargetStructureID":59229,"Label":"59262-59229 via Ribbon Synapse from 59263 -> 59261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59263,"TargetID":59261,"Directional":true}]},{"ID":14658,"SourceStructureID":59262,"TargetStructureID":59294,"Label":"59262-59294 via Ribbon Synapse from 122437 -> 122438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122437,"TargetID":122438,"Directional":true}]},{"ID":14659,"SourceStructureID":59262,"TargetStructureID":62627,"Label":"59262-62627 via BC Conventional Synapse from 59292 -> 62628","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59292,"TargetID":62628,"Directional":true}]},{"ID":14660,"SourceStructureID":59294,"TargetStructureID":5566,"Label":"59294-5566 via Conventional from 59298 -> 59321","Type":"Conventional","Directional":true,"Links":[{"SourceID":59298,"TargetID":59321,"Directional":true}]},{"ID":14661,"SourceStructureID":59294,"TargetStructureID":59262,"Label":"59294-59262 via Conventional from 59297 -> 122439, 59297 -> 122446","Type":"Conventional","Directional":true,"Links":[{"SourceID":59297,"TargetID":122439,"Directional":true},{"SourceID":59297,"TargetID":122446,"Directional":true}]},{"ID":14662,"SourceStructureID":59316,"TargetStructureID":5566,"Label":"59316-5566 via Conventional from 59318 -> 59317","Type":"Conventional","Directional":true,"Links":[{"SourceID":59318,"TargetID":59317,"Directional":true}]},{"ID":14663,"SourceStructureID":59326,"TargetStructureID":4877,"Label":"59326-4877 via Conventional from 59327 -> 59325","Type":"Conventional","Directional":true,"Links":[{"SourceID":59327,"TargetID":59325,"Directional":true}]},{"ID":14664,"SourceStructureID":59329,"TargetStructureID":4877,"Label":"59329-4877 via Conventional from 59330 -> 59328","Type":"Conventional","Directional":true,"Links":[{"SourceID":59330,"TargetID":59328,"Directional":true}]},{"ID":14665,"SourceStructureID":59331,"TargetStructureID":59145,"Label":"59331-59145 via Conventional from 59332 -> 59153","Type":"Conventional","Directional":true,"Links":[{"SourceID":59332,"TargetID":59153,"Directional":true}]},{"ID":14666,"SourceStructureID":59333,"TargetStructureID":5497,"Label":"59333-5497 via Conventional from 85041 -> 85043","Type":"Conventional","Directional":true,"Links":[{"SourceID":85041,"TargetID":85043,"Directional":true}]},{"ID":14667,"SourceStructureID":59333,"TargetStructureID":5500,"Label":"59333-5500 via Conventional from 59354 -> 59356","Type":"Conventional","Directional":true,"Links":[{"SourceID":59354,"TargetID":59356,"Directional":true}]},{"ID":14668,"SourceStructureID":59333,"TargetStructureID":58441,"Label":"59333-58441 via Conventional from 59352 -> 59353","Type":"Conventional","Directional":true,"Links":[{"SourceID":59352,"TargetID":59353,"Directional":true}]},{"ID":14669,"SourceStructureID":59333,"TargetStructureID":59347,"Label":"59333-59347 via Conventional from 59338 -> 59348","Type":"Conventional","Directional":true,"Links":[{"SourceID":59338,"TargetID":59348,"Directional":true}]},{"ID":14670,"SourceStructureID":59333,"TargetStructureID":85044,"Label":"59333-85044 via Conventional from 85042 -> 85047","Type":"Conventional","Directional":true,"Links":[{"SourceID":85042,"TargetID":85047,"Directional":true}]},{"ID":14671,"SourceStructureID":59333,"TargetStructureID":85053,"Label":"59333-85053 via Conventional from 85052 -> 85054","Type":"Conventional","Directional":true,"Links":[{"SourceID":85052,"TargetID":85054,"Directional":true}]},{"ID":14672,"SourceStructureID":59333,"TargetStructureID":85059,"Label":"59333-85059 via Conventional from 85058 -> 85060","Type":"Conventional","Directional":true,"Links":[{"SourceID":85058,"TargetID":85060,"Directional":true}]},{"ID":14673,"SourceStructureID":59333,"TargetStructureID":85079,"Label":"59333-85079 via Conventional from 85078 -> 85081","Type":"Conventional","Directional":true,"Links":[{"SourceID":85078,"TargetID":85081,"Directional":true}]},{"ID":14674,"SourceStructureID":59340,"TargetStructureID":58441,"Label":"59340-58441 via Conventional from 59342 -> 59343","Type":"Conventional","Directional":true,"Links":[{"SourceID":59342,"TargetID":59343,"Directional":true}]},{"ID":14675,"SourceStructureID":59362,"TargetStructureID":5435,"Label":"59362-5435 via Ribbon Synapse from 63792 -> 63793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63792,"TargetID":63793,"Directional":true}]},{"ID":14676,"SourceStructureID":59362,"TargetStructureID":5497,"Label":"59362-5497 via Ribbon Synapse from 59370 -> 62570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59370,"TargetID":62570,"Directional":true}]},{"ID":14677,"SourceStructureID":59362,"TargetStructureID":7859,"Label":"59362-7859 via Ribbon Synapse from 122452 -> 64638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122452,"TargetID":64638,"Directional":true}]},{"ID":14678,"SourceStructureID":59362,"TargetStructureID":63628,"Label":"59362-63628 via Ribbon Synapse from 63795 -> 63784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63795,"TargetID":63784,"Directional":true}]},{"ID":14679,"SourceStructureID":59371,"TargetStructureID":59362,"Label":"59371-59362 via Conventional from 59374 -> 59375","Type":"Conventional","Directional":true,"Links":[{"SourceID":59374,"TargetID":59375,"Directional":true}]},{"ID":14680,"SourceStructureID":59392,"TargetStructureID":5405,"Label":"59392-5405 via Ribbon Synapse from 59416 -> 59418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59416,"TargetID":59418,"Directional":true}]},{"ID":14681,"SourceStructureID":59392,"TargetStructureID":5497,"Label":"59392-5497 via Ribbon Synapse from 59398 -> 62554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59398,"TargetID":62554,"Directional":true}]},{"ID":14682,"SourceStructureID":59422,"TargetStructureID":166,"Label":"59422-166 via Conventional from 59449 -> 59450","Type":"Conventional","Directional":true,"Links":[{"SourceID":59449,"TargetID":59450,"Directional":true}]},{"ID":14683,"SourceStructureID":59422,"TargetStructureID":483,"Label":"59422-483 via Conventional from 59447 -> 59448, 59459 -> 51180, 59462 -> 59463, 59465 -> 6727, 59467 -> 59468","Type":"Conventional","Directional":true,"Links":[{"SourceID":59447,"TargetID":59448,"Directional":true},{"SourceID":59459,"TargetID":51180,"Directional":true},{"SourceID":59462,"TargetID":59463,"Directional":true},{"SourceID":59465,"TargetID":6727,"Directional":true},{"SourceID":59467,"TargetID":59468,"Directional":true}]},{"ID":14684,"SourceStructureID":59422,"TargetStructureID":593,"Label":"59422-593 via Conventional from 59426 -> 28402, 59505 -> 7702, 63964 -> 63962, 66650 -> 66649","Type":"Conventional","Directional":true,"Links":[{"SourceID":59426,"TargetID":28402,"Directional":true},{"SourceID":59505,"TargetID":7702,"Directional":true},{"SourceID":63964,"TargetID":63962,"Directional":true},{"SourceID":66650,"TargetID":66649,"Directional":true}]},{"ID":14685,"SourceStructureID":59422,"TargetStructureID":5283,"Label":"59422-5283 via Conventional from 59515 -> 24052","Type":"Conventional","Directional":true,"Links":[{"SourceID":59515,"TargetID":24052,"Directional":true}]},{"ID":14686,"SourceStructureID":59422,"TargetStructureID":6156,"Label":"59422-6156 via Conventional from 59424 -> 59425, 59434 -> 28643, 117714 -> 117715","Type":"Conventional","Directional":true,"Links":[{"SourceID":59424,"TargetID":59425,"Directional":true},{"SourceID":59434,"TargetID":28643,"Directional":true},{"SourceID":117714,"TargetID":117715,"Directional":true}]},{"ID":14687,"SourceStructureID":59422,"TargetStructureID":16026,"Label":"59422-16026 via Conventional from 59516 -> 22382","Type":"Conventional","Directional":true,"Links":[{"SourceID":59516,"TargetID":22382,"Directional":true}]},{"ID":14688,"SourceStructureID":59437,"TargetStructureID":483,"Label":"59437-483 via Conventional from 59438 -> 6777","Type":"Conventional","Directional":true,"Links":[{"SourceID":59438,"TargetID":6777,"Directional":true}]},{"ID":14689,"SourceStructureID":59482,"TargetStructureID":5377,"Label":"59482-5377 via Conventional from 87033 -> 87032","Type":"Conventional","Directional":true,"Links":[{"SourceID":87033,"TargetID":87032,"Directional":true}]},{"ID":14690,"SourceStructureID":59507,"TargetStructureID":59422,"Label":"59507-59422 via Conventional from 59508 -> 59506","Type":"Conventional","Directional":true,"Links":[{"SourceID":59508,"TargetID":59506,"Directional":true}]},{"ID":14691,"SourceStructureID":59510,"TargetStructureID":59422,"Label":"59510-59422 via Conventional from 59511 -> 59509","Type":"Conventional","Directional":true,"Links":[{"SourceID":59511,"TargetID":59509,"Directional":true}]},{"ID":14692,"SourceStructureID":59518,"TargetStructureID":59422,"Label":"59518-59422 via Conventional from 59519 -> 59517","Type":"Conventional","Directional":true,"Links":[{"SourceID":59519,"TargetID":59517,"Directional":true}]},{"ID":14693,"SourceStructureID":59521,"TargetStructureID":59422,"Label":"59521-59422 via Conventional from 59522 -> 59520","Type":"Conventional","Directional":true,"Links":[{"SourceID":59522,"TargetID":59520,"Directional":true}]},{"ID":14694,"SourceStructureID":59524,"TargetStructureID":16073,"Label":"59524-16073 via Conventional from 59544 -> 32212","Type":"Conventional","Directional":true,"Links":[{"SourceID":59544,"TargetID":32212,"Directional":true}]},{"ID":14695,"SourceStructureID":59524,"TargetStructureID":59539,"Label":"59524-59539 via Conventional from 59538 -> 59540","Type":"Conventional","Directional":true,"Links":[{"SourceID":59538,"TargetID":59540,"Directional":true}]},{"ID":14696,"SourceStructureID":59535,"TargetStructureID":59524,"Label":"59535-59524 via Conventional from 59536 -> 59534","Type":"Conventional","Directional":true,"Links":[{"SourceID":59536,"TargetID":59534,"Directional":true}]},{"ID":14697,"SourceStructureID":59632,"TargetStructureID":59629,"Label":"59632-59629 via Conventional from 59633 -> 59631","Type":"Conventional","Directional":true,"Links":[{"SourceID":59633,"TargetID":59631,"Directional":true}]},{"ID":14698,"SourceStructureID":59638,"TargetStructureID":5382,"Label":"59638-5382 via Ribbon Synapse from 59640 -> 59639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59640,"TargetID":59639,"Directional":true}]},{"ID":14699,"SourceStructureID":59715,"TargetStructureID":8580,"Label":"59715-8580 via Conventional from 59716 -> 59714","Type":"Conventional","Directional":true,"Links":[{"SourceID":59716,"TargetID":59714,"Directional":true}]},{"ID":14700,"SourceStructureID":59718,"TargetStructureID":8580,"Label":"59718-8580 via Conventional from 59719 -> 59717","Type":"Conventional","Directional":true,"Links":[{"SourceID":59719,"TargetID":59717,"Directional":true}]},{"ID":14701,"SourceStructureID":59721,"TargetStructureID":8580,"Label":"59721-8580 via Conventional from 59722 -> 59720","Type":"Conventional","Directional":true,"Links":[{"SourceID":59722,"TargetID":59720,"Directional":true}]},{"ID":14702,"SourceStructureID":59726,"TargetStructureID":8580,"Label":"59726-8580 via Conventional from 59727 -> 59725","Type":"Conventional","Directional":true,"Links":[{"SourceID":59727,"TargetID":59725,"Directional":true}]},{"ID":14703,"SourceStructureID":59731,"TargetStructureID":8580,"Label":"59731-8580 via Conventional from 59732 -> 59730","Type":"Conventional","Directional":true,"Links":[{"SourceID":59732,"TargetID":59730,"Directional":true}]},{"ID":14704,"SourceStructureID":59734,"TargetStructureID":8580,"Label":"59734-8580 via Conventional from 59735 -> 59733","Type":"Conventional","Directional":true,"Links":[{"SourceID":59735,"TargetID":59733,"Directional":true}]},{"ID":14705,"SourceStructureID":59737,"TargetStructureID":8580,"Label":"59737-8580 via Conventional from 59738 -> 59736","Type":"Conventional","Directional":true,"Links":[{"SourceID":59738,"TargetID":59736,"Directional":true}]},{"ID":14706,"SourceStructureID":59751,"TargetStructureID":8580,"Label":"59751-8580 via Conventional from 59752 -> 59750","Type":"Conventional","Directional":true,"Links":[{"SourceID":59752,"TargetID":59750,"Directional":true}]},{"ID":14707,"SourceStructureID":59756,"TargetStructureID":8580,"Label":"59756-8580 via Conventional from 59757 -> 59755","Type":"Conventional","Directional":true,"Links":[{"SourceID":59757,"TargetID":59755,"Directional":true}]},{"ID":14708,"SourceStructureID":59761,"TargetStructureID":8580,"Label":"59761-8580 via Conventional from 59762 -> 59760","Type":"Conventional","Directional":true,"Links":[{"SourceID":59762,"TargetID":59760,"Directional":true}]},{"ID":14709,"SourceStructureID":59763,"TargetStructureID":8580,"Label":"59763-8580 via Conventional from 59764 -> 59759","Type":"Conventional","Directional":true,"Links":[{"SourceID":59764,"TargetID":59759,"Directional":true}]},{"ID":14710,"SourceStructureID":59766,"TargetStructureID":8580,"Label":"59766-8580 via Conventional from 59767 -> 59765","Type":"Conventional","Directional":true,"Links":[{"SourceID":59767,"TargetID":59765,"Directional":true}]},{"ID":14711,"SourceStructureID":59769,"TargetStructureID":8580,"Label":"59769-8580 via Conventional from 59770 -> 59768","Type":"Conventional","Directional":true,"Links":[{"SourceID":59770,"TargetID":59768,"Directional":true}]},{"ID":14712,"SourceStructureID":59772,"TargetStructureID":8580,"Label":"59772-8580 via Conventional from 59773 -> 59771","Type":"Conventional","Directional":true,"Links":[{"SourceID":59773,"TargetID":59771,"Directional":true}]},{"ID":14713,"SourceStructureID":59775,"TargetStructureID":8580,"Label":"59775-8580 via Conventional from 59776 -> 59774","Type":"Conventional","Directional":true,"Links":[{"SourceID":59776,"TargetID":59774,"Directional":true}]},{"ID":14714,"SourceStructureID":59779,"TargetStructureID":8580,"Label":"59779-8580 via Conventional from 59780 -> 59778","Type":"Conventional","Directional":true,"Links":[{"SourceID":59780,"TargetID":59778,"Directional":true}]},{"ID":14715,"SourceStructureID":59782,"TargetStructureID":8580,"Label":"59782-8580 via Conventional from 59783 -> 59781","Type":"Conventional","Directional":true,"Links":[{"SourceID":59783,"TargetID":59781,"Directional":true}]},{"ID":14716,"SourceStructureID":59785,"TargetStructureID":8580,"Label":"59785-8580 via Conventional from 59786 -> 59784","Type":"Conventional","Directional":true,"Links":[{"SourceID":59786,"TargetID":59784,"Directional":true}]},{"ID":14717,"SourceStructureID":59796,"TargetStructureID":8580,"Label":"59796-8580 via Conventional from 59797 -> 59795","Type":"Conventional","Directional":true,"Links":[{"SourceID":59797,"TargetID":59795,"Directional":true}]},{"ID":14718,"SourceStructureID":59801,"TargetStructureID":8580,"Label":"59801-8580 via Conventional from 59802 -> 59800","Type":"Conventional","Directional":true,"Links":[{"SourceID":59802,"TargetID":59800,"Directional":true}]},{"ID":14719,"SourceStructureID":59804,"TargetStructureID":8580,"Label":"59804-8580 via Conventional from 59805 -> 59803","Type":"Conventional","Directional":true,"Links":[{"SourceID":59805,"TargetID":59803,"Directional":true}]},{"ID":14720,"SourceStructureID":59811,"TargetStructureID":8580,"Label":"59811-8580 via Conventional from 59812 -> 59809","Type":"Conventional","Directional":true,"Links":[{"SourceID":59812,"TargetID":59809,"Directional":true}]},{"ID":14721,"SourceStructureID":59813,"TargetStructureID":8580,"Label":"59813-8580 via Conventional from 59814 -> 59810","Type":"Conventional","Directional":true,"Links":[{"SourceID":59814,"TargetID":59810,"Directional":true}]},{"ID":14722,"SourceStructureID":59816,"TargetStructureID":8580,"Label":"59816-8580 via Conventional from 59817 -> 59815","Type":"Conventional","Directional":true,"Links":[{"SourceID":59817,"TargetID":59815,"Directional":true}]},{"ID":14723,"SourceStructureID":59819,"TargetStructureID":8580,"Label":"59819-8580 via Conventional from 59820 -> 59818","Type":"Conventional","Directional":true,"Links":[{"SourceID":59820,"TargetID":59818,"Directional":true}]},{"ID":14724,"SourceStructureID":59822,"TargetStructureID":8580,"Label":"59822-8580 via Conventional from 59823 -> 59821","Type":"Conventional","Directional":true,"Links":[{"SourceID":59823,"TargetID":59821,"Directional":true}]},{"ID":14725,"SourceStructureID":59825,"TargetStructureID":8580,"Label":"59825-8580 via Conventional from 59826 -> 59824","Type":"Conventional","Directional":true,"Links":[{"SourceID":59826,"TargetID":59824,"Directional":true}]},{"ID":14726,"SourceStructureID":59830,"TargetStructureID":8580,"Label":"59830-8580 via Conventional from 59831 -> 59829","Type":"Conventional","Directional":true,"Links":[{"SourceID":59831,"TargetID":59829,"Directional":true}]},{"ID":14727,"SourceStructureID":59837,"TargetStructureID":8580,"Label":"59837-8580 via Conventional from 59839 -> 59838","Type":"Conventional","Directional":true,"Links":[{"SourceID":59839,"TargetID":59838,"Directional":true}]},{"ID":14728,"SourceStructureID":59841,"TargetStructureID":8580,"Label":"59841-8580 via Conventional from 59842 -> 59840","Type":"Conventional","Directional":true,"Links":[{"SourceID":59842,"TargetID":59840,"Directional":true}]},{"ID":14729,"SourceStructureID":59847,"TargetStructureID":59843,"Label":"59847-59843 via Conventional from 59848 -> 59846","Type":"Conventional","Directional":true,"Links":[{"SourceID":59848,"TargetID":59846,"Directional":true}]},{"ID":14730,"SourceStructureID":59851,"TargetStructureID":8580,"Label":"59851-8580 via Conventional from 59852 -> 59850","Type":"Conventional","Directional":true,"Links":[{"SourceID":59852,"TargetID":59850,"Directional":true}]},{"ID":14731,"SourceStructureID":59854,"TargetStructureID":8580,"Label":"59854-8580 via Conventional from 59855 -> 59853","Type":"Conventional","Directional":true,"Links":[{"SourceID":59855,"TargetID":59853,"Directional":true}]},{"ID":14732,"SourceStructureID":59857,"TargetStructureID":8580,"Label":"59857-8580 via Conventional from 59858 -> 59856","Type":"Conventional","Directional":true,"Links":[{"SourceID":59858,"TargetID":59856,"Directional":true}]},{"ID":14733,"SourceStructureID":59862,"TargetStructureID":8580,"Label":"59862-8580 via Conventional from 59863 -> 59861","Type":"Conventional","Directional":true,"Links":[{"SourceID":59863,"TargetID":59861,"Directional":true}]},{"ID":14734,"SourceStructureID":59865,"TargetStructureID":8580,"Label":"59865-8580 via Conventional from 59866 -> 59864","Type":"Conventional","Directional":true,"Links":[{"SourceID":59866,"TargetID":59864,"Directional":true}]},{"ID":14735,"SourceStructureID":59868,"TargetStructureID":8580,"Label":"59868-8580 via Conventional from 59869 -> 59867","Type":"Conventional","Directional":true,"Links":[{"SourceID":59869,"TargetID":59867,"Directional":true}]},{"ID":14736,"SourceStructureID":59872,"TargetStructureID":8580,"Label":"59872-8580 via Conventional from 59873 -> 59870","Type":"Conventional","Directional":true,"Links":[{"SourceID":59873,"TargetID":59870,"Directional":true}]},{"ID":14737,"SourceStructureID":59890,"TargetStructureID":8580,"Label":"59890-8580 via Conventional from 59891 -> 59660","Type":"Conventional","Directional":true,"Links":[{"SourceID":59891,"TargetID":59660,"Directional":true}]},{"ID":14738,"SourceStructureID":59896,"TargetStructureID":5491,"Label":"59896-5491 via Conventional from 59897 -> 41950","Type":"Conventional","Directional":true,"Links":[{"SourceID":59897,"TargetID":41950,"Directional":true}]},{"ID":14739,"SourceStructureID":59904,"TargetStructureID":8578,"Label":"59904-8578 via Conventional from 59905 -> 59903","Type":"Conventional","Directional":true,"Links":[{"SourceID":59905,"TargetID":59903,"Directional":true}]},{"ID":14740,"SourceStructureID":59910,"TargetStructureID":8578,"Label":"59910-8578 via Conventional from 59911 -> 59909","Type":"Conventional","Directional":true,"Links":[{"SourceID":59911,"TargetID":59909,"Directional":true}]},{"ID":14741,"SourceStructureID":59913,"TargetStructureID":8578,"Label":"59913-8578 via Conventional from 59914 -> 59912","Type":"Conventional","Directional":true,"Links":[{"SourceID":59914,"TargetID":59912,"Directional":true}]},{"ID":14742,"SourceStructureID":59916,"TargetStructureID":8578,"Label":"59916-8578 via BC Conventional Synapse from 59917 -> 59915","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59917,"TargetID":59915,"Directional":true}]},{"ID":14743,"SourceStructureID":59919,"TargetStructureID":8578,"Label":"59919-8578 via Ribbon Synapse from 59920 -> 59918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59920,"TargetID":59918,"Directional":true}]},{"ID":14744,"SourceStructureID":59922,"TargetStructureID":8578,"Label":"59922-8578 via Conventional from 59923 -> 59921","Type":"Conventional","Directional":true,"Links":[{"SourceID":59923,"TargetID":59921,"Directional":true}]},{"ID":14745,"SourceStructureID":59929,"TargetStructureID":8578,"Label":"59929-8578 via Conventional from 59930 -> 59928","Type":"Conventional","Directional":true,"Links":[{"SourceID":59930,"TargetID":59928,"Directional":true}]},{"ID":14746,"SourceStructureID":59932,"TargetStructureID":8578,"Label":"59932-8578 via Conventional from 59933 -> 59931","Type":"Conventional","Directional":true,"Links":[{"SourceID":59933,"TargetID":59931,"Directional":true}]},{"ID":14747,"SourceStructureID":59935,"TargetStructureID":8578,"Label":"59935-8578 via Conventional from 59936 -> 59934","Type":"Conventional","Directional":true,"Links":[{"SourceID":59936,"TargetID":59934,"Directional":true}]},{"ID":14748,"SourceStructureID":59940,"TargetStructureID":40480,"Label":"59940-40480 via Conventional from 59941 -> 59939","Type":"Conventional","Directional":true,"Links":[{"SourceID":59941,"TargetID":59939,"Directional":true}]},{"ID":14749,"SourceStructureID":59943,"TargetStructureID":40480,"Label":"59943-40480 via Conventional from 59944 -> 59942","Type":"Conventional","Directional":true,"Links":[{"SourceID":59944,"TargetID":59942,"Directional":true}]},{"ID":14750,"SourceStructureID":59947,"TargetStructureID":40480,"Label":"59947-40480 via Conventional from 59948 -> 59946","Type":"Conventional","Directional":true,"Links":[{"SourceID":59948,"TargetID":59946,"Directional":true}]},{"ID":14751,"SourceStructureID":59953,"TargetStructureID":40480,"Label":"59953-40480 via Conventional from 59954 -> 59952","Type":"Conventional","Directional":true,"Links":[{"SourceID":59954,"TargetID":59952,"Directional":true}]},{"ID":14752,"SourceStructureID":59957,"TargetStructureID":40480,"Label":"59957-40480 via Conventional from 59958 -> 59956","Type":"Conventional","Directional":true,"Links":[{"SourceID":59958,"TargetID":59956,"Directional":true}]},{"ID":14753,"SourceStructureID":59960,"TargetStructureID":40480,"Label":"59960-40480 via Conventional from 59961 -> 59959","Type":"Conventional","Directional":true,"Links":[{"SourceID":59961,"TargetID":59959,"Directional":true}]},{"ID":14754,"SourceStructureID":59963,"TargetStructureID":40480,"Label":"59963-40480 via Conventional from 59964 -> 59962","Type":"Conventional","Directional":true,"Links":[{"SourceID":59964,"TargetID":59962,"Directional":true}]},{"ID":14755,"SourceStructureID":59966,"TargetStructureID":59963,"Label":"59966-59963 via Conventional from 59968 -> 59965","Type":"Conventional","Directional":true,"Links":[{"SourceID":59968,"TargetID":59965,"Directional":true}]},{"ID":14756,"SourceStructureID":60067,"TargetStructureID":173,"Label":"60067-173 via Conventional from 60068 -> 60066","Type":"Conventional","Directional":true,"Links":[{"SourceID":60068,"TargetID":60066,"Directional":true}]},{"ID":14757,"SourceStructureID":60074,"TargetStructureID":8720,"Label":"60074-8720 via Conventional from 60075 -> 15293","Type":"Conventional","Directional":true,"Links":[{"SourceID":60075,"TargetID":15293,"Directional":true}]},{"ID":14758,"SourceStructureID":60078,"TargetStructureID":8720,"Label":"60078-8720 via Conventional from 60079 -> 60077","Type":"Conventional","Directional":true,"Links":[{"SourceID":60079,"TargetID":60077,"Directional":true}]},{"ID":14759,"SourceStructureID":60083,"TargetStructureID":8720,"Label":"60083-8720 via Conventional from 60084 -> 60082","Type":"Conventional","Directional":true,"Links":[{"SourceID":60084,"TargetID":60082,"Directional":true}]},{"ID":14760,"SourceStructureID":60083,"TargetStructureID":67354,"Label":"60083-67354 via Conventional from 91536 -> 91535","Type":"Conventional","Directional":true,"Links":[{"SourceID":91536,"TargetID":91535,"Directional":true}]},{"ID":14761,"SourceStructureID":60086,"TargetStructureID":8720,"Label":"60086-8720 via Conventional from 60087 -> 15307","Type":"Conventional","Directional":true,"Links":[{"SourceID":60087,"TargetID":15307,"Directional":true}]},{"ID":14762,"SourceStructureID":60088,"TargetStructureID":8720,"Label":"60088-8720 via Conventional from 60089 -> 15309","Type":"Conventional","Directional":true,"Links":[{"SourceID":60089,"TargetID":15309,"Directional":true}]},{"ID":14763,"SourceStructureID":60088,"TargetStructureID":65267,"Label":"60088-65267 via Conventional from 65300 -> 65299","Type":"Conventional","Directional":true,"Links":[{"SourceID":65300,"TargetID":65299,"Directional":true}]},{"ID":14764,"SourceStructureID":60090,"TargetStructureID":8720,"Label":"60090-8720 via Conventional from 60091 -> 15308","Type":"Conventional","Directional":true,"Links":[{"SourceID":60091,"TargetID":15308,"Directional":true}]},{"ID":14765,"SourceStructureID":60094,"TargetStructureID":8720,"Label":"60094-8720 via Ribbon Synapse from 60095 -> 15311","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60095,"TargetID":15311,"Directional":true}]},{"ID":14766,"SourceStructureID":60098,"TargetStructureID":8720,"Label":"60098-8720 via Conventional from 60099 -> 60097","Type":"Conventional","Directional":true,"Links":[{"SourceID":60099,"TargetID":60097,"Directional":true}]},{"ID":14767,"SourceStructureID":60100,"TargetStructureID":8720,"Label":"60100-8720 via Conventional from 60101 -> 15312","Type":"Conventional","Directional":true,"Links":[{"SourceID":60101,"TargetID":15312,"Directional":true}]},{"ID":14768,"SourceStructureID":60104,"TargetStructureID":8720,"Label":"60104-8720 via Conventional from 60105 -> 15294","Type":"Conventional","Directional":true,"Links":[{"SourceID":60105,"TargetID":15294,"Directional":true}]},{"ID":14769,"SourceStructureID":60106,"TargetStructureID":8720,"Label":"60106-8720 via Conventional from 60107 -> 15297","Type":"Conventional","Directional":true,"Links":[{"SourceID":60107,"TargetID":15297,"Directional":true}]},{"ID":14770,"SourceStructureID":60115,"TargetStructureID":8720,"Label":"60115-8720 via Conventional from 60116 -> 60114","Type":"Conventional","Directional":true,"Links":[{"SourceID":60116,"TargetID":60114,"Directional":true}]},{"ID":14771,"SourceStructureID":60191,"TargetStructureID":483,"Label":"60191-483 via Conventional from 60192 -> 6781","Type":"Conventional","Directional":true,"Links":[{"SourceID":60192,"TargetID":6781,"Directional":true}]},{"ID":14772,"SourceStructureID":60193,"TargetStructureID":483,"Label":"60193-483 via Conventional from 60194 -> 6790","Type":"Conventional","Directional":true,"Links":[{"SourceID":60194,"TargetID":6790,"Directional":true}]},{"ID":14773,"SourceStructureID":60200,"TargetStructureID":483,"Label":"60200-483 via Conventional from 60203 -> 6788","Type":"Conventional","Directional":true,"Links":[{"SourceID":60203,"TargetID":6788,"Directional":true}]},{"ID":14774,"SourceStructureID":60211,"TargetStructureID":483,"Label":"60211-483 via Conventional from 60212 -> 6792","Type":"Conventional","Directional":true,"Links":[{"SourceID":60212,"TargetID":6792,"Directional":true}]},{"ID":14775,"SourceStructureID":60215,"TargetStructureID":483,"Label":"60215-483 via Conventional from 60220 -> 6793","Type":"Conventional","Directional":true,"Links":[{"SourceID":60220,"TargetID":6793,"Directional":true}]},{"ID":14776,"SourceStructureID":60218,"TargetStructureID":483,"Label":"60218-483 via Conventional from 60219 -> 6799","Type":"Conventional","Directional":true,"Links":[{"SourceID":60219,"TargetID":6799,"Directional":true}]},{"ID":14777,"SourceStructureID":60221,"TargetStructureID":483,"Label":"60221-483 via Conventional from 60222 -> 6795","Type":"Conventional","Directional":true,"Links":[{"SourceID":60222,"TargetID":6795,"Directional":true}]},{"ID":14778,"SourceStructureID":60225,"TargetStructureID":483,"Label":"60225-483 via Conventional from 60226 -> 6800","Type":"Conventional","Directional":true,"Links":[{"SourceID":60226,"TargetID":6800,"Directional":true}]},{"ID":14779,"SourceStructureID":60232,"TargetStructureID":60229,"Label":"60232-60229 via Conventional from 60233 -> 60231","Type":"Conventional","Directional":true,"Links":[{"SourceID":60233,"TargetID":60231,"Directional":true}]},{"ID":14780,"SourceStructureID":60236,"TargetStructureID":483,"Label":"60236-483 via Conventional from 60237 -> 60235","Type":"Conventional","Directional":true,"Links":[{"SourceID":60237,"TargetID":60235,"Directional":true}]},{"ID":14781,"SourceStructureID":60239,"TargetStructureID":483,"Label":"60239-483 via Conventional from 60240 -> 60238","Type":"Conventional","Directional":true,"Links":[{"SourceID":60240,"TargetID":60238,"Directional":true}]},{"ID":14782,"SourceStructureID":60243,"TargetStructureID":5528,"Label":"60243-5528 via Conventional from 60245 -> 60249","Type":"Conventional","Directional":true,"Links":[{"SourceID":60245,"TargetID":60249,"Directional":true}]},{"ID":14783,"SourceStructureID":60243,"TargetStructureID":8720,"Label":"60243-8720 via Conventional from 60244 -> 60242","Type":"Conventional","Directional":true,"Links":[{"SourceID":60244,"TargetID":60242,"Directional":true}]},{"ID":14784,"SourceStructureID":60246,"TargetStructureID":5528,"Label":"60246-5528 via Conventional from 60247 -> 8264","Type":"Conventional","Directional":true,"Links":[{"SourceID":60247,"TargetID":8264,"Directional":true}]},{"ID":14785,"SourceStructureID":60252,"TargetStructureID":8720,"Label":"60252-8720 via Conventional from 60253 -> 60251","Type":"Conventional","Directional":true,"Links":[{"SourceID":60253,"TargetID":60251,"Directional":true}]},{"ID":14786,"SourceStructureID":60256,"TargetStructureID":8720,"Label":"60256-8720 via Conventional from 60257 -> 60255","Type":"Conventional","Directional":true,"Links":[{"SourceID":60257,"TargetID":60255,"Directional":true}]},{"ID":14787,"SourceStructureID":60260,"TargetStructureID":8720,"Label":"60260-8720 via Conventional from 60261 -> 60259","Type":"Conventional","Directional":true,"Links":[{"SourceID":60261,"TargetID":60259,"Directional":true}]},{"ID":14788,"SourceStructureID":60264,"TargetStructureID":431,"Label":"60264-431 via Conventional from 60266 -> 12686","Type":"Conventional","Directional":true,"Links":[{"SourceID":60266,"TargetID":12686,"Directional":true}]},{"ID":14789,"SourceStructureID":60264,"TargetStructureID":8720,"Label":"60264-8720 via Conventional from 60265 -> 60263","Type":"Conventional","Directional":true,"Links":[{"SourceID":60265,"TargetID":60263,"Directional":true}]},{"ID":14790,"SourceStructureID":60272,"TargetStructureID":440,"Label":"60272-440 via Conventional from 60274 -> 60271","Type":"Conventional","Directional":true,"Links":[{"SourceID":60274,"TargetID":60271,"Directional":true}]},{"ID":14791,"SourceStructureID":60288,"TargetStructureID":440,"Label":"60288-440 via Conventional from 60289 -> 60287","Type":"Conventional","Directional":true,"Links":[{"SourceID":60289,"TargetID":60287,"Directional":true}]},{"ID":14792,"SourceStructureID":60306,"TargetStructureID":440,"Label":"60306-440 via Conventional from 60307 -> 60305","Type":"Conventional","Directional":true,"Links":[{"SourceID":60307,"TargetID":60305,"Directional":true}]},{"ID":14793,"SourceStructureID":60328,"TargetStructureID":8720,"Label":"60328-8720 via Conventional from 60329 -> 60327","Type":"Conventional","Directional":true,"Links":[{"SourceID":60329,"TargetID":60327,"Directional":true}]},{"ID":14794,"SourceStructureID":60331,"TargetStructureID":483,"Label":"60331-483 via Conventional from 60332 -> 6796","Type":"Conventional","Directional":true,"Links":[{"SourceID":60332,"TargetID":6796,"Directional":true}]},{"ID":14795,"SourceStructureID":60337,"TargetStructureID":483,"Label":"60337-483 via Conventional from 60342 -> 60343","Type":"Conventional","Directional":true,"Links":[{"SourceID":60342,"TargetID":60343,"Directional":true}]},{"ID":14796,"SourceStructureID":60344,"TargetStructureID":483,"Label":"60344-483 via Conventional from 60345 -> 6809","Type":"Conventional","Directional":true,"Links":[{"SourceID":60345,"TargetID":6809,"Directional":true}]},{"ID":14797,"SourceStructureID":60346,"TargetStructureID":483,"Label":"60346-483 via Conventional from 60347 -> 6807","Type":"Conventional","Directional":true,"Links":[{"SourceID":60347,"TargetID":6807,"Directional":true}]},{"ID":14798,"SourceStructureID":60348,"TargetStructureID":483,"Label":"60348-483 via Conventional from 60349 -> 6810","Type":"Conventional","Directional":true,"Links":[{"SourceID":60349,"TargetID":6810,"Directional":true}]},{"ID":14799,"SourceStructureID":60350,"TargetStructureID":483,"Label":"60350-483 via Conventional from 60351 -> 6808","Type":"Conventional","Directional":true,"Links":[{"SourceID":60351,"TargetID":6808,"Directional":true}]},{"ID":14800,"SourceStructureID":60354,"TargetStructureID":483,"Label":"60354-483 via Conventional from 60355 -> 6815","Type":"Conventional","Directional":true,"Links":[{"SourceID":60355,"TargetID":6815,"Directional":true}]},{"ID":14801,"SourceStructureID":60381,"TargetStructureID":992,"Label":"60381-992 via Conventional from 60382 -> 994","Type":"Conventional","Directional":true,"Links":[{"SourceID":60382,"TargetID":994,"Directional":true}]},{"ID":14802,"SourceStructureID":60381,"TargetStructureID":60386,"Label":"60381-60386 via Conventional from 60385 -> 60387","Type":"Conventional","Directional":true,"Links":[{"SourceID":60385,"TargetID":60387,"Directional":true}]},{"ID":14803,"SourceStructureID":60389,"TargetStructureID":60386,"Label":"60389-60386 via Conventional from 60390 -> 60388","Type":"Conventional","Directional":true,"Links":[{"SourceID":60390,"TargetID":60388,"Directional":true}]},{"ID":14804,"SourceStructureID":60424,"TargetStructureID":514,"Label":"60424-514 via Conventional from 60425 -> 15468","Type":"Conventional","Directional":true,"Links":[{"SourceID":60425,"TargetID":15468,"Directional":true}]},{"ID":14805,"SourceStructureID":60426,"TargetStructureID":514,"Label":"60426-514 via Conventional from 60427 -> 15467","Type":"Conventional","Directional":true,"Links":[{"SourceID":60427,"TargetID":15467,"Directional":true}]},{"ID":14806,"SourceStructureID":60428,"TargetStructureID":514,"Label":"60428-514 via Conventional from 60429 -> 1156","Type":"Conventional","Directional":true,"Links":[{"SourceID":60429,"TargetID":1156,"Directional":true}]},{"ID":14807,"SourceStructureID":60430,"TargetStructureID":514,"Label":"60430-514 via Conventional from 60431 -> 1145","Type":"Conventional","Directional":true,"Links":[{"SourceID":60431,"TargetID":1145,"Directional":true}]},{"ID":14808,"SourceStructureID":60432,"TargetStructureID":8485,"Label":"60432-8485 via Conventional from 60433 -> 15369","Type":"Conventional","Directional":true,"Links":[{"SourceID":60433,"TargetID":15369,"Directional":true}]},{"ID":14809,"SourceStructureID":60434,"TargetStructureID":8485,"Label":"60434-8485 via Conventional from 60435 -> 15368","Type":"Conventional","Directional":true,"Links":[{"SourceID":60435,"TargetID":15368,"Directional":true}]},{"ID":14810,"SourceStructureID":60436,"TargetStructureID":514,"Label":"60436-514 via Conventional from 60437 -> 8941","Type":"Conventional","Directional":true,"Links":[{"SourceID":60437,"TargetID":8941,"Directional":true}]},{"ID":14811,"SourceStructureID":60438,"TargetStructureID":514,"Label":"60438-514 via Conventional from 60439 -> 3236","Type":"Conventional","Directional":true,"Links":[{"SourceID":60439,"TargetID":3236,"Directional":true}]},{"ID":14812,"SourceStructureID":60449,"TargetStructureID":514,"Label":"60449-514 via Conventional from 60450 -> 11669","Type":"Conventional","Directional":true,"Links":[{"SourceID":60450,"TargetID":11669,"Directional":true}]},{"ID":14813,"SourceStructureID":60451,"TargetStructureID":514,"Label":"60451-514 via Conventional from 60452 -> 1140","Type":"Conventional","Directional":true,"Links":[{"SourceID":60452,"TargetID":1140,"Directional":true}]},{"ID":14814,"SourceStructureID":60454,"TargetStructureID":597,"Label":"60454-597 via Conventional from 60455 -> 60453","Type":"Conventional","Directional":true,"Links":[{"SourceID":60455,"TargetID":60453,"Directional":true}]},{"ID":14815,"SourceStructureID":60457,"TargetStructureID":597,"Label":"60457-597 via Conventional from 60458 -> 60456","Type":"Conventional","Directional":true,"Links":[{"SourceID":60458,"TargetID":60456,"Directional":true}]},{"ID":14816,"SourceStructureID":60460,"TargetStructureID":597,"Label":"60460-597 via Conventional from 60461 -> 60459","Type":"Conventional","Directional":true,"Links":[{"SourceID":60461,"TargetID":60459,"Directional":true}]},{"ID":14817,"SourceStructureID":60463,"TargetStructureID":597,"Label":"60463-597 via Conventional from 60464 -> 60462","Type":"Conventional","Directional":true,"Links":[{"SourceID":60464,"TargetID":60462,"Directional":true}]},{"ID":14818,"SourceStructureID":60466,"TargetStructureID":597,"Label":"60466-597 via Conventional from 60467 -> 60465","Type":"Conventional","Directional":true,"Links":[{"SourceID":60467,"TargetID":60465,"Directional":true}]},{"ID":14819,"SourceStructureID":60484,"TargetStructureID":597,"Label":"60484-597 via Conventional from 60485 -> 60483","Type":"Conventional","Directional":true,"Links":[{"SourceID":60485,"TargetID":60483,"Directional":true}]},{"ID":14820,"SourceStructureID":60487,"TargetStructureID":597,"Label":"60487-597 via Conventional from 60488 -> 60486","Type":"Conventional","Directional":true,"Links":[{"SourceID":60488,"TargetID":60486,"Directional":true}]},{"ID":14821,"SourceStructureID":60503,"TargetStructureID":40919,"Label":"60503-40919 via Conventional from 60504 -> 60502","Type":"Conventional","Directional":true,"Links":[{"SourceID":60504,"TargetID":60502,"Directional":true}]},{"ID":14822,"SourceStructureID":60519,"TargetStructureID":304,"Label":"60519-304 via Conventional from 60520 -> 60518","Type":"Conventional","Directional":true,"Links":[{"SourceID":60520,"TargetID":60518,"Directional":true}]},{"ID":14823,"SourceStructureID":60523,"TargetStructureID":517,"Label":"60523-517 via Conventional from 60524 -> 60522","Type":"Conventional","Directional":true,"Links":[{"SourceID":60524,"TargetID":60522,"Directional":true}]},{"ID":14824,"SourceStructureID":60535,"TargetStructureID":54744,"Label":"60535-54744 via Conventional from 60536 -> 54753","Type":"Conventional","Directional":true,"Links":[{"SourceID":60536,"TargetID":54753,"Directional":true}]},{"ID":14825,"SourceStructureID":60542,"TargetStructureID":60535,"Label":"60542-60535 via Conventional from 60543 -> 60541","Type":"Conventional","Directional":true,"Links":[{"SourceID":60543,"TargetID":60541,"Directional":true}]},{"ID":14826,"SourceStructureID":60547,"TargetStructureID":43130,"Label":"60547-43130 via Conventional from 60548 -> 60546","Type":"Conventional","Directional":true,"Links":[{"SourceID":60548,"TargetID":60546,"Directional":true}]},{"ID":14827,"SourceStructureID":60549,"TargetStructureID":4567,"Label":"60549-4567 via Conventional from 60551 -> 60555","Type":"Conventional","Directional":true,"Links":[{"SourceID":60551,"TargetID":60555,"Directional":true}]},{"ID":14828,"SourceStructureID":60549,"TargetStructureID":5281,"Label":"60549-5281 via Conventional from 60550 -> 36775","Type":"Conventional","Directional":true,"Links":[{"SourceID":60550,"TargetID":36775,"Directional":true}]},{"ID":14829,"SourceStructureID":60556,"TargetStructureID":5281,"Label":"60556-5281 via Conventional from 60557 -> 36778","Type":"Conventional","Directional":true,"Links":[{"SourceID":60557,"TargetID":36778,"Directional":true}]},{"ID":14830,"SourceStructureID":60558,"TargetStructureID":5281,"Label":"60558-5281 via Conventional from 60559 -> 36790","Type":"Conventional","Directional":true,"Links":[{"SourceID":60559,"TargetID":36790,"Directional":true}]},{"ID":14831,"SourceStructureID":60558,"TargetStructureID":7113,"Label":"60558-7113 via Conventional from 60562 -> 60569","Type":"Conventional","Directional":true,"Links":[{"SourceID":60562,"TargetID":60569,"Directional":true}]},{"ID":14832,"SourceStructureID":60572,"TargetStructureID":5454,"Label":"60572-5454 via Conventional from 60573 -> 38433","Type":"Conventional","Directional":true,"Links":[{"SourceID":60573,"TargetID":38433,"Directional":true}]},{"ID":14833,"SourceStructureID":60645,"TargetStructureID":166,"Label":"60645-166 via Conventional from 60650 -> 60651","Type":"Conventional","Directional":true,"Links":[{"SourceID":60650,"TargetID":60651,"Directional":true}]},{"ID":14834,"SourceStructureID":60645,"TargetStructureID":485,"Label":"60645-485 via Conventional from 101366 -> 101365","Type":"Conventional","Directional":true,"Links":[{"SourceID":101366,"TargetID":101365,"Directional":true}]},{"ID":14835,"SourceStructureID":60645,"TargetStructureID":6156,"Label":"60645-6156 via Conventional from 60647 -> 60644","Type":"Conventional","Directional":true,"Links":[{"SourceID":60647,"TargetID":60644,"Directional":true}]},{"ID":14836,"SourceStructureID":60657,"TargetStructureID":5118,"Label":"60657-5118 via Conventional from 61432 -> 6515","Type":"Conventional","Directional":true,"Links":[{"SourceID":61432,"TargetID":6515,"Directional":true}]},{"ID":14837,"SourceStructureID":60657,"TargetStructureID":6156,"Label":"60657-6156 via Conventional from 60658 -> 28679","Type":"Conventional","Directional":true,"Links":[{"SourceID":60658,"TargetID":28679,"Directional":true}]},{"ID":14838,"SourceStructureID":60657,"TargetStructureID":8575,"Label":"60657-8575 via Conventional from 61431 -> 17382, 61434 -> 62080","Type":"Conventional","Directional":true,"Links":[{"SourceID":61431,"TargetID":17382,"Directional":true},{"SourceID":61434,"TargetID":62080,"Directional":true}]},{"ID":14839,"SourceStructureID":60657,"TargetStructureID":61439,"Label":"60657-61439 via Conventional from 61438 -> 61444, 61443 -> 61442","Type":"Conventional","Directional":true,"Links":[{"SourceID":61438,"TargetID":61444,"Directional":true},{"SourceID":61443,"TargetID":61442,"Directional":true}]},{"ID":14840,"SourceStructureID":60657,"TargetStructureID":61450,"Label":"60657-61450 via Conventional from 61449 -> 61452","Type":"Conventional","Directional":true,"Links":[{"SourceID":61449,"TargetID":61452,"Directional":true}]},{"ID":14841,"SourceStructureID":60840,"TargetStructureID":591,"Label":"60840-591 via Conventional from 60841 -> 10075","Type":"Conventional","Directional":true,"Links":[{"SourceID":60841,"TargetID":10075,"Directional":true}]},{"ID":14842,"SourceStructureID":60863,"TargetStructureID":11031,"Label":"60863-11031 via Conventional from 60866 -> 60868","Type":"Conventional","Directional":true,"Links":[{"SourceID":60866,"TargetID":60868,"Directional":true}]},{"ID":14843,"SourceStructureID":60873,"TargetStructureID":6169,"Label":"60873-6169 via Conventional from 60874 -> 60875","Type":"Conventional","Directional":true,"Links":[{"SourceID":60874,"TargetID":60875,"Directional":true}]},{"ID":14844,"SourceStructureID":60873,"TargetStructureID":11031,"Label":"60873-11031 via Conventional from 60876 -> 60877","Type":"Conventional","Directional":true,"Links":[{"SourceID":60876,"TargetID":60877,"Directional":true}]},{"ID":14845,"SourceStructureID":60879,"TargetStructureID":12897,"Label":"60879-12897 via Conventional from 60880 -> 60878","Type":"Conventional","Directional":true,"Links":[{"SourceID":60880,"TargetID":60878,"Directional":true}]},{"ID":14846,"SourceStructureID":60893,"TargetStructureID":6169,"Label":"60893-6169 via Conventional from 60894 -> 23040","Type":"Conventional","Directional":true,"Links":[{"SourceID":60894,"TargetID":23040,"Directional":true}]},{"ID":14847,"SourceStructureID":60895,"TargetStructureID":6169,"Label":"60895-6169 via Conventional from 60896 -> 23041","Type":"Conventional","Directional":true,"Links":[{"SourceID":60896,"TargetID":23041,"Directional":true}]},{"ID":14848,"SourceStructureID":60917,"TargetStructureID":6169,"Label":"60917-6169 via Conventional from 60918 -> 60916","Type":"Conventional","Directional":true,"Links":[{"SourceID":60918,"TargetID":60916,"Directional":true}]},{"ID":14849,"SourceStructureID":60967,"TargetStructureID":60976,"Label":"60967-60976 via Conventional from 60975 -> 60985","Type":"Conventional","Directional":true,"Links":[{"SourceID":60975,"TargetID":60985,"Directional":true}]},{"ID":14850,"SourceStructureID":60976,"TargetStructureID":60967,"Label":"60976-60967 via Ribbon Synapse from 60982 -> 60994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60982,"TargetID":60994,"Directional":true}]},{"ID":14851,"SourceStructureID":61108,"TargetStructureID":483,"Label":"61108-483 via Conventional from 61110 -> 6713, 61111 -> 6821, 92344 -> 92343","Type":"Conventional","Directional":true,"Links":[{"SourceID":61110,"TargetID":6713,"Directional":true},{"SourceID":61111,"TargetID":6821,"Directional":true},{"SourceID":92344,"TargetID":92343,"Directional":true}]},{"ID":14852,"SourceStructureID":61108,"TargetStructureID":593,"Label":"61108-593 via Conventional from 61109 -> 50446, 117732 -> 62875, 117735 -> 62873","Type":"Conventional","Directional":true,"Links":[{"SourceID":61109,"TargetID":50446,"Directional":true},{"SourceID":117732,"TargetID":62875,"Directional":true},{"SourceID":117735,"TargetID":62873,"Directional":true}]},{"ID":14853,"SourceStructureID":61108,"TargetStructureID":5649,"Label":"61108-5649 via Conventional from 118485 -> 53946","Type":"Conventional","Directional":true,"Links":[{"SourceID":118485,"TargetID":53946,"Directional":true}]},{"ID":14854,"SourceStructureID":61108,"TargetStructureID":6115,"Label":"61108-6115 via Conventional from 117733 -> 62871, 117740 -> 73151, 117743 -> 75252","Type":"Conventional","Directional":true,"Links":[{"SourceID":117733,"TargetID":62871,"Directional":true},{"SourceID":117740,"TargetID":73151,"Directional":true},{"SourceID":117743,"TargetID":75252,"Directional":true}]},{"ID":14855,"SourceStructureID":61117,"TargetStructureID":5017,"Label":"61117-5017 via Conventional from 61118 -> 61119, 61121 -> 5042","Type":"Conventional","Directional":true,"Links":[{"SourceID":61118,"TargetID":61119,"Directional":true},{"SourceID":61121,"TargetID":5042,"Directional":true}]},{"ID":14856,"SourceStructureID":61122,"TargetStructureID":5017,"Label":"61122-5017 via Conventional from 61123 -> 61124","Type":"Conventional","Directional":true,"Links":[{"SourceID":61123,"TargetID":61124,"Directional":true}]},{"ID":14857,"SourceStructureID":61208,"TargetStructureID":5017,"Label":"61208-5017 via Conventional from 61209 -> 17062, 61210 -> 61211","Type":"Conventional","Directional":true,"Links":[{"SourceID":61209,"TargetID":17062,"Directional":true},{"SourceID":61210,"TargetID":61211,"Directional":true}]},{"ID":14858,"SourceStructureID":61214,"TargetStructureID":5017,"Label":"61214-5017 via Conventional from 61215 -> 61212, 61216 -> 61213, 61229 -> 17084","Type":"Conventional","Directional":true,"Links":[{"SourceID":61215,"TargetID":61212,"Directional":true},{"SourceID":61216,"TargetID":61213,"Directional":true},{"SourceID":61229,"TargetID":17084,"Directional":true}]},{"ID":14859,"SourceStructureID":61214,"TargetStructureID":17228,"Label":"61214-17228 via Conventional from 61220 -> 61221, 61222 -> 61223, 61225 -> 17261","Type":"Conventional","Directional":true,"Links":[{"SourceID":61220,"TargetID":61221,"Directional":true},{"SourceID":61222,"TargetID":61223,"Directional":true},{"SourceID":61225,"TargetID":17261,"Directional":true}]},{"ID":14860,"SourceStructureID":61227,"TargetStructureID":61214,"Label":"61227-61214 via Conventional from 61228 -> 61226","Type":"Conventional","Directional":true,"Links":[{"SourceID":61228,"TargetID":61226,"Directional":true}]},{"ID":14861,"SourceStructureID":61231,"TargetStructureID":5017,"Label":"61231-5017 via Conventional from 61232 -> 61233","Type":"Conventional","Directional":true,"Links":[{"SourceID":61232,"TargetID":61233,"Directional":true}]},{"ID":14862,"SourceStructureID":61313,"TargetStructureID":61270,"Label":"61313-61270 via Conventional from 61315 -> 61306","Type":"Conventional","Directional":true,"Links":[{"SourceID":61315,"TargetID":61306,"Directional":true}]},{"ID":14863,"SourceStructureID":61417,"TargetStructureID":61270,"Label":"61417-61270 via Conventional from 61418 -> 61304","Type":"Conventional","Directional":true,"Links":[{"SourceID":61418,"TargetID":61304,"Directional":true}]},{"ID":14864,"SourceStructureID":61419,"TargetStructureID":61270,"Label":"61419-61270 via Conventional from 61420 -> 61305","Type":"Conventional","Directional":true,"Links":[{"SourceID":61420,"TargetID":61305,"Directional":true}]},{"ID":14865,"SourceStructureID":61421,"TargetStructureID":61270,"Label":"61421-61270 via Conventional from 61422 -> 61307","Type":"Conventional","Directional":true,"Links":[{"SourceID":61422,"TargetID":61307,"Directional":true}]},{"ID":14866,"SourceStructureID":61424,"TargetStructureID":61421,"Label":"61424-61421 via Conventional from 61425 -> 61423","Type":"Conventional","Directional":true,"Links":[{"SourceID":61425,"TargetID":61423,"Directional":true}]},{"ID":14867,"SourceStructureID":61462,"TargetStructureID":61450,"Label":"61462-61450 via Conventional from 61463 -> 61461","Type":"Conventional","Directional":true,"Links":[{"SourceID":61463,"TargetID":61461,"Directional":true}]},{"ID":14868,"SourceStructureID":61466,"TargetStructureID":138,"Label":"61466-138 via Conventional from 61475 -> 61476","Type":"Conventional","Directional":true,"Links":[{"SourceID":61475,"TargetID":61476,"Directional":true}]},{"ID":14869,"SourceStructureID":61466,"TargetStructureID":5297,"Label":"61466-5297 via Conventional from 61477 -> 61478","Type":"Conventional","Directional":true,"Links":[{"SourceID":61477,"TargetID":61478,"Directional":true}]},{"ID":14870,"SourceStructureID":61466,"TargetStructureID":63628,"Label":"61466-63628 via Conventional from 61467 -> 63813","Type":"Conventional","Directional":true,"Links":[{"SourceID":61467,"TargetID":63813,"Directional":true}]},{"ID":14871,"SourceStructureID":61500,"TargetStructureID":909,"Label":"61500-909 via Conventional from 61503 -> 45923","Type":"Conventional","Directional":true,"Links":[{"SourceID":61503,"TargetID":45923,"Directional":true}]},{"ID":14872,"SourceStructureID":61530,"TargetStructureID":8575,"Label":"61530-8575 via BC Conventional Synapse from 61533 -> 61529","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61533,"TargetID":61529,"Directional":true}]},{"ID":14873,"SourceStructureID":61583,"TargetStructureID":8575,"Label":"61583-8575 via Conventional from 61584 -> 17381","Type":"Conventional","Directional":true,"Links":[{"SourceID":61584,"TargetID":17381,"Directional":true}]},{"ID":14874,"SourceStructureID":61587,"TargetStructureID":408,"Label":"61587-408 via Conventional from 61590 -> 61591","Type":"Conventional","Directional":true,"Links":[{"SourceID":61590,"TargetID":61591,"Directional":true}]},{"ID":14875,"SourceStructureID":61587,"TargetStructureID":8575,"Label":"61587-8575 via Conventional from 61588 -> 17383","Type":"Conventional","Directional":true,"Links":[{"SourceID":61588,"TargetID":17383,"Directional":true}]},{"ID":14876,"SourceStructureID":61596,"TargetStructureID":8575,"Label":"61596-8575 via Conventional from 61597 -> 61595","Type":"Conventional","Directional":true,"Links":[{"SourceID":61597,"TargetID":61595,"Directional":true}]},{"ID":14877,"SourceStructureID":61598,"TargetStructureID":372,"Label":"61598-372 via Conventional from 61604 -> 16016","Type":"Conventional","Directional":true,"Links":[{"SourceID":61604,"TargetID":16016,"Directional":true}]},{"ID":14878,"SourceStructureID":61598,"TargetStructureID":428,"Label":"61598-428 via Conventional from 66207 -> 66208","Type":"Conventional","Directional":true,"Links":[{"SourceID":66207,"TargetID":66208,"Directional":true}]},{"ID":14879,"SourceStructureID":61598,"TargetStructureID":606,"Label":"61598-606 via Conventional from 61606 -> 53255","Type":"Conventional","Directional":true,"Links":[{"SourceID":61606,"TargetID":53255,"Directional":true}]},{"ID":14880,"SourceStructureID":61598,"TargetStructureID":4569,"Label":"61598-4569 via Conventional from 61607 -> 47508","Type":"Conventional","Directional":true,"Links":[{"SourceID":61607,"TargetID":47508,"Directional":true}]},{"ID":14881,"SourceStructureID":61598,"TargetStructureID":8575,"Label":"61598-8575 via Conventional from 61599 -> 17384","Type":"Conventional","Directional":true,"Links":[{"SourceID":61599,"TargetID":17384,"Directional":true}]},{"ID":14882,"SourceStructureID":61618,"TargetStructureID":8575,"Label":"61618-8575 via Conventional from 61619 -> 17386","Type":"Conventional","Directional":true,"Links":[{"SourceID":61619,"TargetID":17386,"Directional":true}]},{"ID":14883,"SourceStructureID":61621,"TargetStructureID":8575,"Label":"61621-8575 via Conventional from 61622 -> 61620","Type":"Conventional","Directional":true,"Links":[{"SourceID":61622,"TargetID":61620,"Directional":true}]},{"ID":14884,"SourceStructureID":61624,"TargetStructureID":8575,"Label":"61624-8575 via Conventional from 61626 -> 17387","Type":"Conventional","Directional":true,"Links":[{"SourceID":61626,"TargetID":17387,"Directional":true}]},{"ID":14885,"SourceStructureID":61627,"TargetStructureID":8575,"Label":"61627-8575 via Conventional from 61628 -> 17391","Type":"Conventional","Directional":true,"Links":[{"SourceID":61628,"TargetID":17391,"Directional":true}]},{"ID":14886,"SourceStructureID":61630,"TargetStructureID":8575,"Label":"61630-8575 via BC Conventional Synapse from 61631 -> 61629","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61631,"TargetID":61629,"Directional":true}]},{"ID":14887,"SourceStructureID":61632,"TargetStructureID":8575,"Label":"61632-8575 via Conventional from 61633 -> 17392","Type":"Conventional","Directional":true,"Links":[{"SourceID":61633,"TargetID":17392,"Directional":true}]},{"ID":14888,"SourceStructureID":61638,"TargetStructureID":8575,"Label":"61638-8575 via BC Conventional Synapse from 61640 -> 61637","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61640,"TargetID":61637,"Directional":true}]},{"ID":14889,"SourceStructureID":61642,"TargetStructureID":8575,"Label":"61642-8575 via Conventional from 61643 -> 61641","Type":"Conventional","Directional":true,"Links":[{"SourceID":61643,"TargetID":61641,"Directional":true}]},{"ID":14890,"SourceStructureID":61644,"TargetStructureID":8575,"Label":"61644-8575 via Conventional from 61645 -> 17393","Type":"Conventional","Directional":true,"Links":[{"SourceID":61645,"TargetID":17393,"Directional":true}]},{"ID":14891,"SourceStructureID":61646,"TargetStructureID":8575,"Label":"61646-8575 via Conventional from 61647 -> 17394","Type":"Conventional","Directional":true,"Links":[{"SourceID":61647,"TargetID":17394,"Directional":true}]},{"ID":14892,"SourceStructureID":61649,"TargetStructureID":8575,"Label":"61649-8575 via Conventional from 61650 -> 61648","Type":"Conventional","Directional":true,"Links":[{"SourceID":61650,"TargetID":61648,"Directional":true}]},{"ID":14893,"SourceStructureID":61652,"TargetStructureID":8575,"Label":"61652-8575 via Conventional from 61653 -> 17388","Type":"Conventional","Directional":true,"Links":[{"SourceID":61653,"TargetID":17388,"Directional":true}]},{"ID":14894,"SourceStructureID":61656,"TargetStructureID":8575,"Label":"61656-8575 via BC Conventional Synapse from 61659 -> 61655, 61661 -> 61660","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61659,"TargetID":61655,"Directional":true},{"SourceID":61661,"TargetID":61660,"Directional":true}]},{"ID":14895,"SourceStructureID":61666,"TargetStructureID":8575,"Label":"61666-8575 via BC Conventional Synapse from 61668 -> 61664","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61668,"TargetID":61664,"Directional":true}]},{"ID":14896,"SourceStructureID":61676,"TargetStructureID":8575,"Label":"61676-8575 via Conventional from 61677 -> 61675","Type":"Conventional","Directional":true,"Links":[{"SourceID":61677,"TargetID":61675,"Directional":true}]},{"ID":14897,"SourceStructureID":61698,"TargetStructureID":372,"Label":"61698-372 via Conventional from 61700 -> 55073","Type":"Conventional","Directional":true,"Links":[{"SourceID":61700,"TargetID":55073,"Directional":true}]},{"ID":14898,"SourceStructureID":61698,"TargetStructureID":8575,"Label":"61698-8575 via Conventional from 61699 -> 37255","Type":"Conventional","Directional":true,"Links":[{"SourceID":61699,"TargetID":37255,"Directional":true}]},{"ID":14899,"SourceStructureID":61703,"TargetStructureID":8575,"Label":"61703-8575 via BC Conventional Synapse from 61704 -> 61702","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61704,"TargetID":61702,"Directional":true}]},{"ID":14900,"SourceStructureID":61705,"TargetStructureID":8575,"Label":"61705-8575 via Conventional from 61706 -> 37256","Type":"Conventional","Directional":true,"Links":[{"SourceID":61706,"TargetID":37256,"Directional":true}]},{"ID":14901,"SourceStructureID":61707,"TargetStructureID":8575,"Label":"61707-8575 via Conventional from 61708 -> 37257","Type":"Conventional","Directional":true,"Links":[{"SourceID":61708,"TargetID":37257,"Directional":true}]},{"ID":14902,"SourceStructureID":61709,"TargetStructureID":7594,"Label":"61709-7594 via Conventional from 65695 -> 64852","Type":"Conventional","Directional":true,"Links":[{"SourceID":65695,"TargetID":64852,"Directional":true}]},{"ID":14903,"SourceStructureID":61709,"TargetStructureID":8575,"Label":"61709-8575 via Conventional from 61710 -> 37259","Type":"Conventional","Directional":true,"Links":[{"SourceID":61710,"TargetID":37259,"Directional":true}]},{"ID":14904,"SourceStructureID":61716,"TargetStructureID":8575,"Label":"61716-8575 via Conventional from 61717 -> 61715","Type":"Conventional","Directional":true,"Links":[{"SourceID":61717,"TargetID":61715,"Directional":true}]},{"ID":14905,"SourceStructureID":61719,"TargetStructureID":8575,"Label":"61719-8575 via BC Conventional Synapse from 61720 -> 61718","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61720,"TargetID":61718,"Directional":true}]},{"ID":14906,"SourceStructureID":61740,"TargetStructureID":8575,"Label":"61740-8575 via Conventional from 61744 -> 43101","Type":"Conventional","Directional":true,"Links":[{"SourceID":61744,"TargetID":43101,"Directional":true}]},{"ID":14907,"SourceStructureID":61741,"TargetStructureID":61740,"Label":"61741-61740 via Conventional from 61742 -> 61743","Type":"Conventional","Directional":true,"Links":[{"SourceID":61742,"TargetID":61743,"Directional":true}]},{"ID":14908,"SourceStructureID":61745,"TargetStructureID":8575,"Label":"61745-8575 via Conventional from 61746 -> 37273","Type":"Conventional","Directional":true,"Links":[{"SourceID":61746,"TargetID":37273,"Directional":true}]},{"ID":14909,"SourceStructureID":61752,"TargetStructureID":61758,"Label":"61752-61758 via Conventional from 61757 -> 61761","Type":"Conventional","Directional":true,"Links":[{"SourceID":61757,"TargetID":61761,"Directional":true}]},{"ID":14910,"SourceStructureID":61758,"TargetStructureID":8575,"Label":"61758-8575 via BC Conventional Synapse from 61762 -> 43102","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61762,"TargetID":43102,"Directional":true}]},{"ID":14911,"SourceStructureID":61758,"TargetStructureID":61752,"Label":"61758-61752 via Ribbon Synapse from 61759 -> 61756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61759,"TargetID":61756,"Directional":true}]},{"ID":14912,"SourceStructureID":61763,"TargetStructureID":8575,"Label":"61763-8575 via Conventional from 61764 -> 43103","Type":"Conventional","Directional":true,"Links":[{"SourceID":61764,"TargetID":43103,"Directional":true}]},{"ID":14913,"SourceStructureID":61765,"TargetStructureID":8575,"Label":"61765-8575 via Conventional from 61766 -> 43105","Type":"Conventional","Directional":true,"Links":[{"SourceID":61766,"TargetID":43105,"Directional":true}]},{"ID":14914,"SourceStructureID":61767,"TargetStructureID":8575,"Label":"61767-8575 via Conventional from 61768 -> 43104","Type":"Conventional","Directional":true,"Links":[{"SourceID":61768,"TargetID":43104,"Directional":true}]},{"ID":14915,"SourceStructureID":61773,"TargetStructureID":593,"Label":"61773-593 via Conventional from 61774 -> 61772","Type":"Conventional","Directional":true,"Links":[{"SourceID":61774,"TargetID":61772,"Directional":true}]},{"ID":14916,"SourceStructureID":61777,"TargetStructureID":593,"Label":"61777-593 via Conventional from 61778 -> 7709, 61783 -> 7811","Type":"Conventional","Directional":true,"Links":[{"SourceID":61778,"TargetID":7709,"Directional":true},{"SourceID":61783,"TargetID":7811,"Directional":true}]},{"ID":14917,"SourceStructureID":61785,"TargetStructureID":593,"Label":"61785-593 via Conventional from 61787 -> 7818","Type":"Conventional","Directional":true,"Links":[{"SourceID":61787,"TargetID":7818,"Directional":true}]},{"ID":14918,"SourceStructureID":61788,"TargetStructureID":593,"Label":"61788-593 via Conventional from 61789 -> 7817","Type":"Conventional","Directional":true,"Links":[{"SourceID":61789,"TargetID":7817,"Directional":true}]},{"ID":14919,"SourceStructureID":61791,"TargetStructureID":593,"Label":"61791-593 via Conventional from 61792 -> 61790","Type":"Conventional","Directional":true,"Links":[{"SourceID":61792,"TargetID":61790,"Directional":true}]},{"ID":14920,"SourceStructureID":61797,"TargetStructureID":593,"Label":"61797-593 via Conventional from 61798 -> 15887","Type":"Conventional","Directional":true,"Links":[{"SourceID":61798,"TargetID":15887,"Directional":true}]},{"ID":14921,"SourceStructureID":61797,"TargetStructureID":79461,"Label":"61797-79461 via Conventional from 79462 -> 79463","Type":"Conventional","Directional":true,"Links":[{"SourceID":79462,"TargetID":79463,"Directional":true}]},{"ID":14922,"SourceStructureID":61799,"TargetStructureID":593,"Label":"61799-593 via Conventional from 61800 -> 15888","Type":"Conventional","Directional":true,"Links":[{"SourceID":61800,"TargetID":15888,"Directional":true}]},{"ID":14923,"SourceStructureID":61807,"TargetStructureID":483,"Label":"61807-483 via Conventional from 80463 -> 80464","Type":"Conventional","Directional":true,"Links":[{"SourceID":80463,"TargetID":80464,"Directional":true}]},{"ID":14924,"SourceStructureID":61807,"TargetStructureID":593,"Label":"61807-593 via Conventional from 61808 -> 15890","Type":"Conventional","Directional":true,"Links":[{"SourceID":61808,"TargetID":15890,"Directional":true}]},{"ID":14925,"SourceStructureID":61809,"TargetStructureID":166,"Label":"61809-166 via Conventional from 80538 -> 80539","Type":"Conventional","Directional":true,"Links":[{"SourceID":80538,"TargetID":80539,"Directional":true}]},{"ID":14926,"SourceStructureID":61809,"TargetStructureID":593,"Label":"61809-593 via Conventional from 61810 -> 52499, 80513 -> 68259","Type":"Conventional","Directional":true,"Links":[{"SourceID":61810,"TargetID":52499,"Directional":true},{"SourceID":80513,"TargetID":68259,"Directional":true}]},{"ID":14927,"SourceStructureID":61809,"TargetStructureID":6156,"Label":"61809-6156 via Conventional from 80488 -> 80489","Type":"Conventional","Directional":true,"Links":[{"SourceID":80488,"TargetID":80489,"Directional":true}]},{"ID":14928,"SourceStructureID":61813,"TargetStructureID":593,"Label":"61813-593 via Conventional from 61814 -> 61815","Type":"Conventional","Directional":true,"Links":[{"SourceID":61814,"TargetID":61815,"Directional":true}]},{"ID":14929,"SourceStructureID":61816,"TargetStructureID":483,"Label":"61816-483 via Conventional from 80745 -> 6762","Type":"Conventional","Directional":true,"Links":[{"SourceID":80745,"TargetID":6762,"Directional":true}]},{"ID":14930,"SourceStructureID":61816,"TargetStructureID":593,"Label":"61816-593 via Conventional from 61818 -> 28393, 61892 -> 15892, 80724 -> 67326","Type":"Conventional","Directional":true,"Links":[{"SourceID":61818,"TargetID":28393,"Directional":true},{"SourceID":61892,"TargetID":15892,"Directional":true},{"SourceID":80724,"TargetID":67326,"Directional":true}]},{"ID":14931,"SourceStructureID":61816,"TargetStructureID":5562,"Label":"61816-5562 via Conventional from 80725 -> 77166","Type":"Conventional","Directional":true,"Links":[{"SourceID":80725,"TargetID":77166,"Directional":true}]},{"ID":14932,"SourceStructureID":61817,"TargetStructureID":66523,"Label":"61817-66523 via Conventional from 61820 -> 75925","Type":"Conventional","Directional":true,"Links":[{"SourceID":61820,"TargetID":75925,"Directional":true}]},{"ID":14933,"SourceStructureID":61827,"TargetStructureID":22974,"Label":"61827-22974 via Conventional from 61829 -> 61830","Type":"Conventional","Directional":true,"Links":[{"SourceID":61829,"TargetID":61830,"Directional":true}]},{"ID":14934,"SourceStructureID":61836,"TargetStructureID":16026,"Label":"61836-16026 via Conventional from 134785 -> 134782","Type":"Conventional","Directional":true,"Links":[{"SourceID":134785,"TargetID":134782,"Directional":true}]},{"ID":14935,"SourceStructureID":61836,"TargetStructureID":69783,"Label":"61836-69783 via Adherens from 69782 -> 69784","Type":"Adherens","Directional":true,"Links":[{"SourceID":69782,"TargetID":69784,"Directional":true}]},{"ID":14936,"SourceStructureID":61842,"TargetStructureID":593,"Label":"61842-593 via Conventional from 61844 -> 28426","Type":"Conventional","Directional":true,"Links":[{"SourceID":61844,"TargetID":28426,"Directional":true}]},{"ID":14937,"SourceStructureID":61845,"TargetStructureID":593,"Label":"61845-593 via Conventional from 61846 -> 28425, 81149 -> 64370","Type":"Conventional","Directional":true,"Links":[{"SourceID":61846,"TargetID":28425,"Directional":true},{"SourceID":81149,"TargetID":64370,"Directional":true}]},{"ID":14938,"SourceStructureID":61847,"TargetStructureID":593,"Label":"61847-593 via Conventional from 61848 -> 28424","Type":"Conventional","Directional":true,"Links":[{"SourceID":61848,"TargetID":28424,"Directional":true}]},{"ID":14939,"SourceStructureID":61849,"TargetStructureID":593,"Label":"61849-593 via Conventional from 61850 -> 28414","Type":"Conventional","Directional":true,"Links":[{"SourceID":61850,"TargetID":28414,"Directional":true}]},{"ID":14940,"SourceStructureID":61851,"TargetStructureID":593,"Label":"61851-593 via Conventional from 61852 -> 28420","Type":"Conventional","Directional":true,"Links":[{"SourceID":61852,"TargetID":28420,"Directional":true}]},{"ID":14941,"SourceStructureID":61853,"TargetStructureID":593,"Label":"61853-593 via Conventional from 61854 -> 28416","Type":"Conventional","Directional":true,"Links":[{"SourceID":61854,"TargetID":28416,"Directional":true}]},{"ID":14942,"SourceStructureID":61853,"TargetStructureID":6115,"Label":"61853-6115 via Conventional from 81425 -> 73775","Type":"Conventional","Directional":true,"Links":[{"SourceID":81425,"TargetID":73775,"Directional":true}]},{"ID":14943,"SourceStructureID":61853,"TargetStructureID":81430,"Label":"61853-81430 via Conventional from 81431 -> 81432","Type":"Conventional","Directional":true,"Links":[{"SourceID":81431,"TargetID":81432,"Directional":true}]},{"ID":14944,"SourceStructureID":61857,"TargetStructureID":593,"Label":"61857-593 via Conventional from 61858 -> 61856, 81978 -> 81979","Type":"Conventional","Directional":true,"Links":[{"SourceID":61858,"TargetID":61856,"Directional":true},{"SourceID":81978,"TargetID":81979,"Directional":true}]},{"ID":14945,"SourceStructureID":61862,"TargetStructureID":593,"Label":"61862-593 via Conventional from 61863 -> 28417","Type":"Conventional","Directional":true,"Links":[{"SourceID":61863,"TargetID":28417,"Directional":true}]},{"ID":14946,"SourceStructureID":61868,"TargetStructureID":593,"Label":"61868-593 via Conventional from 61869 -> 61867","Type":"Conventional","Directional":true,"Links":[{"SourceID":61869,"TargetID":61867,"Directional":true}]},{"ID":14947,"SourceStructureID":61886,"TargetStructureID":483,"Label":"61886-483 via Conventional from 82191 -> 82192, 82195 -> 71297","Type":"Conventional","Directional":true,"Links":[{"SourceID":82191,"TargetID":82192,"Directional":true},{"SourceID":82195,"TargetID":71297,"Directional":true}]},{"ID":14948,"SourceStructureID":61886,"TargetStructureID":593,"Label":"61886-593 via Conventional from 61887 -> 15897","Type":"Conventional","Directional":true,"Links":[{"SourceID":61887,"TargetID":15897,"Directional":true}]},{"ID":14949,"SourceStructureID":61886,"TargetStructureID":4570,"Label":"61886-4570 via Conventional from 82193 -> 82194","Type":"Conventional","Directional":true,"Links":[{"SourceID":82193,"TargetID":82194,"Directional":true}]},{"ID":14950,"SourceStructureID":61886,"TargetStructureID":82188,"Label":"61886-82188 via Conventional from 82189 -> 82190","Type":"Conventional","Directional":true,"Links":[{"SourceID":82189,"TargetID":82190,"Directional":true}]},{"ID":14951,"SourceStructureID":61894,"TargetStructureID":593,"Label":"61894-593 via Conventional from 61895 -> 15893, 82198 -> 28400","Type":"Conventional","Directional":true,"Links":[{"SourceID":61895,"TargetID":15893,"Directional":true},{"SourceID":82198,"TargetID":28400,"Directional":true}]},{"ID":14952,"SourceStructureID":61894,"TargetStructureID":68401,"Label":"61894-68401 via Conventional from 68397 -> 68402","Type":"Conventional","Directional":true,"Links":[{"SourceID":68397,"TargetID":68402,"Directional":true}]},{"ID":14953,"SourceStructureID":61894,"TargetStructureID":69537,"Label":"61894-69537 via Conventional from 82203 -> 69759","Type":"Conventional","Directional":true,"Links":[{"SourceID":82203,"TargetID":69759,"Directional":true}]},{"ID":14954,"SourceStructureID":61894,"TargetStructureID":82204,"Label":"61894-82204 via Conventional from 82205 -> 82206","Type":"Conventional","Directional":true,"Links":[{"SourceID":82205,"TargetID":82206,"Directional":true}]},{"ID":14955,"SourceStructureID":61897,"TargetStructureID":70114,"Label":"61897-70114 via Conventional from 61902 -> 70118","Type":"Conventional","Directional":true,"Links":[{"SourceID":61902,"TargetID":70118,"Directional":true}]},{"ID":14956,"SourceStructureID":61904,"TargetStructureID":593,"Label":"61904-593 via Conventional from 61906 -> 61907","Type":"Conventional","Directional":true,"Links":[{"SourceID":61906,"TargetID":61907,"Directional":true}]},{"ID":14957,"SourceStructureID":61904,"TargetStructureID":61868,"Label":"61904-61868 via Conventional from 61905 -> 81988, 81983 -> 81984","Type":"Conventional","Directional":true,"Links":[{"SourceID":61905,"TargetID":81988,"Directional":true},{"SourceID":81983,"TargetID":81984,"Directional":true}]},{"ID":14958,"SourceStructureID":61904,"TargetStructureID":69537,"Label":"61904-69537 via Conventional from 82207 -> 69756","Type":"Conventional","Directional":true,"Links":[{"SourceID":82207,"TargetID":69756,"Directional":true}]},{"ID":14959,"SourceStructureID":61908,"TargetStructureID":593,"Label":"61908-593 via Conventional from 61909 -> 28399","Type":"Conventional","Directional":true,"Links":[{"SourceID":61909,"TargetID":28399,"Directional":true}]},{"ID":14960,"SourceStructureID":61914,"TargetStructureID":593,"Label":"61914-593 via Conventional from 61918 -> 61917","Type":"Conventional","Directional":true,"Links":[{"SourceID":61918,"TargetID":61917,"Directional":true}]},{"ID":14961,"SourceStructureID":61920,"TargetStructureID":593,"Label":"61920-593 via Conventional from 61921 -> 61919","Type":"Conventional","Directional":true,"Links":[{"SourceID":61921,"TargetID":61919,"Directional":true}]},{"ID":14962,"SourceStructureID":61920,"TargetStructureID":61840,"Label":"61920-61840 via Conventional from 82286 -> 82287","Type":"Conventional","Directional":true,"Links":[{"SourceID":82286,"TargetID":82287,"Directional":true}]},{"ID":14963,"SourceStructureID":61928,"TargetStructureID":593,"Label":"61928-593 via Conventional from 61929 -> 28401","Type":"Conventional","Directional":true,"Links":[{"SourceID":61929,"TargetID":28401,"Directional":true}]},{"ID":14964,"SourceStructureID":61928,"TargetStructureID":65282,"Label":"61928-65282 via Conventional from 65281 -> 65283","Type":"Conventional","Directional":true,"Links":[{"SourceID":65281,"TargetID":65283,"Directional":true}]},{"ID":14965,"SourceStructureID":61930,"TargetStructureID":593,"Label":"61930-593 via Conventional from 61931 -> 28403","Type":"Conventional","Directional":true,"Links":[{"SourceID":61931,"TargetID":28403,"Directional":true}]},{"ID":14966,"SourceStructureID":61933,"TargetStructureID":68072,"Label":"61933-68072 via Conventional from 68075 -> 68074","Type":"Conventional","Directional":true,"Links":[{"SourceID":68075,"TargetID":68074,"Directional":true}]},{"ID":14967,"SourceStructureID":61933,"TargetStructureID":68891,"Label":"61933-68891 via Conventional from 61935 -> 68892","Type":"Conventional","Directional":true,"Links":[{"SourceID":61935,"TargetID":68892,"Directional":true}]},{"ID":14968,"SourceStructureID":61936,"TargetStructureID":82383,"Label":"61936-82383 via Conventional from 82384 -> 82385","Type":"Conventional","Directional":true,"Links":[{"SourceID":82384,"TargetID":82385,"Directional":true}]},{"ID":14969,"SourceStructureID":61940,"TargetStructureID":593,"Label":"61940-593 via Conventional from 61941 -> 61939","Type":"Conventional","Directional":true,"Links":[{"SourceID":61941,"TargetID":61939,"Directional":true}]},{"ID":14970,"SourceStructureID":61942,"TargetStructureID":593,"Label":"61942-593 via Conventional from 61944 -> 61943","Type":"Conventional","Directional":true,"Links":[{"SourceID":61944,"TargetID":61943,"Directional":true}]},{"ID":14971,"SourceStructureID":61951,"TargetStructureID":593,"Label":"61951-593 via Conventional from 61952 -> 61953, 61986 -> 61984","Type":"Conventional","Directional":true,"Links":[{"SourceID":61952,"TargetID":61953,"Directional":true},{"SourceID":61986,"TargetID":61984,"Directional":true}]},{"ID":14972,"SourceStructureID":61954,"TargetStructureID":593,"Label":"61954-593 via Conventional from 61955 -> 50444","Type":"Conventional","Directional":true,"Links":[{"SourceID":61955,"TargetID":50444,"Directional":true}]},{"ID":14973,"SourceStructureID":61960,"TargetStructureID":400,"Label":"61960-400 via Conventional from 81662 -> 81681","Type":"Conventional","Directional":true,"Links":[{"SourceID":81662,"TargetID":81681,"Directional":true}]},{"ID":14974,"SourceStructureID":61960,"TargetStructureID":483,"Label":"61960-483 via Conventional from 81484 -> 81485, 134092 -> 134093","Type":"Conventional","Directional":true,"Links":[{"SourceID":81484,"TargetID":81485,"Directional":true},{"SourceID":134092,"TargetID":134093,"Directional":true}]},{"ID":14975,"SourceStructureID":61960,"TargetStructureID":485,"Label":"61960-485 via Conventional from 81449 -> 81450, 81468 -> 81469, 81470 -> 81471","Type":"Conventional","Directional":true,"Links":[{"SourceID":81449,"TargetID":81450,"Directional":true},{"SourceID":81468,"TargetID":81469,"Directional":true},{"SourceID":81470,"TargetID":81471,"Directional":true}]},{"ID":14976,"SourceStructureID":61960,"TargetStructureID":593,"Label":"61960-593 via Conventional from 61961 -> 50441","Type":"Conventional","Directional":true,"Links":[{"SourceID":61961,"TargetID":50441,"Directional":true}]},{"ID":14977,"SourceStructureID":61960,"TargetStructureID":6156,"Label":"61960-6156 via Conventional from 81448 -> 11612","Type":"Conventional","Directional":true,"Links":[{"SourceID":81448,"TargetID":11612,"Directional":true}]},{"ID":14978,"SourceStructureID":61960,"TargetStructureID":6589,"Label":"61960-6589 via Conventional from 81481 -> 81482, 81512 -> 9590","Type":"Conventional","Directional":true,"Links":[{"SourceID":81481,"TargetID":81482,"Directional":true},{"SourceID":81512,"TargetID":9590,"Directional":true}]},{"ID":14979,"SourceStructureID":61960,"TargetStructureID":15394,"Label":"61960-15394 via Conventional from 81452 -> 81453","Type":"Conventional","Directional":true,"Links":[{"SourceID":81452,"TargetID":81453,"Directional":true}]},{"ID":14980,"SourceStructureID":61960,"TargetStructureID":81664,"Label":"61960-81664 via Conventional from 81666 -> 81665","Type":"Conventional","Directional":true,"Links":[{"SourceID":81666,"TargetID":81665,"Directional":true}]},{"ID":14981,"SourceStructureID":61960,"TargetStructureID":81682,"Label":"61960-81682 via Conventional from 81683 -> 81684","Type":"Conventional","Directional":true,"Links":[{"SourceID":81683,"TargetID":81684,"Directional":true}]},{"ID":14982,"SourceStructureID":61960,"TargetStructureID":87158,"Label":"61960-87158 via Conventional from 81657 -> 81658","Type":"Conventional","Directional":true,"Links":[{"SourceID":81657,"TargetID":81658,"Directional":true}]},{"ID":14983,"SourceStructureID":61972,"TargetStructureID":593,"Label":"61972-593 via Conventional from 61973 -> 61971","Type":"Conventional","Directional":true,"Links":[{"SourceID":61973,"TargetID":61971,"Directional":true}]},{"ID":14984,"SourceStructureID":61978,"TargetStructureID":593,"Label":"61978-593 via Conventional from 61980 -> 61979","Type":"Conventional","Directional":true,"Links":[{"SourceID":61980,"TargetID":61979,"Directional":true}]},{"ID":14985,"SourceStructureID":61978,"TargetStructureID":65267,"Label":"61978-65267 via Conventional from 69366 -> 69365","Type":"Conventional","Directional":true,"Links":[{"SourceID":69366,"TargetID":69365,"Directional":true}]},{"ID":14986,"SourceStructureID":61989,"TargetStructureID":61940,"Label":"61989-61940 via Conventional from 65294 -> 65295","Type":"Conventional","Directional":true,"Links":[{"SourceID":65294,"TargetID":65295,"Directional":true}]},{"ID":14987,"SourceStructureID":62012,"TargetStructureID":8575,"Label":"62012-8575 via Conventional from 62013 -> 62011","Type":"Conventional","Directional":true,"Links":[{"SourceID":62013,"TargetID":62011,"Directional":true}]},{"ID":14988,"SourceStructureID":62015,"TargetStructureID":8575,"Label":"62015-8575 via Conventional from 62016 -> 62014","Type":"Conventional","Directional":true,"Links":[{"SourceID":62016,"TargetID":62014,"Directional":true}]},{"ID":14989,"SourceStructureID":62019,"TargetStructureID":8575,"Label":"62019-8575 via BC Conventional Synapse from 62022 -> 62018","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62022,"TargetID":62018,"Directional":true}]},{"ID":14990,"SourceStructureID":62026,"TargetStructureID":8575,"Label":"62026-8575 via Conventional from 62027 -> 62025","Type":"Conventional","Directional":true,"Links":[{"SourceID":62027,"TargetID":62025,"Directional":true}]},{"ID":14991,"SourceStructureID":62029,"TargetStructureID":8575,"Label":"62029-8575 via Conventional from 62030 -> 62028","Type":"Conventional","Directional":true,"Links":[{"SourceID":62030,"TargetID":62028,"Directional":true}]},{"ID":14992,"SourceStructureID":62032,"TargetStructureID":8575,"Label":"62032-8575 via Conventional from 62033 -> 62031","Type":"Conventional","Directional":true,"Links":[{"SourceID":62033,"TargetID":62031,"Directional":true}]},{"ID":14993,"SourceStructureID":62035,"TargetStructureID":8575,"Label":"62035-8575 via Ribbon Synapse from 62036 -> 62034","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62036,"TargetID":62034,"Directional":true}]},{"ID":14994,"SourceStructureID":62038,"TargetStructureID":7858,"Label":"62038-7858 via Conventional from 62039 -> 31899","Type":"Conventional","Directional":true,"Links":[{"SourceID":62039,"TargetID":31899,"Directional":true}]},{"ID":14995,"SourceStructureID":62043,"TargetStructureID":8575,"Label":"62043-8575 via Conventional from 62044 -> 62042","Type":"Conventional","Directional":true,"Links":[{"SourceID":62044,"TargetID":62042,"Directional":true}]},{"ID":14996,"SourceStructureID":62046,"TargetStructureID":8575,"Label":"62046-8575 via Ribbon Synapse from 62047 -> 62041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62047,"TargetID":62041,"Directional":true}]},{"ID":14997,"SourceStructureID":62049,"TargetStructureID":8575,"Label":"62049-8575 via Conventional from 62050 -> 62048","Type":"Conventional","Directional":true,"Links":[{"SourceID":62050,"TargetID":62048,"Directional":true}]},{"ID":14998,"SourceStructureID":62052,"TargetStructureID":8575,"Label":"62052-8575 via Conventional from 62053 -> 62051","Type":"Conventional","Directional":true,"Links":[{"SourceID":62053,"TargetID":62051,"Directional":true}]},{"ID":14999,"SourceStructureID":62110,"TargetStructureID":8575,"Label":"62110-8575 via Conventional from 62112 -> 62109","Type":"Conventional","Directional":true,"Links":[{"SourceID":62112,"TargetID":62109,"Directional":true}]},{"ID":15000,"SourceStructureID":62110,"TargetStructureID":18693,"Label":"62110-18693 via Conventional from 62111 -> 33829","Type":"Conventional","Directional":true,"Links":[{"SourceID":62111,"TargetID":33829,"Directional":true}]},{"ID":15001,"SourceStructureID":62120,"TargetStructureID":389,"Label":"62120-389 via Conventional from 62124 -> 62119","Type":"Conventional","Directional":true,"Links":[{"SourceID":62124,"TargetID":62119,"Directional":true}]},{"ID":15002,"SourceStructureID":62120,"TargetStructureID":19203,"Label":"62120-19203 via Conventional from 62121 -> 62122","Type":"Conventional","Directional":true,"Links":[{"SourceID":62121,"TargetID":62122,"Directional":true}]},{"ID":15003,"SourceStructureID":62150,"TargetStructureID":8575,"Label":"62150-8575 via Conventional from 62151 -> 43280","Type":"Conventional","Directional":true,"Links":[{"SourceID":62151,"TargetID":43280,"Directional":true}]},{"ID":15004,"SourceStructureID":62152,"TargetStructureID":8575,"Label":"62152-8575 via Conventional from 62153 -> 43281","Type":"Conventional","Directional":true,"Links":[{"SourceID":62153,"TargetID":43281,"Directional":true}]},{"ID":15005,"SourceStructureID":62155,"TargetStructureID":8575,"Label":"62155-8575 via Conventional from 62156 -> 43581","Type":"Conventional","Directional":true,"Links":[{"SourceID":62156,"TargetID":43581,"Directional":true}]},{"ID":15006,"SourceStructureID":62160,"TargetStructureID":8575,"Label":"62160-8575 via Conventional from 62161 -> 62159","Type":"Conventional","Directional":true,"Links":[{"SourceID":62161,"TargetID":62159,"Directional":true}]},{"ID":15007,"SourceStructureID":62165,"TargetStructureID":8575,"Label":"62165-8575 via Ribbon Synapse from 62166 -> 62164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62166,"TargetID":62164,"Directional":true}]},{"ID":15008,"SourceStructureID":62169,"TargetStructureID":8575,"Label":"62169-8575 via Conventional from 62170 -> 62168","Type":"Conventional","Directional":true,"Links":[{"SourceID":62170,"TargetID":62168,"Directional":true}]},{"ID":15009,"SourceStructureID":62172,"TargetStructureID":8575,"Label":"62172-8575 via Ribbon Synapse from 62173 -> 62171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62173,"TargetID":62171,"Directional":true}]},{"ID":15010,"SourceStructureID":62174,"TargetStructureID":6166,"Label":"62174-6166 via Conventional from 62175 -> 15147","Type":"Conventional","Directional":true,"Links":[{"SourceID":62175,"TargetID":15147,"Directional":true}]},{"ID":15011,"SourceStructureID":62177,"TargetStructureID":8575,"Label":"62177-8575 via Ribbon Synapse from 62178 -> 62176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62178,"TargetID":62176,"Directional":true}]},{"ID":15012,"SourceStructureID":62190,"TargetStructureID":8575,"Label":"62190-8575 via Conventional from 62191 -> 43285","Type":"Conventional","Directional":true,"Links":[{"SourceID":62191,"TargetID":43285,"Directional":true}]},{"ID":15013,"SourceStructureID":62194,"TargetStructureID":8575,"Label":"62194-8575 via BC Conventional Synapse from 62196 -> 62193","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62196,"TargetID":62193,"Directional":true}]},{"ID":15014,"SourceStructureID":62197,"TargetStructureID":8575,"Label":"62197-8575 via Conventional from 62198 -> 43287","Type":"Conventional","Directional":true,"Links":[{"SourceID":62198,"TargetID":43287,"Directional":true}]},{"ID":15015,"SourceStructureID":62205,"TargetStructureID":8575,"Label":"62205-8575 via Ribbon Synapse from 62206 -> 62204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62206,"TargetID":62204,"Directional":true}]},{"ID":15016,"SourceStructureID":62208,"TargetStructureID":8575,"Label":"62208-8575 via BC Conventional Synapse from 62209 -> 62207","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62209,"TargetID":62207,"Directional":true}]},{"ID":15017,"SourceStructureID":62217,"TargetStructureID":8575,"Label":"62217-8575 via Conventional from 62218 -> 62216","Type":"Conventional","Directional":true,"Links":[{"SourceID":62218,"TargetID":62216,"Directional":true}]},{"ID":15018,"SourceStructureID":62223,"TargetStructureID":8575,"Label":"62223-8575 via Ribbon Synapse from 62224 -> 62222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62224,"TargetID":62222,"Directional":true}]},{"ID":15019,"SourceStructureID":62239,"TargetStructureID":8575,"Label":"62239-8575 via BC Conventional Synapse from 62240 -> 62238","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62240,"TargetID":62238,"Directional":true}]},{"ID":15020,"SourceStructureID":62310,"TargetStructureID":8575,"Label":"62310-8575 via Ribbon Synapse from 62312 -> 62314","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62312,"TargetID":62314,"Directional":true}]},{"ID":15021,"SourceStructureID":62317,"TargetStructureID":8575,"Label":"62317-8575 via Conventional from 62319 -> 62316","Type":"Conventional","Directional":true,"Links":[{"SourceID":62319,"TargetID":62316,"Directional":true}]},{"ID":15022,"SourceStructureID":62325,"TargetStructureID":8575,"Label":"62325-8575 via BC Conventional Synapse from 62326 -> 62323, 80679 -> 62328, 81413 -> 81412, 81417 -> 62324","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62326,"TargetID":62323,"Directional":true},{"SourceID":80679,"TargetID":62328,"Directional":true},{"SourceID":81413,"TargetID":81412,"Directional":true},{"SourceID":81417,"TargetID":62324,"Directional":true}]},{"ID":15023,"SourceStructureID":62325,"TargetStructureID":8575,"Label":"62325-8575 via Ribbon Synapse from 81264 -> 62324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81264,"TargetID":62324,"Directional":true}]},{"ID":15024,"SourceStructureID":62325,"TargetStructureID":10574,"Label":"62325-10574 via Ribbon Synapse from 81278 -> 10622","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81278,"TargetID":10622,"Directional":true}]},{"ID":15025,"SourceStructureID":62325,"TargetStructureID":80522,"Label":"62325-80522 via Ribbon Synapse from 80529 -> 80530, 80842 -> 81005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80529,"TargetID":80530,"Directional":true},{"SourceID":80842,"TargetID":81005,"Directional":true}]},{"ID":15026,"SourceStructureID":62325,"TargetStructureID":80527,"Label":"62325-80527 via BC Conventional Synapse from 80762 -> 80763","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80762,"TargetID":80763,"Directional":true}]},{"ID":15027,"SourceStructureID":62325,"TargetStructureID":80532,"Label":"62325-80532 via Ribbon Synapse from 80531 -> 80533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80531,"TargetID":80533,"Directional":true}]},{"ID":15028,"SourceStructureID":62325,"TargetStructureID":80534,"Label":"62325-80534 via Ribbon Synapse from 80861 -> 80866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80861,"TargetID":80866,"Directional":true}]},{"ID":15029,"SourceStructureID":62325,"TargetStructureID":80684,"Label":"62325-80684 via Ribbon Synapse from 80683 -> 80686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80683,"TargetID":80686,"Directional":true}]},{"ID":15030,"SourceStructureID":62325,"TargetStructureID":80753,"Label":"62325-80753 via Ribbon Synapse from 80529 -> 80754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80529,"TargetID":80754,"Directional":true}]},{"ID":15031,"SourceStructureID":62325,"TargetStructureID":80806,"Label":"62325-80806 via Ribbon Synapse from 80805 -> 80808","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80805,"TargetID":80808,"Directional":true}]},{"ID":15032,"SourceStructureID":62325,"TargetStructureID":80849,"Label":"62325-80849 via Ribbon Synapse from 80842 -> 80852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80842,"TargetID":80852,"Directional":true}]},{"ID":15033,"SourceStructureID":62325,"TargetStructureID":80871,"Label":"62325-80871 via BC Conventional Synapse from 80873 -> 80872","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80873,"TargetID":80872,"Directional":true}]},{"ID":15034,"SourceStructureID":62325,"TargetStructureID":81236,"Label":"62325-81236 via Ribbon Synapse from 81235 -> 81240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81235,"TargetID":81240,"Directional":true}]},{"ID":15035,"SourceStructureID":62325,"TargetStructureID":81239,"Label":"62325-81239 via Ribbon Synapse from 81235 -> 81241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81235,"TargetID":81241,"Directional":true}]},{"ID":15036,"SourceStructureID":62325,"TargetStructureID":81257,"Label":"62325-81257 via BC Conventional Synapse from 81255 -> 81258","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81255,"TargetID":81258,"Directional":true}]},{"ID":15037,"SourceStructureID":62325,"TargetStructureID":81270,"Label":"62325-81270 via BC Conventional Synapse from 81419 -> 81418","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81419,"TargetID":81418,"Directional":true}]},{"ID":15038,"SourceStructureID":62325,"TargetStructureID":81270,"Label":"62325-81270 via Ribbon Synapse from 81264 -> 81416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81264,"TargetID":81416,"Directional":true}]},{"ID":15039,"SourceStructureID":62325,"TargetStructureID":81293,"Label":"62325-81293 via Ribbon Synapse from 81291 -> 81294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81291,"TargetID":81294,"Directional":true}]},{"ID":15040,"SourceStructureID":62325,"TargetStructureID":81296,"Label":"62325-81296 via Ribbon Synapse from 81295 -> 81386","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81295,"TargetID":81386,"Directional":true}]},{"ID":15041,"SourceStructureID":62325,"TargetStructureID":81300,"Label":"62325-81300 via Ribbon Synapse from 81299 -> 81359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81299,"TargetID":81359,"Directional":true}]},{"ID":15042,"SourceStructureID":62325,"TargetStructureID":81301,"Label":"62325-81301 via Ribbon Synapse from 81299 -> 81358","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81299,"TargetID":81358,"Directional":true}]},{"ID":15043,"SourceStructureID":62325,"TargetStructureID":81302,"Label":"62325-81302 via Ribbon Synapse from 81299 -> 81303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81299,"TargetID":81303,"Directional":true}]},{"ID":15044,"SourceStructureID":62325,"TargetStructureID":81321,"Label":"62325-81321 via Ribbon Synapse from 81315 -> 81323","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81315,"TargetID":81323,"Directional":true}]},{"ID":15045,"SourceStructureID":62325,"TargetStructureID":81322,"Label":"62325-81322 via Ribbon Synapse from 81315 -> 81324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81315,"TargetID":81324,"Directional":true}]},{"ID":15046,"SourceStructureID":62325,"TargetStructureID":81379,"Label":"62325-81379 via BC Conventional Synapse from 81380 -> 81381","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81380,"TargetID":81381,"Directional":true}]},{"ID":15047,"SourceStructureID":62325,"TargetStructureID":81405,"Label":"62325-81405 via Ribbon Synapse from 81291 -> 81406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81291,"TargetID":81406,"Directional":true}]},{"ID":15048,"SourceStructureID":62337,"TargetStructureID":8575,"Label":"62337-8575 via BC Conventional Synapse from 62338 -> 62336","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62338,"TargetID":62336,"Directional":true}]},{"ID":15049,"SourceStructureID":62340,"TargetStructureID":8575,"Label":"62340-8575 via Conventional from 62341 -> 62339","Type":"Conventional","Directional":true,"Links":[{"SourceID":62341,"TargetID":62339,"Directional":true}]},{"ID":15050,"SourceStructureID":62344,"TargetStructureID":8575,"Label":"62344-8575 via BC Conventional Synapse from 62345 -> 62343","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62345,"TargetID":62343,"Directional":true}]},{"ID":15051,"SourceStructureID":62384,"TargetStructureID":8575,"Label":"62384-8575 via Conventional from 62385 -> 62381, 62385 -> 62386","Type":"Conventional","Directional":true,"Links":[{"SourceID":62385,"TargetID":62381,"Directional":true},{"SourceID":62385,"TargetID":62386,"Directional":true}]},{"ID":15052,"SourceStructureID":62396,"TargetStructureID":5598,"Label":"62396-5598 via Conventional from 62404 -> 36022, 62411 -> 115158, 91576 -> 62403","Type":"Conventional","Directional":true,"Links":[{"SourceID":62404,"TargetID":36022,"Directional":true},{"SourceID":62411,"TargetID":115158,"Directional":true},{"SourceID":91576,"TargetID":62403,"Directional":true}]},{"ID":15053,"SourceStructureID":62396,"TargetStructureID":6050,"Label":"62396-6050 via Conventional from 62397 -> 35945","Type":"Conventional","Directional":true,"Links":[{"SourceID":62397,"TargetID":35945,"Directional":true}]},{"ID":15054,"SourceStructureID":62396,"TargetStructureID":15976,"Label":"62396-15976 via Conventional from 62416 -> 36044, 62418 -> 36048","Type":"Conventional","Directional":true,"Links":[{"SourceID":62416,"TargetID":36044,"Directional":true},{"SourceID":62418,"TargetID":36048,"Directional":true}]},{"ID":15055,"SourceStructureID":62396,"TargetStructureID":35811,"Label":"62396-35811 via Conventional from 62408 -> 35869","Type":"Conventional","Directional":true,"Links":[{"SourceID":62408,"TargetID":35869,"Directional":true}]},{"ID":15056,"SourceStructureID":62420,"TargetStructureID":8575,"Label":"62420-8575 via BC Conventional Synapse from 62421 -> 62249","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62421,"TargetID":62249,"Directional":true}]},{"ID":15057,"SourceStructureID":62420,"TargetStructureID":62423,"Label":"62420-62423 via Ribbon Synapse from 62425 -> 62424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62425,"TargetID":62424,"Directional":true}]},{"ID":15058,"SourceStructureID":62423,"TargetStructureID":62420,"Label":"62423-62420 via Conventional from 62426 -> 62422","Type":"Conventional","Directional":true,"Links":[{"SourceID":62426,"TargetID":62422,"Directional":true}]},{"ID":15059,"SourceStructureID":62433,"TargetStructureID":8575,"Label":"62433-8575 via BC Conventional Synapse from 62434 -> 62432","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62434,"TargetID":62432,"Directional":true}]},{"ID":15060,"SourceStructureID":62436,"TargetStructureID":8575,"Label":"62436-8575 via Conventional from 62437 -> 61552","Type":"Conventional","Directional":true,"Links":[{"SourceID":62437,"TargetID":61552,"Directional":true}]},{"ID":15061,"SourceStructureID":62443,"TargetStructureID":8575,"Label":"62443-8575 via Conventional from 62444 -> 62442","Type":"Conventional","Directional":true,"Links":[{"SourceID":62444,"TargetID":62442,"Directional":true}]},{"ID":15062,"SourceStructureID":62446,"TargetStructureID":8575,"Label":"62446-8575 via Conventional from 62447 -> 62445","Type":"Conventional","Directional":true,"Links":[{"SourceID":62447,"TargetID":62445,"Directional":true}]},{"ID":15063,"SourceStructureID":62450,"TargetStructureID":8575,"Label":"62450-8575 via Conventional from 62451 -> 61550","Type":"Conventional","Directional":true,"Links":[{"SourceID":62451,"TargetID":61550,"Directional":true}]},{"ID":15064,"SourceStructureID":62453,"TargetStructureID":8575,"Label":"62453-8575 via Conventional from 62454 -> 62452","Type":"Conventional","Directional":true,"Links":[{"SourceID":62454,"TargetID":62452,"Directional":true}]},{"ID":15065,"SourceStructureID":62456,"TargetStructureID":16073,"Label":"62456-16073 via Conventional from 62457 -> 16081","Type":"Conventional","Directional":true,"Links":[{"SourceID":62457,"TargetID":16081,"Directional":true}]},{"ID":15066,"SourceStructureID":62458,"TargetStructureID":16073,"Label":"62458-16073 via Conventional from 62459 -> 20179","Type":"Conventional","Directional":true,"Links":[{"SourceID":62459,"TargetID":20179,"Directional":true}]},{"ID":15067,"SourceStructureID":62460,"TargetStructureID":16073,"Label":"62460-16073 via Conventional from 62461 -> 20177","Type":"Conventional","Directional":true,"Links":[{"SourceID":62461,"TargetID":20177,"Directional":true}]},{"ID":15068,"SourceStructureID":62462,"TargetStructureID":16073,"Label":"62462-16073 via Conventional from 62463 -> 20178","Type":"Conventional","Directional":true,"Links":[{"SourceID":62463,"TargetID":20178,"Directional":true}]},{"ID":15069,"SourceStructureID":62464,"TargetStructureID":16073,"Label":"62464-16073 via Conventional from 62465 -> 16083","Type":"Conventional","Directional":true,"Links":[{"SourceID":62465,"TargetID":16083,"Directional":true}]},{"ID":15070,"SourceStructureID":62468,"TargetStructureID":16073,"Label":"62468-16073 via Conventional from 62471 -> 62466","Type":"Conventional","Directional":true,"Links":[{"SourceID":62471,"TargetID":62466,"Directional":true}]},{"ID":15071,"SourceStructureID":62469,"TargetStructureID":16073,"Label":"62469-16073 via Conventional from 62470 -> 62467","Type":"Conventional","Directional":true,"Links":[{"SourceID":62470,"TargetID":62467,"Directional":true}]},{"ID":15072,"SourceStructureID":62473,"TargetStructureID":16073,"Label":"62473-16073 via Conventional from 62474 -> 62472","Type":"Conventional","Directional":true,"Links":[{"SourceID":62474,"TargetID":62472,"Directional":true}]},{"ID":15073,"SourceStructureID":62475,"TargetStructureID":16073,"Label":"62475-16073 via Conventional from 62476 -> 20176","Type":"Conventional","Directional":true,"Links":[{"SourceID":62476,"TargetID":20176,"Directional":true}]},{"ID":15074,"SourceStructureID":62478,"TargetStructureID":16073,"Label":"62478-16073 via Conventional from 62479 -> 62477","Type":"Conventional","Directional":true,"Links":[{"SourceID":62479,"TargetID":62477,"Directional":true}]},{"ID":15075,"SourceStructureID":62480,"TargetStructureID":6120,"Label":"62480-6120 via Conventional from 62482 -> 37243","Type":"Conventional","Directional":true,"Links":[{"SourceID":62482,"TargetID":37243,"Directional":true}]},{"ID":15076,"SourceStructureID":62480,"TargetStructureID":16073,"Label":"62480-16073 via Conventional from 62481 -> 19898, 62481 -> 19936","Type":"Conventional","Directional":true,"Links":[{"SourceID":62481,"TargetID":19898,"Directional":true},{"SourceID":62481,"TargetID":19936,"Directional":true}]},{"ID":15077,"SourceStructureID":62483,"TargetStructureID":6120,"Label":"62483-6120 via Conventional from 125647 -> 125646","Type":"Conventional","Directional":true,"Links":[{"SourceID":125647,"TargetID":125646,"Directional":true}]},{"ID":15078,"SourceStructureID":62483,"TargetStructureID":16073,"Label":"62483-16073 via Conventional from 62484 -> 19935","Type":"Conventional","Directional":true,"Links":[{"SourceID":62484,"TargetID":19935,"Directional":true}]},{"ID":15079,"SourceStructureID":62485,"TargetStructureID":16073,"Label":"62485-16073 via Conventional from 62486 -> 19934","Type":"Conventional","Directional":true,"Links":[{"SourceID":62486,"TargetID":19934,"Directional":true}]},{"ID":15080,"SourceStructureID":62489,"TargetStructureID":16073,"Label":"62489-16073 via Conventional from 62490 -> 62488","Type":"Conventional","Directional":true,"Links":[{"SourceID":62490,"TargetID":62488,"Directional":true}]},{"ID":15081,"SourceStructureID":62491,"TargetStructureID":16073,"Label":"62491-16073 via Conventional from 62493 -> 19939","Type":"Conventional","Directional":true,"Links":[{"SourceID":62493,"TargetID":19939,"Directional":true}]},{"ID":15082,"SourceStructureID":62492,"TargetStructureID":16073,"Label":"62492-16073 via Conventional from 62494 -> 19940","Type":"Conventional","Directional":true,"Links":[{"SourceID":62494,"TargetID":19940,"Directional":true}]},{"ID":15083,"SourceStructureID":62496,"TargetStructureID":5498,"Label":"62496-5498 via Conventional from 62497 -> 62495","Type":"Conventional","Directional":true,"Links":[{"SourceID":62497,"TargetID":62495,"Directional":true}]},{"ID":15084,"SourceStructureID":62500,"TargetStructureID":55686,"Label":"62500-55686 via Conventional from 62523 -> 62524","Type":"Conventional","Directional":true,"Links":[{"SourceID":62523,"TargetID":62524,"Directional":true}]},{"ID":15085,"SourceStructureID":62511,"TargetStructureID":62500,"Label":"62511-62500 via Ribbon Synapse from 62512 -> 62510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62512,"TargetID":62510,"Directional":true}]},{"ID":15086,"SourceStructureID":62515,"TargetStructureID":62500,"Label":"62515-62500 via Ribbon Synapse from 62516 -> 62514","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62516,"TargetID":62514,"Directional":true}]},{"ID":15087,"SourceStructureID":62531,"TargetStructureID":5497,"Label":"62531-5497 via Ribbon Synapse from 62532 -> 62530","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62532,"TargetID":62530,"Directional":true}]},{"ID":15088,"SourceStructureID":62531,"TargetStructureID":7859,"Label":"62531-7859 via Ribbon Synapse from 64635 -> 64630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64635,"TargetID":64630,"Directional":true}]},{"ID":15089,"SourceStructureID":62540,"TargetStructureID":5497,"Label":"62540-5497 via Ribbon Synapse from 62541 -> 62539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62541,"TargetID":62539,"Directional":true}]},{"ID":15090,"SourceStructureID":62574,"TargetStructureID":5497,"Label":"62574-5497 via Conventional from 62575 -> 62573","Type":"Conventional","Directional":true,"Links":[{"SourceID":62575,"TargetID":62573,"Directional":true}]},{"ID":15091,"SourceStructureID":62599,"TargetStructureID":5497,"Label":"62599-5497 via Ribbon Synapse from 62600 -> 62598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62600,"TargetID":62598,"Directional":true}]},{"ID":15092,"SourceStructureID":62617,"TargetStructureID":5497,"Label":"62617-5497 via Ribbon Synapse from 62618 -> 62616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62618,"TargetID":62616,"Directional":true}]},{"ID":15093,"SourceStructureID":62632,"TargetStructureID":7703,"Label":"62632-7703 via Ribbon Synapse from 62633 -> 62634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62633,"TargetID":62634,"Directional":true}]},{"ID":15094,"SourceStructureID":62655,"TargetStructureID":8579,"Label":"62655-8579 via Ribbon Synapse from 62656 -> 62654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62656,"TargetID":62654,"Directional":true}]},{"ID":15095,"SourceStructureID":62659,"TargetStructureID":8579,"Label":"62659-8579 via Conventional from 62660 -> 62658","Type":"Conventional","Directional":true,"Links":[{"SourceID":62660,"TargetID":62658,"Directional":true}]},{"ID":15096,"SourceStructureID":62704,"TargetStructureID":8579,"Label":"62704-8579 via Conventional from 62705 -> 62702","Type":"Conventional","Directional":true,"Links":[{"SourceID":62705,"TargetID":62702,"Directional":true}]},{"ID":15097,"SourceStructureID":62704,"TargetStructureID":62707,"Label":"62704-62707 via Conventional from 62706 -> 62709","Type":"Conventional","Directional":true,"Links":[{"SourceID":62706,"TargetID":62709,"Directional":true}]},{"ID":15098,"SourceStructureID":62720,"TargetStructureID":6142,"Label":"62720-6142 via Conventional from 62722 -> 62719","Type":"Conventional","Directional":true,"Links":[{"SourceID":62722,"TargetID":62719,"Directional":true}]},{"ID":15099,"SourceStructureID":62720,"TargetStructureID":8579,"Label":"62720-8579 via Conventional from 62721 -> 62718","Type":"Conventional","Directional":true,"Links":[{"SourceID":62721,"TargetID":62718,"Directional":true}]},{"ID":15100,"SourceStructureID":62731,"TargetStructureID":8579,"Label":"62731-8579 via Conventional from 62732 -> 62730","Type":"Conventional","Directional":true,"Links":[{"SourceID":62732,"TargetID":62730,"Directional":true}]},{"ID":15101,"SourceStructureID":62760,"TargetStructureID":6997,"Label":"62760-6997 via Conventional from 62762 -> 28718","Type":"Conventional","Directional":true,"Links":[{"SourceID":62762,"TargetID":28718,"Directional":true}]},{"ID":15102,"SourceStructureID":62760,"TargetStructureID":8575,"Label":"62760-8575 via Conventional from 62761 -> 21626","Type":"Conventional","Directional":true,"Links":[{"SourceID":62761,"TargetID":21626,"Directional":true}]},{"ID":15103,"SourceStructureID":62764,"TargetStructureID":8575,"Label":"62764-8575 via Conventional from 62765 -> 43264","Type":"Conventional","Directional":true,"Links":[{"SourceID":62765,"TargetID":43264,"Directional":true}]},{"ID":15104,"SourceStructureID":62777,"TargetStructureID":4890,"Label":"62777-4890 via Ribbon Synapse from 64883 -> 64882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64883,"TargetID":64882,"Directional":true}]},{"ID":15105,"SourceStructureID":62777,"TargetStructureID":8575,"Label":"62777-8575 via BC Conventional Synapse from 62778 -> 62776","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62778,"TargetID":62776,"Directional":true}]},{"ID":15106,"SourceStructureID":62786,"TargetStructureID":5405,"Label":"62786-5405 via Ribbon Synapse from 62787 -> 11155","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62787,"TargetID":11155,"Directional":true}]},{"ID":15107,"SourceStructureID":62786,"TargetStructureID":8575,"Label":"62786-8575 via Ribbon Synapse from 62788 -> 62785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62788,"TargetID":62785,"Directional":true}]},{"ID":15108,"SourceStructureID":62807,"TargetStructureID":8575,"Label":"62807-8575 via Conventional from 62808 -> 62806","Type":"Conventional","Directional":true,"Links":[{"SourceID":62808,"TargetID":62806,"Directional":true}]},{"ID":15109,"SourceStructureID":62829,"TargetStructureID":8575,"Label":"62829-8575 via Conventional from 62830 -> 62828","Type":"Conventional","Directional":true,"Links":[{"SourceID":62830,"TargetID":62828,"Directional":true}]},{"ID":15110,"SourceStructureID":62933,"TargetStructureID":8579,"Label":"62933-8579 via Adherens from 62935 -> 62683","Type":"Adherens","Directional":true,"Links":[{"SourceID":62935,"TargetID":62683,"Directional":true}]},{"ID":15111,"SourceStructureID":62933,"TargetStructureID":8579,"Label":"62933-8579 via Conventional from 62934 -> 62684","Type":"Conventional","Directional":true,"Links":[{"SourceID":62934,"TargetID":62684,"Directional":true}]},{"ID":15112,"SourceStructureID":62956,"TargetStructureID":8575,"Label":"62956-8575 via Ribbon Synapse from 62958 -> 62955","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62958,"TargetID":62955,"Directional":true}]},{"ID":15113,"SourceStructureID":62964,"TargetStructureID":8575,"Label":"62964-8575 via Conventional from 62965 -> 37263","Type":"Conventional","Directional":true,"Links":[{"SourceID":62965,"TargetID":37263,"Directional":true}]},{"ID":15114,"SourceStructureID":62974,"TargetStructureID":8575,"Label":"62974-8575 via Conventional from 62975 -> 62973","Type":"Conventional","Directional":true,"Links":[{"SourceID":62975,"TargetID":62973,"Directional":true}]},{"ID":15115,"SourceStructureID":62974,"TargetStructureID":10963,"Label":"62974-10963 via Conventional from 62982 -> 31937","Type":"Conventional","Directional":true,"Links":[{"SourceID":62982,"TargetID":31937,"Directional":true}]},{"ID":15116,"SourceStructureID":62989,"TargetStructureID":8575,"Label":"62989-8575 via Conventional from 62991 -> 37265","Type":"Conventional","Directional":true,"Links":[{"SourceID":62991,"TargetID":37265,"Directional":true}]},{"ID":15117,"SourceStructureID":62992,"TargetStructureID":62989,"Label":"62992-62989 via Ribbon Synapse from 62993 -> 62990","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62993,"TargetID":62990,"Directional":true}]},{"ID":15118,"SourceStructureID":63000,"TargetStructureID":8575,"Label":"63000-8575 via Conventional from 63001 -> 21651","Type":"Conventional","Directional":true,"Links":[{"SourceID":63001,"TargetID":21651,"Directional":true}]},{"ID":15119,"SourceStructureID":63016,"TargetStructureID":8575,"Label":"63016-8575 via Conventional from 63017 -> 63015","Type":"Conventional","Directional":true,"Links":[{"SourceID":63017,"TargetID":63015,"Directional":true}]},{"ID":15120,"SourceStructureID":63060,"TargetStructureID":8575,"Label":"63060-8575 via Conventional from 63061 -> 63059","Type":"Conventional","Directional":true,"Links":[{"SourceID":63061,"TargetID":63059,"Directional":true}]},{"ID":15121,"SourceStructureID":63068,"TargetStructureID":8575,"Label":"63068-8575 via Conventional from 63070 -> 21627","Type":"Conventional","Directional":true,"Links":[{"SourceID":63070,"TargetID":21627,"Directional":true}]},{"ID":15122,"SourceStructureID":63071,"TargetStructureID":63068,"Label":"63071-63068 via Conventional from 63072 -> 63069","Type":"Conventional","Directional":true,"Links":[{"SourceID":63072,"TargetID":63069,"Directional":true}]},{"ID":15123,"SourceStructureID":63115,"TargetStructureID":5522,"Label":"63115-5522 via Conventional from 63116 -> 63117","Type":"Conventional","Directional":true,"Links":[{"SourceID":63116,"TargetID":63117,"Directional":true}]},{"ID":15124,"SourceStructureID":63199,"TargetStructureID":79042,"Label":"63199-79042 via Ribbon Synapse from 147551 -> 147552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147551,"TargetID":147552,"Directional":true}]},{"ID":15125,"SourceStructureID":63209,"TargetStructureID":5916,"Label":"63209-5916 via Conventional from 63210 -> 63208","Type":"Conventional","Directional":true,"Links":[{"SourceID":63210,"TargetID":63208,"Directional":true}]},{"ID":15126,"SourceStructureID":63423,"TargetStructureID":13858,"Label":"63423-13858 via Ribbon Synapse from 63424 -> 63422","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63424,"TargetID":63422,"Directional":true}]},{"ID":15127,"SourceStructureID":63423,"TargetStructureID":85856,"Label":"63423-85856 via Ribbon Synapse from 71180 -> 71177, 71181 -> 71178","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71180,"TargetID":71177,"Directional":true},{"SourceID":71181,"TargetID":71178,"Directional":true}]},{"ID":15128,"SourceStructureID":63440,"TargetStructureID":13858,"Label":"63440-13858 via Conventional from 63441 -> 63442","Type":"Conventional","Directional":true,"Links":[{"SourceID":63441,"TargetID":63442,"Directional":true}]},{"ID":15129,"SourceStructureID":63440,"TargetStructureID":63445,"Label":"63440-63445 via Conventional from 63444 -> 63446","Type":"Conventional","Directional":true,"Links":[{"SourceID":63444,"TargetID":63446,"Directional":true}]},{"ID":15130,"SourceStructureID":63445,"TargetStructureID":13858,"Label":"63445-13858 via Ribbon Synapse from 63447 -> 63439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63447,"TargetID":63439,"Directional":true}]},{"ID":15131,"SourceStructureID":63451,"TargetStructureID":8720,"Label":"63451-8720 via Ribbon Synapse from 63452 -> 63450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63452,"TargetID":63450,"Directional":true}]},{"ID":15132,"SourceStructureID":63460,"TargetStructureID":8720,"Label":"63460-8720 via Ribbon Synapse from 63461 -> 63459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63461,"TargetID":63459,"Directional":true}]},{"ID":15133,"SourceStructureID":63465,"TargetStructureID":8720,"Label":"63465-8720 via Ribbon Synapse from 63466 -> 63464","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63466,"TargetID":63464,"Directional":true}]},{"ID":15134,"SourceStructureID":63473,"TargetStructureID":63469,"Label":"63473-63469 via Ribbon Synapse from 63474 -> 63472","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63474,"TargetID":63472,"Directional":true}]},{"ID":15135,"SourceStructureID":63485,"TargetStructureID":71985,"Label":"63485-71985 via Ribbon Synapse from 72017 -> 72018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72017,"TargetID":72018,"Directional":true}]},{"ID":15136,"SourceStructureID":63487,"TargetStructureID":71985,"Label":"63487-71985 via Ribbon Synapse from 63488 -> 71987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63488,"TargetID":71987,"Directional":true}]},{"ID":15137,"SourceStructureID":63513,"TargetStructureID":8575,"Label":"63513-8575 via Ribbon Synapse from 63514 -> 63512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63514,"TargetID":63512,"Directional":true}]},{"ID":15138,"SourceStructureID":63516,"TargetStructureID":8575,"Label":"63516-8575 via Conventional from 63517 -> 63509","Type":"Conventional","Directional":true,"Links":[{"SourceID":63517,"TargetID":63509,"Directional":true}]},{"ID":15139,"SourceStructureID":63521,"TargetStructureID":8575,"Label":"63521-8575 via Conventional from 63523 -> 62104","Type":"Conventional","Directional":true,"Links":[{"SourceID":63523,"TargetID":62104,"Directional":true}]},{"ID":15140,"SourceStructureID":63521,"TargetStructureID":35145,"Label":"63521-35145 via Conventional from 63522 -> 45493","Type":"Conventional","Directional":true,"Links":[{"SourceID":63522,"TargetID":45493,"Directional":true}]},{"ID":15141,"SourceStructureID":63542,"TargetStructureID":8575,"Label":"63542-8575 via Conventional from 63543 -> 63541","Type":"Conventional","Directional":true,"Links":[{"SourceID":63543,"TargetID":63541,"Directional":true}]},{"ID":15142,"SourceStructureID":63550,"TargetStructureID":8575,"Label":"63550-8575 via Conventional from 63552 -> 62100","Type":"Conventional","Directional":true,"Links":[{"SourceID":63552,"TargetID":62100,"Directional":true}]},{"ID":15143,"SourceStructureID":63573,"TargetStructureID":63550,"Label":"63573-63550 via Ribbon Synapse from 63575 -> 63572","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63575,"TargetID":63572,"Directional":true}]},{"ID":15144,"SourceStructureID":63592,"TargetStructureID":63550,"Label":"63592-63550 via Ribbon Synapse from 63593 -> 63591","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63593,"TargetID":63591,"Directional":true}]},{"ID":15145,"SourceStructureID":63612,"TargetStructureID":8575,"Label":"63612-8575 via Conventional from 63613 -> 62098","Type":"Conventional","Directional":true,"Links":[{"SourceID":63613,"TargetID":62098,"Directional":true}]},{"ID":15146,"SourceStructureID":63619,"TargetStructureID":8575,"Label":"63619-8575 via Conventional from 63620 -> 62096","Type":"Conventional","Directional":true,"Links":[{"SourceID":63620,"TargetID":62096,"Directional":true}]},{"ID":15147,"SourceStructureID":63628,"TargetStructureID":397,"Label":"63628-397 via Conventional from 63826 -> 68724","Type":"Conventional","Directional":true,"Links":[{"SourceID":63826,"TargetID":68724,"Directional":true}]},{"ID":15148,"SourceStructureID":63628,"TargetStructureID":8575,"Label":"63628-8575 via Conventional from 63629 -> 62095","Type":"Conventional","Directional":true,"Links":[{"SourceID":63629,"TargetID":62095,"Directional":true}]},{"ID":15149,"SourceStructureID":63628,"TargetStructureID":59333,"Label":"63628-59333 via Conventional from 85040 -> 85037","Type":"Conventional","Directional":true,"Links":[{"SourceID":85040,"TargetID":85037,"Directional":true}]},{"ID":15150,"SourceStructureID":63628,"TargetStructureID":63806,"Label":"63628-63806 via Conventional from 63805 -> 63808","Type":"Conventional","Directional":true,"Links":[{"SourceID":63805,"TargetID":63808,"Directional":true}]},{"ID":15151,"SourceStructureID":63799,"TargetStructureID":59362,"Label":"63799-59362 via Conventional from 63800 -> 63798","Type":"Conventional","Directional":true,"Links":[{"SourceID":63800,"TargetID":63798,"Directional":true}]},{"ID":15152,"SourceStructureID":63806,"TargetStructureID":63628,"Label":"63806-63628 via Ribbon Synapse from 63807 -> 63804","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63807,"TargetID":63804,"Directional":true}]},{"ID":15153,"SourceStructureID":63956,"TargetStructureID":5611,"Label":"63956-5611 via Conventional from 63957 -> 63955","Type":"Conventional","Directional":true,"Links":[{"SourceID":63957,"TargetID":63955,"Directional":true}]},{"ID":15154,"SourceStructureID":63991,"TargetStructureID":63978,"Label":"63991-63978 via Ribbon Synapse from 63992 -> 63990","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63992,"TargetID":63990,"Directional":true}]},{"ID":15155,"SourceStructureID":64196,"TargetStructureID":32804,"Label":"64196-32804 via Ribbon Synapse from 64199 -> 64206, 64200 -> 64205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64199,"TargetID":64206,"Directional":true},{"SourceID":64200,"TargetID":64205,"Directional":true}]},{"ID":15156,"SourceStructureID":64355,"TargetStructureID":13858,"Label":"64355-13858 via Conventional from 64356 -> 63418","Type":"Conventional","Directional":true,"Links":[{"SourceID":64356,"TargetID":63418,"Directional":true}]},{"ID":15157,"SourceStructureID":64362,"TargetStructureID":593,"Label":"64362-593 via Conventional from 64364 -> 64365","Type":"Conventional","Directional":true,"Links":[{"SourceID":64364,"TargetID":64365,"Directional":true}]},{"ID":15158,"SourceStructureID":64362,"TargetStructureID":7594,"Label":"64362-7594 via Conventional from 82389 -> 82390","Type":"Conventional","Directional":true,"Links":[{"SourceID":82389,"TargetID":82390,"Directional":true}]},{"ID":15159,"SourceStructureID":64362,"TargetStructureID":16026,"Label":"64362-16026 via Conventional from 81910 -> 25639","Type":"Conventional","Directional":true,"Links":[{"SourceID":81910,"TargetID":25639,"Directional":true}]},{"ID":15160,"SourceStructureID":64362,"TargetStructureID":31161,"Label":"64362-31161 via Conventional from 64363 -> 31244","Type":"Conventional","Directional":true,"Links":[{"SourceID":64363,"TargetID":31244,"Directional":true}]},{"ID":15161,"SourceStructureID":64362,"TargetStructureID":81912,"Label":"64362-81912 via Conventional from 81911 -> 81913","Type":"Conventional","Directional":true,"Links":[{"SourceID":81911,"TargetID":81913,"Directional":true}]},{"ID":15162,"SourceStructureID":64387,"TargetStructureID":8720,"Label":"64387-8720 via Conventional from 64388 -> 63171","Type":"Conventional","Directional":true,"Links":[{"SourceID":64388,"TargetID":63171,"Directional":true}]},{"ID":15163,"SourceStructureID":64389,"TargetStructureID":8720,"Label":"64389-8720 via Conventional from 64390 -> 63170","Type":"Conventional","Directional":true,"Links":[{"SourceID":64390,"TargetID":63170,"Directional":true}]},{"ID":15164,"SourceStructureID":64399,"TargetStructureID":8720,"Label":"64399-8720 via Conventional from 64400 -> 63169","Type":"Conventional","Directional":true,"Links":[{"SourceID":64400,"TargetID":63169,"Directional":true}]},{"ID":15165,"SourceStructureID":64402,"TargetStructureID":8720,"Label":"64402-8720 via Conventional from 64403 -> 64401","Type":"Conventional","Directional":true,"Links":[{"SourceID":64403,"TargetID":64401,"Directional":true}]},{"ID":15166,"SourceStructureID":64406,"TargetStructureID":8720,"Label":"64406-8720 via Conventional from 64407 -> 64405","Type":"Conventional","Directional":true,"Links":[{"SourceID":64407,"TargetID":64405,"Directional":true}]},{"ID":15167,"SourceStructureID":64409,"TargetStructureID":5530,"Label":"64409-5530 via Conventional from 74999 -> 75000","Type":"Conventional","Directional":true,"Links":[{"SourceID":74999,"TargetID":75000,"Directional":true}]},{"ID":15168,"SourceStructureID":64447,"TargetStructureID":5729,"Label":"64447-5729 via Conventional from 64448 -> 64446","Type":"Conventional","Directional":true,"Links":[{"SourceID":64448,"TargetID":64446,"Directional":true}]},{"ID":15169,"SourceStructureID":64520,"TargetStructureID":5729,"Label":"64520-5729 via Conventional from 64521 -> 64519","Type":"Conventional","Directional":true,"Links":[{"SourceID":64521,"TargetID":64519,"Directional":true}]},{"ID":15170,"SourceStructureID":64547,"TargetStructureID":5575,"Label":"64547-5575 via Conventional from 64548 -> 64546","Type":"Conventional","Directional":true,"Links":[{"SourceID":64548,"TargetID":64546,"Directional":true}]},{"ID":15171,"SourceStructureID":64549,"TargetStructureID":5575,"Label":"64549-5575 via Conventional from 64550 -> 22970","Type":"Conventional","Directional":true,"Links":[{"SourceID":64550,"TargetID":22970,"Directional":true}]},{"ID":15172,"SourceStructureID":64626,"TargetStructureID":7859,"Label":"64626-7859 via Conventional from 64627 -> 64625","Type":"Conventional","Directional":true,"Links":[{"SourceID":64627,"TargetID":64625,"Directional":true}]},{"ID":15173,"SourceStructureID":64651,"TargetStructureID":5860,"Label":"64651-5860 via Conventional from 64652 -> 64653","Type":"Conventional","Directional":true,"Links":[{"SourceID":64652,"TargetID":64653,"Directional":true}]},{"ID":15174,"SourceStructureID":64654,"TargetStructureID":485,"Label":"64654-485 via Conventional from 64656 -> 64657","Type":"Conventional","Directional":true,"Links":[{"SourceID":64656,"TargetID":64657,"Directional":true}]},{"ID":15175,"SourceStructureID":64665,"TargetStructureID":7859,"Label":"64665-7859 via Conventional from 64667 -> 64664","Type":"Conventional","Directional":true,"Links":[{"SourceID":64667,"TargetID":64664,"Directional":true}]},{"ID":15176,"SourceStructureID":64670,"TargetStructureID":64673,"Label":"64670-64673 via Conventional from 64672 -> 64674","Type":"Conventional","Directional":true,"Links":[{"SourceID":64672,"TargetID":64674,"Directional":true}]},{"ID":15177,"SourceStructureID":64673,"TargetStructureID":174,"Label":"64673-174 via Ribbon Synapse from 64676 -> 64675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64676,"TargetID":64675,"Directional":true}]},{"ID":15178,"SourceStructureID":64673,"TargetStructureID":64670,"Label":"64673-64670 via Ribbon Synapse from 64676 -> 64677, 64680 -> 64679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64676,"TargetID":64677,"Directional":true},{"SourceID":64680,"TargetID":64679,"Directional":true}]},{"ID":15179,"SourceStructureID":64673,"TargetStructureID":119154,"Label":"64673-119154 via Ribbon Synapse from 64680 -> 119174","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64680,"TargetID":119174,"Directional":true}]},{"ID":15180,"SourceStructureID":64690,"TargetStructureID":9787,"Label":"64690-9787 via Ribbon Synapse from 64691 -> 64692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64691,"TargetID":64692,"Directional":true}]},{"ID":15181,"SourceStructureID":64690,"TargetStructureID":10574,"Label":"64690-10574 via Ribbon Synapse from 84549 -> 84547","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84549,"TargetID":84547,"Directional":true}]},{"ID":15182,"SourceStructureID":64698,"TargetStructureID":8575,"Label":"64698-8575 via Conventional from 64699 -> 63510","Type":"Conventional","Directional":true,"Links":[{"SourceID":64699,"TargetID":63510,"Directional":true}]},{"ID":15183,"SourceStructureID":64787,"TargetStructureID":64777,"Label":"64787-64777 via Conventional from 64788 -> 64786","Type":"Conventional","Directional":true,"Links":[{"SourceID":64788,"TargetID":64786,"Directional":true}]},{"ID":15184,"SourceStructureID":64795,"TargetStructureID":64777,"Label":"64795-64777 via Conventional from 64796 -> 64794","Type":"Conventional","Directional":true,"Links":[{"SourceID":64796,"TargetID":64794,"Directional":true}]},{"ID":15185,"SourceStructureID":64805,"TargetStructureID":10963,"Label":"64805-10963 via Conventional from 64806 -> 64803, 64807 -> 64804","Type":"Conventional","Directional":true,"Links":[{"SourceID":64806,"TargetID":64803,"Directional":true},{"SourceID":64807,"TargetID":64804,"Directional":true}]},{"ID":15186,"SourceStructureID":64841,"TargetStructureID":64777,"Label":"64841-64777 via Ribbon Synapse from 64842 -> 64840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64842,"TargetID":64840,"Directional":true}]},{"ID":15187,"SourceStructureID":64920,"TargetStructureID":4890,"Label":"64920-4890 via Conventional from 64921 -> 64919","Type":"Conventional","Directional":true,"Links":[{"SourceID":64921,"TargetID":64919,"Directional":true}]},{"ID":15188,"SourceStructureID":64939,"TargetStructureID":64939,"Label":"64939-64939 via Conventional from 69440 -> 69419","Type":"Conventional","Directional":true,"Links":[{"SourceID":69440,"TargetID":69419,"Directional":true}]},{"ID":15189,"SourceStructureID":64939,"TargetStructureID":64939,"Label":"64939-64939 via Ribbon Synapse from 69707 -> 69715","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69707,"TargetID":69715,"Directional":true}]},{"ID":15190,"SourceStructureID":64939,"TargetStructureID":69436,"Label":"64939-69436 via Ribbon Synapse from 69417 -> 69437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69417,"TargetID":69437,"Directional":true}]},{"ID":15191,"SourceStructureID":64939,"TargetStructureID":69439,"Label":"64939-69439 via Ribbon Synapse from 69417 -> 69644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69417,"TargetID":69644,"Directional":true}]},{"ID":15192,"SourceStructureID":64939,"TargetStructureID":69443,"Label":"64939-69443 via BC Conventional Synapse from 69421 -> 69444","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":69421,"TargetID":69444,"Directional":true}]},{"ID":15193,"SourceStructureID":64939,"TargetStructureID":69446,"Label":"64939-69446 via Ribbon Synapse from 69425 -> 116705, 69445 -> 69447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69425,"TargetID":116705,"Directional":true},{"SourceID":69445,"TargetID":69447,"Directional":true}]},{"ID":15194,"SourceStructureID":64939,"TargetStructureID":69454,"Label":"64939-69454 via Ribbon Synapse from 69423 -> 69455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69423,"TargetID":69455,"Directional":true}]},{"ID":15195,"SourceStructureID":64939,"TargetStructureID":69554,"Label":"64939-69554 via BC Conventional Synapse from 69564 -> 69565","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":69564,"TargetID":69565,"Directional":true}]},{"ID":15196,"SourceStructureID":64939,"TargetStructureID":69695,"Label":"64939-69695 via Ribbon Synapse from 69694 -> 69698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69694,"TargetID":69698,"Directional":true}]},{"ID":15197,"SourceStructureID":64939,"TargetStructureID":69697,"Label":"64939-69697 via Ribbon Synapse from 69694 -> 69699","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69694,"TargetID":69699,"Directional":true}]},{"ID":15198,"SourceStructureID":64939,"TargetStructureID":69708,"Label":"64939-69708 via Ribbon Synapse from 69707 -> 69709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69707,"TargetID":69709,"Directional":true}]},{"ID":15199,"SourceStructureID":64939,"TargetStructureID":69710,"Label":"64939-69710 via Ribbon Synapse from 69707 -> 69716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69707,"TargetID":69716,"Directional":true}]},{"ID":15200,"SourceStructureID":64939,"TargetStructureID":69720,"Label":"64939-69720 via Ribbon Synapse from 69719 -> 69722","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69719,"TargetID":69722,"Directional":true}]},{"ID":15201,"SourceStructureID":64939,"TargetStructureID":69721,"Label":"64939-69721 via Ribbon Synapse from 69719 -> 69723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69719,"TargetID":69723,"Directional":true}]},{"ID":15202,"SourceStructureID":64939,"TargetStructureID":69727,"Label":"64939-69727 via Ribbon Synapse from 69726 -> 69730","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69726,"TargetID":69730,"Directional":true}]},{"ID":15203,"SourceStructureID":64939,"TargetStructureID":69728,"Label":"64939-69728 via Ribbon Synapse from 69726 -> 69731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69726,"TargetID":69731,"Directional":true}]},{"ID":15204,"SourceStructureID":64939,"TargetStructureID":69733,"Label":"64939-69733 via Ribbon Synapse from 69732 -> 70081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69732,"TargetID":70081,"Directional":true}]},{"ID":15205,"SourceStructureID":64939,"TargetStructureID":69735,"Label":"64939-69735 via Ribbon Synapse from 69734 -> 69736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69734,"TargetID":69736,"Directional":true}]},{"ID":15206,"SourceStructureID":64939,"TargetStructureID":69737,"Label":"64939-69737 via Ribbon Synapse from 69734 -> 69738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69734,"TargetID":69738,"Directional":true}]},{"ID":15207,"SourceStructureID":64939,"TargetStructureID":69750,"Label":"64939-69750 via Ribbon Synapse from 70082 -> 70083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70082,"TargetID":70083,"Directional":true}]},{"ID":15208,"SourceStructureID":64939,"TargetStructureID":69966,"Label":"64939-69966 via Ribbon Synapse from 69965 -> 69969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69965,"TargetID":69969,"Directional":true}]},{"ID":15209,"SourceStructureID":64939,"TargetStructureID":69967,"Label":"64939-69967 via Ribbon Synapse from 69965 -> 69968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69965,"TargetID":69968,"Directional":true}]},{"ID":15210,"SourceStructureID":64939,"TargetStructureID":69972,"Label":"64939-69972 via Ribbon Synapse from 69970 -> 69974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69970,"TargetID":69974,"Directional":true}]},{"ID":15211,"SourceStructureID":64939,"TargetStructureID":69973,"Label":"64939-69973 via Ribbon Synapse from 69970 -> 69975","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69970,"TargetID":69975,"Directional":true}]},{"ID":15212,"SourceStructureID":64939,"TargetStructureID":70003,"Label":"64939-70003 via Ribbon Synapse from 70002 -> 70004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70002,"TargetID":70004,"Directional":true}]},{"ID":15213,"SourceStructureID":64939,"TargetStructureID":93634,"Label":"64939-93634 via BC Conventional Synapse from 93633 -> 93636","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93633,"TargetID":93636,"Directional":true}]},{"ID":15214,"SourceStructureID":64939,"TargetStructureID":112880,"Label":"64939-112880 via Ribbon Synapse from 93639 -> 112881, 93642 -> 112882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93639,"TargetID":112881,"Directional":true},{"SourceID":93642,"TargetID":112882,"Directional":true}]},{"ID":15215,"SourceStructureID":65023,"TargetStructureID":6118,"Label":"65023-6118 via Conventional from 65032 -> 65031","Type":"Conventional","Directional":true,"Links":[{"SourceID":65032,"TargetID":65031,"Directional":true}]},{"ID":15216,"SourceStructureID":65056,"TargetStructureID":5107,"Label":"65056-5107 via Conventional from 65057 -> 65011","Type":"Conventional","Directional":true,"Links":[{"SourceID":65057,"TargetID":65011,"Directional":true}]},{"ID":15217,"SourceStructureID":65134,"TargetStructureID":65138,"Label":"65134-65138 via Conventional from 65137 -> 65139","Type":"Conventional","Directional":true,"Links":[{"SourceID":65137,"TargetID":65139,"Directional":true}]},{"ID":15218,"SourceStructureID":65134,"TargetStructureID":65141,"Label":"65134-65141 via Conventional from 65140 -> 65142","Type":"Conventional","Directional":true,"Links":[{"SourceID":65140,"TargetID":65142,"Directional":true}]},{"ID":15219,"SourceStructureID":65134,"TargetStructureID":65144,"Label":"65134-65144 via Conventional from 65143 -> 65145","Type":"Conventional","Directional":true,"Links":[{"SourceID":65143,"TargetID":65145,"Directional":true}]},{"ID":15220,"SourceStructureID":65156,"TargetStructureID":593,"Label":"65156-593 via Conventional from 65157 -> 65155","Type":"Conventional","Directional":true,"Links":[{"SourceID":65157,"TargetID":65155,"Directional":true}]},{"ID":15221,"SourceStructureID":65181,"TargetStructureID":476,"Label":"65181-476 via Conventional from 65182 -> 18023","Type":"Conventional","Directional":true,"Links":[{"SourceID":65182,"TargetID":18023,"Directional":true}]},{"ID":15222,"SourceStructureID":65245,"TargetStructureID":180,"Label":"65245-180 via Conventional from 94584 -> 5734","Type":"Conventional","Directional":true,"Links":[{"SourceID":94584,"TargetID":5734,"Directional":true}]},{"ID":15223,"SourceStructureID":65247,"TargetStructureID":6117,"Label":"65247-6117 via Conventional from 65248 -> 65249","Type":"Conventional","Directional":true,"Links":[{"SourceID":65248,"TargetID":65249,"Directional":true}]},{"ID":15224,"SourceStructureID":65250,"TargetStructureID":6117,"Label":"65250-6117 via Conventional from 65251 -> 65252","Type":"Conventional","Directional":true,"Links":[{"SourceID":65251,"TargetID":65252,"Directional":true}]},{"ID":15225,"SourceStructureID":65278,"TargetStructureID":593,"Label":"65278-593 via Conventional from 65279 -> 65280","Type":"Conventional","Directional":true,"Links":[{"SourceID":65279,"TargetID":65280,"Directional":true}]},{"ID":15226,"SourceStructureID":65287,"TargetStructureID":65284,"Label":"65287-65284 via Conventional from 65288 -> 65286","Type":"Conventional","Directional":true,"Links":[{"SourceID":65288,"TargetID":65286,"Directional":true}]},{"ID":15227,"SourceStructureID":65297,"TargetStructureID":65267,"Label":"65297-65267 via Conventional from 65298 -> 65296","Type":"Conventional","Directional":true,"Links":[{"SourceID":65298,"TargetID":65296,"Directional":true}]},{"ID":15228,"SourceStructureID":65307,"TargetStructureID":593,"Label":"65307-593 via Conventional from 65308 -> 65306","Type":"Conventional","Directional":true,"Links":[{"SourceID":65308,"TargetID":65306,"Directional":true}]},{"ID":15229,"SourceStructureID":65309,"TargetStructureID":593,"Label":"65309-593 via Conventional from 65310 -> 65311","Type":"Conventional","Directional":true,"Links":[{"SourceID":65310,"TargetID":65311,"Directional":true}]},{"ID":15230,"SourceStructureID":65318,"TargetStructureID":593,"Label":"65318-593 via Conventional from 83562 -> 83560","Type":"Conventional","Directional":true,"Links":[{"SourceID":83562,"TargetID":83560,"Directional":true}]},{"ID":15231,"SourceStructureID":65318,"TargetStructureID":65307,"Label":"65318-65307 via Conventional from 65319 -> 65317","Type":"Conventional","Directional":true,"Links":[{"SourceID":65319,"TargetID":65317,"Directional":true}]},{"ID":15232,"SourceStructureID":65318,"TargetStructureID":66523,"Label":"65318-66523 via Conventional from 75920 -> 75921","Type":"Conventional","Directional":true,"Links":[{"SourceID":75920,"TargetID":75921,"Directional":true}]},{"ID":15233,"SourceStructureID":65320,"TargetStructureID":593,"Label":"65320-593 via Conventional from 65321 -> 65322, 65340 -> 62894, 65341 -> 63034, 65342 -> 65343, 65346 -> 65347","Type":"Conventional","Directional":true,"Links":[{"SourceID":65321,"TargetID":65322,"Directional":true},{"SourceID":65340,"TargetID":62894,"Directional":true},{"SourceID":65341,"TargetID":63034,"Directional":true},{"SourceID":65342,"TargetID":65343,"Directional":true},{"SourceID":65346,"TargetID":65347,"Directional":true}]},{"ID":15234,"SourceStructureID":65324,"TargetStructureID":65332,"Label":"65324-65332 via Conventional from 65329 -> 65333","Type":"Conventional","Directional":true,"Links":[{"SourceID":65329,"TargetID":65333,"Directional":true}]},{"ID":15235,"SourceStructureID":65324,"TargetStructureID":65334,"Label":"65324-65334 via Conventional from 65336 -> 65335","Type":"Conventional","Directional":true,"Links":[{"SourceID":65336,"TargetID":65335,"Directional":true}]},{"ID":15236,"SourceStructureID":65324,"TargetStructureID":69162,"Label":"65324-69162 via Conventional from 69197 -> 69198","Type":"Conventional","Directional":true,"Links":[{"SourceID":69197,"TargetID":69198,"Directional":true}]},{"ID":15237,"SourceStructureID":65334,"TargetStructureID":65338,"Label":"65334-65338 via Conventional from 65337 -> 65339","Type":"Conventional","Directional":true,"Links":[{"SourceID":65337,"TargetID":65339,"Directional":true}]},{"ID":15238,"SourceStructureID":65351,"TargetStructureID":593,"Label":"65351-593 via Conventional from 65352 -> 65353","Type":"Conventional","Directional":true,"Links":[{"SourceID":65352,"TargetID":65353,"Directional":true}]},{"ID":15239,"SourceStructureID":65351,"TargetStructureID":5562,"Label":"65351-5562 via Conventional from 79033 -> 76373","Type":"Conventional","Directional":true,"Links":[{"SourceID":79033,"TargetID":76373,"Directional":true}]},{"ID":15240,"SourceStructureID":65351,"TargetStructureID":63371,"Label":"65351-63371 via Conventional from 79010 -> 63389, 79030 -> 63390","Type":"Conventional","Directional":true,"Links":[{"SourceID":79010,"TargetID":63389,"Directional":true},{"SourceID":79030,"TargetID":63390,"Directional":true}]},{"ID":15241,"SourceStructureID":65351,"TargetStructureID":78947,"Label":"65351-78947 via Conventional from 78942 -> 78948","Type":"Conventional","Directional":true,"Links":[{"SourceID":78942,"TargetID":78948,"Directional":true}]},{"ID":15242,"SourceStructureID":65351,"TargetStructureID":79034,"Label":"65351-79034 via Conventional from 79038 -> 79039","Type":"Conventional","Directional":true,"Links":[{"SourceID":79038,"TargetID":79039,"Directional":true}]},{"ID":15243,"SourceStructureID":65351,"TargetStructureID":79042,"Label":"65351-79042 via Conventional from 79041 -> 79043","Type":"Conventional","Directional":true,"Links":[{"SourceID":79041,"TargetID":79043,"Directional":true}]},{"ID":15244,"SourceStructureID":65355,"TargetStructureID":65351,"Label":"65355-65351 via Conventional from 65356 -> 65354","Type":"Conventional","Directional":true,"Links":[{"SourceID":65356,"TargetID":65354,"Directional":true}]},{"ID":15245,"SourceStructureID":65355,"TargetStructureID":65358,"Label":"65355-65358 via Conventional from 65357 -> 65359","Type":"Conventional","Directional":true,"Links":[{"SourceID":65357,"TargetID":65359,"Directional":true}]},{"ID":15246,"SourceStructureID":65358,"TargetStructureID":606,"Label":"65358-606 via Conventional from 65360 -> 47476","Type":"Conventional","Directional":true,"Links":[{"SourceID":65360,"TargetID":47476,"Directional":true}]},{"ID":15247,"SourceStructureID":65358,"TargetStructureID":65373,"Label":"65358-65373 via Conventional from 65372 -> 65374","Type":"Conventional","Directional":true,"Links":[{"SourceID":65372,"TargetID":65374,"Directional":true}]},{"ID":15248,"SourceStructureID":65363,"TargetStructureID":5562,"Label":"65363-5562 via Conventional from 65365 -> 63759","Type":"Conventional","Directional":true,"Links":[{"SourceID":65365,"TargetID":63759,"Directional":true}]},{"ID":15249,"SourceStructureID":65363,"TargetStructureID":65358,"Label":"65363-65358 via Conventional from 65364 -> 65362","Type":"Conventional","Directional":true,"Links":[{"SourceID":65364,"TargetID":65362,"Directional":true}]},{"ID":15250,"SourceStructureID":65363,"TargetStructureID":65366,"Label":"65363-65366 via Conventional from 65368 -> 65367","Type":"Conventional","Directional":true,"Links":[{"SourceID":65368,"TargetID":65367,"Directional":true}]},{"ID":15251,"SourceStructureID":65375,"TargetStructureID":593,"Label":"65375-593 via Conventional from 65384 -> 65385, 65551 -> 65552","Type":"Conventional","Directional":true,"Links":[{"SourceID":65384,"TargetID":65385,"Directional":true},{"SourceID":65551,"TargetID":65552,"Directional":true}]},{"ID":15252,"SourceStructureID":65375,"TargetStructureID":5283,"Label":"65375-5283 via Conventional from 65553 -> 65554","Type":"Conventional","Directional":true,"Links":[{"SourceID":65553,"TargetID":65554,"Directional":true}]},{"ID":15253,"SourceStructureID":65375,"TargetStructureID":65376,"Label":"65375-65376 via Conventional from 65378 -> 65377","Type":"Conventional","Directional":true,"Links":[{"SourceID":65378,"TargetID":65377,"Directional":true}]},{"ID":15254,"SourceStructureID":65375,"TargetStructureID":65555,"Label":"65375-65555 via Conventional from 65557 -> 65558","Type":"Conventional","Directional":true,"Links":[{"SourceID":65557,"TargetID":65558,"Directional":true}]},{"ID":15255,"SourceStructureID":65375,"TargetStructureID":73102,"Label":"65375-73102 via Conventional from 82399 -> 82400","Type":"Conventional","Directional":true,"Links":[{"SourceID":82399,"TargetID":82400,"Directional":true}]},{"ID":15256,"SourceStructureID":65376,"TargetStructureID":593,"Label":"65376-593 via Conventional from 65379 -> 65380","Type":"Conventional","Directional":true,"Links":[{"SourceID":65379,"TargetID":65380,"Directional":true}]},{"ID":15257,"SourceStructureID":65388,"TargetStructureID":57034,"Label":"65388-57034 via Conventional from 65393 -> 65394","Type":"Conventional","Directional":true,"Links":[{"SourceID":65393,"TargetID":65394,"Directional":true}]},{"ID":15258,"SourceStructureID":65388,"TargetStructureID":65391,"Label":"65388-65391 via Conventional from 65390 -> 65392","Type":"Conventional","Directional":true,"Links":[{"SourceID":65390,"TargetID":65392,"Directional":true}]},{"ID":15259,"SourceStructureID":65404,"TargetStructureID":593,"Label":"65404-593 via Conventional from 65605 -> 65606","Type":"Conventional","Directional":true,"Links":[{"SourceID":65605,"TargetID":65606,"Directional":true}]},{"ID":15260,"SourceStructureID":65408,"TargetStructureID":65612,"Label":"65408-65612 via Conventional from 65611 -> 65613","Type":"Conventional","Directional":true,"Links":[{"SourceID":65611,"TargetID":65613,"Directional":true}]},{"ID":15261,"SourceStructureID":65411,"TargetStructureID":593,"Label":"65411-593 via Conventional from 65412 -> 65410","Type":"Conventional","Directional":true,"Links":[{"SourceID":65412,"TargetID":65410,"Directional":true}]},{"ID":15262,"SourceStructureID":65439,"TargetStructureID":65438,"Label":"65439-65438 via Conventional from 65440 -> 65441","Type":"Conventional","Directional":true,"Links":[{"SourceID":65440,"TargetID":65441,"Directional":true}]},{"ID":15263,"SourceStructureID":65454,"TargetStructureID":593,"Label":"65454-593 via Conventional from 65459 -> 65460, 65527 -> 65528","Type":"Conventional","Directional":true,"Links":[{"SourceID":65459,"TargetID":65460,"Directional":true},{"SourceID":65527,"TargetID":65528,"Directional":true}]},{"ID":15264,"SourceStructureID":65454,"TargetStructureID":65457,"Label":"65454-65457 via Conventional from 65456 -> 65458","Type":"Conventional","Directional":true,"Links":[{"SourceID":65456,"TargetID":65458,"Directional":true}]},{"ID":15265,"SourceStructureID":65461,"TargetStructureID":593,"Label":"65461-593 via Conventional from 65462 -> 65463, 69859 -> 65402","Type":"Conventional","Directional":true,"Links":[{"SourceID":65462,"TargetID":65463,"Directional":true},{"SourceID":69859,"TargetID":65402,"Directional":true}]},{"ID":15266,"SourceStructureID":65464,"TargetStructureID":593,"Label":"65464-593 via Conventional from 65472 -> 65473, 65565 -> 65566, 65572 -> 65575","Type":"Conventional","Directional":true,"Links":[{"SourceID":65472,"TargetID":65473,"Directional":true},{"SourceID":65565,"TargetID":65566,"Directional":true},{"SourceID":65572,"TargetID":65575,"Directional":true}]},{"ID":15267,"SourceStructureID":65477,"TargetStructureID":65480,"Label":"65477-65480 via Conventional from 65479 -> 65481","Type":"Conventional","Directional":true,"Links":[{"SourceID":65479,"TargetID":65481,"Directional":true}]},{"ID":15268,"SourceStructureID":65480,"TargetStructureID":5279,"Label":"65480-5279 via Conventional from 65482 -> 49253","Type":"Conventional","Directional":true,"Links":[{"SourceID":65482,"TargetID":49253,"Directional":true}]},{"ID":15269,"SourceStructureID":65484,"TargetStructureID":65477,"Label":"65484-65477 via Conventional from 65489 -> 65488","Type":"Conventional","Directional":true,"Links":[{"SourceID":65489,"TargetID":65488,"Directional":true}]},{"ID":15270,"SourceStructureID":65484,"TargetStructureID":65480,"Label":"65484-65480 via Conventional from 65485 -> 65483","Type":"Conventional","Directional":true,"Links":[{"SourceID":65485,"TargetID":65483,"Directional":true}]},{"ID":15271,"SourceStructureID":65514,"TargetStructureID":5635,"Label":"65514-5635 via Conventional from 65515 -> 55964","Type":"Conventional","Directional":true,"Links":[{"SourceID":65515,"TargetID":55964,"Directional":true}]},{"ID":15272,"SourceStructureID":65519,"TargetStructureID":8575,"Label":"65519-8575 via Ribbon Synapse from 65520 -> 65518","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65520,"TargetID":65518,"Directional":true}]},{"ID":15273,"SourceStructureID":65522,"TargetStructureID":8575,"Label":"65522-8575 via Conventional from 65523 -> 65521","Type":"Conventional","Directional":true,"Links":[{"SourceID":65523,"TargetID":65521,"Directional":true}]},{"ID":15274,"SourceStructureID":65524,"TargetStructureID":8575,"Label":"65524-8575 via Conventional from 65525 -> 61538","Type":"Conventional","Directional":true,"Links":[{"SourceID":65525,"TargetID":61538,"Directional":true}]},{"ID":15275,"SourceStructureID":65532,"TargetStructureID":16026,"Label":"65532-16026 via Conventional from 65534 -> 25725","Type":"Conventional","Directional":true,"Links":[{"SourceID":65534,"TargetID":25725,"Directional":true}]},{"ID":15276,"SourceStructureID":65532,"TargetStructureID":65536,"Label":"65532-65536 via Conventional from 65535 -> 65537","Type":"Conventional","Directional":true,"Links":[{"SourceID":65535,"TargetID":65537,"Directional":true}]},{"ID":15277,"SourceStructureID":65536,"TargetStructureID":65538,"Label":"65536-65538 via Conventional from 65539 -> 65540","Type":"Conventional","Directional":true,"Links":[{"SourceID":65539,"TargetID":65540,"Directional":true}]},{"ID":15278,"SourceStructureID":65536,"TargetStructureID":67072,"Label":"65536-67072 via Conventional from 67071 -> 67073","Type":"Conventional","Directional":true,"Links":[{"SourceID":67071,"TargetID":67073,"Directional":true}]},{"ID":15279,"SourceStructureID":65559,"TargetStructureID":593,"Label":"65559-593 via Conventional from 66060 -> 66061","Type":"Conventional","Directional":true,"Links":[{"SourceID":66060,"TargetID":66061,"Directional":true}]},{"ID":15280,"SourceStructureID":65559,"TargetStructureID":29277,"Label":"65559-29277 via Conventional from 84442 -> 123163","Type":"Conventional","Directional":true,"Links":[{"SourceID":84442,"TargetID":123163,"Directional":true}]},{"ID":15281,"SourceStructureID":65559,"TargetStructureID":65375,"Label":"65559-65375 via Conventional from 66060 -> 66063","Type":"Conventional","Directional":true,"Links":[{"SourceID":66060,"TargetID":66063,"Directional":true}]},{"ID":15282,"SourceStructureID":65559,"TargetStructureID":65376,"Label":"65559-65376 via Conventional from 84439 -> 65381","Type":"Conventional","Directional":true,"Links":[{"SourceID":84439,"TargetID":65381,"Directional":true}]},{"ID":15283,"SourceStructureID":65559,"TargetStructureID":65454,"Label":"65559-65454 via Conventional from 66060 -> 66062","Type":"Conventional","Directional":true,"Links":[{"SourceID":66060,"TargetID":66062,"Directional":true}]},{"ID":15284,"SourceStructureID":65559,"TargetStructureID":65477,"Label":"65559-65477 via Conventional from 66070 -> 66069","Type":"Conventional","Directional":true,"Links":[{"SourceID":66070,"TargetID":66069,"Directional":true}]},{"ID":15285,"SourceStructureID":65559,"TargetStructureID":65532,"Label":"65559-65532 via Conventional from 66065 -> 66064","Type":"Conventional","Directional":true,"Links":[{"SourceID":66065,"TargetID":66064,"Directional":true}]},{"ID":15286,"SourceStructureID":65559,"TargetStructureID":66031,"Label":"65559-66031 via Conventional from 66035 -> 66034, 66059 -> 66055","Type":"Conventional","Directional":true,"Links":[{"SourceID":66035,"TargetID":66034,"Directional":true},{"SourceID":66059,"TargetID":66055,"Directional":true}]},{"ID":15287,"SourceStructureID":65559,"TargetStructureID":66053,"Label":"65559-66053 via Conventional from 66059 -> 66058","Type":"Conventional","Directional":true,"Links":[{"SourceID":66059,"TargetID":66058,"Directional":true}]},{"ID":15288,"SourceStructureID":65569,"TargetStructureID":180,"Label":"65569-180 via Conventional from 84485 -> 84486","Type":"Conventional","Directional":true,"Links":[{"SourceID":84485,"TargetID":84486,"Directional":true}]},{"ID":15289,"SourceStructureID":65569,"TargetStructureID":593,"Label":"65569-593 via Conventional from 65570 -> 65571","Type":"Conventional","Directional":true,"Links":[{"SourceID":65570,"TargetID":65571,"Directional":true}]},{"ID":15290,"SourceStructureID":65569,"TargetStructureID":65623,"Label":"65569-65623 via Conventional from 70825 -> 70826","Type":"Conventional","Directional":true,"Links":[{"SourceID":70825,"TargetID":70826,"Directional":true}]},{"ID":15291,"SourceStructureID":65576,"TargetStructureID":180,"Label":"65576-180 via Conventional from 65584 -> 65585","Type":"Conventional","Directional":true,"Links":[{"SourceID":65584,"TargetID":65585,"Directional":true}]},{"ID":15292,"SourceStructureID":65576,"TargetStructureID":593,"Label":"65576-593 via Conventional from 65577 -> 65578","Type":"Conventional","Directional":true,"Links":[{"SourceID":65577,"TargetID":65578,"Directional":true}]},{"ID":15293,"SourceStructureID":65576,"TargetStructureID":5649,"Label":"65576-5649 via Conventional from 84495 -> 82338, 84505 -> 84506","Type":"Conventional","Directional":true,"Links":[{"SourceID":84495,"TargetID":82338,"Directional":true},{"SourceID":84505,"TargetID":84506,"Directional":true}]},{"ID":15294,"SourceStructureID":65576,"TargetStructureID":6115,"Label":"65576-6115 via Conventional from 84496 -> 55885","Type":"Conventional","Directional":true,"Links":[{"SourceID":84496,"TargetID":55885,"Directional":true}]},{"ID":15295,"SourceStructureID":65579,"TargetStructureID":593,"Label":"65579-593 via Conventional from 65580 -> 65581","Type":"Conventional","Directional":true,"Links":[{"SourceID":65580,"TargetID":65581,"Directional":true}]},{"ID":15296,"SourceStructureID":65596,"TargetStructureID":180,"Label":"65596-180 via Conventional from 65598 -> 65599","Type":"Conventional","Directional":true,"Links":[{"SourceID":65598,"TargetID":65599,"Directional":true}]},{"ID":15297,"SourceStructureID":65612,"TargetStructureID":6117,"Label":"65612-6117 via Conventional from 65614 -> 65615","Type":"Conventional","Directional":true,"Links":[{"SourceID":65614,"TargetID":65615,"Directional":true}]},{"ID":15298,"SourceStructureID":65616,"TargetStructureID":606,"Label":"65616-606 via Conventional from 65621 -> 10707","Type":"Conventional","Directional":true,"Links":[{"SourceID":65621,"TargetID":10707,"Directional":true}]},{"ID":15299,"SourceStructureID":65616,"TargetStructureID":6117,"Label":"65616-6117 via Conventional from 65617 -> 65618","Type":"Conventional","Directional":true,"Links":[{"SourceID":65617,"TargetID":65618,"Directional":true}]},{"ID":15300,"SourceStructureID":65616,"TargetStructureID":65612,"Label":"65616-65612 via Conventional from 65619 -> 65620","Type":"Conventional","Directional":true,"Links":[{"SourceID":65619,"TargetID":65620,"Directional":true}]},{"ID":15301,"SourceStructureID":65623,"TargetStructureID":593,"Label":"65623-593 via Conventional from 65624 -> 65622, 66419 -> 28433","Type":"Conventional","Directional":true,"Links":[{"SourceID":65624,"TargetID":65622,"Directional":true},{"SourceID":66419,"TargetID":28433,"Directional":true}]},{"ID":15302,"SourceStructureID":65648,"TargetStructureID":6118,"Label":"65648-6118 via Conventional from 65650 -> 65649","Type":"Conventional","Directional":true,"Links":[{"SourceID":65650,"TargetID":65649,"Directional":true}]},{"ID":15303,"SourceStructureID":65652,"TargetStructureID":6118,"Label":"65652-6118 via Conventional from 65655 -> 65654","Type":"Conventional","Directional":true,"Links":[{"SourceID":65655,"TargetID":65654,"Directional":true}]},{"ID":15304,"SourceStructureID":65680,"TargetStructureID":6118,"Label":"65680-6118 via Conventional from 65681 -> 65679","Type":"Conventional","Directional":true,"Links":[{"SourceID":65681,"TargetID":65679,"Directional":true}]},{"ID":15305,"SourceStructureID":65683,"TargetStructureID":419,"Label":"65683-419 via Conventional from 65689 -> 65690","Type":"Conventional","Directional":true,"Links":[{"SourceID":65689,"TargetID":65690,"Directional":true}]},{"ID":15306,"SourceStructureID":65683,"TargetStructureID":8575,"Label":"65683-8575 via Conventional from 65684 -> 65682","Type":"Conventional","Directional":true,"Links":[{"SourceID":65684,"TargetID":65682,"Directional":true}]},{"ID":15307,"SourceStructureID":65691,"TargetStructureID":419,"Label":"65691-419 via Conventional from 65692 -> 132356","Type":"Conventional","Directional":true,"Links":[{"SourceID":65692,"TargetID":132356,"Directional":true}]},{"ID":15308,"SourceStructureID":65742,"TargetStructureID":61709,"Label":"65742-61709 via Ribbon Synapse from 65743 -> 65741","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65743,"TargetID":65741,"Directional":true}]},{"ID":15309,"SourceStructureID":65751,"TargetStructureID":437,"Label":"65751-437 via Conventional from 65753 -> 65708, 65755 -> 17586","Type":"Conventional","Directional":true,"Links":[{"SourceID":65753,"TargetID":65708,"Directional":true},{"SourceID":65755,"TargetID":17586,"Directional":true}]},{"ID":15310,"SourceStructureID":65751,"TargetStructureID":65751,"Label":"65751-65751 via Conventional from 65758 -> 65760","Type":"Conventional","Directional":true,"Links":[{"SourceID":65758,"TargetID":65760,"Directional":true}]},{"ID":15311,"SourceStructureID":65791,"TargetStructureID":5609,"Label":"65791-5609 via Conventional from 65792 -> 20636","Type":"Conventional","Directional":true,"Links":[{"SourceID":65792,"TargetID":20636,"Directional":true}]},{"ID":15312,"SourceStructureID":65791,"TargetStructureID":20681,"Label":"65791-20681 via Conventional from 65793 -> 65790","Type":"Conventional","Directional":true,"Links":[{"SourceID":65793,"TargetID":65790,"Directional":true}]},{"ID":15313,"SourceStructureID":65816,"TargetStructureID":8575,"Label":"65816-8575 via BC Conventional Synapse from 65817 -> 21643","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65817,"TargetID":21643,"Directional":true}]},{"ID":15314,"SourceStructureID":65819,"TargetStructureID":410,"Label":"65819-410 via Conventional from 65820 -> 65818","Type":"Conventional","Directional":true,"Links":[{"SourceID":65820,"TargetID":65818,"Directional":true}]},{"ID":15315,"SourceStructureID":65823,"TargetStructureID":410,"Label":"65823-410 via Conventional from 65824 -> 8349","Type":"Conventional","Directional":true,"Links":[{"SourceID":65824,"TargetID":8349,"Directional":true}]},{"ID":15316,"SourceStructureID":65826,"TargetStructureID":410,"Label":"65826-410 via Conventional from 65827 -> 8359","Type":"Conventional","Directional":true,"Links":[{"SourceID":65827,"TargetID":8359,"Directional":true}]},{"ID":15317,"SourceStructureID":65849,"TargetStructureID":6118,"Label":"65849-6118 via Conventional from 65851 -> 65850","Type":"Conventional","Directional":true,"Links":[{"SourceID":65851,"TargetID":65850,"Directional":true}]},{"ID":15318,"SourceStructureID":65866,"TargetStructureID":65864,"Label":"65866-65864 via Conventional from 65867 -> 65869","Type":"Conventional","Directional":true,"Links":[{"SourceID":65867,"TargetID":65869,"Directional":true}]},{"ID":15319,"SourceStructureID":65883,"TargetStructureID":65864,"Label":"65883-65864 via Conventional from 65886 -> 65887","Type":"Conventional","Directional":true,"Links":[{"SourceID":65886,"TargetID":65887,"Directional":true}]},{"ID":15320,"SourceStructureID":65890,"TargetStructureID":593,"Label":"65890-593 via Conventional from 65891 -> 65892","Type":"Conventional","Directional":true,"Links":[{"SourceID":65891,"TargetID":65892,"Directional":true}]},{"ID":15321,"SourceStructureID":65893,"TargetStructureID":593,"Label":"65893-593 via Conventional from 65894 -> 65895","Type":"Conventional","Directional":true,"Links":[{"SourceID":65894,"TargetID":65895,"Directional":true}]},{"ID":15322,"SourceStructureID":65898,"TargetStructureID":65899,"Label":"65898-65899 via Conventional from 65900 -> 65901","Type":"Conventional","Directional":true,"Links":[{"SourceID":65900,"TargetID":65901,"Directional":true}]},{"ID":15323,"SourceStructureID":65910,"TargetStructureID":6118,"Label":"65910-6118 via Conventional from 65912 -> 65913","Type":"Conventional","Directional":true,"Links":[{"SourceID":65912,"TargetID":65913,"Directional":true}]},{"ID":15324,"SourceStructureID":65916,"TargetStructureID":6118,"Label":"65916-6118 via Conventional from 65917 -> 65918","Type":"Conventional","Directional":true,"Links":[{"SourceID":65917,"TargetID":65918,"Directional":true}]},{"ID":15325,"SourceStructureID":65920,"TargetStructureID":5650,"Label":"65920-5650 via Conventional from 102961 -> 102962","Type":"Conventional","Directional":true,"Links":[{"SourceID":102961,"TargetID":102962,"Directional":true}]},{"ID":15326,"SourceStructureID":65920,"TargetStructureID":6118,"Label":"65920-6118 via Conventional from 65921 -> 65922","Type":"Conventional","Directional":true,"Links":[{"SourceID":65921,"TargetID":65922,"Directional":true}]},{"ID":15327,"SourceStructureID":65963,"TargetStructureID":180,"Label":"65963-180 via Conventional from 65965 -> 65966, 65969 -> 65970","Type":"Conventional","Directional":true,"Links":[{"SourceID":65965,"TargetID":65966,"Directional":true},{"SourceID":65969,"TargetID":65970,"Directional":true}]},{"ID":15328,"SourceStructureID":65963,"TargetStructureID":5618,"Label":"65963-5618 via Conventional from 65964 -> 65962","Type":"Conventional","Directional":true,"Links":[{"SourceID":65964,"TargetID":65962,"Directional":true}]},{"ID":15329,"SourceStructureID":65963,"TargetStructureID":64492,"Label":"65963-64492 via Conventional from 65973 -> 65974","Type":"Conventional","Directional":true,"Links":[{"SourceID":65973,"TargetID":65974,"Directional":true}]},{"ID":15330,"SourceStructureID":65963,"TargetStructureID":66299,"Label":"65963-66299 via Conventional from 66301 -> 66302","Type":"Conventional","Directional":true,"Links":[{"SourceID":66301,"TargetID":66302,"Directional":true}]},{"ID":15331,"SourceStructureID":66015,"TargetStructureID":7111,"Label":"66015-7111 via Conventional from 66016 -> 66014","Type":"Conventional","Directional":true,"Links":[{"SourceID":66016,"TargetID":66014,"Directional":true}]},{"ID":15332,"SourceStructureID":66018,"TargetStructureID":7111,"Label":"66018-7111 via Conventional from 66019 -> 66017","Type":"Conventional","Directional":true,"Links":[{"SourceID":66019,"TargetID":66017,"Directional":true}]},{"ID":15333,"SourceStructureID":66020,"TargetStructureID":7111,"Label":"66020-7111 via Conventional from 66021 -> 66017","Type":"Conventional","Directional":true,"Links":[{"SourceID":66021,"TargetID":66017,"Directional":true}]},{"ID":15334,"SourceStructureID":66024,"TargetStructureID":593,"Label":"66024-593 via Conventional from 66025 -> 66026","Type":"Conventional","Directional":true,"Links":[{"SourceID":66025,"TargetID":66026,"Directional":true}]},{"ID":15335,"SourceStructureID":66031,"TargetStructureID":593,"Label":"66031-593 via Conventional from 66071 -> 66072","Type":"Conventional","Directional":true,"Links":[{"SourceID":66071,"TargetID":66072,"Directional":true}]},{"ID":15336,"SourceStructureID":66031,"TargetStructureID":66028,"Label":"66031-66028 via Conventional from 66032 -> 66030","Type":"Conventional","Directional":true,"Links":[{"SourceID":66032,"TargetID":66030,"Directional":true}]},{"ID":15337,"SourceStructureID":66031,"TargetStructureID":66037,"Label":"66031-66037 via Conventional from 66036 -> 66038","Type":"Conventional","Directional":true,"Links":[{"SourceID":66036,"TargetID":66038,"Directional":true}]},{"ID":15338,"SourceStructureID":66031,"TargetStructureID":84457,"Label":"66031-84457 via Conventional from 84456 -> 84459","Type":"Conventional","Directional":true,"Links":[{"SourceID":84456,"TargetID":84459,"Directional":true}]},{"ID":15339,"SourceStructureID":66037,"TargetStructureID":66031,"Label":"66037-66031 via Conventional from 66039 -> 66040","Type":"Conventional","Directional":true,"Links":[{"SourceID":66039,"TargetID":66040,"Directional":true}]},{"ID":15340,"SourceStructureID":66037,"TargetStructureID":66809,"Label":"66037-66809 via Conventional from 66039 -> 82439","Type":"Conventional","Directional":true,"Links":[{"SourceID":66039,"TargetID":82439,"Directional":true}]},{"ID":15341,"SourceStructureID":66044,"TargetStructureID":66031,"Label":"66044-66031 via Conventional from 66046 -> 66045","Type":"Conventional","Directional":true,"Links":[{"SourceID":66046,"TargetID":66045,"Directional":true}]},{"ID":15342,"SourceStructureID":66053,"TargetStructureID":593,"Label":"66053-593 via Conventional from 66056 -> 66057","Type":"Conventional","Directional":true,"Links":[{"SourceID":66056,"TargetID":66057,"Directional":true}]},{"ID":15343,"SourceStructureID":66073,"TargetStructureID":66075,"Label":"66073-66075 via Conventional from 66076 -> 66077","Type":"Conventional","Directional":true,"Links":[{"SourceID":66076,"TargetID":66077,"Directional":true}]},{"ID":15344,"SourceStructureID":66073,"TargetStructureID":66085,"Label":"66073-66085 via Conventional from 66084 -> 66086","Type":"Conventional","Directional":true,"Links":[{"SourceID":66084,"TargetID":66086,"Directional":true}]},{"ID":15345,"SourceStructureID":66079,"TargetStructureID":66075,"Label":"66079-66075 via Conventional from 66080 -> 66078","Type":"Conventional","Directional":true,"Links":[{"SourceID":66080,"TargetID":66078,"Directional":true}]},{"ID":15346,"SourceStructureID":66085,"TargetStructureID":66946,"Label":"66085-66946 via Conventional from 82750 -> 82751","Type":"Conventional","Directional":true,"Links":[{"SourceID":82750,"TargetID":82751,"Directional":true}]},{"ID":15347,"SourceStructureID":66089,"TargetStructureID":593,"Label":"66089-593 via Conventional from 66090 -> 28441, 66094 -> 66095","Type":"Conventional","Directional":true,"Links":[{"SourceID":66090,"TargetID":28441,"Directional":true},{"SourceID":66094,"TargetID":66095,"Directional":true}]},{"ID":15348,"SourceStructureID":66096,"TargetStructureID":593,"Label":"66096-593 via Conventional from 66097 -> 52744, 66098 -> 66099, 66885 -> 7753, 67025 -> 7828, 67032 -> 7812","Type":"Conventional","Directional":true,"Links":[{"SourceID":66097,"TargetID":52744,"Directional":true},{"SourceID":66098,"TargetID":66099,"Directional":true},{"SourceID":66885,"TargetID":7753,"Directional":true},{"SourceID":67025,"TargetID":7828,"Directional":true},{"SourceID":67032,"TargetID":7812,"Directional":true}]},{"ID":15349,"SourceStructureID":66100,"TargetStructureID":593,"Label":"66100-593 via Conventional from 66101 -> 28437","Type":"Conventional","Directional":true,"Links":[{"SourceID":66101,"TargetID":28437,"Directional":true}]},{"ID":15350,"SourceStructureID":66102,"TargetStructureID":593,"Label":"66102-593 via Conventional from 66103 -> 28442","Type":"Conventional","Directional":true,"Links":[{"SourceID":66103,"TargetID":28442,"Directional":true}]},{"ID":15351,"SourceStructureID":66102,"TargetStructureID":66096,"Label":"66102-66096 via Conventional from 66109 -> 66110","Type":"Conventional","Directional":true,"Links":[{"SourceID":66109,"TargetID":66110,"Directional":true}]},{"ID":15352,"SourceStructureID":66104,"TargetStructureID":66102,"Label":"66104-66102 via Conventional from 66105 -> 66106","Type":"Conventional","Directional":true,"Links":[{"SourceID":66105,"TargetID":66106,"Directional":true}]},{"ID":15353,"SourceStructureID":66111,"TargetStructureID":16026,"Label":"66111-16026 via Conventional from 134753 -> 134752","Type":"Conventional","Directional":true,"Links":[{"SourceID":134753,"TargetID":134752,"Directional":true}]},{"ID":15354,"SourceStructureID":66114,"TargetStructureID":66114,"Label":"66114-66114 via Conventional from 66119 -> 66120","Type":"Conventional","Directional":true,"Links":[{"SourceID":66119,"TargetID":66120,"Directional":true}]},{"ID":15355,"SourceStructureID":66114,"TargetStructureID":66768,"Label":"66114-66768 via Conventional from 66117 -> 67565","Type":"Conventional","Directional":true,"Links":[{"SourceID":66117,"TargetID":67565,"Directional":true}]},{"ID":15356,"SourceStructureID":66165,"TargetStructureID":5284,"Label":"66165-5284 via Conventional from 113269 -> 113270","Type":"Conventional","Directional":true,"Links":[{"SourceID":113269,"TargetID":113270,"Directional":true}]},{"ID":15357,"SourceStructureID":66165,"TargetStructureID":6050,"Label":"66165-6050 via Conventional from 66175 -> 66174","Type":"Conventional","Directional":true,"Links":[{"SourceID":66175,"TargetID":66174,"Directional":true}]},{"ID":15358,"SourceStructureID":66184,"TargetStructureID":11401,"Label":"66184-11401 via Conventional from 66185 -> 66186, 92038 -> 92039","Type":"Conventional","Directional":true,"Links":[{"SourceID":66185,"TargetID":66186,"Directional":true},{"SourceID":92038,"TargetID":92039,"Directional":true}]},{"ID":15359,"SourceStructureID":66193,"TargetStructureID":428,"Label":"66193-428 via Conventional from 66194 -> 66195","Type":"Conventional","Directional":true,"Links":[{"SourceID":66194,"TargetID":66195,"Directional":true}]},{"ID":15360,"SourceStructureID":66199,"TargetStructureID":514,"Label":"66199-514 via Ribbon Synapse from 66200 -> 1173","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66200,"TargetID":1173,"Directional":true}]},{"ID":15361,"SourceStructureID":66278,"TargetStructureID":166,"Label":"66278-166 via Conventional from 66292 -> 60025, 81905 -> 81906","Type":"Conventional","Directional":true,"Links":[{"SourceID":66292,"TargetID":60025,"Directional":true},{"SourceID":81905,"TargetID":81906,"Directional":true}]},{"ID":15362,"SourceStructureID":66278,"TargetStructureID":593,"Label":"66278-593 via Conventional from 66279 -> 66280","Type":"Conventional","Directional":true,"Links":[{"SourceID":66279,"TargetID":66280,"Directional":true}]},{"ID":15363,"SourceStructureID":66295,"TargetStructureID":166,"Label":"66295-166 via Conventional from 66297 -> 60022","Type":"Conventional","Directional":true,"Links":[{"SourceID":66297,"TargetID":60022,"Directional":true}]},{"ID":15364,"SourceStructureID":66303,"TargetStructureID":180,"Label":"66303-180 via Conventional from 66307 -> 6057","Type":"Conventional","Directional":true,"Links":[{"SourceID":66307,"TargetID":6057,"Directional":true}]},{"ID":15365,"SourceStructureID":66303,"TargetStructureID":593,"Label":"66303-593 via Conventional from 66304 -> 66305","Type":"Conventional","Directional":true,"Links":[{"SourceID":66304,"TargetID":66305,"Directional":true}]},{"ID":15366,"SourceStructureID":66323,"TargetStructureID":593,"Label":"66323-593 via Conventional from 66324 -> 66322","Type":"Conventional","Directional":true,"Links":[{"SourceID":66324,"TargetID":66322,"Directional":true}]},{"ID":15367,"SourceStructureID":66323,"TargetStructureID":6115,"Label":"66323-6115 via Conventional from 84323 -> 73123","Type":"Conventional","Directional":true,"Links":[{"SourceID":84323,"TargetID":73123,"Directional":true}]},{"ID":15368,"SourceStructureID":66323,"TargetStructureID":84342,"Label":"66323-84342 via Conventional from 84341 -> 84343","Type":"Conventional","Directional":true,"Links":[{"SourceID":84341,"TargetID":84343,"Directional":true}]},{"ID":15369,"SourceStructureID":66323,"TargetStructureID":84391,"Label":"66323-84391 via Conventional from 84390 -> 84392","Type":"Conventional","Directional":true,"Links":[{"SourceID":84390,"TargetID":84392,"Directional":true}]},{"ID":15370,"SourceStructureID":66323,"TargetStructureID":84394,"Label":"66323-84394 via Conventional from 84393 -> 84395","Type":"Conventional","Directional":true,"Links":[{"SourceID":84393,"TargetID":84395,"Directional":true}]},{"ID":15371,"SourceStructureID":66323,"TargetStructureID":84398,"Label":"66323-84398 via Conventional from 84397 -> 84399","Type":"Conventional","Directional":true,"Links":[{"SourceID":84397,"TargetID":84399,"Directional":true}]},{"ID":15372,"SourceStructureID":66323,"TargetStructureID":84407,"Label":"66323-84407 via Conventional from 84405 -> 84408, 84412 -> 84413","Type":"Conventional","Directional":true,"Links":[{"SourceID":84405,"TargetID":84408,"Directional":true},{"SourceID":84412,"TargetID":84413,"Directional":true}]},{"ID":15373,"SourceStructureID":66323,"TargetStructureID":84418,"Label":"66323-84418 via Conventional from 84417 -> 84419","Type":"Conventional","Directional":true,"Links":[{"SourceID":84417,"TargetID":84419,"Directional":true}]},{"ID":15374,"SourceStructureID":66323,"TargetStructureID":84424,"Label":"66323-84424 via Conventional from 84423 -> 84425","Type":"Conventional","Directional":true,"Links":[{"SourceID":84423,"TargetID":84425,"Directional":true}]},{"ID":15375,"SourceStructureID":66329,"TargetStructureID":593,"Label":"66329-593 via Conventional from 66330 -> 66328","Type":"Conventional","Directional":true,"Links":[{"SourceID":66330,"TargetID":66328,"Directional":true}]},{"ID":15376,"SourceStructureID":66339,"TargetStructureID":593,"Label":"66339-593 via Conventional from 66340 -> 66341","Type":"Conventional","Directional":true,"Links":[{"SourceID":66340,"TargetID":66341,"Directional":true}]},{"ID":15377,"SourceStructureID":66339,"TargetStructureID":6115,"Label":"66339-6115 via Conventional from 84273 -> 73083","Type":"Conventional","Directional":true,"Links":[{"SourceID":84273,"TargetID":73083,"Directional":true}]},{"ID":15378,"SourceStructureID":66355,"TargetStructureID":5117,"Label":"66355-5117 via Conventional from 66356 -> 66354","Type":"Conventional","Directional":true,"Links":[{"SourceID":66356,"TargetID":66354,"Directional":true}]},{"ID":15379,"SourceStructureID":66374,"TargetStructureID":5279,"Label":"66374-5279 via Conventional from 66379 -> 49251, 66389 -> 6347, 66394 -> 97580","Type":"Conventional","Directional":true,"Links":[{"SourceID":66379,"TargetID":49251,"Directional":true},{"SourceID":66389,"TargetID":6347,"Directional":true},{"SourceID":66394,"TargetID":97580,"Directional":true}]},{"ID":15380,"SourceStructureID":66381,"TargetStructureID":909,"Label":"66381-909 via Conventional from 66383 -> 36060","Type":"Conventional","Directional":true,"Links":[{"SourceID":66383,"TargetID":36060,"Directional":true}]},{"ID":15381,"SourceStructureID":66381,"TargetStructureID":5279,"Label":"66381-5279 via Conventional from 66386 -> 49250","Type":"Conventional","Directional":true,"Links":[{"SourceID":66386,"TargetID":49250,"Directional":true}]},{"ID":15382,"SourceStructureID":66381,"TargetStructureID":66374,"Label":"66381-66374 via Conventional from 66382 -> 66380","Type":"Conventional","Directional":true,"Links":[{"SourceID":66382,"TargetID":66380,"Directional":true}]},{"ID":15383,"SourceStructureID":66395,"TargetStructureID":5279,"Label":"66395-5279 via Conventional from 66396 -> 97585","Type":"Conventional","Directional":true,"Links":[{"SourceID":66396,"TargetID":97585,"Directional":true}]},{"ID":15384,"SourceStructureID":66395,"TargetStructureID":15796,"Label":"66395-15796 via Conventional from 66397 -> 66398","Type":"Conventional","Directional":true,"Links":[{"SourceID":66397,"TargetID":66398,"Directional":true}]},{"ID":15385,"SourceStructureID":66401,"TargetStructureID":593,"Label":"66401-593 via Conventional from 66403 -> 66404, 66417 -> 66418, 66422 -> 66423","Type":"Conventional","Directional":true,"Links":[{"SourceID":66403,"TargetID":66404,"Directional":true},{"SourceID":66417,"TargetID":66418,"Directional":true},{"SourceID":66422,"TargetID":66423,"Directional":true}]},{"ID":15386,"SourceStructureID":66401,"TargetStructureID":65623,"Label":"66401-65623 via Conventional from 66414 -> 66416","Type":"Conventional","Directional":true,"Links":[{"SourceID":66414,"TargetID":66416,"Directional":true}]},{"ID":15387,"SourceStructureID":66407,"TargetStructureID":593,"Label":"66407-593 via Conventional from 66462 -> 66463, 67448 -> 67449","Type":"Conventional","Directional":true,"Links":[{"SourceID":66462,"TargetID":66463,"Directional":true},{"SourceID":67448,"TargetID":67449,"Directional":true}]},{"ID":15388,"SourceStructureID":66407,"TargetStructureID":5599,"Label":"66407-5599 via Conventional from 69410 -> 135181","Type":"Conventional","Directional":true,"Links":[{"SourceID":69410,"TargetID":135181,"Directional":true}]},{"ID":15389,"SourceStructureID":66407,"TargetStructureID":6115,"Label":"66407-6115 via Conventional from 72803 -> 72804","Type":"Conventional","Directional":true,"Links":[{"SourceID":72803,"TargetID":72804,"Directional":true}]},{"ID":15390,"SourceStructureID":66407,"TargetStructureID":6997,"Label":"66407-6997 via Conventional from 69391 -> 28740","Type":"Conventional","Directional":true,"Links":[{"SourceID":69391,"TargetID":28740,"Directional":true}]},{"ID":15391,"SourceStructureID":66407,"TargetStructureID":16087,"Label":"66407-16087 via Conventional from 69398 -> 16092","Type":"Conventional","Directional":true,"Links":[{"SourceID":69398,"TargetID":16092,"Directional":true}]},{"ID":15392,"SourceStructureID":66407,"TargetStructureID":39319,"Label":"66407-39319 via Conventional from 69408 -> 69409","Type":"Conventional","Directional":true,"Links":[{"SourceID":69408,"TargetID":69409,"Directional":true}]},{"ID":15393,"SourceStructureID":66407,"TargetStructureID":41608,"Label":"66407-41608 via Conventional from 69399 -> 69400","Type":"Conventional","Directional":true,"Links":[{"SourceID":69399,"TargetID":69400,"Directional":true}]},{"ID":15394,"SourceStructureID":66407,"TargetStructureID":66469,"Label":"66407-66469 via Conventional from 66471 -> 66470","Type":"Conventional","Directional":true,"Links":[{"SourceID":66471,"TargetID":66470,"Directional":true}]},{"ID":15395,"SourceStructureID":66407,"TargetStructureID":66473,"Label":"66407-66473 via Conventional from 66472 -> 66474","Type":"Conventional","Directional":true,"Links":[{"SourceID":66472,"TargetID":66474,"Directional":true}]},{"ID":15396,"SourceStructureID":66407,"TargetStructureID":66937,"Label":"66407-66937 via Conventional from 66941 -> 66939","Type":"Conventional","Directional":true,"Links":[{"SourceID":66941,"TargetID":66939,"Directional":true}]},{"ID":15397,"SourceStructureID":66407,"TargetStructureID":67254,"Label":"66407-67254 via Conventional from 67245 -> 79579","Type":"Conventional","Directional":true,"Links":[{"SourceID":67245,"TargetID":79579,"Directional":true}]},{"ID":15398,"SourceStructureID":66407,"TargetStructureID":69347,"Label":"66407-69347 via Conventional from 69346 -> 69348","Type":"Conventional","Directional":true,"Links":[{"SourceID":69346,"TargetID":69348,"Directional":true}]},{"ID":15399,"SourceStructureID":66407,"TargetStructureID":69350,"Label":"66407-69350 via Conventional from 69349 -> 69351","Type":"Conventional","Directional":true,"Links":[{"SourceID":69349,"TargetID":69351,"Directional":true}]},{"ID":15400,"SourceStructureID":66407,"TargetStructureID":69396,"Label":"66407-69396 via Conventional from 69395 -> 69397","Type":"Conventional","Directional":true,"Links":[{"SourceID":69395,"TargetID":69397,"Directional":true}]},{"ID":15401,"SourceStructureID":66407,"TargetStructureID":69414,"Label":"66407-69414 via Conventional from 69413 -> 69415","Type":"Conventional","Directional":true,"Links":[{"SourceID":69413,"TargetID":69415,"Directional":true}]},{"ID":15402,"SourceStructureID":66407,"TargetStructureID":69461,"Label":"66407-69461 via Conventional from 69462 -> 69463","Type":"Conventional","Directional":true,"Links":[{"SourceID":69462,"TargetID":69463,"Directional":true}]},{"ID":15403,"SourceStructureID":66407,"TargetStructureID":69483,"Label":"66407-69483 via Conventional from 69486 -> 69488","Type":"Conventional","Directional":true,"Links":[{"SourceID":69486,"TargetID":69488,"Directional":true}]},{"ID":15404,"SourceStructureID":66407,"TargetStructureID":69484,"Label":"66407-69484 via Conventional from 69485 -> 69487","Type":"Conventional","Directional":true,"Links":[{"SourceID":69485,"TargetID":69487,"Directional":true}]},{"ID":15405,"SourceStructureID":66407,"TargetStructureID":69505,"Label":"66407-69505 via Conventional from 69506 -> 69507","Type":"Conventional","Directional":true,"Links":[{"SourceID":69506,"TargetID":69507,"Directional":true}]},{"ID":15406,"SourceStructureID":66425,"TargetStructureID":593,"Label":"66425-593 via Conventional from 66426 -> 7766, 66427 -> 66428","Type":"Conventional","Directional":true,"Links":[{"SourceID":66426,"TargetID":7766,"Directional":true},{"SourceID":66427,"TargetID":66428,"Directional":true}]},{"ID":15407,"SourceStructureID":66425,"TargetStructureID":5283,"Label":"66425-5283 via Conventional from 131668 -> 131669","Type":"Conventional","Directional":true,"Links":[{"SourceID":131668,"TargetID":131669,"Directional":true}]},{"ID":15408,"SourceStructureID":66425,"TargetStructureID":70750,"Label":"66425-70750 via Conventional from 70749 -> 70751","Type":"Conventional","Directional":true,"Links":[{"SourceID":70749,"TargetID":70751,"Directional":true}]},{"ID":15409,"SourceStructureID":66447,"TargetStructureID":39590,"Label":"66447-39590 via Conventional from 66454 -> 66456","Type":"Conventional","Directional":true,"Links":[{"SourceID":66454,"TargetID":66456,"Directional":true}]},{"ID":15410,"SourceStructureID":66452,"TargetStructureID":66447,"Label":"66452-66447 via Conventional from 66453 -> 66451","Type":"Conventional","Directional":true,"Links":[{"SourceID":66453,"TargetID":66451,"Directional":true}]},{"ID":15411,"SourceStructureID":66459,"TargetStructureID":66447,"Label":"66459-66447 via Conventional from 66460 -> 66461","Type":"Conventional","Directional":true,"Links":[{"SourceID":66460,"TargetID":66461,"Directional":true}]},{"ID":15412,"SourceStructureID":66464,"TargetStructureID":66407,"Label":"66464-66407 via Conventional from 66465 -> 66466","Type":"Conventional","Directional":true,"Links":[{"SourceID":66465,"TargetID":66466,"Directional":true}]},{"ID":15413,"SourceStructureID":66473,"TargetStructureID":6115,"Label":"66473-6115 via Conventional from 66475 -> 66476","Type":"Conventional","Directional":true,"Links":[{"SourceID":66475,"TargetID":66476,"Directional":true}]},{"ID":15414,"SourceStructureID":66477,"TargetStructureID":593,"Label":"66477-593 via Conventional from 66478 -> 66479","Type":"Conventional","Directional":true,"Links":[{"SourceID":66478,"TargetID":66479,"Directional":true}]},{"ID":15415,"SourceStructureID":66487,"TargetStructureID":593,"Label":"66487-593 via Conventional from 66488 -> 66489","Type":"Conventional","Directional":true,"Links":[{"SourceID":66488,"TargetID":66489,"Directional":true}]},{"ID":15416,"SourceStructureID":66493,"TargetStructureID":39615,"Label":"66493-39615 via Conventional from 66495 -> 39641","Type":"Conventional","Directional":true,"Links":[{"SourceID":66495,"TargetID":39641,"Directional":true}]},{"ID":15417,"SourceStructureID":66503,"TargetStructureID":593,"Label":"66503-593 via Conventional from 66504 -> 66505","Type":"Conventional","Directional":true,"Links":[{"SourceID":66504,"TargetID":66505,"Directional":true}]},{"ID":15418,"SourceStructureID":66503,"TargetStructureID":66510,"Label":"66503-66510 via Conventional from 66509 -> 66511","Type":"Conventional","Directional":true,"Links":[{"SourceID":66509,"TargetID":66511,"Directional":true}]},{"ID":15419,"SourceStructureID":66503,"TargetStructureID":66516,"Label":"66503-66516 via Conventional from 66515 -> 66518","Type":"Conventional","Directional":true,"Links":[{"SourceID":66515,"TargetID":66518,"Directional":true}]},{"ID":15420,"SourceStructureID":66510,"TargetStructureID":66513,"Label":"66510-66513 via Conventional from 66512 -> 66514","Type":"Conventional","Directional":true,"Links":[{"SourceID":66512,"TargetID":66514,"Directional":true}]},{"ID":15421,"SourceStructureID":66516,"TargetStructureID":593,"Label":"66516-593 via Conventional from 66517 -> 59623","Type":"Conventional","Directional":true,"Links":[{"SourceID":66517,"TargetID":59623,"Directional":true}]},{"ID":15422,"SourceStructureID":66520,"TargetStructureID":66523,"Label":"66520-66523 via Conventional from 66526 -> 66527","Type":"Conventional","Directional":true,"Links":[{"SourceID":66526,"TargetID":66527,"Directional":true}]},{"ID":15423,"SourceStructureID":66523,"TargetStructureID":16087,"Label":"66523-16087 via Conventional from 75309 -> 75310","Type":"Conventional","Directional":true,"Links":[{"SourceID":75309,"TargetID":75310,"Directional":true}]},{"ID":15424,"SourceStructureID":66523,"TargetStructureID":22974,"Label":"66523-22974 via Conventional from 75924 -> 75923","Type":"Conventional","Directional":true,"Links":[{"SourceID":75924,"TargetID":75923,"Directional":true}]},{"ID":15425,"SourceStructureID":66523,"TargetStructureID":31256,"Label":"66523-31256 via Conventional from 75349 -> 31257","Type":"Conventional","Directional":true,"Links":[{"SourceID":75349,"TargetID":31257,"Directional":true}]},{"ID":15426,"SourceStructureID":66523,"TargetStructureID":39615,"Label":"66523-39615 via Conventional from 66530 -> 39636","Type":"Conventional","Directional":true,"Links":[{"SourceID":66530,"TargetID":39636,"Directional":true}]},{"ID":15427,"SourceStructureID":66523,"TargetStructureID":41608,"Label":"66523-41608 via Conventional from 74913 -> 41688","Type":"Conventional","Directional":true,"Links":[{"SourceID":74913,"TargetID":41688,"Directional":true}]},{"ID":15428,"SourceStructureID":66523,"TargetStructureID":66647,"Label":"66523-66647 via Conventional from 75342 -> 66648","Type":"Conventional","Directional":true,"Links":[{"SourceID":75342,"TargetID":66648,"Directional":true}]},{"ID":15429,"SourceStructureID":66523,"TargetStructureID":75130,"Label":"66523-75130 via Conventional from 75315 -> 75316","Type":"Conventional","Directional":true,"Links":[{"SourceID":75315,"TargetID":75316,"Directional":true}]},{"ID":15430,"SourceStructureID":66523,"TargetStructureID":75300,"Label":"66523-75300 via Conventional from 75299 -> 75301","Type":"Conventional","Directional":true,"Links":[{"SourceID":75299,"TargetID":75301,"Directional":true}]},{"ID":15431,"SourceStructureID":66523,"TargetStructureID":75302,"Label":"66523-75302 via Conventional from 75303 -> 75304","Type":"Conventional","Directional":true,"Links":[{"SourceID":75303,"TargetID":75304,"Directional":true}]},{"ID":15432,"SourceStructureID":66523,"TargetStructureID":75324,"Label":"66523-75324 via Conventional from 75323 -> 75325","Type":"Conventional","Directional":true,"Links":[{"SourceID":75323,"TargetID":75325,"Directional":true}]},{"ID":15433,"SourceStructureID":66523,"TargetStructureID":75326,"Label":"66523-75326 via Conventional from 75327 -> 75328","Type":"Conventional","Directional":true,"Links":[{"SourceID":75327,"TargetID":75328,"Directional":true}]},{"ID":15434,"SourceStructureID":66523,"TargetStructureID":75332,"Label":"66523-75332 via Conventional from 75333 -> 75334","Type":"Conventional","Directional":true,"Links":[{"SourceID":75333,"TargetID":75334,"Directional":true}]},{"ID":15435,"SourceStructureID":66523,"TargetStructureID":75337,"Label":"66523-75337 via Conventional from 66528 -> 75338","Type":"Conventional","Directional":true,"Links":[{"SourceID":66528,"TargetID":75338,"Directional":true}]},{"ID":15436,"SourceStructureID":66523,"TargetStructureID":75339,"Label":"66523-75339 via Conventional from 66529 -> 75340","Type":"Conventional","Directional":true,"Links":[{"SourceID":66529,"TargetID":75340,"Directional":true}]},{"ID":15437,"SourceStructureID":66523,"TargetStructureID":77965,"Label":"66523-77965 via Conventional from 77966 -> 77967","Type":"Conventional","Directional":true,"Links":[{"SourceID":77966,"TargetID":77967,"Directional":true}]},{"ID":15438,"SourceStructureID":66542,"TargetStructureID":166,"Label":"66542-166 via Conventional from 83483 -> 83484","Type":"Conventional","Directional":true,"Links":[{"SourceID":83483,"TargetID":83484,"Directional":true}]},{"ID":15439,"SourceStructureID":66542,"TargetStructureID":593,"Label":"66542-593 via Conventional from 66543 -> 66544","Type":"Conventional","Directional":true,"Links":[{"SourceID":66543,"TargetID":66544,"Directional":true}]},{"ID":15440,"SourceStructureID":66634,"TargetStructureID":166,"Label":"66634-166 via Conventional from 71338 -> 60026","Type":"Conventional","Directional":true,"Links":[{"SourceID":71338,"TargetID":60026,"Directional":true}]},{"ID":15441,"SourceStructureID":66634,"TargetStructureID":593,"Label":"66634-593 via Conventional from 66635 -> 59624","Type":"Conventional","Directional":true,"Links":[{"SourceID":66635,"TargetID":59624,"Directional":true}]},{"ID":15442,"SourceStructureID":66634,"TargetStructureID":6115,"Label":"66634-6115 via Conventional from 71331 -> 71332, 71957 -> 71621","Type":"Conventional","Directional":true,"Links":[{"SourceID":71331,"TargetID":71332,"Directional":true},{"SourceID":71957,"TargetID":71621,"Directional":true}]},{"ID":15443,"SourceStructureID":66634,"TargetStructureID":6857,"Label":"66634-6857 via Conventional from 66638 -> 66637","Type":"Conventional","Directional":true,"Links":[{"SourceID":66638,"TargetID":66637,"Directional":true}]},{"ID":15444,"SourceStructureID":66634,"TargetStructureID":38363,"Label":"66634-38363 via Conventional from 71613 -> 38367","Type":"Conventional","Directional":true,"Links":[{"SourceID":71613,"TargetID":38367,"Directional":true}]},{"ID":15445,"SourceStructureID":66634,"TargetStructureID":71345,"Label":"66634-71345 via Conventional from 71344 -> 71346","Type":"Conventional","Directional":true,"Links":[{"SourceID":71344,"TargetID":71346,"Directional":true}]},{"ID":15446,"SourceStructureID":66634,"TargetStructureID":71517,"Label":"66634-71517 via Conventional from 66672 -> 66674, 71623 -> 71624","Type":"Conventional","Directional":true,"Links":[{"SourceID":66672,"TargetID":66674,"Directional":true},{"SourceID":71623,"TargetID":71624,"Directional":true}]},{"ID":15447,"SourceStructureID":66634,"TargetStructureID":71615,"Label":"66634-71615 via Conventional from 71614 -> 71616","Type":"Conventional","Directional":true,"Links":[{"SourceID":71614,"TargetID":71616,"Directional":true}]},{"ID":15448,"SourceStructureID":66640,"TargetStructureID":66523,"Label":"66640-66523 via Conventional from 66643 -> 75341","Type":"Conventional","Directional":true,"Links":[{"SourceID":66643,"TargetID":75341,"Directional":true}]},{"ID":15449,"SourceStructureID":66656,"TargetStructureID":16002,"Label":"66656-16002 via Adherens from 66659 -> 66658","Type":"Adherens","Directional":true,"Links":[{"SourceID":66659,"TargetID":66658,"Directional":true}]},{"ID":15450,"SourceStructureID":66660,"TargetStructureID":4569,"Label":"66660-4569 via Conventional from 66661 -> 30839","Type":"Conventional","Directional":true,"Links":[{"SourceID":66661,"TargetID":30839,"Directional":true}]},{"ID":15451,"SourceStructureID":66665,"TargetStructureID":4569,"Label":"66665-4569 via Conventional from 66670 -> 30840","Type":"Conventional","Directional":true,"Links":[{"SourceID":66670,"TargetID":30840,"Directional":true}]},{"ID":15452,"SourceStructureID":66665,"TargetStructureID":66667,"Label":"66665-66667 via Conventional from 66668 -> 66669","Type":"Conventional","Directional":true,"Links":[{"SourceID":66668,"TargetID":66669,"Directional":true}]},{"ID":15453,"SourceStructureID":66682,"TargetStructureID":593,"Label":"66682-593 via Conventional from 66684 -> 59621","Type":"Conventional","Directional":true,"Links":[{"SourceID":66684,"TargetID":59621,"Directional":true}]},{"ID":15454,"SourceStructureID":66685,"TargetStructureID":593,"Label":"66685-593 via Conventional from 66686 -> 59617","Type":"Conventional","Directional":true,"Links":[{"SourceID":66686,"TargetID":59617,"Directional":true}]},{"ID":15455,"SourceStructureID":66685,"TargetStructureID":66688,"Label":"66685-66688 via Conventional from 66687 -> 66689","Type":"Conventional","Directional":true,"Links":[{"SourceID":66687,"TargetID":66689,"Directional":true}]},{"ID":15456,"SourceStructureID":66691,"TargetStructureID":66688,"Label":"66691-66688 via Conventional from 66692 -> 66690","Type":"Conventional","Directional":true,"Links":[{"SourceID":66692,"TargetID":66690,"Directional":true}]},{"ID":15457,"SourceStructureID":66693,"TargetStructureID":593,"Label":"66693-593 via Conventional from 66695 -> 59612","Type":"Conventional","Directional":true,"Links":[{"SourceID":66695,"TargetID":59612,"Directional":true}]},{"ID":15458,"SourceStructureID":66696,"TargetStructureID":6115,"Label":"66696-6115 via Conventional from 66749 -> 16059","Type":"Conventional","Directional":true,"Links":[{"SourceID":66749,"TargetID":16059,"Directional":true}]},{"ID":15459,"SourceStructureID":66699,"TargetStructureID":66696,"Label":"66699-66696 via Conventional from 66700 -> 66698","Type":"Conventional","Directional":true,"Links":[{"SourceID":66700,"TargetID":66698,"Directional":true}]},{"ID":15460,"SourceStructureID":66702,"TargetStructureID":66696,"Label":"66702-66696 via Conventional from 66703 -> 66701","Type":"Conventional","Directional":true,"Links":[{"SourceID":66703,"TargetID":66701,"Directional":true}]},{"ID":15461,"SourceStructureID":66706,"TargetStructureID":593,"Label":"66706-593 via Conventional from 66708 -> 59620","Type":"Conventional","Directional":true,"Links":[{"SourceID":66708,"TargetID":59620,"Directional":true}]},{"ID":15462,"SourceStructureID":66710,"TargetStructureID":39345,"Label":"66710-39345 via Conventional from 66717 -> 39362","Type":"Conventional","Directional":true,"Links":[{"SourceID":66717,"TargetID":39362,"Directional":true}]},{"ID":15463,"SourceStructureID":66710,"TargetStructureID":58696,"Label":"66710-58696 via Conventional from 66716 -> 66709","Type":"Conventional","Directional":true,"Links":[{"SourceID":66716,"TargetID":66709,"Directional":true}]},{"ID":15464,"SourceStructureID":66713,"TargetStructureID":166,"Label":"66713-166 via Conventional from 66715 -> 60005","Type":"Conventional","Directional":true,"Links":[{"SourceID":66715,"TargetID":60005,"Directional":true}]},{"ID":15465,"SourceStructureID":66723,"TargetStructureID":58696,"Label":"66723-58696 via Conventional from 66724 -> 66722","Type":"Conventional","Directional":true,"Links":[{"SourceID":66724,"TargetID":66722,"Directional":true}]},{"ID":15466,"SourceStructureID":66726,"TargetStructureID":66516,"Label":"66726-66516 via Conventional from 66727 -> 66725","Type":"Conventional","Directional":true,"Links":[{"SourceID":66727,"TargetID":66725,"Directional":true}]},{"ID":15467,"SourceStructureID":66731,"TargetStructureID":66734,"Label":"66731-66734 via Conventional from 66733 -> 66735","Type":"Conventional","Directional":true,"Links":[{"SourceID":66733,"TargetID":66735,"Directional":true}]},{"ID":15468,"SourceStructureID":66731,"TargetStructureID":66741,"Label":"66731-66741 via Conventional from 66740 -> 66742","Type":"Conventional","Directional":true,"Links":[{"SourceID":66740,"TargetID":66742,"Directional":true}]},{"ID":15469,"SourceStructureID":66760,"TargetStructureID":66756,"Label":"66760-66756 via Conventional from 66761 -> 66762","Type":"Conventional","Directional":true,"Links":[{"SourceID":66761,"TargetID":66762,"Directional":true}]},{"ID":15470,"SourceStructureID":66768,"TargetStructureID":593,"Label":"66768-593 via Conventional from 67538 -> 67539, 68429 -> 28438","Type":"Conventional","Directional":true,"Links":[{"SourceID":67538,"TargetID":67539,"Directional":true},{"SourceID":68429,"TargetID":28438,"Directional":true}]},{"ID":15471,"SourceStructureID":66768,"TargetStructureID":6115,"Label":"66768-6115 via Conventional from 66771 -> 59607","Type":"Conventional","Directional":true,"Links":[{"SourceID":66771,"TargetID":59607,"Directional":true}]},{"ID":15472,"SourceStructureID":66779,"TargetStructureID":593,"Label":"66779-593 via Conventional from 66780 -> 7712, 66793 -> 7751, 67499 -> 7757","Type":"Conventional","Directional":true,"Links":[{"SourceID":66780,"TargetID":7712,"Directional":true},{"SourceID":66793,"TargetID":7751,"Directional":true},{"SourceID":67499,"TargetID":7757,"Directional":true}]},{"ID":15473,"SourceStructureID":66788,"TargetStructureID":66791,"Label":"66788-66791 via Conventional from 66790 -> 66792","Type":"Conventional","Directional":true,"Links":[{"SourceID":66790,"TargetID":66792,"Directional":true}]},{"ID":15474,"SourceStructureID":66795,"TargetStructureID":593,"Label":"66795-593 via Conventional from 66796 -> 7714, 67567 -> 7767","Type":"Conventional","Directional":true,"Links":[{"SourceID":66796,"TargetID":7714,"Directional":true},{"SourceID":67567,"TargetID":7767,"Directional":true}]},{"ID":15475,"SourceStructureID":66795,"TargetStructureID":66798,"Label":"66795-66798 via Conventional from 66797 -> 66799","Type":"Conventional","Directional":true,"Links":[{"SourceID":66797,"TargetID":66799,"Directional":true}]},{"ID":15476,"SourceStructureID":66795,"TargetStructureID":68488,"Label":"66795-68488 via Conventional from 79580 -> 79581","Type":"Conventional","Directional":true,"Links":[{"SourceID":79580,"TargetID":79581,"Directional":true}]},{"ID":15477,"SourceStructureID":66801,"TargetStructureID":16026,"Label":"66801-16026 via Conventional from 83605 -> 91078","Type":"Conventional","Directional":true,"Links":[{"SourceID":83605,"TargetID":91078,"Directional":true}]},{"ID":15478,"SourceStructureID":66801,"TargetStructureID":66795,"Label":"66801-66795 via Conventional from 66802 -> 66800","Type":"Conventional","Directional":true,"Links":[{"SourceID":66802,"TargetID":66800,"Directional":true}]},{"ID":15479,"SourceStructureID":66801,"TargetStructureID":83609,"Label":"66801-83609 via Conventional from 83608 -> 83610","Type":"Conventional","Directional":true,"Links":[{"SourceID":83608,"TargetID":83610,"Directional":true}]},{"ID":15480,"SourceStructureID":66804,"TargetStructureID":593,"Label":"66804-593 via Conventional from 66806 -> 66807","Type":"Conventional","Directional":true,"Links":[{"SourceID":66806,"TargetID":66807,"Directional":true}]},{"ID":15481,"SourceStructureID":66804,"TargetStructureID":66801,"Label":"66804-66801 via Conventional from 80629 -> 83601","Type":"Conventional","Directional":true,"Links":[{"SourceID":80629,"TargetID":83601,"Directional":true}]},{"ID":15482,"SourceStructureID":66804,"TargetStructureID":66809,"Label":"66804-66809 via Conventional from 66808 -> 66810","Type":"Conventional","Directional":true,"Links":[{"SourceID":66808,"TargetID":66810,"Directional":true}]},{"ID":15483,"SourceStructureID":66804,"TargetStructureID":69537,"Label":"66804-69537 via Conventional from 80632 -> 69633","Type":"Conventional","Directional":true,"Links":[{"SourceID":80632,"TargetID":69633,"Directional":true}]},{"ID":15484,"SourceStructureID":66809,"TargetStructureID":593,"Label":"66809-593 via Conventional from 66861 -> 67060","Type":"Conventional","Directional":true,"Links":[{"SourceID":66861,"TargetID":67060,"Directional":true}]},{"ID":15485,"SourceStructureID":66809,"TargetStructureID":66031,"Label":"66809-66031 via Conventional from 66047 -> 66048","Type":"Conventional","Directional":true,"Links":[{"SourceID":66047,"TargetID":66048,"Directional":true}]},{"ID":15486,"SourceStructureID":66809,"TargetStructureID":66795,"Label":"66809-66795 via Conventional from 82440 -> 82441","Type":"Conventional","Directional":true,"Links":[{"SourceID":82440,"TargetID":82441,"Directional":true}]},{"ID":15487,"SourceStructureID":66809,"TargetStructureID":66804,"Label":"66809-66804 via Conventional from 66864 -> 66867","Type":"Conventional","Directional":true,"Links":[{"SourceID":66864,"TargetID":66867,"Directional":true}]},{"ID":15488,"SourceStructureID":66815,"TargetStructureID":10943,"Label":"66815-10943 via Conventional from 66818 -> 16269","Type":"Conventional","Directional":true,"Links":[{"SourceID":66818,"TargetID":16269,"Directional":true}]},{"ID":15489,"SourceStructureID":66828,"TargetStructureID":593,"Label":"66828-593 via Conventional from 66830 -> 66831","Type":"Conventional","Directional":true,"Links":[{"SourceID":66830,"TargetID":66831,"Directional":true}]},{"ID":15490,"SourceStructureID":66828,"TargetStructureID":16026,"Label":"66828-16026 via Conventional from 66836 -> 25704, 82735 -> 25600, 82740 -> 67923","Type":"Conventional","Directional":true,"Links":[{"SourceID":66836,"TargetID":25704,"Directional":true},{"SourceID":82735,"TargetID":25600,"Directional":true},{"SourceID":82740,"TargetID":67923,"Directional":true}]},{"ID":15491,"SourceStructureID":66828,"TargetStructureID":40451,"Label":"66828-40451 via Conventional from 82727 -> 40452","Type":"Conventional","Directional":true,"Links":[{"SourceID":82727,"TargetID":40452,"Directional":true}]},{"ID":15492,"SourceStructureID":66828,"TargetStructureID":82729,"Label":"66828-82729 via Conventional from 82728 -> 82730","Type":"Conventional","Directional":true,"Links":[{"SourceID":82728,"TargetID":82730,"Directional":true}]},{"ID":15493,"SourceStructureID":66840,"TargetStructureID":8720,"Label":"66840-8720 via Conventional from 64379 -> 64377","Type":"Conventional","Directional":true,"Links":[{"SourceID":64379,"TargetID":64377,"Directional":true}]},{"ID":15494,"SourceStructureID":66852,"TargetStructureID":593,"Label":"66852-593 via Conventional from 66853 -> 66854","Type":"Conventional","Directional":true,"Links":[{"SourceID":66853,"TargetID":66854,"Directional":true}]},{"ID":15495,"SourceStructureID":66871,"TargetStructureID":593,"Label":"66871-593 via Conventional from 66873 -> 7754","Type":"Conventional","Directional":true,"Links":[{"SourceID":66873,"TargetID":7754,"Directional":true}]},{"ID":15496,"SourceStructureID":66871,"TargetStructureID":66804,"Label":"66871-66804 via Conventional from 66874 -> 66875","Type":"Conventional","Directional":true,"Links":[{"SourceID":66874,"TargetID":66875,"Directional":true}]},{"ID":15497,"SourceStructureID":66871,"TargetStructureID":67430,"Label":"66871-67430 via Conventional from 82742 -> 70032","Type":"Conventional","Directional":true,"Links":[{"SourceID":82742,"TargetID":70032,"Directional":true}]},{"ID":15498,"SourceStructureID":66896,"TargetStructureID":593,"Label":"66896-593 via Conventional from 79252 -> 7805","Type":"Conventional","Directional":true,"Links":[{"SourceID":79252,"TargetID":7805,"Directional":true}]},{"ID":15499,"SourceStructureID":66900,"TargetStructureID":66900,"Label":"66900-66900 via Conventional from 66902 -> 66904","Type":"Conventional","Directional":true,"Links":[{"SourceID":66902,"TargetID":66904,"Directional":true}]},{"ID":15500,"SourceStructureID":66900,"TargetStructureID":84260,"Label":"66900-84260 via Conventional from 66901 -> 84265","Type":"Conventional","Directional":true,"Links":[{"SourceID":66901,"TargetID":84265,"Directional":true}]},{"ID":15501,"SourceStructureID":66905,"TargetStructureID":66923,"Label":"66905-66923 via Conventional from 66922 -> 66924","Type":"Conventional","Directional":true,"Links":[{"SourceID":66922,"TargetID":66924,"Directional":true}]},{"ID":15502,"SourceStructureID":66920,"TargetStructureID":66905,"Label":"66920-66905 via Conventional from 66921 -> 66919","Type":"Conventional","Directional":true,"Links":[{"SourceID":66921,"TargetID":66919,"Directional":true}]},{"ID":15503,"SourceStructureID":66927,"TargetStructureID":66905,"Label":"66927-66905 via Conventional from 66928 -> 66926","Type":"Conventional","Directional":true,"Links":[{"SourceID":66928,"TargetID":66926,"Directional":true}]},{"ID":15504,"SourceStructureID":66930,"TargetStructureID":66905,"Label":"66930-66905 via Conventional from 66931 -> 66929","Type":"Conventional","Directional":true,"Links":[{"SourceID":66931,"TargetID":66929,"Directional":true}]},{"ID":15505,"SourceStructureID":66946,"TargetStructureID":525,"Label":"66946-525 via Conventional from 83032 -> 6223","Type":"Conventional","Directional":true,"Links":[{"SourceID":83032,"TargetID":6223,"Directional":true}]},{"ID":15506,"SourceStructureID":66946,"TargetStructureID":593,"Label":"66946-593 via Conventional from 66948 -> 66949","Type":"Conventional","Directional":true,"Links":[{"SourceID":66948,"TargetID":66949,"Directional":true}]},{"ID":15507,"SourceStructureID":66946,"TargetStructureID":5017,"Label":"66946-5017 via Conventional from 82924 -> 61167","Type":"Conventional","Directional":true,"Links":[{"SourceID":82924,"TargetID":61167,"Directional":true}]},{"ID":15508,"SourceStructureID":66946,"TargetStructureID":6156,"Label":"66946-6156 via Conventional from 82906 -> 28694","Type":"Conventional","Directional":true,"Links":[{"SourceID":82906,"TargetID":28694,"Directional":true}]},{"ID":15509,"SourceStructureID":66946,"TargetStructureID":6997,"Label":"66946-6997 via Conventional from 82943 -> 80639","Type":"Conventional","Directional":true,"Links":[{"SourceID":82943,"TargetID":80639,"Directional":true}]},{"ID":15510,"SourceStructureID":66946,"TargetStructureID":8580,"Label":"66946-8580 via Conventional from 69261 -> 59650","Type":"Conventional","Directional":true,"Links":[{"SourceID":69261,"TargetID":59650,"Directional":true}]},{"ID":15511,"SourceStructureID":66946,"TargetStructureID":8588,"Label":"66946-8588 via Conventional from 82745 -> 32708, 82905 -> 59743","Type":"Conventional","Directional":true,"Links":[{"SourceID":82745,"TargetID":32708,"Directional":true},{"SourceID":82905,"TargetID":59743,"Directional":true}]},{"ID":15512,"SourceStructureID":66946,"TargetStructureID":16026,"Label":"66946-16026 via Conventional from 82890 -> 25488","Type":"Conventional","Directional":true,"Links":[{"SourceID":82890,"TargetID":25488,"Directional":true}]},{"ID":15513,"SourceStructureID":66946,"TargetStructureID":32913,"Label":"66946-32913 via Conventional from 82903 -> 82904","Type":"Conventional","Directional":true,"Links":[{"SourceID":82903,"TargetID":82904,"Directional":true}]},{"ID":15514,"SourceStructureID":66946,"TargetStructureID":66952,"Label":"66946-66952 via Conventional from 66951 -> 66953","Type":"Conventional","Directional":true,"Links":[{"SourceID":66951,"TargetID":66953,"Directional":true}]},{"ID":15515,"SourceStructureID":66946,"TargetStructureID":68302,"Label":"66946-68302 via Adherens from 82925 -> 80635","Type":"Adherens","Directional":true,"Links":[{"SourceID":82925,"TargetID":80635,"Directional":true}]},{"ID":15516,"SourceStructureID":66946,"TargetStructureID":68302,"Label":"66946-68302 via Conventional from 82926 -> 80634, 82927 -> 80636","Type":"Conventional","Directional":true,"Links":[{"SourceID":82926,"TargetID":80634,"Directional":true},{"SourceID":82927,"TargetID":80636,"Directional":true}]},{"ID":15517,"SourceStructureID":66946,"TargetStructureID":68341,"Label":"66946-68341 via Conventional from 82744 -> 80622","Type":"Conventional","Directional":true,"Links":[{"SourceID":82744,"TargetID":80622,"Directional":true}]},{"ID":15518,"SourceStructureID":66946,"TargetStructureID":68548,"Label":"66946-68548 via Conventional from 82891 -> 73486","Type":"Conventional","Directional":true,"Links":[{"SourceID":82891,"TargetID":73486,"Directional":true}]},{"ID":15519,"SourceStructureID":66946,"TargetStructureID":83034,"Label":"66946-83034 via Conventional from 83035 -> 83036","Type":"Conventional","Directional":true,"Links":[{"SourceID":83035,"TargetID":83036,"Directional":true}]},{"ID":15520,"SourceStructureID":66952,"TargetStructureID":593,"Label":"66952-593 via Conventional from 67006 -> 67004","Type":"Conventional","Directional":true,"Links":[{"SourceID":67006,"TargetID":67004,"Directional":true}]},{"ID":15521,"SourceStructureID":66952,"TargetStructureID":67007,"Label":"66952-67007 via Conventional from 67012 -> 67013","Type":"Conventional","Directional":true,"Links":[{"SourceID":67012,"TargetID":67013,"Directional":true}]},{"ID":15522,"SourceStructureID":66952,"TargetStructureID":67389,"Label":"66952-67389 via Conventional from 67388 -> 67390","Type":"Conventional","Directional":true,"Links":[{"SourceID":67388,"TargetID":67390,"Directional":true}]},{"ID":15523,"SourceStructureID":66952,"TargetStructureID":83049,"Label":"66952-83049 via Conventional from 83048 -> 83050","Type":"Conventional","Directional":true,"Links":[{"SourceID":83048,"TargetID":83050,"Directional":true}]},{"ID":15524,"SourceStructureID":66955,"TargetStructureID":66946,"Label":"66955-66946 via Conventional from 66956 -> 66954","Type":"Conventional","Directional":true,"Links":[{"SourceID":66956,"TargetID":66954,"Directional":true}]},{"ID":15525,"SourceStructureID":66962,"TargetStructureID":16026,"Label":"66962-16026 via Conventional from 71226 -> 25734","Type":"Conventional","Directional":true,"Links":[{"SourceID":71226,"TargetID":25734,"Directional":true}]},{"ID":15526,"SourceStructureID":66962,"TargetStructureID":66964,"Label":"66962-66964 via Conventional from 66963 -> 66965","Type":"Conventional","Directional":true,"Links":[{"SourceID":66963,"TargetID":66965,"Directional":true}]},{"ID":15527,"SourceStructureID":66969,"TargetStructureID":66966,"Label":"66969-66966 via Conventional from 66970 -> 66971","Type":"Conventional","Directional":true,"Links":[{"SourceID":66970,"TargetID":66971,"Directional":true}]},{"ID":15528,"SourceStructureID":66972,"TargetStructureID":10943,"Label":"66972-10943 via Conventional from 66973 -> 66974","Type":"Conventional","Directional":true,"Links":[{"SourceID":66973,"TargetID":66974,"Directional":true}]},{"ID":15529,"SourceStructureID":66983,"TargetStructureID":593,"Label":"66983-593 via Conventional from 66984 -> 7718, 66997 -> 7724","Type":"Conventional","Directional":true,"Links":[{"SourceID":66984,"TargetID":7718,"Directional":true},{"SourceID":66997,"TargetID":7724,"Directional":true}]},{"ID":15530,"SourceStructureID":66983,"TargetStructureID":66988,"Label":"66983-66988 via Conventional from 66987 -> 66989","Type":"Conventional","Directional":true,"Links":[{"SourceID":66987,"TargetID":66989,"Directional":true}]},{"ID":15531,"SourceStructureID":66992,"TargetStructureID":66983,"Label":"66992-66983 via Conventional from 66993 -> 66994","Type":"Conventional","Directional":true,"Links":[{"SourceID":66993,"TargetID":66994,"Directional":true}]},{"ID":15532,"SourceStructureID":67002,"TargetStructureID":66983,"Label":"67002-66983 via Conventional from 67003 -> 67001","Type":"Conventional","Directional":true,"Links":[{"SourceID":67003,"TargetID":67001,"Directional":true}]},{"ID":15533,"SourceStructureID":67007,"TargetStructureID":593,"Label":"67007-593 via Conventional from 67014 -> 66622","Type":"Conventional","Directional":true,"Links":[{"SourceID":67014,"TargetID":66622,"Directional":true}]},{"ID":15534,"SourceStructureID":67007,"TargetStructureID":66952,"Label":"67007-66952 via Conventional from 67008 -> 67009","Type":"Conventional","Directional":true,"Links":[{"SourceID":67008,"TargetID":67009,"Directional":true}]},{"ID":15535,"SourceStructureID":67007,"TargetStructureID":67016,"Label":"67007-67016 via Conventional from 67015 -> 67017","Type":"Conventional","Directional":true,"Links":[{"SourceID":67015,"TargetID":67017,"Directional":true}]},{"ID":15536,"SourceStructureID":67010,"TargetStructureID":8588,"Label":"67010-8588 via Conventional from 67011 -> 32710","Type":"Conventional","Directional":true,"Links":[{"SourceID":67011,"TargetID":32710,"Directional":true}]},{"ID":15537,"SourceStructureID":67016,"TargetStructureID":55403,"Label":"67016-55403 via Conventional from 67023 -> 55465","Type":"Conventional","Directional":true,"Links":[{"SourceID":67023,"TargetID":55465,"Directional":true}]},{"ID":15538,"SourceStructureID":67037,"TargetStructureID":66777,"Label":"67037-66777 via Conventional from 71208 -> 67039","Type":"Conventional","Directional":true,"Links":[{"SourceID":71208,"TargetID":67039,"Directional":true}]},{"ID":15539,"SourceStructureID":67042,"TargetStructureID":66958,"Label":"67042-66958 via Conventional from 67043 -> 67041","Type":"Conventional","Directional":true,"Links":[{"SourceID":67043,"TargetID":67041,"Directional":true}]},{"ID":15540,"SourceStructureID":67045,"TargetStructureID":593,"Label":"67045-593 via Conventional from 67047 -> 67046, 67218 -> 67215, 67676 -> 67674, 67680 -> 67681","Type":"Conventional","Directional":true,"Links":[{"SourceID":67047,"TargetID":67046,"Directional":true},{"SourceID":67218,"TargetID":67215,"Directional":true},{"SourceID":67676,"TargetID":67674,"Directional":true},{"SourceID":67680,"TargetID":67681,"Directional":true}]},{"ID":15541,"SourceStructureID":67045,"TargetStructureID":16026,"Label":"67045-16026 via Conventional from 81542 -> 68700","Type":"Conventional","Directional":true,"Links":[{"SourceID":81542,"TargetID":68700,"Directional":true}]},{"ID":15542,"SourceStructureID":67045,"TargetStructureID":31161,"Label":"67045-31161 via Conventional from 68699 -> 31234","Type":"Conventional","Directional":true,"Links":[{"SourceID":68699,"TargetID":31234,"Directional":true}]},{"ID":15543,"SourceStructureID":67045,"TargetStructureID":67683,"Label":"67045-67683 via Conventional from 67682 -> 67684","Type":"Conventional","Directional":true,"Links":[{"SourceID":67682,"TargetID":67684,"Directional":true}]},{"ID":15544,"SourceStructureID":67045,"TargetStructureID":67731,"Label":"67045-67731 via Conventional from 67734 -> 67735","Type":"Conventional","Directional":true,"Links":[{"SourceID":67734,"TargetID":67735,"Directional":true}]},{"ID":15545,"SourceStructureID":67045,"TargetStructureID":67756,"Label":"67045-67756 via Conventional from 67048 -> 75405, 68695 -> 75401","Type":"Conventional","Directional":true,"Links":[{"SourceID":67048,"TargetID":75405,"Directional":true},{"SourceID":68695,"TargetID":75401,"Directional":true}]},{"ID":15546,"SourceStructureID":67045,"TargetStructureID":81549,"Label":"67045-81549 via Conventional from 81548 -> 81550","Type":"Conventional","Directional":true,"Links":[{"SourceID":81548,"TargetID":81550,"Directional":true}]},{"ID":15547,"SourceStructureID":67051,"TargetStructureID":66958,"Label":"67051-66958 via Conventional from 67055 -> 67056","Type":"Conventional","Directional":true,"Links":[{"SourceID":67055,"TargetID":67056,"Directional":true}]},{"ID":15548,"SourceStructureID":67057,"TargetStructureID":7594,"Label":"67057-7594 via Conventional from 130847 -> 130848","Type":"Conventional","Directional":true,"Links":[{"SourceID":130847,"TargetID":130848,"Directional":true}]},{"ID":15549,"SourceStructureID":67057,"TargetStructureID":66958,"Label":"67057-66958 via Conventional from 67058 -> 67059","Type":"Conventional","Directional":true,"Links":[{"SourceID":67058,"TargetID":67059,"Directional":true}]},{"ID":15550,"SourceStructureID":67072,"TargetStructureID":22974,"Label":"67072-22974 via Conventional from 67074 -> 67075","Type":"Conventional","Directional":true,"Links":[{"SourceID":67074,"TargetID":67075,"Directional":true}]},{"ID":15551,"SourceStructureID":67080,"TargetStructureID":16026,"Label":"67080-16026 via Conventional from 67082 -> 25717","Type":"Conventional","Directional":true,"Links":[{"SourceID":67082,"TargetID":25717,"Directional":true}]},{"ID":15552,"SourceStructureID":67099,"TargetStructureID":593,"Label":"67099-593 via Conventional from 67100 -> 7716","Type":"Conventional","Directional":true,"Links":[{"SourceID":67100,"TargetID":7716,"Directional":true}]},{"ID":15553,"SourceStructureID":67099,"TargetStructureID":7594,"Label":"67099-7594 via Conventional from 83053 -> 83054","Type":"Conventional","Directional":true,"Links":[{"SourceID":83053,"TargetID":83054,"Directional":true}]},{"ID":15554,"SourceStructureID":67105,"TargetStructureID":67101,"Label":"67105-67101 via Conventional from 67106 -> 67104","Type":"Conventional","Directional":true,"Links":[{"SourceID":67106,"TargetID":67104,"Directional":true}]},{"ID":15555,"SourceStructureID":67117,"TargetStructureID":593,"Label":"67117-593 via Conventional from 67118 -> 66623","Type":"Conventional","Directional":true,"Links":[{"SourceID":67118,"TargetID":66623,"Directional":true}]},{"ID":15556,"SourceStructureID":67121,"TargetStructureID":593,"Label":"67121-593 via Conventional from 67122 -> 66627","Type":"Conventional","Directional":true,"Links":[{"SourceID":67122,"TargetID":66627,"Directional":true}]},{"ID":15557,"SourceStructureID":67123,"TargetStructureID":593,"Label":"67123-593 via Conventional from 67124 -> 66628","Type":"Conventional","Directional":true,"Links":[{"SourceID":67124,"TargetID":66628,"Directional":true}]},{"ID":15558,"SourceStructureID":67130,"TargetStructureID":33092,"Label":"67130-33092 via Conventional from 67134 -> 39979","Type":"Conventional","Directional":true,"Links":[{"SourceID":67134,"TargetID":39979,"Directional":true}]},{"ID":15559,"SourceStructureID":67135,"TargetStructureID":7054,"Label":"67135-7054 via Conventional from 67145 -> 10915","Type":"Conventional","Directional":true,"Links":[{"SourceID":67145,"TargetID":10915,"Directional":true}]},{"ID":15560,"SourceStructureID":67137,"TargetStructureID":5283,"Label":"67137-5283 via Conventional from 67149 -> 132129","Type":"Conventional","Directional":true,"Links":[{"SourceID":67149,"TargetID":132129,"Directional":true}]},{"ID":15561,"SourceStructureID":67143,"TargetStructureID":67135,"Label":"67143-67135 via Conventional from 67144 -> 67142","Type":"Conventional","Directional":true,"Links":[{"SourceID":67144,"TargetID":67142,"Directional":true}]},{"ID":15562,"SourceStructureID":67147,"TargetStructureID":67137,"Label":"67147-67137 via Conventional from 67148 -> 67146","Type":"Conventional","Directional":true,"Links":[{"SourceID":67148,"TargetID":67146,"Directional":true}]},{"ID":15563,"SourceStructureID":67150,"TargetStructureID":593,"Label":"67150-593 via Conventional from 67151 -> 49569, 68330 -> 7761, 90045 -> 90046","Type":"Conventional","Directional":true,"Links":[{"SourceID":67151,"TargetID":49569,"Directional":true},{"SourceID":68330,"TargetID":7761,"Directional":true},{"SourceID":90045,"TargetID":90046,"Directional":true}]},{"ID":15564,"SourceStructureID":67152,"TargetStructureID":593,"Label":"67152-593 via Conventional from 67153 -> 67154","Type":"Conventional","Directional":true,"Links":[{"SourceID":67153,"TargetID":67154,"Directional":true}]},{"ID":15565,"SourceStructureID":67157,"TargetStructureID":593,"Label":"67157-593 via Conventional from 67158 -> 67156","Type":"Conventional","Directional":true,"Links":[{"SourceID":67158,"TargetID":67156,"Directional":true}]},{"ID":15566,"SourceStructureID":67159,"TargetStructureID":593,"Label":"67159-593 via Conventional from 67160 -> 62885","Type":"Conventional","Directional":true,"Links":[{"SourceID":67160,"TargetID":62885,"Directional":true}]},{"ID":15567,"SourceStructureID":67161,"TargetStructureID":67172,"Label":"67161-67172 via Conventional from 67171 -> 67173","Type":"Conventional","Directional":true,"Links":[{"SourceID":67171,"TargetID":67173,"Directional":true}]},{"ID":15568,"SourceStructureID":67161,"TargetStructureID":67175,"Label":"67161-67175 via Conventional from 67174 -> 67176","Type":"Conventional","Directional":true,"Links":[{"SourceID":67174,"TargetID":67176,"Directional":true}]},{"ID":15569,"SourceStructureID":67161,"TargetStructureID":69162,"Label":"67161-69162 via Conventional from 67179 -> 69213","Type":"Conventional","Directional":true,"Links":[{"SourceID":67179,"TargetID":69213,"Directional":true}]},{"ID":15570,"SourceStructureID":67180,"TargetStructureID":593,"Label":"67180-593 via Conventional from 67181 -> 66632","Type":"Conventional","Directional":true,"Links":[{"SourceID":67181,"TargetID":66632,"Directional":true}]},{"ID":15571,"SourceStructureID":67182,"TargetStructureID":142,"Label":"67182-142 via Conventional from 83313 -> 49728, 83317 -> 30684","Type":"Conventional","Directional":true,"Links":[{"SourceID":83313,"TargetID":49728,"Directional":true},{"SourceID":83317,"TargetID":30684,"Directional":true}]},{"ID":15572,"SourceStructureID":67182,"TargetStructureID":168,"Label":"67182-168 via Conventional from 83323 -> 4144","Type":"Conventional","Directional":true,"Links":[{"SourceID":83323,"TargetID":4144,"Directional":true}]},{"ID":15573,"SourceStructureID":67182,"TargetStructureID":593,"Label":"67182-593 via Conventional from 67184 -> 67183","Type":"Conventional","Directional":true,"Links":[{"SourceID":67184,"TargetID":67183,"Directional":true}]},{"ID":15574,"SourceStructureID":67182,"TargetStructureID":5279,"Label":"67182-5279 via Conventional from 82870 -> 97564, 83300 -> 83299, 97648 -> 25817, 98544 -> 49206, 98989 -> 98990","Type":"Conventional","Directional":true,"Links":[{"SourceID":82870,"TargetID":97564,"Directional":true},{"SourceID":83300,"TargetID":83299,"Directional":true},{"SourceID":97648,"TargetID":25817,"Directional":true},{"SourceID":98544,"TargetID":49206,"Directional":true},{"SourceID":98989,"TargetID":98990,"Directional":true}]},{"ID":15575,"SourceStructureID":67182,"TargetStructureID":58816,"Label":"67182-58816 via Conventional from 83301 -> 83304, 83305 -> 83306","Type":"Conventional","Directional":true,"Links":[{"SourceID":83301,"TargetID":83304,"Directional":true},{"SourceID":83305,"TargetID":83306,"Directional":true}]},{"ID":15576,"SourceStructureID":67182,"TargetStructureID":61857,"Label":"67182-61857 via Conventional from 82917 -> 69711","Type":"Conventional","Directional":true,"Links":[{"SourceID":82917,"TargetID":69711,"Directional":true}]},{"ID":15577,"SourceStructureID":67190,"TargetStructureID":593,"Label":"67190-593 via Conventional from 120225 -> 120224","Type":"Conventional","Directional":true,"Links":[{"SourceID":120225,"TargetID":120224,"Directional":true}]},{"ID":15578,"SourceStructureID":67201,"TargetStructureID":593,"Label":"67201-593 via Conventional from 67202 -> 67203","Type":"Conventional","Directional":true,"Links":[{"SourceID":67202,"TargetID":67203,"Directional":true}]},{"ID":15579,"SourceStructureID":67206,"TargetStructureID":593,"Label":"67206-593 via Conventional from 67207 -> 67205, 83237 -> 68625","Type":"Conventional","Directional":true,"Links":[{"SourceID":67207,"TargetID":67205,"Directional":true},{"SourceID":83237,"TargetID":68625,"Directional":true}]},{"ID":15580,"SourceStructureID":67227,"TargetStructureID":593,"Label":"67227-593 via Conventional from 67229 -> 67228","Type":"Conventional","Directional":true,"Links":[{"SourceID":67229,"TargetID":67228,"Directional":true}]},{"ID":15581,"SourceStructureID":67234,"TargetStructureID":593,"Label":"67234-593 via Conventional from 67235 -> 67233","Type":"Conventional","Directional":true,"Links":[{"SourceID":67235,"TargetID":67233,"Directional":true}]},{"ID":15582,"SourceStructureID":67254,"TargetStructureID":593,"Label":"67254-593 via Conventional from 67256 -> 67255","Type":"Conventional","Directional":true,"Links":[{"SourceID":67256,"TargetID":67255,"Directional":true}]},{"ID":15583,"SourceStructureID":67266,"TargetStructureID":593,"Label":"67266-593 via Conventional from 67267 -> 67268","Type":"Conventional","Directional":true,"Links":[{"SourceID":67267,"TargetID":67268,"Directional":true}]},{"ID":15584,"SourceStructureID":67269,"TargetStructureID":593,"Label":"67269-593 via Conventional from 67271 -> 67270","Type":"Conventional","Directional":true,"Links":[{"SourceID":67271,"TargetID":67270,"Directional":true}]},{"ID":15585,"SourceStructureID":67269,"TargetStructureID":69637,"Label":"67269-69637 via Conventional from 69638 -> 69639","Type":"Conventional","Directional":true,"Links":[{"SourceID":69638,"TargetID":69639,"Directional":true}]},{"ID":15586,"SourceStructureID":67274,"TargetStructureID":593,"Label":"67274-593 via Conventional from 67277 -> 67278","Type":"Conventional","Directional":true,"Links":[{"SourceID":67277,"TargetID":67278,"Directional":true}]},{"ID":15587,"SourceStructureID":67284,"TargetStructureID":593,"Label":"67284-593 via Conventional from 86594 -> 86595","Type":"Conventional","Directional":true,"Links":[{"SourceID":86594,"TargetID":86595,"Directional":true}]},{"ID":15588,"SourceStructureID":67284,"TargetStructureID":16026,"Label":"67284-16026 via Conventional from 67288 -> 91154","Type":"Conventional","Directional":true,"Links":[{"SourceID":67288,"TargetID":91154,"Directional":true}]},{"ID":15589,"SourceStructureID":67291,"TargetStructureID":179,"Label":"67291-179 via Conventional from 69839 -> 69840","Type":"Conventional","Directional":true,"Links":[{"SourceID":69839,"TargetID":69840,"Directional":true}]},{"ID":15590,"SourceStructureID":67298,"TargetStructureID":593,"Label":"67298-593 via Conventional from 67299 -> 67300","Type":"Conventional","Directional":true,"Links":[{"SourceID":67299,"TargetID":67300,"Directional":true}]},{"ID":15591,"SourceStructureID":67301,"TargetStructureID":593,"Label":"67301-593 via Conventional from 67302 -> 67303","Type":"Conventional","Directional":true,"Links":[{"SourceID":67302,"TargetID":67303,"Directional":true}]},{"ID":15592,"SourceStructureID":67305,"TargetStructureID":593,"Label":"67305-593 via Conventional from 67306 -> 67304","Type":"Conventional","Directional":true,"Links":[{"SourceID":67306,"TargetID":67304,"Directional":true}]},{"ID":15593,"SourceStructureID":67305,"TargetStructureID":82813,"Label":"67305-82813 via Conventional from 82812 -> 82814","Type":"Conventional","Directional":true,"Links":[{"SourceID":82812,"TargetID":82814,"Directional":true}]},{"ID":15594,"SourceStructureID":67307,"TargetStructureID":67309,"Label":"67307-67309 via Conventional from 67308 -> 67310","Type":"Conventional","Directional":true,"Links":[{"SourceID":67308,"TargetID":67310,"Directional":true}]},{"ID":15595,"SourceStructureID":67322,"TargetStructureID":593,"Label":"67322-593 via Conventional from 67323 -> 7747","Type":"Conventional","Directional":true,"Links":[{"SourceID":67323,"TargetID":7747,"Directional":true}]},{"ID":15596,"SourceStructureID":67328,"TargetStructureID":593,"Label":"67328-593 via Conventional from 67329 -> 67327","Type":"Conventional","Directional":true,"Links":[{"SourceID":67329,"TargetID":67327,"Directional":true}]},{"ID":15597,"SourceStructureID":67328,"TargetStructureID":65355,"Label":"67328-65355 via Conventional from 82801 -> 82802","Type":"Conventional","Directional":true,"Links":[{"SourceID":82801,"TargetID":82802,"Directional":true}]},{"ID":15598,"SourceStructureID":67337,"TargetStructureID":593,"Label":"67337-593 via Conventional from 67338 -> 7755","Type":"Conventional","Directional":true,"Links":[{"SourceID":67338,"TargetID":7755,"Directional":true}]},{"ID":15599,"SourceStructureID":67337,"TargetStructureID":67322,"Label":"67337-67322 via Conventional from 67339 -> 67340","Type":"Conventional","Directional":true,"Links":[{"SourceID":67339,"TargetID":67340,"Directional":true}]},{"ID":15600,"SourceStructureID":67341,"TargetStructureID":24148,"Label":"67341-24148 via Conventional from 67393 -> 24151","Type":"Conventional","Directional":true,"Links":[{"SourceID":67393,"TargetID":24151,"Directional":true}]},{"ID":15601,"SourceStructureID":67343,"TargetStructureID":82806,"Label":"67343-82806 via Conventional from 67348 -> 82807","Type":"Conventional","Directional":true,"Links":[{"SourceID":67348,"TargetID":82807,"Directional":true}]},{"ID":15602,"SourceStructureID":67350,"TargetStructureID":593,"Label":"67350-593 via Conventional from 68317 -> 7762","Type":"Conventional","Directional":true,"Links":[{"SourceID":68317,"TargetID":7762,"Directional":true}]},{"ID":15603,"SourceStructureID":67354,"TargetStructureID":67361,"Label":"67354-67361 via Conventional from 67360 -> 67362","Type":"Conventional","Directional":true,"Links":[{"SourceID":67360,"TargetID":67362,"Directional":true}]},{"ID":15604,"SourceStructureID":67354,"TargetStructureID":91531,"Label":"67354-91531 via Conventional from 91530 -> 91532","Type":"Conventional","Directional":true,"Links":[{"SourceID":91530,"TargetID":91532,"Directional":true}]},{"ID":15605,"SourceStructureID":67354,"TargetStructureID":91533,"Label":"67354-91533 via Conventional from 91529 -> 91534","Type":"Conventional","Directional":true,"Links":[{"SourceID":91529,"TargetID":91534,"Directional":true}]},{"ID":15606,"SourceStructureID":67364,"TargetStructureID":593,"Label":"67364-593 via Conventional from 67365 -> 7746","Type":"Conventional","Directional":true,"Links":[{"SourceID":67365,"TargetID":7746,"Directional":true}]},{"ID":15607,"SourceStructureID":67375,"TargetStructureID":593,"Label":"67375-593 via Conventional from 67376 -> 67377, 84611 -> 84612","Type":"Conventional","Directional":true,"Links":[{"SourceID":67376,"TargetID":67377,"Directional":true},{"SourceID":84611,"TargetID":84612,"Directional":true}]},{"ID":15608,"SourceStructureID":67375,"TargetStructureID":67379,"Label":"67375-67379 via Conventional from 67378 -> 67380","Type":"Conventional","Directional":true,"Links":[{"SourceID":67378,"TargetID":67380,"Directional":true}]},{"ID":15609,"SourceStructureID":67396,"TargetStructureID":24148,"Label":"67396-24148 via Conventional from 67403 -> 24152","Type":"Conventional","Directional":true,"Links":[{"SourceID":67403,"TargetID":24152,"Directional":true}]},{"ID":15610,"SourceStructureID":67396,"TargetStructureID":67341,"Label":"67396-67341 via Conventional from 67397 -> 67392","Type":"Conventional","Directional":true,"Links":[{"SourceID":67397,"TargetID":67392,"Directional":true}]},{"ID":15611,"SourceStructureID":67410,"TargetStructureID":593,"Label":"67410-593 via Conventional from 67411 -> 67409","Type":"Conventional","Directional":true,"Links":[{"SourceID":67411,"TargetID":67409,"Directional":true}]},{"ID":15612,"SourceStructureID":67410,"TargetStructureID":5562,"Label":"67410-5562 via Conventional from 67412 -> 63782, 82782 -> 63857","Type":"Conventional","Directional":true,"Links":[{"SourceID":67412,"TargetID":63782,"Directional":true},{"SourceID":82782,"TargetID":63857,"Directional":true}]},{"ID":15613,"SourceStructureID":67423,"TargetStructureID":593,"Label":"67423-593 via Conventional from 67424 -> 49576","Type":"Conventional","Directional":true,"Links":[{"SourceID":67424,"TargetID":49576,"Directional":true}]},{"ID":15614,"SourceStructureID":67425,"TargetStructureID":67433,"Label":"67425-67433 via Conventional from 67436 -> 67435","Type":"Conventional","Directional":true,"Links":[{"SourceID":67436,"TargetID":67435,"Directional":true}]},{"ID":15615,"SourceStructureID":67438,"TargetStructureID":16026,"Label":"67438-16026 via Conventional from 67439 -> 91046","Type":"Conventional","Directional":true,"Links":[{"SourceID":67439,"TargetID":91046,"Directional":true}]},{"ID":15616,"SourceStructureID":67444,"TargetStructureID":8580,"Label":"67444-8580 via Conventional from 67446 -> 59652","Type":"Conventional","Directional":true,"Links":[{"SourceID":67446,"TargetID":59652,"Directional":true}]},{"ID":15617,"SourceStructureID":67452,"TargetStructureID":593,"Label":"67452-593 via Conventional from 67453 -> 67454","Type":"Conventional","Directional":true,"Links":[{"SourceID":67453,"TargetID":67454,"Directional":true}]},{"ID":15618,"SourceStructureID":67452,"TargetStructureID":67460,"Label":"67452-67460 via Conventional from 69635 -> 69636","Type":"Conventional","Directional":true,"Links":[{"SourceID":69635,"TargetID":69636,"Directional":true}]},{"ID":15619,"SourceStructureID":67460,"TargetStructureID":593,"Label":"67460-593 via Conventional from 67463 -> 67464","Type":"Conventional","Directional":true,"Links":[{"SourceID":67463,"TargetID":67464,"Directional":true}]},{"ID":15620,"SourceStructureID":67469,"TargetStructureID":593,"Label":"67469-593 via Conventional from 67471 -> 67472","Type":"Conventional","Directional":true,"Links":[{"SourceID":67471,"TargetID":67472,"Directional":true}]},{"ID":15621,"SourceStructureID":67469,"TargetStructureID":5562,"Label":"67469-5562 via Conventional from 69677 -> 63733","Type":"Conventional","Directional":true,"Links":[{"SourceID":69677,"TargetID":63733,"Directional":true}]},{"ID":15622,"SourceStructureID":67469,"TargetStructureID":67460,"Label":"67469-67460 via Conventional from 67470 -> 67468","Type":"Conventional","Directional":true,"Links":[{"SourceID":67470,"TargetID":67468,"Directional":true}]},{"ID":15623,"SourceStructureID":67469,"TargetStructureID":69679,"Label":"67469-69679 via Conventional from 69678 -> 69680","Type":"Conventional","Directional":true,"Links":[{"SourceID":69678,"TargetID":69680,"Directional":true}]},{"ID":15624,"SourceStructureID":67469,"TargetStructureID":69684,"Label":"67469-69684 via Conventional from 69683 -> 69685","Type":"Conventional","Directional":true,"Links":[{"SourceID":69683,"TargetID":69685,"Directional":true}]},{"ID":15625,"SourceStructureID":67474,"TargetStructureID":593,"Label":"67474-593 via Conventional from 67477 -> 67475","Type":"Conventional","Directional":true,"Links":[{"SourceID":67477,"TargetID":67475,"Directional":true}]},{"ID":15626,"SourceStructureID":67478,"TargetStructureID":593,"Label":"67478-593 via Conventional from 67479 -> 67480","Type":"Conventional","Directional":true,"Links":[{"SourceID":67479,"TargetID":67480,"Directional":true}]},{"ID":15627,"SourceStructureID":67488,"TargetStructureID":593,"Label":"67488-593 via Conventional from 67489 -> 7813","Type":"Conventional","Directional":true,"Links":[{"SourceID":67489,"TargetID":7813,"Directional":true}]},{"ID":15628,"SourceStructureID":67491,"TargetStructureID":5283,"Label":"67491-5283 via Conventional from 123766 -> 28007","Type":"Conventional","Directional":true,"Links":[{"SourceID":123766,"TargetID":28007,"Directional":true}]},{"ID":15629,"SourceStructureID":67491,"TargetStructureID":67486,"Label":"67491-67486 via Conventional from 67492 -> 67490","Type":"Conventional","Directional":true,"Links":[{"SourceID":67492,"TargetID":67490,"Directional":true}]},{"ID":15630,"SourceStructureID":67500,"TargetStructureID":593,"Label":"67500-593 via Conventional from 67501 -> 7899","Type":"Conventional","Directional":true,"Links":[{"SourceID":67501,"TargetID":7899,"Directional":true}]},{"ID":15631,"SourceStructureID":67506,"TargetStructureID":593,"Label":"67506-593 via Conventional from 67511 -> 67510","Type":"Conventional","Directional":true,"Links":[{"SourceID":67511,"TargetID":67510,"Directional":true}]},{"ID":15632,"SourceStructureID":67508,"TargetStructureID":593,"Label":"67508-593 via Conventional from 88145 -> 7814","Type":"Conventional","Directional":true,"Links":[{"SourceID":88145,"TargetID":7814,"Directional":true}]},{"ID":15633,"SourceStructureID":67508,"TargetStructureID":8588,"Label":"67508-8588 via Conventional from 68899 -> 32715","Type":"Conventional","Directional":true,"Links":[{"SourceID":68899,"TargetID":32715,"Directional":true}]},{"ID":15634,"SourceStructureID":67508,"TargetStructureID":67522,"Label":"67508-67522 via Conventional from 67524 -> 67525","Type":"Conventional","Directional":true,"Links":[{"SourceID":67524,"TargetID":67525,"Directional":true}]},{"ID":15635,"SourceStructureID":67517,"TargetStructureID":61836,"Label":"67517-61836 via Conventional from 67518 -> 67516","Type":"Conventional","Directional":true,"Links":[{"SourceID":67518,"TargetID":67516,"Directional":true}]},{"ID":15636,"SourceStructureID":67520,"TargetStructureID":61923,"Label":"67520-61923 via Conventional from 68325 -> 61925","Type":"Conventional","Directional":true,"Links":[{"SourceID":68325,"TargetID":61925,"Directional":true}]},{"ID":15637,"SourceStructureID":67520,"TargetStructureID":67508,"Label":"67520-67508 via Conventional from 67521 -> 67519","Type":"Conventional","Directional":true,"Links":[{"SourceID":67521,"TargetID":67519,"Directional":true}]},{"ID":15638,"SourceStructureID":67526,"TargetStructureID":61836,"Label":"67526-61836 via Conventional from 67527 -> 67523","Type":"Conventional","Directional":true,"Links":[{"SourceID":67527,"TargetID":67523,"Directional":true}]},{"ID":15639,"SourceStructureID":67529,"TargetStructureID":593,"Label":"67529-593 via Conventional from 69357 -> 69359","Type":"Conventional","Directional":true,"Links":[{"SourceID":69357,"TargetID":69359,"Directional":true}]},{"ID":15640,"SourceStructureID":67529,"TargetStructureID":67508,"Label":"67529-67508 via Conventional from 67530 -> 67528","Type":"Conventional","Directional":true,"Links":[{"SourceID":67530,"TargetID":67528,"Directional":true}]},{"ID":15641,"SourceStructureID":67531,"TargetStructureID":593,"Label":"67531-593 via Conventional from 67535 -> 7826","Type":"Conventional","Directional":true,"Links":[{"SourceID":67535,"TargetID":7826,"Directional":true}]},{"ID":15642,"SourceStructureID":67548,"TargetStructureID":31161,"Label":"67548-31161 via Conventional from 67550 -> 31247","Type":"Conventional","Directional":true,"Links":[{"SourceID":67550,"TargetID":31247,"Directional":true}]},{"ID":15643,"SourceStructureID":67557,"TargetStructureID":593,"Label":"67557-593 via Conventional from 67558 -> 7824","Type":"Conventional","Directional":true,"Links":[{"SourceID":67558,"TargetID":7824,"Directional":true}]},{"ID":15644,"SourceStructureID":67572,"TargetStructureID":66768,"Label":"67572-66768 via Conventional from 67573 -> 67571","Type":"Conventional","Directional":true,"Links":[{"SourceID":67573,"TargetID":67571,"Directional":true}]},{"ID":15645,"SourceStructureID":67575,"TargetStructureID":593,"Label":"67575-593 via Conventional from 67583 -> 67584","Type":"Conventional","Directional":true,"Links":[{"SourceID":67583,"TargetID":67584,"Directional":true}]},{"ID":15646,"SourceStructureID":67575,"TargetStructureID":1724,"Label":"67575-1724 via Conventional from 68980 -> 4112","Type":"Conventional","Directional":true,"Links":[{"SourceID":68980,"TargetID":4112,"Directional":true}]},{"ID":15647,"SourceStructureID":67575,"TargetStructureID":5279,"Label":"67575-5279 via Conventional from 108361 -> 99111","Type":"Conventional","Directional":true,"Links":[{"SourceID":108361,"TargetID":99111,"Directional":true}]},{"ID":15648,"SourceStructureID":67575,"TargetStructureID":5513,"Label":"67575-5513 via Conventional from 68976 -> 46786","Type":"Conventional","Directional":true,"Links":[{"SourceID":68976,"TargetID":46786,"Directional":true}]},{"ID":15649,"SourceStructureID":67575,"TargetStructureID":67580,"Label":"67575-67580 via Conventional from 67579 -> 67581","Type":"Conventional","Directional":true,"Links":[{"SourceID":67579,"TargetID":67581,"Directional":true}]},{"ID":15650,"SourceStructureID":67575,"TargetStructureID":68974,"Label":"67575-68974 via Conventional from 68973 -> 68975","Type":"Conventional","Directional":true,"Links":[{"SourceID":68973,"TargetID":68975,"Directional":true}]},{"ID":15651,"SourceStructureID":67585,"TargetStructureID":593,"Label":"67585-593 via Conventional from 67593 -> 67594, 67597 -> 67598","Type":"Conventional","Directional":true,"Links":[{"SourceID":67593,"TargetID":67594,"Directional":true},{"SourceID":67597,"TargetID":67598,"Directional":true}]},{"ID":15652,"SourceStructureID":67585,"TargetStructureID":7024,"Label":"67585-7024 via Conventional from 67613 -> 67612","Type":"Conventional","Directional":true,"Links":[{"SourceID":67613,"TargetID":67612,"Directional":true}]},{"ID":15653,"SourceStructureID":67585,"TargetStructureID":67190,"Label":"67585-67190 via Conventional from 67602 -> 67192, 67625 -> 67194","Type":"Conventional","Directional":true,"Links":[{"SourceID":67602,"TargetID":67192,"Directional":true},{"SourceID":67625,"TargetID":67194,"Directional":true}]},{"ID":15654,"SourceStructureID":67585,"TargetStructureID":67606,"Label":"67585-67606 via Conventional from 67605 -> 67607","Type":"Conventional","Directional":true,"Links":[{"SourceID":67605,"TargetID":67607,"Directional":true}]},{"ID":15655,"SourceStructureID":67585,"TargetStructureID":67610,"Label":"67585-67610 via Conventional from 67609 -> 67611","Type":"Conventional","Directional":true,"Links":[{"SourceID":67609,"TargetID":67611,"Directional":true}]},{"ID":15656,"SourceStructureID":67585,"TargetStructureID":67615,"Label":"67585-67615 via Conventional from 67614 -> 67616","Type":"Conventional","Directional":true,"Links":[{"SourceID":67614,"TargetID":67616,"Directional":true}]},{"ID":15657,"SourceStructureID":67589,"TargetStructureID":67585,"Label":"67589-67585 via Conventional from 67590 -> 67588","Type":"Conventional","Directional":true,"Links":[{"SourceID":67590,"TargetID":67588,"Directional":true}]},{"ID":15658,"SourceStructureID":67591,"TargetStructureID":593,"Label":"67591-593 via Conventional from 67592 -> 7827","Type":"Conventional","Directional":true,"Links":[{"SourceID":67592,"TargetID":7827,"Directional":true}]},{"ID":15659,"SourceStructureID":67595,"TargetStructureID":593,"Label":"67595-593 via Conventional from 67596 -> 28445","Type":"Conventional","Directional":true,"Links":[{"SourceID":67596,"TargetID":28445,"Directional":true}]},{"ID":15660,"SourceStructureID":67595,"TargetStructureID":16026,"Label":"67595-16026 via Conventional from 67632 -> 67633","Type":"Conventional","Directional":true,"Links":[{"SourceID":67632,"TargetID":67633,"Directional":true}]},{"ID":15661,"SourceStructureID":67600,"TargetStructureID":67585,"Label":"67600-67585 via Conventional from 67601 -> 67599","Type":"Conventional","Directional":true,"Links":[{"SourceID":67601,"TargetID":67599,"Directional":true}]},{"ID":15662,"SourceStructureID":67610,"TargetStructureID":7594,"Label":"67610-7594 via Conventional from 67620 -> 25109","Type":"Conventional","Directional":true,"Links":[{"SourceID":67620,"TargetID":25109,"Directional":true}]},{"ID":15663,"SourceStructureID":67618,"TargetStructureID":67585,"Label":"67618-67585 via Conventional from 67619 -> 67617","Type":"Conventional","Directional":true,"Links":[{"SourceID":67619,"TargetID":67617,"Directional":true}]},{"ID":15664,"SourceStructureID":67621,"TargetStructureID":67585,"Label":"67621-67585 via Conventional from 67622 -> 67623","Type":"Conventional","Directional":true,"Links":[{"SourceID":67622,"TargetID":67623,"Directional":true}]},{"ID":15665,"SourceStructureID":67626,"TargetStructureID":593,"Label":"67626-593 via Conventional from 67627 -> 28446","Type":"Conventional","Directional":true,"Links":[{"SourceID":67627,"TargetID":28446,"Directional":true}]},{"ID":15666,"SourceStructureID":67644,"TargetStructureID":67595,"Label":"67644-67595 via Conventional from 67645 -> 67643","Type":"Conventional","Directional":true,"Links":[{"SourceID":67645,"TargetID":67643,"Directional":true}]},{"ID":15667,"SourceStructureID":67652,"TargetStructureID":67595,"Label":"67652-67595 via Conventional from 67653 -> 67651","Type":"Conventional","Directional":true,"Links":[{"SourceID":67653,"TargetID":67651,"Directional":true}]},{"ID":15668,"SourceStructureID":67654,"TargetStructureID":67595,"Label":"67654-67595 via Conventional from 67655 -> 67656","Type":"Conventional","Directional":true,"Links":[{"SourceID":67655,"TargetID":67656,"Directional":true}]},{"ID":15669,"SourceStructureID":67669,"TargetStructureID":67663,"Label":"67669-67663 via Conventional from 67670 -> 67668","Type":"Conventional","Directional":true,"Links":[{"SourceID":67670,"TargetID":67668,"Directional":true}]},{"ID":15670,"SourceStructureID":67671,"TargetStructureID":5645,"Label":"67671-5645 via Conventional from 78069 -> 78070","Type":"Conventional","Directional":true,"Links":[{"SourceID":78069,"TargetID":78070,"Directional":true}]},{"ID":15671,"SourceStructureID":67671,"TargetStructureID":5649,"Label":"67671-5649 via Conventional from 76882 -> 76883, 77384 -> 54036","Type":"Conventional","Directional":true,"Links":[{"SourceID":76882,"TargetID":76883,"Directional":true},{"SourceID":77384,"TargetID":54036,"Directional":true}]},{"ID":15672,"SourceStructureID":67671,"TargetStructureID":6142,"Label":"67671-6142 via Conventional from 78281 -> 78282","Type":"Conventional","Directional":true,"Links":[{"SourceID":78281,"TargetID":78282,"Directional":true}]},{"ID":15673,"SourceStructureID":67671,"TargetStructureID":16087,"Label":"67671-16087 via Conventional from 77702 -> 16097, 78037 -> 16100","Type":"Conventional","Directional":true,"Links":[{"SourceID":77702,"TargetID":16097,"Directional":true},{"SourceID":78037,"TargetID":16100,"Directional":true}]},{"ID":15674,"SourceStructureID":67671,"TargetStructureID":67663,"Label":"67671-67663 via Conventional from 67672 -> 67673","Type":"Conventional","Directional":true,"Links":[{"SourceID":67672,"TargetID":67673,"Directional":true}]},{"ID":15675,"SourceStructureID":67671,"TargetStructureID":67671,"Label":"67671-67671 via Conventional from 78209 -> 78210","Type":"Conventional","Directional":true,"Links":[{"SourceID":78209,"TargetID":78210,"Directional":true}]},{"ID":15676,"SourceStructureID":67671,"TargetStructureID":77359,"Label":"67671-77359 via Conventional from 77360 -> 77361","Type":"Conventional","Directional":true,"Links":[{"SourceID":77360,"TargetID":77361,"Directional":true}]},{"ID":15677,"SourceStructureID":67671,"TargetStructureID":77688,"Label":"67671-77688 via Conventional from 77689 -> 77690","Type":"Conventional","Directional":true,"Links":[{"SourceID":77689,"TargetID":77690,"Directional":true}]},{"ID":15678,"SourceStructureID":67671,"TargetStructureID":78083,"Label":"67671-78083 via Conventional from 78082 -> 78085","Type":"Conventional","Directional":true,"Links":[{"SourceID":78082,"TargetID":78085,"Directional":true}]},{"ID":15679,"SourceStructureID":67671,"TargetStructureID":78214,"Label":"67671-78214 via Conventional from 78215 -> 78216","Type":"Conventional","Directional":true,"Links":[{"SourceID":78215,"TargetID":78216,"Directional":true}]},{"ID":15680,"SourceStructureID":67683,"TargetStructureID":593,"Label":"67683-593 via Conventional from 69384 -> 7734","Type":"Conventional","Directional":true,"Links":[{"SourceID":69384,"TargetID":7734,"Directional":true}]},{"ID":15681,"SourceStructureID":67683,"TargetStructureID":31161,"Label":"67683-31161 via Conventional from 67688 -> 31237","Type":"Conventional","Directional":true,"Links":[{"SourceID":67688,"TargetID":31237,"Directional":true}]},{"ID":15682,"SourceStructureID":67683,"TargetStructureID":67686,"Label":"67683-67686 via Conventional from 67685 -> 67687","Type":"Conventional","Directional":true,"Links":[{"SourceID":67685,"TargetID":67687,"Directional":true}]},{"ID":15683,"SourceStructureID":67701,"TargetStructureID":67705,"Label":"67701-67705 via Conventional from 67704 -> 67706, 75717 -> 75718","Type":"Conventional","Directional":true,"Links":[{"SourceID":67704,"TargetID":67706,"Directional":true},{"SourceID":75717,"TargetID":75718,"Directional":true}]},{"ID":15684,"SourceStructureID":67705,"TargetStructureID":593,"Label":"67705-593 via Conventional from 67707 -> 67708","Type":"Conventional","Directional":true,"Links":[{"SourceID":67707,"TargetID":67708,"Directional":true}]},{"ID":15685,"SourceStructureID":67705,"TargetStructureID":5562,"Label":"67705-5562 via Conventional from 81793 -> 63253, 81798 -> 77544","Type":"Conventional","Directional":true,"Links":[{"SourceID":81793,"TargetID":63253,"Directional":true},{"SourceID":81798,"TargetID":77544,"Directional":true}]},{"ID":15686,"SourceStructureID":67711,"TargetStructureID":593,"Label":"67711-593 via Conventional from 67712 -> 67713","Type":"Conventional","Directional":true,"Links":[{"SourceID":67712,"TargetID":67713,"Directional":true}]},{"ID":15687,"SourceStructureID":67711,"TargetStructureID":67715,"Label":"67711-67715 via Conventional from 67714 -> 67716","Type":"Conventional","Directional":true,"Links":[{"SourceID":67714,"TargetID":67716,"Directional":true}]},{"ID":15688,"SourceStructureID":67720,"TargetStructureID":67711,"Label":"67720-67711 via Conventional from 67721 -> 67719","Type":"Conventional","Directional":true,"Links":[{"SourceID":67721,"TargetID":67719,"Directional":true}]},{"ID":15689,"SourceStructureID":67736,"TargetStructureID":8580,"Label":"67736-8580 via Conventional from 67741 -> 67742","Type":"Conventional","Directional":true,"Links":[{"SourceID":67741,"TargetID":67742,"Directional":true}]},{"ID":15690,"SourceStructureID":67736,"TargetStructureID":66958,"Label":"67736-66958 via Conventional from 67748 -> 70033","Type":"Conventional","Directional":true,"Links":[{"SourceID":67748,"TargetID":70033,"Directional":true}]},{"ID":15691,"SourceStructureID":67736,"TargetStructureID":67752,"Label":"67736-67752 via Conventional from 67751 -> 67753","Type":"Conventional","Directional":true,"Links":[{"SourceID":67751,"TargetID":67753,"Directional":true}]},{"ID":15692,"SourceStructureID":67736,"TargetStructureID":68202,"Label":"67736-68202 via Conventional from 67748 -> 68204","Type":"Conventional","Directional":true,"Links":[{"SourceID":67748,"TargetID":68204,"Directional":true}]},{"ID":15693,"SourceStructureID":67756,"TargetStructureID":593,"Label":"67756-593 via Conventional from 67964 -> 7737","Type":"Conventional","Directional":true,"Links":[{"SourceID":67964,"TargetID":7737,"Directional":true}]},{"ID":15694,"SourceStructureID":67756,"TargetStructureID":66958,"Label":"67756-66958 via Conventional from 67757 -> 70024","Type":"Conventional","Directional":true,"Links":[{"SourceID":67757,"TargetID":70024,"Directional":true}]},{"ID":15695,"SourceStructureID":67762,"TargetStructureID":66958,"Label":"67762-66958 via Conventional from 67763 -> 70030","Type":"Conventional","Directional":true,"Links":[{"SourceID":67763,"TargetID":70030,"Directional":true}]},{"ID":15696,"SourceStructureID":67762,"TargetStructureID":67671,"Label":"67762-67671 via Conventional from 67773 -> 78878","Type":"Conventional","Directional":true,"Links":[{"SourceID":67773,"TargetID":78878,"Directional":true}]},{"ID":15697,"SourceStructureID":67762,"TargetStructureID":67765,"Label":"67762-67765 via Conventional from 67764 -> 67766","Type":"Conventional","Directional":true,"Links":[{"SourceID":67764,"TargetID":67766,"Directional":true}]},{"ID":15698,"SourceStructureID":67768,"TargetStructureID":67765,"Label":"67768-67765 via Conventional from 67769 -> 67767","Type":"Conventional","Directional":true,"Links":[{"SourceID":67769,"TargetID":67767,"Directional":true}]},{"ID":15699,"SourceStructureID":67784,"TargetStructureID":67789,"Label":"67784-67789 via Conventional from 67790 -> 67791","Type":"Conventional","Directional":true,"Links":[{"SourceID":67790,"TargetID":67791,"Directional":true}]},{"ID":15700,"SourceStructureID":67786,"TargetStructureID":67784,"Label":"67786-67784 via Conventional from 67787 -> 67788","Type":"Conventional","Directional":true,"Links":[{"SourceID":67787,"TargetID":67788,"Directional":true}]},{"ID":15701,"SourceStructureID":67806,"TargetStructureID":54078,"Label":"67806-54078 via Conventional from 67807 -> 67808","Type":"Conventional","Directional":true,"Links":[{"SourceID":67807,"TargetID":67808,"Directional":true}]},{"ID":15702,"SourceStructureID":67809,"TargetStructureID":593,"Label":"67809-593 via Conventional from 67810 -> 7833","Type":"Conventional","Directional":true,"Links":[{"SourceID":67810,"TargetID":7833,"Directional":true}]},{"ID":15703,"SourceStructureID":67815,"TargetStructureID":593,"Label":"67815-593 via Conventional from 67816 -> 7834","Type":"Conventional","Directional":true,"Links":[{"SourceID":67816,"TargetID":7834,"Directional":true}]},{"ID":15704,"SourceStructureID":67818,"TargetStructureID":593,"Label":"67818-593 via Conventional from 67819 -> 67817","Type":"Conventional","Directional":true,"Links":[{"SourceID":67819,"TargetID":67817,"Directional":true}]},{"ID":15705,"SourceStructureID":67818,"TargetStructureID":16026,"Label":"67818-16026 via Conventional from 67909 -> 67910","Type":"Conventional","Directional":true,"Links":[{"SourceID":67909,"TargetID":67910,"Directional":true}]},{"ID":15706,"SourceStructureID":67823,"TargetStructureID":593,"Label":"67823-593 via Conventional from 67824 -> 28409","Type":"Conventional","Directional":true,"Links":[{"SourceID":67824,"TargetID":28409,"Directional":true}]},{"ID":15707,"SourceStructureID":67827,"TargetStructureID":593,"Label":"67827-593 via Conventional from 67828 -> 28410","Type":"Conventional","Directional":true,"Links":[{"SourceID":67828,"TargetID":28410,"Directional":true}]},{"ID":15708,"SourceStructureID":67829,"TargetStructureID":593,"Label":"67829-593 via Conventional from 67830 -> 62881","Type":"Conventional","Directional":true,"Links":[{"SourceID":67830,"TargetID":62881,"Directional":true}]},{"ID":15709,"SourceStructureID":67829,"TargetStructureID":67812,"Label":"67829-67812 via Conventional from 67831 -> 67832","Type":"Conventional","Directional":true,"Links":[{"SourceID":67831,"TargetID":67832,"Directional":true}]},{"ID":15710,"SourceStructureID":67829,"TargetStructureID":82201,"Label":"67829-82201 via Conventional from 82200 -> 82202","Type":"Conventional","Directional":true,"Links":[{"SourceID":82200,"TargetID":82202,"Directional":true}]},{"ID":15711,"SourceStructureID":67833,"TargetStructureID":593,"Label":"67833-593 via Conventional from 67834 -> 28412","Type":"Conventional","Directional":true,"Links":[{"SourceID":67834,"TargetID":28412,"Directional":true}]},{"ID":15712,"SourceStructureID":67833,"TargetStructureID":68009,"Label":"67833-68009 via Conventional from 67838 -> 68012","Type":"Conventional","Directional":true,"Links":[{"SourceID":67838,"TargetID":68012,"Directional":true}]},{"ID":15713,"SourceStructureID":67836,"TargetStructureID":67833,"Label":"67836-67833 via Conventional from 67837 -> 67835","Type":"Conventional","Directional":true,"Links":[{"SourceID":67837,"TargetID":67835,"Directional":true}]},{"ID":15714,"SourceStructureID":67846,"TargetStructureID":593,"Label":"67846-593 via Conventional from 67847 -> 67845","Type":"Conventional","Directional":true,"Links":[{"SourceID":67847,"TargetID":67845,"Directional":true}]},{"ID":15715,"SourceStructureID":67851,"TargetStructureID":8580,"Label":"67851-8580 via Conventional from 67855 -> 59656","Type":"Conventional","Directional":true,"Links":[{"SourceID":67855,"TargetID":59656,"Directional":true}]},{"ID":15716,"SourceStructureID":67851,"TargetStructureID":54078,"Label":"67851-54078 via Conventional from 67852 -> 67850","Type":"Conventional","Directional":true,"Links":[{"SourceID":67852,"TargetID":67850,"Directional":true}]},{"ID":15717,"SourceStructureID":67854,"TargetStructureID":593,"Label":"67854-593 via Conventional from 67856 -> 52489","Type":"Conventional","Directional":true,"Links":[{"SourceID":67856,"TargetID":52489,"Directional":true}]},{"ID":15718,"SourceStructureID":67868,"TargetStructureID":593,"Label":"67868-593 via Conventional from 67869 -> 67870","Type":"Conventional","Directional":true,"Links":[{"SourceID":67869,"TargetID":67870,"Directional":true}]},{"ID":15719,"SourceStructureID":67871,"TargetStructureID":593,"Label":"67871-593 via Conventional from 67882 -> 7837","Type":"Conventional","Directional":true,"Links":[{"SourceID":67882,"TargetID":7837,"Directional":true}]},{"ID":15720,"SourceStructureID":67883,"TargetStructureID":593,"Label":"67883-593 via Conventional from 67884 -> 67885","Type":"Conventional","Directional":true,"Links":[{"SourceID":67884,"TargetID":67885,"Directional":true}]},{"ID":15721,"SourceStructureID":67886,"TargetStructureID":593,"Label":"67886-593 via Conventional from 67889 -> 7839","Type":"Conventional","Directional":true,"Links":[{"SourceID":67889,"TargetID":7839,"Directional":true}]},{"ID":15722,"SourceStructureID":67890,"TargetStructureID":593,"Label":"67890-593 via Conventional from 67891 -> 7841","Type":"Conventional","Directional":true,"Links":[{"SourceID":67891,"TargetID":7841,"Directional":true}]},{"ID":15723,"SourceStructureID":67894,"TargetStructureID":593,"Label":"67894-593 via Conventional from 67895 -> 67896","Type":"Conventional","Directional":true,"Links":[{"SourceID":67895,"TargetID":67896,"Directional":true}]},{"ID":15724,"SourceStructureID":67894,"TargetStructureID":5649,"Label":"67894-5649 via Conventional from 82236 -> 68110","Type":"Conventional","Directional":true,"Links":[{"SourceID":82236,"TargetID":68110,"Directional":true}]},{"ID":15725,"SourceStructureID":67915,"TargetStructureID":593,"Label":"67915-593 via Conventional from 67928 -> 67929","Type":"Conventional","Directional":true,"Links":[{"SourceID":67928,"TargetID":67929,"Directional":true}]},{"ID":15726,"SourceStructureID":67915,"TargetStructureID":67932,"Label":"67915-67932 via Conventional from 67930 -> 67935","Type":"Conventional","Directional":true,"Links":[{"SourceID":67930,"TargetID":67935,"Directional":true}]},{"ID":15727,"SourceStructureID":67915,"TargetStructureID":82241,"Label":"67915-82241 via Conventional from 82240 -> 82242","Type":"Conventional","Directional":true,"Links":[{"SourceID":82240,"TargetID":82242,"Directional":true}]},{"ID":15728,"SourceStructureID":67918,"TargetStructureID":20136,"Label":"67918-20136 via Conventional from 67949 -> 29143","Type":"Conventional","Directional":true,"Links":[{"SourceID":67949,"TargetID":29143,"Directional":true}]},{"ID":15729,"SourceStructureID":67933,"TargetStructureID":67937,"Label":"67933-67937 via Conventional from 67936 -> 67938","Type":"Conventional","Directional":true,"Links":[{"SourceID":67936,"TargetID":67938,"Directional":true}]},{"ID":15730,"SourceStructureID":67947,"TargetStructureID":593,"Label":"67947-593 via Conventional from 68086 -> 53821","Type":"Conventional","Directional":true,"Links":[{"SourceID":68086,"TargetID":53821,"Directional":true}]},{"ID":15731,"SourceStructureID":67947,"TargetStructureID":16026,"Label":"67947-16026 via Conventional from 68088 -> 25670","Type":"Conventional","Directional":true,"Links":[{"SourceID":68088,"TargetID":25670,"Directional":true}]},{"ID":15732,"SourceStructureID":67952,"TargetStructureID":593,"Label":"67952-593 via Conventional from 67954 -> 7739","Type":"Conventional","Directional":true,"Links":[{"SourceID":67954,"TargetID":7739,"Directional":true}]},{"ID":15733,"SourceStructureID":67970,"TargetStructureID":593,"Label":"67970-593 via Conventional from 67971 -> 67972","Type":"Conventional","Directional":true,"Links":[{"SourceID":67971,"TargetID":67972,"Directional":true}]},{"ID":15734,"SourceStructureID":67978,"TargetStructureID":593,"Label":"67978-593 via Conventional from 67979 -> 67980","Type":"Conventional","Directional":true,"Links":[{"SourceID":67979,"TargetID":67980,"Directional":true}]},{"ID":15735,"SourceStructureID":67983,"TargetStructureID":593,"Label":"67983-593 via Conventional from 67984 -> 67985","Type":"Conventional","Directional":true,"Links":[{"SourceID":67984,"TargetID":67985,"Directional":true}]},{"ID":15736,"SourceStructureID":67983,"TargetStructureID":67981,"Label":"67983-67981 via Conventional from 67988 -> 67989","Type":"Conventional","Directional":true,"Links":[{"SourceID":67988,"TargetID":67989,"Directional":true}]},{"ID":15737,"SourceStructureID":67996,"TargetStructureID":67999,"Label":"67996-67999 via Conventional from 67998 -> 68000","Type":"Conventional","Directional":true,"Links":[{"SourceID":67998,"TargetID":68000,"Directional":true}]},{"ID":15738,"SourceStructureID":67999,"TargetStructureID":87972,"Label":"67999-87972 via Conventional from 68001 -> 88010","Type":"Conventional","Directional":true,"Links":[{"SourceID":68001,"TargetID":88010,"Directional":true}]},{"ID":15739,"SourceStructureID":68003,"TargetStructureID":593,"Label":"68003-593 via Conventional from 68004 -> 52486","Type":"Conventional","Directional":true,"Links":[{"SourceID":68004,"TargetID":52486,"Directional":true}]},{"ID":15740,"SourceStructureID":68003,"TargetStructureID":67829,"Label":"68003-67829 via Conventional from 68005 -> 82199","Type":"Conventional","Directional":true,"Links":[{"SourceID":68005,"TargetID":82199,"Directional":true}]},{"ID":15741,"SourceStructureID":68009,"TargetStructureID":593,"Label":"68009-593 via Conventional from 68013 -> 52485","Type":"Conventional","Directional":true,"Links":[{"SourceID":68013,"TargetID":52485,"Directional":true}]},{"ID":15742,"SourceStructureID":68009,"TargetStructureID":69003,"Label":"68009-69003 via Conventional from 69004 -> 69005","Type":"Conventional","Directional":true,"Links":[{"SourceID":69004,"TargetID":69005,"Directional":true}]},{"ID":15743,"SourceStructureID":68020,"TargetStructureID":593,"Label":"68020-593 via Conventional from 68021 -> 68022","Type":"Conventional","Directional":true,"Links":[{"SourceID":68021,"TargetID":68022,"Directional":true}]},{"ID":15744,"SourceStructureID":68023,"TargetStructureID":593,"Label":"68023-593 via Conventional from 68024 -> 68025","Type":"Conventional","Directional":true,"Links":[{"SourceID":68024,"TargetID":68025,"Directional":true}]},{"ID":15745,"SourceStructureID":68023,"TargetStructureID":68031,"Label":"68023-68031 via Conventional from 68034 -> 68035","Type":"Conventional","Directional":true,"Links":[{"SourceID":68034,"TargetID":68035,"Directional":true}]},{"ID":15746,"SourceStructureID":68031,"TargetStructureID":68037,"Label":"68031-68037 via Conventional from 68036 -> 68038","Type":"Conventional","Directional":true,"Links":[{"SourceID":68036,"TargetID":68038,"Directional":true}]},{"ID":15747,"SourceStructureID":68042,"TargetStructureID":6156,"Label":"68042-6156 via Conventional from 68052 -> 68053","Type":"Conventional","Directional":true,"Links":[{"SourceID":68052,"TargetID":68053,"Directional":true}]},{"ID":15748,"SourceStructureID":68042,"TargetStructureID":10897,"Label":"68042-10897 via Conventional from 68044 -> 68045, 68046 -> 68047","Type":"Conventional","Directional":true,"Links":[{"SourceID":68044,"TargetID":68045,"Directional":true},{"SourceID":68046,"TargetID":68047,"Directional":true}]},{"ID":15749,"SourceStructureID":68056,"TargetStructureID":593,"Label":"68056-593 via Conventional from 68057 -> 68058","Type":"Conventional","Directional":true,"Links":[{"SourceID":68057,"TargetID":68058,"Directional":true}]},{"ID":15750,"SourceStructureID":68068,"TargetStructureID":593,"Label":"68068-593 via Conventional from 68069 -> 68070","Type":"Conventional","Directional":true,"Links":[{"SourceID":68069,"TargetID":68070,"Directional":true}]},{"ID":15751,"SourceStructureID":68072,"TargetStructureID":593,"Label":"68072-593 via Conventional from 68076 -> 52480","Type":"Conventional","Directional":true,"Links":[{"SourceID":68076,"TargetID":52480,"Directional":true}]},{"ID":15752,"SourceStructureID":68093,"TargetStructureID":5284,"Label":"68093-5284 via Conventional from 68129 -> 68131","Type":"Conventional","Directional":true,"Links":[{"SourceID":68129,"TargetID":68131,"Directional":true}]},{"ID":15753,"SourceStructureID":68096,"TargetStructureID":68093,"Label":"68096-68093 via Conventional from 68097 -> 68095","Type":"Conventional","Directional":true,"Links":[{"SourceID":68097,"TargetID":68095,"Directional":true}]},{"ID":15754,"SourceStructureID":68144,"TargetStructureID":593,"Label":"68144-593 via Conventional from 68145 -> 68146","Type":"Conventional","Directional":true,"Links":[{"SourceID":68145,"TargetID":68146,"Directional":true}]},{"ID":15755,"SourceStructureID":68144,"TargetStructureID":68148,"Label":"68144-68148 via Conventional from 68147 -> 68149","Type":"Conventional","Directional":true,"Links":[{"SourceID":68147,"TargetID":68149,"Directional":true}]},{"ID":15756,"SourceStructureID":68161,"TargetStructureID":68153,"Label":"68161-68153 via Conventional from 68165 -> 68166","Type":"Conventional","Directional":true,"Links":[{"SourceID":68165,"TargetID":68166,"Directional":true}]},{"ID":15757,"SourceStructureID":68183,"TargetStructureID":68153,"Label":"68183-68153 via Conventional from 68184 -> 68182","Type":"Conventional","Directional":true,"Links":[{"SourceID":68184,"TargetID":68182,"Directional":true}]},{"ID":15758,"SourceStructureID":68188,"TargetStructureID":68192,"Label":"68188-68192 via Conventional from 68191 -> 68193","Type":"Conventional","Directional":true,"Links":[{"SourceID":68191,"TargetID":68193,"Directional":true}]},{"ID":15759,"SourceStructureID":68195,"TargetStructureID":68188,"Label":"68195-68188 via Conventional from 68196 -> 68194","Type":"Conventional","Directional":true,"Links":[{"SourceID":68196,"TargetID":68194,"Directional":true}]},{"ID":15760,"SourceStructureID":68202,"TargetStructureID":593,"Label":"68202-593 via Conventional from 68203 -> 53819","Type":"Conventional","Directional":true,"Links":[{"SourceID":68203,"TargetID":53819,"Directional":true}]},{"ID":15761,"SourceStructureID":68210,"TargetStructureID":593,"Label":"68210-593 via Conventional from 68211 -> 68212, 68216 -> 7765","Type":"Conventional","Directional":true,"Links":[{"SourceID":68211,"TargetID":68212,"Directional":true},{"SourceID":68216,"TargetID":7765,"Directional":true}]},{"ID":15762,"SourceStructureID":68214,"TargetStructureID":68210,"Label":"68214-68210 via Adherens from 68215 -> 68213","Type":"Adherens","Directional":true,"Links":[{"SourceID":68215,"TargetID":68213,"Directional":true}]},{"ID":15763,"SourceStructureID":68232,"TargetStructureID":593,"Label":"68232-593 via Conventional from 68233 -> 68234","Type":"Conventional","Directional":true,"Links":[{"SourceID":68233,"TargetID":68234,"Directional":true}]},{"ID":15764,"SourceStructureID":68232,"TargetStructureID":6156,"Label":"68232-6156 via Conventional from 82304 -> 28687","Type":"Conventional","Directional":true,"Links":[{"SourceID":82304,"TargetID":28687,"Directional":true}]},{"ID":15765,"SourceStructureID":68232,"TargetStructureID":68087,"Label":"68232-68087 via Conventional from 68235 -> 68229","Type":"Conventional","Directional":true,"Links":[{"SourceID":68235,"TargetID":68229,"Directional":true}]},{"ID":15766,"SourceStructureID":68232,"TargetStructureID":68655,"Label":"68232-68655 via Conventional from 68654 -> 68656","Type":"Conventional","Directional":true,"Links":[{"SourceID":68654,"TargetID":68656,"Directional":true}]},{"ID":15767,"SourceStructureID":68232,"TargetStructureID":82302,"Label":"68232-82302 via Conventional from 82301 -> 82303","Type":"Conventional","Directional":true,"Links":[{"SourceID":82301,"TargetID":82303,"Directional":true}]},{"ID":15768,"SourceStructureID":68238,"TargetStructureID":593,"Label":"68238-593 via Conventional from 68240 -> 52468","Type":"Conventional","Directional":true,"Links":[{"SourceID":68240,"TargetID":52468,"Directional":true}]},{"ID":15769,"SourceStructureID":68239,"TargetStructureID":5117,"Label":"68239-5117 via Conventional from 68247 -> 61806","Type":"Conventional","Directional":true,"Links":[{"SourceID":68247,"TargetID":61806,"Directional":true}]},{"ID":15770,"SourceStructureID":68249,"TargetStructureID":593,"Label":"68249-593 via Conventional from 68250 -> 68251","Type":"Conventional","Directional":true,"Links":[{"SourceID":68250,"TargetID":68251,"Directional":true}]},{"ID":15771,"SourceStructureID":68249,"TargetStructureID":8588,"Label":"68249-8588 via Conventional from 82284 -> 82285","Type":"Conventional","Directional":true,"Links":[{"SourceID":82284,"TargetID":82285,"Directional":true}]},{"ID":15772,"SourceStructureID":68249,"TargetStructureID":82281,"Label":"68249-82281 via Conventional from 82280 -> 82282","Type":"Conventional","Directional":true,"Links":[{"SourceID":82280,"TargetID":82282,"Directional":true}]},{"ID":15773,"SourceStructureID":68261,"TargetStructureID":593,"Label":"68261-593 via Conventional from 68262 -> 68260","Type":"Conventional","Directional":true,"Links":[{"SourceID":68262,"TargetID":68260,"Directional":true}]},{"ID":15774,"SourceStructureID":68263,"TargetStructureID":593,"Label":"68263-593 via Conventional from 68264 -> 68265","Type":"Conventional","Directional":true,"Links":[{"SourceID":68264,"TargetID":68265,"Directional":true}]},{"ID":15775,"SourceStructureID":68266,"TargetStructureID":593,"Label":"68266-593 via Conventional from 68267 -> 68268","Type":"Conventional","Directional":true,"Links":[{"SourceID":68267,"TargetID":68268,"Directional":true}]},{"ID":15776,"SourceStructureID":68266,"TargetStructureID":6156,"Label":"68266-6156 via Conventional from 68270 -> 68271","Type":"Conventional","Directional":true,"Links":[{"SourceID":68270,"TargetID":68271,"Directional":true}]},{"ID":15777,"SourceStructureID":68273,"TargetStructureID":593,"Label":"68273-593 via Conventional from 68274 -> 68276","Type":"Conventional","Directional":true,"Links":[{"SourceID":68274,"TargetID":68276,"Directional":true}]},{"ID":15778,"SourceStructureID":68282,"TargetStructureID":593,"Label":"68282-593 via Conventional from 68283 -> 52450","Type":"Conventional","Directional":true,"Links":[{"SourceID":68283,"TargetID":52450,"Directional":true}]},{"ID":15779,"SourceStructureID":68282,"TargetStructureID":6997,"Label":"68282-6997 via Conventional from 82365 -> 28711","Type":"Conventional","Directional":true,"Links":[{"SourceID":82365,"TargetID":28711,"Directional":true}]},{"ID":15780,"SourceStructureID":68286,"TargetStructureID":593,"Label":"68286-593 via Conventional from 68287 -> 68288","Type":"Conventional","Directional":true,"Links":[{"SourceID":68287,"TargetID":68288,"Directional":true}]},{"ID":15781,"SourceStructureID":68286,"TargetStructureID":6997,"Label":"68286-6997 via Conventional from 80649 -> 28709, 80668 -> 95489","Type":"Conventional","Directional":true,"Links":[{"SourceID":80649,"TargetID":28709,"Directional":true},{"SourceID":80668,"TargetID":95489,"Directional":true}]},{"ID":15782,"SourceStructureID":68286,"TargetStructureID":80663,"Label":"68286-80663 via Conventional from 80662 -> 80664","Type":"Conventional","Directional":true,"Links":[{"SourceID":80662,"TargetID":80664,"Directional":true}]},{"ID":15783,"SourceStructureID":68289,"TargetStructureID":593,"Label":"68289-593 via Conventional from 68290 -> 68291","Type":"Conventional","Directional":true,"Links":[{"SourceID":68290,"TargetID":68291,"Directional":true}]},{"ID":15784,"SourceStructureID":68292,"TargetStructureID":593,"Label":"68292-593 via Conventional from 68294 -> 68295, 87617 -> 87618","Type":"Conventional","Directional":true,"Links":[{"SourceID":68294,"TargetID":68295,"Directional":true},{"SourceID":87617,"TargetID":87618,"Directional":true}]},{"ID":15785,"SourceStructureID":68296,"TargetStructureID":593,"Label":"68296-593 via Conventional from 68298 -> 68299","Type":"Conventional","Directional":true,"Links":[{"SourceID":68298,"TargetID":68299,"Directional":true}]},{"ID":15786,"SourceStructureID":68302,"TargetStructureID":593,"Label":"68302-593 via Conventional from 68303 -> 68304","Type":"Conventional","Directional":true,"Links":[{"SourceID":68303,"TargetID":68304,"Directional":true}]},{"ID":15787,"SourceStructureID":68302,"TargetStructureID":6997,"Label":"68302-6997 via Conventional from 80633 -> 61173, 82939 -> 22114, 136280 -> 136279","Type":"Conventional","Directional":true,"Links":[{"SourceID":80633,"TargetID":61173,"Directional":true},{"SourceID":82939,"TargetID":22114,"Directional":true},{"SourceID":136280,"TargetID":136279,"Directional":true}]},{"ID":15788,"SourceStructureID":68302,"TargetStructureID":68306,"Label":"68302-68306 via Conventional from 68305 -> 68307","Type":"Conventional","Directional":true,"Links":[{"SourceID":68305,"TargetID":68307,"Directional":true}]},{"ID":15789,"SourceStructureID":68302,"TargetStructureID":70868,"Label":"68302-70868 via Conventional from 82937 -> 70884","Type":"Conventional","Directional":true,"Links":[{"SourceID":82937,"TargetID":70884,"Directional":true}]},{"ID":15790,"SourceStructureID":68302,"TargetStructureID":78303,"Label":"68302-78303 via Conventional from 82928 -> 78304","Type":"Conventional","Directional":true,"Links":[{"SourceID":82928,"TargetID":78304,"Directional":true}]},{"ID":15791,"SourceStructureID":68318,"TargetStructureID":31024,"Label":"68318-31024 via Conventional from 68319 -> 31033","Type":"Conventional","Directional":true,"Links":[{"SourceID":68319,"TargetID":31033,"Directional":true}]},{"ID":15792,"SourceStructureID":68337,"TargetStructureID":61793,"Label":"68337-61793 via Conventional from 68338 -> 61796","Type":"Conventional","Directional":true,"Links":[{"SourceID":68338,"TargetID":61796,"Directional":true}]},{"ID":15793,"SourceStructureID":68341,"TargetStructureID":593,"Label":"68341-593 via Conventional from 68342 -> 7750","Type":"Conventional","Directional":true,"Links":[{"SourceID":68342,"TargetID":7750,"Directional":true}]},{"ID":15794,"SourceStructureID":68341,"TargetStructureID":67430,"Label":"68341-67430 via Conventional from 82732 -> 70031","Type":"Conventional","Directional":true,"Links":[{"SourceID":82732,"TargetID":70031,"Directional":true}]},{"ID":15795,"SourceStructureID":68341,"TargetStructureID":79586,"Label":"68341-79586 via Conventional from 80625 -> 79599","Type":"Conventional","Directional":true,"Links":[{"SourceID":80625,"TargetID":79599,"Directional":true}]},{"ID":15796,"SourceStructureID":68350,"TargetStructureID":593,"Label":"68350-593 via Conventional from 68351 -> 68349","Type":"Conventional","Directional":true,"Links":[{"SourceID":68351,"TargetID":68349,"Directional":true}]},{"ID":15797,"SourceStructureID":68350,"TargetStructureID":61791,"Label":"68350-61791 via Conventional from 80614 -> 68884","Type":"Conventional","Directional":true,"Links":[{"SourceID":80614,"TargetID":68884,"Directional":true}]},{"ID":15798,"SourceStructureID":68350,"TargetStructureID":80616,"Label":"68350-80616 via Conventional from 80615 -> 80617","Type":"Conventional","Directional":true,"Links":[{"SourceID":80615,"TargetID":80617,"Directional":true}]},{"ID":15799,"SourceStructureID":68356,"TargetStructureID":67291,"Label":"68356-67291 via Conventional from 68357 -> 68355","Type":"Conventional","Directional":true,"Links":[{"SourceID":68357,"TargetID":68355,"Directional":true}]},{"ID":15800,"SourceStructureID":68359,"TargetStructureID":67291,"Label":"68359-67291 via Conventional from 68360 -> 68358","Type":"Conventional","Directional":true,"Links":[{"SourceID":68360,"TargetID":68358,"Directional":true}]},{"ID":15801,"SourceStructureID":68366,"TargetStructureID":67291,"Label":"68366-67291 via Conventional from 68367 -> 68365","Type":"Conventional","Directional":true,"Links":[{"SourceID":68367,"TargetID":68365,"Directional":true}]},{"ID":15802,"SourceStructureID":68380,"TargetStructureID":66407,"Label":"68380-66407 via Conventional from 68381 -> 68379","Type":"Conventional","Directional":true,"Links":[{"SourceID":68381,"TargetID":68379,"Directional":true}]},{"ID":15803,"SourceStructureID":68391,"TargetStructureID":593,"Label":"68391-593 via Conventional from 68392 -> 15898","Type":"Conventional","Directional":true,"Links":[{"SourceID":68392,"TargetID":15898,"Directional":true}]},{"ID":15804,"SourceStructureID":68393,"TargetStructureID":593,"Label":"68393-593 via Conventional from 68394 -> 28398","Type":"Conventional","Directional":true,"Links":[{"SourceID":68394,"TargetID":28398,"Directional":true}]},{"ID":15805,"SourceStructureID":68393,"TargetStructureID":61868,"Label":"68393-61868 via Conventional from 80543 -> 82187","Type":"Conventional","Directional":true,"Links":[{"SourceID":80543,"TargetID":82187,"Directional":true}]},{"ID":15806,"SourceStructureID":68393,"TargetStructureID":80548,"Label":"68393-80548 via Conventional from 80547 -> 80549","Type":"Conventional","Directional":true,"Links":[{"SourceID":80547,"TargetID":80549,"Directional":true}]},{"ID":15807,"SourceStructureID":68395,"TargetStructureID":593,"Label":"68395-593 via Conventional from 68396 -> 28397","Type":"Conventional","Directional":true,"Links":[{"SourceID":68396,"TargetID":28397,"Directional":true}]},{"ID":15808,"SourceStructureID":68430,"TargetStructureID":593,"Label":"68430-593 via Conventional from 68431 -> 50437","Type":"Conventional","Directional":true,"Links":[{"SourceID":68431,"TargetID":50437,"Directional":true}]},{"ID":15809,"SourceStructureID":68444,"TargetStructureID":593,"Label":"68444-593 via Conventional from 68447 -> 28435","Type":"Conventional","Directional":true,"Links":[{"SourceID":68447,"TargetID":28435,"Directional":true}]},{"ID":15810,"SourceStructureID":68444,"TargetStructureID":5283,"Label":"68444-5283 via Conventional from 80426 -> 80427, 80474 -> 28090, 80480 -> 28093","Type":"Conventional","Directional":true,"Links":[{"SourceID":80426,"TargetID":80427,"Directional":true},{"SourceID":80474,"TargetID":28090,"Directional":true},{"SourceID":80480,"TargetID":28093,"Directional":true}]},{"ID":15811,"SourceStructureID":68444,"TargetStructureID":16026,"Label":"68444-16026 via Conventional from 80432 -> 24098","Type":"Conventional","Directional":true,"Links":[{"SourceID":80432,"TargetID":24098,"Directional":true}]},{"ID":15812,"SourceStructureID":68444,"TargetStructureID":43431,"Label":"68444-43431 via Conventional from 80457 -> 43443","Type":"Conventional","Directional":true,"Links":[{"SourceID":80457,"TargetID":43443,"Directional":true}]},{"ID":15813,"SourceStructureID":68444,"TargetStructureID":66111,"Label":"68444-66111 via Conventional from 68467 -> 68468","Type":"Conventional","Directional":true,"Links":[{"SourceID":68467,"TargetID":68468,"Directional":true}]},{"ID":15814,"SourceStructureID":68444,"TargetStructureID":68214,"Label":"68444-68214 via Conventional from 68445 -> 68446","Type":"Conventional","Directional":true,"Links":[{"SourceID":68445,"TargetID":68446,"Directional":true}]},{"ID":15815,"SourceStructureID":68444,"TargetStructureID":80453,"Label":"68444-80453 via Conventional from 80452 -> 80454","Type":"Conventional","Directional":true,"Links":[{"SourceID":80452,"TargetID":80454,"Directional":true}]},{"ID":15816,"SourceStructureID":68444,"TargetStructureID":80459,"Label":"68444-80459 via Conventional from 80458 -> 80460","Type":"Conventional","Directional":true,"Links":[{"SourceID":80458,"TargetID":80460,"Directional":true}]},{"ID":15817,"SourceStructureID":68456,"TargetStructureID":68453,"Label":"68456-68453 via Conventional from 68457 -> 68455","Type":"Conventional","Directional":true,"Links":[{"SourceID":68457,"TargetID":68455,"Directional":true}]},{"ID":15818,"SourceStructureID":68463,"TargetStructureID":593,"Label":"68463-593 via Conventional from 68464 -> 63030","Type":"Conventional","Directional":true,"Links":[{"SourceID":68464,"TargetID":63030,"Directional":true}]},{"ID":15819,"SourceStructureID":68480,"TargetStructureID":593,"Label":"68480-593 via Conventional from 68481 -> 63027, 84099 -> 63031, 84113 -> 49571","Type":"Conventional","Directional":true,"Links":[{"SourceID":68481,"TargetID":63027,"Directional":true},{"SourceID":84099,"TargetID":63031,"Directional":true},{"SourceID":84113,"TargetID":49571,"Directional":true}]},{"ID":15820,"SourceStructureID":68480,"TargetStructureID":5562,"Label":"68480-5562 via Conventional from 79634 -> 77571, 84035 -> 31294, 84046 -> 77148","Type":"Conventional","Directional":true,"Links":[{"SourceID":79634,"TargetID":77571,"Directional":true},{"SourceID":84035,"TargetID":31294,"Directional":true},{"SourceID":84046,"TargetID":77148,"Directional":true}]},{"ID":15821,"SourceStructureID":68480,"TargetStructureID":5916,"Label":"68480-5916 via Conventional from 83373 -> 83374","Type":"Conventional","Directional":true,"Links":[{"SourceID":83373,"TargetID":83374,"Directional":true}]},{"ID":15822,"SourceStructureID":68480,"TargetStructureID":16026,"Label":"68480-16026 via Conventional from 79616 -> 79617","Type":"Conventional","Directional":true,"Links":[{"SourceID":79616,"TargetID":79617,"Directional":true}]},{"ID":15823,"SourceStructureID":68480,"TargetStructureID":63199,"Label":"68480-63199 via Conventional from 83275 -> 83276","Type":"Conventional","Directional":true,"Links":[{"SourceID":83275,"TargetID":83276,"Directional":true}]},{"ID":15824,"SourceStructureID":68480,"TargetStructureID":77143,"Label":"68480-77143 via Conventional from 84042 -> 84043","Type":"Conventional","Directional":true,"Links":[{"SourceID":84042,"TargetID":84043,"Directional":true}]},{"ID":15825,"SourceStructureID":68486,"TargetStructureID":593,"Label":"68486-593 via Conventional from 68487 -> 7732","Type":"Conventional","Directional":true,"Links":[{"SourceID":68487,"TargetID":7732,"Directional":true}]},{"ID":15826,"SourceStructureID":68486,"TargetStructureID":31161,"Label":"68486-31161 via Conventional from 79605 -> 31238","Type":"Conventional","Directional":true,"Links":[{"SourceID":79605,"TargetID":31238,"Directional":true}]},{"ID":15827,"SourceStructureID":68486,"TargetStructureID":69537,"Label":"68486-69537 via Conventional from 79612 -> 79615","Type":"Conventional","Directional":true,"Links":[{"SourceID":79612,"TargetID":79615,"Directional":true}]},{"ID":15828,"SourceStructureID":68488,"TargetStructureID":593,"Label":"68488-593 via Conventional from 68489 -> 7730","Type":"Conventional","Directional":true,"Links":[{"SourceID":68489,"TargetID":7730,"Directional":true}]},{"ID":15829,"SourceStructureID":68492,"TargetStructureID":593,"Label":"68492-593 via Conventional from 68493 -> 7729","Type":"Conventional","Directional":true,"Links":[{"SourceID":68493,"TargetID":7729,"Directional":true}]},{"ID":15830,"SourceStructureID":68497,"TargetStructureID":593,"Label":"68497-593 via Conventional from 68498 -> 7728","Type":"Conventional","Directional":true,"Links":[{"SourceID":68498,"TargetID":7728,"Directional":true}]},{"ID":15831,"SourceStructureID":68497,"TargetStructureID":5107,"Label":"68497-5107 via Conventional from 81578 -> 43683","Type":"Conventional","Directional":true,"Links":[{"SourceID":81578,"TargetID":43683,"Directional":true}]},{"ID":15832,"SourceStructureID":68497,"TargetStructureID":5649,"Label":"68497-5649 via Conventional from 81583 -> 81585","Type":"Conventional","Directional":true,"Links":[{"SourceID":81583,"TargetID":81585,"Directional":true}]},{"ID":15833,"SourceStructureID":68497,"TargetStructureID":79319,"Label":"68497-79319 via Conventional from 79318 -> 79320","Type":"Conventional","Directional":true,"Links":[{"SourceID":79318,"TargetID":79320,"Directional":true}]},{"ID":15834,"SourceStructureID":68497,"TargetStructureID":79361,"Label":"68497-79361 via Conventional from 79360 -> 79362","Type":"Conventional","Directional":true,"Links":[{"SourceID":79360,"TargetID":79362,"Directional":true}]},{"ID":15835,"SourceStructureID":68497,"TargetStructureID":79373,"Label":"68497-79373 via Conventional from 79357 -> 81600","Type":"Conventional","Directional":true,"Links":[{"SourceID":79357,"TargetID":81600,"Directional":true}]},{"ID":15836,"SourceStructureID":68497,"TargetStructureID":79450,"Label":"68497-79450 via Conventional from 79445 -> 79451","Type":"Conventional","Directional":true,"Links":[{"SourceID":79445,"TargetID":79451,"Directional":true}]},{"ID":15837,"SourceStructureID":68497,"TargetStructureID":79453,"Label":"68497-79453 via Conventional from 79452 -> 79454","Type":"Conventional","Directional":true,"Links":[{"SourceID":79452,"TargetID":79454,"Directional":true}]},{"ID":15838,"SourceStructureID":68497,"TargetStructureID":79481,"Label":"68497-79481 via Conventional from 79480 -> 79482","Type":"Conventional","Directional":true,"Links":[{"SourceID":79480,"TargetID":79482,"Directional":true}]},{"ID":15839,"SourceStructureID":68497,"TargetStructureID":79484,"Label":"68497-79484 via Conventional from 79483 -> 79486","Type":"Conventional","Directional":true,"Links":[{"SourceID":79483,"TargetID":79486,"Directional":true}]},{"ID":15840,"SourceStructureID":68501,"TargetStructureID":593,"Label":"68501-593 via Conventional from 68502 -> 7742","Type":"Conventional","Directional":true,"Links":[{"SourceID":68502,"TargetID":7742,"Directional":true}]},{"ID":15841,"SourceStructureID":68504,"TargetStructureID":593,"Label":"68504-593 via Conventional from 68505 -> 7743","Type":"Conventional","Directional":true,"Links":[{"SourceID":68505,"TargetID":7743,"Directional":true}]},{"ID":15842,"SourceStructureID":68504,"TargetStructureID":16026,"Label":"68504-16026 via Conventional from 79250 -> 79251","Type":"Conventional","Directional":true,"Links":[{"SourceID":79250,"TargetID":79251,"Directional":true}]},{"ID":15843,"SourceStructureID":68516,"TargetStructureID":68524,"Label":"68516-68524 via Conventional from 68523 -> 68525","Type":"Conventional","Directional":true,"Links":[{"SourceID":68523,"TargetID":68525,"Directional":true}]},{"ID":15844,"SourceStructureID":68531,"TargetStructureID":68537,"Label":"68531-68537 via Conventional from 68536 -> 68538","Type":"Conventional","Directional":true,"Links":[{"SourceID":68536,"TargetID":68538,"Directional":true}]},{"ID":15845,"SourceStructureID":68539,"TargetStructureID":35894,"Label":"68539-35894 via Cistern Pre from 73057 -> 35924","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":73057,"TargetID":35924,"Directional":true}]},{"ID":15846,"SourceStructureID":68548,"TargetStructureID":5107,"Label":"68548-5107 via Conventional from 73165 -> 43679","Type":"Conventional","Directional":true,"Links":[{"SourceID":73165,"TargetID":43679,"Directional":true}]},{"ID":15847,"SourceStructureID":68548,"TargetStructureID":6115,"Label":"68548-6115 via Adherens from 75996 -> 75997","Type":"Adherens","Directional":true,"Links":[{"SourceID":75996,"TargetID":75997,"Directional":true}]},{"ID":15848,"SourceStructureID":68548,"TargetStructureID":7594,"Label":"68548-7594 via Conventional from 73161 -> 25094","Type":"Conventional","Directional":true,"Links":[{"SourceID":73161,"TargetID":25094,"Directional":true}]},{"ID":15849,"SourceStructureID":68548,"TargetStructureID":30130,"Label":"68548-30130 via Conventional from 73478 -> 30279","Type":"Conventional","Directional":true,"Links":[{"SourceID":73478,"TargetID":30279,"Directional":true}]},{"ID":15850,"SourceStructureID":68548,"TargetStructureID":43712,"Label":"68548-43712 via Conventional from 68582 -> 68583","Type":"Conventional","Directional":true,"Links":[{"SourceID":68582,"TargetID":68583,"Directional":true}]},{"ID":15851,"SourceStructureID":68548,"TargetStructureID":61823,"Label":"68548-61823 via Conventional from 73559 -> 64615","Type":"Conventional","Directional":true,"Links":[{"SourceID":73559,"TargetID":64615,"Directional":true}]},{"ID":15852,"SourceStructureID":68548,"TargetStructureID":67701,"Label":"68548-67701 via Conventional from 73566 -> 67702, 73567 -> 67703","Type":"Conventional","Directional":true,"Links":[{"SourceID":73566,"TargetID":67702,"Directional":true},{"SourceID":73567,"TargetID":67703,"Directional":true}]},{"ID":15853,"SourceStructureID":68548,"TargetStructureID":68539,"Label":"68548-68539 via Conventional from 68587 -> 68588, 73544 -> 73545","Type":"Conventional","Directional":true,"Links":[{"SourceID":68587,"TargetID":68588,"Directional":true},{"SourceID":73544,"TargetID":73545,"Directional":true}]},{"ID":15854,"SourceStructureID":68548,"TargetStructureID":68555,"Label":"68548-68555 via Conventional from 68554 -> 68556","Type":"Conventional","Directional":true,"Links":[{"SourceID":68554,"TargetID":68556,"Directional":true}]},{"ID":15855,"SourceStructureID":68548,"TargetStructureID":73500,"Label":"68548-73500 via Conventional from 73501 -> 73502","Type":"Conventional","Directional":true,"Links":[{"SourceID":73501,"TargetID":73502,"Directional":true}]},{"ID":15856,"SourceStructureID":68548,"TargetStructureID":73506,"Label":"68548-73506 via Conventional from 73507 -> 73508","Type":"Conventional","Directional":true,"Links":[{"SourceID":73507,"TargetID":73508,"Directional":true}]},{"ID":15857,"SourceStructureID":68548,"TargetStructureID":73521,"Label":"68548-73521 via Conventional from 73522 -> 73523","Type":"Conventional","Directional":true,"Links":[{"SourceID":73522,"TargetID":73523,"Directional":true}]},{"ID":15858,"SourceStructureID":68548,"TargetStructureID":73528,"Label":"68548-73528 via Conventional from 73527 -> 73529","Type":"Conventional","Directional":true,"Links":[{"SourceID":73527,"TargetID":73529,"Directional":true}]},{"ID":15859,"SourceStructureID":68548,"TargetStructureID":73546,"Label":"68548-73546 via Conventional from 73547 -> 73548","Type":"Conventional","Directional":true,"Links":[{"SourceID":73547,"TargetID":73548,"Directional":true}]},{"ID":15860,"SourceStructureID":68548,"TargetStructureID":73560,"Label":"68548-73560 via Conventional from 73561 -> 73562","Type":"Conventional","Directional":true,"Links":[{"SourceID":73561,"TargetID":73562,"Directional":true}]},{"ID":15861,"SourceStructureID":68548,"TargetStructureID":74902,"Label":"68548-74902 via Conventional from 75775 -> 75774","Type":"Conventional","Directional":true,"Links":[{"SourceID":75775,"TargetID":75774,"Directional":true}]},{"ID":15862,"SourceStructureID":68548,"TargetStructureID":75354,"Label":"68548-75354 via Conventional from 75353 -> 75355","Type":"Conventional","Directional":true,"Links":[{"SourceID":75353,"TargetID":75355,"Directional":true}]},{"ID":15863,"SourceStructureID":68548,"TargetStructureID":75359,"Label":"68548-75359 via Conventional from 75358 -> 75360","Type":"Conventional","Directional":true,"Links":[{"SourceID":75358,"TargetID":75360,"Directional":true}]},{"ID":15864,"SourceStructureID":68548,"TargetStructureID":75700,"Label":"68548-75700 via Conventional from 75699 -> 75705","Type":"Conventional","Directional":true,"Links":[{"SourceID":75699,"TargetID":75705,"Directional":true}]},{"ID":15865,"SourceStructureID":68548,"TargetStructureID":75713,"Label":"68548-75713 via Conventional from 75712 -> 75714","Type":"Conventional","Directional":true,"Links":[{"SourceID":75712,"TargetID":75714,"Directional":true}]},{"ID":15866,"SourceStructureID":68548,"TargetStructureID":75728,"Label":"68548-75728 via Conventional from 75729 -> 75730","Type":"Conventional","Directional":true,"Links":[{"SourceID":75729,"TargetID":75730,"Directional":true}]},{"ID":15867,"SourceStructureID":68548,"TargetStructureID":75739,"Label":"68548-75739 via Conventional from 75744 -> 75745","Type":"Conventional","Directional":true,"Links":[{"SourceID":75744,"TargetID":75745,"Directional":true}]},{"ID":15868,"SourceStructureID":68548,"TargetStructureID":75752,"Label":"68548-75752 via Conventional from 75751 -> 75753","Type":"Conventional","Directional":true,"Links":[{"SourceID":75751,"TargetID":75753,"Directional":true}]},{"ID":15869,"SourceStructureID":68566,"TargetStructureID":68539,"Label":"68566-68539 via Conventional from 68567 -> 68565","Type":"Conventional","Directional":true,"Links":[{"SourceID":68567,"TargetID":68565,"Directional":true}]},{"ID":15870,"SourceStructureID":68572,"TargetStructureID":68539,"Label":"68572-68539 via Conventional from 68573 -> 68571","Type":"Conventional","Directional":true,"Links":[{"SourceID":68573,"TargetID":68571,"Directional":true}]},{"ID":15871,"SourceStructureID":68577,"TargetStructureID":68539,"Label":"68577-68539 via Conventional from 68578 -> 68579","Type":"Conventional","Directional":true,"Links":[{"SourceID":68578,"TargetID":68579,"Directional":true}]},{"ID":15872,"SourceStructureID":68594,"TargetStructureID":5297,"Label":"68594-5297 via Conventional from 68595 -> 68596","Type":"Conventional","Directional":true,"Links":[{"SourceID":68595,"TargetID":68596,"Directional":true}]},{"ID":15873,"SourceStructureID":68618,"TargetStructureID":59696,"Label":"68618-59696 via Conventional from 68619 -> 68617","Type":"Conventional","Directional":true,"Links":[{"SourceID":68619,"TargetID":68617,"Directional":true}]},{"ID":15874,"SourceStructureID":68623,"TargetStructureID":593,"Label":"68623-593 via Conventional from 68624 -> 68622","Type":"Conventional","Directional":true,"Links":[{"SourceID":68624,"TargetID":68622,"Directional":true}]},{"ID":15875,"SourceStructureID":68632,"TargetStructureID":55403,"Label":"68632-55403 via Conventional from 68638 -> 55464","Type":"Conventional","Directional":true,"Links":[{"SourceID":68638,"TargetID":55464,"Directional":true}]},{"ID":15876,"SourceStructureID":68632,"TargetStructureID":67019,"Label":"68632-67019 via Conventional from 68633 -> 68634","Type":"Conventional","Directional":true,"Links":[{"SourceID":68633,"TargetID":68634,"Directional":true}]},{"ID":15877,"SourceStructureID":68635,"TargetStructureID":68632,"Label":"68635-68632 via Conventional from 68636 -> 68637","Type":"Conventional","Directional":true,"Links":[{"SourceID":68636,"TargetID":68637,"Directional":true}]},{"ID":15878,"SourceStructureID":68643,"TargetStructureID":6156,"Label":"68643-6156 via Conventional from 68645 -> 68646","Type":"Conventional","Directional":true,"Links":[{"SourceID":68645,"TargetID":68646,"Directional":true}]},{"ID":15879,"SourceStructureID":68643,"TargetStructureID":61933,"Label":"68643-61933 via Conventional from 68644 -> 68642","Type":"Conventional","Directional":true,"Links":[{"SourceID":68644,"TargetID":68642,"Directional":true}]},{"ID":15880,"SourceStructureID":68652,"TargetStructureID":68077,"Label":"68652-68077 via Conventional from 68653 -> 68651","Type":"Conventional","Directional":true,"Links":[{"SourceID":68653,"TargetID":68651,"Directional":true}]},{"ID":15881,"SourceStructureID":68663,"TargetStructureID":593,"Label":"68663-593 via Conventional from 68664 -> 62893","Type":"Conventional","Directional":true,"Links":[{"SourceID":68664,"TargetID":62893,"Directional":true}]},{"ID":15882,"SourceStructureID":68663,"TargetStructureID":5279,"Label":"68663-5279 via Conventional from 97258 -> 6345","Type":"Conventional","Directional":true,"Links":[{"SourceID":97258,"TargetID":6345,"Directional":true}]},{"ID":15883,"SourceStructureID":68667,"TargetStructureID":593,"Label":"68667-593 via Conventional from 74918 -> 68666","Type":"Conventional","Directional":true,"Links":[{"SourceID":74918,"TargetID":68666,"Directional":true}]},{"ID":15884,"SourceStructureID":68669,"TargetStructureID":593,"Label":"68669-593 via Conventional from 68675 -> 68676","Type":"Conventional","Directional":true,"Links":[{"SourceID":68675,"TargetID":68676,"Directional":true}]},{"ID":15885,"SourceStructureID":68669,"TargetStructureID":67460,"Label":"68669-67460 via Conventional from 82721 -> 82722","Type":"Conventional","Directional":true,"Links":[{"SourceID":82721,"TargetID":82722,"Directional":true}]},{"ID":15886,"SourceStructureID":68669,"TargetStructureID":68486,"Label":"68669-68486 via Conventional from 68670 -> 79609","Type":"Conventional","Directional":true,"Links":[{"SourceID":68670,"TargetID":79609,"Directional":true}]},{"ID":15887,"SourceStructureID":68678,"TargetStructureID":593,"Label":"68678-593 via Conventional from 68682 -> 68683","Type":"Conventional","Directional":true,"Links":[{"SourceID":68682,"TargetID":68683,"Directional":true}]},{"ID":15888,"SourceStructureID":68678,"TargetStructureID":5649,"Label":"68678-5649 via Conventional from 78883 -> 78884","Type":"Conventional","Directional":true,"Links":[{"SourceID":78883,"TargetID":78884,"Directional":true}]},{"ID":15889,"SourceStructureID":68686,"TargetStructureID":68669,"Label":"68686-68669 via Conventional from 68687 -> 68688","Type":"Conventional","Directional":true,"Links":[{"SourceID":68687,"TargetID":68688,"Directional":true}]},{"ID":15890,"SourceStructureID":68705,"TargetStructureID":514,"Label":"68705-514 via Conventional from 68706 -> 1511","Type":"Conventional","Directional":true,"Links":[{"SourceID":68706,"TargetID":1511,"Directional":true}]},{"ID":15891,"SourceStructureID":68728,"TargetStructureID":63628,"Label":"68728-63628 via Conventional from 68729 -> 63632","Type":"Conventional","Directional":true,"Links":[{"SourceID":68729,"TargetID":63632,"Directional":true}]},{"ID":15892,"SourceStructureID":68734,"TargetStructureID":63628,"Label":"68734-63628 via Conventional from 68735 -> 63633","Type":"Conventional","Directional":true,"Links":[{"SourceID":68735,"TargetID":63633,"Directional":true}]},{"ID":15893,"SourceStructureID":68737,"TargetStructureID":8575,"Label":"68737-8575 via Conventional from 68738 -> 21629","Type":"Conventional","Directional":true,"Links":[{"SourceID":68738,"TargetID":21629,"Directional":true}]},{"ID":15894,"SourceStructureID":68748,"TargetStructureID":8575,"Label":"68748-8575 via Conventional from 68749 -> 21632","Type":"Conventional","Directional":true,"Links":[{"SourceID":68749,"TargetID":21632,"Directional":true}]},{"ID":15895,"SourceStructureID":68766,"TargetStructureID":8575,"Label":"68766-8575 via Ribbon Synapse from 68768 -> 21636, 68774 -> 21637","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68768,"TargetID":21636,"Directional":true},{"SourceID":68774,"TargetID":21637,"Directional":true}]},{"ID":15896,"SourceStructureID":68771,"TargetStructureID":8575,"Label":"68771-8575 via Conventional from 68772 -> 21638","Type":"Conventional","Directional":true,"Links":[{"SourceID":68772,"TargetID":21638,"Directional":true}]},{"ID":15897,"SourceStructureID":68781,"TargetStructureID":8575,"Label":"68781-8575 via BC Conventional Synapse from 68783 -> 62289","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68783,"TargetID":62289,"Directional":true}]},{"ID":15898,"SourceStructureID":68785,"TargetStructureID":5528,"Label":"68785-5528 via Conventional from 68786 -> 68791","Type":"Conventional","Directional":true,"Links":[{"SourceID":68786,"TargetID":68791,"Directional":true}]},{"ID":15899,"SourceStructureID":68799,"TargetStructureID":8575,"Label":"68799-8575 via Conventional from 68800 -> 61536","Type":"Conventional","Directional":true,"Links":[{"SourceID":68800,"TargetID":61536,"Directional":true}]},{"ID":15900,"SourceStructureID":68801,"TargetStructureID":8575,"Label":"68801-8575 via Conventional from 68802 -> 65516","Type":"Conventional","Directional":true,"Links":[{"SourceID":68802,"TargetID":65516,"Directional":true}]},{"ID":15901,"SourceStructureID":68822,"TargetStructureID":22232,"Label":"68822-22232 via Conventional from 68823 -> 68821","Type":"Conventional","Directional":true,"Links":[{"SourceID":68823,"TargetID":68821,"Directional":true}]},{"ID":15902,"SourceStructureID":68836,"TargetStructureID":5922,"Label":"68836-5922 via Conventional from 68837 -> 68838","Type":"Conventional","Directional":true,"Links":[{"SourceID":68837,"TargetID":68838,"Directional":true}]},{"ID":15903,"SourceStructureID":68879,"TargetStructureID":7594,"Label":"68879-7594 via Conventional from 68882 -> 25099","Type":"Conventional","Directional":true,"Links":[{"SourceID":68882,"TargetID":25099,"Directional":true}]},{"ID":15904,"SourceStructureID":68888,"TargetStructureID":1724,"Label":"68888-1724 via Conventional from 68890 -> 1796","Type":"Conventional","Directional":true,"Links":[{"SourceID":68890,"TargetID":1796,"Directional":true}]},{"ID":15905,"SourceStructureID":68888,"TargetStructureID":61933,"Label":"68888-61933 via Conventional from 68889 -> 68887","Type":"Conventional","Directional":true,"Links":[{"SourceID":68889,"TargetID":68887,"Directional":true}]},{"ID":15906,"SourceStructureID":68894,"TargetStructureID":6156,"Label":"68894-6156 via Conventional from 68895 -> 68897","Type":"Conventional","Directional":true,"Links":[{"SourceID":68895,"TargetID":68897,"Directional":true}]},{"ID":15907,"SourceStructureID":68901,"TargetStructureID":67508,"Label":"68901-67508 via Conventional from 68902 -> 68903","Type":"Conventional","Directional":true,"Links":[{"SourceID":68902,"TargetID":68903,"Directional":true}]},{"ID":15908,"SourceStructureID":68901,"TargetStructureID":68906,"Label":"68901-68906 via Conventional from 68905 -> 68907","Type":"Conventional","Directional":true,"Links":[{"SourceID":68905,"TargetID":68907,"Directional":true}]},{"ID":15909,"SourceStructureID":68914,"TargetStructureID":8588,"Label":"68914-8588 via Conventional from 68915 -> 68916","Type":"Conventional","Directional":true,"Links":[{"SourceID":68915,"TargetID":68916,"Directional":true}]},{"ID":15910,"SourceStructureID":68926,"TargetStructureID":67508,"Label":"68926-67508 via Conventional from 68927 -> 68928","Type":"Conventional","Directional":true,"Links":[{"SourceID":68927,"TargetID":68928,"Directional":true}]},{"ID":15911,"SourceStructureID":68929,"TargetStructureID":68926,"Label":"68929-68926 via Conventional from 68930 -> 68942","Type":"Conventional","Directional":true,"Links":[{"SourceID":68930,"TargetID":68942,"Directional":true}]},{"ID":15912,"SourceStructureID":68940,"TargetStructureID":8038,"Label":"68940-8038 via Conventional from 68941 -> 68937, 68950 -> 68969","Type":"Conventional","Directional":true,"Links":[{"SourceID":68941,"TargetID":68937,"Directional":true},{"SourceID":68950,"TargetID":68969,"Directional":true}]},{"ID":15913,"SourceStructureID":68944,"TargetStructureID":68929,"Label":"68944-68929 via Conventional from 68945 -> 68943","Type":"Conventional","Directional":true,"Links":[{"SourceID":68945,"TargetID":68943,"Directional":true}]},{"ID":15914,"SourceStructureID":68944,"TargetStructureID":68948,"Label":"68944-68948 via Conventional from 68947 -> 68949","Type":"Conventional","Directional":true,"Links":[{"SourceID":68947,"TargetID":68949,"Directional":true}]},{"ID":15915,"SourceStructureID":68948,"TargetStructureID":68955,"Label":"68948-68955 via Conventional from 68954 -> 68956","Type":"Conventional","Directional":true,"Links":[{"SourceID":68954,"TargetID":68956,"Directional":true}]},{"ID":15916,"SourceStructureID":68955,"TargetStructureID":68944,"Label":"68955-68944 via Conventional from 68958 -> 68960","Type":"Conventional","Directional":true,"Links":[{"SourceID":68958,"TargetID":68960,"Directional":true}]},{"ID":15917,"SourceStructureID":68978,"TargetStructureID":67575,"Label":"68978-67575 via Conventional from 68979 -> 68977","Type":"Conventional","Directional":true,"Links":[{"SourceID":68979,"TargetID":68977,"Directional":true}]},{"ID":15918,"SourceStructureID":68988,"TargetStructureID":67992,"Label":"68988-67992 via Conventional from 68996 -> 68997","Type":"Conventional","Directional":true,"Links":[{"SourceID":68996,"TargetID":68997,"Directional":true}]},{"ID":15919,"SourceStructureID":69010,"TargetStructureID":68009,"Label":"69010-68009 via Conventional from 69011 -> 69009","Type":"Conventional","Directional":true,"Links":[{"SourceID":69011,"TargetID":69009,"Directional":true}]},{"ID":15920,"SourceStructureID":69019,"TargetStructureID":68009,"Label":"69019-68009 via Conventional from 69020 -> 69021","Type":"Conventional","Directional":true,"Links":[{"SourceID":69020,"TargetID":69021,"Directional":true}]},{"ID":15921,"SourceStructureID":69030,"TargetStructureID":5503,"Label":"69030-5503 via Conventional from 107423 -> 60729","Type":"Conventional","Directional":true,"Links":[{"SourceID":107423,"TargetID":60729,"Directional":true}]},{"ID":15922,"SourceStructureID":69030,"TargetStructureID":8576,"Label":"69030-8576 via Conventional from 69031 -> 20082","Type":"Conventional","Directional":true,"Links":[{"SourceID":69031,"TargetID":20082,"Directional":true}]},{"ID":15923,"SourceStructureID":69049,"TargetStructureID":68539,"Label":"69049-68539 via Conventional from 69062 -> 69066","Type":"Conventional","Directional":true,"Links":[{"SourceID":69062,"TargetID":69066,"Directional":true}]},{"ID":15924,"SourceStructureID":69115,"TargetStructureID":68539,"Label":"69115-68539 via Conventional from 69116 -> 69110","Type":"Conventional","Directional":true,"Links":[{"SourceID":69116,"TargetID":69110,"Directional":true}]},{"ID":15925,"SourceStructureID":69118,"TargetStructureID":8579,"Label":"69118-8579 via Conventional from 69122 -> 19794","Type":"Conventional","Directional":true,"Links":[{"SourceID":69122,"TargetID":19794,"Directional":true}]},{"ID":15926,"SourceStructureID":69118,"TargetStructureID":68539,"Label":"69118-68539 via Conventional from 69119 -> 69067","Type":"Conventional","Directional":true,"Links":[{"SourceID":69119,"TargetID":69067,"Directional":true}]},{"ID":15927,"SourceStructureID":69123,"TargetStructureID":68539,"Label":"69123-68539 via Conventional from 69124 -> 69068","Type":"Conventional","Directional":true,"Links":[{"SourceID":69124,"TargetID":69068,"Directional":true}]},{"ID":15928,"SourceStructureID":69125,"TargetStructureID":68539,"Label":"69125-68539 via Conventional from 69126 -> 69069","Type":"Conventional","Directional":true,"Links":[{"SourceID":69126,"TargetID":69069,"Directional":true}]},{"ID":15929,"SourceStructureID":69181,"TargetStructureID":69162,"Label":"69181-69162 via Conventional from 69183 -> 69177","Type":"Conventional","Directional":true,"Links":[{"SourceID":69183,"TargetID":69177,"Directional":true}]},{"ID":15930,"SourceStructureID":69181,"TargetStructureID":69184,"Label":"69181-69184 via Conventional from 69182 -> 69186","Type":"Conventional","Directional":true,"Links":[{"SourceID":69182,"TargetID":69186,"Directional":true}]},{"ID":15931,"SourceStructureID":69184,"TargetStructureID":69162,"Label":"69184-69162 via Conventional from 69185 -> 69178","Type":"Conventional","Directional":true,"Links":[{"SourceID":69185,"TargetID":69178,"Directional":true}]},{"ID":15932,"SourceStructureID":69187,"TargetStructureID":69162,"Label":"69187-69162 via Conventional from 69188 -> 69180","Type":"Conventional","Directional":true,"Links":[{"SourceID":69188,"TargetID":69180,"Directional":true}]},{"ID":15933,"SourceStructureID":69190,"TargetStructureID":69162,"Label":"69190-69162 via Conventional from 69192 -> 69193","Type":"Conventional","Directional":true,"Links":[{"SourceID":69192,"TargetID":69193,"Directional":true}]},{"ID":15934,"SourceStructureID":69190,"TargetStructureID":69187,"Label":"69190-69187 via Conventional from 69191 -> 69189","Type":"Conventional","Directional":true,"Links":[{"SourceID":69191,"TargetID":69189,"Directional":true}]},{"ID":15935,"SourceStructureID":69200,"TargetStructureID":69162,"Label":"69200-69162 via Conventional from 69201 -> 69199","Type":"Conventional","Directional":true,"Links":[{"SourceID":69201,"TargetID":69199,"Directional":true}]},{"ID":15936,"SourceStructureID":69200,"TargetStructureID":82723,"Label":"69200-82723 via Conventional from 69203 -> 82724","Type":"Conventional","Directional":true,"Links":[{"SourceID":69203,"TargetID":82724,"Directional":true}]},{"ID":15937,"SourceStructureID":69205,"TargetStructureID":69162,"Label":"69205-69162 via Conventional from 69206 -> 69207","Type":"Conventional","Directional":true,"Links":[{"SourceID":69206,"TargetID":69207,"Directional":true}]},{"ID":15938,"SourceStructureID":69235,"TargetStructureID":22974,"Label":"69235-22974 via Conventional from 69236 -> 69230","Type":"Conventional","Directional":true,"Links":[{"SourceID":69236,"TargetID":69230,"Directional":true}]},{"ID":15939,"SourceStructureID":69243,"TargetStructureID":22974,"Label":"69243-22974 via Conventional from 69244 -> 68981","Type":"Conventional","Directional":true,"Links":[{"SourceID":69244,"TargetID":68981,"Directional":true}]},{"ID":15940,"SourceStructureID":69245,"TargetStructureID":5284,"Label":"69245-5284 via Conventional from 98231 -> 98230","Type":"Conventional","Directional":true,"Links":[{"SourceID":98231,"TargetID":98230,"Directional":true}]},{"ID":15941,"SourceStructureID":69245,"TargetStructureID":22974,"Label":"69245-22974 via Conventional from 69246 -> 68984","Type":"Conventional","Directional":true,"Links":[{"SourceID":69246,"TargetID":68984,"Directional":true}]},{"ID":15942,"SourceStructureID":69325,"TargetStructureID":5117,"Label":"69325-5117 via Conventional from 69326 -> 69324","Type":"Conventional","Directional":true,"Links":[{"SourceID":69326,"TargetID":69324,"Directional":true}]},{"ID":15943,"SourceStructureID":69332,"TargetStructureID":5117,"Label":"69332-5117 via Conventional from 69333 -> 69331","Type":"Conventional","Directional":true,"Links":[{"SourceID":69333,"TargetID":69331,"Directional":true}]},{"ID":15944,"SourceStructureID":69355,"TargetStructureID":66407,"Label":"69355-66407 via Conventional from 69356 -> 69354","Type":"Conventional","Directional":true,"Links":[{"SourceID":69356,"TargetID":69354,"Directional":true}]},{"ID":15945,"SourceStructureID":69361,"TargetStructureID":66958,"Label":"69361-66958 via Conventional from 69362 -> 69906","Type":"Conventional","Directional":true,"Links":[{"SourceID":69362,"TargetID":69906,"Directional":true}]},{"ID":15946,"SourceStructureID":69363,"TargetStructureID":5561,"Label":"69363-5561 via Conventional from 75576 -> 75577","Type":"Conventional","Directional":true,"Links":[{"SourceID":75576,"TargetID":75577,"Directional":true}]},{"ID":15947,"SourceStructureID":69363,"TargetStructureID":8580,"Label":"69363-8580 via Conventional from 69364 -> 59649","Type":"Conventional","Directional":true,"Links":[{"SourceID":69364,"TargetID":59649,"Directional":true}]},{"ID":15948,"SourceStructureID":69367,"TargetStructureID":67663,"Label":"69367-67663 via Conventional from 69369 -> 69370","Type":"Conventional","Directional":true,"Links":[{"SourceID":69369,"TargetID":69370,"Directional":true}]},{"ID":15949,"SourceStructureID":69371,"TargetStructureID":22974,"Label":"69371-22974 via Conventional from 69372 -> 69368","Type":"Conventional","Directional":true,"Links":[{"SourceID":69372,"TargetID":69368,"Directional":true}]},{"ID":15950,"SourceStructureID":69380,"TargetStructureID":22974,"Label":"69380-22974 via Conventional from 69381 -> 69379","Type":"Conventional","Directional":true,"Links":[{"SourceID":69381,"TargetID":69379,"Directional":true}]},{"ID":15951,"SourceStructureID":69382,"TargetStructureID":67663,"Label":"69382-67663 via Conventional from 69383 -> 69323","Type":"Conventional","Directional":true,"Links":[{"SourceID":69383,"TargetID":69323,"Directional":true}]},{"ID":15952,"SourceStructureID":69385,"TargetStructureID":6857,"Label":"69385-6857 via Conventional from 69386 -> 6883, 71721 -> 6889","Type":"Conventional","Directional":true,"Links":[{"SourceID":69386,"TargetID":6883,"Directional":true},{"SourceID":71721,"TargetID":6889,"Directional":true}]},{"ID":15953,"SourceStructureID":69388,"TargetStructureID":66407,"Label":"69388-66407 via Conventional from 69389 -> 69387","Type":"Conventional","Directional":true,"Links":[{"SourceID":69389,"TargetID":69387,"Directional":true}]},{"ID":15954,"SourceStructureID":69393,"TargetStructureID":66407,"Label":"69393-66407 via Conventional from 69394 -> 69392","Type":"Conventional","Directional":true,"Links":[{"SourceID":69394,"TargetID":69392,"Directional":true}]},{"ID":15955,"SourceStructureID":69402,"TargetStructureID":66407,"Label":"69402-66407 via Conventional from 69403 -> 69401","Type":"Conventional","Directional":true,"Links":[{"SourceID":69403,"TargetID":69401,"Directional":true}]},{"ID":15956,"SourceStructureID":69405,"TargetStructureID":66407,"Label":"69405-66407 via Conventional from 69406 -> 69404","Type":"Conventional","Directional":true,"Links":[{"SourceID":69406,"TargetID":69404,"Directional":true}]},{"ID":15957,"SourceStructureID":69434,"TargetStructureID":64939,"Label":"69434-64939 via Conventional from 69435 -> 69433","Type":"Conventional","Directional":true,"Links":[{"SourceID":69435,"TargetID":69433,"Directional":true}]},{"ID":15958,"SourceStructureID":69441,"TargetStructureID":6050,"Label":"69441-6050 via Conventional from 127389 -> 113907","Type":"Conventional","Directional":true,"Links":[{"SourceID":127389,"TargetID":113907,"Directional":true}]},{"ID":15959,"SourceStructureID":69450,"TargetStructureID":64939,"Label":"69450-64939 via Conventional from 69451 -> 69448","Type":"Conventional","Directional":true,"Links":[{"SourceID":69451,"TargetID":69448,"Directional":true}]},{"ID":15960,"SourceStructureID":69456,"TargetStructureID":64939,"Label":"69456-64939 via Conventional from 69457 -> 69422","Type":"Conventional","Directional":true,"Links":[{"SourceID":69457,"TargetID":69422,"Directional":true}]},{"ID":15961,"SourceStructureID":69458,"TargetStructureID":64939,"Label":"69458-64939 via Conventional from 69460 -> 69459","Type":"Conventional","Directional":true,"Links":[{"SourceID":69460,"TargetID":69459,"Directional":true}]},{"ID":15962,"SourceStructureID":69461,"TargetStructureID":6115,"Label":"69461-6115 via Conventional from 73919 -> 73920","Type":"Conventional","Directional":true,"Links":[{"SourceID":73919,"TargetID":73920,"Directional":true}]},{"ID":15963,"SourceStructureID":69464,"TargetStructureID":6115,"Label":"69464-6115 via Conventional from 69466 -> 55846","Type":"Conventional","Directional":true,"Links":[{"SourceID":69466,"TargetID":55846,"Directional":true}]},{"ID":15964,"SourceStructureID":69467,"TargetStructureID":6115,"Label":"69467-6115 via Conventional from 69468 -> 59599","Type":"Conventional","Directional":true,"Links":[{"SourceID":69468,"TargetID":59599,"Directional":true}]},{"ID":15965,"SourceStructureID":69469,"TargetStructureID":6115,"Label":"69469-6115 via Conventional from 69470 -> 55844","Type":"Conventional","Directional":true,"Links":[{"SourceID":69470,"TargetID":55844,"Directional":true}]},{"ID":15966,"SourceStructureID":69472,"TargetStructureID":6115,"Label":"69472-6115 via Conventional from 69473 -> 59608","Type":"Conventional","Directional":true,"Links":[{"SourceID":69473,"TargetID":59608,"Directional":true}]},{"ID":15967,"SourceStructureID":69475,"TargetStructureID":16087,"Label":"69475-16087 via Conventional from 69476 -> 69477","Type":"Conventional","Directional":true,"Links":[{"SourceID":69476,"TargetID":69477,"Directional":true}]},{"ID":15968,"SourceStructureID":69478,"TargetStructureID":6115,"Label":"69478-6115 via Conventional from 69479 -> 32978","Type":"Conventional","Directional":true,"Links":[{"SourceID":69479,"TargetID":32978,"Directional":true}]},{"ID":15969,"SourceStructureID":69480,"TargetStructureID":6115,"Label":"69480-6115 via Conventional from 69482 -> 69481","Type":"Conventional","Directional":true,"Links":[{"SourceID":69482,"TargetID":69481,"Directional":true}]},{"ID":15970,"SourceStructureID":69489,"TargetStructureID":66407,"Label":"69489-66407 via Conventional from 69490 -> 69491","Type":"Conventional","Directional":true,"Links":[{"SourceID":69490,"TargetID":69491,"Directional":true}]},{"ID":15971,"SourceStructureID":69493,"TargetStructureID":6115,"Label":"69493-6115 via Conventional from 69494 -> 16050","Type":"Conventional","Directional":true,"Links":[{"SourceID":69494,"TargetID":16050,"Directional":true}]},{"ID":15972,"SourceStructureID":69496,"TargetStructureID":6115,"Label":"69496-6115 via Conventional from 69497 -> 69498","Type":"Conventional","Directional":true,"Links":[{"SourceID":69497,"TargetID":69498,"Directional":true}]},{"ID":15973,"SourceStructureID":69500,"TargetStructureID":6115,"Label":"69500-6115 via Conventional from 69502 -> 16054","Type":"Conventional","Directional":true,"Links":[{"SourceID":69502,"TargetID":16054,"Directional":true}]},{"ID":15974,"SourceStructureID":69503,"TargetStructureID":6115,"Label":"69503-6115 via Conventional from 69504 -> 16053","Type":"Conventional","Directional":true,"Links":[{"SourceID":69504,"TargetID":16053,"Directional":true}]},{"ID":15975,"SourceStructureID":69508,"TargetStructureID":5118,"Label":"69508-5118 via Conventional from 69509 -> 52188","Type":"Conventional","Directional":true,"Links":[{"SourceID":69509,"TargetID":52188,"Directional":true}]},{"ID":15976,"SourceStructureID":69512,"TargetStructureID":6115,"Label":"69512-6115 via Conventional from 69513 -> 55794, 69514 -> 69515, 75810 -> 75811","Type":"Conventional","Directional":true,"Links":[{"SourceID":69513,"TargetID":55794,"Directional":true},{"SourceID":69514,"TargetID":69515,"Directional":true},{"SourceID":75810,"TargetID":75811,"Directional":true}]},{"ID":15977,"SourceStructureID":69516,"TargetStructureID":6115,"Label":"69516-6115 via Conventional from 69517 -> 69518","Type":"Conventional","Directional":true,"Links":[{"SourceID":69517,"TargetID":69518,"Directional":true}]},{"ID":15978,"SourceStructureID":69524,"TargetStructureID":69162,"Label":"69524-69162 via Conventional from 69525 -> 69219","Type":"Conventional","Directional":true,"Links":[{"SourceID":69525,"TargetID":69219,"Directional":true}]},{"ID":15979,"SourceStructureID":69527,"TargetStructureID":69162,"Label":"69527-69162 via Conventional from 69528 -> 69307","Type":"Conventional","Directional":true,"Links":[{"SourceID":69528,"TargetID":69307,"Directional":true}]},{"ID":15980,"SourceStructureID":69532,"TargetStructureID":8485,"Label":"69532-8485 via Conventional from 69533 -> 11663","Type":"Conventional","Directional":true,"Links":[{"SourceID":69533,"TargetID":11663,"Directional":true}]},{"ID":15981,"SourceStructureID":69543,"TargetStructureID":64939,"Label":"69543-64939 via Conventional from 69544 -> 69542","Type":"Conventional","Directional":true,"Links":[{"SourceID":69544,"TargetID":69542,"Directional":true}]},{"ID":15982,"SourceStructureID":69546,"TargetStructureID":69543,"Label":"69546-69543 via Conventional from 69547 -> 69545","Type":"Conventional","Directional":true,"Links":[{"SourceID":69547,"TargetID":69545,"Directional":true}]},{"ID":15983,"SourceStructureID":69554,"TargetStructureID":8040,"Label":"69554-8040 via Conventional from 69555 -> 39141, 69561 -> 69562","Type":"Conventional","Directional":true,"Links":[{"SourceID":69555,"TargetID":39141,"Directional":true},{"SourceID":69561,"TargetID":69562,"Directional":true}]},{"ID":15984,"SourceStructureID":69642,"TargetStructureID":64939,"Label":"69642-64939 via Conventional from 69643 -> 69416","Type":"Conventional","Directional":true,"Links":[{"SourceID":69643,"TargetID":69416,"Directional":true}]},{"ID":15985,"SourceStructureID":69646,"TargetStructureID":64939,"Label":"69646-64939 via Conventional from 69647 -> 69648","Type":"Conventional","Directional":true,"Links":[{"SourceID":69647,"TargetID":69648,"Directional":true}]},{"ID":15986,"SourceStructureID":69666,"TargetStructureID":5729,"Label":"69666-5729 via Conventional from 111649 -> 111650","Type":"Conventional","Directional":true,"Links":[{"SourceID":111649,"TargetID":111650,"Directional":true}]},{"ID":15987,"SourceStructureID":69670,"TargetStructureID":69670,"Label":"69670-69670 via Conventional from 69671 -> 69673","Type":"Conventional","Directional":true,"Links":[{"SourceID":69671,"TargetID":69673,"Directional":true}]},{"ID":15988,"SourceStructureID":69689,"TargetStructureID":61853,"Label":"69689-61853 via Conventional from 69690 -> 69688","Type":"Conventional","Directional":true,"Links":[{"SourceID":69690,"TargetID":69688,"Directional":true}]},{"ID":15989,"SourceStructureID":69691,"TargetStructureID":64939,"Label":"69691-64939 via Conventional from 69692 -> 69693","Type":"Conventional","Directional":true,"Links":[{"SourceID":69692,"TargetID":69693,"Directional":true}]},{"ID":15990,"SourceStructureID":69703,"TargetStructureID":64939,"Label":"69703-64939 via Conventional from 69704 -> 69705","Type":"Conventional","Directional":true,"Links":[{"SourceID":69704,"TargetID":69705,"Directional":true}]},{"ID":15991,"SourceStructureID":69742,"TargetStructureID":64939,"Label":"69742-64939 via Conventional from 69743 -> 69744, 69745 -> 69746","Type":"Conventional","Directional":true,"Links":[{"SourceID":69743,"TargetID":69744,"Directional":true},{"SourceID":69745,"TargetID":69746,"Directional":true}]},{"ID":15992,"SourceStructureID":69783,"TargetStructureID":61836,"Label":"69783-61836 via Conventional from 69785 -> 69786","Type":"Conventional","Directional":true,"Links":[{"SourceID":69785,"TargetID":69786,"Directional":true}]},{"ID":15993,"SourceStructureID":69790,"TargetStructureID":61836,"Label":"69790-61836 via Conventional from 69791 -> 69789","Type":"Conventional","Directional":true,"Links":[{"SourceID":69791,"TargetID":69789,"Directional":true}]},{"ID":15994,"SourceStructureID":69868,"TargetStructureID":596,"Label":"69868-596 via Conventional from 69869 -> 69867","Type":"Conventional","Directional":true,"Links":[{"SourceID":69869,"TargetID":69867,"Directional":true}]},{"ID":15995,"SourceStructureID":69882,"TargetStructureID":596,"Label":"69882-596 via Conventional from 69883 -> 69886, 69884 -> 69881","Type":"Conventional","Directional":true,"Links":[{"SourceID":69883,"TargetID":69886,"Directional":true},{"SourceID":69884,"TargetID":69881,"Directional":true}]},{"ID":15996,"SourceStructureID":69888,"TargetStructureID":69890,"Label":"69888-69890 via Conventional from 69889 -> 69891","Type":"Conventional","Directional":true,"Links":[{"SourceID":69889,"TargetID":69891,"Directional":true}]},{"ID":15997,"SourceStructureID":69895,"TargetStructureID":166,"Label":"69895-166 via Conventional from 69896 -> 69897","Type":"Conventional","Directional":true,"Links":[{"SourceID":69896,"TargetID":69897,"Directional":true}]},{"ID":15998,"SourceStructureID":69902,"TargetStructureID":166,"Label":"69902-166 via Conventional from 69904 -> 69905","Type":"Conventional","Directional":true,"Links":[{"SourceID":69904,"TargetID":69905,"Directional":true}]},{"ID":15999,"SourceStructureID":69910,"TargetStructureID":66958,"Label":"69910-66958 via Conventional from 69911 -> 69319","Type":"Conventional","Directional":true,"Links":[{"SourceID":69911,"TargetID":69319,"Directional":true}]},{"ID":16000,"SourceStructureID":69917,"TargetStructureID":66958,"Label":"69917-66958 via Conventional from 69918 -> 69916","Type":"Conventional","Directional":true,"Links":[{"SourceID":69918,"TargetID":69916,"Directional":true}]},{"ID":16001,"SourceStructureID":69920,"TargetStructureID":65267,"Label":"69920-65267 via Conventional from 69921 -> 69919","Type":"Conventional","Directional":true,"Links":[{"SourceID":69921,"TargetID":69919,"Directional":true}]},{"ID":16002,"SourceStructureID":69926,"TargetStructureID":5562,"Label":"69926-5562 via Conventional from 69928 -> 63861","Type":"Conventional","Directional":true,"Links":[{"SourceID":69928,"TargetID":63861,"Directional":true}]},{"ID":16003,"SourceStructureID":69930,"TargetStructureID":69926,"Label":"69930-69926 via Conventional from 69931 -> 69929","Type":"Conventional","Directional":true,"Links":[{"SourceID":69931,"TargetID":69929,"Directional":true}]},{"ID":16004,"SourceStructureID":69934,"TargetStructureID":66958,"Label":"69934-66958 via Conventional from 69935 -> 69932","Type":"Conventional","Directional":true,"Links":[{"SourceID":69935,"TargetID":69932,"Directional":true}]},{"ID":16005,"SourceStructureID":69951,"TargetStructureID":65267,"Label":"69951-65267 via Conventional from 69952 -> 69950","Type":"Conventional","Directional":true,"Links":[{"SourceID":69952,"TargetID":69950,"Directional":true}]},{"ID":16006,"SourceStructureID":69955,"TargetStructureID":69953,"Label":"69955-69953 via Conventional from 69956 -> 69954","Type":"Conventional","Directional":true,"Links":[{"SourceID":69956,"TargetID":69954,"Directional":true}]},{"ID":16007,"SourceStructureID":69971,"TargetStructureID":64939,"Label":"69971-64939 via Conventional from 69977 -> 69978","Type":"Conventional","Directional":true,"Links":[{"SourceID":69977,"TargetID":69978,"Directional":true}]},{"ID":16008,"SourceStructureID":69979,"TargetStructureID":64939,"Label":"69979-64939 via Conventional from 69980 -> 69981","Type":"Conventional","Directional":true,"Links":[{"SourceID":69980,"TargetID":69981,"Directional":true}]},{"ID":16009,"SourceStructureID":69986,"TargetStructureID":64939,"Label":"69986-64939 via Conventional from 69987 -> 69988","Type":"Conventional","Directional":true,"Links":[{"SourceID":69987,"TargetID":69988,"Directional":true}]},{"ID":16010,"SourceStructureID":69998,"TargetStructureID":64939,"Label":"69998-64939 via Conventional from 70000 -> 70001","Type":"Conventional","Directional":true,"Links":[{"SourceID":70000,"TargetID":70001,"Directional":true}]},{"ID":16011,"SourceStructureID":70014,"TargetStructureID":6997,"Label":"70014-6997 via Conventional from 70015 -> 70016","Type":"Conventional","Directional":true,"Links":[{"SourceID":70015,"TargetID":70016,"Directional":true}]},{"ID":16012,"SourceStructureID":70046,"TargetStructureID":68153,"Label":"70046-68153 via Conventional from 70047 -> 70045","Type":"Conventional","Directional":true,"Links":[{"SourceID":70047,"TargetID":70045,"Directional":true}]},{"ID":16013,"SourceStructureID":70046,"TargetStructureID":70050,"Label":"70046-70050 via Conventional from 70052 -> 70053","Type":"Conventional","Directional":true,"Links":[{"SourceID":70052,"TargetID":70053,"Directional":true}]},{"ID":16014,"SourceStructureID":70065,"TargetStructureID":66958,"Label":"70065-66958 via Conventional from 70066 -> 70064","Type":"Conventional","Directional":true,"Links":[{"SourceID":70066,"TargetID":70064,"Directional":true}]},{"ID":16015,"SourceStructureID":70073,"TargetStructureID":6997,"Label":"70073-6997 via Conventional from 70076 -> 83021","Type":"Conventional","Directional":true,"Links":[{"SourceID":70076,"TargetID":83021,"Directional":true}]},{"ID":16016,"SourceStructureID":70073,"TargetStructureID":66958,"Label":"70073-66958 via Conventional from 70074 -> 70075","Type":"Conventional","Directional":true,"Links":[{"SourceID":70074,"TargetID":70075,"Directional":true}]},{"ID":16017,"SourceStructureID":70079,"TargetStructureID":66958,"Label":"70079-66958 via Conventional from 70080 -> 70078","Type":"Conventional","Directional":true,"Links":[{"SourceID":70080,"TargetID":70078,"Directional":true}]},{"ID":16018,"SourceStructureID":70084,"TargetStructureID":5729,"Label":"70084-5729 via Conventional from 111651 -> 111652","Type":"Conventional","Directional":true,"Links":[{"SourceID":111651,"TargetID":111652,"Directional":true}]},{"ID":16019,"SourceStructureID":70092,"TargetStructureID":66958,"Label":"70092-66958 via Conventional from 70094 -> 70091","Type":"Conventional","Directional":true,"Links":[{"SourceID":70094,"TargetID":70091,"Directional":true}]},{"ID":16020,"SourceStructureID":70095,"TargetStructureID":34978,"Label":"70095-34978 via Ribbon Synapse from 70097 -> 34981","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70097,"TargetID":34981,"Directional":true}]},{"ID":16021,"SourceStructureID":70111,"TargetStructureID":66958,"Label":"70111-66958 via Conventional from 70112 -> 70110","Type":"Conventional","Directional":true,"Links":[{"SourceID":70112,"TargetID":70110,"Directional":true}]},{"ID":16022,"SourceStructureID":70116,"TargetStructureID":70114,"Label":"70116-70114 via Conventional from 70117 -> 70115","Type":"Conventional","Directional":true,"Links":[{"SourceID":70117,"TargetID":70115,"Directional":true}]},{"ID":16023,"SourceStructureID":70120,"TargetStructureID":61823,"Label":"70120-61823 via Conventional from 70121 -> 70122","Type":"Conventional","Directional":true,"Links":[{"SourceID":70121,"TargetID":70122,"Directional":true}]},{"ID":16024,"SourceStructureID":70124,"TargetStructureID":61823,"Label":"70124-61823 via Conventional from 70125 -> 70123","Type":"Conventional","Directional":true,"Links":[{"SourceID":70125,"TargetID":70123,"Directional":true}]},{"ID":16025,"SourceStructureID":70126,"TargetStructureID":5623,"Label":"70126-5623 via Conventional from 131984 -> 131983","Type":"Conventional","Directional":true,"Links":[{"SourceID":131984,"TargetID":131983,"Directional":true}]},{"ID":16026,"SourceStructureID":70130,"TargetStructureID":66958,"Label":"70130-66958 via Conventional from 70131 -> 70129","Type":"Conventional","Directional":true,"Links":[{"SourceID":70131,"TargetID":70129,"Directional":true}]},{"ID":16027,"SourceStructureID":70134,"TargetStructureID":66958,"Label":"70134-66958 via Conventional from 70135 -> 70133","Type":"Conventional","Directional":true,"Links":[{"SourceID":70135,"TargetID":70133,"Directional":true}]},{"ID":16028,"SourceStructureID":70139,"TargetStructureID":5623,"Label":"70139-5623 via Conventional from 70142 -> 70143","Type":"Conventional","Directional":true,"Links":[{"SourceID":70142,"TargetID":70143,"Directional":true}]},{"ID":16029,"SourceStructureID":70139,"TargetStructureID":66958,"Label":"70139-66958 via Conventional from 70140 -> 70141","Type":"Conventional","Directional":true,"Links":[{"SourceID":70140,"TargetID":70141,"Directional":true}]},{"ID":16030,"SourceStructureID":70144,"TargetStructureID":68153,"Label":"70144-68153 via Conventional from 70145 -> 70146","Type":"Conventional","Directional":true,"Links":[{"SourceID":70145,"TargetID":70146,"Directional":true}]},{"ID":16031,"SourceStructureID":70157,"TargetStructureID":68153,"Label":"70157-68153 via Conventional from 70158 -> 70160","Type":"Conventional","Directional":true,"Links":[{"SourceID":70158,"TargetID":70160,"Directional":true}]},{"ID":16032,"SourceStructureID":70165,"TargetStructureID":61823,"Label":"70165-61823 via Conventional from 70166 -> 70164","Type":"Conventional","Directional":true,"Links":[{"SourceID":70166,"TargetID":70164,"Directional":true}]},{"ID":16033,"SourceStructureID":70176,"TargetStructureID":68153,"Label":"70176-68153 via Conventional from 70177 -> 70181","Type":"Conventional","Directional":true,"Links":[{"SourceID":70177,"TargetID":70181,"Directional":true}]},{"ID":16034,"SourceStructureID":70182,"TargetStructureID":68153,"Label":"70182-68153 via Conventional from 70183 -> 70184","Type":"Conventional","Directional":true,"Links":[{"SourceID":70183,"TargetID":70184,"Directional":true}]},{"ID":16035,"SourceStructureID":70201,"TargetStructureID":68153,"Label":"70201-68153 via Conventional from 70202 -> 70200","Type":"Conventional","Directional":true,"Links":[{"SourceID":70202,"TargetID":70200,"Directional":true}]},{"ID":16036,"SourceStructureID":70205,"TargetStructureID":69537,"Label":"70205-69537 via Conventional from 70206 -> 69569","Type":"Conventional","Directional":true,"Links":[{"SourceID":70206,"TargetID":69569,"Directional":true}]},{"ID":16037,"SourceStructureID":70221,"TargetStructureID":5297,"Label":"70221-5297 via Conventional from 116706 -> 116707","Type":"Conventional","Directional":true,"Links":[{"SourceID":116706,"TargetID":116707,"Directional":true}]},{"ID":16038,"SourceStructureID":70224,"TargetStructureID":70225,"Label":"70224-70225 via Conventional from 70226 -> 70227","Type":"Conventional","Directional":true,"Links":[{"SourceID":70226,"TargetID":70227,"Directional":true}]},{"ID":16039,"SourceStructureID":70272,"TargetStructureID":68539,"Label":"70272-68539 via Conventional from 70273 -> 70274","Type":"Conventional","Directional":true,"Links":[{"SourceID":70273,"TargetID":70274,"Directional":true}]},{"ID":16040,"SourceStructureID":70302,"TargetStructureID":68539,"Label":"70302-68539 via Conventional from 70303 -> 70307","Type":"Conventional","Directional":true,"Links":[{"SourceID":70303,"TargetID":70307,"Directional":true}]},{"ID":16041,"SourceStructureID":70308,"TargetStructureID":68539,"Label":"70308-68539 via Conventional from 70406 -> 70408","Type":"Conventional","Directional":true,"Links":[{"SourceID":70406,"TargetID":70408,"Directional":true}]},{"ID":16042,"SourceStructureID":70317,"TargetStructureID":61823,"Label":"70317-61823 via Conventional from 70318 -> 70319","Type":"Conventional","Directional":true,"Links":[{"SourceID":70318,"TargetID":70319,"Directional":true}]},{"ID":16043,"SourceStructureID":70321,"TargetStructureID":606,"Label":"70321-606 via Conventional from 70322 -> 51319","Type":"Conventional","Directional":true,"Links":[{"SourceID":70322,"TargetID":51319,"Directional":true}]},{"ID":16044,"SourceStructureID":70323,"TargetStructureID":6117,"Label":"70323-6117 via Conventional from 70324 -> 70325","Type":"Conventional","Directional":true,"Links":[{"SourceID":70324,"TargetID":70325,"Directional":true}]},{"ID":16045,"SourceStructureID":70326,"TargetStructureID":6117,"Label":"70326-6117 via Conventional from 70327 -> 70328","Type":"Conventional","Directional":true,"Links":[{"SourceID":70327,"TargetID":70328,"Directional":true}]},{"ID":16046,"SourceStructureID":70329,"TargetStructureID":5292,"Label":"70329-5292 via Conventional from 70330 -> 51581","Type":"Conventional","Directional":true,"Links":[{"SourceID":70330,"TargetID":51581,"Directional":true}]},{"ID":16047,"SourceStructureID":70331,"TargetStructureID":5284,"Label":"70331-5284 via Conventional from 113413 -> 113412","Type":"Conventional","Directional":true,"Links":[{"SourceID":113413,"TargetID":113412,"Directional":true}]},{"ID":16048,"SourceStructureID":70331,"TargetStructureID":5292,"Label":"70331-5292 via Conventional from 70332 -> 51583","Type":"Conventional","Directional":true,"Links":[{"SourceID":70332,"TargetID":51583,"Directional":true}]},{"ID":16049,"SourceStructureID":70334,"TargetStructureID":5292,"Label":"70334-5292 via Conventional from 70337 -> 51580","Type":"Conventional","Directional":true,"Links":[{"SourceID":70337,"TargetID":51580,"Directional":true}]},{"ID":16050,"SourceStructureID":70335,"TargetStructureID":5292,"Label":"70335-5292 via Conventional from 70338 -> 51582","Type":"Conventional","Directional":true,"Links":[{"SourceID":70338,"TargetID":51582,"Directional":true}]},{"ID":16051,"SourceStructureID":70340,"TargetStructureID":5284,"Label":"70340-5284 via Conventional from 84658 -> 84660","Type":"Conventional","Directional":true,"Links":[{"SourceID":84658,"TargetID":84660,"Directional":true}]},{"ID":16052,"SourceStructureID":70340,"TargetStructureID":6117,"Label":"70340-6117 via Conventional from 70341 -> 70342","Type":"Conventional","Directional":true,"Links":[{"SourceID":70341,"TargetID":70342,"Directional":true}]},{"ID":16053,"SourceStructureID":70346,"TargetStructureID":6050,"Label":"70346-6050 via Conventional from 70348 -> 70349","Type":"Conventional","Directional":true,"Links":[{"SourceID":70348,"TargetID":70349,"Directional":true}]},{"ID":16054,"SourceStructureID":70346,"TargetStructureID":15796,"Label":"70346-15796 via Conventional from 70347 -> 36000","Type":"Conventional","Directional":true,"Links":[{"SourceID":70347,"TargetID":36000,"Directional":true}]},{"ID":16055,"SourceStructureID":70352,"TargetStructureID":6050,"Label":"70352-6050 via Conventional from 70353 -> 19307","Type":"Conventional","Directional":true,"Links":[{"SourceID":70353,"TargetID":19307,"Directional":true}]},{"ID":16056,"SourceStructureID":70357,"TargetStructureID":6050,"Label":"70357-6050 via Conventional from 70358 -> 70359","Type":"Conventional","Directional":true,"Links":[{"SourceID":70358,"TargetID":70359,"Directional":true}]},{"ID":16057,"SourceStructureID":70360,"TargetStructureID":70362,"Label":"70360-70362 via Conventional from 70361 -> 70363","Type":"Conventional","Directional":true,"Links":[{"SourceID":70361,"TargetID":70363,"Directional":true}]},{"ID":16058,"SourceStructureID":70360,"TargetStructureID":70365,"Label":"70360-70365 via Conventional from 70364 -> 70366","Type":"Conventional","Directional":true,"Links":[{"SourceID":70364,"TargetID":70366,"Directional":true}]},{"ID":16059,"SourceStructureID":70367,"TargetStructureID":70369,"Label":"70367-70369 via Conventional from 70368 -> 70370","Type":"Conventional","Directional":true,"Links":[{"SourceID":70368,"TargetID":70370,"Directional":true}]},{"ID":16060,"SourceStructureID":70371,"TargetStructureID":61823,"Label":"70371-61823 via Conventional from 70373 -> 70375","Type":"Conventional","Directional":true,"Links":[{"SourceID":70373,"TargetID":70375,"Directional":true}]},{"ID":16061,"SourceStructureID":70372,"TargetStructureID":70374,"Label":"70372-70374 via Conventional from 70376 -> 70377","Type":"Conventional","Directional":true,"Links":[{"SourceID":70376,"TargetID":70377,"Directional":true}]},{"ID":16062,"SourceStructureID":70381,"TargetStructureID":5284,"Label":"70381-5284 via Conventional from 70382 -> 70383","Type":"Conventional","Directional":true,"Links":[{"SourceID":70382,"TargetID":70383,"Directional":true}]},{"ID":16063,"SourceStructureID":70384,"TargetStructureID":70374,"Label":"70384-70374 via Conventional from 70386 -> 70385","Type":"Conventional","Directional":true,"Links":[{"SourceID":70386,"TargetID":70385,"Directional":true}]},{"ID":16064,"SourceStructureID":70394,"TargetStructureID":8589,"Label":"70394-8589 via Conventional from 70395 -> 70396","Type":"Conventional","Directional":true,"Links":[{"SourceID":70395,"TargetID":70396,"Directional":true}]},{"ID":16065,"SourceStructureID":70403,"TargetStructureID":8589,"Label":"70403-8589 via Ribbon Synapse from 70440 -> 70439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70440,"TargetID":70439,"Directional":true}]},{"ID":16066,"SourceStructureID":70415,"TargetStructureID":68539,"Label":"70415-68539 via Conventional from 70416 -> 70414","Type":"Conventional","Directional":true,"Links":[{"SourceID":70416,"TargetID":70414,"Directional":true}]},{"ID":16067,"SourceStructureID":70418,"TargetStructureID":58696,"Label":"70418-58696 via Conventional from 70420 -> 86932","Type":"Conventional","Directional":true,"Links":[{"SourceID":70420,"TargetID":86932,"Directional":true}]},{"ID":16068,"SourceStructureID":70422,"TargetStructureID":68539,"Label":"70422-68539 via Conventional from 70425 -> 76037","Type":"Conventional","Directional":true,"Links":[{"SourceID":70425,"TargetID":76037,"Directional":true}]},{"ID":16069,"SourceStructureID":70427,"TargetStructureID":5439,"Label":"70427-5439 via Conventional from 70428 -> 70429","Type":"Conventional","Directional":true,"Links":[{"SourceID":70428,"TargetID":70429,"Directional":true}]},{"ID":16070,"SourceStructureID":70432,"TargetStructureID":70427,"Label":"70432-70427 via Conventional from 70434 -> 70431","Type":"Conventional","Directional":true,"Links":[{"SourceID":70434,"TargetID":70431,"Directional":true}]},{"ID":16071,"SourceStructureID":70436,"TargetStructureID":5439,"Label":"70436-5439 via Conventional from 70437 -> 66547","Type":"Conventional","Directional":true,"Links":[{"SourceID":70437,"TargetID":66547,"Directional":true}]},{"ID":16072,"SourceStructureID":70449,"TargetStructureID":6117,"Label":"70449-6117 via Conventional from 70450 -> 25098","Type":"Conventional","Directional":true,"Links":[{"SourceID":70450,"TargetID":25098,"Directional":true}]},{"ID":16073,"SourceStructureID":70449,"TargetStructureID":7594,"Label":"70449-7594 via Conventional from 70451 -> 25097","Type":"Conventional","Directional":true,"Links":[{"SourceID":70451,"TargetID":25097,"Directional":true}]},{"ID":16074,"SourceStructureID":70454,"TargetStructureID":606,"Label":"70454-606 via Conventional from 89559 -> 51538, 89560 -> 89561","Type":"Conventional","Directional":true,"Links":[{"SourceID":89559,"TargetID":51538,"Directional":true},{"SourceID":89560,"TargetID":89561,"Directional":true}]},{"ID":16075,"SourceStructureID":70454,"TargetStructureID":5279,"Label":"70454-5279 via Conventional from 89564 -> 28313, 97334 -> 25813","Type":"Conventional","Directional":true,"Links":[{"SourceID":89564,"TargetID":28313,"Directional":true},{"SourceID":97334,"TargetID":25813,"Directional":true}]},{"ID":16076,"SourceStructureID":70454,"TargetStructureID":5284,"Label":"70454-5284 via Conventional from 113424 -> 113423","Type":"Conventional","Directional":true,"Links":[{"SourceID":113424,"TargetID":113423,"Directional":true}]},{"ID":16077,"SourceStructureID":70454,"TargetStructureID":5292,"Label":"70454-5292 via Conventional from 89566 -> 51548","Type":"Conventional","Directional":true,"Links":[{"SourceID":89566,"TargetID":51548,"Directional":true}]},{"ID":16078,"SourceStructureID":70454,"TargetStructureID":6117,"Label":"70454-6117 via Conventional from 70455 -> 51537","Type":"Conventional","Directional":true,"Links":[{"SourceID":70455,"TargetID":51537,"Directional":true}]},{"ID":16079,"SourceStructureID":70454,"TargetStructureID":89554,"Label":"70454-89554 via Conventional from 89553 -> 89558","Type":"Conventional","Directional":true,"Links":[{"SourceID":89553,"TargetID":89558,"Directional":true}]},{"ID":16080,"SourceStructureID":70456,"TargetStructureID":5281,"Label":"70456-5281 via Conventional from 86349 -> 86350","Type":"Conventional","Directional":true,"Links":[{"SourceID":86349,"TargetID":86350,"Directional":true}]},{"ID":16081,"SourceStructureID":70456,"TargetStructureID":6117,"Label":"70456-6117 via Conventional from 70457 -> 10542","Type":"Conventional","Directional":true,"Links":[{"SourceID":70457,"TargetID":10542,"Directional":true}]},{"ID":16082,"SourceStructureID":70458,"TargetStructureID":606,"Label":"70458-606 via Conventional from 83135 -> 10712","Type":"Conventional","Directional":true,"Links":[{"SourceID":83135,"TargetID":10712,"Directional":true}]},{"ID":16083,"SourceStructureID":70458,"TargetStructureID":6117,"Label":"70458-6117 via Conventional from 70459 -> 30886","Type":"Conventional","Directional":true,"Links":[{"SourceID":70459,"TargetID":30886,"Directional":true}]},{"ID":16084,"SourceStructureID":70460,"TargetStructureID":6117,"Label":"70460-6117 via Conventional from 70464 -> 70465","Type":"Conventional","Directional":true,"Links":[{"SourceID":70464,"TargetID":70465,"Directional":true}]},{"ID":16085,"SourceStructureID":70466,"TargetStructureID":6117,"Label":"70466-6117 via Conventional from 70468 -> 70467","Type":"Conventional","Directional":true,"Links":[{"SourceID":70468,"TargetID":70467,"Directional":true}]},{"ID":16086,"SourceStructureID":70469,"TargetStructureID":606,"Label":"70469-606 via Conventional from 70470 -> 10543","Type":"Conventional","Directional":true,"Links":[{"SourceID":70470,"TargetID":10543,"Directional":true}]},{"ID":16087,"SourceStructureID":70471,"TargetStructureID":6117,"Label":"70471-6117 via Conventional from 70472 -> 30935","Type":"Conventional","Directional":true,"Links":[{"SourceID":70472,"TargetID":30935,"Directional":true}]},{"ID":16088,"SourceStructureID":70476,"TargetStructureID":6117,"Label":"70476-6117 via Conventional from 70479 -> 70480","Type":"Conventional","Directional":true,"Links":[{"SourceID":70479,"TargetID":70480,"Directional":true}]},{"ID":16089,"SourceStructureID":70481,"TargetStructureID":6117,"Label":"70481-6117 via Conventional from 70482 -> 70483","Type":"Conventional","Directional":true,"Links":[{"SourceID":70482,"TargetID":70483,"Directional":true}]},{"ID":16090,"SourceStructureID":70485,"TargetStructureID":606,"Label":"70485-606 via Conventional from 70486 -> 10054","Type":"Conventional","Directional":true,"Links":[{"SourceID":70486,"TargetID":10054,"Directional":true}]},{"ID":16091,"SourceStructureID":70487,"TargetStructureID":6117,"Label":"70487-6117 via Conventional from 70488 -> 70489","Type":"Conventional","Directional":true,"Links":[{"SourceID":70488,"TargetID":70489,"Directional":true}]},{"ID":16092,"SourceStructureID":70495,"TargetStructureID":606,"Label":"70495-606 via Conventional from 70496 -> 48507","Type":"Conventional","Directional":true,"Links":[{"SourceID":70496,"TargetID":48507,"Directional":true}]},{"ID":16093,"SourceStructureID":70500,"TargetStructureID":5630,"Label":"70500-5630 via Conventional from 129052 -> 129061","Type":"Conventional","Directional":true,"Links":[{"SourceID":129052,"TargetID":129061,"Directional":true}]},{"ID":16094,"SourceStructureID":70514,"TargetStructureID":8589,"Label":"70514-8589 via Conventional from 70516 -> 70517","Type":"Conventional","Directional":true,"Links":[{"SourceID":70516,"TargetID":70517,"Directional":true}]},{"ID":16095,"SourceStructureID":70518,"TargetStructureID":419,"Label":"70518-419 via Conventional from 132601 -> 132600, 133542 -> 133541","Type":"Conventional","Directional":true,"Links":[{"SourceID":132601,"TargetID":132600,"Directional":true},{"SourceID":133542,"TargetID":133541,"Directional":true}]},{"ID":16096,"SourceStructureID":70529,"TargetStructureID":68539,"Label":"70529-68539 via Conventional from 70530 -> 70531","Type":"Conventional","Directional":true,"Links":[{"SourceID":70530,"TargetID":70531,"Directional":true}]},{"ID":16097,"SourceStructureID":70533,"TargetStructureID":5439,"Label":"70533-5439 via Conventional from 70534 -> 66550","Type":"Conventional","Directional":true,"Links":[{"SourceID":70534,"TargetID":66550,"Directional":true}]},{"ID":16098,"SourceStructureID":70535,"TargetStructureID":5439,"Label":"70535-5439 via Conventional from 70537 -> 66585","Type":"Conventional","Directional":true,"Links":[{"SourceID":70537,"TargetID":66585,"Directional":true}]},{"ID":16099,"SourceStructureID":70540,"TargetStructureID":5439,"Label":"70540-5439 via Conventional from 70541 -> 70542","Type":"Conventional","Directional":true,"Links":[{"SourceID":70541,"TargetID":70542,"Directional":true}]},{"ID":16100,"SourceStructureID":70544,"TargetStructureID":5439,"Label":"70544-5439 via Conventional from 70546 -> 70543","Type":"Conventional","Directional":true,"Links":[{"SourceID":70546,"TargetID":70543,"Directional":true}]},{"ID":16101,"SourceStructureID":70552,"TargetStructureID":5439,"Label":"70552-5439 via Conventional from 70553 -> 70554","Type":"Conventional","Directional":true,"Links":[{"SourceID":70553,"TargetID":70554,"Directional":true}]},{"ID":16102,"SourceStructureID":70559,"TargetStructureID":5439,"Label":"70559-5439 via Conventional from 70560 -> 66580","Type":"Conventional","Directional":true,"Links":[{"SourceID":70560,"TargetID":66580,"Directional":true}]},{"ID":16103,"SourceStructureID":70566,"TargetStructureID":5439,"Label":"70566-5439 via Conventional from 70567 -> 66566","Type":"Conventional","Directional":true,"Links":[{"SourceID":70567,"TargetID":66566,"Directional":true}]},{"ID":16104,"SourceStructureID":70570,"TargetStructureID":5439,"Label":"70570-5439 via Conventional from 70571 -> 66568","Type":"Conventional","Directional":true,"Links":[{"SourceID":70571,"TargetID":66568,"Directional":true}]},{"ID":16105,"SourceStructureID":70572,"TargetStructureID":166,"Label":"70572-166 via Conventional from 70573 -> 70575","Type":"Conventional","Directional":true,"Links":[{"SourceID":70573,"TargetID":70575,"Directional":true}]},{"ID":16106,"SourceStructureID":70572,"TargetStructureID":29198,"Label":"70572-29198 via Conventional from 70576 -> 29223","Type":"Conventional","Directional":true,"Links":[{"SourceID":70576,"TargetID":29223,"Directional":true}]},{"ID":16107,"SourceStructureID":70581,"TargetStructureID":5439,"Label":"70581-5439 via Conventional from 70582 -> 66571","Type":"Conventional","Directional":true,"Links":[{"SourceID":70582,"TargetID":66571,"Directional":true}]},{"ID":16108,"SourceStructureID":70581,"TargetStructureID":6857,"Label":"70581-6857 via Conventional from 70583 -> 7491","Type":"Conventional","Directional":true,"Links":[{"SourceID":70583,"TargetID":7491,"Directional":true}]},{"ID":16109,"SourceStructureID":70588,"TargetStructureID":5439,"Label":"70588-5439 via Conventional from 70590 -> 70591","Type":"Conventional","Directional":true,"Links":[{"SourceID":70590,"TargetID":70591,"Directional":true}]},{"ID":16110,"SourceStructureID":70593,"TargetStructureID":318,"Label":"70593-318 via Conventional from 70595 -> 70597","Type":"Conventional","Directional":true,"Links":[{"SourceID":70595,"TargetID":70597,"Directional":true}]},{"ID":16111,"SourceStructureID":70593,"TargetStructureID":5439,"Label":"70593-5439 via Conventional from 70607 -> 70608","Type":"Conventional","Directional":true,"Links":[{"SourceID":70607,"TargetID":70608,"Directional":true}]},{"ID":16112,"SourceStructureID":70593,"TargetStructureID":70599,"Label":"70593-70599 via Conventional from 70598 -> 70600","Type":"Conventional","Directional":true,"Links":[{"SourceID":70598,"TargetID":70600,"Directional":true}]},{"ID":16113,"SourceStructureID":70601,"TargetStructureID":69537,"Label":"70601-69537 via Conventional from 70603 -> 69769","Type":"Conventional","Directional":true,"Links":[{"SourceID":70603,"TargetID":69769,"Directional":true}]},{"ID":16114,"SourceStructureID":70601,"TargetStructureID":70593,"Label":"70601-70593 via Conventional from 70602 -> 70594","Type":"Conventional","Directional":true,"Links":[{"SourceID":70602,"TargetID":70594,"Directional":true}]},{"ID":16115,"SourceStructureID":70605,"TargetStructureID":70593,"Label":"70605-70593 via Conventional from 70606 -> 70604","Type":"Conventional","Directional":true,"Links":[{"SourceID":70606,"TargetID":70604,"Directional":true}]},{"ID":16116,"SourceStructureID":70612,"TargetStructureID":483,"Label":"70612-483 via Conventional from 70614 -> 6748","Type":"Conventional","Directional":true,"Links":[{"SourceID":70614,"TargetID":6748,"Directional":true}]},{"ID":16117,"SourceStructureID":70618,"TargetStructureID":70623,"Label":"70618-70623 via Conventional from 70620 -> 70625","Type":"Conventional","Directional":true,"Links":[{"SourceID":70620,"TargetID":70625,"Directional":true}]},{"ID":16118,"SourceStructureID":70621,"TargetStructureID":70623,"Label":"70621-70623 via Conventional from 70622 -> 70624","Type":"Conventional","Directional":true,"Links":[{"SourceID":70622,"TargetID":70624,"Directional":true}]},{"ID":16119,"SourceStructureID":70628,"TargetStructureID":5439,"Label":"70628-5439 via Conventional from 70629 -> 70627","Type":"Conventional","Directional":true,"Links":[{"SourceID":70629,"TargetID":70627,"Directional":true}]},{"ID":16120,"SourceStructureID":70632,"TargetStructureID":5439,"Label":"70632-5439 via Conventional from 70634 -> 70635","Type":"Conventional","Directional":true,"Links":[{"SourceID":70634,"TargetID":70635,"Directional":true}]},{"ID":16121,"SourceStructureID":70640,"TargetStructureID":5439,"Label":"70640-5439 via Conventional from 70641 -> 70642","Type":"Conventional","Directional":true,"Links":[{"SourceID":70641,"TargetID":70642,"Directional":true}]},{"ID":16122,"SourceStructureID":70646,"TargetStructureID":44346,"Label":"70646-44346 via Conventional from 70647 -> 44349","Type":"Conventional","Directional":true,"Links":[{"SourceID":70647,"TargetID":44349,"Directional":true}]},{"ID":16123,"SourceStructureID":70648,"TargetStructureID":5439,"Label":"70648-5439 via Conventional from 70649 -> 66599","Type":"Conventional","Directional":true,"Links":[{"SourceID":70649,"TargetID":66599,"Directional":true}]},{"ID":16124,"SourceStructureID":70651,"TargetStructureID":5439,"Label":"70651-5439 via Conventional from 70652 -> 66598","Type":"Conventional","Directional":true,"Links":[{"SourceID":70652,"TargetID":66598,"Directional":true}]},{"ID":16125,"SourceStructureID":70653,"TargetStructureID":5439,"Label":"70653-5439 via Conventional from 70654 -> 66605","Type":"Conventional","Directional":true,"Links":[{"SourceID":70654,"TargetID":66605,"Directional":true}]},{"ID":16126,"SourceStructureID":70655,"TargetStructureID":5439,"Label":"70655-5439 via Conventional from 70656 -> 66602","Type":"Conventional","Directional":true,"Links":[{"SourceID":70656,"TargetID":66602,"Directional":true}]},{"ID":16127,"SourceStructureID":70659,"TargetStructureID":70655,"Label":"70659-70655 via Conventional from 70660 -> 70657","Type":"Conventional","Directional":true,"Links":[{"SourceID":70660,"TargetID":70657,"Directional":true}]},{"ID":16128,"SourceStructureID":70663,"TargetStructureID":5439,"Label":"70663-5439 via Conventional from 70666 -> 66601","Type":"Conventional","Directional":true,"Links":[{"SourceID":70666,"TargetID":66601,"Directional":true}]},{"ID":16129,"SourceStructureID":70667,"TargetStructureID":5439,"Label":"70667-5439 via Conventional from 70668 -> 66597","Type":"Conventional","Directional":true,"Links":[{"SourceID":70668,"TargetID":66597,"Directional":true}]},{"ID":16130,"SourceStructureID":70674,"TargetStructureID":5439,"Label":"70674-5439 via Conventional from 70675 -> 70676","Type":"Conventional","Directional":true,"Links":[{"SourceID":70675,"TargetID":70676,"Directional":true}]},{"ID":16131,"SourceStructureID":70677,"TargetStructureID":5439,"Label":"70677-5439 via Conventional from 70678 -> 66615","Type":"Conventional","Directional":true,"Links":[{"SourceID":70678,"TargetID":66615,"Directional":true}]},{"ID":16132,"SourceStructureID":70682,"TargetStructureID":5439,"Label":"70682-5439 via Conventional from 70683 -> 66619","Type":"Conventional","Directional":true,"Links":[{"SourceID":70683,"TargetID":66619,"Directional":true}]},{"ID":16133,"SourceStructureID":70684,"TargetStructureID":5536,"Label":"70684-5536 via Conventional from 70688 -> 70687, 70690 -> 33296","Type":"Conventional","Directional":true,"Links":[{"SourceID":70688,"TargetID":70687,"Directional":true},{"SourceID":70690,"TargetID":33296,"Directional":true}]},{"ID":16134,"SourceStructureID":70684,"TargetStructureID":70709,"Label":"70684-70709 via Conventional from 70708 -> 70710","Type":"Conventional","Directional":true,"Links":[{"SourceID":70708,"TargetID":70710,"Directional":true}]},{"ID":16135,"SourceStructureID":70684,"TargetStructureID":70721,"Label":"70684-70721 via Conventional from 70720 -> 70722","Type":"Conventional","Directional":true,"Links":[{"SourceID":70720,"TargetID":70722,"Directional":true}]},{"ID":16136,"SourceStructureID":70693,"TargetStructureID":70684,"Label":"70693-70684 via Conventional from 70694 -> 70692","Type":"Conventional","Directional":true,"Links":[{"SourceID":70694,"TargetID":70692,"Directional":true}]},{"ID":16137,"SourceStructureID":70697,"TargetStructureID":70684,"Label":"70697-70684 via Conventional from 70698 -> 70696","Type":"Conventional","Directional":true,"Links":[{"SourceID":70698,"TargetID":70696,"Directional":true}]},{"ID":16138,"SourceStructureID":70699,"TargetStructureID":70684,"Label":"70699-70684 via Conventional from 70700 -> 70701","Type":"Conventional","Directional":true,"Links":[{"SourceID":70700,"TargetID":70701,"Directional":true}]},{"ID":16139,"SourceStructureID":70699,"TargetStructureID":70703,"Label":"70699-70703 via Conventional from 70702 -> 70704","Type":"Conventional","Directional":true,"Links":[{"SourceID":70702,"TargetID":70704,"Directional":true}]},{"ID":16140,"SourceStructureID":70706,"TargetStructureID":70684,"Label":"70706-70684 via Conventional from 70707 -> 70705","Type":"Conventional","Directional":true,"Links":[{"SourceID":70707,"TargetID":70705,"Directional":true}]},{"ID":16141,"SourceStructureID":70712,"TargetStructureID":70684,"Label":"70712-70684 via Conventional from 70713 -> 70711, 70716 -> 70717","Type":"Conventional","Directional":true,"Links":[{"SourceID":70713,"TargetID":70711,"Directional":true},{"SourceID":70716,"TargetID":70717,"Directional":true}]},{"ID":16142,"SourceStructureID":70729,"TargetStructureID":70684,"Label":"70729-70684 via Conventional from 70730 -> 70726","Type":"Conventional","Directional":true,"Links":[{"SourceID":70730,"TargetID":70726,"Directional":true}]},{"ID":16143,"SourceStructureID":70732,"TargetStructureID":70684,"Label":"70732-70684 via Conventional from 70733 -> 70731","Type":"Conventional","Directional":true,"Links":[{"SourceID":70733,"TargetID":70731,"Directional":true}]},{"ID":16144,"SourceStructureID":70735,"TargetStructureID":70684,"Label":"70735-70684 via Conventional from 70736 -> 70734","Type":"Conventional","Directional":true,"Links":[{"SourceID":70736,"TargetID":70734,"Directional":true}]},{"ID":16145,"SourceStructureID":70737,"TargetStructureID":70684,"Label":"70737-70684 via Conventional from 70738 -> 70739","Type":"Conventional","Directional":true,"Links":[{"SourceID":70738,"TargetID":70739,"Directional":true}]},{"ID":16146,"SourceStructureID":70740,"TargetStructureID":58696,"Label":"70740-58696 via Conventional from 70741 -> 58698","Type":"Conventional","Directional":true,"Links":[{"SourceID":70741,"TargetID":58698,"Directional":true}]},{"ID":16147,"SourceStructureID":70743,"TargetStructureID":5439,"Label":"70743-5439 via Conventional from 70744 -> 66610","Type":"Conventional","Directional":true,"Links":[{"SourceID":70744,"TargetID":66610,"Directional":true}]},{"ID":16148,"SourceStructureID":70745,"TargetStructureID":5439,"Label":"70745-5439 via Conventional from 70746 -> 66609","Type":"Conventional","Directional":true,"Links":[{"SourceID":70746,"TargetID":66609,"Directional":true}]},{"ID":16149,"SourceStructureID":70747,"TargetStructureID":5439,"Label":"70747-5439 via Conventional from 70748 -> 66608","Type":"Conventional","Directional":true,"Links":[{"SourceID":70748,"TargetID":66608,"Directional":true}]},{"ID":16150,"SourceStructureID":70757,"TargetStructureID":5118,"Label":"70757-5118 via Conventional from 70758 -> 70759","Type":"Conventional","Directional":true,"Links":[{"SourceID":70758,"TargetID":70759,"Directional":true}]},{"ID":16151,"SourceStructureID":70761,"TargetStructureID":15977,"Label":"70761-15977 via Conventional from 70762 -> 70760","Type":"Conventional","Directional":true,"Links":[{"SourceID":70762,"TargetID":70760,"Directional":true}]},{"ID":16152,"SourceStructureID":70770,"TargetStructureID":5439,"Label":"70770-5439 via Conventional from 70771 -> 70772","Type":"Conventional","Directional":true,"Links":[{"SourceID":70771,"TargetID":70772,"Directional":true}]},{"ID":16153,"SourceStructureID":70774,"TargetStructureID":70770,"Label":"70774-70770 via Conventional from 70775 -> 70773","Type":"Conventional","Directional":true,"Links":[{"SourceID":70775,"TargetID":70773,"Directional":true}]},{"ID":16154,"SourceStructureID":70778,"TargetStructureID":410,"Label":"70778-410 via Conventional from 70779 -> 21373","Type":"Conventional","Directional":true,"Links":[{"SourceID":70779,"TargetID":21373,"Directional":true}]},{"ID":16155,"SourceStructureID":70785,"TargetStructureID":410,"Label":"70785-410 via Conventional from 70786 -> 21551","Type":"Conventional","Directional":true,"Links":[{"SourceID":70786,"TargetID":21551,"Directional":true}]},{"ID":16156,"SourceStructureID":70789,"TargetStructureID":70795,"Label":"70789-70795 via Conventional from 70793 -> 70796","Type":"Conventional","Directional":true,"Links":[{"SourceID":70793,"TargetID":70796,"Directional":true}]},{"ID":16157,"SourceStructureID":70791,"TargetStructureID":410,"Label":"70791-410 via Conventional from 70792 -> 22632","Type":"Conventional","Directional":true,"Links":[{"SourceID":70792,"TargetID":22632,"Directional":true}]},{"ID":16158,"SourceStructureID":70809,"TargetStructureID":65623,"Label":"70809-65623 via Conventional from 70810 -> 70811","Type":"Conventional","Directional":true,"Links":[{"SourceID":70810,"TargetID":70811,"Directional":true}]},{"ID":16159,"SourceStructureID":70814,"TargetStructureID":410,"Label":"70814-410 via Conventional from 70815 -> 18280","Type":"Conventional","Directional":true,"Links":[{"SourceID":70815,"TargetID":18280,"Directional":true}]},{"ID":16160,"SourceStructureID":70820,"TargetStructureID":6589,"Label":"70820-6589 via Conventional from 70829 -> 9601","Type":"Conventional","Directional":true,"Links":[{"SourceID":70829,"TargetID":9601,"Directional":true}]},{"ID":16161,"SourceStructureID":70820,"TargetStructureID":13855,"Label":"70820-13855 via Conventional from 70821 -> 70819, 70830 -> 70831","Type":"Conventional","Directional":true,"Links":[{"SourceID":70821,"TargetID":70819,"Directional":true},{"SourceID":70830,"TargetID":70831,"Directional":true}]},{"ID":16162,"SourceStructureID":70820,"TargetStructureID":70833,"Label":"70820-70833 via Conventional from 70832 -> 70834","Type":"Conventional","Directional":true,"Links":[{"SourceID":70832,"TargetID":70834,"Directional":true}]},{"ID":16163,"SourceStructureID":70820,"TargetStructureID":70868,"Label":"70820-70868 via Conventional from 70867 -> 70872","Type":"Conventional","Directional":true,"Links":[{"SourceID":70867,"TargetID":70872,"Directional":true}]},{"ID":16164,"SourceStructureID":70833,"TargetStructureID":410,"Label":"70833-410 via Conventional from 70865 -> 8368, 70866 -> 17332","Type":"Conventional","Directional":true,"Links":[{"SourceID":70865,"TargetID":8368,"Directional":true},{"SourceID":70866,"TargetID":17332,"Directional":true}]},{"ID":16165,"SourceStructureID":70840,"TargetStructureID":5439,"Label":"70840-5439 via Conventional from 70841 -> 70842","Type":"Conventional","Directional":true,"Links":[{"SourceID":70841,"TargetID":70842,"Directional":true}]},{"ID":16166,"SourceStructureID":70845,"TargetStructureID":5439,"Label":"70845-5439 via Conventional from 70846 -> 70847","Type":"Conventional","Directional":true,"Links":[{"SourceID":70846,"TargetID":70847,"Directional":true}]},{"ID":16167,"SourceStructureID":70851,"TargetStructureID":5439,"Label":"70851-5439 via Conventional from 70852 -> 70850","Type":"Conventional","Directional":true,"Links":[{"SourceID":70852,"TargetID":70850,"Directional":true}]},{"ID":16168,"SourceStructureID":70868,"TargetStructureID":485,"Label":"70868-485 via Conventional from 70882 -> 101272","Type":"Conventional","Directional":true,"Links":[{"SourceID":70882,"TargetID":101272,"Directional":true}]},{"ID":16169,"SourceStructureID":70868,"TargetStructureID":66958,"Label":"70868-66958 via Conventional from 70087 -> 70088","Type":"Conventional","Directional":true,"Links":[{"SourceID":70087,"TargetID":70088,"Directional":true}]},{"ID":16170,"SourceStructureID":70868,"TargetStructureID":70878,"Label":"70868-70878 via Conventional from 70873 -> 70881","Type":"Conventional","Directional":true,"Links":[{"SourceID":70873,"TargetID":70881,"Directional":true}]},{"ID":16171,"SourceStructureID":70878,"TargetStructureID":485,"Label":"70878-485 via Conventional from 70879 -> 70875","Type":"Conventional","Directional":true,"Links":[{"SourceID":70879,"TargetID":70875,"Directional":true}]},{"ID":16172,"SourceStructureID":70901,"TargetStructureID":419,"Label":"70901-419 via Conventional from 70902 -> 70900","Type":"Conventional","Directional":true,"Links":[{"SourceID":70902,"TargetID":70900,"Directional":true}]},{"ID":16173,"SourceStructureID":70903,"TargetStructureID":13855,"Label":"70903-13855 via Conventional from 70904 -> 36324","Type":"Conventional","Directional":true,"Links":[{"SourceID":70904,"TargetID":36324,"Directional":true}]},{"ID":16174,"SourceStructureID":70906,"TargetStructureID":419,"Label":"70906-419 via Conventional from 70907 -> 70905","Type":"Conventional","Directional":true,"Links":[{"SourceID":70907,"TargetID":70905,"Directional":true}]},{"ID":16175,"SourceStructureID":70909,"TargetStructureID":13855,"Label":"70909-13855 via Conventional from 70910 -> 70908","Type":"Conventional","Directional":true,"Links":[{"SourceID":70910,"TargetID":70908,"Directional":true}]},{"ID":16176,"SourceStructureID":70912,"TargetStructureID":13855,"Label":"70912-13855 via Conventional from 70913 -> 70911","Type":"Conventional","Directional":true,"Links":[{"SourceID":70913,"TargetID":70911,"Directional":true}]},{"ID":16177,"SourceStructureID":71041,"TargetStructureID":4890,"Label":"71041-4890 via Conventional from 71042 -> 19990","Type":"Conventional","Directional":true,"Links":[{"SourceID":71042,"TargetID":19990,"Directional":true}]},{"ID":16178,"SourceStructureID":71043,"TargetStructureID":397,"Label":"71043-397 via Conventional from 71045 -> 71046","Type":"Conventional","Directional":true,"Links":[{"SourceID":71045,"TargetID":71046,"Directional":true}]},{"ID":16179,"SourceStructureID":71043,"TargetStructureID":4890,"Label":"71043-4890 via Conventional from 71044 -> 19995","Type":"Conventional","Directional":true,"Links":[{"SourceID":71044,"TargetID":19995,"Directional":true}]},{"ID":16180,"SourceStructureID":71057,"TargetStructureID":4890,"Label":"71057-4890 via Conventional from 71058 -> 7919","Type":"Conventional","Directional":true,"Links":[{"SourceID":71058,"TargetID":7919,"Directional":true}]},{"ID":16181,"SourceStructureID":71063,"TargetStructureID":5631,"Label":"71063-5631 via Conventional from 71064 -> 71062","Type":"Conventional","Directional":true,"Links":[{"SourceID":71064,"TargetID":71062,"Directional":true}]},{"ID":16182,"SourceStructureID":71073,"TargetStructureID":166,"Label":"71073-166 via Conventional from 71079 -> 71080","Type":"Conventional","Directional":true,"Links":[{"SourceID":71079,"TargetID":71080,"Directional":true}]},{"ID":16183,"SourceStructureID":71091,"TargetStructureID":483,"Label":"71091-483 via Conventional from 71093 -> 71092","Type":"Conventional","Directional":true,"Links":[{"SourceID":71093,"TargetID":71092,"Directional":true}]},{"ID":16184,"SourceStructureID":71098,"TargetStructureID":483,"Label":"71098-483 via Conventional from 71099 -> 71101","Type":"Conventional","Directional":true,"Links":[{"SourceID":71099,"TargetID":71101,"Directional":true}]},{"ID":16185,"SourceStructureID":71118,"TargetStructureID":5711,"Label":"71118-5711 via Conventional from 71147 -> 71148","Type":"Conventional","Directional":true,"Links":[{"SourceID":71147,"TargetID":71148,"Directional":true}]},{"ID":16186,"SourceStructureID":71118,"TargetStructureID":71125,"Label":"71118-71125 via Conventional from 71121 -> 71127","Type":"Conventional","Directional":true,"Links":[{"SourceID":71121,"TargetID":71127,"Directional":true}]},{"ID":16187,"SourceStructureID":71125,"TargetStructureID":71118,"Label":"71125-71118 via Conventional from 71126 -> 71124","Type":"Conventional","Directional":true,"Links":[{"SourceID":71126,"TargetID":71124,"Directional":true}]},{"ID":16188,"SourceStructureID":71133,"TargetStructureID":483,"Label":"71133-483 via Conventional from 71139 -> 71141","Type":"Conventional","Directional":true,"Links":[{"SourceID":71139,"TargetID":71141,"Directional":true}]},{"ID":16189,"SourceStructureID":71135,"TargetStructureID":71118,"Label":"71135-71118 via Ribbon Synapse from 71140 -> 71132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71140,"TargetID":71132,"Directional":true}]},{"ID":16190,"SourceStructureID":71152,"TargetStructureID":71118,"Label":"71152-71118 via Conventional from 71156 -> 71150","Type":"Conventional","Directional":true,"Links":[{"SourceID":71156,"TargetID":71150,"Directional":true}]},{"ID":16191,"SourceStructureID":71155,"TargetStructureID":483,"Label":"71155-483 via Conventional from 71197 -> 71198","Type":"Conventional","Directional":true,"Links":[{"SourceID":71197,"TargetID":71198,"Directional":true}]},{"ID":16192,"SourceStructureID":71202,"TargetStructureID":483,"Label":"71202-483 via Conventional from 71203 -> 71205","Type":"Conventional","Directional":true,"Links":[{"SourceID":71203,"TargetID":71205,"Directional":true}]},{"ID":16193,"SourceStructureID":71202,"TargetStructureID":71202,"Label":"71202-71202 via Conventional from 71253 -> 71254","Type":"Conventional","Directional":true,"Links":[{"SourceID":71253,"TargetID":71254,"Directional":true}]},{"ID":16194,"SourceStructureID":71219,"TargetStructureID":483,"Label":"71219-483 via Conventional from 71220 -> 71221","Type":"Conventional","Directional":true,"Links":[{"SourceID":71220,"TargetID":71221,"Directional":true}]},{"ID":16195,"SourceStructureID":71227,"TargetStructureID":911,"Label":"71227-911 via Conventional from 71231 -> 943","Type":"Conventional","Directional":true,"Links":[{"SourceID":71231,"TargetID":943,"Directional":true}]},{"ID":16196,"SourceStructureID":71227,"TargetStructureID":2610,"Label":"71227-2610 via Conventional from 71228 -> 2728","Type":"Conventional","Directional":true,"Links":[{"SourceID":71228,"TargetID":2728,"Directional":true}]},{"ID":16197,"SourceStructureID":71240,"TargetStructureID":483,"Label":"71240-483 via Conventional from 71353 -> 71354","Type":"Conventional","Directional":true,"Links":[{"SourceID":71353,"TargetID":71354,"Directional":true}]},{"ID":16198,"SourceStructureID":71242,"TargetStructureID":70599,"Label":"71242-70599 via Conventional from 71255 -> 71256","Type":"Conventional","Directional":true,"Links":[{"SourceID":71255,"TargetID":71256,"Directional":true}]},{"ID":16199,"SourceStructureID":71281,"TargetStructureID":2610,"Label":"71281-2610 via Conventional from 71282 -> 2620","Type":"Conventional","Directional":true,"Links":[{"SourceID":71282,"TargetID":2620,"Directional":true}]},{"ID":16200,"SourceStructureID":71288,"TargetStructureID":483,"Label":"71288-483 via Conventional from 71290 -> 71291, 71294 -> 71295, 71387 -> 71388","Type":"Conventional","Directional":true,"Links":[{"SourceID":71290,"TargetID":71291,"Directional":true},{"SourceID":71294,"TargetID":71295,"Directional":true},{"SourceID":71387,"TargetID":71388,"Directional":true}]},{"ID":16201,"SourceStructureID":71302,"TargetStructureID":308,"Label":"71302-308 via Conventional from 71303 -> 42628","Type":"Conventional","Directional":true,"Links":[{"SourceID":71303,"TargetID":42628,"Directional":true}]},{"ID":16202,"SourceStructureID":71322,"TargetStructureID":8589,"Label":"71322-8589 via Conventional from 71323 -> 71324","Type":"Conventional","Directional":true,"Links":[{"SourceID":71323,"TargetID":71324,"Directional":true}]},{"ID":16203,"SourceStructureID":71334,"TargetStructureID":66634,"Label":"71334-66634 via Conventional from 71335 -> 71336","Type":"Conventional","Directional":true,"Links":[{"SourceID":71335,"TargetID":71336,"Directional":true}]},{"ID":16204,"SourceStructureID":71351,"TargetStructureID":71895,"Label":"71351-71895 via Conventional from 71896 -> 71897","Type":"Conventional","Directional":true,"Links":[{"SourceID":71896,"TargetID":71897,"Directional":true}]},{"ID":16205,"SourceStructureID":71362,"TargetStructureID":483,"Label":"71362-483 via Conventional from 71363 -> 71364","Type":"Conventional","Directional":true,"Links":[{"SourceID":71363,"TargetID":71364,"Directional":true}]},{"ID":16206,"SourceStructureID":71369,"TargetStructureID":483,"Label":"71369-483 via Conventional from 71370 -> 71371","Type":"Conventional","Directional":true,"Links":[{"SourceID":71370,"TargetID":71371,"Directional":true}]},{"ID":16207,"SourceStructureID":71377,"TargetStructureID":483,"Label":"71377-483 via Conventional from 71378 -> 6745","Type":"Conventional","Directional":true,"Links":[{"SourceID":71378,"TargetID":6745,"Directional":true}]},{"ID":16208,"SourceStructureID":71395,"TargetStructureID":8589,"Label":"71395-8589 via Conventional from 71398 -> 71399","Type":"Conventional","Directional":true,"Links":[{"SourceID":71398,"TargetID":71399,"Directional":true}]},{"ID":16209,"SourceStructureID":71402,"TargetStructureID":573,"Label":"71402-573 via Conventional from 71403 -> 71401","Type":"Conventional","Directional":true,"Links":[{"SourceID":71403,"TargetID":71401,"Directional":true}]},{"ID":16210,"SourceStructureID":71419,"TargetStructureID":573,"Label":"71419-573 via Conventional from 71420 -> 71418","Type":"Conventional","Directional":true,"Links":[{"SourceID":71420,"TargetID":71418,"Directional":true}]},{"ID":16211,"SourceStructureID":71433,"TargetStructureID":166,"Label":"71433-166 via Conventional from 71448 -> 71449","Type":"Conventional","Directional":true,"Links":[{"SourceID":71448,"TargetID":71449,"Directional":true}]},{"ID":16212,"SourceStructureID":71435,"TargetStructureID":166,"Label":"71435-166 via Conventional from 71436 -> 71437","Type":"Conventional","Directional":true,"Links":[{"SourceID":71436,"TargetID":71437,"Directional":true}]},{"ID":16213,"SourceStructureID":71439,"TargetStructureID":166,"Label":"71439-166 via Conventional from 71447 -> 71446","Type":"Conventional","Directional":true,"Links":[{"SourceID":71447,"TargetID":71446,"Directional":true}]},{"ID":16214,"SourceStructureID":71472,"TargetStructureID":166,"Label":"71472-166 via Conventional from 71473 -> 71471","Type":"Conventional","Directional":true,"Links":[{"SourceID":71473,"TargetID":71471,"Directional":true}]},{"ID":16215,"SourceStructureID":71481,"TargetStructureID":372,"Label":"71481-372 via Conventional from 71482 -> 71483","Type":"Conventional","Directional":true,"Links":[{"SourceID":71482,"TargetID":71483,"Directional":true}]},{"ID":16216,"SourceStructureID":71491,"TargetStructureID":71517,"Label":"71491-71517 via Conventional from 71492 -> 71490","Type":"Conventional","Directional":true,"Links":[{"SourceID":71492,"TargetID":71490,"Directional":true}]},{"ID":16217,"SourceStructureID":71497,"TargetStructureID":71517,"Label":"71497-71517 via Conventional from 71498 -> 71496","Type":"Conventional","Directional":true,"Links":[{"SourceID":71498,"TargetID":71496,"Directional":true}]},{"ID":16218,"SourceStructureID":71507,"TargetStructureID":71517,"Label":"71507-71517 via Conventional from 71508 -> 71506","Type":"Conventional","Directional":true,"Links":[{"SourceID":71508,"TargetID":71506,"Directional":true}]},{"ID":16219,"SourceStructureID":71511,"TargetStructureID":6115,"Label":"71511-6115 via Conventional from 75018 -> 75019","Type":"Conventional","Directional":true,"Links":[{"SourceID":75018,"TargetID":75019,"Directional":true}]},{"ID":16220,"SourceStructureID":71511,"TargetStructureID":71517,"Label":"71511-71517 via Conventional from 71512 -> 71510","Type":"Conventional","Directional":true,"Links":[{"SourceID":71512,"TargetID":71510,"Directional":true}]},{"ID":16221,"SourceStructureID":71513,"TargetStructureID":6857,"Label":"71513-6857 via Conventional from 71516 -> 6893","Type":"Conventional","Directional":true,"Links":[{"SourceID":71516,"TargetID":6893,"Directional":true}]},{"ID":16222,"SourceStructureID":71517,"TargetStructureID":6857,"Label":"71517-6857 via Conventional from 66677 -> 6884, 71499 -> 6890, 71524 -> 7551, 71525 -> 6897, 71527 -> 7554, 72118 -> 6882, 72121 -> 7550, 75166 -> 75167","Type":"Conventional","Directional":true,"Links":[{"SourceID":66677,"TargetID":6884,"Directional":true},{"SourceID":71499,"TargetID":6890,"Directional":true},{"SourceID":71524,"TargetID":7551,"Directional":true},{"SourceID":71525,"TargetID":6897,"Directional":true},{"SourceID":71527,"TargetID":7554,"Directional":true},{"SourceID":72118,"TargetID":6882,"Directional":true},{"SourceID":72121,"TargetID":7550,"Directional":true},{"SourceID":75166,"TargetID":75167,"Directional":true}]},{"ID":16223,"SourceStructureID":71517,"TargetStructureID":11030,"Label":"71517-11030 via Conventional from 71500 -> 71636","Type":"Conventional","Directional":true,"Links":[{"SourceID":71500,"TargetID":71636,"Directional":true}]},{"ID":16224,"SourceStructureID":71517,"TargetStructureID":66323,"Label":"71517-66323 via Conventional from 84422 -> 84421","Type":"Conventional","Directional":true,"Links":[{"SourceID":84422,"TargetID":84421,"Directional":true}]},{"ID":16225,"SourceStructureID":71517,"TargetStructureID":71519,"Label":"71517-71519 via Conventional from 71518 -> 71520","Type":"Conventional","Directional":true,"Links":[{"SourceID":71518,"TargetID":71520,"Directional":true}]},{"ID":16226,"SourceStructureID":71538,"TargetStructureID":71517,"Label":"71538-71517 via Conventional from 71539 -> 71537","Type":"Conventional","Directional":true,"Links":[{"SourceID":71539,"TargetID":71537,"Directional":true}]},{"ID":16227,"SourceStructureID":71541,"TargetStructureID":372,"Label":"71541-372 via Conventional from 71542 -> 71543","Type":"Conventional","Directional":true,"Links":[{"SourceID":71542,"TargetID":71543,"Directional":true}]},{"ID":16228,"SourceStructureID":71545,"TargetStructureID":71517,"Label":"71545-71517 via Conventional from 71546 -> 71544","Type":"Conventional","Directional":true,"Links":[{"SourceID":71546,"TargetID":71544,"Directional":true}]},{"ID":16229,"SourceStructureID":71547,"TargetStructureID":372,"Label":"71547-372 via Conventional from 71548 -> 71549","Type":"Conventional","Directional":true,"Links":[{"SourceID":71548,"TargetID":71549,"Directional":true}]},{"ID":16230,"SourceStructureID":71556,"TargetStructureID":372,"Label":"71556-372 via Conventional from 71557 -> 71558","Type":"Conventional","Directional":true,"Links":[{"SourceID":71557,"TargetID":71558,"Directional":true}]},{"ID":16231,"SourceStructureID":71569,"TargetStructureID":372,"Label":"71569-372 via Conventional from 71570 -> 71571","Type":"Conventional","Directional":true,"Links":[{"SourceID":71570,"TargetID":71571,"Directional":true}]},{"ID":16232,"SourceStructureID":71574,"TargetStructureID":372,"Label":"71574-372 via Conventional from 71575 -> 71573","Type":"Conventional","Directional":true,"Links":[{"SourceID":71575,"TargetID":71573,"Directional":true}]},{"ID":16233,"SourceStructureID":71576,"TargetStructureID":372,"Label":"71576-372 via Conventional from 71577 -> 71579","Type":"Conventional","Directional":true,"Links":[{"SourceID":71577,"TargetID":71579,"Directional":true}]},{"ID":16234,"SourceStructureID":71580,"TargetStructureID":372,"Label":"71580-372 via Conventional from 71581 -> 71582","Type":"Conventional","Directional":true,"Links":[{"SourceID":71581,"TargetID":71582,"Directional":true}]},{"ID":16235,"SourceStructureID":71583,"TargetStructureID":372,"Label":"71583-372 via Conventional from 71584 -> 71585","Type":"Conventional","Directional":true,"Links":[{"SourceID":71584,"TargetID":71585,"Directional":true}]},{"ID":16236,"SourceStructureID":71588,"TargetStructureID":372,"Label":"71588-372 via Conventional from 71589 -> 71590","Type":"Conventional","Directional":true,"Links":[{"SourceID":71589,"TargetID":71590,"Directional":true}]},{"ID":16237,"SourceStructureID":71594,"TargetStructureID":71597,"Label":"71594-71597 via Conventional from 71627 -> 71628","Type":"Conventional","Directional":true,"Links":[{"SourceID":71627,"TargetID":71628,"Directional":true}]},{"ID":16238,"SourceStructureID":71597,"TargetStructureID":8589,"Label":"71597-8589 via BC Conventional Synapse from 71784 -> 71748","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71784,"TargetID":71748,"Directional":true}]},{"ID":16239,"SourceStructureID":71597,"TargetStructureID":8589,"Label":"71597-8589 via Ribbon Synapse from 71780 -> 71748","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71780,"TargetID":71748,"Directional":true}]},{"ID":16240,"SourceStructureID":71600,"TargetStructureID":71517,"Label":"71600-71517 via Conventional from 71601 -> 71599","Type":"Conventional","Directional":true,"Links":[{"SourceID":71601,"TargetID":71599,"Directional":true}]},{"ID":16241,"SourceStructureID":71610,"TargetStructureID":66634,"Label":"71610-66634 via Conventional from 71611 -> 71609","Type":"Conventional","Directional":true,"Links":[{"SourceID":71611,"TargetID":71609,"Directional":true}]},{"ID":16242,"SourceStructureID":71618,"TargetStructureID":66634,"Label":"71618-66634 via Conventional from 71619 -> 71617","Type":"Conventional","Directional":true,"Links":[{"SourceID":71619,"TargetID":71617,"Directional":true}]},{"ID":16243,"SourceStructureID":71626,"TargetStructureID":166,"Label":"71626-166 via Conventional from 71989 -> 71990, 71992 -> 71993","Type":"Conventional","Directional":true,"Links":[{"SourceID":71989,"TargetID":71990,"Directional":true},{"SourceID":71992,"TargetID":71993,"Directional":true}]},{"ID":16244,"SourceStructureID":71626,"TargetStructureID":71995,"Label":"71626-71995 via Conventional from 71994 -> 71996","Type":"Conventional","Directional":true,"Links":[{"SourceID":71994,"TargetID":71996,"Directional":true}]},{"ID":16245,"SourceStructureID":71632,"TargetStructureID":71517,"Label":"71632-71517 via Conventional from 71633 -> 71521","Type":"Conventional","Directional":true,"Links":[{"SourceID":71633,"TargetID":71521,"Directional":true}]},{"ID":16246,"SourceStructureID":71634,"TargetStructureID":5649,"Label":"71634-5649 via Conventional from 105698 -> 53938","Type":"Conventional","Directional":true,"Links":[{"SourceID":105698,"TargetID":53938,"Directional":true}]},{"ID":16247,"SourceStructureID":71634,"TargetStructureID":71517,"Label":"71634-71517 via Conventional from 71635 -> 71526","Type":"Conventional","Directional":true,"Links":[{"SourceID":71635,"TargetID":71526,"Directional":true}]},{"ID":16248,"SourceStructureID":71640,"TargetStructureID":8589,"Label":"71640-8589 via Conventional from 71647 -> 71664","Type":"Conventional","Directional":true,"Links":[{"SourceID":71647,"TargetID":71664,"Directional":true}]},{"ID":16249,"SourceStructureID":71671,"TargetStructureID":71730,"Label":"71671-71730 via Conventional from 71731 -> 71732, 71733 -> 71734, 71735 -> 71736","Type":"Conventional","Directional":true,"Links":[{"SourceID":71731,"TargetID":71732,"Directional":true},{"SourceID":71733,"TargetID":71734,"Directional":true},{"SourceID":71735,"TargetID":71736,"Directional":true}]},{"ID":16250,"SourceStructureID":71675,"TargetStructureID":71351,"Label":"71675-71351 via Conventional from 71676 -> 71674","Type":"Conventional","Directional":true,"Links":[{"SourceID":71676,"TargetID":71674,"Directional":true}]},{"ID":16251,"SourceStructureID":71678,"TargetStructureID":71351,"Label":"71678-71351 via Conventional from 71679 -> 71677","Type":"Conventional","Directional":true,"Links":[{"SourceID":71679,"TargetID":71677,"Directional":true}]},{"ID":16252,"SourceStructureID":71689,"TargetStructureID":6142,"Label":"71689-6142 via Conventional from 71690 -> 71688","Type":"Conventional","Directional":true,"Links":[{"SourceID":71690,"TargetID":71688,"Directional":true}]},{"ID":16253,"SourceStructureID":71722,"TargetStructureID":6857,"Label":"71722-6857 via Conventional from 71723 -> 71724","Type":"Conventional","Directional":true,"Links":[{"SourceID":71723,"TargetID":71724,"Directional":true}]},{"ID":16254,"SourceStructureID":71730,"TargetStructureID":71738,"Label":"71730-71738 via Ribbon Synapse from 71737 -> 71740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71737,"TargetID":71740,"Directional":true}]},{"ID":16255,"SourceStructureID":71730,"TargetStructureID":71739,"Label":"71730-71739 via Ribbon Synapse from 71737 -> 71741","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71737,"TargetID":71741,"Directional":true}]},{"ID":16256,"SourceStructureID":71730,"TargetStructureID":71767,"Label":"71730-71767 via Cistern Pre from 71818 -> 71819","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":71818,"TargetID":71819,"Directional":true}]},{"ID":16257,"SourceStructureID":71730,"TargetStructureID":71767,"Label":"71730-71767 via Ribbon Synapse from 71766 -> 71768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71766,"TargetID":71768,"Directional":true}]},{"ID":16258,"SourceStructureID":71738,"TargetStructureID":71730,"Label":"71738-71730 via Conventional from 71760 -> 71759, 71764 -> 71763","Type":"Conventional","Directional":true,"Links":[{"SourceID":71760,"TargetID":71759,"Directional":true},{"SourceID":71764,"TargetID":71763,"Directional":true}]},{"ID":16259,"SourceStructureID":71754,"TargetStructureID":71730,"Label":"71754-71730 via Conventional from 71757 -> 71756","Type":"Conventional","Directional":true,"Links":[{"SourceID":71757,"TargetID":71756,"Directional":true}]},{"ID":16260,"SourceStructureID":71767,"TargetStructureID":71730,"Label":"71767-71730 via Conventional from 71770 -> 71769, 71807 -> 71806","Type":"Conventional","Directional":true,"Links":[{"SourceID":71770,"TargetID":71769,"Directional":true},{"SourceID":71807,"TargetID":71806,"Directional":true}]},{"ID":16261,"SourceStructureID":71773,"TargetStructureID":8589,"Label":"71773-8589 via Ribbon Synapse from 71775 -> 71776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71775,"TargetID":71776,"Directional":true}]},{"ID":16262,"SourceStructureID":71781,"TargetStructureID":71730,"Label":"71781-71730 via Cistern Pre from 71820 -> 71821","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":71820,"TargetID":71821,"Directional":true}]},{"ID":16263,"SourceStructureID":71781,"TargetStructureID":71730,"Label":"71781-71730 via Conventional from 71822 -> 71823, 71834 -> 71833","Type":"Conventional","Directional":true,"Links":[{"SourceID":71822,"TargetID":71823,"Directional":true},{"SourceID":71834,"TargetID":71833,"Directional":true}]},{"ID":16264,"SourceStructureID":71790,"TargetStructureID":71730,"Label":"71790-71730 via Conventional from 71793 -> 71794, 71795 -> 71796","Type":"Conventional","Directional":true,"Links":[{"SourceID":71793,"TargetID":71794,"Directional":true},{"SourceID":71795,"TargetID":71796,"Directional":true}]},{"ID":16265,"SourceStructureID":71830,"TargetStructureID":321,"Label":"71830-321 via Conventional from 122110 -> 122111","Type":"Conventional","Directional":true,"Links":[{"SourceID":122110,"TargetID":122111,"Directional":true}]},{"ID":16266,"SourceStructureID":71830,"TargetStructureID":372,"Label":"71830-372 via Conventional from 71831 -> 71832","Type":"Conventional","Directional":true,"Links":[{"SourceID":71831,"TargetID":71832,"Directional":true}]},{"ID":16267,"SourceStructureID":71843,"TargetStructureID":372,"Label":"71843-372 via Conventional from 71844 -> 71845","Type":"Conventional","Directional":true,"Links":[{"SourceID":71844,"TargetID":71845,"Directional":true}]},{"ID":16268,"SourceStructureID":71853,"TargetStructureID":372,"Label":"71853-372 via Conventional from 71854 -> 71852","Type":"Conventional","Directional":true,"Links":[{"SourceID":71854,"TargetID":71852,"Directional":true}]},{"ID":16269,"SourceStructureID":71891,"TargetStructureID":180,"Label":"71891-180 via Conventional from 71892 -> 71893","Type":"Conventional","Directional":true,"Links":[{"SourceID":71892,"TargetID":71893,"Directional":true}]},{"ID":16270,"SourceStructureID":71906,"TargetStructureID":71911,"Label":"71906-71911 via Ribbon Synapse from 71907 -> 71912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71907,"TargetID":71912,"Directional":true}]},{"ID":16271,"SourceStructureID":71906,"TargetStructureID":71919,"Label":"71906-71919 via Ribbon Synapse from 71918 -> 71921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71918,"TargetID":71921,"Directional":true}]},{"ID":16272,"SourceStructureID":71906,"TargetStructureID":71920,"Label":"71906-71920 via Ribbon Synapse from 71918 -> 71922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71918,"TargetID":71922,"Directional":true}]},{"ID":16273,"SourceStructureID":71908,"TargetStructureID":71351,"Label":"71908-71351 via Conventional from 71909 -> 71910","Type":"Conventional","Directional":true,"Links":[{"SourceID":71909,"TargetID":71910,"Directional":true}]},{"ID":16274,"SourceStructureID":71915,"TargetStructureID":71906,"Label":"71915-71906 via Conventional from 71916 -> 71917","Type":"Conventional","Directional":true,"Links":[{"SourceID":71916,"TargetID":71917,"Directional":true}]},{"ID":16275,"SourceStructureID":71923,"TargetStructureID":69162,"Label":"71923-69162 via Conventional from 71924 -> 71925","Type":"Conventional","Directional":true,"Links":[{"SourceID":71924,"TargetID":71925,"Directional":true}]},{"ID":16276,"SourceStructureID":71927,"TargetStructureID":5284,"Label":"71927-5284 via Conventional from 71928 -> 98154","Type":"Conventional","Directional":true,"Links":[{"SourceID":71928,"TargetID":98154,"Directional":true}]},{"ID":16277,"SourceStructureID":71927,"TargetStructureID":15796,"Label":"71927-15796 via Conventional from 71929 -> 15820","Type":"Conventional","Directional":true,"Links":[{"SourceID":71929,"TargetID":15820,"Directional":true}]},{"ID":16278,"SourceStructureID":71935,"TargetStructureID":476,"Label":"71935-476 via Ribbon Synapse from 71942 -> 5721","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71942,"TargetID":5721,"Directional":true}]},{"ID":16279,"SourceStructureID":71935,"TargetStructureID":20299,"Label":"71935-20299 via Ribbon Synapse from 71941 -> 121510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71941,"TargetID":121510,"Directional":true}]},{"ID":16280,"SourceStructureID":71962,"TargetStructureID":71411,"Label":"71962-71411 via Conventional from 71966 -> 71960","Type":"Conventional","Directional":true,"Links":[{"SourceID":71966,"TargetID":71960,"Directional":true}]},{"ID":16281,"SourceStructureID":71985,"TargetStructureID":63487,"Label":"71985-63487 via Conventional from 71986 -> 71988","Type":"Conventional","Directional":true,"Links":[{"SourceID":71986,"TargetID":71988,"Directional":true}]},{"ID":16282,"SourceStructureID":71997,"TargetStructureID":71517,"Label":"71997-71517 via Conventional from 75005 -> 75004","Type":"Conventional","Directional":true,"Links":[{"SourceID":75005,"TargetID":75004,"Directional":true}]},{"ID":16283,"SourceStructureID":71998,"TargetStructureID":8720,"Label":"71998-8720 via Conventional from 71999 -> 64384","Type":"Conventional","Directional":true,"Links":[{"SourceID":71999,"TargetID":64384,"Directional":true}]},{"ID":16284,"SourceStructureID":72000,"TargetStructureID":8720,"Label":"72000-8720 via Conventional from 72001 -> 63172","Type":"Conventional","Directional":true,"Links":[{"SourceID":72001,"TargetID":63172,"Directional":true}]},{"ID":16285,"SourceStructureID":72003,"TargetStructureID":6115,"Label":"72003-6115 via Adherens from 75072 -> 75071","Type":"Adherens","Directional":true,"Links":[{"SourceID":75072,"TargetID":75071,"Directional":true}]},{"ID":16286,"SourceStructureID":72003,"TargetStructureID":6115,"Label":"72003-6115 via Conventional from 72006 -> 72007","Type":"Conventional","Directional":true,"Links":[{"SourceID":72006,"TargetID":72007,"Directional":true}]},{"ID":16287,"SourceStructureID":72031,"TargetStructureID":8589,"Label":"72031-8589 via Conventional from 72032 -> 72030","Type":"Conventional","Directional":true,"Links":[{"SourceID":72032,"TargetID":72030,"Directional":true}]},{"ID":16288,"SourceStructureID":72043,"TargetStructureID":72036,"Label":"72043-72036 via Conventional from 72044 -> 72042","Type":"Conventional","Directional":true,"Links":[{"SourceID":72044,"TargetID":72042,"Directional":true}]},{"ID":16289,"SourceStructureID":72074,"TargetStructureID":6115,"Label":"72074-6115 via Conventional from 72078 -> 37630","Type":"Conventional","Directional":true,"Links":[{"SourceID":72078,"TargetID":37630,"Directional":true}]},{"ID":16290,"SourceStructureID":72074,"TargetStructureID":72076,"Label":"72074-72076 via Conventional from 72150 -> 72149","Type":"Conventional","Directional":true,"Links":[{"SourceID":72150,"TargetID":72149,"Directional":true}]},{"ID":16291,"SourceStructureID":72087,"TargetStructureID":6115,"Label":"72087-6115 via Conventional from 72088 -> 37634","Type":"Conventional","Directional":true,"Links":[{"SourceID":72088,"TargetID":37634,"Directional":true}]},{"ID":16292,"SourceStructureID":72109,"TargetStructureID":8580,"Label":"72109-8580 via Conventional from 72110 -> 72111","Type":"Conventional","Directional":true,"Links":[{"SourceID":72110,"TargetID":72111,"Directional":true}]},{"ID":16293,"SourceStructureID":72124,"TargetStructureID":71517,"Label":"72124-71517 via Conventional from 72125 -> 71529","Type":"Conventional","Directional":true,"Links":[{"SourceID":72125,"TargetID":71529,"Directional":true}]},{"ID":16294,"SourceStructureID":72154,"TargetStructureID":71517,"Label":"72154-71517 via Conventional from 72156 -> 72155","Type":"Conventional","Directional":true,"Links":[{"SourceID":72156,"TargetID":72155,"Directional":true}]},{"ID":16295,"SourceStructureID":72162,"TargetStructureID":15796,"Label":"72162-15796 via Conventional from 82708 -> 15822","Type":"Conventional","Directional":true,"Links":[{"SourceID":82708,"TargetID":15822,"Directional":true}]},{"ID":16296,"SourceStructureID":72168,"TargetStructureID":5601,"Label":"72168-5601 via Conventional from 82958 -> 57192","Type":"Conventional","Directional":true,"Links":[{"SourceID":82958,"TargetID":57192,"Directional":true}]},{"ID":16297,"SourceStructureID":72168,"TargetStructureID":82950,"Label":"72168-82950 via Conventional from 82952 -> 82951","Type":"Conventional","Directional":true,"Links":[{"SourceID":82952,"TargetID":82951,"Directional":true}]},{"ID":16298,"SourceStructureID":72168,"TargetStructureID":82954,"Label":"72168-82954 via Conventional from 82953 -> 82957","Type":"Conventional","Directional":true,"Links":[{"SourceID":82953,"TargetID":82957,"Directional":true}]},{"ID":16299,"SourceStructureID":72168,"TargetStructureID":82965,"Label":"72168-82965 via Conventional from 82964 -> 82966","Type":"Conventional","Directional":true,"Links":[{"SourceID":82964,"TargetID":82966,"Directional":true}]},{"ID":16300,"SourceStructureID":72176,"TargetStructureID":6115,"Label":"72176-6115 via Conventional from 72177 -> 72178","Type":"Conventional","Directional":true,"Links":[{"SourceID":72177,"TargetID":72178,"Directional":true}]},{"ID":16301,"SourceStructureID":72183,"TargetStructureID":6115,"Label":"72183-6115 via Conventional from 72185 -> 20423","Type":"Conventional","Directional":true,"Links":[{"SourceID":72185,"TargetID":20423,"Directional":true}]},{"ID":16302,"SourceStructureID":72188,"TargetStructureID":6115,"Label":"72188-6115 via Conventional from 72190 -> 72191","Type":"Conventional","Directional":true,"Links":[{"SourceID":72190,"TargetID":72191,"Directional":true}]},{"ID":16303,"SourceStructureID":72210,"TargetStructureID":6115,"Label":"72210-6115 via Conventional from 72211 -> 55808","Type":"Conventional","Directional":true,"Links":[{"SourceID":72211,"TargetID":55808,"Directional":true}]},{"ID":16304,"SourceStructureID":72215,"TargetStructureID":6115,"Label":"72215-6115 via Conventional from 72216 -> 72217","Type":"Conventional","Directional":true,"Links":[{"SourceID":72216,"TargetID":72217,"Directional":true}]},{"ID":16305,"SourceStructureID":72218,"TargetStructureID":6115,"Label":"72218-6115 via Conventional from 72269 -> 72267","Type":"Conventional","Directional":true,"Links":[{"SourceID":72269,"TargetID":72267,"Directional":true}]},{"ID":16306,"SourceStructureID":72226,"TargetStructureID":6115,"Label":"72226-6115 via Conventional from 72230 -> 72231","Type":"Conventional","Directional":true,"Links":[{"SourceID":72230,"TargetID":72231,"Directional":true}]},{"ID":16307,"SourceStructureID":72252,"TargetStructureID":7113,"Label":"72252-7113 via Ribbon Synapse from 82982 -> 82983","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82982,"TargetID":82983,"Directional":true}]},{"ID":16308,"SourceStructureID":72252,"TargetStructureID":82977,"Label":"72252-82977 via Ribbon Synapse from 82982 -> 82984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82982,"TargetID":82984,"Directional":true}]},{"ID":16309,"SourceStructureID":72252,"TargetStructureID":82978,"Label":"72252-82978 via Ribbon Synapse from 82973 -> 82979","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82973,"TargetID":82979,"Directional":true}]},{"ID":16310,"SourceStructureID":72271,"TargetStructureID":6115,"Label":"72271-6115 via Conventional from 72277 -> 72278","Type":"Conventional","Directional":true,"Links":[{"SourceID":72277,"TargetID":72278,"Directional":true}]},{"ID":16311,"SourceStructureID":72281,"TargetStructureID":6115,"Label":"72281-6115 via Conventional from 72282 -> 72283","Type":"Conventional","Directional":true,"Links":[{"SourceID":72282,"TargetID":72283,"Directional":true}]},{"ID":16312,"SourceStructureID":72291,"TargetStructureID":6115,"Label":"72291-6115 via Conventional from 72292 -> 72293","Type":"Conventional","Directional":true,"Links":[{"SourceID":72292,"TargetID":72293,"Directional":true}]},{"ID":16313,"SourceStructureID":72301,"TargetStructureID":6115,"Label":"72301-6115 via Conventional from 72302 -> 72303","Type":"Conventional","Directional":true,"Links":[{"SourceID":72302,"TargetID":72303,"Directional":true}]},{"ID":16314,"SourceStructureID":72306,"TargetStructureID":6115,"Label":"72306-6115 via Conventional from 72307 -> 72308","Type":"Conventional","Directional":true,"Links":[{"SourceID":72307,"TargetID":72308,"Directional":true}]},{"ID":16315,"SourceStructureID":72309,"TargetStructureID":6115,"Label":"72309-6115 via Conventional from 72317 -> 72318","Type":"Conventional","Directional":true,"Links":[{"SourceID":72317,"TargetID":72318,"Directional":true}]},{"ID":16316,"SourceStructureID":72323,"TargetStructureID":6115,"Label":"72323-6115 via Conventional from 72324 -> 72325","Type":"Conventional","Directional":true,"Links":[{"SourceID":72324,"TargetID":72325,"Directional":true}]},{"ID":16317,"SourceStructureID":72335,"TargetStructureID":6115,"Label":"72335-6115 via Conventional from 72336 -> 72337","Type":"Conventional","Directional":true,"Links":[{"SourceID":72336,"TargetID":72337,"Directional":true}]},{"ID":16318,"SourceStructureID":72342,"TargetStructureID":6115,"Label":"72342-6115 via Conventional from 72343 -> 20430","Type":"Conventional","Directional":true,"Links":[{"SourceID":72343,"TargetID":20430,"Directional":true}]},{"ID":16319,"SourceStructureID":72344,"TargetStructureID":6115,"Label":"72344-6115 via Conventional from 72346 -> 72345","Type":"Conventional","Directional":true,"Links":[{"SourceID":72346,"TargetID":72345,"Directional":true}]},{"ID":16320,"SourceStructureID":72347,"TargetStructureID":6115,"Label":"72347-6115 via Conventional from 72349 -> 72348","Type":"Conventional","Directional":true,"Links":[{"SourceID":72349,"TargetID":72348,"Directional":true}]},{"ID":16321,"SourceStructureID":72350,"TargetStructureID":6115,"Label":"72350-6115 via Conventional from 72351 -> 72352","Type":"Conventional","Directional":true,"Links":[{"SourceID":72351,"TargetID":72352,"Directional":true}]},{"ID":16322,"SourceStructureID":72358,"TargetStructureID":6050,"Label":"72358-6050 via Conventional from 72361 -> 72362","Type":"Conventional","Directional":true,"Links":[{"SourceID":72361,"TargetID":72362,"Directional":true}]},{"ID":16323,"SourceStructureID":72379,"TargetStructureID":6115,"Label":"72379-6115 via Conventional from 72380 -> 72381","Type":"Conventional","Directional":true,"Links":[{"SourceID":72380,"TargetID":72381,"Directional":true}]},{"ID":16324,"SourceStructureID":72384,"TargetStructureID":68663,"Label":"72384-68663 via Conventional from 79049 -> 79050","Type":"Conventional","Directional":true,"Links":[{"SourceID":79049,"TargetID":79050,"Directional":true}]},{"ID":16325,"SourceStructureID":72385,"TargetStructureID":6115,"Label":"72385-6115 via Conventional from 72386 -> 55850","Type":"Conventional","Directional":true,"Links":[{"SourceID":72386,"TargetID":55850,"Directional":true}]},{"ID":16326,"SourceStructureID":72401,"TargetStructureID":6115,"Label":"72401-6115 via Conventional from 72421 -> 72420","Type":"Conventional","Directional":true,"Links":[{"SourceID":72421,"TargetID":72420,"Directional":true}]},{"ID":16327,"SourceStructureID":72402,"TargetStructureID":18282,"Label":"72402-18282 via Ribbon Synapse from 72404 -> 18327","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72404,"TargetID":18327,"Directional":true}]},{"ID":16328,"SourceStructureID":72408,"TargetStructureID":8580,"Label":"72408-8580 via Conventional from 72409 -> 72407","Type":"Conventional","Directional":true,"Links":[{"SourceID":72409,"TargetID":72407,"Directional":true}]},{"ID":16329,"SourceStructureID":72427,"TargetStructureID":593,"Label":"72427-593 via Conventional from 72428 -> 72429","Type":"Conventional","Directional":true,"Links":[{"SourceID":72428,"TargetID":72429,"Directional":true}]},{"ID":16330,"SourceStructureID":72441,"TargetStructureID":6115,"Label":"72441-6115 via Conventional from 72442 -> 72443","Type":"Conventional","Directional":true,"Links":[{"SourceID":72442,"TargetID":72443,"Directional":true}]},{"ID":16331,"SourceStructureID":72451,"TargetStructureID":6115,"Label":"72451-6115 via Conventional from 72452 -> 16055","Type":"Conventional","Directional":true,"Links":[{"SourceID":72452,"TargetID":16055,"Directional":true}]},{"ID":16332,"SourceStructureID":72453,"TargetStructureID":6115,"Label":"72453-6115 via Conventional from 72454 -> 72455","Type":"Conventional","Directional":true,"Links":[{"SourceID":72454,"TargetID":72455,"Directional":true}]},{"ID":16333,"SourceStructureID":72460,"TargetStructureID":6115,"Label":"72460-6115 via Conventional from 72461 -> 55856","Type":"Conventional","Directional":true,"Links":[{"SourceID":72461,"TargetID":55856,"Directional":true}]},{"ID":16334,"SourceStructureID":72463,"TargetStructureID":6115,"Label":"72463-6115 via Conventional from 72464 -> 55857","Type":"Conventional","Directional":true,"Links":[{"SourceID":72464,"TargetID":55857,"Directional":true}]},{"ID":16335,"SourceStructureID":72474,"TargetStructureID":8580,"Label":"72474-8580 via Conventional from 72475 -> 72476","Type":"Conventional","Directional":true,"Links":[{"SourceID":72475,"TargetID":72476,"Directional":true}]},{"ID":16336,"SourceStructureID":72477,"TargetStructureID":8580,"Label":"72477-8580 via Conventional from 72478 -> 72479","Type":"Conventional","Directional":true,"Links":[{"SourceID":72478,"TargetID":72479,"Directional":true}]},{"ID":16337,"SourceStructureID":72480,"TargetStructureID":8580,"Label":"72480-8580 via Conventional from 72481 -> 72482","Type":"Conventional","Directional":true,"Links":[{"SourceID":72481,"TargetID":72482,"Directional":true}]},{"ID":16338,"SourceStructureID":72505,"TargetStructureID":6115,"Label":"72505-6115 via Conventional from 72512 -> 55851","Type":"Conventional","Directional":true,"Links":[{"SourceID":72512,"TargetID":55851,"Directional":true}]},{"ID":16339,"SourceStructureID":72523,"TargetStructureID":44970,"Label":"72523-44970 via Conventional from 82431 -> 44980","Type":"Conventional","Directional":true,"Links":[{"SourceID":82431,"TargetID":44980,"Directional":true}]},{"ID":16340,"SourceStructureID":72523,"TargetStructureID":82432,"Label":"72523-82432 via Conventional from 82433 -> 82434","Type":"Conventional","Directional":true,"Links":[{"SourceID":82433,"TargetID":82434,"Directional":true}]},{"ID":16341,"SourceStructureID":72526,"TargetStructureID":6115,"Label":"72526-6115 via Conventional from 72527 -> 72528","Type":"Conventional","Directional":true,"Links":[{"SourceID":72527,"TargetID":72528,"Directional":true}]},{"ID":16342,"SourceStructureID":72547,"TargetStructureID":6115,"Label":"72547-6115 via Conventional from 72548 -> 72549","Type":"Conventional","Directional":true,"Links":[{"SourceID":72548,"TargetID":72549,"Directional":true}]},{"ID":16343,"SourceStructureID":72550,"TargetStructureID":6115,"Label":"72550-6115 via Conventional from 72551 -> 72552","Type":"Conventional","Directional":true,"Links":[{"SourceID":72551,"TargetID":72552,"Directional":true}]},{"ID":16344,"SourceStructureID":72553,"TargetStructureID":6115,"Label":"72553-6115 via Conventional from 72554 -> 72555","Type":"Conventional","Directional":true,"Links":[{"SourceID":72554,"TargetID":72555,"Directional":true}]},{"ID":16345,"SourceStructureID":72563,"TargetStructureID":6115,"Label":"72563-6115 via Conventional from 72564 -> 72565","Type":"Conventional","Directional":true,"Links":[{"SourceID":72564,"TargetID":72565,"Directional":true}]},{"ID":16346,"SourceStructureID":72566,"TargetStructureID":6115,"Label":"72566-6115 via Conventional from 73157 -> 73158, 73159 -> 73160","Type":"Conventional","Directional":true,"Links":[{"SourceID":73157,"TargetID":73158,"Directional":true},{"SourceID":73159,"TargetID":73160,"Directional":true}]},{"ID":16347,"SourceStructureID":72566,"TargetStructureID":72604,"Label":"72566-72604 via Adherens from 81893 -> 81892","Type":"Adherens","Directional":true,"Links":[{"SourceID":81893,"TargetID":81892,"Directional":true}]},{"ID":16348,"SourceStructureID":72569,"TargetStructureID":6115,"Label":"72569-6115 via Conventional from 72570 -> 72571","Type":"Conventional","Directional":true,"Links":[{"SourceID":72570,"TargetID":72571,"Directional":true}]},{"ID":16349,"SourceStructureID":72587,"TargetStructureID":6115,"Label":"72587-6115 via Conventional from 72588 -> 59600","Type":"Conventional","Directional":true,"Links":[{"SourceID":72588,"TargetID":59600,"Directional":true}]},{"ID":16350,"SourceStructureID":72604,"TargetStructureID":82559,"Label":"72604-82559 via Conventional from 82297 -> 82560","Type":"Conventional","Directional":true,"Links":[{"SourceID":82297,"TargetID":82560,"Directional":true}]},{"ID":16351,"SourceStructureID":72609,"TargetStructureID":6115,"Label":"72609-6115 via Conventional from 72610 -> 59603","Type":"Conventional","Directional":true,"Links":[{"SourceID":72610,"TargetID":59603,"Directional":true}]},{"ID":16352,"SourceStructureID":72614,"TargetStructureID":6115,"Label":"72614-6115 via Conventional from 72615 -> 59602","Type":"Conventional","Directional":true,"Links":[{"SourceID":72615,"TargetID":59602,"Directional":true}]},{"ID":16353,"SourceStructureID":72616,"TargetStructureID":6115,"Label":"72616-6115 via Conventional from 72617 -> 59601","Type":"Conventional","Directional":true,"Links":[{"SourceID":72617,"TargetID":59601,"Directional":true}]},{"ID":16354,"SourceStructureID":72623,"TargetStructureID":6115,"Label":"72623-6115 via Unknown from 72625 -> 72624","Type":"Unknown","Directional":true,"Links":[{"SourceID":72625,"TargetID":72624,"Directional":true}]},{"ID":16355,"SourceStructureID":72638,"TargetStructureID":180,"Label":"72638-180 via Conventional from 133032 -> 132936","Type":"Conventional","Directional":true,"Links":[{"SourceID":133032,"TargetID":132936,"Directional":true}]},{"ID":16356,"SourceStructureID":72640,"TargetStructureID":6115,"Label":"72640-6115 via Conventional from 72641 -> 72642","Type":"Conventional","Directional":true,"Links":[{"SourceID":72641,"TargetID":72642,"Directional":true}]},{"ID":16357,"SourceStructureID":72688,"TargetStructureID":6115,"Label":"72688-6115 via Conventional from 72689 -> 59598","Type":"Conventional","Directional":true,"Links":[{"SourceID":72689,"TargetID":59598,"Directional":true}]},{"ID":16358,"SourceStructureID":72705,"TargetStructureID":6115,"Label":"72705-6115 via Conventional from 72706 -> 72707","Type":"Conventional","Directional":true,"Links":[{"SourceID":72706,"TargetID":72707,"Directional":true}]},{"ID":16359,"SourceStructureID":72713,"TargetStructureID":6115,"Label":"72713-6115 via Conventional from 72714 -> 72715","Type":"Conventional","Directional":true,"Links":[{"SourceID":72714,"TargetID":72715,"Directional":true}]},{"ID":16360,"SourceStructureID":72766,"TargetStructureID":6115,"Label":"72766-6115 via Conventional from 82639 -> 82640","Type":"Conventional","Directional":true,"Links":[{"SourceID":82639,"TargetID":82640,"Directional":true}]},{"ID":16361,"SourceStructureID":72778,"TargetStructureID":6115,"Label":"72778-6115 via Conventional from 72779 -> 72780","Type":"Conventional","Directional":true,"Links":[{"SourceID":72779,"TargetID":72780,"Directional":true}]},{"ID":16362,"SourceStructureID":72799,"TargetStructureID":6115,"Label":"72799-6115 via Conventional from 72800 -> 55800","Type":"Conventional","Directional":true,"Links":[{"SourceID":72800,"TargetID":55800,"Directional":true}]},{"ID":16363,"SourceStructureID":72807,"TargetStructureID":6115,"Label":"72807-6115 via Conventional from 72808 -> 72809","Type":"Conventional","Directional":true,"Links":[{"SourceID":72808,"TargetID":72809,"Directional":true}]},{"ID":16364,"SourceStructureID":72810,"TargetStructureID":6115,"Label":"72810-6115 via Conventional from 72811 -> 72812","Type":"Conventional","Directional":true,"Links":[{"SourceID":72811,"TargetID":72812,"Directional":true}]},{"ID":16365,"SourceStructureID":72815,"TargetStructureID":6115,"Label":"72815-6115 via Conventional from 72816 -> 72817","Type":"Conventional","Directional":true,"Links":[{"SourceID":72816,"TargetID":72817,"Directional":true}]},{"ID":16366,"SourceStructureID":72819,"TargetStructureID":6115,"Label":"72819-6115 via Conventional from 72820 -> 55804","Type":"Conventional","Directional":true,"Links":[{"SourceID":72820,"TargetID":55804,"Directional":true}]},{"ID":16367,"SourceStructureID":72823,"TargetStructureID":6115,"Label":"72823-6115 via Conventional from 72824 -> 72825","Type":"Conventional","Directional":true,"Links":[{"SourceID":72824,"TargetID":72825,"Directional":true}]},{"ID":16368,"SourceStructureID":72834,"TargetStructureID":6115,"Label":"72834-6115 via Conventional from 80967 -> 80968","Type":"Conventional","Directional":true,"Links":[{"SourceID":80967,"TargetID":80968,"Directional":true}]},{"ID":16369,"SourceStructureID":72844,"TargetStructureID":6115,"Label":"72844-6115 via Conventional from 72845 -> 72846","Type":"Conventional","Directional":true,"Links":[{"SourceID":72845,"TargetID":72846,"Directional":true}]},{"ID":16370,"SourceStructureID":72847,"TargetStructureID":6115,"Label":"72847-6115 via Conventional from 72848 -> 72849","Type":"Conventional","Directional":true,"Links":[{"SourceID":72848,"TargetID":72849,"Directional":true}]},{"ID":16371,"SourceStructureID":72855,"TargetStructureID":68539,"Label":"72855-68539 via Conventional from 72856 -> 72854","Type":"Conventional","Directional":true,"Links":[{"SourceID":72856,"TargetID":72854,"Directional":true}]},{"ID":16372,"SourceStructureID":72858,"TargetStructureID":68539,"Label":"72858-68539 via Conventional from 72859 -> 72862, 72860 -> 72861","Type":"Conventional","Directional":true,"Links":[{"SourceID":72859,"TargetID":72862,"Directional":true},{"SourceID":72860,"TargetID":72861,"Directional":true}]},{"ID":16373,"SourceStructureID":72865,"TargetStructureID":68539,"Label":"72865-68539 via Conventional from 72866 -> 72867","Type":"Conventional","Directional":true,"Links":[{"SourceID":72866,"TargetID":72867,"Directional":true}]},{"ID":16374,"SourceStructureID":72873,"TargetStructureID":68539,"Label":"72873-68539 via Conventional from 72874 -> 72886","Type":"Conventional","Directional":true,"Links":[{"SourceID":72874,"TargetID":72886,"Directional":true}]},{"ID":16375,"SourceStructureID":72876,"TargetStructureID":68539,"Label":"72876-68539 via Conventional from 72878 -> 72890","Type":"Conventional","Directional":true,"Links":[{"SourceID":72878,"TargetID":72890,"Directional":true}]},{"ID":16376,"SourceStructureID":72879,"TargetStructureID":68539,"Label":"72879-68539 via Conventional from 72880 -> 72891","Type":"Conventional","Directional":true,"Links":[{"SourceID":72880,"TargetID":72891,"Directional":true}]},{"ID":16377,"SourceStructureID":72882,"TargetStructureID":72876,"Label":"72882-72876 via Conventional from 72883 -> 72877","Type":"Conventional","Directional":true,"Links":[{"SourceID":72883,"TargetID":72877,"Directional":true}]},{"ID":16378,"SourceStructureID":72892,"TargetStructureID":142,"Label":"72892-142 via Conventional from 72893 -> 49766","Type":"Conventional","Directional":true,"Links":[{"SourceID":72893,"TargetID":49766,"Directional":true}]},{"ID":16379,"SourceStructureID":72907,"TargetStructureID":6115,"Label":"72907-6115 via Conventional from 72908 -> 72909","Type":"Conventional","Directional":true,"Links":[{"SourceID":72908,"TargetID":72909,"Directional":true}]},{"ID":16380,"SourceStructureID":72934,"TargetStructureID":6115,"Label":"72934-6115 via Conventional from 72935 -> 72933","Type":"Conventional","Directional":true,"Links":[{"SourceID":72935,"TargetID":72933,"Directional":true}]},{"ID":16381,"SourceStructureID":72936,"TargetStructureID":6115,"Label":"72936-6115 via Conventional from 72937 -> 55913, 72938 -> 55913","Type":"Conventional","Directional":true,"Links":[{"SourceID":72937,"TargetID":55913,"Directional":true},{"SourceID":72938,"TargetID":55913,"Directional":true}]},{"ID":16382,"SourceStructureID":72939,"TargetStructureID":6115,"Label":"72939-6115 via Conventional from 72940 -> 55912","Type":"Conventional","Directional":true,"Links":[{"SourceID":72940,"TargetID":55912,"Directional":true}]},{"ID":16383,"SourceStructureID":72949,"TargetStructureID":6115,"Label":"72949-6115 via Conventional from 72950 -> 72951","Type":"Conventional","Directional":true,"Links":[{"SourceID":72950,"TargetID":72951,"Directional":true}]},{"ID":16384,"SourceStructureID":72964,"TargetStructureID":6115,"Label":"72964-6115 via Conventional from 72966 -> 55777","Type":"Conventional","Directional":true,"Links":[{"SourceID":72966,"TargetID":55777,"Directional":true}]},{"ID":16385,"SourceStructureID":72965,"TargetStructureID":6115,"Label":"72965-6115 via Conventional from 72967 -> 72968","Type":"Conventional","Directional":true,"Links":[{"SourceID":72967,"TargetID":72968,"Directional":true}]},{"ID":16386,"SourceStructureID":72965,"TargetStructureID":72969,"Label":"72965-72969 via Conventional from 72967 -> 72970","Type":"Conventional","Directional":true,"Links":[{"SourceID":72967,"TargetID":72970,"Directional":true}]},{"ID":16387,"SourceStructureID":72973,"TargetStructureID":6115,"Label":"72973-6115 via Conventional from 72974 -> 55907","Type":"Conventional","Directional":true,"Links":[{"SourceID":72974,"TargetID":55907,"Directional":true}]},{"ID":16388,"SourceStructureID":72975,"TargetStructureID":6115,"Label":"72975-6115 via Conventional from 72976 -> 72977","Type":"Conventional","Directional":true,"Links":[{"SourceID":72976,"TargetID":72977,"Directional":true}]},{"ID":16389,"SourceStructureID":72987,"TargetStructureID":6115,"Label":"72987-6115 via Conventional from 72996 -> 72997, 73016 -> 55900","Type":"Conventional","Directional":true,"Links":[{"SourceID":72996,"TargetID":72997,"Directional":true},{"SourceID":73016,"TargetID":55900,"Directional":true}]},{"ID":16390,"SourceStructureID":72989,"TargetStructureID":16026,"Label":"72989-16026 via Conventional from 115224 -> 25647","Type":"Conventional","Directional":true,"Links":[{"SourceID":115224,"TargetID":25647,"Directional":true}]},{"ID":16391,"SourceStructureID":72989,"TargetStructureID":72994,"Label":"72989-72994 via Conventional from 72990 -> 72995","Type":"Conventional","Directional":true,"Links":[{"SourceID":72990,"TargetID":72995,"Directional":true}]},{"ID":16392,"SourceStructureID":72992,"TargetStructureID":72989,"Label":"72992-72989 via Conventional from 72993 -> 72991","Type":"Conventional","Directional":true,"Links":[{"SourceID":72993,"TargetID":72991,"Directional":true}]},{"ID":16393,"SourceStructureID":73004,"TargetStructureID":6115,"Label":"73004-6115 via Conventional from 73012 -> 75995","Type":"Conventional","Directional":true,"Links":[{"SourceID":73012,"TargetID":75995,"Directional":true}]},{"ID":16394,"SourceStructureID":73006,"TargetStructureID":6115,"Label":"73006-6115 via Conventional from 73013 -> 73014","Type":"Conventional","Directional":true,"Links":[{"SourceID":73013,"TargetID":73014,"Directional":true}]},{"ID":16395,"SourceStructureID":73018,"TargetStructureID":6115,"Label":"73018-6115 via Conventional from 73019 -> 73020","Type":"Conventional","Directional":true,"Links":[{"SourceID":73019,"TargetID":73020,"Directional":true}]},{"ID":16396,"SourceStructureID":73025,"TargetStructureID":6115,"Label":"73025-6115 via Conventional from 73026 -> 55897","Type":"Conventional","Directional":true,"Links":[{"SourceID":73026,"TargetID":55897,"Directional":true}]},{"ID":16397,"SourceStructureID":73033,"TargetStructureID":6115,"Label":"73033-6115 via Conventional from 73034 -> 73035","Type":"Conventional","Directional":true,"Links":[{"SourceID":73034,"TargetID":73035,"Directional":true}]},{"ID":16398,"SourceStructureID":73072,"TargetStructureID":6115,"Label":"73072-6115 via Conventional from 73073 -> 73074","Type":"Conventional","Directional":true,"Links":[{"SourceID":73073,"TargetID":73074,"Directional":true}]},{"ID":16399,"SourceStructureID":73075,"TargetStructureID":6115,"Label":"73075-6115 via Conventional from 73076 -> 73077","Type":"Conventional","Directional":true,"Links":[{"SourceID":73076,"TargetID":73077,"Directional":true}]},{"ID":16400,"SourceStructureID":73078,"TargetStructureID":6115,"Label":"73078-6115 via Conventional from 73079 -> 73080","Type":"Conventional","Directional":true,"Links":[{"SourceID":73079,"TargetID":73080,"Directional":true}]},{"ID":16401,"SourceStructureID":73086,"TargetStructureID":6115,"Label":"73086-6115 via Conventional from 84274 -> 73085","Type":"Conventional","Directional":true,"Links":[{"SourceID":84274,"TargetID":73085,"Directional":true}]},{"ID":16402,"SourceStructureID":73099,"TargetStructureID":6115,"Label":"73099-6115 via Conventional from 73100 -> 73101","Type":"Conventional","Directional":true,"Links":[{"SourceID":73100,"TargetID":73101,"Directional":true}]},{"ID":16403,"SourceStructureID":73102,"TargetStructureID":6115,"Label":"73102-6115 via Conventional from 73103 -> 73104","Type":"Conventional","Directional":true,"Links":[{"SourceID":73103,"TargetID":73104,"Directional":true}]},{"ID":16404,"SourceStructureID":73105,"TargetStructureID":6115,"Label":"73105-6115 via Conventional from 73106 -> 73107","Type":"Conventional","Directional":true,"Links":[{"SourceID":73106,"TargetID":73107,"Directional":true}]},{"ID":16405,"SourceStructureID":73133,"TargetStructureID":6115,"Label":"73133-6115 via Conventional from 73134 -> 73135","Type":"Conventional","Directional":true,"Links":[{"SourceID":73134,"TargetID":73135,"Directional":true}]},{"ID":16406,"SourceStructureID":73144,"TargetStructureID":6115,"Label":"73144-6115 via Conventional from 73152 -> 73153","Type":"Conventional","Directional":true,"Links":[{"SourceID":73152,"TargetID":73153,"Directional":true}]},{"ID":16407,"SourceStructureID":73146,"TargetStructureID":6115,"Label":"73146-6115 via Conventional from 73148 -> 73147","Type":"Conventional","Directional":true,"Links":[{"SourceID":73148,"TargetID":73147,"Directional":true}]},{"ID":16408,"SourceStructureID":73163,"TargetStructureID":68548,"Label":"73163-68548 via Conventional from 73164 -> 73162","Type":"Conventional","Directional":true,"Links":[{"SourceID":73164,"TargetID":73162,"Directional":true}]},{"ID":16409,"SourceStructureID":73166,"TargetStructureID":68548,"Label":"73166-68548 via Conventional from 73167 -> 73168","Type":"Conventional","Directional":true,"Links":[{"SourceID":73167,"TargetID":73168,"Directional":true}]},{"ID":16410,"SourceStructureID":73185,"TargetStructureID":6115,"Label":"73185-6115 via Conventional from 73186 -> 73187","Type":"Conventional","Directional":true,"Links":[{"SourceID":73186,"TargetID":73187,"Directional":true}]},{"ID":16411,"SourceStructureID":73190,"TargetStructureID":6115,"Label":"73190-6115 via Conventional from 73191 -> 73192","Type":"Conventional","Directional":true,"Links":[{"SourceID":73191,"TargetID":73192,"Directional":true}]},{"ID":16412,"SourceStructureID":73197,"TargetStructureID":6115,"Label":"73197-6115 via Conventional from 73198 -> 73199","Type":"Conventional","Directional":true,"Links":[{"SourceID":73198,"TargetID":73199,"Directional":true}]},{"ID":16413,"SourceStructureID":73200,"TargetStructureID":6115,"Label":"73200-6115 via Conventional from 73201 -> 73202","Type":"Conventional","Directional":true,"Links":[{"SourceID":73201,"TargetID":73202,"Directional":true}]},{"ID":16414,"SourceStructureID":73211,"TargetStructureID":6115,"Label":"73211-6115 via Conventional from 73265 -> 73266","Type":"Conventional","Directional":true,"Links":[{"SourceID":73265,"TargetID":73266,"Directional":true}]},{"ID":16415,"SourceStructureID":73212,"TargetStructureID":6115,"Label":"73212-6115 via Conventional from 73213 -> 73214","Type":"Conventional","Directional":true,"Links":[{"SourceID":73213,"TargetID":73214,"Directional":true}]},{"ID":16416,"SourceStructureID":73225,"TargetStructureID":6115,"Label":"73225-6115 via Conventional from 73226 -> 73227","Type":"Conventional","Directional":true,"Links":[{"SourceID":73226,"TargetID":73227,"Directional":true}]},{"ID":16417,"SourceStructureID":73290,"TargetStructureID":73273,"Label":"73290-73273 via Conventional from 73291 -> 73292","Type":"Conventional","Directional":true,"Links":[{"SourceID":73291,"TargetID":73292,"Directional":true}]},{"ID":16418,"SourceStructureID":73299,"TargetStructureID":6115,"Label":"73299-6115 via Conventional from 73300 -> 55880","Type":"Conventional","Directional":true,"Links":[{"SourceID":73300,"TargetID":55880,"Directional":true}]},{"ID":16419,"SourceStructureID":73309,"TargetStructureID":6115,"Label":"73309-6115 via Conventional from 73311 -> 73310","Type":"Conventional","Directional":true,"Links":[{"SourceID":73311,"TargetID":73310,"Directional":true}]},{"ID":16420,"SourceStructureID":73314,"TargetStructureID":68539,"Label":"73314-68539 via Conventional from 73315 -> 73061","Type":"Conventional","Directional":true,"Links":[{"SourceID":73315,"TargetID":73061,"Directional":true}]},{"ID":16421,"SourceStructureID":73322,"TargetStructureID":68539,"Label":"73322-68539 via Conventional from 73326 -> 73327","Type":"Conventional","Directional":true,"Links":[{"SourceID":73326,"TargetID":73327,"Directional":true}]},{"ID":16422,"SourceStructureID":73339,"TargetStructureID":82039,"Label":"73339-82039 via Conventional from 82040 -> 82041","Type":"Conventional","Directional":true,"Links":[{"SourceID":82040,"TargetID":82041,"Directional":true}]},{"ID":16423,"SourceStructureID":73342,"TargetStructureID":68539,"Label":"73342-68539 via Conventional from 73344 -> 73345","Type":"Conventional","Directional":true,"Links":[{"SourceID":73344,"TargetID":73345,"Directional":true}]},{"ID":16424,"SourceStructureID":73348,"TargetStructureID":5598,"Label":"73348-5598 via Conventional from 73349 -> 59064","Type":"Conventional","Directional":true,"Links":[{"SourceID":73349,"TargetID":59064,"Directional":true}]},{"ID":16425,"SourceStructureID":73353,"TargetStructureID":68539,"Label":"73353-68539 via Conventional from 73354 -> 73355","Type":"Conventional","Directional":true,"Links":[{"SourceID":73354,"TargetID":73355,"Directional":true}]},{"ID":16426,"SourceStructureID":73357,"TargetStructureID":68539,"Label":"73357-68539 via Conventional from 73358 -> 73356","Type":"Conventional","Directional":true,"Links":[{"SourceID":73358,"TargetID":73356,"Directional":true}]},{"ID":16427,"SourceStructureID":73363,"TargetStructureID":68539,"Label":"73363-68539 via Conventional from 73364 -> 73362","Type":"Conventional","Directional":true,"Links":[{"SourceID":73364,"TargetID":73362,"Directional":true}]},{"ID":16428,"SourceStructureID":73371,"TargetStructureID":68539,"Label":"73371-68539 via Conventional from 73379 -> 73383","Type":"Conventional","Directional":true,"Links":[{"SourceID":73379,"TargetID":73383,"Directional":true}]},{"ID":16429,"SourceStructureID":73384,"TargetStructureID":68539,"Label":"73384-68539 via Conventional from 73385 -> 73389","Type":"Conventional","Directional":true,"Links":[{"SourceID":73385,"TargetID":73389,"Directional":true}]},{"ID":16430,"SourceStructureID":73394,"TargetStructureID":68539,"Label":"73394-68539 via Conventional from 73420 -> 73421","Type":"Conventional","Directional":true,"Links":[{"SourceID":73420,"TargetID":73421,"Directional":true}]},{"ID":16431,"SourceStructureID":73394,"TargetStructureID":73397,"Label":"73394-73397 via Conventional from 73395 -> 73398","Type":"Conventional","Directional":true,"Links":[{"SourceID":73395,"TargetID":73398,"Directional":true}]},{"ID":16432,"SourceStructureID":73397,"TargetStructureID":73416,"Label":"73397-73416 via Conventional from 73410 -> 73417","Type":"Conventional","Directional":true,"Links":[{"SourceID":73410,"TargetID":73417,"Directional":true}]},{"ID":16433,"SourceStructureID":73422,"TargetStructureID":6115,"Label":"73422-6115 via Conventional from 73423 -> 73424","Type":"Conventional","Directional":true,"Links":[{"SourceID":73423,"TargetID":73424,"Directional":true}]},{"ID":16434,"SourceStructureID":73426,"TargetStructureID":6115,"Label":"73426-6115 via Conventional from 116709 -> 73459","Type":"Conventional","Directional":true,"Links":[{"SourceID":116709,"TargetID":73459,"Directional":true}]},{"ID":16435,"SourceStructureID":73430,"TargetStructureID":6115,"Label":"73430-6115 via Conventional from 73431 -> 73432","Type":"Conventional","Directional":true,"Links":[{"SourceID":73431,"TargetID":73432,"Directional":true}]},{"ID":16436,"SourceStructureID":73443,"TargetStructureID":6115,"Label":"73443-6115 via Conventional from 73454 -> 73456","Type":"Conventional","Directional":true,"Links":[{"SourceID":73454,"TargetID":73456,"Directional":true}]},{"ID":16437,"SourceStructureID":73453,"TargetStructureID":68539,"Label":"73453-68539 via Conventional from 73455 -> 73452","Type":"Conventional","Directional":true,"Links":[{"SourceID":73455,"TargetID":73452,"Directional":true}]},{"ID":16438,"SourceStructureID":73467,"TargetStructureID":5649,"Label":"73467-5649 via Conventional from 75677 -> 53847","Type":"Conventional","Directional":true,"Links":[{"SourceID":75677,"TargetID":53847,"Directional":true}]},{"ID":16439,"SourceStructureID":73467,"TargetStructureID":68548,"Label":"73467-68548 via Conventional from 73468 -> 73469","Type":"Conventional","Directional":true,"Links":[{"SourceID":73468,"TargetID":73469,"Directional":true}]},{"ID":16440,"SourceStructureID":73476,"TargetStructureID":6115,"Label":"73476-6115 via Conventional from 134225 -> 134226","Type":"Conventional","Directional":true,"Links":[{"SourceID":134225,"TargetID":134226,"Directional":true}]},{"ID":16441,"SourceStructureID":73488,"TargetStructureID":6115,"Label":"73488-6115 via Conventional from 73498 -> 73499","Type":"Conventional","Directional":true,"Links":[{"SourceID":73498,"TargetID":73499,"Directional":true}]},{"ID":16442,"SourceStructureID":73509,"TargetStructureID":6115,"Label":"73509-6115 via Conventional from 73512 -> 73513","Type":"Conventional","Directional":true,"Links":[{"SourceID":73512,"TargetID":73513,"Directional":true}]},{"ID":16443,"SourceStructureID":73514,"TargetStructureID":6115,"Label":"73514-6115 via Conventional from 73515 -> 73516","Type":"Conventional","Directional":true,"Links":[{"SourceID":73515,"TargetID":73516,"Directional":true}]},{"ID":16444,"SourceStructureID":73518,"TargetStructureID":6115,"Label":"73518-6115 via Conventional from 73519 -> 73520","Type":"Conventional","Directional":true,"Links":[{"SourceID":73519,"TargetID":73520,"Directional":true}]},{"ID":16445,"SourceStructureID":73524,"TargetStructureID":6115,"Label":"73524-6115 via Conventional from 73530 -> 73531","Type":"Conventional","Directional":true,"Links":[{"SourceID":73530,"TargetID":73531,"Directional":true}]},{"ID":16446,"SourceStructureID":73535,"TargetStructureID":6115,"Label":"73535-6115 via Conventional from 134227 -> 134228","Type":"Conventional","Directional":true,"Links":[{"SourceID":134227,"TargetID":134228,"Directional":true}]},{"ID":16447,"SourceStructureID":73542,"TargetStructureID":6115,"Label":"73542-6115 via Conventional from 73549 -> 73550","Type":"Conventional","Directional":true,"Links":[{"SourceID":73549,"TargetID":73550,"Directional":true}]},{"ID":16448,"SourceStructureID":73573,"TargetStructureID":68548,"Label":"73573-68548 via Conventional from 73575 -> 73576","Type":"Conventional","Directional":true,"Links":[{"SourceID":73575,"TargetID":73576,"Directional":true}]},{"ID":16449,"SourceStructureID":73583,"TargetStructureID":5442,"Label":"73583-5442 via Conventional from 73584 -> 73582","Type":"Conventional","Directional":true,"Links":[{"SourceID":73584,"TargetID":73582,"Directional":true}]},{"ID":16450,"SourceStructureID":73601,"TargetStructureID":68539,"Label":"73601-68539 via Conventional from 73602 -> 73600","Type":"Conventional","Directional":true,"Links":[{"SourceID":73602,"TargetID":73600,"Directional":true}]},{"ID":16451,"SourceStructureID":73605,"TargetStructureID":68539,"Label":"73605-68539 via Conventional from 73608 -> 73604","Type":"Conventional","Directional":true,"Links":[{"SourceID":73608,"TargetID":73604,"Directional":true}]},{"ID":16452,"SourceStructureID":73606,"TargetStructureID":8580,"Label":"73606-8580 via Conventional from 73607 -> 73609","Type":"Conventional","Directional":true,"Links":[{"SourceID":73607,"TargetID":73609,"Directional":true}]},{"ID":16453,"SourceStructureID":73611,"TargetStructureID":68539,"Label":"73611-68539 via Conventional from 73612 -> 73610","Type":"Conventional","Directional":true,"Links":[{"SourceID":73612,"TargetID":73610,"Directional":true}]},{"ID":16454,"SourceStructureID":73613,"TargetStructureID":68539,"Label":"73613-68539 via Conventional from 73614 -> 73615","Type":"Conventional","Directional":true,"Links":[{"SourceID":73614,"TargetID":73615,"Directional":true}]},{"ID":16455,"SourceStructureID":73619,"TargetStructureID":8580,"Label":"73619-8580 via Conventional from 73622 -> 73626","Type":"Conventional","Directional":true,"Links":[{"SourceID":73622,"TargetID":73626,"Directional":true}]},{"ID":16456,"SourceStructureID":73620,"TargetStructureID":68539,"Label":"73620-68539 via Conventional from 73634 -> 73633","Type":"Conventional","Directional":true,"Links":[{"SourceID":73634,"TargetID":73633,"Directional":true}]},{"ID":16457,"SourceStructureID":73621,"TargetStructureID":68539,"Label":"73621-68539 via Conventional from 73630 -> 73632","Type":"Conventional","Directional":true,"Links":[{"SourceID":73630,"TargetID":73632,"Directional":true}]},{"ID":16458,"SourceStructureID":73628,"TargetStructureID":8580,"Label":"73628-8580 via Conventional from 73629 -> 73627","Type":"Conventional","Directional":true,"Links":[{"SourceID":73629,"TargetID":73627,"Directional":true}]},{"ID":16459,"SourceStructureID":73635,"TargetStructureID":68539,"Label":"73635-68539 via Conventional from 73636 -> 73637","Type":"Conventional","Directional":true,"Links":[{"SourceID":73636,"TargetID":73637,"Directional":true}]},{"ID":16460,"SourceStructureID":73639,"TargetStructureID":73635,"Label":"73639-73635 via Conventional from 73640 -> 73638","Type":"Conventional","Directional":true,"Links":[{"SourceID":73640,"TargetID":73638,"Directional":true}]},{"ID":16461,"SourceStructureID":73646,"TargetStructureID":68539,"Label":"73646-68539 via Conventional from 73647 -> 73648","Type":"Conventional","Directional":true,"Links":[{"SourceID":73647,"TargetID":73648,"Directional":true}]},{"ID":16462,"SourceStructureID":73649,"TargetStructureID":68539,"Label":"73649-68539 via Conventional from 73650 -> 73651","Type":"Conventional","Directional":true,"Links":[{"SourceID":73650,"TargetID":73651,"Directional":true}]},{"ID":16463,"SourceStructureID":73652,"TargetStructureID":68539,"Label":"73652-68539 via Conventional from 73653 -> 73654","Type":"Conventional","Directional":true,"Links":[{"SourceID":73653,"TargetID":73654,"Directional":true}]},{"ID":16464,"SourceStructureID":73658,"TargetStructureID":73655,"Label":"73658-73655 via Conventional from 73659 -> 73656","Type":"Conventional","Directional":true,"Links":[{"SourceID":73659,"TargetID":73656,"Directional":true}]},{"ID":16465,"SourceStructureID":73662,"TargetStructureID":73655,"Label":"73662-73655 via Conventional from 73663 -> 73661","Type":"Conventional","Directional":true,"Links":[{"SourceID":73663,"TargetID":73661,"Directional":true}]},{"ID":16466,"SourceStructureID":73671,"TargetStructureID":8580,"Label":"73671-8580 via Conventional from 73672 -> 73670","Type":"Conventional","Directional":true,"Links":[{"SourceID":73672,"TargetID":73670,"Directional":true}]},{"ID":16467,"SourceStructureID":73683,"TargetStructureID":68539,"Label":"73683-68539 via Conventional from 73684 -> 73685","Type":"Conventional","Directional":true,"Links":[{"SourceID":73684,"TargetID":73685,"Directional":true}]},{"ID":16468,"SourceStructureID":73687,"TargetStructureID":68539,"Label":"73687-68539 via Conventional from 73688 -> 73689","Type":"Conventional","Directional":true,"Links":[{"SourceID":73688,"TargetID":73689,"Directional":true}]},{"ID":16469,"SourceStructureID":73690,"TargetStructureID":68539,"Label":"73690-68539 via Conventional from 73691 -> 73695","Type":"Conventional","Directional":true,"Links":[{"SourceID":73691,"TargetID":73695,"Directional":true}]},{"ID":16470,"SourceStructureID":73693,"TargetStructureID":73690,"Label":"73693-73690 via Conventional from 73694 -> 73692","Type":"Conventional","Directional":true,"Links":[{"SourceID":73694,"TargetID":73692,"Directional":true}]},{"ID":16471,"SourceStructureID":73698,"TargetStructureID":68539,"Label":"73698-68539 via Conventional from 73699 -> 73700","Type":"Conventional","Directional":true,"Links":[{"SourceID":73699,"TargetID":73700,"Directional":true}]},{"ID":16472,"SourceStructureID":73702,"TargetStructureID":68539,"Label":"73702-68539 via Conventional from 73703 -> 73701","Type":"Conventional","Directional":true,"Links":[{"SourceID":73703,"TargetID":73701,"Directional":true}]},{"ID":16473,"SourceStructureID":73704,"TargetStructureID":5531,"Label":"73704-5531 via Conventional from 105308 -> 105309","Type":"Conventional","Directional":true,"Links":[{"SourceID":105308,"TargetID":105309,"Directional":true}]},{"ID":16474,"SourceStructureID":73704,"TargetStructureID":8580,"Label":"73704-8580 via Conventional from 73706 -> 73705","Type":"Conventional","Directional":true,"Links":[{"SourceID":73706,"TargetID":73705,"Directional":true}]},{"ID":16475,"SourceStructureID":73707,"TargetStructureID":68539,"Label":"73707-68539 via Conventional from 73708 -> 73709","Type":"Conventional","Directional":true,"Links":[{"SourceID":73708,"TargetID":73709,"Directional":true}]},{"ID":16476,"SourceStructureID":73710,"TargetStructureID":68539,"Label":"73710-68539 via Conventional from 73711 -> 73712","Type":"Conventional","Directional":true,"Links":[{"SourceID":73711,"TargetID":73712,"Directional":true}]},{"ID":16477,"SourceStructureID":73713,"TargetStructureID":8580,"Label":"73713-8580 via Conventional from 73715 -> 73714","Type":"Conventional","Directional":true,"Links":[{"SourceID":73715,"TargetID":73714,"Directional":true}]},{"ID":16478,"SourceStructureID":73720,"TargetStructureID":73710,"Label":"73720-73710 via Conventional from 73721 -> 73717","Type":"Conventional","Directional":true,"Links":[{"SourceID":73721,"TargetID":73717,"Directional":true}]},{"ID":16479,"SourceStructureID":73722,"TargetStructureID":68539,"Label":"73722-68539 via BC Conventional Synapse from 73723 -> 73724","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73723,"TargetID":73724,"Directional":true}]},{"ID":16480,"SourceStructureID":73722,"TargetStructureID":68539,"Label":"73722-68539 via Ribbon Synapse from 73726 -> 73727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73726,"TargetID":73727,"Directional":true}]},{"ID":16481,"SourceStructureID":73722,"TargetStructureID":71351,"Label":"73722-71351 via Ribbon Synapse from 73726 -> 73729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73726,"TargetID":73729,"Directional":true}]},{"ID":16482,"SourceStructureID":73732,"TargetStructureID":8580,"Label":"73732-8580 via Conventional from 73734 -> 73733","Type":"Conventional","Directional":true,"Links":[{"SourceID":73734,"TargetID":73733,"Directional":true}]},{"ID":16483,"SourceStructureID":73735,"TargetStructureID":68539,"Label":"73735-68539 via Conventional from 73736 -> 73737","Type":"Conventional","Directional":true,"Links":[{"SourceID":73736,"TargetID":73737,"Directional":true}]},{"ID":16484,"SourceStructureID":73739,"TargetStructureID":68539,"Label":"73739-68539 via Conventional from 73740 -> 73738","Type":"Conventional","Directional":true,"Links":[{"SourceID":73740,"TargetID":73738,"Directional":true}]},{"ID":16485,"SourceStructureID":73742,"TargetStructureID":68539,"Label":"73742-68539 via Conventional from 73743 -> 73741, 73744 -> 73745","Type":"Conventional","Directional":true,"Links":[{"SourceID":73743,"TargetID":73741,"Directional":true},{"SourceID":73744,"TargetID":73745,"Directional":true}]},{"ID":16486,"SourceStructureID":73747,"TargetStructureID":68539,"Label":"73747-68539 via Conventional from 73748 -> 73746","Type":"Conventional","Directional":true,"Links":[{"SourceID":73748,"TargetID":73746,"Directional":true}]},{"ID":16487,"SourceStructureID":73750,"TargetStructureID":68539,"Label":"73750-68539 via Conventional from 73751 -> 73752, 73755 -> 73754, 73756 -> 73758","Type":"Conventional","Directional":true,"Links":[{"SourceID":73751,"TargetID":73752,"Directional":true},{"SourceID":73755,"TargetID":73754,"Directional":true},{"SourceID":73756,"TargetID":73758,"Directional":true}]},{"ID":16488,"SourceStructureID":73759,"TargetStructureID":68539,"Label":"73759-68539 via Unknown from 73760 -> 73761","Type":"Unknown","Directional":true,"Links":[{"SourceID":73760,"TargetID":73761,"Directional":true}]},{"ID":16489,"SourceStructureID":73764,"TargetStructureID":68539,"Label":"73764-68539 via Conventional from 73765 -> 73763, 73766 -> 73762","Type":"Conventional","Directional":true,"Links":[{"SourceID":73765,"TargetID":73763,"Directional":true},{"SourceID":73766,"TargetID":73762,"Directional":true}]},{"ID":16490,"SourceStructureID":73781,"TargetStructureID":6115,"Label":"73781-6115 via Conventional from 73782 -> 73783","Type":"Conventional","Directional":true,"Links":[{"SourceID":73782,"TargetID":73783,"Directional":true}]},{"ID":16491,"SourceStructureID":73790,"TargetStructureID":6115,"Label":"73790-6115 via Conventional from 73791 -> 73789","Type":"Conventional","Directional":true,"Links":[{"SourceID":73791,"TargetID":73789,"Directional":true}]},{"ID":16492,"SourceStructureID":73800,"TargetStructureID":6115,"Label":"73800-6115 via Conventional from 73802 -> 73801","Type":"Conventional","Directional":true,"Links":[{"SourceID":73802,"TargetID":73801,"Directional":true}]},{"ID":16493,"SourceStructureID":73807,"TargetStructureID":5650,"Label":"73807-5650 via Conventional from 82109 -> 82110","Type":"Conventional","Directional":true,"Links":[{"SourceID":82109,"TargetID":82110,"Directional":true}]},{"ID":16494,"SourceStructureID":73807,"TargetStructureID":66523,"Label":"73807-66523 via Conventional from 75330 -> 75331","Type":"Conventional","Directional":true,"Links":[{"SourceID":75330,"TargetID":75331,"Directional":true}]},{"ID":16495,"SourceStructureID":73807,"TargetStructureID":82405,"Label":"73807-82405 via Conventional from 82404 -> 82406","Type":"Conventional","Directional":true,"Links":[{"SourceID":82404,"TargetID":82406,"Directional":true}]},{"ID":16496,"SourceStructureID":73810,"TargetStructureID":8580,"Label":"73810-8580 via Conventional from 73811 -> 73812","Type":"Conventional","Directional":true,"Links":[{"SourceID":73811,"TargetID":73812,"Directional":true}]},{"ID":16497,"SourceStructureID":73814,"TargetStructureID":6115,"Label":"73814-6115 via Conventional from 73816 -> 73815","Type":"Conventional","Directional":true,"Links":[{"SourceID":73816,"TargetID":73815,"Directional":true}]},{"ID":16498,"SourceStructureID":73817,"TargetStructureID":6115,"Label":"73817-6115 via Conventional from 73818 -> 73819","Type":"Conventional","Directional":true,"Links":[{"SourceID":73818,"TargetID":73819,"Directional":true}]},{"ID":16499,"SourceStructureID":73830,"TargetStructureID":352,"Label":"73830-352 via Conventional from 73831 -> 73829","Type":"Conventional","Directional":true,"Links":[{"SourceID":73831,"TargetID":73829,"Directional":true}]},{"ID":16500,"SourceStructureID":73833,"TargetStructureID":352,"Label":"73833-352 via Conventional from 73834 -> 73832","Type":"Conventional","Directional":true,"Links":[{"SourceID":73834,"TargetID":73832,"Directional":true}]},{"ID":16501,"SourceStructureID":73844,"TargetStructureID":352,"Label":"73844-352 via Conventional from 73845 -> 73841","Type":"Conventional","Directional":true,"Links":[{"SourceID":73845,"TargetID":73841,"Directional":true}]},{"ID":16502,"SourceStructureID":73844,"TargetStructureID":73906,"Label":"73844-73906 via Conventional from 73902 -> 73908","Type":"Conventional","Directional":true,"Links":[{"SourceID":73902,"TargetID":73908,"Directional":true}]},{"ID":16503,"SourceStructureID":73846,"TargetStructureID":6115,"Label":"73846-6115 via Conventional from 73847 -> 73848","Type":"Conventional","Directional":true,"Links":[{"SourceID":73847,"TargetID":73848,"Directional":true}]},{"ID":16504,"SourceStructureID":73855,"TargetStructureID":6115,"Label":"73855-6115 via Conventional from 73857 -> 73856","Type":"Conventional","Directional":true,"Links":[{"SourceID":73857,"TargetID":73856,"Directional":true}]},{"ID":16505,"SourceStructureID":73868,"TargetStructureID":6115,"Label":"73868-6115 via Conventional from 73869 -> 73870","Type":"Conventional","Directional":true,"Links":[{"SourceID":73869,"TargetID":73870,"Directional":true}]},{"ID":16506,"SourceStructureID":73881,"TargetStructureID":6115,"Label":"73881-6115 via Conventional from 73882 -> 73883","Type":"Conventional","Directional":true,"Links":[{"SourceID":73882,"TargetID":73883,"Directional":true}]},{"ID":16507,"SourceStructureID":73891,"TargetStructureID":6115,"Label":"73891-6115 via Conventional from 73892 -> 73893","Type":"Conventional","Directional":true,"Links":[{"SourceID":73892,"TargetID":73893,"Directional":true}]},{"ID":16508,"SourceStructureID":73904,"TargetStructureID":6115,"Label":"73904-6115 via Conventional from 73905 -> 73903, 73912 -> 73913","Type":"Conventional","Directional":true,"Links":[{"SourceID":73905,"TargetID":73903,"Directional":true},{"SourceID":73912,"TargetID":73913,"Directional":true}]},{"ID":16509,"SourceStructureID":73906,"TargetStructureID":73844,"Label":"73906-73844 via Ribbon Synapse from 73907 -> 73901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73907,"TargetID":73901,"Directional":true}]},{"ID":16510,"SourceStructureID":73926,"TargetStructureID":6115,"Label":"73926-6115 via Conventional from 73932 -> 73933","Type":"Conventional","Directional":true,"Links":[{"SourceID":73932,"TargetID":73933,"Directional":true}]},{"ID":16511,"SourceStructureID":73940,"TargetStructureID":6115,"Label":"73940-6115 via Conventional from 73942 -> 73941, 73956 -> 73957","Type":"Conventional","Directional":true,"Links":[{"SourceID":73942,"TargetID":73941,"Directional":true},{"SourceID":73956,"TargetID":73957,"Directional":true}]},{"ID":16512,"SourceStructureID":73949,"TargetStructureID":6115,"Label":"73949-6115 via Conventional from 73951 -> 73950","Type":"Conventional","Directional":true,"Links":[{"SourceID":73951,"TargetID":73950,"Directional":true}]},{"ID":16513,"SourceStructureID":73970,"TargetStructureID":6115,"Label":"73970-6115 via Conventional from 73973 -> 56313","Type":"Conventional","Directional":true,"Links":[{"SourceID":73973,"TargetID":56313,"Directional":true}]},{"ID":16514,"SourceStructureID":73974,"TargetStructureID":606,"Label":"73974-606 via Conventional from 73975 -> 48105","Type":"Conventional","Directional":true,"Links":[{"SourceID":73975,"TargetID":48105,"Directional":true}]},{"ID":16515,"SourceStructureID":73979,"TargetStructureID":6115,"Label":"73979-6115 via Conventional from 73998 -> 73999","Type":"Conventional","Directional":true,"Links":[{"SourceID":73998,"TargetID":73999,"Directional":true}]},{"ID":16516,"SourceStructureID":73987,"TargetStructureID":5598,"Label":"73987-5598 via Conventional from 73988 -> 73986","Type":"Conventional","Directional":true,"Links":[{"SourceID":73988,"TargetID":73986,"Directional":true}]},{"ID":16517,"SourceStructureID":73991,"TargetStructureID":6115,"Label":"73991-6115 via Conventional from 73992 -> 73993","Type":"Conventional","Directional":true,"Links":[{"SourceID":73992,"TargetID":73993,"Directional":true}]},{"ID":16518,"SourceStructureID":73994,"TargetStructureID":6115,"Label":"73994-6115 via Conventional from 73996 -> 73995","Type":"Conventional","Directional":true,"Links":[{"SourceID":73996,"TargetID":73995,"Directional":true}]},{"ID":16519,"SourceStructureID":74013,"TargetStructureID":6115,"Label":"74013-6115 via Conventional from 74015 -> 74014","Type":"Conventional","Directional":true,"Links":[{"SourceID":74015,"TargetID":74014,"Directional":true}]},{"ID":16520,"SourceStructureID":74018,"TargetStructureID":6115,"Label":"74018-6115 via Conventional from 74019 -> 74020","Type":"Conventional","Directional":true,"Links":[{"SourceID":74019,"TargetID":74020,"Directional":true}]},{"ID":16521,"SourceStructureID":74023,"TargetStructureID":5442,"Label":"74023-5442 via Conventional from 74024 -> 74027","Type":"Conventional","Directional":true,"Links":[{"SourceID":74024,"TargetID":74027,"Directional":true}]},{"ID":16522,"SourceStructureID":74035,"TargetStructureID":6115,"Label":"74035-6115 via Conventional from 74037 -> 74036","Type":"Conventional","Directional":true,"Links":[{"SourceID":74037,"TargetID":74036,"Directional":true}]},{"ID":16523,"SourceStructureID":74042,"TargetStructureID":6115,"Label":"74042-6115 via Conventional from 74044 -> 74043","Type":"Conventional","Directional":true,"Links":[{"SourceID":74044,"TargetID":74043,"Directional":true}]},{"ID":16524,"SourceStructureID":74053,"TargetStructureID":6857,"Label":"74053-6857 via Conventional from 74054 -> 7555","Type":"Conventional","Directional":true,"Links":[{"SourceID":74054,"TargetID":7555,"Directional":true}]},{"ID":16525,"SourceStructureID":74058,"TargetStructureID":6857,"Label":"74058-6857 via Conventional from 74059 -> 7560","Type":"Conventional","Directional":true,"Links":[{"SourceID":74059,"TargetID":7560,"Directional":true}]},{"ID":16526,"SourceStructureID":74064,"TargetStructureID":6115,"Label":"74064-6115 via Conventional from 74066 -> 74065","Type":"Conventional","Directional":true,"Links":[{"SourceID":74066,"TargetID":74065,"Directional":true}]},{"ID":16527,"SourceStructureID":74077,"TargetStructureID":6115,"Label":"74077-6115 via Conventional from 74079 -> 56316, 74080 -> 56316","Type":"Conventional","Directional":true,"Links":[{"SourceID":74079,"TargetID":56316,"Directional":true},{"SourceID":74080,"TargetID":56316,"Directional":true}]},{"ID":16528,"SourceStructureID":74081,"TargetStructureID":5530,"Label":"74081-5530 via Conventional from 74209 -> 74210","Type":"Conventional","Directional":true,"Links":[{"SourceID":74209,"TargetID":74210,"Directional":true}]},{"ID":16529,"SourceStructureID":74082,"TargetStructureID":82094,"Label":"74082-82094 via Conventional from 82096 -> 82095","Type":"Conventional","Directional":true,"Links":[{"SourceID":82096,"TargetID":82095,"Directional":true}]},{"ID":16530,"SourceStructureID":74086,"TargetStructureID":6115,"Label":"74086-6115 via Conventional from 74092 -> 74093","Type":"Conventional","Directional":true,"Links":[{"SourceID":74092,"TargetID":74093,"Directional":true}]},{"ID":16531,"SourceStructureID":74098,"TargetStructureID":6115,"Label":"74098-6115 via Conventional from 74099 -> 74100","Type":"Conventional","Directional":true,"Links":[{"SourceID":74099,"TargetID":74100,"Directional":true}]},{"ID":16532,"SourceStructureID":74135,"TargetStructureID":6857,"Label":"74135-6857 via Conventional from 74136 -> 6876","Type":"Conventional","Directional":true,"Links":[{"SourceID":74136,"TargetID":6876,"Directional":true}]},{"ID":16533,"SourceStructureID":74211,"TargetStructureID":5530,"Label":"74211-5530 via Conventional from 74212 -> 29866","Type":"Conventional","Directional":true,"Links":[{"SourceID":74212,"TargetID":29866,"Directional":true}]},{"ID":16534,"SourceStructureID":74213,"TargetStructureID":5530,"Label":"74213-5530 via Conventional from 74214 -> 74215","Type":"Conventional","Directional":true,"Links":[{"SourceID":74214,"TargetID":74215,"Directional":true}]},{"ID":16535,"SourceStructureID":74216,"TargetStructureID":5530,"Label":"74216-5530 via Conventional from 74578 -> 74580","Type":"Conventional","Directional":true,"Links":[{"SourceID":74578,"TargetID":74580,"Directional":true}]},{"ID":16536,"SourceStructureID":74216,"TargetStructureID":54925,"Label":"74216-54925 via Conventional from 81817 -> 54935","Type":"Conventional","Directional":true,"Links":[{"SourceID":81817,"TargetID":54935,"Directional":true}]},{"ID":16537,"SourceStructureID":74216,"TargetStructureID":74584,"Label":"74216-74584 via Conventional from 81813 -> 81814","Type":"Conventional","Directional":true,"Links":[{"SourceID":81813,"TargetID":81814,"Directional":true}]},{"ID":16538,"SourceStructureID":74217,"TargetStructureID":5530,"Label":"74217-5530 via Conventional from 74218 -> 74219","Type":"Conventional","Directional":true,"Links":[{"SourceID":74218,"TargetID":74219,"Directional":true}]},{"ID":16539,"SourceStructureID":74225,"TargetStructureID":5530,"Label":"74225-5530 via Conventional from 75749 -> 75750","Type":"Conventional","Directional":true,"Links":[{"SourceID":75749,"TargetID":75750,"Directional":true}]},{"ID":16540,"SourceStructureID":74228,"TargetStructureID":68539,"Label":"74228-68539 via Conventional from 74229 -> 74230","Type":"Conventional","Directional":true,"Links":[{"SourceID":74229,"TargetID":74230,"Directional":true}]},{"ID":16541,"SourceStructureID":74231,"TargetStructureID":74233,"Label":"74231-74233 via Conventional from 74232 -> 74235","Type":"Conventional","Directional":true,"Links":[{"SourceID":74232,"TargetID":74235,"Directional":true}]},{"ID":16542,"SourceStructureID":74233,"TargetStructureID":68539,"Label":"74233-68539 via Conventional from 74234 -> 74236","Type":"Conventional","Directional":true,"Links":[{"SourceID":74234,"TargetID":74236,"Directional":true}]},{"ID":16543,"SourceStructureID":74237,"TargetStructureID":74239,"Label":"74237-74239 via Conventional from 74264 -> 74265","Type":"Conventional","Directional":true,"Links":[{"SourceID":74264,"TargetID":74265,"Directional":true}]},{"ID":16544,"SourceStructureID":74239,"TargetStructureID":68539,"Label":"74239-68539 via Conventional from 74247 -> 74248","Type":"Conventional","Directional":true,"Links":[{"SourceID":74247,"TargetID":74248,"Directional":true}]},{"ID":16545,"SourceStructureID":74241,"TargetStructureID":74240,"Label":"74241-74240 via Conventional from 74243 -> 74244","Type":"Conventional","Directional":true,"Links":[{"SourceID":74243,"TargetID":74244,"Directional":true}]},{"ID":16546,"SourceStructureID":74252,"TargetStructureID":68539,"Label":"74252-68539 via Conventional from 74253 -> 74259","Type":"Conventional","Directional":true,"Links":[{"SourceID":74253,"TargetID":74259,"Directional":true}]},{"ID":16547,"SourceStructureID":74269,"TargetStructureID":68539,"Label":"74269-68539 via Conventional from 74270 -> 74271","Type":"Conventional","Directional":true,"Links":[{"SourceID":74270,"TargetID":74271,"Directional":true}]},{"ID":16548,"SourceStructureID":74282,"TargetStructureID":68539,"Label":"74282-68539 via Conventional from 74283 -> 74284","Type":"Conventional","Directional":true,"Links":[{"SourceID":74283,"TargetID":74284,"Directional":true}]},{"ID":16549,"SourceStructureID":74291,"TargetStructureID":6115,"Label":"74291-6115 via Conventional from 74295 -> 55778","Type":"Conventional","Directional":true,"Links":[{"SourceID":74295,"TargetID":55778,"Directional":true}]},{"ID":16550,"SourceStructureID":74297,"TargetStructureID":68539,"Label":"74297-68539 via Conventional from 74298 -> 74296","Type":"Conventional","Directional":true,"Links":[{"SourceID":74298,"TargetID":74296,"Directional":true}]},{"ID":16551,"SourceStructureID":74303,"TargetStructureID":6115,"Label":"74303-6115 via Conventional from 74304 -> 74305","Type":"Conventional","Directional":true,"Links":[{"SourceID":74304,"TargetID":74305,"Directional":true}]},{"ID":16552,"SourceStructureID":74308,"TargetStructureID":6115,"Label":"74308-6115 via Conventional from 74309 -> 74310","Type":"Conventional","Directional":true,"Links":[{"SourceID":74309,"TargetID":74310,"Directional":true}]},{"ID":16553,"SourceStructureID":74317,"TargetStructureID":6115,"Label":"74317-6115 via Conventional from 74318 -> 55781","Type":"Conventional","Directional":true,"Links":[{"SourceID":74318,"TargetID":55781,"Directional":true}]},{"ID":16554,"SourceStructureID":74321,"TargetStructureID":6115,"Label":"74321-6115 via Conventional from 74322 -> 55782","Type":"Conventional","Directional":true,"Links":[{"SourceID":74322,"TargetID":55782,"Directional":true}]},{"ID":16555,"SourceStructureID":74341,"TargetStructureID":68539,"Label":"74341-68539 via Conventional from 74347 -> 74348","Type":"Conventional","Directional":true,"Links":[{"SourceID":74347,"TargetID":74348,"Directional":true}]},{"ID":16556,"SourceStructureID":74350,"TargetStructureID":68539,"Label":"74350-68539 via Conventional from 74353 -> 74352","Type":"Conventional","Directional":true,"Links":[{"SourceID":74353,"TargetID":74352,"Directional":true}]},{"ID":16557,"SourceStructureID":74369,"TargetStructureID":74047,"Label":"74369-74047 via Conventional from 74371 -> 74373","Type":"Conventional","Directional":true,"Links":[{"SourceID":74371,"TargetID":74373,"Directional":true}]},{"ID":16558,"SourceStructureID":74377,"TargetStructureID":74047,"Label":"74377-74047 via Conventional from 74378 -> 74376","Type":"Conventional","Directional":true,"Links":[{"SourceID":74378,"TargetID":74376,"Directional":true}]},{"ID":16559,"SourceStructureID":74379,"TargetStructureID":68539,"Label":"74379-68539 via Conventional from 74380 -> 74381","Type":"Conventional","Directional":true,"Links":[{"SourceID":74380,"TargetID":74381,"Directional":true}]},{"ID":16560,"SourceStructureID":74385,"TargetStructureID":6115,"Label":"74385-6115 via Conventional from 74386 -> 74387","Type":"Conventional","Directional":true,"Links":[{"SourceID":74386,"TargetID":74387,"Directional":true}]},{"ID":16561,"SourceStructureID":74388,"TargetStructureID":6115,"Label":"74388-6115 via Conventional from 74391 -> 74392","Type":"Conventional","Directional":true,"Links":[{"SourceID":74391,"TargetID":74392,"Directional":true}]},{"ID":16562,"SourceStructureID":74399,"TargetStructureID":74047,"Label":"74399-74047 via Conventional from 74400 -> 74398","Type":"Conventional","Directional":true,"Links":[{"SourceID":74400,"TargetID":74398,"Directional":true}]},{"ID":16563,"SourceStructureID":74402,"TargetStructureID":6115,"Label":"74402-6115 via Conventional from 74403 -> 74404","Type":"Conventional","Directional":true,"Links":[{"SourceID":74403,"TargetID":74404,"Directional":true}]},{"ID":16564,"SourceStructureID":74407,"TargetStructureID":68539,"Label":"74407-68539 via Conventional from 74408 -> 74409","Type":"Conventional","Directional":true,"Links":[{"SourceID":74408,"TargetID":74409,"Directional":true}]},{"ID":16565,"SourceStructureID":74412,"TargetStructureID":68539,"Label":"74412-68539 via Conventional from 74419 -> 74420","Type":"Conventional","Directional":true,"Links":[{"SourceID":74419,"TargetID":74420,"Directional":true}]},{"ID":16566,"SourceStructureID":74424,"TargetStructureID":6115,"Label":"74424-6115 via Conventional from 75963 -> 75962","Type":"Conventional","Directional":true,"Links":[{"SourceID":75963,"TargetID":75962,"Directional":true}]},{"ID":16567,"SourceStructureID":74441,"TargetStructureID":6115,"Label":"74441-6115 via Conventional from 74446 -> 74447","Type":"Conventional","Directional":true,"Links":[{"SourceID":74446,"TargetID":74447,"Directional":true}]},{"ID":16568,"SourceStructureID":74448,"TargetStructureID":6115,"Label":"74448-6115 via Conventional from 74449 -> 74450","Type":"Conventional","Directional":true,"Links":[{"SourceID":74449,"TargetID":74450,"Directional":true}]},{"ID":16569,"SourceStructureID":74456,"TargetStructureID":6115,"Label":"74456-6115 via Conventional from 74457 -> 74458","Type":"Conventional","Directional":true,"Links":[{"SourceID":74457,"TargetID":74458,"Directional":true}]},{"ID":16570,"SourceStructureID":74460,"TargetStructureID":6115,"Label":"74460-6115 via Conventional from 74464 -> 74465","Type":"Conventional","Directional":true,"Links":[{"SourceID":74464,"TargetID":74465,"Directional":true}]},{"ID":16571,"SourceStructureID":74471,"TargetStructureID":6115,"Label":"74471-6115 via Conventional from 74472 -> 74473","Type":"Conventional","Directional":true,"Links":[{"SourceID":74472,"TargetID":74473,"Directional":true}]},{"ID":16572,"SourceStructureID":74482,"TargetStructureID":5442,"Label":"74482-5442 via Conventional from 74483 -> 55129","Type":"Conventional","Directional":true,"Links":[{"SourceID":74483,"TargetID":55129,"Directional":true}]},{"ID":16573,"SourceStructureID":74489,"TargetStructureID":6115,"Label":"74489-6115 via Conventional from 74491 -> 74492","Type":"Conventional","Directional":true,"Links":[{"SourceID":74491,"TargetID":74492,"Directional":true}]},{"ID":16574,"SourceStructureID":74493,"TargetStructureID":6115,"Label":"74493-6115 via Conventional from 74494 -> 74495","Type":"Conventional","Directional":true,"Links":[{"SourceID":74494,"TargetID":74495,"Directional":true}]},{"ID":16575,"SourceStructureID":74499,"TargetStructureID":6115,"Label":"74499-6115 via Conventional from 74500 -> 74501","Type":"Conventional","Directional":true,"Links":[{"SourceID":74500,"TargetID":74501,"Directional":true}]},{"ID":16576,"SourceStructureID":74505,"TargetStructureID":6115,"Label":"74505-6115 via Conventional from 74506 -> 74507","Type":"Conventional","Directional":true,"Links":[{"SourceID":74506,"TargetID":74507,"Directional":true}]},{"ID":16577,"SourceStructureID":74511,"TargetStructureID":6115,"Label":"74511-6115 via Conventional from 74512 -> 74513","Type":"Conventional","Directional":true,"Links":[{"SourceID":74512,"TargetID":74513,"Directional":true}]},{"ID":16578,"SourceStructureID":74527,"TargetStructureID":6115,"Label":"74527-6115 via Conventional from 74528 -> 74529","Type":"Conventional","Directional":true,"Links":[{"SourceID":74528,"TargetID":74529,"Directional":true}]},{"ID":16579,"SourceStructureID":74548,"TargetStructureID":68539,"Label":"74548-68539 via Conventional from 74549 -> 74547","Type":"Conventional","Directional":true,"Links":[{"SourceID":74549,"TargetID":74547,"Directional":true}]},{"ID":16580,"SourceStructureID":74555,"TargetStructureID":68539,"Label":"74555-68539 via Conventional from 74556 -> 74557","Type":"Conventional","Directional":true,"Links":[{"SourceID":74556,"TargetID":74557,"Directional":true}]},{"ID":16581,"SourceStructureID":74558,"TargetStructureID":68539,"Label":"74558-68539 via Conventional from 74559 -> 74562, 74560 -> 74561","Type":"Conventional","Directional":true,"Links":[{"SourceID":74559,"TargetID":74562,"Directional":true},{"SourceID":74560,"TargetID":74561,"Directional":true}]},{"ID":16582,"SourceStructureID":74563,"TargetStructureID":68539,"Label":"74563-68539 via Conventional from 74564 -> 74565","Type":"Conventional","Directional":true,"Links":[{"SourceID":74564,"TargetID":74565,"Directional":true}]},{"ID":16583,"SourceStructureID":74567,"TargetStructureID":68539,"Label":"74567-68539 via Conventional from 74568 -> 74566","Type":"Conventional","Directional":true,"Links":[{"SourceID":74568,"TargetID":74566,"Directional":true}]},{"ID":16584,"SourceStructureID":74573,"TargetStructureID":68539,"Label":"74573-68539 via Conventional from 74574 -> 74572","Type":"Conventional","Directional":true,"Links":[{"SourceID":74574,"TargetID":74572,"Directional":true}]},{"ID":16585,"SourceStructureID":74576,"TargetStructureID":68539,"Label":"74576-68539 via Conventional from 74577 -> 74579","Type":"Conventional","Directional":true,"Links":[{"SourceID":74577,"TargetID":74579,"Directional":true}]},{"ID":16586,"SourceStructureID":74584,"TargetStructureID":595,"Label":"74584-595 via Conventional from 81796 -> 81795","Type":"Conventional","Directional":true,"Links":[{"SourceID":81796,"TargetID":81795,"Directional":true}]},{"ID":16587,"SourceStructureID":74584,"TargetStructureID":5530,"Label":"74584-5530 via Conventional from 74642 -> 30063, 81791 -> 81792","Type":"Conventional","Directional":true,"Links":[{"SourceID":74642,"TargetID":30063,"Directional":true},{"SourceID":81791,"TargetID":81792,"Directional":true}]},{"ID":16588,"SourceStructureID":74590,"TargetStructureID":74593,"Label":"74590-74593 via Conventional from 74592 -> 74594","Type":"Conventional","Directional":true,"Links":[{"SourceID":74592,"TargetID":74594,"Directional":true}]},{"ID":16589,"SourceStructureID":74590,"TargetStructureID":74601,"Label":"74590-74601 via Conventional from 74603 -> 74605","Type":"Conventional","Directional":true,"Links":[{"SourceID":74603,"TargetID":74605,"Directional":true}]},{"ID":16590,"SourceStructureID":74610,"TargetStructureID":68539,"Label":"74610-68539 via Conventional from 74611 -> 74609","Type":"Conventional","Directional":true,"Links":[{"SourceID":74611,"TargetID":74609,"Directional":true}]},{"ID":16591,"SourceStructureID":74618,"TargetStructureID":68539,"Label":"74618-68539 via Conventional from 74619 -> 74617","Type":"Conventional","Directional":true,"Links":[{"SourceID":74619,"TargetID":74617,"Directional":true}]},{"ID":16592,"SourceStructureID":74625,"TargetStructureID":74624,"Label":"74625-74624 via Conventional from 74626 -> 74628","Type":"Conventional","Directional":true,"Links":[{"SourceID":74626,"TargetID":74628,"Directional":true}]},{"ID":16593,"SourceStructureID":74635,"TargetStructureID":68539,"Label":"74635-68539 via Conventional from 74637 -> 74634","Type":"Conventional","Directional":true,"Links":[{"SourceID":74637,"TargetID":74634,"Directional":true}]},{"ID":16594,"SourceStructureID":74639,"TargetStructureID":68539,"Label":"74639-68539 via Ribbon Synapse from 74643 -> 74644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74643,"TargetID":74644,"Directional":true}]},{"ID":16595,"SourceStructureID":74645,"TargetStructureID":68539,"Label":"74645-68539 via Conventional from 74646 -> 74647","Type":"Conventional","Directional":true,"Links":[{"SourceID":74646,"TargetID":74647,"Directional":true}]},{"ID":16596,"SourceStructureID":74648,"TargetStructureID":68539,"Label":"74648-68539 via Conventional from 74649 -> 74650","Type":"Conventional","Directional":true,"Links":[{"SourceID":74649,"TargetID":74650,"Directional":true}]},{"ID":16597,"SourceStructureID":74658,"TargetStructureID":6115,"Label":"74658-6115 via Conventional from 75880 -> 75879","Type":"Conventional","Directional":true,"Links":[{"SourceID":75880,"TargetID":75879,"Directional":true}]},{"ID":16598,"SourceStructureID":74663,"TargetStructureID":68539,"Label":"74663-68539 via Conventional from 74664 -> 74665","Type":"Conventional","Directional":true,"Links":[{"SourceID":74664,"TargetID":74665,"Directional":true}]},{"ID":16599,"SourceStructureID":74667,"TargetStructureID":68539,"Label":"74667-68539 via Conventional from 74679 -> 74685","Type":"Conventional","Directional":true,"Links":[{"SourceID":74679,"TargetID":74685,"Directional":true}]},{"ID":16600,"SourceStructureID":74670,"TargetStructureID":5530,"Label":"74670-5530 via Conventional from 74672 -> 74673","Type":"Conventional","Directional":true,"Links":[{"SourceID":74672,"TargetID":74673,"Directional":true}]},{"ID":16601,"SourceStructureID":74678,"TargetStructureID":5530,"Label":"74678-5530 via Conventional from 74680 -> 74681","Type":"Conventional","Directional":true,"Links":[{"SourceID":74680,"TargetID":74681,"Directional":true}]},{"ID":16602,"SourceStructureID":74688,"TargetStructureID":6115,"Label":"74688-6115 via Conventional from 74689 -> 74690, 74745 -> 74748","Type":"Conventional","Directional":true,"Links":[{"SourceID":74689,"TargetID":74690,"Directional":true},{"SourceID":74745,"TargetID":74748,"Directional":true}]},{"ID":16603,"SourceStructureID":74694,"TargetStructureID":170,"Label":"74694-170 via Conventional from 81845 -> 81846","Type":"Conventional","Directional":true,"Links":[{"SourceID":81845,"TargetID":81846,"Directional":true}]},{"ID":16604,"SourceStructureID":74694,"TargetStructureID":5530,"Label":"74694-5530 via Conventional from 74696 -> 74697","Type":"Conventional","Directional":true,"Links":[{"SourceID":74696,"TargetID":74697,"Directional":true}]},{"ID":16605,"SourceStructureID":74699,"TargetStructureID":6115,"Label":"74699-6115 via Conventional from 74772 -> 74773","Type":"Conventional","Directional":true,"Links":[{"SourceID":74772,"TargetID":74773,"Directional":true}]},{"ID":16606,"SourceStructureID":74724,"TargetStructureID":6156,"Label":"74724-6156 via Conventional from 74730 -> 23245","Type":"Conventional","Directional":true,"Links":[{"SourceID":74730,"TargetID":23245,"Directional":true}]},{"ID":16607,"SourceStructureID":74726,"TargetStructureID":6115,"Label":"74726-6115 via Conventional from 74735 -> 74736","Type":"Conventional","Directional":true,"Links":[{"SourceID":74735,"TargetID":74736,"Directional":true}]},{"ID":16608,"SourceStructureID":74727,"TargetStructureID":170,"Label":"74727-170 via Conventional from 88763 -> 88764","Type":"Conventional","Directional":true,"Links":[{"SourceID":88763,"TargetID":88764,"Directional":true}]},{"ID":16609,"SourceStructureID":74727,"TargetStructureID":5530,"Label":"74727-5530 via Conventional from 74733 -> 74734","Type":"Conventional","Directional":true,"Links":[{"SourceID":74733,"TargetID":74734,"Directional":true}]},{"ID":16610,"SourceStructureID":74740,"TargetStructureID":5650,"Label":"74740-5650 via Conventional from 82113 -> 82114","Type":"Conventional","Directional":true,"Links":[{"SourceID":82113,"TargetID":82114,"Directional":true}]},{"ID":16611,"SourceStructureID":74740,"TargetStructureID":72299,"Label":"74740-72299 via Conventional from 82111 -> 82112","Type":"Conventional","Directional":true,"Links":[{"SourceID":82111,"TargetID":82112,"Directional":true}]},{"ID":16612,"SourceStructureID":74769,"TargetStructureID":6115,"Label":"74769-6115 via Conventional from 74770 -> 74771","Type":"Conventional","Directional":true,"Links":[{"SourceID":74770,"TargetID":74771,"Directional":true}]},{"ID":16613,"SourceStructureID":74786,"TargetStructureID":6115,"Label":"74786-6115 via Conventional from 74787 -> 74788","Type":"Conventional","Directional":true,"Links":[{"SourceID":74787,"TargetID":74788,"Directional":true}]},{"ID":16614,"SourceStructureID":74801,"TargetStructureID":6115,"Label":"74801-6115 via Conventional from 74803 -> 74802","Type":"Conventional","Directional":true,"Links":[{"SourceID":74803,"TargetID":74802,"Directional":true}]},{"ID":16615,"SourceStructureID":74804,"TargetStructureID":6115,"Label":"74804-6115 via Conventional from 74805 -> 74806","Type":"Conventional","Directional":true,"Links":[{"SourceID":74805,"TargetID":74806,"Directional":true}]},{"ID":16616,"SourceStructureID":74810,"TargetStructureID":6115,"Label":"74810-6115 via Conventional from 74811 -> 55839","Type":"Conventional","Directional":true,"Links":[{"SourceID":74811,"TargetID":55839,"Directional":true}]},{"ID":16617,"SourceStructureID":74815,"TargetStructureID":6115,"Label":"74815-6115 via Conventional from 74816 -> 74817","Type":"Conventional","Directional":true,"Links":[{"SourceID":74816,"TargetID":74817,"Directional":true}]},{"ID":16618,"SourceStructureID":74830,"TargetStructureID":6115,"Label":"74830-6115 via Conventional from 80915 -> 80916","Type":"Conventional","Directional":true,"Links":[{"SourceID":80915,"TargetID":80916,"Directional":true}]},{"ID":16619,"SourceStructureID":74834,"TargetStructureID":6115,"Label":"74834-6115 via Conventional from 74836 -> 74835","Type":"Conventional","Directional":true,"Links":[{"SourceID":74836,"TargetID":74835,"Directional":true}]},{"ID":16620,"SourceStructureID":74846,"TargetStructureID":6115,"Label":"74846-6115 via Conventional from 74849 -> 74850","Type":"Conventional","Directional":true,"Links":[{"SourceID":74849,"TargetID":74850,"Directional":true}]},{"ID":16621,"SourceStructureID":74854,"TargetStructureID":68539,"Label":"74854-68539 via Conventional from 74855 -> 74856","Type":"Conventional","Directional":true,"Links":[{"SourceID":74855,"TargetID":74856,"Directional":true}]},{"ID":16622,"SourceStructureID":74859,"TargetStructureID":68539,"Label":"74859-68539 via Conventional from 74860 -> 74861","Type":"Conventional","Directional":true,"Links":[{"SourceID":74860,"TargetID":74861,"Directional":true}]},{"ID":16623,"SourceStructureID":74863,"TargetStructureID":68539,"Label":"74863-68539 via Conventional from 74864 -> 74865","Type":"Conventional","Directional":true,"Links":[{"SourceID":74864,"TargetID":74865,"Directional":true}]},{"ID":16624,"SourceStructureID":74866,"TargetStructureID":68539,"Label":"74866-68539 via Conventional from 74867 -> 74868","Type":"Conventional","Directional":true,"Links":[{"SourceID":74867,"TargetID":74868,"Directional":true}]},{"ID":16625,"SourceStructureID":74873,"TargetStructureID":68539,"Label":"74873-68539 via Conventional from 74874 -> 74875","Type":"Conventional","Directional":true,"Links":[{"SourceID":74874,"TargetID":74875,"Directional":true}]},{"ID":16626,"SourceStructureID":74886,"TargetStructureID":68539,"Label":"74886-68539 via Conventional from 74887 -> 74888","Type":"Conventional","Directional":true,"Links":[{"SourceID":74887,"TargetID":74888,"Directional":true}]},{"ID":16627,"SourceStructureID":74890,"TargetStructureID":68539,"Label":"74890-68539 via Conventional from 74891 -> 74889","Type":"Conventional","Directional":true,"Links":[{"SourceID":74891,"TargetID":74889,"Directional":true}]},{"ID":16628,"SourceStructureID":74899,"TargetStructureID":68539,"Label":"74899-68539 via Conventional from 74900 -> 74901","Type":"Conventional","Directional":true,"Links":[{"SourceID":74900,"TargetID":74901,"Directional":true}]},{"ID":16629,"SourceStructureID":74904,"TargetStructureID":68539,"Label":"74904-68539 via Conventional from 74905 -> 74906","Type":"Conventional","Directional":true,"Links":[{"SourceID":74905,"TargetID":74906,"Directional":true}]},{"ID":16630,"SourceStructureID":74907,"TargetStructureID":83698,"Label":"74907-83698 via Ribbon Synapse from 74908 -> 83711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74908,"TargetID":83711,"Directional":true}]},{"ID":16631,"SourceStructureID":74907,"TargetStructureID":83715,"Label":"74907-83715 via Ribbon Synapse from 74908 -> 83717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74908,"TargetID":83717,"Directional":true}]},{"ID":16632,"SourceStructureID":74907,"TargetStructureID":83721,"Label":"74907-83721 via Ribbon Synapse from 74908 -> 83727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74908,"TargetID":83727,"Directional":true}]},{"ID":16633,"SourceStructureID":74907,"TargetStructureID":83911,"Label":"74907-83911 via Ribbon Synapse from 83910 -> 83912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83910,"TargetID":83912,"Directional":true}]},{"ID":16634,"SourceStructureID":74907,"TargetStructureID":84280,"Label":"74907-84280 via Ribbon Synapse from 84279 -> 84281","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84279,"TargetID":84281,"Directional":true}]},{"ID":16635,"SourceStructureID":74907,"TargetStructureID":84283,"Label":"74907-84283 via BC Conventional Synapse from 84466 -> 84467","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84466,"TargetID":84467,"Directional":true}]},{"ID":16636,"SourceStructureID":74907,"TargetStructureID":84284,"Label":"74907-84284 via Ribbon Synapse from 84279 -> 84286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84279,"TargetID":84286,"Directional":true}]},{"ID":16637,"SourceStructureID":74907,"TargetStructureID":84290,"Label":"74907-84290 via Ribbon Synapse from 84293 -> 84297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84293,"TargetID":84297,"Directional":true}]},{"ID":16638,"SourceStructureID":74907,"TargetStructureID":84294,"Label":"74907-84294 via Ribbon Synapse from 84293 -> 84296","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84293,"TargetID":84296,"Directional":true}]},{"ID":16639,"SourceStructureID":74907,"TargetStructureID":84463,"Label":"74907-84463 via BC Conventional Synapse from 84464 -> 84465","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84464,"TargetID":84465,"Directional":true}]},{"ID":16640,"SourceStructureID":74907,"TargetStructureID":84500,"Label":"74907-84500 via Ribbon Synapse from 84499 -> 84507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84499,"TargetID":84507,"Directional":true}]},{"ID":16641,"SourceStructureID":74907,"TargetStructureID":84508,"Label":"74907-84508 via Ribbon Synapse from 84499 -> 84509","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84499,"TargetID":84509,"Directional":true}]},{"ID":16642,"SourceStructureID":74907,"TargetStructureID":84514,"Label":"74907-84514 via Ribbon Synapse from 84498 -> 84515","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84498,"TargetID":84515,"Directional":true}]},{"ID":16643,"SourceStructureID":74907,"TargetStructureID":84635,"Label":"74907-84635 via Ribbon Synapse from 84631 -> 84737","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84631,"TargetID":84737,"Directional":true}]},{"ID":16644,"SourceStructureID":74907,"TargetStructureID":84636,"Label":"74907-84636 via Ribbon Synapse from 84631 -> 84739","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84631,"TargetID":84739,"Directional":true}]},{"ID":16645,"SourceStructureID":74907,"TargetStructureID":84740,"Label":"74907-84740 via Ribbon Synapse from 84631 -> 84742, 84839 -> 84841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84631,"TargetID":84742,"Directional":true},{"SourceID":84839,"TargetID":84841,"Directional":true}]},{"ID":16646,"SourceStructureID":74907,"TargetStructureID":84844,"Label":"74907-84844 via Ribbon Synapse from 84839 -> 84849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84839,"TargetID":84849,"Directional":true}]},{"ID":16647,"SourceStructureID":74920,"TargetStructureID":71517,"Label":"74920-71517 via Conventional from 74921 -> 74922","Type":"Conventional","Directional":true,"Links":[{"SourceID":74921,"TargetID":74922,"Directional":true}]},{"ID":16648,"SourceStructureID":74936,"TargetStructureID":71517,"Label":"74936-71517 via Conventional from 74937 -> 74938","Type":"Conventional","Directional":true,"Links":[{"SourceID":74937,"TargetID":74938,"Directional":true}]},{"ID":16649,"SourceStructureID":74939,"TargetStructureID":71517,"Label":"74939-71517 via Conventional from 74940 -> 74941","Type":"Conventional","Directional":true,"Links":[{"SourceID":74940,"TargetID":74941,"Directional":true}]},{"ID":16650,"SourceStructureID":74943,"TargetStructureID":74939,"Label":"74943-74939 via Conventional from 74944 -> 74942","Type":"Conventional","Directional":true,"Links":[{"SourceID":74944,"TargetID":74942,"Directional":true}]},{"ID":16651,"SourceStructureID":74957,"TargetStructureID":6123,"Label":"74957-6123 via Conventional from 74961 -> 74962","Type":"Conventional","Directional":true,"Links":[{"SourceID":74961,"TargetID":74962,"Directional":true}]},{"ID":16652,"SourceStructureID":74957,"TargetStructureID":71517,"Label":"74957-71517 via Conventional from 74958 -> 74959","Type":"Conventional","Directional":true,"Links":[{"SourceID":74958,"TargetID":74959,"Directional":true}]},{"ID":16653,"SourceStructureID":74969,"TargetStructureID":6857,"Label":"74969-6857 via Conventional from 74970 -> 74972","Type":"Conventional","Directional":true,"Links":[{"SourceID":74970,"TargetID":74972,"Directional":true}]},{"ID":16654,"SourceStructureID":74978,"TargetStructureID":5530,"Label":"74978-5530 via Conventional from 75408 -> 75409","Type":"Conventional","Directional":true,"Links":[{"SourceID":75408,"TargetID":75409,"Directional":true}]},{"ID":16655,"SourceStructureID":74994,"TargetStructureID":6115,"Label":"74994-6115 via Conventional from 74995 -> 74993","Type":"Conventional","Directional":true,"Links":[{"SourceID":74995,"TargetID":74993,"Directional":true}]},{"ID":16656,"SourceStructureID":75001,"TargetStructureID":5528,"Label":"75001-5528 via Conventional from 94149 -> 94150, 94394 -> 94395","Type":"Conventional","Directional":true,"Links":[{"SourceID":94149,"TargetID":94150,"Directional":true},{"SourceID":94394,"TargetID":94395,"Directional":true}]},{"ID":16657,"SourceStructureID":75001,"TargetStructureID":5530,"Label":"75001-5530 via Conventional from 75006 -> 75008","Type":"Conventional","Directional":true,"Links":[{"SourceID":75006,"TargetID":75008,"Directional":true}]},{"ID":16658,"SourceStructureID":75012,"TargetStructureID":5530,"Label":"75012-5530 via Conventional from 75013 -> 75014","Type":"Conventional","Directional":true,"Links":[{"SourceID":75013,"TargetID":75014,"Directional":true}]},{"ID":16659,"SourceStructureID":75015,"TargetStructureID":71511,"Label":"75015-71511 via Conventional from 75016 -> 75020","Type":"Conventional","Directional":true,"Links":[{"SourceID":75016,"TargetID":75020,"Directional":true}]},{"ID":16660,"SourceStructureID":75017,"TargetStructureID":5530,"Label":"75017-5530 via Conventional from 75025 -> 75026, 75025 -> 125897","Type":"Conventional","Directional":true,"Links":[{"SourceID":75025,"TargetID":75026,"Directional":true},{"SourceID":75025,"TargetID":125897,"Directional":true}]},{"ID":16661,"SourceStructureID":75021,"TargetStructureID":71517,"Label":"75021-71517 via Conventional from 75023 -> 75024","Type":"Conventional","Directional":true,"Links":[{"SourceID":75023,"TargetID":75024,"Directional":true}]},{"ID":16662,"SourceStructureID":75028,"TargetStructureID":75021,"Label":"75028-75021 via Conventional from 75031 -> 75022","Type":"Conventional","Directional":true,"Links":[{"SourceID":75031,"TargetID":75022,"Directional":true}]},{"ID":16663,"SourceStructureID":75033,"TargetStructureID":6115,"Label":"75033-6115 via Conventional from 75034 -> 55769","Type":"Conventional","Directional":true,"Links":[{"SourceID":75034,"TargetID":55769,"Directional":true}]},{"ID":16664,"SourceStructureID":75040,"TargetStructureID":6115,"Label":"75040-6115 via Conventional from 75044 -> 55768","Type":"Conventional","Directional":true,"Links":[{"SourceID":75044,"TargetID":55768,"Directional":true}]},{"ID":16665,"SourceStructureID":75052,"TargetStructureID":75056,"Label":"75052-75056 via Conventional from 75055 -> 75057","Type":"Conventional","Directional":true,"Links":[{"SourceID":75055,"TargetID":75057,"Directional":true}]},{"ID":16666,"SourceStructureID":75062,"TargetStructureID":6115,"Label":"75062-6115 via Conventional from 75063 -> 75064","Type":"Conventional","Directional":true,"Links":[{"SourceID":75063,"TargetID":75064,"Directional":true}]},{"ID":16667,"SourceStructureID":75068,"TargetStructureID":6115,"Label":"75068-6115 via Conventional from 75069 -> 75070","Type":"Conventional","Directional":true,"Links":[{"SourceID":75069,"TargetID":75070,"Directional":true}]},{"ID":16668,"SourceStructureID":75073,"TargetStructureID":6115,"Label":"75073-6115 via Conventional from 75074 -> 75075","Type":"Conventional","Directional":true,"Links":[{"SourceID":75074,"TargetID":75075,"Directional":true}]},{"ID":16669,"SourceStructureID":75096,"TargetStructureID":6115,"Label":"75096-6115 via Conventional from 75097 -> 75098","Type":"Conventional","Directional":true,"Links":[{"SourceID":75097,"TargetID":75098,"Directional":true}]},{"ID":16670,"SourceStructureID":75104,"TargetStructureID":6115,"Label":"75104-6115 via Conventional from 75105 -> 75106","Type":"Conventional","Directional":true,"Links":[{"SourceID":75105,"TargetID":75106,"Directional":true}]},{"ID":16671,"SourceStructureID":75112,"TargetStructureID":6115,"Label":"75112-6115 via Conventional from 75113 -> 75114","Type":"Conventional","Directional":true,"Links":[{"SourceID":75113,"TargetID":75114,"Directional":true}]},{"ID":16672,"SourceStructureID":75124,"TargetStructureID":6115,"Label":"75124-6115 via Conventional from 75125 -> 75126","Type":"Conventional","Directional":true,"Links":[{"SourceID":75125,"TargetID":75126,"Directional":true}]},{"ID":16673,"SourceStructureID":75130,"TargetStructureID":6115,"Label":"75130-6115 via Conventional from 74824 -> 55841, 75131 -> 75132, 90636 -> 90637","Type":"Conventional","Directional":true,"Links":[{"SourceID":74824,"TargetID":55841,"Directional":true},{"SourceID":75131,"TargetID":75132,"Directional":true},{"SourceID":90636,"TargetID":90637,"Directional":true}]},{"ID":16674,"SourceStructureID":75130,"TargetStructureID":16087,"Label":"75130-16087 via Conventional from 121973 -> 121974","Type":"Conventional","Directional":true,"Links":[{"SourceID":121973,"TargetID":121974,"Directional":true}]},{"ID":16675,"SourceStructureID":75133,"TargetStructureID":6047,"Label":"75133-6047 via Conventional from 112376 -> 112378","Type":"Conventional","Directional":true,"Links":[{"SourceID":112376,"TargetID":112378,"Directional":true}]},{"ID":16676,"SourceStructureID":75133,"TargetStructureID":6115,"Label":"75133-6115 via Conventional from 75134 -> 75135","Type":"Conventional","Directional":true,"Links":[{"SourceID":75134,"TargetID":75135,"Directional":true}]},{"ID":16677,"SourceStructureID":75147,"TargetStructureID":6115,"Label":"75147-6115 via Conventional from 75148 -> 75149","Type":"Conventional","Directional":true,"Links":[{"SourceID":75148,"TargetID":75149,"Directional":true}]},{"ID":16678,"SourceStructureID":75168,"TargetStructureID":72012,"Label":"75168-72012 via Conventional from 75169 -> 75170","Type":"Conventional","Directional":true,"Links":[{"SourceID":75169,"TargetID":75170,"Directional":true}]},{"ID":16679,"SourceStructureID":75173,"TargetStructureID":72012,"Label":"75173-72012 via Conventional from 75174 -> 75172","Type":"Conventional","Directional":true,"Links":[{"SourceID":75174,"TargetID":75172,"Directional":true}]},{"ID":16680,"SourceStructureID":75211,"TargetStructureID":6115,"Label":"75211-6115 via Conventional from 75212 -> 75213","Type":"Conventional","Directional":true,"Links":[{"SourceID":75212,"TargetID":75213,"Directional":true}]},{"ID":16681,"SourceStructureID":75219,"TargetStructureID":6115,"Label":"75219-6115 via Conventional from 75220 -> 75221","Type":"Conventional","Directional":true,"Links":[{"SourceID":75220,"TargetID":75221,"Directional":true}]},{"ID":16682,"SourceStructureID":75232,"TargetStructureID":6115,"Label":"75232-6115 via Conventional from 75234 -> 55862","Type":"Conventional","Directional":true,"Links":[{"SourceID":75234,"TargetID":55862,"Directional":true}]},{"ID":16683,"SourceStructureID":75242,"TargetStructureID":6115,"Label":"75242-6115 via Conventional from 75244 -> 75243","Type":"Conventional","Directional":true,"Links":[{"SourceID":75244,"TargetID":75243,"Directional":true}]},{"ID":16684,"SourceStructureID":75248,"TargetStructureID":6115,"Label":"75248-6115 via Conventional from 75249 -> 74998","Type":"Conventional","Directional":true,"Links":[{"SourceID":75249,"TargetID":74998,"Directional":true}]},{"ID":16685,"SourceStructureID":75273,"TargetStructureID":6115,"Label":"75273-6115 via Conventional from 75274 -> 75275","Type":"Conventional","Directional":true,"Links":[{"SourceID":75274,"TargetID":75275,"Directional":true}]},{"ID":16686,"SourceStructureID":75293,"TargetStructureID":6115,"Label":"75293-6115 via Conventional from 75417 -> 75416","Type":"Conventional","Directional":true,"Links":[{"SourceID":75417,"TargetID":75416,"Directional":true}]},{"ID":16687,"SourceStructureID":75311,"TargetStructureID":66523,"Label":"75311-66523 via Conventional from 75312 -> 75313","Type":"Conventional","Directional":true,"Links":[{"SourceID":75312,"TargetID":75313,"Directional":true}]},{"ID":16688,"SourceStructureID":75317,"TargetStructureID":66523,"Label":"75317-66523 via Conventional from 75318 -> 75319","Type":"Conventional","Directional":true,"Links":[{"SourceID":75318,"TargetID":75319,"Directional":true}]},{"ID":16689,"SourceStructureID":75320,"TargetStructureID":66523,"Label":"75320-66523 via Conventional from 75321 -> 75322","Type":"Conventional","Directional":true,"Links":[{"SourceID":75321,"TargetID":75322,"Directional":true}]},{"ID":16690,"SourceStructureID":75350,"TargetStructureID":66523,"Label":"75350-66523 via Conventional from 75351 -> 75352","Type":"Conventional","Directional":true,"Links":[{"SourceID":75351,"TargetID":75352,"Directional":true}]},{"ID":16691,"SourceStructureID":75359,"TargetStructureID":5107,"Label":"75359-5107 via Conventional from 75363 -> 43678","Type":"Conventional","Directional":true,"Links":[{"SourceID":75363,"TargetID":43678,"Directional":true}]},{"ID":16692,"SourceStructureID":75359,"TargetStructureID":81667,"Label":"75359-81667 via Conventional from 75362 -> 81770","Type":"Conventional","Directional":true,"Links":[{"SourceID":75362,"TargetID":81770,"Directional":true}]},{"ID":16693,"SourceStructureID":75371,"TargetStructureID":5530,"Label":"75371-5530 via Conventional from 75372 -> 75373","Type":"Conventional","Directional":true,"Links":[{"SourceID":75372,"TargetID":75373,"Directional":true}]},{"ID":16694,"SourceStructureID":75374,"TargetStructureID":5530,"Label":"75374-5530 via Conventional from 75375 -> 75376","Type":"Conventional","Directional":true,"Links":[{"SourceID":75375,"TargetID":75376,"Directional":true}]},{"ID":16695,"SourceStructureID":75381,"TargetStructureID":5530,"Label":"75381-5530 via Conventional from 75382 -> 75383","Type":"Conventional","Directional":true,"Links":[{"SourceID":75382,"TargetID":75383,"Directional":true}]},{"ID":16696,"SourceStructureID":75387,"TargetStructureID":5530,"Label":"75387-5530 via Conventional from 75388 -> 75389","Type":"Conventional","Directional":true,"Links":[{"SourceID":75388,"TargetID":75389,"Directional":true}]},{"ID":16697,"SourceStructureID":75390,"TargetStructureID":595,"Label":"75390-595 via Conventional from 135567 -> 135566","Type":"Conventional","Directional":true,"Links":[{"SourceID":135567,"TargetID":135566,"Directional":true}]},{"ID":16698,"SourceStructureID":75390,"TargetStructureID":5530,"Label":"75390-5530 via Conventional from 75391 -> 75392","Type":"Conventional","Directional":true,"Links":[{"SourceID":75391,"TargetID":75392,"Directional":true}]},{"ID":16699,"SourceStructureID":75404,"TargetStructureID":168,"Label":"75404-168 via Conventional from 82009 -> 4230","Type":"Conventional","Directional":true,"Links":[{"SourceID":82009,"TargetID":4230,"Directional":true}]},{"ID":16700,"SourceStructureID":75419,"TargetStructureID":6115,"Label":"75419-6115 via Conventional from 147604 -> 147603","Type":"Conventional","Directional":true,"Links":[{"SourceID":147604,"TargetID":147603,"Directional":true}]},{"ID":16701,"SourceStructureID":75426,"TargetStructureID":6115,"Label":"75426-6115 via Conventional from 75427 -> 55762","Type":"Conventional","Directional":true,"Links":[{"SourceID":75427,"TargetID":55762,"Directional":true}]},{"ID":16702,"SourceStructureID":75429,"TargetStructureID":6115,"Label":"75429-6115 via Conventional from 75432 -> 55764","Type":"Conventional","Directional":true,"Links":[{"SourceID":75432,"TargetID":55764,"Directional":true}]},{"ID":16703,"SourceStructureID":75446,"TargetStructureID":6115,"Label":"75446-6115 via Conventional from 75447 -> 75448","Type":"Conventional","Directional":true,"Links":[{"SourceID":75447,"TargetID":75448,"Directional":true}]},{"ID":16704,"SourceStructureID":75454,"TargetStructureID":6115,"Label":"75454-6115 via Conventional from 75455 -> 75456","Type":"Conventional","Directional":true,"Links":[{"SourceID":75455,"TargetID":75456,"Directional":true}]},{"ID":16705,"SourceStructureID":75457,"TargetStructureID":6115,"Label":"75457-6115 via Conventional from 75458 -> 75459","Type":"Conventional","Directional":true,"Links":[{"SourceID":75458,"TargetID":75459,"Directional":true}]},{"ID":16706,"SourceStructureID":75485,"TargetStructureID":5530,"Label":"75485-5530 via Conventional from 75486 -> 75487","Type":"Conventional","Directional":true,"Links":[{"SourceID":75486,"TargetID":75487,"Directional":true}]},{"ID":16707,"SourceStructureID":75488,"TargetStructureID":5530,"Label":"75488-5530 via Conventional from 75489 -> 75490","Type":"Conventional","Directional":true,"Links":[{"SourceID":75489,"TargetID":75490,"Directional":true}]},{"ID":16708,"SourceStructureID":75488,"TargetStructureID":83051,"Label":"75488-83051 via Conventional from 83325 -> 83326","Type":"Conventional","Directional":true,"Links":[{"SourceID":83325,"TargetID":83326,"Directional":true}]},{"ID":16709,"SourceStructureID":75498,"TargetStructureID":170,"Label":"75498-170 via Conventional from 82530 -> 82531","Type":"Conventional","Directional":true,"Links":[{"SourceID":82530,"TargetID":82531,"Directional":true}]},{"ID":16710,"SourceStructureID":75498,"TargetStructureID":5530,"Label":"75498-5530 via Conventional from 82534 -> 75497","Type":"Conventional","Directional":true,"Links":[{"SourceID":82534,"TargetID":75497,"Directional":true}]},{"ID":16711,"SourceStructureID":75525,"TargetStructureID":5530,"Label":"75525-5530 via Conventional from 115790 -> 115789","Type":"Conventional","Directional":true,"Links":[{"SourceID":115790,"TargetID":115789,"Directional":true}]},{"ID":16712,"SourceStructureID":75530,"TargetStructureID":5530,"Label":"75530-5530 via Conventional from 75531 -> 75532","Type":"Conventional","Directional":true,"Links":[{"SourceID":75531,"TargetID":75532,"Directional":true}]},{"ID":16713,"SourceStructureID":75559,"TargetStructureID":6115,"Label":"75559-6115 via Conventional from 75560 -> 75561","Type":"Conventional","Directional":true,"Links":[{"SourceID":75560,"TargetID":75561,"Directional":true}]},{"ID":16714,"SourceStructureID":75578,"TargetStructureID":5107,"Label":"75578-5107 via Conventional from 75580 -> 75581","Type":"Conventional","Directional":true,"Links":[{"SourceID":75580,"TargetID":75581,"Directional":true}]},{"ID":16715,"SourceStructureID":75578,"TargetStructureID":75583,"Label":"75578-75583 via Conventional from 75582 -> 75584","Type":"Conventional","Directional":true,"Links":[{"SourceID":75582,"TargetID":75584,"Directional":true}]},{"ID":16716,"SourceStructureID":75583,"TargetStructureID":6117,"Label":"75583-6117 via Conventional from 75590 -> 75591","Type":"Conventional","Directional":true,"Links":[{"SourceID":75590,"TargetID":75591,"Directional":true}]},{"ID":16717,"SourceStructureID":75587,"TargetStructureID":75583,"Label":"75587-75583 via Conventional from 75588 -> 75589","Type":"Conventional","Directional":true,"Links":[{"SourceID":75588,"TargetID":75589,"Directional":true}]},{"ID":16718,"SourceStructureID":75625,"TargetStructureID":9787,"Label":"75625-9787 via Ribbon Synapse from 75626 -> 75627, 75628 -> 12240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75626,"TargetID":75627,"Directional":true},{"SourceID":75628,"TargetID":12240,"Directional":true}]},{"ID":16719,"SourceStructureID":75630,"TargetStructureID":9787,"Label":"75630-9787 via Conventional from 75631 -> 75629","Type":"Conventional","Directional":true,"Links":[{"SourceID":75631,"TargetID":75629,"Directional":true}]},{"ID":16720,"SourceStructureID":75633,"TargetStructureID":9787,"Label":"75633-9787 via Conventional from 75634 -> 75632","Type":"Conventional","Directional":true,"Links":[{"SourceID":75634,"TargetID":75632,"Directional":true}]},{"ID":16721,"SourceStructureID":75635,"TargetStructureID":9787,"Label":"75635-9787 via Conventional from 75636 -> 56462","Type":"Conventional","Directional":true,"Links":[{"SourceID":75636,"TargetID":56462,"Directional":true}]},{"ID":16722,"SourceStructureID":75637,"TargetStructureID":9787,"Label":"75637-9787 via Conventional from 75638 -> 12241","Type":"Conventional","Directional":true,"Links":[{"SourceID":75638,"TargetID":12241,"Directional":true}]},{"ID":16723,"SourceStructureID":75641,"TargetStructureID":9787,"Label":"75641-9787 via Conventional from 75642 -> 12249","Type":"Conventional","Directional":true,"Links":[{"SourceID":75642,"TargetID":12249,"Directional":true}]},{"ID":16724,"SourceStructureID":75678,"TargetStructureID":68548,"Label":"75678-68548 via Conventional from 75679 -> 75682","Type":"Conventional","Directional":true,"Links":[{"SourceID":75679,"TargetID":75682,"Directional":true}]},{"ID":16725,"SourceStructureID":75695,"TargetStructureID":68548,"Label":"75695-68548 via Conventional from 75696 -> 75694","Type":"Conventional","Directional":true,"Links":[{"SourceID":75696,"TargetID":75694,"Directional":true}]},{"ID":16726,"SourceStructureID":75721,"TargetStructureID":8580,"Label":"75721-8580 via Conventional from 75722 -> 59654","Type":"Conventional","Directional":true,"Links":[{"SourceID":75722,"TargetID":59654,"Directional":true}]},{"ID":16727,"SourceStructureID":75752,"TargetStructureID":73025,"Label":"75752-73025 via Conventional from 75754 -> 75755","Type":"Conventional","Directional":true,"Links":[{"SourceID":75754,"TargetID":75755,"Directional":true}]},{"ID":16728,"SourceStructureID":75760,"TargetStructureID":5530,"Label":"75760-5530 via Conventional from 75766 -> 75767","Type":"Conventional","Directional":true,"Links":[{"SourceID":75766,"TargetID":75767,"Directional":true}]},{"ID":16729,"SourceStructureID":75782,"TargetStructureID":5530,"Label":"75782-5530 via Conventional from 75783 -> 75784","Type":"Conventional","Directional":true,"Links":[{"SourceID":75783,"TargetID":75784,"Directional":true}]},{"ID":16730,"SourceStructureID":75782,"TargetStructureID":75001,"Label":"75782-75001 via Conventional from 82536 -> 82535","Type":"Conventional","Directional":true,"Links":[{"SourceID":82536,"TargetID":82535,"Directional":true}]},{"ID":16731,"SourceStructureID":75792,"TargetStructureID":5530,"Label":"75792-5530 via Conventional from 75793 -> 75794","Type":"Conventional","Directional":true,"Links":[{"SourceID":75793,"TargetID":75794,"Directional":true}]},{"ID":16732,"SourceStructureID":75807,"TargetStructureID":68539,"Label":"75807-68539 via Conventional from 75808 -> 69159","Type":"Conventional","Directional":true,"Links":[{"SourceID":75808,"TargetID":69159,"Directional":true}]},{"ID":16733,"SourceStructureID":75816,"TargetStructureID":68539,"Label":"75816-68539 via Conventional from 75819 -> 75820, 75821 -> 75822, 75823 -> 75824","Type":"Conventional","Directional":true,"Links":[{"SourceID":75819,"TargetID":75820,"Directional":true},{"SourceID":75821,"TargetID":75822,"Directional":true},{"SourceID":75823,"TargetID":75824,"Directional":true}]},{"ID":16734,"SourceStructureID":75825,"TargetStructureID":68539,"Label":"75825-68539 via Conventional from 75826 -> 75827","Type":"Conventional","Directional":true,"Links":[{"SourceID":75826,"TargetID":75827,"Directional":true}]},{"ID":16735,"SourceStructureID":75830,"TargetStructureID":68539,"Label":"75830-68539 via Conventional from 75831 -> 75832","Type":"Conventional","Directional":true,"Links":[{"SourceID":75831,"TargetID":75832,"Directional":true}]},{"ID":16736,"SourceStructureID":75833,"TargetStructureID":68539,"Label":"75833-68539 via Conventional from 75834 -> 69161, 75835 -> 75836","Type":"Conventional","Directional":true,"Links":[{"SourceID":75834,"TargetID":69161,"Directional":true},{"SourceID":75835,"TargetID":75836,"Directional":true}]},{"ID":16737,"SourceStructureID":75893,"TargetStructureID":5530,"Label":"75893-5530 via Conventional from 75894 -> 75892","Type":"Conventional","Directional":true,"Links":[{"SourceID":75894,"TargetID":75892,"Directional":true}]},{"ID":16738,"SourceStructureID":75902,"TargetStructureID":5530,"Label":"75902-5530 via Conventional from 75903 -> 75904","Type":"Conventional","Directional":true,"Links":[{"SourceID":75903,"TargetID":75904,"Directional":true}]},{"ID":16739,"SourceStructureID":75902,"TargetStructureID":71882,"Label":"75902-71882 via Conventional from 90453 -> 90452","Type":"Conventional","Directional":true,"Links":[{"SourceID":90453,"TargetID":90452,"Directional":true}]},{"ID":16740,"SourceStructureID":75917,"TargetStructureID":5530,"Label":"75917-5530 via Conventional from 75918 -> 75919","Type":"Conventional","Directional":true,"Links":[{"SourceID":75918,"TargetID":75919,"Directional":true}]},{"ID":16741,"SourceStructureID":75928,"TargetStructureID":68539,"Label":"75928-68539 via Conventional from 75929 -> 75927","Type":"Conventional","Directional":true,"Links":[{"SourceID":75929,"TargetID":75927,"Directional":true}]},{"ID":16742,"SourceStructureID":75933,"TargetStructureID":22994,"Label":"75933-22994 via Conventional from 75935 -> 75936","Type":"Conventional","Directional":true,"Links":[{"SourceID":75935,"TargetID":75936,"Directional":true}]},{"ID":16743,"SourceStructureID":76039,"TargetStructureID":68539,"Label":"76039-68539 via Conventional from 76040 -> 76043, 76041 -> 76042","Type":"Conventional","Directional":true,"Links":[{"SourceID":76040,"TargetID":76043,"Directional":true},{"SourceID":76041,"TargetID":76042,"Directional":true}]},{"ID":16744,"SourceStructureID":76056,"TargetStructureID":76039,"Label":"76056-76039 via Conventional from 76057 -> 76055","Type":"Conventional","Directional":true,"Links":[{"SourceID":76057,"TargetID":76055,"Directional":true}]},{"ID":16745,"SourceStructureID":76060,"TargetStructureID":68539,"Label":"76060-68539 via Conventional from 76062 -> 76063, 76064 -> 76065","Type":"Conventional","Directional":true,"Links":[{"SourceID":76062,"TargetID":76063,"Directional":true},{"SourceID":76064,"TargetID":76065,"Directional":true}]},{"ID":16746,"SourceStructureID":76066,"TargetStructureID":76067,"Label":"76066-76067 via Conventional from 76068 -> 76070","Type":"Conventional","Directional":true,"Links":[{"SourceID":76068,"TargetID":76070,"Directional":true}]},{"ID":16747,"SourceStructureID":76071,"TargetStructureID":68539,"Label":"76071-68539 via Conventional from 76072 -> 76073","Type":"Conventional","Directional":true,"Links":[{"SourceID":76072,"TargetID":76073,"Directional":true}]},{"ID":16748,"SourceStructureID":76075,"TargetStructureID":5530,"Label":"76075-5530 via Conventional from 76080 -> 76081, 77400 -> 77401","Type":"Conventional","Directional":true,"Links":[{"SourceID":76080,"TargetID":76081,"Directional":true},{"SourceID":77400,"TargetID":77401,"Directional":true}]},{"ID":16749,"SourceStructureID":76086,"TargetStructureID":68539,"Label":"76086-68539 via Conventional from 76087 -> 76085","Type":"Conventional","Directional":true,"Links":[{"SourceID":76087,"TargetID":76085,"Directional":true}]},{"ID":16750,"SourceStructureID":76088,"TargetStructureID":68539,"Label":"76088-68539 via Conventional from 76089 -> 76084","Type":"Conventional","Directional":true,"Links":[{"SourceID":76089,"TargetID":76084,"Directional":true}]},{"ID":16751,"SourceStructureID":76091,"TargetStructureID":5530,"Label":"76091-5530 via Conventional from 76092 -> 76093, 76107 -> 76108","Type":"Conventional","Directional":true,"Links":[{"SourceID":76092,"TargetID":76093,"Directional":true},{"SourceID":76107,"TargetID":76108,"Directional":true}]},{"ID":16752,"SourceStructureID":76103,"TargetStructureID":68539,"Label":"76103-68539 via Conventional from 76105 -> 76101","Type":"Conventional","Directional":true,"Links":[{"SourceID":76105,"TargetID":76101,"Directional":true}]},{"ID":16753,"SourceStructureID":76120,"TargetStructureID":68539,"Label":"76120-68539 via Conventional from 76121 -> 76122","Type":"Conventional","Directional":true,"Links":[{"SourceID":76121,"TargetID":76122,"Directional":true}]},{"ID":16754,"SourceStructureID":76127,"TargetStructureID":284,"Label":"76127-284 via Ribbon Synapse from 76128 -> 76126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76128,"TargetID":76126,"Directional":true}]},{"ID":16755,"SourceStructureID":76127,"TargetStructureID":5117,"Label":"76127-5117 via Ribbon Synapse from 76128 -> 15004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76128,"TargetID":15004,"Directional":true}]},{"ID":16756,"SourceStructureID":76141,"TargetStructureID":6115,"Label":"76141-6115 via Conventional from 76144 -> 76142","Type":"Conventional","Directional":true,"Links":[{"SourceID":76144,"TargetID":76142,"Directional":true}]},{"ID":16757,"SourceStructureID":76164,"TargetStructureID":6115,"Label":"76164-6115 via Conventional from 76165 -> 76166","Type":"Conventional","Directional":true,"Links":[{"SourceID":76165,"TargetID":76166,"Directional":true}]},{"ID":16758,"SourceStructureID":76173,"TargetStructureID":6115,"Label":"76173-6115 via Conventional from 76174 -> 76175","Type":"Conventional","Directional":true,"Links":[{"SourceID":76174,"TargetID":76175,"Directional":true}]},{"ID":16759,"SourceStructureID":76199,"TargetStructureID":67042,"Label":"76199-67042 via Conventional from 76200 -> 76198","Type":"Conventional","Directional":true,"Links":[{"SourceID":76200,"TargetID":76198,"Directional":true}]},{"ID":16760,"SourceStructureID":76199,"TargetStructureID":76202,"Label":"76199-76202 via Conventional from 76201 -> 76203","Type":"Conventional","Directional":true,"Links":[{"SourceID":76201,"TargetID":76203,"Directional":true}]},{"ID":16761,"SourceStructureID":76211,"TargetStructureID":14615,"Label":"76211-14615 via Conventional from 76212 -> 76210","Type":"Conventional","Directional":true,"Links":[{"SourceID":76212,"TargetID":76210,"Directional":true}]},{"ID":16762,"SourceStructureID":76214,"TargetStructureID":14615,"Label":"76214-14615 via Conventional from 76217 -> 76636, 76218 -> 76222, 76219 -> 76221, 76609 -> 76607, 76612 -> 76613","Type":"Conventional","Directional":true,"Links":[{"SourceID":76217,"TargetID":76636,"Directional":true},{"SourceID":76218,"TargetID":76222,"Directional":true},{"SourceID":76219,"TargetID":76221,"Directional":true},{"SourceID":76609,"TargetID":76607,"Directional":true},{"SourceID":76612,"TargetID":76613,"Directional":true}]},{"ID":16763,"SourceStructureID":76247,"TargetStructureID":5562,"Label":"76247-5562 via Conventional from 76249 -> 37648","Type":"Conventional","Directional":true,"Links":[{"SourceID":76249,"TargetID":37648,"Directional":true}]},{"ID":16764,"SourceStructureID":76269,"TargetStructureID":5562,"Label":"76269-5562 via Conventional from 76270 -> 63063","Type":"Conventional","Directional":true,"Links":[{"SourceID":76270,"TargetID":63063,"Directional":true}]},{"ID":16765,"SourceStructureID":76283,"TargetStructureID":5562,"Label":"76283-5562 via Conventional from 76284 -> 40295","Type":"Conventional","Directional":true,"Links":[{"SourceID":76284,"TargetID":40295,"Directional":true}]},{"ID":16766,"SourceStructureID":76291,"TargetStructureID":5562,"Label":"76291-5562 via Conventional from 76292 -> 40288","Type":"Conventional","Directional":true,"Links":[{"SourceID":76292,"TargetID":40288,"Directional":true}]},{"ID":16767,"SourceStructureID":76298,"TargetStructureID":5562,"Label":"76298-5562 via Conventional from 76299 -> 63073","Type":"Conventional","Directional":true,"Links":[{"SourceID":76299,"TargetID":63073,"Directional":true}]},{"ID":16768,"SourceStructureID":76300,"TargetStructureID":5562,"Label":"76300-5562 via Conventional from 76301 -> 40284","Type":"Conventional","Directional":true,"Links":[{"SourceID":76301,"TargetID":40284,"Directional":true}]},{"ID":16769,"SourceStructureID":76328,"TargetStructureID":5562,"Label":"76328-5562 via Conventional from 76329 -> 76330","Type":"Conventional","Directional":true,"Links":[{"SourceID":76329,"TargetID":76330,"Directional":true}]},{"ID":16770,"SourceStructureID":76337,"TargetStructureID":5562,"Label":"76337-5562 via Conventional from 76344 -> 40279","Type":"Conventional","Directional":true,"Links":[{"SourceID":76344,"TargetID":40279,"Directional":true}]},{"ID":16771,"SourceStructureID":76349,"TargetStructureID":5562,"Label":"76349-5562 via Conventional from 76350 -> 40277","Type":"Conventional","Directional":true,"Links":[{"SourceID":76350,"TargetID":40277,"Directional":true}]},{"ID":16772,"SourceStructureID":76362,"TargetStructureID":5562,"Label":"76362-5562 via Conventional from 76363 -> 76364","Type":"Conventional","Directional":true,"Links":[{"SourceID":76363,"TargetID":76364,"Directional":true}]},{"ID":16773,"SourceStructureID":76365,"TargetStructureID":5562,"Label":"76365-5562 via Conventional from 76374 -> 76375","Type":"Conventional","Directional":true,"Links":[{"SourceID":76374,"TargetID":76375,"Directional":true}]},{"ID":16774,"SourceStructureID":76378,"TargetStructureID":5562,"Label":"76378-5562 via Conventional from 76383 -> 76382","Type":"Conventional","Directional":true,"Links":[{"SourceID":76383,"TargetID":76382,"Directional":true}]},{"ID":16775,"SourceStructureID":76386,"TargetStructureID":5562,"Label":"76386-5562 via Conventional from 76390 -> 40272","Type":"Conventional","Directional":true,"Links":[{"SourceID":76390,"TargetID":40272,"Directional":true}]},{"ID":16776,"SourceStructureID":76391,"TargetStructureID":5562,"Label":"76391-5562 via Conventional from 76392 -> 40274","Type":"Conventional","Directional":true,"Links":[{"SourceID":76392,"TargetID":40274,"Directional":true}]},{"ID":16777,"SourceStructureID":76396,"TargetStructureID":5562,"Label":"76396-5562 via Conventional from 76397 -> 40273","Type":"Conventional","Directional":true,"Links":[{"SourceID":76397,"TargetID":40273,"Directional":true}]},{"ID":16778,"SourceStructureID":76399,"TargetStructureID":5916,"Label":"76399-5916 via Conventional from 109365 -> 109366","Type":"Conventional","Directional":true,"Links":[{"SourceID":109365,"TargetID":109366,"Directional":true}]},{"ID":16779,"SourceStructureID":76399,"TargetStructureID":63199,"Label":"76399-63199 via Conventional from 109367 -> 109368","Type":"Conventional","Directional":true,"Links":[{"SourceID":109367,"TargetID":109368,"Directional":true}]},{"ID":16780,"SourceStructureID":76401,"TargetStructureID":5562,"Label":"76401-5562 via Conventional from 76402 -> 40271","Type":"Conventional","Directional":true,"Links":[{"SourceID":76402,"TargetID":40271,"Directional":true}]},{"ID":16781,"SourceStructureID":76409,"TargetStructureID":5562,"Label":"76409-5562 via Conventional from 76410 -> 40268","Type":"Conventional","Directional":true,"Links":[{"SourceID":76410,"TargetID":40268,"Directional":true}]},{"ID":16782,"SourceStructureID":76421,"TargetStructureID":5562,"Label":"76421-5562 via Conventional from 78323 -> 78322","Type":"Conventional","Directional":true,"Links":[{"SourceID":78323,"TargetID":78322,"Directional":true}]},{"ID":16783,"SourceStructureID":76430,"TargetStructureID":5562,"Label":"76430-5562 via Conventional from 76431 -> 63074","Type":"Conventional","Directional":true,"Links":[{"SourceID":76431,"TargetID":63074,"Directional":true}]},{"ID":16784,"SourceStructureID":76473,"TargetStructureID":5530,"Label":"76473-5530 via Conventional from 76474 -> 76475","Type":"Conventional","Directional":true,"Links":[{"SourceID":76474,"TargetID":76475,"Directional":true}]},{"ID":16785,"SourceStructureID":76476,"TargetStructureID":5530,"Label":"76476-5530 via Conventional from 76477 -> 76478","Type":"Conventional","Directional":true,"Links":[{"SourceID":76477,"TargetID":76478,"Directional":true}]},{"ID":16786,"SourceStructureID":76479,"TargetStructureID":5530,"Label":"76479-5530 via Conventional from 76480 -> 76481","Type":"Conventional","Directional":true,"Links":[{"SourceID":76480,"TargetID":76481,"Directional":true}]},{"ID":16787,"SourceStructureID":76495,"TargetStructureID":5530,"Label":"76495-5530 via Conventional from 76496 -> 76497","Type":"Conventional","Directional":true,"Links":[{"SourceID":76496,"TargetID":76497,"Directional":true}]},{"ID":16788,"SourceStructureID":76498,"TargetStructureID":5562,"Label":"76498-5562 via Conventional from 76499 -> 76500","Type":"Conventional","Directional":true,"Links":[{"SourceID":76499,"TargetID":76500,"Directional":true}]},{"ID":16789,"SourceStructureID":76505,"TargetStructureID":5562,"Label":"76505-5562 via Conventional from 76506 -> 63078","Type":"Conventional","Directional":true,"Links":[{"SourceID":76506,"TargetID":63078,"Directional":true}]},{"ID":16790,"SourceStructureID":76517,"TargetStructureID":33088,"Label":"76517-33088 via Conventional from 76518 -> 33090","Type":"Conventional","Directional":true,"Links":[{"SourceID":76518,"TargetID":33090,"Directional":true}]},{"ID":16791,"SourceStructureID":76520,"TargetStructureID":5562,"Label":"76520-5562 via Conventional from 76521 -> 76522","Type":"Conventional","Directional":true,"Links":[{"SourceID":76521,"TargetID":76522,"Directional":true}]},{"ID":16792,"SourceStructureID":76530,"TargetStructureID":5530,"Label":"76530-5530 via Conventional from 76540 -> 76541","Type":"Conventional","Directional":true,"Links":[{"SourceID":76540,"TargetID":76541,"Directional":true}]},{"ID":16793,"SourceStructureID":76543,"TargetStructureID":5562,"Label":"76543-5562 via Conventional from 76581 -> 76580","Type":"Conventional","Directional":true,"Links":[{"SourceID":76581,"TargetID":76580,"Directional":true}]},{"ID":16794,"SourceStructureID":76553,"TargetStructureID":5562,"Label":"76553-5562 via Conventional from 76555 -> 76554","Type":"Conventional","Directional":true,"Links":[{"SourceID":76555,"TargetID":76554,"Directional":true}]},{"ID":16795,"SourceStructureID":76566,"TargetStructureID":5562,"Label":"76566-5562 via Conventional from 76567 -> 63213","Type":"Conventional","Directional":true,"Links":[{"SourceID":76567,"TargetID":63213,"Directional":true}]},{"ID":16796,"SourceStructureID":76571,"TargetStructureID":5562,"Label":"76571-5562 via Conventional from 76572 -> 63214","Type":"Conventional","Directional":true,"Links":[{"SourceID":76572,"TargetID":63214,"Directional":true}]},{"ID":16797,"SourceStructureID":76577,"TargetStructureID":5562,"Label":"76577-5562 via Conventional from 76579 -> 76578","Type":"Conventional","Directional":true,"Links":[{"SourceID":76579,"TargetID":76578,"Directional":true}]},{"ID":16798,"SourceStructureID":76582,"TargetStructureID":14615,"Label":"76582-14615 via Conventional from 76583 -> 76586","Type":"Conventional","Directional":true,"Links":[{"SourceID":76583,"TargetID":76586,"Directional":true}]},{"ID":16799,"SourceStructureID":76591,"TargetStructureID":5562,"Label":"76591-5562 via Conventional from 76592 -> 49394","Type":"Conventional","Directional":true,"Links":[{"SourceID":76592,"TargetID":49394,"Directional":true}]},{"ID":16800,"SourceStructureID":76616,"TargetStructureID":5562,"Label":"76616-5562 via Conventional from 76618 -> 76617","Type":"Conventional","Directional":true,"Links":[{"SourceID":76618,"TargetID":76617,"Directional":true}]},{"ID":16801,"SourceStructureID":76628,"TargetStructureID":5562,"Label":"76628-5562 via Conventional from 76629 -> 63217","Type":"Conventional","Directional":true,"Links":[{"SourceID":76629,"TargetID":63217,"Directional":true}]},{"ID":16802,"SourceStructureID":76630,"TargetStructureID":5562,"Label":"76630-5562 via Conventional from 76631 -> 63216","Type":"Conventional","Directional":true,"Links":[{"SourceID":76631,"TargetID":63216,"Directional":true}]},{"ID":16803,"SourceStructureID":76638,"TargetStructureID":5562,"Label":"76638-5562 via Conventional from 76644 -> 76645","Type":"Conventional","Directional":true,"Links":[{"SourceID":76644,"TargetID":76645,"Directional":true}]},{"ID":16804,"SourceStructureID":76655,"TargetStructureID":5562,"Label":"76655-5562 via Conventional from 76662 -> 31298","Type":"Conventional","Directional":true,"Links":[{"SourceID":76662,"TargetID":31298,"Directional":true}]},{"ID":16805,"SourceStructureID":76656,"TargetStructureID":5562,"Label":"76656-5562 via Conventional from 76659 -> 76660","Type":"Conventional","Directional":true,"Links":[{"SourceID":76659,"TargetID":76660,"Directional":true}]},{"ID":16806,"SourceStructureID":76663,"TargetStructureID":5562,"Label":"76663-5562 via Conventional from 76667 -> 31297, 76669 -> 76668","Type":"Conventional","Directional":true,"Links":[{"SourceID":76667,"TargetID":31297,"Directional":true},{"SourceID":76669,"TargetID":76668,"Directional":true}]},{"ID":16807,"SourceStructureID":76707,"TargetStructureID":5562,"Label":"76707-5562 via Conventional from 76708 -> 47312","Type":"Conventional","Directional":true,"Links":[{"SourceID":76708,"TargetID":47312,"Directional":true}]},{"ID":16808,"SourceStructureID":76709,"TargetStructureID":5562,"Label":"76709-5562 via Conventional from 76710 -> 63246","Type":"Conventional","Directional":true,"Links":[{"SourceID":76710,"TargetID":63246,"Directional":true}]},{"ID":16809,"SourceStructureID":76721,"TargetStructureID":5562,"Label":"76721-5562 via Conventional from 76722 -> 76723","Type":"Conventional","Directional":true,"Links":[{"SourceID":76722,"TargetID":76723,"Directional":true}]},{"ID":16810,"SourceStructureID":76742,"TargetStructureID":5530,"Label":"76742-5530 via Conventional from 76743 -> 76744","Type":"Conventional","Directional":true,"Links":[{"SourceID":76743,"TargetID":76744,"Directional":true}]},{"ID":16811,"SourceStructureID":76749,"TargetStructureID":5530,"Label":"76749-5530 via Conventional from 76750 -> 76751","Type":"Conventional","Directional":true,"Links":[{"SourceID":76750,"TargetID":76751,"Directional":true}]},{"ID":16812,"SourceStructureID":76752,"TargetStructureID":5530,"Label":"76752-5530 via Conventional from 76753 -> 76754","Type":"Conventional","Directional":true,"Links":[{"SourceID":76753,"TargetID":76754,"Directional":true}]},{"ID":16813,"SourceStructureID":76756,"TargetStructureID":5530,"Label":"76756-5530 via Conventional from 76757 -> 76758","Type":"Conventional","Directional":true,"Links":[{"SourceID":76757,"TargetID":76758,"Directional":true}]},{"ID":16814,"SourceStructureID":76766,"TargetStructureID":5530,"Label":"76766-5530 via Conventional from 76767 -> 76768","Type":"Conventional","Directional":true,"Links":[{"SourceID":76767,"TargetID":76768,"Directional":true}]},{"ID":16815,"SourceStructureID":76775,"TargetStructureID":5530,"Label":"76775-5530 via Conventional from 76776 -> 76777","Type":"Conventional","Directional":true,"Links":[{"SourceID":76776,"TargetID":76777,"Directional":true}]},{"ID":16816,"SourceStructureID":76778,"TargetStructureID":5530,"Label":"76778-5530 via Conventional from 76779 -> 76780","Type":"Conventional","Directional":true,"Links":[{"SourceID":76779,"TargetID":76780,"Directional":true}]},{"ID":16817,"SourceStructureID":76781,"TargetStructureID":5530,"Label":"76781-5530 via Conventional from 76782 -> 76783","Type":"Conventional","Directional":true,"Links":[{"SourceID":76782,"TargetID":76783,"Directional":true}]},{"ID":16818,"SourceStructureID":76785,"TargetStructureID":5530,"Label":"76785-5530 via Conventional from 76787 -> 76788","Type":"Conventional","Directional":true,"Links":[{"SourceID":76787,"TargetID":76788,"Directional":true}]},{"ID":16819,"SourceStructureID":76786,"TargetStructureID":5530,"Label":"76786-5530 via Conventional from 76789 -> 76790","Type":"Conventional","Directional":true,"Links":[{"SourceID":76789,"TargetID":76790,"Directional":true}]},{"ID":16820,"SourceStructureID":76792,"TargetStructureID":14615,"Label":"76792-14615 via Conventional from 76793 -> 76794, 76884 -> 76885","Type":"Conventional","Directional":true,"Links":[{"SourceID":76793,"TargetID":76794,"Directional":true},{"SourceID":76884,"TargetID":76885,"Directional":true}]},{"ID":16821,"SourceStructureID":76800,"TargetStructureID":5530,"Label":"76800-5530 via Conventional from 76822 -> 76823","Type":"Conventional","Directional":true,"Links":[{"SourceID":76822,"TargetID":76823,"Directional":true}]},{"ID":16822,"SourceStructureID":76808,"TargetStructureID":14615,"Label":"76808-14615 via Conventional from 76809 -> 76807","Type":"Conventional","Directional":true,"Links":[{"SourceID":76809,"TargetID":76807,"Directional":true}]},{"ID":16823,"SourceStructureID":76811,"TargetStructureID":14615,"Label":"76811-14615 via Conventional from 76812 -> 76813","Type":"Conventional","Directional":true,"Links":[{"SourceID":76812,"TargetID":76813,"Directional":true}]},{"ID":16824,"SourceStructureID":76827,"TargetStructureID":14615,"Label":"76827-14615 via Conventional from 76843 -> 76844, 76855 -> 76856","Type":"Conventional","Directional":true,"Links":[{"SourceID":76843,"TargetID":76844,"Directional":true},{"SourceID":76855,"TargetID":76856,"Directional":true}]},{"ID":16825,"SourceStructureID":76837,"TargetStructureID":76829,"Label":"76837-76829 via Conventional from 76838 -> 76836","Type":"Conventional","Directional":true,"Links":[{"SourceID":76838,"TargetID":76836,"Directional":true}]},{"ID":16826,"SourceStructureID":76859,"TargetStructureID":14615,"Label":"76859-14615 via Conventional from 76860 -> 76858","Type":"Conventional","Directional":true,"Links":[{"SourceID":76860,"TargetID":76858,"Directional":true}]},{"ID":16827,"SourceStructureID":76862,"TargetStructureID":76859,"Label":"76862-76859 via Conventional from 76863 -> 76861","Type":"Conventional","Directional":true,"Links":[{"SourceID":76863,"TargetID":76861,"Directional":true}]},{"ID":16828,"SourceStructureID":76867,"TargetStructureID":5530,"Label":"76867-5530 via Conventional from 82572 -> 76755","Type":"Conventional","Directional":true,"Links":[{"SourceID":82572,"TargetID":76755,"Directional":true}]},{"ID":16829,"SourceStructureID":76867,"TargetStructureID":76749,"Label":"76867-76749 via Conventional from 82573 -> 82574","Type":"Conventional","Directional":true,"Links":[{"SourceID":82573,"TargetID":82574,"Directional":true}]},{"ID":16830,"SourceStructureID":76871,"TargetStructureID":14615,"Label":"76871-14615 via Conventional from 76872 -> 76870","Type":"Conventional","Directional":true,"Links":[{"SourceID":76872,"TargetID":76870,"Directional":true}]},{"ID":16831,"SourceStructureID":76877,"TargetStructureID":76595,"Label":"76877-76595 via Conventional from 76878 -> 76637","Type":"Conventional","Directional":true,"Links":[{"SourceID":76878,"TargetID":76637,"Directional":true}]},{"ID":16832,"SourceStructureID":76886,"TargetStructureID":67671,"Label":"76886-67671 via Conventional from 76887 -> 76888","Type":"Conventional","Directional":true,"Links":[{"SourceID":76887,"TargetID":76888,"Directional":true}]},{"ID":16833,"SourceStructureID":76912,"TargetStructureID":14615,"Label":"76912-14615 via Conventional from 76913 -> 76914","Type":"Conventional","Directional":true,"Links":[{"SourceID":76913,"TargetID":76914,"Directional":true}]},{"ID":16834,"SourceStructureID":76947,"TargetStructureID":5562,"Label":"76947-5562 via Conventional from 76948 -> 63222","Type":"Conventional","Directional":true,"Links":[{"SourceID":76948,"TargetID":63222,"Directional":true}]},{"ID":16835,"SourceStructureID":76949,"TargetStructureID":5562,"Label":"76949-5562 via Conventional from 76950 -> 63234","Type":"Conventional","Directional":true,"Links":[{"SourceID":76950,"TargetID":63234,"Directional":true}]},{"ID":16836,"SourceStructureID":76951,"TargetStructureID":5562,"Label":"76951-5562 via Conventional from 76952 -> 63232","Type":"Conventional","Directional":true,"Links":[{"SourceID":76952,"TargetID":63232,"Directional":true}]},{"ID":16837,"SourceStructureID":76973,"TargetStructureID":10931,"Label":"76973-10931 via Conventional from 76975 -> 76976, 77008 -> 77009, 77030 -> 77031","Type":"Conventional","Directional":true,"Links":[{"SourceID":76975,"TargetID":76976,"Directional":true},{"SourceID":77008,"TargetID":77009,"Directional":true},{"SourceID":77030,"TargetID":77031,"Directional":true}]},{"ID":16838,"SourceStructureID":76977,"TargetStructureID":71519,"Label":"76977-71519 via Conventional from 76978 -> 76979","Type":"Conventional","Directional":true,"Links":[{"SourceID":76978,"TargetID":76979,"Directional":true}]},{"ID":16839,"SourceStructureID":76980,"TargetStructureID":71519,"Label":"76980-71519 via Conventional from 76981 -> 71712","Type":"Conventional","Directional":true,"Links":[{"SourceID":76981,"TargetID":71712,"Directional":true}]},{"ID":16840,"SourceStructureID":76980,"TargetStructureID":76986,"Label":"76980-76986 via Conventional from 76985 -> 76988","Type":"Conventional","Directional":true,"Links":[{"SourceID":76985,"TargetID":76988,"Directional":true}]},{"ID":16841,"SourceStructureID":76983,"TargetStructureID":76980,"Label":"76983-76980 via Conventional from 76984 -> 76982","Type":"Conventional","Directional":true,"Links":[{"SourceID":76984,"TargetID":76982,"Directional":true}]},{"ID":16842,"SourceStructureID":76986,"TargetStructureID":71519,"Label":"76986-71519 via Conventional from 76987 -> 71713","Type":"Conventional","Directional":true,"Links":[{"SourceID":76987,"TargetID":71713,"Directional":true}]},{"ID":16843,"SourceStructureID":76990,"TargetStructureID":71519,"Label":"76990-71519 via Conventional from 76991 -> 76989","Type":"Conventional","Directional":true,"Links":[{"SourceID":76991,"TargetID":76989,"Directional":true}]},{"ID":16844,"SourceStructureID":76996,"TargetStructureID":71517,"Label":"76996-71517 via Conventional from 76997 -> 76998","Type":"Conventional","Directional":true,"Links":[{"SourceID":76997,"TargetID":76998,"Directional":true}]},{"ID":16845,"SourceStructureID":77012,"TargetStructureID":10931,"Label":"77012-10931 via Conventional from 77013 -> 77014, 77016 -> 77017","Type":"Conventional","Directional":true,"Links":[{"SourceID":77013,"TargetID":77014,"Directional":true},{"SourceID":77016,"TargetID":77017,"Directional":true}]},{"ID":16846,"SourceStructureID":77019,"TargetStructureID":10931,"Label":"77019-10931 via Conventional from 77025 -> 14220","Type":"Conventional","Directional":true,"Links":[{"SourceID":77025,"TargetID":14220,"Directional":true}]},{"ID":16847,"SourceStructureID":77023,"TargetStructureID":71519,"Label":"77023-71519 via Conventional from 77024 -> 71703","Type":"Conventional","Directional":true,"Links":[{"SourceID":77024,"TargetID":71703,"Directional":true}]},{"ID":16848,"SourceStructureID":77027,"TargetStructureID":71519,"Label":"77027-71519 via Conventional from 77028 -> 71680","Type":"Conventional","Directional":true,"Links":[{"SourceID":77028,"TargetID":71680,"Directional":true}]},{"ID":16849,"SourceStructureID":77033,"TargetStructureID":77027,"Label":"77033-77027 via Conventional from 77034 -> 77032","Type":"Conventional","Directional":true,"Links":[{"SourceID":77034,"TargetID":77032,"Directional":true}]},{"ID":16850,"SourceStructureID":77037,"TargetStructureID":71519,"Label":"77037-71519 via Conventional from 77038 -> 77039","Type":"Conventional","Directional":true,"Links":[{"SourceID":77038,"TargetID":77039,"Directional":true}]},{"ID":16851,"SourceStructureID":77040,"TargetStructureID":71519,"Label":"77040-71519 via Conventional from 77041 -> 77042","Type":"Conventional","Directional":true,"Links":[{"SourceID":77041,"TargetID":77042,"Directional":true}]},{"ID":16852,"SourceStructureID":77043,"TargetStructureID":71519,"Label":"77043-71519 via Conventional from 77044 -> 77045","Type":"Conventional","Directional":true,"Links":[{"SourceID":77044,"TargetID":77045,"Directional":true}]},{"ID":16853,"SourceStructureID":77046,"TargetStructureID":71519,"Label":"77046-71519 via Conventional from 77047 -> 77049","Type":"Conventional","Directional":true,"Links":[{"SourceID":77047,"TargetID":77049,"Directional":true}]},{"ID":16854,"SourceStructureID":77051,"TargetStructureID":71519,"Label":"77051-71519 via Conventional from 77052 -> 77050","Type":"Conventional","Directional":true,"Links":[{"SourceID":77052,"TargetID":77050,"Directional":true}]},{"ID":16855,"SourceStructureID":77077,"TargetStructureID":5394,"Label":"77077-5394 via Conventional from 77078 -> 77074","Type":"Conventional","Directional":true,"Links":[{"SourceID":77078,"TargetID":77074,"Directional":true}]},{"ID":16856,"SourceStructureID":77110,"TargetStructureID":5562,"Label":"77110-5562 via Conventional from 77114 -> 77113","Type":"Conventional","Directional":true,"Links":[{"SourceID":77114,"TargetID":77113,"Directional":true}]},{"ID":16857,"SourceStructureID":77116,"TargetStructureID":65351,"Label":"77116-65351 via Conventional from 78980 -> 78979","Type":"Conventional","Directional":true,"Links":[{"SourceID":78980,"TargetID":78979,"Directional":true}]},{"ID":16858,"SourceStructureID":77118,"TargetStructureID":5562,"Label":"77118-5562 via Conventional from 77119 -> 63227","Type":"Conventional","Directional":true,"Links":[{"SourceID":77119,"TargetID":63227,"Directional":true}]},{"ID":16859,"SourceStructureID":77120,"TargetStructureID":5562,"Label":"77120-5562 via Conventional from 77121 -> 63225","Type":"Conventional","Directional":true,"Links":[{"SourceID":77121,"TargetID":63225,"Directional":true}]},{"ID":16860,"SourceStructureID":77122,"TargetStructureID":5562,"Label":"77122-5562 via Conventional from 77123 -> 63226","Type":"Conventional","Directional":true,"Links":[{"SourceID":77123,"TargetID":63226,"Directional":true}]},{"ID":16861,"SourceStructureID":77137,"TargetStructureID":5562,"Label":"77137-5562 via Conventional from 77139 -> 77138","Type":"Conventional","Directional":true,"Links":[{"SourceID":77139,"TargetID":77138,"Directional":true}]},{"ID":16862,"SourceStructureID":77140,"TargetStructureID":5562,"Label":"77140-5562 via Conventional from 77142 -> 77141","Type":"Conventional","Directional":true,"Links":[{"SourceID":77142,"TargetID":77141,"Directional":true}]},{"ID":16863,"SourceStructureID":77143,"TargetStructureID":5562,"Label":"77143-5562 via Conventional from 77144 -> 77145","Type":"Conventional","Directional":true,"Links":[{"SourceID":77144,"TargetID":77145,"Directional":true}]},{"ID":16864,"SourceStructureID":77172,"TargetStructureID":5562,"Label":"77172-5562 via Conventional from 77173 -> 77174","Type":"Conventional","Directional":true,"Links":[{"SourceID":77173,"TargetID":77174,"Directional":true}]},{"ID":16865,"SourceStructureID":77199,"TargetStructureID":5562,"Label":"77199-5562 via Conventional from 77201 -> 77200","Type":"Conventional","Directional":true,"Links":[{"SourceID":77201,"TargetID":77200,"Directional":true}]},{"ID":16866,"SourceStructureID":77215,"TargetStructureID":7024,"Label":"77215-7024 via Conventional from 106603 -> 106602","Type":"Conventional","Directional":true,"Links":[{"SourceID":106603,"TargetID":106602,"Directional":true}]},{"ID":16867,"SourceStructureID":77222,"TargetStructureID":5562,"Label":"77222-5562 via Conventional from 77224 -> 77223","Type":"Conventional","Directional":true,"Links":[{"SourceID":77224,"TargetID":77223,"Directional":true}]},{"ID":16868,"SourceStructureID":77225,"TargetStructureID":5562,"Label":"77225-5562 via Conventional from 77227 -> 77226","Type":"Conventional","Directional":true,"Links":[{"SourceID":77227,"TargetID":77226,"Directional":true}]},{"ID":16869,"SourceStructureID":77228,"TargetStructureID":5562,"Label":"77228-5562 via Conventional from 77229 -> 77230","Type":"Conventional","Directional":true,"Links":[{"SourceID":77229,"TargetID":77230,"Directional":true}]},{"ID":16870,"SourceStructureID":77252,"TargetStructureID":5562,"Label":"77252-5562 via Conventional from 77253 -> 77254","Type":"Conventional","Directional":true,"Links":[{"SourceID":77253,"TargetID":77254,"Directional":true}]},{"ID":16871,"SourceStructureID":77280,"TargetStructureID":5562,"Label":"77280-5562 via Conventional from 77281 -> 33097","Type":"Conventional","Directional":true,"Links":[{"SourceID":77281,"TargetID":33097,"Directional":true}]},{"ID":16872,"SourceStructureID":77292,"TargetStructureID":5562,"Label":"77292-5562 via Conventional from 77293 -> 77294","Type":"Conventional","Directional":true,"Links":[{"SourceID":77293,"TargetID":77294,"Directional":true}]},{"ID":16873,"SourceStructureID":77296,"TargetStructureID":5562,"Label":"77296-5562 via Conventional from 77426 -> 77427","Type":"Conventional","Directional":true,"Links":[{"SourceID":77426,"TargetID":77427,"Directional":true}]},{"ID":16874,"SourceStructureID":77308,"TargetStructureID":5562,"Label":"77308-5562 via Conventional from 77309 -> 49561","Type":"Conventional","Directional":true,"Links":[{"SourceID":77309,"TargetID":49561,"Directional":true}]},{"ID":16875,"SourceStructureID":77332,"TargetStructureID":5530,"Label":"77332-5530 via Conventional from 77333 -> 77334, 82593 -> 82592","Type":"Conventional","Directional":true,"Links":[{"SourceID":77333,"TargetID":77334,"Directional":true},{"SourceID":82593,"TargetID":82592,"Directional":true}]},{"ID":16876,"SourceStructureID":77342,"TargetStructureID":5530,"Label":"77342-5530 via Conventional from 77343 -> 77344","Type":"Conventional","Directional":true,"Links":[{"SourceID":77343,"TargetID":77344,"Directional":true}]},{"ID":16877,"SourceStructureID":77366,"TargetStructureID":67671,"Label":"77366-67671 via Conventional from 77368 -> 77369","Type":"Conventional","Directional":true,"Links":[{"SourceID":77368,"TargetID":77369,"Directional":true}]},{"ID":16878,"SourceStructureID":77367,"TargetStructureID":67671,"Label":"77367-67671 via Conventional from 77373 -> 77374","Type":"Conventional","Directional":true,"Links":[{"SourceID":77373,"TargetID":77374,"Directional":true}]},{"ID":16879,"SourceStructureID":77370,"TargetStructureID":67671,"Label":"77370-67671 via Conventional from 77371 -> 77372","Type":"Conventional","Directional":true,"Links":[{"SourceID":77371,"TargetID":77372,"Directional":true}]},{"ID":16880,"SourceStructureID":77375,"TargetStructureID":67671,"Label":"77375-67671 via Conventional from 77376 -> 77377","Type":"Conventional","Directional":true,"Links":[{"SourceID":77376,"TargetID":77377,"Directional":true}]},{"ID":16881,"SourceStructureID":77378,"TargetStructureID":67671,"Label":"77378-67671 via Conventional from 77380 -> 77382","Type":"Conventional","Directional":true,"Links":[{"SourceID":77380,"TargetID":77382,"Directional":true}]},{"ID":16882,"SourceStructureID":77379,"TargetStructureID":67671,"Label":"77379-67671 via Conventional from 77381 -> 77383","Type":"Conventional","Directional":true,"Links":[{"SourceID":77381,"TargetID":77383,"Directional":true}]},{"ID":16883,"SourceStructureID":77388,"TargetStructureID":5530,"Label":"77388-5530 via Conventional from 77389 -> 77390","Type":"Conventional","Directional":true,"Links":[{"SourceID":77389,"TargetID":77390,"Directional":true}]},{"ID":16884,"SourceStructureID":77393,"TargetStructureID":5530,"Label":"77393-5530 via Conventional from 77394 -> 77395","Type":"Conventional","Directional":true,"Links":[{"SourceID":77394,"TargetID":77395,"Directional":true}]},{"ID":16885,"SourceStructureID":77403,"TargetStructureID":5530,"Label":"77403-5530 via Conventional from 77404 -> 77405","Type":"Conventional","Directional":true,"Links":[{"SourceID":77404,"TargetID":77405,"Directional":true}]},{"ID":16886,"SourceStructureID":77403,"TargetStructureID":82677,"Label":"77403-82677 via Conventional from 83655 -> 83654","Type":"Conventional","Directional":true,"Links":[{"SourceID":83655,"TargetID":83654,"Directional":true}]},{"ID":16887,"SourceStructureID":77407,"TargetStructureID":5530,"Label":"77407-5530 via Conventional from 77408 -> 77409","Type":"Conventional","Directional":true,"Links":[{"SourceID":77408,"TargetID":77409,"Directional":true}]},{"ID":16888,"SourceStructureID":77412,"TargetStructureID":5530,"Label":"77412-5530 via Conventional from 77414 -> 77415","Type":"Conventional","Directional":true,"Links":[{"SourceID":77414,"TargetID":77415,"Directional":true}]},{"ID":16889,"SourceStructureID":77433,"TargetStructureID":5562,"Label":"77433-5562 via Conventional from 77435 -> 77434","Type":"Conventional","Directional":true,"Links":[{"SourceID":77435,"TargetID":77434,"Directional":true}]},{"ID":16890,"SourceStructureID":77436,"TargetStructureID":5562,"Label":"77436-5562 via Conventional from 77439 -> 49564","Type":"Conventional","Directional":true,"Links":[{"SourceID":77439,"TargetID":49564,"Directional":true}]},{"ID":16891,"SourceStructureID":77463,"TargetStructureID":5562,"Label":"77463-5562 via Conventional from 77464 -> 77465","Type":"Conventional","Directional":true,"Links":[{"SourceID":77464,"TargetID":77465,"Directional":true}]},{"ID":16892,"SourceStructureID":77476,"TargetStructureID":5562,"Label":"77476-5562 via Conventional from 77477 -> 77478","Type":"Conventional","Directional":true,"Links":[{"SourceID":77477,"TargetID":77478,"Directional":true}]},{"ID":16893,"SourceStructureID":77484,"TargetStructureID":5562,"Label":"77484-5562 via Conventional from 77485 -> 77486","Type":"Conventional","Directional":true,"Links":[{"SourceID":77485,"TargetID":77486,"Directional":true}]},{"ID":16894,"SourceStructureID":77504,"TargetStructureID":5562,"Label":"77504-5562 via Conventional from 77505 -> 77506","Type":"Conventional","Directional":true,"Links":[{"SourceID":77505,"TargetID":77506,"Directional":true}]},{"ID":16895,"SourceStructureID":77513,"TargetStructureID":5562,"Label":"77513-5562 via Conventional from 77514 -> 77515","Type":"Conventional","Directional":true,"Links":[{"SourceID":77514,"TargetID":77515,"Directional":true}]},{"ID":16896,"SourceStructureID":77529,"TargetStructureID":5562,"Label":"77529-5562 via Conventional from 77530 -> 77531","Type":"Conventional","Directional":true,"Links":[{"SourceID":77530,"TargetID":77531,"Directional":true}]},{"ID":16897,"SourceStructureID":77539,"TargetStructureID":5562,"Label":"77539-5562 via Conventional from 77540 -> 77541","Type":"Conventional","Directional":true,"Links":[{"SourceID":77540,"TargetID":77541,"Directional":true}]},{"ID":16898,"SourceStructureID":77555,"TargetStructureID":5562,"Label":"77555-5562 via Conventional from 77556 -> 77557","Type":"Conventional","Directional":true,"Links":[{"SourceID":77556,"TargetID":77557,"Directional":true}]},{"ID":16899,"SourceStructureID":77563,"TargetStructureID":5562,"Label":"77563-5562 via Conventional from 77564 -> 77565","Type":"Conventional","Directional":true,"Links":[{"SourceID":77564,"TargetID":77565,"Directional":true}]},{"ID":16900,"SourceStructureID":77575,"TargetStructureID":5562,"Label":"77575-5562 via Conventional from 77577 -> 77576","Type":"Conventional","Directional":true,"Links":[{"SourceID":77577,"TargetID":77576,"Directional":true}]},{"ID":16901,"SourceStructureID":77596,"TargetStructureID":5562,"Label":"77596-5562 via Conventional from 77610 -> 77611","Type":"Conventional","Directional":true,"Links":[{"SourceID":77610,"TargetID":77611,"Directional":true}]},{"ID":16902,"SourceStructureID":77598,"TargetStructureID":5562,"Label":"77598-5562 via Unknown from 77599 -> 77597","Type":"Unknown","Directional":true,"Links":[{"SourceID":77599,"TargetID":77597,"Directional":true}]},{"ID":16903,"SourceStructureID":77603,"TargetStructureID":5284,"Label":"77603-5284 via Conventional from 84535 -> 64598","Type":"Conventional","Directional":true,"Links":[{"SourceID":84535,"TargetID":64598,"Directional":true}]},{"ID":16904,"SourceStructureID":77613,"TargetStructureID":5562,"Label":"77613-5562 via Conventional from 77614 -> 77615","Type":"Conventional","Directional":true,"Links":[{"SourceID":77614,"TargetID":77615,"Directional":true}]},{"ID":16905,"SourceStructureID":77619,"TargetStructureID":5530,"Label":"77619-5530 via Conventional from 77620 -> 77621","Type":"Conventional","Directional":true,"Links":[{"SourceID":77620,"TargetID":77621,"Directional":true}]},{"ID":16906,"SourceStructureID":77623,"TargetStructureID":5530,"Label":"77623-5530 via Conventional from 77624 -> 45400","Type":"Conventional","Directional":true,"Links":[{"SourceID":77624,"TargetID":45400,"Directional":true}]},{"ID":16907,"SourceStructureID":77625,"TargetStructureID":5530,"Label":"77625-5530 via Conventional from 77626 -> 77627","Type":"Conventional","Directional":true,"Links":[{"SourceID":77626,"TargetID":77627,"Directional":true}]},{"ID":16908,"SourceStructureID":77637,"TargetStructureID":5530,"Label":"77637-5530 via Conventional from 77638 -> 77639","Type":"Conventional","Directional":true,"Links":[{"SourceID":77638,"TargetID":77639,"Directional":true}]},{"ID":16909,"SourceStructureID":77642,"TargetStructureID":5530,"Label":"77642-5530 via Conventional from 77646 -> 77647","Type":"Conventional","Directional":true,"Links":[{"SourceID":77646,"TargetID":77647,"Directional":true}]},{"ID":16910,"SourceStructureID":77656,"TargetStructureID":77654,"Label":"77656-77654 via Conventional from 77657 -> 77655","Type":"Conventional","Directional":true,"Links":[{"SourceID":77657,"TargetID":77655,"Directional":true}]},{"ID":16911,"SourceStructureID":77658,"TargetStructureID":11030,"Label":"77658-11030 via Conventional from 77659 -> 77660","Type":"Conventional","Directional":true,"Links":[{"SourceID":77659,"TargetID":77660,"Directional":true}]},{"ID":16912,"SourceStructureID":77664,"TargetStructureID":5645,"Label":"77664-5645 via Conventional from 77665 -> 77663","Type":"Conventional","Directional":true,"Links":[{"SourceID":77665,"TargetID":77663,"Directional":true}]},{"ID":16913,"SourceStructureID":77669,"TargetStructureID":5645,"Label":"77669-5645 via Conventional from 77670 -> 77668","Type":"Conventional","Directional":true,"Links":[{"SourceID":77670,"TargetID":77668,"Directional":true}]},{"ID":16914,"SourceStructureID":77674,"TargetStructureID":6115,"Label":"77674-6115 via Conventional from 77675 -> 77673","Type":"Conventional","Directional":true,"Links":[{"SourceID":77675,"TargetID":77673,"Directional":true}]},{"ID":16915,"SourceStructureID":77677,"TargetStructureID":6115,"Label":"77677-6115 via Conventional from 93080 -> 77681","Type":"Conventional","Directional":true,"Links":[{"SourceID":93080,"TargetID":77681,"Directional":true}]},{"ID":16916,"SourceStructureID":77677,"TargetStructureID":16087,"Label":"77677-16087 via Conventional from 77680 -> 16093","Type":"Conventional","Directional":true,"Links":[{"SourceID":77680,"TargetID":16093,"Directional":true}]},{"ID":16917,"SourceStructureID":77682,"TargetStructureID":67671,"Label":"77682-67671 via Conventional from 77683 -> 77684","Type":"Conventional","Directional":true,"Links":[{"SourceID":77683,"TargetID":77684,"Directional":true}]},{"ID":16918,"SourceStructureID":77691,"TargetStructureID":67671,"Label":"77691-67671 via Conventional from 77692 -> 77693","Type":"Conventional","Directional":true,"Links":[{"SourceID":77692,"TargetID":77693,"Directional":true}]},{"ID":16919,"SourceStructureID":77695,"TargetStructureID":6115,"Label":"77695-6115 via Conventional from 77696 -> 77694","Type":"Conventional","Directional":true,"Links":[{"SourceID":77696,"TargetID":77694,"Directional":true}]},{"ID":16920,"SourceStructureID":77698,"TargetStructureID":67671,"Label":"77698-67671 via Conventional from 77699 -> 77700","Type":"Conventional","Directional":true,"Links":[{"SourceID":77699,"TargetID":77700,"Directional":true}]},{"ID":16921,"SourceStructureID":77706,"TargetStructureID":5649,"Label":"77706-5649 via Conventional from 78015 -> 53949","Type":"Conventional","Directional":true,"Links":[{"SourceID":78015,"TargetID":53949,"Directional":true}]},{"ID":16922,"SourceStructureID":77706,"TargetStructureID":67671,"Label":"77706-67671 via Conventional from 77707 -> 77705","Type":"Conventional","Directional":true,"Links":[{"SourceID":77707,"TargetID":77705,"Directional":true}]},{"ID":16923,"SourceStructureID":77708,"TargetStructureID":67671,"Label":"77708-67671 via Conventional from 77709 -> 77710","Type":"Conventional","Directional":true,"Links":[{"SourceID":77709,"TargetID":77710,"Directional":true}]},{"ID":16924,"SourceStructureID":77712,"TargetStructureID":77708,"Label":"77712-77708 via Conventional from 77713 -> 77711","Type":"Conventional","Directional":true,"Links":[{"SourceID":77713,"TargetID":77711,"Directional":true}]},{"ID":16925,"SourceStructureID":77714,"TargetStructureID":67671,"Label":"77714-67671 via Conventional from 77715 -> 77716","Type":"Conventional","Directional":true,"Links":[{"SourceID":77715,"TargetID":77716,"Directional":true}]},{"ID":16926,"SourceStructureID":77718,"TargetStructureID":6115,"Label":"77718-6115 via Conventional from 77719 -> 77717","Type":"Conventional","Directional":true,"Links":[{"SourceID":77719,"TargetID":77717,"Directional":true}]},{"ID":16927,"SourceStructureID":77726,"TargetStructureID":5562,"Label":"77726-5562 via Conventional from 77728 -> 77729","Type":"Conventional","Directional":true,"Links":[{"SourceID":77728,"TargetID":77729,"Directional":true}]},{"ID":16928,"SourceStructureID":77736,"TargetStructureID":5562,"Label":"77736-5562 via Conventional from 77737 -> 77738","Type":"Conventional","Directional":true,"Links":[{"SourceID":77737,"TargetID":77738,"Directional":true}]},{"ID":16929,"SourceStructureID":77741,"TargetStructureID":5562,"Label":"77741-5562 via Conventional from 77742 -> 77743","Type":"Conventional","Directional":true,"Links":[{"SourceID":77742,"TargetID":77743,"Directional":true}]},{"ID":16930,"SourceStructureID":77750,"TargetStructureID":5562,"Label":"77750-5562 via Conventional from 77751 -> 63625","Type":"Conventional","Directional":true,"Links":[{"SourceID":77751,"TargetID":63625,"Directional":true}]},{"ID":16931,"SourceStructureID":77754,"TargetStructureID":5562,"Label":"77754-5562 via Conventional from 77755 -> 63627","Type":"Conventional","Directional":true,"Links":[{"SourceID":77755,"TargetID":63627,"Directional":true}]},{"ID":16932,"SourceStructureID":77770,"TargetStructureID":5562,"Label":"77770-5562 via Conventional from 77771 -> 77772","Type":"Conventional","Directional":true,"Links":[{"SourceID":77771,"TargetID":77772,"Directional":true}]},{"ID":16933,"SourceStructureID":77773,"TargetStructureID":5562,"Label":"77773-5562 via Conventional from 77774 -> 31054","Type":"Conventional","Directional":true,"Links":[{"SourceID":77774,"TargetID":31054,"Directional":true}]},{"ID":16934,"SourceStructureID":77775,"TargetStructureID":5562,"Label":"77775-5562 via Conventional from 77776 -> 63257","Type":"Conventional","Directional":true,"Links":[{"SourceID":77776,"TargetID":63257,"Directional":true}]},{"ID":16935,"SourceStructureID":77782,"TargetStructureID":5562,"Label":"77782-5562 via Conventional from 77783 -> 63258","Type":"Conventional","Directional":true,"Links":[{"SourceID":77783,"TargetID":63258,"Directional":true}]},{"ID":16936,"SourceStructureID":77784,"TargetStructureID":5562,"Label":"77784-5562 via Conventional from 77785 -> 63259","Type":"Conventional","Directional":true,"Links":[{"SourceID":77785,"TargetID":63259,"Directional":true}]},{"ID":16937,"SourceStructureID":77796,"TargetStructureID":5562,"Label":"77796-5562 via Conventional from 77797 -> 63265","Type":"Conventional","Directional":true,"Links":[{"SourceID":77797,"TargetID":63265,"Directional":true}]},{"ID":16938,"SourceStructureID":77800,"TargetStructureID":5562,"Label":"77800-5562 via Conventional from 77801 -> 63263","Type":"Conventional","Directional":true,"Links":[{"SourceID":77801,"TargetID":63263,"Directional":true}]},{"ID":16939,"SourceStructureID":77826,"TargetStructureID":5562,"Label":"77826-5562 via Conventional from 77827 -> 63266","Type":"Conventional","Directional":true,"Links":[{"SourceID":77827,"TargetID":63266,"Directional":true}]},{"ID":16940,"SourceStructureID":77831,"TargetStructureID":5562,"Label":"77831-5562 via Conventional from 77832 -> 63269","Type":"Conventional","Directional":true,"Links":[{"SourceID":77832,"TargetID":63269,"Directional":true}]},{"ID":16941,"SourceStructureID":77840,"TargetStructureID":82426,"Label":"77840-82426 via Conventional from 82428 -> 82429","Type":"Conventional","Directional":true,"Links":[{"SourceID":82428,"TargetID":82429,"Directional":true}]},{"ID":16942,"SourceStructureID":77842,"TargetStructureID":5562,"Label":"77842-5562 via Conventional from 77843 -> 63268","Type":"Conventional","Directional":true,"Links":[{"SourceID":77843,"TargetID":63268,"Directional":true}]},{"ID":16943,"SourceStructureID":77851,"TargetStructureID":5562,"Label":"77851-5562 via Conventional from 77852 -> 77853","Type":"Conventional","Directional":true,"Links":[{"SourceID":77852,"TargetID":77853,"Directional":true}]},{"ID":16944,"SourceStructureID":77868,"TargetStructureID":5562,"Label":"77868-5562 via Conventional from 77869 -> 63282","Type":"Conventional","Directional":true,"Links":[{"SourceID":77869,"TargetID":63282,"Directional":true}]},{"ID":16945,"SourceStructureID":77870,"TargetStructureID":5562,"Label":"77870-5562 via Conventional from 77871 -> 63278","Type":"Conventional","Directional":true,"Links":[{"SourceID":77871,"TargetID":63278,"Directional":true}]},{"ID":16946,"SourceStructureID":77883,"TargetStructureID":5562,"Label":"77883-5562 via Conventional from 78411 -> 78412","Type":"Conventional","Directional":true,"Links":[{"SourceID":78411,"TargetID":78412,"Directional":true}]},{"ID":16947,"SourceStructureID":77898,"TargetStructureID":5562,"Label":"77898-5562 via Conventional from 77899 -> 63281","Type":"Conventional","Directional":true,"Links":[{"SourceID":77899,"TargetID":63281,"Directional":true}]},{"ID":16948,"SourceStructureID":77906,"TargetStructureID":66523,"Label":"77906-66523 via Conventional from 77907 -> 77908","Type":"Conventional","Directional":true,"Links":[{"SourceID":77907,"TargetID":77908,"Directional":true}]},{"ID":16949,"SourceStructureID":77932,"TargetStructureID":5530,"Label":"77932-5530 via Conventional from 77933 -> 77934","Type":"Conventional","Directional":true,"Links":[{"SourceID":77933,"TargetID":77934,"Directional":true}]},{"ID":16950,"SourceStructureID":77938,"TargetStructureID":5530,"Label":"77938-5530 via Conventional from 77939 -> 77940","Type":"Conventional","Directional":true,"Links":[{"SourceID":77939,"TargetID":77940,"Directional":true}]},{"ID":16951,"SourceStructureID":77959,"TargetStructureID":608,"Label":"77959-608 via Conventional from 77960 -> 77958","Type":"Conventional","Directional":true,"Links":[{"SourceID":77960,"TargetID":77958,"Directional":true}]},{"ID":16952,"SourceStructureID":77961,"TargetStructureID":77959,"Label":"77961-77959 via Conventional from 77962 -> 77963","Type":"Conventional","Directional":true,"Links":[{"SourceID":77962,"TargetID":77963,"Directional":true}]},{"ID":16953,"SourceStructureID":77970,"TargetStructureID":66523,"Label":"77970-66523 via Conventional from 77971 -> 77972","Type":"Conventional","Directional":true,"Links":[{"SourceID":77971,"TargetID":77972,"Directional":true}]},{"ID":16954,"SourceStructureID":77973,"TargetStructureID":66523,"Label":"77973-66523 via Conventional from 77974 -> 77975, 77978 -> 77979","Type":"Conventional","Directional":true,"Links":[{"SourceID":77974,"TargetID":77975,"Directional":true},{"SourceID":77978,"TargetID":77979,"Directional":true}]},{"ID":16955,"SourceStructureID":77981,"TargetStructureID":67671,"Label":"77981-67671 via Conventional from 77982 -> 77983","Type":"Conventional","Directional":true,"Links":[{"SourceID":77982,"TargetID":77983,"Directional":true}]},{"ID":16956,"SourceStructureID":77988,"TargetStructureID":67671,"Label":"77988-67671 via Conventional from 77989 -> 77990","Type":"Conventional","Directional":true,"Links":[{"SourceID":77989,"TargetID":77990,"Directional":true}]},{"ID":16957,"SourceStructureID":77992,"TargetStructureID":67671,"Label":"77992-67671 via Conventional from 77993 -> 77994","Type":"Conventional","Directional":true,"Links":[{"SourceID":77993,"TargetID":77994,"Directional":true}]},{"ID":16958,"SourceStructureID":78010,"TargetStructureID":77691,"Label":"78010-77691 via Conventional from 78011 -> 78009","Type":"Conventional","Directional":true,"Links":[{"SourceID":78011,"TargetID":78009,"Directional":true}]},{"ID":16959,"SourceStructureID":78021,"TargetStructureID":78290,"Label":"78021-78290 via Conventional from 78291 -> 78292","Type":"Conventional","Directional":true,"Links":[{"SourceID":78291,"TargetID":78292,"Directional":true}]},{"ID":16960,"SourceStructureID":78028,"TargetStructureID":67671,"Label":"78028-67671 via Conventional from 78029 -> 78030","Type":"Conventional","Directional":true,"Links":[{"SourceID":78029,"TargetID":78030,"Directional":true}]},{"ID":16961,"SourceStructureID":78032,"TargetStructureID":67671,"Label":"78032-67671 via Adherens from 78035 -> 78034","Type":"Adherens","Directional":true,"Links":[{"SourceID":78035,"TargetID":78034,"Directional":true}]},{"ID":16962,"SourceStructureID":78032,"TargetStructureID":67671,"Label":"78032-67671 via Conventional from 78033 -> 78031","Type":"Conventional","Directional":true,"Links":[{"SourceID":78033,"TargetID":78031,"Directional":true}]},{"ID":16963,"SourceStructureID":78038,"TargetStructureID":67671,"Label":"78038-67671 via Conventional from 78039 -> 78040","Type":"Conventional","Directional":true,"Links":[{"SourceID":78039,"TargetID":78040,"Directional":true}]},{"ID":16964,"SourceStructureID":78045,"TargetStructureID":5645,"Label":"78045-5645 via Conventional from 78054 -> 78053","Type":"Conventional","Directional":true,"Links":[{"SourceID":78054,"TargetID":78053,"Directional":true}]},{"ID":16965,"SourceStructureID":78045,"TargetStructureID":67671,"Label":"78045-67671 via Conventional from 78046 -> 78047","Type":"Conventional","Directional":true,"Links":[{"SourceID":78046,"TargetID":78047,"Directional":true}]},{"ID":16966,"SourceStructureID":78057,"TargetStructureID":5645,"Label":"78057-5645 via Conventional from 78064 -> 78065","Type":"Conventional","Directional":true,"Links":[{"SourceID":78064,"TargetID":78065,"Directional":true}]},{"ID":16967,"SourceStructureID":78057,"TargetStructureID":67671,"Label":"78057-67671 via Conventional from 78058 -> 78059","Type":"Conventional","Directional":true,"Links":[{"SourceID":78058,"TargetID":78059,"Directional":true}]},{"ID":16968,"SourceStructureID":78067,"TargetStructureID":67671,"Label":"78067-67671 via Conventional from 78068 -> 78066","Type":"Conventional","Directional":true,"Links":[{"SourceID":78068,"TargetID":78066,"Directional":true}]},{"ID":16969,"SourceStructureID":78074,"TargetStructureID":67671,"Label":"78074-67671 via Conventional from 78075 -> 78077","Type":"Conventional","Directional":true,"Links":[{"SourceID":78075,"TargetID":78077,"Directional":true}]},{"ID":16970,"SourceStructureID":78080,"TargetStructureID":67671,"Label":"78080-67671 via Conventional from 78277 -> 78278","Type":"Conventional","Directional":true,"Links":[{"SourceID":78277,"TargetID":78278,"Directional":true}]},{"ID":16971,"SourceStructureID":78086,"TargetStructureID":5562,"Label":"78086-5562 via Conventional from 78087 -> 63255","Type":"Conventional","Directional":true,"Links":[{"SourceID":78087,"TargetID":63255,"Directional":true}]},{"ID":16972,"SourceStructureID":78094,"TargetStructureID":5562,"Label":"78094-5562 via Conventional from 78095 -> 78096","Type":"Conventional","Directional":true,"Links":[{"SourceID":78095,"TargetID":78096,"Directional":true}]},{"ID":16973,"SourceStructureID":78107,"TargetStructureID":5562,"Label":"78107-5562 via Conventional from 78108 -> 31058","Type":"Conventional","Directional":true,"Links":[{"SourceID":78108,"TargetID":31058,"Directional":true}]},{"ID":16974,"SourceStructureID":78109,"TargetStructureID":5562,"Label":"78109-5562 via Conventional from 78114 -> 31061","Type":"Conventional","Directional":true,"Links":[{"SourceID":78114,"TargetID":31061,"Directional":true}]},{"ID":16975,"SourceStructureID":78115,"TargetStructureID":5562,"Label":"78115-5562 via Conventional from 78116 -> 63332","Type":"Conventional","Directional":true,"Links":[{"SourceID":78116,"TargetID":63332,"Directional":true}]},{"ID":16976,"SourceStructureID":78118,"TargetStructureID":5562,"Label":"78118-5562 via Conventional from 78119 -> 31059","Type":"Conventional","Directional":true,"Links":[{"SourceID":78119,"TargetID":31059,"Directional":true}]},{"ID":16977,"SourceStructureID":78122,"TargetStructureID":5562,"Label":"78122-5562 via Conventional from 78123 -> 63331","Type":"Conventional","Directional":true,"Links":[{"SourceID":78123,"TargetID":63331,"Directional":true}]},{"ID":16978,"SourceStructureID":78126,"TargetStructureID":69537,"Label":"78126-69537 via Conventional from 82452 -> 69620, 82453 -> 69621","Type":"Conventional","Directional":true,"Links":[{"SourceID":82452,"TargetID":69620,"Directional":true},{"SourceID":82453,"TargetID":69621,"Directional":true}]},{"ID":16979,"SourceStructureID":78129,"TargetStructureID":5562,"Label":"78129-5562 via Conventional from 78132 -> 63344","Type":"Conventional","Directional":true,"Links":[{"SourceID":78132,"TargetID":63344,"Directional":true}]},{"ID":16980,"SourceStructureID":78141,"TargetStructureID":5562,"Label":"78141-5562 via Conventional from 78142 -> 63342","Type":"Conventional","Directional":true,"Links":[{"SourceID":78142,"TargetID":63342,"Directional":true}]},{"ID":16981,"SourceStructureID":78163,"TargetStructureID":5562,"Label":"78163-5562 via Conventional from 78164 -> 48471","Type":"Conventional","Directional":true,"Links":[{"SourceID":78164,"TargetID":48471,"Directional":true}]},{"ID":16982,"SourceStructureID":78177,"TargetStructureID":5562,"Label":"78177-5562 via Conventional from 78178 -> 63617","Type":"Conventional","Directional":true,"Links":[{"SourceID":78178,"TargetID":63617,"Directional":true}]},{"ID":16983,"SourceStructureID":78179,"TargetStructureID":5562,"Label":"78179-5562 via Conventional from 78180 -> 48464","Type":"Conventional","Directional":true,"Links":[{"SourceID":78180,"TargetID":48464,"Directional":true}]},{"ID":16984,"SourceStructureID":78191,"TargetStructureID":5562,"Label":"78191-5562 via Conventional from 78192 -> 63351","Type":"Conventional","Directional":true,"Links":[{"SourceID":78192,"TargetID":63351,"Directional":true}]},{"ID":16985,"SourceStructureID":78198,"TargetStructureID":5562,"Label":"78198-5562 via Conventional from 78199 -> 63348","Type":"Conventional","Directional":true,"Links":[{"SourceID":78199,"TargetID":63348,"Directional":true}]},{"ID":16986,"SourceStructureID":78200,"TargetStructureID":5562,"Label":"78200-5562 via Conventional from 78201 -> 63349","Type":"Conventional","Directional":true,"Links":[{"SourceID":78201,"TargetID":63349,"Directional":true}]},{"ID":16987,"SourceStructureID":78214,"TargetStructureID":78217,"Label":"78214-78217 via Conventional from 78218 -> 78219","Type":"Conventional","Directional":true,"Links":[{"SourceID":78218,"TargetID":78219,"Directional":true}]},{"ID":16988,"SourceStructureID":78224,"TargetStructureID":67671,"Label":"78224-67671 via Conventional from 78225 -> 78226","Type":"Conventional","Directional":true,"Links":[{"SourceID":78225,"TargetID":78226,"Directional":true}]},{"ID":16989,"SourceStructureID":78228,"TargetStructureID":67671,"Label":"78228-67671 via Conventional from 78229 -> 78230","Type":"Conventional","Directional":true,"Links":[{"SourceID":78229,"TargetID":78230,"Directional":true}]},{"ID":16990,"SourceStructureID":78232,"TargetStructureID":67671,"Label":"78232-67671 via Conventional from 78233 -> 78235","Type":"Conventional","Directional":true,"Links":[{"SourceID":78233,"TargetID":78235,"Directional":true}]},{"ID":16991,"SourceStructureID":78242,"TargetStructureID":5562,"Label":"78242-5562 via Conventional from 78243 -> 63347","Type":"Conventional","Directional":true,"Links":[{"SourceID":78243,"TargetID":63347,"Directional":true}]},{"ID":16992,"SourceStructureID":78244,"TargetStructureID":67671,"Label":"78244-67671 via Conventional from 78245 -> 78246","Type":"Conventional","Directional":true,"Links":[{"SourceID":78245,"TargetID":78246,"Directional":true}]},{"ID":16993,"SourceStructureID":78249,"TargetStructureID":67671,"Label":"78249-67671 via Ribbon Synapse from 78250 -> 78256, 78251 -> 78257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78250,"TargetID":78256,"Directional":true},{"SourceID":78251,"TargetID":78257,"Directional":true}]},{"ID":16994,"SourceStructureID":78249,"TargetStructureID":78252,"Label":"78249-78252 via Ribbon Synapse from 78250 -> 78258","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78250,"TargetID":78258,"Directional":true}]},{"ID":16995,"SourceStructureID":78252,"TargetStructureID":78249,"Label":"78252-78249 via Conventional from 78254 -> 78255","Type":"Conventional","Directional":true,"Links":[{"SourceID":78254,"TargetID":78255,"Directional":true}]},{"ID":16996,"SourceStructureID":78272,"TargetStructureID":5562,"Label":"78272-5562 via Conventional from 78273 -> 63527","Type":"Conventional","Directional":true,"Links":[{"SourceID":78273,"TargetID":63527,"Directional":true}]},{"ID":16997,"SourceStructureID":78295,"TargetStructureID":68009,"Label":"78295-68009 via Conventional from 78296 -> 78297","Type":"Conventional","Directional":true,"Links":[{"SourceID":78296,"TargetID":78297,"Directional":true}]},{"ID":16998,"SourceStructureID":78298,"TargetStructureID":68009,"Label":"78298-68009 via Conventional from 78299 -> 78300","Type":"Conventional","Directional":true,"Links":[{"SourceID":78299,"TargetID":78300,"Directional":true}]},{"ID":16999,"SourceStructureID":78303,"TargetStructureID":25392,"Label":"78303-25392 via Conventional from 78305 -> 32294","Type":"Conventional","Directional":true,"Links":[{"SourceID":78305,"TargetID":32294,"Directional":true}]},{"ID":17000,"SourceStructureID":78316,"TargetStructureID":68009,"Label":"78316-68009 via Conventional from 78317 -> 78318","Type":"Conventional","Directional":true,"Links":[{"SourceID":78317,"TargetID":78318,"Directional":true}]},{"ID":17001,"SourceStructureID":78327,"TargetStructureID":78330,"Label":"78327-78330 via Conventional from 78329 -> 78331","Type":"Conventional","Directional":true,"Links":[{"SourceID":78329,"TargetID":78331,"Directional":true}]},{"ID":17002,"SourceStructureID":78330,"TargetStructureID":55403,"Label":"78330-55403 via Conventional from 78332 -> 55504","Type":"Conventional","Directional":true,"Links":[{"SourceID":78332,"TargetID":55504,"Directional":true}]},{"ID":17003,"SourceStructureID":78334,"TargetStructureID":5562,"Label":"78334-5562 via Conventional from 78335 -> 63357","Type":"Conventional","Directional":true,"Links":[{"SourceID":78335,"TargetID":63357,"Directional":true}]},{"ID":17004,"SourceStructureID":78351,"TargetStructureID":5562,"Label":"78351-5562 via Conventional from 78352 -> 63360","Type":"Conventional","Directional":true,"Links":[{"SourceID":78352,"TargetID":63360,"Directional":true}]},{"ID":17005,"SourceStructureID":78353,"TargetStructureID":5562,"Label":"78353-5562 via Conventional from 78354 -> 63359","Type":"Conventional","Directional":true,"Links":[{"SourceID":78354,"TargetID":63359,"Directional":true}]},{"ID":17006,"SourceStructureID":78383,"TargetStructureID":5562,"Label":"78383-5562 via Conventional from 78384 -> 63534, 78385 -> 63535","Type":"Conventional","Directional":true,"Links":[{"SourceID":78384,"TargetID":63534,"Directional":true},{"SourceID":78385,"TargetID":63535,"Directional":true}]},{"ID":17007,"SourceStructureID":78393,"TargetStructureID":5562,"Label":"78393-5562 via Conventional from 78394 -> 63626","Type":"Conventional","Directional":true,"Links":[{"SourceID":78394,"TargetID":63626,"Directional":true}]},{"ID":17008,"SourceStructureID":78421,"TargetStructureID":67671,"Label":"78421-67671 via Conventional from 78422 -> 78420","Type":"Conventional","Directional":true,"Links":[{"SourceID":78422,"TargetID":78420,"Directional":true}]},{"ID":17009,"SourceStructureID":78423,"TargetStructureID":78426,"Label":"78423-78426 via Conventional from 78425 -> 78427","Type":"Conventional","Directional":true,"Links":[{"SourceID":78425,"TargetID":78427,"Directional":true}]},{"ID":17010,"SourceStructureID":78428,"TargetStructureID":78423,"Label":"78428-78423 via Conventional from 78429 -> 78430","Type":"Conventional","Directional":true,"Links":[{"SourceID":78429,"TargetID":78430,"Directional":true}]},{"ID":17011,"SourceStructureID":78431,"TargetStructureID":5649,"Label":"78431-5649 via Conventional from 78434 -> 78435, 107186 -> 107188","Type":"Conventional","Directional":true,"Links":[{"SourceID":78434,"TargetID":78435,"Directional":true},{"SourceID":107186,"TargetID":107188,"Directional":true}]},{"ID":17012,"SourceStructureID":78431,"TargetStructureID":78423,"Label":"78431-78423 via Conventional from 78432 -> 78433","Type":"Conventional","Directional":true,"Links":[{"SourceID":78432,"TargetID":78433,"Directional":true}]},{"ID":17013,"SourceStructureID":78453,"TargetStructureID":5562,"Label":"78453-5562 via Conventional from 78455 -> 78454","Type":"Conventional","Directional":true,"Links":[{"SourceID":78455,"TargetID":78454,"Directional":true}]},{"ID":17014,"SourceStructureID":78465,"TargetStructureID":5562,"Label":"78465-5562 via Conventional from 78466 -> 63644","Type":"Conventional","Directional":true,"Links":[{"SourceID":78466,"TargetID":63644,"Directional":true}]},{"ID":17015,"SourceStructureID":78471,"TargetStructureID":5562,"Label":"78471-5562 via Conventional from 78472 -> 63639","Type":"Conventional","Directional":true,"Links":[{"SourceID":78472,"TargetID":63639,"Directional":true}]},{"ID":17016,"SourceStructureID":78478,"TargetStructureID":5562,"Label":"78478-5562 via Conventional from 78479 -> 63638","Type":"Conventional","Directional":true,"Links":[{"SourceID":78479,"TargetID":63638,"Directional":true}]},{"ID":17017,"SourceStructureID":78484,"TargetStructureID":5562,"Label":"78484-5562 via Conventional from 78485 -> 40300","Type":"Conventional","Directional":true,"Links":[{"SourceID":78485,"TargetID":40300,"Directional":true}]},{"ID":17018,"SourceStructureID":78515,"TargetStructureID":5562,"Label":"78515-5562 via Conventional from 79155 -> 63647","Type":"Conventional","Directional":true,"Links":[{"SourceID":79155,"TargetID":63647,"Directional":true}]},{"ID":17019,"SourceStructureID":78520,"TargetStructureID":5562,"Label":"78520-5562 via Conventional from 78522 -> 63649, 78537 -> 63660","Type":"Conventional","Directional":true,"Links":[{"SourceID":78522,"TargetID":63649,"Directional":true},{"SourceID":78537,"TargetID":63660,"Directional":true}]},{"ID":17020,"SourceStructureID":78523,"TargetStructureID":5562,"Label":"78523-5562 via Conventional from 78524 -> 63653","Type":"Conventional","Directional":true,"Links":[{"SourceID":78524,"TargetID":63653,"Directional":true}]},{"ID":17021,"SourceStructureID":78540,"TargetStructureID":5562,"Label":"78540-5562 via Conventional from 78541 -> 63656","Type":"Conventional","Directional":true,"Links":[{"SourceID":78541,"TargetID":63656,"Directional":true}]},{"ID":17022,"SourceStructureID":78542,"TargetStructureID":5562,"Label":"78542-5562 via Conventional from 78543 -> 63650","Type":"Conventional","Directional":true,"Links":[{"SourceID":78543,"TargetID":63650,"Directional":true}]},{"ID":17023,"SourceStructureID":78550,"TargetStructureID":5562,"Label":"78550-5562 via Conventional from 78551 -> 40303","Type":"Conventional","Directional":true,"Links":[{"SourceID":78551,"TargetID":40303,"Directional":true}]},{"ID":17024,"SourceStructureID":78552,"TargetStructureID":5562,"Label":"78552-5562 via Conventional from 78553 -> 40304","Type":"Conventional","Directional":true,"Links":[{"SourceID":78553,"TargetID":40304,"Directional":true}]},{"ID":17025,"SourceStructureID":78560,"TargetStructureID":5562,"Label":"78560-5562 via Conventional from 78561 -> 63661","Type":"Conventional","Directional":true,"Links":[{"SourceID":78561,"TargetID":63661,"Directional":true}]},{"ID":17026,"SourceStructureID":78570,"TargetStructureID":5562,"Label":"78570-5562 via Conventional from 78571 -> 63662","Type":"Conventional","Directional":true,"Links":[{"SourceID":78571,"TargetID":63662,"Directional":true}]},{"ID":17027,"SourceStructureID":78573,"TargetStructureID":5562,"Label":"78573-5562 via Conventional from 78574 -> 63663","Type":"Conventional","Directional":true,"Links":[{"SourceID":78574,"TargetID":63663,"Directional":true}]},{"ID":17028,"SourceStructureID":78578,"TargetStructureID":5562,"Label":"78578-5562 via Conventional from 82876 -> 63667","Type":"Conventional","Directional":true,"Links":[{"SourceID":82876,"TargetID":63667,"Directional":true}]},{"ID":17029,"SourceStructureID":78586,"TargetStructureID":5562,"Label":"78586-5562 via Conventional from 78587 -> 63672","Type":"Conventional","Directional":true,"Links":[{"SourceID":78587,"TargetID":63672,"Directional":true}]},{"ID":17030,"SourceStructureID":78588,"TargetStructureID":5562,"Label":"78588-5562 via Conventional from 78589 -> 63671","Type":"Conventional","Directional":true,"Links":[{"SourceID":78589,"TargetID":63671,"Directional":true}]},{"ID":17031,"SourceStructureID":78590,"TargetStructureID":5562,"Label":"78590-5562 via Conventional from 78591 -> 63669","Type":"Conventional","Directional":true,"Links":[{"SourceID":78591,"TargetID":63669,"Directional":true}]},{"ID":17032,"SourceStructureID":78594,"TargetStructureID":5562,"Label":"78594-5562 via Conventional from 78595 -> 63674","Type":"Conventional","Directional":true,"Links":[{"SourceID":78595,"TargetID":63674,"Directional":true}]},{"ID":17033,"SourceStructureID":78615,"TargetStructureID":5562,"Label":"78615-5562 via Conventional from 78616 -> 40305","Type":"Conventional","Directional":true,"Links":[{"SourceID":78616,"TargetID":40305,"Directional":true}]},{"ID":17034,"SourceStructureID":78617,"TargetStructureID":5562,"Label":"78617-5562 via Conventional from 78618 -> 40306","Type":"Conventional","Directional":true,"Links":[{"SourceID":78618,"TargetID":40306,"Directional":true}]},{"ID":17035,"SourceStructureID":78647,"TargetStructureID":5562,"Label":"78647-5562 via Conventional from 78648 -> 63689","Type":"Conventional","Directional":true,"Links":[{"SourceID":78648,"TargetID":63689,"Directional":true}]},{"ID":17036,"SourceStructureID":78650,"TargetStructureID":5562,"Label":"78650-5562 via Conventional from 78651 -> 54203","Type":"Conventional","Directional":true,"Links":[{"SourceID":78651,"TargetID":54203,"Directional":true}]},{"ID":17037,"SourceStructureID":78663,"TargetStructureID":5562,"Label":"78663-5562 via Conventional from 78678 -> 63707","Type":"Conventional","Directional":true,"Links":[{"SourceID":78678,"TargetID":63707,"Directional":true}]},{"ID":17038,"SourceStructureID":78663,"TargetStructureID":82872,"Label":"78663-82872 via Conventional from 82873 -> 82874","Type":"Conventional","Directional":true,"Links":[{"SourceID":82873,"TargetID":82874,"Directional":true}]},{"ID":17039,"SourceStructureID":78665,"TargetStructureID":5562,"Label":"78665-5562 via Conventional from 78666 -> 54204","Type":"Conventional","Directional":true,"Links":[{"SourceID":78666,"TargetID":54204,"Directional":true}]},{"ID":17040,"SourceStructureID":78667,"TargetStructureID":5562,"Label":"78667-5562 via Conventional from 78668 -> 54209","Type":"Conventional","Directional":true,"Links":[{"SourceID":78668,"TargetID":54209,"Directional":true}]},{"ID":17041,"SourceStructureID":78669,"TargetStructureID":5562,"Label":"78669-5562 via Conventional from 78670 -> 54208","Type":"Conventional","Directional":true,"Links":[{"SourceID":78670,"TargetID":54208,"Directional":true}]},{"ID":17042,"SourceStructureID":78673,"TargetStructureID":5562,"Label":"78673-5562 via Conventional from 78674 -> 54207","Type":"Conventional","Directional":true,"Links":[{"SourceID":78674,"TargetID":54207,"Directional":true}]},{"ID":17043,"SourceStructureID":78686,"TargetStructureID":5562,"Label":"78686-5562 via Conventional from 82871 -> 54205","Type":"Conventional","Directional":true,"Links":[{"SourceID":82871,"TargetID":54205,"Directional":true}]},{"ID":17044,"SourceStructureID":78688,"TargetStructureID":5562,"Label":"78688-5562 via Conventional from 78689 -> 63688","Type":"Conventional","Directional":true,"Links":[{"SourceID":78689,"TargetID":63688,"Directional":true}]},{"ID":17045,"SourceStructureID":78693,"TargetStructureID":5562,"Label":"78693-5562 via Conventional from 78694 -> 63686","Type":"Conventional","Directional":true,"Links":[{"SourceID":78694,"TargetID":63686,"Directional":true}]},{"ID":17046,"SourceStructureID":78695,"TargetStructureID":5562,"Label":"78695-5562 via Conventional from 79156 -> 63687","Type":"Conventional","Directional":true,"Links":[{"SourceID":79156,"TargetID":63687,"Directional":true}]},{"ID":17047,"SourceStructureID":78697,"TargetStructureID":5562,"Label":"78697-5562 via Conventional from 78698 -> 63685","Type":"Conventional","Directional":true,"Links":[{"SourceID":78698,"TargetID":63685,"Directional":true}]},{"ID":17048,"SourceStructureID":78704,"TargetStructureID":5562,"Label":"78704-5562 via Conventional from 78706 -> 54211","Type":"Conventional","Directional":true,"Links":[{"SourceID":78706,"TargetID":54211,"Directional":true}]},{"ID":17049,"SourceStructureID":78709,"TargetStructureID":5561,"Label":"78709-5561 via Conventional from 78737 -> 46042","Type":"Conventional","Directional":true,"Links":[{"SourceID":78737,"TargetID":46042,"Directional":true}]},{"ID":17050,"SourceStructureID":78709,"TargetStructureID":78730,"Label":"78709-78730 via Conventional from 78729 -> 78731","Type":"Conventional","Directional":true,"Links":[{"SourceID":78729,"TargetID":78731,"Directional":true}]},{"ID":17051,"SourceStructureID":78710,"TargetStructureID":78715,"Label":"78710-78715 via Conventional from 78713 -> 78716","Type":"Conventional","Directional":true,"Links":[{"SourceID":78713,"TargetID":78716,"Directional":true}]},{"ID":17052,"SourceStructureID":78715,"TargetStructureID":78428,"Label":"78715-78428 via Conventional from 78717 -> 78718","Type":"Conventional","Directional":true,"Links":[{"SourceID":78717,"TargetID":78718,"Directional":true}]},{"ID":17053,"SourceStructureID":78715,"TargetStructureID":78909,"Label":"78715-78909 via Conventional from 87541 -> 87542","Type":"Conventional","Directional":true,"Links":[{"SourceID":87541,"TargetID":87542,"Directional":true}]},{"ID":17054,"SourceStructureID":78721,"TargetStructureID":78725,"Label":"78721-78725 via Conventional from 78722 -> 78726","Type":"Conventional","Directional":true,"Links":[{"SourceID":78722,"TargetID":78726,"Directional":true}]},{"ID":17055,"SourceStructureID":78727,"TargetStructureID":608,"Label":"78727-608 via Conventional from 78728 -> 59075","Type":"Conventional","Directional":true,"Links":[{"SourceID":78728,"TargetID":59075,"Directional":true}]},{"ID":17056,"SourceStructureID":78727,"TargetStructureID":18693,"Label":"78727-18693 via Conventional from 78733 -> 18818","Type":"Conventional","Directional":true,"Links":[{"SourceID":78733,"TargetID":18818,"Directional":true}]},{"ID":17057,"SourceStructureID":78727,"TargetStructureID":57035,"Label":"78727-57035 via Conventional from 78752 -> 78753","Type":"Conventional","Directional":true,"Links":[{"SourceID":78752,"TargetID":78753,"Directional":true}]},{"ID":17058,"SourceStructureID":78730,"TargetStructureID":606,"Label":"78730-606 via Conventional from 97669 -> 10700","Type":"Conventional","Directional":true,"Links":[{"SourceID":97669,"TargetID":10700,"Directional":true}]},{"ID":17059,"SourceStructureID":78760,"TargetStructureID":5562,"Label":"78760-5562 via Conventional from 78762 -> 78765","Type":"Conventional","Directional":true,"Links":[{"SourceID":78762,"TargetID":78765,"Directional":true}]},{"ID":17060,"SourceStructureID":78780,"TargetStructureID":5562,"Label":"78780-5562 via Conventional from 78781 -> 63729","Type":"Conventional","Directional":true,"Links":[{"SourceID":78781,"TargetID":63729,"Directional":true}]},{"ID":17061,"SourceStructureID":78797,"TargetStructureID":78709,"Label":"78797-78709 via Conventional from 78798 -> 78796","Type":"Conventional","Directional":true,"Links":[{"SourceID":78798,"TargetID":78796,"Directional":true}]},{"ID":17062,"SourceStructureID":78797,"TargetStructureID":78800,"Label":"78797-78800 via Conventional from 78799 -> 78801","Type":"Conventional","Directional":true,"Links":[{"SourceID":78799,"TargetID":78801,"Directional":true}]},{"ID":17063,"SourceStructureID":78805,"TargetStructureID":5562,"Label":"78805-5562 via Conventional from 78806 -> 63726, 78807 -> 63726","Type":"Conventional","Directional":true,"Links":[{"SourceID":78806,"TargetID":63726,"Directional":true},{"SourceID":78807,"TargetID":63726,"Directional":true}]},{"ID":17064,"SourceStructureID":78820,"TargetStructureID":5562,"Label":"78820-5562 via Conventional from 78821 -> 63735","Type":"Conventional","Directional":true,"Links":[{"SourceID":78821,"TargetID":63735,"Directional":true}]},{"ID":17065,"SourceStructureID":78823,"TargetStructureID":5562,"Label":"78823-5562 via Conventional from 78824 -> 63736","Type":"Conventional","Directional":true,"Links":[{"SourceID":78824,"TargetID":63736,"Directional":true}]},{"ID":17066,"SourceStructureID":78840,"TargetStructureID":5562,"Label":"78840-5562 via Conventional from 78845 -> 63743","Type":"Conventional","Directional":true,"Links":[{"SourceID":78845,"TargetID":63743,"Directional":true}]},{"ID":17067,"SourceStructureID":78860,"TargetStructureID":5562,"Label":"78860-5562 via Conventional from 78863 -> 63749","Type":"Conventional","Directional":true,"Links":[{"SourceID":78863,"TargetID":63749,"Directional":true}]},{"ID":17068,"SourceStructureID":78867,"TargetStructureID":5562,"Label":"78867-5562 via Conventional from 78868 -> 63751","Type":"Conventional","Directional":true,"Links":[{"SourceID":78868,"TargetID":63751,"Directional":true}]},{"ID":17069,"SourceStructureID":78872,"TargetStructureID":5562,"Label":"78872-5562 via Unknown from 78890 -> 78891","Type":"Unknown","Directional":true,"Links":[{"SourceID":78890,"TargetID":78891,"Directional":true}]},{"ID":17070,"SourceStructureID":78876,"TargetStructureID":16026,"Label":"78876-16026 via Conventional from 78877 -> 25780","Type":"Conventional","Directional":true,"Links":[{"SourceID":78877,"TargetID":25780,"Directional":true}]},{"ID":17071,"SourceStructureID":78879,"TargetStructureID":67765,"Label":"78879-67765 via Conventional from 78880 -> 78881","Type":"Conventional","Directional":true,"Links":[{"SourceID":78880,"TargetID":78881,"Directional":true}]},{"ID":17072,"SourceStructureID":78886,"TargetStructureID":5562,"Label":"78886-5562 via Conventional from 78887 -> 49535, 78887 -> 63755","Type":"Conventional","Directional":true,"Links":[{"SourceID":78887,"TargetID":49535,"Directional":true},{"SourceID":78887,"TargetID":63755,"Directional":true}]},{"ID":17073,"SourceStructureID":78892,"TargetStructureID":5562,"Label":"78892-5562 via Conventional from 78893 -> 63753","Type":"Conventional","Directional":true,"Links":[{"SourceID":78893,"TargetID":63753,"Directional":true}]},{"ID":17074,"SourceStructureID":78901,"TargetStructureID":5562,"Label":"78901-5562 via Conventional from 78902 -> 63756","Type":"Conventional","Directional":true,"Links":[{"SourceID":78902,"TargetID":63756,"Directional":true}]},{"ID":17075,"SourceStructureID":78909,"TargetStructureID":5562,"Label":"78909-5562 via Conventional from 87512 -> 49565","Type":"Conventional","Directional":true,"Links":[{"SourceID":87512,"TargetID":49565,"Directional":true}]},{"ID":17076,"SourceStructureID":78909,"TargetStructureID":5649,"Label":"78909-5649 via Conventional from 87517 -> 87520, 107124 -> 54295","Type":"Conventional","Directional":true,"Links":[{"SourceID":87517,"TargetID":87520,"Directional":true},{"SourceID":107124,"TargetID":54295,"Directional":true}]},{"ID":17077,"SourceStructureID":78909,"TargetStructureID":6142,"Label":"78909-6142 via Conventional from 87550 -> 23585, 87601 -> 87602, 108669 -> 108668","Type":"Conventional","Directional":true,"Links":[{"SourceID":87550,"TargetID":23585,"Directional":true},{"SourceID":87601,"TargetID":87602,"Directional":true},{"SourceID":108669,"TargetID":108668,"Directional":true}]},{"ID":17078,"SourceStructureID":78910,"TargetStructureID":5562,"Label":"78910-5562 via Conventional from 78913 -> 63758","Type":"Conventional","Directional":true,"Links":[{"SourceID":78913,"TargetID":63758,"Directional":true}]},{"ID":17079,"SourceStructureID":78930,"TargetStructureID":5562,"Label":"78930-5562 via Conventional from 78931 -> 63768","Type":"Conventional","Directional":true,"Links":[{"SourceID":78931,"TargetID":63768,"Directional":true}]},{"ID":17080,"SourceStructureID":78932,"TargetStructureID":5562,"Label":"78932-5562 via Conventional from 78933 -> 63770","Type":"Conventional","Directional":true,"Links":[{"SourceID":78933,"TargetID":63770,"Directional":true}]},{"ID":17081,"SourceStructureID":78940,"TargetStructureID":5562,"Label":"78940-5562 via Conventional from 78941 -> 63775","Type":"Conventional","Directional":true,"Links":[{"SourceID":78941,"TargetID":63775,"Directional":true}]},{"ID":17082,"SourceStructureID":78943,"TargetStructureID":5562,"Label":"78943-5562 via Conventional from 78944 -> 63765","Type":"Conventional","Directional":true,"Links":[{"SourceID":78944,"TargetID":63765,"Directional":true}]},{"ID":17083,"SourceStructureID":78946,"TargetStructureID":5562,"Label":"78946-5562 via Conventional from 78949 -> 63766","Type":"Conventional","Directional":true,"Links":[{"SourceID":78949,"TargetID":63766,"Directional":true}]},{"ID":17084,"SourceStructureID":78964,"TargetStructureID":31161,"Label":"78964-31161 via Conventional from 78968 -> 31218","Type":"Conventional","Directional":true,"Links":[{"SourceID":78968,"TargetID":31218,"Directional":true}]},{"ID":17085,"SourceStructureID":78966,"TargetStructureID":5562,"Label":"78966-5562 via Conventional from 78967 -> 63778","Type":"Conventional","Directional":true,"Links":[{"SourceID":78967,"TargetID":63778,"Directional":true}]},{"ID":17086,"SourceStructureID":79004,"TargetStructureID":5562,"Label":"79004-5562 via Conventional from 79005 -> 63789","Type":"Conventional","Directional":true,"Links":[{"SourceID":79005,"TargetID":63789,"Directional":true}]},{"ID":17087,"SourceStructureID":79008,"TargetStructureID":5562,"Label":"79008-5562 via Conventional from 79009 -> 63839","Type":"Conventional","Directional":true,"Links":[{"SourceID":79009,"TargetID":63839,"Directional":true}]},{"ID":17088,"SourceStructureID":79017,"TargetStructureID":5562,"Label":"79017-5562 via Conventional from 79018 -> 63832","Type":"Conventional","Directional":true,"Links":[{"SourceID":79018,"TargetID":63832,"Directional":true}]},{"ID":17089,"SourceStructureID":79019,"TargetStructureID":5562,"Label":"79019-5562 via Conventional from 79021 -> 63824","Type":"Conventional","Directional":true,"Links":[{"SourceID":79021,"TargetID":63824,"Directional":true}]},{"ID":17090,"SourceStructureID":79022,"TargetStructureID":5562,"Label":"79022-5562 via Conventional from 79023 -> 63827, 79025 -> 63827","Type":"Conventional","Directional":true,"Links":[{"SourceID":79023,"TargetID":63827,"Directional":true},{"SourceID":79025,"TargetID":63827,"Directional":true}]},{"ID":17091,"SourceStructureID":79064,"TargetStructureID":5530,"Label":"79064-5530 via Conventional from 79065 -> 79066","Type":"Conventional","Directional":true,"Links":[{"SourceID":79065,"TargetID":79066,"Directional":true}]},{"ID":17092,"SourceStructureID":79073,"TargetStructureID":5530,"Label":"79073-5530 via Conventional from 82594 -> 134558","Type":"Conventional","Directional":true,"Links":[{"SourceID":82594,"TargetID":134558,"Directional":true}]},{"ID":17093,"SourceStructureID":79123,"TargetStructureID":5530,"Label":"79123-5530 via Conventional from 79144 -> 79147","Type":"Conventional","Directional":true,"Links":[{"SourceID":79144,"TargetID":79147,"Directional":true}]},{"ID":17094,"SourceStructureID":79159,"TargetStructureID":5530,"Label":"79159-5530 via Conventional from 80627 -> 42136","Type":"Conventional","Directional":true,"Links":[{"SourceID":80627,"TargetID":42136,"Directional":true}]},{"ID":17095,"SourceStructureID":79168,"TargetStructureID":5562,"Label":"79168-5562 via Conventional from 79169 -> 63834","Type":"Conventional","Directional":true,"Links":[{"SourceID":79169,"TargetID":63834,"Directional":true}]},{"ID":17096,"SourceStructureID":79171,"TargetStructureID":5562,"Label":"79171-5562 via Conventional from 79172 -> 63833","Type":"Conventional","Directional":true,"Links":[{"SourceID":79172,"TargetID":63833,"Directional":true}]},{"ID":17097,"SourceStructureID":79183,"TargetStructureID":5562,"Label":"79183-5562 via Conventional from 79184 -> 63837","Type":"Conventional","Directional":true,"Links":[{"SourceID":79184,"TargetID":63837,"Directional":true}]},{"ID":17098,"SourceStructureID":79189,"TargetStructureID":5562,"Label":"79189-5562 via Conventional from 79190 -> 63841","Type":"Conventional","Directional":true,"Links":[{"SourceID":79190,"TargetID":63841,"Directional":true}]},{"ID":17099,"SourceStructureID":79192,"TargetStructureID":5562,"Label":"79192-5562 via Conventional from 79193 -> 63843","Type":"Conventional","Directional":true,"Links":[{"SourceID":79193,"TargetID":63843,"Directional":true}]},{"ID":17100,"SourceStructureID":79207,"TargetStructureID":5562,"Label":"79207-5562 via Conventional from 79208 -> 63849","Type":"Conventional","Directional":true,"Links":[{"SourceID":79208,"TargetID":63849,"Directional":true}]},{"ID":17101,"SourceStructureID":79219,"TargetStructureID":5562,"Label":"79219-5562 via Conventional from 79220 -> 63851","Type":"Conventional","Directional":true,"Links":[{"SourceID":79220,"TargetID":63851,"Directional":true}]},{"ID":17102,"SourceStructureID":79227,"TargetStructureID":5562,"Label":"79227-5562 via Conventional from 79228 -> 63854","Type":"Conventional","Directional":true,"Links":[{"SourceID":79228,"TargetID":63854,"Directional":true}]},{"ID":17103,"SourceStructureID":79229,"TargetStructureID":5562,"Label":"79229-5562 via Conventional from 79230 -> 63863","Type":"Conventional","Directional":true,"Links":[{"SourceID":79230,"TargetID":63863,"Directional":true}]},{"ID":17104,"SourceStructureID":79232,"TargetStructureID":5562,"Label":"79232-5562 via Conventional from 79233 -> 63866","Type":"Conventional","Directional":true,"Links":[{"SourceID":79233,"TargetID":63866,"Directional":true}]},{"ID":17105,"SourceStructureID":79239,"TargetStructureID":5562,"Label":"79239-5562 via Conventional from 79240 -> 49105, 79241 -> 63865","Type":"Conventional","Directional":true,"Links":[{"SourceID":79240,"TargetID":49105,"Directional":true},{"SourceID":79241,"TargetID":63865,"Directional":true}]},{"ID":17106,"SourceStructureID":79256,"TargetStructureID":5530,"Label":"79256-5530 via Conventional from 79257 -> 42135","Type":"Conventional","Directional":true,"Links":[{"SourceID":79257,"TargetID":42135,"Directional":true}]},{"ID":17107,"SourceStructureID":79259,"TargetStructureID":5528,"Label":"79259-5528 via Conventional from 96276 -> 96277","Type":"Conventional","Directional":true,"Links":[{"SourceID":96276,"TargetID":96277,"Directional":true}]},{"ID":17108,"SourceStructureID":79259,"TargetStructureID":5530,"Label":"79259-5530 via Conventional from 79260 -> 79261","Type":"Conventional","Directional":true,"Links":[{"SourceID":79260,"TargetID":79261,"Directional":true}]},{"ID":17109,"SourceStructureID":79309,"TargetStructureID":68497,"Label":"79309-68497 via Conventional from 79310 -> 79308","Type":"Conventional","Directional":true,"Links":[{"SourceID":79310,"TargetID":79308,"Directional":true}]},{"ID":17110,"SourceStructureID":79317,"TargetStructureID":31399,"Label":"79317-31399 via Ribbon Synapse from 99014 -> 31406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99014,"TargetID":31406,"Directional":true}]},{"ID":17111,"SourceStructureID":79408,"TargetStructureID":61773,"Label":"79408-61773 via Conventional from 79409 -> 79407","Type":"Conventional","Directional":true,"Links":[{"SourceID":79409,"TargetID":79407,"Directional":true}]},{"ID":17112,"SourceStructureID":79427,"TargetStructureID":61777,"Label":"79427-61777 via Conventional from 79428 -> 79429","Type":"Conventional","Directional":true,"Links":[{"SourceID":79428,"TargetID":79429,"Directional":true}]},{"ID":17113,"SourceStructureID":79457,"TargetStructureID":68497,"Label":"79457-68497 via Conventional from 79458 -> 79456","Type":"Conventional","Directional":true,"Links":[{"SourceID":79458,"TargetID":79456,"Directional":true}]},{"ID":17114,"SourceStructureID":79464,"TargetStructureID":61797,"Label":"79464-61797 via Conventional from 79466 -> 79469","Type":"Conventional","Directional":true,"Links":[{"SourceID":79466,"TargetID":79469,"Directional":true}]},{"ID":17115,"SourceStructureID":79465,"TargetStructureID":61797,"Label":"79465-61797 via Conventional from 79467 -> 79468","Type":"Conventional","Directional":true,"Links":[{"SourceID":79467,"TargetID":79468,"Directional":true}]},{"ID":17116,"SourceStructureID":79470,"TargetStructureID":68497,"Label":"79470-68497 via Conventional from 79471 -> 79472","Type":"Conventional","Directional":true,"Links":[{"SourceID":79471,"TargetID":79472,"Directional":true}]},{"ID":17117,"SourceStructureID":79478,"TargetStructureID":68497,"Label":"79478-68497 via Conventional from 79479 -> 79477","Type":"Conventional","Directional":true,"Links":[{"SourceID":79479,"TargetID":79477,"Directional":true}]},{"ID":17118,"SourceStructureID":79493,"TargetStructureID":79498,"Label":"79493-79498 via Ribbon Synapse from 79496 -> 79499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79496,"TargetID":79499,"Directional":true}]},{"ID":17119,"SourceStructureID":79493,"TargetStructureID":79559,"Label":"79493-79559 via Ribbon Synapse from 79496 -> 79568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79496,"TargetID":79568,"Directional":true}]},{"ID":17120,"SourceStructureID":79502,"TargetStructureID":79559,"Label":"79502-79559 via Conventional from 79503 -> 79577","Type":"Conventional","Directional":true,"Links":[{"SourceID":79503,"TargetID":79577,"Directional":true}]},{"ID":17121,"SourceStructureID":79533,"TargetStructureID":79559,"Label":"79533-79559 via Conventional from 79534 -> 79571","Type":"Conventional","Directional":true,"Links":[{"SourceID":79534,"TargetID":79571,"Directional":true}]},{"ID":17122,"SourceStructureID":79545,"TargetStructureID":5530,"Label":"79545-5530 via Conventional from 79546 -> 42109","Type":"Conventional","Directional":true,"Links":[{"SourceID":79546,"TargetID":42109,"Directional":true}]},{"ID":17123,"SourceStructureID":79553,"TargetStructureID":5530,"Label":"79553-5530 via Conventional from 79554 -> 42100","Type":"Conventional","Directional":true,"Links":[{"SourceID":79554,"TargetID":42100,"Directional":true}]},{"ID":17124,"SourceStructureID":79555,"TargetStructureID":5530,"Label":"79555-5530 via Conventional from 79565 -> 30117","Type":"Conventional","Directional":true,"Links":[{"SourceID":79565,"TargetID":30117,"Directional":true}]},{"ID":17125,"SourceStructureID":79558,"TargetStructureID":5530,"Label":"79558-5530 via Conventional from 79560 -> 79561","Type":"Conventional","Directional":true,"Links":[{"SourceID":79560,"TargetID":79561,"Directional":true}]},{"ID":17126,"SourceStructureID":79559,"TargetStructureID":79491,"Label":"79559-79491 via Conventional from 79576 -> 79572","Type":"Conventional","Directional":true,"Links":[{"SourceID":79576,"TargetID":79572,"Directional":true}]},{"ID":17127,"SourceStructureID":79559,"TargetStructureID":79493,"Label":"79559-79493 via Conventional from 79566 -> 79494","Type":"Conventional","Directional":true,"Links":[{"SourceID":79566,"TargetID":79494,"Directional":true}]},{"ID":17128,"SourceStructureID":79559,"TargetStructureID":79509,"Label":"79559-79509 via Conventional from 79570 -> 79510","Type":"Conventional","Directional":true,"Links":[{"SourceID":79570,"TargetID":79510,"Directional":true}]},{"ID":17129,"SourceStructureID":79563,"TargetStructureID":79559,"Label":"79563-79559 via Conventional from 79564 -> 79562","Type":"Conventional","Directional":true,"Links":[{"SourceID":79564,"TargetID":79562,"Directional":true}]},{"ID":17130,"SourceStructureID":79584,"TargetStructureID":68488,"Label":"79584-68488 via Conventional from 79585 -> 79583","Type":"Conventional","Directional":true,"Links":[{"SourceID":79585,"TargetID":79583,"Directional":true}]},{"ID":17131,"SourceStructureID":79586,"TargetStructureID":68516,"Label":"79586-68516 via Conventional from 79590 -> 68519","Type":"Conventional","Directional":true,"Links":[{"SourceID":79590,"TargetID":68519,"Directional":true}]},{"ID":17132,"SourceStructureID":79586,"TargetStructureID":79588,"Label":"79586-79588 via Conventional from 79587 -> 79589","Type":"Conventional","Directional":true,"Links":[{"SourceID":79587,"TargetID":79589,"Directional":true}]},{"ID":17133,"SourceStructureID":79601,"TargetStructureID":79586,"Label":"79601-79586 via Conventional from 79602 -> 79600","Type":"Conventional","Directional":true,"Links":[{"SourceID":79602,"TargetID":79600,"Directional":true}]},{"ID":17134,"SourceStructureID":79620,"TargetStructureID":5562,"Label":"79620-5562 via Conventional from 79621 -> 63858","Type":"Conventional","Directional":true,"Links":[{"SourceID":79621,"TargetID":63858,"Directional":true}]},{"ID":17135,"SourceStructureID":79643,"TargetStructureID":5562,"Label":"79643-5562 via Conventional from 79648 -> 63872","Type":"Conventional","Directional":true,"Links":[{"SourceID":79648,"TargetID":63872,"Directional":true}]},{"ID":17136,"SourceStructureID":79651,"TargetStructureID":593,"Label":"79651-593 via Conventional from 115732 -> 115733","Type":"Conventional","Directional":true,"Links":[{"SourceID":115732,"TargetID":115733,"Directional":true}]},{"ID":17137,"SourceStructureID":79665,"TargetStructureID":5562,"Label":"79665-5562 via Conventional from 79666 -> 63869","Type":"Conventional","Directional":true,"Links":[{"SourceID":79666,"TargetID":63869,"Directional":true}]},{"ID":17138,"SourceStructureID":79667,"TargetStructureID":5562,"Label":"79667-5562 via Conventional from 79668 -> 48943","Type":"Conventional","Directional":true,"Links":[{"SourceID":79668,"TargetID":48943,"Directional":true}]},{"ID":17139,"SourceStructureID":79672,"TargetStructureID":5562,"Label":"79672-5562 via Conventional from 79673 -> 48957","Type":"Conventional","Directional":true,"Links":[{"SourceID":79673,"TargetID":48957,"Directional":true}]},{"ID":17140,"SourceStructureID":79674,"TargetStructureID":5562,"Label":"79674-5562 via Conventional from 79675 -> 48958","Type":"Conventional","Directional":true,"Links":[{"SourceID":79675,"TargetID":48958,"Directional":true}]},{"ID":17141,"SourceStructureID":79676,"TargetStructureID":5562,"Label":"79676-5562 via Conventional from 79677 -> 63877","Type":"Conventional","Directional":true,"Links":[{"SourceID":79677,"TargetID":63877,"Directional":true}]},{"ID":17142,"SourceStructureID":79683,"TargetStructureID":5562,"Label":"79683-5562 via Conventional from 79685 -> 63879","Type":"Conventional","Directional":true,"Links":[{"SourceID":79685,"TargetID":63879,"Directional":true}]},{"ID":17143,"SourceStructureID":79686,"TargetStructureID":5562,"Label":"79686-5562 via Conventional from 79687 -> 63880","Type":"Conventional","Directional":true,"Links":[{"SourceID":79687,"TargetID":63880,"Directional":true}]},{"ID":17144,"SourceStructureID":79693,"TargetStructureID":5562,"Label":"79693-5562 via Conventional from 79694 -> 63881","Type":"Conventional","Directional":true,"Links":[{"SourceID":79694,"TargetID":63881,"Directional":true}]},{"ID":17145,"SourceStructureID":79705,"TargetStructureID":5562,"Label":"79705-5562 via Conventional from 79706 -> 63883","Type":"Conventional","Directional":true,"Links":[{"SourceID":79706,"TargetID":63883,"Directional":true}]},{"ID":17146,"SourceStructureID":79720,"TargetStructureID":5562,"Label":"79720-5562 via Conventional from 79721 -> 63897","Type":"Conventional","Directional":true,"Links":[{"SourceID":79721,"TargetID":63897,"Directional":true}]},{"ID":17147,"SourceStructureID":79722,"TargetStructureID":5562,"Label":"79722-5562 via Conventional from 79723 -> 63887","Type":"Conventional","Directional":true,"Links":[{"SourceID":79723,"TargetID":63887,"Directional":true}]},{"ID":17148,"SourceStructureID":79729,"TargetStructureID":5562,"Label":"79729-5562 via Conventional from 79730 -> 63888","Type":"Conventional","Directional":true,"Links":[{"SourceID":79730,"TargetID":63888,"Directional":true}]},{"ID":17149,"SourceStructureID":79741,"TargetStructureID":5562,"Label":"79741-5562 via Conventional from 79742 -> 63889","Type":"Conventional","Directional":true,"Links":[{"SourceID":79742,"TargetID":63889,"Directional":true}]},{"ID":17150,"SourceStructureID":79745,"TargetStructureID":5562,"Label":"79745-5562 via Conventional from 79746 -> 63890","Type":"Conventional","Directional":true,"Links":[{"SourceID":79746,"TargetID":63890,"Directional":true}]},{"ID":17151,"SourceStructureID":79756,"TargetStructureID":5562,"Label":"79756-5562 via Conventional from 79757 -> 63892","Type":"Conventional","Directional":true,"Links":[{"SourceID":79757,"TargetID":63892,"Directional":true}]},{"ID":17152,"SourceStructureID":79772,"TargetStructureID":5562,"Label":"79772-5562 via Conventional from 79773 -> 63912","Type":"Conventional","Directional":true,"Links":[{"SourceID":79773,"TargetID":63912,"Directional":true}]},{"ID":17153,"SourceStructureID":79779,"TargetStructureID":5562,"Label":"79779-5562 via Conventional from 79780 -> 63914","Type":"Conventional","Directional":true,"Links":[{"SourceID":79780,"TargetID":63914,"Directional":true}]},{"ID":17154,"SourceStructureID":79781,"TargetStructureID":5562,"Label":"79781-5562 via Conventional from 79782 -> 49003","Type":"Conventional","Directional":true,"Links":[{"SourceID":79782,"TargetID":49003,"Directional":true}]},{"ID":17155,"SourceStructureID":79795,"TargetStructureID":5562,"Label":"79795-5562 via Conventional from 79796 -> 49002","Type":"Conventional","Directional":true,"Links":[{"SourceID":79796,"TargetID":49002,"Directional":true}]},{"ID":17156,"SourceStructureID":79797,"TargetStructureID":5562,"Label":"79797-5562 via Conventional from 79798 -> 63917","Type":"Conventional","Directional":true,"Links":[{"SourceID":79798,"TargetID":63917,"Directional":true}]},{"ID":17157,"SourceStructureID":79799,"TargetStructureID":5562,"Label":"79799-5562 via Conventional from 79800 -> 63918","Type":"Conventional","Directional":true,"Links":[{"SourceID":79800,"TargetID":63918,"Directional":true}]},{"ID":17158,"SourceStructureID":79808,"TargetStructureID":5562,"Label":"79808-5562 via Conventional from 79809 -> 63908","Type":"Conventional","Directional":true,"Links":[{"SourceID":79809,"TargetID":63908,"Directional":true}]},{"ID":17159,"SourceStructureID":79815,"TargetStructureID":5562,"Label":"79815-5562 via Conventional from 79817 -> 63904","Type":"Conventional","Directional":true,"Links":[{"SourceID":79817,"TargetID":63904,"Directional":true}]},{"ID":17160,"SourceStructureID":79834,"TargetStructureID":5562,"Label":"79834-5562 via Conventional from 79835 -> 63910","Type":"Conventional","Directional":true,"Links":[{"SourceID":79835,"TargetID":63910,"Directional":true}]},{"ID":17161,"SourceStructureID":79840,"TargetStructureID":5562,"Label":"79840-5562 via Conventional from 79841 -> 63911","Type":"Conventional","Directional":true,"Links":[{"SourceID":79841,"TargetID":63911,"Directional":true}]},{"ID":17162,"SourceStructureID":79845,"TargetStructureID":5562,"Label":"79845-5562 via Conventional from 79846 -> 49001","Type":"Conventional","Directional":true,"Links":[{"SourceID":79846,"TargetID":49001,"Directional":true}]},{"ID":17163,"SourceStructureID":79855,"TargetStructureID":5562,"Label":"79855-5562 via Conventional from 92082 -> 92083","Type":"Conventional","Directional":true,"Links":[{"SourceID":92082,"TargetID":92083,"Directional":true}]},{"ID":17164,"SourceStructureID":79858,"TargetStructureID":5562,"Label":"79858-5562 via Conventional from 79859 -> 63920","Type":"Conventional","Directional":true,"Links":[{"SourceID":79859,"TargetID":63920,"Directional":true}]},{"ID":17165,"SourceStructureID":79869,"TargetStructureID":5562,"Label":"79869-5562 via Conventional from 79872 -> 63922","Type":"Conventional","Directional":true,"Links":[{"SourceID":79872,"TargetID":63922,"Directional":true}]},{"ID":17166,"SourceStructureID":79873,"TargetStructureID":5562,"Label":"79873-5562 via Conventional from 79874 -> 48979","Type":"Conventional","Directional":true,"Links":[{"SourceID":79874,"TargetID":48979,"Directional":true}]},{"ID":17167,"SourceStructureID":79875,"TargetStructureID":5562,"Label":"79875-5562 via Conventional from 79876 -> 48972","Type":"Conventional","Directional":true,"Links":[{"SourceID":79876,"TargetID":48972,"Directional":true}]},{"ID":17168,"SourceStructureID":79914,"TargetStructureID":6997,"Label":"79914-6997 via Conventional from 79915 -> 83117","Type":"Conventional","Directional":true,"Links":[{"SourceID":79915,"TargetID":83117,"Directional":true}]},{"ID":17169,"SourceStructureID":79926,"TargetStructureID":6997,"Label":"79926-6997 via Conventional from 79927 -> 83096","Type":"Conventional","Directional":true,"Links":[{"SourceID":79927,"TargetID":83096,"Directional":true}]},{"ID":17170,"SourceStructureID":79928,"TargetStructureID":6997,"Label":"79928-6997 via Conventional from 79929 -> 83095","Type":"Conventional","Directional":true,"Links":[{"SourceID":79929,"TargetID":83095,"Directional":true}]},{"ID":17171,"SourceStructureID":79931,"TargetStructureID":6997,"Label":"79931-6997 via Conventional from 79932 -> 83097","Type":"Conventional","Directional":true,"Links":[{"SourceID":79932,"TargetID":83097,"Directional":true}]},{"ID":17172,"SourceStructureID":79950,"TargetStructureID":69162,"Label":"79950-69162 via Conventional from 136837 -> 136838","Type":"Conventional","Directional":true,"Links":[{"SourceID":136837,"TargetID":136838,"Directional":true}]},{"ID":17173,"SourceStructureID":79955,"TargetStructureID":6997,"Label":"79955-6997 via Conventional from 79956 -> 83113","Type":"Conventional","Directional":true,"Links":[{"SourceID":79956,"TargetID":83113,"Directional":true}]},{"ID":17174,"SourceStructureID":79970,"TargetStructureID":6997,"Label":"79970-6997 via Conventional from 79971 -> 83073","Type":"Conventional","Directional":true,"Links":[{"SourceID":79971,"TargetID":83073,"Directional":true}]},{"ID":17175,"SourceStructureID":79975,"TargetStructureID":6997,"Label":"79975-6997 via Conventional from 79977 -> 83080","Type":"Conventional","Directional":true,"Links":[{"SourceID":79977,"TargetID":83080,"Directional":true}]},{"ID":17176,"SourceStructureID":79984,"TargetStructureID":6997,"Label":"79984-6997 via Conventional from 79985 -> 83076","Type":"Conventional","Directional":true,"Links":[{"SourceID":79985,"TargetID":83076,"Directional":true}]},{"ID":17177,"SourceStructureID":79986,"TargetStructureID":6997,"Label":"79986-6997 via Conventional from 79987 -> 83079","Type":"Conventional","Directional":true,"Links":[{"SourceID":79987,"TargetID":83079,"Directional":true}]},{"ID":17178,"SourceStructureID":80000,"TargetStructureID":6997,"Label":"80000-6997 via Conventional from 80001 -> 83085","Type":"Conventional","Directional":true,"Links":[{"SourceID":80001,"TargetID":83085,"Directional":true}]},{"ID":17179,"SourceStructureID":80016,"TargetStructureID":6997,"Label":"80016-6997 via Conventional from 80017 -> 83069","Type":"Conventional","Directional":true,"Links":[{"SourceID":80017,"TargetID":83069,"Directional":true}]},{"ID":17180,"SourceStructureID":80019,"TargetStructureID":6997,"Label":"80019-6997 via Conventional from 80020 -> 83067","Type":"Conventional","Directional":true,"Links":[{"SourceID":80020,"TargetID":83067,"Directional":true}]},{"ID":17181,"SourceStructureID":80023,"TargetStructureID":6997,"Label":"80023-6997 via Conventional from 80024 -> 83026","Type":"Conventional","Directional":true,"Links":[{"SourceID":80024,"TargetID":83026,"Directional":true}]},{"ID":17182,"SourceStructureID":80028,"TargetStructureID":6997,"Label":"80028-6997 via Conventional from 80029 -> 83023","Type":"Conventional","Directional":true,"Links":[{"SourceID":80029,"TargetID":83023,"Directional":true}]},{"ID":17183,"SourceStructureID":80034,"TargetStructureID":6997,"Label":"80034-6997 via Conventional from 80035 -> 83019, 80037 -> 83020","Type":"Conventional","Directional":true,"Links":[{"SourceID":80035,"TargetID":83019,"Directional":true},{"SourceID":80037,"TargetID":83020,"Directional":true}]},{"ID":17184,"SourceStructureID":80060,"TargetStructureID":5283,"Label":"80060-5283 via Conventional from 80061 -> 80056","Type":"Conventional","Directional":true,"Links":[{"SourceID":80061,"TargetID":80056,"Directional":true}]},{"ID":17185,"SourceStructureID":80065,"TargetStructureID":5283,"Label":"80065-5283 via Conventional from 80066 -> 80064","Type":"Conventional","Directional":true,"Links":[{"SourceID":80066,"TargetID":80064,"Directional":true}]},{"ID":17186,"SourceStructureID":80067,"TargetStructureID":5283,"Label":"80067-5283 via Conventional from 80068 -> 80069","Type":"Conventional","Directional":true,"Links":[{"SourceID":80068,"TargetID":80069,"Directional":true}]},{"ID":17187,"SourceStructureID":80071,"TargetStructureID":5283,"Label":"80071-5283 via Conventional from 80072 -> 80070","Type":"Conventional","Directional":true,"Links":[{"SourceID":80072,"TargetID":80070,"Directional":true}]},{"ID":17188,"SourceStructureID":80079,"TargetStructureID":5283,"Label":"80079-5283 via Cistern Pre from 132189 -> 132190","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":132189,"TargetID":132190,"Directional":true}]},{"ID":17189,"SourceStructureID":80088,"TargetStructureID":5283,"Label":"80088-5283 via Conventional from 80089 -> 80062","Type":"Conventional","Directional":true,"Links":[{"SourceID":80089,"TargetID":80062,"Directional":true}]},{"ID":17190,"SourceStructureID":80090,"TargetStructureID":5283,"Label":"80090-5283 via Conventional from 80091 -> 80092","Type":"Conventional","Directional":true,"Links":[{"SourceID":80091,"TargetID":80092,"Directional":true}]},{"ID":17191,"SourceStructureID":80094,"TargetStructureID":5283,"Label":"80094-5283 via Conventional from 80096 -> 80093","Type":"Conventional","Directional":true,"Links":[{"SourceID":80096,"TargetID":80093,"Directional":true}]},{"ID":17192,"SourceStructureID":80115,"TargetStructureID":5283,"Label":"80115-5283 via Conventional from 80116 -> 80114","Type":"Conventional","Directional":true,"Links":[{"SourceID":80116,"TargetID":80114,"Directional":true}]},{"ID":17193,"SourceStructureID":80133,"TargetStructureID":5283,"Label":"80133-5283 via Conventional from 80134 -> 80135","Type":"Conventional","Directional":true,"Links":[{"SourceID":80134,"TargetID":80135,"Directional":true}]},{"ID":17194,"SourceStructureID":80147,"TargetStructureID":5283,"Label":"80147-5283 via Conventional from 80148 -> 80146","Type":"Conventional","Directional":true,"Links":[{"SourceID":80148,"TargetID":80146,"Directional":true}]},{"ID":17195,"SourceStructureID":80159,"TargetStructureID":5283,"Label":"80159-5283 via Conventional from 80160 -> 80158","Type":"Conventional","Directional":true,"Links":[{"SourceID":80160,"TargetID":80158,"Directional":true}]},{"ID":17196,"SourceStructureID":80167,"TargetStructureID":5283,"Label":"80167-5283 via Conventional from 80168 -> 80166","Type":"Conventional","Directional":true,"Links":[{"SourceID":80168,"TargetID":80166,"Directional":true}]},{"ID":17197,"SourceStructureID":80174,"TargetStructureID":5530,"Label":"80174-5530 via Conventional from 80175 -> 80176","Type":"Conventional","Directional":true,"Links":[{"SourceID":80175,"TargetID":80176,"Directional":true}]},{"ID":17198,"SourceStructureID":80185,"TargetStructureID":176,"Label":"80185-176 via Conventional from 124869 -> 54994","Type":"Conventional","Directional":true,"Links":[{"SourceID":124869,"TargetID":54994,"Directional":true}]},{"ID":17199,"SourceStructureID":80185,"TargetStructureID":5530,"Label":"80185-5530 via Conventional from 80187 -> 42098","Type":"Conventional","Directional":true,"Links":[{"SourceID":80187,"TargetID":42098,"Directional":true}]},{"ID":17200,"SourceStructureID":80190,"TargetStructureID":5530,"Label":"80190-5530 via Conventional from 80191 -> 42105","Type":"Conventional","Directional":true,"Links":[{"SourceID":80191,"TargetID":42105,"Directional":true}]},{"ID":17201,"SourceStructureID":80197,"TargetStructureID":5530,"Label":"80197-5530 via Conventional from 80198 -> 80199","Type":"Conventional","Directional":true,"Links":[{"SourceID":80198,"TargetID":80199,"Directional":true}]},{"ID":17202,"SourceStructureID":80203,"TargetStructureID":5530,"Label":"80203-5530 via Conventional from 80204 -> 42113","Type":"Conventional","Directional":true,"Links":[{"SourceID":80204,"TargetID":42113,"Directional":true}]},{"ID":17203,"SourceStructureID":80213,"TargetStructureID":5562,"Label":"80213-5562 via Conventional from 80214 -> 80215","Type":"Conventional","Directional":true,"Links":[{"SourceID":80214,"TargetID":80215,"Directional":true}]},{"ID":17204,"SourceStructureID":80235,"TargetStructureID":5562,"Label":"80235-5562 via Conventional from 134522 -> 134521","Type":"Conventional","Directional":true,"Links":[{"SourceID":134522,"TargetID":134521,"Directional":true}]},{"ID":17205,"SourceStructureID":80245,"TargetStructureID":5283,"Label":"80245-5283 via Cistern Pre from 131702 -> 131703","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":131702,"TargetID":131703,"Directional":true}]},{"ID":17206,"SourceStructureID":80248,"TargetStructureID":5283,"Label":"80248-5283 via Conventional from 80249 -> 80247","Type":"Conventional","Directional":true,"Links":[{"SourceID":80249,"TargetID":80247,"Directional":true}]},{"ID":17207,"SourceStructureID":80262,"TargetStructureID":5562,"Label":"80262-5562 via Conventional from 80264 -> 63086","Type":"Conventional","Directional":true,"Links":[{"SourceID":80264,"TargetID":63086,"Directional":true}]},{"ID":17208,"SourceStructureID":80263,"TargetStructureID":5530,"Label":"80263-5530 via Conventional from 80268 -> 42114","Type":"Conventional","Directional":true,"Links":[{"SourceID":80268,"TargetID":42114,"Directional":true}]},{"ID":17209,"SourceStructureID":80274,"TargetStructureID":68463,"Label":"80274-68463 via Conventional from 80275 -> 80273","Type":"Conventional","Directional":true,"Links":[{"SourceID":80275,"TargetID":80273,"Directional":true}]},{"ID":17210,"SourceStructureID":80276,"TargetStructureID":5530,"Label":"80276-5530 via Conventional from 80279 -> 42115","Type":"Conventional","Directional":true,"Links":[{"SourceID":80279,"TargetID":42115,"Directional":true}]},{"ID":17211,"SourceStructureID":80276,"TargetStructureID":80210,"Label":"80276-80210 via Conventional from 84377 -> 84378","Type":"Conventional","Directional":true,"Links":[{"SourceID":84377,"TargetID":84378,"Directional":true}]},{"ID":17212,"SourceStructureID":80286,"TargetStructureID":5562,"Label":"80286-5562 via Conventional from 80287 -> 63239","Type":"Conventional","Directional":true,"Links":[{"SourceID":80287,"TargetID":63239,"Directional":true}]},{"ID":17213,"SourceStructureID":80290,"TargetStructureID":5562,"Label":"80290-5562 via Conventional from 80291 -> 63245","Type":"Conventional","Directional":true,"Links":[{"SourceID":80291,"TargetID":63245,"Directional":true}]},{"ID":17214,"SourceStructureID":80292,"TargetStructureID":5530,"Label":"80292-5530 via Conventional from 80297 -> 80299","Type":"Conventional","Directional":true,"Links":[{"SourceID":80297,"TargetID":80299,"Directional":true}]},{"ID":17215,"SourceStructureID":80293,"TargetStructureID":5649,"Label":"80293-5649 via Conventional from 106546 -> 54105","Type":"Conventional","Directional":true,"Links":[{"SourceID":106546,"TargetID":54105,"Directional":true}]},{"ID":17216,"SourceStructureID":80304,"TargetStructureID":5562,"Label":"80304-5562 via Conventional from 134627 -> 134626","Type":"Conventional","Directional":true,"Links":[{"SourceID":134627,"TargetID":134626,"Directional":true}]},{"ID":17217,"SourceStructureID":80320,"TargetStructureID":5562,"Label":"80320-5562 via Conventional from 147567 -> 147566","Type":"Conventional","Directional":true,"Links":[{"SourceID":147567,"TargetID":147566,"Directional":true}]},{"ID":17218,"SourceStructureID":80324,"TargetStructureID":5562,"Label":"80324-5562 via Conventional from 80325 -> 80326","Type":"Conventional","Directional":true,"Links":[{"SourceID":80325,"TargetID":80326,"Directional":true}]},{"ID":17219,"SourceStructureID":80333,"TargetStructureID":5562,"Label":"80333-5562 via Conventional from 147564 -> 147565","Type":"Conventional","Directional":true,"Links":[{"SourceID":147564,"TargetID":147565,"Directional":true}]},{"ID":17220,"SourceStructureID":80346,"TargetStructureID":5562,"Label":"80346-5562 via Conventional from 80347 -> 63294","Type":"Conventional","Directional":true,"Links":[{"SourceID":80347,"TargetID":63294,"Directional":true}]},{"ID":17221,"SourceStructureID":80354,"TargetStructureID":5562,"Label":"80354-5562 via Conventional from 80356 -> 63297","Type":"Conventional","Directional":true,"Links":[{"SourceID":80356,"TargetID":63297,"Directional":true}]},{"ID":17222,"SourceStructureID":80357,"TargetStructureID":5562,"Label":"80357-5562 via Conventional from 80358 -> 63298","Type":"Conventional","Directional":true,"Links":[{"SourceID":80358,"TargetID":63298,"Directional":true}]},{"ID":17223,"SourceStructureID":80361,"TargetStructureID":5562,"Label":"80361-5562 via Conventional from 80362 -> 63300","Type":"Conventional","Directional":true,"Links":[{"SourceID":80362,"TargetID":63300,"Directional":true}]},{"ID":17224,"SourceStructureID":80378,"TargetStructureID":5562,"Label":"80378-5562 via Conventional from 80380 -> 63305","Type":"Conventional","Directional":true,"Links":[{"SourceID":80380,"TargetID":63305,"Directional":true}]},{"ID":17225,"SourceStructureID":80382,"TargetStructureID":5562,"Label":"80382-5562 via Conventional from 80392 -> 80393","Type":"Conventional","Directional":true,"Links":[{"SourceID":80392,"TargetID":80393,"Directional":true}]},{"ID":17226,"SourceStructureID":80383,"TargetStructureID":5562,"Label":"80383-5562 via Conventional from 80384 -> 63303","Type":"Conventional","Directional":true,"Links":[{"SourceID":80384,"TargetID":63303,"Directional":true}]},{"ID":17227,"SourceStructureID":80398,"TargetStructureID":5562,"Label":"80398-5562 via Conventional from 80677 -> 63286","Type":"Conventional","Directional":true,"Links":[{"SourceID":80677,"TargetID":63286,"Directional":true}]},{"ID":17228,"SourceStructureID":80400,"TargetStructureID":5562,"Label":"80400-5562 via Conventional from 80690 -> 63287","Type":"Conventional","Directional":true,"Links":[{"SourceID":80690,"TargetID":63287,"Directional":true}]},{"ID":17229,"SourceStructureID":80401,"TargetStructureID":5562,"Label":"80401-5562 via Conventional from 80402 -> 63288","Type":"Conventional","Directional":true,"Links":[{"SourceID":80402,"TargetID":63288,"Directional":true}]},{"ID":17230,"SourceStructureID":80425,"TargetStructureID":5530,"Label":"80425-5530 via Conventional from 80439 -> 42118","Type":"Conventional","Directional":true,"Links":[{"SourceID":80439,"TargetID":42118,"Directional":true}]},{"ID":17231,"SourceStructureID":80434,"TargetStructureID":5530,"Label":"80434-5530 via Conventional from 80444 -> 42119","Type":"Conventional","Directional":true,"Links":[{"SourceID":80444,"TargetID":42119,"Directional":true}]},{"ID":17232,"SourceStructureID":80440,"TargetStructureID":5530,"Label":"80440-5530 via Conventional from 80441 -> 42120","Type":"Conventional","Directional":true,"Links":[{"SourceID":80441,"TargetID":42120,"Directional":true}]},{"ID":17233,"SourceStructureID":80447,"TargetStructureID":5530,"Label":"80447-5530 via Conventional from 80450 -> 42122","Type":"Conventional","Directional":true,"Links":[{"SourceID":80450,"TargetID":42122,"Directional":true}]},{"ID":17234,"SourceStructureID":80448,"TargetStructureID":170,"Label":"80448-170 via Conventional from 88530 -> 47933","Type":"Conventional","Directional":true,"Links":[{"SourceID":88530,"TargetID":47933,"Directional":true}]},{"ID":17235,"SourceStructureID":80448,"TargetStructureID":5530,"Label":"80448-5530 via Conventional from 80451 -> 42123","Type":"Conventional","Directional":true,"Links":[{"SourceID":80451,"TargetID":42123,"Directional":true}]},{"ID":17236,"SourceStructureID":80467,"TargetStructureID":5530,"Label":"80467-5530 via Conventional from 80468 -> 42124","Type":"Conventional","Directional":true,"Links":[{"SourceID":80468,"TargetID":42124,"Directional":true}]},{"ID":17237,"SourceStructureID":80475,"TargetStructureID":5530,"Label":"80475-5530 via Conventional from 80476 -> 80477","Type":"Conventional","Directional":true,"Links":[{"SourceID":80476,"TargetID":80477,"Directional":true}]},{"ID":17238,"SourceStructureID":80498,"TargetStructureID":5530,"Label":"80498-5530 via Conventional from 80503 -> 42128","Type":"Conventional","Directional":true,"Links":[{"SourceID":80503,"TargetID":42128,"Directional":true}]},{"ID":17239,"SourceStructureID":80506,"TargetStructureID":5530,"Label":"80506-5530 via Conventional from 80507 -> 80505","Type":"Conventional","Directional":true,"Links":[{"SourceID":80507,"TargetID":80505,"Directional":true}]},{"ID":17240,"SourceStructureID":80509,"TargetStructureID":5530,"Label":"80509-5530 via Conventional from 80511 -> 80510","Type":"Conventional","Directional":true,"Links":[{"SourceID":80511,"TargetID":80510,"Directional":true}]},{"ID":17241,"SourceStructureID":80522,"TargetStructureID":62325,"Label":"80522-62325 via Conventional from 80523 -> 80524","Type":"Conventional","Directional":true,"Links":[{"SourceID":80523,"TargetID":80524,"Directional":true}]},{"ID":17242,"SourceStructureID":80532,"TargetStructureID":62325,"Label":"80532-62325 via Conventional from 80793 -> 80794","Type":"Conventional","Directional":true,"Links":[{"SourceID":80793,"TargetID":80794,"Directional":true}]},{"ID":17243,"SourceStructureID":80534,"TargetStructureID":62325,"Label":"80534-62325 via Conventional from 80536 -> 80537","Type":"Conventional","Directional":true,"Links":[{"SourceID":80536,"TargetID":80537,"Directional":true}]},{"ID":17244,"SourceStructureID":80555,"TargetStructureID":68393,"Label":"80555-68393 via Conventional from 80556 -> 80554","Type":"Conventional","Directional":true,"Links":[{"SourceID":80556,"TargetID":80554,"Directional":true}]},{"ID":17245,"SourceStructureID":80555,"TargetStructureID":112995,"Label":"80555-112995 via Conventional from 80558 -> 112996","Type":"Conventional","Directional":true,"Links":[{"SourceID":80558,"TargetID":112996,"Directional":true}]},{"ID":17246,"SourceStructureID":80562,"TargetStructureID":5530,"Label":"80562-5530 via Conventional from 80566 -> 42129","Type":"Conventional","Directional":true,"Links":[{"SourceID":80566,"TargetID":42129,"Directional":true}]},{"ID":17247,"SourceStructureID":80572,"TargetStructureID":5530,"Label":"80572-5530 via Conventional from 80573 -> 39714","Type":"Conventional","Directional":true,"Links":[{"SourceID":80573,"TargetID":39714,"Directional":true}]},{"ID":17248,"SourceStructureID":80582,"TargetStructureID":5530,"Label":"80582-5530 via Conventional from 80583 -> 80584","Type":"Conventional","Directional":true,"Links":[{"SourceID":80583,"TargetID":80584,"Directional":true}]},{"ID":17249,"SourceStructureID":80588,"TargetStructureID":5530,"Label":"80588-5530 via Conventional from 80589 -> 42132","Type":"Conventional","Directional":true,"Links":[{"SourceID":80589,"TargetID":42132,"Directional":true}]},{"ID":17250,"SourceStructureID":80591,"TargetStructureID":68539,"Label":"80591-68539 via Conventional from 80594 -> 80590","Type":"Conventional","Directional":true,"Links":[{"SourceID":80594,"TargetID":80590,"Directional":true}]},{"ID":17251,"SourceStructureID":80596,"TargetStructureID":5530,"Label":"80596-5530 via Conventional from 80597 -> 42133","Type":"Conventional","Directional":true,"Links":[{"SourceID":80597,"TargetID":42133,"Directional":true}]},{"ID":17252,"SourceStructureID":80600,"TargetStructureID":89058,"Label":"80600-89058 via Conventional from 89057 -> 89060","Type":"Conventional","Directional":true,"Links":[{"SourceID":89057,"TargetID":89060,"Directional":true}]},{"ID":17253,"SourceStructureID":80604,"TargetStructureID":9769,"Label":"80604-9769 via Conventional from 80605 -> 29818","Type":"Conventional","Directional":true,"Links":[{"SourceID":80605,"TargetID":29818,"Directional":true}]},{"ID":17254,"SourceStructureID":80607,"TargetStructureID":142,"Label":"80607-142 via Conventional from 126237 -> 50238","Type":"Conventional","Directional":true,"Links":[{"SourceID":126237,"TargetID":50238,"Directional":true}]},{"ID":17255,"SourceStructureID":80607,"TargetStructureID":5530,"Label":"80607-5530 via Conventional from 80608 -> 46334","Type":"Conventional","Directional":true,"Links":[{"SourceID":80608,"TargetID":46334,"Directional":true}]},{"ID":17256,"SourceStructureID":80607,"TargetStructureID":80607,"Label":"80607-80607 via Conventional from 126053 -> 126054","Type":"Conventional","Directional":true,"Links":[{"SourceID":126053,"TargetID":126054,"Directional":true}]},{"ID":17257,"SourceStructureID":80609,"TargetStructureID":180,"Label":"80609-180 via Conventional from 133112 -> 133111","Type":"Conventional","Directional":true,"Links":[{"SourceID":133112,"TargetID":133111,"Directional":true}]},{"ID":17258,"SourceStructureID":80609,"TargetStructureID":10720,"Label":"80609-10720 via Conventional from 82470 -> 82469","Type":"Conventional","Directional":true,"Links":[{"SourceID":82470,"TargetID":82469,"Directional":true}]},{"ID":17259,"SourceStructureID":80646,"TargetStructureID":68286,"Label":"80646-68286 via Conventional from 80647 -> 68310","Type":"Conventional","Directional":true,"Links":[{"SourceID":80647,"TargetID":68310,"Directional":true}]},{"ID":17260,"SourceStructureID":80657,"TargetStructureID":68286,"Label":"80657-68286 via Conventional from 80658 -> 80656","Type":"Conventional","Directional":true,"Links":[{"SourceID":80658,"TargetID":80656,"Directional":true}]},{"ID":17261,"SourceStructureID":80665,"TargetStructureID":68286,"Label":"80665-68286 via Conventional from 80666 -> 80661","Type":"Conventional","Directional":true,"Links":[{"SourceID":80666,"TargetID":80661,"Directional":true}]},{"ID":17262,"SourceStructureID":80702,"TargetStructureID":5562,"Label":"80702-5562 via Conventional from 80703 -> 63310","Type":"Conventional","Directional":true,"Links":[{"SourceID":80703,"TargetID":63310,"Directional":true}]},{"ID":17263,"SourceStructureID":80710,"TargetStructureID":5530,"Label":"80710-5530 via Conventional from 80711 -> 80712","Type":"Conventional","Directional":true,"Links":[{"SourceID":80711,"TargetID":80712,"Directional":true}]},{"ID":17264,"SourceStructureID":80721,"TargetStructureID":61816,"Label":"80721-61816 via Conventional from 80722 -> 80723","Type":"Conventional","Directional":true,"Links":[{"SourceID":80722,"TargetID":80723,"Directional":true}]},{"ID":17265,"SourceStructureID":80734,"TargetStructureID":61816,"Label":"80734-61816 via Conventional from 80735 -> 80736","Type":"Conventional","Directional":true,"Links":[{"SourceID":80735,"TargetID":80736,"Directional":true}]},{"ID":17266,"SourceStructureID":80738,"TargetStructureID":61816,"Label":"80738-61816 via Conventional from 80739 -> 80740","Type":"Conventional","Directional":true,"Links":[{"SourceID":80739,"TargetID":80740,"Directional":true}]},{"ID":17267,"SourceStructureID":80741,"TargetStructureID":61816,"Label":"80741-61816 via Conventional from 80742 -> 80743","Type":"Conventional","Directional":true,"Links":[{"SourceID":80742,"TargetID":80743,"Directional":true}]},{"ID":17268,"SourceStructureID":80755,"TargetStructureID":32804,"Label":"80755-32804 via Ribbon Synapse from 80757 -> 80756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80757,"TargetID":80756,"Directional":true}]},{"ID":17269,"SourceStructureID":80755,"TargetStructureID":80772,"Label":"80755-80772 via Ribbon Synapse from 80771 -> 80773","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80771,"TargetID":80773,"Directional":true}]},{"ID":17270,"SourceStructureID":80764,"TargetStructureID":32654,"Label":"80764-32654 via Conventional from 80765 -> 80766","Type":"Conventional","Directional":true,"Links":[{"SourceID":80765,"TargetID":80766,"Directional":true}]},{"ID":17271,"SourceStructureID":80767,"TargetStructureID":32654,"Label":"80767-32654 via Conventional from 80768 -> 80769","Type":"Conventional","Directional":true,"Links":[{"SourceID":80768,"TargetID":80769,"Directional":true}]},{"ID":17272,"SourceStructureID":80779,"TargetStructureID":32654,"Label":"80779-32654 via Conventional from 80781 -> 80783","Type":"Conventional","Directional":true,"Links":[{"SourceID":80781,"TargetID":80783,"Directional":true}]},{"ID":17273,"SourceStructureID":80779,"TargetStructureID":80755,"Label":"80779-80755 via Conventional from 80780 -> 80782","Type":"Conventional","Directional":true,"Links":[{"SourceID":80780,"TargetID":80782,"Directional":true}]},{"ID":17274,"SourceStructureID":80784,"TargetStructureID":80755,"Label":"80784-80755 via Conventional from 80788 -> 80791","Type":"Conventional","Directional":true,"Links":[{"SourceID":80788,"TargetID":80791,"Directional":true}]},{"ID":17275,"SourceStructureID":80785,"TargetStructureID":80755,"Label":"80785-80755 via Conventional from 80789 -> 80790","Type":"Conventional","Directional":true,"Links":[{"SourceID":80789,"TargetID":80790,"Directional":true}]},{"ID":17276,"SourceStructureID":80786,"TargetStructureID":80784,"Label":"80786-80784 via Conventional from 80787 -> 80792","Type":"Conventional","Directional":true,"Links":[{"SourceID":80787,"TargetID":80792,"Directional":true}]},{"ID":17277,"SourceStructureID":80797,"TargetStructureID":5562,"Label":"80797-5562 via Conventional from 80798 -> 63318","Type":"Conventional","Directional":true,"Links":[{"SourceID":80798,"TargetID":63318,"Directional":true}]},{"ID":17278,"SourceStructureID":80806,"TargetStructureID":62325,"Label":"80806-62325 via Conventional from 80825 -> 80828, 80870 -> 80869","Type":"Conventional","Directional":true,"Links":[{"SourceID":80825,"TargetID":80828,"Directional":true},{"SourceID":80870,"TargetID":80869,"Directional":true}]},{"ID":17279,"SourceStructureID":80809,"TargetStructureID":5562,"Label":"80809-5562 via Conventional from 80810 -> 63319","Type":"Conventional","Directional":true,"Links":[{"SourceID":80810,"TargetID":63319,"Directional":true}]},{"ID":17280,"SourceStructureID":80814,"TargetStructureID":5562,"Label":"80814-5562 via Conventional from 80815 -> 63314","Type":"Conventional","Directional":true,"Links":[{"SourceID":80815,"TargetID":63314,"Directional":true}]},{"ID":17281,"SourceStructureID":80816,"TargetStructureID":5562,"Label":"80816-5562 via Conventional from 80817 -> 63313","Type":"Conventional","Directional":true,"Links":[{"SourceID":80817,"TargetID":63313,"Directional":true}]},{"ID":17282,"SourceStructureID":80833,"TargetStructureID":5562,"Label":"80833-5562 via Conventional from 80834 -> 80835","Type":"Conventional","Directional":true,"Links":[{"SourceID":80834,"TargetID":80835,"Directional":true}]},{"ID":17283,"SourceStructureID":80843,"TargetStructureID":5562,"Label":"80843-5562 via Conventional from 80844 -> 80845","Type":"Conventional","Directional":true,"Links":[{"SourceID":80844,"TargetID":80845,"Directional":true}]},{"ID":17284,"SourceStructureID":80853,"TargetStructureID":5562,"Label":"80853-5562 via Conventional from 80854 -> 63322","Type":"Conventional","Directional":true,"Links":[{"SourceID":80854,"TargetID":63322,"Directional":true}]},{"ID":17285,"SourceStructureID":80867,"TargetStructureID":5562,"Label":"80867-5562 via Conventional from 80868 -> 63326","Type":"Conventional","Directional":true,"Links":[{"SourceID":80868,"TargetID":63326,"Directional":true}]},{"ID":17286,"SourceStructureID":80879,"TargetStructureID":62325,"Label":"80879-62325 via Conventional from 80880 -> 80878","Type":"Conventional","Directional":true,"Links":[{"SourceID":80880,"TargetID":80878,"Directional":true}]},{"ID":17287,"SourceStructureID":80879,"TargetStructureID":80896,"Label":"80879-80896 via Conventional from 87117 -> 87119","Type":"Conventional","Directional":true,"Links":[{"SourceID":87117,"TargetID":87119,"Directional":true}]},{"ID":17288,"SourceStructureID":80889,"TargetStructureID":5562,"Label":"80889-5562 via Conventional from 80890 -> 63327","Type":"Conventional","Directional":true,"Links":[{"SourceID":80890,"TargetID":63327,"Directional":true}]},{"ID":17289,"SourceStructureID":80897,"TargetStructureID":5562,"Label":"80897-5562 via Conventional from 80898 -> 64193","Type":"Conventional","Directional":true,"Links":[{"SourceID":80898,"TargetID":64193,"Directional":true}]},{"ID":17290,"SourceStructureID":80900,"TargetStructureID":80856,"Label":"80900-80856 via Conventional from 82444 -> 82445","Type":"Conventional","Directional":true,"Links":[{"SourceID":82444,"TargetID":82445,"Directional":true}]},{"ID":17291,"SourceStructureID":80900,"TargetStructureID":82449,"Label":"80900-82449 via Conventional from 82448 -> 82450","Type":"Conventional","Directional":true,"Links":[{"SourceID":82448,"TargetID":82450,"Directional":true}]},{"ID":17292,"SourceStructureID":80904,"TargetStructureID":5562,"Label":"80904-5562 via Conventional from 80905 -> 64195","Type":"Conventional","Directional":true,"Links":[{"SourceID":80905,"TargetID":64195,"Directional":true}]},{"ID":17293,"SourceStructureID":80974,"TargetStructureID":5530,"Label":"80974-5530 via Conventional from 80976 -> 80975","Type":"Conventional","Directional":true,"Links":[{"SourceID":80976,"TargetID":80975,"Directional":true}]},{"ID":17294,"SourceStructureID":80980,"TargetStructureID":5530,"Label":"80980-5530 via Conventional from 80981 -> 42140","Type":"Conventional","Directional":true,"Links":[{"SourceID":80981,"TargetID":42140,"Directional":true}]},{"ID":17295,"SourceStructureID":80983,"TargetStructureID":5530,"Label":"80983-5530 via Conventional from 80986 -> 42142","Type":"Conventional","Directional":true,"Links":[{"SourceID":80986,"TargetID":42142,"Directional":true}]},{"ID":17296,"SourceStructureID":80989,"TargetStructureID":5530,"Label":"80989-5530 via Conventional from 80996 -> 42143","Type":"Conventional","Directional":true,"Links":[{"SourceID":80996,"TargetID":42143,"Directional":true}]},{"ID":17297,"SourceStructureID":80990,"TargetStructureID":5530,"Label":"80990-5530 via Conventional from 80999 -> 42144","Type":"Conventional","Directional":true,"Links":[{"SourceID":80999,"TargetID":42144,"Directional":true}]},{"ID":17298,"SourceStructureID":81003,"TargetStructureID":5530,"Label":"81003-5530 via Conventional from 81007 -> 42146","Type":"Conventional","Directional":true,"Links":[{"SourceID":81007,"TargetID":42146,"Directional":true}]},{"ID":17299,"SourceStructureID":81008,"TargetStructureID":5530,"Label":"81008-5530 via Conventional from 81009 -> 42150","Type":"Conventional","Directional":true,"Links":[{"SourceID":81009,"TargetID":42150,"Directional":true}]},{"ID":17300,"SourceStructureID":81017,"TargetStructureID":5530,"Label":"81017-5530 via Conventional from 81019 -> 81018","Type":"Conventional","Directional":true,"Links":[{"SourceID":81019,"TargetID":81018,"Directional":true}]},{"ID":17301,"SourceStructureID":81035,"TargetStructureID":32804,"Label":"81035-32804 via Conventional from 81036 -> 81034","Type":"Conventional","Directional":true,"Links":[{"SourceID":81036,"TargetID":81034,"Directional":true}]},{"ID":17302,"SourceStructureID":81042,"TargetStructureID":32654,"Label":"81042-32654 via Conventional from 81043 -> 81045, 81044 -> 81065","Type":"Conventional","Directional":true,"Links":[{"SourceID":81043,"TargetID":81045,"Directional":true},{"SourceID":81044,"TargetID":81065,"Directional":true}]},{"ID":17303,"SourceStructureID":81048,"TargetStructureID":32654,"Label":"81048-32654 via Conventional from 81049 -> 81050","Type":"Conventional","Directional":true,"Links":[{"SourceID":81049,"TargetID":81050,"Directional":true}]},{"ID":17304,"SourceStructureID":81051,"TargetStructureID":32654,"Label":"81051-32654 via Conventional from 81052 -> 81053","Type":"Conventional","Directional":true,"Links":[{"SourceID":81052,"TargetID":81053,"Directional":true}]},{"ID":17305,"SourceStructureID":81066,"TargetStructureID":32654,"Label":"81066-32654 via Conventional from 81067 -> 81068","Type":"Conventional","Directional":true,"Links":[{"SourceID":81067,"TargetID":81068,"Directional":true}]},{"ID":17306,"SourceStructureID":81069,"TargetStructureID":32654,"Label":"81069-32654 via Conventional from 81070 -> 81071","Type":"Conventional","Directional":true,"Links":[{"SourceID":81070,"TargetID":81071,"Directional":true}]},{"ID":17307,"SourceStructureID":81072,"TargetStructureID":32654,"Label":"81072-32654 via Conventional from 81073 -> 81074","Type":"Conventional","Directional":true,"Links":[{"SourceID":81073,"TargetID":81074,"Directional":true}]},{"ID":17308,"SourceStructureID":81075,"TargetStructureID":32654,"Label":"81075-32654 via Conventional from 81076 -> 81077","Type":"Conventional","Directional":true,"Links":[{"SourceID":81076,"TargetID":81077,"Directional":true}]},{"ID":17309,"SourceStructureID":81081,"TargetStructureID":32654,"Label":"81081-32654 via Conventional from 81082 -> 81083","Type":"Conventional","Directional":true,"Links":[{"SourceID":81082,"TargetID":81083,"Directional":true}]},{"ID":17310,"SourceStructureID":81089,"TargetStructureID":32804,"Label":"81089-32804 via Conventional from 81090 -> 32838","Type":"Conventional","Directional":true,"Links":[{"SourceID":81090,"TargetID":32838,"Directional":true}]},{"ID":17311,"SourceStructureID":81091,"TargetStructureID":32804,"Label":"81091-32804 via Conventional from 81092 -> 81093","Type":"Conventional","Directional":true,"Links":[{"SourceID":81092,"TargetID":81093,"Directional":true}]},{"ID":17312,"SourceStructureID":81095,"TargetStructureID":32804,"Label":"81095-32804 via Conventional from 81096 -> 81097","Type":"Conventional","Directional":true,"Links":[{"SourceID":81096,"TargetID":81097,"Directional":true}]},{"ID":17313,"SourceStructureID":81102,"TargetStructureID":9693,"Label":"81102-9693 via Conventional from 81103 -> 28221","Type":"Conventional","Directional":true,"Links":[{"SourceID":81103,"TargetID":28221,"Directional":true}]},{"ID":17314,"SourceStructureID":81120,"TargetStructureID":32804,"Label":"81120-32804 via Conventional from 81122 -> 32813","Type":"Conventional","Directional":true,"Links":[{"SourceID":81122,"TargetID":32813,"Directional":true}]},{"ID":17315,"SourceStructureID":81124,"TargetStructureID":32804,"Label":"81124-32804 via Conventional from 81125 -> 32812","Type":"Conventional","Directional":true,"Links":[{"SourceID":81125,"TargetID":32812,"Directional":true}]},{"ID":17316,"SourceStructureID":81130,"TargetStructureID":5522,"Label":"81130-5522 via Conventional from 81131 -> 64148","Type":"Conventional","Directional":true,"Links":[{"SourceID":81131,"TargetID":64148,"Directional":true}]},{"ID":17317,"SourceStructureID":81136,"TargetStructureID":5530,"Label":"81136-5530 via Conventional from 81137 -> 81138","Type":"Conventional","Directional":true,"Links":[{"SourceID":81137,"TargetID":81138,"Directional":true}]},{"ID":17318,"SourceStructureID":81146,"TargetStructureID":5562,"Label":"81146-5562 via Conventional from 81147 -> 81148","Type":"Conventional","Directional":true,"Links":[{"SourceID":81147,"TargetID":81148,"Directional":true}]},{"ID":17319,"SourceStructureID":81180,"TargetStructureID":5530,"Label":"81180-5530 via Conventional from 81181 -> 23860","Type":"Conventional","Directional":true,"Links":[{"SourceID":81181,"TargetID":23860,"Directional":true}]},{"ID":17320,"SourceStructureID":81187,"TargetStructureID":5530,"Label":"81187-5530 via Conventional from 81188 -> 81189","Type":"Conventional","Directional":true,"Links":[{"SourceID":81188,"TargetID":81189,"Directional":true}]},{"ID":17321,"SourceStructureID":81193,"TargetStructureID":5530,"Label":"81193-5530 via Conventional from 81194 -> 81195","Type":"Conventional","Directional":true,"Links":[{"SourceID":81194,"TargetID":81195,"Directional":true}]},{"ID":17322,"SourceStructureID":81196,"TargetStructureID":608,"Label":"81196-608 via Conventional from 81197 -> 59074","Type":"Conventional","Directional":true,"Links":[{"SourceID":81197,"TargetID":59074,"Directional":true}]},{"ID":17323,"SourceStructureID":81196,"TargetStructureID":39862,"Label":"81196-39862 via Conventional from 81198 -> 81199","Type":"Conventional","Directional":true,"Links":[{"SourceID":81198,"TargetID":81199,"Directional":true}]},{"ID":17324,"SourceStructureID":81200,"TargetStructureID":5530,"Label":"81200-5530 via Conventional from 81201 -> 81202","Type":"Conventional","Directional":true,"Links":[{"SourceID":81201,"TargetID":81202,"Directional":true}]},{"ID":17325,"SourceStructureID":81211,"TargetStructureID":5530,"Label":"81211-5530 via Conventional from 81212 -> 81213","Type":"Conventional","Directional":true,"Links":[{"SourceID":81212,"TargetID":81213,"Directional":true}]},{"ID":17326,"SourceStructureID":81223,"TargetStructureID":5530,"Label":"81223-5530 via Conventional from 81224 -> 81225","Type":"Conventional","Directional":true,"Links":[{"SourceID":81224,"TargetID":81225,"Directional":true}]},{"ID":17327,"SourceStructureID":81228,"TargetStructureID":5530,"Label":"81228-5530 via Conventional from 81229 -> 81230","Type":"Conventional","Directional":true,"Links":[{"SourceID":81229,"TargetID":81230,"Directional":true}]},{"ID":17328,"SourceStructureID":81234,"TargetStructureID":5530,"Label":"81234-5530 via Conventional from 81237 -> 81238","Type":"Conventional","Directional":true,"Links":[{"SourceID":81237,"TargetID":81238,"Directional":true}]},{"ID":17329,"SourceStructureID":81236,"TargetStructureID":62325,"Label":"81236-62325 via Conventional from 81242 -> 81245","Type":"Conventional","Directional":true,"Links":[{"SourceID":81242,"TargetID":81245,"Directional":true}]},{"ID":17330,"SourceStructureID":81267,"TargetStructureID":62325,"Label":"81267-62325 via Conventional from 81427 -> 81428","Type":"Conventional","Directional":true,"Links":[{"SourceID":81427,"TargetID":81428,"Directional":true}]},{"ID":17331,"SourceStructureID":81270,"TargetStructureID":62325,"Label":"81270-62325 via Conventional from 81271 -> 81272, 81414 -> 81415","Type":"Conventional","Directional":true,"Links":[{"SourceID":81271,"TargetID":81272,"Directional":true},{"SourceID":81414,"TargetID":81415,"Directional":true}]},{"ID":17332,"SourceStructureID":81287,"TargetStructureID":62325,"Label":"81287-62325 via Conventional from 81288 -> 81289","Type":"Conventional","Directional":true,"Links":[{"SourceID":81288,"TargetID":81289,"Directional":true}]},{"ID":17333,"SourceStructureID":81301,"TargetStructureID":62325,"Label":"81301-62325 via Conventional from 81329 -> 81330","Type":"Conventional","Directional":true,"Links":[{"SourceID":81329,"TargetID":81330,"Directional":true}]},{"ID":17334,"SourceStructureID":81321,"TargetStructureID":62325,"Label":"81321-62325 via Conventional from 81327 -> 81328","Type":"Conventional","Directional":true,"Links":[{"SourceID":81327,"TargetID":81328,"Directional":true}]},{"ID":17335,"SourceStructureID":81322,"TargetStructureID":62325,"Label":"81322-62325 via Conventional from 81325 -> 81326","Type":"Conventional","Directional":true,"Links":[{"SourceID":81325,"TargetID":81326,"Directional":true}]},{"ID":17336,"SourceStructureID":81331,"TargetStructureID":62325,"Label":"81331-62325 via Conventional from 81332 -> 81333","Type":"Conventional","Directional":true,"Links":[{"SourceID":81332,"TargetID":81333,"Directional":true}]},{"ID":17337,"SourceStructureID":81393,"TargetStructureID":61853,"Label":"81393-61853 via Conventional from 81394 -> 81395","Type":"Conventional","Directional":true,"Links":[{"SourceID":81394,"TargetID":81395,"Directional":true}]},{"ID":17338,"SourceStructureID":81399,"TargetStructureID":61853,"Label":"81399-61853 via Conventional from 81400 -> 81401","Type":"Conventional","Directional":true,"Links":[{"SourceID":81400,"TargetID":81401,"Directional":true}]},{"ID":17339,"SourceStructureID":81402,"TargetStructureID":61853,"Label":"81402-61853 via Conventional from 81403 -> 81404","Type":"Conventional","Directional":true,"Links":[{"SourceID":81403,"TargetID":81404,"Directional":true}]},{"ID":17340,"SourceStructureID":81405,"TargetStructureID":62325,"Label":"81405-62325 via Conventional from 81420 -> 81421","Type":"Conventional","Directional":true,"Links":[{"SourceID":81420,"TargetID":81421,"Directional":true}]},{"ID":17341,"SourceStructureID":81407,"TargetStructureID":62325,"Label":"81407-62325 via Conventional from 81410 -> 81411","Type":"Conventional","Directional":true,"Links":[{"SourceID":81410,"TargetID":81411,"Directional":true}]},{"ID":17342,"SourceStructureID":81433,"TargetStructureID":81430,"Label":"81433-81430 via Conventional from 81434 -> 81435","Type":"Conventional","Directional":true,"Links":[{"SourceID":81434,"TargetID":81435,"Directional":true}]},{"ID":17343,"SourceStructureID":81437,"TargetStructureID":61853,"Label":"81437-61853 via Conventional from 81438 -> 81439","Type":"Conventional","Directional":true,"Links":[{"SourceID":81438,"TargetID":81439,"Directional":true}]},{"ID":17344,"SourceStructureID":81440,"TargetStructureID":61853,"Label":"81440-61853 via Conventional from 81441 -> 81442","Type":"Conventional","Directional":true,"Links":[{"SourceID":81441,"TargetID":81442,"Directional":true}]},{"ID":17345,"SourceStructureID":81454,"TargetStructureID":485,"Label":"81454-485 via Conventional from 81456 -> 81458","Type":"Conventional","Directional":true,"Links":[{"SourceID":81456,"TargetID":81458,"Directional":true}]},{"ID":17346,"SourceStructureID":81454,"TargetStructureID":61960,"Label":"81454-61960 via Conventional from 81455 -> 81457","Type":"Conventional","Directional":true,"Links":[{"SourceID":81455,"TargetID":81457,"Directional":true}]},{"ID":17347,"SourceStructureID":81454,"TargetStructureID":81459,"Label":"81454-81459 via Conventional from 81462 -> 81463","Type":"Conventional","Directional":true,"Links":[{"SourceID":81462,"TargetID":81463,"Directional":true}]},{"ID":17348,"SourceStructureID":81459,"TargetStructureID":485,"Label":"81459-485 via Conventional from 81460 -> 81461","Type":"Conventional","Directional":true,"Links":[{"SourceID":81460,"TargetID":81461,"Directional":true}]},{"ID":17349,"SourceStructureID":81472,"TargetStructureID":61960,"Label":"81472-61960 via Conventional from 81473 -> 81474","Type":"Conventional","Directional":true,"Links":[{"SourceID":81473,"TargetID":81474,"Directional":true}]},{"ID":17350,"SourceStructureID":81476,"TargetStructureID":66768,"Label":"81476-66768 via Conventional from 81477 -> 81475","Type":"Conventional","Directional":true,"Links":[{"SourceID":81477,"TargetID":81475,"Directional":true}]},{"ID":17351,"SourceStructureID":81489,"TargetStructureID":483,"Label":"81489-483 via Conventional from 81490 -> 81491","Type":"Conventional","Directional":true,"Links":[{"SourceID":81490,"TargetID":81491,"Directional":true}]},{"ID":17352,"SourceStructureID":81494,"TargetStructureID":483,"Label":"81494-483 via Conventional from 81495 -> 81496","Type":"Conventional","Directional":true,"Links":[{"SourceID":81495,"TargetID":81496,"Directional":true}]},{"ID":17353,"SourceStructureID":81510,"TargetStructureID":165,"Label":"81510-165 via Conventional from 81511 -> 21710","Type":"Conventional","Directional":true,"Links":[{"SourceID":81511,"TargetID":21710,"Directional":true}]},{"ID":17354,"SourceStructureID":81528,"TargetStructureID":5284,"Label":"81528-5284 via Conventional from 81529 -> 81527","Type":"Conventional","Directional":true,"Links":[{"SourceID":81529,"TargetID":81527,"Directional":true}]},{"ID":17355,"SourceStructureID":81532,"TargetStructureID":909,"Label":"81532-909 via Conventional from 81536 -> 53806","Type":"Conventional","Directional":true,"Links":[{"SourceID":81536,"TargetID":53806,"Directional":true}]},{"ID":17356,"SourceStructureID":81532,"TargetStructureID":5284,"Label":"81532-5284 via Conventional from 81535 -> 81531","Type":"Conventional","Directional":true,"Links":[{"SourceID":81535,"TargetID":81531,"Directional":true}]},{"ID":17357,"SourceStructureID":81533,"TargetStructureID":5284,"Label":"81533-5284 via Conventional from 81534 -> 81530","Type":"Conventional","Directional":true,"Links":[{"SourceID":81534,"TargetID":81530,"Directional":true}]},{"ID":17358,"SourceStructureID":81544,"TargetStructureID":16026,"Label":"81544-16026 via Conventional from 81546 -> 25483","Type":"Conventional","Directional":true,"Links":[{"SourceID":81546,"TargetID":25483,"Directional":true}]},{"ID":17359,"SourceStructureID":81544,"TargetStructureID":67045,"Label":"81544-67045 via Conventional from 81545 -> 81543","Type":"Conventional","Directional":true,"Links":[{"SourceID":81545,"TargetID":81543,"Directional":true}]},{"ID":17360,"SourceStructureID":81552,"TargetStructureID":67045,"Label":"81552-67045 via Conventional from 81553 -> 81551","Type":"Conventional","Directional":true,"Links":[{"SourceID":81553,"TargetID":81551,"Directional":true}]},{"ID":17361,"SourceStructureID":81555,"TargetStructureID":67045,"Label":"81555-67045 via Conventional from 81556 -> 81554","Type":"Conventional","Directional":true,"Links":[{"SourceID":81556,"TargetID":81554,"Directional":true}]},{"ID":17362,"SourceStructureID":81559,"TargetStructureID":5530,"Label":"81559-5530 via Conventional from 81560 -> 81561","Type":"Conventional","Directional":true,"Links":[{"SourceID":81560,"TargetID":81561,"Directional":true}]},{"ID":17363,"SourceStructureID":81566,"TargetStructureID":5530,"Label":"81566-5530 via Conventional from 81580 -> 54065","Type":"Conventional","Directional":true,"Links":[{"SourceID":81580,"TargetID":54065,"Directional":true}]},{"ID":17364,"SourceStructureID":81569,"TargetStructureID":5530,"Label":"81569-5530 via Conventional from 81570 -> 54070","Type":"Conventional","Directional":true,"Links":[{"SourceID":81570,"TargetID":54070,"Directional":true}]},{"ID":17365,"SourceStructureID":81584,"TargetStructureID":5530,"Label":"81584-5530 via Conventional from 81592 -> 54068","Type":"Conventional","Directional":true,"Links":[{"SourceID":81592,"TargetID":54068,"Directional":true}]},{"ID":17366,"SourceStructureID":81605,"TargetStructureID":81607,"Label":"81605-81607 via Ribbon Synapse from 81606 -> 81608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81606,"TargetID":81608,"Directional":true}]},{"ID":17367,"SourceStructureID":81612,"TargetStructureID":5530,"Label":"81612-5530 via Conventional from 81613 -> 81614","Type":"Conventional","Directional":true,"Links":[{"SourceID":81613,"TargetID":81614,"Directional":true}]},{"ID":17368,"SourceStructureID":81615,"TargetStructureID":5530,"Label":"81615-5530 via Conventional from 81616 -> 81617","Type":"Conventional","Directional":true,"Links":[{"SourceID":81616,"TargetID":81617,"Directional":true}]},{"ID":17369,"SourceStructureID":81615,"TargetStructureID":133891,"Label":"81615-133891 via Conventional from 133901 -> 133900","Type":"Conventional","Directional":true,"Links":[{"SourceID":133901,"TargetID":133900,"Directional":true}]},{"ID":17370,"SourceStructureID":81622,"TargetStructureID":5530,"Label":"81622-5530 via Conventional from 81623 -> 81624","Type":"Conventional","Directional":true,"Links":[{"SourceID":81623,"TargetID":81624,"Directional":true}]},{"ID":17371,"SourceStructureID":81629,"TargetStructureID":5530,"Label":"81629-5530 via Conventional from 81630 -> 81631","Type":"Conventional","Directional":true,"Links":[{"SourceID":81630,"TargetID":81631,"Directional":true}]},{"ID":17372,"SourceStructureID":81633,"TargetStructureID":5530,"Label":"81633-5530 via Conventional from 81634 -> 81635","Type":"Conventional","Directional":true,"Links":[{"SourceID":81634,"TargetID":81635,"Directional":true}]},{"ID":17373,"SourceStructureID":81637,"TargetStructureID":5530,"Label":"81637-5530 via Conventional from 81638 -> 81639","Type":"Conventional","Directional":true,"Links":[{"SourceID":81638,"TargetID":81639,"Directional":true}]},{"ID":17374,"SourceStructureID":81640,"TargetStructureID":5530,"Label":"81640-5530 via Conventional from 81641 -> 52533","Type":"Conventional","Directional":true,"Links":[{"SourceID":81641,"TargetID":52533,"Directional":true}]},{"ID":17375,"SourceStructureID":81649,"TargetStructureID":5530,"Label":"81649-5530 via Conventional from 81654 -> 81655","Type":"Conventional","Directional":true,"Links":[{"SourceID":81654,"TargetID":81655,"Directional":true}]},{"ID":17376,"SourceStructureID":81651,"TargetStructureID":61960,"Label":"81651-61960 via Conventional from 81652 -> 81653","Type":"Conventional","Directional":true,"Links":[{"SourceID":81652,"TargetID":81653,"Directional":true}]},{"ID":17377,"SourceStructureID":81661,"TargetStructureID":5530,"Label":"81661-5530 via Conventional from 81668 -> 81669","Type":"Conventional","Directional":true,"Links":[{"SourceID":81668,"TargetID":81669,"Directional":true}]},{"ID":17378,"SourceStructureID":81667,"TargetStructureID":5649,"Label":"81667-5649 via Conventional from 81694 -> 81696, 81719 -> 81729, 108138 -> 108139","Type":"Conventional","Directional":true,"Links":[{"SourceID":81694,"TargetID":81696,"Directional":true},{"SourceID":81719,"TargetID":81729,"Directional":true},{"SourceID":108138,"TargetID":108139,"Directional":true}]},{"ID":17379,"SourceStructureID":81667,"TargetStructureID":81740,"Label":"81667-81740 via Conventional from 81739 -> 81741","Type":"Conventional","Directional":true,"Links":[{"SourceID":81739,"TargetID":81741,"Directional":true}]},{"ID":17380,"SourceStructureID":81667,"TargetStructureID":81753,"Label":"81667-81753 via Conventional from 81779 -> 81781","Type":"Conventional","Directional":true,"Links":[{"SourceID":81779,"TargetID":81781,"Directional":true}]},{"ID":17381,"SourceStructureID":81667,"TargetStructureID":104680,"Label":"81667-104680 via Conventional from 104686 -> 104685","Type":"Conventional","Directional":true,"Links":[{"SourceID":104686,"TargetID":104685,"Directional":true}]},{"ID":17382,"SourceStructureID":81674,"TargetStructureID":400,"Label":"81674-400 via Conventional from 81675 -> 81676","Type":"Conventional","Directional":true,"Links":[{"SourceID":81675,"TargetID":81676,"Directional":true}]},{"ID":17383,"SourceStructureID":81685,"TargetStructureID":61960,"Label":"81685-61960 via Conventional from 81686 -> 81687","Type":"Conventional","Directional":true,"Links":[{"SourceID":81686,"TargetID":81687,"Directional":true}]},{"ID":17384,"SourceStructureID":81690,"TargetStructureID":81667,"Label":"81690-81667 via Conventional from 81693 -> 81689","Type":"Conventional","Directional":true,"Links":[{"SourceID":81693,"TargetID":81689,"Directional":true}]},{"ID":17385,"SourceStructureID":81691,"TargetStructureID":81667,"Label":"81691-81667 via Conventional from 81692 -> 81688","Type":"Conventional","Directional":true,"Links":[{"SourceID":81692,"TargetID":81688,"Directional":true}]},{"ID":17386,"SourceStructureID":81701,"TargetStructureID":81667,"Label":"81701-81667 via Conventional from 81702 -> 81700","Type":"Conventional","Directional":true,"Links":[{"SourceID":81702,"TargetID":81700,"Directional":true}]},{"ID":17387,"SourceStructureID":81704,"TargetStructureID":81667,"Label":"81704-81667 via Conventional from 81705 -> 81703","Type":"Conventional","Directional":true,"Links":[{"SourceID":81705,"TargetID":81703,"Directional":true}]},{"ID":17388,"SourceStructureID":81708,"TargetStructureID":81667,"Label":"81708-81667 via Conventional from 81709 -> 81707","Type":"Conventional","Directional":true,"Links":[{"SourceID":81709,"TargetID":81707,"Directional":true}]},{"ID":17389,"SourceStructureID":81731,"TargetStructureID":81667,"Label":"81731-81667 via Conventional from 81732 -> 81730","Type":"Conventional","Directional":true,"Links":[{"SourceID":81732,"TargetID":81730,"Directional":true}]},{"ID":17390,"SourceStructureID":81735,"TargetStructureID":81667,"Label":"81735-81667 via Conventional from 81736 -> 81733","Type":"Conventional","Directional":true,"Links":[{"SourceID":81736,"TargetID":81733,"Directional":true}]},{"ID":17391,"SourceStructureID":81737,"TargetStructureID":81667,"Label":"81737-81667 via Conventional from 81738 -> 81734","Type":"Conventional","Directional":true,"Links":[{"SourceID":81738,"TargetID":81734,"Directional":true}]},{"ID":17392,"SourceStructureID":81743,"TargetStructureID":81667,"Label":"81743-81667 via Conventional from 81744 -> 81742","Type":"Conventional","Directional":true,"Links":[{"SourceID":81744,"TargetID":81742,"Directional":true}]},{"ID":17393,"SourceStructureID":81753,"TargetStructureID":81667,"Label":"81753-81667 via Ribbon Synapse from 81754 -> 81755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81754,"TargetID":81755,"Directional":true}]},{"ID":17394,"SourceStructureID":81758,"TargetStructureID":81667,"Label":"81758-81667 via Ribbon Synapse from 81759 -> 81757","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81759,"TargetID":81757,"Directional":true}]},{"ID":17395,"SourceStructureID":81763,"TargetStructureID":81667,"Label":"81763-81667 via Conventional from 81764 -> 81762","Type":"Conventional","Directional":true,"Links":[{"SourceID":81764,"TargetID":81762,"Directional":true}]},{"ID":17396,"SourceStructureID":81768,"TargetStructureID":81667,"Label":"81768-81667 via Conventional from 81769 -> 81767","Type":"Conventional","Directional":true,"Links":[{"SourceID":81769,"TargetID":81767,"Directional":true}]},{"ID":17397,"SourceStructureID":81783,"TargetStructureID":81667,"Label":"81783-81667 via Conventional from 81784 -> 81785","Type":"Conventional","Directional":true,"Links":[{"SourceID":81784,"TargetID":81785,"Directional":true}]},{"ID":17398,"SourceStructureID":81788,"TargetStructureID":81667,"Label":"81788-81667 via Conventional from 81789 -> 81787","Type":"Conventional","Directional":true,"Links":[{"SourceID":81789,"TargetID":81787,"Directional":true}]},{"ID":17399,"SourceStructureID":81799,"TargetStructureID":5562,"Label":"81799-5562 via Conventional from 81816 -> 77218, 81837 -> 63066, 81842 -> 31063","Type":"Conventional","Directional":true,"Links":[{"SourceID":81816,"TargetID":77218,"Directional":true},{"SourceID":81837,"TargetID":63066,"Directional":true},{"SourceID":81842,"TargetID":31063,"Directional":true}]},{"ID":17400,"SourceStructureID":81799,"TargetStructureID":81801,"Label":"81799-81801 via Conventional from 81800 -> 81802","Type":"Conventional","Directional":true,"Links":[{"SourceID":81800,"TargetID":81802,"Directional":true}]},{"ID":17401,"SourceStructureID":81799,"TargetStructureID":81820,"Label":"81799-81820 via Conventional from 81818 -> 81821","Type":"Conventional","Directional":true,"Links":[{"SourceID":81818,"TargetID":81821,"Directional":true}]},{"ID":17402,"SourceStructureID":81799,"TargetStructureID":81822,"Label":"81799-81822 via Conventional from 81819 -> 81823","Type":"Conventional","Directional":true,"Links":[{"SourceID":81819,"TargetID":81823,"Directional":true}]},{"ID":17403,"SourceStructureID":81804,"TargetStructureID":81799,"Label":"81804-81799 via Conventional from 81805 -> 81803","Type":"Conventional","Directional":true,"Links":[{"SourceID":81805,"TargetID":81803,"Directional":true}]},{"ID":17404,"SourceStructureID":81825,"TargetStructureID":81799,"Label":"81825-81799 via Conventional from 81826 -> 81824","Type":"Conventional","Directional":true,"Links":[{"SourceID":81826,"TargetID":81824,"Directional":true}]},{"ID":17405,"SourceStructureID":81831,"TargetStructureID":81799,"Label":"81831-81799 via Conventional from 81833 -> 81829","Type":"Conventional","Directional":true,"Links":[{"SourceID":81833,"TargetID":81829,"Directional":true}]},{"ID":17406,"SourceStructureID":81834,"TargetStructureID":81799,"Label":"81834-81799 via Conventional from 81836 -> 81835","Type":"Conventional","Directional":true,"Links":[{"SourceID":81836,"TargetID":81835,"Directional":true}]},{"ID":17407,"SourceStructureID":81839,"TargetStructureID":81799,"Label":"81839-81799 via Conventional from 81840 -> 81838","Type":"Conventional","Directional":true,"Links":[{"SourceID":81840,"TargetID":81838,"Directional":true}]},{"ID":17408,"SourceStructureID":81872,"TargetStructureID":5530,"Label":"81872-5530 via Conventional from 81873 -> 81874","Type":"Conventional","Directional":true,"Links":[{"SourceID":81873,"TargetID":81874,"Directional":true}]},{"ID":17409,"SourceStructureID":81882,"TargetStructureID":66401,"Label":"81882-66401 via Conventional from 81883 -> 81881","Type":"Conventional","Directional":true,"Links":[{"SourceID":81883,"TargetID":81881,"Directional":true}]},{"ID":17410,"SourceStructureID":81887,"TargetStructureID":5530,"Label":"81887-5530 via Conventional from 81888 -> 54072","Type":"Conventional","Directional":true,"Links":[{"SourceID":81888,"TargetID":54072,"Directional":true}]},{"ID":17411,"SourceStructureID":81916,"TargetStructureID":168,"Label":"81916-168 via Conventional from 81963 -> 81962","Type":"Conventional","Directional":true,"Links":[{"SourceID":81963,"TargetID":81962,"Directional":true}]},{"ID":17412,"SourceStructureID":81951,"TargetStructureID":168,"Label":"81951-168 via Conventional from 81954 -> 81955","Type":"Conventional","Directional":true,"Links":[{"SourceID":81954,"TargetID":81955,"Directional":true}]},{"ID":17413,"SourceStructureID":81974,"TargetStructureID":81975,"Label":"81974-81975 via Conventional from 81976 -> 81977","Type":"Conventional","Directional":true,"Links":[{"SourceID":81976,"TargetID":81977,"Directional":true}]},{"ID":17414,"SourceStructureID":81985,"TargetStructureID":61868,"Label":"81985-61868 via Conventional from 81986 -> 81987","Type":"Conventional","Directional":true,"Links":[{"SourceID":81986,"TargetID":81987,"Directional":true}]},{"ID":17415,"SourceStructureID":81996,"TargetStructureID":168,"Label":"81996-168 via Conventional from 81997 -> 4284","Type":"Conventional","Directional":true,"Links":[{"SourceID":81997,"TargetID":4284,"Directional":true}]},{"ID":17416,"SourceStructureID":82006,"TargetStructureID":168,"Label":"82006-168 via Conventional from 82007 -> 82008","Type":"Conventional","Directional":true,"Links":[{"SourceID":82007,"TargetID":82008,"Directional":true}]},{"ID":17417,"SourceStructureID":82021,"TargetStructureID":168,"Label":"82021-168 via Conventional from 82022 -> 33419","Type":"Conventional","Directional":true,"Links":[{"SourceID":82022,"TargetID":33419,"Directional":true}]},{"ID":17418,"SourceStructureID":82025,"TargetStructureID":168,"Label":"82025-168 via Conventional from 82026 -> 4238","Type":"Conventional","Directional":true,"Links":[{"SourceID":82026,"TargetID":4238,"Directional":true}]},{"ID":17419,"SourceStructureID":82029,"TargetStructureID":168,"Label":"82029-168 via Conventional from 82030 -> 82033, 82031 -> 82032","Type":"Conventional","Directional":true,"Links":[{"SourceID":82030,"TargetID":82033,"Directional":true},{"SourceID":82031,"TargetID":82032,"Directional":true}]},{"ID":17420,"SourceStructureID":82034,"TargetStructureID":168,"Label":"82034-168 via Conventional from 82035 -> 4232, 112216 -> 4302","Type":"Conventional","Directional":true,"Links":[{"SourceID":82035,"TargetID":4232,"Directional":true},{"SourceID":112216,"TargetID":4302,"Directional":true}]},{"ID":17421,"SourceStructureID":82034,"TargetStructureID":112211,"Label":"82034-112211 via Conventional from 112214 -> 112215","Type":"Conventional","Directional":true,"Links":[{"SourceID":112214,"TargetID":112215,"Directional":true}]},{"ID":17422,"SourceStructureID":82050,"TargetStructureID":5530,"Label":"82050-5530 via Conventional from 82051 -> 82052","Type":"Conventional","Directional":true,"Links":[{"SourceID":82051,"TargetID":82052,"Directional":true}]},{"ID":17423,"SourceStructureID":82057,"TargetStructureID":5530,"Label":"82057-5530 via Conventional from 82058 -> 54061","Type":"Conventional","Directional":true,"Links":[{"SourceID":82058,"TargetID":54061,"Directional":true}]},{"ID":17424,"SourceStructureID":82067,"TargetStructureID":5530,"Label":"82067-5530 via Conventional from 82068 -> 82069","Type":"Conventional","Directional":true,"Links":[{"SourceID":82068,"TargetID":82069,"Directional":true}]},{"ID":17425,"SourceStructureID":82077,"TargetStructureID":5530,"Label":"82077-5530 via Conventional from 82078 -> 82079","Type":"Conventional","Directional":true,"Links":[{"SourceID":82078,"TargetID":82079,"Directional":true}]},{"ID":17426,"SourceStructureID":82097,"TargetStructureID":82098,"Label":"82097-82098 via Conventional from 82099 -> 82100","Type":"Conventional","Directional":true,"Links":[{"SourceID":82099,"TargetID":82100,"Directional":true}]},{"ID":17427,"SourceStructureID":82130,"TargetStructureID":5410,"Label":"82130-5410 via Conventional from 82131 -> 82129","Type":"Conventional","Directional":true,"Links":[{"SourceID":82131,"TargetID":82129,"Directional":true}]},{"ID":17428,"SourceStructureID":82143,"TargetStructureID":82149,"Label":"82143-82149 via Conventional from 82148 -> 82150","Type":"Conventional","Directional":true,"Links":[{"SourceID":82148,"TargetID":82150,"Directional":true}]},{"ID":17429,"SourceStructureID":82164,"TargetStructureID":5410,"Label":"82164-5410 via Conventional from 82165 -> 82163","Type":"Conventional","Directional":true,"Links":[{"SourceID":82165,"TargetID":82163,"Directional":true}]},{"ID":17430,"SourceStructureID":82172,"TargetStructureID":82177,"Label":"82172-82177 via Conventional from 82175 -> 82179","Type":"Conventional","Directional":true,"Links":[{"SourceID":82175,"TargetID":82179,"Directional":true}]},{"ID":17431,"SourceStructureID":82172,"TargetStructureID":82181,"Label":"82172-82181 via Conventional from 82173 -> 82182","Type":"Conventional","Directional":true,"Links":[{"SourceID":82173,"TargetID":82182,"Directional":true}]},{"ID":17432,"SourceStructureID":82252,"TargetStructureID":6047,"Label":"82252-6047 via Conventional from 82253 -> 19627","Type":"Conventional","Directional":true,"Links":[{"SourceID":82253,"TargetID":19627,"Directional":true}]},{"ID":17433,"SourceStructureID":82271,"TargetStructureID":593,"Label":"82271-593 via Conventional from 82279 -> 68066","Type":"Conventional","Directional":true,"Links":[{"SourceID":82279,"TargetID":68066,"Directional":true}]},{"ID":17434,"SourceStructureID":82271,"TargetStructureID":8588,"Label":"82271-8588 via Conventional from 82274 -> 82275","Type":"Conventional","Directional":true,"Links":[{"SourceID":82274,"TargetID":82275,"Directional":true}]},{"ID":17435,"SourceStructureID":82271,"TargetStructureID":68393,"Label":"82271-68393 via Conventional from 82273 -> 82220","Type":"Conventional","Directional":true,"Links":[{"SourceID":82273,"TargetID":82220,"Directional":true}]},{"ID":17436,"SourceStructureID":82271,"TargetStructureID":80563,"Label":"82271-80563 via Conventional from 82272 -> 80565","Type":"Conventional","Directional":true,"Links":[{"SourceID":82272,"TargetID":80565,"Directional":true}]},{"ID":17437,"SourceStructureID":82289,"TargetStructureID":68238,"Label":"82289-68238 via Conventional from 82290 -> 82288","Type":"Conventional","Directional":true,"Links":[{"SourceID":82290,"TargetID":82288,"Directional":true}]},{"ID":17438,"SourceStructureID":82305,"TargetStructureID":16026,"Label":"82305-16026 via Conventional from 82328 -> 25663, 82332 -> 25492","Type":"Conventional","Directional":true,"Links":[{"SourceID":82328,"TargetID":25663,"Directional":true},{"SourceID":82332,"TargetID":25492,"Directional":true}]},{"ID":17439,"SourceStructureID":82305,"TargetStructureID":31161,"Label":"82305-31161 via Conventional from 82309 -> 31248","Type":"Conventional","Directional":true,"Links":[{"SourceID":82309,"TargetID":31248,"Directional":true}]},{"ID":17440,"SourceStructureID":82305,"TargetStructureID":66888,"Label":"82305-66888 via Conventional from 82320 -> 68221","Type":"Conventional","Directional":true,"Links":[{"SourceID":82320,"TargetID":68221,"Directional":true}]},{"ID":17441,"SourceStructureID":82305,"TargetStructureID":82318,"Label":"82305-82318 via Conventional from 82317 -> 82319","Type":"Conventional","Directional":true,"Links":[{"SourceID":82317,"TargetID":82319,"Directional":true}]},{"ID":17442,"SourceStructureID":82307,"TargetStructureID":82305,"Label":"82307-82305 via Conventional from 82308 -> 82306","Type":"Conventional","Directional":true,"Links":[{"SourceID":82308,"TargetID":82306,"Directional":true}]},{"ID":17443,"SourceStructureID":82343,"TargetStructureID":593,"Label":"82343-593 via Conventional from 82344 -> 82345","Type":"Conventional","Directional":true,"Links":[{"SourceID":82344,"TargetID":82345,"Directional":true}]},{"ID":17444,"SourceStructureID":82353,"TargetStructureID":390,"Label":"82353-390 via Ribbon Synapse from 121983 -> 121984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121983,"TargetID":121984,"Directional":true}]},{"ID":17445,"SourceStructureID":82396,"TargetStructureID":65375,"Label":"82396-65375 via Conventional from 82397 -> 82398","Type":"Conventional","Directional":true,"Links":[{"SourceID":82397,"TargetID":82398,"Directional":true}]},{"ID":17446,"SourceStructureID":82430,"TargetStructureID":67182,"Label":"82430-67182 via Ribbon Synapse from 82865 -> 82866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82865,"TargetID":82866,"Directional":true}]},{"ID":17447,"SourceStructureID":82430,"TargetStructureID":67529,"Label":"82430-67529 via Ribbon Synapse from 82865 -> 82867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82865,"TargetID":82867,"Directional":true}]},{"ID":17448,"SourceStructureID":82430,"TargetStructureID":82868,"Label":"82430-82868 via Ribbon Synapse from 82865 -> 82869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82865,"TargetID":82869,"Directional":true}]},{"ID":17449,"SourceStructureID":82569,"TargetStructureID":5531,"Label":"82569-5531 via Conventional from 105217 -> 105218","Type":"Conventional","Directional":true,"Links":[{"SourceID":105217,"TargetID":105218,"Directional":true}]},{"ID":17450,"SourceStructureID":82622,"TargetStructureID":6115,"Label":"82622-6115 via Conventional from 82623 -> 82624","Type":"Conventional","Directional":true,"Links":[{"SourceID":82623,"TargetID":82624,"Directional":true}]},{"ID":17451,"SourceStructureID":82634,"TargetStructureID":5528,"Label":"82634-5528 via Conventional from 94399 -> 94400","Type":"Conventional","Directional":true,"Links":[{"SourceID":94399,"TargetID":94400,"Directional":true}]},{"ID":17452,"SourceStructureID":82643,"TargetStructureID":5528,"Label":"82643-5528 via Conventional from 94405 -> 94406","Type":"Conventional","Directional":true,"Links":[{"SourceID":94405,"TargetID":94406,"Directional":true}]},{"ID":17453,"SourceStructureID":82644,"TargetStructureID":16087,"Label":"82644-16087 via Conventional from 82649 -> 82650","Type":"Conventional","Directional":true,"Links":[{"SourceID":82649,"TargetID":82650,"Directional":true}]},{"ID":17454,"SourceStructureID":82653,"TargetStructureID":6115,"Label":"82653-6115 via Conventional from 82654 -> 82655","Type":"Conventional","Directional":true,"Links":[{"SourceID":82654,"TargetID":82655,"Directional":true}]},{"ID":17455,"SourceStructureID":82665,"TargetStructureID":6115,"Label":"82665-6115 via Conventional from 82666 -> 82663","Type":"Conventional","Directional":true,"Links":[{"SourceID":82666,"TargetID":82663,"Directional":true}]},{"ID":17456,"SourceStructureID":82677,"TargetStructureID":83635,"Label":"82677-83635 via Ribbon Synapse from 83634 -> 83658","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83634,"TargetID":83658,"Directional":true}]},{"ID":17457,"SourceStructureID":82677,"TargetStructureID":83638,"Label":"82677-83638 via Ribbon Synapse from 83642 -> 83641","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83642,"TargetID":83641,"Directional":true}]},{"ID":17458,"SourceStructureID":82677,"TargetStructureID":83659,"Label":"82677-83659 via Ribbon Synapse from 83634 -> 83660","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83634,"TargetID":83660,"Directional":true}]},{"ID":17459,"SourceStructureID":82677,"TargetStructureID":83668,"Label":"82677-83668 via BC Conventional Synapse from 83671 -> 83669","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":83671,"TargetID":83669,"Directional":true}]},{"ID":17460,"SourceStructureID":82677,"TargetStructureID":83691,"Label":"82677-83691 via Ribbon Synapse from 83677 -> 83692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83677,"TargetID":83692,"Directional":true}]},{"ID":17461,"SourceStructureID":82677,"TargetStructureID":83712,"Label":"82677-83712 via Ribbon Synapse from 83701 -> 83713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83701,"TargetID":83713,"Directional":true}]},{"ID":17462,"SourceStructureID":82677,"TargetStructureID":83725,"Label":"82677-83725 via Ribbon Synapse from 83724 -> 83726","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83724,"TargetID":83726,"Directional":true}]},{"ID":17463,"SourceStructureID":82677,"TargetStructureID":83733,"Label":"82677-83733 via Ribbon Synapse from 83732 -> 83737","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83732,"TargetID":83737,"Directional":true}]},{"ID":17464,"SourceStructureID":82677,"TargetStructureID":83735,"Label":"82677-83735 via Ribbon Synapse from 83732 -> 83738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83732,"TargetID":83738,"Directional":true}]},{"ID":17465,"SourceStructureID":82677,"TargetStructureID":83739,"Label":"82677-83739 via Ribbon Synapse from 83732 -> 83740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83732,"TargetID":83740,"Directional":true}]},{"ID":17466,"SourceStructureID":82677,"TargetStructureID":83746,"Label":"82677-83746 via Ribbon Synapse from 83745 -> 83751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83745,"TargetID":83751,"Directional":true}]},{"ID":17467,"SourceStructureID":82677,"TargetStructureID":83747,"Label":"82677-83747 via Ribbon Synapse from 83745 -> 83750","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83745,"TargetID":83750,"Directional":true}]},{"ID":17468,"SourceStructureID":82677,"TargetStructureID":83767,"Label":"82677-83767 via Ribbon Synapse from 83766 -> 83770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83766,"TargetID":83770,"Directional":true}]},{"ID":17469,"SourceStructureID":82677,"TargetStructureID":83793,"Label":"82677-83793 via Ribbon Synapse from 83792 -> 83796","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83792,"TargetID":83796,"Directional":true}]},{"ID":17470,"SourceStructureID":82677,"TargetStructureID":83798,"Label":"82677-83798 via Ribbon Synapse from 83792 -> 83799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83792,"TargetID":83799,"Directional":true}]},{"ID":17471,"SourceStructureID":82677,"TargetStructureID":83808,"Label":"82677-83808 via Cistern Pre from 83813 -> 83814","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":83813,"TargetID":83814,"Directional":true}]},{"ID":17472,"SourceStructureID":82677,"TargetStructureID":83819,"Label":"82677-83819 via Ribbon Synapse from 83818 -> 83822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83818,"TargetID":83822,"Directional":true}]},{"ID":17473,"SourceStructureID":82677,"TargetStructureID":83820,"Label":"82677-83820 via Ribbon Synapse from 83818 -> 83821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83818,"TargetID":83821,"Directional":true}]},{"ID":17474,"SourceStructureID":82677,"TargetStructureID":83828,"Label":"82677-83828 via Ribbon Synapse from 83826 -> 83830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83826,"TargetID":83830,"Directional":true}]},{"ID":17475,"SourceStructureID":82677,"TargetStructureID":83846,"Label":"82677-83846 via Ribbon Synapse from 83841 -> 83851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83841,"TargetID":83851,"Directional":true}]},{"ID":17476,"SourceStructureID":82677,"TargetStructureID":83852,"Label":"82677-83852 via Ribbon Synapse from 83841 -> 83853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83841,"TargetID":83853,"Directional":true}]},{"ID":17477,"SourceStructureID":82677,"TargetStructureID":83857,"Label":"82677-83857 via Ribbon Synapse from 83856 -> 83858","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83856,"TargetID":83858,"Directional":true}]},{"ID":17478,"SourceStructureID":82677,"TargetStructureID":83865,"Label":"82677-83865 via Ribbon Synapse from 83868 -> 83867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83868,"TargetID":83867,"Directional":true}]},{"ID":17479,"SourceStructureID":82677,"TargetStructureID":83866,"Label":"82677-83866 via BC Conventional Synapse from 83877 -> 83872","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":83877,"TargetID":83872,"Directional":true}]},{"ID":17480,"SourceStructureID":82677,"TargetStructureID":83870,"Label":"82677-83870 via Ribbon Synapse from 83864 -> 83871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83864,"TargetID":83871,"Directional":true}]},{"ID":17481,"SourceStructureID":82677,"TargetStructureID":83873,"Label":"82677-83873 via Ribbon Synapse from 83864 -> 83874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83864,"TargetID":83874,"Directional":true}]},{"ID":17482,"SourceStructureID":82677,"TargetStructureID":83882,"Label":"82677-83882 via Ribbon Synapse from 83885 -> 83888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83885,"TargetID":83888,"Directional":true}]},{"ID":17483,"SourceStructureID":82677,"TargetStructureID":83988,"Label":"82677-83988 via BC Conventional Synapse from 83987 -> 83989","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":83987,"TargetID":83989,"Directional":true}]},{"ID":17484,"SourceStructureID":82677,"TargetStructureID":83992,"Label":"82677-83992 via Ribbon Synapse from 83991 -> 83994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83991,"TargetID":83994,"Directional":true}]},{"ID":17485,"SourceStructureID":82677,"TargetStructureID":83995,"Label":"82677-83995 via Ribbon Synapse from 83991 -> 83998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83991,"TargetID":83998,"Directional":true}]},{"ID":17486,"SourceStructureID":82677,"TargetStructureID":83996,"Label":"82677-83996 via Ribbon Synapse from 83990 -> 84007, 83991 -> 83997","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83990,"TargetID":84007,"Directional":true},{"SourceID":83991,"TargetID":83997,"Directional":true}]},{"ID":17487,"SourceStructureID":82677,"TargetStructureID":83999,"Label":"82677-83999 via Ribbon Synapse from 83990 -> 84005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83990,"TargetID":84005,"Directional":true}]},{"ID":17488,"SourceStructureID":82677,"TargetStructureID":84004,"Label":"82677-84004 via Ribbon Synapse from 83990 -> 84006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83990,"TargetID":84006,"Directional":true}]},{"ID":17489,"SourceStructureID":82677,"TargetStructureID":84008,"Label":"82677-84008 via Ribbon Synapse from 84014 -> 84011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84014,"TargetID":84011,"Directional":true}]},{"ID":17490,"SourceStructureID":82677,"TargetStructureID":84012,"Label":"82677-84012 via Ribbon Synapse from 84014 -> 84013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84014,"TargetID":84013,"Directional":true}]},{"ID":17491,"SourceStructureID":82677,"TargetStructureID":84024,"Label":"82677-84024 via Ribbon Synapse from 84015 -> 84025, 84015 -> 84026","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84015,"TargetID":84025,"Directional":true},{"SourceID":84015,"TargetID":84026,"Directional":true}]},{"ID":17492,"SourceStructureID":82677,"TargetStructureID":84052,"Label":"82677-84052 via BC Conventional Synapse from 84054 -> 84053","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84054,"TargetID":84053,"Directional":true}]},{"ID":17493,"SourceStructureID":82677,"TargetStructureID":84083,"Label":"82677-84083 via Ribbon Synapse from 84104 -> 84112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84104,"TargetID":84112,"Directional":true}]},{"ID":17494,"SourceStructureID":82677,"TargetStructureID":84088,"Label":"82677-84088 via Ribbon Synapse from 84056 -> 84092","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84056,"TargetID":84092,"Directional":true}]},{"ID":17495,"SourceStructureID":82677,"TargetStructureID":84095,"Label":"82677-84095 via BC Conventional Synapse from 84100 -> 84101","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84100,"TargetID":84101,"Directional":true}]},{"ID":17496,"SourceStructureID":82677,"TargetStructureID":84108,"Label":"82677-84108 via Ribbon Synapse from 84104 -> 84109","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84104,"TargetID":84109,"Directional":true}]},{"ID":17497,"SourceStructureID":82677,"TargetStructureID":84110,"Label":"82677-84110 via Ribbon Synapse from 84104 -> 84111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84104,"TargetID":84111,"Directional":true}]},{"ID":17498,"SourceStructureID":82677,"TargetStructureID":84125,"Label":"82677-84125 via Ribbon Synapse from 84124 -> 84126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84124,"TargetID":84126,"Directional":true}]},{"ID":17499,"SourceStructureID":82678,"TargetStructureID":6115,"Label":"82678-6115 via Conventional from 82679 -> 82681","Type":"Conventional","Directional":true,"Links":[{"SourceID":82679,"TargetID":82681,"Directional":true}]},{"ID":17500,"SourceStructureID":82692,"TargetStructureID":5530,"Label":"82692-5530 via Conventional from 134549 -> 134550","Type":"Conventional","Directional":true,"Links":[{"SourceID":134549,"TargetID":134550,"Directional":true}]},{"ID":17501,"SourceStructureID":82692,"TargetStructureID":82677,"Label":"82692-82677 via Conventional from 83694 -> 83693","Type":"Conventional","Directional":true,"Links":[{"SourceID":83694,"TargetID":83693,"Directional":true}]},{"ID":17502,"SourceStructureID":82717,"TargetStructureID":67460,"Label":"82717-67460 via Conventional from 82718 -> 82716","Type":"Conventional","Directional":true,"Links":[{"SourceID":82718,"TargetID":82716,"Directional":true}]},{"ID":17503,"SourceStructureID":82723,"TargetStructureID":67460,"Label":"82723-67460 via Conventional from 82725 -> 82726","Type":"Conventional","Directional":true,"Links":[{"SourceID":82725,"TargetID":82726,"Directional":true}]},{"ID":17504,"SourceStructureID":82737,"TargetStructureID":66828,"Label":"82737-66828 via Conventional from 82738 -> 82739","Type":"Conventional","Directional":true,"Links":[{"SourceID":82738,"TargetID":82739,"Directional":true}]},{"ID":17505,"SourceStructureID":82743,"TargetStructureID":82753,"Label":"82743-82753 via Conventional from 82759 -> 82760","Type":"Conventional","Directional":true,"Links":[{"SourceID":82759,"TargetID":82760,"Directional":true}]},{"ID":17506,"SourceStructureID":82743,"TargetStructureID":82761,"Label":"82743-82761 via Conventional from 82762 -> 82763","Type":"Conventional","Directional":true,"Links":[{"SourceID":82762,"TargetID":82763,"Directional":true}]},{"ID":17507,"SourceStructureID":82743,"TargetStructureID":82766,"Label":"82743-82766 via Conventional from 82767 -> 82768","Type":"Conventional","Directional":true,"Links":[{"SourceID":82767,"TargetID":82768,"Directional":true}]},{"ID":17508,"SourceStructureID":82743,"TargetStructureID":82796,"Label":"82743-82796 via Conventional from 82798 -> 82799","Type":"Conventional","Directional":true,"Links":[{"SourceID":82798,"TargetID":82799,"Directional":true}]},{"ID":17509,"SourceStructureID":82746,"TargetStructureID":82743,"Label":"82746-82743 via Conventional from 82747 -> 82748","Type":"Conventional","Directional":true,"Links":[{"SourceID":82747,"TargetID":82748,"Directional":true}]},{"ID":17510,"SourceStructureID":82753,"TargetStructureID":6050,"Label":"82753-6050 via Conventional from 127058 -> 19300","Type":"Conventional","Directional":true,"Links":[{"SourceID":127058,"TargetID":19300,"Directional":true}]},{"ID":17511,"SourceStructureID":82792,"TargetStructureID":82743,"Label":"82792-82743 via Conventional from 82793 -> 82794","Type":"Conventional","Directional":true,"Links":[{"SourceID":82793,"TargetID":82794,"Directional":true}]},{"ID":17512,"SourceStructureID":82804,"TargetStructureID":50449,"Label":"82804-50449 via Conventional from 82805 -> 50510","Type":"Conventional","Directional":true,"Links":[{"SourceID":82805,"TargetID":50510,"Directional":true}]},{"ID":17513,"SourceStructureID":82806,"TargetStructureID":67305,"Label":"82806-67305 via Conventional from 82808 -> 82809","Type":"Conventional","Directional":true,"Links":[{"SourceID":82808,"TargetID":82809,"Directional":true}]},{"ID":17514,"SourceStructureID":82813,"TargetStructureID":67305,"Label":"82813-67305 via Ribbon Synapse from 82815 -> 82816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82815,"TargetID":82816,"Directional":true}]},{"ID":17515,"SourceStructureID":82813,"TargetStructureID":82817,"Label":"82813-82817 via Ribbon Synapse from 82815 -> 82818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82815,"TargetID":82818,"Directional":true}]},{"ID":17516,"SourceStructureID":82813,"TargetStructureID":82819,"Label":"82813-82819 via Ribbon Synapse from 82815 -> 82820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82815,"TargetID":82820,"Directional":true}]},{"ID":17517,"SourceStructureID":82877,"TargetStructureID":606,"Label":"82877-606 via Conventional from 92432 -> 53561","Type":"Conventional","Directional":true,"Links":[{"SourceID":92432,"TargetID":53561,"Directional":true}]},{"ID":17518,"SourceStructureID":82887,"TargetStructureID":5528,"Label":"82887-5528 via Conventional from 87134 -> 87135, 113997 -> 113996","Type":"Conventional","Directional":true,"Links":[{"SourceID":87134,"TargetID":87135,"Directional":true},{"SourceID":113997,"TargetID":113996,"Directional":true}]},{"ID":17519,"SourceStructureID":82897,"TargetStructureID":5528,"Label":"82897-5528 via Conventional from 94814 -> 94815","Type":"Conventional","Directional":true,"Links":[{"SourceID":94814,"TargetID":94815,"Directional":true}]},{"ID":17520,"SourceStructureID":82897,"TargetStructureID":5531,"Label":"82897-5531 via Conventional from 114828 -> 114829","Type":"Conventional","Directional":true,"Links":[{"SourceID":114828,"TargetID":114829,"Directional":true}]},{"ID":17521,"SourceStructureID":82907,"TargetStructureID":11042,"Label":"82907-11042 via Conventional from 82915 -> 82916","Type":"Conventional","Directional":true,"Links":[{"SourceID":82915,"TargetID":82916,"Directional":true}]},{"ID":17522,"SourceStructureID":82907,"TargetStructureID":82912,"Label":"82907-82912 via Conventional from 82913 -> 82914","Type":"Conventional","Directional":true,"Links":[{"SourceID":82913,"TargetID":82914,"Directional":true}]},{"ID":17523,"SourceStructureID":82908,"TargetStructureID":82907,"Label":"82908-82907 via Conventional from 82909 -> 82910","Type":"Conventional","Directional":true,"Links":[{"SourceID":82909,"TargetID":82910,"Directional":true}]},{"ID":17524,"SourceStructureID":82919,"TargetStructureID":67182,"Label":"82919-67182 via Conventional from 82920 -> 82918","Type":"Conventional","Directional":true,"Links":[{"SourceID":82920,"TargetID":82918,"Directional":true}]},{"ID":17525,"SourceStructureID":82922,"TargetStructureID":82919,"Label":"82922-82919 via Conventional from 82923 -> 82921","Type":"Conventional","Directional":true,"Links":[{"SourceID":82923,"TargetID":82921,"Directional":true}]},{"ID":17526,"SourceStructureID":82974,"TargetStructureID":72252,"Label":"82974-72252 via Conventional from 82975 -> 82989","Type":"Conventional","Directional":true,"Links":[{"SourceID":82975,"TargetID":82989,"Directional":true}]},{"ID":17527,"SourceStructureID":82977,"TargetStructureID":72252,"Label":"82977-72252 via Conventional from 82980 -> 82981","Type":"Conventional","Directional":true,"Links":[{"SourceID":82980,"TargetID":82981,"Directional":true}]},{"ID":17528,"SourceStructureID":82985,"TargetStructureID":39319,"Label":"82985-39319 via Conventional from 82987 -> 39685","Type":"Conventional","Directional":true,"Links":[{"SourceID":82987,"TargetID":39685,"Directional":true}]},{"ID":17529,"SourceStructureID":82985,"TargetStructureID":72252,"Label":"82985-72252 via Conventional from 82986 -> 82988","Type":"Conventional","Directional":true,"Links":[{"SourceID":82986,"TargetID":82988,"Directional":true}]},{"ID":17530,"SourceStructureID":83056,"TargetStructureID":608,"Label":"83056-608 via Conventional from 83312 -> 77007","Type":"Conventional","Directional":true,"Links":[{"SourceID":83312,"TargetID":77007,"Directional":true}]},{"ID":17531,"SourceStructureID":83056,"TargetStructureID":67150,"Label":"83056-67150 via Conventional from 83057 -> 83058","Type":"Conventional","Directional":true,"Links":[{"SourceID":83057,"TargetID":83058,"Directional":true}]},{"ID":17532,"SourceStructureID":83056,"TargetStructureID":83619,"Label":"83056-83619 via Conventional from 83621 -> 83622","Type":"Conventional","Directional":true,"Links":[{"SourceID":83621,"TargetID":83622,"Directional":true}]},{"ID":17533,"SourceStructureID":83060,"TargetStructureID":5485,"Label":"83060-5485 via Conventional from 83061 -> 9491","Type":"Conventional","Directional":true,"Links":[{"SourceID":83061,"TargetID":9491,"Directional":true}]},{"ID":17534,"SourceStructureID":83127,"TargetStructureID":6117,"Label":"83127-6117 via Conventional from 83128 -> 30866","Type":"Conventional","Directional":true,"Links":[{"SourceID":83128,"TargetID":30866,"Directional":true}]},{"ID":17535,"SourceStructureID":83147,"TargetStructureID":6117,"Label":"83147-6117 via Conventional from 83151 -> 83152","Type":"Conventional","Directional":true,"Links":[{"SourceID":83151,"TargetID":83152,"Directional":true}]},{"ID":17536,"SourceStructureID":83147,"TargetStructureID":70466,"Label":"83147-70466 via Conventional from 83148 -> 83149","Type":"Conventional","Directional":true,"Links":[{"SourceID":83148,"TargetID":83149,"Directional":true}]},{"ID":17537,"SourceStructureID":83157,"TargetStructureID":6117,"Label":"83157-6117 via Conventional from 83158 -> 83159","Type":"Conventional","Directional":true,"Links":[{"SourceID":83158,"TargetID":83159,"Directional":true}]},{"ID":17538,"SourceStructureID":83163,"TargetStructureID":83190,"Label":"83163-83190 via Conventional from 83189 -> 83191","Type":"Conventional","Directional":true,"Links":[{"SourceID":83189,"TargetID":83191,"Directional":true}]},{"ID":17539,"SourceStructureID":83165,"TargetStructureID":5279,"Label":"83165-5279 via Conventional from 96481 -> 6336","Type":"Conventional","Directional":true,"Links":[{"SourceID":96481,"TargetID":6336,"Directional":true}]},{"ID":17540,"SourceStructureID":83165,"TargetStructureID":83194,"Label":"83165-83194 via Conventional from 83193 -> 83195","Type":"Conventional","Directional":true,"Links":[{"SourceID":83193,"TargetID":83195,"Directional":true}]},{"ID":17541,"SourceStructureID":83179,"TargetStructureID":9769,"Label":"83179-9769 via Ribbon Synapse from 83180 -> 83181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83180,"TargetID":83181,"Directional":true}]},{"ID":17542,"SourceStructureID":83222,"TargetStructureID":6117,"Label":"83222-6117 via Conventional from 83223 -> 83224","Type":"Conventional","Directional":true,"Links":[{"SourceID":83223,"TargetID":83224,"Directional":true}]},{"ID":17543,"SourceStructureID":83238,"TargetStructureID":6117,"Label":"83238-6117 via Conventional from 83239 -> 83240","Type":"Conventional","Directional":true,"Links":[{"SourceID":83239,"TargetID":83240,"Directional":true}]},{"ID":17544,"SourceStructureID":83241,"TargetStructureID":6117,"Label":"83241-6117 via Conventional from 83242 -> 49181","Type":"Conventional","Directional":true,"Links":[{"SourceID":83242,"TargetID":49181,"Directional":true}]},{"ID":17545,"SourceStructureID":83243,"TargetStructureID":6117,"Label":"83243-6117 via Conventional from 83244 -> 30890","Type":"Conventional","Directional":true,"Links":[{"SourceID":83244,"TargetID":30890,"Directional":true}]},{"ID":17546,"SourceStructureID":83255,"TargetStructureID":6117,"Label":"83255-6117 via Conventional from 86381 -> 30903","Type":"Conventional","Directional":true,"Links":[{"SourceID":86381,"TargetID":30903,"Directional":true}]},{"ID":17547,"SourceStructureID":83257,"TargetStructureID":68480,"Label":"83257-68480 via Conventional from 83258 -> 83259","Type":"Conventional","Directional":true,"Links":[{"SourceID":83258,"TargetID":83259,"Directional":true}]},{"ID":17548,"SourceStructureID":83260,"TargetStructureID":68480,"Label":"83260-68480 via Conventional from 83261 -> 83262","Type":"Conventional","Directional":true,"Links":[{"SourceID":83261,"TargetID":83262,"Directional":true}]},{"ID":17549,"SourceStructureID":83266,"TargetStructureID":6117,"Label":"83266-6117 via Conventional from 83269 -> 70492","Type":"Conventional","Directional":true,"Links":[{"SourceID":83269,"TargetID":70492,"Directional":true}]},{"ID":17550,"SourceStructureID":83270,"TargetStructureID":5279,"Label":"83270-5279 via Conventional from 83274 -> 25798","Type":"Conventional","Directional":true,"Links":[{"SourceID":83274,"TargetID":25798,"Directional":true}]},{"ID":17551,"SourceStructureID":83288,"TargetStructureID":6117,"Label":"83288-6117 via Conventional from 83292 -> 30868","Type":"Conventional","Directional":true,"Links":[{"SourceID":83292,"TargetID":30868,"Directional":true}]},{"ID":17552,"SourceStructureID":83293,"TargetStructureID":6117,"Label":"83293-6117 via Conventional from 83297 -> 83298","Type":"Conventional","Directional":true,"Links":[{"SourceID":83297,"TargetID":83298,"Directional":true}]},{"ID":17553,"SourceStructureID":83302,"TargetStructureID":5279,"Label":"83302-5279 via Conventional from 83303 -> 35994","Type":"Conventional","Directional":true,"Links":[{"SourceID":83303,"TargetID":35994,"Directional":true}]},{"ID":17554,"SourceStructureID":83308,"TargetStructureID":5279,"Label":"83308-5279 via Conventional from 98546 -> 49207","Type":"Conventional","Directional":true,"Links":[{"SourceID":98546,"TargetID":49207,"Directional":true}]},{"ID":17555,"SourceStructureID":83308,"TargetStructureID":67182,"Label":"83308-67182 via Conventional from 83310 -> 83307","Type":"Conventional","Directional":true,"Links":[{"SourceID":83310,"TargetID":83307,"Directional":true}]},{"ID":17556,"SourceStructureID":83314,"TargetStructureID":67182,"Label":"83314-67182 via Conventional from 83315 -> 83316","Type":"Conventional","Directional":true,"Links":[{"SourceID":83315,"TargetID":83316,"Directional":true}]},{"ID":17557,"SourceStructureID":83321,"TargetStructureID":67182,"Label":"83321-67182 via Conventional from 83322 -> 83320","Type":"Conventional","Directional":true,"Links":[{"SourceID":83322,"TargetID":83320,"Directional":true}]},{"ID":17558,"SourceStructureID":83360,"TargetStructureID":83370,"Label":"83360-83370 via Conventional from 83366 -> 83371","Type":"Conventional","Directional":true,"Links":[{"SourceID":83366,"TargetID":83371,"Directional":true}]},{"ID":17559,"SourceStructureID":83368,"TargetStructureID":83360,"Label":"83368-83360 via Conventional from 83369 -> 83367","Type":"Conventional","Directional":true,"Links":[{"SourceID":83369,"TargetID":83367,"Directional":true}]},{"ID":17560,"SourceStructureID":83385,"TargetStructureID":324,"Label":"83385-324 via Conventional from 83433 -> 83434","Type":"Conventional","Directional":true,"Links":[{"SourceID":83433,"TargetID":83434,"Directional":true}]},{"ID":17561,"SourceStructureID":83386,"TargetStructureID":83406,"Label":"83386-83406 via Conventional from 83407 -> 83408","Type":"Conventional","Directional":true,"Links":[{"SourceID":83407,"TargetID":83408,"Directional":true}]},{"ID":17562,"SourceStructureID":83389,"TargetStructureID":83386,"Label":"83389-83386 via Conventional from 83391 -> 83393","Type":"Conventional","Directional":true,"Links":[{"SourceID":83391,"TargetID":83393,"Directional":true}]},{"ID":17563,"SourceStructureID":83389,"TargetStructureID":83390,"Label":"83389-83390 via Conventional from 83392 -> 83394","Type":"Conventional","Directional":true,"Links":[{"SourceID":83392,"TargetID":83394,"Directional":true}]},{"ID":17564,"SourceStructureID":83395,"TargetStructureID":83386,"Label":"83395-83386 via Conventional from 83396 -> 83397","Type":"Conventional","Directional":true,"Links":[{"SourceID":83396,"TargetID":83397,"Directional":true}]},{"ID":17565,"SourceStructureID":83409,"TargetStructureID":324,"Label":"83409-324 via Conventional from 83411 -> 83410","Type":"Conventional","Directional":true,"Links":[{"SourceID":83411,"TargetID":83410,"Directional":true}]},{"ID":17566,"SourceStructureID":83412,"TargetStructureID":324,"Label":"83412-324 via Conventional from 83414 -> 83413","Type":"Conventional","Directional":true,"Links":[{"SourceID":83414,"TargetID":83413,"Directional":true}]},{"ID":17567,"SourceStructureID":83415,"TargetStructureID":83386,"Label":"83415-83386 via Conventional from 83416 -> 83417","Type":"Conventional","Directional":true,"Links":[{"SourceID":83416,"TargetID":83417,"Directional":true}]},{"ID":17568,"SourceStructureID":83428,"TargetStructureID":324,"Label":"83428-324 via Conventional from 96949 -> 83427","Type":"Conventional","Directional":true,"Links":[{"SourceID":96949,"TargetID":83427,"Directional":true}]},{"ID":17569,"SourceStructureID":83430,"TargetStructureID":324,"Label":"83430-324 via Conventional from 96967 -> 96968","Type":"Conventional","Directional":true,"Links":[{"SourceID":96967,"TargetID":96968,"Directional":true}]},{"ID":17570,"SourceStructureID":83449,"TargetStructureID":83448,"Label":"83449-83448 via Conventional from 83450 -> 83451","Type":"Conventional","Directional":true,"Links":[{"SourceID":83450,"TargetID":83451,"Directional":true}]},{"ID":17571,"SourceStructureID":83454,"TargetStructureID":16087,"Label":"83454-16087 via Conventional from 83455 -> 83458","Type":"Conventional","Directional":true,"Links":[{"SourceID":83455,"TargetID":83458,"Directional":true}]},{"ID":17572,"SourceStructureID":83575,"TargetStructureID":324,"Label":"83575-324 via Conventional from 83576 -> 83577","Type":"Conventional","Directional":true,"Links":[{"SourceID":83576,"TargetID":83577,"Directional":true}]},{"ID":17573,"SourceStructureID":83580,"TargetStructureID":324,"Label":"83580-324 via Conventional from 83581 -> 83582","Type":"Conventional","Directional":true,"Links":[{"SourceID":83581,"TargetID":83582,"Directional":true}]},{"ID":17574,"SourceStructureID":83603,"TargetStructureID":66801,"Label":"83603-66801 via Conventional from 83604 -> 83602","Type":"Conventional","Directional":true,"Links":[{"SourceID":83604,"TargetID":83602,"Directional":true}]},{"ID":17575,"SourceStructureID":83625,"TargetStructureID":83056,"Label":"83625-83056 via Conventional from 83626 -> 83624","Type":"Conventional","Directional":true,"Links":[{"SourceID":83626,"TargetID":83624,"Directional":true}]},{"ID":17576,"SourceStructureID":83644,"TargetStructureID":82677,"Label":"83644-82677 via Conventional from 83645 -> 83643","Type":"Conventional","Directional":true,"Links":[{"SourceID":83645,"TargetID":83643,"Directional":true}]},{"ID":17577,"SourceStructureID":83648,"TargetStructureID":82677,"Label":"83648-82677 via Conventional from 83653 -> 83652","Type":"Conventional","Directional":true,"Links":[{"SourceID":83653,"TargetID":83652,"Directional":true}]},{"ID":17578,"SourceStructureID":83679,"TargetStructureID":82677,"Label":"83679-82677 via Conventional from 83680 -> 83678","Type":"Conventional","Directional":true,"Links":[{"SourceID":83680,"TargetID":83678,"Directional":true}]},{"ID":17579,"SourceStructureID":83697,"TargetStructureID":82677,"Label":"83697-82677 via Conventional from 83699 -> 83700","Type":"Conventional","Directional":true,"Links":[{"SourceID":83699,"TargetID":83700,"Directional":true}]},{"ID":17580,"SourceStructureID":83703,"TargetStructureID":82677,"Label":"83703-82677 via Conventional from 83704 -> 83702","Type":"Conventional","Directional":true,"Links":[{"SourceID":83704,"TargetID":83702,"Directional":true}]},{"ID":17581,"SourceStructureID":83706,"TargetStructureID":82677,"Label":"83706-82677 via Conventional from 83707 -> 83705","Type":"Conventional","Directional":true,"Links":[{"SourceID":83707,"TargetID":83705,"Directional":true}]},{"ID":17582,"SourceStructureID":83708,"TargetStructureID":82677,"Label":"83708-82677 via Conventional from 83709 -> 83710","Type":"Conventional","Directional":true,"Links":[{"SourceID":83709,"TargetID":83710,"Directional":true}]},{"ID":17583,"SourceStructureID":83714,"TargetStructureID":82677,"Label":"83714-82677 via Conventional from 83720 -> 83719","Type":"Conventional","Directional":true,"Links":[{"SourceID":83720,"TargetID":83719,"Directional":true}]},{"ID":17584,"SourceStructureID":83721,"TargetStructureID":74907,"Label":"83721-74907 via Conventional from 83730 -> 83731","Type":"Conventional","Directional":true,"Links":[{"SourceID":83730,"TargetID":83731,"Directional":true}]},{"ID":17585,"SourceStructureID":83733,"TargetStructureID":83735,"Label":"83733-83735 via Conventional from 83734 -> 83736","Type":"Conventional","Directional":true,"Links":[{"SourceID":83734,"TargetID":83736,"Directional":true}]},{"ID":17586,"SourceStructureID":83757,"TargetStructureID":74907,"Label":"83757-74907 via Conventional from 83863 -> 83862, 84609 -> 84610","Type":"Conventional","Directional":true,"Links":[{"SourceID":83863,"TargetID":83862,"Directional":true},{"SourceID":84609,"TargetID":84610,"Directional":true}]},{"ID":17587,"SourceStructureID":83761,"TargetStructureID":82677,"Label":"83761-82677 via Conventional from 83762 -> 83760","Type":"Conventional","Directional":true,"Links":[{"SourceID":83762,"TargetID":83760,"Directional":true}]},{"ID":17588,"SourceStructureID":83764,"TargetStructureID":82677,"Label":"83764-82677 via Conventional from 83765 -> 83763","Type":"Conventional","Directional":true,"Links":[{"SourceID":83765,"TargetID":83763,"Directional":true}]},{"ID":17589,"SourceStructureID":83767,"TargetStructureID":83772,"Label":"83767-83772 via Conventional from 83771 -> 83773","Type":"Conventional","Directional":true,"Links":[{"SourceID":83771,"TargetID":83773,"Directional":true}]},{"ID":17590,"SourceStructureID":83776,"TargetStructureID":82677,"Label":"83776-82677 via Conventional from 83778 -> 83777","Type":"Conventional","Directional":true,"Links":[{"SourceID":83778,"TargetID":83777,"Directional":true}]},{"ID":17591,"SourceStructureID":83785,"TargetStructureID":82677,"Label":"83785-82677 via Conventional from 83786 -> 83784","Type":"Conventional","Directional":true,"Links":[{"SourceID":83786,"TargetID":83784,"Directional":true}]},{"ID":17592,"SourceStructureID":83788,"TargetStructureID":6165,"Label":"83788-6165 via Conventional from 83789 -> 83787","Type":"Conventional","Directional":true,"Links":[{"SourceID":83789,"TargetID":83787,"Directional":true}]},{"ID":17593,"SourceStructureID":83807,"TargetStructureID":74907,"Label":"83807-74907 via Conventional from 83811 -> 83806","Type":"Conventional","Directional":true,"Links":[{"SourceID":83811,"TargetID":83806,"Directional":true}]},{"ID":17594,"SourceStructureID":83823,"TargetStructureID":82677,"Label":"83823-82677 via Conventional from 83824 -> 83825","Type":"Conventional","Directional":true,"Links":[{"SourceID":83824,"TargetID":83825,"Directional":true}]},{"ID":17595,"SourceStructureID":83831,"TargetStructureID":82677,"Label":"83831-82677 via Conventional from 83832 -> 83833","Type":"Conventional","Directional":true,"Links":[{"SourceID":83832,"TargetID":83833,"Directional":true}]},{"ID":17596,"SourceStructureID":83838,"TargetStructureID":82677,"Label":"83838-82677 via Conventional from 83839 -> 83837","Type":"Conventional","Directional":true,"Links":[{"SourceID":83839,"TargetID":83837,"Directional":true}]},{"ID":17597,"SourceStructureID":83838,"TargetStructureID":83852,"Label":"83838-83852 via Conventional from 83855 -> 83854","Type":"Conventional","Directional":true,"Links":[{"SourceID":83855,"TargetID":83854,"Directional":true}]},{"ID":17598,"SourceStructureID":83842,"TargetStructureID":82677,"Label":"83842-82677 via Conventional from 83843 -> 83844","Type":"Conventional","Directional":true,"Links":[{"SourceID":83843,"TargetID":83844,"Directional":true}]},{"ID":17599,"SourceStructureID":83846,"TargetStructureID":82677,"Label":"83846-82677 via Conventional from 83849 -> 83850","Type":"Conventional","Directional":true,"Links":[{"SourceID":83849,"TargetID":83850,"Directional":true}]},{"ID":17600,"SourceStructureID":83860,"TargetStructureID":82677,"Label":"83860-82677 via Conventional from 83861 -> 83859","Type":"Conventional","Directional":true,"Links":[{"SourceID":83861,"TargetID":83859,"Directional":true}]},{"ID":17601,"SourceStructureID":83882,"TargetStructureID":82677,"Label":"83882-82677 via Conventional from 83883 -> 83881","Type":"Conventional","Directional":true,"Links":[{"SourceID":83883,"TargetID":83881,"Directional":true}]},{"ID":17602,"SourceStructureID":83890,"TargetStructureID":82677,"Label":"83890-82677 via Conventional from 83904 -> 83889","Type":"Conventional","Directional":true,"Links":[{"SourceID":83904,"TargetID":83889,"Directional":true}]},{"ID":17603,"SourceStructureID":83892,"TargetStructureID":74907,"Label":"83892-74907 via Conventional from 83893 -> 83891","Type":"Conventional","Directional":true,"Links":[{"SourceID":83893,"TargetID":83891,"Directional":true}]},{"ID":17604,"SourceStructureID":83894,"TargetStructureID":74907,"Label":"83894-74907 via Conventional from 83895 -> 83896, 84445 -> 84446","Type":"Conventional","Directional":true,"Links":[{"SourceID":83895,"TargetID":83896,"Directional":true},{"SourceID":84445,"TargetID":84446,"Directional":true}]},{"ID":17605,"SourceStructureID":83898,"TargetStructureID":74907,"Label":"83898-74907 via Conventional from 83899 -> 83900","Type":"Conventional","Directional":true,"Links":[{"SourceID":83899,"TargetID":83900,"Directional":true}]},{"ID":17606,"SourceStructureID":83901,"TargetStructureID":74907,"Label":"83901-74907 via Conventional from 83902 -> 83903","Type":"Conventional","Directional":true,"Links":[{"SourceID":83902,"TargetID":83903,"Directional":true}]},{"ID":17607,"SourceStructureID":83907,"TargetStructureID":82677,"Label":"83907-82677 via Conventional from 83908 -> 83906","Type":"Conventional","Directional":true,"Links":[{"SourceID":83908,"TargetID":83906,"Directional":true}]},{"ID":17608,"SourceStructureID":83916,"TargetStructureID":5279,"Label":"83916-5279 via Conventional from 97064 -> 25986","Type":"Conventional","Directional":true,"Links":[{"SourceID":97064,"TargetID":25986,"Directional":true}]},{"ID":17609,"SourceStructureID":83916,"TargetStructureID":6117,"Label":"83916-6117 via Conventional from 83918 -> 83917","Type":"Conventional","Directional":true,"Links":[{"SourceID":83918,"TargetID":83917,"Directional":true}]},{"ID":17610,"SourceStructureID":83921,"TargetStructureID":83916,"Label":"83921-83916 via Conventional from 83923 -> 83924","Type":"Conventional","Directional":true,"Links":[{"SourceID":83923,"TargetID":83924,"Directional":true}]},{"ID":17611,"SourceStructureID":83925,"TargetStructureID":6117,"Label":"83925-6117 via Conventional from 83929 -> 83930","Type":"Conventional","Directional":true,"Links":[{"SourceID":83929,"TargetID":83930,"Directional":true}]},{"ID":17612,"SourceStructureID":83931,"TargetStructureID":6117,"Label":"83931-6117 via Conventional from 83932 -> 83933","Type":"Conventional","Directional":true,"Links":[{"SourceID":83932,"TargetID":83933,"Directional":true}]},{"ID":17613,"SourceStructureID":83941,"TargetStructureID":6117,"Label":"83941-6117 via Conventional from 83942 -> 83943","Type":"Conventional","Directional":true,"Links":[{"SourceID":83942,"TargetID":83943,"Directional":true}]},{"ID":17614,"SourceStructureID":83949,"TargetStructureID":20136,"Label":"83949-20136 via Conventional from 109035 -> 20144","Type":"Conventional","Directional":true,"Links":[{"SourceID":109035,"TargetID":20144,"Directional":true}]},{"ID":17615,"SourceStructureID":83954,"TargetStructureID":6117,"Label":"83954-6117 via Conventional from 83959 -> 83960","Type":"Conventional","Directional":true,"Links":[{"SourceID":83959,"TargetID":83960,"Directional":true}]},{"ID":17616,"SourceStructureID":83954,"TargetStructureID":20136,"Label":"83954-20136 via Conventional from 109111 -> 46007","Type":"Conventional","Directional":true,"Links":[{"SourceID":109111,"TargetID":46007,"Directional":true}]},{"ID":17617,"SourceStructureID":83965,"TargetStructureID":6117,"Label":"83965-6117 via Conventional from 83966 -> 83967","Type":"Conventional","Directional":true,"Links":[{"SourceID":83966,"TargetID":83967,"Directional":true}]},{"ID":17618,"SourceStructureID":83975,"TargetStructureID":6117,"Label":"83975-6117 via Conventional from 84179 -> 84180","Type":"Conventional","Directional":true,"Links":[{"SourceID":84179,"TargetID":84180,"Directional":true}]},{"ID":17619,"SourceStructureID":83978,"TargetStructureID":6117,"Label":"83978-6117 via Conventional from 83979 -> 83980","Type":"Conventional","Directional":true,"Links":[{"SourceID":83979,"TargetID":83980,"Directional":true}]},{"ID":17620,"SourceStructureID":83981,"TargetStructureID":6117,"Label":"83981-6117 via Conventional from 83982 -> 30872","Type":"Conventional","Directional":true,"Links":[{"SourceID":83982,"TargetID":30872,"Directional":true}]},{"ID":17621,"SourceStructureID":83985,"TargetStructureID":6117,"Label":"83985-6117 via Conventional from 84140 -> 84141","Type":"Conventional","Directional":true,"Links":[{"SourceID":84140,"TargetID":84141,"Directional":true}]},{"ID":17622,"SourceStructureID":83999,"TargetStructureID":84001,"Label":"83999-84001 via Conventional from 84000 -> 84002","Type":"Conventional","Directional":true,"Links":[{"SourceID":84000,"TargetID":84002,"Directional":true}]},{"ID":17623,"SourceStructureID":84008,"TargetStructureID":82677,"Label":"84008-82677 via Conventional from 84009 -> 84010","Type":"Conventional","Directional":true,"Links":[{"SourceID":84009,"TargetID":84010,"Directional":true}]},{"ID":17624,"SourceStructureID":84018,"TargetStructureID":82677,"Label":"84018-82677 via Conventional from 84019 -> 84017","Type":"Conventional","Directional":true,"Links":[{"SourceID":84019,"TargetID":84017,"Directional":true}]},{"ID":17625,"SourceStructureID":84029,"TargetStructureID":5534,"Label":"84029-5534 via Conventional from 84030 -> 34624","Type":"Conventional","Directional":true,"Links":[{"SourceID":84030,"TargetID":34624,"Directional":true}]},{"ID":17626,"SourceStructureID":84038,"TargetStructureID":82677,"Label":"84038-82677 via Conventional from 84039 -> 84040","Type":"Conventional","Directional":true,"Links":[{"SourceID":84039,"TargetID":84040,"Directional":true}]},{"ID":17627,"SourceStructureID":84041,"TargetStructureID":82677,"Label":"84041-82677 via Conventional from 84044 -> 84045","Type":"Conventional","Directional":true,"Links":[{"SourceID":84044,"TargetID":84045,"Directional":true}]},{"ID":17628,"SourceStructureID":84058,"TargetStructureID":82677,"Label":"84058-82677 via Conventional from 84059 -> 84057","Type":"Conventional","Directional":true,"Links":[{"SourceID":84059,"TargetID":84057,"Directional":true}]},{"ID":17629,"SourceStructureID":84063,"TargetStructureID":84061,"Label":"84063-84061 via Conventional from 84064 -> 84062","Type":"Conventional","Directional":true,"Links":[{"SourceID":84064,"TargetID":84062,"Directional":true}]},{"ID":17630,"SourceStructureID":84063,"TargetStructureID":84077,"Label":"84063-84077 via Conventional from 84065 -> 84080, 84066 -> 84081","Type":"Conventional","Directional":true,"Links":[{"SourceID":84065,"TargetID":84080,"Directional":true},{"SourceID":84066,"TargetID":84081,"Directional":true}]},{"ID":17631,"SourceStructureID":84073,"TargetStructureID":82677,"Label":"84073-82677 via Conventional from 84075 -> 84074","Type":"Conventional","Directional":true,"Links":[{"SourceID":84075,"TargetID":84074,"Directional":true}]},{"ID":17632,"SourceStructureID":84077,"TargetStructureID":82677,"Label":"84077-82677 via Conventional from 84079 -> 84078","Type":"Conventional","Directional":true,"Links":[{"SourceID":84079,"TargetID":84078,"Directional":true}]},{"ID":17633,"SourceStructureID":84082,"TargetStructureID":84083,"Label":"84082-84083 via Conventional from 84085 -> 84086","Type":"Conventional","Directional":true,"Links":[{"SourceID":84085,"TargetID":84086,"Directional":true}]},{"ID":17634,"SourceStructureID":84083,"TargetStructureID":82677,"Label":"84083-82677 via Conventional from 84084 -> 84087","Type":"Conventional","Directional":true,"Links":[{"SourceID":84084,"TargetID":84087,"Directional":true}]},{"ID":17635,"SourceStructureID":84088,"TargetStructureID":84090,"Label":"84088-84090 via Conventional from 84089 -> 84091","Type":"Conventional","Directional":true,"Links":[{"SourceID":84089,"TargetID":84091,"Directional":true}]},{"ID":17636,"SourceStructureID":84106,"TargetStructureID":82677,"Label":"84106-82677 via Conventional from 84107 -> 84105","Type":"Conventional","Directional":true,"Links":[{"SourceID":84107,"TargetID":84105,"Directional":true}]},{"ID":17637,"SourceStructureID":84115,"TargetStructureID":82677,"Label":"84115-82677 via Conventional from 84116 -> 84117","Type":"Conventional","Directional":true,"Links":[{"SourceID":84116,"TargetID":84117,"Directional":true}]},{"ID":17638,"SourceStructureID":84118,"TargetStructureID":450,"Label":"84118-450 via Conventional from 123599 -> 123600","Type":"Conventional","Directional":true,"Links":[{"SourceID":123599,"TargetID":123600,"Directional":true}]},{"ID":17639,"SourceStructureID":84118,"TargetStructureID":5468,"Label":"84118-5468 via Conventional from 123665 -> 48273","Type":"Conventional","Directional":true,"Links":[{"SourceID":123665,"TargetID":48273,"Directional":true}]},{"ID":17640,"SourceStructureID":84118,"TargetStructureID":5534,"Label":"84118-5534 via Conventional from 123630 -> 123631, 123638 -> 123637","Type":"Conventional","Directional":true,"Links":[{"SourceID":123630,"TargetID":123631,"Directional":true},{"SourceID":123638,"TargetID":123637,"Directional":true}]},{"ID":17641,"SourceStructureID":84118,"TargetStructureID":5535,"Label":"84118-5535 via Conventional from 123624 -> 42269","Type":"Conventional","Directional":true,"Links":[{"SourceID":123624,"TargetID":42269,"Directional":true}]},{"ID":17642,"SourceStructureID":84118,"TargetStructureID":5601,"Label":"84118-5601 via Conventional from 123652 -> 57495","Type":"Conventional","Directional":true,"Links":[{"SourceID":123652,"TargetID":57495,"Directional":true}]},{"ID":17643,"SourceStructureID":84118,"TargetStructureID":5637,"Label":"84118-5637 via Conventional from 123633 -> 123634, 123640 -> 123641","Type":"Conventional","Directional":true,"Links":[{"SourceID":123633,"TargetID":123634,"Directional":true},{"SourceID":123640,"TargetID":123641,"Directional":true}]},{"ID":17644,"SourceStructureID":84118,"TargetStructureID":6127,"Label":"84118-6127 via Conventional from 123608 -> 123609, 123612 -> 123613","Type":"Conventional","Directional":true,"Links":[{"SourceID":123608,"TargetID":123609,"Directional":true},{"SourceID":123612,"TargetID":123613,"Directional":true}]},{"ID":17645,"SourceStructureID":84118,"TargetStructureID":6165,"Label":"84118-6165 via Conventional from 123602 -> 123603","Type":"Conventional","Directional":true,"Links":[{"SourceID":123602,"TargetID":123603,"Directional":true}]},{"ID":17646,"SourceStructureID":84118,"TargetStructureID":8754,"Label":"84118-8754 via Conventional from 123653 -> 123654, 123657 -> 123658","Type":"Conventional","Directional":true,"Links":[{"SourceID":123653,"TargetID":123654,"Directional":true},{"SourceID":123657,"TargetID":123658,"Directional":true}]},{"ID":17647,"SourceStructureID":84118,"TargetStructureID":15976,"Label":"84118-15976 via Conventional from 123660 -> 123661, 123663 -> 123662","Type":"Conventional","Directional":true,"Links":[{"SourceID":123660,"TargetID":123661,"Directional":true},{"SourceID":123663,"TargetID":123662,"Directional":true}]},{"ID":17648,"SourceStructureID":84118,"TargetStructureID":32926,"Label":"84118-32926 via Conventional from 123626 -> 123627","Type":"Conventional","Directional":true,"Links":[{"SourceID":123626,"TargetID":123627,"Directional":true}]},{"ID":17649,"SourceStructureID":84118,"TargetStructureID":43716,"Label":"84118-43716 via Conventional from 123598 -> 123596, 123644 -> 123645","Type":"Conventional","Directional":true,"Links":[{"SourceID":123598,"TargetID":123596,"Directional":true},{"SourceID":123644,"TargetID":123645,"Directional":true}]},{"ID":17650,"SourceStructureID":84118,"TargetStructureID":82677,"Label":"84118-82677 via Conventional from 84119 -> 84120","Type":"Conventional","Directional":true,"Links":[{"SourceID":84119,"TargetID":84120,"Directional":true}]},{"ID":17651,"SourceStructureID":84121,"TargetStructureID":82677,"Label":"84121-82677 via Conventional from 84122 -> 84123","Type":"Conventional","Directional":true,"Links":[{"SourceID":84122,"TargetID":84123,"Directional":true}]},{"ID":17652,"SourceStructureID":84142,"TargetStructureID":6117,"Label":"84142-6117 via Conventional from 84146 -> 84145","Type":"Conventional","Directional":true,"Links":[{"SourceID":84146,"TargetID":84145,"Directional":true}]},{"ID":17653,"SourceStructureID":84142,"TargetStructureID":84136,"Label":"84142-84136 via Conventional from 84143 -> 84144","Type":"Conventional","Directional":true,"Links":[{"SourceID":84143,"TargetID":84144,"Directional":true}]},{"ID":17654,"SourceStructureID":84162,"TargetStructureID":7024,"Label":"84162-7024 via Conventional from 135499 -> 135498","Type":"Conventional","Directional":true,"Links":[{"SourceID":135499,"TargetID":135498,"Directional":true}]},{"ID":17655,"SourceStructureID":84162,"TargetStructureID":84174,"Label":"84162-84174 via Conventional from 84163 -> 84175","Type":"Conventional","Directional":true,"Links":[{"SourceID":84163,"TargetID":84175,"Directional":true}]},{"ID":17656,"SourceStructureID":84181,"TargetStructureID":6117,"Label":"84181-6117 via Conventional from 84182 -> 22387","Type":"Conventional","Directional":true,"Links":[{"SourceID":84182,"TargetID":22387,"Directional":true}]},{"ID":17657,"SourceStructureID":84184,"TargetStructureID":6117,"Label":"84184-6117 via Conventional from 84185 -> 22394","Type":"Conventional","Directional":true,"Links":[{"SourceID":84185,"TargetID":22394,"Directional":true}]},{"ID":17658,"SourceStructureID":84193,"TargetStructureID":5279,"Label":"84193-5279 via Conventional from 97345 -> 28314","Type":"Conventional","Directional":true,"Links":[{"SourceID":97345,"TargetID":28314,"Directional":true}]},{"ID":17659,"SourceStructureID":84193,"TargetStructureID":6117,"Label":"84193-6117 via Conventional from 84194 -> 22388","Type":"Conventional","Directional":true,"Links":[{"SourceID":84194,"TargetID":22388,"Directional":true}]},{"ID":17660,"SourceStructureID":84193,"TargetStructureID":20136,"Label":"84193-20136 via Conventional from 84195 -> 46010","Type":"Conventional","Directional":true,"Links":[{"SourceID":84195,"TargetID":46010,"Directional":true}]},{"ID":17661,"SourceStructureID":84201,"TargetStructureID":5279,"Label":"84201-5279 via Conventional from 97333 -> 6356","Type":"Conventional","Directional":true,"Links":[{"SourceID":97333,"TargetID":6356,"Directional":true}]},{"ID":17662,"SourceStructureID":84207,"TargetStructureID":6117,"Label":"84207-6117 via Conventional from 84208 -> 30877","Type":"Conventional","Directional":true,"Links":[{"SourceID":84208,"TargetID":30877,"Directional":true}]},{"ID":17663,"SourceStructureID":84209,"TargetStructureID":6117,"Label":"84209-6117 via Conventional from 84227 -> 30878","Type":"Conventional","Directional":true,"Links":[{"SourceID":84227,"TargetID":30878,"Directional":true}]},{"ID":17664,"SourceStructureID":84211,"TargetStructureID":6117,"Label":"84211-6117 via Conventional from 84212 -> 30876","Type":"Conventional","Directional":true,"Links":[{"SourceID":84212,"TargetID":30876,"Directional":true}]},{"ID":17665,"SourceStructureID":84215,"TargetStructureID":6117,"Label":"84215-6117 via Conventional from 84216 -> 30874","Type":"Conventional","Directional":true,"Links":[{"SourceID":84216,"TargetID":30874,"Directional":true}]},{"ID":17666,"SourceStructureID":84218,"TargetStructureID":6117,"Label":"84218-6117 via Conventional from 84219 -> 84220","Type":"Conventional","Directional":true,"Links":[{"SourceID":84219,"TargetID":84220,"Directional":true}]},{"ID":17667,"SourceStructureID":84224,"TargetStructureID":6117,"Label":"84224-6117 via Conventional from 84225 -> 84226","Type":"Conventional","Directional":true,"Links":[{"SourceID":84225,"TargetID":84226,"Directional":true}]},{"ID":17668,"SourceStructureID":84232,"TargetStructureID":6117,"Label":"84232-6117 via Conventional from 84233 -> 30882","Type":"Conventional","Directional":true,"Links":[{"SourceID":84233,"TargetID":30882,"Directional":true}]},{"ID":17669,"SourceStructureID":84240,"TargetStructureID":6117,"Label":"84240-6117 via Conventional from 84248 -> 84239","Type":"Conventional","Directional":true,"Links":[{"SourceID":84248,"TargetID":84239,"Directional":true}]},{"ID":17670,"SourceStructureID":84254,"TargetStructureID":5284,"Label":"84254-5284 via Conventional from 113461 -> 113459","Type":"Conventional","Directional":true,"Links":[{"SourceID":113461,"TargetID":113459,"Directional":true}]},{"ID":17671,"SourceStructureID":84254,"TargetStructureID":6117,"Label":"84254-6117 via Conventional from 84255 -> 51532","Type":"Conventional","Directional":true,"Links":[{"SourceID":84255,"TargetID":51532,"Directional":true}]},{"ID":17672,"SourceStructureID":84287,"TargetStructureID":74907,"Label":"84287-74907 via Conventional from 84288 -> 84289","Type":"Conventional","Directional":true,"Links":[{"SourceID":84288,"TargetID":84289,"Directional":true}]},{"ID":17673,"SourceStructureID":84290,"TargetStructureID":74907,"Label":"84290-74907 via Conventional from 84291 -> 84292","Type":"Conventional","Directional":true,"Links":[{"SourceID":84291,"TargetID":84292,"Directional":true}]},{"ID":17674,"SourceStructureID":84298,"TargetStructureID":74907,"Label":"84298-74907 via Conventional from 84299 -> 84300","Type":"Conventional","Directional":true,"Links":[{"SourceID":84299,"TargetID":84300,"Directional":true}]},{"ID":17675,"SourceStructureID":84304,"TargetStructureID":74907,"Label":"84304-74907 via Conventional from 84305 -> 84306","Type":"Conventional","Directional":true,"Links":[{"SourceID":84305,"TargetID":84306,"Directional":true}]},{"ID":17676,"SourceStructureID":84337,"TargetStructureID":6117,"Label":"84337-6117 via Conventional from 84339 -> 84340","Type":"Conventional","Directional":true,"Links":[{"SourceID":84339,"TargetID":84340,"Directional":true}]},{"ID":17677,"SourceStructureID":84347,"TargetStructureID":84342,"Label":"84347-84342 via Conventional from 84348 -> 84346","Type":"Conventional","Directional":true,"Links":[{"SourceID":84348,"TargetID":84346,"Directional":true}]},{"ID":17678,"SourceStructureID":84349,"TargetStructureID":6117,"Label":"84349-6117 via Conventional from 84361 -> 84362","Type":"Conventional","Directional":true,"Links":[{"SourceID":84361,"TargetID":84362,"Directional":true}]},{"ID":17679,"SourceStructureID":84349,"TargetStructureID":84337,"Label":"84349-84337 via Conventional from 84356 -> 84357","Type":"Conventional","Directional":true,"Links":[{"SourceID":84356,"TargetID":84357,"Directional":true}]},{"ID":17680,"SourceStructureID":84369,"TargetStructureID":66323,"Label":"84369-66323 via Conventional from 84370 -> 84368","Type":"Conventional","Directional":true,"Links":[{"SourceID":84370,"TargetID":84368,"Directional":true}]},{"ID":17681,"SourceStructureID":84374,"TargetStructureID":6117,"Label":"84374-6117 via Conventional from 84376 -> 84375","Type":"Conventional","Directional":true,"Links":[{"SourceID":84376,"TargetID":84375,"Directional":true}]},{"ID":17682,"SourceStructureID":84407,"TargetStructureID":73004,"Label":"84407-73004 via Conventional from 84410 -> 84411","Type":"Conventional","Directional":true,"Links":[{"SourceID":84410,"TargetID":84411,"Directional":true}]},{"ID":17683,"SourceStructureID":84418,"TargetStructureID":7594,"Label":"84418-7594 via Conventional from 84420 -> 19281","Type":"Conventional","Directional":true,"Links":[{"SourceID":84420,"TargetID":19281,"Directional":true}]},{"ID":17684,"SourceStructureID":84457,"TargetStructureID":5282,"Label":"84457-5282 via Conventional from 84458 -> 84462","Type":"Conventional","Directional":true,"Links":[{"SourceID":84458,"TargetID":84462,"Directional":true}]},{"ID":17685,"SourceStructureID":84519,"TargetStructureID":74907,"Label":"84519-74907 via Conventional from 84523 -> 84524","Type":"Conventional","Directional":true,"Links":[{"SourceID":84523,"TargetID":84524,"Directional":true}]},{"ID":17686,"SourceStructureID":84561,"TargetStructureID":593,"Label":"84561-593 via Conventional from 84563 -> 84562","Type":"Conventional","Directional":true,"Links":[{"SourceID":84563,"TargetID":84562,"Directional":true}]},{"ID":17687,"SourceStructureID":84572,"TargetStructureID":10574,"Label":"84572-10574 via Ribbon Synapse from 84573 -> 84569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84573,"TargetID":84569,"Directional":true}]},{"ID":17688,"SourceStructureID":84600,"TargetStructureID":74907,"Label":"84600-74907 via Conventional from 84606 -> 84607","Type":"Conventional","Directional":true,"Links":[{"SourceID":84606,"TargetID":84607,"Directional":true}]},{"ID":17689,"SourceStructureID":84621,"TargetStructureID":84623,"Label":"84621-84623 via Conventional from 84622 -> 84625","Type":"Conventional","Directional":true,"Links":[{"SourceID":84622,"TargetID":84625,"Directional":true}]},{"ID":17690,"SourceStructureID":84639,"TargetStructureID":5283,"Label":"84639-5283 via Conventional from 123767 -> 28006","Type":"Conventional","Directional":true,"Links":[{"SourceID":123767,"TargetID":28006,"Directional":true}]},{"ID":17691,"SourceStructureID":84639,"TargetStructureID":5650,"Label":"84639-5650 via Conventional from 84644 -> 23493","Type":"Conventional","Directional":true,"Links":[{"SourceID":84644,"TargetID":23493,"Directional":true}]},{"ID":17692,"SourceStructureID":84639,"TargetStructureID":6117,"Label":"84639-6117 via Conventional from 84640 -> 84641","Type":"Conventional","Directional":true,"Links":[{"SourceID":84640,"TargetID":84641,"Directional":true}]},{"ID":17693,"SourceStructureID":84642,"TargetStructureID":6117,"Label":"84642-6117 via Conventional from 84645 -> 84214","Type":"Conventional","Directional":true,"Links":[{"SourceID":84645,"TargetID":84214,"Directional":true}]},{"ID":17694,"SourceStructureID":84647,"TargetStructureID":6117,"Label":"84647-6117 via Conventional from 84648 -> 84649","Type":"Conventional","Directional":true,"Links":[{"SourceID":84648,"TargetID":84649,"Directional":true}]},{"ID":17695,"SourceStructureID":84670,"TargetStructureID":43507,"Label":"84670-43507 via Conventional from 84672 -> 43519","Type":"Conventional","Directional":true,"Links":[{"SourceID":84672,"TargetID":43519,"Directional":true}]},{"ID":17696,"SourceStructureID":84696,"TargetStructureID":11092,"Label":"84696-11092 via Conventional from 84697 -> 109972","Type":"Conventional","Directional":true,"Links":[{"SourceID":84697,"TargetID":109972,"Directional":true}]},{"ID":17697,"SourceStructureID":84740,"TargetStructureID":74907,"Label":"84740-74907 via Conventional from 84741 -> 84776","Type":"Conventional","Directional":true,"Links":[{"SourceID":84741,"TargetID":84776,"Directional":true}]},{"ID":17698,"SourceStructureID":84745,"TargetStructureID":5599,"Label":"84745-5599 via Conventional from 84746 -> 84744","Type":"Conventional","Directional":true,"Links":[{"SourceID":84746,"TargetID":84744,"Directional":true}]},{"ID":17699,"SourceStructureID":84759,"TargetStructureID":70540,"Label":"84759-70540 via Conventional from 84760 -> 84762","Type":"Conventional","Directional":true,"Links":[{"SourceID":84760,"TargetID":84762,"Directional":true}]},{"ID":17700,"SourceStructureID":84773,"TargetStructureID":84771,"Label":"84773-84771 via Conventional from 84774 -> 84775","Type":"Conventional","Directional":true,"Links":[{"SourceID":84774,"TargetID":84775,"Directional":true}]},{"ID":17701,"SourceStructureID":84780,"TargetStructureID":166,"Label":"84780-166 via Conventional from 84781 -> 84779","Type":"Conventional","Directional":true,"Links":[{"SourceID":84781,"TargetID":84779,"Directional":true}]},{"ID":17702,"SourceStructureID":84790,"TargetStructureID":32035,"Label":"84790-32035 via Conventional from 84857 -> 32042","Type":"Conventional","Directional":true,"Links":[{"SourceID":84857,"TargetID":32042,"Directional":true}]},{"ID":17703,"SourceStructureID":84822,"TargetStructureID":7859,"Label":"84822-7859 via Conventional from 84823 -> 84821","Type":"Conventional","Directional":true,"Links":[{"SourceID":84823,"TargetID":84821,"Directional":true}]},{"ID":17704,"SourceStructureID":84830,"TargetStructureID":5279,"Label":"84830-5279 via Conventional from 84843 -> 25846","Type":"Conventional","Directional":true,"Links":[{"SourceID":84843,"TargetID":25846,"Directional":true}]},{"ID":17705,"SourceStructureID":84830,"TargetStructureID":6997,"Label":"84830-6997 via Conventional from 84881 -> 21959, 84890 -> 21928, 84893 -> 84892","Type":"Conventional","Directional":true,"Links":[{"SourceID":84881,"TargetID":21959,"Directional":true},{"SourceID":84890,"TargetID":21928,"Directional":true},{"SourceID":84893,"TargetID":84892,"Directional":true}]},{"ID":17706,"SourceStructureID":84830,"TargetStructureID":11401,"Label":"84830-11401 via Conventional from 84896 -> 84897","Type":"Conventional","Directional":true,"Links":[{"SourceID":84896,"TargetID":84897,"Directional":true}]},{"ID":17707,"SourceStructureID":84830,"TargetStructureID":84876,"Label":"84830-84876 via Conventional from 84875 -> 84877","Type":"Conventional","Directional":true,"Links":[{"SourceID":84875,"TargetID":84877,"Directional":true}]},{"ID":17708,"SourceStructureID":84830,"TargetStructureID":84879,"Label":"84830-84879 via Conventional from 84878 -> 84880","Type":"Conventional","Directional":true,"Links":[{"SourceID":84878,"TargetID":84880,"Directional":true}]},{"ID":17709,"SourceStructureID":84830,"TargetStructureID":85455,"Label":"84830-85455 via Conventional from 85457 -> 85456","Type":"Conventional","Directional":true,"Links":[{"SourceID":85457,"TargetID":85456,"Directional":true}]},{"ID":17710,"SourceStructureID":84830,"TargetStructureID":85463,"Label":"84830-85463 via Conventional from 85462 -> 85464","Type":"Conventional","Directional":true,"Links":[{"SourceID":85462,"TargetID":85464,"Directional":true}]},{"ID":17711,"SourceStructureID":84830,"TargetStructureID":85473,"Label":"84830-85473 via Conventional from 85474 -> 85477","Type":"Conventional","Directional":true,"Links":[{"SourceID":85474,"TargetID":85477,"Directional":true}]},{"ID":17712,"SourceStructureID":84858,"TargetStructureID":142,"Label":"84858-142 via Conventional from 84870 -> 49772","Type":"Conventional","Directional":true,"Links":[{"SourceID":84870,"TargetID":49772,"Directional":true}]},{"ID":17713,"SourceStructureID":84876,"TargetStructureID":26079,"Label":"84876-26079 via Conventional from 102917 -> 102915","Type":"Conventional","Directional":true,"Links":[{"SourceID":102917,"TargetID":102915,"Directional":true}]},{"ID":17714,"SourceStructureID":84886,"TargetStructureID":84830,"Label":"84886-84830 via Conventional from 84887 -> 84885","Type":"Conventional","Directional":true,"Links":[{"SourceID":84887,"TargetID":84885,"Directional":true}]},{"ID":17715,"SourceStructureID":84909,"TargetStructureID":84903,"Label":"84909-84903 via Conventional from 84911 -> 84913","Type":"Conventional","Directional":true,"Links":[{"SourceID":84911,"TargetID":84913,"Directional":true}]},{"ID":17716,"SourceStructureID":84914,"TargetStructureID":84909,"Label":"84914-84909 via Conventional from 84915 -> 84912","Type":"Conventional","Directional":true,"Links":[{"SourceID":84915,"TargetID":84912,"Directional":true}]},{"ID":17717,"SourceStructureID":84919,"TargetStructureID":84830,"Label":"84919-84830 via Conventional from 84921 -> 84920","Type":"Conventional","Directional":true,"Links":[{"SourceID":84921,"TargetID":84920,"Directional":true}]},{"ID":17718,"SourceStructureID":84926,"TargetStructureID":84830,"Label":"84926-84830 via BC Conventional Synapse from 85471 -> 84929","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85471,"TargetID":84929,"Directional":true}]},{"ID":17719,"SourceStructureID":84942,"TargetStructureID":5278,"Label":"84942-5278 via Conventional from 93467 -> 50309","Type":"Conventional","Directional":true,"Links":[{"SourceID":93467,"TargetID":50309,"Directional":true}]},{"ID":17720,"SourceStructureID":84942,"TargetStructureID":6117,"Label":"84942-6117 via Conventional from 84943 -> 84944","Type":"Conventional","Directional":true,"Links":[{"SourceID":84943,"TargetID":84944,"Directional":true}]},{"ID":17721,"SourceStructureID":84942,"TargetStructureID":84946,"Label":"84942-84946 via Conventional from 84945 -> 84947","Type":"Conventional","Directional":true,"Links":[{"SourceID":84945,"TargetID":84947,"Directional":true}]},{"ID":17722,"SourceStructureID":84950,"TargetStructureID":6117,"Label":"84950-6117 via Conventional from 84951 -> 84953","Type":"Conventional","Directional":true,"Links":[{"SourceID":84951,"TargetID":84953,"Directional":true}]},{"ID":17723,"SourceStructureID":84965,"TargetStructureID":142,"Label":"84965-142 via Conventional from 84998 -> 30709","Type":"Conventional","Directional":true,"Links":[{"SourceID":84998,"TargetID":30709,"Directional":true}]},{"ID":17724,"SourceStructureID":84965,"TargetStructureID":84957,"Label":"84965-84957 via Conventional from 84968 -> 84969","Type":"Conventional","Directional":true,"Links":[{"SourceID":84968,"TargetID":84969,"Directional":true}]},{"ID":17725,"SourceStructureID":84980,"TargetStructureID":142,"Label":"84980-142 via Conventional from 84981 -> 49771","Type":"Conventional","Directional":true,"Links":[{"SourceID":84981,"TargetID":49771,"Directional":true}]},{"ID":17726,"SourceStructureID":84980,"TargetStructureID":6117,"Label":"84980-6117 via Conventional from 84993 -> 84994","Type":"Conventional","Directional":true,"Links":[{"SourceID":84993,"TargetID":84994,"Directional":true}]},{"ID":17727,"SourceStructureID":84983,"TargetStructureID":6117,"Label":"84983-6117 via Conventional from 84984 -> 30894, 84985 -> 84986","Type":"Conventional","Directional":true,"Links":[{"SourceID":84984,"TargetID":30894,"Directional":true},{"SourceID":84985,"TargetID":84986,"Directional":true}]},{"ID":17728,"SourceStructureID":85004,"TargetStructureID":142,"Label":"85004-142 via Conventional from 85007 -> 85008","Type":"Conventional","Directional":true,"Links":[{"SourceID":85007,"TargetID":85008,"Directional":true}]},{"ID":17729,"SourceStructureID":85004,"TargetStructureID":6117,"Label":"85004-6117 via Conventional from 85005 -> 85006","Type":"Conventional","Directional":true,"Links":[{"SourceID":85005,"TargetID":85006,"Directional":true}]},{"ID":17730,"SourceStructureID":85015,"TargetStructureID":6117,"Label":"85015-6117 via Conventional from 85016 -> 85017","Type":"Conventional","Directional":true,"Links":[{"SourceID":85016,"TargetID":85017,"Directional":true}]},{"ID":17731,"SourceStructureID":85062,"TargetStructureID":59333,"Label":"85062-59333 via Ribbon Synapse from 85065 -> 85061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85065,"TargetID":85061,"Directional":true}]},{"ID":17732,"SourceStructureID":85068,"TargetStructureID":59333,"Label":"85068-59333 via Conventional from 85069 -> 85067","Type":"Conventional","Directional":true,"Links":[{"SourceID":85069,"TargetID":85067,"Directional":true}]},{"ID":17733,"SourceStructureID":85072,"TargetStructureID":85068,"Label":"85072-85068 via Conventional from 85074 -> 85075","Type":"Conventional","Directional":true,"Links":[{"SourceID":85074,"TargetID":85075,"Directional":true}]},{"ID":17734,"SourceStructureID":85082,"TargetStructureID":59333,"Label":"85082-59333 via Conventional from 85083 -> 85084","Type":"Conventional","Directional":true,"Links":[{"SourceID":85083,"TargetID":85084,"Directional":true}]},{"ID":17735,"SourceStructureID":85088,"TargetStructureID":59333,"Label":"85088-59333 via Ribbon Synapse from 85090 -> 85087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85090,"TargetID":85087,"Directional":true}]},{"ID":17736,"SourceStructureID":85094,"TargetStructureID":5405,"Label":"85094-5405 via BC Conventional Synapse from 85139 -> 85140","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85139,"TargetID":85140,"Directional":true}]},{"ID":17737,"SourceStructureID":85094,"TargetStructureID":59333,"Label":"85094-59333 via Ribbon Synapse from 85107 -> 85108","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85107,"TargetID":85108,"Directional":true}]},{"ID":17738,"SourceStructureID":85094,"TargetStructureID":85096,"Label":"85094-85096 via Ribbon Synapse from 85095 -> 85103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85095,"TargetID":85103,"Directional":true}]},{"ID":17739,"SourceStructureID":85094,"TargetStructureID":85097,"Label":"85094-85097 via Ribbon Synapse from 85095 -> 85102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85095,"TargetID":85102,"Directional":true}]},{"ID":17740,"SourceStructureID":85094,"TargetStructureID":85116,"Label":"85094-85116 via Ribbon Synapse from 85115 -> 85117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85115,"TargetID":85117,"Directional":true}]},{"ID":17741,"SourceStructureID":85100,"TargetStructureID":85096,"Label":"85100-85096 via Conventional from 85101 -> 85098","Type":"Conventional","Directional":true,"Links":[{"SourceID":85101,"TargetID":85098,"Directional":true}]},{"ID":17742,"SourceStructureID":85104,"TargetStructureID":85094,"Label":"85104-85094 via Conventional from 85105 -> 85106","Type":"Conventional","Directional":true,"Links":[{"SourceID":85105,"TargetID":85106,"Directional":true}]},{"ID":17743,"SourceStructureID":85119,"TargetStructureID":5405,"Label":"85119-5405 via Ribbon Synapse from 85132 -> 85138, 85133 -> 85134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85132,"TargetID":85138,"Directional":true},{"SourceID":85133,"TargetID":85134,"Directional":true}]},{"ID":17744,"SourceStructureID":85119,"TargetStructureID":85121,"Label":"85119-85121 via Ribbon Synapse from 85132 -> 85137","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85132,"TargetID":85137,"Directional":true}]},{"ID":17745,"SourceStructureID":85119,"TargetStructureID":85124,"Label":"85119-85124 via Ribbon Synapse from 85123 -> 85125","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85123,"TargetID":85125,"Directional":true}]},{"ID":17746,"SourceStructureID":85128,"TargetStructureID":85121,"Label":"85128-85121 via Conventional from 85129 -> 85127","Type":"Conventional","Directional":true,"Links":[{"SourceID":85129,"TargetID":85127,"Directional":true}]},{"ID":17747,"SourceStructureID":85141,"TargetStructureID":85141,"Label":"85141-85141 via Conventional from 85181 -> 85179","Type":"Conventional","Directional":true,"Links":[{"SourceID":85181,"TargetID":85179,"Directional":true}]},{"ID":17748,"SourceStructureID":85141,"TargetStructureID":85144,"Label":"85141-85144 via Ribbon Synapse from 85143 -> 85145","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85143,"TargetID":85145,"Directional":true}]},{"ID":17749,"SourceStructureID":85141,"TargetStructureID":85149,"Label":"85141-85149 via Ribbon Synapse from 85148 -> 85154, 85150 -> 85151","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85148,"TargetID":85154,"Directional":true},{"SourceID":85150,"TargetID":85151,"Directional":true}]},{"ID":17750,"SourceStructureID":85141,"TargetStructureID":85170,"Label":"85141-85170 via BC Conventional Synapse from 85169 -> 85171","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85169,"TargetID":85171,"Directional":true}]},{"ID":17751,"SourceStructureID":85141,"TargetStructureID":85184,"Label":"85141-85184 via Ribbon Synapse from 85182 -> 85191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85182,"TargetID":85191,"Directional":true}]},{"ID":17752,"SourceStructureID":85141,"TargetStructureID":85185,"Label":"85141-85185 via Ribbon Synapse from 85182 -> 85192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85182,"TargetID":85192,"Directional":true}]},{"ID":17753,"SourceStructureID":85141,"TargetStructureID":85196,"Label":"85141-85196 via Ribbon Synapse from 85195 -> 85203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85195,"TargetID":85203,"Directional":true}]},{"ID":17754,"SourceStructureID":85141,"TargetStructureID":85197,"Label":"85141-85197 via Ribbon Synapse from 85195 -> 85204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85195,"TargetID":85204,"Directional":true}]},{"ID":17755,"SourceStructureID":85141,"TargetStructureID":85206,"Label":"85141-85206 via BC Conventional Synapse from 85205 -> 85207","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85205,"TargetID":85207,"Directional":true}]},{"ID":17756,"SourceStructureID":85141,"TargetStructureID":85214,"Label":"85141-85214 via Ribbon Synapse from 85213 -> 85215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85213,"TargetID":85215,"Directional":true}]},{"ID":17757,"SourceStructureID":85141,"TargetStructureID":85216,"Label":"85141-85216 via Ribbon Synapse from 85213 -> 85217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85213,"TargetID":85217,"Directional":true}]},{"ID":17758,"SourceStructureID":85141,"TargetStructureID":85233,"Label":"85141-85233 via Ribbon Synapse from 85211 -> 85234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85211,"TargetID":85234,"Directional":true}]},{"ID":17759,"SourceStructureID":85141,"TargetStructureID":85250,"Label":"85141-85250 via BC Conventional Synapse from 85247 -> 85251","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85247,"TargetID":85251,"Directional":true}]},{"ID":17760,"SourceStructureID":85141,"TargetStructureID":85258,"Label":"85141-85258 via Ribbon Synapse from 85257 -> 85263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85257,"TargetID":85263,"Directional":true}]},{"ID":17761,"SourceStructureID":85141,"TargetStructureID":85259,"Label":"85141-85259 via Ribbon Synapse from 85257 -> 85261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85257,"TargetID":85261,"Directional":true}]},{"ID":17762,"SourceStructureID":85141,"TargetStructureID":85289,"Label":"85141-85289 via Ribbon Synapse from 85288 -> 85290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85288,"TargetID":85290,"Directional":true}]},{"ID":17763,"SourceStructureID":85141,"TargetStructureID":85333,"Label":"85141-85333 via Ribbon Synapse from 85332 -> 85335","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85332,"TargetID":85335,"Directional":true}]},{"ID":17764,"SourceStructureID":85141,"TargetStructureID":85334,"Label":"85141-85334 via Ribbon Synapse from 85332 -> 85336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85332,"TargetID":85336,"Directional":true}]},{"ID":17765,"SourceStructureID":85141,"TargetStructureID":85346,"Label":"85141-85346 via Ribbon Synapse from 85278 -> 85347","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85278,"TargetID":85347,"Directional":true}]},{"ID":17766,"SourceStructureID":85141,"TargetStructureID":85357,"Label":"85141-85357 via Ribbon Synapse from 85294 -> 85358","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85294,"TargetID":85358,"Directional":true}]},{"ID":17767,"SourceStructureID":85141,"TargetStructureID":85372,"Label":"85141-85372 via Ribbon Synapse from 85371 -> 85373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85371,"TargetID":85373,"Directional":true}]},{"ID":17768,"SourceStructureID":85141,"TargetStructureID":85388,"Label":"85141-85388 via Ribbon Synapse from 85246 -> 85389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85246,"TargetID":85389,"Directional":true}]},{"ID":17769,"SourceStructureID":85141,"TargetStructureID":85391,"Label":"85141-85391 via Ribbon Synapse from 85245 -> 85392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85245,"TargetID":85392,"Directional":true}]},{"ID":17770,"SourceStructureID":85144,"TargetStructureID":85141,"Label":"85144-85141 via Conventional from 85146 -> 85147","Type":"Conventional","Directional":true,"Links":[{"SourceID":85146,"TargetID":85147,"Directional":true}]},{"ID":17771,"SourceStructureID":85149,"TargetStructureID":85141,"Label":"85149-85141 via Conventional from 85156 -> 85155","Type":"Conventional","Directional":true,"Links":[{"SourceID":85156,"TargetID":85155,"Directional":true}]},{"ID":17772,"SourceStructureID":85172,"TargetStructureID":85141,"Label":"85172-85141 via Conventional from 85175 -> 85176","Type":"Conventional","Directional":true,"Links":[{"SourceID":85175,"TargetID":85176,"Directional":true}]},{"ID":17773,"SourceStructureID":85184,"TargetStructureID":85141,"Label":"85184-85141 via Conventional from 85188 -> 85183","Type":"Conventional","Directional":true,"Links":[{"SourceID":85188,"TargetID":85183,"Directional":true}]},{"ID":17774,"SourceStructureID":85185,"TargetStructureID":85184,"Label":"85185-85184 via Conventional from 85186 -> 85187","Type":"Conventional","Directional":true,"Links":[{"SourceID":85186,"TargetID":85187,"Directional":true}]},{"ID":17775,"SourceStructureID":85197,"TargetStructureID":85200,"Label":"85197-85200 via Conventional from 85198 -> 85202","Type":"Conventional","Directional":true,"Links":[{"SourceID":85198,"TargetID":85202,"Directional":true}]},{"ID":17776,"SourceStructureID":85214,"TargetStructureID":85141,"Label":"85214-85141 via Conventional from 85395 -> 85396","Type":"Conventional","Directional":true,"Links":[{"SourceID":85395,"TargetID":85396,"Directional":true}]},{"ID":17777,"SourceStructureID":85231,"TargetStructureID":85141,"Label":"85231-85141 via Conventional from 85232 -> 85230","Type":"Conventional","Directional":true,"Links":[{"SourceID":85232,"TargetID":85230,"Directional":true}]},{"ID":17778,"SourceStructureID":85259,"TargetStructureID":85141,"Label":"85259-85141 via Conventional from 85260 -> 85262","Type":"Conventional","Directional":true,"Links":[{"SourceID":85260,"TargetID":85262,"Directional":true}]},{"ID":17779,"SourceStructureID":85266,"TargetStructureID":6117,"Label":"85266-6117 via Conventional from 126354 -> 126355","Type":"Conventional","Directional":true,"Links":[{"SourceID":126354,"TargetID":126355,"Directional":true}]},{"ID":17780,"SourceStructureID":85284,"TargetStructureID":6117,"Label":"85284-6117 via Conventional from 85285 -> 85287","Type":"Conventional","Directional":true,"Links":[{"SourceID":85285,"TargetID":85287,"Directional":true}]},{"ID":17781,"SourceStructureID":85307,"TargetStructureID":6117,"Label":"85307-6117 via Conventional from 85309 -> 85304","Type":"Conventional","Directional":true,"Links":[{"SourceID":85309,"TargetID":85304,"Directional":true}]},{"ID":17782,"SourceStructureID":85311,"TargetStructureID":6117,"Label":"85311-6117 via Conventional from 85253 -> 30898, 85312 -> 85313","Type":"Conventional","Directional":true,"Links":[{"SourceID":85253,"TargetID":30898,"Directional":true},{"SourceID":85312,"TargetID":85313,"Directional":true}]},{"ID":17783,"SourceStructureID":85314,"TargetStructureID":6117,"Label":"85314-6117 via Conventional from 85315 -> 85316","Type":"Conventional","Directional":true,"Links":[{"SourceID":85315,"TargetID":85316,"Directional":true}]},{"ID":17784,"SourceStructureID":85334,"TargetStructureID":85141,"Label":"85334-85141 via Conventional from 85340 -> 85341","Type":"Conventional","Directional":true,"Links":[{"SourceID":85340,"TargetID":85341,"Directional":true}]},{"ID":17785,"SourceStructureID":85338,"TargetStructureID":85334,"Label":"85338-85334 via Conventional from 85339 -> 85337","Type":"Conventional","Directional":true,"Links":[{"SourceID":85339,"TargetID":85337,"Directional":true}]},{"ID":17786,"SourceStructureID":85348,"TargetStructureID":85250,"Label":"85348-85250 via Conventional from 85349 -> 85256","Type":"Conventional","Directional":true,"Links":[{"SourceID":85349,"TargetID":85256,"Directional":true}]},{"ID":17787,"SourceStructureID":85369,"TargetStructureID":85141,"Label":"85369-85141 via Conventional from 85370 -> 85368","Type":"Conventional","Directional":true,"Links":[{"SourceID":85370,"TargetID":85368,"Directional":true}]},{"ID":17788,"SourceStructureID":85377,"TargetStructureID":85141,"Label":"85377-85141 via Conventional from 85378 -> 85376","Type":"Conventional","Directional":true,"Links":[{"SourceID":85378,"TargetID":85376,"Directional":true}]},{"ID":17789,"SourceStructureID":85400,"TargetStructureID":85141,"Label":"85400-85141 via Conventional from 85402 -> 85399","Type":"Conventional","Directional":true,"Links":[{"SourceID":85402,"TargetID":85399,"Directional":true}]},{"ID":17790,"SourceStructureID":85404,"TargetStructureID":142,"Label":"85404-142 via Conventional from 85409 -> 49778","Type":"Conventional","Directional":true,"Links":[{"SourceID":85409,"TargetID":49778,"Directional":true}]},{"ID":17791,"SourceStructureID":85421,"TargetStructureID":6117,"Label":"85421-6117 via Conventional from 85422 -> 85423, 100920 -> 100919","Type":"Conventional","Directional":true,"Links":[{"SourceID":85422,"TargetID":85423,"Directional":true},{"SourceID":100920,"TargetID":100919,"Directional":true}]},{"ID":17792,"SourceStructureID":85421,"TargetStructureID":54287,"Label":"85421-54287 via Conventional from 85424 -> 85425","Type":"Conventional","Directional":true,"Links":[{"SourceID":85424,"TargetID":85425,"Directional":true}]},{"ID":17793,"SourceStructureID":85426,"TargetStructureID":6117,"Label":"85426-6117 via Conventional from 85427 -> 85428","Type":"Conventional","Directional":true,"Links":[{"SourceID":85427,"TargetID":85428,"Directional":true}]},{"ID":17794,"SourceStructureID":85429,"TargetStructureID":6117,"Label":"85429-6117 via Conventional from 85430 -> 85431","Type":"Conventional","Directional":true,"Links":[{"SourceID":85430,"TargetID":85431,"Directional":true}]},{"ID":17795,"SourceStructureID":85442,"TargetStructureID":6117,"Label":"85442-6117 via Conventional from 85443 -> 85444","Type":"Conventional","Directional":true,"Links":[{"SourceID":85443,"TargetID":85444,"Directional":true}]},{"ID":17796,"SourceStructureID":85445,"TargetStructureID":6997,"Label":"85445-6997 via Conventional from 85446 -> 21960","Type":"Conventional","Directional":true,"Links":[{"SourceID":85446,"TargetID":21960,"Directional":true}]},{"ID":17797,"SourceStructureID":85450,"TargetStructureID":84830,"Label":"85450-84830 via Conventional from 85451 -> 85449","Type":"Conventional","Directional":true,"Links":[{"SourceID":85451,"TargetID":85449,"Directional":true}]},{"ID":17798,"SourceStructureID":85455,"TargetStructureID":84830,"Label":"85455-84830 via Conventional from 85458 -> 85459","Type":"Conventional","Directional":true,"Links":[{"SourceID":85458,"TargetID":85459,"Directional":true}]},{"ID":17799,"SourceStructureID":85473,"TargetStructureID":84830,"Label":"85473-84830 via BC Conventional Synapse from 85476 -> 85475","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85476,"TargetID":85475,"Directional":true}]},{"ID":17800,"SourceStructureID":85483,"TargetStructureID":84830,"Label":"85483-84830 via Conventional from 85484 -> 85480","Type":"Conventional","Directional":true,"Links":[{"SourceID":85484,"TargetID":85480,"Directional":true}]},{"ID":17801,"SourceStructureID":85496,"TargetStructureID":593,"Label":"85496-593 via Conventional from 85499 -> 85500","Type":"Conventional","Directional":true,"Links":[{"SourceID":85499,"TargetID":85500,"Directional":true}]},{"ID":17802,"SourceStructureID":85510,"TargetStructureID":593,"Label":"85510-593 via Conventional from 90043 -> 90044","Type":"Conventional","Directional":true,"Links":[{"SourceID":90043,"TargetID":90044,"Directional":true}]},{"ID":17803,"SourceStructureID":85523,"TargetStructureID":593,"Label":"85523-593 via Conventional from 85524 -> 85525","Type":"Conventional","Directional":true,"Links":[{"SourceID":85524,"TargetID":85525,"Directional":true}]},{"ID":17804,"SourceStructureID":85526,"TargetStructureID":593,"Label":"85526-593 via Conventional from 85527 -> 85528","Type":"Conventional","Directional":true,"Links":[{"SourceID":85527,"TargetID":85528,"Directional":true}]},{"ID":17805,"SourceStructureID":85543,"TargetStructureID":5439,"Label":"85543-5439 via Conventional from 85544 -> 85545","Type":"Conventional","Directional":true,"Links":[{"SourceID":85544,"TargetID":85545,"Directional":true}]},{"ID":17806,"SourceStructureID":85546,"TargetStructureID":59229,"Label":"85546-59229 via Ribbon Synapse from 85548 -> 85542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85548,"TargetID":85542,"Directional":true}]},{"ID":17807,"SourceStructureID":85571,"TargetStructureID":593,"Label":"85571-593 via Conventional from 85584 -> 85585","Type":"Conventional","Directional":true,"Links":[{"SourceID":85584,"TargetID":85585,"Directional":true}]},{"ID":17808,"SourceStructureID":85601,"TargetStructureID":5439,"Label":"85601-5439 via Conventional from 85602 -> 85599","Type":"Conventional","Directional":true,"Links":[{"SourceID":85602,"TargetID":85599,"Directional":true}]},{"ID":17809,"SourceStructureID":85620,"TargetStructureID":5439,"Label":"85620-5439 via Conventional from 85621 -> 85619","Type":"Conventional","Directional":true,"Links":[{"SourceID":85621,"TargetID":85619,"Directional":true}]},{"ID":17810,"SourceStructureID":85622,"TargetStructureID":5439,"Label":"85622-5439 via Conventional from 85625 -> 85626","Type":"Conventional","Directional":true,"Links":[{"SourceID":85625,"TargetID":85626,"Directional":true}]},{"ID":17811,"SourceStructureID":85658,"TargetStructureID":6117,"Label":"85658-6117 via Conventional from 85659 -> 85660","Type":"Conventional","Directional":true,"Links":[{"SourceID":85659,"TargetID":85660,"Directional":true}]},{"ID":17812,"SourceStructureID":85666,"TargetStructureID":6117,"Label":"85666-6117 via Conventional from 85883 -> 85884","Type":"Conventional","Directional":true,"Links":[{"SourceID":85883,"TargetID":85884,"Directional":true}]},{"ID":17813,"SourceStructureID":85671,"TargetStructureID":5439,"Label":"85671-5439 via Conventional from 85672 -> 85670","Type":"Conventional","Directional":true,"Links":[{"SourceID":85672,"TargetID":85670,"Directional":true}]},{"ID":17814,"SourceStructureID":85680,"TargetStructureID":5439,"Label":"85680-5439 via Conventional from 85681 -> 85679","Type":"Conventional","Directional":true,"Links":[{"SourceID":85681,"TargetID":85679,"Directional":true}]},{"ID":17815,"SourceStructureID":85683,"TargetStructureID":5439,"Label":"85683-5439 via Conventional from 85684 -> 85682","Type":"Conventional","Directional":true,"Links":[{"SourceID":85684,"TargetID":85682,"Directional":true}]},{"ID":17816,"SourceStructureID":85691,"TargetStructureID":5439,"Label":"85691-5439 via Conventional from 85692 -> 85690","Type":"Conventional","Directional":true,"Links":[{"SourceID":85692,"TargetID":85690,"Directional":true}]},{"ID":17817,"SourceStructureID":85695,"TargetStructureID":5439,"Label":"85695-5439 via Conventional from 85696 -> 85694","Type":"Conventional","Directional":true,"Links":[{"SourceID":85696,"TargetID":85694,"Directional":true}]},{"ID":17818,"SourceStructureID":85698,"TargetStructureID":5439,"Label":"85698-5439 via Conventional from 85699 -> 85697","Type":"Conventional","Directional":true,"Links":[{"SourceID":85699,"TargetID":85697,"Directional":true}]},{"ID":17819,"SourceStructureID":85703,"TargetStructureID":5439,"Label":"85703-5439 via Conventional from 85704 -> 85702","Type":"Conventional","Directional":true,"Links":[{"SourceID":85704,"TargetID":85702,"Directional":true}]},{"ID":17820,"SourceStructureID":85730,"TargetStructureID":71519,"Label":"85730-71519 via Conventional from 85744 -> 85745","Type":"Conventional","Directional":true,"Links":[{"SourceID":85744,"TargetID":85745,"Directional":true}]},{"ID":17821,"SourceStructureID":85730,"TargetStructureID":85629,"Label":"85730-85629 via Conventional from 85733 -> 85729","Type":"Conventional","Directional":true,"Links":[{"SourceID":85733,"TargetID":85729,"Directional":true}]},{"ID":17822,"SourceStructureID":85735,"TargetStructureID":5439,"Label":"85735-5439 via Conventional from 85736 -> 85734","Type":"Conventional","Directional":true,"Links":[{"SourceID":85736,"TargetID":85734,"Directional":true}]},{"ID":17823,"SourceStructureID":85740,"TargetStructureID":85730,"Label":"85740-85730 via Conventional from 85741 -> 85739","Type":"Conventional","Directional":true,"Links":[{"SourceID":85741,"TargetID":85739,"Directional":true}]},{"ID":17824,"SourceStructureID":85748,"TargetStructureID":483,"Label":"85748-483 via Conventional from 85761 -> 26825, 103536 -> 103537","Type":"Conventional","Directional":true,"Links":[{"SourceID":85761,"TargetID":26825,"Directional":true},{"SourceID":103536,"TargetID":103537,"Directional":true}]},{"ID":17825,"SourceStructureID":85748,"TargetStructureID":485,"Label":"85748-485 via Conventional from 85777 -> 85778, 85779 -> 85781, 85785 -> 100227","Type":"Conventional","Directional":true,"Links":[{"SourceID":85777,"TargetID":85778,"Directional":true},{"SourceID":85779,"TargetID":85781,"Directional":true},{"SourceID":85785,"TargetID":100227,"Directional":true}]},{"ID":17826,"SourceStructureID":85748,"TargetStructureID":85775,"Label":"85748-85775 via Conventional from 85774 -> 85776","Type":"Conventional","Directional":true,"Links":[{"SourceID":85774,"TargetID":85776,"Directional":true}]},{"ID":17827,"SourceStructureID":85748,"TargetStructureID":85783,"Label":"85748-85783 via Conventional from 85782 -> 85784","Type":"Conventional","Directional":true,"Links":[{"SourceID":85782,"TargetID":85784,"Directional":true}]},{"ID":17828,"SourceStructureID":85750,"TargetStructureID":85748,"Label":"85750-85748 via Conventional from 85751 -> 85749","Type":"Conventional","Directional":true,"Links":[{"SourceID":85751,"TargetID":85749,"Directional":true}]},{"ID":17829,"SourceStructureID":85755,"TargetStructureID":85748,"Label":"85755-85748 via Conventional from 85756 -> 85754","Type":"Conventional","Directional":true,"Links":[{"SourceID":85756,"TargetID":85754,"Directional":true}]},{"ID":17830,"SourceStructureID":85771,"TargetStructureID":85748,"Label":"85771-85748 via Conventional from 85772 -> 85770","Type":"Conventional","Directional":true,"Links":[{"SourceID":85772,"TargetID":85770,"Directional":true}]},{"ID":17831,"SourceStructureID":85792,"TargetStructureID":85730,"Label":"85792-85730 via Ribbon Synapse from 85794 -> 85791, 85798 -> 85797","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85794,"TargetID":85791,"Directional":true},{"SourceID":85798,"TargetID":85797,"Directional":true}]},{"ID":17832,"SourceStructureID":85852,"TargetStructureID":85629,"Label":"85852-85629 via Conventional from 85853 -> 85850, 85855 -> 85854","Type":"Conventional","Directional":true,"Links":[{"SourceID":85853,"TargetID":85850,"Directional":true},{"SourceID":85855,"TargetID":85854,"Directional":true}]},{"ID":17833,"SourceStructureID":85861,"TargetStructureID":85856,"Label":"85861-85856 via Conventional from 85862 -> 85858","Type":"Conventional","Directional":true,"Links":[{"SourceID":85862,"TargetID":85858,"Directional":true}]},{"ID":17834,"SourceStructureID":85906,"TargetStructureID":6117,"Label":"85906-6117 via Conventional from 85908 -> 85918","Type":"Conventional","Directional":true,"Links":[{"SourceID":85908,"TargetID":85918,"Directional":true}]},{"ID":17835,"SourceStructureID":85906,"TargetStructureID":85909,"Label":"85906-85909 via Conventional from 85908 -> 85916","Type":"Conventional","Directional":true,"Links":[{"SourceID":85908,"TargetID":85916,"Directional":true}]},{"ID":17836,"SourceStructureID":85924,"TargetStructureID":6117,"Label":"85924-6117 via Conventional from 85926 -> 85927","Type":"Conventional","Directional":true,"Links":[{"SourceID":85926,"TargetID":85927,"Directional":true}]},{"ID":17837,"SourceStructureID":85958,"TargetStructureID":6117,"Label":"85958-6117 via Conventional from 85963 -> 58807","Type":"Conventional","Directional":true,"Links":[{"SourceID":85963,"TargetID":58807,"Directional":true}]},{"ID":17838,"SourceStructureID":85979,"TargetStructureID":6117,"Label":"85979-6117 via Conventional from 85980 -> 85981","Type":"Conventional","Directional":true,"Links":[{"SourceID":85980,"TargetID":85981,"Directional":true}]},{"ID":17839,"SourceStructureID":85982,"TargetStructureID":6117,"Label":"85982-6117 via Conventional from 85983 -> 58814","Type":"Conventional","Directional":true,"Links":[{"SourceID":85983,"TargetID":58814,"Directional":true}]},{"ID":17840,"SourceStructureID":85997,"TargetStructureID":6117,"Label":"85997-6117 via Conventional from 147479 -> 147478","Type":"Conventional","Directional":true,"Links":[{"SourceID":147479,"TargetID":147478,"Directional":true}]},{"ID":17841,"SourceStructureID":86001,"TargetStructureID":84790,"Label":"86001-84790 via Conventional from 86002 -> 86003","Type":"Conventional","Directional":true,"Links":[{"SourceID":86002,"TargetID":86003,"Directional":true}]},{"ID":17842,"SourceStructureID":86036,"TargetStructureID":6117,"Label":"86036-6117 via Conventional from 86037 -> 10536, 86039 -> 10533","Type":"Conventional","Directional":true,"Links":[{"SourceID":86037,"TargetID":10536,"Directional":true},{"SourceID":86039,"TargetID":10533,"Directional":true}]},{"ID":17843,"SourceStructureID":86045,"TargetStructureID":86047,"Label":"86045-86047 via Conventional from 86046 -> 86048","Type":"Conventional","Directional":true,"Links":[{"SourceID":86046,"TargetID":86048,"Directional":true}]},{"ID":17844,"SourceStructureID":86050,"TargetStructureID":6117,"Label":"86050-6117 via Conventional from 86052 -> 10535, 86065 -> 86066","Type":"Conventional","Directional":true,"Links":[{"SourceID":86052,"TargetID":10535,"Directional":true},{"SourceID":86065,"TargetID":86066,"Directional":true}]},{"ID":17845,"SourceStructureID":86060,"TargetStructureID":6117,"Label":"86060-6117 via Conventional from 86061 -> 86015","Type":"Conventional","Directional":true,"Links":[{"SourceID":86061,"TargetID":86015,"Directional":true}]},{"ID":17846,"SourceStructureID":86068,"TargetStructureID":6117,"Label":"86068-6117 via Conventional from 86069 -> 86067","Type":"Conventional","Directional":true,"Links":[{"SourceID":86069,"TargetID":86067,"Directional":true}]},{"ID":17847,"SourceStructureID":86098,"TargetStructureID":6117,"Label":"86098-6117 via Conventional from 86100 -> 20567","Type":"Conventional","Directional":true,"Links":[{"SourceID":86100,"TargetID":20567,"Directional":true}]},{"ID":17848,"SourceStructureID":86098,"TargetStructureID":86110,"Label":"86098-86110 via Conventional from 86118 -> 86119","Type":"Conventional","Directional":true,"Links":[{"SourceID":86118,"TargetID":86119,"Directional":true}]},{"ID":17849,"SourceStructureID":86114,"TargetStructureID":86110,"Label":"86114-86110 via Conventional from 86115 -> 86116","Type":"Conventional","Directional":true,"Links":[{"SourceID":86115,"TargetID":86116,"Directional":true}]},{"ID":17850,"SourceStructureID":86128,"TargetStructureID":6117,"Label":"86128-6117 via Conventional from 86130 -> 86131","Type":"Conventional","Directional":true,"Links":[{"SourceID":86130,"TargetID":86131,"Directional":true}]},{"ID":17851,"SourceStructureID":86128,"TargetStructureID":86110,"Label":"86128-86110 via Conventional from 86129 -> 86132","Type":"Conventional","Directional":true,"Links":[{"SourceID":86129,"TargetID":86132,"Directional":true}]},{"ID":17852,"SourceStructureID":86134,"TargetStructureID":58592,"Label":"86134-58592 via Conventional from 86135 -> 58635","Type":"Conventional","Directional":true,"Links":[{"SourceID":86135,"TargetID":58635,"Directional":true}]},{"ID":17853,"SourceStructureID":86134,"TargetStructureID":86110,"Label":"86134-86110 via Conventional from 86136 -> 86137","Type":"Conventional","Directional":true,"Links":[{"SourceID":86136,"TargetID":86137,"Directional":true}]},{"ID":17854,"SourceStructureID":86162,"TargetStructureID":6117,"Label":"86162-6117 via Conventional from 86164 -> 20575, 86169 -> 86170","Type":"Conventional","Directional":true,"Links":[{"SourceID":86164,"TargetID":20575,"Directional":true},{"SourceID":86169,"TargetID":86170,"Directional":true}]},{"ID":17855,"SourceStructureID":86165,"TargetStructureID":58714,"Label":"86165-58714 via Conventional from 86166 -> 58721","Type":"Conventional","Directional":true,"Links":[{"SourceID":86166,"TargetID":58721,"Directional":true}]},{"ID":17856,"SourceStructureID":86171,"TargetStructureID":86174,"Label":"86171-86174 via Conventional from 86176 -> 86175","Type":"Conventional","Directional":true,"Links":[{"SourceID":86176,"TargetID":86175,"Directional":true}]},{"ID":17857,"SourceStructureID":86192,"TargetStructureID":6117,"Label":"86192-6117 via Conventional from 86193 -> 86200","Type":"Conventional","Directional":true,"Links":[{"SourceID":86193,"TargetID":86200,"Directional":true}]},{"ID":17858,"SourceStructureID":86192,"TargetStructureID":32035,"Label":"86192-32035 via Conventional from 86194 -> 86196","Type":"Conventional","Directional":true,"Links":[{"SourceID":86194,"TargetID":86196,"Directional":true}]},{"ID":17859,"SourceStructureID":86201,"TargetStructureID":35894,"Label":"86201-35894 via Conventional from 86207 -> 35932","Type":"Conventional","Directional":true,"Links":[{"SourceID":86207,"TargetID":35932,"Directional":true}]},{"ID":17860,"SourceStructureID":86205,"TargetStructureID":6117,"Label":"86205-6117 via Conventional from 86206 -> 86204","Type":"Conventional","Directional":true,"Links":[{"SourceID":86206,"TargetID":86204,"Directional":true}]},{"ID":17861,"SourceStructureID":86215,"TargetStructureID":86218,"Label":"86215-86218 via Conventional from 86217 -> 86219","Type":"Conventional","Directional":true,"Links":[{"SourceID":86217,"TargetID":86219,"Directional":true}]},{"ID":17862,"SourceStructureID":86218,"TargetStructureID":6117,"Label":"86218-6117 via Conventional from 86227 -> 86082","Type":"Conventional","Directional":true,"Links":[{"SourceID":86227,"TargetID":86082,"Directional":true}]},{"ID":17863,"SourceStructureID":86218,"TargetStructureID":6300,"Label":"86218-6300 via Conventional from 86220 -> 86221","Type":"Conventional","Directional":true,"Links":[{"SourceID":86220,"TargetID":86221,"Directional":true}]},{"ID":17864,"SourceStructureID":86224,"TargetStructureID":6117,"Label":"86224-6117 via Conventional from 86226 -> 86225","Type":"Conventional","Directional":true,"Links":[{"SourceID":86226,"TargetID":86225,"Directional":true}]},{"ID":17865,"SourceStructureID":86228,"TargetStructureID":6117,"Label":"86228-6117 via Conventional from 86229 -> 86230","Type":"Conventional","Directional":true,"Links":[{"SourceID":86229,"TargetID":86230,"Directional":true}]},{"ID":17866,"SourceStructureID":86231,"TargetStructureID":6117,"Label":"86231-6117 via Conventional from 86232 -> 20586","Type":"Conventional","Directional":true,"Links":[{"SourceID":86232,"TargetID":20586,"Directional":true}]},{"ID":17867,"SourceStructureID":86231,"TargetStructureID":7594,"Label":"86231-7594 via Conventional from 86233 -> 86236","Type":"Conventional","Directional":true,"Links":[{"SourceID":86233,"TargetID":86236,"Directional":true}]},{"ID":17868,"SourceStructureID":86239,"TargetStructureID":4877,"Label":"86239-4877 via Conventional from 86240 -> 46579","Type":"Conventional","Directional":true,"Links":[{"SourceID":86240,"TargetID":46579,"Directional":true}]},{"ID":17869,"SourceStructureID":86244,"TargetStructureID":6117,"Label":"86244-6117 via Conventional from 86245 -> 20588","Type":"Conventional","Directional":true,"Links":[{"SourceID":86245,"TargetID":20588,"Directional":true}]},{"ID":17870,"SourceStructureID":86256,"TargetStructureID":3756,"Label":"86256-3756 via Conventional from 120455 -> 116216","Type":"Conventional","Directional":true,"Links":[{"SourceID":120455,"TargetID":116216,"Directional":true}]},{"ID":17871,"SourceStructureID":86256,"TargetStructureID":6117,"Label":"86256-6117 via Conventional from 86257 -> 86258","Type":"Conventional","Directional":true,"Links":[{"SourceID":86257,"TargetID":86258,"Directional":true}]},{"ID":17872,"SourceStructureID":86260,"TargetStructureID":6117,"Label":"86260-6117 via Conventional from 86261 -> 86259","Type":"Conventional","Directional":true,"Links":[{"SourceID":86261,"TargetID":86259,"Directional":true}]},{"ID":17873,"SourceStructureID":86268,"TargetStructureID":6117,"Label":"86268-6117 via Conventional from 86270 -> 86271","Type":"Conventional","Directional":true,"Links":[{"SourceID":86270,"TargetID":86271,"Directional":true}]},{"ID":17874,"SourceStructureID":86276,"TargetStructureID":6117,"Label":"86276-6117 via Conventional from 86277 -> 86278","Type":"Conventional","Directional":true,"Links":[{"SourceID":86277,"TargetID":86278,"Directional":true}]},{"ID":17875,"SourceStructureID":86311,"TargetStructureID":142,"Label":"86311-142 via Conventional from 126025 -> 126024","Type":"Conventional","Directional":true,"Links":[{"SourceID":126025,"TargetID":126024,"Directional":true}]},{"ID":17876,"SourceStructureID":86315,"TargetStructureID":142,"Label":"86315-142 via Conventional from 86318 -> 31800","Type":"Conventional","Directional":true,"Links":[{"SourceID":86318,"TargetID":31800,"Directional":true}]},{"ID":17877,"SourceStructureID":86315,"TargetStructureID":606,"Label":"86315-606 via Conventional from 99409 -> 99410, 99411 -> 39887","Type":"Conventional","Directional":true,"Links":[{"SourceID":99409,"TargetID":99410,"Directional":true},{"SourceID":99411,"TargetID":39887,"Directional":true}]},{"ID":17878,"SourceStructureID":86315,"TargetStructureID":6117,"Label":"86315-6117 via Conventional from 86316 -> 86317","Type":"Conventional","Directional":true,"Links":[{"SourceID":86316,"TargetID":86317,"Directional":true}]},{"ID":17879,"SourceStructureID":86327,"TargetStructureID":142,"Label":"86327-142 via Conventional from 86328 -> 31798","Type":"Conventional","Directional":true,"Links":[{"SourceID":86328,"TargetID":31798,"Directional":true}]},{"ID":17880,"SourceStructureID":86334,"TargetStructureID":142,"Label":"86334-142 via Conventional from 86335 -> 31796","Type":"Conventional","Directional":true,"Links":[{"SourceID":86335,"TargetID":31796,"Directional":true}]},{"ID":17881,"SourceStructureID":86353,"TargetStructureID":6117,"Label":"86353-6117 via Conventional from 86354 -> 86355","Type":"Conventional","Directional":true,"Links":[{"SourceID":86354,"TargetID":86355,"Directional":true}]},{"ID":17882,"SourceStructureID":86356,"TargetStructureID":86624,"Label":"86356-86624 via Conventional from 86623 -> 86625","Type":"Conventional","Directional":true,"Links":[{"SourceID":86623,"TargetID":86625,"Directional":true}]},{"ID":17883,"SourceStructureID":86369,"TargetStructureID":6117,"Label":"86369-6117 via Conventional from 86371 -> 86368","Type":"Conventional","Directional":true,"Links":[{"SourceID":86371,"TargetID":86368,"Directional":true}]},{"ID":17884,"SourceStructureID":86369,"TargetStructureID":58714,"Label":"86369-58714 via Conventional from 86370 -> 58735","Type":"Conventional","Directional":true,"Links":[{"SourceID":86370,"TargetID":58735,"Directional":true}]},{"ID":17885,"SourceStructureID":86389,"TargetStructureID":6117,"Label":"86389-6117 via Conventional from 86390 -> 86393","Type":"Conventional","Directional":true,"Links":[{"SourceID":86390,"TargetID":86393,"Directional":true}]},{"ID":17886,"SourceStructureID":86389,"TargetStructureID":86391,"Label":"86389-86391 via Conventional from 86390 -> 86392","Type":"Conventional","Directional":true,"Links":[{"SourceID":86390,"TargetID":86392,"Directional":true}]},{"ID":17887,"SourceStructureID":86420,"TargetStructureID":6117,"Label":"86420-6117 via Conventional from 86421 -> 30912","Type":"Conventional","Directional":true,"Links":[{"SourceID":86421,"TargetID":30912,"Directional":true}]},{"ID":17888,"SourceStructureID":86438,"TargetStructureID":40602,"Label":"86438-40602 via Conventional from 86439 -> 41445, 86440 -> 41444","Type":"Conventional","Directional":true,"Links":[{"SourceID":86439,"TargetID":41445,"Directional":true},{"SourceID":86440,"TargetID":41444,"Directional":true}]},{"ID":17889,"SourceStructureID":86466,"TargetStructureID":6117,"Label":"86466-6117 via Conventional from 86468 -> 86469","Type":"Conventional","Directional":true,"Links":[{"SourceID":86468,"TargetID":86469,"Directional":true}]},{"ID":17890,"SourceStructureID":86473,"TargetStructureID":5374,"Label":"86473-5374 via Conventional from 86476 -> 69023","Type":"Conventional","Directional":true,"Links":[{"SourceID":86476,"TargetID":69023,"Directional":true}]},{"ID":17891,"SourceStructureID":86473,"TargetStructureID":6117,"Label":"86473-6117 via Conventional from 86474 -> 86091","Type":"Conventional","Directional":true,"Links":[{"SourceID":86474,"TargetID":86091,"Directional":true}]},{"ID":17892,"SourceStructureID":86479,"TargetStructureID":86481,"Label":"86479-86481 via Conventional from 86483 -> 86482","Type":"Conventional","Directional":true,"Links":[{"SourceID":86483,"TargetID":86482,"Directional":true}]},{"ID":17893,"SourceStructureID":86485,"TargetStructureID":6117,"Label":"86485-6117 via Conventional from 86486 -> 86487","Type":"Conventional","Directional":true,"Links":[{"SourceID":86486,"TargetID":86487,"Directional":true}]},{"ID":17894,"SourceStructureID":86496,"TargetStructureID":6117,"Label":"86496-6117 via Conventional from 86497 -> 86498","Type":"Conventional","Directional":true,"Links":[{"SourceID":86497,"TargetID":86498,"Directional":true}]},{"ID":17895,"SourceStructureID":86512,"TargetStructureID":6117,"Label":"86512-6117 via Conventional from 86513 -> 30918","Type":"Conventional","Directional":true,"Links":[{"SourceID":86513,"TargetID":30918,"Directional":true}]},{"ID":17896,"SourceStructureID":86563,"TargetStructureID":6117,"Label":"86563-6117 via Conventional from 86567 -> 86568","Type":"Conventional","Directional":true,"Links":[{"SourceID":86567,"TargetID":86568,"Directional":true}]},{"ID":17897,"SourceStructureID":86580,"TargetStructureID":308,"Label":"86580-308 via Conventional from 86581 -> 86578","Type":"Conventional","Directional":true,"Links":[{"SourceID":86581,"TargetID":86578,"Directional":true}]},{"ID":17898,"SourceStructureID":86582,"TargetStructureID":7594,"Label":"86582-7594 via Conventional from 86589 -> 86590","Type":"Conventional","Directional":true,"Links":[{"SourceID":86589,"TargetID":86590,"Directional":true}]},{"ID":17899,"SourceStructureID":86607,"TargetStructureID":6117,"Label":"86607-6117 via Conventional from 86608 -> 30919","Type":"Conventional","Directional":true,"Links":[{"SourceID":86608,"TargetID":30919,"Directional":true}]},{"ID":17900,"SourceStructureID":86609,"TargetStructureID":6117,"Label":"86609-6117 via Conventional from 86611 -> 30920","Type":"Conventional","Directional":true,"Links":[{"SourceID":86611,"TargetID":30920,"Directional":true}]},{"ID":17901,"SourceStructureID":86614,"TargetStructureID":6117,"Label":"86614-6117 via Conventional from 86617 -> 30923","Type":"Conventional","Directional":true,"Links":[{"SourceID":86617,"TargetID":30923,"Directional":true}]},{"ID":17902,"SourceStructureID":86615,"TargetStructureID":6117,"Label":"86615-6117 via Conventional from 86616 -> 30921","Type":"Conventional","Directional":true,"Links":[{"SourceID":86616,"TargetID":30921,"Directional":true}]},{"ID":17903,"SourceStructureID":86626,"TargetStructureID":308,"Label":"86626-308 via Conventional from 86627 -> 31861","Type":"Conventional","Directional":true,"Links":[{"SourceID":86627,"TargetID":31861,"Directional":true}]},{"ID":17904,"SourceStructureID":86628,"TargetStructureID":308,"Label":"86628-308 via Conventional from 86629 -> 31863","Type":"Conventional","Directional":true,"Links":[{"SourceID":86629,"TargetID":31863,"Directional":true}]},{"ID":17905,"SourceStructureID":86630,"TargetStructureID":308,"Label":"86630-308 via Conventional from 86631 -> 31868","Type":"Conventional","Directional":true,"Links":[{"SourceID":86631,"TargetID":31868,"Directional":true}]},{"ID":17906,"SourceStructureID":86632,"TargetStructureID":308,"Label":"86632-308 via Conventional from 86633 -> 31869","Type":"Conventional","Directional":true,"Links":[{"SourceID":86633,"TargetID":31869,"Directional":true}]},{"ID":17907,"SourceStructureID":86634,"TargetStructureID":483,"Label":"86634-483 via Conventional from 102383 -> 102385","Type":"Conventional","Directional":true,"Links":[{"SourceID":102383,"TargetID":102385,"Directional":true}]},{"ID":17908,"SourceStructureID":86634,"TargetStructureID":485,"Label":"86634-485 via Conventional from 86687 -> 50885","Type":"Conventional","Directional":true,"Links":[{"SourceID":86687,"TargetID":50885,"Directional":true}]},{"ID":17909,"SourceStructureID":86634,"TargetStructureID":46823,"Label":"86634-46823 via Conventional from 86688 -> 86689","Type":"Conventional","Directional":true,"Links":[{"SourceID":86688,"TargetID":86689,"Directional":true}]},{"ID":17910,"SourceStructureID":86634,"TargetStructureID":86662,"Label":"86634-86662 via Conventional from 86661 -> 86663","Type":"Conventional","Directional":true,"Links":[{"SourceID":86661,"TargetID":86663,"Directional":true}]},{"ID":17911,"SourceStructureID":86634,"TargetStructureID":86685,"Label":"86634-86685 via Conventional from 86684 -> 86686","Type":"Conventional","Directional":true,"Links":[{"SourceID":86684,"TargetID":86686,"Directional":true}]},{"ID":17912,"SourceStructureID":86637,"TargetStructureID":308,"Label":"86637-308 via Conventional from 86638 -> 43097","Type":"Conventional","Directional":true,"Links":[{"SourceID":86638,"TargetID":43097,"Directional":true}]},{"ID":17913,"SourceStructureID":86640,"TargetStructureID":86634,"Label":"86640-86634 via Conventional from 86641 -> 86639","Type":"Conventional","Directional":true,"Links":[{"SourceID":86641,"TargetID":86639,"Directional":true}]},{"ID":17914,"SourceStructureID":86644,"TargetStructureID":308,"Label":"86644-308 via Conventional from 86645 -> 43368","Type":"Conventional","Directional":true,"Links":[{"SourceID":86645,"TargetID":43368,"Directional":true}]},{"ID":17915,"SourceStructureID":86644,"TargetStructureID":71954,"Label":"86644-71954 via Conventional from 86650 -> 86651","Type":"Conventional","Directional":true,"Links":[{"SourceID":86650,"TargetID":86651,"Directional":true}]},{"ID":17916,"SourceStructureID":86667,"TargetStructureID":86634,"Label":"86667-86634 via Conventional from 86669 -> 86670","Type":"Conventional","Directional":true,"Links":[{"SourceID":86669,"TargetID":86670,"Directional":true}]},{"ID":17917,"SourceStructureID":86672,"TargetStructureID":86634,"Label":"86672-86634 via Conventional from 86673 -> 86671","Type":"Conventional","Directional":true,"Links":[{"SourceID":86673,"TargetID":86671,"Directional":true}]},{"ID":17918,"SourceStructureID":86675,"TargetStructureID":86634,"Label":"86675-86634 via Conventional from 86678 -> 86674","Type":"Conventional","Directional":true,"Links":[{"SourceID":86678,"TargetID":86674,"Directional":true}]},{"ID":17919,"SourceStructureID":86691,"TargetStructureID":86634,"Label":"86691-86634 via Conventional from 86692 -> 86690","Type":"Conventional","Directional":true,"Links":[{"SourceID":86692,"TargetID":86690,"Directional":true}]},{"ID":17920,"SourceStructureID":86691,"TargetStructureID":101050,"Label":"86691-101050 via Conventional from 101061 -> 101060","Type":"Conventional","Directional":true,"Links":[{"SourceID":101061,"TargetID":101060,"Directional":true}]},{"ID":17921,"SourceStructureID":86697,"TargetStructureID":10596,"Label":"86697-10596 via Conventional from 86698 -> 86696","Type":"Conventional","Directional":true,"Links":[{"SourceID":86698,"TargetID":86696,"Directional":true}]},{"ID":17922,"SourceStructureID":86712,"TargetStructureID":308,"Label":"86712-308 via Conventional from 86713 -> 42631","Type":"Conventional","Directional":true,"Links":[{"SourceID":86713,"TargetID":42631,"Directional":true}]},{"ID":17923,"SourceStructureID":86741,"TargetStructureID":593,"Label":"86741-593 via Conventional from 115737 -> 115736","Type":"Conventional","Directional":true,"Links":[{"SourceID":115737,"TargetID":115736,"Directional":true}]},{"ID":17924,"SourceStructureID":86747,"TargetStructureID":10959,"Label":"86747-10959 via Conventional from 86748 -> 16368, 86749 -> 16371","Type":"Conventional","Directional":true,"Links":[{"SourceID":86748,"TargetID":16368,"Directional":true},{"SourceID":86749,"TargetID":16371,"Directional":true}]},{"ID":17925,"SourceStructureID":86761,"TargetStructureID":10959,"Label":"86761-10959 via Conventional from 86762 -> 86760, 86765 -> 16376, 86766 -> 16377","Type":"Conventional","Directional":true,"Links":[{"SourceID":86762,"TargetID":86760,"Directional":true},{"SourceID":86765,"TargetID":16376,"Directional":true},{"SourceID":86766,"TargetID":16377,"Directional":true}]},{"ID":17926,"SourceStructureID":86767,"TargetStructureID":10959,"Label":"86767-10959 via Conventional from 86768 -> 16375","Type":"Conventional","Directional":true,"Links":[{"SourceID":86768,"TargetID":16375,"Directional":true}]},{"ID":17927,"SourceStructureID":86775,"TargetStructureID":10959,"Label":"86775-10959 via Conventional from 86911 -> 86912","Type":"Conventional","Directional":true,"Links":[{"SourceID":86911,"TargetID":86912,"Directional":true}]},{"ID":17928,"SourceStructureID":86783,"TargetStructureID":10959,"Label":"86783-10959 via Conventional from 86784 -> 86782, 86790 -> 86793, 86791 -> 86792, 86798 -> 16554","Type":"Conventional","Directional":true,"Links":[{"SourceID":86784,"TargetID":86782,"Directional":true},{"SourceID":86790,"TargetID":86793,"Directional":true},{"SourceID":86791,"TargetID":86792,"Directional":true},{"SourceID":86798,"TargetID":16554,"Directional":true}]},{"ID":17929,"SourceStructureID":86799,"TargetStructureID":10959,"Label":"86799-10959 via Conventional from 86800 -> 16552, 86801 -> 16553, 86803 -> 86804, 87717 -> 87718","Type":"Conventional","Directional":true,"Links":[{"SourceID":86800,"TargetID":16552,"Directional":true},{"SourceID":86801,"TargetID":16553,"Directional":true},{"SourceID":86803,"TargetID":86804,"Directional":true},{"SourceID":87717,"TargetID":87718,"Directional":true}]},{"ID":17930,"SourceStructureID":86806,"TargetStructureID":10959,"Label":"86806-10959 via Conventional from 86807 -> 16556","Type":"Conventional","Directional":true,"Links":[{"SourceID":86807,"TargetID":16556,"Directional":true}]},{"ID":17931,"SourceStructureID":86812,"TargetStructureID":10959,"Label":"86812-10959 via Conventional from 86813 -> 86811","Type":"Conventional","Directional":true,"Links":[{"SourceID":86813,"TargetID":86811,"Directional":true}]},{"ID":17932,"SourceStructureID":86816,"TargetStructureID":10959,"Label":"86816-10959 via Conventional from 86817 -> 86815","Type":"Conventional","Directional":true,"Links":[{"SourceID":86817,"TargetID":86815,"Directional":true}]},{"ID":17933,"SourceStructureID":86818,"TargetStructureID":10959,"Label":"86818-10959 via Conventional from 86819 -> 86814, 86821 -> 86820","Type":"Conventional","Directional":true,"Links":[{"SourceID":86819,"TargetID":86814,"Directional":true},{"SourceID":86821,"TargetID":86820,"Directional":true}]},{"ID":17934,"SourceStructureID":86822,"TargetStructureID":10959,"Label":"86822-10959 via Conventional from 86831 -> 86832","Type":"Conventional","Directional":true,"Links":[{"SourceID":86831,"TargetID":86832,"Directional":true}]},{"ID":17935,"SourceStructureID":86838,"TargetStructureID":10959,"Label":"86838-10959 via Conventional from 86840 -> 86841, 86842 -> 86843, 86844 -> 86845, 86846 -> 86847, 86848 -> 86849, 86851 -> 86852","Type":"Conventional","Directional":true,"Links":[{"SourceID":86840,"TargetID":86841,"Directional":true},{"SourceID":86842,"TargetID":86843,"Directional":true},{"SourceID":86844,"TargetID":86845,"Directional":true},{"SourceID":86846,"TargetID":86847,"Directional":true},{"SourceID":86848,"TargetID":86849,"Directional":true},{"SourceID":86851,"TargetID":86852,"Directional":true}]},{"ID":17936,"SourceStructureID":86854,"TargetStructureID":10959,"Label":"86854-10959 via Conventional from 86855 -> 86853","Type":"Conventional","Directional":true,"Links":[{"SourceID":86855,"TargetID":86853,"Directional":true}]},{"ID":17937,"SourceStructureID":86857,"TargetStructureID":170,"Label":"86857-170 via Conventional from 86959 -> 1112","Type":"Conventional","Directional":true,"Links":[{"SourceID":86959,"TargetID":1112,"Directional":true}]},{"ID":17938,"SourceStructureID":86857,"TargetStructureID":23512,"Label":"86857-23512 via Conventional from 86955 -> 23513","Type":"Conventional","Directional":true,"Links":[{"SourceID":86955,"TargetID":23513,"Directional":true}]},{"ID":17939,"SourceStructureID":86858,"TargetStructureID":10959,"Label":"86858-10959 via Conventional from 86859 -> 16391","Type":"Conventional","Directional":true,"Links":[{"SourceID":86859,"TargetID":16391,"Directional":true}]},{"ID":17940,"SourceStructureID":86868,"TargetStructureID":10959,"Label":"86868-10959 via Conventional from 86869 -> 86870","Type":"Conventional","Directional":true,"Links":[{"SourceID":86869,"TargetID":86870,"Directional":true}]},{"ID":17941,"SourceStructureID":86871,"TargetStructureID":10959,"Label":"86871-10959 via Conventional from 86874 -> 86875","Type":"Conventional","Directional":true,"Links":[{"SourceID":86874,"TargetID":86875,"Directional":true}]},{"ID":17942,"SourceStructureID":86876,"TargetStructureID":10959,"Label":"86876-10959 via Conventional from 86878 -> 86879, 86885 -> 86886","Type":"Conventional","Directional":true,"Links":[{"SourceID":86878,"TargetID":86879,"Directional":true},{"SourceID":86885,"TargetID":86886,"Directional":true}]},{"ID":17943,"SourceStructureID":86888,"TargetStructureID":10959,"Label":"86888-10959 via Conventional from 86889 -> 86887","Type":"Conventional","Directional":true,"Links":[{"SourceID":86889,"TargetID":86887,"Directional":true}]},{"ID":17944,"SourceStructureID":86891,"TargetStructureID":10959,"Label":"86891-10959 via Conventional from 86894 -> 86895, 86896 -> 86897","Type":"Conventional","Directional":true,"Links":[{"SourceID":86894,"TargetID":86895,"Directional":true},{"SourceID":86896,"TargetID":86897,"Directional":true}]},{"ID":17945,"SourceStructureID":86898,"TargetStructureID":10959,"Label":"86898-10959 via Conventional from 86899 -> 86900","Type":"Conventional","Directional":true,"Links":[{"SourceID":86899,"TargetID":86900,"Directional":true}]},{"ID":17946,"SourceStructureID":86901,"TargetStructureID":10959,"Label":"86901-10959 via Conventional from 86902 -> 86903","Type":"Conventional","Directional":true,"Links":[{"SourceID":86902,"TargetID":86903,"Directional":true}]},{"ID":17947,"SourceStructureID":86904,"TargetStructureID":10959,"Label":"86904-10959 via Conventional from 86905 -> 86907, 86906 -> 86908","Type":"Conventional","Directional":true,"Links":[{"SourceID":86905,"TargetID":86907,"Directional":true},{"SourceID":86906,"TargetID":86908,"Directional":true}]},{"ID":17948,"SourceStructureID":86913,"TargetStructureID":10959,"Label":"86913-10959 via Conventional from 86921 -> 16588, 86922 -> 86923, 86924 -> 86925","Type":"Conventional","Directional":true,"Links":[{"SourceID":86921,"TargetID":16588,"Directional":true},{"SourceID":86922,"TargetID":86923,"Directional":true},{"SourceID":86924,"TargetID":86925,"Directional":true}]},{"ID":17949,"SourceStructureID":86915,"TargetStructureID":10959,"Label":"86915-10959 via Conventional from 86916 -> 16585, 86919 -> 16598","Type":"Conventional","Directional":true,"Links":[{"SourceID":86916,"TargetID":16585,"Directional":true},{"SourceID":86919,"TargetID":16598,"Directional":true}]},{"ID":17950,"SourceStructureID":86927,"TargetStructureID":58696,"Label":"86927-58696 via Conventional from 86928 -> 58701","Type":"Conventional","Directional":true,"Links":[{"SourceID":86928,"TargetID":58701,"Directional":true}]},{"ID":17951,"SourceStructureID":86933,"TargetStructureID":58696,"Label":"86933-58696 via Conventional from 86935 -> 58699","Type":"Conventional","Directional":true,"Links":[{"SourceID":86935,"TargetID":58699,"Directional":true}]},{"ID":17952,"SourceStructureID":86934,"TargetStructureID":58696,"Label":"86934-58696 via Conventional from 86936 -> 58700","Type":"Conventional","Directional":true,"Links":[{"SourceID":86936,"TargetID":58700,"Directional":true}]},{"ID":17953,"SourceStructureID":86940,"TargetStructureID":58696,"Label":"86940-58696 via Conventional from 86941 -> 86939","Type":"Conventional","Directional":true,"Links":[{"SourceID":86941,"TargetID":86939,"Directional":true}]},{"ID":17954,"SourceStructureID":86945,"TargetStructureID":58696,"Label":"86945-58696 via Conventional from 86946 -> 86947","Type":"Conventional","Directional":true,"Links":[{"SourceID":86946,"TargetID":86947,"Directional":true}]},{"ID":17955,"SourceStructureID":86951,"TargetStructureID":86945,"Label":"86951-86945 via Conventional from 86952 -> 86950","Type":"Conventional","Directional":true,"Links":[{"SourceID":86952,"TargetID":86950,"Directional":true}]},{"ID":17956,"SourceStructureID":86971,"TargetStructureID":58696,"Label":"86971-58696 via Conventional from 86972 -> 86970","Type":"Conventional","Directional":true,"Links":[{"SourceID":86972,"TargetID":86970,"Directional":true}]},{"ID":17957,"SourceStructureID":86980,"TargetStructureID":58696,"Label":"86980-58696 via Conventional from 86981 -> 86982","Type":"Conventional","Directional":true,"Links":[{"SourceID":86981,"TargetID":86982,"Directional":true}]},{"ID":17958,"SourceStructureID":86988,"TargetStructureID":86985,"Label":"86988-86985 via Conventional from 86989 -> 86987","Type":"Conventional","Directional":true,"Links":[{"SourceID":86989,"TargetID":86987,"Directional":true}]},{"ID":17959,"SourceStructureID":86997,"TargetStructureID":5377,"Label":"86997-5377 via Conventional from 86998 -> 22733","Type":"Conventional","Directional":true,"Links":[{"SourceID":86998,"TargetID":22733,"Directional":true}]},{"ID":17960,"SourceStructureID":87002,"TargetStructureID":86997,"Label":"87002-86997 via Conventional from 87003 -> 87001","Type":"Conventional","Directional":true,"Links":[{"SourceID":87003,"TargetID":87001,"Directional":true}]},{"ID":17961,"SourceStructureID":87005,"TargetStructureID":5377,"Label":"87005-5377 via Conventional from 87006 -> 22737","Type":"Conventional","Directional":true,"Links":[{"SourceID":87006,"TargetID":22737,"Directional":true}]},{"ID":17962,"SourceStructureID":87057,"TargetStructureID":5292,"Label":"87057-5292 via Conventional from 87058 -> 87056","Type":"Conventional","Directional":true,"Links":[{"SourceID":87058,"TargetID":87056,"Directional":true}]},{"ID":17963,"SourceStructureID":87067,"TargetStructureID":173,"Label":"87067-173 via Conventional from 87068 -> 87066","Type":"Conventional","Directional":true,"Links":[{"SourceID":87068,"TargetID":87066,"Directional":true}]},{"ID":17964,"SourceStructureID":87075,"TargetStructureID":173,"Label":"87075-173 via Conventional from 87078 -> 87074","Type":"Conventional","Directional":true,"Links":[{"SourceID":87078,"TargetID":87074,"Directional":true}]},{"ID":17965,"SourceStructureID":87076,"TargetStructureID":173,"Label":"87076-173 via Conventional from 87077 -> 87073","Type":"Conventional","Directional":true,"Links":[{"SourceID":87077,"TargetID":87073,"Directional":true}]},{"ID":17966,"SourceStructureID":87098,"TargetStructureID":5377,"Label":"87098-5377 via Ribbon Synapse from 87101 -> 87102, 87105 -> 87106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87101,"TargetID":87102,"Directional":true},{"SourceID":87105,"TargetID":87106,"Directional":true}]},{"ID":17967,"SourceStructureID":87098,"TargetStructureID":87095,"Label":"87098-87095 via Ribbon Synapse from 87105 -> 87107","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87105,"TargetID":87107,"Directional":true}]},{"ID":17968,"SourceStructureID":87103,"TargetStructureID":87098,"Label":"87103-87098 via Conventional from 87104 -> 87100","Type":"Conventional","Directional":true,"Links":[{"SourceID":87104,"TargetID":87100,"Directional":true}]},{"ID":17969,"SourceStructureID":87137,"TargetStructureID":82887,"Label":"87137-82887 via Conventional from 87138 -> 87136","Type":"Conventional","Directional":true,"Links":[{"SourceID":87138,"TargetID":87136,"Directional":true}]},{"ID":17970,"SourceStructureID":87145,"TargetStructureID":87158,"Label":"87145-87158 via Conventional from 87157 -> 87159","Type":"Conventional","Directional":true,"Links":[{"SourceID":87157,"TargetID":87159,"Directional":true}]},{"ID":17971,"SourceStructureID":87149,"TargetStructureID":87145,"Label":"87149-87145 via Conventional from 87150 -> 87148","Type":"Conventional","Directional":true,"Links":[{"SourceID":87150,"TargetID":87148,"Directional":true}]},{"ID":17972,"SourceStructureID":87189,"TargetStructureID":87183,"Label":"87189-87183 via Conventional from 87190 -> 87185","Type":"Conventional","Directional":true,"Links":[{"SourceID":87190,"TargetID":87185,"Directional":true}]},{"ID":17973,"SourceStructureID":87208,"TargetStructureID":87183,"Label":"87208-87183 via Conventional from 87209 -> 87207","Type":"Conventional","Directional":true,"Links":[{"SourceID":87209,"TargetID":87207,"Directional":true}]},{"ID":17974,"SourceStructureID":87224,"TargetStructureID":87227,"Label":"87224-87227 via Conventional from 87226 -> 87228","Type":"Conventional","Directional":true,"Links":[{"SourceID":87226,"TargetID":87228,"Directional":true}]},{"ID":17975,"SourceStructureID":87277,"TargetStructureID":6162,"Label":"87277-6162 via Conventional from 87288 -> 87289","Type":"Conventional","Directional":true,"Links":[{"SourceID":87288,"TargetID":87289,"Directional":true}]},{"ID":17976,"SourceStructureID":87294,"TargetStructureID":5499,"Label":"87294-5499 via Conventional from 87320 -> 87322","Type":"Conventional","Directional":true,"Links":[{"SourceID":87320,"TargetID":87322,"Directional":true}]},{"ID":17977,"SourceStructureID":87294,"TargetStructureID":6118,"Label":"87294-6118 via Conventional from 87300 -> 65919, 87301 -> 87302","Type":"Conventional","Directional":true,"Links":[{"SourceID":87300,"TargetID":65919,"Directional":true},{"SourceID":87301,"TargetID":87302,"Directional":true}]},{"ID":17978,"SourceStructureID":87294,"TargetStructureID":7024,"Label":"87294-7024 via Conventional from 87323 -> 87332","Type":"Conventional","Directional":true,"Links":[{"SourceID":87323,"TargetID":87332,"Directional":true}]},{"ID":17979,"SourceStructureID":87294,"TargetStructureID":87315,"Label":"87294-87315 via Conventional from 87314 -> 87316","Type":"Conventional","Directional":true,"Links":[{"SourceID":87314,"TargetID":87316,"Directional":true}]},{"ID":17980,"SourceStructureID":87304,"TargetStructureID":87294,"Label":"87304-87294 via Conventional from 87305 -> 87303","Type":"Conventional","Directional":true,"Links":[{"SourceID":87305,"TargetID":87303,"Directional":true}]},{"ID":17981,"SourceStructureID":87312,"TargetStructureID":87309,"Label":"87312-87309 via Conventional from 87313 -> 87311","Type":"Conventional","Directional":true,"Links":[{"SourceID":87313,"TargetID":87311,"Directional":true}]},{"ID":17982,"SourceStructureID":87337,"TargetStructureID":82677,"Label":"87337-82677 via Conventional from 87338 -> 87336","Type":"Conventional","Directional":true,"Links":[{"SourceID":87338,"TargetID":87336,"Directional":true}]},{"ID":17983,"SourceStructureID":87340,"TargetStructureID":82677,"Label":"87340-82677 via Conventional from 87341 -> 87339","Type":"Conventional","Directional":true,"Links":[{"SourceID":87341,"TargetID":87339,"Directional":true}]},{"ID":17984,"SourceStructureID":87342,"TargetStructureID":87345,"Label":"87342-87345 via Conventional from 87344 -> 87346","Type":"Conventional","Directional":true,"Links":[{"SourceID":87344,"TargetID":87346,"Directional":true}]},{"ID":17985,"SourceStructureID":87342,"TargetStructureID":87361,"Label":"87342-87361 via Conventional from 87360 -> 87362","Type":"Conventional","Directional":true,"Links":[{"SourceID":87360,"TargetID":87362,"Directional":true}]},{"ID":17986,"SourceStructureID":87342,"TargetStructureID":87377,"Label":"87342-87377 via Conventional from 87376 -> 87381","Type":"Conventional","Directional":true,"Links":[{"SourceID":87376,"TargetID":87381,"Directional":true}]},{"ID":17987,"SourceStructureID":87345,"TargetStructureID":606,"Label":"87345-606 via Conventional from 87358 -> 47380","Type":"Conventional","Directional":true,"Links":[{"SourceID":87358,"TargetID":47380,"Directional":true}]},{"ID":17988,"SourceStructureID":87345,"TargetStructureID":87349,"Label":"87345-87349 via Conventional from 87348 -> 87350","Type":"Conventional","Directional":true,"Links":[{"SourceID":87348,"TargetID":87350,"Directional":true}]},{"ID":17989,"SourceStructureID":87366,"TargetStructureID":87342,"Label":"87366-87342 via Conventional from 87367 -> 87368","Type":"Conventional","Directional":true,"Links":[{"SourceID":87367,"TargetID":87368,"Directional":true}]},{"ID":17990,"SourceStructureID":87373,"TargetStructureID":87342,"Label":"87373-87342 via Conventional from 87374 -> 87372","Type":"Conventional","Directional":true,"Links":[{"SourceID":87374,"TargetID":87372,"Directional":true}]},{"ID":17991,"SourceStructureID":87379,"TargetStructureID":5150,"Label":"87379-5150 via Ribbon Synapse from 131332 -> 5228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131332,"TargetID":5228,"Directional":true}]},{"ID":17992,"SourceStructureID":87379,"TargetStructureID":87377,"Label":"87379-87377 via Ribbon Synapse from 87380 -> 87378","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87380,"TargetID":87378,"Directional":true}]},{"ID":17993,"SourceStructureID":87387,"TargetStructureID":87385,"Label":"87387-87385 via Conventional from 87388 -> 87386","Type":"Conventional","Directional":true,"Links":[{"SourceID":87388,"TargetID":87386,"Directional":true}]},{"ID":17994,"SourceStructureID":87390,"TargetStructureID":87385,"Label":"87390-87385 via Conventional from 87391 -> 87389","Type":"Conventional","Directional":true,"Links":[{"SourceID":87391,"TargetID":87389,"Directional":true}]},{"ID":17995,"SourceStructureID":87403,"TargetStructureID":87342,"Label":"87403-87342 via Conventional from 87404 -> 87402","Type":"Conventional","Directional":true,"Links":[{"SourceID":87404,"TargetID":87402,"Directional":true}]},{"ID":17996,"SourceStructureID":87419,"TargetStructureID":6047,"Label":"87419-6047 via Conventional from 87431 -> 61329","Type":"Conventional","Directional":true,"Links":[{"SourceID":87431,"TargetID":61329,"Directional":true}]},{"ID":17997,"SourceStructureID":87419,"TargetStructureID":6120,"Label":"87419-6120 via Conventional from 87425 -> 87427, 111510 -> 61184","Type":"Conventional","Directional":true,"Links":[{"SourceID":87425,"TargetID":87427,"Directional":true},{"SourceID":111510,"TargetID":61184,"Directional":true}]},{"ID":17998,"SourceStructureID":87419,"TargetStructureID":87428,"Label":"87419-87428 via Conventional from 87426 -> 87429","Type":"Conventional","Directional":true,"Links":[{"SourceID":87426,"TargetID":87429,"Directional":true}]},{"ID":17999,"SourceStructureID":87432,"TargetStructureID":6118,"Label":"87432-6118 via Conventional from 87443 -> 87444","Type":"Conventional","Directional":true,"Links":[{"SourceID":87443,"TargetID":87444,"Directional":true}]},{"ID":18000,"SourceStructureID":87432,"TargetStructureID":6120,"Label":"87432-6120 via Conventional from 87441 -> 61161, 87445 -> 87446","Type":"Conventional","Directional":true,"Links":[{"SourceID":87441,"TargetID":61161,"Directional":true},{"SourceID":87445,"TargetID":87446,"Directional":true}]},{"ID":18001,"SourceStructureID":87432,"TargetStructureID":87437,"Label":"87432-87437 via Conventional from 87436 -> 87438","Type":"Conventional","Directional":true,"Links":[{"SourceID":87436,"TargetID":87438,"Directional":true}]},{"ID":18002,"SourceStructureID":87447,"TargetStructureID":87454,"Label":"87447-87454 via Conventional from 87453 -> 87455","Type":"Conventional","Directional":true,"Links":[{"SourceID":87453,"TargetID":87455,"Directional":true}]},{"ID":18003,"SourceStructureID":87449,"TargetStructureID":5650,"Label":"87449-5650 via Conventional from 87451 -> 87452","Type":"Conventional","Directional":true,"Links":[{"SourceID":87451,"TargetID":87452,"Directional":true}]},{"ID":18004,"SourceStructureID":87449,"TargetStructureID":87447,"Label":"87449-87447 via Conventional from 87450 -> 87448","Type":"Conventional","Directional":true,"Links":[{"SourceID":87450,"TargetID":87448,"Directional":true}]},{"ID":18005,"SourceStructureID":87457,"TargetStructureID":87447,"Label":"87457-87447 via Conventional from 87458 -> 87456","Type":"Conventional","Directional":true,"Links":[{"SourceID":87458,"TargetID":87456,"Directional":true}]},{"ID":18006,"SourceStructureID":87487,"TargetStructureID":606,"Label":"87487-606 via Conventional from 87491 -> 47463","Type":"Conventional","Directional":true,"Links":[{"SourceID":87491,"TargetID":47463,"Directional":true}]},{"ID":18007,"SourceStructureID":87487,"TargetStructureID":6146,"Label":"87487-6146 via Conventional from 87498 -> 87507","Type":"Conventional","Directional":true,"Links":[{"SourceID":87498,"TargetID":87507,"Directional":true}]},{"ID":18008,"SourceStructureID":87493,"TargetStructureID":179,"Label":"87493-179 via Conventional from 87494 -> 87492, 87494 -> 128178","Type":"Conventional","Directional":true,"Links":[{"SourceID":87494,"TargetID":87492,"Directional":true},{"SourceID":87494,"TargetID":128178,"Directional":true}]},{"ID":18009,"SourceStructureID":87496,"TargetStructureID":173,"Label":"87496-173 via Conventional from 128145 -> 128146","Type":"Conventional","Directional":true,"Links":[{"SourceID":128145,"TargetID":128146,"Directional":true}]},{"ID":18010,"SourceStructureID":87496,"TargetStructureID":179,"Label":"87496-179 via Conventional from 87497 -> 87495","Type":"Conventional","Directional":true,"Links":[{"SourceID":87497,"TargetID":87495,"Directional":true}]},{"ID":18011,"SourceStructureID":87503,"TargetStructureID":593,"Label":"87503-593 via Conventional from 87505 -> 87506","Type":"Conventional","Directional":true,"Links":[{"SourceID":87505,"TargetID":87506,"Directional":true}]},{"ID":18012,"SourceStructureID":87531,"TargetStructureID":78909,"Label":"87531-78909 via Conventional from 87532 -> 87530","Type":"Conventional","Directional":true,"Links":[{"SourceID":87532,"TargetID":87530,"Directional":true}]},{"ID":18013,"SourceStructureID":87534,"TargetStructureID":87531,"Label":"87534-87531 via Conventional from 87535 -> 87533","Type":"Conventional","Directional":true,"Links":[{"SourceID":87535,"TargetID":87533,"Directional":true}]},{"ID":18014,"SourceStructureID":87562,"TargetStructureID":14615,"Label":"87562-14615 via Conventional from 87565 -> 87567, 87566 -> 87568","Type":"Conventional","Directional":true,"Links":[{"SourceID":87565,"TargetID":87567,"Directional":true},{"SourceID":87566,"TargetID":87568,"Directional":true}]},{"ID":18015,"SourceStructureID":87569,"TargetStructureID":11043,"Label":"87569-11043 via Conventional from 87570 -> 87571, 87575 -> 87578, 87576 -> 87577, 87579 -> 87580","Type":"Conventional","Directional":true,"Links":[{"SourceID":87570,"TargetID":87571,"Directional":true},{"SourceID":87575,"TargetID":87578,"Directional":true},{"SourceID":87576,"TargetID":87577,"Directional":true},{"SourceID":87579,"TargetID":87580,"Directional":true}]},{"ID":18016,"SourceStructureID":87590,"TargetStructureID":78909,"Label":"87590-78909 via Conventional from 87598 -> 87583","Type":"Conventional","Directional":true,"Links":[{"SourceID":87598,"TargetID":87583,"Directional":true}]},{"ID":18017,"SourceStructureID":87590,"TargetStructureID":88473,"Label":"87590-88473 via Conventional from 87595 -> 88475","Type":"Conventional","Directional":true,"Links":[{"SourceID":87595,"TargetID":88475,"Directional":true}]},{"ID":18018,"SourceStructureID":87590,"TargetStructureID":88476,"Label":"87590-88476 via Conventional from 87596 -> 88478","Type":"Conventional","Directional":true,"Links":[{"SourceID":87596,"TargetID":88478,"Directional":true}]},{"ID":18019,"SourceStructureID":87590,"TargetStructureID":88485,"Label":"87590-88485 via Conventional from 88484 -> 88487","Type":"Conventional","Directional":true,"Links":[{"SourceID":88484,"TargetID":88487,"Directional":true}]},{"ID":18020,"SourceStructureID":87590,"TargetStructureID":88516,"Label":"87590-88516 via Conventional from 88494 -> 88517","Type":"Conventional","Directional":true,"Links":[{"SourceID":88494,"TargetID":88517,"Directional":true}]},{"ID":18021,"SourceStructureID":87590,"TargetStructureID":88554,"Label":"87590-88554 via Conventional from 88547 -> 88555","Type":"Conventional","Directional":true,"Links":[{"SourceID":88547,"TargetID":88555,"Directional":true}]},{"ID":18022,"SourceStructureID":87606,"TargetStructureID":5923,"Label":"87606-5923 via Conventional from 87607 -> 9972","Type":"Conventional","Directional":true,"Links":[{"SourceID":87607,"TargetID":9972,"Directional":true}]},{"ID":18023,"SourceStructureID":87606,"TargetStructureID":11043,"Label":"87606-11043 via Conventional from 87608 -> 87609","Type":"Conventional","Directional":true,"Links":[{"SourceID":87608,"TargetID":87609,"Directional":true}]},{"ID":18024,"SourceStructureID":87612,"TargetStructureID":78909,"Label":"87612-78909 via Conventional from 87613 -> 87611","Type":"Conventional","Directional":true,"Links":[{"SourceID":87613,"TargetID":87611,"Directional":true}]},{"ID":18025,"SourceStructureID":87647,"TargetStructureID":78909,"Label":"87647-78909 via Conventional from 87648 -> 87646","Type":"Conventional","Directional":true,"Links":[{"SourceID":87648,"TargetID":87646,"Directional":true}]},{"ID":18026,"SourceStructureID":87654,"TargetStructureID":78909,"Label":"87654-78909 via Conventional from 87655 -> 87653","Type":"Conventional","Directional":true,"Links":[{"SourceID":87655,"TargetID":87653,"Directional":true}]},{"ID":18027,"SourceStructureID":87678,"TargetStructureID":273,"Label":"87678-273 via Conventional from 87680 -> 87681, 87682 -> 87683, 87684 -> 87685","Type":"Conventional","Directional":true,"Links":[{"SourceID":87680,"TargetID":87681,"Directional":true},{"SourceID":87682,"TargetID":87683,"Directional":true},{"SourceID":87684,"TargetID":87685,"Directional":true}]},{"ID":18028,"SourceStructureID":87721,"TargetStructureID":171,"Label":"87721-171 via Conventional from 87722 -> 87720","Type":"Conventional","Directional":true,"Links":[{"SourceID":87722,"TargetID":87720,"Directional":true}]},{"ID":18029,"SourceStructureID":87754,"TargetStructureID":5394,"Label":"87754-5394 via Conventional from 87755 -> 77100","Type":"Conventional","Directional":true,"Links":[{"SourceID":87755,"TargetID":77100,"Directional":true}]},{"ID":18030,"SourceStructureID":87808,"TargetStructureID":10961,"Label":"87808-10961 via Conventional from 87809 -> 87807, 87810 -> 87811","Type":"Conventional","Directional":true,"Links":[{"SourceID":87809,"TargetID":87807,"Directional":true},{"SourceID":87810,"TargetID":87811,"Directional":true}]},{"ID":18031,"SourceStructureID":87815,"TargetStructureID":177,"Label":"87815-177 via Conventional from 87816 -> 27963","Type":"Conventional","Directional":true,"Links":[{"SourceID":87816,"TargetID":27963,"Directional":true}]},{"ID":18032,"SourceStructureID":87929,"TargetStructureID":518,"Label":"87929-518 via Conventional from 87930 -> 3524, 87931 -> 3521","Type":"Conventional","Directional":true,"Links":[{"SourceID":87930,"TargetID":3524,"Directional":true},{"SourceID":87931,"TargetID":3521,"Directional":true}]},{"ID":18033,"SourceStructureID":87934,"TargetStructureID":476,"Label":"87934-476 via Conventional from 87935 -> 87933","Type":"Conventional","Directional":true,"Links":[{"SourceID":87935,"TargetID":87933,"Directional":true}]},{"ID":18034,"SourceStructureID":87972,"TargetStructureID":5107,"Label":"87972-5107 via Adherens from 88029 -> 88030","Type":"Adherens","Directional":true,"Links":[{"SourceID":88029,"TargetID":88030,"Directional":true}]},{"ID":18035,"SourceStructureID":87972,"TargetStructureID":44346,"Label":"87972-44346 via Adherens from 88043 -> 88044","Type":"Adherens","Directional":true,"Links":[{"SourceID":88043,"TargetID":88044,"Directional":true}]},{"ID":18036,"SourceStructureID":87972,"TargetStructureID":87972,"Label":"87972-87972 via Ribbon Synapse from 88039 -> 88038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88039,"TargetID":88038,"Directional":true}]},{"ID":18037,"SourceStructureID":88003,"TargetStructureID":87972,"Label":"88003-87972 via Conventional from 88004 -> 88002","Type":"Conventional","Directional":true,"Links":[{"SourceID":88004,"TargetID":88002,"Directional":true}]},{"ID":18038,"SourceStructureID":88005,"TargetStructureID":88003,"Label":"88005-88003 via Conventional from 88006 -> 88007","Type":"Conventional","Directional":true,"Links":[{"SourceID":88006,"TargetID":88007,"Directional":true}]},{"ID":18039,"SourceStructureID":88014,"TargetStructureID":87972,"Label":"88014-87972 via Conventional from 88015 -> 88013","Type":"Conventional","Directional":true,"Links":[{"SourceID":88015,"TargetID":88013,"Directional":true}]},{"ID":18040,"SourceStructureID":88017,"TargetStructureID":69162,"Label":"88017-69162 via Conventional from 88019 -> 69234","Type":"Conventional","Directional":true,"Links":[{"SourceID":88019,"TargetID":69234,"Directional":true}]},{"ID":18041,"SourceStructureID":88017,"TargetStructureID":88014,"Label":"88017-88014 via Conventional from 88018 -> 88016","Type":"Conventional","Directional":true,"Links":[{"SourceID":88018,"TargetID":88016,"Directional":true}]},{"ID":18042,"SourceStructureID":88036,"TargetStructureID":87972,"Label":"88036-87972 via Ribbon Synapse from 88037 -> 88035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88037,"TargetID":88035,"Directional":true}]},{"ID":18043,"SourceStructureID":88055,"TargetStructureID":44346,"Label":"88055-44346 via Conventional from 88056 -> 44443","Type":"Conventional","Directional":true,"Links":[{"SourceID":88056,"TargetID":44443,"Directional":true}]},{"ID":18044,"SourceStructureID":88125,"TargetStructureID":85856,"Label":"88125-85856 via Conventional from 88126 -> 85888","Type":"Conventional","Directional":true,"Links":[{"SourceID":88126,"TargetID":85888,"Directional":true}]},{"ID":18045,"SourceStructureID":88127,"TargetStructureID":85856,"Label":"88127-85856 via Conventional from 88128 -> 11883","Type":"Conventional","Directional":true,"Links":[{"SourceID":88128,"TargetID":11883,"Directional":true}]},{"ID":18046,"SourceStructureID":88129,"TargetStructureID":88127,"Label":"88129-88127 via Conventional from 88130 -> 88131","Type":"Conventional","Directional":true,"Links":[{"SourceID":88130,"TargetID":88131,"Directional":true}]},{"ID":18047,"SourceStructureID":88132,"TargetStructureID":85856,"Label":"88132-85856 via Conventional from 88133 -> 11881","Type":"Conventional","Directional":true,"Links":[{"SourceID":88133,"TargetID":11881,"Directional":true}]},{"ID":18048,"SourceStructureID":88139,"TargetStructureID":7114,"Label":"88139-7114 via Conventional from 88140 -> 88138","Type":"Conventional","Directional":true,"Links":[{"SourceID":88140,"TargetID":88138,"Directional":true}]},{"ID":18049,"SourceStructureID":88159,"TargetStructureID":6169,"Label":"88159-6169 via Ribbon Synapse from 88163 -> 88191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88163,"TargetID":88191,"Directional":true}]},{"ID":18050,"SourceStructureID":88159,"TargetStructureID":88154,"Label":"88159-88154 via Ribbon Synapse from 88161 -> 88158","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88161,"TargetID":88158,"Directional":true}]},{"ID":18051,"SourceStructureID":88159,"TargetStructureID":88173,"Label":"88159-88173 via Ribbon Synapse from 88176 -> 88175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88176,"TargetID":88175,"Directional":true}]},{"ID":18052,"SourceStructureID":88199,"TargetStructureID":59482,"Label":"88199-59482 via Conventional from 88241 -> 88242","Type":"Conventional","Directional":true,"Links":[{"SourceID":88241,"TargetID":88242,"Directional":true}]},{"ID":18053,"SourceStructureID":88199,"TargetStructureID":61450,"Label":"88199-61450 via Conventional from 88243 -> 61490","Type":"Conventional","Directional":true,"Links":[{"SourceID":88243,"TargetID":61490,"Directional":true}]},{"ID":18054,"SourceStructureID":88199,"TargetStructureID":88205,"Label":"88199-88205 via Conventional from 88203 -> 88207","Type":"Conventional","Directional":true,"Links":[{"SourceID":88203,"TargetID":88207,"Directional":true}]},{"ID":18055,"SourceStructureID":88199,"TargetStructureID":88215,"Label":"88199-88215 via Conventional from 88214 -> 88216","Type":"Conventional","Directional":true,"Links":[{"SourceID":88214,"TargetID":88216,"Directional":true}]},{"ID":18056,"SourceStructureID":88199,"TargetStructureID":88223,"Label":"88199-88223 via Conventional from 88222 -> 88224","Type":"Conventional","Directional":true,"Links":[{"SourceID":88222,"TargetID":88224,"Directional":true}]},{"ID":18057,"SourceStructureID":88209,"TargetStructureID":88199,"Label":"88209-88199 via Conventional from 88210 -> 88208","Type":"Conventional","Directional":true,"Links":[{"SourceID":88210,"TargetID":88208,"Directional":true}]},{"ID":18058,"SourceStructureID":88212,"TargetStructureID":88199,"Label":"88212-88199 via Conventional from 88213 -> 88211","Type":"Conventional","Directional":true,"Links":[{"SourceID":88213,"TargetID":88211,"Directional":true}]},{"ID":18059,"SourceStructureID":88220,"TargetStructureID":88199,"Label":"88220-88199 via Conventional from 88221 -> 88219","Type":"Conventional","Directional":true,"Links":[{"SourceID":88221,"TargetID":88219,"Directional":true}]},{"ID":18060,"SourceStructureID":88226,"TargetStructureID":88199,"Label":"88226-88199 via Conventional from 88227 -> 88225","Type":"Conventional","Directional":true,"Links":[{"SourceID":88227,"TargetID":88225,"Directional":true}]},{"ID":18061,"SourceStructureID":88230,"TargetStructureID":88199,"Label":"88230-88199 via Conventional from 88231 -> 88229","Type":"Conventional","Directional":true,"Links":[{"SourceID":88231,"TargetID":88229,"Directional":true}]},{"ID":18062,"SourceStructureID":88239,"TargetStructureID":88199,"Label":"88239-88199 via Conventional from 88240 -> 88238","Type":"Conventional","Directional":true,"Links":[{"SourceID":88240,"TargetID":88238,"Directional":true}]},{"ID":18063,"SourceStructureID":88246,"TargetStructureID":88257,"Label":"88246-88257 via Conventional from 88256 -> 88258","Type":"Conventional","Directional":true,"Links":[{"SourceID":88256,"TargetID":88258,"Directional":true}]},{"ID":18064,"SourceStructureID":88247,"TargetStructureID":88252,"Label":"88247-88252 via Ribbon Synapse from 88251 -> 88253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88251,"TargetID":88253,"Directional":true}]},{"ID":18065,"SourceStructureID":88252,"TargetStructureID":88247,"Label":"88252-88247 via Conventional from 88254 -> 88255","Type":"Conventional","Directional":true,"Links":[{"SourceID":88254,"TargetID":88255,"Directional":true}]},{"ID":18066,"SourceStructureID":88260,"TargetStructureID":176,"Label":"88260-176 via Conventional from 88262 -> 5857, 88278 -> 5894, 88282 -> 88286","Type":"Conventional","Directional":true,"Links":[{"SourceID":88262,"TargetID":5857,"Directional":true},{"SourceID":88278,"TargetID":5894,"Directional":true},{"SourceID":88282,"TargetID":88286,"Directional":true}]},{"ID":18067,"SourceStructureID":88260,"TargetStructureID":43716,"Label":"88260-43716 via Conventional from 88296 -> 43729","Type":"Conventional","Directional":true,"Links":[{"SourceID":88296,"TargetID":43729,"Directional":true}]},{"ID":18068,"SourceStructureID":88260,"TargetStructureID":88274,"Label":"88260-88274 via Conventional from 88273 -> 88275","Type":"Conventional","Directional":true,"Links":[{"SourceID":88273,"TargetID":88275,"Directional":true}]},{"ID":18069,"SourceStructureID":88260,"TargetStructureID":88290,"Label":"88260-88290 via Conventional from 88288 -> 88293","Type":"Conventional","Directional":true,"Links":[{"SourceID":88288,"TargetID":88293,"Directional":true}]},{"ID":18070,"SourceStructureID":88260,"TargetStructureID":88305,"Label":"88260-88305 via Conventional from 88304 -> 88306","Type":"Conventional","Directional":true,"Links":[{"SourceID":88304,"TargetID":88306,"Directional":true}]},{"ID":18071,"SourceStructureID":88266,"TargetStructureID":88260,"Label":"88266-88260 via Conventional from 88267 -> 88265","Type":"Conventional","Directional":true,"Links":[{"SourceID":88267,"TargetID":88265,"Directional":true}]},{"ID":18072,"SourceStructureID":88270,"TargetStructureID":10872,"Label":"88270-10872 via Conventional from 88280 -> 88281, 88283 -> 88284","Type":"Conventional","Directional":true,"Links":[{"SourceID":88280,"TargetID":88281,"Directional":true},{"SourceID":88283,"TargetID":88284,"Directional":true}]},{"ID":18073,"SourceStructureID":88274,"TargetStructureID":595,"Label":"88274-595 via Conventional from 88276 -> 46674","Type":"Conventional","Directional":true,"Links":[{"SourceID":88276,"TargetID":46674,"Directional":true}]},{"ID":18074,"SourceStructureID":88290,"TargetStructureID":5637,"Label":"88290-5637 via Conventional from 88291 -> 88292","Type":"Conventional","Directional":true,"Links":[{"SourceID":88291,"TargetID":88292,"Directional":true}]},{"ID":18075,"SourceStructureID":88300,"TargetStructureID":88260,"Label":"88300-88260 via Conventional from 88301 -> 88302","Type":"Conventional","Directional":true,"Links":[{"SourceID":88301,"TargetID":88302,"Directional":true}]},{"ID":18076,"SourceStructureID":88313,"TargetStructureID":88260,"Label":"88313-88260 via Conventional from 88314 -> 88312","Type":"Conventional","Directional":true,"Links":[{"SourceID":88314,"TargetID":88312,"Directional":true}]},{"ID":18077,"SourceStructureID":88334,"TargetStructureID":170,"Label":"88334-170 via Conventional from 88337 -> 1128","Type":"Conventional","Directional":true,"Links":[{"SourceID":88337,"TargetID":1128,"Directional":true}]},{"ID":18078,"SourceStructureID":88344,"TargetStructureID":8580,"Label":"88344-8580 via Conventional from 88345 -> 88346","Type":"Conventional","Directional":true,"Links":[{"SourceID":88345,"TargetID":88346,"Directional":true}]},{"ID":18079,"SourceStructureID":88365,"TargetStructureID":606,"Label":"88365-606 via Conventional from 88391 -> 51995","Type":"Conventional","Directional":true,"Links":[{"SourceID":88391,"TargetID":51995,"Directional":true}]},{"ID":18080,"SourceStructureID":88370,"TargetStructureID":88365,"Label":"88370-88365 via Conventional from 88373 -> 88374","Type":"Conventional","Directional":true,"Links":[{"SourceID":88373,"TargetID":88374,"Directional":true}]},{"ID":18081,"SourceStructureID":88375,"TargetStructureID":170,"Label":"88375-170 via Conventional from 88376 -> 1200","Type":"Conventional","Directional":true,"Links":[{"SourceID":88376,"TargetID":1200,"Directional":true}]},{"ID":18082,"SourceStructureID":88395,"TargetStructureID":6141,"Label":"88395-6141 via Conventional from 88452 -> 61359","Type":"Conventional","Directional":true,"Links":[{"SourceID":88452,"TargetID":61359,"Directional":true}]},{"ID":18083,"SourceStructureID":88405,"TargetStructureID":170,"Label":"88405-170 via Conventional from 88409 -> 1214","Type":"Conventional","Directional":true,"Links":[{"SourceID":88409,"TargetID":1214,"Directional":true}]},{"ID":18084,"SourceStructureID":88413,"TargetStructureID":170,"Label":"88413-170 via Conventional from 88420 -> 1212","Type":"Conventional","Directional":true,"Links":[{"SourceID":88420,"TargetID":1212,"Directional":true}]},{"ID":18085,"SourceStructureID":88450,"TargetStructureID":170,"Label":"88450-170 via Conventional from 88451 -> 1220","Type":"Conventional","Directional":true,"Links":[{"SourceID":88451,"TargetID":1220,"Directional":true}]},{"ID":18086,"SourceStructureID":88453,"TargetStructureID":170,"Label":"88453-170 via Conventional from 88454 -> 88455","Type":"Conventional","Directional":true,"Links":[{"SourceID":88454,"TargetID":88455,"Directional":true}]},{"ID":18087,"SourceStructureID":88459,"TargetStructureID":88395,"Label":"88459-88395 via Conventional from 88466 -> 88438","Type":"Conventional","Directional":true,"Links":[{"SourceID":88466,"TargetID":88438,"Directional":true}]},{"ID":18088,"SourceStructureID":88459,"TargetStructureID":88468,"Label":"88459-88468 via Conventional from 88467 -> 88469","Type":"Conventional","Directional":true,"Links":[{"SourceID":88467,"TargetID":88469,"Directional":true}]},{"ID":18089,"SourceStructureID":88462,"TargetStructureID":170,"Label":"88462-170 via Conventional from 88465 -> 1225","Type":"Conventional","Directional":true,"Links":[{"SourceID":88465,"TargetID":1225,"Directional":true}]},{"ID":18090,"SourceStructureID":88493,"TargetStructureID":170,"Label":"88493-170 via Conventional from 88496 -> 51173","Type":"Conventional","Directional":true,"Links":[{"SourceID":88496,"TargetID":51173,"Directional":true}]},{"ID":18091,"SourceStructureID":88513,"TargetStructureID":170,"Label":"88513-170 via Conventional from 88514 -> 47931","Type":"Conventional","Directional":true,"Links":[{"SourceID":88514,"TargetID":47931,"Directional":true}]},{"ID":18092,"SourceStructureID":88521,"TargetStructureID":170,"Label":"88521-170 via Conventional from 88526 -> 47932","Type":"Conventional","Directional":true,"Links":[{"SourceID":88526,"TargetID":47932,"Directional":true}]},{"ID":18093,"SourceStructureID":88550,"TargetStructureID":170,"Label":"88550-170 via Conventional from 88551 -> 88552","Type":"Conventional","Directional":true,"Links":[{"SourceID":88551,"TargetID":88552,"Directional":true}]},{"ID":18094,"SourceStructureID":88553,"TargetStructureID":170,"Label":"88553-170 via Conventional from 88557 -> 1231","Type":"Conventional","Directional":true,"Links":[{"SourceID":88557,"TargetID":1231,"Directional":true}]},{"ID":18095,"SourceStructureID":88594,"TargetStructureID":277,"Label":"88594-277 via Conventional from 88605 -> 88607, 123546 -> 123545","Type":"Conventional","Directional":true,"Links":[{"SourceID":88605,"TargetID":88607,"Directional":true},{"SourceID":123546,"TargetID":123545,"Directional":true}]},{"ID":18096,"SourceStructureID":88594,"TargetStructureID":88597,"Label":"88594-88597 via Conventional from 88596 -> 88598","Type":"Conventional","Directional":true,"Links":[{"SourceID":88596,"TargetID":88598,"Directional":true}]},{"ID":18097,"SourceStructureID":88594,"TargetStructureID":88618,"Label":"88594-88618 via Conventional from 88617 -> 88619","Type":"Conventional","Directional":true,"Links":[{"SourceID":88617,"TargetID":88619,"Directional":true}]},{"ID":18098,"SourceStructureID":88608,"TargetStructureID":277,"Label":"88608-277 via Conventional from 88610 -> 88612","Type":"Conventional","Directional":true,"Links":[{"SourceID":88610,"TargetID":88612,"Directional":true}]},{"ID":18099,"SourceStructureID":88614,"TargetStructureID":88608,"Label":"88614-88608 via Conventional from 88616 -> 88613","Type":"Conventional","Directional":true,"Links":[{"SourceID":88616,"TargetID":88613,"Directional":true}]},{"ID":18100,"SourceStructureID":88646,"TargetStructureID":5606,"Label":"88646-5606 via Conventional from 88650 -> 53864","Type":"Conventional","Directional":true,"Links":[{"SourceID":88650,"TargetID":53864,"Directional":true}]},{"ID":18101,"SourceStructureID":88666,"TargetStructureID":88675,"Label":"88666-88675 via Conventional from 88674 -> 88676","Type":"Conventional","Directional":true,"Links":[{"SourceID":88674,"TargetID":88676,"Directional":true}]},{"ID":18102,"SourceStructureID":88666,"TargetStructureID":88726,"Label":"88666-88726 via Conventional from 88725 -> 88727","Type":"Conventional","Directional":true,"Links":[{"SourceID":88725,"TargetID":88727,"Directional":true}]},{"ID":18103,"SourceStructureID":88669,"TargetStructureID":88666,"Label":"88669-88666 via Conventional from 88670 -> 88668","Type":"Conventional","Directional":true,"Links":[{"SourceID":88670,"TargetID":88668,"Directional":true}]},{"ID":18104,"SourceStructureID":88678,"TargetStructureID":88666,"Label":"88678-88666 via Conventional from 88679 -> 88677","Type":"Conventional","Directional":true,"Links":[{"SourceID":88679,"TargetID":88677,"Directional":true}]},{"ID":18105,"SourceStructureID":88682,"TargetStructureID":170,"Label":"88682-170 via Conventional from 88686 -> 88688","Type":"Conventional","Directional":true,"Links":[{"SourceID":88686,"TargetID":88688,"Directional":true}]},{"ID":18106,"SourceStructureID":88684,"TargetStructureID":11238,"Label":"88684-11238 via Ribbon Synapse from 88685 -> 88683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88685,"TargetID":88683,"Directional":true}]},{"ID":18107,"SourceStructureID":88690,"TargetStructureID":170,"Label":"88690-170 via Conventional from 88691 -> 28365","Type":"Conventional","Directional":true,"Links":[{"SourceID":88691,"TargetID":28365,"Directional":true}]},{"ID":18108,"SourceStructureID":88695,"TargetStructureID":88666,"Label":"88695-88666 via Conventional from 88696 -> 88694","Type":"Conventional","Directional":true,"Links":[{"SourceID":88696,"TargetID":88694,"Directional":true}]},{"ID":18109,"SourceStructureID":88711,"TargetStructureID":170,"Label":"88711-170 via Conventional from 88712 -> 1240","Type":"Conventional","Directional":true,"Links":[{"SourceID":88712,"TargetID":1240,"Directional":true}]},{"ID":18110,"SourceStructureID":88715,"TargetStructureID":170,"Label":"88715-170 via Conventional from 88716 -> 1241","Type":"Conventional","Directional":true,"Links":[{"SourceID":88716,"TargetID":1241,"Directional":true}]},{"ID":18111,"SourceStructureID":88715,"TargetStructureID":606,"Label":"88715-606 via Conventional from 99419 -> 52076","Type":"Conventional","Directional":true,"Links":[{"SourceID":99419,"TargetID":52076,"Directional":true}]},{"ID":18112,"SourceStructureID":88723,"TargetStructureID":88666,"Label":"88723-88666 via Conventional from 88724 -> 88722","Type":"Conventional","Directional":true,"Links":[{"SourceID":88724,"TargetID":88722,"Directional":true}]},{"ID":18113,"SourceStructureID":88740,"TargetStructureID":606,"Label":"88740-606 via Conventional from 88742 -> 54149","Type":"Conventional","Directional":true,"Links":[{"SourceID":88742,"TargetID":54149,"Directional":true}]},{"ID":18114,"SourceStructureID":88740,"TargetStructureID":88737,"Label":"88740-88737 via Conventional from 88741 -> 88739","Type":"Conventional","Directional":true,"Links":[{"SourceID":88741,"TargetID":88739,"Directional":true}]},{"ID":18115,"SourceStructureID":88747,"TargetStructureID":170,"Label":"88747-170 via Conventional from 88748 -> 88749","Type":"Conventional","Directional":true,"Links":[{"SourceID":88748,"TargetID":88749,"Directional":true}]},{"ID":18116,"SourceStructureID":88761,"TargetStructureID":422,"Label":"88761-422 via Conventional from 88791 -> 5690, 88796 -> 5691","Type":"Conventional","Directional":true,"Links":[{"SourceID":88791,"TargetID":5690,"Directional":true},{"SourceID":88796,"TargetID":5691,"Directional":true}]},{"ID":18117,"SourceStructureID":88761,"TargetStructureID":464,"Label":"88761-464 via Conventional from 88824 -> 87802, 88825 -> 87802","Type":"Conventional","Directional":true,"Links":[{"SourceID":88824,"TargetID":87802,"Directional":true},{"SourceID":88825,"TargetID":87802,"Directional":true}]},{"ID":18118,"SourceStructureID":88762,"TargetStructureID":88774,"Label":"88762-88774 via Conventional from 88773 -> 88780","Type":"Conventional","Directional":true,"Links":[{"SourceID":88773,"TargetID":88780,"Directional":true}]},{"ID":18119,"SourceStructureID":88781,"TargetStructureID":170,"Label":"88781-170 via Conventional from 88786 -> 87284","Type":"Conventional","Directional":true,"Links":[{"SourceID":88786,"TargetID":87284,"Directional":true}]},{"ID":18120,"SourceStructureID":88790,"TargetStructureID":170,"Label":"88790-170 via Conventional from 88792 -> 45396","Type":"Conventional","Directional":true,"Links":[{"SourceID":88792,"TargetID":45396,"Directional":true}]},{"ID":18121,"SourceStructureID":88801,"TargetStructureID":170,"Label":"88801-170 via Conventional from 88802 -> 88803","Type":"Conventional","Directional":true,"Links":[{"SourceID":88802,"TargetID":88803,"Directional":true}]},{"ID":18122,"SourceStructureID":88805,"TargetStructureID":170,"Label":"88805-170 via Conventional from 88806 -> 87286","Type":"Conventional","Directional":true,"Links":[{"SourceID":88806,"TargetID":87286,"Directional":true}]},{"ID":18123,"SourceStructureID":88817,"TargetStructureID":170,"Label":"88817-170 via Conventional from 88820 -> 1336","Type":"Conventional","Directional":true,"Links":[{"SourceID":88820,"TargetID":1336,"Directional":true}]},{"ID":18124,"SourceStructureID":88822,"TargetStructureID":170,"Label":"88822-170 via Conventional from 88944 -> 28376","Type":"Conventional","Directional":true,"Links":[{"SourceID":88944,"TargetID":28376,"Directional":true}]},{"ID":18125,"SourceStructureID":88833,"TargetStructureID":517,"Label":"88833-517 via Conventional from 88834 -> 88832","Type":"Conventional","Directional":true,"Links":[{"SourceID":88834,"TargetID":88832,"Directional":true}]},{"ID":18126,"SourceStructureID":88833,"TargetStructureID":61868,"Label":"88833-61868 via Conventional from 123157 -> 81982","Type":"Conventional","Directional":true,"Links":[{"SourceID":123157,"TargetID":81982,"Directional":true}]},{"ID":18127,"SourceStructureID":88841,"TargetStructureID":11250,"Label":"88841-11250 via Conventional from 88842 -> 88840","Type":"Conventional","Directional":true,"Links":[{"SourceID":88842,"TargetID":88840,"Directional":true}]},{"ID":18128,"SourceStructureID":88864,"TargetStructureID":579,"Label":"88864-579 via Conventional from 88865 -> 88866, 88872 -> 88871","Type":"Conventional","Directional":true,"Links":[{"SourceID":88865,"TargetID":88866,"Directional":true},{"SourceID":88872,"TargetID":88871,"Directional":true}]},{"ID":18129,"SourceStructureID":88912,"TargetStructureID":5451,"Label":"88912-5451 via Conventional from 88914 -> 44953","Type":"Conventional","Directional":true,"Links":[{"SourceID":88914,"TargetID":44953,"Directional":true}]},{"ID":18130,"SourceStructureID":88915,"TargetStructureID":88912,"Label":"88915-88912 via Conventional from 88916 -> 88913","Type":"Conventional","Directional":true,"Links":[{"SourceID":88916,"TargetID":88913,"Directional":true}]},{"ID":18131,"SourceStructureID":88919,"TargetStructureID":88929,"Label":"88919-88929 via Conventional from 88920 -> 88930","Type":"Conventional","Directional":true,"Links":[{"SourceID":88920,"TargetID":88930,"Directional":true}]},{"ID":18132,"SourceStructureID":88919,"TargetStructureID":88936,"Label":"88919-88936 via Conventional from 88938 -> 88937","Type":"Conventional","Directional":true,"Links":[{"SourceID":88938,"TargetID":88937,"Directional":true}]},{"ID":18133,"SourceStructureID":88923,"TargetStructureID":88919,"Label":"88923-88919 via Conventional from 88924 -> 88921","Type":"Conventional","Directional":true,"Links":[{"SourceID":88924,"TargetID":88921,"Directional":true}]},{"ID":18134,"SourceStructureID":88933,"TargetStructureID":88919,"Label":"88933-88919 via Conventional from 88934 -> 88932","Type":"Conventional","Directional":true,"Links":[{"SourceID":88934,"TargetID":88932,"Directional":true}]},{"ID":18135,"SourceStructureID":88945,"TargetStructureID":170,"Label":"88945-170 via Conventional from 88963 -> 88964","Type":"Conventional","Directional":true,"Links":[{"SourceID":88963,"TargetID":88964,"Directional":true}]},{"ID":18136,"SourceStructureID":88947,"TargetStructureID":170,"Label":"88947-170 via Conventional from 88961 -> 88962","Type":"Conventional","Directional":true,"Links":[{"SourceID":88961,"TargetID":88962,"Directional":true}]},{"ID":18137,"SourceStructureID":88954,"TargetStructureID":170,"Label":"88954-170 via Conventional from 88955 -> 88956","Type":"Conventional","Directional":true,"Links":[{"SourceID":88955,"TargetID":88956,"Directional":true}]},{"ID":18138,"SourceStructureID":88957,"TargetStructureID":170,"Label":"88957-170 via Conventional from 88958 -> 88959","Type":"Conventional","Directional":true,"Links":[{"SourceID":88958,"TargetID":88959,"Directional":true}]},{"ID":18139,"SourceStructureID":88965,"TargetStructureID":170,"Label":"88965-170 via Conventional from 88966 -> 88967","Type":"Conventional","Directional":true,"Links":[{"SourceID":88966,"TargetID":88967,"Directional":true}]},{"ID":18140,"SourceStructureID":88984,"TargetStructureID":606,"Label":"88984-606 via Conventional from 88989 -> 47417","Type":"Conventional","Directional":true,"Links":[{"SourceID":88989,"TargetID":47417,"Directional":true}]},{"ID":18141,"SourceStructureID":88984,"TargetStructureID":5645,"Label":"88984-5645 via Conventional from 88987 -> 39487","Type":"Conventional","Directional":true,"Links":[{"SourceID":88987,"TargetID":39487,"Directional":true}]},{"ID":18142,"SourceStructureID":88996,"TargetStructureID":170,"Label":"88996-170 via Conventional from 88997 -> 88998","Type":"Conventional","Directional":true,"Links":[{"SourceID":88997,"TargetID":88998,"Directional":true}]},{"ID":18143,"SourceStructureID":89000,"TargetStructureID":170,"Label":"89000-170 via Conventional from 89001 -> 89002","Type":"Conventional","Directional":true,"Links":[{"SourceID":89001,"TargetID":89002,"Directional":true}]},{"ID":18144,"SourceStructureID":89008,"TargetStructureID":4569,"Label":"89008-4569 via Conventional from 99020 -> 47550","Type":"Conventional","Directional":true,"Links":[{"SourceID":99020,"TargetID":47550,"Directional":true}]},{"ID":18145,"SourceStructureID":89016,"TargetStructureID":170,"Label":"89016-170 via Conventional from 133913 -> 133912","Type":"Conventional","Directional":true,"Links":[{"SourceID":133913,"TargetID":133912,"Directional":true}]},{"ID":18146,"SourceStructureID":89024,"TargetStructureID":170,"Label":"89024-170 via Conventional from 89025 -> 89026","Type":"Conventional","Directional":true,"Links":[{"SourceID":89025,"TargetID":89026,"Directional":true}]},{"ID":18147,"SourceStructureID":89032,"TargetStructureID":49184,"Label":"89032-49184 via Conventional from 118213 -> 49353","Type":"Conventional","Directional":true,"Links":[{"SourceID":118213,"TargetID":49353,"Directional":true}]},{"ID":18148,"SourceStructureID":89032,"TargetStructureID":89029,"Label":"89032-89029 via Conventional from 89033 -> 89031","Type":"Conventional","Directional":true,"Links":[{"SourceID":89033,"TargetID":89031,"Directional":true}]},{"ID":18149,"SourceStructureID":89039,"TargetStructureID":176,"Label":"89039-176 via Conventional from 89053 -> 5847","Type":"Conventional","Directional":true,"Links":[{"SourceID":89053,"TargetID":5847,"Directional":true}]},{"ID":18150,"SourceStructureID":89039,"TargetStructureID":595,"Label":"89039-595 via Conventional from 89054 -> 46689","Type":"Conventional","Directional":true,"Links":[{"SourceID":89054,"TargetID":46689,"Directional":true}]},{"ID":18151,"SourceStructureID":89039,"TargetStructureID":89046,"Label":"89039-89046 via Conventional from 89043 -> 89047","Type":"Conventional","Directional":true,"Links":[{"SourceID":89043,"TargetID":89047,"Directional":true}]},{"ID":18152,"SourceStructureID":89042,"TargetStructureID":170,"Label":"89042-170 via Conventional from 89044 -> 1350","Type":"Conventional","Directional":true,"Links":[{"SourceID":89044,"TargetID":1350,"Directional":true}]},{"ID":18153,"SourceStructureID":89066,"TargetStructureID":170,"Label":"89066-170 via Conventional from 89067 -> 89065","Type":"Conventional","Directional":true,"Links":[{"SourceID":89067,"TargetID":89065,"Directional":true}]},{"ID":18154,"SourceStructureID":89066,"TargetStructureID":89063,"Label":"89066-89063 via Conventional from 89067 -> 89068","Type":"Conventional","Directional":true,"Links":[{"SourceID":89067,"TargetID":89068,"Directional":true}]},{"ID":18155,"SourceStructureID":89073,"TargetStructureID":170,"Label":"89073-170 via Conventional from 89076 -> 89069","Type":"Conventional","Directional":true,"Links":[{"SourceID":89076,"TargetID":89069,"Directional":true}]},{"ID":18156,"SourceStructureID":89085,"TargetStructureID":170,"Label":"89085-170 via Conventional from 89515 -> 1248","Type":"Conventional","Directional":true,"Links":[{"SourceID":89515,"TargetID":1248,"Directional":true}]},{"ID":18157,"SourceStructureID":89086,"TargetStructureID":89175,"Label":"89086-89175 via Conventional from 89176 -> 89177","Type":"Conventional","Directional":true,"Links":[{"SourceID":89176,"TargetID":89177,"Directional":true}]},{"ID":18158,"SourceStructureID":89097,"TargetStructureID":5284,"Label":"89097-5284 via Conventional from 89099 -> 23495","Type":"Conventional","Directional":true,"Links":[{"SourceID":89099,"TargetID":23495,"Directional":true}]},{"ID":18159,"SourceStructureID":89097,"TargetStructureID":53407,"Label":"89097-53407 via Conventional from 89098 -> 53409","Type":"Conventional","Directional":true,"Links":[{"SourceID":89098,"TargetID":53409,"Directional":true}]},{"ID":18160,"SourceStructureID":89106,"TargetStructureID":70500,"Label":"89106-70500 via Conventional from 89109 -> 89103, 89110 -> 89104, 89111 -> 89105","Type":"Conventional","Directional":true,"Links":[{"SourceID":89109,"TargetID":89103,"Directional":true},{"SourceID":89110,"TargetID":89104,"Directional":true},{"SourceID":89111,"TargetID":89105,"Directional":true}]},{"ID":18161,"SourceStructureID":89120,"TargetStructureID":89133,"Label":"89120-89133 via Ribbon Synapse from 89132 -> 89134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89132,"TargetID":89134,"Directional":true}]},{"ID":18162,"SourceStructureID":89122,"TargetStructureID":89119,"Label":"89122-89119 via Conventional from 89123 -> 89121","Type":"Conventional","Directional":true,"Links":[{"SourceID":89123,"TargetID":89121,"Directional":true}]},{"ID":18163,"SourceStructureID":89124,"TargetStructureID":1021,"Label":"89124-1021 via Conventional from 125651 -> 125652","Type":"Conventional","Directional":true,"Links":[{"SourceID":125651,"TargetID":125652,"Directional":true}]},{"ID":18164,"SourceStructureID":89124,"TargetStructureID":6120,"Label":"89124-6120 via Conventional from 89339 -> 110556","Type":"Conventional","Directional":true,"Links":[{"SourceID":89339,"TargetID":110556,"Directional":true}]},{"ID":18165,"SourceStructureID":89124,"TargetStructureID":22974,"Label":"89124-22974 via Conventional from 89330 -> 89331","Type":"Conventional","Directional":true,"Links":[{"SourceID":89330,"TargetID":89331,"Directional":true}]},{"ID":18166,"SourceStructureID":89124,"TargetStructureID":89355,"Label":"89124-89355 via Conventional from 89353 -> 89357","Type":"Conventional","Directional":true,"Links":[{"SourceID":89353,"TargetID":89357,"Directional":true}]},{"ID":18167,"SourceStructureID":89127,"TargetStructureID":89124,"Label":"89127-89124 via Cistern Pre from 89131 -> 89130","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":89131,"TargetID":89130,"Directional":true}]},{"ID":18168,"SourceStructureID":89127,"TargetStructureID":89124,"Label":"89127-89124 via Conventional from 89128 -> 89126","Type":"Conventional","Directional":true,"Links":[{"SourceID":89128,"TargetID":89126,"Directional":true}]},{"ID":18169,"SourceStructureID":89136,"TargetStructureID":87224,"Label":"89136-87224 via Conventional from 89138 -> 89139","Type":"Conventional","Directional":true,"Links":[{"SourceID":89138,"TargetID":89139,"Directional":true}]},{"ID":18170,"SourceStructureID":89136,"TargetStructureID":89133,"Label":"89136-89133 via Conventional from 89137 -> 89135","Type":"Conventional","Directional":true,"Links":[{"SourceID":89137,"TargetID":89135,"Directional":true}]},{"ID":18171,"SourceStructureID":89157,"TargetStructureID":168,"Label":"89157-168 via Conventional from 89158 -> 89169","Type":"Conventional","Directional":true,"Links":[{"SourceID":89158,"TargetID":89169,"Directional":true}]},{"ID":18172,"SourceStructureID":89160,"TargetStructureID":89120,"Label":"89160-89120 via Conventional from 89162 -> 89159","Type":"Conventional","Directional":true,"Links":[{"SourceID":89162,"TargetID":89159,"Directional":true}]},{"ID":18173,"SourceStructureID":89175,"TargetStructureID":170,"Label":"89175-170 via Conventional from 89178 -> 28367","Type":"Conventional","Directional":true,"Links":[{"SourceID":89178,"TargetID":28367,"Directional":true}]},{"ID":18174,"SourceStructureID":89181,"TargetStructureID":170,"Label":"89181-170 via Conventional from 89184 -> 1358","Type":"Conventional","Directional":true,"Links":[{"SourceID":89184,"TargetID":1358,"Directional":true}]},{"ID":18175,"SourceStructureID":89185,"TargetStructureID":170,"Label":"89185-170 via Conventional from 89186 -> 28377","Type":"Conventional","Directional":true,"Links":[{"SourceID":89186,"TargetID":28377,"Directional":true}]},{"ID":18176,"SourceStructureID":89193,"TargetStructureID":170,"Label":"89193-170 via Conventional from 89194 -> 89195","Type":"Conventional","Directional":true,"Links":[{"SourceID":89194,"TargetID":89195,"Directional":true}]},{"ID":18177,"SourceStructureID":89193,"TargetStructureID":71882,"Label":"89193-71882 via Conventional from 90414 -> 90413","Type":"Conventional","Directional":true,"Links":[{"SourceID":90414,"TargetID":90413,"Directional":true}]},{"ID":18178,"SourceStructureID":89199,"TargetStructureID":170,"Label":"89199-170 via Conventional from 89200 -> 1356","Type":"Conventional","Directional":true,"Links":[{"SourceID":89200,"TargetID":1356,"Directional":true}]},{"ID":18179,"SourceStructureID":89222,"TargetStructureID":170,"Label":"89222-170 via Conventional from 89223 -> 28378","Type":"Conventional","Directional":true,"Links":[{"SourceID":89223,"TargetID":28378,"Directional":true}]},{"ID":18180,"SourceStructureID":89231,"TargetStructureID":170,"Label":"89231-170 via Conventional from 89237 -> 28381","Type":"Conventional","Directional":true,"Links":[{"SourceID":89237,"TargetID":28381,"Directional":true}]},{"ID":18181,"SourceStructureID":89233,"TargetStructureID":419,"Label":"89233-419 via Conventional from 89238 -> 89242","Type":"Conventional","Directional":true,"Links":[{"SourceID":89238,"TargetID":89242,"Directional":true}]},{"ID":18182,"SourceStructureID":89233,"TargetStructureID":5118,"Label":"89233-5118 via Conventional from 89241 -> 6541","Type":"Conventional","Directional":true,"Links":[{"SourceID":89241,"TargetID":6541,"Directional":true}]},{"ID":18183,"SourceStructureID":89240,"TargetStructureID":170,"Label":"89240-170 via Conventional from 89245 -> 28380","Type":"Conventional","Directional":true,"Links":[{"SourceID":89245,"TargetID":28380,"Directional":true}]},{"ID":18184,"SourceStructureID":89248,"TargetStructureID":170,"Label":"89248-170 via Conventional from 89249 -> 1281","Type":"Conventional","Directional":true,"Links":[{"SourceID":89249,"TargetID":1281,"Directional":true}]},{"ID":18185,"SourceStructureID":89253,"TargetStructureID":591,"Label":"89253-591 via Ribbon Synapse from 89254 -> 10298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89254,"TargetID":10298,"Directional":true}]},{"ID":18186,"SourceStructureID":89285,"TargetStructureID":11246,"Label":"89285-11246 via Conventional from 89286 -> 89281, 89287 -> 89282","Type":"Conventional","Directional":true,"Links":[{"SourceID":89286,"TargetID":89281,"Directional":true},{"SourceID":89287,"TargetID":89282,"Directional":true}]},{"ID":18187,"SourceStructureID":89305,"TargetStructureID":5514,"Label":"89305-5514 via Conventional from 89308 -> 89309","Type":"Conventional","Directional":true,"Links":[{"SourceID":89308,"TargetID":89309,"Directional":true}]},{"ID":18188,"SourceStructureID":89305,"TargetStructureID":10826,"Label":"89305-10826 via Conventional from 89306 -> 89307","Type":"Conventional","Directional":true,"Links":[{"SourceID":89306,"TargetID":89307,"Directional":true}]},{"ID":18189,"SourceStructureID":89317,"TargetStructureID":89124,"Label":"89317-89124 via Conventional from 89321 -> 89316","Type":"Conventional","Directional":true,"Links":[{"SourceID":89321,"TargetID":89316,"Directional":true}]},{"ID":18190,"SourceStructureID":89328,"TargetStructureID":89124,"Label":"89328-89124 via Conventional from 89329 -> 89327","Type":"Conventional","Directional":true,"Links":[{"SourceID":89329,"TargetID":89327,"Directional":true}]},{"ID":18191,"SourceStructureID":89347,"TargetStructureID":6120,"Label":"89347-6120 via Conventional from 89348 -> 110551","Type":"Conventional","Directional":true,"Links":[{"SourceID":89348,"TargetID":110551,"Directional":true}]},{"ID":18192,"SourceStructureID":89359,"TargetStructureID":170,"Label":"89359-170 via Conventional from 89361 -> 89362","Type":"Conventional","Directional":true,"Links":[{"SourceID":89361,"TargetID":89362,"Directional":true}]},{"ID":18193,"SourceStructureID":89372,"TargetStructureID":170,"Label":"89372-170 via Conventional from 89373 -> 89374","Type":"Conventional","Directional":true,"Links":[{"SourceID":89373,"TargetID":89374,"Directional":true}]},{"ID":18194,"SourceStructureID":89378,"TargetStructureID":4569,"Label":"89378-4569 via Conventional from 98923 -> 30852","Type":"Conventional","Directional":true,"Links":[{"SourceID":98923,"TargetID":30852,"Directional":true}]},{"ID":18195,"SourceStructureID":89388,"TargetStructureID":170,"Label":"89388-170 via Conventional from 89389 -> 89390","Type":"Conventional","Directional":true,"Links":[{"SourceID":89389,"TargetID":89390,"Directional":true}]},{"ID":18196,"SourceStructureID":89388,"TargetStructureID":4569,"Label":"89388-4569 via Conventional from 98957 -> 98956","Type":"Conventional","Directional":true,"Links":[{"SourceID":98957,"TargetID":98956,"Directional":true}]},{"ID":18197,"SourceStructureID":89391,"TargetStructureID":170,"Label":"89391-170 via Conventional from 89393 -> 89394","Type":"Conventional","Directional":true,"Links":[{"SourceID":89393,"TargetID":89394,"Directional":true}]},{"ID":18198,"SourceStructureID":89397,"TargetStructureID":170,"Label":"89397-170 via Conventional from 89398 -> 89399","Type":"Conventional","Directional":true,"Links":[{"SourceID":89398,"TargetID":89399,"Directional":true}]},{"ID":18199,"SourceStructureID":89407,"TargetStructureID":4569,"Label":"89407-4569 via Conventional from 98673 -> 98672","Type":"Conventional","Directional":true,"Links":[{"SourceID":98673,"TargetID":98672,"Directional":true}]},{"ID":18200,"SourceStructureID":89411,"TargetStructureID":170,"Label":"89411-170 via Conventional from 89415 -> 89416","Type":"Conventional","Directional":true,"Links":[{"SourceID":89415,"TargetID":89416,"Directional":true}]},{"ID":18201,"SourceStructureID":89413,"TargetStructureID":5396,"Label":"89413-5396 via Conventional from 89414 -> 89412","Type":"Conventional","Directional":true,"Links":[{"SourceID":89414,"TargetID":89412,"Directional":true}]},{"ID":18202,"SourceStructureID":89420,"TargetStructureID":518,"Label":"89420-518 via Conventional from 89422 -> 89421, 89423 -> 3422, 89424 -> 3496","Type":"Conventional","Directional":true,"Links":[{"SourceID":89422,"TargetID":89421,"Directional":true},{"SourceID":89423,"TargetID":3422,"Directional":true},{"SourceID":89424,"TargetID":3496,"Directional":true}]},{"ID":18203,"SourceStructureID":89427,"TargetStructureID":5396,"Label":"89427-5396 via Conventional from 89428 -> 24587","Type":"Conventional","Directional":true,"Links":[{"SourceID":89428,"TargetID":24587,"Directional":true}]},{"ID":18204,"SourceStructureID":89463,"TargetStructureID":170,"Label":"89463-170 via Conventional from 89464 -> 89465","Type":"Conventional","Directional":true,"Links":[{"SourceID":89464,"TargetID":89465,"Directional":true}]},{"ID":18205,"SourceStructureID":89478,"TargetStructureID":170,"Label":"89478-170 via Conventional from 89487 -> 89488","Type":"Conventional","Directional":true,"Links":[{"SourceID":89487,"TargetID":89488,"Directional":true}]},{"ID":18206,"SourceStructureID":89485,"TargetStructureID":170,"Label":"89485-170 via Conventional from 89486 -> 1291","Type":"Conventional","Directional":true,"Links":[{"SourceID":89486,"TargetID":1291,"Directional":true}]},{"ID":18207,"SourceStructureID":89501,"TargetStructureID":170,"Label":"89501-170 via Conventional from 89506 -> 89507","Type":"Conventional","Directional":true,"Links":[{"SourceID":89506,"TargetID":89507,"Directional":true}]},{"ID":18208,"SourceStructureID":89503,"TargetStructureID":170,"Label":"89503-170 via Conventional from 89505 -> 1246","Type":"Conventional","Directional":true,"Links":[{"SourceID":89505,"TargetID":1246,"Directional":true}]},{"ID":18209,"SourceStructureID":89511,"TargetStructureID":170,"Label":"89511-170 via Conventional from 89514 -> 1256","Type":"Conventional","Directional":true,"Links":[{"SourceID":89514,"TargetID":1256,"Directional":true}]},{"ID":18210,"SourceStructureID":89516,"TargetStructureID":6129,"Label":"89516-6129 via Conventional from 91030 -> 91031","Type":"Conventional","Directional":true,"Links":[{"SourceID":91030,"TargetID":91031,"Directional":true}]},{"ID":18211,"SourceStructureID":89524,"TargetStructureID":89522,"Label":"89524-89522 via Ribbon Synapse from 89526 -> 89529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89526,"TargetID":89529,"Directional":true}]},{"ID":18212,"SourceStructureID":89536,"TargetStructureID":5396,"Label":"89536-5396 via Ribbon Synapse from 89537 -> 89535","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89537,"TargetID":89535,"Directional":true}]},{"ID":18213,"SourceStructureID":89536,"TargetStructureID":89538,"Label":"89536-89538 via Ribbon Synapse from 89537 -> 89539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89537,"TargetID":89539,"Directional":true}]},{"ID":18214,"SourceStructureID":89544,"TargetStructureID":89546,"Label":"89544-89546 via Conventional from 89545 -> 89549","Type":"Conventional","Directional":true,"Links":[{"SourceID":89545,"TargetID":89549,"Directional":true}]},{"ID":18215,"SourceStructureID":89617,"TargetStructureID":64452,"Label":"89617-64452 via Conventional from 89618 -> 89616","Type":"Conventional","Directional":true,"Links":[{"SourceID":89618,"TargetID":89616,"Directional":true}]},{"ID":18216,"SourceStructureID":89631,"TargetStructureID":5729,"Label":"89631-5729 via Conventional from 89633 -> 89629","Type":"Conventional","Directional":true,"Links":[{"SourceID":89633,"TargetID":89629,"Directional":true}]},{"ID":18217,"SourceStructureID":89644,"TargetStructureID":89638,"Label":"89644-89638 via Conventional from 89645 -> 89643","Type":"Conventional","Directional":true,"Links":[{"SourceID":89645,"TargetID":89643,"Directional":true}]},{"ID":18218,"SourceStructureID":89648,"TargetStructureID":89638,"Label":"89648-89638 via Conventional from 89649 -> 89647","Type":"Conventional","Directional":true,"Links":[{"SourceID":89649,"TargetID":89647,"Directional":true}]},{"ID":18219,"SourceStructureID":89652,"TargetStructureID":89638,"Label":"89652-89638 via Conventional from 89653 -> 89651","Type":"Conventional","Directional":true,"Links":[{"SourceID":89653,"TargetID":89651,"Directional":true}]},{"ID":18220,"SourceStructureID":89654,"TargetStructureID":170,"Label":"89654-170 via Conventional from 89657 -> 89658","Type":"Conventional","Directional":true,"Links":[{"SourceID":89657,"TargetID":89658,"Directional":true}]},{"ID":18221,"SourceStructureID":89660,"TargetStructureID":170,"Label":"89660-170 via Conventional from 89661 -> 89662","Type":"Conventional","Directional":true,"Links":[{"SourceID":89661,"TargetID":89662,"Directional":true}]},{"ID":18222,"SourceStructureID":89664,"TargetStructureID":170,"Label":"89664-170 via Conventional from 89665 -> 89666","Type":"Conventional","Directional":true,"Links":[{"SourceID":89665,"TargetID":89666,"Directional":true}]},{"ID":18223,"SourceStructureID":89670,"TargetStructureID":6203,"Label":"89670-6203 via Conventional from 125779 -> 125778","Type":"Conventional","Directional":true,"Links":[{"SourceID":125779,"TargetID":125778,"Directional":true}]},{"ID":18224,"SourceStructureID":89676,"TargetStructureID":170,"Label":"89676-170 via Conventional from 89678 -> 89679","Type":"Conventional","Directional":true,"Links":[{"SourceID":89678,"TargetID":89679,"Directional":true}]},{"ID":18225,"SourceStructureID":89694,"TargetStructureID":6141,"Label":"89694-6141 via Conventional from 89699 -> 61351","Type":"Conventional","Directional":true,"Links":[{"SourceID":89699,"TargetID":61351,"Directional":true}]},{"ID":18226,"SourceStructureID":89701,"TargetStructureID":170,"Label":"89701-170 via Conventional from 89702 -> 89703","Type":"Conventional","Directional":true,"Links":[{"SourceID":89702,"TargetID":89703,"Directional":true}]},{"ID":18227,"SourceStructureID":89705,"TargetStructureID":170,"Label":"89705-170 via Conventional from 89710 -> 89711","Type":"Conventional","Directional":true,"Links":[{"SourceID":89710,"TargetID":89711,"Directional":true}]},{"ID":18228,"SourceStructureID":89707,"TargetStructureID":33272,"Label":"89707-33272 via Conventional from 89708 -> 33275","Type":"Conventional","Directional":true,"Links":[{"SourceID":89708,"TargetID":33275,"Directional":true}]},{"ID":18229,"SourceStructureID":89720,"TargetStructureID":170,"Label":"89720-170 via Conventional from 89725 -> 1254","Type":"Conventional","Directional":true,"Links":[{"SourceID":89725,"TargetID":1254,"Directional":true}]},{"ID":18230,"SourceStructureID":89735,"TargetStructureID":170,"Label":"89735-170 via Conventional from 89736 -> 1324","Type":"Conventional","Directional":true,"Links":[{"SourceID":89736,"TargetID":1324,"Directional":true}]},{"ID":18231,"SourceStructureID":89756,"TargetStructureID":170,"Label":"89756-170 via Conventional from 89758 -> 89759","Type":"Conventional","Directional":true,"Links":[{"SourceID":89758,"TargetID":89759,"Directional":true}]},{"ID":18232,"SourceStructureID":89757,"TargetStructureID":170,"Label":"89757-170 via Conventional from 89767 -> 1267, 89767 -> 1268","Type":"Conventional","Directional":true,"Links":[{"SourceID":89767,"TargetID":1267,"Directional":true},{"SourceID":89767,"TargetID":1268,"Directional":true}]},{"ID":18233,"SourceStructureID":89760,"TargetStructureID":170,"Label":"89760-170 via Conventional from 89766 -> 1265","Type":"Conventional","Directional":true,"Links":[{"SourceID":89766,"TargetID":1265,"Directional":true}]},{"ID":18234,"SourceStructureID":89775,"TargetStructureID":6142,"Label":"89775-6142 via Conventional from 89783 -> 16114","Type":"Conventional","Directional":true,"Links":[{"SourceID":89783,"TargetID":16114,"Directional":true}]},{"ID":18235,"SourceStructureID":89775,"TargetStructureID":10412,"Label":"89775-10412 via Conventional from 89806 -> 89807","Type":"Conventional","Directional":true,"Links":[{"SourceID":89806,"TargetID":89807,"Directional":true}]},{"ID":18236,"SourceStructureID":89775,"TargetStructureID":89788,"Label":"89775-89788 via Conventional from 89787 -> 89789","Type":"Conventional","Directional":true,"Links":[{"SourceID":89787,"TargetID":89789,"Directional":true}]},{"ID":18237,"SourceStructureID":89775,"TargetStructureID":89809,"Label":"89775-89809 via Conventional from 89808 -> 89810","Type":"Conventional","Directional":true,"Links":[{"SourceID":89808,"TargetID":89810,"Directional":true}]},{"ID":18238,"SourceStructureID":89780,"TargetStructureID":89775,"Label":"89780-89775 via Conventional from 89781 -> 89779","Type":"Conventional","Directional":true,"Links":[{"SourceID":89781,"TargetID":89779,"Directional":true}]},{"ID":18239,"SourceStructureID":89791,"TargetStructureID":89775,"Label":"89791-89775 via Conventional from 89794 -> 89795","Type":"Conventional","Directional":true,"Links":[{"SourceID":89794,"TargetID":89795,"Directional":true}]},{"ID":18240,"SourceStructureID":89804,"TargetStructureID":89775,"Label":"89804-89775 via Conventional from 89805 -> 89803","Type":"Conventional","Directional":true,"Links":[{"SourceID":89805,"TargetID":89803,"Directional":true}]},{"ID":18241,"SourceStructureID":89811,"TargetStructureID":89814,"Label":"89811-89814 via Conventional from 89813 -> 89817","Type":"Conventional","Directional":true,"Links":[{"SourceID":89813,"TargetID":89817,"Directional":true}]},{"ID":18242,"SourceStructureID":89822,"TargetStructureID":89820,"Label":"89822-89820 via Ribbon Synapse from 89823 -> 89824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89823,"TargetID":89824,"Directional":true}]},{"ID":18243,"SourceStructureID":89833,"TargetStructureID":89831,"Label":"89833-89831 via Conventional from 89834 -> 89832","Type":"Conventional","Directional":true,"Links":[{"SourceID":89834,"TargetID":89832,"Directional":true}]},{"ID":18244,"SourceStructureID":89836,"TargetStructureID":89831,"Label":"89836-89831 via Conventional from 89843 -> 89842","Type":"Conventional","Directional":true,"Links":[{"SourceID":89843,"TargetID":89842,"Directional":true}]},{"ID":18245,"SourceStructureID":89838,"TargetStructureID":89831,"Label":"89838-89831 via Conventional from 89840 -> 89837","Type":"Conventional","Directional":true,"Links":[{"SourceID":89840,"TargetID":89837,"Directional":true}]},{"ID":18246,"SourceStructureID":89851,"TargetStructureID":55319,"Label":"89851-55319 via Conventional from 89982 -> 55322","Type":"Conventional","Directional":true,"Links":[{"SourceID":89982,"TargetID":55322,"Directional":true}]},{"ID":18247,"SourceStructureID":89851,"TargetStructureID":89938,"Label":"89851-89938 via Conventional from 89937 -> 89939","Type":"Conventional","Directional":true,"Links":[{"SourceID":89937,"TargetID":89939,"Directional":true}]},{"ID":18248,"SourceStructureID":89855,"TargetStructureID":170,"Label":"89855-170 via Conventional from 89870 -> 89871","Type":"Conventional","Directional":true,"Links":[{"SourceID":89870,"TargetID":89871,"Directional":true}]},{"ID":18249,"SourceStructureID":89860,"TargetStructureID":170,"Label":"89860-170 via Conventional from 89875 -> 89876","Type":"Conventional","Directional":true,"Links":[{"SourceID":89875,"TargetID":89876,"Directional":true}]},{"ID":18250,"SourceStructureID":89868,"TargetStructureID":89851,"Label":"89868-89851 via Conventional from 89869 -> 89867","Type":"Conventional","Directional":true,"Links":[{"SourceID":89869,"TargetID":89867,"Directional":true}]},{"ID":18251,"SourceStructureID":89872,"TargetStructureID":170,"Label":"89872-170 via Conventional from 89873 -> 89874","Type":"Conventional","Directional":true,"Links":[{"SourceID":89873,"TargetID":89874,"Directional":true}]},{"ID":18252,"SourceStructureID":89877,"TargetStructureID":170,"Label":"89877-170 via Conventional from 89880 -> 89881","Type":"Conventional","Directional":true,"Links":[{"SourceID":89880,"TargetID":89881,"Directional":true}]},{"ID":18253,"SourceStructureID":89882,"TargetStructureID":170,"Label":"89882-170 via Conventional from 89885 -> 89886","Type":"Conventional","Directional":true,"Links":[{"SourceID":89885,"TargetID":89886,"Directional":true}]},{"ID":18254,"SourceStructureID":89887,"TargetStructureID":517,"Label":"89887-517 via Conventional from 89891 -> 89892","Type":"Conventional","Directional":true,"Links":[{"SourceID":89891,"TargetID":89892,"Directional":true}]},{"ID":18255,"SourceStructureID":89902,"TargetStructureID":170,"Label":"89902-170 via Conventional from 89904 -> 89905","Type":"Conventional","Directional":true,"Links":[{"SourceID":89904,"TargetID":89905,"Directional":true}]},{"ID":18256,"SourceStructureID":89907,"TargetStructureID":89851,"Label":"89907-89851 via Conventional from 89908 -> 89906","Type":"Conventional","Directional":true,"Links":[{"SourceID":89908,"TargetID":89906,"Directional":true}]},{"ID":18257,"SourceStructureID":89910,"TargetStructureID":89851,"Label":"89910-89851 via Conventional from 89913 -> 89914","Type":"Conventional","Directional":true,"Links":[{"SourceID":89913,"TargetID":89914,"Directional":true}]},{"ID":18258,"SourceStructureID":89912,"TargetStructureID":3679,"Label":"89912-3679 via Conventional from 89945 -> 4709","Type":"Conventional","Directional":true,"Links":[{"SourceID":89945,"TargetID":4709,"Directional":true}]},{"ID":18259,"SourceStructureID":89915,"TargetStructureID":170,"Label":"89915-170 via Conventional from 89918 -> 89919","Type":"Conventional","Directional":true,"Links":[{"SourceID":89918,"TargetID":89919,"Directional":true}]},{"ID":18260,"SourceStructureID":89921,"TargetStructureID":170,"Label":"89921-170 via Conventional from 89922 -> 89923","Type":"Conventional","Directional":true,"Links":[{"SourceID":89922,"TargetID":89923,"Directional":true}]},{"ID":18261,"SourceStructureID":89928,"TargetStructureID":89851,"Label":"89928-89851 via Ribbon Synapse from 89932 -> 89926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89932,"TargetID":89926,"Directional":true}]},{"ID":18262,"SourceStructureID":89941,"TargetStructureID":170,"Label":"89941-170 via Conventional from 89942 -> 89943","Type":"Conventional","Directional":true,"Links":[{"SourceID":89942,"TargetID":89943,"Directional":true}]},{"ID":18263,"SourceStructureID":89944,"TargetStructureID":170,"Label":"89944-170 via Conventional from 89946 -> 89947","Type":"Conventional","Directional":true,"Links":[{"SourceID":89946,"TargetID":89947,"Directional":true}]},{"ID":18264,"SourceStructureID":89952,"TargetStructureID":170,"Label":"89952-170 via Conventional from 89954 -> 89955","Type":"Conventional","Directional":true,"Links":[{"SourceID":89954,"TargetID":89955,"Directional":true}]},{"ID":18265,"SourceStructureID":89965,"TargetStructureID":170,"Label":"89965-170 via Conventional from 89967 -> 89968","Type":"Conventional","Directional":true,"Links":[{"SourceID":89967,"TargetID":89968,"Directional":true}]},{"ID":18266,"SourceStructureID":89984,"TargetStructureID":471,"Label":"89984-471 via Conventional from 90016 -> 90025, 90026 -> 90027, 90028 -> 90029, 90030 -> 8236, 90031 -> 90032","Type":"Conventional","Directional":true,"Links":[{"SourceID":90016,"TargetID":90025,"Directional":true},{"SourceID":90026,"TargetID":90027,"Directional":true},{"SourceID":90028,"TargetID":90029,"Directional":true},{"SourceID":90030,"TargetID":8236,"Directional":true},{"SourceID":90031,"TargetID":90032,"Directional":true}]},{"ID":18267,"SourceStructureID":89988,"TargetStructureID":170,"Label":"89988-170 via Conventional from 89995 -> 89996","Type":"Conventional","Directional":true,"Links":[{"SourceID":89995,"TargetID":89996,"Directional":true}]},{"ID":18268,"SourceStructureID":89989,"TargetStructureID":431,"Label":"89989-431 via Conventional from 90042 -> 14376, 90087 -> 12672, 90099 -> 90104","Type":"Conventional","Directional":true,"Links":[{"SourceID":90042,"TargetID":14376,"Directional":true},{"SourceID":90087,"TargetID":12672,"Directional":true},{"SourceID":90099,"TargetID":90104,"Directional":true}]},{"ID":18269,"SourceStructureID":89989,"TargetStructureID":90040,"Label":"89989-90040 via Conventional from 90039 -> 90041","Type":"Conventional","Directional":true,"Links":[{"SourceID":90039,"TargetID":90041,"Directional":true}]},{"ID":18270,"SourceStructureID":90004,"TargetStructureID":4569,"Label":"90004-4569 via Conventional from 98482 -> 98483","Type":"Conventional","Directional":true,"Links":[{"SourceID":98482,"TargetID":98483,"Directional":true}]},{"ID":18271,"SourceStructureID":90013,"TargetStructureID":4569,"Label":"90013-4569 via Conventional from 98549 -> 47496","Type":"Conventional","Directional":true,"Links":[{"SourceID":98549,"TargetID":47496,"Directional":true}]},{"ID":18272,"SourceStructureID":90047,"TargetStructureID":170,"Label":"90047-170 via Conventional from 90056 -> 1270","Type":"Conventional","Directional":true,"Links":[{"SourceID":90056,"TargetID":1270,"Directional":true}]},{"ID":18273,"SourceStructureID":90049,"TargetStructureID":170,"Label":"90049-170 via Conventional from 90050 -> 90051","Type":"Conventional","Directional":true,"Links":[{"SourceID":90050,"TargetID":90051,"Directional":true}]},{"ID":18274,"SourceStructureID":90061,"TargetStructureID":595,"Label":"90061-595 via Conventional from 90458 -> 90459","Type":"Conventional","Directional":true,"Links":[{"SourceID":90458,"TargetID":90459,"Directional":true}]},{"ID":18275,"SourceStructureID":90066,"TargetStructureID":170,"Label":"90066-170 via Conventional from 90067 -> 90068","Type":"Conventional","Directional":true,"Links":[{"SourceID":90067,"TargetID":90068,"Directional":true}]},{"ID":18276,"SourceStructureID":90079,"TargetStructureID":170,"Label":"90079-170 via Conventional from 90083 -> 28371","Type":"Conventional","Directional":true,"Links":[{"SourceID":90083,"TargetID":28371,"Directional":true}]},{"ID":18277,"SourceStructureID":90102,"TargetStructureID":431,"Label":"90102-431 via Conventional from 90103 -> 90101","Type":"Conventional","Directional":true,"Links":[{"SourceID":90103,"TargetID":90101,"Directional":true}]},{"ID":18278,"SourceStructureID":90108,"TargetStructureID":89989,"Label":"90108-89989 via Conventional from 90109 -> 90107","Type":"Conventional","Directional":true,"Links":[{"SourceID":90109,"TargetID":90107,"Directional":true}]},{"ID":18279,"SourceStructureID":90111,"TargetStructureID":90118,"Label":"90111-90118 via Conventional from 90117 -> 90119","Type":"Conventional","Directional":true,"Links":[{"SourceID":90117,"TargetID":90119,"Directional":true}]},{"ID":18280,"SourceStructureID":90113,"TargetStructureID":90111,"Label":"90113-90111 via Ribbon Synapse from 90114 -> 90112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90114,"TargetID":90112,"Directional":true}]},{"ID":18281,"SourceStructureID":90118,"TargetStructureID":90149,"Label":"90118-90149 via Conventional from 90147 -> 90150","Type":"Conventional","Directional":true,"Links":[{"SourceID":90147,"TargetID":90150,"Directional":true}]},{"ID":18282,"SourceStructureID":90122,"TargetStructureID":90118,"Label":"90122-90118 via Conventional from 90131 -> 90130","Type":"Conventional","Directional":true,"Links":[{"SourceID":90131,"TargetID":90130,"Directional":true}]},{"ID":18283,"SourceStructureID":90134,"TargetStructureID":90118,"Label":"90134-90118 via Conventional from 90135 -> 90133","Type":"Conventional","Directional":true,"Links":[{"SourceID":90135,"TargetID":90133,"Directional":true}]},{"ID":18284,"SourceStructureID":90138,"TargetStructureID":90118,"Label":"90138-90118 via Conventional from 90139 -> 90136","Type":"Conventional","Directional":true,"Links":[{"SourceID":90139,"TargetID":90136,"Directional":true}]},{"ID":18285,"SourceStructureID":90140,"TargetStructureID":90118,"Label":"90140-90118 via Conventional from 90141 -> 90137","Type":"Conventional","Directional":true,"Links":[{"SourceID":90141,"TargetID":90137,"Directional":true}]},{"ID":18286,"SourceStructureID":90151,"TargetStructureID":328,"Label":"90151-328 via Conventional from 90159 -> 90160","Type":"Conventional","Directional":true,"Links":[{"SourceID":90159,"TargetID":90160,"Directional":true}]},{"ID":18287,"SourceStructureID":90151,"TargetStructureID":90156,"Label":"90151-90156 via Conventional from 90155 -> 90157","Type":"Conventional","Directional":true,"Links":[{"SourceID":90155,"TargetID":90157,"Directional":true}]},{"ID":18288,"SourceStructureID":90234,"TargetStructureID":71882,"Label":"90234-71882 via Conventional from 90235 -> 90233","Type":"Conventional","Directional":true,"Links":[{"SourceID":90235,"TargetID":90233,"Directional":true}]},{"ID":18289,"SourceStructureID":90243,"TargetStructureID":170,"Label":"90243-170 via Conventional from 90244 -> 90245","Type":"Conventional","Directional":true,"Links":[{"SourceID":90244,"TargetID":90245,"Directional":true}]},{"ID":18290,"SourceStructureID":90271,"TargetStructureID":170,"Label":"90271-170 via Conventional from 90276 -> 1402","Type":"Conventional","Directional":true,"Links":[{"SourceID":90276,"TargetID":1402,"Directional":true}]},{"ID":18291,"SourceStructureID":90284,"TargetStructureID":4569,"Label":"90284-4569 via Conventional from 98467 -> 52508","Type":"Conventional","Directional":true,"Links":[{"SourceID":98467,"TargetID":52508,"Directional":true}]},{"ID":18292,"SourceStructureID":90296,"TargetStructureID":170,"Label":"90296-170 via Conventional from 90297 -> 90298","Type":"Conventional","Directional":true,"Links":[{"SourceID":90297,"TargetID":90298,"Directional":true}]},{"ID":18293,"SourceStructureID":90303,"TargetStructureID":170,"Label":"90303-170 via Conventional from 90306 -> 90305","Type":"Conventional","Directional":true,"Links":[{"SourceID":90306,"TargetID":90305,"Directional":true}]},{"ID":18294,"SourceStructureID":90311,"TargetStructureID":170,"Label":"90311-170 via Conventional from 90313 -> 92477","Type":"Conventional","Directional":true,"Links":[{"SourceID":90313,"TargetID":92477,"Directional":true}]},{"ID":18295,"SourceStructureID":90328,"TargetStructureID":16026,"Label":"90328-16026 via Conventional from 90412 -> 134808","Type":"Conventional","Directional":true,"Links":[{"SourceID":90412,"TargetID":134808,"Directional":true}]},{"ID":18296,"SourceStructureID":90347,"TargetStructureID":170,"Label":"90347-170 via Conventional from 90348 -> 90349","Type":"Conventional","Directional":true,"Links":[{"SourceID":90348,"TargetID":90349,"Directional":true}]},{"ID":18297,"SourceStructureID":90363,"TargetStructureID":170,"Label":"90363-170 via Conventional from 90364 -> 90365","Type":"Conventional","Directional":true,"Links":[{"SourceID":90364,"TargetID":90365,"Directional":true}]},{"ID":18298,"SourceStructureID":90368,"TargetStructureID":170,"Label":"90368-170 via Conventional from 90369 -> 1407","Type":"Conventional","Directional":true,"Links":[{"SourceID":90369,"TargetID":1407,"Directional":true}]},{"ID":18299,"SourceStructureID":90381,"TargetStructureID":170,"Label":"90381-170 via Conventional from 90382 -> 90385","Type":"Conventional","Directional":true,"Links":[{"SourceID":90382,"TargetID":90385,"Directional":true}]},{"ID":18300,"SourceStructureID":90393,"TargetStructureID":170,"Label":"90393-170 via Conventional from 90398 -> 90400","Type":"Conventional","Directional":true,"Links":[{"SourceID":90398,"TargetID":90400,"Directional":true}]},{"ID":18301,"SourceStructureID":90396,"TargetStructureID":71882,"Label":"90396-71882 via Ribbon Synapse from 90397 -> 90395","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90397,"TargetID":90395,"Directional":true}]},{"ID":18302,"SourceStructureID":90396,"TargetStructureID":90389,"Label":"90396-90389 via Ribbon Synapse from 90397 -> 90392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90397,"TargetID":90392,"Directional":true}]},{"ID":18303,"SourceStructureID":90420,"TargetStructureID":170,"Label":"90420-170 via Conventional from 92481 -> 92483","Type":"Conventional","Directional":true,"Links":[{"SourceID":92481,"TargetID":92483,"Directional":true}]},{"ID":18304,"SourceStructureID":90420,"TargetStructureID":324,"Label":"90420-324 via Conventional from 92481 -> 92482","Type":"Conventional","Directional":true,"Links":[{"SourceID":92481,"TargetID":92482,"Directional":true}]},{"ID":18305,"SourceStructureID":90430,"TargetStructureID":71882,"Label":"90430-71882 via Conventional from 90432 -> 90429","Type":"Conventional","Directional":true,"Links":[{"SourceID":90432,"TargetID":90429,"Directional":true}]},{"ID":18306,"SourceStructureID":90436,"TargetStructureID":170,"Label":"90436-170 via Conventional from 90437 -> 90438","Type":"Conventional","Directional":true,"Links":[{"SourceID":90437,"TargetID":90438,"Directional":true}]},{"ID":18307,"SourceStructureID":90440,"TargetStructureID":170,"Label":"90440-170 via Conventional from 90442 -> 90443","Type":"Conventional","Directional":true,"Links":[{"SourceID":90442,"TargetID":90443,"Directional":true}]},{"ID":18308,"SourceStructureID":90460,"TargetStructureID":4569,"Label":"90460-4569 via Conventional from 98397 -> 30828","Type":"Conventional","Directional":true,"Links":[{"SourceID":98397,"TargetID":30828,"Directional":true}]},{"ID":18309,"SourceStructureID":90468,"TargetStructureID":170,"Label":"90468-170 via Conventional from 90469 -> 90470","Type":"Conventional","Directional":true,"Links":[{"SourceID":90469,"TargetID":90470,"Directional":true}]},{"ID":18310,"SourceStructureID":90483,"TargetStructureID":372,"Label":"90483-372 via Conventional from 90495 -> 90496, 90498 -> 45646","Type":"Conventional","Directional":true,"Links":[{"SourceID":90495,"TargetID":90496,"Directional":true},{"SourceID":90498,"TargetID":45646,"Directional":true}]},{"ID":18311,"SourceStructureID":90483,"TargetStructureID":4569,"Label":"90483-4569 via Conventional from 90484 -> 53683","Type":"Conventional","Directional":true,"Links":[{"SourceID":90484,"TargetID":53683,"Directional":true}]},{"ID":18312,"SourceStructureID":90488,"TargetStructureID":90487,"Label":"90488-90487 via Conventional from 90491 -> 90492","Type":"Conventional","Directional":true,"Links":[{"SourceID":90491,"TargetID":90492,"Directional":true}]},{"ID":18313,"SourceStructureID":90526,"TargetStructureID":53115,"Label":"90526-53115 via Conventional from 90527 -> 90524","Type":"Conventional","Directional":true,"Links":[{"SourceID":90527,"TargetID":90524,"Directional":true}]},{"ID":18314,"SourceStructureID":90543,"TargetStructureID":170,"Label":"90543-170 via Conventional from 90545 -> 90546","Type":"Conventional","Directional":true,"Links":[{"SourceID":90545,"TargetID":90546,"Directional":true}]},{"ID":18315,"SourceStructureID":90544,"TargetStructureID":170,"Label":"90544-170 via Conventional from 90548 -> 90547","Type":"Conventional","Directional":true,"Links":[{"SourceID":90548,"TargetID":90547,"Directional":true}]},{"ID":18316,"SourceStructureID":90563,"TargetStructureID":170,"Label":"90563-170 via Conventional from 90564 -> 1417","Type":"Conventional","Directional":true,"Links":[{"SourceID":90564,"TargetID":1417,"Directional":true}]},{"ID":18317,"SourceStructureID":90568,"TargetStructureID":170,"Label":"90568-170 via Conventional from 90569 -> 1429","Type":"Conventional","Directional":true,"Links":[{"SourceID":90569,"TargetID":1429,"Directional":true}]},{"ID":18318,"SourceStructureID":90585,"TargetStructureID":170,"Label":"90585-170 via Conventional from 90586 -> 1421","Type":"Conventional","Directional":true,"Links":[{"SourceID":90586,"TargetID":1421,"Directional":true}]},{"ID":18319,"SourceStructureID":90587,"TargetStructureID":170,"Label":"90587-170 via Conventional from 90593 -> 90594","Type":"Conventional","Directional":true,"Links":[{"SourceID":90593,"TargetID":90594,"Directional":true}]},{"ID":18320,"SourceStructureID":90588,"TargetStructureID":170,"Label":"90588-170 via Conventional from 90589 -> 90590","Type":"Conventional","Directional":true,"Links":[{"SourceID":90589,"TargetID":90590,"Directional":true}]},{"ID":18321,"SourceStructureID":90597,"TargetStructureID":170,"Label":"90597-170 via Conventional from 90598 -> 90599","Type":"Conventional","Directional":true,"Links":[{"SourceID":90598,"TargetID":90599,"Directional":true}]},{"ID":18322,"SourceStructureID":90602,"TargetStructureID":90604,"Label":"90602-90604 via Conventional from 90605 -> 90606","Type":"Conventional","Directional":true,"Links":[{"SourceID":90605,"TargetID":90606,"Directional":true}]},{"ID":18323,"SourceStructureID":90607,"TargetStructureID":170,"Label":"90607-170 via Conventional from 90608 -> 90609","Type":"Conventional","Directional":true,"Links":[{"SourceID":90608,"TargetID":90609,"Directional":true}]},{"ID":18324,"SourceStructureID":90615,"TargetStructureID":170,"Label":"90615-170 via Conventional from 90616 -> 90617","Type":"Conventional","Directional":true,"Links":[{"SourceID":90616,"TargetID":90617,"Directional":true}]},{"ID":18325,"SourceStructureID":90618,"TargetStructureID":170,"Label":"90618-170 via Conventional from 90619 -> 90620","Type":"Conventional","Directional":true,"Links":[{"SourceID":90619,"TargetID":90620,"Directional":true}]},{"ID":18326,"SourceStructureID":90642,"TargetStructureID":6115,"Label":"90642-6115 via Conventional from 90643 -> 90641","Type":"Conventional","Directional":true,"Links":[{"SourceID":90643,"TargetID":90641,"Directional":true}]},{"ID":18327,"SourceStructureID":90657,"TargetStructureID":352,"Label":"90657-352 via Conventional from 90659 -> 90662","Type":"Conventional","Directional":true,"Links":[{"SourceID":90659,"TargetID":90662,"Directional":true}]},{"ID":18328,"SourceStructureID":90715,"TargetStructureID":452,"Label":"90715-452 via Conventional from 90760 -> 43187","Type":"Conventional","Directional":true,"Links":[{"SourceID":90760,"TargetID":43187,"Directional":true}]},{"ID":18329,"SourceStructureID":90715,"TargetStructureID":4943,"Label":"90715-4943 via Conventional from 91315 -> 8512","Type":"Conventional","Directional":true,"Links":[{"SourceID":91315,"TargetID":8512,"Directional":true}]},{"ID":18330,"SourceStructureID":90761,"TargetStructureID":180,"Label":"90761-180 via Conventional from 90762 -> 90758","Type":"Conventional","Directional":true,"Links":[{"SourceID":90762,"TargetID":90758,"Directional":true}]},{"ID":18331,"SourceStructureID":90769,"TargetStructureID":180,"Label":"90769-180 via Conventional from 90770 -> 90768","Type":"Conventional","Directional":true,"Links":[{"SourceID":90770,"TargetID":90768,"Directional":true}]},{"ID":18332,"SourceStructureID":90772,"TargetStructureID":180,"Label":"90772-180 via Conventional from 90773 -> 90771","Type":"Conventional","Directional":true,"Links":[{"SourceID":90773,"TargetID":90771,"Directional":true}]},{"ID":18333,"SourceStructureID":90789,"TargetStructureID":180,"Label":"90789-180 via Conventional from 90790 -> 90788","Type":"Conventional","Directional":true,"Links":[{"SourceID":90790,"TargetID":90788,"Directional":true}]},{"ID":18334,"SourceStructureID":90800,"TargetStructureID":180,"Label":"90800-180 via Conventional from 90802 -> 90799","Type":"Conventional","Directional":true,"Links":[{"SourceID":90802,"TargetID":90799,"Directional":true}]},{"ID":18335,"SourceStructureID":90806,"TargetStructureID":180,"Label":"90806-180 via Conventional from 90807 -> 90805","Type":"Conventional","Directional":true,"Links":[{"SourceID":90807,"TargetID":90805,"Directional":true}]},{"ID":18336,"SourceStructureID":90819,"TargetStructureID":180,"Label":"90819-180 via Conventional from 90820 -> 6572","Type":"Conventional","Directional":true,"Links":[{"SourceID":90820,"TargetID":6572,"Directional":true}]},{"ID":18337,"SourceStructureID":90819,"TargetStructureID":90822,"Label":"90819-90822 via Conventional from 90821 -> 90826","Type":"Conventional","Directional":true,"Links":[{"SourceID":90821,"TargetID":90826,"Directional":true}]},{"ID":18338,"SourceStructureID":90827,"TargetStructureID":180,"Label":"90827-180 via Conventional from 90828 -> 6571","Type":"Conventional","Directional":true,"Links":[{"SourceID":90828,"TargetID":6571,"Directional":true}]},{"ID":18339,"SourceStructureID":90829,"TargetStructureID":166,"Label":"90829-166 via Conventional from 90832 -> 39350","Type":"Conventional","Directional":true,"Links":[{"SourceID":90832,"TargetID":39350,"Directional":true}]},{"ID":18340,"SourceStructureID":90829,"TargetStructureID":180,"Label":"90829-180 via Conventional from 90830 -> 6064","Type":"Conventional","Directional":true,"Links":[{"SourceID":90830,"TargetID":6064,"Directional":true}]},{"ID":18341,"SourceStructureID":90835,"TargetStructureID":180,"Label":"90835-180 via Conventional from 90836 -> 90837","Type":"Conventional","Directional":true,"Links":[{"SourceID":90836,"TargetID":90837,"Directional":true}]},{"ID":18342,"SourceStructureID":90839,"TargetStructureID":180,"Label":"90839-180 via Conventional from 95876 -> 6570","Type":"Conventional","Directional":true,"Links":[{"SourceID":95876,"TargetID":6570,"Directional":true}]},{"ID":18343,"SourceStructureID":90844,"TargetStructureID":180,"Label":"90844-180 via Conventional from 95720 -> 95721","Type":"Conventional","Directional":true,"Links":[{"SourceID":95720,"TargetID":95721,"Directional":true}]},{"ID":18344,"SourceStructureID":90877,"TargetStructureID":180,"Label":"90877-180 via Conventional from 90878 -> 90876","Type":"Conventional","Directional":true,"Links":[{"SourceID":90878,"TargetID":90876,"Directional":true}]},{"ID":18345,"SourceStructureID":90919,"TargetStructureID":180,"Label":"90919-180 via Conventional from 90920 -> 90918","Type":"Conventional","Directional":true,"Links":[{"SourceID":90920,"TargetID":90918,"Directional":true}]},{"ID":18346,"SourceStructureID":90928,"TargetStructureID":6857,"Label":"90928-6857 via Conventional from 90929 -> 7501","Type":"Conventional","Directional":true,"Links":[{"SourceID":90929,"TargetID":7501,"Directional":true}]},{"ID":18347,"SourceStructureID":90932,"TargetStructureID":180,"Label":"90932-180 via Conventional from 90933 -> 90931","Type":"Conventional","Directional":true,"Links":[{"SourceID":90933,"TargetID":90931,"Directional":true}]},{"ID":18348,"SourceStructureID":90937,"TargetStructureID":180,"Label":"90937-180 via Conventional from 90940 -> 90941","Type":"Conventional","Directional":true,"Links":[{"SourceID":90940,"TargetID":90941,"Directional":true}]},{"ID":18349,"SourceStructureID":90943,"TargetStructureID":180,"Label":"90943-180 via Conventional from 90944 -> 90942","Type":"Conventional","Directional":true,"Links":[{"SourceID":90944,"TargetID":90942,"Directional":true}]},{"ID":18350,"SourceStructureID":90956,"TargetStructureID":90952,"Label":"90956-90952 via Conventional from 90958 -> 90955","Type":"Conventional","Directional":true,"Links":[{"SourceID":90958,"TargetID":90955,"Directional":true}]},{"ID":18351,"SourceStructureID":90961,"TargetStructureID":180,"Label":"90961-180 via Conventional from 90962 -> 56871","Type":"Conventional","Directional":true,"Links":[{"SourceID":90962,"TargetID":56871,"Directional":true}]},{"ID":18352,"SourceStructureID":90969,"TargetStructureID":180,"Label":"90969-180 via Conventional from 90970 -> 56875, 95508 -> 95509","Type":"Conventional","Directional":true,"Links":[{"SourceID":90970,"TargetID":56875,"Directional":true},{"SourceID":95508,"TargetID":95509,"Directional":true}]},{"ID":18353,"SourceStructureID":90975,"TargetStructureID":180,"Label":"90975-180 via Conventional from 90976 -> 56876","Type":"Conventional","Directional":true,"Links":[{"SourceID":90976,"TargetID":56876,"Directional":true}]},{"ID":18354,"SourceStructureID":90979,"TargetStructureID":180,"Label":"90979-180 via Conventional from 90980 -> 90978","Type":"Conventional","Directional":true,"Links":[{"SourceID":90980,"TargetID":90978,"Directional":true}]},{"ID":18355,"SourceStructureID":90981,"TargetStructureID":180,"Label":"90981-180 via Conventional from 95514 -> 90977","Type":"Conventional","Directional":true,"Links":[{"SourceID":95514,"TargetID":90977,"Directional":true}]},{"ID":18356,"SourceStructureID":90984,"TargetStructureID":180,"Label":"90984-180 via Conventional from 90985 -> 90983","Type":"Conventional","Directional":true,"Links":[{"SourceID":90985,"TargetID":90983,"Directional":true}]},{"ID":18357,"SourceStructureID":90989,"TargetStructureID":180,"Label":"90989-180 via Conventional from 90990 -> 90988","Type":"Conventional","Directional":true,"Links":[{"SourceID":90990,"TargetID":90988,"Directional":true}]},{"ID":18358,"SourceStructureID":90991,"TargetStructureID":180,"Label":"90991-180 via Conventional from 90992 -> 90987","Type":"Conventional","Directional":true,"Links":[{"SourceID":90992,"TargetID":90987,"Directional":true}]},{"ID":18359,"SourceStructureID":91000,"TargetStructureID":180,"Label":"91000-180 via Conventional from 91001 -> 90999","Type":"Conventional","Directional":true,"Links":[{"SourceID":91001,"TargetID":90999,"Directional":true}]},{"ID":18360,"SourceStructureID":91032,"TargetStructureID":16026,"Label":"91032-16026 via Conventional from 91033 -> 24097","Type":"Conventional","Directional":true,"Links":[{"SourceID":91033,"TargetID":24097,"Directional":true}]},{"ID":18361,"SourceStructureID":91036,"TargetStructureID":16026,"Label":"91036-16026 via Conventional from 91040 -> 25735","Type":"Conventional","Directional":true,"Links":[{"SourceID":91040,"TargetID":25735,"Directional":true}]},{"ID":18362,"SourceStructureID":91060,"TargetStructureID":91056,"Label":"91060-91056 via Conventional from 91064 -> 91058","Type":"Conventional","Directional":true,"Links":[{"SourceID":91064,"TargetID":91058,"Directional":true}]},{"ID":18363,"SourceStructureID":91071,"TargetStructureID":16026,"Label":"91071-16026 via Conventional from 91072 -> 91070","Type":"Conventional","Directional":true,"Links":[{"SourceID":91072,"TargetID":91070,"Directional":true}]},{"ID":18364,"SourceStructureID":91103,"TargetStructureID":16026,"Label":"91103-16026 via Conventional from 91105 -> 25715","Type":"Conventional","Directional":true,"Links":[{"SourceID":91105,"TargetID":25715,"Directional":true}]},{"ID":18365,"SourceStructureID":91114,"TargetStructureID":16026,"Label":"91114-16026 via Conventional from 91115 -> 91113","Type":"Conventional","Directional":true,"Links":[{"SourceID":91115,"TargetID":91113,"Directional":true}]},{"ID":18366,"SourceStructureID":91167,"TargetStructureID":16026,"Label":"91167-16026 via Conventional from 91169 -> 91170","Type":"Conventional","Directional":true,"Links":[{"SourceID":91169,"TargetID":91170,"Directional":true}]},{"ID":18367,"SourceStructureID":91176,"TargetStructureID":2610,"Label":"91176-2610 via Conventional from 91177 -> 2933","Type":"Conventional","Directional":true,"Links":[{"SourceID":91177,"TargetID":2933,"Directional":true}]},{"ID":18368,"SourceStructureID":91220,"TargetStructureID":90715,"Label":"91220-90715 via Ribbon Synapse from 91221 -> 91028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91221,"TargetID":91028,"Directional":true}]},{"ID":18369,"SourceStructureID":91405,"TargetStructureID":6997,"Label":"91405-6997 via Conventional from 91413 -> 70890","Type":"Conventional","Directional":true,"Links":[{"SourceID":91413,"TargetID":70890,"Directional":true}]},{"ID":18370,"SourceStructureID":91446,"TargetStructureID":5601,"Label":"91446-5601 via Conventional from 91447 -> 91445","Type":"Conventional","Directional":true,"Links":[{"SourceID":91447,"TargetID":91445,"Directional":true}]},{"ID":18371,"SourceStructureID":91459,"TargetStructureID":4876,"Label":"91459-4876 via Conventional from 91461 -> 91458","Type":"Conventional","Directional":true,"Links":[{"SourceID":91461,"TargetID":91458,"Directional":true}]},{"ID":18372,"SourceStructureID":91507,"TargetStructureID":5601,"Label":"91507-5601 via Conventional from 91509 -> 91350","Type":"Conventional","Directional":true,"Links":[{"SourceID":91509,"TargetID":91350,"Directional":true}]},{"ID":18373,"SourceStructureID":91537,"TargetStructureID":593,"Label":"91537-593 via Conventional from 91538 -> 7744","Type":"Conventional","Directional":true,"Links":[{"SourceID":91538,"TargetID":7744,"Directional":true}]},{"ID":18374,"SourceStructureID":91542,"TargetStructureID":3116,"Label":"91542-3116 via Conventional from 91543 -> 23809","Type":"Conventional","Directional":true,"Links":[{"SourceID":91543,"TargetID":23809,"Directional":true}]},{"ID":18375,"SourceStructureID":91551,"TargetStructureID":166,"Label":"91551-166 via Conventional from 91552 -> 91553","Type":"Conventional","Directional":true,"Links":[{"SourceID":91552,"TargetID":91553,"Directional":true}]},{"ID":18376,"SourceStructureID":91566,"TargetStructureID":21299,"Label":"91566-21299 via Conventional from 91568 -> 91565","Type":"Conventional","Directional":true,"Links":[{"SourceID":91568,"TargetID":91565,"Directional":true}]},{"ID":18377,"SourceStructureID":91597,"TargetStructureID":1620,"Label":"91597-1620 via Conventional from 91602 -> 16868","Type":"Conventional","Directional":true,"Links":[{"SourceID":91602,"TargetID":16868,"Directional":true}]},{"ID":18378,"SourceStructureID":91701,"TargetStructureID":21299,"Label":"91701-21299 via Conventional from 92847 -> 48968","Type":"Conventional","Directional":true,"Links":[{"SourceID":92847,"TargetID":48968,"Directional":true}]},{"ID":18379,"SourceStructureID":91730,"TargetStructureID":1620,"Label":"91730-1620 via Ribbon Synapse from 91731 -> 16854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91731,"TargetID":16854,"Directional":true}]},{"ID":18380,"SourceStructureID":91730,"TargetStructureID":41474,"Label":"91730-41474 via Ribbon Synapse from 91731 -> 41516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91731,"TargetID":41516,"Directional":true}]},{"ID":18381,"SourceStructureID":91746,"TargetStructureID":21299,"Label":"91746-21299 via Conventional from 91749 -> 48800","Type":"Conventional","Directional":true,"Links":[{"SourceID":91749,"TargetID":48800,"Directional":true}]},{"ID":18382,"SourceStructureID":91746,"TargetStructureID":91743,"Label":"91746-91743 via Conventional from 91747 -> 91745","Type":"Conventional","Directional":true,"Links":[{"SourceID":91747,"TargetID":91745,"Directional":true}]},{"ID":18383,"SourceStructureID":91805,"TargetStructureID":5292,"Label":"91805-5292 via Conventional from 92854 -> 51569","Type":"Conventional","Directional":true,"Links":[{"SourceID":92854,"TargetID":51569,"Directional":true}]},{"ID":18384,"SourceStructureID":91812,"TargetStructureID":5650,"Label":"91812-5650 via Conventional from 103887 -> 103888","Type":"Conventional","Directional":true,"Links":[{"SourceID":103887,"TargetID":103888,"Directional":true}]},{"ID":18385,"SourceStructureID":91983,"TargetStructureID":176,"Label":"91983-176 via Conventional from 128744 -> 128743","Type":"Conventional","Directional":true,"Links":[{"SourceID":128744,"TargetID":128743,"Directional":true}]},{"ID":18386,"SourceStructureID":92035,"TargetStructureID":6050,"Label":"92035-6050 via Conventional from 92036 -> 56072","Type":"Conventional","Directional":true,"Links":[{"SourceID":92036,"TargetID":56072,"Directional":true}]},{"ID":18387,"SourceStructureID":92091,"TargetStructureID":16026,"Label":"92091-16026 via Conventional from 134452 -> 134451","Type":"Conventional","Directional":true,"Links":[{"SourceID":134452,"TargetID":134451,"Directional":true}]},{"ID":18388,"SourceStructureID":92223,"TargetStructureID":16026,"Label":"92223-16026 via Conventional from 92803 -> 92764","Type":"Conventional","Directional":true,"Links":[{"SourceID":92803,"TargetID":92764,"Directional":true}]},{"ID":18389,"SourceStructureID":92239,"TargetStructureID":16026,"Label":"92239-16026 via Conventional from 92811 -> 25541","Type":"Conventional","Directional":true,"Links":[{"SourceID":92811,"TargetID":25541,"Directional":true}]},{"ID":18390,"SourceStructureID":92245,"TargetStructureID":16026,"Label":"92245-16026 via Conventional from 92819 -> 92820, 134417 -> 134416","Type":"Conventional","Directional":true,"Links":[{"SourceID":92819,"TargetID":92820,"Directional":true},{"SourceID":134417,"TargetID":134416,"Directional":true}]},{"ID":18391,"SourceStructureID":92361,"TargetStructureID":16026,"Label":"92361-16026 via Conventional from 92812 -> 92813","Type":"Conventional","Directional":true,"Links":[{"SourceID":92812,"TargetID":92813,"Directional":true}]},{"ID":18392,"SourceStructureID":92380,"TargetStructureID":5283,"Label":"92380-5283 via Conventional from 123948 -> 123947","Type":"Conventional","Directional":true,"Links":[{"SourceID":123948,"TargetID":123947,"Directional":true}]},{"ID":18393,"SourceStructureID":92572,"TargetStructureID":16026,"Label":"92572-16026 via Conventional from 134760 -> 134759","Type":"Conventional","Directional":true,"Links":[{"SourceID":134760,"TargetID":134759,"Directional":true}]},{"ID":18394,"SourceStructureID":92638,"TargetStructureID":5279,"Label":"92638-5279 via Conventional from 92859 -> 92858","Type":"Conventional","Directional":true,"Links":[{"SourceID":92859,"TargetID":92858,"Directional":true}]},{"ID":18395,"SourceStructureID":92785,"TargetStructureID":16026,"Label":"92785-16026 via Conventional from 92786 -> 92787","Type":"Conventional","Directional":true,"Links":[{"SourceID":92786,"TargetID":92787,"Directional":true}]},{"ID":18396,"SourceStructureID":92865,"TargetStructureID":16026,"Label":"92865-16026 via Conventional from 134709 -> 134708","Type":"Conventional","Directional":true,"Links":[{"SourceID":134709,"TargetID":134708,"Directional":true}]},{"ID":18397,"SourceStructureID":92942,"TargetStructureID":10943,"Label":"92942-10943 via Conventional from 92945 -> 92946","Type":"Conventional","Directional":true,"Links":[{"SourceID":92945,"TargetID":92946,"Directional":true}]},{"ID":18398,"SourceStructureID":92954,"TargetStructureID":23870,"Label":"92954-23870 via Ribbon Synapse from 92955 -> 92953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92955,"TargetID":92953,"Directional":true}]},{"ID":18399,"SourceStructureID":92970,"TargetStructureID":5294,"Label":"92970-5294 via Cistern Pre from 93030 -> 93031","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":93030,"TargetID":93031,"Directional":true}]},{"ID":18400,"SourceStructureID":93069,"TargetStructureID":5592,"Label":"93069-5592 via Conventional from 93070 -> 45968","Type":"Conventional","Directional":true,"Links":[{"SourceID":93070,"TargetID":45968,"Directional":true}]},{"ID":18401,"SourceStructureID":93099,"TargetStructureID":400,"Label":"93099-400 via Conventional from 93110 -> 1935","Type":"Conventional","Directional":true,"Links":[{"SourceID":93110,"TargetID":1935,"Directional":true}]},{"ID":18402,"SourceStructureID":93099,"TargetStructureID":6617,"Label":"93099-6617 via Conventional from 93107 -> 93108","Type":"Conventional","Directional":true,"Links":[{"SourceID":93107,"TargetID":93108,"Directional":true}]},{"ID":18403,"SourceStructureID":93099,"TargetStructureID":8749,"Label":"93099-8749 via Conventional from 93100 -> 93101, 93102 -> 93103","Type":"Conventional","Directional":true,"Links":[{"SourceID":93100,"TargetID":93101,"Directional":true},{"SourceID":93102,"TargetID":93103,"Directional":true}]},{"ID":18404,"SourceStructureID":93112,"TargetStructureID":5294,"Label":"93112-5294 via Conventional from 93113 -> 32333","Type":"Conventional","Directional":true,"Links":[{"SourceID":93113,"TargetID":32333,"Directional":true}]},{"ID":18405,"SourceStructureID":93139,"TargetStructureID":16026,"Label":"93139-16026 via Conventional from 134836 -> 134835, 134839 -> 25565","Type":"Conventional","Directional":true,"Links":[{"SourceID":134836,"TargetID":134835,"Directional":true},{"SourceID":134839,"TargetID":25565,"Directional":true}]},{"ID":18406,"SourceStructureID":93172,"TargetStructureID":15976,"Label":"93172-15976 via Conventional from 93173 -> 93171","Type":"Conventional","Directional":true,"Links":[{"SourceID":93173,"TargetID":93171,"Directional":true}]},{"ID":18407,"SourceStructureID":93277,"TargetStructureID":3679,"Label":"93277-3679 via Conventional from 93278 -> 14919","Type":"Conventional","Directional":true,"Links":[{"SourceID":93278,"TargetID":14919,"Directional":true}]},{"ID":18408,"SourceStructureID":93315,"TargetStructureID":5297,"Label":"93315-5297 via Conventional from 93316 -> 53666","Type":"Conventional","Directional":true,"Links":[{"SourceID":93316,"TargetID":53666,"Directional":true}]},{"ID":18409,"SourceStructureID":93325,"TargetStructureID":5297,"Label":"93325-5297 via Conventional from 93326 -> 50318","Type":"Conventional","Directional":true,"Links":[{"SourceID":93326,"TargetID":50318,"Directional":true}]},{"ID":18410,"SourceStructureID":93336,"TargetStructureID":5297,"Label":"93336-5297 via Conventional from 93338 -> 53695","Type":"Conventional","Directional":true,"Links":[{"SourceID":93338,"TargetID":53695,"Directional":true}]},{"ID":18411,"SourceStructureID":93371,"TargetStructureID":5297,"Label":"93371-5297 via Conventional from 93372 -> 53650","Type":"Conventional","Directional":true,"Links":[{"SourceID":93372,"TargetID":53650,"Directional":true}]},{"ID":18412,"SourceStructureID":93386,"TargetStructureID":5297,"Label":"93386-5297 via Conventional from 93387 -> 53651","Type":"Conventional","Directional":true,"Links":[{"SourceID":93387,"TargetID":53651,"Directional":true}]},{"ID":18413,"SourceStructureID":93396,"TargetStructureID":5278,"Label":"93396-5278 via Conventional from 93406 -> 50312","Type":"Conventional","Directional":true,"Links":[{"SourceID":93406,"TargetID":50312,"Directional":true}]},{"ID":18414,"SourceStructureID":93403,"TargetStructureID":5278,"Label":"93403-5278 via Conventional from 93405 -> 50311","Type":"Conventional","Directional":true,"Links":[{"SourceID":93405,"TargetID":50311,"Directional":true}]},{"ID":18415,"SourceStructureID":93407,"TargetStructureID":5278,"Label":"93407-5278 via Conventional from 93410 -> 50310","Type":"Conventional","Directional":true,"Links":[{"SourceID":93410,"TargetID":50310,"Directional":true}]},{"ID":18416,"SourceStructureID":93407,"TargetStructureID":93413,"Label":"93407-93413 via Conventional from 147310 -> 147311","Type":"Conventional","Directional":true,"Links":[{"SourceID":147310,"TargetID":147311,"Directional":true}]},{"ID":18417,"SourceStructureID":93456,"TargetStructureID":5711,"Label":"93456-5711 via Conventional from 93457 -> 93458","Type":"Conventional","Directional":true,"Links":[{"SourceID":93457,"TargetID":93458,"Directional":true}]},{"ID":18418,"SourceStructureID":93465,"TargetStructureID":5278,"Label":"93465-5278 via Conventional from 93466 -> 53599","Type":"Conventional","Directional":true,"Links":[{"SourceID":93466,"TargetID":53599,"Directional":true}]},{"ID":18419,"SourceStructureID":93489,"TargetStructureID":93486,"Label":"93489-93486 via Ribbon Synapse from 93490 -> 93487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93490,"TargetID":93487,"Directional":true}]},{"ID":18420,"SourceStructureID":93494,"TargetStructureID":93486,"Label":"93494-93486 via Conventional from 93500 -> 93501","Type":"Conventional","Directional":true,"Links":[{"SourceID":93500,"TargetID":93501,"Directional":true}]},{"ID":18421,"SourceStructureID":93555,"TargetStructureID":5528,"Label":"93555-5528 via Conventional from 93556 -> 36391","Type":"Conventional","Directional":true,"Links":[{"SourceID":93556,"TargetID":36391,"Directional":true}]},{"ID":18422,"SourceStructureID":93557,"TargetStructureID":5528,"Label":"93557-5528 via Conventional from 93558 -> 36392","Type":"Conventional","Directional":true,"Links":[{"SourceID":93558,"TargetID":36392,"Directional":true}]},{"ID":18423,"SourceStructureID":93574,"TargetStructureID":5468,"Label":"93574-5468 via Conventional from 93576 -> 45721","Type":"Conventional","Directional":true,"Links":[{"SourceID":93576,"TargetID":45721,"Directional":true}]},{"ID":18424,"SourceStructureID":93634,"TargetStructureID":64939,"Label":"93634-64939 via Conventional from 93635 -> 93632","Type":"Conventional","Directional":true,"Links":[{"SourceID":93635,"TargetID":93632,"Directional":true}]},{"ID":18425,"SourceStructureID":93685,"TargetStructureID":7040,"Label":"93685-7040 via Conventional from 93689 -> 93683","Type":"Conventional","Directional":true,"Links":[{"SourceID":93689,"TargetID":93683,"Directional":true}]},{"ID":18426,"SourceStructureID":93920,"TargetStructureID":5528,"Label":"93920-5528 via Conventional from 93921 -> 93919","Type":"Conventional","Directional":true,"Links":[{"SourceID":93921,"TargetID":93919,"Directional":true}]},{"ID":18427,"SourceStructureID":93923,"TargetStructureID":5528,"Label":"93923-5528 via Conventional from 93930 -> 93599","Type":"Conventional","Directional":true,"Links":[{"SourceID":93930,"TargetID":93599,"Directional":true}]},{"ID":18428,"SourceStructureID":93928,"TargetStructureID":25402,"Label":"93928-25402 via Conventional from 93929 -> 32277","Type":"Conventional","Directional":true,"Links":[{"SourceID":93929,"TargetID":32277,"Directional":true}]},{"ID":18429,"SourceStructureID":93931,"TargetStructureID":5528,"Label":"93931-5528 via Conventional from 93934 -> 93596","Type":"Conventional","Directional":true,"Links":[{"SourceID":93934,"TargetID":93596,"Directional":true}]},{"ID":18430,"SourceStructureID":93935,"TargetStructureID":5528,"Label":"93935-5528 via Conventional from 93936 -> 93595","Type":"Conventional","Directional":true,"Links":[{"SourceID":93936,"TargetID":93595,"Directional":true}]},{"ID":18431,"SourceStructureID":93938,"TargetStructureID":5528,"Label":"93938-5528 via Conventional from 93939 -> 93597","Type":"Conventional","Directional":true,"Links":[{"SourceID":93939,"TargetID":93597,"Directional":true}]},{"ID":18432,"SourceStructureID":93938,"TargetStructureID":5530,"Label":"93938-5530 via Conventional from 126445 -> 126443","Type":"Conventional","Directional":true,"Links":[{"SourceID":126445,"TargetID":126443,"Directional":true}]},{"ID":18433,"SourceStructureID":93964,"TargetStructureID":5528,"Label":"93964-5528 via Conventional from 93965 -> 93955","Type":"Conventional","Directional":true,"Links":[{"SourceID":93965,"TargetID":93955,"Directional":true}]},{"ID":18434,"SourceStructureID":93975,"TargetStructureID":5528,"Label":"93975-5528 via Conventional from 93986 -> 93985","Type":"Conventional","Directional":true,"Links":[{"SourceID":93986,"TargetID":93985,"Directional":true}]},{"ID":18435,"SourceStructureID":93979,"TargetStructureID":5528,"Label":"93979-5528 via Conventional from 93980 -> 93981","Type":"Conventional","Directional":true,"Links":[{"SourceID":93980,"TargetID":93981,"Directional":true}]},{"ID":18436,"SourceStructureID":93991,"TargetStructureID":5528,"Label":"93991-5528 via Conventional from 93992 -> 93598","Type":"Conventional","Directional":true,"Links":[{"SourceID":93992,"TargetID":93598,"Directional":true}]},{"ID":18437,"SourceStructureID":94005,"TargetStructureID":5528,"Label":"94005-5528 via Conventional from 94006 -> 93594","Type":"Conventional","Directional":true,"Links":[{"SourceID":94006,"TargetID":93594,"Directional":true}]},{"ID":18438,"SourceStructureID":94007,"TargetStructureID":5528,"Label":"94007-5528 via Conventional from 94014 -> 93593","Type":"Conventional","Directional":true,"Links":[{"SourceID":94014,"TargetID":93593,"Directional":true}]},{"ID":18439,"SourceStructureID":94008,"TargetStructureID":5528,"Label":"94008-5528 via Conventional from 94009 -> 93590","Type":"Conventional","Directional":true,"Links":[{"SourceID":94009,"TargetID":93590,"Directional":true}]},{"ID":18440,"SourceStructureID":94010,"TargetStructureID":5528,"Label":"94010-5528 via Conventional from 94011 -> 93589","Type":"Conventional","Directional":true,"Links":[{"SourceID":94011,"TargetID":93589,"Directional":true}]},{"ID":18441,"SourceStructureID":94023,"TargetStructureID":5528,"Label":"94023-5528 via Conventional from 94024 -> 93581","Type":"Conventional","Directional":true,"Links":[{"SourceID":94024,"TargetID":93581,"Directional":true}]},{"ID":18442,"SourceStructureID":94031,"TargetStructureID":5528,"Label":"94031-5528 via Conventional from 94032 -> 94033","Type":"Conventional","Directional":true,"Links":[{"SourceID":94032,"TargetID":94033,"Directional":true}]},{"ID":18443,"SourceStructureID":94035,"TargetStructureID":5528,"Label":"94035-5528 via Conventional from 94036 -> 94037","Type":"Conventional","Directional":true,"Links":[{"SourceID":94036,"TargetID":94037,"Directional":true}]},{"ID":18444,"SourceStructureID":94048,"TargetStructureID":5528,"Label":"94048-5528 via Conventional from 94049 -> 94050","Type":"Conventional","Directional":true,"Links":[{"SourceID":94049,"TargetID":94050,"Directional":true}]},{"ID":18445,"SourceStructureID":94116,"TargetStructureID":5528,"Label":"94116-5528 via Conventional from 94117 -> 93600","Type":"Conventional","Directional":true,"Links":[{"SourceID":94117,"TargetID":93600,"Directional":true}]},{"ID":18446,"SourceStructureID":94118,"TargetStructureID":5528,"Label":"94118-5528 via Conventional from 94119 -> 94120","Type":"Conventional","Directional":true,"Links":[{"SourceID":94119,"TargetID":94120,"Directional":true}]},{"ID":18447,"SourceStructureID":94130,"TargetStructureID":5528,"Label":"94130-5528 via Conventional from 94132 -> 94133","Type":"Conventional","Directional":true,"Links":[{"SourceID":94132,"TargetID":94133,"Directional":true}]},{"ID":18448,"SourceStructureID":94136,"TargetStructureID":5528,"Label":"94136-5528 via Conventional from 94137 -> 94138","Type":"Conventional","Directional":true,"Links":[{"SourceID":94137,"TargetID":94138,"Directional":true}]},{"ID":18449,"SourceStructureID":94139,"TargetStructureID":5528,"Label":"94139-5528 via Conventional from 94140 -> 94141","Type":"Conventional","Directional":true,"Links":[{"SourceID":94140,"TargetID":94141,"Directional":true}]},{"ID":18450,"SourceStructureID":94153,"TargetStructureID":5528,"Label":"94153-5528 via Conventional from 94175 -> 94176","Type":"Conventional","Directional":true,"Links":[{"SourceID":94175,"TargetID":94176,"Directional":true}]},{"ID":18451,"SourceStructureID":94165,"TargetStructureID":5528,"Label":"94165-5528 via Conventional from 94171 -> 94172","Type":"Conventional","Directional":true,"Links":[{"SourceID":94171,"TargetID":94172,"Directional":true}]},{"ID":18452,"SourceStructureID":94178,"TargetStructureID":5528,"Label":"94178-5528 via Conventional from 94180 -> 94179","Type":"Conventional","Directional":true,"Links":[{"SourceID":94180,"TargetID":94179,"Directional":true}]},{"ID":18453,"SourceStructureID":94252,"TargetStructureID":5528,"Label":"94252-5528 via Conventional from 94278 -> 94280","Type":"Conventional","Directional":true,"Links":[{"SourceID":94278,"TargetID":94280,"Directional":true}]},{"ID":18454,"SourceStructureID":94255,"TargetStructureID":5528,"Label":"94255-5528 via Conventional from 94259 -> 94260","Type":"Conventional","Directional":true,"Links":[{"SourceID":94259,"TargetID":94260,"Directional":true}]},{"ID":18455,"SourceStructureID":94270,"TargetStructureID":5528,"Label":"94270-5528 via Conventional from 94276 -> 94277","Type":"Conventional","Directional":true,"Links":[{"SourceID":94276,"TargetID":94277,"Directional":true}]},{"ID":18456,"SourceStructureID":94281,"TargetStructureID":5528,"Label":"94281-5528 via Conventional from 94282 -> 94283","Type":"Conventional","Directional":true,"Links":[{"SourceID":94282,"TargetID":94283,"Directional":true}]},{"ID":18457,"SourceStructureID":94288,"TargetStructureID":5528,"Label":"94288-5528 via Conventional from 94289 -> 94290","Type":"Conventional","Directional":true,"Links":[{"SourceID":94289,"TargetID":94290,"Directional":true}]},{"ID":18458,"SourceStructureID":94297,"TargetStructureID":5528,"Label":"94297-5528 via Conventional from 94302 -> 94301","Type":"Conventional","Directional":true,"Links":[{"SourceID":94302,"TargetID":94301,"Directional":true}]},{"ID":18459,"SourceStructureID":94312,"TargetStructureID":5528,"Label":"94312-5528 via Conventional from 94313 -> 94314","Type":"Conventional","Directional":true,"Links":[{"SourceID":94313,"TargetID":94314,"Directional":true}]},{"ID":18460,"SourceStructureID":94320,"TargetStructureID":5528,"Label":"94320-5528 via Conventional from 94321 -> 94322","Type":"Conventional","Directional":true,"Links":[{"SourceID":94321,"TargetID":94322,"Directional":true}]},{"ID":18461,"SourceStructureID":94331,"TargetStructureID":5528,"Label":"94331-5528 via Conventional from 94332 -> 94333","Type":"Conventional","Directional":true,"Links":[{"SourceID":94332,"TargetID":94333,"Directional":true}]},{"ID":18462,"SourceStructureID":94334,"TargetStructureID":5528,"Label":"94334-5528 via Conventional from 94335 -> 94336","Type":"Conventional","Directional":true,"Links":[{"SourceID":94335,"TargetID":94336,"Directional":true}]},{"ID":18463,"SourceStructureID":94337,"TargetStructureID":5528,"Label":"94337-5528 via Conventional from 94338 -> 94339","Type":"Conventional","Directional":true,"Links":[{"SourceID":94338,"TargetID":94339,"Directional":true}]},{"ID":18464,"SourceStructureID":94340,"TargetStructureID":5528,"Label":"94340-5528 via Conventional from 94341 -> 94342","Type":"Conventional","Directional":true,"Links":[{"SourceID":94341,"TargetID":94342,"Directional":true}]},{"ID":18465,"SourceStructureID":94346,"TargetStructureID":5528,"Label":"94346-5528 via Conventional from 94347 -> 94348","Type":"Conventional","Directional":true,"Links":[{"SourceID":94347,"TargetID":94348,"Directional":true}]},{"ID":18466,"SourceStructureID":94365,"TargetStructureID":5528,"Label":"94365-5528 via Conventional from 94367 -> 94366, 94368 -> 94369","Type":"Conventional","Directional":true,"Links":[{"SourceID":94367,"TargetID":94366,"Directional":true},{"SourceID":94368,"TargetID":94369,"Directional":true}]},{"ID":18467,"SourceStructureID":94385,"TargetStructureID":5528,"Label":"94385-5528 via Conventional from 94387 -> 91644","Type":"Conventional","Directional":true,"Links":[{"SourceID":94387,"TargetID":91644,"Directional":true}]},{"ID":18468,"SourceStructureID":94385,"TargetStructureID":6129,"Label":"94385-6129 via Conventional from 94386 -> 17859","Type":"Conventional","Directional":true,"Links":[{"SourceID":94386,"TargetID":17859,"Directional":true}]},{"ID":18469,"SourceStructureID":94388,"TargetStructureID":5528,"Label":"94388-5528 via Conventional from 94389 -> 94390","Type":"Conventional","Directional":true,"Links":[{"SourceID":94389,"TargetID":94390,"Directional":true}]},{"ID":18470,"SourceStructureID":94391,"TargetStructureID":5528,"Label":"94391-5528 via Conventional from 94392 -> 94393","Type":"Conventional","Directional":true,"Links":[{"SourceID":94392,"TargetID":94393,"Directional":true}]},{"ID":18471,"SourceStructureID":94414,"TargetStructureID":5528,"Label":"94414-5528 via Conventional from 94415 -> 94416","Type":"Conventional","Directional":true,"Links":[{"SourceID":94415,"TargetID":94416,"Directional":true}]},{"ID":18472,"SourceStructureID":94417,"TargetStructureID":94417,"Label":"94417-94417 via Conventional from 94420 -> 94419","Type":"Conventional","Directional":true,"Links":[{"SourceID":94420,"TargetID":94419,"Directional":true}]},{"ID":18473,"SourceStructureID":94422,"TargetStructureID":5528,"Label":"94422-5528 via Conventional from 94423 -> 94424","Type":"Conventional","Directional":true,"Links":[{"SourceID":94423,"TargetID":94424,"Directional":true}]},{"ID":18474,"SourceStructureID":94425,"TargetStructureID":5528,"Label":"94425-5528 via Conventional from 94426 -> 94427","Type":"Conventional","Directional":true,"Links":[{"SourceID":94426,"TargetID":94427,"Directional":true}]},{"ID":18475,"SourceStructureID":94474,"TargetStructureID":5528,"Label":"94474-5528 via Conventional from 94476 -> 94477","Type":"Conventional","Directional":true,"Links":[{"SourceID":94476,"TargetID":94477,"Directional":true}]},{"ID":18476,"SourceStructureID":94479,"TargetStructureID":5528,"Label":"94479-5528 via Conventional from 94480 -> 94481","Type":"Conventional","Directional":true,"Links":[{"SourceID":94480,"TargetID":94481,"Directional":true}]},{"ID":18477,"SourceStructureID":94490,"TargetStructureID":5528,"Label":"94490-5528 via Conventional from 94492 -> 94491","Type":"Conventional","Directional":true,"Links":[{"SourceID":94492,"TargetID":94491,"Directional":true}]},{"ID":18478,"SourceStructureID":94500,"TargetStructureID":5528,"Label":"94500-5528 via Conventional from 94505 -> 94506","Type":"Conventional","Directional":true,"Links":[{"SourceID":94505,"TargetID":94506,"Directional":true}]},{"ID":18479,"SourceStructureID":94507,"TargetStructureID":5528,"Label":"94507-5528 via Conventional from 94508 -> 94509","Type":"Conventional","Directional":true,"Links":[{"SourceID":94508,"TargetID":94509,"Directional":true}]},{"ID":18480,"SourceStructureID":94512,"TargetStructureID":5528,"Label":"94512-5528 via Conventional from 94513 -> 94514","Type":"Conventional","Directional":true,"Links":[{"SourceID":94513,"TargetID":94514,"Directional":true}]},{"ID":18481,"SourceStructureID":94525,"TargetStructureID":5528,"Label":"94525-5528 via Conventional from 94526 -> 94528","Type":"Conventional","Directional":true,"Links":[{"SourceID":94526,"TargetID":94528,"Directional":true}]},{"ID":18482,"SourceStructureID":94536,"TargetStructureID":5528,"Label":"94536-5528 via Conventional from 94537 -> 94538","Type":"Conventional","Directional":true,"Links":[{"SourceID":94537,"TargetID":94538,"Directional":true}]},{"ID":18483,"SourceStructureID":94582,"TargetStructureID":180,"Label":"94582-180 via Conventional from 94620 -> 843","Type":"Conventional","Directional":true,"Links":[{"SourceID":94620,"TargetID":843,"Directional":true}]},{"ID":18484,"SourceStructureID":94583,"TargetStructureID":180,"Label":"94583-180 via Conventional from 94621 -> 23645","Type":"Conventional","Directional":true,"Links":[{"SourceID":94621,"TargetID":23645,"Directional":true}]},{"ID":18485,"SourceStructureID":94635,"TargetStructureID":5528,"Label":"94635-5528 via Conventional from 94644 -> 94645","Type":"Conventional","Directional":true,"Links":[{"SourceID":94644,"TargetID":94645,"Directional":true}]},{"ID":18486,"SourceStructureID":94641,"TargetStructureID":180,"Label":"94641-180 via Conventional from 94642 -> 94643","Type":"Conventional","Directional":true,"Links":[{"SourceID":94642,"TargetID":94643,"Directional":true}]},{"ID":18487,"SourceStructureID":94649,"TargetStructureID":5528,"Label":"94649-5528 via Conventional from 94650 -> 94651","Type":"Conventional","Directional":true,"Links":[{"SourceID":94650,"TargetID":94651,"Directional":true}]},{"ID":18488,"SourceStructureID":94652,"TargetStructureID":5528,"Label":"94652-5528 via Conventional from 94657 -> 94658","Type":"Conventional","Directional":true,"Links":[{"SourceID":94657,"TargetID":94658,"Directional":true}]},{"ID":18489,"SourceStructureID":94660,"TargetStructureID":5528,"Label":"94660-5528 via Conventional from 94661 -> 94662","Type":"Conventional","Directional":true,"Links":[{"SourceID":94661,"TargetID":94662,"Directional":true}]},{"ID":18490,"SourceStructureID":94663,"TargetStructureID":5528,"Label":"94663-5528 via Conventional from 94665 -> 94666","Type":"Conventional","Directional":true,"Links":[{"SourceID":94665,"TargetID":94666,"Directional":true}]},{"ID":18491,"SourceStructureID":94664,"TargetStructureID":180,"Label":"94664-180 via Conventional from 94706 -> 94707, 94896 -> 94897, 133042 -> 133041","Type":"Conventional","Directional":true,"Links":[{"SourceID":94706,"TargetID":94707,"Directional":true},{"SourceID":94896,"TargetID":94897,"Directional":true},{"SourceID":133042,"TargetID":133041,"Directional":true}]},{"ID":18492,"SourceStructureID":94670,"TargetStructureID":5528,"Label":"94670-5528 via Conventional from 94671 -> 94672","Type":"Conventional","Directional":true,"Links":[{"SourceID":94671,"TargetID":94672,"Directional":true}]},{"ID":18493,"SourceStructureID":94692,"TargetStructureID":180,"Label":"94692-180 via Conventional from 94693 -> 94694","Type":"Conventional","Directional":true,"Links":[{"SourceID":94693,"TargetID":94694,"Directional":true}]},{"ID":18494,"SourceStructureID":94695,"TargetStructureID":180,"Label":"94695-180 via Conventional from 94696 -> 94697","Type":"Conventional","Directional":true,"Links":[{"SourceID":94696,"TargetID":94697,"Directional":true}]},{"ID":18495,"SourceStructureID":94698,"TargetStructureID":180,"Label":"94698-180 via Conventional from 94699 -> 94700","Type":"Conventional","Directional":true,"Links":[{"SourceID":94699,"TargetID":94700,"Directional":true}]},{"ID":18496,"SourceStructureID":94705,"TargetStructureID":5528,"Label":"94705-5528 via Conventional from 94711 -> 94712","Type":"Conventional","Directional":true,"Links":[{"SourceID":94711,"TargetID":94712,"Directional":true}]},{"ID":18497,"SourceStructureID":94713,"TargetStructureID":5528,"Label":"94713-5528 via Conventional from 94714 -> 94715","Type":"Conventional","Directional":true,"Links":[{"SourceID":94714,"TargetID":94715,"Directional":true}]},{"ID":18498,"SourceStructureID":94735,"TargetStructureID":5528,"Label":"94735-5528 via Conventional from 94736 -> 94737","Type":"Conventional","Directional":true,"Links":[{"SourceID":94736,"TargetID":94737,"Directional":true}]},{"ID":18499,"SourceStructureID":94741,"TargetStructureID":5528,"Label":"94741-5528 via Conventional from 94788 -> 94789","Type":"Conventional","Directional":true,"Links":[{"SourceID":94788,"TargetID":94789,"Directional":true}]},{"ID":18500,"SourceStructureID":94784,"TargetStructureID":5623,"Label":"94784-5623 via Conventional from 94785 -> 94783","Type":"Conventional","Directional":true,"Links":[{"SourceID":94785,"TargetID":94783,"Directional":true}]},{"ID":18501,"SourceStructureID":94791,"TargetStructureID":5528,"Label":"94791-5528 via Conventional from 94801 -> 94802","Type":"Conventional","Directional":true,"Links":[{"SourceID":94801,"TargetID":94802,"Directional":true}]},{"ID":18502,"SourceStructureID":94796,"TargetStructureID":5528,"Label":"94796-5528 via Conventional from 94799 -> 94800","Type":"Conventional","Directional":true,"Links":[{"SourceID":94799,"TargetID":94800,"Directional":true}]},{"ID":18503,"SourceStructureID":94796,"TargetStructureID":94741,"Label":"94796-94741 via Conventional from 94797 -> 94798","Type":"Conventional","Directional":true,"Links":[{"SourceID":94797,"TargetID":94798,"Directional":true}]},{"ID":18504,"SourceStructureID":94803,"TargetStructureID":5528,"Label":"94803-5528 via Conventional from 94804 -> 94805","Type":"Conventional","Directional":true,"Links":[{"SourceID":94804,"TargetID":94805,"Directional":true}]},{"ID":18505,"SourceStructureID":94818,"TargetStructureID":5528,"Label":"94818-5528 via Conventional from 94819 -> 94820","Type":"Conventional","Directional":true,"Links":[{"SourceID":94819,"TargetID":94820,"Directional":true}]},{"ID":18506,"SourceStructureID":94821,"TargetStructureID":5528,"Label":"94821-5528 via Conventional from 94822 -> 94823","Type":"Conventional","Directional":true,"Links":[{"SourceID":94822,"TargetID":94823,"Directional":true}]},{"ID":18507,"SourceStructureID":94824,"TargetStructureID":5528,"Label":"94824-5528 via Conventional from 94825 -> 94826","Type":"Conventional","Directional":true,"Links":[{"SourceID":94825,"TargetID":94826,"Directional":true}]},{"ID":18508,"SourceStructureID":94831,"TargetStructureID":5528,"Label":"94831-5528 via Conventional from 94832 -> 94833","Type":"Conventional","Directional":true,"Links":[{"SourceID":94832,"TargetID":94833,"Directional":true}]},{"ID":18509,"SourceStructureID":94865,"TargetStructureID":5528,"Label":"94865-5528 via Conventional from 94866 -> 8251","Type":"Conventional","Directional":true,"Links":[{"SourceID":94866,"TargetID":8251,"Directional":true}]},{"ID":18510,"SourceStructureID":94867,"TargetStructureID":5528,"Label":"94867-5528 via Conventional from 94868 -> 36395","Type":"Conventional","Directional":true,"Links":[{"SourceID":94868,"TargetID":36395,"Directional":true}]},{"ID":18511,"SourceStructureID":94900,"TargetStructureID":180,"Label":"94900-180 via Conventional from 94901 -> 94902","Type":"Conventional","Directional":true,"Links":[{"SourceID":94901,"TargetID":94902,"Directional":true}]},{"ID":18512,"SourceStructureID":94903,"TargetStructureID":180,"Label":"94903-180 via Conventional from 94906 -> 94907","Type":"Conventional","Directional":true,"Links":[{"SourceID":94906,"TargetID":94907,"Directional":true}]},{"ID":18513,"SourceStructureID":94918,"TargetStructureID":180,"Label":"94918-180 via Conventional from 94924 -> 94925","Type":"Conventional","Directional":true,"Links":[{"SourceID":94924,"TargetID":94925,"Directional":true}]},{"ID":18514,"SourceStructureID":94930,"TargetStructureID":94930,"Label":"94930-94930 via Conventional from 133103 -> 133102","Type":"Conventional","Directional":true,"Links":[{"SourceID":133103,"TargetID":133102,"Directional":true}]},{"ID":18515,"SourceStructureID":94944,"TargetStructureID":180,"Label":"94944-180 via Conventional from 94945 -> 91021","Type":"Conventional","Directional":true,"Links":[{"SourceID":94945,"TargetID":91021,"Directional":true}]},{"ID":18516,"SourceStructureID":94948,"TargetStructureID":180,"Label":"94948-180 via Conventional from 94949 -> 7546","Type":"Conventional","Directional":true,"Links":[{"SourceID":94949,"TargetID":7546,"Directional":true}]},{"ID":18517,"SourceStructureID":94959,"TargetStructureID":180,"Label":"94959-180 via Conventional from 94960 -> 94961","Type":"Conventional","Directional":true,"Links":[{"SourceID":94960,"TargetID":94961,"Directional":true}]},{"ID":18518,"SourceStructureID":94962,"TargetStructureID":180,"Label":"94962-180 via Conventional from 94963 -> 29255","Type":"Conventional","Directional":true,"Links":[{"SourceID":94963,"TargetID":29255,"Directional":true}]},{"ID":18519,"SourceStructureID":94968,"TargetStructureID":180,"Label":"94968-180 via Conventional from 94969 -> 94970","Type":"Conventional","Directional":true,"Links":[{"SourceID":94969,"TargetID":94970,"Directional":true}]},{"ID":18520,"SourceStructureID":94974,"TargetStructureID":180,"Label":"94974-180 via Conventional from 94976 -> 29254","Type":"Conventional","Directional":true,"Links":[{"SourceID":94976,"TargetID":29254,"Directional":true}]},{"ID":18521,"SourceStructureID":94978,"TargetStructureID":6169,"Label":"94978-6169 via Conventional from 123358 -> 14939","Type":"Conventional","Directional":true,"Links":[{"SourceID":123358,"TargetID":14939,"Directional":true}]},{"ID":18522,"SourceStructureID":94983,"TargetStructureID":180,"Label":"94983-180 via Conventional from 94984 -> 29265","Type":"Conventional","Directional":true,"Links":[{"SourceID":94984,"TargetID":29265,"Directional":true}]},{"ID":18523,"SourceStructureID":94983,"TargetStructureID":6169,"Label":"94983-6169 via Conventional from 132929 -> 132930","Type":"Conventional","Directional":true,"Links":[{"SourceID":132929,"TargetID":132930,"Directional":true}]},{"ID":18524,"SourceStructureID":94985,"TargetStructureID":180,"Label":"94985-180 via Conventional from 94986 -> 94987","Type":"Conventional","Directional":true,"Links":[{"SourceID":94986,"TargetID":94987,"Directional":true}]},{"ID":18525,"SourceStructureID":94988,"TargetStructureID":180,"Label":"94988-180 via Conventional from 94989 -> 29256","Type":"Conventional","Directional":true,"Links":[{"SourceID":94989,"TargetID":29256,"Directional":true}]},{"ID":18526,"SourceStructureID":94991,"TargetStructureID":180,"Label":"94991-180 via Conventional from 94992 -> 29260","Type":"Conventional","Directional":true,"Links":[{"SourceID":94992,"TargetID":29260,"Directional":true}]},{"ID":18527,"SourceStructureID":94999,"TargetStructureID":180,"Label":"94999-180 via Conventional from 95000 -> 59665","Type":"Conventional","Directional":true,"Links":[{"SourceID":95000,"TargetID":59665,"Directional":true}]},{"ID":18528,"SourceStructureID":95001,"TargetStructureID":180,"Label":"95001-180 via Conventional from 118490 -> 29264","Type":"Conventional","Directional":true,"Links":[{"SourceID":118490,"TargetID":29264,"Directional":true}]},{"ID":18529,"SourceStructureID":95062,"TargetStructureID":5528,"Label":"95062-5528 via Conventional from 95063 -> 25296","Type":"Conventional","Directional":true,"Links":[{"SourceID":95063,"TargetID":25296,"Directional":true}]},{"ID":18530,"SourceStructureID":95097,"TargetStructureID":5528,"Label":"95097-5528 via Conventional from 95100 -> 36396","Type":"Conventional","Directional":true,"Links":[{"SourceID":95100,"TargetID":36396,"Directional":true}]},{"ID":18531,"SourceStructureID":95107,"TargetStructureID":5528,"Label":"95107-5528 via Conventional from 95108 -> 25297","Type":"Conventional","Directional":true,"Links":[{"SourceID":95108,"TargetID":25297,"Directional":true}]},{"ID":18532,"SourceStructureID":95117,"TargetStructureID":5528,"Label":"95117-5528 via Conventional from 95118 -> 95120","Type":"Conventional","Directional":true,"Links":[{"SourceID":95118,"TargetID":95120,"Directional":true}]},{"ID":18533,"SourceStructureID":95121,"TargetStructureID":5528,"Label":"95121-5528 via Conventional from 95122 -> 95123, 95125 -> 95124","Type":"Conventional","Directional":true,"Links":[{"SourceID":95122,"TargetID":95123,"Directional":true},{"SourceID":95125,"TargetID":95124,"Directional":true}]},{"ID":18534,"SourceStructureID":95149,"TargetStructureID":5528,"Label":"95149-5528 via Conventional from 95150 -> 68790","Type":"Conventional","Directional":true,"Links":[{"SourceID":95150,"TargetID":68790,"Directional":true}]},{"ID":18535,"SourceStructureID":95159,"TargetStructureID":95159,"Label":"95159-95159 via Conventional from 95160 -> 95161","Type":"Conventional","Directional":true,"Links":[{"SourceID":95160,"TargetID":95161,"Directional":true}]},{"ID":18536,"SourceStructureID":95162,"TargetStructureID":5528,"Label":"95162-5528 via Conventional from 95164 -> 95163","Type":"Conventional","Directional":true,"Links":[{"SourceID":95164,"TargetID":95163,"Directional":true}]},{"ID":18537,"SourceStructureID":95175,"TargetStructureID":5528,"Label":"95175-5528 via Conventional from 95176 -> 95177","Type":"Conventional","Directional":true,"Links":[{"SourceID":95176,"TargetID":95177,"Directional":true}]},{"ID":18538,"SourceStructureID":95190,"TargetStructureID":5528,"Label":"95190-5528 via Conventional from 95193 -> 95194","Type":"Conventional","Directional":true,"Links":[{"SourceID":95193,"TargetID":95194,"Directional":true}]},{"ID":18539,"SourceStructureID":95195,"TargetStructureID":5531,"Label":"95195-5531 via Conventional from 147426 -> 147425","Type":"Conventional","Directional":true,"Links":[{"SourceID":147426,"TargetID":147425,"Directional":true}]},{"ID":18540,"SourceStructureID":95197,"TargetStructureID":5528,"Label":"95197-5528 via Conventional from 95198 -> 95199","Type":"Conventional","Directional":true,"Links":[{"SourceID":95198,"TargetID":95199,"Directional":true}]},{"ID":18541,"SourceStructureID":95243,"TargetStructureID":180,"Label":"95243-180 via Conventional from 95244 -> 29250","Type":"Conventional","Directional":true,"Links":[{"SourceID":95244,"TargetID":29250,"Directional":true}]},{"ID":18542,"SourceStructureID":95260,"TargetStructureID":180,"Label":"95260-180 via Conventional from 95261 -> 95262","Type":"Conventional","Directional":true,"Links":[{"SourceID":95261,"TargetID":95262,"Directional":true}]},{"ID":18543,"SourceStructureID":95266,"TargetStructureID":180,"Label":"95266-180 via Conventional from 95267 -> 95268","Type":"Conventional","Directional":true,"Links":[{"SourceID":95267,"TargetID":95268,"Directional":true}]},{"ID":18544,"SourceStructureID":95269,"TargetStructureID":180,"Label":"95269-180 via Conventional from 95271 -> 95272","Type":"Conventional","Directional":true,"Links":[{"SourceID":95271,"TargetID":95272,"Directional":true}]},{"ID":18545,"SourceStructureID":95273,"TargetStructureID":180,"Label":"95273-180 via Conventional from 95274 -> 95297","Type":"Conventional","Directional":true,"Links":[{"SourceID":95274,"TargetID":95297,"Directional":true}]},{"ID":18546,"SourceStructureID":95292,"TargetStructureID":180,"Label":"95292-180 via Conventional from 95295 -> 95296","Type":"Conventional","Directional":true,"Links":[{"SourceID":95295,"TargetID":95296,"Directional":true}]},{"ID":18547,"SourceStructureID":95299,"TargetStructureID":180,"Label":"95299-180 via Conventional from 132855 -> 132856","Type":"Conventional","Directional":true,"Links":[{"SourceID":132855,"TargetID":132856,"Directional":true}]},{"ID":18548,"SourceStructureID":95307,"TargetStructureID":180,"Label":"95307-180 via Conventional from 95308 -> 95309","Type":"Conventional","Directional":true,"Links":[{"SourceID":95308,"TargetID":95309,"Directional":true}]},{"ID":18549,"SourceStructureID":95310,"TargetStructureID":180,"Label":"95310-180 via Conventional from 95316 -> 95317","Type":"Conventional","Directional":true,"Links":[{"SourceID":95316,"TargetID":95317,"Directional":true}]},{"ID":18550,"SourceStructureID":95319,"TargetStructureID":180,"Label":"95319-180 via Conventional from 95320 -> 59673","Type":"Conventional","Directional":true,"Links":[{"SourceID":95320,"TargetID":59673,"Directional":true}]},{"ID":18551,"SourceStructureID":95323,"TargetStructureID":180,"Label":"95323-180 via Conventional from 133110 -> 133109","Type":"Conventional","Directional":true,"Links":[{"SourceID":133110,"TargetID":133109,"Directional":true}]},{"ID":18552,"SourceStructureID":95323,"TargetStructureID":95319,"Label":"95323-95319 via Conventional from 133107 -> 133108","Type":"Conventional","Directional":true,"Links":[{"SourceID":133107,"TargetID":133108,"Directional":true}]},{"ID":18553,"SourceStructureID":95326,"TargetStructureID":180,"Label":"95326-180 via Conventional from 95327 -> 59675","Type":"Conventional","Directional":true,"Links":[{"SourceID":95327,"TargetID":59675,"Directional":true}]},{"ID":18554,"SourceStructureID":95328,"TargetStructureID":180,"Label":"95328-180 via Conventional from 95329 -> 59676","Type":"Conventional","Directional":true,"Links":[{"SourceID":95329,"TargetID":59676,"Directional":true}]},{"ID":18555,"SourceStructureID":95334,"TargetStructureID":180,"Label":"95334-180 via Conventional from 95335 -> 95336","Type":"Conventional","Directional":true,"Links":[{"SourceID":95335,"TargetID":95336,"Directional":true}]},{"ID":18556,"SourceStructureID":95387,"TargetStructureID":180,"Label":"95387-180 via Conventional from 95388 -> 860","Type":"Conventional","Directional":true,"Links":[{"SourceID":95388,"TargetID":860,"Directional":true}]},{"ID":18557,"SourceStructureID":95390,"TargetStructureID":180,"Label":"95390-180 via Conventional from 95396 -> 95397","Type":"Conventional","Directional":true,"Links":[{"SourceID":95396,"TargetID":95397,"Directional":true}]},{"ID":18558,"SourceStructureID":95391,"TargetStructureID":180,"Label":"95391-180 via Conventional from 95392 -> 95393","Type":"Conventional","Directional":true,"Links":[{"SourceID":95392,"TargetID":95393,"Directional":true}]},{"ID":18559,"SourceStructureID":95416,"TargetStructureID":180,"Label":"95416-180 via Conventional from 95417 -> 873","Type":"Conventional","Directional":true,"Links":[{"SourceID":95417,"TargetID":873,"Directional":true}]},{"ID":18560,"SourceStructureID":95429,"TargetStructureID":180,"Label":"95429-180 via Conventional from 95430 -> 876","Type":"Conventional","Directional":true,"Links":[{"SourceID":95430,"TargetID":876,"Directional":true}]},{"ID":18561,"SourceStructureID":95431,"TargetStructureID":180,"Label":"95431-180 via Conventional from 95432 -> 880","Type":"Conventional","Directional":true,"Links":[{"SourceID":95432,"TargetID":880,"Directional":true}]},{"ID":18562,"SourceStructureID":95436,"TargetStructureID":180,"Label":"95436-180 via Conventional from 95438 -> 886, 95439 -> 888","Type":"Conventional","Directional":true,"Links":[{"SourceID":95438,"TargetID":886,"Directional":true},{"SourceID":95439,"TargetID":888,"Directional":true}]},{"ID":18563,"SourceStructureID":95440,"TargetStructureID":44346,"Label":"95440-44346 via Conventional from 95450 -> 44407, 95451 -> 95452","Type":"Conventional","Directional":true,"Links":[{"SourceID":95450,"TargetID":44407,"Directional":true},{"SourceID":95451,"TargetID":95452,"Directional":true}]},{"ID":18564,"SourceStructureID":95443,"TargetStructureID":180,"Label":"95443-180 via Conventional from 95444 -> 893","Type":"Conventional","Directional":true,"Links":[{"SourceID":95444,"TargetID":893,"Directional":true}]},{"ID":18565,"SourceStructureID":95457,"TargetStructureID":180,"Label":"95457-180 via Conventional from 132898 -> 132897","Type":"Conventional","Directional":true,"Links":[{"SourceID":132898,"TargetID":132897,"Directional":true}]},{"ID":18566,"SourceStructureID":95465,"TargetStructureID":5528,"Label":"95465-5528 via Conventional from 95466 -> 95467","Type":"Conventional","Directional":true,"Links":[{"SourceID":95466,"TargetID":95467,"Directional":true}]},{"ID":18567,"SourceStructureID":95473,"TargetStructureID":5528,"Label":"95473-5528 via Conventional from 95474 -> 95475","Type":"Conventional","Directional":true,"Links":[{"SourceID":95474,"TargetID":95475,"Directional":true}]},{"ID":18568,"SourceStructureID":95476,"TargetStructureID":5528,"Label":"95476-5528 via Conventional from 95477 -> 95478","Type":"Conventional","Directional":true,"Links":[{"SourceID":95477,"TargetID":95478,"Directional":true}]},{"ID":18569,"SourceStructureID":95479,"TargetStructureID":5528,"Label":"95479-5528 via Conventional from 95480 -> 95631","Type":"Conventional","Directional":true,"Links":[{"SourceID":95480,"TargetID":95631,"Directional":true}]},{"ID":18570,"SourceStructureID":95482,"TargetStructureID":485,"Label":"95482-485 via Conventional from 148063 -> 148064","Type":"Conventional","Directional":true,"Links":[{"SourceID":148063,"TargetID":148064,"Directional":true}]},{"ID":18571,"SourceStructureID":95482,"TargetStructureID":6997,"Label":"95482-6997 via Conventional from 136658 -> 136277","Type":"Conventional","Directional":true,"Links":[{"SourceID":136658,"TargetID":136277,"Directional":true}]},{"ID":18572,"SourceStructureID":95485,"TargetStructureID":6997,"Label":"95485-6997 via Conventional from 95486 -> 95484","Type":"Conventional","Directional":true,"Links":[{"SourceID":95486,"TargetID":95484,"Directional":true}]},{"ID":18573,"SourceStructureID":95495,"TargetStructureID":180,"Label":"95495-180 via Conventional from 95496 -> 56874","Type":"Conventional","Directional":true,"Links":[{"SourceID":95496,"TargetID":56874,"Directional":true}]},{"ID":18574,"SourceStructureID":95502,"TargetStructureID":180,"Label":"95502-180 via Conventional from 95503 -> 95504","Type":"Conventional","Directional":true,"Links":[{"SourceID":95503,"TargetID":95504,"Directional":true}]},{"ID":18575,"SourceStructureID":95512,"TargetStructureID":180,"Label":"95512-180 via Conventional from 132868 -> 132867","Type":"Conventional","Directional":true,"Links":[{"SourceID":132868,"TargetID":132867,"Directional":true}]},{"ID":18576,"SourceStructureID":95523,"TargetStructureID":180,"Label":"95523-180 via Conventional from 95525 -> 95526","Type":"Conventional","Directional":true,"Links":[{"SourceID":95525,"TargetID":95526,"Directional":true}]},{"ID":18577,"SourceStructureID":95540,"TargetStructureID":180,"Label":"95540-180 via Conventional from 95541 -> 95542","Type":"Conventional","Directional":true,"Links":[{"SourceID":95541,"TargetID":95542,"Directional":true}]},{"ID":18578,"SourceStructureID":95548,"TargetStructureID":180,"Label":"95548-180 via Conventional from 95549 -> 95550","Type":"Conventional","Directional":true,"Links":[{"SourceID":95549,"TargetID":95550,"Directional":true}]},{"ID":18579,"SourceStructureID":95551,"TargetStructureID":180,"Label":"95551-180 via Conventional from 95552 -> 95553","Type":"Conventional","Directional":true,"Links":[{"SourceID":95552,"TargetID":95553,"Directional":true}]},{"ID":18580,"SourceStructureID":95556,"TargetStructureID":180,"Label":"95556-180 via Conventional from 95557 -> 95558","Type":"Conventional","Directional":true,"Links":[{"SourceID":95557,"TargetID":95558,"Directional":true}]},{"ID":18581,"SourceStructureID":95566,"TargetStructureID":180,"Label":"95566-180 via Conventional from 95567 -> 95569","Type":"Conventional","Directional":true,"Links":[{"SourceID":95567,"TargetID":95569,"Directional":true}]},{"ID":18582,"SourceStructureID":95573,"TargetStructureID":180,"Label":"95573-180 via Conventional from 95574 -> 95575","Type":"Conventional","Directional":true,"Links":[{"SourceID":95574,"TargetID":95575,"Directional":true}]},{"ID":18583,"SourceStructureID":95578,"TargetStructureID":180,"Label":"95578-180 via Conventional from 95582 -> 95583","Type":"Conventional","Directional":true,"Links":[{"SourceID":95582,"TargetID":95583,"Directional":true}]},{"ID":18584,"SourceStructureID":95579,"TargetStructureID":180,"Label":"95579-180 via Conventional from 95580 -> 95581","Type":"Conventional","Directional":true,"Links":[{"SourceID":95580,"TargetID":95581,"Directional":true}]},{"ID":18585,"SourceStructureID":95593,"TargetStructureID":180,"Label":"95593-180 via Conventional from 95594 -> 4928","Type":"Conventional","Directional":true,"Links":[{"SourceID":95594,"TargetID":4928,"Directional":true}]},{"ID":18586,"SourceStructureID":95597,"TargetStructureID":180,"Label":"95597-180 via Conventional from 95598 -> 95599","Type":"Conventional","Directional":true,"Links":[{"SourceID":95598,"TargetID":95599,"Directional":true}]},{"ID":18587,"SourceStructureID":95600,"TargetStructureID":180,"Label":"95600-180 via Unknown from 95602 -> 95601","Type":"Unknown","Directional":true,"Links":[{"SourceID":95602,"TargetID":95601,"Directional":true}]},{"ID":18588,"SourceStructureID":95609,"TargetStructureID":180,"Label":"95609-180 via Conventional from 95610 -> 95611","Type":"Conventional","Directional":true,"Links":[{"SourceID":95610,"TargetID":95611,"Directional":true}]},{"ID":18589,"SourceStructureID":95615,"TargetStructureID":180,"Label":"95615-180 via Conventional from 95616 -> 95617","Type":"Conventional","Directional":true,"Links":[{"SourceID":95616,"TargetID":95617,"Directional":true}]},{"ID":18590,"SourceStructureID":95633,"TargetStructureID":5528,"Label":"95633-5528 via Conventional from 95636 -> 95635","Type":"Conventional","Directional":true,"Links":[{"SourceID":95636,"TargetID":95635,"Directional":true}]},{"ID":18591,"SourceStructureID":95648,"TargetStructureID":180,"Label":"95648-180 via Conventional from 95649 -> 95650","Type":"Conventional","Directional":true,"Links":[{"SourceID":95649,"TargetID":95650,"Directional":true}]},{"ID":18592,"SourceStructureID":95651,"TargetStructureID":180,"Label":"95651-180 via Conventional from 95653 -> 95654, 132992 -> 132993","Type":"Conventional","Directional":true,"Links":[{"SourceID":95653,"TargetID":95654,"Directional":true},{"SourceID":132992,"TargetID":132993,"Directional":true}]},{"ID":18593,"SourceStructureID":95673,"TargetStructureID":5528,"Label":"95673-5528 via Conventional from 95675 -> 8266","Type":"Conventional","Directional":true,"Links":[{"SourceID":95675,"TargetID":8266,"Directional":true}]},{"ID":18594,"SourceStructureID":95676,"TargetStructureID":5528,"Label":"95676-5528 via Conventional from 95680 -> 95681","Type":"Conventional","Directional":true,"Links":[{"SourceID":95680,"TargetID":95681,"Directional":true}]},{"ID":18595,"SourceStructureID":95683,"TargetStructureID":180,"Label":"95683-180 via Conventional from 95686 -> 95687","Type":"Conventional","Directional":true,"Links":[{"SourceID":95686,"TargetID":95687,"Directional":true}]},{"ID":18596,"SourceStructureID":95688,"TargetStructureID":5528,"Label":"95688-5528 via Conventional from 95689 -> 8263","Type":"Conventional","Directional":true,"Links":[{"SourceID":95689,"TargetID":8263,"Directional":true}]},{"ID":18597,"SourceStructureID":95690,"TargetStructureID":5528,"Label":"95690-5528 via Conventional from 95691 -> 8262","Type":"Conventional","Directional":true,"Links":[{"SourceID":95691,"TargetID":8262,"Directional":true}]},{"ID":18598,"SourceStructureID":95698,"TargetStructureID":5528,"Label":"95698-5528 via Conventional from 96166 -> 8259","Type":"Conventional","Directional":true,"Links":[{"SourceID":96166,"TargetID":8259,"Directional":true}]},{"ID":18599,"SourceStructureID":95699,"TargetStructureID":5528,"Label":"95699-5528 via Conventional from 96163 -> 8260","Type":"Conventional","Directional":true,"Links":[{"SourceID":96163,"TargetID":8260,"Directional":true}]},{"ID":18600,"SourceStructureID":95699,"TargetStructureID":5531,"Label":"95699-5531 via Conventional from 114687 -> 114688","Type":"Conventional","Directional":true,"Links":[{"SourceID":114687,"TargetID":114688,"Directional":true}]},{"ID":18601,"SourceStructureID":95700,"TargetStructureID":5528,"Label":"95700-5528 via Conventional from 96162 -> 8268","Type":"Conventional","Directional":true,"Links":[{"SourceID":96162,"TargetID":8268,"Directional":true}]},{"ID":18602,"SourceStructureID":95708,"TargetStructureID":180,"Label":"95708-180 via Conventional from 95709 -> 95710","Type":"Conventional","Directional":true,"Links":[{"SourceID":95709,"TargetID":95710,"Directional":true}]},{"ID":18603,"SourceStructureID":95711,"TargetStructureID":180,"Label":"95711-180 via Conventional from 95712 -> 95713","Type":"Conventional","Directional":true,"Links":[{"SourceID":95712,"TargetID":95713,"Directional":true}]},{"ID":18604,"SourceStructureID":95729,"TargetStructureID":180,"Label":"95729-180 via Conventional from 95730 -> 95731","Type":"Conventional","Directional":true,"Links":[{"SourceID":95730,"TargetID":95731,"Directional":true}]},{"ID":18605,"SourceStructureID":95746,"TargetStructureID":180,"Label":"95746-180 via Conventional from 95748 -> 95749","Type":"Conventional","Directional":true,"Links":[{"SourceID":95748,"TargetID":95749,"Directional":true}]},{"ID":18606,"SourceStructureID":95751,"TargetStructureID":180,"Label":"95751-180 via Conventional from 95754 -> 95755","Type":"Conventional","Directional":true,"Links":[{"SourceID":95754,"TargetID":95755,"Directional":true}]},{"ID":18607,"SourceStructureID":95807,"TargetStructureID":180,"Label":"95807-180 via Conventional from 95808 -> 88068","Type":"Conventional","Directional":true,"Links":[{"SourceID":95808,"TargetID":88068,"Directional":true}]},{"ID":18608,"SourceStructureID":95815,"TargetStructureID":180,"Label":"95815-180 via Conventional from 95816 -> 95817","Type":"Conventional","Directional":true,"Links":[{"SourceID":95816,"TargetID":95817,"Directional":true}]},{"ID":18609,"SourceStructureID":95818,"TargetStructureID":180,"Label":"95818-180 via Conventional from 95819 -> 88069","Type":"Conventional","Directional":true,"Links":[{"SourceID":95819,"TargetID":88069,"Directional":true}]},{"ID":18610,"SourceStructureID":95820,"TargetStructureID":180,"Label":"95820-180 via Conventional from 95822 -> 95821","Type":"Conventional","Directional":true,"Links":[{"SourceID":95822,"TargetID":95821,"Directional":true}]},{"ID":18611,"SourceStructureID":95823,"TargetStructureID":180,"Label":"95823-180 via Conventional from 95826 -> 88074","Type":"Conventional","Directional":true,"Links":[{"SourceID":95826,"TargetID":88074,"Directional":true}]},{"ID":18612,"SourceStructureID":95824,"TargetStructureID":180,"Label":"95824-180 via Conventional from 132960 -> 132959","Type":"Conventional","Directional":true,"Links":[{"SourceID":132960,"TargetID":132959,"Directional":true}]},{"ID":18613,"SourceStructureID":95829,"TargetStructureID":180,"Label":"95829-180 via Conventional from 95830 -> 88073","Type":"Conventional","Directional":true,"Links":[{"SourceID":95830,"TargetID":88073,"Directional":true}]},{"ID":18614,"SourceStructureID":95836,"TargetStructureID":180,"Label":"95836-180 via Conventional from 95838 -> 95837","Type":"Conventional","Directional":true,"Links":[{"SourceID":95838,"TargetID":95837,"Directional":true}]},{"ID":18615,"SourceStructureID":95846,"TargetStructureID":180,"Label":"95846-180 via Conventional from 95847 -> 95848","Type":"Conventional","Directional":true,"Links":[{"SourceID":95847,"TargetID":95848,"Directional":true}]},{"ID":18616,"SourceStructureID":95851,"TargetStructureID":180,"Label":"95851-180 via Conventional from 95853 -> 88075","Type":"Conventional","Directional":true,"Links":[{"SourceID":95853,"TargetID":88075,"Directional":true}]},{"ID":18617,"SourceStructureID":95866,"TargetStructureID":180,"Label":"95866-180 via Conventional from 95867 -> 95869, 133007 -> 133006","Type":"Conventional","Directional":true,"Links":[{"SourceID":95867,"TargetID":95869,"Directional":true},{"SourceID":133007,"TargetID":133006,"Directional":true}]},{"ID":18618,"SourceStructureID":95871,"TargetStructureID":180,"Label":"95871-180 via Conventional from 95873 -> 6568","Type":"Conventional","Directional":true,"Links":[{"SourceID":95873,"TargetID":6568,"Directional":true}]},{"ID":18619,"SourceStructureID":95874,"TargetStructureID":180,"Label":"95874-180 via Conventional from 95875 -> 6569","Type":"Conventional","Directional":true,"Links":[{"SourceID":95875,"TargetID":6569,"Directional":true}]},{"ID":18620,"SourceStructureID":95877,"TargetStructureID":180,"Label":"95877-180 via Conventional from 95880 -> 95881","Type":"Conventional","Directional":true,"Links":[{"SourceID":95880,"TargetID":95881,"Directional":true}]},{"ID":18621,"SourceStructureID":95895,"TargetStructureID":180,"Label":"95895-180 via Conventional from 95898 -> 95899","Type":"Conventional","Directional":true,"Links":[{"SourceID":95898,"TargetID":95899,"Directional":true}]},{"ID":18622,"SourceStructureID":95900,"TargetStructureID":180,"Label":"95900-180 via Conventional from 95901 -> 95902","Type":"Conventional","Directional":true,"Links":[{"SourceID":95901,"TargetID":95902,"Directional":true}]},{"ID":18623,"SourceStructureID":95907,"TargetStructureID":180,"Label":"95907-180 via Conventional from 95908 -> 95909","Type":"Conventional","Directional":true,"Links":[{"SourceID":95908,"TargetID":95909,"Directional":true}]},{"ID":18624,"SourceStructureID":95910,"TargetStructureID":180,"Label":"95910-180 via Conventional from 95913 -> 95914","Type":"Conventional","Directional":true,"Links":[{"SourceID":95913,"TargetID":95914,"Directional":true}]},{"ID":18625,"SourceStructureID":95917,"TargetStructureID":180,"Label":"95917-180 via Conventional from 95920 -> 95921","Type":"Conventional","Directional":true,"Links":[{"SourceID":95920,"TargetID":95921,"Directional":true}]},{"ID":18626,"SourceStructureID":95922,"TargetStructureID":166,"Label":"95922-166 via Conventional from 132918 -> 132917","Type":"Conventional","Directional":true,"Links":[{"SourceID":132918,"TargetID":132917,"Directional":true}]},{"ID":18627,"SourceStructureID":95922,"TargetStructureID":180,"Label":"95922-180 via Conventional from 95925 -> 14141","Type":"Conventional","Directional":true,"Links":[{"SourceID":95925,"TargetID":14141,"Directional":true}]},{"ID":18628,"SourceStructureID":95930,"TargetStructureID":180,"Label":"95930-180 via Conventional from 95937 -> 14138, 95957 -> 14146","Type":"Conventional","Directional":true,"Links":[{"SourceID":95937,"TargetID":14138,"Directional":true},{"SourceID":95957,"TargetID":14146,"Directional":true}]},{"ID":18629,"SourceStructureID":95945,"TargetStructureID":180,"Label":"95945-180 via Conventional from 95946 -> 14140","Type":"Conventional","Directional":true,"Links":[{"SourceID":95946,"TargetID":14140,"Directional":true}]},{"ID":18630,"SourceStructureID":95947,"TargetStructureID":180,"Label":"95947-180 via Conventional from 95948 -> 14145","Type":"Conventional","Directional":true,"Links":[{"SourceID":95948,"TargetID":14145,"Directional":true}]},{"ID":18631,"SourceStructureID":95959,"TargetStructureID":180,"Label":"95959-180 via Conventional from 95961 -> 95962","Type":"Conventional","Directional":true,"Links":[{"SourceID":95961,"TargetID":95962,"Directional":true}]},{"ID":18632,"SourceStructureID":95963,"TargetStructureID":180,"Label":"95963-180 via Conventional from 95964 -> 95965","Type":"Conventional","Directional":true,"Links":[{"SourceID":95964,"TargetID":95965,"Directional":true}]},{"ID":18633,"SourceStructureID":95966,"TargetStructureID":180,"Label":"95966-180 via Conventional from 95968 -> 14159","Type":"Conventional","Directional":true,"Links":[{"SourceID":95968,"TargetID":14159,"Directional":true}]},{"ID":18634,"SourceStructureID":95971,"TargetStructureID":180,"Label":"95971-180 via Conventional from 95972 -> 14158","Type":"Conventional","Directional":true,"Links":[{"SourceID":95972,"TargetID":14158,"Directional":true}]},{"ID":18635,"SourceStructureID":95977,"TargetStructureID":180,"Label":"95977-180 via Conventional from 96009 -> 96010","Type":"Conventional","Directional":true,"Links":[{"SourceID":96009,"TargetID":96010,"Directional":true}]},{"ID":18636,"SourceStructureID":95978,"TargetStructureID":180,"Label":"95978-180 via Conventional from 95979 -> 14148","Type":"Conventional","Directional":true,"Links":[{"SourceID":95979,"TargetID":14148,"Directional":true}]},{"ID":18637,"SourceStructureID":95991,"TargetStructureID":180,"Label":"95991-180 via Conventional from 95993 -> 95994","Type":"Conventional","Directional":true,"Links":[{"SourceID":95993,"TargetID":95994,"Directional":true}]},{"ID":18638,"SourceStructureID":95997,"TargetStructureID":180,"Label":"95997-180 via Conventional from 96001 -> 14160","Type":"Conventional","Directional":true,"Links":[{"SourceID":96001,"TargetID":14160,"Directional":true}]},{"ID":18639,"SourceStructureID":95997,"TargetStructureID":6169,"Label":"95997-6169 via Conventional from 132841 -> 132840","Type":"Conventional","Directional":true,"Links":[{"SourceID":132841,"TargetID":132840,"Directional":true}]},{"ID":18640,"SourceStructureID":96011,"TargetStructureID":180,"Label":"96011-180 via Conventional from 96012 -> 14153","Type":"Conventional","Directional":true,"Links":[{"SourceID":96012,"TargetID":14153,"Directional":true}]},{"ID":18641,"SourceStructureID":96039,"TargetStructureID":180,"Label":"96039-180 via Conventional from 96040 -> 96041","Type":"Conventional","Directional":true,"Links":[{"SourceID":96040,"TargetID":96041,"Directional":true}]},{"ID":18642,"SourceStructureID":96143,"TargetStructureID":5528,"Label":"96143-5528 via Conventional from 96158 -> 8270","Type":"Conventional","Directional":true,"Links":[{"SourceID":96158,"TargetID":8270,"Directional":true}]},{"ID":18643,"SourceStructureID":96152,"TargetStructureID":595,"Label":"96152-595 via Conventional from 125162 -> 125161","Type":"Conventional","Directional":true,"Links":[{"SourceID":125162,"TargetID":125161,"Directional":true}]},{"ID":18644,"SourceStructureID":96152,"TargetStructureID":5528,"Label":"96152-5528 via Conventional from 96159 -> 8271","Type":"Conventional","Directional":true,"Links":[{"SourceID":96159,"TargetID":8271,"Directional":true}]},{"ID":18645,"SourceStructureID":96164,"TargetStructureID":5528,"Label":"96164-5528 via Conventional from 96165 -> 8261","Type":"Conventional","Directional":true,"Links":[{"SourceID":96165,"TargetID":8261,"Directional":true}]},{"ID":18646,"SourceStructureID":96164,"TargetStructureID":82832,"Label":"96164-82832 via Conventional from 107187 -> 107185","Type":"Conventional","Directional":true,"Links":[{"SourceID":107187,"TargetID":107185,"Directional":true}]},{"ID":18647,"SourceStructureID":96175,"TargetStructureID":5517,"Label":"96175-5517 via Conventional from 96176 -> 96174","Type":"Conventional","Directional":true,"Links":[{"SourceID":96176,"TargetID":96174,"Directional":true}]},{"ID":18648,"SourceStructureID":96184,"TargetStructureID":5528,"Label":"96184-5528 via Conventional from 96186 -> 96187","Type":"Conventional","Directional":true,"Links":[{"SourceID":96186,"TargetID":96187,"Directional":true}]},{"ID":18649,"SourceStructureID":96199,"TargetStructureID":5517,"Label":"96199-5517 via Conventional from 96200 -> 96197","Type":"Conventional","Directional":true,"Links":[{"SourceID":96200,"TargetID":96197,"Directional":true}]},{"ID":18650,"SourceStructureID":96202,"TargetStructureID":5517,"Label":"96202-5517 via Conventional from 96203 -> 96198","Type":"Conventional","Directional":true,"Links":[{"SourceID":96203,"TargetID":96198,"Directional":true}]},{"ID":18651,"SourceStructureID":96224,"TargetStructureID":5528,"Label":"96224-5528 via Conventional from 96225 -> 96226","Type":"Conventional","Directional":true,"Links":[{"SourceID":96225,"TargetID":96226,"Directional":true}]},{"ID":18652,"SourceStructureID":96224,"TargetStructureID":5531,"Label":"96224-5531 via Conventional from 114542 -> 114543","Type":"Conventional","Directional":true,"Links":[{"SourceID":114542,"TargetID":114543,"Directional":true}]},{"ID":18653,"SourceStructureID":96243,"TargetStructureID":5528,"Label":"96243-5528 via Conventional from 96244 -> 96245","Type":"Conventional","Directional":true,"Links":[{"SourceID":96244,"TargetID":96245,"Directional":true}]},{"ID":18654,"SourceStructureID":96246,"TargetStructureID":5528,"Label":"96246-5528 via Conventional from 96247 -> 96248","Type":"Conventional","Directional":true,"Links":[{"SourceID":96247,"TargetID":96248,"Directional":true}]},{"ID":18655,"SourceStructureID":96249,"TargetStructureID":5528,"Label":"96249-5528 via Conventional from 96250 -> 96251","Type":"Conventional","Directional":true,"Links":[{"SourceID":96250,"TargetID":96251,"Directional":true}]},{"ID":18656,"SourceStructureID":96255,"TargetStructureID":5528,"Label":"96255-5528 via Conventional from 96256 -> 96257","Type":"Conventional","Directional":true,"Links":[{"SourceID":96256,"TargetID":96257,"Directional":true}]},{"ID":18657,"SourceStructureID":96266,"TargetStructureID":5528,"Label":"96266-5528 via Conventional from 96267 -> 8274","Type":"Conventional","Directional":true,"Links":[{"SourceID":96267,"TargetID":8274,"Directional":true}]},{"ID":18658,"SourceStructureID":96266,"TargetStructureID":5531,"Label":"96266-5531 via Conventional from 107150 -> 107149","Type":"Conventional","Directional":true,"Links":[{"SourceID":107150,"TargetID":107149,"Directional":true}]},{"ID":18659,"SourceStructureID":96268,"TargetStructureID":5528,"Label":"96268-5528 via Conventional from 96269 -> 8275","Type":"Conventional","Directional":true,"Links":[{"SourceID":96269,"TargetID":8275,"Directional":true}]},{"ID":18660,"SourceStructureID":96270,"TargetStructureID":5528,"Label":"96270-5528 via Conventional from 96271 -> 8273","Type":"Conventional","Directional":true,"Links":[{"SourceID":96271,"TargetID":8273,"Directional":true}]},{"ID":18661,"SourceStructureID":96272,"TargetStructureID":5528,"Label":"96272-5528 via Conventional from 96273 -> 8281","Type":"Conventional","Directional":true,"Links":[{"SourceID":96273,"TargetID":8281,"Directional":true}]},{"ID":18662,"SourceStructureID":96285,"TargetStructureID":5528,"Label":"96285-5528 via Conventional from 96286 -> 8277","Type":"Conventional","Directional":true,"Links":[{"SourceID":96286,"TargetID":8277,"Directional":true}]},{"ID":18663,"SourceStructureID":96287,"TargetStructureID":5528,"Label":"96287-5528 via Conventional from 96289 -> 8276","Type":"Conventional","Directional":true,"Links":[{"SourceID":96289,"TargetID":8276,"Directional":true}]},{"ID":18664,"SourceStructureID":96293,"TargetStructureID":5528,"Label":"96293-5528 via Conventional from 96294 -> 96295","Type":"Conventional","Directional":true,"Links":[{"SourceID":96294,"TargetID":96295,"Directional":true}]},{"ID":18665,"SourceStructureID":96293,"TargetStructureID":5531,"Label":"96293-5531 via Conventional from 107093 -> 107090","Type":"Conventional","Directional":true,"Links":[{"SourceID":107093,"TargetID":107090,"Directional":true}]},{"ID":18666,"SourceStructureID":96296,"TargetStructureID":5528,"Label":"96296-5528 via Conventional from 96297 -> 96298","Type":"Conventional","Directional":true,"Links":[{"SourceID":96297,"TargetID":96298,"Directional":true}]},{"ID":18667,"SourceStructureID":96308,"TargetStructureID":5517,"Label":"96308-5517 via Conventional from 96309 -> 96307","Type":"Conventional","Directional":true,"Links":[{"SourceID":96309,"TargetID":96307,"Directional":true}]},{"ID":18668,"SourceStructureID":96310,"TargetStructureID":5517,"Label":"96310-5517 via Conventional from 96313 -> 96215, 96327 -> 96110","Type":"Conventional","Directional":true,"Links":[{"SourceID":96313,"TargetID":96215,"Directional":true},{"SourceID":96327,"TargetID":96110,"Directional":true}]},{"ID":18669,"SourceStructureID":96311,"TargetStructureID":5517,"Label":"96311-5517 via Conventional from 96312 -> 96216","Type":"Conventional","Directional":true,"Links":[{"SourceID":96312,"TargetID":96216,"Directional":true}]},{"ID":18670,"SourceStructureID":96315,"TargetStructureID":5517,"Label":"96315-5517 via Conventional from 96316 -> 96314","Type":"Conventional","Directional":true,"Links":[{"SourceID":96316,"TargetID":96314,"Directional":true}]},{"ID":18671,"SourceStructureID":96319,"TargetStructureID":5517,"Label":"96319-5517 via Conventional from 96320 -> 96318","Type":"Conventional","Directional":true,"Links":[{"SourceID":96320,"TargetID":96318,"Directional":true}]},{"ID":18672,"SourceStructureID":96321,"TargetStructureID":5517,"Label":"96321-5517 via Conventional from 96322 -> 96111","Type":"Conventional","Directional":true,"Links":[{"SourceID":96322,"TargetID":96111,"Directional":true}]},{"ID":18673,"SourceStructureID":96325,"TargetStructureID":5517,"Label":"96325-5517 via Conventional from 96326 -> 96112","Type":"Conventional","Directional":true,"Links":[{"SourceID":96326,"TargetID":96112,"Directional":true}]},{"ID":18674,"SourceStructureID":96337,"TargetStructureID":5517,"Label":"96337-5517 via Conventional from 96339 -> 96059","Type":"Conventional","Directional":true,"Links":[{"SourceID":96339,"TargetID":96059,"Directional":true}]},{"ID":18675,"SourceStructureID":96341,"TargetStructureID":5517,"Label":"96341-5517 via Conventional from 96342 -> 96060","Type":"Conventional","Directional":true,"Links":[{"SourceID":96342,"TargetID":96060,"Directional":true}]},{"ID":18676,"SourceStructureID":96357,"TargetStructureID":5279,"Label":"96357-5279 via Conventional from 96358 -> 6906","Type":"Conventional","Directional":true,"Links":[{"SourceID":96358,"TargetID":6906,"Directional":true}]},{"ID":18677,"SourceStructureID":96373,"TargetStructureID":5279,"Label":"96373-5279 via Conventional from 96402 -> 40191","Type":"Conventional","Directional":true,"Links":[{"SourceID":96402,"TargetID":40191,"Directional":true}]},{"ID":18678,"SourceStructureID":96379,"TargetStructureID":5279,"Label":"96379-5279 via Conventional from 96382 -> 49233","Type":"Conventional","Directional":true,"Links":[{"SourceID":96382,"TargetID":49233,"Directional":true}]},{"ID":18679,"SourceStructureID":96383,"TargetStructureID":5279,"Label":"96383-5279 via Conventional from 96384 -> 26006","Type":"Conventional","Directional":true,"Links":[{"SourceID":96384,"TargetID":26006,"Directional":true}]},{"ID":18680,"SourceStructureID":96407,"TargetStructureID":5279,"Label":"96407-5279 via Conventional from 96410 -> 49235, 96411 -> 49235","Type":"Conventional","Directional":true,"Links":[{"SourceID":96410,"TargetID":49235,"Directional":true},{"SourceID":96411,"TargetID":49235,"Directional":true}]},{"ID":18681,"SourceStructureID":96421,"TargetStructureID":5279,"Label":"96421-5279 via Conventional from 96422 -> 49237","Type":"Conventional","Directional":true,"Links":[{"SourceID":96422,"TargetID":49237,"Directional":true}]},{"ID":18682,"SourceStructureID":96435,"TargetStructureID":5278,"Label":"96435-5278 via Conventional from 114314 -> 114473","Type":"Conventional","Directional":true,"Links":[{"SourceID":114314,"TargetID":114473,"Directional":true}]},{"ID":18683,"SourceStructureID":96435,"TargetStructureID":5279,"Label":"96435-5279 via Conventional from 96436 -> 49240","Type":"Conventional","Directional":true,"Links":[{"SourceID":96436,"TargetID":49240,"Directional":true}]},{"ID":18684,"SourceStructureID":96437,"TargetStructureID":5279,"Label":"96437-5279 via Conventional from 96438 -> 49243","Type":"Conventional","Directional":true,"Links":[{"SourceID":96438,"TargetID":49243,"Directional":true}]},{"ID":18685,"SourceStructureID":96442,"TargetStructureID":5279,"Label":"96442-5279 via Conventional from 96443 -> 96444","Type":"Conventional","Directional":true,"Links":[{"SourceID":96443,"TargetID":96444,"Directional":true}]},{"ID":18686,"SourceStructureID":96453,"TargetStructureID":5279,"Label":"96453-5279 via Conventional from 96454 -> 49244","Type":"Conventional","Directional":true,"Links":[{"SourceID":96454,"TargetID":49244,"Directional":true}]},{"ID":18687,"SourceStructureID":96473,"TargetStructureID":5279,"Label":"96473-5279 via Conventional from 96474 -> 6334","Type":"Conventional","Directional":true,"Links":[{"SourceID":96474,"TargetID":6334,"Directional":true}]},{"ID":18688,"SourceStructureID":96485,"TargetStructureID":5279,"Label":"96485-5279 via Conventional from 96486 -> 6337","Type":"Conventional","Directional":true,"Links":[{"SourceID":96486,"TargetID":6337,"Directional":true}]},{"ID":18689,"SourceStructureID":96516,"TargetStructureID":332,"Label":"96516-332 via Conventional from 96518 -> 96515","Type":"Conventional","Directional":true,"Links":[{"SourceID":96518,"TargetID":96515,"Directional":true}]},{"ID":18690,"SourceStructureID":96519,"TargetStructureID":5279,"Label":"96519-5279 via Conventional from 96998 -> 28311","Type":"Conventional","Directional":true,"Links":[{"SourceID":96998,"TargetID":28311,"Directional":true}]},{"ID":18691,"SourceStructureID":96522,"TargetStructureID":332,"Label":"96522-332 via Conventional from 96523 -> 96477","Type":"Conventional","Directional":true,"Links":[{"SourceID":96523,"TargetID":96477,"Directional":true}]},{"ID":18692,"SourceStructureID":96524,"TargetStructureID":324,"Label":"96524-324 via Conventional from 96526 -> 96378","Type":"Conventional","Directional":true,"Links":[{"SourceID":96526,"TargetID":96378,"Directional":true}]},{"ID":18693,"SourceStructureID":96534,"TargetStructureID":332,"Label":"96534-332 via Conventional from 96535 -> 96536, 96540 -> 82186","Type":"Conventional","Directional":true,"Links":[{"SourceID":96535,"TargetID":96536,"Directional":true},{"SourceID":96540,"TargetID":82186,"Directional":true}]},{"ID":18694,"SourceStructureID":96560,"TargetStructureID":332,"Label":"96560-332 via Conventional from 96561 -> 96558","Type":"Conventional","Directional":true,"Links":[{"SourceID":96561,"TargetID":96558,"Directional":true}]},{"ID":18695,"SourceStructureID":96562,"TargetStructureID":332,"Label":"96562-332 via Conventional from 96563 -> 96559","Type":"Conventional","Directional":true,"Links":[{"SourceID":96563,"TargetID":96559,"Directional":true}]},{"ID":18696,"SourceStructureID":96565,"TargetStructureID":332,"Label":"96565-332 via Conventional from 97366 -> 97367","Type":"Conventional","Directional":true,"Links":[{"SourceID":97366,"TargetID":97367,"Directional":true}]},{"ID":18697,"SourceStructureID":96589,"TargetStructureID":332,"Label":"96589-332 via Conventional from 96590 -> 96588","Type":"Conventional","Directional":true,"Links":[{"SourceID":96590,"TargetID":96588,"Directional":true}]},{"ID":18698,"SourceStructureID":96589,"TargetStructureID":461,"Label":"96589-461 via Conventional from 96591 -> 96592","Type":"Conventional","Directional":true,"Links":[{"SourceID":96591,"TargetID":96592,"Directional":true}]},{"ID":18699,"SourceStructureID":96600,"TargetStructureID":483,"Label":"96600-483 via Conventional from 96601 -> 96599","Type":"Conventional","Directional":true,"Links":[{"SourceID":96601,"TargetID":96599,"Directional":true}]},{"ID":18700,"SourceStructureID":96600,"TargetStructureID":6997,"Label":"96600-6997 via Conventional from 96602 -> 96603","Type":"Conventional","Directional":true,"Links":[{"SourceID":96602,"TargetID":96603,"Directional":true}]},{"ID":18701,"SourceStructureID":96610,"TargetStructureID":483,"Label":"96610-483 via Conventional from 96612 -> 96606","Type":"Conventional","Directional":true,"Links":[{"SourceID":96612,"TargetID":96606,"Directional":true}]},{"ID":18702,"SourceStructureID":96617,"TargetStructureID":483,"Label":"96617-483 via Conventional from 96618 -> 96608","Type":"Conventional","Directional":true,"Links":[{"SourceID":96618,"TargetID":96608,"Directional":true}]},{"ID":18703,"SourceStructureID":96619,"TargetStructureID":483,"Label":"96619-483 via Conventional from 96620 -> 96607","Type":"Conventional","Directional":true,"Links":[{"SourceID":96620,"TargetID":96607,"Directional":true}]},{"ID":18704,"SourceStructureID":96621,"TargetStructureID":483,"Label":"96621-483 via Conventional from 96622 -> 96623","Type":"Conventional","Directional":true,"Links":[{"SourceID":96622,"TargetID":96623,"Directional":true}]},{"ID":18705,"SourceStructureID":96621,"TargetStructureID":525,"Label":"96621-525 via Conventional from 96625 -> 6222","Type":"Conventional","Directional":true,"Links":[{"SourceID":96625,"TargetID":6222,"Directional":true}]},{"ID":18706,"SourceStructureID":96629,"TargetStructureID":6857,"Label":"96629-6857 via Conventional from 96631 -> 6873","Type":"Conventional","Directional":true,"Links":[{"SourceID":96631,"TargetID":6873,"Directional":true}]},{"ID":18707,"SourceStructureID":96638,"TargetStructureID":483,"Label":"96638-483 via Conventional from 96641 -> 96637","Type":"Conventional","Directional":true,"Links":[{"SourceID":96641,"TargetID":96637,"Directional":true}]},{"ID":18708,"SourceStructureID":96642,"TargetStructureID":483,"Label":"96642-483 via Conventional from 96643 -> 92352","Type":"Conventional","Directional":true,"Links":[{"SourceID":96643,"TargetID":92352,"Directional":true}]},{"ID":18709,"SourceStructureID":96647,"TargetStructureID":483,"Label":"96647-483 via Conventional from 96648 -> 96646","Type":"Conventional","Directional":true,"Links":[{"SourceID":96648,"TargetID":96646,"Directional":true}]},{"ID":18710,"SourceStructureID":96649,"TargetStructureID":483,"Label":"96649-483 via Conventional from 96650 -> 92348","Type":"Conventional","Directional":true,"Links":[{"SourceID":96650,"TargetID":92348,"Directional":true}]},{"ID":18711,"SourceStructureID":96657,"TargetStructureID":483,"Label":"96657-483 via Conventional from 96658 -> 96659","Type":"Conventional","Directional":true,"Links":[{"SourceID":96658,"TargetID":96659,"Directional":true}]},{"ID":18712,"SourceStructureID":96663,"TargetStructureID":483,"Label":"96663-483 via Conventional from 96664 -> 96662","Type":"Conventional","Directional":true,"Links":[{"SourceID":96664,"TargetID":96662,"Directional":true}]},{"ID":18713,"SourceStructureID":96679,"TargetStructureID":5499,"Label":"96679-5499 via Conventional from 96680 -> 96678","Type":"Conventional","Directional":true,"Links":[{"SourceID":96680,"TargetID":96678,"Directional":true}]},{"ID":18714,"SourceStructureID":96699,"TargetStructureID":5499,"Label":"96699-5499 via Conventional from 96700 -> 96698","Type":"Conventional","Directional":true,"Links":[{"SourceID":96700,"TargetID":96698,"Directional":true}]},{"ID":18715,"SourceStructureID":96705,"TargetStructureID":96708,"Label":"96705-96708 via Conventional from 96707 -> 96710","Type":"Conventional","Directional":true,"Links":[{"SourceID":96707,"TargetID":96710,"Directional":true}]},{"ID":18716,"SourceStructureID":96736,"TargetStructureID":5499,"Label":"96736-5499 via Conventional from 96737 -> 96726","Type":"Conventional","Directional":true,"Links":[{"SourceID":96737,"TargetID":96726,"Directional":true}]},{"ID":18717,"SourceStructureID":96768,"TargetStructureID":5561,"Label":"96768-5561 via Conventional from 96770 -> 96771","Type":"Conventional","Directional":true,"Links":[{"SourceID":96770,"TargetID":96771,"Directional":true}]},{"ID":18718,"SourceStructureID":96779,"TargetStructureID":5561,"Label":"96779-5561 via Conventional from 96780 -> 29892","Type":"Conventional","Directional":true,"Links":[{"SourceID":96780,"TargetID":29892,"Directional":true}]},{"ID":18719,"SourceStructureID":96786,"TargetStructureID":5561,"Label":"96786-5561 via Conventional from 96787 -> 46156","Type":"Conventional","Directional":true,"Links":[{"SourceID":96787,"TargetID":46156,"Directional":true}]},{"ID":18720,"SourceStructureID":96788,"TargetStructureID":10872,"Label":"96788-10872 via Conventional from 96819 -> 15029, 96821 -> 15026, 96824 -> 96825","Type":"Conventional","Directional":true,"Links":[{"SourceID":96819,"TargetID":15029,"Directional":true},{"SourceID":96821,"TargetID":15026,"Directional":true},{"SourceID":96824,"TargetID":96825,"Directional":true}]},{"ID":18721,"SourceStructureID":96788,"TargetStructureID":11248,"Label":"96788-11248 via Conventional from 96859 -> 96860, 96861 -> 96862, 96863 -> 96864, 96865 -> 96867","Type":"Conventional","Directional":true,"Links":[{"SourceID":96859,"TargetID":96860,"Directional":true},{"SourceID":96861,"TargetID":96862,"Directional":true},{"SourceID":96863,"TargetID":96864,"Directional":true},{"SourceID":96865,"TargetID":96867,"Directional":true}]},{"ID":18722,"SourceStructureID":96799,"TargetStructureID":5561,"Label":"96799-5561 via Conventional from 96800 -> 46262","Type":"Conventional","Directional":true,"Links":[{"SourceID":96800,"TargetID":46262,"Directional":true}]},{"ID":18723,"SourceStructureID":96801,"TargetStructureID":5561,"Label":"96801-5561 via Conventional from 96802 -> 46265","Type":"Conventional","Directional":true,"Links":[{"SourceID":96802,"TargetID":46265,"Directional":true}]},{"ID":18724,"SourceStructureID":96805,"TargetStructureID":5561,"Label":"96805-5561 via Conventional from 96806 -> 46283","Type":"Conventional","Directional":true,"Links":[{"SourceID":96806,"TargetID":46283,"Directional":true}]},{"ID":18725,"SourceStructureID":96807,"TargetStructureID":5561,"Label":"96807-5561 via Conventional from 96808 -> 29895","Type":"Conventional","Directional":true,"Links":[{"SourceID":96808,"TargetID":29895,"Directional":true}]},{"ID":18726,"SourceStructureID":96810,"TargetStructureID":5561,"Label":"96810-5561 via Conventional from 96811 -> 46291","Type":"Conventional","Directional":true,"Links":[{"SourceID":96811,"TargetID":46291,"Directional":true}]},{"ID":18727,"SourceStructureID":96822,"TargetStructureID":5561,"Label":"96822-5561 via Conventional from 96823 -> 46286","Type":"Conventional","Directional":true,"Links":[{"SourceID":96823,"TargetID":46286,"Directional":true}]},{"ID":18728,"SourceStructureID":96829,"TargetStructureID":5561,"Label":"96829-5561 via Conventional from 96835 -> 46290","Type":"Conventional","Directional":true,"Links":[{"SourceID":96835,"TargetID":46290,"Directional":true}]},{"ID":18729,"SourceStructureID":96848,"TargetStructureID":5528,"Label":"96848-5528 via Conventional from 96849 -> 8286","Type":"Conventional","Directional":true,"Links":[{"SourceID":96849,"TargetID":8286,"Directional":true}]},{"ID":18730,"SourceStructureID":96852,"TargetStructureID":5528,"Label":"96852-5528 via Conventional from 96866 -> 8287","Type":"Conventional","Directional":true,"Links":[{"SourceID":96866,"TargetID":8287,"Directional":true}]},{"ID":18731,"SourceStructureID":96855,"TargetStructureID":5561,"Label":"96855-5561 via Conventional from 96856 -> 46284","Type":"Conventional","Directional":true,"Links":[{"SourceID":96856,"TargetID":46284,"Directional":true}]},{"ID":18732,"SourceStructureID":96869,"TargetStructureID":5528,"Label":"96869-5528 via Conventional from 96871 -> 8288","Type":"Conventional","Directional":true,"Links":[{"SourceID":96871,"TargetID":8288,"Directional":true}]},{"ID":18733,"SourceStructureID":96872,"TargetStructureID":5528,"Label":"96872-5528 via Conventional from 96874 -> 8289","Type":"Conventional","Directional":true,"Links":[{"SourceID":96874,"TargetID":8289,"Directional":true}]},{"ID":18734,"SourceStructureID":96872,"TargetStructureID":7576,"Label":"96872-7576 via Conventional from 107174 -> 55052","Type":"Conventional","Directional":true,"Links":[{"SourceID":107174,"TargetID":55052,"Directional":true}]},{"ID":18735,"SourceStructureID":96875,"TargetStructureID":5528,"Label":"96875-5528 via Conventional from 96876 -> 8294","Type":"Conventional","Directional":true,"Links":[{"SourceID":96876,"TargetID":8294,"Directional":true}]},{"ID":18736,"SourceStructureID":96898,"TargetStructureID":5528,"Label":"96898-5528 via Conventional from 96899 -> 96900","Type":"Conventional","Directional":true,"Links":[{"SourceID":96899,"TargetID":96900,"Directional":true}]},{"ID":18737,"SourceStructureID":96919,"TargetStructureID":5565,"Label":"96919-5565 via Conventional from 96920 -> 50279","Type":"Conventional","Directional":true,"Links":[{"SourceID":96920,"TargetID":50279,"Directional":true}]},{"ID":18738,"SourceStructureID":96921,"TargetStructureID":5561,"Label":"96921-5561 via Conventional from 96922 -> 48939","Type":"Conventional","Directional":true,"Links":[{"SourceID":96922,"TargetID":48939,"Directional":true}]},{"ID":18739,"SourceStructureID":96924,"TargetStructureID":5561,"Label":"96924-5561 via Conventional from 96925 -> 96926","Type":"Conventional","Directional":true,"Links":[{"SourceID":96925,"TargetID":96926,"Directional":true}]},{"ID":18740,"SourceStructureID":96930,"TargetStructureID":5561,"Label":"96930-5561 via Conventional from 96931 -> 29897","Type":"Conventional","Directional":true,"Links":[{"SourceID":96931,"TargetID":29897,"Directional":true}]},{"ID":18741,"SourceStructureID":96932,"TargetStructureID":5561,"Label":"96932-5561 via Conventional from 96933 -> 48934","Type":"Conventional","Directional":true,"Links":[{"SourceID":96933,"TargetID":48934,"Directional":true}]},{"ID":18742,"SourceStructureID":96941,"TargetStructureID":5561,"Label":"96941-5561 via Conventional from 96942 -> 46264","Type":"Conventional","Directional":true,"Links":[{"SourceID":96942,"TargetID":46264,"Directional":true}]},{"ID":18743,"SourceStructureID":96950,"TargetStructureID":5561,"Label":"96950-5561 via Conventional from 96951 -> 46269","Type":"Conventional","Directional":true,"Links":[{"SourceID":96951,"TargetID":46269,"Directional":true}]},{"ID":18744,"SourceStructureID":96955,"TargetStructureID":5561,"Label":"96955-5561 via Conventional from 148165 -> 148164","Type":"Conventional","Directional":true,"Links":[{"SourceID":148165,"TargetID":148164,"Directional":true}]},{"ID":18745,"SourceStructureID":96955,"TargetStructureID":20136,"Label":"96955-20136 via Conventional from 96957 -> 46036","Type":"Conventional","Directional":true,"Links":[{"SourceID":96957,"TargetID":46036,"Directional":true}]},{"ID":18746,"SourceStructureID":96958,"TargetStructureID":5561,"Label":"96958-5561 via Conventional from 96959 -> 46268","Type":"Conventional","Directional":true,"Links":[{"SourceID":96959,"TargetID":46268,"Directional":true}]},{"ID":18747,"SourceStructureID":96960,"TargetStructureID":5561,"Label":"96960-5561 via Conventional from 96961 -> 46267","Type":"Conventional","Directional":true,"Links":[{"SourceID":96961,"TargetID":46267,"Directional":true}]},{"ID":18748,"SourceStructureID":96964,"TargetStructureID":5561,"Label":"96964-5561 via Conventional from 96965 -> 46270","Type":"Conventional","Directional":true,"Links":[{"SourceID":96965,"TargetID":46270,"Directional":true}]},{"ID":18749,"SourceStructureID":96976,"TargetStructureID":5561,"Label":"96976-5561 via Conventional from 96977 -> 46272","Type":"Conventional","Directional":true,"Links":[{"SourceID":96977,"TargetID":46272,"Directional":true}]},{"ID":18750,"SourceStructureID":96980,"TargetStructureID":5561,"Label":"96980-5561 via Conventional from 96982 -> 46274","Type":"Conventional","Directional":true,"Links":[{"SourceID":96982,"TargetID":46274,"Directional":true}]},{"ID":18751,"SourceStructureID":96984,"TargetStructureID":5561,"Label":"96984-5561 via Conventional from 96985 -> 46275","Type":"Conventional","Directional":true,"Links":[{"SourceID":96985,"TargetID":46275,"Directional":true}]},{"ID":18752,"SourceStructureID":96986,"TargetStructureID":5561,"Label":"96986-5561 via Conventional from 96987 -> 46276","Type":"Conventional","Directional":true,"Links":[{"SourceID":96987,"TargetID":46276,"Directional":true}]},{"ID":18753,"SourceStructureID":96995,"TargetStructureID":5561,"Label":"96995-5561 via Conventional from 96996 -> 49479","Type":"Conventional","Directional":true,"Links":[{"SourceID":96996,"TargetID":49479,"Directional":true}]},{"ID":18754,"SourceStructureID":96997,"TargetStructureID":5561,"Label":"96997-5561 via Conventional from 96999 -> 49480","Type":"Conventional","Directional":true,"Links":[{"SourceID":96999,"TargetID":49480,"Directional":true}]},{"ID":18755,"SourceStructureID":97003,"TargetStructureID":5279,"Label":"97003-5279 via Conventional from 97004 -> 25797","Type":"Conventional","Directional":true,"Links":[{"SourceID":97004,"TargetID":25797,"Directional":true}]},{"ID":18756,"SourceStructureID":97005,"TargetStructureID":5561,"Label":"97005-5561 via Conventional from 97008 -> 46278, 97009 -> 46282","Type":"Conventional","Directional":true,"Links":[{"SourceID":97008,"TargetID":46278,"Directional":true},{"SourceID":97009,"TargetID":46282,"Directional":true}]},{"ID":18757,"SourceStructureID":97011,"TargetStructureID":5279,"Label":"97011-5279 via Conventional from 97017 -> 25803","Type":"Conventional","Directional":true,"Links":[{"SourceID":97017,"TargetID":25803,"Directional":true}]},{"ID":18758,"SourceStructureID":97015,"TargetStructureID":5561,"Label":"97015-5561 via Conventional from 97016 -> 46280","Type":"Conventional","Directional":true,"Links":[{"SourceID":97016,"TargetID":46280,"Directional":true}]},{"ID":18759,"SourceStructureID":97020,"TargetStructureID":5561,"Label":"97020-5561 via Conventional from 97021 -> 46281","Type":"Conventional","Directional":true,"Links":[{"SourceID":97021,"TargetID":46281,"Directional":true}]},{"ID":18760,"SourceStructureID":97024,"TargetStructureID":471,"Label":"97024-471 via Conventional from 97095 -> 97097, 97101 -> 97102, 97106 -> 16285, 97112 -> 16286","Type":"Conventional","Directional":true,"Links":[{"SourceID":97095,"TargetID":97097,"Directional":true},{"SourceID":97101,"TargetID":97102,"Directional":true},{"SourceID":97106,"TargetID":16285,"Directional":true},{"SourceID":97112,"TargetID":16286,"Directional":true}]},{"ID":18761,"SourceStructureID":97024,"TargetStructureID":476,"Label":"97024-476 via Conventional from 97077 -> 97075","Type":"Conventional","Directional":true,"Links":[{"SourceID":97077,"TargetID":97075,"Directional":true}]},{"ID":18762,"SourceStructureID":97032,"TargetStructureID":5561,"Label":"97032-5561 via Conventional from 97033 -> 48868","Type":"Conventional","Directional":true,"Links":[{"SourceID":97033,"TargetID":48868,"Directional":true}]},{"ID":18763,"SourceStructureID":97037,"TargetStructureID":5561,"Label":"97037-5561 via Conventional from 97038 -> 49637","Type":"Conventional","Directional":true,"Links":[{"SourceID":97038,"TargetID":49637,"Directional":true}]},{"ID":18764,"SourceStructureID":97037,"TargetStructureID":5562,"Label":"97037-5562 via Conventional from 97040 -> 63746","Type":"Conventional","Directional":true,"Links":[{"SourceID":97040,"TargetID":63746,"Directional":true}]},{"ID":18765,"SourceStructureID":97041,"TargetStructureID":5279,"Label":"97041-5279 via Conventional from 97044 -> 25800","Type":"Conventional","Directional":true,"Links":[{"SourceID":97044,"TargetID":25800,"Directional":true}]},{"ID":18766,"SourceStructureID":97046,"TargetStructureID":5561,"Label":"97046-5561 via Conventional from 97047 -> 46158","Type":"Conventional","Directional":true,"Links":[{"SourceID":97047,"TargetID":46158,"Directional":true}]},{"ID":18767,"SourceStructureID":97048,"TargetStructureID":5279,"Label":"97048-5279 via Conventional from 97049 -> 25799","Type":"Conventional","Directional":true,"Links":[{"SourceID":97049,"TargetID":25799,"Directional":true}]},{"ID":18768,"SourceStructureID":97050,"TargetStructureID":5279,"Label":"97050-5279 via Conventional from 97052 -> 97053","Type":"Conventional","Directional":true,"Links":[{"SourceID":97052,"TargetID":97053,"Directional":true}]},{"ID":18769,"SourceStructureID":97061,"TargetStructureID":5561,"Label":"97061-5561 via Conventional from 97062 -> 46165","Type":"Conventional","Directional":true,"Links":[{"SourceID":97062,"TargetID":46165,"Directional":true}]},{"ID":18770,"SourceStructureID":97068,"TargetStructureID":5561,"Label":"97068-5561 via Conventional from 97080 -> 46197","Type":"Conventional","Directional":true,"Links":[{"SourceID":97080,"TargetID":46197,"Directional":true}]},{"ID":18771,"SourceStructureID":97069,"TargetStructureID":5279,"Label":"97069-5279 via Conventional from 97074 -> 25804, 97076 -> 97078","Type":"Conventional","Directional":true,"Links":[{"SourceID":97074,"TargetID":25804,"Directional":true},{"SourceID":97076,"TargetID":97078,"Directional":true}]},{"ID":18772,"SourceStructureID":97079,"TargetStructureID":5279,"Label":"97079-5279 via Conventional from 97081 -> 6339","Type":"Conventional","Directional":true,"Links":[{"SourceID":97081,"TargetID":6339,"Directional":true}]},{"ID":18773,"SourceStructureID":97086,"TargetStructureID":5279,"Label":"97086-5279 via Conventional from 97088 -> 6338","Type":"Conventional","Directional":true,"Links":[{"SourceID":97088,"TargetID":6338,"Directional":true}]},{"ID":18774,"SourceStructureID":97087,"TargetStructureID":5561,"Label":"97087-5561 via Conventional from 97089 -> 97084","Type":"Conventional","Directional":true,"Links":[{"SourceID":97089,"TargetID":97084,"Directional":true}]},{"ID":18775,"SourceStructureID":97099,"TargetStructureID":5279,"Label":"97099-5279 via Conventional from 97104 -> 25839","Type":"Conventional","Directional":true,"Links":[{"SourceID":97104,"TargetID":25839,"Directional":true}]},{"ID":18776,"SourceStructureID":97105,"TargetStructureID":5279,"Label":"97105-5279 via Conventional from 97109 -> 97108","Type":"Conventional","Directional":true,"Links":[{"SourceID":97109,"TargetID":97108,"Directional":true}]},{"ID":18777,"SourceStructureID":97126,"TargetStructureID":5279,"Label":"97126-5279 via Conventional from 97133 -> 25806","Type":"Conventional","Directional":true,"Links":[{"SourceID":97133,"TargetID":25806,"Directional":true}]},{"ID":18778,"SourceStructureID":97131,"TargetStructureID":5561,"Label":"97131-5561 via Conventional from 97134 -> 97135","Type":"Conventional","Directional":true,"Links":[{"SourceID":97134,"TargetID":97135,"Directional":true}]},{"ID":18779,"SourceStructureID":97139,"TargetStructureID":5279,"Label":"97139-5279 via Conventional from 97140 -> 25808","Type":"Conventional","Directional":true,"Links":[{"SourceID":97140,"TargetID":25808,"Directional":true}]},{"ID":18780,"SourceStructureID":97143,"TargetStructureID":5279,"Label":"97143-5279 via Conventional from 97149 -> 25810","Type":"Conventional","Directional":true,"Links":[{"SourceID":97149,"TargetID":25810,"Directional":true}]},{"ID":18781,"SourceStructureID":97146,"TargetStructureID":5561,"Label":"97146-5561 via Conventional from 97147 -> 46190","Type":"Conventional","Directional":true,"Links":[{"SourceID":97147,"TargetID":46190,"Directional":true}]},{"ID":18782,"SourceStructureID":97148,"TargetStructureID":5561,"Label":"97148-5561 via Conventional from 97150 -> 97151","Type":"Conventional","Directional":true,"Links":[{"SourceID":97150,"TargetID":97151,"Directional":true}]},{"ID":18783,"SourceStructureID":97155,"TargetStructureID":5561,"Label":"97155-5561 via Conventional from 97157 -> 46191","Type":"Conventional","Directional":true,"Links":[{"SourceID":97157,"TargetID":46191,"Directional":true}]},{"ID":18784,"SourceStructureID":97161,"TargetStructureID":5561,"Label":"97161-5561 via Conventional from 97164 -> 46175","Type":"Conventional","Directional":true,"Links":[{"SourceID":97164,"TargetID":46175,"Directional":true}]},{"ID":18785,"SourceStructureID":97175,"TargetStructureID":5279,"Label":"97175-5279 via Conventional from 97183 -> 49252","Type":"Conventional","Directional":true,"Links":[{"SourceID":97183,"TargetID":49252,"Directional":true}]},{"ID":18786,"SourceStructureID":97188,"TargetStructureID":5561,"Label":"97188-5561 via Conventional from 97189 -> 46171","Type":"Conventional","Directional":true,"Links":[{"SourceID":97189,"TargetID":46171,"Directional":true}]},{"ID":18787,"SourceStructureID":97194,"TargetStructureID":5561,"Label":"97194-5561 via Conventional from 97195 -> 46179","Type":"Conventional","Directional":true,"Links":[{"SourceID":97195,"TargetID":46179,"Directional":true}]},{"ID":18788,"SourceStructureID":97198,"TargetStructureID":5561,"Label":"97198-5561 via Conventional from 97199 -> 55345","Type":"Conventional","Directional":true,"Links":[{"SourceID":97199,"TargetID":55345,"Directional":true}]},{"ID":18789,"SourceStructureID":97209,"TargetStructureID":5561,"Label":"97209-5561 via Conventional from 97210 -> 97208","Type":"Conventional","Directional":true,"Links":[{"SourceID":97210,"TargetID":97208,"Directional":true}]},{"ID":18790,"SourceStructureID":97212,"TargetStructureID":5561,"Label":"97212-5561 via Conventional from 97213 -> 97211","Type":"Conventional","Directional":true,"Links":[{"SourceID":97213,"TargetID":97211,"Directional":true}]},{"ID":18791,"SourceStructureID":97221,"TargetStructureID":5561,"Label":"97221-5561 via Conventional from 97222 -> 46182","Type":"Conventional","Directional":true,"Links":[{"SourceID":97222,"TargetID":46182,"Directional":true}]},{"ID":18792,"SourceStructureID":97227,"TargetStructureID":5561,"Label":"97227-5561 via Conventional from 97230 -> 46183","Type":"Conventional","Directional":true,"Links":[{"SourceID":97230,"TargetID":46183,"Directional":true}]},{"ID":18793,"SourceStructureID":97228,"TargetStructureID":5279,"Label":"97228-5279 via Conventional from 97264 -> 6344","Type":"Conventional","Directional":true,"Links":[{"SourceID":97264,"TargetID":6344,"Directional":true}]},{"ID":18794,"SourceStructureID":97232,"TargetStructureID":5561,"Label":"97232-5561 via Conventional from 97259 -> 46184","Type":"Conventional","Directional":true,"Links":[{"SourceID":97259,"TargetID":46184,"Directional":true}]},{"ID":18795,"SourceStructureID":97233,"TargetStructureID":5279,"Label":"97233-5279 via Conventional from 97239 -> 6349","Type":"Conventional","Directional":true,"Links":[{"SourceID":97239,"TargetID":6349,"Directional":true}]},{"ID":18796,"SourceStructureID":97234,"TargetStructureID":5528,"Label":"97234-5528 via Conventional from 97235 -> 97238","Type":"Conventional","Directional":true,"Links":[{"SourceID":97235,"TargetID":97238,"Directional":true}]},{"ID":18797,"SourceStructureID":97240,"TargetStructureID":5279,"Label":"97240-5279 via Conventional from 97250 -> 6350","Type":"Conventional","Directional":true,"Links":[{"SourceID":97250,"TargetID":6350,"Directional":true}]},{"ID":18798,"SourceStructureID":97253,"TargetStructureID":5279,"Label":"97253-5279 via Conventional from 97256 -> 6348","Type":"Conventional","Directional":true,"Links":[{"SourceID":97256,"TargetID":6348,"Directional":true}]},{"ID":18799,"SourceStructureID":97265,"TargetStructureID":5528,"Label":"97265-5528 via Conventional from 97267 -> 97268","Type":"Conventional","Directional":true,"Links":[{"SourceID":97267,"TargetID":97268,"Directional":true}]},{"ID":18800,"SourceStructureID":97275,"TargetStructureID":5561,"Label":"97275-5561 via Conventional from 97276 -> 46161","Type":"Conventional","Directional":true,"Links":[{"SourceID":97276,"TargetID":46161,"Directional":true}]},{"ID":18801,"SourceStructureID":97278,"TargetStructureID":5561,"Label":"97278-5561 via Conventional from 97279 -> 46160","Type":"Conventional","Directional":true,"Links":[{"SourceID":97279,"TargetID":46160,"Directional":true}]},{"ID":18802,"SourceStructureID":97293,"TargetStructureID":5528,"Label":"97293-5528 via Conventional from 97306 -> 97307","Type":"Conventional","Directional":true,"Links":[{"SourceID":97306,"TargetID":97307,"Directional":true}]},{"ID":18803,"SourceStructureID":97295,"TargetStructureID":5561,"Label":"97295-5561 via Conventional from 97304 -> 49640","Type":"Conventional","Directional":true,"Links":[{"SourceID":97304,"TargetID":49640,"Directional":true}]},{"ID":18804,"SourceStructureID":97295,"TargetStructureID":97381,"Label":"97295-97381 via Conventional from 97380 -> 97382","Type":"Conventional","Directional":true,"Links":[{"SourceID":97380,"TargetID":97382,"Directional":true}]},{"ID":18805,"SourceStructureID":97299,"TargetStructureID":5279,"Label":"97299-5279 via Conventional from 97300 -> 6352, 97321 -> 6352","Type":"Conventional","Directional":true,"Links":[{"SourceID":97300,"TargetID":6352,"Directional":true},{"SourceID":97321,"TargetID":6352,"Directional":true}]},{"ID":18806,"SourceStructureID":97318,"TargetStructureID":5279,"Label":"97318-5279 via Conventional from 97326 -> 25814","Type":"Conventional","Directional":true,"Links":[{"SourceID":97326,"TargetID":25814,"Directional":true}]},{"ID":18807,"SourceStructureID":97322,"TargetStructureID":5279,"Label":"97322-5279 via Conventional from 97323 -> 25815","Type":"Conventional","Directional":true,"Links":[{"SourceID":97323,"TargetID":25815,"Directional":true}]},{"ID":18808,"SourceStructureID":97324,"TargetStructureID":5561,"Label":"97324-5561 via Conventional from 97325 -> 46201","Type":"Conventional","Directional":true,"Links":[{"SourceID":97325,"TargetID":46201,"Directional":true}]},{"ID":18809,"SourceStructureID":97343,"TargetStructureID":5561,"Label":"97343-5561 via Conventional from 97344 -> 46125","Type":"Conventional","Directional":true,"Links":[{"SourceID":97344,"TargetID":46125,"Directional":true}]},{"ID":18810,"SourceStructureID":97346,"TargetStructureID":5279,"Label":"97346-5279 via Conventional from 97349 -> 49264","Type":"Conventional","Directional":true,"Links":[{"SourceID":97349,"TargetID":49264,"Directional":true}]},{"ID":18811,"SourceStructureID":97352,"TargetStructureID":59362,"Label":"97352-59362 via Conventional from 122453 -> 122454","Type":"Conventional","Directional":true,"Links":[{"SourceID":122453,"TargetID":122454,"Directional":true}]},{"ID":18812,"SourceStructureID":97361,"TargetStructureID":5279,"Label":"97361-5279 via Conventional from 97362 -> 49256","Type":"Conventional","Directional":true,"Links":[{"SourceID":97362,"TargetID":49256,"Directional":true}]},{"ID":18813,"SourceStructureID":97370,"TargetStructureID":5279,"Label":"97370-5279 via Conventional from 97371 -> 49259","Type":"Conventional","Directional":true,"Links":[{"SourceID":97371,"TargetID":49259,"Directional":true}]},{"ID":18814,"SourceStructureID":97372,"TargetStructureID":5279,"Label":"97372-5279 via Conventional from 97373 -> 49260","Type":"Conventional","Directional":true,"Links":[{"SourceID":97373,"TargetID":49260,"Directional":true}]},{"ID":18815,"SourceStructureID":97386,"TargetStructureID":5279,"Label":"97386-5279 via Conventional from 97387 -> 97572","Type":"Conventional","Directional":true,"Links":[{"SourceID":97387,"TargetID":97572,"Directional":true}]},{"ID":18816,"SourceStructureID":97401,"TargetStructureID":5561,"Label":"97401-5561 via Conventional from 97403 -> 48871","Type":"Conventional","Directional":true,"Links":[{"SourceID":97403,"TargetID":48871,"Directional":true}]},{"ID":18817,"SourceStructureID":97401,"TargetStructureID":5565,"Label":"97401-5565 via Conventional from 97404 -> 53983","Type":"Conventional","Directional":true,"Links":[{"SourceID":97404,"TargetID":53983,"Directional":true}]},{"ID":18818,"SourceStructureID":97407,"TargetStructureID":5561,"Label":"97407-5561 via Conventional from 97408 -> 46203","Type":"Conventional","Directional":true,"Links":[{"SourceID":97408,"TargetID":46203,"Directional":true}]},{"ID":18819,"SourceStructureID":97417,"TargetStructureID":5561,"Label":"97417-5561 via Conventional from 97418 -> 46202","Type":"Conventional","Directional":true,"Links":[{"SourceID":97418,"TargetID":46202,"Directional":true}]},{"ID":18820,"SourceStructureID":97420,"TargetStructureID":5561,"Label":"97420-5561 via Conventional from 97422 -> 97423","Type":"Conventional","Directional":true,"Links":[{"SourceID":97422,"TargetID":97423,"Directional":true}]},{"ID":18821,"SourceStructureID":97420,"TargetStructureID":5565,"Label":"97420-5565 via Conventional from 97421 -> 53979","Type":"Conventional","Directional":true,"Links":[{"SourceID":97421,"TargetID":53979,"Directional":true}]},{"ID":18822,"SourceStructureID":97439,"TargetStructureID":5561,"Label":"97439-5561 via Conventional from 97440 -> 46206","Type":"Conventional","Directional":true,"Links":[{"SourceID":97440,"TargetID":46206,"Directional":true}]},{"ID":18823,"SourceStructureID":97448,"TargetStructureID":5561,"Label":"97448-5561 via Conventional from 97449 -> 46210","Type":"Conventional","Directional":true,"Links":[{"SourceID":97449,"TargetID":46210,"Directional":true}]},{"ID":18824,"SourceStructureID":97461,"TargetStructureID":5561,"Label":"97461-5561 via Conventional from 97462 -> 46209","Type":"Conventional","Directional":true,"Links":[{"SourceID":97462,"TargetID":46209,"Directional":true}]},{"ID":18825,"SourceStructureID":97464,"TargetStructureID":5561,"Label":"97464-5561 via Conventional from 97465 -> 46215","Type":"Conventional","Directional":true,"Links":[{"SourceID":97465,"TargetID":46215,"Directional":true}]},{"ID":18826,"SourceStructureID":97466,"TargetStructureID":5561,"Label":"97466-5561 via Conventional from 97468 -> 46216","Type":"Conventional","Directional":true,"Links":[{"SourceID":97468,"TargetID":46216,"Directional":true}]},{"ID":18827,"SourceStructureID":97475,"TargetStructureID":5561,"Label":"97475-5561 via Conventional from 97476 -> 148255, 97478 -> 97474","Type":"Conventional","Directional":true,"Links":[{"SourceID":97476,"TargetID":148255,"Directional":true},{"SourceID":97478,"TargetID":97474,"Directional":true}]},{"ID":18828,"SourceStructureID":97479,"TargetStructureID":5561,"Label":"97479-5561 via Conventional from 97480 -> 97473","Type":"Conventional","Directional":true,"Links":[{"SourceID":97480,"TargetID":97473,"Directional":true}]},{"ID":18829,"SourceStructureID":97479,"TargetStructureID":97475,"Label":"97479-97475 via Conventional from 97481 -> 97477","Type":"Conventional","Directional":true,"Links":[{"SourceID":97481,"TargetID":97477,"Directional":true}]},{"ID":18830,"SourceStructureID":97482,"TargetStructureID":5561,"Label":"97482-5561 via Conventional from 97483 -> 97471","Type":"Conventional","Directional":true,"Links":[{"SourceID":97483,"TargetID":97471,"Directional":true}]},{"ID":18831,"SourceStructureID":97484,"TargetStructureID":5279,"Label":"97484-5279 via Conventional from 97491 -> 97490","Type":"Conventional","Directional":true,"Links":[{"SourceID":97491,"TargetID":97490,"Directional":true}]},{"ID":18832,"SourceStructureID":97485,"TargetStructureID":5561,"Label":"97485-5561 via Conventional from 99342 -> 148253","Type":"Conventional","Directional":true,"Links":[{"SourceID":99342,"TargetID":148253,"Directional":true}]},{"ID":18833,"SourceStructureID":97492,"TargetStructureID":5561,"Label":"97492-5561 via Conventional from 97493 -> 97470","Type":"Conventional","Directional":true,"Links":[{"SourceID":97493,"TargetID":97470,"Directional":true}]},{"ID":18834,"SourceStructureID":97494,"TargetStructureID":5279,"Label":"97494-5279 via Conventional from 97511 -> 27446","Type":"Conventional","Directional":true,"Links":[{"SourceID":97511,"TargetID":27446,"Directional":true}]},{"ID":18835,"SourceStructureID":97498,"TargetStructureID":5561,"Label":"97498-5561 via Conventional from 97499 -> 46240","Type":"Conventional","Directional":true,"Links":[{"SourceID":97499,"TargetID":46240,"Directional":true}]},{"ID":18836,"SourceStructureID":97500,"TargetStructureID":97503,"Label":"97500-97503 via Conventional from 97501 -> 97504","Type":"Conventional","Directional":true,"Links":[{"SourceID":97501,"TargetID":97504,"Directional":true}]},{"ID":18837,"SourceStructureID":97507,"TargetStructureID":5561,"Label":"97507-5561 via Conventional from 97508 -> 46227","Type":"Conventional","Directional":true,"Links":[{"SourceID":97508,"TargetID":46227,"Directional":true}]},{"ID":18838,"SourceStructureID":97509,"TargetStructureID":5561,"Label":"97509-5561 via Conventional from 97510 -> 46229","Type":"Conventional","Directional":true,"Links":[{"SourceID":97510,"TargetID":46229,"Directional":true}]},{"ID":18839,"SourceStructureID":97522,"TargetStructureID":5279,"Label":"97522-5279 via Conventional from 97526 -> 97525","Type":"Conventional","Directional":true,"Links":[{"SourceID":97526,"TargetID":97525,"Directional":true}]},{"ID":18840,"SourceStructureID":97528,"TargetStructureID":5279,"Label":"97528-5279 via Conventional from 97529 -> 97530","Type":"Conventional","Directional":true,"Links":[{"SourceID":97529,"TargetID":97530,"Directional":true}]},{"ID":18841,"SourceStructureID":97532,"TargetStructureID":5279,"Label":"97532-5279 via Conventional from 97534 -> 97535","Type":"Conventional","Directional":true,"Links":[{"SourceID":97534,"TargetID":97535,"Directional":true}]},{"ID":18842,"SourceStructureID":97536,"TargetStructureID":5561,"Label":"97536-5561 via Conventional from 97539 -> 46245","Type":"Conventional","Directional":true,"Links":[{"SourceID":97539,"TargetID":46245,"Directional":true}]},{"ID":18843,"SourceStructureID":97543,"TargetStructureID":5561,"Label":"97543-5561 via Conventional from 97544 -> 46247","Type":"Conventional","Directional":true,"Links":[{"SourceID":97544,"TargetID":46247,"Directional":true}]},{"ID":18844,"SourceStructureID":97546,"TargetStructureID":5561,"Label":"97546-5561 via Conventional from 97547 -> 46248","Type":"Conventional","Directional":true,"Links":[{"SourceID":97547,"TargetID":46248,"Directional":true}]},{"ID":18845,"SourceStructureID":97554,"TargetStructureID":5561,"Label":"97554-5561 via Conventional from 97555 -> 46242","Type":"Conventional","Directional":true,"Links":[{"SourceID":97555,"TargetID":46242,"Directional":true}]},{"ID":18846,"SourceStructureID":97558,"TargetStructureID":5561,"Label":"97558-5561 via Conventional from 97565 -> 46250, 97567 -> 46254","Type":"Conventional","Directional":true,"Links":[{"SourceID":97565,"TargetID":46250,"Directional":true},{"SourceID":97567,"TargetID":46254,"Directional":true}]},{"ID":18847,"SourceStructureID":97568,"TargetStructureID":5499,"Label":"97568-5499 via Conventional from 106547 -> 49666","Type":"Conventional","Directional":true,"Links":[{"SourceID":106547,"TargetID":49666,"Directional":true}]},{"ID":18848,"SourceStructureID":97568,"TargetStructureID":5561,"Label":"97568-5561 via Conventional from 97569 -> 97570","Type":"Conventional","Directional":true,"Links":[{"SourceID":97569,"TargetID":97570,"Directional":true}]},{"ID":18849,"SourceStructureID":97568,"TargetStructureID":7024,"Label":"97568-7024 via Conventional from 106606 -> 106607","Type":"Conventional","Directional":true,"Links":[{"SourceID":106606,"TargetID":106607,"Directional":true}]},{"ID":18850,"SourceStructureID":97573,"TargetStructureID":97568,"Label":"97573-97568 via Conventional from 97574 -> 97571","Type":"Conventional","Directional":true,"Links":[{"SourceID":97574,"TargetID":97571,"Directional":true}]},{"ID":18851,"SourceStructureID":97575,"TargetStructureID":5561,"Label":"97575-5561 via Conventional from 97576 -> 46255","Type":"Conventional","Directional":true,"Links":[{"SourceID":97576,"TargetID":46255,"Directional":true}]},{"ID":18852,"SourceStructureID":97578,"TargetStructureID":5561,"Label":"97578-5561 via Conventional from 97581 -> 46256","Type":"Conventional","Directional":true,"Links":[{"SourceID":97581,"TargetID":46256,"Directional":true}]},{"ID":18853,"SourceStructureID":97582,"TargetStructureID":5561,"Label":"97582-5561 via Conventional from 97583 -> 46252","Type":"Conventional","Directional":true,"Links":[{"SourceID":97583,"TargetID":46252,"Directional":true}]},{"ID":18854,"SourceStructureID":97597,"TargetStructureID":5279,"Label":"97597-5279 via Conventional from 97598 -> 97599","Type":"Conventional","Directional":true,"Links":[{"SourceID":97598,"TargetID":97599,"Directional":true}]},{"ID":18855,"SourceStructureID":97605,"TargetStructureID":5279,"Label":"97605-5279 via Conventional from 97606 -> 97607","Type":"Conventional","Directional":true,"Links":[{"SourceID":97606,"TargetID":97607,"Directional":true}]},{"ID":18856,"SourceStructureID":97615,"TargetStructureID":5279,"Label":"97615-5279 via Conventional from 97616 -> 97617","Type":"Conventional","Directional":true,"Links":[{"SourceID":97616,"TargetID":97617,"Directional":true}]},{"ID":18857,"SourceStructureID":97620,"TargetStructureID":5279,"Label":"97620-5279 via Conventional from 97621 -> 97622","Type":"Conventional","Directional":true,"Links":[{"SourceID":97621,"TargetID":97622,"Directional":true}]},{"ID":18858,"SourceStructureID":97627,"TargetStructureID":5279,"Label":"97627-5279 via BC Conventional Synapse from 97628 -> 97629","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97628,"TargetID":97629,"Directional":true}]},{"ID":18859,"SourceStructureID":97638,"TargetStructureID":5279,"Label":"97638-5279 via Conventional from 97643 -> 49202","Type":"Conventional","Directional":true,"Links":[{"SourceID":97643,"TargetID":49202,"Directional":true}]},{"ID":18860,"SourceStructureID":97646,"TargetStructureID":5279,"Label":"97646-5279 via Conventional from 97647 -> 49219","Type":"Conventional","Directional":true,"Links":[{"SourceID":97647,"TargetID":49219,"Directional":true}]},{"ID":18861,"SourceStructureID":97671,"TargetStructureID":5561,"Label":"97671-5561 via Conventional from 97672 -> 46044","Type":"Conventional","Directional":true,"Links":[{"SourceID":97672,"TargetID":46044,"Directional":true}]},{"ID":18862,"SourceStructureID":97676,"TargetStructureID":909,"Label":"97676-909 via Conventional from 130893 -> 45895","Type":"Conventional","Directional":true,"Links":[{"SourceID":130893,"TargetID":45895,"Directional":true}]},{"ID":18863,"SourceStructureID":97676,"TargetStructureID":5561,"Label":"97676-5561 via Conventional from 97677 -> 46045","Type":"Conventional","Directional":true,"Links":[{"SourceID":97677,"TargetID":46045,"Directional":true}]},{"ID":18864,"SourceStructureID":97680,"TargetStructureID":5561,"Label":"97680-5561 via Conventional from 97681 -> 46305","Type":"Conventional","Directional":true,"Links":[{"SourceID":97681,"TargetID":46305,"Directional":true}]},{"ID":18865,"SourceStructureID":97684,"TargetStructureID":5561,"Label":"97684-5561 via Conventional from 97685 -> 48982","Type":"Conventional","Directional":true,"Links":[{"SourceID":97685,"TargetID":48982,"Directional":true}]},{"ID":18866,"SourceStructureID":97691,"TargetStructureID":5561,"Label":"97691-5561 via Conventional from 97692 -> 46300","Type":"Conventional","Directional":true,"Links":[{"SourceID":97692,"TargetID":46300,"Directional":true}]},{"ID":18867,"SourceStructureID":97691,"TargetStructureID":20136,"Label":"97691-20136 via Conventional from 97693 -> 97694","Type":"Conventional","Directional":true,"Links":[{"SourceID":97693,"TargetID":97694,"Directional":true}]},{"ID":18868,"SourceStructureID":97722,"TargetStructureID":5561,"Label":"97722-5561 via Conventional from 97723 -> 97718","Type":"Conventional","Directional":true,"Links":[{"SourceID":97723,"TargetID":97718,"Directional":true}]},{"ID":18869,"SourceStructureID":97727,"TargetStructureID":5561,"Label":"97727-5561 via Conventional from 97728 -> 97721","Type":"Conventional","Directional":true,"Links":[{"SourceID":97728,"TargetID":97721,"Directional":true}]},{"ID":18870,"SourceStructureID":97730,"TargetStructureID":5561,"Label":"97730-5561 via Conventional from 97733 -> 97719","Type":"Conventional","Directional":true,"Links":[{"SourceID":97733,"TargetID":97719,"Directional":true}]},{"ID":18871,"SourceStructureID":97730,"TargetStructureID":61450,"Label":"97730-61450 via Conventional from 97739 -> 61491","Type":"Conventional","Directional":true,"Links":[{"SourceID":97739,"TargetID":61491,"Directional":true}]},{"ID":18872,"SourceStructureID":97743,"TargetStructureID":5561,"Label":"97743-5561 via Conventional from 97744 -> 97742","Type":"Conventional","Directional":true,"Links":[{"SourceID":97744,"TargetID":97742,"Directional":true}]},{"ID":18873,"SourceStructureID":97750,"TargetStructureID":5561,"Label":"97750-5561 via Conventional from 97751 -> 46297","Type":"Conventional","Directional":true,"Links":[{"SourceID":97751,"TargetID":46297,"Directional":true}]},{"ID":18874,"SourceStructureID":97764,"TargetStructureID":5561,"Label":"97764-5561 via Conventional from 97766 -> 97763","Type":"Conventional","Directional":true,"Links":[{"SourceID":97766,"TargetID":97763,"Directional":true}]},{"ID":18875,"SourceStructureID":97774,"TargetStructureID":4569,"Label":"97774-4569 via Conventional from 97775 -> 4746","Type":"Conventional","Directional":true,"Links":[{"SourceID":97775,"TargetID":4746,"Directional":true}]},{"ID":18876,"SourceStructureID":97780,"TargetStructureID":4569,"Label":"97780-4569 via Conventional from 97781 -> 14966","Type":"Conventional","Directional":true,"Links":[{"SourceID":97781,"TargetID":14966,"Directional":true}]},{"ID":18877,"SourceStructureID":97786,"TargetStructureID":4569,"Label":"97786-4569 via Conventional from 97787 -> 4740","Type":"Conventional","Directional":true,"Links":[{"SourceID":97787,"TargetID":4740,"Directional":true}]},{"ID":18878,"SourceStructureID":97790,"TargetStructureID":4569,"Label":"97790-4569 via Conventional from 97791 -> 4743","Type":"Conventional","Directional":true,"Links":[{"SourceID":97791,"TargetID":4743,"Directional":true}]},{"ID":18879,"SourceStructureID":97792,"TargetStructureID":4569,"Label":"97792-4569 via Conventional from 97793 -> 52452","Type":"Conventional","Directional":true,"Links":[{"SourceID":97793,"TargetID":52452,"Directional":true}]},{"ID":18880,"SourceStructureID":97797,"TargetStructureID":4569,"Label":"97797-4569 via Conventional from 97799 -> 52457","Type":"Conventional","Directional":true,"Links":[{"SourceID":97799,"TargetID":52457,"Directional":true}]},{"ID":18881,"SourceStructureID":97803,"TargetStructureID":4569,"Label":"97803-4569 via Conventional from 97804 -> 52463","Type":"Conventional","Directional":true,"Links":[{"SourceID":97804,"TargetID":52463,"Directional":true}]},{"ID":18882,"SourceStructureID":97814,"TargetStructureID":4569,"Label":"97814-4569 via Conventional from 97815 -> 52466","Type":"Conventional","Directional":true,"Links":[{"SourceID":97815,"TargetID":52466,"Directional":true}]},{"ID":18883,"SourceStructureID":97853,"TargetStructureID":5278,"Label":"97853-5278 via Conventional from 97857 -> 20023","Type":"Conventional","Directional":true,"Links":[{"SourceID":97857,"TargetID":20023,"Directional":true}]},{"ID":18884,"SourceStructureID":97858,"TargetStructureID":4569,"Label":"97858-4569 via Conventional from 97859 -> 97860, 97863 -> 4739","Type":"Conventional","Directional":true,"Links":[{"SourceID":97859,"TargetID":97860,"Directional":true},{"SourceID":97863,"TargetID":4739,"Directional":true}]},{"ID":18885,"SourceStructureID":97913,"TargetStructureID":5278,"Label":"97913-5278 via Conventional from 97919 -> 20016","Type":"Conventional","Directional":true,"Links":[{"SourceID":97919,"TargetID":20016,"Directional":true}]},{"ID":18886,"SourceStructureID":97928,"TargetStructureID":5278,"Label":"97928-5278 via Conventional from 97929 -> 11220","Type":"Conventional","Directional":true,"Links":[{"SourceID":97929,"TargetID":11220,"Directional":true}]},{"ID":18887,"SourceStructureID":97933,"TargetStructureID":5278,"Label":"97933-5278 via Conventional from 97943 -> 11219","Type":"Conventional","Directional":true,"Links":[{"SourceID":97943,"TargetID":11219,"Directional":true}]},{"ID":18888,"SourceStructureID":97938,"TargetStructureID":5278,"Label":"97938-5278 via Conventional from 97939 -> 97940","Type":"Conventional","Directional":true,"Links":[{"SourceID":97939,"TargetID":97940,"Directional":true}]},{"ID":18889,"SourceStructureID":97951,"TargetStructureID":5278,"Label":"97951-5278 via Conventional from 97954 -> 97955","Type":"Conventional","Directional":true,"Links":[{"SourceID":97954,"TargetID":97955,"Directional":true}]},{"ID":18890,"SourceStructureID":97956,"TargetStructureID":5278,"Label":"97956-5278 via Conventional from 98809 -> 11228","Type":"Conventional","Directional":true,"Links":[{"SourceID":98809,"TargetID":11228,"Directional":true}]},{"ID":18891,"SourceStructureID":98016,"TargetStructureID":5279,"Label":"98016-5279 via Conventional from 98018 -> 25820","Type":"Conventional","Directional":true,"Links":[{"SourceID":98018,"TargetID":25820,"Directional":true}]},{"ID":18892,"SourceStructureID":98035,"TargetStructureID":5279,"Label":"98035-5279 via Conventional from 98036 -> 25824","Type":"Conventional","Directional":true,"Links":[{"SourceID":98036,"TargetID":25824,"Directional":true}]},{"ID":18893,"SourceStructureID":98064,"TargetStructureID":5279,"Label":"98064-5279 via Conventional from 98067 -> 25827","Type":"Conventional","Directional":true,"Links":[{"SourceID":98067,"TargetID":25827,"Directional":true}]},{"ID":18894,"SourceStructureID":98068,"TargetStructureID":5279,"Label":"98068-5279 via Conventional from 98070 -> 11480","Type":"Conventional","Directional":true,"Links":[{"SourceID":98070,"TargetID":11480,"Directional":true}]},{"ID":18895,"SourceStructureID":98100,"TargetStructureID":5279,"Label":"98100-5279 via Conventional from 98104 -> 11478","Type":"Conventional","Directional":true,"Links":[{"SourceID":98104,"TargetID":11478,"Directional":true}]},{"ID":18896,"SourceStructureID":98122,"TargetStructureID":5279,"Label":"98122-5279 via Conventional from 98504 -> 11477","Type":"Conventional","Directional":true,"Links":[{"SourceID":98504,"TargetID":11477,"Directional":true}]},{"ID":18897,"SourceStructureID":98127,"TargetStructureID":10957,"Label":"98127-10957 via Conventional from 98885 -> 98886, 98887 -> 98888, 98889 -> 98890","Type":"Conventional","Directional":true,"Links":[{"SourceID":98885,"TargetID":98886,"Directional":true},{"SourceID":98887,"TargetID":98888,"Directional":true},{"SourceID":98889,"TargetID":98890,"Directional":true}]},{"ID":18898,"SourceStructureID":98147,"TargetStructureID":4569,"Label":"98147-4569 via Conventional from 98149 -> 23790","Type":"Conventional","Directional":true,"Links":[{"SourceID":98149,"TargetID":23790,"Directional":true}]},{"ID":18899,"SourceStructureID":98151,"TargetStructureID":4569,"Label":"98151-4569 via Conventional from 98152 -> 23789","Type":"Conventional","Directional":true,"Links":[{"SourceID":98152,"TargetID":23789,"Directional":true}]},{"ID":18900,"SourceStructureID":98163,"TargetStructureID":1620,"Label":"98163-1620 via Conventional from 98166 -> 16848","Type":"Conventional","Directional":true,"Links":[{"SourceID":98166,"TargetID":16848,"Directional":true}]},{"ID":18901,"SourceStructureID":98171,"TargetStructureID":4569,"Label":"98171-4569 via Conventional from 98172 -> 23785","Type":"Conventional","Directional":true,"Links":[{"SourceID":98172,"TargetID":23785,"Directional":true}]},{"ID":18902,"SourceStructureID":98180,"TargetStructureID":4569,"Label":"98180-4569 via Conventional from 98181 -> 47441","Type":"Conventional","Directional":true,"Links":[{"SourceID":98181,"TargetID":47441,"Directional":true}]},{"ID":18903,"SourceStructureID":98186,"TargetStructureID":4569,"Label":"98186-4569 via Conventional from 98187 -> 23799","Type":"Conventional","Directional":true,"Links":[{"SourceID":98187,"TargetID":23799,"Directional":true}]},{"ID":18904,"SourceStructureID":98188,"TargetStructureID":4569,"Label":"98188-4569 via Conventional from 98189 -> 47487","Type":"Conventional","Directional":true,"Links":[{"SourceID":98189,"TargetID":47487,"Directional":true}]},{"ID":18905,"SourceStructureID":98190,"TargetStructureID":4569,"Label":"98190-4569 via Conventional from 98191 -> 23800","Type":"Conventional","Directional":true,"Links":[{"SourceID":98191,"TargetID":23800,"Directional":true}]},{"ID":18906,"SourceStructureID":98193,"TargetStructureID":4569,"Label":"98193-4569 via Conventional from 98194 -> 23803","Type":"Conventional","Directional":true,"Links":[{"SourceID":98194,"TargetID":23803,"Directional":true}]},{"ID":18907,"SourceStructureID":98203,"TargetStructureID":4569,"Label":"98203-4569 via Conventional from 98204 -> 23801","Type":"Conventional","Directional":true,"Links":[{"SourceID":98204,"TargetID":23801,"Directional":true}]},{"ID":18908,"SourceStructureID":98216,"TargetStructureID":4569,"Label":"98216-4569 via Conventional from 98218 -> 23806","Type":"Conventional","Directional":true,"Links":[{"SourceID":98218,"TargetID":23806,"Directional":true}]},{"ID":18909,"SourceStructureID":98235,"TargetStructureID":4569,"Label":"98235-4569 via Conventional from 98236 -> 23791","Type":"Conventional","Directional":true,"Links":[{"SourceID":98236,"TargetID":23791,"Directional":true}]},{"ID":18910,"SourceStructureID":98238,"TargetStructureID":4569,"Label":"98238-4569 via Conventional from 98239 -> 98237","Type":"Conventional","Directional":true,"Links":[{"SourceID":98239,"TargetID":98237,"Directional":true}]},{"ID":18911,"SourceStructureID":98251,"TargetStructureID":4569,"Label":"98251-4569 via Conventional from 98252 -> 23793","Type":"Conventional","Directional":true,"Links":[{"SourceID":98252,"TargetID":23793,"Directional":true}]},{"ID":18912,"SourceStructureID":98258,"TargetStructureID":4569,"Label":"98258-4569 via Conventional from 98260 -> 47415","Type":"Conventional","Directional":true,"Links":[{"SourceID":98260,"TargetID":47415,"Directional":true}]},{"ID":18913,"SourceStructureID":98270,"TargetStructureID":4569,"Label":"98270-4569 via Conventional from 98273 -> 52483","Type":"Conventional","Directional":true,"Links":[{"SourceID":98273,"TargetID":52483,"Directional":true}]},{"ID":18914,"SourceStructureID":98278,"TargetStructureID":4569,"Label":"98278-4569 via Conventional from 98281 -> 47433","Type":"Conventional","Directional":true,"Links":[{"SourceID":98281,"TargetID":47433,"Directional":true}]},{"ID":18915,"SourceStructureID":98279,"TargetStructureID":4569,"Label":"98279-4569 via Conventional from 98280 -> 47434","Type":"Conventional","Directional":true,"Links":[{"SourceID":98280,"TargetID":47434,"Directional":true}]},{"ID":18916,"SourceStructureID":98289,"TargetStructureID":4569,"Label":"98289-4569 via Conventional from 98295 -> 47437","Type":"Conventional","Directional":true,"Links":[{"SourceID":98295,"TargetID":47437,"Directional":true}]},{"ID":18917,"SourceStructureID":98297,"TargetStructureID":4569,"Label":"98297-4569 via Conventional from 98298 -> 47438","Type":"Conventional","Directional":true,"Links":[{"SourceID":98298,"TargetID":47438,"Directional":true}]},{"ID":18918,"SourceStructureID":98329,"TargetStructureID":4569,"Label":"98329-4569 via Conventional from 98330 -> 4748","Type":"Conventional","Directional":true,"Links":[{"SourceID":98330,"TargetID":4748,"Directional":true}]},{"ID":18919,"SourceStructureID":98337,"TargetStructureID":4569,"Label":"98337-4569 via Conventional from 98338 -> 30815","Type":"Conventional","Directional":true,"Links":[{"SourceID":98338,"TargetID":30815,"Directional":true}]},{"ID":18920,"SourceStructureID":98339,"TargetStructureID":4569,"Label":"98339-4569 via Conventional from 98340 -> 98341","Type":"Conventional","Directional":true,"Links":[{"SourceID":98340,"TargetID":98341,"Directional":true}]},{"ID":18921,"SourceStructureID":98345,"TargetStructureID":4569,"Label":"98345-4569 via Conventional from 98346 -> 47490","Type":"Conventional","Directional":true,"Links":[{"SourceID":98346,"TargetID":47490,"Directional":true}]},{"ID":18922,"SourceStructureID":98348,"TargetStructureID":4569,"Label":"98348-4569 via Conventional from 98349 -> 15993","Type":"Conventional","Directional":true,"Links":[{"SourceID":98349,"TargetID":15993,"Directional":true}]},{"ID":18923,"SourceStructureID":98350,"TargetStructureID":4569,"Label":"98350-4569 via Conventional from 98351 -> 47491","Type":"Conventional","Directional":true,"Links":[{"SourceID":98351,"TargetID":47491,"Directional":true}]},{"ID":18924,"SourceStructureID":98359,"TargetStructureID":4569,"Label":"98359-4569 via Conventional from 98360 -> 52506","Type":"Conventional","Directional":true,"Links":[{"SourceID":98360,"TargetID":52506,"Directional":true}]},{"ID":18925,"SourceStructureID":98363,"TargetStructureID":4569,"Label":"98363-4569 via Conventional from 98364 -> 30824","Type":"Conventional","Directional":true,"Links":[{"SourceID":98364,"TargetID":30824,"Directional":true}]},{"ID":18926,"SourceStructureID":98365,"TargetStructureID":4569,"Label":"98365-4569 via Conventional from 98366 -> 30823","Type":"Conventional","Directional":true,"Links":[{"SourceID":98366,"TargetID":30823,"Directional":true}]},{"ID":18927,"SourceStructureID":98372,"TargetStructureID":4569,"Label":"98372-4569 via Conventional from 98374 -> 30825","Type":"Conventional","Directional":true,"Links":[{"SourceID":98374,"TargetID":30825,"Directional":true}]},{"ID":18928,"SourceStructureID":98395,"TargetStructureID":4569,"Label":"98395-4569 via Conventional from 98396 -> 30826","Type":"Conventional","Directional":true,"Links":[{"SourceID":98396,"TargetID":30826,"Directional":true}]},{"ID":18929,"SourceStructureID":98409,"TargetStructureID":4569,"Label":"98409-4569 via Conventional from 98410 -> 30829","Type":"Conventional","Directional":true,"Links":[{"SourceID":98410,"TargetID":30829,"Directional":true}]},{"ID":18930,"SourceStructureID":98411,"TargetStructureID":4569,"Label":"98411-4569 via Conventional from 98412 -> 47494","Type":"Conventional","Directional":true,"Links":[{"SourceID":98412,"TargetID":47494,"Directional":true}]},{"ID":18931,"SourceStructureID":98413,"TargetStructureID":142,"Label":"98413-142 via Conventional from 98414 -> 98416","Type":"Conventional","Directional":true,"Links":[{"SourceID":98414,"TargetID":98416,"Directional":true}]},{"ID":18932,"SourceStructureID":98418,"TargetStructureID":4569,"Label":"98418-4569 via Conventional from 98419 -> 30831","Type":"Conventional","Directional":true,"Links":[{"SourceID":98419,"TargetID":30831,"Directional":true}]},{"ID":18933,"SourceStructureID":98434,"TargetStructureID":4569,"Label":"98434-4569 via Conventional from 98435 -> 98433","Type":"Conventional","Directional":true,"Links":[{"SourceID":98435,"TargetID":98433,"Directional":true}]},{"ID":18934,"SourceStructureID":98438,"TargetStructureID":4569,"Label":"98438-4569 via Conventional from 98439 -> 98440","Type":"Conventional","Directional":true,"Links":[{"SourceID":98439,"TargetID":98440,"Directional":true}]},{"ID":18935,"SourceStructureID":98444,"TargetStructureID":4569,"Label":"98444-4569 via Conventional from 98445 -> 92753","Type":"Conventional","Directional":true,"Links":[{"SourceID":98445,"TargetID":92753,"Directional":true}]},{"ID":18936,"SourceStructureID":98459,"TargetStructureID":168,"Label":"98459-168 via Conventional from 119055 -> 119054","Type":"Conventional","Directional":true,"Links":[{"SourceID":119055,"TargetID":119054,"Directional":true}]},{"ID":18937,"SourceStructureID":98459,"TargetStructureID":4569,"Label":"98459-4569 via Conventional from 98460 -> 98457","Type":"Conventional","Directional":true,"Links":[{"SourceID":98460,"TargetID":98457,"Directional":true}]},{"ID":18938,"SourceStructureID":98465,"TargetStructureID":4569,"Label":"98465-4569 via Conventional from 98466 -> 52507","Type":"Conventional","Directional":true,"Links":[{"SourceID":98466,"TargetID":52507,"Directional":true}]},{"ID":18939,"SourceStructureID":98478,"TargetStructureID":4569,"Label":"98478-4569 via Conventional from 98479 -> 30834","Type":"Conventional","Directional":true,"Links":[{"SourceID":98479,"TargetID":30834,"Directional":true}]},{"ID":18940,"SourceStructureID":98484,"TargetStructureID":4569,"Label":"98484-4569 via Conventional from 98485 -> 65200","Type":"Conventional","Directional":true,"Links":[{"SourceID":98485,"TargetID":65200,"Directional":true}]},{"ID":18941,"SourceStructureID":98486,"TargetStructureID":4569,"Label":"98486-4569 via Conventional from 98487 -> 98488","Type":"Conventional","Directional":true,"Links":[{"SourceID":98487,"TargetID":98488,"Directional":true}]},{"ID":18942,"SourceStructureID":98511,"TargetStructureID":4569,"Label":"98511-4569 via Conventional from 98512 -> 98510","Type":"Conventional","Directional":true,"Links":[{"SourceID":98512,"TargetID":98510,"Directional":true}]},{"ID":18943,"SourceStructureID":98524,"TargetStructureID":5279,"Label":"98524-5279 via Conventional from 98532 -> 49208","Type":"Conventional","Directional":true,"Links":[{"SourceID":98532,"TargetID":49208,"Directional":true}]},{"ID":18944,"SourceStructureID":98530,"TargetStructureID":4569,"Label":"98530-4569 via Conventional from 98531 -> 98529","Type":"Conventional","Directional":true,"Links":[{"SourceID":98531,"TargetID":98529,"Directional":true}]},{"ID":18945,"SourceStructureID":98535,"TargetStructureID":4569,"Label":"98535-4569 via Conventional from 98540 -> 98533","Type":"Conventional","Directional":true,"Links":[{"SourceID":98540,"TargetID":98533,"Directional":true}]},{"ID":18946,"SourceStructureID":98535,"TargetStructureID":5118,"Label":"98535-5118 via Conventional from 98541 -> 6520","Type":"Conventional","Directional":true,"Links":[{"SourceID":98541,"TargetID":6520,"Directional":true}]},{"ID":18947,"SourceStructureID":98537,"TargetStructureID":5279,"Label":"98537-5279 via Conventional from 98542 -> 49205","Type":"Conventional","Directional":true,"Links":[{"SourceID":98542,"TargetID":49205,"Directional":true}]},{"ID":18948,"SourceStructureID":98550,"TargetStructureID":4569,"Label":"98550-4569 via Conventional from 98551 -> 47497","Type":"Conventional","Directional":true,"Links":[{"SourceID":98551,"TargetID":47497,"Directional":true}]},{"ID":18949,"SourceStructureID":98555,"TargetStructureID":4569,"Label":"98555-4569 via Conventional from 98557 -> 98554","Type":"Conventional","Directional":true,"Links":[{"SourceID":98557,"TargetID":98554,"Directional":true}]},{"ID":18950,"SourceStructureID":98559,"TargetStructureID":4569,"Label":"98559-4569 via Conventional from 98561 -> 47498","Type":"Conventional","Directional":true,"Links":[{"SourceID":98561,"TargetID":47498,"Directional":true}]},{"ID":18951,"SourceStructureID":98565,"TargetStructureID":5279,"Label":"98565-5279 via Conventional from 98567 -> 98566","Type":"Conventional","Directional":true,"Links":[{"SourceID":98567,"TargetID":98566,"Directional":true}]},{"ID":18952,"SourceStructureID":98574,"TargetStructureID":4569,"Label":"98574-4569 via Conventional from 98575 -> 47503","Type":"Conventional","Directional":true,"Links":[{"SourceID":98575,"TargetID":47503,"Directional":true}]},{"ID":18953,"SourceStructureID":98584,"TargetStructureID":5279,"Label":"98584-5279 via Conventional from 98588 -> 25844","Type":"Conventional","Directional":true,"Links":[{"SourceID":98588,"TargetID":25844,"Directional":true}]},{"ID":18954,"SourceStructureID":98585,"TargetStructureID":4569,"Label":"98585-4569 via Conventional from 98596 -> 47502","Type":"Conventional","Directional":true,"Links":[{"SourceID":98596,"TargetID":47502,"Directional":true}]},{"ID":18955,"SourceStructureID":98590,"TargetStructureID":13525,"Label":"98590-13525 via Conventional from 98591 -> 84663","Type":"Conventional","Directional":true,"Links":[{"SourceID":98591,"TargetID":84663,"Directional":true}]},{"ID":18956,"SourceStructureID":98595,"TargetStructureID":5279,"Label":"98595-5279 via Conventional from 98598 -> 25843","Type":"Conventional","Directional":true,"Links":[{"SourceID":98598,"TargetID":25843,"Directional":true}]},{"ID":18957,"SourceStructureID":98599,"TargetStructureID":1724,"Label":"98599-1724 via Conventional from 100287 -> 47400","Type":"Conventional","Directional":true,"Links":[{"SourceID":100287,"TargetID":47400,"Directional":true}]},{"ID":18958,"SourceStructureID":98604,"TargetStructureID":4569,"Label":"98604-4569 via Conventional from 98615 -> 47499","Type":"Conventional","Directional":true,"Links":[{"SourceID":98615,"TargetID":47499,"Directional":true}]},{"ID":18959,"SourceStructureID":98611,"TargetStructureID":4569,"Label":"98611-4569 via Conventional from 98613 -> 47500","Type":"Conventional","Directional":true,"Links":[{"SourceID":98613,"TargetID":47500,"Directional":true}]},{"ID":18960,"SourceStructureID":98618,"TargetStructureID":4569,"Label":"98618-4569 via Conventional from 98620 -> 47505","Type":"Conventional","Directional":true,"Links":[{"SourceID":98620,"TargetID":47505,"Directional":true}]},{"ID":18961,"SourceStructureID":98622,"TargetStructureID":5279,"Label":"98622-5279 via Conventional from 98623 -> 25988","Type":"Conventional","Directional":true,"Links":[{"SourceID":98623,"TargetID":25988,"Directional":true}]},{"ID":18962,"SourceStructureID":98624,"TargetStructureID":5279,"Label":"98624-5279 via Conventional from 98625 -> 98626","Type":"Conventional","Directional":true,"Links":[{"SourceID":98625,"TargetID":98626,"Directional":true}]},{"ID":18963,"SourceStructureID":98632,"TargetStructureID":1724,"Label":"98632-1724 via Conventional from 100293 -> 100294","Type":"Conventional","Directional":true,"Links":[{"SourceID":100293,"TargetID":100294,"Directional":true}]},{"ID":18964,"SourceStructureID":98636,"TargetStructureID":5279,"Label":"98636-5279 via Conventional from 98637 -> 25849","Type":"Conventional","Directional":true,"Links":[{"SourceID":98637,"TargetID":25849,"Directional":true}]},{"ID":18965,"SourceStructureID":98641,"TargetStructureID":30477,"Label":"98641-30477 via Conventional from 98642 -> 30485","Type":"Conventional","Directional":true,"Links":[{"SourceID":98642,"TargetID":30485,"Directional":true}]},{"ID":18966,"SourceStructureID":98650,"TargetStructureID":4569,"Label":"98650-4569 via Conventional from 98651 -> 98649","Type":"Conventional","Directional":true,"Links":[{"SourceID":98651,"TargetID":98649,"Directional":true}]},{"ID":18967,"SourceStructureID":98655,"TargetStructureID":4569,"Label":"98655-4569 via Conventional from 98656 -> 98654","Type":"Conventional","Directional":true,"Links":[{"SourceID":98656,"TargetID":98654,"Directional":true}]},{"ID":18968,"SourceStructureID":98660,"TargetStructureID":5279,"Label":"98660-5279 via Conventional from 98662 -> 25847","Type":"Conventional","Directional":true,"Links":[{"SourceID":98662,"TargetID":25847,"Directional":true}]},{"ID":18969,"SourceStructureID":98674,"TargetStructureID":4569,"Label":"98674-4569 via Conventional from 98677 -> 98669","Type":"Conventional","Directional":true,"Links":[{"SourceID":98677,"TargetID":98669,"Directional":true}]},{"ID":18970,"SourceStructureID":98676,"TargetStructureID":5279,"Label":"98676-5279 via Conventional from 98702 -> 25993","Type":"Conventional","Directional":true,"Links":[{"SourceID":98702,"TargetID":25993,"Directional":true}]},{"ID":18971,"SourceStructureID":98683,"TargetStructureID":4569,"Label":"98683-4569 via Conventional from 98686 -> 98681","Type":"Conventional","Directional":true,"Links":[{"SourceID":98686,"TargetID":98681,"Directional":true}]},{"ID":18972,"SourceStructureID":98694,"TargetStructureID":4569,"Label":"98694-4569 via Conventional from 98695 -> 98696","Type":"Conventional","Directional":true,"Links":[{"SourceID":98695,"TargetID":98696,"Directional":true}]},{"ID":18973,"SourceStructureID":98703,"TargetStructureID":5645,"Label":"98703-5645 via Adherens from 98711 -> 98712","Type":"Adherens","Directional":true,"Links":[{"SourceID":98711,"TargetID":98712,"Directional":true}]},{"ID":18974,"SourceStructureID":98703,"TargetStructureID":5645,"Label":"98703-5645 via Conventional from 98704 -> 98705","Type":"Conventional","Directional":true,"Links":[{"SourceID":98704,"TargetID":98705,"Directional":true}]},{"ID":18975,"SourceStructureID":98707,"TargetStructureID":98703,"Label":"98707-98703 via Conventional from 98708 -> 98709","Type":"Conventional","Directional":true,"Links":[{"SourceID":98708,"TargetID":98709,"Directional":true}]},{"ID":18976,"SourceStructureID":98720,"TargetStructureID":5279,"Label":"98720-5279 via Conventional from 98721 -> 25996","Type":"Conventional","Directional":true,"Links":[{"SourceID":98721,"TargetID":25996,"Directional":true}]},{"ID":18977,"SourceStructureID":98722,"TargetStructureID":5279,"Label":"98722-5279 via Conventional from 98723 -> 25995","Type":"Conventional","Directional":true,"Links":[{"SourceID":98723,"TargetID":25995,"Directional":true}]},{"ID":18978,"SourceStructureID":98725,"TargetStructureID":4569,"Label":"98725-4569 via Conventional from 98726 -> 98724","Type":"Conventional","Directional":true,"Links":[{"SourceID":98726,"TargetID":98724,"Directional":true}]},{"ID":18979,"SourceStructureID":98735,"TargetStructureID":4569,"Label":"98735-4569 via Conventional from 98736 -> 47509","Type":"Conventional","Directional":true,"Links":[{"SourceID":98736,"TargetID":47509,"Directional":true}]},{"ID":18980,"SourceStructureID":98740,"TargetStructureID":364,"Label":"98740-364 via Conventional from 98742 -> 14069","Type":"Conventional","Directional":true,"Links":[{"SourceID":98742,"TargetID":14069,"Directional":true}]},{"ID":18981,"SourceStructureID":98749,"TargetStructureID":4569,"Label":"98749-4569 via Conventional from 98750 -> 47513","Type":"Conventional","Directional":true,"Links":[{"SourceID":98750,"TargetID":47513,"Directional":true}]},{"ID":18982,"SourceStructureID":98751,"TargetStructureID":431,"Label":"98751-431 via Conventional from 98753 -> 119072","Type":"Conventional","Directional":true,"Links":[{"SourceID":98753,"TargetID":119072,"Directional":true}]},{"ID":18983,"SourceStructureID":98756,"TargetStructureID":431,"Label":"98756-431 via Conventional from 98757 -> 119068","Type":"Conventional","Directional":true,"Links":[{"SourceID":98757,"TargetID":119068,"Directional":true}]},{"ID":18984,"SourceStructureID":98758,"TargetStructureID":431,"Label":"98758-431 via Conventional from 98760 -> 119066","Type":"Conventional","Directional":true,"Links":[{"SourceID":98760,"TargetID":119066,"Directional":true}]},{"ID":18985,"SourceStructureID":98759,"TargetStructureID":431,"Label":"98759-431 via Conventional from 98761 -> 119067","Type":"Conventional","Directional":true,"Links":[{"SourceID":98761,"TargetID":119067,"Directional":true}]},{"ID":18986,"SourceStructureID":98762,"TargetStructureID":1724,"Label":"98762-1724 via Conventional from 98764 -> 47386","Type":"Conventional","Directional":true,"Links":[{"SourceID":98764,"TargetID":47386,"Directional":true}]},{"ID":18987,"SourceStructureID":98770,"TargetStructureID":431,"Label":"98770-431 via Conventional from 98771 -> 119064","Type":"Conventional","Directional":true,"Links":[{"SourceID":98771,"TargetID":119064,"Directional":true}]},{"ID":18988,"SourceStructureID":98786,"TargetStructureID":431,"Label":"98786-431 via Conventional from 98787 -> 98785","Type":"Conventional","Directional":true,"Links":[{"SourceID":98787,"TargetID":98785,"Directional":true}]},{"ID":18989,"SourceStructureID":98800,"TargetStructureID":4569,"Label":"98800-4569 via Conventional from 98801 -> 30863","Type":"Conventional","Directional":true,"Links":[{"SourceID":98801,"TargetID":30863,"Directional":true}]},{"ID":18990,"SourceStructureID":98823,"TargetStructureID":1637,"Label":"98823-1637 via Conventional from 98824 -> 4076","Type":"Conventional","Directional":true,"Links":[{"SourceID":98824,"TargetID":4076,"Directional":true}]},{"ID":18991,"SourceStructureID":98823,"TargetStructureID":5278,"Label":"98823-5278 via Conventional from 98826 -> 20034","Type":"Conventional","Directional":true,"Links":[{"SourceID":98826,"TargetID":20034,"Directional":true}]},{"ID":18992,"SourceStructureID":98833,"TargetStructureID":5278,"Label":"98833-5278 via Conventional from 98834 -> 20043, 98835 -> 98832","Type":"Conventional","Directional":true,"Links":[{"SourceID":98834,"TargetID":20043,"Directional":true},{"SourceID":98835,"TargetID":98832,"Directional":true}]},{"ID":18993,"SourceStructureID":98836,"TargetStructureID":4569,"Label":"98836-4569 via Conventional from 98837 -> 47518","Type":"Conventional","Directional":true,"Links":[{"SourceID":98837,"TargetID":47518,"Directional":true}]},{"ID":18994,"SourceStructureID":98838,"TargetStructureID":4569,"Label":"98838-4569 via Unknown from 98841 -> 47519","Type":"Unknown","Directional":true,"Links":[{"SourceID":98841,"TargetID":47519,"Directional":true}]},{"ID":18995,"SourceStructureID":98843,"TargetStructureID":4569,"Label":"98843-4569 via Conventional from 98844 -> 98842","Type":"Conventional","Directional":true,"Links":[{"SourceID":98844,"TargetID":98842,"Directional":true}]},{"ID":18996,"SourceStructureID":98849,"TargetStructureID":13525,"Label":"98849-13525 via Conventional from 98863 -> 13529","Type":"Conventional","Directional":true,"Links":[{"SourceID":98863,"TargetID":13529,"Directional":true}]},{"ID":18997,"SourceStructureID":98850,"TargetStructureID":4569,"Label":"98850-4569 via Conventional from 98851 -> 52512","Type":"Conventional","Directional":true,"Links":[{"SourceID":98851,"TargetID":52512,"Directional":true}]},{"ID":18998,"SourceStructureID":98858,"TargetStructureID":4569,"Label":"98858-4569 via Conventional from 98859 -> 52514","Type":"Conventional","Directional":true,"Links":[{"SourceID":98859,"TargetID":52514,"Directional":true}]},{"ID":18999,"SourceStructureID":98864,"TargetStructureID":4569,"Label":"98864-4569 via Conventional from 98865 -> 47540","Type":"Conventional","Directional":true,"Links":[{"SourceID":98865,"TargetID":47540,"Directional":true}]},{"ID":19000,"SourceStructureID":98869,"TargetStructureID":4569,"Label":"98869-4569 via Conventional from 98871 -> 47541","Type":"Conventional","Directional":true,"Links":[{"SourceID":98871,"TargetID":47541,"Directional":true}]},{"ID":19001,"SourceStructureID":98872,"TargetStructureID":4569,"Label":"98872-4569 via Conventional from 98873 -> 30843","Type":"Conventional","Directional":true,"Links":[{"SourceID":98873,"TargetID":30843,"Directional":true}]},{"ID":19002,"SourceStructureID":98891,"TargetStructureID":4569,"Label":"98891-4569 via Conventional from 98893 -> 30849","Type":"Conventional","Directional":true,"Links":[{"SourceID":98893,"TargetID":30849,"Directional":true}]},{"ID":19003,"SourceStructureID":98894,"TargetStructureID":4569,"Label":"98894-4569 via Conventional from 98895 -> 30848","Type":"Conventional","Directional":true,"Links":[{"SourceID":98895,"TargetID":30848,"Directional":true}]},{"ID":19004,"SourceStructureID":98908,"TargetStructureID":4569,"Label":"98908-4569 via Conventional from 98909 -> 30846","Type":"Conventional","Directional":true,"Links":[{"SourceID":98909,"TargetID":30846,"Directional":true}]},{"ID":19005,"SourceStructureID":98914,"TargetStructureID":4569,"Label":"98914-4569 via Conventional from 98915 -> 52542","Type":"Conventional","Directional":true,"Links":[{"SourceID":98915,"TargetID":52542,"Directional":true}]},{"ID":19006,"SourceStructureID":98917,"TargetStructureID":4569,"Label":"98917-4569 via Conventional from 98918 -> 30850","Type":"Conventional","Directional":true,"Links":[{"SourceID":98918,"TargetID":30850,"Directional":true}]},{"ID":19007,"SourceStructureID":98920,"TargetStructureID":4569,"Label":"98920-4569 via Conventional from 98921 -> 30851","Type":"Conventional","Directional":true,"Links":[{"SourceID":98921,"TargetID":30851,"Directional":true}]},{"ID":19008,"SourceStructureID":98924,"TargetStructureID":4569,"Label":"98924-4569 via Conventional from 98925 -> 47552","Type":"Conventional","Directional":true,"Links":[{"SourceID":98925,"TargetID":47552,"Directional":true}]},{"ID":19009,"SourceStructureID":98929,"TargetStructureID":4569,"Label":"98929-4569 via Conventional from 98930 -> 98931, 98938 -> 30856","Type":"Conventional","Directional":true,"Links":[{"SourceID":98930,"TargetID":98931,"Directional":true},{"SourceID":98938,"TargetID":30856,"Directional":true}]},{"ID":19010,"SourceStructureID":98932,"TargetStructureID":4569,"Label":"98932-4569 via Conventional from 98933 -> 98935, 98934 -> 52549","Type":"Conventional","Directional":true,"Links":[{"SourceID":98933,"TargetID":98935,"Directional":true},{"SourceID":98934,"TargetID":52549,"Directional":true}]},{"ID":19011,"SourceStructureID":98936,"TargetStructureID":4569,"Label":"98936-4569 via Conventional from 98937 -> 30855","Type":"Conventional","Directional":true,"Links":[{"SourceID":98937,"TargetID":30855,"Directional":true}]},{"ID":19012,"SourceStructureID":98958,"TargetStructureID":4569,"Label":"98958-4569 via Conventional from 98959 -> 47548","Type":"Conventional","Directional":true,"Links":[{"SourceID":98959,"TargetID":47548,"Directional":true}]},{"ID":19013,"SourceStructureID":98960,"TargetStructureID":4569,"Label":"98960-4569 via Conventional from 98961 -> 30857","Type":"Conventional","Directional":true,"Links":[{"SourceID":98961,"TargetID":30857,"Directional":true}]},{"ID":19014,"SourceStructureID":98962,"TargetStructureID":4569,"Label":"98962-4569 via Conventional from 98963 -> 47549","Type":"Conventional","Directional":true,"Links":[{"SourceID":98963,"TargetID":47549,"Directional":true}]},{"ID":19015,"SourceStructureID":98980,"TargetStructureID":5279,"Label":"98980-5279 via Conventional from 98981 -> 25998","Type":"Conventional","Directional":true,"Links":[{"SourceID":98981,"TargetID":25998,"Directional":true}]},{"ID":19016,"SourceStructureID":98983,"TargetStructureID":5279,"Label":"98983-5279 via Conventional from 98984 -> 25997","Type":"Conventional","Directional":true,"Links":[{"SourceID":98984,"TargetID":25997,"Directional":true}]},{"ID":19017,"SourceStructureID":98987,"TargetStructureID":5279,"Label":"98987-5279 via Conventional from 98988 -> 26000","Type":"Conventional","Directional":true,"Links":[{"SourceID":98988,"TargetID":26000,"Directional":true}]},{"ID":19018,"SourceStructureID":98991,"TargetStructureID":5279,"Label":"98991-5279 via Conventional from 98992 -> 26001","Type":"Conventional","Directional":true,"Links":[{"SourceID":98992,"TargetID":26001,"Directional":true}]},{"ID":19019,"SourceStructureID":98997,"TargetStructureID":5279,"Label":"98997-5279 via Conventional from 99035 -> 99036","Type":"Conventional","Directional":true,"Links":[{"SourceID":99035,"TargetID":99036,"Directional":true}]},{"ID":19020,"SourceStructureID":99010,"TargetStructureID":4569,"Label":"99010-4569 via Conventional from 99011 -> 30861","Type":"Conventional","Directional":true,"Links":[{"SourceID":99011,"TargetID":30861,"Directional":true}]},{"ID":19021,"SourceStructureID":99012,"TargetStructureID":4569,"Label":"99012-4569 via Conventional from 99013 -> 30862","Type":"Conventional","Directional":true,"Links":[{"SourceID":99013,"TargetID":30862,"Directional":true}]},{"ID":19022,"SourceStructureID":99039,"TargetStructureID":5279,"Label":"99039-5279 via Conventional from 99042 -> 99043","Type":"Conventional","Directional":true,"Links":[{"SourceID":99042,"TargetID":99043,"Directional":true}]},{"ID":19023,"SourceStructureID":99040,"TargetStructureID":4569,"Label":"99040-4569 via Conventional from 99041 -> 30842","Type":"Conventional","Directional":true,"Links":[{"SourceID":99041,"TargetID":30842,"Directional":true}]},{"ID":19024,"SourceStructureID":99047,"TargetStructureID":4569,"Label":"99047-4569 via Conventional from 99049 -> 30865","Type":"Conventional","Directional":true,"Links":[{"SourceID":99049,"TargetID":30865,"Directional":true}]},{"ID":19025,"SourceStructureID":99062,"TargetStructureID":5279,"Label":"99062-5279 via Conventional from 99063 -> 99064","Type":"Conventional","Directional":true,"Links":[{"SourceID":99063,"TargetID":99064,"Directional":true}]},{"ID":19026,"SourceStructureID":99065,"TargetStructureID":5279,"Label":"99065-5279 via Conventional from 99074 -> 49222","Type":"Conventional","Directional":true,"Links":[{"SourceID":99074,"TargetID":49222,"Directional":true}]},{"ID":19027,"SourceStructureID":99069,"TargetStructureID":4569,"Label":"99069-4569 via Conventional from 99070 -> 6299","Type":"Conventional","Directional":true,"Links":[{"SourceID":99070,"TargetID":6299,"Directional":true}]},{"ID":19028,"SourceStructureID":99072,"TargetStructureID":4569,"Label":"99072-4569 via Conventional from 99073 -> 30817","Type":"Conventional","Directional":true,"Links":[{"SourceID":99073,"TargetID":30817,"Directional":true}]},{"ID":19029,"SourceStructureID":99076,"TargetStructureID":5279,"Label":"99076-5279 via Conventional from 99085 -> 49223","Type":"Conventional","Directional":true,"Links":[{"SourceID":99085,"TargetID":49223,"Directional":true}]},{"ID":19030,"SourceStructureID":99077,"TargetStructureID":4569,"Label":"99077-4569 via Conventional from 99079 -> 99078","Type":"Conventional","Directional":true,"Links":[{"SourceID":99079,"TargetID":99078,"Directional":true}]},{"ID":19031,"SourceStructureID":99091,"TargetStructureID":5279,"Label":"99091-5279 via Conventional from 99104 -> 99105","Type":"Conventional","Directional":true,"Links":[{"SourceID":99104,"TargetID":99105,"Directional":true}]},{"ID":19032,"SourceStructureID":99092,"TargetStructureID":4569,"Label":"99092-4569 via Conventional from 99093 -> 30818","Type":"Conventional","Directional":true,"Links":[{"SourceID":99093,"TargetID":30818,"Directional":true}]},{"ID":19033,"SourceStructureID":99092,"TargetStructureID":38949,"Label":"99092-38949 via Conventional from 112743 -> 39031","Type":"Conventional","Directional":true,"Links":[{"SourceID":112743,"TargetID":39031,"Directional":true}]},{"ID":19034,"SourceStructureID":99094,"TargetStructureID":4569,"Label":"99094-4569 via Conventional from 99095 -> 23563","Type":"Conventional","Directional":true,"Links":[{"SourceID":99095,"TargetID":23563,"Directional":true}]},{"ID":19035,"SourceStructureID":99096,"TargetStructureID":4569,"Label":"99096-4569 via Conventional from 99097 -> 23562","Type":"Conventional","Directional":true,"Links":[{"SourceID":99097,"TargetID":23562,"Directional":true}]},{"ID":19036,"SourceStructureID":99098,"TargetStructureID":4569,"Label":"99098-4569 via Conventional from 99099 -> 23571","Type":"Conventional","Directional":true,"Links":[{"SourceID":99099,"TargetID":23571,"Directional":true}]},{"ID":19037,"SourceStructureID":99102,"TargetStructureID":4569,"Label":"99102-4569 via Conventional from 99103 -> 30819","Type":"Conventional","Directional":true,"Links":[{"SourceID":99103,"TargetID":30819,"Directional":true}]},{"ID":19038,"SourceStructureID":99115,"TargetStructureID":5279,"Label":"99115-5279 via Conventional from 99116 -> 49227","Type":"Conventional","Directional":true,"Links":[{"SourceID":99116,"TargetID":49227,"Directional":true}]},{"ID":19039,"SourceStructureID":99117,"TargetStructureID":4569,"Label":"99117-4569 via Conventional from 99119 -> 30820","Type":"Conventional","Directional":true,"Links":[{"SourceID":99119,"TargetID":30820,"Directional":true}]},{"ID":19040,"SourceStructureID":99118,"TargetStructureID":5279,"Label":"99118-5279 via Conventional from 99124 -> 49230","Type":"Conventional","Directional":true,"Links":[{"SourceID":99124,"TargetID":49230,"Directional":true}]},{"ID":19041,"SourceStructureID":99125,"TargetStructureID":5279,"Label":"99125-5279 via Conventional from 99126 -> 49228","Type":"Conventional","Directional":true,"Links":[{"SourceID":99126,"TargetID":49228,"Directional":true}]},{"ID":19042,"SourceStructureID":99132,"TargetStructureID":5279,"Label":"99132-5279 via Conventional from 99133 -> 99134","Type":"Conventional","Directional":true,"Links":[{"SourceID":99133,"TargetID":99134,"Directional":true}]},{"ID":19043,"SourceStructureID":99136,"TargetStructureID":5279,"Label":"99136-5279 via Conventional from 99137 -> 49225","Type":"Conventional","Directional":true,"Links":[{"SourceID":99137,"TargetID":49225,"Directional":true}]},{"ID":19044,"SourceStructureID":99147,"TargetStructureID":5279,"Label":"99147-5279 via Conventional from 99148 -> 99149","Type":"Conventional","Directional":true,"Links":[{"SourceID":99148,"TargetID":99149,"Directional":true}]},{"ID":19045,"SourceStructureID":99225,"TargetStructureID":485,"Label":"99225-485 via Conventional from 99226 -> 38781","Type":"Conventional","Directional":true,"Links":[{"SourceID":99226,"TargetID":38781,"Directional":true}]},{"ID":19046,"SourceStructureID":99237,"TargetStructureID":5278,"Label":"99237-5278 via Conventional from 99244 -> 20041","Type":"Conventional","Directional":true,"Links":[{"SourceID":99244,"TargetID":20041,"Directional":true}]},{"ID":19047,"SourceStructureID":99243,"TargetStructureID":1724,"Label":"99243-1724 via Conventional from 99245 -> 1762","Type":"Conventional","Directional":true,"Links":[{"SourceID":99245,"TargetID":1762,"Directional":true}]},{"ID":19048,"SourceStructureID":99255,"TargetStructureID":5278,"Label":"99255-5278 via Conventional from 99258 -> 20046","Type":"Conventional","Directional":true,"Links":[{"SourceID":99258,"TargetID":20046,"Directional":true}]},{"ID":19049,"SourceStructureID":99261,"TargetStructureID":1724,"Label":"99261-1724 via Conventional from 99263 -> 1773","Type":"Conventional","Directional":true,"Links":[{"SourceID":99263,"TargetID":1773,"Directional":true}]},{"ID":19050,"SourceStructureID":99266,"TargetStructureID":1724,"Label":"99266-1724 via Conventional from 99267 -> 99269","Type":"Conventional","Directional":true,"Links":[{"SourceID":99267,"TargetID":99269,"Directional":true}]},{"ID":19051,"SourceStructureID":99278,"TargetStructureID":485,"Label":"99278-485 via Conventional from 99279 -> 99277","Type":"Conventional","Directional":true,"Links":[{"SourceID":99279,"TargetID":99277,"Directional":true}]},{"ID":19052,"SourceStructureID":99307,"TargetStructureID":1724,"Label":"99307-1724 via Conventional from 100560 -> 48480","Type":"Conventional","Directional":true,"Links":[{"SourceID":100560,"TargetID":48480,"Directional":true}]},{"ID":19053,"SourceStructureID":99307,"TargetStructureID":5278,"Label":"99307-5278 via Conventional from 99308 -> 20115","Type":"Conventional","Directional":true,"Links":[{"SourceID":99308,"TargetID":20115,"Directional":true}]},{"ID":19054,"SourceStructureID":99316,"TargetStructureID":1724,"Label":"99316-1724 via Conventional from 99317 -> 47375","Type":"Conventional","Directional":true,"Links":[{"SourceID":99317,"TargetID":47375,"Directional":true}]},{"ID":19055,"SourceStructureID":99319,"TargetStructureID":1724,"Label":"99319-1724 via Conventional from 99324 -> 55462","Type":"Conventional","Directional":true,"Links":[{"SourceID":99324,"TargetID":55462,"Directional":true}]},{"ID":19056,"SourceStructureID":99320,"TargetStructureID":1724,"Label":"99320-1724 via Conventional from 99321 -> 99322","Type":"Conventional","Directional":true,"Links":[{"SourceID":99321,"TargetID":99322,"Directional":true}]},{"ID":19057,"SourceStructureID":99325,"TargetStructureID":1724,"Label":"99325-1724 via Conventional from 99326 -> 4040","Type":"Conventional","Directional":true,"Links":[{"SourceID":99326,"TargetID":4040,"Directional":true}]},{"ID":19058,"SourceStructureID":99329,"TargetStructureID":1724,"Label":"99329-1724 via Conventional from 99330 -> 99331","Type":"Conventional","Directional":true,"Links":[{"SourceID":99330,"TargetID":99331,"Directional":true}]},{"ID":19059,"SourceStructureID":99332,"TargetStructureID":1724,"Label":"99332-1724 via Conventional from 99333 -> 4048, 99518 -> 47945","Type":"Conventional","Directional":true,"Links":[{"SourceID":99333,"TargetID":4048,"Directional":true},{"SourceID":99518,"TargetID":47945,"Directional":true}]},{"ID":19060,"SourceStructureID":99332,"TargetStructureID":6156,"Label":"99332-6156 via Conventional from 133369 -> 133368","Type":"Conventional","Directional":true,"Links":[{"SourceID":133369,"TargetID":133368,"Directional":true}]},{"ID":19061,"SourceStructureID":99343,"TargetStructureID":33625,"Label":"99343-33625 via Conventional from 99344 -> 33651","Type":"Conventional","Directional":true,"Links":[{"SourceID":99344,"TargetID":33651,"Directional":true}]},{"ID":19062,"SourceStructureID":99361,"TargetStructureID":1724,"Label":"99361-1724 via Conventional from 99369 -> 47384","Type":"Conventional","Directional":true,"Links":[{"SourceID":99369,"TargetID":47384,"Directional":true}]},{"ID":19063,"SourceStructureID":99364,"TargetStructureID":1724,"Label":"99364-1724 via Conventional from 99420 -> 47387","Type":"Conventional","Directional":true,"Links":[{"SourceID":99420,"TargetID":47387,"Directional":true}]},{"ID":19064,"SourceStructureID":99375,"TargetStructureID":485,"Label":"99375-485 via Conventional from 99386 -> 99374","Type":"Conventional","Directional":true,"Links":[{"SourceID":99386,"TargetID":99374,"Directional":true}]},{"ID":19065,"SourceStructureID":99388,"TargetStructureID":485,"Label":"99388-485 via Conventional from 99389 -> 99387","Type":"Conventional","Directional":true,"Links":[{"SourceID":99389,"TargetID":99387,"Directional":true}]},{"ID":19066,"SourceStructureID":99395,"TargetStructureID":485,"Label":"99395-485 via Conventional from 99396 -> 99393","Type":"Conventional","Directional":true,"Links":[{"SourceID":99396,"TargetID":99393,"Directional":true}]},{"ID":19067,"SourceStructureID":99426,"TargetStructureID":1724,"Label":"99426-1724 via Conventional from 99427 -> 99428","Type":"Conventional","Directional":true,"Links":[{"SourceID":99427,"TargetID":99428,"Directional":true}]},{"ID":19068,"SourceStructureID":99435,"TargetStructureID":1724,"Label":"99435-1724 via Conventional from 99436 -> 47389","Type":"Conventional","Directional":true,"Links":[{"SourceID":99436,"TargetID":47389,"Directional":true}]},{"ID":19069,"SourceStructureID":99435,"TargetStructureID":6406,"Label":"99435-6406 via Conventional from 101690 -> 101691","Type":"Conventional","Directional":true,"Links":[{"SourceID":101690,"TargetID":101691,"Directional":true}]},{"ID":19070,"SourceStructureID":99443,"TargetStructureID":485,"Label":"99443-485 via Conventional from 99444 -> 50863","Type":"Conventional","Directional":true,"Links":[{"SourceID":99444,"TargetID":50863,"Directional":true}]},{"ID":19071,"SourceStructureID":99447,"TargetStructureID":485,"Label":"99447-485 via Conventional from 99448 -> 50864","Type":"Conventional","Directional":true,"Links":[{"SourceID":99448,"TargetID":50864,"Directional":true}]},{"ID":19072,"SourceStructureID":99453,"TargetStructureID":485,"Label":"99453-485 via Conventional from 99455 -> 50862","Type":"Conventional","Directional":true,"Links":[{"SourceID":99455,"TargetID":50862,"Directional":true}]},{"ID":19073,"SourceStructureID":99463,"TargetStructureID":485,"Label":"99463-485 via Conventional from 99464 -> 50882","Type":"Conventional","Directional":true,"Links":[{"SourceID":99464,"TargetID":50882,"Directional":true}]},{"ID":19074,"SourceStructureID":99465,"TargetStructureID":485,"Label":"99465-485 via Conventional from 99466 -> 50881","Type":"Conventional","Directional":true,"Links":[{"SourceID":99466,"TargetID":50881,"Directional":true}]},{"ID":19075,"SourceStructureID":99468,"TargetStructureID":1724,"Label":"99468-1724 via Conventional from 99469 -> 99470, 99503 -> 4069","Type":"Conventional","Directional":true,"Links":[{"SourceID":99469,"TargetID":99470,"Directional":true},{"SourceID":99503,"TargetID":4069,"Directional":true}]},{"ID":19076,"SourceStructureID":99480,"TargetStructureID":1724,"Label":"99480-1724 via Conventional from 99486 -> 4066, 99487 -> 4066","Type":"Conventional","Directional":true,"Links":[{"SourceID":99486,"TargetID":4066,"Directional":true},{"SourceID":99487,"TargetID":4066,"Directional":true}]},{"ID":19077,"SourceStructureID":99482,"TargetStructureID":309,"Label":"99482-309 via Conventional from 99483 -> 13393","Type":"Conventional","Directional":true,"Links":[{"SourceID":99483,"TargetID":13393,"Directional":true}]},{"ID":19078,"SourceStructureID":99488,"TargetStructureID":1724,"Label":"99488-1724 via Conventional from 99490 -> 4064","Type":"Conventional","Directional":true,"Links":[{"SourceID":99490,"TargetID":4064,"Directional":true}]},{"ID":19079,"SourceStructureID":99498,"TargetStructureID":6156,"Label":"99498-6156 via Conventional from 133370 -> 23270","Type":"Conventional","Directional":true,"Links":[{"SourceID":133370,"TargetID":23270,"Directional":true}]},{"ID":19080,"SourceStructureID":99501,"TargetStructureID":1724,"Label":"99501-1724 via Conventional from 99502 -> 4068","Type":"Conventional","Directional":true,"Links":[{"SourceID":99502,"TargetID":4068,"Directional":true}]},{"ID":19081,"SourceStructureID":99504,"TargetStructureID":1724,"Label":"99504-1724 via Conventional from 99505 -> 4072","Type":"Conventional","Directional":true,"Links":[{"SourceID":99505,"TargetID":4072,"Directional":true}]},{"ID":19082,"SourceStructureID":99513,"TargetStructureID":142,"Label":"99513-142 via Conventional from 129645 -> 92375","Type":"Conventional","Directional":true,"Links":[{"SourceID":129645,"TargetID":92375,"Directional":true}]},{"ID":19083,"SourceStructureID":99513,"TargetStructureID":1724,"Label":"99513-1724 via Conventional from 99514 -> 4050, 101986 -> 101987, 129620 -> 129621","Type":"Conventional","Directional":true,"Links":[{"SourceID":99514,"TargetID":4050,"Directional":true},{"SourceID":101986,"TargetID":101987,"Directional":true},{"SourceID":129620,"TargetID":129621,"Directional":true}]},{"ID":19084,"SourceStructureID":99513,"TargetStructureID":5279,"Label":"99513-5279 via Conventional from 96393 -> 96394, 129640 -> 98658","Type":"Conventional","Directional":true,"Links":[{"SourceID":96393,"TargetID":96394,"Directional":true},{"SourceID":129640,"TargetID":98658,"Directional":true}]},{"ID":19085,"SourceStructureID":99513,"TargetStructureID":6117,"Label":"99513-6117 via Conventional from 129641 -> 129642","Type":"Conventional","Directional":true,"Links":[{"SourceID":129641,"TargetID":129642,"Directional":true}]},{"ID":19086,"SourceStructureID":99513,"TargetStructureID":6912,"Label":"99513-6912 via Conventional from 129622 -> 51139, 129625 -> 48369, 129629 -> 51060","Type":"Conventional","Directional":true,"Links":[{"SourceID":129622,"TargetID":51139,"Directional":true},{"SourceID":129625,"TargetID":48369,"Directional":true},{"SourceID":129629,"TargetID":51060,"Directional":true}]},{"ID":19087,"SourceStructureID":99513,"TargetStructureID":28886,"Label":"99513-28886 via Conventional from 129635 -> 129637","Type":"Conventional","Directional":true,"Links":[{"SourceID":129635,"TargetID":129637,"Directional":true}]},{"ID":19088,"SourceStructureID":99513,"TargetStructureID":37466,"Label":"99513-37466 via Conventional from 129618 -> 37470","Type":"Conventional","Directional":true,"Links":[{"SourceID":129618,"TargetID":37470,"Directional":true}]},{"ID":19089,"SourceStructureID":99513,"TargetStructureID":122484,"Label":"99513-122484 via Conventional from 129633 -> 129634","Type":"Conventional","Directional":true,"Links":[{"SourceID":129633,"TargetID":129634,"Directional":true}]},{"ID":19090,"SourceStructureID":99515,"TargetStructureID":1724,"Label":"99515-1724 via Conventional from 99517 -> 4051","Type":"Conventional","Directional":true,"Links":[{"SourceID":99517,"TargetID":4051,"Directional":true}]},{"ID":19091,"SourceStructureID":99523,"TargetStructureID":485,"Label":"99523-485 via Conventional from 99524 -> 99521","Type":"Conventional","Directional":true,"Links":[{"SourceID":99524,"TargetID":99521,"Directional":true}]},{"ID":19092,"SourceStructureID":99531,"TargetStructureID":1724,"Label":"99531-1724 via Conventional from 99532 -> 4056","Type":"Conventional","Directional":true,"Links":[{"SourceID":99532,"TargetID":4056,"Directional":true}]},{"ID":19093,"SourceStructureID":99536,"TargetStructureID":1724,"Label":"99536-1724 via Conventional from 99537 -> 1801","Type":"Conventional","Directional":true,"Links":[{"SourceID":99537,"TargetID":1801,"Directional":true}]},{"ID":19094,"SourceStructureID":99541,"TargetStructureID":1724,"Label":"99541-1724 via Conventional from 99542 -> 1777","Type":"Conventional","Directional":true,"Links":[{"SourceID":99542,"TargetID":1777,"Directional":true}]},{"ID":19095,"SourceStructureID":99546,"TargetStructureID":1724,"Label":"99546-1724 via Conventional from 99568 -> 1786","Type":"Conventional","Directional":true,"Links":[{"SourceID":99568,"TargetID":1786,"Directional":true}]},{"ID":19096,"SourceStructureID":99560,"TargetStructureID":1724,"Label":"99560-1724 via Conventional from 99561 -> 1794","Type":"Conventional","Directional":true,"Links":[{"SourceID":99561,"TargetID":1794,"Directional":true}]},{"ID":19097,"SourceStructureID":99575,"TargetStructureID":1724,"Label":"99575-1724 via Conventional from 99576 -> 1780, 99580 -> 99581","Type":"Conventional","Directional":true,"Links":[{"SourceID":99576,"TargetID":1780,"Directional":true},{"SourceID":99580,"TargetID":99581,"Directional":true}]},{"ID":19098,"SourceStructureID":99577,"TargetStructureID":1724,"Label":"99577-1724 via Conventional from 99578 -> 99579","Type":"Conventional","Directional":true,"Links":[{"SourceID":99578,"TargetID":99579,"Directional":true}]},{"ID":19099,"SourceStructureID":99586,"TargetStructureID":1724,"Label":"99586-1724 via Conventional from 99587 -> 3976","Type":"Conventional","Directional":true,"Links":[{"SourceID":99587,"TargetID":3976,"Directional":true}]},{"ID":19100,"SourceStructureID":99589,"TargetStructureID":5278,"Label":"99589-5278 via Conventional from 99591 -> 99590","Type":"Conventional","Directional":true,"Links":[{"SourceID":99591,"TargetID":99590,"Directional":true}]},{"ID":19101,"SourceStructureID":99596,"TargetStructureID":5278,"Label":"99596-5278 via Conventional from 99597 -> 92114","Type":"Conventional","Directional":true,"Links":[{"SourceID":99597,"TargetID":92114,"Directional":true}]},{"ID":19102,"SourceStructureID":99602,"TargetStructureID":5278,"Label":"99602-5278 via Conventional from 99603 -> 99604","Type":"Conventional","Directional":true,"Links":[{"SourceID":99603,"TargetID":99604,"Directional":true}]},{"ID":19103,"SourceStructureID":99614,"TargetStructureID":5278,"Label":"99614-5278 via Conventional from 99615 -> 20074","Type":"Conventional","Directional":true,"Links":[{"SourceID":99615,"TargetID":20074,"Directional":true}]},{"ID":19104,"SourceStructureID":99617,"TargetStructureID":485,"Label":"99617-485 via Conventional from 99618 -> 99616","Type":"Conventional","Directional":true,"Links":[{"SourceID":99618,"TargetID":99616,"Directional":true}]},{"ID":19105,"SourceStructureID":99617,"TargetStructureID":99621,"Label":"99617-99621 via Conventional from 99620 -> 99622","Type":"Conventional","Directional":true,"Links":[{"SourceID":99620,"TargetID":99622,"Directional":true}]},{"ID":19106,"SourceStructureID":99628,"TargetStructureID":485,"Label":"99628-485 via Conventional from 99629 -> 99630","Type":"Conventional","Directional":true,"Links":[{"SourceID":99629,"TargetID":99630,"Directional":true}]},{"ID":19107,"SourceStructureID":99632,"TargetStructureID":408,"Label":"99632-408 via Conventional from 99634 -> 35773","Type":"Conventional","Directional":true,"Links":[{"SourceID":99634,"TargetID":35773,"Directional":true}]},{"ID":19108,"SourceStructureID":99632,"TargetStructureID":485,"Label":"99632-485 via Conventional from 99633 -> 99636","Type":"Conventional","Directional":true,"Links":[{"SourceID":99633,"TargetID":99636,"Directional":true}]},{"ID":19109,"SourceStructureID":99642,"TargetStructureID":485,"Label":"99642-485 via Conventional from 99643 -> 99637","Type":"Conventional","Directional":true,"Links":[{"SourceID":99643,"TargetID":99637,"Directional":true}]},{"ID":19110,"SourceStructureID":99644,"TargetStructureID":485,"Label":"99644-485 via Conventional from 99645 -> 99640","Type":"Conventional","Directional":true,"Links":[{"SourceID":99645,"TargetID":99640,"Directional":true}]},{"ID":19111,"SourceStructureID":99647,"TargetStructureID":485,"Label":"99647-485 via Conventional from 99649 -> 99638","Type":"Conventional","Directional":true,"Links":[{"SourceID":99649,"TargetID":99638,"Directional":true}]},{"ID":19112,"SourceStructureID":99701,"TargetStructureID":485,"Label":"99701-485 via Conventional from 99702 -> 99686","Type":"Conventional","Directional":true,"Links":[{"SourceID":99702,"TargetID":99686,"Directional":true}]},{"ID":19113,"SourceStructureID":99703,"TargetStructureID":485,"Label":"99703-485 via Conventional from 99704 -> 99687","Type":"Conventional","Directional":true,"Links":[{"SourceID":99704,"TargetID":99687,"Directional":true}]},{"ID":19114,"SourceStructureID":99719,"TargetStructureID":485,"Label":"99719-485 via Conventional from 99720 -> 99689","Type":"Conventional","Directional":true,"Links":[{"SourceID":99720,"TargetID":99689,"Directional":true}]},{"ID":19115,"SourceStructureID":99722,"TargetStructureID":485,"Label":"99722-485 via Conventional from 99723 -> 99721","Type":"Conventional","Directional":true,"Links":[{"SourceID":99723,"TargetID":99721,"Directional":true}]},{"ID":19116,"SourceStructureID":99737,"TargetStructureID":485,"Label":"99737-485 via Conventional from 99738 -> 99736","Type":"Conventional","Directional":true,"Links":[{"SourceID":99738,"TargetID":99736,"Directional":true}]},{"ID":19117,"SourceStructureID":99741,"TargetStructureID":485,"Label":"99741-485 via Conventional from 99745 -> 99740","Type":"Conventional","Directional":true,"Links":[{"SourceID":99745,"TargetID":99740,"Directional":true}]},{"ID":19118,"SourceStructureID":99741,"TargetStructureID":99737,"Label":"99741-99737 via Conventional from 99743 -> 99744","Type":"Conventional","Directional":true,"Links":[{"SourceID":99743,"TargetID":99744,"Directional":true}]},{"ID":19119,"SourceStructureID":99742,"TargetStructureID":5278,"Label":"99742-5278 via Conventional from 99746 -> 20078","Type":"Conventional","Directional":true,"Links":[{"SourceID":99746,"TargetID":20078,"Directional":true}]},{"ID":19120,"SourceStructureID":99753,"TargetStructureID":485,"Label":"99753-485 via Conventional from 99754 -> 99747","Type":"Conventional","Directional":true,"Links":[{"SourceID":99754,"TargetID":99747,"Directional":true}]},{"ID":19121,"SourceStructureID":99769,"TargetStructureID":5278,"Label":"99769-5278 via Conventional from 99770 -> 20084","Type":"Conventional","Directional":true,"Links":[{"SourceID":99770,"TargetID":20084,"Directional":true}]},{"ID":19122,"SourceStructureID":99771,"TargetStructureID":5278,"Label":"99771-5278 via Conventional from 99772 -> 20083","Type":"Conventional","Directional":true,"Links":[{"SourceID":99772,"TargetID":20083,"Directional":true}]},{"ID":19123,"SourceStructureID":99783,"TargetStructureID":485,"Label":"99783-485 via Conventional from 99833 -> 99834","Type":"Conventional","Directional":true,"Links":[{"SourceID":99833,"TargetID":99834,"Directional":true}]},{"ID":19124,"SourceStructureID":99801,"TargetStructureID":5278,"Label":"99801-5278 via Conventional from 99814 -> 99815","Type":"Conventional","Directional":true,"Links":[{"SourceID":99814,"TargetID":99815,"Directional":true}]},{"ID":19125,"SourceStructureID":99801,"TargetStructureID":5279,"Label":"99801-5279 via Conventional from 99802 -> 99803","Type":"Conventional","Directional":true,"Links":[{"SourceID":99802,"TargetID":99803,"Directional":true}]},{"ID":19126,"SourceStructureID":99804,"TargetStructureID":5279,"Label":"99804-5279 via Conventional from 99805 -> 92677","Type":"Conventional","Directional":true,"Links":[{"SourceID":99805,"TargetID":92677,"Directional":true}]},{"ID":19127,"SourceStructureID":99816,"TargetStructureID":5278,"Label":"99816-5278 via Conventional from 99817 -> 20159","Type":"Conventional","Directional":true,"Links":[{"SourceID":99817,"TargetID":20159,"Directional":true}]},{"ID":19128,"SourceStructureID":99818,"TargetStructureID":5278,"Label":"99818-5278 via Conventional from 99819 -> 20156","Type":"Conventional","Directional":true,"Links":[{"SourceID":99819,"TargetID":20156,"Directional":true}]},{"ID":19129,"SourceStructureID":99829,"TargetStructureID":5278,"Label":"99829-5278 via Conventional from 99830 -> 20167","Type":"Conventional","Directional":true,"Links":[{"SourceID":99830,"TargetID":20167,"Directional":true}]},{"ID":19130,"SourceStructureID":99831,"TargetStructureID":5278,"Label":"99831-5278 via Conventional from 100137 -> 20169","Type":"Conventional","Directional":true,"Links":[{"SourceID":100137,"TargetID":20169,"Directional":true}]},{"ID":19131,"SourceStructureID":99835,"TargetStructureID":485,"Label":"99835-485 via Conventional from 99836 -> 99778","Type":"Conventional","Directional":true,"Links":[{"SourceID":99836,"TargetID":99778,"Directional":true}]},{"ID":19132,"SourceStructureID":99844,"TargetStructureID":485,"Label":"99844-485 via Conventional from 99845 -> 99843, 99846 -> 50684","Type":"Conventional","Directional":true,"Links":[{"SourceID":99845,"TargetID":99843,"Directional":true},{"SourceID":99846,"TargetID":50684,"Directional":true}]},{"ID":19133,"SourceStructureID":99847,"TargetStructureID":485,"Label":"99847-485 via Conventional from 148044 -> 148043","Type":"Conventional","Directional":true,"Links":[{"SourceID":148044,"TargetID":148043,"Directional":true}]},{"ID":19134,"SourceStructureID":99865,"TargetStructureID":485,"Label":"99865-485 via Conventional from 99867 -> 99868","Type":"Conventional","Directional":true,"Links":[{"SourceID":99867,"TargetID":99868,"Directional":true}]},{"ID":19135,"SourceStructureID":99870,"TargetStructureID":485,"Label":"99870-485 via Conventional from 99871 -> 99869","Type":"Conventional","Directional":true,"Links":[{"SourceID":99871,"TargetID":99869,"Directional":true}]},{"ID":19136,"SourceStructureID":99872,"TargetStructureID":485,"Label":"99872-485 via Conventional from 99873 -> 99685","Type":"Conventional","Directional":true,"Links":[{"SourceID":99873,"TargetID":99685,"Directional":true}]},{"ID":19137,"SourceStructureID":99888,"TargetStructureID":485,"Label":"99888-485 via Conventional from 99889 -> 99890","Type":"Conventional","Directional":true,"Links":[{"SourceID":99889,"TargetID":99890,"Directional":true}]},{"ID":19138,"SourceStructureID":99891,"TargetStructureID":485,"Label":"99891-485 via Conventional from 99892 -> 99893","Type":"Conventional","Directional":true,"Links":[{"SourceID":99892,"TargetID":99893,"Directional":true}]},{"ID":19139,"SourceStructureID":99898,"TargetStructureID":99898,"Label":"99898-99898 via BC Conventional Synapse from 99899 -> 99900","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99899,"TargetID":99900,"Directional":true}]},{"ID":19140,"SourceStructureID":99901,"TargetStructureID":485,"Label":"99901-485 via Conventional from 148023 -> 148022","Type":"Conventional","Directional":true,"Links":[{"SourceID":148023,"TargetID":148022,"Directional":true}]},{"ID":19141,"SourceStructureID":99922,"TargetStructureID":485,"Label":"99922-485 via Conventional from 99923 -> 99921","Type":"Conventional","Directional":true,"Links":[{"SourceID":99923,"TargetID":99921,"Directional":true}]},{"ID":19142,"SourceStructureID":99930,"TargetStructureID":485,"Label":"99930-485 via Conventional from 99931 -> 99929","Type":"Conventional","Directional":true,"Links":[{"SourceID":99931,"TargetID":99929,"Directional":true}]},{"ID":19143,"SourceStructureID":99941,"TargetStructureID":485,"Label":"99941-485 via Conventional from 99942 -> 99940","Type":"Conventional","Directional":true,"Links":[{"SourceID":99942,"TargetID":99940,"Directional":true}]},{"ID":19144,"SourceStructureID":99941,"TargetStructureID":46823,"Label":"99941-46823 via Conventional from 99947 -> 46851","Type":"Conventional","Directional":true,"Links":[{"SourceID":99947,"TargetID":46851,"Directional":true}]},{"ID":19145,"SourceStructureID":99948,"TargetStructureID":485,"Label":"99948-485 via Conventional from 99949 -> 99950","Type":"Conventional","Directional":true,"Links":[{"SourceID":99949,"TargetID":99950,"Directional":true}]},{"ID":19146,"SourceStructureID":99960,"TargetStructureID":18576,"Label":"99960-18576 via Conventional from 99962 -> 99964","Type":"Conventional","Directional":true,"Links":[{"SourceID":99962,"TargetID":99964,"Directional":true}]},{"ID":19147,"SourceStructureID":99970,"TargetStructureID":485,"Label":"99970-485 via Conventional from 99971 -> 99969","Type":"Conventional","Directional":true,"Links":[{"SourceID":99971,"TargetID":99969,"Directional":true}]},{"ID":19148,"SourceStructureID":99981,"TargetStructureID":485,"Label":"99981-485 via Conventional from 99982 -> 99980","Type":"Conventional","Directional":true,"Links":[{"SourceID":99982,"TargetID":99980,"Directional":true}]},{"ID":19149,"SourceStructureID":99984,"TargetStructureID":606,"Label":"99984-606 via Conventional from 148019 -> 45518","Type":"Conventional","Directional":true,"Links":[{"SourceID":148019,"TargetID":45518,"Directional":true}]},{"ID":19150,"SourceStructureID":99995,"TargetStructureID":485,"Label":"99995-485 via Conventional from 134099 -> 134100","Type":"Conventional","Directional":true,"Links":[{"SourceID":134099,"TargetID":134100,"Directional":true}]},{"ID":19151,"SourceStructureID":100006,"TargetStructureID":485,"Label":"100006-485 via Conventional from 100008 -> 99904","Type":"Conventional","Directional":true,"Links":[{"SourceID":100008,"TargetID":99904,"Directional":true}]},{"ID":19152,"SourceStructureID":100010,"TargetStructureID":485,"Label":"100010-485 via Conventional from 100011 -> 100012","Type":"Conventional","Directional":true,"Links":[{"SourceID":100011,"TargetID":100012,"Directional":true}]},{"ID":19153,"SourceStructureID":100014,"TargetStructureID":485,"Label":"100014-485 via Conventional from 100015 -> 29182","Type":"Conventional","Directional":true,"Links":[{"SourceID":100015,"TargetID":29182,"Directional":true}]},{"ID":19154,"SourceStructureID":100018,"TargetStructureID":485,"Label":"100018-485 via Conventional from 100019 -> 29183","Type":"Conventional","Directional":true,"Links":[{"SourceID":100019,"TargetID":29183,"Directional":true}]},{"ID":19155,"SourceStructureID":100020,"TargetStructureID":485,"Label":"100020-485 via Conventional from 100021 -> 29185","Type":"Conventional","Directional":true,"Links":[{"SourceID":100021,"TargetID":29185,"Directional":true}]},{"ID":19156,"SourceStructureID":100027,"TargetStructureID":485,"Label":"100027-485 via Conventional from 100028 -> 100026","Type":"Conventional","Directional":true,"Links":[{"SourceID":100028,"TargetID":100026,"Directional":true}]},{"ID":19157,"SourceStructureID":100029,"TargetStructureID":485,"Label":"100029-485 via Conventional from 100030 -> 100025","Type":"Conventional","Directional":true,"Links":[{"SourceID":100030,"TargetID":100025,"Directional":true}]},{"ID":19158,"SourceStructureID":100035,"TargetStructureID":485,"Label":"100035-485 via Conventional from 100036 -> 100031, 100037 -> 29188","Type":"Conventional","Directional":true,"Links":[{"SourceID":100036,"TargetID":100031,"Directional":true},{"SourceID":100037,"TargetID":29188,"Directional":true}]},{"ID":19159,"SourceStructureID":100038,"TargetStructureID":485,"Label":"100038-485 via Conventional from 100039 -> 29187","Type":"Conventional","Directional":true,"Links":[{"SourceID":100039,"TargetID":29187,"Directional":true}]},{"ID":19160,"SourceStructureID":100055,"TargetStructureID":485,"Label":"100055-485 via Conventional from 100056 -> 100054","Type":"Conventional","Directional":true,"Links":[{"SourceID":100056,"TargetID":100054,"Directional":true}]},{"ID":19161,"SourceStructureID":100067,"TargetStructureID":485,"Label":"100067-485 via Conventional from 148033 -> 148032","Type":"Conventional","Directional":true,"Links":[{"SourceID":148033,"TargetID":148032,"Directional":true}]},{"ID":19162,"SourceStructureID":100075,"TargetStructureID":309,"Label":"100075-309 via Conventional from 100079 -> 13370","Type":"Conventional","Directional":true,"Links":[{"SourceID":100079,"TargetID":13370,"Directional":true}]},{"ID":19163,"SourceStructureID":100075,"TargetStructureID":485,"Label":"100075-485 via Conventional from 100080 -> 29191","Type":"Conventional","Directional":true,"Links":[{"SourceID":100080,"TargetID":29191,"Directional":true}]},{"ID":19164,"SourceStructureID":100076,"TargetStructureID":330,"Label":"100076-330 via Conventional from 100078 -> 25916","Type":"Conventional","Directional":true,"Links":[{"SourceID":100078,"TargetID":25916,"Directional":true}]},{"ID":19165,"SourceStructureID":100076,"TargetStructureID":45629,"Label":"100076-45629 via Conventional from 100077 -> 45635","Type":"Conventional","Directional":true,"Links":[{"SourceID":100077,"TargetID":45635,"Directional":true}]},{"ID":19166,"SourceStructureID":100084,"TargetStructureID":485,"Label":"100084-485 via Conventional from 100085 -> 100086","Type":"Conventional","Directional":true,"Links":[{"SourceID":100085,"TargetID":100086,"Directional":true}]},{"ID":19167,"SourceStructureID":100092,"TargetStructureID":485,"Label":"100092-485 via Conventional from 100093 -> 100091","Type":"Conventional","Directional":true,"Links":[{"SourceID":100093,"TargetID":100091,"Directional":true}]},{"ID":19168,"SourceStructureID":100102,"TargetStructureID":485,"Label":"100102-485 via Conventional from 100103 -> 100101","Type":"Conventional","Directional":true,"Links":[{"SourceID":100103,"TargetID":100101,"Directional":true}]},{"ID":19169,"SourceStructureID":100108,"TargetStructureID":485,"Label":"100108-485 via Conventional from 100109 -> 51029","Type":"Conventional","Directional":true,"Links":[{"SourceID":100109,"TargetID":51029,"Directional":true}]},{"ID":19170,"SourceStructureID":100110,"TargetStructureID":5278,"Label":"100110-5278 via Conventional from 100120 -> 20175","Type":"Conventional","Directional":true,"Links":[{"SourceID":100120,"TargetID":20175,"Directional":true}]},{"ID":19171,"SourceStructureID":100113,"TargetStructureID":485,"Label":"100113-485 via Conventional from 100114 -> 51070","Type":"Conventional","Directional":true,"Links":[{"SourceID":100114,"TargetID":51070,"Directional":true}]},{"ID":19172,"SourceStructureID":100135,"TargetStructureID":485,"Label":"100135-485 via Conventional from 100136 -> 100138","Type":"Conventional","Directional":true,"Links":[{"SourceID":100136,"TargetID":100138,"Directional":true}]},{"ID":19173,"SourceStructureID":100146,"TargetStructureID":485,"Label":"100146-485 via Conventional from 100150 -> 50922","Type":"Conventional","Directional":true,"Links":[{"SourceID":100150,"TargetID":50922,"Directional":true}]},{"ID":19174,"SourceStructureID":100147,"TargetStructureID":485,"Label":"100147-485 via Conventional from 100148 -> 50921","Type":"Conventional","Directional":true,"Links":[{"SourceID":100148,"TargetID":50921,"Directional":true}]},{"ID":19175,"SourceStructureID":100152,"TargetStructureID":5278,"Label":"100152-5278 via Conventional from 100155 -> 20166","Type":"Conventional","Directional":true,"Links":[{"SourceID":100155,"TargetID":20166,"Directional":true}]},{"ID":19176,"SourceStructureID":100153,"TargetStructureID":485,"Label":"100153-485 via Conventional from 100154 -> 51072","Type":"Conventional","Directional":true,"Links":[{"SourceID":100154,"TargetID":51072,"Directional":true}]},{"ID":19177,"SourceStructureID":100173,"TargetStructureID":485,"Label":"100173-485 via Conventional from 100185 -> 50691","Type":"Conventional","Directional":true,"Links":[{"SourceID":100185,"TargetID":50691,"Directional":true}]},{"ID":19178,"SourceStructureID":100176,"TargetStructureID":485,"Label":"100176-485 via Conventional from 100177 -> 50852, 100178 -> 50692","Type":"Conventional","Directional":true,"Links":[{"SourceID":100177,"TargetID":50852,"Directional":true},{"SourceID":100178,"TargetID":50692,"Directional":true}]},{"ID":19179,"SourceStructureID":100180,"TargetStructureID":485,"Label":"100180-485 via Conventional from 100181 -> 50688","Type":"Conventional","Directional":true,"Links":[{"SourceID":100181,"TargetID":50688,"Directional":true}]},{"ID":19180,"SourceStructureID":100182,"TargetStructureID":42423,"Label":"100182-42423 via Conventional from 100183 -> 42430","Type":"Conventional","Directional":true,"Links":[{"SourceID":100183,"TargetID":42430,"Directional":true}]},{"ID":19181,"SourceStructureID":100187,"TargetStructureID":485,"Label":"100187-485 via Conventional from 100188 -> 100190","Type":"Conventional","Directional":true,"Links":[{"SourceID":100188,"TargetID":100190,"Directional":true}]},{"ID":19182,"SourceStructureID":100189,"TargetStructureID":42423,"Label":"100189-42423 via Ribbon Synapse from 100191 -> 100184","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100191,"TargetID":100184,"Directional":true}]},{"ID":19183,"SourceStructureID":100217,"TargetStructureID":485,"Label":"100217-485 via Conventional from 100219 -> 100220","Type":"Conventional","Directional":true,"Links":[{"SourceID":100219,"TargetID":100220,"Directional":true}]},{"ID":19184,"SourceStructureID":100239,"TargetStructureID":1724,"Label":"100239-1724 via Conventional from 100240 -> 100241","Type":"Conventional","Directional":true,"Links":[{"SourceID":100240,"TargetID":100241,"Directional":true}]},{"ID":19185,"SourceStructureID":100254,"TargetStructureID":1724,"Label":"100254-1724 via Conventional from 100255 -> 43310","Type":"Conventional","Directional":true,"Links":[{"SourceID":100255,"TargetID":43310,"Directional":true}]},{"ID":19186,"SourceStructureID":100256,"TargetStructureID":1724,"Label":"100256-1724 via Conventional from 100259 -> 47395","Type":"Conventional","Directional":true,"Links":[{"SourceID":100259,"TargetID":47395,"Directional":true}]},{"ID":19187,"SourceStructureID":100264,"TargetStructureID":485,"Label":"100264-485 via Conventional from 100265 -> 100224, 100267 -> 100268","Type":"Conventional","Directional":true,"Links":[{"SourceID":100265,"TargetID":100224,"Directional":true},{"SourceID":100267,"TargetID":100268,"Directional":true}]},{"ID":19188,"SourceStructureID":100266,"TargetStructureID":1724,"Label":"100266-1724 via Conventional from 100269 -> 100270","Type":"Conventional","Directional":true,"Links":[{"SourceID":100269,"TargetID":100270,"Directional":true}]},{"ID":19189,"SourceStructureID":100275,"TargetStructureID":1724,"Label":"100275-1724 via Conventional from 100276 -> 43313","Type":"Conventional","Directional":true,"Links":[{"SourceID":100276,"TargetID":43313,"Directional":true}]},{"ID":19190,"SourceStructureID":100278,"TargetStructureID":1724,"Label":"100278-1724 via Conventional from 100285 -> 100286","Type":"Conventional","Directional":true,"Links":[{"SourceID":100285,"TargetID":100286,"Directional":true}]},{"ID":19191,"SourceStructureID":100282,"TargetStructureID":485,"Label":"100282-485 via Conventional from 100283 -> 100281","Type":"Conventional","Directional":true,"Links":[{"SourceID":100283,"TargetID":100281,"Directional":true}]},{"ID":19192,"SourceStructureID":100296,"TargetStructureID":485,"Label":"100296-485 via Conventional from 100297 -> 100298","Type":"Conventional","Directional":true,"Links":[{"SourceID":100297,"TargetID":100298,"Directional":true}]},{"ID":19193,"SourceStructureID":100302,"TargetStructureID":485,"Label":"100302-485 via Conventional from 100303 -> 100301","Type":"Conventional","Directional":true,"Links":[{"SourceID":100303,"TargetID":100301,"Directional":true}]},{"ID":19194,"SourceStructureID":100304,"TargetStructureID":485,"Label":"100304-485 via Conventional from 100306 -> 100307","Type":"Conventional","Directional":true,"Links":[{"SourceID":100306,"TargetID":100307,"Directional":true}]},{"ID":19195,"SourceStructureID":100308,"TargetStructureID":485,"Label":"100308-485 via Conventional from 100309 -> 47650","Type":"Conventional","Directional":true,"Links":[{"SourceID":100309,"TargetID":47650,"Directional":true}]},{"ID":19196,"SourceStructureID":100310,"TargetStructureID":1724,"Label":"100310-1724 via Conventional from 100319 -> 100320","Type":"Conventional","Directional":true,"Links":[{"SourceID":100319,"TargetID":100320,"Directional":true}]},{"ID":19197,"SourceStructureID":100322,"TargetStructureID":485,"Label":"100322-485 via Conventional from 100326 -> 51155","Type":"Conventional","Directional":true,"Links":[{"SourceID":100326,"TargetID":51155,"Directional":true}]},{"ID":19198,"SourceStructureID":100332,"TargetStructureID":485,"Label":"100332-485 via Conventional from 100334 -> 100331","Type":"Conventional","Directional":true,"Links":[{"SourceID":100334,"TargetID":100331,"Directional":true}]},{"ID":19199,"SourceStructureID":100335,"TargetStructureID":1724,"Label":"100335-1724 via Conventional from 100336 -> 47366","Type":"Conventional","Directional":true,"Links":[{"SourceID":100336,"TargetID":47366,"Directional":true}]},{"ID":19200,"SourceStructureID":100353,"TargetStructureID":1724,"Label":"100353-1724 via Conventional from 100354 -> 3932","Type":"Conventional","Directional":true,"Links":[{"SourceID":100354,"TargetID":3932,"Directional":true}]},{"ID":19201,"SourceStructureID":100357,"TargetStructureID":485,"Label":"100357-485 via Conventional from 100358 -> 100359","Type":"Conventional","Directional":true,"Links":[{"SourceID":100358,"TargetID":100359,"Directional":true}]},{"ID":19202,"SourceStructureID":100366,"TargetStructureID":1724,"Label":"100366-1724 via Conventional from 100375 -> 100376","Type":"Conventional","Directional":true,"Links":[{"SourceID":100375,"TargetID":100376,"Directional":true}]},{"ID":19203,"SourceStructureID":100371,"TargetStructureID":485,"Label":"100371-485 via Conventional from 100373 -> 100367","Type":"Conventional","Directional":true,"Links":[{"SourceID":100373,"TargetID":100367,"Directional":true}]},{"ID":19204,"SourceStructureID":100374,"TargetStructureID":5278,"Label":"100374-5278 via Conventional from 100377 -> 100378","Type":"Conventional","Directional":true,"Links":[{"SourceID":100377,"TargetID":100378,"Directional":true}]},{"ID":19205,"SourceStructureID":100379,"TargetStructureID":1724,"Label":"100379-1724 via Conventional from 100383 -> 47368","Type":"Conventional","Directional":true,"Links":[{"SourceID":100383,"TargetID":47368,"Directional":true}]},{"ID":19206,"SourceStructureID":100400,"TargetStructureID":5278,"Label":"100400-5278 via Conventional from 100403 -> 8979","Type":"Conventional","Directional":true,"Links":[{"SourceID":100403,"TargetID":8979,"Directional":true}]},{"ID":19207,"SourceStructureID":100401,"TargetStructureID":485,"Label":"100401-485 via Conventional from 100402 -> 51050","Type":"Conventional","Directional":true,"Links":[{"SourceID":100402,"TargetID":51050,"Directional":true}]},{"ID":19208,"SourceStructureID":100413,"TargetStructureID":1724,"Label":"100413-1724 via Conventional from 100415 -> 4025","Type":"Conventional","Directional":true,"Links":[{"SourceID":100415,"TargetID":4025,"Directional":true}]},{"ID":19209,"SourceStructureID":100414,"TargetStructureID":5278,"Label":"100414-5278 via Conventional from 100434 -> 8978","Type":"Conventional","Directional":true,"Links":[{"SourceID":100434,"TargetID":8978,"Directional":true}]},{"ID":19210,"SourceStructureID":100419,"TargetStructureID":1724,"Label":"100419-1724 via Conventional from 100420 -> 100421","Type":"Conventional","Directional":true,"Links":[{"SourceID":100420,"TargetID":100421,"Directional":true}]},{"ID":19211,"SourceStructureID":100426,"TargetStructureID":485,"Label":"100426-485 via Conventional from 100431 -> 51154","Type":"Conventional","Directional":true,"Links":[{"SourceID":100431,"TargetID":51154,"Directional":true}]},{"ID":19212,"SourceStructureID":100445,"TargetStructureID":5278,"Label":"100445-5278 via Conventional from 100446 -> 100447","Type":"Conventional","Directional":true,"Links":[{"SourceID":100446,"TargetID":100447,"Directional":true}]},{"ID":19213,"SourceStructureID":100448,"TargetStructureID":485,"Label":"100448-485 via Conventional from 100449 -> 51151","Type":"Conventional","Directional":true,"Links":[{"SourceID":100449,"TargetID":51151,"Directional":true}]},{"ID":19214,"SourceStructureID":100450,"TargetStructureID":5278,"Label":"100450-5278 via Conventional from 100457 -> 100458","Type":"Conventional","Directional":true,"Links":[{"SourceID":100457,"TargetID":100458,"Directional":true}]},{"ID":19215,"SourceStructureID":100467,"TargetStructureID":18576,"Label":"100467-18576 via Conventional from 100468 -> 100466","Type":"Conventional","Directional":true,"Links":[{"SourceID":100468,"TargetID":100466,"Directional":true}]},{"ID":19216,"SourceStructureID":100479,"TargetStructureID":485,"Label":"100479-485 via Conventional from 100480 -> 100478","Type":"Conventional","Directional":true,"Links":[{"SourceID":100480,"TargetID":100478,"Directional":true}]},{"ID":19217,"SourceStructureID":100498,"TargetStructureID":485,"Label":"100498-485 via Conventional from 100505 -> 100507","Type":"Conventional","Directional":true,"Links":[{"SourceID":100505,"TargetID":100507,"Directional":true}]},{"ID":19218,"SourceStructureID":100503,"TargetStructureID":5278,"Label":"100503-5278 via Conventional from 100504 -> 92148","Type":"Conventional","Directional":true,"Links":[{"SourceID":100504,"TargetID":92148,"Directional":true}]},{"ID":19219,"SourceStructureID":100512,"TargetStructureID":485,"Label":"100512-485 via Conventional from 100513 -> 100506","Type":"Conventional","Directional":true,"Links":[{"SourceID":100513,"TargetID":100506,"Directional":true}]},{"ID":19220,"SourceStructureID":100516,"TargetStructureID":1724,"Label":"100516-1724 via Conventional from 100517 -> 4019","Type":"Conventional","Directional":true,"Links":[{"SourceID":100517,"TargetID":4019,"Directional":true}]},{"ID":19221,"SourceStructureID":100524,"TargetStructureID":5278,"Label":"100524-5278 via Conventional from 100525 -> 100526","Type":"Conventional","Directional":true,"Links":[{"SourceID":100525,"TargetID":100526,"Directional":true}]},{"ID":19222,"SourceStructureID":100541,"TargetStructureID":485,"Label":"100541-485 via Conventional from 100542 -> 100535","Type":"Conventional","Directional":true,"Links":[{"SourceID":100542,"TargetID":100535,"Directional":true}]},{"ID":19223,"SourceStructureID":100546,"TargetStructureID":1724,"Label":"100546-1724 via Conventional from 100549 -> 3978","Type":"Conventional","Directional":true,"Links":[{"SourceID":100549,"TargetID":3978,"Directional":true}]},{"ID":19224,"SourceStructureID":100548,"TargetStructureID":5278,"Label":"100548-5278 via Conventional from 100756 -> 100757","Type":"Conventional","Directional":true,"Links":[{"SourceID":100756,"TargetID":100757,"Directional":true}]},{"ID":19225,"SourceStructureID":100557,"TargetStructureID":1724,"Label":"100557-1724 via Conventional from 100558 -> 3980","Type":"Conventional","Directional":true,"Links":[{"SourceID":100558,"TargetID":3980,"Directional":true}]},{"ID":19226,"SourceStructureID":100564,"TargetStructureID":1724,"Label":"100564-1724 via Conventional from 100571 -> 3936","Type":"Conventional","Directional":true,"Links":[{"SourceID":100571,"TargetID":3936,"Directional":true}]},{"ID":19227,"SourceStructureID":100572,"TargetStructureID":1724,"Label":"100572-1724 via Conventional from 100583 -> 100584","Type":"Conventional","Directional":true,"Links":[{"SourceID":100583,"TargetID":100584,"Directional":true}]},{"ID":19228,"SourceStructureID":100578,"TargetStructureID":485,"Label":"100578-485 via Conventional from 100579 -> 100532","Type":"Conventional","Directional":true,"Links":[{"SourceID":100579,"TargetID":100532,"Directional":true}]},{"ID":19229,"SourceStructureID":100588,"TargetStructureID":100588,"Label":"100588-100588 via Conventional from 148050 -> 100589","Type":"Conventional","Directional":true,"Links":[{"SourceID":148050,"TargetID":100589,"Directional":true}]},{"ID":19230,"SourceStructureID":100593,"TargetStructureID":1724,"Label":"100593-1724 via Conventional from 100598 -> 3942","Type":"Conventional","Directional":true,"Links":[{"SourceID":100598,"TargetID":3942,"Directional":true}]},{"ID":19231,"SourceStructureID":100596,"TargetStructureID":485,"Label":"100596-485 via Conventional from 100597 -> 100595","Type":"Conventional","Directional":true,"Links":[{"SourceID":100597,"TargetID":100595,"Directional":true}]},{"ID":19232,"SourceStructureID":100644,"TargetStructureID":485,"Label":"100644-485 via Conventional from 100645 -> 100643","Type":"Conventional","Directional":true,"Links":[{"SourceID":100645,"TargetID":100643,"Directional":true}]},{"ID":19233,"SourceStructureID":100648,"TargetStructureID":485,"Label":"100648-485 via Conventional from 100649 -> 100650","Type":"Conventional","Directional":true,"Links":[{"SourceID":100649,"TargetID":100650,"Directional":true}]},{"ID":19234,"SourceStructureID":100651,"TargetStructureID":1724,"Label":"100651-1724 via Conventional from 100660 -> 3950","Type":"Conventional","Directional":true,"Links":[{"SourceID":100660,"TargetID":3950,"Directional":true}]},{"ID":19235,"SourceStructureID":100654,"TargetStructureID":485,"Label":"100654-485 via Conventional from 100656 -> 100670","Type":"Conventional","Directional":true,"Links":[{"SourceID":100656,"TargetID":100670,"Directional":true}]},{"ID":19236,"SourceStructureID":100664,"TargetStructureID":1724,"Label":"100664-1724 via Conventional from 100665 -> 100666","Type":"Conventional","Directional":true,"Links":[{"SourceID":100665,"TargetID":100666,"Directional":true}]},{"ID":19237,"SourceStructureID":100667,"TargetStructureID":1724,"Label":"100667-1724 via Conventional from 100668 -> 3953","Type":"Conventional","Directional":true,"Links":[{"SourceID":100668,"TargetID":3953,"Directional":true}]},{"ID":19238,"SourceStructureID":100669,"TargetStructureID":1724,"Label":"100669-1724 via Conventional from 100673 -> 3945","Type":"Conventional","Directional":true,"Links":[{"SourceID":100673,"TargetID":3945,"Directional":true}]},{"ID":19239,"SourceStructureID":100674,"TargetStructureID":1724,"Label":"100674-1724 via Conventional from 100675 -> 100676","Type":"Conventional","Directional":true,"Links":[{"SourceID":100675,"TargetID":100676,"Directional":true}]},{"ID":19240,"SourceStructureID":100677,"TargetStructureID":485,"Label":"100677-485 via Conventional from 100678 -> 100652","Type":"Conventional","Directional":true,"Links":[{"SourceID":100678,"TargetID":100652,"Directional":true}]},{"ID":19241,"SourceStructureID":100692,"TargetStructureID":1724,"Label":"100692-1724 via Conventional from 100694 -> 100696","Type":"Conventional","Directional":true,"Links":[{"SourceID":100694,"TargetID":100696,"Directional":true}]},{"ID":19242,"SourceStructureID":100706,"TargetStructureID":485,"Label":"100706-485 via Conventional from 100707 -> 51089","Type":"Conventional","Directional":true,"Links":[{"SourceID":100707,"TargetID":51089,"Directional":true}]},{"ID":19243,"SourceStructureID":100709,"TargetStructureID":485,"Label":"100709-485 via Conventional from 100710 -> 100708","Type":"Conventional","Directional":true,"Links":[{"SourceID":100710,"TargetID":100708,"Directional":true}]},{"ID":19244,"SourceStructureID":100713,"TargetStructureID":485,"Label":"100713-485 via Conventional from 100714 -> 51087","Type":"Conventional","Directional":true,"Links":[{"SourceID":100714,"TargetID":51087,"Directional":true}]},{"ID":19245,"SourceStructureID":100729,"TargetStructureID":485,"Label":"100729-485 via Conventional from 100730 -> 100728","Type":"Conventional","Directional":true,"Links":[{"SourceID":100730,"TargetID":100728,"Directional":true}]},{"ID":19246,"SourceStructureID":100733,"TargetStructureID":100737,"Label":"100733-100737 via Conventional from 100736 -> 100738","Type":"Conventional","Directional":true,"Links":[{"SourceID":100736,"TargetID":100738,"Directional":true}]},{"ID":19247,"SourceStructureID":100741,"TargetStructureID":485,"Label":"100741-485 via Conventional from 100742 -> 47524","Type":"Conventional","Directional":true,"Links":[{"SourceID":100742,"TargetID":47524,"Directional":true}]},{"ID":19248,"SourceStructureID":100741,"TargetStructureID":24401,"Label":"100741-24401 via Conventional from 100743 -> 34747","Type":"Conventional","Directional":true,"Links":[{"SourceID":100743,"TargetID":34747,"Directional":true}]},{"ID":19249,"SourceStructureID":100744,"TargetStructureID":485,"Label":"100744-485 via Conventional from 100755 -> 47527","Type":"Conventional","Directional":true,"Links":[{"SourceID":100755,"TargetID":47527,"Directional":true}]},{"ID":19250,"SourceStructureID":100745,"TargetStructureID":485,"Label":"100745-485 via Conventional from 100760 -> 47526","Type":"Conventional","Directional":true,"Links":[{"SourceID":100760,"TargetID":47526,"Directional":true}]},{"ID":19251,"SourceStructureID":100763,"TargetStructureID":5278,"Label":"100763-5278 via Conventional from 147291 -> 147292","Type":"Conventional","Directional":true,"Links":[{"SourceID":147291,"TargetID":147292,"Directional":true}]},{"ID":19252,"SourceStructureID":100765,"TargetStructureID":3116,"Label":"100765-3116 via Conventional from 100766 -> 28000","Type":"Conventional","Directional":true,"Links":[{"SourceID":100766,"TargetID":28000,"Directional":true}]},{"ID":19253,"SourceStructureID":100771,"TargetStructureID":485,"Label":"100771-485 via Conventional from 100772 -> 100770","Type":"Conventional","Directional":true,"Links":[{"SourceID":100772,"TargetID":100770,"Directional":true}]},{"ID":19254,"SourceStructureID":100771,"TargetStructureID":100787,"Label":"100771-100787 via Conventional from 100784 -> 100789","Type":"Conventional","Directional":true,"Links":[{"SourceID":100784,"TargetID":100789,"Directional":true}]},{"ID":19255,"SourceStructureID":100775,"TargetStructureID":5278,"Label":"100775-5278 via Conventional from 147294 -> 147293","Type":"Conventional","Directional":true,"Links":[{"SourceID":147294,"TargetID":147293,"Directional":true}]},{"ID":19256,"SourceStructureID":100780,"TargetStructureID":5279,"Label":"100780-5279 via Conventional from 100783 -> 49214","Type":"Conventional","Directional":true,"Links":[{"SourceID":100783,"TargetID":49214,"Directional":true}]},{"ID":19257,"SourceStructureID":100808,"TargetStructureID":4568,"Label":"100808-4568 via Conventional from 100809 -> 11579","Type":"Conventional","Directional":true,"Links":[{"SourceID":100809,"TargetID":11579,"Directional":true}]},{"ID":19258,"SourceStructureID":100816,"TargetStructureID":5278,"Label":"100816-5278 via Conventional from 147302 -> 147301","Type":"Conventional","Directional":true,"Links":[{"SourceID":147302,"TargetID":147301,"Directional":true}]},{"ID":19259,"SourceStructureID":100819,"TargetStructureID":485,"Label":"100819-485 via Conventional from 100821 -> 47620","Type":"Conventional","Directional":true,"Links":[{"SourceID":100821,"TargetID":47620,"Directional":true}]},{"ID":19260,"SourceStructureID":100820,"TargetStructureID":485,"Label":"100820-485 via Conventional from 100823 -> 47619","Type":"Conventional","Directional":true,"Links":[{"SourceID":100823,"TargetID":47619,"Directional":true}]},{"ID":19261,"SourceStructureID":100826,"TargetStructureID":485,"Label":"100826-485 via Conventional from 100827 -> 100833","Type":"Conventional","Directional":true,"Links":[{"SourceID":100827,"TargetID":100833,"Directional":true}]},{"ID":19262,"SourceStructureID":100828,"TargetStructureID":5278,"Label":"100828-5278 via Conventional from 103961 -> 103962","Type":"Conventional","Directional":true,"Links":[{"SourceID":103961,"TargetID":103962,"Directional":true}]},{"ID":19263,"SourceStructureID":100834,"TargetStructureID":142,"Label":"100834-142 via Conventional from 126139 -> 126138","Type":"Conventional","Directional":true,"Links":[{"SourceID":126139,"TargetID":126138,"Directional":true}]},{"ID":19264,"SourceStructureID":100835,"TargetStructureID":485,"Label":"100835-485 via Conventional from 100836 -> 47627","Type":"Conventional","Directional":true,"Links":[{"SourceID":100836,"TargetID":47627,"Directional":true}]},{"ID":19265,"SourceStructureID":100837,"TargetStructureID":485,"Label":"100837-485 via Conventional from 100838 -> 47624, 100869 -> 100855","Type":"Conventional","Directional":true,"Links":[{"SourceID":100838,"TargetID":47624,"Directional":true},{"SourceID":100869,"TargetID":100855,"Directional":true}]},{"ID":19266,"SourceStructureID":100846,"TargetStructureID":1724,"Label":"100846-1724 via Conventional from 100849 -> 20184","Type":"Conventional","Directional":true,"Links":[{"SourceID":100849,"TargetID":20184,"Directional":true}]},{"ID":19267,"SourceStructureID":100850,"TargetStructureID":485,"Label":"100850-485 via Conventional from 100854 -> 100848","Type":"Conventional","Directional":true,"Links":[{"SourceID":100854,"TargetID":100848,"Directional":true}]},{"ID":19268,"SourceStructureID":100852,"TargetStructureID":1724,"Label":"100852-1724 via Conventional from 100863 -> 100864","Type":"Conventional","Directional":true,"Links":[{"SourceID":100863,"TargetID":100864,"Directional":true}]},{"ID":19269,"SourceStructureID":100853,"TargetStructureID":1724,"Label":"100853-1724 via Conventional from 100858 -> 100859","Type":"Conventional","Directional":true,"Links":[{"SourceID":100858,"TargetID":100859,"Directional":true}]},{"ID":19270,"SourceStructureID":100865,"TargetStructureID":1724,"Label":"100865-1724 via Conventional from 100866 -> 100867","Type":"Conventional","Directional":true,"Links":[{"SourceID":100866,"TargetID":100867,"Directional":true}]},{"ID":19271,"SourceStructureID":100871,"TargetStructureID":1724,"Label":"100871-1724 via Conventional from 100872 -> 20188","Type":"Conventional","Directional":true,"Links":[{"SourceID":100872,"TargetID":20188,"Directional":true}]},{"ID":19272,"SourceStructureID":100874,"TargetStructureID":1724,"Label":"100874-1724 via Conventional from 100875 -> 100876","Type":"Conventional","Directional":true,"Links":[{"SourceID":100875,"TargetID":100876,"Directional":true}]},{"ID":19273,"SourceStructureID":100882,"TargetStructureID":1724,"Label":"100882-1724 via Conventional from 100886 -> 20190","Type":"Conventional","Directional":true,"Links":[{"SourceID":100886,"TargetID":20190,"Directional":true}]},{"ID":19274,"SourceStructureID":100888,"TargetStructureID":1724,"Label":"100888-1724 via Conventional from 100889 -> 100890","Type":"Conventional","Directional":true,"Links":[{"SourceID":100889,"TargetID":100890,"Directional":true}]},{"ID":19275,"SourceStructureID":100895,"TargetStructureID":485,"Label":"100895-485 via Conventional from 100904 -> 100905","Type":"Conventional","Directional":true,"Links":[{"SourceID":100904,"TargetID":100905,"Directional":true}]},{"ID":19276,"SourceStructureID":100896,"TargetStructureID":1724,"Label":"100896-1724 via Conventional from 100897 -> 100898","Type":"Conventional","Directional":true,"Links":[{"SourceID":100897,"TargetID":100898,"Directional":true}]},{"ID":19277,"SourceStructureID":100913,"TargetStructureID":485,"Label":"100913-485 via Conventional from 100914 -> 100912","Type":"Conventional","Directional":true,"Links":[{"SourceID":100914,"TargetID":100912,"Directional":true}]},{"ID":19278,"SourceStructureID":100931,"TargetStructureID":485,"Label":"100931-485 via Conventional from 100932 -> 100930","Type":"Conventional","Directional":true,"Links":[{"SourceID":100932,"TargetID":100930,"Directional":true}]},{"ID":19279,"SourceStructureID":100934,"TargetStructureID":485,"Label":"100934-485 via Conventional from 100935 -> 100933","Type":"Conventional","Directional":true,"Links":[{"SourceID":100935,"TargetID":100933,"Directional":true}]},{"ID":19280,"SourceStructureID":100953,"TargetStructureID":485,"Label":"100953-485 via Conventional from 100958 -> 100951","Type":"Conventional","Directional":true,"Links":[{"SourceID":100958,"TargetID":100951,"Directional":true}]},{"ID":19281,"SourceStructureID":100953,"TargetStructureID":101015,"Label":"100953-101015 via Conventional from 101019 -> 101018","Type":"Conventional","Directional":true,"Links":[{"SourceID":101019,"TargetID":101018,"Directional":true}]},{"ID":19282,"SourceStructureID":100972,"TargetStructureID":485,"Label":"100972-485 via Conventional from 100973 -> 100970","Type":"Conventional","Directional":true,"Links":[{"SourceID":100973,"TargetID":100970,"Directional":true}]},{"ID":19283,"SourceStructureID":100972,"TargetStructureID":100913,"Label":"100972-100913 via Conventional from 100974 -> 100916","Type":"Conventional","Directional":true,"Links":[{"SourceID":100974,"TargetID":100916,"Directional":true}]},{"ID":19284,"SourceStructureID":100981,"TargetStructureID":485,"Label":"100981-485 via Conventional from 100982 -> 100983","Type":"Conventional","Directional":true,"Links":[{"SourceID":100982,"TargetID":100983,"Directional":true}]},{"ID":19285,"SourceStructureID":101000,"TargetStructureID":485,"Label":"101000-485 via Conventional from 101001 -> 101002","Type":"Conventional","Directional":true,"Links":[{"SourceID":101001,"TargetID":101002,"Directional":true}]},{"ID":19286,"SourceStructureID":101004,"TargetStructureID":485,"Label":"101004-485 via Conventional from 101005 -> 101003","Type":"Conventional","Directional":true,"Links":[{"SourceID":101005,"TargetID":101003,"Directional":true}]},{"ID":19287,"SourceStructureID":101015,"TargetStructureID":485,"Label":"101015-485 via Conventional from 101016 -> 101014","Type":"Conventional","Directional":true,"Links":[{"SourceID":101016,"TargetID":101014,"Directional":true}]},{"ID":19288,"SourceStructureID":101034,"TargetStructureID":485,"Label":"101034-485 via Conventional from 101035 -> 101036","Type":"Conventional","Directional":true,"Links":[{"SourceID":101035,"TargetID":101036,"Directional":true}]},{"ID":19289,"SourceStructureID":101041,"TargetStructureID":485,"Label":"101041-485 via Conventional from 101044 -> 101037","Type":"Conventional","Directional":true,"Links":[{"SourceID":101044,"TargetID":101037,"Directional":true}]},{"ID":19290,"SourceStructureID":101045,"TargetStructureID":485,"Label":"101045-485 via Conventional from 101046 -> 101038","Type":"Conventional","Directional":true,"Links":[{"SourceID":101046,"TargetID":101038,"Directional":true}]},{"ID":19291,"SourceStructureID":101050,"TargetStructureID":485,"Label":"101050-485 via Conventional from 101051 -> 101049, 101056 -> 101057","Type":"Conventional","Directional":true,"Links":[{"SourceID":101051,"TargetID":101049,"Directional":true},{"SourceID":101056,"TargetID":101057,"Directional":true}]},{"ID":19292,"SourceStructureID":101075,"TargetStructureID":485,"Label":"101075-485 via Conventional from 101076 -> 101077","Type":"Conventional","Directional":true,"Links":[{"SourceID":101076,"TargetID":101077,"Directional":true}]},{"ID":19293,"SourceStructureID":101085,"TargetStructureID":485,"Label":"101085-485 via Conventional from 101086 -> 101084","Type":"Conventional","Directional":true,"Links":[{"SourceID":101086,"TargetID":101084,"Directional":true}]},{"ID":19294,"SourceStructureID":101090,"TargetStructureID":485,"Label":"101090-485 via Conventional from 101091 -> 50886","Type":"Conventional","Directional":true,"Links":[{"SourceID":101091,"TargetID":50886,"Directional":true}]},{"ID":19295,"SourceStructureID":101099,"TargetStructureID":485,"Label":"101099-485 via Conventional from 101100 -> 101098","Type":"Conventional","Directional":true,"Links":[{"SourceID":101100,"TargetID":101098,"Directional":true}]},{"ID":19296,"SourceStructureID":101108,"TargetStructureID":485,"Label":"101108-485 via Conventional from 101109 -> 101110","Type":"Conventional","Directional":true,"Links":[{"SourceID":101109,"TargetID":101110,"Directional":true}]},{"ID":19297,"SourceStructureID":101115,"TargetStructureID":485,"Label":"101115-485 via Conventional from 101116 -> 35123","Type":"Conventional","Directional":true,"Links":[{"SourceID":101116,"TargetID":35123,"Directional":true}]},{"ID":19298,"SourceStructureID":101117,"TargetStructureID":485,"Label":"101117-485 via Conventional from 101118 -> 35125","Type":"Conventional","Directional":true,"Links":[{"SourceID":101118,"TargetID":35125,"Directional":true}]},{"ID":19299,"SourceStructureID":101124,"TargetStructureID":485,"Label":"101124-485 via Conventional from 101125 -> 101123","Type":"Conventional","Directional":true,"Links":[{"SourceID":101125,"TargetID":101123,"Directional":true}]},{"ID":19300,"SourceStructureID":101129,"TargetStructureID":485,"Label":"101129-485 via Conventional from 101131 -> 47542","Type":"Conventional","Directional":true,"Links":[{"SourceID":101131,"TargetID":47542,"Directional":true}]},{"ID":19301,"SourceStructureID":101142,"TargetStructureID":485,"Label":"101142-485 via Conventional from 101143 -> 101141","Type":"Conventional","Directional":true,"Links":[{"SourceID":101143,"TargetID":101141,"Directional":true}]},{"ID":19302,"SourceStructureID":101161,"TargetStructureID":485,"Label":"101161-485 via Conventional from 101167 -> 101160","Type":"Conventional","Directional":true,"Links":[{"SourceID":101167,"TargetID":101160,"Directional":true}]},{"ID":19303,"SourceStructureID":101187,"TargetStructureID":483,"Label":"101187-483 via Conventional from 101188 -> 92325","Type":"Conventional","Directional":true,"Links":[{"SourceID":101188,"TargetID":92325,"Directional":true}]},{"ID":19304,"SourceStructureID":101190,"TargetStructureID":485,"Label":"101190-485 via Conventional from 101192 -> 101193","Type":"Conventional","Directional":true,"Links":[{"SourceID":101192,"TargetID":101193,"Directional":true}]},{"ID":19305,"SourceStructureID":101194,"TargetStructureID":485,"Label":"101194-485 via Conventional from 101196 -> 101198","Type":"Conventional","Directional":true,"Links":[{"SourceID":101196,"TargetID":101198,"Directional":true}]},{"ID":19306,"SourceStructureID":101201,"TargetStructureID":485,"Label":"101201-485 via Conventional from 101202 -> 101203","Type":"Conventional","Directional":true,"Links":[{"SourceID":101202,"TargetID":101203,"Directional":true}]},{"ID":19307,"SourceStructureID":101213,"TargetStructureID":485,"Label":"101213-485 via Conventional from 101214 -> 101215","Type":"Conventional","Directional":true,"Links":[{"SourceID":101214,"TargetID":101215,"Directional":true}]},{"ID":19308,"SourceStructureID":101218,"TargetStructureID":485,"Label":"101218-485 via Conventional from 101219 -> 101217","Type":"Conventional","Directional":true,"Links":[{"SourceID":101219,"TargetID":101217,"Directional":true}]},{"ID":19309,"SourceStructureID":101230,"TargetStructureID":485,"Label":"101230-485 via Conventional from 101231 -> 101232","Type":"Conventional","Directional":true,"Links":[{"SourceID":101231,"TargetID":101232,"Directional":true}]},{"ID":19310,"SourceStructureID":101234,"TargetStructureID":419,"Label":"101234-419 via Conventional from 133538 -> 133537","Type":"Conventional","Directional":true,"Links":[{"SourceID":133538,"TargetID":133537,"Directional":true}]},{"ID":19311,"SourceStructureID":101234,"TargetStructureID":485,"Label":"101234-485 via Conventional from 101235 -> 101233","Type":"Conventional","Directional":true,"Links":[{"SourceID":101235,"TargetID":101233,"Directional":true}]},{"ID":19312,"SourceStructureID":101238,"TargetStructureID":101220,"Label":"101238-101220 via Conventional from 101240 -> 101241","Type":"Conventional","Directional":true,"Links":[{"SourceID":101240,"TargetID":101241,"Directional":true}]},{"ID":19313,"SourceStructureID":101243,"TargetStructureID":485,"Label":"101243-485 via Conventional from 101244 -> 101242","Type":"Conventional","Directional":true,"Links":[{"SourceID":101244,"TargetID":101242,"Directional":true}]},{"ID":19314,"SourceStructureID":101247,"TargetStructureID":5563,"Label":"101247-5563 via Conventional from 101293 -> 101297","Type":"Conventional","Directional":true,"Links":[{"SourceID":101293,"TargetID":101297,"Directional":true}]},{"ID":19315,"SourceStructureID":101247,"TargetStructureID":5563,"Label":"101247-5563 via Unknown from 101300 -> 101301","Type":"Unknown","Directional":true,"Links":[{"SourceID":101300,"TargetID":101301,"Directional":true}]},{"ID":19316,"SourceStructureID":101249,"TargetStructureID":485,"Label":"101249-485 via Conventional from 101250 -> 101251","Type":"Conventional","Directional":true,"Links":[{"SourceID":101250,"TargetID":101251,"Directional":true}]},{"ID":19317,"SourceStructureID":101257,"TargetStructureID":485,"Label":"101257-485 via Conventional from 101260 -> 101256","Type":"Conventional","Directional":true,"Links":[{"SourceID":101260,"TargetID":101256,"Directional":true}]},{"ID":19318,"SourceStructureID":101257,"TargetStructureID":101261,"Label":"101257-101261 via Conventional from 101258 -> 101264","Type":"Conventional","Directional":true,"Links":[{"SourceID":101258,"TargetID":101264,"Directional":true}]},{"ID":19319,"SourceStructureID":101277,"TargetStructureID":485,"Label":"101277-485 via Conventional from 101278 -> 101276","Type":"Conventional","Directional":true,"Links":[{"SourceID":101278,"TargetID":101276,"Directional":true}]},{"ID":19320,"SourceStructureID":101287,"TargetStructureID":485,"Label":"101287-485 via Conventional from 101288 -> 101286","Type":"Conventional","Directional":true,"Links":[{"SourceID":101288,"TargetID":101286,"Directional":true}]},{"ID":19321,"SourceStructureID":101314,"TargetStructureID":485,"Label":"101314-485 via Conventional from 101316 -> 101317","Type":"Conventional","Directional":true,"Links":[{"SourceID":101316,"TargetID":101317,"Directional":true}]},{"ID":19322,"SourceStructureID":101318,"TargetStructureID":485,"Label":"101318-485 via Conventional from 101319 -> 47554","Type":"Conventional","Directional":true,"Links":[{"SourceID":101319,"TargetID":47554,"Directional":true}]},{"ID":19323,"SourceStructureID":101324,"TargetStructureID":485,"Label":"101324-485 via Conventional from 101329 -> 101323","Type":"Conventional","Directional":true,"Links":[{"SourceID":101329,"TargetID":101323,"Directional":true}]},{"ID":19324,"SourceStructureID":101325,"TargetStructureID":6156,"Label":"101325-6156 via Conventional from 101327 -> 101280","Type":"Conventional","Directional":true,"Links":[{"SourceID":101327,"TargetID":101280,"Directional":true}]},{"ID":19325,"SourceStructureID":101331,"TargetStructureID":485,"Label":"101331-485 via Conventional from 101335 -> 47547","Type":"Conventional","Directional":true,"Links":[{"SourceID":101335,"TargetID":47547,"Directional":true}]},{"ID":19326,"SourceStructureID":101332,"TargetStructureID":380,"Label":"101332-380 via Conventional from 101333 -> 101334","Type":"Conventional","Directional":true,"Links":[{"SourceID":101333,"TargetID":101334,"Directional":true}]},{"ID":19327,"SourceStructureID":101339,"TargetStructureID":17533,"Label":"101339-17533 via Conventional from 101387 -> 101388","Type":"Conventional","Directional":true,"Links":[{"SourceID":101387,"TargetID":101388,"Directional":true}]},{"ID":19328,"SourceStructureID":101341,"TargetStructureID":485,"Label":"101341-485 via Conventional from 101342 -> 101340","Type":"Conventional","Directional":true,"Links":[{"SourceID":101342,"TargetID":101340,"Directional":true}]},{"ID":19329,"SourceStructureID":101355,"TargetStructureID":485,"Label":"101355-485 via Conventional from 101356 -> 101354","Type":"Conventional","Directional":true,"Links":[{"SourceID":101356,"TargetID":101354,"Directional":true}]},{"ID":19330,"SourceStructureID":101360,"TargetStructureID":485,"Label":"101360-485 via Conventional from 101361 -> 101359","Type":"Conventional","Directional":true,"Links":[{"SourceID":101361,"TargetID":101359,"Directional":true}]},{"ID":19331,"SourceStructureID":101368,"TargetStructureID":485,"Label":"101368-485 via Conventional from 101372 -> 101367","Type":"Conventional","Directional":true,"Links":[{"SourceID":101372,"TargetID":101367,"Directional":true}]},{"ID":19332,"SourceStructureID":101378,"TargetStructureID":485,"Label":"101378-485 via Conventional from 101379 -> 101377","Type":"Conventional","Directional":true,"Links":[{"SourceID":101379,"TargetID":101377,"Directional":true}]},{"ID":19333,"SourceStructureID":101384,"TargetStructureID":485,"Label":"101384-485 via Conventional from 101385 -> 101386","Type":"Conventional","Directional":true,"Links":[{"SourceID":101385,"TargetID":101386,"Directional":true}]},{"ID":19334,"SourceStructureID":101392,"TargetStructureID":485,"Label":"101392-485 via Conventional from 101393 -> 101391","Type":"Conventional","Directional":true,"Links":[{"SourceID":101393,"TargetID":101391,"Directional":true}]},{"ID":19335,"SourceStructureID":101396,"TargetStructureID":485,"Label":"101396-485 via Conventional from 101397 -> 101395","Type":"Conventional","Directional":true,"Links":[{"SourceID":101397,"TargetID":101395,"Directional":true}]},{"ID":19336,"SourceStructureID":101401,"TargetStructureID":11401,"Label":"101401-11401 via Conventional from 102104 -> 102106","Type":"Conventional","Directional":true,"Links":[{"SourceID":102104,"TargetID":102106,"Directional":true}]},{"ID":19337,"SourceStructureID":101402,"TargetStructureID":2610,"Label":"101402-2610 via Conventional from 101403 -> 2833","Type":"Conventional","Directional":true,"Links":[{"SourceID":101403,"TargetID":2833,"Directional":true}]},{"ID":19338,"SourceStructureID":101402,"TargetStructureID":10826,"Label":"101402-10826 via Conventional from 102074 -> 102076, 102075 -> 102077","Type":"Conventional","Directional":true,"Links":[{"SourceID":102074,"TargetID":102076,"Directional":true},{"SourceID":102075,"TargetID":102077,"Directional":true}]},{"ID":19339,"SourceStructureID":101428,"TargetStructureID":485,"Label":"101428-485 via Conventional from 101429 -> 101427, 101432 -> 101433","Type":"Conventional","Directional":true,"Links":[{"SourceID":101429,"TargetID":101427,"Directional":true},{"SourceID":101432,"TargetID":101433,"Directional":true}]},{"ID":19340,"SourceStructureID":101439,"TargetStructureID":485,"Label":"101439-485 via Conventional from 101451 -> 101450","Type":"Conventional","Directional":true,"Links":[{"SourceID":101451,"TargetID":101450,"Directional":true}]},{"ID":19341,"SourceStructureID":101439,"TargetStructureID":6997,"Label":"101439-6997 via Conventional from 101444 -> 101445","Type":"Conventional","Directional":true,"Links":[{"SourceID":101444,"TargetID":101445,"Directional":true}]},{"ID":19342,"SourceStructureID":101439,"TargetStructureID":9693,"Label":"101439-9693 via Conventional from 101441 -> 9890","Type":"Conventional","Directional":true,"Links":[{"SourceID":101441,"TargetID":9890,"Directional":true}]},{"ID":19343,"SourceStructureID":101455,"TargetStructureID":485,"Label":"101455-485 via Conventional from 101456 -> 101454","Type":"Conventional","Directional":true,"Links":[{"SourceID":101456,"TargetID":101454,"Directional":true}]},{"ID":19344,"SourceStructureID":101458,"TargetStructureID":485,"Label":"101458-485 via Conventional from 101459 -> 101457","Type":"Conventional","Directional":true,"Links":[{"SourceID":101459,"TargetID":101457,"Directional":true}]},{"ID":19345,"SourceStructureID":101461,"TargetStructureID":485,"Label":"101461-485 via Conventional from 101462 -> 101460","Type":"Conventional","Directional":true,"Links":[{"SourceID":101462,"TargetID":101460,"Directional":true}]},{"ID":19346,"SourceStructureID":101464,"TargetStructureID":485,"Label":"101464-485 via Conventional from 101465 -> 101463","Type":"Conventional","Directional":true,"Links":[{"SourceID":101465,"TargetID":101463,"Directional":true}]},{"ID":19347,"SourceStructureID":101470,"TargetStructureID":485,"Label":"101470-485 via Conventional from 101471 -> 101469","Type":"Conventional","Directional":true,"Links":[{"SourceID":101471,"TargetID":101469,"Directional":true}]},{"ID":19348,"SourceStructureID":101489,"TargetStructureID":485,"Label":"101489-485 via Conventional from 101490 -> 101491","Type":"Conventional","Directional":true,"Links":[{"SourceID":101490,"TargetID":101491,"Directional":true}]},{"ID":19349,"SourceStructureID":101507,"TargetStructureID":1724,"Label":"101507-1724 via Conventional from 101508 -> 20192","Type":"Conventional","Directional":true,"Links":[{"SourceID":101508,"TargetID":20192,"Directional":true}]},{"ID":19350,"SourceStructureID":101509,"TargetStructureID":1724,"Label":"101509-1724 via Conventional from 101510 -> 20196","Type":"Conventional","Directional":true,"Links":[{"SourceID":101510,"TargetID":20196,"Directional":true}]},{"ID":19351,"SourceStructureID":101513,"TargetStructureID":1724,"Label":"101513-1724 via Conventional from 101514 -> 101515","Type":"Conventional","Directional":true,"Links":[{"SourceID":101514,"TargetID":101515,"Directional":true}]},{"ID":19352,"SourceStructureID":101521,"TargetStructureID":1724,"Label":"101521-1724 via Conventional from 101523 -> 20195","Type":"Conventional","Directional":true,"Links":[{"SourceID":101523,"TargetID":20195,"Directional":true}]},{"ID":19353,"SourceStructureID":101522,"TargetStructureID":1724,"Label":"101522-1724 via Conventional from 101525 -> 20199","Type":"Conventional","Directional":true,"Links":[{"SourceID":101525,"TargetID":20199,"Directional":true}]},{"ID":19354,"SourceStructureID":101527,"TargetStructureID":304,"Label":"101527-304 via Conventional from 101534 -> 101535","Type":"Conventional","Directional":true,"Links":[{"SourceID":101534,"TargetID":101535,"Directional":true}]},{"ID":19355,"SourceStructureID":101528,"TargetStructureID":1724,"Label":"101528-1724 via Conventional from 101529 -> 101530","Type":"Conventional","Directional":true,"Links":[{"SourceID":101529,"TargetID":101530,"Directional":true}]},{"ID":19356,"SourceStructureID":101547,"TargetStructureID":1724,"Label":"101547-1724 via Conventional from 101548 -> 47339","Type":"Conventional","Directional":true,"Links":[{"SourceID":101548,"TargetID":47339,"Directional":true}]},{"ID":19357,"SourceStructureID":101552,"TargetStructureID":1724,"Label":"101552-1724 via Conventional from 101554 -> 1740","Type":"Conventional","Directional":true,"Links":[{"SourceID":101554,"TargetID":1740,"Directional":true}]},{"ID":19358,"SourceStructureID":101553,"TargetStructureID":10897,"Label":"101553-10897 via Conventional from 101562 -> 101563, 101564 -> 101565","Type":"Conventional","Directional":true,"Links":[{"SourceID":101562,"TargetID":101563,"Directional":true},{"SourceID":101564,"TargetID":101565,"Directional":true}]},{"ID":19359,"SourceStructureID":101567,"TargetStructureID":1724,"Label":"101567-1724 via Conventional from 101568 -> 1743","Type":"Conventional","Directional":true,"Links":[{"SourceID":101568,"TargetID":1743,"Directional":true}]},{"ID":19360,"SourceStructureID":101570,"TargetStructureID":1724,"Label":"101570-1724 via Conventional from 101571 -> 3064","Type":"Conventional","Directional":true,"Links":[{"SourceID":101571,"TargetID":3064,"Directional":true}]},{"ID":19361,"SourceStructureID":101574,"TargetStructureID":1724,"Label":"101574-1724 via Conventional from 101575 -> 101576","Type":"Conventional","Directional":true,"Links":[{"SourceID":101575,"TargetID":101576,"Directional":true}]},{"ID":19362,"SourceStructureID":101583,"TargetStructureID":1724,"Label":"101583-1724 via Conventional from 101584 -> 101586","Type":"Conventional","Directional":true,"Links":[{"SourceID":101584,"TargetID":101586,"Directional":true}]},{"ID":19363,"SourceStructureID":101587,"TargetStructureID":1724,"Label":"101587-1724 via Conventional from 101588 -> 101589","Type":"Conventional","Directional":true,"Links":[{"SourceID":101588,"TargetID":101589,"Directional":true}]},{"ID":19364,"SourceStructureID":101590,"TargetStructureID":30477,"Label":"101590-30477 via Conventional from 101591 -> 30482","Type":"Conventional","Directional":true,"Links":[{"SourceID":101591,"TargetID":30482,"Directional":true}]},{"ID":19365,"SourceStructureID":101596,"TargetStructureID":1724,"Label":"101596-1724 via Conventional from 101597 -> 1754","Type":"Conventional","Directional":true,"Links":[{"SourceID":101597,"TargetID":1754,"Directional":true}]},{"ID":19366,"SourceStructureID":101598,"TargetStructureID":1724,"Label":"101598-1724 via Conventional from 101599 -> 1750","Type":"Conventional","Directional":true,"Links":[{"SourceID":101599,"TargetID":1750,"Directional":true}]},{"ID":19367,"SourceStructureID":101600,"TargetStructureID":1724,"Label":"101600-1724 via Conventional from 101601 -> 1752","Type":"Conventional","Directional":true,"Links":[{"SourceID":101601,"TargetID":1752,"Directional":true}]},{"ID":19368,"SourceStructureID":101602,"TargetStructureID":1724,"Label":"101602-1724 via Conventional from 101603 -> 1756","Type":"Conventional","Directional":true,"Links":[{"SourceID":101603,"TargetID":1756,"Directional":true}]},{"ID":19369,"SourceStructureID":101604,"TargetStructureID":1724,"Label":"101604-1724 via Conventional from 101605 -> 47935","Type":"Conventional","Directional":true,"Links":[{"SourceID":101605,"TargetID":47935,"Directional":true}]},{"ID":19370,"SourceStructureID":101606,"TargetStructureID":1724,"Label":"101606-1724 via Conventional from 101607 -> 47936","Type":"Conventional","Directional":true,"Links":[{"SourceID":101607,"TargetID":47936,"Directional":true}]},{"ID":19371,"SourceStructureID":101613,"TargetStructureID":1724,"Label":"101613-1724 via Conventional from 101614 -> 47344","Type":"Conventional","Directional":true,"Links":[{"SourceID":101614,"TargetID":47344,"Directional":true}]},{"ID":19372,"SourceStructureID":101615,"TargetStructureID":1724,"Label":"101615-1724 via Conventional from 101616 -> 47343","Type":"Conventional","Directional":true,"Links":[{"SourceID":101616,"TargetID":47343,"Directional":true}]},{"ID":19373,"SourceStructureID":101623,"TargetStructureID":1724,"Label":"101623-1724 via Conventional from 101628 -> 48483","Type":"Conventional","Directional":true,"Links":[{"SourceID":101628,"TargetID":48483,"Directional":true}]},{"ID":19374,"SourceStructureID":101625,"TargetStructureID":13525,"Label":"101625-13525 via Conventional from 101626 -> 13528","Type":"Conventional","Directional":true,"Links":[{"SourceID":101626,"TargetID":13528,"Directional":true}]},{"ID":19375,"SourceStructureID":101632,"TargetStructureID":30477,"Label":"101632-30477 via Conventional from 101633 -> 30483","Type":"Conventional","Directional":true,"Links":[{"SourceID":101633,"TargetID":30483,"Directional":true}]},{"ID":19376,"SourceStructureID":101640,"TargetStructureID":1724,"Label":"101640-1724 via Conventional from 101641 -> 3987","Type":"Conventional","Directional":true,"Links":[{"SourceID":101641,"TargetID":3987,"Directional":true}]},{"ID":19377,"SourceStructureID":101642,"TargetStructureID":1724,"Label":"101642-1724 via Conventional from 101646 -> 47341","Type":"Conventional","Directional":true,"Links":[{"SourceID":101646,"TargetID":47341,"Directional":true}]},{"ID":19378,"SourceStructureID":101644,"TargetStructureID":31305,"Label":"101644-31305 via Conventional from 101645 -> 101643","Type":"Conventional","Directional":true,"Links":[{"SourceID":101645,"TargetID":101643,"Directional":true}]},{"ID":19379,"SourceStructureID":101647,"TargetStructureID":1724,"Label":"101647-1724 via Conventional from 101649 -> 3990","Type":"Conventional","Directional":true,"Links":[{"SourceID":101649,"TargetID":3990,"Directional":true}]},{"ID":19380,"SourceStructureID":101657,"TargetStructureID":1724,"Label":"101657-1724 via Conventional from 101660 -> 3994","Type":"Conventional","Directional":true,"Links":[{"SourceID":101660,"TargetID":3994,"Directional":true}]},{"ID":19381,"SourceStructureID":101661,"TargetStructureID":1724,"Label":"101661-1724 via Conventional from 101663 -> 4000","Type":"Conventional","Directional":true,"Links":[{"SourceID":101663,"TargetID":4000,"Directional":true}]},{"ID":19382,"SourceStructureID":101662,"TargetStructureID":1724,"Label":"101662-1724 via Conventional from 101665 -> 3998","Type":"Conventional","Directional":true,"Links":[{"SourceID":101665,"TargetID":3998,"Directional":true}]},{"ID":19383,"SourceStructureID":101668,"TargetStructureID":1724,"Label":"101668-1724 via Conventional from 101671 -> 4002","Type":"Conventional","Directional":true,"Links":[{"SourceID":101671,"TargetID":4002,"Directional":true}]},{"ID":19384,"SourceStructureID":101672,"TargetStructureID":1724,"Label":"101672-1724 via Conventional from 101674 -> 4006","Type":"Conventional","Directional":true,"Links":[{"SourceID":101674,"TargetID":4006,"Directional":true}]},{"ID":19385,"SourceStructureID":101677,"TargetStructureID":1724,"Label":"101677-1724 via Conventional from 101678 -> 101679","Type":"Conventional","Directional":true,"Links":[{"SourceID":101678,"TargetID":101679,"Directional":true}]},{"ID":19386,"SourceStructureID":101681,"TargetStructureID":1724,"Label":"101681-1724 via Conventional from 101682 -> 4010","Type":"Conventional","Directional":true,"Links":[{"SourceID":101682,"TargetID":4010,"Directional":true}]},{"ID":19387,"SourceStructureID":101692,"TargetStructureID":1724,"Label":"101692-1724 via Conventional from 101725 -> 47348","Type":"Conventional","Directional":true,"Links":[{"SourceID":101725,"TargetID":47348,"Directional":true}]},{"ID":19388,"SourceStructureID":101693,"TargetStructureID":1724,"Label":"101693-1724 via Conventional from 101694 -> 23719","Type":"Conventional","Directional":true,"Links":[{"SourceID":101694,"TargetID":23719,"Directional":true}]},{"ID":19389,"SourceStructureID":101696,"TargetStructureID":1724,"Label":"101696-1724 via Conventional from 101894 -> 101895","Type":"Conventional","Directional":true,"Links":[{"SourceID":101894,"TargetID":101895,"Directional":true}]},{"ID":19390,"SourceStructureID":101697,"TargetStructureID":1724,"Label":"101697-1724 via Conventional from 101838 -> 23720","Type":"Conventional","Directional":true,"Links":[{"SourceID":101838,"TargetID":23720,"Directional":true}]},{"ID":19391,"SourceStructureID":101707,"TargetStructureID":18282,"Label":"101707-18282 via Conventional from 101709 -> 18304","Type":"Conventional","Directional":true,"Links":[{"SourceID":101709,"TargetID":18304,"Directional":true}]},{"ID":19392,"SourceStructureID":101711,"TargetStructureID":485,"Label":"101711-485 via Conventional from 101712 -> 101710","Type":"Conventional","Directional":true,"Links":[{"SourceID":101712,"TargetID":101710,"Directional":true}]},{"ID":19393,"SourceStructureID":101744,"TargetStructureID":485,"Label":"101744-485 via Conventional from 101745 -> 47557","Type":"Conventional","Directional":true,"Links":[{"SourceID":101745,"TargetID":47557,"Directional":true}]},{"ID":19394,"SourceStructureID":101747,"TargetStructureID":485,"Label":"101747-485 via Conventional from 101748 -> 47556","Type":"Conventional","Directional":true,"Links":[{"SourceID":101748,"TargetID":47556,"Directional":true}]},{"ID":19395,"SourceStructureID":101757,"TargetStructureID":1724,"Label":"101757-1724 via Conventional from 101760 -> 101759","Type":"Conventional","Directional":true,"Links":[{"SourceID":101760,"TargetID":101759,"Directional":true}]},{"ID":19396,"SourceStructureID":101765,"TargetStructureID":485,"Label":"101765-485 via Conventional from 101766 -> 101764","Type":"Conventional","Directional":true,"Links":[{"SourceID":101766,"TargetID":101764,"Directional":true}]},{"ID":19397,"SourceStructureID":101785,"TargetStructureID":485,"Label":"101785-485 via Conventional from 101786 -> 101784, 101810 -> 47565","Type":"Conventional","Directional":true,"Links":[{"SourceID":101786,"TargetID":101784,"Directional":true},{"SourceID":101810,"TargetID":47565,"Directional":true}]},{"ID":19398,"SourceStructureID":101789,"TargetStructureID":1724,"Label":"101789-1724 via Conventional from 101792 -> 101794","Type":"Conventional","Directional":true,"Links":[{"SourceID":101792,"TargetID":101794,"Directional":true}]},{"ID":19399,"SourceStructureID":101790,"TargetStructureID":485,"Label":"101790-485 via Conventional from 101791 -> 101783","Type":"Conventional","Directional":true,"Links":[{"SourceID":101791,"TargetID":101783,"Directional":true}]},{"ID":19400,"SourceStructureID":101802,"TargetStructureID":1724,"Label":"101802-1724 via Conventional from 101803 -> 4098","Type":"Conventional","Directional":true,"Links":[{"SourceID":101803,"TargetID":4098,"Directional":true}]},{"ID":19401,"SourceStructureID":101808,"TargetStructureID":1724,"Label":"101808-1724 via Conventional from 101811 -> 101812","Type":"Conventional","Directional":true,"Links":[{"SourceID":101811,"TargetID":101812,"Directional":true}]},{"ID":19402,"SourceStructureID":101815,"TargetStructureID":485,"Label":"101815-485 via Conventional from 101816 -> 47566, 101911 -> 101912","Type":"Conventional","Directional":true,"Links":[{"SourceID":101816,"TargetID":47566,"Directional":true},{"SourceID":101911,"TargetID":101912,"Directional":true}]},{"ID":19403,"SourceStructureID":101818,"TargetStructureID":1724,"Label":"101818-1724 via Conventional from 101822 -> 101823","Type":"Conventional","Directional":true,"Links":[{"SourceID":101822,"TargetID":101823,"Directional":true}]},{"ID":19404,"SourceStructureID":101819,"TargetStructureID":485,"Label":"101819-485 via Conventional from 101820 -> 101813","Type":"Conventional","Directional":true,"Links":[{"SourceID":101820,"TargetID":101813,"Directional":true}]},{"ID":19405,"SourceStructureID":101826,"TargetStructureID":1724,"Label":"101826-1724 via Conventional from 101827 -> 47349","Type":"Conventional","Directional":true,"Links":[{"SourceID":101827,"TargetID":47349,"Directional":true}]},{"ID":19406,"SourceStructureID":101842,"TargetStructureID":1724,"Label":"101842-1724 via Conventional from 101847 -> 101848","Type":"Conventional","Directional":true,"Links":[{"SourceID":101847,"TargetID":101848,"Directional":true}]},{"ID":19407,"SourceStructureID":101849,"TargetStructureID":1724,"Label":"101849-1724 via Conventional from 101851 -> 101852","Type":"Conventional","Directional":true,"Links":[{"SourceID":101851,"TargetID":101852,"Directional":true}]},{"ID":19408,"SourceStructureID":101850,"TargetStructureID":485,"Label":"101850-485 via Conventional from 101858 -> 23147","Type":"Conventional","Directional":true,"Links":[{"SourceID":101858,"TargetID":23147,"Directional":true}]},{"ID":19409,"SourceStructureID":101855,"TargetStructureID":1724,"Label":"101855-1724 via Conventional from 101857 -> 47374","Type":"Conventional","Directional":true,"Links":[{"SourceID":101857,"TargetID":47374,"Directional":true}]},{"ID":19410,"SourceStructureID":101873,"TargetStructureID":485,"Label":"101873-485 via Conventional from 101874 -> 101871","Type":"Conventional","Directional":true,"Links":[{"SourceID":101874,"TargetID":101871,"Directional":true}]},{"ID":19411,"SourceStructureID":101876,"TargetStructureID":485,"Label":"101876-485 via Conventional from 101877 -> 101878","Type":"Conventional","Directional":true,"Links":[{"SourceID":101877,"TargetID":101878,"Directional":true}]},{"ID":19412,"SourceStructureID":101879,"TargetStructureID":1724,"Label":"101879-1724 via Conventional from 101882 -> 47373","Type":"Conventional","Directional":true,"Links":[{"SourceID":101882,"TargetID":47373,"Directional":true}]},{"ID":19413,"SourceStructureID":101888,"TargetStructureID":1724,"Label":"101888-1724 via Conventional from 101889 -> 32231, 101901 -> 101902","Type":"Conventional","Directional":true,"Links":[{"SourceID":101889,"TargetID":32231,"Directional":true},{"SourceID":101901,"TargetID":101902,"Directional":true}]},{"ID":19414,"SourceStructureID":101913,"TargetStructureID":485,"Label":"101913-485 via Conventional from 101914 -> 101915","Type":"Conventional","Directional":true,"Links":[{"SourceID":101914,"TargetID":101915,"Directional":true}]},{"ID":19415,"SourceStructureID":101926,"TargetStructureID":485,"Label":"101926-485 via Conventional from 101927 -> 101925","Type":"Conventional","Directional":true,"Links":[{"SourceID":101927,"TargetID":101925,"Directional":true}]},{"ID":19416,"SourceStructureID":101935,"TargetStructureID":13525,"Label":"101935-13525 via Conventional from 101943 -> 13530","Type":"Conventional","Directional":true,"Links":[{"SourceID":101943,"TargetID":13530,"Directional":true}]},{"ID":19417,"SourceStructureID":101936,"TargetStructureID":485,"Label":"101936-485 via Conventional from 101937 -> 101939","Type":"Conventional","Directional":true,"Links":[{"SourceID":101937,"TargetID":101939,"Directional":true}]},{"ID":19418,"SourceStructureID":101938,"TargetStructureID":1724,"Label":"101938-1724 via Conventional from 101949 -> 47352","Type":"Conventional","Directional":true,"Links":[{"SourceID":101949,"TargetID":47352,"Directional":true}]},{"ID":19419,"SourceStructureID":101941,"TargetStructureID":485,"Label":"101941-485 via Conventional from 101942 -> 101940","Type":"Conventional","Directional":true,"Links":[{"SourceID":101942,"TargetID":101940,"Directional":true}]},{"ID":19420,"SourceStructureID":101946,"TargetStructureID":1724,"Label":"101946-1724 via Conventional from 101947 -> 101948","Type":"Conventional","Directional":true,"Links":[{"SourceID":101947,"TargetID":101948,"Directional":true}]},{"ID":19421,"SourceStructureID":101952,"TargetStructureID":485,"Label":"101952-485 via Conventional from 101956 -> 101950","Type":"Conventional","Directional":true,"Links":[{"SourceID":101956,"TargetID":101950,"Directional":true}]},{"ID":19422,"SourceStructureID":101958,"TargetStructureID":485,"Label":"101958-485 via Conventional from 101959 -> 101957","Type":"Conventional","Directional":true,"Links":[{"SourceID":101959,"TargetID":101957,"Directional":true}]},{"ID":19423,"SourceStructureID":101961,"TargetStructureID":485,"Label":"101961-485 via Conventional from 101962 -> 101960","Type":"Conventional","Directional":true,"Links":[{"SourceID":101962,"TargetID":101960,"Directional":true}]},{"ID":19424,"SourceStructureID":101969,"TargetStructureID":1724,"Label":"101969-1724 via Conventional from 101970 -> 101971","Type":"Conventional","Directional":true,"Links":[{"SourceID":101970,"TargetID":101971,"Directional":true}]},{"ID":19425,"SourceStructureID":101978,"TargetStructureID":1724,"Label":"101978-1724 via Conventional from 101979 -> 4114","Type":"Conventional","Directional":true,"Links":[{"SourceID":101979,"TargetID":4114,"Directional":true}]},{"ID":19426,"SourceStructureID":101982,"TargetStructureID":1724,"Label":"101982-1724 via Conventional from 101988 -> 4108","Type":"Conventional","Directional":true,"Links":[{"SourceID":101988,"TargetID":4108,"Directional":true}]},{"ID":19427,"SourceStructureID":101985,"TargetStructureID":485,"Label":"101985-485 via Conventional from 101990 -> 101984","Type":"Conventional","Directional":true,"Links":[{"SourceID":101990,"TargetID":101984,"Directional":true}]},{"ID":19428,"SourceStructureID":101989,"TargetStructureID":13525,"Label":"101989-13525 via Conventional from 101991 -> 85365","Type":"Conventional","Directional":true,"Links":[{"SourceID":101991,"TargetID":85365,"Directional":true}]},{"ID":19429,"SourceStructureID":101993,"TargetStructureID":1724,"Label":"101993-1724 via Conventional from 101994 -> 101995","Type":"Conventional","Directional":true,"Links":[{"SourceID":101994,"TargetID":101995,"Directional":true}]},{"ID":19430,"SourceStructureID":102011,"TargetStructureID":1724,"Label":"102011-1724 via Conventional from 102012 -> 4118","Type":"Conventional","Directional":true,"Links":[{"SourceID":102012,"TargetID":4118,"Directional":true}]},{"ID":19431,"SourceStructureID":102014,"TargetStructureID":485,"Label":"102014-485 via Conventional from 102018 -> 102017","Type":"Conventional","Directional":true,"Links":[{"SourceID":102018,"TargetID":102017,"Directional":true}]},{"ID":19432,"SourceStructureID":102020,"TargetStructureID":485,"Label":"102020-485 via Conventional from 102021 -> 49910","Type":"Conventional","Directional":true,"Links":[{"SourceID":102021,"TargetID":49910,"Directional":true}]},{"ID":19433,"SourceStructureID":102036,"TargetStructureID":1724,"Label":"102036-1724 via Conventional from 102489 -> 47362, 102494 -> 30432","Type":"Conventional","Directional":true,"Links":[{"SourceID":102489,"TargetID":47362,"Directional":true},{"SourceID":102494,"TargetID":30432,"Directional":true}]},{"ID":19434,"SourceStructureID":102039,"TargetStructureID":483,"Label":"102039-483 via Conventional from 102040 -> 6710","Type":"Conventional","Directional":true,"Links":[{"SourceID":102040,"TargetID":6710,"Directional":true}]},{"ID":19435,"SourceStructureID":102057,"TargetStructureID":483,"Label":"102057-483 via Conventional from 102058 -> 6818","Type":"Conventional","Directional":true,"Links":[{"SourceID":102058,"TargetID":6818,"Directional":true}]},{"ID":19436,"SourceStructureID":102065,"TargetStructureID":483,"Label":"102065-483 via Conventional from 102066 -> 6823","Type":"Conventional","Directional":true,"Links":[{"SourceID":102066,"TargetID":6823,"Directional":true}]},{"ID":19437,"SourceStructureID":102067,"TargetStructureID":483,"Label":"102067-483 via Conventional from 102068 -> 6827","Type":"Conventional","Directional":true,"Links":[{"SourceID":102068,"TargetID":6827,"Directional":true}]},{"ID":19438,"SourceStructureID":102092,"TargetStructureID":483,"Label":"102092-483 via Conventional from 102093 -> 6829","Type":"Conventional","Directional":true,"Links":[{"SourceID":102093,"TargetID":6829,"Directional":true}]},{"ID":19439,"SourceStructureID":102099,"TargetStructureID":483,"Label":"102099-483 via Conventional from 102100 -> 6844","Type":"Conventional","Directional":true,"Links":[{"SourceID":102100,"TargetID":6844,"Directional":true}]},{"ID":19440,"SourceStructureID":102101,"TargetStructureID":483,"Label":"102101-483 via Conventional from 102105 -> 6843","Type":"Conventional","Directional":true,"Links":[{"SourceID":102105,"TargetID":6843,"Directional":true}]},{"ID":19441,"SourceStructureID":102108,"TargetStructureID":483,"Label":"102108-483 via Conventional from 102109 -> 6846","Type":"Conventional","Directional":true,"Links":[{"SourceID":102109,"TargetID":6846,"Directional":true}]},{"ID":19442,"SourceStructureID":102110,"TargetStructureID":483,"Label":"102110-483 via Conventional from 102111 -> 6845","Type":"Conventional","Directional":true,"Links":[{"SourceID":102111,"TargetID":6845,"Directional":true}]},{"ID":19443,"SourceStructureID":102116,"TargetStructureID":11043,"Label":"102116-11043 via Conventional from 102144 -> 33709","Type":"Conventional","Directional":true,"Links":[{"SourceID":102144,"TargetID":33709,"Directional":true}]},{"ID":19444,"SourceStructureID":102118,"TargetStructureID":483,"Label":"102118-483 via Conventional from 102121 -> 102117","Type":"Conventional","Directional":true,"Links":[{"SourceID":102121,"TargetID":102117,"Directional":true}]},{"ID":19445,"SourceStructureID":102125,"TargetStructureID":483,"Label":"102125-483 via Conventional from 102126 -> 102124","Type":"Conventional","Directional":true,"Links":[{"SourceID":102126,"TargetID":102124,"Directional":true}]},{"ID":19446,"SourceStructureID":102127,"TargetStructureID":483,"Label":"102127-483 via Conventional from 102128 -> 58614","Type":"Conventional","Directional":true,"Links":[{"SourceID":102128,"TargetID":58614,"Directional":true}]},{"ID":19447,"SourceStructureID":102129,"TargetStructureID":483,"Label":"102129-483 via Conventional from 102131 -> 102132","Type":"Conventional","Directional":true,"Links":[{"SourceID":102131,"TargetID":102132,"Directional":true}]},{"ID":19448,"SourceStructureID":102140,"TargetStructureID":483,"Label":"102140-483 via Conventional from 102141 -> 102139","Type":"Conventional","Directional":true,"Links":[{"SourceID":102141,"TargetID":102139,"Directional":true}]},{"ID":19449,"SourceStructureID":102143,"TargetStructureID":483,"Label":"102143-483 via Conventional from 102145 -> 102142","Type":"Conventional","Directional":true,"Links":[{"SourceID":102145,"TargetID":102142,"Directional":true}]},{"ID":19450,"SourceStructureID":102149,"TargetStructureID":13525,"Label":"102149-13525 via Conventional from 102152 -> 85364","Type":"Conventional","Directional":true,"Links":[{"SourceID":102152,"TargetID":85364,"Directional":true}]},{"ID":19451,"SourceStructureID":102150,"TargetStructureID":483,"Label":"102150-483 via Conventional from 102161 -> 6831","Type":"Conventional","Directional":true,"Links":[{"SourceID":102161,"TargetID":6831,"Directional":true}]},{"ID":19452,"SourceStructureID":102162,"TargetStructureID":483,"Label":"102162-483 via Conventional from 102163 -> 6833","Type":"Conventional","Directional":true,"Links":[{"SourceID":102163,"TargetID":6833,"Directional":true}]},{"ID":19453,"SourceStructureID":102164,"TargetStructureID":483,"Label":"102164-483 via Conventional from 102167 -> 6834","Type":"Conventional","Directional":true,"Links":[{"SourceID":102167,"TargetID":6834,"Directional":true}]},{"ID":19454,"SourceStructureID":102168,"TargetStructureID":13525,"Label":"102168-13525 via Conventional from 102170 -> 84282","Type":"Conventional","Directional":true,"Links":[{"SourceID":102170,"TargetID":84282,"Directional":true}]},{"ID":19455,"SourceStructureID":102171,"TargetStructureID":13525,"Label":"102171-13525 via Conventional from 102172 -> 95780","Type":"Conventional","Directional":true,"Links":[{"SourceID":102172,"TargetID":95780,"Directional":true}]},{"ID":19456,"SourceStructureID":102175,"TargetStructureID":13525,"Label":"102175-13525 via Conventional from 102176 -> 95791","Type":"Conventional","Directional":true,"Links":[{"SourceID":102176,"TargetID":95791,"Directional":true}]},{"ID":19457,"SourceStructureID":102179,"TargetStructureID":483,"Label":"102179-483 via Conventional from 102181 -> 6840","Type":"Conventional","Directional":true,"Links":[{"SourceID":102181,"TargetID":6840,"Directional":true}]},{"ID":19458,"SourceStructureID":102191,"TargetStructureID":483,"Label":"102191-483 via Conventional from 102192 -> 26798","Type":"Conventional","Directional":true,"Links":[{"SourceID":102192,"TargetID":26798,"Directional":true}]},{"ID":19459,"SourceStructureID":102196,"TargetStructureID":483,"Label":"102196-483 via Conventional from 102200 -> 102201","Type":"Conventional","Directional":true,"Links":[{"SourceID":102200,"TargetID":102201,"Directional":true}]},{"ID":19460,"SourceStructureID":102202,"TargetStructureID":483,"Label":"102202-483 via Conventional from 102204 -> 26791","Type":"Conventional","Directional":true,"Links":[{"SourceID":102204,"TargetID":26791,"Directional":true}]},{"ID":19461,"SourceStructureID":102206,"TargetStructureID":483,"Label":"102206-483 via Conventional from 102207 -> 102205","Type":"Conventional","Directional":true,"Links":[{"SourceID":102207,"TargetID":102205,"Directional":true}]},{"ID":19462,"SourceStructureID":102209,"TargetStructureID":483,"Label":"102209-483 via Conventional from 102210 -> 102208","Type":"Conventional","Directional":true,"Links":[{"SourceID":102210,"TargetID":102208,"Directional":true}]},{"ID":19463,"SourceStructureID":102218,"TargetStructureID":483,"Label":"102218-483 via Conventional from 102220 -> 26799","Type":"Conventional","Directional":true,"Links":[{"SourceID":102220,"TargetID":26799,"Directional":true}]},{"ID":19464,"SourceStructureID":102222,"TargetStructureID":483,"Label":"102222-483 via Conventional from 102223 -> 102221","Type":"Conventional","Directional":true,"Links":[{"SourceID":102223,"TargetID":102221,"Directional":true}]},{"ID":19465,"SourceStructureID":102224,"TargetStructureID":483,"Label":"102224-483 via Conventional from 102225 -> 26792","Type":"Conventional","Directional":true,"Links":[{"SourceID":102225,"TargetID":26792,"Directional":true}]},{"ID":19466,"SourceStructureID":102230,"TargetStructureID":483,"Label":"102230-483 via Conventional from 102231 -> 26789","Type":"Conventional","Directional":true,"Links":[{"SourceID":102231,"TargetID":26789,"Directional":true}]},{"ID":19467,"SourceStructureID":102235,"TargetStructureID":483,"Label":"102235-483 via Conventional from 102236 -> 26788","Type":"Conventional","Directional":true,"Links":[{"SourceID":102236,"TargetID":26788,"Directional":true}]},{"ID":19468,"SourceStructureID":102250,"TargetStructureID":483,"Label":"102250-483 via Conventional from 102251 -> 102246","Type":"Conventional","Directional":true,"Links":[{"SourceID":102251,"TargetID":102246,"Directional":true}]},{"ID":19469,"SourceStructureID":102254,"TargetStructureID":483,"Label":"102254-483 via Conventional from 102255 -> 26794","Type":"Conventional","Directional":true,"Links":[{"SourceID":102255,"TargetID":26794,"Directional":true}]},{"ID":19470,"SourceStructureID":102272,"TargetStructureID":483,"Label":"102272-483 via Conventional from 102273 -> 26805","Type":"Conventional","Directional":true,"Links":[{"SourceID":102273,"TargetID":26805,"Directional":true}]},{"ID":19471,"SourceStructureID":102274,"TargetStructureID":483,"Label":"102274-483 via Conventional from 102275 -> 26804","Type":"Conventional","Directional":true,"Links":[{"SourceID":102275,"TargetID":26804,"Directional":true}]},{"ID":19472,"SourceStructureID":102276,"TargetStructureID":483,"Label":"102276-483 via Conventional from 102277 -> 26808","Type":"Conventional","Directional":true,"Links":[{"SourceID":102277,"TargetID":26808,"Directional":true}]},{"ID":19473,"SourceStructureID":102278,"TargetStructureID":483,"Label":"102278-483 via Conventional from 102284 -> 26800","Type":"Conventional","Directional":true,"Links":[{"SourceID":102284,"TargetID":26800,"Directional":true}]},{"ID":19474,"SourceStructureID":102282,"TargetStructureID":483,"Label":"102282-483 via Conventional from 102292 -> 26809","Type":"Conventional","Directional":true,"Links":[{"SourceID":102292,"TargetID":26809,"Directional":true}]},{"ID":19475,"SourceStructureID":102286,"TargetStructureID":483,"Label":"102286-483 via Conventional from 102287 -> 102285","Type":"Conventional","Directional":true,"Links":[{"SourceID":102287,"TargetID":102285,"Directional":true}]},{"ID":19476,"SourceStructureID":102295,"TargetStructureID":483,"Label":"102295-483 via Conventional from 102296 -> 102297","Type":"Conventional","Directional":true,"Links":[{"SourceID":102296,"TargetID":102297,"Directional":true}]},{"ID":19477,"SourceStructureID":102310,"TargetStructureID":483,"Label":"102310-483 via Conventional from 102311 -> 26806","Type":"Conventional","Directional":true,"Links":[{"SourceID":102311,"TargetID":26806,"Directional":true}]},{"ID":19478,"SourceStructureID":102314,"TargetStructureID":483,"Label":"102314-483 via Conventional from 102315 -> 26814","Type":"Conventional","Directional":true,"Links":[{"SourceID":102315,"TargetID":26814,"Directional":true}]},{"ID":19479,"SourceStructureID":102316,"TargetStructureID":483,"Label":"102316-483 via Conventional from 102317 -> 26813","Type":"Conventional","Directional":true,"Links":[{"SourceID":102317,"TargetID":26813,"Directional":true}]},{"ID":19480,"SourceStructureID":102321,"TargetStructureID":483,"Label":"102321-483 via Conventional from 102322 -> 26816","Type":"Conventional","Directional":true,"Links":[{"SourceID":102322,"TargetID":26816,"Directional":true}]},{"ID":19481,"SourceStructureID":102341,"TargetStructureID":483,"Label":"102341-483 via Conventional from 102342 -> 6841","Type":"Conventional","Directional":true,"Links":[{"SourceID":102342,"TargetID":6841,"Directional":true}]},{"ID":19482,"SourceStructureID":102354,"TargetStructureID":483,"Label":"102354-483 via Conventional from 102355 -> 102356","Type":"Conventional","Directional":true,"Links":[{"SourceID":102355,"TargetID":102356,"Directional":true}]},{"ID":19483,"SourceStructureID":102361,"TargetStructureID":13525,"Label":"102361-13525 via Conventional from 102367 -> 95924","Type":"Conventional","Directional":true,"Links":[{"SourceID":102367,"TargetID":95924,"Directional":true}]},{"ID":19484,"SourceStructureID":102362,"TargetStructureID":483,"Label":"102362-483 via Conventional from 102363 -> 26834","Type":"Conventional","Directional":true,"Links":[{"SourceID":102363,"TargetID":26834,"Directional":true}]},{"ID":19485,"SourceStructureID":102381,"TargetStructureID":483,"Label":"102381-483 via Conventional from 102394 -> 20342","Type":"Conventional","Directional":true,"Links":[{"SourceID":102394,"TargetID":20342,"Directional":true}]},{"ID":19486,"SourceStructureID":102391,"TargetStructureID":102387,"Label":"102391-102387 via Conventional from 102393 -> 102390","Type":"Conventional","Directional":true,"Links":[{"SourceID":102393,"TargetID":102390,"Directional":true}]},{"ID":19487,"SourceStructureID":102395,"TargetStructureID":483,"Label":"102395-483 via Conventional from 102396 -> 20343","Type":"Conventional","Directional":true,"Links":[{"SourceID":102396,"TargetID":20343,"Directional":true}]},{"ID":19488,"SourceStructureID":102397,"TargetStructureID":483,"Label":"102397-483 via Conventional from 102398 -> 20344","Type":"Conventional","Directional":true,"Links":[{"SourceID":102398,"TargetID":20344,"Directional":true}]},{"ID":19489,"SourceStructureID":102399,"TargetStructureID":419,"Label":"102399-419 via Conventional from 102400 -> 10164","Type":"Conventional","Directional":true,"Links":[{"SourceID":102400,"TargetID":10164,"Directional":true}]},{"ID":19490,"SourceStructureID":102405,"TargetStructureID":483,"Label":"102405-483 via Conventional from 102406 -> 20348","Type":"Conventional","Directional":true,"Links":[{"SourceID":102406,"TargetID":20348,"Directional":true}]},{"ID":19491,"SourceStructureID":102414,"TargetStructureID":483,"Label":"102414-483 via Conventional from 102415 -> 20346","Type":"Conventional","Directional":true,"Links":[{"SourceID":102415,"TargetID":20346,"Directional":true}]},{"ID":19492,"SourceStructureID":102416,"TargetStructureID":483,"Label":"102416-483 via Conventional from 102419 -> 26838","Type":"Conventional","Directional":true,"Links":[{"SourceID":102419,"TargetID":26838,"Directional":true}]},{"ID":19493,"SourceStructureID":102417,"TargetStructureID":13525,"Label":"102417-13525 via Conventional from 102418 -> 95923","Type":"Conventional","Directional":true,"Links":[{"SourceID":102418,"TargetID":95923,"Directional":true}]},{"ID":19494,"SourceStructureID":102421,"TargetStructureID":483,"Label":"102421-483 via Conventional from 102422 -> 102420","Type":"Conventional","Directional":true,"Links":[{"SourceID":102422,"TargetID":102420,"Directional":true}]},{"ID":19495,"SourceStructureID":102425,"TargetStructureID":483,"Label":"102425-483 via Conventional from 102427 -> 102428","Type":"Conventional","Directional":true,"Links":[{"SourceID":102427,"TargetID":102428,"Directional":true}]},{"ID":19496,"SourceStructureID":102425,"TargetStructureID":102545,"Label":"102425-102545 via Conventional from 102426 -> 102547","Type":"Conventional","Directional":true,"Links":[{"SourceID":102426,"TargetID":102547,"Directional":true}]},{"ID":19497,"SourceStructureID":102429,"TargetStructureID":483,"Label":"102429-483 via Conventional from 102430 -> 20347","Type":"Conventional","Directional":true,"Links":[{"SourceID":102430,"TargetID":20347,"Directional":true}]},{"ID":19498,"SourceStructureID":102431,"TargetStructureID":483,"Label":"102431-483 via Conventional from 102433 -> 20391","Type":"Conventional","Directional":true,"Links":[{"SourceID":102433,"TargetID":20391,"Directional":true}]},{"ID":19499,"SourceStructureID":102437,"TargetStructureID":483,"Label":"102437-483 via Conventional from 102438 -> 102439","Type":"Conventional","Directional":true,"Links":[{"SourceID":102438,"TargetID":102439,"Directional":true}]},{"ID":19500,"SourceStructureID":102451,"TargetStructureID":483,"Label":"102451-483 via Conventional from 102452 -> 51182","Type":"Conventional","Directional":true,"Links":[{"SourceID":102452,"TargetID":51182,"Directional":true}]},{"ID":19501,"SourceStructureID":102456,"TargetStructureID":483,"Label":"102456-483 via Conventional from 102458 -> 102457","Type":"Conventional","Directional":true,"Links":[{"SourceID":102458,"TargetID":102457,"Directional":true}]},{"ID":19502,"SourceStructureID":102461,"TargetStructureID":483,"Label":"102461-483 via Conventional from 102462 -> 20351","Type":"Conventional","Directional":true,"Links":[{"SourceID":102462,"TargetID":20351,"Directional":true}]},{"ID":19503,"SourceStructureID":102463,"TargetStructureID":483,"Label":"102463-483 via Conventional from 102465 -> 26781, 102465 -> 26839","Type":"Conventional","Directional":true,"Links":[{"SourceID":102465,"TargetID":26781,"Directional":true},{"SourceID":102465,"TargetID":26839,"Directional":true}]},{"ID":19504,"SourceStructureID":102467,"TargetStructureID":1724,"Label":"102467-1724 via Conventional from 102468 -> 47360","Type":"Conventional","Directional":true,"Links":[{"SourceID":102468,"TargetID":47360,"Directional":true}]},{"ID":19505,"SourceStructureID":102476,"TargetStructureID":1724,"Label":"102476-1724 via Conventional from 102486 -> 47363, 102490 -> 30431","Type":"Conventional","Directional":true,"Links":[{"SourceID":102486,"TargetID":47363,"Directional":true},{"SourceID":102490,"TargetID":30431,"Directional":true}]},{"ID":19506,"SourceStructureID":102477,"TargetStructureID":483,"Label":"102477-483 via Conventional from 102478 -> 20354","Type":"Conventional","Directional":true,"Links":[{"SourceID":102478,"TargetID":20354,"Directional":true}]},{"ID":19507,"SourceStructureID":102479,"TargetStructureID":483,"Label":"102479-483 via Conventional from 102480 -> 26840","Type":"Conventional","Directional":true,"Links":[{"SourceID":102480,"TargetID":26840,"Directional":true}]},{"ID":19508,"SourceStructureID":102482,"TargetStructureID":483,"Label":"102482-483 via Conventional from 102483 -> 20362","Type":"Conventional","Directional":true,"Links":[{"SourceID":102483,"TargetID":20362,"Directional":true}]},{"ID":19509,"SourceStructureID":102498,"TargetStructureID":1724,"Label":"102498-1724 via Conventional from 102506 -> 102507","Type":"Conventional","Directional":true,"Links":[{"SourceID":102506,"TargetID":102507,"Directional":true}]},{"ID":19510,"SourceStructureID":102504,"TargetStructureID":483,"Label":"102504-483 via Conventional from 102505 -> 20353","Type":"Conventional","Directional":true,"Links":[{"SourceID":102505,"TargetID":20353,"Directional":true}]},{"ID":19511,"SourceStructureID":102513,"TargetStructureID":483,"Label":"102513-483 via Conventional from 102519 -> 20356","Type":"Conventional","Directional":true,"Links":[{"SourceID":102519,"TargetID":20356,"Directional":true}]},{"ID":19512,"SourceStructureID":102534,"TargetStructureID":483,"Label":"102534-483 via Conventional from 102535 -> 20359","Type":"Conventional","Directional":true,"Links":[{"SourceID":102535,"TargetID":20359,"Directional":true}]},{"ID":19513,"SourceStructureID":102543,"TargetStructureID":483,"Label":"102543-483 via Conventional from 102544 -> 102542","Type":"Conventional","Directional":true,"Links":[{"SourceID":102544,"TargetID":102542,"Directional":true}]},{"ID":19514,"SourceStructureID":102552,"TargetStructureID":483,"Label":"102552-483 via Conventional from 102553 -> 102551","Type":"Conventional","Directional":true,"Links":[{"SourceID":102553,"TargetID":102551,"Directional":true}]},{"ID":19515,"SourceStructureID":102555,"TargetStructureID":8575,"Label":"102555-8575 via Conventional from 102559 -> 61560","Type":"Conventional","Directional":true,"Links":[{"SourceID":102559,"TargetID":61560,"Directional":true}]},{"ID":19516,"SourceStructureID":102577,"TargetStructureID":483,"Label":"102577-483 via Conventional from 102578 -> 15167","Type":"Conventional","Directional":true,"Links":[{"SourceID":102578,"TargetID":15167,"Directional":true}]},{"ID":19517,"SourceStructureID":102577,"TargetStructureID":5107,"Label":"102577-5107 via Conventional from 102579 -> 23033","Type":"Conventional","Directional":true,"Links":[{"SourceID":102579,"TargetID":23033,"Directional":true}]},{"ID":19518,"SourceStructureID":102586,"TargetStructureID":483,"Label":"102586-483 via Conventional from 102587 -> 6716","Type":"Conventional","Directional":true,"Links":[{"SourceID":102587,"TargetID":6716,"Directional":true}]},{"ID":19519,"SourceStructureID":102588,"TargetStructureID":483,"Label":"102588-483 via Conventional from 102589 -> 6718","Type":"Conventional","Directional":true,"Links":[{"SourceID":102589,"TargetID":6718,"Directional":true}]},{"ID":19520,"SourceStructureID":102599,"TargetStructureID":517,"Label":"102599-517 via Conventional from 102608 -> 102609","Type":"Conventional","Directional":true,"Links":[{"SourceID":102608,"TargetID":102609,"Directional":true}]},{"ID":19521,"SourceStructureID":102600,"TargetStructureID":483,"Label":"102600-483 via Conventional from 102601 -> 6722","Type":"Conventional","Directional":true,"Links":[{"SourceID":102601,"TargetID":6722,"Directional":true}]},{"ID":19522,"SourceStructureID":102603,"TargetStructureID":483,"Label":"102603-483 via Conventional from 102605 -> 6723","Type":"Conventional","Directional":true,"Links":[{"SourceID":102605,"TargetID":6723,"Directional":true}]},{"ID":19523,"SourceStructureID":102635,"TargetStructureID":483,"Label":"102635-483 via Conventional from 102637 -> 102633","Type":"Conventional","Directional":true,"Links":[{"SourceID":102637,"TargetID":102633,"Directional":true}]},{"ID":19524,"SourceStructureID":102639,"TargetStructureID":483,"Label":"102639-483 via Conventional from 102640 -> 102638","Type":"Conventional","Directional":true,"Links":[{"SourceID":102640,"TargetID":102638,"Directional":true}]},{"ID":19525,"SourceStructureID":102655,"TargetStructureID":483,"Label":"102655-483 via Conventional from 102656 -> 6746","Type":"Conventional","Directional":true,"Links":[{"SourceID":102656,"TargetID":6746,"Directional":true}]},{"ID":19526,"SourceStructureID":102658,"TargetStructureID":483,"Label":"102658-483 via Conventional from 102660 -> 6747","Type":"Conventional","Directional":true,"Links":[{"SourceID":102660,"TargetID":6747,"Directional":true}]},{"ID":19527,"SourceStructureID":102671,"TargetStructureID":5650,"Label":"102671-5650 via Conventional from 102678 -> 102679, 102681 -> 102682","Type":"Conventional","Directional":true,"Links":[{"SourceID":102678,"TargetID":102679,"Directional":true},{"SourceID":102681,"TargetID":102682,"Directional":true}]},{"ID":19528,"SourceStructureID":102683,"TargetStructureID":5650,"Label":"102683-5650 via Conventional from 102684 -> 102685","Type":"Conventional","Directional":true,"Links":[{"SourceID":102684,"TargetID":102685,"Directional":true}]},{"ID":19529,"SourceStructureID":102687,"TargetStructureID":483,"Label":"102687-483 via Conventional from 102688 -> 6758","Type":"Conventional","Directional":true,"Links":[{"SourceID":102688,"TargetID":6758,"Directional":true}]},{"ID":19530,"SourceStructureID":102703,"TargetStructureID":5650,"Label":"102703-5650 via Conventional from 102707 -> 102708","Type":"Conventional","Directional":true,"Links":[{"SourceID":102707,"TargetID":102708,"Directional":true}]},{"ID":19531,"SourceStructureID":102704,"TargetStructureID":483,"Label":"102704-483 via Conventional from 102705 -> 26785","Type":"Conventional","Directional":true,"Links":[{"SourceID":102705,"TargetID":26785,"Directional":true}]},{"ID":19532,"SourceStructureID":102709,"TargetStructureID":483,"Label":"102709-483 via Conventional from 102713 -> 6752","Type":"Conventional","Directional":true,"Links":[{"SourceID":102713,"TargetID":6752,"Directional":true}]},{"ID":19533,"SourceStructureID":102710,"TargetStructureID":5650,"Label":"102710-5650 via Conventional from 102714 -> 102715, 102716 -> 102717","Type":"Conventional","Directional":true,"Links":[{"SourceID":102714,"TargetID":102715,"Directional":true},{"SourceID":102716,"TargetID":102717,"Directional":true}]},{"ID":19534,"SourceStructureID":102724,"TargetStructureID":483,"Label":"102724-483 via Conventional from 102725 -> 6749","Type":"Conventional","Directional":true,"Links":[{"SourceID":102725,"TargetID":6749,"Directional":true}]},{"ID":19535,"SourceStructureID":102727,"TargetStructureID":5650,"Label":"102727-5650 via Conventional from 102728 -> 102729","Type":"Conventional","Directional":true,"Links":[{"SourceID":102728,"TargetID":102729,"Directional":true}]},{"ID":19536,"SourceStructureID":102730,"TargetStructureID":5650,"Label":"102730-5650 via Conventional from 102738 -> 102740","Type":"Conventional","Directional":true,"Links":[{"SourceID":102738,"TargetID":102740,"Directional":true}]},{"ID":19537,"SourceStructureID":102736,"TargetStructureID":483,"Label":"102736-483 via Conventional from 102737 -> 6756","Type":"Conventional","Directional":true,"Links":[{"SourceID":102737,"TargetID":6756,"Directional":true}]},{"ID":19538,"SourceStructureID":102741,"TargetStructureID":483,"Label":"102741-483 via Conventional from 102742 -> 6759","Type":"Conventional","Directional":true,"Links":[{"SourceID":102742,"TargetID":6759,"Directional":true}]},{"ID":19539,"SourceStructureID":102744,"TargetStructureID":483,"Label":"102744-483 via Conventional from 102754 -> 6760","Type":"Conventional","Directional":true,"Links":[{"SourceID":102754,"TargetID":6760,"Directional":true}]},{"ID":19540,"SourceStructureID":102748,"TargetStructureID":102748,"Label":"102748-102748 via BC Conventional Synapse from 102770 -> 102772","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102770,"TargetID":102772,"Directional":true}]},{"ID":19541,"SourceStructureID":102756,"TargetStructureID":483,"Label":"102756-483 via Conventional from 102758 -> 6765","Type":"Conventional","Directional":true,"Links":[{"SourceID":102758,"TargetID":6765,"Directional":true}]},{"ID":19542,"SourceStructureID":102757,"TargetStructureID":5650,"Label":"102757-5650 via Conventional from 102778 -> 102779","Type":"Conventional","Directional":true,"Links":[{"SourceID":102778,"TargetID":102779,"Directional":true}]},{"ID":19543,"SourceStructureID":102759,"TargetStructureID":483,"Label":"102759-483 via Conventional from 102760 -> 6766","Type":"Conventional","Directional":true,"Links":[{"SourceID":102760,"TargetID":6766,"Directional":true}]},{"ID":19544,"SourceStructureID":102761,"TargetStructureID":5650,"Label":"102761-5650 via Conventional from 102768 -> 102769","Type":"Conventional","Directional":true,"Links":[{"SourceID":102768,"TargetID":102769,"Directional":true}]},{"ID":19545,"SourceStructureID":102764,"TargetStructureID":5650,"Label":"102764-5650 via Conventional from 102766 -> 102767","Type":"Conventional","Directional":true,"Links":[{"SourceID":102766,"TargetID":102767,"Directional":true}]},{"ID":19546,"SourceStructureID":102775,"TargetStructureID":483,"Label":"102775-483 via Conventional from 102777 -> 26787","Type":"Conventional","Directional":true,"Links":[{"SourceID":102777,"TargetID":26787,"Directional":true}]},{"ID":19547,"SourceStructureID":102785,"TargetStructureID":5650,"Label":"102785-5650 via Conventional from 102800 -> 102801","Type":"Conventional","Directional":true,"Links":[{"SourceID":102800,"TargetID":102801,"Directional":true}]},{"ID":19548,"SourceStructureID":102787,"TargetStructureID":5650,"Label":"102787-5650 via Conventional from 102815 -> 102816","Type":"Conventional","Directional":true,"Links":[{"SourceID":102815,"TargetID":102816,"Directional":true}]},{"ID":19549,"SourceStructureID":102820,"TargetStructureID":483,"Label":"102820-483 via Conventional from 102823 -> 102819","Type":"Conventional","Directional":true,"Links":[{"SourceID":102823,"TargetID":102819,"Directional":true}]},{"ID":19550,"SourceStructureID":102838,"TargetStructureID":102838,"Label":"102838-102838 via Conventional from 102839 -> 102840","Type":"Conventional","Directional":true,"Links":[{"SourceID":102839,"TargetID":102840,"Directional":true}]},{"ID":19551,"SourceStructureID":102845,"TargetStructureID":483,"Label":"102845-483 via Conventional from 102846 -> 102844","Type":"Conventional","Directional":true,"Links":[{"SourceID":102846,"TargetID":102844,"Directional":true}]},{"ID":19552,"SourceStructureID":102859,"TargetStructureID":483,"Label":"102859-483 via Conventional from 102860 -> 102858","Type":"Conventional","Directional":true,"Links":[{"SourceID":102860,"TargetID":102858,"Directional":true}]},{"ID":19553,"SourceStructureID":102863,"TargetStructureID":483,"Label":"102863-483 via Conventional from 102865 -> 102862","Type":"Conventional","Directional":true,"Links":[{"SourceID":102865,"TargetID":102862,"Directional":true}]},{"ID":19554,"SourceStructureID":102877,"TargetStructureID":483,"Label":"102877-483 via Conventional from 102878 -> 102876","Type":"Conventional","Directional":true,"Links":[{"SourceID":102878,"TargetID":102876,"Directional":true}]},{"ID":19555,"SourceStructureID":102879,"TargetStructureID":483,"Label":"102879-483 via Conventional from 102883 -> 102882","Type":"Conventional","Directional":true,"Links":[{"SourceID":102883,"TargetID":102882,"Directional":true}]},{"ID":19556,"SourceStructureID":102879,"TargetStructureID":69537,"Label":"102879-69537 via Conventional from 102896 -> 69764","Type":"Conventional","Directional":true,"Links":[{"SourceID":102896,"TargetID":69764,"Directional":true}]},{"ID":19557,"SourceStructureID":102884,"TargetStructureID":483,"Label":"102884-483 via Conventional from 102885 -> 102872","Type":"Conventional","Directional":true,"Links":[{"SourceID":102885,"TargetID":102872,"Directional":true}]},{"ID":19558,"SourceStructureID":102890,"TargetStructureID":5650,"Label":"102890-5650 via Conventional from 102904 -> 38284","Type":"Conventional","Directional":true,"Links":[{"SourceID":102904,"TargetID":38284,"Directional":true}]},{"ID":19559,"SourceStructureID":102897,"TargetStructureID":483,"Label":"102897-483 via Conventional from 102902 -> 51181","Type":"Conventional","Directional":true,"Links":[{"SourceID":102902,"TargetID":51181,"Directional":true}]},{"ID":19560,"SourceStructureID":102912,"TargetStructureID":5650,"Label":"102912-5650 via Conventional from 102919 -> 102920","Type":"Conventional","Directional":true,"Links":[{"SourceID":102919,"TargetID":102920,"Directional":true}]},{"ID":19561,"SourceStructureID":102932,"TargetStructureID":5513,"Label":"102932-5513 via Conventional from 102934 -> 46784","Type":"Conventional","Directional":true,"Links":[{"SourceID":102934,"TargetID":46784,"Directional":true}]},{"ID":19562,"SourceStructureID":102932,"TargetStructureID":26079,"Label":"102932-26079 via Conventional from 102933 -> 102924","Type":"Conventional","Directional":true,"Links":[{"SourceID":102933,"TargetID":102924,"Directional":true}]},{"ID":19563,"SourceStructureID":102935,"TargetStructureID":5650,"Label":"102935-5650 via Conventional from 102944 -> 102945","Type":"Conventional","Directional":true,"Links":[{"SourceID":102944,"TargetID":102945,"Directional":true}]},{"ID":19564,"SourceStructureID":102946,"TargetStructureID":5650,"Label":"102946-5650 via Conventional from 102947 -> 102948","Type":"Conventional","Directional":true,"Links":[{"SourceID":102947,"TargetID":102948,"Directional":true}]},{"ID":19565,"SourceStructureID":102949,"TargetStructureID":5650,"Label":"102949-5650 via Conventional from 102950 -> 102951","Type":"Conventional","Directional":true,"Links":[{"SourceID":102950,"TargetID":102951,"Directional":true}]},{"ID":19566,"SourceStructureID":102952,"TargetStructureID":5650,"Label":"102952-5650 via Conventional from 102954 -> 102955","Type":"Conventional","Directional":true,"Links":[{"SourceID":102954,"TargetID":102955,"Directional":true}]},{"ID":19567,"SourceStructureID":102953,"TargetStructureID":5650,"Label":"102953-5650 via Conventional from 102973 -> 102974","Type":"Conventional","Directional":true,"Links":[{"SourceID":102973,"TargetID":102974,"Directional":true}]},{"ID":19568,"SourceStructureID":102956,"TargetStructureID":5650,"Label":"102956-5650 via Conventional from 102957 -> 102958","Type":"Conventional","Directional":true,"Links":[{"SourceID":102957,"TargetID":102958,"Directional":true}]},{"ID":19569,"SourceStructureID":102975,"TargetStructureID":5650,"Label":"102975-5650 via Conventional from 102980 -> 102981","Type":"Conventional","Directional":true,"Links":[{"SourceID":102980,"TargetID":102981,"Directional":true}]},{"ID":19570,"SourceStructureID":102985,"TargetStructureID":5650,"Label":"102985-5650 via Conventional from 102987 -> 102988","Type":"Conventional","Directional":true,"Links":[{"SourceID":102987,"TargetID":102988,"Directional":true}]},{"ID":19571,"SourceStructureID":103001,"TargetStructureID":5650,"Label":"103001-5650 via Conventional from 103004 -> 61076","Type":"Conventional","Directional":true,"Links":[{"SourceID":103004,"TargetID":61076,"Directional":true}]},{"ID":19572,"SourceStructureID":103008,"TargetStructureID":103008,"Label":"103008-103008 via Conventional from 103009 -> 103010","Type":"Conventional","Directional":true,"Links":[{"SourceID":103009,"TargetID":103010,"Directional":true}]},{"ID":19573,"SourceStructureID":103011,"TargetStructureID":5650,"Label":"103011-5650 via Conventional from 103012 -> 103013","Type":"Conventional","Directional":true,"Links":[{"SourceID":103012,"TargetID":103013,"Directional":true}]},{"ID":19574,"SourceStructureID":103014,"TargetStructureID":5650,"Label":"103014-5650 via Conventional from 103015 -> 103016","Type":"Conventional","Directional":true,"Links":[{"SourceID":103015,"TargetID":103016,"Directional":true}]},{"ID":19575,"SourceStructureID":103032,"TargetStructureID":5650,"Label":"103032-5650 via Conventional from 103034 -> 103035","Type":"Conventional","Directional":true,"Links":[{"SourceID":103034,"TargetID":103035,"Directional":true}]},{"ID":19576,"SourceStructureID":103037,"TargetStructureID":5650,"Label":"103037-5650 via Conventional from 103040 -> 103041","Type":"Conventional","Directional":true,"Links":[{"SourceID":103040,"TargetID":103041,"Directional":true}]},{"ID":19577,"SourceStructureID":103047,"TargetStructureID":5650,"Label":"103047-5650 via Conventional from 103048 -> 103049","Type":"Conventional","Directional":true,"Links":[{"SourceID":103048,"TargetID":103049,"Directional":true}]},{"ID":19578,"SourceStructureID":103064,"TargetStructureID":483,"Label":"103064-483 via Conventional from 103065 -> 103063","Type":"Conventional","Directional":true,"Links":[{"SourceID":103065,"TargetID":103063,"Directional":true}]},{"ID":19579,"SourceStructureID":103070,"TargetStructureID":483,"Label":"103070-483 via Conventional from 103071 -> 103069","Type":"Conventional","Directional":true,"Links":[{"SourceID":103071,"TargetID":103069,"Directional":true}]},{"ID":19580,"SourceStructureID":103076,"TargetStructureID":483,"Label":"103076-483 via Conventional from 103077 -> 103075","Type":"Conventional","Directional":true,"Links":[{"SourceID":103077,"TargetID":103075,"Directional":true}]},{"ID":19581,"SourceStructureID":103076,"TargetStructureID":41042,"Label":"103076-41042 via Conventional from 115809 -> 91422","Type":"Conventional","Directional":true,"Links":[{"SourceID":115809,"TargetID":91422,"Directional":true}]},{"ID":19582,"SourceStructureID":103090,"TargetStructureID":483,"Label":"103090-483 via Conventional from 103091 -> 6724","Type":"Conventional","Directional":true,"Links":[{"SourceID":103091,"TargetID":6724,"Directional":true}]},{"ID":19583,"SourceStructureID":103097,"TargetStructureID":46823,"Label":"103097-46823 via Conventional from 103100 -> 103101","Type":"Conventional","Directional":true,"Links":[{"SourceID":103100,"TargetID":103101,"Directional":true}]},{"ID":19584,"SourceStructureID":103102,"TargetStructureID":483,"Label":"103102-483 via Conventional from 103103 -> 6730","Type":"Conventional","Directional":true,"Links":[{"SourceID":103103,"TargetID":6730,"Directional":true}]},{"ID":19585,"SourceStructureID":103105,"TargetStructureID":483,"Label":"103105-483 via Conventional from 103106 -> 6740","Type":"Conventional","Directional":true,"Links":[{"SourceID":103106,"TargetID":6740,"Directional":true}]},{"ID":19586,"SourceStructureID":103122,"TargetStructureID":483,"Label":"103122-483 via Conventional from 103124 -> 103125","Type":"Conventional","Directional":true,"Links":[{"SourceID":103124,"TargetID":103125,"Directional":true}]},{"ID":19587,"SourceStructureID":103128,"TargetStructureID":483,"Label":"103128-483 via Conventional from 103130 -> 6744","Type":"Conventional","Directional":true,"Links":[{"SourceID":103130,"TargetID":6744,"Directional":true}]},{"ID":19588,"SourceStructureID":103132,"TargetStructureID":483,"Label":"103132-483 via Conventional from 103133 -> 103131","Type":"Conventional","Directional":true,"Links":[{"SourceID":103133,"TargetID":103131,"Directional":true}]},{"ID":19589,"SourceStructureID":103182,"TargetStructureID":483,"Label":"103182-483 via Conventional from 103184 -> 6732","Type":"Conventional","Directional":true,"Links":[{"SourceID":103184,"TargetID":6732,"Directional":true}]},{"ID":19590,"SourceStructureID":103187,"TargetStructureID":483,"Label":"103187-483 via Conventional from 103188 -> 6731","Type":"Conventional","Directional":true,"Links":[{"SourceID":103188,"TargetID":6731,"Directional":true}]},{"ID":19591,"SourceStructureID":103203,"TargetStructureID":483,"Label":"103203-483 via Conventional from 103207 -> 28766","Type":"Conventional","Directional":true,"Links":[{"SourceID":103207,"TargetID":28766,"Directional":true}]},{"ID":19592,"SourceStructureID":103228,"TargetStructureID":483,"Label":"103228-483 via Conventional from 103230 -> 28768","Type":"Conventional","Directional":true,"Links":[{"SourceID":103230,"TargetID":28768,"Directional":true}]},{"ID":19593,"SourceStructureID":103240,"TargetStructureID":483,"Label":"103240-483 via Conventional from 103251 -> 103252","Type":"Conventional","Directional":true,"Links":[{"SourceID":103251,"TargetID":103252,"Directional":true}]},{"ID":19594,"SourceStructureID":103244,"TargetStructureID":483,"Label":"103244-483 via Conventional from 103246 -> 103247","Type":"Conventional","Directional":true,"Links":[{"SourceID":103246,"TargetID":103247,"Directional":true}]},{"ID":19595,"SourceStructureID":103244,"TargetStructureID":7568,"Label":"103244-7568 via Conventional from 103245 -> 27088","Type":"Conventional","Directional":true,"Links":[{"SourceID":103245,"TargetID":27088,"Directional":true}]},{"ID":19596,"SourceStructureID":103248,"TargetStructureID":483,"Label":"103248-483 via Conventional from 134085 -> 134084","Type":"Conventional","Directional":true,"Links":[{"SourceID":134085,"TargetID":134084,"Directional":true}]},{"ID":19597,"SourceStructureID":103254,"TargetStructureID":483,"Label":"103254-483 via Conventional from 103255 -> 28769","Type":"Conventional","Directional":true,"Links":[{"SourceID":103255,"TargetID":28769,"Directional":true}]},{"ID":19598,"SourceStructureID":103258,"TargetStructureID":606,"Label":"103258-606 via Conventional from 103260 -> 53208","Type":"Conventional","Directional":true,"Links":[{"SourceID":103260,"TargetID":53208,"Directional":true}]},{"ID":19599,"SourceStructureID":103265,"TargetStructureID":483,"Label":"103265-483 via Conventional from 103266 -> 103267","Type":"Conventional","Directional":true,"Links":[{"SourceID":103266,"TargetID":103267,"Directional":true}]},{"ID":19600,"SourceStructureID":103269,"TargetStructureID":483,"Label":"103269-483 via Conventional from 103270 -> 103268","Type":"Conventional","Directional":true,"Links":[{"SourceID":103270,"TargetID":103268,"Directional":true}]},{"ID":19601,"SourceStructureID":103274,"TargetStructureID":483,"Label":"103274-483 via Conventional from 103278 -> 103279","Type":"Conventional","Directional":true,"Links":[{"SourceID":103278,"TargetID":103279,"Directional":true}]},{"ID":19602,"SourceStructureID":103281,"TargetStructureID":483,"Label":"103281-483 via Conventional from 103282 -> 103280","Type":"Conventional","Directional":true,"Links":[{"SourceID":103282,"TargetID":103280,"Directional":true}]},{"ID":19603,"SourceStructureID":103287,"TargetStructureID":483,"Label":"103287-483 via Conventional from 103289 -> 103286","Type":"Conventional","Directional":true,"Links":[{"SourceID":103289,"TargetID":103286,"Directional":true}]},{"ID":19604,"SourceStructureID":103313,"TargetStructureID":483,"Label":"103313-483 via Conventional from 103315 -> 103312","Type":"Conventional","Directional":true,"Links":[{"SourceID":103315,"TargetID":103312,"Directional":true}]},{"ID":19605,"SourceStructureID":103316,"TargetStructureID":483,"Label":"103316-483 via Conventional from 103317 -> 103318","Type":"Conventional","Directional":true,"Links":[{"SourceID":103317,"TargetID":103318,"Directional":true}]},{"ID":19606,"SourceStructureID":103331,"TargetStructureID":483,"Label":"103331-483 via Conventional from 103332 -> 6093","Type":"Conventional","Directional":true,"Links":[{"SourceID":103332,"TargetID":6093,"Directional":true}]},{"ID":19607,"SourceStructureID":103339,"TargetStructureID":483,"Label":"103339-483 via Conventional from 103340 -> 6089","Type":"Conventional","Directional":true,"Links":[{"SourceID":103340,"TargetID":6089,"Directional":true}]},{"ID":19608,"SourceStructureID":103352,"TargetStructureID":483,"Label":"103352-483 via Conventional from 103353 -> 6769","Type":"Conventional","Directional":true,"Links":[{"SourceID":103353,"TargetID":6769,"Directional":true}]},{"ID":19609,"SourceStructureID":103358,"TargetStructureID":483,"Label":"103358-483 via Conventional from 103361 -> 6085","Type":"Conventional","Directional":true,"Links":[{"SourceID":103361,"TargetID":6085,"Directional":true}]},{"ID":19610,"SourceStructureID":103362,"TargetStructureID":483,"Label":"103362-483 via Conventional from 103366 -> 6084","Type":"Conventional","Directional":true,"Links":[{"SourceID":103366,"TargetID":6084,"Directional":true}]},{"ID":19611,"SourceStructureID":103367,"TargetStructureID":483,"Label":"103367-483 via Conventional from 103368 -> 6082","Type":"Conventional","Directional":true,"Links":[{"SourceID":103368,"TargetID":6082,"Directional":true}]},{"ID":19612,"SourceStructureID":103381,"TargetStructureID":483,"Label":"103381-483 via Conventional from 103382 -> 6775","Type":"Conventional","Directional":true,"Links":[{"SourceID":103382,"TargetID":6775,"Directional":true}]},{"ID":19613,"SourceStructureID":103399,"TargetStructureID":483,"Label":"103399-483 via Conventional from 103400 -> 6071","Type":"Conventional","Directional":true,"Links":[{"SourceID":103400,"TargetID":6071,"Directional":true}]},{"ID":19614,"SourceStructureID":103411,"TargetStructureID":483,"Label":"103411-483 via Conventional from 103414 -> 6772","Type":"Conventional","Directional":true,"Links":[{"SourceID":103414,"TargetID":6772,"Directional":true}]},{"ID":19615,"SourceStructureID":103417,"TargetStructureID":483,"Label":"103417-483 via Conventional from 103418 -> 6774","Type":"Conventional","Directional":true,"Links":[{"SourceID":103418,"TargetID":6774,"Directional":true}]},{"ID":19616,"SourceStructureID":103440,"TargetStructureID":483,"Label":"103440-483 via Conventional from 103441 -> 49799","Type":"Conventional","Directional":true,"Links":[{"SourceID":103441,"TargetID":49799,"Directional":true}]},{"ID":19617,"SourceStructureID":103458,"TargetStructureID":483,"Label":"103458-483 via Conventional from 103459 -> 97736","Type":"Conventional","Directional":true,"Links":[{"SourceID":103459,"TargetID":97736,"Directional":true}]},{"ID":19618,"SourceStructureID":103462,"TargetStructureID":483,"Label":"103462-483 via Conventional from 103463 -> 97732","Type":"Conventional","Directional":true,"Links":[{"SourceID":103463,"TargetID":97732,"Directional":true}]},{"ID":19619,"SourceStructureID":103475,"TargetStructureID":483,"Label":"103475-483 via Conventional from 103476 -> 97769","Type":"Conventional","Directional":true,"Links":[{"SourceID":103476,"TargetID":97769,"Directional":true}]},{"ID":19620,"SourceStructureID":103485,"TargetStructureID":483,"Label":"103485-483 via Conventional from 103488 -> 92316","Type":"Conventional","Directional":true,"Links":[{"SourceID":103488,"TargetID":92316,"Directional":true}]},{"ID":19621,"SourceStructureID":103514,"TargetStructureID":483,"Label":"103514-483 via Conventional from 103515 -> 97778","Type":"Conventional","Directional":true,"Links":[{"SourceID":103515,"TargetID":97778,"Directional":true}]},{"ID":19622,"SourceStructureID":103517,"TargetStructureID":483,"Label":"103517-483 via Conventional from 103518 -> 103516","Type":"Conventional","Directional":true,"Links":[{"SourceID":103518,"TargetID":103516,"Directional":true}]},{"ID":19623,"SourceStructureID":103526,"TargetStructureID":483,"Label":"103526-483 via Conventional from 103527 -> 97436","Type":"Conventional","Directional":true,"Links":[{"SourceID":103527,"TargetID":97436,"Directional":true}]},{"ID":19624,"SourceStructureID":103532,"TargetStructureID":483,"Label":"103532-483 via Conventional from 103533 -> 92338","Type":"Conventional","Directional":true,"Links":[{"SourceID":103533,"TargetID":92338,"Directional":true}]},{"ID":19625,"SourceStructureID":103541,"TargetStructureID":483,"Label":"103541-483 via Conventional from 103542 -> 97437","Type":"Conventional","Directional":true,"Links":[{"SourceID":103542,"TargetID":97437,"Directional":true}]},{"ID":19626,"SourceStructureID":103557,"TargetStructureID":5649,"Label":"103557-5649 via Conventional from 103765 -> 103763","Type":"Conventional","Directional":true,"Links":[{"SourceID":103765,"TargetID":103763,"Directional":true}]},{"ID":19627,"SourceStructureID":103563,"TargetStructureID":5650,"Label":"103563-5650 via Conventional from 103568 -> 103569","Type":"Conventional","Directional":true,"Links":[{"SourceID":103568,"TargetID":103569,"Directional":true}]},{"ID":19628,"SourceStructureID":103595,"TargetStructureID":5650,"Label":"103595-5650 via Conventional from 103596 -> 103597","Type":"Conventional","Directional":true,"Links":[{"SourceID":103596,"TargetID":103597,"Directional":true}]},{"ID":19629,"SourceStructureID":103603,"TargetStructureID":5650,"Label":"103603-5650 via Conventional from 103607 -> 103608","Type":"Conventional","Directional":true,"Links":[{"SourceID":103607,"TargetID":103608,"Directional":true}]},{"ID":19630,"SourceStructureID":103613,"TargetStructureID":5650,"Label":"103613-5650 via Conventional from 103633 -> 103634","Type":"Conventional","Directional":true,"Links":[{"SourceID":103633,"TargetID":103634,"Directional":true}]},{"ID":19631,"SourceStructureID":103639,"TargetStructureID":5650,"Label":"103639-5650 via Conventional from 103640 -> 103641","Type":"Conventional","Directional":true,"Links":[{"SourceID":103640,"TargetID":103641,"Directional":true}]},{"ID":19632,"SourceStructureID":103642,"TargetStructureID":5650,"Label":"103642-5650 via Conventional from 103643 -> 103644","Type":"Conventional","Directional":true,"Links":[{"SourceID":103643,"TargetID":103644,"Directional":true}]},{"ID":19633,"SourceStructureID":103651,"TargetStructureID":5650,"Label":"103651-5650 via Conventional from 103652 -> 103653","Type":"Conventional","Directional":true,"Links":[{"SourceID":103652,"TargetID":103653,"Directional":true}]},{"ID":19634,"SourceStructureID":103669,"TargetStructureID":5650,"Label":"103669-5650 via Conventional from 103670 -> 103672","Type":"Conventional","Directional":true,"Links":[{"SourceID":103670,"TargetID":103672,"Directional":true}]},{"ID":19635,"SourceStructureID":103680,"TargetStructureID":5650,"Label":"103680-5650 via Conventional from 103683 -> 103684","Type":"Conventional","Directional":true,"Links":[{"SourceID":103683,"TargetID":103684,"Directional":true}]},{"ID":19636,"SourceStructureID":103680,"TargetStructureID":12897,"Label":"103680-12897 via Ribbon Synapse from 103686 -> 103685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103686,"TargetID":103685,"Directional":true}]},{"ID":19637,"SourceStructureID":103687,"TargetStructureID":5650,"Label":"103687-5650 via Conventional from 103696 -> 103697","Type":"Conventional","Directional":true,"Links":[{"SourceID":103696,"TargetID":103697,"Directional":true}]},{"ID":19638,"SourceStructureID":103701,"TargetStructureID":5650,"Label":"103701-5650 via Conventional from 103702 -> 103703","Type":"Conventional","Directional":true,"Links":[{"SourceID":103702,"TargetID":103703,"Directional":true}]},{"ID":19639,"SourceStructureID":103707,"TargetStructureID":5650,"Label":"103707-5650 via Conventional from 103708 -> 103709","Type":"Conventional","Directional":true,"Links":[{"SourceID":103708,"TargetID":103709,"Directional":true}]},{"ID":19640,"SourceStructureID":103728,"TargetStructureID":6857,"Label":"103728-6857 via Conventional from 103729 -> 103730","Type":"Conventional","Directional":true,"Links":[{"SourceID":103729,"TargetID":103730,"Directional":true}]},{"ID":19641,"SourceStructureID":103734,"TargetStructureID":483,"Label":"103734-483 via Conventional from 103735 -> 103733","Type":"Conventional","Directional":true,"Links":[{"SourceID":103735,"TargetID":103733,"Directional":true}]},{"ID":19642,"SourceStructureID":103738,"TargetStructureID":483,"Label":"103738-483 via Conventional from 103739 -> 103727","Type":"Conventional","Directional":true,"Links":[{"SourceID":103739,"TargetID":103727,"Directional":true}]},{"ID":19643,"SourceStructureID":103750,"TargetStructureID":483,"Label":"103750-483 via Conventional from 103751 -> 103752","Type":"Conventional","Directional":true,"Links":[{"SourceID":103751,"TargetID":103752,"Directional":true}]},{"ID":19644,"SourceStructureID":103754,"TargetStructureID":483,"Label":"103754-483 via Conventional from 103755 -> 103753","Type":"Conventional","Directional":true,"Links":[{"SourceID":103755,"TargetID":103753,"Directional":true}]},{"ID":19645,"SourceStructureID":103771,"TargetStructureID":12897,"Label":"103771-12897 via Ribbon Synapse from 135376 -> 135375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135376,"TargetID":135375,"Directional":true}]},{"ID":19646,"SourceStructureID":103830,"TargetStructureID":5650,"Label":"103830-5650 via Conventional from 103831 -> 103832","Type":"Conventional","Directional":true,"Links":[{"SourceID":103831,"TargetID":103832,"Directional":true}]},{"ID":19647,"SourceStructureID":103834,"TargetStructureID":5650,"Label":"103834-5650 via Conventional from 103835 -> 103836","Type":"Conventional","Directional":true,"Links":[{"SourceID":103835,"TargetID":103836,"Directional":true}]},{"ID":19648,"SourceStructureID":103841,"TargetStructureID":5650,"Label":"103841-5650 via Conventional from 103842 -> 103843","Type":"Conventional","Directional":true,"Links":[{"SourceID":103842,"TargetID":103843,"Directional":true}]},{"ID":19649,"SourceStructureID":103846,"TargetStructureID":5650,"Label":"103846-5650 via Conventional from 103847 -> 103848","Type":"Conventional","Directional":true,"Links":[{"SourceID":103847,"TargetID":103848,"Directional":true}]},{"ID":19650,"SourceStructureID":103846,"TargetStructureID":112819,"Label":"103846-112819 via Conventional from 112822 -> 112821","Type":"Conventional","Directional":true,"Links":[{"SourceID":112822,"TargetID":112821,"Directional":true}]},{"ID":19651,"SourceStructureID":103853,"TargetStructureID":5650,"Label":"103853-5650 via Conventional from 103854 -> 103855","Type":"Conventional","Directional":true,"Links":[{"SourceID":103854,"TargetID":103855,"Directional":true}]},{"ID":19652,"SourceStructureID":103856,"TargetStructureID":5650,"Label":"103856-5650 via Conventional from 103867 -> 103868","Type":"Conventional","Directional":true,"Links":[{"SourceID":103867,"TargetID":103868,"Directional":true}]},{"ID":19653,"SourceStructureID":103869,"TargetStructureID":5650,"Label":"103869-5650 via Conventional from 103870 -> 103871","Type":"Conventional","Directional":true,"Links":[{"SourceID":103870,"TargetID":103871,"Directional":true}]},{"ID":19654,"SourceStructureID":103872,"TargetStructureID":5650,"Label":"103872-5650 via Conventional from 103878 -> 103879","Type":"Conventional","Directional":true,"Links":[{"SourceID":103878,"TargetID":103879,"Directional":true}]},{"ID":19655,"SourceStructureID":103875,"TargetStructureID":5650,"Label":"103875-5650 via Conventional from 103876 -> 103877","Type":"Conventional","Directional":true,"Links":[{"SourceID":103876,"TargetID":103877,"Directional":true}]},{"ID":19656,"SourceStructureID":103880,"TargetStructureID":5650,"Label":"103880-5650 via Conventional from 103881 -> 103882","Type":"Conventional","Directional":true,"Links":[{"SourceID":103881,"TargetID":103882,"Directional":true}]},{"ID":19657,"SourceStructureID":103896,"TargetStructureID":5650,"Label":"103896-5650 via Conventional from 103904 -> 23487","Type":"Conventional","Directional":true,"Links":[{"SourceID":103904,"TargetID":23487,"Directional":true}]},{"ID":19658,"SourceStructureID":103907,"TargetStructureID":5650,"Label":"103907-5650 via Conventional from 103908 -> 103909","Type":"Conventional","Directional":true,"Links":[{"SourceID":103908,"TargetID":103909,"Directional":true}]},{"ID":19659,"SourceStructureID":103913,"TargetStructureID":5650,"Label":"103913-5650 via Conventional from 103914 -> 23491","Type":"Conventional","Directional":true,"Links":[{"SourceID":103914,"TargetID":23491,"Directional":true}]},{"ID":19660,"SourceStructureID":103915,"TargetStructureID":5650,"Label":"103915-5650 via Conventional from 103916 -> 103917","Type":"Conventional","Directional":true,"Links":[{"SourceID":103916,"TargetID":103917,"Directional":true}]},{"ID":19661,"SourceStructureID":103920,"TargetStructureID":5650,"Label":"103920-5650 via Conventional from 103921 -> 23489","Type":"Conventional","Directional":true,"Links":[{"SourceID":103921,"TargetID":23489,"Directional":true}]},{"ID":19662,"SourceStructureID":103922,"TargetStructureID":5650,"Label":"103922-5650 via Conventional from 103923 -> 23494","Type":"Conventional","Directional":true,"Links":[{"SourceID":103923,"TargetID":23494,"Directional":true}]},{"ID":19663,"SourceStructureID":103951,"TargetStructureID":5650,"Label":"103951-5650 via Conventional from 103953 -> 103954","Type":"Conventional","Directional":true,"Links":[{"SourceID":103953,"TargetID":103954,"Directional":true}]},{"ID":19664,"SourceStructureID":103956,"TargetStructureID":5650,"Label":"103956-5650 via Conventional from 103957 -> 23482","Type":"Conventional","Directional":true,"Links":[{"SourceID":103957,"TargetID":23482,"Directional":true}]},{"ID":19665,"SourceStructureID":103958,"TargetStructureID":5650,"Label":"103958-5650 via Conventional from 103959 -> 103960","Type":"Conventional","Directional":true,"Links":[{"SourceID":103959,"TargetID":103960,"Directional":true}]},{"ID":19666,"SourceStructureID":103969,"TargetStructureID":5650,"Label":"103969-5650 via Conventional from 103970 -> 103971","Type":"Conventional","Directional":true,"Links":[{"SourceID":103970,"TargetID":103971,"Directional":true}]},{"ID":19667,"SourceStructureID":103975,"TargetStructureID":5650,"Label":"103975-5650 via Conventional from 103979 -> 103980","Type":"Conventional","Directional":true,"Links":[{"SourceID":103979,"TargetID":103980,"Directional":true}]},{"ID":19668,"SourceStructureID":103987,"TargetStructureID":5650,"Label":"103987-5650 via Conventional from 104018 -> 104019","Type":"Conventional","Directional":true,"Links":[{"SourceID":104018,"TargetID":104019,"Directional":true}]},{"ID":19669,"SourceStructureID":103992,"TargetStructureID":5278,"Label":"103992-5278 via Conventional from 104000 -> 104001","Type":"Conventional","Directional":true,"Links":[{"SourceID":104000,"TargetID":104001,"Directional":true}]},{"ID":19670,"SourceStructureID":103999,"TargetStructureID":5278,"Label":"103999-5278 via Conventional from 104004 -> 11189","Type":"Conventional","Directional":true,"Links":[{"SourceID":104004,"TargetID":11189,"Directional":true}]},{"ID":19671,"SourceStructureID":104013,"TargetStructureID":5650,"Label":"104013-5650 via Conventional from 104016 -> 104017","Type":"Conventional","Directional":true,"Links":[{"SourceID":104016,"TargetID":104017,"Directional":true}]},{"ID":19672,"SourceStructureID":104043,"TargetStructureID":5650,"Label":"104043-5650 via Conventional from 104047 -> 104048","Type":"Conventional","Directional":true,"Links":[{"SourceID":104047,"TargetID":104048,"Directional":true}]},{"ID":19673,"SourceStructureID":104049,"TargetStructureID":5278,"Label":"104049-5278 via Conventional from 104065 -> 104067","Type":"Conventional","Directional":true,"Links":[{"SourceID":104065,"TargetID":104067,"Directional":true}]},{"ID":19674,"SourceStructureID":104056,"TargetStructureID":5650,"Label":"104056-5650 via Conventional from 104058 -> 104061","Type":"Conventional","Directional":true,"Links":[{"SourceID":104058,"TargetID":104061,"Directional":true}]},{"ID":19675,"SourceStructureID":104062,"TargetStructureID":5278,"Label":"104062-5278 via Conventional from 104864 -> 104865","Type":"Conventional","Directional":true,"Links":[{"SourceID":104864,"TargetID":104865,"Directional":true}]},{"ID":19676,"SourceStructureID":104063,"TargetStructureID":5650,"Label":"104063-5650 via Conventional from 104077 -> 104078","Type":"Conventional","Directional":true,"Links":[{"SourceID":104077,"TargetID":104078,"Directional":true}]},{"ID":19677,"SourceStructureID":104082,"TargetStructureID":5650,"Label":"104082-5650 via Conventional from 104085 -> 104086","Type":"Conventional","Directional":true,"Links":[{"SourceID":104085,"TargetID":104086,"Directional":true}]},{"ID":19678,"SourceStructureID":104084,"TargetStructureID":104079,"Label":"104084-104079 via Conventional from 104087 -> 104088","Type":"Conventional","Directional":true,"Links":[{"SourceID":104087,"TargetID":104088,"Directional":true}]},{"ID":19679,"SourceStructureID":104090,"TargetStructureID":104089,"Label":"104090-104089 via Conventional from 104091 -> 104092","Type":"Conventional","Directional":true,"Links":[{"SourceID":104091,"TargetID":104092,"Directional":true}]},{"ID":19680,"SourceStructureID":104097,"TargetStructureID":5650,"Label":"104097-5650 via Conventional from 104102 -> 30146","Type":"Conventional","Directional":true,"Links":[{"SourceID":104102,"TargetID":30146,"Directional":true}]},{"ID":19681,"SourceStructureID":104103,"TargetStructureID":5650,"Label":"104103-5650 via Conventional from 104104 -> 30147","Type":"Conventional","Directional":true,"Links":[{"SourceID":104104,"TargetID":30147,"Directional":true}]},{"ID":19682,"SourceStructureID":104109,"TargetStructureID":1021,"Label":"104109-1021 via Conventional from 125238 -> 125237","Type":"Conventional","Directional":true,"Links":[{"SourceID":125238,"TargetID":125237,"Directional":true}]},{"ID":19683,"SourceStructureID":104109,"TargetStructureID":5650,"Label":"104109-5650 via Conventional from 104111 -> 30144","Type":"Conventional","Directional":true,"Links":[{"SourceID":104111,"TargetID":30144,"Directional":true}]},{"ID":19684,"SourceStructureID":104117,"TargetStructureID":5278,"Label":"104117-5278 via Conventional from 104150 -> 20127","Type":"Conventional","Directional":true,"Links":[{"SourceID":104150,"TargetID":20127,"Directional":true}]},{"ID":19685,"SourceStructureID":104118,"TargetStructureID":5650,"Label":"104118-5650 via Conventional from 104119 -> 30148","Type":"Conventional","Directional":true,"Links":[{"SourceID":104119,"TargetID":30148,"Directional":true}]},{"ID":19686,"SourceStructureID":104131,"TargetStructureID":5650,"Label":"104131-5650 via Conventional from 104135 -> 104136","Type":"Conventional","Directional":true,"Links":[{"SourceID":104135,"TargetID":104136,"Directional":true}]},{"ID":19687,"SourceStructureID":104140,"TargetStructureID":5650,"Label":"104140-5650 via Conventional from 104145 -> 104147","Type":"Conventional","Directional":true,"Links":[{"SourceID":104145,"TargetID":104147,"Directional":true}]},{"ID":19688,"SourceStructureID":104143,"TargetStructureID":5278,"Label":"104143-5278 via Conventional from 104148 -> 11209","Type":"Conventional","Directional":true,"Links":[{"SourceID":104148,"TargetID":11209,"Directional":true}]},{"ID":19689,"SourceStructureID":104155,"TargetStructureID":6120,"Label":"104155-6120 via Conventional from 111226 -> 111225","Type":"Conventional","Directional":true,"Links":[{"SourceID":111226,"TargetID":111225,"Directional":true}]},{"ID":19690,"SourceStructureID":104157,"TargetStructureID":5650,"Label":"104157-5650 via Conventional from 104158 -> 104159, 104165 -> 30157","Type":"Conventional","Directional":true,"Links":[{"SourceID":104158,"TargetID":104159,"Directional":true},{"SourceID":104165,"TargetID":30157,"Directional":true}]},{"ID":19691,"SourceStructureID":104160,"TargetStructureID":5650,"Label":"104160-5650 via Conventional from 104161 -> 104162","Type":"Conventional","Directional":true,"Links":[{"SourceID":104161,"TargetID":104162,"Directional":true}]},{"ID":19692,"SourceStructureID":104168,"TargetStructureID":5278,"Label":"104168-5278 via Conventional from 104169 -> 11197","Type":"Conventional","Directional":true,"Links":[{"SourceID":104169,"TargetID":11197,"Directional":true}]},{"ID":19693,"SourceStructureID":104170,"TargetStructureID":5278,"Label":"104170-5278 via Conventional from 104173 -> 11198","Type":"Conventional","Directional":true,"Links":[{"SourceID":104173,"TargetID":11198,"Directional":true}]},{"ID":19694,"SourceStructureID":104180,"TargetStructureID":5278,"Label":"104180-5278 via Conventional from 104181 -> 20130","Type":"Conventional","Directional":true,"Links":[{"SourceID":104181,"TargetID":20130,"Directional":true}]},{"ID":19695,"SourceStructureID":104208,"TargetStructureID":5278,"Label":"104208-5278 via Conventional from 104209 -> 104210","Type":"Conventional","Directional":true,"Links":[{"SourceID":104209,"TargetID":104210,"Directional":true}]},{"ID":19696,"SourceStructureID":104211,"TargetStructureID":142,"Label":"104211-142 via Conventional from 104862 -> 92451","Type":"Conventional","Directional":true,"Links":[{"SourceID":104862,"TargetID":92451,"Directional":true}]},{"ID":19697,"SourceStructureID":104211,"TargetStructureID":5278,"Label":"104211-5278 via Conventional from 104860 -> 11207","Type":"Conventional","Directional":true,"Links":[{"SourceID":104860,"TargetID":11207,"Directional":true}]},{"ID":19698,"SourceStructureID":104223,"TargetStructureID":5278,"Label":"104223-5278 via Conventional from 104224 -> 11205","Type":"Conventional","Directional":true,"Links":[{"SourceID":104224,"TargetID":11205,"Directional":true}]},{"ID":19699,"SourceStructureID":104266,"TargetStructureID":5650,"Label":"104266-5650 via Conventional from 104267 -> 104268","Type":"Conventional","Directional":true,"Links":[{"SourceID":104267,"TargetID":104268,"Directional":true}]},{"ID":19700,"SourceStructureID":104273,"TargetStructureID":5650,"Label":"104273-5650 via Conventional from 104274 -> 104275","Type":"Conventional","Directional":true,"Links":[{"SourceID":104274,"TargetID":104275,"Directional":true}]},{"ID":19701,"SourceStructureID":104276,"TargetStructureID":5278,"Label":"104276-5278 via Conventional from 104279 -> 104280","Type":"Conventional","Directional":true,"Links":[{"SourceID":104279,"TargetID":104280,"Directional":true}]},{"ID":19702,"SourceStructureID":104285,"TargetStructureID":5650,"Label":"104285-5650 via Conventional from 126391 -> 126390","Type":"Conventional","Directional":true,"Links":[{"SourceID":126391,"TargetID":126390,"Directional":true}]},{"ID":19703,"SourceStructureID":104289,"TargetStructureID":5650,"Label":"104289-5650 via Conventional from 104291 -> 104293","Type":"Conventional","Directional":true,"Links":[{"SourceID":104291,"TargetID":104293,"Directional":true}]},{"ID":19704,"SourceStructureID":104335,"TargetStructureID":5650,"Label":"104335-5650 via Conventional from 104341 -> 104342","Type":"Conventional","Directional":true,"Links":[{"SourceID":104341,"TargetID":104342,"Directional":true}]},{"ID":19705,"SourceStructureID":104340,"TargetStructureID":5278,"Label":"104340-5278 via Conventional from 104343 -> 92264","Type":"Conventional","Directional":true,"Links":[{"SourceID":104343,"TargetID":92264,"Directional":true}]},{"ID":19706,"SourceStructureID":104346,"TargetStructureID":5278,"Label":"104346-5278 via Conventional from 104349 -> 92265","Type":"Conventional","Directional":true,"Links":[{"SourceID":104349,"TargetID":92265,"Directional":true}]},{"ID":19707,"SourceStructureID":104352,"TargetStructureID":5650,"Label":"104352-5650 via Conventional from 104357 -> 104358","Type":"Conventional","Directional":true,"Links":[{"SourceID":104357,"TargetID":104358,"Directional":true}]},{"ID":19708,"SourceStructureID":104359,"TargetStructureID":5650,"Label":"104359-5650 via Conventional from 104360 -> 104361","Type":"Conventional","Directional":true,"Links":[{"SourceID":104360,"TargetID":104361,"Directional":true}]},{"ID":19709,"SourceStructureID":104364,"TargetStructureID":5650,"Label":"104364-5650 via Conventional from 104365 -> 104366","Type":"Conventional","Directional":true,"Links":[{"SourceID":104365,"TargetID":104366,"Directional":true}]},{"ID":19710,"SourceStructureID":104368,"TargetStructureID":5650,"Label":"104368-5650 via Conventional from 104369 -> 29903","Type":"Conventional","Directional":true,"Links":[{"SourceID":104369,"TargetID":29903,"Directional":true}]},{"ID":19711,"SourceStructureID":104373,"TargetStructureID":5650,"Label":"104373-5650 via Conventional from 104374 -> 29902","Type":"Conventional","Directional":true,"Links":[{"SourceID":104374,"TargetID":29902,"Directional":true}]},{"ID":19712,"SourceStructureID":104388,"TargetStructureID":5278,"Label":"104388-5278 via Conventional from 104389 -> 104390","Type":"Conventional","Directional":true,"Links":[{"SourceID":104389,"TargetID":104390,"Directional":true}]},{"ID":19713,"SourceStructureID":104399,"TargetStructureID":5278,"Label":"104399-5278 via Conventional from 104400 -> 92195","Type":"Conventional","Directional":true,"Links":[{"SourceID":104400,"TargetID":92195,"Directional":true}]},{"ID":19714,"SourceStructureID":104410,"TargetStructureID":5278,"Label":"104410-5278 via Conventional from 104413 -> 104415","Type":"Conventional","Directional":true,"Links":[{"SourceID":104413,"TargetID":104415,"Directional":true}]},{"ID":19715,"SourceStructureID":104414,"TargetStructureID":5650,"Label":"104414-5650 via Conventional from 104422 -> 104424","Type":"Conventional","Directional":true,"Links":[{"SourceID":104422,"TargetID":104424,"Directional":true}]},{"ID":19716,"SourceStructureID":104430,"TargetStructureID":5278,"Label":"104430-5278 via Conventional from 104431 -> 104432","Type":"Conventional","Directional":true,"Links":[{"SourceID":104431,"TargetID":104432,"Directional":true}]},{"ID":19717,"SourceStructureID":104434,"TargetStructureID":5278,"Label":"104434-5278 via Conventional from 104436 -> 92167","Type":"Conventional","Directional":true,"Links":[{"SourceID":104436,"TargetID":92167,"Directional":true}]},{"ID":19718,"SourceStructureID":104435,"TargetStructureID":5284,"Label":"104435-5284 via Conventional from 113310 -> 113306","Type":"Conventional","Directional":true,"Links":[{"SourceID":113310,"TargetID":113306,"Directional":true}]},{"ID":19719,"SourceStructureID":104444,"TargetStructureID":5278,"Label":"104444-5278 via Conventional from 104447 -> 104528","Type":"Conventional","Directional":true,"Links":[{"SourceID":104447,"TargetID":104528,"Directional":true}]},{"ID":19720,"SourceStructureID":104462,"TargetStructureID":5650,"Label":"104462-5650 via Conventional from 104463 -> 104464","Type":"Conventional","Directional":true,"Links":[{"SourceID":104463,"TargetID":104464,"Directional":true}]},{"ID":19721,"SourceStructureID":104468,"TargetStructureID":5650,"Label":"104468-5650 via Conventional from 104470 -> 29905","Type":"Conventional","Directional":true,"Links":[{"SourceID":104470,"TargetID":29905,"Directional":true}]},{"ID":19722,"SourceStructureID":104473,"TargetStructureID":5650,"Label":"104473-5650 via Conventional from 104474 -> 29917","Type":"Conventional","Directional":true,"Links":[{"SourceID":104474,"TargetID":29917,"Directional":true}]},{"ID":19723,"SourceStructureID":104477,"TargetStructureID":5649,"Label":"104477-5649 via Conventional from 135452 -> 135451","Type":"Conventional","Directional":true,"Links":[{"SourceID":135452,"TargetID":135451,"Directional":true}]},{"ID":19724,"SourceStructureID":104484,"TargetStructureID":5649,"Label":"104484-5649 via Conventional from 104486 -> 104487","Type":"Conventional","Directional":true,"Links":[{"SourceID":104486,"TargetID":104487,"Directional":true}]},{"ID":19725,"SourceStructureID":104505,"TargetStructureID":5649,"Label":"104505-5649 via Conventional from 104506 -> 104504","Type":"Conventional","Directional":true,"Links":[{"SourceID":104506,"TargetID":104504,"Directional":true}]},{"ID":19726,"SourceStructureID":104507,"TargetStructureID":5278,"Label":"104507-5278 via Conventional from 104510 -> 92165","Type":"Conventional","Directional":true,"Links":[{"SourceID":104510,"TargetID":92165,"Directional":true}]},{"ID":19727,"SourceStructureID":104509,"TargetStructureID":104523,"Label":"104509-104523 via Conventional from 104522 -> 104524","Type":"Conventional","Directional":true,"Links":[{"SourceID":104522,"TargetID":104524,"Directional":true}]},{"ID":19728,"SourceStructureID":104523,"TargetStructureID":5649,"Label":"104523-5649 via Conventional from 104548 -> 104549","Type":"Conventional","Directional":true,"Links":[{"SourceID":104548,"TargetID":104549,"Directional":true}]},{"ID":19729,"SourceStructureID":104526,"TargetStructureID":5649,"Label":"104526-5649 via Conventional from 104527 -> 104525","Type":"Conventional","Directional":true,"Links":[{"SourceID":104527,"TargetID":104525,"Directional":true}]},{"ID":19730,"SourceStructureID":104534,"TargetStructureID":5649,"Label":"104534-5649 via Conventional from 104535 -> 104533","Type":"Conventional","Directional":true,"Links":[{"SourceID":104535,"TargetID":104533,"Directional":true}]},{"ID":19731,"SourceStructureID":104538,"TargetStructureID":104541,"Label":"104538-104541 via Conventional from 104539 -> 104542","Type":"Conventional","Directional":true,"Links":[{"SourceID":104539,"TargetID":104542,"Directional":true}]},{"ID":19732,"SourceStructureID":104554,"TargetStructureID":5649,"Label":"104554-5649 via Conventional from 104555 -> 104550","Type":"Conventional","Directional":true,"Links":[{"SourceID":104555,"TargetID":104550,"Directional":true}]},{"ID":19733,"SourceStructureID":104556,"TargetStructureID":5649,"Label":"104556-5649 via Conventional from 104558 -> 104553","Type":"Conventional","Directional":true,"Links":[{"SourceID":104558,"TargetID":104553,"Directional":true}]},{"ID":19734,"SourceStructureID":104559,"TargetStructureID":5649,"Label":"104559-5649 via Conventional from 135454 -> 135453","Type":"Conventional","Directional":true,"Links":[{"SourceID":135454,"TargetID":135453,"Directional":true}]},{"ID":19735,"SourceStructureID":104565,"TargetStructureID":5649,"Label":"104565-5649 via Conventional from 104566 -> 104564","Type":"Conventional","Directional":true,"Links":[{"SourceID":104566,"TargetID":104564,"Directional":true}]},{"ID":19736,"SourceStructureID":104572,"TargetStructureID":5649,"Label":"104572-5649 via Conventional from 104574 -> 104552","Type":"Conventional","Directional":true,"Links":[{"SourceID":104574,"TargetID":104552,"Directional":true}]},{"ID":19737,"SourceStructureID":104580,"TargetStructureID":5649,"Label":"104580-5649 via Conventional from 104581 -> 104579","Type":"Conventional","Directional":true,"Links":[{"SourceID":104581,"TargetID":104579,"Directional":true}]},{"ID":19738,"SourceStructureID":104587,"TargetStructureID":5278,"Label":"104587-5278 via Conventional from 104590 -> 92220","Type":"Conventional","Directional":true,"Links":[{"SourceID":104590,"TargetID":92220,"Directional":true}]},{"ID":19739,"SourceStructureID":104591,"TargetStructureID":5278,"Label":"104591-5278 via Conventional from 104592 -> 92221, 104597 -> 92221","Type":"Conventional","Directional":true,"Links":[{"SourceID":104592,"TargetID":92221,"Directional":true},{"SourceID":104597,"TargetID":92221,"Directional":true}]},{"ID":19740,"SourceStructureID":104593,"TargetStructureID":5278,"Label":"104593-5278 via Conventional from 104594 -> 104595","Type":"Conventional","Directional":true,"Links":[{"SourceID":104594,"TargetID":104595,"Directional":true}]},{"ID":19741,"SourceStructureID":104616,"TargetStructureID":5649,"Label":"104616-5649 via Conventional from 104617 -> 104615","Type":"Conventional","Directional":true,"Links":[{"SourceID":104617,"TargetID":104615,"Directional":true}]},{"ID":19742,"SourceStructureID":104619,"TargetStructureID":5649,"Label":"104619-5649 via Conventional from 104620 -> 104618, 136133 -> 136132","Type":"Conventional","Directional":true,"Links":[{"SourceID":104620,"TargetID":104618,"Directional":true},{"SourceID":136133,"TargetID":136132,"Directional":true}]},{"ID":19743,"SourceStructureID":104633,"TargetStructureID":5649,"Label":"104633-5649 via Conventional from 135413 -> 135412","Type":"Conventional","Directional":true,"Links":[{"SourceID":135413,"TargetID":135412,"Directional":true}]},{"ID":19744,"SourceStructureID":104638,"TargetStructureID":5649,"Label":"104638-5649 via Conventional from 104639 -> 53841","Type":"Conventional","Directional":true,"Links":[{"SourceID":104639,"TargetID":53841,"Directional":true}]},{"ID":19745,"SourceStructureID":104648,"TargetStructureID":5649,"Label":"104648-5649 via Conventional from 104650 -> 53840","Type":"Conventional","Directional":true,"Links":[{"SourceID":104650,"TargetID":53840,"Directional":true}]},{"ID":19746,"SourceStructureID":104651,"TargetStructureID":5649,"Label":"104651-5649 via Conventional from 104652 -> 53837","Type":"Conventional","Directional":true,"Links":[{"SourceID":104652,"TargetID":53837,"Directional":true}]},{"ID":19747,"SourceStructureID":104669,"TargetStructureID":5649,"Label":"104669-5649 via Conventional from 104670 -> 104668","Type":"Conventional","Directional":true,"Links":[{"SourceID":104670,"TargetID":104668,"Directional":true}]},{"ID":19748,"SourceStructureID":104677,"TargetStructureID":13525,"Label":"104677-13525 via Conventional from 104683 -> 85667","Type":"Conventional","Directional":true,"Links":[{"SourceID":104683,"TargetID":85667,"Directional":true}]},{"ID":19749,"SourceStructureID":104690,"TargetStructureID":5649,"Label":"104690-5649 via Conventional from 104697 -> 104698","Type":"Conventional","Directional":true,"Links":[{"SourceID":104697,"TargetID":104698,"Directional":true}]},{"ID":19750,"SourceStructureID":104693,"TargetStructureID":13525,"Label":"104693-13525 via Conventional from 104694 -> 85944","Type":"Conventional","Directional":true,"Links":[{"SourceID":104694,"TargetID":85944,"Directional":true}]},{"ID":19751,"SourceStructureID":104706,"TargetStructureID":13525,"Label":"104706-13525 via Conventional from 104708 -> 85367","Type":"Conventional","Directional":true,"Links":[{"SourceID":104708,"TargetID":85367,"Directional":true}]},{"ID":19752,"SourceStructureID":104715,"TargetStructureID":5649,"Label":"104715-5649 via Conventional from 104716 -> 53890","Type":"Conventional","Directional":true,"Links":[{"SourceID":104716,"TargetID":53890,"Directional":true}]},{"ID":19753,"SourceStructureID":104719,"TargetStructureID":13525,"Label":"104719-13525 via Conventional from 104720 -> 13527","Type":"Conventional","Directional":true,"Links":[{"SourceID":104720,"TargetID":13527,"Directional":true}]},{"ID":19754,"SourceStructureID":104726,"TargetStructureID":13525,"Label":"104726-13525 via Conventional from 104727 -> 84665","Type":"Conventional","Directional":true,"Links":[{"SourceID":104727,"TargetID":84665,"Directional":true}]},{"ID":19755,"SourceStructureID":104733,"TargetStructureID":5649,"Label":"104733-5649 via Conventional from 104734 -> 53885","Type":"Conventional","Directional":true,"Links":[{"SourceID":104734,"TargetID":53885,"Directional":true}]},{"ID":19756,"SourceStructureID":104735,"TargetStructureID":15942,"Label":"104735-15942 via Conventional from 104756 -> 16763, 104757 -> 16764","Type":"Conventional","Directional":true,"Links":[{"SourceID":104756,"TargetID":16763,"Directional":true},{"SourceID":104757,"TargetID":16764,"Directional":true}]},{"ID":19757,"SourceStructureID":104739,"TargetStructureID":5649,"Label":"104739-5649 via Conventional from 104741 -> 104743","Type":"Conventional","Directional":true,"Links":[{"SourceID":104741,"TargetID":104743,"Directional":true}]},{"ID":19758,"SourceStructureID":104740,"TargetStructureID":433,"Label":"104740-433 via Conventional from 111132 -> 21589, 111206 -> 21549","Type":"Conventional","Directional":true,"Links":[{"SourceID":111132,"TargetID":21589,"Directional":true},{"SourceID":111206,"TargetID":21549,"Directional":true}]},{"ID":19759,"SourceStructureID":104740,"TargetStructureID":6128,"Label":"104740-6128 via Conventional from 114830 -> 137121, 114836 -> 33753, 114841 -> 21102, 118100 -> 33754","Type":"Conventional","Directional":true,"Links":[{"SourceID":114830,"TargetID":137121,"Directional":true},{"SourceID":114836,"TargetID":33753,"Directional":true},{"SourceID":114841,"TargetID":21102,"Directional":true},{"SourceID":118100,"TargetID":33754,"Directional":true}]},{"ID":19760,"SourceStructureID":104740,"TargetStructureID":9260,"Label":"104740-9260 via Conventional from 111138 -> 88116","Type":"Conventional","Directional":true,"Links":[{"SourceID":111138,"TargetID":88116,"Directional":true}]},{"ID":19761,"SourceStructureID":104740,"TargetStructureID":13525,"Label":"104740-13525 via Conventional from 104742 -> 86080","Type":"Conventional","Directional":true,"Links":[{"SourceID":104742,"TargetID":86080,"Directional":true}]},{"ID":19762,"SourceStructureID":104740,"TargetStructureID":46741,"Label":"104740-46741 via Conventional from 114840 -> 137108","Type":"Conventional","Directional":true,"Links":[{"SourceID":114840,"TargetID":137108,"Directional":true}]},{"ID":19763,"SourceStructureID":104744,"TargetStructureID":13525,"Label":"104744-13525 via Conventional from 104745 -> 86730","Type":"Conventional","Directional":true,"Links":[{"SourceID":104745,"TargetID":86730,"Directional":true}]},{"ID":19764,"SourceStructureID":104749,"TargetStructureID":5649,"Label":"104749-5649 via Conventional from 104750 -> 104748","Type":"Conventional","Directional":true,"Links":[{"SourceID":104750,"TargetID":104748,"Directional":true}]},{"ID":19765,"SourceStructureID":104751,"TargetStructureID":458,"Label":"104751-458 via Conventional from 111088 -> 36275","Type":"Conventional","Directional":true,"Links":[{"SourceID":111088,"TargetID":36275,"Directional":true}]},{"ID":19766,"SourceStructureID":104751,"TargetStructureID":5545,"Label":"104751-5545 via Conventional from 104752 -> 87174","Type":"Conventional","Directional":true,"Links":[{"SourceID":104752,"TargetID":87174,"Directional":true}]},{"ID":19767,"SourceStructureID":104751,"TargetStructureID":137122,"Label":"104751-137122 via Conventional from 111086 -> 137135, 111087 -> 137134","Type":"Conventional","Directional":true,"Links":[{"SourceID":111086,"TargetID":137135,"Directional":true},{"SourceID":111087,"TargetID":137134,"Directional":true}]},{"ID":19768,"SourceStructureID":104754,"TargetStructureID":13525,"Label":"104754-13525 via Conventional from 104755 -> 94216","Type":"Conventional","Directional":true,"Links":[{"SourceID":104755,"TargetID":94216,"Directional":true}]},{"ID":19769,"SourceStructureID":104774,"TargetStructureID":5649,"Label":"104774-5649 via Conventional from 104775 -> 104773","Type":"Conventional","Directional":true,"Links":[{"SourceID":104775,"TargetID":104773,"Directional":true}]},{"ID":19770,"SourceStructureID":104804,"TargetStructureID":5649,"Label":"104804-5649 via Conventional from 104805 -> 104803","Type":"Conventional","Directional":true,"Links":[{"SourceID":104805,"TargetID":104803,"Directional":true}]},{"ID":19771,"SourceStructureID":104808,"TargetStructureID":5278,"Label":"104808-5278 via Conventional from 104809 -> 104810","Type":"Conventional","Directional":true,"Links":[{"SourceID":104809,"TargetID":104810,"Directional":true}]},{"ID":19772,"SourceStructureID":104823,"TargetStructureID":5278,"Label":"104823-5278 via Conventional from 104824 -> 104825, 104826 -> 92276","Type":"Conventional","Directional":true,"Links":[{"SourceID":104824,"TargetID":104825,"Directional":true},{"SourceID":104826,"TargetID":92276,"Directional":true}]},{"ID":19773,"SourceStructureID":104834,"TargetStructureID":5278,"Label":"104834-5278 via Conventional from 104835 -> 104836, 104837 -> 104838","Type":"Conventional","Directional":true,"Links":[{"SourceID":104835,"TargetID":104836,"Directional":true},{"SourceID":104837,"TargetID":104838,"Directional":true}]},{"ID":19774,"SourceStructureID":104842,"TargetStructureID":5278,"Label":"104842-5278 via Conventional from 104843 -> 104844","Type":"Conventional","Directional":true,"Links":[{"SourceID":104843,"TargetID":104844,"Directional":true}]},{"ID":19775,"SourceStructureID":104869,"TargetStructureID":6155,"Label":"104869-6155 via Conventional from 104871 -> 48258","Type":"Conventional","Directional":true,"Links":[{"SourceID":104871,"TargetID":48258,"Directional":true}]},{"ID":19776,"SourceStructureID":104879,"TargetStructureID":6155,"Label":"104879-6155 via Conventional from 104880 -> 49058","Type":"Conventional","Directional":true,"Links":[{"SourceID":104880,"TargetID":49058,"Directional":true}]},{"ID":19777,"SourceStructureID":104886,"TargetStructureID":6155,"Label":"104886-6155 via Conventional from 104889 -> 15380","Type":"Conventional","Directional":true,"Links":[{"SourceID":104889,"TargetID":15380,"Directional":true}]},{"ID":19778,"SourceStructureID":104900,"TargetStructureID":6155,"Label":"104900-6155 via Conventional from 104901 -> 49084","Type":"Conventional","Directional":true,"Links":[{"SourceID":104901,"TargetID":49084,"Directional":true}]},{"ID":19779,"SourceStructureID":104906,"TargetStructureID":6155,"Label":"104906-6155 via Conventional from 104907 -> 104908","Type":"Conventional","Directional":true,"Links":[{"SourceID":104907,"TargetID":104908,"Directional":true}]},{"ID":19780,"SourceStructureID":104912,"TargetStructureID":6155,"Label":"104912-6155 via Conventional from 104913 -> 48321","Type":"Conventional","Directional":true,"Links":[{"SourceID":104913,"TargetID":48321,"Directional":true}]},{"ID":19781,"SourceStructureID":104926,"TargetStructureID":6155,"Label":"104926-6155 via Conventional from 104927 -> 104928, 104929 -> 104930","Type":"Conventional","Directional":true,"Links":[{"SourceID":104927,"TargetID":104928,"Directional":true},{"SourceID":104929,"TargetID":104930,"Directional":true}]},{"ID":19782,"SourceStructureID":104933,"TargetStructureID":6155,"Label":"104933-6155 via Conventional from 104934 -> 15687","Type":"Conventional","Directional":true,"Links":[{"SourceID":104934,"TargetID":15687,"Directional":true}]},{"ID":19783,"SourceStructureID":104949,"TargetStructureID":6155,"Label":"104949-6155 via Conventional from 104950 -> 15815","Type":"Conventional","Directional":true,"Links":[{"SourceID":104950,"TargetID":15815,"Directional":true}]},{"ID":19784,"SourceStructureID":104970,"TargetStructureID":6155,"Label":"104970-6155 via Conventional from 104973 -> 15613","Type":"Conventional","Directional":true,"Links":[{"SourceID":104973,"TargetID":15613,"Directional":true}]},{"ID":19785,"SourceStructureID":104974,"TargetStructureID":6155,"Label":"104974-6155 via Conventional from 104975 -> 48320","Type":"Conventional","Directional":true,"Links":[{"SourceID":104975,"TargetID":48320,"Directional":true}]},{"ID":19786,"SourceStructureID":104990,"TargetStructureID":5650,"Label":"104990-5650 via Conventional from 104991 -> 104992","Type":"Conventional","Directional":true,"Links":[{"SourceID":104991,"TargetID":104992,"Directional":true}]},{"ID":19787,"SourceStructureID":104995,"TargetStructureID":5650,"Label":"104995-5650 via Conventional from 104996 -> 104997","Type":"Conventional","Directional":true,"Links":[{"SourceID":104996,"TargetID":104997,"Directional":true}]},{"ID":19788,"SourceStructureID":104998,"TargetStructureID":5284,"Label":"104998-5284 via Conventional from 113277 -> 113276","Type":"Conventional","Directional":true,"Links":[{"SourceID":113277,"TargetID":113276,"Directional":true}]},{"ID":19789,"SourceStructureID":104998,"TargetStructureID":5650,"Label":"104998-5650 via Conventional from 104999 -> 105000","Type":"Conventional","Directional":true,"Links":[{"SourceID":104999,"TargetID":105000,"Directional":true}]},{"ID":19790,"SourceStructureID":105004,"TargetStructureID":5650,"Label":"105004-5650 via Conventional from 105005 -> 105006","Type":"Conventional","Directional":true,"Links":[{"SourceID":105005,"TargetID":105006,"Directional":true}]},{"ID":19791,"SourceStructureID":105007,"TargetStructureID":5650,"Label":"105007-5650 via Conventional from 105008 -> 105009","Type":"Conventional","Directional":true,"Links":[{"SourceID":105008,"TargetID":105009,"Directional":true}]},{"ID":19792,"SourceStructureID":105010,"TargetStructureID":5650,"Label":"105010-5650 via Conventional from 105011 -> 105012","Type":"Conventional","Directional":true,"Links":[{"SourceID":105011,"TargetID":105012,"Directional":true}]},{"ID":19793,"SourceStructureID":105016,"TargetStructureID":5650,"Label":"105016-5650 via Conventional from 105017 -> 105018","Type":"Conventional","Directional":true,"Links":[{"SourceID":105017,"TargetID":105018,"Directional":true}]},{"ID":19794,"SourceStructureID":105022,"TargetStructureID":5650,"Label":"105022-5650 via Conventional from 105026 -> 105027, 105028 -> 105029","Type":"Conventional","Directional":true,"Links":[{"SourceID":105026,"TargetID":105027,"Directional":true},{"SourceID":105028,"TargetID":105029,"Directional":true}]},{"ID":19795,"SourceStructureID":105030,"TargetStructureID":5650,"Label":"105030-5650 via Conventional from 105032 -> 105033","Type":"Conventional","Directional":true,"Links":[{"SourceID":105032,"TargetID":105033,"Directional":true}]},{"ID":19796,"SourceStructureID":105036,"TargetStructureID":5650,"Label":"105036-5650 via Conventional from 105037 -> 105038","Type":"Conventional","Directional":true,"Links":[{"SourceID":105037,"TargetID":105038,"Directional":true}]},{"ID":19797,"SourceStructureID":105040,"TargetStructureID":5650,"Label":"105040-5650 via Conventional from 105041 -> 105042","Type":"Conventional","Directional":true,"Links":[{"SourceID":105041,"TargetID":105042,"Directional":true}]},{"ID":19798,"SourceStructureID":105044,"TargetStructureID":5650,"Label":"105044-5650 via Conventional from 105045 -> 105046","Type":"Conventional","Directional":true,"Links":[{"SourceID":105045,"TargetID":105046,"Directional":true}]},{"ID":19799,"SourceStructureID":105053,"TargetStructureID":5650,"Label":"105053-5650 via Conventional from 105054 -> 105055","Type":"Conventional","Directional":true,"Links":[{"SourceID":105054,"TargetID":105055,"Directional":true}]},{"ID":19800,"SourceStructureID":105058,"TargetStructureID":5650,"Label":"105058-5650 via Conventional from 105059 -> 105060","Type":"Conventional","Directional":true,"Links":[{"SourceID":105059,"TargetID":105060,"Directional":true}]},{"ID":19801,"SourceStructureID":105064,"TargetStructureID":5650,"Label":"105064-5650 via Conventional from 118211 -> 118210","Type":"Conventional","Directional":true,"Links":[{"SourceID":118211,"TargetID":118210,"Directional":true}]},{"ID":19802,"SourceStructureID":105067,"TargetStructureID":5650,"Label":"105067-5650 via Conventional from 105068 -> 105069","Type":"Conventional","Directional":true,"Links":[{"SourceID":105068,"TargetID":105069,"Directional":true}]},{"ID":19803,"SourceStructureID":105075,"TargetStructureID":5650,"Label":"105075-5650 via Conventional from 105076 -> 105077","Type":"Conventional","Directional":true,"Links":[{"SourceID":105076,"TargetID":105077,"Directional":true}]},{"ID":19804,"SourceStructureID":105075,"TargetStructureID":128803,"Label":"105075-128803 via Conventional from 128806 -> 128805","Type":"Conventional","Directional":true,"Links":[{"SourceID":128806,"TargetID":128805,"Directional":true}]},{"ID":19805,"SourceStructureID":105078,"TargetStructureID":5650,"Label":"105078-5650 via Conventional from 105079 -> 105080","Type":"Conventional","Directional":true,"Links":[{"SourceID":105079,"TargetID":105080,"Directional":true}]},{"ID":19806,"SourceStructureID":105081,"TargetStructureID":5650,"Label":"105081-5650 via Conventional from 105082 -> 105083","Type":"Conventional","Directional":true,"Links":[{"SourceID":105082,"TargetID":105083,"Directional":true}]},{"ID":19807,"SourceStructureID":105087,"TargetStructureID":5650,"Label":"105087-5650 via Conventional from 105088 -> 105089","Type":"Conventional","Directional":true,"Links":[{"SourceID":105088,"TargetID":105089,"Directional":true}]},{"ID":19808,"SourceStructureID":105090,"TargetStructureID":1021,"Label":"105090-1021 via Conventional from 125084 -> 125082","Type":"Conventional","Directional":true,"Links":[{"SourceID":125084,"TargetID":125082,"Directional":true}]},{"ID":19809,"SourceStructureID":105090,"TargetStructureID":5650,"Label":"105090-5650 via Conventional from 105091 -> 105092","Type":"Conventional","Directional":true,"Links":[{"SourceID":105091,"TargetID":105092,"Directional":true}]},{"ID":19810,"SourceStructureID":105095,"TargetStructureID":5650,"Label":"105095-5650 via Conventional from 105096 -> 105097","Type":"Conventional","Directional":true,"Links":[{"SourceID":105096,"TargetID":105097,"Directional":true}]},{"ID":19811,"SourceStructureID":105095,"TargetStructureID":6047,"Label":"105095-6047 via Conventional from 112338 -> 112336","Type":"Conventional","Directional":true,"Links":[{"SourceID":112338,"TargetID":112336,"Directional":true}]},{"ID":19812,"SourceStructureID":105095,"TargetStructureID":112389,"Label":"105095-112389 via Conventional from 126696 -> 126698","Type":"Conventional","Directional":true,"Links":[{"SourceID":126696,"TargetID":126698,"Directional":true}]},{"ID":19813,"SourceStructureID":105102,"TargetStructureID":5650,"Label":"105102-5650 via Conventional from 105103 -> 105104","Type":"Conventional","Directional":true,"Links":[{"SourceID":105103,"TargetID":105104,"Directional":true}]},{"ID":19814,"SourceStructureID":105108,"TargetStructureID":5650,"Label":"105108-5650 via Conventional from 105109 -> 105110","Type":"Conventional","Directional":true,"Links":[{"SourceID":105109,"TargetID":105110,"Directional":true}]},{"ID":19815,"SourceStructureID":105119,"TargetStructureID":5650,"Label":"105119-5650 via Conventional from 105120 -> 105121","Type":"Conventional","Directional":true,"Links":[{"SourceID":105120,"TargetID":105121,"Directional":true}]},{"ID":19816,"SourceStructureID":105122,"TargetStructureID":5650,"Label":"105122-5650 via Conventional from 120571 -> 105124","Type":"Conventional","Directional":true,"Links":[{"SourceID":120571,"TargetID":105124,"Directional":true}]},{"ID":19817,"SourceStructureID":105128,"TargetStructureID":5650,"Label":"105128-5650 via Conventional from 105129 -> 105130","Type":"Conventional","Directional":true,"Links":[{"SourceID":105129,"TargetID":105130,"Directional":true}]},{"ID":19818,"SourceStructureID":105131,"TargetStructureID":5650,"Label":"105131-5650 via Conventional from 105133 -> 105134","Type":"Conventional","Directional":true,"Links":[{"SourceID":105133,"TargetID":105134,"Directional":true}]},{"ID":19819,"SourceStructureID":105135,"TargetStructureID":5650,"Label":"105135-5650 via Conventional from 105136 -> 105137","Type":"Conventional","Directional":true,"Links":[{"SourceID":105136,"TargetID":105137,"Directional":true}]},{"ID":19820,"SourceStructureID":105140,"TargetStructureID":5650,"Label":"105140-5650 via Conventional from 105141 -> 105142","Type":"Conventional","Directional":true,"Links":[{"SourceID":105141,"TargetID":105142,"Directional":true}]},{"ID":19821,"SourceStructureID":105146,"TargetStructureID":6047,"Label":"105146-6047 via Conventional from 112403 -> 19730","Type":"Conventional","Directional":true,"Links":[{"SourceID":112403,"TargetID":19730,"Directional":true}]},{"ID":19822,"SourceStructureID":105148,"TargetStructureID":6050,"Label":"105148-6050 via Conventional from 114364 -> 114363","Type":"Conventional","Directional":true,"Links":[{"SourceID":114364,"TargetID":114363,"Directional":true}]},{"ID":19823,"SourceStructureID":105153,"TargetStructureID":5650,"Label":"105153-5650 via Conventional from 105154 -> 105155","Type":"Conventional","Directional":true,"Links":[{"SourceID":105154,"TargetID":105155,"Directional":true}]},{"ID":19824,"SourceStructureID":105161,"TargetStructureID":5650,"Label":"105161-5650 via Conventional from 105162 -> 105163","Type":"Conventional","Directional":true,"Links":[{"SourceID":105162,"TargetID":105163,"Directional":true}]},{"ID":19825,"SourceStructureID":105171,"TargetStructureID":5650,"Label":"105171-5650 via Conventional from 105175 -> 105176","Type":"Conventional","Directional":true,"Links":[{"SourceID":105175,"TargetID":105176,"Directional":true}]},{"ID":19826,"SourceStructureID":105177,"TargetStructureID":5650,"Label":"105177-5650 via Conventional from 105178 -> 105179","Type":"Conventional","Directional":true,"Links":[{"SourceID":105178,"TargetID":105179,"Directional":true}]},{"ID":19827,"SourceStructureID":105180,"TargetStructureID":5650,"Label":"105180-5650 via Conventional from 105181 -> 105182","Type":"Conventional","Directional":true,"Links":[{"SourceID":105181,"TargetID":105182,"Directional":true}]},{"ID":19828,"SourceStructureID":105188,"TargetStructureID":5650,"Label":"105188-5650 via Conventional from 105194 -> 105195","Type":"Conventional","Directional":true,"Links":[{"SourceID":105194,"TargetID":105195,"Directional":true}]},{"ID":19829,"SourceStructureID":105188,"TargetStructureID":6050,"Label":"105188-6050 via Conventional from 114352 -> 114005","Type":"Conventional","Directional":true,"Links":[{"SourceID":114352,"TargetID":114005,"Directional":true}]},{"ID":19830,"SourceStructureID":105210,"TargetStructureID":133891,"Label":"105210-133891 via Conventional from 133897 -> 133896","Type":"Conventional","Directional":true,"Links":[{"SourceID":133897,"TargetID":133896,"Directional":true}]},{"ID":19831,"SourceStructureID":105212,"TargetStructureID":469,"Label":"105212-469 via Conventional from 105770 -> 105784, 106222 -> 106225, 106229 -> 106236","Type":"Conventional","Directional":true,"Links":[{"SourceID":105770,"TargetID":105784,"Directional":true},{"SourceID":106222,"TargetID":106225,"Directional":true},{"SourceID":106229,"TargetID":106236,"Directional":true}]},{"ID":19832,"SourceStructureID":105212,"TargetStructureID":10957,"Label":"105212-10957 via Conventional from 105708 -> 105709","Type":"Conventional","Directional":true,"Links":[{"SourceID":105708,"TargetID":105709,"Directional":true}]},{"ID":19833,"SourceStructureID":105219,"TargetStructureID":5531,"Label":"105219-5531 via Conventional from 105220 -> 105221","Type":"Conventional","Directional":true,"Links":[{"SourceID":105220,"TargetID":105221,"Directional":true}]},{"ID":19834,"SourceStructureID":105228,"TargetStructureID":5531,"Label":"105228-5531 via Conventional from 105229 -> 105231","Type":"Conventional","Directional":true,"Links":[{"SourceID":105229,"TargetID":105231,"Directional":true}]},{"ID":19835,"SourceStructureID":105246,"TargetStructureID":5531,"Label":"105246-5531 via Conventional from 105247 -> 105248","Type":"Conventional","Directional":true,"Links":[{"SourceID":105247,"TargetID":105248,"Directional":true}]},{"ID":19836,"SourceStructureID":105250,"TargetStructureID":5531,"Label":"105250-5531 via Conventional from 105251 -> 105252","Type":"Conventional","Directional":true,"Links":[{"SourceID":105251,"TargetID":105252,"Directional":true}]},{"ID":19837,"SourceStructureID":105279,"TargetStructureID":5531,"Label":"105279-5531 via Conventional from 105282 -> 105284","Type":"Conventional","Directional":true,"Links":[{"SourceID":105282,"TargetID":105284,"Directional":true}]},{"ID":19838,"SourceStructureID":105280,"TargetStructureID":5531,"Label":"105280-5531 via Conventional from 105281 -> 105283","Type":"Conventional","Directional":true,"Links":[{"SourceID":105281,"TargetID":105283,"Directional":true}]},{"ID":19839,"SourceStructureID":105294,"TargetStructureID":5531,"Label":"105294-5531 via Conventional from 105295 -> 105296","Type":"Conventional","Directional":true,"Links":[{"SourceID":105295,"TargetID":105296,"Directional":true}]},{"ID":19840,"SourceStructureID":105297,"TargetStructureID":5531,"Label":"105297-5531 via Conventional from 105298 -> 105299","Type":"Conventional","Directional":true,"Links":[{"SourceID":105298,"TargetID":105299,"Directional":true}]},{"ID":19841,"SourceStructureID":105300,"TargetStructureID":5531,"Label":"105300-5531 via Conventional from 105301 -> 105302","Type":"Conventional","Directional":true,"Links":[{"SourceID":105301,"TargetID":105302,"Directional":true}]},{"ID":19842,"SourceStructureID":105313,"TargetStructureID":5531,"Label":"105313-5531 via Conventional from 106202 -> 106203","Type":"Conventional","Directional":true,"Links":[{"SourceID":106202,"TargetID":106203,"Directional":true}]},{"ID":19843,"SourceStructureID":105322,"TargetStructureID":5649,"Label":"105322-5649 via Conventional from 105323 -> 105321","Type":"Conventional","Directional":true,"Links":[{"SourceID":105323,"TargetID":105321,"Directional":true}]},{"ID":19844,"SourceStructureID":105326,"TargetStructureID":5649,"Label":"105326-5649 via Conventional from 105328 -> 105318","Type":"Conventional","Directional":true,"Links":[{"SourceID":105328,"TargetID":105318,"Directional":true}]},{"ID":19845,"SourceStructureID":105339,"TargetStructureID":5649,"Label":"105339-5649 via Conventional from 105340 -> 105338","Type":"Conventional","Directional":true,"Links":[{"SourceID":105340,"TargetID":105338,"Directional":true}]},{"ID":19846,"SourceStructureID":105341,"TargetStructureID":5531,"Label":"105341-5531 via Conventional from 105344 -> 62922","Type":"Conventional","Directional":true,"Links":[{"SourceID":105344,"TargetID":62922,"Directional":true}]},{"ID":19847,"SourceStructureID":105343,"TargetStructureID":5649,"Label":"105343-5649 via Conventional from 105345 -> 105342","Type":"Conventional","Directional":true,"Links":[{"SourceID":105345,"TargetID":105342,"Directional":true}]},{"ID":19848,"SourceStructureID":105363,"TargetStructureID":5531,"Label":"105363-5531 via Conventional from 105364 -> 105365","Type":"Conventional","Directional":true,"Links":[{"SourceID":105364,"TargetID":105365,"Directional":true}]},{"ID":19849,"SourceStructureID":105376,"TargetStructureID":5649,"Label":"105376-5649 via Conventional from 105377 -> 105375","Type":"Conventional","Directional":true,"Links":[{"SourceID":105377,"TargetID":105375,"Directional":true}]},{"ID":19850,"SourceStructureID":105382,"TargetStructureID":5649,"Label":"105382-5649 via Conventional from 105383 -> 105381","Type":"Conventional","Directional":true,"Links":[{"SourceID":105383,"TargetID":105381,"Directional":true}]},{"ID":19851,"SourceStructureID":105421,"TargetStructureID":5649,"Label":"105421-5649 via Conventional from 105422 -> 105420","Type":"Conventional","Directional":true,"Links":[{"SourceID":105422,"TargetID":105420,"Directional":true}]},{"ID":19852,"SourceStructureID":105426,"TargetStructureID":5649,"Label":"105426-5649 via Conventional from 105427 -> 55718","Type":"Conventional","Directional":true,"Links":[{"SourceID":105427,"TargetID":55718,"Directional":true}]},{"ID":19853,"SourceStructureID":105434,"TargetStructureID":5649,"Label":"105434-5649 via Conventional from 105435 -> 105433","Type":"Conventional","Directional":true,"Links":[{"SourceID":105435,"TargetID":105433,"Directional":true}]},{"ID":19854,"SourceStructureID":105438,"TargetStructureID":5649,"Label":"105438-5649 via Conventional from 105439 -> 55729","Type":"Conventional","Directional":true,"Links":[{"SourceID":105439,"TargetID":55729,"Directional":true}]},{"ID":19855,"SourceStructureID":105447,"TargetStructureID":5649,"Label":"105447-5649 via Conventional from 105448 -> 105449","Type":"Conventional","Directional":true,"Links":[{"SourceID":105448,"TargetID":105449,"Directional":true}]},{"ID":19856,"SourceStructureID":105450,"TargetStructureID":5649,"Label":"105450-5649 via Conventional from 105451 -> 105453","Type":"Conventional","Directional":true,"Links":[{"SourceID":105451,"TargetID":105453,"Directional":true}]},{"ID":19857,"SourceStructureID":105458,"TargetStructureID":5499,"Label":"105458-5499 via Conventional from 105459 -> 105457","Type":"Conventional","Directional":true,"Links":[{"SourceID":105459,"TargetID":105457,"Directional":true}]},{"ID":19858,"SourceStructureID":105464,"TargetStructureID":105467,"Label":"105464-105467 via Ribbon Synapse from 105465 -> 105469","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105465,"TargetID":105469,"Directional":true}]},{"ID":19859,"SourceStructureID":105464,"TargetStructureID":105474,"Label":"105464-105474 via BC Conventional Synapse from 105473 -> 105475","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105473,"TargetID":105475,"Directional":true}]},{"ID":19860,"SourceStructureID":105467,"TargetStructureID":105464,"Label":"105467-105464 via Conventional from 105468 -> 105466","Type":"Conventional","Directional":true,"Links":[{"SourceID":105468,"TargetID":105466,"Directional":true}]},{"ID":19861,"SourceStructureID":105471,"TargetStructureID":105464,"Label":"105471-105464 via Conventional from 105472 -> 105470","Type":"Conventional","Directional":true,"Links":[{"SourceID":105472,"TargetID":105470,"Directional":true}]},{"ID":19862,"SourceStructureID":105477,"TargetStructureID":105464,"Label":"105477-105464 via Conventional from 105478 -> 105476","Type":"Conventional","Directional":true,"Links":[{"SourceID":105478,"TargetID":105476,"Directional":true}]},{"ID":19863,"SourceStructureID":105509,"TargetStructureID":105509,"Label":"105509-105509 via Conventional from 105834 -> 105833","Type":"Conventional","Directional":true,"Links":[{"SourceID":105834,"TargetID":105833,"Directional":true}]},{"ID":19864,"SourceStructureID":105511,"TargetStructureID":5499,"Label":"105511-5499 via Conventional from 105512 -> 105513","Type":"Conventional","Directional":true,"Links":[{"SourceID":105512,"TargetID":105513,"Directional":true}]},{"ID":19865,"SourceStructureID":105521,"TargetStructureID":5499,"Label":"105521-5499 via Conventional from 105522 -> 105520","Type":"Conventional","Directional":true,"Links":[{"SourceID":105522,"TargetID":105520,"Directional":true}]},{"ID":19866,"SourceStructureID":105526,"TargetStructureID":5499,"Label":"105526-5499 via Conventional from 105527 -> 105519","Type":"Conventional","Directional":true,"Links":[{"SourceID":105527,"TargetID":105519,"Directional":true}]},{"ID":19867,"SourceStructureID":105547,"TargetStructureID":5649,"Label":"105547-5649 via Conventional from 105550 -> 105546","Type":"Conventional","Directional":true,"Links":[{"SourceID":105550,"TargetID":105546,"Directional":true}]},{"ID":19868,"SourceStructureID":105548,"TargetStructureID":5649,"Label":"105548-5649 via Conventional from 105549 -> 105545","Type":"Conventional","Directional":true,"Links":[{"SourceID":105549,"TargetID":105545,"Directional":true}]},{"ID":19869,"SourceStructureID":105553,"TargetStructureID":5649,"Label":"105553-5649 via Conventional from 105554 -> 105552","Type":"Conventional","Directional":true,"Links":[{"SourceID":105554,"TargetID":105552,"Directional":true}]},{"ID":19870,"SourceStructureID":105558,"TargetStructureID":5649,"Label":"105558-5649 via Conventional from 105559 -> 105556","Type":"Conventional","Directional":true,"Links":[{"SourceID":105559,"TargetID":105556,"Directional":true}]},{"ID":19871,"SourceStructureID":105580,"TargetStructureID":5649,"Label":"105580-5649 via Conventional from 105581 -> 105579","Type":"Conventional","Directional":true,"Links":[{"SourceID":105581,"TargetID":105579,"Directional":true}]},{"ID":19872,"SourceStructureID":105588,"TargetStructureID":5649,"Label":"105588-5649 via Conventional from 105589 -> 105587","Type":"Conventional","Directional":true,"Links":[{"SourceID":105589,"TargetID":105587,"Directional":true}]},{"ID":19873,"SourceStructureID":105604,"TargetStructureID":5649,"Label":"105604-5649 via Conventional from 105607 -> 105593","Type":"Conventional","Directional":true,"Links":[{"SourceID":105607,"TargetID":105593,"Directional":true}]},{"ID":19874,"SourceStructureID":105612,"TargetStructureID":5649,"Label":"105612-5649 via Conventional from 105613 -> 105614","Type":"Conventional","Directional":true,"Links":[{"SourceID":105613,"TargetID":105614,"Directional":true}]},{"ID":19875,"SourceStructureID":105624,"TargetStructureID":5499,"Label":"105624-5499 via Conventional from 105625 -> 105623","Type":"Conventional","Directional":true,"Links":[{"SourceID":105625,"TargetID":105623,"Directional":true}]},{"ID":19876,"SourceStructureID":105633,"TargetStructureID":5649,"Label":"105633-5649 via Conventional from 105654 -> 53903","Type":"Conventional","Directional":true,"Links":[{"SourceID":105654,"TargetID":53903,"Directional":true}]},{"ID":19877,"SourceStructureID":105635,"TargetStructureID":5514,"Label":"105635-5514 via Conventional from 105638 -> 50697","Type":"Conventional","Directional":true,"Links":[{"SourceID":105638,"TargetID":50697,"Directional":true}]},{"ID":19878,"SourceStructureID":105635,"TargetStructureID":45672,"Label":"105635-45672 via Conventional from 105636 -> 105634","Type":"Conventional","Directional":true,"Links":[{"SourceID":105636,"TargetID":105634,"Directional":true}]},{"ID":19879,"SourceStructureID":105640,"TargetStructureID":5649,"Label":"105640-5649 via Conventional from 105641 -> 105639","Type":"Conventional","Directional":true,"Links":[{"SourceID":105641,"TargetID":105639,"Directional":true}]},{"ID":19880,"SourceStructureID":105643,"TargetStructureID":5649,"Label":"105643-5649 via Conventional from 105644 -> 105642","Type":"Conventional","Directional":true,"Links":[{"SourceID":105644,"TargetID":105642,"Directional":true}]},{"ID":19881,"SourceStructureID":105663,"TargetStructureID":5649,"Label":"105663-5649 via Conventional from 105664 -> 53906","Type":"Conventional","Directional":true,"Links":[{"SourceID":105664,"TargetID":53906,"Directional":true}]},{"ID":19882,"SourceStructureID":105670,"TargetStructureID":5649,"Label":"105670-5649 via Conventional from 105671 -> 55734","Type":"Conventional","Directional":true,"Links":[{"SourceID":105671,"TargetID":55734,"Directional":true}]},{"ID":19883,"SourceStructureID":105679,"TargetStructureID":5649,"Label":"105679-5649 via Conventional from 105680 -> 105682","Type":"Conventional","Directional":true,"Links":[{"SourceID":105680,"TargetID":105682,"Directional":true}]},{"ID":19884,"SourceStructureID":105694,"TargetStructureID":5649,"Label":"105694-5649 via Conventional from 105695 -> 105693","Type":"Conventional","Directional":true,"Links":[{"SourceID":105695,"TargetID":105693,"Directional":true}]},{"ID":19885,"SourceStructureID":105696,"TargetStructureID":5649,"Label":"105696-5649 via Conventional from 105697 -> 53939","Type":"Conventional","Directional":true,"Links":[{"SourceID":105697,"TargetID":53939,"Directional":true}]},{"ID":19886,"SourceStructureID":105706,"TargetStructureID":5649,"Label":"105706-5649 via Conventional from 105707 -> 53940","Type":"Conventional","Directional":true,"Links":[{"SourceID":105707,"TargetID":53940,"Directional":true}]},{"ID":19887,"SourceStructureID":105719,"TargetStructureID":5649,"Label":"105719-5649 via Conventional from 105720 -> 53944","Type":"Conventional","Directional":true,"Links":[{"SourceID":105720,"TargetID":53944,"Directional":true}]},{"ID":19888,"SourceStructureID":105729,"TargetStructureID":5649,"Label":"105729-5649 via Conventional from 105730 -> 105728","Type":"Conventional","Directional":true,"Links":[{"SourceID":105730,"TargetID":105728,"Directional":true}]},{"ID":19889,"SourceStructureID":105739,"TargetStructureID":5649,"Label":"105739-5649 via Conventional from 105858 -> 105738","Type":"Conventional","Directional":true,"Links":[{"SourceID":105858,"TargetID":105738,"Directional":true}]},{"ID":19890,"SourceStructureID":105745,"TargetStructureID":5649,"Label":"105745-5649 via Conventional from 105849 -> 105744","Type":"Conventional","Directional":true,"Links":[{"SourceID":105849,"TargetID":105744,"Directional":true}]},{"ID":19891,"SourceStructureID":105749,"TargetStructureID":5729,"Label":"105749-5729 via Conventional from 105750 -> 105748","Type":"Conventional","Directional":true,"Links":[{"SourceID":105750,"TargetID":105748,"Directional":true}]},{"ID":19892,"SourceStructureID":105780,"TargetStructureID":6857,"Label":"105780-6857 via Ribbon Synapse from 108553 -> 108554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108553,"TargetID":108554,"Directional":true}]},{"ID":19893,"SourceStructureID":105788,"TargetStructureID":5649,"Label":"105788-5649 via Conventional from 105800 -> 105787","Type":"Conventional","Directional":true,"Links":[{"SourceID":105800,"TargetID":105787,"Directional":true}]},{"ID":19894,"SourceStructureID":105838,"TargetStructureID":6155,"Label":"105838-6155 via Conventional from 105839 -> 49086","Type":"Conventional","Directional":true,"Links":[{"SourceID":105839,"TargetID":49086,"Directional":true}]},{"ID":19895,"SourceStructureID":105855,"TargetStructureID":6155,"Label":"105855-6155 via Conventional from 105859 -> 30581","Type":"Conventional","Directional":true,"Links":[{"SourceID":105859,"TargetID":30581,"Directional":true}]},{"ID":19896,"SourceStructureID":105873,"TargetStructureID":6155,"Label":"105873-6155 via Conventional from 105874 -> 49087","Type":"Conventional","Directional":true,"Links":[{"SourceID":105874,"TargetID":49087,"Directional":true}]},{"ID":19897,"SourceStructureID":105875,"TargetStructureID":5649,"Label":"105875-5649 via Conventional from 105876 -> 53956","Type":"Conventional","Directional":true,"Links":[{"SourceID":105876,"TargetID":53956,"Directional":true}]},{"ID":19898,"SourceStructureID":105877,"TargetStructureID":6155,"Label":"105877-6155 via Conventional from 105880 -> 16877","Type":"Conventional","Directional":true,"Links":[{"SourceID":105880,"TargetID":16877,"Directional":true}]},{"ID":19899,"SourceStructureID":105878,"TargetStructureID":5649,"Label":"105878-5649 via Conventional from 105879 -> 53951","Type":"Conventional","Directional":true,"Links":[{"SourceID":105879,"TargetID":53951,"Directional":true}]},{"ID":19900,"SourceStructureID":105881,"TargetStructureID":6155,"Label":"105881-6155 via Conventional from 105882 -> 105883","Type":"Conventional","Directional":true,"Links":[{"SourceID":105882,"TargetID":105883,"Directional":true}]},{"ID":19901,"SourceStructureID":105884,"TargetStructureID":5649,"Label":"105884-5649 via Conventional from 105885 -> 53965","Type":"Conventional","Directional":true,"Links":[{"SourceID":105885,"TargetID":53965,"Directional":true}]},{"ID":19902,"SourceStructureID":105893,"TargetStructureID":5649,"Label":"105893-5649 via Conventional from 105894 -> 53963","Type":"Conventional","Directional":true,"Links":[{"SourceID":105894,"TargetID":53963,"Directional":true}]},{"ID":19903,"SourceStructureID":105907,"TargetStructureID":5649,"Label":"105907-5649 via Conventional from 105909 -> 105918","Type":"Conventional","Directional":true,"Links":[{"SourceID":105909,"TargetID":105918,"Directional":true}]},{"ID":19904,"SourceStructureID":105924,"TargetStructureID":5649,"Label":"105924-5649 via Conventional from 105925 -> 105923","Type":"Conventional","Directional":true,"Links":[{"SourceID":105925,"TargetID":105923,"Directional":true}]},{"ID":19905,"SourceStructureID":105927,"TargetStructureID":5649,"Label":"105927-5649 via Conventional from 105929 -> 105926","Type":"Conventional","Directional":true,"Links":[{"SourceID":105929,"TargetID":105926,"Directional":true}]},{"ID":19906,"SourceStructureID":105927,"TargetStructureID":6047,"Label":"105927-6047 via Conventional from 112178 -> 112179","Type":"Conventional","Directional":true,"Links":[{"SourceID":112178,"TargetID":112179,"Directional":true}]},{"ID":19907,"SourceStructureID":105928,"TargetStructureID":6155,"Label":"105928-6155 via Conventional from 106002 -> 15600, 106047 -> 48325","Type":"Conventional","Directional":true,"Links":[{"SourceID":106002,"TargetID":15600,"Directional":true},{"SourceID":106047,"TargetID":48325,"Directional":true}]},{"ID":19908,"SourceStructureID":105936,"TargetStructureID":5649,"Label":"105936-5649 via Conventional from 105937 -> 53975","Type":"Conventional","Directional":true,"Links":[{"SourceID":105937,"TargetID":53975,"Directional":true}]},{"ID":19909,"SourceStructureID":105968,"TargetStructureID":5649,"Label":"105968-5649 via Conventional from 105969 -> 105967","Type":"Conventional","Directional":true,"Links":[{"SourceID":105969,"TargetID":105967,"Directional":true}]},{"ID":19910,"SourceStructureID":105970,"TargetStructureID":6155,"Label":"105970-6155 via Conventional from 105984 -> 29759, 105987 -> 48317","Type":"Conventional","Directional":true,"Links":[{"SourceID":105984,"TargetID":29759,"Directional":true},{"SourceID":105987,"TargetID":48317,"Directional":true}]},{"ID":19911,"SourceStructureID":105971,"TargetStructureID":6155,"Label":"105971-6155 via Conventional from 105994 -> 48316","Type":"Conventional","Directional":true,"Links":[{"SourceID":105994,"TargetID":48316,"Directional":true}]},{"ID":19912,"SourceStructureID":105972,"TargetStructureID":6155,"Label":"105972-6155 via Conventional from 105981 -> 15602","Type":"Conventional","Directional":true,"Links":[{"SourceID":105981,"TargetID":15602,"Directional":true}]},{"ID":19913,"SourceStructureID":105982,"TargetStructureID":5649,"Label":"105982-5649 via Conventional from 105983 -> 54000","Type":"Conventional","Directional":true,"Links":[{"SourceID":105983,"TargetID":54000,"Directional":true}]},{"ID":19914,"SourceStructureID":105990,"TargetStructureID":5649,"Label":"105990-5649 via Conventional from 105991 -> 105988","Type":"Conventional","Directional":true,"Links":[{"SourceID":105991,"TargetID":105988,"Directional":true}]},{"ID":19915,"SourceStructureID":106000,"TargetStructureID":5649,"Label":"106000-5649 via Conventional from 106001 -> 105999","Type":"Conventional","Directional":true,"Links":[{"SourceID":106001,"TargetID":105999,"Directional":true}]},{"ID":19916,"SourceStructureID":106007,"TargetStructureID":5649,"Label":"106007-5649 via Conventional from 106009 -> 54001","Type":"Conventional","Directional":true,"Links":[{"SourceID":106009,"TargetID":54001,"Directional":true}]},{"ID":19917,"SourceStructureID":106023,"TargetStructureID":6142,"Label":"106023-6142 via Conventional from 106024 -> 23335","Type":"Conventional","Directional":true,"Links":[{"SourceID":106024,"TargetID":23335,"Directional":true}]},{"ID":19918,"SourceStructureID":106027,"TargetStructureID":5649,"Label":"106027-5649 via Conventional from 106028 -> 106026","Type":"Conventional","Directional":true,"Links":[{"SourceID":106028,"TargetID":106026,"Directional":true}]},{"ID":19919,"SourceStructureID":106041,"TargetStructureID":5649,"Label":"106041-5649 via Conventional from 106042 -> 106040","Type":"Conventional","Directional":true,"Links":[{"SourceID":106042,"TargetID":106040,"Directional":true}]},{"ID":19920,"SourceStructureID":106070,"TargetStructureID":6155,"Label":"106070-6155 via Conventional from 106071 -> 29760","Type":"Conventional","Directional":true,"Links":[{"SourceID":106071,"TargetID":29760,"Directional":true}]},{"ID":19921,"SourceStructureID":106075,"TargetStructureID":6155,"Label":"106075-6155 via Conventional from 106076 -> 15758","Type":"Conventional","Directional":true,"Links":[{"SourceID":106076,"TargetID":15758,"Directional":true}]},{"ID":19922,"SourceStructureID":106087,"TargetStructureID":6155,"Label":"106087-6155 via Conventional from 106088 -> 106089","Type":"Conventional","Directional":true,"Links":[{"SourceID":106088,"TargetID":106089,"Directional":true}]},{"ID":19923,"SourceStructureID":106090,"TargetStructureID":6155,"Label":"106090-6155 via Conventional from 106091 -> 106092","Type":"Conventional","Directional":true,"Links":[{"SourceID":106091,"TargetID":106092,"Directional":true}]},{"ID":19924,"SourceStructureID":106107,"TargetStructureID":5649,"Label":"106107-5649 via Conventional from 106108 -> 31041","Type":"Conventional","Directional":true,"Links":[{"SourceID":106108,"TargetID":31041,"Directional":true}]},{"ID":19925,"SourceStructureID":106127,"TargetStructureID":32035,"Label":"106127-32035 via Conventional from 106129 -> 41670","Type":"Conventional","Directional":true,"Links":[{"SourceID":106129,"TargetID":41670,"Directional":true}]},{"ID":19926,"SourceStructureID":106127,"TargetStructureID":32945,"Label":"106127-32945 via Conventional from 106128 -> 106126","Type":"Conventional","Directional":true,"Links":[{"SourceID":106128,"TargetID":106126,"Directional":true}]},{"ID":19927,"SourceStructureID":106131,"TargetStructureID":5649,"Label":"106131-5649 via Conventional from 106132 -> 106130","Type":"Conventional","Directional":true,"Links":[{"SourceID":106132,"TargetID":106130,"Directional":true}]},{"ID":19928,"SourceStructureID":106143,"TargetStructureID":5531,"Label":"106143-5531 via Conventional from 106144 -> 62924","Type":"Conventional","Directional":true,"Links":[{"SourceID":106144,"TargetID":62924,"Directional":true}]},{"ID":19929,"SourceStructureID":106153,"TargetStructureID":5531,"Label":"106153-5531 via Conventional from 106154 -> 106155","Type":"Conventional","Directional":true,"Links":[{"SourceID":106154,"TargetID":106155,"Directional":true}]},{"ID":19930,"SourceStructureID":106158,"TargetStructureID":5531,"Label":"106158-5531 via Conventional from 106159 -> 106160","Type":"Conventional","Directional":true,"Links":[{"SourceID":106159,"TargetID":106160,"Directional":true}]},{"ID":19931,"SourceStructureID":106170,"TargetStructureID":5531,"Label":"106170-5531 via Conventional from 106171 -> 62927","Type":"Conventional","Directional":true,"Links":[{"SourceID":106171,"TargetID":62927,"Directional":true}]},{"ID":19932,"SourceStructureID":106218,"TargetStructureID":5531,"Label":"106218-5531 via Conventional from 106219 -> 106220","Type":"Conventional","Directional":true,"Links":[{"SourceID":106219,"TargetID":106220,"Directional":true}]},{"ID":19933,"SourceStructureID":106230,"TargetStructureID":5531,"Label":"106230-5531 via Conventional from 106231 -> 106232","Type":"Conventional","Directional":true,"Links":[{"SourceID":106231,"TargetID":106232,"Directional":true}]},{"ID":19934,"SourceStructureID":106240,"TargetStructureID":5531,"Label":"106240-5531 via Conventional from 106241 -> 106242","Type":"Conventional","Directional":true,"Links":[{"SourceID":106241,"TargetID":106242,"Directional":true}]},{"ID":19935,"SourceStructureID":106240,"TargetStructureID":5637,"Label":"106240-5637 via Conventional from 120205 -> 120204","Type":"Conventional","Directional":true,"Links":[{"SourceID":120205,"TargetID":120204,"Directional":true}]},{"ID":19936,"SourceStructureID":106247,"TargetStructureID":5649,"Label":"106247-5649 via Conventional from 106254 -> 106245","Type":"Conventional","Directional":true,"Links":[{"SourceID":106254,"TargetID":106245,"Directional":true}]},{"ID":19937,"SourceStructureID":106256,"TargetStructureID":5531,"Label":"106256-5531 via Conventional from 106259 -> 106260","Type":"Conventional","Directional":true,"Links":[{"SourceID":106259,"TargetID":106260,"Directional":true}]},{"ID":19938,"SourceStructureID":106258,"TargetStructureID":5649,"Label":"106258-5649 via Conventional from 106261 -> 54091","Type":"Conventional","Directional":true,"Links":[{"SourceID":106261,"TargetID":54091,"Directional":true}]},{"ID":19939,"SourceStructureID":106291,"TargetStructureID":5649,"Label":"106291-5649 via Conventional from 106292 -> 54184","Type":"Conventional","Directional":true,"Links":[{"SourceID":106292,"TargetID":54184,"Directional":true}]},{"ID":19940,"SourceStructureID":106296,"TargetStructureID":5649,"Label":"106296-5649 via Conventional from 106297 -> 106294","Type":"Conventional","Directional":true,"Links":[{"SourceID":106297,"TargetID":106294,"Directional":true}]},{"ID":19941,"SourceStructureID":106313,"TargetStructureID":5649,"Label":"106313-5649 via Conventional from 106314 -> 54095","Type":"Conventional","Directional":true,"Links":[{"SourceID":106314,"TargetID":54095,"Directional":true}]},{"ID":19942,"SourceStructureID":106326,"TargetStructureID":5649,"Label":"106326-5649 via Conventional from 106327 -> 54182","Type":"Conventional","Directional":true,"Links":[{"SourceID":106327,"TargetID":54182,"Directional":true}]},{"ID":19943,"SourceStructureID":106329,"TargetStructureID":5650,"Label":"106329-5650 via Conventional from 106331 -> 106332","Type":"Conventional","Directional":true,"Links":[{"SourceID":106331,"TargetID":106332,"Directional":true}]},{"ID":19944,"SourceStructureID":106333,"TargetStructureID":5649,"Label":"106333-5649 via Conventional from 106334 -> 106322","Type":"Conventional","Directional":true,"Links":[{"SourceID":106334,"TargetID":106322,"Directional":true}]},{"ID":19945,"SourceStructureID":106336,"TargetStructureID":5650,"Label":"106336-5650 via Conventional from 106338 -> 29937","Type":"Conventional","Directional":true,"Links":[{"SourceID":106338,"TargetID":29937,"Directional":true}]},{"ID":19946,"SourceStructureID":106347,"TargetStructureID":5649,"Label":"106347-5649 via Conventional from 106348 -> 54121","Type":"Conventional","Directional":true,"Links":[{"SourceID":106348,"TargetID":54121,"Directional":true}]},{"ID":19947,"SourceStructureID":106350,"TargetStructureID":5649,"Label":"106350-5649 via Conventional from 106351 -> 106349","Type":"Conventional","Directional":true,"Links":[{"SourceID":106351,"TargetID":106349,"Directional":true}]},{"ID":19948,"SourceStructureID":106355,"TargetStructureID":5650,"Label":"106355-5650 via Conventional from 106358 -> 29929","Type":"Conventional","Directional":true,"Links":[{"SourceID":106358,"TargetID":29929,"Directional":true}]},{"ID":19949,"SourceStructureID":106355,"TargetStructureID":6050,"Label":"106355-6050 via Conventional from 127637 -> 54411","Type":"Conventional","Directional":true,"Links":[{"SourceID":127637,"TargetID":54411,"Directional":true}]},{"ID":19950,"SourceStructureID":106369,"TargetStructureID":5650,"Label":"106369-5650 via Conventional from 106373 -> 106374","Type":"Conventional","Directional":true,"Links":[{"SourceID":106373,"TargetID":106374,"Directional":true}]},{"ID":19951,"SourceStructureID":106370,"TargetStructureID":5650,"Label":"106370-5650 via Conventional from 106371 -> 106372","Type":"Conventional","Directional":true,"Links":[{"SourceID":106371,"TargetID":106372,"Directional":true}]},{"ID":19952,"SourceStructureID":106375,"TargetStructureID":1021,"Label":"106375-1021 via Conventional from 126683 -> 126682","Type":"Conventional","Directional":true,"Links":[{"SourceID":126683,"TargetID":126682,"Directional":true}]},{"ID":19953,"SourceStructureID":106375,"TargetStructureID":5650,"Label":"106375-5650 via Conventional from 106376 -> 106377","Type":"Conventional","Directional":true,"Links":[{"SourceID":106376,"TargetID":106377,"Directional":true}]},{"ID":19954,"SourceStructureID":106384,"TargetStructureID":106387,"Label":"106384-106387 via Ribbon Synapse from 106386 -> 106388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106386,"TargetID":106388,"Directional":true}]},{"ID":19955,"SourceStructureID":106387,"TargetStructureID":6155,"Label":"106387-6155 via Conventional from 106389 -> 106390","Type":"Conventional","Directional":true,"Links":[{"SourceID":106389,"TargetID":106390,"Directional":true}]},{"ID":19956,"SourceStructureID":106394,"TargetStructureID":6155,"Label":"106394-6155 via Conventional from 106403 -> 106404","Type":"Conventional","Directional":true,"Links":[{"SourceID":106403,"TargetID":106404,"Directional":true}]},{"ID":19957,"SourceStructureID":106397,"TargetStructureID":5649,"Label":"106397-5649 via Conventional from 106409 -> 54113","Type":"Conventional","Directional":true,"Links":[{"SourceID":106409,"TargetID":54113,"Directional":true}]},{"ID":19958,"SourceStructureID":106398,"TargetStructureID":6155,"Label":"106398-6155 via Conventional from 106399 -> 106400","Type":"Conventional","Directional":true,"Links":[{"SourceID":106399,"TargetID":106400,"Directional":true}]},{"ID":19959,"SourceStructureID":106413,"TargetStructureID":6155,"Label":"106413-6155 via Conventional from 106414 -> 106415","Type":"Conventional","Directional":true,"Links":[{"SourceID":106414,"TargetID":106415,"Directional":true}]},{"ID":19960,"SourceStructureID":106418,"TargetStructureID":6155,"Label":"106418-6155 via Conventional from 106423 -> 15763","Type":"Conventional","Directional":true,"Links":[{"SourceID":106423,"TargetID":15763,"Directional":true}]},{"ID":19961,"SourceStructureID":106421,"TargetStructureID":5649,"Label":"106421-5649 via Conventional from 106422 -> 54110","Type":"Conventional","Directional":true,"Links":[{"SourceID":106422,"TargetID":54110,"Directional":true}]},{"ID":19962,"SourceStructureID":106424,"TargetStructureID":6155,"Label":"106424-6155 via Conventional from 106425 -> 106426","Type":"Conventional","Directional":true,"Links":[{"SourceID":106425,"TargetID":106426,"Directional":true}]},{"ID":19963,"SourceStructureID":106427,"TargetStructureID":6155,"Label":"106427-6155 via Conventional from 106429 -> 106430","Type":"Conventional","Directional":true,"Links":[{"SourceID":106429,"TargetID":106430,"Directional":true}]},{"ID":19964,"SourceStructureID":106438,"TargetStructureID":4569,"Label":"106438-4569 via Conventional from 106439 -> 131403","Type":"Conventional","Directional":true,"Links":[{"SourceID":106439,"TargetID":131403,"Directional":true}]},{"ID":19965,"SourceStructureID":106446,"TargetStructureID":6155,"Label":"106446-6155 via Conventional from 106447 -> 30582","Type":"Conventional","Directional":true,"Links":[{"SourceID":106447,"TargetID":30582,"Directional":true}]},{"ID":19966,"SourceStructureID":106454,"TargetStructureID":6155,"Label":"106454-6155 via Conventional from 106455 -> 15807","Type":"Conventional","Directional":true,"Links":[{"SourceID":106455,"TargetID":15807,"Directional":true}]},{"ID":19967,"SourceStructureID":106456,"TargetStructureID":6155,"Label":"106456-6155 via Conventional from 106457 -> 15800","Type":"Conventional","Directional":true,"Links":[{"SourceID":106457,"TargetID":15800,"Directional":true}]},{"ID":19968,"SourceStructureID":106458,"TargetStructureID":6155,"Label":"106458-6155 via Conventional from 106462 -> 15802","Type":"Conventional","Directional":true,"Links":[{"SourceID":106462,"TargetID":15802,"Directional":true}]},{"ID":19969,"SourceStructureID":106463,"TargetStructureID":6155,"Label":"106463-6155 via Conventional from 106465 -> 15765","Type":"Conventional","Directional":true,"Links":[{"SourceID":106465,"TargetID":15765,"Directional":true}]},{"ID":19970,"SourceStructureID":106466,"TargetStructureID":6155,"Label":"106466-6155 via Conventional from 106467 -> 48329","Type":"Conventional","Directional":true,"Links":[{"SourceID":106467,"TargetID":48329,"Directional":true}]},{"ID":19971,"SourceStructureID":106468,"TargetStructureID":6155,"Label":"106468-6155 via Conventional from 106469 -> 29763","Type":"Conventional","Directional":true,"Links":[{"SourceID":106469,"TargetID":29763,"Directional":true}]},{"ID":19972,"SourceStructureID":106470,"TargetStructureID":6155,"Label":"106470-6155 via Conventional from 106471 -> 49045","Type":"Conventional","Directional":true,"Links":[{"SourceID":106471,"TargetID":49045,"Directional":true}]},{"ID":19973,"SourceStructureID":106472,"TargetStructureID":6155,"Label":"106472-6155 via Conventional from 106475 -> 106476","Type":"Conventional","Directional":true,"Links":[{"SourceID":106475,"TargetID":106476,"Directional":true}]},{"ID":19974,"SourceStructureID":106478,"TargetStructureID":6155,"Label":"106478-6155 via Conventional from 106479 -> 15804","Type":"Conventional","Directional":true,"Links":[{"SourceID":106479,"TargetID":15804,"Directional":true}]},{"ID":19975,"SourceStructureID":106490,"TargetStructureID":5531,"Label":"106490-5531 via Conventional from 106491 -> 106492","Type":"Conventional","Directional":true,"Links":[{"SourceID":106491,"TargetID":106492,"Directional":true}]},{"ID":19976,"SourceStructureID":106541,"TargetStructureID":5649,"Label":"106541-5649 via Conventional from 106542 -> 54104","Type":"Conventional","Directional":true,"Links":[{"SourceID":106542,"TargetID":54104,"Directional":true}]},{"ID":19977,"SourceStructureID":106577,"TargetStructureID":6155,"Label":"106577-6155 via Conventional from 106578 -> 48328","Type":"Conventional","Directional":true,"Links":[{"SourceID":106578,"TargetID":48328,"Directional":true}]},{"ID":19978,"SourceStructureID":106580,"TargetStructureID":6155,"Label":"106580-6155 via Conventional from 106582 -> 15801","Type":"Conventional","Directional":true,"Links":[{"SourceID":106582,"TargetID":15801,"Directional":true}]},{"ID":19979,"SourceStructureID":106597,"TargetStructureID":5531,"Label":"106597-5531 via Conventional from 106598 -> 106599","Type":"Conventional","Directional":true,"Links":[{"SourceID":106598,"TargetID":106599,"Directional":true}]},{"ID":19980,"SourceStructureID":106616,"TargetStructureID":5649,"Label":"106616-5649 via Conventional from 106658 -> 106615","Type":"Conventional","Directional":true,"Links":[{"SourceID":106658,"TargetID":106615,"Directional":true}]},{"ID":19981,"SourceStructureID":106619,"TargetStructureID":106617,"Label":"106619-106617 via Conventional from 106620 -> 106621, 106622 -> 106623","Type":"Conventional","Directional":true,"Links":[{"SourceID":106620,"TargetID":106621,"Directional":true},{"SourceID":106622,"TargetID":106623,"Directional":true}]},{"ID":19982,"SourceStructureID":106637,"TargetStructureID":5531,"Label":"106637-5531 via Conventional from 106640 -> 106641","Type":"Conventional","Directional":true,"Links":[{"SourceID":106640,"TargetID":106641,"Directional":true}]},{"ID":19983,"SourceStructureID":106659,"TargetStructureID":5531,"Label":"106659-5531 via Conventional from 106660 -> 54563","Type":"Conventional","Directional":true,"Links":[{"SourceID":106660,"TargetID":54563,"Directional":true}]},{"ID":19984,"SourceStructureID":106661,"TargetStructureID":5649,"Label":"106661-5649 via Conventional from 106663 -> 106662","Type":"Conventional","Directional":true,"Links":[{"SourceID":106663,"TargetID":106662,"Directional":true}]},{"ID":19985,"SourceStructureID":106665,"TargetStructureID":5649,"Label":"106665-5649 via Conventional from 106668 -> 106601","Type":"Conventional","Directional":true,"Links":[{"SourceID":106668,"TargetID":106601,"Directional":true}]},{"ID":19986,"SourceStructureID":106675,"TargetStructureID":5649,"Label":"106675-5649 via Conventional from 135456 -> 135455","Type":"Conventional","Directional":true,"Links":[{"SourceID":135456,"TargetID":135455,"Directional":true}]},{"ID":19987,"SourceStructureID":106696,"TargetStructureID":5649,"Label":"106696-5649 via Conventional from 106699 -> 106695","Type":"Conventional","Directional":true,"Links":[{"SourceID":106699,"TargetID":106695,"Directional":true}]},{"ID":19988,"SourceStructureID":106711,"TargetStructureID":6155,"Label":"106711-6155 via Conventional from 106714 -> 15516","Type":"Conventional","Directional":true,"Links":[{"SourceID":106714,"TargetID":15516,"Directional":true}]},{"ID":19989,"SourceStructureID":106712,"TargetStructureID":5649,"Label":"106712-5649 via Conventional from 106713 -> 106614","Type":"Conventional","Directional":true,"Links":[{"SourceID":106713,"TargetID":106614,"Directional":true}]},{"ID":19990,"SourceStructureID":106715,"TargetStructureID":5531,"Label":"106715-5531 via Conventional from 106724 -> 54544","Type":"Conventional","Directional":true,"Links":[{"SourceID":106724,"TargetID":54544,"Directional":true}]},{"ID":19991,"SourceStructureID":106717,"TargetStructureID":6155,"Label":"106717-6155 via Conventional from 106722 -> 48277","Type":"Conventional","Directional":true,"Links":[{"SourceID":106722,"TargetID":48277,"Directional":true}]},{"ID":19992,"SourceStructureID":106727,"TargetStructureID":6155,"Label":"106727-6155 via Conventional from 106739 -> 15517","Type":"Conventional","Directional":true,"Links":[{"SourceID":106739,"TargetID":15517,"Directional":true}]},{"ID":19993,"SourceStructureID":106727,"TargetStructureID":24401,"Label":"106727-24401 via Conventional from 106740 -> 48042","Type":"Conventional","Directional":true,"Links":[{"SourceID":106740,"TargetID":48042,"Directional":true}]},{"ID":19994,"SourceStructureID":106775,"TargetStructureID":5531,"Label":"106775-5531 via Conventional from 106796 -> 54533","Type":"Conventional","Directional":true,"Links":[{"SourceID":106796,"TargetID":54533,"Directional":true}]},{"ID":19995,"SourceStructureID":106781,"TargetStructureID":5649,"Label":"106781-5649 via Conventional from 106795 -> 106794","Type":"Conventional","Directional":true,"Links":[{"SourceID":106795,"TargetID":106794,"Directional":true}]},{"ID":19996,"SourceStructureID":106792,"TargetStructureID":5531,"Label":"106792-5531 via Conventional from 106793 -> 54534","Type":"Conventional","Directional":true,"Links":[{"SourceID":106793,"TargetID":54534,"Directional":true}]},{"ID":19997,"SourceStructureID":106801,"TargetStructureID":5649,"Label":"106801-5649 via Conventional from 106803 -> 106800","Type":"Conventional","Directional":true,"Links":[{"SourceID":106803,"TargetID":106800,"Directional":true}]},{"ID":19998,"SourceStructureID":106809,"TargetStructureID":6155,"Label":"106809-6155 via Conventional from 106810 -> 16130","Type":"Conventional","Directional":true,"Links":[{"SourceID":106810,"TargetID":16130,"Directional":true}]},{"ID":19999,"SourceStructureID":106813,"TargetStructureID":5531,"Label":"106813-5531 via Conventional from 106825 -> 54530","Type":"Conventional","Directional":true,"Links":[{"SourceID":106825,"TargetID":54530,"Directional":true}]},{"ID":20000,"SourceStructureID":106835,"TargetStructureID":5531,"Label":"106835-5531 via Conventional from 106844 -> 54543","Type":"Conventional","Directional":true,"Links":[{"SourceID":106844,"TargetID":54543,"Directional":true}]},{"ID":20001,"SourceStructureID":106839,"TargetStructureID":5531,"Label":"106839-5531 via Conventional from 106841 -> 54529","Type":"Conventional","Directional":true,"Links":[{"SourceID":106841,"TargetID":54529,"Directional":true}]},{"ID":20002,"SourceStructureID":106848,"TargetStructureID":6155,"Label":"106848-6155 via Conventional from 106852 -> 16135","Type":"Conventional","Directional":true,"Links":[{"SourceID":106852,"TargetID":16135,"Directional":true}]},{"ID":20003,"SourceStructureID":106855,"TargetStructureID":5531,"Label":"106855-5531 via Conventional from 106857 -> 54541","Type":"Conventional","Directional":true,"Links":[{"SourceID":106857,"TargetID":54541,"Directional":true}]},{"ID":20004,"SourceStructureID":106863,"TargetStructureID":5531,"Label":"106863-5531 via Conventional from 106865 -> 54542","Type":"Conventional","Directional":true,"Links":[{"SourceID":106865,"TargetID":54542,"Directional":true}]},{"ID":20005,"SourceStructureID":106877,"TargetStructureID":6155,"Label":"106877-6155 via Conventional from 106878 -> 106876","Type":"Conventional","Directional":true,"Links":[{"SourceID":106878,"TargetID":106876,"Directional":true}]},{"ID":20006,"SourceStructureID":106886,"TargetStructureID":5649,"Label":"106886-5649 via Conventional from 106899 -> 106885","Type":"Conventional","Directional":true,"Links":[{"SourceID":106899,"TargetID":106885,"Directional":true}]},{"ID":20007,"SourceStructureID":106890,"TargetStructureID":176,"Label":"106890-176 via Conventional from 128267 -> 128268","Type":"Conventional","Directional":true,"Links":[{"SourceID":128267,"TargetID":128268,"Directional":true}]},{"ID":20008,"SourceStructureID":106890,"TargetStructureID":5531,"Label":"106890-5531 via Conventional from 106892 -> 54577, 106893 -> 54566","Type":"Conventional","Directional":true,"Links":[{"SourceID":106892,"TargetID":54577,"Directional":true},{"SourceID":106893,"TargetID":54566,"Directional":true}]},{"ID":20009,"SourceStructureID":106896,"TargetStructureID":5531,"Label":"106896-5531 via Conventional from 106897 -> 54570","Type":"Conventional","Directional":true,"Links":[{"SourceID":106897,"TargetID":54570,"Directional":true}]},{"ID":20010,"SourceStructureID":106903,"TargetStructureID":5531,"Label":"106903-5531 via Conventional from 106905 -> 106906","Type":"Conventional","Directional":true,"Links":[{"SourceID":106905,"TargetID":106906,"Directional":true}]},{"ID":20011,"SourceStructureID":106909,"TargetStructureID":5531,"Label":"106909-5531 via Conventional from 106910 -> 106911","Type":"Conventional","Directional":true,"Links":[{"SourceID":106910,"TargetID":106911,"Directional":true}]},{"ID":20012,"SourceStructureID":106913,"TargetStructureID":5649,"Label":"106913-5649 via Conventional from 106916 -> 106917","Type":"Conventional","Directional":true,"Links":[{"SourceID":106916,"TargetID":106917,"Directional":true}]},{"ID":20013,"SourceStructureID":106924,"TargetStructureID":176,"Label":"106924-176 via Conventional from 128261 -> 128260","Type":"Conventional","Directional":true,"Links":[{"SourceID":128261,"TargetID":128260,"Directional":true}]},{"ID":20014,"SourceStructureID":106924,"TargetStructureID":5531,"Label":"106924-5531 via Conventional from 106928 -> 106929","Type":"Conventional","Directional":true,"Links":[{"SourceID":106928,"TargetID":106929,"Directional":true}]},{"ID":20015,"SourceStructureID":106926,"TargetStructureID":5649,"Label":"106926-5649 via Conventional from 106927 -> 106925","Type":"Conventional","Directional":true,"Links":[{"SourceID":106927,"TargetID":106925,"Directional":true}]},{"ID":20016,"SourceStructureID":107045,"TargetStructureID":5649,"Label":"107045-5649 via Conventional from 107048 -> 107049","Type":"Conventional","Directional":true,"Links":[{"SourceID":107048,"TargetID":107049,"Directional":true}]},{"ID":20017,"SourceStructureID":107051,"TargetStructureID":5649,"Label":"107051-5649 via Conventional from 107052 -> 107050","Type":"Conventional","Directional":true,"Links":[{"SourceID":107052,"TargetID":107050,"Directional":true}]},{"ID":20018,"SourceStructureID":107061,"TargetStructureID":5649,"Label":"107061-5649 via Conventional from 107068 -> 107065","Type":"Conventional","Directional":true,"Links":[{"SourceID":107068,"TargetID":107065,"Directional":true}]},{"ID":20019,"SourceStructureID":107071,"TargetStructureID":5649,"Label":"107071-5649 via Conventional from 107072 -> 107070","Type":"Conventional","Directional":true,"Links":[{"SourceID":107072,"TargetID":107070,"Directional":true}]},{"ID":20020,"SourceStructureID":107074,"TargetStructureID":5649,"Label":"107074-5649 via Conventional from 107075 -> 107073","Type":"Conventional","Directional":true,"Links":[{"SourceID":107075,"TargetID":107073,"Directional":true}]},{"ID":20021,"SourceStructureID":107092,"TargetStructureID":5649,"Label":"107092-5649 via Conventional from 107095 -> 107091","Type":"Conventional","Directional":true,"Links":[{"SourceID":107095,"TargetID":107091,"Directional":true}]},{"ID":20022,"SourceStructureID":107099,"TargetStructureID":5649,"Label":"107099-5649 via Conventional from 107113 -> 107112","Type":"Conventional","Directional":true,"Links":[{"SourceID":107113,"TargetID":107112,"Directional":true}]},{"ID":20023,"SourceStructureID":107102,"TargetStructureID":5649,"Label":"107102-5649 via Conventional from 107104 -> 107087","Type":"Conventional","Directional":true,"Links":[{"SourceID":107104,"TargetID":107087,"Directional":true}]},{"ID":20024,"SourceStructureID":107108,"TargetStructureID":5649,"Label":"107108-5649 via Conventional from 107109 -> 107088","Type":"Conventional","Directional":true,"Links":[{"SourceID":107109,"TargetID":107088,"Directional":true}]},{"ID":20025,"SourceStructureID":107121,"TargetStructureID":5649,"Label":"107121-5649 via Conventional from 135457 -> 107120","Type":"Conventional","Directional":true,"Links":[{"SourceID":135457,"TargetID":107120,"Directional":true}]},{"ID":20026,"SourceStructureID":107126,"TargetStructureID":5649,"Label":"107126-5649 via Conventional from 107128 -> 107125","Type":"Conventional","Directional":true,"Links":[{"SourceID":107128,"TargetID":107125,"Directional":true}]},{"ID":20027,"SourceStructureID":107132,"TargetStructureID":5649,"Label":"107132-5649 via Conventional from 107138 -> 107131","Type":"Conventional","Directional":true,"Links":[{"SourceID":107138,"TargetID":107131,"Directional":true}]},{"ID":20028,"SourceStructureID":107152,"TargetStructureID":5649,"Label":"107152-5649 via Conventional from 107154 -> 107151","Type":"Conventional","Directional":true,"Links":[{"SourceID":107154,"TargetID":107151,"Directional":true}]},{"ID":20029,"SourceStructureID":107156,"TargetStructureID":595,"Label":"107156-595 via Conventional from 107158 -> 107155","Type":"Conventional","Directional":true,"Links":[{"SourceID":107158,"TargetID":107155,"Directional":true}]},{"ID":20030,"SourceStructureID":107162,"TargetStructureID":5649,"Label":"107162-5649 via Conventional from 107163 -> 54302","Type":"Conventional","Directional":true,"Links":[{"SourceID":107163,"TargetID":54302,"Directional":true}]},{"ID":20031,"SourceStructureID":107176,"TargetStructureID":5649,"Label":"107176-5649 via Conventional from 107177 -> 107175","Type":"Conventional","Directional":true,"Links":[{"SourceID":107177,"TargetID":107175,"Directional":true}]},{"ID":20032,"SourceStructureID":107179,"TargetStructureID":5649,"Label":"107179-5649 via Conventional from 107180 -> 107178","Type":"Conventional","Directional":true,"Links":[{"SourceID":107180,"TargetID":107178,"Directional":true}]},{"ID":20033,"SourceStructureID":107195,"TargetStructureID":5649,"Label":"107195-5649 via Conventional from 107197 -> 107181","Type":"Conventional","Directional":true,"Links":[{"SourceID":107197,"TargetID":107181,"Directional":true}]},{"ID":20034,"SourceStructureID":107196,"TargetStructureID":5531,"Label":"107196-5531 via Conventional from 107199 -> 107193","Type":"Conventional","Directional":true,"Links":[{"SourceID":107199,"TargetID":107193,"Directional":true}]},{"ID":20035,"SourceStructureID":107222,"TargetStructureID":5649,"Label":"107222-5649 via Conventional from 107224 -> 107225","Type":"Conventional","Directional":true,"Links":[{"SourceID":107224,"TargetID":107225,"Directional":true}]},{"ID":20036,"SourceStructureID":107248,"TargetStructureID":5649,"Label":"107248-5649 via Conventional from 107249 -> 107243","Type":"Conventional","Directional":true,"Links":[{"SourceID":107249,"TargetID":107243,"Directional":true}]},{"ID":20037,"SourceStructureID":107253,"TargetStructureID":5649,"Label":"107253-5649 via Conventional from 107254 -> 107252","Type":"Conventional","Directional":true,"Links":[{"SourceID":107254,"TargetID":107252,"Directional":true}]},{"ID":20038,"SourceStructureID":107262,"TargetStructureID":5649,"Label":"107262-5649 via Conventional from 107263 -> 107261","Type":"Conventional","Directional":true,"Links":[{"SourceID":107263,"TargetID":107261,"Directional":true}]},{"ID":20039,"SourceStructureID":107265,"TargetStructureID":5649,"Label":"107265-5649 via Conventional from 107278 -> 107264","Type":"Conventional","Directional":true,"Links":[{"SourceID":107278,"TargetID":107264,"Directional":true}]},{"ID":20040,"SourceStructureID":107267,"TargetStructureID":5649,"Label":"107267-5649 via Conventional from 107268 -> 107266","Type":"Conventional","Directional":true,"Links":[{"SourceID":107268,"TargetID":107266,"Directional":true}]},{"ID":20041,"SourceStructureID":107275,"TargetStructureID":5649,"Label":"107275-5649 via Conventional from 107293 -> 107292","Type":"Conventional","Directional":true,"Links":[{"SourceID":107293,"TargetID":107292,"Directional":true}]},{"ID":20042,"SourceStructureID":107297,"TargetStructureID":5649,"Label":"107297-5649 via Conventional from 107298 -> 107299","Type":"Conventional","Directional":true,"Links":[{"SourceID":107298,"TargetID":107299,"Directional":true}]},{"ID":20043,"SourceStructureID":107306,"TargetStructureID":5649,"Label":"107306-5649 via Conventional from 107308 -> 107309","Type":"Conventional","Directional":true,"Links":[{"SourceID":107308,"TargetID":107309,"Directional":true}]},{"ID":20044,"SourceStructureID":107314,"TargetStructureID":5649,"Label":"107314-5649 via Conventional from 107315 -> 70013","Type":"Conventional","Directional":true,"Links":[{"SourceID":107315,"TargetID":70013,"Directional":true}]},{"ID":20045,"SourceStructureID":107321,"TargetStructureID":5649,"Label":"107321-5649 via Conventional from 107322 -> 107323","Type":"Conventional","Directional":true,"Links":[{"SourceID":107322,"TargetID":107323,"Directional":true}]},{"ID":20046,"SourceStructureID":107324,"TargetStructureID":5649,"Label":"107324-5649 via Conventional from 107325 -> 107326","Type":"Conventional","Directional":true,"Links":[{"SourceID":107325,"TargetID":107326,"Directional":true}]},{"ID":20047,"SourceStructureID":107328,"TargetStructureID":5649,"Label":"107328-5649 via Conventional from 107329 -> 70007","Type":"Conventional","Directional":true,"Links":[{"SourceID":107329,"TargetID":70007,"Directional":true}]},{"ID":20048,"SourceStructureID":107330,"TargetStructureID":5649,"Label":"107330-5649 via Conventional from 107331 -> 70006","Type":"Conventional","Directional":true,"Links":[{"SourceID":107331,"TargetID":70006,"Directional":true}]},{"ID":20049,"SourceStructureID":107332,"TargetStructureID":5649,"Label":"107332-5649 via Conventional from 107347 -> 70009","Type":"Conventional","Directional":true,"Links":[{"SourceID":107347,"TargetID":70009,"Directional":true}]},{"ID":20050,"SourceStructureID":107337,"TargetStructureID":5649,"Label":"107337-5649 via Conventional from 107338 -> 107318","Type":"Conventional","Directional":true,"Links":[{"SourceID":107338,"TargetID":107318,"Directional":true}]},{"ID":20051,"SourceStructureID":107360,"TargetStructureID":5649,"Label":"107360-5649 via Conventional from 107362 -> 70010","Type":"Conventional","Directional":true,"Links":[{"SourceID":107362,"TargetID":70010,"Directional":true}]},{"ID":20052,"SourceStructureID":107363,"TargetStructureID":5649,"Label":"107363-5649 via Conventional from 107364 -> 70017","Type":"Conventional","Directional":true,"Links":[{"SourceID":107364,"TargetID":70017,"Directional":true}]},{"ID":20053,"SourceStructureID":107367,"TargetStructureID":13525,"Label":"107367-13525 via Ribbon Synapse from 107368 -> 86729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107368,"TargetID":86729,"Directional":true}]},{"ID":20054,"SourceStructureID":107377,"TargetStructureID":5531,"Label":"107377-5531 via Conventional from 107380 -> 107381","Type":"Conventional","Directional":true,"Links":[{"SourceID":107380,"TargetID":107381,"Directional":true}]},{"ID":20055,"SourceStructureID":107378,"TargetStructureID":5503,"Label":"107378-5503 via Conventional from 107379 -> 36627","Type":"Conventional","Directional":true,"Links":[{"SourceID":107379,"TargetID":36627,"Directional":true}]},{"ID":20056,"SourceStructureID":107383,"TargetStructureID":5503,"Label":"107383-5503 via Conventional from 107384 -> 36631","Type":"Conventional","Directional":true,"Links":[{"SourceID":107384,"TargetID":36631,"Directional":true}]},{"ID":20057,"SourceStructureID":107397,"TargetStructureID":5531,"Label":"107397-5531 via Conventional from 107398 -> 54585","Type":"Conventional","Directional":true,"Links":[{"SourceID":107398,"TargetID":54585,"Directional":true}]},{"ID":20058,"SourceStructureID":107399,"TargetStructureID":5531,"Label":"107399-5531 via Conventional from 107400 -> 54586","Type":"Conventional","Directional":true,"Links":[{"SourceID":107400,"TargetID":54586,"Directional":true}]},{"ID":20059,"SourceStructureID":107401,"TargetStructureID":5531,"Label":"107401-5531 via Conventional from 107402 -> 107403","Type":"Conventional","Directional":true,"Links":[{"SourceID":107402,"TargetID":107403,"Directional":true}]},{"ID":20060,"SourceStructureID":107408,"TargetStructureID":5531,"Label":"107408-5531 via Conventional from 107409 -> 54576","Type":"Conventional","Directional":true,"Links":[{"SourceID":107409,"TargetID":54576,"Directional":true}]},{"ID":20061,"SourceStructureID":107418,"TargetStructureID":5531,"Label":"107418-5531 via Conventional from 107419 -> 54581","Type":"Conventional","Directional":true,"Links":[{"SourceID":107419,"TargetID":54581,"Directional":true}]},{"ID":20062,"SourceStructureID":107429,"TargetStructureID":5531,"Label":"107429-5531 via Conventional from 107430 -> 91681","Type":"Conventional","Directional":true,"Links":[{"SourceID":107430,"TargetID":91681,"Directional":true}]},{"ID":20063,"SourceStructureID":107431,"TargetStructureID":595,"Label":"107431-595 via Conventional from 107435 -> 46696","Type":"Conventional","Directional":true,"Links":[{"SourceID":107435,"TargetID":46696,"Directional":true}]},{"ID":20064,"SourceStructureID":107433,"TargetStructureID":5503,"Label":"107433-5503 via Conventional from 107434 -> 60732","Type":"Conventional","Directional":true,"Links":[{"SourceID":107434,"TargetID":60732,"Directional":true}]},{"ID":20065,"SourceStructureID":107444,"TargetStructureID":5503,"Label":"107444-5503 via Conventional from 107488 -> 60735","Type":"Conventional","Directional":true,"Links":[{"SourceID":107488,"TargetID":60735,"Directional":true}]},{"ID":20066,"SourceStructureID":107445,"TargetStructureID":5531,"Label":"107445-5531 via Conventional from 107446 -> 107447","Type":"Conventional","Directional":true,"Links":[{"SourceID":107446,"TargetID":107447,"Directional":true}]},{"ID":20067,"SourceStructureID":107455,"TargetStructureID":5503,"Label":"107455-5503 via Conventional from 107457 -> 60731","Type":"Conventional","Directional":true,"Links":[{"SourceID":107457,"TargetID":60731,"Directional":true}]},{"ID":20068,"SourceStructureID":107476,"TargetStructureID":5531,"Label":"107476-5531 via Conventional from 107481 -> 107482","Type":"Conventional","Directional":true,"Links":[{"SourceID":107481,"TargetID":107482,"Directional":true}]},{"ID":20069,"SourceStructureID":107477,"TargetStructureID":5503,"Label":"107477-5503 via Conventional from 107479 -> 60733, 107480 -> 60730","Type":"Conventional","Directional":true,"Links":[{"SourceID":107479,"TargetID":60733,"Directional":true},{"SourceID":107480,"TargetID":60730,"Directional":true}]},{"ID":20070,"SourceStructureID":107483,"TargetStructureID":176,"Label":"107483-176 via Conventional from 107486 -> 5869","Type":"Conventional","Directional":true,"Links":[{"SourceID":107486,"TargetID":5869,"Directional":true}]},{"ID":20071,"SourceStructureID":107483,"TargetStructureID":5531,"Label":"107483-5531 via Conventional from 107536 -> 107537","Type":"Conventional","Directional":true,"Links":[{"SourceID":107536,"TargetID":107537,"Directional":true}]},{"ID":20072,"SourceStructureID":107487,"TargetStructureID":176,"Label":"107487-176 via Conventional from 107492 -> 107493","Type":"Conventional","Directional":true,"Links":[{"SourceID":107492,"TargetID":107493,"Directional":true}]},{"ID":20073,"SourceStructureID":107490,"TargetStructureID":5503,"Label":"107490-5503 via Conventional from 107491 -> 107489","Type":"Conventional","Directional":true,"Links":[{"SourceID":107491,"TargetID":107489,"Directional":true}]},{"ID":20074,"SourceStructureID":107494,"TargetStructureID":5503,"Label":"107494-5503 via Conventional from 107495 -> 60734","Type":"Conventional","Directional":true,"Links":[{"SourceID":107495,"TargetID":60734,"Directional":true}]},{"ID":20075,"SourceStructureID":107512,"TargetStructureID":176,"Label":"107512-176 via Conventional from 128664 -> 125434","Type":"Conventional","Directional":true,"Links":[{"SourceID":128664,"TargetID":125434,"Directional":true}]},{"ID":20076,"SourceStructureID":107512,"TargetStructureID":5531,"Label":"107512-5531 via Conventional from 107513 -> 107514","Type":"Conventional","Directional":true,"Links":[{"SourceID":107513,"TargetID":107514,"Directional":true}]},{"ID":20077,"SourceStructureID":107525,"TargetStructureID":5503,"Label":"107525-5503 via Conventional from 107526 -> 60706","Type":"Conventional","Directional":true,"Links":[{"SourceID":107526,"TargetID":60706,"Directional":true}]},{"ID":20078,"SourceStructureID":107530,"TargetStructureID":176,"Label":"107530-176 via Conventional from 120263 -> 120262","Type":"Conventional","Directional":true,"Links":[{"SourceID":120263,"TargetID":120262,"Directional":true}]},{"ID":20079,"SourceStructureID":107530,"TargetStructureID":5531,"Label":"107530-5531 via Conventional from 107531 -> 107532","Type":"Conventional","Directional":true,"Links":[{"SourceID":107531,"TargetID":107532,"Directional":true}]},{"ID":20080,"SourceStructureID":107543,"TargetStructureID":176,"Label":"107543-176 via Conventional from 128677 -> 125447","Type":"Conventional","Directional":true,"Links":[{"SourceID":128677,"TargetID":125447,"Directional":true}]},{"ID":20081,"SourceStructureID":107543,"TargetStructureID":5531,"Label":"107543-5531 via Conventional from 107544 -> 107545","Type":"Conventional","Directional":true,"Links":[{"SourceID":107544,"TargetID":107545,"Directional":true}]},{"ID":20082,"SourceStructureID":107560,"TargetStructureID":5531,"Label":"107560-5531 via Conventional from 107561 -> 107562","Type":"Conventional","Directional":true,"Links":[{"SourceID":107561,"TargetID":107562,"Directional":true}]},{"ID":20083,"SourceStructureID":107583,"TargetStructureID":176,"Label":"107583-176 via Conventional from 125440 -> 5877","Type":"Conventional","Directional":true,"Links":[{"SourceID":125440,"TargetID":5877,"Directional":true}]},{"ID":20084,"SourceStructureID":107597,"TargetStructureID":6155,"Label":"107597-6155 via Conventional from 107743 -> 48269","Type":"Conventional","Directional":true,"Links":[{"SourceID":107743,"TargetID":48269,"Directional":true}]},{"ID":20085,"SourceStructureID":107612,"TargetStructureID":6155,"Label":"107612-6155 via Conventional from 107613 -> 15391","Type":"Conventional","Directional":true,"Links":[{"SourceID":107613,"TargetID":15391,"Directional":true}]},{"ID":20086,"SourceStructureID":107628,"TargetStructureID":6155,"Label":"107628-6155 via Conventional from 107629 -> 48268","Type":"Conventional","Directional":true,"Links":[{"SourceID":107629,"TargetID":48268,"Directional":true}]},{"ID":20087,"SourceStructureID":107641,"TargetStructureID":5531,"Label":"107641-5531 via Conventional from 107642 -> 107643","Type":"Conventional","Directional":true,"Links":[{"SourceID":107642,"TargetID":107643,"Directional":true}]},{"ID":20088,"SourceStructureID":107649,"TargetStructureID":5531,"Label":"107649-5531 via Conventional from 107650 -> 107651","Type":"Conventional","Directional":true,"Links":[{"SourceID":107650,"TargetID":107651,"Directional":true}]},{"ID":20089,"SourceStructureID":107661,"TargetStructureID":5531,"Label":"107661-5531 via Conventional from 107662 -> 107663","Type":"Conventional","Directional":true,"Links":[{"SourceID":107662,"TargetID":107663,"Directional":true}]},{"ID":20090,"SourceStructureID":107687,"TargetStructureID":5531,"Label":"107687-5531 via Conventional from 107688 -> 107689","Type":"Conventional","Directional":true,"Links":[{"SourceID":107688,"TargetID":107689,"Directional":true}]},{"ID":20091,"SourceStructureID":107693,"TargetStructureID":5531,"Label":"107693-5531 via Conventional from 107694 -> 107695","Type":"Conventional","Directional":true,"Links":[{"SourceID":107694,"TargetID":107695,"Directional":true}]},{"ID":20092,"SourceStructureID":107706,"TargetStructureID":5531,"Label":"107706-5531 via Conventional from 107707 -> 107708","Type":"Conventional","Directional":true,"Links":[{"SourceID":107707,"TargetID":107708,"Directional":true}]},{"ID":20093,"SourceStructureID":107712,"TargetStructureID":5531,"Label":"107712-5531 via Conventional from 107713 -> 107714","Type":"Conventional","Directional":true,"Links":[{"SourceID":107713,"TargetID":107714,"Directional":true}]},{"ID":20094,"SourceStructureID":107727,"TargetStructureID":5531,"Label":"107727-5531 via Conventional from 107728 -> 107729","Type":"Conventional","Directional":true,"Links":[{"SourceID":107728,"TargetID":107729,"Directional":true}]},{"ID":20095,"SourceStructureID":107736,"TargetStructureID":5531,"Label":"107736-5531 via Conventional from 107737 -> 107738","Type":"Conventional","Directional":true,"Links":[{"SourceID":107737,"TargetID":107738,"Directional":true}]},{"ID":20096,"SourceStructureID":107753,"TargetStructureID":6155,"Label":"107753-6155 via Conventional from 107777 -> 107778","Type":"Conventional","Directional":true,"Links":[{"SourceID":107777,"TargetID":107778,"Directional":true}]},{"ID":20097,"SourceStructureID":107755,"TargetStructureID":6155,"Label":"107755-6155 via Conventional from 107756 -> 48272","Type":"Conventional","Directional":true,"Links":[{"SourceID":107756,"TargetID":48272,"Directional":true}]},{"ID":20098,"SourceStructureID":107757,"TargetStructureID":6155,"Label":"107757-6155 via Conventional from 107761 -> 15396","Type":"Conventional","Directional":true,"Links":[{"SourceID":107761,"TargetID":15396,"Directional":true}]},{"ID":20099,"SourceStructureID":107758,"TargetStructureID":6155,"Label":"107758-6155 via Conventional from 107759 -> 107760","Type":"Conventional","Directional":true,"Links":[{"SourceID":107759,"TargetID":107760,"Directional":true}]},{"ID":20100,"SourceStructureID":107762,"TargetStructureID":6155,"Label":"107762-6155 via Conventional from 107763 -> 15434","Type":"Conventional","Directional":true,"Links":[{"SourceID":107763,"TargetID":15434,"Directional":true}]},{"ID":20101,"SourceStructureID":107792,"TargetStructureID":6155,"Label":"107792-6155 via Conventional from 107793 -> 15426","Type":"Conventional","Directional":true,"Links":[{"SourceID":107793,"TargetID":15426,"Directional":true}]},{"ID":20102,"SourceStructureID":107794,"TargetStructureID":6155,"Label":"107794-6155 via Conventional from 107795 -> 15428","Type":"Conventional","Directional":true,"Links":[{"SourceID":107795,"TargetID":15428,"Directional":true}]},{"ID":20103,"SourceStructureID":107796,"TargetStructureID":6155,"Label":"107796-6155 via Conventional from 107797 -> 15402","Type":"Conventional","Directional":true,"Links":[{"SourceID":107797,"TargetID":15402,"Directional":true}]},{"ID":20104,"SourceStructureID":107815,"TargetStructureID":6155,"Label":"107815-6155 via Conventional from 107816 -> 16131","Type":"Conventional","Directional":true,"Links":[{"SourceID":107816,"TargetID":16131,"Directional":true}]},{"ID":20105,"SourceStructureID":107820,"TargetStructureID":6155,"Label":"107820-6155 via Conventional from 107821 -> 49070","Type":"Conventional","Directional":true,"Links":[{"SourceID":107821,"TargetID":49070,"Directional":true}]},{"ID":20106,"SourceStructureID":107822,"TargetStructureID":6155,"Label":"107822-6155 via Conventional from 107823 -> 23086","Type":"Conventional","Directional":true,"Links":[{"SourceID":107823,"TargetID":23086,"Directional":true}]},{"ID":20107,"SourceStructureID":107827,"TargetStructureID":6155,"Label":"107827-6155 via Conventional from 107828 -> 107829","Type":"Conventional","Directional":true,"Links":[{"SourceID":107828,"TargetID":107829,"Directional":true}]},{"ID":20108,"SourceStructureID":107831,"TargetStructureID":6155,"Label":"107831-6155 via Conventional from 107832 -> 48260","Type":"Conventional","Directional":true,"Links":[{"SourceID":107832,"TargetID":48260,"Directional":true}]},{"ID":20109,"SourceStructureID":107833,"TargetStructureID":6155,"Label":"107833-6155 via Conventional from 107835 -> 107830","Type":"Conventional","Directional":true,"Links":[{"SourceID":107835,"TargetID":107830,"Directional":true}]},{"ID":20110,"SourceStructureID":107833,"TargetStructureID":9260,"Label":"107833-9260 via Conventional from 107834 -> 9474","Type":"Conventional","Directional":true,"Links":[{"SourceID":107834,"TargetID":9474,"Directional":true}]},{"ID":20111,"SourceStructureID":107836,"TargetStructureID":6155,"Label":"107836-6155 via Conventional from 107837 -> 47940","Type":"Conventional","Directional":true,"Links":[{"SourceID":107837,"TargetID":47940,"Directional":true}]},{"ID":20112,"SourceStructureID":107843,"TargetStructureID":6155,"Label":"107843-6155 via Conventional from 107844 -> 15502","Type":"Conventional","Directional":true,"Links":[{"SourceID":107844,"TargetID":15502,"Directional":true}]},{"ID":20113,"SourceStructureID":107845,"TargetStructureID":6155,"Label":"107845-6155 via Conventional from 107846 -> 48262","Type":"Conventional","Directional":true,"Links":[{"SourceID":107846,"TargetID":48262,"Directional":true}]},{"ID":20114,"SourceStructureID":107849,"TargetStructureID":6155,"Label":"107849-6155 via Conventional from 107851 -> 107852","Type":"Conventional","Directional":true,"Links":[{"SourceID":107851,"TargetID":107852,"Directional":true}]},{"ID":20115,"SourceStructureID":107853,"TargetStructureID":6155,"Label":"107853-6155 via Conventional from 107854 -> 15503","Type":"Conventional","Directional":true,"Links":[{"SourceID":107854,"TargetID":15503,"Directional":true}]},{"ID":20116,"SourceStructureID":107855,"TargetStructureID":6155,"Label":"107855-6155 via Conventional from 107856 -> 48261","Type":"Conventional","Directional":true,"Links":[{"SourceID":107856,"TargetID":48261,"Directional":true}]},{"ID":20117,"SourceStructureID":107865,"TargetStructureID":6155,"Label":"107865-6155 via Conventional from 107866 -> 15500","Type":"Conventional","Directional":true,"Links":[{"SourceID":107866,"TargetID":15500,"Directional":true}]},{"ID":20118,"SourceStructureID":107865,"TargetStructureID":107845,"Label":"107865-107845 via Conventional from 107867 -> 107868","Type":"Conventional","Directional":true,"Links":[{"SourceID":107867,"TargetID":107868,"Directional":true}]},{"ID":20119,"SourceStructureID":107875,"TargetStructureID":6155,"Label":"107875-6155 via Conventional from 107876 -> 15514","Type":"Conventional","Directional":true,"Links":[{"SourceID":107876,"TargetID":15514,"Directional":true}]},{"ID":20120,"SourceStructureID":107879,"TargetStructureID":6155,"Label":"107879-6155 via Conventional from 107880 -> 15504","Type":"Conventional","Directional":true,"Links":[{"SourceID":107880,"TargetID":15504,"Directional":true}]},{"ID":20121,"SourceStructureID":107882,"TargetStructureID":6155,"Label":"107882-6155 via Conventional from 107884 -> 107883","Type":"Conventional","Directional":true,"Links":[{"SourceID":107884,"TargetID":107883,"Directional":true}]},{"ID":20122,"SourceStructureID":107887,"TargetStructureID":6155,"Label":"107887-6155 via Conventional from 107888 -> 15513","Type":"Conventional","Directional":true,"Links":[{"SourceID":107888,"TargetID":15513,"Directional":true}]},{"ID":20123,"SourceStructureID":107908,"TargetStructureID":6155,"Label":"107908-6155 via Conventional from 107909 -> 15505","Type":"Conventional","Directional":true,"Links":[{"SourceID":107909,"TargetID":15505,"Directional":true}]},{"ID":20124,"SourceStructureID":107910,"TargetStructureID":6155,"Label":"107910-6155 via Conventional from 107911 -> 15544, 107921 -> 30584","Type":"Conventional","Directional":true,"Links":[{"SourceID":107911,"TargetID":15544,"Directional":true},{"SourceID":107921,"TargetID":30584,"Directional":true}]},{"ID":20125,"SourceStructureID":107922,"TargetStructureID":6155,"Label":"107922-6155 via Conventional from 107923 -> 15506","Type":"Conventional","Directional":true,"Links":[{"SourceID":107923,"TargetID":15506,"Directional":true}]},{"ID":20126,"SourceStructureID":107926,"TargetStructureID":6155,"Label":"107926-6155 via Conventional from 107927 -> 15515","Type":"Conventional","Directional":true,"Links":[{"SourceID":107927,"TargetID":15515,"Directional":true}]},{"ID":20127,"SourceStructureID":107930,"TargetStructureID":6155,"Label":"107930-6155 via Conventional from 107931 -> 107932","Type":"Conventional","Directional":true,"Links":[{"SourceID":107931,"TargetID":107932,"Directional":true}]},{"ID":20128,"SourceStructureID":107937,"TargetStructureID":6155,"Label":"107937-6155 via Conventional from 107938 -> 15538","Type":"Conventional","Directional":true,"Links":[{"SourceID":107938,"TargetID":15538,"Directional":true}]},{"ID":20129,"SourceStructureID":107939,"TargetStructureID":6155,"Label":"107939-6155 via Conventional from 107940 -> 15582","Type":"Conventional","Directional":true,"Links":[{"SourceID":107940,"TargetID":15582,"Directional":true}]},{"ID":20130,"SourceStructureID":107941,"TargetStructureID":6155,"Label":"107941-6155 via Conventional from 107942 -> 107943","Type":"Conventional","Directional":true,"Links":[{"SourceID":107942,"TargetID":107943,"Directional":true}]},{"ID":20131,"SourceStructureID":107950,"TargetStructureID":6155,"Label":"107950-6155 via Conventional from 107951 -> 48279","Type":"Conventional","Directional":true,"Links":[{"SourceID":107951,"TargetID":48279,"Directional":true}]},{"ID":20132,"SourceStructureID":107955,"TargetStructureID":6155,"Label":"107955-6155 via Conventional from 107956 -> 48280","Type":"Conventional","Directional":true,"Links":[{"SourceID":107956,"TargetID":48280,"Directional":true}]},{"ID":20133,"SourceStructureID":107957,"TargetStructureID":5503,"Label":"107957-5503 via Conventional from 107960 -> 60708","Type":"Conventional","Directional":true,"Links":[{"SourceID":107960,"TargetID":60708,"Directional":true}]},{"ID":20134,"SourceStructureID":107961,"TargetStructureID":5503,"Label":"107961-5503 via Conventional from 107962 -> 60709","Type":"Conventional","Directional":true,"Links":[{"SourceID":107962,"TargetID":60709,"Directional":true}]},{"ID":20135,"SourceStructureID":107973,"TargetStructureID":5503,"Label":"107973-5503 via Conventional from 107975 -> 60719","Type":"Conventional","Directional":true,"Links":[{"SourceID":107975,"TargetID":60719,"Directional":true}]},{"ID":20136,"SourceStructureID":107974,"TargetStructureID":6155,"Label":"107974-6155 via Conventional from 107976 -> 15542","Type":"Conventional","Directional":true,"Links":[{"SourceID":107976,"TargetID":15542,"Directional":true}]},{"ID":20137,"SourceStructureID":107977,"TargetStructureID":5503,"Label":"107977-5503 via Conventional from 107978 -> 60724","Type":"Conventional","Directional":true,"Links":[{"SourceID":107978,"TargetID":60724,"Directional":true}]},{"ID":20138,"SourceStructureID":107981,"TargetStructureID":5503,"Label":"107981-5503 via Conventional from 107987 -> 60720","Type":"Conventional","Directional":true,"Links":[{"SourceID":107987,"TargetID":60720,"Directional":true}]},{"ID":20139,"SourceStructureID":107982,"TargetStructureID":6155,"Label":"107982-6155 via Conventional from 107985 -> 107986","Type":"Conventional","Directional":true,"Links":[{"SourceID":107985,"TargetID":107986,"Directional":true}]},{"ID":20140,"SourceStructureID":107988,"TargetStructureID":5503,"Label":"107988-5503 via Conventional from 107993 -> 60721","Type":"Conventional","Directional":true,"Links":[{"SourceID":107993,"TargetID":60721,"Directional":true}]},{"ID":20141,"SourceStructureID":108017,"TargetStructureID":5503,"Label":"108017-5503 via Conventional from 108018 -> 108016","Type":"Conventional","Directional":true,"Links":[{"SourceID":108018,"TargetID":108016,"Directional":true}]},{"ID":20142,"SourceStructureID":108038,"TargetStructureID":5531,"Label":"108038-5531 via Conventional from 108042 -> 108037","Type":"Conventional","Directional":true,"Links":[{"SourceID":108042,"TargetID":108037,"Directional":true}]},{"ID":20143,"SourceStructureID":108040,"TargetStructureID":6155,"Label":"108040-6155 via Conventional from 108043 -> 49079","Type":"Conventional","Directional":true,"Links":[{"SourceID":108043,"TargetID":49079,"Directional":true}]},{"ID":20144,"SourceStructureID":108041,"TargetStructureID":5503,"Label":"108041-5503 via Conventional from 108082 -> 60718","Type":"Conventional","Directional":true,"Links":[{"SourceID":108082,"TargetID":60718,"Directional":true}]},{"ID":20145,"SourceStructureID":108048,"TargetStructureID":6155,"Label":"108048-6155 via Conventional from 108049 -> 48298","Type":"Conventional","Directional":true,"Links":[{"SourceID":108049,"TargetID":48298,"Directional":true}]},{"ID":20146,"SourceStructureID":108083,"TargetStructureID":5501,"Label":"108083-5501 via Conventional from 110221 -> 110215","Type":"Conventional","Directional":true,"Links":[{"SourceID":110221,"TargetID":110215,"Directional":true}]},{"ID":20147,"SourceStructureID":108083,"TargetStructureID":5503,"Label":"108083-5503 via Conventional from 108086 -> 60717","Type":"Conventional","Directional":true,"Links":[{"SourceID":108086,"TargetID":60717,"Directional":true}]},{"ID":20148,"SourceStructureID":108089,"TargetStructureID":6155,"Label":"108089-6155 via Conventional from 108090 -> 15545","Type":"Conventional","Directional":true,"Links":[{"SourceID":108090,"TargetID":15545,"Directional":true}]},{"ID":20149,"SourceStructureID":108094,"TargetStructureID":6155,"Label":"108094-6155 via Conventional from 108095 -> 30585","Type":"Conventional","Directional":true,"Links":[{"SourceID":108095,"TargetID":30585,"Directional":true}]},{"ID":20150,"SourceStructureID":108097,"TargetStructureID":6155,"Label":"108097-6155 via Conventional from 108104 -> 48287","Type":"Conventional","Directional":true,"Links":[{"SourceID":108104,"TargetID":48287,"Directional":true}]},{"ID":20151,"SourceStructureID":108100,"TargetStructureID":5503,"Label":"108100-5503 via Conventional from 108102 -> 108099","Type":"Conventional","Directional":true,"Links":[{"SourceID":108102,"TargetID":108099,"Directional":true}]},{"ID":20152,"SourceStructureID":108108,"TargetStructureID":5503,"Label":"108108-5503 via Conventional from 108127 -> 108105","Type":"Conventional","Directional":true,"Links":[{"SourceID":108127,"TargetID":108105,"Directional":true}]},{"ID":20153,"SourceStructureID":108109,"TargetStructureID":6155,"Label":"108109-6155 via Conventional from 108110 -> 15547","Type":"Conventional","Directional":true,"Links":[{"SourceID":108110,"TargetID":15547,"Directional":true}]},{"ID":20154,"SourceStructureID":108111,"TargetStructureID":6155,"Label":"108111-6155 via Conventional from 108112 -> 48288","Type":"Conventional","Directional":true,"Links":[{"SourceID":108112,"TargetID":48288,"Directional":true}]},{"ID":20155,"SourceStructureID":108131,"TargetStructureID":6155,"Label":"108131-6155 via Conventional from 119491 -> 49080","Type":"Conventional","Directional":true,"Links":[{"SourceID":119491,"TargetID":49080,"Directional":true}]},{"ID":20156,"SourceStructureID":108143,"TargetStructureID":5649,"Label":"108143-5649 via Conventional from 108144 -> 108141","Type":"Conventional","Directional":true,"Links":[{"SourceID":108144,"TargetID":108141,"Directional":true}]},{"ID":20157,"SourceStructureID":108147,"TargetStructureID":5503,"Label":"108147-5503 via Conventional from 108148 -> 108146","Type":"Conventional","Directional":true,"Links":[{"SourceID":108148,"TargetID":108146,"Directional":true}]},{"ID":20158,"SourceStructureID":108151,"TargetStructureID":6155,"Label":"108151-6155 via Conventional from 108152 -> 34793","Type":"Conventional","Directional":true,"Links":[{"SourceID":108152,"TargetID":34793,"Directional":true}]},{"ID":20159,"SourceStructureID":108154,"TargetStructureID":5503,"Label":"108154-5503 via Conventional from 108155 -> 108153","Type":"Conventional","Directional":true,"Links":[{"SourceID":108155,"TargetID":108153,"Directional":true}]},{"ID":20160,"SourceStructureID":108157,"TargetStructureID":6155,"Label":"108157-6155 via Conventional from 108159 -> 48297","Type":"Conventional","Directional":true,"Links":[{"SourceID":108159,"TargetID":48297,"Directional":true}]},{"ID":20161,"SourceStructureID":108165,"TargetStructureID":5503,"Label":"108165-5503 via Conventional from 108168 -> 108169","Type":"Conventional","Directional":true,"Links":[{"SourceID":108168,"TargetID":108169,"Directional":true}]},{"ID":20162,"SourceStructureID":108166,"TargetStructureID":6155,"Label":"108166-6155 via Conventional from 108167 -> 34790","Type":"Conventional","Directional":true,"Links":[{"SourceID":108167,"TargetID":34790,"Directional":true}]},{"ID":20163,"SourceStructureID":108170,"TargetStructureID":6155,"Label":"108170-6155 via Conventional from 108175 -> 34792","Type":"Conventional","Directional":true,"Links":[{"SourceID":108175,"TargetID":34792,"Directional":true}]},{"ID":20164,"SourceStructureID":108178,"TargetStructureID":6155,"Label":"108178-6155 via Conventional from 108179 -> 34784, 108200 -> 34784","Type":"Conventional","Directional":true,"Links":[{"SourceID":108179,"TargetID":34784,"Directional":true},{"SourceID":108200,"TargetID":34784,"Directional":true}]},{"ID":20165,"SourceStructureID":108182,"TargetStructureID":5503,"Label":"108182-5503 via Conventional from 108186 -> 108181","Type":"Conventional","Directional":true,"Links":[{"SourceID":108186,"TargetID":108181,"Directional":true}]},{"ID":20166,"SourceStructureID":108194,"TargetStructureID":5503,"Label":"108194-5503 via Conventional from 108199 -> 108193","Type":"Conventional","Directional":true,"Links":[{"SourceID":108199,"TargetID":108193,"Directional":true}]},{"ID":20167,"SourceStructureID":108209,"TargetStructureID":6155,"Label":"108209-6155 via Conventional from 108212 -> 48295","Type":"Conventional","Directional":true,"Links":[{"SourceID":108212,"TargetID":48295,"Directional":true}]},{"ID":20168,"SourceStructureID":108215,"TargetStructureID":6155,"Label":"108215-6155 via Conventional from 108223 -> 34783","Type":"Conventional","Directional":true,"Links":[{"SourceID":108223,"TargetID":34783,"Directional":true}]},{"ID":20169,"SourceStructureID":108225,"TargetStructureID":6155,"Label":"108225-6155 via Conventional from 108227 -> 34788","Type":"Conventional","Directional":true,"Links":[{"SourceID":108227,"TargetID":34788,"Directional":true}]},{"ID":20170,"SourceStructureID":108229,"TargetStructureID":6155,"Label":"108229-6155 via Conventional from 108231 -> 34791","Type":"Conventional","Directional":true,"Links":[{"SourceID":108231,"TargetID":34791,"Directional":true}]},{"ID":20171,"SourceStructureID":108248,"TargetStructureID":6155,"Label":"108248-6155 via Conventional from 108250 -> 34789","Type":"Conventional","Directional":true,"Links":[{"SourceID":108250,"TargetID":34789,"Directional":true}]},{"ID":20172,"SourceStructureID":108254,"TargetStructureID":6155,"Label":"108254-6155 via Conventional from 108262 -> 32003","Type":"Conventional","Directional":true,"Links":[{"SourceID":108262,"TargetID":32003,"Directional":true}]},{"ID":20173,"SourceStructureID":108273,"TargetStructureID":6155,"Label":"108273-6155 via Conventional from 108280 -> 48307","Type":"Conventional","Directional":true,"Links":[{"SourceID":108280,"TargetID":48307,"Directional":true}]},{"ID":20174,"SourceStructureID":108284,"TargetStructureID":6155,"Label":"108284-6155 via Conventional from 108285 -> 48308","Type":"Conventional","Directional":true,"Links":[{"SourceID":108285,"TargetID":48308,"Directional":true}]},{"ID":20175,"SourceStructureID":108294,"TargetStructureID":6155,"Label":"108294-6155 via Conventional from 108295 -> 15529","Type":"Conventional","Directional":true,"Links":[{"SourceID":108295,"TargetID":15529,"Directional":true}]},{"ID":20176,"SourceStructureID":108298,"TargetStructureID":6155,"Label":"108298-6155 via Conventional from 108305 -> 15528","Type":"Conventional","Directional":true,"Links":[{"SourceID":108305,"TargetID":15528,"Directional":true}]},{"ID":20177,"SourceStructureID":108306,"TargetStructureID":6155,"Label":"108306-6155 via Conventional from 108307 -> 108308","Type":"Conventional","Directional":true,"Links":[{"SourceID":108307,"TargetID":108308,"Directional":true}]},{"ID":20178,"SourceStructureID":108309,"TargetStructureID":6155,"Label":"108309-6155 via Conventional from 108330 -> 29776","Type":"Conventional","Directional":true,"Links":[{"SourceID":108330,"TargetID":29776,"Directional":true}]},{"ID":20179,"SourceStructureID":108317,"TargetStructureID":6155,"Label":"108317-6155 via Conventional from 108322 -> 30583","Type":"Conventional","Directional":true,"Links":[{"SourceID":108322,"TargetID":30583,"Directional":true}]},{"ID":20180,"SourceStructureID":108327,"TargetStructureID":6155,"Label":"108327-6155 via Conventional from 108328 -> 29777","Type":"Conventional","Directional":true,"Links":[{"SourceID":108328,"TargetID":29777,"Directional":true}]},{"ID":20181,"SourceStructureID":108331,"TargetStructureID":6155,"Label":"108331-6155 via Conventional from 108334 -> 48313","Type":"Conventional","Directional":true,"Links":[{"SourceID":108334,"TargetID":48313,"Directional":true}]},{"ID":20182,"SourceStructureID":108336,"TargetStructureID":6155,"Label":"108336-6155 via Conventional from 108337 -> 48310","Type":"Conventional","Directional":true,"Links":[{"SourceID":108337,"TargetID":48310,"Directional":true}]},{"ID":20183,"SourceStructureID":108357,"TargetStructureID":6155,"Label":"108357-6155 via Conventional from 108359 -> 108358","Type":"Conventional","Directional":true,"Links":[{"SourceID":108359,"TargetID":108358,"Directional":true}]},{"ID":20184,"SourceStructureID":108374,"TargetStructureID":5503,"Label":"108374-5503 via Conventional from 108375 -> 108373","Type":"Conventional","Directional":true,"Links":[{"SourceID":108375,"TargetID":108373,"Directional":true}]},{"ID":20185,"SourceStructureID":108396,"TargetStructureID":5503,"Label":"108396-5503 via Conventional from 108397 -> 108395","Type":"Conventional","Directional":true,"Links":[{"SourceID":108397,"TargetID":108395,"Directional":true}]},{"ID":20186,"SourceStructureID":108398,"TargetStructureID":20136,"Label":"108398-20136 via Conventional from 108402 -> 20139","Type":"Conventional","Directional":true,"Links":[{"SourceID":108402,"TargetID":20139,"Directional":true}]},{"ID":20187,"SourceStructureID":108403,"TargetStructureID":20136,"Label":"108403-20136 via Conventional from 108404 -> 20140","Type":"Conventional","Directional":true,"Links":[{"SourceID":108404,"TargetID":20140,"Directional":true}]},{"ID":20188,"SourceStructureID":108415,"TargetStructureID":5503,"Label":"108415-5503 via Conventional from 108416 -> 108414","Type":"Conventional","Directional":true,"Links":[{"SourceID":108416,"TargetID":108414,"Directional":true}]},{"ID":20189,"SourceStructureID":108418,"TargetStructureID":5503,"Label":"108418-5503 via Conventional from 108419 -> 108406","Type":"Conventional","Directional":true,"Links":[{"SourceID":108419,"TargetID":108406,"Directional":true}]},{"ID":20190,"SourceStructureID":108429,"TargetStructureID":20136,"Label":"108429-20136 via Conventional from 108430 -> 20142","Type":"Conventional","Directional":true,"Links":[{"SourceID":108430,"TargetID":20142,"Directional":true}]},{"ID":20191,"SourceStructureID":108437,"TargetStructureID":5503,"Label":"108437-5503 via Conventional from 108439 -> 108436","Type":"Conventional","Directional":true,"Links":[{"SourceID":108439,"TargetID":108436,"Directional":true}]},{"ID":20192,"SourceStructureID":108442,"TargetStructureID":5503,"Label":"108442-5503 via Conventional from 108443 -> 108441","Type":"Conventional","Directional":true,"Links":[{"SourceID":108443,"TargetID":108441,"Directional":true}]},{"ID":20193,"SourceStructureID":108485,"TargetStructureID":5503,"Label":"108485-5503 via Conventional from 108491 -> 60634","Type":"Conventional","Directional":true,"Links":[{"SourceID":108491,"TargetID":60634,"Directional":true}]},{"ID":20194,"SourceStructureID":108498,"TargetStructureID":5503,"Label":"108498-5503 via Conventional from 108499 -> 108497","Type":"Conventional","Directional":true,"Links":[{"SourceID":108499,"TargetID":108497,"Directional":true}]},{"ID":20195,"SourceStructureID":108522,"TargetStructureID":5503,"Label":"108522-5503 via Conventional from 108567 -> 108463","Type":"Conventional","Directional":true,"Links":[{"SourceID":108567,"TargetID":108463,"Directional":true}]},{"ID":20196,"SourceStructureID":108529,"TargetStructureID":5503,"Label":"108529-5503 via Conventional from 108530 -> 60664","Type":"Conventional","Directional":true,"Links":[{"SourceID":108530,"TargetID":60664,"Directional":true}]},{"ID":20197,"SourceStructureID":108531,"TargetStructureID":5503,"Label":"108531-5503 via Conventional from 108532 -> 60631","Type":"Conventional","Directional":true,"Links":[{"SourceID":108532,"TargetID":60631,"Directional":true}]},{"ID":20198,"SourceStructureID":108533,"TargetStructureID":5503,"Label":"108533-5503 via Conventional from 108535 -> 60630","Type":"Conventional","Directional":true,"Links":[{"SourceID":108535,"TargetID":60630,"Directional":true}]},{"ID":20199,"SourceStructureID":108539,"TargetStructureID":5645,"Label":"108539-5645 via Conventional from 108541 -> 108538","Type":"Conventional","Directional":true,"Links":[{"SourceID":108541,"TargetID":108538,"Directional":true}]},{"ID":20200,"SourceStructureID":108616,"TargetStructureID":6857,"Label":"108616-6857 via Conventional from 108617 -> 7558","Type":"Conventional","Directional":true,"Links":[{"SourceID":108617,"TargetID":7558,"Directional":true}]},{"ID":20201,"SourceStructureID":108701,"TargetStructureID":5503,"Label":"108701-5503 via Conventional from 108702 -> 108700","Type":"Conventional","Directional":true,"Links":[{"SourceID":108702,"TargetID":108700,"Directional":true}]},{"ID":20202,"SourceStructureID":108715,"TargetStructureID":5503,"Label":"108715-5503 via Conventional from 108721 -> 108714","Type":"Conventional","Directional":true,"Links":[{"SourceID":108721,"TargetID":108714,"Directional":true}]},{"ID":20203,"SourceStructureID":108724,"TargetStructureID":5499,"Label":"108724-5499 via Conventional from 108725 -> 105786","Type":"Conventional","Directional":true,"Links":[{"SourceID":108725,"TargetID":105786,"Directional":true}]},{"ID":20204,"SourceStructureID":108730,"TargetStructureID":5499,"Label":"108730-5499 via Conventional from 108733 -> 105742","Type":"Conventional","Directional":true,"Links":[{"SourceID":108733,"TargetID":105742,"Directional":true}]},{"ID":20205,"SourceStructureID":108745,"TargetStructureID":5916,"Label":"108745-5916 via Conventional from 108746 -> 37976","Type":"Conventional","Directional":true,"Links":[{"SourceID":108746,"TargetID":37976,"Directional":true}]},{"ID":20206,"SourceStructureID":108787,"TargetStructureID":5503,"Label":"108787-5503 via Conventional from 108788 -> 36636","Type":"Conventional","Directional":true,"Links":[{"SourceID":108788,"TargetID":36636,"Directional":true}]},{"ID":20207,"SourceStructureID":108799,"TargetStructureID":5503,"Label":"108799-5503 via Conventional from 108815 -> 36640","Type":"Conventional","Directional":true,"Links":[{"SourceID":108815,"TargetID":36640,"Directional":true}]},{"ID":20208,"SourceStructureID":108800,"TargetStructureID":20136,"Label":"108800-20136 via Conventional from 108801 -> 108802","Type":"Conventional","Directional":true,"Links":[{"SourceID":108801,"TargetID":108802,"Directional":true}]},{"ID":20209,"SourceStructureID":108804,"TargetStructureID":20136,"Label":"108804-20136 via Conventional from 108807 -> 108808","Type":"Conventional","Directional":true,"Links":[{"SourceID":108807,"TargetID":108808,"Directional":true}]},{"ID":20210,"SourceStructureID":108814,"TargetStructureID":20136,"Label":"108814-20136 via Conventional from 108816 -> 108817","Type":"Conventional","Directional":true,"Links":[{"SourceID":108816,"TargetID":108817,"Directional":true}]},{"ID":20211,"SourceStructureID":108822,"TargetStructureID":5503,"Label":"108822-5503 via Conventional from 108823 -> 36642","Type":"Conventional","Directional":true,"Links":[{"SourceID":108823,"TargetID":36642,"Directional":true}]},{"ID":20212,"SourceStructureID":108825,"TargetStructureID":20136,"Label":"108825-20136 via Conventional from 108829 -> 108830","Type":"Conventional","Directional":true,"Links":[{"SourceID":108829,"TargetID":108830,"Directional":true}]},{"ID":20213,"SourceStructureID":108865,"TargetStructureID":5503,"Label":"108865-5503 via Conventional from 108868 -> 36643","Type":"Conventional","Directional":true,"Links":[{"SourceID":108868,"TargetID":36643,"Directional":true}]},{"ID":20214,"SourceStructureID":108869,"TargetStructureID":20136,"Label":"108869-20136 via Conventional from 108872 -> 108873","Type":"Conventional","Directional":true,"Links":[{"SourceID":108872,"TargetID":108873,"Directional":true}]},{"ID":20215,"SourceStructureID":108871,"TargetStructureID":5503,"Label":"108871-5503 via Conventional from 108874 -> 36647","Type":"Conventional","Directional":true,"Links":[{"SourceID":108874,"TargetID":36647,"Directional":true}]},{"ID":20216,"SourceStructureID":108932,"TargetStructureID":5503,"Label":"108932-5503 via Conventional from 108934 -> 108931","Type":"Conventional","Directional":true,"Links":[{"SourceID":108934,"TargetID":108931,"Directional":true}]},{"ID":20217,"SourceStructureID":108936,"TargetStructureID":5503,"Label":"108936-5503 via Conventional from 108940 -> 108935","Type":"Conventional","Directional":true,"Links":[{"SourceID":108940,"TargetID":108935,"Directional":true}]},{"ID":20218,"SourceStructureID":108937,"TargetStructureID":20136,"Label":"108937-20136 via Conventional from 108938 -> 108939","Type":"Conventional","Directional":true,"Links":[{"SourceID":108938,"TargetID":108939,"Directional":true}]},{"ID":20219,"SourceStructureID":108941,"TargetStructureID":20136,"Label":"108941-20136 via Conventional from 108942 -> 108943","Type":"Conventional","Directional":true,"Links":[{"SourceID":108942,"TargetID":108943,"Directional":true}]},{"ID":20220,"SourceStructureID":108944,"TargetStructureID":20136,"Label":"108944-20136 via Conventional from 108957 -> 108958","Type":"Conventional","Directional":true,"Links":[{"SourceID":108957,"TargetID":108958,"Directional":true}]},{"ID":20221,"SourceStructureID":108988,"TargetStructureID":20136,"Label":"108988-20136 via Conventional from 108990 -> 45997","Type":"Conventional","Directional":true,"Links":[{"SourceID":108990,"TargetID":45997,"Directional":true}]},{"ID":20222,"SourceStructureID":108993,"TargetStructureID":20136,"Label":"108993-20136 via Conventional from 108995 -> 45999","Type":"Conventional","Directional":true,"Links":[{"SourceID":108995,"TargetID":45999,"Directional":true}]},{"ID":20223,"SourceStructureID":108996,"TargetStructureID":20136,"Label":"108996-20136 via Conventional from 108997 -> 46002","Type":"Conventional","Directional":true,"Links":[{"SourceID":108997,"TargetID":46002,"Directional":true}]},{"ID":20224,"SourceStructureID":109001,"TargetStructureID":20136,"Label":"109001-20136 via Conventional from 109002 -> 46001","Type":"Conventional","Directional":true,"Links":[{"SourceID":109002,"TargetID":46001,"Directional":true}]},{"ID":20225,"SourceStructureID":109004,"TargetStructureID":20136,"Label":"109004-20136 via Conventional from 109005 -> 45998","Type":"Conventional","Directional":true,"Links":[{"SourceID":109005,"TargetID":45998,"Directional":true}]},{"ID":20226,"SourceStructureID":109029,"TargetStructureID":20136,"Label":"109029-20136 via Conventional from 109093 -> 109095","Type":"Conventional","Directional":true,"Links":[{"SourceID":109093,"TargetID":109095,"Directional":true}]},{"ID":20227,"SourceStructureID":109030,"TargetStructureID":20136,"Label":"109030-20136 via Conventional from 109036 -> 20148","Type":"Conventional","Directional":true,"Links":[{"SourceID":109036,"TargetID":20148,"Directional":true}]},{"ID":20228,"SourceStructureID":109039,"TargetStructureID":5916,"Label":"109039-5916 via Conventional from 109041 -> 108930","Type":"Conventional","Directional":true,"Links":[{"SourceID":109041,"TargetID":108930,"Directional":true}]},{"ID":20229,"SourceStructureID":109068,"TargetStructureID":5916,"Label":"109068-5916 via Conventional from 109069 -> 109067","Type":"Conventional","Directional":true,"Links":[{"SourceID":109069,"TargetID":109067,"Directional":true}]},{"ID":20230,"SourceStructureID":109079,"TargetStructureID":5916,"Label":"109079-5916 via Conventional from 109082 -> 109081","Type":"Conventional","Directional":true,"Links":[{"SourceID":109082,"TargetID":109081,"Directional":true}]},{"ID":20231,"SourceStructureID":109097,"TargetStructureID":20136,"Label":"109097-20136 via Conventional from 109099 -> 46009","Type":"Conventional","Directional":true,"Links":[{"SourceID":109099,"TargetID":46009,"Directional":true}]},{"ID":20232,"SourceStructureID":109147,"TargetStructureID":109149,"Label":"109147-109149 via Ribbon Synapse from 109148 -> 109150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109148,"TargetID":109150,"Directional":true}]},{"ID":20233,"SourceStructureID":109210,"TargetStructureID":20136,"Label":"109210-20136 via Conventional from 109212 -> 46029, 109233 -> 109234","Type":"Conventional","Directional":true,"Links":[{"SourceID":109212,"TargetID":46029,"Directional":true},{"SourceID":109233,"TargetID":109234,"Directional":true}]},{"ID":20234,"SourceStructureID":109216,"TargetStructureID":20136,"Label":"109216-20136 via Conventional from 109217 -> 109219","Type":"Conventional","Directional":true,"Links":[{"SourceID":109217,"TargetID":109219,"Directional":true}]},{"ID":20235,"SourceStructureID":109239,"TargetStructureID":20136,"Label":"109239-20136 via Conventional from 109241 -> 109242","Type":"Conventional","Directional":true,"Links":[{"SourceID":109241,"TargetID":109242,"Directional":true}]},{"ID":20236,"SourceStructureID":109239,"TargetStructureID":38502,"Label":"109239-38502 via Conventional from 109240 -> 38505","Type":"Conventional","Directional":true,"Links":[{"SourceID":109240,"TargetID":38505,"Directional":true}]},{"ID":20237,"SourceStructureID":109245,"TargetStructureID":20136,"Label":"109245-20136 via Conventional from 109246 -> 97821","Type":"Conventional","Directional":true,"Links":[{"SourceID":109246,"TargetID":97821,"Directional":true}]},{"ID":20238,"SourceStructureID":109257,"TargetStructureID":606,"Label":"109257-606 via Conventional from 109258 -> 51584","Type":"Conventional","Directional":true,"Links":[{"SourceID":109258,"TargetID":51584,"Directional":true}]},{"ID":20239,"SourceStructureID":109267,"TargetStructureID":20136,"Label":"109267-20136 via Conventional from 109272 -> 46033","Type":"Conventional","Directional":true,"Links":[{"SourceID":109272,"TargetID":46033,"Directional":true}]},{"ID":20240,"SourceStructureID":109271,"TargetStructureID":20136,"Label":"109271-20136 via Conventional from 109273 -> 46035","Type":"Conventional","Directional":true,"Links":[{"SourceID":109273,"TargetID":46035,"Directional":true}]},{"ID":20241,"SourceStructureID":109277,"TargetStructureID":5561,"Label":"109277-5561 via Conventional from 109278 -> 97839","Type":"Conventional","Directional":true,"Links":[{"SourceID":109278,"TargetID":97839,"Directional":true}]},{"ID":20242,"SourceStructureID":109308,"TargetStructureID":5916,"Label":"109308-5916 via Conventional from 109311 -> 109310","Type":"Conventional","Directional":true,"Links":[{"SourceID":109311,"TargetID":109310,"Directional":true}]},{"ID":20243,"SourceStructureID":109341,"TargetStructureID":20136,"Label":"109341-20136 via Conventional from 109343 -> 109342","Type":"Conventional","Directional":true,"Links":[{"SourceID":109343,"TargetID":109342,"Directional":true}]},{"ID":20244,"SourceStructureID":109419,"TargetStructureID":20136,"Label":"109419-20136 via Conventional from 109434 -> 109433","Type":"Conventional","Directional":true,"Links":[{"SourceID":109434,"TargetID":109433,"Directional":true}]},{"ID":20245,"SourceStructureID":109450,"TargetStructureID":20136,"Label":"109450-20136 via Conventional from 109451 -> 46023","Type":"Conventional","Directional":true,"Links":[{"SourceID":109451,"TargetID":46023,"Directional":true}]},{"ID":20246,"SourceStructureID":109458,"TargetStructureID":5517,"Label":"109458-5517 via Conventional from 109460 -> 49453","Type":"Conventional","Directional":true,"Links":[{"SourceID":109460,"TargetID":49453,"Directional":true}]},{"ID":20247,"SourceStructureID":109483,"TargetStructureID":20136,"Label":"109483-20136 via Conventional from 109484 -> 109485","Type":"Conventional","Directional":true,"Links":[{"SourceID":109484,"TargetID":109485,"Directional":true}]},{"ID":20248,"SourceStructureID":109488,"TargetStructureID":20136,"Label":"109488-20136 via Conventional from 109495 -> 46022","Type":"Conventional","Directional":true,"Links":[{"SourceID":109495,"TargetID":46022,"Directional":true}]},{"ID":20249,"SourceStructureID":109497,"TargetStructureID":20136,"Label":"109497-20136 via Conventional from 109498 -> 109499","Type":"Conventional","Directional":true,"Links":[{"SourceID":109498,"TargetID":109499,"Directional":true}]},{"ID":20250,"SourceStructureID":109534,"TargetStructureID":20136,"Label":"109534-20136 via Conventional from 109537 -> 46019","Type":"Conventional","Directional":true,"Links":[{"SourceID":109537,"TargetID":46019,"Directional":true}]},{"ID":20251,"SourceStructureID":109540,"TargetStructureID":20136,"Label":"109540-20136 via Conventional from 109542 -> 109543","Type":"Conventional","Directional":true,"Links":[{"SourceID":109542,"TargetID":109543,"Directional":true}]},{"ID":20252,"SourceStructureID":109559,"TargetStructureID":20136,"Label":"109559-20136 via Conventional from 109560 -> 46018","Type":"Conventional","Directional":true,"Links":[{"SourceID":109560,"TargetID":46018,"Directional":true}]},{"ID":20253,"SourceStructureID":109565,"TargetStructureID":20136,"Label":"109565-20136 via Conventional from 109571 -> 109572","Type":"Conventional","Directional":true,"Links":[{"SourceID":109571,"TargetID":109572,"Directional":true}]},{"ID":20254,"SourceStructureID":109565,"TargetStructureID":109559,"Label":"109565-109559 via Ribbon Synapse from 109652 -> 109659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109652,"TargetID":109659,"Directional":true}]},{"ID":20255,"SourceStructureID":109565,"TargetStructureID":109565,"Label":"109565-109565 via Ribbon Synapse from 109652 -> 109653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109652,"TargetID":109653,"Directional":true}]},{"ID":20256,"SourceStructureID":109565,"TargetStructureID":109597,"Label":"109565-109597 via Ribbon Synapse from 109652 -> 109658","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109652,"TargetID":109658,"Directional":true}]},{"ID":20257,"SourceStructureID":109574,"TargetStructureID":20136,"Label":"109574-20136 via Conventional from 109613 -> 109614","Type":"Conventional","Directional":true,"Links":[{"SourceID":109613,"TargetID":109614,"Directional":true}]},{"ID":20258,"SourceStructureID":109597,"TargetStructureID":20136,"Label":"109597-20136 via Conventional from 109598 -> 109605","Type":"Conventional","Directional":true,"Links":[{"SourceID":109598,"TargetID":109605,"Directional":true}]},{"ID":20259,"SourceStructureID":109608,"TargetStructureID":20136,"Label":"109608-20136 via Conventional from 109670 -> 109671","Type":"Conventional","Directional":true,"Links":[{"SourceID":109670,"TargetID":109671,"Directional":true}]},{"ID":20260,"SourceStructureID":109608,"TargetStructureID":109575,"Label":"109608-109575 via Conventional from 109610 -> 109612","Type":"Conventional","Directional":true,"Links":[{"SourceID":109610,"TargetID":109612,"Directional":true}]},{"ID":20261,"SourceStructureID":109660,"TargetStructureID":5517,"Label":"109660-5517 via Conventional from 109663 -> 22922","Type":"Conventional","Directional":true,"Links":[{"SourceID":109663,"TargetID":22922,"Directional":true}]},{"ID":20262,"SourceStructureID":109678,"TargetStructureID":5503,"Label":"109678-5503 via Conventional from 109680 -> 109677","Type":"Conventional","Directional":true,"Links":[{"SourceID":109680,"TargetID":109677,"Directional":true}]},{"ID":20263,"SourceStructureID":109681,"TargetStructureID":5503,"Label":"109681-5503 via Conventional from 109685 -> 60692","Type":"Conventional","Directional":true,"Links":[{"SourceID":109685,"TargetID":60692,"Directional":true}]},{"ID":20264,"SourceStructureID":109696,"TargetStructureID":5916,"Label":"109696-5916 via Conventional from 109699 -> 109698","Type":"Conventional","Directional":true,"Links":[{"SourceID":109699,"TargetID":109698,"Directional":true}]},{"ID":20265,"SourceStructureID":109710,"TargetStructureID":5503,"Label":"109710-5503 via Conventional from 109711 -> 109709","Type":"Conventional","Directional":true,"Links":[{"SourceID":109711,"TargetID":109709,"Directional":true}]},{"ID":20266,"SourceStructureID":109730,"TargetStructureID":5503,"Label":"109730-5503 via Conventional from 109739 -> 60693","Type":"Conventional","Directional":true,"Links":[{"SourceID":109739,"TargetID":60693,"Directional":true}]},{"ID":20267,"SourceStructureID":109742,"TargetStructureID":5503,"Label":"109742-5503 via Conventional from 109743 -> 60694","Type":"Conventional","Directional":true,"Links":[{"SourceID":109743,"TargetID":60694,"Directional":true}]},{"ID":20268,"SourceStructureID":109750,"TargetStructureID":5503,"Label":"109750-5503 via Conventional from 109757 -> 109748, 110027 -> 110026","Type":"Conventional","Directional":true,"Links":[{"SourceID":109757,"TargetID":109748,"Directional":true},{"SourceID":110027,"TargetID":110026,"Directional":true}]},{"ID":20269,"SourceStructureID":109762,"TargetStructureID":109305,"Label":"109762-109305 via Conventional from 109763 -> 109764","Type":"Conventional","Directional":true,"Links":[{"SourceID":109763,"TargetID":109764,"Directional":true}]},{"ID":20270,"SourceStructureID":109778,"TargetStructureID":20136,"Label":"109778-20136 via Conventional from 109780 -> 109360","Type":"Conventional","Directional":true,"Links":[{"SourceID":109780,"TargetID":109360,"Directional":true}]},{"ID":20271,"SourceStructureID":109781,"TargetStructureID":20136,"Label":"109781-20136 via Conventional from 109782 -> 109783","Type":"Conventional","Directional":true,"Links":[{"SourceID":109782,"TargetID":109783,"Directional":true}]},{"ID":20272,"SourceStructureID":109788,"TargetStructureID":20136,"Label":"109788-20136 via Conventional from 109790 -> 109791","Type":"Conventional","Directional":true,"Links":[{"SourceID":109790,"TargetID":109791,"Directional":true}]},{"ID":20273,"SourceStructureID":109793,"TargetStructureID":108831,"Label":"109793-108831 via Conventional from 109794 -> 109795","Type":"Conventional","Directional":true,"Links":[{"SourceID":109794,"TargetID":109795,"Directional":true}]},{"ID":20274,"SourceStructureID":109802,"TargetStructureID":20136,"Label":"109802-20136 via Conventional from 109803 -> 109374, 109864 -> 29152","Type":"Conventional","Directional":true,"Links":[{"SourceID":109803,"TargetID":109374,"Directional":true},{"SourceID":109864,"TargetID":29152,"Directional":true}]},{"ID":20275,"SourceStructureID":109804,"TargetStructureID":5503,"Label":"109804-5503 via Conventional from 109806 -> 60666","Type":"Conventional","Directional":true,"Links":[{"SourceID":109806,"TargetID":60666,"Directional":true}]},{"ID":20276,"SourceStructureID":109809,"TargetStructureID":5503,"Label":"109809-5503 via Conventional from 109811 -> 60671, 109849 -> 109840","Type":"Conventional","Directional":true,"Links":[{"SourceID":109811,"TargetID":60671,"Directional":true},{"SourceID":109849,"TargetID":109840,"Directional":true}]},{"ID":20277,"SourceStructureID":109814,"TargetStructureID":5503,"Label":"109814-5503 via Conventional from 109817 -> 60670","Type":"Conventional","Directional":true,"Links":[{"SourceID":109817,"TargetID":60670,"Directional":true}]},{"ID":20278,"SourceStructureID":109825,"TargetStructureID":5503,"Label":"109825-5503 via Conventional from 109828 -> 60668","Type":"Conventional","Directional":true,"Links":[{"SourceID":109828,"TargetID":60668,"Directional":true}]},{"ID":20279,"SourceStructureID":109831,"TargetStructureID":20136,"Label":"109831-20136 via Conventional from 109832 -> 109833","Type":"Conventional","Directional":true,"Links":[{"SourceID":109832,"TargetID":109833,"Directional":true}]},{"ID":20280,"SourceStructureID":109834,"TargetStructureID":5503,"Label":"109834-5503 via Conventional from 109836 -> 60669","Type":"Conventional","Directional":true,"Links":[{"SourceID":109836,"TargetID":60669,"Directional":true}]},{"ID":20281,"SourceStructureID":109881,"TargetStructureID":20136,"Label":"109881-20136 via Conventional from 109882 -> 109883","Type":"Conventional","Directional":true,"Links":[{"SourceID":109882,"TargetID":109883,"Directional":true}]},{"ID":20282,"SourceStructureID":109887,"TargetStructureID":20136,"Label":"109887-20136 via Conventional from 109892 -> 46014","Type":"Conventional","Directional":true,"Links":[{"SourceID":109892,"TargetID":46014,"Directional":true}]},{"ID":20283,"SourceStructureID":109893,"TargetStructureID":5503,"Label":"109893-5503 via Conventional from 109918 -> 109916","Type":"Conventional","Directional":true,"Links":[{"SourceID":109918,"TargetID":109916,"Directional":true}]},{"ID":20284,"SourceStructureID":109900,"TargetStructureID":20136,"Label":"109900-20136 via Conventional from 109901 -> 46015","Type":"Conventional","Directional":true,"Links":[{"SourceID":109901,"TargetID":46015,"Directional":true}]},{"ID":20285,"SourceStructureID":109913,"TargetStructureID":5503,"Label":"109913-5503 via Conventional from 109915 -> 60686","Type":"Conventional","Directional":true,"Links":[{"SourceID":109915,"TargetID":60686,"Directional":true}]},{"ID":20286,"SourceStructureID":109922,"TargetStructureID":5503,"Label":"109922-5503 via Conventional from 109923 -> 60676","Type":"Conventional","Directional":true,"Links":[{"SourceID":109923,"TargetID":60676,"Directional":true}]},{"ID":20287,"SourceStructureID":109924,"TargetStructureID":5503,"Label":"109924-5503 via Conventional from 109925 -> 60681","Type":"Conventional","Directional":true,"Links":[{"SourceID":109925,"TargetID":60681,"Directional":true}]},{"ID":20288,"SourceStructureID":109926,"TargetStructureID":5503,"Label":"109926-5503 via Conventional from 109928 -> 60677","Type":"Conventional","Directional":true,"Links":[{"SourceID":109928,"TargetID":60677,"Directional":true}]},{"ID":20289,"SourceStructureID":109926,"TargetStructureID":5916,"Label":"109926-5916 via Conventional from 109927 -> 109633","Type":"Conventional","Directional":true,"Links":[{"SourceID":109927,"TargetID":109633,"Directional":true}]},{"ID":20290,"SourceStructureID":109932,"TargetStructureID":5503,"Label":"109932-5503 via Conventional from 109933 -> 60685","Type":"Conventional","Directional":true,"Links":[{"SourceID":109933,"TargetID":60685,"Directional":true}]},{"ID":20291,"SourceStructureID":109932,"TargetStructureID":5916,"Label":"109932-5916 via Conventional from 109934 -> 109632","Type":"Conventional","Directional":true,"Links":[{"SourceID":109934,"TargetID":109632,"Directional":true}]},{"ID":20292,"SourceStructureID":109936,"TargetStructureID":5503,"Label":"109936-5503 via Conventional from 109937 -> 109935","Type":"Conventional","Directional":true,"Links":[{"SourceID":109937,"TargetID":109935,"Directional":true}]},{"ID":20293,"SourceStructureID":109941,"TargetStructureID":5503,"Label":"109941-5503 via Conventional from 109942 -> 60680","Type":"Conventional","Directional":true,"Links":[{"SourceID":109942,"TargetID":60680,"Directional":true}]},{"ID":20294,"SourceStructureID":109943,"TargetStructureID":5503,"Label":"109943-5503 via Conventional from 109944 -> 60679","Type":"Conventional","Directional":true,"Links":[{"SourceID":109944,"TargetID":60679,"Directional":true}]},{"ID":20295,"SourceStructureID":109949,"TargetStructureID":5503,"Label":"109949-5503 via Conventional from 109950 -> 109948","Type":"Conventional","Directional":true,"Links":[{"SourceID":109950,"TargetID":109948,"Directional":true}]},{"ID":20296,"SourceStructureID":109949,"TargetStructureID":109952,"Label":"109949-109952 via Conventional from 109955 -> 109953","Type":"Conventional","Directional":true,"Links":[{"SourceID":109955,"TargetID":109953,"Directional":true}]},{"ID":20297,"SourceStructureID":109956,"TargetStructureID":5503,"Label":"109956-5503 via Conventional from 109957 -> 36646","Type":"Conventional","Directional":true,"Links":[{"SourceID":109957,"TargetID":36646,"Directional":true}]},{"ID":20298,"SourceStructureID":109980,"TargetStructureID":5503,"Label":"109980-5503 via Conventional from 109981 -> 109979","Type":"Conventional","Directional":true,"Links":[{"SourceID":109981,"TargetID":109979,"Directional":true}]},{"ID":20299,"SourceStructureID":109986,"TargetStructureID":109980,"Label":"109986-109980 via Conventional from 109988 -> 109989","Type":"Conventional","Directional":true,"Links":[{"SourceID":109988,"TargetID":109989,"Directional":true}]},{"ID":20300,"SourceStructureID":109991,"TargetStructureID":5503,"Label":"109991-5503 via Conventional from 114842 -> 109992","Type":"Conventional","Directional":true,"Links":[{"SourceID":114842,"TargetID":109992,"Directional":true}]},{"ID":20301,"SourceStructureID":110010,"TargetStructureID":5503,"Label":"110010-5503 via Conventional from 110011 -> 110009","Type":"Conventional","Directional":true,"Links":[{"SourceID":110011,"TargetID":110009,"Directional":true}]},{"ID":20302,"SourceStructureID":110022,"TargetStructureID":5503,"Label":"110022-5503 via Conventional from 110023 -> 61133","Type":"Conventional","Directional":true,"Links":[{"SourceID":110023,"TargetID":61133,"Directional":true}]},{"ID":20303,"SourceStructureID":110024,"TargetStructureID":5503,"Label":"110024-5503 via Conventional from 110025 -> 61132","Type":"Conventional","Directional":true,"Links":[{"SourceID":110025,"TargetID":61132,"Directional":true}]},{"ID":20304,"SourceStructureID":110035,"TargetStructureID":5503,"Label":"110035-5503 via Conventional from 110036 -> 110034","Type":"Conventional","Directional":true,"Links":[{"SourceID":110036,"TargetID":110034,"Directional":true}]},{"ID":20305,"SourceStructureID":110037,"TargetStructureID":5503,"Label":"110037-5503 via Conventional from 110038 -> 110033","Type":"Conventional","Directional":true,"Links":[{"SourceID":110038,"TargetID":110033,"Directional":true}]},{"ID":20306,"SourceStructureID":110040,"TargetStructureID":5503,"Label":"110040-5503 via Conventional from 110041 -> 110039","Type":"Conventional","Directional":true,"Links":[{"SourceID":110041,"TargetID":110039,"Directional":true}]},{"ID":20307,"SourceStructureID":110054,"TargetStructureID":5503,"Label":"110054-5503 via Conventional from 110055 -> 110053","Type":"Conventional","Directional":true,"Links":[{"SourceID":110055,"TargetID":110053,"Directional":true}]},{"ID":20308,"SourceStructureID":110064,"TargetStructureID":5503,"Label":"110064-5503 via Conventional from 110291 -> 60695","Type":"Conventional","Directional":true,"Links":[{"SourceID":110291,"TargetID":60695,"Directional":true}]},{"ID":20309,"SourceStructureID":110066,"TargetStructureID":5503,"Label":"110066-5503 via Conventional from 110067 -> 36582","Type":"Conventional","Directional":true,"Links":[{"SourceID":110067,"TargetID":36582,"Directional":true}]},{"ID":20310,"SourceStructureID":110069,"TargetStructureID":5503,"Label":"110069-5503 via Conventional from 110070 -> 110068","Type":"Conventional","Directional":true,"Links":[{"SourceID":110070,"TargetID":110068,"Directional":true}]},{"ID":20311,"SourceStructureID":110072,"TargetStructureID":5503,"Label":"110072-5503 via Conventional from 110073 -> 36589","Type":"Conventional","Directional":true,"Links":[{"SourceID":110073,"TargetID":36589,"Directional":true}]},{"ID":20312,"SourceStructureID":110081,"TargetStructureID":5501,"Label":"110081-5501 via Conventional from 110083 -> 36586","Type":"Conventional","Directional":true,"Links":[{"SourceID":110083,"TargetID":36586,"Directional":true}]},{"ID":20313,"SourceStructureID":110081,"TargetStructureID":5503,"Label":"110081-5503 via Conventional from 110082 -> 110080","Type":"Conventional","Directional":true,"Links":[{"SourceID":110082,"TargetID":110080,"Directional":true}]},{"ID":20314,"SourceStructureID":110095,"TargetStructureID":5503,"Label":"110095-5503 via Conventional from 110096 -> 110094","Type":"Conventional","Directional":true,"Links":[{"SourceID":110096,"TargetID":110094,"Directional":true}]},{"ID":20315,"SourceStructureID":110099,"TargetStructureID":5503,"Label":"110099-5503 via Conventional from 110101 -> 110102","Type":"Conventional","Directional":true,"Links":[{"SourceID":110101,"TargetID":110102,"Directional":true}]},{"ID":20316,"SourceStructureID":110104,"TargetStructureID":5503,"Label":"110104-5503 via Conventional from 110105 -> 110103","Type":"Conventional","Directional":true,"Links":[{"SourceID":110105,"TargetID":110103,"Directional":true}]},{"ID":20317,"SourceStructureID":110107,"TargetStructureID":5503,"Label":"110107-5503 via Conventional from 110108 -> 110106","Type":"Conventional","Directional":true,"Links":[{"SourceID":110108,"TargetID":110106,"Directional":true}]},{"ID":20318,"SourceStructureID":110112,"TargetStructureID":5503,"Label":"110112-5503 via Conventional from 110118 -> 110119","Type":"Conventional","Directional":true,"Links":[{"SourceID":110118,"TargetID":110119,"Directional":true}]},{"ID":20319,"SourceStructureID":110115,"TargetStructureID":5503,"Label":"110115-5503 via Conventional from 110116 -> 110114","Type":"Conventional","Directional":true,"Links":[{"SourceID":110116,"TargetID":110114,"Directional":true}]},{"ID":20320,"SourceStructureID":110121,"TargetStructureID":5503,"Label":"110121-5503 via Conventional from 110122 -> 110120","Type":"Conventional","Directional":true,"Links":[{"SourceID":110122,"TargetID":110120,"Directional":true}]},{"ID":20321,"SourceStructureID":110124,"TargetStructureID":5503,"Label":"110124-5503 via Conventional from 110125 -> 110123","Type":"Conventional","Directional":true,"Links":[{"SourceID":110125,"TargetID":110123,"Directional":true}]},{"ID":20322,"SourceStructureID":110127,"TargetStructureID":5503,"Label":"110127-5503 via Conventional from 110128 -> 110126","Type":"Conventional","Directional":true,"Links":[{"SourceID":110128,"TargetID":110126,"Directional":true}]},{"ID":20323,"SourceStructureID":110134,"TargetStructureID":5503,"Label":"110134-5503 via Conventional from 110135 -> 110133","Type":"Conventional","Directional":true,"Links":[{"SourceID":110135,"TargetID":110133,"Directional":true}]},{"ID":20324,"SourceStructureID":110137,"TargetStructureID":5503,"Label":"110137-5503 via Conventional from 110138 -> 110136","Type":"Conventional","Directional":true,"Links":[{"SourceID":110138,"TargetID":110136,"Directional":true}]},{"ID":20325,"SourceStructureID":110140,"TargetStructureID":5503,"Label":"110140-5503 via Conventional from 110141 -> 110139","Type":"Conventional","Directional":true,"Links":[{"SourceID":110141,"TargetID":110139,"Directional":true}]},{"ID":20326,"SourceStructureID":110151,"TargetStructureID":5503,"Label":"110151-5503 via Conventional from 110152 -> 110150","Type":"Conventional","Directional":true,"Links":[{"SourceID":110152,"TargetID":110150,"Directional":true}]},{"ID":20327,"SourceStructureID":110155,"TargetStructureID":5503,"Label":"110155-5503 via Conventional from 110156 -> 110154","Type":"Conventional","Directional":true,"Links":[{"SourceID":110156,"TargetID":110154,"Directional":true}]},{"ID":20328,"SourceStructureID":110169,"TargetStructureID":5503,"Label":"110169-5503 via Conventional from 110171 -> 110168","Type":"Conventional","Directional":true,"Links":[{"SourceID":110171,"TargetID":110168,"Directional":true}]},{"ID":20329,"SourceStructureID":110173,"TargetStructureID":20136,"Label":"110173-20136 via Conventional from 110180 -> 110184","Type":"Conventional","Directional":true,"Links":[{"SourceID":110180,"TargetID":110184,"Directional":true}]},{"ID":20330,"SourceStructureID":110175,"TargetStructureID":5503,"Label":"110175-5503 via Conventional from 110178 -> 110174","Type":"Conventional","Directional":true,"Links":[{"SourceID":110178,"TargetID":110174,"Directional":true}]},{"ID":20331,"SourceStructureID":110181,"TargetStructureID":5503,"Label":"110181-5503 via Conventional from 110183 -> 110172","Type":"Conventional","Directional":true,"Links":[{"SourceID":110183,"TargetID":110172,"Directional":true}]},{"ID":20332,"SourceStructureID":110233,"TargetStructureID":20136,"Label":"110233-20136 via Conventional from 110234 -> 110235","Type":"Conventional","Directional":true,"Links":[{"SourceID":110234,"TargetID":110235,"Directional":true}]},{"ID":20333,"SourceStructureID":110259,"TargetStructureID":5503,"Label":"110259-5503 via Conventional from 110261 -> 110258","Type":"Conventional","Directional":true,"Links":[{"SourceID":110261,"TargetID":110258,"Directional":true}]},{"ID":20334,"SourceStructureID":110271,"TargetStructureID":20136,"Label":"110271-20136 via Conventional from 110283 -> 110284","Type":"Conventional","Directional":true,"Links":[{"SourceID":110283,"TargetID":110284,"Directional":true}]},{"ID":20335,"SourceStructureID":110277,"TargetStructureID":5503,"Label":"110277-5503 via Conventional from 110278 -> 110276","Type":"Conventional","Directional":true,"Links":[{"SourceID":110278,"TargetID":110276,"Directional":true}]},{"ID":20336,"SourceStructureID":110307,"TargetStructureID":5503,"Label":"110307-5503 via Conventional from 110308 -> 20085","Type":"Conventional","Directional":true,"Links":[{"SourceID":110308,"TargetID":20085,"Directional":true}]},{"ID":20337,"SourceStructureID":110312,"TargetStructureID":909,"Label":"110312-909 via Conventional from 130937 -> 130936","Type":"Conventional","Directional":true,"Links":[{"SourceID":130937,"TargetID":130936,"Directional":true}]},{"ID":20338,"SourceStructureID":110312,"TargetStructureID":20136,"Label":"110312-20136 via Conventional from 110324 -> 110325","Type":"Conventional","Directional":true,"Links":[{"SourceID":110324,"TargetID":110325,"Directional":true}]},{"ID":20339,"SourceStructureID":110313,"TargetStructureID":5503,"Label":"110313-5503 via Conventional from 110314 -> 20089","Type":"Conventional","Directional":true,"Links":[{"SourceID":110314,"TargetID":20089,"Directional":true}]},{"ID":20340,"SourceStructureID":110316,"TargetStructureID":20136,"Label":"110316-20136 via Conventional from 110322 -> 110323","Type":"Conventional","Directional":true,"Links":[{"SourceID":110322,"TargetID":110323,"Directional":true}]},{"ID":20341,"SourceStructureID":110331,"TargetStructureID":20136,"Label":"110331-20136 via Conventional from 110332 -> 110334","Type":"Conventional","Directional":true,"Links":[{"SourceID":110332,"TargetID":110334,"Directional":true}]},{"ID":20342,"SourceStructureID":110333,"TargetStructureID":5503,"Label":"110333-5503 via Conventional from 110337 -> 60702","Type":"Conventional","Directional":true,"Links":[{"SourceID":110337,"TargetID":60702,"Directional":true}]},{"ID":20343,"SourceStructureID":110356,"TargetStructureID":20136,"Label":"110356-20136 via Conventional from 110361 -> 110362","Type":"Conventional","Directional":true,"Links":[{"SourceID":110361,"TargetID":110362,"Directional":true}]},{"ID":20344,"SourceStructureID":110374,"TargetStructureID":20136,"Label":"110374-20136 via Conventional from 110375 -> 110382","Type":"Conventional","Directional":true,"Links":[{"SourceID":110375,"TargetID":110382,"Directional":true}]},{"ID":20345,"SourceStructureID":110378,"TargetStructureID":20136,"Label":"110378-20136 via Conventional from 110383 -> 110384","Type":"Conventional","Directional":true,"Links":[{"SourceID":110383,"TargetID":110384,"Directional":true}]},{"ID":20346,"SourceStructureID":110379,"TargetStructureID":5503,"Label":"110379-5503 via Conventional from 110380 -> 60701","Type":"Conventional","Directional":true,"Links":[{"SourceID":110380,"TargetID":60701,"Directional":true}]},{"ID":20347,"SourceStructureID":110381,"TargetStructureID":5503,"Label":"110381-5503 via Conventional from 110420 -> 60700","Type":"Conventional","Directional":true,"Links":[{"SourceID":110420,"TargetID":60700,"Directional":true}]},{"ID":20348,"SourceStructureID":110394,"TargetStructureID":20136,"Label":"110394-20136 via Conventional from 110395 -> 110396","Type":"Conventional","Directional":true,"Links":[{"SourceID":110395,"TargetID":110396,"Directional":true}]},{"ID":20349,"SourceStructureID":110422,"TargetStructureID":5503,"Label":"110422-5503 via Conventional from 110423 -> 110421","Type":"Conventional","Directional":true,"Links":[{"SourceID":110423,"TargetID":110421,"Directional":true}]},{"ID":20350,"SourceStructureID":110429,"TargetStructureID":20136,"Label":"110429-20136 via Conventional from 110431 -> 110432","Type":"Conventional","Directional":true,"Links":[{"SourceID":110431,"TargetID":110432,"Directional":true}]},{"ID":20351,"SourceStructureID":110437,"TargetStructureID":5503,"Label":"110437-5503 via Conventional from 110439 -> 110440","Type":"Conventional","Directional":true,"Links":[{"SourceID":110439,"TargetID":110440,"Directional":true}]},{"ID":20352,"SourceStructureID":110441,"TargetStructureID":5503,"Label":"110441-5503 via Conventional from 110442 -> 52807","Type":"Conventional","Directional":true,"Links":[{"SourceID":110442,"TargetID":52807,"Directional":true}]},{"ID":20353,"SourceStructureID":110451,"TargetStructureID":5503,"Label":"110451-5503 via Conventional from 110452 -> 110450","Type":"Conventional","Directional":true,"Links":[{"SourceID":110452,"TargetID":110450,"Directional":true}]},{"ID":20354,"SourceStructureID":110466,"TargetStructureID":5501,"Label":"110466-5501 via Conventional from 110467 -> 36561","Type":"Conventional","Directional":true,"Links":[{"SourceID":110467,"TargetID":36561,"Directional":true}]},{"ID":20355,"SourceStructureID":110472,"TargetStructureID":5503,"Label":"110472-5503 via Conventional from 110473 -> 110471","Type":"Conventional","Directional":true,"Links":[{"SourceID":110473,"TargetID":110471,"Directional":true}]},{"ID":20356,"SourceStructureID":110475,"TargetStructureID":5503,"Label":"110475-5503 via Conventional from 110476 -> 110474","Type":"Conventional","Directional":true,"Links":[{"SourceID":110476,"TargetID":110474,"Directional":true}]},{"ID":20357,"SourceStructureID":110484,"TargetStructureID":5503,"Label":"110484-5503 via Conventional from 110485 -> 110483","Type":"Conventional","Directional":true,"Links":[{"SourceID":110485,"TargetID":110483,"Directional":true}]},{"ID":20358,"SourceStructureID":110493,"TargetStructureID":6120,"Label":"110493-6120 via Conventional from 110494 -> 37230","Type":"Conventional","Directional":true,"Links":[{"SourceID":110494,"TargetID":37230,"Directional":true}]},{"ID":20359,"SourceStructureID":110496,"TargetStructureID":6120,"Label":"110496-6120 via Conventional from 110498 -> 37232","Type":"Conventional","Directional":true,"Links":[{"SourceID":110498,"TargetID":37232,"Directional":true}]},{"ID":20360,"SourceStructureID":110516,"TargetStructureID":6120,"Label":"110516-6120 via Conventional from 111665 -> 111664","Type":"Conventional","Directional":true,"Links":[{"SourceID":111665,"TargetID":111664,"Directional":true}]},{"ID":20361,"SourceStructureID":110521,"TargetStructureID":6120,"Label":"110521-6120 via Conventional from 110522 -> 37241","Type":"Conventional","Directional":true,"Links":[{"SourceID":110522,"TargetID":37241,"Directional":true}]},{"ID":20362,"SourceStructureID":110525,"TargetStructureID":6120,"Label":"110525-6120 via Conventional from 110527 -> 110524","Type":"Conventional","Directional":true,"Links":[{"SourceID":110527,"TargetID":110524,"Directional":true}]},{"ID":20363,"SourceStructureID":110544,"TargetStructureID":6120,"Label":"110544-6120 via Conventional from 110545 -> 110530","Type":"Conventional","Directional":true,"Links":[{"SourceID":110545,"TargetID":110530,"Directional":true}]},{"ID":20364,"SourceStructureID":110554,"TargetStructureID":6120,"Label":"110554-6120 via Conventional from 110555 -> 110550","Type":"Conventional","Directional":true,"Links":[{"SourceID":110555,"TargetID":110550,"Directional":true}]},{"ID":20365,"SourceStructureID":110559,"TargetStructureID":6120,"Label":"110559-6120 via Conventional from 110560 -> 110552","Type":"Conventional","Directional":true,"Links":[{"SourceID":110560,"TargetID":110552,"Directional":true}]},{"ID":20366,"SourceStructureID":110562,"TargetStructureID":6120,"Label":"110562-6120 via Conventional from 110563 -> 110561","Type":"Conventional","Directional":true,"Links":[{"SourceID":110563,"TargetID":110561,"Directional":true}]},{"ID":20367,"SourceStructureID":110580,"TargetStructureID":6120,"Label":"110580-6120 via Conventional from 110582 -> 37249","Type":"Conventional","Directional":true,"Links":[{"SourceID":110582,"TargetID":37249,"Directional":true}]},{"ID":20368,"SourceStructureID":110586,"TargetStructureID":110593,"Label":"110586-110593 via Conventional from 110588 -> 110594","Type":"Conventional","Directional":true,"Links":[{"SourceID":110588,"TargetID":110594,"Directional":true}]},{"ID":20369,"SourceStructureID":110600,"TargetStructureID":6120,"Label":"110600-6120 via Conventional from 110601 -> 37252","Type":"Conventional","Directional":true,"Links":[{"SourceID":110601,"TargetID":37252,"Directional":true}]},{"ID":20370,"SourceStructureID":110610,"TargetStructureID":6120,"Label":"110610-6120 via Conventional from 110611 -> 110609","Type":"Conventional","Directional":true,"Links":[{"SourceID":110611,"TargetID":110609,"Directional":true}]},{"ID":20371,"SourceStructureID":110617,"TargetStructureID":6120,"Label":"110617-6120 via Conventional from 110618 -> 110616","Type":"Conventional","Directional":true,"Links":[{"SourceID":110618,"TargetID":110616,"Directional":true}]},{"ID":20372,"SourceStructureID":110622,"TargetStructureID":6120,"Label":"110622-6120 via Conventional from 110625 -> 110620","Type":"Conventional","Directional":true,"Links":[{"SourceID":110625,"TargetID":110620,"Directional":true}]},{"ID":20373,"SourceStructureID":110623,"TargetStructureID":6120,"Label":"110623-6120 via Conventional from 110624 -> 110621","Type":"Conventional","Directional":true,"Links":[{"SourceID":110624,"TargetID":110621,"Directional":true}]},{"ID":20374,"SourceStructureID":110630,"TargetStructureID":6120,"Label":"110630-6120 via Conventional from 110631 -> 110629","Type":"Conventional","Directional":true,"Links":[{"SourceID":110631,"TargetID":110629,"Directional":true}]},{"ID":20375,"SourceStructureID":110638,"TargetStructureID":6120,"Label":"110638-6120 via Conventional from 110640 -> 110637","Type":"Conventional","Directional":true,"Links":[{"SourceID":110640,"TargetID":110637,"Directional":true}]},{"ID":20376,"SourceStructureID":110646,"TargetStructureID":6120,"Label":"110646-6120 via Conventional from 110647 -> 110636","Type":"Conventional","Directional":true,"Links":[{"SourceID":110647,"TargetID":110636,"Directional":true}]},{"ID":20377,"SourceStructureID":110648,"TargetStructureID":5531,"Label":"110648-5531 via Conventional from 136318 -> 136317","Type":"Conventional","Directional":true,"Links":[{"SourceID":136318,"TargetID":136317,"Directional":true}]},{"ID":20378,"SourceStructureID":110652,"TargetStructureID":5531,"Label":"110652-5531 via Conventional from 110653 -> 110654","Type":"Conventional","Directional":true,"Links":[{"SourceID":110653,"TargetID":110654,"Directional":true}]},{"ID":20379,"SourceStructureID":110668,"TargetStructureID":5531,"Label":"110668-5531 via Conventional from 110669 -> 110670","Type":"Conventional","Directional":true,"Links":[{"SourceID":110669,"TargetID":110670,"Directional":true}]},{"ID":20380,"SourceStructureID":110686,"TargetStructureID":5531,"Label":"110686-5531 via Conventional from 110687 -> 110688","Type":"Conventional","Directional":true,"Links":[{"SourceID":110687,"TargetID":110688,"Directional":true}]},{"ID":20381,"SourceStructureID":110703,"TargetStructureID":5531,"Label":"110703-5531 via Conventional from 110704 -> 110705","Type":"Conventional","Directional":true,"Links":[{"SourceID":110704,"TargetID":110705,"Directional":true}]},{"ID":20382,"SourceStructureID":110709,"TargetStructureID":5531,"Label":"110709-5531 via Conventional from 110710 -> 110711","Type":"Conventional","Directional":true,"Links":[{"SourceID":110710,"TargetID":110711,"Directional":true}]},{"ID":20383,"SourceStructureID":110720,"TargetStructureID":6120,"Label":"110720-6120 via Conventional from 110721 -> 40733","Type":"Conventional","Directional":true,"Links":[{"SourceID":110721,"TargetID":40733,"Directional":true}]},{"ID":20384,"SourceStructureID":110722,"TargetStructureID":6120,"Label":"110722-6120 via Conventional from 110723 -> 110724","Type":"Conventional","Directional":true,"Links":[{"SourceID":110723,"TargetID":110724,"Directional":true}]},{"ID":20385,"SourceStructureID":110726,"TargetStructureID":6120,"Label":"110726-6120 via Conventional from 110727 -> 110725","Type":"Conventional","Directional":true,"Links":[{"SourceID":110727,"TargetID":110725,"Directional":true}]},{"ID":20386,"SourceStructureID":110728,"TargetStructureID":6120,"Label":"110728-6120 via Conventional from 110729 -> 110730","Type":"Conventional","Directional":true,"Links":[{"SourceID":110729,"TargetID":110730,"Directional":true}]},{"ID":20387,"SourceStructureID":110736,"TargetStructureID":6120,"Label":"110736-6120 via Conventional from 110737 -> 110735","Type":"Conventional","Directional":true,"Links":[{"SourceID":110737,"TargetID":110735,"Directional":true}]},{"ID":20388,"SourceStructureID":110743,"TargetStructureID":606,"Label":"110743-606 via Conventional from 110745 -> 51503","Type":"Conventional","Directional":true,"Links":[{"SourceID":110745,"TargetID":51503,"Directional":true}]},{"ID":20389,"SourceStructureID":110743,"TargetStructureID":6120,"Label":"110743-6120 via Conventional from 110744 -> 110740","Type":"Conventional","Directional":true,"Links":[{"SourceID":110744,"TargetID":110740,"Directional":true}]},{"ID":20390,"SourceStructureID":110755,"TargetStructureID":6120,"Label":"110755-6120 via Conventional from 110756 -> 61157","Type":"Conventional","Directional":true,"Links":[{"SourceID":110756,"TargetID":61157,"Directional":true}]},{"ID":20391,"SourceStructureID":110769,"TargetStructureID":6120,"Label":"110769-6120 via Conventional from 110770 -> 110768","Type":"Conventional","Directional":true,"Links":[{"SourceID":110770,"TargetID":110768,"Directional":true}]},{"ID":20392,"SourceStructureID":110783,"TargetStructureID":6120,"Label":"110783-6120 via Conventional from 110784 -> 110782","Type":"Conventional","Directional":true,"Links":[{"SourceID":110784,"TargetID":110782,"Directional":true}]},{"ID":20393,"SourceStructureID":110791,"TargetStructureID":6120,"Label":"110791-6120 via Conventional from 110792 -> 61162","Type":"Conventional","Directional":true,"Links":[{"SourceID":110792,"TargetID":61162,"Directional":true}]},{"ID":20394,"SourceStructureID":110793,"TargetStructureID":69162,"Label":"110793-69162 via Conventional from 110794 -> 69277","Type":"Conventional","Directional":true,"Links":[{"SourceID":110794,"TargetID":69277,"Directional":true}]},{"ID":20395,"SourceStructureID":110796,"TargetStructureID":6120,"Label":"110796-6120 via Conventional from 110797 -> 61159","Type":"Conventional","Directional":true,"Links":[{"SourceID":110797,"TargetID":61159,"Directional":true}]},{"ID":20396,"SourceStructureID":110800,"TargetStructureID":69162,"Label":"110800-69162 via Conventional from 110801 -> 69275","Type":"Conventional","Directional":true,"Links":[{"SourceID":110801,"TargetID":69275,"Directional":true}]},{"ID":20397,"SourceStructureID":110805,"TargetStructureID":6120,"Label":"110805-6120 via Conventional from 110806 -> 110804","Type":"Conventional","Directional":true,"Links":[{"SourceID":110806,"TargetID":110804,"Directional":true}]},{"ID":20398,"SourceStructureID":110807,"TargetStructureID":6120,"Label":"110807-6120 via Conventional from 110808 -> 61155","Type":"Conventional","Directional":true,"Links":[{"SourceID":110808,"TargetID":61155,"Directional":true}]},{"ID":20399,"SourceStructureID":110809,"TargetStructureID":6120,"Label":"110809-6120 via Conventional from 110844 -> 61152","Type":"Conventional","Directional":true,"Links":[{"SourceID":110844,"TargetID":61152,"Directional":true}]},{"ID":20400,"SourceStructureID":110819,"TargetStructureID":6120,"Label":"110819-6120 via Conventional from 110821 -> 110818","Type":"Conventional","Directional":true,"Links":[{"SourceID":110821,"TargetID":110818,"Directional":true}]},{"ID":20401,"SourceStructureID":110824,"TargetStructureID":6120,"Label":"110824-6120 via Conventional from 110825 -> 110826","Type":"Conventional","Directional":true,"Links":[{"SourceID":110825,"TargetID":110826,"Directional":true}]},{"ID":20402,"SourceStructureID":110828,"TargetStructureID":5107,"Label":"110828-5107 via Conventional from 110834 -> 65008","Type":"Conventional","Directional":true,"Links":[{"SourceID":110834,"TargetID":65008,"Directional":true}]},{"ID":20403,"SourceStructureID":110830,"TargetStructureID":11092,"Label":"110830-11092 via Conventional from 123695 -> 128600, 123696 -> 130357","Type":"Conventional","Directional":true,"Links":[{"SourceID":123695,"TargetID":128600,"Directional":true},{"SourceID":123696,"TargetID":130357,"Directional":true}]},{"ID":20404,"SourceStructureID":110830,"TargetStructureID":13525,"Label":"110830-13525 via Conventional from 110831 -> 84664","Type":"Conventional","Directional":true,"Links":[{"SourceID":110831,"TargetID":84664,"Directional":true}]},{"ID":20405,"SourceStructureID":110851,"TargetStructureID":6120,"Label":"110851-6120 via Conventional from 110852 -> 110850","Type":"Conventional","Directional":true,"Links":[{"SourceID":110852,"TargetID":110850,"Directional":true}]},{"ID":20406,"SourceStructureID":110857,"TargetStructureID":5729,"Label":"110857-5729 via Conventional from 110861 -> 110862","Type":"Conventional","Directional":true,"Links":[{"SourceID":110861,"TargetID":110862,"Directional":true}]},{"ID":20407,"SourceStructureID":110867,"TargetStructureID":5729,"Label":"110867-5729 via Conventional from 110871 -> 37844","Type":"Conventional","Directional":true,"Links":[{"SourceID":110871,"TargetID":37844,"Directional":true}]},{"ID":20408,"SourceStructureID":110879,"TargetStructureID":5729,"Label":"110879-5729 via Conventional from 110883 -> 110881","Type":"Conventional","Directional":true,"Links":[{"SourceID":110883,"TargetID":110881,"Directional":true}]},{"ID":20409,"SourceStructureID":110880,"TargetStructureID":5729,"Label":"110880-5729 via Conventional from 110884 -> 37839","Type":"Conventional","Directional":true,"Links":[{"SourceID":110884,"TargetID":37839,"Directional":true}]},{"ID":20410,"SourceStructureID":110892,"TargetStructureID":110880,"Label":"110892-110880 via Conventional from 110895 -> 110896","Type":"Conventional","Directional":true,"Links":[{"SourceID":110895,"TargetID":110896,"Directional":true}]},{"ID":20411,"SourceStructureID":110899,"TargetStructureID":5729,"Label":"110899-5729 via Conventional from 110902 -> 37845","Type":"Conventional","Directional":true,"Links":[{"SourceID":110902,"TargetID":37845,"Directional":true}]},{"ID":20412,"SourceStructureID":110903,"TargetStructureID":5729,"Label":"110903-5729 via Conventional from 110904 -> 37846","Type":"Conventional","Directional":true,"Links":[{"SourceID":110904,"TargetID":37846,"Directional":true}]},{"ID":20413,"SourceStructureID":110905,"TargetStructureID":5729,"Label":"110905-5729 via Conventional from 110906 -> 110907","Type":"Conventional","Directional":true,"Links":[{"SourceID":110906,"TargetID":110907,"Directional":true}]},{"ID":20414,"SourceStructureID":110908,"TargetStructureID":5729,"Label":"110908-5729 via Conventional from 110909 -> 110910, 110915 -> 110916","Type":"Conventional","Directional":true,"Links":[{"SourceID":110909,"TargetID":110910,"Directional":true},{"SourceID":110915,"TargetID":110916,"Directional":true}]},{"ID":20415,"SourceStructureID":110934,"TargetStructureID":606,"Label":"110934-606 via Conventional from 130671 -> 47250","Type":"Conventional","Directional":true,"Links":[{"SourceID":130671,"TargetID":47250,"Directional":true}]},{"ID":20416,"SourceStructureID":110934,"TargetStructureID":5729,"Label":"110934-5729 via Conventional from 110935 -> 110936","Type":"Conventional","Directional":true,"Links":[{"SourceID":110935,"TargetID":110936,"Directional":true}]},{"ID":20417,"SourceStructureID":110937,"TargetStructureID":5729,"Label":"110937-5729 via Conventional from 110938 -> 110939","Type":"Conventional","Directional":true,"Links":[{"SourceID":110938,"TargetID":110939,"Directional":true}]},{"ID":20418,"SourceStructureID":110940,"TargetStructureID":5729,"Label":"110940-5729 via Conventional from 110941 -> 37855","Type":"Conventional","Directional":true,"Links":[{"SourceID":110941,"TargetID":37855,"Directional":true}]},{"ID":20419,"SourceStructureID":110944,"TargetStructureID":5729,"Label":"110944-5729 via Conventional from 110945 -> 37849","Type":"Conventional","Directional":true,"Links":[{"SourceID":110945,"TargetID":37849,"Directional":true}]},{"ID":20420,"SourceStructureID":110961,"TargetStructureID":5729,"Label":"110961-5729 via Conventional from 110962 -> 110963","Type":"Conventional","Directional":true,"Links":[{"SourceID":110962,"TargetID":110963,"Directional":true}]},{"ID":20421,"SourceStructureID":110964,"TargetStructureID":5729,"Label":"110964-5729 via Conventional from 110965 -> 110966","Type":"Conventional","Directional":true,"Links":[{"SourceID":110965,"TargetID":110966,"Directional":true}]},{"ID":20422,"SourceStructureID":110967,"TargetStructureID":5729,"Label":"110967-5729 via Conventional from 110968 -> 110969","Type":"Conventional","Directional":true,"Links":[{"SourceID":110968,"TargetID":110969,"Directional":true}]},{"ID":20423,"SourceStructureID":110970,"TargetStructureID":5729,"Label":"110970-5729 via Conventional from 110971 -> 110972","Type":"Conventional","Directional":true,"Links":[{"SourceID":110971,"TargetID":110972,"Directional":true}]},{"ID":20424,"SourceStructureID":110977,"TargetStructureID":6120,"Label":"110977-6120 via Conventional from 110983 -> 110874","Type":"Conventional","Directional":true,"Links":[{"SourceID":110983,"TargetID":110874,"Directional":true}]},{"ID":20425,"SourceStructureID":110977,"TargetStructureID":110979,"Label":"110977-110979 via Conventional from 110978 -> 110980","Type":"Conventional","Directional":true,"Links":[{"SourceID":110978,"TargetID":110980,"Directional":true}]},{"ID":20426,"SourceStructureID":110988,"TargetStructureID":6120,"Label":"110988-6120 via Conventional from 110990 -> 110987","Type":"Conventional","Directional":true,"Links":[{"SourceID":110990,"TargetID":110987,"Directional":true}]},{"ID":20427,"SourceStructureID":111001,"TargetStructureID":6120,"Label":"111001-6120 via Conventional from 111002 -> 61151, 111095 -> 111094","Type":"Conventional","Directional":true,"Links":[{"SourceID":111002,"TargetID":61151,"Directional":true},{"SourceID":111095,"TargetID":111094,"Directional":true}]},{"ID":20428,"SourceStructureID":111006,"TargetStructureID":6120,"Label":"111006-6120 via Conventional from 111007 -> 61149","Type":"Conventional","Directional":true,"Links":[{"SourceID":111007,"TargetID":61149,"Directional":true}]},{"ID":20429,"SourceStructureID":111037,"TargetStructureID":6120,"Label":"111037-6120 via Conventional from 111038 -> 61130","Type":"Conventional","Directional":true,"Links":[{"SourceID":111038,"TargetID":61130,"Directional":true}]},{"ID":20430,"SourceStructureID":111054,"TargetStructureID":5729,"Label":"111054-5729 via Conventional from 111056 -> 111053","Type":"Conventional","Directional":true,"Links":[{"SourceID":111056,"TargetID":111053,"Directional":true}]},{"ID":20431,"SourceStructureID":111054,"TargetStructureID":6162,"Label":"111054-6162 via Conventional from 111055 -> 29109","Type":"Conventional","Directional":true,"Links":[{"SourceID":111055,"TargetID":29109,"Directional":true}]},{"ID":20432,"SourceStructureID":111059,"TargetStructureID":5729,"Label":"111059-5729 via Conventional from 111060 -> 47244","Type":"Conventional","Directional":true,"Links":[{"SourceID":111060,"TargetID":47244,"Directional":true}]},{"ID":20433,"SourceStructureID":111070,"TargetStructureID":5729,"Label":"111070-5729 via Conventional from 111071 -> 47246","Type":"Conventional","Directional":true,"Links":[{"SourceID":111071,"TargetID":47246,"Directional":true}]},{"ID":20434,"SourceStructureID":111075,"TargetStructureID":5729,"Label":"111075-5729 via Conventional from 111076 -> 111077","Type":"Conventional","Directional":true,"Links":[{"SourceID":111076,"TargetID":111077,"Directional":true}]},{"ID":20435,"SourceStructureID":111084,"TargetStructureID":5729,"Label":"111084-5729 via Conventional from 111144 -> 111145, 111153 -> 111154","Type":"Conventional","Directional":true,"Links":[{"SourceID":111144,"TargetID":111145,"Directional":true},{"SourceID":111153,"TargetID":111154,"Directional":true}]},{"ID":20436,"SourceStructureID":111098,"TargetStructureID":6120,"Label":"111098-6120 via Conventional from 111099 -> 61142","Type":"Conventional","Directional":true,"Links":[{"SourceID":111099,"TargetID":61142,"Directional":true}]},{"ID":20437,"SourceStructureID":111100,"TargetStructureID":6120,"Label":"111100-6120 via Conventional from 111101 -> 61141","Type":"Conventional","Directional":true,"Links":[{"SourceID":111101,"TargetID":61141,"Directional":true}]},{"ID":20438,"SourceStructureID":111102,"TargetStructureID":6120,"Label":"111102-6120 via Conventional from 111103 -> 61136","Type":"Conventional","Directional":true,"Links":[{"SourceID":111103,"TargetID":61136,"Directional":true}]},{"ID":20439,"SourceStructureID":111130,"TargetStructureID":6120,"Label":"111130-6120 via Conventional from 111131 -> 111129","Type":"Conventional","Directional":true,"Links":[{"SourceID":111131,"TargetID":111129,"Directional":true}]},{"ID":20440,"SourceStructureID":111135,"TargetStructureID":6120,"Label":"111135-6120 via Conventional from 111234 -> 111233, 111244 -> 57386","Type":"Conventional","Directional":true,"Links":[{"SourceID":111234,"TargetID":111233,"Directional":true},{"SourceID":111244,"TargetID":57386,"Directional":true}]},{"ID":20441,"SourceStructureID":111142,"TargetStructureID":6120,"Label":"111142-6120 via Conventional from 111143 -> 61178","Type":"Conventional","Directional":true,"Links":[{"SourceID":111143,"TargetID":61178,"Directional":true}]},{"ID":20442,"SourceStructureID":111146,"TargetStructureID":5729,"Label":"111146-5729 via Conventional from 111147 -> 111148","Type":"Conventional","Directional":true,"Links":[{"SourceID":111147,"TargetID":111148,"Directional":true}]},{"ID":20443,"SourceStructureID":111149,"TargetStructureID":5729,"Label":"111149-5729 via Conventional from 111150 -> 111151","Type":"Conventional","Directional":true,"Links":[{"SourceID":111150,"TargetID":111151,"Directional":true}]},{"ID":20444,"SourceStructureID":111165,"TargetStructureID":5729,"Label":"111165-5729 via Conventional from 111173 -> 47247","Type":"Conventional","Directional":true,"Links":[{"SourceID":111173,"TargetID":47247,"Directional":true}]},{"ID":20445,"SourceStructureID":111187,"TargetStructureID":5729,"Label":"111187-5729 via Conventional from 111188 -> 111189","Type":"Conventional","Directional":true,"Links":[{"SourceID":111188,"TargetID":111189,"Directional":true}]},{"ID":20446,"SourceStructureID":111198,"TargetStructureID":5729,"Label":"111198-5729 via Conventional from 111199 -> 111197","Type":"Conventional","Directional":true,"Links":[{"SourceID":111199,"TargetID":111197,"Directional":true}]},{"ID":20447,"SourceStructureID":111207,"TargetStructureID":13525,"Label":"111207-13525 via Conventional from 125798 -> 118140","Type":"Conventional","Directional":true,"Links":[{"SourceID":125798,"TargetID":118140,"Directional":true}]},{"ID":20448,"SourceStructureID":111212,"TargetStructureID":6120,"Label":"111212-6120 via Conventional from 111213 -> 61183","Type":"Conventional","Directional":true,"Links":[{"SourceID":111213,"TargetID":61183,"Directional":true}]},{"ID":20449,"SourceStructureID":111214,"TargetStructureID":6120,"Label":"111214-6120 via Conventional from 111215 -> 61182","Type":"Conventional","Directional":true,"Links":[{"SourceID":111215,"TargetID":61182,"Directional":true}]},{"ID":20450,"SourceStructureID":111218,"TargetStructureID":6120,"Label":"111218-6120 via Conventional from 111219 -> 111220","Type":"Conventional","Directional":true,"Links":[{"SourceID":111219,"TargetID":111220,"Directional":true}]},{"ID":20451,"SourceStructureID":111223,"TargetStructureID":6120,"Label":"111223-6120 via Conventional from 111224 -> 61181","Type":"Conventional","Directional":true,"Links":[{"SourceID":111224,"TargetID":61181,"Directional":true}]},{"ID":20452,"SourceStructureID":111231,"TargetStructureID":6120,"Label":"111231-6120 via Conventional from 111232 -> 61179","Type":"Conventional","Directional":true,"Links":[{"SourceID":111232,"TargetID":61179,"Directional":true}]},{"ID":20453,"SourceStructureID":111238,"TargetStructureID":111135,"Label":"111238-111135 via Conventional from 111241 -> 116727","Type":"Conventional","Directional":true,"Links":[{"SourceID":111241,"TargetID":116727,"Directional":true}]},{"ID":20454,"SourceStructureID":111248,"TargetStructureID":6120,"Label":"111248-6120 via Conventional from 111249 -> 111247","Type":"Conventional","Directional":true,"Links":[{"SourceID":111249,"TargetID":111247,"Directional":true}]},{"ID":20455,"SourceStructureID":111256,"TargetStructureID":6120,"Label":"111256-6120 via Conventional from 111257 -> 111255","Type":"Conventional","Directional":true,"Links":[{"SourceID":111257,"TargetID":111255,"Directional":true}]},{"ID":20456,"SourceStructureID":111264,"TargetStructureID":6120,"Label":"111264-6120 via Conventional from 111265 -> 111263","Type":"Conventional","Directional":true,"Links":[{"SourceID":111265,"TargetID":111263,"Directional":true}]},{"ID":20457,"SourceStructureID":111269,"TargetStructureID":111356,"Label":"111269-111356 via Conventional from 111275 -> 111357","Type":"Conventional","Directional":true,"Links":[{"SourceID":111275,"TargetID":111357,"Directional":true}]},{"ID":20458,"SourceStructureID":111270,"TargetStructureID":6120,"Label":"111270-6120 via Conventional from 111271 -> 111267","Type":"Conventional","Directional":true,"Links":[{"SourceID":111271,"TargetID":111267,"Directional":true}]},{"ID":20459,"SourceStructureID":111276,"TargetStructureID":6120,"Label":"111276-6120 via Conventional from 111277 -> 57392","Type":"Conventional","Directional":true,"Links":[{"SourceID":111277,"TargetID":57392,"Directional":true}]},{"ID":20460,"SourceStructureID":111278,"TargetStructureID":6120,"Label":"111278-6120 via Conventional from 111279 -> 57391","Type":"Conventional","Directional":true,"Links":[{"SourceID":111279,"TargetID":57391,"Directional":true}]},{"ID":20461,"SourceStructureID":111294,"TargetStructureID":5729,"Label":"111294-5729 via Conventional from 111295 -> 37812","Type":"Conventional","Directional":true,"Links":[{"SourceID":111295,"TargetID":37812,"Directional":true}]},{"ID":20462,"SourceStructureID":111299,"TargetStructureID":5729,"Label":"111299-5729 via Conventional from 111300 -> 111301","Type":"Conventional","Directional":true,"Links":[{"SourceID":111300,"TargetID":111301,"Directional":true}]},{"ID":20463,"SourceStructureID":111303,"TargetStructureID":5729,"Label":"111303-5729 via Conventional from 111304 -> 111305","Type":"Conventional","Directional":true,"Links":[{"SourceID":111304,"TargetID":111305,"Directional":true}]},{"ID":20464,"SourceStructureID":111306,"TargetStructureID":5729,"Label":"111306-5729 via Conventional from 111307 -> 37818","Type":"Conventional","Directional":true,"Links":[{"SourceID":111307,"TargetID":37818,"Directional":true}]},{"ID":20465,"SourceStructureID":111314,"TargetStructureID":5729,"Label":"111314-5729 via Conventional from 111315 -> 111316","Type":"Conventional","Directional":true,"Links":[{"SourceID":111315,"TargetID":111316,"Directional":true}]},{"ID":20466,"SourceStructureID":111318,"TargetStructureID":111312,"Label":"111318-111312 via Conventional from 111320 -> 111321","Type":"Conventional","Directional":true,"Links":[{"SourceID":111320,"TargetID":111321,"Directional":true}]},{"ID":20467,"SourceStructureID":111324,"TargetStructureID":5729,"Label":"111324-5729 via Conventional from 111325 -> 37827","Type":"Conventional","Directional":true,"Links":[{"SourceID":111325,"TargetID":37827,"Directional":true}]},{"ID":20468,"SourceStructureID":111328,"TargetStructureID":5729,"Label":"111328-5729 via Conventional from 111338 -> 37826, 111434 -> 111435","Type":"Conventional","Directional":true,"Links":[{"SourceID":111338,"TargetID":37826,"Directional":true},{"SourceID":111434,"TargetID":111435,"Directional":true}]},{"ID":20469,"SourceStructureID":111330,"TargetStructureID":5729,"Label":"111330-5729 via Conventional from 111331 -> 37821","Type":"Conventional","Directional":true,"Links":[{"SourceID":111331,"TargetID":37821,"Directional":true}]},{"ID":20470,"SourceStructureID":111342,"TargetStructureID":6120,"Label":"111342-6120 via Conventional from 111343 -> 111341","Type":"Conventional","Directional":true,"Links":[{"SourceID":111343,"TargetID":111341,"Directional":true}]},{"ID":20471,"SourceStructureID":111344,"TargetStructureID":6120,"Label":"111344-6120 via Conventional from 111345 -> 57393","Type":"Conventional","Directional":true,"Links":[{"SourceID":111345,"TargetID":57393,"Directional":true}]},{"ID":20472,"SourceStructureID":111356,"TargetStructureID":6120,"Label":"111356-6120 via Conventional from 111366 -> 111365","Type":"Conventional","Directional":true,"Links":[{"SourceID":111366,"TargetID":111365,"Directional":true}]},{"ID":20473,"SourceStructureID":111361,"TargetStructureID":6120,"Label":"111361-6120 via Conventional from 111362 -> 111360","Type":"Conventional","Directional":true,"Links":[{"SourceID":111362,"TargetID":111360,"Directional":true}]},{"ID":20474,"SourceStructureID":111369,"TargetStructureID":6120,"Label":"111369-6120 via Conventional from 111370 -> 111368","Type":"Conventional","Directional":true,"Links":[{"SourceID":111370,"TargetID":111368,"Directional":true}]},{"ID":20475,"SourceStructureID":111371,"TargetStructureID":6120,"Label":"111371-6120 via Conventional from 111372 -> 111367","Type":"Conventional","Directional":true,"Links":[{"SourceID":111372,"TargetID":111367,"Directional":true}]},{"ID":20476,"SourceStructureID":111379,"TargetStructureID":6120,"Label":"111379-6120 via Conventional from 111380 -> 111381","Type":"Conventional","Directional":true,"Links":[{"SourceID":111380,"TargetID":111381,"Directional":true}]},{"ID":20477,"SourceStructureID":111382,"TargetStructureID":6120,"Label":"111382-6120 via Conventional from 111383 -> 111384","Type":"Conventional","Directional":true,"Links":[{"SourceID":111383,"TargetID":111384,"Directional":true}]},{"ID":20478,"SourceStructureID":111386,"TargetStructureID":6120,"Label":"111386-6120 via Conventional from 111387 -> 111385","Type":"Conventional","Directional":true,"Links":[{"SourceID":111387,"TargetID":111385,"Directional":true}]},{"ID":20479,"SourceStructureID":111394,"TargetStructureID":6120,"Label":"111394-6120 via Conventional from 111395 -> 40735","Type":"Conventional","Directional":true,"Links":[{"SourceID":111395,"TargetID":40735,"Directional":true}]},{"ID":20480,"SourceStructureID":111394,"TargetStructureID":52410,"Label":"111394-52410 via Conventional from 125663 -> 125662","Type":"Conventional","Directional":true,"Links":[{"SourceID":125663,"TargetID":125662,"Directional":true}]},{"ID":20481,"SourceStructureID":111396,"TargetStructureID":6120,"Label":"111396-6120 via Conventional from 111397 -> 61202","Type":"Conventional","Directional":true,"Links":[{"SourceID":111397,"TargetID":61202,"Directional":true}]},{"ID":20482,"SourceStructureID":111401,"TargetStructureID":6120,"Label":"111401-6120 via Conventional from 111728 -> 111727","Type":"Conventional","Directional":true,"Links":[{"SourceID":111728,"TargetID":111727,"Directional":true}]},{"ID":20483,"SourceStructureID":111410,"TargetStructureID":5729,"Label":"111410-5729 via Conventional from 111425 -> 111426","Type":"Conventional","Directional":true,"Links":[{"SourceID":111425,"TargetID":111426,"Directional":true}]},{"ID":20484,"SourceStructureID":111414,"TargetStructureID":5729,"Label":"111414-5729 via Conventional from 111415 -> 37832","Type":"Conventional","Directional":true,"Links":[{"SourceID":111415,"TargetID":37832,"Directional":true}]},{"ID":20485,"SourceStructureID":111421,"TargetStructureID":6120,"Label":"111421-6120 via Conventional from 111422 -> 61194","Type":"Conventional","Directional":true,"Links":[{"SourceID":111422,"TargetID":61194,"Directional":true}]},{"ID":20486,"SourceStructureID":111424,"TargetStructureID":6120,"Label":"111424-6120 via Conventional from 111477 -> 111404","Type":"Conventional","Directional":true,"Links":[{"SourceID":111477,"TargetID":111404,"Directional":true}]},{"ID":20487,"SourceStructureID":111424,"TargetStructureID":111479,"Label":"111424-111479 via Conventional from 111478 -> 111480","Type":"Conventional","Directional":true,"Links":[{"SourceID":111478,"TargetID":111480,"Directional":true}]},{"ID":20488,"SourceStructureID":111430,"TargetStructureID":5729,"Label":"111430-5729 via Conventional from 111431 -> 111432","Type":"Conventional","Directional":true,"Links":[{"SourceID":111431,"TargetID":111432,"Directional":true}]},{"ID":20489,"SourceStructureID":111444,"TargetStructureID":5729,"Label":"111444-5729 via Conventional from 111445 -> 47292","Type":"Conventional","Directional":true,"Links":[{"SourceID":111445,"TargetID":47292,"Directional":true}]},{"ID":20490,"SourceStructureID":111448,"TargetStructureID":5499,"Label":"111448-5499 via Conventional from 111449 -> 105530","Type":"Conventional","Directional":true,"Links":[{"SourceID":111449,"TargetID":105530,"Directional":true}]},{"ID":20491,"SourceStructureID":111448,"TargetStructureID":5729,"Label":"111448-5729 via Conventional from 111450 -> 47294","Type":"Conventional","Directional":true,"Links":[{"SourceID":111450,"TargetID":47294,"Directional":true}]},{"ID":20492,"SourceStructureID":111452,"TargetStructureID":5729,"Label":"111452-5729 via Conventional from 111453 -> 111454","Type":"Conventional","Directional":true,"Links":[{"SourceID":111453,"TargetID":111454,"Directional":true}]},{"ID":20493,"SourceStructureID":111455,"TargetStructureID":5729,"Label":"111455-5729 via Conventional from 111456 -> 111457","Type":"Conventional","Directional":true,"Links":[{"SourceID":111456,"TargetID":111457,"Directional":true}]},{"ID":20494,"SourceStructureID":111455,"TargetStructureID":108426,"Label":"111455-108426 via Conventional from 111458 -> 111459","Type":"Conventional","Directional":true,"Links":[{"SourceID":111458,"TargetID":111459,"Directional":true}]},{"ID":20495,"SourceStructureID":111462,"TargetStructureID":606,"Label":"111462-606 via Conventional from 111463 -> 47276","Type":"Conventional","Directional":true,"Links":[{"SourceID":111463,"TargetID":47276,"Directional":true}]},{"ID":20496,"SourceStructureID":111462,"TargetStructureID":5729,"Label":"111462-5729 via Conventional from 111464 -> 37829","Type":"Conventional","Directional":true,"Links":[{"SourceID":111464,"TargetID":37829,"Directional":true}]},{"ID":20497,"SourceStructureID":111468,"TargetStructureID":5729,"Label":"111468-5729 via Conventional from 111469 -> 37833","Type":"Conventional","Directional":true,"Links":[{"SourceID":111469,"TargetID":37833,"Directional":true}]},{"ID":20498,"SourceStructureID":111479,"TargetStructureID":6120,"Label":"111479-6120 via Conventional from 111481 -> 111406","Type":"Conventional","Directional":true,"Links":[{"SourceID":111481,"TargetID":111406,"Directional":true}]},{"ID":20499,"SourceStructureID":111482,"TargetStructureID":6120,"Label":"111482-6120 via Conventional from 111483 -> 111405","Type":"Conventional","Directional":true,"Links":[{"SourceID":111483,"TargetID":111405,"Directional":true}]},{"ID":20500,"SourceStructureID":111493,"TargetStructureID":6120,"Label":"111493-6120 via Conventional from 111494 -> 111492","Type":"Conventional","Directional":true,"Links":[{"SourceID":111494,"TargetID":111492,"Directional":true}]},{"ID":20501,"SourceStructureID":111496,"TargetStructureID":5643,"Label":"111496-5643 via Conventional from 111505 -> 111507","Type":"Conventional","Directional":true,"Links":[{"SourceID":111505,"TargetID":111507,"Directional":true}]},{"ID":20502,"SourceStructureID":111496,"TargetStructureID":6120,"Label":"111496-6120 via Conventional from 111499 -> 61200","Type":"Conventional","Directional":true,"Links":[{"SourceID":111499,"TargetID":61200,"Directional":true}]},{"ID":20503,"SourceStructureID":111497,"TargetStructureID":6120,"Label":"111497-6120 via Conventional from 111498 -> 111500","Type":"Conventional","Directional":true,"Links":[{"SourceID":111498,"TargetID":111500,"Directional":true}]},{"ID":20504,"SourceStructureID":111501,"TargetStructureID":6120,"Label":"111501-6120 via Conventional from 111502 -> 61201","Type":"Conventional","Directional":true,"Links":[{"SourceID":111502,"TargetID":61201,"Directional":true}]},{"ID":20505,"SourceStructureID":111511,"TargetStructureID":6120,"Label":"111511-6120 via Conventional from 111512 -> 61187","Type":"Conventional","Directional":true,"Links":[{"SourceID":111512,"TargetID":61187,"Directional":true}]},{"ID":20506,"SourceStructureID":111528,"TargetStructureID":6120,"Label":"111528-6120 via Conventional from 111529 -> 111527","Type":"Conventional","Directional":true,"Links":[{"SourceID":111529,"TargetID":111527,"Directional":true}]},{"ID":20507,"SourceStructureID":111531,"TargetStructureID":6120,"Label":"111531-6120 via Conventional from 111532 -> 111530","Type":"Conventional","Directional":true,"Links":[{"SourceID":111532,"TargetID":111530,"Directional":true}]},{"ID":20508,"SourceStructureID":111539,"TargetStructureID":6120,"Label":"111539-6120 via Conventional from 111540 -> 61199","Type":"Conventional","Directional":true,"Links":[{"SourceID":111540,"TargetID":61199,"Directional":true}]},{"ID":20509,"SourceStructureID":111539,"TargetStructureID":6121,"Label":"111539-6121 via Conventional from 127709 -> 127710","Type":"Conventional","Directional":true,"Links":[{"SourceID":127709,"TargetID":127710,"Directional":true}]},{"ID":20510,"SourceStructureID":111539,"TargetStructureID":6146,"Label":"111539-6146 via Conventional from 127711 -> 127712","Type":"Conventional","Directional":true,"Links":[{"SourceID":127711,"TargetID":127712,"Directional":true}]},{"ID":20511,"SourceStructureID":111544,"TargetStructureID":6120,"Label":"111544-6120 via Conventional from 111545 -> 111543","Type":"Conventional","Directional":true,"Links":[{"SourceID":111545,"TargetID":111543,"Directional":true}]},{"ID":20512,"SourceStructureID":111546,"TargetStructureID":6120,"Label":"111546-6120 via Conventional from 111548 -> 111549","Type":"Conventional","Directional":true,"Links":[{"SourceID":111548,"TargetID":111549,"Directional":true}]},{"ID":20513,"SourceStructureID":111551,"TargetStructureID":6120,"Label":"111551-6120 via Conventional from 111552 -> 111550","Type":"Conventional","Directional":true,"Links":[{"SourceID":111552,"TargetID":111550,"Directional":true}]},{"ID":20514,"SourceStructureID":111560,"TargetStructureID":111557,"Label":"111560-111557 via Conventional from 111562 -> 111559","Type":"Conventional","Directional":true,"Links":[{"SourceID":111562,"TargetID":111559,"Directional":true}]},{"ID":20515,"SourceStructureID":111568,"TargetStructureID":6120,"Label":"111568-6120 via Conventional from 111569 -> 51507","Type":"Conventional","Directional":true,"Links":[{"SourceID":111569,"TargetID":51507,"Directional":true}]},{"ID":20516,"SourceStructureID":111572,"TargetStructureID":6120,"Label":"111572-6120 via Conventional from 111573 -> 111571","Type":"Conventional","Directional":true,"Links":[{"SourceID":111573,"TargetID":111571,"Directional":true}]},{"ID":20517,"SourceStructureID":111576,"TargetStructureID":6120,"Label":"111576-6120 via Conventional from 111577 -> 111575","Type":"Conventional","Directional":true,"Links":[{"SourceID":111577,"TargetID":111575,"Directional":true}]},{"ID":20518,"SourceStructureID":111584,"TargetStructureID":6120,"Label":"111584-6120 via Conventional from 111585 -> 111583","Type":"Conventional","Directional":true,"Links":[{"SourceID":111585,"TargetID":111583,"Directional":true}]},{"ID":20519,"SourceStructureID":111587,"TargetStructureID":6120,"Label":"111587-6120 via Conventional from 111588 -> 111586","Type":"Conventional","Directional":true,"Links":[{"SourceID":111588,"TargetID":111586,"Directional":true}]},{"ID":20520,"SourceStructureID":111590,"TargetStructureID":6120,"Label":"111590-6120 via Conventional from 111591 -> 111589","Type":"Conventional","Directional":true,"Links":[{"SourceID":111591,"TargetID":111589,"Directional":true}]},{"ID":20521,"SourceStructureID":111595,"TargetStructureID":6120,"Label":"111595-6120 via Conventional from 111596 -> 111594","Type":"Conventional","Directional":true,"Links":[{"SourceID":111596,"TargetID":111594,"Directional":true}]},{"ID":20522,"SourceStructureID":111602,"TargetStructureID":6120,"Label":"111602-6120 via Conventional from 111603 -> 111601","Type":"Conventional","Directional":true,"Links":[{"SourceID":111603,"TargetID":111601,"Directional":true}]},{"ID":20523,"SourceStructureID":111604,"TargetStructureID":5729,"Label":"111604-5729 via Conventional from 111610 -> 105755","Type":"Conventional","Directional":true,"Links":[{"SourceID":111610,"TargetID":105755,"Directional":true}]},{"ID":20524,"SourceStructureID":111604,"TargetStructureID":6162,"Label":"111604-6162 via Conventional from 116585 -> 116587","Type":"Conventional","Directional":true,"Links":[{"SourceID":116585,"TargetID":116587,"Directional":true}]},{"ID":20525,"SourceStructureID":111611,"TargetStructureID":5729,"Label":"111611-5729 via Conventional from 111612 -> 105754","Type":"Conventional","Directional":true,"Links":[{"SourceID":111612,"TargetID":105754,"Directional":true}]},{"ID":20526,"SourceStructureID":111616,"TargetStructureID":5729,"Label":"111616-5729 via Conventional from 111619 -> 105758","Type":"Conventional","Directional":true,"Links":[{"SourceID":111619,"TargetID":105758,"Directional":true}]},{"ID":20527,"SourceStructureID":111623,"TargetStructureID":6120,"Label":"111623-6120 via Conventional from 111628 -> 111622","Type":"Conventional","Directional":true,"Links":[{"SourceID":111628,"TargetID":111622,"Directional":true}]},{"ID":20528,"SourceStructureID":111630,"TargetStructureID":6120,"Label":"111630-6120 via Conventional from 111633 -> 111627","Type":"Conventional","Directional":true,"Links":[{"SourceID":111633,"TargetID":111627,"Directional":true}]},{"ID":20529,"SourceStructureID":111638,"TargetStructureID":5729,"Label":"111638-5729 via Conventional from 111639 -> 111640","Type":"Conventional","Directional":true,"Links":[{"SourceID":111639,"TargetID":111640,"Directional":true}]},{"ID":20530,"SourceStructureID":111667,"TargetStructureID":6120,"Label":"111667-6120 via Conventional from 111668 -> 111666","Type":"Conventional","Directional":true,"Links":[{"SourceID":111668,"TargetID":111666,"Directional":true}]},{"ID":20531,"SourceStructureID":111672,"TargetStructureID":31334,"Label":"111672-31334 via Conventional from 111702 -> 111701","Type":"Conventional","Directional":true,"Links":[{"SourceID":111702,"TargetID":111701,"Directional":true}]},{"ID":20532,"SourceStructureID":111677,"TargetStructureID":6120,"Label":"111677-6120 via Conventional from 111680 -> 111676","Type":"Conventional","Directional":true,"Links":[{"SourceID":111680,"TargetID":111676,"Directional":true}]},{"ID":20533,"SourceStructureID":111687,"TargetStructureID":6120,"Label":"111687-6120 via Conventional from 111688 -> 111686","Type":"Conventional","Directional":true,"Links":[{"SourceID":111688,"TargetID":111686,"Directional":true}]},{"ID":20534,"SourceStructureID":111693,"TargetStructureID":6120,"Label":"111693-6120 via Conventional from 111695 -> 111689","Type":"Conventional","Directional":true,"Links":[{"SourceID":111695,"TargetID":111689,"Directional":true}]},{"ID":20535,"SourceStructureID":111696,"TargetStructureID":6120,"Label":"111696-6120 via Conventional from 111697 -> 111670","Type":"Conventional","Directional":true,"Links":[{"SourceID":111697,"TargetID":111670,"Directional":true}]},{"ID":20536,"SourceStructureID":111698,"TargetStructureID":5107,"Label":"111698-5107 via Conventional from 111699 -> 65066","Type":"Conventional","Directional":true,"Links":[{"SourceID":111699,"TargetID":65066,"Directional":true}]},{"ID":20537,"SourceStructureID":111708,"TargetStructureID":68539,"Label":"111708-68539 via Conventional from 111709 -> 69147","Type":"Conventional","Directional":true,"Links":[{"SourceID":111709,"TargetID":69147,"Directional":true}]},{"ID":20538,"SourceStructureID":111717,"TargetStructureID":6120,"Label":"111717-6120 via Conventional from 111721 -> 111716","Type":"Conventional","Directional":true,"Links":[{"SourceID":111721,"TargetID":111716,"Directional":true}]},{"ID":20539,"SourceStructureID":111734,"TargetStructureID":6120,"Label":"111734-6120 via Conventional from 111863 -> 111864","Type":"Conventional","Directional":true,"Links":[{"SourceID":111863,"TargetID":111864,"Directional":true}]},{"ID":20540,"SourceStructureID":111735,"TargetStructureID":5729,"Label":"111735-5729 via Conventional from 111736 -> 111737","Type":"Conventional","Directional":true,"Links":[{"SourceID":111736,"TargetID":111737,"Directional":true}]},{"ID":20541,"SourceStructureID":111740,"TargetStructureID":5729,"Label":"111740-5729 via Conventional from 111742 -> 111745","Type":"Conventional","Directional":true,"Links":[{"SourceID":111742,"TargetID":111745,"Directional":true}]},{"ID":20542,"SourceStructureID":111767,"TargetStructureID":5729,"Label":"111767-5729 via Conventional from 111768 -> 111766","Type":"Conventional","Directional":true,"Links":[{"SourceID":111768,"TargetID":111766,"Directional":true}]},{"ID":20543,"SourceStructureID":111769,"TargetStructureID":5729,"Label":"111769-5729 via Conventional from 111770 -> 111771","Type":"Conventional","Directional":true,"Links":[{"SourceID":111770,"TargetID":111771,"Directional":true}]},{"ID":20544,"SourceStructureID":111785,"TargetStructureID":5729,"Label":"111785-5729 via Conventional from 111786 -> 111787","Type":"Conventional","Directional":true,"Links":[{"SourceID":111786,"TargetID":111787,"Directional":true}]},{"ID":20545,"SourceStructureID":111799,"TargetStructureID":5729,"Label":"111799-5729 via Conventional from 111800 -> 111798","Type":"Conventional","Directional":true,"Links":[{"SourceID":111800,"TargetID":111798,"Directional":true}]},{"ID":20546,"SourceStructureID":111803,"TargetStructureID":5531,"Label":"111803-5531 via Conventional from 111804 -> 111805","Type":"Conventional","Directional":true,"Links":[{"SourceID":111804,"TargetID":111805,"Directional":true}]},{"ID":20547,"SourceStructureID":111823,"TargetStructureID":5531,"Label":"111823-5531 via Conventional from 111826 -> 111825","Type":"Conventional","Directional":true,"Links":[{"SourceID":111826,"TargetID":111825,"Directional":true}]},{"ID":20548,"SourceStructureID":111827,"TargetStructureID":5531,"Label":"111827-5531 via Conventional from 111828 -> 56798","Type":"Conventional","Directional":true,"Links":[{"SourceID":111828,"TargetID":56798,"Directional":true}]},{"ID":20549,"SourceStructureID":111829,"TargetStructureID":5531,"Label":"111829-5531 via Conventional from 111830 -> 111831, 111832 -> 111833","Type":"Conventional","Directional":true,"Links":[{"SourceID":111830,"TargetID":111831,"Directional":true},{"SourceID":111832,"TargetID":111833,"Directional":true}]},{"ID":20550,"SourceStructureID":111835,"TargetStructureID":5531,"Label":"111835-5531 via Conventional from 111840 -> 111841","Type":"Conventional","Directional":true,"Links":[{"SourceID":111840,"TargetID":111841,"Directional":true}]},{"ID":20551,"SourceStructureID":111842,"TargetStructureID":5531,"Label":"111842-5531 via Conventional from 111843 -> 56800","Type":"Conventional","Directional":true,"Links":[{"SourceID":111843,"TargetID":56800,"Directional":true}]},{"ID":20552,"SourceStructureID":111848,"TargetStructureID":5531,"Label":"111848-5531 via Conventional from 111849 -> 111850","Type":"Conventional","Directional":true,"Links":[{"SourceID":111849,"TargetID":111850,"Directional":true}]},{"ID":20553,"SourceStructureID":111856,"TargetStructureID":5531,"Label":"111856-5531 via Conventional from 111858 -> 111859","Type":"Conventional","Directional":true,"Links":[{"SourceID":111858,"TargetID":111859,"Directional":true}]},{"ID":20554,"SourceStructureID":111869,"TargetStructureID":6120,"Label":"111869-6120 via Conventional from 111870 -> 111868","Type":"Conventional","Directional":true,"Links":[{"SourceID":111870,"TargetID":111868,"Directional":true}]},{"ID":20555,"SourceStructureID":111872,"TargetStructureID":6120,"Label":"111872-6120 via Conventional from 111873 -> 111871","Type":"Conventional","Directional":true,"Links":[{"SourceID":111873,"TargetID":111871,"Directional":true}]},{"ID":20556,"SourceStructureID":111876,"TargetStructureID":6120,"Label":"111876-6120 via Conventional from 111877 -> 111875","Type":"Conventional","Directional":true,"Links":[{"SourceID":111877,"TargetID":111875,"Directional":true}]},{"ID":20557,"SourceStructureID":111883,"TargetStructureID":6120,"Label":"111883-6120 via Conventional from 111884 -> 111882","Type":"Conventional","Directional":true,"Links":[{"SourceID":111884,"TargetID":111882,"Directional":true}]},{"ID":20558,"SourceStructureID":111899,"TargetStructureID":6120,"Label":"111899-6120 via Conventional from 111900 -> 111901","Type":"Conventional","Directional":true,"Links":[{"SourceID":111900,"TargetID":111901,"Directional":true}]},{"ID":20559,"SourceStructureID":111899,"TargetStructureID":6121,"Label":"111899-6121 via Conventional from 125224 -> 125222","Type":"Conventional","Directional":true,"Links":[{"SourceID":125224,"TargetID":125222,"Directional":true}]},{"ID":20560,"SourceStructureID":111926,"TargetStructureID":6047,"Label":"111926-6047 via Conventional from 111927 -> 19622","Type":"Conventional","Directional":true,"Links":[{"SourceID":111927,"TargetID":19622,"Directional":true}]},{"ID":20561,"SourceStructureID":111931,"TargetStructureID":6047,"Label":"111931-6047 via Conventional from 111932 -> 111928","Type":"Conventional","Directional":true,"Links":[{"SourceID":111932,"TargetID":111928,"Directional":true}]},{"ID":20562,"SourceStructureID":111937,"TargetStructureID":6047,"Label":"111937-6047 via Conventional from 111938 -> 111936","Type":"Conventional","Directional":true,"Links":[{"SourceID":111938,"TargetID":111936,"Directional":true}]},{"ID":20563,"SourceStructureID":111939,"TargetStructureID":6047,"Label":"111939-6047 via Conventional from 112015 -> 112016","Type":"Conventional","Directional":true,"Links":[{"SourceID":112015,"TargetID":112016,"Directional":true}]},{"ID":20564,"SourceStructureID":111953,"TargetStructureID":5729,"Label":"111953-5729 via Conventional from 111954 -> 111955","Type":"Conventional","Directional":true,"Links":[{"SourceID":111954,"TargetID":111955,"Directional":true}]},{"ID":20565,"SourceStructureID":111963,"TargetStructureID":5729,"Label":"111963-5729 via Conventional from 111966 -> 89607","Type":"Conventional","Directional":true,"Links":[{"SourceID":111966,"TargetID":89607,"Directional":true}]},{"ID":20566,"SourceStructureID":111968,"TargetStructureID":5729,"Label":"111968-5729 via Conventional from 111969 -> 89613","Type":"Conventional","Directional":true,"Links":[{"SourceID":111969,"TargetID":89613,"Directional":true}]},{"ID":20567,"SourceStructureID":111970,"TargetStructureID":5729,"Label":"111970-5729 via Conventional from 111971 -> 111972, 112004 -> 112003","Type":"Conventional","Directional":true,"Links":[{"SourceID":111971,"TargetID":111972,"Directional":true},{"SourceID":112004,"TargetID":112003,"Directional":true}]},{"ID":20568,"SourceStructureID":111994,"TargetStructureID":5729,"Label":"111994-5729 via Conventional from 111995 -> 89614","Type":"Conventional","Directional":true,"Links":[{"SourceID":111995,"TargetID":89614,"Directional":true}]},{"ID":20569,"SourceStructureID":112005,"TargetStructureID":5520,"Label":"112005-5520 via Conventional from 113802 -> 113801","Type":"Conventional","Directional":true,"Links":[{"SourceID":113802,"TargetID":113801,"Directional":true}]},{"ID":20570,"SourceStructureID":112005,"TargetStructureID":5729,"Label":"112005-5729 via Conventional from 112006 -> 112007","Type":"Conventional","Directional":true,"Links":[{"SourceID":112006,"TargetID":112007,"Directional":true}]},{"ID":20571,"SourceStructureID":112017,"TargetStructureID":6047,"Label":"112017-6047 via Conventional from 112019 -> 19709","Type":"Conventional","Directional":true,"Links":[{"SourceID":112019,"TargetID":19709,"Directional":true}]},{"ID":20572,"SourceStructureID":112028,"TargetStructureID":6047,"Label":"112028-6047 via Conventional from 112029 -> 112027","Type":"Conventional","Directional":true,"Links":[{"SourceID":112029,"TargetID":112027,"Directional":true}]},{"ID":20573,"SourceStructureID":112032,"TargetStructureID":6047,"Label":"112032-6047 via Conventional from 112033 -> 112031","Type":"Conventional","Directional":true,"Links":[{"SourceID":112033,"TargetID":112031,"Directional":true}]},{"ID":20574,"SourceStructureID":112042,"TargetStructureID":6047,"Label":"112042-6047 via Conventional from 112043 -> 112040","Type":"Conventional","Directional":true,"Links":[{"SourceID":112043,"TargetID":112040,"Directional":true}]},{"ID":20575,"SourceStructureID":112045,"TargetStructureID":6047,"Label":"112045-6047 via Conventional from 112048 -> 112039","Type":"Conventional","Directional":true,"Links":[{"SourceID":112048,"TargetID":112039,"Directional":true}]},{"ID":20576,"SourceStructureID":112045,"TargetStructureID":112042,"Label":"112045-112042 via Conventional from 112046 -> 112047","Type":"Conventional","Directional":true,"Links":[{"SourceID":112046,"TargetID":112047,"Directional":true}]},{"ID":20577,"SourceStructureID":112057,"TargetStructureID":6047,"Label":"112057-6047 via Conventional from 112059 -> 112056","Type":"Conventional","Directional":true,"Links":[{"SourceID":112059,"TargetID":112056,"Directional":true}]},{"ID":20578,"SourceStructureID":112057,"TargetStructureID":6203,"Label":"112057-6203 via Conventional from 112058 -> 112067","Type":"Conventional","Directional":true,"Links":[{"SourceID":112058,"TargetID":112067,"Directional":true}]},{"ID":20579,"SourceStructureID":112062,"TargetStructureID":6047,"Label":"112062-6047 via Conventional from 112063 -> 112061","Type":"Conventional","Directional":true,"Links":[{"SourceID":112063,"TargetID":112061,"Directional":true}]},{"ID":20580,"SourceStructureID":112071,"TargetStructureID":6047,"Label":"112071-6047 via Conventional from 112072 -> 19696","Type":"Conventional","Directional":true,"Links":[{"SourceID":112072,"TargetID":19696,"Directional":true}]},{"ID":20581,"SourceStructureID":112073,"TargetStructureID":6047,"Label":"112073-6047 via Conventional from 112074 -> 19698","Type":"Conventional","Directional":true,"Links":[{"SourceID":112074,"TargetID":19698,"Directional":true}]},{"ID":20582,"SourceStructureID":112077,"TargetStructureID":6047,"Label":"112077-6047 via Conventional from 112079 -> 19699","Type":"Conventional","Directional":true,"Links":[{"SourceID":112079,"TargetID":19699,"Directional":true}]},{"ID":20583,"SourceStructureID":112081,"TargetStructureID":6047,"Label":"112081-6047 via Conventional from 112082 -> 19701","Type":"Conventional","Directional":true,"Links":[{"SourceID":112082,"TargetID":19701,"Directional":true}]},{"ID":20584,"SourceStructureID":112084,"TargetStructureID":6047,"Label":"112084-6047 via Conventional from 112086 -> 19702","Type":"Conventional","Directional":true,"Links":[{"SourceID":112086,"TargetID":19702,"Directional":true}]},{"ID":20585,"SourceStructureID":112087,"TargetStructureID":6047,"Label":"112087-6047 via Conventional from 112088 -> 19704","Type":"Conventional","Directional":true,"Links":[{"SourceID":112088,"TargetID":19704,"Directional":true}]},{"ID":20586,"SourceStructureID":112089,"TargetStructureID":6047,"Label":"112089-6047 via Conventional from 112090 -> 19705","Type":"Conventional","Directional":true,"Links":[{"SourceID":112090,"TargetID":19705,"Directional":true}]},{"ID":20587,"SourceStructureID":112094,"TargetStructureID":6047,"Label":"112094-6047 via Conventional from 112095 -> 112093","Type":"Conventional","Directional":true,"Links":[{"SourceID":112095,"TargetID":112093,"Directional":true}]},{"ID":20588,"SourceStructureID":112096,"TargetStructureID":6047,"Label":"112096-6047 via Conventional from 112097 -> 19700","Type":"Conventional","Directional":true,"Links":[{"SourceID":112097,"TargetID":19700,"Directional":true}]},{"ID":20589,"SourceStructureID":112099,"TargetStructureID":6047,"Label":"112099-6047 via Conventional from 112100 -> 112098","Type":"Conventional","Directional":true,"Links":[{"SourceID":112100,"TargetID":112098,"Directional":true}]},{"ID":20590,"SourceStructureID":112105,"TargetStructureID":6047,"Label":"112105-6047 via Conventional from 112106 -> 19707","Type":"Conventional","Directional":true,"Links":[{"SourceID":112106,"TargetID":19707,"Directional":true}]},{"ID":20591,"SourceStructureID":112108,"TargetStructureID":6047,"Label":"112108-6047 via Conventional from 112109 -> 112107","Type":"Conventional","Directional":true,"Links":[{"SourceID":112109,"TargetID":112107,"Directional":true}]},{"ID":20592,"SourceStructureID":112108,"TargetStructureID":22994,"Label":"112108-22994 via Conventional from 112110 -> 75941","Type":"Conventional","Directional":true,"Links":[{"SourceID":112110,"TargetID":75941,"Directional":true}]},{"ID":20593,"SourceStructureID":112111,"TargetStructureID":6047,"Label":"112111-6047 via Conventional from 112112 -> 112114","Type":"Conventional","Directional":true,"Links":[{"SourceID":112112,"TargetID":112114,"Directional":true}]},{"ID":20594,"SourceStructureID":112111,"TargetStructureID":6141,"Label":"112111-6141 via Conventional from 112113 -> 57399","Type":"Conventional","Directional":true,"Links":[{"SourceID":112113,"TargetID":57399,"Directional":true}]},{"ID":20595,"SourceStructureID":112115,"TargetStructureID":6047,"Label":"112115-6047 via Conventional from 112116 -> 19677","Type":"Conventional","Directional":true,"Links":[{"SourceID":112116,"TargetID":19677,"Directional":true}]},{"ID":20596,"SourceStructureID":112128,"TargetStructureID":6047,"Label":"112128-6047 via Conventional from 112129 -> 19678","Type":"Conventional","Directional":true,"Links":[{"SourceID":112129,"TargetID":19678,"Directional":true}]},{"ID":20597,"SourceStructureID":112130,"TargetStructureID":6047,"Label":"112130-6047 via Conventional from 112131 -> 19679","Type":"Conventional","Directional":true,"Links":[{"SourceID":112131,"TargetID":19679,"Directional":true}]},{"ID":20598,"SourceStructureID":112133,"TargetStructureID":6047,"Label":"112133-6047 via Conventional from 112134 -> 112132","Type":"Conventional","Directional":true,"Links":[{"SourceID":112134,"TargetID":112132,"Directional":true}]},{"ID":20599,"SourceStructureID":112155,"TargetStructureID":6047,"Label":"112155-6047 via Conventional from 112156 -> 112154","Type":"Conventional","Directional":true,"Links":[{"SourceID":112156,"TargetID":112154,"Directional":true}]},{"ID":20600,"SourceStructureID":112160,"TargetStructureID":6047,"Label":"112160-6047 via Conventional from 112161 -> 19682","Type":"Conventional","Directional":true,"Links":[{"SourceID":112161,"TargetID":19682,"Directional":true}]},{"ID":20601,"SourceStructureID":112164,"TargetStructureID":6047,"Label":"112164-6047 via Conventional from 112165 -> 19683","Type":"Conventional","Directional":true,"Links":[{"SourceID":112165,"TargetID":19683,"Directional":true}]},{"ID":20602,"SourceStructureID":112166,"TargetStructureID":6047,"Label":"112166-6047 via Conventional from 112167 -> 57404","Type":"Conventional","Directional":true,"Links":[{"SourceID":112167,"TargetID":57404,"Directional":true}]},{"ID":20603,"SourceStructureID":112166,"TargetStructureID":112172,"Label":"112166-112172 via Conventional from 112174 -> 112173","Type":"Conventional","Directional":true,"Links":[{"SourceID":112174,"TargetID":112173,"Directional":true}]},{"ID":20604,"SourceStructureID":112168,"TargetStructureID":6047,"Label":"112168-6047 via Conventional from 112169 -> 19685","Type":"Conventional","Directional":true,"Links":[{"SourceID":112169,"TargetID":19685,"Directional":true}]},{"ID":20605,"SourceStructureID":112180,"TargetStructureID":6047,"Label":"112180-6047 via Conventional from 112181 -> 19667","Type":"Conventional","Directional":true,"Links":[{"SourceID":112181,"TargetID":19667,"Directional":true}]},{"ID":20606,"SourceStructureID":112182,"TargetStructureID":6047,"Label":"112182-6047 via Cistern Post from 112183 -> 19668","Type":"Cistern Post","Directional":true,"Links":[{"SourceID":112183,"TargetID":19668,"Directional":true}]},{"ID":20607,"SourceStructureID":112184,"TargetStructureID":6047,"Label":"112184-6047 via Conventional from 112185 -> 19674","Type":"Conventional","Directional":true,"Links":[{"SourceID":112185,"TargetID":19674,"Directional":true}]},{"ID":20608,"SourceStructureID":112186,"TargetStructureID":6047,"Label":"112186-6047 via Conventional from 112187 -> 19672","Type":"Conventional","Directional":true,"Links":[{"SourceID":112187,"TargetID":19672,"Directional":true}]},{"ID":20609,"SourceStructureID":112188,"TargetStructureID":6047,"Label":"112188-6047 via Conventional from 112189 -> 19670, 112490 -> 112489","Type":"Conventional","Directional":true,"Links":[{"SourceID":112189,"TargetID":19670,"Directional":true},{"SourceID":112490,"TargetID":112489,"Directional":true}]},{"ID":20610,"SourceStructureID":112205,"TargetStructureID":3756,"Label":"112205-3756 via Conventional from 120378 -> 116120","Type":"Conventional","Directional":true,"Links":[{"SourceID":120378,"TargetID":116120,"Directional":true}]},{"ID":20611,"SourceStructureID":112205,"TargetStructureID":6047,"Label":"112205-6047 via Conventional from 112206 -> 19710","Type":"Conventional","Directional":true,"Links":[{"SourceID":112206,"TargetID":19710,"Directional":true}]},{"ID":20612,"SourceStructureID":112207,"TargetStructureID":6047,"Label":"112207-6047 via Conventional from 112208 -> 19712","Type":"Conventional","Directional":true,"Links":[{"SourceID":112208,"TargetID":19712,"Directional":true}]},{"ID":20613,"SourceStructureID":112217,"TargetStructureID":6047,"Label":"112217-6047 via Conventional from 112218 -> 19714, 112220 -> 61337","Type":"Conventional","Directional":true,"Links":[{"SourceID":112218,"TargetID":19714,"Directional":true},{"SourceID":112220,"TargetID":61337,"Directional":true}]},{"ID":20614,"SourceStructureID":112221,"TargetStructureID":112217,"Label":"112221-112217 via Conventional from 112222 -> 112223","Type":"Conventional","Directional":true,"Links":[{"SourceID":112222,"TargetID":112223,"Directional":true}]},{"ID":20615,"SourceStructureID":112230,"TargetStructureID":6047,"Label":"112230-6047 via Conventional from 112231 -> 61336","Type":"Conventional","Directional":true,"Links":[{"SourceID":112231,"TargetID":61336,"Directional":true}]},{"ID":20616,"SourceStructureID":112233,"TargetStructureID":6047,"Label":"112233-6047 via Unknown from 113692 -> 113691","Type":"Unknown","Directional":true,"Links":[{"SourceID":113692,"TargetID":113691,"Directional":true}]},{"ID":20617,"SourceStructureID":112241,"TargetStructureID":6047,"Label":"112241-6047 via Conventional from 112242 -> 112240","Type":"Conventional","Directional":true,"Links":[{"SourceID":112242,"TargetID":112240,"Directional":true}]},{"ID":20618,"SourceStructureID":112244,"TargetStructureID":6047,"Label":"112244-6047 via Conventional from 112245 -> 61331","Type":"Conventional","Directional":true,"Links":[{"SourceID":112245,"TargetID":61331,"Directional":true}]},{"ID":20619,"SourceStructureID":112246,"TargetStructureID":6047,"Label":"112246-6047 via Conventional from 112247 -> 61325","Type":"Conventional","Directional":true,"Links":[{"SourceID":112247,"TargetID":61325,"Directional":true}]},{"ID":20620,"SourceStructureID":112253,"TargetStructureID":6047,"Label":"112253-6047 via Conventional from 112254 -> 61328","Type":"Conventional","Directional":true,"Links":[{"SourceID":112254,"TargetID":61328,"Directional":true}]},{"ID":20621,"SourceStructureID":112255,"TargetStructureID":6047,"Label":"112255-6047 via Conventional from 112256 -> 61330","Type":"Conventional","Directional":true,"Links":[{"SourceID":112256,"TargetID":61330,"Directional":true}]},{"ID":20622,"SourceStructureID":112271,"TargetStructureID":6047,"Label":"112271-6047 via Conventional from 112272 -> 61334","Type":"Conventional","Directional":true,"Links":[{"SourceID":112272,"TargetID":61334,"Directional":true}]},{"ID":20623,"SourceStructureID":112273,"TargetStructureID":6047,"Label":"112273-6047 via Conventional from 112274 -> 61333","Type":"Conventional","Directional":true,"Links":[{"SourceID":112274,"TargetID":61333,"Directional":true}]},{"ID":20624,"SourceStructureID":112282,"TargetStructureID":6047,"Label":"112282-6047 via Conventional from 112283 -> 53631","Type":"Conventional","Directional":true,"Links":[{"SourceID":112283,"TargetID":53631,"Directional":true}]},{"ID":20625,"SourceStructureID":112284,"TargetStructureID":6047,"Label":"112284-6047 via Conventional from 112285 -> 61324","Type":"Conventional","Directional":true,"Links":[{"SourceID":112285,"TargetID":61324,"Directional":true}]},{"ID":20626,"SourceStructureID":112286,"TargetStructureID":6047,"Label":"112286-6047 via Conventional from 112287 -> 112289","Type":"Conventional","Directional":true,"Links":[{"SourceID":112287,"TargetID":112289,"Directional":true}]},{"ID":20627,"SourceStructureID":112290,"TargetStructureID":6047,"Label":"112290-6047 via Conventional from 112291 -> 53632","Type":"Conventional","Directional":true,"Links":[{"SourceID":112291,"TargetID":53632,"Directional":true}]},{"ID":20628,"SourceStructureID":112297,"TargetStructureID":5729,"Label":"112297-5729 via Conventional from 112298 -> 112299","Type":"Conventional","Directional":true,"Links":[{"SourceID":112298,"TargetID":112299,"Directional":true}]},{"ID":20629,"SourceStructureID":112319,"TargetStructureID":6047,"Label":"112319-6047 via Conventional from 112320 -> 61323","Type":"Conventional","Directional":true,"Links":[{"SourceID":112320,"TargetID":61323,"Directional":true}]},{"ID":20630,"SourceStructureID":112322,"TargetStructureID":6047,"Label":"112322-6047 via Conventional from 112323 -> 112321","Type":"Conventional","Directional":true,"Links":[{"SourceID":112323,"TargetID":112321,"Directional":true}]},{"ID":20631,"SourceStructureID":112351,"TargetStructureID":6047,"Label":"112351-6047 via Conventional from 112352 -> 112353","Type":"Conventional","Directional":true,"Links":[{"SourceID":112352,"TargetID":112353,"Directional":true}]},{"ID":20632,"SourceStructureID":112355,"TargetStructureID":6047,"Label":"112355-6047 via Conventional from 112356 -> 112354","Type":"Conventional","Directional":true,"Links":[{"SourceID":112356,"TargetID":112354,"Directional":true}]},{"ID":20633,"SourceStructureID":112364,"TargetStructureID":6047,"Label":"112364-6047 via Conventional from 112366 -> 19717","Type":"Conventional","Directional":true,"Links":[{"SourceID":112366,"TargetID":19717,"Directional":true}]},{"ID":20634,"SourceStructureID":112374,"TargetStructureID":6047,"Label":"112374-6047 via Conventional from 112375 -> 112373","Type":"Conventional","Directional":true,"Links":[{"SourceID":112375,"TargetID":112373,"Directional":true}]},{"ID":20635,"SourceStructureID":112379,"TargetStructureID":6047,"Label":"112379-6047 via Conventional from 112380 -> 19724","Type":"Conventional","Directional":true,"Links":[{"SourceID":112380,"TargetID":19724,"Directional":true}]},{"ID":20636,"SourceStructureID":112384,"TargetStructureID":6047,"Label":"112384-6047 via Conventional from 112385 -> 112383","Type":"Conventional","Directional":true,"Links":[{"SourceID":112385,"TargetID":112383,"Directional":true}]},{"ID":20637,"SourceStructureID":112386,"TargetStructureID":6047,"Label":"112386-6047 via Conventional from 112387 -> 19725","Type":"Conventional","Directional":true,"Links":[{"SourceID":112387,"TargetID":19725,"Directional":true}]},{"ID":20638,"SourceStructureID":112392,"TargetStructureID":6047,"Label":"112392-6047 via Conventional from 112393 -> 19727","Type":"Conventional","Directional":true,"Links":[{"SourceID":112393,"TargetID":19727,"Directional":true}]},{"ID":20639,"SourceStructureID":112402,"TargetStructureID":6047,"Label":"112402-6047 via Conventional from 112406 -> 19740","Type":"Conventional","Directional":true,"Links":[{"SourceID":112406,"TargetID":19740,"Directional":true}]},{"ID":20640,"SourceStructureID":112404,"TargetStructureID":6047,"Label":"112404-6047 via Conventional from 112405 -> 19736","Type":"Conventional","Directional":true,"Links":[{"SourceID":112405,"TargetID":19736,"Directional":true}]},{"ID":20641,"SourceStructureID":112407,"TargetStructureID":6047,"Label":"112407-6047 via Conventional from 112408 -> 19735","Type":"Conventional","Directional":true,"Links":[{"SourceID":112408,"TargetID":19735,"Directional":true}]},{"ID":20642,"SourceStructureID":112419,"TargetStructureID":6047,"Label":"112419-6047 via Conventional from 112420 -> 19741","Type":"Conventional","Directional":true,"Links":[{"SourceID":112420,"TargetID":19741,"Directional":true}]},{"ID":20643,"SourceStructureID":112447,"TargetStructureID":112447,"Label":"112447-112447 via Postsynapse from 112448 -> 112452","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":112448,"TargetID":112452,"Directional":true}]},{"ID":20644,"SourceStructureID":112468,"TargetStructureID":5531,"Label":"112468-5531 via Conventional from 112469 -> 112470","Type":"Conventional","Directional":true,"Links":[{"SourceID":112469,"TargetID":112470,"Directional":true}]},{"ID":20645,"SourceStructureID":112474,"TargetStructureID":6047,"Label":"112474-6047 via Conventional from 112475 -> 19664","Type":"Conventional","Directional":true,"Links":[{"SourceID":112475,"TargetID":19664,"Directional":true}]},{"ID":20646,"SourceStructureID":112476,"TargetStructureID":3756,"Label":"112476-3756 via Conventional from 116112 -> 116111","Type":"Conventional","Directional":true,"Links":[{"SourceID":116112,"TargetID":116111,"Directional":true}]},{"ID":20647,"SourceStructureID":112476,"TargetStructureID":6047,"Label":"112476-6047 via Conventional from 112477 -> 19665, 129320 -> 129319","Type":"Conventional","Directional":true,"Links":[{"SourceID":112477,"TargetID":19665,"Directional":true},{"SourceID":129320,"TargetID":129319,"Directional":true}]},{"ID":20648,"SourceStructureID":112478,"TargetStructureID":6047,"Label":"112478-6047 via Conventional from 112479 -> 19666","Type":"Conventional","Directional":true,"Links":[{"SourceID":112479,"TargetID":19666,"Directional":true}]},{"ID":20649,"SourceStructureID":112496,"TargetStructureID":6047,"Label":"112496-6047 via Conventional from 112510 -> 112495","Type":"Conventional","Directional":true,"Links":[{"SourceID":112510,"TargetID":112495,"Directional":true}]},{"ID":20650,"SourceStructureID":112515,"TargetStructureID":6047,"Label":"112515-6047 via Conventional from 112517 -> 112516","Type":"Conventional","Directional":true,"Links":[{"SourceID":112517,"TargetID":112516,"Directional":true}]},{"ID":20651,"SourceStructureID":112525,"TargetStructureID":6047,"Label":"112525-6047 via Conventional from 112527 -> 112526","Type":"Conventional","Directional":true,"Links":[{"SourceID":112527,"TargetID":112526,"Directional":true}]},{"ID":20652,"SourceStructureID":112525,"TargetStructureID":43261,"Label":"112525-43261 via Conventional from 122046 -> 122045","Type":"Conventional","Directional":true,"Links":[{"SourceID":122046,"TargetID":122045,"Directional":true}]},{"ID":20653,"SourceStructureID":112545,"TargetStructureID":6047,"Label":"112545-6047 via Conventional from 112546 -> 19662","Type":"Conventional","Directional":true,"Links":[{"SourceID":112546,"TargetID":19662,"Directional":true}]},{"ID":20654,"SourceStructureID":112560,"TargetStructureID":6047,"Label":"112560-6047 via Conventional from 112561 -> 19658","Type":"Conventional","Directional":true,"Links":[{"SourceID":112561,"TargetID":19658,"Directional":true}]},{"ID":20655,"SourceStructureID":112577,"TargetStructureID":6047,"Label":"112577-6047 via Conventional from 112578 -> 19663","Type":"Conventional","Directional":true,"Links":[{"SourceID":112578,"TargetID":19663,"Directional":true}]},{"ID":20656,"SourceStructureID":112584,"TargetStructureID":6047,"Label":"112584-6047 via Conventional from 112585 -> 19657","Type":"Conventional","Directional":true,"Links":[{"SourceID":112585,"TargetID":19657,"Directional":true}]},{"ID":20657,"SourceStructureID":112594,"TargetStructureID":5729,"Label":"112594-5729 via Conventional from 112595 -> 64932","Type":"Conventional","Directional":true,"Links":[{"SourceID":112595,"TargetID":64932,"Directional":true}]},{"ID":20658,"SourceStructureID":112607,"TargetStructureID":3116,"Label":"112607-3116 via Conventional from 112608 -> 23813","Type":"Conventional","Directional":true,"Links":[{"SourceID":112608,"TargetID":23813,"Directional":true}]},{"ID":20659,"SourceStructureID":112610,"TargetStructureID":168,"Label":"112610-168 via Conventional from 112611 -> 4328, 112612 -> 4328, 112613 -> 49067","Type":"Conventional","Directional":true,"Links":[{"SourceID":112611,"TargetID":4328,"Directional":true},{"SourceID":112612,"TargetID":4328,"Directional":true},{"SourceID":112613,"TargetID":49067,"Directional":true}]},{"ID":20660,"SourceStructureID":112634,"TargetStructureID":5729,"Label":"112634-5729 via Conventional from 112636 -> 112630","Type":"Conventional","Directional":true,"Links":[{"SourceID":112636,"TargetID":112630,"Directional":true}]},{"ID":20661,"SourceStructureID":112638,"TargetStructureID":5729,"Label":"112638-5729 via Conventional from 112640 -> 112621","Type":"Conventional","Directional":true,"Links":[{"SourceID":112640,"TargetID":112621,"Directional":true}]},{"ID":20662,"SourceStructureID":112648,"TargetStructureID":5729,"Label":"112648-5729 via Conventional from 112649 -> 112653","Type":"Conventional","Directional":true,"Links":[{"SourceID":112649,"TargetID":112653,"Directional":true}]},{"ID":20663,"SourceStructureID":112650,"TargetStructureID":5729,"Label":"112650-5729 via Conventional from 112651 -> 112652","Type":"Conventional","Directional":true,"Links":[{"SourceID":112651,"TargetID":112652,"Directional":true}]},{"ID":20664,"SourceStructureID":112661,"TargetStructureID":5729,"Label":"112661-5729 via Conventional from 112663 -> 112660","Type":"Conventional","Directional":true,"Links":[{"SourceID":112663,"TargetID":112660,"Directional":true}]},{"ID":20665,"SourceStructureID":112664,"TargetStructureID":5729,"Label":"112664-5729 via Conventional from 112665 -> 112662","Type":"Conventional","Directional":true,"Links":[{"SourceID":112665,"TargetID":112662,"Directional":true}]},{"ID":20666,"SourceStructureID":112677,"TargetStructureID":5729,"Label":"112677-5729 via Conventional from 112680 -> 64512","Type":"Conventional","Directional":true,"Links":[{"SourceID":112680,"TargetID":64512,"Directional":true}]},{"ID":20667,"SourceStructureID":112684,"TargetStructureID":5729,"Label":"112684-5729 via Conventional from 112685 -> 64508","Type":"Conventional","Directional":true,"Links":[{"SourceID":112685,"TargetID":64508,"Directional":true}]},{"ID":20668,"SourceStructureID":112684,"TargetStructureID":89586,"Label":"112684-89586 via Conventional from 112687 -> 112688","Type":"Conventional","Directional":true,"Links":[{"SourceID":112687,"TargetID":112688,"Directional":true}]},{"ID":20669,"SourceStructureID":112689,"TargetStructureID":5729,"Label":"112689-5729 via Conventional from 112691 -> 64526","Type":"Conventional","Directional":true,"Links":[{"SourceID":112691,"TargetID":64526,"Directional":true}]},{"ID":20670,"SourceStructureID":112694,"TargetStructureID":5729,"Label":"112694-5729 via Conventional from 112695 -> 64500","Type":"Conventional","Directional":true,"Links":[{"SourceID":112695,"TargetID":64500,"Directional":true}]},{"ID":20671,"SourceStructureID":112696,"TargetStructureID":5729,"Label":"112696-5729 via Conventional from 112697 -> 64483","Type":"Conventional","Directional":true,"Links":[{"SourceID":112697,"TargetID":64483,"Directional":true}]},{"ID":20672,"SourceStructureID":112700,"TargetStructureID":5729,"Label":"112700-5729 via Conventional from 112701 -> 64485","Type":"Conventional","Directional":true,"Links":[{"SourceID":112701,"TargetID":64485,"Directional":true}]},{"ID":20673,"SourceStructureID":112703,"TargetStructureID":112696,"Label":"112703-112696 via Conventional from 112705 -> 112706","Type":"Conventional","Directional":true,"Links":[{"SourceID":112705,"TargetID":112706,"Directional":true}]},{"ID":20674,"SourceStructureID":112709,"TargetStructureID":5729,"Label":"112709-5729 via Conventional from 112710 -> 64481","Type":"Conventional","Directional":true,"Links":[{"SourceID":112710,"TargetID":64481,"Directional":true}]},{"ID":20675,"SourceStructureID":112712,"TargetStructureID":5729,"Label":"112712-5729 via Conventional from 112720 -> 64499","Type":"Conventional","Directional":true,"Links":[{"SourceID":112720,"TargetID":64499,"Directional":true}]},{"ID":20676,"SourceStructureID":112718,"TargetStructureID":5729,"Label":"112718-5729 via Conventional from 112719 -> 64525","Type":"Conventional","Directional":true,"Links":[{"SourceID":112719,"TargetID":64525,"Directional":true}]},{"ID":20677,"SourceStructureID":112727,"TargetStructureID":5729,"Label":"112727-5729 via Conventional from 112728 -> 64478","Type":"Conventional","Directional":true,"Links":[{"SourceID":112728,"TargetID":64478,"Directional":true}]},{"ID":20678,"SourceStructureID":112729,"TargetStructureID":5729,"Label":"112729-5729 via Conventional from 112731 -> 64468","Type":"Conventional","Directional":true,"Links":[{"SourceID":112731,"TargetID":64468,"Directional":true}]},{"ID":20679,"SourceStructureID":112737,"TargetStructureID":5729,"Label":"112737-5729 via Conventional from 112738 -> 64462","Type":"Conventional","Directional":true,"Links":[{"SourceID":112738,"TargetID":64462,"Directional":true}]},{"ID":20680,"SourceStructureID":112739,"TargetStructureID":168,"Label":"112739-168 via Conventional from 112740 -> 4332","Type":"Conventional","Directional":true,"Links":[{"SourceID":112740,"TargetID":4332,"Directional":true}]},{"ID":20681,"SourceStructureID":112753,"TargetStructureID":6047,"Label":"112753-6047 via Conventional from 112754 -> 61342","Type":"Conventional","Directional":true,"Links":[{"SourceID":112754,"TargetID":61342,"Directional":true}]},{"ID":20682,"SourceStructureID":112761,"TargetStructureID":6047,"Label":"112761-6047 via Conventional from 112762 -> 61340","Type":"Conventional","Directional":true,"Links":[{"SourceID":112762,"TargetID":61340,"Directional":true}]},{"ID":20683,"SourceStructureID":112766,"TargetStructureID":6047,"Label":"112766-6047 via Conventional from 112767 -> 61346","Type":"Conventional","Directional":true,"Links":[{"SourceID":112767,"TargetID":61346,"Directional":true}]},{"ID":20684,"SourceStructureID":112775,"TargetStructureID":6047,"Label":"112775-6047 via Conventional from 112776 -> 19653","Type":"Conventional","Directional":true,"Links":[{"SourceID":112776,"TargetID":19653,"Directional":true}]},{"ID":20685,"SourceStructureID":112777,"TargetStructureID":6047,"Label":"112777-6047 via Conventional from 112778 -> 19652","Type":"Conventional","Directional":true,"Links":[{"SourceID":112778,"TargetID":19652,"Directional":true}]},{"ID":20686,"SourceStructureID":112784,"TargetStructureID":6047,"Label":"112784-6047 via Conventional from 112787 -> 19648","Type":"Conventional","Directional":true,"Links":[{"SourceID":112787,"TargetID":19648,"Directional":true}]},{"ID":20687,"SourceStructureID":112824,"TargetStructureID":6047,"Label":"112824-6047 via Conventional from 112830 -> 19645","Type":"Conventional","Directional":true,"Links":[{"SourceID":112830,"TargetID":19645,"Directional":true}]},{"ID":20688,"SourceStructureID":112843,"TargetStructureID":3756,"Label":"112843-3756 via Conventional from 120368 -> 116097","Type":"Conventional","Directional":true,"Links":[{"SourceID":120368,"TargetID":116097,"Directional":true}]},{"ID":20689,"SourceStructureID":112843,"TargetStructureID":6047,"Label":"112843-6047 via Conventional from 112844 -> 19642","Type":"Conventional","Directional":true,"Links":[{"SourceID":112844,"TargetID":19642,"Directional":true}]},{"ID":20690,"SourceStructureID":112880,"TargetStructureID":5729,"Label":"112880-5729 via Conventional from 112883 -> 64464","Type":"Conventional","Directional":true,"Links":[{"SourceID":112883,"TargetID":64464,"Directional":true}]},{"ID":20691,"SourceStructureID":112903,"TargetStructureID":5729,"Label":"112903-5729 via Conventional from 112905 -> 65014","Type":"Conventional","Directional":true,"Links":[{"SourceID":112905,"TargetID":65014,"Directional":true}]},{"ID":20692,"SourceStructureID":112912,"TargetStructureID":5729,"Label":"112912-5729 via Conventional from 112913 -> 64586","Type":"Conventional","Directional":true,"Links":[{"SourceID":112913,"TargetID":64586,"Directional":true}]},{"ID":20693,"SourceStructureID":112938,"TargetStructureID":5729,"Label":"112938-5729 via Conventional from 112940 -> 64533","Type":"Conventional","Directional":true,"Links":[{"SourceID":112940,"TargetID":64533,"Directional":true}]},{"ID":20694,"SourceStructureID":112942,"TargetStructureID":5729,"Label":"112942-5729 via Conventional from 112948 -> 64530","Type":"Conventional","Directional":true,"Links":[{"SourceID":112948,"TargetID":64530,"Directional":true}]},{"ID":20695,"SourceStructureID":112964,"TargetStructureID":5729,"Label":"112964-5729 via Conventional from 112965 -> 112963","Type":"Conventional","Directional":true,"Links":[{"SourceID":112965,"TargetID":112963,"Directional":true}]},{"ID":20696,"SourceStructureID":112966,"TargetStructureID":5729,"Label":"112966-5729 via Conventional from 112967 -> 112968","Type":"Conventional","Directional":true,"Links":[{"SourceID":112967,"TargetID":112968,"Directional":true}]},{"ID":20697,"SourceStructureID":112969,"TargetStructureID":5729,"Label":"112969-5729 via Conventional from 112970 -> 112971","Type":"Conventional","Directional":true,"Links":[{"SourceID":112970,"TargetID":112971,"Directional":true}]},{"ID":20698,"SourceStructureID":112986,"TargetStructureID":5729,"Label":"112986-5729 via Conventional from 112987 -> 112974","Type":"Conventional","Directional":true,"Links":[{"SourceID":112987,"TargetID":112974,"Directional":true}]},{"ID":20699,"SourceStructureID":112989,"TargetStructureID":5729,"Label":"112989-5729 via Conventional from 112990 -> 112988","Type":"Conventional","Directional":true,"Links":[{"SourceID":112990,"TargetID":112988,"Directional":true}]},{"ID":20700,"SourceStructureID":112995,"TargetStructureID":61904,"Label":"112995-61904 via Conventional from 112997 -> 82214","Type":"Conventional","Directional":true,"Links":[{"SourceID":112997,"TargetID":82214,"Directional":true}]},{"ID":20701,"SourceStructureID":113068,"TargetStructureID":5284,"Label":"113068-5284 via Conventional from 113069 -> 112871, 113073 -> 112875","Type":"Conventional","Directional":true,"Links":[{"SourceID":113069,"TargetID":112871,"Directional":true},{"SourceID":113073,"TargetID":112875,"Directional":true}]},{"ID":20702,"SourceStructureID":113088,"TargetStructureID":5729,"Label":"113088-5729 via Conventional from 113089 -> 113090","Type":"Conventional","Directional":true,"Links":[{"SourceID":113089,"TargetID":113090,"Directional":true}]},{"ID":20703,"SourceStructureID":113091,"TargetStructureID":5729,"Label":"113091-5729 via Conventional from 113102 -> 113101","Type":"Conventional","Directional":true,"Links":[{"SourceID":113102,"TargetID":113101,"Directional":true}]},{"ID":20704,"SourceStructureID":113103,"TargetStructureID":5729,"Label":"113103-5729 via Conventional from 113104 -> 113093","Type":"Conventional","Directional":true,"Links":[{"SourceID":113104,"TargetID":113093,"Directional":true}]},{"ID":20705,"SourceStructureID":113120,"TargetStructureID":6047,"Label":"113120-6047 via Conventional from 113121 -> 19640","Type":"Conventional","Directional":true,"Links":[{"SourceID":113121,"TargetID":19640,"Directional":true}]},{"ID":20706,"SourceStructureID":113129,"TargetStructureID":6047,"Label":"113129-6047 via Conventional from 113130 -> 19635","Type":"Conventional","Directional":true,"Links":[{"SourceID":113130,"TargetID":19635,"Directional":true}]},{"ID":20707,"SourceStructureID":113131,"TargetStructureID":6047,"Label":"113131-6047 via Conventional from 113132 -> 19629","Type":"Conventional","Directional":true,"Links":[{"SourceID":113132,"TargetID":19629,"Directional":true}]},{"ID":20708,"SourceStructureID":113133,"TargetStructureID":6047,"Label":"113133-6047 via Conventional from 113134 -> 19636","Type":"Conventional","Directional":true,"Links":[{"SourceID":113134,"TargetID":19636,"Directional":true}]},{"ID":20709,"SourceStructureID":113135,"TargetStructureID":6047,"Label":"113135-6047 via Conventional from 113136 -> 19630","Type":"Conventional","Directional":true,"Links":[{"SourceID":113136,"TargetID":19630,"Directional":true}]},{"ID":20710,"SourceStructureID":113147,"TargetStructureID":6047,"Label":"113147-6047 via Conventional from 113148 -> 19639","Type":"Conventional","Directional":true,"Links":[{"SourceID":113148,"TargetID":19639,"Directional":true}]},{"ID":20711,"SourceStructureID":113156,"TargetStructureID":6047,"Label":"113156-6047 via Conventional from 113157 -> 19626, 113157 -> 113158","Type":"Conventional","Directional":true,"Links":[{"SourceID":113157,"TargetID":19626,"Directional":true},{"SourceID":113157,"TargetID":113158,"Directional":true}]},{"ID":20712,"SourceStructureID":113159,"TargetStructureID":6047,"Label":"113159-6047 via Conventional from 113161 -> 19625","Type":"Conventional","Directional":true,"Links":[{"SourceID":113161,"TargetID":19625,"Directional":true}]},{"ID":20713,"SourceStructureID":113164,"TargetStructureID":6047,"Label":"113164-6047 via Conventional from 113165 -> 27778","Type":"Conventional","Directional":true,"Links":[{"SourceID":113165,"TargetID":27778,"Directional":true}]},{"ID":20714,"SourceStructureID":113167,"TargetStructureID":6047,"Label":"113167-6047 via Conventional from 113168 -> 113166","Type":"Conventional","Directional":true,"Links":[{"SourceID":113168,"TargetID":113166,"Directional":true}]},{"ID":20715,"SourceStructureID":113173,"TargetStructureID":6047,"Label":"113173-6047 via Conventional from 113174 -> 113175","Type":"Conventional","Directional":true,"Links":[{"SourceID":113174,"TargetID":113175,"Directional":true}]},{"ID":20716,"SourceStructureID":113179,"TargetStructureID":6047,"Label":"113179-6047 via Conventional from 113181 -> 19632","Type":"Conventional","Directional":true,"Links":[{"SourceID":113181,"TargetID":19632,"Directional":true}]},{"ID":20717,"SourceStructureID":113186,"TargetStructureID":3756,"Label":"113186-3756 via Conventional from 129368 -> 129367","Type":"Conventional","Directional":true,"Links":[{"SourceID":129368,"TargetID":129367,"Directional":true}]},{"ID":20718,"SourceStructureID":113186,"TargetStructureID":6047,"Label":"113186-6047 via Conventional from 113187 -> 19631","Type":"Conventional","Directional":true,"Links":[{"SourceID":113187,"TargetID":19631,"Directional":true}]},{"ID":20719,"SourceStructureID":113228,"TargetStructureID":6047,"Label":"113228-6047 via Conventional from 113229 -> 19692","Type":"Conventional","Directional":true,"Links":[{"SourceID":113229,"TargetID":19692,"Directional":true}]},{"ID":20720,"SourceStructureID":113242,"TargetStructureID":13525,"Label":"113242-13525 via Conventional from 118475 -> 118476","Type":"Conventional","Directional":true,"Links":[{"SourceID":118475,"TargetID":118476,"Directional":true}]},{"ID":20721,"SourceStructureID":113332,"TargetStructureID":5284,"Label":"113332-5284 via Conventional from 113333 -> 65904, 113335 -> 113323, 113336 -> 49926","Type":"Conventional","Directional":true,"Links":[{"SourceID":113333,"TargetID":65904,"Directional":true},{"SourceID":113335,"TargetID":113323,"Directional":true},{"SourceID":113336,"TargetID":49926,"Directional":true}]},{"ID":20722,"SourceStructureID":113342,"TargetStructureID":5284,"Label":"113342-5284 via Conventional from 113343 -> 54354, 113348 -> 60786","Type":"Conventional","Directional":true,"Links":[{"SourceID":113343,"TargetID":54354,"Directional":true},{"SourceID":113348,"TargetID":60786,"Directional":true}]},{"ID":20723,"SourceStructureID":113393,"TargetStructureID":5284,"Label":"113393-5284 via Conventional from 113395 -> 113394","Type":"Conventional","Directional":true,"Links":[{"SourceID":113395,"TargetID":113394,"Directional":true}]},{"ID":20724,"SourceStructureID":113547,"TargetStructureID":67291,"Label":"113547-67291 via BC Conventional Synapse from 120526 -> 68362","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120526,"TargetID":68362,"Directional":true}]},{"ID":20725,"SourceStructureID":114564,"TargetStructureID":5531,"Label":"114564-5531 via Conventional from 114565 -> 114566","Type":"Conventional","Directional":true,"Links":[{"SourceID":114565,"TargetID":114566,"Directional":true}]},{"ID":20726,"SourceStructureID":114568,"TargetStructureID":5531,"Label":"114568-5531 via Conventional from 114569 -> 114570","Type":"Conventional","Directional":true,"Links":[{"SourceID":114569,"TargetID":114570,"Directional":true}]},{"ID":20727,"SourceStructureID":114576,"TargetStructureID":5531,"Label":"114576-5531 via Conventional from 114577 -> 114578","Type":"Conventional","Directional":true,"Links":[{"SourceID":114577,"TargetID":114578,"Directional":true}]},{"ID":20728,"SourceStructureID":114698,"TargetStructureID":5531,"Label":"114698-5531 via Conventional from 114699 -> 114700","Type":"Conventional","Directional":true,"Links":[{"SourceID":114699,"TargetID":114700,"Directional":true}]},{"ID":20729,"SourceStructureID":114726,"TargetStructureID":5531,"Label":"114726-5531 via Conventional from 114727 -> 114728, 114766 -> 114765","Type":"Conventional","Directional":true,"Links":[{"SourceID":114727,"TargetID":114728,"Directional":true},{"SourceID":114766,"TargetID":114765,"Directional":true}]},{"ID":20730,"SourceStructureID":114729,"TargetStructureID":5531,"Label":"114729-5531 via Conventional from 114730 -> 114731","Type":"Conventional","Directional":true,"Links":[{"SourceID":114730,"TargetID":114731,"Directional":true}]},{"ID":20731,"SourceStructureID":114745,"TargetStructureID":5531,"Label":"114745-5531 via Conventional from 114754 -> 114755","Type":"Conventional","Directional":true,"Links":[{"SourceID":114754,"TargetID":114755,"Directional":true}]},{"ID":20732,"SourceStructureID":114747,"TargetStructureID":5531,"Label":"114747-5531 via Conventional from 114750 -> 114751","Type":"Conventional","Directional":true,"Links":[{"SourceID":114750,"TargetID":114751,"Directional":true}]},{"ID":20733,"SourceStructureID":114757,"TargetStructureID":5531,"Label":"114757-5531 via Conventional from 114758 -> 54649","Type":"Conventional","Directional":true,"Links":[{"SourceID":114758,"TargetID":54649,"Directional":true}]},{"ID":20734,"SourceStructureID":114925,"TargetStructureID":6164,"Label":"114925-6164 via Conventional from 114926 -> 26861, 114929 -> 114930","Type":"Conventional","Directional":true,"Links":[{"SourceID":114926,"TargetID":26861,"Directional":true},{"SourceID":114929,"TargetID":114930,"Directional":true}]},{"ID":20735,"SourceStructureID":114931,"TargetStructureID":6164,"Label":"114931-6164 via Conventional from 114932 -> 26650","Type":"Conventional","Directional":true,"Links":[{"SourceID":114932,"TargetID":26650,"Directional":true}]},{"ID":20736,"SourceStructureID":115013,"TargetStructureID":6164,"Label":"115013-6164 via Conventional from 115014 -> 114934, 115015 -> 26859","Type":"Conventional","Directional":true,"Links":[{"SourceID":115014,"TargetID":114934,"Directional":true},{"SourceID":115015,"TargetID":26859,"Directional":true}]},{"ID":20737,"SourceStructureID":115133,"TargetStructureID":5468,"Label":"115133-5468 via Conventional from 124224 -> 48221","Type":"Conventional","Directional":true,"Links":[{"SourceID":124224,"TargetID":48221,"Directional":true}]},{"ID":20738,"SourceStructureID":115133,"TargetStructureID":5598,"Label":"115133-5598 via Conventional from 124223 -> 57125","Type":"Conventional","Directional":true,"Links":[{"SourceID":124223,"TargetID":57125,"Directional":true}]},{"ID":20739,"SourceStructureID":115430,"TargetStructureID":115432,"Label":"115430-115432 via Conventional from 115431 -> 115433","Type":"Conventional","Directional":true,"Links":[{"SourceID":115431,"TargetID":115433,"Directional":true}]},{"ID":20740,"SourceStructureID":115581,"TargetStructureID":13525,"Label":"115581-13525 via Ribbon Synapse from 115582 -> 87165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115582,"TargetID":87165,"Directional":true}]},{"ID":20741,"SourceStructureID":115691,"TargetStructureID":5499,"Label":"115691-5499 via Conventional from 115692 -> 98021","Type":"Conventional","Directional":true,"Links":[{"SourceID":115692,"TargetID":98021,"Directional":true}]},{"ID":20742,"SourceStructureID":115801,"TargetStructureID":5599,"Label":"115801-5599 via Conventional from 115802 -> 115803","Type":"Conventional","Directional":true,"Links":[{"SourceID":115802,"TargetID":115803,"Directional":true}]},{"ID":20743,"SourceStructureID":115810,"TargetStructureID":166,"Label":"115810-166 via Conventional from 115811 -> 49166","Type":"Conventional","Directional":true,"Links":[{"SourceID":115811,"TargetID":49166,"Directional":true}]},{"ID":20744,"SourceStructureID":115855,"TargetStructureID":909,"Label":"115855-909 via Conventional from 115856 -> 115857","Type":"Conventional","Directional":true,"Links":[{"SourceID":115856,"TargetID":115857,"Directional":true}]},{"ID":20745,"SourceStructureID":115870,"TargetStructureID":909,"Label":"115870-909 via Conventional from 116377 -> 116375, 129491 -> 129492","Type":"Conventional","Directional":true,"Links":[{"SourceID":116377,"TargetID":116375,"Directional":true},{"SourceID":129491,"TargetID":129492,"Directional":true}]},{"ID":20746,"SourceStructureID":115870,"TargetStructureID":115860,"Label":"115870-115860 via Conventional from 129488 -> 129489","Type":"Conventional","Directional":true,"Links":[{"SourceID":129488,"TargetID":129489,"Directional":true}]},{"ID":20747,"SourceStructureID":115878,"TargetStructureID":909,"Label":"115878-909 via Conventional from 129501 -> 129500","Type":"Conventional","Directional":true,"Links":[{"SourceID":129501,"TargetID":129500,"Directional":true}]},{"ID":20748,"SourceStructureID":115888,"TargetStructureID":909,"Label":"115888-909 via Conventional from 115889 -> 45838","Type":"Conventional","Directional":true,"Links":[{"SourceID":115889,"TargetID":45838,"Directional":true}]},{"ID":20749,"SourceStructureID":115900,"TargetStructureID":909,"Label":"115900-909 via Conventional from 115901 -> 40120","Type":"Conventional","Directional":true,"Links":[{"SourceID":115901,"TargetID":40120,"Directional":true}]},{"ID":20750,"SourceStructureID":115949,"TargetStructureID":909,"Label":"115949-909 via Conventional from 115950 -> 45942","Type":"Conventional","Directional":true,"Links":[{"SourceID":115950,"TargetID":45942,"Directional":true}]},{"ID":20751,"SourceStructureID":115953,"TargetStructureID":909,"Label":"115953-909 via Conventional from 115954 -> 45943","Type":"Conventional","Directional":true,"Links":[{"SourceID":115954,"TargetID":45943,"Directional":true}]},{"ID":20752,"SourceStructureID":115953,"TargetStructureID":5279,"Label":"115953-5279 via Conventional from 119110 -> 119109","Type":"Conventional","Directional":true,"Links":[{"SourceID":119110,"TargetID":119109,"Directional":true}]},{"ID":20753,"SourceStructureID":115974,"TargetStructureID":909,"Label":"115974-909 via Conventional from 115975 -> 115972","Type":"Conventional","Directional":true,"Links":[{"SourceID":115975,"TargetID":115972,"Directional":true}]},{"ID":20754,"SourceStructureID":115977,"TargetStructureID":909,"Label":"115977-909 via Conventional from 115980 -> 115976","Type":"Conventional","Directional":true,"Links":[{"SourceID":115980,"TargetID":115976,"Directional":true}]},{"ID":20755,"SourceStructureID":115983,"TargetStructureID":909,"Label":"115983-909 via Conventional from 117245 -> 115981","Type":"Conventional","Directional":true,"Links":[{"SourceID":117245,"TargetID":115981,"Directional":true}]},{"ID":20756,"SourceStructureID":116395,"TargetStructureID":909,"Label":"116395-909 via Conventional from 116396 -> 116303","Type":"Conventional","Directional":true,"Links":[{"SourceID":116396,"TargetID":116303,"Directional":true}]},{"ID":20757,"SourceStructureID":116400,"TargetStructureID":909,"Label":"116400-909 via Conventional from 116765 -> 116302","Type":"Conventional","Directional":true,"Links":[{"SourceID":116765,"TargetID":116302,"Directional":true}]},{"ID":20758,"SourceStructureID":116403,"TargetStructureID":909,"Label":"116403-909 via Conventional from 116404 -> 116401","Type":"Conventional","Directional":true,"Links":[{"SourceID":116404,"TargetID":116401,"Directional":true}]},{"ID":20759,"SourceStructureID":116451,"TargetStructureID":7167,"Label":"116451-7167 via Conventional from 116452 -> 116450","Type":"Conventional","Directional":true,"Links":[{"SourceID":116452,"TargetID":116450,"Directional":true}]},{"ID":20760,"SourceStructureID":116729,"TargetStructureID":3116,"Label":"116729-3116 via Conventional from 116730 -> 116728","Type":"Conventional","Directional":true,"Links":[{"SourceID":116730,"TargetID":116728,"Directional":true}]},{"ID":20761,"SourceStructureID":116788,"TargetStructureID":909,"Label":"116788-909 via Conventional from 116789 -> 116782","Type":"Conventional","Directional":true,"Links":[{"SourceID":116789,"TargetID":116782,"Directional":true}]},{"ID":20762,"SourceStructureID":116791,"TargetStructureID":909,"Label":"116791-909 via Conventional from 116792 -> 116790","Type":"Conventional","Directional":true,"Links":[{"SourceID":116792,"TargetID":116790,"Directional":true}]},{"ID":20763,"SourceStructureID":116919,"TargetStructureID":5551,"Label":"116919-5551 via Conventional from 116920 -> 116921","Type":"Conventional","Directional":true,"Links":[{"SourceID":116920,"TargetID":116921,"Directional":true}]},{"ID":20764,"SourceStructureID":116925,"TargetStructureID":5551,"Label":"116925-5551 via Conventional from 116928 -> 116924","Type":"Conventional","Directional":true,"Links":[{"SourceID":116928,"TargetID":116924,"Directional":true}]},{"ID":20765,"SourceStructureID":117065,"TargetStructureID":5557,"Label":"117065-5557 via Conventional from 117066 -> 117067","Type":"Conventional","Directional":true,"Links":[{"SourceID":117066,"TargetID":117067,"Directional":true}]},{"ID":20766,"SourceStructureID":117112,"TargetStructureID":8720,"Label":"117112-8720 via Ribbon Synapse from 117183 -> 63467","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117183,"TargetID":63467,"Directional":true}]},{"ID":20767,"SourceStructureID":117127,"TargetStructureID":63978,"Label":"117127-63978 via Ribbon Synapse from 117146 -> 64000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117146,"TargetID":64000,"Directional":true}]},{"ID":20768,"SourceStructureID":117214,"TargetStructureID":909,"Label":"117214-909 via Conventional from 117215 -> 117216","Type":"Conventional","Directional":true,"Links":[{"SourceID":117215,"TargetID":117216,"Directional":true}]},{"ID":20769,"SourceStructureID":117218,"TargetStructureID":909,"Label":"117218-909 via Conventional from 117219 -> 117220","Type":"Conventional","Directional":true,"Links":[{"SourceID":117219,"TargetID":117220,"Directional":true}]},{"ID":20770,"SourceStructureID":117223,"TargetStructureID":909,"Label":"117223-909 via Conventional from 117228 -> 117229, 131032 -> 118644","Type":"Conventional","Directional":true,"Links":[{"SourceID":117228,"TargetID":117229,"Directional":true},{"SourceID":131032,"TargetID":118644,"Directional":true}]},{"ID":20771,"SourceStructureID":117239,"TargetStructureID":909,"Label":"117239-909 via Conventional from 117240 -> 117238","Type":"Conventional","Directional":true,"Links":[{"SourceID":117240,"TargetID":117238,"Directional":true}]},{"ID":20772,"SourceStructureID":117242,"TargetStructureID":909,"Label":"117242-909 via Conventional from 131066 -> 131065","Type":"Conventional","Directional":true,"Links":[{"SourceID":131066,"TargetID":131065,"Directional":true}]},{"ID":20773,"SourceStructureID":117242,"TargetStructureID":117204,"Label":"117242-117204 via Conventional from 117243 -> 117244","Type":"Conventional","Directional":true,"Links":[{"SourceID":117243,"TargetID":117244,"Directional":true}]},{"ID":20774,"SourceStructureID":117285,"TargetStructureID":909,"Label":"117285-909 via Conventional from 117286 -> 117276","Type":"Conventional","Directional":true,"Links":[{"SourceID":117286,"TargetID":117276,"Directional":true}]},{"ID":20775,"SourceStructureID":117399,"TargetStructureID":909,"Label":"117399-909 via Conventional from 117400 -> 117396","Type":"Conventional","Directional":true,"Links":[{"SourceID":117400,"TargetID":117396,"Directional":true}]},{"ID":20776,"SourceStructureID":117401,"TargetStructureID":909,"Label":"117401-909 via Conventional from 117403 -> 117397","Type":"Conventional","Directional":true,"Links":[{"SourceID":117403,"TargetID":117397,"Directional":true}]},{"ID":20777,"SourceStructureID":117404,"TargetStructureID":909,"Label":"117404-909 via Conventional from 117405 -> 117398","Type":"Conventional","Directional":true,"Links":[{"SourceID":117405,"TargetID":117398,"Directional":true}]},{"ID":20778,"SourceStructureID":117406,"TargetStructureID":909,"Label":"117406-909 via Conventional from 117407 -> 53732","Type":"Conventional","Directional":true,"Links":[{"SourceID":117407,"TargetID":53732,"Directional":true}]},{"ID":20779,"SourceStructureID":117406,"TargetStructureID":117411,"Label":"117406-117411 via Conventional from 130224 -> 130225","Type":"Conventional","Directional":true,"Links":[{"SourceID":130224,"TargetID":130225,"Directional":true}]},{"ID":20780,"SourceStructureID":117411,"TargetStructureID":909,"Label":"117411-909 via Conventional from 117412 -> 117414","Type":"Conventional","Directional":true,"Links":[{"SourceID":117412,"TargetID":117414,"Directional":true}]},{"ID":20781,"SourceStructureID":117429,"TargetStructureID":909,"Label":"117429-909 via Conventional from 117430 -> 117428","Type":"Conventional","Directional":true,"Links":[{"SourceID":117430,"TargetID":117428,"Directional":true}]},{"ID":20782,"SourceStructureID":117440,"TargetStructureID":909,"Label":"117440-909 via Conventional from 117441 -> 117442","Type":"Conventional","Directional":true,"Links":[{"SourceID":117441,"TargetID":117442,"Directional":true}]},{"ID":20783,"SourceStructureID":117463,"TargetStructureID":909,"Label":"117463-909 via Conventional from 117464 -> 53743","Type":"Conventional","Directional":true,"Links":[{"SourceID":117464,"TargetID":53743,"Directional":true}]},{"ID":20784,"SourceStructureID":117466,"TargetStructureID":909,"Label":"117466-909 via Conventional from 117467 -> 53744","Type":"Conventional","Directional":true,"Links":[{"SourceID":117467,"TargetID":53744,"Directional":true}]},{"ID":20785,"SourceStructureID":117470,"TargetStructureID":909,"Label":"117470-909 via Conventional from 117471 -> 53745, 130086 -> 130087","Type":"Conventional","Directional":true,"Links":[{"SourceID":117471,"TargetID":53745,"Directional":true},{"SourceID":130086,"TargetID":130087,"Directional":true}]},{"ID":20786,"SourceStructureID":117476,"TargetStructureID":909,"Label":"117476-909 via Conventional from 117477 -> 117478","Type":"Conventional","Directional":true,"Links":[{"SourceID":117477,"TargetID":117478,"Directional":true}]},{"ID":20787,"SourceStructureID":117659,"TargetStructureID":909,"Label":"117659-909 via Conventional from 117660 -> 117661","Type":"Conventional","Directional":true,"Links":[{"SourceID":117660,"TargetID":117661,"Directional":true}]},{"ID":20788,"SourceStructureID":117679,"TargetStructureID":909,"Label":"117679-909 via Conventional from 117680 -> 117457","Type":"Conventional","Directional":true,"Links":[{"SourceID":117680,"TargetID":117457,"Directional":true}]},{"ID":20789,"SourceStructureID":117689,"TargetStructureID":909,"Label":"117689-909 via Conventional from 117690 -> 53754, 120173 -> 120172","Type":"Conventional","Directional":true,"Links":[{"SourceID":117690,"TargetID":53754,"Directional":true},{"SourceID":120173,"TargetID":120172,"Directional":true}]},{"ID":20790,"SourceStructureID":117778,"TargetStructureID":28950,"Label":"117778-28950 via Ribbon Synapse from 117788 -> 28992, 117789 -> 28992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117788,"TargetID":28992,"Directional":true},{"SourceID":117789,"TargetID":28992,"Directional":true}]},{"ID":20791,"SourceStructureID":117803,"TargetStructureID":7129,"Label":"117803-7129 via Conventional from 127741 -> 127742","Type":"Conventional","Directional":true,"Links":[{"SourceID":127741,"TargetID":127742,"Directional":true}]},{"ID":20792,"SourceStructureID":117820,"TargetStructureID":909,"Label":"117820-909 via Conventional from 117821 -> 117822","Type":"Conventional","Directional":true,"Links":[{"SourceID":117821,"TargetID":117822,"Directional":true}]},{"ID":20793,"SourceStructureID":117851,"TargetStructureID":909,"Label":"117851-909 via Conventional from 130282 -> 130283","Type":"Conventional","Directional":true,"Links":[{"SourceID":130282,"TargetID":130283,"Directional":true}]},{"ID":20794,"SourceStructureID":117851,"TargetStructureID":5297,"Label":"117851-5297 via Conventional from 121469 -> 61482","Type":"Conventional","Directional":true,"Links":[{"SourceID":121469,"TargetID":61482,"Directional":true}]},{"ID":20795,"SourceStructureID":117858,"TargetStructureID":909,"Label":"117858-909 via Conventional from 117859 -> 117828","Type":"Conventional","Directional":true,"Links":[{"SourceID":117859,"TargetID":117828,"Directional":true}]},{"ID":20796,"SourceStructureID":117860,"TargetStructureID":909,"Label":"117860-909 via Conventional from 117861 -> 117850","Type":"Conventional","Directional":true,"Links":[{"SourceID":117861,"TargetID":117850,"Directional":true}]},{"ID":20797,"SourceStructureID":117860,"TargetStructureID":5297,"Label":"117860-5297 via Conventional from 121335 -> 116445","Type":"Conventional","Directional":true,"Links":[{"SourceID":121335,"TargetID":116445,"Directional":true}]},{"ID":20798,"SourceStructureID":117876,"TargetStructureID":909,"Label":"117876-909 via Conventional from 117877 -> 117870, 117886 -> 117885","Type":"Conventional","Directional":true,"Links":[{"SourceID":117877,"TargetID":117870,"Directional":true},{"SourceID":117886,"TargetID":117885,"Directional":true}]},{"ID":20799,"SourceStructureID":117887,"TargetStructureID":909,"Label":"117887-909 via Conventional from 117888 -> 53795","Type":"Conventional","Directional":true,"Links":[{"SourceID":117888,"TargetID":53795,"Directional":true}]},{"ID":20800,"SourceStructureID":117906,"TargetStructureID":909,"Label":"117906-909 via Conventional from 117908 -> 117909","Type":"Conventional","Directional":true,"Links":[{"SourceID":117908,"TargetID":117909,"Directional":true}]},{"ID":20801,"SourceStructureID":117919,"TargetStructureID":909,"Label":"117919-909 via Conventional from 117920 -> 117918","Type":"Conventional","Directional":true,"Links":[{"SourceID":117920,"TargetID":117918,"Directional":true}]},{"ID":20802,"SourceStructureID":117919,"TargetStructureID":5284,"Label":"117919-5284 via Conventional from 117921 -> 64591","Type":"Conventional","Directional":true,"Links":[{"SourceID":117921,"TargetID":64591,"Directional":true}]},{"ID":20803,"SourceStructureID":117990,"TargetStructureID":7861,"Label":"117990-7861 via Ribbon Synapse from 117994 -> 117995","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117994,"TargetID":117995,"Directional":true}]},{"ID":20804,"SourceStructureID":118258,"TargetStructureID":118258,"Label":"118258-118258 via Conventional from 127800 -> 127801","Type":"Conventional","Directional":true,"Links":[{"SourceID":127800,"TargetID":127801,"Directional":true}]},{"ID":20805,"SourceStructureID":118258,"TargetStructureID":127796,"Label":"118258-127796 via Ribbon Synapse from 127802 -> 127803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127802,"TargetID":127803,"Directional":true}]},{"ID":20806,"SourceStructureID":118395,"TargetStructureID":909,"Label":"118395-909 via Conventional from 118397 -> 53803","Type":"Conventional","Directional":true,"Links":[{"SourceID":118397,"TargetID":53803,"Directional":true}]},{"ID":20807,"SourceStructureID":118446,"TargetStructureID":909,"Label":"118446-909 via Conventional from 118451 -> 118452","Type":"Conventional","Directional":true,"Links":[{"SourceID":118451,"TargetID":118452,"Directional":true}]},{"ID":20808,"SourceStructureID":118949,"TargetStructureID":26079,"Label":"118949-26079 via Conventional from 118950 -> 118948","Type":"Conventional","Directional":true,"Links":[{"SourceID":118950,"TargetID":118948,"Directional":true}]},{"ID":20809,"SourceStructureID":118952,"TargetStructureID":5513,"Label":"118952-5513 via Conventional from 118953 -> 29591","Type":"Conventional","Directional":true,"Links":[{"SourceID":118953,"TargetID":29591,"Directional":true}]},{"ID":20810,"SourceStructureID":118997,"TargetStructureID":31700,"Label":"118997-31700 via Conventional from 118998 -> 118996","Type":"Conventional","Directional":true,"Links":[{"SourceID":118998,"TargetID":118996,"Directional":true}]},{"ID":20811,"SourceStructureID":119000,"TargetStructureID":330,"Label":"119000-330 via Conventional from 119003 -> 119004","Type":"Conventional","Directional":true,"Links":[{"SourceID":119003,"TargetID":119004,"Directional":true}]},{"ID":20812,"SourceStructureID":119000,"TargetStructureID":606,"Label":"119000-606 via Conventional from 119014 -> 9796","Type":"Conventional","Directional":true,"Links":[{"SourceID":119014,"TargetID":9796,"Directional":true}]},{"ID":20813,"SourceStructureID":119000,"TargetStructureID":6165,"Label":"119000-6165 via Conventional from 119039 -> 119040","Type":"Conventional","Directional":true,"Links":[{"SourceID":119039,"TargetID":119040,"Directional":true}]},{"ID":20814,"SourceStructureID":119000,"TargetStructureID":31700,"Label":"119000-31700 via Conventional from 119001 -> 118999","Type":"Conventional","Directional":true,"Links":[{"SourceID":119001,"TargetID":118999,"Directional":true}]},{"ID":20815,"SourceStructureID":119000,"TargetStructureID":119008,"Label":"119000-119008 via Conventional from 119007 -> 119010","Type":"Conventional","Directional":true,"Links":[{"SourceID":119007,"TargetID":119010,"Directional":true}]},{"ID":20816,"SourceStructureID":119000,"TargetStructureID":119017,"Label":"119000-119017 via Conventional from 119016 -> 119018","Type":"Conventional","Directional":true,"Links":[{"SourceID":119016,"TargetID":119018,"Directional":true}]},{"ID":20817,"SourceStructureID":119000,"TargetStructureID":119020,"Label":"119000-119020 via Conventional from 119019 -> 119021","Type":"Conventional","Directional":true,"Links":[{"SourceID":119019,"TargetID":119021,"Directional":true}]},{"ID":20818,"SourceStructureID":119008,"TargetStructureID":330,"Label":"119008-330 via Conventional from 119009 -> 119011","Type":"Conventional","Directional":true,"Links":[{"SourceID":119009,"TargetID":119011,"Directional":true}]},{"ID":20819,"SourceStructureID":119154,"TargetStructureID":64673,"Label":"119154-64673 via Conventional from 119168 -> 64681","Type":"Conventional","Directional":true,"Links":[{"SourceID":119168,"TargetID":64681,"Directional":true}]},{"ID":20820,"SourceStructureID":119241,"TargetStructureID":52257,"Label":"119241-52257 via Conventional from 119242 -> 119245, 119243 -> 119244","Type":"Conventional","Directional":true,"Links":[{"SourceID":119242,"TargetID":119245,"Directional":true},{"SourceID":119243,"TargetID":119244,"Directional":true}]},{"ID":20821,"SourceStructureID":119270,"TargetStructureID":5281,"Label":"119270-5281 via Conventional from 119271 -> 36784","Type":"Conventional","Directional":true,"Links":[{"SourceID":119271,"TargetID":36784,"Directional":true}]},{"ID":20822,"SourceStructureID":119388,"TargetStructureID":13525,"Label":"119388-13525 via Conventional from 119409 -> 119406","Type":"Conventional","Directional":true,"Links":[{"SourceID":119409,"TargetID":119406,"Directional":true}]},{"ID":20823,"SourceStructureID":119517,"TargetStructureID":5487,"Label":"119517-5487 via BC Conventional Synapse from 119526 -> 119525","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119526,"TargetID":119525,"Directional":true}]},{"ID":20824,"SourceStructureID":119517,"TargetStructureID":6300,"Label":"119517-6300 via Ribbon Synapse from 119520 -> 119516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119520,"TargetID":119516,"Directional":true}]},{"ID":20825,"SourceStructureID":119517,"TargetStructureID":54969,"Label":"119517-54969 via Ribbon Synapse from 119521 -> 54970","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119521,"TargetID":54970,"Directional":true}]},{"ID":20826,"SourceStructureID":119547,"TargetStructureID":8035,"Label":"119547-8035 via Ribbon Synapse from 119555 -> 25020","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119555,"TargetID":25020,"Directional":true}]},{"ID":20827,"SourceStructureID":119945,"TargetStructureID":119943,"Label":"119945-119943 via Conventional from 119946 -> 119944","Type":"Conventional","Directional":true,"Links":[{"SourceID":119946,"TargetID":119944,"Directional":true}]},{"ID":20828,"SourceStructureID":119971,"TargetStructureID":5281,"Label":"119971-5281 via Conventional from 119972 -> 119970","Type":"Conventional","Directional":true,"Links":[{"SourceID":119972,"TargetID":119970,"Directional":true}]},{"ID":20829,"SourceStructureID":120194,"TargetStructureID":909,"Label":"120194-909 via Conventional from 120195 -> 118423","Type":"Conventional","Directional":true,"Links":[{"SourceID":120195,"TargetID":118423,"Directional":true}]},{"ID":20830,"SourceStructureID":120197,"TargetStructureID":909,"Label":"120197-909 via Conventional from 120198 -> 120181","Type":"Conventional","Directional":true,"Links":[{"SourceID":120198,"TargetID":120181,"Directional":true}]},{"ID":20831,"SourceStructureID":120253,"TargetStructureID":3756,"Label":"120253-3756 via Conventional from 120254 -> 116038","Type":"Conventional","Directional":true,"Links":[{"SourceID":120254,"TargetID":116038,"Directional":true}]},{"ID":20832,"SourceStructureID":120256,"TargetStructureID":5531,"Label":"120256-5531 via Conventional from 120257 -> 107201","Type":"Conventional","Directional":true,"Links":[{"SourceID":120257,"TargetID":107201,"Directional":true}]},{"ID":20833,"SourceStructureID":120270,"TargetStructureID":5531,"Label":"120270-5531 via Conventional from 120272 -> 108023","Type":"Conventional","Directional":true,"Links":[{"SourceID":120272,"TargetID":108023,"Directional":true}]},{"ID":20834,"SourceStructureID":120282,"TargetStructureID":3756,"Label":"120282-3756 via Conventional from 120283 -> 116006, 120308 -> 116023","Type":"Conventional","Directional":true,"Links":[{"SourceID":120283,"TargetID":116006,"Directional":true},{"SourceID":120308,"TargetID":116023,"Directional":true}]},{"ID":20835,"SourceStructureID":120285,"TargetStructureID":3756,"Label":"120285-3756 via Conventional from 120287 -> 116010","Type":"Conventional","Directional":true,"Links":[{"SourceID":120287,"TargetID":116010,"Directional":true}]},{"ID":20836,"SourceStructureID":120288,"TargetStructureID":3756,"Label":"120288-3756 via Conventional from 120290 -> 116013","Type":"Conventional","Directional":true,"Links":[{"SourceID":120290,"TargetID":116013,"Directional":true}]},{"ID":20837,"SourceStructureID":120291,"TargetStructureID":3756,"Label":"120291-3756 via Conventional from 120294 -> 116014, 120298 -> 116016","Type":"Conventional","Directional":true,"Links":[{"SourceID":120294,"TargetID":116014,"Directional":true},{"SourceID":120298,"TargetID":116016,"Directional":true}]},{"ID":20838,"SourceStructureID":120299,"TargetStructureID":3756,"Label":"120299-3756 via Conventional from 120300 -> 116019","Type":"Conventional","Directional":true,"Links":[{"SourceID":120300,"TargetID":116019,"Directional":true}]},{"ID":20839,"SourceStructureID":120299,"TargetStructureID":5297,"Label":"120299-5297 via Conventional from 121361 -> 116513","Type":"Conventional","Directional":true,"Links":[{"SourceID":121361,"TargetID":116513,"Directional":true}]},{"ID":20840,"SourceStructureID":120303,"TargetStructureID":3756,"Label":"120303-3756 via Conventional from 120307 -> 116020","Type":"Conventional","Directional":true,"Links":[{"SourceID":120307,"TargetID":116020,"Directional":true}]},{"ID":20841,"SourceStructureID":120309,"TargetStructureID":3756,"Label":"120309-3756 via Conventional from 120310 -> 116028","Type":"Conventional","Directional":true,"Links":[{"SourceID":120310,"TargetID":116028,"Directional":true}]},{"ID":20842,"SourceStructureID":120318,"TargetStructureID":3756,"Label":"120318-3756 via Conventional from 120319 -> 116032","Type":"Conventional","Directional":true,"Links":[{"SourceID":120319,"TargetID":116032,"Directional":true}]},{"ID":20843,"SourceStructureID":120321,"TargetStructureID":6050,"Label":"120321-6050 via Conventional from 128794 -> 127649","Type":"Conventional","Directional":true,"Links":[{"SourceID":128794,"TargetID":127649,"Directional":true}]},{"ID":20844,"SourceStructureID":120323,"TargetStructureID":3756,"Label":"120323-3756 via Conventional from 120324 -> 116040, 120325 -> 116040","Type":"Conventional","Directional":true,"Links":[{"SourceID":120324,"TargetID":116040,"Directional":true},{"SourceID":120325,"TargetID":116040,"Directional":true}]},{"ID":20845,"SourceStructureID":120329,"TargetStructureID":3756,"Label":"120329-3756 via Conventional from 120330 -> 116049","Type":"Conventional","Directional":true,"Links":[{"SourceID":120330,"TargetID":116049,"Directional":true}]},{"ID":20846,"SourceStructureID":120331,"TargetStructureID":3756,"Label":"120331-3756 via Conventional from 120332 -> 116053","Type":"Conventional","Directional":true,"Links":[{"SourceID":120332,"TargetID":116053,"Directional":true}]},{"ID":20847,"SourceStructureID":120334,"TargetStructureID":3756,"Label":"120334-3756 via Conventional from 120336 -> 116055","Type":"Conventional","Directional":true,"Links":[{"SourceID":120336,"TargetID":116055,"Directional":true}]},{"ID":20848,"SourceStructureID":120334,"TargetStructureID":5598,"Label":"120334-5598 via Conventional from 120335 -> 115254","Type":"Conventional","Directional":true,"Links":[{"SourceID":120335,"TargetID":115254,"Directional":true}]},{"ID":20849,"SourceStructureID":120337,"TargetStructureID":3756,"Label":"120337-3756 via Conventional from 120338 -> 116056","Type":"Conventional","Directional":true,"Links":[{"SourceID":120338,"TargetID":116056,"Directional":true}]},{"ID":20850,"SourceStructureID":120339,"TargetStructureID":3756,"Label":"120339-3756 via Conventional from 120340 -> 116057","Type":"Conventional","Directional":true,"Links":[{"SourceID":120340,"TargetID":116057,"Directional":true}]},{"ID":20851,"SourceStructureID":120343,"TargetStructureID":3756,"Label":"120343-3756 via Conventional from 120344 -> 116066","Type":"Conventional","Directional":true,"Links":[{"SourceID":120344,"TargetID":116066,"Directional":true}]},{"ID":20852,"SourceStructureID":120343,"TargetStructureID":116142,"Label":"120343-116142 via Conventional from 129180 -> 129178","Type":"Conventional","Directional":true,"Links":[{"SourceID":129180,"TargetID":129178,"Directional":true}]},{"ID":20853,"SourceStructureID":120347,"TargetStructureID":3756,"Label":"120347-3756 via Conventional from 120348 -> 116067","Type":"Conventional","Directional":true,"Links":[{"SourceID":120348,"TargetID":116067,"Directional":true}]},{"ID":20854,"SourceStructureID":120355,"TargetStructureID":3756,"Label":"120355-3756 via Conventional from 120356 -> 116081","Type":"Conventional","Directional":true,"Links":[{"SourceID":120356,"TargetID":116081,"Directional":true}]},{"ID":20855,"SourceStructureID":120359,"TargetStructureID":3756,"Label":"120359-3756 via Conventional from 120360 -> 116083","Type":"Conventional","Directional":true,"Links":[{"SourceID":120360,"TargetID":116083,"Directional":true}]},{"ID":20856,"SourceStructureID":120361,"TargetStructureID":3756,"Label":"120361-3756 via Conventional from 120362 -> 116096","Type":"Conventional","Directional":true,"Links":[{"SourceID":120362,"TargetID":116096,"Directional":true}]},{"ID":20857,"SourceStructureID":120370,"TargetStructureID":3756,"Label":"120370-3756 via Conventional from 120371 -> 116100","Type":"Conventional","Directional":true,"Links":[{"SourceID":120371,"TargetID":116100,"Directional":true}]},{"ID":20858,"SourceStructureID":120372,"TargetStructureID":3756,"Label":"120372-3756 via Conventional from 120373 -> 116109","Type":"Conventional","Directional":true,"Links":[{"SourceID":120373,"TargetID":116109,"Directional":true}]},{"ID":20859,"SourceStructureID":120375,"TargetStructureID":3756,"Label":"120375-3756 via Conventional from 120376 -> 116114","Type":"Conventional","Directional":true,"Links":[{"SourceID":120376,"TargetID":116114,"Directional":true}]},{"ID":20860,"SourceStructureID":120379,"TargetStructureID":3756,"Label":"120379-3756 via Conventional from 120380 -> 116130, 120384 -> 116139","Type":"Conventional","Directional":true,"Links":[{"SourceID":120380,"TargetID":116130,"Directional":true},{"SourceID":120384,"TargetID":116139,"Directional":true}]},{"ID":20861,"SourceStructureID":120379,"TargetStructureID":116142,"Label":"120379-116142 via Conventional from 120386 -> 120943","Type":"Conventional","Directional":true,"Links":[{"SourceID":120386,"TargetID":120943,"Directional":true}]},{"ID":20862,"SourceStructureID":120389,"TargetStructureID":3756,"Label":"120389-3756 via Conventional from 120390 -> 116141","Type":"Conventional","Directional":true,"Links":[{"SourceID":120390,"TargetID":116141,"Directional":true}]},{"ID":20863,"SourceStructureID":120393,"TargetStructureID":3756,"Label":"120393-3756 via Conventional from 120394 -> 116148, 129412 -> 129411","Type":"Conventional","Directional":true,"Links":[{"SourceID":120394,"TargetID":116148,"Directional":true},{"SourceID":129412,"TargetID":129411,"Directional":true}]},{"ID":20864,"SourceStructureID":120393,"TargetStructureID":6047,"Label":"120393-6047 via Conventional from 120395 -> 113351","Type":"Conventional","Directional":true,"Links":[{"SourceID":120395,"TargetID":113351,"Directional":true}]},{"ID":20865,"SourceStructureID":120396,"TargetStructureID":3756,"Label":"120396-3756 via Conventional from 120397 -> 116152","Type":"Conventional","Directional":true,"Links":[{"SourceID":120397,"TargetID":116152,"Directional":true}]},{"ID":20866,"SourceStructureID":120398,"TargetStructureID":3756,"Label":"120398-3756 via Conventional from 120399 -> 116157","Type":"Conventional","Directional":true,"Links":[{"SourceID":120399,"TargetID":116157,"Directional":true}]},{"ID":20867,"SourceStructureID":120400,"TargetStructureID":3756,"Label":"120400-3756 via Conventional from 120401 -> 116159","Type":"Conventional","Directional":true,"Links":[{"SourceID":120401,"TargetID":116159,"Directional":true}]},{"ID":20868,"SourceStructureID":120403,"TargetStructureID":3756,"Label":"120403-3756 via Conventional from 120404 -> 116161","Type":"Conventional","Directional":true,"Links":[{"SourceID":120404,"TargetID":116161,"Directional":true}]},{"ID":20869,"SourceStructureID":120409,"TargetStructureID":3756,"Label":"120409-3756 via Conventional from 120414 -> 116162","Type":"Conventional","Directional":true,"Links":[{"SourceID":120414,"TargetID":116162,"Directional":true}]},{"ID":20870,"SourceStructureID":120416,"TargetStructureID":3756,"Label":"120416-3756 via Conventional from 120418 -> 116165, 120558 -> 56909","Type":"Conventional","Directional":true,"Links":[{"SourceID":120418,"TargetID":116165,"Directional":true},{"SourceID":120558,"TargetID":56909,"Directional":true}]},{"ID":20871,"SourceStructureID":120420,"TargetStructureID":3756,"Label":"120420-3756 via Conventional from 120421 -> 116167","Type":"Conventional","Directional":true,"Links":[{"SourceID":120421,"TargetID":116167,"Directional":true}]},{"ID":20872,"SourceStructureID":120423,"TargetStructureID":3756,"Label":"120423-3756 via Conventional from 120424 -> 116175","Type":"Conventional","Directional":true,"Links":[{"SourceID":120424,"TargetID":116175,"Directional":true}]},{"ID":20873,"SourceStructureID":120425,"TargetStructureID":3756,"Label":"120425-3756 via Conventional from 120426 -> 116176","Type":"Conventional","Directional":true,"Links":[{"SourceID":120426,"TargetID":116176,"Directional":true}]},{"ID":20874,"SourceStructureID":120431,"TargetStructureID":3756,"Label":"120431-3756 via Conventional from 120434 -> 116188","Type":"Conventional","Directional":true,"Links":[{"SourceID":120434,"TargetID":116188,"Directional":true}]},{"ID":20875,"SourceStructureID":120439,"TargetStructureID":3756,"Label":"120439-3756 via Conventional from 120440 -> 116189","Type":"Conventional","Directional":true,"Links":[{"SourceID":120440,"TargetID":116189,"Directional":true}]},{"ID":20876,"SourceStructureID":120445,"TargetStructureID":3756,"Label":"120445-3756 via Conventional from 120446 -> 116205","Type":"Conventional","Directional":true,"Links":[{"SourceID":120446,"TargetID":116205,"Directional":true}]},{"ID":20877,"SourceStructureID":120445,"TargetStructureID":6050,"Label":"120445-6050 via Conventional from 120447 -> 113894","Type":"Conventional","Directional":true,"Links":[{"SourceID":120447,"TargetID":113894,"Directional":true}]},{"ID":20878,"SourceStructureID":120448,"TargetStructureID":3756,"Label":"120448-3756 via Conventional from 120449 -> 116207","Type":"Conventional","Directional":true,"Links":[{"SourceID":120449,"TargetID":116207,"Directional":true}]},{"ID":20879,"SourceStructureID":120448,"TargetStructureID":6050,"Label":"120448-6050 via Conventional from 127247 -> 127246","Type":"Conventional","Directional":true,"Links":[{"SourceID":127247,"TargetID":127246,"Directional":true}]},{"ID":20880,"SourceStructureID":120452,"TargetStructureID":3756,"Label":"120452-3756 via Conventional from 128971 -> 116215","Type":"Conventional","Directional":true,"Links":[{"SourceID":128971,"TargetID":116215,"Directional":true}]},{"ID":20881,"SourceStructureID":120452,"TargetStructureID":6050,"Label":"120452-6050 via Conventional from 120453 -> 51665","Type":"Conventional","Directional":true,"Links":[{"SourceID":120453,"TargetID":51665,"Directional":true}]},{"ID":20882,"SourceStructureID":120456,"TargetStructureID":3756,"Label":"120456-3756 via Conventional from 120457 -> 116222","Type":"Conventional","Directional":true,"Links":[{"SourceID":120457,"TargetID":116222,"Directional":true}]},{"ID":20883,"SourceStructureID":120458,"TargetStructureID":3756,"Label":"120458-3756 via Conventional from 120459 -> 116227","Type":"Conventional","Directional":true,"Links":[{"SourceID":120459,"TargetID":116227,"Directional":true}]},{"ID":20884,"SourceStructureID":120458,"TargetStructureID":6050,"Label":"120458-6050 via Conventional from 120460 -> 114310","Type":"Conventional","Directional":true,"Links":[{"SourceID":120460,"TargetID":114310,"Directional":true}]},{"ID":20885,"SourceStructureID":120461,"TargetStructureID":3756,"Label":"120461-3756 via Conventional from 120462 -> 116230","Type":"Conventional","Directional":true,"Links":[{"SourceID":120462,"TargetID":116230,"Directional":true}]},{"ID":20886,"SourceStructureID":120464,"TargetStructureID":3756,"Label":"120464-3756 via Conventional from 120465 -> 116231","Type":"Conventional","Directional":true,"Links":[{"SourceID":120465,"TargetID":116231,"Directional":true}]},{"ID":20887,"SourceStructureID":120466,"TargetStructureID":3756,"Label":"120466-3756 via Conventional from 120467 -> 116232","Type":"Conventional","Directional":true,"Links":[{"SourceID":120467,"TargetID":116232,"Directional":true}]},{"ID":20888,"SourceStructureID":120466,"TargetStructureID":6050,"Label":"120466-6050 via Conventional from 127107 -> 127106","Type":"Conventional","Directional":true,"Links":[{"SourceID":127107,"TargetID":127106,"Directional":true}]},{"ID":20889,"SourceStructureID":120470,"TargetStructureID":3756,"Label":"120470-3756 via Conventional from 120471 -> 116241","Type":"Conventional","Directional":true,"Links":[{"SourceID":120471,"TargetID":116241,"Directional":true}]},{"ID":20890,"SourceStructureID":120472,"TargetStructureID":3756,"Label":"120472-3756 via Conventional from 120473 -> 116250","Type":"Conventional","Directional":true,"Links":[{"SourceID":120473,"TargetID":116250,"Directional":true}]},{"ID":20891,"SourceStructureID":120474,"TargetStructureID":3756,"Label":"120474-3756 via Conventional from 120475 -> 116252","Type":"Conventional","Directional":true,"Links":[{"SourceID":120475,"TargetID":116252,"Directional":true}]},{"ID":20892,"SourceStructureID":120476,"TargetStructureID":3756,"Label":"120476-3756 via Conventional from 120477 -> 116267","Type":"Conventional","Directional":true,"Links":[{"SourceID":120477,"TargetID":116267,"Directional":true}]},{"ID":20893,"SourceStructureID":120478,"TargetStructureID":3756,"Label":"120478-3756 via Conventional from 120479 -> 116268","Type":"Conventional","Directional":true,"Links":[{"SourceID":120479,"TargetID":116268,"Directional":true}]},{"ID":20894,"SourceStructureID":120480,"TargetStructureID":3756,"Label":"120480-3756 via Conventional from 120481 -> 116274","Type":"Conventional","Directional":true,"Links":[{"SourceID":120481,"TargetID":116274,"Directional":true}]},{"ID":20895,"SourceStructureID":120482,"TargetStructureID":3756,"Label":"120482-3756 via Conventional from 120483 -> 116276","Type":"Conventional","Directional":true,"Links":[{"SourceID":120483,"TargetID":116276,"Directional":true}]},{"ID":20896,"SourceStructureID":120484,"TargetStructureID":3756,"Label":"120484-3756 via Conventional from 120485 -> 116282","Type":"Conventional","Directional":true,"Links":[{"SourceID":120485,"TargetID":116282,"Directional":true}]},{"ID":20897,"SourceStructureID":120489,"TargetStructureID":3756,"Label":"120489-3756 via Conventional from 120490 -> 116285","Type":"Conventional","Directional":true,"Links":[{"SourceID":120490,"TargetID":116285,"Directional":true}]},{"ID":20898,"SourceStructureID":120489,"TargetStructureID":24174,"Label":"120489-24174 via Conventional from 129115 -> 129116, 129115 -> 129118","Type":"Conventional","Directional":true,"Links":[{"SourceID":129115,"TargetID":129116,"Directional":true},{"SourceID":129115,"TargetID":129118,"Directional":true}]},{"ID":20899,"SourceStructureID":120489,"TargetStructureID":120497,"Label":"120489-120497 via Conventional from 129121 -> 129122","Type":"Conventional","Directional":true,"Links":[{"SourceID":129121,"TargetID":129122,"Directional":true}]},{"ID":20900,"SourceStructureID":120494,"TargetStructureID":3756,"Label":"120494-3756 via Conventional from 120496 -> 116288","Type":"Conventional","Directional":true,"Links":[{"SourceID":120496,"TargetID":116288,"Directional":true}]},{"ID":20901,"SourceStructureID":120494,"TargetStructureID":5598,"Label":"120494-5598 via Conventional from 120495 -> 114607","Type":"Conventional","Directional":true,"Links":[{"SourceID":120495,"TargetID":114607,"Directional":true}]},{"ID":20902,"SourceStructureID":120497,"TargetStructureID":3756,"Label":"120497-3756 via Conventional from 120498 -> 116291","Type":"Conventional","Directional":true,"Links":[{"SourceID":120498,"TargetID":116291,"Directional":true}]},{"ID":20903,"SourceStructureID":120499,"TargetStructureID":3756,"Label":"120499-3756 via Conventional from 120504 -> 116295","Type":"Conventional","Directional":true,"Links":[{"SourceID":120504,"TargetID":116295,"Directional":true}]},{"ID":20904,"SourceStructureID":120499,"TargetStructureID":120523,"Label":"120499-120523 via Conventional from 129163 -> 129164","Type":"Conventional","Directional":true,"Links":[{"SourceID":129163,"TargetID":129164,"Directional":true}]},{"ID":20905,"SourceStructureID":120507,"TargetStructureID":3756,"Label":"120507-3756 via Conventional from 120508 -> 116301","Type":"Conventional","Directional":true,"Links":[{"SourceID":120508,"TargetID":116301,"Directional":true}]},{"ID":20906,"SourceStructureID":120509,"TargetStructureID":3756,"Label":"120509-3756 via Conventional from 120512 -> 119334","Type":"Conventional","Directional":true,"Links":[{"SourceID":120512,"TargetID":119334,"Directional":true}]},{"ID":20907,"SourceStructureID":120513,"TargetStructureID":3756,"Label":"120513-3756 via Conventional from 120515 -> 119337, 129241 -> 129240","Type":"Conventional","Directional":true,"Links":[{"SourceID":120515,"TargetID":119337,"Directional":true},{"SourceID":129241,"TargetID":129240,"Directional":true}]},{"ID":20908,"SourceStructureID":120518,"TargetStructureID":3756,"Label":"120518-3756 via Conventional from 120519 -> 119339, 129236 -> 129235","Type":"Conventional","Directional":true,"Links":[{"SourceID":120519,"TargetID":119339,"Directional":true},{"SourceID":129236,"TargetID":129235,"Directional":true}]},{"ID":20909,"SourceStructureID":120521,"TargetStructureID":3756,"Label":"120521-3756 via Conventional from 120522 -> 120295","Type":"Conventional","Directional":true,"Links":[{"SourceID":120522,"TargetID":120295,"Directional":true}]},{"ID":20910,"SourceStructureID":120523,"TargetStructureID":3756,"Label":"120523-3756 via Conventional from 120524 -> 35856","Type":"Conventional","Directional":true,"Links":[{"SourceID":120524,"TargetID":35856,"Directional":true}]},{"ID":20911,"SourceStructureID":120534,"TargetStructureID":3756,"Label":"120534-3756 via Conventional from 120535 -> 37804","Type":"Conventional","Directional":true,"Links":[{"SourceID":120535,"TargetID":37804,"Directional":true}]},{"ID":20912,"SourceStructureID":120538,"TargetStructureID":3756,"Label":"120538-3756 via Conventional from 120541 -> 54432","Type":"Conventional","Directional":true,"Links":[{"SourceID":120541,"TargetID":54432,"Directional":true}]},{"ID":20913,"SourceStructureID":120542,"TargetStructureID":3756,"Label":"120542-3756 via Conventional from 120543 -> 54433","Type":"Conventional","Directional":true,"Links":[{"SourceID":120543,"TargetID":54433,"Directional":true}]},{"ID":20914,"SourceStructureID":120544,"TargetStructureID":3756,"Label":"120544-3756 via Conventional from 120545 -> 54435","Type":"Conventional","Directional":true,"Links":[{"SourceID":120545,"TargetID":54435,"Directional":true}]},{"ID":20915,"SourceStructureID":120546,"TargetStructureID":3756,"Label":"120546-3756 via Conventional from 120547 -> 54436","Type":"Conventional","Directional":true,"Links":[{"SourceID":120547,"TargetID":54436,"Directional":true}]},{"ID":20916,"SourceStructureID":120548,"TargetStructureID":3756,"Label":"120548-3756 via Conventional from 120549 -> 54447","Type":"Conventional","Directional":true,"Links":[{"SourceID":120549,"TargetID":54447,"Directional":true}]},{"ID":20917,"SourceStructureID":120552,"TargetStructureID":3756,"Label":"120552-3756 via Conventional from 120553 -> 56889","Type":"Conventional","Directional":true,"Links":[{"SourceID":120553,"TargetID":56889,"Directional":true}]},{"ID":20918,"SourceStructureID":120552,"TargetStructureID":6050,"Label":"120552-6050 via Conventional from 127434 -> 113930","Type":"Conventional","Directional":true,"Links":[{"SourceID":127434,"TargetID":113930,"Directional":true}]},{"ID":20919,"SourceStructureID":120554,"TargetStructureID":3756,"Label":"120554-3756 via Conventional from 120555 -> 56900","Type":"Conventional","Directional":true,"Links":[{"SourceID":120555,"TargetID":56900,"Directional":true}]},{"ID":20920,"SourceStructureID":120556,"TargetStructureID":3756,"Label":"120556-3756 via Conventional from 120557 -> 56903, 129372 -> 129371","Type":"Conventional","Directional":true,"Links":[{"SourceID":120557,"TargetID":56903,"Directional":true},{"SourceID":129372,"TargetID":129371,"Directional":true}]},{"ID":20921,"SourceStructureID":120559,"TargetStructureID":3756,"Label":"120559-3756 via Conventional from 120560 -> 56911","Type":"Conventional","Directional":true,"Links":[{"SourceID":120560,"TargetID":56911,"Directional":true}]},{"ID":20922,"SourceStructureID":120561,"TargetStructureID":3756,"Label":"120561-3756 via Conventional from 120562 -> 56916","Type":"Conventional","Directional":true,"Links":[{"SourceID":120562,"TargetID":56916,"Directional":true}]},{"ID":20923,"SourceStructureID":120563,"TargetStructureID":3756,"Label":"120563-3756 via Conventional from 120564 -> 56917","Type":"Conventional","Directional":true,"Links":[{"SourceID":120564,"TargetID":56917,"Directional":true}]},{"ID":20924,"SourceStructureID":120565,"TargetStructureID":3756,"Label":"120565-3756 via Conventional from 120566 -> 98367","Type":"Conventional","Directional":true,"Links":[{"SourceID":120566,"TargetID":98367,"Directional":true}]},{"ID":20925,"SourceStructureID":120630,"TargetStructureID":5531,"Label":"120630-5531 via Conventional from 120631 -> 113844","Type":"Conventional","Directional":true,"Links":[{"SourceID":120631,"TargetID":113844,"Directional":true}]},{"ID":20926,"SourceStructureID":120632,"TargetStructureID":5531,"Label":"120632-5531 via Conventional from 120633 -> 113852","Type":"Conventional","Directional":true,"Links":[{"SourceID":120633,"TargetID":113852,"Directional":true}]},{"ID":20927,"SourceStructureID":120634,"TargetStructureID":5531,"Label":"120634-5531 via Conventional from 120635 -> 113854","Type":"Conventional","Directional":true,"Links":[{"SourceID":120635,"TargetID":113854,"Directional":true}]},{"ID":20928,"SourceStructureID":120639,"TargetStructureID":5531,"Label":"120639-5531 via Conventional from 120640 -> 45216","Type":"Conventional","Directional":true,"Links":[{"SourceID":120640,"TargetID":45216,"Directional":true}]},{"ID":20929,"SourceStructureID":120674,"TargetStructureID":5531,"Label":"120674-5531 via Conventional from 120675 -> 54589","Type":"Conventional","Directional":true,"Links":[{"SourceID":120675,"TargetID":54589,"Directional":true}]},{"ID":20930,"SourceStructureID":120777,"TargetStructureID":5278,"Label":"120777-5278 via Conventional from 120778 -> 114167","Type":"Conventional","Directional":true,"Links":[{"SourceID":120778,"TargetID":114167,"Directional":true}]},{"ID":20931,"SourceStructureID":120779,"TargetStructureID":5278,"Label":"120779-5278 via Conventional from 120780 -> 114170","Type":"Conventional","Directional":true,"Links":[{"SourceID":120780,"TargetID":114170,"Directional":true}]},{"ID":20932,"SourceStructureID":120783,"TargetStructureID":5278,"Label":"120783-5278 via Conventional from 120887 -> 114183, 120927 -> 92305","Type":"Conventional","Directional":true,"Links":[{"SourceID":120887,"TargetID":114183,"Directional":true},{"SourceID":120927,"TargetID":92305,"Directional":true}]},{"ID":20933,"SourceStructureID":120885,"TargetStructureID":5278,"Label":"120885-5278 via Conventional from 120886 -> 114184","Type":"Conventional","Directional":true,"Links":[{"SourceID":120886,"TargetID":114184,"Directional":true}]},{"ID":20934,"SourceStructureID":120888,"TargetStructureID":5278,"Label":"120888-5278 via Conventional from 120889 -> 114192","Type":"Conventional","Directional":true,"Links":[{"SourceID":120889,"TargetID":114192,"Directional":true}]},{"ID":20935,"SourceStructureID":120890,"TargetStructureID":5278,"Label":"120890-5278 via Conventional from 120891 -> 114200","Type":"Conventional","Directional":true,"Links":[{"SourceID":120891,"TargetID":114200,"Directional":true}]},{"ID":20936,"SourceStructureID":120892,"TargetStructureID":5278,"Label":"120892-5278 via Conventional from 120893 -> 114514","Type":"Conventional","Directional":true,"Links":[{"SourceID":120893,"TargetID":114514,"Directional":true}]},{"ID":20937,"SourceStructureID":120894,"TargetStructureID":5278,"Label":"120894-5278 via Conventional from 120895 -> 114515","Type":"Conventional","Directional":true,"Links":[{"SourceID":120895,"TargetID":114515,"Directional":true}]},{"ID":20938,"SourceStructureID":120896,"TargetStructureID":5278,"Label":"120896-5278 via Conventional from 120897 -> 114519","Type":"Conventional","Directional":true,"Links":[{"SourceID":120897,"TargetID":114519,"Directional":true}]},{"ID":20939,"SourceStructureID":120898,"TargetStructureID":5278,"Label":"120898-5278 via Conventional from 120900 -> 114522","Type":"Conventional","Directional":true,"Links":[{"SourceID":120900,"TargetID":114522,"Directional":true}]},{"ID":20940,"SourceStructureID":120901,"TargetStructureID":5278,"Label":"120901-5278 via Conventional from 120902 -> 114523","Type":"Conventional","Directional":true,"Links":[{"SourceID":120902,"TargetID":114523,"Directional":true}]},{"ID":20941,"SourceStructureID":120903,"TargetStructureID":5278,"Label":"120903-5278 via Conventional from 120904 -> 114528","Type":"Conventional","Directional":true,"Links":[{"SourceID":120904,"TargetID":114528,"Directional":true}]},{"ID":20942,"SourceStructureID":120906,"TargetStructureID":5278,"Label":"120906-5278 via Conventional from 120907 -> 50286, 120908 -> 50286","Type":"Conventional","Directional":true,"Links":[{"SourceID":120907,"TargetID":50286,"Directional":true},{"SourceID":120908,"TargetID":50286,"Directional":true}]},{"ID":20943,"SourceStructureID":120909,"TargetStructureID":5278,"Label":"120909-5278 via Conventional from 120910 -> 50288","Type":"Conventional","Directional":true,"Links":[{"SourceID":120910,"TargetID":50288,"Directional":true}]},{"ID":20944,"SourceStructureID":120911,"TargetStructureID":5278,"Label":"120911-5278 via Conventional from 120912 -> 50289, 120912 -> 92397","Type":"Conventional","Directional":true,"Links":[{"SourceID":120912,"TargetID":50289,"Directional":true},{"SourceID":120912,"TargetID":92397,"Directional":true}]},{"ID":20945,"SourceStructureID":120913,"TargetStructureID":5278,"Label":"120913-5278 via Conventional from 120914 -> 50290","Type":"Conventional","Directional":true,"Links":[{"SourceID":120914,"TargetID":50290,"Directional":true}]},{"ID":20946,"SourceStructureID":120915,"TargetStructureID":5278,"Label":"120915-5278 via Conventional from 120916 -> 50291","Type":"Conventional","Directional":true,"Links":[{"SourceID":120916,"TargetID":50291,"Directional":true}]},{"ID":20947,"SourceStructureID":120917,"TargetStructureID":5278,"Label":"120917-5278 via Conventional from 120919 -> 53692","Type":"Conventional","Directional":true,"Links":[{"SourceID":120919,"TargetID":53692,"Directional":true}]},{"ID":20948,"SourceStructureID":120920,"TargetStructureID":5278,"Label":"120920-5278 via Conventional from 120921 -> 92020","Type":"Conventional","Directional":true,"Links":[{"SourceID":120921,"TargetID":92020,"Directional":true}]},{"ID":20949,"SourceStructureID":120923,"TargetStructureID":5278,"Label":"120923-5278 via Conventional from 120924 -> 92298","Type":"Conventional","Directional":true,"Links":[{"SourceID":120924,"TargetID":92298,"Directional":true}]},{"ID":20950,"SourceStructureID":120925,"TargetStructureID":5278,"Label":"120925-5278 via Conventional from 120926 -> 92299","Type":"Conventional","Directional":true,"Links":[{"SourceID":120926,"TargetID":92299,"Directional":true}]},{"ID":20951,"SourceStructureID":121009,"TargetStructureID":906,"Label":"121009-906 via Conventional from 121010 -> 121008","Type":"Conventional","Directional":true,"Links":[{"SourceID":121010,"TargetID":121008,"Directional":true}]},{"ID":20952,"SourceStructureID":121082,"TargetStructureID":6050,"Label":"121082-6050 via Conventional from 121084 -> 98388","Type":"Conventional","Directional":true,"Links":[{"SourceID":121084,"TargetID":98388,"Directional":true}]},{"ID":20953,"SourceStructureID":121111,"TargetStructureID":5297,"Label":"121111-5297 via Conventional from 121112 -> 103212","Type":"Conventional","Directional":true,"Links":[{"SourceID":121112,"TargetID":103212,"Directional":true}]},{"ID":20954,"SourceStructureID":121113,"TargetStructureID":5297,"Label":"121113-5297 via Conventional from 121114 -> 103213","Type":"Conventional","Directional":true,"Links":[{"SourceID":121114,"TargetID":103213,"Directional":true}]},{"ID":20955,"SourceStructureID":121117,"TargetStructureID":5297,"Label":"121117-5297 via Conventional from 121118 -> 113611","Type":"Conventional","Directional":true,"Links":[{"SourceID":121118,"TargetID":113611,"Directional":true}]},{"ID":20956,"SourceStructureID":121121,"TargetStructureID":5297,"Label":"121121-5297 via Conventional from 121122 -> 116321","Type":"Conventional","Directional":true,"Links":[{"SourceID":121122,"TargetID":116321,"Directional":true}]},{"ID":20957,"SourceStructureID":121123,"TargetStructureID":5297,"Label":"121123-5297 via Conventional from 121125 -> 116322","Type":"Conventional","Directional":true,"Links":[{"SourceID":121125,"TargetID":116322,"Directional":true}]},{"ID":20958,"SourceStructureID":121265,"TargetStructureID":121265,"Label":"121265-121265 via Ribbon Synapse from 121267 -> 121268","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121267,"TargetID":121268,"Directional":true}]},{"ID":20959,"SourceStructureID":121282,"TargetStructureID":5284,"Label":"121282-5284 via Conventional from 121284 -> 113421","Type":"Conventional","Directional":true,"Links":[{"SourceID":121284,"TargetID":113421,"Directional":true}]},{"ID":20960,"SourceStructureID":121286,"TargetStructureID":5297,"Label":"121286-5297 via Conventional from 121287 -> 116335","Type":"Conventional","Directional":true,"Links":[{"SourceID":121287,"TargetID":116335,"Directional":true}]},{"ID":20961,"SourceStructureID":121288,"TargetStructureID":5297,"Label":"121288-5297 via Conventional from 121289 -> 116344","Type":"Conventional","Directional":true,"Links":[{"SourceID":121289,"TargetID":116344,"Directional":true}]},{"ID":20962,"SourceStructureID":121288,"TargetStructureID":5405,"Label":"121288-5405 via Conventional from 121291 -> 11185","Type":"Conventional","Directional":true,"Links":[{"SourceID":121291,"TargetID":11185,"Directional":true}]},{"ID":20963,"SourceStructureID":121292,"TargetStructureID":5297,"Label":"121292-5297 via Conventional from 121293 -> 116345","Type":"Conventional","Directional":true,"Links":[{"SourceID":121293,"TargetID":116345,"Directional":true}]},{"ID":20964,"SourceStructureID":121294,"TargetStructureID":5297,"Label":"121294-5297 via Conventional from 121295 -> 116349","Type":"Conventional","Directional":true,"Links":[{"SourceID":121295,"TargetID":116349,"Directional":true}]},{"ID":20965,"SourceStructureID":121303,"TargetStructureID":5297,"Label":"121303-5297 via Conventional from 121304 -> 116350","Type":"Conventional","Directional":true,"Links":[{"SourceID":121304,"TargetID":116350,"Directional":true}]},{"ID":20966,"SourceStructureID":121305,"TargetStructureID":5283,"Label":"121305-5283 via Conventional from 123765 -> 22383","Type":"Conventional","Directional":true,"Links":[{"SourceID":123765,"TargetID":22383,"Directional":true}]},{"ID":20967,"SourceStructureID":121305,"TargetStructureID":5297,"Label":"121305-5297 via Conventional from 121306 -> 116357","Type":"Conventional","Directional":true,"Links":[{"SourceID":121306,"TargetID":116357,"Directional":true}]},{"ID":20968,"SourceStructureID":121307,"TargetStructureID":5297,"Label":"121307-5297 via Conventional from 121308 -> 116359","Type":"Conventional","Directional":true,"Links":[{"SourceID":121308,"TargetID":116359,"Directional":true}]},{"ID":20969,"SourceStructureID":121309,"TargetStructureID":5297,"Label":"121309-5297 via Conventional from 121310 -> 116419","Type":"Conventional","Directional":true,"Links":[{"SourceID":121310,"TargetID":116419,"Directional":true}]},{"ID":20970,"SourceStructureID":121313,"TargetStructureID":5297,"Label":"121313-5297 via Conventional from 121314 -> 116421","Type":"Conventional","Directional":true,"Links":[{"SourceID":121314,"TargetID":116421,"Directional":true}]},{"ID":20971,"SourceStructureID":121315,"TargetStructureID":5297,"Label":"121315-5297 via Conventional from 121319 -> 116426","Type":"Conventional","Directional":true,"Links":[{"SourceID":121319,"TargetID":116426,"Directional":true}]},{"ID":20972,"SourceStructureID":121321,"TargetStructureID":5297,"Label":"121321-5297 via Conventional from 121322 -> 116428","Type":"Conventional","Directional":true,"Links":[{"SourceID":121322,"TargetID":116428,"Directional":true}]},{"ID":20973,"SourceStructureID":121323,"TargetStructureID":5297,"Label":"121323-5297 via Conventional from 121324 -> 116438","Type":"Conventional","Directional":true,"Links":[{"SourceID":121324,"TargetID":116438,"Directional":true}]},{"ID":20974,"SourceStructureID":121325,"TargetStructureID":5297,"Label":"121325-5297 via Conventional from 121326 -> 116440","Type":"Conventional","Directional":true,"Links":[{"SourceID":121326,"TargetID":116440,"Directional":true}]},{"ID":20975,"SourceStructureID":121331,"TargetStructureID":5297,"Label":"121331-5297 via Conventional from 121332 -> 116442","Type":"Conventional","Directional":true,"Links":[{"SourceID":121332,"TargetID":116442,"Directional":true}]},{"ID":20976,"SourceStructureID":121336,"TargetStructureID":5297,"Label":"121336-5297 via Conventional from 121338 -> 116449","Type":"Conventional","Directional":true,"Links":[{"SourceID":121338,"TargetID":116449,"Directional":true}]},{"ID":20977,"SourceStructureID":121339,"TargetStructureID":5297,"Label":"121339-5297 via Conventional from 121340 -> 116468","Type":"Conventional","Directional":true,"Links":[{"SourceID":121340,"TargetID":116468,"Directional":true}]},{"ID":20978,"SourceStructureID":121343,"TargetStructureID":5297,"Label":"121343-5297 via Conventional from 121344 -> 116469","Type":"Conventional","Directional":true,"Links":[{"SourceID":121344,"TargetID":116469,"Directional":true}]},{"ID":20979,"SourceStructureID":121345,"TargetStructureID":5297,"Label":"121345-5297 via Conventional from 121346 -> 116471","Type":"Conventional","Directional":true,"Links":[{"SourceID":121346,"TargetID":116471,"Directional":true}]},{"ID":20980,"SourceStructureID":121348,"TargetStructureID":5297,"Label":"121348-5297 via Conventional from 121352 -> 116482","Type":"Conventional","Directional":true,"Links":[{"SourceID":121352,"TargetID":116482,"Directional":true}]},{"ID":20981,"SourceStructureID":121353,"TargetStructureID":5297,"Label":"121353-5297 via Conventional from 121354 -> 116484","Type":"Conventional","Directional":true,"Links":[{"SourceID":121354,"TargetID":116484,"Directional":true}]},{"ID":20982,"SourceStructureID":121356,"TargetStructureID":5297,"Label":"121356-5297 via Conventional from 121357 -> 116500","Type":"Conventional","Directional":true,"Links":[{"SourceID":121357,"TargetID":116500,"Directional":true}]},{"ID":20983,"SourceStructureID":121362,"TargetStructureID":5297,"Label":"121362-5297 via Conventional from 121364 -> 116516","Type":"Conventional","Directional":true,"Links":[{"SourceID":121364,"TargetID":116516,"Directional":true}]},{"ID":20984,"SourceStructureID":121362,"TargetStructureID":6050,"Label":"121362-6050 via Conventional from 121363 -> 114244","Type":"Conventional","Directional":true,"Links":[{"SourceID":121363,"TargetID":114244,"Directional":true}]},{"ID":20985,"SourceStructureID":121365,"TargetStructureID":5297,"Label":"121365-5297 via Conventional from 121366 -> 116596","Type":"Conventional","Directional":true,"Links":[{"SourceID":121366,"TargetID":116596,"Directional":true}]},{"ID":20986,"SourceStructureID":121367,"TargetStructureID":5297,"Label":"121367-5297 via Conventional from 121368 -> 116606","Type":"Conventional","Directional":true,"Links":[{"SourceID":121368,"TargetID":116606,"Directional":true}]},{"ID":20987,"SourceStructureID":121369,"TargetStructureID":142,"Label":"121369-142 via Conventional from 121370 -> 30719","Type":"Conventional","Directional":true,"Links":[{"SourceID":121370,"TargetID":30719,"Directional":true}]},{"ID":20988,"SourceStructureID":121369,"TargetStructureID":5297,"Label":"121369-5297 via Conventional from 121371 -> 116607","Type":"Conventional","Directional":true,"Links":[{"SourceID":121371,"TargetID":116607,"Directional":true}]},{"ID":20989,"SourceStructureID":121372,"TargetStructureID":5297,"Label":"121372-5297 via Conventional from 121373 -> 116609","Type":"Conventional","Directional":true,"Links":[{"SourceID":121373,"TargetID":116609,"Directional":true}]},{"ID":20990,"SourceStructureID":121375,"TargetStructureID":5297,"Label":"121375-5297 via Conventional from 121377 -> 116611","Type":"Conventional","Directional":true,"Links":[{"SourceID":121377,"TargetID":116611,"Directional":true}]},{"ID":20991,"SourceStructureID":121380,"TargetStructureID":5297,"Label":"121380-5297 via Conventional from 121381 -> 116640","Type":"Conventional","Directional":true,"Links":[{"SourceID":121381,"TargetID":116640,"Directional":true}]},{"ID":20992,"SourceStructureID":121382,"TargetStructureID":5297,"Label":"121382-5297 via Conventional from 121384 -> 116642","Type":"Conventional","Directional":true,"Links":[{"SourceID":121384,"TargetID":116642,"Directional":true}]},{"ID":20993,"SourceStructureID":121387,"TargetStructureID":5297,"Label":"121387-5297 via Conventional from 121390 -> 116655","Type":"Conventional","Directional":true,"Links":[{"SourceID":121390,"TargetID":116655,"Directional":true}]},{"ID":20994,"SourceStructureID":121394,"TargetStructureID":5297,"Label":"121394-5297 via Conventional from 121396 -> 116666, 121410 -> 116695","Type":"Conventional","Directional":true,"Links":[{"SourceID":121396,"TargetID":116666,"Directional":true},{"SourceID":121410,"TargetID":116695,"Directional":true}]},{"ID":20995,"SourceStructureID":121397,"TargetStructureID":5297,"Label":"121397-5297 via Conventional from 121400 -> 116669","Type":"Conventional","Directional":true,"Links":[{"SourceID":121400,"TargetID":116669,"Directional":true}]},{"ID":20996,"SourceStructureID":121404,"TargetStructureID":5297,"Label":"121404-5297 via Conventional from 121406 -> 116674","Type":"Conventional","Directional":true,"Links":[{"SourceID":121406,"TargetID":116674,"Directional":true}]},{"ID":20997,"SourceStructureID":121407,"TargetStructureID":5297,"Label":"121407-5297 via Conventional from 121408 -> 116694","Type":"Conventional","Directional":true,"Links":[{"SourceID":121408,"TargetID":116694,"Directional":true}]},{"ID":20998,"SourceStructureID":121411,"TargetStructureID":5297,"Label":"121411-5297 via Conventional from 121412 -> 37622","Type":"Conventional","Directional":true,"Links":[{"SourceID":121412,"TargetID":37622,"Directional":true}]},{"ID":20999,"SourceStructureID":121413,"TargetStructureID":5297,"Label":"121413-5297 via Conventional from 121414 -> 37623","Type":"Conventional","Directional":true,"Links":[{"SourceID":121414,"TargetID":37623,"Directional":true}]},{"ID":21000,"SourceStructureID":121415,"TargetStructureID":5297,"Label":"121415-5297 via Conventional from 121418 -> 37666","Type":"Conventional","Directional":true,"Links":[{"SourceID":121418,"TargetID":37666,"Directional":true}]},{"ID":21001,"SourceStructureID":121420,"TargetStructureID":5297,"Label":"121420-5297 via Conventional from 121421 -> 39414","Type":"Conventional","Directional":true,"Links":[{"SourceID":121421,"TargetID":39414,"Directional":true}]},{"ID":21002,"SourceStructureID":121422,"TargetStructureID":5292,"Label":"121422-5292 via Conventional from 121424 -> 54394","Type":"Conventional","Directional":true,"Links":[{"SourceID":121424,"TargetID":54394,"Directional":true}]},{"ID":21003,"SourceStructureID":121422,"TargetStructureID":5297,"Label":"121422-5297 via Conventional from 121423 -> 39418","Type":"Conventional","Directional":true,"Links":[{"SourceID":121423,"TargetID":39418,"Directional":true}]},{"ID":21004,"SourceStructureID":121432,"TargetStructureID":5297,"Label":"121432-5297 via Conventional from 121435 -> 39434","Type":"Conventional","Directional":true,"Links":[{"SourceID":121435,"TargetID":39434,"Directional":true}]},{"ID":21005,"SourceStructureID":121437,"TargetStructureID":5297,"Label":"121437-5297 via Conventional from 121439 -> 40174","Type":"Conventional","Directional":true,"Links":[{"SourceID":121439,"TargetID":40174,"Directional":true}]},{"ID":21006,"SourceStructureID":121444,"TargetStructureID":5297,"Label":"121444-5297 via Conventional from 121446 -> 42720","Type":"Conventional","Directional":true,"Links":[{"SourceID":121446,"TargetID":42720,"Directional":true}]},{"ID":21007,"SourceStructureID":121448,"TargetStructureID":5297,"Label":"121448-5297 via Conventional from 121451 -> 42722","Type":"Conventional","Directional":true,"Links":[{"SourceID":121451,"TargetID":42722,"Directional":true}]},{"ID":21008,"SourceStructureID":121452,"TargetStructureID":5297,"Label":"121452-5297 via Conventional from 121453 -> 50321","Type":"Conventional","Directional":true,"Links":[{"SourceID":121453,"TargetID":50321,"Directional":true}]},{"ID":21009,"SourceStructureID":121454,"TargetStructureID":5297,"Label":"121454-5297 via Conventional from 121456 -> 50322","Type":"Conventional","Directional":true,"Links":[{"SourceID":121456,"TargetID":50322,"Directional":true}]},{"ID":21010,"SourceStructureID":121457,"TargetStructureID":5297,"Label":"121457-5297 via Conventional from 121458 -> 50323","Type":"Conventional","Directional":true,"Links":[{"SourceID":121458,"TargetID":50323,"Directional":true}]},{"ID":21011,"SourceStructureID":121459,"TargetStructureID":5297,"Label":"121459-5297 via Conventional from 121460 -> 53700","Type":"Conventional","Directional":true,"Links":[{"SourceID":121460,"TargetID":53700,"Directional":true}]},{"ID":21012,"SourceStructureID":121461,"TargetStructureID":5297,"Label":"121461-5297 via Conventional from 121462 -> 53701","Type":"Conventional","Directional":true,"Links":[{"SourceID":121462,"TargetID":53701,"Directional":true}]},{"ID":21013,"SourceStructureID":121463,"TargetStructureID":5297,"Label":"121463-5297 via Conventional from 121464 -> 56808","Type":"Conventional","Directional":true,"Links":[{"SourceID":121464,"TargetID":56808,"Directional":true}]},{"ID":21014,"SourceStructureID":121465,"TargetStructureID":5297,"Label":"121465-5297 via Conventional from 121466 -> 56809","Type":"Conventional","Directional":true,"Links":[{"SourceID":121466,"TargetID":56809,"Directional":true}]},{"ID":21015,"SourceStructureID":121467,"TargetStructureID":5297,"Label":"121467-5297 via Conventional from 121468 -> 56811","Type":"Conventional","Directional":true,"Links":[{"SourceID":121468,"TargetID":56811,"Directional":true}]},{"ID":21016,"SourceStructureID":121470,"TargetStructureID":5297,"Label":"121470-5297 via Conventional from 121471 -> 92303","Type":"Conventional","Directional":true,"Links":[{"SourceID":121471,"TargetID":92303,"Directional":true}]},{"ID":21017,"SourceStructureID":121472,"TargetStructureID":5297,"Label":"121472-5297 via Conventional from 121476 -> 93239","Type":"Conventional","Directional":true,"Links":[{"SourceID":121476,"TargetID":93239,"Directional":true}]},{"ID":21018,"SourceStructureID":121477,"TargetStructureID":5297,"Label":"121477-5297 via Conventional from 121483 -> 93240","Type":"Conventional","Directional":true,"Links":[{"SourceID":121483,"TargetID":93240,"Directional":true}]},{"ID":21019,"SourceStructureID":121484,"TargetStructureID":5297,"Label":"121484-5297 via Conventional from 121485 -> 93244","Type":"Conventional","Directional":true,"Links":[{"SourceID":121485,"TargetID":93244,"Directional":true}]},{"ID":21020,"SourceStructureID":121486,"TargetStructureID":5297,"Label":"121486-5297 via Conventional from 121487 -> 93245, 121535 -> 98344","Type":"Conventional","Directional":true,"Links":[{"SourceID":121487,"TargetID":93245,"Directional":true},{"SourceID":121535,"TargetID":98344,"Directional":true}]},{"ID":21021,"SourceStructureID":121488,"TargetStructureID":5297,"Label":"121488-5297 via Conventional from 121489 -> 93254","Type":"Conventional","Directional":true,"Links":[{"SourceID":121489,"TargetID":93254,"Directional":true}]},{"ID":21022,"SourceStructureID":121490,"TargetStructureID":5297,"Label":"121490-5297 via Conventional from 121492 -> 98255, 121503 -> 98282","Type":"Conventional","Directional":true,"Links":[{"SourceID":121492,"TargetID":98255,"Directional":true},{"SourceID":121503,"TargetID":98282,"Directional":true}]},{"ID":21023,"SourceStructureID":121499,"TargetStructureID":5297,"Label":"121499-5297 via Conventional from 121500 -> 98274","Type":"Conventional","Directional":true,"Links":[{"SourceID":121500,"TargetID":98274,"Directional":true}]},{"ID":21024,"SourceStructureID":121501,"TargetStructureID":5297,"Label":"121501-5297 via Conventional from 121502 -> 98275","Type":"Conventional","Directional":true,"Links":[{"SourceID":121502,"TargetID":98275,"Directional":true}]},{"ID":21025,"SourceStructureID":121511,"TargetStructureID":5297,"Label":"121511-5297 via Conventional from 121514 -> 98294, 121515 -> 98294","Type":"Conventional","Directional":true,"Links":[{"SourceID":121514,"TargetID":98294,"Directional":true},{"SourceID":121515,"TargetID":98294,"Directional":true}]},{"ID":21026,"SourceStructureID":121516,"TargetStructureID":5297,"Label":"121516-5297 via Conventional from 121518 -> 98296","Type":"Conventional","Directional":true,"Links":[{"SourceID":121518,"TargetID":98296,"Directional":true}]},{"ID":21027,"SourceStructureID":121519,"TargetStructureID":5297,"Label":"121519-5297 via Conventional from 121521 -> 98299","Type":"Conventional","Directional":true,"Links":[{"SourceID":121521,"TargetID":98299,"Directional":true}]},{"ID":21028,"SourceStructureID":121522,"TargetStructureID":5297,"Label":"121522-5297 via Conventional from 121523 -> 98301","Type":"Conventional","Directional":true,"Links":[{"SourceID":121523,"TargetID":98301,"Directional":true}]},{"ID":21029,"SourceStructureID":121524,"TargetStructureID":5297,"Label":"121524-5297 via Conventional from 121525 -> 98313","Type":"Conventional","Directional":true,"Links":[{"SourceID":121525,"TargetID":98313,"Directional":true}]},{"ID":21030,"SourceStructureID":121526,"TargetStructureID":5297,"Label":"121526-5297 via Conventional from 121527 -> 98332","Type":"Conventional","Directional":true,"Links":[{"SourceID":121527,"TargetID":98332,"Directional":true}]},{"ID":21031,"SourceStructureID":121530,"TargetStructureID":5297,"Label":"121530-5297 via Conventional from 121531 -> 98342","Type":"Conventional","Directional":true,"Links":[{"SourceID":121531,"TargetID":98342,"Directional":true}]},{"ID":21032,"SourceStructureID":121536,"TargetStructureID":5297,"Label":"121536-5297 via Conventional from 121537 -> 98472","Type":"Conventional","Directional":true,"Links":[{"SourceID":121537,"TargetID":98472,"Directional":true}]},{"ID":21033,"SourceStructureID":121663,"TargetStructureID":598,"Label":"121663-598 via Ribbon Synapse from 121665 -> 38790","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121665,"TargetID":38790,"Directional":true}]},{"ID":21034,"SourceStructureID":121946,"TargetStructureID":121948,"Label":"121946-121948 via Conventional from 121947 -> 121949","Type":"Conventional","Directional":true,"Links":[{"SourceID":121947,"TargetID":121949,"Directional":true}]},{"ID":21035,"SourceStructureID":121952,"TargetStructureID":75130,"Label":"121952-75130 via Conventional from 121953 -> 121951","Type":"Conventional","Directional":true,"Links":[{"SourceID":121953,"TargetID":121951,"Directional":true}]},{"ID":21036,"SourceStructureID":121955,"TargetStructureID":75130,"Label":"121955-75130 via Conventional from 121956 -> 121954","Type":"Conventional","Directional":true,"Links":[{"SourceID":121956,"TargetID":121954,"Directional":true}]},{"ID":21037,"SourceStructureID":121958,"TargetStructureID":75130,"Label":"121958-75130 via Conventional from 121959 -> 121957","Type":"Conventional","Directional":true,"Links":[{"SourceID":121959,"TargetID":121957,"Directional":true}]},{"ID":21038,"SourceStructureID":121961,"TargetStructureID":75130,"Label":"121961-75130 via Conventional from 121962 -> 121960","Type":"Conventional","Directional":true,"Links":[{"SourceID":121962,"TargetID":121960,"Directional":true}]},{"ID":21039,"SourceStructureID":121967,"TargetStructureID":75130,"Label":"121967-75130 via Conventional from 121968 -> 121966","Type":"Conventional","Directional":true,"Links":[{"SourceID":121968,"TargetID":121966,"Directional":true}]},{"ID":21040,"SourceStructureID":121975,"TargetStructureID":35164,"Label":"121975-35164 via Conventional from 121976 -> 45636","Type":"Conventional","Directional":true,"Links":[{"SourceID":121976,"TargetID":45636,"Directional":true}]},{"ID":21041,"SourceStructureID":122073,"TargetStructureID":13525,"Label":"122073-13525 via Conventional from 122074 -> 122075","Type":"Conventional","Directional":true,"Links":[{"SourceID":122074,"TargetID":122075,"Directional":true}]},{"ID":21042,"SourceStructureID":122081,"TargetStructureID":43205,"Label":"122081-43205 via Ribbon Synapse from 122082 -> 122080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122082,"TargetID":122080,"Directional":true}]},{"ID":21043,"SourceStructureID":122091,"TargetStructureID":42966,"Label":"122091-42966 via Ribbon Synapse from 122100 -> 122099","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122100,"TargetID":122099,"Directional":true}]},{"ID":21044,"SourceStructureID":122091,"TargetStructureID":42971,"Label":"122091-42971 via Ribbon Synapse from 122092 -> 122090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122092,"TargetID":122090,"Directional":true}]},{"ID":21045,"SourceStructureID":122104,"TargetStructureID":13159,"Label":"122104-13159 via Ribbon Synapse from 122105 -> 20788","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122105,"TargetID":20788,"Directional":true}]},{"ID":21046,"SourceStructureID":122207,"TargetStructureID":7134,"Label":"122207-7134 via Ribbon Synapse from 122208 -> 122209","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122208,"TargetID":122209,"Directional":true}]},{"ID":21047,"SourceStructureID":122242,"TargetStructureID":7134,"Label":"122242-7134 via Ribbon Synapse from 122243 -> 122241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122243,"TargetID":122241,"Directional":true}]},{"ID":21048,"SourceStructureID":122459,"TargetStructureID":3257,"Label":"122459-3257 via Conventional from 122462 -> 8238","Type":"Conventional","Directional":true,"Links":[{"SourceID":122462,"TargetID":8238,"Directional":true}]},{"ID":21049,"SourceStructureID":122459,"TargetStructureID":4570,"Label":"122459-4570 via Conventional from 122460 -> 10671","Type":"Conventional","Directional":true,"Links":[{"SourceID":122460,"TargetID":10671,"Directional":true}]},{"ID":21050,"SourceStructureID":122463,"TargetStructureID":906,"Label":"122463-906 via Ribbon Synapse from 122464 -> 24115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122464,"TargetID":24115,"Directional":true}]},{"ID":21051,"SourceStructureID":122469,"TargetStructureID":4850,"Label":"122469-4850 via Conventional from 122473 -> 14538","Type":"Conventional","Directional":true,"Links":[{"SourceID":122473,"TargetID":14538,"Directional":true}]},{"ID":21052,"SourceStructureID":122488,"TargetStructureID":18693,"Label":"122488-18693 via Ribbon Synapse from 122491 -> 18823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122491,"TargetID":18823,"Directional":true}]},{"ID":21053,"SourceStructureID":122705,"TargetStructureID":179,"Label":"122705-179 via Conventional from 122706 -> 103809","Type":"Conventional","Directional":true,"Links":[{"SourceID":122706,"TargetID":103809,"Directional":true}]},{"ID":21054,"SourceStructureID":122707,"TargetStructureID":179,"Label":"122707-179 via Conventional from 122708 -> 103810","Type":"Conventional","Directional":true,"Links":[{"SourceID":122708,"TargetID":103810,"Directional":true}]},{"ID":21055,"SourceStructureID":122707,"TargetStructureID":122711,"Label":"122707-122711 via Conventional from 122709 -> 122713","Type":"Conventional","Directional":true,"Links":[{"SourceID":122709,"TargetID":122713,"Directional":true}]},{"ID":21056,"SourceStructureID":122707,"TargetStructureID":122716,"Label":"122707-122716 via Conventional from 122719 -> 122720","Type":"Conventional","Directional":true,"Links":[{"SourceID":122719,"TargetID":122720,"Directional":true}]},{"ID":21057,"SourceStructureID":122711,"TargetStructureID":122707,"Label":"122711-122707 via Ribbon Synapse from 122712 -> 122710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122712,"TargetID":122710,"Directional":true}]},{"ID":21058,"SourceStructureID":122716,"TargetStructureID":122707,"Label":"122716-122707 via Ribbon Synapse from 122717 -> 122715","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122717,"TargetID":122715,"Directional":true}]},{"ID":21059,"SourceStructureID":122750,"TargetStructureID":8720,"Label":"122750-8720 via Ribbon Synapse from 63458 -> 63456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63458,"TargetID":63456,"Directional":true}]},{"ID":21060,"SourceStructureID":122756,"TargetStructureID":5600,"Label":"122756-5600 via Conventional from 122757 -> 122755","Type":"Conventional","Directional":true,"Links":[{"SourceID":122757,"TargetID":122755,"Directional":true}]},{"ID":21061,"SourceStructureID":122760,"TargetStructureID":5600,"Label":"122760-5600 via Conventional from 122766 -> 122767","Type":"Conventional","Directional":true,"Links":[{"SourceID":122766,"TargetID":122767,"Directional":true}]},{"ID":21062,"SourceStructureID":122768,"TargetStructureID":10412,"Label":"122768-10412 via Conventional from 122773 -> 122774","Type":"Conventional","Directional":true,"Links":[{"SourceID":122773,"TargetID":122774,"Directional":true}]},{"ID":21063,"SourceStructureID":122777,"TargetStructureID":122768,"Label":"122777-122768 via Conventional from 122778 -> 122779","Type":"Conventional","Directional":true,"Links":[{"SourceID":122778,"TargetID":122779,"Directional":true}]},{"ID":21064,"SourceStructureID":122801,"TargetStructureID":122768,"Label":"122801-122768 via Conventional from 122802 -> 122800","Type":"Conventional","Directional":true,"Links":[{"SourceID":122802,"TargetID":122800,"Directional":true}]},{"ID":21065,"SourceStructureID":122803,"TargetStructureID":122801,"Label":"122803-122801 via Conventional from 122804 -> 122805","Type":"Conventional","Directional":true,"Links":[{"SourceID":122804,"TargetID":122805,"Directional":true}]},{"ID":21066,"SourceStructureID":122829,"TargetStructureID":5283,"Label":"122829-5283 via Postsynapse from 122879 -> 28099","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":122879,"TargetID":28099,"Directional":true}]},{"ID":21067,"SourceStructureID":122849,"TargetStructureID":5374,"Label":"122849-5374 via Ribbon Synapse from 130523 -> 130522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130523,"TargetID":130522,"Directional":true}]},{"ID":21068,"SourceStructureID":122849,"TargetStructureID":7147,"Label":"122849-7147 via Ribbon Synapse from 130523 -> 130521","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130523,"TargetID":130521,"Directional":true}]},{"ID":21069,"SourceStructureID":122849,"TargetStructureID":122829,"Label":"122849-122829 via Ribbon Synapse from 122850 -> 122845, 122855 -> 122854, 122857 -> 122858","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122850,"TargetID":122845,"Directional":true},{"SourceID":122855,"TargetID":122854,"Directional":true},{"SourceID":122857,"TargetID":122858,"Directional":true}]},{"ID":21070,"SourceStructureID":122868,"TargetStructureID":122829,"Label":"122868-122829 via Ribbon Synapse from 132408 -> 132407, 132411 -> 132412, 132413 -> 132414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132408,"TargetID":132407,"Directional":true},{"SourceID":132411,"TargetID":132412,"Directional":true},{"SourceID":132413,"TargetID":132414,"Directional":true}]},{"ID":21071,"SourceStructureID":122893,"TargetStructureID":7114,"Label":"122893-7114 via Ribbon Synapse from 122894 -> 122896, 122895 -> 122897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122894,"TargetID":122896,"Directional":true},{"SourceID":122895,"TargetID":122897,"Directional":true}]},{"ID":21072,"SourceStructureID":122930,"TargetStructureID":5394,"Label":"122930-5394 via Conventional from 122931 -> 77081","Type":"Conventional","Directional":true,"Links":[{"SourceID":122931,"TargetID":77081,"Directional":true}]},{"ID":21073,"SourceStructureID":122930,"TargetStructureID":6122,"Label":"122930-6122 via Conventional from 122935 -> 122936","Type":"Conventional","Directional":true,"Links":[{"SourceID":122935,"TargetID":122936,"Directional":true}]},{"ID":21074,"SourceStructureID":122930,"TargetStructureID":122933,"Label":"122930-122933 via Conventional from 122932 -> 122934","Type":"Conventional","Directional":true,"Links":[{"SourceID":122932,"TargetID":122934,"Directional":true}]},{"ID":21075,"SourceStructureID":123146,"TargetStructureID":519,"Label":"123146-519 via Conventional from 123147 -> 26764","Type":"Conventional","Directional":true,"Links":[{"SourceID":123147,"TargetID":26764,"Directional":true}]},{"ID":21076,"SourceStructureID":123181,"TargetStructureID":8749,"Label":"123181-8749 via Conventional from 123182 -> 8799","Type":"Conventional","Directional":true,"Links":[{"SourceID":123182,"TargetID":8799,"Directional":true}]},{"ID":21077,"SourceStructureID":123183,"TargetStructureID":8749,"Label":"123183-8749 via Conventional from 123184 -> 8800","Type":"Conventional","Directional":true,"Links":[{"SourceID":123184,"TargetID":8800,"Directional":true}]},{"ID":21078,"SourceStructureID":123186,"TargetStructureID":8749,"Label":"123186-8749 via Conventional from 123187 -> 8802","Type":"Conventional","Directional":true,"Links":[{"SourceID":123187,"TargetID":8802,"Directional":true}]},{"ID":21079,"SourceStructureID":123189,"TargetStructureID":514,"Label":"123189-514 via Conventional from 123190 -> 123191","Type":"Conventional","Directional":true,"Links":[{"SourceID":123190,"TargetID":123191,"Directional":true}]},{"ID":21080,"SourceStructureID":123192,"TargetStructureID":8749,"Label":"123192-8749 via Conventional from 123193 -> 8846","Type":"Conventional","Directional":true,"Links":[{"SourceID":123193,"TargetID":8846,"Directional":true}]},{"ID":21081,"SourceStructureID":123194,"TargetStructureID":8749,"Label":"123194-8749 via Conventional from 123195 -> 123196","Type":"Conventional","Directional":true,"Links":[{"SourceID":123195,"TargetID":123196,"Directional":true}]},{"ID":21082,"SourceStructureID":123197,"TargetStructureID":8749,"Label":"123197-8749 via Conventional from 123198 -> 8859","Type":"Conventional","Directional":true,"Links":[{"SourceID":123198,"TargetID":8859,"Directional":true}]},{"ID":21083,"SourceStructureID":123199,"TargetStructureID":8749,"Label":"123199-8749 via Conventional from 123200 -> 8868","Type":"Conventional","Directional":true,"Links":[{"SourceID":123200,"TargetID":8868,"Directional":true}]},{"ID":21084,"SourceStructureID":123201,"TargetStructureID":8749,"Label":"123201-8749 via Conventional from 123203 -> 123204","Type":"Conventional","Directional":true,"Links":[{"SourceID":123203,"TargetID":123204,"Directional":true}]},{"ID":21085,"SourceStructureID":123209,"TargetStructureID":8749,"Label":"123209-8749 via Conventional from 123210 -> 8848","Type":"Conventional","Directional":true,"Links":[{"SourceID":123210,"TargetID":8848,"Directional":true}]},{"ID":21086,"SourceStructureID":123212,"TargetStructureID":8749,"Label":"123212-8749 via Conventional from 123213 -> 123214","Type":"Conventional","Directional":true,"Links":[{"SourceID":123213,"TargetID":123214,"Directional":true}]},{"ID":21087,"SourceStructureID":123215,"TargetStructureID":8749,"Label":"123215-8749 via Conventional from 123216 -> 8826","Type":"Conventional","Directional":true,"Links":[{"SourceID":123216,"TargetID":8826,"Directional":true}]},{"ID":21088,"SourceStructureID":123217,"TargetStructureID":8749,"Label":"123217-8749 via Conventional from 123218 -> 123219","Type":"Conventional","Directional":true,"Links":[{"SourceID":123218,"TargetID":123219,"Directional":true}]},{"ID":21089,"SourceStructureID":123217,"TargetStructureID":38395,"Label":"123217-38395 via Adherens from 123221 -> 123220","Type":"Adherens","Directional":true,"Links":[{"SourceID":123221,"TargetID":123220,"Directional":true}]},{"ID":21090,"SourceStructureID":123223,"TargetStructureID":2610,"Label":"123223-2610 via Conventional from 123226 -> 2781","Type":"Conventional","Directional":true,"Links":[{"SourceID":123226,"TargetID":2781,"Directional":true}]},{"ID":21091,"SourceStructureID":123223,"TargetStructureID":8749,"Label":"123223-8749 via Conventional from 123224 -> 123225","Type":"Conventional","Directional":true,"Links":[{"SourceID":123224,"TargetID":123225,"Directional":true}]},{"ID":21092,"SourceStructureID":123227,"TargetStructureID":8749,"Label":"123227-8749 via Conventional from 123229 -> 123230","Type":"Conventional","Directional":true,"Links":[{"SourceID":123229,"TargetID":123230,"Directional":true}]},{"ID":21093,"SourceStructureID":123317,"TargetStructureID":171,"Label":"123317-171 via Conventional from 123318 -> 123319","Type":"Conventional","Directional":true,"Links":[{"SourceID":123318,"TargetID":123319,"Directional":true}]},{"ID":21094,"SourceStructureID":123573,"TargetStructureID":15977,"Label":"123573-15977 via Conventional from 123574 -> 123575","Type":"Conventional","Directional":true,"Links":[{"SourceID":123574,"TargetID":123575,"Directional":true}]},{"ID":21095,"SourceStructureID":123576,"TargetStructureID":15977,"Label":"123576-15977 via Conventional from 123577 -> 123578","Type":"Conventional","Directional":true,"Links":[{"SourceID":123577,"TargetID":123578,"Directional":true}]},{"ID":21096,"SourceStructureID":123579,"TargetStructureID":15977,"Label":"123579-15977 via Conventional from 123580 -> 123581","Type":"Conventional","Directional":true,"Links":[{"SourceID":123580,"TargetID":123581,"Directional":true}]},{"ID":21097,"SourceStructureID":123582,"TargetStructureID":15977,"Label":"123582-15977 via Conventional from 123583 -> 123584","Type":"Conventional","Directional":true,"Links":[{"SourceID":123583,"TargetID":123584,"Directional":true}]},{"ID":21098,"SourceStructureID":123675,"TargetStructureID":43716,"Label":"123675-43716 via Conventional from 123677 -> 123672","Type":"Conventional","Directional":true,"Links":[{"SourceID":123677,"TargetID":123672,"Directional":true}]},{"ID":21099,"SourceStructureID":124069,"TargetStructureID":5595,"Label":"124069-5595 via Conventional from 126915 -> 15287","Type":"Conventional","Directional":true,"Links":[{"SourceID":126915,"TargetID":15287,"Directional":true}]},{"ID":21100,"SourceStructureID":124486,"TargetStructureID":5598,"Label":"124486-5598 via Conventional from 124487 -> 115069","Type":"Conventional","Directional":true,"Links":[{"SourceID":124487,"TargetID":115069,"Directional":true}]},{"ID":21101,"SourceStructureID":124547,"TargetStructureID":176,"Label":"124547-176 via Conventional from 124548 -> 5815","Type":"Conventional","Directional":true,"Links":[{"SourceID":124548,"TargetID":5815,"Directional":true}]},{"ID":21102,"SourceStructureID":124780,"TargetStructureID":16026,"Label":"124780-16026 via Conventional from 124781 -> 25762","Type":"Conventional","Directional":true,"Links":[{"SourceID":124781,"TargetID":25762,"Directional":true}]},{"ID":21103,"SourceStructureID":125157,"TargetStructureID":6128,"Label":"125157-6128 via Conventional from 125269 -> 33739","Type":"Conventional","Directional":true,"Links":[{"SourceID":125269,"TargetID":33739,"Directional":true}]},{"ID":21104,"SourceStructureID":125157,"TargetStructureID":6132,"Label":"125157-6132 via Conventional from 125478 -> 88419","Type":"Conventional","Directional":true,"Links":[{"SourceID":125478,"TargetID":88419,"Directional":true}]},{"ID":21105,"SourceStructureID":125157,"TargetStructureID":7346,"Label":"125157-7346 via Conventional from 125250 -> 44113, 125268 -> 44052","Type":"Conventional","Directional":true,"Links":[{"SourceID":125250,"TargetID":44113,"Directional":true},{"SourceID":125268,"TargetID":44052,"Directional":true}]},{"ID":21106,"SourceStructureID":125157,"TargetStructureID":13525,"Label":"125157-13525 via Conventional from 125158 -> 84295","Type":"Conventional","Directional":true,"Links":[{"SourceID":125158,"TargetID":84295,"Directional":true}]},{"ID":21107,"SourceStructureID":125157,"TargetStructureID":44117,"Label":"125157-44117 via Conventional from 125249 -> 44120","Type":"Conventional","Directional":true,"Links":[{"SourceID":125249,"TargetID":44120,"Directional":true}]},{"ID":21108,"SourceStructureID":125389,"TargetStructureID":6047,"Label":"125389-6047 via Conventional from 125391 -> 125390","Type":"Conventional","Directional":true,"Links":[{"SourceID":125391,"TargetID":125390,"Directional":true}]},{"ID":21109,"SourceStructureID":125685,"TargetStructureID":1021,"Label":"125685-1021 via Conventional from 125687 -> 125688","Type":"Conventional","Directional":true,"Links":[{"SourceID":125687,"TargetID":125688,"Directional":true}]},{"ID":21110,"SourceStructureID":125767,"TargetStructureID":6203,"Label":"125767-6203 via Conventional from 125769 -> 125770","Type":"Conventional","Directional":true,"Links":[{"SourceID":125769,"TargetID":125770,"Directional":true}]},{"ID":21111,"SourceStructureID":125981,"TargetStructureID":166,"Label":"125981-166 via Conventional from 93091 -> 4450","Type":"Conventional","Directional":true,"Links":[{"SourceID":93091,"TargetID":4450,"Directional":true}]},{"ID":21112,"SourceStructureID":125981,"TargetStructureID":606,"Label":"125981-606 via Conventional from 52174 -> 10051","Type":"Conventional","Directional":true,"Links":[{"SourceID":52174,"TargetID":10051,"Directional":true}]},{"ID":21113,"SourceStructureID":126012,"TargetStructureID":142,"Label":"126012-142 via Conventional from 126014 -> 126011","Type":"Conventional","Directional":true,"Links":[{"SourceID":126014,"TargetID":126011,"Directional":true}]},{"ID":21114,"SourceStructureID":126012,"TargetStructureID":595,"Label":"126012-595 via Conventional from 126013 -> 125266","Type":"Conventional","Directional":true,"Links":[{"SourceID":126013,"TargetID":125266,"Directional":true}]},{"ID":21115,"SourceStructureID":126047,"TargetStructureID":142,"Label":"126047-142 via Conventional from 126049 -> 31782","Type":"Conventional","Directional":true,"Links":[{"SourceID":126049,"TargetID":31782,"Directional":true}]},{"ID":21116,"SourceStructureID":126646,"TargetStructureID":56710,"Label":"126646-56710 via Conventional from 136507 -> 136506","Type":"Conventional","Directional":true,"Links":[{"SourceID":136507,"TargetID":136506,"Directional":true}]},{"ID":21117,"SourceStructureID":126901,"TargetStructureID":5600,"Label":"126901-5600 via Conventional from 126904 -> 126905, 126906 -> 124235","Type":"Conventional","Directional":true,"Links":[{"SourceID":126904,"TargetID":126905,"Directional":true},{"SourceID":126906,"TargetID":124235,"Directional":true}]},{"ID":21118,"SourceStructureID":127070,"TargetStructureID":6050,"Label":"127070-6050 via Conventional from 127071 -> 127072","Type":"Conventional","Directional":true,"Links":[{"SourceID":127071,"TargetID":127072,"Directional":true}]},{"ID":21119,"SourceStructureID":127240,"TargetStructureID":5601,"Label":"127240-5601 via Conventional from 127241 -> 127205","Type":"Conventional","Directional":true,"Links":[{"SourceID":127241,"TargetID":127205,"Directional":true}]},{"ID":21120,"SourceStructureID":127253,"TargetStructureID":6050,"Label":"127253-6050 via Conventional from 127254 -> 51663","Type":"Conventional","Directional":true,"Links":[{"SourceID":127254,"TargetID":51663,"Directional":true}]},{"ID":21121,"SourceStructureID":127256,"TargetStructureID":176,"Label":"127256-176 via Conventional from 127257 -> 5807","Type":"Conventional","Directional":true,"Links":[{"SourceID":127257,"TargetID":5807,"Directional":true}]},{"ID":21122,"SourceStructureID":127262,"TargetStructureID":170,"Label":"127262-170 via Conventional from 127264 -> 127261","Type":"Conventional","Directional":true,"Links":[{"SourceID":127264,"TargetID":127261,"Directional":true}]},{"ID":21123,"SourceStructureID":127277,"TargetStructureID":6050,"Label":"127277-6050 via Conventional from 127278 -> 113580","Type":"Conventional","Directional":true,"Links":[{"SourceID":127278,"TargetID":113580,"Directional":true}]},{"ID":21124,"SourceStructureID":127302,"TargetStructureID":78409,"Label":"127302-78409 via Conventional from 127303 -> 106785","Type":"Conventional","Directional":true,"Links":[{"SourceID":127303,"TargetID":106785,"Directional":true}]},{"ID":21125,"SourceStructureID":127304,"TargetStructureID":6050,"Label":"127304-6050 via Conventional from 127305 -> 126984","Type":"Conventional","Directional":true,"Links":[{"SourceID":127305,"TargetID":126984,"Directional":true}]},{"ID":21126,"SourceStructureID":127306,"TargetStructureID":176,"Label":"127306-176 via Conventional from 127307 -> 5863","Type":"Conventional","Directional":true,"Links":[{"SourceID":127307,"TargetID":5863,"Directional":true}]},{"ID":21127,"SourceStructureID":127417,"TargetStructureID":6050,"Label":"127417-6050 via Conventional from 127418 -> 113916","Type":"Conventional","Directional":true,"Links":[{"SourceID":127418,"TargetID":113916,"Directional":true}]},{"ID":21128,"SourceStructureID":127650,"TargetStructureID":6050,"Label":"127650-6050 via Conventional from 127651 -> 114262","Type":"Conventional","Directional":true,"Links":[{"SourceID":127651,"TargetID":114262,"Directional":true}]},{"ID":21129,"SourceStructureID":127653,"TargetStructureID":6050,"Label":"127653-6050 via Conventional from 127654 -> 114262","Type":"Conventional","Directional":true,"Links":[{"SourceID":127654,"TargetID":114262,"Directional":true}]},{"ID":21130,"SourceStructureID":127719,"TargetStructureID":45672,"Label":"127719-45672 via Ribbon Synapse from 127720 -> 127734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127720,"TargetID":127734,"Directional":true}]},{"ID":21131,"SourceStructureID":127749,"TargetStructureID":45672,"Label":"127749-45672 via Ribbon Synapse from 127750 -> 127748","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127750,"TargetID":127748,"Directional":true}]},{"ID":21132,"SourceStructureID":127764,"TargetStructureID":3756,"Label":"127764-3756 via Conventional from 128957 -> 128958","Type":"Conventional","Directional":true,"Links":[{"SourceID":128957,"TargetID":128958,"Directional":true}]},{"ID":21133,"SourceStructureID":127764,"TargetStructureID":5601,"Label":"127764-5601 via Conventional from 129274 -> 127157","Type":"Conventional","Directional":true,"Links":[{"SourceID":129274,"TargetID":127157,"Directional":true}]},{"ID":21134,"SourceStructureID":127764,"TargetStructureID":9376,"Label":"127764-9376 via Conventional from 127765 -> 62747, 127766 -> 62746","Type":"Conventional","Directional":true,"Links":[{"SourceID":127765,"TargetID":62747,"Directional":true},{"SourceID":127766,"TargetID":62746,"Directional":true}]},{"ID":21135,"SourceStructureID":127776,"TargetStructureID":469,"Label":"127776-469 via Conventional from 127777 -> 127778","Type":"Conventional","Directional":true,"Links":[{"SourceID":127777,"TargetID":127778,"Directional":true}]},{"ID":21136,"SourceStructureID":127781,"TargetStructureID":15979,"Label":"127781-15979 via Conventional from 127782 -> 33790","Type":"Conventional","Directional":true,"Links":[{"SourceID":127782,"TargetID":33790,"Directional":true}]},{"ID":21137,"SourceStructureID":127783,"TargetStructureID":6164,"Label":"127783-6164 via Conventional from 127784 -> 26862","Type":"Conventional","Directional":true,"Links":[{"SourceID":127784,"TargetID":26862,"Directional":true}]},{"ID":21138,"SourceStructureID":127796,"TargetStructureID":579,"Label":"127796-579 via Conventional from 127797 -> 127798, 127811 -> 127812","Type":"Conventional","Directional":true,"Links":[{"SourceID":127797,"TargetID":127798,"Directional":true},{"SourceID":127811,"TargetID":127812,"Directional":true}]},{"ID":21139,"SourceStructureID":127796,"TargetStructureID":46388,"Label":"127796-46388 via Conventional from 127809 -> 127810","Type":"Conventional","Directional":true,"Links":[{"SourceID":127809,"TargetID":127810,"Directional":true}]},{"ID":21140,"SourceStructureID":127813,"TargetStructureID":579,"Label":"127813-579 via Conventional from 127814 -> 127815","Type":"Conventional","Directional":true,"Links":[{"SourceID":127814,"TargetID":127815,"Directional":true}]},{"ID":21141,"SourceStructureID":127813,"TargetStructureID":5623,"Label":"127813-5623 via Conventional from 127819 -> 127820","Type":"Conventional","Directional":true,"Links":[{"SourceID":127819,"TargetID":127820,"Directional":true}]},{"ID":21142,"SourceStructureID":127832,"TargetStructureID":2610,"Label":"127832-2610 via Conventional from 127837 -> 17226","Type":"Conventional","Directional":true,"Links":[{"SourceID":127837,"TargetID":17226,"Directional":true}]},{"ID":21143,"SourceStructureID":127832,"TargetStructureID":15100,"Label":"127832-15100 via Conventional from 127833 -> 127834","Type":"Conventional","Directional":true,"Links":[{"SourceID":127833,"TargetID":127834,"Directional":true}]},{"ID":21144,"SourceStructureID":127841,"TargetStructureID":6997,"Label":"127841-6997 via Conventional from 127844 -> 22253","Type":"Conventional","Directional":true,"Links":[{"SourceID":127844,"TargetID":22253,"Directional":true}]},{"ID":21145,"SourceStructureID":127841,"TargetStructureID":15100,"Label":"127841-15100 via Conventional from 127842 -> 17105","Type":"Conventional","Directional":true,"Links":[{"SourceID":127842,"TargetID":17105,"Directional":true}]},{"ID":21146,"SourceStructureID":127846,"TargetStructureID":485,"Label":"127846-485 via Conventional from 127871 -> 101870","Type":"Conventional","Directional":true,"Links":[{"SourceID":127871,"TargetID":101870,"Directional":true}]},{"ID":21147,"SourceStructureID":127846,"TargetStructureID":6589,"Label":"127846-6589 via Conventional from 127860 -> 9582","Type":"Conventional","Directional":true,"Links":[{"SourceID":127860,"TargetID":9582,"Directional":true}]},{"ID":21148,"SourceStructureID":127846,"TargetStructureID":8749,"Label":"127846-8749 via Conventional from 127868 -> 127869","Type":"Conventional","Directional":true,"Links":[{"SourceID":127868,"TargetID":127869,"Directional":true}]},{"ID":21149,"SourceStructureID":127846,"TargetStructureID":15100,"Label":"127846-15100 via Conventional from 127847 -> 15105","Type":"Conventional","Directional":true,"Links":[{"SourceID":127847,"TargetID":15105,"Directional":true}]},{"ID":21150,"SourceStructureID":127846,"TargetStructureID":17183,"Label":"127846-17183 via Conventional from 127853 -> 127859","Type":"Conventional","Directional":true,"Links":[{"SourceID":127853,"TargetID":127859,"Directional":true}]},{"ID":21151,"SourceStructureID":127946,"TargetStructureID":46514,"Label":"127946-46514 via Ribbon Synapse from 127948 -> 127951, 127949 -> 127950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127948,"TargetID":127951,"Directional":true},{"SourceID":127949,"TargetID":127950,"Directional":true}]},{"ID":21152,"SourceStructureID":127953,"TargetStructureID":46517,"Label":"127953-46517 via Ribbon Synapse from 127954 -> 127952","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127954,"TargetID":127952,"Directional":true}]},{"ID":21153,"SourceStructureID":127964,"TargetStructureID":46379,"Label":"127964-46379 via Ribbon Synapse from 127965 -> 127963","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127965,"TargetID":127963,"Directional":true}]},{"ID":21154,"SourceStructureID":127999,"TargetStructureID":179,"Label":"127999-179 via Conventional from 128000 -> 11676","Type":"Conventional","Directional":true,"Links":[{"SourceID":128000,"TargetID":11676,"Directional":true}]},{"ID":21155,"SourceStructureID":128006,"TargetStructureID":179,"Label":"128006-179 via Conventional from 128007 -> 103807","Type":"Conventional","Directional":true,"Links":[{"SourceID":128007,"TargetID":103807,"Directional":true}]},{"ID":21156,"SourceStructureID":128015,"TargetStructureID":478,"Label":"128015-478 via Conventional from 128040 -> 19426","Type":"Conventional","Directional":true,"Links":[{"SourceID":128040,"TargetID":19426,"Directional":true}]},{"ID":21157,"SourceStructureID":128015,"TargetStructureID":128044,"Label":"128015-128044 via Conventional from 128043 -> 128045","Type":"Conventional","Directional":true,"Links":[{"SourceID":128043,"TargetID":128045,"Directional":true}]},{"ID":21158,"SourceStructureID":128060,"TargetStructureID":179,"Label":"128060-179 via Conventional from 128061 -> 103815","Type":"Conventional","Directional":true,"Links":[{"SourceID":128061,"TargetID":103815,"Directional":true}]},{"ID":21159,"SourceStructureID":128060,"TargetStructureID":9787,"Label":"128060-9787 via Conventional from 128096 -> 18053","Type":"Conventional","Directional":true,"Links":[{"SourceID":128096,"TargetID":18053,"Directional":true}]},{"ID":21160,"SourceStructureID":128060,"TargetStructureID":128082,"Label":"128060-128082 via Conventional from 128081 -> 128085","Type":"Conventional","Directional":true,"Links":[{"SourceID":128081,"TargetID":128085,"Directional":true}]},{"ID":21161,"SourceStructureID":128097,"TargetStructureID":179,"Label":"128097-179 via Conventional from 128098 -> 128099","Type":"Conventional","Directional":true,"Links":[{"SourceID":128098,"TargetID":128099,"Directional":true}]},{"ID":21162,"SourceStructureID":128101,"TargetStructureID":173,"Label":"128101-173 via Conventional from 128103 -> 128104","Type":"Conventional","Directional":true,"Links":[{"SourceID":128103,"TargetID":128104,"Directional":true}]},{"ID":21163,"SourceStructureID":128101,"TargetStructureID":179,"Label":"128101-179 via Conventional from 128102 -> 87472","Type":"Conventional","Directional":true,"Links":[{"SourceID":128102,"TargetID":87472,"Directional":true}]},{"ID":21164,"SourceStructureID":128107,"TargetStructureID":179,"Label":"128107-179 via Conventional from 128108 -> 87467","Type":"Conventional","Directional":true,"Links":[{"SourceID":128108,"TargetID":87467,"Directional":true}]},{"ID":21165,"SourceStructureID":128122,"TargetStructureID":179,"Label":"128122-179 via Conventional from 128124 -> 87466","Type":"Conventional","Directional":true,"Links":[{"SourceID":128124,"TargetID":87466,"Directional":true}]},{"ID":21166,"SourceStructureID":128150,"TargetStructureID":179,"Label":"128150-179 via Conventional from 128151 -> 87501","Type":"Conventional","Directional":true,"Links":[{"SourceID":128151,"TargetID":87501,"Directional":true}]},{"ID":21167,"SourceStructureID":128152,"TargetStructureID":173,"Label":"128152-173 via Conventional from 128159 -> 12123, 128162 -> 128163","Type":"Conventional","Directional":true,"Links":[{"SourceID":128159,"TargetID":12123,"Directional":true},{"SourceID":128162,"TargetID":128163,"Directional":true}]},{"ID":21168,"SourceStructureID":128152,"TargetStructureID":175,"Label":"128152-175 via Conventional from 128166 -> 128170","Type":"Conventional","Directional":true,"Links":[{"SourceID":128166,"TargetID":128170,"Directional":true}]},{"ID":21169,"SourceStructureID":128152,"TargetStructureID":179,"Label":"128152-179 via Conventional from 128153 -> 87502","Type":"Conventional","Directional":true,"Links":[{"SourceID":128153,"TargetID":87502,"Directional":true}]},{"ID":21170,"SourceStructureID":128171,"TargetStructureID":591,"Label":"128171-591 via Conventional from 128172 -> 10216","Type":"Conventional","Directional":true,"Links":[{"SourceID":128172,"TargetID":10216,"Directional":true}]},{"ID":21171,"SourceStructureID":128184,"TargetStructureID":173,"Label":"128184-173 via Conventional from 128186 -> 128187","Type":"Conventional","Directional":true,"Links":[{"SourceID":128186,"TargetID":128187,"Directional":true}]},{"ID":21172,"SourceStructureID":128184,"TargetStructureID":179,"Label":"128184-179 via Conventional from 128185 -> 87504","Type":"Conventional","Directional":true,"Links":[{"SourceID":128185,"TargetID":87504,"Directional":true}]},{"ID":21173,"SourceStructureID":128189,"TargetStructureID":179,"Label":"128189-179 via Conventional from 128190 -> 11679","Type":"Conventional","Directional":true,"Links":[{"SourceID":128190,"TargetID":11679,"Directional":true}]},{"ID":21174,"SourceStructureID":128191,"TargetStructureID":179,"Label":"128191-179 via Conventional from 128192 -> 104768","Type":"Conventional","Directional":true,"Links":[{"SourceID":128192,"TargetID":104768,"Directional":true}]},{"ID":21175,"SourceStructureID":128685,"TargetStructureID":176,"Label":"128685-176 via Conventional from 128687 -> 125453","Type":"Conventional","Directional":true,"Links":[{"SourceID":128687,"TargetID":125453,"Directional":true}]},{"ID":21176,"SourceStructureID":128685,"TargetStructureID":4877,"Label":"128685-4877 via Conventional from 128686 -> 33372","Type":"Conventional","Directional":true,"Links":[{"SourceID":128686,"TargetID":33372,"Directional":true}]},{"ID":21177,"SourceStructureID":128800,"TargetStructureID":3756,"Label":"128800-3756 via Conventional from 128801 -> 128799","Type":"Conventional","Directional":true,"Links":[{"SourceID":128801,"TargetID":128799,"Directional":true}]},{"ID":21178,"SourceStructureID":129144,"TargetStructureID":579,"Label":"129144-579 via Conventional from 129145 -> 129146, 129147 -> 129149, 129148 -> 129150","Type":"Conventional","Directional":true,"Links":[{"SourceID":129145,"TargetID":129146,"Directional":true},{"SourceID":129147,"TargetID":129149,"Directional":true},{"SourceID":129148,"TargetID":129150,"Directional":true}]},{"ID":21179,"SourceStructureID":129154,"TargetStructureID":514,"Label":"129154-514 via Conventional from 129157 -> 3248","Type":"Conventional","Directional":true,"Links":[{"SourceID":129157,"TargetID":3248,"Directional":true}]},{"ID":21180,"SourceStructureID":129154,"TargetStructureID":2610,"Label":"129154-2610 via Conventional from 129156 -> 13803","Type":"Conventional","Directional":true,"Links":[{"SourceID":129156,"TargetID":13803,"Directional":true}]},{"ID":21181,"SourceStructureID":129154,"TargetStructureID":8749,"Label":"129154-8749 via Conventional from 129155 -> 8831","Type":"Conventional","Directional":true,"Links":[{"SourceID":129155,"TargetID":8831,"Directional":true}]},{"ID":21182,"SourceStructureID":129192,"TargetStructureID":30477,"Label":"129192-30477 via Conventional from 129193 -> 30492","Type":"Conventional","Directional":true,"Links":[{"SourceID":129193,"TargetID":30492,"Directional":true}]},{"ID":21183,"SourceStructureID":129199,"TargetStructureID":34159,"Label":"129199-34159 via Conventional from 129200 -> 34161","Type":"Conventional","Directional":true,"Links":[{"SourceID":129200,"TargetID":34161,"Directional":true}]},{"ID":21184,"SourceStructureID":129201,"TargetStructureID":34159,"Label":"129201-34159 via Conventional from 129202 -> 34162","Type":"Conventional","Directional":true,"Links":[{"SourceID":129202,"TargetID":34162,"Directional":true}]},{"ID":21185,"SourceStructureID":129292,"TargetStructureID":13525,"Label":"129292-13525 via Ribbon Synapse from 130091 -> 129291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130091,"TargetID":129291,"Directional":true}]},{"ID":21186,"SourceStructureID":129292,"TargetStructureID":130237,"Label":"129292-130237 via Ribbon Synapse from 130093 -> 130397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130093,"TargetID":130397,"Directional":true}]},{"ID":21187,"SourceStructureID":129466,"TargetStructureID":3756,"Label":"129466-3756 via Conventional from 129467 -> 129464","Type":"Conventional","Directional":true,"Links":[{"SourceID":129467,"TargetID":129464,"Directional":true}]},{"ID":21188,"SourceStructureID":129563,"TargetStructureID":13525,"Label":"129563-13525 via Conventional from 130051 -> 129562","Type":"Conventional","Directional":true,"Links":[{"SourceID":130051,"TargetID":129562,"Directional":true}]},{"ID":21189,"SourceStructureID":129648,"TargetStructureID":181,"Label":"129648-181 via Conventional from 129650 -> 10319, 129655 -> 10319","Type":"Conventional","Directional":true,"Links":[{"SourceID":129650,"TargetID":10319,"Directional":true},{"SourceID":129655,"TargetID":10319,"Directional":true}]},{"ID":21190,"SourceStructureID":129648,"TargetStructureID":968,"Label":"129648-968 via Conventional from 129657 -> 129658","Type":"Conventional","Directional":true,"Links":[{"SourceID":129657,"TargetID":129658,"Directional":true}]},{"ID":21191,"SourceStructureID":129648,"TargetStructureID":3865,"Label":"129648-3865 via Conventional from 129651 -> 36122","Type":"Conventional","Directional":true,"Links":[{"SourceID":129651,"TargetID":36122,"Directional":true}]},{"ID":21192,"SourceStructureID":129648,"TargetStructureID":129721,"Label":"129648-129721 via Conventional from 129719 -> 129724, 129729 -> 129726","Type":"Conventional","Directional":true,"Links":[{"SourceID":129719,"TargetID":129724,"Directional":true},{"SourceID":129729,"TargetID":129726,"Directional":true}]},{"ID":21193,"SourceStructureID":129648,"TargetStructureID":129738,"Label":"129648-129738 via Conventional from 129743 -> 129744","Type":"Conventional","Directional":true,"Links":[{"SourceID":129743,"TargetID":129744,"Directional":true}]},{"ID":21194,"SourceStructureID":129648,"TargetStructureID":129746,"Label":"129648-129746 via Conventional from 129751 -> 129752","Type":"Conventional","Directional":true,"Links":[{"SourceID":129751,"TargetID":129752,"Directional":true}]},{"ID":21195,"SourceStructureID":129648,"TargetStructureID":129755,"Label":"129648-129755 via Conventional from 129754 -> 129757","Type":"Conventional","Directional":true,"Links":[{"SourceID":129754,"TargetID":129757,"Directional":true}]},{"ID":21196,"SourceStructureID":129648,"TargetStructureID":129762,"Label":"129648-129762 via Conventional from 129761 -> 129766","Type":"Conventional","Directional":true,"Links":[{"SourceID":129761,"TargetID":129766,"Directional":true}]},{"ID":21197,"SourceStructureID":129660,"TargetStructureID":129648,"Label":"129660-129648 via Conventional from 129661 -> 129659","Type":"Conventional","Directional":true,"Links":[{"SourceID":129661,"TargetID":129659,"Directional":true}]},{"ID":21198,"SourceStructureID":129666,"TargetStructureID":129648,"Label":"129666-129648 via Conventional from 129667 -> 129665","Type":"Conventional","Directional":true,"Links":[{"SourceID":129667,"TargetID":129665,"Directional":true}]},{"ID":21199,"SourceStructureID":129676,"TargetStructureID":40604,"Label":"129676-40604 via Ribbon Synapse from 129677 -> 129678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129677,"TargetID":129678,"Directional":true}]},{"ID":21200,"SourceStructureID":129676,"TargetStructureID":129648,"Label":"129676-129648 via Ribbon Synapse from 129679 -> 129675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129679,"TargetID":129675,"Directional":true}]},{"ID":21201,"SourceStructureID":129696,"TargetStructureID":129648,"Label":"129696-129648 via Ribbon Synapse from 129697 -> 129695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129697,"TargetID":129695,"Directional":true}]},{"ID":21202,"SourceStructureID":129721,"TargetStructureID":16073,"Label":"129721-16073 via BC Conventional Synapse from 129723 -> 24191","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":129723,"TargetID":24191,"Directional":true}]},{"ID":21203,"SourceStructureID":129721,"TargetStructureID":129648,"Label":"129721-129648 via Ribbon Synapse from 129722 -> 129720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129722,"TargetID":129720,"Directional":true}]},{"ID":21204,"SourceStructureID":129738,"TargetStructureID":129648,"Label":"129738-129648 via Conventional from 129742 -> 129737","Type":"Conventional","Directional":true,"Links":[{"SourceID":129742,"TargetID":129737,"Directional":true}]},{"ID":21205,"SourceStructureID":129740,"TargetStructureID":129738,"Label":"129740-129738 via Conventional from 129741 -> 129739","Type":"Conventional","Directional":true,"Links":[{"SourceID":129741,"TargetID":129739,"Directional":true}]},{"ID":21206,"SourceStructureID":129746,"TargetStructureID":129648,"Label":"129746-129648 via Ribbon Synapse from 129747 -> 129745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129747,"TargetID":129745,"Directional":true}]},{"ID":21207,"SourceStructureID":129755,"TargetStructureID":129648,"Label":"129755-129648 via Conventional from 129756 -> 129753","Type":"Conventional","Directional":true,"Links":[{"SourceID":129756,"TargetID":129753,"Directional":true}]},{"ID":21208,"SourceStructureID":129762,"TargetStructureID":129755,"Label":"129762-129755 via Ribbon Synapse from 129764 -> 129759","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129764,"TargetID":129759,"Directional":true}]},{"ID":21209,"SourceStructureID":129775,"TargetStructureID":173,"Label":"129775-173 via Conventional from 129779 -> 129780","Type":"Conventional","Directional":true,"Links":[{"SourceID":129779,"TargetID":129780,"Directional":true}]},{"ID":21210,"SourceStructureID":129775,"TargetStructureID":181,"Label":"129775-181 via Conventional from 129776 -> 20466","Type":"Conventional","Directional":true,"Links":[{"SourceID":129776,"TargetID":20466,"Directional":true}]},{"ID":21211,"SourceStructureID":129781,"TargetStructureID":175,"Label":"129781-175 via Conventional from 129782 -> 21887","Type":"Conventional","Directional":true,"Links":[{"SourceID":129782,"TargetID":21887,"Directional":true}]},{"ID":21212,"SourceStructureID":129781,"TargetStructureID":129788,"Label":"129781-129788 via Conventional from 129787 -> 129790","Type":"Conventional","Directional":true,"Links":[{"SourceID":129787,"TargetID":129790,"Directional":true}]},{"ID":21213,"SourceStructureID":129798,"TargetStructureID":138,"Label":"129798-138 via Conventional from 129846 -> 129845","Type":"Conventional","Directional":true,"Links":[{"SourceID":129846,"TargetID":129845,"Directional":true}]},{"ID":21214,"SourceStructureID":129798,"TargetStructureID":5585,"Label":"129798-5585 via Conventional from 129810 -> 129811","Type":"Conventional","Directional":true,"Links":[{"SourceID":129810,"TargetID":129811,"Directional":true}]},{"ID":21215,"SourceStructureID":129798,"TargetStructureID":129800,"Label":"129798-129800 via Conventional from 129799 -> 129801","Type":"Conventional","Directional":true,"Links":[{"SourceID":129799,"TargetID":129801,"Directional":true}]},{"ID":21216,"SourceStructureID":129798,"TargetStructureID":129827,"Label":"129798-129827 via Conventional from 129825 -> 129829","Type":"Conventional","Directional":true,"Links":[{"SourceID":129825,"TargetID":129829,"Directional":true}]},{"ID":21217,"SourceStructureID":129800,"TargetStructureID":129798,"Label":"129800-129798 via Ribbon Synapse from 129802 -> 129803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129802,"TargetID":129803,"Directional":true}]},{"ID":21218,"SourceStructureID":129840,"TargetStructureID":129798,"Label":"129840-129798 via Ribbon Synapse from 129842 -> 129843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129842,"TargetID":129843,"Directional":true}]},{"ID":21219,"SourceStructureID":129851,"TargetStructureID":129927,"Label":"129851-129927 via Conventional from 129852 -> 129853","Type":"Conventional","Directional":true,"Links":[{"SourceID":129852,"TargetID":129853,"Directional":true}]},{"ID":21220,"SourceStructureID":129877,"TargetStructureID":129875,"Label":"129877-129875 via Conventional from 129878 -> 129876","Type":"Conventional","Directional":true,"Links":[{"SourceID":129878,"TargetID":129876,"Directional":true}]},{"ID":21221,"SourceStructureID":129924,"TargetStructureID":5499,"Label":"129924-5499 via Conventional from 129925 -> 97184","Type":"Conventional","Directional":true,"Links":[{"SourceID":129925,"TargetID":97184,"Directional":true}]},{"ID":21222,"SourceStructureID":129927,"TargetStructureID":138,"Label":"129927-138 via Conventional from 129934 -> 11468","Type":"Conventional","Directional":true,"Links":[{"SourceID":129934,"TargetID":11468,"Directional":true}]},{"ID":21223,"SourceStructureID":129927,"TargetStructureID":173,"Label":"129927-173 via Conventional from 129936 -> 12142","Type":"Conventional","Directional":true,"Links":[{"SourceID":129936,"TargetID":12142,"Directional":true}]},{"ID":21224,"SourceStructureID":129927,"TargetStructureID":5499,"Label":"129927-5499 via Conventional from 129928 -> 97180, 129941 -> 129942, 129943 -> 106898","Type":"Conventional","Directional":true,"Links":[{"SourceID":129928,"TargetID":97180,"Directional":true},{"SourceID":129941,"TargetID":129942,"Directional":true},{"SourceID":129943,"TargetID":106898,"Directional":true}]},{"ID":21225,"SourceStructureID":129952,"TargetStructureID":13525,"Label":"129952-13525 via Conventional from 130052 -> 129951","Type":"Conventional","Directional":true,"Links":[{"SourceID":130052,"TargetID":129951,"Directional":true}]},{"ID":21226,"SourceStructureID":129954,"TargetStructureID":13525,"Label":"129954-13525 via Ribbon Synapse from 130155 -> 133803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130155,"TargetID":133803,"Directional":true}]},{"ID":21227,"SourceStructureID":129956,"TargetStructureID":5421,"Label":"129956-5421 via Conventional from 130145 -> 130942","Type":"Conventional","Directional":true,"Links":[{"SourceID":130145,"TargetID":130942,"Directional":true}]},{"ID":21228,"SourceStructureID":129956,"TargetStructureID":13525,"Label":"129956-13525 via Conventional from 130056 -> 129955","Type":"Conventional","Directional":true,"Links":[{"SourceID":130056,"TargetID":129955,"Directional":true}]},{"ID":21229,"SourceStructureID":129961,"TargetStructureID":13525,"Label":"129961-13525 via Conventional from 130058 -> 129960","Type":"Conventional","Directional":true,"Links":[{"SourceID":130058,"TargetID":129960,"Directional":true}]},{"ID":21230,"SourceStructureID":129967,"TargetStructureID":13525,"Label":"129967-13525 via Conventional from 129968 -> 129966","Type":"Conventional","Directional":true,"Links":[{"SourceID":129968,"TargetID":129966,"Directional":true}]},{"ID":21231,"SourceStructureID":129995,"TargetStructureID":129994,"Label":"129995-129994 via Conventional from 129996 -> 129997","Type":"Conventional","Directional":true,"Links":[{"SourceID":129996,"TargetID":129997,"Directional":true}]},{"ID":21232,"SourceStructureID":130006,"TargetStructureID":13525,"Label":"130006-13525 via Conventional from 130147 -> 130005","Type":"Conventional","Directional":true,"Links":[{"SourceID":130147,"TargetID":130005,"Directional":true}]},{"ID":21233,"SourceStructureID":130006,"TargetStructureID":130371,"Label":"130006-130371 via Conventional from 130148 -> 130374","Type":"Conventional","Directional":true,"Links":[{"SourceID":130148,"TargetID":130374,"Directional":true}]},{"ID":21234,"SourceStructureID":130038,"TargetStructureID":130039,"Label":"130038-130039 via Conventional from 130040 -> 130041","Type":"Conventional","Directional":true,"Links":[{"SourceID":130040,"TargetID":130041,"Directional":true}]},{"ID":21235,"SourceStructureID":130125,"TargetStructureID":179,"Label":"130125-179 via Conventional from 6369 -> 105202","Type":"Conventional","Directional":true,"Links":[{"SourceID":6369,"TargetID":105202,"Directional":true}]},{"ID":21236,"SourceStructureID":130150,"TargetStructureID":13525,"Label":"130150-13525 via Conventional from 130151 -> 129288","Type":"Conventional","Directional":true,"Links":[{"SourceID":130151,"TargetID":129288,"Directional":true}]},{"ID":21237,"SourceStructureID":130152,"TargetStructureID":13525,"Label":"130152-13525 via Conventional from 130153 -> 129026","Type":"Conventional","Directional":true,"Links":[{"SourceID":130153,"TargetID":129026,"Directional":true}]},{"ID":21238,"SourceStructureID":130200,"TargetStructureID":166,"Label":"130200-166 via Conventional from 130201 -> 4552","Type":"Conventional","Directional":true,"Links":[{"SourceID":130201,"TargetID":4552,"Directional":true}]},{"ID":21239,"SourceStructureID":130200,"TargetStructureID":56822,"Label":"130200-56822 via Conventional from 130202 -> 56824","Type":"Conventional","Directional":true,"Links":[{"SourceID":130202,"TargetID":56824,"Directional":true}]},{"ID":21240,"SourceStructureID":130203,"TargetStructureID":5117,"Label":"130203-5117 via Conventional from 130204 -> 28796","Type":"Conventional","Directional":true,"Links":[{"SourceID":130204,"TargetID":28796,"Directional":true}]},{"ID":21241,"SourceStructureID":130205,"TargetStructureID":273,"Label":"130205-273 via Conventional from 130207 -> 130206","Type":"Conventional","Directional":true,"Links":[{"SourceID":130207,"TargetID":130206,"Directional":true}]},{"ID":21242,"SourceStructureID":130208,"TargetStructureID":5551,"Label":"130208-5551 via Conventional from 130209 -> 130210","Type":"Conventional","Directional":true,"Links":[{"SourceID":130209,"TargetID":130210,"Directional":true}]},{"ID":21243,"SourceStructureID":130228,"TargetStructureID":5282,"Label":"130228-5282 via Conventional from 130229 -> 87560","Type":"Conventional","Directional":true,"Links":[{"SourceID":130229,"TargetID":87560,"Directional":true}]},{"ID":21244,"SourceStructureID":130237,"TargetStructureID":7577,"Label":"130237-7577 via Conventional from 130309 -> 130692","Type":"Conventional","Directional":true,"Links":[{"SourceID":130309,"TargetID":130692,"Directional":true}]},{"ID":21245,"SourceStructureID":130237,"TargetStructureID":13525,"Label":"130237-13525 via Conventional from 130308 -> 130236","Type":"Conventional","Directional":true,"Links":[{"SourceID":130308,"TargetID":130236,"Directional":true}]},{"ID":21246,"SourceStructureID":130239,"TargetStructureID":7568,"Label":"130239-7568 via Conventional from 130359 -> 41761, 130360 -> 41762","Type":"Conventional","Directional":true,"Links":[{"SourceID":130359,"TargetID":41761,"Directional":true},{"SourceID":130360,"TargetID":41762,"Directional":true}]},{"ID":21247,"SourceStructureID":130239,"TargetStructureID":13525,"Label":"130239-13525 via Conventional from 130311 -> 129545","Type":"Conventional","Directional":true,"Links":[{"SourceID":130311,"TargetID":129545,"Directional":true}]},{"ID":21248,"SourceStructureID":130255,"TargetStructureID":13525,"Label":"130255-13525 via Conventional from 130314 -> 129559","Type":"Conventional","Directional":true,"Links":[{"SourceID":130314,"TargetID":129559,"Directional":true}]},{"ID":21249,"SourceStructureID":130256,"TargetStructureID":13525,"Label":"130256-13525 via Ribbon Synapse from 130655 -> 129560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130655,"TargetID":129560,"Directional":true}]},{"ID":21250,"SourceStructureID":130389,"TargetStructureID":11092,"Label":"130389-11092 via Conventional from 130392 -> 130393","Type":"Conventional","Directional":true,"Links":[{"SourceID":130392,"TargetID":130393,"Directional":true}]},{"ID":21251,"SourceStructureID":130472,"TargetStructureID":130256,"Label":"130472-130256 via Ribbon Synapse from 130485 -> 130331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130485,"TargetID":130331,"Directional":true}]},{"ID":21252,"SourceStructureID":130644,"TargetStructureID":22554,"Label":"130644-22554 via Ribbon Synapse from 130645 -> 130646","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130645,"TargetID":130646,"Directional":true}]},{"ID":21253,"SourceStructureID":130941,"TargetStructureID":35188,"Label":"130941-35188 via Conventional from 131048 -> 35190","Type":"Conventional","Directional":true,"Links":[{"SourceID":131048,"TargetID":35190,"Directional":true}]},{"ID":21254,"SourceStructureID":131244,"TargetStructureID":9787,"Label":"131244-9787 via Conventional from 131252 -> 18133","Type":"Conventional","Directional":true,"Links":[{"SourceID":131252,"TargetID":18133,"Directional":true}]},{"ID":21255,"SourceStructureID":131246,"TargetStructureID":36130,"Label":"131246-36130 via Conventional from 131254 -> 36146","Type":"Conventional","Directional":true,"Links":[{"SourceID":131254,"TargetID":36146,"Directional":true}]},{"ID":21256,"SourceStructureID":131284,"TargetStructureID":131286,"Label":"131284-131286 via Conventional from 131285 -> 131289","Type":"Conventional","Directional":true,"Links":[{"SourceID":131285,"TargetID":131289,"Directional":true}]},{"ID":21257,"SourceStructureID":131364,"TargetStructureID":608,"Label":"131364-608 via Conventional from 131365 -> 131363","Type":"Conventional","Directional":true,"Links":[{"SourceID":131365,"TargetID":131363,"Directional":true}]},{"ID":21258,"SourceStructureID":131496,"TargetStructureID":7568,"Label":"131496-7568 via Ribbon Synapse from 131500 -> 27079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131500,"TargetID":27079,"Directional":true}]},{"ID":21259,"SourceStructureID":131516,"TargetStructureID":5285,"Label":"131516-5285 via Ribbon Synapse from 131528 -> 5302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131528,"TargetID":5302,"Directional":true}]},{"ID":21260,"SourceStructureID":131516,"TargetStructureID":9787,"Label":"131516-9787 via Ribbon Synapse from 131518 -> 18035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131518,"TargetID":18035,"Directional":true}]},{"ID":21261,"SourceStructureID":131516,"TargetStructureID":10574,"Label":"131516-10574 via Ribbon Synapse from 131528 -> 84555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131528,"TargetID":84555,"Directional":true}]},{"ID":21262,"SourceStructureID":131568,"TargetStructureID":41778,"Label":"131568-41778 via Ribbon Synapse from 131588 -> 41779","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131588,"TargetID":41779,"Directional":true}]},{"ID":21263,"SourceStructureID":131642,"TargetStructureID":5283,"Label":"131642-5283 via Conventional from 131647 -> 131646","Type":"Conventional","Directional":true,"Links":[{"SourceID":131647,"TargetID":131646,"Directional":true}]},{"ID":21264,"SourceStructureID":131642,"TargetStructureID":67361,"Label":"131642-67361 via Conventional from 131644 -> 131645","Type":"Conventional","Directional":true,"Links":[{"SourceID":131644,"TargetID":131645,"Directional":true}]},{"ID":21265,"SourceStructureID":132158,"TargetStructureID":5283,"Label":"132158-5283 via Conventional from 132161 -> 132160","Type":"Conventional","Directional":true,"Links":[{"SourceID":132161,"TargetID":132160,"Directional":true}]},{"ID":21266,"SourceStructureID":132202,"TargetStructureID":165,"Label":"132202-165 via Conventional from 132203 -> 12538","Type":"Conventional","Directional":true,"Links":[{"SourceID":132203,"TargetID":12538,"Directional":true}]},{"ID":21267,"SourceStructureID":132220,"TargetStructureID":3865,"Label":"132220-3865 via Ribbon Synapse from 132221 -> 132222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132221,"TargetID":132222,"Directional":true}]},{"ID":21268,"SourceStructureID":133264,"TargetStructureID":6156,"Label":"133264-6156 via Conventional from 133266 -> 23185","Type":"Conventional","Directional":true,"Links":[{"SourceID":133266,"TargetID":23185,"Directional":true}]},{"ID":21269,"SourceStructureID":133304,"TargetStructureID":6156,"Label":"133304-6156 via Conventional from 133305 -> 133303","Type":"Conventional","Directional":true,"Links":[{"SourceID":133305,"TargetID":133303,"Directional":true}]},{"ID":21270,"SourceStructureID":133755,"TargetStructureID":133757,"Label":"133755-133757 via Conventional from 133756 -> 133758","Type":"Conventional","Directional":true,"Links":[{"SourceID":133756,"TargetID":133758,"Directional":true}]},{"ID":21271,"SourceStructureID":133779,"TargetStructureID":13525,"Label":"133779-13525 via Conventional from 133781 -> 129031","Type":"Conventional","Directional":true,"Links":[{"SourceID":133781,"TargetID":129031,"Directional":true}]},{"ID":21272,"SourceStructureID":133782,"TargetStructureID":13525,"Label":"133782-13525 via Conventional from 133783 -> 129043","Type":"Conventional","Directional":true,"Links":[{"SourceID":133783,"TargetID":129043,"Directional":true}]},{"ID":21273,"SourceStructureID":133784,"TargetStructureID":13525,"Label":"133784-13525 via Conventional from 133785 -> 129130","Type":"Conventional","Directional":true,"Links":[{"SourceID":133785,"TargetID":129130,"Directional":true}]},{"ID":21274,"SourceStructureID":133786,"TargetStructureID":13525,"Label":"133786-13525 via Conventional from 133787 -> 130233","Type":"Conventional","Directional":true,"Links":[{"SourceID":133787,"TargetID":130233,"Directional":true}]},{"ID":21275,"SourceStructureID":133804,"TargetStructureID":13525,"Label":"133804-13525 via Conventional from 133805 -> 129027","Type":"Conventional","Directional":true,"Links":[{"SourceID":133805,"TargetID":129027,"Directional":true}]},{"ID":21276,"SourceStructureID":134553,"TargetStructureID":7129,"Label":"134553-7129 via Conventional from 3695 -> 54019, 3758 -> 54029","Type":"Conventional","Directional":true,"Links":[{"SourceID":3695,"TargetID":54019,"Directional":true},{"SourceID":3758,"TargetID":54029,"Directional":true}]},{"ID":21277,"SourceStructureID":134553,"TargetStructureID":16026,"Label":"134553-16026 via Conventional from 3697 -> 22328","Type":"Conventional","Directional":true,"Links":[{"SourceID":3697,"TargetID":22328,"Directional":true}]},{"ID":21278,"SourceStructureID":135183,"TargetStructureID":70987,"Label":"135183-70987 via Conventional from 135184 -> 71022","Type":"Conventional","Directional":true,"Links":[{"SourceID":135184,"TargetID":71022,"Directional":true}]},{"ID":21279,"SourceStructureID":135186,"TargetStructureID":135183,"Label":"135186-135183 via Conventional from 135187 -> 135185","Type":"Conventional","Directional":true,"Links":[{"SourceID":135187,"TargetID":135185,"Directional":true}]},{"ID":21280,"SourceStructureID":135196,"TargetStructureID":334,"Label":"135196-334 via Conventional from 135197 -> 135198","Type":"Conventional","Directional":true,"Links":[{"SourceID":135197,"TargetID":135198,"Directional":true}]},{"ID":21281,"SourceStructureID":135208,"TargetStructureID":5117,"Label":"135208-5117 via Conventional from 135209 -> 135206","Type":"Conventional","Directional":true,"Links":[{"SourceID":135209,"TargetID":135206,"Directional":true}]},{"ID":21282,"SourceStructureID":135213,"TargetStructureID":5117,"Label":"135213-5117 via Ribbon Synapse from 135217 -> 135218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135217,"TargetID":135218,"Directional":true}]},{"ID":21283,"SourceStructureID":135225,"TargetStructureID":135862,"Label":"135225-135862 via Conventional from 135864 -> 135863","Type":"Conventional","Directional":true,"Links":[{"SourceID":135864,"TargetID":135863,"Directional":true}]},{"ID":21284,"SourceStructureID":135225,"TargetStructureID":135884,"Label":"135225-135884 via Conventional from 135883 -> 135885","Type":"Conventional","Directional":true,"Links":[{"SourceID":135883,"TargetID":135885,"Directional":true}]},{"ID":21285,"SourceStructureID":135225,"TargetStructureID":135909,"Label":"135225-135909 via Conventional from 135234 -> 135910","Type":"Conventional","Directional":true,"Links":[{"SourceID":135234,"TargetID":135910,"Directional":true}]},{"ID":21286,"SourceStructureID":135225,"TargetStructureID":135924,"Label":"135225-135924 via Conventional from 135235 -> 135925","Type":"Conventional","Directional":true,"Links":[{"SourceID":135235,"TargetID":135925,"Directional":true}]},{"ID":21287,"SourceStructureID":135225,"TargetStructureID":135982,"Label":"135225-135982 via Conventional from 135828 -> 135983","Type":"Conventional","Directional":true,"Links":[{"SourceID":135828,"TargetID":135983,"Directional":true}]},{"ID":21288,"SourceStructureID":135225,"TargetStructureID":136005,"Label":"135225-136005 via Conventional from 136004 -> 136006","Type":"Conventional","Directional":true,"Links":[{"SourceID":136004,"TargetID":136006,"Directional":true}]},{"ID":21289,"SourceStructureID":135225,"TargetStructureID":136042,"Label":"135225-136042 via Conventional from 135252 -> 136043","Type":"Conventional","Directional":true,"Links":[{"SourceID":135252,"TargetID":136043,"Directional":true}]},{"ID":21290,"SourceStructureID":135225,"TargetStructureID":136046,"Label":"135225-136046 via Conventional from 135251 -> 136048","Type":"Conventional","Directional":true,"Links":[{"SourceID":135251,"TargetID":136048,"Directional":true}]},{"ID":21291,"SourceStructureID":135229,"TargetStructureID":135225,"Label":"135229-135225 via Conventional from 135230 -> 135228","Type":"Conventional","Directional":true,"Links":[{"SourceID":135230,"TargetID":135228,"Directional":true}]},{"ID":21292,"SourceStructureID":135258,"TargetStructureID":135225,"Label":"135258-135225 via Conventional from 135259 -> 135257","Type":"Conventional","Directional":true,"Links":[{"SourceID":135259,"TargetID":135257,"Directional":true}]},{"ID":21293,"SourceStructureID":135281,"TargetStructureID":135225,"Label":"135281-135225 via Conventional from 135283 -> 135279","Type":"Conventional","Directional":true,"Links":[{"SourceID":135283,"TargetID":135279,"Directional":true}]},{"ID":21294,"SourceStructureID":135563,"TargetStructureID":5530,"Label":"135563-5530 via Conventional from 135565 -> 135564","Type":"Conventional","Directional":true,"Links":[{"SourceID":135565,"TargetID":135564,"Directional":true}]},{"ID":21295,"SourceStructureID":135877,"TargetStructureID":135225,"Label":"135877-135225 via Ribbon Synapse from 135881 -> 135882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135881,"TargetID":135882,"Directional":true}]},{"ID":21296,"SourceStructureID":135877,"TargetStructureID":135876,"Label":"135877-135876 via Ribbon Synapse from 135879 -> 135880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135879,"TargetID":135880,"Directional":true}]},{"ID":21297,"SourceStructureID":135941,"TargetStructureID":135225,"Label":"135941-135225 via Conventional from 135945 -> 135946","Type":"Conventional","Directional":true,"Links":[{"SourceID":135945,"TargetID":135946,"Directional":true}]},{"ID":21298,"SourceStructureID":135994,"TargetStructureID":135225,"Label":"135994-135225 via Conventional from 135996 -> 135997","Type":"Conventional","Directional":true,"Links":[{"SourceID":135996,"TargetID":135997,"Directional":true}]},{"ID":21299,"SourceStructureID":136026,"TargetStructureID":135225,"Label":"136026-135225 via Conventional from 136027 -> 135246","Type":"Conventional","Directional":true,"Links":[{"SourceID":136027,"TargetID":135246,"Directional":true}]},{"ID":21300,"SourceStructureID":136033,"TargetStructureID":135225,"Label":"136033-135225 via Ribbon Synapse from 136034 -> 136035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136034,"TargetID":136035,"Directional":true}]},{"ID":21301,"SourceStructureID":136037,"TargetStructureID":135225,"Label":"136037-135225 via Conventional from 136038 -> 135249","Type":"Conventional","Directional":true,"Links":[{"SourceID":136038,"TargetID":135249,"Directional":true}]},{"ID":21302,"SourceStructureID":136075,"TargetStructureID":135225,"Label":"136075-135225 via Conventional from 136076 -> 135277","Type":"Conventional","Directional":true,"Links":[{"SourceID":136076,"TargetID":135277,"Directional":true}]},{"ID":21303,"SourceStructureID":136127,"TargetStructureID":11238,"Label":"136127-11238 via Ribbon Synapse from 136129 -> 136124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136129,"TargetID":136124,"Directional":true}]},{"ID":21304,"SourceStructureID":136140,"TargetStructureID":11238,"Label":"136140-11238 via Ribbon Synapse from 136141 -> 136139","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136141,"TargetID":136139,"Directional":true}]},{"ID":21305,"SourceStructureID":136256,"TargetStructureID":7361,"Label":"136256-7361 via Conventional from 136257 -> 136255, 136259 -> 136258","Type":"Conventional","Directional":true,"Links":[{"SourceID":136257,"TargetID":136255,"Directional":true},{"SourceID":136259,"TargetID":136258,"Directional":true}]},{"ID":21306,"SourceStructureID":136291,"TargetStructureID":11238,"Label":"136291-11238 via Ribbon Synapse from 136292 -> 136293","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136292,"TargetID":136293,"Directional":true}]},{"ID":21307,"SourceStructureID":136362,"TargetStructureID":28950,"Label":"136362-28950 via Conventional from 136363 -> 136360","Type":"Conventional","Directional":true,"Links":[{"SourceID":136363,"TargetID":136360,"Directional":true}]},{"ID":21308,"SourceStructureID":136381,"TargetStructureID":5582,"Label":"136381-5582 via Conventional from 136382 -> 136380","Type":"Conventional","Directional":true,"Links":[{"SourceID":136382,"TargetID":136380,"Directional":true}]},{"ID":21309,"SourceStructureID":136513,"TargetStructureID":136432,"Label":"136513-136432 via Ribbon Synapse from 136514 -> 136512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136514,"TargetID":136512,"Directional":true}]},{"ID":21310,"SourceStructureID":136529,"TargetStructureID":136432,"Label":"136529-136432 via Ribbon Synapse from 136530 -> 136528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136530,"TargetID":136528,"Directional":true}]},{"ID":21311,"SourceStructureID":136674,"TargetStructureID":525,"Label":"136674-525 via Conventional from 136675 -> 6236","Type":"Conventional","Directional":true,"Links":[{"SourceID":136675,"TargetID":6236,"Directional":true}]},{"ID":21312,"SourceStructureID":136674,"TargetStructureID":6997,"Label":"136674-6997 via Unknown from 136676 -> 136562","Type":"Unknown","Directional":true,"Links":[{"SourceID":136676,"TargetID":136562,"Directional":true}]},{"ID":21313,"SourceStructureID":136796,"TargetStructureID":5515,"Label":"136796-5515 via Conventional from 136811 -> 119383","Type":"Conventional","Directional":true,"Links":[{"SourceID":136811,"TargetID":119383,"Directional":true}]},{"ID":21314,"SourceStructureID":136843,"TargetStructureID":138,"Label":"136843-138 via Conventional from 136844 -> 136842","Type":"Conventional","Directional":true,"Links":[{"SourceID":136844,"TargetID":136842,"Directional":true}]},{"ID":21315,"SourceStructureID":136884,"TargetStructureID":8575,"Label":"136884-8575 via Ribbon Synapse from 136885 -> 62261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136885,"TargetID":62261,"Directional":true}]},{"ID":21316,"SourceStructureID":136913,"TargetStructureID":10963,"Label":"136913-10963 via Conventional from 136915 -> 136911","Type":"Conventional","Directional":true,"Links":[{"SourceID":136915,"TargetID":136911,"Directional":true}]},{"ID":21317,"SourceStructureID":136917,"TargetStructureID":10963,"Label":"136917-10963 via Conventional from 136918 -> 136916","Type":"Conventional","Directional":true,"Links":[{"SourceID":136918,"TargetID":136916,"Directional":true}]},{"ID":21318,"SourceStructureID":136927,"TargetStructureID":136931,"Label":"136927-136931 via Ribbon Synapse from 136929 -> 136935","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136929,"TargetID":136935,"Directional":true}]},{"ID":21319,"SourceStructureID":136936,"TargetStructureID":136931,"Label":"136936-136931 via Ribbon Synapse from 136937 -> 136938","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136937,"TargetID":136938,"Directional":true}]},{"ID":21320,"SourceStructureID":136947,"TargetStructureID":46741,"Label":"136947-46741 via Ribbon Synapse from 136948 -> 136946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136948,"TargetID":136946,"Directional":true}]},{"ID":21321,"SourceStructureID":136952,"TargetStructureID":46741,"Label":"136952-46741 via Ribbon Synapse from 136953 -> 136951, 136960 -> 136961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136953,"TargetID":136951,"Directional":true},{"SourceID":136960,"TargetID":136961,"Directional":true}]},{"ID":21322,"SourceStructureID":136956,"TargetStructureID":165,"Label":"136956-165 via Conventional from 136957 -> 21667","Type":"Conventional","Directional":true,"Links":[{"SourceID":136957,"TargetID":21667,"Directional":true}]},{"ID":21323,"SourceStructureID":136970,"TargetStructureID":165,"Label":"136970-165 via Conventional from 136971 -> 21665","Type":"Conventional","Directional":true,"Links":[{"SourceID":136971,"TargetID":21665,"Directional":true}]},{"ID":21324,"SourceStructureID":136970,"TargetStructureID":5543,"Label":"136970-5543 via Conventional from 136991 -> 17079","Type":"Conventional","Directional":true,"Links":[{"SourceID":136991,"TargetID":17079,"Directional":true}]},{"ID":21325,"SourceStructureID":136970,"TargetStructureID":11092,"Label":"136970-11092 via Conventional from 136992 -> 128637","Type":"Conventional","Directional":true,"Links":[{"SourceID":136992,"TargetID":128637,"Directional":true}]},{"ID":21326,"SourceStructureID":136970,"TargetStructureID":46741,"Label":"136970-46741 via Conventional from 136972 -> 136959","Type":"Conventional","Directional":true,"Links":[{"SourceID":136972,"TargetID":136959,"Directional":true}]},{"ID":21327,"SourceStructureID":136970,"TargetStructureID":98127,"Label":"136970-98127 via Conventional from 136975 -> 98916","Type":"Conventional","Directional":true,"Links":[{"SourceID":136975,"TargetID":98916,"Directional":true}]},{"ID":21328,"SourceStructureID":136970,"TargetStructureID":158774,"Label":"136970-158774 via Conventional from 136973 -> 158775","Type":"Conventional","Directional":true,"Links":[{"SourceID":136973,"TargetID":158775,"Directional":true}]},{"ID":21329,"SourceStructureID":137002,"TargetStructureID":46741,"Label":"137002-46741 via Ribbon Synapse from 137003 -> 137001","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137003,"TargetID":137001,"Directional":true}]},{"ID":21330,"SourceStructureID":137007,"TargetStructureID":28950,"Label":"137007-28950 via Conventional from 137008 -> 29042","Type":"Conventional","Directional":true,"Links":[{"SourceID":137008,"TargetID":29042,"Directional":true}]},{"ID":21331,"SourceStructureID":137009,"TargetStructureID":6128,"Label":"137009-6128 via Conventional from 137011 -> 33749","Type":"Conventional","Directional":true,"Links":[{"SourceID":137011,"TargetID":33749,"Directional":true}]},{"ID":21332,"SourceStructureID":137009,"TargetStructureID":28950,"Label":"137009-28950 via Conventional from 137010 -> 29040","Type":"Conventional","Directional":true,"Links":[{"SourceID":137010,"TargetID":29040,"Directional":true}]},{"ID":21333,"SourceStructureID":137012,"TargetStructureID":11092,"Label":"137012-11092 via Conventional from 137014 -> 128646","Type":"Conventional","Directional":true,"Links":[{"SourceID":137014,"TargetID":128646,"Directional":true}]},{"ID":21334,"SourceStructureID":137040,"TargetStructureID":137024,"Label":"137040-137024 via Ribbon Synapse from 137041 -> 137039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137041,"TargetID":137039,"Directional":true}]},{"ID":21335,"SourceStructureID":137070,"TargetStructureID":7861,"Label":"137070-7861 via Ribbon Synapse from 137082 -> 137083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137082,"TargetID":137083,"Directional":true}]},{"ID":21336,"SourceStructureID":137070,"TargetStructureID":137084,"Label":"137070-137084 via Ribbon Synapse from 137086 -> 137087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137086,"TargetID":137087,"Directional":true}]},{"ID":21337,"SourceStructureID":137084,"TargetStructureID":137070,"Label":"137084-137070 via Conventional from 137085 -> 137081","Type":"Conventional","Directional":true,"Links":[{"SourceID":137085,"TargetID":137081,"Directional":true}]},{"ID":21338,"SourceStructureID":137099,"TargetStructureID":46741,"Label":"137099-46741 via Conventional from 137100 -> 137097","Type":"Conventional","Directional":true,"Links":[{"SourceID":137100,"TargetID":137097,"Directional":true}]},{"ID":21339,"SourceStructureID":137113,"TargetStructureID":341,"Label":"137113-341 via Conventional from 137114 -> 30055","Type":"Conventional","Directional":true,"Links":[{"SourceID":137114,"TargetID":30055,"Directional":true}]},{"ID":21340,"SourceStructureID":137147,"TargetStructureID":137122,"Label":"137147-137122 via Conventional from 137148 -> 137149","Type":"Conventional","Directional":true,"Links":[{"SourceID":137148,"TargetID":137149,"Directional":true}]},{"ID":21341,"SourceStructureID":137155,"TargetStructureID":137122,"Label":"137155-137122 via Ribbon Synapse from 137156 -> 137153","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137156,"TargetID":137153,"Directional":true}]},{"ID":21342,"SourceStructureID":137159,"TargetStructureID":968,"Label":"137159-968 via Conventional from 31350 -> 12181","Type":"Conventional","Directional":true,"Links":[{"SourceID":31350,"TargetID":12181,"Directional":true}]},{"ID":21343,"SourceStructureID":137159,"TargetStructureID":137122,"Label":"137159-137122 via Conventional from 137160 -> 137158","Type":"Conventional","Directional":true,"Links":[{"SourceID":137160,"TargetID":137158,"Directional":true}]},{"ID":21344,"SourceStructureID":137159,"TargetStructureID":147217,"Label":"137159-147217 via Conventional from 147216 -> 147218","Type":"Conventional","Directional":true,"Links":[{"SourceID":147216,"TargetID":147218,"Directional":true}]},{"ID":21345,"SourceStructureID":137162,"TargetStructureID":137159,"Label":"137162-137159 via Ribbon Synapse from 137163 -> 137161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137163,"TargetID":137161,"Directional":true}]},{"ID":21346,"SourceStructureID":137168,"TargetStructureID":137122,"Label":"137168-137122 via Ribbon Synapse from 137169 -> 137167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137169,"TargetID":137167,"Directional":true}]},{"ID":21347,"SourceStructureID":137189,"TargetStructureID":38810,"Label":"137189-38810 via BC Conventional Synapse from 137195 -> 137188","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":137195,"TargetID":137188,"Directional":true}]},{"ID":21348,"SourceStructureID":137189,"TargetStructureID":137192,"Label":"137189-137192 via Ribbon Synapse from 137191 -> 137193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137191,"TargetID":137193,"Directional":true}]},{"ID":21349,"SourceStructureID":137192,"TargetStructureID":137189,"Label":"137192-137189 via Conventional from 137194 -> 137190","Type":"Conventional","Directional":true,"Links":[{"SourceID":137194,"TargetID":137190,"Directional":true}]},{"ID":21350,"SourceStructureID":147203,"TargetStructureID":38810,"Label":"147203-38810 via Conventional from 147204 -> 137186","Type":"Conventional","Directional":true,"Links":[{"SourceID":147204,"TargetID":137186,"Directional":true}]},{"ID":21351,"SourceStructureID":147213,"TargetStructureID":115,"Label":"147213-115 via Ribbon Synapse from 147215 -> 42778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147215,"TargetID":42778,"Directional":true}]},{"ID":21352,"SourceStructureID":147213,"TargetStructureID":137159,"Label":"147213-137159 via Ribbon Synapse from 147214 -> 147212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147214,"TargetID":147212,"Directional":true}]},{"ID":21353,"SourceStructureID":147220,"TargetStructureID":8575,"Label":"147220-8575 via BC Conventional Synapse from 147223 -> 147219","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147223,"TargetID":147219,"Directional":true}]},{"ID":21354,"SourceStructureID":147696,"TargetStructureID":168,"Label":"147696-168 via Conventional from 147736 -> 147737, 147738 -> 4224","Type":"Conventional","Directional":true,"Links":[{"SourceID":147736,"TargetID":147737,"Directional":true},{"SourceID":147738,"TargetID":4224,"Directional":true}]},{"ID":21355,"SourceStructureID":147696,"TargetStructureID":170,"Label":"147696-170 via Conventional from 88972 -> 88973, 147743 -> 1333","Type":"Conventional","Directional":true,"Links":[{"SourceID":88972,"TargetID":88973,"Directional":true},{"SourceID":147743,"TargetID":1333,"Directional":true}]},{"ID":21356,"SourceStructureID":147696,"TargetStructureID":176,"Label":"147696-176 via Conventional from 147707 -> 125825, 147710 -> 5887, 147715 -> 5882, 147732 -> 20030","Type":"Conventional","Directional":true,"Links":[{"SourceID":147707,"TargetID":125825,"Directional":true},{"SourceID":147710,"TargetID":5887,"Directional":true},{"SourceID":147715,"TargetID":5882,"Directional":true},{"SourceID":147732,"TargetID":20030,"Directional":true}]},{"ID":21357,"SourceStructureID":147696,"TargetStructureID":464,"Label":"147696-464 via Conventional from 147754 -> 8068","Type":"Conventional","Directional":true,"Links":[{"SourceID":147754,"TargetID":8068,"Directional":true}]},{"ID":21358,"SourceStructureID":147696,"TargetStructureID":595,"Label":"147696-595 via Conventional from 147741 -> 46636","Type":"Conventional","Directional":true,"Links":[{"SourceID":147741,"TargetID":46636,"Directional":true}]},{"ID":21359,"SourceStructureID":147696,"TargetStructureID":5530,"Label":"147696-5530 via Conventional from 147728 -> 42147","Type":"Conventional","Directional":true,"Links":[{"SourceID":147728,"TargetID":42147,"Directional":true}]},{"ID":21360,"SourceStructureID":147696,"TargetStructureID":5601,"Label":"147696-5601 via Conventional from 147700 -> 127429","Type":"Conventional","Directional":true,"Links":[{"SourceID":147700,"TargetID":127429,"Directional":true}]},{"ID":21361,"SourceStructureID":147696,"TargetStructureID":8580,"Label":"147696-8580 via Conventional from 147705 -> 147706","Type":"Conventional","Directional":true,"Links":[{"SourceID":147705,"TargetID":147706,"Directional":true}]},{"ID":21362,"SourceStructureID":147696,"TargetStructureID":43716,"Label":"147696-43716 via Conventional from 147697 -> 147695","Type":"Conventional","Directional":true,"Links":[{"SourceID":147697,"TargetID":147695,"Directional":true}]},{"ID":21363,"SourceStructureID":147696,"TargetStructureID":81014,"Label":"147696-81014 via Conventional from 147726 -> 147727","Type":"Conventional","Directional":true,"Links":[{"SourceID":147726,"TargetID":147727,"Directional":true}]},{"ID":21364,"SourceStructureID":147696,"TargetStructureID":88954,"Label":"147696-88954 via Conventional from 147744 -> 147745","Type":"Conventional","Directional":true,"Links":[{"SourceID":147744,"TargetID":147745,"Directional":true}]},{"ID":21365,"SourceStructureID":147696,"TargetStructureID":127764,"Label":"147696-127764 via Conventional from 147711 -> 129275","Type":"Conventional","Directional":true,"Links":[{"SourceID":147711,"TargetID":129275,"Directional":true}]},{"ID":21366,"SourceStructureID":147696,"TargetStructureID":147713,"Label":"147696-147713 via Conventional from 147712 -> 147716","Type":"Conventional","Directional":true,"Links":[{"SourceID":147712,"TargetID":147716,"Directional":true}]},{"ID":21367,"SourceStructureID":147696,"TargetStructureID":147750,"Label":"147696-147750 via Conventional from 147749 -> 147752","Type":"Conventional","Directional":true,"Links":[{"SourceID":147749,"TargetID":147752,"Directional":true}]},{"ID":21368,"SourceStructureID":147698,"TargetStructureID":5601,"Label":"147698-5601 via Conventional from 147699 -> 23970","Type":"Conventional","Directional":true,"Links":[{"SourceID":147699,"TargetID":23970,"Directional":true}]},{"ID":21369,"SourceStructureID":147718,"TargetStructureID":147696,"Label":"147718-147696 via Conventional from 147719 -> 147717","Type":"Conventional","Directional":true,"Links":[{"SourceID":147719,"TargetID":147717,"Directional":true}]},{"ID":21370,"SourceStructureID":147734,"TargetStructureID":147696,"Label":"147734-147696 via Conventional from 147735 -> 147733","Type":"Conventional","Directional":true,"Links":[{"SourceID":147735,"TargetID":147733,"Directional":true}]},{"ID":21371,"SourceStructureID":147750,"TargetStructureID":41905,"Label":"147750-41905 via Conventional from 147751 -> 41907","Type":"Conventional","Directional":true,"Links":[{"SourceID":147751,"TargetID":41907,"Directional":true}]},{"ID":21372,"SourceStructureID":147765,"TargetStructureID":15796,"Label":"147765-15796 via Conventional from 147766 -> 147764","Type":"Conventional","Directional":true,"Links":[{"SourceID":147766,"TargetID":147764,"Directional":true}]},{"ID":21373,"SourceStructureID":147769,"TargetStructureID":15796,"Label":"147769-15796 via Conventional from 147770 -> 147768","Type":"Conventional","Directional":true,"Links":[{"SourceID":147770,"TargetID":147768,"Directional":true}]},{"ID":21374,"SourceStructureID":147776,"TargetStructureID":15796,"Label":"147776-15796 via Conventional from 147777 -> 147775","Type":"Conventional","Directional":true,"Links":[{"SourceID":147777,"TargetID":147775,"Directional":true}]},{"ID":21375,"SourceStructureID":147781,"TargetStructureID":15796,"Label":"147781-15796 via Conventional from 147782 -> 147780","Type":"Conventional","Directional":true,"Links":[{"SourceID":147782,"TargetID":147780,"Directional":true}]},{"ID":21376,"SourceStructureID":147781,"TargetStructureID":120347,"Label":"147781-120347 via Conventional from 147783 -> 147784","Type":"Conventional","Directional":true,"Links":[{"SourceID":147783,"TargetID":147784,"Directional":true}]},{"ID":21377,"SourceStructureID":147788,"TargetStructureID":15796,"Label":"147788-15796 via Conventional from 147789 -> 147787","Type":"Conventional","Directional":true,"Links":[{"SourceID":147789,"TargetID":147787,"Directional":true}]},{"ID":21378,"SourceStructureID":147793,"TargetStructureID":5107,"Label":"147793-5107 via Conventional from 147794 -> 5143","Type":"Conventional","Directional":true,"Links":[{"SourceID":147794,"TargetID":5143,"Directional":true}]},{"ID":21379,"SourceStructureID":147796,"TargetStructureID":5107,"Label":"147796-5107 via Ribbon Synapse from 147797 -> 147795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147797,"TargetID":147795,"Directional":true}]},{"ID":21380,"SourceStructureID":147805,"TargetStructureID":5107,"Label":"147805-5107 via Conventional from 147806 -> 64968","Type":"Conventional","Directional":true,"Links":[{"SourceID":147806,"TargetID":64968,"Directional":true}]},{"ID":21381,"SourceStructureID":147809,"TargetStructureID":476,"Label":"147809-476 via Ribbon Synapse from 147811 -> 147812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147811,"TargetID":147812,"Directional":true}]},{"ID":21382,"SourceStructureID":147809,"TargetStructureID":5107,"Label":"147809-5107 via Ribbon Synapse from 147810 -> 147808","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147810,"TargetID":147808,"Directional":true}]},{"ID":21383,"SourceStructureID":147809,"TargetStructureID":5421,"Label":"147809-5421 via Ribbon Synapse from 147810 -> 130890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147810,"TargetID":130890,"Directional":true}]},{"ID":21384,"SourceStructureID":148302,"TargetStructureID":6123,"Label":"148302-6123 via Conventional from 148305 -> 148299","Type":"Conventional","Directional":true,"Links":[{"SourceID":148305,"TargetID":148299,"Directional":true}]},{"ID":21385,"SourceStructureID":148314,"TargetStructureID":5107,"Label":"148314-5107 via Conventional from 148315 -> 148313","Type":"Conventional","Directional":true,"Links":[{"SourceID":148315,"TargetID":148313,"Directional":true}]},{"ID":21386,"SourceStructureID":148317,"TargetStructureID":5107,"Label":"148317-5107 via Conventional from 148318 -> 148319","Type":"Conventional","Directional":true,"Links":[{"SourceID":148318,"TargetID":148319,"Directional":true}]},{"ID":21387,"SourceStructureID":148330,"TargetStructureID":5107,"Label":"148330-5107 via Conventional from 148331 -> 148329","Type":"Conventional","Directional":true,"Links":[{"SourceID":148331,"TargetID":148329,"Directional":true}]},{"ID":21388,"SourceStructureID":148332,"TargetStructureID":5107,"Label":"148332-5107 via Conventional from 148333 -> 148328","Type":"Conventional","Directional":true,"Links":[{"SourceID":148333,"TargetID":148328,"Directional":true}]},{"ID":21389,"SourceStructureID":148335,"TargetStructureID":5107,"Label":"148335-5107 via Conventional from 148336 -> 148334","Type":"Conventional","Directional":true,"Links":[{"SourceID":148336,"TargetID":148334,"Directional":true}]},{"ID":21390,"SourceStructureID":148337,"TargetStructureID":5107,"Label":"148337-5107 via Conventional from 148338 -> 148339","Type":"Conventional","Directional":true,"Links":[{"SourceID":148338,"TargetID":148339,"Directional":true}]},{"ID":21391,"SourceStructureID":148343,"TargetStructureID":148335,"Label":"148343-148335 via Conventional from 148344 -> 148342","Type":"Conventional","Directional":true,"Links":[{"SourceID":148344,"TargetID":148342,"Directional":true}]},{"ID":21392,"SourceStructureID":148346,"TargetStructureID":5107,"Label":"148346-5107 via Conventional from 148347 -> 148345","Type":"Conventional","Directional":true,"Links":[{"SourceID":148347,"TargetID":148345,"Directional":true}]},{"ID":21393,"SourceStructureID":148351,"TargetStructureID":5107,"Label":"148351-5107 via Conventional from 148352 -> 148350","Type":"Conventional","Directional":true,"Links":[{"SourceID":148352,"TargetID":148350,"Directional":true}]},{"ID":21394,"SourceStructureID":148354,"TargetStructureID":5107,"Label":"148354-5107 via Conventional from 148355 -> 148356","Type":"Conventional","Directional":true,"Links":[{"SourceID":148355,"TargetID":148356,"Directional":true}]},{"ID":21395,"SourceStructureID":148358,"TargetStructureID":5107,"Label":"148358-5107 via Conventional from 148359 -> 148357","Type":"Conventional","Directional":true,"Links":[{"SourceID":148359,"TargetID":148357,"Directional":true}]},{"ID":21396,"SourceStructureID":148361,"TargetStructureID":5107,"Label":"148361-5107 via Conventional from 148362 -> 148360","Type":"Conventional","Directional":true,"Links":[{"SourceID":148362,"TargetID":148360,"Directional":true}]},{"ID":21397,"SourceStructureID":148364,"TargetStructureID":5107,"Label":"148364-5107 via Conventional from 148365 -> 148363","Type":"Conventional","Directional":true,"Links":[{"SourceID":148365,"TargetID":148363,"Directional":true}]},{"ID":21398,"SourceStructureID":148367,"TargetStructureID":5107,"Label":"148367-5107 via Conventional from 148368 -> 148366","Type":"Conventional","Directional":true,"Links":[{"SourceID":148368,"TargetID":148366,"Directional":true}]},{"ID":21399,"SourceStructureID":148371,"TargetStructureID":5107,"Label":"148371-5107 via Conventional from 148372 -> 148370","Type":"Conventional","Directional":true,"Links":[{"SourceID":148372,"TargetID":148370,"Directional":true}]},{"ID":21400,"SourceStructureID":148374,"TargetStructureID":148371,"Label":"148374-148371 via Conventional from 148375 -> 148373","Type":"Conventional","Directional":true,"Links":[{"SourceID":148375,"TargetID":148373,"Directional":true}]},{"ID":21401,"SourceStructureID":148377,"TargetStructureID":148374,"Label":"148377-148374 via Ribbon Synapse from 148378 -> 148376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148378,"TargetID":148376,"Directional":true}]},{"ID":21402,"SourceStructureID":148381,"TargetStructureID":148374,"Label":"148381-148374 via Conventional from 148382 -> 148380","Type":"Conventional","Directional":true,"Links":[{"SourceID":148382,"TargetID":148380,"Directional":true}]},{"ID":21403,"SourceStructureID":148384,"TargetStructureID":148374,"Label":"148384-148374 via Ribbon Synapse from 148385 -> 148383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148385,"TargetID":148383,"Directional":true}]},{"ID":21404,"SourceStructureID":148389,"TargetStructureID":85629,"Label":"148389-85629 via Ribbon Synapse from 148390 -> 85840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148390,"TargetID":85840,"Directional":true}]},{"ID":21405,"SourceStructureID":148397,"TargetStructureID":148374,"Label":"148397-148374 via Ribbon Synapse from 148398 -> 148399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148398,"TargetID":148399,"Directional":true}]},{"ID":21406,"SourceStructureID":148402,"TargetStructureID":148374,"Label":"148402-148374 via Conventional from 148403 -> 148401","Type":"Conventional","Directional":true,"Links":[{"SourceID":148403,"TargetID":148401,"Directional":true}]},{"ID":21407,"SourceStructureID":158498,"TargetStructureID":13525,"Label":"158498-13525 via Conventional from 158499 -> 158500","Type":"Conventional","Directional":true,"Links":[{"SourceID":158499,"TargetID":158500,"Directional":true}]},{"ID":21408,"SourceStructureID":158503,"TargetStructureID":158472,"Label":"158503-158472 via Conventional from 158504 -> 158502","Type":"Conventional","Directional":true,"Links":[{"SourceID":158504,"TargetID":158502,"Directional":true}]},{"ID":21409,"SourceStructureID":158507,"TargetStructureID":158472,"Label":"158507-158472 via Conventional from 158508 -> 158506","Type":"Conventional","Directional":true,"Links":[{"SourceID":158508,"TargetID":158506,"Directional":true}]},{"ID":21410,"SourceStructureID":158518,"TargetStructureID":13525,"Label":"158518-13525 via Ribbon Synapse from 158519 -> 158501, 158533 -> 158534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":158519,"TargetID":158501,"Directional":true},{"SourceID":158533,"TargetID":158534,"Directional":true}]},{"ID":21411,"SourceStructureID":158846,"TargetStructureID":7157,"Label":"158846-7157 via Ribbon Synapse from 158849 -> 8211, 158851 -> 8209, 158852 -> 8208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":158849,"TargetID":8211,"Directional":true},{"SourceID":158851,"TargetID":8209,"Directional":true},{"SourceID":158852,"TargetID":8208,"Directional":true}]},{"ID":21412,"SourceStructureID":158878,"TargetStructureID":30015,"Label":"158878-30015 via Ribbon Synapse from 158882 -> 30030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":158882,"TargetID":30030,"Directional":true}]},{"ID":21413,"SourceStructureID":158899,"TargetStructureID":5435,"Label":"158899-5435 via Ribbon Synapse from 158903 -> 41816, 158964 -> 41818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":158903,"TargetID":41816,"Directional":true},{"SourceID":158964,"TargetID":41818,"Directional":true}]},{"ID":21414,"SourceStructureID":159028,"TargetStructureID":61270,"Label":"159028-61270 via Ribbon Synapse from 159029 -> 68864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":159029,"TargetID":68864,"Directional":true}]},{"ID":21415,"SourceStructureID":159045,"TargetStructureID":115,"Label":"159045-115 via Ribbon Synapse from 159071 -> 8113, 159074 -> 8111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":159071,"TargetID":8113,"Directional":true},{"SourceID":159074,"TargetID":8111,"Directional":true}]},{"ID":21416,"SourceStructureID":159118,"TargetStructureID":158477,"Label":"159118-158477 via Conventional from 159119 -> 158478","Type":"Conventional","Directional":true,"Links":[{"SourceID":159119,"TargetID":158478,"Directional":true}]},{"ID":21417,"SourceStructureID":159123,"TargetStructureID":158477,"Label":"159123-158477 via Conventional from 159124 -> 158509","Type":"Conventional","Directional":true,"Links":[{"SourceID":159124,"TargetID":158509,"Directional":true}]},{"ID":21418,"SourceStructureID":159125,"TargetStructureID":158473,"Label":"159125-158473 via Ribbon Synapse from 159126 -> 158511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":159126,"TargetID":158511,"Directional":true}]},{"ID":21419,"SourceStructureID":159146,"TargetStructureID":158515,"Label":"159146-158515 via Conventional from 159147 -> 158516","Type":"Conventional","Directional":true,"Links":[{"SourceID":159147,"TargetID":158516,"Directional":true}]},{"ID":21420,"SourceStructureID":159150,"TargetStructureID":13525,"Label":"159150-13525 via Ribbon Synapse from 159151 -> 158474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":159151,"TargetID":158474,"Directional":true}]}]}} \ No newline at end of file From b711c8516d99538a9bd912233c34260a2215ea0c Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Fri, 17 Aug 2018 16:10:28 -0600 Subject: [PATCH 13/24] Add save and load state controls. --- src/app/main/main.controller.js | 65 +++++++------ src/app/main/main.css | 9 +- src/app/main/main.html | 164 +++++++++----------------------- 3 files changed, 89 insertions(+), 149 deletions(-) diff --git a/src/app/main/main.controller.js b/src/app/main/main.controller.js index 7459613..e2fead4 100644 --- a/src/app/main/main.controller.js +++ b/src/app/main/main.controller.js @@ -68,7 +68,6 @@ export class MainController { //this.modalService.getSelectionFromList("Filter by " + attribute, Object.keys(isValueSelected), isValueSelected, modalSuccess); this.activateWithClientOnlyData(); - let useLargeResult = false; let jsonGraph = null; @@ -126,8 +125,6 @@ export class MainController { if (!useLargeResult) { this.activate(jsonGraph, jsonMatrix); } - - // Wait until after the current digest cycle to activate the ui. // If debugging, then automatically manipulate the GUI. @@ -173,7 +170,7 @@ export class MainController { // Callback after the user selects a dataset. let userSelectedDataCallback = function (result) { - self.$log.debug(result); + self.cmModelFactory.setGraphData(result); }; // Called after we have loaded all of the default datasets. @@ -183,7 +180,12 @@ export class MainController { // Pull out data from http responses. let dataValues = []; for (let i = 0; i < results.length; ++i) { - dataValues.push(results[i].data); + let value = { + "name": results[i].config.url, + "nodes": results[i].data.nodes, + "edges": results[i].data.edges + } + dataValues.push(value); } // Ask user. @@ -200,25 +202,24 @@ export class MainController { } activate(jsonGraph, jsonMatrix, jsonQuery) { - // Populate the model with default dataset - this.$log.debug(jsonQuery); let graph = this.cmGraphFactory.createFromJsonObject(jsonGraph, this.database); let matrix = this.cmMatrixFactory.createFromJsonObject(jsonMatrix); this.model = this.cmModelFactory.createModel(graph, matrix); - let query = { - availableNumHops: [1, 2, 3], - selectedNumHops: 2, - nodes: ["CBb.*", "AC", "CBb.*"], - edges: ["*", "*"] - }; + if (!jsonQuery) { + jsonQuery = { + availableNumHops: [1, 2, 3], + selectedNumHops: 2, + nodes: ["CBb.*", "AC", "CBb.*"], + edges: ["*", "*"] + }; + } let self = this; this.$timeout(function () { self.createMatrixAndUi(self.model); - self.$scope.$broadcast("setQuery", query); + self.$scope.$broadcast("setQuery", jsonQuery); }, 1); } - createCategoricalCollapseControls(model) { this.ui.availableCategoricalAttr = ["none"]; this.ui.availableCategoricalAttr = this.ui.availableCategoricalAttr.concat(model.getCmGraph().getCategoricalNodeAttrNames()); @@ -268,7 +269,8 @@ export class MainController { createReorderControls() { this.ui.orders = ["custom", "optimal leaf", "database", "" + - ""]; + "" + ]; this.ui.selectedSortOrder = this.ui.orders[1]; } @@ -366,15 +368,24 @@ export class MainController { } /** - * Load some debugging data. + * Use the hidden file input field to select a json file. */ onLoadClicked() { - let initialData = "/assets/mock/defaultMarclab.json"; - if (this.isProduction) { - initialData = "http://vdl.sci.utah.edu/graffinity/assets/mock/defaultMarclab.json"; - } - this.requestInitialData(initialData); + angular.element('#fileInputElement').click(); + } + /** + * Called when the user selects a file to load. + */ + onLoadFile(fileInput) { + let self = this; + let reader = new FileReader(); + reader.onload = (contents) => { + let data = angular.fromJson(contents.target.result); + self.cmModelFactory.setGraphData(data.data); + self.activate(data.graph, data.matrix, data.query); + } + reader.readAsText(fileInput.files[0]); } /** @@ -449,10 +460,13 @@ export class MainController { let state = { "query": this.queryUi, "matrix": this.model.getCmMatrix().getJsonMatrix(), - "graph": this.model.getCmGraph().getJsonGraph() + "graph": this.model.getCmGraph().getJsonGraph(), + "data": this.cmModelFactory.graph }; let stateString = JSON.stringify(state); - let blob = new Blob([stateString], { "type": "text/plain;" }); + let blob = new Blob([stateString], { + "type": "text/plain;" + }); saveAs(blob, `${this.database}_state.json`); } @@ -490,7 +504,6 @@ export class MainController { this.matrixManager.setSortOrders(rowPerm, colPerm); } - /** * Called when the user wants to filter nodes by a quantitative attributes. Opens a modal containing a * histogram of 'attribute' for all nodes. @@ -544,10 +557,8 @@ export class MainController { this.viewState.resetAttributeFilter(attribute, attributeNodeGroup); } - /** * Used for loading local mocked results. - * @param filename */ requestInitialData(filename) { let self = this; diff --git a/src/app/main/main.css b/src/app/main/main.css index 5c14db5..b18761c 100644 --- a/src/app/main/main.css +++ b/src/app/main/main.css @@ -7,6 +7,10 @@ body { padding: 0; } +.btn-header { + min-width: 6em; +} + .control-header { margin-top: 5px; display: flex; @@ -51,9 +55,7 @@ body { } .logo { - height: 33px; font-size: 28px; - font-weight: bold; } .main-icon-control { @@ -171,6 +173,9 @@ body { color: lightgrey; border-radius: 10px; padding-left: 5px; + display: flex; + align-items: center; + justify-content: center; } .vflex { diff --git a/src/app/main/main.html b/src/app/main/main.html index cedf973..dad9d16 100644 --- a/src/app/main/main.html +++ b/src/app/main/main.html @@ -1,61 +1,47 @@
- Save - Load - -
- - -
- -
- - + + File: {{main.cmModelFactory.graph.name}} + + Nodes: {{main.cmModelFactory.graph.nodes.length}} + Edges: {{main.cmModelFactory.graph.edges.length}} + + +
+ + + + + + + + + + +
-
- - - - - - - - - - +

Connectivity Matrix Controls

Aggregate rows - + {{main.ui.selectedCategoricalRowAttr}} @@ -64,12 +50,9 @@

Connectivity Matrix Controls

-
Aggregate cols - + {{main.ui.selectedCategoricalColAttr}} @@ -78,12 +61,9 @@

Connectivity Matrix Controls

-
Sort order - + {{main.ui.selectedSortOrder}} @@ -92,28 +72,9 @@

Connectivity Matrix Controls

- - - - - - - - - - - - - - - - -
Metric - + {{main.ui.selectedMatrixMetric.name}} @@ -122,12 +83,9 @@

Connectivity Matrix Controls

-
Encoding - + {{main.ui.selectedMatrixEncoding.name}} @@ -136,12 +94,9 @@

Connectivity Matrix Controls

-
Scale - + {{main.ui.selectedMatrixScale}} @@ -150,14 +105,11 @@

Connectivity Matrix Controls

-

Int. Node Table Controls

Aggregate rows - + {{main.ui.selectedIntermediateRowAttr}} @@ -166,12 +118,9 @@

Int. Node Table Controls

-
Metric - + {{main.ui.selectedNodeListMetric.name}} @@ -180,12 +129,9 @@

Int. Node Table Controls

-
Encoding - + {{main.ui.selectedNodeListEncoding.name}} @@ -194,12 +140,9 @@

Int. Node Table Controls

-
Scale - + {{main.ui.selectedNodeListScale}} @@ -209,8 +152,6 @@

Int. Node Table Controls

- -
Legend @@ -226,20 +167,15 @@

Connectivity Matrix

- -
+

Int. Node Table

- -
+
-

@@ -255,33 +191,21 @@

{{main.queryError}}

-
-
- +
- -
+
-
- - -
+
\ No newline at end of file From ef9118f7ea11f9f9b69dd95235adc1c70c43c411 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Fri, 17 Aug 2018 16:10:50 -0600 Subject: [PATCH 14/24] Start client search stuff. --- .../connectivityMatrix/cmModelFactory.service.js | 5 +++++ .../dataSelection/dataSelection.controller.js | 1 + .../queryBuilderRegex/queryBuilderRegex.directive.js | 12 +----------- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/src/app/components/connectivityMatrix/cmModelFactory.service.js b/src/app/components/connectivityMatrix/cmModelFactory.service.js index 8c9d120..f136ed1 100644 --- a/src/app/components/connectivityMatrix/cmModelFactory.service.js +++ b/src/app/components/connectivityMatrix/cmModelFactory.service.js @@ -10,6 +10,7 @@ export class cmModelFactory { this.cmResource = cmResource; this.cmGraphFactory = cmGraphFactory; this.cmMatrixFactory = cmMatrixFactory; + this.graph = null; } requestAndCreateModel(query, database) { @@ -44,4 +45,8 @@ export class cmModelFactory { createModelRow() { return new cmModelRow(); } + + setGraphData(graph) { + this.graph = graph; + } } diff --git a/src/app/components/dataSelection/dataSelection.controller.js b/src/app/components/dataSelection/dataSelection.controller.js index f531d68..ef5388b 100644 --- a/src/app/components/dataSelection/dataSelection.controller.js +++ b/src/app/components/dataSelection/dataSelection.controller.js @@ -36,6 +36,7 @@ export class DataSelectionController { self.isUserDataOk = self.userData.nodes && self.userData.edges; self.userDataError = !self.isUserDataOk; self.isParsingFile = false; + self.userData.name = self.filename; self.$root.$apply(); } diff --git a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js index c32d950..060e106 100644 --- a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js +++ b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js @@ -175,7 +175,6 @@ class QueryController { onQueryModified() { this.main.queryUi = this.ui; - // this.cypher = this.generateCypher(); } /** @@ -183,12 +182,6 @@ class QueryController { */ onSubmitClicked() { this.$log.debug(this.ui); - // this.onSubmit( - // { - // query: this.generateCypher(this.ui.selectedInterface) - // } - // ); - // this.filters = {}; } reset() { @@ -209,15 +202,12 @@ class QueryController { this.filters = {}; this.ui.edges = []; this.ui.nodes = []; - - // this.ui.nodes[0] = "node0"; - + this.ui.selectedNumHops = numHops; for (let i = 0; i < numHops; ++i) { this.ui.nodes.push(""); this.ui.edges.push(""); } this.ui.nodes.push(""); - this.ui.keys = keys; this.onQueryModified(); } From 5e93c4da1d8014be94b569c96305e87f39094400 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Fri, 7 Sep 2018 10:37:00 -0600 Subject: [PATCH 15/24] Client graph search in progress. --- .../components/connectivityMatrix/cmGraph.js | 9 +- .../cmModelFactory.service.js | 161 +++++++++++++++++- .../queryBuilderRegex.directive.js | 5 +- src/app/main/main.controller.js | 4 +- 4 files changed, 168 insertions(+), 11 deletions(-) diff --git a/src/app/components/connectivityMatrix/cmGraph.js b/src/app/components/connectivityMatrix/cmGraph.js index fba79b8..62ce5b7 100644 --- a/src/app/components/connectivityMatrix/cmGraph.js +++ b/src/app/components/connectivityMatrix/cmGraph.js @@ -27,7 +27,7 @@ export class cmGraph { for (i = 0; i < this.jsonGraph.nodes.length; ++i) { var node = this.jsonGraph.nodes[i]; - var index = this.parseNodeId(node, this.nodeAttributes, this.indexAttributeIndex); + var index = this.parseNodeId(node, this.nodeAttributes, this.idAttributeIndex); var attributes = this.parseAttributes(node, this.nodeAttributes, this.indexAttributeIndex); this.graph.setNode(index, attributes); } @@ -37,8 +37,8 @@ export class cmGraph { if (this.database == "marclab") { for (i = 0; i < this.jsonGraph.edges.length; ++i) { let edge = this.jsonGraph.edges[i]; - let sourceId = edge.SourceID; - let targetId = edge.TargetID; + let sourceId = edge.SourceStructureID; + let targetId = edge.TargetStructureID; let source = this.getNode(sourceId); let target = this.getNode(targetId); @@ -61,6 +61,7 @@ export class cmGraph { this.graph.setEdge(sourceId, targetId, attributes, edge.ID); } } else { + // TODO - delete control flow for flight data. for (i = 0; i < this.jsonGraph.edges.length; ++i) { let edge = this.jsonGraph.edges[i]; let sourceId = edge.SourceID; @@ -128,7 +129,7 @@ export class cmGraph { throw 'Bad datatype!'; } else { current.parseFn = function (x) { - return x; + return x ? x : 'Null'; } } } diff --git a/src/app/components/connectivityMatrix/cmModelFactory.service.js b/src/app/components/connectivityMatrix/cmModelFactory.service.js index f136ed1..4ceab31 100644 --- a/src/app/components/connectivityMatrix/cmModelFactory.service.js +++ b/src/app/components/connectivityMatrix/cmModelFactory.service.js @@ -1,5 +1,5 @@ -import {cmModel} from "./cmModel" -import {cmModelRow} from "./cmModelRow" +import { cmModel } from "./cmModel" +import { cmModelRow } from "./cmModelRow" export class cmModelFactory { @@ -10,7 +10,81 @@ export class cmModelFactory { this.cmResource = cmResource; this.cmGraphFactory = cmGraphFactory; this.cmMatrixFactory = cmMatrixFactory; - this.graph = null; + this.dataset = null; // holds the graph that gets searched for paths. + this.verbose = true; + this.maxNumPaths = 1000000; + } + + createModelFromGraphSearch(query) { + let self = this; + + let deferred = self.$q.defer(); + + if (this.dataset) { + let paths = self.findPathsByRegex(query); + deferred.resolve(paths); + } else { + deferred.reject(); + } + + return deferred.promise; + } + + fillInPathsByRegex(query, paths) { + let self = this; + self.$log.debug('fillInPathsByRegex', query, paths); + + let maxNumHops = query.edges.length; + let finishedPaths = []; + let counter = self.maxNumPaths; + + let graph = self.dataset.graph; + + while (paths.length && counter > 0) { + let currentPath = paths.shift(); + let currentNode = currentPath[currentPath.length - 1]; + let currentHop = Math.floor(currentPath.length / 2); + console.log(currentNode, currentHop); + + if (currentHop >= maxNumHops) { + if (self.verbose) { + console.log('finished path', currentPath); + } + finishedPaths.push(currentPath); + continue; + } else { + + let nextNodeConstraint = query.nodes[currentHop + 1]; + let nextEdgeConstraint = query.edges[currentHop]; + let currentNodeOutEdges = graph.outEdges(currentNode); console.log(currentNodeOutEdges) + + for (let i = 0; i < currentNodeOutEdges.length; ++i) { + let edgeIndex = currentNodeOutEdges[i].name; + let currentEdge = self.dataset.edgeDict[edgeIndex]; + console.log(currentEdge); + } + + } + } + } + + findPathsByRegex(query) { + let self = this; + self.$log.debug('findPathsByRegex', query); + let paths = []; + let graph = self.dataset.graph; + let nodes = graph.nodes(); + for (let i = 0; i < nodes.length; ++i) { + let node = graph.node(nodes[i]); + if (node.label.match(query.nodes[0])) { + let path = [nodes[i]]; + paths.push(path); + if (self.verbose) { + self.$log.debug('created seed path', path, node) + } + } + } + self.fillInPathsByRegex(query, paths) } requestAndCreateModel(query, database) { @@ -46,7 +120,86 @@ export class cmModelFactory { return new cmModelRow(); } + /* + * This function populates this.database with a graphlib graph object created * by parsing the data contained in the parameter called 'graph' + * + * TODO - this should be cleaned up and potentially deleted. It is left over * from when graffinity had to support many different datasets. + */ setGraphData(graph) { - this.graph = graph; + + graph.node_attributes = [ + { + "DisplayName": "id", + "Name": "ID", + "DataType": "index", + "DatabaseName": "ID", + "Unique": "true", + "Type": "int" + }, + { + "DisplayName": "label", + "Name": "Label", + "DataType": "categorical", + "DatabaseName": "label", + "Unique": "false", + "Type": "string" + }, + { + "DisplayName": "id", + "Name": "StructureID", + "DataType": "id", + "DatabaseName": "StructureID", + "Unique": "true", + "Type": "int" + }, + // { + // "DisplayName": "area", + // "Name": "HullArea", + // "DataType": "quantitative", + // "DatabaseName": "hull", + // "Unique": "false", + // "Type": "float" + // } + ]; + + graph.edge_attributes = [ + { + "DataType": "index", + "Type": "int", + "Unique": "true", + "DisplayName": "id", + "Name": "ID" + }, + { + "DataType": "source-index", + "Type": "int", + "Unique": "false", + "DisplayName": "source id", + "Name": "SourceStructureID" + }, + { + "DataType": "target-index", + "Type": "int", + "Unique": "true", + "DisplayName": "target id", + "Name": "TargetStructureID" + }, + { + "DataType": "categorical", + "Type": "string", + "Unique": "false", + "DisplayName": "edge type", + "Name": "type" + }, + { + "DataType": "string", + "Type": "string", + "Unique": "false", + "DisplayName": "structures", + "Name": "LinkedStructures" + } + ]; + + this.dataset = this.cmGraphFactory.createFromJsonObject(graph, 'marclab'); } } diff --git a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js index 060e106..f7ff6d2 100644 --- a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js +++ b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.js @@ -14,7 +14,6 @@ export class QueryBuilderRegexDirective { defaultQuery: '=' }; - this.controller = QueryController; this.controllerAs = 'queryController'; this.bindToController = true; @@ -181,7 +180,9 @@ class QueryController { * Give the query to whatever owns this component. */ onSubmitClicked() { - this.$log.debug(this.ui); + this.onSubmit({ + query: this.ui + }); } reset() { diff --git a/src/app/main/main.controller.js b/src/app/main/main.controller.js index e2fead4..1aa711f 100644 --- a/src/app/main/main.controller.js +++ b/src/app/main/main.controller.js @@ -407,6 +407,8 @@ export class MainController { onQuerySubmitted(query) { let self = this; + self.$log.debug('onQuerySubmitted', query); + self.hasActiveQuery = true; self.hasQueryError = false; self.hasGoodData = false; @@ -453,7 +455,7 @@ export class MainController { }; // Give the model factory a query string. Async call success or failure. - this.cmModelFactory.requestAndCreateModel(query, this.database).then(success, failure); + this.cmModelFactory.createModelFromGraphSearch(query).then(success, failure); } onSaveClicked() { From b6e61aa3891dfa03b128dcf9115bca33dee0bc8e Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Fri, 7 Sep 2018 13:25:12 -0600 Subject: [PATCH 16/24] Add graph search. --- .../components/connectivityMatrix/cmGraph.js | 34 +- .../cmModelFactory.service.js | 61 +- .../mock/2018.01.23-network-514-1-hop.json | 8515 +---------------- 3 files changed, 81 insertions(+), 8529 deletions(-) diff --git a/src/app/components/connectivityMatrix/cmGraph.js b/src/app/components/connectivityMatrix/cmGraph.js index 62ce5b7..b84d734 100644 --- a/src/app/components/connectivityMatrix/cmGraph.js +++ b/src/app/components/connectivityMatrix/cmGraph.js @@ -2,7 +2,7 @@ graphlib */ -import {Utils} from "../utils/utils" +import { Utils } from "../utils/utils" export class cmGraph { @@ -13,12 +13,15 @@ export class cmGraph { } activate() { - this.graph = new graphlib.Graph({multigraph: true}); + let self = this; + this.graph = new graphlib.Graph({ + multigraph: true + }); // create nodes - this.nodeAttributes = this.activateNodeAttributes(this.jsonGraph.node_attributes); - for (var i = 0; i < this.nodeAttributes.length; ++i) { - if (this.nodeAttributes[i].isIndex) { + self.nodeAttributes = self.activateNodeAttributes(self.jsonGraph.node_attributes); + for (var i = 0; i < self.nodeAttributes.length; ++i) { + if (self.nodeAttributes[i].isIndex) { this.indexAttributeIndex = i; } else if (this.nodeAttributes[i].isId) { this.idAttributeIndex = i; @@ -59,6 +62,12 @@ export class cmGraph { this.edgeDict[edge.ID] = attributes; this.graph.setEdge(sourceId, targetId, attributes, edge.ID); + + if (!edge.Directional) { + let id = (-Number(edge.ID)).toString(); + self.edgeDict[id] = attributes; + this.graph.setEdge(targetId, sourceId, attributes, id); + } } } else { // TODO - delete control flow for flight data. @@ -129,7 +138,7 @@ export class cmGraph { throw 'Bad datatype!'; } else { current.parseFn = function (x) { - return x ? x : 'Null'; + return x ? x : 'Null'; } } } @@ -185,11 +194,10 @@ export class cmGraph { var node = nodes[i]; var attributes = this.graph.node(node); if ((nodeIdFilter == undefined) || (nodeIdFilter != undefined && nodeIdFilter.indexOf(Number(node)) != -1)) { - result.nodes.push( - { - id: node, - attributes: attributes - }); + result.nodes.push({ + id: node, + attributes: attributes + }); } } @@ -293,7 +301,9 @@ export class cmGraph { let nodes = Utils.getNodesFromPaths(paths); let edges = Utils.getEdgesFromPaths(paths); - let subgraph = new graphlib.Graph({multigraph: true}); + let subgraph = new graphlib.Graph({ + multigraph: true + }); // the subgraph's graph is an object used by dagre layout. subgraph.setGraph({}); diff --git a/src/app/components/connectivityMatrix/cmModelFactory.service.js b/src/app/components/connectivityMatrix/cmModelFactory.service.js index 4ceab31..b4eb666 100644 --- a/src/app/components/connectivityMatrix/cmModelFactory.service.js +++ b/src/app/components/connectivityMatrix/cmModelFactory.service.js @@ -30,9 +30,11 @@ export class cmModelFactory { return deferred.promise; } + /** + * Iterative BFS to find paths that match constraints specified by query. + */ fillInPathsByRegex(query, paths) { let self = this; - self.$log.debug('fillInPathsByRegex', query, paths); let maxNumHops = query.edges.length; let finishedPaths = []; @@ -42,48 +44,61 @@ export class cmModelFactory { while (paths.length && counter > 0) { let currentPath = paths.shift(); + let currentNode = currentPath[currentPath.length - 1]; let currentHop = Math.floor(currentPath.length / 2); - console.log(currentNode, currentHop); - + if (currentHop >= maxNumHops) { - if (self.verbose) { - console.log('finished path', currentPath); - } finishedPaths.push(currentPath); continue; } else { - let nextNodeConstraint = query.nodes[currentHop + 1]; let nextEdgeConstraint = query.edges[currentHop]; - let currentNodeOutEdges = graph.outEdges(currentNode); console.log(currentNodeOutEdges) + let currentNodeOutEdges = graph.outEdges(currentNode); + + if (!currentNodeOutEdges) { + continue; + } for (let i = 0; i < currentNodeOutEdges.length; ++i) { + let currentEdge = currentNodeOutEdges[i]; let edgeIndex = currentNodeOutEdges[i].name; - let currentEdge = self.dataset.edgeDict[edgeIndex]; - console.log(currentEdge); + let currentAttributes = self.dataset.edgeDict[edgeIndex]; + let edgeType = currentAttributes.type; + if (edgeType.match(nextEdgeConstraint)) { + let nextNodeId = currentEdge.w; + let nextNode = graph.node(nextNodeId); + if (nextNode.label.match(nextNodeConstraint)) { + let newPath = JSON.parse(JSON.stringify(currentPath)); + newPath.push(edgeIndex); + newPath.push(nextNodeId.toString()); + paths.push(newPath); + } + } } - } } + return finishedPaths; } + /** + * Search for all nodes that match the first regex in query.nodes. + * Then, build the paths that start with those nodes. + */ findPathsByRegex(query) { let self = this; - self.$log.debug('findPathsByRegex', query); let paths = []; let graph = self.dataset.graph; let nodes = graph.nodes(); + for (let i = 0; i < nodes.length; ++i) { let node = graph.node(nodes[i]); if (node.label.match(query.nodes[0])) { let path = [nodes[i]]; paths.push(path); - if (self.verbose) { - self.$log.debug('created seed path', path, node) - } } } + self.fillInPathsByRegex(query, paths) } @@ -127,8 +142,7 @@ export class cmModelFactory { */ setGraphData(graph) { - graph.node_attributes = [ - { + graph.node_attributes = [{ "DisplayName": "id", "Name": "ID", "DataType": "index", @@ -151,19 +165,10 @@ export class cmModelFactory { "DatabaseName": "StructureID", "Unique": "true", "Type": "int" - }, - // { - // "DisplayName": "area", - // "Name": "HullArea", - // "DataType": "quantitative", - // "DatabaseName": "hull", - // "Unique": "false", - // "Type": "float" - // } + } ]; - graph.edge_attributes = [ - { + graph.edge_attributes = [{ "DataType": "index", "Type": "int", "Unique": "true", diff --git a/src/assets/mock/2018.01.23-network-514-1-hop.json b/src/assets/mock/2018.01.23-network-514-1-hop.json index ae33b0e..536ca84 100644 --- a/src/assets/mock/2018.01.23-network-514-1-hop.json +++ b/src/assets/mock/2018.01.23-network-514-1-hop.json @@ -8,8503 +8,40 @@ { "StructureID": 308, "TypeID": 1, - "Label": "YAC Ai", - "Tags": "" - }, - { - "StructureID": 410, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "" - }, - { - "StructureID": 469, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 471, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 476, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 478, - "TypeID": 1, - "Label": "CBabw", - "Tags": "" - }, - { - "StructureID": 483, - "TypeID": 1, - "Label": "CBb5", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"DPE\" Value=\"DONE\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 485, - "TypeID": 1, - "Label": "CBb5", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"DPE\" Value=\"DONE\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 514, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "" - }, - { - "StructureID": 516, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 517, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 518, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 519, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 593, - "TypeID": 1, - "Label": "CBb5", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"AMS\" Value=\"DONE\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 597, - "TypeID": 1, - "Label": "YAC OFF", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"soma\" Value=\"1.0\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 992, - "TypeID": 1, - "Label": "CBab", - "Tags": "" - }, - { - "StructureID": 1610, - "TypeID": 1, - "Label": "GAC", - "Tags": "" - }, - { - "StructureID": 1724, - "TypeID": 1, - "Label": "CBb3n", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"AMS\" Value=\"DONE\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 2610, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "" - }, - { - "StructureID": 3257, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "" - }, - { - "StructureID": 3679, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "" - }, - { - "StructureID": 4567, - "TypeID": 1, - "Label": "CBa1w", - "Tags": "" - }, - { - "StructureID": 4568, - "TypeID": 1, - "Label": "CBab2-4", - "Tags": "" - }, - { - "StructureID": 4835, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "" - }, - { - "StructureID": 4943, - "TypeID": 1, - "Label": "YAC Ai", - "Tags": "" - }, - { - "StructureID": 5017, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 5150, - "TypeID": 1, - "Label": "GC", - "Tags": "" - }, - { - "StructureID": 5279, - "TypeID": 1, - "Label": "CBb3n", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"AMS\" Value=\"DONE\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 5283, - "TypeID": 1, - "Label": "CBbwf", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"CNR\" Value=\"DONE\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 5303, - "TypeID": 1, - "Label": "YAC Ai ", - "Tags": "" - }, - { - "StructureID": 5345, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "" - }, - { - "StructureID": 5517, - "TypeID": 1, - "Label": "CBb3n", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"DPE\" Value=\"DONE\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 5609, - "TypeID": 1, - "Label": "YAC Ai", - "Tags": "" - }, - { - "StructureID": 6117, - "TypeID": 1, - "Label": "CBb4w", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"CNR\" Value=\"DONE\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 6156, - "TypeID": 1, - "Label": "CBb6", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"CLS\" Value=\"DONE\" /\u003e\u003cAttrib Name=\"G\" Value=\"1.0\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 6169, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"CLS\" Value=\"135052\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 6406, - "TypeID": 1, - "Label": "AC", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"peptide\" Value=\"1.0\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 6850, - "TypeID": 1, - "Label": "AC", - "Tags": "" - }, - { - "StructureID": 6997, - "TypeID": 1, - "Label": "CBb5", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"DPE\" Value=\"DONE\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 7054, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 8037, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "" - }, - { - "StructureID": 8485, - "TypeID": 1, - "Label": "CBa1", - "Tags": "" - }, - { - "StructureID": 8749, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 8990, - "TypeID": 1, - "Label": "YAC Ai", - "Tags": "" - }, - { - "StructureID": 9023, - "TypeID": 1, - "Label": "YAC Ai", - "Tags": "" - }, - { - "StructureID": 9124, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 9226, - "TypeID": 1, - "Label": "YAC", - "Tags": "" - }, - { - "StructureID": 9228, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 9504, - "TypeID": 1, - "Label": "CBa2", - "Tags": "" - }, - { - "StructureID": 9693, - "TypeID": 1, - "Label": "CBb6", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"CNR\" Value=\"DONE\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 10625, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 10872, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 10897, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 10931, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 10943, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 10954, - "TypeID": 1, - "Label": "TH1", - "Tags": "" - }, - { - "StructureID": 10966, - "TypeID": 1, - "Label": "TH1", - "Tags": "" - }, - { - "StructureID": 10970, - "TypeID": 1, - "Label": "TH1", - "Tags": "" - }, - { - "StructureID": 11011, - "TypeID": 1, - "Label": "TH1", - "Tags": "" - }, - { - "StructureID": 11015, - "TypeID": 1, - "Label": "TH1", - "Tags": "" - }, - { - "StructureID": 11401, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 11485, - "TypeID": 1, - "Label": "YAC", - "Tags": "" - }, - { - "StructureID": 11645, - "TypeID": 1, - "Label": "", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"Y\" Value=\"0.0\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 15100, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 15377, - "TypeID": 1, - "Label": "YAC", - "Tags": "" - }, - { - "StructureID": 15942, - "TypeID": 1, - "Label": "Rod BC", - "Tags": "" - }, - { - "StructureID": 18576, - "TypeID": 1, - "Label": "AC", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"alias1\" Value=\"36327\" /\u003e\u003cAttrib Name=\"C1\" /\u003e\u003cAttrib Name=\"merge\" Value=\"36327\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 25374, - "TypeID": 1, - "Label": "AC", - "Tags": "" - }, - { - "StructureID": 25392, - "TypeID": 1, - "Label": "AC", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"beaded\" Value=\"1.0\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 25529, - "TypeID": 1, - "Label": "YAC Ai", - "Tags": "" - }, - { - "StructureID": 28913, - "TypeID": 1, - "Label": "GC Delta L1", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"soma\" Value=\"0.0\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 32371, - "TypeID": 1, - "Label": "YAC Ai", - "Tags": "" - }, - { - "StructureID": 32719, - "TypeID": 1, - "Label": "YAC Ai", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"soma\" Value=\"0.5\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 32739, - "TypeID": 1, - "Label": "AC", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"beaded\" Value=\"1.0\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 37135, - "TypeID": 1, - "Label": "AC", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"C1\" /\u003e\u003cAttrib Name=\"\u0026gt; rod BC\" /\u003e\u003cAttrib Name=\"\u0026gt;aii\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 37192, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 37461, - "TypeID": 1, - "Label": "YAC", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"C4\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 38200, - "TypeID": 1, - "Label": "AC", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"peptide\" Value=\"1.0\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 40863, - "TypeID": 1, - "Label": "GAC Aii", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"soma\" Value=\"0.5\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 40988, - "TypeID": 1, - "Label": "YAC Ai", - "Tags": "" - }, - { - "StructureID": 41058, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 60424, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 60426, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 60428, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 60430, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 60436, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 60438, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 60440, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 60449, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 60451, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 61231, - "TypeID": 1, - "Label": "YAC Ai", - "Tags": "\u003cStructure\u003e\u003cAttrib Name=\"\" /\u003e\u003c/Structure\u003e" - }, - { - "StructureID": 66199, - "TypeID": 1, - "Label": "CBa", - "Tags": "" - }, - { - "StructureID": 68031, - "TypeID": 1, - "Label": "AC", - "Tags": "" - }, - { - "StructureID": 68705, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 77019, - "TypeID": 1, - "Label": null, - "Tags": "" - }, - { - "StructureID": 83461, - "TypeID": 1, - "Label": "CBa", - "Tags": "" - }, - { - "StructureID": 123146, - "TypeID": 1, - "Label": "AC", - "Tags": "" - }, - { - "StructureID": 123189, - "TypeID": 1, - "Label": "AC", - "Tags": "" - }, - { - "StructureID": 129154, - "TypeID": 1, - "Label": null, - "Tags": "" - }], - "edges": [{ - "ID": 0, - "SourceStructureID": 514, - "TargetStructureID": 179, - "Label": "514-179 via Adherens from 103814 -\u003e 103813", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 103814, - "TargetID": 103813, - "Directional": false - }] - }, - { - "ID": 1, - "SourceStructureID": 5303, - "TargetStructureID": 179, - "Label": "5303-179 via Gap Junction from 101399 -\u003e 104984", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 101399, - "TargetID": 104984, - "Directional": false - }] - }, - { - "ID": 2, - "SourceStructureID": 6169, - "TargetStructureID": 179, - "Label": "6169-179 via Adherens from 87474 -\u003e 87473", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 87474, - "TargetID": 87473, - "Directional": false - }] - }, - { - "ID": 3, - "SourceStructureID": 10897, - "TargetStructureID": 179, - "Label": "10897-179 via Unknown from 104878 -\u003e 104877", - "Type": "Unknown", - "Directional": false, - "Links": [{ - "SourceID": 104878, - "TargetID": 104877, - "Directional": false - }] - }, - { - "ID": 4, - "SourceStructureID": 308, - "TargetStructureID": 308, - "Label": "308-308 via Adherens from 42581 -\u003e 42582", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 42581, - "TargetID": 42582, - "Directional": false - }] - }, - { - "ID": 5, - "SourceStructureID": 308, - "TargetStructureID": 514, - "Label": "308-514 via Adherens from 42534 -\u003e 13815, 43448 -\u003e 43449, 43452 -\u003e 43453, 43455 -\u003e 43454, 43740 -\u003e 43741, 86717 -\u003e 42537", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 42534, - "TargetID": 13815, - "Directional": false - }, - { - "SourceID": 43448, - "TargetID": 43449, - "Directional": false - }, - { - "SourceID": 43452, - "TargetID": 43453, - "Directional": false - }, - { - "SourceID": 43455, - "TargetID": 43454, - "Directional": false - }, - { - "SourceID": 43740, - "TargetID": 43741, - "Directional": false - }, - { - "SourceID": 86717, - "TargetID": 42537, - "Directional": false - }] - }, - { - "ID": 6, - "SourceStructureID": 2610, - "TargetStructureID": 308, - "Label": "2610-308 via Adherens from 43773 -\u003e 43772, 43778 -\u003e 43777", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 43773, - "TargetID": 43772, - "Directional": false - }, - { - "SourceID": 43778, - "TargetID": 43777, - "Directional": false - }] - }, - { - "ID": 7, - "SourceStructureID": 308, - "TargetStructureID": 3257, - "Label": "308-3257 via Adherens from 107207 -\u003e 107208, 107210 -\u003e 107209", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 107207, - "TargetID": 107208, - "Directional": false - }, - { - "SourceID": 107210, - "TargetID": 107209, - "Directional": false - }] - }, - { - "ID": 8, - "SourceStructureID": 308, - "TargetStructureID": 5017, - "Label": "308-5017 via Adherens from 42562 -\u003e 42563", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 42562, - "TargetID": 42563, - "Directional": false - }] - }, - { - "ID": 9, - "SourceStructureID": 308, - "TargetStructureID": 8749, - "Label": "308-8749 via Adherens from 42574 -\u003e 42575, 42579 -\u003e 42578, 43734 -\u003e 43735", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 42574, - "TargetID": 42575, - "Directional": false - }, - { - "SourceID": 42579, - "TargetID": 42578, - "Directional": false - }, - { - "SourceID": 43734, - "TargetID": 43735, - "Directional": false - }] - }, - { - "ID": 10, - "SourceStructureID": 410, - "TargetStructureID": 476, - "Label": "410-476 via Gap Junction from 8370 -\u003e 17490, 8380 -\u003e 8347, 10439 -\u003e 10440, 16480 -\u003e 8376, 16502 -\u003e 8354, 16515 -\u003e 16514, 17347 -\u003e 17346, 19117 -\u003e 19116, 32738 -\u003e 32736", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 8370, - "TargetID": 17490, - "Directional": false - }, - { - "SourceID": 8380, - "TargetID": 8347, - "Directional": false - }, - { - "SourceID": 10439, - "TargetID": 10440, - "Directional": false - }, - { - "SourceID": 16480, - "TargetID": 8376, - "Directional": false - }, - { - "SourceID": 16502, - "TargetID": 8354, - "Directional": false - }, - { - "SourceID": 16515, - "TargetID": 16514, - "Directional": false - }, - { - "SourceID": 17347, - "TargetID": 17346, - "Directional": false - }, - { - "SourceID": 19117, - "TargetID": 19116, - "Directional": false - }, - { - "SourceID": 32738, - "TargetID": 32736, - "Directional": false - }] - }, - { - "ID": 11, - "SourceStructureID": 410, - "TargetStructureID": 483, - "Label": "410-483 via Gap Junction from 94746 -\u003e 94747", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 94746, - "TargetID": 94747, - "Directional": false - }] - }, - { - "ID": 12, - "SourceStructureID": 410, - "TargetStructureID": 485, - "Label": "410-485 via Gap Junction from 8362 -\u003e 8348, 8363 -\u003e 50880, 94053 -\u003e 94052, 148013 -\u003e 148014, 148077 -\u003e 148078, 148426 -\u003e 148427, 148429 -\u003e 148430, 148435 -\u003e 148436", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 8362, - "TargetID": 8348, - "Directional": false - }, - { - "SourceID": 8363, - "TargetID": 50880, - "Directional": false - }, - { - "SourceID": 94053, - "TargetID": 94052, - "Directional": false - }, - { - "SourceID": 148013, - "TargetID": 148014, - "Directional": false - }, - { - "SourceID": 148077, - "TargetID": 148078, - "Directional": false - }, - { - "SourceID": 148426, - "TargetID": 148427, - "Directional": false - }, - { - "SourceID": 148429, - "TargetID": 148430, - "Directional": false - }, - { - "SourceID": 148435, - "TargetID": 148436, - "Directional": false - }] - }, - { - "ID": 13, - "SourceStructureID": 514, - "TargetStructureID": 410, - "Label": "514-410 via Adherens from 15088 -\u003e 15087", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 15088, - "TargetID": 15087, - "Directional": false - }] - }, - { - "ID": 14, - "SourceStructureID": 514, - "TargetStructureID": 410, - "Label": "514-410 via Gap Junction from 15098 -\u003e 15097", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 15098, - "TargetID": 15097, - "Directional": false - }] - }, - { - "ID": 15, - "SourceStructureID": 410, - "TargetStructureID": 2610, - "Label": "410-2610 via Gap Junction from 17501 -\u003e 17500, 22675 -\u003e 22676", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 17501, - "TargetID": 17500, - "Directional": false - }, - { - "SourceID": 22675, - "TargetID": 22676, - "Directional": false - }] - }, - { - "ID": 16, - "SourceStructureID": 410, - "TargetStructureID": 9693, - "Label": "410-9693 via Adherens from 131490 -\u003e 131489", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 131490, - "TargetID": 131489, - "Directional": false - }] - }, - { - "ID": 17, - "SourceStructureID": 410, - "TargetStructureID": 9693, - "Label": "410-9693 via Gap Junction from 131488 -\u003e 119862", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 131488, - "TargetID": 119862, - "Directional": false - }] - }, - { - "ID": 18, - "SourceStructureID": 476, - "TargetStructureID": 476, - "Label": "476-476 via Adherens from 133712 -\u003e 8397", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 133712, - "TargetID": 8397, - "Directional": false - }] - }, - { - "ID": 19, - "SourceStructureID": 476, - "TargetStructureID": 476, - "Label": "476-476 via Gap Junction from 10473 -\u003e 10445", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 10473, - "TargetID": 10445, - "Directional": false - }] - }, - { - "ID": 20, - "SourceStructureID": 476, - "TargetStructureID": 476, - "Label": "476-476 via Postsynapse from 2336 -\u003e 2337", - "Type": "Postsynapse", - "Directional": false, - "Links": [{ - "SourceID": 2336, - "TargetID": 2337, - "Directional": false - }] - }, - { - "ID": 21, - "SourceStructureID": 476, - "TargetStructureID": 483, - "Label": "476-483 via Adherens from 135082 -\u003e 135081", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 135082, - "TargetID": 135081, - "Directional": false - }] - }, - { - "ID": 22, - "SourceStructureID": 476, - "TargetStructureID": 483, - "Label": "476-483 via Gap Junction from 5728 -\u003e 6726, 6733 -\u003e 5667, 65196 -\u003e 14974, 65204 -\u003e 5707, 92335 -\u003e 92336, 131479 -\u003e 131480, 133741 -\u003e 133740, 136295 -\u003e 136296", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 5728, - "TargetID": 6726, - "Directional": false - }, - { - "SourceID": 6733, - "TargetID": 5667, - "Directional": false - }, - { - "SourceID": 65196, - "TargetID": 14974, - "Directional": false - }, - { - "SourceID": 65204, - "TargetID": 5707, - "Directional": false - }, - { - "SourceID": 92335, - "TargetID": 92336, - "Directional": false - }, - { - "SourceID": 131479, - "TargetID": 131480, - "Directional": false - }, - { - "SourceID": 133741, - "TargetID": 133740, - "Directional": false - }, - { - "SourceID": 136295, - "TargetID": 136296, - "Directional": false - }] - }, - { - "ID": 23, - "SourceStructureID": 485, - "TargetStructureID": 476, - "Label": "485-476 via Adherens from 148003 -\u003e 148002", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 148003, - "TargetID": 148002, - "Directional": false - }] - }, - { - "ID": 24, - "SourceStructureID": 485, - "TargetStructureID": 476, - "Label": "485-476 via Gap Junction from 65188 -\u003e 2287, 134217 -\u003e 134218", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 65188, - "TargetID": 2287, - "Directional": false - }, - { - "SourceID": 134217, - "TargetID": 134218, - "Directional": false - }] - }, - { - "ID": 25, - "SourceStructureID": 476, - "TargetStructureID": 514, - "Label": "476-514 via Adherens from 16545 -\u003e 16544", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 16545, - "TargetID": 16544, - "Directional": false - }] - }, - { - "ID": 26, - "SourceStructureID": 476, - "TargetStructureID": 514, - "Label": "476-514 via Gap Junction from 2397 -\u003e 515, 2439 -\u003e 5755, 2472 -\u003e 5047, 3219 -\u003e 2463, 3279 -\u003e 3320, 3344 -\u003e 5786, 5724 -\u003e 2239, 5754 -\u003e 3568, 5760 -\u003e 3546, 6170 -\u003e 3528, 9233 -\u003e 3331, 10628 -\u003e 10629, 15069 -\u003e 15068, 16543 -\u003e 16542", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 2397, - "TargetID": 515, - "Directional": false - }, - { - "SourceID": 2439, - "TargetID": 5755, - "Directional": false - }, - { - "SourceID": 2472, - "TargetID": 5047, - "Directional": false - }, - { - "SourceID": 3219, - "TargetID": 2463, - "Directional": false - }, - { - "SourceID": 3279, - "TargetID": 3320, - "Directional": false - }, - { - "SourceID": 3344, - "TargetID": 5786, - "Directional": false - }, - { - "SourceID": 5724, - "TargetID": 2239, - "Directional": false - }, - { - "SourceID": 5754, - "TargetID": 3568, - "Directional": false - }, - { - "SourceID": 5760, - "TargetID": 3546, - "Directional": false - }, - { - "SourceID": 6170, - "TargetID": 3528, - "Directional": false - }, - { - "SourceID": 9233, - "TargetID": 3331, - "Directional": false - }, - { - "SourceID": 10628, - "TargetID": 10629, - "Directional": false - }, - { - "SourceID": 15069, - "TargetID": 15068, - "Directional": false - }, - { - "SourceID": 16543, - "TargetID": 16542, - "Directional": false - }] - }, - { - "ID": 27, - "SourceStructureID": 476, - "TargetStructureID": 2610, - "Label": "476-2610 via Gap Junction from 7025 -\u003e 2757, 17912 -\u003e 17911", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 7025, - "TargetID": 2757, - "Directional": false - }, - { - "SourceID": 17912, - "TargetID": 17911, - "Directional": false - }] - }, - { - "ID": 28, - "SourceStructureID": 476, - "TargetStructureID": 3257, - "Label": "476-3257 via Gap Junction from 3201 -\u003e 18387, 8231 -\u003e 8230, 8232 -\u003e 3180, 8500 -\u003e 4798, 14345 -\u003e 14344, 16578 -\u003e 3200, 16578 -\u003e 3526, 18386 -\u003e 18385, 65184 -\u003e 3168", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 3201, - "TargetID": 18387, - "Directional": false - }, - { - "SourceID": 8231, - "TargetID": 8230, - "Directional": false - }, - { - "SourceID": 8232, - "TargetID": 3180, - "Directional": false - }, - { - "SourceID": 8500, - "TargetID": 4798, - "Directional": false - }, - { - "SourceID": 14345, - "TargetID": 14344, - "Directional": false - }, - { - "SourceID": 16578, - "TargetID": 3200, - "Directional": false - }, - { - "SourceID": 16578, - "TargetID": 3526, - "Directional": false - }, - { - "SourceID": 18386, - "TargetID": 18385, - "Directional": false - }, - { - "SourceID": 65184, - "TargetID": 3168, - "Directional": false - }] - }, - { - "ID": 29, - "SourceStructureID": 3679, - "TargetStructureID": 476, - "Label": "3679-476 via Gap Junction from 5051 -\u003e 2470", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 5051, - "TargetID": 2470, - "Directional": false - }] - }, - { - "ID": 30, - "SourceStructureID": 476, - "TargetStructureID": 4835, - "Label": "476-4835 via Gap Junction from 8395 -\u003e 8394, 36737 -\u003e 36736, 36740 -\u003e 36739, 36744 -\u003e 14962", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 8395, - "TargetID": 8394, - "Directional": false - }, - { - "SourceID": 36737, - "TargetID": 36736, - "Directional": false - }, - { - "SourceID": 36740, - "TargetID": 36739, - "Directional": false - }, - { - "SourceID": 36744, - "TargetID": 14962, - "Directional": false - }] - }, - { - "ID": 31, - "SourceStructureID": 476, - "TargetStructureID": 6156, - "Label": "476-6156 via Adherens from 133434 -\u003e 133435, 133482 -\u003e 15060, 135151 -\u003e 135150", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 133434, - "TargetID": 133435, - "Directional": false - }, - { - "SourceID": 133482, - "TargetID": 15060, - "Directional": false - }, - { - "SourceID": 135151, - "TargetID": 135150, - "Directional": false - }] - }, - { - "ID": 32, - "SourceStructureID": 6156, - "TargetStructureID": 476, - "Label": "6156-476 via Gap Junction from 18011 -\u003e 3314, 65194 -\u003e 5726, 117560 -\u003e 117559, 117586 -\u003e 117587, 133202 -\u003e 133201, 133218 -\u003e 133217, 133220 -\u003e 133219", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 18011, - "TargetID": 3314, - "Directional": false - }, - { - "SourceID": 65194, - "TargetID": 5726, - "Directional": false - }, - { - "SourceID": 117560, - "TargetID": 117559, - "Directional": false - }, - { - "SourceID": 117586, - "TargetID": 117587, - "Directional": false - }, - { - "SourceID": 133202, - "TargetID": 133201, - "Directional": false - }, - { - "SourceID": 133218, - "TargetID": 133217, - "Directional": false - }, - { - "SourceID": 133220, - "TargetID": 133219, - "Directional": false - }] - }, - { - "ID": 33, - "SourceStructureID": 4568, - "TargetStructureID": 478, - "Label": "4568-478 via Gap Junction from 21695 -\u003e 21696", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 21695, - "TargetID": 21696, - "Directional": false - }] - }, - { - "ID": 34, - "SourceStructureID": 83461, - "TargetStructureID": 478, - "Label": "83461-478 via Gap Junction from 83468 -\u003e 83469", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 83468, - "TargetID": 83469, - "Directional": false - }] - }, - { - "ID": 35, - "SourceStructureID": 483, - "TargetStructureID": 483, - "Label": "483-483 via Gap Junction from 134091 -\u003e 134090", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 134091, - "TargetID": 134090, - "Directional": false - }] - }, - { - "ID": 36, - "SourceStructureID": 485, - "TargetStructureID": 483, - "Label": "485-483 via Adherens from 101726 -\u003e 101727", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 101726, - "TargetID": 101727, - "Directional": false - }] - }, - { - "ID": 37, - "SourceStructureID": 483, - "TargetStructureID": 485, - "Label": "483-485 via Gap Junction from 50436 -\u003e 50435, 99195 -\u003e 99196, 101720 -\u003e 101719", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 50436, - "TargetID": 50435, - "Directional": false - }, - { - "SourceID": 99195, - "TargetID": 99196, - "Directional": false - }, - { - "SourceID": 101720, - "TargetID": 101719, - "Directional": false - }] - }, - { - "ID": 38, - "SourceStructureID": 483, - "TargetStructureID": 514, - "Label": "483-514 via Gap Junction from 6806 -\u003e 3342", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 6806, - "TargetID": 3342, - "Directional": false - }] - }, - { - "ID": 39, - "SourceStructureID": 483, - "TargetStructureID": 1724, - "Label": "483-1724 via Adherens from 101900 -\u003e 101899", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 101900, - "TargetID": 101899, - "Directional": false - }] - }, - { - "ID": 40, - "SourceStructureID": 6997, - "TargetStructureID": 483, - "Label": "6997-483 via Adherens from 22142 -\u003e 81486", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 22142, - "TargetID": 81486, - "Directional": false - }] - }, - { - "ID": 41, - "SourceStructureID": 6997, - "TargetStructureID": 483, - "Label": "6997-483 via Gap Junction from 97784 -\u003e 97785", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 97784, - "TargetID": 97785, - "Directional": false - }] - }, - { - "ID": 42, - "SourceStructureID": 485, - "TargetStructureID": 485, - "Label": "485-485 via Gap Junction from 51073 -\u003e 51076, 94094 -\u003e 94093, 99953 -\u003e 46848, 100612 -\u003e 100613, 148414 -\u003e 148413, 148417 -\u003e 148416", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 51073, - "TargetID": 51076, - "Directional": false - }, - { - "SourceID": 94094, - "TargetID": 94093, - "Directional": false - }, - { - "SourceID": 99953, - "TargetID": 46848, - "Directional": false - }, - { - "SourceID": 100612, - "TargetID": 100613, - "Directional": false - }, - { - "SourceID": 148414, - "TargetID": 148413, - "Directional": false - }, - { - "SourceID": 148417, - "TargetID": 148416, - "Directional": false - }] - }, - { - "ID": 43, - "SourceStructureID": 485, - "TargetStructureID": 514, - "Label": "485-514 via Gap Junction from 49905 -\u003e 49906, 148412 -\u003e 148411", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 49905, - "TargetID": 49906, - "Directional": false - }, - { - "SourceID": 148412, - "TargetID": 148411, - "Directional": false - }] - }, - { - "ID": 44, - "SourceStructureID": 2610, - "TargetStructureID": 485, - "Label": "2610-485 via Gap Junction from 94242 -\u003e 94241, 94264 -\u003e 94263, 148061 -\u003e 148060", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 94242, - "TargetID": 94241, - "Directional": false - }, - { - "SourceID": 94264, - "TargetID": 94263, - "Directional": false - }, - { - "SourceID": 148061, - "TargetID": 148060, - "Directional": false - }] - }, - { - "ID": 45, - "SourceStructureID": 485, - "TargetStructureID": 6997, - "Label": "485-6997 via Adherens from 136830 -\u003e 136831", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 136830, - "TargetID": 136831, - "Directional": false - }] - }, - { - "ID": 46, - "SourceStructureID": 6997, - "TargetStructureID": 485, - "Label": "6997-485 via Gap Junction from 94253 -\u003e 94267, 148054 -\u003e 148053", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 94253, - "TargetID": 94267, - "Directional": false - }, - { - "SourceID": 148054, - "TargetID": 148053, - "Directional": false - }] - }, - { - "ID": 47, - "SourceStructureID": 514, - "TargetStructureID": 593, - "Label": "514-593 via Gap Junction from 2559 -\u003e 52461, 15894 -\u003e 3077, 115747 -\u003e 115746", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 2559, - "TargetID": 52461, - "Directional": false - }, - { - "SourceID": 15894, - "TargetID": 3077, - "Directional": false - }, - { - "SourceID": 115747, - "TargetID": 115746, - "Directional": false - }] - }, - { - "ID": 48, - "SourceStructureID": 514, - "TargetStructureID": 1724, - "Label": "514-1724 via Gap Junction from 1004 -\u003e 43309, 1806 -\u003e 1803, 4016 -\u003e 4018, 4034 -\u003e 4035, 4122 -\u003e 1009, 20014 -\u003e 3972, 22606 -\u003e 3242, 47345 -\u003e 1447, 47377 -\u003e 1442, 47401 -\u003e 3072, 48675 -\u003e 48674, 100237 -\u003e 100238", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 1004, - "TargetID": 43309, - "Directional": false - }, - { - "SourceID": 1806, - "TargetID": 1803, - "Directional": false - }, - { - "SourceID": 4016, - "TargetID": 4018, - "Directional": false - }, - { - "SourceID": 4034, - "TargetID": 4035, - "Directional": false - }, - { - "SourceID": 4122, - "TargetID": 1009, - "Directional": false - }, - { - "SourceID": 20014, - "TargetID": 3972, - "Directional": false - }, - { - "SourceID": 22606, - "TargetID": 3242, - "Directional": false - }, - { - "SourceID": 47345, - "TargetID": 1447, - "Directional": false - }, - { - "SourceID": 47377, - "TargetID": 1442, - "Directional": false - }, - { - "SourceID": 47401, - "TargetID": 3072, - "Directional": false - }, - { - "SourceID": 48675, - "TargetID": 48674, - "Directional": false - }, - { - "SourceID": 100237, - "TargetID": 100238, - "Directional": false - }] - }, - { - "ID": 49, - "SourceStructureID": 514, - "TargetStructureID": 2610, - "Label": "514-2610 via Gap Junction from 1452 -\u003e 13805, 2511 -\u003e 135028, 15093 -\u003e 2793, 16540 -\u003e 16539, 17039 -\u003e 13793, 17051 -\u003e 17050, 17101 -\u003e 17072, 17102 -\u003e 17085, 17170 -\u003e 17169, 17223 -\u003e 17222, 17939 -\u003e 2885, 17976 -\u003e 17975, 18000 -\u003e 18001, 19055 -\u003e 19056, 29762 -\u003e 29761, 134993 -\u003e 134992", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 1452, - "TargetID": 13805, - "Directional": false - }, - { - "SourceID": 2511, - "TargetID": 135028, - "Directional": false - }, - { - "SourceID": 15093, - "TargetID": 2793, - "Directional": false - }, - { - "SourceID": 16540, - "TargetID": 16539, - "Directional": false - }, - { - "SourceID": 17039, - "TargetID": 13793, - "Directional": false - }, - { - "SourceID": 17051, - "TargetID": 17050, - "Directional": false - }, - { - "SourceID": 17101, - "TargetID": 17072, - "Directional": false - }, - { - "SourceID": 17102, - "TargetID": 17085, - "Directional": false - }, - { - "SourceID": 17170, - "TargetID": 17169, - "Directional": false - }, - { - "SourceID": 17223, - "TargetID": 17222, - "Directional": false - }, - { - "SourceID": 17939, - "TargetID": 2885, - "Directional": false - }, - { - "SourceID": 17976, - "TargetID": 17975, - "Directional": false - }, - { - "SourceID": 18000, - "TargetID": 18001, - "Directional": false - }, - { - "SourceID": 19055, - "TargetID": 19056, - "Directional": false - }, - { - "SourceID": 29762, - "TargetID": 29761, - "Directional": false - }, - { - "SourceID": 134993, - "TargetID": 134992, - "Directional": false - }] - }, - { - "ID": 50, - "SourceStructureID": 3257, - "TargetStructureID": 514, - "Label": "3257-514 via Gap Junction from 10860 -\u003e 10850, 16199 -\u003e 10844", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 10860, - "TargetID": 10850, - "Directional": false - }, - { - "SourceID": 16199, - "TargetID": 10844, - "Directional": false - }] - }, - { - "ID": 51, - "SourceStructureID": 3679, - "TargetStructureID": 514, - "Label": "3679-514 via Adherens from 16344 -\u003e 16343", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 16344, - "TargetID": 16343, - "Directional": false - }] - }, - { - "ID": 52, - "SourceStructureID": 3679, - "TargetStructureID": 514, - "Label": "3679-514 via Gap Junction from 5050 -\u003e 3253, 8005 -\u003e 3094, 10926 -\u003e 3802, 10941 -\u003e 5225, 11595 -\u003e 4704, 11596 -\u003e 4705, 13832 -\u003e 13831, 16436 -\u003e 16435, 16439 -\u003e 5013, 18425 -\u003e 10920", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 5050, - "TargetID": 3253, - "Directional": false - }, - { - "SourceID": 8005, - "TargetID": 3094, - "Directional": false - }, - { - "SourceID": 10926, - "TargetID": 3802, - "Directional": false - }, - { - "SourceID": 10941, - "TargetID": 5225, - "Directional": false - }, - { - "SourceID": 11595, - "TargetID": 4704, - "Directional": false - }, - { - "SourceID": 11596, - "TargetID": 4705, - "Directional": false - }, - { - "SourceID": 13832, - "TargetID": 13831, - "Directional": false - }, - { - "SourceID": 16436, - "TargetID": 16435, - "Directional": false - }, - { - "SourceID": 16439, - "TargetID": 5013, - "Directional": false - }, - { - "SourceID": 18425, - "TargetID": 10920, - "Directional": false - }] - }, - { - "ID": 53, - "SourceStructureID": 4835, - "TargetStructureID": 514, - "Label": "4835-514 via Gap Junction from 36741 -\u003e 14961", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 36741, - "TargetID": 14961, - "Directional": false - }] - }, - { - "ID": 54, - "SourceStructureID": 5017, - "TargetStructureID": 514, - "Label": "5017-514 via Adherens from 61240 -\u003e 61239, 158799 -\u003e 158790", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 61240, - "TargetID": 61239, - "Directional": false - }, - { - "SourceID": 158799, - "TargetID": 158790, - "Directional": false - }] - }, - { - "ID": 55, - "SourceStructureID": 514, - "TargetStructureID": 5150, - "Label": "514-5150 via Adherens from 15406 -\u003e 15405", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 15406, - "TargetID": 15405, - "Directional": false - }] - }, - { - "ID": 56, - "SourceStructureID": 514, - "TargetStructureID": 5279, - "Label": "514-5279 via Adherens from 147957 -\u003e 147958", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 147957, - "TargetID": 147958, - "Directional": false - }] - }, - { - "ID": 57, - "SourceStructureID": 5279, - "TargetStructureID": 514, - "Label": "5279-514 via Gap Junction from 6171 -\u003e 1008, 92617 -\u003e 3075", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 6171, - "TargetID": 1008, - "Directional": false - }, - { - "SourceID": 92617, - "TargetID": 3075, - "Directional": false - }] - }, - { - "ID": 58, - "SourceStructureID": 514, - "TargetStructureID": 5279, - "Label": "514-5279 via Touch from 33857 -\u003e 33856", - "Type": "Touch", - "Directional": false, - "Links": [{ - "SourceID": 33857, - "TargetID": 33856, - "Directional": false - }] - }, - { - "ID": 59, - "SourceStructureID": 5283, - "TargetStructureID": 514, - "Label": "5283-514 via Gap Junction from 132182 -\u003e 132184", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 132182, - "TargetID": 132184, - "Directional": false - }] - }, - { - "ID": 60, - "SourceStructureID": 5303, - "TargetStructureID": 514, - "Label": "5303-514 via Adherens from 35630 -\u003e 35631", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 35630, - "TargetID": 35631, - "Directional": false - }] - }, - { - "ID": 61, - "SourceStructureID": 5345, - "TargetStructureID": 514, - "Label": "5345-514 via Gap Junction from 8057 -\u003e 2599", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 8057, - "TargetID": 2599, - "Directional": false - }] - }, - { - "ID": 62, - "SourceStructureID": 514, - "TargetStructureID": 5517, - "Label": "514-5517 via Gap Junction from 1014 -\u003e 49362, 24400 -\u003e 24399, 96078 -\u003e 96077", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 1014, - "TargetID": 49362, - "Directional": false - }, - { - "SourceID": 24400, - "TargetID": 24399, - "Directional": false - }, - { - "SourceID": 96078, - "TargetID": 96077, - "Directional": false - }] - }, - { - "ID": 63, - "SourceStructureID": 5609, - "TargetStructureID": 514, - "Label": "5609-514 via Adherens from 115745 -\u003e 115744", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 115745, - "TargetID": 115744, - "Directional": false - }] - }, - { - "ID": 64, - "SourceStructureID": 514, - "TargetStructureID": 6117, - "Label": "514-6117 via Gap Junction from 83251 -\u003e 49180", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 83251, - "TargetID": 49180, - "Directional": false - }] - }, - { - "ID": 65, - "SourceStructureID": 514, - "TargetStructureID": 6156, - "Label": "514-6156 via Adherens from 133282 -\u003e 133283, 133332 -\u003e 133331, 133457 -\u003e 133458, 133486 -\u003e 133487", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 133282, - "TargetID": 133283, - "Directional": false - }, - { - "SourceID": 133332, - "TargetID": 133331, - "Directional": false - }, - { - "SourceID": 133457, - "TargetID": 133458, - "Directional": false - }, - { - "SourceID": 133486, - "TargetID": 133487, - "Directional": false - }] - }, - { - "ID": 66, - "SourceStructureID": 6156, - "TargetStructureID": 514, - "Label": "6156-514 via Gap Junction from 16403 -\u003e 15305, 22575 -\u003e 8874, 22598 -\u003e 2561, 23157 -\u003e 23156, 23159 -\u003e 2541, 23172 -\u003e 23171, 23249 -\u003e 23248, 23266 -\u003e 23267, 117530 -\u003e 117531, 117563 -\u003e 117564, 117610 -\u003e 117611, 133163 -\u003e 117347, 133243 -\u003e 133244, 133346 -\u003e 133345, 133382 -\u003e 133383", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 16403, - "TargetID": 15305, - "Directional": false - }, - { - "SourceID": 22575, - "TargetID": 8874, - "Directional": false - }, - { - "SourceID": 22598, - "TargetID": 2561, - "Directional": false - }, - { - "SourceID": 23157, - "TargetID": 23156, - "Directional": false - }, - { - "SourceID": 23159, - "TargetID": 2541, - "Directional": false - }, - { - "SourceID": 23172, - "TargetID": 23171, - "Directional": false - }, - { - "SourceID": 23249, - "TargetID": 23248, - "Directional": false - }, - { - "SourceID": 23266, - "TargetID": 23267, - "Directional": false - }, - { - "SourceID": 117530, - "TargetID": 117531, - "Directional": false - }, - { - "SourceID": 117563, - "TargetID": 117564, - "Directional": false - }, - { - "SourceID": 117610, - "TargetID": 117611, - "Directional": false - }, - { - "SourceID": 133163, - "TargetID": 117347, - "Directional": false - }, - { - "SourceID": 133243, - "TargetID": 133244, - "Directional": false - }, - { - "SourceID": 133346, - "TargetID": 133345, - "Directional": false - }, - { - "SourceID": 133382, - "TargetID": 133383, - "Directional": false - }] - }, - { - "ID": 67, - "SourceStructureID": 6169, - "TargetStructureID": 514, - "Label": "6169-514 via Gap Junction from 9456 -\u003e 1002, 10838 -\u003e 1583, 11625 -\u003e 1117, 16331 -\u003e 549, 18161 -\u003e 3090, 31071 -\u003e 31069", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 9456, - "TargetID": 1002, - "Directional": false - }, - { - "SourceID": 10838, - "TargetID": 1583, - "Directional": false - }, - { - "SourceID": 11625, - "TargetID": 1117, - "Directional": false - }, - { - "SourceID": 16331, - "TargetID": 549, - "Directional": false - }, - { - "SourceID": 18161, - "TargetID": 3090, - "Directional": false - }, - { - "SourceID": 31071, - "TargetID": 31069, - "Directional": false - }] - }, - { - "ID": 68, - "SourceStructureID": 514, - "TargetStructureID": 6997, - "Label": "514-6997 via Gap Junction from 133247 -\u003e 133250, 135076 -\u003e 135077", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 133247, - "TargetID": 133250, - "Directional": false - }, - { - "SourceID": 135076, - "TargetID": 135077, - "Directional": false - }] - }, - { - "ID": 69, - "SourceStructureID": 8037, - "TargetStructureID": 514, - "Label": "8037-514 via Gap Junction from 10871 -\u003e 2529, 29757 -\u003e 29756", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 10871, - "TargetID": 2529, - "Directional": false - }, - { - "SourceID": 29757, - "TargetID": 29756, - "Directional": false - }] - }, - { - "ID": 70, - "SourceStructureID": 8749, - "TargetStructureID": 514, - "Label": "8749-514 via Adherens from 43457 -\u003e 43456", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 43457, - "TargetID": 43456, - "Directional": false - }] - }, - { - "ID": 71, - "SourceStructureID": 8990, - "TargetStructureID": 514, - "Label": "8990-514 via Adherens from 32011 -\u003e 32010", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 32011, - "TargetID": 32010, - "Directional": false - }] - }, - { - "ID": 72, - "SourceStructureID": 9023, - "TargetStructureID": 514, - "Label": "9023-514 via Adherens from 36675 -\u003e 36674", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 36675, - "TargetID": 36674, - "Directional": false - }] - }, - { - "ID": 73, - "SourceStructureID": 514, - "TargetStructureID": 9226, - "Label": "514-9226 via Adherens from 9661 -\u003e 9662", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 9661, - "TargetID": 9662, - "Directional": false - }] - }, - { - "ID": 74, - "SourceStructureID": 514, - "TargetStructureID": 9693, - "Label": "514-9693 via Gap Junction from 134722 -\u003e 119837, 134994 -\u003e 134995", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 134722, - "TargetID": 119837, - "Directional": false - }, - { - "SourceID": 134994, - "TargetID": 134995, - "Directional": false - }] - }, - { - "ID": 75, - "SourceStructureID": 514, - "TargetStructureID": 25392, - "Label": "514-25392 via Adherens from 25398 -\u003e 25397", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 25398, - "TargetID": 25397, - "Directional": false - }] - }, - { - "ID": 76, - "SourceStructureID": 514, - "TargetStructureID": 25529, - "Label": "514-25529 via Adherens from 25537 -\u003e 25536", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 25537, - "TargetID": 25536, - "Directional": false - }] - }, - { - "ID": 77, - "SourceStructureID": 32371, - "TargetStructureID": 514, - "Label": "32371-514 via Adherens from 32376 -\u003e 1585", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 32376, - "TargetID": 1585, - "Directional": false - }] - }, - { - "ID": 78, - "SourceStructureID": 514, - "TargetStructureID": 32719, - "Label": "514-32719 via Adherens from 32723 -\u003e 32722", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 32723, - "TargetID": 32722, - "Directional": false - }] - }, - { - "ID": 79, - "SourceStructureID": 514, - "TargetStructureID": 40863, - "Label": "514-40863 via Gap Junction from 40873 -\u003e 40872", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 40873, - "TargetID": 40872, - "Directional": false - }] - }, - { - "ID": 80, - "SourceStructureID": 514, - "TargetStructureID": 40988, - "Label": "514-40988 via Adherens from 91261 -\u003e 91262", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 91261, - "TargetID": 91262, - "Directional": false - }] - }, - { - "ID": 81, - "SourceStructureID": 514, - "TargetStructureID": 61231, - "Label": "514-61231 via Adherens from 61239 -\u003e 61238", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 61239, - "TargetID": 61238, - "Directional": false - }] - }, - { - "ID": 82, - "SourceStructureID": 68031, - "TargetStructureID": 514, - "Label": "68031-514 via Adherens from 135100 -\u003e 135099", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 135100, - "TargetID": 135099, - "Directional": false - }] - }, - { - "ID": 83, - "SourceStructureID": 514, - "TargetStructureID": 77019, - "Label": "514-77019 via Adherens from 77022 -\u003e 77021", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 77022, - "TargetID": 77021, - "Directional": false - }] - }, - { - "ID": 84, - "SourceStructureID": 514, - "TargetStructureID": 123146, - "Label": "514-123146 via Adherens from 123149 -\u003e 123148", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 123149, - "TargetID": 123148, - "Directional": false - }] - }, - { - "ID": 85, - "SourceStructureID": 5303, - "TargetStructureID": 517, - "Label": "5303-517 via Adherens from 60499 -\u003e 60498", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 60499, - "TargetID": 60498, - "Directional": false - }] - }, - { - "ID": 86, - "SourceStructureID": 593, - "TargetStructureID": 593, - "Label": "593-593 via Adherens from 135108 -\u003e 135109", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 135108, - "TargetID": 135109, - "Directional": false - }] - }, - { - "ID": 87, - "SourceStructureID": 593, - "TargetStructureID": 593, - "Label": "593-593 via Gap Junction from 63044 -\u003e 63043", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 63044, - "TargetID": 63043, - "Directional": false - }] - }, - { - "ID": 88, - "SourceStructureID": 3679, - "TargetStructureID": 593, - "Label": "3679-593 via Adherens from 135103 -\u003e 135104", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 135103, - "TargetID": 135104, - "Directional": false - }] - }, - { - "ID": 89, - "SourceStructureID": 593, - "TargetStructureID": 3679, - "Label": "593-3679 via Gap Junction from 7715 -\u003e 6360, 7723 -\u003e 5187, 52475 -\u003e 52474, 52476 -\u003e 52473, 59594 -\u003e 59593, 61831 -\u003e 61832, 67238 -\u003e 3770, 83349 -\u003e 83348", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 7715, - "TargetID": 6360, - "Directional": false - }, - { - "SourceID": 7723, - "TargetID": 5187, - "Directional": false - }, - { - "SourceID": 52475, - "TargetID": 52474, - "Directional": false - }, - { - "SourceID": 52476, - "TargetID": 52473, - "Directional": false - }, - { - "SourceID": 59594, - "TargetID": 59593, - "Directional": false - }, - { - "SourceID": 61831, - "TargetID": 61832, - "Directional": false - }, - { - "SourceID": 67238, - "TargetID": 3770, - "Directional": false - }, - { - "SourceID": 83349, - "TargetID": 83348, - "Directional": false - }] - }, - { - "ID": 90, - "SourceStructureID": 593, - "TargetStructureID": 5279, - "Label": "593-5279 via Gap Junction from 92636 -\u003e 92635", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 92636, - "TargetID": 92635, - "Directional": false - }] - }, - { - "ID": 91, - "SourceStructureID": 6997, - "TargetStructureID": 593, - "Label": "6997-593 via Adherens from 135105 -\u003e 135106", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 135105, - "TargetID": 135106, - "Directional": false - }] - }, - { - "ID": 92, - "SourceStructureID": 6997, - "TargetStructureID": 593, - "Label": "6997-593 via Gap Junction from 52442 -\u003e 52441, 59747 -\u003e 59749", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 52442, - "TargetID": 52441, - "Directional": false - }, - { - "SourceID": 59747, - "TargetID": 59749, - "Directional": false - }] - }, - { - "ID": 93, - "SourceStructureID": 1724, - "TargetStructureID": 1724, - "Label": "1724-1724 via Gap Junction from 20015 -\u003e 3968, 47944 -\u003e 48454, 48679 -\u003e 48678", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 20015, - "TargetID": 3968, - "Directional": false - }, - { - "SourceID": 47944, - "TargetID": 48454, - "Directional": false - }, - { - "SourceID": 48679, - "TargetID": 48678, - "Directional": false - }] - }, - { - "ID": 94, - "SourceStructureID": 1724, - "TargetStructureID": 5279, - "Label": "1724-5279 via Gap Junction from 48677 -\u003e 48676", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 48677, - "TargetID": 48676, - "Directional": false - }] - }, - { - "ID": 95, - "SourceStructureID": 2610, - "TargetStructureID": 3679, - "Label": "2610-3679 via Gap Junction from 17968 -\u003e 17967, 17969 -\u003e 3862", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 17968, - "TargetID": 17967, - "Directional": false - }, - { - "SourceID": 17969, - "TargetID": 3862, - "Directional": false - }] - }, - { - "ID": 96, - "SourceStructureID": 5345, - "TargetStructureID": 2610, - "Label": "5345-2610 via Gap Junction from 15673 -\u003e 15669, 15680 -\u003e 15670, 16811 -\u003e 2843, 16820 -\u003e 2829, 19040 -\u003e 19039", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 15673, - "TargetID": 15669, - "Directional": false - }, - { - "SourceID": 15680, - "TargetID": 15670, - "Directional": false - }, - { - "SourceID": 16811, - "TargetID": 2843, - "Directional": false - }, - { - "SourceID": 16820, - "TargetID": 2829, - "Directional": false - }, - { - "SourceID": 19040, - "TargetID": 19039, - "Directional": false - }] - }, - { - "ID": 97, - "SourceStructureID": 2610, - "TargetStructureID": 5517, - "Label": "2610-5517 via Gap Junction from 15015 -\u003e 96058, 96502 -\u003e 96501", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 15015, - "TargetID": 96058, - "Directional": false - }, - { - "SourceID": 96502, - "TargetID": 96501, - "Directional": false - }] - }, - { - "ID": 98, - "SourceStructureID": 6997, - "TargetStructureID": 2610, - "Label": "6997-2610 via Adherens from 136835 -\u003e 136836", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 136835, - "TargetID": 136836, - "Directional": false - }] - }, - { - "ID": 99, - "SourceStructureID": 2610, - "TargetStructureID": 6997, - "Label": "2610-6997 via Gap Junction from 9396 -\u003e 31420, 22019 -\u003e 22018, 22280 -\u003e 22279, 22851 -\u003e 21923, 56986 -\u003e 56985, 56993 -\u003e 56992, 95585 -\u003e 95584, 99172 -\u003e 99171, 135004 -\u003e 135009, 135034 -\u003e 135033", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 9396, - "TargetID": 31420, - "Directional": false - }, - { - "SourceID": 22019, - "TargetID": 22018, - "Directional": false - }, - { - "SourceID": 22280, - "TargetID": 22279, - "Directional": false - }, - { - "SourceID": 22851, - "TargetID": 21923, - "Directional": false - }, - { - "SourceID": 56986, - "TargetID": 56985, - "Directional": false - }, - { - "SourceID": 56993, - "TargetID": 56992, - "Directional": false - }, - { - "SourceID": 95585, - "TargetID": 95584, - "Directional": false - }, - { - "SourceID": 99172, - "TargetID": 99171, - "Directional": false - }, - { - "SourceID": 135004, - "TargetID": 135009, - "Directional": false - }, - { - "SourceID": 135034, - "TargetID": 135033, - "Directional": false - }] - }, - { - "ID": 100, - "SourceStructureID": 8037, - "TargetStructureID": 2610, - "Label": "8037-2610 via Gap Junction from 11384 -\u003e 2847, 15668 -\u003e 15667, 17903 -\u003e 17902", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 11384, - "TargetID": 2847, - "Directional": false - }, - { - "SourceID": 15668, - "TargetID": 15667, - "Directional": false - }, - { - "SourceID": 17903, - "TargetID": 17902, - "Directional": false - }] - }, - { - "ID": 101, - "SourceStructureID": 2610, - "TargetStructureID": 8990, - "Label": "2610-8990 via Adherens from 95939 -\u003e 95938, 95943 -\u003e 95942, 95944 -\u003e 17958", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 95939, - "TargetID": 95938, - "Directional": false - }, - { - "SourceID": 95943, - "TargetID": 95942, - "Directional": false - }, - { - "SourceID": 95944, - "TargetID": 17958, - "Directional": false - }] - }, - { - "ID": 102, - "SourceStructureID": 2610, - "TargetStructureID": 8990, - "Label": "2610-8990 via Unknown from 95941 -\u003e 95940", - "Type": "Unknown", - "Directional": false, - "Links": [{ - "SourceID": 95941, - "TargetID": 95940, - "Directional": false - }] - }, - { - "ID": 103, - "SourceStructureID": 9693, - "TargetStructureID": 2610, - "Label": "9693-2610 via Adherens from 120074 -\u003e 120079, 134728 -\u003e 134729, 135023 -\u003e 135024", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 120074, - "TargetID": 120079, - "Directional": false - }, - { - "SourceID": 134728, - "TargetID": 134729, - "Directional": false - }, - { - "SourceID": 135023, - "TargetID": 135024, - "Directional": false - }] - }, - { - "ID": 104, - "SourceStructureID": 9693, - "TargetStructureID": 2610, - "Label": "9693-2610 via Gap Junction from 9760 -\u003e 9761, 15012 -\u003e 2861, 18732 -\u003e 18733, 101442 -\u003e 101443, 119819 -\u003e 17221, 120073 -\u003e 120078, 120076 -\u003e 120077, 134723 -\u003e 119839, 134727 -\u003e 120088, 134731 -\u003e 95761, 134990 -\u003e 134991", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 9760, - "TargetID": 9761, - "Directional": false - }, - { - "SourceID": 15012, - "TargetID": 2861, - "Directional": false - }, - { - "SourceID": 18732, - "TargetID": 18733, - "Directional": false - }, - { - "SourceID": 101442, - "TargetID": 101443, - "Directional": false - }, - { - "SourceID": 119819, - "TargetID": 17221, - "Directional": false - }, - { - "SourceID": 120073, - "TargetID": 120078, - "Directional": false - }, - { - "SourceID": 120076, - "TargetID": 120077, - "Directional": false - }, - { - "SourceID": 134723, - "TargetID": 119839, - "Directional": false - }, - { - "SourceID": 134727, - "TargetID": 120088, - "Directional": false - }, - { - "SourceID": 134731, - "TargetID": 95761, - "Directional": false - }, - { - "SourceID": 134990, - "TargetID": 134991, - "Directional": false - }] - }, - { - "ID": 105, - "SourceStructureID": 6117, - "TargetStructureID": 3257, - "Label": "6117-3257 via Gap Junction from 59088 -\u003e 59083", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 59088, - "TargetID": 59083, - "Directional": false - }] - }, - { - "ID": 106, - "SourceStructureID": 6169, - "TargetStructureID": 3257, - "Label": "6169-3257 via Gap Junction from 16193 -\u003e 16203, 16225 -\u003e 16214, 18413 -\u003e 18412, 23058 -\u003e 11912, 29696 -\u003e 29695, 39559 -\u003e 16213, 92700 -\u003e 92699, 133080 -\u003e 9142", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 16193, - "TargetID": 16203, - "Directional": false - }, - { - "SourceID": 16225, - "TargetID": 16214, - "Directional": false - }, - { - "SourceID": 18413, - "TargetID": 18412, - "Directional": false - }, - { - "SourceID": 23058, - "TargetID": 11912, - "Directional": false - }, - { - "SourceID": 29696, - "TargetID": 29695, - "Directional": false - }, - { - "SourceID": 39559, - "TargetID": 16213, - "Directional": false - }, - { - "SourceID": 92700, - "TargetID": 92699, - "Directional": false - }, - { - "SourceID": 133080, - "TargetID": 9142, - "Directional": false - }] - }, - { - "ID": 107, - "SourceStructureID": 3679, - "TargetStructureID": 3679, - "Label": "3679-3679 via Adherens from 13461 -\u003e 130120", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 13461, - "TargetID": 130120, - "Directional": false - }] - }, - { - "ID": 108, - "SourceStructureID": 3679, - "TargetStructureID": 3679, - "Label": "3679-3679 via Gap Junction from 33033 -\u003e 14922, 33035 -\u003e 33034, 33037 -\u003e 33036, 62877 -\u003e 33029", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 33033, - "TargetID": 14922, - "Directional": false - }, - { - "SourceID": 33035, - "TargetID": 33034, - "Directional": false - }, - { - "SourceID": 33037, - "TargetID": 33036, - "Directional": false - }, - { - "SourceID": 62877, - "TargetID": 33029, - "Directional": false - }] - }, - { - "ID": 109, - "SourceStructureID": 3679, - "TargetStructureID": 3679, - "Label": "3679-3679 via Unknown from 92720 -\u003e 92721", - "Type": "Unknown", - "Directional": false, - "Links": [{ - "SourceID": 92720, - "TargetID": 92721, - "Directional": false - }] - }, - { - "ID": 110, - "SourceStructureID": 3679, - "TargetStructureID": 5017, - "Label": "3679-5017 via Adherens from 115709 -\u003e 115708", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 115709, - "TargetID": 115708, - "Directional": false - }] - }, - { - "ID": 111, - "SourceStructureID": 3679, - "TargetStructureID": 5150, - "Label": "3679-5150 via Adherens from 131324 -\u003e 131325", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 131324, - "TargetID": 131325, - "Directional": false - }] - }, - { - "ID": 112, - "SourceStructureID": 5279, - "TargetStructureID": 3679, - "Label": "5279-3679 via Gap Junction from 6340 -\u003e 3709, 6359 -\u003e 6355, 49258 -\u003e 3784, 92540 -\u003e 92539, 97206 -\u003e 97207, 97531 -\u003e 3779, 97577 -\u003e 27431, 133860 -\u003e 133861, 147965 -\u003e 3782", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 6340, - "TargetID": 3709, - "Directional": false - }, - { - "SourceID": 6359, - "TargetID": 6355, - "Directional": false - }, - { - "SourceID": 49258, - "TargetID": 3784, - "Directional": false - }, - { - "SourceID": 92540, - "TargetID": 92539, - "Directional": false - }, - { - "SourceID": 97206, - "TargetID": 97207, - "Directional": false - }, - { - "SourceID": 97531, - "TargetID": 3779, - "Directional": false - }, - { - "SourceID": 97577, - "TargetID": 27431, - "Directional": false - }, - { - "SourceID": 133860, - "TargetID": 133861, - "Directional": false - }, - { - "SourceID": 147965, - "TargetID": 3782, - "Directional": false - }] - }, - { - "ID": 113, - "SourceStructureID": 5283, - "TargetStructureID": 3679, - "Label": "5283-3679 via Adherens from 124154 -\u003e 135063, 132179 -\u003e 132178", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 124154, - "TargetID": 135063, - "Directional": false - }, - { - "SourceID": 132179, - "TargetID": 132178, - "Directional": false - }] - }, - { - "ID": 114, - "SourceStructureID": 5283, - "TargetStructureID": 3679, - "Label": "5283-3679 via Gap Junction from 22413 -\u003e 22412, 130542 -\u003e 130541, 131659 -\u003e 131658, 131696 -\u003e 131697, 132090 -\u003e 66991, 132176 -\u003e 132177, 132193 -\u003e 132192, 132293 -\u003e 132292, 132308 -\u003e 132307, 132310 -\u003e 132309", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 22413, - "TargetID": 22412, - "Directional": false - }, - { - "SourceID": 130542, - "TargetID": 130541, - "Directional": false - }, - { - "SourceID": 131659, - "TargetID": 131658, - "Directional": false - }, - { - "SourceID": 131696, - "TargetID": 131697, - "Directional": false - }, - { - "SourceID": 132090, - "TargetID": 66991, - "Directional": false - }, - { - "SourceID": 132176, - "TargetID": 132177, - "Directional": false - }, - { - "SourceID": 132193, - "TargetID": 132192, - "Directional": false - }, - { - "SourceID": 132293, - "TargetID": 132292, - "Directional": false - }, - { - "SourceID": 132308, - "TargetID": 132307, - "Directional": false - }, - { - "SourceID": 132310, - "TargetID": 132309, - "Directional": false - }] - }, - { - "ID": 115, - "SourceStructureID": 5303, - "TargetStructureID": 3679, - "Label": "5303-3679 via Adherens from 102641 -\u003e 102642", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 102641, - "TargetID": 102642, - "Directional": false - }] - }, - { - "ID": 116, - "SourceStructureID": 3679, - "TargetStructureID": 6117, - "Label": "3679-6117 via Gap Junction from 22393 -\u003e 22392, 30881 -\u003e 7955, 83145 -\u003e 83144, 83947 -\u003e 83946, 134148 -\u003e 134147", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 22393, - "TargetID": 22392, - "Directional": false - }, - { - "SourceID": 30881, - "TargetID": 7955, - "Directional": false - }, - { - "SourceID": 83145, - "TargetID": 83144, - "Directional": false - }, - { - "SourceID": 83947, - "TargetID": 83946, - "Directional": false - }, - { - "SourceID": 134148, - "TargetID": 134147, - "Directional": false - }] - }, - { - "ID": 117, - "SourceStructureID": 6169, - "TargetStructureID": 3679, - "Label": "6169-3679 via Gap Junction from 10839 -\u003e 3729, 14913 -\u003e 3719, 14927 -\u003e 9697, 14942 -\u003e 9699, 16326 -\u003e 8023, 16438 -\u003e 16437, 16761 -\u003e 16760, 18159 -\u003e 18157, 18404 -\u003e 18403, 24657 -\u003e 9695, 29706 -\u003e 29705, 41036 -\u003e 3725, 87743 -\u003e 3752, 87744 -\u003e 3755, 133064 -\u003e 132902", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 10839, - "TargetID": 3729, - "Directional": false - }, - { - "SourceID": 14913, - "TargetID": 3719, - "Directional": false - }, - { - "SourceID": 14927, - "TargetID": 9697, - "Directional": false - }, - { - "SourceID": 14942, - "TargetID": 9699, - "Directional": false - }, - { - "SourceID": 16326, - "TargetID": 8023, - "Directional": false - }, - { - "SourceID": 16438, - "TargetID": 16437, - "Directional": false - }, - { - "SourceID": 16761, - "TargetID": 16760, - "Directional": false - }, - { - "SourceID": 18159, - "TargetID": 18157, - "Directional": false - }, - { - "SourceID": 18404, - "TargetID": 18403, - "Directional": false - }, - { - "SourceID": 24657, - "TargetID": 9695, - "Directional": false - }, - { - "SourceID": 29706, - "TargetID": 29705, - "Directional": false - }, - { - "SourceID": 41036, - "TargetID": 3725, - "Directional": false - }, - { - "SourceID": 87743, - "TargetID": 3752, - "Directional": false - }, - { - "SourceID": 87744, - "TargetID": 3755, - "Directional": false - }, - { - "SourceID": 133064, - "TargetID": 132902, - "Directional": false - }] - }, - { - "ID": 118, - "SourceStructureID": 3679, - "TargetStructureID": 8037, - "Label": "3679-8037 via Gap Junction from 148174 -\u003e 148173", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 148174, - "TargetID": 148173, - "Directional": false - }] - }, - { - "ID": 119, - "SourceStructureID": 4835, - "TargetStructureID": 4835, - "Label": "4835-4835 via Gap Junction from 12777 -\u003e 8394", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 12777, - "TargetID": 8394, - "Directional": false - }] - }, - { - "ID": 120, - "SourceStructureID": 5017, - "TargetStructureID": 5017, - "Label": "5017-5017 via Adherens from 92258 -\u003e 92259", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 92258, - "TargetID": 92259, - "Directional": false - }] - }, - { - "ID": 121, - "SourceStructureID": 5017, - "TargetStructureID": 61231, - "Label": "5017-61231 via Adherens from 61240 -\u003e 61238", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 61240, - "TargetID": 61238, - "Directional": false - }] - }, - { - "ID": 122, - "SourceStructureID": 5150, - "TargetStructureID": 5150, - "Label": "5150-5150 via Postsynapse from 5240 -\u003e 5241", - "Type": "Postsynapse", - "Directional": false, - "Links": [{ - "SourceID": 5240, - "TargetID": 5241, - "Directional": false - }] - }, - { - "ID": 123, - "SourceStructureID": 5279, - "TargetStructureID": 5279, - "Label": "5279-5279 via Adherens from 49262 -\u003e 49249", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 49262, - "TargetID": 49249, - "Directional": false - }] - }, - { - "ID": 124, - "SourceStructureID": 5279, - "TargetStructureID": 5517, - "Label": "5279-5517 via Gap Junction from 49267 -\u003e 49275", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 49267, - "TargetID": 49275, - "Directional": false - }] - }, - { - "ID": 125, - "SourceStructureID": 6117, - "TargetStructureID": 5279, - "Label": "6117-5279 via Gap Junction from 97142 -\u003e 97141, 98034 -\u003e 98033, 133845 -\u003e 133844, 133847 -\u003e 133846", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 97142, - "TargetID": 97141, - "Directional": false - }, - { - "SourceID": 98034, - "TargetID": 98033, - "Directional": false - }, - { - "SourceID": 133845, - "TargetID": 133844, - "Directional": false - }, - { - "SourceID": 133847, - "TargetID": 133846, - "Directional": false - }] - }, - { - "ID": 126, - "SourceStructureID": 6169, - "TargetStructureID": 5279, - "Label": "6169-5279 via Gap Junction from 9469 -\u003e 92670, 49239 -\u003e 47143, 49241 -\u003e 49242, 92667 -\u003e 9470", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 9469, - "TargetID": 92670, - "Directional": false - }, - { - "SourceID": 49239, - "TargetID": 47143, - "Directional": false - }, - { - "SourceID": 49241, - "TargetID": 49242, - "Directional": false - }, - { - "SourceID": 92667, - "TargetID": 9470, - "Directional": false - }] - }, - { - "ID": 127, - "SourceStructureID": 5283, - "TargetStructureID": 5283, - "Label": "5283-5283 via Adherens from 123933 -\u003e 131662, 130539 -\u003e 130538", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 123933, - "TargetID": 131662, - "Directional": false - }, - { - "SourceID": 130539, - "TargetID": 130538, - "Directional": false - }] - }, - { - "ID": 128, - "SourceStructureID": 5283, - "TargetStructureID": 6156, - "Label": "5283-6156 via Adherens from 123894 -\u003e 123895", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 123894, - "TargetID": 123895, - "Directional": false - }] - }, - { - "ID": 129, - "SourceStructureID": 5283, - "TargetStructureID": 6156, - "Label": "5283-6156 via Gap Junction from 132207 -\u003e 132206", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 132207, - "TargetID": 132206, - "Directional": false - }] - }, - { - "ID": 130, - "SourceStructureID": 8037, - "TargetStructureID": 5283, - "Label": "8037-5283 via Gap Junction from 131684 -\u003e 131685", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 131684, - "TargetID": 131685, - "Directional": false - }] - }, - { - "ID": 131, - "SourceStructureID": 5283, - "TargetStructureID": 9693, - "Label": "5283-9693 via Adherens from 135014 -\u003e 135013", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 135014, - "TargetID": 135013, - "Directional": false - }] - }, - { - "ID": 132, - "SourceStructureID": 5345, - "TargetStructureID": 5345, - "Label": "5345-5345 via Gap Junction from 88854 -\u003e 8484", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 88854, - "TargetID": 8484, - "Directional": false - }] - }, - { - "ID": 133, - "SourceStructureID": 5345, - "TargetStructureID": 5517, - "Label": "5345-5517 via Gap Junction from 96100 -\u003e 96099", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 96100, - "TargetID": 96099, - "Directional": false - }] - }, - { - "ID": 134, - "SourceStructureID": 5345, - "TargetStructureID": 6997, - "Label": "5345-6997 via Gap Junction from 22158 -\u003e 22157, 57002 -\u003e 57003", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 22158, - "TargetID": 22157, - "Directional": false - }, - { - "SourceID": 57002, - "TargetID": 57003, - "Directional": false - }] - }, - { - "ID": 135, - "SourceStructureID": 6997, - "TargetStructureID": 5345, - "Label": "6997-5345 via Unknown from 83072 -\u003e 79980", - "Type": "Unknown", - "Directional": false, - "Links": [{ - "SourceID": 83072, - "TargetID": 79980, - "Directional": false - }] - }, - { - "ID": 136, - "SourceStructureID": 8037, - "TargetStructureID": 5345, - "Label": "8037-5345 via Adherens from 88898 -\u003e 88892", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 88898, - "TargetID": 88892, - "Directional": false - }] - }, - { - "ID": 137, - "SourceStructureID": 8037, - "TargetStructureID": 5345, - "Label": "8037-5345 via Gap Junction from 15683 -\u003e 15682, 19229 -\u003e 7569, 88896 -\u003e 88891, 130639 -\u003e 130638", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 15683, - "TargetID": 15682, - "Directional": false - }, - { - "SourceID": 19229, - "TargetID": 7569, - "Directional": false - }, - { - "SourceID": 88896, - "TargetID": 88891, - "Directional": false - }, - { - "SourceID": 130639, - "TargetID": 130638, - "Directional": false - }] - }, - { - "ID": 138, - "SourceStructureID": 9693, - "TargetStructureID": 5345, - "Label": "9693-5345 via Gap Junction from 119785 -\u003e 119786, 132765 -\u003e 132764, 135000 -\u003e 134999", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 119785, - "TargetID": 119786, - "Directional": false - }, - { - "SourceID": 132765, - "TargetID": 132764, - "Directional": false - }, - { - "SourceID": 135000, - "TargetID": 134999, - "Directional": false - }] - }, - { - "ID": 139, - "SourceStructureID": 8037, - "TargetStructureID": 5517, - "Label": "8037-5517 via Gap Junction from 10870 -\u003e 96119, 96120 -\u003e 96118", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 10870, - "TargetID": 96119, - "Directional": false - }, - { - "SourceID": 96120, - "TargetID": 96118, - "Directional": false - }] - }, - { - "ID": 140, - "SourceStructureID": 6117, - "TargetStructureID": 6117, - "Label": "6117-6117 via Gap Junction from 134146 -\u003e 134145", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 134146, - "TargetID": 134145, - "Directional": false - }] - }, - { - "ID": 141, - "SourceStructureID": 6169, - "TargetStructureID": 6117, - "Label": "6169-6117 via Gap Junction from 20565 -\u003e 20566, 24645 -\u003e 20580, 59087 -\u003e 59084, 86222 -\u003e 86223, 92385 -\u003e 92386", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 20565, - "TargetID": 20566, - "Directional": false - }, - { - "SourceID": 24645, - "TargetID": 20580, - "Directional": false - }, - { - "SourceID": 59087, - "TargetID": 59084, - "Directional": false - }, - { - "SourceID": 86222, - "TargetID": 86223, - "Directional": false - }, - { - "SourceID": 92385, - "TargetID": 92386, - "Directional": false - }] - }, - { - "ID": 142, - "SourceStructureID": 6997, - "TargetStructureID": 6156, - "Label": "6997-6156 via Gap Junction from 135075 -\u003e 135074", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 135075, - "TargetID": 135074, - "Directional": false - }] - }, - { - "ID": 143, - "SourceStructureID": 6156, - "TargetStructureID": 6997, - "Label": "6156-6997 via Touch from 136724 -\u003e 136725", - "Type": "Touch", - "Directional": false, - "Links": [{ - "SourceID": 136724, - "TargetID": 136725, - "Directional": false - }] - }, - { - "ID": 144, - "SourceStructureID": 6156, - "TargetStructureID": 8037, - "Label": "6156-8037 via Adherens from 133323 -\u003e 133322", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 133323, - "TargetID": 133322, - "Directional": false - }] - }, - { - "ID": 145, - "SourceStructureID": 8037, - "TargetStructureID": 6156, - "Label": "8037-6156 via Gap Junction from 117528 -\u003e 117527", - "Type": "Gap Junction", - "Directional": false, - "Links": [{ - "SourceID": 117528, - "TargetID": 117527, - "Directional": false - }] - }, - { - "ID": 146, - "SourceStructureID": 18576, - "TargetStructureID": 6156, - "Label": "18576-6156 via Adherens from 133215 -\u003e 133214", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 133215, - "TargetID": 133214, - "Directional": false - }] - }, - { - "ID": 147, - "SourceStructureID": 6997, - "TargetStructureID": 9693, - "Label": "6997-9693 via Touch from 136665 -\u003e 136666", - "Type": "Touch", - "Directional": false, - "Links": [{ - "SourceID": 136665, - "TargetID": 136666, - "Directional": false - }] - }, - { - "ID": 148, - "SourceStructureID": 9693, - "TargetStructureID": 8037, - "Label": "9693-8037 via Adherens from 119773 -\u003e 119774", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 119773, - "TargetID": 119774, - "Directional": false - }] - }, - { - "ID": 149, - "SourceStructureID": 9693, - "TargetStructureID": 32739, - "Label": "9693-32739 via Adherens from 119829 -\u003e 119833", - "Type": "Adherens", - "Directional": false, - "Links": [{ - "SourceID": 119829, - "TargetID": 119833, - "Directional": false - }] - }, - { - "ID": 150, - "SourceStructureID": 179, - "TargetStructureID": 410, - "Label": "179-410 via Conventional from 103833 -\u003e 23276", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 103833, - "TargetID": 23276, - "Directional": true - }] - }, - { - "ID": 151, - "SourceStructureID": 179, - "TargetStructureID": 517, - "Label": "179-517 via Conventional from 41026 -\u003e 16427", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 41026, - "TargetID": 16427, - "Directional": true - }] - }, - { - "ID": 152, - "SourceStructureID": 179, - "TargetStructureID": 518, - "Label": "179-518 via Conventional from 25301 -\u003e 25304, 36506 -\u003e 3376, 36507 -\u003e 3508", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 25301, - "TargetID": 25304, - "Directional": true - }, - { - "SourceID": 36506, - "TargetID": 3376, - "Directional": true - }, - { - "SourceID": 36507, - "TargetID": 3508, - "Directional": true - }] - }, - { - "ID": 153, - "SourceStructureID": 179, - "TargetStructureID": 519, - "Label": "179-519 via Conventional from 9332 -\u003e 9305, 9333 -\u003e 9307, 25363 -\u003e 9238, 25786 -\u003e 25787", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 9332, - "TargetID": 9305, - "Directional": true - }, - { - "SourceID": 9333, - "TargetID": 9307, - "Directional": true - }, - { - "SourceID": 25363, - "TargetID": 9238, - "Directional": true - }, - { - "SourceID": 25786, - "TargetID": 25787, - "Directional": true - }] - }, - { - "ID": 154, - "SourceStructureID": 179, - "TargetStructureID": 10897, - "Label": "179-10897 via Conventional from 104881 -\u003e 104883", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 104881, - "TargetID": 104883, - "Directional": true - }] - }, - { - "ID": 155, - "SourceStructureID": 179, - "TargetStructureID": 10931, - "Label": "179-10931 via Conventional from 87469 -\u003e 87470", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 87469, - "TargetID": 87470, - "Directional": true - }] - }, - { - "ID": 156, - "SourceStructureID": 179, - "TargetStructureID": 10943, - "Label": "179-10943 via Conventional from 105528 -\u003e 10944", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 105528, - "TargetID": 10944, - "Directional": true - }] - }, - { - "ID": 157, - "SourceStructureID": 179, - "TargetStructureID": 15100, - "Label": "179-15100 via Conventional from 33112 -\u003e 17995", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 33112, - "TargetID": 17995, - "Directional": true - }] - }, - { - "ID": 158, - "SourceStructureID": 179, - "TargetStructureID": 15942, - "Label": "179-15942 via Conventional from 103840 -\u003e 103839", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 103840, - "TargetID": 103839, - "Directional": true - }] - }, - { - "ID": 159, - "SourceStructureID": 308, - "TargetStructureID": 2610, - "Label": "308-2610 via Conventional from 43590 -\u003e 43591, 43760 -\u003e 43761", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 43590, - "TargetID": 43591, - "Directional": true - }, - { - "SourceID": 43760, - "TargetID": 43761, - "Directional": true - }] - }, - { - "ID": 160, - "SourceStructureID": 308, - "TargetStructureID": 5017, - "Label": "308-5017 via Conventional from 42551 -\u003e 42554, 42556 -\u003e 42557, 42558 -\u003e 42559, 42560 -\u003e 42561, 86721 -\u003e 86722", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 42551, - "TargetID": 42554, - "Directional": true - }, - { - "SourceID": 42556, - "TargetID": 42557, - "Directional": true - }, - { - "SourceID": 42558, - "TargetID": 42559, - "Directional": true - }, - { - "SourceID": 42560, - "TargetID": 42561, - "Directional": true - }, - { - "SourceID": 86721, - "TargetID": 86722, - "Directional": true - }] - }, - { - "ID": 161, - "SourceStructureID": 308, - "TargetStructureID": 8749, - "Label": "308-8749 via Conventional from 42571 -\u003e 8830, 42572 -\u003e 42573, 43459 -\u003e 8823, 43462 -\u003e 8821, 43465 -\u003e 43467, 43469 -\u003e 43468, 43470 -\u003e 8801, 43471 -\u003e 43472, 86718 -\u003e 86719", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 42571, - "TargetID": 8830, - "Directional": true - }, - { - "SourceID": 42572, - "TargetID": 42573, - "Directional": true - }, - { - "SourceID": 43459, - "TargetID": 8823, - "Directional": true - }, - { - "SourceID": 43462, - "TargetID": 8821, - "Directional": true - }, - { - "SourceID": 43465, - "TargetID": 43467, - "Directional": true - }, - { - "SourceID": 43469, - "TargetID": 43468, - "Directional": true - }, - { - "SourceID": 43470, - "TargetID": 8801, - "Directional": true - }, - { - "SourceID": 43471, - "TargetID": 43472, - "Directional": true - }, - { - "SourceID": 86718, - "TargetID": 86719, - "Directional": true - }] - }, - { - "ID": 162, - "SourceStructureID": 308, - "TargetStructureID": 10872, - "Label": "308-10872 via Conventional from 43774 -\u003e 15055, 43775 -\u003e 15058", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 43774, - "TargetID": 15055, - "Directional": true - }, - { - "SourceID": 43775, - "TargetID": 15058, - "Directional": true - }] - }, - { - "ID": 163, - "SourceStructureID": 410, - "TargetStructureID": 478, - "Label": "410-478 via Conventional from 21348 -\u003e 21349", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 21348, - "TargetID": 21349, - "Directional": true - }] - }, - { - "ID": 164, - "SourceStructureID": 469, - "TargetStructureID": 476, - "Label": "469-476 via Ribbon Synapse from 4653 -\u003e 5723, 4665 -\u003e 15065, 4672 -\u003e 15066, 4684 -\u003e 16315, 4685 -\u003e 16317, 16300 -\u003e 16298, 16312 -\u003e 16310, 18021 -\u003e 18020, 18025 -\u003e 18024", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 4653, - "TargetID": 5723, - "Directional": true - }, - { - "SourceID": 4665, - "TargetID": 15065, - "Directional": true - }, - { - "SourceID": 4672, - "TargetID": 15066, - "Directional": true - }, - { - "SourceID": 4684, - "TargetID": 16315, - "Directional": true - }, - { - "SourceID": 4685, - "TargetID": 16317, - "Directional": true - }, - { - "SourceID": 16300, - "TargetID": 16298, - "Directional": true - }, - { - "SourceID": 16312, - "TargetID": 16310, - "Directional": true - }, - { - "SourceID": 18021, - "TargetID": 18020, - "Directional": true - }, - { - "SourceID": 18025, - "TargetID": 18024, - "Directional": true - }] - }, - { - "ID": 165, - "SourceStructureID": 469, - "TargetStructureID": 514, - "Label": "469-514 via Ribbon Synapse from 4645 -\u003e 14959, 4676 -\u003e 14959", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 4645, - "TargetID": 14959, - "Directional": true - }, - { - "SourceID": 4676, - "TargetID": 14959, - "Directional": true - }] - }, - { - "ID": 166, - "SourceStructureID": 469, - "TargetStructureID": 3257, - "Label": "469-3257 via Ribbon Synapse from 16308 -\u003e 16307", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16308, - "TargetID": 16307, - "Directional": true - }] - }, - { - "ID": 167, - "SourceStructureID": 469, - "TargetStructureID": 4835, - "Label": "469-4835 via Ribbon Synapse from 4688 -\u003e 36738, 36735 -\u003e 36734", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 4688, - "TargetID": 36738, - "Directional": true - }, - { - "SourceID": 36735, - "TargetID": 36734, - "Directional": true - }] - }, - { - "ID": 168, - "SourceStructureID": 469, - "TargetStructureID": 4943, - "Label": "469-4943 via Ribbon Synapse from 4641 -\u003e 13432, 4676 -\u003e 13430, 4677 -\u003e 13431, 18025 -\u003e 13435", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 4641, - "TargetID": 13432, - "Directional": true - }, - { - "SourceID": 4676, - "TargetID": 13430, - "Directional": true - }, - { - "SourceID": 4677, - "TargetID": 13431, - "Directional": true - }, - { - "SourceID": 18025, - "TargetID": 13435, - "Directional": true - }] - }, - { - "ID": 169, - "SourceStructureID": 471, - "TargetStructureID": 476, - "Label": "471-476 via Ribbon Synapse from 7023 -\u003e 31971, 9649 -\u003e 3162, 9652 -\u003e 3163, 16035 -\u003e 16034, 16283 -\u003e 16284, 16295 -\u003e 16294, 16297 -\u003e 16296, 16302 -\u003e 16301, 16304 -\u003e 16303, 16316 -\u003e 4682, 16318 -\u003e 18009, 18006 -\u003e 3184, 18007 -\u003e 3182, 18008 -\u003e 3203, 18380 -\u003e 3171, 18380 -\u003e 3172, 60637 -\u003e 2235, 65180 -\u003e 3165", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 7023, - "TargetID": 31971, - "Directional": true - }, - { - "SourceID": 9649, - "TargetID": 3162, - "Directional": true - }, - { - "SourceID": 9652, - "TargetID": 3163, - "Directional": true - }, - { - "SourceID": 16035, - "TargetID": 16034, - "Directional": true - }, - { - "SourceID": 16283, - "TargetID": 16284, - "Directional": true - }, - { - "SourceID": 16295, - "TargetID": 16294, - "Directional": true - }, - { - "SourceID": 16297, - "TargetID": 16296, - "Directional": true - }, - { - "SourceID": 16302, - "TargetID": 16301, - "Directional": true - }, - { - "SourceID": 16304, - "TargetID": 16303, - "Directional": true - }, - { - "SourceID": 16316, - "TargetID": 4682, - "Directional": true - }, - { - "SourceID": 16318, - "TargetID": 18009, - "Directional": true - }, - { - "SourceID": 18006, - "TargetID": 3184, - "Directional": true - }, - { - "SourceID": 18007, - "TargetID": 3182, - "Directional": true - }, - { - "SourceID": 18008, - "TargetID": 3203, - "Directional": true - }, - { - "SourceID": 18380, - "TargetID": 3171, - "Directional": true - }, - { - "SourceID": 18380, - "TargetID": 3172, - "Directional": true - }, - { - "SourceID": 60637, - "TargetID": 2235, - "Directional": true - }, - { - "SourceID": 65180, - "TargetID": 3165, - "Directional": true - }] - }, - { - "ID": 170, - "SourceStructureID": 471, - "TargetStructureID": 514, - "Label": "471-514 via Ribbon Synapse from 16039 -\u003e 3551, 16292 -\u003e 16293, 16309 -\u003e 3565, 88077 -\u003e 88078", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16039, - "TargetID": 3551, - "Directional": true - }, - { - "SourceID": 16292, - "TargetID": 16293, - "Directional": true - }, - { - "SourceID": 16309, - "TargetID": 3565, - "Directional": true - }, - { - "SourceID": 88077, - "TargetID": 88078, - "Directional": true - }] - }, - { - "ID": 171, - "SourceStructureID": 471, - "TargetStructureID": 3257, - "Label": "471-3257 via Ribbon Synapse from 8234 -\u003e 8233, 10864 -\u003e 10863", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 8234, - "TargetID": 8233, - "Directional": true - }, - { - "SourceID": 10864, - "TargetID": 10863, - "Directional": true - }] - }, - { - "ID": 172, - "SourceStructureID": 476, - "TargetStructureID": 4567, - "Label": "476-4567 via Conventional from 3052 -\u003e 15589", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 3052, - "TargetID": 15589, - "Directional": true - }] - }, - { - "ID": 173, - "SourceStructureID": 476, - "TargetStructureID": 4568, - "Label": "476-4568 via Conventional from 2117 -\u003e 11482", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 2117, - "TargetID": 11482, - "Directional": true - }] - }, - { - "ID": 174, - "SourceStructureID": 476, - "TargetStructureID": 5150, - "Label": "476-5150 via Conventional from 3040 -\u003e 5152, 4831 -\u003e 5155", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 3040, - "TargetID": 5152, - "Directional": true - }, - { - "SourceID": 4831, - "TargetID": 5155, - "Directional": true - }] - }, - { - "ID": 175, - "SourceStructureID": 478, - "TargetStructureID": 5150, - "Label": "478-5150 via Ribbon Synapse from 10947 -\u003e 5162, 19386 -\u003e 19385", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10947, - "TargetID": 5162, - "Directional": true - }, - { - "SourceID": 19386, - "TargetID": 19385, - "Directional": true - }] - }, - { - "ID": 176, - "SourceStructureID": 483, - "TargetStructureID": 18576, - "Label": "483-18576 via Ribbon Synapse from 100555 -\u003e 100554", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 100555, - "TargetID": 100554, - "Directional": true - }] - }, - { - "ID": 177, - "SourceStructureID": 485, - "TargetStructureID": 18576, - "Label": "485-18576 via Ribbon Synapse from 94212 -\u003e 100471", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 94212, - "TargetID": 100471, - "Directional": true - }] - }, - { - "ID": 178, - "SourceStructureID": 485, - "TargetStructureID": 25392, - "Label": "485-25392 via Ribbon Synapse from 32297 -\u003e 32298", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 32297, - "TargetID": 32298, - "Directional": true - }] - }, - { - "ID": 179, - "SourceStructureID": 514, - "TargetStructureID": 478, - "Label": "514-478 via Conventional from 1171 -\u003e 19455, 1176 -\u003e 4634, 1189 -\u003e 4629, 4820 -\u003e 19441, 4826 -\u003e 19440", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 1171, - "TargetID": 19455, - "Directional": true - }, - { - "SourceID": 1176, - "TargetID": 4634, - "Directional": true - }, - { - "SourceID": 1189, - "TargetID": 4629, - "Directional": true - }, - { - "SourceID": 4820, - "TargetID": 19441, - "Directional": true - }, - { - "SourceID": 4826, - "TargetID": 19440, - "Directional": true - }] - }, - { - "ID": 180, - "SourceStructureID": 514, - "TargetStructureID": 597, - "Label": "514-597 via Conventional from 43399 -\u003e 43400", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 43399, - "TargetID": 43400, - "Directional": true - }] - }, - { - "ID": 181, - "SourceStructureID": 514, - "TargetStructureID": 992, - "Label": "514-992 via Conventional from 59642 -\u003e 15120, 59643 -\u003e 15121", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 59642, - "TargetID": 15120, - "Directional": true - }, - { - "SourceID": 59643, - "TargetID": 15121, - "Directional": true - }] - }, - { - "ID": 182, - "SourceStructureID": 514, - "TargetStructureID": 4567, - "Label": "514-4567 via Conventional from 6210 -\u003e 23293, 15469 -\u003e 15596, 15580 -\u003e 15573, 15581 -\u003e 15575, 15595 -\u003e 15594", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 6210, - "TargetID": 23293, - "Directional": true - }, - { - "SourceID": 15469, - "TargetID": 15596, - "Directional": true - }, - { - "SourceID": 15580, - "TargetID": 15573, - "Directional": true - }, - { - "SourceID": 15581, - "TargetID": 15575, - "Directional": true - }, - { - "SourceID": 15595, - "TargetID": 15594, - "Directional": true - }] - }, - { - "ID": 183, - "SourceStructureID": 514, - "TargetStructureID": 4568, - "Label": "514-4568 via Conventional from 4572 -\u003e 43402", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 4572, - "TargetID": 43402, - "Directional": true - }] - }, - { - "ID": 184, - "SourceStructureID": 514, - "TargetStructureID": 5150, - "Label": "514-5150 via Conventional from 1304 -\u003e 5172, 4576 -\u003e 5167", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 1304, - "TargetID": 5172, - "Directional": true - }, - { - "SourceID": 4576, - "TargetID": 5167, - "Directional": true - }] - }, - { - "ID": 185, - "SourceStructureID": 514, - "TargetStructureID": 6850, - "Label": "514-6850 via Conventional from 4823 -\u003e 6854", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 4823, - "TargetID": 6854, - "Directional": true - }] - }, - { - "ID": 186, - "SourceStructureID": 514, - "TargetStructureID": 8485, - "Label": "514-8485 via Conventional from 1147 -\u003e 15366, 1151 -\u003e 15370, 1154 -\u003e 15371, 11666 -\u003e 11667", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 1147, - "TargetID": 15366, - "Directional": true - }, - { - "SourceID": 1151, - "TargetID": 15370, - "Directional": true - }, - { - "SourceID": 1154, - "TargetID": 15371, - "Directional": true - }, - { - "SourceID": 11666, - "TargetID": 11667, - "Directional": true - }] - }, - { - "ID": 187, - "SourceStructureID": 514, - "TargetStructureID": 9504, - "Label": "514-9504 via Conventional from 1370 -\u003e 9505, 16649 -\u003e 16648", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 1370, - "TargetID": 9505, - "Directional": true - }, - { - "SourceID": 16649, - "TargetID": 16648, - "Directional": true - }] - }, - { - "ID": 188, - "SourceStructureID": 514, - "TargetStructureID": 15377, - "Label": "514-15377 via Conventional from 4817 -\u003e 15378", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 4817, - "TargetID": 15378, - "Directional": true - }] - }, - { - "ID": 189, - "SourceStructureID": 514, - "TargetStructureID": 25392, - "Label": "514-25392 via Adherens from 25396 -\u003e 25395", - "Type": "Adherens", - "Directional": true, - "Links": [{ - "SourceID": 25396, - "TargetID": 25395, - "Directional": true - }] - }, - { - "ID": 190, - "SourceStructureID": 514, - "TargetStructureID": 28913, - "Label": "514-28913 via Conventional from 28930 -\u003e 28928", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 28930, - "TargetID": 28928, - "Directional": true - }] - }, - { - "ID": 191, - "SourceStructureID": 514, - "TargetStructureID": 60440, - "Label": "514-60440 via Conventional from 3221 -\u003e 60444, 3222 -\u003e 60441, 3222 -\u003e 60443", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 3221, - "TargetID": 60444, - "Directional": true - }, - { - "SourceID": 3222, - "TargetID": 60441, - "Directional": true - }, - { - "SourceID": 3222, - "TargetID": 60443, - "Directional": true - }] - }, - { - "ID": 192, - "SourceStructureID": 514, - "TargetStructureID": 83461, - "Label": "514-83461 via Conventional from 4585 -\u003e 83467", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 4585, - "TargetID": 83467, - "Directional": true - }] - }, - { - "ID": 193, - "SourceStructureID": 516, - "TargetStructureID": 514, - "Label": "516-514 via Ribbon Synapse from 10848 -\u003e 10849", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10848, - "TargetID": 10849, - "Directional": true - }] - }, - { - "ID": 194, - "SourceStructureID": 516, - "TargetStructureID": 3257, - "Label": "516-3257 via Ribbon Synapse from 6575 -\u003e 16198, 16196 -\u003e 16197", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 6575, - "TargetID": 16198, - "Directional": true - }, - { - "SourceID": 16196, - "TargetID": 16197, - "Directional": true - }] - }, - { - "ID": 195, - "SourceStructureID": 516, - "TargetStructureID": 3679, - "Label": "516-3679 via Ribbon Synapse from 6188 -\u003e 6186, 6190 -\u003e 6189, 6510 -\u003e 8015, 18402 -\u003e 39335, 39329 -\u003e 39330, 66147 -\u003e 66148, 66149 -\u003e 8013", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 6188, - "TargetID": 6186, - "Directional": true - }, - { - "SourceID": 6190, - "TargetID": 6189, - "Directional": true - }, - { - "SourceID": 6510, - "TargetID": 8015, - "Directional": true - }, - { - "SourceID": 18402, - "TargetID": 39335, - "Directional": true - }, - { - "SourceID": 39329, - "TargetID": 39330, - "Directional": true - }, - { - "SourceID": 66147, - "TargetID": 66148, - "Directional": true - }, - { - "SourceID": 66149, - "TargetID": 8013, - "Directional": true - }] - }, - { - "ID": 196, - "SourceStructureID": 516, - "TargetStructureID": 6169, - "Label": "516-6169 via Ribbon Synapse from 3737 -\u003e 16330, 6384 -\u003e 16224, 6385 -\u003e 16223, 6391 -\u003e 16247, 6393 -\u003e 29692, 6399 -\u003e 18392, 6405 -\u003e 39341, 10833 -\u003e 10832, 10835 -\u003e 10836, 16177 -\u003e 16176, 16204 -\u003e 16205", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 3737, - "TargetID": 16330, - "Directional": true - }, - { - "SourceID": 6384, - "TargetID": 16224, - "Directional": true - }, - { - "SourceID": 6385, - "TargetID": 16223, - "Directional": true - }, - { - "SourceID": 6391, - "TargetID": 16247, - "Directional": true - }, - { - "SourceID": 6393, - "TargetID": 29692, - "Directional": true - }, - { - "SourceID": 6399, - "TargetID": 18392, - "Directional": true - }, - { - "SourceID": 6405, - "TargetID": 39341, - "Directional": true - }, - { - "SourceID": 10833, - "TargetID": 10832, - "Directional": true - }, - { - "SourceID": 10835, - "TargetID": 10836, - "Directional": true - }, - { - "SourceID": 16177, - "TargetID": 16176, - "Directional": true - }, - { - "SourceID": 16204, - "TargetID": 16205, - "Directional": true - }] - }, - { - "ID": 197, - "SourceStructureID": 516, - "TargetStructureID": 32371, - "Label": "516-32371 via Ribbon Synapse from 3737 -\u003e 32375", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 3737, - "TargetID": 32375, - "Directional": true - }] - }, - { - "ID": 198, - "SourceStructureID": 516, - "TargetStructureID": 40863, - "Label": "516-40863 via Ribbon Synapse from 16349 -\u003e 40864", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16349, - "TargetID": 40864, - "Directional": true - }] - }, - { - "ID": 199, - "SourceStructureID": 517, - "TargetStructureID": 514, - "Label": "517-514 via Ribbon Synapse from 10812 -\u003e 10811, 16411 -\u003e 1591, 16421 -\u003e 3081, 16422 -\u003e 3082, 16575 -\u003e 1602", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10812, - "TargetID": 10811, - "Directional": true - }, - { - "SourceID": 16411, - "TargetID": 1591, - "Directional": true - }, - { - "SourceID": 16421, - "TargetID": 3081, - "Directional": true - }, - { - "SourceID": 16422, - "TargetID": 3082, - "Directional": true - }, - { - "SourceID": 16575, - "TargetID": 1602, - "Directional": true - }] - }, - { - "ID": 200, - "SourceStructureID": 517, - "TargetStructureID": 3679, - "Label": "517-3679 via Ribbon Synapse from 14945 -\u003e 3714, 14946 -\u003e 3711, 14947 -\u003e 14915, 16420 -\u003e 16419, 16428 -\u003e 16429, 16442 -\u003e 16431, 16443 -\u003e 16432, 19155 -\u003e 19156, 19157 -\u003e 19160, 19158 -\u003e 19159, 19161 -\u003e 92719, 19163 -\u003e 33031, 19164 -\u003e 35626, 41038 -\u003e 3722, 66136 -\u003e 66137", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 14945, - "TargetID": 3714, - "Directional": true - }, - { - "SourceID": 14946, - "TargetID": 3711, - "Directional": true - }, - { - "SourceID": 14947, - "TargetID": 14915, - "Directional": true - }, - { - "SourceID": 16420, - "TargetID": 16419, - "Directional": true - }, - { - "SourceID": 16428, - "TargetID": 16429, - "Directional": true - }, - { - "SourceID": 16442, - "TargetID": 16431, - "Directional": true - }, - { - "SourceID": 16443, - "TargetID": 16432, - "Directional": true - }, - { - "SourceID": 19155, - "TargetID": 19156, - "Directional": true - }, - { - "SourceID": 19157, - "TargetID": 19160, - "Directional": true - }, - { - "SourceID": 19158, - "TargetID": 19159, - "Directional": true - }, - { - "SourceID": 19161, - "TargetID": 92719, - "Directional": true - }, - { - "SourceID": 19163, - "TargetID": 33031, - "Directional": true - }, - { - "SourceID": 19164, - "TargetID": 35626, - "Directional": true - }, - { - "SourceID": 41038, - "TargetID": 3722, - "Directional": true - }, - { - "SourceID": 66136, - "TargetID": 66137, - "Directional": true - }] - }, - { - "ID": 201, - "SourceStructureID": 517, - "TargetStructureID": 4943, - "Label": "517-4943 via Ribbon Synapse from 19157 -\u003e 40987, 19158 -\u003e 40979", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 19157, - "TargetID": 40987, - "Directional": true - }, - { - "SourceID": 19158, - "TargetID": 40979, - "Directional": true - }] - }, - { - "ID": 202, - "SourceStructureID": 517, - "TargetStructureID": 5303, - "Label": "517-5303 via Ribbon Synapse from 19164 -\u003e 35625", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 19164, - "TargetID": 35625, - "Directional": true - }] - }, - { - "ID": 203, - "SourceStructureID": 517, - "TargetStructureID": 5609, - "Label": "517-5609 via Ribbon Synapse from 16422 -\u003e 20659, 16428 -\u003e 20661", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16422, - "TargetID": 20659, - "Directional": true - }, - { - "SourceID": 16428, - "TargetID": 20661, - "Directional": true - }] - }, - { - "ID": 204, - "SourceStructureID": 517, - "TargetStructureID": 6169, - "Label": "517-6169 via Ribbon Synapse from 6903 -\u003e 18158, 10814 -\u003e 11623, 11624 -\u003e 9460, 14165 -\u003e 14166, 41034 -\u003e 41035", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 6903, - "TargetID": 18158, - "Directional": true - }, - { - "SourceID": 10814, - "TargetID": 11623, - "Directional": true - }, - { - "SourceID": 11624, - "TargetID": 9460, - "Directional": true - }, - { - "SourceID": 14165, - "TargetID": 14166, - "Directional": true - }, - { - "SourceID": 41034, - "TargetID": 41035, - "Directional": true - }] - }, - { - "ID": 205, - "SourceStructureID": 518, - "TargetStructureID": 179, - "Label": "518-179 via Ribbon Synapse from 3442 -\u003e 25302", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 3442, - "TargetID": 25302, - "Directional": true - }] - }, - { - "ID": 206, - "SourceStructureID": 518, - "TargetStructureID": 476, - "Label": "518-476 via Ribbon Synapse from 2303 -\u003e 2300, 2323 -\u003e 2331, 2325 -\u003e 2333, 3354 -\u003e 16029, 3371 -\u003e 14713, 3380 -\u003e 14741, 3387 -\u003e 14999, 3399 -\u003e 14998, 3413 -\u003e 14992, 3419 -\u003e 14996, 3439 -\u003e 2442, 3442 -\u003e 18012, 3445 -\u003e 32137, 3457 -\u003e 2414, 3459 -\u003e 2416, 3475 -\u003e 2448, 3487 -\u003e 18015, 3503 -\u003e 36695, 3519 -\u003e 18013, 5783 -\u003e 37191, 14722 -\u003e 3305, 18014 -\u003e 2441", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 2303, - "TargetID": 2300, - "Directional": true - }, - { - "SourceID": 2323, - "TargetID": 2331, - "Directional": true - }, - { - "SourceID": 2325, - "TargetID": 2333, - "Directional": true - }, - { - "SourceID": 3354, - "TargetID": 16029, - "Directional": true - }, - { - "SourceID": 3371, - "TargetID": 14713, - "Directional": true - }, - { - "SourceID": 3380, - "TargetID": 14741, - "Directional": true - }, - { - "SourceID": 3387, - "TargetID": 14999, - "Directional": true - }, - { - "SourceID": 3399, - "TargetID": 14998, - "Directional": true - }, - { - "SourceID": 3413, - "TargetID": 14992, - "Directional": true - }, - { - "SourceID": 3419, - "TargetID": 14996, - "Directional": true - }, - { - "SourceID": 3439, - "TargetID": 2442, - "Directional": true - }, - { - "SourceID": 3442, - "TargetID": 18012, - "Directional": true - }, - { - "SourceID": 3445, - "TargetID": 32137, - "Directional": true - }, - { - "SourceID": 3457, - "TargetID": 2414, - "Directional": true - }, - { - "SourceID": 3459, - "TargetID": 2416, - "Directional": true - }, - { - "SourceID": 3475, - "TargetID": 2448, - "Directional": true - }, - { - "SourceID": 3487, - "TargetID": 18015, - "Directional": true - }, - { - "SourceID": 3503, - "TargetID": 36695, - "Directional": true - }, - { - "SourceID": 3519, - "TargetID": 18013, - "Directional": true - }, - { - "SourceID": 5783, - "TargetID": 37191, - "Directional": true - }, - { - "SourceID": 14722, - "TargetID": 3305, - "Directional": true - }, - { - "SourceID": 18014, - "TargetID": 2441, - "Directional": true - }] - }, - { - "ID": 207, - "SourceStructureID": 518, - "TargetStructureID": 514, - "Label": "518-514 via Ribbon Synapse from 3303 -\u003e 3296, 3471 -\u003e 37188, 14717 -\u003e 1554", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 3303, - "TargetID": 3296, - "Directional": true - }, - { - "SourceID": 3471, - "TargetID": 37188, - "Directional": true - }, - { - "SourceID": 14717, - "TargetID": 1554, - "Directional": true - }] - }, - { - "ID": 208, - "SourceStructureID": 518, - "TargetStructureID": 4835, - "Label": "518-4835 via Ribbon Synapse from 3390 -\u003e 36743", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 3390, - "TargetID": 36743, - "Directional": true - }] - }, - { - "ID": 209, - "SourceStructureID": 518, - "TargetStructureID": 9023, - "Label": "518-9023 via Ribbon Synapse from 14722 -\u003e 36672, 14723 -\u003e 36673", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 14722, - "TargetID": 36672, - "Directional": true - }, - { - "SourceID": 14723, - "TargetID": 36673, - "Directional": true - }] - }, - { - "ID": 210, - "SourceStructureID": 519, - "TargetStructureID": 179, - "Label": "519-179 via Conventional from 9292 -\u003e 9338", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 9292, - "TargetID": 9338, - "Directional": true - }] - }, - { - "ID": 211, - "SourceStructureID": 519, - "TargetStructureID": 179, - "Label": "519-179 via Ribbon Synapse from 9284 -\u003e 25788, 9299 -\u003e 9331", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 9284, - "TargetID": 25788, - "Directional": true - }, - { - "SourceID": 9299, - "TargetID": 9331, - "Directional": true - }] - }, - { - "ID": 212, - "SourceStructureID": 519, - "TargetStructureID": 476, - "Label": "519-476 via Ribbon Synapse from 9237 -\u003e 25373, 16518 -\u003e 16519, 16520 -\u003e 16521, 22616 -\u003e 3345, 25435 -\u003e 25434", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 9237, - "TargetID": 25373, - "Directional": true - }, - { - "SourceID": 16518, - "TargetID": 16519, - "Directional": true - }, - { - "SourceID": 16520, - "TargetID": 16521, - "Directional": true - }, - { - "SourceID": 22616, - "TargetID": 3345, - "Directional": true - }, - { - "SourceID": 25435, - "TargetID": 25434, - "Directional": true - }] - }, - { - "ID": 213, - "SourceStructureID": 519, - "TargetStructureID": 514, - "Label": "519-514 via Ribbon Synapse from 1376 -\u003e 1383, 1464 -\u003e 1466, 9237 -\u003e 3334, 9241 -\u003e 3335, 9243 -\u003e 3579, 9250 -\u003e 3340, 9278 -\u003e 15081, 9282 -\u003e 93914, 9299 -\u003e 9302, 13807 -\u003e 13806, 13810 -\u003e 13809, 16154 -\u003e 16155, 16156 -\u003e 16157, 16158 -\u003e 3596, 16520 -\u003e 16541, 16531 -\u003e 16522, 16533 -\u003e 16534, 16537 -\u003e 16536, 22589 -\u003e 1448, 22617 -\u003e 3282, 133246 -\u003e 133245", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 1376, - "TargetID": 1383, - "Directional": true - }, - { - "SourceID": 1464, - "TargetID": 1466, - "Directional": true - }, - { - "SourceID": 9237, - "TargetID": 3334, - "Directional": true - }, - { - "SourceID": 9241, - "TargetID": 3335, - "Directional": true - }, - { - "SourceID": 9243, - "TargetID": 3579, - "Directional": true - }, - { - "SourceID": 9250, - "TargetID": 3340, - "Directional": true - }, - { - "SourceID": 9278, - "TargetID": 15081, - "Directional": true - }, - { - "SourceID": 9282, - "TargetID": 93914, - "Directional": true - }, - { - "SourceID": 9299, - "TargetID": 9302, - "Directional": true - }, - { - "SourceID": 13807, - "TargetID": 13806, - "Directional": true - }, - { - "SourceID": 13810, - "TargetID": 13809, - "Directional": true - }, - { - "SourceID": 16154, - "TargetID": 16155, - "Directional": true - }, - { - "SourceID": 16156, - "TargetID": 16157, - "Directional": true - }, - { - "SourceID": 16158, - "TargetID": 3596, - "Directional": true - }, - { - "SourceID": 16520, - "TargetID": 16541, - "Directional": true - }, - { - "SourceID": 16531, - "TargetID": 16522, - "Directional": true - }, - { - "SourceID": 16533, - "TargetID": 16534, - "Directional": true - }, - { - "SourceID": 16537, - "TargetID": 16536, - "Directional": true - }, - { - "SourceID": 22589, - "TargetID": 1448, - "Directional": true - }, - { - "SourceID": 22617, - "TargetID": 3282, - "Directional": true - }, - { - "SourceID": 133246, - "TargetID": 133245, - "Directional": true - }] - }, - { - "ID": 214, - "SourceStructureID": 519, - "TargetStructureID": 2610, - "Label": "519-2610 via Ribbon Synapse from 1468 -\u003e 66173, 9254 -\u003e 9255, 66171 -\u003e 66172", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 1468, - "TargetID": 66173, - "Directional": true - }, - { - "SourceID": 9254, - "TargetID": 9255, - "Directional": true - }, - { - "SourceID": 66171, - "TargetID": 66172, - "Directional": true - }] - }, - { - "ID": 215, - "SourceStructureID": 519, - "TargetStructureID": 5303, - "Label": "519-5303 via Ribbon Synapse from 1468 -\u003e 8744", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 1468, - "TargetID": 8744, - "Directional": true - }] - }, - { - "ID": 216, - "SourceStructureID": 519, - "TargetStructureID": 25529, - "Label": "519-25529 via Ribbon Synapse from 13807 -\u003e 25530", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 13807, - "TargetID": 25530, - "Directional": true - }] - }, - { - "ID": 217, - "SourceStructureID": 593, - "TargetStructureID": 68031, - "Label": "593-68031 via Cistern Pre from 68627 -\u003e 68628", - "Type": "Cistern Pre", - "Directional": true, - "Links": [{ - "SourceID": 68627, - "TargetID": 68628, - "Directional": true - }] - }, - { - "ID": 218, - "SourceStructureID": 992, - "TargetStructureID": 3679, - "Label": "992-3679 via Ribbon Synapse from 23295 -\u003e 23294", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 23295, - "TargetID": 23294, - "Directional": true - }] - }, - { - "ID": 219, - "SourceStructureID": 1610, - "TargetStructureID": 514, - "Label": "1610-514 via Conventional from 23281 -\u003e 23279", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 23281, - "TargetID": 23279, - "Directional": true - }] - }, - { - "ID": 220, - "SourceStructureID": 2610, - "TargetStructureID": 8485, - "Label": "2610-8485 via Conventional from 2630 -\u003e 28881, 2632 -\u003e 28879", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 2630, - "TargetID": 28881, - "Directional": true - }, - { - "SourceID": 2632, - "TargetID": 28879, - "Directional": true - }] - }, - { - "ID": 221, - "SourceStructureID": 2610, - "TargetStructureID": 28913, - "Label": "2610-28913 via Conventional from 2634 -\u003e 28926, 2657 -\u003e 28914", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 2634, - "TargetID": 28926, - "Directional": true - }, - { - "SourceID": 2657, - "TargetID": 28914, - "Directional": true - }] - }, - { - "ID": 222, - "SourceStructureID": 3257, - "TargetStructureID": 4568, - "Label": "3257-4568 via Conventional from 21881 -\u003e 11513, 66225 -\u003e 11524, 130016 -\u003e 11512", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 21881, - "TargetID": 11513, - "Directional": true - }, - { - "SourceID": 66225, - "TargetID": 11524, - "Directional": true - }, - { - "SourceID": 130016, - "TargetID": 11512, - "Directional": true - }] - }, - { - "ID": 223, - "SourceStructureID": 3679, - "TargetStructureID": 992, - "Label": "3679-992 via Conventional from 5066 -\u003e 5065, 29409 -\u003e 29410, 29413 -\u003e 29412, 31145 -\u003e 31144, 31147 -\u003e 31146, 33878 -\u003e 33879", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 5066, - "TargetID": 5065, - "Directional": true - }, - { - "SourceID": 29409, - "TargetID": 29410, - "Directional": true - }, - { - "SourceID": 29413, - "TargetID": 29412, - "Directional": true - }, - { - "SourceID": 31145, - "TargetID": 31144, - "Directional": true - }, - { - "SourceID": 31147, - "TargetID": 31146, - "Directional": true - }, - { - "SourceID": 33878, - "TargetID": 33879, - "Directional": true - }] - }, - { - "ID": 224, - "SourceStructureID": 3679, - "TargetStructureID": 4567, - "Label": "3679-4567 via Conventional from 29407 -\u003e 60554, 29414 -\u003e 21334, 29415 -\u003e 29416, 60553 -\u003e 60552, 60862 -\u003e 60861", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 29407, - "TargetID": 60554, - "Directional": true - }, - { - "SourceID": 29414, - "TargetID": 21334, - "Directional": true - }, - { - "SourceID": 29415, - "TargetID": 29416, - "Directional": true - }, - { - "SourceID": 60553, - "TargetID": 60552, - "Directional": true - }, - { - "SourceID": 60862, - "TargetID": 60861, - "Directional": true - }] - }, - { - "ID": 225, - "SourceStructureID": 3679, - "TargetStructureID": 5150, - "Label": "3679-5150 via Conventional from 5185 -\u003e 5183, 15437 -\u003e 5233", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 5185, - "TargetID": 5183, - "Directional": true - }, - { - "SourceID": 15437, - "TargetID": 5233, - "Directional": true - }] - }, - { - "ID": 226, - "SourceStructureID": 3679, - "TargetStructureID": 28913, - "Label": "3679-28913 via Conventional from 28936 -\u003e 28935, 29408 -\u003e 28934", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 28936, - "TargetID": 28935, - "Directional": true - }, - { - "SourceID": 29408, - "TargetID": 28934, - "Directional": true - }] - }, - { - "ID": 227, - "SourceStructureID": 4568, - "TargetStructureID": 3257, - "Label": "4568-3257 via Ribbon Synapse from 11521 -\u003e 66231, 11523 -\u003e 12448", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 11521, - "TargetID": 66231, - "Directional": true - }, - { - "SourceID": 11523, - "TargetID": 12448, - "Directional": true - }] - }, - { - "ID": 228, - "SourceStructureID": 4568, - "TargetStructureID": 6169, - "Label": "4568-6169 via Ribbon Synapse from 11551 -\u003e 9473", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 11551, - "TargetID": 9473, - "Directional": true - }] - }, - { - "ID": 229, - "SourceStructureID": 4943, - "TargetStructureID": 469, - "Label": "4943-469 via Conventional from 13426 -\u003e 4664, 13429 -\u003e 4673", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 13426, - "TargetID": 4664, - "Directional": true - }, - { - "SourceID": 13429, - "TargetID": 4673, - "Directional": true - }] - }, - { - "ID": 230, - "SourceStructureID": 4943, - "TargetStructureID": 514, - "Label": "4943-514 via Conventional from 13433 -\u003e 14957", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 13433, - "TargetID": 14957, - "Directional": true - }] - }, - { - "ID": 231, - "SourceStructureID": 4943, - "TargetStructureID": 517, - "Label": "4943-517 via Conventional from 42786 -\u003e 40978", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 42786, - "TargetID": 40978, - "Directional": true - }] - }, - { - "ID": 232, - "SourceStructureID": 4943, - "TargetStructureID": 518, - "Label": "4943-518 via Conventional from 8501 -\u003e 3467", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 8501, - "TargetID": 3467, - "Directional": true - }] - }, - { - "ID": 233, - "SourceStructureID": 5017, - "TargetStructureID": 308, - "Label": "5017-308 via Ribbon Synapse from 42553 -\u003e 86720", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 42553, - "TargetID": 86720, - "Directional": true - }] - }, - { - "ID": 234, - "SourceStructureID": 5017, - "TargetStructureID": 514, - "Label": "5017-514 via Ribbon Synapse from 5021 -\u003e 5014, 13821 -\u003e 13816, 13829 -\u003e 13828, 16152 -\u003e 16151, 17048 -\u003e 17049, 17066 -\u003e 17083, 17068 -\u003e 17938, 133284 -\u003e 133285", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 5021, - "TargetID": 5014, - "Directional": true - }, - { - "SourceID": 13821, - "TargetID": 13816, - "Directional": true - }, - { - "SourceID": 13829, - "TargetID": 13828, - "Directional": true - }, - { - "SourceID": 16152, - "TargetID": 16151, - "Directional": true - }, - { - "SourceID": 17048, - "TargetID": 17049, - "Directional": true - }, - { - "SourceID": 17066, - "TargetID": 17083, - "Directional": true - }, - { - "SourceID": 17068, - "TargetID": 17938, - "Directional": true - }, - { - "SourceID": 133284, - "TargetID": 133285, - "Directional": true - }] - }, - { - "ID": 235, - "SourceStructureID": 5017, - "TargetStructureID": 2610, - "Label": "5017-2610 via Ribbon Synapse from 13818 -\u003e 13817, 17054 -\u003e 3616, 17065 -\u003e 17064, 17099 -\u003e 17100, 17104 -\u003e 13788, 17974 -\u003e 17973, 17987 -\u003e 17985, 17988 -\u003e 17986", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 13818, - "TargetID": 13817, - "Directional": true - }, - { - "SourceID": 17054, - "TargetID": 3616, - "Directional": true - }, - { - "SourceID": 17065, - "TargetID": 17064, - "Directional": true - }, - { - "SourceID": 17099, - "TargetID": 17100, - "Directional": true - }, - { - "SourceID": 17104, - "TargetID": 13788, - "Directional": true - }, - { - "SourceID": 17974, - "TargetID": 17973, - "Directional": true - }, - { - "SourceID": 17987, - "TargetID": 17985, - "Directional": true - }, - { - "SourceID": 17988, - "TargetID": 17986, - "Directional": true - }] - }, - { - "ID": 236, - "SourceStructureID": 5017, - "TargetStructureID": 3679, - "Label": "5017-3679 via Ribbon Synapse from 5027 -\u003e 66141, 17056 -\u003e 3832, 17060 -\u003e 3830", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 5027, - "TargetID": 66141, - "Directional": true - }, - { - "SourceID": 17056, - "TargetID": 3832, - "Directional": true - }, - { - "SourceID": 17060, - "TargetID": 3830, - "Directional": true - }] - }, - { - "ID": 237, - "SourceStructureID": 5283, - "TargetStructureID": 3679, - "Label": "5283-3679 via Ribbon Synapse from 124118 -\u003e 132294", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 124118, - "TargetID": 132294, - "Directional": true - }] - }, - { - "ID": 238, - "SourceStructureID": 5303, - "TargetStructureID": 471, - "Label": "5303-471 via Conventional from 32784 -\u003e 32785", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 32784, - "TargetID": 32785, - "Directional": true - }] - }, - { - "ID": 239, - "SourceStructureID": 5303, - "TargetStructureID": 476, - "Label": "5303-476 via Conventional from 102991 -\u003e 3212", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 102991, - "TargetID": 3212, - "Directional": true - }] - }, - { - "ID": 240, - "SourceStructureID": 5303, - "TargetStructureID": 517, - "Label": "5303-517 via Conventional from 35624 -\u003e 14948", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 35624, - "TargetID": 14948, - "Directional": true - }] - }, - { - "ID": 241, - "SourceStructureID": 5303, - "TargetStructureID": 519, - "Label": "5303-519 via Conventional from 8743 -\u003e 3598", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 8743, - "TargetID": 3598, - "Directional": true - }] - }, - { - "ID": 242, - "SourceStructureID": 5303, - "TargetStructureID": 5017, - "Label": "5303-5017 via Conventional from 102634 -\u003e 5037", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 102634, - "TargetID": 5037, - "Directional": true - }] - }, - { - "ID": 243, - "SourceStructureID": 5303, - "TargetStructureID": 7054, - "Label": "5303-7054 via Conventional from 30550 -\u003e 30552", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 30550, - "TargetID": 30552, - "Directional": true - }] - }, - { - "ID": 244, - "SourceStructureID": 5303, - "TargetStructureID": 10625, - "Label": "5303-10625 via Conventional from 30523 -\u003e 20760", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 30523, - "TargetID": 20760, - "Directional": true - }] - }, - { - "ID": 245, - "SourceStructureID": 5303, - "TargetStructureID": 10872, - "Label": "5303-10872 via Conventional from 30565 -\u003e 15748, 100700 -\u003e 15750", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 30565, - "TargetID": 15748, - "Directional": true - }, - { - "SourceID": 100700, - "TargetID": 15750, - "Directional": true - }] - }, - { - "ID": 246, - "SourceStructureID": 5303, - "TargetStructureID": 10897, - "Label": "5303-10897 via Conventional from 35632 -\u003e 35633, 35634 -\u003e 35635, 102666 -\u003e 102667", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 35632, - "TargetID": 35633, - "Directional": true - }, - { - "SourceID": 35634, - "TargetID": 35635, - "Directional": true - }, - { - "SourceID": 102666, - "TargetID": 102667, - "Directional": true - }] - }, - { - "ID": 247, - "SourceStructureID": 5303, - "TargetStructureID": 10943, - "Label": "5303-10943 via Conventional from 35627 -\u003e 35628", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 35627, - "TargetID": 35628, - "Directional": true - }] - }, - { - "ID": 248, - "SourceStructureID": 5303, - "TargetStructureID": 15100, - "Label": "5303-15100 via Conventional from 102939 -\u003e 102940", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 102939, - "TargetID": 102940, - "Directional": true - }] - }, - { - "ID": 249, - "SourceStructureID": 5517, - "TargetStructureID": 1610, - "Label": "5517-1610 via Ribbon Synapse from 96074 -\u003e 96075", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 96074, - "TargetID": 96075, - "Directional": true - }] - }, - { - "ID": 250, - "SourceStructureID": 5609, - "TargetStructureID": 517, - "Label": "5609-517 via Conventional from 20656 -\u003e 16417, 20657 -\u003e 20658, 20663 -\u003e 20665, 20664 -\u003e 20667, 61446 -\u003e 16423", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 20656, - "TargetID": 16417, - "Directional": true - }, - { - "SourceID": 20657, - "TargetID": 20658, - "Directional": true - }, - { - "SourceID": 20663, - "TargetID": 20665, - "Directional": true - }, - { - "SourceID": 20664, - "TargetID": 20667, - "Directional": true - }, - { - "SourceID": 61446, - "TargetID": 16423, - "Directional": true - }] - }, - { - "ID": 251, - "SourceStructureID": 6156, - "TargetStructureID": 514, - "Label": "6156-514 via Ribbon Synapse from 11622 -\u003e 11597, 117625 -\u003e 133371", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 11622, - "TargetID": 11597, - "Directional": true - }, - { - "SourceID": 117625, - "TargetID": 133371, - "Directional": true - }] - }, - { - "ID": 252, - "SourceStructureID": 6156, - "TargetStructureID": 18576, - "Label": "6156-18576 via Ribbon Synapse from 18575 -\u003e 18577, 20418 -\u003e 100454, 133204 -\u003e 133203", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 18575, - "TargetID": 18577, - "Directional": true - }, - { - "SourceID": 20418, - "TargetID": 100454, - "Directional": true - }, - { - "SourceID": 133204, - "TargetID": 133203, - "Directional": true - }] - }, - { - "ID": 253, - "SourceStructureID": 6156, - "TargetStructureID": 25374, - "Label": "6156-25374 via Ribbon Synapse from 25381 -\u003e 25380", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 25381, - "TargetID": 25380, - "Directional": true - }] - }, - { - "ID": 254, - "SourceStructureID": 6169, - "TargetStructureID": 992, - "Label": "6169-992 via Conventional from 29417 -\u003e 29425, 29417 -\u003e 29433", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 29417, - "TargetID": 29425, - "Directional": true - }, - { - "SourceID": 29417, - "TargetID": 29433, - "Directional": true - }] - }, - { - "ID": 255, - "SourceStructureID": 6169, - "TargetStructureID": 4568, - "Label": "6169-4568 via Conventional from 9472 -\u003e 11554, 9476 -\u003e 20778", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 9472, - "TargetID": 11554, - "Directional": true - }, - { - "SourceID": 9476, - "TargetID": 20778, - "Directional": true - }] - }, - { - "ID": 256, - "SourceStructureID": 6169, - "TargetStructureID": 6169, - "Label": "6169-6169 via Conventional from 88185 -\u003e 88184", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 88185, - "TargetID": 88184, - "Directional": true - }] - }, - { - "ID": 257, - "SourceStructureID": 6406, - "TargetStructureID": 514, - "Label": "6406-514 via Conventional from 6418 -\u003e 1006, 6419 -\u003e 1441", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 6418, - "TargetID": 1006, - "Directional": true - }, - { - "SourceID": 6419, - "TargetID": 1441, - "Directional": true - }] - }, - { - "ID": 258, - "SourceStructureID": 7054, - "TargetStructureID": 514, - "Label": "7054-514 via Ribbon Synapse from 7056 -\u003e 2601, 10917 -\u003e 1553", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 7056, - "TargetID": 2601, - "Directional": true - }, - { - "SourceID": 10917, - "TargetID": 1553, - "Directional": true - }] - }, - { - "ID": 259, - "SourceStructureID": 7054, - "TargetStructureID": 3679, - "Label": "7054-3679 via Ribbon Synapse from 43246 -\u003e 43245, 66132 -\u003e 66133, 66134 -\u003e 66135, 135061 -\u003e 135060", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 43246, - "TargetID": 43245, - "Directional": true - }, - { - "SourceID": 66132, - "TargetID": 66133, - "Directional": true - }, - { - "SourceID": 66134, - "TargetID": 66135, - "Directional": true - }, - { - "SourceID": 135061, - "TargetID": 135060, - "Directional": true - }] - }, - { - "ID": 260, - "SourceStructureID": 7054, - "TargetStructureID": 8037, - "Label": "7054-8037 via Ribbon Synapse from 25425 -\u003e 25424, 30553 -\u003e 15730", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 25425, - "TargetID": 25424, - "Directional": true - }, - { - "SourceID": 30553, - "TargetID": 15730, - "Directional": true - }] - }, - { - "ID": 261, - "SourceStructureID": 8037, - "TargetStructureID": 8485, - "Label": "8037-8485 via Conventional from 11671 -\u003e 11672, 11673 -\u003e 11674", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 11671, - "TargetID": 11672, - "Directional": true - }, - { - "SourceID": 11673, - "TargetID": 11674, - "Directional": true - }] - }, - { - "ID": 262, - "SourceStructureID": 8485, - "TargetStructureID": 2610, - "Label": "8485-2610 via Ribbon Synapse from 71249 -\u003e 71250", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 71249, - "TargetID": 71250, - "Directional": true - }] - }, - { - "ID": 263, - "SourceStructureID": 8485, - "TargetStructureID": 28913, - "Label": "8485-28913 via Conventional from 43990 -\u003e 43991", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 43990, - "TargetID": 43991, - "Directional": true - }] - }, - { - "ID": 264, - "SourceStructureID": 8749, - "TargetStructureID": 308, - "Label": "8749-308 via Ribbon Synapse from 8820 -\u003e 43450, 8822 -\u003e 43451, 17035 -\u003e 42580, 42564 -\u003e 42565", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 8820, - "TargetID": 43450, - "Directional": true - }, - { - "SourceID": 8822, - "TargetID": 43451, - "Directional": true - }, - { - "SourceID": 17035, - "TargetID": 42580, - "Directional": true - }, - { - "SourceID": 42564, - "TargetID": 42565, - "Directional": true - }] - }, - { - "ID": 265, - "SourceStructureID": 8749, - "TargetStructureID": 410, - "Label": "8749-410 via Ribbon Synapse from 8845 -\u003e 17491, 8847 -\u003e 17492, 15090 -\u003e 15089, 17370 -\u003e 17371", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 8845, - "TargetID": 17491, - "Directional": true - }, - { - "SourceID": 8847, - "TargetID": 17492, - "Directional": true - }, - { - "SourceID": 15090, - "TargetID": 15089, - "Directional": true - }, - { - "SourceID": 17370, - "TargetID": 17371, - "Directional": true - }] - }, - { - "ID": 266, - "SourceStructureID": 8749, - "TargetStructureID": 514, - "Label": "8749-514 via Ribbon Synapse from 8818 -\u003e 32716, 8820 -\u003e 38204, 8869 -\u003e 15091, 15095 -\u003e 15094, 17035 -\u003e 17034, 17037 -\u003e 17036, 17154 -\u003e 2530, 17155 -\u003e 17156, 17161 -\u003e 17163, 17162 -\u003e 17164, 17165 -\u003e 2500, 18004 -\u003e 18003, 32717 -\u003e 32718", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 8818, - "TargetID": 32716, - "Directional": true - }, - { - "SourceID": 8820, - "TargetID": 38204, - "Directional": true - }, - { - "SourceID": 8869, - "TargetID": 15091, - "Directional": true - }, - { - "SourceID": 15095, - "TargetID": 15094, - "Directional": true - }, - { - "SourceID": 17035, - "TargetID": 17034, - "Directional": true - }, - { - "SourceID": 17037, - "TargetID": 17036, - "Directional": true - }, - { - "SourceID": 17154, - "TargetID": 2530, - "Directional": true - }, - { - "SourceID": 17155, - "TargetID": 17156, - "Directional": true - }, - { - "SourceID": 17161, - "TargetID": 17163, - "Directional": true - }, - { - "SourceID": 17162, - "TargetID": 17164, - "Directional": true - }, - { - "SourceID": 17165, - "TargetID": 2500, - "Directional": true - }, - { - "SourceID": 18004, - "TargetID": 18003, - "Directional": true - }, - { - "SourceID": 32717, - "TargetID": 32718, - "Directional": true - }] - }, - { - "ID": 267, - "SourceStructureID": 8749, - "TargetStructureID": 2610, - "Label": "8749-2610 via Ribbon Synapse from 8856 -\u003e 8857, 8870 -\u003e 2743, 17167 -\u003e 2783, 17373 -\u003e 2748, 17945 -\u003e 17944, 17981 -\u003e 17980", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 8856, - "TargetID": 8857, - "Directional": true - }, - { - "SourceID": 8870, - "TargetID": 2743, - "Directional": true - }, - { - "SourceID": 17167, - "TargetID": 2783, - "Directional": true - }, - { - "SourceID": 17373, - "TargetID": 2748, - "Directional": true - }, - { - "SourceID": 17945, - "TargetID": 17944, - "Directional": true - }, - { - "SourceID": 17981, - "TargetID": 17980, - "Directional": true - }] - }, - { - "ID": 268, - "SourceStructureID": 8749, - "TargetStructureID": 5303, - "Label": "8749-5303 via Ribbon Synapse from 17155 -\u003e 8747", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 17155, - "TargetID": 8747, - "Directional": true - }] - }, - { - "ID": 269, - "SourceStructureID": 8749, - "TargetStructureID": 8749, - "Label": "8749-8749 via Postsynapse from 8831 -\u003e 159264", - "Type": "Postsynapse", - "Directional": true, - "Links": [{ - "SourceID": 8831, - "TargetID": 159264, - "Directional": true - }] - }, - { - "ID": 270, - "SourceStructureID": 8749, - "TargetStructureID": 8749, - "Label": "8749-8749 via Ribbon Synapse from 17981 -\u003e 8832", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 17981, - "TargetID": 8832, - "Directional": true - }] - }, - { - "ID": 271, - "SourceStructureID": 8749, - "TargetStructureID": 32719, - "Label": "8749-32719 via Ribbon Synapse from 8851 -\u003e 32721", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 8851, - "TargetID": 32721, - "Directional": true - }] - }, - { - "ID": 272, - "SourceStructureID": 8990, - "TargetStructureID": 5017, - "Label": "8990-5017 via Conventional from 8991 -\u003e 5019, 8992 -\u003e 5022", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 8991, - "TargetID": 5019, - "Directional": true - }, - { - "SourceID": 8992, - "TargetID": 5022, - "Directional": true - }] - }, - { - "ID": 273, - "SourceStructureID": 8990, - "TargetStructureID": 15942, - "Label": "8990-15942 via Conventional from 95933 -\u003e 95934, 95935 -\u003e 95936", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 95933, - "TargetID": 95934, - "Directional": true - }, - { - "SourceID": 95935, - "TargetID": 95936, - "Directional": true - }] - }, - { - "ID": 274, - "SourceStructureID": 9023, - "TargetStructureID": 517, - "Label": "9023-517 via Conventional from 36677 -\u003e 36679, 36678 -\u003e 36680", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 36677, - "TargetID": 36679, - "Directional": true - }, - { - "SourceID": 36678, - "TargetID": 36680, - "Directional": true - }] - }, - { - "ID": 275, - "SourceStructureID": 9023, - "TargetStructureID": 518, - "Label": "9023-518 via Conventional from 36669 -\u003e 36668, 37134 -\u003e 14720", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 36669, - "TargetID": 36668, - "Directional": true - }, - { - "SourceID": 37134, - "TargetID": 14720, - "Directional": true - }] - }, - { - "ID": 276, - "SourceStructureID": 9124, - "TargetStructureID": 514, - "Label": "9124-514 via Conventional from 22629 -\u003e 3556", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 22629, - "TargetID": 3556, - "Directional": true - }] - }, - { - "ID": 277, - "SourceStructureID": 9226, - "TargetStructureID": 514, - "Label": "9226-514 via Conventional from 9227 -\u003e 3328", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 9227, - "TargetID": 3328, - "Directional": true - }] - }, - { - "ID": 278, - "SourceStructureID": 9228, - "TargetStructureID": 514, - "Label": "9228-514 via Conventional from 9229 -\u003e 3329", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 9229, - "TargetID": 3329, - "Directional": true - }] - }, - { - "ID": 279, - "SourceStructureID": 9504, - "TargetStructureID": 514, - "Label": "9504-514 via Ribbon Synapse from 9512 -\u003e 66204", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 9512, - "TargetID": 66204, - "Directional": true - }] - }, - { - "ID": 280, - "SourceStructureID": 9693, - "TargetStructureID": 514, - "Label": "9693-514 via Ribbon Synapse from 10437 -\u003e 2512", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10437, - "TargetID": 2512, - "Directional": true - }] - }, - { - "ID": 281, - "SourceStructureID": 9693, - "TargetStructureID": 2610, - "Label": "9693-2610 via Ribbon Synapse from 15013 -\u003e 2854", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 15013, - "TargetID": 2854, - "Directional": true - }] - }, - { - "ID": 282, - "SourceStructureID": 10625, - "TargetStructureID": 514, - "Label": "10625-514 via Ribbon Synapse from 16239 -\u003e 16335, 16337 -\u003e 16336, 16339 -\u003e 16338, 16757 -\u003e 16346", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16239, - "TargetID": 16335, - "Directional": true - }, - { - "SourceID": 16337, - "TargetID": 16336, - "Directional": true - }, - { - "SourceID": 16339, - "TargetID": 16338, - "Directional": true - }, - { - "SourceID": 16757, - "TargetID": 16346, - "Directional": true - }] - }, - { - "ID": 283, - "SourceStructureID": 10625, - "TargetStructureID": 3257, - "Label": "10625-3257 via Ribbon Synapse from 16211 -\u003e 22973, 16354 -\u003e 16355, 22915 -\u003e 22914, 22917 -\u003e 22916, 51375 -\u003e 51378", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16211, - "TargetID": 22973, - "Directional": true - }, - { - "SourceID": 16354, - "TargetID": 16355, - "Directional": true - }, - { - "SourceID": 22915, - "TargetID": 22914, - "Directional": true - }, - { - "SourceID": 22917, - "TargetID": 22916, - "Directional": true - }, - { - "SourceID": 51375, - "TargetID": 51378, - "Directional": true - }] - }, - { - "ID": 284, - "SourceStructureID": 10625, - "TargetStructureID": 3679, - "Label": "10625-3679 via Ribbon Synapse from 16235 -\u003e 8026, 16236 -\u003e 8022, 16754 -\u003e 6192, 16756 -\u003e 6193", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16235, - "TargetID": 8026, - "Directional": true - }, - { - "SourceID": 16236, - "TargetID": 8022, - "Directional": true - }, - { - "SourceID": 16754, - "TargetID": 6192, - "Directional": true - }, - { - "SourceID": 16756, - "TargetID": 6193, - "Directional": true - }] - }, - { - "ID": 285, - "SourceStructureID": 10625, - "TargetStructureID": 6169, - "Label": "10625-6169 via Ribbon Synapse from 16183 -\u003e 16182, 16185 -\u003e 16184, 16187 -\u003e 16186, 16190 -\u003e 16189, 16192 -\u003e 16191, 16219 -\u003e 16218, 16222 -\u003e 16221, 16229 -\u003e 16230, 16231 -\u003e 16232, 16323 -\u003e 16322, 16325 -\u003e 16324, 26923 -\u003e 29693", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16183, - "TargetID": 16182, - "Directional": true - }, - { - "SourceID": 16185, - "TargetID": 16184, - "Directional": true - }, - { - "SourceID": 16187, - "TargetID": 16186, - "Directional": true - }, - { - "SourceID": 16190, - "TargetID": 16189, - "Directional": true - }, - { - "SourceID": 16192, - "TargetID": 16191, - "Directional": true - }, - { - "SourceID": 16219, - "TargetID": 16218, - "Directional": true - }, - { - "SourceID": 16222, - "TargetID": 16221, - "Directional": true - }, - { - "SourceID": 16229, - "TargetID": 16230, - "Directional": true - }, - { - "SourceID": 16231, - "TargetID": 16232, - "Directional": true - }, - { - "SourceID": 16323, - "TargetID": 16322, - "Directional": true - }, - { - "SourceID": 16325, - "TargetID": 16324, - "Directional": true - }, - { - "SourceID": 26923, - "TargetID": 29693, - "Directional": true - }] - }, - { - "ID": 286, - "SourceStructureID": 10625, - "TargetStructureID": 40863, - "Label": "10625-40863 via Ribbon Synapse from 26906 -\u003e 40874", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 26906, - "TargetID": 40874, - "Directional": true - }] - }, - { - "ID": 287, - "SourceStructureID": 10872, - "TargetStructureID": 308, - "Label": "10872-308 via Ribbon Synapse from 15042 -\u003e 43776", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 15042, - "TargetID": 43776, - "Directional": true - }] - }, - { - "ID": 288, - "SourceStructureID": 10872, - "TargetStructureID": 514, - "Label": "10872-514 via Ribbon Synapse from 10893 -\u003e 2525", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10893, - "TargetID": 2525, - "Directional": true - }] - }, - { - "ID": 289, - "SourceStructureID": 10872, - "TargetStructureID": 2610, - "Label": "10872-2610 via Ribbon Synapse from 15036 -\u003e 19226, 15040 -\u003e 2901, 15042 -\u003e 17940, 15640 -\u003e 2910, 15641 -\u003e 17898, 15645 -\u003e 2913, 15740 -\u003e 15663, 17897 -\u003e 15647, 17900 -\u003e 17899", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 15036, - "TargetID": 19226, - "Directional": true - }, - { - "SourceID": 15040, - "TargetID": 2901, - "Directional": true - }, - { - "SourceID": 15042, - "TargetID": 17940, - "Directional": true - }, - { - "SourceID": 15640, - "TargetID": 2910, - "Directional": true - }, - { - "SourceID": 15641, - "TargetID": 17898, - "Directional": true - }, - { - "SourceID": 15645, - "TargetID": 2913, - "Directional": true - }, - { - "SourceID": 15740, - "TargetID": 15663, - "Directional": true - }, - { - "SourceID": 17897, - "TargetID": 15647, - "Directional": true - }, - { - "SourceID": 17900, - "TargetID": 17899, - "Directional": true - }] - }, - { - "ID": 290, - "SourceStructureID": 10872, - "TargetStructureID": 5303, - "Label": "10872-5303 via Ribbon Synapse from 15747 -\u003e 30566", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 15747, - "TargetID": 30566, - "Directional": true - }] - }, - { - "ID": 291, - "SourceStructureID": 10872, - "TargetStructureID": 5345, - "Label": "10872-5345 via Ribbon Synapse from 10879 -\u003e 10881, 10882 -\u003e 10883, 10889 -\u003e 10890, 15021 -\u003e 15020, 15742 -\u003e 15674, 15744 -\u003e 15737, 15747 -\u003e 14592, 15751 -\u003e 15753, 19233 -\u003e 32860", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10879, - "TargetID": 10881, - "Directional": true - }, - { - "SourceID": 10882, - "TargetID": 10883, - "Directional": true - }, - { - "SourceID": 10889, - "TargetID": 10890, - "Directional": true - }, - { - "SourceID": 15021, - "TargetID": 15020, - "Directional": true - }, - { - "SourceID": 15742, - "TargetID": 15674, - "Directional": true - }, - { - "SourceID": 15744, - "TargetID": 15737, - "Directional": true - }, - { - "SourceID": 15747, - "TargetID": 14592, - "Directional": true - }, - { - "SourceID": 15751, - "TargetID": 15753, - "Directional": true - }, - { - "SourceID": 19233, - "TargetID": 32860, - "Directional": true - }] - }, - { - "ID": 292, - "SourceStructureID": 10872, - "TargetStructureID": 8037, - "Label": "10872-8037 via Ribbon Synapse from 10891 -\u003e 10892, 11629 -\u003e 11628, 19222 -\u003e 19223, 19224 -\u003e 19225, 19227 -\u003e 19230", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10891, - "TargetID": 10892, - "Directional": true - }, - { - "SourceID": 11629, - "TargetID": 11628, - "Directional": true - }, - { - "SourceID": 19222, - "TargetID": 19223, - "Directional": true - }, - { - "SourceID": 19224, - "TargetID": 19225, - "Directional": true - }, - { - "SourceID": 19227, - "TargetID": 19230, - "Directional": true - }] - }, - { - "ID": 293, - "SourceStructureID": 10897, - "TargetStructureID": 179, - "Label": "10897-179 via Ribbon Synapse from 104875 -\u003e 104874", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 104875, - "TargetID": 104874, - "Directional": true - }] - }, - { - "ID": 294, - "SourceStructureID": 10897, - "TargetStructureID": 514, - "Label": "10897-514 via Ribbon Synapse from 10898 -\u003e 1528, 10899 -\u003e 2596, 10900 -\u003e 1534, 10922 -\u003e 2582, 10923 -\u003e 2584, 10924 -\u003e 10925, 13843 -\u003e 13842, 18949 -\u003e 18950, 18958 -\u003e 2580, 18959 -\u003e 18960, 18965 -\u003e 82028, 104875 -\u003e 104873", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10898, - "TargetID": 1528, - "Directional": true - }, - { - "SourceID": 10899, - "TargetID": 2596, - "Directional": true - }, - { - "SourceID": 10900, - "TargetID": 1534, - "Directional": true - }, - { - "SourceID": 10922, - "TargetID": 2582, - "Directional": true - }, - { - "SourceID": 10923, - "TargetID": 2584, - "Directional": true - }, - { - "SourceID": 10924, - "TargetID": 10925, - "Directional": true - }, - { - "SourceID": 13843, - "TargetID": 13842, - "Directional": true - }, - { - "SourceID": 18949, - "TargetID": 18950, - "Directional": true - }, - { - "SourceID": 18958, - "TargetID": 2580, - "Directional": true - }, - { - "SourceID": 18959, - "TargetID": 18960, - "Directional": true - }, - { - "SourceID": 18965, - "TargetID": 82028, - "Directional": true - }, - { - "SourceID": 104875, - "TargetID": 104873, - "Directional": true - }] - }, - { - "ID": 295, - "SourceStructureID": 10897, - "TargetStructureID": 3679, - "Label": "10897-3679 via Ribbon Synapse from 10927 -\u003e 4701, 10927 -\u003e 10928, 10929 -\u003e 4702, 13839 -\u003e 13840, 13841 -\u003e 3812, 18946 -\u003e 18947, 18954 -\u003e 4702, 18955 -\u003e 66142, 18961 -\u003e 3808, 18962 -\u003e 3856, 18968 -\u003e 3822, 18969 -\u003e 3823, 66139 -\u003e 3815, 66140 -\u003e 3819, 158724 -\u003e 158725", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10927, - "TargetID": 4701, - "Directional": true - }, - { - "SourceID": 10927, - "TargetID": 10928, - "Directional": true - }, - { - "SourceID": 10929, - "TargetID": 4702, - "Directional": true - }, - { - "SourceID": 13839, - "TargetID": 13840, - "Directional": true - }, - { - "SourceID": 13841, - "TargetID": 3812, - "Directional": true - }, - { - "SourceID": 18946, - "TargetID": 18947, - "Directional": true - }, - { - "SourceID": 18954, - "TargetID": 4702, - "Directional": true - }, - { - "SourceID": 18955, - "TargetID": 66142, - "Directional": true - }, - { - "SourceID": 18961, - "TargetID": 3808, - "Directional": true - }, - { - "SourceID": 18962, - "TargetID": 3856, - "Directional": true - }, - { - "SourceID": 18968, - "TargetID": 3822, - "Directional": true - }, - { - "SourceID": 18969, - "TargetID": 3823, - "Directional": true - }, - { - "SourceID": 66139, - "TargetID": 3815, - "Directional": true - }, - { - "SourceID": 66140, - "TargetID": 3819, - "Directional": true - }, - { - "SourceID": 158724, - "TargetID": 158725, - "Directional": true - }] - }, - { - "ID": 296, - "SourceStructureID": 10897, - "TargetStructureID": 5303, - "Label": "10897-5303 via Ribbon Synapse from 18959 -\u003e 35629, 18967 -\u003e 102665", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 18959, - "TargetID": 35629, - "Directional": true - }, - { - "SourceID": 18967, - "TargetID": 102665, - "Directional": true - }] - }, - { - "ID": 297, - "SourceStructureID": 10897, - "TargetStructureID": 8037, - "Label": "10897-8037 via Ribbon Synapse from 18965 -\u003e 18966", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 18965, - "TargetID": 18966, - "Directional": true - }] - }, - { - "ID": 298, - "SourceStructureID": 10931, - "TargetStructureID": 179, - "Label": "10931-179 via Ribbon Synapse from 19242 -\u003e 87471, 19243 -\u003e 87468", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 19242, - "TargetID": 87471, - "Directional": true - }, - { - "SourceID": 19243, - "TargetID": 87468, - "Directional": true - }] - }, - { - "ID": 299, - "SourceStructureID": 10931, - "TargetStructureID": 514, - "Label": "10931-514 via Ribbon Synapse from 10940 -\u003e 5223", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10940, - "TargetID": 5223, - "Directional": true - }] - }, - { - "ID": 300, - "SourceStructureID": 10931, - "TargetStructureID": 3679, - "Label": "10931-3679 via Ribbon Synapse from 10933 -\u003e 7935, 10934 -\u003e 7934, 10937 -\u003e 7971, 10938 -\u003e 10939, 13844 -\u003e 13845, 14226 -\u003e 14227, 18990 -\u003e 29647, 19248 -\u003e 22794", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10933, - "TargetID": 7935, - "Directional": true - }, - { - "SourceID": 10934, - "TargetID": 7934, - "Directional": true - }, - { - "SourceID": 10937, - "TargetID": 7971, - "Directional": true - }, - { - "SourceID": 10938, - "TargetID": 10939, - "Directional": true - }, - { - "SourceID": 13844, - "TargetID": 13845, - "Directional": true - }, - { - "SourceID": 14226, - "TargetID": 14227, - "Directional": true - }, - { - "SourceID": 18990, - "TargetID": 29647, - "Directional": true - }, - { - "SourceID": 19248, - "TargetID": 22794, - "Directional": true - }] - }, - { - "ID": 301, - "SourceStructureID": 10931, - "TargetStructureID": 77019, - "Label": "10931-77019 via Ribbon Synapse from 10940 -\u003e 77020", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 10940, - "TargetID": 77020, - "Directional": true - }] - }, - { - "ID": 302, - "SourceStructureID": 10943, - "TargetStructureID": 514, - "Label": "10943-514 via Ribbon Synapse from 16274 -\u003e 3097, 16276 -\u003e 3110, 16279 -\u003e 5224, 22579 -\u003e 3100", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16274, - "TargetID": 3097, - "Directional": true - }, - { - "SourceID": 16276, - "TargetID": 3110, - "Directional": true - }, - { - "SourceID": 16279, - "TargetID": 5224, - "Directional": true - }, - { - "SourceID": 22579, - "TargetID": 3100, - "Directional": true - }] - }, - { - "ID": 303, - "SourceStructureID": 10943, - "TargetStructureID": 3679, - "Label": "10943-3679 via Ribbon Synapse from 16256 -\u003e 3774, 16260 -\u003e 3775, 16265 -\u003e 120444, 16271 -\u003e 5191, 16272 -\u003e 5195, 16273 -\u003e 5211, 16277 -\u003e 16278, 18847 -\u003e 18846, 19012 -\u003e 66145, 19023 -\u003e 63366, 66143 -\u003e 8003, 66144 -\u003e 8004", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16256, - "TargetID": 3774, - "Directional": true - }, - { - "SourceID": 16260, - "TargetID": 3775, - "Directional": true - }, - { - "SourceID": 16265, - "TargetID": 120444, - "Directional": true - }, - { - "SourceID": 16271, - "TargetID": 5191, - "Directional": true - }, - { - "SourceID": 16272, - "TargetID": 5195, - "Directional": true - }, - { - "SourceID": 16273, - "TargetID": 5211, - "Directional": true - }, - { - "SourceID": 16277, - "TargetID": 16278, - "Directional": true - }, - { - "SourceID": 18847, - "TargetID": 18846, - "Directional": true - }, - { - "SourceID": 19012, - "TargetID": 66145, - "Directional": true - }, - { - "SourceID": 19023, - "TargetID": 63366, - "Directional": true - }, - { - "SourceID": 66143, - "TargetID": 8003, - "Directional": true - }, - { - "SourceID": 66144, - "TargetID": 8004, - "Directional": true - }] - }, - { - "ID": 304, - "SourceStructureID": 10954, - "TargetStructureID": 514, - "Label": "10954-514 via Conventional from 10955 -\u003e 1089", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 10955, - "TargetID": 1089, - "Directional": true - }] - }, - { - "ID": 305, - "SourceStructureID": 10966, - "TargetStructureID": 514, - "Label": "10966-514 via Conventional from 10967 -\u003e 1091", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 10967, - "TargetID": 1091, - "Directional": true - }] - }, - { - "ID": 306, - "SourceStructureID": 10970, - "TargetStructureID": 514, - "Label": "10970-514 via Conventional from 10971 -\u003e 1102, 10972 -\u003e 1098", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 10971, - "TargetID": 1102, - "Directional": true - }, - { - "SourceID": 10972, - "TargetID": 1098, - "Directional": true - }] - }, - { - "ID": 307, - "SourceStructureID": 11011, - "TargetStructureID": 514, - "Label": "11011-514 via Conventional from 11012 -\u003e 1103", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 11012, - "TargetID": 1103, - "Directional": true - }] - }, - { - "ID": 308, - "SourceStructureID": 11015, - "TargetStructureID": 514, - "Label": "11015-514 via Conventional from 11016 -\u003e 1105", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 11016, - "TargetID": 1105, - "Directional": true - }] - }, - { - "ID": 309, - "SourceStructureID": 11401, - "TargetStructureID": 514, - "Label": "11401-514 via Ribbon Synapse from 19051 -\u003e 19058", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 19051, - "TargetID": 19058, - "Directional": true - }] - }, - { - "ID": 310, - "SourceStructureID": 11401, - "TargetStructureID": 2610, - "Label": "11401-2610 via Ribbon Synapse from 11409 -\u003e 11410, 11412 -\u003e 11411, 16803 -\u003e 2850, 16828 -\u003e 2825, 16830 -\u003e 2822, 17914 -\u003e 3005, 17922 -\u003e 17921, 17924 -\u003e 17923, 17992 -\u003e 17993, 19027 -\u003e 19026, 19050 -\u003e 19049, 19054 -\u003e 19053", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 11409, - "TargetID": 11410, - "Directional": true - }, - { - "SourceID": 11412, - "TargetID": 11411, - "Directional": true - }, - { - "SourceID": 16803, - "TargetID": 2850, - "Directional": true - }, - { - "SourceID": 16828, - "TargetID": 2825, - "Directional": true - }, - { - "SourceID": 16830, - "TargetID": 2822, - "Directional": true - }, - { - "SourceID": 17914, - "TargetID": 3005, - "Directional": true - }, - { - "SourceID": 17922, - "TargetID": 17921, - "Directional": true - }, - { - "SourceID": 17924, - "TargetID": 17923, - "Directional": true - }, - { - "SourceID": 17992, - "TargetID": 17993, - "Directional": true - }, - { - "SourceID": 19027, - "TargetID": 19026, - "Directional": true - }, - { - "SourceID": 19050, - "TargetID": 19049, - "Directional": true - }, - { - "SourceID": 19054, - "TargetID": 19053, - "Directional": true - }] - }, - { - "ID": 311, - "SourceStructureID": 11401, - "TargetStructureID": 5345, - "Label": "11401-5345 via Ribbon Synapse from 16805 -\u003e 16810, 16824 -\u003e 16825, 33782 -\u003e 33784", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16805, - "TargetID": 16810, - "Directional": true - }, - { - "SourceID": 16824, - "TargetID": 16825, - "Directional": true - }, - { - "SourceID": 33782, - "TargetID": 33784, - "Directional": true - }] - }, - { - "ID": 312, - "SourceStructureID": 11485, - "TargetStructureID": 514, - "Label": "11485-514 via Conventional from 22604 -\u003e 3240", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 22604, - "TargetID": 3240, - "Directional": true - }] - }, - { - "ID": 313, - "SourceStructureID": 11645, - "TargetStructureID": 514, - "Label": "11645-514 via Conventional from 15374 -\u003e 1158", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 15374, - "TargetID": 1158, - "Directional": true - }] - }, - { - "ID": 314, - "SourceStructureID": 15100, - "TargetStructureID": 514, - "Label": "15100-514 via Ribbon Synapse from 15101 -\u003e 15099, 17214 -\u003e 17215, 17219 -\u003e 17220, 18287 -\u003e 13786, 18289 -\u003e 18288, 19059 -\u003e 19063", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 15101, - "TargetID": 15099, - "Directional": true - }, - { - "SourceID": 17214, - "TargetID": 17215, - "Directional": true - }, - { - "SourceID": 17219, - "TargetID": 17220, - "Directional": true - }, - { - "SourceID": 18287, - "TargetID": 13786, - "Directional": true - }, - { - "SourceID": 18289, - "TargetID": 18288, - "Directional": true - }, - { - "SourceID": 19059, - "TargetID": 19063, - "Directional": true - }] - }, - { - "ID": 315, - "SourceStructureID": 15100, - "TargetStructureID": 2610, - "Label": "15100-2610 via Ribbon Synapse from 16398 -\u003e 16397, 17116 -\u003e 18223, 17118 -\u003e 18224, 17172 -\u003e 17504, 17179 -\u003e 17178, 17181 -\u003e 17180, 17227 -\u003e 17224, 17622 -\u003e 2937, 17963 -\u003e 17964, 17966 -\u003e 17965, 17997 -\u003e 15051, 18227 -\u003e 18226, 18230 -\u003e 18231, 18237 -\u003e 18236, 33787 -\u003e 9407", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16398, - "TargetID": 16397, - "Directional": true - }, - { - "SourceID": 17116, - "TargetID": 18223, - "Directional": true - }, - { - "SourceID": 17118, - "TargetID": 18224, - "Directional": true - }, - { - "SourceID": 17172, - "TargetID": 17504, - "Directional": true - }, - { - "SourceID": 17179, - "TargetID": 17178, - "Directional": true - }, - { - "SourceID": 17181, - "TargetID": 17180, - "Directional": true - }, - { - "SourceID": 17227, - "TargetID": 17224, - "Directional": true - }, - { - "SourceID": 17622, - "TargetID": 2937, - "Directional": true - }, - { - "SourceID": 17963, - "TargetID": 17964, - "Directional": true - }, - { - "SourceID": 17966, - "TargetID": 17965, - "Directional": true - }, - { - "SourceID": 17997, - "TargetID": 15051, - "Directional": true - }, - { - "SourceID": 18227, - "TargetID": 18226, - "Directional": true - }, - { - "SourceID": 18230, - "TargetID": 18231, - "Directional": true - }, - { - "SourceID": 18237, - "TargetID": 18236, - "Directional": true - }, - { - "SourceID": 33787, - "TargetID": 9407, - "Directional": true - }] - }, - { - "ID": 316, - "SourceStructureID": 15100, - "TargetStructureID": 5303, - "Label": "15100-5303 via Ribbon Synapse from 18289 -\u003e 102936", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 18289, - "TargetID": 102936, - "Directional": true - }] - }, - { - "ID": 317, - "SourceStructureID": 15942, - "TargetStructureID": 410, - "Label": "15942-410 via Ribbon Synapse from 15116 -\u003e 15114, 16505 -\u003e 15939, 16513 -\u003e 16511, 16801 -\u003e 16800, 17265 -\u003e 17266, 17498 -\u003e 17497, 18525 -\u003e 18526, 18527 -\u003e 18528, 18531 -\u003e 18530, 19121 -\u003e 22672, 19121 -\u003e 23117", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 15116, - "TargetID": 15114, - "Directional": true - }, - { - "SourceID": 16505, - "TargetID": 15939, - "Directional": true - }, - { - "SourceID": 16513, - "TargetID": 16511, - "Directional": true - }, - { - "SourceID": 16801, - "TargetID": 16800, - "Directional": true - }, - { - "SourceID": 17265, - "TargetID": 17266, - "Directional": true - }, - { - "SourceID": 17498, - "TargetID": 17497, - "Directional": true - }, - { - "SourceID": 18525, - "TargetID": 18526, - "Directional": true - }, - { - "SourceID": 18527, - "TargetID": 18528, - "Directional": true - }, - { - "SourceID": 18531, - "TargetID": 18530, - "Directional": true - }, - { - "SourceID": 19121, - "TargetID": 22672, - "Directional": true - }, - { - "SourceID": 19121, - "TargetID": 23117, - "Directional": true - }] - }, - { - "ID": 318, - "SourceStructureID": 15942, - "TargetStructureID": 476, - "Label": "15942-476 via Ribbon Synapse from 16507 -\u003e 16508, 16507 -\u003e 16774, 17374 -\u003e 17375, 17377 -\u003e 17376, 17378 -\u003e 16503", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16507, - "TargetID": 16508, - "Directional": true - }, - { - "SourceID": 16507, - "TargetID": 16774, - "Directional": true - }, - { - "SourceID": 17374, - "TargetID": 17375, - "Directional": true - }, - { - "SourceID": 17377, - "TargetID": 17376, - "Directional": true - }, - { - "SourceID": 17378, - "TargetID": 16503, - "Directional": true - }] - }, - { - "ID": 319, - "SourceStructureID": 15942, - "TargetStructureID": 514, - "Label": "15942-514 via Ribbon Synapse from 16401 -\u003e 16400", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 16401, - "TargetID": 16400, - "Directional": true - }] - }, - { - "ID": 320, - "SourceStructureID": 15942, - "TargetStructureID": 2610, - "Label": "15942-2610 via Ribbon Synapse from 15962 -\u003e 15965, 15966 -\u003e 15941, 16765 -\u003e 16399, 16788 -\u003e 16779, 17268 -\u003e 17269, 17959 -\u003e 2952, 18414 -\u003e 2956, 66158 -\u003e 66160", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 15962, - "TargetID": 15965, - "Directional": true - }, - { - "SourceID": 15966, - "TargetID": 15941, - "Directional": true - }, - { - "SourceID": 16765, - "TargetID": 16399, - "Directional": true - }, - { - "SourceID": 16788, - "TargetID": 16779, - "Directional": true - }, - { - "SourceID": 17268, - "TargetID": 17269, - "Directional": true - }, - { - "SourceID": 17959, - "TargetID": 2952, - "Directional": true - }, - { - "SourceID": 18414, - "TargetID": 2956, - "Directional": true - }, - { - "SourceID": 66158, - "TargetID": 66160, - "Directional": true - }] - }, - { - "ID": 321, - "SourceStructureID": 15942, - "TargetStructureID": 8990, - "Label": "15942-8990 via Ribbon Synapse from 18414 -\u003e 95928, 19106 -\u003e 95931", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 18414, - "TargetID": 95928, - "Directional": true - }, - { - "SourceID": 19106, - "TargetID": 95931, - "Directional": true - }] - }, - { - "ID": 322, - "SourceStructureID": 18576, - "TargetStructureID": 514, - "Label": "18576-514 via Conventional from 18582 -\u003e 18581", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 18582, - "TargetID": 18581, - "Directional": true - }] - }, - { - "ID": 323, - "SourceStructureID": 18576, - "TargetStructureID": 519, - "Label": "18576-519 via Conventional from 18580 -\u003e 18579", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 18580, - "TargetID": 18579, - "Directional": true - }] - }, - { - "ID": 324, - "SourceStructureID": 25374, - "TargetStructureID": 514, - "Label": "25374-514 via Conventional from 25376 -\u003e 25377", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 25376, - "TargetID": 25377, - "Directional": true - }] - }, - { - "ID": 325, - "SourceStructureID": 25392, - "TargetStructureID": 485, - "Label": "25392-485 via Conventional from 32295 -\u003e 32296", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 32295, - "TargetID": 32296, - "Directional": true - }] - }, - { - "ID": 326, - "SourceStructureID": 25392, - "TargetStructureID": 519, - "Label": "25392-519 via Conventional from 25393 -\u003e 25394", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 25393, - "TargetID": 25394, - "Directional": true - }] - }, - { - "ID": 327, - "SourceStructureID": 25529, - "TargetStructureID": 519, - "Label": "25529-519 via Conventional from 25531 -\u003e 25532", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 25531, - "TargetID": 25532, - "Directional": true - }] - }, - { - "ID": 328, - "SourceStructureID": 25529, - "TargetStructureID": 2610, - "Label": "25529-2610 via Conventional from 25543 -\u003e 13819", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 25543, - "TargetID": 13819, - "Directional": true - }] - }, - { - "ID": 329, - "SourceStructureID": 32371, - "TargetStructureID": 516, - "Label": "32371-516 via Conventional from 32372 -\u003e 3746, 32373 -\u003e 3741, 32374 -\u003e 3748, 64567 -\u003e 64568", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 32372, - "TargetID": 3746, - "Directional": true - }, - { - "SourceID": 32373, - "TargetID": 3741, - "Directional": true - }, - { - "SourceID": 32374, - "TargetID": 3748, - "Directional": true - }, - { - "SourceID": 64567, - "TargetID": 64568, - "Directional": true - }] + "Label": "CBb3", + "Tags": "" }, { - "ID": 330, - "SourceStructureID": 32719, - "TargetStructureID": 8749, - "Label": "32719-8749 via Conventional from 32720 -\u003e 8850, 32724 -\u003e 8852, 32725 -\u003e 8854", - "Type": "Conventional", - "Directional": true, + "StructureID": 410, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + } + ], + "edges": [{ + "ID": 0, + "SourceStructureID": 308, + "TargetStructureID": 179, + "Label": "514-179 via Adherens from 103814 -\u003e 103813", + "Type": "Gap Junction", + "Directional": false, "Links": [{ - "SourceID": 32720, - "TargetID": 8850, - "Directional": true - }, - { - "SourceID": 32724, - "TargetID": 8852, - "Directional": true - }, - { - "SourceID": 32725, - "TargetID": 8854, - "Directional": true + "SourceID": 103814, + "TargetID": 103813, + "Directional": false }] }, { - "ID": 331, - "SourceStructureID": 32739, + "ID": 1, + "SourceStructureID": 179, "TargetStructureID": 410, - "Label": "32739-410 via Conventional from 32742 -\u003e 32737, 32745 -\u003e 23113, 32747 -\u003e 32746, 32748 -\u003e 18277", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 32742, - "TargetID": 32737, - "Directional": true - }, - { - "SourceID": 32745, - "TargetID": 23113, - "Directional": true - }, - { - "SourceID": 32747, - "TargetID": 32746, - "Directional": true - }, - { - "SourceID": 32748, - "TargetID": 18277, - "Directional": true - }] - }, - { - "ID": 332, - "SourceStructureID": 32739, - "TargetStructureID": 514, - "Label": "32739-514 via Conventional from 32749 -\u003e 15085", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 32749, - "TargetID": 15085, - "Directional": true - }] - }, - { - "ID": 333, - "SourceStructureID": 32739, - "TargetStructureID": 9693, - "Label": "32739-9693 via Conventional from 32750 -\u003e 28198", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 32750, - "TargetID": 28198, - "Directional": true - }] - }, - { - "ID": 334, - "SourceStructureID": 37135, - "TargetStructureID": 476, - "Label": "37135-476 via Conventional from 37181 -\u003e 2394", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 37181, - "TargetID": 2394, - "Directional": true - }] - }, - { - "ID": 335, - "SourceStructureID": 37135, - "TargetStructureID": 514, - "Label": "37135-514 via Conventional from 37179 -\u003e 1557", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 37179, - "TargetID": 1557, - "Directional": true - }] - }, - { - "ID": 336, - "SourceStructureID": 37135, - "TargetStructureID": 518, - "Label": "37135-518 via Conventional from 37136 -\u003e 14719", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 37136, - "TargetID": 14719, - "Directional": true - }] - }, - { - "ID": 337, - "SourceStructureID": 37192, - "TargetStructureID": 514, - "Label": "37192-514 via Conventional from 37193 -\u003e 3288", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 37193, - "TargetID": 3288, - "Directional": true - }] - }, - { - "ID": 338, - "SourceStructureID": 37192, - "TargetStructureID": 3679, - "Label": "37192-3679 via Conventional from 37196 -\u003e 16433", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 37196, - "TargetID": 16433, - "Directional": true - }] - }, - { - "ID": 339, - "SourceStructureID": 37461, - "TargetStructureID": 514, - "Label": "37461-514 via Conventional from 37462 -\u003e 1439", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 37462, - "TargetID": 1439, - "Directional": true - }] - }, - { - "ID": 340, - "SourceStructureID": 38200, - "TargetStructureID": 514, - "Label": "38200-514 via Conventional from 38201 -\u003e 1373", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 38201, - "TargetID": 1373, - "Directional": true - }] - }, - { - "ID": 341, - "SourceStructureID": 40988, - "TargetStructureID": 517, - "Label": "40988-517 via Conventional from 40989 -\u003e 40990", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 40989, - "TargetID": 40990, - "Directional": true - }] - }, - { - "ID": 342, - "SourceStructureID": 41058, - "TargetStructureID": 514, - "Label": "41058-514 via Conventional from 41061 -\u003e 41062", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 41061, - "TargetID": 41062, - "Directional": true - }] - }, - { - "ID": 343, - "SourceStructureID": 41058, - "TargetStructureID": 3679, - "Label": "41058-3679 via Conventional from 41059 -\u003e 41060", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 41059, - "TargetID": 41060, - "Directional": true - }] - }, - { - "ID": 344, - "SourceStructureID": 60424, - "TargetStructureID": 514, - "Label": "60424-514 via Conventional from 60425 -\u003e 15468", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 60425, - "TargetID": 15468, - "Directional": true - }] - }, - { - "ID": 345, - "SourceStructureID": 60426, - "TargetStructureID": 514, - "Label": "60426-514 via Conventional from 60427 -\u003e 15467", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 60427, - "TargetID": 15467, - "Directional": true - }] - }, - { - "ID": 346, - "SourceStructureID": 60428, - "TargetStructureID": 514, - "Label": "60428-514 via Conventional from 60429 -\u003e 1156", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 60429, - "TargetID": 1156, - "Directional": true - }] - }, - { - "ID": 347, - "SourceStructureID": 60430, - "TargetStructureID": 514, - "Label": "60430-514 via Conventional from 60431 -\u003e 1145", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 60431, - "TargetID": 1145, - "Directional": true - }] - }, - { - "ID": 348, - "SourceStructureID": 60436, - "TargetStructureID": 514, - "Label": "60436-514 via Conventional from 60437 -\u003e 8941", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 60437, - "TargetID": 8941, - "Directional": true - }] - }, - { - "ID": 349, - "SourceStructureID": 60438, - "TargetStructureID": 514, - "Label": "60438-514 via Conventional from 60439 -\u003e 3236", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 60439, - "TargetID": 3236, - "Directional": true - }] - }, - { - "ID": 350, - "SourceStructureID": 60449, - "TargetStructureID": 514, - "Label": "60449-514 via Conventional from 60450 -\u003e 11669", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 60450, - "TargetID": 11669, - "Directional": true - }] - }, - { - "ID": 351, - "SourceStructureID": 60451, - "TargetStructureID": 514, - "Label": "60451-514 via Conventional from 60452 -\u003e 1140", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 60452, - "TargetID": 1140, - "Directional": true - }] - }, - { - "ID": 352, - "SourceStructureID": 61231, - "TargetStructureID": 5017, - "Label": "61231-5017 via Conventional from 61232 -\u003e 61233", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 61232, - "TargetID": 61233, - "Directional": true - }] - }, - { - "ID": 353, - "SourceStructureID": 66199, - "TargetStructureID": 514, - "Label": "66199-514 via Ribbon Synapse from 66200 -\u003e 1173", - "Type": "Ribbon Synapse", - "Directional": true, - "Links": [{ - "SourceID": 66200, - "TargetID": 1173, - "Directional": true - }] - }, - { - "ID": 354, - "SourceStructureID": 68705, - "TargetStructureID": 514, - "Label": "68705-514 via Conventional from 68706 -\u003e 1511", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 68706, - "TargetID": 1511, - "Directional": true - }] - }, - { - "ID": 355, - "SourceStructureID": 77019, - "TargetStructureID": 10931, - "Label": "77019-10931 via Conventional from 77025 -\u003e 14220", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 77025, - "TargetID": 14220, - "Directional": true - }] - }, - { - "ID": 356, - "SourceStructureID": 123146, - "TargetStructureID": 519, - "Label": "123146-519 via Conventional from 123147 -\u003e 26764", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 123147, - "TargetID": 26764, - "Directional": true - }] - }, - { - "ID": 357, - "SourceStructureID": 123189, - "TargetStructureID": 514, - "Label": "123189-514 via Conventional from 123190 -\u003e 123191", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 123190, - "TargetID": 123191, - "Directional": true - }] - }, - { - "ID": 358, - "SourceStructureID": 129154, - "TargetStructureID": 514, - "Label": "129154-514 via Conventional from 129157 -\u003e 3248", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 129157, - "TargetID": 3248, - "Directional": true - }] - }, - { - "ID": 359, - "SourceStructureID": 129154, - "TargetStructureID": 2610, - "Label": "129154-2610 via Conventional from 129156 -\u003e 13803", - "Type": "Conventional", - "Directional": true, - "Links": [{ - "SourceID": 129156, - "TargetID": 13803, - "Directional": true - }] - }, - { - "ID": 360, - "SourceStructureID": 129154, - "TargetStructureID": 8749, - "Label": "129154-8749 via Conventional from 129155 -\u003e 8831", - "Type": "Conventional", - "Directional": true, + "Label": "5303-179 via Gap Junction from 101399 -\u003e 104984", + "Type": "Gap Junction", + "Directional": false, "Links": [{ - "SourceID": 129155, - "TargetID": 8831, - "Directional": true + "SourceID": 101399, + "TargetID": 104984, + "Directional": false }] }] } \ No newline at end of file From b2e20ce6fc26ea18fc34e9583874497ef4a39b10 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Mon, 10 Sep 2018 09:28:58 -0600 Subject: [PATCH 17/24] Update client side graph search --- .../cmModelFactory.service.js | 62 +- .../connectivityMatrixView/cmMatrixBase.js | 56 +- src/app/main/main.controller.js | 23 +- src/app/main/main.html | 14 +- .../mock/2018.09.07-network-all-hops.json | 433045 +++++++++++++++ src/assets/mock/defaultMarclab.json | 347867 +++++++++++- 6 files changed, 781029 insertions(+), 38 deletions(-) create mode 100644 src/assets/mock/2018.09.07-network-all-hops.json diff --git a/src/app/components/connectivityMatrix/cmModelFactory.service.js b/src/app/components/connectivityMatrix/cmModelFactory.service.js index b4eb666..1aa45d7 100644 --- a/src/app/components/connectivityMatrix/cmModelFactory.service.js +++ b/src/app/components/connectivityMatrix/cmModelFactory.service.js @@ -1,5 +1,9 @@ -import { cmModel } from "./cmModel" -import { cmModelRow } from "./cmModelRow" +import { + cmModel +} from "./cmModel" +import { + cmModelRow +} from "./cmModelRow" export class cmModelFactory { @@ -10,11 +14,58 @@ export class cmModelFactory { this.cmResource = cmResource; this.cmGraphFactory = cmGraphFactory; this.cmMatrixFactory = cmMatrixFactory; + this.rawGraph = null; this.dataset = null; // holds the graph that gets searched for paths. this.verbose = true; this.maxNumPaths = 1000000; } + createConnectivityMatrixModel(paths) { + let self = this; + + let sources = []; + let targets = []; + let matrix = []; + + for (let i = 0; i < paths.length; ++i) { + let path = paths[i]; + let source = path[0]; + let target = path[path.length - 1]; + if (sources.indexOf(source) == -1) { + sources.push(source); + } + + if (targets.indexOf(target) == -1) { + targets.push(target); + } + } + + for (let row = 0; row < sources.length; row++) { + matrix[row] = []; + for (let col = 0; col < targets.length; col++) { + matrix[row][col] = []; + } + } + + for (let i = 0; i < paths.length; ++i) { + let path = paths[i]; + let source = path[0]; + let target = path[path.length - 1]; + let rowIndex = sources.indexOf(source); + let colIndex = targets.indexOf(target); + matrix[rowIndex][colIndex].push(path); + } + + let jsonMatrix = { + source_ids: sources, + target_ids: targets, + matrix: matrix + }; + + let cmMatrix = self.cmMatrixFactory.createFromJsonObject(jsonMatrix); + return new cmModel(self.dataset, cmMatrix); + } + createModelFromGraphSearch(query) { let self = this; @@ -22,7 +73,8 @@ export class cmModelFactory { if (this.dataset) { let paths = self.findPathsByRegex(query); - deferred.resolve(paths); + let model = self.createConnectivityMatrixModel(paths); + deferred.resolve(model); } else { deferred.reject(); } @@ -99,7 +151,7 @@ export class cmModelFactory { } } - self.fillInPathsByRegex(query, paths) + return self.fillInPathsByRegex(query, paths) } requestAndCreateModel(query, database) { @@ -142,6 +194,8 @@ export class cmModelFactory { */ setGraphData(graph) { + this.rawGraph = graph; + graph.node_attributes = [{ "DisplayName": "id", "Name": "ID", diff --git a/src/app/components/connectivityMatrixView/cmMatrixBase.js b/src/app/components/connectivityMatrixView/cmMatrixBase.js index ce924e4..8779e27 100644 --- a/src/app/components/connectivityMatrixView/cmMatrixBase.js +++ b/src/app/components/connectivityMatrixView/cmMatrixBase.js @@ -328,34 +328,34 @@ export class cmMatrixBase extends SvgGroupElement { "output": "scalar" }); } else { - metrics.push({ - "name": "source area", - "tooltip": "source area", - "metricFn": function (paths, graph) { - return Utils.getAreaFromPaths("sourceSizes", paths, graph); - }, - "output": "scalar" - }); - - metrics.push({ - "name": "target area", - "tooltip": "target area", - "metricFn": function (paths, graph) { - return Utils.getAreaFromPaths("targetSizes", paths, graph); - }, - "output": "scalar" - }); - - metrics.push({ - "name": "area diff", - "tooltip": "area diff", - "metricFn": function (paths, graph) { - let sourceSizes = Utils.getAreaFromPaths("sourceSizes", paths, graph); - let targetSizes = Utils.getAreaFromPaths("targetSizes", paths, graph); - return Math.abs(sourceSizes - targetSizes); - }, - "output": "scalar" - }); + // metrics.push({ + // "name": "source area", + // "tooltip": "source area", + // "metricFn": function (paths, graph) { + // return Utils.getAreaFromPaths("sourceSizes", paths, graph); + // }, + // "output": "scalar" + // }); + + // metrics.push({ + // "name": "target area", + // "tooltip": "target area", + // "metricFn": function (paths, graph) { + // return Utils.getAreaFromPaths("targetSizes", paths, graph); + // }, + // "output": "scalar" + // }); + + // metrics.push({ + // "name": "area diff", + // "tooltip": "area diff", + // "metricFn": function (paths, graph) { + // let sourceSizes = Utils.getAreaFromPaths("sourceSizes", paths, graph); + // let targetSizes = Utils.getAreaFromPaths("targetSizes", paths, graph); + // return Math.abs(sourceSizes - targetSizes); + // }, + // "output": "scalar" + // }); } diff --git a/src/app/main/main.controller.js b/src/app/main/main.controller.js index 1aa711f..9e4eb40 100644 --- a/src/app/main/main.controller.js +++ b/src/app/main/main.controller.js @@ -30,6 +30,7 @@ export class MainController { this.debug = true; this.$q = $q; this.dataSelectionService = dataSelectionService; + this.queryString = ""; // Object for representing what the user has currently selected or entered in the ui. this.ui = {}; @@ -274,6 +275,17 @@ export class MainController { this.ui.selectedSortOrder = this.ui.orders[1]; } + createQueryString(query) { + let result = ""; + for(let i=0; i"; + } + } + return result; + } + onCollapseColsByAttr(attr) { if (attr == "none") { this.model.expandAllCols(); @@ -409,6 +421,8 @@ export class MainController { self.$log.debug('onQuerySubmitted', query); + self.queryString = self.createQueryString(query); + self.hasActiveQuery = true; self.hasQueryError = false; self.hasGoodData = false; @@ -430,8 +444,15 @@ export class MainController { // Update the model self.model = model; self.viewState.setModel(model); - // self.viewState.reset(); + let paths = self.model.getAllPaths(); + self.numPaths = 0; + let keys = Object.keys(paths); + for(let i=0; i
- - File: {{main.cmModelFactory.graph.name}} + + File: {{main.cmModelFactory.rawGraph.name}} - Nodes: {{main.cmModelFactory.graph.nodes.length}} - Edges: {{main.cmModelFactory.graph.edges.length}} + Nodes: {{main.cmModelFactory.rawGraph.nodes.length}} + Edges: {{main.cmModelFactory.rawGraph.edges.length}} + + Query: {{main.queryString}} + + Paths: {{main.numPaths}} + +
diff --git a/src/assets/mock/2018.09.07-network-all-hops.json b/src/assets/mock/2018.09.07-network-all-hops.json new file mode 100644 index 0000000..2d99b46 --- /dev/null +++ b/src/assets/mock/2018.09.07-network-all-hops.json @@ -0,0 +1,433045 @@ +{ + "nodes": [ + { + "StructureID": 115, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 138, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 142, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 146, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 153, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, + { + "StructureID": 161, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 162, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 165, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 166, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 168, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 170, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 171, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 172, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 173, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 174, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 175, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, + { + "StructureID": 176, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 177, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 178, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 179, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 180, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 181, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 184, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 222, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 223, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 250, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 260, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 268, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 269, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 273, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 276, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 277, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 278, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 280, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 284, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 285, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 286, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 288, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 289, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 293, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 294, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 298, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 299, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 304, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 307, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 308, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 309, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 310, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 311, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 314, + "TypeID": 1, + "Label": "GC diving", + "Tags": "" + }, + { + "StructureID": 318, + "TypeID": 1, + "Label": "YAC ON", + "Tags": "" + }, + { + "StructureID": 321, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 324, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 325, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 327, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 328, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 330, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 332, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 334, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 335, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 341, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 342, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 344, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 345, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 350, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 352, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 353, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 354, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 359, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 360, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 364, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 365, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 366, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 369, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 372, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 373, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 375, + "TypeID": 1, + "Label": "YAC ON/OFF", + "Tags": "" + }, + { + "StructureID": 380, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 382, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 389, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 390, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 391, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 397, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 398, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 399, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 400, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 405, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 407, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 408, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 410, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 412, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 415, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 418, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 419, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 421, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 422, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 424, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 425, + "TypeID": 1, + "Label": "CBa2-3", + "Tags": "" + }, + { + "StructureID": 426, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 428, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 431, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 432, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 433, + "TypeID": 1, + "Label": "CBab2-3w", + "Tags": "" + }, + { + "StructureID": 434, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 437, + "TypeID": 1, + "Label": "CBab2-4", + "Tags": "" + }, + { + "StructureID": 440, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 441, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 443, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 445, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 446, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 447, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 450, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 452, + "TypeID": 1, + "Label": "CBab2-4w", + "Tags": "" + }, + { + "StructureID": 453, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 455, + "TypeID": 1, + "Label": "CBab2-3", + "Tags": "" + }, + { + "StructureID": 456, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 458, + "TypeID": 1, + "Label": "CBab2-5", + "Tags": "" + }, + { + "StructureID": 460, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 461, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 463, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 464, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 468, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 469, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 471, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 473, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, + { + "StructureID": 475, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 476, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 478, + "TypeID": 1, + "Label": "CBabw", + "Tags": "" + }, + { + "StructureID": 479, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 483, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 485, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 488, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 492, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 514, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 516, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 517, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 518, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 519, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 525, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 545, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 572, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 573, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 579, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 582, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 591, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 592, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 593, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 595, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 596, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 597, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, + { + "StructureID": 598, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 605, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 606, + "TypeID": 1, + "Label": "GC ON", + "Tags": "" + }, + { + "StructureID": 608, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 611, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 906, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 907, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 909, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 911, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 968, + "TypeID": 1, + "Label": "CBab2-4", + "Tags": "" + }, + { + "StructureID": 989, + "TypeID": 1, + "Label": "CBabw", + "Tags": "" + }, + { + "StructureID": 992, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 999, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 1021, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 1610, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 1620, + "TypeID": 1, + "Label": "YAC ON/OFF", + "Tags": "" + }, + { + "StructureID": 1637, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 1724, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 2063, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 2064, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 2065, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 2610, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 3116, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 3257, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 3679, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 3756, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 3865, + "TypeID": 1, + "Label": "GAC/YAC", + "Tags": "" + }, + { + "StructureID": 3881, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 3928, + "TypeID": 1, + "Label": "CBab2-4", + "Tags": "" + }, + { + "StructureID": 4567, + "TypeID": 1, + "Label": "CBa1w", + "Tags": "" + }, + { + "StructureID": 4568, + "TypeID": 1, + "Label": "CBab2-4", + "Tags": "" + }, + { + "StructureID": 4569, + "TypeID": 1, + "Label": "CBb3n ", + "Tags": "" + }, + { + "StructureID": 4570, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 4835, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 4849, + "TypeID": 1, + "Label": "CBa1-2", + "Tags": "" + }, + { + "StructureID": 4850, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 4876, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 4877, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 4890, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, + { + "StructureID": 4941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 4942, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 4943, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 5006, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 5017, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 5057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 5107, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 5117, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, + { + "StructureID": 5118, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 5150, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 5278, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 5279, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5280, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5281, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5282, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5283, + "TypeID": 1, + "Label": "CBbwf", + "Tags": "" + }, + { + "StructureID": 5284, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5285, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 5292, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 5294, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5295, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, + { + "StructureID": 5297, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 5303, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 5315, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5325, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 5331, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 5338, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5345, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 5350, + "TypeID": 1, + "Label": "YAC ON", + "Tags": "" + }, + { + "StructureID": 5351, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5352, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 5372, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5374, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5377, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, + { + "StructureID": 5382, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5388, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5390, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5394, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 5396, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5402, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 5405, + "TypeID": 1, + "Label": "YAC ON/OFF", + "Tags": "" + }, + { + "StructureID": 5410, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5411, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5413, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5421, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5422, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, + { + "StructureID": 5423, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5427, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5435, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5436, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5437, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5439, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5441, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5442, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5450, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5451, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5452, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5453, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5454, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5456, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 5457, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 5458, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5464, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 5468, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 5470, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5473, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 5480, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5481, + "TypeID": 1, + "Label": "YAC ON", + "Tags": "" + }, + { + "StructureID": 5482, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 5485, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5486, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5487, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5489, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5491, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5496, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5497, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5498, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 5499, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 5500, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5501, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 5502, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5503, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5504, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5506, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5507, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5509, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 5511, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5513, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 5514, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5515, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 5516, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 5517, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5519, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, + { + "StructureID": 5520, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5522, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 5528, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5530, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 5531, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 5532, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 5534, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 5535, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5536, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 5537, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 5538, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5539, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 5541, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 5542, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5543, + "TypeID": 1, + "Label": "CBab2-5", + "Tags": "" + }, + { + "StructureID": 5544, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, + { + "StructureID": 5545, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 5551, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 5556, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 5557, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 5561, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5562, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 5563, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 5565, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5566, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 5568, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 5575, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5579, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 5582, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 5584, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 5585, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5587, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 5592, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5595, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 5596, + "TypeID": 1, + "Label": "CBa1-2", + "Tags": "" + }, + { + "StructureID": 5598, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5599, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 5600, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 5601, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 5602, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5604, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 5606, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 5607, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5608, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 5609, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 5611, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 5614, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 5618, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5622, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 5623, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 5630, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 5631, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5634, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 5635, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 5636, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5637, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 5638, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 5639, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5640, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 5641, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 5643, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 5645, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 5648, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 5649, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 5650, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 5671, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 5711, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 5729, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 5737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 5775, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 5794, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 5838, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 5860, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 5909, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 5916, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 5919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 5922, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 5923, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 6011, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 6046, + "TypeID": 1, + "Label": "CBa2-3", + "Tags": "" + }, + { + "StructureID": 6047, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6048, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 6050, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 6115, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 6117, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 6118, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6120, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6121, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 6122, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 6123, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 6125, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 6127, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6128, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, + { + "StructureID": 6129, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 6131, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 6132, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 6133, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 6134, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 6135, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 6136, + "TypeID": 1, + "Label": "CBab2-3", + "Tags": "" + }, + { + "StructureID": 6138, + "TypeID": 1, + "Label": "CBa1-2", + "Tags": "" + }, + { + "StructureID": 6140, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 6141, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6142, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 6146, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6150, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 6153, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 6155, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6156, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 6158, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6160, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 6162, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 6163, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 6164, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 6165, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 6166, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 6169, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 6203, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6204, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 6300, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 6406, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 6561, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 6589, + "TypeID": 1, + "Label": "CBbwf", + "Tags": "" + }, + { + "StructureID": 6617, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 6618, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 6656, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 6850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 6857, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 6909, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6910, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 6911, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 6912, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 6957, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 6958, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 6961, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 6964, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 6965, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 6997, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 7024, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 7040, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 7043, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 7050, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7054, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 7073, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7075, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 7111, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7112, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7113, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7114, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7122, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7129, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7134, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7139, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7144, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 7145, + "TypeID": 1, + "Label": "GAC Aii -doubtful", + "Tags": "" + }, + { + "StructureID": 7147, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7149, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 7157, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7167, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7174, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 7188, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7203, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 7204, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 7215, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7225, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7231, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 7274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 7279, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 7344, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 7345, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7346, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, + { + "StructureID": 7361, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 7362, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 7446, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 7461, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7464, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7468, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7561, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 7564, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7565, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7568, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 7577, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7587, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 7594, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 7688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 7691, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7693, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7703, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 7858, + "TypeID": 1, + "Label": "GAC ON/OFF", + "Tags": "" + }, + { + "StructureID": 7859, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 7860, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7861, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 7897, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 7904, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 7951, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 8027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 8032, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 8033, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 8035, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 8037, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 8038, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 8040, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 8045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 8059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 8080, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 8212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 8218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 8485, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 8504, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 8551, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 8575, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 8576, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, + { + "StructureID": 8577, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, + { + "StructureID": 8578, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 8579, + "TypeID": 1, + "Label": "YAC Starburst ", + "Tags": "" + }, + { + "StructureID": 8580, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 8586, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 8588, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 8589, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 8720, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 8749, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 8754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 8990, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 9023, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 9124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 9129, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 9183, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 9226, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 9228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 9260, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 9347, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 9376, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 9492, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 9504, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 9604, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 9606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 9614, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 9643, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 9693, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 9769, + "TypeID": 1, + "Label": "YAC IAC", + "Tags": "" + }, + { + "StructureID": 9787, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 9810, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 10142, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10146, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10335, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 10371, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 10412, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10559, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 10565, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 10574, + "TypeID": 1, + "Label": "YAC IAC", + "Tags": "" + }, + { + "StructureID": 10590, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10596, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 10625, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10632, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10720, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 10815, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10826, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10840, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10872, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10897, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10931, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10943, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10945, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 10950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 10953, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10954, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, + { + "StructureID": 10956, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10957, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10959, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10960, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10961, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10962, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10963, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 10964, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10966, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, + { + "StructureID": 10969, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 10970, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, + { + "StructureID": 11011, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, + { + "StructureID": 11015, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, + { + "StructureID": 11017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 11020, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11021, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11022, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11023, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, + { + "StructureID": 11024, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, + { + "StructureID": 11030, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11031, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11033, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11037, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11038, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11042, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11043, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11044, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11049, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11056, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 11063, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11066, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 11071, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 11072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 11073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 11074, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 11085, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11089, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11092, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 11172, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11222, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 11229, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 11234, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11235, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11238, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 11244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 11246, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11248, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11250, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11321, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11401, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 11408, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 11485, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 11531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 11645, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 11650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 11651, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 11657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 11683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 11696, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 11803, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 12072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 12099, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 12113, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 12192, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 12203, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 12208, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 12210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 12298, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 12408, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 12461, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 12492, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 12563, + "TypeID": 1, + "Label": "HC", + "Tags": "" + }, + { + "StructureID": 12564, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 12687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 12696, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 12804, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 12897, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 13000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 13015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 13056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 13130, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 13134, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 13150, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 13154, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 13159, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 13180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 13215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 13313, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 13444, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 13448, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 13469, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 13485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 13492, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 13499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 13521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 13525, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 13624, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 13855, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 13858, + "TypeID": 1, + "Label": "GC OFF", + "Tags": "" + }, + { + "StructureID": 14034, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 14291, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 14293, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 14607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 14615, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 14725, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 14894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 15100, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 15130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 15377, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 15394, + "TypeID": 1, + "Label": "GC ON", + "Tags": "" + }, + { + "StructureID": 15412, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 15475, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 15614, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 15653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 15779, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 15796, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 15942, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 15969, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 15976, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 15977, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 15979, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 16002, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 16026, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, + { + "StructureID": 16073, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 16087, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 16446, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 16940, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 17183, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 17228, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 17527, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 17533, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 18150, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 18282, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 18471, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 18472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 18576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 18693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 19203, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 19351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 19362, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 19383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 19571, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 19572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 20136, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 20299, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 20311, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 20327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 20413, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 20537, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 20608, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 20614, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 20681, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 20728, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 21094, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 21155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 21159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 21163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 21299, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 21314, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 21384, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 21386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 21778, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 21779, + "TypeID": 1, + "Label": "GC ON/OFF", + "Tags": "" + }, + { + "StructureID": 21817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 21824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 21855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 21874, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 22210, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 22225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 22349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22358, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22368, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 22374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22554, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 22590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22634, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 22760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 22974, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 22994, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 23323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 23512, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 23566, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 23836, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 23870, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 24148, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 24174, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 24241, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 24294, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 24303, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 24366, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 24381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 24401, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 24898, + "TypeID": 1, + "Label": "GC OFF", + "Tags": "" + }, + { + "StructureID": 24909, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 24947, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 25155, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 25182, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25293, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25327, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25342, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 25352, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25359, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25364, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 25367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25382, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 25385, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25392, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25402, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 25405, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 25410, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25429, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25529, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25551, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25561, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25575, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25669, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 25688, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 25858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25861, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 25879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 26079, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 26304, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, + { + "StructureID": 26497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 26971, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 27288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 27304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 28382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 28886, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 28913, + "TypeID": 1, + "Label": "GC Delta L1", + "Tags": "" + }, + { + "StructureID": 28950, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 29198, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 29277, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 29340, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 29702, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, + { + "StructureID": 29783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 29791, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 29805, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 29827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 30015, + "TypeID": 1, + "Label": "YAC WF ON/OFF", + "Tags": "" + }, + { + "StructureID": 30102, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 30130, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 30177, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 30328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 30332, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 30370, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 30379, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, + { + "StructureID": 30477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 30495, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 30499, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 30513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 30518, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 30526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 30567, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31024, + "TypeID": 1, + "Label": "GC ON", + "Tags": "" + }, + { + "StructureID": 31157, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 31161, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, + { + "StructureID": 31256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31305, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31356, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31389, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 31471, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 31483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 31486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31603, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31605, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31665, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31679, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31694, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 31700, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 31702, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31710, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 31804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31874, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 31915, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31944, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 31960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 31969, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 31994, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32046, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32141, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32144, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 32147, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 32160, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32172, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 32187, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32227, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32258, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 32273, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32312, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 32354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32359, + "TypeID": 1, + "Label": "CBab2-3", + "Tags": "" + }, + { + "StructureID": 32371, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 32379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32383, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32405, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32409, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32422, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32445, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32451, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32547, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32581, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32608, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32643, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32654, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 32660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32666, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32668, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32681, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 32719, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 32726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32734, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32739, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32773, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32787, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32795, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32802, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32848, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 32853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32862, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32871, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32874, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32892, + "TypeID": 1, + "Label": "AC OFF", + "Tags": "" + }, + { + "StructureID": 32900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32911, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32916, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32926, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32938, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32945, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32959, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 32970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 32987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 32994, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33003, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 33039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 33072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 33088, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 33117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 33127, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 33148, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33161, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 33198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 33200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 33217, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 33272, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 33333, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 33588, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 33615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 33625, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 33675, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33714, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33873, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 33881, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34028, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34034, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 34036, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34055, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34138, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34148, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34159, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34164, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 34165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34253, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34300, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34306, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34311, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 34315, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34336, + "TypeID": 1, + "Label": "GC ON/OFF", + "Tags": "" + }, + { + "StructureID": 34337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34494, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34509, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 34527, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34601, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34621, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34756, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 34761, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 34847, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34868, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 34882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34893, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34899, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34914, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 34919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34940, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 34978, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 34982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35046, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 35064, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35068, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35076, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35084, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35138, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35142, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35145, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 35149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35176, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35188, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35193, + "TypeID": 1, + "Label": "YAC ON", + "Tags": "" + }, + { + "StructureID": 35208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35212, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35240, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 35283, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35305, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 35308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35335, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35343, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 35348, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35392, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 35395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35400, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35418, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35428, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35510, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35513, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35526, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35534, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35550, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 35555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35576, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 35597, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 35653, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35681, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 35696, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 35751, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35775, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 35811, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35887, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35894, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 35966, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 35969, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 35972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 35975, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 36130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 36151, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 36153, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 36158, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 36162, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 36170, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 36222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 36228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 36234, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 36276, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36293, + "TypeID": 1, + "Label": "YAC A1", + "Tags": "" + }, + { + "StructureID": 36299, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36419, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 36421, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 36481, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36501, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36508, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36512, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 36650, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36661, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36664, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 36683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 36688, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 36700, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 36714, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36724, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 36746, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 37012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 37021, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 37042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 37127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 37135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 37183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 37192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 37286, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 37288, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 37295, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 37309, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 37440, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 37461, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 37466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38200, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38231, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38236, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38245, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 38302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38345, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38357, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38404, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38483, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38502, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 38600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38605, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38632, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38698, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 38703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38727, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 38735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38799, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 38810, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 38848, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 38906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 38911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 38949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39168, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39192, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39196, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39201, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39208, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39216, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 39226, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39244, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39252, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39285, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39319, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 39324, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39331, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39342, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39345, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 39516, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39520, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39523, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39528, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39530, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39560, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39575, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39581, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39590, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39596, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39602, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39610, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39615, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39688, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39696, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 39706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39717, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39724, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39737, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39745, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39748, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39752, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39759, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39764, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39774, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39787, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39790, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39794, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 39798, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39802, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39807, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39811, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39816, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39824, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39830, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39835, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39838, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 39841, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39862, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 39867, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39915, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 39917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39922, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 39931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39939, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 39957, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 39963, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39968, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39982, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 39998, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40018, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40033, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40041, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40044, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40051, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40053, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40059, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40439, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40444, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40455, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 40469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40480, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 40482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40495, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 40498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40602, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40604, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 40606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40631, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40640, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40844, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40851, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, + { + "StructureID": 40856, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40863, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 40880, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40884, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40896, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40901, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40911, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40917, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 40919, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40927, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40934, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40947, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40951, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40956, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 40965, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 40988, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 40991, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 41003, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 41009, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 41031, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 41039, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 41042, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 41058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 41126, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 41159, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 41474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 41583, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 41587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 41608, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 41636, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 41778, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 41882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 41891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 41905, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 41999, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 42001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 42094, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 42159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 42387, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 42404, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 42406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 42416, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 42423, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 42432, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 42450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 42523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 42527, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 42576, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 42586, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 42615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 42711, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 42715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 42770, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, + { + "StructureID": 42776, + "TypeID": 1, + "Label": "AC OFF", + "Tags": "" + }, + { + "StructureID": 42795, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 42819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 42846, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 42866, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42871, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 42873, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42877, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42890, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 42927, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42948, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 42951, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42953, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 42966, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42968, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42971, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42977, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42980, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 42985, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 43114, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 43127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 43130, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 43132, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 43134, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 43142, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 43198, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 43201, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 43203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 43205, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 43207, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 43259, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 43261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 43297, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43314, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43327, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 43334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 43404, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 43445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 43601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43631, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 43700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43716, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 43747, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 43770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 43874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 44095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 44117, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 44205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 44212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 44222, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 44229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 44237, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 44241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 44329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 44338, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 44346, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 44893, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 44895, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 44901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 44912, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 44965, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 44970, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 45007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 45220, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 45326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 45336, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 45358, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 45406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 45536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 45551, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 45555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 45568, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 45571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 45574, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 45617, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 45629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 45672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 45677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 45680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 45731, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 45847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 45894, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 46050, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46052, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46054, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46057, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 46059, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46062, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 46070, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46074, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46090, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46093, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46098, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 46105, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 46107, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46116, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46118, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46121, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46186, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 46261, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 46347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46351, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46359, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46373, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 46379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46384, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 46386, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46388, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 46389, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46391, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46443, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46449, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46461, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 46468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46498, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46502, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46504, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46508, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 46512, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 46514, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46517, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46527, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 46530, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46589, + "TypeID": 1, + "Label": "AC ON", + "Tags": "" + }, + { + "StructureID": 46670, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46682, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46693, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 46741, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 46797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46801, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 46804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46817, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46933, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 46943, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, + { + "StructureID": 46955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46979, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46982, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 46984, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 46998, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 47002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 47004, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 47007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 47010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 47013, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 47095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 47104, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 47109, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 47195, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 47204, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, + { + "StructureID": 47445, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 47593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 47833, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 47908, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 48416, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 48455, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 48516, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 48573, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 48612, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 49184, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 49185, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 49186, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 49487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 49489, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 49554, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 49600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 50240, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 50449, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 50894, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 50982, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 51100, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 51617, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 51667, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 51700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 51711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 51715, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 51808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 51812, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 51923, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 52147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 52152, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 52247, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 52257, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 52262, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 52410, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 52921, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 52929, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 52932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 52955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 52960, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 52991, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53000, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 53127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53166, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53169, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53173, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53178, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53182, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 53186, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53195, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53202, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 53218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 53221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 53224, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53229, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53235, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53241, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53250, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53252, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53257, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53259, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53263, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53330, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 53344, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 53395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 53399, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 53403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53416, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53436, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 53439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 53441, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53443, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 53768, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 53778, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 53828, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 53872, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 53987, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 53991, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 54006, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 54074, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54078, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 54245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54252, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54264, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54356, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54428, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54469, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54482, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 54492, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54622, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54681, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54695, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 54698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54744, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 54776, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54778, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54813, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 54818, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 54850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54859, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54862, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 54874, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 54877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54881, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54895, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54904, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54908, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54913, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 54925, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 54958, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54967, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 54969, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 55034, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 55098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 55108, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 55132, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55154, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 55166, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 55176, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55185, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55191, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 55197, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55201, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55208, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55212, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55218, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 55221, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55223, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 55232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 55279, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55308, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55311, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55317, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55319, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55330, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55347, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, + { + "StructureID": 55359, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 55366, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55517, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55610, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 55686, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 55697, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55830, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 55837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 55933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 56078, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 56081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 56084, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 56086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 56093, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 56108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 56148, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 56191, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 56211, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 56328, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 56486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 56583, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 56598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 56600, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 56631, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 56643, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 56653, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 56704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 56710, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, + { + "StructureID": 56712, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 56714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 56802, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 56822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 56841, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 56955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 56973, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 56975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57027, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 57034, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 57035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57063, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 57064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57133, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57148, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57169, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 57178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57226, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57353, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, + { + "StructureID": 57360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 57487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 58441, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 58592, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58642, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 58682, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 58687, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58709, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58714, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58723, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58741, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 58745, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58773, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 58775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 58777, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58782, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58784, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58825, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 58827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 58829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59008, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 59012, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 59096, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59121, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 59125, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59130, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59139, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 59145, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 59147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59163, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 59208, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 59211, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 59219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59223, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 59225, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 59229, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59247, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59251, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59262, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 59271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59278, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59289, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 59294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59333, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 59340, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59362, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 59371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59377, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 59389, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 59392, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 59419, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 59422, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 59429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59432, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59439, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59455, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59471, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59474, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 59477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59491, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59499, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 59507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59510, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59518, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59524, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 59531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59535, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59629, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59638, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 59696, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59726, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59751, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 59756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59796, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59801, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59811, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59813, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59825, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59841, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59862, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 59890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59910, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59916, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 59919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59929, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59932, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 59966, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 59974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60074, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60083, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60088, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60100, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60104, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60191, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60193, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60200, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60221, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60225, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60236, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60306, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60319, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60344, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60346, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60348, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60350, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60354, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60358, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60363, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60386, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60432, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60434, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60440, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60463, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 60466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60487, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 60491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60494, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60523, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 60535, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60547, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60558, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 60572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60645, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60657, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 60798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60863, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 60873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60967, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 60976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 60989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61214, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 61227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61231, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 61270, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 61313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61439, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 61450, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 61462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61500, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61530, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 61583, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61598, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61627, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61630, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 61632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61638, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 61642, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61656, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 61666, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 61672, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61703, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 61705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61709, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 61716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61719, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 61740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61752, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61758, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 61763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61765, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61773, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61775, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 61777, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61779, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61793, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 61797, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61809, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61811, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61813, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61817, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61823, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 61827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61836, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 61840, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 61842, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61845, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61847, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61849, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61853, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61862, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61864, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 61868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61878, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 61880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61886, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61897, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61898, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 61904, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61908, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61914, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61926, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61930, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61940, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61942, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61951, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61954, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61960, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61972, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 61982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 61989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 62012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62019, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 62026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62035, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 62038, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 62043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62049, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62052, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62120, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 62150, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62169, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62325, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 62337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62344, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 62420, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 62423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62433, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 62436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62456, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62458, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62464, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62478, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 62483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62492, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62500, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 62511, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 62515, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 62531, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 62540, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 62574, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62578, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 62599, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 62617, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62627, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 62632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62655, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 62659, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 62704, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 62707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 62710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62764, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 62777, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 62786, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 62807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62842, + "TypeID": 1, + "Label": "GC direction selective-like", + "Tags": "" + }, + { + "StructureID": 62896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62956, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 62964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 62992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63016, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63060, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 63199, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 63209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 63274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63371, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 63423, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 63440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 63445, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 63451, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 63460, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 63465, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 63469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63473, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 63485, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 63487, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 63513, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 63516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63521, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 63542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63573, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 63592, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 63594, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 63612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 63628, + "TypeID": 1, + "Label": "AC ON/OFF", + "Tags": "" + }, + { + "StructureID": 63799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 63806, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 63956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 63978, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 63991, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 64196, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 64268, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64362, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64371, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 64387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64409, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64414, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 64417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64492, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 64520, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64547, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 64549, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64626, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64654, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64670, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64673, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 64690, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 64698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64777, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 64787, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 64795, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 64841, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 64887, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 64920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 64923, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 64939, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, + { + "StructureID": 65002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65047, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65134, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 65138, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65156, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65172, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 65181, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65218, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 65245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65247, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65250, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65267, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 65271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65276, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 65278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65284, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 65287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65309, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65320, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65338, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65351, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65358, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65376, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65398, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65404, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65408, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65411, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65464, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65484, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65514, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65519, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 65522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65532, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65555, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65569, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65579, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65591, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65594, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65612, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65616, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65623, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65648, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65742, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 65751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65768, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65816, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 65819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65826, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65835, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 65849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65866, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65883, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65890, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65893, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65899, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65910, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 65920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65963, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 65971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66024, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66031, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66044, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66053, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66075, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 66079, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, + { + "StructureID": 66085, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66089, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66096, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66100, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66104, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66114, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66138, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 66165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66184, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 66193, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66199, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 66214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66303, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66323, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66425, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66464, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66473, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66487, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66493, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66503, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66510, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66513, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66516, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 66520, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66535, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 66539, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 66542, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66634, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 66640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66647, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66660, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66665, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66682, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66685, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66699, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66702, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66710, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66713, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66723, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66731, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66756, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 66760, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66768, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66779, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66785, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 66788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66795, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66801, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66809, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66828, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66840, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66852, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66871, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66888, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 66896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66905, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 66910, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66927, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66930, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 66933, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 66937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66942, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 66946, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66952, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66955, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66958, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 66962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66983, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 66988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 66992, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67007, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67016, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67019, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67042, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67051, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67080, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67101, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67109, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67119, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67121, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67123, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67128, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67131, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67137, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67150, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67152, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67157, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67159, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67161, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67182, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67187, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67190, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67201, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67206, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67219, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67227, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67234, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67246, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67252, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67254, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67258, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67266, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67269, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67284, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67298, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67301, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67305, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67328, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67350, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67352, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67354, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67361, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67364, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67404, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67410, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67423, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67425, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67433, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67438, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67452, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67455, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67458, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67469, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67491, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67494, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67500, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67502, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67504, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67506, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67508, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67520, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67529, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67546, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67551, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67557, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67575, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67585, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 67586, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67591, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67595, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67626, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67663, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 67666, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67671, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67683, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67686, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67705, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67711, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67736, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67752, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67762, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67765, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67768, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67784, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67786, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67789, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67806, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67809, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67815, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 67818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67823, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67833, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67839, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67854, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67871, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67883, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 67886, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 67890, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 67892, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67915, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67918, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67920, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67932, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67947, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67952, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67959, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 67970, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 67973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67981, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 67983, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67992, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67996, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 67999, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68003, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68009, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 68014, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68020, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68023, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68031, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68042, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68056, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68068, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68087, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68093, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68101, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68135, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68144, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68148, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68150, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68153, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 68161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68188, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68202, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68210, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68214, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68238, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68249, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68263, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68266, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68273, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68277, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68286, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68289, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68292, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68296, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68300, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68302, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68306, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68335, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68350, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 68353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68359, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68366, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68380, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68391, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68393, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68399, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68433, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68435, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68453, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68461, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68492, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68497, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68501, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68504, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68511, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68527, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68537, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68539, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 68543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68550, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68555, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68566, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68585, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68594, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68618, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68623, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 68632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68667, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68669, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68678, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68679, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 68686, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68728, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68734, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68748, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68761, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 68766, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 68771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68781, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 68785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68793, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 68799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68888, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 68891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68914, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68929, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68944, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68948, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68955, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 68974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 68978, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 68988, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 69003, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69019, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69030, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69049, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69162, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 69181, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69235, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69325, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69332, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69355, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69382, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69385, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69428, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 69431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69434, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69436, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69443, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69446, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69450, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69454, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 69456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69461, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69464, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69467, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69469, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69478, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69480, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69503, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69508, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69532, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69534, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, + { + "StructureID": 69537, + "TypeID": 1, + "Label": "GC OFF", + "Tags": "" + }, + { + "StructureID": 69543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69666, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69695, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69697, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69708, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69710, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69720, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69721, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69728, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69733, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69742, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69783, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69895, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69899, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69902, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69910, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69917, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69930, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69934, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69955, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69966, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69967, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 69972, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69979, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69986, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 69998, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70003, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70046, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70065, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70079, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70084, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70095, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 70111, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70114, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 70116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70120, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70134, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70139, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70171, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70176, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70182, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70205, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 70219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70221, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70302, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70308, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70323, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70335, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70340, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70346, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70352, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70357, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70372, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70398, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70403, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 70415, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70418, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70422, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70427, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70432, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70436, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70449, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70462, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 70466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70469, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70471, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70481, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70487, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70500, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 70501, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 70514, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70529, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70533, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70535, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70540, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70552, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70562, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70566, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70570, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70581, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70593, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70599, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70601, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70605, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70612, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70615, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70621, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70628, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70632, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70646, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70651, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70653, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70655, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70674, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70682, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70684, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70697, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70699, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70712, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70732, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70743, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70745, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70768, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70770, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70774, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70778, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70780, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70789, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70820, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70833, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70840, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70845, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70878, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 70901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70906, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 70909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 70924, + "TypeID": 1, + "Label": "GC ON/OFF", + "Tags": "" + }, + { + "StructureID": 70987, + "TypeID": 1, + "Label": "GC fragment ", + "Tags": "" + }, + { + "StructureID": 71041, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71063, + "TypeID": 1, + "Label": "YAC WF", + "Tags": "" + }, + { + "StructureID": 71073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71091, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71108, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71135, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 71145, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71153, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71155, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71202, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71213, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71219, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71227, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71241, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 71242, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71281, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, + { + "StructureID": 71284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71351, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 71357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71362, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71369, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71377, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71411, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71435, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71491, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71497, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71513, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71517, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71535, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71538, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71541, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71545, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71574, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71583, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71594, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71597, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 71600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71610, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71618, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71625, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71626, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71632, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71634, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71640, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71671, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71686, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71730, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 71738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71825, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 71830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71877, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71882, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 71891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71906, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 71908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71927, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 71935, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 71953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71985, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 71997, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 71998, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72003, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72031, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72036, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 72043, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72074, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72076, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72082, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72087, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72109, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72124, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72142, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72154, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72162, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72168, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72173, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 72176, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72188, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72210, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72226, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72252, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 72259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72271, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72281, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72306, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72326, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72335, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72342, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72344, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72350, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72358, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72363, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72384, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72385, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72402, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 72408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72427, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72458, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72492, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72518, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 72523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72529, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72592, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72594, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72612, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 72614, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72640, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72647, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72694, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72724, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72742, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72765, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72778, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72787, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72799, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72821, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72834, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72841, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72873, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72934, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72939, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72941, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, + { + "StructureID": 72949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72964, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72965, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72973, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72975, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 72989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72992, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 72994, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 73004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73006, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73025, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73030, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73086, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73099, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73133, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73146, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73163, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73250, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73270, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73276, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73342, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73348, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73416, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73443, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73453, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73467, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73488, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73494, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73509, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73514, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73573, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73580, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73583, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73594, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73605, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73611, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73613, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73617, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 73619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73620, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73621, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73635, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73639, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73646, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73649, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73658, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73662, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73676, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73687, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73702, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73704, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73710, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73713, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73722, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 73732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73739, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73742, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73759, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73764, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 73810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73825, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73833, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73838, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73906, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 73909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73926, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73979, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 73994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74023, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74047, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 74049, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74081, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74082, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74088, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74104, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74135, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74141, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 74165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74203, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74211, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74213, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74216, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74225, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74231, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74233, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74237, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74238, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74241, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74276, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74279, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74412, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74416, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74471, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74480, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74493, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74499, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74508, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74511, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74536, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74558, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74567, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74573, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74584, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74593, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74614, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74618, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74624, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74625, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74635, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74639, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 74645, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74670, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74694, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74699, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74701, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74706, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74724, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74726, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74815, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74825, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74828, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74854, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74859, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74863, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74866, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74886, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74890, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74899, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74902, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74904, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74907, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 74909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74939, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74943, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 74957, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74969, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 74994, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75001, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75012, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75015, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75017, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75021, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75028, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75052, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75062, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75065, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75082, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75085, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75099, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75104, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75120, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75130, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 75133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75150, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75158, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75168, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75173, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75179, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75196, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75199, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75214, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75268, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75272, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 75273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75300, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75307, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75320, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75326, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75350, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75359, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75387, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75390, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75395, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 75400, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75404, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75440, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75442, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75467, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75485, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75515, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75517, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 75519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75525, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75530, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75578, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75583, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75603, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75625, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 75630, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75648, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75695, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75700, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75713, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 75721, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75739, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75742, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75752, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75760, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75782, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75792, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75825, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75830, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75833, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75841, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75893, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75902, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75911, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75917, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 75939, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 75988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76024, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76056, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76060, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76066, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76071, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76086, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76088, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76091, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76103, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76120, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76127, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 76137, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, + { + "StructureID": 76141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76211, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76245, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76251, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76277, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76291, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76294, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76298, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76300, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76319, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76336, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76378, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76394, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76409, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76432, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76473, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76489, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 76492, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76495, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76505, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 76510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76517, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76520, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76530, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76574, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76582, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76591, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76677, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76724, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76742, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76749, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76752, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76766, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76778, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76786, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76808, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76811, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76837, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76859, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76862, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76867, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76886, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 76895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76956, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76958, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76973, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 76977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76980, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76983, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 76996, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77023, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77068, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 77077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77109, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77116, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77120, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77130, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77132, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77134, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77179, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77199, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77270, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77276, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77332, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77342, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77370, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77378, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77393, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77456, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77488, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77504, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77507, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77513, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77529, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77536, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77555, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77578, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77603, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77619, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77623, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77625, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77637, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77642, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77656, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77658, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77664, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77669, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77674, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77682, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77695, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77708, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77712, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77714, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77718, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77747, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77765, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77790, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77816, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77836, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77840, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77914, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77918, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77981, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 77988, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 77992, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78021, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78028, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78038, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78067, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78074, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78080, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78083, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78088, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78098, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 78102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78109, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78126, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78134, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78146, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78179, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78191, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78196, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78224, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78244, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78249, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 78252, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78261, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78295, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78298, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78303, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78316, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78327, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78330, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78336, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78355, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78378, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78400, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78409, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78415, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78423, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78428, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78444, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78467, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78471, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78478, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78506, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 78507, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78514, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78520, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78529, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78532, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78552, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78578, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78594, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78617, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78647, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78681, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78686, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78699, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78701, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78709, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78710, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 78715, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78725, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78749, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78787, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78797, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78825, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78839, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78899, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78909, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78910, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78926, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78932, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78964, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 78966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 78997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79004, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79008, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79022, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79061, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79064, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79068, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, + { + "StructureID": 79069, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, + { + "StructureID": 79071, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, + { + "StructureID": 79072, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, + { + "StructureID": 79073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79074, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, + { + "StructureID": 79091, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, + { + "StructureID": 79106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79159, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79171, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79196, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79209, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79245, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79259, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79309, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79319, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79370, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 79373, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 79382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79427, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79431, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79433, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 79450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79457, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79461, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79464, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79470, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79493, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 79498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79502, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79509, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79545, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79551, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79553, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79558, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79584, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79601, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79631, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79645, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79686, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79725, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79726, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79747, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79799, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79802, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79813, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79863, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79869, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79914, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79955, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 79958, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79984, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 79993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80016, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80034, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80049, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80060, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80065, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80067, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80071, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80074, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80083, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80088, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80090, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80094, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80101, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80153, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80154, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80167, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80174, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80185, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80190, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80197, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80209, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80213, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80245, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80248, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80263, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80276, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80293, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80294, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80338, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80348, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80378, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80399, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, + { + "StructureID": 80400, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80417, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80425, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80434, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80467, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80509, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80532, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80534, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 80548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80562, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80582, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80591, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80592, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80596, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80604, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80607, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80609, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80646, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80657, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80665, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80755, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, + { + "StructureID": 80764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80799, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80816, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80833, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80836, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80839, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80859, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80896, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 80897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80935, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80974, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 80980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80983, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80990, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 80997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81003, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81008, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81017, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81038, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81048, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81051, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81066, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81081, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81085, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81091, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81095, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81120, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81136, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81142, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81146, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81153, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 81160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81169, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81187, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81193, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81196, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81200, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81211, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81234, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81250, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81300, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81304, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 81308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81348, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81393, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81402, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81429, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 81430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81433, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81489, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81494, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81528, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81532, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81533, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81566, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81569, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81584, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81605, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81612, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81615, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81622, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81629, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81637, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81649, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81661, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81667, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81685, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81690, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81704, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81708, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81731, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81743, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81753, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, + { + "StructureID": 81758, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, + { + "StructureID": 81763, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81768, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81825, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81834, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81839, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81862, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81887, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 81894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81925, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 81996, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82006, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82025, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82050, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82060, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82061, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82143, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82172, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82181, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82188, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82216, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 82217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82229, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 82241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82252, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82281, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82289, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82305, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82353, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 82362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82430, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, + { + "StructureID": 82432, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82442, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82569, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82643, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82644, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82653, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82677, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 82678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82692, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82717, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82723, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82789, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82803, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82806, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82813, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 82817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82887, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82897, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82977, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 82978, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 82999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83049, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83056, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83060, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83133, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83157, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83163, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83179, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 83186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83214, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83222, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83226, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83234, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83238, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83241, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83248, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 83253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83255, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83266, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83293, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83302, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83329, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 83331, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 83352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83360, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83375, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83386, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 83389, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83409, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83412, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83415, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83449, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83461, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 83470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83514, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 83535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83591, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83603, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83625, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83644, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83668, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83679, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83697, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83708, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83714, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83721, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83725, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83733, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83747, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83764, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83767, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83776, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83788, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83803, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83823, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83828, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83842, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83860, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83890, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83892, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83898, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83907, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83911, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83916, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83921, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83925, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83954, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83975, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83978, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83981, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83992, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 83995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83996, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 83999, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84008, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84018, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84024, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84029, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84038, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84041, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84052, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84058, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84061, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84063, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84077, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84082, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84083, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84088, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84106, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84108, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84136, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84142, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84148, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84162, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84181, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84184, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84188, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84193, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84203, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84238, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84254, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84260, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84280, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84283, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84290, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84298, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84316, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 84335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84369, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84394, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84418, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84427, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84457, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84508, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84514, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84519, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84520, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84572, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 84579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84621, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84639, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84696, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84745, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84759, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84773, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84780, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84790, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84802, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84825, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 84828, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84830, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84886, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84909, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84914, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84926, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, + { + "StructureID": 84937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84942, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84965, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84983, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 84988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 84995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85004, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85009, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85015, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85062, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, + { + "StructureID": 85068, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85082, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85088, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, + { + "StructureID": 85094, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 85096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85100, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85104, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85116, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85119, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 85121, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85128, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85141, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, + { + "StructureID": 85144, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85149, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85172, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85184, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85185, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85196, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85197, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85216, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85231, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85250, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85259, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85279, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85284, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85298, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85311, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85338, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85348, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85369, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85377, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85400, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85404, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85426, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85442, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85445, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85450, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85455, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85473, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, + { + "StructureID": 85483, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85508, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85510, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85534, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85546, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 85549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85604, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85620, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85629, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 85634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85666, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85671, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85680, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85683, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85730, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 85735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85740, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 85748, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85755, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85771, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85792, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 85831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85852, + "TypeID": 1, + "Label": "SAC", + "Tags": "" + }, + { + "StructureID": 85856, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 85861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85924, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85932, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85946, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 85955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85958, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85979, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85982, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 85991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 85997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86001, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86036, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86047, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86050, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86060, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86114, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86128, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86134, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86145, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86162, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86171, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86192, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86201, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86209, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86224, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86231, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86244, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86260, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86268, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86276, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 86282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86315, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86327, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86345, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86353, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86356, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86369, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86418, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86420, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86438, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86444, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86464, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86473, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86485, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86496, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86512, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86582, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86607, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86609, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86614, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86634, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86662, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86667, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86672, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86685, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86744, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86767, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86783, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86799, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 86806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86812, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86854, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86862, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86871, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86888, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86891, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86898, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86904, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86915, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86927, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86934, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86940, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86945, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86951, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86971, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 86985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 86997, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87002, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87005, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87052, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87067, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87076, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87098, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, + { + "StructureID": 87103, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87130, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87137, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87145, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87149, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87158, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87176, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87189, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87208, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87231, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87238, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87249, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87268, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87277, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87312, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87340, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87342, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87345, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87366, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87373, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87379, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 87385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87390, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87413, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87419, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87432, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87437, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87447, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 87449, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87457, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87487, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87496, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 87503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87562, + "TypeID": 1, + "Label": "AI-like", + "Tags": "" + }, + { + "StructureID": 87569, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 87589, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 87590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87612, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87626, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 87635, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 87647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87654, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87667, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 87678, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 87721, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87808, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 87815, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 87929, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 87934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87972, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 87979, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 87999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88003, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88036, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88055, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88082, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88132, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88139, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88154, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 88159, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 88173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88226, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88230, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88247, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 88252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88260, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88266, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88270, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88290, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88300, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88313, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88344, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88365, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88370, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88375, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88413, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88485, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 88493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88513, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88594, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88608, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88614, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88642, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88666, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88669, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88682, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88684, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 88689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88690, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88692, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88695, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88711, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88715, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88717, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88723, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88726, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88759, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88762, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88790, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88817, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88833, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88841, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 88864, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 88905, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 88912, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88923, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88929, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88945, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88984, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 88986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 88996, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89008, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89016, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89024, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89058, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89066, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89085, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89086, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89113, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89119, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89120, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, + { + "StructureID": 89122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89124, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89133, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89136, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89157, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89181, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89193, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89231, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89248, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89279, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 89285, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 89292, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 89305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89312, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 89317, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89328, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89336, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89355, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 89359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89378, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89400, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89411, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89413, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89420, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 89427, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89447, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89478, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89501, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89503, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89516, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 89522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89524, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 89533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89536, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 89538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89567, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89599, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89617, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89631, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89644, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89652, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89654, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89677, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89694, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89720, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89760, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89780, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89788, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 89791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89822, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 89827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89833, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89887, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89902, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89907, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89910, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89915, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89921, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89928, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 89935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89984, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 89988, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 89993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90004, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90013, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90047, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90049, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90061, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90066, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90079, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90111, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90113, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 90118, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90134, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90138, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90140, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90151, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90217, + "TypeID": 1, + "Label": "GC?", + "Tags": "" + }, + { + "StructureID": 90234, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90278, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90284, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90363, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90396, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 90409, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90420, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90440, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90471, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90475, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90483, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90526, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90558, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90568, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90585, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90587, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90591, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90597, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90602, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90604, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90615, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90618, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90631, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90642, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90645, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90715, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 90739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90744, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90769, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90772, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90789, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90800, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90806, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90835, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90839, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90859, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90877, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90891, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 90905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90917, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 90919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90937, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90943, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90956, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90961, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90969, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90973, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90975, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90979, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 90984, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 90991, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91036, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91060, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91080, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91085, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91103, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91114, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91132, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91138, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91145, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91150, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91156, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 91167, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91176, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91178, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91188, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91191, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91207, + "TypeID": 1, + "Label": "GAC Aii?", + "Tags": "" + }, + { + "StructureID": 91213, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91232, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 91240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91280, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 91376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91446, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91537, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91544, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91578, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91585, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 91588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91597, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91653, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91692, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91694, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91727, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91730, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 91737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91742, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 91743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91746, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91754, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91768, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91805, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91832, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91867, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 91870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91913, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 91918, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91959, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 91964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91979, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 91983, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 91994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92031, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92100, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92149, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92169, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92186, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 92193, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92226, + "TypeID": 1, + "Label": "GAC Aii?", + "Tags": "" + }, + { + "StructureID": 92233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92250, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92295, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 92313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92353, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92372, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92380, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92400, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92427, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92434, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 92445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92631, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92789, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92899, + "TypeID": 1, + "Label": "AC extension 91150", + "Tags": "" + }, + { + "StructureID": 92908, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 92926, + "TypeID": 1, + "Label": "AC 92899 extension", + "Tags": "" + }, + { + "StructureID": 92935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92942, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 92954, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 92970, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 93053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93065, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93074, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93076, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93099, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 93112, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93139, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93172, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93248, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 93277, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93281, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93315, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93325, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93336, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93355, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93386, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93392, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93407, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93413, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93416, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93420, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93431, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93456, + "TypeID": 1, + "Label": "Aii", + "Tags": "" + }, + { + "StructureID": 93463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93489, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 93494, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93514, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 93523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93544, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93555, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93557, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93574, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93634, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93685, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93779, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93881, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 93915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93923, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93927, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93935, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93945, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93957, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93975, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93979, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 93991, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 93993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94003, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94005, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94007, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94018, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 94021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94031, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94038, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94048, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94082, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94136, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94153, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94220, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94231, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94234, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94251, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94252, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94279, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94281, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94297, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94320, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94326, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94344, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94365, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94391, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94409, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94414, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94417, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94500, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94507, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94525, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94536, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94583, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94649, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94652, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94660, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94664, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94692, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94705, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94741, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94784, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94794, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94796, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94803, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94824, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94838, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94867, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94878, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94918, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94926, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94939, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94956, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 94981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94983, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 94999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95062, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95066, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95072, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 95097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95134, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95238, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95250, + "TypeID": 1, + "Label": "GAC Aii?", + "Tags": "" + }, + { + "StructureID": 95256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95260, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95307, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95319, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95323, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95343, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 95349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95411, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95416, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95556, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95562, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95578, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95603, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95605, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95640, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95662, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95670, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95673, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95676, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95688, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95690, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95696, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95699, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95700, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95701, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 95703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95708, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95717, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95759, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95863, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95877, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95895, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95910, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95911, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95922, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95927, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95945, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95959, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95983, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 95997, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 95999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96011, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96036, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96083, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96143, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96152, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96202, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96234, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96238, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96249, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96268, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96270, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96293, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96308, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96310, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96311, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96315, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96319, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96325, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96341, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96407, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96413, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96435, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96442, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96494, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96506, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96519, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96522, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96555, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96562, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96589, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96617, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96619, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96621, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96629, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96649, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96657, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96668, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96679, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96699, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96705, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96708, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96711, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96736, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96738, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96768, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96779, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96786, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96788, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96794, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96801, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96805, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96812, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 96822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96848, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96852, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96914, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96921, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96927, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96930, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96943, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96955, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96958, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96976, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96984, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96986, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 96995, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 96997, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97003, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97005, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97011, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97015, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97020, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97024, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97025, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97041, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97046, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97048, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97054, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97061, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97065, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97068, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97086, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97087, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97105, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97113, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97139, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97146, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97148, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97155, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97171, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97188, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97193, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97194, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97198, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97212, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97221, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97227, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97234, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97261, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97265, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97275, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97294, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97295, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97352, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 97355, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97358, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97363, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97417, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97420, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97439, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97464, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97475, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97485, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97492, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97494, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97500, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97509, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97514, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97532, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97546, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97558, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97568, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97575, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97578, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97597, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97605, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97627, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97671, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97676, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97684, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97722, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97730, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97743, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97764, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97774, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97780, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97786, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97790, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97792, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97794, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97797, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97803, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97814, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97828, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, + { + "StructureID": 97853, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97925, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97927, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97938, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 97951, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 97959, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98016, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98030, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98041, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98074, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98100, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98151, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98171, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98186, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98188, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98190, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98193, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98216, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98235, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98238, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98251, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98258, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98262, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 98270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98279, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98289, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98314, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98345, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98348, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98365, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98372, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98375, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98409, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98411, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98413, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98418, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98434, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98438, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98456, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98471, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98484, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98530, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98534, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98535, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98537, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98550, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98574, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98585, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98599, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98611, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98618, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98627, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98655, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98694, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98725, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98749, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98751, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98758, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98759, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98762, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 98766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98786, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98800, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98823, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98833, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98843, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98849, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98864, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98878, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98891, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98914, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98917, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98924, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98927, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98929, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98958, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98960, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98962, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 98983, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 98999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99004, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99012, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99016, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99025, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99040, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99047, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99048, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99054, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99062, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99065, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99076, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 99077, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99080, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99088, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99094, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99096, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99100, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99106, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 99112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99125, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99132, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99136, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99142, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99225, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99237, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99240, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99249, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99255, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99268, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99314, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99316, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99319, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99325, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99338, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99356, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 99361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99370, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 99375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99435, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99443, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99453, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99461, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99468, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99501, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99504, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99513, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 99515, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99546, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99575, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99586, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99589, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99614, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99617, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99628, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99632, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99639, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 99642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99644, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99719, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99722, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99741, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99742, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99753, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99769, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99771, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99773, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99783, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99789, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99799, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99801, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99824, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99831, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99835, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99841, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99844, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99850, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99862, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99870, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99891, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99922, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99930, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99948, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99958, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99960, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99984, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 99987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 99995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100006, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100014, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100018, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100029, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100038, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100041, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100047, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100055, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100062, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100076, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100084, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100110, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100113, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100128, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100146, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100152, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100153, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100173, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100176, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100187, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100189, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 100195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100205, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100209, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100210, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100217, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100231, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100250, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100254, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100261, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100264, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100275, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100278, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100279, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100282, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, + { + "StructureID": 100289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100296, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100302, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100308, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100310, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100332, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100338, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100355, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100357, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100366, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100400, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100413, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100414, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100419, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100426, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100445, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100450, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100455, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100467, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100503, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100512, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100524, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100536, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100541, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100557, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100562, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100574, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100578, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100591, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100593, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100596, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100605, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100614, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100644, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100651, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100654, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, + { + "StructureID": 100664, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100667, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100669, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100685, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100692, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100709, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100713, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100717, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100729, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100733, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100741, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100744, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100752, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100765, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100771, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100787, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100788, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100803, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100808, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100816, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100820, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100826, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100828, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100835, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100837, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100877, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100878, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100888, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100895, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100918, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100934, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100942, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100953, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100972, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100981, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 100987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 100994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101000, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101004, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101015, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101031, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101041, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101050, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101085, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101090, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101124, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101129, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101138, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101142, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101145, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101161, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101187, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101190, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101194, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101201, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101206, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101213, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101230, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101234, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101238, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101249, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101257, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101261, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101277, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101294, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101360, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101368, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101369, + "TypeID": 1, + "Label": "GCX", + "Tags": "" + }, + { + "StructureID": 101375, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101378, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101384, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101392, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101394, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101428, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101437, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101439, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101455, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101464, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101470, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101489, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101509, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101536, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101544, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101552, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101553, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 101558, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101567, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101570, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101574, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101578, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101581, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101583, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101592, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101594, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101596, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101598, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101602, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101613, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101615, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101617, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101625, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101644, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 101647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101651, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101657, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101661, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101662, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101668, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101681, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101686, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101692, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101697, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101711, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101742, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101744, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101751, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101765, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101789, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101790, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101802, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101808, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101815, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101826, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101833, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101849, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101888, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101935, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101938, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101952, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101958, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101961, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101982, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 101989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 101993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102011, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102036, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102055, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102065, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102085, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102101, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102110, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102113, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102129, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102135, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102136, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102149, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102150, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102153, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102162, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102168, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102171, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102179, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102191, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102196, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102202, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102206, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102216, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102222, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102224, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102226, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102230, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102235, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102250, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102254, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102276, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102286, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102295, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102298, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102307, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102310, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102314, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102354, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102358, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102391, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102405, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102414, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102416, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102417, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102425, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102429, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102437, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102440, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102451, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102459, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 102461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102467, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102504, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102509, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102529, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102586, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102599, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102603, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102607, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102631, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102635, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102639, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102650, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102655, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102658, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102671, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102683, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102687, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102704, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102709, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102710, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102724, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102726, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102730, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102736, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102741, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102744, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102759, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102764, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102787, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102813, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102820, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102825, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102828, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102845, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102859, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102863, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102869, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102912, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102932, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102946, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102985, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 102990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 102999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103001, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103008, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103011, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103047, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103054, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103060, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103064, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103070, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103076, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103084, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103090, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103105, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103108, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103128, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103132, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103136, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103158, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103179, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103182, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103240, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103244, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103265, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103281, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103291, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103307, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103313, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103316, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103319, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103326, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103352, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103358, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103362, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103392, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103411, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103417, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103427, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103437, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103444, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103462, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103508, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103514, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103532, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103534, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103541, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103557, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103592, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103595, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103603, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103613, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103648, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103699, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103725, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103728, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103734, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103738, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103754, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103823, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103830, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103834, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103841, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103869, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103880, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103907, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103951, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103958, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103969, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 103975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 103999, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104009, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104013, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104038, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104043, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104049, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104056, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104062, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104063, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104082, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104084, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104109, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104120, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104130, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104140, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104143, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104155, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104157, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104160, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104168, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104170, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104208, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104211, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104216, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104250, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104266, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104273, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104276, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104285, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104289, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104340, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104346, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104352, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104368, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104410, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104411, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104434, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104435, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104462, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104468, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104473, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104480, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104484, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104505, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104509, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104526, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104538, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104556, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104565, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104580, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104587, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104591, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104593, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104616, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104619, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104651, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104662, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104669, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104690, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104717, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104719, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104721, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104724, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104733, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104739, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104744, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104751, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104754, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104774, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104788, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104794, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104808, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104823, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104834, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104842, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104850, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104914, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104979, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104990, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 104995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 104998, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105007, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105016, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105022, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105030, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105036, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105040, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105044, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105048, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105058, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105062, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105067, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105078, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105081, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105090, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105095, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105100, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105119, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105128, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105131, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105140, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105146, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105148, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105153, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105161, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105171, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105177, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105188, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105212, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 105219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105226, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105234, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105250, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105265, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105279, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105280, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105294, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105297, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105300, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105418, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105426, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105434, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105450, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105464, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 105467, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105471, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105509, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105511, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105547, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105553, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105558, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105580, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105585, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105612, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105633, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105635, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105643, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105666, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105679, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105694, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105729, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105739, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105745, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105780, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 105788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105862, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105873, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105875, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105878, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105881, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105884, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105907, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105927, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105942, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105968, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105971, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105972, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105982, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105990, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 105992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 105996, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106000, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106007, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106023, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106041, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106048, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106059, + "TypeID": 1, + "Label": "GAC?", + "Tags": "" + }, + { + "StructureID": 106060, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106070, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106080, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106083, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106087, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106107, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106119, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106131, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106134, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106143, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106153, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106158, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106170, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106177, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106179, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106213, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106240, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106247, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106249, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 106253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106258, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106277, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106291, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106296, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106298, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106313, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106333, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106336, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106370, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106375, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106378, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106387, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106413, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106418, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106424, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106427, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106438, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106446, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106456, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106458, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106468, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106480, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106490, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106528, + "TypeID": 1, + "Label": "CBax", + "Tags": "" + }, + { + "StructureID": 106531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106532, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106541, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106562, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106571, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106574, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106580, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106597, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106604, + "TypeID": 1, + "Label": " AC", + "Tags": "" + }, + { + "StructureID": 106612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106616, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106617, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106619, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106637, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106659, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106661, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106665, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106675, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 106689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106711, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106712, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106715, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106717, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106742, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106744, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106752, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106778, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106792, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106801, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106813, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106835, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106836, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106839, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106859, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106863, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106886, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106887, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106890, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106903, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106924, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 106931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 106941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107051, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107054, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107061, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107074, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107078, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107085, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 107092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107126, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107132, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107134, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107156, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107176, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107179, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107196, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107213, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107248, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107262, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107265, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107267, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107275, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107306, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107328, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107330, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107344, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107360, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107367, + "TypeID": 1, + "Label": "BC", + "Tags": "" + }, + { + "StructureID": 107370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107377, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107378, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107383, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107408, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107418, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107420, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107429, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107431, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107433, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107442, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107445, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107455, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107490, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107494, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107504, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107508, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107512, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107525, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107530, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107567, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107583, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107686, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107687, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107699, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107712, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107725, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107736, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107747, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107753, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107755, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107758, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107762, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107789, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107792, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107794, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107796, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107802, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107820, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107833, + "TypeID": 1, + "Label": " AC", + "Tags": "" + }, + { + "StructureID": 107836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107838, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107843, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107845, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107853, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107875, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107887, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107908, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107910, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107918, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107930, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107937, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107939, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107957, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107961, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107974, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107979, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107981, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107982, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, + { + "StructureID": 107988, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 107989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 107999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108011, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108031, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108038, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108040, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108041, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108048, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108061, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108066, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108076, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108083, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108100, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108108, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108109, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108111, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108119, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108151, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108154, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108170, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108178, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108194, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108196, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108225, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108254, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108273, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108284, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108298, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108300, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108306, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108309, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108317, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108327, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108336, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108357, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108398, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108415, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108418, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108429, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108434, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108442, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108464, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108485, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108529, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108533, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108715, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108724, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108727, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108730, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108749, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108766, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108768, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108787, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108800, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108814, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108825, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108835, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108839, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108871, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108899, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108937, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108944, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108988, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 108993, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108996, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 108999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109016, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109029, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109030, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109065, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109079, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109084, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109119, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109135, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109147, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 109149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109210, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109214, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109216, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109226, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109251, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109257, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109277, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109291, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109308, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109341, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109420, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109450, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109456, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109488, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109504, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109540, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109565, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109574, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109597, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109608, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109678, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109681, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109696, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109706, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109710, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109742, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109762, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109778, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109781, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109793, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109799, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109802, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109809, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109814, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109816, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109825, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109834, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109839, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109887, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109893, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109922, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109924, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109943, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109952, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 109956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109986, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 109991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 109997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110022, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110024, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110040, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110054, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110062, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110066, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110081, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110095, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110104, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110107, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110112, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110121, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110134, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110140, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110142, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110151, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110155, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110169, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110181, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110248, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110259, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110265, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110271, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110277, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110281, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110312, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110313, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110316, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110378, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110392, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110416, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110418, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110429, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110441, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110444, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110451, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110484, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110488, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110493, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110496, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110562, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110567, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110580, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110583, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110586, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110600, + "TypeID": 1, + "Label": "Ac", + "Tags": "" + }, + { + "StructureID": 110607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110610, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110614, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110617, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110622, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110623, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110646, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110648, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110666, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110668, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110686, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110694, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110720, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110722, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110728, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110736, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110743, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110747, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110755, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110769, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110783, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110793, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110796, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110800, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110805, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110809, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110816, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110824, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110828, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110830, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110835, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110867, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110869, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110880, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110899, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110903, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110908, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110944, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110964, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110977, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 110979, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 110999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111001, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111006, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111049, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111054, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111059, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111070, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111080, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111084, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111100, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111142, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111146, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111149, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111171, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111183, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 111187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111207, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111212, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111216, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111231, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111238, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111248, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111251, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111260, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111264, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111269, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111276, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111298, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111299, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111303, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111306, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111328, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111330, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111344, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111356, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111369, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111382, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111414, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111424, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111452, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111455, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111462, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111468, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111493, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111496, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111501, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111528, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111539, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111546, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111551, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111568, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111584, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111587, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111595, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111602, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111611, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111616, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111623, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111630, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111662, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111672, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111687, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111708, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111717, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111734, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111755, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111767, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111788, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111803, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111813, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111835, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111838, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111842, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111848, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111883, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111887, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 111890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111899, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111914, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111929, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111937, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111939, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111953, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111963, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111968, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 111974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111980, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 111997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112005, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112017, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112020, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112024, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112028, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112036, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112042, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112049, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112062, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112071, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112077, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112081, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112084, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112087, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112089, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112094, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112105, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112111, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112120, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112128, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112142, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112155, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112160, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112166, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112168, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112176, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112184, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112186, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112188, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112199, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112203, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112205, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112207, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112209, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112217, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112221, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112230, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112241, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112244, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112253, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112255, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112271, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112273, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112286, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112290, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112319, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112351, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112358, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112384, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112386, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112392, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112402, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112404, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112409, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112411, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112415, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112419, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112427, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112447, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112455, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112458, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112468, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112480, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112496, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112507, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112525, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112545, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112584, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112594, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112634, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112661, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112666, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112684, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112689, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112692, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112694, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112700, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112712, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112729, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112748, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 112753, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112766, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112777, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112784, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112824, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112835, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112841, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112843, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112859, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112880, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112887, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112903, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112912, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112925, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112938, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112942, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112964, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112966, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112969, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112978, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112984, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112986, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 112991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 112995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113068, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113088, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113091, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113099, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113103, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113120, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113129, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113153, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113156, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113159, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113167, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113170, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113173, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113176, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113179, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113186, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113242, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113342, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113541, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 113547, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 113689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 113810, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 113841, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113939, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 113965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114558, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114564, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 114568, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 114573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 114618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114692, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 114702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114724, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 114729, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 114732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114745, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 114747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 114748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 114760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114925, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 114931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 114996, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115013, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 115118, + "TypeID": 1, + "Label": "GAC AII", + "Tags": "" + }, + { + "StructureID": 115133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115424, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 115430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115432, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115504, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 115510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115529, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115537, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115574, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115581, + "TypeID": 1, + "Label": "BC", + "Tags": "" + }, + { + "StructureID": 115602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115605, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115647, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115701, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115878, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115895, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 115897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115940, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115942, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115953, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115974, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115983, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 115984, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 115992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116142, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 116279, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116378, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 116400, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 116403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 116451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116475, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 116504, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 116581, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116778, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 116788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 116791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 116835, + "TypeID": 1, + "Label": "Aii extension", + "Tags": "" + }, + { + "StructureID": 116919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 116925, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 117065, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117112, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 117127, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 117132, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 117200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117242, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117285, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117394, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117404, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117406, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117408, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117411, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117429, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117461, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117470, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117645, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117659, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117662, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117668, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117670, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117679, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117689, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117774, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 117778, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 117780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117803, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117813, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117820, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117835, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117860, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117863, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117887, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 117919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 117990, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 117999, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 118014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118058, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, + { + "StructureID": 118087, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 118258, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 118301, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 118315, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 118372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 118398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118654, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 118682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 118997, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 119000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 119008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 119017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 119020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 119028, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 119154, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 119241, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 119270, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 119388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 119517, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 119547, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 119943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 119945, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 119971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120194, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120197, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120253, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120285, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120299, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120303, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120311, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120323, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120359, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120370, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120372, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120389, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120393, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120398, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120400, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120409, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120416, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120420, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120423, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120425, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120445, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120452, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120464, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120470, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120489, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120494, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120497, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120499, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120509, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120518, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120538, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120542, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120546, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120552, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120556, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120565, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120630, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120632, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120634, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120639, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120674, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120777, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120779, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120783, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120885, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120888, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120890, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120892, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120898, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120909, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120911, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120915, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120917, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120923, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120925, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120945, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120956, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120963, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 120987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 120999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121006, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121009, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121048, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121066, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121075, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 121082, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121101, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121111, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121113, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121121, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121123, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121135, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121155, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 121177, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 121258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121265, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121286, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121292, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121303, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121305, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121309, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121313, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121315, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121323, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121325, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121336, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121345, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121348, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121353, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121356, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121362, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121365, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121372, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121380, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121387, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121404, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121411, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121413, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121415, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121420, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121422, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121432, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121452, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121457, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121467, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121470, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121484, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121490, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121499, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121501, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121522, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121524, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121526, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121530, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 121541, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 121635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121647, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121660, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 121663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121727, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121866, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 121881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121899, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 121913, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 121916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121946, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 121948, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 121952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121958, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 121978, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 122081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122091, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 122104, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 122173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122207, + "TypeID": 1, + "Label": "CB", + "Tags": "" + }, + { + "StructureID": 122242, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, + { + "StructureID": 122353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122415, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 122420, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 122424, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 122431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 122459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 122463, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 122467, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 122469, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 122484, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 122488, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 122595, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 122663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122705, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, + { + "StructureID": 122707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 122711, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 122716, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 122750, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 122756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 122760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122768, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 122777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122803, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122829, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 122849, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 122868, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 122893, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, + { + "StructureID": 122930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 122933, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 123146, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 123181, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 123183, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 123186, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 123189, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 123192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123197, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 123199, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123209, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 123212, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 123215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123222, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 123223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 123227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123499, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 123551, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 123552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123576, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 123675, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 124069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 124198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 124282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 124301, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 124313, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 124402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 124486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 124547, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 124780, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 125157, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 125389, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 125397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 125685, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 125767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 125857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 125934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 125981, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 126012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 126047, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 126536, + "TypeID": 1, + "Label": "CBax", + "Tags": "" + }, + { + "StructureID": 126582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 126585, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 126646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 126711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 126763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 126886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 126901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 127070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127148, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 127240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127253, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 127256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 127262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127277, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127302, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 127304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 127306, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127719, + "TypeID": 1, + "Label": "CBx 127719", + "Tags": "" + }, + { + "StructureID": 127749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127764, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 127776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127796, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 127813, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127841, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 127846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 127897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127930, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 127940, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 127946, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 127953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127964, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 127972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 127999, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 128006, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128015, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 128060, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128082, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 128097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128101, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128122, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 128150, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 128152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128171, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 128184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128191, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128205, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 128278, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128685, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 128696, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128803, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 128843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 128992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 129048, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 129144, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 129154, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 129181, + "TypeID": 1, + "Label": "CBax", + "Tags": "" + }, + { + "StructureID": 129192, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 129199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 129201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 129292, + "TypeID": 1, + "Label": "BC", + "Tags": "" + }, + { + "StructureID": 129340, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 129465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 129466, + "TypeID": 35, + "Label": null, + "Tags": "" + }, + { + "StructureID": 129484, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 129563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 129610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 129648, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 129660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 129666, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 129676, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 129696, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 129721, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 129738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 129740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 129746, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 129755, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 129762, + "TypeID": 1, + "Label": "CB", + "Tags": "" + }, + { + "StructureID": 129775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 129781, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 129788, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 129798, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 129800, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 129827, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 129840, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 129851, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 129875, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 129877, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 129924, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 129927, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 129952, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 129954, + "TypeID": 1, + "Label": "BC", + "Tags": "" + }, + { + "StructureID": 129956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 129961, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 129967, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 129994, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 129995, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 130006, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130012, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130038, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130125, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130150, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130152, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130189, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 130200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130208, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130237, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130255, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130256, + "TypeID": 1, + "Label": "BC", + "Tags": "" + }, + { + "StructureID": 130365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130371, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 130383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130408, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130472, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 130644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130755, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 130964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 130975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131177, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 131244, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 131246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 131284, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 131286, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 131364, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 131496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131630, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 131635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 131664, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 131704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131708, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 131740, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 131886, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 131988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 132009, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 132021, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 132038, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 132081, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 132123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 132135, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 132158, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 132162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 132202, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 132220, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 132255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 132257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 132259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 132712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 132722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 132740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 132773, + "TypeID": 1, + "Label": "GAC AII?", + "Tags": "" + }, + { + "StructureID": 133015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133451, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 133550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133744, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133755, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 133757, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 133779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 133891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134553, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 134654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134662, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134677, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134701, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134706, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 134952, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 134954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135039, + "TypeID": 1, + "Label": "GAC AII?", + "Tags": "" + }, + { + "StructureID": 135052, + "TypeID": 1, + "Label": "GAC AII?", + "Tags": "" + }, + { + "StructureID": 135183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135196, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, + { + "StructureID": 135208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135213, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135219, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 135225, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 135229, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 135258, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 135281, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, + { + "StructureID": 135295, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 135401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 135563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135862, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135877, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 135884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135956, + "TypeID": 1, + "Label": "GAC?", + "Tags": "" + }, + { + "StructureID": 135982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 135994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136140, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 136169, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136177, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 136236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136256, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 136291, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136351, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 136362, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 136381, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 136393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136418, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 136427, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 136432, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 136465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136486, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, + { + "StructureID": 136513, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 136529, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 136531, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, + { + "StructureID": 136659, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 136667, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 136674, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 136677, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136688, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 136700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136742, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 136748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136759, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136786, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 136790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136826, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 136843, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 136884, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 136913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136927, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 136956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 136970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 137002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 137007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 137009, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 137012, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, + { + "StructureID": 137024, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 137040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 137070, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 137084, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 137099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 137113, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 137122, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, + { + "StructureID": 137147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 137155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 137159, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 137162, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 137168, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 137189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 137192, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 147203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 147213, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 147217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 147220, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, + { + "StructureID": 147412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 147696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 147698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 147713, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 147718, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 147734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 147750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 147765, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 147769, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 147776, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 147781, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 147788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 147793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 147796, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 147805, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 147809, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 147818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148300, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 148314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148317, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 148332, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148335, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148346, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 148354, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148358, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 148364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 148367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 148371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148374, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, + { + "StructureID": 148377, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 148381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 148384, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 148389, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, + { + "StructureID": 148397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 148402, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 158472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158507, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158518, + "TypeID": 1, + "Label": "BC ASB", + "Tags": "" + }, + { + "StructureID": 158538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158859, + "TypeID": 1, + "Label": "", + "Tags": "" + }, + { + "StructureID": 158878, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158899, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 158907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159084, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159146, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159150, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159437, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, + { + "StructureID": 159467, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 159497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159504, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159506, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 159518, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 159541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159592, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 159601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159603, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159611, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 159638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 159643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159650, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 159654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 159688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159699, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159700, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 159703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159727, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, + { + "StructureID": 159822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, + { + "StructureID": 159858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + } + ], + "edges": [ + { + "ID": 0, + "SourceStructureID": 8551, + "TargetStructureID": 115, + "Label": "8551-115 via Gap Junction from 43755 -> 43754", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 43755, + "TargetID": 43754, + "Directional": false + } + ] + }, + { + "ID": 1, + "SourceStructureID": 138, + "TargetStructureID": 138, + "Label": "138-138 via Gap Junction from 60162 -> 60163", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60162, + "TargetID": 60163, + "Directional": false + } + ] + }, + { + "ID": 2, + "SourceStructureID": 173, + "TargetStructureID": 138, + "Label": "173-138 via Gap Junction from 46416 -> 46415", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46416, + "TargetID": 46415, + "Directional": false + } + ] + }, + { + "ID": 3, + "SourceStructureID": 181, + "TargetStructureID": 138, + "Label": "181-138 via Gap Junction from 20559 -> 20560", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 20559, + "TargetID": 20560, + "Directional": false + } + ] + }, + { + "ID": 4, + "SourceStructureID": 138, + "TargetStructureID": 11803, + "Label": "138-11803 via Gap Junction from 11474 -> 11804", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 11474, + "TargetID": 11804, + "Directional": false + } + ] + }, + { + "ID": 5, + "SourceStructureID": 142, + "TargetStructureID": 142, + "Label": "142-142 via Gap Junction from 125969 -> 125970", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 125969, + "TargetID": 125970, + "Directional": false + } + ] + }, + { + "ID": 6, + "SourceStructureID": 142, + "TargetStructureID": 3116, + "Label": "142-3116 via Gap Junction from 92141 -> 126379", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92141, + "TargetID": 126379, + "Directional": false + } + ] + }, + { + "ID": 7, + "SourceStructureID": 142, + "TargetStructureID": 3257, + "Label": "142-3257 via Adherens from 125956 -> 125955, 125958 -> 125959", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125956, + "TargetID": 125955, + "Directional": false + }, + { + "SourceID": 125958, + "TargetID": 125959, + "Directional": false + } + ] + }, + { + "ID": 8, + "SourceStructureID": 3257, + "TargetStructureID": 142, + "Label": "3257-142 via Gap Junction from 9132 -> 119596, 119589 -> 88058, 126034 -> 126033, 126035 -> 126036", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 9132, + "TargetID": 119596, + "Directional": false + }, + { + "SourceID": 119589, + "TargetID": 88058, + "Directional": false + }, + { + "SourceID": 126034, + "TargetID": 126033, + "Directional": false + }, + { + "SourceID": 126035, + "TargetID": 126036, + "Directional": false + } + ] + }, + { + "ID": 9, + "SourceStructureID": 142, + "TargetStructureID": 3679, + "Label": "142-3679 via Gap Junction from 33028 -> 33027", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 33028, + "TargetID": 33027, + "Directional": false + } + ] + }, + { + "ID": 10, + "SourceStructureID": 5278, + "TargetStructureID": 142, + "Label": "5278-142 via Adherens from 114532 -> 114533", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 114532, + "TargetID": 114533, + "Directional": false + } + ] + }, + { + "ID": 11, + "SourceStructureID": 142, + "TargetStructureID": 5278, + "Label": "142-5278 via Gap Junction from 49731 -> 20124, 50308 -> 49773, 92394 -> 49740, 92395 -> 92396, 92934 -> 92933, 98430 -> 98431, 104867 -> 104868, 114493 -> 114492, 125976 -> 125977, 126121 -> 126122", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49731, + "TargetID": 20124, + "Directional": false + }, + { + "SourceID": 50308, + "TargetID": 49773, + "Directional": false + }, + { + "SourceID": 92394, + "TargetID": 49740, + "Directional": false + }, + { + "SourceID": 92395, + "TargetID": 92396, + "Directional": false + }, + { + "SourceID": 92934, + "TargetID": 92933, + "Directional": false + }, + { + "SourceID": 98430, + "TargetID": 98431, + "Directional": false + }, + { + "SourceID": 104867, + "TargetID": 104868, + "Directional": false + }, + { + "SourceID": 114493, + "TargetID": 114492, + "Directional": false + }, + { + "SourceID": 125976, + "TargetID": 125977, + "Directional": false + }, + { + "SourceID": 126121, + "TargetID": 126122, + "Directional": false + } + ] + }, + { + "ID": 12, + "SourceStructureID": 5279, + "TargetStructureID": 142, + "Label": "5279-142 via Gap Junction from 147688 -> 147689", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 147688, + "TargetID": 147689, + "Directional": false + } + ] + }, + { + "ID": 13, + "SourceStructureID": 5284, + "TargetStructureID": 142, + "Label": "5284-142 via Gap Junction from 92382 -> 49782", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92382, + "TargetID": 49782, + "Directional": false + } + ] + }, + { + "ID": 14, + "SourceStructureID": 142, + "TargetStructureID": 5292, + "Label": "142-5292 via Adherens from 126364 -> 126365", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126364, + "TargetID": 126365, + "Directional": false + } + ] + }, + { + "ID": 15, + "SourceStructureID": 5292, + "TargetStructureID": 142, + "Label": "5292-142 via Gap Junction from 49790 -> 49786, 92051 -> 92050", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49790, + "TargetID": 49786, + "Directional": false + }, + { + "SourceID": 92051, + "TargetID": 92050, + "Directional": false + } + ] + }, + { + "ID": 16, + "SourceStructureID": 5297, + "TargetStructureID": 142, + "Label": "5297-142 via Adherens from 126348 -> 126347, 126669 -> 126670", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126348, + "TargetID": 126347, + "Directional": false + }, + { + "SourceID": 126669, + "TargetID": 126670, + "Directional": false + } + ] + }, + { + "ID": 17, + "SourceStructureID": 5297, + "TargetStructureID": 142, + "Label": "5297-142 via Gap Junction from 50315 -> 49774, 50320 -> 49776, 53605 -> 53604, 56813 -> 49755, 65989 -> 65990, 92328 -> 92329, 126234 -> 126235", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50315, + "TargetID": 49774, + "Directional": false + }, + { + "SourceID": 50320, + "TargetID": 49776, + "Directional": false + }, + { + "SourceID": 53605, + "TargetID": 53604, + "Directional": false + }, + { + "SourceID": 56813, + "TargetID": 49755, + "Directional": false + }, + { + "SourceID": 65989, + "TargetID": 65990, + "Directional": false + }, + { + "SourceID": 92328, + "TargetID": 92329, + "Directional": false + }, + { + "SourceID": 126234, + "TargetID": 126235, + "Directional": false + } + ] + }, + { + "ID": 18, + "SourceStructureID": 5487, + "TargetStructureID": 142, + "Label": "5487-142 via Gap Junction from 91673 -> 50126", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91673, + "TargetID": 50126, + "Directional": false + } + ] + }, + { + "ID": 19, + "SourceStructureID": 6117, + "TargetStructureID": 142, + "Label": "6117-142 via Gap Junction from 125921 -> 125920, 126023 -> 126022", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 125921, + "TargetID": 125920, + "Directional": false + }, + { + "SourceID": 126023, + "TargetID": 126022, + "Directional": false + } + ] + }, + { + "ID": 20, + "SourceStructureID": 142, + "TargetStructureID": 6169, + "Label": "142-6169 via Adherens from 126242 -> 126243, 147685 -> 147686", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126242, + "TargetID": 126243, + "Directional": false + }, + { + "SourceID": 147685, + "TargetID": 147686, + "Directional": false + } + ] + }, + { + "ID": 21, + "SourceStructureID": 6169, + "TargetStructureID": 142, + "Label": "6169-142 via Gap Junction from 16159 -> 11190, 20020 -> 20019, 31777 -> 16240, 32086 -> 24646, 35929 -> 11950, 49702 -> 49703, 49714 -> 16172, 49720 -> 49721, 49738 -> 18390, 56833 -> 56832, 88053 -> 16174, 126103 -> 9468, 126224 -> 126223, 126228 -> 126226", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16159, + "TargetID": 11190, + "Directional": false + }, + { + "SourceID": 20020, + "TargetID": 20019, + "Directional": false + }, + { + "SourceID": 31777, + "TargetID": 16240, + "Directional": false + }, + { + "SourceID": 32086, + "TargetID": 24646, + "Directional": false + }, + { + "SourceID": 35929, + "TargetID": 11950, + "Directional": false + }, + { + "SourceID": 49702, + "TargetID": 49703, + "Directional": false + }, + { + "SourceID": 49714, + "TargetID": 16172, + "Directional": false + }, + { + "SourceID": 49720, + "TargetID": 49721, + "Directional": false + }, + { + "SourceID": 49738, + "TargetID": 18390, + "Directional": false + }, + { + "SourceID": 56833, + "TargetID": 56832, + "Directional": false + }, + { + "SourceID": 88053, + "TargetID": 16174, + "Directional": false + }, + { + "SourceID": 126103, + "TargetID": 9468, + "Directional": false + }, + { + "SourceID": 126224, + "TargetID": 126223, + "Directional": false + }, + { + "SourceID": 126228, + "TargetID": 126226, + "Directional": false + } + ] + }, + { + "ID": 22, + "SourceStructureID": 142, + "TargetStructureID": 9347, + "Label": "142-9347 via Unknown from 126313 -> 126312, 126317 -> 126309", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126313, + "TargetID": 126312, + "Directional": false + }, + { + "SourceID": 126317, + "TargetID": 126309, + "Directional": false + } + ] + }, + { + "ID": 23, + "SourceStructureID": 142, + "TargetStructureID": 18693, + "Label": "142-18693 via Adherens from 126218 -> 27331", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126218, + "TargetID": 27331, + "Directional": false + } + ] + }, + { + "ID": 24, + "SourceStructureID": 21299, + "TargetStructureID": 142, + "Label": "21299-142 via Adherens from 125928 -> 125927, 126368 -> 126367, 147690 -> 147691", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125928, + "TargetID": 125927, + "Directional": false + }, + { + "SourceID": 126368, + "TargetID": 126367, + "Directional": false + }, + { + "SourceID": 147690, + "TargetID": 147691, + "Directional": false + } + ] + }, + { + "ID": 25, + "SourceStructureID": 142, + "TargetStructureID": 21299, + "Label": "142-21299 via Gap Junction from 44447 -> 44446, 49712 -> 49713, 50125 -> 48925, 91659 -> 91657, 92441 -> 92440, 125945 -> 125946, 125947 -> 125948, 125953 -> 125952, 126009 -> 126010, 126154 -> 126155, 126157 -> 126158", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 44447, + "TargetID": 44446, + "Directional": false + }, + { + "SourceID": 49712, + "TargetID": 49713, + "Directional": false + }, + { + "SourceID": 50125, + "TargetID": 48925, + "Directional": false + }, + { + "SourceID": 91659, + "TargetID": 91657, + "Directional": false + }, + { + "SourceID": 92441, + "TargetID": 92440, + "Directional": false + }, + { + "SourceID": 125945, + "TargetID": 125946, + "Directional": false + }, + { + "SourceID": 125947, + "TargetID": 125948, + "Directional": false + }, + { + "SourceID": 125953, + "TargetID": 125952, + "Directional": false + }, + { + "SourceID": 126009, + "TargetID": 126010, + "Directional": false + }, + { + "SourceID": 126154, + "TargetID": 126155, + "Directional": false + }, + { + "SourceID": 126157, + "TargetID": 126158, + "Directional": false + } + ] + }, + { + "ID": 26, + "SourceStructureID": 142, + "TargetStructureID": 21299, + "Label": "142-21299 via Touch from 125936 -> 125937", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 125936, + "TargetID": 125937, + "Directional": false + } + ] + }, + { + "ID": 27, + "SourceStructureID": 142, + "TargetStructureID": 30513, + "Label": "142-30513 via Unknown from 125916 -> 125917", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125916, + "TargetID": 125917, + "Directional": false + } + ] + }, + { + "ID": 28, + "SourceStructureID": 142, + "TargetStructureID": 39192, + "Label": "142-39192 via Unknown from 125963 -> 125964", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125963, + "TargetID": 125964, + "Directional": false + } + ] + }, + { + "ID": 29, + "SourceStructureID": 142, + "TargetStructureID": 66743, + "Label": "142-66743 via Unknown from 126334 -> 126335", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126334, + "TargetID": 126335, + "Directional": false + } + ] + }, + { + "ID": 30, + "SourceStructureID": 86334, + "TargetStructureID": 142, + "Label": "86334-142 via Adherens from 126028 -> 126027", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126028, + "TargetID": 126027, + "Directional": false + } + ] + }, + { + "ID": 31, + "SourceStructureID": 91613, + "TargetStructureID": 142, + "Label": "91613-142 via Unknown from 98421 -> 98422", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98421, + "TargetID": 98422, + "Directional": false + } + ] + }, + { + "ID": 32, + "SourceStructureID": 92295, + "TargetStructureID": 142, + "Label": "92295-142 via Gap Junction from 127679 -> 126086", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 127679, + "TargetID": 126086, + "Directional": false + } + ] + }, + { + "ID": 33, + "SourceStructureID": 142, + "TargetStructureID": 92295, + "Label": "142-92295 via Unknown from 126095 -> 126096", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126095, + "TargetID": 126096, + "Directional": false + } + ] + }, + { + "ID": 34, + "SourceStructureID": 142, + "TargetStructureID": 92434, + "Label": "142-92434 via Adherens from 126463 -> 126464", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126463, + "TargetID": 126464, + "Directional": false + } + ] + }, + { + "ID": 35, + "SourceStructureID": 92434, + "TargetStructureID": 142, + "Label": "92434-142 via Gap Junction from 92435 -> 92436", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92435, + "TargetID": 92436, + "Directional": false + } + ] + }, + { + "ID": 36, + "SourceStructureID": 142, + "TargetStructureID": 93355, + "Label": "142-93355 via Unknown from 126642 -> 126643", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126642, + "TargetID": 126643, + "Directional": false + } + ] + }, + { + "ID": 37, + "SourceStructureID": 104053, + "TargetStructureID": 142, + "Label": "104053-142 via Unknown from 126147 -> 126148", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126147, + "TargetID": 126148, + "Directional": false + } + ] + }, + { + "ID": 38, + "SourceStructureID": 142, + "TargetStructureID": 127667, + "Label": "142-127667 via Adherens from 127670 -> 127669, 127673 -> 127672", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127670, + "TargetID": 127669, + "Directional": false + }, + { + "SourceID": 127673, + "TargetID": 127672, + "Directional": false + } + ] + }, + { + "ID": 39, + "SourceStructureID": 142, + "TargetStructureID": 127667, + "Label": "142-127667 via Gap Junction from 53597 -> 127674", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53597, + "TargetID": 127674, + "Directional": false + } + ] + }, + { + "ID": 40, + "SourceStructureID": 142, + "TargetStructureID": 131177, + "Label": "142-131177 via Unknown from 126006 -> 131179, 131184 -> 126040", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126006, + "TargetID": 131179, + "Directional": false + }, + { + "SourceID": 131184, + "TargetID": 126040, + "Directional": false + } + ] + }, + { + "ID": 41, + "SourceStructureID": 153, + "TargetStructureID": 79068, + "Label": "153-79068 via Adherens from 79120 -> 79121, 79122 -> 79124, 79143 -> 79142, 79145 -> 79146, 79267 -> 79268, 79288 -> 79287, 79290 -> 79291, 79335 -> 79336", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79120, + "TargetID": 79121, + "Directional": false + }, + { + "SourceID": 79122, + "TargetID": 79124, + "Directional": false + }, + { + "SourceID": 79143, + "TargetID": 79142, + "Directional": false + }, + { + "SourceID": 79145, + "TargetID": 79146, + "Directional": false + }, + { + "SourceID": 79267, + "TargetID": 79268, + "Directional": false + }, + { + "SourceID": 79288, + "TargetID": 79287, + "Directional": false + }, + { + "SourceID": 79290, + "TargetID": 79291, + "Directional": false + }, + { + "SourceID": 79335, + "TargetID": 79336, + "Directional": false + } + ] + }, + { + "ID": 42, + "SourceStructureID": 79069, + "TargetStructureID": 153, + "Label": "79069-153 via Adherens from 79078 -> 79077, 79119 -> 79118, 79289 -> 79288", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79078, + "TargetID": 79077, + "Directional": false + }, + { + "SourceID": 79119, + "TargetID": 79118, + "Directional": false + }, + { + "SourceID": 79289, + "TargetID": 79288, + "Directional": false + } + ] + }, + { + "ID": 43, + "SourceStructureID": 79071, + "TargetStructureID": 153, + "Label": "79071-153 via Adherens from 79085 -> 79086, 79087 -> 79088, 79089 -> 79090, 79128 -> 79127, 79130 -> 79129, 79131 -> 79132, 79301 -> 79300, 79307 -> 79305", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79085, + "TargetID": 79086, + "Directional": false + }, + { + "SourceID": 79087, + "TargetID": 79088, + "Directional": false + }, + { + "SourceID": 79089, + "TargetID": 79090, + "Directional": false + }, + { + "SourceID": 79128, + "TargetID": 79127, + "Directional": false + }, + { + "SourceID": 79130, + "TargetID": 79129, + "Directional": false + }, + { + "SourceID": 79131, + "TargetID": 79132, + "Directional": false + }, + { + "SourceID": 79301, + "TargetID": 79300, + "Directional": false + }, + { + "SourceID": 79307, + "TargetID": 79305, + "Directional": false + } + ] + }, + { + "ID": 44, + "SourceStructureID": 153, + "TargetStructureID": 79072, + "Label": "153-79072 via Adherens from 79307 -> 79306", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79307, + "TargetID": 79306, + "Directional": false + } + ] + }, + { + "ID": 45, + "SourceStructureID": 153, + "TargetStructureID": 79091, + "Label": "153-79091 via Adherens from 79096 -> 79095, 79108 -> 79107, 79125 -> 79126, 79268 -> 79266, 79299 -> 79298, 79334 -> 79333", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79096, + "TargetID": 79095, + "Directional": false + }, + { + "SourceID": 79108, + "TargetID": 79107, + "Directional": false + }, + { + "SourceID": 79125, + "TargetID": 79126, + "Directional": false + }, + { + "SourceID": 79268, + "TargetID": 79266, + "Directional": false + }, + { + "SourceID": 79299, + "TargetID": 79298, + "Directional": false + }, + { + "SourceID": 79334, + "TargetID": 79333, + "Directional": false + } + ] + }, + { + "ID": 46, + "SourceStructureID": 161, + "TargetStructureID": 5502, + "Label": "161-5502 via Gap Junction from 27223 -> 27257", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 27223, + "TargetID": 27257, + "Directional": false + } + ] + }, + { + "ID": 47, + "SourceStructureID": 161, + "TargetStructureID": 11803, + "Label": "161-11803 via Gap Junction from 39074 -> 39073", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 39074, + "TargetID": 39073, + "Directional": false + } + ] + }, + { + "ID": 48, + "SourceStructureID": 598, + "TargetStructureID": 162, + "Label": "598-162 via Adherens from 70260 -> 70259", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70260, + "TargetID": 70259, + "Directional": false + } + ] + }, + { + "ID": 49, + "SourceStructureID": 606, + "TargetStructureID": 162, + "Label": "606-162 via Adherens from 51960 -> 51961", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 51960, + "TargetID": 51961, + "Directional": false + } + ] + }, + { + "ID": 50, + "SourceStructureID": 162, + "TargetStructureID": 5292, + "Label": "162-5292 via Unknown from 133975 -> 126332", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133975, + "TargetID": 126332, + "Directional": false + } + ] + }, + { + "ID": 51, + "SourceStructureID": 6203, + "TargetStructureID": 162, + "Label": "6203-162 via Unknown from 125787 -> 125788", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125787, + "TargetID": 125788, + "Directional": false + } + ] + }, + { + "ID": 52, + "SourceStructureID": 162, + "TargetStructureID": 20136, + "Label": "162-20136 via Adherens from 109344 -> 109345", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109344, + "TargetID": 109345, + "Directional": false + } + ] + }, + { + "ID": 53, + "SourceStructureID": 162, + "TargetStructureID": 20136, + "Label": "162-20136 via Unknown from 109353 -> 109352, 109357 -> 109358", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109353, + "TargetID": 109352, + "Directional": false + }, + { + "SourceID": 109357, + "TargetID": 109358, + "Directional": false + } + ] + }, + { + "ID": 54, + "SourceStructureID": 175, + "TargetStructureID": 165, + "Label": "175-165 via Gap Junction from 21725 -> 21717", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 21725, + "TargetID": 21717, + "Directional": false + } + ] + }, + { + "ID": 55, + "SourceStructureID": 478, + "TargetStructureID": 165, + "Label": "478-165 via Gap Junction from 19425 -> 21714", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 19425, + "TargetID": 21714, + "Directional": false + } + ] + }, + { + "ID": 56, + "SourceStructureID": 4567, + "TargetStructureID": 165, + "Label": "4567-165 via Gap Junction from 60859 -> 12550", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60859, + "TargetID": 12550, + "Directional": false + } + ] + }, + { + "ID": 57, + "SourceStructureID": 5544, + "TargetStructureID": 165, + "Label": "5544-165 via Gap Junction from 136926 -> 20845", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136926, + "TargetID": 20845, + "Directional": false + } + ] + }, + { + "ID": 58, + "SourceStructureID": 64690, + "TargetStructureID": 165, + "Label": "64690-165 via Gap Junction from 64694 -> 12592", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 64694, + "TargetID": 12592, + "Directional": false + } + ] + }, + { + "ID": 59, + "SourceStructureID": 166, + "TargetStructureID": 166, + "Label": "166-166 via Gap Junction from 60037 -> 60039, 84786 -> 62878", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60037, + "TargetID": 60039, + "Directional": false + }, + { + "SourceID": 84786, + "TargetID": 62878, + "Directional": false + } + ] + }, + { + "ID": 60, + "SourceStructureID": 166, + "TargetStructureID": 461, + "Label": "166-461 via Gap Junction from 49829 -> 49828, 120406 -> 120405", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49829, + "TargetID": 49828, + "Directional": false + }, + { + "SourceID": 120406, + "TargetID": 120405, + "Directional": false + } + ] + }, + { + "ID": 61, + "SourceStructureID": 166, + "TargetStructureID": 461, + "Label": "166-461 via Touch from 99164 -> 99163", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 99164, + "TargetID": 99163, + "Directional": false + } + ] + }, + { + "ID": 62, + "SourceStructureID": 483, + "TargetStructureID": 166, + "Label": "483-166 via Gap Junction from 49148 -> 49149, 70964 -> 70962", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49148, + "TargetID": 49149, + "Directional": false + }, + { + "SourceID": 70964, + "TargetID": 70962, + "Directional": false + } + ] + }, + { + "ID": 63, + "SourceStructureID": 593, + "TargetStructureID": 166, + "Label": "593-166 via Gap Junction from 59690 -> 60010, 60047 -> 60046", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59690, + "TargetID": 60010, + "Directional": false + }, + { + "SourceID": 60047, + "TargetID": 60046, + "Directional": false + } + ] + }, + { + "ID": 64, + "SourceStructureID": 166, + "TargetStructureID": 3257, + "Label": "166-3257 via Gap Junction from 15455 -> 15454, 59879 -> 59880, 71485 -> 71484, 71931 -> 71930", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 15455, + "TargetID": 15454, + "Directional": false + }, + { + "SourceID": 59879, + "TargetID": 59880, + "Directional": false + }, + { + "SourceID": 71485, + "TargetID": 71484, + "Directional": false + }, + { + "SourceID": 71931, + "TargetID": 71930, + "Directional": false + } + ] + }, + { + "ID": 65, + "SourceStructureID": 166, + "TargetStructureID": 4570, + "Label": "166-4570 via Gap Junction from 131394 -> 158463", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131394, + "TargetID": 158463, + "Directional": false + } + ] + }, + { + "ID": 66, + "SourceStructureID": 5437, + "TargetStructureID": 166, + "Label": "5437-166 via Unknown from 120349 -> 120350", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120349, + "TargetID": 120350, + "Directional": false + } + ] + }, + { + "ID": 67, + "SourceStructureID": 5635, + "TargetStructureID": 166, + "Label": "5635-166 via Adherens from 131174 -> 131173", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131174, + "TargetID": 131173, + "Directional": false + } + ] + }, + { + "ID": 68, + "SourceStructureID": 5635, + "TargetStructureID": 166, + "Label": "5635-166 via Gap Junction from 55950 -> 55949, 59899 -> 59900", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55950, + "TargetID": 55949, + "Directional": false + }, + { + "SourceID": 59899, + "TargetID": 59900, + "Directional": false + } + ] + }, + { + "ID": 69, + "SourceStructureID": 6115, + "TargetStructureID": 166, + "Label": "6115-166 via Gap Junction from 59987 -> 59986", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59987, + "TargetID": 59986, + "Directional": false + } + ] + }, + { + "ID": 70, + "SourceStructureID": 166, + "TargetStructureID": 6169, + "Label": "166-6169 via Gap Junction from 16163 -> 16160, 16245 -> 16246, 59969 -> 59967, 59981 -> 59982, 59990 -> 59989, 60001 -> 60002, 60041 -> 60040, 60044 -> 60043", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16163, + "TargetID": 16160, + "Directional": false + }, + { + "SourceID": 16245, + "TargetID": 16246, + "Directional": false + }, + { + "SourceID": 59969, + "TargetID": 59967, + "Directional": false + }, + { + "SourceID": 59981, + "TargetID": 59982, + "Directional": false + }, + { + "SourceID": 59990, + "TargetID": 59989, + "Directional": false + }, + { + "SourceID": 60001, + "TargetID": 60002, + "Directional": false + }, + { + "SourceID": 60041, + "TargetID": 60040, + "Directional": false + }, + { + "SourceID": 60044, + "TargetID": 60043, + "Directional": false + } + ] + }, + { + "ID": 71, + "SourceStructureID": 8579, + "TargetStructureID": 166, + "Label": "8579-166 via Adherens from 132997 -> 132998", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132997, + "TargetID": 132998, + "Directional": false + } + ] + }, + { + "ID": 72, + "SourceStructureID": 166, + "TargetStructureID": 29198, + "Label": "166-29198 via Unknown from 94756 -> 94757", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94756, + "TargetID": 94757, + "Directional": false + } + ] + }, + { + "ID": 73, + "SourceStructureID": 39596, + "TargetStructureID": 166, + "Label": "39596-166 via Unknown from 120351 -> 120352", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120351, + "TargetID": 120352, + "Directional": false + } + ] + }, + { + "ID": 74, + "SourceStructureID": 66278, + "TargetStructureID": 166, + "Label": "66278-166 via Adherens from 81898 -> 81899, 81901 -> 81900", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81898, + "TargetID": 81899, + "Directional": false + }, + { + "SourceID": 81901, + "TargetID": 81900, + "Directional": false + } + ] + }, + { + "ID": 75, + "SourceStructureID": 66731, + "TargetStructureID": 166, + "Label": "66731-166 via Adherens from 66738 -> 66739", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66738, + "TargetID": 66739, + "Directional": false + } + ] + }, + { + "ID": 76, + "SourceStructureID": 166, + "TargetStructureID": 71426, + "Label": "166-71426 via Unknown from 120345 -> 120346", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120345, + "TargetID": 120346, + "Directional": false + } + ] + }, + { + "ID": 77, + "SourceStructureID": 71438, + "TargetStructureID": 166, + "Label": "71438-166 via Adherens from 71451 -> 71450", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71451, + "TargetID": 71450, + "Directional": false + } + ] + }, + { + "ID": 78, + "SourceStructureID": 71445, + "TargetStructureID": 166, + "Label": "71445-166 via Adherens from 71459 -> 71460", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71459, + "TargetID": 71460, + "Directional": false + } + ] + }, + { + "ID": 79, + "SourceStructureID": 71825, + "TargetStructureID": 166, + "Label": "71825-166 via Gap Junction from 71826 -> 71824", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71826, + "TargetID": 71824, + "Directional": false + } + ] + }, + { + "ID": 80, + "SourceStructureID": 90829, + "TargetStructureID": 166, + "Label": "90829-166 via Adherens from 90833 -> 90834", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90833, + "TargetID": 90834, + "Directional": false + } + ] + }, + { + "ID": 81, + "SourceStructureID": 166, + "TargetStructureID": 135052, + "Label": "166-135052 via Gap Junction from 132042 -> 135053", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132042, + "TargetID": 135053, + "Directional": false + } + ] + }, + { + "ID": 82, + "SourceStructureID": 168, + "TargetStructureID": 168, + "Label": "168-168 via Gap Junction from 93063 -> 93062", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93063, + "TargetID": 93062, + "Directional": false + } + ] + }, + { + "ID": 83, + "SourceStructureID": 168, + "TargetStructureID": 170, + "Label": "168-170 via Gap Junction from 88340 -> 88339", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88340, + "TargetID": 88339, + "Directional": false + } + ] + }, + { + "ID": 84, + "SourceStructureID": 168, + "TargetStructureID": 176, + "Label": "168-176 via Gap Junction from 119633 -> 119632", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119633, + "TargetID": 119632, + "Directional": false + } + ] + }, + { + "ID": 85, + "SourceStructureID": 595, + "TargetStructureID": 168, + "Label": "595-168 via Adherens from 81950 -> 81949, 82491 -> 82492, 91198 -> 91197, 135697 -> 135696", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81950, + "TargetID": 81949, + "Directional": false + }, + { + "SourceID": 82491, + "TargetID": 82492, + "Directional": false + }, + { + "SourceID": 91198, + "TargetID": 91197, + "Directional": false + }, + { + "SourceID": 135697, + "TargetID": 135696, + "Directional": false + } + ] + }, + { + "ID": 86, + "SourceStructureID": 168, + "TargetStructureID": 595, + "Label": "168-595 via Gap Junction from 50954 -> 50955, 81947 -> 81948, 82489 -> 82490, 90915 -> 90914, 91135 -> 91136, 91200 -> 91199, 91238 -> 91239, 91752 -> 91753, 92613 -> 92612, 92769 -> 92770, 92821 -> 92822, 94436 -> 91248, 125198 -> 125199, 125725 -> 125724", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50954, + "TargetID": 50955, + "Directional": false + }, + { + "SourceID": 81947, + "TargetID": 81948, + "Directional": false + }, + { + "SourceID": 82489, + "TargetID": 82490, + "Directional": false + }, + { + "SourceID": 90915, + "TargetID": 90914, + "Directional": false + }, + { + "SourceID": 91135, + "TargetID": 91136, + "Directional": false + }, + { + "SourceID": 91200, + "TargetID": 91199, + "Directional": false + }, + { + "SourceID": 91238, + "TargetID": 91239, + "Directional": false + }, + { + "SourceID": 91752, + "TargetID": 91753, + "Directional": false + }, + { + "SourceID": 92613, + "TargetID": 92612, + "Directional": false + }, + { + "SourceID": 92769, + "TargetID": 92770, + "Directional": false + }, + { + "SourceID": 92821, + "TargetID": 92822, + "Directional": false + }, + { + "SourceID": 94436, + "TargetID": 91248, + "Directional": false + }, + { + "SourceID": 125198, + "TargetID": 125199, + "Directional": false + }, + { + "SourceID": 125725, + "TargetID": 125724, + "Directional": false + } + ] + }, + { + "ID": 87, + "SourceStructureID": 168, + "TargetStructureID": 3116, + "Label": "168-3116 via Gap Junction from 92532 -> 92533", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92532, + "TargetID": 92533, + "Directional": false + } + ] + }, + { + "ID": 88, + "SourceStructureID": 168, + "TargetStructureID": 3257, + "Label": "168-3257 via Gap Junction from 4172 -> 14932, 4210 -> 14931, 4334 -> 92504, 6701 -> 6702, 9123 -> 4202, 34080 -> 34081, 39016 -> 39015, 49161 -> 49162, 50963 -> 49164, 56980 -> 4288, 56982 -> 56981, 92505 -> 92506, 92537 -> 92538, 92746 -> 92747, 92756 -> 92755, 92792 -> 92791", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 4172, + "TargetID": 14932, + "Directional": false + }, + { + "SourceID": 4210, + "TargetID": 14931, + "Directional": false + }, + { + "SourceID": 4334, + "TargetID": 92504, + "Directional": false + }, + { + "SourceID": 6701, + "TargetID": 6702, + "Directional": false + }, + { + "SourceID": 9123, + "TargetID": 4202, + "Directional": false + }, + { + "SourceID": 34080, + "TargetID": 34081, + "Directional": false + }, + { + "SourceID": 39016, + "TargetID": 39015, + "Directional": false + }, + { + "SourceID": 49161, + "TargetID": 49162, + "Directional": false + }, + { + "SourceID": 50963, + "TargetID": 49164, + "Directional": false + }, + { + "SourceID": 56980, + "TargetID": 4288, + "Directional": false + }, + { + "SourceID": 56982, + "TargetID": 56981, + "Directional": false + }, + { + "SourceID": 92505, + "TargetID": 92506, + "Directional": false + }, + { + "SourceID": 92537, + "TargetID": 92538, + "Directional": false + }, + { + "SourceID": 92746, + "TargetID": 92747, + "Directional": false + }, + { + "SourceID": 92756, + "TargetID": 92755, + "Directional": false + }, + { + "SourceID": 92792, + "TargetID": 92791, + "Directional": false + } + ] + }, + { + "ID": 89, + "SourceStructureID": 168, + "TargetStructureID": 4569, + "Label": "168-4569 via Gap Junction from 119045 -> 119046, 119056 -> 119057", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119045, + "TargetID": 119046, + "Directional": false + }, + { + "SourceID": 119056, + "TargetID": 119057, + "Directional": false + } + ] + }, + { + "ID": 90, + "SourceStructureID": 168, + "TargetStructureID": 4835, + "Label": "168-4835 via Gap Junction from 92767 -> 92766", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92767, + "TargetID": 92766, + "Directional": false + } + ] + }, + { + "ID": 91, + "SourceStructureID": 5487, + "TargetStructureID": 168, + "Label": "5487-168 via Adherens from 92758 -> 50117, 119053 -> 119052", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92758, + "TargetID": 50117, + "Directional": false + }, + { + "SourceID": 119053, + "TargetID": 119052, + "Directional": false + } + ] + }, + { + "ID": 92, + "SourceStructureID": 5530, + "TargetStructureID": 168, + "Label": "5530-168 via Adherens from 82010 -> 82011", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82010, + "TargetID": 82011, + "Directional": false + } + ] + }, + { + "ID": 93, + "SourceStructureID": 168, + "TargetStructureID": 5860, + "Label": "168-5860 via Gap Junction from 50947 -> 29862", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50947, + "TargetID": 29862, + "Directional": false + } + ] + }, + { + "ID": 94, + "SourceStructureID": 7564, + "TargetStructureID": 168, + "Label": "7564-168 via Gap Junction from 29685 -> 4252, 50939 -> 50938, 125723 -> 29686", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29685, + "TargetID": 4252, + "Directional": false + }, + { + "SourceID": 50939, + "TargetID": 50938, + "Directional": false + }, + { + "SourceID": 125723, + "TargetID": 29686, + "Directional": false + } + ] + }, + { + "ID": 95, + "SourceStructureID": 168, + "TargetStructureID": 7576, + "Label": "168-7576 via Adherens from 54837 -> 54836, 55931 -> 55932", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54837, + "TargetID": 54836, + "Directional": false + }, + { + "SourceID": 55931, + "TargetID": 55932, + "Directional": false + } + ] + }, + { + "ID": 96, + "SourceStructureID": 7576, + "TargetStructureID": 168, + "Label": "7576-168 via Gap Junction from 55004 -> 55005", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55004, + "TargetID": 55005, + "Directional": false + } + ] + }, + { + "ID": 97, + "SourceStructureID": 7576, + "TargetStructureID": 168, + "Label": "7576-168 via Unknown from 54975 -> 54976", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 54975, + "TargetID": 54976, + "Directional": false + } + ] + }, + { + "ID": 98, + "SourceStructureID": 168, + "TargetStructureID": 8720, + "Label": "168-8720 via Unknown from 82014 -> 82015, 92894 -> 92896", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82014, + "TargetID": 82015, + "Directional": false + }, + { + "SourceID": 92894, + "TargetID": 92896, + "Directional": false + } + ] + }, + { + "ID": 99, + "SourceStructureID": 168, + "TargetStructureID": 21299, + "Label": "168-21299 via Gap Junction from 30062 -> 30061, 35829 -> 35828, 48831 -> 48830, 49062 -> 48872, 50940 -> 50941, 56969 -> 56970, 91584 -> 91583, 91626 -> 91625, 91636 -> 91635", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 30062, + "TargetID": 30061, + "Directional": false + }, + { + "SourceID": 35829, + "TargetID": 35828, + "Directional": false + }, + { + "SourceID": 48831, + "TargetID": 48830, + "Directional": false + }, + { + "SourceID": 49062, + "TargetID": 48872, + "Directional": false + }, + { + "SourceID": 50940, + "TargetID": 50941, + "Directional": false + }, + { + "SourceID": 56969, + "TargetID": 56970, + "Directional": false + }, + { + "SourceID": 91584, + "TargetID": 91583, + "Directional": false + }, + { + "SourceID": 91626, + "TargetID": 91625, + "Directional": false + }, + { + "SourceID": 91636, + "TargetID": 91635, + "Directional": false + } + ] + }, + { + "ID": 100, + "SourceStructureID": 21299, + "TargetStructureID": 168, + "Label": "21299-168 via Touch from 91664 -> 91663", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 91664, + "TargetID": 91663, + "Directional": false + } + ] + }, + { + "ID": 101, + "SourceStructureID": 34055, + "TargetStructureID": 168, + "Label": "34055-168 via Adherens from 82001 -> 82000", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82001, + "TargetID": 82000, + "Directional": false + } + ] + }, + { + "ID": 102, + "SourceStructureID": 54021, + "TargetStructureID": 168, + "Label": "54021-168 via Gap Junction from 115666 -> 54020", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115666, + "TargetID": 54020, + "Directional": false + } + ] + }, + { + "ID": 103, + "SourceStructureID": 168, + "TargetStructureID": 81917, + "Label": "168-81917 via Adherens from 81938 -> 81937", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81938, + "TargetID": 81937, + "Directional": false + } + ] + }, + { + "ID": 104, + "SourceStructureID": 168, + "TargetStructureID": 81917, + "Label": "168-81917 via Gap Junction from 81933 -> 81934, 81936 -> 81935", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 81933, + "TargetID": 81934, + "Directional": false + }, + { + "SourceID": 81936, + "TargetID": 81935, + "Directional": false + } + ] + }, + { + "ID": 105, + "SourceStructureID": 168, + "TargetStructureID": 81924, + "Label": "168-81924 via Unknown from 81959 -> 81960", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81959, + "TargetID": 81960, + "Directional": false + } + ] + }, + { + "ID": 106, + "SourceStructureID": 168, + "TargetStructureID": 82018, + "Label": "168-82018 via Adherens from 82020 -> 82019", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82020, + "TargetID": 82019, + "Directional": false + } + ] + }, + { + "ID": 107, + "SourceStructureID": 91178, + "TargetStructureID": 168, + "Label": "91178-168 via Adherens from 92608 -> 92609", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92608, + "TargetID": 92609, + "Directional": false + } + ] + }, + { + "ID": 108, + "SourceStructureID": 168, + "TargetStructureID": 91593, + "Label": "168-91593 via Adherens from 92592 -> 92591", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92592, + "TargetID": 92591, + "Directional": false + } + ] + }, + { + "ID": 109, + "SourceStructureID": 91742, + "TargetStructureID": 168, + "Label": "91742-168 via Adherens from 92772 -> 92771", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92772, + "TargetID": 92771, + "Directional": false + } + ] + }, + { + "ID": 110, + "SourceStructureID": 168, + "TargetStructureID": 92530, + "Label": "168-92530 via Unknown from 92529 -> 92531", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92529, + "TargetID": 92531, + "Directional": false + } + ] + }, + { + "ID": 111, + "SourceStructureID": 92734, + "TargetStructureID": 168, + "Label": "92734-168 via Adherens from 92735 -> 92733", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92735, + "TargetID": 92733, + "Directional": false + } + ] + }, + { + "ID": 112, + "SourceStructureID": 92780, + "TargetStructureID": 168, + "Label": "92780-168 via Unknown from 92781 -> 92779", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92781, + "TargetID": 92779, + "Directional": false + } + ] + }, + { + "ID": 113, + "SourceStructureID": 92789, + "TargetStructureID": 168, + "Label": "92789-168 via Gap Junction from 92790 -> 92788", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92790, + "TargetID": 92788, + "Directional": false + } + ] + }, + { + "ID": 114, + "SourceStructureID": 168, + "TargetStructureID": 93065, + "Label": "168-93065 via Unknown from 93064 -> 93066", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93064, + "TargetID": 93066, + "Directional": false + } + ] + }, + { + "ID": 115, + "SourceStructureID": 170, + "TargetStructureID": 170, + "Label": "170-170 via Adherens from 92499 -> 92500", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92499, + "TargetID": 92500, + "Directional": false + } + ] + }, + { + "ID": 116, + "SourceStructureID": 170, + "TargetStructureID": 170, + "Label": "170-170 via Gap Junction from 1306 -> 89715, 89214 -> 1354, 90300 -> 90301, 90321 -> 90320, 90611 -> 90612, 134000 -> 134001", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 1306, + "TargetID": 89715, + "Directional": false + }, + { + "SourceID": 89214, + "TargetID": 1354, + "Directional": false + }, + { + "SourceID": 90300, + "TargetID": 90301, + "Directional": false + }, + { + "SourceID": 90321, + "TargetID": 90320, + "Directional": false + }, + { + "SourceID": 90611, + "TargetID": 90612, + "Directional": false + }, + { + "SourceID": 134000, + "TargetID": 134001, + "Directional": false + } + ] + }, + { + "ID": 117, + "SourceStructureID": 170, + "TargetStructureID": 324, + "Label": "170-324 via Adherens from 135518 -> 135517", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135518, + "TargetID": 135517, + "Directional": false + } + ] + }, + { + "ID": 118, + "SourceStructureID": 324, + "TargetStructureID": 170, + "Label": "324-170 via Gap Junction from 16014 -> 15994, 30752 -> 10789, 43318 -> 43317", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16014, + "TargetID": 15994, + "Directional": false + }, + { + "SourceID": 30752, + "TargetID": 10789, + "Directional": false + }, + { + "SourceID": 43318, + "TargetID": 43317, + "Directional": false + } + ] + }, + { + "ID": 119, + "SourceStructureID": 330, + "TargetStructureID": 170, + "Label": "330-170 via Gap Junction from 38575 -> 89027, 89211 -> 89212", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38575, + "TargetID": 89027, + "Directional": false + }, + { + "SourceID": 89211, + "TargetID": 89212, + "Directional": false + } + ] + }, + { + "ID": 120, + "SourceStructureID": 364, + "TargetStructureID": 170, + "Label": "364-170 via Gap Junction from 89189 -> 89188, 90541 -> 90542, 92473 -> 89395, 133998 -> 133999", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89189, + "TargetID": 89188, + "Directional": false + }, + { + "SourceID": 90541, + "TargetID": 90542, + "Directional": false + }, + { + "SourceID": 92473, + "TargetID": 89395, + "Directional": false + }, + { + "SourceID": 133998, + "TargetID": 133999, + "Directional": false + } + ] + }, + { + "ID": 121, + "SourceStructureID": 366, + "TargetStructureID": 170, + "Label": "366-170 via Touch from 135522 -> 135521", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 135522, + "TargetID": 135521, + "Directional": false + } + ] + }, + { + "ID": 122, + "SourceStructureID": 170, + "TargetStructureID": 428, + "Label": "170-428 via Touch from 90456 -> 90457", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 90456, + "TargetID": 90457, + "Directional": false + } + ] + }, + { + "ID": 123, + "SourceStructureID": 476, + "TargetStructureID": 170, + "Label": "476-170 via Gap Junction from 14970 -> 15998, 15996 -> 14972", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14970, + "TargetID": 15998, + "Directional": false + }, + { + "SourceID": 15996, + "TargetID": 14972, + "Directional": false + } + ] + }, + { + "ID": 124, + "SourceStructureID": 170, + "TargetStructureID": 595, + "Label": "170-595 via Adherens from 88342 -> 88341, 88509 -> 88508, 88531 -> 88532", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88342, + "TargetID": 88341, + "Directional": false + }, + { + "SourceID": 88509, + "TargetID": 88508, + "Directional": false + }, + { + "SourceID": 88531, + "TargetID": 88532, + "Directional": false + } + ] + }, + { + "ID": 125, + "SourceStructureID": 595, + "TargetStructureID": 170, + "Label": "595-170 via Gap Junction from 46640 -> 1195, 47919 -> 47804, 89084 -> 1249, 92687 -> 92688, 133939 -> 133940, 133942 -> 133941", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46640, + "TargetID": 1195, + "Directional": false + }, + { + "SourceID": 47919, + "TargetID": 47804, + "Directional": false + }, + { + "SourceID": 89084, + "TargetID": 1249, + "Directional": false + }, + { + "SourceID": 92687, + "TargetID": 92688, + "Directional": false + }, + { + "SourceID": 133939, + "TargetID": 133940, + "Directional": false + }, + { + "SourceID": 133942, + "TargetID": 133941, + "Directional": false + } + ] + }, + { + "ID": 126, + "SourceStructureID": 606, + "TargetStructureID": 170, + "Label": "606-170 via Adherens from 47809 -> 47808, 53196 -> 53197, 53363 -> 90268, 53367 -> 53368", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 47809, + "TargetID": 47808, + "Directional": false + }, + { + "SourceID": 53196, + "TargetID": 53197, + "Directional": false + }, + { + "SourceID": 53363, + "TargetID": 90268, + "Directional": false + }, + { + "SourceID": 53367, + "TargetID": 53368, + "Directional": false + } + ] + }, + { + "ID": 127, + "SourceStructureID": 170, + "TargetStructureID": 606, + "Label": "170-606 via Unknown from 133908 -> 133909", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133908, + "TargetID": 133909, + "Directional": false + } + ] + }, + { + "ID": 128, + "SourceStructureID": 170, + "TargetStructureID": 3116, + "Label": "170-3116 via Adherens from 83178 -> 46568, 89673 -> 89674, 90267 -> 90266, 90293 -> 90291, 90295 -> 90294, 90434 -> 90433", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83178, + "TargetID": 46568, + "Directional": false + }, + { + "SourceID": 89673, + "TargetID": 89674, + "Directional": false + }, + { + "SourceID": 90267, + "TargetID": 90266, + "Directional": false + }, + { + "SourceID": 90293, + "TargetID": 90291, + "Directional": false + }, + { + "SourceID": 90295, + "TargetID": 90294, + "Directional": false + }, + { + "SourceID": 90434, + "TargetID": 90433, + "Directional": false + } + ] + }, + { + "ID": 129, + "SourceStructureID": 3116, + "TargetStructureID": 170, + "Label": "3116-170 via Gap Junction from 43553 -> 43551, 43558 -> 1307, 46553 -> 1387, 89722 -> 89723, 90264 -> 90263, 90265 -> 90262, 90405 -> 90406, 134002 -> 134003", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 43553, + "TargetID": 43551, + "Directional": false + }, + { + "SourceID": 43558, + "TargetID": 1307, + "Directional": false + }, + { + "SourceID": 46553, + "TargetID": 1387, + "Directional": false + }, + { + "SourceID": 89722, + "TargetID": 89723, + "Directional": false + }, + { + "SourceID": 90264, + "TargetID": 90263, + "Directional": false + }, + { + "SourceID": 90265, + "TargetID": 90262, + "Directional": false + }, + { + "SourceID": 90405, + "TargetID": 90406, + "Directional": false + }, + { + "SourceID": 134002, + "TargetID": 134003, + "Directional": false + } + ] + }, + { + "ID": 130, + "SourceStructureID": 3257, + "TargetStructureID": 170, + "Label": "3257-170 via Gap Junction from 86963 -> 1114", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 86963, + "TargetID": 1114, + "Directional": false + } + ] + }, + { + "ID": 131, + "SourceStructureID": 170, + "TargetStructureID": 4569, + "Label": "170-4569 via Gap Junction from 43552 -> 52519, 90486 -> 90485", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 43552, + "TargetID": 52519, + "Directional": false + }, + { + "SourceID": 90486, + "TargetID": 90485, + "Directional": false + } + ] + }, + { + "ID": 132, + "SourceStructureID": 170, + "TargetStructureID": 5481, + "Label": "170-5481 via Adherens from 90624 -> 90625", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90624, + "TargetID": 90625, + "Directional": false + } + ] + }, + { + "ID": 133, + "SourceStructureID": 170, + "TargetStructureID": 5530, + "Label": "170-5530 via Adherens from 135540 -> 135539, 135542 -> 135541", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135540, + "TargetID": 135539, + "Directional": false + }, + { + "SourceID": 135542, + "TargetID": 135541, + "Directional": false + } + ] + }, + { + "ID": 134, + "SourceStructureID": 5530, + "TargetStructureID": 170, + "Label": "5530-170 via Gap Junction from 45398 -> 45397, 47934 -> 47256, 74897 -> 74754, 75496 -> 82529, 76746 -> 76745, 82374 -> 75528, 82484 -> 82485", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45398, + "TargetID": 45397, + "Directional": false + }, + { + "SourceID": 47934, + "TargetID": 47256, + "Directional": false + }, + { + "SourceID": 74897, + "TargetID": 74754, + "Directional": false + }, + { + "SourceID": 75496, + "TargetID": 82529, + "Directional": false + }, + { + "SourceID": 76746, + "TargetID": 76745, + "Directional": false + }, + { + "SourceID": 82374, + "TargetID": 75528, + "Directional": false + }, + { + "SourceID": 82484, + "TargetID": 82485, + "Directional": false + } + ] + }, + { + "ID": 135, + "SourceStructureID": 7564, + "TargetStructureID": 170, + "Label": "7564-170 via Adherens from 135544 -> 135545", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135544, + "TargetID": 135545, + "Directional": false + } + ] + }, + { + "ID": 136, + "SourceStructureID": 7564, + "TargetStructureID": 170, + "Label": "7564-170 via Gap Junction from 82482 -> 82483, 89208 -> 89209, 89751 -> 89752, 90072 -> 90073, 92488 -> 92487, 92491 -> 92490", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 82482, + "TargetID": 82483, + "Directional": false + }, + { + "SourceID": 89208, + "TargetID": 89209, + "Directional": false + }, + { + "SourceID": 89751, + "TargetID": 89752, + "Directional": false + }, + { + "SourceID": 90072, + "TargetID": 90073, + "Directional": false + }, + { + "SourceID": 92488, + "TargetID": 92487, + "Directional": false + }, + { + "SourceID": 92491, + "TargetID": 92490, + "Directional": false + } + ] + }, + { + "ID": 137, + "SourceStructureID": 9769, + "TargetStructureID": 170, + "Label": "9769-170 via Unknown from 88483 -> 88482, 88755 -> 88754, 89731 -> 89732, 89733 -> 89734", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88483, + "TargetID": 88482, + "Directional": false + }, + { + "SourceID": 88755, + "TargetID": 88754, + "Directional": false + }, + { + "SourceID": 89731, + "TargetID": 89732, + "Directional": false + }, + { + "SourceID": 89733, + "TargetID": 89734, + "Directional": false + } + ] + }, + { + "ID": 138, + "SourceStructureID": 32920, + "TargetStructureID": 170, + "Label": "32920-170 via Adherens from 88456 -> 87127", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88456, + "TargetID": 87127, + "Directional": false + } + ] + }, + { + "ID": 139, + "SourceStructureID": 170, + "TargetStructureID": 35653, + "Label": "170-35653 via Adherens from 88363 -> 88364", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88363, + "TargetID": 88364, + "Directional": false + } + ] + }, + { + "ID": 140, + "SourceStructureID": 38605, + "TargetStructureID": 170, + "Label": "38605-170 via Unknown from 89468 -> 89467", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89468, + "TargetID": 89467, + "Directional": false + } + ] + }, + { + "ID": 141, + "SourceStructureID": 40439, + "TargetStructureID": 170, + "Label": "40439-170 via Unknown from 88389 -> 88387", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88389, + "TargetID": 88387, + "Directional": false + } + ] + }, + { + "ID": 142, + "SourceStructureID": 71882, + "TargetStructureID": 170, + "Label": "71882-170 via Unknown from 90417 -> 89197", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90417, + "TargetID": 89197, + "Directional": false + } + ] + }, + { + "ID": 143, + "SourceStructureID": 86315, + "TargetStructureID": 170, + "Label": "86315-170 via Adherens from 116720 -> 88520", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116720, + "TargetID": 88520, + "Directional": false + } + ] + }, + { + "ID": 144, + "SourceStructureID": 88329, + "TargetStructureID": 170, + "Label": "88329-170 via Adherens from 88330 -> 88331", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88330, + "TargetID": 88331, + "Directional": false + } + ] + }, + { + "ID": 145, + "SourceStructureID": 170, + "TargetStructureID": 88343, + "Label": "170-88343 via Unknown from 88357 -> 88358", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88357, + "TargetID": 88358, + "Directional": false + } + ] + }, + { + "ID": 146, + "SourceStructureID": 170, + "TargetStructureID": 88424, + "Label": "170-88424 via Adherens from 88441 -> 88442", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88441, + "TargetID": 88442, + "Directional": false + } + ] + }, + { + "ID": 147, + "SourceStructureID": 170, + "TargetStructureID": 88446, + "Label": "170-88446 via Unknown from 88448 -> 88449", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88448, + "TargetID": 88449, + "Directional": false + } + ] + }, + { + "ID": 148, + "SourceStructureID": 88470, + "TargetStructureID": 170, + "Label": "88470-170 via Unknown from 88471 -> 88472", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88471, + "TargetID": 88472, + "Directional": false + } + ] + }, + { + "ID": 149, + "SourceStructureID": 88546, + "TargetStructureID": 170, + "Label": "88546-170 via Adherens from 88548 -> 88549", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88548, + "TargetID": 88549, + "Directional": false + } + ] + }, + { + "ID": 150, + "SourceStructureID": 170, + "TargetStructureID": 88550, + "Label": "170-88550 via Unknown from 88772 -> 88771", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88772, + "TargetID": 88771, + "Directional": false + } + ] + }, + { + "ID": 151, + "SourceStructureID": 88689, + "TargetStructureID": 170, + "Label": "88689-170 via Unknown from 88701 -> 88700", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88701, + "TargetID": 88700, + "Directional": false + } + ] + }, + { + "ID": 152, + "SourceStructureID": 170, + "TargetStructureID": 88692, + "Label": "170-88692 via Adherens from 88699 -> 88698", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88699, + "TargetID": 88698, + "Directional": false + } + ] + }, + { + "ID": 153, + "SourceStructureID": 170, + "TargetStructureID": 88709, + "Label": "170-88709 via Adherens from 88708 -> 88710", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88708, + "TargetID": 88710, + "Directional": false + } + ] + }, + { + "ID": 154, + "SourceStructureID": 170, + "TargetStructureID": 88711, + "Label": "170-88711 via Adherens from 88713 -> 88714", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88713, + "TargetID": 88714, + "Directional": false + } + ] + }, + { + "ID": 155, + "SourceStructureID": 88733, + "TargetStructureID": 170, + "Label": "88733-170 via Adherens from 88734 -> 88735", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88734, + "TargetID": 88735, + "Directional": false + } + ] + }, + { + "ID": 156, + "SourceStructureID": 170, + "TargetStructureID": 88736, + "Label": "170-88736 via Unknown from 88746 -> 88745", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88746, + "TargetID": 88745, + "Directional": false + } + ] + }, + { + "ID": 157, + "SourceStructureID": 170, + "TargetStructureID": 88947, + "Label": "170-88947 via Unknown from 88953 -> 88952", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88953, + "TargetID": 88952, + "Directional": false + } + ] + }, + { + "ID": 158, + "SourceStructureID": 88986, + "TargetStructureID": 170, + "Label": "88986-170 via Unknown from 88994 -> 88995", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88994, + "TargetID": 88995, + "Directional": false + } + ] + }, + { + "ID": 159, + "SourceStructureID": 88996, + "TargetStructureID": 170, + "Label": "88996-170 via Adherens from 89003 -> 89004", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89003, + "TargetID": 89004, + "Directional": false + } + ] + }, + { + "ID": 160, + "SourceStructureID": 89012, + "TargetStructureID": 170, + "Label": "89012-170 via Adherens from 89014 -> 89013", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89014, + "TargetID": 89013, + "Directional": false + } + ] + }, + { + "ID": 161, + "SourceStructureID": 170, + "TargetStructureID": 89073, + "Label": "170-89073 via Unknown from 89070 -> 89077, 89080 -> 89081", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89070, + "TargetID": 89077, + "Directional": false + }, + { + "SourceID": 89080, + "TargetID": 89081, + "Directional": false + } + ] + }, + { + "ID": 162, + "SourceStructureID": 89086, + "TargetStructureID": 170, + "Label": "89086-170 via Unknown from 89174 -> 89172", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89174, + "TargetID": 89172, + "Directional": false + } + ] + }, + { + "ID": 163, + "SourceStructureID": 170, + "TargetStructureID": 89181, + "Label": "170-89181 via Adherens from 89183 -> 89182", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89183, + "TargetID": 89182, + "Directional": false + } + ] + }, + { + "ID": 164, + "SourceStructureID": 170, + "TargetStructureID": 89190, + "Label": "170-89190 via Adherens from 89192 -> 89191", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89192, + "TargetID": 89191, + "Directional": false + } + ] + }, + { + "ID": 165, + "SourceStructureID": 89199, + "TargetStructureID": 170, + "Label": "89199-170 via Adherens from 135537 -> 135536", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135537, + "TargetID": 135536, + "Directional": false + } + ] + }, + { + "ID": 166, + "SourceStructureID": 170, + "TargetStructureID": 89225, + "Label": "170-89225 via Postsynapse from 89226 -> 89227", + "Type": "Postsynapse", + "Directional": false, + "Links": [ + { + "SourceID": 89226, + "TargetID": 89227, + "Directional": false + } + ] + }, + { + "ID": 167, + "SourceStructureID": 170, + "TargetStructureID": 89228, + "Label": "170-89228 via Unknown from 89230 -> 89229", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89230, + "TargetID": 89229, + "Directional": false + } + ] + }, + { + "ID": 168, + "SourceStructureID": 89232, + "TargetStructureID": 170, + "Label": "89232-170 via Unknown from 89234 -> 89235", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89234, + "TargetID": 89235, + "Directional": false + } + ] + }, + { + "ID": 169, + "SourceStructureID": 170, + "TargetStructureID": 89359, + "Label": "170-89359 via Adherens from 89364 -> 89363, 89365 -> 89366", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89364, + "TargetID": 89363, + "Directional": false + }, + { + "SourceID": 89365, + "TargetID": 89366, + "Directional": false + } + ] + }, + { + "ID": 170, + "SourceStructureID": 170, + "TargetStructureID": 89377, + "Label": "170-89377 via Adherens from 89380 -> 89381", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89380, + "TargetID": 89381, + "Directional": false + } + ] + }, + { + "ID": 171, + "SourceStructureID": 170, + "TargetStructureID": 89457, + "Label": "170-89457 via Adherens from 89458 -> 89459", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89458, + "TargetID": 89459, + "Directional": false + } + ] + }, + { + "ID": 172, + "SourceStructureID": 89460, + "TargetStructureID": 170, + "Label": "89460-170 via Adherens from 89461 -> 89462", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89461, + "TargetID": 89462, + "Directional": false + } + ] + }, + { + "ID": 173, + "SourceStructureID": 170, + "TargetStructureID": 89501, + "Label": "170-89501 via Adherens from 89500 -> 89502, 89510 -> 89509", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89500, + "TargetID": 89502, + "Directional": false + }, + { + "SourceID": 89510, + "TargetID": 89509, + "Directional": false + } + ] + }, + { + "ID": 174, + "SourceStructureID": 89503, + "TargetStructureID": 170, + "Label": "89503-170 via Adherens from 89504 -> 88718", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89504, + "TargetID": 88718, + "Directional": false + } + ] + }, + { + "ID": 175, + "SourceStructureID": 170, + "TargetStructureID": 89511, + "Label": "170-89511 via Adherens from 89512 -> 89513", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89512, + "TargetID": 89513, + "Directional": false + } + ] + }, + { + "ID": 176, + "SourceStructureID": 89516, + "TargetStructureID": 170, + "Label": "89516-170 via Unknown from 89517 -> 1258", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89517, + "TargetID": 1258, + "Directional": false + } + ] + }, + { + "ID": 177, + "SourceStructureID": 89682, + "TargetStructureID": 170, + "Label": "89682-170 via Unknown from 89684 -> 89685", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89684, + "TargetID": 89685, + "Directional": false + } + ] + }, + { + "ID": 178, + "SourceStructureID": 170, + "TargetStructureID": 89713, + "Label": "170-89713 via Unknown from 92474 -> 92475", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92474, + "TargetID": 92475, + "Directional": false + } + ] + }, + { + "ID": 179, + "SourceStructureID": 170, + "TargetStructureID": 89760, + "Label": "170-89760 via Unknown from 90063 -> 90064", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90063, + "TargetID": 90064, + "Directional": false + } + ] + }, + { + "ID": 180, + "SourceStructureID": 170, + "TargetStructureID": 89877, + "Label": "170-89877 via Adherens from 89878 -> 89879", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89878, + "TargetID": 89879, + "Directional": false + } + ] + }, + { + "ID": 181, + "SourceStructureID": 170, + "TargetStructureID": 89915, + "Label": "170-89915 via Unknown from 89916 -> 89917", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89916, + "TargetID": 89917, + "Directional": false + } + ] + }, + { + "ID": 182, + "SourceStructureID": 89962, + "TargetStructureID": 170, + "Label": "89962-170 via Unknown from 89963 -> 89964", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89963, + "TargetID": 89964, + "Directional": false + } + ] + }, + { + "ID": 183, + "SourceStructureID": 89970, + "TargetStructureID": 170, + "Label": "89970-170 via Unknown from 89971 -> 89972", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89971, + "TargetID": 89972, + "Directional": false + } + ] + }, + { + "ID": 184, + "SourceStructureID": 170, + "TargetStructureID": 89985, + "Label": "170-89985 via Adherens from 90001 -> 90002", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90001, + "TargetID": 90002, + "Directional": false + } + ] + }, + { + "ID": 185, + "SourceStructureID": 170, + "TargetStructureID": 90004, + "Label": "170-90004 via Adherens from 90003 -> 90010", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90003, + "TargetID": 90010, + "Directional": false + } + ] + }, + { + "ID": 186, + "SourceStructureID": 90013, + "TargetStructureID": 170, + "Label": "90013-170 via Unknown from 90015 -> 90014", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90015, + "TargetID": 90014, + "Directional": false + } + ] + }, + { + "ID": 187, + "SourceStructureID": 170, + "TargetStructureID": 90047, + "Label": "170-90047 via Adherens from 90069 -> 90070", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90069, + "TargetID": 90070, + "Directional": false + } + ] + }, + { + "ID": 188, + "SourceStructureID": 170, + "TargetStructureID": 90053, + "Label": "170-90053 via Unknown from 90054 -> 90055", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90054, + "TargetID": 90055, + "Directional": false + } + ] + }, + { + "ID": 189, + "SourceStructureID": 170, + "TargetStructureID": 90075, + "Label": "170-90075 via Unknown from 90074 -> 90076", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90074, + "TargetID": 90076, + "Directional": false + } + ] + }, + { + "ID": 190, + "SourceStructureID": 170, + "TargetStructureID": 90248, + "Label": "170-90248 via Adherens from 90250 -> 90252", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90250, + "TargetID": 90252, + "Directional": false + } + ] + }, + { + "ID": 191, + "SourceStructureID": 170, + "TargetStructureID": 90254, + "Label": "170-90254 via Unknown from 90256 -> 90255", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90256, + "TargetID": 90255, + "Directional": false + } + ] + }, + { + "ID": 192, + "SourceStructureID": 90280, + "TargetStructureID": 170, + "Label": "90280-170 via Unknown from 90281 -> 90282", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90281, + "TargetID": 90282, + "Directional": false + } + ] + }, + { + "ID": 193, + "SourceStructureID": 170, + "TargetStructureID": 90312, + "Label": "170-90312 via BC Conventional Synapse from 92476 -> 90316", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 92476, + "TargetID": 90316, + "Directional": false + } + ] + }, + { + "ID": 194, + "SourceStructureID": 170, + "TargetStructureID": 90339, + "Label": "170-90339 via Adherens from 90338 -> 90344", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90338, + "TargetID": 90344, + "Directional": false + } + ] + }, + { + "ID": 195, + "SourceStructureID": 170, + "TargetStructureID": 90373, + "Label": "170-90373 via Unknown from 90377 -> 90375", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90377, + "TargetID": 90375, + "Directional": false + } + ] + }, + { + "ID": 196, + "SourceStructureID": 90381, + "TargetStructureID": 170, + "Label": "90381-170 via Adherens from 90386 -> 90387", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90386, + "TargetID": 90387, + "Directional": false + } + ] + }, + { + "ID": 197, + "SourceStructureID": 90463, + "TargetStructureID": 170, + "Label": "90463-170 via Adherens from 90465 -> 90464", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90465, + "TargetID": 90464, + "Directional": false + } + ] + }, + { + "ID": 198, + "SourceStructureID": 170, + "TargetStructureID": 90471, + "Label": "170-90471 via Unknown from 90472 -> 90473", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90472, + "TargetID": 90473, + "Directional": false + } + ] + }, + { + "ID": 199, + "SourceStructureID": 90474, + "TargetStructureID": 170, + "Label": "90474-170 via Adherens from 90476 -> 90477", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90476, + "TargetID": 90477, + "Directional": false + } + ] + }, + { + "ID": 200, + "SourceStructureID": 90487, + "TargetStructureID": 170, + "Label": "90487-170 via Unknown from 90493 -> 90494", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90493, + "TargetID": 90494, + "Directional": false + } + ] + }, + { + "ID": 201, + "SourceStructureID": 170, + "TargetStructureID": 90488, + "Label": "170-90488 via Unknown from 90538 -> 90539", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90538, + "TargetID": 90539, + "Directional": false + } + ] + }, + { + "ID": 202, + "SourceStructureID": 90561, + "TargetStructureID": 170, + "Label": "90561-170 via Adherens from 90562 -> 90560", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90562, + "TargetID": 90560, + "Directional": false + } + ] + }, + { + "ID": 203, + "SourceStructureID": 170, + "TargetStructureID": 90568, + "Label": "170-90568 via Unknown from 90574 -> 90575", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90574, + "TargetID": 90575, + "Directional": false + } + ] + }, + { + "ID": 204, + "SourceStructureID": 170, + "TargetStructureID": 90582, + "Label": "170-90582 via Adherens from 90581 -> 90583", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90581, + "TargetID": 90583, + "Directional": false + } + ] + }, + { + "ID": 205, + "SourceStructureID": 90585, + "TargetStructureID": 170, + "Label": "90585-170 via Unknown from 90595 -> 90596", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90595, + "TargetID": 90596, + "Directional": false + } + ] + }, + { + "ID": 206, + "SourceStructureID": 92568, + "TargetStructureID": 170, + "Label": "92568-170 via Unknown from 92569 -> 92567", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92569, + "TargetID": 92567, + "Directional": false + } + ] + }, + { + "ID": 207, + "SourceStructureID": 171, + "TargetStructureID": 171, + "Label": "171-171 via Gap Junction from 94458 -> 94459", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94458, + "TargetID": 94459, + "Directional": false + } + ] + }, + { + "ID": 208, + "SourceStructureID": 171, + "TargetStructureID": 171, + "Label": "171-171 via Unknown from 94449 -> 94448", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94449, + "TargetID": 94448, + "Directional": false + } + ] + }, + { + "ID": 209, + "SourceStructureID": 172, + "TargetStructureID": 172, + "Label": "172-172 via Gap Junction from 84542 -> 84543", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 84542, + "TargetID": 84543, + "Directional": false + } + ] + }, + { + "ID": 210, + "SourceStructureID": 173, + "TargetStructureID": 176, + "Label": "173-176 via Unknown from 128239 -> 128240", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128239, + "TargetID": 128240, + "Directional": false + } + ] + }, + { + "ID": 211, + "SourceStructureID": 173, + "TargetStructureID": 12099, + "Label": "173-12099 via Gap Junction from 12097 -> 12100", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 12097, + "TargetID": 12100, + "Directional": false + } + ] + }, + { + "ID": 212, + "SourceStructureID": 41159, + "TargetStructureID": 173, + "Label": "41159-173 via Gap Junction from 41165 -> 12006", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 41165, + "TargetID": 12006, + "Directional": false + } + ] + }, + { + "ID": 213, + "SourceStructureID": 60071, + "TargetStructureID": 173, + "Label": "60071-173 via Adherens from 60073 -> 60070", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60073, + "TargetID": 60070, + "Directional": false + } + ] + }, + { + "ID": 214, + "SourceStructureID": 60071, + "TargetStructureID": 173, + "Label": "60071-173 via Gap Junction from 60072 -> 60069", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60072, + "TargetID": 60069, + "Directional": false + } + ] + }, + { + "ID": 215, + "SourceStructureID": 173, + "TargetStructureID": 88159, + "Label": "173-88159 via Gap Junction from 88168 -> 88167, 88182 -> 88181", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88168, + "TargetID": 88167, + "Directional": false + }, + { + "SourceID": 88182, + "TargetID": 88181, + "Directional": false + } + ] + }, + { + "ID": 216, + "SourceStructureID": 116475, + "TargetStructureID": 173, + "Label": "116475-173 via Gap Junction from 116480 -> 12003", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116480, + "TargetID": 12003, + "Directional": false + } + ] + }, + { + "ID": 217, + "SourceStructureID": 122242, + "TargetStructureID": 173, + "Label": "122242-173 via Gap Junction from 122246 -> 122245", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122246, + "TargetID": 122245, + "Directional": false + } + ] + }, + { + "ID": 218, + "SourceStructureID": 595, + "TargetStructureID": 176, + "Label": "595-176 via Gap Junction from 46663 -> 46664, 119651 -> 119652, 128286 -> 128287", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46663, + "TargetID": 46664, + "Directional": false + }, + { + "SourceID": 119651, + "TargetID": 119652, + "Directional": false + }, + { + "SourceID": 128286, + "TargetID": 128287, + "Directional": false + } + ] + }, + { + "ID": 219, + "SourceStructureID": 176, + "TargetStructureID": 4877, + "Label": "176-4877 via Adherens from 91306 -> 91305, 128071 -> 128072, 128670 -> 128669, 128737 -> 128736", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91306, + "TargetID": 91305, + "Directional": false + }, + { + "SourceID": 128071, + "TargetID": 128072, + "Directional": false + }, + { + "SourceID": 128670, + "TargetID": 128669, + "Directional": false + }, + { + "SourceID": 128737, + "TargetID": 128736, + "Directional": false + } + ] + }, + { + "ID": 220, + "SourceStructureID": 176, + "TargetStructureID": 4877, + "Label": "176-4877 via Gap Junction from 62753 -> 62752, 91294 -> 91295, 91298 -> 91296, 91337 -> 91336, 124694 -> 124693, 125451 -> 125450", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 62753, + "TargetID": 62752, + "Directional": false + }, + { + "SourceID": 91294, + "TargetID": 91295, + "Directional": false + }, + { + "SourceID": 91298, + "TargetID": 91296, + "Directional": false + }, + { + "SourceID": 91337, + "TargetID": 91336, + "Directional": false + }, + { + "SourceID": 124694, + "TargetID": 124693, + "Directional": false + }, + { + "SourceID": 125451, + "TargetID": 125450, + "Directional": false + } + ] + }, + { + "ID": 221, + "SourceStructureID": 176, + "TargetStructureID": 5442, + "Label": "176-5442 via Adherens from 124631 -> 124632", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124631, + "TargetID": 124632, + "Directional": false + } + ] + }, + { + "ID": 222, + "SourceStructureID": 5442, + "TargetStructureID": 176, + "Label": "5442-176 via Unknown from 128231 -> 128230", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128231, + "TargetID": 128230, + "Directional": false + } + ] + }, + { + "ID": 223, + "SourceStructureID": 176, + "TargetStructureID": 5481, + "Label": "176-5481 via Adherens from 125367 -> 125368, 125411 -> 125410", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125367, + "TargetID": 125368, + "Directional": false + }, + { + "SourceID": 125411, + "TargetID": 125410, + "Directional": false + } + ] + }, + { + "ID": 224, + "SourceStructureID": 176, + "TargetStructureID": 5482, + "Label": "176-5482 via Unknown from 128005 -> 128004", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128005, + "TargetID": 128004, + "Directional": false + } + ] + }, + { + "ID": 225, + "SourceStructureID": 176, + "TargetStructureID": 5530, + "Label": "176-5530 via Gap Junction from 119655 -> 119654, 124562 -> 124563, 124870 -> 124871, 124892 -> 124891, 128281 -> 128280, 135583 -> 135582", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119655, + "TargetID": 119654, + "Directional": false + }, + { + "SourceID": 124562, + "TargetID": 124563, + "Directional": false + }, + { + "SourceID": 124870, + "TargetID": 124871, + "Directional": false + }, + { + "SourceID": 124892, + "TargetID": 124891, + "Directional": false + }, + { + "SourceID": 128281, + "TargetID": 128280, + "Directional": false + }, + { + "SourceID": 135583, + "TargetID": 135582, + "Directional": false + } + ] + }, + { + "ID": 226, + "SourceStructureID": 176, + "TargetStructureID": 5531, + "Label": "176-5531 via Adherens from 125430 -> 125431, 125441 -> 125442, 128262 -> 128263, 128667 -> 128668, 128707 -> 128706, 128726 -> 128727, 147468 -> 147469", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125430, + "TargetID": 125431, + "Directional": false + }, + { + "SourceID": 125441, + "TargetID": 125442, + "Directional": false + }, + { + "SourceID": 128262, + "TargetID": 128263, + "Directional": false + }, + { + "SourceID": 128667, + "TargetID": 128668, + "Directional": false + }, + { + "SourceID": 128707, + "TargetID": 128706, + "Directional": false + }, + { + "SourceID": 128726, + "TargetID": 128727, + "Directional": false + }, + { + "SourceID": 147468, + "TargetID": 147469, + "Directional": false + } + ] + }, + { + "ID": 227, + "SourceStructureID": 176, + "TargetStructureID": 5531, + "Label": "176-5531 via Gap Junction from 56488 -> 54567, 62930 -> 62931, 91661 -> 91660, 91672 -> 91670, 91686 -> 91688, 91697 -> 91696, 91706 -> 91707, 91717 -> 91718, 91877 -> 91876, 91911 -> 91909, 93441 -> 93440, 106919 -> 106920, 119678 -> 119679, 125388 -> 125387, 125818 -> 125817, 128333 -> 128334, 128438 -> 128437, 128445 -> 128444, 128665 -> 128666, 128678 -> 128679, 147467 -> 147466, 147471 -> 147470", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56488, + "TargetID": 54567, + "Directional": false + }, + { + "SourceID": 62930, + "TargetID": 62931, + "Directional": false + }, + { + "SourceID": 91661, + "TargetID": 91660, + "Directional": false + }, + { + "SourceID": 91672, + "TargetID": 91670, + "Directional": false + }, + { + "SourceID": 91686, + "TargetID": 91688, + "Directional": false + }, + { + "SourceID": 91697, + "TargetID": 91696, + "Directional": false + }, + { + "SourceID": 91706, + "TargetID": 91707, + "Directional": false + }, + { + "SourceID": 91717, + "TargetID": 91718, + "Directional": false + }, + { + "SourceID": 91877, + "TargetID": 91876, + "Directional": false + }, + { + "SourceID": 91911, + "TargetID": 91909, + "Directional": false + }, + { + "SourceID": 93441, + "TargetID": 93440, + "Directional": false + }, + { + "SourceID": 106919, + "TargetID": 106920, + "Directional": false + }, + { + "SourceID": 119678, + "TargetID": 119679, + "Directional": false + }, + { + "SourceID": 125388, + "TargetID": 125387, + "Directional": false + }, + { + "SourceID": 125818, + "TargetID": 125817, + "Directional": false + }, + { + "SourceID": 128333, + "TargetID": 128334, + "Directional": false + }, + { + "SourceID": 128438, + "TargetID": 128437, + "Directional": false + }, + { + "SourceID": 128445, + "TargetID": 128444, + "Directional": false + }, + { + "SourceID": 128665, + "TargetID": 128666, + "Directional": false + }, + { + "SourceID": 128678, + "TargetID": 128679, + "Directional": false + }, + { + "SourceID": 147467, + "TargetID": 147466, + "Directional": false + }, + { + "SourceID": 147471, + "TargetID": 147470, + "Directional": false + } + ] + }, + { + "ID": 228, + "SourceStructureID": 5531, + "TargetStructureID": 176, + "Label": "5531-176 via Touch from 147945 -> 147946", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 147945, + "TargetID": 147946, + "Directional": false + } + ] + }, + { + "ID": 229, + "SourceStructureID": 5601, + "TargetStructureID": 176, + "Label": "5601-176 via Gap Junction from 128738 -> 125849, 135585 -> 135584", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 128738, + "TargetID": 125849, + "Directional": false + }, + { + "SourceID": 135585, + "TargetID": 135584, + "Directional": false + } + ] + }, + { + "ID": 230, + "SourceStructureID": 176, + "TargetStructureID": 5601, + "Label": "176-5601 via Touch from 128740 -> 128741", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 128740, + "TargetID": 128741, + "Directional": false + } + ] + }, + { + "ID": 231, + "SourceStructureID": 5641, + "TargetStructureID": 176, + "Label": "5641-176 via Adherens from 124097 -> 124136", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124097, + "TargetID": 124136, + "Directional": false + } + ] + }, + { + "ID": 232, + "SourceStructureID": 5641, + "TargetStructureID": 176, + "Label": "5641-176 via Gap Junction from 124098 -> 124134", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 124098, + "TargetID": 124134, + "Directional": false + } + ] + }, + { + "ID": 233, + "SourceStructureID": 176, + "TargetStructureID": 5860, + "Label": "176-5860 via Adherens from 92002 -> 92001, 124388 -> 124389, 128251 -> 128250, 128316 -> 128320", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92002, + "TargetID": 92001, + "Directional": false + }, + { + "SourceID": 124388, + "TargetID": 124389, + "Directional": false + }, + { + "SourceID": 128251, + "TargetID": 128250, + "Directional": false + }, + { + "SourceID": 128316, + "TargetID": 128320, + "Directional": false + } + ] + }, + { + "ID": 234, + "SourceStructureID": 5860, + "TargetStructureID": 176, + "Label": "5860-176 via Gap Junction from 20029 -> 20028, 24729 -> 5859, 54989 -> 54991, 77002 -> 6197, 91777 -> 91776, 91886 -> 91885, 92000 -> 54726, 119644 -> 119645, 119657 -> 119656, 119661 -> 6969, 128247 -> 128246, 128299 -> 128300", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 20029, + "TargetID": 20028, + "Directional": false + }, + { + "SourceID": 24729, + "TargetID": 5859, + "Directional": false + }, + { + "SourceID": 54989, + "TargetID": 54991, + "Directional": false + }, + { + "SourceID": 77002, + "TargetID": 6197, + "Directional": false + }, + { + "SourceID": 91777, + "TargetID": 91776, + "Directional": false + }, + { + "SourceID": 91886, + "TargetID": 91885, + "Directional": false + }, + { + "SourceID": 92000, + "TargetID": 54726, + "Directional": false + }, + { + "SourceID": 119644, + "TargetID": 119645, + "Directional": false + }, + { + "SourceID": 119657, + "TargetID": 119656, + "Directional": false + }, + { + "SourceID": 119661, + "TargetID": 6969, + "Directional": false + }, + { + "SourceID": 128247, + "TargetID": 128246, + "Directional": false + }, + { + "SourceID": 128299, + "TargetID": 128300, + "Directional": false + } + ] + }, + { + "ID": 235, + "SourceStructureID": 176, + "TargetStructureID": 6117, + "Label": "176-6117 via Gap Junction from 58716 -> 58717, 135550 -> 135549", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 58716, + "TargetID": 58717, + "Directional": false + }, + { + "SourceID": 135550, + "TargetID": 135549, + "Directional": false + } + ] + }, + { + "ID": 236, + "SourceStructureID": 176, + "TargetStructureID": 6117, + "Label": "176-6117 via Touch from 91854 -> 91853", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 91854, + "TargetID": 91853, + "Directional": false + } + ] + }, + { + "ID": 237, + "SourceStructureID": 6169, + "TargetStructureID": 176, + "Label": "6169-176 via Gap Junction from 35845 -> 35844", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 35845, + "TargetID": 35844, + "Directional": false + } + ] + }, + { + "ID": 238, + "SourceStructureID": 176, + "TargetStructureID": 7113, + "Label": "176-7113 via Adherens from 128095 -> 128094", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128095, + "TargetID": 128094, + "Directional": false + } + ] + }, + { + "ID": 239, + "SourceStructureID": 7113, + "TargetStructureID": 176, + "Label": "7113-176 via Gap Junction from 58657 -> 58656, 58802 -> 58801, 91927 -> 91926, 91977 -> 91975", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 58657, + "TargetID": 58656, + "Directional": false + }, + { + "SourceID": 58802, + "TargetID": 58801, + "Directional": false + }, + { + "SourceID": 91927, + "TargetID": 91926, + "Directional": false + }, + { + "SourceID": 91977, + "TargetID": 91975, + "Directional": false + } + ] + }, + { + "ID": 240, + "SourceStructureID": 11229, + "TargetStructureID": 176, + "Label": "11229-176 via Gap Junction from 15635 -> 128724", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 15635, + "TargetID": 128724, + "Directional": false + } + ] + }, + { + "ID": 241, + "SourceStructureID": 21299, + "TargetStructureID": 176, + "Label": "21299-176 via Adherens from 128292 -> 128291", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128292, + "TargetID": 128291, + "Directional": false + } + ] + }, + { + "ID": 242, + "SourceStructureID": 21299, + "TargetStructureID": 176, + "Label": "21299-176 via Gap Junction from 54956 -> 54955, 91570 -> 91569", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54956, + "TargetID": 54955, + "Directional": false + }, + { + "SourceID": 91570, + "TargetID": 91569, + "Directional": false + } + ] + }, + { + "ID": 243, + "SourceStructureID": 176, + "TargetStructureID": 38949, + "Label": "176-38949 via Adherens from 128265 -> 128266", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128265, + "TargetID": 128266, + "Directional": false + } + ] + }, + { + "ID": 244, + "SourceStructureID": 176, + "TargetStructureID": 38949, + "Label": "176-38949 via Unknown from 128272 -> 128273", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128272, + "TargetID": 128273, + "Directional": false + } + ] + }, + { + "ID": 245, + "SourceStructureID": 176, + "TargetStructureID": 44970, + "Label": "176-44970 via Unknown from 124536 -> 128223", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124536, + "TargetID": 128223, + "Directional": false + } + ] + }, + { + "ID": 246, + "SourceStructureID": 54895, + "TargetStructureID": 176, + "Label": "54895-176 via Adherens from 124769 -> 124768", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124769, + "TargetID": 124768, + "Directional": false + } + ] + }, + { + "ID": 247, + "SourceStructureID": 54948, + "TargetStructureID": 176, + "Label": "54948-176 via Adherens from 128290 -> 128289", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128290, + "TargetID": 128289, + "Directional": false + } + ] + }, + { + "ID": 248, + "SourceStructureID": 56802, + "TargetStructureID": 176, + "Label": "56802-176 via Adherens from 128031 -> 128030", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128031, + "TargetID": 128030, + "Directional": false + } + ] + }, + { + "ID": 249, + "SourceStructureID": 56802, + "TargetStructureID": 176, + "Label": "56802-176 via Unknown from 119621 -> 119622, 119623 -> 119624", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 119621, + "TargetID": 119622, + "Directional": false + }, + { + "SourceID": 119623, + "TargetID": 119624, + "Directional": false + } + ] + }, + { + "ID": 250, + "SourceStructureID": 176, + "TargetStructureID": 58642, + "Label": "176-58642 via Unknown from 128232 -> 128233", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128232, + "TargetID": 128233, + "Directional": false + } + ] + }, + { + "ID": 251, + "SourceStructureID": 58709, + "TargetStructureID": 176, + "Label": "58709-176 via Adherens from 128221 -> 124551", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128221, + "TargetID": 124551, + "Directional": false + } + ] + }, + { + "ID": 252, + "SourceStructureID": 176, + "TargetStructureID": 80609, + "Label": "176-80609 via Adherens from 124580 -> 124581", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124580, + "TargetID": 124581, + "Directional": false + } + ] + }, + { + "ID": 253, + "SourceStructureID": 82577, + "TargetStructureID": 176, + "Label": "82577-176 via Conventional from 82579 -> 82578", + "Type": "Conventional", + "Directional": false, + "Links": [ + { + "SourceID": 82579, + "TargetID": 82578, + "Directional": false + } + ] + }, + { + "ID": 254, + "SourceStructureID": 176, + "TargetStructureID": 82877, + "Label": "176-82877 via Unknown from 128423 -> 128424", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128423, + "TargetID": 128424, + "Directional": false + } + ] + }, + { + "ID": 255, + "SourceStructureID": 176, + "TargetStructureID": 86565, + "Label": "176-86565 via Unknown from 124697 -> 124698", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124697, + "TargetID": 124698, + "Directional": false + } + ] + }, + { + "ID": 256, + "SourceStructureID": 91793, + "TargetStructureID": 176, + "Label": "91793-176 via Unknown from 91794 -> 91792", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91794, + "TargetID": 91792, + "Directional": false + } + ] + }, + { + "ID": 257, + "SourceStructureID": 91832, + "TargetStructureID": 176, + "Label": "91832-176 via Unknown from 91833 -> 91831", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91833, + "TargetID": 91831, + "Directional": false + } + ] + }, + { + "ID": 258, + "SourceStructureID": 176, + "TargetStructureID": 91843, + "Label": "176-91843 via Adherens from 128093 -> 128092", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128093, + "TargetID": 128092, + "Directional": false + } + ] + }, + { + "ID": 259, + "SourceStructureID": 91843, + "TargetStructureID": 176, + "Label": "91843-176 via Unknown from 91844 -> 91842", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91844, + "TargetID": 91842, + "Directional": false + } + ] + }, + { + "ID": 260, + "SourceStructureID": 176, + "TargetStructureID": 91846, + "Label": "176-91846 via Unknown from 91845 -> 91847", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91845, + "TargetID": 91847, + "Directional": false + } + ] + }, + { + "ID": 261, + "SourceStructureID": 176, + "TargetStructureID": 91856, + "Label": "176-91856 via Unknown from 91863 -> 91862, 124718 -> 124719", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91863, + "TargetID": 91862, + "Directional": false + }, + { + "SourceID": 124718, + "TargetID": 124719, + "Directional": false + } + ] + }, + { + "ID": 262, + "SourceStructureID": 91867, + "TargetStructureID": 176, + "Label": "91867-176 via Unknown from 128215 -> 128214", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128215, + "TargetID": 128214, + "Directional": false + } + ] + }, + { + "ID": 263, + "SourceStructureID": 91871, + "TargetStructureID": 176, + "Label": "91871-176 via Unknown from 91874 -> 5897", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91874, + "TargetID": 5897, + "Directional": false + } + ] + }, + { + "ID": 264, + "SourceStructureID": 91888, + "TargetStructureID": 176, + "Label": "91888-176 via Unknown from 91889 -> 91887, 124954 -> 124953", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91889, + "TargetID": 91887, + "Directional": false + }, + { + "SourceID": 124954, + "TargetID": 124953, + "Directional": false + } + ] + }, + { + "ID": 265, + "SourceStructureID": 91918, + "TargetStructureID": 176, + "Label": "91918-176 via Unknown from 125806 -> 125805", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125806, + "TargetID": 125805, + "Directional": false + } + ] + }, + { + "ID": 266, + "SourceStructureID": 91921, + "TargetStructureID": 176, + "Label": "91921-176 via Unknown from 91922 -> 91736, 128458 -> 128459", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91922, + "TargetID": 91736, + "Directional": false + }, + { + "SourceID": 128458, + "TargetID": 128459, + "Directional": false + } + ] + }, + { + "ID": 267, + "SourceStructureID": 91924, + "TargetStructureID": 176, + "Label": "91924-176 via Unknown from 91925 -> 91923", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91925, + "TargetID": 91923, + "Directional": false + } + ] + }, + { + "ID": 268, + "SourceStructureID": 91930, + "TargetStructureID": 176, + "Label": "91930-176 via Adherens from 128676 -> 128675", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128676, + "TargetID": 128675, + "Directional": false + } + ] + }, + { + "ID": 269, + "SourceStructureID": 91930, + "TargetStructureID": 176, + "Label": "91930-176 via Unknown from 91931 -> 91929", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91931, + "TargetID": 91929, + "Directional": false + } + ] + }, + { + "ID": 270, + "SourceStructureID": 91959, + "TargetStructureID": 176, + "Label": "91959-176 via Adherens from 125810 -> 125811", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125810, + "TargetID": 125811, + "Directional": false + } + ] + }, + { + "ID": 271, + "SourceStructureID": 91990, + "TargetStructureID": 176, + "Label": "91990-176 via Unknown from 91991 -> 91989", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91991, + "TargetID": 91989, + "Directional": false + } + ] + }, + { + "ID": 272, + "SourceStructureID": 91994, + "TargetStructureID": 176, + "Label": "91994-176 via Unknown from 91995 -> 91993", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91995, + "TargetID": 91993, + "Directional": false + } + ] + }, + { + "ID": 273, + "SourceStructureID": 93437, + "TargetStructureID": 176, + "Label": "93437-176 via Unknown from 124938 -> 124937", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124938, + "TargetID": 124937, + "Directional": false + } + ] + }, + { + "ID": 274, + "SourceStructureID": 107476, + "TargetStructureID": 176, + "Label": "107476-176 via Adherens from 128454 -> 128453", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128454, + "TargetID": 128453, + "Directional": false + } + ] + }, + { + "ID": 275, + "SourceStructureID": 107483, + "TargetStructureID": 176, + "Label": "107483-176 via Adherens from 125395 -> 125394", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125395, + "TargetID": 125394, + "Directional": false + } + ] + }, + { + "ID": 276, + "SourceStructureID": 176, + "TargetStructureID": 107587, + "Label": "176-107587 via Adherens from 125416 -> 125444", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125416, + "TargetID": 125444, + "Directional": false + } + ] + }, + { + "ID": 277, + "SourceStructureID": 176, + "TargetStructureID": 107587, + "Label": "176-107587 via Unknown from 125437 -> 125438", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125437, + "TargetID": 125438, + "Directional": false + } + ] + }, + { + "ID": 278, + "SourceStructureID": 176, + "TargetStructureID": 107672, + "Label": "176-107672 via Adherens from 91903 -> 125346", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91903, + "TargetID": 125346, + "Directional": false + } + ] + }, + { + "ID": 279, + "SourceStructureID": 128685, + "TargetStructureID": 176, + "Label": "128685-176 via Adherens from 128688 -> 125452", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128688, + "TargetID": 125452, + "Directional": false + } + ] + }, + { + "ID": 280, + "SourceStructureID": 136680, + "TargetStructureID": 176, + "Label": "136680-176 via Adherens from 136681 -> 124559", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136681, + "TargetID": 124559, + "Directional": false + } + ] + }, + { + "ID": 281, + "SourceStructureID": 136680, + "TargetStructureID": 176, + "Label": "136680-176 via Gap Junction from 136683 -> 128243", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136683, + "TargetID": 128243, + "Directional": false + } + ] + }, + { + "ID": 282, + "SourceStructureID": 176, + "TargetStructureID": 147412, + "Label": "176-147412 via Unknown from 125386 -> 147417, 147414 -> 128455", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125386, + "TargetID": 147417, + "Directional": false + }, + { + "SourceID": 147414, + "TargetID": 128455, + "Directional": false + } + ] + }, + { + "ID": 283, + "SourceStructureID": 177, + "TargetStructureID": 177, + "Label": "177-177 via Gap Junction from 117761 -> 117757", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117761, + "TargetID": 117757, + "Directional": false + } + ] + }, + { + "ID": 284, + "SourceStructureID": 177, + "TargetStructureID": 5860, + "Label": "177-5860 via Gap Junction from 5731 -> 54996, 5938 -> 8809, 117763 -> 117762", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 5731, + "TargetID": 54996, + "Directional": false + }, + { + "SourceID": 5938, + "TargetID": 8809, + "Directional": false + }, + { + "SourceID": 117763, + "TargetID": 117762, + "Directional": false + } + ] + }, + { + "ID": 285, + "SourceStructureID": 7113, + "TargetStructureID": 177, + "Label": "7113-177 via Gap Junction from 101841 -> 5964, 117755 -> 117754, 131420 -> 131419", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 101841, + "TargetID": 5964, + "Directional": false + }, + { + "SourceID": 117755, + "TargetID": 117754, + "Directional": false + }, + { + "SourceID": 131420, + "TargetID": 131419, + "Directional": false + } + ] + }, + { + "ID": 286, + "SourceStructureID": 514, + "TargetStructureID": 179, + "Label": "514-179 via Adherens from 103814 -> 103813", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103814, + "TargetID": 103813, + "Directional": false + } + ] + }, + { + "ID": 287, + "SourceStructureID": 5303, + "TargetStructureID": 179, + "Label": "5303-179 via Gap Junction from 101399 -> 104984", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 101399, + "TargetID": 104984, + "Directional": false + } + ] + }, + { + "ID": 288, + "SourceStructureID": 179, + "TargetStructureID": 5860, + "Label": "179-5860 via Adherens from 87475 -> 87476", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87475, + "TargetID": 87476, + "Directional": false + } + ] + }, + { + "ID": 289, + "SourceStructureID": 6169, + "TargetStructureID": 179, + "Label": "6169-179 via Adherens from 87474 -> 87473", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87474, + "TargetID": 87473, + "Directional": false + } + ] + }, + { + "ID": 290, + "SourceStructureID": 10897, + "TargetStructureID": 179, + "Label": "10897-179 via Unknown from 104878 -> 104877", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104878, + "TargetID": 104877, + "Directional": false + } + ] + }, + { + "ID": 291, + "SourceStructureID": 16446, + "TargetStructureID": 179, + "Label": "16446-179 via Unknown from 103860 -> 103859, 103864 -> 103863", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103860, + "TargetID": 103859, + "Directional": false + }, + { + "SourceID": 103864, + "TargetID": 103863, + "Directional": false + } + ] + }, + { + "ID": 292, + "SourceStructureID": 179, + "TargetStructureID": 30328, + "Label": "179-30328 via Adherens from 25740 -> 159750", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 25740, + "TargetID": 159750, + "Directional": false + } + ] + }, + { + "ID": 293, + "SourceStructureID": 46062, + "TargetStructureID": 179, + "Label": "46062-179 via Adherens from 104654 -> 104653", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104654, + "TargetID": 104653, + "Directional": false + } + ] + }, + { + "ID": 294, + "SourceStructureID": 130125, + "TargetStructureID": 179, + "Label": "130125-179 via Adherens from 105205 -> 105204", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 105205, + "TargetID": 105204, + "Directional": false + } + ] + }, + { + "ID": 295, + "SourceStructureID": 180, + "TargetStructureID": 180, + "Label": "180-180 via Gap Junction from 132865 -> 132866", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132865, + "TargetID": 132866, + "Directional": false + } + ] + }, + { + "ID": 296, + "SourceStructureID": 180, + "TargetStructureID": 318, + "Label": "180-318 via Adherens from 90896 -> 90895, 90897 -> 90894", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90896, + "TargetID": 90895, + "Directional": false + }, + { + "SourceID": 90897, + "TargetID": 90894, + "Directional": false + } + ] + }, + { + "ID": 297, + "SourceStructureID": 593, + "TargetStructureID": 180, + "Label": "593-180 via Gap Junction from 59789 -> 59790", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59789, + "TargetID": 59790, + "Directional": false + } + ] + }, + { + "ID": 298, + "SourceStructureID": 180, + "TargetStructureID": 3257, + "Label": "180-3257 via Gap Junction from 56880 -> 15453, 90864 -> 90863", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56880, + "TargetID": 15453, + "Directional": false + }, + { + "SourceID": 90864, + "TargetID": 90863, + "Directional": false + } + ] + }, + { + "ID": 299, + "SourceStructureID": 180, + "TargetStructureID": 3679, + "Label": "180-3679 via Adherens from 133136 -> 133135", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133136, + "TargetID": 133135, + "Directional": false + } + ] + }, + { + "ID": 300, + "SourceStructureID": 180, + "TargetStructureID": 3679, + "Label": "180-3679 via Gap Junction from 14925 -> 14924, 65608 -> 65609, 90964 -> 90963, 90998 -> 90997, 132920 -> 132919", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14925, + "TargetID": 14924, + "Directional": false + }, + { + "SourceID": 65608, + "TargetID": 65609, + "Directional": false + }, + { + "SourceID": 90964, + "TargetID": 90963, + "Directional": false + }, + { + "SourceID": 90998, + "TargetID": 90997, + "Directional": false + }, + { + "SourceID": 132920, + "TargetID": 132919, + "Directional": false + } + ] + }, + { + "ID": 301, + "SourceStructureID": 180, + "TargetStructureID": 4570, + "Label": "180-4570 via Adherens from 90858 -> 14419", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90858, + "TargetID": 14419, + "Directional": false + } + ] + }, + { + "ID": 302, + "SourceStructureID": 4850, + "TargetStructureID": 180, + "Label": "4850-180 via Unknown from 132923 -> 132922, 132981 -> 132980", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132923, + "TargetID": 132922, + "Directional": false + }, + { + "SourceID": 132981, + "TargetID": 132980, + "Directional": false + } + ] + }, + { + "ID": 303, + "SourceStructureID": 5283, + "TargetStructureID": 180, + "Label": "5283-180 via Adherens from 66309 -> 66308", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66309, + "TargetID": 66308, + "Directional": false + } + ] + }, + { + "ID": 304, + "SourceStructureID": 180, + "TargetStructureID": 5303, + "Label": "180-5303 via Unknown from 133124 -> 133125", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133124, + "TargetID": 133125, + "Directional": false + } + ] + }, + { + "ID": 305, + "SourceStructureID": 180, + "TargetStructureID": 5618, + "Label": "180-5618 via Adherens from 65981 -> 65980", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65981, + "TargetID": 65980, + "Directional": false + } + ] + }, + { + "ID": 306, + "SourceStructureID": 180, + "TargetStructureID": 5618, + "Label": "180-5618 via Unknown from 94654 -> 94653, 94690 -> 94691", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94654, + "TargetID": 94653, + "Directional": false + }, + { + "SourceID": 94690, + "TargetID": 94691, + "Directional": false + } + ] + }, + { + "ID": 307, + "SourceStructureID": 6169, + "TargetStructureID": 180, + "Label": "6169-180 via Adherens from 29259 -> 29258, 95289 -> 95288, 95345 -> 95346, 133133 -> 133134, 135068 -> 135067", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 29259, + "TargetID": 29258, + "Directional": false + }, + { + "SourceID": 95289, + "TargetID": 95288, + "Directional": false + }, + { + "SourceID": 95345, + "TargetID": 95346, + "Directional": false + }, + { + "SourceID": 133133, + "TargetID": 133134, + "Directional": false + }, + { + "SourceID": 135068, + "TargetID": 135067, + "Directional": false + } + ] + }, + { + "ID": 308, + "SourceStructureID": 180, + "TargetStructureID": 6169, + "Label": "180-6169 via Gap Junction from 11942 -> 11949, 16167 -> 16166, 29257 -> 14940, 31102 -> 18393, 59670 -> 59671, 59678 -> 59677, 92724 -> 92725, 95555 -> 95554, 95974 -> 95973, 132843 -> 132842, 133066 -> 132900, 133116 -> 133117", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 11942, + "TargetID": 11949, + "Directional": false + }, + { + "SourceID": 16167, + "TargetID": 16166, + "Directional": false + }, + { + "SourceID": 29257, + "TargetID": 14940, + "Directional": false + }, + { + "SourceID": 31102, + "TargetID": 18393, + "Directional": false + }, + { + "SourceID": 59670, + "TargetID": 59671, + "Directional": false + }, + { + "SourceID": 59678, + "TargetID": 59677, + "Directional": false + }, + { + "SourceID": 92724, + "TargetID": 92725, + "Directional": false + }, + { + "SourceID": 95555, + "TargetID": 95554, + "Directional": false + }, + { + "SourceID": 95974, + "TargetID": 95973, + "Directional": false + }, + { + "SourceID": 132843, + "TargetID": 132842, + "Directional": false + }, + { + "SourceID": 133066, + "TargetID": 132900, + "Directional": false + }, + { + "SourceID": 133116, + "TargetID": 133117, + "Directional": false + } + ] + }, + { + "ID": 309, + "SourceStructureID": 8579, + "TargetStructureID": 180, + "Label": "8579-180 via Adherens from 90888 -> 90887", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90888, + "TargetID": 90887, + "Directional": false + } + ] + }, + { + "ID": 310, + "SourceStructureID": 180, + "TargetStructureID": 9347, + "Label": "180-9347 via Adherens from 90731 -> 90733, 90752 -> 90750", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90731, + "TargetID": 90733, + "Directional": false + }, + { + "SourceID": 90752, + "TargetID": 90750, + "Directional": false + } + ] + }, + { + "ID": 311, + "SourceStructureID": 9347, + "TargetStructureID": 180, + "Label": "9347-180 via Unknown from 90742 -> 90741, 90767 -> 90766", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90742, + "TargetID": 90741, + "Directional": false + }, + { + "SourceID": 90767, + "TargetID": 90766, + "Directional": false + } + ] + }, + { + "ID": 312, + "SourceStructureID": 13492, + "TargetStructureID": 180, + "Label": "13492-180 via Unknown from 94617 -> 94616", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94617, + "TargetID": 94616, + "Directional": false + } + ] + }, + { + "ID": 313, + "SourceStructureID": 29277, + "TargetStructureID": 180, + "Label": "29277-180 via Adherens from 132932 -> 132933", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132932, + "TargetID": 132933, + "Directional": false + } + ] + }, + { + "ID": 314, + "SourceStructureID": 29277, + "TargetStructureID": 180, + "Label": "29277-180 via Unknown from 132877 -> 132876", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132877, + "TargetID": 132876, + "Directional": false + } + ] + }, + { + "ID": 315, + "SourceStructureID": 180, + "TargetStructureID": 30518, + "Label": "180-30518 via Adherens from 90846 -> 90847", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90846, + "TargetID": 90847, + "Directional": false + } + ] + }, + { + "ID": 316, + "SourceStructureID": 34601, + "TargetStructureID": 180, + "Label": "34601-180 via Adherens from 95753 -> 95752", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95753, + "TargetID": 95752, + "Directional": false + } + ] + }, + { + "ID": 317, + "SourceStructureID": 41042, + "TargetStructureID": 180, + "Label": "41042-180 via Unknown from 133121 -> 95814", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133121, + "TargetID": 95814, + "Directional": false + } + ] + }, + { + "ID": 318, + "SourceStructureID": 59422, + "TargetStructureID": 180, + "Label": "59422-180 via Unknown from 95855 -> 95854", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95855, + "TargetID": 95854, + "Directional": false + } + ] + }, + { + "ID": 319, + "SourceStructureID": 60535, + "TargetStructureID": 180, + "Label": "60535-180 via Unknown from 95666 -> 95665", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95666, + "TargetID": 95665, + "Directional": false + } + ] + }, + { + "ID": 320, + "SourceStructureID": 180, + "TargetStructureID": 64492, + "Label": "180-64492 via Adherens from 133044 -> 133043", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133044, + "TargetID": 133043, + "Directional": false + } + ] + }, + { + "ID": 321, + "SourceStructureID": 65963, + "TargetStructureID": 180, + "Label": "65963-180 via Adherens from 65967 -> 65968", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65967, + "TargetID": 65968, + "Directional": false + } + ] + }, + { + "ID": 322, + "SourceStructureID": 65963, + "TargetStructureID": 180, + "Label": "65963-180 via Unknown from 94689 -> 94688", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94689, + "TargetID": 94688, + "Directional": false + } + ] + }, + { + "ID": 323, + "SourceStructureID": 65971, + "TargetStructureID": 180, + "Label": "65971-180 via Adherens from 133040 -> 133039", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133040, + "TargetID": 133039, + "Directional": false + } + ] + }, + { + "ID": 324, + "SourceStructureID": 66535, + "TargetStructureID": 180, + "Label": "66535-180 via Unknown from 66536 -> 59666", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 66536, + "TargetID": 59666, + "Directional": false + } + ] + }, + { + "ID": 325, + "SourceStructureID": 180, + "TargetStructureID": 71517, + "Label": "180-71517 via Adherens from 75051 -> 75050", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75051, + "TargetID": 75050, + "Directional": false + } + ] + }, + { + "ID": 326, + "SourceStructureID": 180, + "TargetStructureID": 75339, + "Label": "180-75339 via Adherens from 95233 -> 95232", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95233, + "TargetID": 95232, + "Directional": false + } + ] + }, + { + "ID": 327, + "SourceStructureID": 180, + "TargetStructureID": 84802, + "Label": "180-84802 via Unknown from 132874 -> 132873", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132874, + "TargetID": 132873, + "Directional": false + } + ] + }, + { + "ID": 328, + "SourceStructureID": 180, + "TargetStructureID": 90800, + "Label": "180-90800 via Adherens from 90804 -> 90803", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90804, + "TargetID": 90803, + "Directional": false + } + ] + }, + { + "ID": 329, + "SourceStructureID": 90809, + "TargetStructureID": 180, + "Label": "90809-180 via Unknown from 90810 -> 90808", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90810, + "TargetID": 90808, + "Directional": false + } + ] + }, + { + "ID": 330, + "SourceStructureID": 90844, + "TargetStructureID": 180, + "Label": "90844-180 via Adherens from 132994 -> 132995", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132994, + "TargetID": 132995, + "Directional": false + } + ] + }, + { + "ID": 331, + "SourceStructureID": 90883, + "TargetStructureID": 180, + "Label": "90883-180 via Adherens from 90885 -> 90882", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90885, + "TargetID": 90882, + "Directional": false + } + ] + }, + { + "ID": 332, + "SourceStructureID": 180, + "TargetStructureID": 90937, + "Label": "180-90937 via Adherens from 90939 -> 90938", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90939, + "TargetID": 90938, + "Directional": false + } + ] + }, + { + "ID": 333, + "SourceStructureID": 94613, + "TargetStructureID": 180, + "Label": "94613-180 via Unknown from 94614 -> 94615", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94614, + "TargetID": 94615, + "Directional": false + } + ] + }, + { + "ID": 334, + "SourceStructureID": 94637, + "TargetStructureID": 180, + "Label": "94637-180 via Unknown from 94639 -> 94638", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94639, + "TargetID": 94638, + "Directional": false + } + ] + }, + { + "ID": 335, + "SourceStructureID": 180, + "TargetStructureID": 94664, + "Label": "180-94664 via Unknown from 132893 -> 132892", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132893, + "TargetID": 132892, + "Directional": false + } + ] + }, + { + "ID": 336, + "SourceStructureID": 180, + "TargetStructureID": 94698, + "Label": "180-94698 via Adherens from 132978 -> 132979", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132978, + "TargetID": 132979, + "Directional": false + } + ] + }, + { + "ID": 337, + "SourceStructureID": 94702, + "TargetStructureID": 180, + "Label": "94702-180 via Adherens from 94885 -> 94884", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94885, + "TargetID": 94884, + "Directional": false + } + ] + }, + { + "ID": 338, + "SourceStructureID": 94702, + "TargetStructureID": 180, + "Label": "94702-180 via Unknown from 94703 -> 94704", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94703, + "TargetID": 94704, + "Directional": false + } + ] + }, + { + "ID": 339, + "SourceStructureID": 180, + "TargetStructureID": 94926, + "Label": "180-94926 via Unknown from 59661 -> 94929", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 59661, + "TargetID": 94929, + "Directional": false + } + ] + }, + { + "ID": 340, + "SourceStructureID": 180, + "TargetStructureID": 94935, + "Label": "180-94935 via Adherens from 91020 -> 94937", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91020, + "TargetID": 94937, + "Directional": false + } + ] + }, + { + "ID": 341, + "SourceStructureID": 94952, + "TargetStructureID": 180, + "Label": "94952-180 via Adherens from 94955 -> 94954", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94955, + "TargetID": 94954, + "Directional": false + } + ] + }, + { + "ID": 342, + "SourceStructureID": 180, + "TargetStructureID": 94956, + "Label": "180-94956 via Unknown from 94958 -> 94957", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94958, + "TargetID": 94957, + "Directional": false + } + ] + }, + { + "ID": 343, + "SourceStructureID": 94962, + "TargetStructureID": 180, + "Label": "94962-180 via Adherens from 132925 -> 132924", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132925, + "TargetID": 132924, + "Directional": false + } + ] + }, + { + "ID": 344, + "SourceStructureID": 94978, + "TargetStructureID": 180, + "Label": "94978-180 via Unknown from 132854 -> 132853", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132854, + "TargetID": 132853, + "Directional": false + } + ] + }, + { + "ID": 345, + "SourceStructureID": 180, + "TargetStructureID": 94991, + "Label": "180-94991 via Adherens from 132926 -> 132927", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132926, + "TargetID": 132927, + "Directional": false + } + ] + }, + { + "ID": 346, + "SourceStructureID": 94993, + "TargetStructureID": 180, + "Label": "94993-180 via Adherens from 94994 -> 29261", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94994, + "TargetID": 29261, + "Directional": false + } + ] + }, + { + "ID": 347, + "SourceStructureID": 95241, + "TargetStructureID": 180, + "Label": "95241-180 via Unknown from 95242 -> 95240", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95242, + "TargetID": 95240, + "Directional": false + } + ] + }, + { + "ID": 348, + "SourceStructureID": 180, + "TargetStructureID": 95250, + "Label": "180-95250 via Gap Junction from 133105 -> 133106", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 133105, + "TargetID": 133106, + "Directional": false + } + ] + }, + { + "ID": 349, + "SourceStructureID": 95299, + "TargetStructureID": 180, + "Label": "95299-180 via Adherens from 95301 -> 95300", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95301, + "TargetID": 95300, + "Directional": false + } + ] + }, + { + "ID": 350, + "SourceStructureID": 95299, + "TargetStructureID": 180, + "Label": "95299-180 via Unknown from 132857 -> 132858", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132857, + "TargetID": 132858, + "Directional": false + } + ] + }, + { + "ID": 351, + "SourceStructureID": 180, + "TargetStructureID": 95311, + "Label": "180-95311 via Unknown from 95312 -> 95313, 132859 -> 132858", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95312, + "TargetID": 95313, + "Directional": false + }, + { + "SourceID": 132859, + "TargetID": 132858, + "Directional": false + } + ] + }, + { + "ID": 352, + "SourceStructureID": 180, + "TargetStructureID": 95334, + "Label": "180-95334 via Unknown from 95338 -> 95339, 95340 -> 95341, 132861 -> 132860", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95338, + "TargetID": 95339, + "Directional": false + }, + { + "SourceID": 95340, + "TargetID": 95341, + "Directional": false + }, + { + "SourceID": 132861, + "TargetID": 132860, + "Directional": false + } + ] + }, + { + "ID": 353, + "SourceStructureID": 95349, + "TargetStructureID": 180, + "Label": "95349-180 via Adherens from 132895 -> 132894", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132895, + "TargetID": 132894, + "Directional": false + } + ] + }, + { + "ID": 354, + "SourceStructureID": 180, + "TargetStructureID": 95390, + "Label": "180-95390 via Adherens from 95395 -> 95394, 132982 -> 132983", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95395, + "TargetID": 95394, + "Directional": false + }, + { + "SourceID": 132982, + "TargetID": 132983, + "Directional": false + } + ] + }, + { + "ID": 355, + "SourceStructureID": 180, + "TargetStructureID": 95419, + "Label": "180-95419 via Adherens from 95423 -> 95422", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95423, + "TargetID": 95422, + "Directional": false + } + ] + }, + { + "ID": 356, + "SourceStructureID": 180, + "TargetStructureID": 95431, + "Label": "180-95431 via Adherens from 95434 -> 95433", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95434, + "TargetID": 95433, + "Directional": false + } + ] + }, + { + "ID": 357, + "SourceStructureID": 95457, + "TargetStructureID": 180, + "Label": "95457-180 via Unknown from 95459 -> 95458", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95459, + "TargetID": 95458, + "Directional": false + } + ] + }, + { + "ID": 358, + "SourceStructureID": 180, + "TargetStructureID": 95490, + "Label": "180-95490 via Unknown from 95492 -> 95491", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95492, + "TargetID": 95491, + "Directional": false + } + ] + }, + { + "ID": 359, + "SourceStructureID": 180, + "TargetStructureID": 95500, + "Label": "180-95500 via Unknown from 95506 -> 95507", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95506, + "TargetID": 95507, + "Directional": false + } + ] + }, + { + "ID": 360, + "SourceStructureID": 180, + "TargetStructureID": 95512, + "Label": "180-95512 via Adherens from 95511 -> 95513", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95511, + "TargetID": 95513, + "Directional": false + } + ] + }, + { + "ID": 361, + "SourceStructureID": 95530, + "TargetStructureID": 180, + "Label": "95530-180 via Unknown from 95532 -> 95531", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95532, + "TargetID": 95531, + "Directional": false + } + ] + }, + { + "ID": 362, + "SourceStructureID": 180, + "TargetStructureID": 95540, + "Label": "180-95540 via Adherens from 132985 -> 132986", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132985, + "TargetID": 132986, + "Directional": false + } + ] + }, + { + "ID": 363, + "SourceStructureID": 180, + "TargetStructureID": 95573, + "Label": "180-95573 via Adherens from 132988 -> 132989", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132988, + "TargetID": 132989, + "Directional": false + } + ] + }, + { + "ID": 364, + "SourceStructureID": 95612, + "TargetStructureID": 180, + "Label": "95612-180 via Unknown from 95614 -> 95613", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95614, + "TargetID": 95613, + "Directional": false + } + ] + }, + { + "ID": 365, + "SourceStructureID": 95626, + "TargetStructureID": 180, + "Label": "95626-180 via Conventional from 95630 -> 95632", + "Type": "Conventional", + "Directional": false, + "Links": [ + { + "SourceID": 95630, + "TargetID": 95632, + "Directional": false + } + ] + }, + { + "ID": 366, + "SourceStructureID": 180, + "TargetStructureID": 95634, + "Label": "180-95634 via Unknown from 132990 -> 132991", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132990, + "TargetID": 132991, + "Directional": false + } + ] + }, + { + "ID": 367, + "SourceStructureID": 180, + "TargetStructureID": 95643, + "Label": "180-95643 via Unknown from 95645 -> 95644", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95645, + "TargetID": 95644, + "Directional": false + } + ] + }, + { + "ID": 368, + "SourceStructureID": 180, + "TargetStructureID": 95703, + "Label": "180-95703 via Adherens from 95707 -> 95706", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95707, + "TargetID": 95706, + "Directional": false + } + ] + }, + { + "ID": 369, + "SourceStructureID": 180, + "TargetStructureID": 95717, + "Label": "180-95717 via Unknown from 132906 -> 132907", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132906, + "TargetID": 132907, + "Directional": false + } + ] + }, + { + "ID": 370, + "SourceStructureID": 95723, + "TargetStructureID": 180, + "Label": "95723-180 via Unknown from 95725 -> 95724", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95725, + "TargetID": 95724, + "Directional": false + } + ] + }, + { + "ID": 371, + "SourceStructureID": 95751, + "TargetStructureID": 180, + "Label": "95751-180 via Adherens from 132908 -> 132909", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132908, + "TargetID": 132909, + "Directional": false + } + ] + }, + { + "ID": 372, + "SourceStructureID": 95804, + "TargetStructureID": 180, + "Label": "95804-180 via Unknown from 95805 -> 95806", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95805, + "TargetID": 95806, + "Directional": false + } + ] + }, + { + "ID": 373, + "SourceStructureID": 95807, + "TargetStructureID": 180, + "Label": "95807-180 via Adherens from 132955 -> 132954", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132955, + "TargetID": 132954, + "Directional": false + } + ] + }, + { + "ID": 374, + "SourceStructureID": 180, + "TargetStructureID": 95810, + "Label": "180-95810 via Unknown from 133019 -> 133020", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133019, + "TargetID": 133020, + "Directional": false + } + ] + }, + { + "ID": 375, + "SourceStructureID": 180, + "TargetStructureID": 95829, + "Label": "180-95829 via Adherens from 132962 -> 132963", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132962, + "TargetID": 132963, + "Directional": false + } + ] + }, + { + "ID": 376, + "SourceStructureID": 95840, + "TargetStructureID": 180, + "Label": "95840-180 via Unknown from 132872 -> 132871", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132872, + "TargetID": 132871, + "Directional": false + } + ] + }, + { + "ID": 377, + "SourceStructureID": 95863, + "TargetStructureID": 180, + "Label": "95863-180 via Unknown from 95865 -> 95864", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95865, + "TargetID": 95864, + "Directional": false + } + ] + }, + { + "ID": 378, + "SourceStructureID": 180, + "TargetStructureID": 95866, + "Label": "180-95866 via Adherens from 133002 -> 133001, 133003 -> 133004", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133002, + "TargetID": 133001, + "Directional": false + }, + { + "SourceID": 133003, + "TargetID": 133004, + "Directional": false + } + ] + }, + { + "ID": 379, + "SourceStructureID": 95883, + "TargetStructureID": 180, + "Label": "95883-180 via Unknown from 95885 -> 95884", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95885, + "TargetID": 95884, + "Directional": false + } + ] + }, + { + "ID": 380, + "SourceStructureID": 180, + "TargetStructureID": 95910, + "Label": "180-95910 via Unknown from 95918 -> 95919", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95918, + "TargetID": 95919, + "Directional": false + } + ] + }, + { + "ID": 381, + "SourceStructureID": 95911, + "TargetStructureID": 180, + "Label": "95911-180 via Unknown from 95912 -> 90890", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95912, + "TargetID": 90890, + "Directional": false + } + ] + }, + { + "ID": 382, + "SourceStructureID": 180, + "TargetStructureID": 95915, + "Label": "180-95915 via Unknown from 114317 -> 114316", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114317, + "TargetID": 114316, + "Directional": false + } + ] + }, + { + "ID": 383, + "SourceStructureID": 95917, + "TargetStructureID": 180, + "Label": "95917-180 via Adherens from 132848 -> 90886", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132848, + "TargetID": 90886, + "Directional": false + } + ] + }, + { + "ID": 384, + "SourceStructureID": 95951, + "TargetStructureID": 180, + "Label": "95951-180 via Unknown from 95955 -> 95956", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95955, + "TargetID": 95956, + "Directional": false + } + ] + }, + { + "ID": 385, + "SourceStructureID": 180, + "TargetStructureID": 95978, + "Label": "180-95978 via Unknown from 133137 -> 133138", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133137, + "TargetID": 133138, + "Directional": false + } + ] + }, + { + "ID": 386, + "SourceStructureID": 95986, + "TargetStructureID": 180, + "Label": "95986-180 via Unknown from 95988 -> 95989", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95988, + "TargetID": 95989, + "Directional": false + } + ] + }, + { + "ID": 387, + "SourceStructureID": 180, + "TargetStructureID": 95990, + "Label": "180-95990 via Unknown from 95996 -> 95995", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95996, + "TargetID": 95995, + "Directional": false + } + ] + }, + { + "ID": 388, + "SourceStructureID": 180, + "TargetStructureID": 95997, + "Label": "180-95997 via Adherens from 96007 -> 96008, 116600 -> 116599", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96007, + "TargetID": 96008, + "Directional": false + }, + { + "SourceID": 116600, + "TargetID": 116599, + "Directional": false + } + ] + }, + { + "ID": 389, + "SourceStructureID": 180, + "TargetStructureID": 96011, + "Label": "180-96011 via Unknown from 96032 -> 96031", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96032, + "TargetID": 96031, + "Directional": false + } + ] + }, + { + "ID": 390, + "SourceStructureID": 96023, + "TargetStructureID": 180, + "Label": "96023-180 via Adherens from 96024 -> 96025", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96024, + "TargetID": 96025, + "Directional": false + } + ] + }, + { + "ID": 391, + "SourceStructureID": 5278, + "TargetStructureID": 181, + "Label": "5278-181 via Touch from 120264 -> 120265", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 120264, + "TargetID": 120265, + "Directional": false + } + ] + }, + { + "ID": 392, + "SourceStructureID": 181, + "TargetStructureID": 92169, + "Label": "181-92169 via Touch from 92172 -> 92171", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 92172, + "TargetID": 92171, + "Directional": false + } + ] + }, + { + "ID": 393, + "SourceStructureID": 92175, + "TargetStructureID": 181, + "Label": "92175-181 via Gap Junction from 92179 -> 92180", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92179, + "TargetID": 92180, + "Directional": false + } + ] + }, + { + "ID": 394, + "SourceStructureID": 223, + "TargetStructureID": 284, + "Label": "223-284 via Gap Junction from 17519 -> 17518, 17520 -> 14350, 17521 -> 17419, 131778 -> 131779", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17519, + "TargetID": 17518, + "Directional": false + }, + { + "SourceID": 17520, + "TargetID": 14350, + "Directional": false + }, + { + "SourceID": 17521, + "TargetID": 17419, + "Directional": false + }, + { + "SourceID": 131778, + "TargetID": 131779, + "Directional": false + } + ] + }, + { + "ID": 395, + "SourceStructureID": 299, + "TargetStructureID": 223, + "Label": "299-223 via Gap Junction from 47093 -> 17659", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47093, + "TargetID": 17659, + "Directional": false + } + ] + }, + { + "ID": 396, + "SourceStructureID": 223, + "TargetStructureID": 307, + "Label": "223-307 via Gap Junction from 96375 -> 96374", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96375, + "TargetID": 96374, + "Directional": false + } + ] + }, + { + "ID": 397, + "SourceStructureID": 223, + "TargetStructureID": 309, + "Label": "223-309 via Gap Junction from 122310 -> 122309", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122310, + "TargetID": 122309, + "Directional": false + } + ] + }, + { + "ID": 398, + "SourceStructureID": 223, + "TargetStructureID": 321, + "Label": "223-321 via Gap Junction from 115571 -> 115570", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115571, + "TargetID": 115570, + "Directional": false + } + ] + }, + { + "ID": 399, + "SourceStructureID": 324, + "TargetStructureID": 223, + "Label": "324-223 via Gap Junction from 94219 -> 94218, 96133 -> 96134, 96137 -> 96136", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94219, + "TargetID": 94218, + "Directional": false + }, + { + "SourceID": 96133, + "TargetID": 96134, + "Directional": false + }, + { + "SourceID": 96137, + "TargetID": 96136, + "Directional": false + } + ] + }, + { + "ID": 400, + "SourceStructureID": 223, + "TargetStructureID": 410, + "Label": "223-410 via Adherens from 17663 -> 17664", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 17663, + "TargetID": 17664, + "Directional": false + } + ] + }, + { + "ID": 401, + "SourceStructureID": 223, + "TargetStructureID": 410, + "Label": "223-410 via Gap Junction from 14347 -> 14346, 17661 -> 17660, 17665 -> 9225, 18373 -> 17818, 18378 -> 18377, 18543 -> 18542", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14347, + "TargetID": 14346, + "Directional": false + }, + { + "SourceID": 17661, + "TargetID": 17660, + "Directional": false + }, + { + "SourceID": 17665, + "TargetID": 9225, + "Directional": false + }, + { + "SourceID": 18373, + "TargetID": 17818, + "Directional": false + }, + { + "SourceID": 18378, + "TargetID": 18377, + "Directional": false + }, + { + "SourceID": 18543, + "TargetID": 18542, + "Directional": false + } + ] + }, + { + "ID": 402, + "SourceStructureID": 223, + "TargetStructureID": 2610, + "Label": "223-2610 via Gap Junction from 17673 -> 17674", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17673, + "TargetID": 17674, + "Directional": false + } + ] + }, + { + "ID": 403, + "SourceStructureID": 6153, + "TargetStructureID": 223, + "Label": "6153-223 via Gap Junction from 17489 -> 17488, 17837 -> 16621, 29593 -> 29592, 29599 -> 29598", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17489, + "TargetID": 17488, + "Directional": false + }, + { + "SourceID": 17837, + "TargetID": 16621, + "Directional": false + }, + { + "SourceID": 29593, + "TargetID": 29592, + "Directional": false + }, + { + "SourceID": 29599, + "TargetID": 29598, + "Directional": false + } + ] + }, + { + "ID": 404, + "SourceStructureID": 47195, + "TargetStructureID": 223, + "Label": "47195-223 via Gap Junction from 47197 -> 47194, 47198 -> 58750", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47197, + "TargetID": 47194, + "Directional": false + }, + { + "SourceID": 47198, + "TargetID": 58750, + "Directional": false + } + ] + }, + { + "ID": 405, + "SourceStructureID": 332, + "TargetStructureID": 268, + "Label": "332-268 via Gap Junction from 94947 -> 43466", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94947, + "TargetID": 43466, + "Directional": false + } + ] + }, + { + "ID": 406, + "SourceStructureID": 353, + "TargetStructureID": 268, + "Label": "353-268 via Gap Junction from 122636 -> 122160", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122636, + "TargetID": 122160, + "Directional": false + } + ] + }, + { + "ID": 407, + "SourceStructureID": 268, + "TargetStructureID": 7157, + "Label": "268-7157 via Gap Junction from 122162 -> 122161", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122162, + "TargetID": 122161, + "Directional": false + } + ] + }, + { + "ID": 408, + "SourceStructureID": 352, + "TargetStructureID": 273, + "Label": "352-273 via Gap Junction from 94520 -> 94519", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94520, + "TargetID": 94519, + "Directional": false + } + ] + }, + { + "ID": 409, + "SourceStructureID": 276, + "TargetStructureID": 284, + "Label": "276-284 via Adherens from 29539 -> 29538", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 29539, + "TargetID": 29538, + "Directional": false + } + ] + }, + { + "ID": 410, + "SourceStructureID": 276, + "TargetStructureID": 284, + "Label": "276-284 via Gap Junction from 29537 -> 29536, 122164 -> 122165, 122166 -> 29530", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29537, + "TargetID": 29536, + "Directional": false + }, + { + "SourceID": 122164, + "TargetID": 122165, + "Directional": false + }, + { + "SourceID": 122166, + "TargetID": 29530, + "Directional": false + } + ] + }, + { + "ID": 411, + "SourceStructureID": 276, + "TargetStructureID": 332, + "Label": "276-332 via Touch from 122170 -> 122169", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 122170, + "TargetID": 122169, + "Directional": false + } + ] + }, + { + "ID": 412, + "SourceStructureID": 276, + "TargetStructureID": 6153, + "Label": "276-6153 via Gap Junction from 122163 -> 29473", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122163, + "TargetID": 29473, + "Directional": false + } + ] + }, + { + "ID": 413, + "SourceStructureID": 7157, + "TargetStructureID": 276, + "Label": "7157-276 via Gap Junction from 31642 -> 31644, 31670 -> 31669", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 31642, + "TargetID": 31644, + "Directional": false + }, + { + "SourceID": 31670, + "TargetID": 31669, + "Directional": false + } + ] + }, + { + "ID": 414, + "SourceStructureID": 277, + "TargetStructureID": 277, + "Label": "277-277 via Gap Junction from 115500 -> 115499", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115500, + "TargetID": 115499, + "Directional": false + } + ] + }, + { + "ID": 415, + "SourceStructureID": 277, + "TargetStructureID": 278, + "Label": "277-278 via Adherens from 39019 -> 39018", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 39019, + "TargetID": 39018, + "Directional": false + } + ] + }, + { + "ID": 416, + "SourceStructureID": 327, + "TargetStructureID": 277, + "Label": "327-277 via Adherens from 115507 -> 115506", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115507, + "TargetID": 115506, + "Directional": false + } + ] + }, + { + "ID": 417, + "SourceStructureID": 277, + "TargetStructureID": 327, + "Label": "277-327 via Gap Junction from 23396 -> 23397, 58591 -> 58590, 115502 -> 115501, 115518 -> 115517, 115541 -> 115539, 115551 -> 115546, 122135 -> 122133, 122136 -> 122137", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 23396, + "TargetID": 23397, + "Directional": false + }, + { + "SourceID": 58591, + "TargetID": 58590, + "Directional": false + }, + { + "SourceID": 115502, + "TargetID": 115501, + "Directional": false + }, + { + "SourceID": 115518, + "TargetID": 115517, + "Directional": false + }, + { + "SourceID": 115541, + "TargetID": 115539, + "Directional": false + }, + { + "SourceID": 115551, + "TargetID": 115546, + "Directional": false + }, + { + "SourceID": 122135, + "TargetID": 122133, + "Directional": false + }, + { + "SourceID": 122136, + "TargetID": 122137, + "Directional": false + } + ] + }, + { + "ID": 418, + "SourceStructureID": 327, + "TargetStructureID": 277, + "Label": "327-277 via Unknown from 115498 -> 115497", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115498, + "TargetID": 115497, + "Directional": false + } + ] + }, + { + "ID": 419, + "SourceStructureID": 277, + "TargetStructureID": 335, + "Label": "277-335 via Gap Junction from 115492 -> 115491, 122132 -> 122131", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115492, + "TargetID": 115491, + "Directional": false + }, + { + "SourceID": 122132, + "TargetID": 122131, + "Directional": false + } + ] + }, + { + "ID": 420, + "SourceStructureID": 277, + "TargetStructureID": 366, + "Label": "277-366 via Gap Junction from 56520 -> 13609, 56521 -> 13609", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56520, + "TargetID": 13609, + "Directional": false + }, + { + "SourceID": 56521, + "TargetID": 13609, + "Directional": false + } + ] + }, + { + "ID": 421, + "SourceStructureID": 431, + "TargetStructureID": 277, + "Label": "431-277 via Gap Junction from 115544 -> 115543", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115544, + "TargetID": 115543, + "Directional": false + } + ] + }, + { + "ID": 422, + "SourceStructureID": 7157, + "TargetStructureID": 277, + "Label": "7157-277 via Gap Junction from 26194 -> 26032, 26248 -> 26247, 29972 -> 29971, 115490 -> 115489, 115545 -> 115542, 130658 -> 26067", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 26194, + "TargetID": 26032, + "Directional": false + }, + { + "SourceID": 26248, + "TargetID": 26247, + "Directional": false + }, + { + "SourceID": 29972, + "TargetID": 29971, + "Directional": false + }, + { + "SourceID": 115490, + "TargetID": 115489, + "Directional": false + }, + { + "SourceID": 115545, + "TargetID": 115542, + "Directional": false + }, + { + "SourceID": 130658, + "TargetID": 26067, + "Directional": false + } + ] + }, + { + "ID": 423, + "SourceStructureID": 115504, + "TargetStructureID": 277, + "Label": "115504-277 via Gap Junction from 115505 -> 115503", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115505, + "TargetID": 115503, + "Directional": false + } + ] + }, + { + "ID": 424, + "SourceStructureID": 115519, + "TargetStructureID": 277, + "Label": "115519-277 via Gap Junction from 115521 -> 115520", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115521, + "TargetID": 115520, + "Directional": false + } + ] + }, + { + "ID": 425, + "SourceStructureID": 115525, + "TargetStructureID": 277, + "Label": "115525-277 via Gap Junction from 115527 -> 115524", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115527, + "TargetID": 115524, + "Directional": false + } + ] + }, + { + "ID": 426, + "SourceStructureID": 115529, + "TargetStructureID": 277, + "Label": "115529-277 via Gap Junction from 115530 -> 115528", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115530, + "TargetID": 115528, + "Directional": false + } + ] + }, + { + "ID": 427, + "SourceStructureID": 115537, + "TargetStructureID": 277, + "Label": "115537-277 via Gap Junction from 115538 -> 115536", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115538, + "TargetID": 115536, + "Directional": false + } + ] + }, + { + "ID": 428, + "SourceStructureID": 327, + "TargetStructureID": 278, + "Label": "327-278 via Unknown from 122130 -> 122127", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 122130, + "TargetID": 122127, + "Directional": false + } + ] + }, + { + "ID": 429, + "SourceStructureID": 5439, + "TargetStructureID": 280, + "Label": "5439-280 via Adherens from 85708 -> 85709", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85708, + "TargetID": 85709, + "Directional": false + } + ] + }, + { + "ID": 430, + "SourceStructureID": 32566, + "TargetStructureID": 280, + "Label": "32566-280 via Adherens from 64562 -> 64561, 64564 -> 64563, 64566 -> 64565", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64562, + "TargetID": 64561, + "Directional": false + }, + { + "SourceID": 64564, + "TargetID": 64563, + "Directional": false + }, + { + "SourceID": 64566, + "TargetID": 64565, + "Directional": false + } + ] + }, + { + "ID": 431, + "SourceStructureID": 286, + "TargetStructureID": 284, + "Label": "286-284 via Gap Junction from 29486 -> 29483, 58621 -> 58620, 95220 -> 26281, 95376 -> 95369, 95380 -> 95381", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29486, + "TargetID": 29483, + "Directional": false + }, + { + "SourceID": 58621, + "TargetID": 58620, + "Directional": false + }, + { + "SourceID": 95220, + "TargetID": 26281, + "Directional": false + }, + { + "SourceID": 95376, + "TargetID": 95369, + "Directional": false + }, + { + "SourceID": 95380, + "TargetID": 95381, + "Directional": false + } + ] + }, + { + "ID": 432, + "SourceStructureID": 284, + "TargetStructureID": 309, + "Label": "284-309 via Gap Junction from 17467 -> 13484", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17467, + "TargetID": 13484, + "Directional": false + } + ] + }, + { + "ID": 433, + "SourceStructureID": 321, + "TargetStructureID": 284, + "Label": "321-284 via Gap Junction from 23038 -> 17434, 55211 -> 29481, 115553 -> 115552, 115568 -> 115569, 115572 -> 17433, 122181 -> 122180, 122187 -> 122184, 122201 -> 122202, 122213 -> 17430, 122215 -> 122214", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 23038, + "TargetID": 17434, + "Directional": false + }, + { + "SourceID": 55211, + "TargetID": 29481, + "Directional": false + }, + { + "SourceID": 115553, + "TargetID": 115552, + "Directional": false + }, + { + "SourceID": 115568, + "TargetID": 115569, + "Directional": false + }, + { + "SourceID": 115572, + "TargetID": 17433, + "Directional": false + }, + { + "SourceID": 122181, + "TargetID": 122180, + "Directional": false + }, + { + "SourceID": 122187, + "TargetID": 122184, + "Directional": false + }, + { + "SourceID": 122201, + "TargetID": 122202, + "Directional": false + }, + { + "SourceID": 122213, + "TargetID": 17430, + "Directional": false + }, + { + "SourceID": 122215, + "TargetID": 122214, + "Directional": false + } + ] + }, + { + "ID": 434, + "SourceStructureID": 284, + "TargetStructureID": 324, + "Label": "284-324 via Gap Junction from 29482 -> 93910", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29482, + "TargetID": 93910, + "Directional": false + } + ] + }, + { + "ID": 435, + "SourceStructureID": 332, + "TargetStructureID": 284, + "Label": "332-284 via Adherens from 29528 -> 29527", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 29528, + "TargetID": 29527, + "Directional": false + } + ] + }, + { + "ID": 436, + "SourceStructureID": 332, + "TargetStructureID": 284, + "Label": "332-284 via Gap Junction from 29526 -> 29525, 95191 -> 95192", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29526, + "TargetID": 29525, + "Directional": false + }, + { + "SourceID": 95191, + "TargetID": 95192, + "Directional": false + } + ] + }, + { + "ID": 437, + "SourceStructureID": 4835, + "TargetStructureID": 284, + "Label": "4835-284 via Gap Junction from 29608 -> 29607", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29608, + "TargetID": 29607, + "Directional": false + } + ] + }, + { + "ID": 438, + "SourceStructureID": 284, + "TargetStructureID": 6153, + "Label": "284-6153 via Adherens from 29544 -> 29543", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 29544, + "TargetID": 29543, + "Directional": false + } + ] + }, + { + "ID": 439, + "SourceStructureID": 6153, + "TargetStructureID": 284, + "Label": "6153-284 via Gap Junction from 17455 -> 17454, 17463 -> 17462, 17509 -> 14371, 17510 -> 14369, 29498 -> 29479, 29542 -> 29520", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17455, + "TargetID": 17454, + "Directional": false + }, + { + "SourceID": 17463, + "TargetID": 17462, + "Directional": false + }, + { + "SourceID": 17509, + "TargetID": 14371, + "Directional": false + }, + { + "SourceID": 17510, + "TargetID": 14369, + "Directional": false + }, + { + "SourceID": 29498, + "TargetID": 29479, + "Directional": false + }, + { + "SourceID": 29542, + "TargetID": 29520, + "Directional": false + } + ] + }, + { + "ID": 440, + "SourceStructureID": 7157, + "TargetStructureID": 284, + "Label": "7157-284 via Adherens from 26298 -> 26297, 26300 -> 26299", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 26298, + "TargetID": 26297, + "Directional": false + }, + { + "SourceID": 26300, + "TargetID": 26299, + "Directional": false + } + ] + }, + { + "ID": 441, + "SourceStructureID": 284, + "TargetStructureID": 7157, + "Label": "284-7157 via Gap Junction from 29580 -> 26271, 29586 -> 29585, 29610 -> 29611, 131781 -> 131780", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29580, + "TargetID": 26271, + "Directional": false + }, + { + "SourceID": 29586, + "TargetID": 29585, + "Directional": false + }, + { + "SourceID": 29610, + "TargetID": 29611, + "Directional": false + }, + { + "SourceID": 131781, + "TargetID": 131780, + "Directional": false + } + ] + }, + { + "ID": 442, + "SourceStructureID": 30102, + "TargetStructureID": 284, + "Label": "30102-284 via Gap Junction from 30107 -> 30106", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 30107, + "TargetID": 30106, + "Directional": false + } + ] + }, + { + "ID": 443, + "SourceStructureID": 284, + "TargetStructureID": 71870, + "Label": "284-71870 via Adherens from 71869 -> 71871", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71869, + "TargetID": 71871, + "Directional": false + } + ] + }, + { + "ID": 444, + "SourceStructureID": 76127, + "TargetStructureID": 284, + "Label": "76127-284 via Adherens from 76131 -> 76130", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76131, + "TargetID": 76130, + "Directional": false + } + ] + }, + { + "ID": 445, + "SourceStructureID": 76127, + "TargetStructureID": 284, + "Label": "76127-284 via Gap Junction from 76129 -> 76125", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 76129, + "TargetID": 76125, + "Directional": false + } + ] + }, + { + "ID": 446, + "SourceStructureID": 286, + "TargetStructureID": 286, + "Label": "286-286 via Gap Junction from 95347 -> 95348", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 95347, + "TargetID": 95348, + "Directional": false + } + ] + }, + { + "ID": 447, + "SourceStructureID": 327, + "TargetStructureID": 286, + "Label": "327-286 via Unknown from 58607 -> 58606", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 58607, + "TargetID": 58606, + "Directional": false + } + ] + }, + { + "ID": 448, + "SourceStructureID": 286, + "TargetStructureID": 332, + "Label": "286-332 via Gap Junction from 58600 -> 58602, 58619 -> 58618, 95286 -> 95287, 95291 -> 94916", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 58600, + "TargetID": 58602, + "Directional": false + }, + { + "SourceID": 58619, + "TargetID": 58618, + "Directional": false + }, + { + "SourceID": 95286, + "TargetID": 95287, + "Directional": false + }, + { + "SourceID": 95291, + "TargetID": 94916, + "Directional": false + } + ] + }, + { + "ID": 449, + "SourceStructureID": 286, + "TargetStructureID": 419, + "Label": "286-419 via Adherens from 133490 -> 131776, 133494 -> 133493", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133490, + "TargetID": 131776, + "Directional": false + }, + { + "SourceID": 133494, + "TargetID": 133493, + "Directional": false + } + ] + }, + { + "ID": 450, + "SourceStructureID": 419, + "TargetStructureID": 286, + "Label": "419-286 via Gap Junction from 133491 -> 133492", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 133491, + "TargetID": 133492, + "Directional": false + } + ] + }, + { + "ID": 451, + "SourceStructureID": 483, + "TargetStructureID": 286, + "Label": "483-286 via Gap Junction from 58615 -> 58608", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 58615, + "TargetID": 58608, + "Directional": false + } + ] + }, + { + "ID": 452, + "SourceStructureID": 5439, + "TargetStructureID": 286, + "Label": "5439-286 via Adherens from 85712 -> 85714", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85712, + "TargetID": 85714, + "Directional": false + } + ] + }, + { + "ID": 453, + "SourceStructureID": 6153, + "TargetStructureID": 286, + "Label": "6153-286 via Gap Junction from 121621 -> 121620", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121621, + "TargetID": 121620, + "Directional": false + } + ] + }, + { + "ID": 454, + "SourceStructureID": 95246, + "TargetStructureID": 286, + "Label": "95246-286 via Unknown from 95247 -> 95245", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95247, + "TargetID": 95245, + "Directional": false + } + ] + }, + { + "ID": 455, + "SourceStructureID": 95282, + "TargetStructureID": 286, + "Label": "95282-286 via Unknown from 95285 -> 95281", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95285, + "TargetID": 95281, + "Directional": false + } + ] + }, + { + "ID": 456, + "SourceStructureID": 286, + "TargetStructureID": 95304, + "Label": "286-95304 via Unknown from 120358 -> 120357", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120358, + "TargetID": 120357, + "Directional": false + } + ] + }, + { + "ID": 457, + "SourceStructureID": 95343, + "TargetStructureID": 286, + "Label": "95343-286 via Unknown from 120364 -> 120363", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120364, + "TargetID": 120363, + "Directional": false + } + ] + }, + { + "ID": 458, + "SourceStructureID": 294, + "TargetStructureID": 25440, + "Label": "294-25440 via Touch from 25465 -> 25464", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 25465, + "TargetID": 25464, + "Directional": false + } + ] + }, + { + "ID": 459, + "SourceStructureID": 298, + "TargetStructureID": 299, + "Label": "298-299 via Gap Junction from 122733 -> 122734, 122739 -> 122738, 122776 -> 122775", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122733, + "TargetID": 122734, + "Directional": false + }, + { + "SourceID": 122739, + "TargetID": 122738, + "Directional": false + }, + { + "SourceID": 122776, + "TargetID": 122775, + "Directional": false + } + ] + }, + { + "ID": 460, + "SourceStructureID": 298, + "TargetStructureID": 47095, + "Label": "298-47095 via Gap Junction from 122759 -> 122758", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122759, + "TargetID": 122758, + "Directional": false + } + ] + }, + { + "ID": 461, + "SourceStructureID": 304, + "TargetStructureID": 299, + "Label": "304-299 via Gap Junction from 16572 -> 16576, 16574 -> 7224", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16572, + "TargetID": 16576, + "Directional": false + }, + { + "SourceID": 16574, + "TargetID": 7224, + "Directional": false + } + ] + }, + { + "ID": 462, + "SourceStructureID": 299, + "TargetStructureID": 397, + "Label": "299-397 via Gap Junction from 55353 -> 55352, 122704 -> 122703", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55353, + "TargetID": 55352, + "Directional": false + }, + { + "SourceID": 122704, + "TargetID": 122703, + "Directional": false + } + ] + }, + { + "ID": 463, + "SourceStructureID": 299, + "TargetStructureID": 410, + "Label": "299-410 via Gap Junction from 21402 -> 9285", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 21402, + "TargetID": 9285, + "Directional": false + } + ] + }, + { + "ID": 464, + "SourceStructureID": 307, + "TargetStructureID": 304, + "Label": "307-304 via Gap Junction from 16367 -> 16474, 16570 -> 16573", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16367, + "TargetID": 16474, + "Directional": false + }, + { + "SourceID": 16570, + "TargetID": 16573, + "Directional": false + } + ] + }, + { + "ID": 465, + "SourceStructureID": 304, + "TargetStructureID": 397, + "Label": "304-397 via Gap Junction from 46882 -> 46881, 46895 -> 17276, 71051 -> 71050, 122394 -> 122395, 122653 -> 122654, 122670 -> 122671, 122675 -> 122674, 122699 -> 122698, 122702 -> 122701", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46882, + "TargetID": 46881, + "Directional": false + }, + { + "SourceID": 46895, + "TargetID": 17276, + "Directional": false + }, + { + "SourceID": 71051, + "TargetID": 71050, + "Directional": false + }, + { + "SourceID": 122394, + "TargetID": 122395, + "Directional": false + }, + { + "SourceID": 122653, + "TargetID": 122654, + "Directional": false + }, + { + "SourceID": 122670, + "TargetID": 122671, + "Directional": false + }, + { + "SourceID": 122675, + "TargetID": 122674, + "Directional": false + }, + { + "SourceID": 122699, + "TargetID": 122698, + "Directional": false + }, + { + "SourceID": 122702, + "TargetID": 122701, + "Directional": false + } + ] + }, + { + "ID": 466, + "SourceStructureID": 304, + "TargetStructureID": 400, + "Label": "304-400 via Gap Junction from 17187 -> 18766, 17278 -> 17277, 130579 -> 130578, 130603 -> 130602, 132753 -> 132754", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17187, + "TargetID": 18766, + "Directional": false + }, + { + "SourceID": 17278, + "TargetID": 17277, + "Directional": false + }, + { + "SourceID": 130579, + "TargetID": 130578, + "Directional": false + }, + { + "SourceID": 130603, + "TargetID": 130602, + "Directional": false + }, + { + "SourceID": 132753, + "TargetID": 132754, + "Directional": false + } + ] + }, + { + "ID": 467, + "SourceStructureID": 410, + "TargetStructureID": 304, + "Label": "410-304 via Gap Junction from 17576 -> 17575, 17658 -> 17657, 17691 -> 17690, 17721 -> 17720, 17726 -> 17712, 17728 -> 17729, 17746 -> 17745, 18333 -> 18332, 18338 -> 18329, 18342 -> 18341, 18345 -> 18344, 18522 -> 18521, 19142 -> 19141, 22492 -> 22493, 22496 -> 22495, 22504 -> 22503", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17576, + "TargetID": 17575, + "Directional": false + }, + { + "SourceID": 17658, + "TargetID": 17657, + "Directional": false + }, + { + "SourceID": 17691, + "TargetID": 17690, + "Directional": false + }, + { + "SourceID": 17721, + "TargetID": 17720, + "Directional": false + }, + { + "SourceID": 17726, + "TargetID": 17712, + "Directional": false + }, + { + "SourceID": 17728, + "TargetID": 17729, + "Directional": false + }, + { + "SourceID": 17746, + "TargetID": 17745, + "Directional": false + }, + { + "SourceID": 18333, + "TargetID": 18332, + "Directional": false + }, + { + "SourceID": 18338, + "TargetID": 18329, + "Directional": false + }, + { + "SourceID": 18342, + "TargetID": 18341, + "Directional": false + }, + { + "SourceID": 18345, + "TargetID": 18344, + "Directional": false + }, + { + "SourceID": 18522, + "TargetID": 18521, + "Directional": false + }, + { + "SourceID": 19142, + "TargetID": 19141, + "Directional": false + }, + { + "SourceID": 22492, + "TargetID": 22493, + "Directional": false + }, + { + "SourceID": 22496, + "TargetID": 22495, + "Directional": false + }, + { + "SourceID": 22504, + "TargetID": 22503, + "Directional": false + } + ] + }, + { + "ID": 468, + "SourceStructureID": 304, + "TargetStructureID": 419, + "Label": "304-419 via Adherens from 133532 -> 132581", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133532, + "TargetID": 132581, + "Directional": false + } + ] + }, + { + "ID": 469, + "SourceStructureID": 304, + "TargetStructureID": 419, + "Label": "304-419 via Gap Junction from 131790 -> 131789, 133534 -> 133533", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131790, + "TargetID": 131789, + "Directional": false + }, + { + "SourceID": 133534, + "TargetID": 133533, + "Directional": false + } + ] + }, + { + "ID": 470, + "SourceStructureID": 304, + "TargetStructureID": 573, + "Label": "304-573 via Gap Junction from 18358 -> 18357, 20758 -> 18350, 135016 -> 135015", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 18358, + "TargetID": 18357, + "Directional": false + }, + { + "SourceID": 20758, + "TargetID": 18350, + "Directional": false + }, + { + "SourceID": 135016, + "TargetID": 135015, + "Directional": false + } + ] + }, + { + "ID": 471, + "SourceStructureID": 2610, + "TargetStructureID": 304, + "Label": "2610-304 via Gap Junction from 2992 -> 17913, 17200 -> 17199, 17208 -> 17209, 17211 -> 17210, 17646 -> 3008, 17957 -> 2949, 17961 -> 2958, 18220 -> 18219, 18234 -> 18233, 18879 -> 18878", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 2992, + "TargetID": 17913, + "Directional": false + }, + { + "SourceID": 17200, + "TargetID": 17199, + "Directional": false + }, + { + "SourceID": 17208, + "TargetID": 17209, + "Directional": false + }, + { + "SourceID": 17211, + "TargetID": 17210, + "Directional": false + }, + { + "SourceID": 17646, + "TargetID": 3008, + "Directional": false + }, + { + "SourceID": 17957, + "TargetID": 2949, + "Directional": false + }, + { + "SourceID": 17961, + "TargetID": 2958, + "Directional": false + }, + { + "SourceID": 18220, + "TargetID": 18219, + "Directional": false + }, + { + "SourceID": 18234, + "TargetID": 18233, + "Directional": false + }, + { + "SourceID": 18879, + "TargetID": 18878, + "Directional": false + } + ] + }, + { + "ID": 472, + "SourceStructureID": 304, + "TargetStructureID": 6589, + "Label": "304-6589 via Gap Junction from 123722 -> 123721, 130588 -> 130587, 130596 -> 130595, 132757 -> 132756, 132772 -> 132771", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123722, + "TargetID": 123721, + "Directional": false + }, + { + "SourceID": 130588, + "TargetID": 130587, + "Directional": false + }, + { + "SourceID": 130596, + "TargetID": 130595, + "Directional": false + }, + { + "SourceID": 132757, + "TargetID": 132756, + "Directional": false + }, + { + "SourceID": 132772, + "TargetID": 132771, + "Directional": false + } + ] + }, + { + "ID": 473, + "SourceStructureID": 304, + "TargetStructureID": 9693, + "Label": "304-9693 via Adherens from 135026 -> 135027", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135026, + "TargetID": 135027, + "Directional": false + } + ] + }, + { + "ID": 474, + "SourceStructureID": 9693, + "TargetStructureID": 304, + "Label": "9693-304 via Gap Junction from 39224 -> 39223, 59563 -> 59564, 134725 -> 119902", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 39224, + "TargetID": 39223, + "Directional": false + }, + { + "SourceID": 59563, + "TargetID": 59564, + "Directional": false + }, + { + "SourceID": 134725, + "TargetID": 119902, + "Directional": false + } + ] + }, + { + "ID": 475, + "SourceStructureID": 304, + "TargetStructureID": 15394, + "Label": "304-15394 via Adherens from 135017 -> 135018", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135017, + "TargetID": 135018, + "Directional": false + } + ] + }, + { + "ID": 476, + "SourceStructureID": 17527, + "TargetStructureID": 304, + "Label": "17527-304 via Gap Junction from 17748 -> 17747", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17748, + "TargetID": 17747, + "Directional": false + } + ] + }, + { + "ID": 477, + "SourceStructureID": 32654, + "TargetStructureID": 304, + "Label": "32654-304 via Gap Junction from 32656 -> 32655, 116365 -> 16469", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 32656, + "TargetID": 32655, + "Directional": false + }, + { + "SourceID": 116365, + "TargetID": 16469, + "Directional": false + } + ] + }, + { + "ID": 478, + "SourceStructureID": 40919, + "TargetStructureID": 304, + "Label": "40919-304 via Adherens from 60517 -> 60516", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60517, + "TargetID": 60516, + "Directional": false + } + ] + }, + { + "ID": 479, + "SourceStructureID": 91176, + "TargetStructureID": 304, + "Label": "91176-304 via Gap Junction from 91184 -> 91185", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91184, + "TargetID": 91185, + "Directional": false + } + ] + }, + { + "ID": 480, + "SourceStructureID": 324, + "TargetStructureID": 307, + "Label": "324-307 via Gap Junction from 32640 -> 32639, 83334 -> 83185", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 32640, + "TargetID": 32639, + "Directional": false + }, + { + "SourceID": 83334, + "TargetID": 83185, + "Directional": false + } + ] + }, + { + "ID": 481, + "SourceStructureID": 408, + "TargetStructureID": 307, + "Label": "408-307 via Gap Junction from 35766 -> 35767", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 35766, + "TargetID": 35767, + "Directional": false + } + ] + }, + { + "ID": 482, + "SourceStructureID": 307, + "TargetStructureID": 410, + "Label": "307-410 via Gap Junction from 17693 -> 17692", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17693, + "TargetID": 17692, + "Directional": false + } + ] + }, + { + "ID": 483, + "SourceStructureID": 606, + "TargetStructureID": 307, + "Label": "606-307 via Adherens from 45532 -> 45533", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 45532, + "TargetID": 45533, + "Directional": false + } + ] + }, + { + "ID": 484, + "SourceStructureID": 307, + "TargetStructureID": 5513, + "Label": "307-5513 via Gap Junction from 16021 -> 12344, 16789 -> 60663", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16021, + "TargetID": 12344, + "Directional": false + }, + { + "SourceID": 16789, + "TargetID": 60663, + "Directional": false + } + ] + }, + { + "ID": 485, + "SourceStructureID": 307, + "TargetStructureID": 9769, + "Label": "307-9769 via Adherens from 15956 -> 15957", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 15956, + "TargetID": 15957, + "Directional": false + } + ] + }, + { + "ID": 486, + "SourceStructureID": 307, + "TargetStructureID": 24303, + "Label": "307-24303 via Gap Junction from 121669 -> 121668, 122479 -> 122478, 122482 -> 122481", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121669, + "TargetID": 121668, + "Directional": false + }, + { + "SourceID": 122479, + "TargetID": 122478, + "Directional": false + }, + { + "SourceID": 122482, + "TargetID": 122481, + "Directional": false + } + ] + }, + { + "ID": 487, + "SourceStructureID": 308, + "TargetStructureID": 308, + "Label": "308-308 via Adherens from 42581 -> 42582", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 42581, + "TargetID": 42582, + "Directional": false + } + ] + }, + { + "ID": 488, + "SourceStructureID": 422, + "TargetStructureID": 308, + "Label": "422-308 via Adherens from 43100 -> 43099, 64542 -> 64541", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 43100, + "TargetID": 43099, + "Directional": false + }, + { + "SourceID": 64542, + "TargetID": 64541, + "Directional": false + } + ] + }, + { + "ID": 489, + "SourceStructureID": 308, + "TargetStructureID": 514, + "Label": "308-514 via Adherens from 42534 -> 13815, 43448 -> 43449, 43452 -> 43453, 43455 -> 43454, 43740 -> 43741, 86717 -> 42537", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 42534, + "TargetID": 13815, + "Directional": false + }, + { + "SourceID": 43448, + "TargetID": 43449, + "Directional": false + }, + { + "SourceID": 43452, + "TargetID": 43453, + "Directional": false + }, + { + "SourceID": 43455, + "TargetID": 43454, + "Directional": false + }, + { + "SourceID": 43740, + "TargetID": 43741, + "Directional": false + }, + { + "SourceID": 86717, + "TargetID": 42537, + "Directional": false + } + ] + }, + { + "ID": 490, + "SourceStructureID": 308, + "TargetStructureID": 573, + "Label": "308-573 via Adherens from 43530 -> 43531, 43532 -> 43533, 43549 -> 43539", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 43530, + "TargetID": 43531, + "Directional": false + }, + { + "SourceID": 43532, + "TargetID": 43533, + "Directional": false + }, + { + "SourceID": 43549, + "TargetID": 43539, + "Directional": false + } + ] + }, + { + "ID": 491, + "SourceStructureID": 606, + "TargetStructureID": 308, + "Label": "606-308 via Touch from 86694 -> 86695", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 86694, + "TargetID": 86695, + "Directional": false + } + ] + }, + { + "ID": 492, + "SourceStructureID": 2610, + "TargetStructureID": 308, + "Label": "2610-308 via Adherens from 43773 -> 43772, 43778 -> 43777", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 43773, + "TargetID": 43772, + "Directional": false + }, + { + "SourceID": 43778, + "TargetID": 43777, + "Directional": false + } + ] + }, + { + "ID": 493, + "SourceStructureID": 308, + "TargetStructureID": 3257, + "Label": "308-3257 via Adherens from 107207 -> 107208, 107210 -> 107209", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107207, + "TargetID": 107208, + "Directional": false + }, + { + "SourceID": 107210, + "TargetID": 107209, + "Directional": false + } + ] + }, + { + "ID": 494, + "SourceStructureID": 308, + "TargetStructureID": 5017, + "Label": "308-5017 via Adherens from 42562 -> 42563", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 42562, + "TargetID": 42563, + "Directional": false + } + ] + }, + { + "ID": 495, + "SourceStructureID": 308, + "TargetStructureID": 6153, + "Label": "308-6153 via Adherens from 43106 -> 43107, 43108 -> 43109", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 43106, + "TargetID": 43107, + "Directional": false + }, + { + "SourceID": 43108, + "TargetID": 43109, + "Directional": false + } + ] + }, + { + "ID": 496, + "SourceStructureID": 308, + "TargetStructureID": 8749, + "Label": "308-8749 via Adherens from 42574 -> 42575, 42579 -> 42578, 43734 -> 43735", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 42574, + "TargetID": 42575, + "Directional": false + }, + { + "SourceID": 42579, + "TargetID": 42578, + "Directional": false + }, + { + "SourceID": 43734, + "TargetID": 43735, + "Directional": false + } + ] + }, + { + "ID": 497, + "SourceStructureID": 17228, + "TargetStructureID": 308, + "Label": "17228-308 via Adherens from 43593 -> 43592, 43595 -> 43594", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 43593, + "TargetID": 43592, + "Directional": false + }, + { + "SourceID": 43595, + "TargetID": 43594, + "Directional": false + } + ] + }, + { + "ID": 498, + "SourceStructureID": 308, + "TargetStructureID": 18282, + "Label": "308-18282 via Touch from 86643 -> 86642", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 86643, + "TargetID": 86642, + "Directional": false + } + ] + }, + { + "ID": 499, + "SourceStructureID": 25688, + "TargetStructureID": 308, + "Label": "25688-308 via Adherens from 42544 -> 42543", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 42544, + "TargetID": 42543, + "Directional": false + } + ] + }, + { + "ID": 500, + "SourceStructureID": 308, + "TargetStructureID": 90409, + "Label": "308-90409 via Adherens from 107205 -> 107206", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107205, + "TargetID": 107206, + "Directional": false + } + ] + }, + { + "ID": 501, + "SourceStructureID": 309, + "TargetStructureID": 309, + "Label": "309-309 via Adherens from 122368 -> 122367", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 122368, + "TargetID": 122367, + "Directional": false + } + ] + }, + { + "ID": 502, + "SourceStructureID": 400, + "TargetStructureID": 309, + "Label": "400-309 via Adherens from 122373 -> 13267", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 122373, + "TargetID": 13267, + "Directional": false + } + ] + }, + { + "ID": 503, + "SourceStructureID": 309, + "TargetStructureID": 410, + "Label": "309-410 via Gap Junction from 121624 -> 121625, 122293 -> 122294", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121624, + "TargetID": 121625, + "Directional": false + }, + { + "SourceID": 122293, + "TargetID": 122294, + "Directional": false + } + ] + }, + { + "ID": 504, + "SourceStructureID": 483, + "TargetStructureID": 309, + "Label": "483-309 via Touch from 122372 -> 122371", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 122372, + "TargetID": 122371, + "Directional": false + } + ] + }, + { + "ID": 505, + "SourceStructureID": 309, + "TargetStructureID": 485, + "Label": "309-485 via Touch from 100045 -> 100044, 148007 -> 148006", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 100045, + "TargetID": 100044, + "Directional": false + }, + { + "SourceID": 148007, + "TargetID": 148006, + "Directional": false + } + ] + }, + { + "ID": 506, + "SourceStructureID": 309, + "TargetStructureID": 6153, + "Label": "309-6153 via Gap Junction from 13371 -> 14365, 121622 -> 13408", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 13371, + "TargetID": 14365, + "Directional": false + }, + { + "SourceID": 121622, + "TargetID": 13408, + "Directional": false + } + ] + }, + { + "ID": 507, + "SourceStructureID": 122353, + "TargetStructureID": 309, + "Label": "122353-309 via Gap Junction from 122354 -> 13388", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122354, + "TargetID": 13388, + "Directional": false + } + ] + }, + { + "ID": 508, + "SourceStructureID": 318, + "TargetStructureID": 483, + "Label": "318-483 via Unknown from 135080 -> 135079", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135080, + "TargetID": 135079, + "Directional": false + } + ] + }, + { + "ID": 509, + "SourceStructureID": 321, + "TargetStructureID": 324, + "Label": "321-324 via Gap Junction from 93940 -> 93941", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93940, + "TargetID": 93941, + "Directional": false + } + ] + }, + { + "ID": 510, + "SourceStructureID": 324, + "TargetStructureID": 321, + "Label": "324-321 via Unknown from 96340 -> 96338", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96340, + "TargetID": 96338, + "Directional": false + } + ] + }, + { + "ID": 511, + "SourceStructureID": 321, + "TargetStructureID": 327, + "Label": "321-327 via Adherens from 66264 -> 66263", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66264, + "TargetID": 66263, + "Directional": false + } + ] + }, + { + "ID": 512, + "SourceStructureID": 327, + "TargetStructureID": 321, + "Label": "327-321 via Gap Junction from 66262 -> 65955, 115555 -> 115554, 122189 -> 122188", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 66262, + "TargetID": 65955, + "Directional": false + }, + { + "SourceID": 115555, + "TargetID": 115554, + "Directional": false + }, + { + "SourceID": 122189, + "TargetID": 122188, + "Directional": false + } + ] + }, + { + "ID": 513, + "SourceStructureID": 327, + "TargetStructureID": 321, + "Label": "327-321 via Unknown from 115562 -> 115561", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115562, + "TargetID": 115561, + "Directional": false + } + ] + }, + { + "ID": 514, + "SourceStructureID": 321, + "TargetStructureID": 366, + "Label": "321-366 via Gap Junction from 115564 -> 115563", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115564, + "TargetID": 115563, + "Directional": false + } + ] + }, + { + "ID": 515, + "SourceStructureID": 479, + "TargetStructureID": 321, + "Label": "479-321 via Gap Junction from 38512 -> 38511, 56547 -> 56546", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38512, + "TargetID": 38511, + "Directional": false + }, + { + "SourceID": 56547, + "TargetID": 56546, + "Directional": false + } + ] + }, + { + "ID": 516, + "SourceStructureID": 321, + "TargetStructureID": 6153, + "Label": "321-6153 via Gap Junction from 115565 -> 17441, 115567 -> 115566", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115565, + "TargetID": 17441, + "Directional": false + }, + { + "SourceID": 115567, + "TargetID": 115566, + "Directional": false + } + ] + }, + { + "ID": 517, + "SourceStructureID": 32566, + "TargetStructureID": 321, + "Label": "32566-321 via Gap Junction from 122200 -> 122199", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122200, + "TargetID": 122199, + "Directional": false + } + ] + }, + { + "ID": 518, + "SourceStructureID": 115557, + "TargetStructureID": 321, + "Label": "115557-321 via Gap Junction from 115558 -> 115556", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115558, + "TargetID": 115556, + "Directional": false + } + ] + }, + { + "ID": 519, + "SourceStructureID": 115574, + "TargetStructureID": 321, + "Label": "115574-321 via Gap Junction from 115575 -> 115573", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115575, + "TargetID": 115573, + "Directional": false + } + ] + }, + { + "ID": 520, + "SourceStructureID": 115577, + "TargetStructureID": 321, + "Label": "115577-321 via Unknown from 115578 -> 115576", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115578, + "TargetID": 115576, + "Directional": false + } + ] + }, + { + "ID": 521, + "SourceStructureID": 324, + "TargetStructureID": 324, + "Label": "324-324 via Gap Junction from 12382 -> 93943, 55179 -> 53295, 93925 -> 93926, 96364 -> 96363", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 12382, + "TargetID": 93943, + "Directional": false + }, + { + "SourceID": 55179, + "TargetID": 53295, + "Directional": false + }, + { + "SourceID": 93925, + "TargetID": 93926, + "Directional": false + }, + { + "SourceID": 96364, + "TargetID": 96363, + "Directional": false + } + ] + }, + { + "ID": 522, + "SourceStructureID": 330, + "TargetStructureID": 324, + "Label": "330-324 via Gap Junction from 93778 -> 93777, 94056 -> 94055, 100805 -> 100804", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93778, + "TargetID": 93777, + "Directional": false + }, + { + "SourceID": 94056, + "TargetID": 94055, + "Directional": false + }, + { + "SourceID": 100805, + "TargetID": 100804, + "Directional": false + } + ] + }, + { + "ID": 523, + "SourceStructureID": 330, + "TargetStructureID": 324, + "Label": "330-324 via Unknown from 94058 -> 94057", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94058, + "TargetID": 94057, + "Directional": false + } + ] + }, + { + "ID": 524, + "SourceStructureID": 324, + "TargetStructureID": 364, + "Label": "324-364 via Adherens from 90351 -> 12817", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90351, + "TargetID": 12817, + "Directional": false + } + ] + }, + { + "ID": 525, + "SourceStructureID": 364, + "TargetStructureID": 324, + "Label": "364-324 via Gap Junction from 90353 -> 90352, 93551 -> 93552", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90353, + "TargetID": 90352, + "Directional": false + }, + { + "SourceID": 93551, + "TargetID": 93552, + "Directional": false + } + ] + }, + { + "ID": 526, + "SourceStructureID": 324, + "TargetStructureID": 364, + "Label": "324-364 via Unknown from 94247 -> 94246", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94247, + "TargetID": 94246, + "Directional": false + } + ] + }, + { + "ID": 527, + "SourceStructureID": 366, + "TargetStructureID": 324, + "Label": "366-324 via Gap Junction from 94078 -> 94079, 122251 -> 122252", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94078, + "TargetID": 94079, + "Directional": false + }, + { + "SourceID": 122251, + "TargetID": 122252, + "Directional": false + } + ] + }, + { + "ID": 528, + "SourceStructureID": 366, + "TargetStructureID": 324, + "Label": "366-324 via Touch from 135524 -> 135523", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 135524, + "TargetID": 135523, + "Directional": false + } + ] + }, + { + "ID": 529, + "SourceStructureID": 372, + "TargetStructureID": 324, + "Label": "372-324 via Adherens from 94544 -> 94543", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94544, + "TargetID": 94543, + "Directional": false + } + ] + }, + { + "ID": 530, + "SourceStructureID": 372, + "TargetStructureID": 324, + "Label": "372-324 via Unknown from 93541 -> 93540, 94103 -> 94102, 94455 -> 122343, 96381 -> 96380, 96391 -> 96392", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93541, + "TargetID": 93540, + "Directional": false + }, + { + "SourceID": 94103, + "TargetID": 94102, + "Directional": false + }, + { + "SourceID": 94455, + "TargetID": 122343, + "Directional": false + }, + { + "SourceID": 96381, + "TargetID": 96380, + "Directional": false + }, + { + "SourceID": 96391, + "TargetID": 96392, + "Directional": false + } + ] + }, + { + "ID": 531, + "SourceStructureID": 324, + "TargetStructureID": 428, + "Label": "324-428 via Unknown from 94071 -> 94070", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94071, + "TargetID": 94070, + "Directional": false + } + ] + }, + { + "ID": 532, + "SourceStructureID": 324, + "TargetStructureID": 476, + "Label": "324-476 via Gap Junction from 43559 -> 43560", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 43559, + "TargetID": 43560, + "Directional": false + } + ] + }, + { + "ID": 533, + "SourceStructureID": 324, + "TargetStructureID": 476, + "Label": "324-476 via Unknown from 96947 -> 96948", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96947, + "TargetID": 96948, + "Directional": false + } + ] + }, + { + "ID": 534, + "SourceStructureID": 324, + "TargetStructureID": 606, + "Label": "324-606 via Adherens from 53310 -> 53309, 53311 -> 53304", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 53310, + "TargetID": 53309, + "Directional": false + }, + { + "SourceID": 53311, + "TargetID": 53304, + "Directional": false + } + ] + }, + { + "ID": 535, + "SourceStructureID": 3116, + "TargetStructureID": 324, + "Label": "3116-324 via Gap Junction from 93704 -> 93703, 94450 -> 94451, 122347 -> 122348, 122349 -> 122350, 122352 -> 122351", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93704, + "TargetID": 93703, + "Directional": false + }, + { + "SourceID": 94450, + "TargetID": 94451, + "Directional": false + }, + { + "SourceID": 122347, + "TargetID": 122348, + "Directional": false + }, + { + "SourceID": 122349, + "TargetID": 122350, + "Directional": false + }, + { + "SourceID": 122352, + "TargetID": 122351, + "Directional": false + } + ] + }, + { + "ID": 536, + "SourceStructureID": 4569, + "TargetStructureID": 324, + "Label": "4569-324 via Unknown from 94504 -> 94503", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94504, + "TargetID": 94503, + "Directional": false + } + ] + }, + { + "ID": 537, + "SourceStructureID": 324, + "TargetStructureID": 4835, + "Label": "324-4835 via Gap Junction from 93554 -> 93553", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93554, + "TargetID": 93553, + "Directional": false + } + ] + }, + { + "ID": 538, + "SourceStructureID": 324, + "TargetStructureID": 4835, + "Label": "324-4835 via Unknown from 94257 -> 94256", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94257, + "TargetID": 94256, + "Directional": false + } + ] + }, + { + "ID": 539, + "SourceStructureID": 324, + "TargetStructureID": 6153, + "Label": "324-6153 via Gap Junction from 94096 -> 94095, 120592 -> 120591, 122331 -> 122330", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94096, + "TargetID": 94095, + "Directional": false + }, + { + "SourceID": 120592, + "TargetID": 120591, + "Directional": false + }, + { + "SourceID": 122331, + "TargetID": 122330, + "Directional": false + } + ] + }, + { + "ID": 540, + "SourceStructureID": 324, + "TargetStructureID": 6153, + "Label": "324-6153 via Unknown from 93543 -> 93542", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93543, + "TargetID": 93542, + "Directional": false + } + ] + }, + { + "ID": 541, + "SourceStructureID": 324, + "TargetStructureID": 9769, + "Label": "324-9769 via Adherens from 120596 -> 120597", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 120596, + "TargetID": 120597, + "Directional": false + } + ] + }, + { + "ID": 542, + "SourceStructureID": 9769, + "TargetStructureID": 324, + "Label": "9769-324 via Unknown from 94113 -> 94112", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94113, + "TargetID": 94112, + "Directional": false + } + ] + }, + { + "ID": 543, + "SourceStructureID": 30102, + "TargetStructureID": 324, + "Label": "30102-324 via Gap Junction from 30756 -> 30755", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 30756, + "TargetID": 30755, + "Directional": false + } + ] + }, + { + "ID": 544, + "SourceStructureID": 32566, + "TargetStructureID": 324, + "Label": "32566-324 via Unknown from 93913 -> 93912", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93913, + "TargetID": 93912, + "Directional": false + } + ] + }, + { + "ID": 545, + "SourceStructureID": 32608, + "TargetStructureID": 324, + "Label": "32608-324 via Unknown from 94067 -> 94066", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94067, + "TargetID": 94066, + "Directional": false + } + ] + }, + { + "ID": 546, + "SourceStructureID": 324, + "TargetStructureID": 34263, + "Label": "324-34263 via Adherens from 94087 -> 94088", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94087, + "TargetID": 94088, + "Directional": false + } + ] + }, + { + "ID": 547, + "SourceStructureID": 324, + "TargetStructureID": 34263, + "Label": "324-34263 via Unknown from 94086 -> 94085", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94086, + "TargetID": 94085, + "Directional": false + } + ] + }, + { + "ID": 548, + "SourceStructureID": 324, + "TargetStructureID": 38632, + "Label": "324-38632 via Unknown from 93620 -> 93619, 94230 -> 94229", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93620, + "TargetID": 93619, + "Directional": false + }, + { + "SourceID": 94230, + "TargetID": 94229, + "Directional": false + } + ] + }, + { + "ID": 549, + "SourceStructureID": 324, + "TargetStructureID": 55517, + "Label": "324-55517 via Unknown from 122115 -> 122114", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 122115, + "TargetID": 122114, + "Directional": false + } + ] + }, + { + "ID": 550, + "SourceStructureID": 66193, + "TargetStructureID": 324, + "Label": "66193-324 via Adherens from 94075 -> 94074", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94075, + "TargetID": 94074, + "Directional": false + } + ] + }, + { + "ID": 551, + "SourceStructureID": 66193, + "TargetStructureID": 324, + "Label": "66193-324 via Unknown from 94077 -> 94076, 122117 -> 122116", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94077, + "TargetID": 94076, + "Directional": false + }, + { + "SourceID": 122117, + "TargetID": 122116, + "Directional": false + } + ] + }, + { + "ID": 552, + "SourceStructureID": 83375, + "TargetStructureID": 324, + "Label": "83375-324 via Unknown from 83377 -> 83376", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83377, + "TargetID": 83376, + "Directional": false + } + ] + }, + { + "ID": 553, + "SourceStructureID": 324, + "TargetStructureID": 83382, + "Label": "324-83382 via Unknown from 96936 -> 96937", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96936, + "TargetID": 96937, + "Directional": false + } + ] + }, + { + "ID": 554, + "SourceStructureID": 324, + "TargetStructureID": 83385, + "Label": "324-83385 via Adherens from 83403 -> 83404, 83436 -> 83437", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83403, + "TargetID": 83404, + "Directional": false + }, + { + "SourceID": 83436, + "TargetID": 83437, + "Directional": false + } + ] + }, + { + "ID": 555, + "SourceStructureID": 324, + "TargetStructureID": 83399, + "Label": "324-83399 via Adherens from 83400 -> 83401", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83400, + "TargetID": 83401, + "Directional": false + } + ] + }, + { + "ID": 556, + "SourceStructureID": 83487, + "TargetStructureID": 324, + "Label": "83487-324 via Unknown from 83488 -> 83486", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83488, + "TargetID": 83486, + "Directional": false + } + ] + }, + { + "ID": 557, + "SourceStructureID": 324, + "TargetStructureID": 83489, + "Label": "324-83489 via Unknown from 96969 -> 96970", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96969, + "TargetID": 96970, + "Directional": false + } + ] + }, + { + "ID": 558, + "SourceStructureID": 324, + "TargetStructureID": 83541, + "Label": "324-83541 via Unknown from 83588 -> 83589, 96544 -> 96542", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83588, + "TargetID": 83589, + "Directional": false + }, + { + "SourceID": 96544, + "TargetID": 96542, + "Directional": false + } + ] + }, + { + "ID": 559, + "SourceStructureID": 83554, + "TargetStructureID": 324, + "Label": "83554-324 via Unknown from 83557 -> 83556", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83557, + "TargetID": 83556, + "Directional": false + } + ] + }, + { + "ID": 560, + "SourceStructureID": 324, + "TargetStructureID": 83569, + "Label": "324-83569 via Adherens from 83570 -> 83571", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83570, + "TargetID": 83571, + "Directional": false + } + ] + }, + { + "ID": 561, + "SourceStructureID": 324, + "TargetStructureID": 83572, + "Label": "324-83572 via Adherens from 83573 -> 83574", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83573, + "TargetID": 83574, + "Directional": false + } + ] + }, + { + "ID": 562, + "SourceStructureID": 324, + "TargetStructureID": 90463, + "Label": "324-90463 via Unknown from 94486 -> 94487", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94486, + "TargetID": 94487, + "Directional": false + } + ] + }, + { + "ID": 563, + "SourceStructureID": 93544, + "TargetStructureID": 324, + "Label": "93544-324 via Unknown from 93546 -> 93545", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93546, + "TargetID": 93545, + "Directional": false + } + ] + }, + { + "ID": 564, + "SourceStructureID": 93621, + "TargetStructureID": 324, + "Label": "93621-324 via Unknown from 93622 -> 93623", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93622, + "TargetID": 93623, + "Directional": false + } + ] + }, + { + "ID": 565, + "SourceStructureID": 324, + "TargetStructureID": 93915, + "Label": "324-93915 via Unknown from 93917 -> 93916", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93917, + "TargetID": 93916, + "Directional": false + } + ] + }, + { + "ID": 566, + "SourceStructureID": 324, + "TargetStructureID": 93927, + "Label": "324-93927 via Unknown from 93933 -> 93932", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93933, + "TargetID": 93932, + "Directional": false + } + ] + }, + { + "ID": 567, + "SourceStructureID": 93957, + "TargetStructureID": 324, + "Label": "93957-324 via Unknown from 93959 -> 93958", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93959, + "TargetID": 93958, + "Directional": false + } + ] + }, + { + "ID": 568, + "SourceStructureID": 324, + "TargetStructureID": 94059, + "Label": "324-94059 via Unknown from 94062 -> 94061", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94062, + "TargetID": 94061, + "Directional": false + } + ] + }, + { + "ID": 569, + "SourceStructureID": 94063, + "TargetStructureID": 324, + "Label": "94063-324 via Adherens from 94069 -> 94068", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94069, + "TargetID": 94068, + "Directional": false + } + ] + }, + { + "ID": 570, + "SourceStructureID": 324, + "TargetStructureID": 94063, + "Label": "324-94063 via Unknown from 94064 -> 94065", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94064, + "TargetID": 94065, + "Directional": false + } + ] + }, + { + "ID": 571, + "SourceStructureID": 94082, + "TargetStructureID": 324, + "Label": "94082-324 via Adherens from 94083 -> 94080", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94083, + "TargetID": 94080, + "Directional": false + } + ] + }, + { + "ID": 572, + "SourceStructureID": 94090, + "TargetStructureID": 324, + "Label": "94090-324 via Unknown from 94091 -> 94089", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94091, + "TargetID": 94089, + "Directional": false + } + ] + }, + { + "ID": 573, + "SourceStructureID": 324, + "TargetStructureID": 94097, + "Label": "324-94097 via Unknown from 94098 -> 94099", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94098, + "TargetID": 94099, + "Directional": false + } + ] + }, + { + "ID": 574, + "SourceStructureID": 324, + "TargetStructureID": 94105, + "Label": "324-94105 via Unknown from 94107 -> 94106", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94107, + "TargetID": 94106, + "Directional": false + } + ] + }, + { + "ID": 575, + "SourceStructureID": 324, + "TargetStructureID": 94220, + "Label": "324-94220 via Unknown from 94225 -> 94224", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94225, + "TargetID": 94224, + "Directional": false + } + ] + }, + { + "ID": 576, + "SourceStructureID": 324, + "TargetStructureID": 94221, + "Label": "324-94221 via Unknown from 94222 -> 94223", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94222, + "TargetID": 94223, + "Directional": false + } + ] + }, + { + "ID": 577, + "SourceStructureID": 94231, + "TargetStructureID": 324, + "Label": "94231-324 via Unknown from 94233 -> 94232, 94240 -> 94239", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94233, + "TargetID": 94232, + "Directional": false + }, + { + "SourceID": 94240, + "TargetID": 94239, + "Directional": false + } + ] + }, + { + "ID": 578, + "SourceStructureID": 94234, + "TargetStructureID": 324, + "Label": "94234-324 via Adherens from 94236 -> 94235", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94236, + "TargetID": 94235, + "Directional": false + } + ] + }, + { + "ID": 579, + "SourceStructureID": 94234, + "TargetStructureID": 324, + "Label": "94234-324 via Unknown from 94238 -> 94237", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94238, + "TargetID": 94237, + "Directional": false + } + ] + }, + { + "ID": 580, + "SourceStructureID": 94248, + "TargetStructureID": 324, + "Label": "94248-324 via Unknown from 94250 -> 94249", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94250, + "TargetID": 94249, + "Directional": false + } + ] + }, + { + "ID": 581, + "SourceStructureID": 94279, + "TargetStructureID": 324, + "Label": "94279-324 via Unknown from 94287 -> 94286", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94287, + "TargetID": 94286, + "Directional": false + } + ] + }, + { + "ID": 582, + "SourceStructureID": 94296, + "TargetStructureID": 324, + "Label": "94296-324 via Unknown from 94298 -> 94299", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94298, + "TargetID": 94299, + "Directional": false + } + ] + }, + { + "ID": 583, + "SourceStructureID": 94453, + "TargetStructureID": 324, + "Label": "94453-324 via Unknown from 94454 -> 94452", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94454, + "TargetID": 94452, + "Directional": false + } + ] + }, + { + "ID": 584, + "SourceStructureID": 324, + "TargetStructureID": 94462, + "Label": "324-94462 via Unknown from 94464 -> 94463", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94464, + "TargetID": 94463, + "Directional": false + } + ] + }, + { + "ID": 585, + "SourceStructureID": 324, + "TargetStructureID": 94465, + "Label": "324-94465 via Unknown from 94467 -> 94466", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94467, + "TargetID": 94466, + "Directional": false + } + ] + }, + { + "ID": 586, + "SourceStructureID": 327, + "TargetStructureID": 330, + "Label": "327-330 via Adherens from 25969 -> 25968", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 25969, + "TargetID": 25968, + "Directional": false + } + ] + }, + { + "ID": 587, + "SourceStructureID": 327, + "TargetStructureID": 335, + "Label": "327-335 via Gap Junction from 122151 -> 122152", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122151, + "TargetID": 122152, + "Directional": false + } + ] + }, + { + "ID": 588, + "SourceStructureID": 327, + "TargetStructureID": 335, + "Label": "327-335 via Unknown from 115618 -> 115619", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115618, + "TargetID": 115619, + "Directional": false + } + ] + }, + { + "ID": 589, + "SourceStructureID": 327, + "TargetStructureID": 366, + "Label": "327-366 via Adherens from 115624 -> 115623", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115624, + "TargetID": 115623, + "Directional": false + } + ] + }, + { + "ID": 590, + "SourceStructureID": 327, + "TargetStructureID": 366, + "Label": "327-366 via Gap Junction from 115622 -> 115616", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115622, + "TargetID": 115616, + "Directional": false + } + ] + }, + { + "ID": 591, + "SourceStructureID": 431, + "TargetStructureID": 327, + "Label": "431-327 via Gap Junction from 14185 -> 14184, 115549 -> 115548", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14185, + "TargetID": 14184, + "Directional": false + }, + { + "SourceID": 115549, + "TargetID": 115548, + "Directional": false + } + ] + }, + { + "ID": 592, + "SourceStructureID": 327, + "TargetStructureID": 90007, + "Label": "327-90007 via Adherens from 122150 -> 90008", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 122150, + "TargetID": 90008, + "Directional": false + } + ] + }, + { + "ID": 593, + "SourceStructureID": 327, + "TargetStructureID": 90007, + "Label": "327-90007 via Gap Junction from 122149 -> 90009", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122149, + "TargetID": 90009, + "Directional": false + } + ] + }, + { + "ID": 594, + "SourceStructureID": 330, + "TargetStructureID": 330, + "Label": "330-330 via Gap Junction from 25910 -> 25909, 117832 -> 117831, 122140 -> 12353", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 25910, + "TargetID": 25909, + "Directional": false + }, + { + "SourceID": 117832, + "TargetID": 117831, + "Directional": false + }, + { + "SourceID": 122140, + "TargetID": 12353, + "Directional": false + } + ] + }, + { + "ID": 595, + "SourceStructureID": 335, + "TargetStructureID": 330, + "Label": "335-330 via Adherens from 26138 -> 26137", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 26138, + "TargetID": 26137, + "Directional": false + } + ] + }, + { + "ID": 596, + "SourceStructureID": 335, + "TargetStructureID": 330, + "Label": "335-330 via Gap Junction from 14170 -> 14171, 26136 -> 1042, 30088 -> 30087, 38710 -> 38709, 60054 -> 60055, 117815 -> 117816, 122118 -> 122119, 122121 -> 122120", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14170, + "TargetID": 14171, + "Directional": false + }, + { + "SourceID": 26136, + "TargetID": 1042, + "Directional": false + }, + { + "SourceID": 30088, + "TargetID": 30087, + "Directional": false + }, + { + "SourceID": 38710, + "TargetID": 38709, + "Directional": false + }, + { + "SourceID": 60054, + "TargetID": 60055, + "Directional": false + }, + { + "SourceID": 117815, + "TargetID": 117816, + "Directional": false + }, + { + "SourceID": 122118, + "TargetID": 122119, + "Directional": false + }, + { + "SourceID": 122121, + "TargetID": 122120, + "Directional": false + } + ] + }, + { + "ID": 597, + "SourceStructureID": 364, + "TargetStructureID": 330, + "Label": "364-330 via Adherens from 12868 -> 12869", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 12868, + "TargetID": 12869, + "Directional": false + } + ] + }, + { + "ID": 598, + "SourceStructureID": 364, + "TargetStructureID": 330, + "Label": "364-330 via Gap Junction from 38681 -> 26199, 122825 -> 122826, 122827 -> 122828, 122843 -> 26182", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38681, + "TargetID": 26199, + "Directional": false + }, + { + "SourceID": 122825, + "TargetID": 122826, + "Directional": false + }, + { + "SourceID": 122827, + "TargetID": 122828, + "Directional": false + }, + { + "SourceID": 122843, + "TargetID": 26182, + "Directional": false + } + ] + }, + { + "ID": 599, + "SourceStructureID": 606, + "TargetStructureID": 330, + "Label": "606-330 via Adherens from 52981 -> 52982", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 52981, + "TargetID": 52982, + "Directional": false + } + ] + }, + { + "ID": 600, + "SourceStructureID": 330, + "TargetStructureID": 6165, + "Label": "330-6165 via Gap Junction from 118055 -> 118054", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118055, + "TargetID": 118054, + "Directional": false + } + ] + }, + { + "ID": 601, + "SourceStructureID": 330, + "TargetStructureID": 7157, + "Label": "330-7157 via Gap Junction from 25967 -> 21440, 26195 -> 26116, 122142 -> 122141", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 25967, + "TargetID": 21440, + "Directional": false + }, + { + "SourceID": 26195, + "TargetID": 26116, + "Directional": false + }, + { + "SourceID": 122142, + "TargetID": 122141, + "Directional": false + } + ] + }, + { + "ID": 602, + "SourceStructureID": 38632, + "TargetStructureID": 330, + "Label": "38632-330 via Adherens from 38668 -> 26160, 38669 -> 26159", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 38668, + "TargetID": 26160, + "Directional": false + }, + { + "SourceID": 38669, + "TargetID": 26159, + "Directional": false + } + ] + }, + { + "ID": 603, + "SourceStructureID": 330, + "TargetStructureID": 118058, + "Label": "330-118058 via Gap Junction from 38692 -> 118059, 118063 -> 118061", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38692, + "TargetID": 118059, + "Directional": false + }, + { + "SourceID": 118063, + "TargetID": 118061, + "Directional": false + } + ] + }, + { + "ID": 604, + "SourceStructureID": 332, + "TargetStructureID": 461, + "Label": "332-461 via Adherens from 94872 -> 14884", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94872, + "TargetID": 14884, + "Directional": false + } + ] + }, + { + "ID": 605, + "SourceStructureID": 461, + "TargetStructureID": 332, + "Label": "461-332 via Gap Junction from 60147 -> 60146", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60147, + "TargetID": 60146, + "Directional": false + } + ] + }, + { + "ID": 606, + "SourceStructureID": 461, + "TargetStructureID": 332, + "Label": "461-332 via Unknown from 94875 -> 94874", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94875, + "TargetID": 94874, + "Directional": false + } + ] + }, + { + "ID": 607, + "SourceStructureID": 332, + "TargetStructureID": 483, + "Label": "332-483 via Gap Junction from 60149 -> 60150", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60149, + "TargetID": 60150, + "Directional": false + } + ] + }, + { + "ID": 608, + "SourceStructureID": 4835, + "TargetStructureID": 332, + "Label": "4835-332 via Gap Junction from 35170 -> 35169", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 35170, + "TargetID": 35169, + "Directional": false + } + ] + }, + { + "ID": 609, + "SourceStructureID": 6153, + "TargetStructureID": 332, + "Label": "6153-332 via Gap Junction from 95005 -> 25138", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 95005, + "TargetID": 25138, + "Directional": false + } + ] + }, + { + "ID": 610, + "SourceStructureID": 332, + "TargetStructureID": 7157, + "Label": "332-7157 via Gap Junction from 24535 -> 24534, 26257 -> 26256, 33183 -> 33182, 94893 -> 94892, 94928 -> 94927, 95031 -> 95032, 95202 -> 95201", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24535, + "TargetID": 24534, + "Directional": false + }, + { + "SourceID": 26257, + "TargetID": 26256, + "Directional": false + }, + { + "SourceID": 33183, + "TargetID": 33182, + "Directional": false + }, + { + "SourceID": 94893, + "TargetID": 94892, + "Directional": false + }, + { + "SourceID": 94928, + "TargetID": 94927, + "Directional": false + }, + { + "SourceID": 95031, + "TargetID": 95032, + "Directional": false + }, + { + "SourceID": 95202, + "TargetID": 95201, + "Directional": false + } + ] + }, + { + "ID": 611, + "SourceStructureID": 332, + "TargetStructureID": 7468, + "Label": "332-7468 via Gap Junction from 95111 -> 31744", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 95111, + "TargetID": 31744, + "Directional": false + } + ] + }, + { + "ID": 612, + "SourceStructureID": 48416, + "TargetStructureID": 332, + "Label": "48416-332 via Gap Junction from 48417 -> 48415", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48417, + "TargetID": 48415, + "Directional": false + } + ] + }, + { + "ID": 613, + "SourceStructureID": 332, + "TargetStructureID": 95019, + "Label": "332-95019 via Unknown from 95018 -> 95026", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95018, + "TargetID": 95026, + "Directional": false + } + ] + }, + { + "ID": 614, + "SourceStructureID": 95205, + "TargetStructureID": 332, + "Label": "95205-332 via Gap Junction from 95206 -> 95204", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 95206, + "TargetID": 95204, + "Directional": false + } + ] + }, + { + "ID": 615, + "SourceStructureID": 332, + "TargetStructureID": 95207, + "Label": "332-95207 via Unknown from 95209 -> 95208", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95209, + "TargetID": 95208, + "Directional": false + } + ] + }, + { + "ID": 616, + "SourceStructureID": 96487, + "TargetStructureID": 332, + "Label": "96487-332 via Adherens from 96490 -> 94877", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96490, + "TargetID": 94877, + "Directional": false + } + ] + }, + { + "ID": 617, + "SourceStructureID": 332, + "TargetStructureID": 96487, + "Label": "332-96487 via Gap Junction from 96496 -> 96495", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96496, + "TargetID": 96495, + "Directional": false + } + ] + }, + { + "ID": 618, + "SourceStructureID": 96506, + "TargetStructureID": 332, + "Label": "96506-332 via Unknown from 96510 -> 96511", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96510, + "TargetID": 96511, + "Directional": false + } + ] + }, + { + "ID": 619, + "SourceStructureID": 96528, + "TargetStructureID": 332, + "Label": "96528-332 via Unknown from 96529 -> 96527", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96529, + "TargetID": 96527, + "Directional": false + } + ] + }, + { + "ID": 620, + "SourceStructureID": 96565, + "TargetStructureID": 332, + "Label": "96565-332 via Adherens from 96566 -> 96564", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96566, + "TargetID": 96564, + "Directional": false + } + ] + }, + { + "ID": 621, + "SourceStructureID": 332, + "TargetStructureID": 96584, + "Label": "332-96584 via Gap Junction from 96586 -> 96585", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96586, + "TargetID": 96585, + "Directional": false + } + ] + }, + { + "ID": 622, + "SourceStructureID": 32681, + "TargetStructureID": 334, + "Label": "32681-334 via Adherens from 64578 -> 64579", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64578, + "TargetID": 64579, + "Directional": false + } + ] + }, + { + "ID": 623, + "SourceStructureID": 335, + "TargetStructureID": 344, + "Label": "335-344 via Gap Junction from 117833 -> 117827", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117833, + "TargetID": 117827, + "Directional": false + } + ] + }, + { + "ID": 624, + "SourceStructureID": 366, + "TargetStructureID": 335, + "Label": "366-335 via Adherens from 13617 -> 13640", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 13617, + "TargetID": 13640, + "Directional": false + } + ] + }, + { + "ID": 625, + "SourceStructureID": 24366, + "TargetStructureID": 335, + "Label": "24366-335 via Gap Junction from 122154 -> 122153", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122154, + "TargetID": 122153, + "Directional": false + } + ] + }, + { + "ID": 626, + "SourceStructureID": 31710, + "TargetStructureID": 335, + "Label": "31710-335 via Gap Junction from 52672 -> 52673", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52672, + "TargetID": 52673, + "Directional": false + } + ] + }, + { + "ID": 627, + "SourceStructureID": 440, + "TargetStructureID": 344, + "Label": "440-344 via Gap Junction from 117829 -> 117830", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117829, + "TargetID": 117830, + "Directional": false + } + ] + }, + { + "ID": 628, + "SourceStructureID": 344, + "TargetStructureID": 7157, + "Label": "344-7157 via Gap Junction from 119037 -> 122641", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119037, + "TargetID": 122641, + "Directional": false + } + ] + }, + { + "ID": 629, + "SourceStructureID": 344, + "TargetStructureID": 7468, + "Label": "344-7468 via Gap Junction from 31740 -> 31739, 31742 -> 31741, 47853 -> 31736, 117819 -> 117818", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 31740, + "TargetID": 31739, + "Directional": false + }, + { + "SourceID": 31742, + "TargetID": 31741, + "Directional": false + }, + { + "SourceID": 47853, + "TargetID": 31736, + "Directional": false + }, + { + "SourceID": 117819, + "TargetID": 117818, + "Directional": false + } + ] + }, + { + "ID": 630, + "SourceStructureID": 344, + "TargetStructureID": 118058, + "Label": "344-118058 via Gap Junction from 122610 -> 118065", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122610, + "TargetID": 118065, + "Directional": false + } + ] + }, + { + "ID": 631, + "SourceStructureID": 119028, + "TargetStructureID": 344, + "Label": "119028-344 via Gap Junction from 119030 -> 119027", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119030, + "TargetID": 119027, + "Directional": false + } + ] + }, + { + "ID": 632, + "SourceStructureID": 5860, + "TargetStructureID": 352, + "Label": "5860-352 via Adherens from 90689 -> 90688, 90691 -> 90690, 90693 -> 90692", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90689, + "TargetID": 90688, + "Directional": false + }, + { + "SourceID": 90691, + "TargetID": 90690, + "Directional": false + }, + { + "SourceID": 90693, + "TargetID": 90692, + "Directional": false + } + ] + }, + { + "ID": 633, + "SourceStructureID": 9260, + "TargetStructureID": 352, + "Label": "9260-352 via Adherens from 90687 -> 90686", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90687, + "TargetID": 90686, + "Directional": false + } + ] + }, + { + "ID": 634, + "SourceStructureID": 11238, + "TargetStructureID": 353, + "Label": "11238-353 via Adherens from 136121 -> 136122", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136121, + "TargetID": 136122, + "Directional": false + } + ] + }, + { + "ID": 635, + "SourceStructureID": 135225, + "TargetStructureID": 354, + "Label": "135225-354 via Touch from 135913 -> 135912", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 135913, + "TargetID": 135912, + "Directional": false + } + ] + }, + { + "ID": 636, + "SourceStructureID": 364, + "TargetStructureID": 364, + "Label": "364-364 via Unknown from 92580 -> 92581", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92580, + "TargetID": 92581, + "Directional": false + } + ] + }, + { + "ID": 637, + "SourceStructureID": 364, + "TargetStructureID": 366, + "Label": "364-366 via Gap Junction from 14073 -> 14057, 115637 -> 115638", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14073, + "TargetID": 14057, + "Directional": false + }, + { + "SourceID": 115637, + "TargetID": 115638, + "Directional": false + } + ] + }, + { + "ID": 638, + "SourceStructureID": 364, + "TargetStructureID": 366, + "Label": "364-366 via Unknown from 115640 -> 115639", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115640, + "TargetID": 115639, + "Directional": false + } + ] + }, + { + "ID": 639, + "SourceStructureID": 364, + "TargetStructureID": 431, + "Label": "364-431 via Adherens from 12870 -> 12790", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 12870, + "TargetID": 12790, + "Directional": false + } + ] + }, + { + "ID": 640, + "SourceStructureID": 431, + "TargetStructureID": 364, + "Label": "431-364 via Gap Junction from 38580 -> 12893, 55262 -> 12896, 120609 -> 120606, 120610 -> 120611, 122814 -> 122813, 122837 -> 122836, 122864 -> 122863", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38580, + "TargetID": 12893, + "Directional": false + }, + { + "SourceID": 55262, + "TargetID": 12896, + "Directional": false + }, + { + "SourceID": 120609, + "TargetID": 120606, + "Directional": false + }, + { + "SourceID": 120610, + "TargetID": 120611, + "Directional": false + }, + { + "SourceID": 122814, + "TargetID": 122813, + "Directional": false + }, + { + "SourceID": 122837, + "TargetID": 122836, + "Directional": false + }, + { + "SourceID": 122864, + "TargetID": 122863, + "Directional": false + } + ] + }, + { + "ID": 641, + "SourceStructureID": 364, + "TargetStructureID": 3116, + "Label": "364-3116 via Gap Junction from 92472 -> 46562", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92472, + "TargetID": 46562, + "Directional": false + } + ] + }, + { + "ID": 642, + "SourceStructureID": 4569, + "TargetStructureID": 364, + "Label": "4569-364 via Gap Junction from 98737 -> 98738", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98737, + "TargetID": 98738, + "Directional": false + } + ] + }, + { + "ID": 643, + "SourceStructureID": 364, + "TargetStructureID": 4569, + "Label": "364-4569 via Unknown from 98948 -> 98947", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98948, + "TargetID": 98947, + "Directional": false + } + ] + }, + { + "ID": 644, + "SourceStructureID": 364, + "TargetStructureID": 20299, + "Label": "364-20299 via Adherens from 55260 -> 55259", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 55260, + "TargetID": 55259, + "Directional": false + } + ] + }, + { + "ID": 645, + "SourceStructureID": 372, + "TargetStructureID": 366, + "Label": "372-366 via Gap Junction from 71880 -> 71879, 122296 -> 122290, 122305 -> 122306", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71880, + "TargetID": 71879, + "Directional": false + }, + { + "SourceID": 122296, + "TargetID": 122290, + "Directional": false + }, + { + "SourceID": 122305, + "TargetID": 122306, + "Directional": false + } + ] + }, + { + "ID": 646, + "SourceStructureID": 419, + "TargetStructureID": 366, + "Label": "419-366 via Touch from 131762 -> 131763, 131764 -> 131765", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 131762, + "TargetID": 131763, + "Directional": false + }, + { + "SourceID": 131764, + "TargetID": 131765, + "Directional": false + } + ] + }, + { + "ID": 647, + "SourceStructureID": 366, + "TargetStructureID": 428, + "Label": "366-428 via Adherens from 13650 -> 13651, 13968 -> 13969", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 13650, + "TargetID": 13651, + "Directional": false + }, + { + "SourceID": 13968, + "TargetID": 13969, + "Directional": false + } + ] + }, + { + "ID": 648, + "SourceStructureID": 428, + "TargetStructureID": 366, + "Label": "428-366 via Gap Junction from 114672 -> 114671, 115612 -> 115611, 115646 -> 115645", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 114672, + "TargetID": 114671, + "Directional": false + }, + { + "SourceID": 115612, + "TargetID": 115611, + "Directional": false + }, + { + "SourceID": 115646, + "TargetID": 115645, + "Directional": false + } + ] + }, + { + "ID": 649, + "SourceStructureID": 428, + "TargetStructureID": 366, + "Label": "428-366 via Unknown from 115650 -> 115649", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115650, + "TargetID": 115649, + "Directional": false + } + ] + }, + { + "ID": 650, + "SourceStructureID": 479, + "TargetStructureID": 366, + "Label": "479-366 via Gap Junction from 115653 -> 115651", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115653, + "TargetID": 115651, + "Directional": false + } + ] + }, + { + "ID": 651, + "SourceStructureID": 366, + "TargetStructureID": 6153, + "Label": "366-6153 via Gap Junction from 13665 -> 17472, 17444 -> 13981, 122250 -> 122249, 122303 -> 122304", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 13665, + "TargetID": 17472, + "Directional": false + }, + { + "SourceID": 17444, + "TargetID": 13981, + "Directional": false + }, + { + "SourceID": 122250, + "TargetID": 122249, + "Directional": false + }, + { + "SourceID": 122303, + "TargetID": 122304, + "Directional": false + } + ] + }, + { + "ID": 652, + "SourceStructureID": 7157, + "TargetStructureID": 366, + "Label": "7157-366 via Gap Junction from 18168 -> 18169", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 18168, + "TargetID": 18169, + "Directional": false + } + ] + }, + { + "ID": 653, + "SourceStructureID": 20299, + "TargetStructureID": 366, + "Label": "20299-366 via Adherens from 55261 -> 14103", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 55261, + "TargetID": 14103, + "Directional": false + } + ] + }, + { + "ID": 654, + "SourceStructureID": 366, + "TargetStructureID": 33148, + "Label": "366-33148 via Unknown from 115609 -> 115610", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115609, + "TargetID": 115610, + "Directional": false + } + ] + }, + { + "ID": 655, + "SourceStructureID": 366, + "TargetStructureID": 66138, + "Label": "366-66138 via Gap Junction from 66187 -> 66188", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 66187, + "TargetID": 66188, + "Directional": false + } + ] + }, + { + "ID": 656, + "SourceStructureID": 115602, + "TargetStructureID": 366, + "Label": "115602-366 via Gap Junction from 115603 -> 115601, 115608 -> 115607", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115603, + "TargetID": 115601, + "Directional": false + }, + { + "SourceID": 115608, + "TargetID": 115607, + "Directional": false + } + ] + }, + { + "ID": 657, + "SourceStructureID": 115605, + "TargetStructureID": 366, + "Label": "115605-366 via Gap Junction from 115606 -> 115604", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115606, + "TargetID": 115604, + "Directional": false + } + ] + }, + { + "ID": 658, + "SourceStructureID": 366, + "TargetStructureID": 115613, + "Label": "366-115613 via Unknown from 115615 -> 115614", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115615, + "TargetID": 115614, + "Directional": false + } + ] + }, + { + "ID": 659, + "SourceStructureID": 115626, + "TargetStructureID": 366, + "Label": "115626-366 via Gap Junction from 115627 -> 115625", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115627, + "TargetID": 115625, + "Directional": false + } + ] + }, + { + "ID": 660, + "SourceStructureID": 115641, + "TargetStructureID": 366, + "Label": "115641-366 via Gap Junction from 115643 -> 13947", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115643, + "TargetID": 13947, + "Directional": false + } + ] + }, + { + "ID": 661, + "SourceStructureID": 366, + "TargetStructureID": 115647, + "Label": "366-115647 via Gap Junction from 14104 -> 115648", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14104, + "TargetID": 115648, + "Directional": false + } + ] + }, + { + "ID": 662, + "SourceStructureID": 115658, + "TargetStructureID": 366, + "Label": "115658-366 via Unknown from 115659 -> 115657", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115659, + "TargetID": 115657, + "Directional": false + } + ] + }, + { + "ID": 663, + "SourceStructureID": 115660, + "TargetStructureID": 366, + "Label": "115660-366 via Gap Junction from 115661 -> 13623", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115661, + "TargetID": 13623, + "Directional": false + } + ] + }, + { + "ID": 664, + "SourceStructureID": 372, + "TargetStructureID": 410, + "Label": "372-410 via Gap Junction from 21365 -> 17300", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 21365, + "TargetID": 17300, + "Directional": false + } + ] + }, + { + "ID": 665, + "SourceStructureID": 372, + "TargetStructureID": 412, + "Label": "372-412 via Unknown from 122389 -> 122388", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 122389, + "TargetID": 122388, + "Directional": false + } + ] + }, + { + "ID": 666, + "SourceStructureID": 372, + "TargetStructureID": 428, + "Label": "372-428 via Gap Junction from 122297 -> 122291, 122342 -> 122341", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122297, + "TargetID": 122291, + "Directional": false + }, + { + "SourceID": 122342, + "TargetID": 122341, + "Directional": false + } + ] + }, + { + "ID": 667, + "SourceStructureID": 479, + "TargetStructureID": 372, + "Label": "479-372 via Gap Junction from 58760 -> 58759, 58791 -> 58792, 71860 -> 71859, 121783 -> 121784, 122320 -> 122319", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 58760, + "TargetID": 58759, + "Directional": false + }, + { + "SourceID": 58791, + "TargetID": 58792, + "Directional": false + }, + { + "SourceID": 71860, + "TargetID": 71859, + "Directional": false + }, + { + "SourceID": 121783, + "TargetID": 121784, + "Directional": false + }, + { + "SourceID": 122320, + "TargetID": 122319, + "Directional": false + } + ] + }, + { + "ID": 668, + "SourceStructureID": 372, + "TargetStructureID": 3116, + "Label": "372-3116 via Gap Junction from 55066 -> 122362, 122334 -> 122333", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55066, + "TargetID": 122362, + "Directional": false + }, + { + "SourceID": 122334, + "TargetID": 122333, + "Directional": false + } + ] + }, + { + "ID": 669, + "SourceStructureID": 372, + "TargetStructureID": 6153, + "Label": "372-6153 via Gap Junction from 30978 -> 8404, 30983 -> 13785, 46909 -> 55341, 115631 -> 8405, 122327 -> 8403, 131410 -> 131409", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 30978, + "TargetID": 8404, + "Directional": false + }, + { + "SourceID": 30983, + "TargetID": 13785, + "Directional": false + }, + { + "SourceID": 46909, + "TargetID": 55341, + "Directional": false + }, + { + "SourceID": 115631, + "TargetID": 8405, + "Directional": false + }, + { + "SourceID": 122327, + "TargetID": 8403, + "Directional": false + }, + { + "SourceID": 131410, + "TargetID": 131409, + "Directional": false + } + ] + }, + { + "ID": 670, + "SourceStructureID": 24401, + "TargetStructureID": 372, + "Label": "24401-372 via Gap Junction from 121696 -> 121693", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121696, + "TargetID": 121693, + "Directional": false + } + ] + }, + { + "ID": 671, + "SourceStructureID": 372, + "TargetStructureID": 32577, + "Label": "372-32577 via Adherens from 71840 -> 71839", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71840, + "TargetID": 71839, + "Directional": false + } + ] + }, + { + "ID": 672, + "SourceStructureID": 372, + "TargetStructureID": 71531, + "Label": "372-71531 via Adherens from 71532 -> 71533", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71532, + "TargetID": 71533, + "Directional": false + } + ] + }, + { + "ID": 673, + "SourceStructureID": 372, + "TargetStructureID": 71541, + "Label": "372-71541 via Adherens from 71864 -> 71863", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71864, + "TargetID": 71863, + "Directional": false + } + ] + }, + { + "ID": 674, + "SourceStructureID": 372, + "TargetStructureID": 71556, + "Label": "372-71556 via Adherens from 71858 -> 71857", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71858, + "TargetID": 71857, + "Directional": false + } + ] + }, + { + "ID": 675, + "SourceStructureID": 372, + "TargetStructureID": 71566, + "Label": "372-71566 via Adherens from 71875 -> 71876", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71875, + "TargetID": 71876, + "Directional": false + } + ] + }, + { + "ID": 676, + "SourceStructureID": 380, + "TargetStructureID": 410, + "Label": "380-410 via Adherens from 23132 -> 23131", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 23132, + "TargetID": 23131, + "Directional": false + } + ] + }, + { + "ID": 677, + "SourceStructureID": 8575, + "TargetStructureID": 389, + "Label": "8575-389 via Adherens from 62130 -> 62131, 62143 -> 62142", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 62130, + "TargetID": 62131, + "Directional": false + }, + { + "SourceID": 62143, + "TargetID": 62142, + "Directional": false + } + ] + }, + { + "ID": 678, + "SourceStructureID": 390, + "TargetStructureID": 483, + "Label": "390-483 via Unknown from 134075 -> 134076", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134075, + "TargetID": 134076, + "Directional": false + } + ] + }, + { + "ID": 679, + "SourceStructureID": 6156, + "TargetStructureID": 390, + "Label": "6156-390 via Adherens from 133428 -> 133429", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133428, + "TargetID": 133429, + "Directional": false + } + ] + }, + { + "ID": 680, + "SourceStructureID": 390, + "TargetStructureID": 6156, + "Label": "390-6156 via Unknown from 133166 -> 133167", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133166, + "TargetID": 133167, + "Directional": false + } + ] + }, + { + "ID": 681, + "SourceStructureID": 9693, + "TargetStructureID": 390, + "Label": "9693-390 via Adherens from 119706 -> 119707", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 119706, + "TargetID": 119707, + "Directional": false + } + ] + }, + { + "ID": 682, + "SourceStructureID": 390, + "TargetStructureID": 9693, + "Label": "390-9693 via Unknown from 134743 -> 119831", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134743, + "TargetID": 119831, + "Directional": false + } + ] + }, + { + "ID": 683, + "SourceStructureID": 391, + "TargetStructureID": 2610, + "Label": "391-2610 via Adherens from 108206 -> 108207", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108206, + "TargetID": 108207, + "Directional": false + } + ] + }, + { + "ID": 684, + "SourceStructureID": 391, + "TargetStructureID": 2610, + "Label": "391-2610 via Unknown from 108313 -> 108314", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108313, + "TargetID": 108314, + "Directional": false + } + ] + }, + { + "ID": 685, + "SourceStructureID": 5345, + "TargetStructureID": 391, + "Label": "5345-391 via Adherens from 108202 -> 108201, 108203 -> 108204, 108537 -> 108536", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108202, + "TargetID": 108201, + "Directional": false + }, + { + "SourceID": 108203, + "TargetID": 108204, + "Directional": false + }, + { + "SourceID": 108537, + "TargetID": 108536, + "Directional": false + } + ] + }, + { + "ID": 686, + "SourceStructureID": 391, + "TargetStructureID": 10897, + "Label": "391-10897 via Adherens from 108376 -> 108377", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108376, + "TargetID": 108377, + "Directional": false + } + ] + }, + { + "ID": 687, + "SourceStructureID": 391, + "TargetStructureID": 10897, + "Label": "391-10897 via Unknown from 108366 -> 108367, 108391 -> 108392", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108366, + "TargetID": 108367, + "Directional": false + }, + { + "SourceID": 108391, + "TargetID": 108392, + "Directional": false + } + ] + }, + { + "ID": 688, + "SourceStructureID": 391, + "TargetStructureID": 20728, + "Label": "391-20728 via Unknown from 108176 -> 108177", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108176, + "TargetID": 108177, + "Directional": false + } + ] + }, + { + "ID": 689, + "SourceStructureID": 391, + "TargetStructureID": 89305, + "Label": "391-89305 via Unknown from 108509 -> 108510", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108509, + "TargetID": 108510, + "Directional": false + } + ] + }, + { + "ID": 690, + "SourceStructureID": 398, + "TargetStructureID": 397, + "Label": "398-397 via Gap Junction from 122656 -> 122655, 122667 -> 122666, 122680 -> 122679, 122684 -> 122683, 122694 -> 122695", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122656, + "TargetID": 122655, + "Directional": false + }, + { + "SourceID": 122667, + "TargetID": 122666, + "Directional": false + }, + { + "SourceID": 122680, + "TargetID": 122679, + "Directional": false + }, + { + "SourceID": 122684, + "TargetID": 122683, + "Directional": false + }, + { + "SourceID": 122694, + "TargetID": 122695, + "Directional": false + } + ] + }, + { + "ID": 691, + "SourceStructureID": 397, + "TargetStructureID": 24303, + "Label": "397-24303 via Gap Junction from 55335 -> 122393, 55348 -> 55338", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55335, + "TargetID": 122393, + "Directional": false + }, + { + "SourceID": 55348, + "TargetID": 55338, + "Directional": false + } + ] + }, + { + "ID": 692, + "SourceStructureID": 398, + "TargetStructureID": 398, + "Label": "398-398 via Gap Junction from 122691 -> 122692", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122691, + "TargetID": 122692, + "Directional": false + } + ] + }, + { + "ID": 693, + "SourceStructureID": 398, + "TargetStructureID": 45731, + "Label": "398-45731 via Gap Junction from 122696 -> 122697", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122696, + "TargetID": 122697, + "Directional": false + } + ] + }, + { + "ID": 694, + "SourceStructureID": 6589, + "TargetStructureID": 400, + "Label": "6589-400 via Adherens from 130599 -> 130604", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130599, + "TargetID": 130604, + "Directional": false + } + ] + }, + { + "ID": 695, + "SourceStructureID": 400, + "TargetStructureID": 9693, + "Label": "400-9693 via Adherens from 59566 -> 59565, 130580 -> 130581, 131733 -> 120120", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59566, + "TargetID": 59565, + "Directional": false + }, + { + "SourceID": 130580, + "TargetID": 130581, + "Directional": false + }, + { + "SourceID": 131733, + "TargetID": 120120, + "Directional": false + } + ] + }, + { + "ID": 696, + "SourceStructureID": 405, + "TargetStructureID": 408, + "Label": "405-408 via Adherens from 37589 -> 37590", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 37589, + "TargetID": 37590, + "Directional": false + } + ] + }, + { + "ID": 697, + "SourceStructureID": 410, + "TargetStructureID": 408, + "Label": "410-408 via Gap Junction from 8355 -> 22509, 25883 -> 8357, 35795 -> 8356, 35808 -> 8350, 35898 -> 17694, 47120 -> 9364", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 8355, + "TargetID": 22509, + "Directional": false + }, + { + "SourceID": 25883, + "TargetID": 8357, + "Directional": false + }, + { + "SourceID": 35795, + "TargetID": 8356, + "Directional": false + }, + { + "SourceID": 35808, + "TargetID": 8350, + "Directional": false + }, + { + "SourceID": 35898, + "TargetID": 17694, + "Directional": false + }, + { + "SourceID": 47120, + "TargetID": 9364, + "Directional": false + } + ] + }, + { + "ID": 698, + "SourceStructureID": 408, + "TargetStructureID": 479, + "Label": "408-479 via Gap Junction from 121738 -> 121737", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121738, + "TargetID": 121737, + "Directional": false + } + ] + }, + { + "ID": 699, + "SourceStructureID": 408, + "TargetStructureID": 6155, + "Label": "408-6155 via Gap Junction from 49029 -> 48312, 121222 -> 52878", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49029, + "TargetID": 48312, + "Directional": false + }, + { + "SourceID": 121222, + "TargetID": 52878, + "Directional": false + } + ] + }, + { + "ID": 700, + "SourceStructureID": 24303, + "TargetStructureID": 408, + "Label": "24303-408 via Gap Junction from 35794 -> 35793, 122397 -> 122396, 122474 -> 122475, 122476 -> 122477", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 35794, + "TargetID": 35793, + "Directional": false + }, + { + "SourceID": 122397, + "TargetID": 122396, + "Directional": false + }, + { + "SourceID": 122474, + "TargetID": 122475, + "Directional": false + }, + { + "SourceID": 122476, + "TargetID": 122477, + "Directional": false + } + ] + }, + { + "ID": 701, + "SourceStructureID": 24401, + "TargetStructureID": 408, + "Label": "24401-408 via Gap Junction from 34805 -> 34806, 34813 -> 121161, 35804 -> 35803, 48142 -> 48141, 52864 -> 52865, 121186 -> 52870, 121204 -> 121205, 121716 -> 121717", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 34805, + "TargetID": 34806, + "Directional": false + }, + { + "SourceID": 34813, + "TargetID": 121161, + "Directional": false + }, + { + "SourceID": 35804, + "TargetID": 35803, + "Directional": false + }, + { + "SourceID": 48142, + "TargetID": 48141, + "Directional": false + }, + { + "SourceID": 52864, + "TargetID": 52865, + "Directional": false + }, + { + "SourceID": 121186, + "TargetID": 52870, + "Directional": false + }, + { + "SourceID": 121204, + "TargetID": 121205, + "Directional": false + }, + { + "SourceID": 121716, + "TargetID": 121717, + "Directional": false + } + ] + }, + { + "ID": 702, + "SourceStructureID": 408, + "TargetStructureID": 28886, + "Label": "408-28886 via Gap Junction from 51630 -> 45766", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51630, + "TargetID": 45766, + "Directional": false + } + ] + }, + { + "ID": 703, + "SourceStructureID": 408, + "TargetStructureID": 39862, + "Label": "408-39862 via Gap Junction from 29276 -> 51253, 53034 -> 51245", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29276, + "TargetID": 51253, + "Directional": false + }, + { + "SourceID": 53034, + "TargetID": 51245, + "Directional": false + } + ] + }, + { + "ID": 704, + "SourceStructureID": 121155, + "TargetStructureID": 408, + "Label": "121155-408 via Gap Junction from 121695 -> 121694", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121695, + "TargetID": 121694, + "Directional": false + } + ] + }, + { + "ID": 705, + "SourceStructureID": 408, + "TargetStructureID": 121663, + "Label": "408-121663 via Gap Junction from 121667 -> 121666, 121670 -> 29272", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121667, + "TargetID": 121666, + "Directional": false + }, + { + "SourceID": 121670, + "TargetID": 29272, + "Directional": false + } + ] + }, + { + "ID": 706, + "SourceStructureID": 410, + "TargetStructureID": 419, + "Label": "410-419 via Adherens from 10136 -> 10135, 133706 -> 133707, 135091 -> 133711", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 10136, + "TargetID": 10135, + "Directional": false + }, + { + "SourceID": 133706, + "TargetID": 133707, + "Directional": false + }, + { + "SourceID": 135091, + "TargetID": 133711, + "Directional": false + } + ] + }, + { + "ID": 707, + "SourceStructureID": 419, + "TargetStructureID": 410, + "Label": "419-410 via Gap Junction from 10131 -> 10132, 14602 -> 8366, 131492 -> 131491, 131797 -> 131796, 132589 -> 132590, 133539 -> 133540", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10131, + "TargetID": 10132, + "Directional": false + }, + { + "SourceID": 14602, + "TargetID": 8366, + "Directional": false + }, + { + "SourceID": 131492, + "TargetID": 131491, + "Directional": false + }, + { + "SourceID": 131797, + "TargetID": 131796, + "Directional": false + }, + { + "SourceID": 132589, + "TargetID": 132590, + "Directional": false + }, + { + "SourceID": 133539, + "TargetID": 133540, + "Directional": false + } + ] + }, + { + "ID": 708, + "SourceStructureID": 410, + "TargetStructureID": 476, + "Label": "410-476 via Gap Junction from 8370 -> 17490, 8380 -> 8347, 10439 -> 10440, 16480 -> 8376, 16502 -> 8354, 16515 -> 16514, 17347 -> 17346, 19117 -> 19116, 32738 -> 32736", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 8370, + "TargetID": 17490, + "Directional": false + }, + { + "SourceID": 8380, + "TargetID": 8347, + "Directional": false + }, + { + "SourceID": 10439, + "TargetID": 10440, + "Directional": false + }, + { + "SourceID": 16480, + "TargetID": 8376, + "Directional": false + }, + { + "SourceID": 16502, + "TargetID": 8354, + "Directional": false + }, + { + "SourceID": 16515, + "TargetID": 16514, + "Directional": false + }, + { + "SourceID": 17347, + "TargetID": 17346, + "Directional": false + }, + { + "SourceID": 19117, + "TargetID": 19116, + "Directional": false + }, + { + "SourceID": 32738, + "TargetID": 32736, + "Directional": false + } + ] + }, + { + "ID": 709, + "SourceStructureID": 410, + "TargetStructureID": 483, + "Label": "410-483 via Gap Junction from 94746 -> 94747", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94746, + "TargetID": 94747, + "Directional": false + } + ] + }, + { + "ID": 710, + "SourceStructureID": 410, + "TargetStructureID": 485, + "Label": "410-485 via Gap Junction from 8362 -> 8348, 8363 -> 50880, 94053 -> 94052, 148013 -> 148014, 148077 -> 148078, 148426 -> 148427, 148429 -> 148430, 148435 -> 148436, 159485 -> 159484", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 8362, + "TargetID": 8348, + "Directional": false + }, + { + "SourceID": 8363, + "TargetID": 50880, + "Directional": false + }, + { + "SourceID": 94053, + "TargetID": 94052, + "Directional": false + }, + { + "SourceID": 148013, + "TargetID": 148014, + "Directional": false + }, + { + "SourceID": 148077, + "TargetID": 148078, + "Directional": false + }, + { + "SourceID": 148426, + "TargetID": 148427, + "Directional": false + }, + { + "SourceID": 148429, + "TargetID": 148430, + "Directional": false + }, + { + "SourceID": 148435, + "TargetID": 148436, + "Directional": false + }, + { + "SourceID": 159485, + "TargetID": 159484, + "Directional": false + } + ] + }, + { + "ID": 711, + "SourceStructureID": 514, + "TargetStructureID": 410, + "Label": "514-410 via Adherens from 15088 -> 15087", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 15088, + "TargetID": 15087, + "Directional": false + } + ] + }, + { + "ID": 712, + "SourceStructureID": 514, + "TargetStructureID": 410, + "Label": "514-410 via Gap Junction from 15098 -> 15097", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 15098, + "TargetID": 15097, + "Directional": false + } + ] + }, + { + "ID": 713, + "SourceStructureID": 410, + "TargetStructureID": 2610, + "Label": "410-2610 via Gap Junction from 17501 -> 17500, 22675 -> 22676", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17501, + "TargetID": 17500, + "Directional": false + }, + { + "SourceID": 22675, + "TargetID": 22676, + "Directional": false + } + ] + }, + { + "ID": 714, + "SourceStructureID": 410, + "TargetStructureID": 4850, + "Label": "410-4850 via Gap Junction from 97993 -> 97992", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 97993, + "TargetID": 97992, + "Directional": false + } + ] + }, + { + "ID": 715, + "SourceStructureID": 410, + "TargetStructureID": 6153, + "Label": "410-6153 via Gap Junction from 9189 -> 8410, 16671 -> 16670, 16701 -> 16700, 17352 -> 17351, 17830 -> 17829", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 9189, + "TargetID": 8410, + "Directional": false + }, + { + "SourceID": 16671, + "TargetID": 16670, + "Directional": false + }, + { + "SourceID": 16701, + "TargetID": 16700, + "Directional": false + }, + { + "SourceID": 17352, + "TargetID": 17351, + "Directional": false + }, + { + "SourceID": 17830, + "TargetID": 17829, + "Directional": false + } + ] + }, + { + "ID": 716, + "SourceStructureID": 410, + "TargetStructureID": 6589, + "Label": "410-6589 via Gap Junction from 132734 -> 132733", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132734, + "TargetID": 132733, + "Directional": false + } + ] + }, + { + "ID": 717, + "SourceStructureID": 8749, + "TargetStructureID": 410, + "Label": "8749-410 via Adherens from 159827 -> 159828", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159827, + "TargetID": 159828, + "Directional": false + } + ] + }, + { + "ID": 718, + "SourceStructureID": 410, + "TargetStructureID": 9693, + "Label": "410-9693 via Adherens from 131490 -> 131489", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131490, + "TargetID": 131489, + "Directional": false + } + ] + }, + { + "ID": 719, + "SourceStructureID": 410, + "TargetStructureID": 9693, + "Label": "410-9693 via Gap Junction from 131488 -> 119862", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131488, + "TargetID": 119862, + "Directional": false + } + ] + }, + { + "ID": 720, + "SourceStructureID": 17527, + "TargetStructureID": 410, + "Label": "17527-410 via Gap Junction from 17535 -> 17534, 17792 -> 17791, 17890 -> 17889, 18366 -> 18365", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17535, + "TargetID": 17534, + "Directional": false + }, + { + "SourceID": 17792, + "TargetID": 17791, + "Directional": false + }, + { + "SourceID": 17890, + "TargetID": 17889, + "Directional": false + }, + { + "SourceID": 18366, + "TargetID": 18365, + "Directional": false + } + ] + }, + { + "ID": 721, + "SourceStructureID": 410, + "TargetStructureID": 25688, + "Label": "410-25688 via Adherens from 25700 -> 25699", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 25700, + "TargetID": 25699, + "Directional": false + } + ] + }, + { + "ID": 722, + "SourceStructureID": 101332, + "TargetStructureID": 410, + "Label": "101332-410 via Unknown from 101336 -> 101337", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101336, + "TargetID": 101337, + "Directional": false + } + ] + }, + { + "ID": 723, + "SourceStructureID": 121177, + "TargetStructureID": 410, + "Label": "121177-410 via Gap Junction from 121179 -> 9528", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121179, + "TargetID": 9528, + "Directional": false + } + ] + }, + { + "ID": 724, + "SourceStructureID": 419, + "TargetStructureID": 412, + "Label": "419-412 via Unknown from 132512 -> 133693", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132512, + "TargetID": 133693, + "Directional": false + } + ] + }, + { + "ID": 725, + "SourceStructureID": 479, + "TargetStructureID": 412, + "Label": "479-412 via Unknown from 122390 -> 122391", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 122390, + "TargetID": 122391, + "Directional": false + } + ] + }, + { + "ID": 726, + "SourceStructureID": 412, + "TargetStructureID": 24401, + "Label": "412-24401 via Gap Junction from 133690 -> 133691", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 133690, + "TargetID": 133691, + "Directional": false + } + ] + }, + { + "ID": 727, + "SourceStructureID": 121155, + "TargetStructureID": 412, + "Label": "121155-412 via Gap Junction from 133689 -> 133692", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 133689, + "TargetID": 133692, + "Directional": false + } + ] + }, + { + "ID": 728, + "SourceStructureID": 419, + "TargetStructureID": 419, + "Label": "419-419 via Gap Junction from 131773 -> 131774, 131792 -> 131791", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131773, + "TargetID": 131774, + "Directional": false + }, + { + "SourceID": 131792, + "TargetID": 131791, + "Directional": false + } + ] + }, + { + "ID": 729, + "SourceStructureID": 476, + "TargetStructureID": 419, + "Label": "476-419 via Adherens from 133683 -> 132385, 133709 -> 133708", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133683, + "TargetID": 132385, + "Directional": false + }, + { + "SourceID": 133709, + "TargetID": 133708, + "Directional": false + } + ] + }, + { + "ID": 730, + "SourceStructureID": 476, + "TargetStructureID": 419, + "Label": "476-419 via Gap Junction from 10123 -> 10122, 10459 -> 14594, 14599 -> 2293, 20365 -> 8396, 32135 -> 32136, 65186 -> 10463, 131466 -> 131465, 131832 -> 131833, 132384 -> 133682, 133581 -> 133582, 133705 -> 131853", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10123, + "TargetID": 10122, + "Directional": false + }, + { + "SourceID": 10459, + "TargetID": 14594, + "Directional": false + }, + { + "SourceID": 14599, + "TargetID": 2293, + "Directional": false + }, + { + "SourceID": 20365, + "TargetID": 8396, + "Directional": false + }, + { + "SourceID": 32135, + "TargetID": 32136, + "Directional": false + }, + { + "SourceID": 65186, + "TargetID": 10463, + "Directional": false + }, + { + "SourceID": 131466, + "TargetID": 131465, + "Directional": false + }, + { + "SourceID": 131832, + "TargetID": 131833, + "Directional": false + }, + { + "SourceID": 132384, + "TargetID": 133682, + "Directional": false + }, + { + "SourceID": 133581, + "TargetID": 133582, + "Directional": false + }, + { + "SourceID": 133705, + "TargetID": 131853, + "Directional": false + } + ] + }, + { + "ID": 731, + "SourceStructureID": 483, + "TargetStructureID": 419, + "Label": "483-419 via Gap Junction from 131756 -> 131757", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131756, + "TargetID": 131757, + "Directional": false + } + ] + }, + { + "ID": 732, + "SourceStructureID": 485, + "TargetStructureID": 419, + "Label": "485-419 via Adherens from 131494 -> 131495", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131494, + "TargetID": 131495, + "Directional": false + } + ] + }, + { + "ID": 733, + "SourceStructureID": 419, + "TargetStructureID": 485, + "Label": "419-485 via Touch from 133677 -> 133678", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 133677, + "TargetID": 133678, + "Directional": false + } + ] + }, + { + "ID": 734, + "SourceStructureID": 419, + "TargetStructureID": 2610, + "Label": "419-2610 via Gap Junction from 70525 -> 70526, 131798 -> 131799, 133725 -> 133726", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 70525, + "TargetID": 70526, + "Directional": false + }, + { + "SourceID": 131798, + "TargetID": 131799, + "Directional": false + }, + { + "SourceID": 133725, + "TargetID": 133726, + "Directional": false + } + ] + }, + { + "ID": 735, + "SourceStructureID": 419, + "TargetStructureID": 4890, + "Label": "419-4890 via Unknown from 133543 -> 133544", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133543, + "TargetID": 133544, + "Directional": false + } + ] + }, + { + "ID": 736, + "SourceStructureID": 419, + "TargetStructureID": 5118, + "Label": "419-5118 via Unknown from 131843 -> 131844", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131843, + "TargetID": 131844, + "Directional": false + } + ] + }, + { + "ID": 737, + "SourceStructureID": 419, + "TargetStructureID": 6153, + "Label": "419-6153 via Adherens from 133701 -> 133702, 133714 -> 133713, 133715 -> 133716", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133701, + "TargetID": 133702, + "Directional": false + }, + { + "SourceID": 133714, + "TargetID": 133713, + "Directional": false + }, + { + "SourceID": 133715, + "TargetID": 133716, + "Directional": false + } + ] + }, + { + "ID": 738, + "SourceStructureID": 419, + "TargetStructureID": 6153, + "Label": "419-6153 via Gap Junction from 10161 -> 10162, 20389 -> 17474, 131750 -> 131749, 131761 -> 131759, 131785 -> 131786, 133600 -> 133601", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10161, + "TargetID": 10162, + "Directional": false + }, + { + "SourceID": 20389, + "TargetID": 17474, + "Directional": false + }, + { + "SourceID": 131750, + "TargetID": 131749, + "Directional": false + }, + { + "SourceID": 131761, + "TargetID": 131759, + "Directional": false + }, + { + "SourceID": 131785, + "TargetID": 131786, + "Directional": false + }, + { + "SourceID": 133600, + "TargetID": 133601, + "Directional": false + } + ] + }, + { + "ID": 739, + "SourceStructureID": 6156, + "TargetStructureID": 419, + "Label": "6156-419 via Adherens from 115066 -> 115067", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115066, + "TargetID": 115067, + "Directional": false + } + ] + }, + { + "ID": 740, + "SourceStructureID": 6156, + "TargetStructureID": 419, + "Label": "6156-419 via Gap Junction from 131464 -> 131463", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131464, + "TargetID": 131463, + "Directional": false + } + ] + }, + { + "ID": 741, + "SourceStructureID": 6589, + "TargetStructureID": 419, + "Label": "6589-419 via Touch from 133559 -> 133560", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 133559, + "TargetID": 133560, + "Directional": false + } + ] + }, + { + "ID": 742, + "SourceStructureID": 7157, + "TargetStructureID": 419, + "Label": "7157-419 via Gap Junction from 131769 -> 131768", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131769, + "TargetID": 131768, + "Directional": false + } + ] + }, + { + "ID": 743, + "SourceStructureID": 419, + "TargetStructureID": 13855, + "Label": "419-13855 via Adherens from 14902 -> 14903, 133521 -> 132514", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 14902, + "TargetID": 14903, + "Directional": false + }, + { + "SourceID": 133521, + "TargetID": 132514, + "Directional": false + } + ] + }, + { + "ID": 744, + "SourceStructureID": 419, + "TargetStructureID": 18576, + "Label": "419-18576 via Unknown from 132269 -> 133674, 133681 -> 132380", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132269, + "TargetID": 133674, + "Directional": false + }, + { + "SourceID": 133681, + "TargetID": 132380, + "Directional": false + } + ] + }, + { + "ID": 745, + "SourceStructureID": 419, + "TargetStructureID": 25869, + "Label": "419-25869 via Unknown from 133526 -> 133525", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133526, + "TargetID": 133525, + "Directional": false + } + ] + }, + { + "ID": 746, + "SourceStructureID": 419, + "TargetStructureID": 32172, + "Label": "419-32172 via Adherens from 132477 -> 132478", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132477, + "TargetID": 132478, + "Directional": false + } + ] + }, + { + "ID": 747, + "SourceStructureID": 419, + "TargetStructureID": 36421, + "Label": "419-36421 via Unknown from 133516 -> 133517", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133516, + "TargetID": 133517, + "Directional": false + } + ] + }, + { + "ID": 748, + "SourceStructureID": 37286, + "TargetStructureID": 419, + "Label": "37286-419 via Unknown from 132362 -> 132361", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132362, + "TargetID": 132361, + "Directional": false + } + ] + }, + { + "ID": 749, + "SourceStructureID": 419, + "TargetStructureID": 60185, + "Label": "419-60185 via Adherens from 60190 -> 60189", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60190, + "TargetID": 60189, + "Directional": false + } + ] + }, + { + "ID": 750, + "SourceStructureID": 70518, + "TargetStructureID": 419, + "Label": "70518-419 via Adherens from 132647 -> 132646", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132647, + "TargetID": 132646, + "Directional": false + } + ] + }, + { + "ID": 751, + "SourceStructureID": 419, + "TargetStructureID": 70518, + "Label": "419-70518 via Unknown from 132594 -> 132595", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132594, + "TargetID": 132595, + "Directional": false + } + ] + }, + { + "ID": 752, + "SourceStructureID": 70833, + "TargetStructureID": 419, + "Label": "70833-419 via Adherens from 133653 -> 133654", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133653, + "TargetID": 133654, + "Directional": false + } + ] + }, + { + "ID": 753, + "SourceStructureID": 70901, + "TargetStructureID": 419, + "Label": "70901-419 via Adherens from 132480 -> 132479", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132480, + "TargetID": 132479, + "Directional": false + } + ] + }, + { + "ID": 754, + "SourceStructureID": 71041, + "TargetStructureID": 419, + "Label": "71041-419 via Unknown from 131483 -> 131482, 133638 -> 133639", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131483, + "TargetID": 131482, + "Directional": false + }, + { + "SourceID": 133638, + "TargetID": 133639, + "Directional": false + } + ] + }, + { + "ID": 755, + "SourceStructureID": 419, + "TargetStructureID": 89233, + "Label": "419-89233 via Unknown from 89244 -> 89243", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89244, + "TargetID": 89243, + "Directional": false + } + ] + }, + { + "ID": 756, + "SourceStructureID": 419, + "TargetStructureID": 101234, + "Label": "419-101234 via Adherens from 132644 -> 132645", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132644, + "TargetID": 132645, + "Directional": false + } + ] + }, + { + "ID": 757, + "SourceStructureID": 102524, + "TargetStructureID": 419, + "Label": "102524-419 via Unknown from 133604 -> 133603", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133604, + "TargetID": 133603, + "Directional": false + } + ] + }, + { + "ID": 758, + "SourceStructureID": 133553, + "TargetStructureID": 419, + "Label": "133553-419 via Adherens from 133555 -> 132505, 133580 -> 133579", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133555, + "TargetID": 132505, + "Directional": false + }, + { + "SourceID": 133580, + "TargetID": 133579, + "Directional": false + } + ] + }, + { + "ID": 759, + "SourceStructureID": 422, + "TargetStructureID": 422, + "Label": "422-422 via Adherens from 107067 -> 107066", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107067, + "TargetID": 107066, + "Directional": false + } + ] + }, + { + "ID": 760, + "SourceStructureID": 488, + "TargetStructureID": 422, + "Label": "488-422 via Conventional from 87793 -> 87794", + "Type": "Conventional", + "Directional": false, + "Links": [ + { + "SourceID": 87793, + "TargetID": 87794, + "Directional": false + } + ] + }, + { + "ID": 761, + "SourceStructureID": 463, + "TargetStructureID": 425, + "Label": "463-425 via Adherens from 12979 -> 12980", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 12979, + "TargetID": 12980, + "Directional": false + } + ] + }, + { + "ID": 762, + "SourceStructureID": 463, + "TargetStructureID": 425, + "Label": "463-425 via Gap Junction from 74162 -> 74163", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 74162, + "TargetID": 74163, + "Directional": false + } + ] + }, + { + "ID": 763, + "SourceStructureID": 431, + "TargetStructureID": 428, + "Label": "431-428 via Adherens from 12624 -> 12625", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 12624, + "TargetID": 12625, + "Directional": false + } + ] + }, + { + "ID": 764, + "SourceStructureID": 431, + "TargetStructureID": 428, + "Label": "431-428 via Gap Junction from 12595 -> 12596, 52737 -> 52736", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 12595, + "TargetID": 12596, + "Directional": false + }, + { + "SourceID": 52737, + "TargetID": 52736, + "Directional": false + } + ] + }, + { + "ID": 765, + "SourceStructureID": 606, + "TargetStructureID": 428, + "Label": "606-428 via Adherens from 53150 -> 53151", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 53150, + "TargetID": 53151, + "Directional": false + } + ] + }, + { + "ID": 766, + "SourceStructureID": 428, + "TargetStructureID": 4569, + "Label": "428-4569 via Gap Junction from 52682 -> 52550, 58598 -> 58599, 98371 -> 98370", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52682, + "TargetID": 52550, + "Directional": false + }, + { + "SourceID": 58598, + "TargetID": 58599, + "Directional": false + }, + { + "SourceID": 98371, + "TargetID": 98370, + "Directional": false + } + ] + }, + { + "ID": 767, + "SourceStructureID": 428, + "TargetStructureID": 59497, + "Label": "428-59497 via Adherens from 59504 -> 59503", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59504, + "TargetID": 59503, + "Directional": false + } + ] + }, + { + "ID": 768, + "SourceStructureID": 59497, + "TargetStructureID": 428, + "Label": "59497-428 via Gap Junction from 59498 -> 52793", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59498, + "TargetID": 52793, + "Directional": false + } + ] + }, + { + "ID": 769, + "SourceStructureID": 66138, + "TargetStructureID": 428, + "Label": "66138-428 via Adherens from 66192 -> 66182", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66192, + "TargetID": 66182, + "Directional": false + } + ] + }, + { + "ID": 770, + "SourceStructureID": 428, + "TargetStructureID": 66138, + "Label": "428-66138 via Gap Junction from 66181 -> 66189", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 66181, + "TargetID": 66189, + "Directional": false + } + ] + }, + { + "ID": 771, + "SourceStructureID": 428, + "TargetStructureID": 66214, + "Label": "428-66214 via Gap Junction from 66216 -> 66215", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 66216, + "TargetID": 66215, + "Directional": false + } + ] + }, + { + "ID": 772, + "SourceStructureID": 431, + "TargetStructureID": 440, + "Label": "431-440 via Gap Junction from 12676 -> 60299, 18604 -> 122817, 38595 -> 18613, 60300 -> 12678, 60301 -> 12677, 60324 -> 60325, 122852 -> 122853, 122869 -> 122870", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 12676, + "TargetID": 60299, + "Directional": false + }, + { + "SourceID": 18604, + "TargetID": 122817, + "Directional": false + }, + { + "SourceID": 38595, + "TargetID": 18613, + "Directional": false + }, + { + "SourceID": 60300, + "TargetID": 12678, + "Directional": false + }, + { + "SourceID": 60301, + "TargetID": 12677, + "Directional": false + }, + { + "SourceID": 60324, + "TargetID": 60325, + "Directional": false + }, + { + "SourceID": 122852, + "TargetID": 122853, + "Directional": false + }, + { + "SourceID": 122869, + "TargetID": 122870, + "Directional": false + } + ] + }, + { + "ID": 773, + "SourceStructureID": 431, + "TargetStructureID": 4835, + "Label": "431-4835 via Gap Junction from 12633 -> 12634, 12740 -> 8387, 12759 -> 12760, 12773 -> 8381, 12796 -> 8382, 38587 -> 38586, 122816 -> 122815", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 12633, + "TargetID": 12634, + "Directional": false + }, + { + "SourceID": 12740, + "TargetID": 8387, + "Directional": false + }, + { + "SourceID": 12759, + "TargetID": 12760, + "Directional": false + }, + { + "SourceID": 12773, + "TargetID": 8381, + "Directional": false + }, + { + "SourceID": 12796, + "TargetID": 8382, + "Directional": false + }, + { + "SourceID": 38587, + "TargetID": 38586, + "Directional": false + }, + { + "SourceID": 122816, + "TargetID": 122815, + "Directional": false + } + ] + }, + { + "ID": 774, + "SourceStructureID": 431, + "TargetStructureID": 7157, + "Label": "431-7157 via Gap Junction from 12703 -> 12704, 12709 -> 12710", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 12703, + "TargetID": 12704, + "Directional": false + }, + { + "SourceID": 12709, + "TargetID": 12710, + "Directional": false + } + ] + }, + { + "ID": 775, + "SourceStructureID": 431, + "TargetStructureID": 8720, + "Label": "431-8720 via Adherens from 60269 -> 60268", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60269, + "TargetID": 60268, + "Directional": false + } + ] + }, + { + "ID": 776, + "SourceStructureID": 71882, + "TargetStructureID": 431, + "Label": "71882-431 via Adherens from 90361 -> 90362", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90361, + "TargetID": 90362, + "Directional": false + } + ] + }, + { + "ID": 777, + "SourceStructureID": 115641, + "TargetStructureID": 431, + "Label": "115641-431 via Gap Junction from 115642 -> 12724", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115642, + "TargetID": 12724, + "Directional": false + } + ] + }, + { + "ID": 778, + "SourceStructureID": 440, + "TargetStructureID": 440, + "Label": "440-440 via Gap Junction from 122601 -> 122600", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122601, + "TargetID": 122600, + "Directional": false + } + ] + }, + { + "ID": 779, + "SourceStructureID": 450, + "TargetStructureID": 440, + "Label": "450-440 via Gap Junction from 118072 -> 118075, 118076 -> 122640, 118080 -> 118077, 122536 -> 122514, 122565 -> 122566", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118072, + "TargetID": 118075, + "Directional": false + }, + { + "SourceID": 118076, + "TargetID": 122640, + "Directional": false + }, + { + "SourceID": 118080, + "TargetID": 118077, + "Directional": false + }, + { + "SourceID": 122536, + "TargetID": 122514, + "Directional": false + }, + { + "SourceID": 122565, + "TargetID": 122566, + "Directional": false + } + ] + }, + { + "ID": 780, + "SourceStructureID": 458, + "TargetStructureID": 440, + "Label": "458-440 via Adherens from 64824 -> 64825", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64824, + "TargetID": 64825, + "Directional": false + } + ] + }, + { + "ID": 781, + "SourceStructureID": 7215, + "TargetStructureID": 440, + "Label": "7215-440 via Gap Junction from 118079 -> 118078", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118079, + "TargetID": 118078, + "Directional": false + } + ] + }, + { + "ID": 782, + "SourceStructureID": 8720, + "TargetStructureID": 440, + "Label": "8720-440 via Adherens from 60296 -> 60295", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60296, + "TargetID": 60295, + "Directional": false + } + ] + }, + { + "ID": 783, + "SourceStructureID": 440, + "TargetStructureID": 61752, + "Label": "440-61752 via Unknown from 122518 -> 122517", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 122518, + "TargetID": 122517, + "Directional": false + } + ] + }, + { + "ID": 784, + "SourceStructureID": 446, + "TargetStructureID": 7860, + "Label": "446-7860 via Gap Junction from 47915 -> 29659, 118019 -> 118018, 118025 -> 118027, 118028 -> 118023", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47915, + "TargetID": 29659, + "Directional": false + }, + { + "SourceID": 118019, + "TargetID": 118018, + "Directional": false + }, + { + "SourceID": 118025, + "TargetID": 118027, + "Directional": false + }, + { + "SourceID": 118028, + "TargetID": 118023, + "Directional": false + } + ] + }, + { + "ID": 785, + "SourceStructureID": 118014, + "TargetStructureID": 446, + "Label": "118014-446 via Gap Junction from 118015 -> 118013, 118017 -> 118016", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118015, + "TargetID": 118013, + "Directional": false + }, + { + "SourceID": 118017, + "TargetID": 118016, + "Directional": false + } + ] + }, + { + "ID": 786, + "SourceStructureID": 32273, + "TargetStructureID": 447, + "Label": "32273-447 via Adherens from 32280 -> 32281", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 32280, + "TargetID": 32281, + "Directional": false + } + ] + }, + { + "ID": 787, + "SourceStructureID": 450, + "TargetStructureID": 450, + "Label": "450-450 via Gap Junction from 118074 -> 118073", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118074, + "TargetID": 118073, + "Directional": false + } + ] + }, + { + "ID": 788, + "SourceStructureID": 6129, + "TargetStructureID": 450, + "Label": "6129-450 via Gap Junction from 117977 -> 117976", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117977, + "TargetID": 117976, + "Directional": false + } + ] + }, + { + "ID": 789, + "SourceStructureID": 6165, + "TargetStructureID": 450, + "Label": "6165-450 via Gap Junction from 118049 -> 118048, 122568 -> 122569", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118049, + "TargetID": 118048, + "Directional": false + }, + { + "SourceID": 122568, + "TargetID": 122569, + "Directional": false + } + ] + }, + { + "ID": 790, + "SourceStructureID": 7861, + "TargetStructureID": 450, + "Label": "7861-450 via Gap Junction from 10553 -> 10552, 20404 -> 20403, 122583 -> 122581", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10553, + "TargetID": 10552, + "Directional": false + }, + { + "SourceID": 20404, + "TargetID": 20403, + "Directional": false + }, + { + "SourceID": 122583, + "TargetID": 122581, + "Directional": false + } + ] + }, + { + "ID": 791, + "SourceStructureID": 450, + "TargetStructureID": 82677, + "Label": "450-82677 via Gap Junction from 122579 -> 122580", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122579, + "TargetID": 122580, + "Directional": false + } + ] + }, + { + "ID": 792, + "SourceStructureID": 450, + "TargetStructureID": 117990, + "Label": "450-117990 via Gap Junction from 122572 -> 122571", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122572, + "TargetID": 122571, + "Directional": false + } + ] + }, + { + "ID": 793, + "SourceStructureID": 6128, + "TargetStructureID": 452, + "Label": "6128-452 via Gap Junction from 20955 -> 21245, 21249 -> 21248, 21251 -> 21250", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 20955, + "TargetID": 21245, + "Directional": false + }, + { + "SourceID": 21249, + "TargetID": 21248, + "Directional": false + }, + { + "SourceID": 21251, + "TargetID": 21250, + "Directional": false + } + ] + }, + { + "ID": 794, + "SourceStructureID": 455, + "TargetStructureID": 458, + "Label": "455-458 via Gap Junction from 14563 -> 14535", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14563, + "TargetID": 14535, + "Directional": false + } + ] + }, + { + "ID": 795, + "SourceStructureID": 5545, + "TargetStructureID": 455, + "Label": "5545-455 via Gap Junction from 123783 -> 123784", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123783, + "TargetID": 123784, + "Directional": false + } + ] + }, + { + "ID": 796, + "SourceStructureID": 455, + "TargetStructureID": 130256, + "Label": "455-130256 via Gap Junction from 158485 -> 158484", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 158485, + "TargetID": 158484, + "Directional": false + } + ] + }, + { + "ID": 797, + "SourceStructureID": 456, + "TargetStructureID": 9787, + "Label": "456-9787 via Adherens from 12047 -> 12046", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 12047, + "TargetID": 12046, + "Directional": false + } + ] + }, + { + "ID": 798, + "SourceStructureID": 458, + "TargetStructureID": 460, + "Label": "458-460 via Adherens from 37518 -> 27151", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 37518, + "TargetID": 27151, + "Directional": false + } + ] + }, + { + "ID": 799, + "SourceStructureID": 458, + "TargetStructureID": 460, + "Label": "458-460 via Gap Junction from 46324 -> 46317, 46329 -> 46328", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46324, + "TargetID": 46317, + "Directional": false + }, + { + "SourceID": 46329, + "TargetID": 46328, + "Directional": false + } + ] + }, + { + "ID": 800, + "SourceStructureID": 968, + "TargetStructureID": 458, + "Label": "968-458 via Adherens from 37519 -> 37520", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 37519, + "TargetID": 37520, + "Directional": false + } + ] + }, + { + "ID": 801, + "SourceStructureID": 131503, + "TargetStructureID": 458, + "Label": "131503-458 via Adherens from 131609 -> 14501", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131609, + "TargetID": 14501, + "Directional": false + } + ] + }, + { + "ID": 802, + "SourceStructureID": 968, + "TargetStructureID": 460, + "Label": "968-460 via Gap Junction from 59860 -> 59859", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59860, + "TargetID": 59859, + "Directional": false + } + ] + }, + { + "ID": 803, + "SourceStructureID": 461, + "TargetStructureID": 483, + "Label": "461-483 via Gap Junction from 49767 -> 49797", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49767, + "TargetID": 49797, + "Directional": false + } + ] + }, + { + "ID": 804, + "SourceStructureID": 461, + "TargetStructureID": 4835, + "Label": "461-4835 via Gap Junction from 14685 -> 14686, 14880 -> 9042, 94774 -> 94773, 114684 -> 114683, 114782 -> 114686, 120415 -> 60131, 120417 -> 60127", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14685, + "TargetID": 14686, + "Directional": false + }, + { + "SourceID": 14880, + "TargetID": 9042, + "Directional": false + }, + { + "SourceID": 94774, + "TargetID": 94773, + "Directional": false + }, + { + "SourceID": 114684, + "TargetID": 114683, + "Directional": false + }, + { + "SourceID": 114782, + "TargetID": 114686, + "Directional": false + }, + { + "SourceID": 120415, + "TargetID": 60131, + "Directional": false + }, + { + "SourceID": 120417, + "TargetID": 60127, + "Directional": false + } + ] + }, + { + "ID": 805, + "SourceStructureID": 7564, + "TargetStructureID": 461, + "Label": "7564-461 via Gap Junction from 94853 -> 14847", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94853, + "TargetID": 14847, + "Directional": false + } + ] + }, + { + "ID": 806, + "SourceStructureID": 461, + "TargetStructureID": 71935, + "Label": "461-71935 via Unknown from 94778 -> 94779", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94778, + "TargetID": 94779, + "Directional": false + } + ] + }, + { + "ID": 807, + "SourceStructureID": 88082, + "TargetStructureID": 461, + "Label": "88082-461 via Unknown from 95155 -> 95154", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95155, + "TargetID": 95154, + "Directional": false + } + ] + }, + { + "ID": 808, + "SourceStructureID": 86799, + "TargetStructureID": 469, + "Label": "86799-469 via Touch from 87716 -> 87715", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 87716, + "TargetID": 87715, + "Directional": false + } + ] + }, + { + "ID": 809, + "SourceStructureID": 469, + "TargetStructureID": 105212, + "Label": "469-105212 via Unknown from 106217 -> 106215", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106217, + "TargetID": 106215, + "Directional": false + } + ] + }, + { + "ID": 810, + "SourceStructureID": 471, + "TargetStructureID": 9643, + "Label": "471-9643 via Unknown from 96047 -> 96046", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96047, + "TargetID": 96046, + "Directional": false + } + ] + }, + { + "ID": 811, + "SourceStructureID": 39530, + "TargetStructureID": 471, + "Label": "39530-471 via Adherens from 83499 -> 83500", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83499, + "TargetID": 83500, + "Directional": false + } + ] + }, + { + "ID": 812, + "SourceStructureID": 473, + "TargetStructureID": 9260, + "Label": "473-9260 via Neuroglial adherens from 79543 -> 79544", + "Type": "Neuroglial adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79543, + "TargetID": 79544, + "Directional": false + } + ] + }, + { + "ID": 813, + "SourceStructureID": 475, + "TargetStructureID": 4567, + "Label": "475-4567 via Unknown from 133743 -> 133742", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133743, + "TargetID": 133742, + "Directional": false + } + ] + }, + { + "ID": 814, + "SourceStructureID": 476, + "TargetStructureID": 476, + "Label": "476-476 via Adherens from 133712 -> 8397", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133712, + "TargetID": 8397, + "Directional": false + } + ] + }, + { + "ID": 815, + "SourceStructureID": 476, + "TargetStructureID": 476, + "Label": "476-476 via Gap Junction from 10473 -> 10445", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10473, + "TargetID": 10445, + "Directional": false + } + ] + }, + { + "ID": 816, + "SourceStructureID": 476, + "TargetStructureID": 483, + "Label": "476-483 via Adherens from 135082 -> 135081", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135082, + "TargetID": 135081, + "Directional": false + } + ] + }, + { + "ID": 817, + "SourceStructureID": 476, + "TargetStructureID": 483, + "Label": "476-483 via Gap Junction from 5728 -> 6726, 6733 -> 5667, 65196 -> 14974, 65204 -> 5707, 92335 -> 92336, 131479 -> 131480, 133741 -> 133740, 136295 -> 136296", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 5728, + "TargetID": 6726, + "Directional": false + }, + { + "SourceID": 6733, + "TargetID": 5667, + "Directional": false + }, + { + "SourceID": 65196, + "TargetID": 14974, + "Directional": false + }, + { + "SourceID": 65204, + "TargetID": 5707, + "Directional": false + }, + { + "SourceID": 92335, + "TargetID": 92336, + "Directional": false + }, + { + "SourceID": 131479, + "TargetID": 131480, + "Directional": false + }, + { + "SourceID": 133741, + "TargetID": 133740, + "Directional": false + }, + { + "SourceID": 136295, + "TargetID": 136296, + "Directional": false + } + ] + }, + { + "ID": 818, + "SourceStructureID": 485, + "TargetStructureID": 476, + "Label": "485-476 via Adherens from 148003 -> 148002", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148003, + "TargetID": 148002, + "Directional": false + } + ] + }, + { + "ID": 819, + "SourceStructureID": 485, + "TargetStructureID": 476, + "Label": "485-476 via Gap Junction from 65188 -> 2287, 134217 -> 134218", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 65188, + "TargetID": 2287, + "Directional": false + }, + { + "SourceID": 134217, + "TargetID": 134218, + "Directional": false + } + ] + }, + { + "ID": 820, + "SourceStructureID": 476, + "TargetStructureID": 514, + "Label": "476-514 via Adherens from 16545 -> 16544", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 16545, + "TargetID": 16544, + "Directional": false + } + ] + }, + { + "ID": 821, + "SourceStructureID": 476, + "TargetStructureID": 514, + "Label": "476-514 via Gap Junction from 2397 -> 515, 2439 -> 5755, 2472 -> 5047, 3219 -> 2463, 3279 -> 3320, 3344 -> 5786, 5724 -> 2239, 5754 -> 3568, 5760 -> 3546, 6170 -> 3528, 9233 -> 3331, 10628 -> 10629, 15069 -> 15068, 16543 -> 16542", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 2397, + "TargetID": 515, + "Directional": false + }, + { + "SourceID": 2439, + "TargetID": 5755, + "Directional": false + }, + { + "SourceID": 2472, + "TargetID": 5047, + "Directional": false + }, + { + "SourceID": 3219, + "TargetID": 2463, + "Directional": false + }, + { + "SourceID": 3279, + "TargetID": 3320, + "Directional": false + }, + { + "SourceID": 3344, + "TargetID": 5786, + "Directional": false + }, + { + "SourceID": 5724, + "TargetID": 2239, + "Directional": false + }, + { + "SourceID": 5754, + "TargetID": 3568, + "Directional": false + }, + { + "SourceID": 5760, + "TargetID": 3546, + "Directional": false + }, + { + "SourceID": 6170, + "TargetID": 3528, + "Directional": false + }, + { + "SourceID": 9233, + "TargetID": 3331, + "Directional": false + }, + { + "SourceID": 10628, + "TargetID": 10629, + "Directional": false + }, + { + "SourceID": 15069, + "TargetID": 15068, + "Directional": false + }, + { + "SourceID": 16543, + "TargetID": 16542, + "Directional": false + } + ] + }, + { + "ID": 822, + "SourceStructureID": 476, + "TargetStructureID": 514, + "Label": "476-514 via Postsynapse from 25373 -> 3334", + "Type": "Postsynapse", + "Directional": false, + "Links": [ + { + "SourceID": 25373, + "TargetID": 3334, + "Directional": false + } + ] + }, + { + "ID": 823, + "SourceStructureID": 476, + "TargetStructureID": 591, + "Label": "476-591 via Adherens from 24131 -> 24130, 133685 -> 133686", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 24131, + "TargetID": 24130, + "Directional": false + }, + { + "SourceID": 133685, + "TargetID": 133686, + "Directional": false + } + ] + }, + { + "ID": 824, + "SourceStructureID": 476, + "TargetStructureID": 2610, + "Label": "476-2610 via Gap Junction from 7025 -> 2757, 17912 -> 17911", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 7025, + "TargetID": 2757, + "Directional": false + }, + { + "SourceID": 17912, + "TargetID": 17911, + "Directional": false + } + ] + }, + { + "ID": 825, + "SourceStructureID": 476, + "TargetStructureID": 3257, + "Label": "476-3257 via Gap Junction from 3201 -> 18387, 8231 -> 8230, 8232 -> 3180, 8500 -> 4798, 14345 -> 14344, 16578 -> 3200, 16578 -> 3526, 18386 -> 18385, 65184 -> 3168", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 3201, + "TargetID": 18387, + "Directional": false + }, + { + "SourceID": 8231, + "TargetID": 8230, + "Directional": false + }, + { + "SourceID": 8232, + "TargetID": 3180, + "Directional": false + }, + { + "SourceID": 8500, + "TargetID": 4798, + "Directional": false + }, + { + "SourceID": 14345, + "TargetID": 14344, + "Directional": false + }, + { + "SourceID": 16578, + "TargetID": 3200, + "Directional": false + }, + { + "SourceID": 16578, + "TargetID": 3526, + "Directional": false + }, + { + "SourceID": 18386, + "TargetID": 18385, + "Directional": false + }, + { + "SourceID": 65184, + "TargetID": 3168, + "Directional": false + } + ] + }, + { + "ID": 826, + "SourceStructureID": 3679, + "TargetStructureID": 476, + "Label": "3679-476 via Gap Junction from 5051 -> 2470", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 5051, + "TargetID": 2470, + "Directional": false + } + ] + }, + { + "ID": 827, + "SourceStructureID": 4569, + "TargetStructureID": 476, + "Label": "4569-476 via Gap Junction from 4747 -> 3158, 4749 -> 3160, 14963 -> 14968, 15992 -> 14971, 47501 -> 5666, 52503 -> 2209, 65203 -> 5708", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 4747, + "TargetID": 3158, + "Directional": false + }, + { + "SourceID": 4749, + "TargetID": 3160, + "Directional": false + }, + { + "SourceID": 14963, + "TargetID": 14968, + "Directional": false + }, + { + "SourceID": 15992, + "TargetID": 14971, + "Directional": false + }, + { + "SourceID": 47501, + "TargetID": 5666, + "Directional": false + }, + { + "SourceID": 52503, + "TargetID": 2209, + "Directional": false + }, + { + "SourceID": 65203, + "TargetID": 5708, + "Directional": false + } + ] + }, + { + "ID": 828, + "SourceStructureID": 4570, + "TargetStructureID": 476, + "Label": "4570-476 via Gap Junction from 65185 -> 3170, 123176 -> 5712, 131478 -> 14984", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 65185, + "TargetID": 3170, + "Directional": false + }, + { + "SourceID": 123176, + "TargetID": 5712, + "Directional": false + }, + { + "SourceID": 131478, + "TargetID": 14984, + "Directional": false + } + ] + }, + { + "ID": 829, + "SourceStructureID": 476, + "TargetStructureID": 4835, + "Label": "476-4835 via Gap Junction from 8395 -> 8394, 36737 -> 36736, 36740 -> 36739, 36744 -> 14962", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 8395, + "TargetID": 8394, + "Directional": false + }, + { + "SourceID": 36737, + "TargetID": 36736, + "Directional": false + }, + { + "SourceID": 36740, + "TargetID": 36739, + "Directional": false + }, + { + "SourceID": 36744, + "TargetID": 14962, + "Directional": false + } + ] + }, + { + "ID": 830, + "SourceStructureID": 5281, + "TargetStructureID": 476, + "Label": "5281-476 via Adherens from 65195 -> 2228", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65195, + "TargetID": 2228, + "Directional": false + } + ] + }, + { + "ID": 831, + "SourceStructureID": 476, + "TargetStructureID": 5394, + "Label": "476-5394 via Adherens from 87747 -> 87746, 87749 -> 3205", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87747, + "TargetID": 87746, + "Directional": false + }, + { + "SourceID": 87749, + "TargetID": 3205, + "Directional": false + } + ] + }, + { + "ID": 832, + "SourceStructureID": 6153, + "TargetStructureID": 476, + "Label": "6153-476 via Gap Junction from 8433 -> 5684, 16483 -> 8420, 17355 -> 17354, 31959 -> 5676, 65198 -> 8398", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 8433, + "TargetID": 5684, + "Directional": false + }, + { + "SourceID": 16483, + "TargetID": 8420, + "Directional": false + }, + { + "SourceID": 17355, + "TargetID": 17354, + "Directional": false + }, + { + "SourceID": 31959, + "TargetID": 5676, + "Directional": false + }, + { + "SourceID": 65198, + "TargetID": 8398, + "Directional": false + } + ] + }, + { + "ID": 833, + "SourceStructureID": 6155, + "TargetStructureID": 476, + "Label": "6155-476 via Gap Junction from 15608 -> 2281, 16577 -> 2279, 48315 -> 2285, 49085 -> 2283, 108247 -> 108246", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 15608, + "TargetID": 2281, + "Directional": false + }, + { + "SourceID": 16577, + "TargetID": 2279, + "Directional": false + }, + { + "SourceID": 48315, + "TargetID": 2285, + "Directional": false + }, + { + "SourceID": 49085, + "TargetID": 2283, + "Directional": false + }, + { + "SourceID": 108247, + "TargetID": 108246, + "Directional": false + } + ] + }, + { + "ID": 834, + "SourceStructureID": 476, + "TargetStructureID": 6156, + "Label": "476-6156 via Adherens from 133434 -> 133435, 133482 -> 15060, 135151 -> 135150", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133434, + "TargetID": 133435, + "Directional": false + }, + { + "SourceID": 133482, + "TargetID": 15060, + "Directional": false + }, + { + "SourceID": 135151, + "TargetID": 135150, + "Directional": false + } + ] + }, + { + "ID": 835, + "SourceStructureID": 6156, + "TargetStructureID": 476, + "Label": "6156-476 via Gap Junction from 18011 -> 3314, 65194 -> 5726, 117560 -> 117559, 117586 -> 117587, 133202 -> 133201, 133218 -> 133217, 133220 -> 133219", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 18011, + "TargetID": 3314, + "Directional": false + }, + { + "SourceID": 65194, + "TargetID": 5726, + "Directional": false + }, + { + "SourceID": 117560, + "TargetID": 117559, + "Directional": false + }, + { + "SourceID": 117586, + "TargetID": 117587, + "Directional": false + }, + { + "SourceID": 133202, + "TargetID": 133201, + "Directional": false + }, + { + "SourceID": 133218, + "TargetID": 133217, + "Directional": false + }, + { + "SourceID": 133220, + "TargetID": 133219, + "Directional": false + } + ] + }, + { + "ID": 836, + "SourceStructureID": 476, + "TargetStructureID": 9643, + "Label": "476-9643 via Adherens from 9666 -> 9665", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 9666, + "TargetID": 9665, + "Directional": false + } + ] + }, + { + "ID": 837, + "SourceStructureID": 31960, + "TargetStructureID": 476, + "Label": "31960-476 via Adherens from 31964 -> 5682, 31965 -> 5681", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 31964, + "TargetID": 5682, + "Directional": false + }, + { + "SourceID": 31965, + "TargetID": 5681, + "Directional": false + } + ] + }, + { + "ID": 838, + "SourceStructureID": 36276, + "TargetStructureID": 476, + "Label": "36276-476 via Adherens from 36279 -> 2299", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 36279, + "TargetID": 2299, + "Directional": false + } + ] + }, + { + "ID": 839, + "SourceStructureID": 476, + "TargetStructureID": 36293, + "Label": "476-36293 via Adherens from 135092 -> 135093", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135092, + "TargetID": 135093, + "Directional": false + } + ] + }, + { + "ID": 840, + "SourceStructureID": 36512, + "TargetStructureID": 476, + "Label": "36512-476 via Adherens from 36515 -> 2392", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 36515, + "TargetID": 2392, + "Directional": false + } + ] + }, + { + "ID": 841, + "SourceStructureID": 36650, + "TargetStructureID": 476, + "Label": "36650-476 via Adherens from 93021 -> 93022", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93021, + "TargetID": 93022, + "Directional": false + } + ] + }, + { + "ID": 842, + "SourceStructureID": 476, + "TargetStructureID": 46741, + "Label": "476-46741 via Touch from 90194 -> 90193", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 90194, + "TargetID": 90193, + "Directional": false + } + ] + }, + { + "ID": 843, + "SourceStructureID": 71935, + "TargetStructureID": 476, + "Label": "71935-476 via Gap Junction from 71940 -> 71939", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71940, + "TargetID": 71939, + "Directional": false + } + ] + }, + { + "ID": 844, + "SourceStructureID": 89420, + "TargetStructureID": 476, + "Label": "89420-476 via Unknown from 89435 -> 89436", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89435, + "TargetID": 89436, + "Directional": false + } + ] + }, + { + "ID": 845, + "SourceStructureID": 89984, + "TargetStructureID": 476, + "Label": "89984-476 via Adherens from 90095 -> 90096", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90095, + "TargetID": 90096, + "Directional": false + } + ] + }, + { + "ID": 846, + "SourceStructureID": 89984, + "TargetStructureID": 476, + "Label": "89984-476 via Unknown from 90018 -> 90017, 90020 -> 90019, 90021 -> 90022, 90023 -> 90024", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90018, + "TargetID": 90017, + "Directional": false + }, + { + "SourceID": 90020, + "TargetID": 90019, + "Directional": false + }, + { + "SourceID": 90021, + "TargetID": 90022, + "Directional": false + }, + { + "SourceID": 90023, + "TargetID": 90024, + "Directional": false + } + ] + }, + { + "ID": 847, + "SourceStructureID": 476, + "TargetStructureID": 97024, + "Label": "476-97024 via Adherens from 97070 -> 97067, 97120 -> 97121, 97122 -> 97123", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97070, + "TargetID": 97067, + "Directional": false + }, + { + "SourceID": 97120, + "TargetID": 97121, + "Directional": false + }, + { + "SourceID": 97122, + "TargetID": 97123, + "Directional": false + } + ] + }, + { + "ID": 848, + "SourceStructureID": 98127, + "TargetStructureID": 476, + "Label": "98127-476 via Adherens from 98135 -> 5662", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98135, + "TargetID": 5662, + "Directional": false + } + ] + }, + { + "ID": 849, + "SourceStructureID": 4568, + "TargetStructureID": 478, + "Label": "4568-478 via Gap Junction from 21695 -> 21696", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 21695, + "TargetID": 21696, + "Directional": false + } + ] + }, + { + "ID": 850, + "SourceStructureID": 83461, + "TargetStructureID": 478, + "Label": "83461-478 via Gap Junction from 83468 -> 83469", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 83468, + "TargetID": 83469, + "Directional": false + } + ] + }, + { + "ID": 851, + "SourceStructureID": 97828, + "TargetStructureID": 478, + "Label": "97828-478 via Unknown from 97842 -> 97843", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97842, + "TargetID": 97843, + "Directional": false + } + ] + }, + { + "ID": 852, + "SourceStructureID": 479, + "TargetStructureID": 6155, + "Label": "479-6155 via Unknown from 121707 -> 121706", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121707, + "TargetID": 121706, + "Directional": false + } + ] + }, + { + "ID": 853, + "SourceStructureID": 479, + "TargetStructureID": 47195, + "Label": "479-47195 via Gap Junction from 58753 -> 58752", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 58753, + "TargetID": 58752, + "Directional": false + } + ] + }, + { + "ID": 854, + "SourceStructureID": 479, + "TargetStructureID": 121714, + "Label": "479-121714 via Gap Junction from 56497 -> 121715", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56497, + "TargetID": 121715, + "Directional": false + } + ] + }, + { + "ID": 855, + "SourceStructureID": 121723, + "TargetStructureID": 479, + "Label": "121723-479 via Unknown from 121724 -> 121722", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121724, + "TargetID": 121722, + "Directional": false + } + ] + }, + { + "ID": 856, + "SourceStructureID": 121727, + "TargetStructureID": 479, + "Label": "121727-479 via Unknown from 121728 -> 121729", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121728, + "TargetID": 121729, + "Directional": false + } + ] + }, + { + "ID": 857, + "SourceStructureID": 121749, + "TargetStructureID": 479, + "Label": "121749-479 via Gap Junction from 121750 -> 121748", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121750, + "TargetID": 121748, + "Directional": false + } + ] + }, + { + "ID": 858, + "SourceStructureID": 121757, + "TargetStructureID": 479, + "Label": "121757-479 via Gap Junction from 121758 -> 115655", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121758, + "TargetID": 115655, + "Directional": false + } + ] + }, + { + "ID": 859, + "SourceStructureID": 479, + "TargetStructureID": 121763, + "Label": "479-121763 via Unknown from 121762 -> 121764", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121762, + "TargetID": 121764, + "Directional": false + } + ] + }, + { + "ID": 860, + "SourceStructureID": 121779, + "TargetStructureID": 479, + "Label": "121779-479 via Gap Junction from 121780 -> 121778", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121780, + "TargetID": 121778, + "Directional": false + } + ] + }, + { + "ID": 861, + "SourceStructureID": 483, + "TargetStructureID": 483, + "Label": "483-483 via Gap Junction from 134091 -> 134090", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 134091, + "TargetID": 134090, + "Directional": false + } + ] + }, + { + "ID": 862, + "SourceStructureID": 485, + "TargetStructureID": 483, + "Label": "485-483 via Adherens from 101726 -> 101727", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 101726, + "TargetID": 101727, + "Directional": false + } + ] + }, + { + "ID": 863, + "SourceStructureID": 483, + "TargetStructureID": 485, + "Label": "483-485 via Gap Junction from 50436 -> 50435, 99195 -> 99196, 101720 -> 101719, 159487 -> 159486", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50436, + "TargetID": 50435, + "Directional": false + }, + { + "SourceID": 99195, + "TargetID": 99196, + "Directional": false + }, + { + "SourceID": 101720, + "TargetID": 101719, + "Directional": false + }, + { + "SourceID": 159487, + "TargetID": 159486, + "Directional": false + } + ] + }, + { + "ID": 864, + "SourceStructureID": 483, + "TargetStructureID": 514, + "Label": "483-514 via Gap Junction from 6806 -> 3342", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 6806, + "TargetID": 3342, + "Directional": false + } + ] + }, + { + "ID": 865, + "SourceStructureID": 483, + "TargetStructureID": 525, + "Label": "483-525 via BC Conventional Synapse from 97783 -> 97782", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 97783, + "TargetID": 97782, + "Directional": false + } + ] + }, + { + "ID": 866, + "SourceStructureID": 483, + "TargetStructureID": 1724, + "Label": "483-1724 via Adherens from 101900 -> 101899", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 101900, + "TargetID": 101899, + "Directional": false + } + ] + }, + { + "ID": 867, + "SourceStructureID": 4570, + "TargetStructureID": 483, + "Label": "4570-483 via Adherens from 136301 -> 136300", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136301, + "TargetID": 136300, + "Directional": false + } + ] + }, + { + "ID": 868, + "SourceStructureID": 4570, + "TargetStructureID": 483, + "Label": "4570-483 via Gap Junction from 94573 -> 94572", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94573, + "TargetID": 94572, + "Directional": false + } + ] + }, + { + "ID": 869, + "SourceStructureID": 4570, + "TargetStructureID": 483, + "Label": "4570-483 via Touch from 94588 -> 94587", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 94588, + "TargetID": 94587, + "Directional": false + } + ] + }, + { + "ID": 870, + "SourceStructureID": 483, + "TargetStructureID": 4890, + "Label": "483-4890 via Adherens from 134020 -> 134021, 134044 -> 134043", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134020, + "TargetID": 134021, + "Directional": false + }, + { + "SourceID": 134044, + "TargetID": 134043, + "Directional": false + } + ] + }, + { + "ID": 871, + "SourceStructureID": 483, + "TargetStructureID": 4890, + "Label": "483-4890 via Unknown from 134072 -> 134073", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134072, + "TargetID": 134073, + "Directional": false + } + ] + }, + { + "ID": 872, + "SourceStructureID": 483, + "TargetStructureID": 5117, + "Label": "483-5117 via Adherens from 71280 -> 71278", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71280, + "TargetID": 71278, + "Directional": false + } + ] + }, + { + "ID": 873, + "SourceStructureID": 5487, + "TargetStructureID": 483, + "Label": "5487-483 via Unknown from 134070 -> 134071", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134070, + "TargetID": 134071, + "Directional": false + } + ] + }, + { + "ID": 874, + "SourceStructureID": 483, + "TargetStructureID": 6073, + "Label": "483-6073 via Adherens from 103380 -> 103379", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103380, + "TargetID": 103379, + "Directional": false + } + ] + }, + { + "ID": 875, + "SourceStructureID": 483, + "TargetStructureID": 6153, + "Label": "483-6153 via Gap Junction from 8426 -> 8425, 20338 -> 20339, 94708 -> 94709, 94742 -> 94743", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 8426, + "TargetID": 8425, + "Directional": false + }, + { + "SourceID": 20338, + "TargetID": 20339, + "Directional": false + }, + { + "SourceID": 94708, + "TargetID": 94709, + "Directional": false + }, + { + "SourceID": 94742, + "TargetID": 94743, + "Directional": false + } + ] + }, + { + "ID": 876, + "SourceStructureID": 6997, + "TargetStructureID": 483, + "Label": "6997-483 via Adherens from 22142 -> 81486", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 22142, + "TargetID": 81486, + "Directional": false + } + ] + }, + { + "ID": 877, + "SourceStructureID": 6997, + "TargetStructureID": 483, + "Label": "6997-483 via Gap Junction from 97784 -> 97785", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 97784, + "TargetID": 97785, + "Directional": false + } + ] + }, + { + "ID": 878, + "SourceStructureID": 18282, + "TargetStructureID": 483, + "Label": "18282-483 via Adherens from 102475 -> 20352", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 102475, + "TargetID": 20352, + "Directional": false + } + ] + }, + { + "ID": 879, + "SourceStructureID": 483, + "TargetStructureID": 34601, + "Label": "483-34601 via Gap Junction from 60640 -> 60639", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60640, + "TargetID": 60639, + "Directional": false + } + ] + }, + { + "ID": 880, + "SourceStructureID": 40010, + "TargetStructureID": 483, + "Label": "40010-483 via Adherens from 71350 -> 71349", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71350, + "TargetID": 71349, + "Directional": false + } + ] + }, + { + "ID": 881, + "SourceStructureID": 49489, + "TargetStructureID": 483, + "Label": "49489-483 via Adherens from 103714 -> 60198", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103714, + "TargetID": 60198, + "Directional": false + } + ] + }, + { + "ID": 882, + "SourceStructureID": 59285, + "TargetStructureID": 483, + "Label": "59285-483 via Adherens from 59288 -> 59287", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59288, + "TargetID": 59287, + "Directional": false + } + ] + }, + { + "ID": 883, + "SourceStructureID": 59422, + "TargetStructureID": 483, + "Label": "59422-483 via Adherens from 134089 -> 134088", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134089, + "TargetID": 134088, + "Directional": false + } + ] + }, + { + "ID": 884, + "SourceStructureID": 59429, + "TargetStructureID": 483, + "Label": "59429-483 via Postsynapse from 59430 -> 59428", + "Type": "Postsynapse", + "Directional": false, + "Links": [ + { + "SourceID": 59430, + "TargetID": 59428, + "Directional": false + } + ] + }, + { + "ID": 885, + "SourceStructureID": 59455, + "TargetStructureID": 483, + "Label": "59455-483 via Adherens from 59456 -> 59454", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59456, + "TargetID": 59454, + "Directional": false + } + ] + }, + { + "ID": 886, + "SourceStructureID": 59629, + "TargetStructureID": 483, + "Label": "59629-483 via Adherens from 134095 -> 134094", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134095, + "TargetID": 134094, + "Directional": false + } + ] + }, + { + "ID": 887, + "SourceStructureID": 60215, + "TargetStructureID": 483, + "Label": "60215-483 via Adherens from 60216 -> 60214", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60216, + "TargetID": 60214, + "Directional": false + } + ] + }, + { + "ID": 888, + "SourceStructureID": 60218, + "TargetStructureID": 483, + "Label": "60218-483 via Adherens from 148237 -> 148238", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148237, + "TargetID": 148238, + "Directional": false + } + ] + }, + { + "ID": 889, + "SourceStructureID": 60334, + "TargetStructureID": 483, + "Label": "60334-483 via Adherens from 60335 -> 60333", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60335, + "TargetID": 60333, + "Directional": false + } + ] + }, + { + "ID": 890, + "SourceStructureID": 483, + "TargetStructureID": 60368, + "Label": "483-60368 via Adherens from 60367 -> 60369", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60367, + "TargetID": 60369, + "Directional": false + } + ] + }, + { + "ID": 891, + "SourceStructureID": 483, + "TargetStructureID": 61960, + "Label": "483-61960 via Adherens from 96604 -> 96605", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96604, + "TargetID": 96605, + "Directional": false + } + ] + }, + { + "ID": 892, + "SourceStructureID": 65267, + "TargetStructureID": 483, + "Label": "65267-483 via Unknown from 134053 -> 134052, 134068 -> 134069, 148234 -> 148235", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134053, + "TargetID": 134052, + "Directional": false + }, + { + "SourceID": 134068, + "TargetID": 134069, + "Directional": false + }, + { + "SourceID": 148234, + "TargetID": 148235, + "Directional": false + } + ] + }, + { + "ID": 893, + "SourceStructureID": 483, + "TargetStructureID": 70599, + "Label": "483-70599 via Unknown from 134057 -> 134056", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134057, + "TargetID": 134056, + "Directional": false + } + ] + }, + { + "ID": 894, + "SourceStructureID": 483, + "TargetStructureID": 71133, + "Label": "483-71133 via Adherens from 71131 -> 71134", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71131, + "TargetID": 71134, + "Directional": false + } + ] + }, + { + "ID": 895, + "SourceStructureID": 71215, + "TargetStructureID": 483, + "Label": "71215-483 via Unknown from 134096 -> 134097", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134096, + "TargetID": 134097, + "Directional": false + } + ] + }, + { + "ID": 896, + "SourceStructureID": 71288, + "TargetStructureID": 483, + "Label": "71288-483 via Adherens from 71289 -> 71287, 71292 -> 71293", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71289, + "TargetID": 71287, + "Directional": false + }, + { + "SourceID": 71292, + "TargetID": 71293, + "Directional": false + } + ] + }, + { + "ID": 897, + "SourceStructureID": 483, + "TargetStructureID": 71357, + "Label": "483-71357 via Unknown from 71356 -> 71358", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 71356, + "TargetID": 71358, + "Directional": false + } + ] + }, + { + "ID": 898, + "SourceStructureID": 71379, + "TargetStructureID": 483, + "Label": "71379-483 via Gap Junction from 71380 -> 71381", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71380, + "TargetID": 71381, + "Directional": false + } + ] + }, + { + "ID": 899, + "SourceStructureID": 483, + "TargetStructureID": 85748, + "Label": "483-85748 via Adherens from 85762 -> 85763", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85762, + "TargetID": 85763, + "Directional": false + } + ] + }, + { + "ID": 900, + "SourceStructureID": 92313, + "TargetStructureID": 483, + "Label": "92313-483 via Gap Junction from 92314 -> 92312", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92314, + "TargetID": 92312, + "Directional": false + } + ] + }, + { + "ID": 901, + "SourceStructureID": 483, + "TargetStructureID": 92313, + "Label": "483-92313 via Unknown from 92318 -> 92317", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92318, + "TargetID": 92317, + "Directional": false + } + ] + }, + { + "ID": 902, + "SourceStructureID": 92320, + "TargetStructureID": 483, + "Label": "92320-483 via Unknown from 92321 -> 92319", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92321, + "TargetID": 92319, + "Directional": false + } + ] + }, + { + "ID": 903, + "SourceStructureID": 483, + "TargetStructureID": 92331, + "Label": "483-92331 via Gap Junction from 92330 -> 92333", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92330, + "TargetID": 92333, + "Directional": false + } + ] + }, + { + "ID": 904, + "SourceStructureID": 483, + "TargetStructureID": 94601, + "Label": "483-94601 via Unknown from 134037 -> 134038", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134037, + "TargetID": 134038, + "Directional": false + } + ] + }, + { + "ID": 905, + "SourceStructureID": 483, + "TargetStructureID": 94607, + "Label": "483-94607 via Gap Junction from 94606 -> 94608, 94609 -> 94605", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94606, + "TargetID": 94608, + "Directional": false + }, + { + "SourceID": 94609, + "TargetID": 94605, + "Directional": false + } + ] + }, + { + "ID": 906, + "SourceStructureID": 96610, + "TargetStructureID": 483, + "Label": "96610-483 via Adherens from 96611 -> 96609", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96611, + "TargetID": 96609, + "Directional": false + } + ] + }, + { + "ID": 907, + "SourceStructureID": 483, + "TargetStructureID": 97753, + "Label": "483-97753 via Unknown from 97752 -> 97756", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97752, + "TargetID": 97756, + "Directional": false + } + ] + }, + { + "ID": 908, + "SourceStructureID": 483, + "TargetStructureID": 102042, + "Label": "483-102042 via Adherens from 102044 -> 102043", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 102044, + "TargetID": 102043, + "Directional": false + } + ] + }, + { + "ID": 909, + "SourceStructureID": 102042, + "TargetStructureID": 483, + "Label": "102042-483 via Gap Junction from 102047 -> 94563, 102049 -> 102048", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 102047, + "TargetID": 94563, + "Directional": false + }, + { + "SourceID": 102049, + "TargetID": 102048, + "Directional": false + } + ] + }, + { + "ID": 910, + "SourceStructureID": 483, + "TargetStructureID": 102194, + "Label": "483-102194 via Unknown from 134004 -> 134005", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134004, + "TargetID": 134005, + "Directional": false + } + ] + }, + { + "ID": 911, + "SourceStructureID": 483, + "TargetStructureID": 102269, + "Label": "483-102269 via Unknown from 102271 -> 102270", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102271, + "TargetID": 102270, + "Directional": false + } + ] + }, + { + "ID": 912, + "SourceStructureID": 483, + "TargetStructureID": 102307, + "Label": "483-102307 via Unknown from 102309 -> 102308", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102309, + "TargetID": 102308, + "Directional": false + } + ] + }, + { + "ID": 913, + "SourceStructureID": 483, + "TargetStructureID": 102318, + "Label": "483-102318 via Adherens from 134006 -> 134007", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134006, + "TargetID": 134007, + "Directional": false + } + ] + }, + { + "ID": 914, + "SourceStructureID": 483, + "TargetStructureID": 102399, + "Label": "483-102399 via Unknown from 102401 -> 102402", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102401, + "TargetID": 102402, + "Directional": false + } + ] + }, + { + "ID": 915, + "SourceStructureID": 102412, + "TargetStructureID": 483, + "Label": "102412-483 via Unknown from 134077 -> 134078", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134077, + "TargetID": 134078, + "Directional": false + } + ] + }, + { + "ID": 916, + "SourceStructureID": 483, + "TargetStructureID": 102440, + "Label": "483-102440 via Unknown from 102448 -> 102447, 134081 -> 134080", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102448, + "TargetID": 102447, + "Directional": false + }, + { + "SourceID": 134081, + "TargetID": 134080, + "Directional": false + } + ] + }, + { + "ID": 917, + "SourceStructureID": 102531, + "TargetStructureID": 483, + "Label": "102531-483 via Unknown from 102537 -> 102536", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102537, + "TargetID": 102536, + "Directional": false + } + ] + }, + { + "ID": 918, + "SourceStructureID": 102565, + "TargetStructureID": 483, + "Label": "102565-483 via Adherens from 102566 -> 6712", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 102566, + "TargetID": 6712, + "Directional": false + } + ] + }, + { + "ID": 919, + "SourceStructureID": 102615, + "TargetStructureID": 483, + "Label": "102615-483 via Adherens from 102624 -> 94565", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 102624, + "TargetID": 94565, + "Directional": false + } + ] + }, + { + "ID": 920, + "SourceStructureID": 483, + "TargetStructureID": 102618, + "Label": "483-102618 via Unknown from 102620 -> 102619", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102620, + "TargetID": 102619, + "Directional": false + } + ] + }, + { + "ID": 921, + "SourceStructureID": 102629, + "TargetStructureID": 483, + "Label": "102629-483 via Unknown from 134010 -> 134009", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134010, + "TargetID": 134009, + "Directional": false + } + ] + }, + { + "ID": 922, + "SourceStructureID": 483, + "TargetStructureID": 102720, + "Label": "483-102720 via Unknown from 134011 -> 134012", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134011, + "TargetID": 134012, + "Directional": false + } + ] + }, + { + "ID": 923, + "SourceStructureID": 102773, + "TargetStructureID": 483, + "Label": "102773-483 via Adherens from 134014 -> 134013", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134014, + "TargetID": 134013, + "Directional": false + } + ] + }, + { + "ID": 924, + "SourceStructureID": 483, + "TargetStructureID": 102782, + "Label": "483-102782 via Unknown from 102784 -> 102783", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102784, + "TargetID": 102783, + "Directional": false + } + ] + }, + { + "ID": 925, + "SourceStructureID": 102828, + "TargetStructureID": 483, + "Label": "102828-483 via Unknown from 102831 -> 102830", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102831, + "TargetID": 102830, + "Directional": false + } + ] + }, + { + "ID": 926, + "SourceStructureID": 102832, + "TargetStructureID": 483, + "Label": "102832-483 via Adherens from 102837 -> 102836", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 102837, + "TargetID": 102836, + "Directional": false + } + ] + }, + { + "ID": 927, + "SourceStructureID": 102832, + "TargetStructureID": 483, + "Label": "102832-483 via Unknown from 102834 -> 102835", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102834, + "TargetID": 102835, + "Directional": false + } + ] + }, + { + "ID": 928, + "SourceStructureID": 102848, + "TargetStructureID": 483, + "Label": "102848-483 via Adherens from 102852 -> 94569", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 102852, + "TargetID": 94569, + "Directional": false + } + ] + }, + { + "ID": 929, + "SourceStructureID": 102848, + "TargetStructureID": 483, + "Label": "102848-483 via Unknown from 134059 -> 134058", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134059, + "TargetID": 134058, + "Directional": false + } + ] + }, + { + "ID": 930, + "SourceStructureID": 483, + "TargetStructureID": 102873, + "Label": "483-102873 via Unknown from 102875 -> 102874", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102875, + "TargetID": 102874, + "Directional": false + } + ] + }, + { + "ID": 931, + "SourceStructureID": 483, + "TargetStructureID": 103050, + "Label": "483-103050 via Unknown from 103052 -> 103051", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103052, + "TargetID": 103051, + "Directional": false + } + ] + }, + { + "ID": 932, + "SourceStructureID": 103054, + "TargetStructureID": 483, + "Label": "103054-483 via Adherens from 134018 -> 134017", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134018, + "TargetID": 134017, + "Directional": false + } + ] + }, + { + "ID": 933, + "SourceStructureID": 103084, + "TargetStructureID": 483, + "Label": "103084-483 via Adherens from 134019 -> 94585", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134019, + "TargetID": 94585, + "Directional": false + } + ] + }, + { + "ID": 934, + "SourceStructureID": 483, + "TargetStructureID": 103185, + "Label": "483-103185 via Unknown from 134062 -> 134063", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134062, + "TargetID": 134063, + "Directional": false + } + ] + }, + { + "ID": 935, + "SourceStructureID": 103195, + "TargetStructureID": 483, + "Label": "103195-483 via Adherens from 103199 -> 103198", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103199, + "TargetID": 103198, + "Directional": false + } + ] + }, + { + "ID": 936, + "SourceStructureID": 483, + "TargetStructureID": 103258, + "Label": "483-103258 via Adherens from 134025 -> 134026", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134025, + "TargetID": 134026, + "Directional": false + } + ] + }, + { + "ID": 937, + "SourceStructureID": 103284, + "TargetStructureID": 483, + "Label": "103284-483 via Gap Junction from 103285 -> 103283", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 103285, + "TargetID": 103283, + "Directional": false + } + ] + }, + { + "ID": 938, + "SourceStructureID": 483, + "TargetStructureID": 103293, + "Label": "483-103293 via Unknown from 134027 -> 134028", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134027, + "TargetID": 134028, + "Directional": false + } + ] + }, + { + "ID": 939, + "SourceStructureID": 483, + "TargetStructureID": 103319, + "Label": "483-103319 via Unknown from 134065 -> 134064, 148240 -> 148239", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134065, + "TargetID": 134064, + "Directional": false + }, + { + "SourceID": 148240, + "TargetID": 148239, + "Directional": false + } + ] + }, + { + "ID": 940, + "SourceStructureID": 103324, + "TargetStructureID": 483, + "Label": "103324-483 via Unknown from 103325 -> 103323", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103325, + "TargetID": 103323, + "Directional": false + } + ] + }, + { + "ID": 941, + "SourceStructureID": 483, + "TargetStructureID": 103342, + "Label": "483-103342 via Unknown from 134031 -> 134032", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134031, + "TargetID": 134032, + "Directional": false + } + ] + }, + { + "ID": 942, + "SourceStructureID": 103356, + "TargetStructureID": 483, + "Label": "103356-483 via Unknown from 134034 -> 134033", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134034, + "TargetID": 134033, + "Directional": false + } + ] + }, + { + "ID": 943, + "SourceStructureID": 483, + "TargetStructureID": 103376, + "Label": "483-103376 via Unknown from 134036 -> 134035", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134036, + "TargetID": 134035, + "Directional": false + } + ] + }, + { + "ID": 944, + "SourceStructureID": 483, + "TargetStructureID": 103402, + "Label": "483-103402 via Adherens from 134086 -> 134087", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134086, + "TargetID": 134087, + "Directional": false + } + ] + }, + { + "ID": 945, + "SourceStructureID": 483, + "TargetStructureID": 103452, + "Label": "483-103452 via Unknown from 134066 -> 134067", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134066, + "TargetID": 134067, + "Directional": false + } + ] + }, + { + "ID": 946, + "SourceStructureID": 103498, + "TargetStructureID": 483, + "Label": "103498-483 via Unknown from 103499 -> 97454", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103499, + "TargetID": 97454, + "Directional": false + } + ] + }, + { + "ID": 947, + "SourceStructureID": 103534, + "TargetStructureID": 483, + "Label": "103534-483 via Unknown from 103535 -> 97434", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103535, + "TargetID": 97434, + "Directional": false + } + ] + }, + { + "ID": 948, + "SourceStructureID": 483, + "TargetStructureID": 103720, + "Label": "483-103720 via Unknown from 134047 -> 134046", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134047, + "TargetID": 134046, + "Directional": false + } + ] + }, + { + "ID": 949, + "SourceStructureID": 483, + "TargetStructureID": 103732, + "Label": "483-103732 via Unknown from 134051 -> 134050", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134051, + "TargetID": 134050, + "Directional": false + } + ] + }, + { + "ID": 950, + "SourceStructureID": 483, + "TargetStructureID": 103745, + "Label": "483-103745 via Adherens from 134048 -> 134049", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134048, + "TargetID": 134049, + "Directional": false + } + ] + }, + { + "ID": 951, + "SourceStructureID": 136790, + "TargetStructureID": 483, + "Label": "136790-483 via Gap Junction from 136791 -> 94567", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136791, + "TargetID": 94567, + "Directional": false + } + ] + }, + { + "ID": 952, + "SourceStructureID": 485, + "TargetStructureID": 485, + "Label": "485-485 via Gap Junction from 51073 -> 51076, 94094 -> 94093, 99953 -> 46848, 100612 -> 100613, 148414 -> 148413, 148417 -> 148416, 159490 -> 159488", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51073, + "TargetID": 51076, + "Directional": false + }, + { + "SourceID": 94094, + "TargetID": 94093, + "Directional": false + }, + { + "SourceID": 99953, + "TargetID": 46848, + "Directional": false + }, + { + "SourceID": 100612, + "TargetID": 100613, + "Directional": false + }, + { + "SourceID": 148414, + "TargetID": 148413, + "Directional": false + }, + { + "SourceID": 148417, + "TargetID": 148416, + "Directional": false + }, + { + "SourceID": 159490, + "TargetID": 159488, + "Directional": false + } + ] + }, + { + "ID": 953, + "SourceStructureID": 485, + "TargetStructureID": 514, + "Label": "485-514 via Gap Junction from 49905 -> 49906, 148412 -> 148411", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49905, + "TargetID": 49906, + "Directional": false + }, + { + "SourceID": 148412, + "TargetID": 148411, + "Directional": false + } + ] + }, + { + "ID": 954, + "SourceStructureID": 2610, + "TargetStructureID": 485, + "Label": "2610-485 via Gap Junction from 94242 -> 94241, 94264 -> 94263, 148061 -> 148060", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94242, + "TargetID": 94241, + "Directional": false + }, + { + "SourceID": 94264, + "TargetID": 94263, + "Directional": false + }, + { + "SourceID": 148061, + "TargetID": 148060, + "Directional": false + } + ] + }, + { + "ID": 955, + "SourceStructureID": 485, + "TargetStructureID": 4890, + "Label": "485-4890 via Adherens from 148247 -> 148246, 148249 -> 148248", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148247, + "TargetID": 148246, + "Directional": false + }, + { + "SourceID": 148249, + "TargetID": 148248, + "Directional": false + } + ] + }, + { + "ID": 956, + "SourceStructureID": 485, + "TargetStructureID": 4890, + "Label": "485-4890 via Unknown from 134171 -> 134172", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134171, + "TargetID": 134172, + "Directional": false + } + ] + }, + { + "ID": 957, + "SourceStructureID": 485, + "TargetStructureID": 5117, + "Label": "485-5117 via Adherens from 99894 -> 99895", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99894, + "TargetID": 99895, + "Directional": false + } + ] + }, + { + "ID": 958, + "SourceStructureID": 5575, + "TargetStructureID": 485, + "Label": "5575-485 via Unknown from 134117 -> 134118", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134117, + "TargetID": 134118, + "Directional": false + } + ] + }, + { + "ID": 959, + "SourceStructureID": 485, + "TargetStructureID": 6153, + "Label": "485-6153 via Adherens from 148010 -> 148009", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148010, + "TargetID": 148009, + "Directional": false + } + ] + }, + { + "ID": 960, + "SourceStructureID": 6153, + "TargetStructureID": 485, + "Label": "6153-485 via Gap Junction from 94203 -> 94202, 94205 -> 94204", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94203, + "TargetID": 94202, + "Directional": false + }, + { + "SourceID": 94205, + "TargetID": 94204, + "Directional": false + } + ] + }, + { + "ID": 961, + "SourceStructureID": 485, + "TargetStructureID": 6155, + "Label": "485-6155 via Touch from 121216 -> 121217", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 121216, + "TargetID": 121217, + "Directional": false + } + ] + }, + { + "ID": 962, + "SourceStructureID": 485, + "TargetStructureID": 6997, + "Label": "485-6997 via Adherens from 136830 -> 136831", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136830, + "TargetID": 136831, + "Directional": false + } + ] + }, + { + "ID": 963, + "SourceStructureID": 6997, + "TargetStructureID": 485, + "Label": "6997-485 via Gap Junction from 94253 -> 94267, 148054 -> 148053", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94253, + "TargetID": 94267, + "Directional": false + }, + { + "SourceID": 148054, + "TargetID": 148053, + "Directional": false + } + ] + }, + { + "ID": 964, + "SourceStructureID": 485, + "TargetStructureID": 18282, + "Label": "485-18282 via Adherens from 120436 -> 120435, 134213 -> 134214", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 120436, + "TargetID": 120435, + "Directional": false + }, + { + "SourceID": 134213, + "TargetID": 134214, + "Directional": false + } + ] + }, + { + "ID": 965, + "SourceStructureID": 18282, + "TargetStructureID": 485, + "Label": "18282-485 via Unknown from 134194 -> 134195", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134194, + "TargetID": 134195, + "Directional": false + } + ] + }, + { + "ID": 966, + "SourceStructureID": 22554, + "TargetStructureID": 485, + "Label": "22554-485 via Adherens from 99751 -> 99750", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99751, + "TargetID": 99750, + "Directional": false + } + ] + }, + { + "ID": 967, + "SourceStructureID": 22554, + "TargetStructureID": 485, + "Label": "22554-485 via Unknown from 94209 -> 94208", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94209, + "TargetID": 94208, + "Directional": false + } + ] + }, + { + "ID": 968, + "SourceStructureID": 32654, + "TargetStructureID": 485, + "Label": "32654-485 via Gap Junction from 100603 -> 100602", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 100603, + "TargetID": 100602, + "Directional": false + } + ] + }, + { + "ID": 969, + "SourceStructureID": 485, + "TargetStructureID": 85748, + "Label": "485-85748 via Unknown from 134197 -> 134198", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134197, + "TargetID": 134198, + "Directional": false + } + ] + }, + { + "ID": 970, + "SourceStructureID": 95482, + "TargetStructureID": 485, + "Label": "95482-485 via Adherens from 101435 -> 101436", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 101435, + "TargetID": 101436, + "Directional": false + } + ] + }, + { + "ID": 971, + "SourceStructureID": 99401, + "TargetStructureID": 485, + "Label": "99401-485 via Adherens from 148017 -> 148016", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148017, + "TargetID": 148016, + "Directional": false + } + ] + }, + { + "ID": 972, + "SourceStructureID": 99401, + "TargetStructureID": 485, + "Label": "99401-485 via Gap Junction from 99402 -> 99400", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 99402, + "TargetID": 99400, + "Directional": false + } + ] + }, + { + "ID": 973, + "SourceStructureID": 99438, + "TargetStructureID": 485, + "Label": "99438-485 via Adherens from 99439 -> 99437", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99439, + "TargetID": 99437, + "Directional": false + } + ] + }, + { + "ID": 974, + "SourceStructureID": 99489, + "TargetStructureID": 485, + "Label": "99489-485 via Unknown from 99497 -> 50883", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99497, + "TargetID": 50883, + "Directional": false + } + ] + }, + { + "ID": 975, + "SourceStructureID": 99763, + "TargetStructureID": 485, + "Label": "99763-485 via Unknown from 134200 -> 134199", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134200, + "TargetID": 134199, + "Directional": false + } + ] + }, + { + "ID": 976, + "SourceStructureID": 99783, + "TargetStructureID": 485, + "Label": "99783-485 via Adherens from 134201 -> 134202", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134201, + "TargetID": 134202, + "Directional": false + } + ] + }, + { + "ID": 977, + "SourceStructureID": 99850, + "TargetStructureID": 485, + "Label": "99850-485 via Adherens from 99855 -> 99856", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99855, + "TargetID": 99856, + "Directional": false + } + ] + }, + { + "ID": 978, + "SourceStructureID": 99882, + "TargetStructureID": 485, + "Label": "99882-485 via Adherens from 99883 -> 99881", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99883, + "TargetID": 99881, + "Directional": false + } + ] + }, + { + "ID": 979, + "SourceStructureID": 485, + "TargetStructureID": 99884, + "Label": "485-99884 via Unknown from 99887 -> 99886", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99887, + "TargetID": 99886, + "Directional": false + } + ] + }, + { + "ID": 980, + "SourceStructureID": 485, + "TargetStructureID": 99901, + "Label": "485-99901 via Unknown from 99903 -> 99902", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99903, + "TargetID": 99902, + "Directional": false + } + ] + }, + { + "ID": 981, + "SourceStructureID": 485, + "TargetStructureID": 99909, + "Label": "485-99909 via Adherens from 134219 -> 134220", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134219, + "TargetID": 134220, + "Directional": false + } + ] + }, + { + "ID": 982, + "SourceStructureID": 485, + "TargetStructureID": 99916, + "Label": "485-99916 via Unknown from 134210 -> 134209", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134210, + "TargetID": 134209, + "Directional": false + } + ] + }, + { + "ID": 983, + "SourceStructureID": 99967, + "TargetStructureID": 485, + "Label": "99967-485 via Unknown from 99968 -> 99966", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99968, + "TargetID": 99966, + "Directional": false + } + ] + }, + { + "ID": 984, + "SourceStructureID": 99984, + "TargetStructureID": 485, + "Label": "99984-485 via Gap Junction from 136792 -> 99986", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136792, + "TargetID": 99986, + "Directional": false + } + ] + }, + { + "ID": 985, + "SourceStructureID": 485, + "TargetStructureID": 100059, + "Label": "485-100059 via Unknown from 100061 -> 100060", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100061, + "TargetID": 100060, + "Directional": false + } + ] + }, + { + "ID": 986, + "SourceStructureID": 485, + "TargetStructureID": 100198, + "Label": "485-100198 via Adherens from 147997 -> 147998", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147997, + "TargetID": 147998, + "Directional": false + } + ] + }, + { + "ID": 987, + "SourceStructureID": 100198, + "TargetStructureID": 485, + "Label": "100198-485 via Gap Junction from 100204 -> 100203", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 100204, + "TargetID": 100203, + "Directional": false + } + ] + }, + { + "ID": 988, + "SourceStructureID": 100205, + "TargetStructureID": 485, + "Label": "100205-485 via Unknown from 100206 -> 50687", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100206, + "TargetID": 50687, + "Directional": false + } + ] + }, + { + "ID": 989, + "SourceStructureID": 485, + "TargetStructureID": 100261, + "Label": "485-100261 via Adherens from 100263 -> 100262", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100263, + "TargetID": 100262, + "Directional": false + } + ] + }, + { + "ID": 990, + "SourceStructureID": 100345, + "TargetStructureID": 485, + "Label": "100345-485 via Adherens from 100347 -> 51160", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100347, + "TargetID": 51160, + "Directional": false + } + ] + }, + { + "ID": 991, + "SourceStructureID": 485, + "TargetStructureID": 100596, + "Label": "485-100596 via Unknown from 134103 -> 134104", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134103, + "TargetID": 134104, + "Directional": false + } + ] + }, + { + "ID": 992, + "SourceStructureID": 100733, + "TargetStructureID": 485, + "Label": "100733-485 via Gap Junction from 100734 -> 94002", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 100734, + "TargetID": 94002, + "Directional": false + } + ] + }, + { + "ID": 993, + "SourceStructureID": 485, + "TargetStructureID": 100895, + "Label": "485-100895 via Adherens from 134115 -> 134116", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134115, + "TargetID": 134116, + "Directional": false + } + ] + }, + { + "ID": 994, + "SourceStructureID": 100907, + "TargetStructureID": 485, + "Label": "100907-485 via Unknown from 100908 -> 100909", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100908, + "TargetID": 100909, + "Directional": false + } + ] + }, + { + "ID": 995, + "SourceStructureID": 485, + "TargetStructureID": 100942, + "Label": "485-100942 via Unknown from 100944 -> 100943", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100944, + "TargetID": 100943, + "Directional": false + } + ] + }, + { + "ID": 996, + "SourceStructureID": 100946, + "TargetStructureID": 485, + "Label": "100946-485 via Unknown from 134106 -> 134105", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134106, + "TargetID": 134105, + "Directional": false + } + ] + }, + { + "ID": 997, + "SourceStructureID": 485, + "TargetStructureID": 100960, + "Label": "485-100960 via Adherens from 134108 -> 134107", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134108, + "TargetID": 134107, + "Directional": false + } + ] + }, + { + "ID": 998, + "SourceStructureID": 485, + "TargetStructureID": 100987, + "Label": "485-100987 via Unknown from 100989 -> 100988", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100989, + "TargetID": 100988, + "Directional": false + } + ] + }, + { + "ID": 999, + "SourceStructureID": 485, + "TargetStructureID": 100990, + "Label": "485-100990 via Unknown from 134109 -> 134110", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134109, + "TargetID": 134110, + "Directional": false + } + ] + }, + { + "ID": 1000, + "SourceStructureID": 485, + "TargetStructureID": 101007, + "Label": "485-101007 via Unknown from 134112 -> 134111", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134112, + "TargetID": 134111, + "Directional": false + } + ] + }, + { + "ID": 1001, + "SourceStructureID": 101102, + "TargetStructureID": 485, + "Label": "101102-485 via Unknown from 101104 -> 101106", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101104, + "TargetID": 101106, + "Directional": false + } + ] + }, + { + "ID": 1002, + "SourceStructureID": 485, + "TargetStructureID": 101145, + "Label": "485-101145 via Adherens from 148000 -> 147999", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148000, + "TargetID": 147999, + "Directional": false + } + ] + }, + { + "ID": 1003, + "SourceStructureID": 485, + "TargetStructureID": 101220, + "Label": "485-101220 via Gap Junction from 101224 -> 101223", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 101224, + "TargetID": 101223, + "Directional": false + } + ] + }, + { + "ID": 1004, + "SourceStructureID": 485, + "TargetStructureID": 101220, + "Label": "485-101220 via Unknown from 101226 -> 101225", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101226, + "TargetID": 101225, + "Directional": false + } + ] + }, + { + "ID": 1005, + "SourceStructureID": 101238, + "TargetStructureID": 485, + "Label": "101238-485 via Unknown from 101245 -> 101246", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101245, + "TargetID": 101246, + "Directional": false + } + ] + }, + { + "ID": 1006, + "SourceStructureID": 485, + "TargetStructureID": 101253, + "Label": "485-101253 via Unknown from 101255 -> 101254", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101255, + "TargetID": 101254, + "Directional": false + } + ] + }, + { + "ID": 1007, + "SourceStructureID": 101314, + "TargetStructureID": 485, + "Label": "101314-485 via Adherens from 148059 -> 148058", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148059, + "TargetID": 148058, + "Directional": false + } + ] + }, + { + "ID": 1008, + "SourceStructureID": 101423, + "TargetStructureID": 485, + "Label": "101423-485 via Unknown from 101425 -> 101424", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101425, + "TargetID": 101424, + "Directional": false + } + ] + }, + { + "ID": 1009, + "SourceStructureID": 485, + "TargetStructureID": 101486, + "Label": "485-101486 via Adherens from 134174 -> 134175", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134174, + "TargetID": 134175, + "Directional": false + } + ] + }, + { + "ID": 1010, + "SourceStructureID": 101498, + "TargetStructureID": 485, + "Label": "101498-485 via Unknown from 134176 -> 134177", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134176, + "TargetID": 134177, + "Directional": false + } + ] + }, + { + "ID": 1011, + "SourceStructureID": 485, + "TargetStructureID": 101728, + "Label": "485-101728 via Gap Junction from 94361 -> 101729", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94361, + "TargetID": 101729, + "Directional": false + } + ] + }, + { + "ID": 1012, + "SourceStructureID": 485, + "TargetStructureID": 101728, + "Label": "485-101728 via Unknown from 134178 -> 134179, 134181 -> 134180", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134178, + "TargetID": 134179, + "Directional": false + }, + { + "SourceID": 134181, + "TargetID": 134180, + "Directional": false + } + ] + }, + { + "ID": 1013, + "SourceStructureID": 485, + "TargetStructureID": 101751, + "Label": "485-101751 via Unknown from 101763 -> 101762, 134182 -> 134183", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101763, + "TargetID": 101762, + "Directional": false + }, + { + "SourceID": 134182, + "TargetID": 134183, + "Directional": false + } + ] + }, + { + "ID": 1014, + "SourceStructureID": 485, + "TargetStructureID": 101798, + "Label": "485-101798 via Unknown from 134184 -> 134185", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134184, + "TargetID": 134185, + "Directional": false + } + ] + }, + { + "ID": 1015, + "SourceStructureID": 101801, + "TargetStructureID": 485, + "Label": "101801-485 via Unknown from 134187 -> 134186", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134187, + "TargetID": 134186, + "Directional": false + } + ] + }, + { + "ID": 1016, + "SourceStructureID": 101845, + "TargetStructureID": 485, + "Label": "101845-485 via Adherens from 101846 -> 101844", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 101846, + "TargetID": 101844, + "Directional": false + } + ] + }, + { + "ID": 1017, + "SourceStructureID": 101868, + "TargetStructureID": 485, + "Label": "101868-485 via Unknown from 101869 -> 49917", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101869, + "TargetID": 49917, + "Directional": false + } + ] + }, + { + "ID": 1018, + "SourceStructureID": 485, + "TargetStructureID": 101881, + "Label": "485-101881 via Unknown from 101883 -> 101884", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101883, + "TargetID": 101884, + "Directional": false + } + ] + }, + { + "ID": 1019, + "SourceStructureID": 101886, + "TargetStructureID": 485, + "Label": "101886-485 via Unknown from 134190 -> 134191", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134190, + "TargetID": 134191, + "Directional": false + } + ] + }, + { + "ID": 1020, + "SourceStructureID": 485, + "TargetStructureID": 101906, + "Label": "485-101906 via Unknown from 101909 -> 101908", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101909, + "TargetID": 101908, + "Directional": false + } + ] + }, + { + "ID": 1021, + "SourceStructureID": 485, + "TargetStructureID": 101920, + "Label": "485-101920 via Unknown from 134193 -> 134192", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134193, + "TargetID": 134192, + "Directional": false + } + ] + }, + { + "ID": 1022, + "SourceStructureID": 488, + "TargetStructureID": 488, + "Label": "488-488 via Adherens from 87799 -> 87798", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87799, + "TargetID": 87798, + "Directional": false + } + ] + }, + { + "ID": 1023, + "SourceStructureID": 488, + "TargetStructureID": 4850, + "Label": "488-4850 via Unknown from 97816 -> 97817", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97816, + "TargetID": 97817, + "Directional": false + } + ] + }, + { + "ID": 1024, + "SourceStructureID": 6153, + "TargetStructureID": 488, + "Label": "6153-488 via Adherens from 87791 -> 87790", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87791, + "TargetID": 87790, + "Directional": false + } + ] + }, + { + "ID": 1025, + "SourceStructureID": 514, + "TargetStructureID": 593, + "Label": "514-593 via Gap Junction from 2559 -> 52461, 15894 -> 3077, 115747 -> 115746", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 2559, + "TargetID": 52461, + "Directional": false + }, + { + "SourceID": 15894, + "TargetID": 3077, + "Directional": false + }, + { + "SourceID": 115747, + "TargetID": 115746, + "Directional": false + } + ] + }, + { + "ID": 1026, + "SourceStructureID": 514, + "TargetStructureID": 1724, + "Label": "514-1724 via Gap Junction from 1004 -> 43309, 1806 -> 1803, 4016 -> 4018, 4034 -> 4035, 4122 -> 1009, 20014 -> 3972, 22606 -> 3242, 47345 -> 1447, 47377 -> 1442, 47401 -> 3072, 48675 -> 48674, 100237 -> 100238", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 1004, + "TargetID": 43309, + "Directional": false + }, + { + "SourceID": 1806, + "TargetID": 1803, + "Directional": false + }, + { + "SourceID": 4016, + "TargetID": 4018, + "Directional": false + }, + { + "SourceID": 4034, + "TargetID": 4035, + "Directional": false + }, + { + "SourceID": 4122, + "TargetID": 1009, + "Directional": false + }, + { + "SourceID": 20014, + "TargetID": 3972, + "Directional": false + }, + { + "SourceID": 22606, + "TargetID": 3242, + "Directional": false + }, + { + "SourceID": 47345, + "TargetID": 1447, + "Directional": false + }, + { + "SourceID": 47377, + "TargetID": 1442, + "Directional": false + }, + { + "SourceID": 47401, + "TargetID": 3072, + "Directional": false + }, + { + "SourceID": 48675, + "TargetID": 48674, + "Directional": false + }, + { + "SourceID": 100237, + "TargetID": 100238, + "Directional": false + } + ] + }, + { + "ID": 1027, + "SourceStructureID": 514, + "TargetStructureID": 2610, + "Label": "514-2610 via Gap Junction from 1452 -> 13805, 2511 -> 135028, 15093 -> 2793, 16540 -> 16539, 17039 -> 13793, 17051 -> 17050, 17101 -> 17072, 17102 -> 17085, 17170 -> 17169, 17223 -> 17222, 17939 -> 2885, 17976 -> 17975, 18000 -> 18001, 19055 -> 19056, 29762 -> 29761, 134993 -> 134992", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 1452, + "TargetID": 13805, + "Directional": false + }, + { + "SourceID": 2511, + "TargetID": 135028, + "Directional": false + }, + { + "SourceID": 15093, + "TargetID": 2793, + "Directional": false + }, + { + "SourceID": 16540, + "TargetID": 16539, + "Directional": false + }, + { + "SourceID": 17039, + "TargetID": 13793, + "Directional": false + }, + { + "SourceID": 17051, + "TargetID": 17050, + "Directional": false + }, + { + "SourceID": 17101, + "TargetID": 17072, + "Directional": false + }, + { + "SourceID": 17102, + "TargetID": 17085, + "Directional": false + }, + { + "SourceID": 17170, + "TargetID": 17169, + "Directional": false + }, + { + "SourceID": 17223, + "TargetID": 17222, + "Directional": false + }, + { + "SourceID": 17939, + "TargetID": 2885, + "Directional": false + }, + { + "SourceID": 17976, + "TargetID": 17975, + "Directional": false + }, + { + "SourceID": 18000, + "TargetID": 18001, + "Directional": false + }, + { + "SourceID": 19055, + "TargetID": 19056, + "Directional": false + }, + { + "SourceID": 29762, + "TargetID": 29761, + "Directional": false + }, + { + "SourceID": 134993, + "TargetID": 134992, + "Directional": false + } + ] + }, + { + "ID": 1028, + "SourceStructureID": 3257, + "TargetStructureID": 514, + "Label": "3257-514 via Gap Junction from 10860 -> 10850, 16199 -> 10844", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10860, + "TargetID": 10850, + "Directional": false + }, + { + "SourceID": 16199, + "TargetID": 10844, + "Directional": false + } + ] + }, + { + "ID": 1029, + "SourceStructureID": 3679, + "TargetStructureID": 514, + "Label": "3679-514 via Adherens from 16344 -> 16343, 159515 -> 159514", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 16344, + "TargetID": 16343, + "Directional": false + }, + { + "SourceID": 159515, + "TargetID": 159514, + "Directional": false + } + ] + }, + { + "ID": 1030, + "SourceStructureID": 3679, + "TargetStructureID": 514, + "Label": "3679-514 via Gap Junction from 5050 -> 3253, 8005 -> 3094, 10926 -> 3802, 10941 -> 5225, 11595 -> 4704, 11596 -> 4705, 13832 -> 13831, 16436 -> 16435, 16439 -> 5013, 18425 -> 10920", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 5050, + "TargetID": 3253, + "Directional": false + }, + { + "SourceID": 8005, + "TargetID": 3094, + "Directional": false + }, + { + "SourceID": 10926, + "TargetID": 3802, + "Directional": false + }, + { + "SourceID": 10941, + "TargetID": 5225, + "Directional": false + }, + { + "SourceID": 11595, + "TargetID": 4704, + "Directional": false + }, + { + "SourceID": 11596, + "TargetID": 4705, + "Directional": false + }, + { + "SourceID": 13832, + "TargetID": 13831, + "Directional": false + }, + { + "SourceID": 16436, + "TargetID": 16435, + "Directional": false + }, + { + "SourceID": 16439, + "TargetID": 5013, + "Directional": false + }, + { + "SourceID": 18425, + "TargetID": 10920, + "Directional": false + } + ] + }, + { + "ID": 1031, + "SourceStructureID": 4835, + "TargetStructureID": 514, + "Label": "4835-514 via Gap Junction from 36741 -> 14961", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 36741, + "TargetID": 14961, + "Directional": false + } + ] + }, + { + "ID": 1032, + "SourceStructureID": 5017, + "TargetStructureID": 514, + "Label": "5017-514 via Adherens from 61240 -> 61239, 158799 -> 158790", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 61240, + "TargetID": 61239, + "Directional": false + }, + { + "SourceID": 158799, + "TargetID": 158790, + "Directional": false + } + ] + }, + { + "ID": 1033, + "SourceStructureID": 514, + "TargetStructureID": 5150, + "Label": "514-5150 via Adherens from 15406 -> 15405", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 15406, + "TargetID": 15405, + "Directional": false + } + ] + }, + { + "ID": 1034, + "SourceStructureID": 514, + "TargetStructureID": 5279, + "Label": "514-5279 via Adherens from 147957 -> 147958", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147957, + "TargetID": 147958, + "Directional": false + } + ] + }, + { + "ID": 1035, + "SourceStructureID": 5279, + "TargetStructureID": 514, + "Label": "5279-514 via Gap Junction from 6171 -> 1008, 92617 -> 3075", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 6171, + "TargetID": 1008, + "Directional": false + }, + { + "SourceID": 92617, + "TargetID": 3075, + "Directional": false + } + ] + }, + { + "ID": 1036, + "SourceStructureID": 514, + "TargetStructureID": 5279, + "Label": "514-5279 via Touch from 33857 -> 33856", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 33857, + "TargetID": 33856, + "Directional": false + } + ] + }, + { + "ID": 1037, + "SourceStructureID": 5283, + "TargetStructureID": 514, + "Label": "5283-514 via Gap Junction from 132182 -> 132184", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132182, + "TargetID": 132184, + "Directional": false + } + ] + }, + { + "ID": 1038, + "SourceStructureID": 5303, + "TargetStructureID": 514, + "Label": "5303-514 via Adherens from 35630 -> 35631", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 35630, + "TargetID": 35631, + "Directional": false + } + ] + }, + { + "ID": 1039, + "SourceStructureID": 5345, + "TargetStructureID": 514, + "Label": "5345-514 via Gap Junction from 8057 -> 2599", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 8057, + "TargetID": 2599, + "Directional": false + } + ] + }, + { + "ID": 1040, + "SourceStructureID": 514, + "TargetStructureID": 5517, + "Label": "514-5517 via Gap Junction from 1014 -> 49362, 24400 -> 24399, 96078 -> 96077", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 1014, + "TargetID": 49362, + "Directional": false + }, + { + "SourceID": 24400, + "TargetID": 24399, + "Directional": false + }, + { + "SourceID": 96078, + "TargetID": 96077, + "Directional": false + } + ] + }, + { + "ID": 1041, + "SourceStructureID": 5609, + "TargetStructureID": 514, + "Label": "5609-514 via Adherens from 115745 -> 115744", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115745, + "TargetID": 115744, + "Directional": false + } + ] + }, + { + "ID": 1042, + "SourceStructureID": 514, + "TargetStructureID": 6117, + "Label": "514-6117 via Gap Junction from 83251 -> 49180", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 83251, + "TargetID": 49180, + "Directional": false + } + ] + }, + { + "ID": 1043, + "SourceStructureID": 514, + "TargetStructureID": 6156, + "Label": "514-6156 via Adherens from 133282 -> 133283, 133332 -> 133331, 133457 -> 133458, 133486 -> 133487", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133282, + "TargetID": 133283, + "Directional": false + }, + { + "SourceID": 133332, + "TargetID": 133331, + "Directional": false + }, + { + "SourceID": 133457, + "TargetID": 133458, + "Directional": false + }, + { + "SourceID": 133486, + "TargetID": 133487, + "Directional": false + } + ] + }, + { + "ID": 1044, + "SourceStructureID": 6156, + "TargetStructureID": 514, + "Label": "6156-514 via Gap Junction from 16403 -> 15305, 22575 -> 8874, 22598 -> 2561, 23157 -> 23156, 23159 -> 2541, 23172 -> 23171, 23249 -> 23248, 23266 -> 23267, 117530 -> 117531, 117563 -> 117564, 117610 -> 117611, 133163 -> 117347, 133243 -> 133244, 133346 -> 133345, 133382 -> 133383", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16403, + "TargetID": 15305, + "Directional": false + }, + { + "SourceID": 22575, + "TargetID": 8874, + "Directional": false + }, + { + "SourceID": 22598, + "TargetID": 2561, + "Directional": false + }, + { + "SourceID": 23157, + "TargetID": 23156, + "Directional": false + }, + { + "SourceID": 23159, + "TargetID": 2541, + "Directional": false + }, + { + "SourceID": 23172, + "TargetID": 23171, + "Directional": false + }, + { + "SourceID": 23249, + "TargetID": 23248, + "Directional": false + }, + { + "SourceID": 23266, + "TargetID": 23267, + "Directional": false + }, + { + "SourceID": 117530, + "TargetID": 117531, + "Directional": false + }, + { + "SourceID": 117563, + "TargetID": 117564, + "Directional": false + }, + { + "SourceID": 117610, + "TargetID": 117611, + "Directional": false + }, + { + "SourceID": 133163, + "TargetID": 117347, + "Directional": false + }, + { + "SourceID": 133243, + "TargetID": 133244, + "Directional": false + }, + { + "SourceID": 133346, + "TargetID": 133345, + "Directional": false + }, + { + "SourceID": 133382, + "TargetID": 133383, + "Directional": false + } + ] + }, + { + "ID": 1045, + "SourceStructureID": 6169, + "TargetStructureID": 514, + "Label": "6169-514 via Gap Junction from 9456 -> 1002, 10838 -> 1583, 11625 -> 1117, 16331 -> 549, 18161 -> 3090, 31071 -> 31069", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 9456, + "TargetID": 1002, + "Directional": false + }, + { + "SourceID": 10838, + "TargetID": 1583, + "Directional": false + }, + { + "SourceID": 11625, + "TargetID": 1117, + "Directional": false + }, + { + "SourceID": 16331, + "TargetID": 549, + "Directional": false + }, + { + "SourceID": 18161, + "TargetID": 3090, + "Directional": false + }, + { + "SourceID": 31071, + "TargetID": 31069, + "Directional": false + } + ] + }, + { + "ID": 1046, + "SourceStructureID": 514, + "TargetStructureID": 6997, + "Label": "514-6997 via Gap Junction from 133247 -> 133250, 135076 -> 135077", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 133247, + "TargetID": 133250, + "Directional": false + }, + { + "SourceID": 135076, + "TargetID": 135077, + "Directional": false + } + ] + }, + { + "ID": 1047, + "SourceStructureID": 514, + "TargetStructureID": 7054, + "Label": "514-7054 via Adherens from 159577 -> 159575", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159577, + "TargetID": 159575, + "Directional": false + } + ] + }, + { + "ID": 1048, + "SourceStructureID": 8037, + "TargetStructureID": 514, + "Label": "8037-514 via Gap Junction from 10871 -> 2529, 29757 -> 29756", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10871, + "TargetID": 2529, + "Directional": false + }, + { + "SourceID": 29757, + "TargetID": 29756, + "Directional": false + } + ] + }, + { + "ID": 1049, + "SourceStructureID": 8749, + "TargetStructureID": 514, + "Label": "8749-514 via Adherens from 43457 -> 43456", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 43457, + "TargetID": 43456, + "Directional": false + } + ] + }, + { + "ID": 1050, + "SourceStructureID": 8990, + "TargetStructureID": 514, + "Label": "8990-514 via Adherens from 32011 -> 32010", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 32011, + "TargetID": 32010, + "Directional": false + } + ] + }, + { + "ID": 1051, + "SourceStructureID": 9023, + "TargetStructureID": 514, + "Label": "9023-514 via Adherens from 36675 -> 36674", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 36675, + "TargetID": 36674, + "Directional": false + } + ] + }, + { + "ID": 1052, + "SourceStructureID": 514, + "TargetStructureID": 9226, + "Label": "514-9226 via Adherens from 9661 -> 9662", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 9661, + "TargetID": 9662, + "Directional": false + } + ] + }, + { + "ID": 1053, + "SourceStructureID": 514, + "TargetStructureID": 9693, + "Label": "514-9693 via Gap Junction from 134722 -> 119837, 134994 -> 134995", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 134722, + "TargetID": 119837, + "Directional": false + }, + { + "SourceID": 134994, + "TargetID": 134995, + "Directional": false + } + ] + }, + { + "ID": 1054, + "SourceStructureID": 514, + "TargetStructureID": 25392, + "Label": "514-25392 via Adherens from 25398 -> 25397", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 25398, + "TargetID": 25397, + "Directional": false + } + ] + }, + { + "ID": 1055, + "SourceStructureID": 514, + "TargetStructureID": 25410, + "Label": "514-25410 via Adherens from 159788 -> 159789", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159788, + "TargetID": 159789, + "Directional": false + } + ] + }, + { + "ID": 1056, + "SourceStructureID": 514, + "TargetStructureID": 25529, + "Label": "514-25529 via Adherens from 25537 -> 25536", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 25537, + "TargetID": 25536, + "Directional": false + } + ] + }, + { + "ID": 1057, + "SourceStructureID": 32371, + "TargetStructureID": 514, + "Label": "32371-514 via Adherens from 32376 -> 1585", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 32376, + "TargetID": 1585, + "Directional": false + } + ] + }, + { + "ID": 1058, + "SourceStructureID": 514, + "TargetStructureID": 32719, + "Label": "514-32719 via Adherens from 32723 -> 32722", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 32723, + "TargetID": 32722, + "Directional": false + } + ] + }, + { + "ID": 1059, + "SourceStructureID": 514, + "TargetStructureID": 40863, + "Label": "514-40863 via Gap Junction from 40873 -> 40872", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 40873, + "TargetID": 40872, + "Directional": false + } + ] + }, + { + "ID": 1060, + "SourceStructureID": 514, + "TargetStructureID": 40988, + "Label": "514-40988 via Adherens from 91261 -> 91262", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91261, + "TargetID": 91262, + "Directional": false + } + ] + }, + { + "ID": 1061, + "SourceStructureID": 514, + "TargetStructureID": 61231, + "Label": "514-61231 via Adherens from 61239 -> 61238", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 61239, + "TargetID": 61238, + "Directional": false + } + ] + }, + { + "ID": 1062, + "SourceStructureID": 68031, + "TargetStructureID": 514, + "Label": "68031-514 via Adherens from 135100 -> 135099", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135100, + "TargetID": 135099, + "Directional": false + } + ] + }, + { + "ID": 1063, + "SourceStructureID": 514, + "TargetStructureID": 77019, + "Label": "514-77019 via Adherens from 77022 -> 77021", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77022, + "TargetID": 77021, + "Directional": false + } + ] + }, + { + "ID": 1064, + "SourceStructureID": 514, + "TargetStructureID": 123146, + "Label": "514-123146 via Adherens from 123149 -> 123148", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123149, + "TargetID": 123148, + "Directional": false + } + ] + }, + { + "ID": 1065, + "SourceStructureID": 5303, + "TargetStructureID": 517, + "Label": "5303-517 via Adherens from 60499 -> 60498", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60499, + "TargetID": 60498, + "Directional": false + } + ] + }, + { + "ID": 1066, + "SourceStructureID": 25440, + "TargetStructureID": 517, + "Label": "25440-517 via Touch from 25455 -> 25457", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 25455, + "TargetID": 25457, + "Directional": false + } + ] + }, + { + "ID": 1067, + "SourceStructureID": 40951, + "TargetStructureID": 517, + "Label": "40951-517 via Adherens from 60533 -> 60532", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60533, + "TargetID": 60532, + "Directional": false + } + ] + }, + { + "ID": 1068, + "SourceStructureID": 518, + "TargetStructureID": 13855, + "Label": "518-13855 via Touch from 36323 -> 36322", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 36323, + "TargetID": 36322, + "Directional": false + } + ] + }, + { + "ID": 1069, + "SourceStructureID": 518, + "TargetStructureID": 36650, + "Label": "518-36650 via Adherens from 64555 -> 64556", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64555, + "TargetID": 64556, + "Directional": false + } + ] + }, + { + "ID": 1070, + "SourceStructureID": 9260, + "TargetStructureID": 519, + "Label": "9260-519 via Adherens from 159755 -> 159754, 159774 -> 159775", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159755, + "TargetID": 159754, + "Directional": false + }, + { + "SourceID": 159774, + "TargetID": 159775, + "Directional": false + } + ] + }, + { + "ID": 1071, + "SourceStructureID": 25342, + "TargetStructureID": 519, + "Label": "25342-519 via Adherens from 159766 -> 16530", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159766, + "TargetID": 16530, + "Directional": false + } + ] + }, + { + "ID": 1072, + "SourceStructureID": 25359, + "TargetStructureID": 519, + "Label": "25359-519 via Adherens from 64489 -> 64490", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64489, + "TargetID": 64490, + "Directional": false + } + ] + }, + { + "ID": 1073, + "SourceStructureID": 25865, + "TargetStructureID": 519, + "Label": "25865-519 via Adherens from 64510 -> 64509", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64510, + "TargetID": 64509, + "Directional": false + } + ] + }, + { + "ID": 1074, + "SourceStructureID": 525, + "TargetStructureID": 6589, + "Label": "525-6589 via Unknown from 132624 -> 132623, 132705 -> 132706", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132624, + "TargetID": 132623, + "Directional": false + }, + { + "SourceID": 132705, + "TargetID": 132706, + "Directional": false + } + ] + }, + { + "ID": 1075, + "SourceStructureID": 2610, + "TargetStructureID": 573, + "Label": "2610-573 via Gap Junction from 2995 -> 19095, 17920 -> 17919, 17933 -> 17932, 17936 -> 17935", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 2995, + "TargetID": 19095, + "Directional": false + }, + { + "SourceID": 17920, + "TargetID": 17919, + "Directional": false + }, + { + "SourceID": 17933, + "TargetID": 17932, + "Directional": false + }, + { + "SourceID": 17936, + "TargetID": 17935, + "Directional": false + } + ] + }, + { + "ID": 1076, + "SourceStructureID": 573, + "TargetStructureID": 5345, + "Label": "573-5345 via Gap Junction from 8476 -> 8475, 11431 -> 11432", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 8476, + "TargetID": 8475, + "Directional": false + }, + { + "SourceID": 11431, + "TargetID": 11432, + "Directional": false + } + ] + }, + { + "ID": 1077, + "SourceStructureID": 573, + "TargetStructureID": 5515, + "Label": "573-5515 via Gap Junction from 60113 -> 60112", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60113, + "TargetID": 60112, + "Directional": false + } + ] + }, + { + "ID": 1078, + "SourceStructureID": 573, + "TargetStructureID": 6589, + "Label": "573-6589 via Gap Junction from 132822 -> 132821", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132822, + "TargetID": 132821, + "Directional": false + } + ] + }, + { + "ID": 1079, + "SourceStructureID": 9693, + "TargetStructureID": 573, + "Label": "9693-573 via Gap Junction from 134765 -> 134766", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 134765, + "TargetID": 134766, + "Directional": false + } + ] + }, + { + "ID": 1080, + "SourceStructureID": 28886, + "TargetStructureID": 573, + "Label": "28886-573 via Gap Junction from 51450 -> 47761", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51450, + "TargetID": 47761, + "Directional": false + } + ] + }, + { + "ID": 1081, + "SourceStructureID": 96788, + "TargetStructureID": 573, + "Label": "96788-573 via Unknown from 96815 -> 96814", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96815, + "TargetID": 96814, + "Directional": false + } + ] + }, + { + "ID": 1082, + "SourceStructureID": 593, + "TargetStructureID": 593, + "Label": "593-593 via Adherens from 135108 -> 135109", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135108, + "TargetID": 135109, + "Directional": false + } + ] + }, + { + "ID": 1083, + "SourceStructureID": 593, + "TargetStructureID": 593, + "Label": "593-593 via Gap Junction from 63044 -> 63043", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63044, + "TargetID": 63043, + "Directional": false + } + ] + }, + { + "ID": 1084, + "SourceStructureID": 3679, + "TargetStructureID": 593, + "Label": "3679-593 via Adherens from 135103 -> 135104", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135103, + "TargetID": 135104, + "Directional": false + } + ] + }, + { + "ID": 1085, + "SourceStructureID": 593, + "TargetStructureID": 3679, + "Label": "593-3679 via Gap Junction from 7715 -> 6360, 7723 -> 5187, 52475 -> 52474, 52476 -> 52473, 59594 -> 59593, 61831 -> 61832, 67238 -> 3770, 83349 -> 83348", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 7715, + "TargetID": 6360, + "Directional": false + }, + { + "SourceID": 7723, + "TargetID": 5187, + "Directional": false + }, + { + "SourceID": 52475, + "TargetID": 52474, + "Directional": false + }, + { + "SourceID": 52476, + "TargetID": 52473, + "Directional": false + }, + { + "SourceID": 59594, + "TargetID": 59593, + "Directional": false + }, + { + "SourceID": 61831, + "TargetID": 61832, + "Directional": false + }, + { + "SourceID": 67238, + "TargetID": 3770, + "Directional": false + }, + { + "SourceID": 83349, + "TargetID": 83348, + "Directional": false + } + ] + }, + { + "ID": 1086, + "SourceStructureID": 593, + "TargetStructureID": 5279, + "Label": "593-5279 via Gap Junction from 92636 -> 92635", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92636, + "TargetID": 92635, + "Directional": false + } + ] + }, + { + "ID": 1087, + "SourceStructureID": 593, + "TargetStructureID": 5562, + "Label": "593-5562 via Adherens from 133746 -> 133747", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133746, + "TargetID": 133747, + "Directional": false + } + ] + }, + { + "ID": 1088, + "SourceStructureID": 593, + "TargetStructureID": 5562, + "Label": "593-5562 via Gap Junction from 49434 -> 49433, 79658 -> 79659", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49434, + "TargetID": 49433, + "Directional": false + }, + { + "SourceID": 79658, + "TargetID": 79659, + "Directional": false + } + ] + }, + { + "ID": 1089, + "SourceStructureID": 593, + "TargetStructureID": 5575, + "Label": "593-5575 via Unknown from 62879 -> 62880", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 62879, + "TargetID": 62880, + "Directional": false + } + ] + }, + { + "ID": 1090, + "SourceStructureID": 593, + "TargetStructureID": 5649, + "Label": "593-5649 via Gap Junction from 53818 -> 53826", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53818, + "TargetID": 53826, + "Directional": false + } + ] + }, + { + "ID": 1091, + "SourceStructureID": 6115, + "TargetStructureID": 593, + "Label": "6115-593 via Adherens from 131170 -> 131171", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131170, + "TargetID": 131171, + "Directional": false + } + ] + }, + { + "ID": 1092, + "SourceStructureID": 6115, + "TargetStructureID": 593, + "Label": "6115-593 via Gap Junction from 55890 -> 59799, 72656 -> 72657", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55890, + "TargetID": 59799, + "Directional": false + }, + { + "SourceID": 72656, + "TargetID": 72657, + "Directional": false + } + ] + }, + { + "ID": 1093, + "SourceStructureID": 6997, + "TargetStructureID": 593, + "Label": "6997-593 via Adherens from 135105 -> 135106", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135105, + "TargetID": 135106, + "Directional": false + } + ] + }, + { + "ID": 1094, + "SourceStructureID": 6997, + "TargetStructureID": 593, + "Label": "6997-593 via Gap Junction from 52442 -> 52441, 59747 -> 59749", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52442, + "TargetID": 52441, + "Directional": false + }, + { + "SourceID": 59747, + "TargetID": 59749, + "Directional": false + } + ] + }, + { + "ID": 1095, + "SourceStructureID": 8588, + "TargetStructureID": 593, + "Label": "8588-593 via Unknown from 83345 -> 83344", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83345, + "TargetID": 83344, + "Directional": false + } + ] + }, + { + "ID": 1096, + "SourceStructureID": 16026, + "TargetStructureID": 593, + "Label": "16026-593 via Adherens from 68605 -> 68603", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68605, + "TargetID": 68603, + "Directional": false + } + ] + }, + { + "ID": 1097, + "SourceStructureID": 18282, + "TargetStructureID": 593, + "Label": "18282-593 via Unknown from 115788 -> 115787", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115788, + "TargetID": 115787, + "Directional": false + } + ] + }, + { + "ID": 1098, + "SourceStructureID": 593, + "TargetStructureID": 30477, + "Label": "593-30477 via Adherens from 50448 -> 61959", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 50448, + "TargetID": 61959, + "Directional": false + } + ] + }, + { + "ID": 1099, + "SourceStructureID": 36516, + "TargetStructureID": 593, + "Label": "36516-593 via Adherens from 67369 -> 67368", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67369, + "TargetID": 67368, + "Directional": false + } + ] + }, + { + "ID": 1100, + "SourceStructureID": 593, + "TargetStructureID": 49489, + "Label": "593-49489 via Adherens from 61948 -> 61947", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 61948, + "TargetID": 61947, + "Directional": false + } + ] + }, + { + "ID": 1101, + "SourceStructureID": 59096, + "TargetStructureID": 593, + "Label": "59096-593 via Touch from 59555 -> 59554", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 59555, + "TargetID": 59554, + "Directional": false + } + ] + }, + { + "ID": 1102, + "SourceStructureID": 59097, + "TargetStructureID": 593, + "Label": "59097-593 via Touch from 59119 -> 59118", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 59119, + "TargetID": 59118, + "Directional": false + } + ] + }, + { + "ID": 1103, + "SourceStructureID": 59121, + "TargetStructureID": 593, + "Label": "59121-593 via Adherens from 59123 -> 59120", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59123, + "TargetID": 59120, + "Directional": false + } + ] + }, + { + "ID": 1104, + "SourceStructureID": 59139, + "TargetStructureID": 593, + "Label": "59139-593 via Adherens from 59143 -> 59142", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59143, + "TargetID": 59142, + "Directional": false + } + ] + }, + { + "ID": 1105, + "SourceStructureID": 593, + "TargetStructureID": 59333, + "Label": "593-59333 via Adherens from 59335 -> 59334", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59335, + "TargetID": 59334, + "Directional": false + } + ] + }, + { + "ID": 1106, + "SourceStructureID": 593, + "TargetStructureID": 59333, + "Label": "593-59333 via Touch from 59545 -> 59546", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 59545, + "TargetID": 59546, + "Directional": false + } + ] + }, + { + "ID": 1107, + "SourceStructureID": 593, + "TargetStructureID": 59422, + "Label": "593-59422 via Unknown from 85578 -> 85580", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85578, + "TargetID": 85580, + "Directional": false + } + ] + }, + { + "ID": 1108, + "SourceStructureID": 61777, + "TargetStructureID": 593, + "Label": "61777-593 via Unknown from 79442 -> 79443", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79442, + "TargetID": 79443, + "Directional": false + } + ] + }, + { + "ID": 1109, + "SourceStructureID": 593, + "TargetStructureID": 61816, + "Label": "593-61816 via Adherens from 68390 -> 68389, 86763 -> 86764", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68390, + "TargetID": 68389, + "Directional": false + }, + { + "SourceID": 86763, + "TargetID": 86764, + "Directional": false + } + ] + }, + { + "ID": 1110, + "SourceStructureID": 593, + "TargetStructureID": 61849, + "Label": "593-61849 via Unknown from 83356 -> 83355", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83356, + "TargetID": 83355, + "Directional": false + } + ] + }, + { + "ID": 1111, + "SourceStructureID": 593, + "TargetStructureID": 61860, + "Label": "593-61860 via Unknown from 61859 -> 61861", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 61859, + "TargetID": 61861, + "Directional": false + } + ] + }, + { + "ID": 1112, + "SourceStructureID": 61882, + "TargetStructureID": 593, + "Label": "61882-593 via Unknown from 61884 -> 52433", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 61884, + "TargetID": 52433, + "Directional": false + } + ] + }, + { + "ID": 1113, + "SourceStructureID": 61926, + "TargetStructureID": 593, + "Label": "61926-593 via Unknown from 115740 -> 115741", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115740, + "TargetID": 115741, + "Directional": false + } + ] + }, + { + "ID": 1114, + "SourceStructureID": 61933, + "TargetStructureID": 593, + "Label": "61933-593 via Adherens from 68079 -> 68080, 115700 -> 115699", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68079, + "TargetID": 68080, + "Directional": false + }, + { + "SourceID": 115700, + "TargetID": 115699, + "Directional": false + } + ] + }, + { + "ID": 1115, + "SourceStructureID": 593, + "TargetStructureID": 61940, + "Label": "593-61940 via Adherens from 61945 -> 61946", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 61945, + "TargetID": 61946, + "Directional": false + } + ] + }, + { + "ID": 1116, + "SourceStructureID": 593, + "TargetStructureID": 61965, + "Label": "593-61965 via Adherens from 68417 -> 68418", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68417, + "TargetID": 68418, + "Directional": false + } + ] + }, + { + "ID": 1117, + "SourceStructureID": 61975, + "TargetStructureID": 593, + "Label": "61975-593 via Adherens from 61977 -> 61974", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 61977, + "TargetID": 61974, + "Directional": false + } + ] + }, + { + "ID": 1118, + "SourceStructureID": 593, + "TargetStructureID": 61978, + "Label": "593-61978 via Adherens from 75344 -> 75343", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75344, + "TargetID": 75343, + "Directional": false + } + ] + }, + { + "ID": 1119, + "SourceStructureID": 61982, + "TargetStructureID": 593, + "Label": "61982-593 via Unknown from 61983 -> 61981", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 61983, + "TargetID": 61981, + "Directional": false + } + ] + }, + { + "ID": 1120, + "SourceStructureID": 593, + "TargetStructureID": 62896, + "Label": "593-62896 via Unknown from 115759 -> 115760", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115759, + "TargetID": 115760, + "Directional": false + } + ] + }, + { + "ID": 1121, + "SourceStructureID": 65134, + "TargetStructureID": 593, + "Label": "65134-593 via Unknown from 65149 -> 65146", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 65149, + "TargetID": 65146, + "Directional": false + } + ] + }, + { + "ID": 1122, + "SourceStructureID": 65320, + "TargetStructureID": 593, + "Label": "65320-593 via Adherens from 65345 -> 65344", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65345, + "TargetID": 65344, + "Directional": false + } + ] + }, + { + "ID": 1123, + "SourceStructureID": 593, + "TargetStructureID": 65324, + "Label": "593-65324 via Adherens from 65327 -> 65326", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65327, + "TargetID": 65326, + "Directional": false + } + ] + }, + { + "ID": 1124, + "SourceStructureID": 65398, + "TargetStructureID": 593, + "Label": "65398-593 via Unknown from 83579 -> 83578", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83579, + "TargetID": 83578, + "Directional": false + } + ] + }, + { + "ID": 1125, + "SourceStructureID": 65461, + "TargetStructureID": 593, + "Label": "65461-593 via Adherens from 69858 -> 65400", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 69858, + "TargetID": 65400, + "Directional": false + } + ] + }, + { + "ID": 1126, + "SourceStructureID": 593, + "TargetStructureID": 65464, + "Label": "593-65464 via Adherens from 65466 -> 65465, 65574 -> 65573, 82122 -> 82121, 83586 -> 65568", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65466, + "TargetID": 65465, + "Directional": false + }, + { + "SourceID": 65574, + "TargetID": 65573, + "Directional": false + }, + { + "SourceID": 82122, + "TargetID": 82121, + "Directional": false + }, + { + "SourceID": 83586, + "TargetID": 65568, + "Directional": false + } + ] + }, + { + "ID": 1127, + "SourceStructureID": 65536, + "TargetStructureID": 593, + "Label": "65536-593 via Unknown from 67083 -> 67084", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 67083, + "TargetID": 67084, + "Directional": false + } + ] + }, + { + "ID": 1128, + "SourceStructureID": 65576, + "TargetStructureID": 593, + "Label": "65576-593 via Unknown from 84269 -> 84270", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84269, + "TargetID": 84270, + "Directional": false + } + ] + }, + { + "ID": 1129, + "SourceStructureID": 593, + "TargetStructureID": 66089, + "Label": "593-66089 via Unknown from 115782 -> 115783, 115785 -> 115784", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115782, + "TargetID": 115783, + "Directional": false + }, + { + "SourceID": 115785, + "TargetID": 115784, + "Directional": false + } + ] + }, + { + "ID": 1130, + "SourceStructureID": 593, + "TargetStructureID": 66096, + "Label": "593-66096 via Adherens from 67027 -> 67026, 67029 -> 67028, 67030 -> 67031", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67027, + "TargetID": 67026, + "Directional": false + }, + { + "SourceID": 67029, + "TargetID": 67028, + "Directional": false + }, + { + "SourceID": 67030, + "TargetID": 67031, + "Directional": false + } + ] + }, + { + "ID": 1131, + "SourceStructureID": 66096, + "TargetStructureID": 593, + "Label": "66096-593 via Unknown from 115763 -> 115764, 135101 -> 135102", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115763, + "TargetID": 115764, + "Directional": false + }, + { + "SourceID": 135101, + "TargetID": 135102, + "Directional": false + } + ] + }, + { + "ID": 1132, + "SourceStructureID": 593, + "TargetStructureID": 66299, + "Label": "593-66299 via Adherens from 66326 -> 66327", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66326, + "TargetID": 66327, + "Directional": false + } + ] + }, + { + "ID": 1133, + "SourceStructureID": 66303, + "TargetStructureID": 593, + "Label": "66303-593 via Unknown from 84307 -> 59791", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84307, + "TargetID": 59791, + "Directional": false + } + ] + }, + { + "ID": 1134, + "SourceStructureID": 593, + "TargetStructureID": 66316, + "Label": "593-66316 via Adherens from 66319 -> 66318", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66319, + "TargetID": 66318, + "Directional": false + } + ] + }, + { + "ID": 1135, + "SourceStructureID": 66401, + "TargetStructureID": 593, + "Label": "66401-593 via Adherens from 68370 -> 68372", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68370, + "TargetID": 68372, + "Directional": false + } + ] + }, + { + "ID": 1136, + "SourceStructureID": 66407, + "TargetStructureID": 593, + "Label": "66407-593 via Adherens from 68378 -> 68376", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68378, + "TargetID": 68376, + "Directional": false + } + ] + }, + { + "ID": 1137, + "SourceStructureID": 66510, + "TargetStructureID": 593, + "Label": "66510-593 via Unknown from 84321 -> 84322", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84321, + "TargetID": 84322, + "Directional": false + } + ] + }, + { + "ID": 1138, + "SourceStructureID": 593, + "TargetStructureID": 66513, + "Label": "593-66513 via Unknown from 84329 -> 84328", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84329, + "TargetID": 84328, + "Directional": false + } + ] + }, + { + "ID": 1139, + "SourceStructureID": 593, + "TargetStructureID": 66743, + "Label": "593-66743 via Adherens from 84354 -> 84353", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84354, + "TargetID": 84353, + "Directional": false + } + ] + }, + { + "ID": 1140, + "SourceStructureID": 593, + "TargetStructureID": 66754, + "Label": "593-66754 via Unknown from 115753 -> 115752, 115757 -> 115756", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115753, + "TargetID": 115752, + "Directional": false + }, + { + "SourceID": 115757, + "TargetID": 115756, + "Directional": false + } + ] + }, + { + "ID": 1141, + "SourceStructureID": 593, + "TargetStructureID": 66756, + "Label": "593-66756 via Unknown from 115755 -> 115754", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115755, + "TargetID": 115754, + "Directional": false + } + ] + }, + { + "ID": 1142, + "SourceStructureID": 593, + "TargetStructureID": 66764, + "Label": "593-66764 via Adherens from 66763 -> 66765", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66763, + "TargetID": 66765, + "Directional": false + } + ] + }, + { + "ID": 1143, + "SourceStructureID": 66768, + "TargetStructureID": 593, + "Label": "66768-593 via Adherens from 67540 -> 67541, 67570 -> 67569, 68425 -> 68426", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67540, + "TargetID": 67541, + "Directional": false + }, + { + "SourceID": 67570, + "TargetID": 67569, + "Directional": false + }, + { + "SourceID": 68425, + "TargetID": 68426, + "Directional": false + } + ] + }, + { + "ID": 1144, + "SourceStructureID": 66779, + "TargetStructureID": 593, + "Label": "66779-593 via Unknown from 115770 -> 115769", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115770, + "TargetID": 115769, + "Directional": false + } + ] + }, + { + "ID": 1145, + "SourceStructureID": 593, + "TargetStructureID": 66828, + "Label": "593-66828 via Unknown from 83338 -> 83339", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83338, + "TargetID": 83339, + "Directional": false + } + ] + }, + { + "ID": 1146, + "SourceStructureID": 593, + "TargetStructureID": 66848, + "Label": "593-66848 via Adherens from 66851 -> 66850", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66851, + "TargetID": 66850, + "Directional": false + } + ] + }, + { + "ID": 1147, + "SourceStructureID": 66852, + "TargetStructureID": 593, + "Label": "66852-593 via Adherens from 66856 -> 66855", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66856, + "TargetID": 66855, + "Directional": false + } + ] + }, + { + "ID": 1148, + "SourceStructureID": 593, + "TargetStructureID": 66888, + "Label": "593-66888 via Unknown from 66892 -> 66890, 115777 -> 115776", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 66892, + "TargetID": 66890, + "Directional": false + }, + { + "SourceID": 115777, + "TargetID": 115776, + "Directional": false + } + ] + }, + { + "ID": 1149, + "SourceStructureID": 66905, + "TargetStructureID": 593, + "Label": "66905-593 via Adherens from 82123 -> 82124", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82123, + "TargetID": 82124, + "Directional": false + } + ] + }, + { + "ID": 1150, + "SourceStructureID": 66933, + "TargetStructureID": 593, + "Label": "66933-593 via Unknown from 83342 -> 83343", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83342, + "TargetID": 83343, + "Directional": false + } + ] + }, + { + "ID": 1151, + "SourceStructureID": 593, + "TargetStructureID": 66942, + "Label": "593-66942 via BC Conventional Synapse from 66945 -> 66944", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 66945, + "TargetID": 66944, + "Directional": false + } + ] + }, + { + "ID": 1152, + "SourceStructureID": 66958, + "TargetStructureID": 593, + "Label": "66958-593 via Adherens from 70023 -> 66960", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70023, + "TargetID": 66960, + "Directional": false + } + ] + }, + { + "ID": 1153, + "SourceStructureID": 593, + "TargetStructureID": 66976, + "Label": "593-66976 via Unknown from 66982 -> 66981, 115714 -> 115715", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 66982, + "TargetID": 66981, + "Directional": false + }, + { + "SourceID": 115714, + "TargetID": 115715, + "Directional": false + } + ] + }, + { + "ID": 1154, + "SourceStructureID": 593, + "TargetStructureID": 67016, + "Label": "593-67016 via Adherens from 67021 -> 67022", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67021, + "TargetID": 67022, + "Directional": false + } + ] + }, + { + "ID": 1155, + "SourceStructureID": 67042, + "TargetStructureID": 593, + "Label": "67042-593 via Adherens from 76196 -> 76197, 76465 -> 68496", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76196, + "TargetID": 76197, + "Directional": false + }, + { + "SourceID": 76465, + "TargetID": 68496, + "Directional": false + } + ] + }, + { + "ID": 1156, + "SourceStructureID": 593, + "TargetStructureID": 67042, + "Label": "593-67042 via Unknown from 76468 -> 76467", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76468, + "TargetID": 76467, + "Directional": false + } + ] + }, + { + "ID": 1157, + "SourceStructureID": 593, + "TargetStructureID": 67090, + "Label": "593-67090 via Unknown from 115766 -> 115765", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115766, + "TargetID": 115765, + "Directional": false + } + ] + }, + { + "ID": 1158, + "SourceStructureID": 593, + "TargetStructureID": 67093, + "Label": "593-67093 via Unknown from 83340 -> 83341", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83340, + "TargetID": 83341, + "Directional": false + } + ] + }, + { + "ID": 1159, + "SourceStructureID": 67112, + "TargetStructureID": 593, + "Label": "67112-593 via Unknown from 67115 -> 67116", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 67115, + "TargetID": 67116, + "Directional": false + } + ] + }, + { + "ID": 1160, + "SourceStructureID": 67121, + "TargetStructureID": 593, + "Label": "67121-593 via Adherens from 85520 -> 85519", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85520, + "TargetID": 85519, + "Directional": false + } + ] + }, + { + "ID": 1161, + "SourceStructureID": 593, + "TargetStructureID": 67161, + "Label": "593-67161 via Adherens from 67170 -> 67169, 67451 -> 67450", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67170, + "TargetID": 67169, + "Directional": false + }, + { + "SourceID": 67451, + "TargetID": 67450, + "Directional": false + } + ] + }, + { + "ID": 1162, + "SourceStructureID": 67161, + "TargetStructureID": 593, + "Label": "67161-593 via Unknown from 67162 -> 67163", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 67162, + "TargetID": 67163, + "Directional": false + } + ] + }, + { + "ID": 1163, + "SourceStructureID": 593, + "TargetStructureID": 67182, + "Label": "593-67182 via Adherens from 67186 -> 67185", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67186, + "TargetID": 67185, + "Directional": false + } + ] + }, + { + "ID": 1164, + "SourceStructureID": 67190, + "TargetStructureID": 593, + "Label": "67190-593 via Unknown from 67191 -> 67189", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 67191, + "TargetID": 67189, + "Directional": false + } + ] + }, + { + "ID": 1165, + "SourceStructureID": 593, + "TargetStructureID": 67230, + "Label": "593-67230 via Unknown from 90675 -> 90674", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90675, + "TargetID": 90674, + "Directional": false + } + ] + }, + { + "ID": 1166, + "SourceStructureID": 593, + "TargetStructureID": 67274, + "Label": "593-67274 via Adherens from 67276 -> 67275", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67276, + "TargetID": 67275, + "Directional": false + } + ] + }, + { + "ID": 1167, + "SourceStructureID": 67331, + "TargetStructureID": 593, + "Label": "67331-593 via Postsynapse from 67332 -> 67333", + "Type": "Postsynapse", + "Directional": false, + "Links": [ + { + "SourceID": 67332, + "TargetID": 67333, + "Directional": false + } + ] + }, + { + "ID": 1168, + "SourceStructureID": 593, + "TargetStructureID": 67337, + "Label": "593-67337 via Adherens from 68376 -> 68375", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68376, + "TargetID": 68375, + "Directional": false + } + ] + }, + { + "ID": 1169, + "SourceStructureID": 67337, + "TargetStructureID": 593, + "Label": "67337-593 via Unknown from 115781 -> 115780", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115781, + "TargetID": 115780, + "Directional": false + } + ] + }, + { + "ID": 1170, + "SourceStructureID": 67354, + "TargetStructureID": 593, + "Label": "67354-593 via Unknown from 67355 -> 63026, 85189 -> 85190", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 67355, + "TargetID": 63026, + "Directional": false + }, + { + "SourceID": 85189, + "TargetID": 85190, + "Directional": false + } + ] + }, + { + "ID": 1171, + "SourceStructureID": 593, + "TargetStructureID": 67364, + "Label": "593-67364 via Unknown from 115768 -> 115767", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115768, + "TargetID": 115767, + "Directional": false + } + ] + }, + { + "ID": 1172, + "SourceStructureID": 593, + "TargetStructureID": 67404, + "Label": "593-67404 via Unknown from 83346 -> 83347", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83346, + "TargetID": 83347, + "Directional": false + } + ] + }, + { + "ID": 1173, + "SourceStructureID": 593, + "TargetStructureID": 67406, + "Label": "593-67406 via Adherens from 135097 -> 135098", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135097, + "TargetID": 135098, + "Directional": false + } + ] + }, + { + "ID": 1174, + "SourceStructureID": 67423, + "TargetStructureID": 593, + "Label": "67423-593 via Adherens from 115735 -> 115734", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115735, + "TargetID": 115734, + "Directional": false + } + ] + }, + { + "ID": 1175, + "SourceStructureID": 67425, + "TargetStructureID": 593, + "Label": "67425-593 via Adherens from 67426 -> 67427", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67426, + "TargetID": 67427, + "Directional": false + } + ] + }, + { + "ID": 1176, + "SourceStructureID": 67444, + "TargetStructureID": 593, + "Label": "67444-593 via Unknown from 86530 -> 86529", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86530, + "TargetID": 86529, + "Directional": false + } + ] + }, + { + "ID": 1177, + "SourceStructureID": 67502, + "TargetStructureID": 593, + "Label": "67502-593 via Unknown from 86740 -> 86739", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86740, + "TargetID": 86739, + "Directional": false + } + ] + }, + { + "ID": 1178, + "SourceStructureID": 593, + "TargetStructureID": 67504, + "Label": "593-67504 via Unknown from 63036 -> 67505", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 63036, + "TargetID": 67505, + "Directional": false + } + ] + }, + { + "ID": 1179, + "SourceStructureID": 67572, + "TargetStructureID": 593, + "Label": "67572-593 via Unknown from 85225 -> 85224", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85225, + "TargetID": 85224, + "Directional": false + } + ] + }, + { + "ID": 1180, + "SourceStructureID": 67661, + "TargetStructureID": 593, + "Label": "67661-593 via Unknown from 67662 -> 63037", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 67662, + "TargetID": 63037, + "Directional": false + } + ] + }, + { + "ID": 1181, + "SourceStructureID": 593, + "TargetStructureID": 67756, + "Label": "593-67756 via Adherens from 67966 -> 67965, 68510 -> 68509", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67966, + "TargetID": 67965, + "Directional": false + }, + { + "SourceID": 68510, + "TargetID": 68509, + "Directional": false + } + ] + }, + { + "ID": 1182, + "SourceStructureID": 593, + "TargetStructureID": 67796, + "Label": "593-67796 via Unknown from 115771 -> 115772", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115771, + "TargetID": 115772, + "Directional": false + } + ] + }, + { + "ID": 1183, + "SourceStructureID": 67815, + "TargetStructureID": 593, + "Label": "67815-593 via Adherens from 67825 -> 67826", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67825, + "TargetID": 67826, + "Directional": false + } + ] + }, + { + "ID": 1184, + "SourceStructureID": 593, + "TargetStructureID": 67815, + "Label": "593-67815 via Unknown from 87251 -> 87252", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 87251, + "TargetID": 87252, + "Directional": false + } + ] + }, + { + "ID": 1185, + "SourceStructureID": 67823, + "TargetStructureID": 593, + "Label": "67823-593 via Adherens from 82395 -> 82394", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82395, + "TargetID": 82394, + "Directional": false + } + ] + }, + { + "ID": 1186, + "SourceStructureID": 67871, + "TargetStructureID": 593, + "Label": "67871-593 via Postsynapse from 68019 -> 68018", + "Type": "Postsynapse", + "Directional": false, + "Links": [ + { + "SourceID": 68019, + "TargetID": 68018, + "Directional": false + } + ] + }, + { + "ID": 1187, + "SourceStructureID": 593, + "TargetStructureID": 67886, + "Label": "593-67886 via Adherens from 67888 -> 67887", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67888, + "TargetID": 67887, + "Directional": false + } + ] + }, + { + "ID": 1188, + "SourceStructureID": 67894, + "TargetStructureID": 593, + "Label": "67894-593 via Adherens from 67898 -> 67899", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67898, + "TargetID": 67899, + "Directional": false + } + ] + }, + { + "ID": 1189, + "SourceStructureID": 67932, + "TargetStructureID": 593, + "Label": "67932-593 via Adherens from 87281 -> 87282", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87281, + "TargetID": 87282, + "Directional": false + } + ] + }, + { + "ID": 1190, + "SourceStructureID": 67952, + "TargetStructureID": 593, + "Label": "67952-593 via Adherens from 67953 -> 67951", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67953, + "TargetID": 67951, + "Directional": false + } + ] + }, + { + "ID": 1191, + "SourceStructureID": 593, + "TargetStructureID": 67973, + "Label": "593-67973 via Unknown from 67974 -> 67975", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 67974, + "TargetID": 67975, + "Directional": false + } + ] + }, + { + "ID": 1192, + "SourceStructureID": 593, + "TargetStructureID": 68009, + "Label": "593-68009 via Adherens from 68011 -> 68010", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68011, + "TargetID": 68010, + "Directional": false + } + ] + }, + { + "ID": 1193, + "SourceStructureID": 68059, + "TargetStructureID": 593, + "Label": "68059-593 via Unknown from 68060 -> 68061", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 68060, + "TargetID": 68061, + "Directional": false + } + ] + }, + { + "ID": 1194, + "SourceStructureID": 593, + "TargetStructureID": 68072, + "Label": "593-68072 via Unknown from 82256 -> 82255", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82256, + "TargetID": 82255, + "Directional": false + } + ] + }, + { + "ID": 1195, + "SourceStructureID": 593, + "TargetStructureID": 68150, + "Label": "593-68150 via BC Conventional Synapse from 68152 -> 68151", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 68152, + "TargetID": 68151, + "Directional": false + } + ] + }, + { + "ID": 1196, + "SourceStructureID": 593, + "TargetStructureID": 68198, + "Label": "593-68198 via Adherens from 68197 -> 68199", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68197, + "TargetID": 68199, + "Directional": false + } + ] + }, + { + "ID": 1197, + "SourceStructureID": 68206, + "TargetStructureID": 593, + "Label": "68206-593 via Unknown from 115775 -> 115774", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115775, + "TargetID": 115774, + "Directional": false + } + ] + }, + { + "ID": 1198, + "SourceStructureID": 593, + "TargetStructureID": 68255, + "Label": "593-68255 via Unknown from 52454 -> 68256", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 52454, + "TargetID": 68256, + "Directional": false + } + ] + }, + { + "ID": 1199, + "SourceStructureID": 68282, + "TargetStructureID": 593, + "Label": "68282-593 via Adherens from 68285 -> 52447", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68285, + "TargetID": 52447, + "Directional": false + } + ] + }, + { + "ID": 1200, + "SourceStructureID": 68353, + "TargetStructureID": 593, + "Label": "68353-593 via Unknown from 68354 -> 68352", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 68354, + "TargetID": 68352, + "Directional": false + } + ] + }, + { + "ID": 1201, + "SourceStructureID": 68461, + "TargetStructureID": 593, + "Label": "68461-593 via Unknown from 68462 -> 63029", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 68462, + "TargetID": 63029, + "Directional": false + } + ] + }, + { + "ID": 1202, + "SourceStructureID": 68497, + "TargetStructureID": 593, + "Label": "68497-593 via Adherens from 79303 -> 79304", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79303, + "TargetID": 79304, + "Directional": false + } + ] + }, + { + "ID": 1203, + "SourceStructureID": 593, + "TargetStructureID": 68506, + "Label": "593-68506 via Unknown from 68508 -> 68507", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 68508, + "TargetID": 68507, + "Directional": false + } + ] + }, + { + "ID": 1204, + "SourceStructureID": 593, + "TargetStructureID": 68531, + "Label": "593-68531 via BC Conventional Synapse from 63045 -> 68532", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 63045, + "TargetID": 68532, + "Directional": false + } + ] + }, + { + "ID": 1205, + "SourceStructureID": 593, + "TargetStructureID": 68548, + "Label": "593-68548 via Adherens from 67699 -> 73569", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67699, + "TargetID": 73569, + "Directional": false + } + ] + }, + { + "ID": 1206, + "SourceStructureID": 593, + "TargetStructureID": 68550, + "Label": "593-68550 via Unknown from 63046 -> 68551", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 63046, + "TargetID": 68551, + "Directional": false + } + ] + }, + { + "ID": 1207, + "SourceStructureID": 593, + "TargetStructureID": 68667, + "Label": "593-68667 via Unknown from 86534 -> 86533", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86534, + "TargetID": 86533, + "Directional": false + } + ] + }, + { + "ID": 1208, + "SourceStructureID": 69200, + "TargetStructureID": 593, + "Label": "69200-593 via Unknown from 86557 -> 86556", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86557, + "TargetID": 86556, + "Directional": false + } + ] + }, + { + "ID": 1209, + "SourceStructureID": 69382, + "TargetStructureID": 593, + "Label": "69382-593 via Unknown from 85226 -> 85228", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85226, + "TargetID": 85228, + "Directional": false + } + ] + }, + { + "ID": 1210, + "SourceStructureID": 83352, + "TargetStructureID": 593, + "Label": "83352-593 via Unknown from 83353 -> 83354", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83353, + "TargetID": 83354, + "Directional": false + } + ] + }, + { + "ID": 1211, + "SourceStructureID": 593, + "TargetStructureID": 83362, + "Label": "593-83362 via Unknown from 83363 -> 83364", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83363, + "TargetID": 83364, + "Directional": false + } + ] + }, + { + "ID": 1212, + "SourceStructureID": 83443, + "TargetStructureID": 593, + "Label": "83443-593 via Adherens from 86378 -> 67236", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86378, + "TargetID": 67236, + "Directional": false + } + ] + }, + { + "ID": 1213, + "SourceStructureID": 593, + "TargetStructureID": 83470, + "Label": "593-83470 via Unknown from 83472 -> 83471", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83472, + "TargetID": 83471, + "Directional": false + } + ] + }, + { + "ID": 1214, + "SourceStructureID": 593, + "TargetStructureID": 83476, + "Label": "593-83476 via Unknown from 83479 -> 83480", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83479, + "TargetID": 83480, + "Directional": false + } + ] + }, + { + "ID": 1215, + "SourceStructureID": 593, + "TargetStructureID": 83547, + "Label": "593-83547 via Unknown from 83548 -> 83549", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83548, + "TargetID": 83549, + "Directional": false + } + ] + }, + { + "ID": 1216, + "SourceStructureID": 84127, + "TargetStructureID": 593, + "Label": "84127-593 via Unknown from 84584 -> 84583", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84584, + "TargetID": 84583, + "Directional": false + } + ] + }, + { + "ID": 1217, + "SourceStructureID": 84260, + "TargetStructureID": 593, + "Label": "84260-593 via Unknown from 84264 -> 52746", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84264, + "TargetID": 52746, + "Directional": false + } + ] + }, + { + "ID": 1218, + "SourceStructureID": 84301, + "TargetStructureID": 593, + "Label": "84301-593 via Adherens from 84302 -> 84303", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84302, + "TargetID": 84303, + "Directional": false + } + ] + }, + { + "ID": 1219, + "SourceStructureID": 593, + "TargetStructureID": 84335, + "Label": "593-84335 via Unknown from 84334 -> 84338", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84334, + "TargetID": 84338, + "Directional": false + } + ] + }, + { + "ID": 1220, + "SourceStructureID": 593, + "TargetStructureID": 84579, + "Label": "593-84579 via Unknown from 84578 -> 84580", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84578, + "TargetID": 84580, + "Directional": false + } + ] + }, + { + "ID": 1221, + "SourceStructureID": 593, + "TargetStructureID": 84587, + "Label": "593-84587 via Unknown from 84588 -> 84589", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84588, + "TargetID": 84589, + "Directional": false + } + ] + }, + { + "ID": 1222, + "SourceStructureID": 593, + "TargetStructureID": 84624, + "Label": "593-84624 via Unknown from 84626 -> 84627", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84626, + "TargetID": 84627, + "Directional": false + } + ] + }, + { + "ID": 1223, + "SourceStructureID": 593, + "TargetStructureID": 85210, + "Label": "593-85210 via Unknown from 85209 -> 85218", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85209, + "TargetID": 85218, + "Directional": false + } + ] + }, + { + "ID": 1224, + "SourceStructureID": 85359, + "TargetStructureID": 593, + "Label": "85359-593 via Unknown from 85360 -> 85361", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85360, + "TargetID": 85361, + "Directional": false + } + ] + }, + { + "ID": 1225, + "SourceStructureID": 85501, + "TargetStructureID": 593, + "Label": "85501-593 via Unknown from 85502 -> 85503", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85502, + "TargetID": 85503, + "Directional": false + } + ] + }, + { + "ID": 1226, + "SourceStructureID": 85510, + "TargetStructureID": 593, + "Label": "85510-593 via Unknown from 85532 -> 85531", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85532, + "TargetID": 85531, + "Directional": false + } + ] + }, + { + "ID": 1227, + "SourceStructureID": 85565, + "TargetStructureID": 593, + "Label": "85565-593 via Unknown from 85567 -> 85568", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85567, + "TargetID": 85568, + "Directional": false + } + ] + }, + { + "ID": 1228, + "SourceStructureID": 593, + "TargetStructureID": 85571, + "Label": "593-85571 via Adherens from 85573 -> 85574", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85573, + "TargetID": 85574, + "Directional": false + } + ] + }, + { + "ID": 1229, + "SourceStructureID": 593, + "TargetStructureID": 86535, + "Label": "593-86535 via Unknown from 86536 -> 86537", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86536, + "TargetID": 86537, + "Directional": false + } + ] + }, + { + "ID": 1230, + "SourceStructureID": 86538, + "TargetStructureID": 593, + "Label": "86538-593 via Unknown from 86542 -> 86543", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86542, + "TargetID": 86543, + "Directional": false + } + ] + }, + { + "ID": 1231, + "SourceStructureID": 86539, + "TargetStructureID": 593, + "Label": "86539-593 via Unknown from 86540 -> 86541", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86540, + "TargetID": 86541, + "Directional": false + } + ] + }, + { + "ID": 1232, + "SourceStructureID": 86736, + "TargetStructureID": 593, + "Label": "86736-593 via Adherens from 86737 -> 86735", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86737, + "TargetID": 86735, + "Directional": false + } + ] + }, + { + "ID": 1233, + "SourceStructureID": 593, + "TargetStructureID": 86744, + "Label": "593-86744 via Unknown from 86746 -> 86745", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86746, + "TargetID": 86745, + "Directional": false + } + ] + }, + { + "ID": 1234, + "SourceStructureID": 86757, + "TargetStructureID": 593, + "Label": "86757-593 via Unknown from 86758 -> 86759", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86758, + "TargetID": 86759, + "Directional": false + } + ] + }, + { + "ID": 1235, + "SourceStructureID": 87217, + "TargetStructureID": 593, + "Label": "87217-593 via Unknown from 87218 -> 87219", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 87218, + "TargetID": 87219, + "Directional": false + } + ] + }, + { + "ID": 1236, + "SourceStructureID": 87274, + "TargetStructureID": 593, + "Label": "87274-593 via Unknown from 87276 -> 87275", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 87276, + "TargetID": 87275, + "Directional": false + } + ] + }, + { + "ID": 1237, + "SourceStructureID": 593, + "TargetStructureID": 115992, + "Label": "593-115992 via Unknown from 120240 -> 120241", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120240, + "TargetID": 120241, + "Directional": false + } + ] + }, + { + "ID": 1238, + "SourceStructureID": 595, + "TargetStructureID": 595, + "Label": "595-595 via Adherens from 91257 -> 91258, 92829 -> 92830", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91257, + "TargetID": 91258, + "Directional": false + }, + { + "SourceID": 92829, + "TargetID": 92830, + "Directional": false + } + ] + }, + { + "ID": 1239, + "SourceStructureID": 595, + "TargetStructureID": 595, + "Label": "595-595 via Gap Junction from 125576 -> 125577, 135531 -> 135530", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 125576, + "TargetID": 125577, + "Directional": false + }, + { + "SourceID": 135531, + "TargetID": 135530, + "Directional": false + } + ] + }, + { + "ID": 1240, + "SourceStructureID": 606, + "TargetStructureID": 595, + "Label": "606-595 via Unknown from 125096 -> 125095", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125096, + "TargetID": 125095, + "Directional": false + } + ] + }, + { + "ID": 1241, + "SourceStructureID": 5528, + "TargetStructureID": 595, + "Label": "5528-595 via Adherens from 8283 -> 8282, 91360 -> 91359, 135741 -> 135740, 135743 -> 135744, 135745 -> 135746", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 8283, + "TargetID": 8282, + "Directional": false + }, + { + "SourceID": 91360, + "TargetID": 91359, + "Directional": false + }, + { + "SourceID": 135741, + "TargetID": 135740, + "Directional": false + }, + { + "SourceID": 135743, + "TargetID": 135744, + "Directional": false + }, + { + "SourceID": 135745, + "TargetID": 135746, + "Directional": false + } + ] + }, + { + "ID": 1242, + "SourceStructureID": 595, + "TargetStructureID": 5528, + "Label": "595-5528 via Gap Junction from 46704 -> 55016, 54872 -> 54643, 91273 -> 91272, 91361 -> 91362, 91375 -> 91520, 94739 -> 94740, 113993 -> 113992, 133948 -> 133949, 135713 -> 135712", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46704, + "TargetID": 55016, + "Directional": false + }, + { + "SourceID": 54872, + "TargetID": 54643, + "Directional": false + }, + { + "SourceID": 91273, + "TargetID": 91272, + "Directional": false + }, + { + "SourceID": 91361, + "TargetID": 91362, + "Directional": false + }, + { + "SourceID": 91375, + "TargetID": 91520, + "Directional": false + }, + { + "SourceID": 94739, + "TargetID": 94740, + "Directional": false + }, + { + "SourceID": 113993, + "TargetID": 113992, + "Directional": false + }, + { + "SourceID": 133948, + "TargetID": 133949, + "Directional": false + }, + { + "SourceID": 135713, + "TargetID": 135712, + "Directional": false + } + ] + }, + { + "ID": 1243, + "SourceStructureID": 5530, + "TargetStructureID": 595, + "Label": "5530-595 via Adherens from 74852 -> 74853, 75907 -> 75906, 80469 -> 80470, 80621 -> 80620, 81025 -> 81024, 81032 -> 81031, 82340 -> 82341, 125900 -> 125899, 135554 -> 135553, 135560 -> 135559, 135593 -> 135594", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74852, + "TargetID": 74853, + "Directional": false + }, + { + "SourceID": 75907, + "TargetID": 75906, + "Directional": false + }, + { + "SourceID": 80469, + "TargetID": 80470, + "Directional": false + }, + { + "SourceID": 80621, + "TargetID": 80620, + "Directional": false + }, + { + "SourceID": 81025, + "TargetID": 81024, + "Directional": false + }, + { + "SourceID": 81032, + "TargetID": 81031, + "Directional": false + }, + { + "SourceID": 82340, + "TargetID": 82341, + "Directional": false + }, + { + "SourceID": 125900, + "TargetID": 125899, + "Directional": false + }, + { + "SourceID": 135554, + "TargetID": 135553, + "Directional": false + }, + { + "SourceID": 135560, + "TargetID": 135559, + "Directional": false + }, + { + "SourceID": 135593, + "TargetID": 135594, + "Directional": false + } + ] + }, + { + "ID": 1244, + "SourceStructureID": 595, + "TargetStructureID": 5530, + "Label": "595-5530 via Gap Junction from 40652 -> 40551, 46668 -> 46667, 47212 -> 47211, 74746 -> 74747, 75038 -> 75036, 76835 -> 76834, 80239 -> 80238, 80619 -> 80618, 81023 -> 81021, 81029 -> 81030, 82339 -> 75412, 125890 -> 125889, 128283 -> 128282, 133932 -> 133931, 133934 -> 133933, 133936 -> 133935, 133937 -> 133938, 133943 -> 133944, 133951 -> 133950, 133953 -> 133952, 133954 -> 133955, 133957 -> 133956, 133959 -> 133958, 133961 -> 133960, 133963 -> 133962, 133965 -> 133964, 135723 -> 135722", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 40652, + "TargetID": 40551, + "Directional": false + }, + { + "SourceID": 46668, + "TargetID": 46667, + "Directional": false + }, + { + "SourceID": 47212, + "TargetID": 47211, + "Directional": false + }, + { + "SourceID": 74746, + "TargetID": 74747, + "Directional": false + }, + { + "SourceID": 75038, + "TargetID": 75036, + "Directional": false + }, + { + "SourceID": 76835, + "TargetID": 76834, + "Directional": false + }, + { + "SourceID": 80239, + "TargetID": 80238, + "Directional": false + }, + { + "SourceID": 80619, + "TargetID": 80618, + "Directional": false + }, + { + "SourceID": 81023, + "TargetID": 81021, + "Directional": false + }, + { + "SourceID": 81029, + "TargetID": 81030, + "Directional": false + }, + { + "SourceID": 82339, + "TargetID": 75412, + "Directional": false + }, + { + "SourceID": 125890, + "TargetID": 125889, + "Directional": false + }, + { + "SourceID": 128283, + "TargetID": 128282, + "Directional": false + }, + { + "SourceID": 133932, + "TargetID": 133931, + "Directional": false + }, + { + "SourceID": 133934, + "TargetID": 133933, + "Directional": false + }, + { + "SourceID": 133936, + "TargetID": 133935, + "Directional": false + }, + { + "SourceID": 133937, + "TargetID": 133938, + "Directional": false + }, + { + "SourceID": 133943, + "TargetID": 133944, + "Directional": false + }, + { + "SourceID": 133951, + "TargetID": 133950, + "Directional": false + }, + { + "SourceID": 133953, + "TargetID": 133952, + "Directional": false + }, + { + "SourceID": 133954, + "TargetID": 133955, + "Directional": false + }, + { + "SourceID": 133957, + "TargetID": 133956, + "Directional": false + }, + { + "SourceID": 133959, + "TargetID": 133958, + "Directional": false + }, + { + "SourceID": 133961, + "TargetID": 133960, + "Directional": false + }, + { + "SourceID": 133963, + "TargetID": 133962, + "Directional": false + }, + { + "SourceID": 133965, + "TargetID": 133964, + "Directional": false + }, + { + "SourceID": 135723, + "TargetID": 135722, + "Directional": false + } + ] + }, + { + "ID": 1245, + "SourceStructureID": 5531, + "TargetStructureID": 595, + "Label": "5531-595 via Gap Junction from 91490 -> 91489", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91490, + "TargetID": 91489, + "Directional": false + } + ] + }, + { + "ID": 1246, + "SourceStructureID": 6117, + "TargetStructureID": 595, + "Label": "6117-595 via Adherens from 86348 -> 47258", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86348, + "TargetID": 47258, + "Directional": false + } + ] + }, + { + "ID": 1247, + "SourceStructureID": 6117, + "TargetStructureID": 595, + "Label": "6117-595 via Gap Junction from 86347 -> 47259", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 86347, + "TargetID": 47259, + "Directional": false + } + ] + }, + { + "ID": 1248, + "SourceStructureID": 6129, + "TargetStructureID": 595, + "Label": "6129-595 via Adherens from 125180 -> 125179", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125180, + "TargetID": 125179, + "Directional": false + } + ] + }, + { + "ID": 1249, + "SourceStructureID": 7576, + "TargetStructureID": 595, + "Label": "7576-595 via Adherens from 91399 -> 91398, 125164 -> 125163, 135728 -> 135729", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91399, + "TargetID": 91398, + "Directional": false + }, + { + "SourceID": 125164, + "TargetID": 125163, + "Directional": false + }, + { + "SourceID": 135728, + "TargetID": 135729, + "Directional": false + } + ] + }, + { + "ID": 1250, + "SourceStructureID": 595, + "TargetStructureID": 7576, + "Label": "595-7576 via Gap Junction from 54868 -> 54869, 54883 -> 54884, 55020 -> 55019, 133946 -> 133945, 135727 -> 135726", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54868, + "TargetID": 54869, + "Directional": false + }, + { + "SourceID": 54883, + "TargetID": 54884, + "Directional": false + }, + { + "SourceID": 55020, + "TargetID": 55019, + "Directional": false + }, + { + "SourceID": 133946, + "TargetID": 133945, + "Directional": false + }, + { + "SourceID": 135727, + "TargetID": 135726, + "Directional": false + } + ] + }, + { + "ID": 1251, + "SourceStructureID": 9769, + "TargetStructureID": 595, + "Label": "9769-595 via Unknown from 135558 -> 135557", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135558, + "TargetID": 135557, + "Directional": false + } + ] + }, + { + "ID": 1252, + "SourceStructureID": 15796, + "TargetStructureID": 595, + "Label": "15796-595 via Unknown from 91407 -> 91408", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91407, + "TargetID": 91408, + "Directional": false + } + ] + }, + { + "ID": 1253, + "SourceStructureID": 21299, + "TargetStructureID": 595, + "Label": "21299-595 via Gap Junction from 91650 -> 91649", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91650, + "TargetID": 91649, + "Directional": false + } + ] + }, + { + "ID": 1254, + "SourceStructureID": 595, + "TargetStructureID": 51617, + "Label": "595-51617 via Unknown from 125306 -> 125307", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125306, + "TargetID": 125307, + "Directional": false + } + ] + }, + { + "ID": 1255, + "SourceStructureID": 90061, + "TargetStructureID": 595, + "Label": "90061-595 via Adherens from 135591 -> 135592", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135591, + "TargetID": 135592, + "Directional": false + } + ] + }, + { + "ID": 1256, + "SourceStructureID": 90891, + "TargetStructureID": 595, + "Label": "90891-595 via Unknown from 90892 -> 90893", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90892, + "TargetID": 90893, + "Directional": false + } + ] + }, + { + "ID": 1257, + "SourceStructureID": 90905, + "TargetStructureID": 595, + "Label": "90905-595 via Unknown from 90907 -> 90908", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90907, + "TargetID": 90908, + "Directional": false + } + ] + }, + { + "ID": 1258, + "SourceStructureID": 90917, + "TargetStructureID": 595, + "Label": "90917-595 via Adherens from 91127 -> 91126", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91127, + "TargetID": 91126, + "Directional": false + } + ] + }, + { + "ID": 1259, + "SourceStructureID": 90917, + "TargetStructureID": 595, + "Label": "90917-595 via Gap Junction from 91124 -> 91125", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91124, + "TargetID": 91125, + "Directional": false + } + ] + }, + { + "ID": 1260, + "SourceStructureID": 91132, + "TargetStructureID": 595, + "Label": "91132-595 via Unknown from 91134 -> 91133", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91134, + "TargetID": 91133, + "Directional": false + } + ] + }, + { + "ID": 1261, + "SourceStructureID": 595, + "TargetStructureID": 91138, + "Label": "595-91138 via Adherens from 135735 -> 135736", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135735, + "TargetID": 135736, + "Directional": false + } + ] + }, + { + "ID": 1262, + "SourceStructureID": 595, + "TargetStructureID": 91138, + "Label": "595-91138 via Gap Junction from 91139 -> 91140", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91139, + "TargetID": 91140, + "Directional": false + } + ] + }, + { + "ID": 1263, + "SourceStructureID": 595, + "TargetStructureID": 91156, + "Label": "595-91156 via Unknown from 91157 -> 91158", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91157, + "TargetID": 91158, + "Directional": false + } + ] + }, + { + "ID": 1264, + "SourceStructureID": 91178, + "TargetStructureID": 595, + "Label": "91178-595 via Adherens from 135525 -> 135526", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135525, + "TargetID": 135526, + "Directional": false + } + ] + }, + { + "ID": 1265, + "SourceStructureID": 595, + "TargetStructureID": 91178, + "Label": "595-91178 via Gap Junction from 46644 -> 91179, 135527 -> 135528", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46644, + "TargetID": 91179, + "Directional": false + }, + { + "SourceID": 135527, + "TargetID": 135528, + "Directional": false + } + ] + }, + { + "ID": 1266, + "SourceStructureID": 91188, + "TargetStructureID": 595, + "Label": "91188-595 via Unknown from 91189 -> 91190", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91189, + "TargetID": 91190, + "Directional": false + } + ] + }, + { + "ID": 1267, + "SourceStructureID": 91191, + "TargetStructureID": 595, + "Label": "91191-595 via Gap Junction from 91193 -> 91192", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91193, + "TargetID": 91192, + "Directional": false + } + ] + }, + { + "ID": 1268, + "SourceStructureID": 595, + "TargetStructureID": 91232, + "Label": "595-91232 via Unknown from 91234 -> 91233, 92604 -> 92603", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91234, + "TargetID": 91233, + "Directional": false + }, + { + "SourceID": 92604, + "TargetID": 92603, + "Directional": false + } + ] + }, + { + "ID": 1269, + "SourceStructureID": 91376, + "TargetStructureID": 595, + "Label": "91376-595 via Unknown from 91377 -> 91378", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91377, + "TargetID": 91378, + "Directional": false + } + ] + }, + { + "ID": 1270, + "SourceStructureID": 91414, + "TargetStructureID": 595, + "Label": "91414-595 via Unknown from 91416 -> 91415", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91416, + "TargetID": 91415, + "Directional": false + } + ] + }, + { + "ID": 1271, + "SourceStructureID": 91497, + "TargetStructureID": 595, + "Label": "91497-595 via Unknown from 91498 -> 91499", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91498, + "TargetID": 91499, + "Directional": false + } + ] + }, + { + "ID": 1272, + "SourceStructureID": 595, + "TargetStructureID": 91521, + "Label": "595-91521 via Gap Junction from 91522 -> 91523", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91522, + "TargetID": 91523, + "Directional": false + } + ] + }, + { + "ID": 1273, + "SourceStructureID": 96290, + "TargetStructureID": 595, + "Label": "96290-595 via Unknown from 147408 -> 147407", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147408, + "TargetID": 147407, + "Directional": false + } + ] + }, + { + "ID": 1274, + "SourceStructureID": 106778, + "TargetStructureID": 595, + "Label": "106778-595 via Unknown from 125072 -> 125071", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125072, + "TargetID": 125071, + "Directional": false + } + ] + }, + { + "ID": 1275, + "SourceStructureID": 598, + "TargetStructureID": 606, + "Label": "598-606 via Adherens from 131144 -> 131143", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131144, + "TargetID": 131143, + "Directional": false + } + ] + }, + { + "ID": 1276, + "SourceStructureID": 598, + "TargetStructureID": 606, + "Label": "598-606 via Gap Junction from 50909 -> 50908", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50909, + "TargetID": 50908, + "Directional": false + } + ] + }, + { + "ID": 1277, + "SourceStructureID": 598, + "TargetStructureID": 5396, + "Label": "598-5396 via Adherens from 89483 -> 89482", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89483, + "TargetID": 89482, + "Directional": false + } + ] + }, + { + "ID": 1278, + "SourceStructureID": 606, + "TargetStructureID": 5292, + "Label": "606-5292 via Adherens from 51389 -> 51390", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 51389, + "TargetID": 51390, + "Directional": false + } + ] + }, + { + "ID": 1279, + "SourceStructureID": 5442, + "TargetStructureID": 606, + "Label": "5442-606 via Adherens from 55117 -> 55116, 73982 -> 73983", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 55117, + "TargetID": 55116, + "Directional": false + }, + { + "SourceID": 73982, + "TargetID": 73983, + "Directional": false + } + ] + }, + { + "ID": 1280, + "SourceStructureID": 606, + "TargetStructureID": 5442, + "Label": "606-5442 via Gap Junction from 48006 -> 55113, 48007 -> 55114, 48098 -> 55126", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48006, + "TargetID": 55113, + "Directional": false + }, + { + "SourceID": 48007, + "TargetID": 55114, + "Directional": false + }, + { + "SourceID": 48098, + "TargetID": 55126, + "Directional": false + } + ] + }, + { + "ID": 1281, + "SourceStructureID": 5450, + "TargetStructureID": 606, + "Label": "5450-606 via Adherens from 53877 -> 53876", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 53877, + "TargetID": 53876, + "Directional": false + } + ] + }, + { + "ID": 1282, + "SourceStructureID": 5451, + "TargetStructureID": 606, + "Label": "5451-606 via Adherens from 54332 -> 54331, 88729 -> 88728", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54332, + "TargetID": 54331, + "Directional": false + }, + { + "SourceID": 88729, + "TargetID": 88728, + "Directional": false + } + ] + }, + { + "ID": 1283, + "SourceStructureID": 606, + "TargetStructureID": 5451, + "Label": "606-5451 via Gap Junction from 44310 -> 44312, 44956 -> 44960, 45214 -> 55152, 54319 -> 54318, 54329 -> 49808, 55173 -> 49621", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 44310, + "TargetID": 44312, + "Directional": false + }, + { + "SourceID": 44956, + "TargetID": 44960, + "Directional": false + }, + { + "SourceID": 45214, + "TargetID": 55152, + "Directional": false + }, + { + "SourceID": 54319, + "TargetID": 54318, + "Directional": false + }, + { + "SourceID": 54329, + "TargetID": 49808, + "Directional": false + }, + { + "SourceID": 55173, + "TargetID": 49621, + "Directional": false + } + ] + }, + { + "ID": 1284, + "SourceStructureID": 606, + "TargetStructureID": 5468, + "Label": "606-5468 via Adherens from 51772 -> 51773, 51848 -> 51847", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 51772, + "TargetID": 51773, + "Directional": false + }, + { + "SourceID": 51848, + "TargetID": 51847, + "Directional": false + } + ] + }, + { + "ID": 1285, + "SourceStructureID": 606, + "TargetStructureID": 5481, + "Label": "606-5481 via Adherens from 53380 -> 53381, 53419 -> 53420", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 53380, + "TargetID": 53381, + "Directional": false + }, + { + "SourceID": 53419, + "TargetID": 53420, + "Directional": false + } + ] + }, + { + "ID": 1286, + "SourceStructureID": 606, + "TargetStructureID": 5481, + "Label": "606-5481 via Gap Junction from 52403 -> 52516, 52404 -> 52518, 52527 -> 52528, 53064 -> 90173, 53360 -> 53359, 53365 -> 53364, 53371 -> 53372", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52403, + "TargetID": 52516, + "Directional": false + }, + { + "SourceID": 52404, + "TargetID": 52518, + "Directional": false + }, + { + "SourceID": 52527, + "TargetID": 52528, + "Directional": false + }, + { + "SourceID": 53064, + "TargetID": 90173, + "Directional": false + }, + { + "SourceID": 53360, + "TargetID": 53359, + "Directional": false + }, + { + "SourceID": 53365, + "TargetID": 53364, + "Directional": false + }, + { + "SourceID": 53371, + "TargetID": 53372, + "Directional": false + } + ] + }, + { + "ID": 1287, + "SourceStructureID": 5530, + "TargetStructureID": 606, + "Label": "5530-606 via Adherens from 52525 -> 52524, 52529 -> 52531, 53483 -> 53482, 53525 -> 53524, 53526 -> 53527, 54030 -> 54031, 54048 -> 54049, 54050 -> 54051", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 52525, + "TargetID": 52524, + "Directional": false + }, + { + "SourceID": 52529, + "TargetID": 52531, + "Directional": false + }, + { + "SourceID": 53483, + "TargetID": 53482, + "Directional": false + }, + { + "SourceID": 53525, + "TargetID": 53524, + "Directional": false + }, + { + "SourceID": 53526, + "TargetID": 53527, + "Directional": false + }, + { + "SourceID": 54030, + "TargetID": 54031, + "Directional": false + }, + { + "SourceID": 54048, + "TargetID": 54049, + "Directional": false + }, + { + "SourceID": 54050, + "TargetID": 54051, + "Directional": false + } + ] + }, + { + "ID": 1288, + "SourceStructureID": 606, + "TargetStructureID": 5530, + "Label": "606-5530 via Unknown from 82555 -> 80970, 82684 -> 77469, 82882 -> 81107, 82885 -> 81135, 125893 -> 125892", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82555, + "TargetID": 80970, + "Directional": false + }, + { + "SourceID": 82684, + "TargetID": 77469, + "Directional": false + }, + { + "SourceID": 82882, + "TargetID": 81107, + "Directional": false + }, + { + "SourceID": 82885, + "TargetID": 81135, + "Directional": false + }, + { + "SourceID": 125893, + "TargetID": 125892, + "Directional": false + } + ] + }, + { + "ID": 1289, + "SourceStructureID": 606, + "TargetStructureID": 5541, + "Label": "606-5541 via Adherens from 53711 -> 53712, 53713 -> 53714", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 53711, + "TargetID": 53712, + "Directional": false + }, + { + "SourceID": 53713, + "TargetID": 53714, + "Directional": false + } + ] + }, + { + "ID": 1290, + "SourceStructureID": 5601, + "TargetStructureID": 606, + "Label": "5601-606 via Adherens from 54552 -> 54551, 54600 -> 54599", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54552, + "TargetID": 54551, + "Directional": false + }, + { + "SourceID": 54600, + "TargetID": 54599, + "Directional": false + } + ] + }, + { + "ID": 1291, + "SourceStructureID": 606, + "TargetStructureID": 5601, + "Label": "606-5601 via Unknown from 134827 -> 127147", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134827, + "TargetID": 127147, + "Directional": false + } + ] + }, + { + "ID": 1292, + "SourceStructureID": 606, + "TargetStructureID": 5650, + "Label": "606-5650 via Adherens from 51463 -> 51464", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 51463, + "TargetID": 51464, + "Directional": false + } + ] + }, + { + "ID": 1293, + "SourceStructureID": 606, + "TargetStructureID": 5729, + "Label": "606-5729 via Adherens from 47225 -> 47230", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 47225, + "TargetID": 47230, + "Directional": false + } + ] + }, + { + "ID": 1294, + "SourceStructureID": 606, + "TargetStructureID": 5729, + "Label": "606-5729 via Unknown from 111447 -> 111446", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111447, + "TargetID": 111446, + "Directional": false + } + ] + }, + { + "ID": 1295, + "SourceStructureID": 606, + "TargetStructureID": 6117, + "Label": "606-6117 via Adherens from 12320 -> 86263, 51203 -> 51204, 51295 -> 51294", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 12320, + "TargetID": 86263, + "Directional": false + }, + { + "SourceID": 51203, + "TargetID": 51204, + "Directional": false + }, + { + "SourceID": 51295, + "TargetID": 51294, + "Directional": false + } + ] + }, + { + "ID": 1296, + "SourceStructureID": 606, + "TargetStructureID": 6117, + "Label": "606-6117 via Unknown from 84161 -> 84160", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84161, + "TargetID": 84160, + "Directional": false + } + ] + }, + { + "ID": 1297, + "SourceStructureID": 6120, + "TargetStructureID": 606, + "Label": "6120-606 via Adherens from 51498 -> 51499, 51509 -> 51508", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 51498, + "TargetID": 51499, + "Directional": false + }, + { + "SourceID": 51509, + "TargetID": 51508, + "Directional": false + } + ] + }, + { + "ID": 1298, + "SourceStructureID": 6204, + "TargetStructureID": 606, + "Label": "6204-606 via Adherens from 51975 -> 51976", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 51975, + "TargetID": 51976, + "Directional": false + } + ] + }, + { + "ID": 1299, + "SourceStructureID": 606, + "TargetStructureID": 7024, + "Label": "606-7024 via Adherens from 47474 -> 47473", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 47474, + "TargetID": 47473, + "Directional": false + } + ] + }, + { + "ID": 1300, + "SourceStructureID": 606, + "TargetStructureID": 7576, + "Label": "606-7576 via Adherens from 54840 -> 54841", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54840, + "TargetID": 54841, + "Directional": false + } + ] + }, + { + "ID": 1301, + "SourceStructureID": 7594, + "TargetStructureID": 606, + "Label": "7594-606 via Adherens from 47611 -> 47612, 51097 -> 51098, 51421 -> 51422, 51745 -> 51746, 51800 -> 51799, 52500 -> 52501, 53560 -> 53548, 54445 -> 54446", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 47611, + "TargetID": 47612, + "Directional": false + }, + { + "SourceID": 51097, + "TargetID": 51098, + "Directional": false + }, + { + "SourceID": 51421, + "TargetID": 51422, + "Directional": false + }, + { + "SourceID": 51745, + "TargetID": 51746, + "Directional": false + }, + { + "SourceID": 51800, + "TargetID": 51799, + "Directional": false + }, + { + "SourceID": 52500, + "TargetID": 52501, + "Directional": false + }, + { + "SourceID": 53560, + "TargetID": 53548, + "Directional": false + }, + { + "SourceID": 54445, + "TargetID": 54446, + "Directional": false + } + ] + }, + { + "ID": 1302, + "SourceStructureID": 9769, + "TargetStructureID": 606, + "Label": "9769-606 via Adherens from 12397 -> 12398, 48505 -> 48506, 49123 -> 49124, 51235 -> 51236, 51303 -> 51302, 51307 -> 51306, 51432 -> 51433, 51785 -> 51786, 53047 -> 53046, 53048 -> 53045, 53049 -> 53044, 53059 -> 53060, 53076 -> 53075, 53079 -> 53078, 53088 -> 53089", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 12397, + "TargetID": 12398, + "Directional": false + }, + { + "SourceID": 48505, + "TargetID": 48506, + "Directional": false + }, + { + "SourceID": 49123, + "TargetID": 49124, + "Directional": false + }, + { + "SourceID": 51235, + "TargetID": 51236, + "Directional": false + }, + { + "SourceID": 51303, + "TargetID": 51302, + "Directional": false + }, + { + "SourceID": 51307, + "TargetID": 51306, + "Directional": false + }, + { + "SourceID": 51432, + "TargetID": 51433, + "Directional": false + }, + { + "SourceID": 51785, + "TargetID": 51786, + "Directional": false + }, + { + "SourceID": 53047, + "TargetID": 53046, + "Directional": false + }, + { + "SourceID": 53048, + "TargetID": 53045, + "Directional": false + }, + { + "SourceID": 53049, + "TargetID": 53044, + "Directional": false + }, + { + "SourceID": 53059, + "TargetID": 53060, + "Directional": false + }, + { + "SourceID": 53076, + "TargetID": 53075, + "Directional": false + }, + { + "SourceID": 53079, + "TargetID": 53078, + "Directional": false + }, + { + "SourceID": 53088, + "TargetID": 53089, + "Directional": false + } + ] + }, + { + "ID": 1303, + "SourceStructureID": 9769, + "TargetStructureID": 606, + "Label": "9769-606 via Gap Junction from 12396 -> 12348, 12399 -> 12323, 44269 -> 44268, 45318 -> 45316, 48503 -> 48504, 49118 -> 49119, 49183 -> 49182, 50695 -> 50694, 50919 -> 50971, 51312 -> 51313, 51330 -> 51329, 51425 -> 51426, 51474 -> 51473, 51487 -> 51488, 51489 -> 51490, 51588 -> 51589, 51595 -> 51594, 51596 -> 51597, 51788 -> 51789, 51792 -> 89637, 51863 -> 51864, 52393 -> 52394, 52759 -> 49023, 52886 -> 56077, 53004 -> 49179, 53051 -> 53050, 53073 -> 53074, 53511 -> 53510, 53533 -> 53530, 53932 -> 53933, 54489 -> 54490", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 12396, + "TargetID": 12348, + "Directional": false + }, + { + "SourceID": 12399, + "TargetID": 12323, + "Directional": false + }, + { + "SourceID": 44269, + "TargetID": 44268, + "Directional": false + }, + { + "SourceID": 45318, + "TargetID": 45316, + "Directional": false + }, + { + "SourceID": 48503, + "TargetID": 48504, + "Directional": false + }, + { + "SourceID": 49118, + "TargetID": 49119, + "Directional": false + }, + { + "SourceID": 49183, + "TargetID": 49182, + "Directional": false + }, + { + "SourceID": 50695, + "TargetID": 50694, + "Directional": false + }, + { + "SourceID": 50919, + "TargetID": 50971, + "Directional": false + }, + { + "SourceID": 51312, + "TargetID": 51313, + "Directional": false + }, + { + "SourceID": 51330, + "TargetID": 51329, + "Directional": false + }, + { + "SourceID": 51425, + "TargetID": 51426, + "Directional": false + }, + { + "SourceID": 51474, + "TargetID": 51473, + "Directional": false + }, + { + "SourceID": 51487, + "TargetID": 51488, + "Directional": false + }, + { + "SourceID": 51489, + "TargetID": 51490, + "Directional": false + }, + { + "SourceID": 51588, + "TargetID": 51589, + "Directional": false + }, + { + "SourceID": 51595, + "TargetID": 51594, + "Directional": false + }, + { + "SourceID": 51596, + "TargetID": 51597, + "Directional": false + }, + { + "SourceID": 51788, + "TargetID": 51789, + "Directional": false + }, + { + "SourceID": 51792, + "TargetID": 89637, + "Directional": false + }, + { + "SourceID": 51863, + "TargetID": 51864, + "Directional": false + }, + { + "SourceID": 52393, + "TargetID": 52394, + "Directional": false + }, + { + "SourceID": 52759, + "TargetID": 49023, + "Directional": false + }, + { + "SourceID": 52886, + "TargetID": 56077, + "Directional": false + }, + { + "SourceID": 53004, + "TargetID": 49179, + "Directional": false + }, + { + "SourceID": 53051, + "TargetID": 53050, + "Directional": false + }, + { + "SourceID": 53073, + "TargetID": 53074, + "Directional": false + }, + { + "SourceID": 53511, + "TargetID": 53510, + "Directional": false + }, + { + "SourceID": 53533, + "TargetID": 53530, + "Directional": false + }, + { + "SourceID": 53932, + "TargetID": 53933, + "Directional": false + }, + { + "SourceID": 54489, + "TargetID": 54490, + "Directional": false + } + ] + }, + { + "ID": 1304, + "SourceStructureID": 10559, + "TargetStructureID": 606, + "Label": "10559-606 via Adherens from 54370 -> 54371", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54370, + "TargetID": 54371, + "Directional": false + } + ] + }, + { + "ID": 1305, + "SourceStructureID": 10559, + "TargetStructureID": 606, + "Label": "10559-606 via Gap Junction from 44315 -> 44313, 54278 -> 54281, 54383 -> 54384", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 44315, + "TargetID": 44313, + "Directional": false + }, + { + "SourceID": 54278, + "TargetID": 54281, + "Directional": false + }, + { + "SourceID": 54383, + "TargetID": 54384, + "Directional": false + } + ] + }, + { + "ID": 1306, + "SourceStructureID": 606, + "TargetStructureID": 12408, + "Label": "606-12408 via Adherens from 52813 -> 52814, 52816 -> 52815", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 52813, + "TargetID": 52814, + "Directional": false + }, + { + "SourceID": 52816, + "TargetID": 52815, + "Directional": false + } + ] + }, + { + "ID": 1307, + "SourceStructureID": 606, + "TargetStructureID": 12564, + "Label": "606-12564 via Gap Junction from 49606 -> 88665, 50892 -> 53254, 53247 -> 53213", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49606, + "TargetID": 88665, + "Directional": false + }, + { + "SourceID": 50892, + "TargetID": 53254, + "Directional": false + }, + { + "SourceID": 53247, + "TargetID": 53213, + "Directional": false + } + ] + }, + { + "ID": 1308, + "SourceStructureID": 22974, + "TargetStructureID": 606, + "Label": "22974-606 via Adherens from 51478 -> 51477", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 51478, + "TargetID": 51477, + "Directional": false + } + ] + }, + { + "ID": 1309, + "SourceStructureID": 30130, + "TargetStructureID": 606, + "Label": "30130-606 via Adherens from 52209 -> 52208", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 52209, + "TargetID": 52208, + "Directional": false + } + ] + }, + { + "ID": 1310, + "SourceStructureID": 606, + "TargetStructureID": 34302, + "Label": "606-34302 via Adherens from 52607 -> 52608", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 52607, + "TargetID": 52608, + "Directional": false + } + ] + }, + { + "ID": 1311, + "SourceStructureID": 34315, + "TargetStructureID": 606, + "Label": "34315-606 via Adherens from 52381 -> 52380", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 52381, + "TargetID": 52380, + "Directional": false + } + ] + }, + { + "ID": 1312, + "SourceStructureID": 38632, + "TargetStructureID": 606, + "Label": "38632-606 via Adherens from 52620 -> 52619, 53119 -> 53118, 90534 -> 90533", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 52620, + "TargetID": 52619, + "Directional": false + }, + { + "SourceID": 53119, + "TargetID": 53118, + "Directional": false + }, + { + "SourceID": 90534, + "TargetID": 90533, + "Directional": false + } + ] + }, + { + "ID": 1313, + "SourceStructureID": 606, + "TargetStructureID": 38632, + "Label": "606-38632 via Gap Junction from 53112 -> 53111", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53112, + "TargetID": 53111, + "Directional": false + } + ] + }, + { + "ID": 1314, + "SourceStructureID": 606, + "TargetStructureID": 39900, + "Label": "606-39900 via Adherens from 54144 -> 54145", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54144, + "TargetID": 54145, + "Directional": false + } + ] + }, + { + "ID": 1315, + "SourceStructureID": 606, + "TargetStructureID": 40051, + "Label": "606-40051 via Adherens from 128560 -> 128561", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128560, + "TargetID": 128561, + "Directional": false + } + ] + }, + { + "ID": 1316, + "SourceStructureID": 40057, + "TargetStructureID": 606, + "Label": "40057-606 via Adherens from 45485 -> 45484", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 45485, + "TargetID": 45484, + "Directional": false + } + ] + }, + { + "ID": 1317, + "SourceStructureID": 44222, + "TargetStructureID": 606, + "Label": "44222-606 via Adherens from 44226 -> 45016, 53921 -> 53922", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 44226, + "TargetID": 45016, + "Directional": false + }, + { + "SourceID": 53921, + "TargetID": 53922, + "Directional": false + } + ] + }, + { + "ID": 1318, + "SourceStructureID": 44222, + "TargetStructureID": 606, + "Label": "44222-606 via Gap Junction from 44218 -> 44216, 44223 -> 44221, 44225 -> 44224", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 44218, + "TargetID": 44216, + "Directional": false + }, + { + "SourceID": 44223, + "TargetID": 44221, + "Directional": false + }, + { + "SourceID": 44225, + "TargetID": 44224, + "Directional": false + } + ] + }, + { + "ID": 1319, + "SourceStructureID": 606, + "TargetStructureID": 44329, + "Label": "606-44329 via Adherens from 44327 -> 44331", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 44327, + "TargetID": 44331, + "Directional": false + } + ] + }, + { + "ID": 1320, + "SourceStructureID": 44329, + "TargetStructureID": 606, + "Label": "44329-606 via Gap Junction from 44330 -> 44328", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 44330, + "TargetID": 44328, + "Directional": false + } + ] + }, + { + "ID": 1321, + "SourceStructureID": 44970, + "TargetStructureID": 606, + "Label": "44970-606 via Gap Junction from 51174 -> 51175", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51174, + "TargetID": 51175, + "Directional": false + } + ] + }, + { + "ID": 1322, + "SourceStructureID": 606, + "TargetStructureID": 45220, + "Label": "606-45220 via Gap Junction from 49624 -> 54058, 52405 -> 52406, 54046 -> 54045, 55181 -> 54037", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49624, + "TargetID": 54058, + "Directional": false + }, + { + "SourceID": 52405, + "TargetID": 52406, + "Directional": false + }, + { + "SourceID": 54046, + "TargetID": 54045, + "Directional": false + }, + { + "SourceID": 55181, + "TargetID": 54037, + "Directional": false + } + ] + }, + { + "ID": 1323, + "SourceStructureID": 45406, + "TargetStructureID": 606, + "Label": "45406-606 via Gap Junction from 45407 -> 10516", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45407, + "TargetID": 10516, + "Directional": false + } + ] + }, + { + "ID": 1324, + "SourceStructureID": 46105, + "TargetStructureID": 606, + "Label": "46105-606 via Adherens from 46244 -> 46243", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 46244, + "TargetID": 46243, + "Directional": false + } + ] + }, + { + "ID": 1325, + "SourceStructureID": 606, + "TargetStructureID": 46589, + "Label": "606-46589 via Gap Junction from 46586 -> 56003, 46591 -> 46584", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46586, + "TargetID": 56003, + "Directional": false + }, + { + "SourceID": 46591, + "TargetID": 46584, + "Directional": false + } + ] + }, + { + "ID": 1326, + "SourceStructureID": 47013, + "TargetStructureID": 606, + "Label": "47013-606 via Gap Junction from 88245 -> 47583", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88245, + "TargetID": 47583, + "Directional": false + } + ] + }, + { + "ID": 1327, + "SourceStructureID": 606, + "TargetStructureID": 47445, + "Label": "606-47445 via Adherens from 47452 -> 47453", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 47452, + "TargetID": 47453, + "Directional": false + } + ] + }, + { + "ID": 1328, + "SourceStructureID": 606, + "TargetStructureID": 51923, + "Label": "606-51923 via Adherens from 51928 -> 51929", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 51928, + "TargetID": 51929, + "Directional": false + } + ] + }, + { + "ID": 1329, + "SourceStructureID": 606, + "TargetStructureID": 51923, + "Label": "606-51923 via Gap Junction from 48296 -> 51924, 51932 -> 51931", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48296, + "TargetID": 51924, + "Directional": false + }, + { + "SourceID": 51932, + "TargetID": 51931, + "Directional": false + } + ] + }, + { + "ID": 1330, + "SourceStructureID": 606, + "TargetStructureID": 53115, + "Label": "606-53115 via Gap Junction from 53114 -> 53139, 53145 -> 53146, 90523 -> 53165", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53114, + "TargetID": 53139, + "Directional": false + }, + { + "SourceID": 53145, + "TargetID": 53146, + "Directional": false + }, + { + "SourceID": 90523, + "TargetID": 53165, + "Directional": false + } + ] + }, + { + "ID": 1331, + "SourceStructureID": 606, + "TargetStructureID": 55098, + "Label": "606-55098 via Gap Junction from 50907 -> 55099", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50907, + "TargetID": 55099, + "Directional": false + } + ] + }, + { + "ID": 1332, + "SourceStructureID": 606, + "TargetStructureID": 55232, + "Label": "606-55232 via Adherens from 47224 -> 55240, 55246 -> 55247", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 47224, + "TargetID": 55240, + "Directional": false + }, + { + "SourceID": 55246, + "TargetID": 55247, + "Directional": false + } + ] + }, + { + "ID": 1333, + "SourceStructureID": 606, + "TargetStructureID": 55232, + "Label": "606-55232 via Gap Junction from 47213 -> 55233, 47219 -> 55236, 55251 -> 47234", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47213, + "TargetID": 55233, + "Directional": false + }, + { + "SourceID": 47219, + "TargetID": 55236, + "Directional": false + }, + { + "SourceID": 55251, + "TargetID": 47234, + "Directional": false + } + ] + }, + { + "ID": 1334, + "SourceStructureID": 606, + "TargetStructureID": 55403, + "Label": "606-55403 via Adherens from 53268 -> 55409, 53276 -> 55408", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 53268, + "TargetID": 55409, + "Directional": false + }, + { + "SourceID": 53276, + "TargetID": 55408, + "Directional": false + } + ] + }, + { + "ID": 1335, + "SourceStructureID": 606, + "TargetStructureID": 55403, + "Label": "606-55403 via Gap Junction from 53273 -> 55404", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53273, + "TargetID": 55404, + "Directional": false + } + ] + }, + { + "ID": 1336, + "SourceStructureID": 606, + "TargetStructureID": 55517, + "Label": "606-55517 via Gap Junction from 53312 -> 55521, 55518 -> 53308", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53312, + "TargetID": 55521, + "Directional": false + }, + { + "SourceID": 55518, + "TargetID": 53308, + "Directional": false + } + ] + }, + { + "ID": 1337, + "SourceStructureID": 55610, + "TargetStructureID": 606, + "Label": "55610-606 via Gap Junction from 55614 -> 49676, 55615 -> 49675, 55616 -> 54164, 55867 -> 54170", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55614, + "TargetID": 49676, + "Directional": false + }, + { + "SourceID": 55615, + "TargetID": 49675, + "Directional": false + }, + { + "SourceID": 55616, + "TargetID": 54164, + "Directional": false + }, + { + "SourceID": 55867, + "TargetID": 54170, + "Directional": false + } + ] + }, + { + "ID": 1338, + "SourceStructureID": 59471, + "TargetStructureID": 606, + "Label": "59471-606 via Gap Junction from 89095 -> 51316", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89095, + "TargetID": 51316, + "Directional": false + } + ] + }, + { + "ID": 1339, + "SourceStructureID": 59482, + "TargetStructureID": 606, + "Label": "59482-606 via Gap Junction from 59485 -> 51385, 89116 -> 51380, 89117 -> 51381", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59485, + "TargetID": 51385, + "Directional": false + }, + { + "SourceID": 89116, + "TargetID": 51380, + "Directional": false + }, + { + "SourceID": 89117, + "TargetID": 51381, + "Directional": false + } + ] + }, + { + "ID": 1340, + "SourceStructureID": 59499, + "TargetStructureID": 606, + "Label": "59499-606 via Gap Junction from 59500 -> 53306, 90557 -> 53286", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59500, + "TargetID": 53306, + "Directional": false + }, + { + "SourceID": 90557, + "TargetID": 53286, + "Directional": false + } + ] + }, + { + "ID": 1341, + "SourceStructureID": 606, + "TargetStructureID": 65358, + "Label": "606-65358 via Adherens from 47477 -> 65361", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 47477, + "TargetID": 65361, + "Directional": false + } + ] + }, + { + "ID": 1342, + "SourceStructureID": 606, + "TargetStructureID": 66665, + "Label": "606-66665 via Adherens from 53383 -> 66666", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 53383, + "TargetID": 66666, + "Directional": false + } + ] + }, + { + "ID": 1343, + "SourceStructureID": 606, + "TargetStructureID": 70454, + "Label": "606-70454 via Gap Junction from 51539 -> 89552", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51539, + "TargetID": 89552, + "Directional": false + } + ] + }, + { + "ID": 1344, + "SourceStructureID": 78909, + "TargetStructureID": 606, + "Label": "78909-606 via Gap Junction from 87508 -> 47478", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87508, + "TargetID": 47478, + "Directional": false + } + ] + }, + { + "ID": 1345, + "SourceStructureID": 80182, + "TargetStructureID": 606, + "Label": "80182-606 via Gap Junction from 88940 -> 50900", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88940, + "TargetID": 50900, + "Directional": false + } + ] + }, + { + "ID": 1346, + "SourceStructureID": 80600, + "TargetStructureID": 606, + "Label": "80600-606 via Gap Junction from 89061 -> 51721", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89061, + "TargetID": 51721, + "Directional": false + } + ] + }, + { + "ID": 1347, + "SourceStructureID": 82887, + "TargetStructureID": 606, + "Label": "82887-606 via Gap Junction from 87133 -> 45165", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87133, + "TargetID": 45165, + "Directional": false + } + ] + }, + { + "ID": 1348, + "SourceStructureID": 87130, + "TargetStructureID": 606, + "Label": "87130-606 via Gap Junction from 87131 -> 10698", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87131, + "TargetID": 10698, + "Directional": false + } + ] + }, + { + "ID": 1349, + "SourceStructureID": 87141, + "TargetStructureID": 606, + "Label": "87141-606 via Gap Junction from 87142 -> 45500", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87142, + "TargetID": 45500, + "Directional": false + } + ] + }, + { + "ID": 1350, + "SourceStructureID": 606, + "TargetStructureID": 87143, + "Label": "606-87143 via Gap Junction from 45546 -> 87144", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45546, + "TargetID": 87144, + "Directional": false + } + ] + }, + { + "ID": 1351, + "SourceStructureID": 87145, + "TargetStructureID": 606, + "Label": "87145-606 via Gap Junction from 87146 -> 45592", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87146, + "TargetID": 45592, + "Directional": false + } + ] + }, + { + "ID": 1352, + "SourceStructureID": 606, + "TargetStructureID": 87162, + "Label": "606-87162 via Gap Junction from 45692 -> 87163", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45692, + "TargetID": 87163, + "Directional": false + } + ] + }, + { + "ID": 1353, + "SourceStructureID": 87172, + "TargetStructureID": 606, + "Label": "87172-606 via Gap Junction from 87175 -> 45745", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87175, + "TargetID": 45745, + "Directional": false + } + ] + }, + { + "ID": 1354, + "SourceStructureID": 87176, + "TargetStructureID": 606, + "Label": "87176-606 via Gap Junction from 87177 -> 45746", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87177, + "TargetID": 45746, + "Directional": false + } + ] + }, + { + "ID": 1355, + "SourceStructureID": 606, + "TargetStructureID": 87178, + "Label": "606-87178 via Gap Junction from 46028 -> 87181, 87180 -> 46027, 87182 -> 46601", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46028, + "TargetID": 87181, + "Directional": false + }, + { + "SourceID": 87180, + "TargetID": 46027, + "Directional": false + }, + { + "SourceID": 87182, + "TargetID": 46601, + "Directional": false + } + ] + }, + { + "ID": 1356, + "SourceStructureID": 87183, + "TargetStructureID": 606, + "Label": "87183-606 via Gap Junction from 87184 -> 46406", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87184, + "TargetID": 46406, + "Directional": false + } + ] + }, + { + "ID": 1357, + "SourceStructureID": 87224, + "TargetStructureID": 606, + "Label": "87224-606 via Gap Junction from 87225 -> 46470, 87241 -> 46587", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87225, + "TargetID": 46470, + "Directional": false + }, + { + "SourceID": 87241, + "TargetID": 46587, + "Directional": false + } + ] + }, + { + "ID": 1358, + "SourceStructureID": 606, + "TargetStructureID": 87231, + "Label": "606-87231 via Gap Junction from 46485 -> 87232", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46485, + "TargetID": 87232, + "Directional": false + } + ] + }, + { + "ID": 1359, + "SourceStructureID": 87247, + "TargetStructureID": 606, + "Label": "87247-606 via Gap Junction from 87248 -> 46614", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87248, + "TargetID": 46614, + "Directional": false + } + ] + }, + { + "ID": 1360, + "SourceStructureID": 606, + "TargetStructureID": 87249, + "Label": "606-87249 via Adherens from 87257 -> 87256", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87257, + "TargetID": 87256, + "Directional": false + } + ] + }, + { + "ID": 1361, + "SourceStructureID": 87249, + "TargetStructureID": 606, + "Label": "87249-606 via Gap Junction from 87250 -> 46635", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87250, + "TargetID": 46635, + "Directional": false + } + ] + }, + { + "ID": 1362, + "SourceStructureID": 87268, + "TargetStructureID": 606, + "Label": "87268-606 via Gap Junction from 87269 -> 47249", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87269, + "TargetID": 47249, + "Directional": false + } + ] + }, + { + "ID": 1363, + "SourceStructureID": 87277, + "TargetStructureID": 606, + "Label": "87277-606 via Gap Junction from 87278 -> 47300", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87278, + "TargetID": 47300, + "Directional": false + } + ] + }, + { + "ID": 1364, + "SourceStructureID": 87294, + "TargetStructureID": 606, + "Label": "87294-606 via Gap Junction from 87295 -> 47306", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87295, + "TargetID": 47306, + "Directional": false + } + ] + }, + { + "ID": 1365, + "SourceStructureID": 87342, + "TargetStructureID": 606, + "Label": "87342-606 via Gap Junction from 87343 -> 47372", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87343, + "TargetID": 47372, + "Directional": false + } + ] + }, + { + "ID": 1366, + "SourceStructureID": 87408, + "TargetStructureID": 606, + "Label": "87408-606 via Adherens from 87410 -> 87411", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87410, + "TargetID": 87411, + "Directional": false + } + ] + }, + { + "ID": 1367, + "SourceStructureID": 87408, + "TargetStructureID": 606, + "Label": "87408-606 via Gap Junction from 87409 -> 47429", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87409, + "TargetID": 47429, + "Directional": false + } + ] + }, + { + "ID": 1368, + "SourceStructureID": 606, + "TargetStructureID": 87413, + "Label": "606-87413 via Gap Junction from 47454 -> 87416", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47454, + "TargetID": 87416, + "Directional": false + } + ] + }, + { + "ID": 1369, + "SourceStructureID": 606, + "TargetStructureID": 87432, + "Label": "606-87432 via Gap Junction from 47462 -> 87434", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47462, + "TargetID": 87434, + "Directional": false + } + ] + }, + { + "ID": 1370, + "SourceStructureID": 87487, + "TargetStructureID": 606, + "Label": "87487-606 via Gap Junction from 87489 -> 47469", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87489, + "TargetID": 47469, + "Directional": false + } + ] + }, + { + "ID": 1371, + "SourceStructureID": 88246, + "TargetStructureID": 606, + "Label": "88246-606 via Adherens from 88249 -> 47877", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88249, + "TargetID": 47877, + "Directional": false + } + ] + }, + { + "ID": 1372, + "SourceStructureID": 88246, + "TargetStructureID": 606, + "Label": "88246-606 via Gap Junction from 88248 -> 47625", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88248, + "TargetID": 47625, + "Directional": false + } + ] + }, + { + "ID": 1373, + "SourceStructureID": 88260, + "TargetStructureID": 606, + "Label": "88260-606 via Gap Junction from 88264 -> 47749", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88264, + "TargetID": 47749, + "Directional": false + } + ] + }, + { + "ID": 1374, + "SourceStructureID": 88327, + "TargetStructureID": 606, + "Label": "88327-606 via Gap Junction from 88328 -> 47995", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88328, + "TargetID": 47995, + "Directional": false + } + ] + }, + { + "ID": 1375, + "SourceStructureID": 88344, + "TargetStructureID": 606, + "Label": "88344-606 via Adherens from 88347 -> 88348", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88347, + "TargetID": 88348, + "Directional": false + } + ] + }, + { + "ID": 1376, + "SourceStructureID": 88344, + "TargetStructureID": 606, + "Label": "88344-606 via Gap Junction from 88350 -> 48314", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88350, + "TargetID": 48314, + "Directional": false + } + ] + }, + { + "ID": 1377, + "SourceStructureID": 88354, + "TargetStructureID": 606, + "Label": "88354-606 via Gap Junction from 88355 -> 48322", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88355, + "TargetID": 48322, + "Directional": false + } + ] + }, + { + "ID": 1378, + "SourceStructureID": 606, + "TargetStructureID": 88365, + "Label": "606-88365 via Gap Junction from 51981 -> 88385, 88381 -> 48323, 88388 -> 51993", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51981, + "TargetID": 88385, + "Directional": false + }, + { + "SourceID": 88381, + "TargetID": 48323, + "Directional": false + }, + { + "SourceID": 88388, + "TargetID": 51993, + "Directional": false + } + ] + }, + { + "ID": 1379, + "SourceStructureID": 88395, + "TargetStructureID": 606, + "Label": "88395-606 via Gap Junction from 88422 -> 48324", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88422, + "TargetID": 48324, + "Directional": false + } + ] + }, + { + "ID": 1380, + "SourceStructureID": 88459, + "TargetStructureID": 606, + "Label": "88459-606 via Gap Junction from 88460 -> 48330", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88460, + "TargetID": 48330, + "Directional": false + } + ] + }, + { + "ID": 1381, + "SourceStructureID": 88565, + "TargetStructureID": 606, + "Label": "88565-606 via Gap Junction from 88567 -> 48508", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88567, + "TargetID": 48508, + "Directional": false + } + ] + }, + { + "ID": 1382, + "SourceStructureID": 88594, + "TargetStructureID": 606, + "Label": "88594-606 via Gap Junction from 88595 -> 48797", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88595, + "TargetID": 48797, + "Directional": false + } + ] + }, + { + "ID": 1383, + "SourceStructureID": 88621, + "TargetStructureID": 606, + "Label": "88621-606 via Adherens from 88622 -> 88620", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88622, + "TargetID": 88620, + "Directional": false + } + ] + }, + { + "ID": 1384, + "SourceStructureID": 88621, + "TargetStructureID": 606, + "Label": "88621-606 via Gap Junction from 88623 -> 48955", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88623, + "TargetID": 48955, + "Directional": false + } + ] + }, + { + "ID": 1385, + "SourceStructureID": 88628, + "TargetStructureID": 606, + "Label": "88628-606 via Gap Junction from 88629 -> 49024", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88629, + "TargetID": 49024, + "Directional": false + } + ] + }, + { + "ID": 1386, + "SourceStructureID": 606, + "TargetStructureID": 88630, + "Label": "606-88630 via Adherens from 88633 -> 88632", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88633, + "TargetID": 88632, + "Directional": false + } + ] + }, + { + "ID": 1387, + "SourceStructureID": 88630, + "TargetStructureID": 606, + "Label": "88630-606 via Gap Junction from 88631 -> 49026", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88631, + "TargetID": 49026, + "Directional": false + } + ] + }, + { + "ID": 1388, + "SourceStructureID": 88642, + "TargetStructureID": 606, + "Label": "88642-606 via Gap Junction from 88643 -> 49556", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88643, + "TargetID": 49556, + "Directional": false + } + ] + }, + { + "ID": 1389, + "SourceStructureID": 88646, + "TargetStructureID": 606, + "Label": "88646-606 via Adherens from 88649 -> 53851, 88652 -> 53862, 88653 -> 53863", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88649, + "TargetID": 53851, + "Directional": false + }, + { + "SourceID": 88652, + "TargetID": 53862, + "Directional": false + }, + { + "SourceID": 88653, + "TargetID": 53863, + "Directional": false + } + ] + }, + { + "ID": 1390, + "SourceStructureID": 88646, + "TargetStructureID": 606, + "Label": "88646-606 via Gap Junction from 88647 -> 53850, 88648 -> 49592", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88647, + "TargetID": 53850, + "Directional": false + }, + { + "SourceID": 88648, + "TargetID": 49592, + "Directional": false + } + ] + }, + { + "ID": 1391, + "SourceStructureID": 88661, + "TargetStructureID": 606, + "Label": "88661-606 via Adherens from 88663 -> 49593", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88663, + "TargetID": 49593, + "Directional": false + } + ] + }, + { + "ID": 1392, + "SourceStructureID": 88661, + "TargetStructureID": 606, + "Label": "88661-606 via Gap Junction from 88662 -> 49594", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88662, + "TargetID": 49594, + "Directional": false + } + ] + }, + { + "ID": 1393, + "SourceStructureID": 606, + "TargetStructureID": 88666, + "Label": "606-88666 via Gap Junction from 49609 -> 88667", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49609, + "TargetID": 88667, + "Directional": false + } + ] + }, + { + "ID": 1394, + "SourceStructureID": 88730, + "TargetStructureID": 606, + "Label": "88730-606 via Gap Junction from 88732 -> 49622", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88732, + "TargetID": 49622, + "Directional": false + } + ] + }, + { + "ID": 1395, + "SourceStructureID": 606, + "TargetStructureID": 88737, + "Label": "606-88737 via Gap Junction from 54159 -> 88750, 88738 -> 49625, 88744 -> 54158", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54159, + "TargetID": 88750, + "Directional": false + }, + { + "SourceID": 88738, + "TargetID": 49625, + "Directional": false + }, + { + "SourceID": 88744, + "TargetID": 54158, + "Directional": false + } + ] + }, + { + "ID": 1396, + "SourceStructureID": 606, + "TargetStructureID": 88762, + "Label": "606-88762 via Adherens from 54216 -> 88768", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54216, + "TargetID": 88768, + "Directional": false + } + ] + }, + { + "ID": 1397, + "SourceStructureID": 88762, + "TargetStructureID": 606, + "Label": "88762-606 via Gap Junction from 88765 -> 49684, 88807 -> 54217", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88765, + "TargetID": 49684, + "Directional": false + }, + { + "SourceID": 88807, + "TargetID": 54217, + "Directional": false + } + ] + }, + { + "ID": 1398, + "SourceStructureID": 88808, + "TargetStructureID": 606, + "Label": "88808-606 via Gap Junction from 88809 -> 49794", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88809, + "TargetID": 49794, + "Directional": false + } + ] + }, + { + "ID": 1399, + "SourceStructureID": 88941, + "TargetStructureID": 606, + "Label": "88941-606 via Adherens from 88943 -> 53540", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88943, + "TargetID": 53540, + "Directional": false + } + ] + }, + { + "ID": 1400, + "SourceStructureID": 88941, + "TargetStructureID": 606, + "Label": "88941-606 via Gap Junction from 88942 -> 50904", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88942, + "TargetID": 50904, + "Directional": false + } + ] + }, + { + "ID": 1401, + "SourceStructureID": 88981, + "TargetStructureID": 606, + "Label": "88981-606 via Gap Junction from 88983 -> 51018", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88983, + "TargetID": 51018, + "Directional": false + } + ] + }, + { + "ID": 1402, + "SourceStructureID": 88984, + "TargetStructureID": 606, + "Label": "88984-606 via Gap Junction from 88990 -> 51074", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88990, + "TargetID": 51074, + "Directional": false + } + ] + }, + { + "ID": 1403, + "SourceStructureID": 606, + "TargetStructureID": 89039, + "Label": "606-89039 via Gap Junction from 51189 -> 89040", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51189, + "TargetID": 89040, + "Directional": false + } + ] + }, + { + "ID": 1404, + "SourceStructureID": 89071, + "TargetStructureID": 606, + "Label": "89071-606 via Gap Junction from 89074 -> 51225", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89074, + "TargetID": 51225, + "Directional": false + } + ] + }, + { + "ID": 1405, + "SourceStructureID": 89093, + "TargetStructureID": 606, + "Label": "89093-606 via Gap Junction from 89094 -> 51243", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89094, + "TargetID": 51243, + "Directional": false + } + ] + }, + { + "ID": 1406, + "SourceStructureID": 89107, + "TargetStructureID": 606, + "Label": "89107-606 via Gap Junction from 89108 -> 51354", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89108, + "TargetID": 51354, + "Directional": false + } + ] + }, + { + "ID": 1407, + "SourceStructureID": 89113, + "TargetStructureID": 606, + "Label": "89113-606 via Gap Junction from 89114 -> 51344", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89114, + "TargetID": 51344, + "Directional": false + } + ] + }, + { + "ID": 1408, + "SourceStructureID": 89124, + "TargetStructureID": 606, + "Label": "89124-606 via Gap Junction from 89125 -> 51494, 89542 -> 51497", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89125, + "TargetID": 51494, + "Directional": false + }, + { + "SourceID": 89542, + "TargetID": 51497, + "Directional": false + } + ] + }, + { + "ID": 1409, + "SourceStructureID": 89543, + "TargetStructureID": 606, + "Label": "89543-606 via Gap Junction from 89551 -> 51515", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89551, + "TargetID": 51515, + "Directional": false + } + ] + }, + { + "ID": 1410, + "SourceStructureID": 606, + "TargetStructureID": 89567, + "Label": "606-89567 via Gap Junction from 51586 -> 89568", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51586, + "TargetID": 89568, + "Directional": false + } + ] + }, + { + "ID": 1411, + "SourceStructureID": 89569, + "TargetStructureID": 606, + "Label": "89569-606 via Gap Junction from 89570 -> 51601", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89570, + "TargetID": 51601, + "Directional": false + } + ] + }, + { + "ID": 1412, + "SourceStructureID": 89571, + "TargetStructureID": 606, + "Label": "89571-606 via Gap Junction from 89576 -> 51620", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89576, + "TargetID": 51620, + "Directional": false + } + ] + }, + { + "ID": 1413, + "SourceStructureID": 89577, + "TargetStructureID": 606, + "Label": "89577-606 via Gap Junction from 89578 -> 51638", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89578, + "TargetID": 51638, + "Directional": false + } + ] + }, + { + "ID": 1414, + "SourceStructureID": 89582, + "TargetStructureID": 606, + "Label": "89582-606 via Adherens from 89584 -> 89585", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89584, + "TargetID": 89585, + "Directional": false + } + ] + }, + { + "ID": 1415, + "SourceStructureID": 89582, + "TargetStructureID": 606, + "Label": "89582-606 via Gap Junction from 89583 -> 51664", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89583, + "TargetID": 51664, + "Directional": false + } + ] + }, + { + "ID": 1416, + "SourceStructureID": 606, + "TargetStructureID": 89586, + "Label": "606-89586 via Gap Junction from 51698 -> 89588", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51698, + "TargetID": 89588, + "Directional": false + } + ] + }, + { + "ID": 1417, + "SourceStructureID": 89638, + "TargetStructureID": 606, + "Label": "89638-606 via Gap Junction from 89639 -> 51798", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89639, + "TargetID": 51798, + "Directional": false + } + ] + }, + { + "ID": 1418, + "SourceStructureID": 89677, + "TargetStructureID": 606, + "Label": "89677-606 via Adherens from 89683 -> 51971", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89683, + "TargetID": 51971, + "Directional": false + } + ] + }, + { + "ID": 1419, + "SourceStructureID": 89677, + "TargetStructureID": 606, + "Label": "89677-606 via Gap Junction from 89680 -> 51962, 89681 -> 51969", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89680, + "TargetID": 51962, + "Directional": false + }, + { + "SourceID": 89681, + "TargetID": 51969, + "Directional": false + } + ] + }, + { + "ID": 1420, + "SourceStructureID": 89775, + "TargetStructureID": 606, + "Label": "89775-606 via Adherens from 89777 -> 89778", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89777, + "TargetID": 89778, + "Directional": false + } + ] + }, + { + "ID": 1421, + "SourceStructureID": 89775, + "TargetStructureID": 606, + "Label": "89775-606 via Gap Junction from 89776 -> 51973", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89776, + "TargetID": 51973, + "Directional": false + } + ] + }, + { + "ID": 1422, + "SourceStructureID": 89811, + "TargetStructureID": 606, + "Label": "89811-606 via Gap Junction from 89812 -> 52338", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89812, + "TargetID": 52338, + "Directional": false + } + ] + }, + { + "ID": 1423, + "SourceStructureID": 89820, + "TargetStructureID": 606, + "Label": "89820-606 via Gap Junction from 89821 -> 52345", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89821, + "TargetID": 52345, + "Directional": false + } + ] + }, + { + "ID": 1424, + "SourceStructureID": 89827, + "TargetStructureID": 606, + "Label": "89827-606 via Gap Junction from 89828 -> 52372", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89828, + "TargetID": 52372, + "Directional": false + } + ] + }, + { + "ID": 1425, + "SourceStructureID": 89831, + "TargetStructureID": 606, + "Label": "89831-606 via Gap Junction from 89844 -> 52574", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89844, + "TargetID": 52574, + "Directional": false + } + ] + }, + { + "ID": 1426, + "SourceStructureID": 89845, + "TargetStructureID": 606, + "Label": "89845-606 via Gap Junction from 89847 -> 52610", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89847, + "TargetID": 52610, + "Directional": false + } + ] + }, + { + "ID": 1427, + "SourceStructureID": 89848, + "TargetStructureID": 606, + "Label": "89848-606 via Gap Junction from 89849 -> 52617", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89849, + "TargetID": 52617, + "Directional": false + } + ] + }, + { + "ID": 1428, + "SourceStructureID": 89851, + "TargetStructureID": 606, + "Label": "89851-606 via Gap Junction from 89852 -> 52671", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89852, + "TargetID": 52671, + "Directional": false + } + ] + }, + { + "ID": 1429, + "SourceStructureID": 89989, + "TargetStructureID": 606, + "Label": "89989-606 via Gap Junction from 89990 -> 52720", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89990, + "TargetID": 52720, + "Directional": false + } + ] + }, + { + "ID": 1430, + "SourceStructureID": 90111, + "TargetStructureID": 606, + "Label": "90111-606 via Gap Junction from 90116 -> 52819", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90116, + "TargetID": 52819, + "Directional": false + } + ] + }, + { + "ID": 1431, + "SourceStructureID": 90118, + "TargetStructureID": 606, + "Label": "90118-606 via Gap Junction from 90128 -> 52844", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90128, + "TargetID": 52844, + "Directional": false + } + ] + }, + { + "ID": 1432, + "SourceStructureID": 90151, + "TargetStructureID": 606, + "Label": "90151-606 via Adherens from 90153 -> 52916", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90153, + "TargetID": 52916, + "Directional": false + } + ] + }, + { + "ID": 1433, + "SourceStructureID": 90151, + "TargetStructureID": 606, + "Label": "90151-606 via Gap Junction from 90152 -> 52954", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90152, + "TargetID": 52954, + "Directional": false + } + ] + }, + { + "ID": 1434, + "SourceStructureID": 90466, + "TargetStructureID": 606, + "Label": "90466-606 via Gap Junction from 90467 -> 53093", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90467, + "TargetID": 53093, + "Directional": false + } + ] + }, + { + "ID": 1435, + "SourceStructureID": 90475, + "TargetStructureID": 606, + "Label": "90475-606 via Gap Junction from 90479 -> 53098", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90479, + "TargetID": 53098, + "Directional": false + } + ] + }, + { + "ID": 1436, + "SourceStructureID": 90519, + "TargetStructureID": 606, + "Label": "90519-606 via Gap Junction from 90520 -> 53099", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90520, + "TargetID": 53099, + "Directional": false + } + ] + }, + { + "ID": 1437, + "SourceStructureID": 90528, + "TargetStructureID": 606, + "Label": "90528-606 via Gap Junction from 90529 -> 53109", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90529, + "TargetID": 53109, + "Directional": false + } + ] + }, + { + "ID": 1438, + "SourceStructureID": 606, + "TargetStructureID": 90530, + "Label": "606-90530 via Adherens from 90534 -> 90532", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90534, + "TargetID": 90532, + "Directional": false + } + ] + }, + { + "ID": 1439, + "SourceStructureID": 90530, + "TargetStructureID": 606, + "Label": "90530-606 via Gap Junction from 90531 -> 53113", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90531, + "TargetID": 53113, + "Directional": false + } + ] + }, + { + "ID": 1440, + "SourceStructureID": 90535, + "TargetStructureID": 606, + "Label": "90535-606 via Gap Junction from 90536 -> 53277", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90536, + "TargetID": 53277, + "Directional": false + } + ] + }, + { + "ID": 1441, + "SourceStructureID": 91507, + "TargetStructureID": 606, + "Label": "91507-606 via Adherens from 91508 -> 51737", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91508, + "TargetID": 51737, + "Directional": false + } + ] + }, + { + "ID": 1442, + "SourceStructureID": 608, + "TargetStructureID": 7054, + "Label": "608-7054 via Touch from 43248 -> 43247", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 43248, + "TargetID": 43247, + "Directional": false + } + ] + }, + { + "ID": 1443, + "SourceStructureID": 906, + "TargetStructureID": 7568, + "Label": "906-7568 via Adherens from 27038 -> 27037", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 27038, + "TargetID": 27037, + "Directional": false + } + ] + }, + { + "ID": 1444, + "SourceStructureID": 909, + "TargetStructureID": 909, + "Label": "909-909 via Gap Junction from 131057 -> 131059", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131057, + "TargetID": 131059, + "Directional": false + } + ] + }, + { + "ID": 1445, + "SourceStructureID": 909, + "TargetStructureID": 909, + "Label": "909-909 via Touch from 117455 -> 130134", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 117455, + "TargetID": 130134, + "Directional": false + } + ] + }, + { + "ID": 1446, + "SourceStructureID": 909, + "TargetStructureID": 1637, + "Label": "909-1637 via Gap Junction from 115903 -> 129571, 129580 -> 129581, 129583 -> 129582", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115903, + "TargetID": 129571, + "Directional": false + }, + { + "SourceID": 129580, + "TargetID": 129581, + "Directional": false + }, + { + "SourceID": 129583, + "TargetID": 129582, + "Directional": false + } + ] + }, + { + "ID": 1447, + "SourceStructureID": 3679, + "TargetStructureID": 909, + "Label": "3679-909 via Touch from 135798 -> 135797", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 135798, + "TargetID": 135797, + "Directional": false + } + ] + }, + { + "ID": 1448, + "SourceStructureID": 5279, + "TargetStructureID": 909, + "Label": "5279-909 via Adherens from 115910 -> 115909", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115910, + "TargetID": 115909, + "Directional": false + } + ] + }, + { + "ID": 1449, + "SourceStructureID": 909, + "TargetStructureID": 5279, + "Label": "909-5279 via Gap Junction from 92559 -> 92558, 129578 -> 129577, 129614 -> 147694, 129971 -> 129972", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92559, + "TargetID": 92558, + "Directional": false + }, + { + "SourceID": 129578, + "TargetID": 129577, + "Directional": false + }, + { + "SourceID": 129614, + "TargetID": 147694, + "Directional": false + }, + { + "SourceID": 129971, + "TargetID": 129972, + "Directional": false + } + ] + }, + { + "ID": 1450, + "SourceStructureID": 909, + "TargetStructureID": 5282, + "Label": "909-5282 via Adherens from 117265 -> 117266, 118620 -> 131088, 130222 -> 130221, 136339 -> 118495", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117265, + "TargetID": 117266, + "Directional": false + }, + { + "SourceID": 118620, + "TargetID": 131088, + "Directional": false + }, + { + "SourceID": 130222, + "TargetID": 130221, + "Directional": false + }, + { + "SourceID": 136339, + "TargetID": 118495, + "Directional": false + } + ] + }, + { + "ID": 1451, + "SourceStructureID": 5282, + "TargetStructureID": 909, + "Label": "5282-909 via Gap Junction from 87559 -> 87558, 131086 -> 131087, 136338 -> 130894, 136349 -> 136350", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87559, + "TargetID": 87558, + "Directional": false + }, + { + "SourceID": 131086, + "TargetID": 131087, + "Directional": false + }, + { + "SourceID": 136338, + "TargetID": 130894, + "Directional": false + }, + { + "SourceID": 136349, + "TargetID": 136350, + "Directional": false + } + ] + }, + { + "ID": 1452, + "SourceStructureID": 5282, + "TargetStructureID": 909, + "Label": "5282-909 via Unknown from 124663 -> 124664, 130293 -> 117695, 131073 -> 131074", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124663, + "TargetID": 124664, + "Directional": false + }, + { + "SourceID": 130293, + "TargetID": 117695, + "Directional": false + }, + { + "SourceID": 131073, + "TargetID": 131074, + "Directional": false + } + ] + }, + { + "ID": 1453, + "SourceStructureID": 909, + "TargetStructureID": 5284, + "Label": "909-5284 via Adherens from 127891 -> 127892", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127891, + "TargetID": 127892, + "Directional": false + } + ] + }, + { + "ID": 1454, + "SourceStructureID": 909, + "TargetStructureID": 5284, + "Label": "909-5284 via Gap Junction from 53737 -> 64336, 53784 -> 53785, 64601 -> 64602, 113603 -> 113602, 113640 -> 113639, 113645 -> 113644", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53737, + "TargetID": 64336, + "Directional": false + }, + { + "SourceID": 53784, + "TargetID": 53785, + "Directional": false + }, + { + "SourceID": 64601, + "TargetID": 64602, + "Directional": false + }, + { + "SourceID": 113603, + "TargetID": 113602, + "Directional": false + }, + { + "SourceID": 113640, + "TargetID": 113639, + "Directional": false + }, + { + "SourceID": 113645, + "TargetID": 113644, + "Directional": false + } + ] + }, + { + "ID": 1455, + "SourceStructureID": 5292, + "TargetStructureID": 909, + "Label": "5292-909 via Gap Junction from 130247 -> 130248", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 130247, + "TargetID": 130248, + "Directional": false + } + ] + }, + { + "ID": 1456, + "SourceStructureID": 5297, + "TargetStructureID": 909, + "Label": "5297-909 via Adherens from 116443 -> 117847", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116443, + "TargetID": 117847, + "Directional": false + } + ] + }, + { + "ID": 1457, + "SourceStructureID": 5297, + "TargetStructureID": 909, + "Label": "5297-909 via Gap Junction from 121062 -> 121063, 130288 -> 130289", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121062, + "TargetID": 121063, + "Directional": false + }, + { + "SourceID": 130288, + "TargetID": 130289, + "Directional": false + } + ] + }, + { + "ID": 1458, + "SourceStructureID": 5405, + "TargetStructureID": 909, + "Label": "5405-909 via Unknown from 130138 -> 130137", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130138, + "TargetID": 130137, + "Directional": false + } + ] + }, + { + "ID": 1459, + "SourceStructureID": 909, + "TargetStructureID": 5515, + "Label": "909-5515 via Touch from 136325 -> 136326", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 136325, + "TargetID": 136326, + "Directional": false + } + ] + }, + { + "ID": 1460, + "SourceStructureID": 909, + "TargetStructureID": 5517, + "Label": "909-5517 via Adherens from 130968 -> 130969", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130968, + "TargetID": 130969, + "Directional": false + } + ] + }, + { + "ID": 1461, + "SourceStructureID": 5517, + "TargetStructureID": 909, + "Label": "5517-909 via Gap Junction from 49484 -> 49485, 59117 -> 59115, 130856 -> 130857", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49484, + "TargetID": 49485, + "Directional": false + }, + { + "SourceID": 59117, + "TargetID": 59115, + "Directional": false + }, + { + "SourceID": 130856, + "TargetID": 130857, + "Directional": false + } + ] + }, + { + "ID": 1462, + "SourceStructureID": 909, + "TargetStructureID": 5561, + "Label": "909-5561 via Adherens from 130082 -> 130083, 131003 -> 131004, 131075 -> 131076, 131094 -> 118629", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130082, + "TargetID": 130083, + "Directional": false + }, + { + "SourceID": 131003, + "TargetID": 131004, + "Directional": false + }, + { + "SourceID": 131075, + "TargetID": 131076, + "Directional": false + }, + { + "SourceID": 131094, + "TargetID": 118629, + "Directional": false + } + ] + }, + { + "ID": 1463, + "SourceStructureID": 909, + "TargetStructureID": 5561, + "Label": "909-5561 via Gap Junction from 53747 -> 97760, 53767 -> 117649, 96433 -> 96434, 97058 -> 97057, 97138 -> 97136, 97651 -> 97650, 97713 -> 97712, 113680 -> 113681, 119279 -> 119280, 130896 -> 130898, 130907 -> 130908, 130922 -> 130923, 131002 -> 131001, 131009 -> 131008, 131020 -> 131019, 131093 -> 131092", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53747, + "TargetID": 97760, + "Directional": false + }, + { + "SourceID": 53767, + "TargetID": 117649, + "Directional": false + }, + { + "SourceID": 96433, + "TargetID": 96434, + "Directional": false + }, + { + "SourceID": 97058, + "TargetID": 97057, + "Directional": false + }, + { + "SourceID": 97138, + "TargetID": 97136, + "Directional": false + }, + { + "SourceID": 97651, + "TargetID": 97650, + "Directional": false + }, + { + "SourceID": 97713, + "TargetID": 97712, + "Directional": false + }, + { + "SourceID": 113680, + "TargetID": 113681, + "Directional": false + }, + { + "SourceID": 119279, + "TargetID": 119280, + "Directional": false + }, + { + "SourceID": 130896, + "TargetID": 130898, + "Directional": false + }, + { + "SourceID": 130907, + "TargetID": 130908, + "Directional": false + }, + { + "SourceID": 130922, + "TargetID": 130923, + "Directional": false + }, + { + "SourceID": 131002, + "TargetID": 131001, + "Directional": false + }, + { + "SourceID": 131009, + "TargetID": 131008, + "Directional": false + }, + { + "SourceID": 131020, + "TargetID": 131019, + "Directional": false + }, + { + "SourceID": 131093, + "TargetID": 131092, + "Directional": false + } + ] + }, + { + "ID": 1464, + "SourceStructureID": 909, + "TargetStructureID": 7129, + "Label": "909-7129 via Unknown from 130297 -> 130296", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130297, + "TargetID": 130296, + "Directional": false + } + ] + }, + { + "ID": 1465, + "SourceStructureID": 909, + "TargetStructureID": 14293, + "Label": "909-14293 via Touch from 130999 -> 131000", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 130999, + "TargetID": 131000, + "Directional": false + } + ] + }, + { + "ID": 1466, + "SourceStructureID": 909, + "TargetStructureID": 16073, + "Label": "909-16073 via Unknown from 118400 -> 118401", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 118400, + "TargetID": 118401, + "Directional": false + } + ] + }, + { + "ID": 1467, + "SourceStructureID": 20136, + "TargetStructureID": 909, + "Label": "20136-909 via Adherens from 128750 -> 128751", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128750, + "TargetID": 128751, + "Directional": false + } + ] + }, + { + "ID": 1468, + "SourceStructureID": 909, + "TargetStructureID": 20136, + "Label": "909-20136 via Gap Junction from 110149 -> 110148, 115851 -> 115849, 130466 -> 130465", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 110149, + "TargetID": 110148, + "Directional": false + }, + { + "SourceID": 115851, + "TargetID": 115849, + "Directional": false + }, + { + "SourceID": 130466, + "TargetID": 130465, + "Directional": false + } + ] + }, + { + "ID": 1469, + "SourceStructureID": 909, + "TargetStructureID": 20136, + "Label": "909-20136 via Touch from 130852 -> 130851", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 130852, + "TargetID": 130851, + "Directional": false + } + ] + }, + { + "ID": 1470, + "SourceStructureID": 909, + "TargetStructureID": 32911, + "Label": "909-32911 via Unknown from 135775 -> 135774", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135775, + "TargetID": 135774, + "Directional": false + } + ] + }, + { + "ID": 1471, + "SourceStructureID": 909, + "TargetStructureID": 55347, + "Label": "909-55347 via Adherens from 129964 -> 129963", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129964, + "TargetID": 129963, + "Directional": false + } + ] + }, + { + "ID": 1472, + "SourceStructureID": 55347, + "TargetStructureID": 909, + "Label": "55347-909 via Gap Junction from 115957 -> 115955", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115957, + "TargetID": 115955, + "Directional": false + } + ] + }, + { + "ID": 1473, + "SourceStructureID": 909, + "TargetStructureID": 59147, + "Label": "909-59147 via Adherens from 115848 -> 115847", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115848, + "TargetID": 115847, + "Directional": false + } + ] + }, + { + "ID": 1474, + "SourceStructureID": 909, + "TargetStructureID": 61439, + "Label": "909-61439 via Unknown from 120086 -> 120087", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120086, + "TargetID": 120087, + "Directional": false + } + ] + }, + { + "ID": 1475, + "SourceStructureID": 909, + "TargetStructureID": 62578, + "Label": "909-62578 via Unknown from 117654 -> 117655", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117654, + "TargetID": 117655, + "Directional": false + } + ] + }, + { + "ID": 1476, + "SourceStructureID": 66942, + "TargetStructureID": 909, + "Label": "66942-909 via Unknown from 117254 -> 117253", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117254, + "TargetID": 117253, + "Directional": false + } + ] + }, + { + "ID": 1477, + "SourceStructureID": 67057, + "TargetStructureID": 909, + "Label": "67057-909 via Unknown from 130850 -> 118470", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130850, + "TargetID": 118470, + "Directional": false + } + ] + }, + { + "ID": 1478, + "SourceStructureID": 67112, + "TargetStructureID": 909, + "Label": "67112-909 via Adherens from 130836 -> 130835", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130836, + "TargetID": 130835, + "Directional": false + } + ] + }, + { + "ID": 1479, + "SourceStructureID": 909, + "TargetStructureID": 67291, + "Label": "909-67291 via Unknown from 130029 -> 130028", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130029, + "TargetID": 130028, + "Directional": false + } + ] + }, + { + "ID": 1480, + "SourceStructureID": 67777, + "TargetStructureID": 909, + "Label": "67777-909 via Unknown from 117808 -> 117807", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117808, + "TargetID": 117807, + "Directional": false + } + ] + }, + { + "ID": 1481, + "SourceStructureID": 909, + "TargetStructureID": 68198, + "Label": "909-68198 via Unknown from 117922 -> 117923", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117922, + "TargetID": 117923, + "Directional": false + } + ] + }, + { + "ID": 1482, + "SourceStructureID": 83925, + "TargetStructureID": 909, + "Label": "83925-909 via Adherens from 115960 -> 115959", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115960, + "TargetID": 115959, + "Directional": false + } + ] + }, + { + "ID": 1483, + "SourceStructureID": 84624, + "TargetStructureID": 909, + "Label": "84624-909 via Unknown from 130027 -> 130026", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130027, + "TargetID": 130026, + "Directional": false + } + ] + }, + { + "ID": 1484, + "SourceStructureID": 85551, + "TargetStructureID": 909, + "Label": "85551-909 via Adherens from 130845 -> 118468", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130845, + "TargetID": 118468, + "Directional": false + } + ] + }, + { + "ID": 1485, + "SourceStructureID": 89119, + "TargetStructureID": 909, + "Label": "89119-909 via Unknown from 120163 -> 120162", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120163, + "TargetID": 120162, + "Directional": false + } + ] + }, + { + "ID": 1486, + "SourceStructureID": 909, + "TargetStructureID": 96489, + "Label": "909-96489 via Adherens from 115951 -> 115961", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115951, + "TargetID": 115961, + "Directional": false + } + ] + }, + { + "ID": 1487, + "SourceStructureID": 96943, + "TargetStructureID": 909, + "Label": "96943-909 via Adherens from 136343 -> 118506", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136343, + "TargetID": 118506, + "Directional": false + } + ] + }, + { + "ID": 1488, + "SourceStructureID": 96943, + "TargetStructureID": 909, + "Label": "96943-909 via Gap Junction from 131007 -> 131006", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131007, + "TargetID": 131006, + "Directional": false + } + ] + }, + { + "ID": 1489, + "SourceStructureID": 97113, + "TargetStructureID": 909, + "Label": "97113-909 via Unknown from 115963 -> 115962", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115963, + "TargetID": 115962, + "Directional": false + } + ] + }, + { + "ID": 1490, + "SourceStructureID": 909, + "TargetStructureID": 97124, + "Label": "909-97124 via Unknown from 115964 -> 115965", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115964, + "TargetID": 115965, + "Directional": false + } + ] + }, + { + "ID": 1491, + "SourceStructureID": 909, + "TargetStructureID": 97636, + "Label": "909-97636 via Adherens from 97640 -> 97639, 97642 -> 97641", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97640, + "TargetID": 97639, + "Directional": false + }, + { + "SourceID": 97642, + "TargetID": 97641, + "Directional": false + } + ] + }, + { + "ID": 1492, + "SourceStructureID": 99106, + "TargetStructureID": 909, + "Label": "99106-909 via Adherens from 115912 -> 115911, 129575 -> 129576", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115912, + "TargetID": 115911, + "Directional": false + }, + { + "SourceID": 129575, + "TargetID": 129576, + "Directional": false + } + ] + }, + { + "ID": 1493, + "SourceStructureID": 99106, + "TargetStructureID": 909, + "Label": "99106-909 via Gap Junction from 136369 -> 57020", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136369, + "TargetID": 57020, + "Directional": false + } + ] + }, + { + "ID": 1494, + "SourceStructureID": 99440, + "TargetStructureID": 909, + "Label": "99440-909 via Adherens from 136329 -> 136328", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136329, + "TargetID": 136328, + "Directional": false + } + ] + }, + { + "ID": 1495, + "SourceStructureID": 99440, + "TargetStructureID": 909, + "Label": "99440-909 via Gap Junction from 115906 -> 115904", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115906, + "TargetID": 115904, + "Directional": false + } + ] + }, + { + "ID": 1496, + "SourceStructureID": 909, + "TargetStructureID": 113086, + "Label": "909-113086 via Unknown from 118384 -> 118386, 118387 -> 113108, 118393 -> 118394", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 118384, + "TargetID": 118386, + "Directional": false + }, + { + "SourceID": 118387, + "TargetID": 113108, + "Directional": false + }, + { + "SourceID": 118393, + "TargetID": 118394, + "Directional": false + } + ] + }, + { + "ID": 1497, + "SourceStructureID": 115206, + "TargetStructureID": 909, + "Label": "115206-909 via Adherens from 117648 -> 117647", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117648, + "TargetID": 117647, + "Directional": false + } + ] + }, + { + "ID": 1498, + "SourceStructureID": 115206, + "TargetStructureID": 909, + "Label": "115206-909 via Unknown from 117666 -> 117665, 130085 -> 130084", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117666, + "TargetID": 117665, + "Directional": false + }, + { + "SourceID": 130085, + "TargetID": 130084, + "Directional": false + } + ] + }, + { + "ID": 1499, + "SourceStructureID": 115860, + "TargetStructureID": 909, + "Label": "115860-909 via Adherens from 130463 -> 130464", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130463, + "TargetID": 130464, + "Directional": false + } + ] + }, + { + "ID": 1500, + "SourceStructureID": 115870, + "TargetStructureID": 909, + "Label": "115870-909 via Adherens from 129490 -> 115869", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129490, + "TargetID": 115869, + "Directional": false + } + ] + }, + { + "ID": 1501, + "SourceStructureID": 115870, + "TargetStructureID": 909, + "Label": "115870-909 via Unknown from 130844 -> 130843", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130844, + "TargetID": 130843, + "Directional": false + } + ] + }, + { + "ID": 1502, + "SourceStructureID": 115875, + "TargetStructureID": 909, + "Label": "115875-909 via Adherens from 115876 -> 115874", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115876, + "TargetID": 115874, + "Directional": false + } + ] + }, + { + "ID": 1503, + "SourceStructureID": 115890, + "TargetStructureID": 909, + "Label": "115890-909 via Adherens from 115891 -> 115892", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115891, + "TargetID": 115892, + "Directional": false + } + ] + }, + { + "ID": 1504, + "SourceStructureID": 909, + "TargetStructureID": 115919, + "Label": "909-115919 via Unknown from 115918 -> 129579", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115918, + "TargetID": 129579, + "Directional": false + } + ] + }, + { + "ID": 1505, + "SourceStructureID": 115935, + "TargetStructureID": 909, + "Label": "115935-909 via Adherens from 115936 -> 115934", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115936, + "TargetID": 115934, + "Directional": false + } + ] + }, + { + "ID": 1506, + "SourceStructureID": 909, + "TargetStructureID": 115940, + "Label": "909-115940 via Unknown from 129612 -> 129613", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129612, + "TargetID": 129613, + "Directional": false + } + ] + }, + { + "ID": 1507, + "SourceStructureID": 909, + "TargetStructureID": 115942, + "Label": "909-115942 via Adherens from 115938 -> 115943", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115938, + "TargetID": 115943, + "Directional": false + } + ] + }, + { + "ID": 1508, + "SourceStructureID": 115946, + "TargetStructureID": 909, + "Label": "115946-909 via Unknown from 115948 -> 115947", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115948, + "TargetID": 115947, + "Directional": false + } + ] + }, + { + "ID": 1509, + "SourceStructureID": 909, + "TargetStructureID": 115953, + "Label": "909-115953 via Adherens from 115952 -> 115958", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115952, + "TargetID": 115958, + "Directional": false + } + ] + }, + { + "ID": 1510, + "SourceStructureID": 909, + "TargetStructureID": 115992, + "Label": "909-115992 via Adherens from 115993 -> 115994, 115995 -> 115996", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115993, + "TargetID": 115994, + "Directional": false + }, + { + "SourceID": 115995, + "TargetID": 115996, + "Directional": false + } + ] + }, + { + "ID": 1511, + "SourceStructureID": 909, + "TargetStructureID": 116368, + "Label": "909-116368 via Unknown from 116367 -> 130007", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116367, + "TargetID": 130007, + "Directional": false + } + ] + }, + { + "ID": 1512, + "SourceStructureID": 116381, + "TargetStructureID": 909, + "Label": "116381-909 via Adherens from 116389 -> 116384", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116389, + "TargetID": 116384, + "Directional": false + } + ] + }, + { + "ID": 1513, + "SourceStructureID": 116381, + "TargetStructureID": 909, + "Label": "116381-909 via Unknown from 116382 -> 116383", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116382, + "TargetID": 116383, + "Directional": false + } + ] + }, + { + "ID": 1514, + "SourceStructureID": 909, + "TargetStructureID": 116762, + "Label": "909-116762 via Unknown from 116763 -> 116764", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116763, + "TargetID": 116764, + "Directional": false + } + ] + }, + { + "ID": 1515, + "SourceStructureID": 909, + "TargetStructureID": 116778, + "Label": "909-116778 via Unknown from 116777 -> 116779", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116777, + "TargetID": 116779, + "Directional": false + } + ] + }, + { + "ID": 1516, + "SourceStructureID": 117204, + "TargetStructureID": 909, + "Label": "117204-909 via Adherens from 117205 -> 117206, 131028 -> 118641", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117205, + "TargetID": 117206, + "Directional": false + }, + { + "SourceID": 131028, + "TargetID": 118641, + "Directional": false + } + ] + }, + { + "ID": 1517, + "SourceStructureID": 909, + "TargetStructureID": 117223, + "Label": "909-117223 via Adherens from 131068 -> 131069", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131068, + "TargetID": 131069, + "Directional": false + } + ] + }, + { + "ID": 1518, + "SourceStructureID": 909, + "TargetStructureID": 117223, + "Label": "909-117223 via Unknown from 117222 -> 117230, 131030 -> 131029", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117222, + "TargetID": 117230, + "Directional": false + }, + { + "SourceID": 131030, + "TargetID": 131029, + "Directional": false + } + ] + }, + { + "ID": 1519, + "SourceStructureID": 909, + "TargetStructureID": 117236, + "Label": "909-117236 via Unknown from 117235 -> 117237", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117235, + "TargetID": 117237, + "Directional": false + } + ] + }, + { + "ID": 1520, + "SourceStructureID": 117248, + "TargetStructureID": 909, + "Label": "117248-909 via Unknown from 117249 -> 117250", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117249, + "TargetID": 117250, + "Directional": false + } + ] + }, + { + "ID": 1521, + "SourceStructureID": 909, + "TargetStructureID": 117287, + "Label": "909-117287 via Unknown from 117436 -> 117437", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117436, + "TargetID": 117437, + "Directional": false + } + ] + }, + { + "ID": 1522, + "SourceStructureID": 117408, + "TargetStructureID": 909, + "Label": "117408-909 via Unknown from 117410 -> 117409, 117416 -> 117417", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117410, + "TargetID": 117409, + "Directional": false + }, + { + "SourceID": 117416, + "TargetID": 117417, + "Directional": false + } + ] + }, + { + "ID": 1523, + "SourceStructureID": 909, + "TargetStructureID": 117421, + "Label": "909-117421 via Adherens from 117420 -> 117423", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117420, + "TargetID": 117423, + "Directional": false + } + ] + }, + { + "ID": 1524, + "SourceStructureID": 117431, + "TargetStructureID": 909, + "Label": "117431-909 via Unknown from 130238 -> 120165", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130238, + "TargetID": 120165, + "Directional": false + } + ] + }, + { + "ID": 1525, + "SourceStructureID": 909, + "TargetStructureID": 117470, + "Label": "909-117470 via Adherens from 117474 -> 117475", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117474, + "TargetID": 117475, + "Directional": false + } + ] + }, + { + "ID": 1526, + "SourceStructureID": 909, + "TargetStructureID": 117662, + "Label": "909-117662 via Unknown from 130127 -> 130128", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130127, + "TargetID": 130128, + "Directional": false + } + ] + }, + { + "ID": 1527, + "SourceStructureID": 117673, + "TargetStructureID": 909, + "Label": "117673-909 via Unknown from 117674 -> 117675", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117674, + "TargetID": 117675, + "Directional": false + } + ] + }, + { + "ID": 1528, + "SourceStructureID": 117678, + "TargetStructureID": 909, + "Label": "117678-909 via Unknown from 117688 -> 117687", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117688, + "TargetID": 117687, + "Directional": false + } + ] + }, + { + "ID": 1529, + "SourceStructureID": 909, + "TargetStructureID": 117679, + "Label": "909-117679 via Adherens from 117681 -> 117682", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117681, + "TargetID": 117682, + "Directional": false + } + ] + }, + { + "ID": 1530, + "SourceStructureID": 117683, + "TargetStructureID": 909, + "Label": "117683-909 via Adherens from 117684 -> 117458", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117684, + "TargetID": 117458, + "Directional": false + } + ] + }, + { + "ID": 1531, + "SourceStructureID": 117800, + "TargetStructureID": 909, + "Label": "117800-909 via Adherens from 117801 -> 117799", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117801, + "TargetID": 117799, + "Directional": false + } + ] + }, + { + "ID": 1532, + "SourceStructureID": 117803, + "TargetStructureID": 909, + "Label": "117803-909 via Adherens from 117804 -> 117802", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117804, + "TargetID": 117802, + "Directional": false + } + ] + }, + { + "ID": 1533, + "SourceStructureID": 909, + "TargetStructureID": 117805, + "Label": "909-117805 via Adherens from 117790 -> 117806", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117790, + "TargetID": 117806, + "Directional": false + } + ] + }, + { + "ID": 1534, + "SourceStructureID": 117813, + "TargetStructureID": 909, + "Label": "117813-909 via Unknown from 117814 -> 117810", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117814, + "TargetID": 117810, + "Directional": false + } + ] + }, + { + "ID": 1535, + "SourceStructureID": 909, + "TargetStructureID": 117843, + "Label": "909-117843 via Unknown from 130286 -> 130287, 130290 -> 130291", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130286, + "TargetID": 130287, + "Directional": false + }, + { + "SourceID": 130290, + "TargetID": 130291, + "Directional": false + } + ] + }, + { + "ID": 1536, + "SourceStructureID": 117851, + "TargetStructureID": 909, + "Label": "117851-909 via Adherens from 130284 -> 130285", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130284, + "TargetID": 130285, + "Directional": false + } + ] + }, + { + "ID": 1537, + "SourceStructureID": 909, + "TargetStructureID": 117854, + "Label": "909-117854 via Unknown from 130281 -> 130280", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130281, + "TargetID": 130280, + "Directional": false + } + ] + }, + { + "ID": 1538, + "SourceStructureID": 117863, + "TargetStructureID": 909, + "Label": "117863-909 via Unknown from 117864 -> 117862", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117864, + "TargetID": 117862, + "Directional": false + } + ] + }, + { + "ID": 1539, + "SourceStructureID": 117873, + "TargetStructureID": 909, + "Label": "117873-909 via Adherens from 117874 -> 53792", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117874, + "TargetID": 53792, + "Directional": false + } + ] + }, + { + "ID": 1540, + "SourceStructureID": 909, + "TargetStructureID": 117876, + "Label": "909-117876 via Unknown from 117871 -> 117878", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117871, + "TargetID": 117878, + "Directional": false + } + ] + }, + { + "ID": 1541, + "SourceStructureID": 909, + "TargetStructureID": 117892, + "Label": "909-117892 via Adherens from 117891 -> 117893", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117891, + "TargetID": 117893, + "Directional": false + } + ] + }, + { + "ID": 1542, + "SourceStructureID": 117892, + "TargetStructureID": 909, + "Label": "117892-909 via Unknown from 117903 -> 117825, 130264 -> 130263", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117903, + "TargetID": 117825, + "Directional": false + }, + { + "SourceID": 130264, + "TargetID": 130263, + "Directional": false + } + ] + }, + { + "ID": 1543, + "SourceStructureID": 117904, + "TargetStructureID": 909, + "Label": "117904-909 via Unknown from 130258 -> 130257", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130258, + "TargetID": 130257, + "Directional": false + } + ] + }, + { + "ID": 1544, + "SourceStructureID": 909, + "TargetStructureID": 117906, + "Label": "909-117906 via Adherens from 117823 -> 117907", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117823, + "TargetID": 117907, + "Directional": false + } + ] + }, + { + "ID": 1545, + "SourceStructureID": 909, + "TargetStructureID": 118405, + "Label": "909-118405 via Adherens from 130303 -> 130304", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130303, + "TargetID": 130304, + "Directional": false + } + ] + }, + { + "ID": 1546, + "SourceStructureID": 118405, + "TargetStructureID": 909, + "Label": "118405-909 via Unknown from 130301 -> 130300", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130301, + "TargetID": 130300, + "Directional": false + } + ] + }, + { + "ID": 1547, + "SourceStructureID": 909, + "TargetStructureID": 118414, + "Label": "909-118414 via Unknown from 118408 -> 118415", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 118408, + "TargetID": 118415, + "Directional": false + } + ] + }, + { + "ID": 1548, + "SourceStructureID": 909, + "TargetStructureID": 118449, + "Label": "909-118449 via Unknown from 118445 -> 118450", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 118445, + "TargetID": 118450, + "Directional": false + } + ] + }, + { + "ID": 1549, + "SourceStructureID": 129610, + "TargetStructureID": 909, + "Label": "129610-909 via Unknown from 129611 -> 129609", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129611, + "TargetID": 129609, + "Directional": false + } + ] + }, + { + "ID": 1550, + "SourceStructureID": 909, + "TargetStructureID": 130228, + "Label": "909-130228 via Unknown from 117392 -> 130230", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117392, + "TargetID": 130230, + "Directional": false + } + ] + }, + { + "ID": 1551, + "SourceStructureID": 909, + "TargetStructureID": 136331, + "Label": "909-136331 via Gap Junction from 120188 -> 136332", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120188, + "TargetID": 136332, + "Directional": false + } + ] + }, + { + "ID": 1552, + "SourceStructureID": 136331, + "TargetStructureID": 909, + "Label": "136331-909 via Unknown from 136336 -> 136335", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136336, + "TargetID": 136335, + "Directional": false + } + ] + }, + { + "ID": 1553, + "SourceStructureID": 136884, + "TargetStructureID": 992, + "Label": "136884-992 via Gap Junction from 136890 -> 136889", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136890, + "TargetID": 136889, + "Directional": false + } + ] + }, + { + "ID": 1554, + "SourceStructureID": 1021, + "TargetStructureID": 1021, + "Label": "1021-1021 via Adherens from 125245 -> 125244, 125315 -> 125316, 125412 -> 125413, 125516 -> 125517, 135754 -> 135753", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125245, + "TargetID": 125244, + "Directional": false + }, + { + "SourceID": 125315, + "TargetID": 125316, + "Directional": false + }, + { + "SourceID": 125412, + "TargetID": 125413, + "Directional": false + }, + { + "SourceID": 125516, + "TargetID": 125517, + "Directional": false + }, + { + "SourceID": 135754, + "TargetID": 135753, + "Directional": false + } + ] + }, + { + "ID": 1555, + "SourceStructureID": 1021, + "TargetStructureID": 1021, + "Label": "1021-1021 via Gap Junction from 19759 -> 115346, 115350 -> 115344, 118162 -> 118163, 124939 -> 124940, 125081 -> 19780, 125110 -> 125111, 125153 -> 125154, 125252 -> 125251, 125345 -> 125339, 125360 -> 125364, 125514 -> 125515, 125690 -> 125689, 125753 -> 125752", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 19759, + "TargetID": 115346, + "Directional": false + }, + { + "SourceID": 115350, + "TargetID": 115344, + "Directional": false + }, + { + "SourceID": 118162, + "TargetID": 118163, + "Directional": false + }, + { + "SourceID": 124939, + "TargetID": 124940, + "Directional": false + }, + { + "SourceID": 125081, + "TargetID": 19780, + "Directional": false + }, + { + "SourceID": 125110, + "TargetID": 125111, + "Directional": false + }, + { + "SourceID": 125153, + "TargetID": 125154, + "Directional": false + }, + { + "SourceID": 125252, + "TargetID": 125251, + "Directional": false + }, + { + "SourceID": 125345, + "TargetID": 125339, + "Directional": false + }, + { + "SourceID": 125360, + "TargetID": 125364, + "Directional": false + }, + { + "SourceID": 125514, + "TargetID": 125515, + "Directional": false + }, + { + "SourceID": 125690, + "TargetID": 125689, + "Directional": false + }, + { + "SourceID": 125753, + "TargetID": 125752, + "Directional": false + } + ] + }, + { + "ID": 1556, + "SourceStructureID": 1021, + "TargetStructureID": 3756, + "Label": "1021-3756 via Gap Junction from 19783 -> 56518, 124934 -> 124935, 128797 -> 128796", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 19783, + "TargetID": 56518, + "Directional": false + }, + { + "SourceID": 124934, + "TargetID": 124935, + "Directional": false + }, + { + "SourceID": 128797, + "TargetID": 128796, + "Directional": false + } + ] + }, + { + "ID": 1557, + "SourceStructureID": 5650, + "TargetStructureID": 1021, + "Label": "5650-1021 via Adherens from 61079 -> 61078, 124876 -> 124875, 126791 -> 126790, 126792 -> 126793, 126794 -> 126795, 126848 -> 103030", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 61079, + "TargetID": 61078, + "Directional": false + }, + { + "SourceID": 124876, + "TargetID": 124875, + "Directional": false + }, + { + "SourceID": 126791, + "TargetID": 126790, + "Directional": false + }, + { + "SourceID": 126792, + "TargetID": 126793, + "Directional": false + }, + { + "SourceID": 126794, + "TargetID": 126795, + "Directional": false + }, + { + "SourceID": 126848, + "TargetID": 103030, + "Directional": false + } + ] + }, + { + "ID": 1558, + "SourceStructureID": 5650, + "TargetStructureID": 1021, + "Label": "5650-1021 via Gap Junction from 39022 -> 39021, 52604 -> 52603, 61072 -> 61071, 61075 -> 28363, 61106 -> 61105, 103027 -> 103028, 104076 -> 104075, 105057 -> 105056, 105066 -> 105065, 105085 -> 105086, 106368 -> 29930, 118191 -> 118190, 124975 -> 124976, 125086 -> 125087", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 39022, + "TargetID": 39021, + "Directional": false + }, + { + "SourceID": 52604, + "TargetID": 52603, + "Directional": false + }, + { + "SourceID": 61072, + "TargetID": 61071, + "Directional": false + }, + { + "SourceID": 61075, + "TargetID": 28363, + "Directional": false + }, + { + "SourceID": 61106, + "TargetID": 61105, + "Directional": false + }, + { + "SourceID": 103027, + "TargetID": 103028, + "Directional": false + }, + { + "SourceID": 104076, + "TargetID": 104075, + "Directional": false + }, + { + "SourceID": 105057, + "TargetID": 105056, + "Directional": false + }, + { + "SourceID": 105066, + "TargetID": 105065, + "Directional": false + }, + { + "SourceID": 105085, + "TargetID": 105086, + "Directional": false + }, + { + "SourceID": 106368, + "TargetID": 29930, + "Directional": false + }, + { + "SourceID": 118191, + "TargetID": 118190, + "Directional": false + }, + { + "SourceID": 124975, + "TargetID": 124976, + "Directional": false + }, + { + "SourceID": 125086, + "TargetID": 125087, + "Directional": false + } + ] + }, + { + "ID": 1559, + "SourceStructureID": 6047, + "TargetStructureID": 1021, + "Label": "6047-1021 via Adherens from 125529 -> 125530, 135750 -> 135749", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125529, + "TargetID": 125530, + "Directional": false + }, + { + "SourceID": 135750, + "TargetID": 135749, + "Directional": false + } + ] + }, + { + "ID": 1560, + "SourceStructureID": 1021, + "TargetStructureID": 6047, + "Label": "1021-6047 via Gap Junction from 19747 -> 19703, 112119 -> 112118, 113143 -> 113146, 113239 -> 113232, 124994 -> 124993", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 19747, + "TargetID": 19703, + "Directional": false + }, + { + "SourceID": 112119, + "TargetID": 112118, + "Directional": false + }, + { + "SourceID": 113143, + "TargetID": 113146, + "Directional": false + }, + { + "SourceID": 113239, + "TargetID": 113232, + "Directional": false + }, + { + "SourceID": 124994, + "TargetID": 124993, + "Directional": false + } + ] + }, + { + "ID": 1561, + "SourceStructureID": 6050, + "TargetStructureID": 1021, + "Label": "6050-1021 via Adherens from 124968 -> 124967, 126797 -> 126796, 127479 -> 127478, 135751 -> 127479", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124968, + "TargetID": 124967, + "Directional": false + }, + { + "SourceID": 126797, + "TargetID": 126796, + "Directional": false + }, + { + "SourceID": 127479, + "TargetID": 127478, + "Directional": false + }, + { + "SourceID": 135751, + "TargetID": 127479, + "Directional": false + } + ] + }, + { + "ID": 1562, + "SourceStructureID": 6050, + "TargetStructureID": 1021, + "Label": "6050-1021 via Gap Junction from 51644 -> 51645, 113990 -> 113988, 114037 -> 114036, 114361 -> 114360, 114435 -> 114434, 124887 -> 124888", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51644, + "TargetID": 51645, + "Directional": false + }, + { + "SourceID": 113990, + "TargetID": 113988, + "Directional": false + }, + { + "SourceID": 114037, + "TargetID": 114036, + "Directional": false + }, + { + "SourceID": 114361, + "TargetID": 114360, + "Directional": false + }, + { + "SourceID": 114435, + "TargetID": 114434, + "Directional": false + }, + { + "SourceID": 124887, + "TargetID": 124888, + "Directional": false + } + ] + }, + { + "ID": 1563, + "SourceStructureID": 1021, + "TargetStructureID": 6120, + "Label": "1021-6120 via Adherens from 125497 -> 125498, 125499 -> 125500, 125649 -> 125650, 125716 -> 125714, 135748 -> 135747", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125497, + "TargetID": 125498, + "Directional": false + }, + { + "SourceID": 125499, + "TargetID": 125500, + "Directional": false + }, + { + "SourceID": 125649, + "TargetID": 125650, + "Directional": false + }, + { + "SourceID": 125716, + "TargetID": 125714, + "Directional": false + }, + { + "SourceID": 135748, + "TargetID": 135747, + "Directional": false + } + ] + }, + { + "ID": 1564, + "SourceStructureID": 1021, + "TargetStructureID": 6120, + "Label": "1021-6120 via Gap Junction from 19768 -> 56517, 30185 -> 30186, 56516 -> 19745, 57384 -> 57385, 58794 -> 58793, 61081 -> 61082, 110742 -> 110741, 111016 -> 111015, 111227 -> 111228, 115314 -> 119478, 125523 -> 125524, 125631 -> 125632, 125664 -> 125665", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 19768, + "TargetID": 56517, + "Directional": false + }, + { + "SourceID": 30185, + "TargetID": 30186, + "Directional": false + }, + { + "SourceID": 56516, + "TargetID": 19745, + "Directional": false + }, + { + "SourceID": 57384, + "TargetID": 57385, + "Directional": false + }, + { + "SourceID": 58794, + "TargetID": 58793, + "Directional": false + }, + { + "SourceID": 61081, + "TargetID": 61082, + "Directional": false + }, + { + "SourceID": 110742, + "TargetID": 110741, + "Directional": false + }, + { + "SourceID": 111016, + "TargetID": 111015, + "Directional": false + }, + { + "SourceID": 111227, + "TargetID": 111228, + "Directional": false + }, + { + "SourceID": 115314, + "TargetID": 119478, + "Directional": false + }, + { + "SourceID": 125523, + "TargetID": 125524, + "Directional": false + }, + { + "SourceID": 125631, + "TargetID": 125632, + "Directional": false + }, + { + "SourceID": 125664, + "TargetID": 125665, + "Directional": false + } + ] + }, + { + "ID": 1565, + "SourceStructureID": 1021, + "TargetStructureID": 6120, + "Label": "1021-6120 via Touch from 111730 -> 111729", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 111730, + "TargetID": 111729, + "Directional": false + } + ] + }, + { + "ID": 1566, + "SourceStructureID": 6121, + "TargetStructureID": 1021, + "Label": "6121-1021 via Gap Junction from 125232 -> 125233, 125275 -> 125276, 125304 -> 125305, 125745 -> 125746", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 125232, + "TargetID": 125233, + "Directional": false + }, + { + "SourceID": 125275, + "TargetID": 125276, + "Directional": false + }, + { + "SourceID": 125304, + "TargetID": 125305, + "Directional": false + }, + { + "SourceID": 125745, + "TargetID": 125746, + "Directional": false + } + ] + }, + { + "ID": 1567, + "SourceStructureID": 6121, + "TargetStructureID": 1021, + "Label": "6121-1021 via Touch from 125718 -> 125719", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 125718, + "TargetID": 125719, + "Directional": false + } + ] + }, + { + "ID": 1568, + "SourceStructureID": 1021, + "TargetStructureID": 6203, + "Label": "1021-6203 via Gap Junction from 125427 -> 125426", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 125427, + "TargetID": 125426, + "Directional": false + } + ] + }, + { + "ID": 1569, + "SourceStructureID": 6204, + "TargetStructureID": 1021, + "Label": "6204-1021 via Adherens from 125419 -> 125420", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125419, + "TargetID": 125420, + "Directional": false + } + ] + }, + { + "ID": 1570, + "SourceStructureID": 6204, + "TargetStructureID": 1021, + "Label": "6204-1021 via Gap Junction from 118161 -> 115390", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118161, + "TargetID": 115390, + "Directional": false + } + ] + }, + { + "ID": 1571, + "SourceStructureID": 7134, + "TargetStructureID": 1021, + "Label": "7134-1021 via Unknown from 125113 -> 125114", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125113, + "TargetID": 125114, + "Directional": false + } + ] + }, + { + "ID": 1572, + "SourceStructureID": 9769, + "TargetStructureID": 1021, + "Label": "9769-1021 via Adherens from 126889 -> 126888", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126889, + "TargetID": 126888, + "Directional": false + } + ] + }, + { + "ID": 1573, + "SourceStructureID": 16073, + "TargetStructureID": 1021, + "Label": "16073-1021 via Unknown from 125764 -> 125507", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125764, + "TargetID": 125507, + "Directional": false + } + ] + }, + { + "ID": 1574, + "SourceStructureID": 22994, + "TargetStructureID": 1021, + "Label": "22994-1021 via Adherens from 126820 -> 126821", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126820, + "TargetID": 126821, + "Directional": false + } + ] + }, + { + "ID": 1575, + "SourceStructureID": 1021, + "TargetStructureID": 22994, + "Label": "1021-22994 via Gap Junction from 61125 -> 118121", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 61125, + "TargetID": 118121, + "Directional": false + } + ] + }, + { + "ID": 1576, + "SourceStructureID": 43716, + "TargetStructureID": 1021, + "Label": "43716-1021 via Adherens from 125538 -> 125537", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125538, + "TargetID": 125537, + "Directional": false + } + ] + }, + { + "ID": 1577, + "SourceStructureID": 1021, + "TargetStructureID": 53182, + "Label": "1021-53182 via Adherens from 124974 -> 124973", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124974, + "TargetID": 124973, + "Directional": false + } + ] + }, + { + "ID": 1578, + "SourceStructureID": 1021, + "TargetStructureID": 71351, + "Label": "1021-71351 via Unknown from 125123 -> 125124", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125123, + "TargetID": 125124, + "Directional": false + } + ] + }, + { + "ID": 1579, + "SourceStructureID": 1021, + "TargetStructureID": 103029, + "Label": "1021-103029 via Adherens from 126848 -> 103031", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126848, + "TargetID": 103031, + "Directional": false + } + ] + }, + { + "ID": 1580, + "SourceStructureID": 1021, + "TargetStructureID": 103029, + "Label": "1021-103029 via Unknown from 115317 -> 115318", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115317, + "TargetID": 115318, + "Directional": false + } + ] + }, + { + "ID": 1581, + "SourceStructureID": 1021, + "TargetStructureID": 105048, + "Label": "1021-105048 via Adherens from 125138 -> 125139", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125138, + "TargetID": 125139, + "Directional": false + } + ] + }, + { + "ID": 1582, + "SourceStructureID": 1021, + "TargetStructureID": 105048, + "Label": "1021-105048 via Unknown from 125134 -> 125135", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125134, + "TargetID": 125135, + "Directional": false + } + ] + }, + { + "ID": 1583, + "SourceStructureID": 105070, + "TargetStructureID": 1021, + "Label": "105070-1021 via Adherens from 125129 -> 125128", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125129, + "TargetID": 125128, + "Directional": false + } + ] + }, + { + "ID": 1584, + "SourceStructureID": 105095, + "TargetStructureID": 1021, + "Label": "105095-1021 via Unknown from 126697 -> 124992", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126697, + "TargetID": 124992, + "Directional": false + } + ] + }, + { + "ID": 1585, + "SourceStructureID": 110607, + "TargetStructureID": 1021, + "Label": "110607-1021 via Unknown from 125630 -> 125629", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125630, + "TargetID": 125629, + "Directional": false + } + ] + }, + { + "ID": 1586, + "SourceStructureID": 1021, + "TargetStructureID": 110997, + "Label": "1021-110997 via Adherens from 125287 -> 125286", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125287, + "TargetID": 125286, + "Directional": false + } + ] + }, + { + "ID": 1587, + "SourceStructureID": 110997, + "TargetStructureID": 1021, + "Label": "110997-1021 via Gap Junction from 125284 -> 125285", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 125284, + "TargetID": 125285, + "Directional": false + } + ] + }, + { + "ID": 1588, + "SourceStructureID": 1021, + "TargetStructureID": 111012, + "Label": "1021-111012 via Adherens from 125264 -> 125265", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125264, + "TargetID": 125265, + "Directional": false + } + ] + }, + { + "ID": 1589, + "SourceStructureID": 1021, + "TargetStructureID": 112182, + "Label": "1021-112182 via Adherens from 125373 -> 125374", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125373, + "TargetID": 125374, + "Directional": false + } + ] + }, + { + "ID": 1590, + "SourceStructureID": 112284, + "TargetStructureID": 1021, + "Label": "112284-1021 via Adherens from 124997 -> 124996", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124997, + "TargetID": 124996, + "Directional": false + } + ] + }, + { + "ID": 1591, + "SourceStructureID": 112389, + "TargetStructureID": 1021, + "Label": "112389-1021 via Unknown from 126699 -> 124995", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126699, + "TargetID": 124995, + "Directional": false + } + ] + }, + { + "ID": 1592, + "SourceStructureID": 113140, + "TargetStructureID": 1021, + "Label": "113140-1021 via Unknown from 124924 -> 124923", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124924, + "TargetID": 124923, + "Directional": false + } + ] + }, + { + "ID": 1593, + "SourceStructureID": 1637, + "TargetStructureID": 1637, + "Label": "1637-1637 via Adherens from 117326 -> 117327", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117326, + "TargetID": 117327, + "Directional": false + } + ] + }, + { + "ID": 1594, + "SourceStructureID": 1637, + "TargetStructureID": 1637, + "Label": "1637-1637 via Gap Junction from 116898 -> 116897", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116898, + "TargetID": 116897, + "Directional": false + } + ] + }, + { + "ID": 1595, + "SourceStructureID": 1637, + "TargetStructureID": 1637, + "Label": "1637-1637 via Unknown from 117300 -> 117299", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117300, + "TargetID": 117299, + "Directional": false + } + ] + }, + { + "ID": 1596, + "SourceStructureID": 1637, + "TargetStructureID": 1724, + "Label": "1637-1724 via Gap Junction from 23707 -> 23708, 23718 -> 23722, 23732 -> 23733, 28625 -> 28626, 30416 -> 30417, 30419 -> 30420, 30429 -> 30433, 99327 -> 99328, 99432 -> 99433, 100274 -> 100273, 116751 -> 116750, 116753 -> 116752", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 23707, + "TargetID": 23708, + "Directional": false + }, + { + "SourceID": 23718, + "TargetID": 23722, + "Directional": false + }, + { + "SourceID": 23732, + "TargetID": 23733, + "Directional": false + }, + { + "SourceID": 28625, + "TargetID": 28626, + "Directional": false + }, + { + "SourceID": 30416, + "TargetID": 30417, + "Directional": false + }, + { + "SourceID": 30419, + "TargetID": 30420, + "Directional": false + }, + { + "SourceID": 30429, + "TargetID": 30433, + "Directional": false + }, + { + "SourceID": 99327, + "TargetID": 99328, + "Directional": false + }, + { + "SourceID": 99432, + "TargetID": 99433, + "Directional": false + }, + { + "SourceID": 100274, + "TargetID": 100273, + "Directional": false + }, + { + "SourceID": 116751, + "TargetID": 116750, + "Directional": false + }, + { + "SourceID": 116753, + "TargetID": 116752, + "Directional": false + } + ] + }, + { + "ID": 1597, + "SourceStructureID": 5278, + "TargetStructureID": 1637, + "Label": "5278-1637 via Adherens from 117323 -> 117322, 147317 -> 147318", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117323, + "TargetID": 117322, + "Directional": false + }, + { + "SourceID": 147317, + "TargetID": 147318, + "Directional": false + } + ] + }, + { + "ID": 1598, + "SourceStructureID": 5278, + "TargetStructureID": 1637, + "Label": "5278-1637 via Touch from 147312 -> 147313", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 147312, + "TargetID": 147313, + "Directional": false + } + ] + }, + { + "ID": 1599, + "SourceStructureID": 5279, + "TargetStructureID": 1637, + "Label": "5279-1637 via Gap Junction from 98653 -> 98652, 133850 -> 133851, 133863 -> 133862, 148026 -> 148025", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98653, + "TargetID": 98652, + "Directional": false + }, + { + "SourceID": 133850, + "TargetID": 133851, + "Directional": false + }, + { + "SourceID": 133863, + "TargetID": 133862, + "Directional": false + }, + { + "SourceID": 148026, + "TargetID": 148025, + "Directional": false + } + ] + }, + { + "ID": 1600, + "SourceStructureID": 5517, + "TargetStructureID": 1637, + "Label": "5517-1637 via Gap Junction from 49508 -> 49630, 49634 -> 49268, 116861 -> 116860", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49508, + "TargetID": 49630, + "Directional": false + }, + { + "SourceID": 49634, + "TargetID": 49268, + "Directional": false + }, + { + "SourceID": 116861, + "TargetID": 116860, + "Directional": false + } + ] + }, + { + "ID": 1601, + "SourceStructureID": 5517, + "TargetStructureID": 1637, + "Label": "5517-1637 via Unknown from 116814 -> 116813, 116854 -> 116853", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116814, + "TargetID": 116813, + "Directional": false + }, + { + "SourceID": 116854, + "TargetID": 116853, + "Directional": false + } + ] + }, + { + "ID": 1602, + "SourceStructureID": 1637, + "TargetStructureID": 6155, + "Label": "1637-6155 via Gap Junction from 30421 -> 30422", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 30421, + "TargetID": 30422, + "Directional": false + } + ] + }, + { + "ID": 1603, + "SourceStructureID": 20136, + "TargetStructureID": 1637, + "Label": "20136-1637 via Adherens from 109770 -> 109771", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109770, + "TargetID": 109771, + "Directional": false + } + ] + }, + { + "ID": 1604, + "SourceStructureID": 1637, + "TargetStructureID": 26079, + "Label": "1637-26079 via Unknown from 116803 -> 116802", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116803, + "TargetID": 116802, + "Directional": false + } + ] + }, + { + "ID": 1605, + "SourceStructureID": 1637, + "TargetStructureID": 48455, + "Label": "1637-48455 via Unknown from 119544 -> 119543", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 119544, + "TargetID": 119543, + "Directional": false + } + ] + }, + { + "ID": 1606, + "SourceStructureID": 61933, + "TargetStructureID": 1637, + "Label": "61933-1637 via Unknown from 117318 -> 117317", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117318, + "TargetID": 117317, + "Directional": false + } + ] + }, + { + "ID": 1607, + "SourceStructureID": 1637, + "TargetStructureID": 99440, + "Label": "1637-99440 via Unknown from 136322 -> 136321", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136322, + "TargetID": 136321, + "Directional": false + } + ] + }, + { + "ID": 1608, + "SourceStructureID": 1724, + "TargetStructureID": 1724, + "Label": "1724-1724 via Gap Junction from 20015 -> 3968, 47944 -> 48454, 48679 -> 48678", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 20015, + "TargetID": 3968, + "Directional": false + }, + { + "SourceID": 47944, + "TargetID": 48454, + "Directional": false + }, + { + "SourceID": 48679, + "TargetID": 48678, + "Directional": false + } + ] + }, + { + "ID": 1609, + "SourceStructureID": 3116, + "TargetStructureID": 1724, + "Label": "3116-1724 via Gap Junction from 30353 -> 23757, 119084 -> 119083", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 30353, + "TargetID": 23757, + "Directional": false + }, + { + "SourceID": 119084, + "TargetID": 119083, + "Directional": false + } + ] + }, + { + "ID": 1610, + "SourceStructureID": 1724, + "TargetStructureID": 5278, + "Label": "1724-5278 via Adherens from 147270 -> 147269, 147275 -> 147276", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147270, + "TargetID": 147269, + "Directional": false + }, + { + "SourceID": 147275, + "TargetID": 147276, + "Directional": false + } + ] + }, + { + "ID": 1611, + "SourceStructureID": 5278, + "TargetStructureID": 1724, + "Label": "5278-1724 via Gap Junction from 48476 -> 48475, 69857 -> 69856, 92135 -> 92134", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48476, + "TargetID": 48475, + "Directional": false + }, + { + "SourceID": 69857, + "TargetID": 69856, + "Directional": false + }, + { + "SourceID": 92135, + "TargetID": 92134, + "Directional": false + } + ] + }, + { + "ID": 1612, + "SourceStructureID": 1724, + "TargetStructureID": 5279, + "Label": "1724-5279 via Gap Junction from 48677 -> 48676", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48677, + "TargetID": 48676, + "Directional": false + } + ] + }, + { + "ID": 1613, + "SourceStructureID": 5579, + "TargetStructureID": 1724, + "Label": "5579-1724 via Adherens from 36806 -> 36807", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 36806, + "TargetID": 36807, + "Directional": false + } + ] + }, + { + "ID": 1614, + "SourceStructureID": 5579, + "TargetStructureID": 1724, + "Label": "5579-1724 via Unknown from 100363 -> 100362, 114173 -> 114174, 119152 -> 119151", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100363, + "TargetID": 100362, + "Directional": false + }, + { + "SourceID": 114173, + "TargetID": 114174, + "Directional": false + }, + { + "SourceID": 119152, + "TargetID": 119151, + "Directional": false + } + ] + }, + { + "ID": 1615, + "SourceStructureID": 6155, + "TargetStructureID": 1724, + "Label": "6155-1724 via Gap Junction from 15689 -> 49046, 47939 -> 47938", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 15689, + "TargetID": 49046, + "Directional": false + }, + { + "SourceID": 47939, + "TargetID": 47938, + "Directional": false + } + ] + }, + { + "ID": 1616, + "SourceStructureID": 1724, + "TargetStructureID": 21299, + "Label": "1724-21299 via Gap Junction from 48682 -> 48681", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48682, + "TargetID": 48681, + "Directional": false + } + ] + }, + { + "ID": 1617, + "SourceStructureID": 1724, + "TargetStructureID": 26079, + "Label": "1724-26079 via Gap Junction from 47361 -> 102030, 102004 -> 102003, 102008 -> 102009, 102930 -> 102929", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47361, + "TargetID": 102030, + "Directional": false + }, + { + "SourceID": 102004, + "TargetID": 102003, + "Directional": false + }, + { + "SourceID": 102008, + "TargetID": 102009, + "Directional": false + }, + { + "SourceID": 102930, + "TargetID": 102929, + "Directional": false + } + ] + }, + { + "ID": 1618, + "SourceStructureID": 42527, + "TargetStructureID": 1724, + "Label": "42527-1724 via Adherens from 42528 -> 42526", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 42528, + "TargetID": 42526, + "Directional": false + } + ] + }, + { + "ID": 1619, + "SourceStructureID": 1724, + "TargetStructureID": 43314, + "Label": "1724-43314 via Unknown from 100252 -> 100253", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100252, + "TargetID": 100253, + "Directional": false + } + ] + }, + { + "ID": 1620, + "SourceStructureID": 1724, + "TargetStructureID": 99106, + "Label": "1724-99106 via Adherens from 99522 -> 99520", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99522, + "TargetID": 99520, + "Directional": false + } + ] + }, + { + "ID": 1621, + "SourceStructureID": 1724, + "TargetStructureID": 99106, + "Label": "1724-99106 via Gap Junction from 48474 -> 119133", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48474, + "TargetID": 119133, + "Directional": false + } + ] + }, + { + "ID": 1622, + "SourceStructureID": 1724, + "TargetStructureID": 99106, + "Label": "1724-99106 via Unknown from 99535 -> 99534", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99535, + "TargetID": 99534, + "Directional": false + } + ] + }, + { + "ID": 1623, + "SourceStructureID": 1724, + "TargetStructureID": 99233, + "Label": "1724-99233 via Unknown from 99235 -> 99234", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99235, + "TargetID": 99234, + "Directional": false + } + ] + }, + { + "ID": 1624, + "SourceStructureID": 99236, + "TargetStructureID": 1724, + "Label": "99236-1724 via Adherens from 99239 -> 99238", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99239, + "TargetID": 99238, + "Directional": false + } + ] + }, + { + "ID": 1625, + "SourceStructureID": 99240, + "TargetStructureID": 1724, + "Label": "99240-1724 via Unknown from 99242 -> 99241, 100325 -> 100324", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99242, + "TargetID": 99241, + "Directional": false + }, + { + "SourceID": 100325, + "TargetID": 100324, + "Directional": false + } + ] + }, + { + "ID": 1626, + "SourceStructureID": 99325, + "TargetStructureID": 1724, + "Label": "99325-1724 via Adherens from 99337 -> 99336", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99337, + "TargetID": 99336, + "Directional": false + } + ] + }, + { + "ID": 1627, + "SourceStructureID": 99346, + "TargetStructureID": 1724, + "Label": "99346-1724 via Unknown from 99353 -> 99352", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99353, + "TargetID": 99352, + "Directional": false + } + ] + }, + { + "ID": 1628, + "SourceStructureID": 1724, + "TargetStructureID": 99538, + "Label": "1724-99538 via Unknown from 99539 -> 99540", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99539, + "TargetID": 99540, + "Directional": false + } + ] + }, + { + "ID": 1629, + "SourceStructureID": 99543, + "TargetStructureID": 1724, + "Label": "99543-1724 via Gap Junction from 99545 -> 99544", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 99545, + "TargetID": 99544, + "Directional": false + } + ] + }, + { + "ID": 1630, + "SourceStructureID": 1724, + "TargetStructureID": 99543, + "Label": "1724-99543 via Unknown from 99562 -> 99563", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99562, + "TargetID": 99563, + "Directional": false + } + ] + }, + { + "ID": 1631, + "SourceStructureID": 99551, + "TargetStructureID": 1724, + "Label": "99551-1724 via Unknown from 99553 -> 99552", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99553, + "TargetID": 99552, + "Directional": false + } + ] + }, + { + "ID": 1632, + "SourceStructureID": 99557, + "TargetStructureID": 1724, + "Label": "99557-1724 via Unknown from 99558 -> 99559", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99558, + "TargetID": 99559, + "Directional": false + } + ] + }, + { + "ID": 1633, + "SourceStructureID": 1724, + "TargetStructureID": 99571, + "Label": "1724-99571 via Adherens from 99572 -> 99573", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99572, + "TargetID": 99573, + "Directional": false + } + ] + }, + { + "ID": 1634, + "SourceStructureID": 1724, + "TargetStructureID": 100242, + "Label": "1724-100242 via Unknown from 100246 -> 100247", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100246, + "TargetID": 100247, + "Directional": false + } + ] + }, + { + "ID": 1635, + "SourceStructureID": 1724, + "TargetStructureID": 100243, + "Label": "1724-100243 via Unknown from 100244 -> 100245", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100244, + "TargetID": 100245, + "Directional": false + } + ] + }, + { + "ID": 1636, + "SourceStructureID": 100327, + "TargetStructureID": 1724, + "Label": "100327-1724 via Unknown from 100329 -> 100328", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100329, + "TargetID": 100328, + "Directional": false + } + ] + }, + { + "ID": 1637, + "SourceStructureID": 100477, + "TargetStructureID": 1724, + "Label": "100477-1724 via BC Conventional Synapse from 100482 -> 100481", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 100482, + "TargetID": 100481, + "Directional": false + } + ] + }, + { + "ID": 1638, + "SourceStructureID": 1724, + "TargetStructureID": 100486, + "Label": "1724-100486 via Unknown from 100514 -> 100515", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100514, + "TargetID": 100515, + "Directional": false + } + ] + }, + { + "ID": 1639, + "SourceStructureID": 1724, + "TargetStructureID": 100528, + "Label": "1724-100528 via Unknown from 119155 -> 119156", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 119155, + "TargetID": 119156, + "Directional": false + } + ] + }, + { + "ID": 1640, + "SourceStructureID": 1724, + "TargetStructureID": 100679, + "Label": "1724-100679 via Unknown from 100681 -> 100680", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100681, + "TargetID": 100680, + "Directional": false + } + ] + }, + { + "ID": 1641, + "SourceStructureID": 1724, + "TargetStructureID": 100752, + "Label": "1724-100752 via Unknown from 100753 -> 100754", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100753, + "TargetID": 100754, + "Directional": false + } + ] + }, + { + "ID": 1642, + "SourceStructureID": 100860, + "TargetStructureID": 1724, + "Label": "100860-1724 via Adherens from 100861 -> 100862", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100861, + "TargetID": 100862, + "Directional": false + } + ] + }, + { + "ID": 1643, + "SourceStructureID": 100868, + "TargetStructureID": 1724, + "Label": "100868-1724 via Gap Junction from 100870 -> 20186", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 100870, + "TargetID": 20186, + "Directional": false + } + ] + }, + { + "ID": 1644, + "SourceStructureID": 1724, + "TargetStructureID": 101501, + "Label": "1724-101501 via Unknown from 101503 -> 101502", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101503, + "TargetID": 101502, + "Directional": false + } + ] + }, + { + "ID": 1645, + "SourceStructureID": 1724, + "TargetStructureID": 101531, + "Label": "1724-101531 via Unknown from 101533 -> 101532", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101533, + "TargetID": 101532, + "Directional": false + } + ] + }, + { + "ID": 1646, + "SourceStructureID": 1724, + "TargetStructureID": 101536, + "Label": "1724-101536 via Adherens from 101539 -> 101538", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 101539, + "TargetID": 101538, + "Directional": false + } + ] + }, + { + "ID": 1647, + "SourceStructureID": 1724, + "TargetStructureID": 101541, + "Label": "1724-101541 via Unknown from 101542 -> 101543", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101542, + "TargetID": 101543, + "Directional": false + } + ] + }, + { + "ID": 1648, + "SourceStructureID": 101544, + "TargetStructureID": 1724, + "Label": "101544-1724 via Unknown from 101546 -> 101545", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101546, + "TargetID": 101545, + "Directional": false + } + ] + }, + { + "ID": 1649, + "SourceStructureID": 101578, + "TargetStructureID": 1724, + "Label": "101578-1724 via Adherens from 101580 -> 101579", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 101580, + "TargetID": 101579, + "Directional": false + } + ] + }, + { + "ID": 1650, + "SourceStructureID": 1724, + "TargetStructureID": 101592, + "Label": "1724-101592 via Adherens from 47937 -> 101593", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 47937, + "TargetID": 101593, + "Directional": false + } + ] + }, + { + "ID": 1651, + "SourceStructureID": 101617, + "TargetStructureID": 1724, + "Label": "101617-1724 via Adherens from 101619 -> 101618", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 101619, + "TargetID": 101618, + "Directional": false + } + ] + }, + { + "ID": 1652, + "SourceStructureID": 101620, + "TargetStructureID": 1724, + "Label": "101620-1724 via Adherens from 101622 -> 101621", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 101622, + "TargetID": 101621, + "Directional": false + } + ] + }, + { + "ID": 1653, + "SourceStructureID": 1724, + "TargetStructureID": 101654, + "Label": "1724-101654 via Unknown from 101655 -> 101656", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101655, + "TargetID": 101656, + "Directional": false + } + ] + }, + { + "ID": 1654, + "SourceStructureID": 101683, + "TargetStructureID": 1724, + "Label": "101683-1724 via Unknown from 101685 -> 101684", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101685, + "TargetID": 101684, + "Directional": false + } + ] + }, + { + "ID": 1655, + "SourceStructureID": 1724, + "TargetStructureID": 101896, + "Label": "1724-101896 via Adherens from 101898 -> 101897", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 101898, + "TargetID": 101897, + "Directional": false + } + ] + }, + { + "ID": 1656, + "SourceStructureID": 102517, + "TargetStructureID": 1724, + "Label": "102517-1724 via Adherens from 102521 -> 102520, 102523 -> 47941", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 102521, + "TargetID": 102520, + "Directional": false + }, + { + "SourceID": 102523, + "TargetID": 47941, + "Directional": false + } + ] + }, + { + "ID": 1657, + "SourceStructureID": 2064, + "TargetStructureID": 6155, + "Label": "2064-6155 via Unknown from 108354 -> 108356", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108354, + "TargetID": 108356, + "Directional": false + } + ] + }, + { + "ID": 1658, + "SourceStructureID": 9504, + "TargetStructureID": 2065, + "Label": "9504-2065 via Gap Junction from 36356 -> 36355", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 36356, + "TargetID": 36355, + "Directional": false + } + ] + }, + { + "ID": 1659, + "SourceStructureID": 2610, + "TargetStructureID": 3679, + "Label": "2610-3679 via Gap Junction from 17968 -> 17967, 17969 -> 3862", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 17968, + "TargetID": 17967, + "Directional": false + }, + { + "SourceID": 17969, + "TargetID": 3862, + "Directional": false + } + ] + }, + { + "ID": 1660, + "SourceStructureID": 5345, + "TargetStructureID": 2610, + "Label": "5345-2610 via Gap Junction from 15673 -> 15669, 15680 -> 15670, 16811 -> 2843, 16820 -> 2829, 19040 -> 19039", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 15673, + "TargetID": 15669, + "Directional": false + }, + { + "SourceID": 15680, + "TargetID": 15670, + "Directional": false + }, + { + "SourceID": 16811, + "TargetID": 2843, + "Directional": false + }, + { + "SourceID": 16820, + "TargetID": 2829, + "Directional": false + }, + { + "SourceID": 19040, + "TargetID": 19039, + "Directional": false + } + ] + }, + { + "ID": 1661, + "SourceStructureID": 2610, + "TargetStructureID": 5513, + "Label": "2610-5513 via Gap Junction from 2767 -> 15016, 15018 -> 2773", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 2767, + "TargetID": 15016, + "Directional": false + }, + { + "SourceID": 15018, + "TargetID": 2773, + "Directional": false + } + ] + }, + { + "ID": 1662, + "SourceStructureID": 2610, + "TargetStructureID": 5517, + "Label": "2610-5517 via Gap Junction from 15015 -> 96058, 96502 -> 96501", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 15015, + "TargetID": 96058, + "Directional": false + }, + { + "SourceID": 96502, + "TargetID": 96501, + "Directional": false + } + ] + }, + { + "ID": 1663, + "SourceStructureID": 6589, + "TargetStructureID": 2610, + "Label": "6589-2610 via Gap Junction from 6592 -> 6588, 9550 -> 9549, 17173 -> 6597, 130607 -> 130606, 132636 -> 132635, 132694 -> 132695", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 6592, + "TargetID": 6588, + "Directional": false + }, + { + "SourceID": 9550, + "TargetID": 9549, + "Directional": false + }, + { + "SourceID": 17173, + "TargetID": 6597, + "Directional": false + }, + { + "SourceID": 130607, + "TargetID": 130606, + "Directional": false + }, + { + "SourceID": 132636, + "TargetID": 132635, + "Directional": false + }, + { + "SourceID": 132694, + "TargetID": 132695, + "Directional": false + } + ] + }, + { + "ID": 1664, + "SourceStructureID": 6912, + "TargetStructureID": 2610, + "Label": "6912-2610 via Gap Junction from 6938 -> 2735, 32378 -> 2923, 33145 -> 2771, 48353 -> 2768, 48366 -> 2776, 51077 -> 18216, 94439 -> 51135, 120870 -> 120869, 135037 -> 135035", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 6938, + "TargetID": 2735, + "Directional": false + }, + { + "SourceID": 32378, + "TargetID": 2923, + "Directional": false + }, + { + "SourceID": 33145, + "TargetID": 2771, + "Directional": false + }, + { + "SourceID": 48353, + "TargetID": 2768, + "Directional": false + }, + { + "SourceID": 48366, + "TargetID": 2776, + "Directional": false + }, + { + "SourceID": 51077, + "TargetID": 18216, + "Directional": false + }, + { + "SourceID": 94439, + "TargetID": 51135, + "Directional": false + }, + { + "SourceID": 120870, + "TargetID": 120869, + "Directional": false + }, + { + "SourceID": 135037, + "TargetID": 135035, + "Directional": false + } + ] + }, + { + "ID": 1665, + "SourceStructureID": 6997, + "TargetStructureID": 2610, + "Label": "6997-2610 via Adherens from 136835 -> 136836", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136835, + "TargetID": 136836, + "Directional": false + } + ] + }, + { + "ID": 1666, + "SourceStructureID": 2610, + "TargetStructureID": 6997, + "Label": "2610-6997 via Gap Junction from 9396 -> 31420, 22019 -> 22018, 22280 -> 22279, 22851 -> 21923, 56986 -> 56985, 56993 -> 56992, 95585 -> 95584, 99172 -> 99171, 135004 -> 135009, 135034 -> 135033", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 9396, + "TargetID": 31420, + "Directional": false + }, + { + "SourceID": 22019, + "TargetID": 22018, + "Directional": false + }, + { + "SourceID": 22280, + "TargetID": 22279, + "Directional": false + }, + { + "SourceID": 22851, + "TargetID": 21923, + "Directional": false + }, + { + "SourceID": 56986, + "TargetID": 56985, + "Directional": false + }, + { + "SourceID": 56993, + "TargetID": 56992, + "Directional": false + }, + { + "SourceID": 95585, + "TargetID": 95584, + "Directional": false + }, + { + "SourceID": 99172, + "TargetID": 99171, + "Directional": false + }, + { + "SourceID": 135004, + "TargetID": 135009, + "Directional": false + }, + { + "SourceID": 135034, + "TargetID": 135033, + "Directional": false + } + ] + }, + { + "ID": 1667, + "SourceStructureID": 8037, + "TargetStructureID": 2610, + "Label": "8037-2610 via Gap Junction from 11384 -> 2847, 15668 -> 15667, 17903 -> 17902", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 11384, + "TargetID": 2847, + "Directional": false + }, + { + "SourceID": 15668, + "TargetID": 15667, + "Directional": false + }, + { + "SourceID": 17903, + "TargetID": 17902, + "Directional": false + } + ] + }, + { + "ID": 1668, + "SourceStructureID": 2610, + "TargetStructureID": 8990, + "Label": "2610-8990 via Adherens from 95939 -> 95938, 95943 -> 95942, 95944 -> 17958", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95939, + "TargetID": 95938, + "Directional": false + }, + { + "SourceID": 95943, + "TargetID": 95942, + "Directional": false + }, + { + "SourceID": 95944, + "TargetID": 17958, + "Directional": false + } + ] + }, + { + "ID": 1669, + "SourceStructureID": 2610, + "TargetStructureID": 8990, + "Label": "2610-8990 via Unknown from 95941 -> 95940", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95941, + "TargetID": 95940, + "Directional": false + } + ] + }, + { + "ID": 1670, + "SourceStructureID": 9693, + "TargetStructureID": 2610, + "Label": "9693-2610 via Adherens from 120074 -> 120079, 134728 -> 134729, 135023 -> 135024", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 120074, + "TargetID": 120079, + "Directional": false + }, + { + "SourceID": 134728, + "TargetID": 134729, + "Directional": false + }, + { + "SourceID": 135023, + "TargetID": 135024, + "Directional": false + } + ] + }, + { + "ID": 1671, + "SourceStructureID": 9693, + "TargetStructureID": 2610, + "Label": "9693-2610 via Gap Junction from 9760 -> 9761, 15012 -> 2861, 18732 -> 18733, 101442 -> 101443, 119819 -> 17221, 120073 -> 120078, 120076 -> 120077, 134723 -> 119839, 134727 -> 120088, 134731 -> 95761, 134990 -> 134991", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 9760, + "TargetID": 9761, + "Directional": false + }, + { + "SourceID": 15012, + "TargetID": 2861, + "Directional": false + }, + { + "SourceID": 18732, + "TargetID": 18733, + "Directional": false + }, + { + "SourceID": 101442, + "TargetID": 101443, + "Directional": false + }, + { + "SourceID": 119819, + "TargetID": 17221, + "Directional": false + }, + { + "SourceID": 120073, + "TargetID": 120078, + "Directional": false + }, + { + "SourceID": 120076, + "TargetID": 120077, + "Directional": false + }, + { + "SourceID": 134723, + "TargetID": 119839, + "Directional": false + }, + { + "SourceID": 134727, + "TargetID": 120088, + "Directional": false + }, + { + "SourceID": 134731, + "TargetID": 95761, + "Directional": false + }, + { + "SourceID": 134990, + "TargetID": 134991, + "Directional": false + } + ] + }, + { + "ID": 1672, + "SourceStructureID": 2610, + "TargetStructureID": 25405, + "Label": "2610-25405 via Adherens from 25409 -> 25408", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 25409, + "TargetID": 25408, + "Directional": false + } + ] + }, + { + "ID": 1673, + "SourceStructureID": 2610, + "TargetStructureID": 25466, + "Label": "2610-25466 via Adherens from 25472 -> 25471", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 25472, + "TargetID": 25471, + "Directional": false + } + ] + }, + { + "ID": 1674, + "SourceStructureID": 25669, + "TargetStructureID": 2610, + "Label": "25669-2610 via Adherens from 25684 -> 17982", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 25684, + "TargetID": 17982, + "Directional": false + } + ] + }, + { + "ID": 1675, + "SourceStructureID": 2610, + "TargetStructureID": 28886, + "Label": "2610-28886 via Adherens from 135006 -> 135007", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135006, + "TargetID": 135007, + "Directional": false + } + ] + }, + { + "ID": 1676, + "SourceStructureID": 28886, + "TargetStructureID": 2610, + "Label": "28886-2610 via Gap Junction from 51296 -> 51297, 51324 -> 51323, 51370 -> 2924, 135008 -> 135005", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51296, + "TargetID": 51297, + "Directional": false + }, + { + "SourceID": 51324, + "TargetID": 51323, + "Directional": false + }, + { + "SourceID": 51370, + "TargetID": 2924, + "Directional": false + }, + { + "SourceID": 135008, + "TargetID": 135005, + "Directional": false + } + ] + }, + { + "ID": 1677, + "SourceStructureID": 39530, + "TargetStructureID": 2610, + "Label": "39530-2610 via Adherens from 39554 -> 39546", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 39554, + "TargetID": 39546, + "Directional": false + } + ] + }, + { + "ID": 1678, + "SourceStructureID": 45894, + "TargetStructureID": 2610, + "Label": "45894-2610 via Gap Junction from 46929 -> 2971", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46929, + "TargetID": 2971, + "Directional": false + } + ] + }, + { + "ID": 1679, + "SourceStructureID": 123197, + "TargetStructureID": 2610, + "Label": "123197-2610 via Adherens from 159845 -> 159842", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159845, + "TargetID": 159842, + "Directional": false + } + ] + }, + { + "ID": 1680, + "SourceStructureID": 2610, + "TargetStructureID": 159721, + "Label": "2610-159721 via Adherens from 159724 -> 159723", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159724, + "TargetID": 159723, + "Directional": false + } + ] + }, + { + "ID": 1681, + "SourceStructureID": 2610, + "TargetStructureID": 159740, + "Label": "2610-159740 via Adherens from 159743 -> 159742", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159743, + "TargetID": 159742, + "Directional": false + } + ] + }, + { + "ID": 1682, + "SourceStructureID": 3116, + "TargetStructureID": 3116, + "Label": "3116-3116 via Gap Junction from 123280 -> 123281", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123280, + "TargetID": 123281, + "Directional": false + } + ] + }, + { + "ID": 1683, + "SourceStructureID": 4569, + "TargetStructureID": 3116, + "Label": "4569-3116 via Gap Junction from 23807 -> 23821, 23827 -> 23828, 23830 -> 23831, 46762 -> 46761, 47842 -> 23787, 52504 -> 52505, 52538 -> 52540", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 23807, + "TargetID": 23821, + "Directional": false + }, + { + "SourceID": 23827, + "TargetID": 23828, + "Directional": false + }, + { + "SourceID": 23830, + "TargetID": 23831, + "Directional": false + }, + { + "SourceID": 46762, + "TargetID": 46761, + "Directional": false + }, + { + "SourceID": 47842, + "TargetID": 23787, + "Directional": false + }, + { + "SourceID": 52504, + "TargetID": 52505, + "Directional": false + }, + { + "SourceID": 52538, + "TargetID": 52540, + "Directional": false + } + ] + }, + { + "ID": 1684, + "SourceStructureID": 3116, + "TargetStructureID": 5278, + "Label": "3116-5278 via Touch from 92154 -> 92153", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 92154, + "TargetID": 92153, + "Directional": false + } + ] + }, + { + "ID": 1685, + "SourceStructureID": 3116, + "TargetStructureID": 6155, + "Label": "3116-6155 via Gap Junction from 122365 -> 122364", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122365, + "TargetID": 122364, + "Directional": false + } + ] + }, + { + "ID": 1686, + "SourceStructureID": 3116, + "TargetStructureID": 6155, + "Label": "3116-6155 via Touch from 106444 -> 106445", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 106444, + "TargetID": 106445, + "Directional": false + } + ] + }, + { + "ID": 1687, + "SourceStructureID": 29827, + "TargetStructureID": 3116, + "Label": "29827-3116 via Unknown from 135534 -> 135533", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135534, + "TargetID": 135533, + "Directional": false + } + ] + }, + { + "ID": 1688, + "SourceStructureID": 83179, + "TargetStructureID": 3116, + "Label": "83179-3116 via Unknown from 92479 -> 92480", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92479, + "TargetID": 92480, + "Directional": false + } + ] + }, + { + "ID": 1689, + "SourceStructureID": 91449, + "TargetStructureID": 3116, + "Label": "91449-3116 via Adherens from 91450 -> 91451", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91450, + "TargetID": 91451, + "Directional": false + } + ] + }, + { + "ID": 1690, + "SourceStructureID": 91544, + "TargetStructureID": 3116, + "Label": "91544-3116 via Adherens from 91546 -> 91545", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91546, + "TargetID": 91545, + "Directional": false + } + ] + }, + { + "ID": 1691, + "SourceStructureID": 98898, + "TargetStructureID": 3116, + "Label": "98898-3116 via Gap Junction from 98903 -> 98904", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98903, + "TargetID": 98904, + "Directional": false + } + ] + }, + { + "ID": 1692, + "SourceStructureID": 3116, + "TargetStructureID": 99025, + "Label": "3116-99025 via Gap Junction from 99027 -> 99026", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 99027, + "TargetID": 99026, + "Directional": false + } + ] + }, + { + "ID": 1693, + "SourceStructureID": 3257, + "TargetStructureID": 4569, + "Label": "3257-4569 via Gap Junction from 16373 -> 52526, 47488 -> 47489, 98447 -> 98446, 99087 -> 99086", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16373, + "TargetID": 52526, + "Directional": false + }, + { + "SourceID": 47488, + "TargetID": 47489, + "Directional": false + }, + { + "SourceID": 98447, + "TargetID": 98446, + "Directional": false + }, + { + "SourceID": 99087, + "TargetID": 99086, + "Directional": false + } + ] + }, + { + "ID": 1694, + "SourceStructureID": 4570, + "TargetStructureID": 3257, + "Label": "4570-3257 via Gap Junction from 10669 -> 8239, 10868 -> 10852, 14407 -> 14406", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10669, + "TargetID": 8239, + "Directional": false + }, + { + "SourceID": 10868, + "TargetID": 10852, + "Directional": false + }, + { + "SourceID": 14407, + "TargetID": 14406, + "Directional": false + } + ] + }, + { + "ID": 1695, + "SourceStructureID": 3257, + "TargetStructureID": 4850, + "Label": "3257-4850 via Adherens from 97990 -> 14565", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97990, + "TargetID": 14565, + "Directional": false + } + ] + }, + { + "ID": 1696, + "SourceStructureID": 5635, + "TargetStructureID": 3257, + "Label": "5635-3257 via Gap Junction from 55981 -> 55980", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55981, + "TargetID": 55980, + "Directional": false + } + ] + }, + { + "ID": 1697, + "SourceStructureID": 3257, + "TargetStructureID": 5860, + "Label": "3257-5860 via Gap Junction from 29681 -> 6198, 29682 -> 29683", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29681, + "TargetID": 6198, + "Directional": false + }, + { + "SourceID": 29682, + "TargetID": 29683, + "Directional": false + } + ] + }, + { + "ID": 1698, + "SourceStructureID": 6117, + "TargetStructureID": 3257, + "Label": "6117-3257 via Gap Junction from 59088 -> 59083", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59088, + "TargetID": 59083, + "Directional": false + } + ] + }, + { + "ID": 1699, + "SourceStructureID": 6169, + "TargetStructureID": 3257, + "Label": "6169-3257 via Gap Junction from 16193 -> 16203, 16225 -> 16214, 18413 -> 18412, 23058 -> 11912, 29696 -> 29695, 39559 -> 16213, 92700 -> 92699, 133080 -> 9142", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16193, + "TargetID": 16203, + "Directional": false + }, + { + "SourceID": 16225, + "TargetID": 16214, + "Directional": false + }, + { + "SourceID": 18413, + "TargetID": 18412, + "Directional": false + }, + { + "SourceID": 23058, + "TargetID": 11912, + "Directional": false + }, + { + "SourceID": 29696, + "TargetID": 29695, + "Directional": false + }, + { + "SourceID": 39559, + "TargetID": 16213, + "Directional": false + }, + { + "SourceID": 92700, + "TargetID": 92699, + "Directional": false + }, + { + "SourceID": 133080, + "TargetID": 9142, + "Directional": false + } + ] + }, + { + "ID": 1700, + "SourceStructureID": 7564, + "TargetStructureID": 3257, + "Label": "7564-3257 via Gap Junction from 29691 -> 29690", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29691, + "TargetID": 29690, + "Directional": false + } + ] + }, + { + "ID": 1701, + "SourceStructureID": 3257, + "TargetStructureID": 10959, + "Label": "3257-10959 via Adherens from 86796 -> 86795", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86796, + "TargetID": 86795, + "Directional": false + } + ] + }, + { + "ID": 1702, + "SourceStructureID": 3257, + "TargetStructureID": 42432, + "Label": "3257-42432 via Adherens from 42436 -> 42435, 42441 -> 42440", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 42436, + "TargetID": 42435, + "Directional": false + }, + { + "SourceID": 42441, + "TargetID": 42440, + "Directional": false + } + ] + }, + { + "ID": 1703, + "SourceStructureID": 79317, + "TargetStructureID": 3257, + "Label": "79317-3257 via Gap Junction from 98985 -> 98986", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98985, + "TargetID": 98986, + "Directional": false + } + ] + }, + { + "ID": 1704, + "SourceStructureID": 86305, + "TargetStructureID": 3257, + "Label": "86305-3257 via Adherens from 86306 -> 86307", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86306, + "TargetID": 86307, + "Directional": false + } + ] + }, + { + "ID": 1705, + "SourceStructureID": 86751, + "TargetStructureID": 3257, + "Label": "86751-3257 via Adherens from 86752 -> 16372", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86752, + "TargetID": 16372, + "Directional": false + } + ] + }, + { + "ID": 1706, + "SourceStructureID": 86761, + "TargetStructureID": 3257, + "Label": "86761-3257 via Adherens from 86772 -> 9174", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86772, + "TargetID": 9174, + "Directional": false + } + ] + }, + { + "ID": 1707, + "SourceStructureID": 86822, + "TargetStructureID": 3257, + "Label": "86822-3257 via Adherens from 86823 -> 86825, 86824 -> 86826, 86827 -> 86828, 86830 -> 86829", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86823, + "TargetID": 86825, + "Directional": false + }, + { + "SourceID": 86824, + "TargetID": 86826, + "Directional": false + }, + { + "SourceID": 86827, + "TargetID": 86828, + "Directional": false + }, + { + "SourceID": 86830, + "TargetID": 86829, + "Directional": false + } + ] + }, + { + "ID": 1708, + "SourceStructureID": 86876, + "TargetStructureID": 3257, + "Label": "86876-3257 via Adherens from 86880 -> 86881, 86882 -> 9173, 86884 -> 86883", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86880, + "TargetID": 86881, + "Directional": false + }, + { + "SourceID": 86882, + "TargetID": 9173, + "Directional": false + }, + { + "SourceID": 86884, + "TargetID": 86883, + "Directional": false + } + ] + }, + { + "ID": 1709, + "SourceStructureID": 3257, + "TargetStructureID": 98127, + "Label": "3257-98127 via Adherens from 98900 -> 98899", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98900, + "TargetID": 98899, + "Directional": false + } + ] + }, + { + "ID": 1710, + "SourceStructureID": 135052, + "TargetStructureID": 3257, + "Label": "135052-3257 via Gap Junction from 135057 -> 15461", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 135057, + "TargetID": 15461, + "Directional": false + } + ] + }, + { + "ID": 1711, + "SourceStructureID": 3679, + "TargetStructureID": 3679, + "Label": "3679-3679 via Adherens from 13461 -> 130120", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 13461, + "TargetID": 130120, + "Directional": false + } + ] + }, + { + "ID": 1712, + "SourceStructureID": 3679, + "TargetStructureID": 3679, + "Label": "3679-3679 via Gap Junction from 33033 -> 14922, 33035 -> 33034, 33037 -> 33036, 62877 -> 33029", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 33033, + "TargetID": 14922, + "Directional": false + }, + { + "SourceID": 33035, + "TargetID": 33034, + "Directional": false + }, + { + "SourceID": 33037, + "TargetID": 33036, + "Directional": false + }, + { + "SourceID": 62877, + "TargetID": 33029, + "Directional": false + } + ] + }, + { + "ID": 1713, + "SourceStructureID": 3679, + "TargetStructureID": 3679, + "Label": "3679-3679 via Unknown from 92720 -> 92721", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92720, + "TargetID": 92721, + "Directional": false + } + ] + }, + { + "ID": 1714, + "SourceStructureID": 4850, + "TargetStructureID": 3679, + "Label": "4850-3679 via Adherens from 14212 -> 8016", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 14212, + "TargetID": 8016, + "Directional": false + } + ] + }, + { + "ID": 1715, + "SourceStructureID": 3679, + "TargetStructureID": 5017, + "Label": "3679-5017 via Adherens from 115709 -> 115708, 159709 -> 159708", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115709, + "TargetID": 115708, + "Directional": false + }, + { + "SourceID": 159709, + "TargetID": 159708, + "Directional": false + } + ] + }, + { + "ID": 1716, + "SourceStructureID": 3679, + "TargetStructureID": 5150, + "Label": "3679-5150 via Adherens from 131324 -> 131325", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131324, + "TargetID": 131325, + "Directional": false + } + ] + }, + { + "ID": 1717, + "SourceStructureID": 5279, + "TargetStructureID": 3679, + "Label": "5279-3679 via Gap Junction from 6340 -> 3709, 6359 -> 6355, 49258 -> 3784, 92540 -> 92539, 97206 -> 97207, 97531 -> 3779, 97577 -> 27431, 133860 -> 133861, 147965 -> 3782", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 6340, + "TargetID": 3709, + "Directional": false + }, + { + "SourceID": 6359, + "TargetID": 6355, + "Directional": false + }, + { + "SourceID": 49258, + "TargetID": 3784, + "Directional": false + }, + { + "SourceID": 92540, + "TargetID": 92539, + "Directional": false + }, + { + "SourceID": 97206, + "TargetID": 97207, + "Directional": false + }, + { + "SourceID": 97531, + "TargetID": 3779, + "Directional": false + }, + { + "SourceID": 97577, + "TargetID": 27431, + "Directional": false + }, + { + "SourceID": 133860, + "TargetID": 133861, + "Directional": false + }, + { + "SourceID": 147965, + "TargetID": 3782, + "Directional": false + } + ] + }, + { + "ID": 1718, + "SourceStructureID": 5283, + "TargetStructureID": 3679, + "Label": "5283-3679 via Adherens from 124154 -> 135063, 132179 -> 132178", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124154, + "TargetID": 135063, + "Directional": false + }, + { + "SourceID": 132179, + "TargetID": 132178, + "Directional": false + } + ] + }, + { + "ID": 1719, + "SourceStructureID": 5283, + "TargetStructureID": 3679, + "Label": "5283-3679 via Gap Junction from 22413 -> 22412, 130542 -> 130541, 131659 -> 131658, 131696 -> 131697, 132090 -> 66991, 132176 -> 132177, 132193 -> 132192, 132293 -> 132292, 132308 -> 132307, 132310 -> 132309", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 22413, + "TargetID": 22412, + "Directional": false + }, + { + "SourceID": 130542, + "TargetID": 130541, + "Directional": false + }, + { + "SourceID": 131659, + "TargetID": 131658, + "Directional": false + }, + { + "SourceID": 131696, + "TargetID": 131697, + "Directional": false + }, + { + "SourceID": 132090, + "TargetID": 66991, + "Directional": false + }, + { + "SourceID": 132176, + "TargetID": 132177, + "Directional": false + }, + { + "SourceID": 132193, + "TargetID": 132192, + "Directional": false + }, + { + "SourceID": 132293, + "TargetID": 132292, + "Directional": false + }, + { + "SourceID": 132308, + "TargetID": 132307, + "Directional": false + }, + { + "SourceID": 132310, + "TargetID": 132309, + "Directional": false + } + ] + }, + { + "ID": 1720, + "SourceStructureID": 3679, + "TargetStructureID": 5284, + "Label": "3679-5284 via Gap Junction from 7952 -> 113470, 23458 -> 5186, 61065 -> 7953, 113408 -> 113407, 113630 -> 113629, 113647 -> 113646", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 7952, + "TargetID": 113470, + "Directional": false + }, + { + "SourceID": 23458, + "TargetID": 5186, + "Directional": false + }, + { + "SourceID": 61065, + "TargetID": 7953, + "Directional": false + }, + { + "SourceID": 113408, + "TargetID": 113407, + "Directional": false + }, + { + "SourceID": 113630, + "TargetID": 113629, + "Directional": false + }, + { + "SourceID": 113647, + "TargetID": 113646, + "Directional": false + } + ] + }, + { + "ID": 1721, + "SourceStructureID": 5303, + "TargetStructureID": 3679, + "Label": "5303-3679 via Adherens from 102641 -> 102642", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 102641, + "TargetID": 102642, + "Directional": false + } + ] + }, + { + "ID": 1722, + "SourceStructureID": 3679, + "TargetStructureID": 5394, + "Label": "3679-5394 via Adherens from 7961 -> 77065, 77066 -> 7963, 87954 -> 87953", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 7961, + "TargetID": 77065, + "Directional": false + }, + { + "SourceID": 77066, + "TargetID": 7963, + "Directional": false + }, + { + "SourceID": 87954, + "TargetID": 87953, + "Directional": false + } + ] + }, + { + "ID": 1723, + "SourceStructureID": 5561, + "TargetStructureID": 3679, + "Label": "5561-3679 via Gap Junction from 97096 -> 97103", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 97096, + "TargetID": 97103, + "Directional": false + } + ] + }, + { + "ID": 1724, + "SourceStructureID": 3679, + "TargetStructureID": 6117, + "Label": "3679-6117 via Gap Junction from 22393 -> 22392, 30881 -> 7955, 83145 -> 83144, 83947 -> 83946, 134148 -> 134147", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 22393, + "TargetID": 22392, + "Directional": false + }, + { + "SourceID": 30881, + "TargetID": 7955, + "Directional": false + }, + { + "SourceID": 83145, + "TargetID": 83144, + "Directional": false + }, + { + "SourceID": 83947, + "TargetID": 83946, + "Directional": false + }, + { + "SourceID": 134148, + "TargetID": 134147, + "Directional": false + } + ] + }, + { + "ID": 1725, + "SourceStructureID": 6169, + "TargetStructureID": 3679, + "Label": "6169-3679 via Gap Junction from 10839 -> 3729, 14913 -> 3719, 14927 -> 9697, 14942 -> 9699, 16326 -> 8023, 16438 -> 16437, 16761 -> 16760, 18159 -> 18157, 18404 -> 18403, 24657 -> 9695, 29706 -> 29705, 41036 -> 3725, 87743 -> 3752, 87744 -> 3755, 133064 -> 132902", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10839, + "TargetID": 3729, + "Directional": false + }, + { + "SourceID": 14913, + "TargetID": 3719, + "Directional": false + }, + { + "SourceID": 14927, + "TargetID": 9697, + "Directional": false + }, + { + "SourceID": 14942, + "TargetID": 9699, + "Directional": false + }, + { + "SourceID": 16326, + "TargetID": 8023, + "Directional": false + }, + { + "SourceID": 16438, + "TargetID": 16437, + "Directional": false + }, + { + "SourceID": 16761, + "TargetID": 16760, + "Directional": false + }, + { + "SourceID": 18159, + "TargetID": 18157, + "Directional": false + }, + { + "SourceID": 18404, + "TargetID": 18403, + "Directional": false + }, + { + "SourceID": 24657, + "TargetID": 9695, + "Directional": false + }, + { + "SourceID": 29706, + "TargetID": 29705, + "Directional": false + }, + { + "SourceID": 41036, + "TargetID": 3725, + "Directional": false + }, + { + "SourceID": 87743, + "TargetID": 3752, + "Directional": false + }, + { + "SourceID": 87744, + "TargetID": 3755, + "Directional": false + }, + { + "SourceID": 133064, + "TargetID": 132902, + "Directional": false + } + ] + }, + { + "ID": 1726, + "SourceStructureID": 3679, + "TargetStructureID": 7050, + "Label": "3679-7050 via Gap Junction from 7998 -> 24612", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 7998, + "TargetID": 24612, + "Directional": false + } + ] + }, + { + "ID": 1727, + "SourceStructureID": 3679, + "TargetStructureID": 8037, + "Label": "3679-8037 via Gap Junction from 148174 -> 148173", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 148174, + "TargetID": 148173, + "Directional": false + } + ] + }, + { + "ID": 1728, + "SourceStructureID": 3679, + "TargetStructureID": 9643, + "Label": "3679-9643 via Adherens from 9656 -> 9655", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 9656, + "TargetID": 9655, + "Directional": false + } + ] + }, + { + "ID": 1729, + "SourceStructureID": 12897, + "TargetStructureID": 3679, + "Label": "12897-3679 via Gap Junction from 24625 -> 24624, 24746 -> 5208, 24751 -> 24750, 24755 -> 24754, 132303 -> 132304, 132312 -> 132313", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24625, + "TargetID": 24624, + "Directional": false + }, + { + "SourceID": 24746, + "TargetID": 5208, + "Directional": false + }, + { + "SourceID": 24751, + "TargetID": 24750, + "Directional": false + }, + { + "SourceID": 24755, + "TargetID": 24754, + "Directional": false + }, + { + "SourceID": 132303, + "TargetID": 132304, + "Directional": false + }, + { + "SourceID": 132312, + "TargetID": 132313, + "Directional": false + } + ] + }, + { + "ID": 1730, + "SourceStructureID": 16026, + "TargetStructureID": 3679, + "Label": "16026-3679 via Adherens from 91106 -> 134570, 92902 -> 92903, 134570 -> 91107, 134686 -> 134685", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91106, + "TargetID": 134570, + "Directional": false + }, + { + "SourceID": 92902, + "TargetID": 92903, + "Directional": false + }, + { + "SourceID": 134570, + "TargetID": 91107, + "Directional": false + }, + { + "SourceID": 134686, + "TargetID": 134685, + "Directional": false + } + ] + }, + { + "ID": 1731, + "SourceStructureID": 16026, + "TargetStructureID": 3679, + "Label": "16026-3679 via Gap Junction from 24594 -> 5189, 66411 -> 66410, 91052 -> 91051, 91054 -> 91053, 91108 -> 91109, 91131 -> 91141, 91259 -> 91250, 91325 -> 91174, 92566 -> 92565, 92761 -> 92760, 124831 -> 124832, 134441 -> 134440", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24594, + "TargetID": 5189, + "Directional": false + }, + { + "SourceID": 66411, + "TargetID": 66410, + "Directional": false + }, + { + "SourceID": 91052, + "TargetID": 91051, + "Directional": false + }, + { + "SourceID": 91054, + "TargetID": 91053, + "Directional": false + }, + { + "SourceID": 91108, + "TargetID": 91109, + "Directional": false + }, + { + "SourceID": 91131, + "TargetID": 91141, + "Directional": false + }, + { + "SourceID": 91259, + "TargetID": 91250, + "Directional": false + }, + { + "SourceID": 91325, + "TargetID": 91174, + "Directional": false + }, + { + "SourceID": 92566, + "TargetID": 92565, + "Directional": false + }, + { + "SourceID": 92761, + "TargetID": 92760, + "Directional": false + }, + { + "SourceID": 124831, + "TargetID": 124832, + "Directional": false + }, + { + "SourceID": 134441, + "TargetID": 134440, + "Directional": false + } + ] + }, + { + "ID": 1732, + "SourceStructureID": 20136, + "TargetStructureID": 3679, + "Label": "20136-3679 via Gap Junction from 120517 -> 120516", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120517, + "TargetID": 120516, + "Directional": false + } + ] + }, + { + "ID": 1733, + "SourceStructureID": 3679, + "TargetStructureID": 39331, + "Label": "3679-39331 via Adherens from 39334 -> 39333", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 39334, + "TargetID": 39333, + "Directional": false + } + ] + }, + { + "ID": 1734, + "SourceStructureID": 3679, + "TargetStructureID": 40931, + "Label": "3679-40931 via Adherens from 123159 -> 123158", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123159, + "TargetID": 123158, + "Directional": false + } + ] + }, + { + "ID": 1735, + "SourceStructureID": 3679, + "TargetStructureID": 40965, + "Label": "3679-40965 via Adherens from 40972 -> 40971", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 40972, + "TargetID": 40971, + "Directional": false + } + ] + }, + { + "ID": 1736, + "SourceStructureID": 3679, + "TargetStructureID": 79382, + "Label": "3679-79382 via Adherens from 79381 -> 79383", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79381, + "TargetID": 79383, + "Directional": false + } + ] + }, + { + "ID": 1737, + "SourceStructureID": 83603, + "TargetStructureID": 3679, + "Label": "83603-3679 via Adherens from 134923 -> 134922", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134923, + "TargetID": 134922, + "Directional": false + } + ] + }, + { + "ID": 1738, + "SourceStructureID": 3679, + "TargetStructureID": 97683, + "Label": "3679-97683 via Adherens from 97697 -> 97696", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97697, + "TargetID": 97696, + "Directional": false + } + ] + }, + { + "ID": 1739, + "SourceStructureID": 3679, + "TargetStructureID": 101553, + "Label": "3679-101553 via Unknown from 101573 -> 101572", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 101573, + "TargetID": 101572, + "Directional": false + } + ] + }, + { + "ID": 1740, + "SourceStructureID": 102599, + "TargetStructureID": 3679, + "Label": "102599-3679 via Adherens from 123152 -> 123153", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123152, + "TargetID": 123153, + "Directional": false + } + ] + }, + { + "ID": 1741, + "SourceStructureID": 3679, + "TargetStructureID": 159518, + "Label": "3679-159518 via Adherens from 159521 -> 159520", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159521, + "TargetID": 159520, + "Directional": false + } + ] + }, + { + "ID": 1742, + "SourceStructureID": 159611, + "TargetStructureID": 3679, + "Label": "159611-3679 via Gap Junction from 159616 -> 159617", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 159616, + "TargetID": 159617, + "Directional": false + } + ] + }, + { + "ID": 1743, + "SourceStructureID": 3679, + "TargetStructureID": 159703, + "Label": "3679-159703 via Adherens from 159706 -> 159707", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159706, + "TargetID": 159707, + "Directional": false + } + ] + }, + { + "ID": 1744, + "SourceStructureID": 3756, + "TargetStructureID": 3756, + "Label": "3756-3756 via Gap Junction from 128841 -> 128842, 129197 -> 129198", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 128841, + "TargetID": 128842, + "Directional": false + }, + { + "SourceID": 129197, + "TargetID": 129198, + "Directional": false + } + ] + }, + { + "ID": 1745, + "SourceStructureID": 4877, + "TargetStructureID": 3756, + "Label": "4877-3756 via Gap Junction from 128983 -> 128984", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 128983, + "TargetID": 128984, + "Directional": false + } + ] + }, + { + "ID": 1746, + "SourceStructureID": 3756, + "TargetStructureID": 5297, + "Label": "3756-5297 via Gap Junction from 120974 -> 120973", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120974, + "TargetID": 120973, + "Directional": false + } + ] + }, + { + "ID": 1747, + "SourceStructureID": 3756, + "TargetStructureID": 5297, + "Label": "3756-5297 via Touch from 120972 -> 120971", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 120972, + "TargetID": 120971, + "Directional": false + } + ] + }, + { + "ID": 1748, + "SourceStructureID": 5442, + "TargetStructureID": 3756, + "Label": "5442-3756 via Unknown from 129078 -> 129079", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129078, + "TargetID": 129079, + "Directional": false + } + ] + }, + { + "ID": 1749, + "SourceStructureID": 3756, + "TargetStructureID": 5598, + "Label": "3756-5598 via Adherens from 126952 -> 127665", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126952, + "TargetID": 127665, + "Directional": false + } + ] + }, + { + "ID": 1750, + "SourceStructureID": 5598, + "TargetStructureID": 3756, + "Label": "5598-3756 via Gap Junction from 56921 -> 56920, 116059 -> 120935, 119328 -> 119327, 120966 -> 120967, 120968 -> 120969, 123880 -> 123881, 124481 -> 124480", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56921, + "TargetID": 56920, + "Directional": false + }, + { + "SourceID": 116059, + "TargetID": 120935, + "Directional": false + }, + { + "SourceID": 119328, + "TargetID": 119327, + "Directional": false + }, + { + "SourceID": 120966, + "TargetID": 120967, + "Directional": false + }, + { + "SourceID": 120968, + "TargetID": 120969, + "Directional": false + }, + { + "SourceID": 123880, + "TargetID": 123881, + "Directional": false + }, + { + "SourceID": 124481, + "TargetID": 124480, + "Directional": false + } + ] + }, + { + "ID": 1751, + "SourceStructureID": 5598, + "TargetStructureID": 3756, + "Label": "5598-3756 via Touch from 116061 -> 116060", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 116061, + "TargetID": 116060, + "Directional": false + } + ] + }, + { + "ID": 1752, + "SourceStructureID": 5599, + "TargetStructureID": 3756, + "Label": "5599-3756 via Touch from 129089 -> 129088", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 129089, + "TargetID": 129088, + "Directional": false + } + ] + }, + { + "ID": 1753, + "SourceStructureID": 3756, + "TargetStructureID": 6047, + "Label": "3756-6047 via Adherens from 113241 -> 113240, 129270 -> 129271, 129362 -> 129363, 129391 -> 129390", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 113241, + "TargetID": 113240, + "Directional": false + }, + { + "SourceID": 129270, + "TargetID": 129271, + "Directional": false + }, + { + "SourceID": 129362, + "TargetID": 129363, + "Directional": false + }, + { + "SourceID": 129391, + "TargetID": 129390, + "Directional": false + } + ] + }, + { + "ID": 1754, + "SourceStructureID": 3756, + "TargetStructureID": 6047, + "Label": "3756-6047 via Gap Junction from 53625 -> 53634, 57306 -> 57340, 112532 -> 112533, 112833 -> 112832, 113189 -> 113188, 116147 -> 116146, 120982 -> 120983, 129304 -> 129305, 129351 -> 129350, 129353 -> 129354, 129376 -> 56902, 129386 -> 129387, 129450 -> 129451", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53625, + "TargetID": 53634, + "Directional": false + }, + { + "SourceID": 57306, + "TargetID": 57340, + "Directional": false + }, + { + "SourceID": 112532, + "TargetID": 112533, + "Directional": false + }, + { + "SourceID": 112833, + "TargetID": 112832, + "Directional": false + }, + { + "SourceID": 113189, + "TargetID": 113188, + "Directional": false + }, + { + "SourceID": 116147, + "TargetID": 116146, + "Directional": false + }, + { + "SourceID": 120982, + "TargetID": 120983, + "Directional": false + }, + { + "SourceID": 129304, + "TargetID": 129305, + "Directional": false + }, + { + "SourceID": 129351, + "TargetID": 129350, + "Directional": false + }, + { + "SourceID": 129353, + "TargetID": 129354, + "Directional": false + }, + { + "SourceID": 129376, + "TargetID": 56902, + "Directional": false + }, + { + "SourceID": 129386, + "TargetID": 129387, + "Directional": false + }, + { + "SourceID": 129450, + "TargetID": 129451, + "Directional": false + } + ] + }, + { + "ID": 1755, + "SourceStructureID": 3756, + "TargetStructureID": 6050, + "Label": "3756-6050 via Adherens from 56075 -> 56074, 113566 -> 127287, 127050 -> 127049, 127060 -> 127059, 127179 -> 127178, 127227 -> 127226, 127471 -> 127472, 127484 -> 127483, 127504 -> 127503, 127635 -> 127636, 127640 -> 127641, 127644 -> 127645, 128888 -> 128889", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 56075, + "TargetID": 56074, + "Directional": false + }, + { + "SourceID": 113566, + "TargetID": 127287, + "Directional": false + }, + { + "SourceID": 127050, + "TargetID": 127049, + "Directional": false + }, + { + "SourceID": 127060, + "TargetID": 127059, + "Directional": false + }, + { + "SourceID": 127179, + "TargetID": 127178, + "Directional": false + }, + { + "SourceID": 127227, + "TargetID": 127226, + "Directional": false + }, + { + "SourceID": 127471, + "TargetID": 127472, + "Directional": false + }, + { + "SourceID": 127484, + "TargetID": 127483, + "Directional": false + }, + { + "SourceID": 127504, + "TargetID": 127503, + "Directional": false + }, + { + "SourceID": 127635, + "TargetID": 127636, + "Directional": false + }, + { + "SourceID": 127640, + "TargetID": 127641, + "Directional": false + }, + { + "SourceID": 127644, + "TargetID": 127645, + "Directional": false + }, + { + "SourceID": 128888, + "TargetID": 128889, + "Directional": false + } + ] + }, + { + "ID": 1756, + "SourceStructureID": 6050, + "TargetStructureID": 3756, + "Label": "6050-3756 via Gap Junction from 54413 -> 54453, 54449 -> 54450, 54454 -> 54455, 56044 -> 56042, 56070 -> 56071, 56722 -> 56052, 69843 -> 69841, 69851 -> 69850, 113879 -> 113878, 113888 -> 113887, 113893 -> 113892, 113912 -> 113911, 114002 -> 114001, 114019 -> 114016, 114042 -> 114040, 114249 -> 54443, 114252 -> 114251, 114263 -> 93261, 115758 -> 113970, 119690 -> 119689, 127101 -> 127100, 127118 -> 127119, 127535 -> 127533, 128955 -> 128956", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54413, + "TargetID": 54453, + "Directional": false + }, + { + "SourceID": 54449, + "TargetID": 54450, + "Directional": false + }, + { + "SourceID": 54454, + "TargetID": 54455, + "Directional": false + }, + { + "SourceID": 56044, + "TargetID": 56042, + "Directional": false + }, + { + "SourceID": 56070, + "TargetID": 56071, + "Directional": false + }, + { + "SourceID": 56722, + "TargetID": 56052, + "Directional": false + }, + { + "SourceID": 69843, + "TargetID": 69841, + "Directional": false + }, + { + "SourceID": 69851, + "TargetID": 69850, + "Directional": false + }, + { + "SourceID": 113879, + "TargetID": 113878, + "Directional": false + }, + { + "SourceID": 113888, + "TargetID": 113887, + "Directional": false + }, + { + "SourceID": 113893, + "TargetID": 113892, + "Directional": false + }, + { + "SourceID": 113912, + "TargetID": 113911, + "Directional": false + }, + { + "SourceID": 114002, + "TargetID": 114001, + "Directional": false + }, + { + "SourceID": 114019, + "TargetID": 114016, + "Directional": false + }, + { + "SourceID": 114042, + "TargetID": 114040, + "Directional": false + }, + { + "SourceID": 114249, + "TargetID": 54443, + "Directional": false + }, + { + "SourceID": 114252, + "TargetID": 114251, + "Directional": false + }, + { + "SourceID": 114263, + "TargetID": 93261, + "Directional": false + }, + { + "SourceID": 115758, + "TargetID": 113970, + "Directional": false + }, + { + "SourceID": 119690, + "TargetID": 119689, + "Directional": false + }, + { + "SourceID": 127101, + "TargetID": 127100, + "Directional": false + }, + { + "SourceID": 127118, + "TargetID": 127119, + "Directional": false + }, + { + "SourceID": 127535, + "TargetID": 127533, + "Directional": false + }, + { + "SourceID": 128955, + "TargetID": 128956, + "Directional": false + } + ] + }, + { + "ID": 1757, + "SourceStructureID": 3756, + "TargetStructureID": 6050, + "Label": "3756-6050 via Touch from 128931 -> 128932", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 128931, + "TargetID": 128932, + "Directional": false + } + ] + }, + { + "ID": 1758, + "SourceStructureID": 3756, + "TargetStructureID": 6115, + "Label": "3756-6115 via Touch from 128950 -> 128951, 135159 -> 135158", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 128950, + "TargetID": 128951, + "Directional": false + }, + { + "SourceID": 135159, + "TargetID": 135158, + "Directional": false + } + ] + }, + { + "ID": 1759, + "SourceStructureID": 6203, + "TargetStructureID": 3756, + "Label": "6203-3756 via Gap Junction from 116195 -> 116194, 125383 -> 56915", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116195, + "TargetID": 116194, + "Directional": false + }, + { + "SourceID": 125383, + "TargetID": 56915, + "Directional": false + } + ] + }, + { + "ID": 1760, + "SourceStructureID": 7113, + "TargetStructureID": 3756, + "Label": "7113-3756 via Touch from 131386 -> 131387", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 131386, + "TargetID": 131387, + "Directional": false + } + ] + }, + { + "ID": 1761, + "SourceStructureID": 3756, + "TargetStructureID": 7147, + "Label": "3756-7147 via Touch from 136498 -> 136499", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 136498, + "TargetID": 136499, + "Directional": false + } + ] + }, + { + "ID": 1762, + "SourceStructureID": 35343, + "TargetStructureID": 3756, + "Label": "35343-3756 via Unknown from 159531 -> 120248", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 159531, + "TargetID": 120248, + "Directional": false + } + ] + }, + { + "ID": 1763, + "SourceStructureID": 56710, + "TargetStructureID": 3756, + "Label": "56710-3756 via Adherens from 120985 -> 120986", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 120985, + "TargetID": 120986, + "Directional": false + } + ] + }, + { + "ID": 1764, + "SourceStructureID": 56710, + "TargetStructureID": 3756, + "Label": "56710-3756 via Unknown from 135966 -> 135967", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135966, + "TargetID": 135967, + "Directional": false + } + ] + }, + { + "ID": 1765, + "SourceStructureID": 57034, + "TargetStructureID": 3756, + "Label": "57034-3756 via Unknown from 128809 -> 128808", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128809, + "TargetID": 128808, + "Directional": false + } + ] + }, + { + "ID": 1766, + "SourceStructureID": 3756, + "TargetStructureID": 57063, + "Label": "3756-57063 via Adherens from 129067 -> 129068, 129080 -> 129081", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129067, + "TargetID": 129068, + "Directional": false + }, + { + "SourceID": 129080, + "TargetID": 129081, + "Directional": false + } + ] + }, + { + "ID": 1767, + "SourceStructureID": 3756, + "TargetStructureID": 57063, + "Label": "3756-57063 via Gap Junction from 116265 -> 116266", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116265, + "TargetID": 116266, + "Directional": false + } + ] + }, + { + "ID": 1768, + "SourceStructureID": 3756, + "TargetStructureID": 57063, + "Label": "3756-57063 via Unknown from 129085 -> 129084", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129085, + "TargetID": 129084, + "Directional": false + } + ] + }, + { + "ID": 1769, + "SourceStructureID": 3756, + "TargetStructureID": 57064, + "Label": "3756-57064 via Adherens from 128923 -> 128925, 128953 -> 128954", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128923, + "TargetID": 128925, + "Directional": false + }, + { + "SourceID": 128953, + "TargetID": 128954, + "Directional": false + } + ] + }, + { + "ID": 1770, + "SourceStructureID": 3756, + "TargetStructureID": 57064, + "Label": "3756-57064 via Gap Junction from 69852 -> 69853", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 69852, + "TargetID": 69853, + "Directional": false + } + ] + }, + { + "ID": 1771, + "SourceStructureID": 3756, + "TargetStructureID": 57064, + "Label": "3756-57064 via Unknown from 127368 -> 128929, 128948 -> 128949, 136480 -> 127103, 136536 -> 136537", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127368, + "TargetID": 128929, + "Directional": false + }, + { + "SourceID": 128948, + "TargetID": 128949, + "Directional": false + }, + { + "SourceID": 136480, + "TargetID": 127103, + "Directional": false + }, + { + "SourceID": 136536, + "TargetID": 136537, + "Directional": false + } + ] + }, + { + "ID": 1772, + "SourceStructureID": 68539, + "TargetStructureID": 3756, + "Label": "68539-3756 via Adherens from 129284 -> 129283", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129284, + "TargetID": 129283, + "Directional": false + } + ] + }, + { + "ID": 1773, + "SourceStructureID": 91578, + "TargetStructureID": 3756, + "Label": "91578-3756 via Adherens from 129195 -> 129194", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129195, + "TargetID": 129194, + "Directional": false + } + ] + }, + { + "ID": 1774, + "SourceStructureID": 91867, + "TargetStructureID": 3756, + "Label": "91867-3756 via Unknown from 91868 -> 91869, 128966 -> 128967, 128974 -> 128975", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91868, + "TargetID": 91869, + "Directional": false + }, + { + "SourceID": 128966, + "TargetID": 128967, + "Directional": false + }, + { + "SourceID": 128974, + "TargetID": 128975, + "Directional": false + } + ] + }, + { + "ID": 1775, + "SourceStructureID": 3756, + "TargetStructureID": 112756, + "Label": "3756-112756 via Unknown from 112759 -> 112758", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112759, + "TargetID": 112758, + "Directional": false + } + ] + }, + { + "ID": 1776, + "SourceStructureID": 3756, + "TargetStructureID": 113140, + "Label": "3756-113140 via Adherens from 129388 -> 129389", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129388, + "TargetID": 129389, + "Directional": false + } + ] + }, + { + "ID": 1777, + "SourceStructureID": 113153, + "TargetStructureID": 3756, + "Label": "113153-3756 via Adherens from 120978 -> 120977", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 120978, + "TargetID": 120977, + "Directional": false + } + ] + }, + { + "ID": 1778, + "SourceStructureID": 113153, + "TargetStructureID": 3756, + "Label": "113153-3756 via Unknown from 129260 -> 129259", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129260, + "TargetID": 129259, + "Directional": false + } + ] + }, + { + "ID": 1779, + "SourceStructureID": 3756, + "TargetStructureID": 114221, + "Label": "3756-114221 via Unknown from 136493 -> 136494", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136493, + "TargetID": 136494, + "Directional": false + } + ] + }, + { + "ID": 1780, + "SourceStructureID": 3756, + "TargetStructureID": 116142, + "Label": "3756-116142 via Adherens from 116135 -> 129356, 116143 -> 116144, 129187 -> 129188, 129243 -> 129244, 129269 -> 129268, 129369 -> 129370", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116135, + "TargetID": 129356, + "Directional": false + }, + { + "SourceID": 116143, + "TargetID": 116144, + "Directional": false + }, + { + "SourceID": 129187, + "TargetID": 129188, + "Directional": false + }, + { + "SourceID": 129243, + "TargetID": 129244, + "Directional": false + }, + { + "SourceID": 129269, + "TargetID": 129268, + "Directional": false + }, + { + "SourceID": 129369, + "TargetID": 129370, + "Directional": false + } + ] + }, + { + "ID": 1781, + "SourceStructureID": 3756, + "TargetStructureID": 116142, + "Label": "3756-116142 via Gap Junction from 56893 -> 129357, 56919 -> 129186, 129267 -> 56891", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56893, + "TargetID": 129357, + "Directional": false + }, + { + "SourceID": 56919, + "TargetID": 129186, + "Directional": false + }, + { + "SourceID": 129267, + "TargetID": 56891, + "Directional": false + } + ] + }, + { + "ID": 1782, + "SourceStructureID": 3756, + "TargetStructureID": 116142, + "Label": "3756-116142 via Unknown from 126911 -> 126912, 129230 -> 129231, 129250 -> 129245, 129279 -> 129281, 129402 -> 129401, 129408 -> 129407, 129427 -> 129428", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126911, + "TargetID": 126912, + "Directional": false + }, + { + "SourceID": 129230, + "TargetID": 129231, + "Directional": false + }, + { + "SourceID": 129250, + "TargetID": 129245, + "Directional": false + }, + { + "SourceID": 129279, + "TargetID": 129281, + "Directional": false + }, + { + "SourceID": 129402, + "TargetID": 129401, + "Directional": false + }, + { + "SourceID": 129408, + "TargetID": 129407, + "Directional": false + }, + { + "SourceID": 129427, + "TargetID": 129428, + "Directional": false + } + ] + }, + { + "ID": 1783, + "SourceStructureID": 116279, + "TargetStructureID": 3756, + "Label": "116279-3756 via Adherens from 129103 -> 129102", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129103, + "TargetID": 129102, + "Directional": false + } + ] + }, + { + "ID": 1784, + "SourceStructureID": 116279, + "TargetStructureID": 3756, + "Label": "116279-3756 via Gap Junction from 116280 -> 116278", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116280, + "TargetID": 116278, + "Directional": false + } + ] + }, + { + "ID": 1785, + "SourceStructureID": 3756, + "TargetStructureID": 120303, + "Label": "3756-120303 via Unknown from 128898 -> 128899", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128898, + "TargetID": 128899, + "Directional": false + } + ] + }, + { + "ID": 1786, + "SourceStructureID": 3756, + "TargetStructureID": 120311, + "Label": "3756-120311 via Unknown from 128787 -> 128788", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128787, + "TargetID": 128788, + "Directional": false + } + ] + }, + { + "ID": 1787, + "SourceStructureID": 120339, + "TargetStructureID": 3756, + "Label": "120339-3756 via Unknown from 120342 -> 120341", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120342, + "TargetID": 120341, + "Directional": false + } + ] + }, + { + "ID": 1788, + "SourceStructureID": 120359, + "TargetStructureID": 3756, + "Label": "120359-3756 via Adherens from 129220 -> 129219, 129225 -> 129226", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129220, + "TargetID": 129219, + "Directional": false + }, + { + "SourceID": 129225, + "TargetID": 129226, + "Directional": false + } + ] + }, + { + "ID": 1789, + "SourceStructureID": 3756, + "TargetStructureID": 120452, + "Label": "3756-120452 via Adherens from 128972 -> 128973", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128972, + "TargetID": 128973, + "Directional": false + } + ] + }, + { + "ID": 1790, + "SourceStructureID": 120482, + "TargetStructureID": 3756, + "Label": "120482-3756 via Unknown from 129108 -> 129107", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129108, + "TargetID": 129107, + "Directional": false + } + ] + }, + { + "ID": 1791, + "SourceStructureID": 3756, + "TargetStructureID": 120556, + "Label": "3756-120556 via Adherens from 129377 -> 129378", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129377, + "TargetID": 129378, + "Directional": false + } + ] + }, + { + "ID": 1792, + "SourceStructureID": 3756, + "TargetStructureID": 120559, + "Label": "3756-120559 via Adherens from 129438 -> 129437", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129438, + "TargetID": 129437, + "Directional": false + } + ] + }, + { + "ID": 1793, + "SourceStructureID": 3756, + "TargetStructureID": 120931, + "Label": "3756-120931 via Adherens from 128774 -> 128773", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128774, + "TargetID": 128773, + "Directional": false + } + ] + }, + { + "ID": 1794, + "SourceStructureID": 3756, + "TargetStructureID": 120931, + "Label": "3756-120931 via Gap Junction from 116001 -> 120932", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116001, + "TargetID": 120932, + "Directional": false + } + ] + }, + { + "ID": 1795, + "SourceStructureID": 120936, + "TargetStructureID": 3756, + "Label": "120936-3756 via Adherens from 129266 -> 129265", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129266, + "TargetID": 129265, + "Directional": false + } + ] + }, + { + "ID": 1796, + "SourceStructureID": 120936, + "TargetStructureID": 3756, + "Label": "120936-3756 via Unknown from 129299 -> 129298", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129299, + "TargetID": 129298, + "Directional": false + } + ] + }, + { + "ID": 1797, + "SourceStructureID": 3756, + "TargetStructureID": 120945, + "Label": "3756-120945 via Unknown from 129444 -> 129445", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129444, + "TargetID": 129445, + "Directional": false + } + ] + }, + { + "ID": 1798, + "SourceStructureID": 3756, + "TargetStructureID": 120948, + "Label": "3756-120948 via Unknown from 120950 -> 120951", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120950, + "TargetID": 120951, + "Directional": false + } + ] + }, + { + "ID": 1799, + "SourceStructureID": 3756, + "TargetStructureID": 120953, + "Label": "3756-120953 via Adherens from 116234 -> 128936, 128935 -> 128934", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116234, + "TargetID": 128936, + "Directional": false + }, + { + "SourceID": 128935, + "TargetID": 128934, + "Directional": false + } + ] + }, + { + "ID": 1800, + "SourceStructureID": 3756, + "TargetStructureID": 120953, + "Label": "3756-120953 via Gap Junction from 116235 -> 120954", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116235, + "TargetID": 120954, + "Directional": false + } + ] + }, + { + "ID": 1801, + "SourceStructureID": 120956, + "TargetStructureID": 3756, + "Label": "120956-3756 via Adherens from 128938 -> 57030", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 128938, + "TargetID": 57030, + "Directional": false + } + ] + }, + { + "ID": 1802, + "SourceStructureID": 120956, + "TargetStructureID": 3756, + "Label": "120956-3756 via Gap Junction from 120958 -> 116236", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120958, + "TargetID": 116236, + "Directional": false + } + ] + }, + { + "ID": 1803, + "SourceStructureID": 120956, + "TargetStructureID": 3756, + "Label": "120956-3756 via Unknown from 128988 -> 128987", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128988, + "TargetID": 128987, + "Directional": false + } + ] + }, + { + "ID": 1804, + "SourceStructureID": 120960, + "TargetStructureID": 3756, + "Label": "120960-3756 via Unknown from 129073 -> 129072", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129073, + "TargetID": 129072, + "Directional": false + } + ] + }, + { + "ID": 1805, + "SourceStructureID": 3756, + "TargetStructureID": 124198, + "Label": "3756-124198 via Unknown from 116287 -> 124203, 127286 -> 116277, 129109 -> 129110", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116287, + "TargetID": 124203, + "Directional": false + }, + { + "SourceID": 127286, + "TargetID": 116277, + "Directional": false + }, + { + "SourceID": 129109, + "TargetID": 129110, + "Directional": false + } + ] + }, + { + "ID": 1806, + "SourceStructureID": 128961, + "TargetStructureID": 3756, + "Label": "128961-3756 via Unknown from 128963 -> 120952, 128964 -> 128965", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128963, + "TargetID": 120952, + "Directional": false + }, + { + "SourceID": 128964, + "TargetID": 128965, + "Directional": false + } + ] + }, + { + "ID": 1807, + "SourceStructureID": 136486, + "TargetStructureID": 3756, + "Label": "136486-3756 via Adherens from 136488 -> 120970", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136488, + "TargetID": 120970, + "Directional": false + } + ] + }, + { + "ID": 1808, + "SourceStructureID": 136486, + "TargetStructureID": 3756, + "Label": "136486-3756 via Gap Junction from 136487 -> 128772", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136487, + "TargetID": 128772, + "Directional": false + } + ] + }, + { + "ID": 1809, + "SourceStructureID": 3756, + "TargetStructureID": 136531, + "Label": "3756-136531 via Gap Junction from 56914 -> 136532", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56914, + "TargetID": 136532, + "Directional": false + } + ] + }, + { + "ID": 1810, + "SourceStructureID": 3881, + "TargetStructureID": 5609, + "Label": "3881-5609 via Adherens from 64537 -> 64538", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64537, + "TargetID": 64538, + "Directional": false + } + ] + }, + { + "ID": 1811, + "SourceStructureID": 8580, + "TargetStructureID": 3881, + "Label": "8580-3881 via Touch from 59832 -> 59833", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 59832, + "TargetID": 59833, + "Directional": false + } + ] + }, + { + "ID": 1812, + "SourceStructureID": 88666, + "TargetStructureID": 3928, + "Label": "88666-3928 via Adherens from 88672 -> 41256", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88672, + "TargetID": 41256, + "Directional": false + } + ] + }, + { + "ID": 1813, + "SourceStructureID": 117778, + "TargetStructureID": 3928, + "Label": "117778-3928 via Gap Junction from 117782 -> 57008, 117785 -> 117786", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117782, + "TargetID": 57008, + "Directional": false + }, + { + "SourceID": 117785, + "TargetID": 117786, + "Directional": false + } + ] + }, + { + "ID": 1814, + "SourceStructureID": 97828, + "TargetStructureID": 4568, + "Label": "97828-4568 via Gap Junction from 97832 -> 97831", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 97832, + "TargetID": 97831, + "Directional": false + } + ] + }, + { + "ID": 1815, + "SourceStructureID": 4569, + "TargetStructureID": 4569, + "Label": "4569-4569 via Adherens from 97777 -> 97776", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97777, + "TargetID": 97776, + "Directional": false + } + ] + }, + { + "ID": 1816, + "SourceStructureID": 4835, + "TargetStructureID": 4569, + "Label": "4835-4569 via Gap Junction from 98688 -> 98687, 98965 -> 98964", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98688, + "TargetID": 98687, + "Directional": false + }, + { + "SourceID": 98965, + "TargetID": 98964, + "Directional": false + } + ] + }, + { + "ID": 1817, + "SourceStructureID": 4569, + "TargetStructureID": 6155, + "Label": "4569-6155 via Unknown from 131404 -> 131405", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131404, + "TargetID": 131405, + "Directional": false + } + ] + }, + { + "ID": 1818, + "SourceStructureID": 6300, + "TargetStructureID": 4569, + "Label": "6300-4569 via Adherens from 99068 -> 6298", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99068, + "TargetID": 6298, + "Directional": false + } + ] + }, + { + "ID": 1819, + "SourceStructureID": 4569, + "TargetStructureID": 21299, + "Label": "4569-21299 via Gap Junction from 23795 -> 48486, 46343 -> 46342, 48491 -> 48492, 48869 -> 91770, 91761 -> 91762, 91763 -> 91764", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 23795, + "TargetID": 48486, + "Directional": false + }, + { + "SourceID": 46343, + "TargetID": 46342, + "Directional": false + }, + { + "SourceID": 48491, + "TargetID": 48492, + "Directional": false + }, + { + "SourceID": 48869, + "TargetID": 91770, + "Directional": false + }, + { + "SourceID": 91761, + "TargetID": 91762, + "Directional": false + }, + { + "SourceID": 91763, + "TargetID": 91764, + "Directional": false + } + ] + }, + { + "ID": 1820, + "SourceStructureID": 4569, + "TargetStructureID": 21299, + "Label": "4569-21299 via Unknown from 92842 -> 92843", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92842, + "TargetID": 92843, + "Directional": false + } + ] + }, + { + "ID": 1821, + "SourceStructureID": 97800, + "TargetStructureID": 4569, + "Label": "97800-4569 via Unknown from 97802 -> 97801", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97802, + "TargetID": 97801, + "Directional": false + } + ] + }, + { + "ID": 1822, + "SourceStructureID": 97828, + "TargetStructureID": 4569, + "Label": "97828-4569 via Adherens from 97829 -> 97827", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97829, + "TargetID": 97827, + "Directional": false + } + ] + }, + { + "ID": 1823, + "SourceStructureID": 4569, + "TargetStructureID": 98161, + "Label": "4569-98161 via Gap Junction from 52490 -> 98162", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52490, + "TargetID": 98162, + "Directional": false + } + ] + }, + { + "ID": 1824, + "SourceStructureID": 4569, + "TargetStructureID": 98167, + "Label": "4569-98167 via Adherens from 98170 -> 98169", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98170, + "TargetID": 98169, + "Directional": false + } + ] + }, + { + "ID": 1825, + "SourceStructureID": 4569, + "TargetStructureID": 98314, + "Label": "4569-98314 via Unknown from 98316 -> 98315", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98316, + "TargetID": 98315, + "Directional": false + } + ] + }, + { + "ID": 1826, + "SourceStructureID": 98317, + "TargetStructureID": 4569, + "Label": "98317-4569 via Unknown from 98318 -> 98319", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98318, + "TargetID": 98319, + "Directional": false + } + ] + }, + { + "ID": 1827, + "SourceStructureID": 4569, + "TargetStructureID": 98321, + "Label": "4569-98321 via Unknown from 98320 -> 98322", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98320, + "TargetID": 98322, + "Directional": false + } + ] + }, + { + "ID": 1828, + "SourceStructureID": 98505, + "TargetStructureID": 4569, + "Label": "98505-4569 via Gap Junction from 98506 -> 65201", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98506, + "TargetID": 65201, + "Directional": false + } + ] + }, + { + "ID": 1829, + "SourceStructureID": 4569, + "TargetStructureID": 98663, + "Label": "4569-98663 via Adherens from 98666 -> 98665", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98666, + "TargetID": 98665, + "Directional": false + } + ] + }, + { + "ID": 1830, + "SourceStructureID": 4569, + "TargetStructureID": 98679, + "Label": "4569-98679 via Gap Junction from 98678 -> 98680", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98678, + "TargetID": 98680, + "Directional": false + } + ] + }, + { + "ID": 1831, + "SourceStructureID": 99016, + "TargetStructureID": 4569, + "Label": "99016-4569 via Adherens from 99017 -> 99015", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99017, + "TargetID": 99015, + "Directional": false + } + ] + }, + { + "ID": 1832, + "SourceStructureID": 99025, + "TargetStructureID": 4569, + "Label": "99025-4569 via Adherens from 99028 -> 99024", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99028, + "TargetID": 99024, + "Directional": false + } + ] + }, + { + "ID": 1833, + "SourceStructureID": 4569, + "TargetStructureID": 99032, + "Label": "4569-99032 via Adherens from 99038 -> 99037", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99038, + "TargetID": 99037, + "Directional": false + } + ] + }, + { + "ID": 1834, + "SourceStructureID": 4569, + "TargetStructureID": 106438, + "Label": "4569-106438 via Adherens from 131401 -> 106440", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131401, + "TargetID": 106440, + "Directional": false + } + ] + }, + { + "ID": 1835, + "SourceStructureID": 4570, + "TargetStructureID": 29277, + "Label": "4570-29277 via Adherens from 29299 -> 29298", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 29299, + "TargetID": 29298, + "Directional": false + } + ] + }, + { + "ID": 1836, + "SourceStructureID": 60798, + "TargetStructureID": 4570, + "Label": "60798-4570 via Touch from 60800 -> 60801", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 60800, + "TargetID": 60801, + "Directional": false + } + ] + }, + { + "ID": 1837, + "SourceStructureID": 4835, + "TargetStructureID": 4835, + "Label": "4835-4835 via Gap Junction from 12777 -> 8394", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 12777, + "TargetID": 8394, + "Directional": false + } + ] + }, + { + "ID": 1838, + "SourceStructureID": 5457, + "TargetStructureID": 4835, + "Label": "5457-4835 via Adherens from 87844 -> 87843, 87852 -> 87851", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87844, + "TargetID": 87843, + "Directional": false + }, + { + "SourceID": 87852, + "TargetID": 87851, + "Directional": false + } + ] + }, + { + "ID": 1839, + "SourceStructureID": 4835, + "TargetStructureID": 6153, + "Label": "4835-6153 via Gap Junction from 29515 -> 17476, 29606 -> 17479", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29515, + "TargetID": 17476, + "Directional": false + }, + { + "SourceID": 29606, + "TargetID": 17479, + "Directional": false + } + ] + }, + { + "ID": 1840, + "SourceStructureID": 7157, + "TargetStructureID": 4835, + "Label": "7157-4835 via Gap Junction from 24539 -> 24538", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24539, + "TargetID": 24538, + "Directional": false + } + ] + }, + { + "ID": 1841, + "SourceStructureID": 4835, + "TargetStructureID": 7564, + "Label": "4835-7564 via Gap Junction from 29642 -> 29641, 29673 -> 29671", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29642, + "TargetID": 29641, + "Directional": false + }, + { + "SourceID": 29673, + "TargetID": 29671, + "Directional": false + } + ] + }, + { + "ID": 1842, + "SourceStructureID": 7860, + "TargetStructureID": 4835, + "Label": "7860-4835 via Gap Junction from 29668 -> 29667", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29668, + "TargetID": 29667, + "Directional": false + } + ] + }, + { + "ID": 1843, + "SourceStructureID": 7861, + "TargetStructureID": 4835, + "Label": "7861-4835 via Gap Junction from 29646 -> 29645", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29646, + "TargetID": 29645, + "Directional": false + } + ] + }, + { + "ID": 1844, + "SourceStructureID": 71935, + "TargetStructureID": 4835, + "Label": "71935-4835 via Gap Junction from 71944 -> 71945, 95218 -> 8392, 120387 -> 120388, 120391 -> 120392", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71944, + "TargetID": 71945, + "Directional": false + }, + { + "SourceID": 95218, + "TargetID": 8392, + "Directional": false + }, + { + "SourceID": 120387, + "TargetID": 120388, + "Directional": false + }, + { + "SourceID": 120391, + "TargetID": 120392, + "Directional": false + } + ] + }, + { + "ID": 1845, + "SourceStructureID": 105212, + "TargetStructureID": 4835, + "Label": "105212-4835 via Unknown from 105760 -> 105761", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105760, + "TargetID": 105761, + "Directional": false + } + ] + }, + { + "ID": 1846, + "SourceStructureID": 122595, + "TargetStructureID": 4835, + "Label": "122595-4835 via Gap Junction from 122597 -> 122596, 122599 -> 122598", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122597, + "TargetID": 122596, + "Directional": false + }, + { + "SourceID": 122599, + "TargetID": 122598, + "Directional": false + } + ] + }, + { + "ID": 1847, + "SourceStructureID": 4835, + "TargetStructureID": 135225, + "Label": "4835-135225 via Touch from 135238 -> 135237", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 135238, + "TargetID": 135237, + "Directional": false + } + ] + }, + { + "ID": 1848, + "SourceStructureID": 4850, + "TargetStructureID": 6169, + "Label": "4850-6169 via Adherens from 14197 -> 14198, 33897 -> 33896, 98115 -> 9467, 98117 -> 9463", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 14197, + "TargetID": 14198, + "Directional": false + }, + { + "SourceID": 33897, + "TargetID": 33896, + "Directional": false + }, + { + "SourceID": 98115, + "TargetID": 9467, + "Directional": false + }, + { + "SourceID": 98117, + "TargetID": 9463, + "Directional": false + } + ] + }, + { + "ID": 1849, + "SourceStructureID": 40896, + "TargetStructureID": 4850, + "Label": "40896-4850 via Gap Junction from 89980 -> 89981", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89980, + "TargetID": 89981, + "Directional": false + } + ] + }, + { + "ID": 1850, + "SourceStructureID": 40896, + "TargetStructureID": 4850, + "Label": "40896-4850 via Unknown from 98124 -> 98123", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98124, + "TargetID": 98123, + "Directional": false + } + ] + }, + { + "ID": 1851, + "SourceStructureID": 4877, + "TargetStructureID": 4877, + "Label": "4877-4877 via Adherens from 135639 -> 135640", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135639, + "TargetID": 135640, + "Directional": false + } + ] + }, + { + "ID": 1852, + "SourceStructureID": 4877, + "TargetStructureID": 4877, + "Label": "4877-4877 via Gap Junction from 126623 -> 126622, 126755 -> 126756, 126869 -> 126868, 134129 -> 134128, 135637 -> 135638", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 126623, + "TargetID": 126622, + "Directional": false + }, + { + "SourceID": 126755, + "TargetID": 126756, + "Directional": false + }, + { + "SourceID": 126869, + "TargetID": 126868, + "Directional": false + }, + { + "SourceID": 134129, + "TargetID": 134128, + "Directional": false + }, + { + "SourceID": 135637, + "TargetID": 135638, + "Directional": false + } + ] + }, + { + "ID": 1853, + "SourceStructureID": 5107, + "TargetStructureID": 4877, + "Label": "5107-4877 via Adherens from 91355 -> 91354", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91355, + "TargetID": 91354, + "Directional": false + } + ] + }, + { + "ID": 1854, + "SourceStructureID": 4877, + "TargetStructureID": 5442, + "Label": "4877-5442 via Unknown from 126637 -> 126638", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126637, + "TargetID": 126638, + "Directional": false + } + ] + }, + { + "ID": 1855, + "SourceStructureID": 5468, + "TargetStructureID": 4877, + "Label": "5468-4877 via Adherens from 135969 -> 135968", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135969, + "TargetID": 135968, + "Directional": false + } + ] + }, + { + "ID": 1856, + "SourceStructureID": 5468, + "TargetStructureID": 4877, + "Label": "5468-4877 via Gap Junction from 54712 -> 54711", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54712, + "TargetID": 54711, + "Directional": false + } + ] + }, + { + "ID": 1857, + "SourceStructureID": 4877, + "TargetStructureID": 5598, + "Label": "4877-5598 via Adherens from 126734 -> 126735, 126942 -> 126943, 126949 -> 126950, 135949 -> 135948, 135970 -> 135971, 135974 -> 135973", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126734, + "TargetID": 126735, + "Directional": false + }, + { + "SourceID": 126942, + "TargetID": 126943, + "Directional": false + }, + { + "SourceID": 126949, + "TargetID": 126950, + "Directional": false + }, + { + "SourceID": 135949, + "TargetID": 135948, + "Directional": false + }, + { + "SourceID": 135970, + "TargetID": 135971, + "Directional": false + }, + { + "SourceID": 135974, + "TargetID": 135973, + "Directional": false + } + ] + }, + { + "ID": 1858, + "SourceStructureID": 4877, + "TargetStructureID": 5598, + "Label": "4877-5598 via Gap Junction from 56784 -> 56782, 57080 -> 56792, 59063 -> 59062, 91383 -> 91382, 91394 -> 91393, 114980 -> 114979, 114993 -> 114992, 115163 -> 115164, 123794 -> 123793, 124259 -> 124258, 126740 -> 126739", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56784, + "TargetID": 56782, + "Directional": false + }, + { + "SourceID": 57080, + "TargetID": 56792, + "Directional": false + }, + { + "SourceID": 59063, + "TargetID": 59062, + "Directional": false + }, + { + "SourceID": 91383, + "TargetID": 91382, + "Directional": false + }, + { + "SourceID": 91394, + "TargetID": 91393, + "Directional": false + }, + { + "SourceID": 114980, + "TargetID": 114979, + "Directional": false + }, + { + "SourceID": 114993, + "TargetID": 114992, + "Directional": false + }, + { + "SourceID": 115163, + "TargetID": 115164, + "Directional": false + }, + { + "SourceID": 123794, + "TargetID": 123793, + "Directional": false + }, + { + "SourceID": 124259, + "TargetID": 124258, + "Directional": false + }, + { + "SourceID": 126740, + "TargetID": 126739, + "Directional": false + } + ] + }, + { + "ID": 1859, + "SourceStructureID": 4877, + "TargetStructureID": 5601, + "Label": "4877-5601 via Adherens from 91402 -> 91403, 135621 -> 135622, 135649 -> 135650, 135656 -> 135657, 135661 -> 135660, 135664 -> 135663, 135665 -> 135666, 135668 -> 135667, 135669 -> 135670, 135672 -> 135673", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91402, + "TargetID": 91403, + "Directional": false + }, + { + "SourceID": 135621, + "TargetID": 135622, + "Directional": false + }, + { + "SourceID": 135649, + "TargetID": 135650, + "Directional": false + }, + { + "SourceID": 135656, + "TargetID": 135657, + "Directional": false + }, + { + "SourceID": 135661, + "TargetID": 135660, + "Directional": false + }, + { + "SourceID": 135664, + "TargetID": 135663, + "Directional": false + }, + { + "SourceID": 135665, + "TargetID": 135666, + "Directional": false + }, + { + "SourceID": 135668, + "TargetID": 135667, + "Directional": false + }, + { + "SourceID": 135669, + "TargetID": 135670, + "Directional": false + }, + { + "SourceID": 135672, + "TargetID": 135673, + "Directional": false + } + ] + }, + { + "ID": 1860, + "SourceStructureID": 5601, + "TargetStructureID": 4877, + "Label": "5601-4877 via Gap Junction from 24363 -> 23962, 56637 -> 56597, 57189 -> 57188, 59060 -> 59059, 91309 -> 91308, 91330 -> 91329, 91333 -> 91332, 91335 -> 91334, 91347 -> 91299, 91389 -> 91387, 91411 -> 91410, 91421 -> 91420, 91437 -> 126483, 91438 -> 91439, 91525 -> 91526, 92510 -> 92511, 92513 -> 92512, 126512 -> 126513, 126529 -> 126530, 126579 -> 126580, 126690 -> 126691, 126803 -> 126804, 126825 -> 126826, 134124 -> 134125, 134136 -> 134137", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24363, + "TargetID": 23962, + "Directional": false + }, + { + "SourceID": 56637, + "TargetID": 56597, + "Directional": false + }, + { + "SourceID": 57189, + "TargetID": 57188, + "Directional": false + }, + { + "SourceID": 59060, + "TargetID": 59059, + "Directional": false + }, + { + "SourceID": 91309, + "TargetID": 91308, + "Directional": false + }, + { + "SourceID": 91330, + "TargetID": 91329, + "Directional": false + }, + { + "SourceID": 91333, + "TargetID": 91332, + "Directional": false + }, + { + "SourceID": 91335, + "TargetID": 91334, + "Directional": false + }, + { + "SourceID": 91347, + "TargetID": 91299, + "Directional": false + }, + { + "SourceID": 91389, + "TargetID": 91387, + "Directional": false + }, + { + "SourceID": 91411, + "TargetID": 91410, + "Directional": false + }, + { + "SourceID": 91421, + "TargetID": 91420, + "Directional": false + }, + { + "SourceID": 91437, + "TargetID": 126483, + "Directional": false + }, + { + "SourceID": 91438, + "TargetID": 91439, + "Directional": false + }, + { + "SourceID": 91525, + "TargetID": 91526, + "Directional": false + }, + { + "SourceID": 92510, + "TargetID": 92511, + "Directional": false + }, + { + "SourceID": 92513, + "TargetID": 92512, + "Directional": false + }, + { + "SourceID": 126512, + "TargetID": 126513, + "Directional": false + }, + { + "SourceID": 126529, + "TargetID": 126530, + "Directional": false + }, + { + "SourceID": 126579, + "TargetID": 126580, + "Directional": false + }, + { + "SourceID": 126690, + "TargetID": 126691, + "Directional": false + }, + { + "SourceID": 126803, + "TargetID": 126804, + "Directional": false + }, + { + "SourceID": 126825, + "TargetID": 126826, + "Directional": false + }, + { + "SourceID": 134124, + "TargetID": 134125, + "Directional": false + }, + { + "SourceID": 134136, + "TargetID": 134137, + "Directional": false + } + ] + }, + { + "ID": 1861, + "SourceStructureID": 5601, + "TargetStructureID": 4877, + "Label": "5601-4877 via Touch from 126523 -> 126522", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 126523, + "TargetID": 126522, + "Directional": false + } + ] + }, + { + "ID": 1862, + "SourceStructureID": 5637, + "TargetStructureID": 4877, + "Label": "5637-4877 via Gap Junction from 134134 -> 134135, 135632 -> 135633", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 134134, + "TargetID": 134135, + "Directional": false + }, + { + "SourceID": 135632, + "TargetID": 135633, + "Directional": false + } + ] + }, + { + "ID": 1863, + "SourceStructureID": 4877, + "TargetStructureID": 6117, + "Label": "4877-6117 via Adherens from 131113 -> 131114, 134131 -> 134130", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131113, + "TargetID": 131114, + "Directional": false + }, + { + "SourceID": 134131, + "TargetID": 134130, + "Directional": false + } + ] + }, + { + "ID": 1864, + "SourceStructureID": 4877, + "TargetStructureID": 6117, + "Label": "4877-6117 via Gap Junction from 46602 -> 46408, 56788 -> 56787, 134133 -> 134132", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46602, + "TargetID": 46408, + "Directional": false + }, + { + "SourceID": 56788, + "TargetID": 56787, + "Directional": false + }, + { + "SourceID": 134133, + "TargetID": 134132, + "Directional": false + } + ] + }, + { + "ID": 1865, + "SourceStructureID": 6117, + "TargetStructureID": 4877, + "Label": "6117-4877 via Touch from 134144 -> 134143", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 134144, + "TargetID": 134143, + "Directional": false + } + ] + }, + { + "ID": 1866, + "SourceStructureID": 7113, + "TargetStructureID": 4877, + "Label": "7113-4877 via Gap Junction from 91366 -> 91365", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91366, + "TargetID": 91365, + "Directional": false + } + ] + }, + { + "ID": 1867, + "SourceStructureID": 7114, + "TargetStructureID": 4877, + "Label": "7114-4877 via Gap Junction from 91563 -> 91564, 135965 -> 135644", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91563, + "TargetID": 91564, + "Directional": false + }, + { + "SourceID": 135965, + "TargetID": 135644, + "Directional": false + } + ] + }, + { + "ID": 1868, + "SourceStructureID": 4877, + "TargetStructureID": 7114, + "Label": "4877-7114 via Touch from 126832 -> 126833", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 126832, + "TargetID": 126833, + "Directional": false + } + ] + }, + { + "ID": 1869, + "SourceStructureID": 15976, + "TargetStructureID": 4877, + "Label": "15976-4877 via Gap Junction from 54718 -> 54719", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54718, + "TargetID": 54719, + "Directional": false + } + ] + }, + { + "ID": 1870, + "SourceStructureID": 4877, + "TargetStructureID": 23836, + "Label": "4877-23836 via Unknown from 126806 -> 126807", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126806, + "TargetID": 126807, + "Directional": false + } + ] + }, + { + "ID": 1871, + "SourceStructureID": 4877, + "TargetStructureID": 35212, + "Label": "4877-35212 via Unknown from 126554 -> 126555", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126554, + "TargetID": 126555, + "Directional": false + } + ] + }, + { + "ID": 1872, + "SourceStructureID": 54776, + "TargetStructureID": 4877, + "Label": "54776-4877 via Unknown from 126831 -> 126830", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126831, + "TargetID": 126830, + "Directional": false + } + ] + }, + { + "ID": 1873, + "SourceStructureID": 4877, + "TargetStructureID": 56710, + "Label": "4877-56710 via Gap Junction from 46580 -> 56711", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46580, + "TargetID": 56711, + "Directional": false + } + ] + }, + { + "ID": 1874, + "SourceStructureID": 56712, + "TargetStructureID": 4877, + "Label": "56712-4877 via Gap Junction from 56713 -> 46599", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56713, + "TargetID": 46599, + "Directional": false + } + ] + }, + { + "ID": 1875, + "SourceStructureID": 4877, + "TargetStructureID": 56712, + "Label": "4877-56712 via Unknown from 91418 -> 91417", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91418, + "TargetID": 91417, + "Directional": false + } + ] + }, + { + "ID": 1876, + "SourceStructureID": 4877, + "TargetStructureID": 58714, + "Label": "4877-58714 via Adherens from 126617 -> 126618", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126617, + "TargetID": 126618, + "Directional": false + } + ] + }, + { + "ID": 1877, + "SourceStructureID": 60590, + "TargetStructureID": 4877, + "Label": "60590-4877 via Unknown from 91386 -> 91385", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91386, + "TargetID": 91385, + "Directional": false + } + ] + }, + { + "ID": 1878, + "SourceStructureID": 4877, + "TargetStructureID": 91380, + "Label": "4877-91380 via Unknown from 91379 -> 91381", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91379, + "TargetID": 91381, + "Directional": false + } + ] + }, + { + "ID": 1879, + "SourceStructureID": 124069, + "TargetStructureID": 4877, + "Label": "124069-4877 via Adherens from 126665 -> 126664", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126665, + "TargetID": 126664, + "Directional": false + } + ] + }, + { + "ID": 1880, + "SourceStructureID": 126536, + "TargetStructureID": 4877, + "Label": "126536-4877 via Adherens from 126539 -> 126535", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126539, + "TargetID": 126535, + "Directional": false + } + ] + }, + { + "ID": 1881, + "SourceStructureID": 4877, + "TargetStructureID": 126585, + "Label": "4877-126585 via Unknown from 126584 -> 126587", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126584, + "TargetID": 126587, + "Directional": false + } + ] + }, + { + "ID": 1882, + "SourceStructureID": 126646, + "TargetStructureID": 4877, + "Label": "126646-4877 via Adherens from 135954 -> 135953", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135954, + "TargetID": 135953, + "Directional": false + } + ] + }, + { + "ID": 1883, + "SourceStructureID": 135956, + "TargetStructureID": 4877, + "Label": "135956-4877 via Adherens from 135957 -> 135635", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135957, + "TargetID": 135635, + "Directional": false + } + ] + }, + { + "ID": 1884, + "SourceStructureID": 135956, + "TargetStructureID": 4877, + "Label": "135956-4877 via Gap Junction from 135958 -> 135634", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 135958, + "TargetID": 135634, + "Directional": false + } + ] + }, + { + "ID": 1885, + "SourceStructureID": 4890, + "TargetStructureID": 5117, + "Label": "4890-5117 via Adherens from 28783 -> 28782, 28786 -> 28785, 28789 -> 4899, 28791 -> 28790, 28792 -> 4901, 28794 -> 4902, 28795 -> 4903", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 28783, + "TargetID": 28782, + "Directional": false + }, + { + "SourceID": 28786, + "TargetID": 28785, + "Directional": false + }, + { + "SourceID": 28789, + "TargetID": 4899, + "Directional": false + }, + { + "SourceID": 28791, + "TargetID": 28790, + "Directional": false + }, + { + "SourceID": 28792, + "TargetID": 4901, + "Directional": false + }, + { + "SourceID": 28794, + "TargetID": 4902, + "Directional": false + }, + { + "SourceID": 28795, + "TargetID": 4903, + "Directional": false + } + ] + }, + { + "ID": 1886, + "SourceStructureID": 6156, + "TargetStructureID": 4890, + "Label": "6156-4890 via Unknown from 133441 -> 133442, 133468 -> 133467", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133441, + "TargetID": 133442, + "Directional": false + }, + { + "SourceID": 133468, + "TargetID": 133467, + "Directional": false + } + ] + }, + { + "ID": 1887, + "SourceStructureID": 8576, + "TargetStructureID": 4890, + "Label": "8576-4890 via Adherens from 20064 -> 20065", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 20064, + "TargetID": 20065, + "Directional": false + } + ] + }, + { + "ID": 1888, + "SourceStructureID": 4890, + "TargetStructureID": 8577, + "Label": "4890-8577 via Adherens from 31019 -> 31018, 71060 -> 7922", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 31019, + "TargetID": 31018, + "Directional": false + }, + { + "SourceID": 71060, + "TargetID": 7922, + "Directional": false + } + ] + }, + { + "ID": 1889, + "SourceStructureID": 4943, + "TargetStructureID": 5634, + "Label": "4943-5634 via Adherens from 8722 -> 8721", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 8722, + "TargetID": 8721, + "Directional": false + } + ] + }, + { + "ID": 1890, + "SourceStructureID": 42968, + "TargetStructureID": 4943, + "Label": "42968-4943 via Adherens from 60813 -> 60812", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60813, + "TargetID": 60812, + "Directional": false + } + ] + }, + { + "ID": 1891, + "SourceStructureID": 5017, + "TargetStructureID": 5017, + "Label": "5017-5017 via Adherens from 92258 -> 92259", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92258, + "TargetID": 92259, + "Directional": false + } + ] + }, + { + "ID": 1892, + "SourceStructureID": 35176, + "TargetStructureID": 5017, + "Label": "35176-5017 via Adherens from 158798 -> 158788", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 158798, + "TargetID": 158788, + "Directional": false + } + ] + }, + { + "ID": 1893, + "SourceStructureID": 5017, + "TargetStructureID": 61214, + "Label": "5017-61214 via Adherens from 61218 -> 61217", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 61218, + "TargetID": 61217, + "Directional": false + } + ] + }, + { + "ID": 1894, + "SourceStructureID": 5017, + "TargetStructureID": 61231, + "Label": "5017-61231 via Adherens from 61240 -> 61238", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 61240, + "TargetID": 61238, + "Directional": false + } + ] + }, + { + "ID": 1895, + "SourceStructureID": 5107, + "TargetStructureID": 61836, + "Label": "5107-61836 via Adherens from 67515 -> 67514", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67515, + "TargetID": 67514, + "Directional": false + } + ] + }, + { + "ID": 1896, + "SourceStructureID": 5107, + "TargetStructureID": 68023, + "Label": "5107-68023 via Adherens from 68659 -> 68658", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68659, + "TargetID": 68658, + "Directional": false + } + ] + }, + { + "ID": 1897, + "SourceStructureID": 68548, + "TargetStructureID": 5107, + "Label": "68548-5107 via Adherens from 75692 -> 75693", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75692, + "TargetID": 75693, + "Directional": false + } + ] + }, + { + "ID": 1898, + "SourceStructureID": 5107, + "TargetStructureID": 87972, + "Label": "5107-87972 via Adherens from 88026 -> 88025", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88026, + "TargetID": 88025, + "Directional": false + } + ] + }, + { + "ID": 1899, + "SourceStructureID": 5107, + "TargetStructureID": 112937, + "Label": "5107-112937 via Adherens from 112932 -> 112939", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112932, + "TargetID": 112939, + "Directional": false + } + ] + }, + { + "ID": 1900, + "SourceStructureID": 5107, + "TargetStructureID": 148337, + "Label": "5107-148337 via Adherens from 148341 -> 148340", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148341, + "TargetID": 148340, + "Directional": false + } + ] + }, + { + "ID": 1901, + "SourceStructureID": 5117, + "TargetStructureID": 5117, + "Label": "5117-5117 via Unknown from 131397 -> 131398", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131397, + "TargetID": 131398, + "Directional": false + } + ] + }, + { + "ID": 1902, + "SourceStructureID": 5118, + "TargetStructureID": 5117, + "Label": "5118-5117 via Gap Junction from 133235 -> 133236", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 133235, + "TargetID": 133236, + "Directional": false + } + ] + }, + { + "ID": 1903, + "SourceStructureID": 7157, + "TargetStructureID": 5117, + "Label": "7157-5117 via Touch from 135195 -> 135194", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 135195, + "TargetID": 135194, + "Directional": false + } + ] + }, + { + "ID": 1904, + "SourceStructureID": 5117, + "TargetStructureID": 8579, + "Label": "5117-8579 via Adherens from 66344 -> 66345, 66346 -> 66347, 66350 -> 66351", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66344, + "TargetID": 66345, + "Directional": false + }, + { + "SourceID": 66346, + "TargetID": 66347, + "Directional": false + }, + { + "SourceID": 66350, + "TargetID": 66351, + "Directional": false + } + ] + }, + { + "ID": 1905, + "SourceStructureID": 5117, + "TargetStructureID": 16026, + "Label": "5117-16026 via Unknown from 114666 -> 114665", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114666, + "TargetID": 114665, + "Directional": false + } + ] + }, + { + "ID": 1906, + "SourceStructureID": 5117, + "TargetStructureID": 61864, + "Label": "5117-61864 via Adherens from 69336 -> 69339, 69337 -> 69340, 69338 -> 69341", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 69336, + "TargetID": 69339, + "Directional": false + }, + { + "SourceID": 69337, + "TargetID": 69340, + "Directional": false + }, + { + "SourceID": 69338, + "TargetID": 69341, + "Directional": false + } + ] + }, + { + "ID": 1907, + "SourceStructureID": 68548, + "TargetStructureID": 5117, + "Label": "68548-5117 via Adherens from 73581 -> 65507", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73581, + "TargetID": 65507, + "Directional": false + } + ] + }, + { + "ID": 1908, + "SourceStructureID": 5117, + "TargetStructureID": 135196, + "Label": "5117-135196 via Touch from 135201 -> 135200", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 135201, + "TargetID": 135200, + "Directional": false + } + ] + }, + { + "ID": 1909, + "SourceStructureID": 135208, + "TargetStructureID": 5117, + "Label": "135208-5117 via Adherens from 135210 -> 135207", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135210, + "TargetID": 135207, + "Directional": false + } + ] + }, + { + "ID": 1910, + "SourceStructureID": 5439, + "TargetStructureID": 5118, + "Label": "5439-5118 via Adherens from 85506 -> 85507", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85506, + "TargetID": 85507, + "Directional": false + } + ] + }, + { + "ID": 1911, + "SourceStructureID": 5118, + "TargetStructureID": 5531, + "Label": "5118-5531 via Adherens from 133886 -> 133885", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133886, + "TargetID": 133885, + "Directional": false + } + ] + }, + { + "ID": 1912, + "SourceStructureID": 6115, + "TargetStructureID": 5118, + "Label": "6115-5118 via Adherens from 74793 -> 74794", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74793, + "TargetID": 74794, + "Directional": false + } + ] + }, + { + "ID": 1913, + "SourceStructureID": 6115, + "TargetStructureID": 5118, + "Label": "6115-5118 via Unknown from 73258 -> 73259", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73258, + "TargetID": 73259, + "Directional": false + } + ] + }, + { + "ID": 1914, + "SourceStructureID": 7147, + "TargetStructureID": 5118, + "Label": "7147-5118 via Touch from 52235 -> 52234", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 52235, + "TargetID": 52234, + "Directional": false + } + ] + }, + { + "ID": 1915, + "SourceStructureID": 5118, + "TargetStructureID": 8579, + "Label": "5118-8579 via Adherens from 62682 -> 62681", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 62682, + "TargetID": 62681, + "Directional": false + } + ] + }, + { + "ID": 1916, + "SourceStructureID": 5118, + "TargetStructureID": 9769, + "Label": "5118-9769 via Touch from 52625 -> 52624", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 52625, + "TargetID": 52624, + "Directional": false + } + ] + }, + { + "ID": 1917, + "SourceStructureID": 65134, + "TargetStructureID": 5118, + "Label": "65134-5118 via Gap Junction from 65135 -> 65136", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 65135, + "TargetID": 65136, + "Directional": false + } + ] + }, + { + "ID": 1918, + "SourceStructureID": 22590, + "TargetStructureID": 5150, + "Label": "22590-5150 via Gap Junction from 56183 -> 56181", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56183, + "TargetID": 56181, + "Directional": false + } + ] + }, + { + "ID": 1919, + "SourceStructureID": 56211, + "TargetStructureID": 5150, + "Label": "56211-5150 via Gap Junction from 56212 -> 56210, 56213 -> 56214, 56218 -> 56219, 56221 -> 56220, 56252 -> 56251", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56212, + "TargetID": 56210, + "Directional": false + }, + { + "SourceID": 56213, + "TargetID": 56214, + "Directional": false + }, + { + "SourceID": 56218, + "TargetID": 56219, + "Directional": false + }, + { + "SourceID": 56221, + "TargetID": 56220, + "Directional": false + }, + { + "SourceID": 56252, + "TargetID": 56251, + "Directional": false + } + ] + }, + { + "ID": 1920, + "SourceStructureID": 5278, + "TargetStructureID": 5278, + "Label": "5278-5278 via Gap Junction from 92279 -> 92278", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92279, + "TargetID": 92278, + "Directional": false + } + ] + }, + { + "ID": 1921, + "SourceStructureID": 5278, + "TargetStructureID": 5279, + "Label": "5278-5279 via Gap Junction from 20153 -> 92674, 92710 -> 92712, 133801 -> 133800, 133848 -> 133849, 133852 -> 133853, 133855 -> 133854, 133857 -> 133856, 133859 -> 133858, 147296 -> 147297", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 20153, + "TargetID": 92674, + "Directional": false + }, + { + "SourceID": 92710, + "TargetID": 92712, + "Directional": false + }, + { + "SourceID": 133801, + "TargetID": 133800, + "Directional": false + }, + { + "SourceID": 133848, + "TargetID": 133849, + "Directional": false + }, + { + "SourceID": 133852, + "TargetID": 133853, + "Directional": false + }, + { + "SourceID": 133855, + "TargetID": 133854, + "Directional": false + }, + { + "SourceID": 133857, + "TargetID": 133856, + "Directional": false + }, + { + "SourceID": 133859, + "TargetID": 133858, + "Directional": false + }, + { + "SourceID": 147296, + "TargetID": 147297, + "Directional": false + } + ] + }, + { + "ID": 1922, + "SourceStructureID": 5278, + "TargetStructureID": 5279, + "Label": "5278-5279 via Touch from 147909 -> 147908", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 147909, + "TargetID": 147908, + "Directional": false + } + ] + }, + { + "ID": 1923, + "SourceStructureID": 5278, + "TargetStructureID": 5579, + "Label": "5278-5579 via Adherens from 92157 -> 92158, 92159 -> 92160, 114175 -> 36805", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92157, + "TargetID": 92158, + "Directional": false + }, + { + "SourceID": 92159, + "TargetID": 92160, + "Directional": false + }, + { + "SourceID": 114175, + "TargetID": 36805, + "Directional": false + } + ] + }, + { + "ID": 1924, + "SourceStructureID": 5278, + "TargetStructureID": 5579, + "Label": "5278-5579 via Unknown from 114176 -> 147249", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114176, + "TargetID": 147249, + "Directional": false + } + ] + }, + { + "ID": 1925, + "SourceStructureID": 8575, + "TargetStructureID": 5278, + "Label": "8575-5278 via Unknown from 100167 -> 100168", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100167, + "TargetID": 100168, + "Directional": false + } + ] + }, + { + "ID": 1926, + "SourceStructureID": 5278, + "TargetStructureID": 9347, + "Label": "5278-9347 via Unknown from 92268 -> 92267, 104394 -> 104395, 114182 -> 114181, 114481 -> 114482, 126310 -> 126320, 133902 -> 133903", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92268, + "TargetID": 92267, + "Directional": false + }, + { + "SourceID": 104394, + "TargetID": 104395, + "Directional": false + }, + { + "SourceID": 114182, + "TargetID": 114181, + "Directional": false + }, + { + "SourceID": 114481, + "TargetID": 114482, + "Directional": false + }, + { + "SourceID": 126310, + "TargetID": 126320, + "Directional": false + }, + { + "SourceID": 133902, + "TargetID": 133903, + "Directional": false + } + ] + }, + { + "ID": 1927, + "SourceStructureID": 5278, + "TargetStructureID": 15796, + "Label": "5278-15796 via Unknown from 97941 -> 97942", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97941, + "TargetID": 97942, + "Directional": false + } + ] + }, + { + "ID": 1928, + "SourceStructureID": 16073, + "TargetStructureID": 5278, + "Label": "16073-5278 via Unknown from 99593 -> 99594, 133879 -> 133878", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99593, + "TargetID": 99594, + "Directional": false + }, + { + "SourceID": 133879, + "TargetID": 133878, + "Directional": false + } + ] + }, + { + "ID": 1929, + "SourceStructureID": 21299, + "TargetStructureID": 5278, + "Label": "21299-5278 via Adherens from 48827 -> 48828", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 48827, + "TargetID": 48828, + "Directional": false + } + ] + }, + { + "ID": 1930, + "SourceStructureID": 5278, + "TargetStructureID": 35894, + "Label": "5278-35894 via Unknown from 100461 -> 100462", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100461, + "TargetID": 100462, + "Directional": false + } + ] + }, + { + "ID": 1931, + "SourceStructureID": 39192, + "TargetStructureID": 5278, + "Label": "39192-5278 via Unknown from 104200 -> 104198", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104200, + "TargetID": 104198, + "Directional": false + } + ] + }, + { + "ID": 1932, + "SourceStructureID": 5278, + "TargetStructureID": 73363, + "Label": "5278-73363 via Unknown from 91633 -> 91632", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91633, + "TargetID": 91632, + "Directional": false + } + ] + }, + { + "ID": 1933, + "SourceStructureID": 5278, + "TargetStructureID": 73380, + "Label": "5278-73380 via Unknown from 92283 -> 92286", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92283, + "TargetID": 92286, + "Directional": false + } + ] + }, + { + "ID": 1934, + "SourceStructureID": 86042, + "TargetStructureID": 5278, + "Label": "86042-5278 via Unknown from 104226 -> 104225", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104226, + "TargetID": 104225, + "Directional": false + } + ] + }, + { + "ID": 1935, + "SourceStructureID": 90217, + "TargetStructureID": 5278, + "Label": "90217-5278 via Unknown from 104230 -> 104231", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104230, + "TargetID": 104231, + "Directional": false + } + ] + }, + { + "ID": 1936, + "SourceStructureID": 91613, + "TargetStructureID": 5278, + "Label": "91613-5278 via Adherens from 91615 -> 91616", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91615, + "TargetID": 91616, + "Directional": false + } + ] + }, + { + "ID": 1937, + "SourceStructureID": 91634, + "TargetStructureID": 5278, + "Label": "91634-5278 via Adherens from 91637 -> 91638", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91637, + "TargetID": 91638, + "Directional": false + } + ] + }, + { + "ID": 1938, + "SourceStructureID": 5278, + "TargetStructureID": 91639, + "Label": "5278-91639 via Gap Junction from 91640 -> 91641", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91640, + "TargetID": 91641, + "Directional": false + } + ] + }, + { + "ID": 1939, + "SourceStructureID": 5278, + "TargetStructureID": 92008, + "Label": "5278-92008 via Unknown from 92010 -> 92009", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92010, + "TargetID": 92009, + "Directional": false + } + ] + }, + { + "ID": 1940, + "SourceStructureID": 92098, + "TargetStructureID": 5278, + "Label": "92098-5278 via Unknown from 92099 -> 92097", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92099, + "TargetID": 92097, + "Directional": false + } + ] + }, + { + "ID": 1941, + "SourceStructureID": 5278, + "TargetStructureID": 92100, + "Label": "5278-92100 via Adherens from 20033 -> 92101", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 20033, + "TargetID": 92101, + "Directional": false + } + ] + }, + { + "ID": 1942, + "SourceStructureID": 92103, + "TargetStructureID": 5278, + "Label": "92103-5278 via Unknown from 92104 -> 92102", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92104, + "TargetID": 92102, + "Directional": false + } + ] + }, + { + "ID": 1943, + "SourceStructureID": 5278, + "TargetStructureID": 92116, + "Label": "5278-92116 via Adherens from 92119 -> 92118", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92119, + "TargetID": 92118, + "Directional": false + } + ] + }, + { + "ID": 1944, + "SourceStructureID": 5278, + "TargetStructureID": 92116, + "Label": "5278-92116 via Gap Junction from 20111 -> 92117", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 20111, + "TargetID": 92117, + "Directional": false + } + ] + }, + { + "ID": 1945, + "SourceStructureID": 92121, + "TargetStructureID": 5278, + "Label": "92121-5278 via Unknown from 92122 -> 92120", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92122, + "TargetID": 92120, + "Directional": false + } + ] + }, + { + "ID": 1946, + "SourceStructureID": 92149, + "TargetStructureID": 5278, + "Label": "92149-5278 via Unknown from 147278 -> 147277", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147278, + "TargetID": 147277, + "Directional": false + } + ] + }, + { + "ID": 1947, + "SourceStructureID": 92169, + "TargetStructureID": 5278, + "Label": "92169-5278 via Unknown from 92170 -> 92168, 92281 -> 92282", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92170, + "TargetID": 92168, + "Directional": false + }, + { + "SourceID": 92281, + "TargetID": 92282, + "Directional": false + } + ] + }, + { + "ID": 1948, + "SourceStructureID": 5278, + "TargetStructureID": 92175, + "Label": "5278-92175 via Unknown from 92174 -> 92176", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92174, + "TargetID": 92176, + "Directional": false + } + ] + }, + { + "ID": 1949, + "SourceStructureID": 92183, + "TargetStructureID": 5278, + "Label": "92183-5278 via Unknown from 92184 -> 92182", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92184, + "TargetID": 92182, + "Directional": false + } + ] + }, + { + "ID": 1950, + "SourceStructureID": 92186, + "TargetStructureID": 5278, + "Label": "92186-5278 via Unknown from 92187 -> 92185, 92189 -> 92188", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92187, + "TargetID": 92185, + "Directional": false + }, + { + "SourceID": 92189, + "TargetID": 92188, + "Directional": false + } + ] + }, + { + "ID": 1951, + "SourceStructureID": 92207, + "TargetStructureID": 5278, + "Label": "92207-5278 via Unknown from 92208 -> 92202", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92208, + "TargetID": 92202, + "Directional": false + } + ] + }, + { + "ID": 1952, + "SourceStructureID": 92272, + "TargetStructureID": 5278, + "Label": "92272-5278 via Adherens from 104813 -> 104814, 104831 -> 104832, 133906 -> 133907", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104813, + "TargetID": 104814, + "Directional": false + }, + { + "SourceID": 104831, + "TargetID": 104832, + "Directional": false + }, + { + "SourceID": 133906, + "TargetID": 133907, + "Directional": false + } + ] + }, + { + "ID": 1953, + "SourceStructureID": 5278, + "TargetStructureID": 92272, + "Label": "5278-92272 via Gap Junction from 147279 -> 147280", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 147279, + "TargetID": 147280, + "Directional": false + } + ] + }, + { + "ID": 1954, + "SourceStructureID": 92280, + "TargetStructureID": 5278, + "Label": "92280-5278 via Adherens from 104846 -> 104847", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104846, + "TargetID": 104847, + "Directional": false + } + ] + }, + { + "ID": 1955, + "SourceStructureID": 92295, + "TargetStructureID": 5278, + "Label": "92295-5278 via Adherens from 127677 -> 127676, 147321 -> 147322", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127677, + "TargetID": 127676, + "Directional": false + }, + { + "SourceID": 147321, + "TargetID": 147322, + "Directional": false + } + ] + }, + { + "ID": 1956, + "SourceStructureID": 92295, + "TargetStructureID": 5278, + "Label": "92295-5278 via Gap Junction from 147263 -> 147264", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 147263, + "TargetID": 147264, + "Directional": false + } + ] + }, + { + "ID": 1957, + "SourceStructureID": 92295, + "TargetStructureID": 5278, + "Label": "92295-5278 via Unknown from 114291 -> 114290", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114291, + "TargetID": 114290, + "Directional": false + } + ] + }, + { + "ID": 1958, + "SourceStructureID": 93413, + "TargetStructureID": 5278, + "Label": "93413-5278 via Unknown from 114506 -> 114507", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114506, + "TargetID": 114507, + "Directional": false + } + ] + }, + { + "ID": 1959, + "SourceStructureID": 5278, + "TargetStructureID": 95824, + "Label": "5278-95824 via Adherens from 100464 -> 100473", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100464, + "TargetID": 100473, + "Directional": false + } + ] + }, + { + "ID": 1960, + "SourceStructureID": 5278, + "TargetStructureID": 95824, + "Label": "5278-95824 via Unknown from 100529 -> 100530", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100529, + "TargetID": 100530, + "Directional": false + } + ] + }, + { + "ID": 1961, + "SourceStructureID": 5278, + "TargetStructureID": 96446, + "Label": "5278-96446 via Unknown from 104419 -> 104418", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104419, + "TargetID": 104418, + "Directional": false + } + ] + }, + { + "ID": 1962, + "SourceStructureID": 5278, + "TargetStructureID": 97853, + "Label": "5278-97853 via Adherens from 97861 -> 97862", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97861, + "TargetID": 97862, + "Directional": false + } + ] + }, + { + "ID": 1963, + "SourceStructureID": 5278, + "TargetStructureID": 97947, + "Label": "5278-97947 via Unknown from 97949 -> 97948", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97949, + "TargetID": 97948, + "Directional": false + } + ] + }, + { + "ID": 1964, + "SourceStructureID": 5278, + "TargetStructureID": 97951, + "Label": "5278-97951 via Adherens from 133880 -> 133881", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133880, + "TargetID": 133881, + "Directional": false + } + ] + }, + { + "ID": 1965, + "SourceStructureID": 5278, + "TargetStructureID": 98821, + "Label": "5278-98821 via Unknown from 98820 -> 98822", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98820, + "TargetID": 98822, + "Directional": false + } + ] + }, + { + "ID": 1966, + "SourceStructureID": 5278, + "TargetStructureID": 98823, + "Label": "5278-98823 via Unknown from 98829 -> 98828", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98829, + "TargetID": 98828, + "Directional": false + } + ] + }, + { + "ID": 1967, + "SourceStructureID": 5278, + "TargetStructureID": 98830, + "Label": "5278-98830 via Adherens from 20044 -> 98831", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 20044, + "TargetID": 98831, + "Directional": false + } + ] + }, + { + "ID": 1968, + "SourceStructureID": 5278, + "TargetStructureID": 98830, + "Label": "5278-98830 via Gap Junction from 99251 -> 99252", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 99251, + "TargetID": 99252, + "Directional": false + } + ] + }, + { + "ID": 1969, + "SourceStructureID": 5278, + "TargetStructureID": 98833, + "Label": "5278-98833 via Adherens from 99280 -> 99281", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99280, + "TargetID": 99281, + "Directional": false + } + ] + }, + { + "ID": 1970, + "SourceStructureID": 5278, + "TargetStructureID": 99262, + "Label": "5278-99262 via Unknown from 92713 -> 99272", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92713, + "TargetID": 99272, + "Directional": false + } + ] + }, + { + "ID": 1971, + "SourceStructureID": 99274, + "TargetStructureID": 5278, + "Label": "99274-5278 via Unknown from 99275 -> 99276", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99275, + "TargetID": 99276, + "Directional": false + } + ] + }, + { + "ID": 1972, + "SourceStructureID": 99290, + "TargetStructureID": 5278, + "Label": "99290-5278 via Unknown from 99291 -> 92109", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99291, + "TargetID": 92109, + "Directional": false + } + ] + }, + { + "ID": 1973, + "SourceStructureID": 5278, + "TargetStructureID": 99293, + "Label": "5278-99293 via Unknown from 99292 -> 99294", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99292, + "TargetID": 99294, + "Directional": false + } + ] + }, + { + "ID": 1974, + "SourceStructureID": 5278, + "TargetStructureID": 99305, + "Label": "5278-99305 via Unknown from 99304 -> 99306", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99304, + "TargetID": 99306, + "Directional": false + } + ] + }, + { + "ID": 1975, + "SourceStructureID": 99596, + "TargetStructureID": 5278, + "Label": "99596-5278 via Unknown from 99599 -> 99598", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99599, + "TargetID": 99598, + "Directional": false + } + ] + }, + { + "ID": 1976, + "SourceStructureID": 5278, + "TargetStructureID": 99749, + "Label": "5278-99749 via Adherens from 20090 -> 104863, 99752 -> 99748, 99767 -> 99768", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 20090, + "TargetID": 104863, + "Directional": false + }, + { + "SourceID": 99752, + "TargetID": 99748, + "Directional": false + }, + { + "SourceID": 99767, + "TargetID": 99768, + "Directional": false + } + ] + }, + { + "ID": 1977, + "SourceStructureID": 99771, + "TargetStructureID": 5278, + "Label": "99771-5278 via Adherens from 99775 -> 20087, 99780 -> 99782", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99775, + "TargetID": 20087, + "Directional": false + }, + { + "SourceID": 99780, + "TargetID": 99782, + "Directional": false + } + ] + }, + { + "ID": 1978, + "SourceStructureID": 99789, + "TargetStructureID": 5278, + "Label": "99789-5278 via Unknown from 99790 -> 99791", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99790, + "TargetID": 99791, + "Directional": false + } + ] + }, + { + "ID": 1979, + "SourceStructureID": 5278, + "TargetStructureID": 99795, + "Label": "5278-99795 via Gap Junction from 20154 -> 115403", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 20154, + "TargetID": 115403, + "Directional": false + } + ] + }, + { + "ID": 1980, + "SourceStructureID": 5278, + "TargetStructureID": 100124, + "Label": "5278-100124 via Adherens from 100126 -> 100125", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100126, + "TargetID": 100125, + "Directional": false + } + ] + }, + { + "ID": 1981, + "SourceStructureID": 100210, + "TargetStructureID": 5278, + "Label": "100210-5278 via Gap Junction from 100216 -> 100215", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 100216, + "TargetID": 100215, + "Directional": false + } + ] + }, + { + "ID": 1982, + "SourceStructureID": 100210, + "TargetStructureID": 5278, + "Label": "100210-5278 via Unknown from 147268 -> 147267", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147268, + "TargetID": 147267, + "Directional": false + } + ] + }, + { + "ID": 1983, + "SourceStructureID": 5278, + "TargetStructureID": 100231, + "Label": "5278-100231 via Unknown from 100232 -> 100233", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100232, + "TargetID": 100233, + "Directional": false + } + ] + }, + { + "ID": 1984, + "SourceStructureID": 5278, + "TargetStructureID": 100360, + "Label": "5278-100360 via Adherens from 20205 -> 100361", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 20205, + "TargetID": 100361, + "Directional": false + } + ] + }, + { + "ID": 1985, + "SourceStructureID": 5278, + "TargetStructureID": 100414, + "Label": "5278-100414 via Adherens from 20131 -> 100430", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 20131, + "TargetID": 100430, + "Directional": false + } + ] + }, + { + "ID": 1986, + "SourceStructureID": 100476, + "TargetStructureID": 5278, + "Label": "100476-5278 via Adherens from 100483 -> 100484", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100483, + "TargetID": 100484, + "Directional": false + } + ] + }, + { + "ID": 1987, + "SourceStructureID": 5278, + "TargetStructureID": 100496, + "Label": "5278-100496 via Unknown from 147253 -> 147254", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147253, + "TargetID": 147254, + "Directional": false + } + ] + }, + { + "ID": 1988, + "SourceStructureID": 100788, + "TargetStructureID": 5278, + "Label": "100788-5278 via Adherens from 100800 -> 100801", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100800, + "TargetID": 100801, + "Directional": false + } + ] + }, + { + "ID": 1989, + "SourceStructureID": 5278, + "TargetStructureID": 100797, + "Label": "5278-100797 via Unknown from 100799 -> 100798", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100799, + "TargetID": 100798, + "Directional": false + } + ] + }, + { + "ID": 1990, + "SourceStructureID": 5278, + "TargetStructureID": 100803, + "Label": "5278-100803 via Adherens from 100812 -> 100814", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100812, + "TargetID": 100814, + "Directional": false + } + ] + }, + { + "ID": 1991, + "SourceStructureID": 5278, + "TargetStructureID": 100807, + "Label": "5278-100807 via Unknown from 100811 -> 100810", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100811, + "TargetID": 100810, + "Directional": false + } + ] + }, + { + "ID": 1992, + "SourceStructureID": 5278, + "TargetStructureID": 103964, + "Label": "5278-103964 via Unknown from 103966 -> 103967", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103966, + "TargetID": 103967, + "Directional": false + } + ] + }, + { + "ID": 1993, + "SourceStructureID": 5278, + "TargetStructureID": 103992, + "Label": "5278-103992 via Adherens from 103995 -> 103994, 103997 -> 103998", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103995, + "TargetID": 103994, + "Directional": false + }, + { + "SourceID": 103997, + "TargetID": 103998, + "Directional": false + } + ] + }, + { + "ID": 1994, + "SourceStructureID": 5278, + "TargetStructureID": 104032, + "Label": "5278-104032 via Unknown from 104031 -> 104033", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104031, + "TargetID": 104033, + "Directional": false + } + ] + }, + { + "ID": 1995, + "SourceStructureID": 5278, + "TargetStructureID": 104053, + "Label": "5278-104053 via Adherens from 104052 -> 104054", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104052, + "TargetID": 104054, + "Directional": false + } + ] + }, + { + "ID": 1996, + "SourceStructureID": 104057, + "TargetStructureID": 5278, + "Label": "104057-5278 via Unknown from 104059 -> 104060", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104059, + "TargetID": 104060, + "Directional": false + } + ] + }, + { + "ID": 1997, + "SourceStructureID": 104062, + "TargetStructureID": 5278, + "Label": "104062-5278 via Adherens from 104866 -> 92161", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104866, + "TargetID": 92161, + "Directional": false + } + ] + }, + { + "ID": 1998, + "SourceStructureID": 104072, + "TargetStructureID": 5278, + "Label": "104072-5278 via Unknown from 104073 -> 104071", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104073, + "TargetID": 104071, + "Directional": false + } + ] + }, + { + "ID": 1999, + "SourceStructureID": 104139, + "TargetStructureID": 5278, + "Label": "104139-5278 via Unknown from 104141 -> 104142", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104141, + "TargetID": 104142, + "Directional": false + } + ] + }, + { + "ID": 2000, + "SourceStructureID": 104143, + "TargetStructureID": 5278, + "Label": "104143-5278 via Adherens from 104144 -> 104146", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104144, + "TargetID": 104146, + "Directional": false + } + ] + }, + { + "ID": 2001, + "SourceStructureID": 104151, + "TargetStructureID": 5278, + "Label": "104151-5278 via Adherens from 104163 -> 104164", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104163, + "TargetID": 104164, + "Directional": false + } + ] + }, + { + "ID": 2002, + "SourceStructureID": 104170, + "TargetStructureID": 5278, + "Label": "104170-5278 via Adherens from 104171 -> 104172", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104171, + "TargetID": 104172, + "Directional": false + } + ] + }, + { + "ID": 2003, + "SourceStructureID": 104190, + "TargetStructureID": 5278, + "Label": "104190-5278 via Unknown from 104191 -> 104192", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104191, + "TargetID": 104192, + "Directional": false + } + ] + }, + { + "ID": 2004, + "SourceStructureID": 5278, + "TargetStructureID": 104232, + "Label": "5278-104232 via Unknown from 104234 -> 104233", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104234, + "TargetID": 104233, + "Directional": false + } + ] + }, + { + "ID": 2005, + "SourceStructureID": 5278, + "TargetStructureID": 104236, + "Label": "5278-104236 via Unknown from 104238 -> 104237", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104238, + "TargetID": 104237, + "Directional": false + } + ] + }, + { + "ID": 2006, + "SourceStructureID": 5278, + "TargetStructureID": 104292, + "Label": "5278-104292 via Unknown from 104290 -> 104294", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104290, + "TargetID": 104294, + "Directional": false + } + ] + }, + { + "ID": 2007, + "SourceStructureID": 5278, + "TargetStructureID": 104295, + "Label": "5278-104295 via Adherens from 104296 -> 104297", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104296, + "TargetID": 104297, + "Directional": false + } + ] + }, + { + "ID": 2008, + "SourceStructureID": 5278, + "TargetStructureID": 104324, + "Label": "5278-104324 via Unknown from 92261 -> 104356, 147256 -> 147255", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92261, + "TargetID": 104356, + "Directional": false + }, + { + "SourceID": 147256, + "TargetID": 147255, + "Directional": false + } + ] + }, + { + "ID": 2009, + "SourceStructureID": 104327, + "TargetStructureID": 5278, + "Label": "104327-5278 via Adherens from 104328 -> 104329", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104328, + "TargetID": 104329, + "Directional": false + } + ] + }, + { + "ID": 2010, + "SourceStructureID": 5278, + "TargetStructureID": 104337, + "Label": "5278-104337 via Adherens from 104338 -> 104339", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104338, + "TargetID": 104339, + "Directional": false + } + ] + }, + { + "ID": 2011, + "SourceStructureID": 5278, + "TargetStructureID": 104377, + "Label": "5278-104377 via Adherens from 104378 -> 104379", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104378, + "TargetID": 104379, + "Directional": false + } + ] + }, + { + "ID": 2012, + "SourceStructureID": 104391, + "TargetStructureID": 5278, + "Label": "104391-5278 via Unknown from 104392 -> 104393", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104392, + "TargetID": 104393, + "Directional": false + } + ] + }, + { + "ID": 2013, + "SourceStructureID": 5278, + "TargetStructureID": 104512, + "Label": "5278-104512 via Adherens from 104511 -> 104513", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104511, + "TargetID": 104513, + "Directional": false + } + ] + }, + { + "ID": 2014, + "SourceStructureID": 5278, + "TargetStructureID": 104530, + "Label": "5278-104530 via Adherens from 104537 -> 104536", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104537, + "TargetID": 104536, + "Directional": false + } + ] + }, + { + "ID": 2015, + "SourceStructureID": 5278, + "TargetStructureID": 104587, + "Label": "5278-104587 via Adherens from 104588 -> 104589", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104588, + "TargetID": 104589, + "Directional": false + } + ] + }, + { + "ID": 2016, + "SourceStructureID": 5278, + "TargetStructureID": 104815, + "Label": "5278-104815 via Unknown from 104818 -> 104819", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104818, + "TargetID": 104819, + "Directional": false + } + ] + }, + { + "ID": 2017, + "SourceStructureID": 5278, + "TargetStructureID": 120898, + "Label": "5278-120898 via Unknown from 114525 -> 120899", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114525, + "TargetID": 120899, + "Directional": false + } + ] + }, + { + "ID": 2018, + "SourceStructureID": 136728, + "TargetStructureID": 5278, + "Label": "136728-5278 via Adherens from 147271 -> 147272", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147271, + "TargetID": 147272, + "Directional": false + } + ] + }, + { + "ID": 2019, + "SourceStructureID": 136731, + "TargetStructureID": 5278, + "Label": "136731-5278 via Adherens from 147273 -> 114531", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147273, + "TargetID": 114531, + "Directional": false + } + ] + }, + { + "ID": 2020, + "SourceStructureID": 136731, + "TargetStructureID": 5278, + "Label": "136731-5278 via Gap Junction from 136732 -> 56585", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136732, + "TargetID": 56585, + "Directional": false + } + ] + }, + { + "ID": 2021, + "SourceStructureID": 136733, + "TargetStructureID": 5278, + "Label": "136733-5278 via Adherens from 147259 -> 114205", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147259, + "TargetID": 114205, + "Directional": false + } + ] + }, + { + "ID": 2022, + "SourceStructureID": 136733, + "TargetStructureID": 5278, + "Label": "136733-5278 via Unknown from 147258 -> 147257", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147258, + "TargetID": 147257, + "Directional": false + } + ] + }, + { + "ID": 2023, + "SourceStructureID": 5279, + "TargetStructureID": 5279, + "Label": "5279-5279 via Adherens from 49262 -> 49249", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 49262, + "TargetID": 49249, + "Directional": false + } + ] + }, + { + "ID": 2024, + "SourceStructureID": 5279, + "TargetStructureID": 5280, + "Label": "5279-5280 via Adherens from 96388 -> 96389", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96388, + "TargetID": 96389, + "Directional": false + } + ] + }, + { + "ID": 2025, + "SourceStructureID": 5279, + "TargetStructureID": 5280, + "Label": "5279-5280 via Unknown from 96401 -> 96400", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96401, + "TargetID": 96400, + "Directional": false + } + ] + }, + { + "ID": 2026, + "SourceStructureID": 5292, + "TargetStructureID": 5279, + "Label": "5292-5279 via Adherens from 131185 -> 131186", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131185, + "TargetID": 131186, + "Directional": false + } + ] + }, + { + "ID": 2027, + "SourceStructureID": 5292, + "TargetStructureID": 5279, + "Label": "5292-5279 via Gap Junction from 51550 -> 49266", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51550, + "TargetID": 49266, + "Directional": false + } + ] + }, + { + "ID": 2028, + "SourceStructureID": 5297, + "TargetStructureID": 5279, + "Label": "5297-5279 via Gap Junction from 92308 -> 92292", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92308, + "TargetID": 92292, + "Directional": false + } + ] + }, + { + "ID": 2029, + "SourceStructureID": 5279, + "TargetStructureID": 5517, + "Label": "5279-5517 via Gap Junction from 49267 -> 49275", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49267, + "TargetID": 49275, + "Directional": false + } + ] + }, + { + "ID": 2030, + "SourceStructureID": 6117, + "TargetStructureID": 5279, + "Label": "6117-5279 via Gap Junction from 97142 -> 97141, 98034 -> 98033, 133845 -> 133844, 133847 -> 133846", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 97142, + "TargetID": 97141, + "Directional": false + }, + { + "SourceID": 98034, + "TargetID": 98033, + "Directional": false + }, + { + "SourceID": 133845, + "TargetID": 133844, + "Directional": false + }, + { + "SourceID": 133847, + "TargetID": 133846, + "Directional": false + } + ] + }, + { + "ID": 2031, + "SourceStructureID": 6169, + "TargetStructureID": 5279, + "Label": "6169-5279 via Gap Junction from 9469 -> 92670, 49239 -> 47143, 49241 -> 49242, 92667 -> 9470", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 9469, + "TargetID": 92670, + "Directional": false + }, + { + "SourceID": 49239, + "TargetID": 47143, + "Directional": false + }, + { + "SourceID": 49241, + "TargetID": 49242, + "Directional": false + }, + { + "SourceID": 92667, + "TargetID": 9470, + "Directional": false + } + ] + }, + { + "ID": 2032, + "SourceStructureID": 5279, + "TargetStructureID": 9347, + "Label": "5279-9347 via Unknown from 96458 -> 96457", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96458, + "TargetID": 96457, + "Directional": false + } + ] + }, + { + "ID": 2033, + "SourceStructureID": 5279, + "TargetStructureID": 20136, + "Label": "5279-20136 via Gap Junction from 49514 -> 49515, 147952 -> 49263", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49514, + "TargetID": 49515, + "Directional": false + }, + { + "SourceID": 147952, + "TargetID": 49263, + "Directional": false + } + ] + }, + { + "ID": 2034, + "SourceStructureID": 5279, + "TargetStructureID": 39957, + "Label": "5279-39957 via Adherens from 97626 -> 97625, 133769 -> 133770", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97626, + "TargetID": 97625, + "Directional": false + }, + { + "SourceID": 133769, + "TargetID": 133770, + "Directional": false + } + ] + }, + { + "ID": 2035, + "SourceStructureID": 5279, + "TargetStructureID": 39957, + "Label": "5279-39957 via Unknown from 133771 -> 133772", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133771, + "TargetID": 133772, + "Directional": false + } + ] + }, + { + "ID": 2036, + "SourceStructureID": 41009, + "TargetStructureID": 5279, + "Label": "41009-5279 via Adherens from 96479 -> 96478", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96479, + "TargetID": 96478, + "Directional": false + } + ] + }, + { + "ID": 2037, + "SourceStructureID": 55347, + "TargetStructureID": 5279, + "Label": "55347-5279 via Adherens from 97595 -> 97594", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97595, + "TargetID": 97594, + "Directional": false + } + ] + }, + { + "ID": 2038, + "SourceStructureID": 55347, + "TargetStructureID": 5279, + "Label": "55347-5279 via Unknown from 97593 -> 97592", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97593, + "TargetID": 97592, + "Directional": false + } + ] + }, + { + "ID": 2039, + "SourceStructureID": 56841, + "TargetStructureID": 5279, + "Label": "56841-5279 via Unknown from 99219 -> 99220", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99219, + "TargetID": 99220, + "Directional": false + } + ] + }, + { + "ID": 2040, + "SourceStructureID": 5279, + "TargetStructureID": 57027, + "Label": "5279-57027 via Unknown from 99130 -> 99131", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99130, + "TargetID": 99131, + "Directional": false + } + ] + }, + { + "ID": 2041, + "SourceStructureID": 5279, + "TargetStructureID": 59012, + "Label": "5279-59012 via Adherens from 92698 -> 92697", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92698, + "TargetID": 92697, + "Directional": false + } + ] + }, + { + "ID": 2042, + "SourceStructureID": 5279, + "TargetStructureID": 61836, + "Label": "5279-61836 via Unknown from 133773 -> 133774", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133773, + "TargetID": 133774, + "Directional": false + } + ] + }, + { + "ID": 2043, + "SourceStructureID": 68663, + "TargetStructureID": 5279, + "Label": "68663-5279 via Conventional from 97281 -> 97282", + "Type": "Conventional", + "Directional": false, + "Links": [ + { + "SourceID": 97281, + "TargetID": 97282, + "Directional": false + } + ] + }, + { + "ID": 2044, + "SourceStructureID": 5279, + "TargetStructureID": 85974, + "Label": "5279-85974 via Adherens from 85976 -> 85975", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85976, + "TargetID": 85975, + "Directional": false + } + ] + }, + { + "ID": 2045, + "SourceStructureID": 91634, + "TargetStructureID": 5279, + "Label": "91634-5279 via Adherens from 92656 -> 92655", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92656, + "TargetID": 92655, + "Directional": false + } + ] + }, + { + "ID": 2046, + "SourceStructureID": 5279, + "TargetStructureID": 92183, + "Label": "5279-92183 via Unknown from 96455 -> 96456", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96455, + "TargetID": 96456, + "Directional": false + } + ] + }, + { + "ID": 2047, + "SourceStructureID": 92207, + "TargetStructureID": 5279, + "Label": "92207-5279 via Unknown from 126098 -> 126097", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126098, + "TargetID": 126097, + "Directional": false + } + ] + }, + { + "ID": 2048, + "SourceStructureID": 5279, + "TargetStructureID": 92295, + "Label": "5279-92295 via Adherens from 126427 -> 127680", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126427, + "TargetID": 127680, + "Directional": false + } + ] + }, + { + "ID": 2049, + "SourceStructureID": 5279, + "TargetStructureID": 92535, + "Label": "5279-92535 via Adherens from 133833 -> 133834", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133833, + "TargetID": 133834, + "Directional": false + } + ] + }, + { + "ID": 2050, + "SourceStructureID": 92542, + "TargetStructureID": 5279, + "Label": "92542-5279 via Unknown from 92543 -> 92541", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92543, + "TargetID": 92541, + "Directional": false + } + ] + }, + { + "ID": 2051, + "SourceStructureID": 92553, + "TargetStructureID": 5279, + "Label": "92553-5279 via Unknown from 92554 -> 92552", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92554, + "TargetID": 92552, + "Directional": false + } + ] + }, + { + "ID": 2052, + "SourceStructureID": 5279, + "TargetStructureID": 92631, + "Label": "5279-92631 via Unknown from 92630 -> 92632", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92630, + "TargetID": 92632, + "Directional": false + } + ] + }, + { + "ID": 2053, + "SourceStructureID": 92681, + "TargetStructureID": 5279, + "Label": "92681-5279 via Adherens from 92686 -> 92678", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92686, + "TargetID": 92678, + "Directional": false + } + ] + }, + { + "ID": 2054, + "SourceStructureID": 92681, + "TargetStructureID": 5279, + "Label": "92681-5279 via Unknown from 92685 -> 92679", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92685, + "TargetID": 92679, + "Directional": false + } + ] + }, + { + "ID": 2055, + "SourceStructureID": 5279, + "TargetStructureID": 92695, + "Label": "5279-92695 via Unknown from 92694 -> 92696", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92694, + "TargetID": 92696, + "Directional": false + } + ] + }, + { + "ID": 2056, + "SourceStructureID": 92705, + "TargetStructureID": 5279, + "Label": "92705-5279 via Unknown from 92706 -> 92707", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92706, + "TargetID": 92707, + "Directional": false + } + ] + }, + { + "ID": 2057, + "SourceStructureID": 5279, + "TargetStructureID": 92715, + "Label": "5279-92715 via Unknown from 133796 -> 133797", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133796, + "TargetID": 133797, + "Directional": false + } + ] + }, + { + "ID": 2058, + "SourceStructureID": 5279, + "TargetStructureID": 96370, + "Label": "5279-96370 via Adherens from 96372 -> 96371", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96372, + "TargetID": 96371, + "Directional": false + } + ] + }, + { + "ID": 2059, + "SourceStructureID": 5279, + "TargetStructureID": 96385, + "Label": "5279-96385 via Unknown from 96387 -> 96386", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96387, + "TargetID": 96386, + "Directional": false + } + ] + }, + { + "ID": 2060, + "SourceStructureID": 5279, + "TargetStructureID": 96403, + "Label": "5279-96403 via Adherens from 96406 -> 96405", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96406, + "TargetID": 96405, + "Directional": false + } + ] + }, + { + "ID": 2061, + "SourceStructureID": 96407, + "TargetStructureID": 5279, + "Label": "96407-5279 via Adherens from 96409 -> 96408", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96409, + "TargetID": 96408, + "Directional": false + } + ] + }, + { + "ID": 2062, + "SourceStructureID": 5279, + "TargetStructureID": 96429, + "Label": "5279-96429 via Adherens from 96432 -> 96430", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96432, + "TargetID": 96430, + "Directional": false + } + ] + }, + { + "ID": 2063, + "SourceStructureID": 96446, + "TargetStructureID": 5279, + "Label": "96446-5279 via Adherens from 147960 -> 147961", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147960, + "TargetID": 147961, + "Directional": false + } + ] + }, + { + "ID": 2064, + "SourceStructureID": 5279, + "TargetStructureID": 96450, + "Label": "5279-96450 via Unknown from 96451 -> 96452", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96451, + "TargetID": 96452, + "Directional": false + } + ] + }, + { + "ID": 2065, + "SourceStructureID": 5279, + "TargetStructureID": 96459, + "Label": "5279-96459 via Unknown from 96461 -> 96460", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96461, + "TargetID": 96460, + "Directional": false + } + ] + }, + { + "ID": 2066, + "SourceStructureID": 5279, + "TargetStructureID": 96489, + "Label": "5279-96489 via Unknown from 96492 -> 96491", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96492, + "TargetID": 96491, + "Directional": false + } + ] + }, + { + "ID": 2067, + "SourceStructureID": 5279, + "TargetStructureID": 97054, + "Label": "5279-97054 via Unknown from 97055 -> 97056", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97055, + "TargetID": 97056, + "Directional": false + } + ] + }, + { + "ID": 2068, + "SourceStructureID": 5279, + "TargetStructureID": 97113, + "Label": "5279-97113 via Unknown from 97115 -> 97114, 97117 -> 97118", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97115, + "TargetID": 97114, + "Directional": false + }, + { + "SourceID": 97117, + "TargetID": 97118, + "Directional": false + } + ] + }, + { + "ID": 2069, + "SourceStructureID": 5279, + "TargetStructureID": 97190, + "Label": "5279-97190 via Unknown from 97192 -> 97191", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97192, + "TargetID": 97191, + "Directional": false + } + ] + }, + { + "ID": 2070, + "SourceStructureID": 5279, + "TargetStructureID": 97193, + "Label": "5279-97193 via Unknown from 97197 -> 97196", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97197, + "TargetID": 97196, + "Directional": false + } + ] + }, + { + "ID": 2071, + "SourceStructureID": 97269, + "TargetStructureID": 5279, + "Label": "97269-5279 via Unknown from 97273 -> 97274", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97273, + "TargetID": 97274, + "Directional": false + } + ] + }, + { + "ID": 2072, + "SourceStructureID": 97286, + "TargetStructureID": 5279, + "Label": "97286-5279 via Unknown from 97289 -> 97288", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97289, + "TargetID": 97288, + "Directional": false + } + ] + }, + { + "ID": 2073, + "SourceStructureID": 97311, + "TargetStructureID": 5279, + "Label": "97311-5279 via Unknown from 133776 -> 133775", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133776, + "TargetID": 133775, + "Directional": false + } + ] + }, + { + "ID": 2074, + "SourceStructureID": 97358, + "TargetStructureID": 5279, + "Label": "97358-5279 via Adherens from 133777 -> 133791", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133777, + "TargetID": 133791, + "Directional": false + } + ] + }, + { + "ID": 2075, + "SourceStructureID": 97363, + "TargetStructureID": 5279, + "Label": "97363-5279 via Unknown from 97365 -> 97364", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97365, + "TargetID": 97364, + "Directional": false + } + ] + }, + { + "ID": 2076, + "SourceStructureID": 5279, + "TargetStructureID": 97600, + "Label": "5279-97600 via Adherens from 97602 -> 97601", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97602, + "TargetID": 97601, + "Directional": false + } + ] + }, + { + "ID": 2077, + "SourceStructureID": 5279, + "TargetStructureID": 97600, + "Label": "5279-97600 via Unknown from 133792 -> 133793", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133792, + "TargetID": 133793, + "Directional": false + } + ] + }, + { + "ID": 2078, + "SourceStructureID": 97646, + "TargetStructureID": 5279, + "Label": "97646-5279 via Adherens from 98012 -> 98011", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98012, + "TargetID": 98011, + "Directional": false + } + ] + }, + { + "ID": 2079, + "SourceStructureID": 98008, + "TargetStructureID": 5279, + "Label": "98008-5279 via Unknown from 98010 -> 98009", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98010, + "TargetID": 98009, + "Directional": false + } + ] + }, + { + "ID": 2080, + "SourceStructureID": 5279, + "TargetStructureID": 98041, + "Label": "5279-98041 via Adherens from 98055 -> 98052", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98055, + "TargetID": 98052, + "Directional": false + } + ] + }, + { + "ID": 2081, + "SourceStructureID": 5279, + "TargetStructureID": 98100, + "Label": "5279-98100 via Adherens from 133841 -> 133842", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133841, + "TargetID": 133842, + "Directional": false + } + ] + }, + { + "ID": 2082, + "SourceStructureID": 5279, + "TargetStructureID": 98106, + "Label": "5279-98106 via Adherens from 133840 -> 133839", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133840, + "TargetID": 133839, + "Directional": false + } + ] + }, + { + "ID": 2083, + "SourceStructureID": 5279, + "TargetStructureID": 98111, + "Label": "5279-98111 via Unknown from 133795 -> 133794", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133795, + "TargetID": 133794, + "Directional": false + } + ] + }, + { + "ID": 2084, + "SourceStructureID": 5279, + "TargetStructureID": 98122, + "Label": "5279-98122 via Adherens from 98126 -> 98125", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98126, + "TargetID": 98125, + "Directional": false + } + ] + }, + { + "ID": 2085, + "SourceStructureID": 5279, + "TargetStructureID": 98573, + "Label": "5279-98573 via Adherens from 98577 -> 98576", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98577, + "TargetID": 98576, + "Directional": false + } + ] + }, + { + "ID": 2086, + "SourceStructureID": 98627, + "TargetStructureID": 5279, + "Label": "98627-5279 via Unknown from 98629 -> 98628", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98629, + "TargetID": 98628, + "Directional": false + } + ] + }, + { + "ID": 2087, + "SourceStructureID": 98667, + "TargetStructureID": 5279, + "Label": "98667-5279 via Unknown from 98670 -> 98668", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98670, + "TargetID": 98668, + "Directional": false + } + ] + }, + { + "ID": 2088, + "SourceStructureID": 98976, + "TargetStructureID": 5279, + "Label": "98976-5279 via Unknown from 98977 -> 98978", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98977, + "TargetID": 98978, + "Directional": false + } + ] + }, + { + "ID": 2089, + "SourceStructureID": 5279, + "TargetStructureID": 99048, + "Label": "5279-99048 via Unknown from 99050 -> 99051", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99050, + "TargetID": 99051, + "Directional": false + } + ] + }, + { + "ID": 2090, + "SourceStructureID": 5279, + "TargetStructureID": 99056, + "Label": "5279-99056 via Unknown from 99046 -> 133843", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99046, + "TargetID": 133843, + "Directional": false + } + ] + }, + { + "ID": 2091, + "SourceStructureID": 5279, + "TargetStructureID": 99080, + "Label": "5279-99080 via Unknown from 99082 -> 99083", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99082, + "TargetID": 99083, + "Directional": false + } + ] + }, + { + "ID": 2092, + "SourceStructureID": 99106, + "TargetStructureID": 5279, + "Label": "99106-5279 via Unknown from 129573 -> 129572", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129573, + "TargetID": 129572, + "Directional": false + } + ] + }, + { + "ID": 2093, + "SourceStructureID": 99112, + "TargetStructureID": 5279, + "Label": "99112-5279 via Unknown from 99114 -> 99113", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99114, + "TargetID": 99113, + "Directional": false + } + ] + }, + { + "ID": 2094, + "SourceStructureID": 99144, + "TargetStructureID": 5279, + "Label": "99144-5279 via Unknown from 99146 -> 99145", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99146, + "TargetID": 99145, + "Directional": false + } + ] + }, + { + "ID": 2095, + "SourceStructureID": 99795, + "TargetStructureID": 5279, + "Label": "99795-5279 via Adherens from 99810 -> 99811", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 99810, + "TargetID": 99811, + "Directional": false + } + ] + }, + { + "ID": 2096, + "SourceStructureID": 100780, + "TargetStructureID": 5279, + "Label": "100780-5279 via Adherens from 100785 -> 92665", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100785, + "TargetID": 92665, + "Directional": false + } + ] + }, + { + "ID": 2097, + "SourceStructureID": 136667, + "TargetStructureID": 5279, + "Label": "136667-5279 via Gap Junction from 136668 -> 126473", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136668, + "TargetID": 126473, + "Directional": false + } + ] + }, + { + "ID": 2098, + "SourceStructureID": 5281, + "TargetStructureID": 6117, + "Label": "5281-6117 via Adherens from 83168 -> 83167", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83168, + "TargetID": 83167, + "Directional": false + } + ] + }, + { + "ID": 2099, + "SourceStructureID": 5281, + "TargetStructureID": 6117, + "Label": "5281-6117 via Unknown from 83203 -> 83202", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83203, + "TargetID": 83202, + "Directional": false + } + ] + }, + { + "ID": 2100, + "SourceStructureID": 5281, + "TargetStructureID": 25402, + "Label": "5281-25402 via Adherens from 98587 -> 98586", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98587, + "TargetID": 98586, + "Directional": false + } + ] + }, + { + "ID": 2101, + "SourceStructureID": 5282, + "TargetStructureID": 5284, + "Label": "5282-5284 via Unknown from 124720 -> 112914", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124720, + "TargetID": 112914, + "Directional": false + } + ] + }, + { + "ID": 2102, + "SourceStructureID": 5561, + "TargetStructureID": 5282, + "Label": "5561-5282 via Adherens from 148146 -> 148147", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148146, + "TargetID": 148147, + "Directional": false + } + ] + }, + { + "ID": 2103, + "SourceStructureID": 5282, + "TargetStructureID": 5561, + "Label": "5282-5561 via Gap Junction from 136727 -> 135827", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136727, + "TargetID": 135827, + "Directional": false + } + ] + }, + { + "ID": 2104, + "SourceStructureID": 5282, + "TargetStructureID": 5561, + "Label": "5282-5561 via Unknown from 136340 -> 130899", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136340, + "TargetID": 130899, + "Directional": false + } + ] + }, + { + "ID": 2105, + "SourceStructureID": 8037, + "TargetStructureID": 5282, + "Label": "8037-5282 via Adherens from 148178 -> 148179", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148178, + "TargetID": 148179, + "Directional": false + } + ] + }, + { + "ID": 2106, + "SourceStructureID": 5282, + "TargetStructureID": 20136, + "Label": "5282-20136 via Adherens from 109280 -> 109281", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109280, + "TargetID": 109281, + "Directional": false + } + ] + }, + { + "ID": 2107, + "SourceStructureID": 5282, + "TargetStructureID": 20136, + "Label": "5282-20136 via Gap Junction from 108858 -> 108859", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 108858, + "TargetID": 108859, + "Directional": false + } + ] + }, + { + "ID": 2108, + "SourceStructureID": 5282, + "TargetStructureID": 20136, + "Label": "5282-20136 via Unknown from 136348 -> 136347", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136348, + "TargetID": 136347, + "Directional": false + } + ] + }, + { + "ID": 2109, + "SourceStructureID": 5283, + "TargetStructureID": 5283, + "Label": "5283-5283 via Adherens from 123933 -> 131662, 130539 -> 130538", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123933, + "TargetID": 131662, + "Directional": false + }, + { + "SourceID": 130539, + "TargetID": 130538, + "Directional": false + } + ] + }, + { + "ID": 2110, + "SourceStructureID": 5374, + "TargetStructureID": 5283, + "Label": "5374-5283 via Adherens from 123991 -> 123990, 123997 -> 123996", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123991, + "TargetID": 123990, + "Directional": false + }, + { + "SourceID": 123997, + "TargetID": 123996, + "Directional": false + } + ] + }, + { + "ID": 2111, + "SourceStructureID": 5374, + "TargetStructureID": 5283, + "Label": "5374-5283 via Unknown from 123985 -> 123984", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 123985, + "TargetID": 123984, + "Directional": false + } + ] + }, + { + "ID": 2112, + "SourceStructureID": 5515, + "TargetStructureID": 5283, + "Label": "5515-5283 via Adherens from 22458 -> 22457, 132170 -> 132171, 132244 -> 132245", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 22458, + "TargetID": 22457, + "Directional": false + }, + { + "SourceID": 132170, + "TargetID": 132171, + "Directional": false + }, + { + "SourceID": 132244, + "TargetID": 132245, + "Directional": false + } + ] + }, + { + "ID": 2113, + "SourceStructureID": 5515, + "TargetStructureID": 5283, + "Label": "5515-5283 via Gap Junction from 132172 -> 132173", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132172, + "TargetID": 132173, + "Directional": false + } + ] + }, + { + "ID": 2114, + "SourceStructureID": 5283, + "TargetStructureID": 5562, + "Label": "5283-5562 via Gap Junction from 132076 -> 132075", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132076, + "TargetID": 132075, + "Directional": false + } + ] + }, + { + "ID": 2115, + "SourceStructureID": 5283, + "TargetStructureID": 5860, + "Label": "5283-5860 via Gap Junction from 124352 -> 124353, 131715 -> 131716", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 124352, + "TargetID": 124353, + "Directional": false + }, + { + "SourceID": 131715, + "TargetID": 131716, + "Directional": false + } + ] + }, + { + "ID": 2116, + "SourceStructureID": 5283, + "TargetStructureID": 6156, + "Label": "5283-6156 via Adherens from 123894 -> 123895", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123894, + "TargetID": 123895, + "Directional": false + } + ] + }, + { + "ID": 2117, + "SourceStructureID": 5283, + "TargetStructureID": 6156, + "Label": "5283-6156 via Gap Junction from 132207 -> 132206", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132207, + "TargetID": 132206, + "Directional": false + } + ] + }, + { + "ID": 2118, + "SourceStructureID": 5283, + "TargetStructureID": 6589, + "Label": "5283-6589 via Adherens from 123847 -> 123848", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123847, + "TargetID": 123848, + "Directional": false + } + ] + }, + { + "ID": 2119, + "SourceStructureID": 7043, + "TargetStructureID": 5283, + "Label": "7043-5283 via Adherens from 118744 -> 118745", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 118744, + "TargetID": 118745, + "Directional": false + } + ] + }, + { + "ID": 2120, + "SourceStructureID": 5283, + "TargetStructureID": 7043, + "Label": "5283-7043 via Touch from 131648 -> 131649", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 131648, + "TargetID": 131649, + "Directional": false + } + ] + }, + { + "ID": 2121, + "SourceStructureID": 8033, + "TargetStructureID": 5283, + "Label": "8033-5283 via Adherens from 132111 -> 132144", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132111, + "TargetID": 132144, + "Directional": false + } + ] + }, + { + "ID": 2122, + "SourceStructureID": 8037, + "TargetStructureID": 5283, + "Label": "8037-5283 via Gap Junction from 131684 -> 131685", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131684, + "TargetID": 131685, + "Directional": false + } + ] + }, + { + "ID": 2123, + "SourceStructureID": 5283, + "TargetStructureID": 9693, + "Label": "5283-9693 via Adherens from 135014 -> 135013", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135014, + "TargetID": 135013, + "Directional": false + } + ] + }, + { + "ID": 2124, + "SourceStructureID": 5283, + "TargetStructureID": 12897, + "Label": "5283-12897 via Gap Junction from 108236 -> 108237, 132086 -> 132087, 132197 -> 132196", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 108236, + "TargetID": 108237, + "Directional": false + }, + { + "SourceID": 132086, + "TargetID": 132087, + "Directional": false + }, + { + "SourceID": 132197, + "TargetID": 132196, + "Directional": false + } + ] + }, + { + "ID": 2125, + "SourceStructureID": 16026, + "TargetStructureID": 5283, + "Label": "16026-5283 via Adherens from 65548 -> 65547, 123763 -> 123762, 131661 -> 131660", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65548, + "TargetID": 65547, + "Directional": false + }, + { + "SourceID": 123763, + "TargetID": 123762, + "Directional": false + }, + { + "SourceID": 131661, + "TargetID": 131660, + "Directional": false + } + ] + }, + { + "ID": 2126, + "SourceStructureID": 16026, + "TargetStructureID": 5283, + "Label": "16026-5283 via Gap Junction from 131656 -> 131657, 134526 -> 134527, 134842 -> 134843", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131656, + "TargetID": 131657, + "Directional": false + }, + { + "SourceID": 134526, + "TargetID": 134527, + "Directional": false + }, + { + "SourceID": 134842, + "TargetID": 134843, + "Directional": false + } + ] + }, + { + "ID": 2127, + "SourceStructureID": 5283, + "TargetStructureID": 16026, + "Label": "5283-16026 via Touch from 132092 -> 132093", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 132092, + "TargetID": 132093, + "Directional": false + } + ] + }, + { + "ID": 2128, + "SourceStructureID": 5283, + "TargetStructureID": 22554, + "Label": "5283-22554 via Unknown from 131687 -> 131688, 132180 -> 123903", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131687, + "TargetID": 131688, + "Directional": false + }, + { + "SourceID": 132180, + "TargetID": 123903, + "Directional": false + } + ] + }, + { + "ID": 2129, + "SourceStructureID": 5283, + "TargetStructureID": 64371, + "Label": "5283-64371 via Adherens from 124033 -> 131675, 131676 -> 131677", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124033, + "TargetID": 131675, + "Directional": false + }, + { + "SourceID": 131676, + "TargetID": 131677, + "Directional": false + } + ] + }, + { + "ID": 2130, + "SourceStructureID": 5283, + "TargetStructureID": 64371, + "Label": "5283-64371 via Unknown from 123932 -> 135062", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 123932, + "TargetID": 135062, + "Directional": false + } + ] + }, + { + "ID": 2131, + "SourceStructureID": 5283, + "TargetStructureID": 65555, + "Label": "5283-65555 via Unknown from 132133 -> 132134", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132133, + "TargetID": 132134, + "Directional": false + } + ] + }, + { + "ID": 2132, + "SourceStructureID": 5283, + "TargetStructureID": 66303, + "Label": "5283-66303 via Adherens from 66314 -> 66313", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66314, + "TargetID": 66313, + "Directional": false + } + ] + }, + { + "ID": 2133, + "SourceStructureID": 67361, + "TargetStructureID": 5283, + "Label": "67361-5283 via Adherens from 130545 -> 124163", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130545, + "TargetID": 124163, + "Directional": false + } + ] + }, + { + "ID": 2134, + "SourceStructureID": 5283, + "TargetStructureID": 67361, + "Label": "5283-67361 via Unknown from 130547 -> 130546, 132198 -> 124188, 132199 -> 124196", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130547, + "TargetID": 130546, + "Directional": false + }, + { + "SourceID": 132198, + "TargetID": 124188, + "Directional": false + }, + { + "SourceID": 132199, + "TargetID": 124196, + "Directional": false + } + ] + }, + { + "ID": 2135, + "SourceStructureID": 68087, + "TargetStructureID": 5283, + "Label": "68087-5283 via Adherens from 80145 -> 80144", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80145, + "TargetID": 80144, + "Directional": false + } + ] + }, + { + "ID": 2136, + "SourceStructureID": 5283, + "TargetStructureID": 68087, + "Label": "5283-68087 via Unknown from 132119 -> 132120", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132119, + "TargetID": 132120, + "Directional": false + } + ] + }, + { + "ID": 2137, + "SourceStructureID": 5283, + "TargetStructureID": 68435, + "Label": "5283-68435 via Adherens from 79879 -> 68452", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79879, + "TargetID": 68452, + "Directional": false + } + ] + }, + { + "ID": 2138, + "SourceStructureID": 5283, + "TargetStructureID": 68435, + "Label": "5283-68435 via Unknown from 80058 -> 80059", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80058, + "TargetID": 80059, + "Directional": false + } + ] + }, + { + "ID": 2139, + "SourceStructureID": 68463, + "TargetStructureID": 5283, + "Label": "68463-5283 via Unknown from 132209 -> 79891", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132209, + "TargetID": 79891, + "Directional": false + } + ] + }, + { + "ID": 2140, + "SourceStructureID": 5283, + "TargetStructureID": 80079, + "Label": "5283-80079 via Adherens from 80078 -> 80080", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80078, + "TargetID": 80080, + "Directional": false + } + ] + }, + { + "ID": 2141, + "SourceStructureID": 5283, + "TargetStructureID": 80079, + "Label": "5283-80079 via Unknown from 131654 -> 131655", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131654, + "TargetID": 131655, + "Directional": false + } + ] + }, + { + "ID": 2142, + "SourceStructureID": 80098, + "TargetStructureID": 5283, + "Label": "80098-5283 via Adherens from 131718 -> 131717", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131718, + "TargetID": 131717, + "Directional": false + } + ] + }, + { + "ID": 2143, + "SourceStructureID": 80101, + "TargetStructureID": 5283, + "Label": "80101-5283 via Adherens from 80102 -> 80100", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80102, + "TargetID": 80100, + "Directional": false + } + ] + }, + { + "ID": 2144, + "SourceStructureID": 80115, + "TargetStructureID": 5283, + "Label": "80115-5283 via Adherens from 80117 -> 80118", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80117, + "TargetID": 80118, + "Directional": false + } + ] + }, + { + "ID": 2145, + "SourceStructureID": 5283, + "TargetStructureID": 80123, + "Label": "5283-80123 via Adherens from 80127 -> 80128", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80127, + "TargetID": 80128, + "Directional": false + } + ] + }, + { + "ID": 2146, + "SourceStructureID": 80137, + "TargetStructureID": 5283, + "Label": "80137-5283 via Unknown from 132118 -> 132117", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132118, + "TargetID": 132117, + "Directional": false + } + ] + }, + { + "ID": 2147, + "SourceStructureID": 5283, + "TargetStructureID": 80153, + "Label": "5283-80153 via Adherens from 80152 -> 80156", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80152, + "TargetID": 80156, + "Directional": false + } + ] + }, + { + "ID": 2148, + "SourceStructureID": 80154, + "TargetStructureID": 5283, + "Label": "80154-5283 via Adherens from 80155 -> 80151", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80155, + "TargetID": 80151, + "Directional": false + } + ] + }, + { + "ID": 2149, + "SourceStructureID": 5283, + "TargetStructureID": 80167, + "Label": "5283-80167 via Unknown from 131700 -> 131701", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131700, + "TargetID": 131701, + "Directional": false + } + ] + }, + { + "ID": 2150, + "SourceStructureID": 5283, + "TargetStructureID": 80412, + "Label": "5283-80412 via Unknown from 124178 -> 124177", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124178, + "TargetID": 124177, + "Directional": false + } + ] + }, + { + "ID": 2151, + "SourceStructureID": 5283, + "TargetStructureID": 85551, + "Label": "5283-85551 via Adherens from 123777 -> 123778", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123777, + "TargetID": 123778, + "Directional": false + } + ] + }, + { + "ID": 2152, + "SourceStructureID": 5283, + "TargetStructureID": 94935, + "Label": "5283-94935 via Adherens from 124337 -> 124338, 131690 -> 124233", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124337, + "TargetID": 124338, + "Directional": false + }, + { + "SourceID": 131690, + "TargetID": 124233, + "Directional": false + } + ] + }, + { + "ID": 2153, + "SourceStructureID": 5283, + "TargetStructureID": 122829, + "Label": "5283-122829 via Unknown from 123980 -> 123981, 131672 -> 131671", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 123980, + "TargetID": 123981, + "Directional": false + }, + { + "SourceID": 131672, + "TargetID": 131671, + "Directional": false + } + ] + }, + { + "ID": 2154, + "SourceStructureID": 5283, + "TargetStructureID": 131630, + "Label": "5283-131630 via Unknown from 131629 -> 131634", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131629, + "TargetID": 131634, + "Directional": false + } + ] + }, + { + "ID": 2155, + "SourceStructureID": 131664, + "TargetStructureID": 5283, + "Label": "131664-5283 via Adherens from 131667 -> 123959", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131667, + "TargetID": 123959, + "Directional": false + } + ] + }, + { + "ID": 2156, + "SourceStructureID": 5283, + "TargetStructureID": 131664, + "Label": "5283-131664 via Unknown from 131663 -> 131666", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131663, + "TargetID": 131666, + "Directional": false + } + ] + }, + { + "ID": 2157, + "SourceStructureID": 131708, + "TargetStructureID": 5283, + "Label": "131708-5283 via Adherens from 131710 -> 131709", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131710, + "TargetID": 131709, + "Directional": false + } + ] + }, + { + "ID": 2158, + "SourceStructureID": 5283, + "TargetStructureID": 132081, + "Label": "5283-132081 via Gap Junction from 132080 -> 132082", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132080, + "TargetID": 132082, + "Directional": false + } + ] + }, + { + "ID": 2159, + "SourceStructureID": 132158, + "TargetStructureID": 5283, + "Label": "132158-5283 via Unknown from 132159 -> 123804", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132159, + "TargetID": 123804, + "Directional": false + } + ] + }, + { + "ID": 2160, + "SourceStructureID": 5283, + "TargetStructureID": 135039, + "Label": "5283-135039 via Gap Junction from 135038 -> 135041", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 135038, + "TargetID": 135041, + "Directional": false + } + ] + }, + { + "ID": 2161, + "SourceStructureID": 135052, + "TargetStructureID": 5283, + "Label": "135052-5283 via Gap Junction from 135054 -> 131695", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 135054, + "TargetID": 131695, + "Directional": false + } + ] + }, + { + "ID": 2162, + "SourceStructureID": 5284, + "TargetStructureID": 5284, + "Label": "5284-5284 via Adherens from 124692 -> 124691", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124692, + "TargetID": 124691, + "Directional": false + } + ] + }, + { + "ID": 2163, + "SourceStructureID": 5284, + "TargetStructureID": 5284, + "Label": "5284-5284 via Gap Junction from 53431 -> 53430", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53431, + "TargetID": 53430, + "Directional": false + } + ] + }, + { + "ID": 2164, + "SourceStructureID": 5284, + "TargetStructureID": 5292, + "Label": "5284-5292 via Adherens from 39425 -> 51576, 91803 -> 91804, 124684 -> 124685, 124706 -> 124705, 127703 -> 127702, 127850 -> 127851, 127881 -> 127882, 127885 -> 127884, 135763 -> 135764, 135768 -> 135767", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 39425, + "TargetID": 51576, + "Directional": false + }, + { + "SourceID": 91803, + "TargetID": 91804, + "Directional": false + }, + { + "SourceID": 124684, + "TargetID": 124685, + "Directional": false + }, + { + "SourceID": 124706, + "TargetID": 124705, + "Directional": false + }, + { + "SourceID": 127703, + "TargetID": 127702, + "Directional": false + }, + { + "SourceID": 127850, + "TargetID": 127851, + "Directional": false + }, + { + "SourceID": 127881, + "TargetID": 127882, + "Directional": false + }, + { + "SourceID": 127885, + "TargetID": 127884, + "Directional": false + }, + { + "SourceID": 135763, + "TargetID": 135764, + "Directional": false + }, + { + "SourceID": 135768, + "TargetID": 135767, + "Directional": false + } + ] + }, + { + "ID": 2165, + "SourceStructureID": 5284, + "TargetStructureID": 5292, + "Label": "5284-5292 via Gap Junction from 49823 -> 49822, 49851 -> 49846, 49861 -> 49928, 49933 -> 49836, 51575 -> 39424, 54349 -> 49895, 54390 -> 91948, 60816 -> 98225, 91596 -> 91594, 91802 -> 51566, 91810 -> 91811, 91881 -> 91882, 91884 -> 91883, 98153 -> 49880, 112877 -> 112878, 113223 -> 49897, 113371 -> 113372, 113619 -> 113620, 124715 -> 124716, 127732 -> 127733", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49823, + "TargetID": 49822, + "Directional": false + }, + { + "SourceID": 49851, + "TargetID": 49846, + "Directional": false + }, + { + "SourceID": 49861, + "TargetID": 49928, + "Directional": false + }, + { + "SourceID": 49933, + "TargetID": 49836, + "Directional": false + }, + { + "SourceID": 51575, + "TargetID": 39424, + "Directional": false + }, + { + "SourceID": 54349, + "TargetID": 49895, + "Directional": false + }, + { + "SourceID": 54390, + "TargetID": 91948, + "Directional": false + }, + { + "SourceID": 60816, + "TargetID": 98225, + "Directional": false + }, + { + "SourceID": 91596, + "TargetID": 91594, + "Directional": false + }, + { + "SourceID": 91802, + "TargetID": 51566, + "Directional": false + }, + { + "SourceID": 91810, + "TargetID": 91811, + "Directional": false + }, + { + "SourceID": 91881, + "TargetID": 91882, + "Directional": false + }, + { + "SourceID": 91884, + "TargetID": 91883, + "Directional": false + }, + { + "SourceID": 98153, + "TargetID": 49880, + "Directional": false + }, + { + "SourceID": 112877, + "TargetID": 112878, + "Directional": false + }, + { + "SourceID": 113223, + "TargetID": 49897, + "Directional": false + }, + { + "SourceID": 113371, + "TargetID": 113372, + "Directional": false + }, + { + "SourceID": 113619, + "TargetID": 113620, + "Directional": false + }, + { + "SourceID": 124715, + "TargetID": 124716, + "Directional": false + }, + { + "SourceID": 127732, + "TargetID": 127733, + "Directional": false + } + ] + }, + { + "ID": 2166, + "SourceStructureID": 5284, + "TargetStructureID": 5297, + "Label": "5284-5297 via Adherens from 127726 -> 127727, 127736 -> 127735", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127726, + "TargetID": 127727, + "Directional": false + }, + { + "SourceID": 127736, + "TargetID": 127735, + "Directional": false + } + ] + }, + { + "ID": 2167, + "SourceStructureID": 5284, + "TargetStructureID": 5297, + "Label": "5284-5297 via Gap Junction from 39428 -> 39427, 68601 -> 68599, 92300 -> 92302, 98142 -> 98143, 98150 -> 60839, 112541 -> 112542, 112850 -> 112851, 112910 -> 112909, 113217 -> 113216, 113366 -> 113365, 113378 -> 113377, 113401 -> 113400, 113436 -> 113437, 113522 -> 113521, 113613 -> 113612, 116316 -> 116315, 121068 -> 121069, 124676 -> 121058, 127785 -> 127786", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 39428, + "TargetID": 39427, + "Directional": false + }, + { + "SourceID": 68601, + "TargetID": 68599, + "Directional": false + }, + { + "SourceID": 92300, + "TargetID": 92302, + "Directional": false + }, + { + "SourceID": 98142, + "TargetID": 98143, + "Directional": false + }, + { + "SourceID": 98150, + "TargetID": 60839, + "Directional": false + }, + { + "SourceID": 112541, + "TargetID": 112542, + "Directional": false + }, + { + "SourceID": 112850, + "TargetID": 112851, + "Directional": false + }, + { + "SourceID": 112910, + "TargetID": 112909, + "Directional": false + }, + { + "SourceID": 113217, + "TargetID": 113216, + "Directional": false + }, + { + "SourceID": 113366, + "TargetID": 113365, + "Directional": false + }, + { + "SourceID": 113378, + "TargetID": 113377, + "Directional": false + }, + { + "SourceID": 113401, + "TargetID": 113400, + "Directional": false + }, + { + "SourceID": 113436, + "TargetID": 113437, + "Directional": false + }, + { + "SourceID": 113522, + "TargetID": 113521, + "Directional": false + }, + { + "SourceID": 113613, + "TargetID": 113612, + "Directional": false + }, + { + "SourceID": 116316, + "TargetID": 116315, + "Directional": false + }, + { + "SourceID": 121068, + "TargetID": 121069, + "Directional": false + }, + { + "SourceID": 124676, + "TargetID": 121058, + "Directional": false + }, + { + "SourceID": 127785, + "TargetID": 127786, + "Directional": false + } + ] + }, + { + "ID": 2168, + "SourceStructureID": 5284, + "TargetStructureID": 5297, + "Label": "5284-5297 via Touch from 127874 -> 127875", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 127874, + "TargetID": 127875, + "Directional": false + } + ] + }, + { + "ID": 2169, + "SourceStructureID": 5501, + "TargetStructureID": 5284, + "Label": "5501-5284 via Gap Junction from 113022 -> 113021, 127936 -> 127935", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 113022, + "TargetID": 113021, + "Directional": false + }, + { + "SourceID": 127936, + "TargetID": 127935, + "Directional": false + } + ] + }, + { + "ID": 2170, + "SourceStructureID": 5284, + "TargetStructureID": 5503, + "Label": "5284-5503 via Adherens from 127938 -> 127939", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127938, + "TargetID": 127939, + "Directional": false + } + ] + }, + { + "ID": 2171, + "SourceStructureID": 5284, + "TargetStructureID": 5503, + "Label": "5284-5503 via Gap Junction from 60783 -> 52801", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60783, + "TargetID": 52801, + "Directional": false + } + ] + }, + { + "ID": 2172, + "SourceStructureID": 5284, + "TargetStructureID": 5562, + "Label": "5284-5562 via Touch from 77601 -> 77600", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 77601, + "TargetID": 77600, + "Directional": false + } + ] + }, + { + "ID": 2173, + "SourceStructureID": 6050, + "TargetStructureID": 5284, + "Label": "6050-5284 via Adherens from 127079 -> 127080", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127079, + "TargetID": 127080, + "Directional": false + } + ] + }, + { + "ID": 2174, + "SourceStructureID": 6050, + "TargetStructureID": 5284, + "Label": "6050-5284 via Gap Junction from 57065 -> 60795, 92876 -> 98221, 92879 -> 92878, 92888 -> 57071, 113221 -> 113220", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57065, + "TargetID": 60795, + "Directional": false + }, + { + "SourceID": 92876, + "TargetID": 98221, + "Directional": false + }, + { + "SourceID": 92879, + "TargetID": 92878, + "Directional": false + }, + { + "SourceID": 92888, + "TargetID": 57071, + "Directional": false + }, + { + "SourceID": 113221, + "TargetID": 113220, + "Directional": false + } + ] + }, + { + "ID": 2175, + "SourceStructureID": 5284, + "TargetStructureID": 8720, + "Label": "5284-8720 via Unknown from 127824 -> 127825", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127824, + "TargetID": 127825, + "Directional": false + } + ] + }, + { + "ID": 2176, + "SourceStructureID": 12897, + "TargetStructureID": 5284, + "Label": "12897-5284 via Gap Junction from 12905 -> 112902, 24615 -> 112812", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 12905, + "TargetID": 112902, + "Directional": false + }, + { + "SourceID": 24615, + "TargetID": 112812, + "Directional": false + } + ] + }, + { + "ID": 2177, + "SourceStructureID": 15796, + "TargetStructureID": 5284, + "Label": "15796-5284 via Unknown from 124727 -> 113052", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124727, + "TargetID": 113052, + "Directional": false + } + ] + }, + { + "ID": 2178, + "SourceStructureID": 16026, + "TargetStructureID": 5284, + "Label": "16026-5284 via Adherens from 133823 -> 133822", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133823, + "TargetID": 133822, + "Directional": false + } + ] + }, + { + "ID": 2179, + "SourceStructureID": 16026, + "TargetStructureID": 5284, + "Label": "16026-5284 via Gap Junction from 113384 -> 113383", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 113384, + "TargetID": 113383, + "Directional": false + } + ] + }, + { + "ID": 2180, + "SourceStructureID": 5284, + "TargetStructureID": 16073, + "Label": "5284-16073 via Unknown from 113076 -> 113075", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113076, + "TargetID": 113075, + "Directional": false + } + ] + }, + { + "ID": 2181, + "SourceStructureID": 5284, + "TargetStructureID": 20136, + "Label": "5284-20136 via Gap Junction from 127751 -> 127752", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 127751, + "TargetID": 127752, + "Directional": false + } + ] + }, + { + "ID": 2182, + "SourceStructureID": 38379, + "TargetStructureID": 5284, + "Label": "38379-5284 via Adherens from 127790 -> 127789", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127790, + "TargetID": 127789, + "Directional": false + } + ] + }, + { + "ID": 2183, + "SourceStructureID": 5284, + "TargetStructureID": 38379, + "Label": "5284-38379 via Unknown from 124737 -> 124738", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124737, + "TargetID": 124738, + "Directional": false + } + ] + }, + { + "ID": 2184, + "SourceStructureID": 53218, + "TargetStructureID": 5284, + "Label": "53218-5284 via Unknown from 113084 -> 113083", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113084, + "TargetID": 113083, + "Directional": false + } + ] + }, + { + "ID": 2185, + "SourceStructureID": 5284, + "TargetStructureID": 54074, + "Label": "5284-54074 via Adherens from 113426 -> 113427", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 113426, + "TargetID": 113427, + "Directional": false + } + ] + }, + { + "ID": 2186, + "SourceStructureID": 54252, + "TargetStructureID": 5284, + "Label": "54252-5284 via Unknown from 113535 -> 113534", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113535, + "TargetID": 113534, + "Directional": false + } + ] + }, + { + "ID": 2187, + "SourceStructureID": 5284, + "TargetStructureID": 60843, + "Label": "5284-60843 via Unknown from 113212 -> 113211", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113212, + "TargetID": 113211, + "Directional": false + } + ] + }, + { + "ID": 2188, + "SourceStructureID": 5284, + "TargetStructureID": 67818, + "Label": "5284-67818 via Gap Junction from 127730 -> 127731", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 127730, + "TargetID": 127731, + "Directional": false + } + ] + }, + { + "ID": 2189, + "SourceStructureID": 68093, + "TargetStructureID": 5284, + "Label": "68093-5284 via Unknown from 124609 -> 124608", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124609, + "TargetID": 124608, + "Directional": false + } + ] + }, + { + "ID": 2190, + "SourceStructureID": 68135, + "TargetStructureID": 5284, + "Label": "68135-5284 via Adherens from 113589 -> 113588", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 113589, + "TargetID": 113588, + "Directional": false + } + ] + }, + { + "ID": 2191, + "SourceStructureID": 5284, + "TargetStructureID": 68135, + "Label": "5284-68135 via Gap Junction from 113587 -> 113586", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 113587, + "TargetID": 113586, + "Directional": false + } + ] + }, + { + "ID": 2192, + "SourceStructureID": 5284, + "TargetStructureID": 68198, + "Label": "5284-68198 via Adherens from 68201 -> 68200", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68201, + "TargetID": 68200, + "Directional": false + } + ] + }, + { + "ID": 2193, + "SourceStructureID": 70379, + "TargetStructureID": 5284, + "Label": "70379-5284 via Adherens from 113397 -> 113396, 127684 -> 127685", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 113397, + "TargetID": 113396, + "Directional": false + }, + { + "SourceID": 127684, + "TargetID": 127685, + "Directional": false + } + ] + }, + { + "ID": 2194, + "SourceStructureID": 5284, + "TargetStructureID": 77603, + "Label": "5284-77603 via Adherens from 64649 -> 113111", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64649, + "TargetID": 113111, + "Directional": false + } + ] + }, + { + "ID": 2195, + "SourceStructureID": 5284, + "TargetStructureID": 85311, + "Label": "5284-85311 via Unknown from 113200 -> 113202", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113200, + "TargetID": 113202, + "Directional": false + } + ] + }, + { + "ID": 2196, + "SourceStructureID": 5284, + "TargetStructureID": 92092, + "Label": "5284-92092 via Adherens from 113064 -> 113065, 127861 -> 127862", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 113064, + "TargetID": 113065, + "Directional": false + }, + { + "SourceID": 127861, + "TargetID": 127862, + "Directional": false + } + ] + }, + { + "ID": 2197, + "SourceStructureID": 5284, + "TargetStructureID": 92092, + "Label": "5284-92092 via Unknown from 112802 -> 112804, 113062 -> 113061, 113316 -> 113315", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112802, + "TargetID": 112804, + "Directional": false + }, + { + "SourceID": 113062, + "TargetID": 113061, + "Directional": false + }, + { + "SourceID": 113316, + "TargetID": 113315, + "Directional": false + } + ] + }, + { + "ID": 2198, + "SourceStructureID": 92872, + "TargetStructureID": 5284, + "Label": "92872-5284 via Unknown from 92873 -> 98179, 127700 -> 98185", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92873, + "TargetID": 98179, + "Directional": false + }, + { + "SourceID": 127700, + "TargetID": 98185, + "Directional": false + } + ] + }, + { + "ID": 2199, + "SourceStructureID": 113086, + "TargetStructureID": 5284, + "Label": "113086-5284 via Adherens from 113117 -> 64609", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 113117, + "TargetID": 64609, + "Directional": false + } + ] + }, + { + "ID": 2200, + "SourceStructureID": 5284, + "TargetStructureID": 113086, + "Label": "5284-113086 via Unknown from 127894 -> 127893", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127894, + "TargetID": 127893, + "Directional": false + } + ] + }, + { + "ID": 2201, + "SourceStructureID": 5284, + "TargetStructureID": 113332, + "Label": "5284-113332 via Adherens from 113327 -> 113334", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 113327, + "TargetID": 113334, + "Directional": false + } + ] + }, + { + "ID": 2202, + "SourceStructureID": 113541, + "TargetStructureID": 5284, + "Label": "113541-5284 via Adherens from 127690 -> 127689", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127690, + "TargetID": 127689, + "Directional": false + } + ] + }, + { + "ID": 2203, + "SourceStructureID": 5284, + "TargetStructureID": 113541, + "Label": "5284-113541 via Gap Junction from 56720 -> 113542", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56720, + "TargetID": 113542, + "Directional": false + } + ] + }, + { + "ID": 2204, + "SourceStructureID": 113547, + "TargetStructureID": 5284, + "Label": "113547-5284 via Gap Junction from 113553 -> 113552", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 113553, + "TargetID": 113552, + "Directional": false + } + ] + }, + { + "ID": 2205, + "SourceStructureID": 117803, + "TargetStructureID": 5284, + "Label": "117803-5284 via Unknown from 124757 -> 113643, 124758 -> 113641", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124757, + "TargetID": 113643, + "Directional": false + }, + { + "SourceID": 124758, + "TargetID": 113641, + "Directional": false + } + ] + }, + { + "ID": 2206, + "SourceStructureID": 5284, + "TargetStructureID": 117892, + "Label": "5284-117892 via Unknown from 113081 -> 130260", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113081, + "TargetID": 130260, + "Directional": false + } + ] + }, + { + "ID": 2207, + "SourceStructureID": 121006, + "TargetStructureID": 5284, + "Label": "121006-5284 via Unknown from 124751 -> 113392", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124751, + "TargetID": 113392, + "Directional": false + } + ] + }, + { + "ID": 2208, + "SourceStructureID": 5284, + "TargetStructureID": 121044, + "Label": "5284-121044 via Adherens from 124615 -> 124616, 124618 -> 98177", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124615, + "TargetID": 124616, + "Directional": false + }, + { + "SourceID": 124618, + "TargetID": 98177, + "Directional": false + } + ] + }, + { + "ID": 2209, + "SourceStructureID": 134553, + "TargetStructureID": 5284, + "Label": "134553-5284 via Unknown from 147972 -> 147973", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147972, + "TargetID": 147973, + "Directional": false + } + ] + }, + { + "ID": 2210, + "SourceStructureID": 136736, + "TargetStructureID": 5284, + "Label": "136736-5284 via Unknown from 136737 -> 112555", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136737, + "TargetID": 112555, + "Directional": false + } + ] + }, + { + "ID": 2211, + "SourceStructureID": 5292, + "TargetStructureID": 5292, + "Label": "5292-5292 via Adherens from 49793 -> 49792, 92062 -> 92063", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 49793, + "TargetID": 49792, + "Directional": false + }, + { + "SourceID": 92062, + "TargetID": 92063, + "Directional": false + } + ] + }, + { + "ID": 2212, + "SourceStructureID": 5292, + "TargetStructureID": 5292, + "Label": "5292-5292 via Gap Junction from 51544 -> 51545, 92359 -> 92360", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51544, + "TargetID": 51545, + "Directional": false + }, + { + "SourceID": 92359, + "TargetID": 92360, + "Directional": false + } + ] + }, + { + "ID": 2213, + "SourceStructureID": 5297, + "TargetStructureID": 5292, + "Label": "5297-5292 via Gap Junction from 56838 -> 56837, 68598 -> 68597, 121089 -> 121090, 121093 -> 121094, 133983 -> 133982", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56838, + "TargetID": 56837, + "Directional": false + }, + { + "SourceID": 68598, + "TargetID": 68597, + "Directional": false + }, + { + "SourceID": 121089, + "TargetID": 121090, + "Directional": false + }, + { + "SourceID": 121093, + "TargetID": 121094, + "Directional": false + }, + { + "SourceID": 133983, + "TargetID": 133982, + "Directional": false + } + ] + }, + { + "ID": 2214, + "SourceStructureID": 5485, + "TargetStructureID": 5292, + "Label": "5485-5292 via Unknown from 91850 -> 91849", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91850, + "TargetID": 91849, + "Directional": false + } + ] + }, + { + "ID": 2215, + "SourceStructureID": 5292, + "TargetStructureID": 5650, + "Label": "5292-5650 via Adherens from 91905 -> 91904, 103884 -> 103883, 135612 -> 135611, 135615 -> 135614, 135616 -> 135617, 135618 -> 135619, 135762 -> 135761", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91905, + "TargetID": 91904, + "Directional": false + }, + { + "SourceID": 103884, + "TargetID": 103883, + "Directional": false + }, + { + "SourceID": 135612, + "TargetID": 135611, + "Directional": false + }, + { + "SourceID": 135615, + "TargetID": 135614, + "Directional": false + }, + { + "SourceID": 135616, + "TargetID": 135617, + "Directional": false + }, + { + "SourceID": 135618, + "TargetID": 135619, + "Directional": false + }, + { + "SourceID": 135762, + "TargetID": 135761, + "Directional": false + } + ] + }, + { + "ID": 2216, + "SourceStructureID": 5650, + "TargetStructureID": 5292, + "Label": "5650-5292 via Gap Junction from 29919 -> 29918, 49830 -> 49831, 49868 -> 49867, 54334 -> 54335, 56724 -> 56723, 56836 -> 91939, 133969 -> 133968, 133970 -> 133971, 133973 -> 133974, 135759 -> 135760", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29919, + "TargetID": 29918, + "Directional": false + }, + { + "SourceID": 49830, + "TargetID": 49831, + "Directional": false + }, + { + "SourceID": 49868, + "TargetID": 49867, + "Directional": false + }, + { + "SourceID": 54334, + "TargetID": 54335, + "Directional": false + }, + { + "SourceID": 56724, + "TargetID": 56723, + "Directional": false + }, + { + "SourceID": 56836, + "TargetID": 91939, + "Directional": false + }, + { + "SourceID": 133969, + "TargetID": 133968, + "Directional": false + }, + { + "SourceID": 133970, + "TargetID": 133971, + "Directional": false + }, + { + "SourceID": 133973, + "TargetID": 133974, + "Directional": false + }, + { + "SourceID": 135759, + "TargetID": 135760, + "Directional": false + } + ] + }, + { + "ID": 2217, + "SourceStructureID": 6050, + "TargetStructureID": 5292, + "Label": "6050-5292 via Adherens from 70298 -> 15322, 127077 -> 127078, 127081 -> 127082, 127542 -> 127541, 127624 -> 127625, 135770 -> 135769, 135772 -> 135771", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70298, + "TargetID": 15322, + "Directional": false + }, + { + "SourceID": 127077, + "TargetID": 127078, + "Directional": false + }, + { + "SourceID": 127081, + "TargetID": 127082, + "Directional": false + }, + { + "SourceID": 127542, + "TargetID": 127541, + "Directional": false + }, + { + "SourceID": 127624, + "TargetID": 127625, + "Directional": false + }, + { + "SourceID": 135770, + "TargetID": 135769, + "Directional": false + }, + { + "SourceID": 135772, + "TargetID": 135771, + "Directional": false + } + ] + }, + { + "ID": 2218, + "SourceStructureID": 5292, + "TargetStructureID": 6050, + "Label": "5292-6050 via Gap Junction from 45545 -> 45544, 51896 -> 51897, 54393 -> 91940, 66163 -> 66161, 66361 -> 66360, 91962 -> 91963, 92029 -> 92030, 92043 -> 92044, 92057 -> 92056, 92367 -> 92368, 114278 -> 114279, 133986 -> 133987", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45545, + "TargetID": 45544, + "Directional": false + }, + { + "SourceID": 51896, + "TargetID": 51897, + "Directional": false + }, + { + "SourceID": 54393, + "TargetID": 91940, + "Directional": false + }, + { + "SourceID": 66163, + "TargetID": 66161, + "Directional": false + }, + { + "SourceID": 66361, + "TargetID": 66360, + "Directional": false + }, + { + "SourceID": 91962, + "TargetID": 91963, + "Directional": false + }, + { + "SourceID": 92029, + "TargetID": 92030, + "Directional": false + }, + { + "SourceID": 92043, + "TargetID": 92044, + "Directional": false + }, + { + "SourceID": 92057, + "TargetID": 92056, + "Directional": false + }, + { + "SourceID": 92367, + "TargetID": 92368, + "Directional": false + }, + { + "SourceID": 114278, + "TargetID": 114279, + "Directional": false + }, + { + "SourceID": 133986, + "TargetID": 133987, + "Directional": false + } + ] + }, + { + "ID": 2219, + "SourceStructureID": 5292, + "TargetStructureID": 6117, + "Label": "5292-6117 via Adherens from 84387 -> 84388, 135493 -> 135492", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84387, + "TargetID": 84388, + "Directional": false + }, + { + "SourceID": 135493, + "TargetID": 135492, + "Directional": false + } + ] + }, + { + "ID": 2220, + "SourceStructureID": 5292, + "TargetStructureID": 6117, + "Label": "5292-6117 via Gap Junction from 49884 -> 47287, 51345 -> 51346, 51361 -> 51531, 91857 -> 85420, 133976 -> 133977, 133979 -> 133978, 133980 -> 133981, 133985 -> 133984, 147852 -> 147851", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49884, + "TargetID": 47287, + "Directional": false + }, + { + "SourceID": 51345, + "TargetID": 51346, + "Directional": false + }, + { + "SourceID": 51361, + "TargetID": 51531, + "Directional": false + }, + { + "SourceID": 91857, + "TargetID": 85420, + "Directional": false + }, + { + "SourceID": 133976, + "TargetID": 133977, + "Directional": false + }, + { + "SourceID": 133979, + "TargetID": 133978, + "Directional": false + }, + { + "SourceID": 133980, + "TargetID": 133981, + "Directional": false + }, + { + "SourceID": 133985, + "TargetID": 133984, + "Directional": false + }, + { + "SourceID": 147852, + "TargetID": 147851, + "Directional": false + } + ] + }, + { + "ID": 2221, + "SourceStructureID": 5292, + "TargetStructureID": 6117, + "Label": "5292-6117 via Touch from 92409 -> 92410", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 92409, + "TargetID": 92410, + "Directional": false + } + ] + }, + { + "ID": 2222, + "SourceStructureID": 5292, + "TargetStructureID": 7073, + "Label": "5292-7073 via Unknown from 91590 -> 113182", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91590, + "TargetID": 113182, + "Directional": false + } + ] + }, + { + "ID": 2223, + "SourceStructureID": 30130, + "TargetStructureID": 5292, + "Label": "30130-5292 via Unknown from 91591 -> 91592", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91591, + "TargetID": 91592, + "Directional": false + } + ] + }, + { + "ID": 2224, + "SourceStructureID": 5292, + "TargetStructureID": 55132, + "Label": "5292-55132 via Adherens from 91899 -> 91897", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91899, + "TargetID": 91897, + "Directional": false + } + ] + }, + { + "ID": 2225, + "SourceStructureID": 55132, + "TargetStructureID": 5292, + "Label": "55132-5292 via Gap Junction from 55141 -> 49864", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55141, + "TargetID": 49864, + "Directional": false + } + ] + }, + { + "ID": 2226, + "SourceStructureID": 5292, + "TargetStructureID": 59482, + "Label": "5292-59482 via Adherens from 89118 -> 59493", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89118, + "TargetID": 59493, + "Directional": false + } + ] + }, + { + "ID": 2227, + "SourceStructureID": 67818, + "TargetStructureID": 5292, + "Label": "67818-5292 via Unknown from 91608 -> 91607", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91608, + "TargetID": 91607, + "Directional": false + } + ] + }, + { + "ID": 2228, + "SourceStructureID": 5292, + "TargetStructureID": 68531, + "Label": "5292-68531 via Unknown from 68535 -> 68534", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 68535, + "TargetID": 68534, + "Directional": false + } + ] + }, + { + "ID": 2229, + "SourceStructureID": 76811, + "TargetStructureID": 5292, + "Label": "76811-5292 via Unknown from 133972 -> 124687", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133972, + "TargetID": 124687, + "Directional": false + } + ] + }, + { + "ID": 2230, + "SourceStructureID": 91805, + "TargetStructureID": 5292, + "Label": "91805-5292 via Unknown from 91807 -> 91806", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91807, + "TargetID": 91806, + "Directional": false + } + ] + }, + { + "ID": 2231, + "SourceStructureID": 91812, + "TargetStructureID": 5292, + "Label": "91812-5292 via Unknown from 91816 -> 91815", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91816, + "TargetID": 91815, + "Directional": false + } + ] + }, + { + "ID": 2232, + "SourceStructureID": 91817, + "TargetStructureID": 5292, + "Label": "91817-5292 via Unknown from 91819 -> 91818", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91819, + "TargetID": 91818, + "Directional": false + } + ] + }, + { + "ID": 2233, + "SourceStructureID": 5292, + "TargetStructureID": 91823, + "Label": "5292-91823 via Unknown from 91824 -> 91825", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91824, + "TargetID": 91825, + "Directional": false + } + ] + }, + { + "ID": 2234, + "SourceStructureID": 5292, + "TargetStructureID": 91870, + "Label": "5292-91870 via Gap Junction from 91873 -> 91872", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91873, + "TargetID": 91872, + "Directional": false + } + ] + }, + { + "ID": 2235, + "SourceStructureID": 91890, + "TargetStructureID": 5292, + "Label": "91890-5292 via Unknown from 91894 -> 91895", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91894, + "TargetID": 91895, + "Directional": false + } + ] + }, + { + "ID": 2236, + "SourceStructureID": 91891, + "TargetStructureID": 5292, + "Label": "91891-5292 via Unknown from 91893 -> 91896", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91893, + "TargetID": 91896, + "Directional": false + } + ] + }, + { + "ID": 2237, + "SourceStructureID": 91933, + "TargetStructureID": 5292, + "Label": "91933-5292 via Unknown from 91937 -> 91936", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91937, + "TargetID": 91936, + "Directional": false + } + ] + }, + { + "ID": 2238, + "SourceStructureID": 91964, + "TargetStructureID": 5292, + "Label": "91964-5292 via Unknown from 91965 -> 91966", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91965, + "TargetID": 91966, + "Directional": false + } + ] + }, + { + "ID": 2239, + "SourceStructureID": 5292, + "TargetStructureID": 91967, + "Label": "5292-91967 via Adherens from 91971 -> 91970", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91971, + "TargetID": 91970, + "Directional": false + } + ] + }, + { + "ID": 2240, + "SourceStructureID": 5292, + "TargetStructureID": 91967, + "Label": "5292-91967 via Gap Junction from 91969 -> 91968", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91969, + "TargetID": 91968, + "Directional": false + } + ] + }, + { + "ID": 2241, + "SourceStructureID": 5292, + "TargetStructureID": 92031, + "Label": "5292-92031 via Adherens from 92033 -> 92032", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92033, + "TargetID": 92032, + "Directional": false + } + ] + }, + { + "ID": 2242, + "SourceStructureID": 92058, + "TargetStructureID": 5292, + "Label": "92058-5292 via Unknown from 92060 -> 92059", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92060, + "TargetID": 92059, + "Directional": false + } + ] + }, + { + "ID": 2243, + "SourceStructureID": 5292, + "TargetStructureID": 92064, + "Label": "5292-92064 via Unknown from 92065 -> 92066", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92065, + "TargetID": 92066, + "Directional": false + } + ] + }, + { + "ID": 2244, + "SourceStructureID": 92073, + "TargetStructureID": 5292, + "Label": "92073-5292 via Adherens from 127662 -> 127661", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127662, + "TargetID": 127661, + "Directional": false + } + ] + }, + { + "ID": 2245, + "SourceStructureID": 92073, + "TargetStructureID": 5292, + "Label": "92073-5292 via Unknown from 127659 -> 127660", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127659, + "TargetID": 127660, + "Directional": false + } + ] + }, + { + "ID": 2246, + "SourceStructureID": 97358, + "TargetStructureID": 5292, + "Label": "97358-5292 via Adherens from 131187 -> 131188", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131187, + "TargetID": 131188, + "Directional": false + } + ] + }, + { + "ID": 2247, + "SourceStructureID": 97358, + "TargetStructureID": 5292, + "Label": "97358-5292 via Gap Junction from 131183 -> 131182", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131183, + "TargetID": 131182, + "Directional": false + } + ] + }, + { + "ID": 2248, + "SourceStructureID": 113541, + "TargetStructureID": 5292, + "Label": "113541-5292 via Gap Junction from 113544 -> 60809", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 113544, + "TargetID": 60809, + "Directional": false + } + ] + }, + { + "ID": 2249, + "SourceStructureID": 5295, + "TargetStructureID": 5519, + "Label": "5295-5519 via Gap Junction from 59182 -> 59157", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59182, + "TargetID": 59157, + "Directional": false + } + ] + }, + { + "ID": 2250, + "SourceStructureID": 59145, + "TargetStructureID": 5295, + "Label": "59145-5295 via Touch from 59178 -> 59177", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 59178, + "TargetID": 59177, + "Directional": false + } + ] + }, + { + "ID": 2251, + "SourceStructureID": 59163, + "TargetStructureID": 5295, + "Label": "59163-5295 via Gap Junction from 59165 -> 59181", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59165, + "TargetID": 59181, + "Directional": false + } + ] + }, + { + "ID": 2252, + "SourceStructureID": 59793, + "TargetStructureID": 5295, + "Label": "59793-5295 via Gap Junction from 59794 -> 59792", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59794, + "TargetID": 59792, + "Directional": false + } + ] + }, + { + "ID": 2253, + "SourceStructureID": 5297, + "TargetStructureID": 5297, + "Label": "5297-5297 via Adherens from 98136 -> 98137", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98136, + "TargetID": 98137, + "Directional": false + } + ] + }, + { + "ID": 2254, + "SourceStructureID": 5297, + "TargetStructureID": 5297, + "Label": "5297-5297 via Gap Junction from 116424 -> 116423, 147335 -> 147334", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116424, + "TargetID": 116423, + "Directional": false + }, + { + "SourceID": 147335, + "TargetID": 147334, + "Directional": false + } + ] + }, + { + "ID": 2255, + "SourceStructureID": 5297, + "TargetStructureID": 5297, + "Label": "5297-5297 via Touch from 147351 -> 147352", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 147351, + "TargetID": 147352, + "Directional": false + } + ] + }, + { + "ID": 2256, + "SourceStructureID": 5618, + "TargetStructureID": 5297, + "Label": "5618-5297 via Unknown from 147356 -> 147355", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147356, + "TargetID": 147355, + "Directional": false + } + ] + }, + { + "ID": 2257, + "SourceStructureID": 5297, + "TargetStructureID": 6050, + "Label": "5297-6050 via Gap Junction from 98392 -> 98389, 121109 -> 121110", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98392, + "TargetID": 98389, + "Directional": false + }, + { + "SourceID": 121109, + "TargetID": 121110, + "Directional": false + } + ] + }, + { + "ID": 2258, + "SourceStructureID": 5297, + "TargetStructureID": 6117, + "Label": "5297-6117 via Gap Junction from 121056 -> 121055", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121056, + "TargetID": 121055, + "Directional": false + } + ] + }, + { + "ID": 2259, + "SourceStructureID": 5297, + "TargetStructureID": 9347, + "Label": "5297-9347 via Gap Junction from 116499 -> 120996", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116499, + "TargetID": 120996, + "Directional": false + } + ] + }, + { + "ID": 2260, + "SourceStructureID": 16026, + "TargetStructureID": 5297, + "Label": "16026-5297 via Touch from 134515 -> 134516, 134523 -> 134524", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 134515, + "TargetID": 134516, + "Directional": false + }, + { + "SourceID": 134523, + "TargetID": 134524, + "Directional": false + } + ] + }, + { + "ID": 2261, + "SourceStructureID": 5297, + "TargetStructureID": 61450, + "Label": "5297-61450 via Unknown from 134290 -> 134289", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134290, + "TargetID": 134289, + "Directional": false + } + ] + }, + { + "ID": 2262, + "SourceStructureID": 66111, + "TargetStructureID": 5297, + "Label": "66111-5297 via Unknown from 116494 -> 116493", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116494, + "TargetID": 116493, + "Directional": false + } + ] + }, + { + "ID": 2263, + "SourceStructureID": 67818, + "TargetStructureID": 5297, + "Label": "67818-5297 via Unknown from 147358 -> 147357", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147358, + "TargetID": 147357, + "Directional": false + } + ] + }, + { + "ID": 2264, + "SourceStructureID": 92193, + "TargetStructureID": 5297, + "Label": "92193-5297 via Adherens from 147377 -> 147376", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147377, + "TargetID": 147376, + "Directional": false + } + ] + }, + { + "ID": 2265, + "SourceStructureID": 92935, + "TargetStructureID": 5297, + "Label": "92935-5297 via Unknown from 147373 -> 147372", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147373, + "TargetID": 147372, + "Directional": false + } + ] + }, + { + "ID": 2266, + "SourceStructureID": 93248, + "TargetStructureID": 5297, + "Label": "93248-5297 via Unknown from 147359 -> 147360, 147381 -> 147380", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147359, + "TargetID": 147360, + "Directional": false + }, + { + "SourceID": 147381, + "TargetID": 147380, + "Directional": false + } + ] + }, + { + "ID": 2267, + "SourceStructureID": 93301, + "TargetStructureID": 5297, + "Label": "93301-5297 via Unknown from 93304 -> 93300, 147382 -> 147383", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93304, + "TargetID": 93300, + "Directional": false + }, + { + "SourceID": 147382, + "TargetID": 147383, + "Directional": false + } + ] + }, + { + "ID": 2268, + "SourceStructureID": 93312, + "TargetStructureID": 5297, + "Label": "93312-5297 via Unknown from 93314 -> 93310", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93314, + "TargetID": 93310, + "Directional": false + } + ] + }, + { + "ID": 2269, + "SourceStructureID": 93321, + "TargetStructureID": 5297, + "Label": "93321-5297 via Unknown from 93322 -> 93320", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93322, + "TargetID": 93320, + "Directional": false + } + ] + }, + { + "ID": 2270, + "SourceStructureID": 93329, + "TargetStructureID": 5297, + "Label": "93329-5297 via Adherens from 147374 -> 147375", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147374, + "TargetID": 147375, + "Directional": false + } + ] + }, + { + "ID": 2271, + "SourceStructureID": 5297, + "TargetStructureID": 93329, + "Label": "5297-93329 via Gap Junction from 53663 -> 93332", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53663, + "TargetID": 93332, + "Directional": false + } + ] + }, + { + "ID": 2272, + "SourceStructureID": 5297, + "TargetStructureID": 93333, + "Label": "5297-93333 via Unknown from 134292 -> 134291", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134292, + "TargetID": 134291, + "Directional": false + } + ] + }, + { + "ID": 2273, + "SourceStructureID": 5297, + "TargetStructureID": 93355, + "Label": "5297-93355 via Unknown from 134298 -> 134299", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134298, + "TargetID": 134299, + "Directional": false + } + ] + }, + { + "ID": 2274, + "SourceStructureID": 5297, + "TargetStructureID": 97358, + "Label": "5297-97358 via Unknown from 134275 -> 134276", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134275, + "TargetID": 134276, + "Directional": false + } + ] + }, + { + "ID": 2275, + "SourceStructureID": 5297, + "TargetStructureID": 116504, + "Label": "5297-116504 via Unknown from 120275 -> 120276", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120275, + "TargetID": 120276, + "Directional": false + } + ] + }, + { + "ID": 2276, + "SourceStructureID": 120987, + "TargetStructureID": 5297, + "Label": "120987-5297 via Unknown from 134301 -> 134300", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134301, + "TargetID": 134300, + "Directional": false + } + ] + }, + { + "ID": 2277, + "SourceStructureID": 120992, + "TargetStructureID": 5297, + "Label": "120992-5297 via Unknown from 147338 -> 147339", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147338, + "TargetID": 147339, + "Directional": false + } + ] + }, + { + "ID": 2278, + "SourceStructureID": 5297, + "TargetStructureID": 120997, + "Label": "5297-120997 via Adherens from 147341 -> 147342", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147341, + "TargetID": 147342, + "Directional": false + } + ] + }, + { + "ID": 2279, + "SourceStructureID": 120997, + "TargetStructureID": 5297, + "Label": "120997-5297 via Gap Junction from 120998 -> 116515", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120998, + "TargetID": 116515, + "Directional": false + } + ] + }, + { + "ID": 2280, + "SourceStructureID": 120999, + "TargetStructureID": 5297, + "Label": "120999-5297 via Unknown from 147346 -> 147345", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147346, + "TargetID": 147345, + "Directional": false + } + ] + }, + { + "ID": 2281, + "SourceStructureID": 5297, + "TargetStructureID": 121001, + "Label": "5297-121001 via Unknown from 121002 -> 121003", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121002, + "TargetID": 121003, + "Directional": false + } + ] + }, + { + "ID": 2282, + "SourceStructureID": 5297, + "TargetStructureID": 121006, + "Label": "5297-121006 via Adherens from 127725 -> 127724, 147366 -> 147365", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127725, + "TargetID": 127724, + "Directional": false + }, + { + "SourceID": 147366, + "TargetID": 147365, + "Directional": false + } + ] + }, + { + "ID": 2283, + "SourceStructureID": 121006, + "TargetStructureID": 5297, + "Label": "121006-5297 via Unknown from 127722 -> 127723", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127722, + "TargetID": 127723, + "Directional": false + } + ] + }, + { + "ID": 2284, + "SourceStructureID": 121044, + "TargetStructureID": 5297, + "Label": "121044-5297 via Unknown from 147368 -> 147367", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147368, + "TargetID": 147367, + "Directional": false + } + ] + }, + { + "ID": 2285, + "SourceStructureID": 5297, + "TargetStructureID": 121046, + "Label": "5297-121046 via Unknown from 147370 -> 147371", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147370, + "TargetID": 147371, + "Directional": false + } + ] + }, + { + "ID": 2286, + "SourceStructureID": 121048, + "TargetStructureID": 5297, + "Label": "121048-5297 via Adherens from 147379 -> 147378", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147379, + "TargetID": 147378, + "Directional": false + } + ] + }, + { + "ID": 2287, + "SourceStructureID": 5297, + "TargetStructureID": 121048, + "Label": "5297-121048 via Gap Junction from 92307 -> 121049", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92307, + "TargetID": 121049, + "Directional": false + } + ] + }, + { + "ID": 2288, + "SourceStructureID": 5297, + "TargetStructureID": 121051, + "Label": "5297-121051 via Adherens from 147384 -> 147385", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147384, + "TargetID": 147385, + "Directional": false + } + ] + }, + { + "ID": 2289, + "SourceStructureID": 5297, + "TargetStructureID": 121051, + "Label": "5297-121051 via Gap Junction from 98141 -> 121052", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98141, + "TargetID": 121052, + "Directional": false + } + ] + }, + { + "ID": 2290, + "SourceStructureID": 5297, + "TargetStructureID": 121064, + "Label": "5297-121064 via Unknown from 116497 -> 121065", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116497, + "TargetID": 121065, + "Directional": false + } + ] + }, + { + "ID": 2291, + "SourceStructureID": 5297, + "TargetStructureID": 121066, + "Label": "5297-121066 via Unknown from 116501 -> 121067", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116501, + "TargetID": 121067, + "Directional": false + } + ] + }, + { + "ID": 2292, + "SourceStructureID": 5297, + "TargetStructureID": 121070, + "Label": "5297-121070 via Adherens from 121071 -> 121072", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 121071, + "TargetID": 121072, + "Directional": false + } + ] + }, + { + "ID": 2293, + "SourceStructureID": 121073, + "TargetStructureID": 5297, + "Label": "121073-5297 via Unknown from 121108 -> 98305", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121108, + "TargetID": 98305, + "Directional": false + } + ] + }, + { + "ID": 2294, + "SourceStructureID": 121075, + "TargetStructureID": 5297, + "Label": "121075-5297 via Touch from 147354 -> 147353", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 147354, + "TargetID": 147353, + "Directional": false + } + ] + }, + { + "ID": 2295, + "SourceStructureID": 5297, + "TargetStructureID": 121082, + "Label": "5297-121082 via Unknown from 116520 -> 121083", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116520, + "TargetID": 121083, + "Directional": false + } + ] + }, + { + "ID": 2296, + "SourceStructureID": 5297, + "TargetStructureID": 121097, + "Label": "5297-121097 via Unknown from 147363 -> 147364", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147363, + "TargetID": 147364, + "Directional": false + } + ] + }, + { + "ID": 2297, + "SourceStructureID": 5297, + "TargetStructureID": 121101, + "Label": "5297-121101 via Unknown from 98261 -> 121102", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98261, + "TargetID": 121102, + "Directional": false + } + ] + }, + { + "ID": 2298, + "SourceStructureID": 121103, + "TargetStructureID": 5297, + "Label": "121103-5297 via Unknown from 121105 -> 98277", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121105, + "TargetID": 98277, + "Directional": false + } + ] + }, + { + "ID": 2299, + "SourceStructureID": 121106, + "TargetStructureID": 5297, + "Label": "121106-5297 via Unknown from 121107 -> 98293", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121107, + "TargetID": 98293, + "Directional": false + } + ] + }, + { + "ID": 2300, + "SourceStructureID": 5297, + "TargetStructureID": 121111, + "Label": "5297-121111 via Unknown from 103215 -> 134302", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103215, + "TargetID": 134302, + "Directional": false + } + ] + }, + { + "ID": 2301, + "SourceStructureID": 134553, + "TargetStructureID": 5297, + "Label": "134553-5297 via Adherens from 116432 -> 116431", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116432, + "TargetID": 116431, + "Directional": false + } + ] + }, + { + "ID": 2302, + "SourceStructureID": 5297, + "TargetStructureID": 136736, + "Label": "5297-136736 via Unknown from 147336 -> 147337", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147336, + "TargetID": 147337, + "Directional": false + } + ] + }, + { + "ID": 2303, + "SourceStructureID": 7147, + "TargetStructureID": 5303, + "Label": "7147-5303 via Unknown from 100702 -> 100703", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100702, + "TargetID": 100703, + "Directional": false + } + ] + }, + { + "ID": 2304, + "SourceStructureID": 5325, + "TargetStructureID": 68761, + "Label": "5325-68761 via Gap Junction from 68765 -> 68764", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 68765, + "TargetID": 68764, + "Directional": false + } + ] + }, + { + "ID": 2305, + "SourceStructureID": 63020, + "TargetStructureID": 5338, + "Label": "63020-5338 via Gap Junction from 63021 -> 63005", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63021, + "TargetID": 63005, + "Directional": false + } + ] + }, + { + "ID": 2306, + "SourceStructureID": 5345, + "TargetStructureID": 5345, + "Label": "5345-5345 via Gap Junction from 88854 -> 8484", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 88854, + "TargetID": 8484, + "Directional": false + } + ] + }, + { + "ID": 2307, + "SourceStructureID": 5345, + "TargetStructureID": 5513, + "Label": "5345-5513 via Gap Junction from 30674 -> 30673", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 30674, + "TargetID": 30673, + "Directional": false + } + ] + }, + { + "ID": 2308, + "SourceStructureID": 5514, + "TargetStructureID": 5345, + "Label": "5514-5345 via Gap Junction from 38764 -> 14579, 94552 -> 38766, 94553 -> 94554, 120847 -> 120846, 121561 -> 33783, 121649 -> 14580", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38764, + "TargetID": 14579, + "Directional": false + }, + { + "SourceID": 94552, + "TargetID": 38766, + "Directional": false + }, + { + "SourceID": 94553, + "TargetID": 94554, + "Directional": false + }, + { + "SourceID": 120847, + "TargetID": 120846, + "Directional": false + }, + { + "SourceID": 121561, + "TargetID": 33783, + "Directional": false + }, + { + "SourceID": 121649, + "TargetID": 14580, + "Directional": false + } + ] + }, + { + "ID": 2309, + "SourceStructureID": 5345, + "TargetStructureID": 5515, + "Label": "5345-5515 via Gap Junction from 119166 -> 119165, 119183 -> 119182, 119221 -> 119219, 119348 -> 119347, 119351 -> 119350, 119434 -> 119433", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119166, + "TargetID": 119165, + "Directional": false + }, + { + "SourceID": 119183, + "TargetID": 119182, + "Directional": false + }, + { + "SourceID": 119221, + "TargetID": 119219, + "Directional": false + }, + { + "SourceID": 119348, + "TargetID": 119347, + "Directional": false + }, + { + "SourceID": 119351, + "TargetID": 119350, + "Directional": false + }, + { + "SourceID": 119434, + "TargetID": 119433, + "Directional": false + } + ] + }, + { + "ID": 2310, + "SourceStructureID": 5345, + "TargetStructureID": 5517, + "Label": "5345-5517 via Gap Junction from 96100 -> 96099", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96100, + "TargetID": 96099, + "Directional": false + } + ] + }, + { + "ID": 2311, + "SourceStructureID": 5623, + "TargetStructureID": 5345, + "Label": "5623-5345 via Gap Junction from 32819 -> 8488, 88883 -> 40387, 94782 -> 123706, 123700 -> 123701", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 32819, + "TargetID": 8488, + "Directional": false + }, + { + "SourceID": 88883, + "TargetID": 40387, + "Directional": false + }, + { + "SourceID": 94782, + "TargetID": 123706, + "Directional": false + }, + { + "SourceID": 123700, + "TargetID": 123701, + "Directional": false + } + ] + }, + { + "ID": 2312, + "SourceStructureID": 6589, + "TargetStructureID": 5345, + "Label": "6589-5345 via Gap Junction from 14574 -> 14591, 120044 -> 120043", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14574, + "TargetID": 14591, + "Directional": false + }, + { + "SourceID": 120044, + "TargetID": 120043, + "Directional": false + } + ] + }, + { + "ID": 2313, + "SourceStructureID": 5345, + "TargetStructureID": 6997, + "Label": "5345-6997 via Gap Junction from 22158 -> 22157, 57002 -> 57003", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 22158, + "TargetID": 22157, + "Directional": false + }, + { + "SourceID": 57002, + "TargetID": 57003, + "Directional": false + } + ] + }, + { + "ID": 2314, + "SourceStructureID": 6997, + "TargetStructureID": 5345, + "Label": "6997-5345 via Unknown from 83072 -> 79980", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83072, + "TargetID": 79980, + "Directional": false + } + ] + }, + { + "ID": 2315, + "SourceStructureID": 8037, + "TargetStructureID": 5345, + "Label": "8037-5345 via Adherens from 88898 -> 88892", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88898, + "TargetID": 88892, + "Directional": false + } + ] + }, + { + "ID": 2316, + "SourceStructureID": 8037, + "TargetStructureID": 5345, + "Label": "8037-5345 via Gap Junction from 15683 -> 15682, 19229 -> 7569, 88896 -> 88891, 130639 -> 130638", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 15683, + "TargetID": 15682, + "Directional": false + }, + { + "SourceID": 19229, + "TargetID": 7569, + "Directional": false + }, + { + "SourceID": 88896, + "TargetID": 88891, + "Directional": false + }, + { + "SourceID": 130639, + "TargetID": 130638, + "Directional": false + } + ] + }, + { + "ID": 2317, + "SourceStructureID": 9693, + "TargetStructureID": 5345, + "Label": "9693-5345 via Gap Junction from 119785 -> 119786, 132765 -> 132764, 135000 -> 134999", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119785, + "TargetID": 119786, + "Directional": false + }, + { + "SourceID": 132765, + "TargetID": 132764, + "Directional": false + }, + { + "SourceID": 135000, + "TargetID": 134999, + "Directional": false + } + ] + }, + { + "ID": 2318, + "SourceStructureID": 28886, + "TargetStructureID": 5345, + "Label": "28886-5345 via Gap Junction from 51299 -> 52347", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51299, + "TargetID": 52347, + "Directional": false + } + ] + }, + { + "ID": 2319, + "SourceStructureID": 46801, + "TargetStructureID": 5345, + "Label": "46801-5345 via Gap Junction from 118256 -> 118255", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118256, + "TargetID": 118255, + "Directional": false + } + ] + }, + { + "ID": 2320, + "SourceStructureID": 88864, + "TargetStructureID": 5345, + "Label": "88864-5345 via Adherens from 88867 -> 88862, 88868 -> 88863", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88867, + "TargetID": 88862, + "Directional": false + }, + { + "SourceID": 88868, + "TargetID": 88863, + "Directional": false + } + ] + }, + { + "ID": 2321, + "SourceStructureID": 5345, + "TargetStructureID": 132773, + "Label": "5345-132773 via Gap Junction from 132783 -> 132782", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132783, + "TargetID": 132782, + "Directional": false + } + ] + }, + { + "ID": 2322, + "SourceStructureID": 6117, + "TargetStructureID": 5377, + "Label": "6117-5377 via Unknown from 134139 -> 83233", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134139, + "TargetID": 83233, + "Directional": false + } + ] + }, + { + "ID": 2323, + "SourceStructureID": 83234, + "TargetStructureID": 5377, + "Label": "83234-5377 via Unknown from 83235 -> 83233", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83235, + "TargetID": 83233, + "Directional": false + } + ] + }, + { + "ID": 2324, + "SourceStructureID": 86997, + "TargetStructureID": 5377, + "Label": "86997-5377 via Adherens from 86999 -> 87000", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86999, + "TargetID": 87000, + "Directional": false + } + ] + }, + { + "ID": 2325, + "SourceStructureID": 87008, + "TargetStructureID": 5377, + "Label": "87008-5377 via Adherens from 87009 -> 87007", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87009, + "TargetID": 87007, + "Directional": false + } + ] + }, + { + "ID": 2326, + "SourceStructureID": 5377, + "TargetStructureID": 87020, + "Label": "5377-87020 via Adherens from 87022 -> 87023", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87022, + "TargetID": 87023, + "Directional": false + } + ] + }, + { + "ID": 2327, + "SourceStructureID": 5916, + "TargetStructureID": 5390, + "Label": "5916-5390 via Adherens from 108762 -> 108763", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108762, + "TargetID": 108763, + "Directional": false + } + ] + }, + { + "ID": 2328, + "SourceStructureID": 7951, + "TargetStructureID": 5394, + "Label": "7951-5394 via Adherens from 77093 -> 77092, 77095 -> 77094", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77093, + "TargetID": 77092, + "Directional": false + }, + { + "SourceID": 77095, + "TargetID": 77094, + "Directional": false + } + ] + }, + { + "ID": 2329, + "SourceStructureID": 5394, + "TargetStructureID": 10931, + "Label": "5394-10931 via Adherens from 159337 -> 159336, 159501 -> 159502", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159337, + "TargetID": 159336, + "Directional": false + }, + { + "SourceID": 159501, + "TargetID": 159502, + "Directional": false + } + ] + }, + { + "ID": 2330, + "SourceStructureID": 7594, + "TargetStructureID": 5396, + "Label": "7594-5396 via Adherens from 89453 -> 89452", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89453, + "TargetID": 89452, + "Directional": false + } + ] + }, + { + "ID": 2331, + "SourceStructureID": 5396, + "TargetStructureID": 89433, + "Label": "5396-89433 via Unknown from 89432 -> 89434", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89432, + "TargetID": 89434, + "Directional": false + } + ] + }, + { + "ID": 2332, + "SourceStructureID": 5396, + "TargetStructureID": 89438, + "Label": "5396-89438 via Adherens from 89437 -> 89439", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89437, + "TargetID": 89439, + "Directional": false + } + ] + }, + { + "ID": 2333, + "SourceStructureID": 89443, + "TargetStructureID": 5396, + "Label": "89443-5396 via Adherens from 89444 -> 89442", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89444, + "TargetID": 89442, + "Directional": false + } + ] + }, + { + "ID": 2334, + "SourceStructureID": 89447, + "TargetStructureID": 5396, + "Label": "89447-5396 via Adherens from 89448 -> 89445", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89448, + "TargetID": 89445, + "Directional": false + } + ] + }, + { + "ID": 2335, + "SourceStructureID": 89449, + "TargetStructureID": 5396, + "Label": "89449-5396 via Adherens from 89450 -> 89446", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89450, + "TargetID": 89446, + "Directional": false + } + ] + }, + { + "ID": 2336, + "SourceStructureID": 89522, + "TargetStructureID": 5396, + "Label": "89522-5396 via Adherens from 89523 -> 89521", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89523, + "TargetID": 89521, + "Directional": false + } + ] + }, + { + "ID": 2337, + "SourceStructureID": 89533, + "TargetStructureID": 5396, + "Label": "89533-5396 via Adherens from 89534 -> 89532", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89534, + "TargetID": 89532, + "Directional": false + } + ] + }, + { + "ID": 2338, + "SourceStructureID": 5402, + "TargetStructureID": 14615, + "Label": "5402-14615 via Adherens from 76603 -> 76604", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76603, + "TargetID": 76604, + "Directional": false + } + ] + }, + { + "ID": 2339, + "SourceStructureID": 5405, + "TargetStructureID": 5405, + "Label": "5405-5405 via Adherens from 120202 -> 120203", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 120202, + "TargetID": 120203, + "Directional": false + } + ] + }, + { + "ID": 2340, + "SourceStructureID": 5405, + "TargetStructureID": 8575, + "Label": "5405-8575 via Adherens from 62802 -> 62801", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 62802, + "TargetID": 62801, + "Directional": false + } + ] + }, + { + "ID": 2341, + "SourceStructureID": 82130, + "TargetStructureID": 5410, + "Label": "82130-5410 via Adherens from 82132 -> 82133", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82132, + "TargetID": 82133, + "Directional": false + } + ] + }, + { + "ID": 2342, + "SourceStructureID": 82143, + "TargetStructureID": 5410, + "Label": "82143-5410 via Adherens from 82144 -> 82142", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82144, + "TargetID": 82142, + "Directional": false + } + ] + }, + { + "ID": 2343, + "SourceStructureID": 5410, + "TargetStructureID": 82159, + "Label": "5410-82159 via Adherens from 82158 -> 82160", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82158, + "TargetID": 82160, + "Directional": false + } + ] + }, + { + "ID": 2344, + "SourceStructureID": 5410, + "TargetStructureID": 82170, + "Label": "5410-82170 via Adherens from 82169 -> 82171", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82169, + "TargetID": 82171, + "Directional": false + } + ] + }, + { + "ID": 2345, + "SourceStructureID": 5410, + "TargetStructureID": 82181, + "Label": "5410-82181 via Adherens from 82180 -> 82183", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82180, + "TargetID": 82183, + "Directional": false + } + ] + }, + { + "ID": 2346, + "SourceStructureID": 5530, + "TargetStructureID": 5423, + "Label": "5530-5423 via Unknown from 80494 -> 126454", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80494, + "TargetID": 126454, + "Directional": false + } + ] + }, + { + "ID": 2347, + "SourceStructureID": 5530, + "TargetStructureID": 5435, + "Label": "5530-5435 via Unknown from 81646 -> 82993", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81646, + "TargetID": 82993, + "Directional": false + } + ] + }, + { + "ID": 2348, + "SourceStructureID": 29340, + "TargetStructureID": 5435, + "Label": "29340-5435 via Gap Junction from 41220 -> 41219", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 41220, + "TargetID": 41219, + "Directional": false + } + ] + }, + { + "ID": 2349, + "SourceStructureID": 5528, + "TargetStructureID": 5436, + "Label": "5528-5436 via Adherens from 94284 -> 94285", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94284, + "TargetID": 94285, + "Directional": false + } + ] + }, + { + "ID": 2350, + "SourceStructureID": 7568, + "TargetStructureID": 5439, + "Label": "7568-5439 via Adherens from 85513 -> 85514", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85513, + "TargetID": 85514, + "Directional": false + } + ] + }, + { + "ID": 2351, + "SourceStructureID": 70535, + "TargetStructureID": 5439, + "Label": "70535-5439 via Adherens from 70539 -> 70538", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70539, + "TargetID": 70538, + "Directional": false + } + ] + }, + { + "ID": 2352, + "SourceStructureID": 70547, + "TargetStructureID": 5439, + "Label": "70547-5439 via Adherens from 70548 -> 70549", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70548, + "TargetID": 70549, + "Directional": false + } + ] + }, + { + "ID": 2353, + "SourceStructureID": 70547, + "TargetStructureID": 5439, + "Label": "70547-5439 via Gap Junction from 70550 -> 70551", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 70550, + "TargetID": 70551, + "Directional": false + } + ] + }, + { + "ID": 2354, + "SourceStructureID": 70552, + "TargetStructureID": 5439, + "Label": "70552-5439 via Adherens from 70555 -> 70556", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70555, + "TargetID": 70556, + "Directional": false + } + ] + }, + { + "ID": 2355, + "SourceStructureID": 70586, + "TargetStructureID": 5439, + "Label": "70586-5439 via Gap Junction from 70587 -> 66577", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 70587, + "TargetID": 66577, + "Directional": false + } + ] + }, + { + "ID": 2356, + "SourceStructureID": 5439, + "TargetStructureID": 70628, + "Label": "5439-70628 via Adherens from 70630 -> 70631", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70630, + "TargetID": 70631, + "Directional": false + } + ] + }, + { + "ID": 2357, + "SourceStructureID": 5439, + "TargetStructureID": 70663, + "Label": "5439-70663 via Adherens from 70665 -> 70664", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70665, + "TargetID": 70664, + "Directional": false + } + ] + }, + { + "ID": 2358, + "SourceStructureID": 70671, + "TargetStructureID": 5439, + "Label": "70671-5439 via Adherens from 70672 -> 70670", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70672, + "TargetID": 70670, + "Directional": false + } + ] + }, + { + "ID": 2359, + "SourceStructureID": 70801, + "TargetStructureID": 5439, + "Label": "70801-5439 via Adherens from 70802 -> 70803, 70806 -> 70805", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70802, + "TargetID": 70803, + "Directional": false + }, + { + "SourceID": 70806, + "TargetID": 70805, + "Directional": false + } + ] + }, + { + "ID": 2360, + "SourceStructureID": 5439, + "TargetStructureID": 70822, + "Label": "5439-70822 via Adherens from 70824 -> 70823", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70824, + "TargetID": 70823, + "Directional": false + } + ] + }, + { + "ID": 2361, + "SourceStructureID": 70837, + "TargetStructureID": 5439, + "Label": "70837-5439 via Adherens from 70838 -> 70839", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70838, + "TargetID": 70839, + "Directional": false + } + ] + }, + { + "ID": 2362, + "SourceStructureID": 70840, + "TargetStructureID": 5439, + "Label": "70840-5439 via Adherens from 70844 -> 70843", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70844, + "TargetID": 70843, + "Directional": false + } + ] + }, + { + "ID": 2363, + "SourceStructureID": 70845, + "TargetStructureID": 5439, + "Label": "70845-5439 via Adherens from 70848 -> 70849", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70848, + "TargetID": 70849, + "Directional": false + } + ] + }, + { + "ID": 2364, + "SourceStructureID": 85601, + "TargetStructureID": 5439, + "Label": "85601-5439 via Adherens from 85610 -> 85611", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85610, + "TargetID": 85611, + "Directional": false + } + ] + }, + { + "ID": 2365, + "SourceStructureID": 85735, + "TargetStructureID": 5439, + "Label": "85735-5439 via Adherens from 85737 -> 85731", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85737, + "TargetID": 85731, + "Directional": false + } + ] + }, + { + "ID": 2366, + "SourceStructureID": 5439, + "TargetStructureID": 96652, + "Label": "5439-96652 via Adherens from 96656 -> 96655", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96656, + "TargetID": 96655, + "Directional": false + } + ] + }, + { + "ID": 2367, + "SourceStructureID": 5468, + "TargetStructureID": 5442, + "Label": "5468-5442 via Adherens from 55140 -> 55139", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 55140, + "TargetID": 55139, + "Directional": false + } + ] + }, + { + "ID": 2368, + "SourceStructureID": 5442, + "TargetStructureID": 5598, + "Label": "5442-5598 via Adherens from 126961 -> 115190", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126961, + "TargetID": 115190, + "Directional": false + } + ] + }, + { + "ID": 2369, + "SourceStructureID": 6050, + "TargetStructureID": 5442, + "Label": "6050-5442 via Unknown from 127109 -> 127110, 127458 -> 127459, 127524 -> 127523", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127109, + "TargetID": 127110, + "Directional": false + }, + { + "SourceID": 127458, + "TargetID": 127459, + "Directional": false + }, + { + "SourceID": 127524, + "TargetID": 127523, + "Directional": false + } + ] + }, + { + "ID": 2370, + "SourceStructureID": 5442, + "TargetStructureID": 15796, + "Label": "5442-15796 via Adherens from 56692 -> 56693", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 56692, + "TargetID": 56693, + "Directional": false + } + ] + }, + { + "ID": 2371, + "SourceStructureID": 5442, + "TargetStructureID": 23870, + "Label": "5442-23870 via Adherens from 55136 -> 55137, 55920 -> 55921, 56672 -> 56671, 56673 -> 56674", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 55136, + "TargetID": 55137, + "Directional": false + }, + { + "SourceID": 55920, + "TargetID": 55921, + "Directional": false + }, + { + "SourceID": 56672, + "TargetID": 56671, + "Directional": false + }, + { + "SourceID": 56673, + "TargetID": 56674, + "Directional": false + } + ] + }, + { + "ID": 2372, + "SourceStructureID": 5442, + "TargetStructureID": 23870, + "Label": "5442-23870 via Gap Junction from 55150 -> 55149, 56676 -> 56675, 66273 -> 66270, 66274 -> 66275", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55150, + "TargetID": 55149, + "Directional": false + }, + { + "SourceID": 56676, + "TargetID": 56675, + "Directional": false + }, + { + "SourceID": 66273, + "TargetID": 66270, + "Directional": false + }, + { + "SourceID": 66274, + "TargetID": 66275, + "Directional": false + } + ] + }, + { + "ID": 2373, + "SourceStructureID": 5442, + "TargetStructureID": 23870, + "Label": "5442-23870 via Unknown from 74435 -> 74437, 74445 -> 74443", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74435, + "TargetID": 74437, + "Directional": false + }, + { + "SourceID": 74445, + "TargetID": 74443, + "Directional": false + } + ] + }, + { + "ID": 2374, + "SourceStructureID": 35811, + "TargetStructureID": 5442, + "Label": "35811-5442 via Adherens from 55120 -> 55119, 73964 -> 73963, 73990 -> 73989", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 55120, + "TargetID": 55119, + "Directional": false + }, + { + "SourceID": 73964, + "TargetID": 73963, + "Directional": false + }, + { + "SourceID": 73990, + "TargetID": 73989, + "Directional": false + } + ] + }, + { + "ID": 2375, + "SourceStructureID": 5442, + "TargetStructureID": 35894, + "Label": "5442-35894 via Adherens from 56684 -> 56685, 56686 -> 56687, 56689 -> 56690", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 56684, + "TargetID": 56685, + "Directional": false + }, + { + "SourceID": 56686, + "TargetID": 56687, + "Directional": false + }, + { + "SourceID": 56689, + "TargetID": 56690, + "Directional": false + } + ] + }, + { + "ID": 2376, + "SourceStructureID": 62396, + "TargetStructureID": 5442, + "Label": "62396-5442 via Adherens from 62399 -> 56660, 62400 -> 62401", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 62399, + "TargetID": 56660, + "Directional": false + }, + { + "SourceID": 62400, + "TargetID": 62401, + "Directional": false + } + ] + }, + { + "ID": 2377, + "SourceStructureID": 5442, + "TargetStructureID": 73580, + "Label": "5442-73580 via Adherens from 73585 -> 73586, 73587 -> 73588", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73585, + "TargetID": 73586, + "Directional": false + }, + { + "SourceID": 73587, + "TargetID": 73588, + "Directional": false + } + ] + }, + { + "ID": 2378, + "SourceStructureID": 74047, + "TargetStructureID": 5442, + "Label": "74047-5442 via Unknown from 74048 -> 74038, 74355 -> 74354", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74048, + "TargetID": 74038, + "Directional": false + }, + { + "SourceID": 74355, + "TargetID": 74354, + "Directional": false + } + ] + }, + { + "ID": 2379, + "SourceStructureID": 5451, + "TargetStructureID": 7122, + "Label": "5451-7122 via Gap Junction from 45105 -> 45106", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45105, + "TargetID": 45106, + "Directional": false + } + ] + }, + { + "ID": 2380, + "SourceStructureID": 5451, + "TargetStructureID": 28950, + "Label": "5451-28950 via Adherens from 55922 -> 55923", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 55922, + "TargetID": 55923, + "Directional": false + } + ] + }, + { + "ID": 2381, + "SourceStructureID": 28950, + "TargetStructureID": 5451, + "Label": "28950-5451 via Touch from 55938 -> 131110", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 55938, + "TargetID": 131110, + "Directional": false + } + ] + }, + { + "ID": 2382, + "SourceStructureID": 5531, + "TargetStructureID": 5453, + "Label": "5531-5453 via Unknown from 105367 -> 105368", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105367, + "TargetID": 105368, + "Directional": false + } + ] + }, + { + "ID": 2383, + "SourceStructureID": 5453, + "TargetStructureID": 5543, + "Label": "5453-5543 via Adherens from 18658 -> 18673", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 18658, + "TargetID": 18673, + "Directional": false + } + ] + }, + { + "ID": 2384, + "SourceStructureID": 5531, + "TargetStructureID": 5454, + "Label": "5531-5454 via Unknown from 106655 -> 106654", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106655, + "TargetID": 106654, + "Directional": false + } + ] + }, + { + "ID": 2385, + "SourceStructureID": 7345, + "TargetStructureID": 5456, + "Label": "7345-5456 via Gap Junction from 122790 -> 122780", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122790, + "TargetID": 122780, + "Directional": false + } + ] + }, + { + "ID": 2386, + "SourceStructureID": 7564, + "TargetStructureID": 5457, + "Label": "7564-5457 via Adherens from 29159 -> 103141", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 29159, + "TargetID": 103141, + "Directional": false + } + ] + }, + { + "ID": 2387, + "SourceStructureID": 5464, + "TargetStructureID": 5464, + "Label": "5464-5464 via Gap Junction from 116615 -> 116616", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116615, + "TargetID": 116616, + "Directional": false + } + ] + }, + { + "ID": 2388, + "SourceStructureID": 5464, + "TargetStructureID": 5592, + "Label": "5464-5592 via Gap Junction from 121815 -> 121814, 121817 -> 121816", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121815, + "TargetID": 121814, + "Directional": false + }, + { + "SourceID": 121817, + "TargetID": 121816, + "Directional": false + } + ] + }, + { + "ID": 2389, + "SourceStructureID": 6047, + "TargetStructureID": 5464, + "Label": "6047-5464 via Gap Junction from 113268 -> 129331, 115796 -> 113247, 129339 -> 117225", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 113268, + "TargetID": 129331, + "Directional": false + }, + { + "SourceID": 115796, + "TargetID": 113247, + "Directional": false + }, + { + "SourceID": 129339, + "TargetID": 117225, + "Directional": false + } + ] + }, + { + "ID": 2390, + "SourceStructureID": 5464, + "TargetStructureID": 6141, + "Label": "5464-6141 via Gap Junction from 118159 -> 61415", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118159, + "TargetID": 61415, + "Directional": false + } + ] + }, + { + "ID": 2391, + "SourceStructureID": 5464, + "TargetStructureID": 6203, + "Label": "5464-6203 via Gap Junction from 47827 -> 11969, 57254 -> 57242, 57270 -> 57264, 116622 -> 116621, 116623 -> 116624, 116627 -> 116628, 118158 -> 118157, 121821 -> 121820, 131400 -> 131399", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47827, + "TargetID": 11969, + "Directional": false + }, + { + "SourceID": 57254, + "TargetID": 57242, + "Directional": false + }, + { + "SourceID": 57270, + "TargetID": 57264, + "Directional": false + }, + { + "SourceID": 116622, + "TargetID": 116621, + "Directional": false + }, + { + "SourceID": 116623, + "TargetID": 116624, + "Directional": false + }, + { + "SourceID": 116627, + "TargetID": 116628, + "Directional": false + }, + { + "SourceID": 118158, + "TargetID": 118157, + "Directional": false + }, + { + "SourceID": 121821, + "TargetID": 121820, + "Directional": false + }, + { + "SourceID": 131400, + "TargetID": 131399, + "Directional": false + } + ] + }, + { + "ID": 2392, + "SourceStructureID": 6204, + "TargetStructureID": 5464, + "Label": "6204-5464 via Adherens from 132033 -> 132034", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132033, + "TargetID": 132034, + "Directional": false + } + ] + }, + { + "ID": 2393, + "SourceStructureID": 5464, + "TargetStructureID": 6204, + "Label": "5464-6204 via Gap Junction from 52638 -> 52635, 116625 -> 116626, 118083 -> 118082, 118112 -> 118111, 118160 -> 118156, 121818 -> 121819", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52638, + "TargetID": 52635, + "Directional": false + }, + { + "SourceID": 116625, + "TargetID": 116626, + "Directional": false + }, + { + "SourceID": 118083, + "TargetID": 118082, + "Directional": false + }, + { + "SourceID": 118112, + "TargetID": 118111, + "Directional": false + }, + { + "SourceID": 118160, + "TargetID": 118156, + "Directional": false + }, + { + "SourceID": 121818, + "TargetID": 121819, + "Directional": false + } + ] + }, + { + "ID": 2394, + "SourceStructureID": 5464, + "TargetStructureID": 6958, + "Label": "5464-6958 via Gap Junction from 116632 -> 116631", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116632, + "TargetID": 116631, + "Directional": false + } + ] + }, + { + "ID": 2395, + "SourceStructureID": 5464, + "TargetStructureID": 7147, + "Label": "5464-7147 via Gap Junction from 129335 -> 117226", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 129335, + "TargetID": 117226, + "Directional": false + } + ] + }, + { + "ID": 2396, + "SourceStructureID": 57353, + "TargetStructureID": 5464, + "Label": "57353-5464 via Touch from 124062 -> 124063", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 124062, + "TargetID": 124063, + "Directional": false + } + ] + }, + { + "ID": 2397, + "SourceStructureID": 5464, + "TargetStructureID": 57353, + "Label": "5464-57353 via Unknown from 124300 -> 124299", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124300, + "TargetID": 124299, + "Directional": false + } + ] + }, + { + "ID": 2398, + "SourceStructureID": 5468, + "TargetStructureID": 5468, + "Label": "5468-5468 via Gap Junction from 57456 -> 57455", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57456, + "TargetID": 57455, + "Directional": false + } + ] + }, + { + "ID": 2399, + "SourceStructureID": 5473, + "TargetStructureID": 5468, + "Label": "5473-5468 via Gap Junction from 23883 -> 23882, 57147 -> 48271", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 23883, + "TargetID": 23882, + "Directional": false + }, + { + "SourceID": 57147, + "TargetID": 48271, + "Directional": false + } + ] + }, + { + "ID": 2400, + "SourceStructureID": 5584, + "TargetStructureID": 5468, + "Label": "5584-5468 via Touch from 93534 -> 93532", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 93534, + "TargetID": 93532, + "Directional": false + } + ] + }, + { + "ID": 2401, + "SourceStructureID": 5592, + "TargetStructureID": 5468, + "Label": "5592-5468 via Gap Junction from 36843 -> 36844, 118106 -> 118105, 121791 -> 121790", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 36843, + "TargetID": 36844, + "Directional": false + }, + { + "SourceID": 118106, + "TargetID": 118105, + "Directional": false + }, + { + "SourceID": 121791, + "TargetID": 121790, + "Directional": false + } + ] + }, + { + "ID": 2402, + "SourceStructureID": 5598, + "TargetStructureID": 5468, + "Label": "5598-5468 via Gap Junction from 52983 -> 48220", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52983, + "TargetID": 48220, + "Directional": false + } + ] + }, + { + "ID": 2403, + "SourceStructureID": 5601, + "TargetStructureID": 5468, + "Label": "5601-5468 via Adherens from 135658 -> 135659, 135676 -> 135675", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135658, + "TargetID": 135659, + "Directional": false + }, + { + "SourceID": 135676, + "TargetID": 135675, + "Directional": false + } + ] + }, + { + "ID": 2404, + "SourceStructureID": 5468, + "TargetStructureID": 5601, + "Label": "5468-5601 via Gap Junction from 57440 -> 57442, 57466 -> 57465, 123284 -> 91465", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57440, + "TargetID": 57442, + "Directional": false + }, + { + "SourceID": 57466, + "TargetID": 57465, + "Directional": false + }, + { + "SourceID": 123284, + "TargetID": 91465, + "Directional": false + } + ] + }, + { + "ID": 2405, + "SourceStructureID": 5468, + "TargetStructureID": 5601, + "Label": "5468-5601 via Touch from 91467 -> 91466", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 91467, + "TargetID": 91466, + "Directional": false + } + ] + }, + { + "ID": 2406, + "SourceStructureID": 6203, + "TargetStructureID": 5468, + "Label": "6203-5468 via Gap Junction from 118109 -> 118108", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118109, + "TargetID": 118108, + "Directional": false + } + ] + }, + { + "ID": 2407, + "SourceStructureID": 6204, + "TargetStructureID": 5468, + "Label": "6204-5468 via Gap Junction from 118168 -> 23878, 118169 -> 118110", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118168, + "TargetID": 23878, + "Directional": false + }, + { + "SourceID": 118169, + "TargetID": 118110, + "Directional": false + } + ] + }, + { + "ID": 2408, + "SourceStructureID": 7114, + "TargetStructureID": 5468, + "Label": "7114-5468 via Gap Junction from 48215 -> 48214, 51774 -> 48129, 93531 -> 93530, 118114 -> 118115, 121812 -> 121811", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48215, + "TargetID": 48214, + "Directional": false + }, + { + "SourceID": 51774, + "TargetID": 48129, + "Directional": false + }, + { + "SourceID": 93531, + "TargetID": 93530, + "Directional": false + }, + { + "SourceID": 118114, + "TargetID": 118115, + "Directional": false + }, + { + "SourceID": 121812, + "TargetID": 121811, + "Directional": false + } + ] + }, + { + "ID": 2409, + "SourceStructureID": 15976, + "TargetStructureID": 5468, + "Label": "15976-5468 via Gap Junction from 54714 -> 54713", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54714, + "TargetID": 54713, + "Directional": false + } + ] + }, + { + "ID": 2410, + "SourceStructureID": 5468, + "TargetStructureID": 33057, + "Label": "5468-33057 via Adherens from 48225 -> 48226", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 48225, + "TargetID": 48226, + "Directional": false + } + ] + }, + { + "ID": 2411, + "SourceStructureID": 57148, + "TargetStructureID": 5468, + "Label": "57148-5468 via Gap Junction from 57149 -> 48289", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57149, + "TargetID": 48289, + "Directional": false + } + ] + }, + { + "ID": 2412, + "SourceStructureID": 5468, + "TargetStructureID": 74047, + "Label": "5468-74047 via Adherens from 74394 -> 74393", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74394, + "TargetID": 74393, + "Directional": false + } + ] + }, + { + "ID": 2413, + "SourceStructureID": 89638, + "TargetStructureID": 5468, + "Label": "89638-5468 via Adherens from 89640 -> 89641", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89640, + "TargetID": 89641, + "Directional": false + } + ] + }, + { + "ID": 2414, + "SourceStructureID": 5468, + "TargetStructureID": 93574, + "Label": "5468-93574 via Adherens from 48238 -> 93577", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 48238, + "TargetID": 93577, + "Directional": false + } + ] + }, + { + "ID": 2415, + "SourceStructureID": 5468, + "TargetStructureID": 93574, + "Label": "5468-93574 via Gap Junction from 48266 -> 93575", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48266, + "TargetID": 93575, + "Directional": false + } + ] + }, + { + "ID": 2416, + "SourceStructureID": 5473, + "TargetStructureID": 5592, + "Label": "5473-5592 via Gap Junction from 23895 -> 23891", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 23895, + "TargetID": 23891, + "Directional": false + } + ] + }, + { + "ID": 2417, + "SourceStructureID": 5473, + "TargetStructureID": 5638, + "Label": "5473-5638 via Gap Junction from 116863 -> 56467, 117099 -> 117098", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116863, + "TargetID": 56467, + "Directional": false + }, + { + "SourceID": 117099, + "TargetID": 117098, + "Directional": false + } + ] + }, + { + "ID": 2418, + "SourceStructureID": 5473, + "TargetStructureID": 6958, + "Label": "5473-6958 via Gap Junction from 27460 -> 27461, 116540 -> 116539", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 27460, + "TargetID": 27461, + "Directional": false + }, + { + "SourceID": 116540, + "TargetID": 116539, + "Directional": false + } + ] + }, + { + "ID": 2419, + "SourceStructureID": 15976, + "TargetStructureID": 5473, + "Label": "15976-5473 via Gap Junction from 23888 -> 23887, 57152 -> 23886, 93195 -> 57146, 93309 -> 57412, 121834 -> 121833", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 23888, + "TargetID": 23887, + "Directional": false + }, + { + "SourceID": 57152, + "TargetID": 23886, + "Directional": false + }, + { + "SourceID": 93195, + "TargetID": 57146, + "Directional": false + }, + { + "SourceID": 93309, + "TargetID": 57412, + "Directional": false + }, + { + "SourceID": 121834, + "TargetID": 121833, + "Directional": false + } + ] + }, + { + "ID": 2420, + "SourceStructureID": 5473, + "TargetStructureID": 15977, + "Label": "5473-15977 via Gap Junction from 117175 -> 117174", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117175, + "TargetID": 117174, + "Directional": false + } + ] + }, + { + "ID": 2421, + "SourceStructureID": 5473, + "TargetStructureID": 57143, + "Label": "5473-57143 via Gap Junction from 57145 -> 57144", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57145, + "TargetID": 57144, + "Directional": false + } + ] + }, + { + "ID": 2422, + "SourceStructureID": 117127, + "TargetStructureID": 5473, + "Label": "117127-5473 via Gap Junction from 117140 -> 117141", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117140, + "TargetID": 117141, + "Directional": false + } + ] + }, + { + "ID": 2423, + "SourceStructureID": 66663, + "TargetStructureID": 5481, + "Label": "66663-5481 via Adherens from 66664 -> 66662", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66664, + "TargetID": 66662, + "Directional": false + } + ] + }, + { + "ID": 2424, + "SourceStructureID": 71882, + "TargetStructureID": 5481, + "Label": "71882-5481 via Adherens from 71887 -> 71886, 90318 -> 90200", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71887, + "TargetID": 71886, + "Directional": false + }, + { + "SourceID": 90318, + "TargetID": 90200, + "Directional": false + } + ] + }, + { + "ID": 2425, + "SourceStructureID": 71882, + "TargetStructureID": 5481, + "Label": "71882-5481 via Gap Junction from 71885 -> 71884", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71885, + "TargetID": 71884, + "Directional": false + } + ] + }, + { + "ID": 2426, + "SourceStructureID": 82071, + "TargetStructureID": 5481, + "Label": "82071-5481 via Unknown from 82499 -> 82500", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82499, + "TargetID": 82500, + "Directional": false + } + ] + }, + { + "ID": 2427, + "SourceStructureID": 5485, + "TargetStructureID": 8575, + "Label": "5485-8575 via Adherens from 62293 -> 62292", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 62293, + "TargetID": 62292, + "Directional": false + } + ] + }, + { + "ID": 2428, + "SourceStructureID": 34336, + "TargetStructureID": 5485, + "Label": "34336-5485 via Adherens from 34368 -> 34367", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 34368, + "TargetID": 34367, + "Directional": false + } + ] + }, + { + "ID": 2429, + "SourceStructureID": 40604, + "TargetStructureID": 5485, + "Label": "40604-5485 via Adherens from 43820 -> 43821", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 43820, + "TargetID": 43821, + "Directional": false + } + ] + }, + { + "ID": 2430, + "SourceStructureID": 5487, + "TargetStructureID": 21299, + "Label": "5487-21299 via Adherens from 91667 -> 48900, 91674 -> 91675, 91677 -> 91676", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91667, + "TargetID": 48900, + "Directional": false + }, + { + "SourceID": 91674, + "TargetID": 91675, + "Directional": false + }, + { + "SourceID": 91677, + "TargetID": 91676, + "Directional": false + } + ] + }, + { + "ID": 2431, + "SourceStructureID": 5487, + "TargetStructureID": 21299, + "Label": "5487-21299 via Gap Junction from 91620 -> 91617, 91671 -> 48924, 126385 -> 48829", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91620, + "TargetID": 91617, + "Directional": false + }, + { + "SourceID": 91671, + "TargetID": 48924, + "Directional": false + }, + { + "SourceID": 126385, + "TargetID": 48829, + "Directional": false + } + ] + }, + { + "ID": 2432, + "SourceStructureID": 68497, + "TargetStructureID": 5489, + "Label": "68497-5489 via Adherens from 81597 -> 81596", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81597, + "TargetID": 81596, + "Directional": false + } + ] + }, + { + "ID": 2433, + "SourceStructureID": 5531, + "TargetStructureID": 5491, + "Label": "5531-5491 via Unknown from 113839 -> 113838", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113839, + "TargetID": 113838, + "Directional": false + } + ] + }, + { + "ID": 2434, + "SourceStructureID": 5499, + "TargetStructureID": 5496, + "Label": "5499-5496 via BC Conventional Synapse from 96686 -> 96687", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 96686, + "TargetID": 96687, + "Directional": false + } + ] + }, + { + "ID": 2435, + "SourceStructureID": 5497, + "TargetStructureID": 62500, + "Label": "5497-62500 via Adherens from 62503 -> 62502", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 62503, + "TargetID": 62502, + "Directional": false + } + ] + }, + { + "ID": 2436, + "SourceStructureID": 5497, + "TargetStructureID": 85044, + "Label": "5497-85044 via Adherens from 85046 -> 85045", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85046, + "TargetID": 85045, + "Directional": false + } + ] + }, + { + "ID": 2437, + "SourceStructureID": 5499, + "TargetStructureID": 5499, + "Label": "5499-5499 via Adherens from 136221 -> 136220", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136221, + "TargetID": 136220, + "Directional": false + } + ] + }, + { + "ID": 2438, + "SourceStructureID": 5499, + "TargetStructureID": 5499, + "Label": "5499-5499 via Gap Junction from 96743 -> 98072, 97868 -> 97867, 106633 -> 106632", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96743, + "TargetID": 98072, + "Directional": false + }, + { + "SourceID": 97868, + "TargetID": 97867, + "Directional": false + }, + { + "SourceID": 106633, + "TargetID": 106632, + "Directional": false + } + ] + }, + { + "ID": 2439, + "SourceStructureID": 5499, + "TargetStructureID": 5501, + "Label": "5499-5501 via Adherens from 136151 -> 136150", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136151, + "TargetID": 136150, + "Directional": false + } + ] + }, + { + "ID": 2440, + "SourceStructureID": 5499, + "TargetStructureID": 5501, + "Label": "5499-5501 via Gap Junction from 105503 -> 105504", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 105503, + "TargetID": 105504, + "Directional": false + } + ] + }, + { + "ID": 2441, + "SourceStructureID": 5499, + "TargetStructureID": 5503, + "Label": "5499-5503 via Adherens from 105606 -> 105605, 136193 -> 136192, 136209 -> 136208", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 105606, + "TargetID": 105605, + "Directional": false + }, + { + "SourceID": 136193, + "TargetID": 136192, + "Directional": false + }, + { + "SourceID": 136209, + "TargetID": 136208, + "Directional": false + } + ] + }, + { + "ID": 2442, + "SourceStructureID": 5503, + "TargetStructureID": 5499, + "Label": "5503-5499 via Gap Junction from 52805 -> 49674, 60620 -> 60619, 60628 -> 60625, 105489 -> 105490", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52805, + "TargetID": 49674, + "Directional": false + }, + { + "SourceID": 60620, + "TargetID": 60619, + "Directional": false + }, + { + "SourceID": 60628, + "TargetID": 60625, + "Directional": false + }, + { + "SourceID": 105489, + "TargetID": 105490, + "Directional": false + } + ] + }, + { + "ID": 2443, + "SourceStructureID": 5520, + "TargetStructureID": 5499, + "Label": "5520-5499 via Adherens from 136146 -> 136145, 136148 -> 136149, 136153 -> 136152", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136146, + "TargetID": 136145, + "Directional": false + }, + { + "SourceID": 136148, + "TargetID": 136149, + "Directional": false + }, + { + "SourceID": 136153, + "TargetID": 136152, + "Directional": false + } + ] + }, + { + "ID": 2444, + "SourceStructureID": 5520, + "TargetStructureID": 5499, + "Label": "5520-5499 via Gap Junction from 40147 -> 40146, 61019 -> 61018, 97894 -> 115689, 97904 -> 97905, 98013 -> 96749, 105455 -> 105456, 105484 -> 105485, 105487 -> 105486, 105603 -> 105601, 105829 -> 105828", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 40147, + "TargetID": 40146, + "Directional": false + }, + { + "SourceID": 61019, + "TargetID": 61018, + "Directional": false + }, + { + "SourceID": 97894, + "TargetID": 115689, + "Directional": false + }, + { + "SourceID": 97904, + "TargetID": 97905, + "Directional": false + }, + { + "SourceID": 98013, + "TargetID": 96749, + "Directional": false + }, + { + "SourceID": 105455, + "TargetID": 105456, + "Directional": false + }, + { + "SourceID": 105484, + "TargetID": 105485, + "Directional": false + }, + { + "SourceID": 105487, + "TargetID": 105486, + "Directional": false + }, + { + "SourceID": 105603, + "TargetID": 105601, + "Directional": false + }, + { + "SourceID": 105829, + "TargetID": 105828, + "Directional": false + } + ] + }, + { + "ID": 2445, + "SourceStructureID": 5499, + "TargetStructureID": 5561, + "Label": "5499-5561 via Adherens from 136190 -> 136191", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136190, + "TargetID": 136191, + "Directional": false + } + ] + }, + { + "ID": 2446, + "SourceStructureID": 5499, + "TargetStructureID": 5561, + "Label": "5499-5561 via Gap Junction from 49668 -> 49641, 96742 -> 96741, 97524 -> 97523, 106536 -> 106535, 119258 -> 97177", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49668, + "TargetID": 49641, + "Directional": false + }, + { + "SourceID": 96742, + "TargetID": 96741, + "Directional": false + }, + { + "SourceID": 97524, + "TargetID": 97523, + "Directional": false + }, + { + "SourceID": 106536, + "TargetID": 106535, + "Directional": false + }, + { + "SourceID": 119258, + "TargetID": 97177, + "Directional": false + } + ] + }, + { + "ID": 2447, + "SourceStructureID": 5565, + "TargetStructureID": 5499, + "Label": "5565-5499 via Gap Junction from 50815 -> 50816, 50843 -> 50844, 50981 -> 107009, 106799 -> 106798, 106936 -> 106937, 106954 -> 106955, 106957 -> 106956, 106971 -> 106972, 106974 -> 106973, 107008 -> 107007", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50815, + "TargetID": 50816, + "Directional": false + }, + { + "SourceID": 50843, + "TargetID": 50844, + "Directional": false + }, + { + "SourceID": 50981, + "TargetID": 107009, + "Directional": false + }, + { + "SourceID": 106799, + "TargetID": 106798, + "Directional": false + }, + { + "SourceID": 106936, + "TargetID": 106937, + "Directional": false + }, + { + "SourceID": 106954, + "TargetID": 106955, + "Directional": false + }, + { + "SourceID": 106957, + "TargetID": 106956, + "Directional": false + }, + { + "SourceID": 106971, + "TargetID": 106972, + "Directional": false + }, + { + "SourceID": 106974, + "TargetID": 106973, + "Directional": false + }, + { + "SourceID": 107008, + "TargetID": 107007, + "Directional": false + } + ] + }, + { + "ID": 2448, + "SourceStructureID": 5499, + "TargetStructureID": 5565, + "Label": "5499-5565 via Touch from 98102 -> 98103", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 98102, + "TargetID": 98103, + "Directional": false + } + ] + }, + { + "ID": 2449, + "SourceStructureID": 5499, + "TargetStructureID": 5568, + "Label": "5499-5568 via Gap Junction from 121312 -> 121311", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121312, + "TargetID": 121311, + "Directional": false + } + ] + }, + { + "ID": 2450, + "SourceStructureID": 5729, + "TargetStructureID": 5499, + "Label": "5729-5499 via Adherens from 136205 -> 136206", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136205, + "TargetID": 136206, + "Directional": false + } + ] + }, + { + "ID": 2451, + "SourceStructureID": 5499, + "TargetStructureID": 5729, + "Label": "5499-5729 via Gap Junction from 60621 -> 60623", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60621, + "TargetID": 60623, + "Directional": false + } + ] + }, + { + "ID": 2452, + "SourceStructureID": 7024, + "TargetStructureID": 5499, + "Label": "7024-5499 via Adherens from 113489 -> 113490, 113506 -> 113507, 135692 -> 135693, 136188 -> 136189, 136211 -> 136210, 136217 -> 136216", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 113489, + "TargetID": 113490, + "Directional": false + }, + { + "SourceID": 113506, + "TargetID": 113507, + "Directional": false + }, + { + "SourceID": 135692, + "TargetID": 135693, + "Directional": false + }, + { + "SourceID": 136188, + "TargetID": 136189, + "Directional": false + }, + { + "SourceID": 136211, + "TargetID": 136210, + "Directional": false + }, + { + "SourceID": 136217, + "TargetID": 136216, + "Directional": false + } + ] + }, + { + "ID": 2453, + "SourceStructureID": 5499, + "TargetStructureID": 7024, + "Label": "5499-7024 via Gap Junction from 40161 -> 40160, 47337 -> 47336, 54972 -> 40163, 93823 -> 93822, 93825 -> 93824, 93865 -> 93864, 93866 -> 93867, 93997 -> 93996, 93998 -> 97869, 106609 -> 106544, 106610 -> 49667, 106755 -> 106754, 106829 -> 106828, 106959 -> 106958, 106966 -> 106965, 113717 -> 113718", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 40161, + "TargetID": 40160, + "Directional": false + }, + { + "SourceID": 47337, + "TargetID": 47336, + "Directional": false + }, + { + "SourceID": 54972, + "TargetID": 40163, + "Directional": false + }, + { + "SourceID": 93823, + "TargetID": 93822, + "Directional": false + }, + { + "SourceID": 93825, + "TargetID": 93824, + "Directional": false + }, + { + "SourceID": 93865, + "TargetID": 93864, + "Directional": false + }, + { + "SourceID": 93866, + "TargetID": 93867, + "Directional": false + }, + { + "SourceID": 93997, + "TargetID": 93996, + "Directional": false + }, + { + "SourceID": 93998, + "TargetID": 97869, + "Directional": false + }, + { + "SourceID": 106609, + "TargetID": 106544, + "Directional": false + }, + { + "SourceID": 106610, + "TargetID": 49667, + "Directional": false + }, + { + "SourceID": 106755, + "TargetID": 106754, + "Directional": false + }, + { + "SourceID": 106829, + "TargetID": 106828, + "Directional": false + }, + { + "SourceID": 106959, + "TargetID": 106958, + "Directional": false + }, + { + "SourceID": 106966, + "TargetID": 106965, + "Directional": false + }, + { + "SourceID": 113717, + "TargetID": 113718, + "Directional": false + } + ] + }, + { + "ID": 2454, + "SourceStructureID": 5499, + "TargetStructureID": 7040, + "Label": "5499-7040 via Gap Junction from 136161 -> 136159", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136161, + "TargetID": 136159, + "Directional": false + } + ] + }, + { + "ID": 2455, + "SourceStructureID": 7050, + "TargetStructureID": 5499, + "Label": "7050-5499 via Adherens from 136183 -> 136184, 136187 -> 136186", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136183, + "TargetID": 136184, + "Directional": false + }, + { + "SourceID": 136187, + "TargetID": 136186, + "Directional": false + } + ] + }, + { + "ID": 2456, + "SourceStructureID": 5499, + "TargetStructureID": 7050, + "Label": "5499-7050 via Gap Junction from 40145 -> 24576, 40148 -> 40149, 97988 -> 97987", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 40145, + "TargetID": 24576, + "Directional": false + }, + { + "SourceID": 40148, + "TargetID": 40149, + "Directional": false + }, + { + "SourceID": 97988, + "TargetID": 97987, + "Directional": false + } + ] + }, + { + "ID": 2457, + "SourceStructureID": 5499, + "TargetStructureID": 20136, + "Label": "5499-20136 via Adherens from 158466 -> 158465", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 158466, + "TargetID": 158465, + "Directional": false + } + ] + }, + { + "ID": 2458, + "SourceStructureID": 5499, + "TargetStructureID": 20136, + "Label": "5499-20136 via Gap Junction from 96715 -> 96717", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96715, + "TargetID": 96717, + "Directional": false + } + ] + }, + { + "ID": 2459, + "SourceStructureID": 48516, + "TargetStructureID": 5499, + "Label": "48516-5499 via Adherens from 136232 -> 136231", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136232, + "TargetID": 136231, + "Directional": false + } + ] + }, + { + "ID": 2460, + "SourceStructureID": 48516, + "TargetStructureID": 5499, + "Label": "48516-5499 via Gap Junction from 93786 -> 93788, 136230 -> 97873, 136233 -> 136234", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93786, + "TargetID": 93788, + "Directional": false + }, + { + "SourceID": 136230, + "TargetID": 97873, + "Directional": false + }, + { + "SourceID": 136233, + "TargetID": 136234, + "Directional": false + } + ] + }, + { + "ID": 2461, + "SourceStructureID": 5499, + "TargetStructureID": 87294, + "Label": "5499-87294 via Adherens from 87329 -> 87328", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87329, + "TargetID": 87328, + "Directional": false + } + ] + }, + { + "ID": 2462, + "SourceStructureID": 5499, + "TargetStructureID": 96730, + "Label": "5499-96730 via Adherens from 96725 -> 96731", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96725, + "TargetID": 96731, + "Directional": false + } + ] + }, + { + "ID": 2463, + "SourceStructureID": 5499, + "TargetStructureID": 105790, + "Label": "5499-105790 via Unknown from 105789 -> 105791", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105789, + "TargetID": 105791, + "Directional": false + } + ] + }, + { + "ID": 2464, + "SourceStructureID": 5499, + "TargetStructureID": 110463, + "Label": "5499-110463 via Gap Junction from 106736 -> 136154", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 106736, + "TargetID": 136154, + "Directional": false + } + ] + }, + { + "ID": 2465, + "SourceStructureID": 136169, + "TargetStructureID": 5499, + "Label": "136169-5499 via Adherens from 136170 -> 136168", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136170, + "TargetID": 136168, + "Directional": false + } + ] + }, + { + "ID": 2466, + "SourceStructureID": 5499, + "TargetStructureID": 136169, + "Label": "5499-136169 via Gap Junction from 106953 -> 136171", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 106953, + "TargetID": 136171, + "Directional": false + } + ] + }, + { + "ID": 2467, + "SourceStructureID": 136177, + "TargetStructureID": 5499, + "Label": "136177-5499 via Gap Junction from 136180 -> 106975", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136180, + "TargetID": 106975, + "Directional": false + } + ] + }, + { + "ID": 2468, + "SourceStructureID": 5499, + "TargetStructureID": 136236, + "Label": "5499-136236 via Gap Junction from 97914 -> 136238", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 97914, + "TargetID": 136238, + "Directional": false + } + ] + }, + { + "ID": 2469, + "SourceStructureID": 5500, + "TargetStructureID": 59362, + "Label": "5500-59362 via Adherens from 59367 -> 59366, 59405 -> 59404", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59367, + "TargetID": 59366, + "Directional": false + }, + { + "SourceID": 59405, + "TargetID": 59404, + "Directional": false + } + ] + }, + { + "ID": 2470, + "SourceStructureID": 5500, + "TargetStructureID": 59362, + "Label": "5500-59362 via Gap Junction from 59365 -> 59364, 59368 -> 59369, 59406 -> 59407", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59365, + "TargetID": 59364, + "Directional": false + }, + { + "SourceID": 59368, + "TargetID": 59369, + "Directional": false + }, + { + "SourceID": 59406, + "TargetID": 59407, + "Directional": false + } + ] + }, + { + "ID": 2471, + "SourceStructureID": 5500, + "TargetStructureID": 59377, + "Label": "5500-59377 via Gap Junction from 59378 -> 59379", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59378, + "TargetID": 59379, + "Directional": false + } + ] + }, + { + "ID": 2472, + "SourceStructureID": 59392, + "TargetStructureID": 5500, + "Label": "59392-5500 via Gap Junction from 59393 -> 59391, 59400 -> 59399", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59393, + "TargetID": 59391, + "Directional": false + }, + { + "SourceID": 59400, + "TargetID": 59399, + "Directional": false + } + ] + }, + { + "ID": 2473, + "SourceStructureID": 59419, + "TargetStructureID": 5500, + "Label": "59419-5500 via Gap Junction from 59420 -> 59421", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59420, + "TargetID": 59421, + "Directional": false + } + ] + }, + { + "ID": 2474, + "SourceStructureID": 85032, + "TargetStructureID": 5500, + "Label": "85032-5500 via Adherens from 85033 -> 85031", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85033, + "TargetID": 85031, + "Directional": false + } + ] + }, + { + "ID": 2475, + "SourceStructureID": 5503, + "TargetStructureID": 5501, + "Label": "5503-5501 via Adherens from 36562 -> 36563, 36565 -> 36566, 36611 -> 60689, 114052 -> 114053", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 36562, + "TargetID": 36563, + "Directional": false + }, + { + "SourceID": 36565, + "TargetID": 36566, + "Directional": false + }, + { + "SourceID": 36611, + "TargetID": 60689, + "Directional": false + }, + { + "SourceID": 114052, + "TargetID": 114053, + "Directional": false + } + ] + }, + { + "ID": 2476, + "SourceStructureID": 5501, + "TargetStructureID": 5503, + "Label": "5501-5503 via Gap Junction from 36580 -> 36581, 36587 -> 36588, 108134 -> 108133, 108220 -> 108218, 108224 -> 108222, 109970 -> 109969, 110001 -> 109999, 110003 -> 110002, 110176 -> 110177, 110201 -> 110161, 110273 -> 110272, 110275 -> 110274, 110448 -> 110447, 131429 -> 131425, 131438 -> 131439", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 36580, + "TargetID": 36581, + "Directional": false + }, + { + "SourceID": 36587, + "TargetID": 36588, + "Directional": false + }, + { + "SourceID": 108134, + "TargetID": 108133, + "Directional": false + }, + { + "SourceID": 108220, + "TargetID": 108218, + "Directional": false + }, + { + "SourceID": 108224, + "TargetID": 108222, + "Directional": false + }, + { + "SourceID": 109970, + "TargetID": 109969, + "Directional": false + }, + { + "SourceID": 110001, + "TargetID": 109999, + "Directional": false + }, + { + "SourceID": 110003, + "TargetID": 110002, + "Directional": false + }, + { + "SourceID": 110176, + "TargetID": 110177, + "Directional": false + }, + { + "SourceID": 110201, + "TargetID": 110161, + "Directional": false + }, + { + "SourceID": 110273, + "TargetID": 110272, + "Directional": false + }, + { + "SourceID": 110275, + "TargetID": 110274, + "Directional": false + }, + { + "SourceID": 110448, + "TargetID": 110447, + "Directional": false + }, + { + "SourceID": 131429, + "TargetID": 131425, + "Directional": false + }, + { + "SourceID": 131438, + "TargetID": 131439, + "Directional": false + } + ] + }, + { + "ID": 2477, + "SourceStructureID": 5501, + "TargetStructureID": 5503, + "Label": "5501-5503 via Touch from 131441 -> 131442", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 131441, + "TargetID": 131442, + "Directional": false + } + ] + }, + { + "ID": 2478, + "SourceStructureID": 5501, + "TargetStructureID": 5503, + "Label": "5501-5503 via Unknown from 108698 -> 108697, 109676 -> 109675, 109940 -> 109939, 110346 -> 110345, 110469 -> 110470", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108698, + "TargetID": 108697, + "Directional": false + }, + { + "SourceID": 109676, + "TargetID": 109675, + "Directional": false + }, + { + "SourceID": 109940, + "TargetID": 109939, + "Directional": false + }, + { + "SourceID": 110346, + "TargetID": 110345, + "Directional": false + }, + { + "SourceID": 110469, + "TargetID": 110470, + "Directional": false + } + ] + }, + { + "ID": 2479, + "SourceStructureID": 5501, + "TargetStructureID": 5520, + "Label": "5501-5520 via Adherens from 60410 -> 60401", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60410, + "TargetID": 60401, + "Directional": false + } + ] + }, + { + "ID": 2480, + "SourceStructureID": 5501, + "TargetStructureID": 5520, + "Label": "5501-5520 via Gap Junction from 60411 -> 60400, 60414 -> 60405, 60613 -> 60612, 60775 -> 60761, 110206 -> 105551, 119753 -> 119752", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60411, + "TargetID": 60400, + "Directional": false + }, + { + "SourceID": 60414, + "TargetID": 60405, + "Directional": false + }, + { + "SourceID": 60613, + "TargetID": 60612, + "Directional": false + }, + { + "SourceID": 60775, + "TargetID": 60761, + "Directional": false + }, + { + "SourceID": 110206, + "TargetID": 105551, + "Directional": false + }, + { + "SourceID": 119753, + "TargetID": 119752, + "Directional": false + } + ] + }, + { + "ID": 2481, + "SourceStructureID": 5520, + "TargetStructureID": 5501, + "Label": "5520-5501 via Unknown from 105823 -> 105822", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105823, + "TargetID": 105822, + "Directional": false + } + ] + }, + { + "ID": 2482, + "SourceStructureID": 5561, + "TargetStructureID": 5501, + "Label": "5561-5501 via Adherens from 148183 -> 148182", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148183, + "TargetID": 148182, + "Directional": false + } + ] + }, + { + "ID": 2483, + "SourceStructureID": 5501, + "TargetStructureID": 5561, + "Label": "5501-5561 via Gap Junction from 97187 -> 97145, 97328 -> 48870, 97591 -> 97590, 148153 -> 148152, 148154 -> 148155", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 97187, + "TargetID": 97145, + "Directional": false + }, + { + "SourceID": 97328, + "TargetID": 48870, + "Directional": false + }, + { + "SourceID": 97591, + "TargetID": 97590, + "Directional": false + }, + { + "SourceID": 148153, + "TargetID": 148152, + "Directional": false + }, + { + "SourceID": 148154, + "TargetID": 148155, + "Directional": false + } + ] + }, + { + "ID": 2484, + "SourceStructureID": 5501, + "TargetStructureID": 5650, + "Label": "5501-5650 via Touch from 131434 -> 131433", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 131434, + "TargetID": 131433, + "Directional": false + } + ] + }, + { + "ID": 2485, + "SourceStructureID": 5501, + "TargetStructureID": 6120, + "Label": "5501-6120 via Gap Junction from 111109 -> 61138", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 111109, + "TargetID": 61138, + "Directional": false + } + ] + }, + { + "ID": 2486, + "SourceStructureID": 108032, + "TargetStructureID": 5501, + "Label": "108032-5501 via Adherens from 110226 -> 110225", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110226, + "TargetID": 110225, + "Directional": false + } + ] + }, + { + "ID": 2487, + "SourceStructureID": 5503, + "TargetStructureID": 5503, + "Label": "5503-5503 via Gap Junction from 108695 -> 108694, 110005 -> 110004", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 108695, + "TargetID": 108694, + "Directional": false + }, + { + "SourceID": 110005, + "TargetID": 110004, + "Directional": false + } + ] + }, + { + "ID": 2488, + "SourceStructureID": 5503, + "TargetStructureID": 5503, + "Label": "5503-5503 via Unknown from 110060 -> 110059", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110060, + "TargetID": 110059, + "Directional": false + } + ] + }, + { + "ID": 2489, + "SourceStructureID": 5520, + "TargetStructureID": 5503, + "Label": "5520-5503 via Gap Junction from 38987 -> 37959, 60726 -> 105482, 105544 -> 105543", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38987, + "TargetID": 37959, + "Directional": false + }, + { + "SourceID": 60726, + "TargetID": 105482, + "Directional": false + }, + { + "SourceID": 105544, + "TargetID": 105543, + "Directional": false + } + ] + }, + { + "ID": 2490, + "SourceStructureID": 5650, + "TargetStructureID": 5503, + "Label": "5650-5503 via Gap Junction from 38549 -> 60675, 102690 -> 102689, 102942 -> 102943", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38549, + "TargetID": 60675, + "Directional": false + }, + { + "SourceID": 102690, + "TargetID": 102689, + "Directional": false + }, + { + "SourceID": 102942, + "TargetID": 102943, + "Directional": false + } + ] + }, + { + "ID": 2491, + "SourceStructureID": 5503, + "TargetStructureID": 5729, + "Label": "5503-5729 via Gap Junction from 105747 -> 105746, 108424 -> 108423", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 105747, + "TargetID": 105746, + "Directional": false + }, + { + "SourceID": 108424, + "TargetID": 108423, + "Directional": false + } + ] + }, + { + "ID": 2492, + "SourceStructureID": 6118, + "TargetStructureID": 5503, + "Label": "6118-5503 via Gap Junction from 108560 -> 108555", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 108560, + "TargetID": 108555, + "Directional": false + } + ] + }, + { + "ID": 2493, + "SourceStructureID": 6120, + "TargetStructureID": 5503, + "Label": "6120-5503 via Gap Junction from 61135 -> 61134, 131424 -> 61139", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 61135, + "TargetID": 61134, + "Directional": false + }, + { + "SourceID": 131424, + "TargetID": 61139, + "Directional": false + } + ] + }, + { + "ID": 2494, + "SourceStructureID": 5503, + "TargetStructureID": 7951, + "Label": "5503-7951 via BC Conventional Synapse from 108704 -> 108705", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 108704, + "TargetID": 108705, + "Directional": false + } + ] + }, + { + "ID": 2495, + "SourceStructureID": 12897, + "TargetStructureID": 5503, + "Label": "12897-5503 via Gap Junction from 24665 -> 52803, 24668 -> 20088, 24721 -> 24667, 24835 -> 20211, 24853 -> 24736, 24859 -> 24858, 61316 -> 61318, 108137 -> 24854, 110045 -> 54100, 110047 -> 110046, 110166 -> 110167, 113660 -> 113659, 113662 -> 113661", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24665, + "TargetID": 52803, + "Directional": false + }, + { + "SourceID": 24668, + "TargetID": 20088, + "Directional": false + }, + { + "SourceID": 24721, + "TargetID": 24667, + "Directional": false + }, + { + "SourceID": 24835, + "TargetID": 20211, + "Directional": false + }, + { + "SourceID": 24853, + "TargetID": 24736, + "Directional": false + }, + { + "SourceID": 24859, + "TargetID": 24858, + "Directional": false + }, + { + "SourceID": 61316, + "TargetID": 61318, + "Directional": false + }, + { + "SourceID": 108137, + "TargetID": 24854, + "Directional": false + }, + { + "SourceID": 110045, + "TargetID": 54100, + "Directional": false + }, + { + "SourceID": 110047, + "TargetID": 110046, + "Directional": false + }, + { + "SourceID": 110166, + "TargetID": 110167, + "Directional": false + }, + { + "SourceID": 113660, + "TargetID": 113659, + "Directional": false + }, + { + "SourceID": 113662, + "TargetID": 113661, + "Directional": false + } + ] + }, + { + "ID": 2496, + "SourceStructureID": 87294, + "TargetStructureID": 5503, + "Label": "87294-5503 via Adherens from 87296 -> 87297", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87296, + "TargetID": 87297, + "Directional": false + } + ] + }, + { + "ID": 2497, + "SourceStructureID": 5503, + "TargetStructureID": 102795, + "Label": "5503-102795 via Unknown from 110018 -> 110017", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110018, + "TargetID": 110017, + "Directional": false + } + ] + }, + { + "ID": 2498, + "SourceStructureID": 5503, + "TargetStructureID": 107414, + "Label": "5503-107414 via Adherens from 107428 -> 107427", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107428, + "TargetID": 107427, + "Directional": false + } + ] + }, + { + "ID": 2499, + "SourceStructureID": 5503, + "TargetStructureID": 107508, + "Label": "5503-107508 via Adherens from 60705 -> 107511", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60705, + "TargetID": 107511, + "Directional": false + } + ] + }, + { + "ID": 2500, + "SourceStructureID": 107508, + "TargetStructureID": 5503, + "Label": "107508-5503 via Unknown from 107524 -> 107523", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107524, + "TargetID": 107523, + "Directional": false + } + ] + }, + { + "ID": 2501, + "SourceStructureID": 5503, + "TargetStructureID": 109693, + "Label": "5503-109693 via Unknown from 109695 -> 109694", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109695, + "TargetID": 109694, + "Directional": false + } + ] + }, + { + "ID": 2502, + "SourceStructureID": 5503, + "TargetStructureID": 109793, + "Label": "5503-109793 via Unknown from 109792 -> 109796", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109792, + "TargetID": 109796, + "Directional": false + } + ] + }, + { + "ID": 2503, + "SourceStructureID": 109858, + "TargetStructureID": 5503, + "Label": "109858-5503 via Adherens from 109861 -> 109856", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109861, + "TargetID": 109856, + "Directional": false + } + ] + }, + { + "ID": 2504, + "SourceStructureID": 109952, + "TargetStructureID": 5503, + "Label": "109952-5503 via Gap Junction from 109954 -> 60683", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 109954, + "TargetID": 60683, + "Directional": false + } + ] + }, + { + "ID": 2505, + "SourceStructureID": 109997, + "TargetStructureID": 5503, + "Label": "109997-5503 via Unknown from 109998 -> 109996", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109998, + "TargetID": 109996, + "Directional": false + } + ] + }, + { + "ID": 2506, + "SourceStructureID": 110142, + "TargetStructureID": 5503, + "Label": "110142-5503 via Unknown from 113667 -> 113666", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113667, + "TargetID": 113666, + "Directional": false + } + ] + }, + { + "ID": 2507, + "SourceStructureID": 5503, + "TargetStructureID": 110232, + "Label": "5503-110232 via Unknown from 110240 -> 110239", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110240, + "TargetID": 110239, + "Directional": false + } + ] + }, + { + "ID": 2508, + "SourceStructureID": 110313, + "TargetStructureID": 5503, + "Label": "110313-5503 via Gap Junction from 115798 -> 60704", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115798, + "TargetID": 60704, + "Directional": false + } + ] + }, + { + "ID": 2509, + "SourceStructureID": 5503, + "TargetStructureID": 110477, + "Label": "5503-110477 via Adherens from 110482 -> 110481", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110482, + "TargetID": 110481, + "Directional": false + } + ] + }, + { + "ID": 2510, + "SourceStructureID": 5504, + "TargetStructureID": 87366, + "Label": "5504-87366 via Adherens from 87370 -> 87369", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87370, + "TargetID": 87369, + "Directional": false + } + ] + }, + { + "ID": 2511, + "SourceStructureID": 5504, + "TargetStructureID": 93514, + "Label": "5504-93514 via Gap Junction from 93516 -> 93515", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93516, + "TargetID": 93515, + "Directional": false + } + ] + }, + { + "ID": 2512, + "SourceStructureID": 5506, + "TargetStructureID": 28886, + "Label": "5506-28886 via Gap Junction from 52343 -> 51403", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52343, + "TargetID": 51403, + "Directional": false + } + ] + }, + { + "ID": 2513, + "SourceStructureID": 5515, + "TargetStructureID": 5507, + "Label": "5515-5507 via Unknown from 119059 -> 119060", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 119059, + "TargetID": 119060, + "Directional": false + } + ] + }, + { + "ID": 2514, + "SourceStructureID": 6997, + "TargetStructureID": 5507, + "Label": "6997-5507 via Adherens from 28386 -> 28385", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 28386, + "TargetID": 28385, + "Directional": false + } + ] + }, + { + "ID": 2515, + "SourceStructureID": 5516, + "TargetStructureID": 5509, + "Label": "5516-5509 via Gap Junction from 120865 -> 120866", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120865, + "TargetID": 120866, + "Directional": false + } + ] + }, + { + "ID": 2516, + "SourceStructureID": 5509, + "TargetStructureID": 5517, + "Label": "5509-5517 via Adherens from 37526 -> 37525", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 37526, + "TargetID": 37525, + "Directional": false + } + ] + }, + { + "ID": 2517, + "SourceStructureID": 19203, + "TargetStructureID": 5509, + "Label": "19203-5509 via Adherens from 135814 -> 135813", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135814, + "TargetID": 135813, + "Directional": false + } + ] + }, + { + "ID": 2518, + "SourceStructureID": 5509, + "TargetStructureID": 19203, + "Label": "5509-19203 via Unknown from 135812 -> 135811", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135812, + "TargetID": 135811, + "Directional": false + } + ] + }, + { + "ID": 2519, + "SourceStructureID": 5922, + "TargetStructureID": 5511, + "Label": "5922-5511 via Adherens from 37159 -> 37160", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 37159, + "TargetID": 37160, + "Directional": false + } + ] + }, + { + "ID": 2520, + "SourceStructureID": 5513, + "TargetStructureID": 5516, + "Label": "5513-5516 via Gap Junction from 118224 -> 120867, 118249 -> 50072, 120868 -> 118245", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118224, + "TargetID": 120867, + "Directional": false + }, + { + "SourceID": 118249, + "TargetID": 50072, + "Directional": false + }, + { + "SourceID": 120868, + "TargetID": 118245, + "Directional": false + } + ] + }, + { + "ID": 2521, + "SourceStructureID": 5513, + "TargetStructureID": 5517, + "Label": "5513-5517 via Gap Junction from 118228 -> 118227", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118228, + "TargetID": 118227, + "Directional": false + } + ] + }, + { + "ID": 2522, + "SourceStructureID": 5517, + "TargetStructureID": 5513, + "Label": "5517-5513 via Unknown from 96063 -> 96064", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96063, + "TargetID": 96064, + "Directional": false + } + ] + }, + { + "ID": 2523, + "SourceStructureID": 7024, + "TargetStructureID": 5513, + "Label": "7024-5513 via Gap Junction from 40165 -> 40169", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 40165, + "TargetID": 40169, + "Directional": false + } + ] + }, + { + "ID": 2524, + "SourceStructureID": 20136, + "TargetStructureID": 5513, + "Label": "20136-5513 via Gap Junction from 109412 -> 109413", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 109412, + "TargetID": 109413, + "Directional": false + } + ] + }, + { + "ID": 2525, + "SourceStructureID": 5513, + "TargetStructureID": 24303, + "Label": "5513-24303 via Gap Junction from 38777 -> 38776", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38777, + "TargetID": 38776, + "Directional": false + } + ] + }, + { + "ID": 2526, + "SourceStructureID": 5513, + "TargetStructureID": 26079, + "Label": "5513-26079 via Gap Junction from 102966 -> 102965, 120627 -> 120628, 121199 -> 121198", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 102966, + "TargetID": 102965, + "Directional": false + }, + { + "SourceID": 120627, + "TargetID": 120628, + "Directional": false + }, + { + "SourceID": 121199, + "TargetID": 121198, + "Directional": false + } + ] + }, + { + "ID": 2527, + "SourceStructureID": 5513, + "TargetStructureID": 26079, + "Label": "5513-26079 via Unknown from 121232 -> 121231", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121232, + "TargetID": 121231, + "Directional": false + } + ] + }, + { + "ID": 2528, + "SourceStructureID": 28886, + "TargetStructureID": 5513, + "Label": "28886-5513 via Gap Junction from 118235 -> 118234", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118235, + "TargetID": 118234, + "Directional": false + } + ] + }, + { + "ID": 2529, + "SourceStructureID": 5513, + "TargetStructureID": 46801, + "Label": "5513-46801 via Gap Junction from 118252 -> 118254, 119747 -> 118247", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118252, + "TargetID": 118254, + "Directional": false + }, + { + "SourceID": 119747, + "TargetID": 118247, + "Directional": false + } + ] + }, + { + "ID": 2530, + "SourceStructureID": 96069, + "TargetStructureID": 5513, + "Label": "96069-5513 via Unknown from 96070 -> 96068", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96070, + "TargetID": 96068, + "Directional": false + } + ] + }, + { + "ID": 2531, + "SourceStructureID": 5516, + "TargetStructureID": 5514, + "Label": "5516-5514 via Gap Junction from 50037 -> 119724, 50790 -> 50789, 89300 -> 89299, 119719 -> 119714, 119722 -> 119721, 119727 -> 119726, 119745 -> 119743, 120863 -> 120864", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50037, + "TargetID": 119724, + "Directional": false + }, + { + "SourceID": 50790, + "TargetID": 50789, + "Directional": false + }, + { + "SourceID": 89300, + "TargetID": 89299, + "Directional": false + }, + { + "SourceID": 119719, + "TargetID": 119714, + "Directional": false + }, + { + "SourceID": 119722, + "TargetID": 119721, + "Directional": false + }, + { + "SourceID": 119727, + "TargetID": 119726, + "Directional": false + }, + { + "SourceID": 119745, + "TargetID": 119743, + "Directional": false + }, + { + "SourceID": 120863, + "TargetID": 120864, + "Directional": false + } + ] + }, + { + "ID": 2532, + "SourceStructureID": 5514, + "TargetStructureID": 5568, + "Label": "5514-5568 via Gap Junction from 50421 -> 49941, 50671 -> 49995, 50866 -> 49992, 62137 -> 62138, 62379 -> 62378, 121547 -> 121548, 121570 -> 121569, 121578 -> 121579", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50421, + "TargetID": 49941, + "Directional": false + }, + { + "SourceID": 50671, + "TargetID": 49995, + "Directional": false + }, + { + "SourceID": 50866, + "TargetID": 49992, + "Directional": false + }, + { + "SourceID": 62137, + "TargetID": 62138, + "Directional": false + }, + { + "SourceID": 62379, + "TargetID": 62378, + "Directional": false + }, + { + "SourceID": 121547, + "TargetID": 121548, + "Directional": false + }, + { + "SourceID": 121570, + "TargetID": 121569, + "Directional": false + }, + { + "SourceID": 121578, + "TargetID": 121579, + "Directional": false + } + ] + }, + { + "ID": 2533, + "SourceStructureID": 19203, + "TargetStructureID": 5514, + "Label": "19203-5514 via Gap Junction from 119699 -> 119691, 119712 -> 119711, 121566 -> 121565, 121601 -> 121609, 121639 -> 121640", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119699, + "TargetID": 119691, + "Directional": false + }, + { + "SourceID": 119712, + "TargetID": 119711, + "Directional": false + }, + { + "SourceID": 121566, + "TargetID": 121565, + "Directional": false + }, + { + "SourceID": 121601, + "TargetID": 121609, + "Directional": false + }, + { + "SourceID": 121639, + "TargetID": 121640, + "Directional": false + } + ] + }, + { + "ID": 2534, + "SourceStructureID": 5515, + "TargetStructureID": 5515, + "Label": "5515-5515 via Adherens from 119287 -> 119288, 119308 -> 119307", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 119287, + "TargetID": 119288, + "Directional": false + }, + { + "SourceID": 119308, + "TargetID": 119307, + "Directional": false + } + ] + }, + { + "ID": 2535, + "SourceStructureID": 5515, + "TargetStructureID": 5623, + "Label": "5515-5623 via Gap Junction from 119263 -> 119264", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119263, + "TargetID": 119264, + "Directional": false + } + ] + }, + { + "ID": 2536, + "SourceStructureID": 5515, + "TargetStructureID": 5623, + "Label": "5515-5623 via Unknown from 119423 -> 119424", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 119423, + "TargetID": 119424, + "Directional": false + } + ] + }, + { + "ID": 2537, + "SourceStructureID": 5515, + "TargetStructureID": 6589, + "Label": "5515-6589 via Adherens from 119273 -> 119272, 130627 -> 130626", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 119273, + "TargetID": 119272, + "Directional": false + }, + { + "SourceID": 130627, + "TargetID": 130626, + "Directional": false + } + ] + }, + { + "ID": 2538, + "SourceStructureID": 5515, + "TargetStructureID": 8037, + "Label": "5515-8037 via Adherens from 130642 -> 130643", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130642, + "TargetID": 130643, + "Directional": false + } + ] + }, + { + "ID": 2539, + "SourceStructureID": 8037, + "TargetStructureID": 5515, + "Label": "8037-5515 via Gap Junction from 11370 -> 11366, 56515 -> 56506, 130640 -> 130641", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 11370, + "TargetID": 11366, + "Directional": false + }, + { + "SourceID": 56515, + "TargetID": 56506, + "Directional": false + }, + { + "SourceID": 130640, + "TargetID": 130641, + "Directional": false + } + ] + }, + { + "ID": 2540, + "SourceStructureID": 8038, + "TargetStructureID": 5515, + "Label": "8038-5515 via Gap Junction from 119666 -> 119665", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119666, + "TargetID": 119665, + "Directional": false + } + ] + }, + { + "ID": 2541, + "SourceStructureID": 136786, + "TargetStructureID": 5515, + "Label": "136786-5515 via Gap Junction from 136799 -> 136798", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136799, + "TargetID": 136798, + "Directional": false + } + ] + }, + { + "ID": 2542, + "SourceStructureID": 136796, + "TargetStructureID": 5515, + "Label": "136796-5515 via Gap Junction from 136797 -> 56504", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136797, + "TargetID": 56504, + "Directional": false + } + ] + }, + { + "ID": 2543, + "SourceStructureID": 5515, + "TargetStructureID": 136817, + "Label": "5515-136817 via Gap Junction from 56509 -> 136818", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56509, + "TargetID": 136818, + "Directional": false + } + ] + }, + { + "ID": 2544, + "SourceStructureID": 136819, + "TargetStructureID": 5515, + "Label": "136819-5515 via Gap Junction from 136820 -> 56511", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136820, + "TargetID": 56511, + "Directional": false + } + ] + }, + { + "ID": 2545, + "SourceStructureID": 5515, + "TargetStructureID": 136824, + "Label": "5515-136824 via Gap Junction from 119419 -> 136825", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119419, + "TargetID": 136825, + "Directional": false + } + ] + }, + { + "ID": 2546, + "SourceStructureID": 136826, + "TargetStructureID": 5515, + "Label": "136826-5515 via Gap Junction from 136829 -> 119448", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136829, + "TargetID": 119448, + "Directional": false + } + ] + }, + { + "ID": 2547, + "SourceStructureID": 5516, + "TargetStructureID": 5516, + "Label": "5516-5516 via Gap Junction from 148199 -> 148198", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 148199, + "TargetID": 148198, + "Directional": false + } + ] + }, + { + "ID": 2548, + "SourceStructureID": 5517, + "TargetStructureID": 5516, + "Label": "5517-5516 via Gap Junction from 96114 -> 96115", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96114, + "TargetID": 96115, + "Directional": false + } + ] + }, + { + "ID": 2549, + "SourceStructureID": 5516, + "TargetStructureID": 7024, + "Label": "5516-7024 via Adherens from 93838 -> 93837, 113763 -> 113762, 148208 -> 148207", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93838, + "TargetID": 93837, + "Directional": false + }, + { + "SourceID": 113763, + "TargetID": 113762, + "Directional": false + }, + { + "SourceID": 148208, + "TargetID": 148207, + "Directional": false + } + ] + }, + { + "ID": 2550, + "SourceStructureID": 7024, + "TargetStructureID": 5516, + "Label": "7024-5516 via Gap Junction from 63394 -> 50097, 93828 -> 93829, 93830 -> 93831, 93840 -> 93839, 93843 -> 93842, 93877 -> 93876, 114156 -> 120862, 114195 -> 114196, 120845 -> 115085, 148201 -> 114105, 148220 -> 148219, 148230 -> 148229", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63394, + "TargetID": 50097, + "Directional": false + }, + { + "SourceID": 93828, + "TargetID": 93829, + "Directional": false + }, + { + "SourceID": 93830, + "TargetID": 93831, + "Directional": false + }, + { + "SourceID": 93840, + "TargetID": 93839, + "Directional": false + }, + { + "SourceID": 93843, + "TargetID": 93842, + "Directional": false + }, + { + "SourceID": 93877, + "TargetID": 93876, + "Directional": false + }, + { + "SourceID": 114156, + "TargetID": 120862, + "Directional": false + }, + { + "SourceID": 114195, + "TargetID": 114196, + "Directional": false + }, + { + "SourceID": 120845, + "TargetID": 115085, + "Directional": false + }, + { + "SourceID": 148201, + "TargetID": 114105, + "Directional": false + }, + { + "SourceID": 148220, + "TargetID": 148219, + "Directional": false + }, + { + "SourceID": 148230, + "TargetID": 148229, + "Directional": false + } + ] + }, + { + "ID": 2551, + "SourceStructureID": 20136, + "TargetStructureID": 5516, + "Label": "20136-5516 via Adherens from 135780 -> 135781", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135780, + "TargetID": 135781, + "Directional": false + } + ] + }, + { + "ID": 2552, + "SourceStructureID": 20136, + "TargetStructureID": 5516, + "Label": "20136-5516 via Gap Junction from 110146 -> 110434", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 110146, + "TargetID": 110434, + "Directional": false + } + ] + }, + { + "ID": 2553, + "SourceStructureID": 5516, + "TargetStructureID": 46388, + "Label": "5516-46388 via Gap Junction from 121441 -> 121440", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121441, + "TargetID": 121440, + "Directional": false + } + ] + }, + { + "ID": 2554, + "SourceStructureID": 50449, + "TargetStructureID": 5516, + "Label": "50449-5516 via Gap Junction from 50638 -> 50639", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50638, + "TargetID": 50639, + "Directional": false + } + ] + }, + { + "ID": 2555, + "SourceStructureID": 5516, + "TargetStructureID": 96217, + "Label": "5516-96217 via Unknown from 120487 -> 120488", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120487, + "TargetID": 120488, + "Directional": false + } + ] + }, + { + "ID": 2556, + "SourceStructureID": 5517, + "TargetStructureID": 5561, + "Label": "5517-5561 via Gap Junction from 49476 -> 49477, 49478 -> 49483, 49499 -> 49498", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49476, + "TargetID": 49477, + "Directional": false + }, + { + "SourceID": 49478, + "TargetID": 49483, + "Directional": false + }, + { + "SourceID": 49499, + "TargetID": 49498, + "Directional": false + } + ] + }, + { + "ID": 2557, + "SourceStructureID": 6912, + "TargetStructureID": 5517, + "Label": "6912-5517 via Unknown from 96067 -> 96066", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96067, + "TargetID": 96066, + "Directional": false + } + ] + }, + { + "ID": 2558, + "SourceStructureID": 8037, + "TargetStructureID": 5517, + "Label": "8037-5517 via Gap Junction from 10870 -> 96119, 96120 -> 96118", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10870, + "TargetID": 96119, + "Directional": false + }, + { + "SourceID": 96120, + "TargetID": 96118, + "Directional": false + } + ] + }, + { + "ID": 2559, + "SourceStructureID": 5517, + "TargetStructureID": 18693, + "Label": "5517-18693 via Gap Junction from 49502 -> 49635", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49502, + "TargetID": 49635, + "Directional": false + } + ] + }, + { + "ID": 2560, + "SourceStructureID": 19203, + "TargetStructureID": 5517, + "Label": "19203-5517 via Gap Junction from 38537 -> 38536, 49427 -> 49633, 120872 -> 120873, 121626 -> 121627, 135808 -> 135807", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38537, + "TargetID": 38536, + "Directional": false + }, + { + "SourceID": 49427, + "TargetID": 49633, + "Directional": false + }, + { + "SourceID": 120872, + "TargetID": 120873, + "Directional": false + }, + { + "SourceID": 121626, + "TargetID": 121627, + "Directional": false + }, + { + "SourceID": 135808, + "TargetID": 135807, + "Directional": false + } + ] + }, + { + "ID": 2561, + "SourceStructureID": 19203, + "TargetStructureID": 5517, + "Label": "19203-5517 via Unknown from 96097 -> 96096", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96097, + "TargetID": 96096, + "Directional": false + } + ] + }, + { + "ID": 2562, + "SourceStructureID": 20136, + "TargetStructureID": 5517, + "Label": "20136-5517 via Adherens from 133994 -> 133993, 135803 -> 135804", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133994, + "TargetID": 133993, + "Directional": false + }, + { + "SourceID": 135803, + "TargetID": 135804, + "Directional": false + } + ] + }, + { + "ID": 2563, + "SourceStructureID": 20136, + "TargetStructureID": 5517, + "Label": "20136-5517 via Gap Junction from 29147 -> 29148, 109361 -> 109362, 109720 -> 109721, 109786 -> 109787, 133991 -> 133992, 135786 -> 135784", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29147, + "TargetID": 29148, + "Directional": false + }, + { + "SourceID": 109361, + "TargetID": 109362, + "Directional": false + }, + { + "SourceID": 109720, + "TargetID": 109721, + "Directional": false + }, + { + "SourceID": 109786, + "TargetID": 109787, + "Directional": false + }, + { + "SourceID": 133991, + "TargetID": 133992, + "Directional": false + }, + { + "SourceID": 135786, + "TargetID": 135784, + "Directional": false + } + ] + }, + { + "ID": 2564, + "SourceStructureID": 5517, + "TargetStructureID": 26079, + "Label": "5517-26079 via Gap Junction from 49298 -> 49299, 96056 -> 96055", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49298, + "TargetID": 49299, + "Directional": false + }, + { + "SourceID": 96056, + "TargetID": 96055, + "Directional": false + } + ] + }, + { + "ID": 2565, + "SourceStructureID": 26079, + "TargetStructureID": 5517, + "Label": "26079-5517 via Unknown from 96062 -> 96061", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96062, + "TargetID": 96061, + "Directional": false + } + ] + }, + { + "ID": 2566, + "SourceStructureID": 96072, + "TargetStructureID": 5517, + "Label": "96072-5517 via Adherens from 96073 -> 96071", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96073, + "TargetID": 96071, + "Directional": false + } + ] + }, + { + "ID": 2567, + "SourceStructureID": 96083, + "TargetStructureID": 5517, + "Label": "96083-5517 via Gap Junction from 96084 -> 96082", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96084, + "TargetID": 96082, + "Directional": false + } + ] + }, + { + "ID": 2568, + "SourceStructureID": 96093, + "TargetStructureID": 5517, + "Label": "96093-5517 via Unknown from 96094 -> 96092", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96094, + "TargetID": 96092, + "Directional": false + } + ] + }, + { + "ID": 2569, + "SourceStructureID": 5517, + "TargetStructureID": 96102, + "Label": "5517-96102 via Gap Junction from 96108 -> 96107, 96173 -> 96172, 96191 -> 96190, 135783 -> 135782", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96108, + "TargetID": 96107, + "Directional": false + }, + { + "SourceID": 96173, + "TargetID": 96172, + "Directional": false + }, + { + "SourceID": 96191, + "TargetID": 96190, + "Directional": false + }, + { + "SourceID": 135783, + "TargetID": 135782, + "Directional": false + } + ] + }, + { + "ID": 2570, + "SourceStructureID": 5517, + "TargetStructureID": 96102, + "Label": "5517-96102 via Unknown from 96101 -> 96103, 135791 -> 135790", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96101, + "TargetID": 96103, + "Directional": false + }, + { + "SourceID": 135791, + "TargetID": 135790, + "Directional": false + } + ] + }, + { + "ID": 2571, + "SourceStructureID": 96122, + "TargetStructureID": 5517, + "Label": "96122-5517 via Gap Junction from 96123 -> 96121", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96123, + "TargetID": 96121, + "Directional": false + } + ] + }, + { + "ID": 2572, + "SourceStructureID": 96347, + "TargetStructureID": 5517, + "Label": "96347-5517 via Gap Junction from 96348 -> 96346", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96348, + "TargetID": 96346, + "Directional": false + } + ] + }, + { + "ID": 2573, + "SourceStructureID": 96351, + "TargetStructureID": 5517, + "Label": "96351-5517 via Unknown from 96352 -> 96350", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96352, + "TargetID": 96350, + "Directional": false + } + ] + }, + { + "ID": 2574, + "SourceStructureID": 5519, + "TargetStructureID": 5566, + "Label": "5519-5566 via Adherens from 59197 -> 59198", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59197, + "TargetID": 59198, + "Directional": false + } + ] + }, + { + "ID": 2575, + "SourceStructureID": 5566, + "TargetStructureID": 5519, + "Label": "5566-5519 via Gap Junction from 33670 -> 33671, 59203 -> 59202, 59319 -> 59320", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 33670, + "TargetID": 33671, + "Directional": false + }, + { + "SourceID": 59203, + "TargetID": 59202, + "Directional": false + }, + { + "SourceID": 59319, + "TargetID": 59320, + "Directional": false + } + ] + }, + { + "ID": 2576, + "SourceStructureID": 59163, + "TargetStructureID": 5519, + "Label": "59163-5519 via Gap Junction from 59164 -> 59162", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59164, + "TargetID": 59162, + "Directional": false + } + ] + }, + { + "ID": 2577, + "SourceStructureID": 5519, + "TargetStructureID": 59208, + "Label": "5519-59208 via Gap Junction from 59207 -> 59209", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59207, + "TargetID": 59209, + "Directional": false + } + ] + }, + { + "ID": 2578, + "SourceStructureID": 5519, + "TargetStructureID": 59211, + "Label": "5519-59211 via Gap Junction from 59210 -> 59212", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59210, + "TargetID": 59212, + "Directional": false + } + ] + }, + { + "ID": 2579, + "SourceStructureID": 5729, + "TargetStructureID": 5520, + "Label": "5729-5520 via Gap Junction from 60391 -> 60383, 93223 -> 93221", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60391, + "TargetID": 60383, + "Directional": false + }, + { + "SourceID": 93223, + "TargetID": 93221, + "Directional": false + } + ] + }, + { + "ID": 2580, + "SourceStructureID": 7040, + "TargetStructureID": 5520, + "Label": "7040-5520 via Gap Junction from 93708 -> 61048, 93711 -> 93714, 97909 -> 97910, 115360 -> 93232, 119748 -> 119749", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93708, + "TargetID": 61048, + "Directional": false + }, + { + "SourceID": 93711, + "TargetID": 93714, + "Directional": false + }, + { + "SourceID": 97909, + "TargetID": 97910, + "Directional": false + }, + { + "SourceID": 115360, + "TargetID": 93232, + "Directional": false + }, + { + "SourceID": 119748, + "TargetID": 119749, + "Directional": false + } + ] + }, + { + "ID": 2581, + "SourceStructureID": 7040, + "TargetStructureID": 5520, + "Label": "7040-5520 via Unknown from 93729 -> 37951", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93729, + "TargetID": 37951, + "Directional": false + } + ] + }, + { + "ID": 2582, + "SourceStructureID": 7050, + "TargetStructureID": 5520, + "Label": "7050-5520 via Gap Junction from 24879 -> 97908, 24892 -> 24891, 60373 -> 60374, 60757 -> 24582, 61008 -> 10067, 61028 -> 61027, 105806 -> 105804, 120822 -> 24876", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24879, + "TargetID": 97908, + "Directional": false + }, + { + "SourceID": 24892, + "TargetID": 24891, + "Directional": false + }, + { + "SourceID": 60373, + "TargetID": 60374, + "Directional": false + }, + { + "SourceID": 60757, + "TargetID": 24582, + "Directional": false + }, + { + "SourceID": 61008, + "TargetID": 10067, + "Directional": false + }, + { + "SourceID": 61028, + "TargetID": 61027, + "Directional": false + }, + { + "SourceID": 105806, + "TargetID": 105804, + "Directional": false + }, + { + "SourceID": 120822, + "TargetID": 24876, + "Directional": false + } + ] + }, + { + "ID": 2583, + "SourceStructureID": 5520, + "TargetStructureID": 12897, + "Label": "5520-12897 via Gap Junction from 60606 -> 24723, 119754 -> 60607", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60606, + "TargetID": 24723, + "Directional": false + }, + { + "SourceID": 119754, + "TargetID": 60607, + "Directional": false + } + ] + }, + { + "ID": 2584, + "SourceStructureID": 60370, + "TargetStructureID": 5520, + "Label": "60370-5520 via Gap Junction from 60371 -> 37937", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60371, + "TargetID": 37937, + "Directional": false + } + ] + }, + { + "ID": 2585, + "SourceStructureID": 60397, + "TargetStructureID": 5520, + "Label": "60397-5520 via Gap Junction from 60398 -> 60396", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60398, + "TargetID": 60396, + "Directional": false + } + ] + }, + { + "ID": 2586, + "SourceStructureID": 64939, + "TargetStructureID": 5520, + "Label": "64939-5520 via Gap Junction from 93226 -> 93225, 93713 -> 93712", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93226, + "TargetID": 93225, + "Directional": false + }, + { + "SourceID": 93713, + "TargetID": 93712, + "Directional": false + } + ] + }, + { + "ID": 2587, + "SourceStructureID": 5522, + "TargetStructureID": 5562, + "Label": "5522-5562 via Adherens from 63127 -> 63126, 80269 -> 80270, 84527 -> 84528", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63127, + "TargetID": 63126, + "Directional": false + }, + { + "SourceID": 80269, + "TargetID": 80270, + "Directional": false + }, + { + "SourceID": 84527, + "TargetID": 84528, + "Directional": false + } + ] + }, + { + "ID": 2588, + "SourceStructureID": 5562, + "TargetStructureID": 5522, + "Label": "5562-5522 via Gap Junction from 40266 -> 63131, 63124 -> 63087, 63321 -> 43496, 134643 -> 134642", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 40266, + "TargetID": 63131, + "Directional": false + }, + { + "SourceID": 63124, + "TargetID": 63087, + "Directional": false + }, + { + "SourceID": 63321, + "TargetID": 43496, + "Directional": false + }, + { + "SourceID": 134643, + "TargetID": 134642, + "Directional": false + } + ] + }, + { + "ID": 2589, + "SourceStructureID": 7050, + "TargetStructureID": 5522, + "Label": "7050-5522 via Gap Junction from 63163 -> 63162", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63163, + "TargetID": 63162, + "Directional": false + } + ] + }, + { + "ID": 2590, + "SourceStructureID": 8038, + "TargetStructureID": 5522, + "Label": "8038-5522 via Gap Junction from 113050 -> 64180", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 113050, + "TargetID": 64180, + "Directional": false + } + ] + }, + { + "ID": 2591, + "SourceStructureID": 18282, + "TargetStructureID": 5522, + "Label": "18282-5522 via Adherens from 63111 -> 63110", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63111, + "TargetID": 63110, + "Directional": false + } + ] + }, + { + "ID": 2592, + "SourceStructureID": 5522, + "TargetStructureID": 32804, + "Label": "5522-32804 via Adherens from 64132 -> 64133, 64225 -> 64226, 64260 -> 64261, 64262 -> 64265, 64264 -> 64263, 64306 -> 64305, 64307 -> 64308", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64132, + "TargetID": 64133, + "Directional": false + }, + { + "SourceID": 64225, + "TargetID": 64226, + "Directional": false + }, + { + "SourceID": 64260, + "TargetID": 64261, + "Directional": false + }, + { + "SourceID": 64262, + "TargetID": 64265, + "Directional": false + }, + { + "SourceID": 64264, + "TargetID": 64263, + "Directional": false + }, + { + "SourceID": 64306, + "TargetID": 64305, + "Directional": false + }, + { + "SourceID": 64307, + "TargetID": 64308, + "Directional": false + } + ] + }, + { + "ID": 2593, + "SourceStructureID": 5528, + "TargetStructureID": 5528, + "Label": "5528-5528 via Gap Junction from 135710 -> 135709", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 135710, + "TargetID": 135709, + "Directional": false + } + ] + }, + { + "ID": 2594, + "SourceStructureID": 5528, + "TargetStructureID": 5528, + "Label": "5528-5528 via Unknown from 94025 -> 94026", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94025, + "TargetID": 94026, + "Directional": false + } + ] + }, + { + "ID": 2595, + "SourceStructureID": 5530, + "TargetStructureID": 5528, + "Label": "5530-5528 via Gap Junction from 75888 -> 82614, 81192 -> 81191", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 75888, + "TargetID": 82614, + "Directional": false + }, + { + "SourceID": 81192, + "TargetID": 81191, + "Directional": false + } + ] + }, + { + "ID": 2596, + "SourceStructureID": 5531, + "TargetStructureID": 5528, + "Label": "5531-5528 via Adherens from 96154 -> 96155, 97241 -> 97242, 147406 -> 147405, 147443 -> 147444", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96154, + "TargetID": 96155, + "Directional": false + }, + { + "SourceID": 97241, + "TargetID": 97242, + "Directional": false + }, + { + "SourceID": 147406, + "TargetID": 147405, + "Directional": false + }, + { + "SourceID": 147443, + "TargetID": 147444, + "Directional": false + } + ] + }, + { + "ID": 2597, + "SourceStructureID": 5531, + "TargetStructureID": 5528, + "Label": "5531-5528 via Gap Junction from 54650 -> 8257, 54683 -> 54682, 54720 -> 54721, 54768 -> 54769, 94845 -> 94846, 95110 -> 95109, 107143 -> 107144, 108006 -> 108005, 112471 -> 93732, 113954 -> 113953, 119238 -> 119237, 131262 -> 131261, 131274 -> 131273, 133923 -> 133922, 133924 -> 133925, 133926 -> 133927, 147473 -> 147472", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54650, + "TargetID": 8257, + "Directional": false + }, + { + "SourceID": 54683, + "TargetID": 54682, + "Directional": false + }, + { + "SourceID": 54720, + "TargetID": 54721, + "Directional": false + }, + { + "SourceID": 54768, + "TargetID": 54769, + "Directional": false + }, + { + "SourceID": 94845, + "TargetID": 94846, + "Directional": false + }, + { + "SourceID": 95110, + "TargetID": 95109, + "Directional": false + }, + { + "SourceID": 107143, + "TargetID": 107144, + "Directional": false + }, + { + "SourceID": 108006, + "TargetID": 108005, + "Directional": false + }, + { + "SourceID": 112471, + "TargetID": 93732, + "Directional": false + }, + { + "SourceID": 113954, + "TargetID": 113953, + "Directional": false + }, + { + "SourceID": 119238, + "TargetID": 119237, + "Directional": false + }, + { + "SourceID": 131262, + "TargetID": 131261, + "Directional": false + }, + { + "SourceID": 131274, + "TargetID": 131273, + "Directional": false + }, + { + "SourceID": 133923, + "TargetID": 133922, + "Directional": false + }, + { + "SourceID": 133924, + "TargetID": 133925, + "Directional": false + }, + { + "SourceID": 133926, + "TargetID": 133927, + "Directional": false + }, + { + "SourceID": 147473, + "TargetID": 147472, + "Directional": false + } + ] + }, + { + "ID": 2598, + "SourceStructureID": 5534, + "TargetStructureID": 5528, + "Label": "5534-5528 via Gap Junction from 54418 -> 94655", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54418, + "TargetID": 94655, + "Directional": false + } + ] + }, + { + "ID": 2599, + "SourceStructureID": 5537, + "TargetStructureID": 5528, + "Label": "5537-5528 via Gap Junction from 94701 -> 94682", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94701, + "TargetID": 94682, + "Directional": false + } + ] + }, + { + "ID": 2600, + "SourceStructureID": 5528, + "TargetStructureID": 5860, + "Label": "5528-5860 via Adherens from 97287 -> 97285", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97287, + "TargetID": 97285, + "Directional": false + } + ] + }, + { + "ID": 2601, + "SourceStructureID": 5528, + "TargetStructureID": 5860, + "Label": "5528-5860 via Gap Junction from 8290 -> 8249, 8778 -> 135718, 54725 -> 54724, 94830 -> 93722", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 8290, + "TargetID": 8249, + "Directional": false + }, + { + "SourceID": 8778, + "TargetID": 135718, + "Directional": false + }, + { + "SourceID": 54725, + "TargetID": 54724, + "Directional": false + }, + { + "SourceID": 94830, + "TargetID": 93722, + "Directional": false + } + ] + }, + { + "ID": 2602, + "SourceStructureID": 5528, + "TargetStructureID": 5860, + "Label": "5528-5860 via Unknown from 97316 -> 97317", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97316, + "TargetID": 97317, + "Directional": false + } + ] + }, + { + "ID": 2603, + "SourceStructureID": 5528, + "TargetStructureID": 6129, + "Label": "5528-6129 via Adherens from 94294 -> 94295, 94411 -> 94412", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94294, + "TargetID": 94295, + "Directional": false + }, + { + "SourceID": 94411, + "TargetID": 94412, + "Directional": false + } + ] + }, + { + "ID": 2604, + "SourceStructureID": 5528, + "TargetStructureID": 6129, + "Label": "5528-6129 via Unknown from 93591 -> 93592, 93954 -> 93953, 94143 -> 94144, 94146 -> 94145, 94292 -> 94293, 94329 -> 94330, 94378 -> 94379, 95146 -> 95147, 95181 -> 95182", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93591, + "TargetID": 93592, + "Directional": false + }, + { + "SourceID": 93954, + "TargetID": 93953, + "Directional": false + }, + { + "SourceID": 94143, + "TargetID": 94144, + "Directional": false + }, + { + "SourceID": 94146, + "TargetID": 94145, + "Directional": false + }, + { + "SourceID": 94292, + "TargetID": 94293, + "Directional": false + }, + { + "SourceID": 94329, + "TargetID": 94330, + "Directional": false + }, + { + "SourceID": 94378, + "TargetID": 94379, + "Directional": false + }, + { + "SourceID": 95146, + "TargetID": 95147, + "Directional": false + }, + { + "SourceID": 95181, + "TargetID": 95182, + "Directional": false + } + ] + }, + { + "ID": 2605, + "SourceStructureID": 7225, + "TargetStructureID": 5528, + "Label": "7225-5528 via Gap Junction from 10026 -> 55031, 34318 -> 10028, 94494 -> 94493", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10026, + "TargetID": 55031, + "Directional": false + }, + { + "SourceID": 34318, + "TargetID": 10028, + "Directional": false + }, + { + "SourceID": 94494, + "TargetID": 94493, + "Directional": false + } + ] + }, + { + "ID": 2606, + "SourceStructureID": 7564, + "TargetStructureID": 5528, + "Label": "7564-5528 via Gap Junction from 84673 -> 84671", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 84673, + "TargetID": 84671, + "Directional": false + } + ] + }, + { + "ID": 2607, + "SourceStructureID": 5528, + "TargetStructureID": 7576, + "Label": "5528-7576 via Adherens from 54885 -> 54886, 55029 -> 55028, 55046 -> 55045, 55095 -> 55096, 55929 -> 55928, 96847 -> 96846", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54885, + "TargetID": 54886, + "Directional": false + }, + { + "SourceID": 55029, + "TargetID": 55028, + "Directional": false + }, + { + "SourceID": 55046, + "TargetID": 55045, + "Directional": false + }, + { + "SourceID": 55095, + "TargetID": 55096, + "Directional": false + }, + { + "SourceID": 55929, + "TargetID": 55928, + "Directional": false + }, + { + "SourceID": 96847, + "TargetID": 96846, + "Directional": false + } + ] + }, + { + "ID": 2608, + "SourceStructureID": 7576, + "TargetStructureID": 5528, + "Label": "7576-5528 via Gap Junction from 54742 -> 54743, 54750 -> 54751, 54854 -> 54853, 55018 -> 55017, 55027 -> 55026, 55032 -> 55033, 55067 -> 55068, 92623 -> 92622", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54742, + "TargetID": 54743, + "Directional": false + }, + { + "SourceID": 54750, + "TargetID": 54751, + "Directional": false + }, + { + "SourceID": 54854, + "TargetID": 54853, + "Directional": false + }, + { + "SourceID": 55018, + "TargetID": 55017, + "Directional": false + }, + { + "SourceID": 55027, + "TargetID": 55026, + "Directional": false + }, + { + "SourceID": 55032, + "TargetID": 55033, + "Directional": false + }, + { + "SourceID": 55067, + "TargetID": 55068, + "Directional": false + }, + { + "SourceID": 92623, + "TargetID": 92622, + "Directional": false + } + ] + }, + { + "ID": 2609, + "SourceStructureID": 5528, + "TargetStructureID": 7576, + "Label": "5528-7576 via Unknown from 94407 -> 94408, 94535 -> 94534, 95057 -> 95056, 95461 -> 95460", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94407, + "TargetID": 94408, + "Directional": false + }, + { + "SourceID": 94535, + "TargetID": 94534, + "Directional": false + }, + { + "SourceID": 95057, + "TargetID": 95056, + "Directional": false + }, + { + "SourceID": 95461, + "TargetID": 95460, + "Directional": false + } + ] + }, + { + "ID": 2610, + "SourceStructureID": 5528, + "TargetStructureID": 7594, + "Label": "5528-7594 via Unknown from 95185 -> 95186", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95185, + "TargetID": 95186, + "Directional": false + } + ] + }, + { + "ID": 2611, + "SourceStructureID": 25293, + "TargetStructureID": 5528, + "Label": "25293-5528 via Adherens from 95656 -> 95655", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95656, + "TargetID": 95655, + "Directional": false + } + ] + }, + { + "ID": 2612, + "SourceStructureID": 5528, + "TargetStructureID": 33217, + "Label": "5528-33217 via Unknown from 94192 -> 94193", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94192, + "TargetID": 94193, + "Directional": false + } + ] + }, + { + "ID": 2613, + "SourceStructureID": 5528, + "TargetStructureID": 43716, + "Label": "5528-43716 via Adherens from 95170 -> 95180", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95170, + "TargetID": 95180, + "Directional": false + } + ] + }, + { + "ID": 2614, + "SourceStructureID": 64414, + "TargetStructureID": 5528, + "Label": "64414-5528 via Unknown from 93973 -> 93974", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93973, + "TargetID": 93974, + "Directional": false + } + ] + }, + { + "ID": 2615, + "SourceStructureID": 68785, + "TargetStructureID": 5528, + "Label": "68785-5528 via Adherens from 95129 -> 95130", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95129, + "TargetID": 95130, + "Directional": false + } + ] + }, + { + "ID": 2616, + "SourceStructureID": 5528, + "TargetStructureID": 68793, + "Label": "5528-68793 via Unknown from 95088 -> 95089", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95088, + "TargetID": 95089, + "Directional": false + } + ] + }, + { + "ID": 2617, + "SourceStructureID": 82832, + "TargetStructureID": 5528, + "Label": "82832-5528 via Adherens from 96264 -> 96265", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96264, + "TargetID": 96265, + "Directional": false + } + ] + }, + { + "ID": 2618, + "SourceStructureID": 91376, + "TargetStructureID": 5528, + "Label": "91376-5528 via Unknown from 133947 -> 95646", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133947, + "TargetID": 95646, + "Directional": false + } + ] + }, + { + "ID": 2619, + "SourceStructureID": 5528, + "TargetStructureID": 93557, + "Label": "5528-93557 via Unknown from 93560 -> 93561", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93560, + "TargetID": 93561, + "Directional": false + } + ] + }, + { + "ID": 2620, + "SourceStructureID": 93563, + "TargetStructureID": 5528, + "Label": "93563-5528 via Adherens from 93564 -> 93562", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93564, + "TargetID": 93562, + "Directional": false + } + ] + }, + { + "ID": 2621, + "SourceStructureID": 5528, + "TargetStructureID": 93961, + "Label": "5528-93961 via Unknown from 93960 -> 93963", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93960, + "TargetID": 93963, + "Directional": false + } + ] + }, + { + "ID": 2622, + "SourceStructureID": 93966, + "TargetStructureID": 5528, + "Label": "93966-5528 via Adherens from 93971 -> 93972", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93971, + "TargetID": 93972, + "Directional": false + } + ] + }, + { + "ID": 2623, + "SourceStructureID": 5528, + "TargetStructureID": 93987, + "Label": "5528-93987 via Gap Junction from 93584 -> 94016, 93989 -> 93990, 94151 -> 94152, 94174 -> 94173", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93584, + "TargetID": 94016, + "Directional": false + }, + { + "SourceID": 93989, + "TargetID": 93990, + "Directional": false + }, + { + "SourceID": 94151, + "TargetID": 94152, + "Directional": false + }, + { + "SourceID": 94174, + "TargetID": 94173, + "Directional": false + } + ] + }, + { + "ID": 2624, + "SourceStructureID": 5528, + "TargetStructureID": 94012, + "Label": "5528-94012 via Unknown from 93588 -> 94013", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93588, + "TargetID": 94013, + "Directional": false + } + ] + }, + { + "ID": 2625, + "SourceStructureID": 5528, + "TargetStructureID": 94018, + "Label": "5528-94018 via Adherens from 93586 -> 94019", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93586, + "TargetID": 94019, + "Directional": false + } + ] + }, + { + "ID": 2626, + "SourceStructureID": 94027, + "TargetStructureID": 5528, + "Label": "94027-5528 via Adherens from 94028 -> 93602", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94028, + "TargetID": 93602, + "Directional": false + } + ] + }, + { + "ID": 2627, + "SourceStructureID": 5528, + "TargetStructureID": 94046, + "Label": "5528-94046 via Unknown from 94121 -> 94122", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94121, + "TargetID": 94122, + "Directional": false + } + ] + }, + { + "ID": 2628, + "SourceStructureID": 94130, + "TargetStructureID": 5528, + "Label": "94130-5528 via Unknown from 94131 -> 94129", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94131, + "TargetID": 94129, + "Directional": false + } + ] + }, + { + "ID": 2629, + "SourceStructureID": 5528, + "TargetStructureID": 94164, + "Label": "5528-94164 via Unknown from 94163 -> 94364", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94163, + "TargetID": 94364, + "Directional": false + } + ] + }, + { + "ID": 2630, + "SourceStructureID": 94165, + "TargetStructureID": 5528, + "Label": "94165-5528 via Adherens from 94166 -> 94167", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94166, + "TargetID": 94167, + "Directional": false + } + ] + }, + { + "ID": 2631, + "SourceStructureID": 94168, + "TargetStructureID": 5528, + "Label": "94168-5528 via Unknown from 94170 -> 94169", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94170, + "TargetID": 94169, + "Directional": false + } + ] + }, + { + "ID": 2632, + "SourceStructureID": 5528, + "TargetStructureID": 94178, + "Label": "5528-94178 via Adherens from 94181 -> 94183", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94181, + "TargetID": 94183, + "Directional": false + } + ] + }, + { + "ID": 2633, + "SourceStructureID": 94184, + "TargetStructureID": 5528, + "Label": "94184-5528 via Adherens from 94185 -> 94186", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94185, + "TargetID": 94186, + "Directional": false + } + ] + }, + { + "ID": 2634, + "SourceStructureID": 5528, + "TargetStructureID": 94184, + "Label": "5528-94184 via Unknown from 94187 -> 94188", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94187, + "TargetID": 94188, + "Directional": false + } + ] + }, + { + "ID": 2635, + "SourceStructureID": 5528, + "TargetStructureID": 94189, + "Label": "5528-94189 via Unknown from 94190 -> 94191", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94190, + "TargetID": 94191, + "Directional": false + } + ] + }, + { + "ID": 2636, + "SourceStructureID": 94194, + "TargetStructureID": 5528, + "Label": "94194-5528 via Unknown from 94197 -> 94196", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94197, + "TargetID": 94196, + "Directional": false + } + ] + }, + { + "ID": 2637, + "SourceStructureID": 94251, + "TargetStructureID": 5528, + "Label": "94251-5528 via Unknown from 94254 -> 94196", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94254, + "TargetID": 94196, + "Directional": false + } + ] + }, + { + "ID": 2638, + "SourceStructureID": 5528, + "TargetStructureID": 94270, + "Label": "5528-94270 via Adherens from 94272 -> 94271", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94272, + "TargetID": 94271, + "Directional": false + } + ] + }, + { + "ID": 2639, + "SourceStructureID": 94303, + "TargetStructureID": 5528, + "Label": "94303-5528 via Adherens from 94306 -> 94307", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94306, + "TargetID": 94307, + "Directional": false + } + ] + }, + { + "ID": 2640, + "SourceStructureID": 94312, + "TargetStructureID": 5528, + "Label": "94312-5528 via Adherens from 94317 -> 94316, 94318 -> 94319", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94317, + "TargetID": 94316, + "Directional": false + }, + { + "SourceID": 94318, + "TargetID": 94319, + "Directional": false + } + ] + }, + { + "ID": 2641, + "SourceStructureID": 94323, + "TargetStructureID": 5528, + "Label": "94323-5528 via Gap Junction from 94324 -> 94325", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 94324, + "TargetID": 94325, + "Directional": false + } + ] + }, + { + "ID": 2642, + "SourceStructureID": 94326, + "TargetStructureID": 5528, + "Label": "94326-5528 via Adherens from 94327 -> 94328", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94327, + "TargetID": 94328, + "Directional": false + } + ] + }, + { + "ID": 2643, + "SourceStructureID": 5528, + "TargetStructureID": 94344, + "Label": "5528-94344 via Adherens from 94343 -> 94345, 94383 -> 94384", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94343, + "TargetID": 94345, + "Directional": false + }, + { + "SourceID": 94383, + "TargetID": 94384, + "Directional": false + } + ] + }, + { + "ID": 2644, + "SourceStructureID": 94349, + "TargetStructureID": 5528, + "Label": "94349-5528 via Adherens from 94350 -> 94351", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94350, + "TargetID": 94351, + "Directional": false + } + ] + }, + { + "ID": 2645, + "SourceStructureID": 94396, + "TargetStructureID": 5528, + "Label": "94396-5528 via Unknown from 94397 -> 94398", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94397, + "TargetID": 94398, + "Directional": false + } + ] + }, + { + "ID": 2646, + "SourceStructureID": 94482, + "TargetStructureID": 5528, + "Label": "94482-5528 via Adherens from 94488 -> 94489", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94488, + "TargetID": 94489, + "Directional": false + } + ] + }, + { + "ID": 2647, + "SourceStructureID": 5528, + "TargetStructureID": 94497, + "Label": "5528-94497 via Adherens from 94498 -> 94499", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94498, + "TargetID": 94499, + "Directional": false + } + ] + }, + { + "ID": 2648, + "SourceStructureID": 5528, + "TargetStructureID": 94531, + "Label": "5528-94531 via Unknown from 94532 -> 94533", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94532, + "TargetID": 94533, + "Directional": false + } + ] + }, + { + "ID": 2649, + "SourceStructureID": 94646, + "TargetStructureID": 5528, + "Label": "94646-5528 via Unknown from 94647 -> 94648", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94647, + "TargetID": 94648, + "Directional": false + } + ] + }, + { + "ID": 2650, + "SourceStructureID": 5528, + "TargetStructureID": 94675, + "Label": "5528-94675 via Unknown from 94676 -> 94678", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94676, + "TargetID": 94678, + "Directional": false + } + ] + }, + { + "ID": 2651, + "SourceStructureID": 94713, + "TargetStructureID": 5528, + "Label": "94713-5528 via Adherens from 94716 -> 94717", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94716, + "TargetID": 94717, + "Directional": false + } + ] + }, + { + "ID": 2652, + "SourceStructureID": 5528, + "TargetStructureID": 94722, + "Label": "5528-94722 via Unknown from 94725 -> 94726", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94725, + "TargetID": 94726, + "Directional": false + } + ] + }, + { + "ID": 2653, + "SourceStructureID": 94794, + "TargetStructureID": 5528, + "Label": "94794-5528 via Unknown from 94809 -> 94810", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94809, + "TargetID": 94810, + "Directional": false + } + ] + }, + { + "ID": 2654, + "SourceStructureID": 94806, + "TargetStructureID": 5528, + "Label": "94806-5528 via Unknown from 94807 -> 94808", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94807, + "TargetID": 94808, + "Directional": false + } + ] + }, + { + "ID": 2655, + "SourceStructureID": 94811, + "TargetStructureID": 5528, + "Label": "94811-5528 via Unknown from 94812 -> 94813", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94812, + "TargetID": 94813, + "Directional": false + } + ] + }, + { + "ID": 2656, + "SourceStructureID": 94834, + "TargetStructureID": 5528, + "Label": "94834-5528 via Unknown from 94835 -> 94836", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94835, + "TargetID": 94836, + "Directional": false + } + ] + }, + { + "ID": 2657, + "SourceStructureID": 94838, + "TargetStructureID": 5528, + "Label": "94838-5528 via Adherens from 94840 -> 94841, 94863 -> 94864", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94840, + "TargetID": 94841, + "Directional": false + }, + { + "SourceID": 94863, + "TargetID": 94864, + "Directional": false + } + ] + }, + { + "ID": 2658, + "SourceStructureID": 94838, + "TargetStructureID": 5528, + "Label": "94838-5528 via Unknown from 94842 -> 94843", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94842, + "TargetID": 94843, + "Directional": false + } + ] + }, + { + "ID": 2659, + "SourceStructureID": 5528, + "TargetStructureID": 94848, + "Label": "5528-94848 via Unknown from 94860 -> 94861", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94860, + "TargetID": 94861, + "Directional": false + } + ] + }, + { + "ID": 2660, + "SourceStructureID": 95062, + "TargetStructureID": 5528, + "Label": "95062-5528 via Adherens from 95064 -> 95065", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95064, + "TargetID": 95065, + "Directional": false + } + ] + }, + { + "ID": 2661, + "SourceStructureID": 5528, + "TargetStructureID": 95066, + "Label": "5528-95066 via Adherens from 95067 -> 95068", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95067, + "TargetID": 95068, + "Directional": false + } + ] + }, + { + "ID": 2662, + "SourceStructureID": 95070, + "TargetStructureID": 5528, + "Label": "95070-5528 via Unknown from 95077 -> 95079", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95077, + "TargetID": 95079, + "Directional": false + } + ] + }, + { + "ID": 2663, + "SourceStructureID": 5528, + "TargetStructureID": 95131, + "Label": "5528-95131 via Adherens from 68789 -> 95143, 95145 -> 68788", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68789, + "TargetID": 95143, + "Directional": false + }, + { + "SourceID": 95145, + "TargetID": 68788, + "Directional": false + } + ] + }, + { + "ID": 2664, + "SourceStructureID": 5528, + "TargetStructureID": 95131, + "Label": "5528-95131 via Unknown from 95146 -> 95148", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95146, + "TargetID": 95148, + "Directional": false + } + ] + }, + { + "ID": 2665, + "SourceStructureID": 95157, + "TargetStructureID": 5528, + "Label": "95157-5528 via Unknown from 95158 -> 95156", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95158, + "TargetID": 95156, + "Directional": false + } + ] + }, + { + "ID": 2666, + "SourceStructureID": 95195, + "TargetStructureID": 5528, + "Label": "95195-5528 via Adherens from 95471 -> 95472", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95471, + "TargetID": 95472, + "Directional": false + } + ] + }, + { + "ID": 2667, + "SourceStructureID": 5528, + "TargetStructureID": 95623, + "Label": "5528-95623 via Adherens from 95628 -> 95629", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95628, + "TargetID": 95629, + "Directional": false + } + ] + }, + { + "ID": 2668, + "SourceStructureID": 5528, + "TargetStructureID": 95623, + "Label": "5528-95623 via Gap Junction from 95624 -> 95625", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 95624, + "TargetID": 95625, + "Directional": false + } + ] + }, + { + "ID": 2669, + "SourceStructureID": 95640, + "TargetStructureID": 5528, + "Label": "95640-5528 via Unknown from 95642 -> 95641", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95642, + "TargetID": 95641, + "Directional": false + } + ] + }, + { + "ID": 2670, + "SourceStructureID": 95693, + "TargetStructureID": 5528, + "Label": "95693-5528 via Unknown from 95694 -> 95692", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 95694, + "TargetID": 95692, + "Directional": false + } + ] + }, + { + "ID": 2671, + "SourceStructureID": 5528, + "TargetStructureID": 96143, + "Label": "5528-96143 via Unknown from 96160 -> 96161", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96160, + "TargetID": 96161, + "Directional": false + } + ] + }, + { + "ID": 2672, + "SourceStructureID": 96170, + "TargetStructureID": 5528, + "Label": "96170-5528 via Adherens from 96171 -> 96169", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96171, + "TargetID": 96169, + "Directional": false + } + ] + }, + { + "ID": 2673, + "SourceStructureID": 5528, + "TargetStructureID": 96189, + "Label": "5528-96189 via Adherens from 96192 -> 96193", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96192, + "TargetID": 96193, + "Directional": false + } + ] + }, + { + "ID": 2674, + "SourceStructureID": 96194, + "TargetStructureID": 5528, + "Label": "96194-5528 via Unknown from 96195 -> 96196", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96195, + "TargetID": 96196, + "Directional": false + } + ] + }, + { + "ID": 2675, + "SourceStructureID": 5528, + "TargetStructureID": 96201, + "Label": "5528-96201 via Gap Junction from 96205 -> 96204", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96205, + "TargetID": 96204, + "Directional": false + } + ] + }, + { + "ID": 2676, + "SourceStructureID": 96210, + "TargetStructureID": 5528, + "Label": "96210-5528 via Unknown from 96211 -> 96209", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96211, + "TargetID": 96209, + "Directional": false + } + ] + }, + { + "ID": 2677, + "SourceStructureID": 5528, + "TargetStructureID": 96220, + "Label": "5528-96220 via Unknown from 96219 -> 96223", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96219, + "TargetID": 96223, + "Directional": false + } + ] + }, + { + "ID": 2678, + "SourceStructureID": 5528, + "TargetStructureID": 96240, + "Label": "5528-96240 via Unknown from 96260 -> 96261, 96262 -> 96263", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96260, + "TargetID": 96261, + "Directional": false + }, + { + "SourceID": 96262, + "TargetID": 96263, + "Directional": false + } + ] + }, + { + "ID": 2679, + "SourceStructureID": 96270, + "TargetStructureID": 5528, + "Label": "96270-5528 via Adherens from 96275 -> 96274", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96275, + "TargetID": 96274, + "Directional": false + } + ] + }, + { + "ID": 2680, + "SourceStructureID": 5528, + "TargetStructureID": 96290, + "Label": "5528-96290 via Adherens from 96842 -> 96843", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96842, + "TargetID": 96843, + "Directional": false + } + ] + }, + { + "ID": 2681, + "SourceStructureID": 5528, + "TargetStructureID": 96290, + "Label": "5528-96290 via Gap Junction from 96845 -> 96844", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96845, + "TargetID": 96844, + "Directional": false + } + ] + }, + { + "ID": 2682, + "SourceStructureID": 96303, + "TargetStructureID": 5528, + "Label": "96303-5528 via Adherens from 96840 -> 96841", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96840, + "TargetID": 96841, + "Directional": false + } + ] + }, + { + "ID": 2683, + "SourceStructureID": 96883, + "TargetStructureID": 5528, + "Label": "96883-5528 via Adherens from 96888 -> 96889, 96890 -> 96887", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96888, + "TargetID": 96889, + "Directional": false + }, + { + "SourceID": 96890, + "TargetID": 96887, + "Directional": false + } + ] + }, + { + "ID": 2684, + "SourceStructureID": 96893, + "TargetStructureID": 5528, + "Label": "96893-5528 via Adherens from 96917 -> 96916", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96917, + "TargetID": 96916, + "Directional": false + } + ] + }, + { + "ID": 2685, + "SourceStructureID": 96898, + "TargetStructureID": 5528, + "Label": "96898-5528 via Gap Junction from 96901 -> 96902", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96901, + "TargetID": 96902, + "Directional": false + } + ] + }, + { + "ID": 2686, + "SourceStructureID": 96914, + "TargetStructureID": 5528, + "Label": "96914-5528 via Adherens from 96915 -> 8293", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96915, + "TargetID": 8293, + "Directional": false + } + ] + }, + { + "ID": 2687, + "SourceStructureID": 97290, + "TargetStructureID": 5528, + "Label": "97290-5528 via Adherens from 97291 -> 97292", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97291, + "TargetID": 97292, + "Directional": false + } + ] + }, + { + "ID": 2688, + "SourceStructureID": 5528, + "TargetStructureID": 97310, + "Label": "5528-97310 via Adherens from 97312 -> 97313", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97312, + "TargetID": 97313, + "Directional": false + } + ] + }, + { + "ID": 2689, + "SourceStructureID": 5530, + "TargetStructureID": 5530, + "Label": "5530-5530 via Adherens from 125895 -> 125896, 135588 -> 135587, 135603 -> 135604", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125895, + "TargetID": 125896, + "Directional": false + }, + { + "SourceID": 135588, + "TargetID": 135587, + "Directional": false + }, + { + "SourceID": 135603, + "TargetID": 135604, + "Directional": false + } + ] + }, + { + "ID": 2690, + "SourceStructureID": 5530, + "TargetStructureID": 5530, + "Label": "5530-5530 via Gap Junction from 44246 -> 44245, 74588 -> 74587, 80973 -> 50905, 81253 -> 81254, 81568 -> 54071, 81865 -> 81870", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 44246, + "TargetID": 44245, + "Directional": false + }, + { + "SourceID": 74588, + "TargetID": 74587, + "Directional": false + }, + { + "SourceID": 80973, + "TargetID": 50905, + "Directional": false + }, + { + "SourceID": 81253, + "TargetID": 81254, + "Directional": false + }, + { + "SourceID": 81568, + "TargetID": 54071, + "Directional": false + }, + { + "SourceID": 81865, + "TargetID": 81870, + "Directional": false + } + ] + }, + { + "ID": 2691, + "SourceStructureID": 5531, + "TargetStructureID": 5530, + "Label": "5531-5530 via Adherens from 82571 -> 81621", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82571, + "TargetID": 81621, + "Directional": false + } + ] + }, + { + "ID": 2692, + "SourceStructureID": 5534, + "TargetStructureID": 5530, + "Label": "5534-5530 via Adherens from 135581 -> 135580", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135581, + "TargetID": 135580, + "Directional": false + } + ] + }, + { + "ID": 2693, + "SourceStructureID": 5530, + "TargetStructureID": 5534, + "Label": "5530-5534 via Gap Junction from 38271 -> 77931, 45323 -> 45322, 76798 -> 76797, 82053 -> 82054, 82056 -> 82055, 134307 -> 134308", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38271, + "TargetID": 77931, + "Directional": false + }, + { + "SourceID": 45323, + "TargetID": 45322, + "Directional": false + }, + { + "SourceID": 76798, + "TargetID": 76797, + "Directional": false + }, + { + "SourceID": 82053, + "TargetID": 82054, + "Directional": false + }, + { + "SourceID": 82056, + "TargetID": 82055, + "Directional": false + }, + { + "SourceID": 134307, + "TargetID": 134308, + "Directional": false + } + ] + }, + { + "ID": 2694, + "SourceStructureID": 5530, + "TargetStructureID": 5537, + "Label": "5530-5537 via Adherens from 81221 -> 81222, 135574 -> 135573", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81221, + "TargetID": 81222, + "Directional": false + }, + { + "SourceID": 135574, + "TargetID": 135573, + "Directional": false + } + ] + }, + { + "ID": 2695, + "SourceStructureID": 5530, + "TargetStructureID": 5537, + "Label": "5530-5537 via Gap Junction from 81219 -> 81220, 81261 -> 81260, 134568 -> 134569", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 81219, + "TargetID": 81220, + "Directional": false + }, + { + "SourceID": 81261, + "TargetID": 81260, + "Directional": false + }, + { + "SourceID": 134568, + "TargetID": 134569, + "Directional": false + } + ] + }, + { + "ID": 2696, + "SourceStructureID": 5530, + "TargetStructureID": 5601, + "Label": "5530-5601 via Gap Junction from 45399 -> 38527, 54097 -> 54096, 81266 -> 81265", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45399, + "TargetID": 38527, + "Directional": false + }, + { + "SourceID": 54097, + "TargetID": 54096, + "Directional": false + }, + { + "SourceID": 81266, + "TargetID": 81265, + "Directional": false + } + ] + }, + { + "ID": 2697, + "SourceStructureID": 5530, + "TargetStructureID": 5860, + "Label": "5530-5860 via Adherens from 126466 -> 126467", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126466, + "TargetID": 126467, + "Directional": false + } + ] + }, + { + "ID": 2698, + "SourceStructureID": 5530, + "TargetStructureID": 5860, + "Label": "5530-5860 via Gap Junction from 29865 -> 29864, 30115 -> 30116, 79573 -> 79574, 80188 -> 82437, 80707 -> 80706, 82881 -> 81028", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29865, + "TargetID": 29864, + "Directional": false + }, + { + "SourceID": 30115, + "TargetID": 30116, + "Directional": false + }, + { + "SourceID": 79573, + "TargetID": 79574, + "Directional": false + }, + { + "SourceID": 80188, + "TargetID": 82437, + "Directional": false + }, + { + "SourceID": 80707, + "TargetID": 80706, + "Directional": false + }, + { + "SourceID": 82881, + "TargetID": 81028, + "Directional": false + } + ] + }, + { + "ID": 2699, + "SourceStructureID": 5530, + "TargetStructureID": 6117, + "Label": "5530-6117 via Gap Junction from 46332 -> 30905, 80449 -> 82856", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46332, + "TargetID": 30905, + "Directional": false + }, + { + "SourceID": 80449, + "TargetID": 82856, + "Directional": false + } + ] + }, + { + "ID": 2700, + "SourceStructureID": 5530, + "TargetStructureID": 7564, + "Label": "5530-7564 via Adherens from 75895 -> 75896", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75895, + "TargetID": 75896, + "Directional": false + } + ] + }, + { + "ID": 2701, + "SourceStructureID": 5530, + "TargetStructureID": 7564, + "Label": "5530-7564 via Gap Junction from 29174 -> 29173, 76741 -> 76740, 77648 -> 77649", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29174, + "TargetID": 29173, + "Directional": false + }, + { + "SourceID": 76741, + "TargetID": 76740, + "Directional": false + }, + { + "SourceID": 77648, + "TargetID": 77649, + "Directional": false + } + ] + }, + { + "ID": 2702, + "SourceStructureID": 5530, + "TargetStructureID": 9769, + "Label": "5530-9769 via Adherens from 74661 -> 74660, 126447 -> 126448", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74661, + "TargetID": 74660, + "Directional": false + }, + { + "SourceID": 126447, + "TargetID": 126448, + "Directional": false + } + ] + }, + { + "ID": 2703, + "SourceStructureID": 9769, + "TargetStructureID": 5530, + "Label": "9769-5530 via Unknown from 74607 -> 74606, 82886 -> 81144", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74607, + "TargetID": 74606, + "Directional": false + }, + { + "SourceID": 82886, + "TargetID": 81144, + "Directional": false + } + ] + }, + { + "ID": 2704, + "SourceStructureID": 5530, + "TargetStructureID": 10596, + "Label": "5530-10596 via Adherens from 76525 -> 82375", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76525, + "TargetID": 82375, + "Directional": false + } + ] + }, + { + "ID": 2705, + "SourceStructureID": 10596, + "TargetStructureID": 5530, + "Label": "10596-5530 via Unknown from 82621 -> 76547", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82621, + "TargetID": 76547, + "Directional": false + } + ] + }, + { + "ID": 2706, + "SourceStructureID": 12564, + "TargetStructureID": 5530, + "Label": "12564-5530 via Adherens from 76825 -> 76826", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76825, + "TargetID": 76826, + "Directional": false + } + ] + }, + { + "ID": 2707, + "SourceStructureID": 5530, + "TargetStructureID": 18693, + "Label": "5530-18693 via Unknown from 77628 -> 77629", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77628, + "TargetID": 77629, + "Directional": false + } + ] + }, + { + "ID": 2708, + "SourceStructureID": 23512, + "TargetStructureID": 5530, + "Label": "23512-5530 via Unknown from 82618 -> 76524", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82618, + "TargetID": 76524, + "Directional": false + } + ] + }, + { + "ID": 2709, + "SourceStructureID": 5530, + "TargetStructureID": 23836, + "Label": "5530-23836 via Adherens from 81177 -> 81176, 81178 -> 81179, 81185 -> 81184", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81177, + "TargetID": 81176, + "Directional": false + }, + { + "SourceID": 81178, + "TargetID": 81179, + "Directional": false + }, + { + "SourceID": 81185, + "TargetID": 81184, + "Directional": false + } + ] + }, + { + "ID": 2710, + "SourceStructureID": 23836, + "TargetStructureID": 5530, + "Label": "23836-5530 via Unknown from 83002 -> 82049", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83002, + "TargetID": 82049, + "Directional": false + } + ] + }, + { + "ID": 2711, + "SourceStructureID": 5530, + "TargetStructureID": 25293, + "Label": "5530-25293 via Unknown from 81118 -> 82883", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81118, + "TargetID": 82883, + "Directional": false + } + ] + }, + { + "ID": 2712, + "SourceStructureID": 5530, + "TargetStructureID": 34315, + "Label": "5530-34315 via Adherens from 81205 -> 81204", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81205, + "TargetID": 81204, + "Directional": false + } + ] + }, + { + "ID": 2713, + "SourceStructureID": 35240, + "TargetStructureID": 5530, + "Label": "35240-5530 via Adherens from 126441 -> 126442", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126441, + "TargetID": 126442, + "Directional": false + } + ] + }, + { + "ID": 2714, + "SourceStructureID": 5530, + "TargetStructureID": 35240, + "Label": "5530-35240 via Unknown from 80177 -> 82838, 82425 -> 79271, 82836 -> 79547, 82837 -> 79548", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80177, + "TargetID": 82838, + "Directional": false + }, + { + "SourceID": 82425, + "TargetID": 79271, + "Directional": false + }, + { + "SourceID": 82836, + "TargetID": 79547, + "Directional": false + }, + { + "SourceID": 82837, + "TargetID": 79548, + "Directional": false + } + ] + }, + { + "ID": 2715, + "SourceStructureID": 35539, + "TargetStructureID": 5530, + "Label": "35539-5530 via Unknown from 82823 -> 79054", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82823, + "TargetID": 79054, + "Directional": false + } + ] + }, + { + "ID": 2716, + "SourceStructureID": 5530, + "TargetStructureID": 40039, + "Label": "5530-40039 via Adherens from 82524 -> 82525, 84360 -> 84359", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82524, + "TargetID": 82525, + "Directional": false + }, + { + "SourceID": 84360, + "TargetID": 84359, + "Directional": false + } + ] + }, + { + "ID": 2717, + "SourceStructureID": 40039, + "TargetStructureID": 5530, + "Label": "40039-5530 via Conventional from 82610 -> 75773", + "Type": "Conventional", + "Directional": false, + "Links": [ + { + "SourceID": 82610, + "TargetID": 75773, + "Directional": false + } + ] + }, + { + "ID": 2718, + "SourceStructureID": 40039, + "TargetStructureID": 5530, + "Label": "40039-5530 via Unknown from 82379 -> 80508, 82511 -> 80567, 82673 -> 82674, 82844 -> 80200", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82379, + "TargetID": 80508, + "Directional": false + }, + { + "SourceID": 82511, + "TargetID": 80567, + "Directional": false + }, + { + "SourceID": 82673, + "TargetID": 82674, + "Directional": false + }, + { + "SourceID": 82844, + "TargetID": 80200, + "Directional": false + } + ] + }, + { + "ID": 2719, + "SourceStructureID": 44237, + "TargetStructureID": 5530, + "Label": "44237-5530 via Adherens from 77354 -> 77355", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77354, + "TargetID": 77355, + "Directional": false + } + ] + }, + { + "ID": 2720, + "SourceStructureID": 5530, + "TargetStructureID": 45220, + "Label": "5530-45220 via Unknown from 81214 -> 82896, 82900 -> 81611", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81214, + "TargetID": 82896, + "Directional": false + }, + { + "SourceID": 82900, + "TargetID": 81611, + "Directional": false + } + ] + }, + { + "ID": 2721, + "SourceStructureID": 69953, + "TargetStructureID": 5530, + "Label": "69953-5530 via Unknown from 82850 -> 80405, 126462 -> 126461", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82850, + "TargetID": 80405, + "Directional": false + }, + { + "SourceID": 126462, + "TargetID": 126461, + "Directional": false + } + ] + }, + { + "ID": 2722, + "SourceStructureID": 74056, + "TargetStructureID": 5530, + "Label": "74056-5530 via Adherens from 81710 -> 81711", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81710, + "TargetID": 81711, + "Directional": false + } + ] + }, + { + "ID": 2723, + "SourceStructureID": 5530, + "TargetStructureID": 74213, + "Label": "5530-74213 via Unknown from 74612 -> 74613", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74612, + "TargetID": 74613, + "Directional": false + } + ] + }, + { + "ID": 2724, + "SourceStructureID": 74225, + "TargetStructureID": 5530, + "Label": "74225-5530 via Unknown from 74227 -> 74226", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74227, + "TargetID": 74226, + "Directional": false + } + ] + }, + { + "ID": 2725, + "SourceStructureID": 5530, + "TargetStructureID": 74584, + "Label": "5530-74584 via Adherens from 82316 -> 74585", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82316, + "TargetID": 74585, + "Directional": false + } + ] + }, + { + "ID": 2726, + "SourceStructureID": 74694, + "TargetStructureID": 5530, + "Label": "74694-5530 via Unknown from 74715 -> 74718", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74715, + "TargetID": 74718, + "Directional": false + } + ] + }, + { + "ID": 2727, + "SourceStructureID": 5530, + "TargetStructureID": 75001, + "Label": "5530-75001 via Unknown from 77325 -> 82641, 82424 -> 75778", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77325, + "TargetID": 82641, + "Directional": false + }, + { + "SourceID": 82424, + "TargetID": 75778, + "Directional": false + } + ] + }, + { + "ID": 2728, + "SourceStructureID": 75488, + "TargetStructureID": 5530, + "Label": "75488-5530 via Unknown from 82601 -> 75495", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82601, + "TargetID": 75495, + "Directional": false + } + ] + }, + { + "ID": 2729, + "SourceStructureID": 5530, + "TargetStructureID": 75512, + "Label": "5530-75512 via Adherens from 75514 -> 75513", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75514, + "TargetID": 75513, + "Directional": false + } + ] + }, + { + "ID": 2730, + "SourceStructureID": 5530, + "TargetStructureID": 75515, + "Label": "5530-75515 via Unknown from 75516 -> 82602", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75516, + "TargetID": 82602, + "Directional": false + } + ] + }, + { + "ID": 2731, + "SourceStructureID": 75796, + "TargetStructureID": 5530, + "Label": "75796-5530 via Adherens from 125904 -> 125903, 125906 -> 125907", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 125904, + "TargetID": 125903, + "Directional": false + }, + { + "SourceID": 125906, + "TargetID": 125907, + "Directional": false + } + ] + }, + { + "ID": 2732, + "SourceStructureID": 75796, + "TargetStructureID": 5530, + "Label": "75796-5530 via Unknown from 82611 -> 75809", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82611, + "TargetID": 75809, + "Directional": false + } + ] + }, + { + "ID": 2733, + "SourceStructureID": 75915, + "TargetStructureID": 5530, + "Label": "75915-5530 via Unknown from 115791 -> 75916", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115791, + "TargetID": 75916, + "Directional": false + } + ] + }, + { + "ID": 2734, + "SourceStructureID": 5530, + "TargetStructureID": 76530, + "Label": "5530-76530 via Unknown from 76551 -> 82627", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76551, + "TargetID": 82627, + "Directional": false + } + ] + }, + { + "ID": 2735, + "SourceStructureID": 76771, + "TargetStructureID": 5530, + "Label": "76771-5530 via Unknown from 82537 -> 76774", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82537, + "TargetID": 76774, + "Directional": false + } + ] + }, + { + "ID": 2736, + "SourceStructureID": 77329, + "TargetStructureID": 5530, + "Label": "77329-5530 via Adherens from 77330 -> 77331", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77330, + "TargetID": 77331, + "Directional": false + } + ] + }, + { + "ID": 2737, + "SourceStructureID": 77329, + "TargetStructureID": 5530, + "Label": "77329-5530 via Unknown from 82651 -> 77327", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82651, + "TargetID": 77327, + "Directional": false + } + ] + }, + { + "ID": 2738, + "SourceStructureID": 77332, + "TargetStructureID": 5530, + "Label": "77332-5530 via Adherens from 77335 -> 77336", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77335, + "TargetID": 77336, + "Directional": false + } + ] + }, + { + "ID": 2739, + "SourceStructureID": 5530, + "TargetStructureID": 77332, + "Label": "5530-77332 via Unknown from 77353 -> 82652", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77353, + "TargetID": 82652, + "Directional": false + } + ] + }, + { + "ID": 2740, + "SourceStructureID": 5530, + "TargetStructureID": 77393, + "Label": "5530-77393 via Unknown from 77396 -> 82661", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77396, + "TargetID": 82661, + "Directional": false + } + ] + }, + { + "ID": 2741, + "SourceStructureID": 77407, + "TargetStructureID": 5530, + "Label": "77407-5530 via Unknown from 82675 -> 77410", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82675, + "TargetID": 77410, + "Directional": false + } + ] + }, + { + "ID": 2742, + "SourceStructureID": 5530, + "TargetStructureID": 77412, + "Label": "5530-77412 via Unknown from 77618 -> 82689", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77618, + "TargetID": 82689, + "Directional": false + } + ] + }, + { + "ID": 2743, + "SourceStructureID": 5530, + "TargetStructureID": 77632, + "Label": "5530-77632 via Unknown from 77636 -> 82697", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77636, + "TargetID": 82697, + "Directional": false + } + ] + }, + { + "ID": 2744, + "SourceStructureID": 77914, + "TargetStructureID": 5530, + "Label": "77914-5530 via Adherens from 77915 -> 77913", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77915, + "TargetID": 77913, + "Directional": false + } + ] + }, + { + "ID": 2745, + "SourceStructureID": 5530, + "TargetStructureID": 77932, + "Label": "5530-77932 via Adherens from 77935 -> 77936", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77935, + "TargetID": 77936, + "Directional": false + } + ] + }, + { + "ID": 2746, + "SourceStructureID": 5530, + "TargetStructureID": 79073, + "Label": "5530-79073 via Unknown from 79098 -> 82829", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79098, + "TargetID": 82829, + "Directional": false + } + ] + }, + { + "ID": 2747, + "SourceStructureID": 5530, + "TargetStructureID": 79106, + "Label": "5530-79106 via Unknown from 79117 -> 82377", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79117, + "TargetID": 82377, + "Directional": false + } + ] + }, + { + "ID": 2748, + "SourceStructureID": 5530, + "TargetStructureID": 79152, + "Label": "5530-79152 via Adherens from 79153 -> 79154", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79153, + "TargetID": 79154, + "Directional": false + } + ] + }, + { + "ID": 2749, + "SourceStructureID": 79159, + "TargetStructureID": 5530, + "Label": "79159-5530 via Adherens from 79162 -> 79163", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79162, + "TargetID": 79163, + "Directional": false + } + ] + }, + { + "ID": 2750, + "SourceStructureID": 79159, + "TargetStructureID": 5530, + "Label": "79159-5530 via Unknown from 82857 -> 80623", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82857, + "TargetID": 80623, + "Directional": false + } + ] + }, + { + "ID": 2751, + "SourceStructureID": 79256, + "TargetStructureID": 5530, + "Label": "79256-5530 via Adherens from 79262 -> 79263", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79262, + "TargetID": 79263, + "Directional": false + } + ] + }, + { + "ID": 2752, + "SourceStructureID": 79256, + "TargetStructureID": 5530, + "Label": "79256-5530 via Unknown from 134559 -> 79258", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134559, + "TargetID": 79258, + "Directional": false + } + ] + }, + { + "ID": 2753, + "SourceStructureID": 5530, + "TargetStructureID": 79551, + "Label": "5530-79551 via Adherens from 126451 -> 126452", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126451, + "TargetID": 126452, + "Directional": false + } + ] + }, + { + "ID": 2754, + "SourceStructureID": 80180, + "TargetStructureID": 5530, + "Label": "80180-5530 via Unknown from 82841 -> 80181", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82841, + "TargetID": 80181, + "Directional": false + } + ] + }, + { + "ID": 2755, + "SourceStructureID": 80276, + "TargetStructureID": 5530, + "Label": "80276-5530 via Unknown from 82847 -> 80314", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82847, + "TargetID": 80314, + "Directional": false + } + ] + }, + { + "ID": 2756, + "SourceStructureID": 80422, + "TargetStructureID": 5530, + "Label": "80422-5530 via Adherens from 80423 -> 80424", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80423, + "TargetID": 80424, + "Directional": false + } + ] + }, + { + "ID": 2757, + "SourceStructureID": 5530, + "TargetStructureID": 80495, + "Label": "5530-80495 via Adherens from 126455 -> 126456", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126455, + "TargetID": 126456, + "Directional": false + } + ] + }, + { + "ID": 2758, + "SourceStructureID": 5530, + "TargetStructureID": 80602, + "Label": "5530-80602 via Unknown from 46335 -> 80603", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 46335, + "TargetID": 80603, + "Directional": false + } + ] + }, + { + "ID": 2759, + "SourceStructureID": 80607, + "TargetStructureID": 5530, + "Label": "80607-5530 via Unknown from 82438 -> 80598", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82438, + "TargetID": 80598, + "Directional": false + } + ] + }, + { + "ID": 2760, + "SourceStructureID": 5530, + "TargetStructureID": 80609, + "Label": "5530-80609 via Unknown from 46338 -> 80610", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 46338, + "TargetID": 80610, + "Directional": false + } + ] + }, + { + "ID": 2761, + "SourceStructureID": 80977, + "TargetStructureID": 5530, + "Label": "80977-5530 via Adherens from 80978 -> 80979", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80978, + "TargetID": 80979, + "Directional": false + } + ] + }, + { + "ID": 2762, + "SourceStructureID": 80983, + "TargetStructureID": 5530, + "Label": "80983-5530 via Adherens from 80984 -> 80985", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80984, + "TargetID": 80985, + "Directional": false + } + ] + }, + { + "ID": 2763, + "SourceStructureID": 5530, + "TargetStructureID": 80997, + "Label": "5530-80997 via Unknown from 80998 -> 82879", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80998, + "TargetID": 82879, + "Directional": false + } + ] + }, + { + "ID": 2764, + "SourceStructureID": 81008, + "TargetStructureID": 5530, + "Label": "81008-5530 via Unknown from 82880 -> 81016", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82880, + "TargetID": 81016, + "Directional": false + } + ] + }, + { + "ID": 2765, + "SourceStructureID": 5530, + "TargetStructureID": 81142, + "Label": "5530-81142 via Unknown from 81143 -> 82526", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81143, + "TargetID": 82526, + "Directional": false + } + ] + }, + { + "ID": 2766, + "SourceStructureID": 5530, + "TargetStructureID": 81566, + "Label": "5530-81566 via Adherens from 126470 -> 126471", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126470, + "TargetID": 126471, + "Directional": false + } + ] + }, + { + "ID": 2767, + "SourceStructureID": 81566, + "TargetStructureID": 5530, + "Label": "81566-5530 via Unknown from 82899 -> 81579", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82899, + "TargetID": 81579, + "Directional": false + } + ] + }, + { + "ID": 2768, + "SourceStructureID": 81618, + "TargetStructureID": 5530, + "Label": "81618-5530 via Adherens from 81619 -> 81620", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81619, + "TargetID": 81620, + "Directional": false + } + ] + }, + { + "ID": 2769, + "SourceStructureID": 5530, + "TargetStructureID": 81622, + "Label": "5530-81622 via Unknown from 81627 -> 82990", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81627, + "TargetID": 82990, + "Directional": false + } + ] + }, + { + "ID": 2770, + "SourceStructureID": 5530, + "TargetStructureID": 81629, + "Label": "5530-81629 via Unknown from 81628 -> 82991", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81628, + "TargetID": 82991, + "Directional": false + } + ] + }, + { + "ID": 2771, + "SourceStructureID": 82046, + "TargetStructureID": 5530, + "Label": "82046-5530 via Adherens from 82047 -> 82048", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82047, + "TargetID": 82048, + "Directional": false + } + ] + }, + { + "ID": 2772, + "SourceStructureID": 82046, + "TargetStructureID": 5530, + "Label": "82046-5530 via Unknown from 83001 -> 81884", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83001, + "TargetID": 81884, + "Directional": false + } + ] + }, + { + "ID": 2773, + "SourceStructureID": 5530, + "TargetStructureID": 82070, + "Label": "5530-82070 via Unknown from 82066 -> 82507, 82082 -> 82083", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82066, + "TargetID": 82507, + "Directional": false + }, + { + "SourceID": 82082, + "TargetID": 82083, + "Directional": false + } + ] + }, + { + "ID": 2774, + "SourceStructureID": 82071, + "TargetStructureID": 5530, + "Label": "82071-5530 via Unknown from 82073 -> 82074", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82073, + "TargetID": 82074, + "Directional": false + } + ] + }, + { + "ID": 2775, + "SourceStructureID": 82442, + "TargetStructureID": 5530, + "Label": "82442-5530 via Unknown from 82552 -> 78874", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82552, + "TargetID": 78874, + "Directional": false + } + ] + }, + { + "ID": 2776, + "SourceStructureID": 5530, + "TargetStructureID": 82577, + "Label": "5530-82577 via Unknown from 80487 -> 82581", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80487, + "TargetID": 82581, + "Directional": false + } + ] + }, + { + "ID": 2777, + "SourceStructureID": 5530, + "TargetStructureID": 82595, + "Label": "5530-82595 via Unknown from 81885 -> 82596", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81885, + "TargetID": 82596, + "Directional": false + } + ] + }, + { + "ID": 2778, + "SourceStructureID": 82598, + "TargetStructureID": 5530, + "Label": "82598-5530 via Unknown from 82599 -> 74869", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82599, + "TargetID": 74869, + "Directional": false + } + ] + }, + { + "ID": 2779, + "SourceStructureID": 5530, + "TargetStructureID": 82619, + "Label": "5530-82619 via Unknown from 76529 -> 82620", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76529, + "TargetID": 82620, + "Directional": false + } + ] + }, + { + "ID": 2780, + "SourceStructureID": 82625, + "TargetStructureID": 5530, + "Label": "82625-5530 via Unknown from 82626 -> 76550", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82626, + "TargetID": 76550, + "Directional": false + } + ] + }, + { + "ID": 2781, + "SourceStructureID": 82628, + "TargetStructureID": 5530, + "Label": "82628-5530 via Unknown from 82629 -> 76748", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82629, + "TargetID": 76748, + "Directional": false + } + ] + }, + { + "ID": 2782, + "SourceStructureID": 5530, + "TargetStructureID": 82630, + "Label": "5530-82630 via Unknown from 76784 -> 82631", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76784, + "TargetID": 82631, + "Directional": false + } + ] + }, + { + "ID": 2783, + "SourceStructureID": 5530, + "TargetStructureID": 82632, + "Label": "5530-82632 via Unknown from 76791 -> 82633", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76791, + "TargetID": 82633, + "Directional": false + } + ] + }, + { + "ID": 2784, + "SourceStructureID": 5530, + "TargetStructureID": 82636, + "Label": "5530-82636 via Unknown from 77324 -> 82638", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77324, + "TargetID": 82638, + "Directional": false + } + ] + }, + { + "ID": 2785, + "SourceStructureID": 82643, + "TargetStructureID": 5530, + "Label": "82643-5530 via Unknown from 82648 -> 77326", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82648, + "TargetID": 77326, + "Directional": false + } + ] + }, + { + "ID": 2786, + "SourceStructureID": 82656, + "TargetStructureID": 5530, + "Label": "82656-5530 via Unknown from 82657 -> 77392", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82657, + "TargetID": 77392, + "Directional": false + } + ] + }, + { + "ID": 2787, + "SourceStructureID": 5530, + "TargetStructureID": 82664, + "Label": "5530-82664 via Unknown from 77402 -> 82672", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77402, + "TargetID": 82672, + "Directional": false + } + ] + }, + { + "ID": 2788, + "SourceStructureID": 5530, + "TargetStructureID": 82677, + "Label": "5530-82677 via Gap Junction from 77466 -> 82680", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 77466, + "TargetID": 82680, + "Directional": false + } + ] + }, + { + "ID": 2789, + "SourceStructureID": 82695, + "TargetStructureID": 5530, + "Label": "82695-5530 via Unknown from 82696 -> 77630", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82696, + "TargetID": 77630, + "Directional": false + } + ] + }, + { + "ID": 2790, + "SourceStructureID": 5530, + "TargetStructureID": 82827, + "Label": "5530-82827 via Unknown from 79060 -> 82828", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79060, + "TargetID": 82828, + "Directional": false + } + ] + }, + { + "ID": 2791, + "SourceStructureID": 82830, + "TargetStructureID": 5530, + "Label": "82830-5530 via Unknown from 82831 -> 79137", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82831, + "TargetID": 79137, + "Directional": false + } + ] + }, + { + "ID": 2792, + "SourceStructureID": 82832, + "TargetStructureID": 5530, + "Label": "82832-5530 via Unknown from 82833 -> 79157", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82833, + "TargetID": 79157, + "Directional": false + } + ] + }, + { + "ID": 2793, + "SourceStructureID": 82834, + "TargetStructureID": 5530, + "Label": "82834-5530 via Unknown from 82835 -> 79270", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82835, + "TargetID": 79270, + "Directional": false + } + ] + }, + { + "ID": 2794, + "SourceStructureID": 5530, + "TargetStructureID": 82848, + "Label": "5530-82848 via Unknown from 80404 -> 82849", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80404, + "TargetID": 82849, + "Directional": false + } + ] + }, + { + "ID": 2795, + "SourceStructureID": 82858, + "TargetStructureID": 5530, + "Label": "82858-5530 via Unknown from 82859 -> 80708", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82859, + "TargetID": 80708, + "Directional": false + } + ] + }, + { + "ID": 2796, + "SourceStructureID": 5530, + "TargetStructureID": 82887, + "Label": "5530-82887 via Unknown from 81186 -> 82888", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81186, + "TargetID": 82888, + "Directional": false + } + ] + }, + { + "ID": 2797, + "SourceStructureID": 82889, + "TargetStructureID": 5530, + "Label": "82889-5530 via Unknown from 82892 -> 81209", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82892, + "TargetID": 81209, + "Directional": false + } + ] + }, + { + "ID": 2798, + "SourceStructureID": 5530, + "TargetStructureID": 82894, + "Label": "5530-82894 via Unknown from 81210 -> 82895", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81210, + "TargetID": 82895, + "Directional": false + } + ] + }, + { + "ID": 2799, + "SourceStructureID": 5530, + "TargetStructureID": 82897, + "Label": "5530-82897 via Unknown from 81217 -> 82898", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81217, + "TargetID": 82898, + "Directional": false + } + ] + }, + { + "ID": 2800, + "SourceStructureID": 82901, + "TargetStructureID": 5530, + "Label": "82901-5530 via Unknown from 82902 -> 81626", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82902, + "TargetID": 81626, + "Directional": false + } + ] + }, + { + "ID": 2801, + "SourceStructureID": 82995, + "TargetStructureID": 5530, + "Label": "82995-5530 via Unknown from 82996 -> 81871", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82996, + "TargetID": 81871, + "Directional": false + } + ] + }, + { + "ID": 2802, + "SourceStructureID": 5530, + "TargetStructureID": 82997, + "Label": "5530-82997 via Unknown from 81879 -> 82998", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81879, + "TargetID": 82998, + "Directional": false + } + ] + }, + { + "ID": 2803, + "SourceStructureID": 5530, + "TargetStructureID": 82999, + "Label": "5530-82999 via Unknown from 81880 -> 83000", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81880, + "TargetID": 83000, + "Directional": false + } + ] + }, + { + "ID": 2804, + "SourceStructureID": 83045, + "TargetStructureID": 5530, + "Label": "83045-5530 via Unknown from 83046 -> 81203", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83046, + "TargetID": 81203, + "Directional": false + } + ] + }, + { + "ID": 2805, + "SourceStructureID": 5531, + "TargetStructureID": 5531, + "Label": "5531-5531 via Adherens from 54538 -> 54539, 147464 -> 147465", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54538, + "TargetID": 54539, + "Directional": false + }, + { + "SourceID": 147464, + "TargetID": 147465, + "Directional": false + } + ] + }, + { + "ID": 2806, + "SourceStructureID": 5531, + "TargetStructureID": 5535, + "Label": "5531-5535 via Gap Junction from 107705 -> 32352", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 107705, + "TargetID": 32352, + "Directional": false + } + ] + }, + { + "ID": 2807, + "SourceStructureID": 5601, + "TargetStructureID": 5531, + "Label": "5601-5531 via Adherens from 127133 -> 127134", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127133, + "TargetID": 127134, + "Directional": false + } + ] + }, + { + "ID": 2808, + "SourceStructureID": 5531, + "TargetStructureID": 5637, + "Label": "5531-5637 via Adherens from 147446 -> 147445", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147446, + "TargetID": 147445, + "Directional": false + } + ] + }, + { + "ID": 2809, + "SourceStructureID": 5637, + "TargetStructureID": 5531, + "Label": "5637-5531 via Gap Junction from 59571 -> 59570", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59571, + "TargetID": 59570, + "Directional": false + } + ] + }, + { + "ID": 2810, + "SourceStructureID": 5531, + "TargetStructureID": 7274, + "Label": "5531-7274 via Unknown from 107200 -> 107202", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107200, + "TargetID": 107202, + "Directional": false + } + ] + }, + { + "ID": 2811, + "SourceStructureID": 7576, + "TargetStructureID": 5531, + "Label": "7576-5531 via Adherens from 133920 -> 133919, 147459 -> 55055", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133920, + "TargetID": 133919, + "Directional": false + }, + { + "SourceID": 147459, + "TargetID": 55055, + "Directional": false + } + ] + }, + { + "ID": 2812, + "SourceStructureID": 7576, + "TargetStructureID": 5531, + "Label": "7576-5531 via Gap Junction from 54807 -> 54732, 54880 -> 54876, 55050 -> 55049, 133917 -> 133918", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54807, + "TargetID": 54732, + "Directional": false + }, + { + "SourceID": 54880, + "TargetID": 54876, + "Directional": false + }, + { + "SourceID": 55050, + "TargetID": 55049, + "Directional": false + }, + { + "SourceID": 133917, + "TargetID": 133918, + "Directional": false + } + ] + }, + { + "ID": 2813, + "SourceStructureID": 5531, + "TargetStructureID": 32405, + "Label": "5531-32405 via Adherens from 147430 -> 147431", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147430, + "TargetID": 147431, + "Directional": false + } + ] + }, + { + "ID": 2814, + "SourceStructureID": 32405, + "TargetStructureID": 5531, + "Label": "32405-5531 via Gap Junction from 91880 -> 91879", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91880, + "TargetID": 91879, + "Directional": false + } + ] + }, + { + "ID": 2815, + "SourceStructureID": 56802, + "TargetStructureID": 5531, + "Label": "56802-5531 via Adherens from 106900 -> 106901, 147439 -> 147440, 147442 -> 147441", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106900, + "TargetID": 106901, + "Directional": false + }, + { + "SourceID": 147439, + "TargetID": 147440, + "Directional": false + }, + { + "SourceID": 147442, + "TargetID": 147441, + "Directional": false + } + ] + }, + { + "ID": 2816, + "SourceStructureID": 5531, + "TargetStructureID": 56802, + "Label": "5531-56802 via Gap Junction from 54578 -> 107416, 107425 -> 54579", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54578, + "TargetID": 107416, + "Directional": false + }, + { + "SourceID": 107425, + "TargetID": 54579, + "Directional": false + } + ] + }, + { + "ID": 2817, + "SourceStructureID": 56802, + "TargetStructureID": 5531, + "Label": "56802-5531 via Unknown from 119620 -> 119619", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 119620, + "TargetID": 119619, + "Directional": false + } + ] + }, + { + "ID": 2818, + "SourceStructureID": 5531, + "TargetStructureID": 82897, + "Label": "5531-82897 via Adherens from 114827 -> 114826", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 114827, + "TargetID": 114826, + "Directional": false + } + ] + }, + { + "ID": 2819, + "SourceStructureID": 91913, + "TargetStructureID": 5531, + "Label": "91913-5531 via Adherens from 147452 -> 147453", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147452, + "TargetID": 147453, + "Directional": false + } + ] + }, + { + "ID": 2820, + "SourceStructureID": 91913, + "TargetStructureID": 5531, + "Label": "91913-5531 via Gap Junction from 93447 -> 91912", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93447, + "TargetID": 91912, + "Directional": false + } + ] + }, + { + "ID": 2821, + "SourceStructureID": 91918, + "TargetStructureID": 5531, + "Label": "91918-5531 via Unknown from 107578 -> 107577", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107578, + "TargetID": 107577, + "Directional": false + } + ] + }, + { + "ID": 2822, + "SourceStructureID": 5531, + "TargetStructureID": 91921, + "Label": "5531-91921 via Adherens from 107549 -> 107548", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107549, + "TargetID": 107548, + "Directional": false + } + ] + }, + { + "ID": 2823, + "SourceStructureID": 5531, + "TargetStructureID": 91959, + "Label": "5531-91959 via Adherens from 106146 -> 106145, 106147 -> 106148", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106146, + "TargetID": 106145, + "Directional": false + }, + { + "SourceID": 106147, + "TargetID": 106148, + "Directional": false + } + ] + }, + { + "ID": 2824, + "SourceStructureID": 5531, + "TargetStructureID": 91959, + "Label": "5531-91959 via Unknown from 128710 -> 128711, 147448 -> 147449", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128710, + "TargetID": 128711, + "Directional": false + }, + { + "SourceID": 147448, + "TargetID": 147449, + "Directional": false + } + ] + }, + { + "ID": 2825, + "SourceStructureID": 5531, + "TargetStructureID": 91994, + "Label": "5531-91994 via Unknown from 147435 -> 147436", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147435, + "TargetID": 147436, + "Directional": false + } + ] + }, + { + "ID": 2826, + "SourceStructureID": 93431, + "TargetStructureID": 5531, + "Label": "93431-5531 via Unknown from 147458 -> 147457", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147458, + "TargetID": 147457, + "Directional": false + } + ] + }, + { + "ID": 2827, + "SourceStructureID": 93437, + "TargetStructureID": 5531, + "Label": "93437-5531 via Adherens from 93438 -> 93436", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93438, + "TargetID": 93436, + "Directional": false + } + ] + }, + { + "ID": 2828, + "SourceStructureID": 95195, + "TargetStructureID": 5531, + "Label": "95195-5531 via Unknown from 114552 -> 114551", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114552, + "TargetID": 114551, + "Directional": false + } + ] + }, + { + "ID": 2829, + "SourceStructureID": 96240, + "TargetStructureID": 5531, + "Label": "96240-5531 via Unknown from 114555 -> 114554", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114555, + "TargetID": 114554, + "Directional": false + } + ] + }, + { + "ID": 2830, + "SourceStructureID": 5531, + "TargetStructureID": 96290, + "Label": "5531-96290 via Unknown from 147410 -> 147409", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147410, + "TargetID": 147409, + "Directional": false + } + ] + }, + { + "ID": 2831, + "SourceStructureID": 96895, + "TargetStructureID": 5531, + "Label": "96895-5531 via Adherens from 147422 -> 147421", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147422, + "TargetID": 147421, + "Directional": false + } + ] + }, + { + "ID": 2832, + "SourceStructureID": 5531, + "TargetStructureID": 96914, + "Label": "5531-96914 via Unknown from 133904 -> 107165", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133904, + "TargetID": 107165, + "Directional": false + } + ] + }, + { + "ID": 2833, + "SourceStructureID": 5531, + "TargetStructureID": 105258, + "Label": "5531-105258 via Unknown from 105261 -> 105260", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105261, + "TargetID": 105260, + "Directional": false + } + ] + }, + { + "ID": 2834, + "SourceStructureID": 106161, + "TargetStructureID": 5531, + "Label": "106161-5531 via Postsynapse from 106162 -> 106163", + "Type": "Postsynapse", + "Directional": false, + "Links": [ + { + "SourceID": 106162, + "TargetID": 106163, + "Directional": false + } + ] + }, + { + "ID": 2835, + "SourceStructureID": 106164, + "TargetStructureID": 5531, + "Label": "106164-5531 via Adherens from 106188 -> 106187", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106188, + "TargetID": 106187, + "Directional": false + } + ] + }, + { + "ID": 2836, + "SourceStructureID": 5531, + "TargetStructureID": 106172, + "Label": "5531-106172 via Unknown from 106173 -> 106174", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106173, + "TargetID": 106174, + "Directional": false + } + ] + }, + { + "ID": 2837, + "SourceStructureID": 106237, + "TargetStructureID": 5531, + "Label": "106237-5531 via Adherens from 147387 -> 147386", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147387, + "TargetID": 147386, + "Directional": false + } + ] + }, + { + "ID": 2838, + "SourceStructureID": 5531, + "TargetStructureID": 106237, + "Label": "5531-106237 via Unknown from 147389 -> 147388", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147389, + "TargetID": 147388, + "Directional": false + } + ] + }, + { + "ID": 2839, + "SourceStructureID": 5531, + "TargetStructureID": 106249, + "Label": "5531-106249 via Unknown from 147393 -> 147394", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147393, + "TargetID": 147394, + "Directional": false + } + ] + }, + { + "ID": 2840, + "SourceStructureID": 106502, + "TargetStructureID": 5531, + "Label": "106502-5531 via Adherens from 106504 -> 106503", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106504, + "TargetID": 106503, + "Directional": false + } + ] + }, + { + "ID": 2841, + "SourceStructureID": 106588, + "TargetStructureID": 5531, + "Label": "106588-5531 via Unknown from 147395 -> 147396", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147395, + "TargetID": 147396, + "Directional": false + } + ] + }, + { + "ID": 2842, + "SourceStructureID": 5531, + "TargetStructureID": 106651, + "Label": "5531-106651 via Unknown from 125868 -> 125869", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125868, + "TargetID": 125869, + "Directional": false + } + ] + }, + { + "ID": 2843, + "SourceStructureID": 5531, + "TargetStructureID": 106715, + "Label": "5531-106715 via Unknown from 106728 -> 106729, 106735 -> 106734", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106728, + "TargetID": 106729, + "Directional": false + }, + { + "SourceID": 106735, + "TargetID": 106734, + "Directional": false + } + ] + }, + { + "ID": 2844, + "SourceStructureID": 5531, + "TargetStructureID": 106922, + "Label": "5531-106922 via Unknown from 106948 -> 106947", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106948, + "TargetID": 106947, + "Directional": false + } + ] + }, + { + "ID": 2845, + "SourceStructureID": 106931, + "TargetStructureID": 5531, + "Label": "106931-5531 via Unknown from 106933 -> 106932", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106933, + "TargetID": 106932, + "Directional": false + } + ] + }, + { + "ID": 2846, + "SourceStructureID": 106935, + "TargetStructureID": 5531, + "Label": "106935-5531 via Unknown from 106938 -> 106939", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106938, + "TargetID": 106939, + "Directional": false + } + ] + }, + { + "ID": 2847, + "SourceStructureID": 5531, + "TargetStructureID": 107388, + "Label": "5531-107388 via Gap Junction from 107389 -> 107390", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 107389, + "TargetID": 107390, + "Directional": false + } + ] + }, + { + "ID": 2848, + "SourceStructureID": 5531, + "TargetStructureID": 107391, + "Label": "5531-107391 via Unknown from 107392 -> 107394", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107392, + "TargetID": 107394, + "Directional": false + } + ] + }, + { + "ID": 2849, + "SourceStructureID": 107420, + "TargetStructureID": 5531, + "Label": "107420-5531 via Adherens from 107421 -> 107422", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107421, + "TargetID": 107422, + "Directional": false + } + ] + }, + { + "ID": 2850, + "SourceStructureID": 107438, + "TargetStructureID": 5531, + "Label": "107438-5531 via Unknown from 107441 -> 107440", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107441, + "TargetID": 107440, + "Directional": false + } + ] + }, + { + "ID": 2851, + "SourceStructureID": 107570, + "TargetStructureID": 5531, + "Label": "107570-5531 via Unknown from 107572 -> 107571", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107572, + "TargetID": 107571, + "Directional": false + } + ] + }, + { + "ID": 2852, + "SourceStructureID": 5531, + "TargetStructureID": 107582, + "Label": "5531-107582 via Unknown from 107586 -> 107585", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107586, + "TargetID": 107585, + "Directional": false + } + ] + }, + { + "ID": 2853, + "SourceStructureID": 107587, + "TargetStructureID": 5531, + "Label": "107587-5531 via Unknown from 107590 -> 107589", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107590, + "TargetID": 107589, + "Directional": false + } + ] + }, + { + "ID": 2854, + "SourceStructureID": 5531, + "TargetStructureID": 107672, + "Label": "5531-107672 via Unknown from 107673 -> 107674", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107673, + "TargetID": 107674, + "Directional": false + } + ] + }, + { + "ID": 2855, + "SourceStructureID": 5531, + "TargetStructureID": 107683, + "Label": "5531-107683 via Unknown from 107685 -> 107684", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107685, + "TargetID": 107684, + "Directional": false + } + ] + }, + { + "ID": 2856, + "SourceStructureID": 107693, + "TargetStructureID": 5531, + "Label": "107693-5531 via Unknown from 147420 -> 147419", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147420, + "TargetID": 147419, + "Directional": false + } + ] + }, + { + "ID": 2857, + "SourceStructureID": 107699, + "TargetStructureID": 5531, + "Label": "107699-5531 via Adherens from 107702 -> 107701", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107702, + "TargetID": 107701, + "Directional": false + } + ] + }, + { + "ID": 2858, + "SourceStructureID": 5531, + "TargetStructureID": 107699, + "Label": "5531-107699 via Unknown from 107703 -> 107704", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107703, + "TargetID": 107704, + "Directional": false + } + ] + }, + { + "ID": 2859, + "SourceStructureID": 5531, + "TargetStructureID": 108045, + "Label": "5531-108045 via Unknown from 108058 -> 108055", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108058, + "TargetID": 108055, + "Directional": false + } + ] + }, + { + "ID": 2860, + "SourceStructureID": 110648, + "TargetStructureID": 5531, + "Label": "110648-5531 via Unknown from 110655 -> 110656", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110655, + "TargetID": 110656, + "Directional": false + } + ] + }, + { + "ID": 2861, + "SourceStructureID": 110649, + "TargetStructureID": 5531, + "Label": "110649-5531 via Unknown from 110651 -> 110650", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110651, + "TargetID": 110650, + "Directional": false + } + ] + }, + { + "ID": 2862, + "SourceStructureID": 110671, + "TargetStructureID": 5531, + "Label": "110671-5531 via Unknown from 110673 -> 110672", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110673, + "TargetID": 110672, + "Directional": false + } + ] + }, + { + "ID": 2863, + "SourceStructureID": 110676, + "TargetStructureID": 5531, + "Label": "110676-5531 via Unknown from 110677 -> 110678", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110677, + "TargetID": 110678, + "Directional": false + } + ] + }, + { + "ID": 2864, + "SourceStructureID": 5531, + "TargetStructureID": 110691, + "Label": "5531-110691 via Unknown from 110692 -> 110693", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110692, + "TargetID": 110693, + "Directional": false + } + ] + }, + { + "ID": 2865, + "SourceStructureID": 110694, + "TargetStructureID": 5531, + "Label": "110694-5531 via Unknown from 110695 -> 110696", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110695, + "TargetID": 110696, + "Directional": false + } + ] + }, + { + "ID": 2866, + "SourceStructureID": 110697, + "TargetStructureID": 5531, + "Label": "110697-5531 via Unknown from 110698 -> 110699", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110698, + "TargetID": 110699, + "Directional": false + } + ] + }, + { + "ID": 2867, + "SourceStructureID": 5531, + "TargetStructureID": 110700, + "Label": "5531-110700 via Unknown from 110702 -> 110701", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110702, + "TargetID": 110701, + "Directional": false + } + ] + }, + { + "ID": 2868, + "SourceStructureID": 110707, + "TargetStructureID": 5531, + "Label": "110707-5531 via Unknown from 110713 -> 110712", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110713, + "TargetID": 110712, + "Directional": false + } + ] + }, + { + "ID": 2869, + "SourceStructureID": 5531, + "TargetStructureID": 110714, + "Label": "5531-110714 via Unknown from 110719 -> 110718", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110719, + "TargetID": 110718, + "Directional": false + } + ] + }, + { + "ID": 2870, + "SourceStructureID": 5531, + "TargetStructureID": 110715, + "Label": "5531-110715 via Unknown from 110717 -> 110716", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110717, + "TargetID": 110716, + "Directional": false + } + ] + }, + { + "ID": 2871, + "SourceStructureID": 5531, + "TargetStructureID": 111842, + "Label": "5531-111842 via Unknown from 111844 -> 111845", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111844, + "TargetID": 111845, + "Directional": false + } + ] + }, + { + "ID": 2872, + "SourceStructureID": 5531, + "TargetStructureID": 111860, + "Label": "5531-111860 via Unknown from 111861 -> 111862", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111861, + "TargetID": 111862, + "Directional": false + } + ] + }, + { + "ID": 2873, + "SourceStructureID": 5531, + "TargetStructureID": 113841, + "Label": "5531-113841 via Unknown from 113840 -> 113842", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113840, + "TargetID": 113842, + "Directional": false + } + ] + }, + { + "ID": 2874, + "SourceStructureID": 114547, + "TargetStructureID": 5531, + "Label": "114547-5531 via Unknown from 114548 -> 114546", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114548, + "TargetID": 114546, + "Directional": false + } + ] + }, + { + "ID": 2875, + "SourceStructureID": 5531, + "TargetStructureID": 114692, + "Label": "5531-114692 via Unknown from 114694 -> 114693", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114694, + "TargetID": 114693, + "Directional": false + } + ] + }, + { + "ID": 2876, + "SourceStructureID": 5531, + "TargetStructureID": 114713, + "Label": "5531-114713 via Unknown from 114714 -> 114715, 114716 -> 114717", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114714, + "TargetID": 114715, + "Directional": false + }, + { + "SourceID": 114716, + "TargetID": 114717, + "Directional": false + } + ] + }, + { + "ID": 2877, + "SourceStructureID": 5531, + "TargetStructureID": 114734, + "Label": "5531-114734 via Unknown from 147428 -> 147427", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147428, + "TargetID": 147427, + "Directional": false + } + ] + }, + { + "ID": 2878, + "SourceStructureID": 5531, + "TargetStructureID": 114741, + "Label": "5531-114741 via Unknown from 114742 -> 114743", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114742, + "TargetID": 114743, + "Directional": false + } + ] + }, + { + "ID": 2879, + "SourceStructureID": 5531, + "TargetStructureID": 114760, + "Label": "5531-114760 via Unknown from 114759 -> 114762", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114759, + "TargetID": 114762, + "Directional": false + } + ] + }, + { + "ID": 2880, + "SourceStructureID": 120256, + "TargetStructureID": 5531, + "Label": "120256-5531 via Unknown from 133911 -> 107203", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133911, + "TargetID": 107203, + "Directional": false + } + ] + }, + { + "ID": 2881, + "SourceStructureID": 5531, + "TargetStructureID": 133891, + "Label": "5531-133891 via Unknown from 147433 -> 147434", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147433, + "TargetID": 147434, + "Directional": false + } + ] + }, + { + "ID": 2882, + "SourceStructureID": 5531, + "TargetStructureID": 147412, + "Label": "5531-147412 via Unknown from 147411 -> 147418, 147415 -> 147416", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147411, + "TargetID": 147418, + "Directional": false + }, + { + "SourceID": 147415, + "TargetID": 147416, + "Directional": false + } + ] + }, + { + "ID": 2883, + "SourceStructureID": 5535, + "TargetStructureID": 5534, + "Label": "5535-5534 via Gap Junction from 55255 -> 55254", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55255, + "TargetID": 55254, + "Directional": false + } + ] + }, + { + "ID": 2884, + "SourceStructureID": 5534, + "TargetStructureID": 5537, + "Label": "5534-5537 via Adherens from 118319 -> 118318", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 118319, + "TargetID": 118318, + "Directional": false + } + ] + }, + { + "ID": 2885, + "SourceStructureID": 5534, + "TargetStructureID": 5537, + "Label": "5534-5537 via Gap Junction from 117971 -> 117970, 117973 -> 117972, 118273 -> 118272, 118321 -> 118320, 118326 -> 118325, 118331 -> 118330, 118333 -> 118332", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117971, + "TargetID": 117970, + "Directional": false + }, + { + "SourceID": 117973, + "TargetID": 117972, + "Directional": false + }, + { + "SourceID": 118273, + "TargetID": 118272, + "Directional": false + }, + { + "SourceID": 118321, + "TargetID": 118320, + "Directional": false + }, + { + "SourceID": 118326, + "TargetID": 118325, + "Directional": false + }, + { + "SourceID": 118331, + "TargetID": 118330, + "Directional": false + }, + { + "SourceID": 118333, + "TargetID": 118332, + "Directional": false + } + ] + }, + { + "ID": 2886, + "SourceStructureID": 5601, + "TargetStructureID": 5534, + "Label": "5601-5534 via Adherens from 92992 -> 92991", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92992, + "TargetID": 92991, + "Directional": false + } + ] + }, + { + "ID": 2887, + "SourceStructureID": 5601, + "TargetStructureID": 5534, + "Label": "5601-5534 via Gap Junction from 57499 -> 54623, 58586 -> 54680", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57499, + "TargetID": 54623, + "Directional": false + }, + { + "SourceID": 58586, + "TargetID": 54680, + "Directional": false + } + ] + }, + { + "ID": 2888, + "SourceStructureID": 5606, + "TargetStructureID": 5534, + "Label": "5606-5534 via Gap Junction from 36932 -> 34674, 56519 -> 38945, 118337 -> 118336, 118338 -> 118339, 118340 -> 118341, 118347 -> 118346, 118349 -> 118348, 123115 -> 123116", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 36932, + "TargetID": 34674, + "Directional": false + }, + { + "SourceID": 56519, + "TargetID": 38945, + "Directional": false + }, + { + "SourceID": 118337, + "TargetID": 118336, + "Directional": false + }, + { + "SourceID": 118338, + "TargetID": 118339, + "Directional": false + }, + { + "SourceID": 118340, + "TargetID": 118341, + "Directional": false + }, + { + "SourceID": 118347, + "TargetID": 118346, + "Directional": false + }, + { + "SourceID": 118349, + "TargetID": 118348, + "Directional": false + }, + { + "SourceID": 123115, + "TargetID": 123116, + "Directional": false + } + ] + }, + { + "ID": 2889, + "SourceStructureID": 6127, + "TargetStructureID": 5534, + "Label": "6127-5534 via Gap Junction from 118297 -> 118296, 122616 -> 122615", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118297, + "TargetID": 118296, + "Directional": false + }, + { + "SourceID": 122616, + "TargetID": 122615, + "Directional": false + } + ] + }, + { + "ID": 2890, + "SourceStructureID": 7225, + "TargetStructureID": 5534, + "Label": "7225-5534 via Gap Junction from 118276 -> 118277, 118285 -> 118284", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118276, + "TargetID": 118277, + "Directional": false + }, + { + "SourceID": 118285, + "TargetID": 118284, + "Directional": false + } + ] + }, + { + "ID": 2891, + "SourceStructureID": 5534, + "TargetStructureID": 7279, + "Label": "5534-7279 via Gap Junction from 34673 -> 34739", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 34673, + "TargetID": 34739, + "Directional": false + } + ] + }, + { + "ID": 2892, + "SourceStructureID": 5534, + "TargetStructureID": 11229, + "Label": "5534-11229 via Gap Junction from 118323 -> 118324", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118323, + "TargetID": 118324, + "Directional": false + } + ] + }, + { + "ID": 2893, + "SourceStructureID": 5534, + "TargetStructureID": 25155, + "Label": "5534-25155 via Gap Junction from 34643 -> 34642, 118278 -> 118279, 118282 -> 118280", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 34643, + "TargetID": 34642, + "Directional": false + }, + { + "SourceID": 118278, + "TargetID": 118279, + "Directional": false + }, + { + "SourceID": 118282, + "TargetID": 118280, + "Directional": false + } + ] + }, + { + "ID": 2894, + "SourceStructureID": 53828, + "TargetStructureID": 5534, + "Label": "53828-5534 via Gap Junction from 118345 -> 118344", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118345, + "TargetID": 118344, + "Directional": false + } + ] + }, + { + "ID": 2895, + "SourceStructureID": 77625, + "TargetStructureID": 5534, + "Label": "77625-5534 via Adherens from 135572 -> 135571", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135572, + "TargetID": 135571, + "Directional": false + } + ] + }, + { + "ID": 2896, + "SourceStructureID": 5534, + "TargetStructureID": 118301, + "Label": "5534-118301 via Gap Junction from 118299 -> 118305, 118304 -> 118300", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118299, + "TargetID": 118305, + "Directional": false + }, + { + "SourceID": 118304, + "TargetID": 118300, + "Directional": false + } + ] + }, + { + "ID": 2897, + "SourceStructureID": 5535, + "TargetStructureID": 5537, + "Label": "5535-5537 via Gap Junction from 38183 -> 38184, 59580 -> 59575, 82497 -> 82498, 118269 -> 118268, 122946 -> 122947, 122959 -> 122960, 122985 -> 122986, 122988 -> 122987", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38183, + "TargetID": 38184, + "Directional": false + }, + { + "SourceID": 59580, + "TargetID": 59575, + "Directional": false + }, + { + "SourceID": 82497, + "TargetID": 82498, + "Directional": false + }, + { + "SourceID": 118269, + "TargetID": 118268, + "Directional": false + }, + { + "SourceID": 122946, + "TargetID": 122947, + "Directional": false + }, + { + "SourceID": 122959, + "TargetID": 122960, + "Directional": false + }, + { + "SourceID": 122985, + "TargetID": 122986, + "Directional": false + }, + { + "SourceID": 122988, + "TargetID": 122987, + "Directional": false + } + ] + }, + { + "ID": 2898, + "SourceStructureID": 5535, + "TargetStructureID": 5608, + "Label": "5535-5608 via Gap Junction from 121845 -> 121844", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121845, + "TargetID": 121844, + "Directional": false + } + ] + }, + { + "ID": 2899, + "SourceStructureID": 5637, + "TargetStructureID": 5535, + "Label": "5637-5535 via Gap Junction from 56006 -> 59574", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56006, + "TargetID": 59574, + "Directional": false + } + ] + }, + { + "ID": 2900, + "SourceStructureID": 5535, + "TargetStructureID": 6909, + "Label": "5535-6909 via Gap Junction from 122689 -> 122687, 122953 -> 122952", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122689, + "TargetID": 122687, + "Directional": false + }, + { + "SourceID": 122953, + "TargetID": 122952, + "Directional": false + } + ] + }, + { + "ID": 2901, + "SourceStructureID": 6964, + "TargetStructureID": 5535, + "Label": "6964-5535 via Gap Junction from 122951 -> 122950", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122951, + "TargetID": 122950, + "Directional": false + } + ] + }, + { + "ID": 2902, + "SourceStructureID": 6965, + "TargetStructureID": 5535, + "Label": "6965-5535 via Gap Junction from 122998 -> 122982, 123004 -> 122992, 123006 -> 123007", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122998, + "TargetID": 122982, + "Directional": false + }, + { + "SourceID": 123004, + "TargetID": 122992, + "Directional": false + }, + { + "SourceID": 123006, + "TargetID": 123007, + "Directional": false + } + ] + }, + { + "ID": 2903, + "SourceStructureID": 5535, + "TargetStructureID": 7225, + "Label": "5535-7225 via Gap Junction from 38440 -> 38441, 122980 -> 122981", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38440, + "TargetID": 38441, + "Directional": false + }, + { + "SourceID": 122980, + "TargetID": 122981, + "Directional": false + } + ] + }, + { + "ID": 2904, + "SourceStructureID": 7345, + "TargetStructureID": 5535, + "Label": "7345-5535 via Gap Junction from 47840 -> 122954", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47840, + "TargetID": 122954, + "Directional": false + } + ] + }, + { + "ID": 2905, + "SourceStructureID": 5535, + "TargetStructureID": 11229, + "Label": "5535-11229 via Gap Junction from 32349 -> 28977", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 32349, + "TargetID": 28977, + "Directional": false + } + ] + }, + { + "ID": 2906, + "SourceStructureID": 25155, + "TargetStructureID": 5535, + "Label": "25155-5535 via Gap Junction from 122983 -> 122984, 122990 -> 122991", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122983, + "TargetID": 122984, + "Directional": false + }, + { + "SourceID": 122990, + "TargetID": 122991, + "Directional": false + } + ] + }, + { + "ID": 2907, + "SourceStructureID": 5536, + "TargetStructureID": 5536, + "Label": "5536-5536 via Gap Junction from 121918 -> 121920", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121918, + "TargetID": 121920, + "Directional": false + } + ] + }, + { + "ID": 2908, + "SourceStructureID": 7225, + "TargetStructureID": 5536, + "Label": "7225-5536 via Gap Junction from 158865 -> 122501", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 158865, + "TargetID": 122501, + "Directional": false + } + ] + }, + { + "ID": 2909, + "SourceStructureID": 19571, + "TargetStructureID": 5536, + "Label": "19571-5536 via Adherens from 22710 -> 22703", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 22710, + "TargetID": 22703, + "Directional": false + } + ] + }, + { + "ID": 2910, + "SourceStructureID": 121913, + "TargetStructureID": 5536, + "Label": "121913-5536 via Gap Junction from 121914 -> 116945", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121914, + "TargetID": 116945, + "Directional": false + } + ] + }, + { + "ID": 2911, + "SourceStructureID": 121916, + "TargetStructureID": 5536, + "Label": "121916-5536 via Gap Junction from 121917 -> 121915", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121917, + "TargetID": 121915, + "Directional": false + } + ] + }, + { + "ID": 2912, + "SourceStructureID": 5537, + "TargetStructureID": 5606, + "Label": "5537-5606 via Gap Junction from 120584 -> 44264", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120584, + "TargetID": 44264, + "Directional": false + } + ] + }, + { + "ID": 2913, + "SourceStructureID": 25155, + "TargetStructureID": 5537, + "Label": "25155-5537 via Adherens from 38194 -> 38193", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 38194, + "TargetID": 38193, + "Directional": false + } + ] + }, + { + "ID": 2914, + "SourceStructureID": 25155, + "TargetStructureID": 5537, + "Label": "25155-5537 via Gap Junction from 38186 -> 38185, 38191 -> 38192, 38196 -> 38197", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38186, + "TargetID": 38185, + "Directional": false + }, + { + "SourceID": 38191, + "TargetID": 38192, + "Directional": false + }, + { + "SourceID": 38196, + "TargetID": 38197, + "Directional": false + } + ] + }, + { + "ID": 2915, + "SourceStructureID": 7564, + "TargetStructureID": 5541, + "Label": "7564-5541 via Gap Junction from 118940 -> 118939, 118942 -> 118941", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118940, + "TargetID": 118939, + "Directional": false + }, + { + "SourceID": 118942, + "TargetID": 118941, + "Directional": false + } + ] + }, + { + "ID": 2916, + "SourceStructureID": 19383, + "TargetStructureID": 5541, + "Label": "19383-5541 via Adherens from 38831 -> 38830", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 38831, + "TargetID": 38830, + "Directional": false + } + ] + }, + { + "ID": 2917, + "SourceStructureID": 130365, + "TargetStructureID": 5542, + "Label": "130365-5542 via Adherens from 130366 -> 130364", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130366, + "TargetID": 130364, + "Directional": false + } + ] + }, + { + "ID": 2918, + "SourceStructureID": 11092, + "TargetStructureID": 5543, + "Label": "11092-5543 via Gap Junction from 129520 -> 123343, 136324 -> 136323", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 129520, + "TargetID": 123343, + "Directional": false + }, + { + "SourceID": 136324, + "TargetID": 136323, + "Directional": false + } + ] + }, + { + "ID": 2919, + "SourceStructureID": 5544, + "TargetStructureID": 7564, + "Label": "5544-7564 via Unknown from 123788 -> 123787", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 123788, + "TargetID": 123787, + "Directional": false + } + ] + }, + { + "ID": 2920, + "SourceStructureID": 13525, + "TargetStructureID": 5544, + "Label": "13525-5544 via Unknown from 158493 -> 158492", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 158493, + "TargetID": 158492, + "Directional": false + } + ] + }, + { + "ID": 2921, + "SourceStructureID": 5545, + "TargetStructureID": 10963, + "Label": "5545-10963 via Gap Junction from 158489 -> 158490", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 158489, + "TargetID": 158490, + "Directional": false + } + ] + }, + { + "ID": 2922, + "SourceStructureID": 5551, + "TargetStructureID": 5636, + "Label": "5551-5636 via Gap Junction from 116934 -> 116935", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116934, + "TargetID": 116935, + "Directional": false + } + ] + }, + { + "ID": 2923, + "SourceStructureID": 5551, + "TargetStructureID": 7279, + "Label": "5551-7279 via Cistern Pre from 116917 -> 116918", + "Type": "Cistern Pre", + "Directional": false, + "Links": [ + { + "SourceID": 116917, + "TargetID": 116918, + "Directional": false + } + ] + }, + { + "ID": 2924, + "SourceStructureID": 5556, + "TargetStructureID": 34888, + "Label": "5556-34888 via Touch from 34891 -> 34890", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 34891, + "TargetID": 34890, + "Directional": false + } + ] + }, + { + "ID": 2925, + "SourceStructureID": 5561, + "TargetStructureID": 5561, + "Label": "5561-5561 via Gap Junction from 148189 -> 148190", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 148189, + "TargetID": 148190, + "Directional": false + } + ] + }, + { + "ID": 2926, + "SourceStructureID": 5562, + "TargetStructureID": 5561, + "Label": "5562-5561 via Touch from 148272 -> 148273", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 148272, + "TargetID": 148273, + "Directional": false + } + ] + }, + { + "ID": 2927, + "SourceStructureID": 5565, + "TargetStructureID": 5561, + "Label": "5565-5561 via Adherens from 148158 -> 148159", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148158, + "TargetID": 148159, + "Directional": false + } + ] + }, + { + "ID": 2928, + "SourceStructureID": 5565, + "TargetStructureID": 5561, + "Label": "5565-5561 via Gap Junction from 50283 -> 50282, 54005 -> 54004, 97426 -> 97424, 97430 -> 97429, 97442 -> 97441, 119256 -> 119255, 148188 -> 148187, 148202 -> 148203, 148267 -> 148268", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50283, + "TargetID": 50282, + "Directional": false + }, + { + "SourceID": 54005, + "TargetID": 54004, + "Directional": false + }, + { + "SourceID": 97426, + "TargetID": 97424, + "Directional": false + }, + { + "SourceID": 97430, + "TargetID": 97429, + "Directional": false + }, + { + "SourceID": 97442, + "TargetID": 97441, + "Directional": false + }, + { + "SourceID": 119256, + "TargetID": 119255, + "Directional": false + }, + { + "SourceID": 148188, + "TargetID": 148187, + "Directional": false + }, + { + "SourceID": 148202, + "TargetID": 148203, + "Directional": false + }, + { + "SourceID": 148267, + "TargetID": 148268, + "Directional": false + } + ] + }, + { + "ID": 2929, + "SourceStructureID": 5568, + "TargetStructureID": 5561, + "Label": "5568-5561 via Gap Junction from 96753 -> 96752, 121247 -> 121246", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96753, + "TargetID": 96752, + "Directional": false + }, + { + "SourceID": 121247, + "TargetID": 121246, + "Directional": false + } + ] + }, + { + "ID": 2930, + "SourceStructureID": 5561, + "TargetStructureID": 6117, + "Label": "5561-6117 via Touch from 147482 -> 147483", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 147482, + "TargetID": 147483, + "Directional": false + } + ] + }, + { + "ID": 2931, + "SourceStructureID": 7024, + "TargetStructureID": 5561, + "Label": "7024-5561 via Adherens from 114366 -> 114367", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 114366, + "TargetID": 114367, + "Directional": false + } + ] + }, + { + "ID": 2932, + "SourceStructureID": 7024, + "TargetStructureID": 5561, + "Label": "7024-5561 via Gap Junction from 45178 -> 45177, 93898 -> 93896", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45178, + "TargetID": 45177, + "Directional": false + }, + { + "SourceID": 93898, + "TargetID": 93896, + "Directional": false + } + ] + }, + { + "ID": 2933, + "SourceStructureID": 7024, + "TargetStructureID": 5561, + "Label": "7024-5561 via Touch from 148217 -> 148216", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 148217, + "TargetID": 148216, + "Directional": false + } + ] + }, + { + "ID": 2934, + "SourceStructureID": 7050, + "TargetStructureID": 5561, + "Label": "7050-5561 via Adherens from 148261 -> 148260", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148261, + "TargetID": 148260, + "Directional": false + } + ] + }, + { + "ID": 2935, + "SourceStructureID": 5561, + "TargetStructureID": 7050, + "Label": "5561-7050 via Gap Junction from 148262 -> 14313", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 148262, + "TargetID": 14313, + "Directional": false + } + ] + }, + { + "ID": 2936, + "SourceStructureID": 8037, + "TargetStructureID": 5561, + "Label": "8037-5561 via Adherens from 148149 -> 148148", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148149, + "TargetID": 148148, + "Directional": false + } + ] + }, + { + "ID": 2937, + "SourceStructureID": 8037, + "TargetStructureID": 5561, + "Label": "8037-5561 via Gap Junction from 29899 -> 29898, 48966 -> 48965, 49481 -> 49482, 148177 -> 148176", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29899, + "TargetID": 29898, + "Directional": false + }, + { + "SourceID": 48966, + "TargetID": 48965, + "Directional": false + }, + { + "SourceID": 49481, + "TargetID": 49482, + "Directional": false + }, + { + "SourceID": 148177, + "TargetID": 148176, + "Directional": false + } + ] + }, + { + "ID": 2938, + "SourceStructureID": 5561, + "TargetStructureID": 12897, + "Label": "5561-12897 via Gap Junction from 46185 -> 49636", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46185, + "TargetID": 49636, + "Directional": false + } + ] + }, + { + "ID": 2939, + "SourceStructureID": 20136, + "TargetStructureID": 5561, + "Label": "20136-5561 via Adherens from 119291 -> 119290, 135794 -> 135793, 135801 -> 135802", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 119291, + "TargetID": 119290, + "Directional": false + }, + { + "SourceID": 135794, + "TargetID": 135793, + "Directional": false + }, + { + "SourceID": 135801, + "TargetID": 135802, + "Directional": false + } + ] + }, + { + "ID": 2940, + "SourceStructureID": 5561, + "TargetStructureID": 20136, + "Label": "5561-20136 via Gap Junction from 46046 -> 29124, 96953 -> 96952, 97689 -> 97688, 115380 -> 115378, 119285 -> 119286", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46046, + "TargetID": 29124, + "Directional": false + }, + { + "SourceID": 96953, + "TargetID": 96952, + "Directional": false + }, + { + "SourceID": 97689, + "TargetID": 97688, + "Directional": false + }, + { + "SourceID": 115380, + "TargetID": 115378, + "Directional": false + }, + { + "SourceID": 119285, + "TargetID": 119286, + "Directional": false + } + ] + }, + { + "ID": 2941, + "SourceStructureID": 5561, + "TargetStructureID": 96855, + "Label": "5561-96855 via Adherens from 115215 -> 115216", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115215, + "TargetID": 115216, + "Directional": false + } + ] + }, + { + "ID": 2942, + "SourceStructureID": 96964, + "TargetStructureID": 5561, + "Label": "96964-5561 via Adherens from 96966 -> 96963", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96966, + "TargetID": 96963, + "Directional": false + } + ] + }, + { + "ID": 2943, + "SourceStructureID": 96976, + "TargetStructureID": 5561, + "Label": "96976-5561 via Adherens from 96979 -> 96978", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 96979, + "TargetID": 96978, + "Directional": false + } + ] + }, + { + "ID": 2944, + "SourceStructureID": 96993, + "TargetStructureID": 5561, + "Label": "96993-5561 via Gap Junction from 96994 -> 96992", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96994, + "TargetID": 96992, + "Directional": false + } + ] + }, + { + "ID": 2945, + "SourceStructureID": 5561, + "TargetStructureID": 97012, + "Label": "5561-97012 via Adherens from 97010 -> 97013", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97010, + "TargetID": 97013, + "Directional": false + } + ] + }, + { + "ID": 2946, + "SourceStructureID": 97025, + "TargetStructureID": 5561, + "Label": "97025-5561 via Unknown from 97028 -> 97027", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97028, + "TargetID": 97027, + "Directional": false + } + ] + }, + { + "ID": 2947, + "SourceStructureID": 97029, + "TargetStructureID": 5561, + "Label": "97029-5561 via Unknown from 97030 -> 97027", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97030, + "TargetID": 97027, + "Directional": false + } + ] + }, + { + "ID": 2948, + "SourceStructureID": 97159, + "TargetStructureID": 5561, + "Label": "97159-5561 via Gap Junction from 97160 -> 97144", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 97160, + "TargetID": 97144, + "Directional": false + } + ] + }, + { + "ID": 2949, + "SourceStructureID": 5561, + "TargetStructureID": 97308, + "Label": "5561-97308 via Unknown from 97320 -> 97319", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97320, + "TargetID": 97319, + "Directional": false + } + ] + }, + { + "ID": 2950, + "SourceStructureID": 5561, + "TargetStructureID": 97352, + "Label": "5561-97352 via Gap Junction from 46120 -> 97353", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46120, + "TargetID": 97353, + "Directional": false + } + ] + }, + { + "ID": 2951, + "SourceStructureID": 97407, + "TargetStructureID": 5561, + "Label": "97407-5561 via Adherens from 97412 -> 97410", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 97412, + "TargetID": 97410, + "Directional": false + } + ] + }, + { + "ID": 2952, + "SourceStructureID": 5561, + "TargetStructureID": 97457, + "Label": "5561-97457 via Unknown from 97460 -> 97459", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97460, + "TargetID": 97459, + "Directional": false + } + ] + }, + { + "ID": 2953, + "SourceStructureID": 5561, + "TargetStructureID": 97486, + "Label": "5561-97486 via Adherens from 115209 -> 115210", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115209, + "TargetID": 115210, + "Directional": false + } + ] + }, + { + "ID": 2954, + "SourceStructureID": 97657, + "TargetStructureID": 5561, + "Label": "97657-5561 via Unknown from 97658 -> 97656", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97658, + "TargetID": 97656, + "Directional": false + } + ] + }, + { + "ID": 2955, + "SourceStructureID": 115206, + "TargetStructureID": 5561, + "Label": "115206-5561 via Unknown from 130130 -> 130129", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130130, + "TargetID": 130129, + "Directional": false + } + ] + }, + { + "ID": 2956, + "SourceStructureID": 5562, + "TargetStructureID": 5562, + "Label": "5562-5562 via Gap Junction from 134645 -> 134644", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 134645, + "TargetID": 134644, + "Directional": false + } + ] + }, + { + "ID": 2957, + "SourceStructureID": 5562, + "TargetStructureID": 5623, + "Label": "5562-5623 via Gap Junction from 48462 -> 40359, 63537 -> 63540", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48462, + "TargetID": 40359, + "Directional": false + }, + { + "SourceID": 63537, + "TargetID": 63540, + "Directional": false + } + ] + }, + { + "ID": 2958, + "SourceStructureID": 5649, + "TargetStructureID": 5562, + "Label": "5649-5562 via Adherens from 80301 -> 80302, 80337 -> 80336", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80301, + "TargetID": 80302, + "Directional": false + }, + { + "SourceID": 80337, + "TargetID": 80336, + "Directional": false + } + ] + }, + { + "ID": 2959, + "SourceStructureID": 5562, + "TargetStructureID": 5649, + "Label": "5562-5649 via Gap Junction from 63241 -> 63240, 100704 -> 100705", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63241, + "TargetID": 63240, + "Directional": false + }, + { + "SourceID": 100704, + "TargetID": 100705, + "Directional": false + } + ] + }, + { + "ID": 2960, + "SourceStructureID": 5916, + "TargetStructureID": 5562, + "Label": "5916-5562 via Gap Junction from 54190 -> 54188, 63136 -> 63137", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54190, + "TargetID": 54188, + "Directional": false + }, + { + "SourceID": 63136, + "TargetID": 63137, + "Directional": false + } + ] + }, + { + "ID": 2961, + "SourceStructureID": 5562, + "TargetStructureID": 6997, + "Label": "5562-6997 via Adherens from 135119 -> 135118", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135119, + "TargetID": 135118, + "Directional": false + } + ] + }, + { + "ID": 2962, + "SourceStructureID": 6997, + "TargetStructureID": 5562, + "Label": "6997-5562 via Gap Junction from 63939 -> 48974, 99170 -> 99169", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63939, + "TargetID": 48974, + "Directional": false + }, + { + "SourceID": 99170, + "TargetID": 99169, + "Directional": false + } + ] + }, + { + "ID": 2963, + "SourceStructureID": 5562, + "TargetStructureID": 7050, + "Label": "5562-7050 via Gap Junction from 80243 -> 80242, 80257 -> 80258, 134641 -> 134640, 134653 -> 134652", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 80243, + "TargetID": 80242, + "Directional": false + }, + { + "SourceID": 80257, + "TargetID": 80258, + "Directional": false + }, + { + "SourceID": 134641, + "TargetID": 134640, + "Directional": false + }, + { + "SourceID": 134653, + "TargetID": 134652, + "Directional": false + } + ] + }, + { + "ID": 2964, + "SourceStructureID": 5562, + "TargetStructureID": 8037, + "Label": "5562-8037 via Adherens from 78642 -> 78643, 135126 -> 135125, 135141 -> 135140", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78642, + "TargetID": 78643, + "Directional": false + }, + { + "SourceID": 135126, + "TargetID": 135125, + "Directional": false + }, + { + "SourceID": 135141, + "TargetID": 135140, + "Directional": false + } + ] + }, + { + "ID": 2965, + "SourceStructureID": 5562, + "TargetStructureID": 8037, + "Label": "5562-8037 via Gap Junction from 31056 -> 24601, 48941 -> 48940, 49538 -> 49007, 63670 -> 14326, 63864 -> 49104, 78640 -> 78641, 134466 -> 134465, 134498 -> 134499", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 31056, + "TargetID": 24601, + "Directional": false + }, + { + "SourceID": 48941, + "TargetID": 48940, + "Directional": false + }, + { + "SourceID": 49538, + "TargetID": 49007, + "Directional": false + }, + { + "SourceID": 63670, + "TargetID": 14326, + "Directional": false + }, + { + "SourceID": 63864, + "TargetID": 49104, + "Directional": false + }, + { + "SourceID": 78640, + "TargetID": 78641, + "Directional": false + }, + { + "SourceID": 134466, + "TargetID": 134465, + "Directional": false + }, + { + "SourceID": 134498, + "TargetID": 134499, + "Directional": false + } + ] + }, + { + "ID": 2966, + "SourceStructureID": 5562, + "TargetStructureID": 8576, + "Label": "5562-8576 via Unknown from 77752 -> 77753, 77902 -> 77903", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77752, + "TargetID": 77753, + "Directional": false + }, + { + "SourceID": 77902, + "TargetID": 77903, + "Directional": false + } + ] + }, + { + "ID": 2967, + "SourceStructureID": 5562, + "TargetStructureID": 11531, + "Label": "5562-11531 via Unknown from 78160 -> 78161", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78160, + "TargetID": 78161, + "Directional": false + } + ] + }, + { + "ID": 2968, + "SourceStructureID": 5562, + "TargetStructureID": 12897, + "Label": "5562-12897 via Adherens from 135133 -> 135132", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135133, + "TargetID": 135132, + "Directional": false + } + ] + }, + { + "ID": 2969, + "SourceStructureID": 12897, + "TargetStructureID": 5562, + "Label": "12897-5562 via Gap Junction from 24675 -> 47290, 25323 -> 25322, 63248 -> 63247", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24675, + "TargetID": 47290, + "Directional": false + }, + { + "SourceID": 25323, + "TargetID": 25322, + "Directional": false + }, + { + "SourceID": 63248, + "TargetID": 63247, + "Directional": false + } + ] + }, + { + "ID": 2970, + "SourceStructureID": 5562, + "TargetStructureID": 31024, + "Label": "5562-31024 via Adherens from 76376 -> 76377, 76412 -> 76411, 78451 -> 78452", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76376, + "TargetID": 76377, + "Directional": false + }, + { + "SourceID": 76412, + "TargetID": 76411, + "Directional": false + }, + { + "SourceID": 78451, + "TargetID": 78452, + "Directional": false + } + ] + }, + { + "ID": 2971, + "SourceStructureID": 31024, + "TargetStructureID": 5562, + "Label": "31024-5562 via Unknown from 77818 -> 77819, 78447 -> 78448", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77818, + "TargetID": 77819, + "Directional": false + }, + { + "SourceID": 78447, + "TargetID": 78448, + "Directional": false + } + ] + }, + { + "ID": 2972, + "SourceStructureID": 5562, + "TargetStructureID": 36516, + "Label": "5562-36516 via Unknown from 79663 -> 79664", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79663, + "TargetID": 79664, + "Directional": false + } + ] + }, + { + "ID": 2973, + "SourceStructureID": 58696, + "TargetStructureID": 5562, + "Label": "58696-5562 via Unknown from 134484 -> 79215", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134484, + "TargetID": 79215, + "Directional": false + } + ] + }, + { + "ID": 2974, + "SourceStructureID": 61816, + "TargetStructureID": 5562, + "Label": "61816-5562 via Adherens from 80726 -> 77195, 80728 -> 76441", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80726, + "TargetID": 77195, + "Directional": false + }, + { + "SourceID": 80728, + "TargetID": 76441, + "Directional": false + } + ] + }, + { + "ID": 2975, + "SourceStructureID": 5562, + "TargetStructureID": 61816, + "Label": "5562-61816 via Unknown from 80732 -> 80733", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80732, + "TargetID": 80733, + "Directional": false + } + ] + }, + { + "ID": 2976, + "SourceStructureID": 63371, + "TargetStructureID": 5562, + "Label": "63371-5562 via Adherens from 63739 -> 63738, 63903 -> 63902", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63739, + "TargetID": 63738, + "Directional": false + }, + { + "SourceID": 63903, + "TargetID": 63902, + "Directional": false + } + ] + }, + { + "ID": 2977, + "SourceStructureID": 65369, + "TargetStructureID": 5562, + "Label": "65369-5562 via Unknown from 78914 -> 78915", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78914, + "TargetID": 78915, + "Directional": false + } + ] + }, + { + "ID": 2978, + "SourceStructureID": 5562, + "TargetStructureID": 67269, + "Label": "5562-67269 via Adherens from 80289 -> 80288", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80289, + "TargetID": 80288, + "Directional": false + } + ] + }, + { + "ID": 2979, + "SourceStructureID": 5562, + "TargetStructureID": 67269, + "Label": "5562-67269 via Unknown from 80277 -> 80278", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80277, + "TargetID": 80278, + "Directional": false + } + ] + }, + { + "ID": 2980, + "SourceStructureID": 67469, + "TargetStructureID": 5562, + "Label": "67469-5562 via Unknown from 78795 -> 78794", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78795, + "TargetID": 78794, + "Directional": false + } + ] + }, + { + "ID": 2981, + "SourceStructureID": 67705, + "TargetStructureID": 5562, + "Label": "67705-5562 via Adherens from 81797 -> 77558", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81797, + "TargetID": 77558, + "Directional": false + } + ] + }, + { + "ID": 2982, + "SourceStructureID": 68188, + "TargetStructureID": 5562, + "Label": "68188-5562 via Adherens from 77585 -> 77586", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77585, + "TargetID": 77586, + "Directional": false + } + ] + }, + { + "ID": 2983, + "SourceStructureID": 5562, + "TargetStructureID": 68188, + "Label": "5562-68188 via Unknown from 77587 -> 77588", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77587, + "TargetID": 77588, + "Directional": false + } + ] + }, + { + "ID": 2984, + "SourceStructureID": 68480, + "TargetStructureID": 5562, + "Label": "68480-5562 via Adherens from 84036 -> 76685, 84047 -> 77155", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84036, + "TargetID": 76685, + "Directional": false + }, + { + "SourceID": 84047, + "TargetID": 77155, + "Directional": false + } + ] + }, + { + "ID": 2985, + "SourceStructureID": 68480, + "TargetStructureID": 5562, + "Label": "68480-5562 via Unknown from 84037 -> 76692, 116711 -> 76926, 134314 -> 76686", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84037, + "TargetID": 76692, + "Directional": false + }, + { + "SourceID": 116711, + "TargetID": 76926, + "Directional": false + }, + { + "SourceID": 134314, + "TargetID": 76686, + "Directional": false + } + ] + }, + { + "ID": 2986, + "SourceStructureID": 69537, + "TargetStructureID": 5562, + "Label": "69537-5562 via Touch from 69617 -> 69618", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 69617, + "TargetID": 69618, + "Directional": false + } + ] + }, + { + "ID": 2987, + "SourceStructureID": 76255, + "TargetStructureID": 5562, + "Label": "76255-5562 via Unknown from 135129 -> 135128", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135129, + "TargetID": 135128, + "Directional": false + } + ] + }, + { + "ID": 2988, + "SourceStructureID": 76257, + "TargetStructureID": 5562, + "Label": "76257-5562 via Adherens from 76258 -> 76259", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76258, + "TargetID": 76259, + "Directional": false + } + ] + }, + { + "ID": 2989, + "SourceStructureID": 5562, + "TargetStructureID": 76286, + "Label": "5562-76286 via Unknown from 76285 -> 76287", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76285, + "TargetID": 76287, + "Directional": false + } + ] + }, + { + "ID": 2990, + "SourceStructureID": 76288, + "TargetStructureID": 5562, + "Label": "76288-5562 via Unknown from 76289 -> 76290", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76289, + "TargetID": 76290, + "Directional": false + } + ] + }, + { + "ID": 2991, + "SourceStructureID": 76302, + "TargetStructureID": 5562, + "Label": "76302-5562 via Adherens from 76303 -> 76304", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76303, + "TargetID": 76304, + "Directional": false + } + ] + }, + { + "ID": 2992, + "SourceStructureID": 76315, + "TargetStructureID": 5562, + "Label": "76315-5562 via Unknown from 76316 -> 76314", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76316, + "TargetID": 76314, + "Directional": false + } + ] + }, + { + "ID": 2993, + "SourceStructureID": 76332, + "TargetStructureID": 5562, + "Label": "76332-5562 via Unknown from 76333 -> 76331", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76333, + "TargetID": 76331, + "Directional": false + } + ] + }, + { + "ID": 2994, + "SourceStructureID": 5562, + "TargetStructureID": 76334, + "Label": "5562-76334 via Adherens from 54193 -> 76335", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54193, + "TargetID": 76335, + "Directional": false + } + ] + }, + { + "ID": 2995, + "SourceStructureID": 76340, + "TargetStructureID": 5562, + "Label": "76340-5562 via Unknown from 76342 -> 76343", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76342, + "TargetID": 76343, + "Directional": false + } + ] + }, + { + "ID": 2996, + "SourceStructureID": 5562, + "TargetStructureID": 76349, + "Label": "5562-76349 via Unknown from 76354 -> 76355", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76354, + "TargetID": 76355, + "Directional": false + } + ] + }, + { + "ID": 2997, + "SourceStructureID": 76351, + "TargetStructureID": 5562, + "Label": "76351-5562 via Adherens from 76353 -> 76352", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76353, + "TargetID": 76352, + "Directional": false + } + ] + }, + { + "ID": 2998, + "SourceStructureID": 76356, + "TargetStructureID": 5562, + "Label": "76356-5562 via Unknown from 76361 -> 76360", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76361, + "TargetID": 76360, + "Directional": false + } + ] + }, + { + "ID": 2999, + "SourceStructureID": 76357, + "TargetStructureID": 5562, + "Label": "76357-5562 via Unknown from 76359 -> 76358", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76359, + "TargetID": 76358, + "Directional": false + } + ] + }, + { + "ID": 3000, + "SourceStructureID": 5562, + "TargetStructureID": 76379, + "Label": "5562-76379 via Unknown from 76380 -> 76381", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76380, + "TargetID": 76381, + "Directional": false + } + ] + }, + { + "ID": 3001, + "SourceStructureID": 76386, + "TargetStructureID": 5562, + "Label": "76386-5562 via Adherens from 76388 -> 76389", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76388, + "TargetID": 76389, + "Directional": false + } + ] + }, + { + "ID": 3002, + "SourceStructureID": 76399, + "TargetStructureID": 5562, + "Label": "76399-5562 via Unknown from 76400 -> 76398", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76400, + "TargetID": 76398, + "Directional": false + } + ] + }, + { + "ID": 3003, + "SourceStructureID": 5562, + "TargetStructureID": 76414, + "Label": "5562-76414 via Adherens from 76417 -> 76418", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76417, + "TargetID": 76418, + "Directional": false + } + ] + }, + { + "ID": 3004, + "SourceStructureID": 5562, + "TargetStructureID": 76426, + "Label": "5562-76426 via Adherens from 76428 -> 76429", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76428, + "TargetID": 76429, + "Directional": false + } + ] + }, + { + "ID": 3005, + "SourceStructureID": 5562, + "TargetStructureID": 76448, + "Label": "5562-76448 via Adherens from 76447 -> 76449", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76447, + "TargetID": 76449, + "Directional": false + } + ] + }, + { + "ID": 3006, + "SourceStructureID": 5562, + "TargetStructureID": 76503, + "Label": "5562-76503 via Unknown from 76501 -> 76504", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76501, + "TargetID": 76504, + "Directional": false + } + ] + }, + { + "ID": 3007, + "SourceStructureID": 5562, + "TargetStructureID": 76533, + "Label": "5562-76533 via Adherens from 76535 -> 76534, 76536 -> 76537, 76538 -> 76539", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76535, + "TargetID": 76534, + "Directional": false + }, + { + "SourceID": 76536, + "TargetID": 76537, + "Directional": false + }, + { + "SourceID": 76538, + "TargetID": 76539, + "Directional": false + } + ] + }, + { + "ID": 3008, + "SourceStructureID": 5562, + "TargetStructureID": 76543, + "Label": "5562-76543 via Adherens from 76587 -> 76588, 76589 -> 76590", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76587, + "TargetID": 76588, + "Directional": false + }, + { + "SourceID": 76589, + "TargetID": 76590, + "Directional": false + } + ] + }, + { + "ID": 3009, + "SourceStructureID": 5562, + "TargetStructureID": 76543, + "Label": "5562-76543 via Unknown from 76542 -> 76544", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76542, + "TargetID": 76544, + "Directional": false + } + ] + }, + { + "ID": 3010, + "SourceStructureID": 5562, + "TargetStructureID": 76552, + "Label": "5562-76552 via Unknown from 76559 -> 76585", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76559, + "TargetID": 76585, + "Directional": false + } + ] + }, + { + "ID": 3011, + "SourceStructureID": 5562, + "TargetStructureID": 76556, + "Label": "5562-76556 via Unknown from 76558 -> 76557", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76558, + "TargetID": 76557, + "Directional": false + } + ] + }, + { + "ID": 3012, + "SourceStructureID": 76561, + "TargetStructureID": 5562, + "Label": "76561-5562 via Adherens from 76564 -> 76565", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76564, + "TargetID": 76565, + "Directional": false + } + ] + }, + { + "ID": 3013, + "SourceStructureID": 5562, + "TargetStructureID": 76638, + "Label": "5562-76638 via Unknown from 76642 -> 76641", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76642, + "TargetID": 76641, + "Directional": false + } + ] + }, + { + "ID": 3014, + "SourceStructureID": 5562, + "TargetStructureID": 76670, + "Label": "5562-76670 via Gap Junction from 63219 -> 76674", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63219, + "TargetID": 76674, + "Directional": false + } + ] + }, + { + "ID": 3015, + "SourceStructureID": 76671, + "TargetStructureID": 5562, + "Label": "76671-5562 via Adherens from 76694 -> 76695", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76694, + "TargetID": 76695, + "Directional": false + } + ] + }, + { + "ID": 3016, + "SourceStructureID": 76671, + "TargetStructureID": 5562, + "Label": "76671-5562 via Unknown from 76696 -> 76697", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76696, + "TargetID": 76697, + "Directional": false + } + ] + }, + { + "ID": 3017, + "SourceStructureID": 5562, + "TargetStructureID": 76688, + "Label": "5562-76688 via Unknown from 76690 -> 76691", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76690, + "TargetID": 76691, + "Directional": false + } + ] + }, + { + "ID": 3018, + "SourceStructureID": 76698, + "TargetStructureID": 5562, + "Label": "76698-5562 via Unknown from 76700 -> 76699", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76700, + "TargetID": 76699, + "Directional": false + } + ] + }, + { + "ID": 3019, + "SourceStructureID": 5562, + "TargetStructureID": 76711, + "Label": "5562-76711 via Adherens from 76714 -> 76713", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76714, + "TargetID": 76713, + "Directional": false + } + ] + }, + { + "ID": 3020, + "SourceStructureID": 5562, + "TargetStructureID": 76719, + "Label": "5562-76719 via Adherens from 76892 -> 76893", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76892, + "TargetID": 76893, + "Directional": false + } + ] + }, + { + "ID": 3021, + "SourceStructureID": 5562, + "TargetStructureID": 76724, + "Label": "5562-76724 via Unknown from 76726 -> 76725", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76726, + "TargetID": 76725, + "Directional": false + } + ] + }, + { + "ID": 3022, + "SourceStructureID": 76728, + "TargetStructureID": 5562, + "Label": "76728-5562 via Unknown from 76729 -> 76727, 76907 -> 76906", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76729, + "TargetID": 76727, + "Directional": false + }, + { + "SourceID": 76907, + "TargetID": 76906, + "Directional": false + } + ] + }, + { + "ID": 3023, + "SourceStructureID": 76730, + "TargetStructureID": 5562, + "Label": "76730-5562 via Adherens from 76909 -> 76908", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76909, + "TargetID": 76908, + "Directional": false + } + ] + }, + { + "ID": 3024, + "SourceStructureID": 5562, + "TargetStructureID": 76735, + "Label": "5562-76735 via Unknown from 76897 -> 76898", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76897, + "TargetID": 76898, + "Directional": false + } + ] + }, + { + "ID": 3025, + "SourceStructureID": 76895, + "TargetStructureID": 5562, + "Label": "76895-5562 via Unknown from 76896 -> 76894", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76896, + "TargetID": 76894, + "Directional": false + } + ] + }, + { + "ID": 3026, + "SourceStructureID": 76919, + "TargetStructureID": 5562, + "Label": "76919-5562 via Adherens from 76921 -> 76920, 76922 -> 76923", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76921, + "TargetID": 76920, + "Directional": false + }, + { + "SourceID": 76922, + "TargetID": 76923, + "Directional": false + } + ] + }, + { + "ID": 3027, + "SourceStructureID": 5562, + "TargetStructureID": 76931, + "Label": "5562-76931 via Adherens from 76930 -> 76932", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76930, + "TargetID": 76932, + "Directional": false + } + ] + }, + { + "ID": 3028, + "SourceStructureID": 5562, + "TargetStructureID": 76931, + "Label": "5562-76931 via BC Conventional Synapse from 134315 -> 134316", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 134315, + "TargetID": 134316, + "Directional": false + } + ] + }, + { + "ID": 3029, + "SourceStructureID": 5562, + "TargetStructureID": 76938, + "Label": "5562-76938 via Unknown from 76937 -> 76939", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76937, + "TargetID": 76939, + "Directional": false + } + ] + }, + { + "ID": 3030, + "SourceStructureID": 5562, + "TargetStructureID": 76944, + "Label": "5562-76944 via Unknown from 135300 -> 134317", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135300, + "TargetID": 134317, + "Directional": false + } + ] + }, + { + "ID": 3031, + "SourceStructureID": 76953, + "TargetStructureID": 5562, + "Label": "76953-5562 via Adherens from 76954 -> 76955", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76954, + "TargetID": 76955, + "Directional": false + } + ] + }, + { + "ID": 3032, + "SourceStructureID": 5562, + "TargetStructureID": 76958, + "Label": "5562-76958 via Unknown from 76960 -> 76959", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76960, + "TargetID": 76959, + "Directional": false + } + ] + }, + { + "ID": 3033, + "SourceStructureID": 5562, + "TargetStructureID": 77116, + "Label": "5562-77116 via Unknown from 77115 -> 77117", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77115, + "TargetID": 77117, + "Directional": false + } + ] + }, + { + "ID": 3034, + "SourceStructureID": 5562, + "TargetStructureID": 77124, + "Label": "5562-77124 via Adherens from 63228 -> 77125", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63228, + "TargetID": 77125, + "Directional": false + } + ] + }, + { + "ID": 3035, + "SourceStructureID": 5562, + "TargetStructureID": 77126, + "Label": "5562-77126 via Unknown from 77127 -> 81504", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77127, + "TargetID": 81504, + "Directional": false + } + ] + }, + { + "ID": 3036, + "SourceStructureID": 5562, + "TargetStructureID": 77156, + "Label": "5562-77156 via Unknown from 77158 -> 77157", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77158, + "TargetID": 77157, + "Directional": false + } + ] + }, + { + "ID": 3037, + "SourceStructureID": 77160, + "TargetStructureID": 5562, + "Label": "77160-5562 via Unknown from 77161 -> 77159, 77193 -> 77194, 77198 -> 77192", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77161, + "TargetID": 77159, + "Directional": false + }, + { + "SourceID": 77193, + "TargetID": 77194, + "Directional": false + }, + { + "SourceID": 77198, + "TargetID": 77192, + "Directional": false + } + ] + }, + { + "ID": 3038, + "SourceStructureID": 77163, + "TargetStructureID": 5562, + "Label": "77163-5562 via Unknown from 77164 -> 77162", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77164, + "TargetID": 77162, + "Directional": false + } + ] + }, + { + "ID": 3039, + "SourceStructureID": 5562, + "TargetStructureID": 77179, + "Label": "5562-77179 via Adherens from 77178 -> 77180", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77178, + "TargetID": 77180, + "Directional": false + } + ] + }, + { + "ID": 3040, + "SourceStructureID": 5562, + "TargetStructureID": 77179, + "Label": "5562-77179 via Gap Junction from 77181 -> 77182", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 77181, + "TargetID": 77182, + "Directional": false + } + ] + }, + { + "ID": 3041, + "SourceStructureID": 5562, + "TargetStructureID": 77202, + "Label": "5562-77202 via Unknown from 77203 -> 77204", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77203, + "TargetID": 77204, + "Directional": false + } + ] + }, + { + "ID": 3042, + "SourceStructureID": 5562, + "TargetStructureID": 77236, + "Label": "5562-77236 via Adherens from 77235 -> 77237", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77235, + "TargetID": 77237, + "Directional": false + } + ] + }, + { + "ID": 3043, + "SourceStructureID": 5562, + "TargetStructureID": 77236, + "Label": "5562-77236 via Unknown from 77251 -> 134321", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77251, + "TargetID": 134321, + "Directional": false + } + ] + }, + { + "ID": 3044, + "SourceStructureID": 77262, + "TargetStructureID": 5562, + "Label": "77262-5562 via Adherens from 77263 -> 77261", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77263, + "TargetID": 77261, + "Directional": false + } + ] + }, + { + "ID": 3045, + "SourceStructureID": 5562, + "TargetStructureID": 77266, + "Label": "5562-77266 via Unknown from 77265 -> 77267", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77265, + "TargetID": 77267, + "Directional": false + } + ] + }, + { + "ID": 3046, + "SourceStructureID": 5562, + "TargetStructureID": 77270, + "Label": "5562-77270 via Adherens from 77282 -> 77283", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77282, + "TargetID": 77283, + "Directional": false + } + ] + }, + { + "ID": 3047, + "SourceStructureID": 5562, + "TargetStructureID": 77286, + "Label": "5562-77286 via Adherens from 77288 -> 77287", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77288, + "TargetID": 77287, + "Directional": false + } + ] + }, + { + "ID": 3048, + "SourceStructureID": 5562, + "TargetStructureID": 77289, + "Label": "5562-77289 via Unknown from 77290 -> 77291", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77290, + "TargetID": 77291, + "Directional": false + } + ] + }, + { + "ID": 3049, + "SourceStructureID": 5562, + "TargetStructureID": 77296, + "Label": "5562-77296 via Unknown from 77429 -> 77430", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77429, + "TargetID": 77430, + "Directional": false + } + ] + }, + { + "ID": 3050, + "SourceStructureID": 5562, + "TargetStructureID": 77299, + "Label": "5562-77299 via Unknown from 77301 -> 77302", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77301, + "TargetID": 77302, + "Directional": false + } + ] + }, + { + "ID": 3051, + "SourceStructureID": 5562, + "TargetStructureID": 77310, + "Label": "5562-77310 via Unknown from 77311 -> 77312", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77311, + "TargetID": 77312, + "Directional": false + } + ] + }, + { + "ID": 3052, + "SourceStructureID": 77321, + "TargetStructureID": 5562, + "Label": "77321-5562 via Unknown from 134322 -> 77319", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134322, + "TargetID": 77319, + "Directional": false + } + ] + }, + { + "ID": 3053, + "SourceStructureID": 5562, + "TargetStructureID": 77417, + "Label": "5562-77417 via Unknown from 77416 -> 77418", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77416, + "TargetID": 77418, + "Directional": false + } + ] + }, + { + "ID": 3054, + "SourceStructureID": 77423, + "TargetStructureID": 5562, + "Label": "77423-5562 via Unknown from 77424 -> 77425", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77424, + "TargetID": 77425, + "Directional": false + } + ] + }, + { + "ID": 3055, + "SourceStructureID": 77446, + "TargetStructureID": 5562, + "Label": "77446-5562 via Unknown from 77447 -> 77445", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77447, + "TargetID": 77445, + "Directional": false + } + ] + }, + { + "ID": 3056, + "SourceStructureID": 5562, + "TargetStructureID": 77450, + "Label": "5562-77450 via Adherens from 77449 -> 77451", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77449, + "TargetID": 77451, + "Directional": false + } + ] + }, + { + "ID": 3057, + "SourceStructureID": 5562, + "TargetStructureID": 77456, + "Label": "5562-77456 via Unknown from 77452 -> 77457", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77452, + "TargetID": 77457, + "Directional": false + } + ] + }, + { + "ID": 3058, + "SourceStructureID": 77473, + "TargetStructureID": 5562, + "Label": "77473-5562 via Unknown from 77474 -> 77472", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77474, + "TargetID": 77472, + "Directional": false + } + ] + }, + { + "ID": 3059, + "SourceStructureID": 77507, + "TargetStructureID": 5562, + "Label": "77507-5562 via Unknown from 77508 -> 77509", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77508, + "TargetID": 77509, + "Directional": false + } + ] + }, + { + "ID": 3060, + "SourceStructureID": 5562, + "TargetStructureID": 77510, + "Label": "5562-77510 via Unknown from 134577 -> 134578", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134577, + "TargetID": 134578, + "Directional": false + } + ] + }, + { + "ID": 3061, + "SourceStructureID": 5562, + "TargetStructureID": 77516, + "Label": "5562-77516 via Adherens from 77517 -> 77518", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77517, + "TargetID": 77518, + "Directional": false + } + ] + }, + { + "ID": 3062, + "SourceStructureID": 5562, + "TargetStructureID": 77519, + "Label": "5562-77519 via Unknown from 77520 -> 77521", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77520, + "TargetID": 77521, + "Directional": false + } + ] + }, + { + "ID": 3063, + "SourceStructureID": 5562, + "TargetStructureID": 77522, + "Label": "5562-77522 via Unknown from 77524 -> 77523", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77524, + "TargetID": 77523, + "Directional": false + } + ] + }, + { + "ID": 3064, + "SourceStructureID": 77533, + "TargetStructureID": 5562, + "Label": "77533-5562 via Unknown from 77584 -> 77583", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77584, + "TargetID": 77583, + "Directional": false + } + ] + }, + { + "ID": 3065, + "SourceStructureID": 5562, + "TargetStructureID": 77536, + "Label": "5562-77536 via Unknown from 77538 -> 77537", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77538, + "TargetID": 77537, + "Directional": false + } + ] + }, + { + "ID": 3066, + "SourceStructureID": 5562, + "TargetStructureID": 77550, + "Label": "5562-77550 via Unknown from 77554 -> 77553", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77554, + "TargetID": 77553, + "Directional": false + } + ] + }, + { + "ID": 3067, + "SourceStructureID": 5562, + "TargetStructureID": 77561, + "Label": "5562-77561 via Adherens from 77560 -> 77562, 77581 -> 77582", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77560, + "TargetID": 77562, + "Directional": false + }, + { + "SourceID": 77581, + "TargetID": 77582, + "Directional": false + } + ] + }, + { + "ID": 3068, + "SourceStructureID": 5562, + "TargetStructureID": 77572, + "Label": "5562-77572 via Unknown from 77573 -> 77574", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77573, + "TargetID": 77574, + "Directional": false + } + ] + }, + { + "ID": 3069, + "SourceStructureID": 5562, + "TargetStructureID": 77578, + "Label": "5562-77578 via Unknown from 77580 -> 77579", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77580, + "TargetID": 77579, + "Directional": false + } + ] + }, + { + "ID": 3070, + "SourceStructureID": 5562, + "TargetStructureID": 77612, + "Label": "5562-77612 via Unknown from 77616 -> 77617", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77616, + "TargetID": 77617, + "Directional": false + } + ] + }, + { + "ID": 3071, + "SourceStructureID": 5562, + "TargetStructureID": 77726, + "Label": "5562-77726 via Unknown from 77725 -> 77727", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77725, + "TargetID": 77727, + "Directional": false + } + ] + }, + { + "ID": 3072, + "SourceStructureID": 5562, + "TargetStructureID": 77731, + "Label": "5562-77731 via Unknown from 77730 -> 77732", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77730, + "TargetID": 77732, + "Directional": false + } + ] + }, + { + "ID": 3073, + "SourceStructureID": 77733, + "TargetStructureID": 5562, + "Label": "77733-5562 via Unknown from 77735 -> 77734", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77735, + "TargetID": 77734, + "Directional": false + } + ] + }, + { + "ID": 3074, + "SourceStructureID": 5562, + "TargetStructureID": 77736, + "Label": "5562-77736 via Unknown from 77739 -> 77740", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77739, + "TargetID": 77740, + "Directional": false + } + ] + }, + { + "ID": 3075, + "SourceStructureID": 77745, + "TargetStructureID": 5562, + "Label": "77745-5562 via Unknown from 77746 -> 77744", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77746, + "TargetID": 77744, + "Directional": false + } + ] + }, + { + "ID": 3076, + "SourceStructureID": 5562, + "TargetStructureID": 77765, + "Label": "5562-77765 via Unknown from 77768 -> 77769", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77768, + "TargetID": 77769, + "Directional": false + } + ] + }, + { + "ID": 3077, + "SourceStructureID": 77786, + "TargetStructureID": 5562, + "Label": "77786-5562 via Unknown from 77787 -> 77788", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77787, + "TargetID": 77788, + "Directional": false + } + ] + }, + { + "ID": 3078, + "SourceStructureID": 5562, + "TargetStructureID": 77790, + "Label": "5562-77790 via Unknown from 77789 -> 77791", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77789, + "TargetID": 77791, + "Directional": false + } + ] + }, + { + "ID": 3079, + "SourceStructureID": 5562, + "TargetStructureID": 77811, + "Label": "5562-77811 via Unknown from 77813 -> 77814", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77813, + "TargetID": 77814, + "Directional": false + } + ] + }, + { + "ID": 3080, + "SourceStructureID": 5562, + "TargetStructureID": 77816, + "Label": "5562-77816 via Adherens from 77815 -> 77817", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77815, + "TargetID": 77817, + "Directional": false + } + ] + }, + { + "ID": 3081, + "SourceStructureID": 5562, + "TargetStructureID": 77826, + "Label": "5562-77826 via Adherens from 77829 -> 77830", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77829, + "TargetID": 77830, + "Directional": false + } + ] + }, + { + "ID": 3082, + "SourceStructureID": 5562, + "TargetStructureID": 77840, + "Label": "5562-77840 via Adherens from 63277 -> 82417, 77880 -> 82416", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63277, + "TargetID": 82417, + "Directional": false + }, + { + "SourceID": 77880, + "TargetID": 82416, + "Directional": false + } + ] + }, + { + "ID": 3083, + "SourceStructureID": 5562, + "TargetStructureID": 77840, + "Label": "5562-77840 via Gap Junction from 63067 -> 76282, 77863 -> 82415", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63067, + "TargetID": 76282, + "Directional": false + }, + { + "SourceID": 77863, + "TargetID": 82415, + "Directional": false + } + ] + }, + { + "ID": 3084, + "SourceStructureID": 5562, + "TargetStructureID": 77846, + "Label": "5562-77846 via Unknown from 77845 -> 77847", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77845, + "TargetID": 77847, + "Directional": false + } + ] + }, + { + "ID": 3085, + "SourceStructureID": 77848, + "TargetStructureID": 5562, + "Label": "77848-5562 via Adherens from 134427 -> 134426", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134427, + "TargetID": 134426, + "Directional": false + } + ] + }, + { + "ID": 3086, + "SourceStructureID": 77855, + "TargetStructureID": 5562, + "Label": "77855-5562 via Unknown from 77856 -> 77854", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77856, + "TargetID": 77854, + "Directional": false + } + ] + }, + { + "ID": 3087, + "SourceStructureID": 5562, + "TargetStructureID": 77858, + "Label": "5562-77858 via Unknown from 77857 -> 77859", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77857, + "TargetID": 77859, + "Directional": false + } + ] + }, + { + "ID": 3088, + "SourceStructureID": 5562, + "TargetStructureID": 77865, + "Label": "5562-77865 via Adherens from 77866 -> 77867", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77866, + "TargetID": 77867, + "Directional": false + } + ] + }, + { + "ID": 3089, + "SourceStructureID": 5562, + "TargetStructureID": 77872, + "Label": "5562-77872 via Unknown from 77874 -> 77873", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77874, + "TargetID": 77873, + "Directional": false + } + ] + }, + { + "ID": 3090, + "SourceStructureID": 5562, + "TargetStructureID": 77885, + "Label": "5562-77885 via Adherens from 77886 -> 77887", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77886, + "TargetID": 77887, + "Directional": false + } + ] + }, + { + "ID": 3091, + "SourceStructureID": 5562, + "TargetStructureID": 77889, + "Label": "5562-77889 via Unknown from 77891 -> 77890", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77891, + "TargetID": 77890, + "Directional": false + } + ] + }, + { + "ID": 3092, + "SourceStructureID": 5562, + "TargetStructureID": 77893, + "Label": "5562-77893 via Adherens from 77895 -> 77894", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77895, + "TargetID": 77894, + "Directional": false + } + ] + }, + { + "ID": 3093, + "SourceStructureID": 5562, + "TargetStructureID": 78098, + "Label": "5562-78098 via Gap Junction from 78101 -> 78100", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 78101, + "TargetID": 78100, + "Directional": false + } + ] + }, + { + "ID": 3094, + "SourceStructureID": 5562, + "TargetStructureID": 78098, + "Label": "5562-78098 via Unknown from 78097 -> 78099", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78097, + "TargetID": 78099, + "Directional": false + } + ] + }, + { + "ID": 3095, + "SourceStructureID": 5562, + "TargetStructureID": 78102, + "Label": "5562-78102 via Unknown from 78104 -> 78103", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78104, + "TargetID": 78103, + "Directional": false + } + ] + }, + { + "ID": 3096, + "SourceStructureID": 78107, + "TargetStructureID": 5562, + "Label": "78107-5562 via Unknown from 78121 -> 78120", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78121, + "TargetID": 78120, + "Directional": false + } + ] + }, + { + "ID": 3097, + "SourceStructureID": 5562, + "TargetStructureID": 78109, + "Label": "5562-78109 via Adherens from 78111 -> 78110", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78111, + "TargetID": 78110, + "Directional": false + } + ] + }, + { + "ID": 3098, + "SourceStructureID": 5562, + "TargetStructureID": 78124, + "Label": "5562-78124 via Adherens from 63338 -> 78125, 78138 -> 78137", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63338, + "TargetID": 78125, + "Directional": false + }, + { + "SourceID": 78138, + "TargetID": 78137, + "Directional": false + } + ] + }, + { + "ID": 3099, + "SourceStructureID": 5562, + "TargetStructureID": 78126, + "Label": "5562-78126 via Adherens from 49536 -> 78846, 63658 -> 78546", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 49536, + "TargetID": 78846, + "Directional": false + }, + { + "SourceID": 63658, + "TargetID": 78546, + "Directional": false + } + ] + }, + { + "ID": 3100, + "SourceStructureID": 78126, + "TargetStructureID": 5562, + "Label": "78126-5562 via Gap Junction from 78547 -> 63657, 135139 -> 135138", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 78547, + "TargetID": 63657, + "Directional": false + }, + { + "SourceID": 135139, + "TargetID": 135138, + "Directional": false + } + ] + }, + { + "ID": 3101, + "SourceStructureID": 5562, + "TargetStructureID": 78126, + "Label": "5562-78126 via Unknown from 78127 -> 78128, 78577 -> 78576, 135137 -> 78504", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78127, + "TargetID": 78128, + "Directional": false + }, + { + "SourceID": 78577, + "TargetID": 78576, + "Directional": false + }, + { + "SourceID": 135137, + "TargetID": 78504, + "Directional": false + } + ] + }, + { + "ID": 3102, + "SourceStructureID": 78129, + "TargetStructureID": 5562, + "Label": "78129-5562 via Adherens from 78130 -> 78131", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78130, + "TargetID": 78131, + "Directional": false + } + ] + }, + { + "ID": 3103, + "SourceStructureID": 5562, + "TargetStructureID": 78143, + "Label": "5562-78143 via Unknown from 78144 -> 78145", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78144, + "TargetID": 78145, + "Directional": false + } + ] + }, + { + "ID": 3104, + "SourceStructureID": 78146, + "TargetStructureID": 5562, + "Label": "78146-5562 via Adherens from 78148 -> 78147", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78148, + "TargetID": 78147, + "Directional": false + } + ] + }, + { + "ID": 3105, + "SourceStructureID": 5562, + "TargetStructureID": 78149, + "Label": "5562-78149 via Unknown from 78150 -> 78151", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78150, + "TargetID": 78151, + "Directional": false + } + ] + }, + { + "ID": 3106, + "SourceStructureID": 5562, + "TargetStructureID": 78152, + "Label": "5562-78152 via Unknown from 78154 -> 78153", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78154, + "TargetID": 78153, + "Directional": false + } + ] + }, + { + "ID": 3107, + "SourceStructureID": 5562, + "TargetStructureID": 78157, + "Label": "5562-78157 via Adherens from 78159 -> 78158", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78159, + "TargetID": 78158, + "Directional": false + } + ] + }, + { + "ID": 3108, + "SourceStructureID": 5562, + "TargetStructureID": 78183, + "Label": "5562-78183 via Unknown from 78184 -> 78185", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78184, + "TargetID": 78185, + "Directional": false + } + ] + }, + { + "ID": 3109, + "SourceStructureID": 5562, + "TargetStructureID": 78200, + "Label": "5562-78200 via Adherens from 78237 -> 78238", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78237, + "TargetID": 78238, + "Directional": false + } + ] + }, + { + "ID": 3110, + "SourceStructureID": 78220, + "TargetStructureID": 5562, + "Label": "78220-5562 via Unknown from 78221 -> 78213", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78221, + "TargetID": 78213, + "Directional": false + } + ] + }, + { + "ID": 3111, + "SourceStructureID": 5562, + "TargetStructureID": 78222, + "Label": "5562-78222 via Unknown from 63353 -> 78231", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 63353, + "TargetID": 78231, + "Directional": false + } + ] + }, + { + "ID": 3112, + "SourceStructureID": 78239, + "TargetStructureID": 5562, + "Label": "78239-5562 via Unknown from 78241 -> 78240", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78241, + "TargetID": 78240, + "Directional": false + } + ] + }, + { + "ID": 3113, + "SourceStructureID": 5562, + "TargetStructureID": 78248, + "Label": "5562-78248 via Unknown from 78259 -> 78260", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78259, + "TargetID": 78260, + "Directional": false + } + ] + }, + { + "ID": 3114, + "SourceStructureID": 78261, + "TargetStructureID": 5562, + "Label": "78261-5562 via Unknown from 78269 -> 78270", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78269, + "TargetID": 78270, + "Directional": false + } + ] + }, + { + "ID": 3115, + "SourceStructureID": 5562, + "TargetStructureID": 78262, + "Label": "5562-78262 via Adherens from 78606 -> 78605", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78606, + "TargetID": 78605, + "Directional": false + } + ] + }, + { + "ID": 3116, + "SourceStructureID": 78262, + "TargetStructureID": 5562, + "Label": "78262-5562 via Unknown from 78268 -> 78267, 79901 -> 79902", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78268, + "TargetID": 78267, + "Directional": false + }, + { + "SourceID": 79901, + "TargetID": 79902, + "Directional": false + } + ] + }, + { + "ID": 3117, + "SourceStructureID": 78263, + "TargetStructureID": 5562, + "Label": "78263-5562 via Unknown from 78264 -> 78266", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78264, + "TargetID": 78266, + "Directional": false + } + ] + }, + { + "ID": 3118, + "SourceStructureID": 5562, + "TargetStructureID": 78275, + "Label": "5562-78275 via Adherens from 78274 -> 78276", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78274, + "TargetID": 78276, + "Directional": false + } + ] + }, + { + "ID": 3119, + "SourceStructureID": 5562, + "TargetStructureID": 78275, + "Label": "5562-78275 via Unknown from 78279 -> 78280", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78279, + "TargetID": 78280, + "Directional": false + } + ] + }, + { + "ID": 3120, + "SourceStructureID": 5562, + "TargetStructureID": 78334, + "Label": "5562-78334 via Adherens from 78287 -> 78341, 78340 -> 78342", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78287, + "TargetID": 78341, + "Directional": false + }, + { + "SourceID": 78340, + "TargetID": 78342, + "Directional": false + } + ] + }, + { + "ID": 3121, + "SourceStructureID": 78336, + "TargetStructureID": 5562, + "Label": "78336-5562 via Unknown from 78337 -> 78339", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78337, + "TargetID": 78339, + "Directional": false + } + ] + }, + { + "ID": 3122, + "SourceStructureID": 5562, + "TargetStructureID": 78355, + "Label": "5562-78355 via Unknown from 78356 -> 78357", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78356, + "TargetID": 78357, + "Directional": false + } + ] + }, + { + "ID": 3123, + "SourceStructureID": 5562, + "TargetStructureID": 78359, + "Label": "5562-78359 via Unknown from 78358 -> 78360, 78361 -> 78362", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78358, + "TargetID": 78360, + "Directional": false + }, + { + "SourceID": 78361, + "TargetID": 78362, + "Directional": false + } + ] + }, + { + "ID": 3124, + "SourceStructureID": 5562, + "TargetStructureID": 78364, + "Label": "5562-78364 via Adherens from 78363 -> 78365", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78363, + "TargetID": 78365, + "Directional": false + } + ] + }, + { + "ID": 3125, + "SourceStructureID": 78377, + "TargetStructureID": 5562, + "Label": "78377-5562 via Unknown from 78382 -> 78381", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78382, + "TargetID": 78381, + "Directional": false + } + ] + }, + { + "ID": 3126, + "SourceStructureID": 5562, + "TargetStructureID": 78378, + "Label": "5562-78378 via Unknown from 78379 -> 78380", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78379, + "TargetID": 78380, + "Directional": false + } + ] + }, + { + "ID": 3127, + "SourceStructureID": 5562, + "TargetStructureID": 78387, + "Label": "5562-78387 via Adherens from 78386 -> 78388", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78386, + "TargetID": 78388, + "Directional": false + } + ] + }, + { + "ID": 3128, + "SourceStructureID": 78387, + "TargetStructureID": 5562, + "Label": "78387-5562 via Unknown from 78390 -> 78389", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78390, + "TargetID": 78389, + "Directional": false + } + ] + }, + { + "ID": 3129, + "SourceStructureID": 5562, + "TargetStructureID": 78391, + "Label": "5562-78391 via BC Conventional Synapse from 63538 -> 78392", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 63538, + "TargetID": 78392, + "Directional": false + } + ] + }, + { + "ID": 3130, + "SourceStructureID": 5562, + "TargetStructureID": 78398, + "Label": "5562-78398 via Unknown from 78441 -> 78442", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78441, + "TargetID": 78442, + "Directional": false + } + ] + }, + { + "ID": 3131, + "SourceStructureID": 5562, + "TargetStructureID": 78400, + "Label": "5562-78400 via Unknown from 78403 -> 78402", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78403, + "TargetID": 78402, + "Directional": false + } + ] + }, + { + "ID": 3132, + "SourceStructureID": 5562, + "TargetStructureID": 78409, + "Label": "5562-78409 via Unknown from 49398 -> 78410", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 49398, + "TargetID": 78410, + "Directional": false + } + ] + }, + { + "ID": 3133, + "SourceStructureID": 5562, + "TargetStructureID": 78444, + "Label": "5562-78444 via Unknown from 78443 -> 78445", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78443, + "TargetID": 78445, + "Directional": false + } + ] + }, + { + "ID": 3134, + "SourceStructureID": 78457, + "TargetStructureID": 5562, + "Label": "78457-5562 via Unknown from 78458 -> 78456", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78458, + "TargetID": 78456, + "Directional": false + } + ] + }, + { + "ID": 3135, + "SourceStructureID": 78459, + "TargetStructureID": 5562, + "Label": "78459-5562 via Adherens from 78460 -> 78461", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78460, + "TargetID": 78461, + "Directional": false + } + ] + }, + { + "ID": 3136, + "SourceStructureID": 78462, + "TargetStructureID": 5562, + "Label": "78462-5562 via Unknown from 78464 -> 78463", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78464, + "TargetID": 78463, + "Directional": false + } + ] + }, + { + "ID": 3137, + "SourceStructureID": 5562, + "TargetStructureID": 78467, + "Label": "5562-78467 via Adherens from 63645 -> 78468", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63645, + "TargetID": 78468, + "Directional": false + } + ] + }, + { + "ID": 3138, + "SourceStructureID": 5562, + "TargetStructureID": 78478, + "Label": "5562-78478 via Unknown from 78480 -> 78481", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78480, + "TargetID": 78481, + "Directional": false + } + ] + }, + { + "ID": 3139, + "SourceStructureID": 5562, + "TargetStructureID": 78506, + "Label": "5562-78506 via Unknown from 78834 -> 78835", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78834, + "TargetID": 78835, + "Directional": false + } + ] + }, + { + "ID": 3140, + "SourceStructureID": 5562, + "TargetStructureID": 78507, + "Label": "5562-78507 via Unknown from 78508 -> 78509", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78508, + "TargetID": 78509, + "Directional": false + } + ] + }, + { + "ID": 3141, + "SourceStructureID": 78510, + "TargetStructureID": 5562, + "Label": "78510-5562 via Adherens from 78511 -> 78512", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78511, + "TargetID": 78512, + "Directional": false + } + ] + }, + { + "ID": 3142, + "SourceStructureID": 78520, + "TargetStructureID": 5562, + "Label": "78520-5562 via Unknown from 78538 -> 78539", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78538, + "TargetID": 78539, + "Directional": false + } + ] + }, + { + "ID": 3143, + "SourceStructureID": 5562, + "TargetStructureID": 78526, + "Label": "5562-78526 via Unknown from 78527 -> 78528", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78527, + "TargetID": 78528, + "Directional": false + } + ] + }, + { + "ID": 3144, + "SourceStructureID": 5562, + "TargetStructureID": 78529, + "Label": "5562-78529 via Unknown from 78530 -> 78531", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78530, + "TargetID": 78531, + "Directional": false + } + ] + }, + { + "ID": 3145, + "SourceStructureID": 5562, + "TargetStructureID": 78532, + "Label": "5562-78532 via Unknown from 78534 -> 78533", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78534, + "TargetID": 78533, + "Directional": false + } + ] + }, + { + "ID": 3146, + "SourceStructureID": 78552, + "TargetStructureID": 5562, + "Label": "78552-5562 via Unknown from 78563 -> 78562", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78563, + "TargetID": 78562, + "Directional": false + } + ] + }, + { + "ID": 3147, + "SourceStructureID": 5562, + "TargetStructureID": 78568, + "Label": "5562-78568 via Adherens from 78567 -> 78569", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78567, + "TargetID": 78569, + "Directional": false + } + ] + }, + { + "ID": 3148, + "SourceStructureID": 5562, + "TargetStructureID": 78578, + "Label": "5562-78578 via Adherens from 63665 -> 78579", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63665, + "TargetID": 78579, + "Directional": false + } + ] + }, + { + "ID": 3149, + "SourceStructureID": 5562, + "TargetStructureID": 78582, + "Label": "5562-78582 via Adherens from 63668 -> 78583", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63668, + "TargetID": 78583, + "Directional": false + } + ] + }, + { + "ID": 3150, + "SourceStructureID": 78588, + "TargetStructureID": 5562, + "Label": "78588-5562 via Unknown from 78592 -> 78593", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78592, + "TargetID": 78593, + "Directional": false + } + ] + }, + { + "ID": 3151, + "SourceStructureID": 78607, + "TargetStructureID": 5562, + "Label": "78607-5562 via Adherens from 78608 -> 78609", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78608, + "TargetID": 78609, + "Directional": false + } + ] + }, + { + "ID": 3152, + "SourceStructureID": 78610, + "TargetStructureID": 5562, + "Label": "78610-5562 via Adherens from 132074 -> 132073", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132074, + "TargetID": 132073, + "Directional": false + } + ] + }, + { + "ID": 3153, + "SourceStructureID": 5562, + "TargetStructureID": 78617, + "Label": "5562-78617 via Unknown from 78619 -> 78620", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78619, + "TargetID": 78620, + "Directional": false + } + ] + }, + { + "ID": 3154, + "SourceStructureID": 5562, + "TargetStructureID": 78638, + "Label": "5562-78638 via Unknown from 78637 -> 78639", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78637, + "TargetID": 78639, + "Directional": false + } + ] + }, + { + "ID": 3155, + "SourceStructureID": 78644, + "TargetStructureID": 5562, + "Label": "78644-5562 via Unknown from 78646 -> 78645", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78646, + "TargetID": 78645, + "Directional": false + } + ] + }, + { + "ID": 3156, + "SourceStructureID": 5562, + "TargetStructureID": 78660, + "Label": "5562-78660 via Unknown from 78661 -> 78662", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78661, + "TargetID": 78662, + "Directional": false + } + ] + }, + { + "ID": 3157, + "SourceStructureID": 5562, + "TargetStructureID": 78679, + "Label": "5562-78679 via Adherens from 63711 -> 78680", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63711, + "TargetID": 78680, + "Directional": false + } + ] + }, + { + "ID": 3158, + "SourceStructureID": 78681, + "TargetStructureID": 5562, + "Label": "78681-5562 via Unknown from 78682 -> 78683", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78682, + "TargetID": 78683, + "Directional": false + } + ] + }, + { + "ID": 3159, + "SourceStructureID": 5562, + "TargetStructureID": 78686, + "Label": "5562-78686 via Unknown from 78690 -> 78687, 78691 -> 78692", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78690, + "TargetID": 78687, + "Directional": false + }, + { + "SourceID": 78691, + "TargetID": 78692, + "Directional": false + } + ] + }, + { + "ID": 3160, + "SourceStructureID": 5562, + "TargetStructureID": 78701, + "Label": "5562-78701 via Unknown from 78702 -> 78703", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78702, + "TargetID": 78703, + "Directional": false + } + ] + }, + { + "ID": 3161, + "SourceStructureID": 5562, + "TargetStructureID": 78704, + "Label": "5562-78704 via Adherens from 63723 -> 78705", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63723, + "TargetID": 78705, + "Directional": false + } + ] + }, + { + "ID": 3162, + "SourceStructureID": 5562, + "TargetStructureID": 78735, + "Label": "5562-78735 via Unknown from 78745 -> 78743, 78758 -> 78756", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78745, + "TargetID": 78743, + "Directional": false + }, + { + "SourceID": 78758, + "TargetID": 78756, + "Directional": false + } + ] + }, + { + "ID": 3163, + "SourceStructureID": 78749, + "TargetStructureID": 5562, + "Label": "78749-5562 via Unknown from 78750 -> 63722", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78750, + "TargetID": 63722, + "Directional": false + } + ] + }, + { + "ID": 3164, + "SourceStructureID": 5562, + "TargetStructureID": 78766, + "Label": "5562-78766 via Unknown from 78767 -> 78768, 78772 -> 78771", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78767, + "TargetID": 78768, + "Directional": false + }, + { + "SourceID": 78772, + "TargetID": 78771, + "Directional": false + } + ] + }, + { + "ID": 3165, + "SourceStructureID": 5562, + "TargetStructureID": 78775, + "Label": "5562-78775 via Adherens from 78778 -> 78779", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78778, + "TargetID": 78779, + "Directional": false + } + ] + }, + { + "ID": 3166, + "SourceStructureID": 5562, + "TargetStructureID": 78785, + "Label": "5562-78785 via Unknown from 78817 -> 78818", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78817, + "TargetID": 78818, + "Directional": false + } + ] + }, + { + "ID": 3167, + "SourceStructureID": 78787, + "TargetStructureID": 5562, + "Label": "78787-5562 via Unknown from 78789 -> 78788", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78789, + "TargetID": 78788, + "Directional": false + } + ] + }, + { + "ID": 3168, + "SourceStructureID": 5562, + "TargetStructureID": 78790, + "Label": "5562-78790 via Unknown from 78802 -> 78803", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78802, + "TargetID": 78803, + "Directional": false + } + ] + }, + { + "ID": 3169, + "SourceStructureID": 78791, + "TargetStructureID": 5562, + "Label": "78791-5562 via Unknown from 78793 -> 78792", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78793, + "TargetID": 78792, + "Directional": false + } + ] + }, + { + "ID": 3170, + "SourceStructureID": 5562, + "TargetStructureID": 78804, + "Label": "5562-78804 via Unknown from 78808 -> 78809", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78808, + "TargetID": 78809, + "Directional": false + } + ] + }, + { + "ID": 3171, + "SourceStructureID": 5562, + "TargetStructureID": 78822, + "Label": "5562-78822 via Unknown from 78832 -> 78833", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78832, + "TargetID": 78833, + "Directional": false + } + ] + }, + { + "ID": 3172, + "SourceStructureID": 78829, + "TargetStructureID": 5562, + "Label": "78829-5562 via Unknown from 78831 -> 78830", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78831, + "TargetID": 78830, + "Directional": false + } + ] + }, + { + "ID": 3173, + "SourceStructureID": 5562, + "TargetStructureID": 78837, + "Label": "5562-78837 via BC Conventional Synapse from 78836 -> 78838", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 78836, + "TargetID": 78838, + "Directional": false + } + ] + }, + { + "ID": 3174, + "SourceStructureID": 5562, + "TargetStructureID": 78839, + "Label": "5562-78839 via Unknown from 135302 -> 134468", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135302, + "TargetID": 134468, + "Directional": false + } + ] + }, + { + "ID": 3175, + "SourceStructureID": 78840, + "TargetStructureID": 5562, + "Label": "78840-5562 via Unknown from 134467 -> 78841", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134467, + "TargetID": 78841, + "Directional": false + } + ] + }, + { + "ID": 3176, + "SourceStructureID": 5562, + "TargetStructureID": 78852, + "Label": "5562-78852 via Unknown from 78854 -> 78853", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78854, + "TargetID": 78853, + "Directional": false + } + ] + }, + { + "ID": 3177, + "SourceStructureID": 78856, + "TargetStructureID": 5562, + "Label": "78856-5562 via Unknown from 78857 -> 78855", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78857, + "TargetID": 78855, + "Directional": false + } + ] + }, + { + "ID": 3178, + "SourceStructureID": 5562, + "TargetStructureID": 78860, + "Label": "5562-78860 via Adherens from 78861 -> 78862", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78861, + "TargetID": 78862, + "Directional": false + } + ] + }, + { + "ID": 3179, + "SourceStructureID": 78894, + "TargetStructureID": 5562, + "Label": "78894-5562 via Adherens from 78895 -> 63757", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78895, + "TargetID": 63757, + "Directional": false + } + ] + }, + { + "ID": 3180, + "SourceStructureID": 78894, + "TargetStructureID": 5562, + "Label": "78894-5562 via Unknown from 78904 -> 78903", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78904, + "TargetID": 78903, + "Directional": false + } + ] + }, + { + "ID": 3181, + "SourceStructureID": 5562, + "TargetStructureID": 78909, + "Label": "5562-78909 via Unknown from 77255 -> 87509, 87515 -> 77462", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 77255, + "TargetID": 87509, + "Directional": false + }, + { + "SourceID": 87515, + "TargetID": 77462, + "Directional": false + } + ] + }, + { + "ID": 3182, + "SourceStructureID": 5562, + "TargetStructureID": 78917, + "Label": "5562-78917 via Adherens from 78916 -> 78918", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78916, + "TargetID": 78918, + "Directional": false + } + ] + }, + { + "ID": 3183, + "SourceStructureID": 78924, + "TargetStructureID": 5562, + "Label": "78924-5562 via Adherens from 78925 -> 63772", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78925, + "TargetID": 63772, + "Directional": false + } + ] + }, + { + "ID": 3184, + "SourceStructureID": 5562, + "TargetStructureID": 78930, + "Label": "5562-78930 via Adherens from 63773 -> 78934", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63773, + "TargetID": 78934, + "Directional": false + } + ] + }, + { + "ID": 3185, + "SourceStructureID": 78938, + "TargetStructureID": 5562, + "Label": "78938-5562 via Adherens from 78994 -> 78995", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78994, + "TargetID": 78995, + "Directional": false + } + ] + }, + { + "ID": 3186, + "SourceStructureID": 78946, + "TargetStructureID": 5562, + "Label": "78946-5562 via Unknown from 78960 -> 78958", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78960, + "TargetID": 78958, + "Directional": false + } + ] + }, + { + "ID": 3187, + "SourceStructureID": 78969, + "TargetStructureID": 5562, + "Label": "78969-5562 via Unknown from 78971 -> 78970", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78971, + "TargetID": 78970, + "Directional": false + } + ] + }, + { + "ID": 3188, + "SourceStructureID": 5562, + "TargetStructureID": 78988, + "Label": "5562-78988 via Unknown from 78989 -> 78990", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78989, + "TargetID": 78990, + "Directional": false + } + ] + }, + { + "ID": 3189, + "SourceStructureID": 5562, + "TargetStructureID": 78991, + "Label": "5562-78991 via BC Conventional Synapse from 63781 -> 78992", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 63781, + "TargetID": 78992, + "Directional": false + } + ] + }, + { + "ID": 3190, + "SourceStructureID": 5562, + "TargetStructureID": 79017, + "Label": "5562-79017 via Adherens from 79164 -> 79165", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79164, + "TargetID": 79165, + "Directional": false + } + ] + }, + { + "ID": 3191, + "SourceStructureID": 5562, + "TargetStructureID": 79026, + "Label": "5562-79026 via Unknown from 134583 -> 134584", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134583, + "TargetID": 134584, + "Directional": false + } + ] + }, + { + "ID": 3192, + "SourceStructureID": 5562, + "TargetStructureID": 79170, + "Label": "5562-79170 via Adherens from 79174 -> 79173", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79174, + "TargetID": 79173, + "Directional": false + } + ] + }, + { + "ID": 3193, + "SourceStructureID": 79175, + "TargetStructureID": 5562, + "Label": "79175-5562 via Adherens from 93088 -> 63836", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93088, + "TargetID": 63836, + "Directional": false + } + ] + }, + { + "ID": 3194, + "SourceStructureID": 5562, + "TargetStructureID": 79189, + "Label": "5562-79189 via Adherens from 63842 -> 79191", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63842, + "TargetID": 79191, + "Directional": false + } + ] + }, + { + "ID": 3195, + "SourceStructureID": 5562, + "TargetStructureID": 79196, + "Label": "5562-79196 via Adherens from 79199 -> 79198", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79199, + "TargetID": 79198, + "Directional": false + } + ] + }, + { + "ID": 3196, + "SourceStructureID": 5562, + "TargetStructureID": 79196, + "Label": "5562-79196 via Unknown from 63845 -> 79197", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 63845, + "TargetID": 79197, + "Directional": false + } + ] + }, + { + "ID": 3197, + "SourceStructureID": 5562, + "TargetStructureID": 79209, + "Label": "5562-79209 via Adherens from 79214 -> 79213", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79214, + "TargetID": 79213, + "Directional": false + } + ] + }, + { + "ID": 3198, + "SourceStructureID": 5562, + "TargetStructureID": 79222, + "Label": "5562-79222 via Adherens from 79221 -> 79223", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79221, + "TargetID": 79223, + "Directional": false + } + ] + }, + { + "ID": 3199, + "SourceStructureID": 5562, + "TargetStructureID": 79224, + "Label": "5562-79224 via Unknown from 79225 -> 79226", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79225, + "TargetID": 79226, + "Directional": false + } + ] + }, + { + "ID": 3200, + "SourceStructureID": 79227, + "TargetStructureID": 5562, + "Label": "79227-5562 via Adherens from 79231 -> 63855", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79231, + "TargetID": 63855, + "Directional": false + } + ] + }, + { + "ID": 3201, + "SourceStructureID": 79623, + "TargetStructureID": 5562, + "Label": "79623-5562 via Adherens from 79624 -> 79622", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79624, + "TargetID": 79622, + "Directional": false + } + ] + }, + { + "ID": 3202, + "SourceStructureID": 79643, + "TargetStructureID": 5562, + "Label": "79643-5562 via Adherens from 79644 -> 63873", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79644, + "TargetID": 63873, + "Directional": false + } + ] + }, + { + "ID": 3203, + "SourceStructureID": 79695, + "TargetStructureID": 5562, + "Label": "79695-5562 via Adherens from 79696 -> 79697", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79696, + "TargetID": 79697, + "Directional": false + } + ] + }, + { + "ID": 3204, + "SourceStructureID": 79735, + "TargetStructureID": 5562, + "Label": "79735-5562 via Adherens from 79736 -> 79737", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79736, + "TargetID": 79737, + "Directional": false + } + ] + }, + { + "ID": 3205, + "SourceStructureID": 79738, + "TargetStructureID": 5562, + "Label": "79738-5562 via Adherens from 79739 -> 79740", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79739, + "TargetID": 79740, + "Directional": false + } + ] + }, + { + "ID": 3206, + "SourceStructureID": 5562, + "TargetStructureID": 79741, + "Label": "5562-79741 via Adherens from 81867 -> 81868", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81867, + "TargetID": 81868, + "Directional": false + } + ] + }, + { + "ID": 3207, + "SourceStructureID": 5562, + "TargetStructureID": 79747, + "Label": "5562-79747 via Adherens from 63891 -> 79748", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63891, + "TargetID": 79748, + "Directional": false + } + ] + }, + { + "ID": 3208, + "SourceStructureID": 5562, + "TargetStructureID": 79758, + "Label": "5562-79758 via Unknown from 79759 -> 79760", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79759, + "TargetID": 79760, + "Directional": false + } + ] + }, + { + "ID": 3209, + "SourceStructureID": 79761, + "TargetStructureID": 5562, + "Label": "79761-5562 via Adherens from 79762 -> 79763", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79762, + "TargetID": 79763, + "Directional": false + } + ] + }, + { + "ID": 3210, + "SourceStructureID": 5562, + "TargetStructureID": 79770, + "Label": "5562-79770 via Unknown from 79769 -> 79771", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79769, + "TargetID": 79771, + "Directional": false + } + ] + }, + { + "ID": 3211, + "SourceStructureID": 79772, + "TargetStructureID": 5562, + "Label": "79772-5562 via Adherens from 79774 -> 79775", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79774, + "TargetID": 79775, + "Directional": false + } + ] + }, + { + "ID": 3212, + "SourceStructureID": 5562, + "TargetStructureID": 79776, + "Label": "5562-79776 via Unknown from 79777 -> 79778", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79777, + "TargetID": 79778, + "Directional": false + } + ] + }, + { + "ID": 3213, + "SourceStructureID": 5562, + "TargetStructureID": 79791, + "Label": "5562-79791 via Unknown from 79789 -> 79792", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79789, + "TargetID": 79792, + "Directional": false + } + ] + }, + { + "ID": 3214, + "SourceStructureID": 5562, + "TargetStructureID": 79797, + "Label": "5562-79797 via Adherens from 63916 -> 79801", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 63916, + "TargetID": 79801, + "Directional": false + } + ] + }, + { + "ID": 3215, + "SourceStructureID": 79805, + "TargetStructureID": 5562, + "Label": "79805-5562 via Unknown from 79806 -> 79807", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79806, + "TargetID": 79807, + "Directional": false + } + ] + }, + { + "ID": 3216, + "SourceStructureID": 79808, + "TargetStructureID": 5562, + "Label": "79808-5562 via Unknown from 79831 -> 79812", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79831, + "TargetID": 79812, + "Directional": false + } + ] + }, + { + "ID": 3217, + "SourceStructureID": 5562, + "TargetStructureID": 79818, + "Label": "5562-79818 via Unknown from 79819 -> 79820", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79819, + "TargetID": 79820, + "Directional": false + } + ] + }, + { + "ID": 3218, + "SourceStructureID": 79837, + "TargetStructureID": 5562, + "Label": "79837-5562 via Unknown from 79839 -> 79838", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79839, + "TargetID": 79838, + "Directional": false + } + ] + }, + { + "ID": 3219, + "SourceStructureID": 5562, + "TargetStructureID": 79898, + "Label": "5562-79898 via Unknown from 79897 -> 79899", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79897, + "TargetID": 79899, + "Directional": false + } + ] + }, + { + "ID": 3220, + "SourceStructureID": 5562, + "TargetStructureID": 80209, + "Label": "5562-80209 via Adherens from 80225 -> 80226", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80225, + "TargetID": 80226, + "Directional": false + } + ] + }, + { + "ID": 3221, + "SourceStructureID": 5562, + "TargetStructureID": 80213, + "Label": "5562-80213 via Unknown from 80216 -> 80217", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80216, + "TargetID": 80217, + "Directional": false + } + ] + }, + { + "ID": 3222, + "SourceStructureID": 80229, + "TargetStructureID": 5562, + "Label": "80229-5562 via Unknown from 80230 -> 80227", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80230, + "TargetID": 80227, + "Directional": false + } + ] + }, + { + "ID": 3223, + "SourceStructureID": 80232, + "TargetStructureID": 5562, + "Label": "80232-5562 via Adherens from 80234 -> 80233", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80234, + "TargetID": 80233, + "Directional": false + } + ] + }, + { + "ID": 3224, + "SourceStructureID": 80253, + "TargetStructureID": 5562, + "Label": "80253-5562 via Unknown from 80271 -> 80272", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80271, + "TargetID": 80272, + "Directional": false + } + ] + }, + { + "ID": 3225, + "SourceStructureID": 5562, + "TargetStructureID": 80296, + "Label": "5562-80296 via Unknown from 80298 -> 80300", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80298, + "TargetID": 80300, + "Directional": false + } + ] + }, + { + "ID": 3226, + "SourceStructureID": 80331, + "TargetStructureID": 5562, + "Label": "80331-5562 via Adherens from 80332 -> 80330", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80332, + "TargetID": 80330, + "Directional": false + } + ] + }, + { + "ID": 3227, + "SourceStructureID": 80338, + "TargetStructureID": 5562, + "Label": "80338-5562 via Adherens from 80339 -> 80340", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80339, + "TargetID": 80340, + "Directional": false + } + ] + }, + { + "ID": 3228, + "SourceStructureID": 80350, + "TargetStructureID": 5562, + "Label": "80350-5562 via Adherens from 80351 -> 80352", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80351, + "TargetID": 80352, + "Directional": false + } + ] + }, + { + "ID": 3229, + "SourceStructureID": 5562, + "TargetStructureID": 80359, + "Label": "5562-80359 via Unknown from 63296 -> 80360", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 63296, + "TargetID": 80360, + "Directional": false + } + ] + }, + { + "ID": 3230, + "SourceStructureID": 5562, + "TargetStructureID": 80364, + "Label": "5562-80364 via Unknown from 80370 -> 80371", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80370, + "TargetID": 80371, + "Directional": false + } + ] + }, + { + "ID": 3231, + "SourceStructureID": 5562, + "TargetStructureID": 80368, + "Label": "5562-80368 via Unknown from 80367 -> 80369", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80367, + "TargetID": 80369, + "Directional": false + } + ] + }, + { + "ID": 3232, + "SourceStructureID": 5562, + "TargetStructureID": 80374, + "Label": "5562-80374 via Unknown from 80375 -> 80376", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80375, + "TargetID": 80376, + "Directional": false + } + ] + }, + { + "ID": 3233, + "SourceStructureID": 80378, + "TargetStructureID": 5562, + "Label": "80378-5562 via Adherens from 93087 -> 80377", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93087, + "TargetID": 80377, + "Directional": false + } + ] + }, + { + "ID": 3234, + "SourceStructureID": 5562, + "TargetStructureID": 80399, + "Label": "5562-80399 via Gap Junction from 63284 -> 80676", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63284, + "TargetID": 80676, + "Directional": false + } + ] + }, + { + "ID": 3235, + "SourceStructureID": 80401, + "TargetStructureID": 5562, + "Label": "80401-5562 via Unknown from 80694 -> 80695", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80694, + "TargetID": 80695, + "Directional": false + } + ] + }, + { + "ID": 3236, + "SourceStructureID": 80697, + "TargetStructureID": 5562, + "Label": "80697-5562 via Unknown from 80698 -> 80699", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80698, + "TargetID": 80699, + "Directional": false + } + ] + }, + { + "ID": 3237, + "SourceStructureID": 80702, + "TargetStructureID": 5562, + "Label": "80702-5562 via Unknown from 80704 -> 80705", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80704, + "TargetID": 80705, + "Directional": false + } + ] + }, + { + "ID": 3238, + "SourceStructureID": 80795, + "TargetStructureID": 5562, + "Label": "80795-5562 via Adherens from 80796 -> 63312", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80796, + "TargetID": 63312, + "Directional": false + } + ] + }, + { + "ID": 3239, + "SourceStructureID": 80811, + "TargetStructureID": 5562, + "Label": "80811-5562 via Adherens from 80812 -> 80813", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80812, + "TargetID": 80813, + "Directional": false + } + ] + }, + { + "ID": 3240, + "SourceStructureID": 5562, + "TargetStructureID": 80823, + "Label": "5562-80823 via Adherens from 80822 -> 80824", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80822, + "TargetID": 80824, + "Directional": false + } + ] + }, + { + "ID": 3241, + "SourceStructureID": 5562, + "TargetStructureID": 80836, + "Label": "5562-80836 via Unknown from 80837 -> 80838", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80837, + "TargetID": 80838, + "Directional": false + } + ] + }, + { + "ID": 3242, + "SourceStructureID": 5562, + "TargetStructureID": 80839, + "Label": "5562-80839 via Unknown from 80840 -> 80841", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80840, + "TargetID": 80841, + "Directional": false + } + ] + }, + { + "ID": 3243, + "SourceStructureID": 5562, + "TargetStructureID": 80876, + "Label": "5562-80876 via Adherens from 80888 -> 80887", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80888, + "TargetID": 80887, + "Directional": false + } + ] + }, + { + "ID": 3244, + "SourceStructureID": 5562, + "TargetStructureID": 80885, + "Label": "5562-80885 via Unknown from 126890 -> 126891", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126890, + "TargetID": 126891, + "Directional": false + } + ] + }, + { + "ID": 3245, + "SourceStructureID": 80900, + "TargetStructureID": 5562, + "Label": "80900-5562 via Adherens from 134633 -> 134632", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134633, + "TargetID": 134632, + "Directional": false + } + ] + }, + { + "ID": 3246, + "SourceStructureID": 80900, + "TargetStructureID": 5562, + "Label": "80900-5562 via Unknown from 80901 -> 64194", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80901, + "TargetID": 64194, + "Directional": false + } + ] + }, + { + "ID": 3247, + "SourceStructureID": 5562, + "TargetStructureID": 81712, + "Label": "5562-81712 via Unknown from 78544 -> 81713", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78544, + "TargetID": 81713, + "Directional": false + } + ] + }, + { + "ID": 3248, + "SourceStructureID": 81799, + "TargetStructureID": 5562, + "Label": "81799-5562 via Unknown from 81843 -> 81841", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81843, + "TargetID": 81841, + "Directional": false + } + ] + }, + { + "ID": 3249, + "SourceStructureID": 5562, + "TargetStructureID": 81810, + "Label": "5562-81810 via Adherens from 77243 -> 81812", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77243, + "TargetID": 81812, + "Directional": false + } + ] + }, + { + "ID": 3250, + "SourceStructureID": 84530, + "TargetStructureID": 5562, + "Label": "84530-5562 via Unknown from 134651 -> 134650", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134651, + "TargetID": 134650, + "Directional": false + } + ] + }, + { + "ID": 3251, + "SourceStructureID": 89312, + "TargetStructureID": 5562, + "Label": "89312-5562 via Unknown from 116713 -> 78189", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116713, + "TargetID": 78189, + "Directional": false + } + ] + }, + { + "ID": 3252, + "SourceStructureID": 5563, + "TargetStructureID": 8037, + "Label": "5563-8037 via Adherens from 32392 -> 32391", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 32392, + "TargetID": 32391, + "Directional": false + } + ] + }, + { + "ID": 3253, + "SourceStructureID": 5565, + "TargetStructureID": 5568, + "Label": "5565-5568 via Gap Junction from 50174 -> 50374, 50847 -> 50364, 121318 -> 121317", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50174, + "TargetID": 50374, + "Directional": false + }, + { + "SourceID": 50847, + "TargetID": 50364, + "Directional": false + }, + { + "SourceID": 121318, + "TargetID": 121317, + "Directional": false + } + ] + }, + { + "ID": 3254, + "SourceStructureID": 7024, + "TargetStructureID": 5565, + "Label": "7024-5565 via Gap Junction from 114150 -> 115305", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 114150, + "TargetID": 115305, + "Directional": false + } + ] + }, + { + "ID": 3255, + "SourceStructureID": 5565, + "TargetStructureID": 7040, + "Label": "5565-7040 via Gap Junction from 37692 -> 50890, 50191 -> 50316, 136157 -> 50192, 136164 -> 136163", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 37692, + "TargetID": 50890, + "Directional": false + }, + { + "SourceID": 50191, + "TargetID": 50316, + "Directional": false + }, + { + "SourceID": 136157, + "TargetID": 50192, + "Directional": false + }, + { + "SourceID": 136164, + "TargetID": 136163, + "Directional": false + } + ] + }, + { + "ID": 3256, + "SourceStructureID": 5565, + "TargetStructureID": 7050, + "Label": "5565-7050 via Gap Junction from 32484 -> 14312", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 32484, + "TargetID": 14312, + "Directional": false + } + ] + }, + { + "ID": 3257, + "SourceStructureID": 5565, + "TargetStructureID": 8037, + "Label": "5565-8037 via Gap Junction from 50235 -> 50236, 50814 -> 136198, 50823 -> 50822, 50827 -> 24600, 50839 -> 50838, 136194 -> 136197, 136196 -> 136195, 148264 -> 148265", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50235, + "TargetID": 50236, + "Directional": false + }, + { + "SourceID": 50814, + "TargetID": 136198, + "Directional": false + }, + { + "SourceID": 50823, + "TargetID": 50822, + "Directional": false + }, + { + "SourceID": 50827, + "TargetID": 24600, + "Directional": false + }, + { + "SourceID": 50839, + "TargetID": 50838, + "Directional": false + }, + { + "SourceID": 136194, + "TargetID": 136197, + "Directional": false + }, + { + "SourceID": 136196, + "TargetID": 136195, + "Directional": false + }, + { + "SourceID": 148264, + "TargetID": 148265, + "Directional": false + } + ] + }, + { + "ID": 3258, + "SourceStructureID": 5565, + "TargetStructureID": 8038, + "Label": "5565-8038 via Gap Junction from 37694 -> 50330, 37708 -> 37709, 37710 -> 37711, 50169 -> 50980, 68923 -> 68922", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 37694, + "TargetID": 50330, + "Directional": false + }, + { + "SourceID": 37708, + "TargetID": 37709, + "Directional": false + }, + { + "SourceID": 37710, + "TargetID": 37711, + "Directional": false + }, + { + "SourceID": 50169, + "TargetID": 50980, + "Directional": false + }, + { + "SourceID": 68923, + "TargetID": 68922, + "Directional": false + } + ] + }, + { + "ID": 3259, + "SourceStructureID": 5566, + "TargetStructureID": 59262, + "Label": "5566-59262 via Gap Junction from 59266 -> 59264, 59324 -> 59322", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59266, + "TargetID": 59264, + "Directional": false + }, + { + "SourceID": 59324, + "TargetID": 59322, + "Directional": false + } + ] + }, + { + "ID": 3260, + "SourceStructureID": 5566, + "TargetStructureID": 59278, + "Label": "5566-59278 via Gap Junction from 59269 -> 59279", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59269, + "TargetID": 59279, + "Directional": false + } + ] + }, + { + "ID": 3261, + "SourceStructureID": 59280, + "TargetStructureID": 5566, + "Label": "59280-5566 via Gap Junction from 59281 -> 59267", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59281, + "TargetID": 59267, + "Directional": false + } + ] + }, + { + "ID": 3262, + "SourceStructureID": 59310, + "TargetStructureID": 5566, + "Label": "59310-5566 via Gap Junction from 59311 -> 59309", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59311, + "TargetID": 59309, + "Directional": false + } + ] + }, + { + "ID": 3263, + "SourceStructureID": 8037, + "TargetStructureID": 5568, + "Label": "8037-5568 via Touch from 148214 -> 148213", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 148214, + "TargetID": 148213, + "Directional": false + } + ] + }, + { + "ID": 3264, + "SourceStructureID": 5568, + "TargetStructureID": 46388, + "Label": "5568-46388 via Gap Junction from 121399 -> 121398, 121429 -> 121428, 121475 -> 121474, 121482 -> 121481", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121399, + "TargetID": 121398, + "Directional": false + }, + { + "SourceID": 121429, + "TargetID": 121428, + "Directional": false + }, + { + "SourceID": 121475, + "TargetID": 121474, + "Directional": false + }, + { + "SourceID": 121482, + "TargetID": 121481, + "Directional": false + } + ] + }, + { + "ID": 3265, + "SourceStructureID": 5568, + "TargetStructureID": 50449, + "Label": "5568-50449 via Gap Junction from 49971 -> 50487, 50389 -> 50659, 99185 -> 50622, 120841 -> 120840, 120850 -> 99176, 120853 -> 120852, 121342 -> 121341, 121360 -> 121358, 121417 -> 121416, 121479 -> 121478, 121512 -> 121513, 121532 -> 121533", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49971, + "TargetID": 50487, + "Directional": false + }, + { + "SourceID": 50389, + "TargetID": 50659, + "Directional": false + }, + { + "SourceID": 99185, + "TargetID": 50622, + "Directional": false + }, + { + "SourceID": 120841, + "TargetID": 120840, + "Directional": false + }, + { + "SourceID": 120850, + "TargetID": 99176, + "Directional": false + }, + { + "SourceID": 120853, + "TargetID": 120852, + "Directional": false + }, + { + "SourceID": 121342, + "TargetID": 121341, + "Directional": false + }, + { + "SourceID": 121360, + "TargetID": 121358, + "Directional": false + }, + { + "SourceID": 121417, + "TargetID": 121416, + "Directional": false + }, + { + "SourceID": 121479, + "TargetID": 121478, + "Directional": false + }, + { + "SourceID": 121512, + "TargetID": 121513, + "Directional": false + }, + { + "SourceID": 121532, + "TargetID": 121533, + "Directional": false + } + ] + }, + { + "ID": 3266, + "SourceStructureID": 5568, + "TargetStructureID": 56714, + "Label": "5568-56714 via Unknown from 121225 -> 121226", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121225, + "TargetID": 121226, + "Directional": false + } + ] + }, + { + "ID": 3267, + "SourceStructureID": 5575, + "TargetStructureID": 5575, + "Label": "5575-5575 via Adherens from 22963 -> 22962", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 22963, + "TargetID": 22962, + "Directional": false + } + ] + }, + { + "ID": 3268, + "SourceStructureID": 6156, + "TargetStructureID": 5575, + "Label": "6156-5575 via Unknown from 133149 -> 133150", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133149, + "TargetID": 133150, + "Directional": false + } + ] + }, + { + "ID": 3269, + "SourceStructureID": 5575, + "TargetStructureID": 7568, + "Label": "5575-7568 via Adherens from 27063 -> 27062, 27065 -> 27064", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 27063, + "TargetID": 27062, + "Directional": false + }, + { + "SourceID": 27065, + "TargetID": 27064, + "Directional": false + } + ] + }, + { + "ID": 3270, + "SourceStructureID": 5584, + "TargetStructureID": 5584, + "Label": "5584-5584 via Gap Junction from 126922 -> 126923", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 126922, + "TargetID": 126923, + "Directional": false + } + ] + }, + { + "ID": 3271, + "SourceStructureID": 5584, + "TargetStructureID": 5592, + "Label": "5584-5592 via Gap Junction from 38964 -> 36845, 121801 -> 121800, 121802 -> 57409, 121804 -> 121803, 121807 -> 121806", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38964, + "TargetID": 36845, + "Directional": false + }, + { + "SourceID": 121801, + "TargetID": 121800, + "Directional": false + }, + { + "SourceID": 121802, + "TargetID": 57409, + "Directional": false + }, + { + "SourceID": 121804, + "TargetID": 121803, + "Directional": false + }, + { + "SourceID": 121807, + "TargetID": 121806, + "Directional": false + } + ] + }, + { + "ID": 3272, + "SourceStructureID": 5598, + "TargetStructureID": 5584, + "Label": "5598-5584 via Adherens from 123871 -> 123870, 124473 -> 124474, 126934 -> 126935, 126953 -> 126954", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123871, + "TargetID": 123870, + "Directional": false + }, + { + "SourceID": 124473, + "TargetID": 124474, + "Directional": false + }, + { + "SourceID": 126934, + "TargetID": 126935, + "Directional": false + }, + { + "SourceID": 126953, + "TargetID": 126954, + "Directional": false + } + ] + }, + { + "ID": 3273, + "SourceStructureID": 5584, + "TargetStructureID": 5598, + "Label": "5584-5598 via Gap Junction from 37927 -> 37926, 57124 -> 57123, 114469 -> 114468, 114472 -> 114471, 114479 -> 114476, 114585 -> 114584, 115077 -> 115076, 115131 -> 57183, 123820 -> 123821, 124250 -> 124251, 126920 -> 126921, 147989 -> 147990", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 37927, + "TargetID": 37926, + "Directional": false + }, + { + "SourceID": 57124, + "TargetID": 57123, + "Directional": false + }, + { + "SourceID": 114469, + "TargetID": 114468, + "Directional": false + }, + { + "SourceID": 114472, + "TargetID": 114471, + "Directional": false + }, + { + "SourceID": 114479, + "TargetID": 114476, + "Directional": false + }, + { + "SourceID": 114585, + "TargetID": 114584, + "Directional": false + }, + { + "SourceID": 115077, + "TargetID": 115076, + "Directional": false + }, + { + "SourceID": 115131, + "TargetID": 57183, + "Directional": false + }, + { + "SourceID": 123820, + "TargetID": 123821, + "Directional": false + }, + { + "SourceID": 124250, + "TargetID": 124251, + "Directional": false + }, + { + "SourceID": 126920, + "TargetID": 126921, + "Directional": false + }, + { + "SourceID": 147989, + "TargetID": 147990, + "Directional": false + } + ] + }, + { + "ID": 3274, + "SourceStructureID": 5584, + "TargetStructureID": 5598, + "Label": "5584-5598 via Touch from 123875 -> 123876", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 123875, + "TargetID": 123876, + "Directional": false + } + ] + }, + { + "ID": 3275, + "SourceStructureID": 6047, + "TargetStructureID": 5584, + "Label": "6047-5584 via Gap Junction from 113320 -> 113321", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 113320, + "TargetID": 113321, + "Directional": false + } + ] + }, + { + "ID": 3276, + "SourceStructureID": 6203, + "TargetStructureID": 5584, + "Label": "6203-5584 via Gap Junction from 57221 -> 57220", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57221, + "TargetID": 57220, + "Directional": false + } + ] + }, + { + "ID": 3277, + "SourceStructureID": 7114, + "TargetStructureID": 5584, + "Label": "7114-5584 via Adherens from 124464 -> 124465", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124464, + "TargetID": 124465, + "Directional": false + } + ] + }, + { + "ID": 3278, + "SourceStructureID": 15976, + "TargetStructureID": 5584, + "Label": "15976-5584 via Gap Junction from 57357 -> 57356", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57357, + "TargetID": 57356, + "Directional": false + } + ] + }, + { + "ID": 3279, + "SourceStructureID": 57178, + "TargetStructureID": 5584, + "Label": "57178-5584 via Unknown from 124248 -> 124249", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124248, + "TargetID": 124249, + "Directional": false + } + ] + }, + { + "ID": 3280, + "SourceStructureID": 57218, + "TargetStructureID": 5584, + "Label": "57218-5584 via Gap Junction from 57219 -> 57217", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57219, + "TargetID": 57217, + "Directional": false + } + ] + }, + { + "ID": 3281, + "SourceStructureID": 57360, + "TargetStructureID": 5584, + "Label": "57360-5584 via Gap Junction from 57361 -> 57359, 57363 -> 57362", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57361, + "TargetID": 57359, + "Directional": false + }, + { + "SourceID": 57363, + "TargetID": 57362, + "Directional": false + } + ] + }, + { + "ID": 3282, + "SourceStructureID": 57487, + "TargetStructureID": 5584, + "Label": "57487-5584 via Gap Junction from 57488 -> 57406", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57488, + "TargetID": 57406, + "Directional": false + } + ] + }, + { + "ID": 3283, + "SourceStructureID": 126901, + "TargetStructureID": 5584, + "Label": "126901-5584 via Adherens from 126929 -> 126930", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126929, + "TargetID": 126930, + "Directional": false + } + ] + }, + { + "ID": 3284, + "SourceStructureID": 5584, + "TargetStructureID": 126901, + "Label": "5584-126901 via Unknown from 126908 -> 126909", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126908, + "TargetID": 126909, + "Directional": false + } + ] + }, + { + "ID": 3285, + "SourceStructureID": 136465, + "TargetStructureID": 5587, + "Label": "136465-5587 via Gap Junction from 136468 -> 136464", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136468, + "TargetID": 136464, + "Directional": false + } + ] + }, + { + "ID": 3286, + "SourceStructureID": 5592, + "TargetStructureID": 5592, + "Label": "5592-5592 via Gap Junction from 121797 -> 121798", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121797, + "TargetID": 121798, + "Directional": false + } + ] + }, + { + "ID": 3287, + "SourceStructureID": 5592, + "TargetStructureID": 15976, + "Label": "5592-15976 via Gap Junction from 57490 -> 57493", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57490, + "TargetID": 57493, + "Directional": false + } + ] + }, + { + "ID": 3288, + "SourceStructureID": 92954, + "TargetStructureID": 5592, + "Label": "92954-5592 via Gap Junction from 92958 -> 92961, 121756 -> 121755", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92958, + "TargetID": 92961, + "Directional": false + }, + { + "SourceID": 121756, + "TargetID": 121755, + "Directional": false + } + ] + }, + { + "ID": 3289, + "SourceStructureID": 122018, + "TargetStructureID": 5596, + "Label": "122018-5596 via Gap Junction from 122019 -> 122017", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122019, + "TargetID": 122017, + "Directional": false + } + ] + }, + { + "ID": 3290, + "SourceStructureID": 5598, + "TargetStructureID": 5598, + "Label": "5598-5598 via Gap Junction from 115287 -> 45199, 124164 -> 124165", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115287, + "TargetID": 45199, + "Directional": false + }, + { + "SourceID": 124164, + "TargetID": 124165, + "Directional": false + } + ] + }, + { + "ID": 3291, + "SourceStructureID": 5598, + "TargetStructureID": 5601, + "Label": "5598-5601 via Gap Junction from 123806 -> 123805", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123806, + "TargetID": 123805, + "Directional": false + } + ] + }, + { + "ID": 3292, + "SourceStructureID": 5598, + "TargetStructureID": 5641, + "Label": "5598-5641 via Adherens from 124052 -> 124053, 126939 -> 126940, 147995 -> 147996", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124052, + "TargetID": 124053, + "Directional": false + }, + { + "SourceID": 126939, + "TargetID": 126940, + "Directional": false + }, + { + "SourceID": 147995, + "TargetID": 147996, + "Directional": false + } + ] + }, + { + "ID": 3293, + "SourceStructureID": 5641, + "TargetStructureID": 5598, + "Label": "5641-5598 via Gap Junction from 57507 -> 57484, 114964 -> 114966, 114971 -> 114970, 114985 -> 114986, 114999 -> 114998, 115011 -> 115010, 115030 -> 115028, 115047 -> 115046, 123810 -> 114962, 123816 -> 114967, 124229 -> 124228, 124230 -> 124231, 124241 -> 124242, 124438 -> 124437, 124443 -> 124444, 124478 -> 124479", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57507, + "TargetID": 57484, + "Directional": false + }, + { + "SourceID": 114964, + "TargetID": 114966, + "Directional": false + }, + { + "SourceID": 114971, + "TargetID": 114970, + "Directional": false + }, + { + "SourceID": 114985, + "TargetID": 114986, + "Directional": false + }, + { + "SourceID": 114999, + "TargetID": 114998, + "Directional": false + }, + { + "SourceID": 115011, + "TargetID": 115010, + "Directional": false + }, + { + "SourceID": 115030, + "TargetID": 115028, + "Directional": false + }, + { + "SourceID": 115047, + "TargetID": 115046, + "Directional": false + }, + { + "SourceID": 123810, + "TargetID": 114962, + "Directional": false + }, + { + "SourceID": 123816, + "TargetID": 114967, + "Directional": false + }, + { + "SourceID": 124229, + "TargetID": 124228, + "Directional": false + }, + { + "SourceID": 124230, + "TargetID": 124231, + "Directional": false + }, + { + "SourceID": 124241, + "TargetID": 124242, + "Directional": false + }, + { + "SourceID": 124438, + "TargetID": 124437, + "Directional": false + }, + { + "SourceID": 124443, + "TargetID": 124444, + "Directional": false + }, + { + "SourceID": 124478, + "TargetID": 124479, + "Directional": false + } + ] + }, + { + "ID": 3294, + "SourceStructureID": 5598, + "TargetStructureID": 6047, + "Label": "5598-6047 via Gap Junction from 45200 -> 30637, 113319 -> 113318, 113793 -> 113792", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45200, + "TargetID": 30637, + "Directional": false + }, + { + "SourceID": 113319, + "TargetID": 113318, + "Directional": false + }, + { + "SourceID": 113793, + "TargetID": 113792, + "Directional": false + } + ] + }, + { + "ID": 3295, + "SourceStructureID": 5598, + "TargetStructureID": 6203, + "Label": "5598-6203 via Gap Junction from 124470 -> 124469", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 124470, + "TargetID": 124469, + "Directional": false + } + ] + }, + { + "ID": 3296, + "SourceStructureID": 7113, + "TargetStructureID": 5598, + "Label": "7113-5598 via Adherens from 126938 -> 126937, 126958 -> 126957, 126959 -> 126960", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126938, + "TargetID": 126937, + "Directional": false + }, + { + "SourceID": 126958, + "TargetID": 126957, + "Directional": false + }, + { + "SourceID": 126959, + "TargetID": 126960, + "Directional": false + } + ] + }, + { + "ID": 3297, + "SourceStructureID": 7113, + "TargetStructureID": 5598, + "Label": "7113-5598 via Gap Junction from 24311 -> 115032, 32417 -> 27344, 32418 -> 27343, 36023 -> 27342, 36024 -> 36025, 57082 -> 27353, 82080 -> 82081, 91506 -> 91505, 114600 -> 27345, 115005 -> 115004, 115017 -> 115016, 115036 -> 115035, 124078 -> 124077, 124083 -> 124082, 124092 -> 124091, 124247 -> 124246", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24311, + "TargetID": 115032, + "Directional": false + }, + { + "SourceID": 32417, + "TargetID": 27344, + "Directional": false + }, + { + "SourceID": 32418, + "TargetID": 27343, + "Directional": false + }, + { + "SourceID": 36023, + "TargetID": 27342, + "Directional": false + }, + { + "SourceID": 36024, + "TargetID": 36025, + "Directional": false + }, + { + "SourceID": 57082, + "TargetID": 27353, + "Directional": false + }, + { + "SourceID": 82080, + "TargetID": 82081, + "Directional": false + }, + { + "SourceID": 91506, + "TargetID": 91505, + "Directional": false + }, + { + "SourceID": 114600, + "TargetID": 27345, + "Directional": false + }, + { + "SourceID": 115005, + "TargetID": 115004, + "Directional": false + }, + { + "SourceID": 115017, + "TargetID": 115016, + "Directional": false + }, + { + "SourceID": 115036, + "TargetID": 115035, + "Directional": false + }, + { + "SourceID": 124078, + "TargetID": 124077, + "Directional": false + }, + { + "SourceID": 124083, + "TargetID": 124082, + "Directional": false + }, + { + "SourceID": 124092, + "TargetID": 124091, + "Directional": false + }, + { + "SourceID": 124247, + "TargetID": 124246, + "Directional": false + } + ] + }, + { + "ID": 3298, + "SourceStructureID": 5598, + "TargetStructureID": 7114, + "Label": "5598-7114 via Gap Junction from 12557 -> 12522, 52987 -> 52986, 57186 -> 115116, 59068 -> 59067, 115153 -> 115152, 124186 -> 26610, 124208 -> 124209, 124446 -> 124447, 124467 -> 124466", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 12557, + "TargetID": 12522, + "Directional": false + }, + { + "SourceID": 52987, + "TargetID": 52986, + "Directional": false + }, + { + "SourceID": 57186, + "TargetID": 115116, + "Directional": false + }, + { + "SourceID": 59068, + "TargetID": 59067, + "Directional": false + }, + { + "SourceID": 115153, + "TargetID": 115152, + "Directional": false + }, + { + "SourceID": 124186, + "TargetID": 26610, + "Directional": false + }, + { + "SourceID": 124208, + "TargetID": 124209, + "Directional": false + }, + { + "SourceID": 124446, + "TargetID": 124447, + "Directional": false + }, + { + "SourceID": 124467, + "TargetID": 124466, + "Directional": false + } + ] + }, + { + "ID": 3299, + "SourceStructureID": 5598, + "TargetStructureID": 15977, + "Label": "5598-15977 via Touch from 126945 -> 126946", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 126945, + "TargetID": 126946, + "Directional": false + } + ] + }, + { + "ID": 3300, + "SourceStructureID": 5598, + "TargetStructureID": 35811, + "Label": "5598-35811 via Unknown from 124484 -> 126918", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124484, + "TargetID": 126918, + "Directional": false + } + ] + }, + { + "ID": 3301, + "SourceStructureID": 38949, + "TargetStructureID": 5598, + "Label": "38949-5598 via Adherens from 124476 -> 124475", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124476, + "TargetID": 124475, + "Directional": false + } + ] + }, + { + "ID": 3302, + "SourceStructureID": 5598, + "TargetStructureID": 54698, + "Label": "5598-54698 via Unknown from 115172 -> 115173", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115172, + "TargetID": 115173, + "Directional": false + } + ] + }, + { + "ID": 3303, + "SourceStructureID": 5598, + "TargetStructureID": 57178, + "Label": "5598-57178 via Unknown from 57177 -> 57181", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 57177, + "TargetID": 57181, + "Directional": false + } + ] + }, + { + "ID": 3304, + "SourceStructureID": 57299, + "TargetStructureID": 5598, + "Label": "57299-5598 via Adherens from 123855 -> 123856", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123855, + "TargetID": 123856, + "Directional": false + } + ] + }, + { + "ID": 3305, + "SourceStructureID": 73348, + "TargetStructureID": 5598, + "Label": "73348-5598 via Adherens from 124603 -> 124602", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124603, + "TargetID": 124602, + "Directional": false + } + ] + }, + { + "ID": 3306, + "SourceStructureID": 91578, + "TargetStructureID": 5598, + "Label": "91578-5598 via Adherens from 114939 -> 114938", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 114939, + "TargetID": 114938, + "Directional": false + } + ] + }, + { + "ID": 3307, + "SourceStructureID": 5598, + "TargetStructureID": 114618, + "Label": "5598-114618 via Unknown from 57104 -> 114619", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 57104, + "TargetID": 114619, + "Directional": false + } + ] + }, + { + "ID": 3308, + "SourceStructureID": 5598, + "TargetStructureID": 114996, + "Label": "5598-114996 via Adherens from 115034 -> 123790", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115034, + "TargetID": 123790, + "Directional": false + } + ] + }, + { + "ID": 3309, + "SourceStructureID": 114996, + "TargetStructureID": 5598, + "Label": "114996-5598 via Unknown from 124049 -> 124048, 124051 -> 124050", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124049, + "TargetID": 124048, + "Directional": false + }, + { + "SourceID": 124051, + "TargetID": 124050, + "Directional": false + } + ] + }, + { + "ID": 3310, + "SourceStructureID": 5598, + "TargetStructureID": 115007, + "Label": "5598-115007 via Adherens from 115009 -> 115008", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 115009, + "TargetID": 115008, + "Directional": false + } + ] + }, + { + "ID": 3311, + "SourceStructureID": 5598, + "TargetStructureID": 115118, + "Label": "5598-115118 via Gap Junction from 148028 -> 148029, 148031 -> 148030", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 148028, + "TargetID": 148029, + "Directional": false + }, + { + "SourceID": 148031, + "TargetID": 148030, + "Directional": false + } + ] + }, + { + "ID": 3312, + "SourceStructureID": 115291, + "TargetStructureID": 5598, + "Label": "115291-5598 via Unknown from 124193 -> 124192", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124193, + "TargetID": 124192, + "Directional": false + } + ] + }, + { + "ID": 3313, + "SourceStructureID": 116142, + "TargetStructureID": 5598, + "Label": "116142-5598 via Unknown from 115281 -> 115279, 124194 -> 124195", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115281, + "TargetID": 115279, + "Directional": false + }, + { + "SourceID": 124194, + "TargetID": 124195, + "Directional": false + } + ] + }, + { + "ID": 3314, + "SourceStructureID": 5598, + "TargetStructureID": 124069, + "Label": "5598-124069 via Unknown from 124072 -> 124073, 124090 -> 126916, 126913 -> 124081, 147987 -> 147988", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124072, + "TargetID": 124073, + "Directional": false + }, + { + "SourceID": 124090, + "TargetID": 126916, + "Directional": false + }, + { + "SourceID": 126913, + "TargetID": 124081, + "Directional": false + }, + { + "SourceID": 147987, + "TargetID": 147988, + "Directional": false + } + ] + }, + { + "ID": 3315, + "SourceStructureID": 5598, + "TargetStructureID": 126901, + "Label": "5598-126901 via Unknown from 124605 -> 126932, 126907 -> 114453, 126910 -> 114583", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124605, + "TargetID": 126932, + "Directional": false + }, + { + "SourceID": 126907, + "TargetID": 114453, + "Directional": false + }, + { + "SourceID": 126910, + "TargetID": 114583, + "Directional": false + } + ] + }, + { + "ID": 3316, + "SourceStructureID": 5601, + "TargetStructureID": 5599, + "Label": "5601-5599 via Gap Junction from 92521 -> 92522", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92521, + "TargetID": 92522, + "Directional": false + } + ] + }, + { + "ID": 3317, + "SourceStructureID": 5599, + "TargetStructureID": 5635, + "Label": "5599-5635 via Gap Junction from 55948 -> 55947, 66592 -> 66593, 117765 -> 117764, 117766 -> 56138, 117772 -> 117769", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55948, + "TargetID": 55947, + "Directional": false + }, + { + "SourceID": 66592, + "TargetID": 66593, + "Directional": false + }, + { + "SourceID": 117765, + "TargetID": 117764, + "Directional": false + }, + { + "SourceID": 117766, + "TargetID": 56138, + "Directional": false + }, + { + "SourceID": 117772, + "TargetID": 117769, + "Directional": false + } + ] + }, + { + "ID": 3318, + "SourceStructureID": 5638, + "TargetStructureID": 5599, + "Label": "5638-5599 via Gap Junction from 117195 -> 117194", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117195, + "TargetID": 117194, + "Directional": false + } + ] + }, + { + "ID": 3319, + "SourceStructureID": 5860, + "TargetStructureID": 5599, + "Label": "5860-5599 via Gap Junction from 38332 -> 38331, 118432 -> 118431", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38332, + "TargetID": 38331, + "Directional": false + }, + { + "SourceID": 118432, + "TargetID": 118431, + "Directional": false + } + ] + }, + { + "ID": 3320, + "SourceStructureID": 5599, + "TargetStructureID": 6115, + "Label": "5599-6115 via Adherens from 72333 -> 72334, 73231 -> 73232, 73954 -> 73955, 75846 -> 75847, 135178 -> 135179", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72333, + "TargetID": 72334, + "Directional": false + }, + { + "SourceID": 73231, + "TargetID": 73232, + "Directional": false + }, + { + "SourceID": 73954, + "TargetID": 73955, + "Directional": false + }, + { + "SourceID": 75846, + "TargetID": 75847, + "Directional": false + }, + { + "SourceID": 135178, + "TargetID": 135179, + "Directional": false + } + ] + }, + { + "ID": 3321, + "SourceStructureID": 6115, + "TargetStructureID": 5599, + "Label": "6115-5599 via Gap Junction from 56158 -> 56157, 56258 -> 74006, 56308 -> 73944, 73234 -> 73233, 75511 -> 75510, 116741 -> 116742, 116745 -> 116746", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56158, + "TargetID": 56157, + "Directional": false + }, + { + "SourceID": 56258, + "TargetID": 74006, + "Directional": false + }, + { + "SourceID": 56308, + "TargetID": 73944, + "Directional": false + }, + { + "SourceID": 73234, + "TargetID": 73233, + "Directional": false + }, + { + "SourceID": 75511, + "TargetID": 75510, + "Directional": false + }, + { + "SourceID": 116741, + "TargetID": 116742, + "Directional": false + }, + { + "SourceID": 116745, + "TargetID": 116746, + "Directional": false + } + ] + }, + { + "ID": 3322, + "SourceStructureID": 5599, + "TargetStructureID": 7113, + "Label": "5599-7113 via Gap Junction from 27352 -> 27351, 37913 -> 37912, 118424 -> 118425, 118430 -> 118429, 128734 -> 128735", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 27352, + "TargetID": 27351, + "Directional": false + }, + { + "SourceID": 37913, + "TargetID": 37912, + "Directional": false + }, + { + "SourceID": 118424, + "TargetID": 118425, + "Directional": false + }, + { + "SourceID": 118430, + "TargetID": 118429, + "Directional": false + }, + { + "SourceID": 128734, + "TargetID": 128735, + "Directional": false + } + ] + }, + { + "ID": 3323, + "SourceStructureID": 7114, + "TargetStructureID": 5599, + "Label": "7114-5599 via Gap Junction from 116822 -> 116821", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116822, + "TargetID": 116821, + "Directional": false + } + ] + }, + { + "ID": 3324, + "SourceStructureID": 5599, + "TargetStructureID": 7231, + "Label": "5599-7231 via Adherens from 117017 -> 117016", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117017, + "TargetID": 117016, + "Directional": false + } + ] + }, + { + "ID": 3325, + "SourceStructureID": 15977, + "TargetStructureID": 5599, + "Label": "15977-5599 via Adherens from 116938 -> 116937, 117192 -> 117191", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116938, + "TargetID": 116937, + "Directional": false + }, + { + "SourceID": 117192, + "TargetID": 117191, + "Directional": false + } + ] + }, + { + "ID": 3326, + "SourceStructureID": 15977, + "TargetStructureID": 5599, + "Label": "15977-5599 via Gap Junction from 33955 -> 115585, 56319 -> 56321, 117193 -> 117189", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 33955, + "TargetID": 115585, + "Directional": false + }, + { + "SourceID": 56319, + "TargetID": 56321, + "Directional": false + }, + { + "SourceID": 117193, + "TargetID": 117189, + "Directional": false + } + ] + }, + { + "ID": 3327, + "SourceStructureID": 5599, + "TargetStructureID": 72299, + "Label": "5599-72299 via Gap Junction from 56154 -> 82116", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56154, + "TargetID": 82116, + "Directional": false + } + ] + }, + { + "ID": 3328, + "SourceStructureID": 5599, + "TargetStructureID": 131156, + "Label": "5599-131156 via Gap Junction from 56126 -> 133802", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56126, + "TargetID": 133802, + "Directional": false + } + ] + }, + { + "ID": 3329, + "SourceStructureID": 5600, + "TargetStructureID": 6958, + "Label": "5600-6958 via Adherens from 116668 -> 116636, 116687 -> 116686", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116668, + "TargetID": 116636, + "Directional": false + }, + { + "SourceID": 116687, + "TargetID": 116686, + "Directional": false + } + ] + }, + { + "ID": 3330, + "SourceStructureID": 5600, + "TargetStructureID": 7113, + "Label": "5600-7113 via Gap Junction from 117246 -> 27356", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117246, + "TargetID": 27356, + "Directional": false + } + ] + }, + { + "ID": 3331, + "SourceStructureID": 7114, + "TargetStructureID": 5600, + "Label": "7114-5600 via Gap Junction from 26617 -> 26623, 71355 -> 26616, 116685 -> 122902, 116826 -> 116825, 116830 -> 116824, 124449 -> 124450, 124451 -> 124452", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 26617, + "TargetID": 26623, + "Directional": false + }, + { + "SourceID": 71355, + "TargetID": 26616, + "Directional": false + }, + { + "SourceID": 116685, + "TargetID": 122902, + "Directional": false + }, + { + "SourceID": 116826, + "TargetID": 116825, + "Directional": false + }, + { + "SourceID": 116830, + "TargetID": 116824, + "Directional": false + }, + { + "SourceID": 124449, + "TargetID": 124450, + "Directional": false + }, + { + "SourceID": 124451, + "TargetID": 124452, + "Directional": false + } + ] + }, + { + "ID": 3332, + "SourceStructureID": 7231, + "TargetStructureID": 5600, + "Label": "7231-5600 via Unknown from 116998 -> 116997", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 116998, + "TargetID": 116997, + "Directional": false + } + ] + }, + { + "ID": 3333, + "SourceStructureID": 39319, + "TargetStructureID": 5600, + "Label": "39319-5600 via Adherens from 121945 -> 121944", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 121945, + "TargetID": 121944, + "Directional": false + } + ] + }, + { + "ID": 3334, + "SourceStructureID": 5601, + "TargetStructureID": 5601, + "Label": "5601-5601 via Gap Junction from 127568 -> 135646", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 127568, + "TargetID": 135646, + "Directional": false + } + ] + }, + { + "ID": 3335, + "SourceStructureID": 5601, + "TargetStructureID": 5637, + "Label": "5601-5637 via Gap Junction from 56029 -> 56028, 127622 -> 127623", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56029, + "TargetID": 56028, + "Directional": false + }, + { + "SourceID": 127622, + "TargetID": 127623, + "Directional": false + } + ] + }, + { + "ID": 3336, + "SourceStructureID": 5637, + "TargetStructureID": 5601, + "Label": "5637-5601 via Touch from 91482 -> 91481, 135630 -> 135631", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 91482, + "TargetID": 91481, + "Directional": false + }, + { + "SourceID": 135630, + "TargetID": 135631, + "Directional": false + } + ] + }, + { + "ID": 3337, + "SourceStructureID": 5650, + "TargetStructureID": 5601, + "Label": "5650-5601 via Gap Junction from 56107 -> 56106", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56107, + "TargetID": 56106, + "Directional": false + } + ] + }, + { + "ID": 3338, + "SourceStructureID": 5601, + "TargetStructureID": 6117, + "Label": "5601-6117 via Gap Junction from 45391 -> 30915, 60117 -> 60056", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45391, + "TargetID": 30915, + "Directional": false + }, + { + "SourceID": 60117, + "TargetID": 60056, + "Directional": false + } + ] + }, + { + "ID": 3339, + "SourceStructureID": 5601, + "TargetStructureID": 7113, + "Label": "5601-7113 via Gap Junction from 15250 -> 15246, 29944 -> 29946, 29945 -> 29942, 54474 -> 54473, 54801 -> 54800, 91431 -> 91430, 92106 -> 127187, 124059 -> 124058", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 15250, + "TargetID": 15246, + "Directional": false + }, + { + "SourceID": 29944, + "TargetID": 29946, + "Directional": false + }, + { + "SourceID": 29945, + "TargetID": 29942, + "Directional": false + }, + { + "SourceID": 54474, + "TargetID": 54473, + "Directional": false + }, + { + "SourceID": 54801, + "TargetID": 54800, + "Directional": false + }, + { + "SourceID": 91431, + "TargetID": 91430, + "Directional": false + }, + { + "SourceID": 92106, + "TargetID": 127187, + "Directional": false + }, + { + "SourceID": 124059, + "TargetID": 124058, + "Directional": false + } + ] + }, + { + "ID": 3340, + "SourceStructureID": 5601, + "TargetStructureID": 7114, + "Label": "5601-7114 via Gap Junction from 36037 -> 122807, 57372 -> 57371, 134797 -> 127519", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 36037, + "TargetID": 122807, + "Directional": false + }, + { + "SourceID": 57372, + "TargetID": 57371, + "Directional": false + }, + { + "SourceID": 134797, + "TargetID": 127519, + "Directional": false + } + ] + }, + { + "ID": 3341, + "SourceStructureID": 7114, + "TargetStructureID": 5601, + "Label": "7114-5601 via Touch from 135628 -> 135629", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 135628, + "TargetID": 135629, + "Directional": false + } + ] + }, + { + "ID": 3342, + "SourceStructureID": 9769, + "TargetStructureID": 5601, + "Label": "9769-5601 via Adherens from 127377 -> 127376, 127561 -> 127562", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127377, + "TargetID": 127376, + "Directional": false + }, + { + "SourceID": 127561, + "TargetID": 127562, + "Directional": false + } + ] + }, + { + "ID": 3343, + "SourceStructureID": 9769, + "TargetStructureID": 5601, + "Label": "9769-5601 via Unknown from 127211 -> 127210, 127566 -> 127567", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127211, + "TargetID": 127210, + "Directional": false + }, + { + "SourceID": 127566, + "TargetID": 127567, + "Directional": false + } + ] + }, + { + "ID": 3344, + "SourceStructureID": 5601, + "TargetStructureID": 11229, + "Label": "5601-11229 via Gap Junction from 58588 -> 58587, 91444 -> 15633, 91480 -> 135680", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 58588, + "TargetID": 58587, + "Directional": false + }, + { + "SourceID": 91444, + "TargetID": 15633, + "Directional": false + }, + { + "SourceID": 91480, + "TargetID": 135680, + "Directional": false + } + ] + }, + { + "ID": 3345, + "SourceStructureID": 5601, + "TargetStructureID": 23836, + "Label": "5601-23836 via Adherens from 127427 -> 127431", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127427, + "TargetID": 127431, + "Directional": false + } + ] + }, + { + "ID": 3346, + "SourceStructureID": 33057, + "TargetStructureID": 5601, + "Label": "33057-5601 via Unknown from 127564 -> 127563", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127564, + "TargetID": 127563, + "Directional": false + } + ] + }, + { + "ID": 3347, + "SourceStructureID": 34055, + "TargetStructureID": 5601, + "Label": "34055-5601 via Unknown from 127166 -> 127165", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127166, + "TargetID": 127165, + "Directional": false + } + ] + }, + { + "ID": 3348, + "SourceStructureID": 5601, + "TargetStructureID": 35180, + "Label": "5601-35180 via Unknown from 127576 -> 127577", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127576, + "TargetID": 127577, + "Directional": false + } + ] + }, + { + "ID": 3349, + "SourceStructureID": 56108, + "TargetStructureID": 5601, + "Label": "56108-5601 via Unknown from 56109 -> 56105", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 56109, + "TargetID": 56105, + "Directional": false + } + ] + }, + { + "ID": 3350, + "SourceStructureID": 5601, + "TargetStructureID": 58757, + "Label": "5601-58757 via Adherens from 127416 -> 127420", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127416, + "TargetID": 127420, + "Directional": false + } + ] + }, + { + "ID": 3351, + "SourceStructureID": 5601, + "TargetStructureID": 84118, + "Label": "5601-84118 via Adherens from 127617 -> 127618", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127617, + "TargetID": 127618, + "Directional": false + } + ] + }, + { + "ID": 3352, + "SourceStructureID": 5601, + "TargetStructureID": 158859, + "Label": "5601-158859 via Unknown from 126894 -> 158860", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126894, + "TargetID": 158860, + "Directional": false + } + ] + }, + { + "ID": 3353, + "SourceStructureID": 5606, + "TargetStructureID": 5607, + "Label": "5606-5607 via Adherens from 36905 -> 38962", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 36905, + "TargetID": 38962, + "Directional": false + } + ] + }, + { + "ID": 3354, + "SourceStructureID": 5606, + "TargetStructureID": 5607, + "Label": "5606-5607 via Gap Junction from 36907 -> 38963, 38946 -> 38944, 43051 -> 43050, 121851 -> 121850", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 36907, + "TargetID": 38963, + "Directional": false + }, + { + "SourceID": 38946, + "TargetID": 38944, + "Directional": false + }, + { + "SourceID": 43051, + "TargetID": 43050, + "Directional": false + }, + { + "SourceID": 121851, + "TargetID": 121850, + "Directional": false + } + ] + }, + { + "ID": 3355, + "SourceStructureID": 5606, + "TargetStructureID": 5608, + "Label": "5606-5608 via Gap Junction from 42843 -> 42842, 118335 -> 120572, 120880 -> 120879, 123110 -> 123108, 123111 -> 123112, 123113 -> 123114", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 42843, + "TargetID": 42842, + "Directional": false + }, + { + "SourceID": 118335, + "TargetID": 120572, + "Directional": false + }, + { + "SourceID": 120880, + "TargetID": 120879, + "Directional": false + }, + { + "SourceID": 123110, + "TargetID": 123108, + "Directional": false + }, + { + "SourceID": 123111, + "TargetID": 123112, + "Directional": false + }, + { + "SourceID": 123113, + "TargetID": 123114, + "Directional": false + } + ] + }, + { + "ID": 3356, + "SourceStructureID": 5637, + "TargetStructureID": 5606, + "Label": "5637-5606 via Gap Junction from 92987 -> 92988", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92987, + "TargetID": 92988, + "Directional": false + } + ] + }, + { + "ID": 3357, + "SourceStructureID": 5606, + "TargetStructureID": 6909, + "Label": "5606-6909 via Gap Junction from 121683 -> 121682, 121687 -> 121686, 123103 -> 123107", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121683, + "TargetID": 121682, + "Directional": false + }, + { + "SourceID": 121687, + "TargetID": 121686, + "Directional": false + }, + { + "SourceID": 123103, + "TargetID": 123107, + "Directional": false + } + ] + }, + { + "ID": 3358, + "SourceStructureID": 5606, + "TargetStructureID": 6909, + "Label": "5606-6909 via Unknown from 122651 -> 122650", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 122651, + "TargetID": 122650, + "Directional": false + } + ] + }, + { + "ID": 3359, + "SourceStructureID": 53828, + "TargetStructureID": 5606, + "Label": "53828-5606 via Gap Junction from 54664 -> 54663, 121672 -> 121673, 159434 -> 159433, 159436 -> 159435", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54664, + "TargetID": 54663, + "Directional": false + }, + { + "SourceID": 121672, + "TargetID": 121673, + "Directional": false + }, + { + "SourceID": 159434, + "TargetID": 159433, + "Directional": false + }, + { + "SourceID": 159436, + "TargetID": 159435, + "Directional": false + } + ] + }, + { + "ID": 3360, + "SourceStructureID": 53872, + "TargetStructureID": 5606, + "Label": "53872-5606 via Adherens from 159393 -> 159392", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159393, + "TargetID": 159392, + "Directional": false + } + ] + }, + { + "ID": 3361, + "SourceStructureID": 53872, + "TargetStructureID": 5606, + "Label": "53872-5606 via Gap Junction from 159386 -> 123101, 159395 -> 123102, 159417 -> 159418", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 159386, + "TargetID": 123101, + "Directional": false + }, + { + "SourceID": 159395, + "TargetID": 123102, + "Directional": false + }, + { + "SourceID": 159417, + "TargetID": 159418, + "Directional": false + } + ] + }, + { + "ID": 3362, + "SourceStructureID": 5606, + "TargetStructureID": 159437, + "Label": "5606-159437 via Adherens from 159442 -> 159441", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159442, + "TargetID": 159441, + "Directional": false + } + ] + }, + { + "ID": 3363, + "SourceStructureID": 5606, + "TargetStructureID": 159437, + "Label": "5606-159437 via Gap Junction from 159439 -> 159440", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 159439, + "TargetID": 159440, + "Directional": false + } + ] + }, + { + "ID": 3364, + "SourceStructureID": 5607, + "TargetStructureID": 5637, + "Label": "5607-5637 via Gap Junction from 121841 -> 121840", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121841, + "TargetID": 121840, + "Directional": false + } + ] + }, + { + "ID": 3365, + "SourceStructureID": 5607, + "TargetStructureID": 7149, + "Label": "5607-7149 via Gap Junction from 121831 -> 121829", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121831, + "TargetID": 121829, + "Directional": false + } + ] + }, + { + "ID": 3366, + "SourceStructureID": 7279, + "TargetStructureID": 5607, + "Label": "7279-5607 via Gap Junction from 38943 -> 38942, 121847 -> 121846, 121849 -> 121848, 123519 -> 123518", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38943, + "TargetID": 38942, + "Directional": false + }, + { + "SourceID": 121847, + "TargetID": 121846, + "Directional": false + }, + { + "SourceID": 121849, + "TargetID": 121848, + "Directional": false + }, + { + "SourceID": 123519, + "TargetID": 123518, + "Directional": false + } + ] + }, + { + "ID": 3367, + "SourceStructureID": 58682, + "TargetStructureID": 5607, + "Label": "58682-5607 via Gap Junction from 58683 -> 54865", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 58683, + "TargetID": 54865, + "Directional": false + } + ] + }, + { + "ID": 3368, + "SourceStructureID": 5637, + "TargetStructureID": 5608, + "Label": "5637-5608 via Gap Junction from 56013 -> 147523, 121837 -> 121836, 121842 -> 121843, 147525 -> 147524, 147527 -> 147526", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56013, + "TargetID": 147523, + "Directional": false + }, + { + "SourceID": 121837, + "TargetID": 121836, + "Directional": false + }, + { + "SourceID": 121842, + "TargetID": 121843, + "Directional": false + }, + { + "SourceID": 147525, + "TargetID": 147524, + "Directional": false + }, + { + "SourceID": 147527, + "TargetID": 147526, + "Directional": false + } + ] + }, + { + "ID": 3369, + "SourceStructureID": 7113, + "TargetStructureID": 5609, + "Label": "7113-5609 via Adherens from 54796 -> 54797", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54796, + "TargetID": 54797, + "Directional": false + } + ] + }, + { + "ID": 3370, + "SourceStructureID": 30332, + "TargetStructureID": 5618, + "Label": "30332-5618 via Gap Junction from 66008 -> 66007", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 66008, + "TargetID": 66007, + "Directional": false + } + ] + }, + { + "ID": 3371, + "SourceStructureID": 5618, + "TargetStructureID": 66004, + "Label": "5618-66004 via Adherens from 66003 -> 66005", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66003, + "TargetID": 66005, + "Directional": false + } + ] + }, + { + "ID": 3372, + "SourceStructureID": 5623, + "TargetStructureID": 5623, + "Label": "5623-5623 via Gap Junction from 123704 -> 123702", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123704, + "TargetID": 123702, + "Directional": false + } + ] + }, + { + "ID": 3373, + "SourceStructureID": 5623, + "TargetStructureID": 6589, + "Label": "5623-6589 via Gap Junction from 130631 -> 130630", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 130631, + "TargetID": 130630, + "Directional": false + } + ] + }, + { + "ID": 3374, + "SourceStructureID": 5623, + "TargetStructureID": 6997, + "Label": "5623-6997 via Adherens from 136653 -> 136652, 136768 -> 136769", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136653, + "TargetID": 136652, + "Directional": false + }, + { + "SourceID": 136768, + "TargetID": 136769, + "Directional": false + } + ] + }, + { + "ID": 3375, + "SourceStructureID": 6997, + "TargetStructureID": 5623, + "Label": "6997-5623 via Gap Junction from 40384 -> 40383, 52738 -> 52739", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 40384, + "TargetID": 40383, + "Directional": false + }, + { + "SourceID": 52738, + "TargetID": 52739, + "Directional": false + } + ] + }, + { + "ID": 3376, + "SourceStructureID": 5623, + "TargetStructureID": 94784, + "Label": "5623-94784 via Adherens from 94786 -> 94787", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 94786, + "TargetID": 94787, + "Directional": false + } + ] + }, + { + "ID": 3377, + "SourceStructureID": 5631, + "TargetStructureID": 69537, + "Label": "5631-69537 via Adherens from 69594 -> 69593", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 69594, + "TargetID": 69593, + "Directional": false + } + ] + }, + { + "ID": 3378, + "SourceStructureID": 5860, + "TargetStructureID": 5635, + "Label": "5860-5635 via Gap Junction from 28806 -> 28805, 55960 -> 55959, 135577 -> 135578, 147677 -> 24728", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 28806, + "TargetID": 28805, + "Directional": false + }, + { + "SourceID": 55960, + "TargetID": 55959, + "Directional": false + }, + { + "SourceID": 135577, + "TargetID": 135578, + "Directional": false + }, + { + "SourceID": 147677, + "TargetID": 24728, + "Directional": false + } + ] + }, + { + "ID": 3379, + "SourceStructureID": 5637, + "TargetStructureID": 5641, + "Label": "5637-5641 via Gap Junction from 54787 -> 39054, 54789 -> 54788, 55820 -> 55819, 58566 -> 58565", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54787, + "TargetID": 39054, + "Directional": false + }, + { + "SourceID": 54789, + "TargetID": 54788, + "Directional": false + }, + { + "SourceID": 55820, + "TargetID": 55819, + "Directional": false + }, + { + "SourceID": 58566, + "TargetID": 58565, + "Directional": false + } + ] + }, + { + "ID": 3380, + "SourceStructureID": 7113, + "TargetStructureID": 5637, + "Label": "7113-5637 via Gap Junction from 54799 -> 54794", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54799, + "TargetID": 54794, + "Directional": false + } + ] + }, + { + "ID": 3381, + "SourceStructureID": 5637, + "TargetStructureID": 7114, + "Label": "5637-7114 via Gap Junction from 31387 -> 31386, 135627 -> 56056", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 31387, + "TargetID": 31386, + "Directional": false + }, + { + "SourceID": 135627, + "TargetID": 56056, + "Directional": false + } + ] + }, + { + "ID": 3382, + "SourceStructureID": 5637, + "TargetStructureID": 11229, + "Label": "5637-11229 via Gap Junction from 39082 -> 39083, 58575 -> 58574, 135679 -> 56047, 135681 -> 56040", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 39082, + "TargetID": 39083, + "Directional": false + }, + { + "SourceID": 58575, + "TargetID": 58574, + "Directional": false + }, + { + "SourceID": 135679, + "TargetID": 56047, + "Directional": false + }, + { + "SourceID": 135681, + "TargetID": 56040, + "Directional": false + } + ] + }, + { + "ID": 3383, + "SourceStructureID": 5638, + "TargetStructureID": 7279, + "Label": "5638-7279 via Gap Junction from 117181 -> 118943", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117181, + "TargetID": 118943, + "Directional": false + } + ] + }, + { + "ID": 3384, + "SourceStructureID": 15977, + "TargetStructureID": 5638, + "Label": "15977-5638 via Adherens from 33976 -> 33975", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 33976, + "TargetID": 33975, + "Directional": false + } + ] + }, + { + "ID": 3385, + "SourceStructureID": 5638, + "TargetStructureID": 15977, + "Label": "5638-15977 via Gap Junction from 56419 -> 56418, 60603 -> 60602, 117089 -> 117088, 117103 -> 117102, 117177 -> 117176", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56419, + "TargetID": 56418, + "Directional": false + }, + { + "SourceID": 60603, + "TargetID": 60602, + "Directional": false + }, + { + "SourceID": 117089, + "TargetID": 117088, + "Directional": false + }, + { + "SourceID": 117103, + "TargetID": 117102, + "Directional": false + }, + { + "SourceID": 117177, + "TargetID": 117176, + "Directional": false + } + ] + }, + { + "ID": 3386, + "SourceStructureID": 25182, + "TargetStructureID": 5638, + "Label": "25182-5638 via Adherens from 25187 -> 66242", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 25187, + "TargetID": 66242, + "Directional": false + } + ] + }, + { + "ID": 3387, + "SourceStructureID": 71411, + "TargetStructureID": 5638, + "Label": "71411-5638 via Gap Junction from 71959 -> 71404", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71959, + "TargetID": 71404, + "Directional": false + } + ] + }, + { + "ID": 3388, + "SourceStructureID": 117112, + "TargetStructureID": 5638, + "Label": "117112-5638 via Gap Junction from 117114 -> 117111, 117116 -> 117115", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117114, + "TargetID": 117111, + "Directional": false + }, + { + "SourceID": 117116, + "TargetID": 117115, + "Directional": false + } + ] + }, + { + "ID": 3389, + "SourceStructureID": 117127, + "TargetStructureID": 5638, + "Label": "117127-5638 via Gap Junction from 117128 -> 117126", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117128, + "TargetID": 117126, + "Directional": false + } + ] + }, + { + "ID": 3390, + "SourceStructureID": 5640, + "TargetStructureID": 5640, + "Label": "5640-5640 via Gap Junction from 136431 -> 136430", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136431, + "TargetID": 136430, + "Directional": false + } + ] + }, + { + "ID": 3391, + "SourceStructureID": 136427, + "TargetStructureID": 5640, + "Label": "136427-5640 via Gap Junction from 136428 -> 136426", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136428, + "TargetID": 136426, + "Directional": false + } + ] + }, + { + "ID": 3392, + "SourceStructureID": 15976, + "TargetStructureID": 5641, + "Label": "15976-5641 via Gap Junction from 57520 -> 57519, 58564 -> 57516", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57520, + "TargetID": 57519, + "Directional": false + }, + { + "SourceID": 58564, + "TargetID": 57516, + "Directional": false + } + ] + }, + { + "ID": 3393, + "SourceStructureID": 124069, + "TargetStructureID": 5641, + "Label": "124069-5641 via Unknown from 147985 -> 147986", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 147985, + "TargetID": 147986, + "Directional": false + } + ] + }, + { + "ID": 3394, + "SourceStructureID": 30177, + "TargetStructureID": 5643, + "Label": "30177-5643 via Gap Junction from 131968 -> 131969", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131968, + "TargetID": 131969, + "Directional": false + } + ] + }, + { + "ID": 3395, + "SourceStructureID": 5645, + "TargetStructureID": 5645, + "Label": "5645-5645 via Gap Junction from 47100 -> 47099, 135383 -> 135382", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47100, + "TargetID": 47099, + "Directional": false + }, + { + "SourceID": 135383, + "TargetID": 135382, + "Directional": false + } + ] + }, + { + "ID": 3396, + "SourceStructureID": 5645, + "TargetStructureID": 5649, + "Label": "5645-5649 via Adherens from 135434 -> 135433", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135434, + "TargetID": 135433, + "Directional": false + } + ] + }, + { + "ID": 3397, + "SourceStructureID": 5645, + "TargetStructureID": 5649, + "Label": "5645-5649 via Gap Junction from 54526 -> 54297, 108495 -> 108484, 108496 -> 108486", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54526, + "TargetID": 54297, + "Directional": false + }, + { + "SourceID": 108495, + "TargetID": 108484, + "Directional": false + }, + { + "SourceID": 108496, + "TargetID": 108486, + "Directional": false + } + ] + }, + { + "ID": 3398, + "SourceStructureID": 5645, + "TargetStructureID": 5916, + "Label": "5645-5916 via Gap Junction from 109476 -> 109473", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 109476, + "TargetID": 109473, + "Directional": false + } + ] + }, + { + "ID": 3399, + "SourceStructureID": 6121, + "TargetStructureID": 5645, + "Label": "6121-5645 via Touch from 147839 -> 147838", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 147839, + "TargetID": 147838, + "Directional": false + } + ] + }, + { + "ID": 3400, + "SourceStructureID": 6142, + "TargetStructureID": 5645, + "Label": "6142-5645 via Gap Junction from 108667 -> 108647", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 108667, + "TargetID": 108647, + "Directional": false + } + ] + }, + { + "ID": 3401, + "SourceStructureID": 7904, + "TargetStructureID": 5645, + "Label": "7904-5645 via Gap Junction from 54315 -> 54314, 105842 -> 105841, 108583 -> 108581, 108591 -> 108588, 122376 -> 122377, 130621 -> 130620", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54315, + "TargetID": 54314, + "Directional": false + }, + { + "SourceID": 105842, + "TargetID": 105841, + "Directional": false + }, + { + "SourceID": 108583, + "TargetID": 108581, + "Directional": false + }, + { + "SourceID": 108591, + "TargetID": 108588, + "Directional": false + }, + { + "SourceID": 122376, + "TargetID": 122377, + "Directional": false + }, + { + "SourceID": 130621, + "TargetID": 130620, + "Directional": false + } + ] + }, + { + "ID": 3402, + "SourceStructureID": 5645, + "TargetStructureID": 7951, + "Label": "5645-7951 via Gap Junction from 47695 -> 118977, 118976 -> 118975, 118978 -> 47719, 118987 -> 47750", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47695, + "TargetID": 118977, + "Directional": false + }, + { + "SourceID": 118976, + "TargetID": 118975, + "Directional": false + }, + { + "SourceID": 118978, + "TargetID": 47719, + "Directional": false + }, + { + "SourceID": 118987, + "TargetID": 47750, + "Directional": false + } + ] + }, + { + "ID": 3403, + "SourceStructureID": 8032, + "TargetStructureID": 5645, + "Label": "8032-5645 via Gap Junction from 147836 -> 147835", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 147836, + "TargetID": 147835, + "Directional": false + } + ] + }, + { + "ID": 3404, + "SourceStructureID": 31334, + "TargetStructureID": 5645, + "Label": "31334-5645 via Gap Junction from 47409 -> 31333", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47409, + "TargetID": 31333, + "Directional": false + } + ] + }, + { + "ID": 3405, + "SourceStructureID": 77664, + "TargetStructureID": 5645, + "Label": "77664-5645 via Adherens from 77666 -> 77667", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77666, + "TargetID": 77667, + "Directional": false + } + ] + }, + { + "ID": 3406, + "SourceStructureID": 105780, + "TargetStructureID": 5645, + "Label": "105780-5645 via Gap Junction from 108552 -> 108551", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 108552, + "TargetID": 108551, + "Directional": false + } + ] + }, + { + "ID": 3407, + "SourceStructureID": 5648, + "TargetStructureID": 13469, + "Label": "5648-13469 via Adherens from 130122 -> 130121", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130122, + "TargetID": 130121, + "Directional": false + } + ] + }, + { + "ID": 3408, + "SourceStructureID": 13469, + "TargetStructureID": 5648, + "Label": "13469-5648 via Gap Junction from 130123 -> 130124", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 130123, + "TargetID": 130124, + "Directional": false + } + ] + }, + { + "ID": 3409, + "SourceStructureID": 5649, + "TargetStructureID": 5649, + "Label": "5649-5649 via Adherens from 104603 -> 104604", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104603, + "TargetID": 104604, + "Directional": false + } + ] + }, + { + "ID": 3410, + "SourceStructureID": 5649, + "TargetStructureID": 5649, + "Label": "5649-5649 via Gap Junction from 108489 -> 108488, 134965 -> 134966", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 108489, + "TargetID": 108488, + "Directional": false + }, + { + "SourceID": 134965, + "TargetID": 134966, + "Directional": false + } + ] + }, + { + "ID": 3411, + "SourceStructureID": 5649, + "TargetStructureID": 5916, + "Label": "5649-5916 via Adherens from 134978 -> 134977", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134978, + "TargetID": 134977, + "Directional": false + } + ] + }, + { + "ID": 3412, + "SourceStructureID": 5649, + "TargetStructureID": 5916, + "Label": "5649-5916 via Gap Junction from 54116 -> 71971, 71973 -> 71972", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54116, + "TargetID": 71971, + "Directional": false + }, + { + "SourceID": 71973, + "TargetID": 71972, + "Directional": false + } + ] + }, + { + "ID": 3413, + "SourceStructureID": 6115, + "TargetStructureID": 5649, + "Label": "6115-5649 via Adherens from 131168 -> 131169", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131168, + "TargetID": 131169, + "Directional": false + } + ] + }, + { + "ID": 3414, + "SourceStructureID": 6115, + "TargetStructureID": 5649, + "Label": "6115-5649 via Gap Junction from 55753 -> 55752, 55888 -> 55886, 60057 -> 76140, 75439 -> 105395, 134958 -> 134957", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55753, + "TargetID": 55752, + "Directional": false + }, + { + "SourceID": 55888, + "TargetID": 55886, + "Directional": false + }, + { + "SourceID": 60057, + "TargetID": 76140, + "Directional": false + }, + { + "SourceID": 75439, + "TargetID": 105395, + "Directional": false + }, + { + "SourceID": 134958, + "TargetID": 134957, + "Directional": false + } + ] + }, + { + "ID": 3415, + "SourceStructureID": 5649, + "TargetStructureID": 6120, + "Label": "5649-6120 via Gap Junction from 111023 -> 114843", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 111023, + "TargetID": 114843, + "Directional": false + } + ] + }, + { + "ID": 3416, + "SourceStructureID": 5649, + "TargetStructureID": 6142, + "Label": "5649-6142 via Gap Junction from 38492 -> 38491, 106031 -> 106030", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38492, + "TargetID": 38491, + "Directional": false + }, + { + "SourceID": 106031, + "TargetID": 106030, + "Directional": false + } + ] + }, + { + "ID": 3417, + "SourceStructureID": 7147, + "TargetStructureID": 5649, + "Label": "7147-5649 via Gap Junction from 30302 -> 55750, 134960 -> 134959", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 30302, + "TargetID": 55750, + "Directional": false + }, + { + "SourceID": 134960, + "TargetID": 134959, + "Directional": false + } + ] + }, + { + "ID": 3418, + "SourceStructureID": 5649, + "TargetStructureID": 12897, + "Label": "5649-12897 via Gap Junction from 54101 -> 54099, 107217 -> 107216, 107366 -> 107365, 134407 -> 134406, 134967 -> 134968", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54101, + "TargetID": 54099, + "Directional": false + }, + { + "SourceID": 107217, + "TargetID": 107216, + "Directional": false + }, + { + "SourceID": 107366, + "TargetID": 107365, + "Directional": false + }, + { + "SourceID": 134407, + "TargetID": 134406, + "Directional": false + }, + { + "SourceID": 134967, + "TargetID": 134968, + "Directional": false + } + ] + }, + { + "ID": 3419, + "SourceStructureID": 5649, + "TargetStructureID": 16026, + "Label": "5649-16026 via Adherens from 124801 -> 124800", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124801, + "TargetID": 124800, + "Directional": false + } + ] + }, + { + "ID": 3420, + "SourceStructureID": 16026, + "TargetStructureID": 5649, + "Label": "16026-5649 via Touch from 134438 -> 134439", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 134438, + "TargetID": 134439, + "Directional": false + } + ] + }, + { + "ID": 3421, + "SourceStructureID": 35064, + "TargetStructureID": 5649, + "Label": "35064-5649 via Unknown from 53902 -> 53901", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 53902, + "TargetID": 53901, + "Directional": false + } + ] + }, + { + "ID": 3422, + "SourceStructureID": 5649, + "TargetStructureID": 65172, + "Label": "5649-65172 via Unknown from 111025 -> 111024", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111025, + "TargetID": 111024, + "Directional": false + } + ] + }, + { + "ID": 3423, + "SourceStructureID": 67671, + "TargetStructureID": 5649, + "Label": "67671-5649 via Adherens from 78002 -> 78003", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78002, + "TargetID": 78003, + "Directional": false + } + ] + }, + { + "ID": 3424, + "SourceStructureID": 68153, + "TargetStructureID": 5649, + "Label": "68153-5649 via Adherens from 68175 -> 68176", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68175, + "TargetID": 68176, + "Directional": false + } + ] + }, + { + "ID": 3425, + "SourceStructureID": 5649, + "TargetStructureID": 68497, + "Label": "5649-68497 via Adherens from 81591 -> 81590", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81591, + "TargetID": 81590, + "Directional": false + } + ] + }, + { + "ID": 3426, + "SourceStructureID": 5649, + "TargetStructureID": 73313, + "Label": "5649-73313 via Adherens from 135174 -> 135175", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135174, + "TargetID": 135175, + "Directional": false + } + ] + }, + { + "ID": 3427, + "SourceStructureID": 5649, + "TargetStructureID": 78909, + "Label": "5649-78909 via Adherens from 87519 -> 87518", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87519, + "TargetID": 87518, + "Directional": false + } + ] + }, + { + "ID": 3428, + "SourceStructureID": 5649, + "TargetStructureID": 92926, + "Label": "5649-92926 via Adherens from 75686 -> 75685", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75686, + "TargetID": 75685, + "Directional": false + } + ] + }, + { + "ID": 3429, + "SourceStructureID": 5649, + "TargetStructureID": 92926, + "Label": "5649-92926 via Unknown from 53835 -> 75684", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 53835, + "TargetID": 75684, + "Directional": false + } + ] + }, + { + "ID": 3430, + "SourceStructureID": 103774, + "TargetStructureID": 5649, + "Label": "103774-5649 via Unknown from 134837 -> 134838", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134837, + "TargetID": 134838, + "Directional": false + } + ] + }, + { + "ID": 3431, + "SourceStructureID": 5649, + "TargetStructureID": 104480, + "Label": "5649-104480 via Unknown from 104482 -> 104481", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104482, + "TargetID": 104481, + "Directional": false + } + ] + }, + { + "ID": 3432, + "SourceStructureID": 5649, + "TargetStructureID": 104484, + "Label": "5649-104484 via Adherens from 104483 -> 104485", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104483, + "TargetID": 104485, + "Directional": false + } + ] + }, + { + "ID": 3433, + "SourceStructureID": 104559, + "TargetStructureID": 5649, + "Label": "104559-5649 via Unknown from 104562 -> 104563", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104562, + "TargetID": 104563, + "Directional": false + } + ] + }, + { + "ID": 3434, + "SourceStructureID": 104616, + "TargetStructureID": 5649, + "Label": "104616-5649 via Adherens from 136135 -> 136134", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136135, + "TargetID": 136134, + "Directional": false + } + ] + }, + { + "ID": 3435, + "SourceStructureID": 104633, + "TargetStructureID": 5649, + "Label": "104633-5649 via Unknown from 104635 -> 53842", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104635, + "TargetID": 53842, + "Directional": false + } + ] + }, + { + "ID": 3436, + "SourceStructureID": 5649, + "TargetStructureID": 104721, + "Label": "5649-104721 via Adherens from 135419 -> 135418", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135419, + "TargetID": 135418, + "Directional": false + } + ] + }, + { + "ID": 3437, + "SourceStructureID": 104721, + "TargetStructureID": 5649, + "Label": "104721-5649 via Gap Junction from 104722 -> 53889", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 104722, + "TargetID": 53889, + "Directional": false + } + ] + }, + { + "ID": 3438, + "SourceStructureID": 104791, + "TargetStructureID": 5649, + "Label": "104791-5649 via Adherens from 134848 -> 134847", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134848, + "TargetID": 134847, + "Directional": false + } + ] + }, + { + "ID": 3439, + "SourceStructureID": 104794, + "TargetStructureID": 5649, + "Label": "104794-5649 via Unknown from 104795 -> 104793", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104795, + "TargetID": 104793, + "Directional": false + } + ] + }, + { + "ID": 3440, + "SourceStructureID": 5649, + "TargetStructureID": 104796, + "Label": "5649-104796 via Unknown from 104798 -> 104797", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104798, + "TargetID": 104797, + "Directional": false + } + ] + }, + { + "ID": 3441, + "SourceStructureID": 5649, + "TargetStructureID": 105333, + "Label": "5649-105333 via Unknown from 134861 -> 134860", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134861, + "TargetID": 134860, + "Directional": false + } + ] + }, + { + "ID": 3442, + "SourceStructureID": 5649, + "TargetStructureID": 105393, + "Label": "5649-105393 via Unknown from 134872 -> 134871", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134872, + "TargetID": 134871, + "Directional": false + } + ] + }, + { + "ID": 3443, + "SourceStructureID": 5649, + "TargetStructureID": 105426, + "Label": "5649-105426 via Unknown from 135156 -> 135157", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135156, + "TargetID": 135157, + "Directional": false + } + ] + }, + { + "ID": 3444, + "SourceStructureID": 105547, + "TargetStructureID": 5649, + "Label": "105547-5649 via Adherens from 134893 -> 134892", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134893, + "TargetID": 134892, + "Directional": false + } + ] + }, + { + "ID": 3445, + "SourceStructureID": 105580, + "TargetStructureID": 5649, + "Label": "105580-5649 via Conventional from 105582 -> 105583", + "Type": "Conventional", + "Directional": false, + "Links": [ + { + "SourceID": 105582, + "TargetID": 105583, + "Directional": false + } + ] + }, + { + "ID": 3446, + "SourceStructureID": 105673, + "TargetStructureID": 5649, + "Label": "105673-5649 via Adherens from 105691 -> 53905", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 105691, + "TargetID": 53905, + "Directional": false + } + ] + }, + { + "ID": 3447, + "SourceStructureID": 5649, + "TargetStructureID": 105676, + "Label": "5649-105676 via Unknown from 134899 -> 134900", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134899, + "TargetID": 134900, + "Directional": false + } + ] + }, + { + "ID": 3448, + "SourceStructureID": 105704, + "TargetStructureID": 5649, + "Label": "105704-5649 via Unknown from 134903 -> 134902", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134903, + "TargetID": 134902, + "Directional": false + } + ] + }, + { + "ID": 3449, + "SourceStructureID": 105706, + "TargetStructureID": 5649, + "Label": "105706-5649 via Adherens from 105732 -> 105731", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 105732, + "TargetID": 105731, + "Directional": false + } + ] + }, + { + "ID": 3450, + "SourceStructureID": 105735, + "TargetStructureID": 5649, + "Label": "105735-5649 via Adherens from 135422 -> 135421", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135422, + "TargetID": 135421, + "Directional": false + } + ] + }, + { + "ID": 3451, + "SourceStructureID": 5649, + "TargetStructureID": 105735, + "Label": "5649-105735 via Gap Junction from 53950 -> 105736", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 53950, + "TargetID": 105736, + "Directional": false + } + ] + }, + { + "ID": 3452, + "SourceStructureID": 5649, + "TargetStructureID": 105906, + "Label": "5649-105906 via Unknown from 105911 -> 105910", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105911, + "TargetID": 105910, + "Directional": false + } + ] + }, + { + "ID": 3453, + "SourceStructureID": 105908, + "TargetStructureID": 5649, + "Label": "105908-5649 via Unknown from 134910 -> 134909", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134910, + "TargetID": 134909, + "Directional": false + } + ] + }, + { + "ID": 3454, + "SourceStructureID": 5649, + "TargetStructureID": 106005, + "Label": "5649-106005 via Adherens from 106004 -> 106006", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106004, + "TargetID": 106006, + "Directional": false + } + ] + }, + { + "ID": 3455, + "SourceStructureID": 5649, + "TargetStructureID": 106013, + "Label": "5649-106013 via Unknown from 134961 -> 134962", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134961, + "TargetID": 134962, + "Directional": false + } + ] + }, + { + "ID": 3456, + "SourceStructureID": 106059, + "TargetStructureID": 5649, + "Label": "106059-5649 via Adherens from 135388 -> 131925", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135388, + "TargetID": 131925, + "Directional": false + } + ] + }, + { + "ID": 3457, + "SourceStructureID": 106059, + "TargetStructureID": 5649, + "Label": "106059-5649 via Gap Junction from 135387 -> 131926", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 135387, + "TargetID": 131926, + "Directional": false + } + ] + }, + { + "ID": 3458, + "SourceStructureID": 5649, + "TargetStructureID": 106105, + "Label": "5649-106105 via Unknown from 134916 -> 134915", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134916, + "TargetID": 134915, + "Directional": false + } + ] + }, + { + "ID": 3459, + "SourceStructureID": 106258, + "TargetStructureID": 5649, + "Label": "106258-5649 via Adherens from 106267 -> 106266", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106267, + "TargetID": 106266, + "Directional": false + } + ] + }, + { + "ID": 3460, + "SourceStructureID": 5649, + "TargetStructureID": 106280, + "Label": "5649-106280 via Unknown from 134918 -> 134917", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134918, + "TargetID": 134917, + "Directional": false + } + ] + }, + { + "ID": 3461, + "SourceStructureID": 5649, + "TargetStructureID": 106285, + "Label": "5649-106285 via Adherens from 106284 -> 106286", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106284, + "TargetID": 106286, + "Directional": false + } + ] + }, + { + "ID": 3462, + "SourceStructureID": 106303, + "TargetStructureID": 5649, + "Label": "106303-5649 via Adherens from 106305 -> 54186", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106305, + "TargetID": 54186, + "Directional": false + } + ] + }, + { + "ID": 3463, + "SourceStructureID": 106552, + "TargetStructureID": 5649, + "Label": "106552-5649 via Adherens from 106593 -> 106592", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106593, + "TargetID": 106592, + "Directional": false + } + ] + }, + { + "ID": 3464, + "SourceStructureID": 106703, + "TargetStructureID": 5649, + "Label": "106703-5649 via Adherens from 106704 -> 106702", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106704, + "TargetID": 106702, + "Directional": false + } + ] + }, + { + "ID": 3465, + "SourceStructureID": 106720, + "TargetStructureID": 5649, + "Label": "106720-5649 via Unknown from 106721 -> 106719", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106721, + "TargetID": 106719, + "Directional": false + } + ] + }, + { + "ID": 3466, + "SourceStructureID": 106913, + "TargetStructureID": 5649, + "Label": "106913-5649 via Adherens from 106914 -> 106912", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106914, + "TargetID": 106912, + "Directional": false + } + ] + }, + { + "ID": 3467, + "SourceStructureID": 107054, + "TargetStructureID": 5649, + "Label": "107054-5649 via Adherens from 107057 -> 107053", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107057, + "TargetID": 107053, + "Directional": false + } + ] + }, + { + "ID": 3468, + "SourceStructureID": 5649, + "TargetStructureID": 107078, + "Label": "5649-107078 via Adherens from 107081 -> 107080", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107081, + "TargetID": 107080, + "Directional": false + } + ] + }, + { + "ID": 3469, + "SourceStructureID": 107078, + "TargetStructureID": 5649, + "Label": "107078-5649 via Gap Junction from 131915 -> 131914", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131915, + "TargetID": 131914, + "Directional": false + } + ] + }, + { + "ID": 3470, + "SourceStructureID": 107110, + "TargetStructureID": 5649, + "Label": "107110-5649 via Unknown from 134921 -> 134920", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134921, + "TargetID": 134920, + "Directional": false + } + ] + }, + { + "ID": 3471, + "SourceStructureID": 107117, + "TargetStructureID": 5649, + "Label": "107117-5649 via Unknown from 131917 -> 131916", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131917, + "TargetID": 131916, + "Directional": false + } + ] + }, + { + "ID": 3472, + "SourceStructureID": 5649, + "TargetStructureID": 107134, + "Label": "5649-107134 via Unknown from 134924 -> 134925", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134924, + "TargetID": 134925, + "Directional": false + } + ] + }, + { + "ID": 3473, + "SourceStructureID": 5649, + "TargetStructureID": 107140, + "Label": "5649-107140 via Unknown from 134927 -> 134926", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134927, + "TargetID": 134926, + "Directional": false + } + ] + }, + { + "ID": 3474, + "SourceStructureID": 107182, + "TargetStructureID": 5649, + "Label": "107182-5649 via Postsynapse from 107183 -> 54307", + "Type": "Postsynapse", + "Directional": false, + "Links": [ + { + "SourceID": 107183, + "TargetID": 54307, + "Directional": false + } + ] + }, + { + "ID": 3475, + "SourceStructureID": 107213, + "TargetStructureID": 5649, + "Label": "107213-5649 via Unknown from 131923 -> 131922", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131923, + "TargetID": 131922, + "Directional": false + } + ] + }, + { + "ID": 3476, + "SourceStructureID": 107335, + "TargetStructureID": 5649, + "Label": "107335-5649 via Adherens from 107336 -> 107334", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107336, + "TargetID": 107334, + "Directional": false + } + ] + }, + { + "ID": 3477, + "SourceStructureID": 107339, + "TargetStructureID": 5649, + "Label": "107339-5649 via Adherens from 135369 -> 135370", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135369, + "TargetID": 135370, + "Directional": false + } + ] + }, + { + "ID": 3478, + "SourceStructureID": 5649, + "TargetStructureID": 107339, + "Label": "5649-107339 via Gap Junction from 107317 -> 107341", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 107317, + "TargetID": 107341, + "Directional": false + } + ] + }, + { + "ID": 3479, + "SourceStructureID": 107360, + "TargetStructureID": 5649, + "Label": "107360-5649 via Adherens from 107361 -> 70019", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107361, + "TargetID": 70019, + "Directional": false + } + ] + }, + { + "ID": 3480, + "SourceStructureID": 134950, + "TargetStructureID": 5649, + "Label": "134950-5649 via Unknown from 134951 -> 53966", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134951, + "TargetID": 53966, + "Directional": false + } + ] + }, + { + "ID": 3481, + "SourceStructureID": 134952, + "TargetStructureID": 5649, + "Label": "134952-5649 via Unknown from 134953 -> 54123", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134953, + "TargetID": 54123, + "Directional": false + } + ] + }, + { + "ID": 3482, + "SourceStructureID": 134954, + "TargetStructureID": 5649, + "Label": "134954-5649 via Unknown from 134955 -> 54300", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134955, + "TargetID": 54300, + "Directional": false + } + ] + }, + { + "ID": 3483, + "SourceStructureID": 135401, + "TargetStructureID": 5649, + "Label": "135401-5649 via Adherens from 135403 -> 108184", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135403, + "TargetID": 108184, + "Directional": false + } + ] + }, + { + "ID": 3484, + "SourceStructureID": 135401, + "TargetStructureID": 5649, + "Label": "135401-5649 via Unknown from 135402 -> 134969", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135402, + "TargetID": 134969, + "Directional": false + } + ] + }, + { + "ID": 3485, + "SourceStructureID": 5650, + "TargetStructureID": 5650, + "Label": "5650-5650 via Gap Junction from 103852 -> 103851, 103973 -> 103974, 104166 -> 104167, 104319 -> 104320, 104323 -> 104322, 104472 -> 104471, 105158 -> 105157, 118209 -> 118208, 126400 -> 126401", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 103852, + "TargetID": 103851, + "Directional": false + }, + { + "SourceID": 103973, + "TargetID": 103974, + "Directional": false + }, + { + "SourceID": 104166, + "TargetID": 104167, + "Directional": false + }, + { + "SourceID": 104319, + "TargetID": 104320, + "Directional": false + }, + { + "SourceID": 104323, + "TargetID": 104322, + "Directional": false + }, + { + "SourceID": 104472, + "TargetID": 104471, + "Directional": false + }, + { + "SourceID": 105158, + "TargetID": 105157, + "Directional": false + }, + { + "SourceID": 118209, + "TargetID": 118208, + "Directional": false + }, + { + "SourceID": 126400, + "TargetID": 126401, + "Directional": false + } + ] + }, + { + "ID": 3486, + "SourceStructureID": 5650, + "TargetStructureID": 5729, + "Label": "5650-5729 via Gap Junction from 102921 -> 102928", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 102921, + "TargetID": 102928, + "Directional": false + } + ] + }, + { + "ID": 3487, + "SourceStructureID": 6047, + "TargetStructureID": 5650, + "Label": "6047-5650 via Gap Junction from 19726 -> 105098", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 19726, + "TargetID": 105098, + "Directional": false + } + ] + }, + { + "ID": 3488, + "SourceStructureID": 5650, + "TargetStructureID": 6117, + "Label": "5650-6117 via Gap Junction from 54324 -> 54325, 60118 -> 23474, 106295 -> 106293, 113293 -> 54317", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54324, + "TargetID": 54325, + "Directional": false + }, + { + "SourceID": 60118, + "TargetID": 23474, + "Directional": false + }, + { + "SourceID": 106295, + "TargetID": 106293, + "Directional": false + }, + { + "SourceID": 113293, + "TargetID": 54317, + "Directional": false + } + ] + }, + { + "ID": 3489, + "SourceStructureID": 5650, + "TargetStructureID": 6118, + "Label": "5650-6118 via Gap Junction from 118196 -> 118195", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118196, + "TargetID": 118195, + "Directional": false + } + ] + }, + { + "ID": 3490, + "SourceStructureID": 6120, + "TargetStructureID": 5650, + "Label": "6120-5650 via Gap Junction from 104272 -> 104271", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 104272, + "TargetID": 104271, + "Directional": false + } + ] + }, + { + "ID": 3491, + "SourceStructureID": 5650, + "TargetStructureID": 7024, + "Label": "5650-7024 via Gap Junction from 93905 -> 93901", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93905, + "TargetID": 93901, + "Directional": false + } + ] + }, + { + "ID": 3492, + "SourceStructureID": 7073, + "TargetStructureID": 5650, + "Label": "7073-5650 via Unknown from 135608 -> 135609", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135608, + "TargetID": 135609, + "Directional": false + } + ] + }, + { + "ID": 3493, + "SourceStructureID": 7147, + "TargetStructureID": 5650, + "Label": "7147-5650 via Gap Junction from 52599 -> 52600, 134984 -> 134983", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52599, + "TargetID": 52600, + "Directional": false + }, + { + "SourceID": 134984, + "TargetID": 134983, + "Directional": false + } + ] + }, + { + "ID": 3494, + "SourceStructureID": 9769, + "TargetStructureID": 5650, + "Label": "9769-5650 via Adherens from 104125 -> 104126, 104270 -> 104269, 105051 -> 105052, 106321 -> 106320, 126343 -> 126342, 127300 -> 127301", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104125, + "TargetID": 104126, + "Directional": false + }, + { + "SourceID": 104270, + "TargetID": 104269, + "Directional": false + }, + { + "SourceID": 105051, + "TargetID": 105052, + "Directional": false + }, + { + "SourceID": 106321, + "TargetID": 106320, + "Directional": false + }, + { + "SourceID": 126343, + "TargetID": 126342, + "Directional": false + }, + { + "SourceID": 127300, + "TargetID": 127301, + "Directional": false + } + ] + }, + { + "ID": 3495, + "SourceStructureID": 12897, + "TargetStructureID": 5650, + "Label": "12897-5650 via Gap Junction from 103664 -> 103665, 103679 -> 103678, 103682 -> 103681, 103829 -> 103828, 134981 -> 134980, 135373 -> 135374", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 103664, + "TargetID": 103665, + "Directional": false + }, + { + "SourceID": 103679, + "TargetID": 103678, + "Directional": false + }, + { + "SourceID": 103682, + "TargetID": 103681, + "Directional": false + }, + { + "SourceID": 103829, + "TargetID": 103828, + "Directional": false + }, + { + "SourceID": 134981, + "TargetID": 134980, + "Directional": false + }, + { + "SourceID": 135373, + "TargetID": 135374, + "Directional": false + } + ] + }, + { + "ID": 3496, + "SourceStructureID": 5650, + "TargetStructureID": 15796, + "Label": "5650-15796 via Unknown from 124723 -> 134985", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124723, + "TargetID": 134985, + "Directional": false + } + ] + }, + { + "ID": 3497, + "SourceStructureID": 16073, + "TargetStructureID": 5650, + "Label": "16073-5650 via Unknown from 103903 -> 103902", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103903, + "TargetID": 103902, + "Directional": false + } + ] + }, + { + "ID": 3498, + "SourceStructureID": 5650, + "TargetStructureID": 20136, + "Label": "5650-20136 via Gap Junction from 127754 -> 127753", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 127754, + "TargetID": 127753, + "Directional": false + } + ] + }, + { + "ID": 3499, + "SourceStructureID": 5650, + "TargetStructureID": 30130, + "Label": "5650-30130 via Adherens from 103858 -> 103857", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103858, + "TargetID": 103857, + "Directional": false + } + ] + }, + { + "ID": 3500, + "SourceStructureID": 35240, + "TargetStructureID": 5650, + "Label": "35240-5650 via Adherens from 104457 -> 104458", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104457, + "TargetID": 104458, + "Directional": false + } + ] + }, + { + "ID": 3501, + "SourceStructureID": 5650, + "TargetStructureID": 53202, + "Label": "5650-53202 via Unknown from 103849 -> 103850", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103849, + "TargetID": 103850, + "Directional": false + } + ] + }, + { + "ID": 3502, + "SourceStructureID": 5650, + "TargetStructureID": 53407, + "Label": "5650-53407 via Adherens from 103886 -> 103885", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103886, + "TargetID": 103885, + "Directional": false + } + ] + }, + { + "ID": 3503, + "SourceStructureID": 53987, + "TargetStructureID": 5650, + "Label": "53987-5650 via Adherens from 103630 -> 103629", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103630, + "TargetID": 103629, + "Directional": false + } + ] + }, + { + "ID": 3504, + "SourceStructureID": 5650, + "TargetStructureID": 68511, + "Label": "5650-68511 via Unknown from 68515 -> 68514", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 68515, + "TargetID": 68514, + "Directional": false + } + ] + }, + { + "ID": 3505, + "SourceStructureID": 5650, + "TargetStructureID": 102643, + "Label": "5650-102643 via Unknown from 102645 -> 102644", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102645, + "TargetID": 102644, + "Directional": false + } + ] + }, + { + "ID": 3506, + "SourceStructureID": 5650, + "TargetStructureID": 102661, + "Label": "5650-102661 via Unknown from 102663 -> 102662", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102663, + "TargetID": 102662, + "Directional": false + } + ] + }, + { + "ID": 3507, + "SourceStructureID": 5650, + "TargetStructureID": 102757, + "Label": "5650-102757 via Unknown from 102781 -> 102780", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102781, + "TargetID": 102780, + "Directional": false + } + ] + }, + { + "ID": 3508, + "SourceStructureID": 102793, + "TargetStructureID": 5650, + "Label": "102793-5650 via Unknown from 102822 -> 102821", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102822, + "TargetID": 102821, + "Directional": false + } + ] + }, + { + "ID": 3509, + "SourceStructureID": 5650, + "TargetStructureID": 102795, + "Label": "5650-102795 via Unknown from 102797 -> 102796", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102797, + "TargetID": 102796, + "Directional": false + } + ] + }, + { + "ID": 3510, + "SourceStructureID": 102953, + "TargetStructureID": 5650, + "Label": "102953-5650 via Adherens from 102996 -> 102995", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 102996, + "TargetID": 102995, + "Directional": false + } + ] + }, + { + "ID": 3511, + "SourceStructureID": 5650, + "TargetStructureID": 103001, + "Label": "5650-103001 via Adherens from 103002 -> 103003", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103002, + "TargetID": 103003, + "Directional": false + } + ] + }, + { + "ID": 3512, + "SourceStructureID": 103029, + "TargetStructureID": 5650, + "Label": "103029-5650 via Adherens from 103031 -> 103030", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103031, + "TargetID": 103030, + "Directional": false + } + ] + }, + { + "ID": 3513, + "SourceStructureID": 5650, + "TargetStructureID": 103037, + "Label": "5650-103037 via Adherens from 103038 -> 103039", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103038, + "TargetID": 103039, + "Directional": false + } + ] + }, + { + "ID": 3514, + "SourceStructureID": 5650, + "TargetStructureID": 103557, + "Label": "5650-103557 via Adherens from 103559 -> 103558", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103559, + "TargetID": 103558, + "Directional": false + } + ] + }, + { + "ID": 3515, + "SourceStructureID": 103572, + "TargetStructureID": 5650, + "Label": "103572-5650 via Adherens from 103577 -> 103576", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103577, + "TargetID": 103576, + "Directional": false + } + ] + }, + { + "ID": 3516, + "SourceStructureID": 103579, + "TargetStructureID": 5650, + "Label": "103579-5650 via Unknown from 103581 -> 103580", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103581, + "TargetID": 103580, + "Directional": false + } + ] + }, + { + "ID": 3517, + "SourceStructureID": 5650, + "TargetStructureID": 103595, + "Label": "5650-103595 via Adherens from 103599 -> 103600", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103599, + "TargetID": 103600, + "Directional": false + } + ] + }, + { + "ID": 3518, + "SourceStructureID": 103636, + "TargetStructureID": 5650, + "Label": "103636-5650 via Unknown from 103638 -> 103637", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103638, + "TargetID": 103637, + "Directional": false + } + ] + }, + { + "ID": 3519, + "SourceStructureID": 103654, + "TargetStructureID": 5650, + "Label": "103654-5650 via Adherens from 103656 -> 103655", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103656, + "TargetID": 103655, + "Directional": false + } + ] + }, + { + "ID": 3520, + "SourceStructureID": 5650, + "TargetStructureID": 103657, + "Label": "5650-103657 via Adherens from 103659 -> 103658", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103659, + "TargetID": 103658, + "Directional": false + } + ] + }, + { + "ID": 3521, + "SourceStructureID": 5650, + "TargetStructureID": 103675, + "Label": "5650-103675 via Unknown from 103676 -> 103677", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103676, + "TargetID": 103677, + "Directional": false + } + ] + }, + { + "ID": 3522, + "SourceStructureID": 5650, + "TargetStructureID": 103693, + "Label": "5650-103693 via Adherens from 103695 -> 103694", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103695, + "TargetID": 103694, + "Directional": false + } + ] + }, + { + "ID": 3523, + "SourceStructureID": 103710, + "TargetStructureID": 5650, + "Label": "103710-5650 via Unknown from 103712 -> 103711", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103712, + "TargetID": 103711, + "Directional": false + } + ] + }, + { + "ID": 3524, + "SourceStructureID": 5650, + "TargetStructureID": 103820, + "Label": "5650-103820 via Adherens from 103822 -> 103821", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 103822, + "TargetID": 103821, + "Directional": false + } + ] + }, + { + "ID": 3525, + "SourceStructureID": 104089, + "TargetStructureID": 5650, + "Label": "104089-5650 via Adherens from 104094 -> 104093", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104094, + "TargetID": 104093, + "Directional": false + } + ] + }, + { + "ID": 3526, + "SourceStructureID": 5650, + "TargetStructureID": 104120, + "Label": "5650-104120 via Unknown from 104121 -> 104122", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104121, + "TargetID": 104122, + "Directional": false + } + ] + }, + { + "ID": 3527, + "SourceStructureID": 5650, + "TargetStructureID": 104304, + "Label": "5650-104304 via Unknown from 104310 -> 104308", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104310, + "TargetID": 104308, + "Directional": false + } + ] + }, + { + "ID": 3528, + "SourceStructureID": 104330, + "TargetStructureID": 5650, + "Label": "104330-5650 via Unknown from 104334 -> 104332", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104334, + "TargetID": 104332, + "Directional": false + } + ] + }, + { + "ID": 3529, + "SourceStructureID": 104370, + "TargetStructureID": 5650, + "Label": "104370-5650 via Unknown from 104372 -> 104371", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104372, + "TargetID": 104371, + "Directional": false + } + ] + }, + { + "ID": 3530, + "SourceStructureID": 5650, + "TargetStructureID": 104459, + "Label": "5650-104459 via Adherens from 104461 -> 104460", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104461, + "TargetID": 104460, + "Directional": false + } + ] + }, + { + "ID": 3531, + "SourceStructureID": 5650, + "TargetStructureID": 104465, + "Label": "5650-104465 via Adherens from 104466 -> 104467", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104466, + "TargetID": 104467, + "Directional": false + } + ] + }, + { + "ID": 3532, + "SourceStructureID": 104987, + "TargetStructureID": 5650, + "Label": "104987-5650 via Adherens from 104989 -> 104988", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104989, + "TargetID": 104988, + "Directional": false + } + ] + }, + { + "ID": 3533, + "SourceStructureID": 105070, + "TargetStructureID": 5650, + "Label": "105070-5650 via Adherens from 105072 -> 105071", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 105072, + "TargetID": 105071, + "Directional": false + } + ] + }, + { + "ID": 3534, + "SourceStructureID": 105106, + "TargetStructureID": 5650, + "Label": "105106-5650 via Unknown from 105107 -> 105105", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105107, + "TargetID": 105105, + "Directional": false + } + ] + }, + { + "ID": 3535, + "SourceStructureID": 105131, + "TargetStructureID": 5650, + "Label": "105131-5650 via Adherens from 105139 -> 105138", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 105139, + "TargetID": 105138, + "Directional": false + } + ] + }, + { + "ID": 3536, + "SourceStructureID": 105167, + "TargetStructureID": 5650, + "Label": "105167-5650 via Unknown from 105169 -> 105168", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105169, + "TargetID": 105168, + "Directional": false + } + ] + }, + { + "ID": 3537, + "SourceStructureID": 105199, + "TargetStructureID": 5650, + "Label": "105199-5650 via Adherens from 126406 -> 126407", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 126406, + "TargetID": 126407, + "Directional": false + } + ] + }, + { + "ID": 3538, + "SourceStructureID": 106325, + "TargetStructureID": 5650, + "Label": "106325-5650 via Adherens from 106328 -> 106324", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106328, + "TargetID": 106324, + "Directional": false + } + ] + }, + { + "ID": 3539, + "SourceStructureID": 106336, + "TargetStructureID": 5650, + "Label": "106336-5650 via Unknown from 106343 -> 106342", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106343, + "TargetID": 106342, + "Directional": false + } + ] + }, + { + "ID": 3540, + "SourceStructureID": 5729, + "TargetStructureID": 5729, + "Label": "5729-5729 via Adherens from 112683 -> 64523", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112683, + "TargetID": 64523, + "Directional": false + } + ] + }, + { + "ID": 3541, + "SourceStructureID": 5729, + "TargetStructureID": 5729, + "Label": "5729-5729 via Gap Junction from 64474 -> 64473, 105778 -> 105779", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 64474, + "TargetID": 64473, + "Directional": false + }, + { + "SourceID": 105778, + "TargetID": 105779, + "Directional": false + } + ] + }, + { + "ID": 3542, + "SourceStructureID": 6158, + "TargetStructureID": 5729, + "Label": "6158-5729 via Gap Junction from 47218 -> 47217, 111940 -> 111941, 113087 -> 111943", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 47218, + "TargetID": 47217, + "Directional": false + }, + { + "SourceID": 111940, + "TargetID": 111941, + "Directional": false + }, + { + "SourceID": 113087, + "TargetID": 111943, + "Directional": false + } + ] + }, + { + "ID": 3543, + "SourceStructureID": 5729, + "TargetStructureID": 6158, + "Label": "5729-6158 via Touch from 120654 -> 120655", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 120654, + "TargetID": 120655, + "Directional": false + } + ] + }, + { + "ID": 3544, + "SourceStructureID": 6162, + "TargetStructureID": 5729, + "Label": "6162-5729 via Adherens from 37852 -> 37853, 105759 -> 123359", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 37852, + "TargetID": 37853, + "Directional": false + }, + { + "SourceID": 105759, + "TargetID": 123359, + "Directional": false + } + ] + }, + { + "ID": 3545, + "SourceStructureID": 6162, + "TargetStructureID": 5729, + "Label": "6162-5729 via Gap Junction from 37848 -> 37847, 37851 -> 37850, 47223 -> 29108, 55252 -> 47235, 110912 -> 110913, 118170 -> 118171", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 37848, + "TargetID": 37847, + "Directional": false + }, + { + "SourceID": 37851, + "TargetID": 37850, + "Directional": false + }, + { + "SourceID": 47223, + "TargetID": 29108, + "Directional": false + }, + { + "SourceID": 55252, + "TargetID": 47235, + "Directional": false + }, + { + "SourceID": 110912, + "TargetID": 110913, + "Directional": false + }, + { + "SourceID": 118170, + "TargetID": 118171, + "Directional": false + } + ] + }, + { + "ID": 3546, + "SourceStructureID": 5729, + "TargetStructureID": 7050, + "Label": "5729-7050 via Gap Junction from 37816 -> 37815, 64587 -> 24877", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 37816, + "TargetID": 37815, + "Directional": false + }, + { + "SourceID": 64587, + "TargetID": 24877, + "Directional": false + } + ] + }, + { + "ID": 3547, + "SourceStructureID": 7897, + "TargetStructureID": 5729, + "Label": "7897-5729 via Adherens from 112012 -> 112013", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112012, + "TargetID": 112013, + "Directional": false + } + ] + }, + { + "ID": 3548, + "SourceStructureID": 8040, + "TargetStructureID": 5729, + "Label": "8040-5729 via Adherens from 112671 -> 112672", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112671, + "TargetID": 112672, + "Directional": false + } + ] + }, + { + "ID": 3549, + "SourceStructureID": 8040, + "TargetStructureID": 5729, + "Label": "8040-5729 via Gap Junction from 111797 -> 111796", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 111797, + "TargetID": 111796, + "Directional": false + } + ] + }, + { + "ID": 3550, + "SourceStructureID": 11408, + "TargetStructureID": 5729, + "Label": "11408-5729 via Gap Junction from 112645 -> 112620", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 112645, + "TargetID": 112620, + "Directional": false + } + ] + }, + { + "ID": 3551, + "SourceStructureID": 35240, + "TargetStructureID": 5729, + "Label": "35240-5729 via Adherens from 111778 -> 111779", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111778, + "TargetID": 111779, + "Directional": false + } + ] + }, + { + "ID": 3552, + "SourceStructureID": 35428, + "TargetStructureID": 5729, + "Label": "35428-5729 via Unknown from 111952 -> 111951", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111952, + "TargetID": 111951, + "Directional": false + } + ] + }, + { + "ID": 3553, + "SourceStructureID": 35555, + "TargetStructureID": 5729, + "Label": "35555-5729 via Adherens from 112726 -> 112725", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112726, + "TargetID": 112725, + "Directional": false + } + ] + }, + { + "ID": 3554, + "SourceStructureID": 47445, + "TargetStructureID": 5729, + "Label": "47445-5729 via Gap Junction from 118183 -> 118178", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118183, + "TargetID": 118178, + "Directional": false + } + ] + }, + { + "ID": 3555, + "SourceStructureID": 5729, + "TargetStructureID": 48516, + "Label": "5729-48516 via Gap Junction from 123287 -> 123297", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123287, + "TargetID": 123297, + "Directional": false + } + ] + }, + { + "ID": 3556, + "SourceStructureID": 55232, + "TargetStructureID": 5729, + "Label": "55232-5729 via Adherens from 111155 -> 111156, 111195 -> 111194", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111155, + "TargetID": 111156, + "Directional": false + }, + { + "SourceID": 111195, + "TargetID": 111194, + "Directional": false + } + ] + }, + { + "ID": 3557, + "SourceStructureID": 5729, + "TargetStructureID": 64452, + "Label": "5729-64452 via Adherens from 111959 -> 89622, 111962 -> 111948, 111983 -> 111985", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111959, + "TargetID": 89622, + "Directional": false + }, + { + "SourceID": 111962, + "TargetID": 111948, + "Directional": false + }, + { + "SourceID": 111983, + "TargetID": 111985, + "Directional": false + } + ] + }, + { + "ID": 3558, + "SourceStructureID": 64452, + "TargetStructureID": 5729, + "Label": "64452-5729 via Unknown from 111979 -> 111978", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111979, + "TargetID": 111978, + "Directional": false + } + ] + }, + { + "ID": 3559, + "SourceStructureID": 5729, + "TargetStructureID": 64939, + "Label": "5729-64939 via Adherens from 64529 -> 112949, 112445 -> 112444", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64529, + "TargetID": 112949, + "Directional": false + }, + { + "SourceID": 112445, + "TargetID": 112444, + "Directional": false + } + ] + }, + { + "ID": 3560, + "SourceStructureID": 64939, + "TargetStructureID": 5729, + "Label": "64939-5729 via Gap Junction from 64941 -> 64466, 69661 -> 69659, 69717 -> 69718, 70022 -> 70021, 93219 -> 93218, 93606 -> 64528, 111646 -> 111647, 111960 -> 111961, 112600 -> 112601, 113797 -> 113796, 123288 -> 123289", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 64941, + "TargetID": 64466, + "Directional": false + }, + { + "SourceID": 69661, + "TargetID": 69659, + "Directional": false + }, + { + "SourceID": 69717, + "TargetID": 69718, + "Directional": false + }, + { + "SourceID": 70022, + "TargetID": 70021, + "Directional": false + }, + { + "SourceID": 93219, + "TargetID": 93218, + "Directional": false + }, + { + "SourceID": 93606, + "TargetID": 64528, + "Directional": false + }, + { + "SourceID": 111646, + "TargetID": 111647, + "Directional": false + }, + { + "SourceID": 111960, + "TargetID": 111961, + "Directional": false + }, + { + "SourceID": 112600, + "TargetID": 112601, + "Directional": false + }, + { + "SourceID": 113797, + "TargetID": 113796, + "Directional": false + }, + { + "SourceID": 123288, + "TargetID": 123289, + "Directional": false + } + ] + }, + { + "ID": 3561, + "SourceStructureID": 69691, + "TargetStructureID": 5729, + "Label": "69691-5729 via Unknown from 136309 -> 136308", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136309, + "TargetID": 136308, + "Directional": false + } + ] + }, + { + "ID": 3562, + "SourceStructureID": 5729, + "TargetStructureID": 89124, + "Label": "5729-89124 via Adherens from 111438 -> 111439", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111438, + "TargetID": 111439, + "Directional": false + } + ] + }, + { + "ID": 3563, + "SourceStructureID": 89631, + "TargetStructureID": 5729, + "Label": "89631-5729 via Adherens from 89632 -> 89630", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89632, + "TargetID": 89630, + "Directional": false + } + ] + }, + { + "ID": 3564, + "SourceStructureID": 100017, + "TargetStructureID": 5729, + "Label": "100017-5729 via Unknown from 100594 -> 112605", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 100594, + "TargetID": 112605, + "Directional": false + } + ] + }, + { + "ID": 3565, + "SourceStructureID": 110842, + "TargetStructureID": 5729, + "Label": "110842-5729 via Adherens from 110846 -> 110847", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110846, + "TargetID": 110847, + "Directional": false + } + ] + }, + { + "ID": 3566, + "SourceStructureID": 5729, + "TargetStructureID": 110899, + "Label": "5729-110899 via Adherens from 110900 -> 110901", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110900, + "TargetID": 110901, + "Directional": false + } + ] + }, + { + "ID": 3567, + "SourceStructureID": 110903, + "TargetStructureID": 5729, + "Label": "110903-5729 via Adherens from 110917 -> 110918", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110917, + "TargetID": 110918, + "Directional": false + } + ] + }, + { + "ID": 3568, + "SourceStructureID": 5729, + "TargetStructureID": 110924, + "Label": "5729-110924 via Adherens from 110925 -> 110926", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110925, + "TargetID": 110926, + "Directional": false + } + ] + }, + { + "ID": 3569, + "SourceStructureID": 110928, + "TargetStructureID": 5729, + "Label": "110928-5729 via Unknown from 110929 -> 110927", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110929, + "TargetID": 110927, + "Directional": false + } + ] + }, + { + "ID": 3570, + "SourceStructureID": 110952, + "TargetStructureID": 5729, + "Label": "110952-5729 via Unknown from 110954 -> 110953", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110954, + "TargetID": 110953, + "Directional": false + } + ] + }, + { + "ID": 3571, + "SourceStructureID": 5729, + "TargetStructureID": 110959, + "Label": "5729-110959 via Unknown from 110958 -> 110960", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110958, + "TargetID": 110960, + "Directional": false + } + ] + }, + { + "ID": 3572, + "SourceStructureID": 5729, + "TargetStructureID": 111040, + "Label": "5729-111040 via Adherens from 111042 -> 111041", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111042, + "TargetID": 111041, + "Directional": false + } + ] + }, + { + "ID": 3573, + "SourceStructureID": 5729, + "TargetStructureID": 111057, + "Label": "5729-111057 via Adherens from 111063 -> 111062", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111063, + "TargetID": 111062, + "Directional": false + } + ] + }, + { + "ID": 3574, + "SourceStructureID": 5729, + "TargetStructureID": 111059, + "Label": "5729-111059 via Adherens from 111068 -> 111069", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111068, + "TargetID": 111069, + "Directional": false + } + ] + }, + { + "ID": 3575, + "SourceStructureID": 111064, + "TargetStructureID": 5729, + "Label": "111064-5729 via Adherens from 111066 -> 111067", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111066, + "TargetID": 111067, + "Directional": false + } + ] + }, + { + "ID": 3576, + "SourceStructureID": 5729, + "TargetStructureID": 111078, + "Label": "5729-111078 via Adherens from 111158 -> 111159", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111158, + "TargetID": 111159, + "Directional": false + } + ] + }, + { + "ID": 3577, + "SourceStructureID": 111160, + "TargetStructureID": 5729, + "Label": "111160-5729 via Unknown from 111161 -> 111162", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111161, + "TargetID": 111162, + "Directional": false + } + ] + }, + { + "ID": 3578, + "SourceStructureID": 5729, + "TargetStructureID": 111165, + "Label": "5729-111165 via Adherens from 111168 -> 111169", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111168, + "TargetID": 111169, + "Directional": false + } + ] + }, + { + "ID": 3579, + "SourceStructureID": 5729, + "TargetStructureID": 111165, + "Label": "5729-111165 via Gap Junction from 111166 -> 111167", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 111166, + "TargetID": 111167, + "Directional": false + } + ] + }, + { + "ID": 3580, + "SourceStructureID": 5729, + "TargetStructureID": 111174, + "Label": "5729-111174 via Unknown from 111176 -> 111175", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111176, + "TargetID": 111175, + "Directional": false + } + ] + }, + { + "ID": 3581, + "SourceStructureID": 111180, + "TargetStructureID": 5729, + "Label": "111180-5729 via Gap Junction from 111181 -> 111182", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 111181, + "TargetID": 111182, + "Directional": false + } + ] + }, + { + "ID": 3582, + "SourceStructureID": 111183, + "TargetStructureID": 5729, + "Label": "111183-5729 via Gap Junction from 111185 -> 111186", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 111185, + "TargetID": 111186, + "Directional": false + } + ] + }, + { + "ID": 3583, + "SourceStructureID": 111288, + "TargetStructureID": 5729, + "Label": "111288-5729 via Unknown from 111290 -> 111289", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111290, + "TargetID": 111289, + "Directional": false + } + ] + }, + { + "ID": 3584, + "SourceStructureID": 5729, + "TargetStructureID": 111298, + "Label": "5729-111298 via Adherens from 37814 -> 111302", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 37814, + "TargetID": 111302, + "Directional": false + } + ] + }, + { + "ID": 3585, + "SourceStructureID": 111306, + "TargetStructureID": 5729, + "Label": "111306-5729 via Adherens from 111308 -> 37819", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111308, + "TargetID": 37819, + "Directional": false + } + ] + }, + { + "ID": 3586, + "SourceStructureID": 111311, + "TargetStructureID": 5729, + "Label": "111311-5729 via Adherens from 111326 -> 111327", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111326, + "TargetID": 111327, + "Directional": false + } + ] + }, + { + "ID": 3587, + "SourceStructureID": 5729, + "TargetStructureID": 111312, + "Label": "5729-111312 via Adherens from 37825 -> 111323", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 37825, + "TargetID": 111323, + "Directional": false + } + ] + }, + { + "ID": 3588, + "SourceStructureID": 5729, + "TargetStructureID": 111417, + "Label": "5729-111417 via Unknown from 111465 -> 111466", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111465, + "TargetID": 111466, + "Directional": false + } + ] + }, + { + "ID": 3589, + "SourceStructureID": 111448, + "TargetStructureID": 5729, + "Label": "111448-5729 via Adherens from 111461 -> 111460", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111461, + "TargetID": 111460, + "Directional": false + } + ] + }, + { + "ID": 3590, + "SourceStructureID": 111611, + "TargetStructureID": 5729, + "Label": "111611-5729 via Adherens from 111634 -> 111635", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111634, + "TargetID": 111635, + "Directional": false + } + ] + }, + { + "ID": 3591, + "SourceStructureID": 5729, + "TargetStructureID": 111740, + "Label": "5729-111740 via Unknown from 111743 -> 111744", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111743, + "TargetID": 111744, + "Directional": false + } + ] + }, + { + "ID": 3592, + "SourceStructureID": 111751, + "TargetStructureID": 5729, + "Label": "111751-5729 via Unknown from 111752 -> 111750", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111752, + "TargetID": 111750, + "Directional": false + } + ] + }, + { + "ID": 3593, + "SourceStructureID": 111758, + "TargetStructureID": 5729, + "Label": "111758-5729 via Unknown from 111759 -> 111757", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111759, + "TargetID": 111757, + "Directional": false + } + ] + }, + { + "ID": 3594, + "SourceStructureID": 111774, + "TargetStructureID": 5729, + "Label": "111774-5729 via Gap Junction from 111775 -> 111763", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 111775, + "TargetID": 111763, + "Directional": false + } + ] + }, + { + "ID": 3595, + "SourceStructureID": 111788, + "TargetStructureID": 5729, + "Label": "111788-5729 via Adherens from 111789 -> 111790", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111789, + "TargetID": 111790, + "Directional": false + } + ] + }, + { + "ID": 3596, + "SourceStructureID": 111791, + "TargetStructureID": 5729, + "Label": "111791-5729 via Unknown from 111792 -> 111794", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111792, + "TargetID": 111794, + "Directional": false + } + ] + }, + { + "ID": 3597, + "SourceStructureID": 111963, + "TargetStructureID": 5729, + "Label": "111963-5729 via Adherens from 111967 -> 89612", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111967, + "TargetID": 89612, + "Directional": false + } + ] + }, + { + "ID": 3598, + "SourceStructureID": 5729, + "TargetStructureID": 111991, + "Label": "5729-111991 via Adherens from 93224 -> 111992", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93224, + "TargetID": 111992, + "Directional": false + } + ] + }, + { + "ID": 3599, + "SourceStructureID": 111997, + "TargetStructureID": 5729, + "Label": "111997-5729 via Unknown from 111998 -> 111999", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111998, + "TargetID": 111999, + "Directional": false + } + ] + }, + { + "ID": 3600, + "SourceStructureID": 112000, + "TargetStructureID": 5729, + "Label": "112000-5729 via Unknown from 112001 -> 112002", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112001, + "TargetID": 112002, + "Directional": false + } + ] + }, + { + "ID": 3601, + "SourceStructureID": 5729, + "TargetStructureID": 112310, + "Label": "5729-112310 via Adherens from 112312 -> 112311", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112312, + "TargetID": 112311, + "Directional": false + } + ] + }, + { + "ID": 3602, + "SourceStructureID": 112313, + "TargetStructureID": 5729, + "Label": "112313-5729 via Adherens from 112314 -> 112316", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112314, + "TargetID": 112316, + "Directional": false + } + ] + }, + { + "ID": 3603, + "SourceStructureID": 112455, + "TargetStructureID": 5729, + "Label": "112455-5729 via Adherens from 112596 -> 112597", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112596, + "TargetID": 112597, + "Directional": false + } + ] + }, + { + "ID": 3604, + "SourceStructureID": 112632, + "TargetStructureID": 5729, + "Label": "112632-5729 via Unknown from 112633 -> 112631", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112633, + "TargetID": 112631, + "Directional": false + } + ] + }, + { + "ID": 3605, + "SourceStructureID": 5729, + "TargetStructureID": 112641, + "Label": "5729-112641 via Adherens from 112615 -> 112643, 112618 -> 112644", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112615, + "TargetID": 112643, + "Directional": false + }, + { + "SourceID": 112618, + "TargetID": 112644, + "Directional": false + } + ] + }, + { + "ID": 3606, + "SourceStructureID": 5729, + "TargetStructureID": 112656, + "Label": "5729-112656 via Adherens from 112655 -> 112657", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112655, + "TargetID": 112657, + "Directional": false + } + ] + }, + { + "ID": 3607, + "SourceStructureID": 112666, + "TargetStructureID": 5729, + "Label": "112666-5729 via Unknown from 112668 -> 112667", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112668, + "TargetID": 112667, + "Directional": false + } + ] + }, + { + "ID": 3608, + "SourceStructureID": 112669, + "TargetStructureID": 5729, + "Label": "112669-5729 via Adherens from 112673 -> 112674, 112675 -> 112676", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112673, + "TargetID": 112674, + "Directional": false + }, + { + "SourceID": 112675, + "TargetID": 112676, + "Directional": false + } + ] + }, + { + "ID": 3609, + "SourceStructureID": 5729, + "TargetStructureID": 112696, + "Label": "5729-112696 via Unknown from 112698 -> 112699", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112698, + "TargetID": 112699, + "Directional": false + } + ] + }, + { + "ID": 3610, + "SourceStructureID": 5729, + "TargetStructureID": 112703, + "Label": "5729-112703 via Unknown from 112707 -> 112708, 112735 -> 112736", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112707, + "TargetID": 112708, + "Directional": false + }, + { + "SourceID": 112735, + "TargetID": 112736, + "Directional": false + } + ] + }, + { + "ID": 3611, + "SourceStructureID": 112715, + "TargetStructureID": 5729, + "Label": "112715-5729 via Adherens from 112717 -> 64472", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112717, + "TargetID": 64472, + "Directional": false + } + ] + }, + { + "ID": 3612, + "SourceStructureID": 5729, + "TargetStructureID": 112721, + "Label": "5729-112721 via Gap Junction from 64477 -> 112722", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 64477, + "TargetID": 112722, + "Directional": false + } + ] + }, + { + "ID": 3613, + "SourceStructureID": 112884, + "TargetStructureID": 5729, + "Label": "112884-5729 via Adherens from 112885 -> 64463", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112885, + "TargetID": 64463, + "Directional": false + } + ] + }, + { + "ID": 3614, + "SourceStructureID": 112916, + "TargetStructureID": 5729, + "Label": "112916-5729 via Unknown from 112922 -> 112923", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112922, + "TargetID": 112923, + "Directional": false + } + ] + }, + { + "ID": 3615, + "SourceStructureID": 5729, + "TargetStructureID": 112925, + "Label": "5729-112925 via Adherens from 112929 -> 112930", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112929, + "TargetID": 112930, + "Directional": false + } + ] + }, + { + "ID": 3616, + "SourceStructureID": 112934, + "TargetStructureID": 5729, + "Label": "112934-5729 via Unknown from 112946 -> 112947", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112946, + "TargetID": 112947, + "Directional": false + } + ] + }, + { + "ID": 3617, + "SourceStructureID": 5729, + "TargetStructureID": 112942, + "Label": "5729-112942 via Adherens from 64535 -> 112960", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64535, + "TargetID": 112960, + "Directional": false + } + ] + }, + { + "ID": 3618, + "SourceStructureID": 5729, + "TargetStructureID": 113810, + "Label": "5729-113810 via Gap Junction from 113812 -> 113811", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 113812, + "TargetID": 113811, + "Directional": false + } + ] + }, + { + "ID": 3619, + "SourceStructureID": 115424, + "TargetStructureID": 5729, + "Label": "115424-5729 via Gap Junction from 115426 -> 113819", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115426, + "TargetID": 113819, + "Directional": false + } + ] + }, + { + "ID": 3620, + "SourceStructureID": 136739, + "TargetStructureID": 5729, + "Label": "136739-5729 via Gap Junction from 136740 -> 112647", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136740, + "TargetID": 112647, + "Directional": false + } + ] + }, + { + "ID": 3621, + "SourceStructureID": 5775, + "TargetStructureID": 5775, + "Label": "5775-5775 via Gap Junction from 120838 -> 120839", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120838, + "TargetID": 120839, + "Directional": false + } + ] + }, + { + "ID": 3622, + "SourceStructureID": 5775, + "TargetStructureID": 5775, + "Label": "5775-5775 via Touch from 93768 -> 93767", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 93768, + "TargetID": 93767, + "Directional": false + } + ] + }, + { + "ID": 3623, + "SourceStructureID": 8040, + "TargetStructureID": 5775, + "Label": "8040-5775 via Gap Junction from 48694 -> 48751, 48713 -> 49144, 48716 -> 48696, 52069 -> 48746, 93755 -> 49109, 93766 -> 48911, 120831 -> 120830, 120833 -> 120832, 120836 -> 48782", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48694, + "TargetID": 48751, + "Directional": false + }, + { + "SourceID": 48713, + "TargetID": 49144, + "Directional": false + }, + { + "SourceID": 48716, + "TargetID": 48696, + "Directional": false + }, + { + "SourceID": 52069, + "TargetID": 48746, + "Directional": false + }, + { + "SourceID": 93755, + "TargetID": 49109, + "Directional": false + }, + { + "SourceID": 93766, + "TargetID": 48911, + "Directional": false + }, + { + "SourceID": 120831, + "TargetID": 120830, + "Directional": false + }, + { + "SourceID": 120833, + "TargetID": 120832, + "Directional": false + }, + { + "SourceID": 120836, + "TargetID": 48782, + "Directional": false + } + ] + }, + { + "ID": 3624, + "SourceStructureID": 5838, + "TargetStructureID": 5916, + "Label": "5838-5916 via Gap Junction from 109052 -> 109051", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 109052, + "TargetID": 109051, + "Directional": false + } + ] + }, + { + "ID": 3625, + "SourceStructureID": 5916, + "TargetStructureID": 5838, + "Label": "5916-5838 via Unknown from 109101 -> 109102", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109101, + "TargetID": 109102, + "Directional": false + } + ] + }, + { + "ID": 3626, + "SourceStructureID": 7951, + "TargetStructureID": 5838, + "Label": "7951-5838 via Gap Junction from 120669 -> 38029, 120670 -> 38030", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120669, + "TargetID": 38029, + "Directional": false + }, + { + "SourceID": 120670, + "TargetID": 38030, + "Directional": false + } + ] + }, + { + "ID": 3627, + "SourceStructureID": 102554, + "TargetStructureID": 5838, + "Label": "102554-5838 via Adherens from 102556 -> 102558", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 102556, + "TargetID": 102558, + "Directional": false + } + ] + }, + { + "ID": 3628, + "SourceStructureID": 6169, + "TargetStructureID": 5860, + "Label": "6169-5860 via Gap Junction from 133082 -> 133083, 133085 -> 24733", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 133082, + "TargetID": 133083, + "Directional": false + }, + { + "SourceID": 133085, + "TargetID": 24733, + "Directional": false + } + ] + }, + { + "ID": 3629, + "SourceStructureID": 7113, + "TargetStructureID": 5860, + "Label": "7113-5860 via Gap Junction from 131417 -> 131416", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131417, + "TargetID": 131416, + "Directional": false + } + ] + }, + { + "ID": 3630, + "SourceStructureID": 5860, + "TargetStructureID": 7174, + "Label": "5860-7174 via Gap Junction from 7173 -> 7175", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 7173, + "TargetID": 7175, + "Directional": false + } + ] + }, + { + "ID": 3631, + "SourceStructureID": 5860, + "TargetStructureID": 40863, + "Label": "5860-40863 via Gap Junction from 14739 -> 40866", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 14739, + "TargetID": 40866, + "Directional": false + } + ] + }, + { + "ID": 3632, + "SourceStructureID": 51715, + "TargetStructureID": 5860, + "Label": "51715-5860 via Gap Junction from 52097 -> 52099, 131166 -> 131165", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52097, + "TargetID": 52099, + "Directional": false + }, + { + "SourceID": 131166, + "TargetID": 131165, + "Directional": false + } + ] + }, + { + "ID": 3633, + "SourceStructureID": 98572, + "TargetStructureID": 5860, + "Label": "98572-5860 via Gap Junction from 98610 -> 98612, 98616 -> 98617", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98610, + "TargetID": 98612, + "Directional": false + }, + { + "SourceID": 98616, + "TargetID": 98617, + "Directional": false + } + ] + }, + { + "ID": 3634, + "SourceStructureID": 5916, + "TargetStructureID": 7050, + "Label": "5916-7050 via Gap Junction from 63205 -> 63204, 63969 -> 63968, 109206 -> 109207", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63205, + "TargetID": 63204, + "Directional": false + }, + { + "SourceID": 63969, + "TargetID": 63968, + "Directional": false + }, + { + "SourceID": 109206, + "TargetID": 109207, + "Directional": false + } + ] + }, + { + "ID": 3635, + "SourceStructureID": 12897, + "TargetStructureID": 5916, + "Label": "12897-5916 via Gap Junction from 109380 -> 109379", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 109380, + "TargetID": 109379, + "Directional": false + } + ] + }, + { + "ID": 3636, + "SourceStructureID": 5916, + "TargetStructureID": 63199, + "Label": "5916-63199 via Gap Junction from 147550 -> 147549", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 147550, + "TargetID": 147549, + "Directional": false + } + ] + }, + { + "ID": 3637, + "SourceStructureID": 69049, + "TargetStructureID": 5916, + "Label": "69049-5916 via Unknown from 109194 -> 109193", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109194, + "TargetID": 109193, + "Directional": false + } + ] + }, + { + "ID": 3638, + "SourceStructureID": 5916, + "TargetStructureID": 106339, + "Label": "5916-106339 via Adherens from 134977 -> 134975", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134977, + "TargetID": 134975, + "Directional": false + } + ] + }, + { + "ID": 3639, + "SourceStructureID": 5916, + "TargetStructureID": 106345, + "Label": "5916-106345 via Unknown from 135446 -> 135447", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135446, + "TargetID": 135447, + "Directional": false + } + ] + }, + { + "ID": 3640, + "SourceStructureID": 108731, + "TargetStructureID": 5916, + "Label": "108731-5916 via Unknown from 158861 -> 158862", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 158861, + "TargetID": 158862, + "Directional": false + } + ] + }, + { + "ID": 3641, + "SourceStructureID": 109308, + "TargetStructureID": 5916, + "Label": "109308-5916 via Unknown from 109321 -> 109320", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109321, + "TargetID": 109320, + "Directional": false + } + ] + }, + { + "ID": 3642, + "SourceStructureID": 5916, + "TargetStructureID": 109731, + "Label": "5916-109731 via Unknown from 109686 -> 109737, 109733 -> 109734, 109735 -> 109736", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109686, + "TargetID": 109737, + "Directional": false + }, + { + "SourceID": 109733, + "TargetID": 109734, + "Directional": false + }, + { + "SourceID": 109735, + "TargetID": 109736, + "Directional": false + } + ] + }, + { + "ID": 3643, + "SourceStructureID": 5923, + "TargetStructureID": 33625, + "Label": "5923-33625 via Touch from 33644 -> 33643", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 33644, + "TargetID": 33643, + "Directional": false + } + ] + }, + { + "ID": 3644, + "SourceStructureID": 6047, + "TargetStructureID": 6120, + "Label": "6047-6120 via Gap Junction from 61771 -> 57394, 110605 -> 110604, 111898 -> 111896", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 61771, + "TargetID": 57394, + "Directional": false + }, + { + "SourceID": 110605, + "TargetID": 110604, + "Directional": false + }, + { + "SourceID": 111898, + "TargetID": 111896, + "Directional": false + } + ] + }, + { + "ID": 3645, + "SourceStructureID": 6141, + "TargetStructureID": 6047, + "Label": "6141-6047 via Gap Junction from 57397 -> 112030, 57398 -> 57395", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57397, + "TargetID": 112030, + "Directional": false + }, + { + "SourceID": 57398, + "TargetID": 57395, + "Directional": false + } + ] + }, + { + "ID": 3646, + "SourceStructureID": 6203, + "TargetStructureID": 6047, + "Label": "6203-6047 via Unknown from 112054 -> 112055", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112054, + "TargetID": 112055, + "Directional": false + } + ] + }, + { + "ID": 3647, + "SourceStructureID": 6047, + "TargetStructureID": 7147, + "Label": "6047-7147 via Adherens from 129300 -> 129301", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129300, + "TargetID": 129301, + "Directional": false + } + ] + }, + { + "ID": 3648, + "SourceStructureID": 7147, + "TargetStructureID": 6047, + "Label": "7147-6047 via Gap Junction from 16066 -> 19650, 19721 -> 19720, 19723 -> 19722, 19732 -> 19731, 61327 -> 61326, 61344 -> 61343, 117227 -> 129329, 129295 -> 129296", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16066, + "TargetID": 19650, + "Directional": false + }, + { + "SourceID": 19721, + "TargetID": 19720, + "Directional": false + }, + { + "SourceID": 19723, + "TargetID": 19722, + "Directional": false + }, + { + "SourceID": 19732, + "TargetID": 19731, + "Directional": false + }, + { + "SourceID": 61327, + "TargetID": 61326, + "Directional": false + }, + { + "SourceID": 61344, + "TargetID": 61343, + "Directional": false + }, + { + "SourceID": 117227, + "TargetID": 129329, + "Directional": false + }, + { + "SourceID": 129295, + "TargetID": 129296, + "Directional": false + } + ] + }, + { + "ID": 3649, + "SourceStructureID": 16073, + "TargetStructureID": 6047, + "Label": "16073-6047 via Unknown from 112229 -> 112227", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112229, + "TargetID": 112227, + "Directional": false + } + ] + }, + { + "ID": 3650, + "SourceStructureID": 35343, + "TargetStructureID": 6047, + "Label": "35343-6047 via Unknown from 113264 -> 113263", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113264, + "TargetID": 113263, + "Directional": false + } + ] + }, + { + "ID": 3651, + "SourceStructureID": 6047, + "TargetStructureID": 111351, + "Label": "6047-111351 via Unknown from 125494 -> 125493", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125494, + "TargetID": 125493, + "Directional": false + } + ] + }, + { + "ID": 3652, + "SourceStructureID": 111912, + "TargetStructureID": 6047, + "Label": "111912-6047 via Unknown from 111913 -> 111911", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111913, + "TargetID": 111911, + "Directional": false + } + ] + }, + { + "ID": 3653, + "SourceStructureID": 111920, + "TargetStructureID": 6047, + "Label": "111920-6047 via Adherens from 111921 -> 19621", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111921, + "TargetID": 19621, + "Directional": false + } + ] + }, + { + "ID": 3654, + "SourceStructureID": 6047, + "TargetStructureID": 112064, + "Label": "6047-112064 via Unknown from 112065 -> 112066", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112065, + "TargetID": 112066, + "Directional": false + } + ] + }, + { + "ID": 3655, + "SourceStructureID": 112069, + "TargetStructureID": 6047, + "Label": "112069-6047 via Adherens from 112070 -> 112068", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112070, + "TargetID": 112068, + "Directional": false + } + ] + }, + { + "ID": 3656, + "SourceStructureID": 6047, + "TargetStructureID": 112081, + "Label": "6047-112081 via Gap Junction from 112080 -> 112083", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 112080, + "TargetID": 112083, + "Directional": false + } + ] + }, + { + "ID": 3657, + "SourceStructureID": 112102, + "TargetStructureID": 6047, + "Label": "112102-6047 via Adherens from 112103 -> 112101", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112103, + "TargetID": 112101, + "Directional": false + } + ] + }, + { + "ID": 3658, + "SourceStructureID": 112126, + "TargetStructureID": 6047, + "Label": "112126-6047 via Gap Junction from 112136 -> 112135, 112138 -> 112137, 112140 -> 112139", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 112136, + "TargetID": 112135, + "Directional": false + }, + { + "SourceID": 112138, + "TargetID": 112137, + "Directional": false + }, + { + "SourceID": 112140, + "TargetID": 112139, + "Directional": false + } + ] + }, + { + "ID": 3659, + "SourceStructureID": 6047, + "TargetStructureID": 112199, + "Label": "6047-112199 via Gap Junction from 112201 -> 112200", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 112201, + "TargetID": 112200, + "Directional": false + } + ] + }, + { + "ID": 3660, + "SourceStructureID": 112233, + "TargetStructureID": 6047, + "Label": "112233-6047 via Gap Junction from 112237 -> 112236, 112238 -> 112239", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 112237, + "TargetID": 112236, + "Directional": false + }, + { + "SourceID": 112238, + "TargetID": 112239, + "Directional": false + } + ] + }, + { + "ID": 3661, + "SourceStructureID": 6047, + "TargetStructureID": 112275, + "Label": "6047-112275 via Unknown from 112276 -> 112277", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112276, + "TargetID": 112277, + "Directional": false + } + ] + }, + { + "ID": 3662, + "SourceStructureID": 112292, + "TargetStructureID": 6047, + "Label": "112292-6047 via Adherens from 112293 -> 56886", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112293, + "TargetID": 56886, + "Directional": false + } + ] + }, + { + "ID": 3663, + "SourceStructureID": 6047, + "TargetStructureID": 112342, + "Label": "6047-112342 via Adherens from 112344 -> 112345", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112344, + "TargetID": 112345, + "Directional": false + } + ] + }, + { + "ID": 3664, + "SourceStructureID": 112358, + "TargetStructureID": 6047, + "Label": "112358-6047 via Adherens from 112359 -> 112357", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112359, + "TargetID": 112357, + "Directional": false + } + ] + }, + { + "ID": 3665, + "SourceStructureID": 6047, + "TargetStructureID": 112395, + "Label": "6047-112395 via Adherens from 112399 -> 112398", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112399, + "TargetID": 112398, + "Directional": false + } + ] + }, + { + "ID": 3666, + "SourceStructureID": 112411, + "TargetStructureID": 6047, + "Label": "112411-6047 via Adherens from 112413 -> 112414", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112413, + "TargetID": 112414, + "Directional": false + } + ] + }, + { + "ID": 3667, + "SourceStructureID": 112415, + "TargetStructureID": 6047, + "Label": "112415-6047 via Gap Junction from 112416 -> 112417", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 112416, + "TargetID": 112417, + "Directional": false + } + ] + }, + { + "ID": 3668, + "SourceStructureID": 112425, + "TargetStructureID": 6047, + "Label": "112425-6047 via Adherens from 112426 -> 19738", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112426, + "TargetID": 19738, + "Directional": false + } + ] + }, + { + "ID": 3669, + "SourceStructureID": 112427, + "TargetStructureID": 6047, + "Label": "112427-6047 via Adherens from 112429 -> 19673", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112429, + "TargetID": 19673, + "Directional": false + } + ] + }, + { + "ID": 3670, + "SourceStructureID": 112436, + "TargetStructureID": 6047, + "Label": "112436-6047 via Gap Junction from 112437 -> 112435", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 112437, + "TargetID": 112435, + "Directional": false + } + ] + }, + { + "ID": 3671, + "SourceStructureID": 6047, + "TargetStructureID": 112480, + "Label": "6047-112480 via Unknown from 112485 -> 112484", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112485, + "TargetID": 112484, + "Directional": false + } + ] + }, + { + "ID": 3672, + "SourceStructureID": 6047, + "TargetStructureID": 112481, + "Label": "6047-112481 via Unknown from 112483 -> 112482", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 112483, + "TargetID": 112482, + "Directional": false + } + ] + }, + { + "ID": 3673, + "SourceStructureID": 112540, + "TargetStructureID": 6047, + "Label": "112540-6047 via Unknown from 129322 -> 129321", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 129322, + "TargetID": 129321, + "Directional": false + } + ] + }, + { + "ID": 3674, + "SourceStructureID": 6047, + "TargetStructureID": 112549, + "Label": "6047-112549 via Adherens from 19661 -> 112553", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 19661, + "TargetID": 112553, + "Directional": false + } + ] + }, + { + "ID": 3675, + "SourceStructureID": 112772, + "TargetStructureID": 6047, + "Label": "112772-6047 via Gap Junction from 112773 -> 112771", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 112773, + "TargetID": 112771, + "Directional": false + } + ] + }, + { + "ID": 3676, + "SourceStructureID": 112786, + "TargetStructureID": 6047, + "Label": "112786-6047 via Adherens from 112792 -> 112785", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112792, + "TargetID": 112785, + "Directional": false + } + ] + }, + { + "ID": 3677, + "SourceStructureID": 6047, + "TargetStructureID": 113170, + "Label": "6047-113170 via Adherens from 113169 -> 113172", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 113169, + "TargetID": 113172, + "Directional": false + } + ] + }, + { + "ID": 3678, + "SourceStructureID": 113179, + "TargetStructureID": 6047, + "Label": "113179-6047 via Adherens from 113180 -> 19633", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 113180, + "TargetID": 19633, + "Directional": false + } + ] + }, + { + "ID": 3679, + "SourceStructureID": 113689, + "TargetStructureID": 6047, + "Label": "113689-6047 via Unknown from 113690 -> 113688", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113690, + "TargetID": 113688, + "Directional": false + } + ] + }, + { + "ID": 3680, + "SourceStructureID": 116142, + "TargetStructureID": 6047, + "Label": "116142-6047 via Adherens from 159530 -> 129327", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159530, + "TargetID": 129327, + "Directional": false + } + ] + }, + { + "ID": 3681, + "SourceStructureID": 6047, + "TargetStructureID": 116142, + "Label": "6047-116142 via Gap Junction from 159527 -> 159528", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 159527, + "TargetID": 159528, + "Directional": false + } + ] + }, + { + "ID": 3682, + "SourceStructureID": 116142, + "TargetStructureID": 6047, + "Label": "116142-6047 via Unknown from 159545 -> 113778", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 159545, + "TargetID": 113778, + "Directional": false + } + ] + }, + { + "ID": 3683, + "SourceStructureID": 6047, + "TargetStructureID": 120936, + "Label": "6047-120936 via Unknown from 120939 -> 120938", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120939, + "TargetID": 120938, + "Directional": false + } + ] + }, + { + "ID": 3684, + "SourceStructureID": 6047, + "TargetStructureID": 126901, + "Label": "6047-126901 via Unknown from 159547 -> 159546", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 159547, + "TargetID": 159546, + "Directional": false + } + ] + }, + { + "ID": 3685, + "SourceStructureID": 6047, + "TargetStructureID": 129340, + "Label": "6047-129340 via Gap Junction from 129318 -> 129342", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 129318, + "TargetID": 129342, + "Directional": false + } + ] + }, + { + "ID": 3686, + "SourceStructureID": 6050, + "TargetStructureID": 6050, + "Label": "6050-6050 via Touch from 147979 -> 147978", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 147979, + "TargetID": 147978, + "Directional": false + } + ] + }, + { + "ID": 3687, + "SourceStructureID": 6050, + "TargetStructureID": 6115, + "Label": "6050-6115 via Touch from 127055 -> 127056", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 127055, + "TargetID": 127056, + "Directional": false + } + ] + }, + { + "ID": 3688, + "SourceStructureID": 6050, + "TargetStructureID": 6169, + "Label": "6050-6169 via Adherens from 127012 -> 127013, 127061 -> 127062, 127065 -> 127064", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127012, + "TargetID": 127013, + "Directional": false + }, + { + "SourceID": 127061, + "TargetID": 127062, + "Directional": false + }, + { + "SourceID": 127065, + "TargetID": 127064, + "Directional": false + } + ] + }, + { + "ID": 3689, + "SourceStructureID": 6050, + "TargetStructureID": 6169, + "Label": "6050-6169 via Gap Junction from 29709 -> 29708, 101828 -> 24647, 114326 -> 114325", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29709, + "TargetID": 29708, + "Directional": false + }, + { + "SourceID": 101828, + "TargetID": 24647, + "Directional": false + }, + { + "SourceID": 114326, + "TargetID": 114325, + "Directional": false + } + ] + }, + { + "ID": 3690, + "SourceStructureID": 6300, + "TargetStructureID": 6050, + "Label": "6300-6050 via Adherens from 127096 -> 127097, 127098 -> 127099", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127096, + "TargetID": 127097, + "Directional": false + }, + { + "SourceID": 127098, + "TargetID": 127099, + "Directional": false + } + ] + }, + { + "ID": 3691, + "SourceStructureID": 7113, + "TargetStructureID": 6050, + "Label": "7113-6050 via Adherens from 127191 -> 127190, 127245 -> 127244", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127191, + "TargetID": 127190, + "Directional": false + }, + { + "SourceID": 127245, + "TargetID": 127244, + "Directional": false + } + ] + }, + { + "ID": 3692, + "SourceStructureID": 7113, + "TargetStructureID": 6050, + "Label": "7113-6050 via Gap Junction from 35953 -> 35952, 35954 -> 29716, 51680 -> 51681, 113574 -> 113573, 113875 -> 113874", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 35953, + "TargetID": 35952, + "Directional": false + }, + { + "SourceID": 35954, + "TargetID": 29716, + "Directional": false + }, + { + "SourceID": 51680, + "TargetID": 51681, + "Directional": false + }, + { + "SourceID": 113574, + "TargetID": 113573, + "Directional": false + }, + { + "SourceID": 113875, + "TargetID": 113874, + "Directional": false + } + ] + }, + { + "ID": 3693, + "SourceStructureID": 7147, + "TargetStructureID": 6050, + "Label": "7147-6050 via Adherens from 127658 -> 127657", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127658, + "TargetID": 127657, + "Directional": false + } + ] + }, + { + "ID": 3694, + "SourceStructureID": 7147, + "TargetStructureID": 6050, + "Label": "7147-6050 via Gap Junction from 51917 -> 51916, 114007 -> 114008, 114375 -> 114376", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51917, + "TargetID": 51916, + "Directional": false + }, + { + "SourceID": 114007, + "TargetID": 114008, + "Directional": false + }, + { + "SourceID": 114375, + "TargetID": 114376, + "Directional": false + } + ] + }, + { + "ID": 3695, + "SourceStructureID": 9769, + "TargetStructureID": 6050, + "Label": "9769-6050 via Unknown from 126971 -> 126970, 127630 -> 127631", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126971, + "TargetID": 126970, + "Directional": false + }, + { + "SourceID": 127630, + "TargetID": 127631, + "Directional": false + } + ] + }, + { + "ID": 3696, + "SourceStructureID": 6050, + "TargetStructureID": 22974, + "Label": "6050-22974 via Adherens from 127638 -> 127639", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127638, + "TargetID": 127639, + "Directional": false + } + ] + }, + { + "ID": 3697, + "SourceStructureID": 6050, + "TargetStructureID": 32945, + "Label": "6050-32945 via Unknown from 127027 -> 127028", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127027, + "TargetID": 127028, + "Directional": false + } + ] + }, + { + "ID": 3698, + "SourceStructureID": 6050, + "TargetStructureID": 38302, + "Label": "6050-38302 via Adherens from 127349 -> 127350", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127349, + "TargetID": 127350, + "Directional": false + } + ] + }, + { + "ID": 3699, + "SourceStructureID": 38307, + "TargetStructureID": 6050, + "Label": "38307-6050 via Adherens from 127282 -> 127281", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127282, + "TargetID": 127281, + "Directional": false + } + ] + }, + { + "ID": 3700, + "SourceStructureID": 56841, + "TargetStructureID": 6050, + "Label": "56841-6050 via Unknown from 127595 -> 127594", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127595, + "TargetID": 127594, + "Directional": false + } + ] + }, + { + "ID": 3701, + "SourceStructureID": 6050, + "TargetStructureID": 57063, + "Label": "6050-57063 via Unknown from 51657 -> 113871", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 51657, + "TargetID": 113871, + "Directional": false + } + ] + }, + { + "ID": 3702, + "SourceStructureID": 6050, + "TargetStructureID": 57064, + "Label": "6050-57064 via Unknown from 119688 -> 128924, 127128 -> 127129, 127219 -> 113872, 127221 -> 127220, 127436 -> 127435, 128928 -> 128927, 136478 -> 127102", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 119688, + "TargetID": 128924, + "Directional": false + }, + { + "SourceID": 127128, + "TargetID": 127129, + "Directional": false + }, + { + "SourceID": 127219, + "TargetID": 113872, + "Directional": false + }, + { + "SourceID": 127221, + "TargetID": 127220, + "Directional": false + }, + { + "SourceID": 127436, + "TargetID": 127435, + "Directional": false + }, + { + "SourceID": 128928, + "TargetID": 128927, + "Directional": false + }, + { + "SourceID": 136478, + "TargetID": 127102, + "Directional": false + } + ] + }, + { + "ID": 3703, + "SourceStructureID": 6050, + "TargetStructureID": 70219, + "Label": "6050-70219 via Unknown from 127040 -> 127041", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127040, + "TargetID": 127041, + "Directional": false + } + ] + }, + { + "ID": 3704, + "SourceStructureID": 6050, + "TargetStructureID": 77658, + "Label": "6050-77658 via Unknown from 126989 -> 126988", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126989, + "TargetID": 126988, + "Directional": false + } + ] + }, + { + "ID": 3705, + "SourceStructureID": 82091, + "TargetStructureID": 6050, + "Label": "82091-6050 via Unknown from 126997 -> 126996", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126997, + "TargetID": 126996, + "Directional": false + } + ] + }, + { + "ID": 3706, + "SourceStructureID": 91867, + "TargetStructureID": 6050, + "Label": "91867-6050 via Adherens from 127230 -> 127231, 127233 -> 127234", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127230, + "TargetID": 127231, + "Directional": false + }, + { + "SourceID": 127233, + "TargetID": 127234, + "Directional": false + } + ] + }, + { + "ID": 3707, + "SourceStructureID": 6050, + "TargetStructureID": 91867, + "Label": "6050-91867 via Unknown from 113537 -> 128989, 113561 -> 113559", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113537, + "TargetID": 128989, + "Directional": false + }, + { + "SourceID": 113561, + "TargetID": 113559, + "Directional": false + } + ] + }, + { + "ID": 3708, + "SourceStructureID": 6050, + "TargetStructureID": 105188, + "Label": "6050-105188 via Unknown from 127481 -> 127482", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127481, + "TargetID": 127482, + "Directional": false + } + ] + }, + { + "ID": 3709, + "SourceStructureID": 6050, + "TargetStructureID": 113939, + "Label": "6050-113939 via Adherens from 119464 -> 119463, 127462 -> 127463", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 119464, + "TargetID": 119463, + "Directional": false + }, + { + "SourceID": 127462, + "TargetID": 127463, + "Directional": false + } + ] + }, + { + "ID": 3710, + "SourceStructureID": 113939, + "TargetStructureID": 6050, + "Label": "113939-6050 via Unknown from 119462 -> 119460", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 119462, + "TargetID": 119460, + "Directional": false + } + ] + }, + { + "ID": 3711, + "SourceStructureID": 6050, + "TargetStructureID": 113965, + "Label": "6050-113965 via Unknown from 119465 -> 119466", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 119465, + "TargetID": 119466, + "Directional": false + } + ] + }, + { + "ID": 3712, + "SourceStructureID": 114230, + "TargetStructureID": 6050, + "Label": "114230-6050 via Unknown from 114231 -> 56067, 127544 -> 127545", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114231, + "TargetID": 56067, + "Directional": false + }, + { + "SourceID": 127544, + "TargetID": 127545, + "Directional": false + } + ] + }, + { + "ID": 3713, + "SourceStructureID": 6050, + "TargetStructureID": 114242, + "Label": "6050-114242 via Unknown from 119468 -> 119467", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 119468, + "TargetID": 119467, + "Directional": false + } + ] + }, + { + "ID": 3714, + "SourceStructureID": 6050, + "TargetStructureID": 114259, + "Label": "6050-114259 via Unknown from 127655 -> 127656", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127655, + "TargetID": 127656, + "Directional": false + } + ] + }, + { + "ID": 3715, + "SourceStructureID": 120956, + "TargetStructureID": 6050, + "Label": "120956-6050 via Unknown from 127252 -> 127251", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127252, + "TargetID": 127251, + "Directional": false + } + ] + }, + { + "ID": 3716, + "SourceStructureID": 6050, + "TargetStructureID": 124198, + "Label": "6050-124198 via Unknown from 127288 -> 127289", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127288, + "TargetID": 127289, + "Directional": false + } + ] + }, + { + "ID": 3717, + "SourceStructureID": 6050, + "TargetStructureID": 127148, + "Label": "6050-127148 via Unknown from 127150 -> 127151", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 127150, + "TargetID": 127151, + "Directional": false + } + ] + }, + { + "ID": 3718, + "SourceStructureID": 128961, + "TargetStructureID": 6050, + "Label": "128961-6050 via Unknown from 128962 -> 128960", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128962, + "TargetID": 128960, + "Directional": false + } + ] + }, + { + "ID": 3719, + "SourceStructureID": 6115, + "TargetStructureID": 6115, + "Label": "6115-6115 via Gap Junction from 16063 -> 55784, 72770 -> 72769", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16063, + "TargetID": 55784, + "Directional": false + }, + { + "SourceID": 72770, + "TargetID": 72769, + "Directional": false + } + ] + }, + { + "ID": 3720, + "SourceStructureID": 6115, + "TargetStructureID": 6169, + "Label": "6115-6169 via Gap Junction from 24649 -> 24648, 55853 -> 55852, 72533 -> 72532, 72675 -> 72676, 73194 -> 73193, 135173 -> 135172", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24649, + "TargetID": 24648, + "Directional": false + }, + { + "SourceID": 55853, + "TargetID": 55852, + "Directional": false + }, + { + "SourceID": 72533, + "TargetID": 72532, + "Directional": false + }, + { + "SourceID": 72675, + "TargetID": 72676, + "Directional": false + }, + { + "SourceID": 73194, + "TargetID": 73193, + "Directional": false + }, + { + "SourceID": 135173, + "TargetID": 135172, + "Directional": false + } + ] + }, + { + "ID": 3721, + "SourceStructureID": 7113, + "TargetStructureID": 6115, + "Label": "7113-6115 via Adherens from 135307 -> 135306", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135307, + "TargetID": 135306, + "Directional": false + } + ] + }, + { + "ID": 3722, + "SourceStructureID": 6115, + "TargetStructureID": 7113, + "Label": "6115-7113 via Gap Junction from 72214 -> 72213, 73879 -> 73880, 73935 -> 80966, 74172 -> 81891", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 72214, + "TargetID": 72213, + "Directional": false + }, + { + "SourceID": 73879, + "TargetID": 73880, + "Directional": false + }, + { + "SourceID": 73935, + "TargetID": 80966, + "Directional": false + }, + { + "SourceID": 74172, + "TargetID": 81891, + "Directional": false + } + ] + }, + { + "ID": 3723, + "SourceStructureID": 7147, + "TargetStructureID": 6115, + "Label": "7147-6115 via Gap Junction from 52194 -> 52193, 134239 -> 134240, 134252 -> 134253, 134255 -> 134254, 134256 -> 134257", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52194, + "TargetID": 52193, + "Directional": false + }, + { + "SourceID": 134239, + "TargetID": 134240, + "Directional": false + }, + { + "SourceID": 134252, + "TargetID": 134253, + "Directional": false + }, + { + "SourceID": 134255, + "TargetID": 134254, + "Directional": false + }, + { + "SourceID": 134256, + "TargetID": 134257, + "Directional": false + } + ] + }, + { + "ID": 3724, + "SourceStructureID": 6115, + "TargetStructureID": 8577, + "Label": "6115-8577 via Unknown from 73403 -> 73405", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73403, + "TargetID": 73405, + "Directional": false + } + ] + }, + { + "ID": 3725, + "SourceStructureID": 6115, + "TargetStructureID": 8579, + "Label": "6115-8579 via Adherens from 81173 -> 81174", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81173, + "TargetID": 81174, + "Directional": false + } + ] + }, + { + "ID": 3726, + "SourceStructureID": 8579, + "TargetStructureID": 6115, + "Label": "8579-6115 via Unknown from 72504 -> 72502, 72534 -> 72536, 72601 -> 72602, 73554 -> 134229", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72504, + "TargetID": 72502, + "Directional": false + }, + { + "SourceID": 72534, + "TargetID": 72536, + "Directional": false + }, + { + "SourceID": 72601, + "TargetID": 72602, + "Directional": false + }, + { + "SourceID": 73554, + "TargetID": 134229, + "Directional": false + } + ] + }, + { + "ID": 3727, + "SourceStructureID": 6115, + "TargetStructureID": 8720, + "Label": "6115-8720 via Unknown from 72944 -> 72945, 127791 -> 73209", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72944, + "TargetID": 72945, + "Directional": false + }, + { + "SourceID": 127791, + "TargetID": 73209, + "Directional": false + } + ] + }, + { + "ID": 3728, + "SourceStructureID": 16087, + "TargetStructureID": 6115, + "Label": "16087-6115 via Adherens from 72686 -> 72685, 75422 -> 75421", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72686, + "TargetID": 72685, + "Directional": false + }, + { + "SourceID": 75422, + "TargetID": 75421, + "Directional": false + } + ] + }, + { + "ID": 3729, + "SourceStructureID": 6115, + "TargetStructureID": 18282, + "Label": "6115-18282 via Unknown from 73239 -> 73240", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73239, + "TargetID": 73240, + "Directional": false + } + ] + }, + { + "ID": 3730, + "SourceStructureID": 6115, + "TargetStructureID": 29702, + "Label": "6115-29702 via Adherens from 75477 -> 75476, 75542 -> 75543, 75544 -> 75545", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75477, + "TargetID": 75476, + "Directional": false + }, + { + "SourceID": 75542, + "TargetID": 75543, + "Directional": false + }, + { + "SourceID": 75544, + "TargetID": 75545, + "Directional": false + } + ] + }, + { + "ID": 3731, + "SourceStructureID": 6115, + "TargetStructureID": 29702, + "Label": "6115-29702 via Unknown from 73247 -> 73248, 74102 -> 74103", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73247, + "TargetID": 73248, + "Directional": false + }, + { + "SourceID": 74102, + "TargetID": 74103, + "Directional": false + } + ] + }, + { + "ID": 3732, + "SourceStructureID": 6115, + "TargetStructureID": 32970, + "Label": "6115-32970 via Unknown from 80944 -> 80943", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80944, + "TargetID": 80943, + "Directional": false + } + ] + }, + { + "ID": 3733, + "SourceStructureID": 6115, + "TargetStructureID": 41608, + "Label": "6115-41608 via Unknown from 72279 -> 72280, 72806 -> 72805", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72279, + "TargetID": 72280, + "Directional": false + }, + { + "SourceID": 72806, + "TargetID": 72805, + "Directional": false + } + ] + }, + { + "ID": 3734, + "SourceStructureID": 61853, + "TargetStructureID": 6115, + "Label": "61853-6115 via Adherens from 81426 -> 73776", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81426, + "TargetID": 73776, + "Directional": false + } + ] + }, + { + "ID": 3735, + "SourceStructureID": 6115, + "TargetStructureID": 66323, + "Label": "6115-66323 via Adherens from 73129 -> 84324", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73129, + "TargetID": 84324, + "Directional": false + } + ] + }, + { + "ID": 3736, + "SourceStructureID": 66323, + "TargetStructureID": 6115, + "Label": "66323-6115 via Unknown from 84400 -> 74274", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84400, + "TargetID": 74274, + "Directional": false + } + ] + }, + { + "ID": 3737, + "SourceStructureID": 6115, + "TargetStructureID": 66339, + "Label": "6115-66339 via Adherens from 84272 -> 84271", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84272, + "TargetID": 84271, + "Directional": false + } + ] + }, + { + "ID": 3738, + "SourceStructureID": 6115, + "TargetStructureID": 66339, + "Label": "6115-66339 via Unknown from 73131 -> 73132, 76008 -> 76009", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73131, + "TargetID": 73132, + "Directional": false + }, + { + "SourceID": 76008, + "TargetID": 76009, + "Directional": false + } + ] + }, + { + "ID": 3739, + "SourceStructureID": 6115, + "TargetStructureID": 66634, + "Label": "6115-66634 via Adherens from 74411 -> 74410", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74411, + "TargetID": 74410, + "Directional": false + } + ] + }, + { + "ID": 3740, + "SourceStructureID": 6115, + "TargetStructureID": 66696, + "Label": "6115-66696 via Unknown from 72636 -> 72637", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72636, + "TargetID": 72637, + "Directional": false + } + ] + }, + { + "ID": 3741, + "SourceStructureID": 68548, + "TargetStructureID": 6115, + "Label": "68548-6115 via Unknown from 73563 -> 73046", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73563, + "TargetID": 73046, + "Directional": false + } + ] + }, + { + "ID": 3742, + "SourceStructureID": 6115, + "TargetStructureID": 69500, + "Label": "6115-69500 via Adherens from 81172 -> 81171", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81172, + "TargetID": 81171, + "Directional": false + } + ] + }, + { + "ID": 3743, + "SourceStructureID": 69500, + "TargetStructureID": 6115, + "Label": "69500-6115 via Unknown from 72434 -> 72433", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72434, + "TargetID": 72433, + "Directional": false + } + ] + }, + { + "ID": 3744, + "SourceStructureID": 6115, + "TargetStructureID": 69503, + "Label": "6115-69503 via Adherens from 72416 -> 116708", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72416, + "TargetID": 116708, + "Directional": false + } + ] + }, + { + "ID": 3745, + "SourceStructureID": 6115, + "TargetStructureID": 69503, + "Label": "6115-69503 via Unknown from 72435 -> 72437", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72435, + "TargetID": 72437, + "Directional": false + } + ] + }, + { + "ID": 3746, + "SourceStructureID": 6115, + "TargetStructureID": 71351, + "Label": "6115-71351 via Unknown from 74421 -> 74422, 134262 -> 75527", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74421, + "TargetID": 74422, + "Directional": false + }, + { + "SourceID": 134262, + "TargetID": 75527, + "Directional": false + } + ] + }, + { + "ID": 3747, + "SourceStructureID": 6115, + "TargetStructureID": 71615, + "Label": "6115-71615 via Unknown from 72918 -> 72919, 75983 -> 81334", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72918, + "TargetID": 72919, + "Directional": false + }, + { + "SourceID": 75983, + "TargetID": 81334, + "Directional": false + } + ] + }, + { + "ID": 3748, + "SourceStructureID": 6115, + "TargetStructureID": 72072, + "Label": "6115-72072 via Unknown from 72073 -> 134155", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72073, + "TargetID": 134155, + "Directional": false + } + ] + }, + { + "ID": 3749, + "SourceStructureID": 6115, + "TargetStructureID": 72082, + "Label": "6115-72082 via Adherens from 72083 -> 72084", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72083, + "TargetID": 72084, + "Directional": false + } + ] + }, + { + "ID": 3750, + "SourceStructureID": 6115, + "TargetStructureID": 72162, + "Label": "6115-72162 via Adherens from 37633 -> 82093", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 37633, + "TargetID": 82093, + "Directional": false + } + ] + }, + { + "ID": 3751, + "SourceStructureID": 72166, + "TargetStructureID": 6115, + "Label": "72166-6115 via Adherens from 134159 -> 134158", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134159, + "TargetID": 134158, + "Directional": false + } + ] + }, + { + "ID": 3752, + "SourceStructureID": 72176, + "TargetStructureID": 6115, + "Label": "72176-6115 via Unknown from 81157 -> 75533", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81157, + "TargetID": 75533, + "Directional": false + } + ] + }, + { + "ID": 3753, + "SourceStructureID": 6115, + "TargetStructureID": 72180, + "Label": "6115-72180 via Adherens from 81152 -> 81151", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81152, + "TargetID": 81151, + "Directional": false + } + ] + }, + { + "ID": 3754, + "SourceStructureID": 6115, + "TargetStructureID": 72188, + "Label": "6115-72188 via Adherens from 127273 -> 127274", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 127273, + "TargetID": 127274, + "Directional": false + } + ] + }, + { + "ID": 3755, + "SourceStructureID": 6115, + "TargetStructureID": 72218, + "Label": "6115-72218 via Adherens from 72219 -> 72220", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72219, + "TargetID": 72220, + "Directional": false + } + ] + }, + { + "ID": 3756, + "SourceStructureID": 72223, + "TargetStructureID": 6115, + "Label": "72223-6115 via Unknown from 80930 -> 80931", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80930, + "TargetID": 80931, + "Directional": false + } + ] + }, + { + "ID": 3757, + "SourceStructureID": 6115, + "TargetStructureID": 72227, + "Label": "6115-72227 via Unknown from 80939 -> 80940", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80939, + "TargetID": 80940, + "Directional": false + } + ] + }, + { + "ID": 3758, + "SourceStructureID": 6115, + "TargetStructureID": 72252, + "Label": "6115-72252 via Unknown from 72253 -> 72254", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72253, + "TargetID": 72254, + "Directional": false + } + ] + }, + { + "ID": 3759, + "SourceStructureID": 6115, + "TargetStructureID": 72299, + "Label": "6115-72299 via Unknown from 74743 -> 74744, 134162 -> 134163", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74743, + "TargetID": 74744, + "Directional": false + }, + { + "SourceID": 134162, + "TargetID": 134163, + "Directional": false + } + ] + }, + { + "ID": 3760, + "SourceStructureID": 6115, + "TargetStructureID": 72326, + "Label": "6115-72326 via Unknown from 82370 -> 82373", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82370, + "TargetID": 82373, + "Directional": false + } + ] + }, + { + "ID": 3761, + "SourceStructureID": 6115, + "TargetStructureID": 72331, + "Label": "6115-72331 via Adherens from 73236 -> 73235", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73236, + "TargetID": 73235, + "Directional": false + } + ] + }, + { + "ID": 3762, + "SourceStructureID": 6115, + "TargetStructureID": 72363, + "Label": "6115-72363 via Unknown from 72374 -> 82038, 73256 -> 73257", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72374, + "TargetID": 82038, + "Directional": false + }, + { + "SourceID": 73256, + "TargetID": 73257, + "Directional": false + } + ] + }, + { + "ID": 3763, + "SourceStructureID": 72376, + "TargetStructureID": 6115, + "Label": "72376-6115 via Adherens from 75601 -> 75600", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75601, + "TargetID": 75600, + "Directional": false + } + ] + }, + { + "ID": 3764, + "SourceStructureID": 72402, + "TargetStructureID": 6115, + "Label": "72402-6115 via Adherens from 80946 -> 80947", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80946, + "TargetID": 80947, + "Directional": false + } + ] + }, + { + "ID": 3765, + "SourceStructureID": 72438, + "TargetStructureID": 6115, + "Label": "72438-6115 via Unknown from 72439 -> 72440", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72439, + "TargetID": 72440, + "Directional": false + } + ] + }, + { + "ID": 3766, + "SourceStructureID": 72445, + "TargetStructureID": 6115, + "Label": "72445-6115 via Unknown from 72447 -> 72446", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72447, + "TargetID": 72446, + "Directional": false + } + ] + }, + { + "ID": 3767, + "SourceStructureID": 72486, + "TargetStructureID": 6115, + "Label": "72486-6115 via Unknown from 72487 -> 72488", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72487, + "TargetID": 72488, + "Directional": false + } + ] + }, + { + "ID": 3768, + "SourceStructureID": 6115, + "TargetStructureID": 72496, + "Label": "6115-72496 via Unknown from 72499 -> 72500", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72499, + "TargetID": 72500, + "Directional": false + } + ] + }, + { + "ID": 3769, + "SourceStructureID": 6115, + "TargetStructureID": 72505, + "Label": "6115-72505 via Adherens from 72498 -> 72509, 72508 -> 72507", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72498, + "TargetID": 72509, + "Directional": false + }, + { + "SourceID": 72508, + "TargetID": 72507, + "Directional": false + } + ] + }, + { + "ID": 3770, + "SourceStructureID": 72518, + "TargetStructureID": 6115, + "Label": "72518-6115 via Unknown from 82311 -> 135176, 82313 -> 82312", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82311, + "TargetID": 135176, + "Directional": false + }, + { + "SourceID": 82313, + "TargetID": 82312, + "Directional": false + } + ] + }, + { + "ID": 3771, + "SourceStructureID": 72523, + "TargetStructureID": 6115, + "Label": "72523-6115 via Unknown from 75606 -> 75605", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75606, + "TargetID": 75605, + "Directional": false + } + ] + }, + { + "ID": 3772, + "SourceStructureID": 6115, + "TargetStructureID": 72526, + "Label": "6115-72526 via Adherens from 72537 -> 72538", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72537, + "TargetID": 72538, + "Directional": false + } + ] + }, + { + "ID": 3773, + "SourceStructureID": 6115, + "TargetStructureID": 72539, + "Label": "6115-72539 via BC Conventional Synapse from 72541 -> 72540", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 72541, + "TargetID": 72540, + "Directional": false + } + ] + }, + { + "ID": 3774, + "SourceStructureID": 6115, + "TargetStructureID": 72542, + "Label": "6115-72542 via Unknown from 75613 -> 75614", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75613, + "TargetID": 75614, + "Directional": false + } + ] + }, + { + "ID": 3775, + "SourceStructureID": 6115, + "TargetStructureID": 72556, + "Label": "6115-72556 via Unknown from 72558 -> 72557", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72558, + "TargetID": 72557, + "Directional": false + } + ] + }, + { + "ID": 3776, + "SourceStructureID": 6115, + "TargetStructureID": 72569, + "Label": "6115-72569 via Adherens from 72579 -> 72581", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72579, + "TargetID": 72581, + "Directional": false + } + ] + }, + { + "ID": 3777, + "SourceStructureID": 72584, + "TargetStructureID": 6115, + "Label": "72584-6115 via Unknown from 72585 -> 72586", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72585, + "TargetID": 72586, + "Directional": false + } + ] + }, + { + "ID": 3778, + "SourceStructureID": 72592, + "TargetStructureID": 6115, + "Label": "72592-6115 via Unknown from 72597 -> 72596, 72598 -> 72599, 75656 -> 75657", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72597, + "TargetID": 72596, + "Directional": false + }, + { + "SourceID": 72598, + "TargetID": 72599, + "Directional": false + }, + { + "SourceID": 75656, + "TargetID": 75657, + "Directional": false + } + ] + }, + { + "ID": 3779, + "SourceStructureID": 6115, + "TargetStructureID": 72604, + "Label": "6115-72604 via Adherens from 72603 -> 72605, 75659 -> 75660", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72603, + "TargetID": 72605, + "Directional": false + }, + { + "SourceID": 75659, + "TargetID": 75660, + "Directional": false + } + ] + }, + { + "ID": 3780, + "SourceStructureID": 72604, + "TargetStructureID": 6115, + "Label": "72604-6115 via Unknown from 72667 -> 72666, 72674 -> 72673, 75669 -> 75670", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72667, + "TargetID": 72666, + "Directional": false + }, + { + "SourceID": 72674, + "TargetID": 72673, + "Directional": false + }, + { + "SourceID": 75669, + "TargetID": 75670, + "Directional": false + } + ] + }, + { + "ID": 3781, + "SourceStructureID": 6115, + "TargetStructureID": 72612, + "Label": "6115-72612 via Unknown from 72611 -> 72613", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72611, + "TargetID": 72613, + "Directional": false + } + ] + }, + { + "ID": 3782, + "SourceStructureID": 72633, + "TargetStructureID": 6115, + "Label": "72633-6115 via Unknown from 72634 -> 72635", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72634, + "TargetID": 72635, + "Directional": false + } + ] + }, + { + "ID": 3783, + "SourceStructureID": 6115, + "TargetStructureID": 72643, + "Label": "6115-72643 via Unknown from 73262 -> 73263", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73262, + "TargetID": 73263, + "Directional": false + } + ] + }, + { + "ID": 3784, + "SourceStructureID": 6115, + "TargetStructureID": 72658, + "Label": "6115-72658 via Unknown from 72663 -> 72662", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72663, + "TargetID": 72662, + "Directional": false + } + ] + }, + { + "ID": 3785, + "SourceStructureID": 72687, + "TargetStructureID": 6115, + "Label": "72687-6115 via Adherens from 72700 -> 72699", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72700, + "TargetID": 72699, + "Directional": false + } + ] + }, + { + "ID": 3786, + "SourceStructureID": 6115, + "TargetStructureID": 72687, + "Label": "6115-72687 via Unknown from 72703 -> 72704", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72703, + "TargetID": 72704, + "Directional": false + } + ] + }, + { + "ID": 3787, + "SourceStructureID": 6115, + "TargetStructureID": 72690, + "Label": "6115-72690 via Unknown from 81914 -> 81915", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81914, + "TargetID": 81915, + "Directional": false + } + ] + }, + { + "ID": 3788, + "SourceStructureID": 6115, + "TargetStructureID": 72697, + "Label": "6115-72697 via Unknown from 72701 -> 72702", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72701, + "TargetID": 72702, + "Directional": false + } + ] + }, + { + "ID": 3789, + "SourceStructureID": 6115, + "TargetStructureID": 72712, + "Label": "6115-72712 via Unknown from 72720 -> 72721", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72720, + "TargetID": 72721, + "Directional": false + } + ] + }, + { + "ID": 3790, + "SourceStructureID": 6115, + "TargetStructureID": 72730, + "Label": "6115-72730 via Unknown from 72733 -> 72734", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72733, + "TargetID": 72734, + "Directional": false + } + ] + }, + { + "ID": 3791, + "SourceStructureID": 72749, + "TargetStructureID": 6115, + "Label": "72749-6115 via Adherens from 72750 -> 72748", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72750, + "TargetID": 72748, + "Directional": false + } + ] + }, + { + "ID": 3792, + "SourceStructureID": 72751, + "TargetStructureID": 6115, + "Label": "72751-6115 via Unknown from 72752 -> 72753", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72752, + "TargetID": 72753, + "Directional": false + } + ] + }, + { + "ID": 3793, + "SourceStructureID": 6115, + "TargetStructureID": 72754, + "Label": "6115-72754 via Unknown from 72761 -> 72762", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72761, + "TargetID": 72762, + "Directional": false + } + ] + }, + { + "ID": 3794, + "SourceStructureID": 6115, + "TargetStructureID": 72756, + "Label": "6115-72756 via Unknown from 72759 -> 72760", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72759, + "TargetID": 72760, + "Directional": false + } + ] + }, + { + "ID": 3795, + "SourceStructureID": 6115, + "TargetStructureID": 72765, + "Label": "6115-72765 via Unknown from 72764 -> 72767", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72764, + "TargetID": 72767, + "Directional": false + } + ] + }, + { + "ID": 3796, + "SourceStructureID": 6115, + "TargetStructureID": 72772, + "Label": "6115-72772 via Adherens from 72802 -> 72801", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72802, + "TargetID": 72801, + "Directional": false + } + ] + }, + { + "ID": 3797, + "SourceStructureID": 6115, + "TargetStructureID": 72778, + "Label": "6115-72778 via Adherens from 72783 -> 72782", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72783, + "TargetID": 72782, + "Directional": false + } + ] + }, + { + "ID": 3798, + "SourceStructureID": 6115, + "TargetStructureID": 72784, + "Label": "6115-72784 via Unknown from 72790 -> 72791", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72790, + "TargetID": 72791, + "Directional": false + } + ] + }, + { + "ID": 3799, + "SourceStructureID": 72818, + "TargetStructureID": 6115, + "Label": "72818-6115 via Unknown from 134265 -> 75837", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134265, + "TargetID": 75837, + "Directional": false + } + ] + }, + { + "ID": 3800, + "SourceStructureID": 72821, + "TargetStructureID": 6115, + "Label": "72821-6115 via Gap Junction from 72822 -> 55805", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 72822, + "TargetID": 55805, + "Directional": false + } + ] + }, + { + "ID": 3801, + "SourceStructureID": 6115, + "TargetStructureID": 72837, + "Label": "6115-72837 via Unknown from 72838 -> 72839", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72838, + "TargetID": 72839, + "Directional": false + } + ] + }, + { + "ID": 3802, + "SourceStructureID": 6115, + "TargetStructureID": 72844, + "Label": "6115-72844 via Unknown from 75980 -> 75981", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75980, + "TargetID": 75981, + "Directional": false + } + ] + }, + { + "ID": 3803, + "SourceStructureID": 72847, + "TargetStructureID": 6115, + "Label": "72847-6115 via Adherens from 72911 -> 72910", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72911, + "TargetID": 72910, + "Directional": false + } + ] + }, + { + "ID": 3804, + "SourceStructureID": 6115, + "TargetStructureID": 72901, + "Label": "6115-72901 via Unknown from 75978 -> 75979", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75978, + "TargetID": 75979, + "Directional": false + } + ] + }, + { + "ID": 3805, + "SourceStructureID": 6115, + "TargetStructureID": 72915, + "Label": "6115-72915 via Unknown from 80941 -> 80942", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80941, + "TargetID": 80942, + "Directional": false + } + ] + }, + { + "ID": 3806, + "SourceStructureID": 72920, + "TargetStructureID": 6115, + "Label": "72920-6115 via Unknown from 82300 -> 75984", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82300, + "TargetID": 75984, + "Directional": false + } + ] + }, + { + "ID": 3807, + "SourceStructureID": 6115, + "TargetStructureID": 72930, + "Label": "6115-72930 via Unknown from 73039 -> 82410, 81345 -> 81346", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73039, + "TargetID": 82410, + "Directional": false + }, + { + "SourceID": 81345, + "TargetID": 81346, + "Directional": false + } + ] + }, + { + "ID": 3808, + "SourceStructureID": 6115, + "TargetStructureID": 72936, + "Label": "6115-72936 via Adherens from 76021 -> 76022", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76021, + "TargetID": 76022, + "Directional": false + } + ] + }, + { + "ID": 3809, + "SourceStructureID": 72939, + "TargetStructureID": 6115, + "Label": "72939-6115 via Adherens from 76020 -> 76019", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76020, + "TargetID": 76019, + "Directional": false + } + ] + }, + { + "ID": 3810, + "SourceStructureID": 72941, + "TargetStructureID": 6115, + "Label": "72941-6115 via Gap Junction from 72942 -> 72943", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 72942, + "TargetID": 72943, + "Directional": false + } + ] + }, + { + "ID": 3811, + "SourceStructureID": 72964, + "TargetStructureID": 6115, + "Label": "72964-6115 via Adherens from 72971 -> 72972", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72971, + "TargetID": 72972, + "Directional": false + } + ] + }, + { + "ID": 3812, + "SourceStructureID": 6115, + "TargetStructureID": 72964, + "Label": "6115-72964 via Unknown from 74306 -> 74307", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74306, + "TargetID": 74307, + "Directional": false + } + ] + }, + { + "ID": 3813, + "SourceStructureID": 6115, + "TargetStructureID": 72969, + "Label": "6115-72969 via Unknown from 73041 -> 73042", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73041, + "TargetID": 73042, + "Directional": false + } + ] + }, + { + "ID": 3814, + "SourceStructureID": 6115, + "TargetStructureID": 72985, + "Label": "6115-72985 via Unknown from 134269 -> 134270", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134269, + "TargetID": 134270, + "Directional": false + } + ] + }, + { + "ID": 3815, + "SourceStructureID": 6115, + "TargetStructureID": 72987, + "Label": "6115-72987 via Unknown from 73002 -> 73003, 73049 -> 73050, 75992 -> 75993", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73002, + "TargetID": 73003, + "Directional": false + }, + { + "SourceID": 73049, + "TargetID": 73050, + "Directional": false + }, + { + "SourceID": 75992, + "TargetID": 75993, + "Directional": false + } + ] + }, + { + "ID": 3816, + "SourceStructureID": 6115, + "TargetStructureID": 73010, + "Label": "6115-73010 via Unknown from 73009 -> 73011", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73009, + "TargetID": 73011, + "Directional": false + } + ] + }, + { + "ID": 3817, + "SourceStructureID": 6115, + "TargetStructureID": 73069, + "Label": "6115-73069 via Unknown from 73070 -> 73071", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73070, + "TargetID": 73071, + "Directional": false + } + ] + }, + { + "ID": 3818, + "SourceStructureID": 6115, + "TargetStructureID": 73086, + "Label": "6115-73086 via Unknown from 75998 -> 75999", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75998, + "TargetID": 75999, + "Directional": false + } + ] + }, + { + "ID": 3819, + "SourceStructureID": 6115, + "TargetStructureID": 73096, + "Label": "6115-73096 via Adherens from 134221 -> 134222", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134221, + "TargetID": 134222, + "Directional": false + } + ] + }, + { + "ID": 3820, + "SourceStructureID": 6115, + "TargetStructureID": 73096, + "Label": "6115-73096 via Unknown from 73097 -> 73098", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73097, + "TargetID": 73098, + "Directional": false + } + ] + }, + { + "ID": 3821, + "SourceStructureID": 73118, + "TargetStructureID": 6115, + "Label": "73118-6115 via Adherens from 76006 -> 76005", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76006, + "TargetID": 76005, + "Directional": false + } + ] + }, + { + "ID": 3822, + "SourceStructureID": 73144, + "TargetStructureID": 6115, + "Label": "73144-6115 via Adherens from 73154 -> 73155, 116698 -> 73413", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73154, + "TargetID": 73155, + "Directional": false + }, + { + "SourceID": 116698, + "TargetID": 73413, + "Directional": false + } + ] + }, + { + "ID": 3823, + "SourceStructureID": 6115, + "TargetStructureID": 73173, + "Label": "6115-73173 via Unknown from 73172 -> 73174", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73172, + "TargetID": 73174, + "Directional": false + } + ] + }, + { + "ID": 3824, + "SourceStructureID": 6115, + "TargetStructureID": 73197, + "Label": "6115-73197 via Unknown from 73206 -> 73207", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73206, + "TargetID": 73207, + "Directional": false + } + ] + }, + { + "ID": 3825, + "SourceStructureID": 73212, + "TargetStructureID": 6115, + "Label": "73212-6115 via Adherens from 80911 -> 80910", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80911, + "TargetID": 80910, + "Directional": false + } + ] + }, + { + "ID": 3826, + "SourceStructureID": 6115, + "TargetStructureID": 73270, + "Label": "6115-73270 via Unknown from 73269 -> 73271", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73269, + "TargetID": 73271, + "Directional": false + } + ] + }, + { + "ID": 3827, + "SourceStructureID": 73273, + "TargetStructureID": 6115, + "Label": "73273-6115 via Adherens from 73288 -> 73286", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73288, + "TargetID": 73286, + "Directional": false + } + ] + }, + { + "ID": 3828, + "SourceStructureID": 73273, + "TargetStructureID": 6115, + "Label": "73273-6115 via Unknown from 73287 -> 73285", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73287, + "TargetID": 73285, + "Directional": false + } + ] + }, + { + "ID": 3829, + "SourceStructureID": 73275, + "TargetStructureID": 6115, + "Label": "73275-6115 via Unknown from 82045 -> 73284", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82045, + "TargetID": 73284, + "Directional": false + } + ] + }, + { + "ID": 3830, + "SourceStructureID": 6115, + "TargetStructureID": 73280, + "Label": "6115-73280 via Unknown from 73281 -> 73282", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73281, + "TargetID": 73282, + "Directional": false + } + ] + }, + { + "ID": 3831, + "SourceStructureID": 6115, + "TargetStructureID": 73293, + "Label": "6115-73293 via Unknown from 73296 -> 73298", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73296, + "TargetID": 73298, + "Directional": false + } + ] + }, + { + "ID": 3832, + "SourceStructureID": 6115, + "TargetStructureID": 73313, + "Label": "6115-73313 via Adherens from 73318 -> 73319", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73318, + "TargetID": 73319, + "Directional": false + } + ] + }, + { + "ID": 3833, + "SourceStructureID": 6115, + "TargetStructureID": 73339, + "Label": "6115-73339 via Unknown from 73340 -> 73341", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73340, + "TargetID": 73341, + "Directional": false + } + ] + }, + { + "ID": 3834, + "SourceStructureID": 73343, + "TargetStructureID": 6115, + "Label": "73343-6115 via Unknown from 73346 -> 73347", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73346, + "TargetID": 73347, + "Directional": false + } + ] + }, + { + "ID": 3835, + "SourceStructureID": 73368, + "TargetStructureID": 6115, + "Label": "73368-6115 via Unknown from 73370 -> 73369", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73370, + "TargetID": 73369, + "Directional": false + } + ] + }, + { + "ID": 3836, + "SourceStructureID": 6115, + "TargetStructureID": 73439, + "Label": "6115-73439 via Unknown from 73441 -> 73442", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73441, + "TargetID": 73442, + "Directional": false + } + ] + }, + { + "ID": 3837, + "SourceStructureID": 6115, + "TargetStructureID": 73488, + "Label": "6115-73488 via Unknown from 73489 -> 73490", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73489, + "TargetID": 73490, + "Directional": false + } + ] + }, + { + "ID": 3838, + "SourceStructureID": 73503, + "TargetStructureID": 6115, + "Label": "73503-6115 via Unknown from 73504 -> 73505", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73504, + "TargetID": 73505, + "Directional": false + } + ] + }, + { + "ID": 3839, + "SourceStructureID": 6115, + "TargetStructureID": 73524, + "Label": "6115-73524 via Adherens from 73526 -> 73525", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73526, + "TargetID": 73525, + "Directional": false + } + ] + }, + { + "ID": 3840, + "SourceStructureID": 6115, + "TargetStructureID": 73524, + "Label": "6115-73524 via Unknown from 73536 -> 73537", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73536, + "TargetID": 73537, + "Directional": false + } + ] + }, + { + "ID": 3841, + "SourceStructureID": 73564, + "TargetStructureID": 6115, + "Label": "73564-6115 via Unknown from 74180 -> 74181, 74183 -> 74184", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74180, + "TargetID": 74181, + "Directional": false + }, + { + "SourceID": 74183, + "TargetID": 74184, + "Directional": false + } + ] + }, + { + "ID": 3842, + "SourceStructureID": 6115, + "TargetStructureID": 73772, + "Label": "6115-73772 via Unknown from 73778 -> 73779", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73778, + "TargetID": 73779, + "Directional": false + } + ] + }, + { + "ID": 3843, + "SourceStructureID": 6115, + "TargetStructureID": 73796, + "Label": "6115-73796 via Unknown from 73798 -> 73799", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73798, + "TargetID": 73799, + "Directional": false + } + ] + }, + { + "ID": 3844, + "SourceStructureID": 73804, + "TargetStructureID": 6115, + "Label": "73804-6115 via Unknown from 74201 -> 74200", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74201, + "TargetID": 74200, + "Directional": false + } + ] + }, + { + "ID": 3845, + "SourceStructureID": 6115, + "TargetStructureID": 73807, + "Label": "6115-73807 via Unknown from 74707 -> 82108", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74707, + "TargetID": 82108, + "Directional": false + } + ] + }, + { + "ID": 3846, + "SourceStructureID": 73825, + "TargetStructureID": 6115, + "Label": "73825-6115 via Unknown from 75844 -> 75843", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75844, + "TargetID": 75843, + "Directional": false + } + ] + }, + { + "ID": 3847, + "SourceStructureID": 6115, + "TargetStructureID": 73846, + "Label": "6115-73846 via Adherens from 73850 -> 73849", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73850, + "TargetID": 73849, + "Directional": false + } + ] + }, + { + "ID": 3848, + "SourceStructureID": 73864, + "TargetStructureID": 6115, + "Label": "73864-6115 via Unknown from 81335 -> 73865", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81335, + "TargetID": 73865, + "Directional": false + } + ] + }, + { + "ID": 3849, + "SourceStructureID": 6115, + "TargetStructureID": 73868, + "Label": "6115-73868 via Unknown from 73960 -> 134235", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73960, + "TargetID": 134235, + "Directional": false + } + ] + }, + { + "ID": 3850, + "SourceStructureID": 6115, + "TargetStructureID": 73871, + "Label": "6115-73871 via Unknown from 73876 -> 134230", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73876, + "TargetID": 134230, + "Directional": false + } + ] + }, + { + "ID": 3851, + "SourceStructureID": 73921, + "TargetStructureID": 6115, + "Label": "73921-6115 via Unknown from 134234 -> 73922", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134234, + "TargetID": 73922, + "Directional": false + } + ] + }, + { + "ID": 3852, + "SourceStructureID": 6115, + "TargetStructureID": 73937, + "Label": "6115-73937 via Adherens from 73936 -> 73938", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73936, + "TargetID": 73938, + "Directional": false + } + ] + }, + { + "ID": 3853, + "SourceStructureID": 73979, + "TargetStructureID": 6115, + "Label": "73979-6115 via Adherens from 73980 -> 73981", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73980, + "TargetID": 73981, + "Directional": false + } + ] + }, + { + "ID": 3854, + "SourceStructureID": 6115, + "TargetStructureID": 74007, + "Label": "6115-74007 via Adherens from 80937 -> 80938", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80937, + "TargetID": 80938, + "Directional": false + } + ] + }, + { + "ID": 3855, + "SourceStructureID": 74008, + "TargetStructureID": 6115, + "Label": "74008-6115 via Unknown from 134236 -> 74011", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134236, + "TargetID": 74011, + "Directional": false + } + ] + }, + { + "ID": 3856, + "SourceStructureID": 6115, + "TargetStructureID": 74039, + "Label": "6115-74039 via Unknown from 74040 -> 134237", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74040, + "TargetID": 134237, + "Directional": false + } + ] + }, + { + "ID": 3857, + "SourceStructureID": 74064, + "TargetStructureID": 6115, + "Label": "74064-6115 via Adherens from 74112 -> 74111", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74112, + "TargetID": 74111, + "Directional": false + } + ] + }, + { + "ID": 3858, + "SourceStructureID": 74082, + "TargetStructureID": 6115, + "Label": "74082-6115 via Adherens from 74108 -> 74109", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74108, + "TargetID": 74109, + "Directional": false + } + ] + }, + { + "ID": 3859, + "SourceStructureID": 6115, + "TargetStructureID": 74082, + "Label": "6115-74082 via Unknown from 74084 -> 74085", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74084, + "TargetID": 74085, + "Directional": false + } + ] + }, + { + "ID": 3860, + "SourceStructureID": 6115, + "TargetStructureID": 74094, + "Label": "6115-74094 via Unknown from 74095 -> 74096", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74095, + "TargetID": 74096, + "Directional": false + } + ] + }, + { + "ID": 3861, + "SourceStructureID": 6115, + "TargetStructureID": 74104, + "Label": "6115-74104 via Unknown from 74105 -> 74106", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74105, + "TargetID": 74106, + "Directional": false + } + ] + }, + { + "ID": 3862, + "SourceStructureID": 6115, + "TargetStructureID": 74279, + "Label": "6115-74279 via Adherens from 80948 -> 80949", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80948, + "TargetID": 80949, + "Directional": false + } + ] + }, + { + "ID": 3863, + "SourceStructureID": 74308, + "TargetStructureID": 6115, + "Label": "74308-6115 via Unknown from 134238 -> 74311", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134238, + "TargetID": 74311, + "Directional": false + } + ] + }, + { + "ID": 3864, + "SourceStructureID": 74313, + "TargetStructureID": 6115, + "Label": "74313-6115 via Adherens from 74314 -> 74312", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74314, + "TargetID": 74312, + "Directional": false + } + ] + }, + { + "ID": 3865, + "SourceStructureID": 6115, + "TargetStructureID": 74328, + "Label": "6115-74328 via Unknown from 74329 -> 74330", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74329, + "TargetID": 74330, + "Directional": false + } + ] + }, + { + "ID": 3866, + "SourceStructureID": 74402, + "TargetStructureID": 6115, + "Label": "74402-6115 via Adherens from 74405 -> 74406", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74405, + "TargetID": 74406, + "Directional": false + } + ] + }, + { + "ID": 3867, + "SourceStructureID": 74469, + "TargetStructureID": 6115, + "Label": "74469-6115 via Adherens from 134245 -> 134244", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134245, + "TargetID": 134244, + "Directional": false + } + ] + }, + { + "ID": 3868, + "SourceStructureID": 6115, + "TargetStructureID": 74471, + "Label": "6115-74471 via Unknown from 75871 -> 75872", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75871, + "TargetID": 75872, + "Directional": false + } + ] + }, + { + "ID": 3869, + "SourceStructureID": 74485, + "TargetStructureID": 6115, + "Label": "74485-6115 via Unknown from 134267 -> 75875", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134267, + "TargetID": 75875, + "Directional": false + } + ] + }, + { + "ID": 3870, + "SourceStructureID": 6115, + "TargetStructureID": 74489, + "Label": "6115-74489 via Unknown from 75876 -> 75877", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75876, + "TargetID": 75877, + "Directional": false + } + ] + }, + { + "ID": 3871, + "SourceStructureID": 6115, + "TargetStructureID": 74502, + "Label": "6115-74502 via Adherens from 74504 -> 74503", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74504, + "TargetID": 74503, + "Directional": false + } + ] + }, + { + "ID": 3872, + "SourceStructureID": 74508, + "TargetStructureID": 6115, + "Label": "74508-6115 via Adherens from 74510 -> 74509", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74510, + "TargetID": 74509, + "Directional": false + } + ] + }, + { + "ID": 3873, + "SourceStructureID": 74511, + "TargetStructureID": 6115, + "Label": "74511-6115 via Adherens from 74541 -> 74542", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74541, + "TargetID": 74542, + "Directional": false + } + ] + }, + { + "ID": 3874, + "SourceStructureID": 6115, + "TargetStructureID": 74545, + "Label": "6115-74545 via Unknown from 74544 -> 74546", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74544, + "TargetID": 74546, + "Directional": false + } + ] + }, + { + "ID": 3875, + "SourceStructureID": 74655, + "TargetStructureID": 6115, + "Label": "74655-6115 via Adherens from 74656 -> 74657", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74656, + "TargetID": 74657, + "Directional": false + } + ] + }, + { + "ID": 3876, + "SourceStructureID": 74687, + "TargetStructureID": 6115, + "Label": "74687-6115 via Unknown from 74692 -> 74693, 74758 -> 74757", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74692, + "TargetID": 74693, + "Directional": false + }, + { + "SourceID": 74758, + "TargetID": 74757, + "Directional": false + } + ] + }, + { + "ID": 3877, + "SourceStructureID": 6115, + "TargetStructureID": 74699, + "Label": "6115-74699 via Unknown from 74789 -> 76190", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74789, + "TargetID": 76190, + "Directional": false + } + ] + }, + { + "ID": 3878, + "SourceStructureID": 6115, + "TargetStructureID": 74706, + "Label": "6115-74706 via Unknown from 74709 -> 74710", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74709, + "TargetID": 74710, + "Directional": false + } + ] + }, + { + "ID": 3879, + "SourceStructureID": 6115, + "TargetStructureID": 74714, + "Label": "6115-74714 via Adherens from 74716 -> 74717", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74716, + "TargetID": 74717, + "Directional": false + } + ] + }, + { + "ID": 3880, + "SourceStructureID": 6115, + "TargetStructureID": 74749, + "Label": "6115-74749 via Adherens from 74752 -> 74753", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74752, + "TargetID": 74753, + "Directional": false + } + ] + }, + { + "ID": 3881, + "SourceStructureID": 6115, + "TargetStructureID": 74756, + "Label": "6115-74756 via Unknown from 74759 -> 74760", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74759, + "TargetID": 74760, + "Directional": false + } + ] + }, + { + "ID": 3882, + "SourceStructureID": 6115, + "TargetStructureID": 74775, + "Label": "6115-74775 via Unknown from 134248 -> 134247", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134248, + "TargetID": 134247, + "Directional": false + } + ] + }, + { + "ID": 3883, + "SourceStructureID": 6115, + "TargetStructureID": 74783, + "Label": "6115-74783 via Unknown from 74782 -> 74784", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74782, + "TargetID": 74784, + "Directional": false + } + ] + }, + { + "ID": 3884, + "SourceStructureID": 6115, + "TargetStructureID": 74797, + "Label": "6115-74797 via Unknown from 74796 -> 134249", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74796, + "TargetID": 134249, + "Directional": false + } + ] + }, + { + "ID": 3885, + "SourceStructureID": 6115, + "TargetStructureID": 74807, + "Label": "6115-74807 via Unknown from 74808 -> 74809", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74808, + "TargetID": 74809, + "Directional": false + } + ] + }, + { + "ID": 3886, + "SourceStructureID": 6115, + "TargetStructureID": 74812, + "Label": "6115-74812 via Unknown from 74813 -> 74814", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74813, + "TargetID": 74814, + "Directional": false + } + ] + }, + { + "ID": 3887, + "SourceStructureID": 74830, + "TargetStructureID": 6115, + "Label": "74830-6115 via Adherens from 80917 -> 80918", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80917, + "TargetID": 80918, + "Directional": false + } + ] + }, + { + "ID": 3888, + "SourceStructureID": 74834, + "TargetStructureID": 6115, + "Label": "74834-6115 via Adherens from 135170 -> 135169", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135170, + "TargetID": 135169, + "Directional": false + } + ] + }, + { + "ID": 3889, + "SourceStructureID": 74846, + "TargetStructureID": 6115, + "Label": "74846-6115 via Adherens from 74847 -> 74848", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74847, + "TargetID": 74848, + "Directional": false + } + ] + }, + { + "ID": 3890, + "SourceStructureID": 6115, + "TargetStructureID": 74994, + "Label": "6115-74994 via Adherens from 74996 -> 74997", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74996, + "TargetID": 74997, + "Directional": false + } + ] + }, + { + "ID": 3891, + "SourceStructureID": 75078, + "TargetStructureID": 6115, + "Label": "75078-6115 via Unknown from 135308 -> 134250", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135308, + "TargetID": 134250, + "Directional": false + } + ] + }, + { + "ID": 3892, + "SourceStructureID": 6115, + "TargetStructureID": 75099, + "Label": "6115-75099 via Unknown from 75100 -> 80954", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75100, + "TargetID": 80954, + "Directional": false + } + ] + }, + { + "ID": 3893, + "SourceStructureID": 6115, + "TargetStructureID": 75141, + "Label": "6115-75141 via Unknown from 75142 -> 80955", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75142, + "TargetID": 80955, + "Directional": false + } + ] + }, + { + "ID": 3894, + "SourceStructureID": 75144, + "TargetStructureID": 6115, + "Label": "75144-6115 via Adherens from 75145 -> 75143", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75145, + "TargetID": 75143, + "Directional": false + } + ] + }, + { + "ID": 3895, + "SourceStructureID": 75150, + "TargetStructureID": 6115, + "Label": "75150-6115 via Adherens from 75151 -> 75152", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75151, + "TargetID": 75152, + "Directional": false + } + ] + }, + { + "ID": 3896, + "SourceStructureID": 6115, + "TargetStructureID": 75189, + "Label": "6115-75189 via Unknown from 75203 -> 75204", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75203, + "TargetID": 75204, + "Directional": false + } + ] + }, + { + "ID": 3897, + "SourceStructureID": 6115, + "TargetStructureID": 75199, + "Label": "6115-75199 via Adherens from 75198 -> 75200", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75198, + "TargetID": 75200, + "Directional": false + } + ] + }, + { + "ID": 3898, + "SourceStructureID": 75205, + "TargetStructureID": 6115, + "Label": "75205-6115 via Adherens from 116714 -> 80929", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116714, + "TargetID": 80929, + "Directional": false + } + ] + }, + { + "ID": 3899, + "SourceStructureID": 6115, + "TargetStructureID": 75223, + "Label": "6115-75223 via Adherens from 75222 -> 75224", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75222, + "TargetID": 75224, + "Directional": false + } + ] + }, + { + "ID": 3900, + "SourceStructureID": 6115, + "TargetStructureID": 75257, + "Label": "6115-75257 via Unknown from 75258 -> 75259", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75258, + "TargetID": 75259, + "Directional": false + } + ] + }, + { + "ID": 3901, + "SourceStructureID": 6115, + "TargetStructureID": 75263, + "Label": "6115-75263 via Adherens from 75265 -> 75264", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75265, + "TargetID": 75264, + "Directional": false + } + ] + }, + { + "ID": 3902, + "SourceStructureID": 75429, + "TargetStructureID": 6115, + "Label": "75429-6115 via Adherens from 75430 -> 75431", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75430, + "TargetID": 75431, + "Directional": false + } + ] + }, + { + "ID": 3903, + "SourceStructureID": 6115, + "TargetStructureID": 75442, + "Label": "6115-75442 via Adherens from 75443 -> 75444", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75443, + "TargetID": 75444, + "Directional": false + } + ] + }, + { + "ID": 3904, + "SourceStructureID": 6115, + "TargetStructureID": 75474, + "Label": "6115-75474 via Adherens from 134260 -> 134261", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134260, + "TargetID": 134261, + "Directional": false + } + ] + }, + { + "ID": 3905, + "SourceStructureID": 75564, + "TargetStructureID": 6115, + "Label": "75564-6115 via Adherens from 75565 -> 75566", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75565, + "TargetID": 75566, + "Directional": false + } + ] + }, + { + "ID": 3906, + "SourceStructureID": 6115, + "TargetStructureID": 75603, + "Label": "6115-75603 via Unknown from 75602 -> 75604", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75602, + "TargetID": 75604, + "Directional": false + } + ] + }, + { + "ID": 3907, + "SourceStructureID": 75615, + "TargetStructureID": 6115, + "Label": "75615-6115 via Adherens from 75616 -> 75617, 75618 -> 75619", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75616, + "TargetID": 75617, + "Directional": false + }, + { + "SourceID": 75618, + "TargetID": 75619, + "Directional": false + } + ] + }, + { + "ID": 3908, + "SourceStructureID": 75848, + "TargetStructureID": 6115, + "Label": "75848-6115 via Adherens from 75849 -> 75850", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75849, + "TargetID": 75850, + "Directional": false + } + ] + }, + { + "ID": 3909, + "SourceStructureID": 75885, + "TargetStructureID": 6115, + "Label": "75885-6115 via Adherens from 75886 -> 75884", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75886, + "TargetID": 75884, + "Directional": false + } + ] + }, + { + "ID": 3910, + "SourceStructureID": 6115, + "TargetStructureID": 75953, + "Label": "6115-75953 via Adherens from 75952 -> 75954", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75952, + "TargetID": 75954, + "Directional": false + } + ] + }, + { + "ID": 3911, + "SourceStructureID": 6115, + "TargetStructureID": 75965, + "Label": "6115-75965 via Adherens from 75964 -> 75966", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75964, + "TargetID": 75966, + "Directional": false + } + ] + }, + { + "ID": 3912, + "SourceStructureID": 6115, + "TargetStructureID": 75968, + "Label": "6115-75968 via Unknown from 75967 -> 75969", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75967, + "TargetID": 75969, + "Directional": false + } + ] + }, + { + "ID": 3913, + "SourceStructureID": 6115, + "TargetStructureID": 75976, + "Label": "6115-75976 via Unknown from 75975 -> 75977", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75975, + "TargetID": 75977, + "Directional": false + } + ] + }, + { + "ID": 3914, + "SourceStructureID": 6115, + "TargetStructureID": 75988, + "Label": "6115-75988 via Unknown from 75987 -> 75989", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75987, + "TargetID": 75989, + "Directional": false + } + ] + }, + { + "ID": 3915, + "SourceStructureID": 6115, + "TargetStructureID": 76029, + "Label": "6115-76029 via Adherens from 76028 -> 76030", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76028, + "TargetID": 76030, + "Directional": false + } + ] + }, + { + "ID": 3916, + "SourceStructureID": 76034, + "TargetStructureID": 6115, + "Label": "76034-6115 via Unknown from 76035 -> 76033", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76035, + "TargetID": 76033, + "Directional": false + } + ] + }, + { + "ID": 3917, + "SourceStructureID": 76095, + "TargetStructureID": 6115, + "Label": "76095-6115 via Unknown from 76100 -> 76099", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76100, + "TargetID": 76099, + "Directional": false + } + ] + }, + { + "ID": 3918, + "SourceStructureID": 76137, + "TargetStructureID": 6115, + "Label": "76137-6115 via Gap Junction from 76167 -> 76168", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 76167, + "TargetID": 76168, + "Directional": false + } + ] + }, + { + "ID": 3919, + "SourceStructureID": 6115, + "TargetStructureID": 76161, + "Label": "6115-76161 via Adherens from 76163 -> 76162", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76163, + "TargetID": 76162, + "Directional": false + } + ] + }, + { + "ID": 3920, + "SourceStructureID": 6115, + "TargetStructureID": 77674, + "Label": "6115-77674 via Adherens from 90647 -> 90649", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90647, + "TargetID": 90649, + "Directional": false + } + ] + }, + { + "ID": 3921, + "SourceStructureID": 6115, + "TargetStructureID": 80912, + "Label": "6115-80912 via Adherens from 80913 -> 80914", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80913, + "TargetID": 80914, + "Directional": false + } + ] + }, + { + "ID": 3922, + "SourceStructureID": 6115, + "TargetStructureID": 80919, + "Label": "6115-80919 via Adherens from 80921 -> 80920", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80921, + "TargetID": 80920, + "Directional": false + } + ] + }, + { + "ID": 3923, + "SourceStructureID": 6115, + "TargetStructureID": 80935, + "Label": "6115-80935 via Unknown from 73780 -> 80936", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73780, + "TargetID": 80936, + "Directional": false + } + ] + }, + { + "ID": 3924, + "SourceStructureID": 6115, + "TargetStructureID": 80957, + "Label": "6115-80957 via Adherens from 80956 -> 80958", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80956, + "TargetID": 80958, + "Directional": false + } + ] + }, + { + "ID": 3925, + "SourceStructureID": 6115, + "TargetStructureID": 80957, + "Label": "6115-80957 via Unknown from 75208 -> 80959", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75208, + "TargetID": 80959, + "Directional": false + } + ] + }, + { + "ID": 3926, + "SourceStructureID": 6115, + "TargetStructureID": 80962, + "Label": "6115-80962 via Unknown from 75556 -> 80963", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75556, + "TargetID": 80963, + "Directional": false + } + ] + }, + { + "ID": 3927, + "SourceStructureID": 6115, + "TargetStructureID": 81153, + "Label": "6115-81153 via Unknown from 75077 -> 81154", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75077, + "TargetID": 81154, + "Directional": false + } + ] + }, + { + "ID": 3928, + "SourceStructureID": 6115, + "TargetStructureID": 81160, + "Label": "6115-81160 via Unknown from 76023 -> 81161", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 76023, + "TargetID": 81161, + "Directional": false + } + ] + }, + { + "ID": 3929, + "SourceStructureID": 81165, + "TargetStructureID": 6115, + "Label": "81165-6115 via Unknown from 81166 -> 75154", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81166, + "TargetID": 75154, + "Directional": false + } + ] + }, + { + "ID": 3930, + "SourceStructureID": 6115, + "TargetStructureID": 81167, + "Label": "6115-81167 via Unknown from 74533 -> 81168", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74533, + "TargetID": 81168, + "Directional": false + } + ] + }, + { + "ID": 3931, + "SourceStructureID": 81169, + "TargetStructureID": 6115, + "Label": "81169-6115 via Unknown from 81170 -> 75093, 135163 -> 135164", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81170, + "TargetID": 75093, + "Directional": false + }, + { + "SourceID": 135163, + "TargetID": 135164, + "Directional": false + } + ] + }, + { + "ID": 3932, + "SourceStructureID": 81350, + "TargetStructureID": 6115, + "Label": "81350-6115 via Unknown from 82371 -> 81351", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82371, + "TargetID": 81351, + "Directional": false + } + ] + }, + { + "ID": 3933, + "SourceStructureID": 82566, + "TargetStructureID": 6115, + "Label": "82566-6115 via Unknown from 82567 -> 74477", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82567, + "TargetID": 74477, + "Directional": false + } + ] + }, + { + "ID": 3934, + "SourceStructureID": 6115, + "TargetStructureID": 82644, + "Label": "6115-82644 via Unknown from 90632 -> 90633", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90632, + "TargetID": 90633, + "Directional": false + } + ] + }, + { + "ID": 3935, + "SourceStructureID": 6115, + "TargetStructureID": 82653, + "Label": "6115-82653 via Adherens from 90628 -> 90629", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90628, + "TargetID": 90629, + "Directional": false + } + ] + }, + { + "ID": 3936, + "SourceStructureID": 6115, + "TargetStructureID": 82969, + "Label": "6115-82969 via Unknown from 72242 -> 82970", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72242, + "TargetID": 82970, + "Directional": false + } + ] + }, + { + "ID": 3937, + "SourceStructureID": 90631, + "TargetStructureID": 6115, + "Label": "90631-6115 via Unknown from 90639 -> 90640", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90639, + "TargetID": 90640, + "Directional": false + } + ] + }, + { + "ID": 3938, + "SourceStructureID": 90645, + "TargetStructureID": 6115, + "Label": "90645-6115 via Adherens from 90646 -> 90644", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90646, + "TargetID": 90644, + "Directional": false + } + ] + }, + { + "ID": 3939, + "SourceStructureID": 6117, + "TargetStructureID": 6117, + "Label": "6117-6117 via Gap Junction from 134146 -> 134145", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 134146, + "TargetID": 134145, + "Directional": false + } + ] + }, + { + "ID": 3940, + "SourceStructureID": 6169, + "TargetStructureID": 6117, + "Label": "6169-6117 via Gap Junction from 20565 -> 20566, 24645 -> 20580, 59087 -> 59084, 86222 -> 86223, 92385 -> 92386", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 20565, + "TargetID": 20566, + "Directional": false + }, + { + "SourceID": 24645, + "TargetID": 20580, + "Directional": false + }, + { + "SourceID": 59087, + "TargetID": 59084, + "Directional": false + }, + { + "SourceID": 86222, + "TargetID": 86223, + "Directional": false + }, + { + "SourceID": 92385, + "TargetID": 92386, + "Directional": false + } + ] + }, + { + "ID": 3941, + "SourceStructureID": 7024, + "TargetStructureID": 6117, + "Label": "7024-6117 via Gap Junction from 45119 -> 30873", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45119, + "TargetID": 30873, + "Directional": false + } + ] + }, + { + "ID": 3942, + "SourceStructureID": 7113, + "TargetStructureID": 6117, + "Label": "7113-6117 via Gap Junction from 58790 -> 58789", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 58790, + "TargetID": 58789, + "Directional": false + } + ] + }, + { + "ID": 3943, + "SourceStructureID": 6117, + "TargetStructureID": 7594, + "Label": "6117-7594 via Adherens from 83914 -> 83915", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83914, + "TargetID": 83915, + "Directional": false + } + ] + }, + { + "ID": 3944, + "SourceStructureID": 9769, + "TargetStructureID": 6117, + "Label": "9769-6117 via Adherens from 84243 -> 84242", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84243, + "TargetID": 84242, + "Directional": false + } + ] + }, + { + "ID": 3945, + "SourceStructureID": 9769, + "TargetStructureID": 6117, + "Label": "9769-6117 via Unknown from 83143 -> 83142, 84172 -> 84168, 84386 -> 84385, 84638 -> 84637", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83143, + "TargetID": 83142, + "Directional": false + }, + { + "SourceID": 84172, + "TargetID": 84168, + "Directional": false + }, + { + "SourceID": 84386, + "TargetID": 84385, + "Directional": false + }, + { + "SourceID": 84638, + "TargetID": 84637, + "Directional": false + } + ] + }, + { + "ID": 3946, + "SourceStructureID": 6117, + "TargetStructureID": 20136, + "Label": "6117-20136 via Adherens from 86095 -> 86096", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86095, + "TargetID": 86096, + "Directional": false + } + ] + }, + { + "ID": 3947, + "SourceStructureID": 6117, + "TargetStructureID": 20136, + "Label": "6117-20136 via Gap Junction from 83961 -> 83962, 83969 -> 83970, 83983 -> 83984, 134141 -> 134142", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 83961, + "TargetID": 83962, + "Directional": false + }, + { + "SourceID": 83969, + "TargetID": 83970, + "Directional": false + }, + { + "SourceID": 83983, + "TargetID": 83984, + "Directional": false + }, + { + "SourceID": 134141, + "TargetID": 134142, + "Directional": false + } + ] + }, + { + "ID": 3948, + "SourceStructureID": 32035, + "TargetStructureID": 6117, + "Label": "32035-6117 via Adherens from 32039 -> 10531, 86085 -> 86351, 86266 -> 86267", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 32039, + "TargetID": 10531, + "Directional": false + }, + { + "SourceID": 86085, + "TargetID": 86351, + "Directional": false + }, + { + "SourceID": 86266, + "TargetID": 86267, + "Directional": false + } + ] + }, + { + "ID": 3949, + "SourceStructureID": 6117, + "TargetStructureID": 32035, + "Label": "6117-32035 via Unknown from 86019 -> 86020", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86019, + "TargetID": 86020, + "Directional": false + } + ] + }, + { + "ID": 3950, + "SourceStructureID": 6117, + "TargetStructureID": 35240, + "Label": "6117-35240 via Adherens from 86471 -> 86472", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86471, + "TargetID": 86472, + "Directional": false + } + ] + }, + { + "ID": 3951, + "SourceStructureID": 35240, + "TargetStructureID": 6117, + "Label": "35240-6117 via Unknown from 86460 -> 86461, 86478 -> 86477", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86460, + "TargetID": 86461, + "Directional": false + }, + { + "SourceID": 86478, + "TargetID": 86477, + "Directional": false + } + ] + }, + { + "ID": 3952, + "SourceStructureID": 6117, + "TargetStructureID": 35975, + "Label": "6117-35975 via Unknown from 84977 -> 84979", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84977, + "TargetID": 84979, + "Directional": false + } + ] + }, + { + "ID": 3953, + "SourceStructureID": 6117, + "TargetStructureID": 39957, + "Label": "6117-39957 via Unknown from 86104 -> 86103", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86104, + "TargetID": 86103, + "Directional": false + } + ] + }, + { + "ID": 3954, + "SourceStructureID": 40037, + "TargetStructureID": 6117, + "Label": "40037-6117 via Unknown from 86021 -> 86022", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86021, + "TargetID": 86022, + "Directional": false + } + ] + }, + { + "ID": 3955, + "SourceStructureID": 6117, + "TargetStructureID": 40039, + "Label": "6117-40039 via Adherens from 86379 -> 86380", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86379, + "TargetID": 86380, + "Directional": false + } + ] + }, + { + "ID": 3956, + "SourceStructureID": 40602, + "TargetStructureID": 6117, + "Label": "40602-6117 via Adherens from 86417 -> 86416", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86417, + "TargetID": 86416, + "Directional": false + } + ] + }, + { + "ID": 3957, + "SourceStructureID": 40602, + "TargetStructureID": 6117, + "Label": "40602-6117 via Unknown from 86433 -> 86434", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86433, + "TargetID": 86434, + "Directional": false + } + ] + }, + { + "ID": 3958, + "SourceStructureID": 6117, + "TargetStructureID": 45220, + "Label": "6117-45220 via Adherens from 86507 -> 86508", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86507, + "TargetID": 86508, + "Directional": false + } + ] + }, + { + "ID": 3959, + "SourceStructureID": 6117, + "TargetStructureID": 54881, + "Label": "6117-54881 via Adherens from 86297 -> 86296", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86297, + "TargetID": 86296, + "Directional": false + } + ] + }, + { + "ID": 3960, + "SourceStructureID": 6117, + "TargetStructureID": 58592, + "Label": "6117-58592 via Unknown from 84941 -> 84939, 86491 -> 86492", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84941, + "TargetID": 84939, + "Directional": false + }, + { + "SourceID": 86491, + "TargetID": 86492, + "Directional": false + } + ] + }, + { + "ID": 3961, + "SourceStructureID": 58691, + "TargetStructureID": 6117, + "Label": "58691-6117 via Adherens from 84933 -> 84934, 84954 -> 84955", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84933, + "TargetID": 84934, + "Directional": false + }, + { + "SourceID": 84954, + "TargetID": 84955, + "Directional": false + } + ] + }, + { + "ID": 3962, + "SourceStructureID": 6117, + "TargetStructureID": 58691, + "Label": "6117-58691 via Unknown from 84872 -> 84871", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84872, + "TargetID": 84871, + "Directional": false + } + ] + }, + { + "ID": 3963, + "SourceStructureID": 6117, + "TargetStructureID": 58714, + "Label": "6117-58714 via Adherens from 86109 -> 86108, 86184 -> 86185, 86188 -> 86187, 86190 -> 86191, 86411 -> 86410", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86109, + "TargetID": 86108, + "Directional": false + }, + { + "SourceID": 86184, + "TargetID": 86185, + "Directional": false + }, + { + "SourceID": 86188, + "TargetID": 86187, + "Directional": false + }, + { + "SourceID": 86190, + "TargetID": 86191, + "Directional": false + }, + { + "SourceID": 86411, + "TargetID": 86410, + "Directional": false + } + ] + }, + { + "ID": 3964, + "SourceStructureID": 6117, + "TargetStructureID": 58714, + "Label": "6117-58714 via Unknown from 86156 -> 86157, 86160 -> 86161", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86156, + "TargetID": 86157, + "Directional": false + }, + { + "SourceID": 86160, + "TargetID": 86161, + "Directional": false + } + ] + }, + { + "ID": 3965, + "SourceStructureID": 6117, + "TargetStructureID": 58757, + "Label": "6117-58757 via Adherens from 86500 -> 86501", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86500, + "TargetID": 86501, + "Directional": false + } + ] + }, + { + "ID": 3966, + "SourceStructureID": 6117, + "TargetStructureID": 58777, + "Label": "6117-58777 via Adherens from 86510 -> 86509, 86522 -> 86523, 86560 -> 86561", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86510, + "TargetID": 86509, + "Directional": false + }, + { + "SourceID": 86522, + "TargetID": 86523, + "Directional": false + }, + { + "SourceID": 86560, + "TargetID": 86561, + "Directional": false + } + ] + }, + { + "ID": 3967, + "SourceStructureID": 6117, + "TargetStructureID": 58777, + "Label": "6117-58777 via Unknown from 86520 -> 86521", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86520, + "TargetID": 86521, + "Directional": false + } + ] + }, + { + "ID": 3968, + "SourceStructureID": 61897, + "TargetStructureID": 6117, + "Label": "61897-6117 via Unknown from 83221 -> 83220", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83221, + "TargetID": 83220, + "Directional": false + } + ] + }, + { + "ID": 3969, + "SourceStructureID": 68691, + "TargetStructureID": 6117, + "Label": "68691-6117 via Unknown from 84159 -> 84157", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84159, + "TargetID": 84157, + "Directional": false + } + ] + }, + { + "ID": 3970, + "SourceStructureID": 6117, + "TargetStructureID": 70469, + "Label": "6117-70469 via Adherens from 83138 -> 83141", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83138, + "TargetID": 83141, + "Directional": false + } + ] + }, + { + "ID": 3971, + "SourceStructureID": 70653, + "TargetStructureID": 6117, + "Label": "70653-6117 via Unknown from 86363 -> 86364", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86363, + "TargetID": 86364, + "Directional": false + } + ] + }, + { + "ID": 3972, + "SourceStructureID": 75578, + "TargetStructureID": 6117, + "Label": "75578-6117 via Unknown from 75585 -> 83187", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75585, + "TargetID": 83187, + "Directional": false + } + ] + }, + { + "ID": 3973, + "SourceStructureID": 6117, + "TargetStructureID": 83133, + "Label": "6117-83133 via Unknown from 83132 -> 83134, 83136 -> 83137", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83132, + "TargetID": 83134, + "Directional": false + }, + { + "SourceID": 83136, + "TargetID": 83137, + "Directional": false + } + ] + }, + { + "ID": 3974, + "SourceStructureID": 83155, + "TargetStructureID": 6117, + "Label": "83155-6117 via Unknown from 83156 -> 83154", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83156, + "TargetID": 83154, + "Directional": false + } + ] + }, + { + "ID": 3975, + "SourceStructureID": 6117, + "TargetStructureID": 83226, + "Label": "6117-83226 via Unknown from 83225 -> 83227", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83225, + "TargetID": 83227, + "Directional": false + } + ] + }, + { + "ID": 3976, + "SourceStructureID": 6117, + "TargetStructureID": 83229, + "Label": "6117-83229 via Unknown from 83230 -> 83231", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83230, + "TargetID": 83231, + "Directional": false + } + ] + }, + { + "ID": 3977, + "SourceStructureID": 6117, + "TargetStructureID": 83234, + "Label": "6117-83234 via Unknown from 134139 -> 83235", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134139, + "TargetID": 83235, + "Directional": false + } + ] + }, + { + "ID": 3978, + "SourceStructureID": 83264, + "TargetStructureID": 6117, + "Label": "83264-6117 via Unknown from 83265 -> 83263", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83265, + "TargetID": 83263, + "Directional": false + } + ] + }, + { + "ID": 3979, + "SourceStructureID": 83921, + "TargetStructureID": 6117, + "Label": "83921-6117 via Unknown from 83926 -> 83927", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83926, + "TargetID": 83927, + "Directional": false + } + ] + }, + { + "ID": 3980, + "SourceStructureID": 6117, + "TargetStructureID": 83954, + "Label": "6117-83954 via Adherens from 83953 -> 83955", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83953, + "TargetID": 83955, + "Directional": false + } + ] + }, + { + "ID": 3981, + "SourceStructureID": 84170, + "TargetStructureID": 6117, + "Label": "84170-6117 via Unknown from 84171 -> 84169", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84171, + "TargetID": 84169, + "Directional": false + } + ] + }, + { + "ID": 3982, + "SourceStructureID": 6117, + "TargetStructureID": 84181, + "Label": "6117-84181 via Unknown from 84191 -> 84192", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84191, + "TargetID": 84192, + "Directional": false + } + ] + }, + { + "ID": 3983, + "SourceStructureID": 6117, + "TargetStructureID": 84193, + "Label": "6117-84193 via Adherens from 84196 -> 84197", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84196, + "TargetID": 84197, + "Directional": false + } + ] + }, + { + "ID": 3984, + "SourceStructureID": 6117, + "TargetStructureID": 84235, + "Label": "6117-84235 via Adherens from 84234 -> 84236", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84234, + "TargetID": 84236, + "Directional": false + } + ] + }, + { + "ID": 3985, + "SourceStructureID": 6117, + "TargetStructureID": 84656, + "Label": "6117-84656 via Unknown from 84655 -> 84657", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84655, + "TargetID": 84657, + "Directional": false + } + ] + }, + { + "ID": 3986, + "SourceStructureID": 84782, + "TargetStructureID": 6117, + "Label": "84782-6117 via Unknown from 84785 -> 84784", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84785, + "TargetID": 84784, + "Directional": false + } + ] + }, + { + "ID": 3987, + "SourceStructureID": 84790, + "TargetStructureID": 6117, + "Label": "84790-6117 via Adherens from 84850 -> 84851, 84854 -> 84855, 86008 -> 86009", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84850, + "TargetID": 84851, + "Directional": false + }, + { + "SourceID": 84854, + "TargetID": 84855, + "Directional": false + }, + { + "SourceID": 86008, + "TargetID": 86009, + "Directional": false + } + ] + }, + { + "ID": 3988, + "SourceStructureID": 84790, + "TargetStructureID": 6117, + "Label": "84790-6117 via Unknown from 84852 -> 84853", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84852, + "TargetID": 84853, + "Directional": false + } + ] + }, + { + "ID": 3989, + "SourceStructureID": 6117, + "TargetStructureID": 84858, + "Label": "6117-84858 via Unknown from 84869 -> 84868", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84869, + "TargetID": 84868, + "Directional": false + } + ] + }, + { + "ID": 3990, + "SourceStructureID": 6117, + "TargetStructureID": 84937, + "Label": "6117-84937 via Adherens from 84936 -> 84938", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84936, + "TargetID": 84938, + "Directional": false + } + ] + }, + { + "ID": 3991, + "SourceStructureID": 6117, + "TargetStructureID": 84957, + "Label": "6117-84957 via Adherens from 84956 -> 84958", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84956, + "TargetID": 84958, + "Directional": false + } + ] + }, + { + "ID": 3992, + "SourceStructureID": 6117, + "TargetStructureID": 84971, + "Label": "6117-84971 via Adherens from 84970 -> 84972", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84970, + "TargetID": 84972, + "Directional": false + } + ] + }, + { + "ID": 3993, + "SourceStructureID": 84983, + "TargetStructureID": 6117, + "Label": "84983-6117 via Unknown from 84990 -> 84991", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84990, + "TargetID": 84991, + "Directional": false + } + ] + }, + { + "ID": 3994, + "SourceStructureID": 84988, + "TargetStructureID": 6117, + "Label": "84988-6117 via Unknown from 84989 -> 84987", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84989, + "TargetID": 84987, + "Directional": false + } + ] + }, + { + "ID": 3995, + "SourceStructureID": 6117, + "TargetStructureID": 84995, + "Label": "6117-84995 via Unknown from 84996 -> 84997", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84996, + "TargetID": 84997, + "Directional": false + } + ] + }, + { + "ID": 3996, + "SourceStructureID": 6117, + "TargetStructureID": 85002, + "Label": "6117-85002 via Adherens from 85001 -> 85003", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85001, + "TargetID": 85003, + "Directional": false + } + ] + }, + { + "ID": 3997, + "SourceStructureID": 85009, + "TargetStructureID": 6117, + "Label": "85009-6117 via Unknown from 85010 -> 85011", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85010, + "TargetID": 85011, + "Directional": false + } + ] + }, + { + "ID": 3998, + "SourceStructureID": 85018, + "TargetStructureID": 6117, + "Label": "85018-6117 via Unknown from 85020 -> 85021", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85020, + "TargetID": 85021, + "Directional": false + } + ] + }, + { + "ID": 3999, + "SourceStructureID": 6117, + "TargetStructureID": 85219, + "Label": "6117-85219 via Unknown from 85229 -> 85227", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85229, + "TargetID": 85227, + "Directional": false + } + ] + }, + { + "ID": 4000, + "SourceStructureID": 6117, + "TargetStructureID": 85235, + "Label": "6117-85235 via Adherens from 85237 -> 85236", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85237, + "TargetID": 85236, + "Directional": false + } + ] + }, + { + "ID": 4001, + "SourceStructureID": 6117, + "TargetStructureID": 85266, + "Label": "6117-85266 via Unknown from 85291 -> 85292", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85291, + "TargetID": 85292, + "Directional": false + } + ] + }, + { + "ID": 4002, + "SourceStructureID": 6117, + "TargetStructureID": 85293, + "Label": "6117-85293 via Unknown from 85296 -> 85295", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85296, + "TargetID": 85295, + "Directional": false + } + ] + }, + { + "ID": 4003, + "SourceStructureID": 85298, + "TargetStructureID": 6117, + "Label": "85298-6117 via Unknown from 85300 -> 85299", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85300, + "TargetID": 85299, + "Directional": false + } + ] + }, + { + "ID": 4004, + "SourceStructureID": 6117, + "TargetStructureID": 85307, + "Label": "6117-85307 via Unknown from 85306 -> 85308", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85306, + "TargetID": 85308, + "Directional": false + } + ] + }, + { + "ID": 4005, + "SourceStructureID": 6117, + "TargetStructureID": 85435, + "Label": "6117-85435 via Adherens from 85432 -> 85437", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85432, + "TargetID": 85437, + "Directional": false + } + ] + }, + { + "ID": 4006, + "SourceStructureID": 6117, + "TargetStructureID": 85661, + "Label": "6117-85661 via Adherens from 85871 -> 85872", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85871, + "TargetID": 85872, + "Directional": false + } + ] + }, + { + "ID": 4007, + "SourceStructureID": 6117, + "TargetStructureID": 85661, + "Label": "6117-85661 via Unknown from 85664 -> 85665", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85664, + "TargetID": 85665, + "Directional": false + } + ] + }, + { + "ID": 4008, + "SourceStructureID": 85831, + "TargetStructureID": 6117, + "Label": "85831-6117 via Unknown from 85832 -> 85833", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85832, + "TargetID": 85833, + "Directional": false + } + ] + }, + { + "ID": 4009, + "SourceStructureID": 6117, + "TargetStructureID": 85906, + "Label": "6117-85906 via Unknown from 85950 -> 85951", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85950, + "TargetID": 85951, + "Directional": false + } + ] + }, + { + "ID": 4010, + "SourceStructureID": 6117, + "TargetStructureID": 85928, + "Label": "6117-85928 via Adherens from 85930 -> 85929", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85930, + "TargetID": 85929, + "Directional": false + } + ] + }, + { + "ID": 4011, + "SourceStructureID": 85932, + "TargetStructureID": 6117, + "Label": "85932-6117 via Unknown from 85936 -> 85935", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85936, + "TargetID": 85935, + "Directional": false + } + ] + }, + { + "ID": 4012, + "SourceStructureID": 6117, + "TargetStructureID": 85937, + "Label": "6117-85937 via Adherens from 85939 -> 85938", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85939, + "TargetID": 85938, + "Directional": false + } + ] + }, + { + "ID": 4013, + "SourceStructureID": 85941, + "TargetStructureID": 6117, + "Label": "85941-6117 via Unknown from 85942 -> 85940", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85942, + "TargetID": 85940, + "Directional": false + } + ] + }, + { + "ID": 4014, + "SourceStructureID": 6117, + "TargetStructureID": 85958, + "Label": "6117-85958 via Unknown from 85968 -> 85969", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85968, + "TargetID": 85969, + "Directional": false + } + ] + }, + { + "ID": 4015, + "SourceStructureID": 6117, + "TargetStructureID": 85974, + "Label": "6117-85974 via Unknown from 85977 -> 85978", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85977, + "TargetID": 85978, + "Directional": false + } + ] + }, + { + "ID": 4016, + "SourceStructureID": 6117, + "TargetStructureID": 85991, + "Label": "6117-85991 via Unknown from 85993 -> 85992, 86056 -> 86057", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85993, + "TargetID": 85992, + "Directional": false + }, + { + "SourceID": 86056, + "TargetID": 86057, + "Directional": false + } + ] + }, + { + "ID": 4017, + "SourceStructureID": 6117, + "TargetStructureID": 86001, + "Label": "6117-86001 via Unknown from 86000 -> 86007", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86000, + "TargetID": 86007, + "Directional": false + } + ] + }, + { + "ID": 4018, + "SourceStructureID": 6117, + "TargetStructureID": 86026, + "Label": "6117-86026 via Unknown from 86025 -> 86027, 86029 -> 86028", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86025, + "TargetID": 86027, + "Directional": false + }, + { + "SourceID": 86029, + "TargetID": 86028, + "Directional": false + } + ] + }, + { + "ID": 4019, + "SourceStructureID": 6117, + "TargetStructureID": 86032, + "Label": "6117-86032 via Unknown from 86031 -> 86033", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86031, + "TargetID": 86033, + "Directional": false + } + ] + }, + { + "ID": 4020, + "SourceStructureID": 86036, + "TargetStructureID": 6117, + "Label": "86036-6117 via Adherens from 86040 -> 86041", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86040, + "TargetID": 86041, + "Directional": false + } + ] + }, + { + "ID": 4021, + "SourceStructureID": 6117, + "TargetStructureID": 86045, + "Label": "6117-86045 via Unknown from 86044 -> 86049", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86044, + "TargetID": 86049, + "Directional": false + } + ] + }, + { + "ID": 4022, + "SourceStructureID": 6117, + "TargetStructureID": 86050, + "Label": "6117-86050 via Unknown from 86053 -> 86054", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86053, + "TargetID": 86054, + "Directional": false + } + ] + }, + { + "ID": 4023, + "SourceStructureID": 86063, + "TargetStructureID": 6117, + "Label": "86063-6117 via Unknown from 86064 -> 86062", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86064, + "TargetID": 86062, + "Directional": false + } + ] + }, + { + "ID": 4024, + "SourceStructureID": 86098, + "TargetStructureID": 6117, + "Label": "86098-6117 via Adherens from 86101 -> 86102", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86101, + "TargetID": 86102, + "Directional": false + } + ] + }, + { + "ID": 4025, + "SourceStructureID": 6117, + "TargetStructureID": 86098, + "Label": "6117-86098 via Unknown from 86097 -> 86099", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86097, + "TargetID": 86099, + "Directional": false + } + ] + }, + { + "ID": 4026, + "SourceStructureID": 86106, + "TargetStructureID": 6117, + "Label": "86106-6117 via Adherens from 86107 -> 86105", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86107, + "TargetID": 86105, + "Directional": false + } + ] + }, + { + "ID": 4027, + "SourceStructureID": 6117, + "TargetStructureID": 86110, + "Label": "6117-86110 via Adherens from 86154 -> 86155, 86159 -> 86158", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86154, + "TargetID": 86155, + "Directional": false + }, + { + "SourceID": 86159, + "TargetID": 86158, + "Directional": false + } + ] + }, + { + "ID": 4028, + "SourceStructureID": 6117, + "TargetStructureID": 86110, + "Label": "6117-86110 via Unknown from 86124 -> 86125", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86124, + "TargetID": 86125, + "Directional": false + } + ] + }, + { + "ID": 4029, + "SourceStructureID": 6117, + "TargetStructureID": 86134, + "Label": "6117-86134 via Unknown from 86133 -> 86138", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86133, + "TargetID": 86138, + "Directional": false + } + ] + }, + { + "ID": 4030, + "SourceStructureID": 6117, + "TargetStructureID": 86145, + "Label": "6117-86145 via Unknown from 86152 -> 86153", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86152, + "TargetID": 86153, + "Directional": false + } + ] + }, + { + "ID": 4031, + "SourceStructureID": 86171, + "TargetStructureID": 6117, + "Label": "86171-6117 via Unknown from 86173 -> 86172", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86173, + "TargetID": 86172, + "Directional": false + } + ] + }, + { + "ID": 4032, + "SourceStructureID": 6117, + "TargetStructureID": 86237, + "Label": "6117-86237 via Adherens from 86242 -> 86243", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86242, + "TargetID": 86243, + "Directional": false + } + ] + }, + { + "ID": 4033, + "SourceStructureID": 6117, + "TargetStructureID": 86293, + "Label": "6117-86293 via Unknown from 86292 -> 86294", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86292, + "TargetID": 86294, + "Directional": false + } + ] + }, + { + "ID": 4034, + "SourceStructureID": 6117, + "TargetStructureID": 86305, + "Label": "6117-86305 via Unknown from 86304 -> 86308", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86304, + "TargetID": 86308, + "Directional": false + } + ] + }, + { + "ID": 4035, + "SourceStructureID": 86323, + "TargetStructureID": 6117, + "Label": "86323-6117 via Unknown from 86324 -> 86325", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86324, + "TargetID": 86325, + "Directional": false + } + ] + }, + { + "ID": 4036, + "SourceStructureID": 6117, + "TargetStructureID": 86327, + "Label": "6117-86327 via Unknown from 86326 -> 86329", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86326, + "TargetID": 86329, + "Directional": false + } + ] + }, + { + "ID": 4037, + "SourceStructureID": 86330, + "TargetStructureID": 6117, + "Label": "86330-6117 via Unknown from 86339 -> 86338", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86339, + "TargetID": 86338, + "Directional": false + } + ] + }, + { + "ID": 4038, + "SourceStructureID": 6117, + "TargetStructureID": 86340, + "Label": "6117-86340 via Unknown from 86341 -> 86342", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86341, + "TargetID": 86342, + "Directional": false + } + ] + }, + { + "ID": 4039, + "SourceStructureID": 86359, + "TargetStructureID": 6117, + "Label": "86359-6117 via Adherens from 86360 -> 86362", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86360, + "TargetID": 86362, + "Directional": false + } + ] + }, + { + "ID": 4040, + "SourceStructureID": 86385, + "TargetStructureID": 6117, + "Label": "86385-6117 via Unknown from 86387 -> 86388", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86387, + "TargetID": 86388, + "Directional": false + } + ] + }, + { + "ID": 4041, + "SourceStructureID": 6117, + "TargetStructureID": 86489, + "Label": "6117-86489 via Unknown from 86488 -> 86490", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86488, + "TargetID": 86490, + "Directional": false + } + ] + }, + { + "ID": 4042, + "SourceStructureID": 6117, + "TargetStructureID": 86505, + "Label": "6117-86505 via Unknown from 86504 -> 86506", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86504, + "TargetID": 86506, + "Directional": false + } + ] + }, + { + "ID": 4043, + "SourceStructureID": 6117, + "TargetStructureID": 86512, + "Label": "6117-86512 via Unknown from 86514 -> 86515", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86514, + "TargetID": 86515, + "Directional": false + } + ] + }, + { + "ID": 4044, + "SourceStructureID": 86524, + "TargetStructureID": 6117, + "Label": "86524-6117 via Unknown from 86546 -> 86547", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86546, + "TargetID": 86547, + "Directional": false + } + ] + }, + { + "ID": 4045, + "SourceStructureID": 6117, + "TargetStructureID": 86569, + "Label": "6117-86569 via Unknown from 86573 -> 86575", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86573, + "TargetID": 86575, + "Directional": false + } + ] + }, + { + "ID": 4046, + "SourceStructureID": 6117, + "TargetStructureID": 86582, + "Label": "6117-86582 via Unknown from 86591 -> 86592", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86591, + "TargetID": 86592, + "Directional": false + } + ] + }, + { + "ID": 4047, + "SourceStructureID": 86609, + "TargetStructureID": 6117, + "Label": "86609-6117 via Unknown from 86613 -> 86612", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86613, + "TargetID": 86612, + "Directional": false + } + ] + }, + { + "ID": 4048, + "SourceStructureID": 6120, + "TargetStructureID": 6118, + "Label": "6120-6118 via Gap Junction from 65051 -> 65050, 65170 -> 65168, 119471 -> 119470", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 65051, + "TargetID": 65050, + "Directional": false + }, + { + "SourceID": 65170, + "TargetID": 65168, + "Directional": false + }, + { + "SourceID": 119471, + "TargetID": 119470, + "Directional": false + } + ] + }, + { + "ID": 4049, + "SourceStructureID": 6120, + "TargetStructureID": 6118, + "Label": "6120-6118 via Unknown from 120789 -> 120788", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120789, + "TargetID": 120788, + "Directional": false + } + ] + }, + { + "ID": 4050, + "SourceStructureID": 6121, + "TargetStructureID": 6118, + "Label": "6121-6118 via Gap Junction from 120695 -> 120677, 120700 -> 120699, 120781 -> 120782, 120791 -> 120792, 120794 -> 120793, 125293 -> 125294", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120695, + "TargetID": 120677, + "Directional": false + }, + { + "SourceID": 120700, + "TargetID": 120699, + "Directional": false + }, + { + "SourceID": 120781, + "TargetID": 120782, + "Directional": false + }, + { + "SourceID": 120791, + "TargetID": 120792, + "Directional": false + }, + { + "SourceID": 120794, + "TargetID": 120793, + "Directional": false + }, + { + "SourceID": 125293, + "TargetID": 125294, + "Directional": false + } + ] + }, + { + "ID": 4051, + "SourceStructureID": 6118, + "TargetStructureID": 6121, + "Label": "6118-6121 via Unknown from 120685 -> 120686", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120685, + "TargetID": 120686, + "Directional": false + } + ] + }, + { + "ID": 4052, + "SourceStructureID": 6158, + "TargetStructureID": 6118, + "Label": "6158-6118 via Unknown from 115484 -> 115485", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115484, + "TargetID": 115485, + "Directional": false + } + ] + }, + { + "ID": 4053, + "SourceStructureID": 6118, + "TargetStructureID": 6162, + "Label": "6118-6162 via Gap Junction from 120730 -> 120731, 120733 -> 120732, 120752 -> 120751, 120758 -> 120757, 120768 -> 120769, 120784 -> 120785", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120730, + "TargetID": 120731, + "Directional": false + }, + { + "SourceID": 120733, + "TargetID": 120732, + "Directional": false + }, + { + "SourceID": 120752, + "TargetID": 120751, + "Directional": false + }, + { + "SourceID": 120758, + "TargetID": 120757, + "Directional": false + }, + { + "SourceID": 120768, + "TargetID": 120769, + "Directional": false + }, + { + "SourceID": 120784, + "TargetID": 120785, + "Directional": false + } + ] + }, + { + "ID": 4054, + "SourceStructureID": 7904, + "TargetStructureID": 6118, + "Label": "7904-6118 via Gap Junction from 119475 -> 119474, 120800 -> 120797, 120815 -> 120814, 122374 -> 122375", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119475, + "TargetID": 119474, + "Directional": false + }, + { + "SourceID": 120800, + "TargetID": 120797, + "Directional": false + }, + { + "SourceID": 120815, + "TargetID": 120814, + "Directional": false + }, + { + "SourceID": 122374, + "TargetID": 122375, + "Directional": false + } + ] + }, + { + "ID": 4055, + "SourceStructureID": 6118, + "TargetStructureID": 7951, + "Label": "6118-7951 via Gap Junction from 32496 -> 32495, 40002 -> 40003, 40005 -> 40004, 120642 -> 115364, 120761 -> 120760, 120763 -> 120762, 120766 -> 120765, 120776 -> 120775", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 32496, + "TargetID": 32495, + "Directional": false + }, + { + "SourceID": 40002, + "TargetID": 40003, + "Directional": false + }, + { + "SourceID": 40005, + "TargetID": 40004, + "Directional": false + }, + { + "SourceID": 120642, + "TargetID": 115364, + "Directional": false + }, + { + "SourceID": 120761, + "TargetID": 120760, + "Directional": false + }, + { + "SourceID": 120763, + "TargetID": 120762, + "Directional": false + }, + { + "SourceID": 120766, + "TargetID": 120765, + "Directional": false + }, + { + "SourceID": 120776, + "TargetID": 120775, + "Directional": false + } + ] + }, + { + "ID": 4056, + "SourceStructureID": 8032, + "TargetStructureID": 6118, + "Label": "8032-6118 via Gap Junction from 56502 -> 56501", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56502, + "TargetID": 56501, + "Directional": false + } + ] + }, + { + "ID": 4057, + "SourceStructureID": 65037, + "TargetStructureID": 6118, + "Label": "65037-6118 via Adherens from 65039 -> 65038, 65040 -> 65041, 65043 -> 65042, 65044 -> 65045", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65039, + "TargetID": 65038, + "Directional": false + }, + { + "SourceID": 65040, + "TargetID": 65041, + "Directional": false + }, + { + "SourceID": 65043, + "TargetID": 65042, + "Directional": false + }, + { + "SourceID": 65044, + "TargetID": 65045, + "Directional": false + } + ] + }, + { + "ID": 4058, + "SourceStructureID": 6118, + "TargetStructureID": 136707, + "Label": "6118-136707 via Gap Junction from 115393 -> 136708", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115393, + "TargetID": 136708, + "Directional": false + } + ] + }, + { + "ID": 4059, + "SourceStructureID": 136711, + "TargetStructureID": 6118, + "Label": "136711-6118 via Gap Junction from 136712 -> 120702", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136712, + "TargetID": 120702, + "Directional": false + } + ] + }, + { + "ID": 4060, + "SourceStructureID": 6121, + "TargetStructureID": 6120, + "Label": "6121-6120 via Adherens from 111660 -> 111658, 126716 -> 126715", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111660, + "TargetID": 111658, + "Directional": false + }, + { + "SourceID": 126716, + "TargetID": 126715, + "Directional": false + } + ] + }, + { + "ID": 4061, + "SourceStructureID": 6120, + "TargetStructureID": 6121, + "Label": "6120-6121 via Gap Junction from 38106 -> 38120, 65064 -> 64353, 65166 -> 125300, 110573 -> 110572, 110776 -> 110775, 110788 -> 110787, 110822 -> 110823, 110840 -> 110839, 110872 -> 110873, 111211 -> 111210, 111392 -> 111393, 111486 -> 111487, 125230 -> 125231, 125674 -> 125673", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38106, + "TargetID": 38120, + "Directional": false + }, + { + "SourceID": 65064, + "TargetID": 64353, + "Directional": false + }, + { + "SourceID": 65166, + "TargetID": 125300, + "Directional": false + }, + { + "SourceID": 110573, + "TargetID": 110572, + "Directional": false + }, + { + "SourceID": 110776, + "TargetID": 110775, + "Directional": false + }, + { + "SourceID": 110788, + "TargetID": 110787, + "Directional": false + }, + { + "SourceID": 110822, + "TargetID": 110823, + "Directional": false + }, + { + "SourceID": 110840, + "TargetID": 110839, + "Directional": false + }, + { + "SourceID": 110872, + "TargetID": 110873, + "Directional": false + }, + { + "SourceID": 111211, + "TargetID": 111210, + "Directional": false + }, + { + "SourceID": 111392, + "TargetID": 111393, + "Directional": false + }, + { + "SourceID": 111486, + "TargetID": 111487, + "Directional": false + }, + { + "SourceID": 125230, + "TargetID": 125231, + "Directional": false + }, + { + "SourceID": 125674, + "TargetID": 125673, + "Directional": false + } + ] + }, + { + "ID": 4062, + "SourceStructureID": 6141, + "TargetStructureID": 6120, + "Label": "6141-6120 via Gap Junction from 110628 -> 64354", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 110628, + "TargetID": 64354, + "Directional": false + } + ] + }, + { + "ID": 4063, + "SourceStructureID": 7904, + "TargetStructureID": 6120, + "Label": "7904-6120 via Gap Junction from 52426 -> 52427, 111574 -> 52425, 111593 -> 111592", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52426, + "TargetID": 52427, + "Directional": false + }, + { + "SourceID": 111574, + "TargetID": 52425, + "Directional": false + }, + { + "SourceID": 111593, + "TargetID": 111592, + "Directional": false + } + ] + }, + { + "ID": 4064, + "SourceStructureID": 6120, + "TargetStructureID": 8032, + "Label": "6120-8032 via Adherens from 111538 -> 111537", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111538, + "TargetID": 111537, + "Directional": false + } + ] + }, + { + "ID": 4065, + "SourceStructureID": 8032, + "TargetStructureID": 6120, + "Label": "8032-6120 via Gap Junction from 30181 -> 30182, 32509 -> 32507", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 30181, + "TargetID": 30182, + "Directional": false + }, + { + "SourceID": 32509, + "TargetID": 32507, + "Directional": false + } + ] + }, + { + "ID": 4066, + "SourceStructureID": 8032, + "TargetStructureID": 6120, + "Label": "8032-6120 via Unknown from 111542 -> 111541", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111542, + "TargetID": 111541, + "Directional": false + } + ] + }, + { + "ID": 4067, + "SourceStructureID": 22994, + "TargetStructureID": 6120, + "Label": "22994-6120 via Gap Junction from 118144 -> 118148", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118144, + "TargetID": 118148, + "Directional": false + } + ] + }, + { + "ID": 4068, + "SourceStructureID": 31334, + "TargetStructureID": 6120, + "Label": "31334-6120 via Unknown from 111704 -> 111703", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111704, + "TargetID": 111703, + "Directional": false + } + ] + }, + { + "ID": 4069, + "SourceStructureID": 60491, + "TargetStructureID": 6120, + "Label": "60491-6120 via Adherens from 60492 -> 60490", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60492, + "TargetID": 60490, + "Directional": false + } + ] + }, + { + "ID": 4070, + "SourceStructureID": 65172, + "TargetStructureID": 6120, + "Label": "65172-6120 via Gap Junction from 65174 -> 65171", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 65174, + "TargetID": 65171, + "Directional": false + } + ] + }, + { + "ID": 4071, + "SourceStructureID": 6120, + "TargetStructureID": 89124, + "Label": "6120-89124 via Adherens from 110553 -> 89344", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110553, + "TargetID": 89344, + "Directional": false + } + ] + }, + { + "ID": 4072, + "SourceStructureID": 110566, + "TargetStructureID": 6120, + "Label": "110566-6120 via Gap Junction from 110579 -> 110578", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 110579, + "TargetID": 110578, + "Directional": false + } + ] + }, + { + "ID": 4073, + "SourceStructureID": 110607, + "TargetStructureID": 6120, + "Label": "110607-6120 via Adherens from 110608 -> 110606", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110608, + "TargetID": 110606, + "Directional": false + } + ] + }, + { + "ID": 4074, + "SourceStructureID": 110747, + "TargetStructureID": 6120, + "Label": "110747-6120 via Adherens from 110774 -> 110773", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110774, + "TargetID": 110773, + "Directional": false + } + ] + }, + { + "ID": 4075, + "SourceStructureID": 110779, + "TargetStructureID": 6120, + "Label": "110779-6120 via Adherens from 110780 -> 110778", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110780, + "TargetID": 110778, + "Directional": false + } + ] + }, + { + "ID": 4076, + "SourceStructureID": 110866, + "TargetStructureID": 6120, + "Label": "110866-6120 via Adherens from 110868 -> 110865", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110868, + "TargetID": 110865, + "Directional": false + } + ] + }, + { + "ID": 4077, + "SourceStructureID": 111269, + "TargetStructureID": 6120, + "Label": "111269-6120 via Adherens from 111364 -> 111363", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111364, + "TargetID": 111363, + "Directional": false + } + ] + }, + { + "ID": 4078, + "SourceStructureID": 6120, + "TargetStructureID": 111351, + "Label": "6120-111351 via Unknown from 111348 -> 111347", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111348, + "TargetID": 111347, + "Directional": false + } + ] + }, + { + "ID": 4079, + "SourceStructureID": 111374, + "TargetStructureID": 6120, + "Label": "111374-6120 via Gap Junction from 111375 -> 111373", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 111375, + "TargetID": 111373, + "Directional": false + } + ] + }, + { + "ID": 4080, + "SourceStructureID": 6120, + "TargetStructureID": 111421, + "Label": "6120-111421 via Adherens from 111490 -> 111491", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111490, + "TargetID": 111491, + "Directional": false + } + ] + }, + { + "ID": 4081, + "SourceStructureID": 6120, + "TargetStructureID": 111553, + "Label": "6120-111553 via Adherens from 111555 -> 111556", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111555, + "TargetID": 111556, + "Directional": false + } + ] + }, + { + "ID": 4082, + "SourceStructureID": 6120, + "TargetStructureID": 111598, + "Label": "6120-111598 via Unknown from 111600 -> 111599", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111600, + "TargetID": 111599, + "Directional": false + } + ] + }, + { + "ID": 4083, + "SourceStructureID": 6120, + "TargetStructureID": 111607, + "Label": "6120-111607 via Unknown from 111606 -> 111608", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 111606, + "TargetID": 111608, + "Directional": false + } + ] + }, + { + "ID": 4084, + "SourceStructureID": 111615, + "TargetStructureID": 6120, + "Label": "111615-6120 via Adherens from 111617 -> 111597", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111617, + "TargetID": 111597, + "Directional": false + } + ] + }, + { + "ID": 4085, + "SourceStructureID": 6120, + "TargetStructureID": 111887, + "Label": "6120-111887 via Gap Junction from 111886 -> 111888", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 111886, + "TargetID": 111888, + "Directional": false + } + ] + }, + { + "ID": 4086, + "SourceStructureID": 6121, + "TargetStructureID": 6141, + "Label": "6121-6141 via Gap Junction from 122920 -> 61386, 122922 -> 61369", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122920, + "TargetID": 61386, + "Directional": false + }, + { + "SourceID": 122922, + "TargetID": 61369, + "Directional": false + } + ] + }, + { + "ID": 4087, + "SourceStructureID": 6146, + "TargetStructureID": 6121, + "Label": "6146-6121 via Adherens from 38107 -> 131951", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 38107, + "TargetID": 131951, + "Directional": false + } + ] + }, + { + "ID": 4088, + "SourceStructureID": 6146, + "TargetStructureID": 6121, + "Label": "6146-6121 via Gap Junction from 38108 -> 38113, 38118 -> 38100, 120804 -> 121872, 131955 -> 131954", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38108, + "TargetID": 38113, + "Directional": false + }, + { + "SourceID": 38118, + "TargetID": 38100, + "Directional": false + }, + { + "SourceID": 120804, + "TargetID": 121872, + "Directional": false + }, + { + "SourceID": 131955, + "TargetID": 131954, + "Directional": false + } + ] + }, + { + "ID": 4089, + "SourceStructureID": 6146, + "TargetStructureID": 6121, + "Label": "6146-6121 via Unknown from 121860 -> 121861", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121860, + "TargetID": 121861, + "Directional": false + } + ] + }, + { + "ID": 4090, + "SourceStructureID": 6121, + "TargetStructureID": 6158, + "Label": "6121-6158 via Gap Junction from 120717 -> 120647, 120725 -> 120645, 120753 -> 120754, 120756 -> 120755", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120717, + "TargetID": 120647, + "Directional": false + }, + { + "SourceID": 120725, + "TargetID": 120645, + "Directional": false + }, + { + "SourceID": 120753, + "TargetID": 120754, + "Directional": false + }, + { + "SourceID": 120756, + "TargetID": 120755, + "Directional": false + } + ] + }, + { + "ID": 4091, + "SourceStructureID": 22994, + "TargetStructureID": 6121, + "Label": "22994-6121 via Gap Junction from 118141 -> 118142", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118141, + "TargetID": 118142, + "Directional": false + } + ] + }, + { + "ID": 4092, + "SourceStructureID": 110607, + "TargetStructureID": 6121, + "Label": "110607-6121 via Unknown from 126895 -> 126896", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 126895, + "TargetID": 126896, + "Directional": false + } + ] + }, + { + "ID": 4093, + "SourceStructureID": 7904, + "TargetStructureID": 6123, + "Label": "7904-6123 via Gap Junction from 130622 -> 130616", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 130622, + "TargetID": 130616, + "Directional": false + } + ] + }, + { + "ID": 4094, + "SourceStructureID": 6123, + "TargetStructureID": 7951, + "Label": "6123-7951 via Gap Junction from 37208 -> 37209, 48019 -> 132456, 118986 -> 38075, 132457 -> 48038", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 37208, + "TargetID": 37209, + "Directional": false + }, + { + "SourceID": 48019, + "TargetID": 132456, + "Directional": false + }, + { + "SourceID": 118986, + "TargetID": 38075, + "Directional": false + }, + { + "SourceID": 132457, + "TargetID": 48038, + "Directional": false + } + ] + }, + { + "ID": 4095, + "SourceStructureID": 6123, + "TargetStructureID": 34893, + "Label": "6123-34893 via Adherens from 34897 -> 34896", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 34897, + "TargetID": 34896, + "Directional": false + } + ] + }, + { + "ID": 4096, + "SourceStructureID": 71517, + "TargetStructureID": 6123, + "Label": "71517-6123 via Adherens from 74925 -> 74926, 74930 -> 47991", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74925, + "TargetID": 74926, + "Directional": false + }, + { + "SourceID": 74930, + "TargetID": 47991, + "Directional": false + } + ] + }, + { + "ID": 4097, + "SourceStructureID": 74957, + "TargetStructureID": 6123, + "Label": "74957-6123 via Adherens from 74960 -> 48065", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74960, + "TargetID": 48065, + "Directional": false + } + ] + }, + { + "ID": 4098, + "SourceStructureID": 122868, + "TargetStructureID": 6123, + "Label": "122868-6123 via Adherens from 130530 -> 130531, 132436 -> 132437", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130530, + "TargetID": 130531, + "Directional": false + }, + { + "SourceID": 132436, + "TargetID": 132437, + "Directional": false + } + ] + }, + { + "ID": 4099, + "SourceStructureID": 122868, + "TargetStructureID": 6123, + "Label": "122868-6123 via Gap Junction from 130527 -> 130528", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 130527, + "TargetID": 130528, + "Directional": false + } + ] + }, + { + "ID": 4100, + "SourceStructureID": 6127, + "TargetStructureID": 6129, + "Label": "6127-6129 via Gap Junction from 118289 -> 118288, 122525 -> 122524, 122535 -> 122534", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118289, + "TargetID": 118288, + "Directional": false + }, + { + "SourceID": 122525, + "TargetID": 122524, + "Directional": false + }, + { + "SourceID": 122535, + "TargetID": 122534, + "Directional": false + } + ] + }, + { + "ID": 4101, + "SourceStructureID": 7225, + "TargetStructureID": 6127, + "Label": "7225-6127 via Gap Junction from 118286 -> 118287, 118291 -> 118292, 118293 -> 118294, 122632 -> 122634", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118286, + "TargetID": 118287, + "Directional": false + }, + { + "SourceID": 118291, + "TargetID": 118292, + "Directional": false + }, + { + "SourceID": 118293, + "TargetID": 118294, + "Directional": false + }, + { + "SourceID": 122632, + "TargetID": 122634, + "Directional": false + } + ] + }, + { + "ID": 4102, + "SourceStructureID": 7446, + "TargetStructureID": 6127, + "Label": "7446-6127 via Gap Junction from 35670 -> 35669, 122642 -> 123057", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 35670, + "TargetID": 35669, + "Directional": false + }, + { + "SourceID": 122642, + "TargetID": 123057, + "Directional": false + } + ] + }, + { + "ID": 4103, + "SourceStructureID": 7564, + "TargetStructureID": 6127, + "Label": "7564-6127 via Gap Junction from 122540 -> 122539, 122603 -> 122604, 122606 -> 88490", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122540, + "TargetID": 122539, + "Directional": false + }, + { + "SourceID": 122603, + "TargetID": 122604, + "Directional": false + }, + { + "SourceID": 122606, + "TargetID": 88490, + "Directional": false + } + ] + }, + { + "ID": 4104, + "SourceStructureID": 6127, + "TargetStructureID": 7861, + "Label": "6127-7861 via Gap Junction from 122585 -> 122586", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122585, + "TargetID": 122586, + "Directional": false + } + ] + }, + { + "ID": 4105, + "SourceStructureID": 6127, + "TargetStructureID": 82677, + "Label": "6127-82677 via Gap Junction from 114631 -> 114630", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 114631, + "TargetID": 114630, + "Directional": false + } + ] + }, + { + "ID": 4106, + "SourceStructureID": 94189, + "TargetStructureID": 6127, + "Label": "94189-6127 via Gap Junction from 122614 -> 122613", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122614, + "TargetID": 122613, + "Directional": false + } + ] + }, + { + "ID": 4107, + "SourceStructureID": 7346, + "TargetStructureID": 6128, + "Label": "7346-6128 via Adherens from 45429 -> 45430", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 45429, + "TargetID": 45430, + "Directional": false + } + ] + }, + { + "ID": 4108, + "SourceStructureID": 7346, + "TargetStructureID": 6128, + "Label": "7346-6128 via Gap Junction from 43851 -> 20869, 44028 -> 20882, 44067 -> 20890, 45230 -> 45229, 45416 -> 45418", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 43851, + "TargetID": 20869, + "Directional": false + }, + { + "SourceID": 44028, + "TargetID": 20882, + "Directional": false + }, + { + "SourceID": 44067, + "TargetID": 20890, + "Directional": false + }, + { + "SourceID": 45230, + "TargetID": 45229, + "Directional": false + }, + { + "SourceID": 45416, + "TargetID": 45418, + "Directional": false + } + ] + }, + { + "ID": 4109, + "SourceStructureID": 32359, + "TargetStructureID": 6128, + "Label": "32359-6128 via Gap Junction from 41681 -> 21096", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 41681, + "TargetID": 21096, + "Directional": false + } + ] + }, + { + "ID": 4110, + "SourceStructureID": 6128, + "TargetStructureID": 43207, + "Label": "6128-43207 via Adherens from 60743 -> 60742", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60743, + "TargetID": 60742, + "Directional": false + } + ] + }, + { + "ID": 4111, + "SourceStructureID": 6129, + "TargetStructureID": 7576, + "Label": "6129-7576 via Gap Junction from 54773 -> 54774", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54773, + "TargetID": 54774, + "Directional": false + } + ] + }, + { + "ID": 4112, + "SourceStructureID": 7576, + "TargetStructureID": 6129, + "Label": "7576-6129 via Unknown from 92621 -> 92620", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92621, + "TargetID": 92620, + "Directional": false + } + ] + }, + { + "ID": 4113, + "SourceStructureID": 6129, + "TargetStructureID": 82677, + "Label": "6129-82677 via Adherens from 83664 -> 83663", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83664, + "TargetID": 83663, + "Directional": false + } + ] + }, + { + "ID": 4114, + "SourceStructureID": 6129, + "TargetStructureID": 82677, + "Label": "6129-82677 via Gap Junction from 83666 -> 83665, 114632 -> 114634", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 83666, + "TargetID": 83665, + "Directional": false + }, + { + "SourceID": 114632, + "TargetID": 114634, + "Directional": false + } + ] + }, + { + "ID": 4115, + "SourceStructureID": 6131, + "TargetStructureID": 13525, + "Label": "6131-13525 via Adherens from 158491 -> 130231", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 158491, + "TargetID": 130231, + "Directional": false + } + ] + }, + { + "ID": 4116, + "SourceStructureID": 6131, + "TargetStructureID": 32359, + "Label": "6131-32359 via Gap Junction from 43673 -> 41324", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 43673, + "TargetID": 41324, + "Directional": false + } + ] + }, + { + "ID": 4117, + "SourceStructureID": 6133, + "TargetStructureID": 65438, + "Label": "6133-65438 via Gap Junction from 37393 -> 65442", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 37393, + "TargetID": 65442, + "Directional": false + } + ] + }, + { + "ID": 4118, + "SourceStructureID": 6134, + "TargetStructureID": 32465, + "Label": "6134-32465 via Adherens from 32475 -> 32474", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 32475, + "TargetID": 32474, + "Directional": false + } + ] + }, + { + "ID": 4119, + "SourceStructureID": 6138, + "TargetStructureID": 57353, + "Label": "6138-57353 via Unknown from 124274 -> 124273", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124274, + "TargetID": 124273, + "Directional": false + } + ] + }, + { + "ID": 4120, + "SourceStructureID": 8032, + "TargetStructureID": 6141, + "Label": "8032-6141 via Gap Junction from 26703 -> 61367, 26712 -> 61362, 32522 -> 32518, 61363 -> 26713, 61390 -> 26702", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 26703, + "TargetID": 61367, + "Directional": false + }, + { + "SourceID": 26712, + "TargetID": 61362, + "Directional": false + }, + { + "SourceID": 32522, + "TargetID": 32518, + "Directional": false + }, + { + "SourceID": 61363, + "TargetID": 26713, + "Directional": false + }, + { + "SourceID": 61390, + "TargetID": 26702, + "Directional": false + } + ] + }, + { + "ID": 4121, + "SourceStructureID": 22994, + "TargetStructureID": 6141, + "Label": "22994-6141 via Adherens from 56753 -> 56754", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 56753, + "TargetID": 56754, + "Directional": false + } + ] + }, + { + "ID": 4122, + "SourceStructureID": 6141, + "TargetStructureID": 22994, + "Label": "6141-22994 via Gap Junction from 56752 -> 56751, 118123 -> 118124, 118138 -> 118137", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56752, + "TargetID": 56751, + "Directional": false + }, + { + "SourceID": 118123, + "TargetID": 118124, + "Directional": false + }, + { + "SourceID": 118138, + "TargetID": 118137, + "Directional": false + } + ] + }, + { + "ID": 4123, + "SourceStructureID": 6141, + "TargetStructureID": 57353, + "Label": "6141-57353 via Gap Junction from 61408 -> 124291, 122938 -> 122937, 124330 -> 124331, 124397 -> 124396, 124410 -> 124409", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 61408, + "TargetID": 124291, + "Directional": false + }, + { + "SourceID": 122938, + "TargetID": 122937, + "Directional": false + }, + { + "SourceID": 124330, + "TargetID": 124331, + "Directional": false + }, + { + "SourceID": 124397, + "TargetID": 124396, + "Directional": false + }, + { + "SourceID": 124410, + "TargetID": 124409, + "Directional": false + } + ] + }, + { + "ID": 4124, + "SourceStructureID": 6141, + "TargetStructureID": 57353, + "Label": "6141-57353 via Touch from 124424 -> 124423", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 124424, + "TargetID": 124423, + "Directional": false + } + ] + }, + { + "ID": 4125, + "SourceStructureID": 61397, + "TargetStructureID": 6141, + "Label": "61397-6141 via Gap Junction from 61398 -> 61396", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 61398, + "TargetID": 61396, + "Directional": false + } + ] + }, + { + "ID": 4126, + "SourceStructureID": 6142, + "TargetStructureID": 6142, + "Label": "6142-6142 via Gap Junction from 117158 -> 117154, 117161 -> 117157, 117162 -> 117152, 117169 -> 117167", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117158, + "TargetID": 117154, + "Directional": false + }, + { + "SourceID": 117161, + "TargetID": 117157, + "Directional": false + }, + { + "SourceID": 117162, + "TargetID": 117152, + "Directional": false + }, + { + "SourceID": 117169, + "TargetID": 117167, + "Directional": false + } + ] + }, + { + "ID": 4127, + "SourceStructureID": 6142, + "TargetStructureID": 6958, + "Label": "6142-6958 via Gap Junction from 27532 -> 27526", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 27532, + "TargetID": 27526, + "Directional": false + } + ] + }, + { + "ID": 4128, + "SourceStructureID": 8032, + "TargetStructureID": 6142, + "Label": "8032-6142 via Gap Junction from 32523 -> 16118, 32525 -> 32524", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 32523, + "TargetID": 16118, + "Directional": false + }, + { + "SourceID": 32525, + "TargetID": 32524, + "Directional": false + } + ] + }, + { + "ID": 4129, + "SourceStructureID": 6142, + "TargetStructureID": 57353, + "Label": "6142-57353 via Unknown from 124420 -> 124419", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124420, + "TargetID": 124419, + "Directional": false + } + ] + }, + { + "ID": 4130, + "SourceStructureID": 89775, + "TargetStructureID": 6142, + "Label": "89775-6142 via Adherens from 89784 -> 16115, 89785 -> 89786", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89784, + "TargetID": 16115, + "Directional": false + }, + { + "SourceID": 89785, + "TargetID": 89786, + "Directional": false + } + ] + }, + { + "ID": 4131, + "SourceStructureID": 6162, + "TargetStructureID": 6146, + "Label": "6162-6146 via Gap Junction from 120811 -> 120810, 121879 -> 120805, 131999 -> 132000", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120811, + "TargetID": 120810, + "Directional": false + }, + { + "SourceID": 121879, + "TargetID": 120805, + "Directional": false + }, + { + "SourceID": 131999, + "TargetID": 132000, + "Directional": false + } + ] + }, + { + "ID": 4132, + "SourceStructureID": 7904, + "TargetStructureID": 6146, + "Label": "7904-6146 via Gap Junction from 120813 -> 120812, 121887 -> 120806, 131928 -> 121888", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120813, + "TargetID": 120812, + "Directional": false + }, + { + "SourceID": 121887, + "TargetID": 120806, + "Directional": false + }, + { + "SourceID": 131928, + "TargetID": 121888, + "Directional": false + } + ] + }, + { + "ID": 4133, + "SourceStructureID": 8032, + "TargetStructureID": 6146, + "Label": "8032-6146 via Gap Junction from 32508 -> 56734", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 32508, + "TargetID": 56734, + "Directional": false + } + ] + }, + { + "ID": 4134, + "SourceStructureID": 9769, + "TargetStructureID": 6146, + "Label": "9769-6146 via Adherens from 38104 -> 38103", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 38104, + "TargetID": 38103, + "Directional": false + } + ] + }, + { + "ID": 4135, + "SourceStructureID": 22994, + "TargetStructureID": 6146, + "Label": "22994-6146 via Gap Junction from 56742 -> 56736, 56746 -> 56747", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56742, + "TargetID": 56736, + "Directional": false + }, + { + "SourceID": 56746, + "TargetID": 56747, + "Directional": false + } + ] + }, + { + "ID": 4136, + "SourceStructureID": 30177, + "TargetStructureID": 6146, + "Label": "30177-6146 via Gap Junction from 131963 -> 131964, 131970 -> 131971", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131963, + "TargetID": 131964, + "Directional": false + }, + { + "SourceID": 131970, + "TargetID": 131971, + "Directional": false + } + ] + }, + { + "ID": 4137, + "SourceStructureID": 6146, + "TargetStructureID": 87419, + "Label": "6146-87419 via Adherens from 87423 -> 87422", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87423, + "TargetID": 87422, + "Directional": false + } + ] + }, + { + "ID": 4138, + "SourceStructureID": 6146, + "TargetStructureID": 121864, + "Label": "6146-121864 via Gap Junction from 121863 -> 121865", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121863, + "TargetID": 121865, + "Directional": false + } + ] + }, + { + "ID": 4139, + "SourceStructureID": 6146, + "TargetStructureID": 121866, + "Label": "6146-121866 via Gap Junction from 131960 -> 131959", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131960, + "TargetID": 131959, + "Directional": false + } + ] + }, + { + "ID": 4140, + "SourceStructureID": 6146, + "TargetStructureID": 121881, + "Label": "6146-121881 via Gap Junction from 121877 -> 121882", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121877, + "TargetID": 121882, + "Directional": false + } + ] + }, + { + "ID": 4141, + "SourceStructureID": 121889, + "TargetStructureID": 6146, + "Label": "121889-6146 via Gap Junction from 121890 -> 120807", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121890, + "TargetID": 120807, + "Directional": false + } + ] + }, + { + "ID": 4142, + "SourceStructureID": 6146, + "TargetStructureID": 121893, + "Label": "6146-121893 via Gap Junction from 121892 -> 121894", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121892, + "TargetID": 121894, + "Directional": false + } + ] + }, + { + "ID": 4143, + "SourceStructureID": 6146, + "TargetStructureID": 121899, + "Label": "6146-121899 via Gap Junction from 120809 -> 121901", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120809, + "TargetID": 121901, + "Directional": false + } + ] + }, + { + "ID": 4144, + "SourceStructureID": 6146, + "TargetStructureID": 131988, + "Label": "6146-131988 via Gap Junction from 131989 -> 131990, 131991 -> 131992", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131989, + "TargetID": 131990, + "Directional": false + }, + { + "SourceID": 131991, + "TargetID": 131992, + "Directional": false + } + ] + }, + { + "ID": 4145, + "SourceStructureID": 6153, + "TargetStructureID": 6153, + "Label": "6153-6153 via Gap Junction from 71559 -> 17468", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71559, + "TargetID": 17468, + "Directional": false + } + ] + }, + { + "ID": 4146, + "SourceStructureID": 6153, + "TargetStructureID": 7157, + "Label": "6153-7157 via Adherens from 26520 -> 26519", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 26520, + "TargetID": 26519, + "Directional": false + } + ] + }, + { + "ID": 4147, + "SourceStructureID": 7157, + "TargetStructureID": 6153, + "Label": "7157-6153 via Gap Junction from 24531 -> 24528, 29500 -> 29499", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24531, + "TargetID": 24528, + "Directional": false + }, + { + "SourceID": 29500, + "TargetID": 29499, + "Directional": false + } + ] + }, + { + "ID": 4148, + "SourceStructureID": 6153, + "TargetStructureID": 15412, + "Label": "6153-15412 via Adherens from 15415 -> 15414", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 15415, + "TargetID": 15414, + "Directional": false + } + ] + }, + { + "ID": 4149, + "SourceStructureID": 6153, + "TargetStructureID": 37295, + "Label": "6153-37295 via Gap Junction from 24533 -> 130520, 39164 -> 39163", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24533, + "TargetID": 130520, + "Directional": false + }, + { + "SourceID": 39164, + "TargetID": 39163, + "Directional": false + } + ] + }, + { + "ID": 4150, + "SourceStructureID": 100055, + "TargetStructureID": 6153, + "Label": "100055-6153 via Adherens from 100057 -> 100058", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100057, + "TargetID": 100058, + "Directional": false + } + ] + }, + { + "ID": 4151, + "SourceStructureID": 6153, + "TargetStructureID": 114925, + "Label": "6153-114925 via Adherens from 114928 -> 114927", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 114928, + "TargetID": 114927, + "Directional": false + } + ] + }, + { + "ID": 4152, + "SourceStructureID": 6155, + "TargetStructureID": 6155, + "Label": "6155-6155 via Gap Junction from 108283 -> 108282", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 108283, + "TargetID": 108282, + "Directional": false + } + ] + }, + { + "ID": 4153, + "SourceStructureID": 6300, + "TargetStructureID": 6155, + "Label": "6300-6155 via Adherens from 104890 -> 104891", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104890, + "TargetID": 104891, + "Directional": false + } + ] + }, + { + "ID": 4154, + "SourceStructureID": 8720, + "TargetStructureID": 6155, + "Label": "8720-6155 via Unknown from 104924 -> 104925", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104924, + "TargetID": 104925, + "Directional": false + } + ] + }, + { + "ID": 4155, + "SourceStructureID": 6155, + "TargetStructureID": 9260, + "Label": "6155-9260 via Unknown from 107825 -> 107826", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107825, + "TargetID": 107826, + "Directional": false + } + ] + }, + { + "ID": 4156, + "SourceStructureID": 9769, + "TargetStructureID": 6155, + "Label": "9769-6155 via Unknown from 106039 -> 105989", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106039, + "TargetID": 105989, + "Directional": false + } + ] + }, + { + "ID": 4157, + "SourceStructureID": 18693, + "TargetStructureID": 6155, + "Label": "18693-6155 via Adherens from 106121 -> 106122", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106121, + "TargetID": 106122, + "Directional": false + } + ] + }, + { + "ID": 4158, + "SourceStructureID": 6155, + "TargetStructureID": 24401, + "Label": "6155-24401 via Gap Junction from 15553 -> 34748, 34786 -> 34782, 48035 -> 48036, 104939 -> 104938, 104944 -> 104946, 107924 -> 107925, 121132 -> 121131, 121133 -> 121134", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 15553, + "TargetID": 34748, + "Directional": false + }, + { + "SourceID": 34786, + "TargetID": 34782, + "Directional": false + }, + { + "SourceID": 48035, + "TargetID": 48036, + "Directional": false + }, + { + "SourceID": 104939, + "TargetID": 104938, + "Directional": false + }, + { + "SourceID": 104944, + "TargetID": 104946, + "Directional": false + }, + { + "SourceID": 107924, + "TargetID": 107925, + "Directional": false + }, + { + "SourceID": 121132, + "TargetID": 121131, + "Directional": false + }, + { + "SourceID": 121133, + "TargetID": 121134, + "Directional": false + } + ] + }, + { + "ID": 4159, + "SourceStructureID": 26079, + "TargetStructureID": 6155, + "Label": "26079-6155 via Adherens from 106359 -> 106360, 106405 -> 106406, 106407 -> 106408", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106359, + "TargetID": 106360, + "Directional": false + }, + { + "SourceID": 106405, + "TargetID": 106406, + "Directional": false + }, + { + "SourceID": 106407, + "TargetID": 106408, + "Directional": false + } + ] + }, + { + "ID": 4160, + "SourceStructureID": 6155, + "TargetStructureID": 26079, + "Label": "6155-26079 via Gap Junction from 35911 -> 35910, 48264 -> 106869, 106052 -> 106053, 106073 -> 106074, 106401 -> 106402, 106433 -> 106434, 121240 -> 121239", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 35911, + "TargetID": 35910, + "Directional": false + }, + { + "SourceID": 48264, + "TargetID": 106869, + "Directional": false + }, + { + "SourceID": 106052, + "TargetID": 106053, + "Directional": false + }, + { + "SourceID": 106073, + "TargetID": 106074, + "Directional": false + }, + { + "SourceID": 106401, + "TargetID": 106402, + "Directional": false + }, + { + "SourceID": 106433, + "TargetID": 106434, + "Directional": false + }, + { + "SourceID": 121240, + "TargetID": 121239, + "Directional": false + } + ] + }, + { + "ID": 4161, + "SourceStructureID": 26079, + "TargetStructureID": 6155, + "Label": "26079-6155 via Unknown from 106017 -> 106014, 106054 -> 106055, 107873 -> 107874, 108044 -> 108046, 121252 -> 121253", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106017, + "TargetID": 106014, + "Directional": false + }, + { + "SourceID": 106054, + "TargetID": 106055, + "Directional": false + }, + { + "SourceID": 107873, + "TargetID": 107874, + "Directional": false + }, + { + "SourceID": 108044, + "TargetID": 108046, + "Directional": false + }, + { + "SourceID": 121252, + "TargetID": 121253, + "Directional": false + } + ] + }, + { + "ID": 4162, + "SourceStructureID": 36421, + "TargetStructureID": 6155, + "Label": "36421-6155 via Gap Junction from 108128 -> 108129", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 108128, + "TargetID": 108129, + "Directional": false + } + ] + }, + { + "ID": 4163, + "SourceStructureID": 36421, + "TargetStructureID": 6155, + "Label": "36421-6155 via Unknown from 108135 -> 108136, 108213 -> 108214", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108135, + "TargetID": 108136, + "Directional": false + }, + { + "SourceID": 108213, + "TargetID": 108214, + "Directional": false + } + ] + }, + { + "ID": 4164, + "SourceStructureID": 6155, + "TargetStructureID": 39867, + "Label": "6155-39867 via Gap Junction from 49074 -> 49075", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49074, + "TargetID": 49075, + "Directional": false + } + ] + }, + { + "ID": 4165, + "SourceStructureID": 101620, + "TargetStructureID": 6155, + "Label": "101620-6155 via Adherens from 107771 -> 107772", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107771, + "TargetID": 107772, + "Directional": false + } + ] + }, + { + "ID": 4166, + "SourceStructureID": 6155, + "TargetStructureID": 104879, + "Label": "6155-104879 via Unknown from 104884 -> 104885", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104884, + "TargetID": 104885, + "Directional": false + } + ] + }, + { + "ID": 4167, + "SourceStructureID": 6155, + "TargetStructureID": 104895, + "Label": "6155-104895 via Unknown from 104896 -> 104897", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104896, + "TargetID": 104897, + "Directional": false + } + ] + }, + { + "ID": 4168, + "SourceStructureID": 104909, + "TargetStructureID": 6155, + "Label": "104909-6155 via Unknown from 104910 -> 104911", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104910, + "TargetID": 104911, + "Directional": false + } + ] + }, + { + "ID": 4169, + "SourceStructureID": 6155, + "TargetStructureID": 104914, + "Label": "6155-104914 via Unknown from 104915 -> 104916", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104915, + "TargetID": 104916, + "Directional": false + } + ] + }, + { + "ID": 4170, + "SourceStructureID": 6155, + "TargetStructureID": 104940, + "Label": "6155-104940 via Unknown from 104941 -> 104942", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104941, + "TargetID": 104942, + "Directional": false + } + ] + }, + { + "ID": 4171, + "SourceStructureID": 104954, + "TargetStructureID": 6155, + "Label": "104954-6155 via Adherens from 104955 -> 104956", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104955, + "TargetID": 104956, + "Directional": false + } + ] + }, + { + "ID": 4172, + "SourceStructureID": 6155, + "TargetStructureID": 104968, + "Label": "6155-104968 via Unknown from 104967 -> 104969", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104967, + "TargetID": 104969, + "Directional": false + } + ] + }, + { + "ID": 4173, + "SourceStructureID": 104976, + "TargetStructureID": 6155, + "Label": "104976-6155 via Unknown from 104977 -> 104978", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104977, + "TargetID": 104978, + "Directional": false + } + ] + }, + { + "ID": 4174, + "SourceStructureID": 6155, + "TargetStructureID": 105844, + "Label": "6155-105844 via Adherens from 16875 -> 105850", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 16875, + "TargetID": 105850, + "Directional": false + } + ] + }, + { + "ID": 4175, + "SourceStructureID": 6155, + "TargetStructureID": 105865, + "Label": "6155-105865 via Unknown from 105864 -> 105866", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105864, + "TargetID": 105866, + "Directional": false + } + ] + }, + { + "ID": 4176, + "SourceStructureID": 6155, + "TargetStructureID": 105881, + "Label": "6155-105881 via Unknown from 105887 -> 105901", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105887, + "TargetID": 105901, + "Directional": false + } + ] + }, + { + "ID": 4177, + "SourceStructureID": 6155, + "TargetStructureID": 105904, + "Label": "6155-105904 via Adherens from 16873 -> 105905", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 16873, + "TargetID": 105905, + "Directional": false + } + ] + }, + { + "ID": 4178, + "SourceStructureID": 6155, + "TargetStructureID": 105904, + "Label": "6155-105904 via Unknown from 105922 -> 105921", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105922, + "TargetID": 105921, + "Directional": false + } + ] + }, + { + "ID": 4179, + "SourceStructureID": 6155, + "TargetStructureID": 105928, + "Label": "6155-105928 via Adherens from 105955 -> 105956", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 105955, + "TargetID": 105956, + "Directional": false + } + ] + }, + { + "ID": 4180, + "SourceStructureID": 105928, + "TargetStructureID": 6155, + "Label": "105928-6155 via Unknown from 105958 -> 105957", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 105958, + "TargetID": 105957, + "Directional": false + } + ] + }, + { + "ID": 4181, + "SourceStructureID": 6155, + "TargetStructureID": 105992, + "Label": "6155-105992 via Adherens from 16878 -> 106044", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 16878, + "TargetID": 106044, + "Directional": false + } + ] + }, + { + "ID": 4182, + "SourceStructureID": 106008, + "TargetStructureID": 6155, + "Label": "106008-6155 via Unknown from 106010 -> 106011", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106010, + "TargetID": 106011, + "Directional": false + } + ] + }, + { + "ID": 4183, + "SourceStructureID": 106056, + "TargetStructureID": 6155, + "Label": "106056-6155 via Unknown from 106057 -> 106058", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106057, + "TargetID": 106058, + "Directional": false + } + ] + }, + { + "ID": 4184, + "SourceStructureID": 6155, + "TargetStructureID": 106064, + "Label": "6155-106064 via Adherens from 15759 -> 106066", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 15759, + "TargetID": 106066, + "Directional": false + } + ] + }, + { + "ID": 4185, + "SourceStructureID": 6155, + "TargetStructureID": 106080, + "Label": "6155-106080 via Adherens from 106081 -> 106082", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106081, + "TargetID": 106082, + "Directional": false + } + ] + }, + { + "ID": 4186, + "SourceStructureID": 6155, + "TargetStructureID": 106083, + "Label": "6155-106083 via Unknown from 106086 -> 106085", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106086, + "TargetID": 106085, + "Directional": false + } + ] + }, + { + "ID": 4187, + "SourceStructureID": 6155, + "TargetStructureID": 106095, + "Label": "6155-106095 via Adherens from 106117 -> 106118", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106117, + "TargetID": 106118, + "Directional": false + } + ] + }, + { + "ID": 4188, + "SourceStructureID": 6155, + "TargetStructureID": 106110, + "Label": "6155-106110 via Adherens from 106366 -> 106367", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106366, + "TargetID": 106367, + "Directional": false + } + ] + }, + { + "ID": 4189, + "SourceStructureID": 6155, + "TargetStructureID": 106384, + "Label": "6155-106384 via Adherens from 106392 -> 106393", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106392, + "TargetID": 106393, + "Directional": false + } + ] + }, + { + "ID": 4190, + "SourceStructureID": 106384, + "TargetStructureID": 6155, + "Label": "106384-6155 via Unknown from 106385 -> 106383", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106385, + "TargetID": 106383, + "Directional": false + } + ] + }, + { + "ID": 4191, + "SourceStructureID": 6155, + "TargetStructureID": 106410, + "Label": "6155-106410 via Adherens from 106411 -> 106412", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106411, + "TargetID": 106412, + "Directional": false + } + ] + }, + { + "ID": 4192, + "SourceStructureID": 6155, + "TargetStructureID": 106448, + "Label": "6155-106448 via Adherens from 106449 -> 106450", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106449, + "TargetID": 106450, + "Directional": false + } + ] + }, + { + "ID": 4193, + "SourceStructureID": 6155, + "TargetStructureID": 106451, + "Label": "6155-106451 via Gap Junction from 106452 -> 106453", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 106452, + "TargetID": 106453, + "Directional": false + } + ] + }, + { + "ID": 4194, + "SourceStructureID": 6155, + "TargetStructureID": 106480, + "Label": "6155-106480 via Adherens from 15811 -> 106481", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 15811, + "TargetID": 106481, + "Directional": false + } + ] + }, + { + "ID": 4195, + "SourceStructureID": 6155, + "TargetStructureID": 106571, + "Label": "6155-106571 via Unknown from 106570 -> 106572", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106570, + "TargetID": 106572, + "Directional": false + } + ] + }, + { + "ID": 4196, + "SourceStructureID": 6155, + "TargetStructureID": 106574, + "Label": "6155-106574 via Adherens from 106575 -> 106576", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106575, + "TargetID": 106576, + "Directional": false + } + ] + }, + { + "ID": 4197, + "SourceStructureID": 106629, + "TargetStructureID": 6155, + "Label": "106629-6155 via Adherens from 106630 -> 106631", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106630, + "TargetID": 106631, + "Directional": false + } + ] + }, + { + "ID": 4198, + "SourceStructureID": 6155, + "TargetStructureID": 106705, + "Label": "6155-106705 via Adherens from 106707 -> 106708", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106707, + "TargetID": 106708, + "Directional": false + } + ] + }, + { + "ID": 4199, + "SourceStructureID": 6155, + "TargetStructureID": 106744, + "Label": "6155-106744 via Unknown from 106743 -> 106745", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106743, + "TargetID": 106745, + "Directional": false + } + ] + }, + { + "ID": 4200, + "SourceStructureID": 6155, + "TargetStructureID": 106776, + "Label": "6155-106776 via Adherens from 108272 -> 108271", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108272, + "TargetID": 108271, + "Directional": false + } + ] + }, + { + "ID": 4201, + "SourceStructureID": 106776, + "TargetStructureID": 6155, + "Label": "106776-6155 via Unknown from 106787 -> 106788", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106787, + "TargetID": 106788, + "Directional": false + } + ] + }, + { + "ID": 4202, + "SourceStructureID": 106805, + "TargetStructureID": 6155, + "Label": "106805-6155 via Unknown from 106806 -> 106808", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106806, + "TargetID": 106808, + "Directional": false + } + ] + }, + { + "ID": 4203, + "SourceStructureID": 6155, + "TargetStructureID": 106836, + "Label": "6155-106836 via Adherens from 106837 -> 106838", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 106837, + "TargetID": 106838, + "Directional": false + } + ] + }, + { + "ID": 4204, + "SourceStructureID": 106842, + "TargetStructureID": 6155, + "Label": "106842-6155 via Unknown from 106843 -> 106840", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106843, + "TargetID": 106840, + "Directional": false + } + ] + }, + { + "ID": 4205, + "SourceStructureID": 6155, + "TargetStructureID": 107619, + "Label": "6155-107619 via Adherens from 107620 -> 107621", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107620, + "TargetID": 107621, + "Directional": false + } + ] + }, + { + "ID": 4206, + "SourceStructureID": 6155, + "TargetStructureID": 107753, + "Label": "6155-107753 via Adherens from 107775 -> 107776", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107775, + "TargetID": 107776, + "Directional": false + } + ] + }, + { + "ID": 4207, + "SourceStructureID": 107769, + "TargetStructureID": 6155, + "Label": "107769-6155 via Unknown from 107773 -> 107774", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107773, + "TargetID": 107774, + "Directional": false + } + ] + }, + { + "ID": 4208, + "SourceStructureID": 107781, + "TargetStructureID": 6155, + "Label": "107781-6155 via Adherens from 107783 -> 107782", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107783, + "TargetID": 107782, + "Directional": false + } + ] + }, + { + "ID": 4209, + "SourceStructureID": 6155, + "TargetStructureID": 107794, + "Label": "6155-107794 via Adherens from 107813 -> 107814", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107813, + "TargetID": 107814, + "Directional": false + } + ] + }, + { + "ID": 4210, + "SourceStructureID": 6155, + "TargetStructureID": 107802, + "Label": "6155-107802 via Adherens from 107804 -> 107803", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107804, + "TargetID": 107803, + "Directional": false + } + ] + }, + { + "ID": 4211, + "SourceStructureID": 6155, + "TargetStructureID": 107805, + "Label": "6155-107805 via Adherens from 16132 -> 107806", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 16132, + "TargetID": 107806, + "Directional": false + } + ] + }, + { + "ID": 4212, + "SourceStructureID": 107845, + "TargetStructureID": 6155, + "Label": "107845-6155 via Adherens from 107847 -> 107848", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107847, + "TargetID": 107848, + "Directional": false + } + ] + }, + { + "ID": 4213, + "SourceStructureID": 6155, + "TargetStructureID": 107857, + "Label": "6155-107857 via Adherens from 107858 -> 107859", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107858, + "TargetID": 107859, + "Directional": false + } + ] + }, + { + "ID": 4214, + "SourceStructureID": 107860, + "TargetStructureID": 6155, + "Label": "107860-6155 via Adherens from 107861 -> 107862", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107861, + "TargetID": 107862, + "Directional": false + } + ] + }, + { + "ID": 4215, + "SourceStructureID": 6155, + "TargetStructureID": 107887, + "Label": "6155-107887 via Adherens from 107886 -> 107892", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107886, + "TargetID": 107892, + "Directional": false + } + ] + }, + { + "ID": 4216, + "SourceStructureID": 107889, + "TargetStructureID": 6155, + "Label": "107889-6155 via Unknown from 107890 -> 107891", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107890, + "TargetID": 107891, + "Directional": false + } + ] + }, + { + "ID": 4217, + "SourceStructureID": 6155, + "TargetStructureID": 107894, + "Label": "6155-107894 via Adherens from 107895 -> 107896", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107895, + "TargetID": 107896, + "Directional": false + } + ] + }, + { + "ID": 4218, + "SourceStructureID": 6155, + "TargetStructureID": 107897, + "Label": "6155-107897 via Adherens from 107898 -> 107899", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107898, + "TargetID": 107899, + "Directional": false + } + ] + }, + { + "ID": 4219, + "SourceStructureID": 107900, + "TargetStructureID": 6155, + "Label": "107900-6155 via Unknown from 107901 -> 107902", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 107901, + "TargetID": 107902, + "Directional": false + } + ] + }, + { + "ID": 4220, + "SourceStructureID": 6155, + "TargetStructureID": 107928, + "Label": "6155-107928 via Adherens from 15539 -> 107929", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 15539, + "TargetID": 107929, + "Directional": false + } + ] + }, + { + "ID": 4221, + "SourceStructureID": 6155, + "TargetStructureID": 107933, + "Label": "6155-107933 via Adherens from 107934 -> 107936", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107934, + "TargetID": 107936, + "Directional": false + } + ] + }, + { + "ID": 4222, + "SourceStructureID": 107944, + "TargetStructureID": 6155, + "Label": "107944-6155 via Adherens from 107945 -> 107946", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107945, + "TargetID": 107946, + "Directional": false + } + ] + }, + { + "ID": 4223, + "SourceStructureID": 6155, + "TargetStructureID": 107979, + "Label": "6155-107979 via Adherens from 15543 -> 107980", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 15543, + "TargetID": 107980, + "Directional": false + } + ] + }, + { + "ID": 4224, + "SourceStructureID": 6155, + "TargetStructureID": 107989, + "Label": "6155-107989 via Adherens from 107990 -> 107991", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 107990, + "TargetID": 107991, + "Directional": false + } + ] + }, + { + "ID": 4225, + "SourceStructureID": 6155, + "TargetStructureID": 107992, + "Label": "6155-107992 via Adherens from 15570 -> 108003", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 15570, + "TargetID": 108003, + "Directional": false + } + ] + }, + { + "ID": 4226, + "SourceStructureID": 107999, + "TargetStructureID": 6155, + "Label": "107999-6155 via Adherens from 108002 -> 108001", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108002, + "TargetID": 108001, + "Directional": false + } + ] + }, + { + "ID": 4227, + "SourceStructureID": 108031, + "TargetStructureID": 6155, + "Label": "108031-6155 via Adherens from 108035 -> 108036", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108035, + "TargetID": 108036, + "Directional": false + } + ] + }, + { + "ID": 4228, + "SourceStructureID": 108053, + "TargetStructureID": 6155, + "Label": "108053-6155 via Adherens from 108054 -> 108056", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108054, + "TargetID": 108056, + "Directional": false + } + ] + }, + { + "ID": 4229, + "SourceStructureID": 6155, + "TargetStructureID": 108064, + "Label": "6155-108064 via Gap Junction from 48306 -> 108065", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48306, + "TargetID": 108065, + "Directional": false + } + ] + }, + { + "ID": 4230, + "SourceStructureID": 108066, + "TargetStructureID": 6155, + "Label": "108066-6155 via Adherens from 108067 -> 108068, 108071 -> 108070", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108067, + "TargetID": 108068, + "Directional": false + }, + { + "SourceID": 108071, + "TargetID": 108070, + "Directional": false + } + ] + }, + { + "ID": 4231, + "SourceStructureID": 108072, + "TargetStructureID": 6155, + "Label": "108072-6155 via Adherens from 108074 -> 108075", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108074, + "TargetID": 108075, + "Directional": false + } + ] + }, + { + "ID": 4232, + "SourceStructureID": 6155, + "TargetStructureID": 108072, + "Label": "6155-108072 via Gap Junction from 48302 -> 108073", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48302, + "TargetID": 108073, + "Directional": false + } + ] + }, + { + "ID": 4233, + "SourceStructureID": 6155, + "TargetStructureID": 108076, + "Label": "6155-108076 via Adherens from 49081 -> 108077", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 49081, + "TargetID": 108077, + "Directional": false + } + ] + }, + { + "ID": 4234, + "SourceStructureID": 6155, + "TargetStructureID": 108114, + "Label": "6155-108114 via Unknown from 108116 -> 108115", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108116, + "TargetID": 108115, + "Directional": false + } + ] + }, + { + "ID": 4235, + "SourceStructureID": 108162, + "TargetStructureID": 6155, + "Label": "108162-6155 via Unknown from 108163 -> 108161", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108163, + "TargetID": 108161, + "Directional": false + } + ] + }, + { + "ID": 4236, + "SourceStructureID": 6155, + "TargetStructureID": 108235, + "Label": "6155-108235 via Adherens from 108245 -> 108244", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108245, + "TargetID": 108244, + "Directional": false + } + ] + }, + { + "ID": 4237, + "SourceStructureID": 108289, + "TargetStructureID": 6155, + "Label": "108289-6155 via Adherens from 108291 -> 108290", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108291, + "TargetID": 108290, + "Directional": false + } + ] + }, + { + "ID": 4238, + "SourceStructureID": 6155, + "TargetStructureID": 108300, + "Label": "6155-108300 via Unknown from 108303 -> 108304", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108303, + "TargetID": 108304, + "Directional": false + } + ] + }, + { + "ID": 4239, + "SourceStructureID": 108351, + "TargetStructureID": 6155, + "Label": "108351-6155 via Unknown from 108352 -> 108350", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108352, + "TargetID": 108350, + "Directional": false + } + ] + }, + { + "ID": 4240, + "SourceStructureID": 6857, + "TargetStructureID": 6156, + "Label": "6857-6156 via Unknown from 133425 -> 133426", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133425, + "TargetID": 133426, + "Directional": false + } + ] + }, + { + "ID": 4241, + "SourceStructureID": 6997, + "TargetStructureID": 6156, + "Label": "6997-6156 via Gap Junction from 135075 -> 135074", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 135075, + "TargetID": 135074, + "Directional": false + } + ] + }, + { + "ID": 4242, + "SourceStructureID": 6156, + "TargetStructureID": 6997, + "Label": "6156-6997 via Touch from 136724 -> 136725", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 136724, + "TargetID": 136725, + "Directional": false + } + ] + }, + { + "ID": 4243, + "SourceStructureID": 6156, + "TargetStructureID": 8037, + "Label": "6156-8037 via Adherens from 133323 -> 133322", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133323, + "TargetID": 133322, + "Directional": false + } + ] + }, + { + "ID": 4244, + "SourceStructureID": 8037, + "TargetStructureID": 6156, + "Label": "8037-6156 via Gap Junction from 117528 -> 117527", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117528, + "TargetID": 117527, + "Directional": false + } + ] + }, + { + "ID": 4245, + "SourceStructureID": 6156, + "TargetStructureID": 12208, + "Label": "6156-12208 via Adherens from 22345 -> 22344", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 22345, + "TargetID": 22344, + "Directional": false + } + ] + }, + { + "ID": 4246, + "SourceStructureID": 18576, + "TargetStructureID": 6156, + "Label": "18576-6156 via Adherens from 133215 -> 133214", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133215, + "TargetID": 133214, + "Directional": false + } + ] + }, + { + "ID": 4247, + "SourceStructureID": 6156, + "TargetStructureID": 39530, + "Label": "6156-39530 via Unknown from 133376 -> 133377", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133376, + "TargetID": 133377, + "Directional": false + } + ] + }, + { + "ID": 4248, + "SourceStructureID": 6156, + "TargetStructureID": 47104, + "Label": "6156-47104 via Unknown from 133394 -> 133395", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133394, + "TargetID": 133395, + "Directional": false + } + ] + }, + { + "ID": 4249, + "SourceStructureID": 48612, + "TargetStructureID": 6156, + "Label": "48612-6156 via Adherens from 133340 -> 117607", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133340, + "TargetID": 117607, + "Directional": false + } + ] + }, + { + "ID": 4250, + "SourceStructureID": 6156, + "TargetStructureID": 49600, + "Label": "6156-49600 via Adherens from 133358 -> 133359", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133358, + "TargetID": 133359, + "Directional": false + } + ] + }, + { + "ID": 4251, + "SourceStructureID": 6156, + "TargetStructureID": 54744, + "Label": "6156-54744 via Adherens from 133373 -> 133374", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133373, + "TargetID": 133374, + "Directional": false + } + ] + }, + { + "ID": 4252, + "SourceStructureID": 59422, + "TargetStructureID": 6156, + "Label": "59422-6156 via Adherens from 59435 -> 59436", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59435, + "TargetID": 59436, + "Directional": false + } + ] + }, + { + "ID": 4253, + "SourceStructureID": 60201, + "TargetStructureID": 6156, + "Label": "60201-6156 via Unknown from 133231 -> 133232", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133231, + "TargetID": 133232, + "Directional": false + } + ] + }, + { + "ID": 4254, + "SourceStructureID": 60645, + "TargetStructureID": 6156, + "Label": "60645-6156 via Adherens from 133180 -> 133179", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133180, + "TargetID": 133179, + "Directional": false + } + ] + }, + { + "ID": 4255, + "SourceStructureID": 60657, + "TargetStructureID": 6156, + "Label": "60657-6156 via Adherens from 133174 -> 133175", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133174, + "TargetID": 133175, + "Directional": false + } + ] + }, + { + "ID": 4256, + "SourceStructureID": 6156, + "TargetStructureID": 68042, + "Label": "6156-68042 via Unknown from 133327 -> 133326", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133327, + "TargetID": 133326, + "Directional": false + } + ] + }, + { + "ID": 4257, + "SourceStructureID": 91267, + "TargetStructureID": 6156, + "Label": "91267-6156 via Unknown from 133444 -> 133443", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133444, + "TargetID": 133443, + "Directional": false + } + ] + }, + { + "ID": 4258, + "SourceStructureID": 101686, + "TargetStructureID": 6156, + "Label": "101686-6156 via Adherens from 133397 -> 133396", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133397, + "TargetID": 133396, + "Directional": false + } + ] + }, + { + "ID": 4259, + "SourceStructureID": 101707, + "TargetStructureID": 6156, + "Label": "101707-6156 via Unknown from 133199 -> 133198", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133199, + "TargetID": 133198, + "Directional": false + } + ] + }, + { + "ID": 4260, + "SourceStructureID": 6158, + "TargetStructureID": 6162, + "Label": "6158-6162 via Gap Junction from 115480 -> 115481", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115480, + "TargetID": 115481, + "Directional": false + } + ] + }, + { + "ID": 4261, + "SourceStructureID": 6158, + "TargetStructureID": 6162, + "Label": "6158-6162 via Unknown from 115475 -> 115476", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115475, + "TargetID": 115476, + "Directional": false + } + ] + }, + { + "ID": 4262, + "SourceStructureID": 7951, + "TargetStructureID": 6158, + "Label": "7951-6158 via Gap Junction from 115479 -> 38074, 120644 -> 120643, 120667 -> 120666, 132454 -> 132453", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115479, + "TargetID": 38074, + "Directional": false + }, + { + "SourceID": 120644, + "TargetID": 120643, + "Directional": false + }, + { + "SourceID": 120667, + "TargetID": 120666, + "Directional": false + }, + { + "SourceID": 132454, + "TargetID": 132453, + "Directional": false + } + ] + }, + { + "ID": 4263, + "SourceStructureID": 69428, + "TargetStructureID": 6158, + "Label": "69428-6158 via Gap Junction from 120827 -> 120826", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120827, + "TargetID": 120826, + "Directional": false + } + ] + }, + { + "ID": 4264, + "SourceStructureID": 115424, + "TargetStructureID": 6158, + "Label": "115424-6158 via Gap Junction from 120817 -> 120816", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120817, + "TargetID": 120816, + "Directional": false + } + ] + }, + { + "ID": 4265, + "SourceStructureID": 115487, + "TargetStructureID": 6158, + "Label": "115487-6158 via Gap Junction from 115488 -> 115486", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115488, + "TargetID": 115486, + "Directional": false + } + ] + }, + { + "ID": 4266, + "SourceStructureID": 6162, + "TargetStructureID": 6162, + "Label": "6162-6162 via Gap Junction from 120749 -> 120750", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120749, + "TargetID": 120750, + "Directional": false + } + ] + }, + { + "ID": 4267, + "SourceStructureID": 6162, + "TargetStructureID": 47445, + "Label": "6162-47445 via Gap Junction from 131995 -> 131996, 132003 -> 132004, 132005 -> 132006, 132031 -> 47448", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131995, + "TargetID": 131996, + "Directional": false + }, + { + "SourceID": 132003, + "TargetID": 132004, + "Directional": false + }, + { + "SourceID": 132005, + "TargetID": 132006, + "Directional": false + }, + { + "SourceID": 132031, + "TargetID": 47448, + "Directional": false + } + ] + }, + { + "ID": 4268, + "SourceStructureID": 121889, + "TargetStructureID": 6162, + "Label": "121889-6162 via Gap Junction from 132001 -> 132002", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132001, + "TargetID": 132002, + "Directional": false + } + ] + }, + { + "ID": 4269, + "SourceStructureID": 6162, + "TargetStructureID": 121899, + "Label": "6162-121899 via Gap Junction from 122378 -> 122379", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122378, + "TargetID": 122379, + "Directional": false + } + ] + }, + { + "ID": 4270, + "SourceStructureID": 131886, + "TargetStructureID": 6162, + "Label": "131886-6162 via Gap Junction from 131887 -> 29107", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131887, + "TargetID": 29107, + "Directional": false + } + ] + }, + { + "ID": 4271, + "SourceStructureID": 61270, + "TargetStructureID": 6163, + "Label": "61270-6163 via Touch from 61299 -> 61298", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 61299, + "TargetID": 61298, + "Directional": false + } + ] + }, + { + "ID": 4272, + "SourceStructureID": 6165, + "TargetStructureID": 6165, + "Label": "6165-6165 via Gap Junction from 118057 -> 118056", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118057, + "TargetID": 118056, + "Directional": false + } + ] + }, + { + "ID": 4273, + "SourceStructureID": 6169, + "TargetStructureID": 7113, + "Label": "6169-7113 via Gap Junction from 29711 -> 29710", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29711, + "TargetID": 29710, + "Directional": false + } + ] + }, + { + "ID": 4274, + "SourceStructureID": 6169, + "TargetStructureID": 7147, + "Label": "6169-7147 via Gap Junction from 29707 -> 29697, 29714 -> 29713", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29707, + "TargetID": 29697, + "Directional": false + }, + { + "SourceID": 29714, + "TargetID": 29713, + "Directional": false + } + ] + }, + { + "ID": 4275, + "SourceStructureID": 7859, + "TargetStructureID": 6169, + "Label": "7859-6169 via Touch from 64686 -> 64687", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 64686, + "TargetID": 64687, + "Directional": false + } + ] + }, + { + "ID": 4276, + "SourceStructureID": 6169, + "TargetStructureID": 39201, + "Label": "6169-39201 via Adherens from 16168 -> 89479", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 16168, + "TargetID": 89479, + "Directional": false + } + ] + }, + { + "ID": 4277, + "SourceStructureID": 6169, + "TargetStructureID": 39787, + "Label": "6169-39787 via Adherens from 87739 -> 87736", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87739, + "TargetID": 87736, + "Directional": false + } + ] + }, + { + "ID": 4278, + "SourceStructureID": 39816, + "TargetStructureID": 6169, + "Label": "39816-6169 via Unknown from 89973 -> 89974", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89973, + "TargetID": 89974, + "Directional": false + } + ] + }, + { + "ID": 4279, + "SourceStructureID": 40896, + "TargetStructureID": 6169, + "Label": "40896-6169 via Adherens from 40900 -> 14162", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 40900, + "TargetID": 14162, + "Directional": false + } + ] + }, + { + "ID": 4280, + "SourceStructureID": 6169, + "TargetStructureID": 60863, + "Label": "6169-60863 via Adherens from 75233 -> 75231", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75233, + "TargetID": 75231, + "Directional": false + } + ] + }, + { + "ID": 4281, + "SourceStructureID": 6169, + "TargetStructureID": 136432, + "Label": "6169-136432 via Touch from 136541 -> 136540", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 136541, + "TargetID": 136540, + "Directional": false + } + ] + }, + { + "ID": 4282, + "SourceStructureID": 7114, + "TargetStructureID": 6203, + "Label": "7114-6203 via Gap Junction from 57229 -> 57213", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57229, + "TargetID": 57213, + "Directional": false + } + ] + }, + { + "ID": 4283, + "SourceStructureID": 57226, + "TargetStructureID": 6203, + "Label": "57226-6203 via Gap Junction from 57227 -> 57225", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57227, + "TargetID": 57225, + "Directional": false + } + ] + }, + { + "ID": 4284, + "SourceStructureID": 57248, + "TargetStructureID": 6203, + "Label": "57248-6203 via Gap Junction from 57249 -> 57247", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57249, + "TargetID": 57247, + "Directional": false + } + ] + }, + { + "ID": 4285, + "SourceStructureID": 6203, + "TargetStructureID": 57273, + "Label": "6203-57273 via Gap Junction from 57272 -> 57286", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57272, + "TargetID": 57286, + "Directional": false + } + ] + }, + { + "ID": 4286, + "SourceStructureID": 6203, + "TargetStructureID": 57353, + "Label": "6203-57353 via Gap Junction from 52117 -> 57354, 115323 -> 115322, 124296 -> 124297", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52117, + "TargetID": 57354, + "Directional": false + }, + { + "SourceID": 115323, + "TargetID": 115322, + "Directional": false + }, + { + "SourceID": 124296, + "TargetID": 124297, + "Directional": false + } + ] + }, + { + "ID": 4287, + "SourceStructureID": 6203, + "TargetStructureID": 57353, + "Label": "6203-57353 via Unknown from 124413 -> 124414", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124413, + "TargetID": 124414, + "Directional": false + } + ] + }, + { + "ID": 4288, + "SourceStructureID": 89670, + "TargetStructureID": 6203, + "Label": "89670-6203 via Unknown from 125781 -> 125780", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125781, + "TargetID": 125780, + "Directional": false + } + ] + }, + { + "ID": 4289, + "SourceStructureID": 6204, + "TargetStructureID": 6204, + "Label": "6204-6204 via Gap Junction from 118085 -> 57293, 118154 -> 118153", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118085, + "TargetID": 57293, + "Directional": false + }, + { + "SourceID": 118154, + "TargetID": 118153, + "Directional": false + } + ] + }, + { + "ID": 4290, + "SourceStructureID": 8032, + "TargetStructureID": 6204, + "Label": "8032-6204 via Gap Junction from 32521 -> 118116", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 32521, + "TargetID": 118116, + "Directional": false + } + ] + }, + { + "ID": 4291, + "SourceStructureID": 22994, + "TargetStructureID": 6204, + "Label": "22994-6204 via Gap Junction from 118120 -> 118118, 118128 -> 118129, 118131 -> 118132, 118134 -> 118133", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118120, + "TargetID": 118118, + "Directional": false + }, + { + "SourceID": 118128, + "TargetID": 118129, + "Directional": false + }, + { + "SourceID": 118131, + "TargetID": 118132, + "Directional": false + }, + { + "SourceID": 118134, + "TargetID": 118133, + "Directional": false + } + ] + }, + { + "ID": 4292, + "SourceStructureID": 6204, + "TargetStructureID": 33039, + "Label": "6204-33039 via Gap Junction from 52633 -> 52634", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52633, + "TargetID": 52634, + "Directional": false + } + ] + }, + { + "ID": 4293, + "SourceStructureID": 6204, + "TargetStructureID": 57353, + "Label": "6204-57353 via Touch from 124327 -> 124326", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 124327, + "TargetID": 124326, + "Directional": false + } + ] + }, + { + "ID": 4294, + "SourceStructureID": 6204, + "TargetStructureID": 132009, + "Label": "6204-132009 via Gap Junction from 132008 -> 132010", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132008, + "TargetID": 132010, + "Directional": false + } + ] + }, + { + "ID": 4295, + "SourceStructureID": 66815, + "TargetStructureID": 6561, + "Label": "66815-6561 via Adherens from 159678 -> 8325", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159678, + "TargetID": 8325, + "Directional": false + } + ] + }, + { + "ID": 4296, + "SourceStructureID": 86634, + "TargetStructureID": 6561, + "Label": "86634-6561 via Adherens from 86706 -> 8304", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86706, + "TargetID": 8304, + "Directional": false + } + ] + }, + { + "ID": 4297, + "SourceStructureID": 6589, + "TargetStructureID": 6589, + "Label": "6589-6589 via Adherens from 119941 -> 119940", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 119941, + "TargetID": 119940, + "Directional": false + } + ] + }, + { + "ID": 4298, + "SourceStructureID": 6997, + "TargetStructureID": 6589, + "Label": "6997-6589 via Adherens from 130563 -> 130562", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130563, + "TargetID": 130562, + "Directional": false + } + ] + }, + { + "ID": 4299, + "SourceStructureID": 6997, + "TargetStructureID": 6589, + "Label": "6997-6589 via Gap Junction from 130565 -> 130564, 132620 -> 132619", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 130565, + "TargetID": 130564, + "Directional": false + }, + { + "SourceID": 132620, + "TargetID": 132619, + "Directional": false + } + ] + }, + { + "ID": 4300, + "SourceStructureID": 6589, + "TargetStructureID": 8037, + "Label": "6589-8037 via Adherens from 130636 -> 132615", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130636, + "TargetID": 132615, + "Directional": false + } + ] + }, + { + "ID": 4301, + "SourceStructureID": 6589, + "TargetStructureID": 8037, + "Label": "6589-8037 via Gap Junction from 130637 -> 132616", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 130637, + "TargetID": 132616, + "Directional": false + } + ] + }, + { + "ID": 4302, + "SourceStructureID": 9693, + "TargetStructureID": 6589, + "Label": "9693-6589 via Adherens from 130583 -> 130582", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130583, + "TargetID": 130582, + "Directional": false + } + ] + }, + { + "ID": 4303, + "SourceStructureID": 13855, + "TargetStructureID": 6589, + "Label": "13855-6589 via Unknown from 132691 -> 132690, 132708 -> 132709, 132762 -> 132763", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132691, + "TargetID": 132690, + "Directional": false + }, + { + "SourceID": 132708, + "TargetID": 132709, + "Directional": false + }, + { + "SourceID": 132762, + "TargetID": 132763, + "Directional": false + } + ] + }, + { + "ID": 4304, + "SourceStructureID": 6589, + "TargetStructureID": 22554, + "Label": "6589-22554 via Unknown from 132682 -> 132683", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132682, + "TargetID": 132683, + "Directional": false + } + ] + }, + { + "ID": 4305, + "SourceStructureID": 40469, + "TargetStructureID": 6589, + "Label": "40469-6589 via Unknown from 132701 -> 132700", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132701, + "TargetID": 132700, + "Directional": false + } + ] + }, + { + "ID": 4306, + "SourceStructureID": 6589, + "TargetStructureID": 87158, + "Label": "6589-87158 via Unknown from 130557 -> 130558", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 130557, + "TargetID": 130558, + "Directional": false + } + ] + }, + { + "ID": 4307, + "SourceStructureID": 6589, + "TargetStructureID": 95701, + "Label": "6589-95701 via Unknown from 132702 -> 132703", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132702, + "TargetID": 132703, + "Directional": false + } + ] + }, + { + "ID": 4308, + "SourceStructureID": 132773, + "TargetStructureID": 6589, + "Label": "132773-6589 via Gap Junction from 132780 -> 130629", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132780, + "TargetID": 130629, + "Directional": false + } + ] + }, + { + "ID": 4309, + "SourceStructureID": 6617, + "TargetStructureID": 8033, + "Label": "6617-8033 via Touch from 61253 -> 61254", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 61253, + "TargetID": 61254, + "Directional": false + } + ] + }, + { + "ID": 4310, + "SourceStructureID": 6618, + "TargetStructureID": 40919, + "Label": "6618-40919 via Touch from 60506 -> 60505", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 60506, + "TargetID": 60505, + "Directional": false + } + ] + }, + { + "ID": 4311, + "SourceStructureID": 8586, + "TargetStructureID": 6857, + "Label": "8586-6857 via Touch from 32688 -> 32687", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 32688, + "TargetID": 32687, + "Directional": false + } + ] + }, + { + "ID": 4312, + "SourceStructureID": 6857, + "TargetStructureID": 18576, + "Label": "6857-18576 via Adherens from 100534 -> 100533", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100534, + "TargetID": 100533, + "Directional": false + } + ] + }, + { + "ID": 4313, + "SourceStructureID": 6857, + "TargetStructureID": 71513, + "Label": "6857-71513 via Adherens from 77722 -> 77721", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77722, + "TargetID": 77721, + "Directional": false + } + ] + }, + { + "ID": 4314, + "SourceStructureID": 6857, + "TargetStructureID": 71517, + "Label": "6857-71517 via Adherens from 66680 -> 66681, 72123 -> 72122, 74985 -> 74984, 74986 -> 74987, 75165 -> 75164", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66680, + "TargetID": 66681, + "Directional": false + }, + { + "SourceID": 72123, + "TargetID": 72122, + "Directional": false + }, + { + "SourceID": 74985, + "TargetID": 74984, + "Directional": false + }, + { + "SourceID": 74986, + "TargetID": 74987, + "Directional": false + }, + { + "SourceID": 75165, + "TargetID": 75164, + "Directional": false + } + ] + }, + { + "ID": 4315, + "SourceStructureID": 6909, + "TargetStructureID": 6909, + "Label": "6909-6909 via Gap Junction from 122782 -> 122789", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122782, + "TargetID": 122789, + "Directional": false + } + ] + }, + { + "ID": 4316, + "SourceStructureID": 6909, + "TargetStructureID": 6964, + "Label": "6909-6964 via Gap Junction from 122965 -> 122966, 122968 -> 122969, 122972 -> 122971, 122973 -> 122974, 122975 -> 122976, 122977 -> 121677, 123104 -> 123105", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122965, + "TargetID": 122966, + "Directional": false + }, + { + "SourceID": 122968, + "TargetID": 122969, + "Directional": false + }, + { + "SourceID": 122972, + "TargetID": 122971, + "Directional": false + }, + { + "SourceID": 122973, + "TargetID": 122974, + "Directional": false + }, + { + "SourceID": 122975, + "TargetID": 122976, + "Directional": false + }, + { + "SourceID": 122977, + "TargetID": 121677, + "Directional": false + }, + { + "SourceID": 123104, + "TargetID": 123105, + "Directional": false + } + ] + }, + { + "ID": 4317, + "SourceStructureID": 6909, + "TargetStructureID": 6965, + "Label": "6909-6965 via Gap Junction from 123009 -> 123008, 123011 -> 123010, 123013 -> 123012, 123016 -> 123015, 123019 -> 123018, 123020 -> 123021, 123022 -> 123023, 123024 -> 123025", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123009, + "TargetID": 123008, + "Directional": false + }, + { + "SourceID": 123011, + "TargetID": 123010, + "Directional": false + }, + { + "SourceID": 123013, + "TargetID": 123012, + "Directional": false + }, + { + "SourceID": 123016, + "TargetID": 123015, + "Directional": false + }, + { + "SourceID": 123019, + "TargetID": 123018, + "Directional": false + }, + { + "SourceID": 123020, + "TargetID": 123021, + "Directional": false + }, + { + "SourceID": 123022, + "TargetID": 123023, + "Directional": false + }, + { + "SourceID": 123024, + "TargetID": 123025, + "Directional": false + } + ] + }, + { + "ID": 4318, + "SourceStructureID": 6909, + "TargetStructureID": 7345, + "Label": "6909-7345 via Gap Junction from 121675 -> 56577, 122645 -> 39139, 122788 -> 122787", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121675, + "TargetID": 56577, + "Directional": false + }, + { + "SourceID": 122645, + "TargetID": 39139, + "Directional": false + }, + { + "SourceID": 122788, + "TargetID": 122787, + "Directional": false + } + ] + }, + { + "ID": 4319, + "SourceStructureID": 44338, + "TargetStructureID": 6909, + "Label": "44338-6909 via Gap Junction from 122978 -> 122661", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122978, + "TargetID": 122661, + "Directional": false + } + ] + }, + { + "ID": 4320, + "SourceStructureID": 122663, + "TargetStructureID": 6909, + "Label": "122663-6909 via Gap Junction from 122664 -> 122662", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122664, + "TargetID": 122662, + "Directional": false + } + ] + }, + { + "ID": 4321, + "SourceStructureID": 24401, + "TargetStructureID": 6912, + "Label": "24401-6912 via Gap Junction from 48016 -> 48018", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48016, + "TargetID": 48018, + "Directional": false + } + ] + }, + { + "ID": 4322, + "SourceStructureID": 26079, + "TargetStructureID": 6912, + "Label": "26079-6912 via Gap Junction from 48666 -> 48350, 48672 -> 121215, 121210 -> 51034", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48666, + "TargetID": 48350, + "Directional": false + }, + { + "SourceID": 48672, + "TargetID": 121215, + "Directional": false + }, + { + "SourceID": 121210, + "TargetID": 51034, + "Directional": false + } + ] + }, + { + "ID": 4323, + "SourceStructureID": 6912, + "TargetStructureID": 39862, + "Label": "6912-39862 via Gap Junction from 51026 -> 51210, 51133 -> 51178, 51209 -> 51027", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51026, + "TargetID": 51210, + "Directional": false + }, + { + "SourceID": 51133, + "TargetID": 51178, + "Directional": false + }, + { + "SourceID": 51209, + "TargetID": 51027, + "Directional": false + } + ] + }, + { + "ID": 4324, + "SourceStructureID": 6912, + "TargetStructureID": 51100, + "Label": "6912-51100 via Gap Junction from 51080 -> 51101", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51080, + "TargetID": 51101, + "Directional": false + } + ] + }, + { + "ID": 4325, + "SourceStructureID": 7114, + "TargetStructureID": 6958, + "Label": "7114-6958 via Gap Junction from 116682 -> 116677, 117151 -> 117150, 122901 -> 116838", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116682, + "TargetID": 116677, + "Directional": false + }, + { + "SourceID": 117151, + "TargetID": 117150, + "Directional": false + }, + { + "SourceID": 122901, + "TargetID": 116838, + "Directional": false + } + ] + }, + { + "ID": 4326, + "SourceStructureID": 8589, + "TargetStructureID": 6958, + "Label": "8589-6958 via Adherens from 70473 -> 70474, 71316 -> 71317", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70473, + "TargetID": 70474, + "Directional": false + }, + { + "SourceID": 71316, + "TargetID": 71317, + "Directional": false + } + ] + }, + { + "ID": 4327, + "SourceStructureID": 57169, + "TargetStructureID": 6958, + "Label": "57169-6958 via Gap Junction from 57173 -> 57175, 117083 -> 117082", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57173, + "TargetID": 57175, + "Directional": false + }, + { + "SourceID": 117083, + "TargetID": 117082, + "Directional": false + } + ] + }, + { + "ID": 4328, + "SourceStructureID": 116835, + "TargetStructureID": 6958, + "Label": "116835-6958 via Gap Junction from 116836 -> 116683", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116836, + "TargetID": 116683, + "Directional": false + } + ] + }, + { + "ID": 4329, + "SourceStructureID": 6958, + "TargetStructureID": 118087, + "Label": "6958-118087 via Unknown from 118089 -> 118090", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 118089, + "TargetID": 118090, + "Directional": false + } + ] + }, + { + "ID": 4330, + "SourceStructureID": 6961, + "TargetStructureID": 7279, + "Label": "6961-7279 via Gap Junction from 34731 -> 34730", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 34731, + "TargetID": 34730, + "Directional": false + } + ] + }, + { + "ID": 4331, + "SourceStructureID": 6965, + "TargetStructureID": 6965, + "Label": "6965-6965 via Gap Junction from 123029 -> 123030", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123029, + "TargetID": 123030, + "Directional": false + } + ] + }, + { + "ID": 4332, + "SourceStructureID": 7446, + "TargetStructureID": 6965, + "Label": "7446-6965 via Gap Junction from 64766 -> 121941, 118312 -> 121935, 118313 -> 121936, 122413 -> 122412, 123047 -> 123046, 123123 -> 123124", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 64766, + "TargetID": 121941, + "Directional": false + }, + { + "SourceID": 118312, + "TargetID": 121935, + "Directional": false + }, + { + "SourceID": 118313, + "TargetID": 121936, + "Directional": false + }, + { + "SourceID": 122413, + "TargetID": 122412, + "Directional": false + }, + { + "SourceID": 123047, + "TargetID": 123046, + "Directional": false + }, + { + "SourceID": 123123, + "TargetID": 123124, + "Directional": false + } + ] + }, + { + "ID": 4333, + "SourceStructureID": 6997, + "TargetStructureID": 8720, + "Label": "6997-8720 via Unknown from 136746 -> 136745", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136746, + "TargetID": 136745, + "Directional": false + } + ] + }, + { + "ID": 4334, + "SourceStructureID": 6997, + "TargetStructureID": 9693, + "Label": "6997-9693 via Touch from 136665 -> 136666", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 136665, + "TargetID": 136666, + "Directional": false + } + ] + }, + { + "ID": 4335, + "SourceStructureID": 6997, + "TargetStructureID": 19203, + "Label": "6997-19203 via Touch from 135818 -> 135819", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 135818, + "TargetID": 135819, + "Directional": false + } + ] + }, + { + "ID": 4336, + "SourceStructureID": 32654, + "TargetStructureID": 6997, + "Label": "32654-6997 via Gap Junction from 49278 -> 22249", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49278, + "TargetID": 22249, + "Directional": false + } + ] + }, + { + "ID": 4337, + "SourceStructureID": 32804, + "TargetStructureID": 6997, + "Label": "32804-6997 via Adherens from 136558 -> 136557", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136558, + "TargetID": 136557, + "Directional": false + } + ] + }, + { + "ID": 4338, + "SourceStructureID": 6997, + "TargetStructureID": 56486, + "Label": "6997-56486 via Unknown from 49246 -> 56487, 136765 -> 136242", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 49246, + "TargetID": 56487, + "Directional": false + }, + { + "SourceID": 136765, + "TargetID": 136242, + "Directional": false + } + ] + }, + { + "ID": 4339, + "SourceStructureID": 6997, + "TargetStructureID": 66958, + "Label": "6997-66958 via Adherens from 83029 -> 70071", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83029, + "TargetID": 70071, + "Directional": false + } + ] + }, + { + "ID": 4340, + "SourceStructureID": 6997, + "TargetStructureID": 66958, + "Label": "6997-66958 via Unknown from 136718 -> 136717", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136718, + "TargetID": 136717, + "Directional": false + } + ] + }, + { + "ID": 4341, + "SourceStructureID": 68286, + "TargetStructureID": 6997, + "Label": "68286-6997 via Adherens from 80651 -> 80650", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80651, + "TargetID": 80650, + "Directional": false + } + ] + }, + { + "ID": 4342, + "SourceStructureID": 6997, + "TargetStructureID": 68289, + "Label": "6997-68289 via Adherens from 80643 -> 80642", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80643, + "TargetID": 80642, + "Directional": false + } + ] + }, + { + "ID": 4343, + "SourceStructureID": 6997, + "TargetStructureID": 70014, + "Label": "6997-70014 via Unknown from 96052 -> 96051", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96052, + "TargetID": 96051, + "Directional": false + } + ] + }, + { + "ID": 4344, + "SourceStructureID": 6997, + "TargetStructureID": 70069, + "Label": "6997-70069 via Gap Junction from 83070 -> 83071", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 83070, + "TargetID": 83071, + "Directional": false + } + ] + }, + { + "ID": 4345, + "SourceStructureID": 78303, + "TargetStructureID": 6997, + "Label": "78303-6997 via Adherens from 136272 -> 136271", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136272, + "TargetID": 136271, + "Directional": false + } + ] + }, + { + "ID": 4346, + "SourceStructureID": 6997, + "TargetStructureID": 79916, + "Label": "6997-79916 via Adherens from 83116 -> 79919", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83116, + "TargetID": 79919, + "Directional": false + } + ] + }, + { + "ID": 4347, + "SourceStructureID": 79928, + "TargetStructureID": 6997, + "Label": "79928-6997 via Unknown from 83101 -> 83102", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83101, + "TargetID": 83102, + "Directional": false + } + ] + }, + { + "ID": 4348, + "SourceStructureID": 79937, + "TargetStructureID": 6997, + "Label": "79937-6997 via Adherens from 79938 -> 83103", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79938, + "TargetID": 83103, + "Directional": false + } + ] + }, + { + "ID": 4349, + "SourceStructureID": 6997, + "TargetStructureID": 79950, + "Label": "6997-79950 via Unknown from 83110 -> 79953", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83110, + "TargetID": 79953, + "Directional": false + } + ] + }, + { + "ID": 4350, + "SourceStructureID": 79962, + "TargetStructureID": 6997, + "Label": "79962-6997 via Adherens from 79963 -> 83092", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79963, + "TargetID": 83092, + "Directional": false + } + ] + }, + { + "ID": 4351, + "SourceStructureID": 6997, + "TargetStructureID": 79970, + "Label": "6997-79970 via Adherens from 83075 -> 79972", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83075, + "TargetID": 79972, + "Directional": false + } + ] + }, + { + "ID": 4352, + "SourceStructureID": 79981, + "TargetStructureID": 6997, + "Label": "79981-6997 via Unknown from 79982 -> 83074", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 79982, + "TargetID": 83074, + "Directional": false + } + ] + }, + { + "ID": 4353, + "SourceStructureID": 79986, + "TargetStructureID": 6997, + "Label": "79986-6997 via Unknown from 80012 -> 83087", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80012, + "TargetID": 83087, + "Directional": false + } + ] + }, + { + "ID": 4354, + "SourceStructureID": 6997, + "TargetStructureID": 79988, + "Label": "6997-79988 via Unknown from 83077 -> 79989", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83077, + "TargetID": 79989, + "Directional": false + } + ] + }, + { + "ID": 4355, + "SourceStructureID": 6997, + "TargetStructureID": 79993, + "Label": "6997-79993 via Unknown from 83083 -> 80005, 83084 -> 83093", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83083, + "TargetID": 80005, + "Directional": false + }, + { + "SourceID": 83084, + "TargetID": 83093, + "Directional": false + } + ] + }, + { + "ID": 4356, + "SourceStructureID": 6997, + "TargetStructureID": 80007, + "Label": "6997-80007 via Unknown from 83090 -> 80010", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83090, + "TargetID": 80010, + "Directional": false + } + ] + }, + { + "ID": 4357, + "SourceStructureID": 6997, + "TargetStructureID": 80008, + "Label": "6997-80008 via Unknown from 83090 -> 80009", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83090, + "TargetID": 80009, + "Directional": false + } + ] + }, + { + "ID": 4358, + "SourceStructureID": 6997, + "TargetStructureID": 80013, + "Label": "6997-80013 via Unknown from 83086 -> 80015", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83086, + "TargetID": 80015, + "Directional": false + } + ] + }, + { + "ID": 4359, + "SourceStructureID": 6997, + "TargetStructureID": 80039, + "Label": "6997-80039 via Unknown from 83028 -> 80040", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83028, + "TargetID": 80040, + "Directional": false + } + ] + }, + { + "ID": 4360, + "SourceStructureID": 6997, + "TargetStructureID": 80046, + "Label": "6997-80046 via Adherens from 83068 -> 80047", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83068, + "TargetID": 80047, + "Directional": false + } + ] + }, + { + "ID": 4361, + "SourceStructureID": 80049, + "TargetStructureID": 6997, + "Label": "80049-6997 via Unknown from 80050 -> 83022", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80050, + "TargetID": 83022, + "Directional": false + } + ] + }, + { + "ID": 4362, + "SourceStructureID": 6997, + "TargetStructureID": 80051, + "Label": "6997-80051 via Unknown from 83018 -> 80052", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83018, + "TargetID": 80052, + "Directional": false + } + ] + }, + { + "ID": 4363, + "SourceStructureID": 92331, + "TargetStructureID": 6997, + "Label": "92331-6997 via Unknown from 92332 -> 22273", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92332, + "TargetID": 22273, + "Directional": false + } + ] + }, + { + "ID": 4364, + "SourceStructureID": 6997, + "TargetStructureID": 95482, + "Label": "6997-95482 via Adherens from 95481 -> 95483", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 95481, + "TargetID": 95483, + "Directional": false + } + ] + }, + { + "ID": 4365, + "SourceStructureID": 6997, + "TargetStructureID": 95772, + "Label": "6997-95772 via Gap Junction from 95771 -> 95775", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 95771, + "TargetID": 95775, + "Directional": false + } + ] + }, + { + "ID": 4366, + "SourceStructureID": 6997, + "TargetStructureID": 95999, + "Label": "6997-95999 via Adherens from 136693 -> 136694", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136693, + "TargetID": 136694, + "Directional": false + } + ] + }, + { + "ID": 4367, + "SourceStructureID": 95999, + "TargetStructureID": 6997, + "Label": "95999-6997 via Gap Junction from 136638 -> 136639", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136638, + "TargetID": 136639, + "Directional": false + } + ] + }, + { + "ID": 4368, + "SourceStructureID": 6997, + "TargetStructureID": 95999, + "Label": "6997-95999 via Unknown from 136695 -> 136696, 136697 -> 136698", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136695, + "TargetID": 136696, + "Directional": false + }, + { + "SourceID": 136697, + "TargetID": 136698, + "Directional": false + } + ] + }, + { + "ID": 4369, + "SourceStructureID": 96015, + "TargetStructureID": 6997, + "Label": "96015-6997 via Unknown from 96016 -> 96014", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96016, + "TargetID": 96014, + "Directional": false + } + ] + }, + { + "ID": 4370, + "SourceStructureID": 96036, + "TargetStructureID": 6997, + "Label": "96036-6997 via Unknown from 96038 -> 96035", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96038, + "TargetID": 96035, + "Directional": false + } + ] + }, + { + "ID": 4371, + "SourceStructureID": 6997, + "TargetStructureID": 101437, + "Label": "6997-101437 via Unknown from 136281 -> 136282", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136281, + "TargetID": 136282, + "Directional": false + } + ] + }, + { + "ID": 4372, + "SourceStructureID": 136659, + "TargetStructureID": 6997, + "Label": "136659-6997 via Gap Junction from 136660 -> 133251", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136660, + "TargetID": 133251, + "Directional": false + } + ] + }, + { + "ID": 4373, + "SourceStructureID": 6997, + "TargetStructureID": 136674, + "Label": "6997-136674 via Adherens from 136780 -> 136779", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136780, + "TargetID": 136779, + "Directional": false + } + ] + }, + { + "ID": 4374, + "SourceStructureID": 136674, + "TargetStructureID": 6997, + "Label": "136674-6997 via Gap Junction from 136778 -> 56995", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136778, + "TargetID": 56995, + "Directional": false + } + ] + }, + { + "ID": 4375, + "SourceStructureID": 136677, + "TargetStructureID": 6997, + "Label": "136677-6997 via Adherens from 136686 -> 136685", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 136686, + "TargetID": 136685, + "Directional": false + } + ] + }, + { + "ID": 4376, + "SourceStructureID": 136677, + "TargetStructureID": 6997, + "Label": "136677-6997 via Gap Junction from 136684 -> 136595", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136684, + "TargetID": 136595, + "Directional": false + } + ] + }, + { + "ID": 4377, + "SourceStructureID": 6997, + "TargetStructureID": 136688, + "Label": "6997-136688 via Unknown from 136623 -> 136793", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136623, + "TargetID": 136793, + "Directional": false + } + ] + }, + { + "ID": 4378, + "SourceStructureID": 136742, + "TargetStructureID": 6997, + "Label": "136742-6997 via Unknown from 136840 -> 22189", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136840, + "TargetID": 22189, + "Directional": false + } + ] + }, + { + "ID": 4379, + "SourceStructureID": 136748, + "TargetStructureID": 6997, + "Label": "136748-6997 via Unknown from 136749 -> 22287", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136749, + "TargetID": 22287, + "Directional": false + } + ] + }, + { + "ID": 4380, + "SourceStructureID": 136759, + "TargetStructureID": 6997, + "Label": "136759-6997 via Unknown from 136761 -> 57004", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136761, + "TargetID": 57004, + "Directional": false + } + ] + }, + { + "ID": 4381, + "SourceStructureID": 136766, + "TargetStructureID": 6997, + "Label": "136766-6997 via Unknown from 136767 -> 63928", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 136767, + "TargetID": 63928, + "Directional": false + } + ] + }, + { + "ID": 4382, + "SourceStructureID": 6997, + "TargetStructureID": 136822, + "Label": "6997-136822 via Gap Junction from 63927 -> 136827", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63927, + "TargetID": 136827, + "Directional": false + } + ] + }, + { + "ID": 4383, + "SourceStructureID": 7024, + "TargetStructureID": 7024, + "Label": "7024-7024 via Gap Junction from 54971 -> 40162, 93878 -> 93874, 114897 -> 114898, 136215 -> 136214", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54971, + "TargetID": 40162, + "Directional": false + }, + { + "SourceID": 93878, + "TargetID": 93874, + "Directional": false + }, + { + "SourceID": 114897, + "TargetID": 114898, + "Directional": false + }, + { + "SourceID": 136215, + "TargetID": 136214, + "Directional": false + } + ] + }, + { + "ID": 4384, + "SourceStructureID": 8037, + "TargetStructureID": 7024, + "Label": "8037-7024 via Gap Junction from 10907 -> 10906, 20235 -> 20234, 43563 -> 43564, 43566 -> 43565, 47338 -> 47335, 113487 -> 113486, 136199 -> 106964", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 10907, + "TargetID": 10906, + "Directional": false + }, + { + "SourceID": 20235, + "TargetID": 20234, + "Directional": false + }, + { + "SourceID": 43563, + "TargetID": 43564, + "Directional": false + }, + { + "SourceID": 43566, + "TargetID": 43565, + "Directional": false + }, + { + "SourceID": 47338, + "TargetID": 47335, + "Directional": false + }, + { + "SourceID": 113487, + "TargetID": 113486, + "Directional": false + }, + { + "SourceID": 136199, + "TargetID": 106964, + "Directional": false + } + ] + }, + { + "ID": 4385, + "SourceStructureID": 9769, + "TargetStructureID": 7024, + "Label": "9769-7024 via Adherens from 20239 -> 20238, 20241 -> 20240, 63404 -> 63405, 93900 -> 93899, 113728 -> 113729, 113730 -> 113731, 113738 -> 113739, 113741 -> 113742, 114133 -> 114135, 114330 -> 114329, 114333 -> 114332, 114338 -> 114337, 114369 -> 114368", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 20239, + "TargetID": 20238, + "Directional": false + }, + { + "SourceID": 20241, + "TargetID": 20240, + "Directional": false + }, + { + "SourceID": 63404, + "TargetID": 63405, + "Directional": false + }, + { + "SourceID": 93900, + "TargetID": 93899, + "Directional": false + }, + { + "SourceID": 113728, + "TargetID": 113729, + "Directional": false + }, + { + "SourceID": 113730, + "TargetID": 113731, + "Directional": false + }, + { + "SourceID": 113738, + "TargetID": 113739, + "Directional": false + }, + { + "SourceID": 113741, + "TargetID": 113742, + "Directional": false + }, + { + "SourceID": 114133, + "TargetID": 114135, + "Directional": false + }, + { + "SourceID": 114330, + "TargetID": 114329, + "Directional": false + }, + { + "SourceID": 114333, + "TargetID": 114332, + "Directional": false + }, + { + "SourceID": 114338, + "TargetID": 114337, + "Directional": false + }, + { + "SourceID": 114369, + "TargetID": 114368, + "Directional": false + } + ] + }, + { + "ID": 4386, + "SourceStructureID": 7024, + "TargetStructureID": 9769, + "Label": "7024-9769 via Unknown from 113732 -> 113733", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 113732, + "TargetID": 113733, + "Directional": false + } + ] + }, + { + "ID": 4387, + "SourceStructureID": 20136, + "TargetStructureID": 7024, + "Label": "20136-7024 via Gap Junction from 93849 -> 93848, 93854 -> 93850", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93849, + "TargetID": 93848, + "Directional": false + }, + { + "SourceID": 93854, + "TargetID": 93850, + "Directional": false + } + ] + }, + { + "ID": 4388, + "SourceStructureID": 31161, + "TargetStructureID": 7024, + "Label": "31161-7024 via Unknown from 106566 -> 106567", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 106566, + "TargetID": 106567, + "Directional": false + } + ] + }, + { + "ID": 4389, + "SourceStructureID": 46388, + "TargetStructureID": 7024, + "Label": "46388-7024 via Adherens from 148227 -> 148226", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148227, + "TargetID": 148226, + "Directional": false + } + ] + }, + { + "ID": 4390, + "SourceStructureID": 46388, + "TargetStructureID": 7024, + "Label": "46388-7024 via Gap Junction from 46428 -> 46427, 46466 -> 46465, 46610 -> 46622, 121379 -> 121378, 121426 -> 121425, 148228 -> 93884", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46428, + "TargetID": 46427, + "Directional": false + }, + { + "SourceID": 46466, + "TargetID": 46465, + "Directional": false + }, + { + "SourceID": 46610, + "TargetID": 46622, + "Directional": false + }, + { + "SourceID": 121379, + "TargetID": 121378, + "Directional": false + }, + { + "SourceID": 121426, + "TargetID": 121425, + "Directional": false + }, + { + "SourceID": 148228, + "TargetID": 93884, + "Directional": false + } + ] + }, + { + "ID": 4391, + "SourceStructureID": 7024, + "TargetStructureID": 48516, + "Label": "7024-48516 via Gap Junction from 48576 -> 48569, 93999 -> 136225", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48576, + "TargetID": 48569, + "Directional": false + }, + { + "SourceID": 93999, + "TargetID": 136225, + "Directional": false + } + ] + }, + { + "ID": 4392, + "SourceStructureID": 7024, + "TargetStructureID": 87294, + "Label": "7024-87294 via Adherens from 114152 -> 114153", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 114152, + "TargetID": 114153, + "Directional": false + } + ] + }, + { + "ID": 4393, + "SourceStructureID": 93881, + "TargetStructureID": 7024, + "Label": "93881-7024 via Gap Junction from 93882 -> 93880", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93882, + "TargetID": 93880, + "Directional": false + } + ] + }, + { + "ID": 4394, + "SourceStructureID": 118258, + "TargetStructureID": 7024, + "Label": "118258-7024 via Gap Junction from 118259 -> 118257", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118259, + "TargetID": 118257, + "Directional": false + } + ] + }, + { + "ID": 4395, + "SourceStructureID": 8037, + "TargetStructureID": 7040, + "Label": "8037-7040 via Touch from 136166 -> 136165", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 136166, + "TargetID": 136165, + "Directional": false + } + ] + }, + { + "ID": 4396, + "SourceStructureID": 8040, + "TargetStructureID": 7040, + "Label": "8040-7040 via Gap Junction from 93736 -> 93735, 93739 -> 93738, 93747 -> 93742, 120820 -> 93741", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93736, + "TargetID": 93735, + "Directional": false + }, + { + "SourceID": 93739, + "TargetID": 93738, + "Directional": false + }, + { + "SourceID": 93747, + "TargetID": 93742, + "Directional": false + }, + { + "SourceID": 120820, + "TargetID": 93741, + "Directional": false + } + ] + }, + { + "ID": 4397, + "SourceStructureID": 8040, + "TargetStructureID": 7040, + "Label": "8040-7040 via Unknown from 93677 -> 93676", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93677, + "TargetID": 93676, + "Directional": false + } + ] + }, + { + "ID": 4398, + "SourceStructureID": 64939, + "TargetStructureID": 7040, + "Label": "64939-7040 via Gap Junction from 93653 -> 93652", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93653, + "TargetID": 93652, + "Directional": false + } + ] + }, + { + "ID": 4399, + "SourceStructureID": 64939, + "TargetStructureID": 7040, + "Label": "64939-7040 via Touch from 93659 -> 93660", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 93659, + "TargetID": 93660, + "Directional": false + } + ] + }, + { + "ID": 4400, + "SourceStructureID": 7040, + "TargetStructureID": 93647, + "Label": "7040-93647 via Adherens from 93651 -> 93650", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93651, + "TargetID": 93650, + "Directional": false + } + ] + }, + { + "ID": 4401, + "SourceStructureID": 93665, + "TargetStructureID": 7040, + "Label": "93665-7040 via Adherens from 93669 -> 93668", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93669, + "TargetID": 93668, + "Directional": false + } + ] + }, + { + "ID": 4402, + "SourceStructureID": 93673, + "TargetStructureID": 7040, + "Label": "93673-7040 via Adherens from 93674 -> 93672", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93674, + "TargetID": 93672, + "Directional": false + } + ] + }, + { + "ID": 4403, + "SourceStructureID": 93679, + "TargetStructureID": 7040, + "Label": "93679-7040 via Gap Junction from 93680 -> 93678", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93680, + "TargetID": 93678, + "Directional": false + } + ] + }, + { + "ID": 4404, + "SourceStructureID": 93685, + "TargetStructureID": 7040, + "Label": "93685-7040 via Unknown from 93686 -> 93684", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93686, + "TargetID": 93684, + "Directional": false + } + ] + }, + { + "ID": 4405, + "SourceStructureID": 7040, + "TargetStructureID": 93719, + "Label": "7040-93719 via Gap Junction from 93718 -> 93720", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93718, + "TargetID": 93720, + "Directional": false + } + ] + }, + { + "ID": 4406, + "SourceStructureID": 7050, + "TargetStructureID": 7043, + "Label": "7050-7043 via Gap Junction from 24883 -> 81869, 118857 -> 118856, 131446 -> 118882", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24883, + "TargetID": 81869, + "Directional": false + }, + { + "SourceID": 118857, + "TargetID": 118856, + "Directional": false + }, + { + "SourceID": 131446, + "TargetID": 118882, + "Directional": false + } + ] + }, + { + "ID": 4407, + "SourceStructureID": 7043, + "TargetStructureID": 8037, + "Label": "7043-8037 via Gap Junction from 37729 -> 37730, 118753 -> 118752, 118790 -> 118789, 118812 -> 118809", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 37729, + "TargetID": 37730, + "Directional": false + }, + { + "SourceID": 118753, + "TargetID": 118752, + "Directional": false + }, + { + "SourceID": 118790, + "TargetID": 118789, + "Directional": false + }, + { + "SourceID": 118812, + "TargetID": 118809, + "Directional": false + } + ] + }, + { + "ID": 4408, + "SourceStructureID": 7043, + "TargetStructureID": 8038, + "Label": "7043-8038 via Gap Junction from 89290 -> 68951", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89290, + "TargetID": 68951, + "Directional": false + } + ] + }, + { + "ID": 4409, + "SourceStructureID": 7043, + "TargetStructureID": 12897, + "Label": "7043-12897 via Gap Junction from 131458 -> 131459", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131458, + "TargetID": 131459, + "Directional": false + } + ] + }, + { + "ID": 4410, + "SourceStructureID": 7043, + "TargetStructureID": 56653, + "Label": "7043-56653 via Gap Junction from 118860 -> 118861", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118860, + "TargetID": 118861, + "Directional": false + } + ] + }, + { + "ID": 4411, + "SourceStructureID": 89279, + "TargetStructureID": 7043, + "Label": "89279-7043 via Gap Junction from 89288 -> 89277", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89288, + "TargetID": 89277, + "Directional": false + } + ] + }, + { + "ID": 4412, + "SourceStructureID": 118682, + "TargetStructureID": 7043, + "Label": "118682-7043 via Gap Junction from 118684 -> 118572", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118684, + "TargetID": 118572, + "Directional": false + } + ] + }, + { + "ID": 4413, + "SourceStructureID": 7043, + "TargetStructureID": 118736, + "Label": "7043-118736 via Gap Junction from 118725 -> 118737, 118738 -> 118728", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118725, + "TargetID": 118737, + "Directional": false + }, + { + "SourceID": 118738, + "TargetID": 118728, + "Directional": false + } + ] + }, + { + "ID": 4414, + "SourceStructureID": 7050, + "TargetStructureID": 8037, + "Label": "7050-8037 via Gap Junction from 29778 -> 29779, 32398 -> 32390, 68909 -> 14324, 68911 -> 68910", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29778, + "TargetID": 29779, + "Directional": false + }, + { + "SourceID": 32398, + "TargetID": 32390, + "Directional": false + }, + { + "SourceID": 68909, + "TargetID": 14324, + "Directional": false + }, + { + "SourceID": 68911, + "TargetID": 68910, + "Directional": false + } + ] + }, + { + "ID": 4415, + "SourceStructureID": 8038, + "TargetStructureID": 7050, + "Label": "8038-7050 via Gap Junction from 68939 -> 68904, 113059 -> 113056", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 68939, + "TargetID": 68904, + "Directional": false + }, + { + "SourceID": 113059, + "TargetID": 113056, + "Directional": false + } + ] + }, + { + "ID": 4416, + "SourceStructureID": 8040, + "TargetStructureID": 7050, + "Label": "8040-7050 via Gap Junction from 35465 -> 24878", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 35465, + "TargetID": 24878, + "Directional": false + } + ] + }, + { + "ID": 4417, + "SourceStructureID": 12897, + "TargetStructureID": 7050, + "Label": "12897-7050 via Gap Junction from 24679 -> 19501, 24727 -> 24580, 24745 -> 24713, 24845 -> 24844, 24846 -> 24843, 24875 -> 24874, 29658 -> 29657", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24679, + "TargetID": 19501, + "Directional": false + }, + { + "SourceID": 24727, + "TargetID": 24580, + "Directional": false + }, + { + "SourceID": 24745, + "TargetID": 24713, + "Directional": false + }, + { + "SourceID": 24845, + "TargetID": 24844, + "Directional": false + }, + { + "SourceID": 24846, + "TargetID": 24843, + "Directional": false + }, + { + "SourceID": 24875, + "TargetID": 24874, + "Directional": false + }, + { + "SourceID": 29658, + "TargetID": 29657, + "Directional": false + } + ] + }, + { + "ID": 4418, + "SourceStructureID": 15796, + "TargetStructureID": 7050, + "Label": "15796-7050 via Touch from 55669 -> 55670", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 55669, + "TargetID": 55670, + "Directional": false + } + ] + }, + { + "ID": 4419, + "SourceStructureID": 48516, + "TargetStructureID": 7050, + "Label": "48516-7050 via Gap Junction from 93789 -> 24880", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93789, + "TargetID": 24880, + "Directional": false + } + ] + }, + { + "ID": 4420, + "SourceStructureID": 7050, + "TargetStructureID": 63089, + "Label": "7050-63089 via Gap Junction from 63092 -> 63093", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 63092, + "TargetID": 63093, + "Directional": false + } + ] + }, + { + "ID": 4421, + "SourceStructureID": 8037, + "TargetStructureID": 7054, + "Label": "8037-7054 via Adherens from 159576 -> 159575", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159576, + "TargetID": 159575, + "Directional": false + } + ] + }, + { + "ID": 4422, + "SourceStructureID": 7054, + "TargetStructureID": 10897, + "Label": "7054-10897 via Adherens from 159646 -> 159647", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159646, + "TargetID": 159647, + "Directional": false + } + ] + }, + { + "ID": 4423, + "SourceStructureID": 7054, + "TargetStructureID": 67890, + "Label": "7054-67890 via Adherens from 159605 -> 159622", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159605, + "TargetID": 159622, + "Directional": false + } + ] + }, + { + "ID": 4424, + "SourceStructureID": 7147, + "TargetStructureID": 7113, + "Label": "7147-7113 via Gap Junction from 29720 -> 29719, 29724 -> 29718", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 29720, + "TargetID": 29719, + "Directional": false + }, + { + "SourceID": 29724, + "TargetID": 29718, + "Directional": false + } + ] + }, + { + "ID": 4425, + "SourceStructureID": 12203, + "TargetStructureID": 7113, + "Label": "12203-7113 via Touch from 31369 -> 31370", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 31369, + "TargetID": 31370, + "Directional": false + } + ] + }, + { + "ID": 4426, + "SourceStructureID": 15977, + "TargetStructureID": 7114, + "Label": "15977-7114 via Gap Junction from 33950 -> 20437, 33954 -> 26611, 135959 -> 135960, 135962 -> 135963", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 33950, + "TargetID": 20437, + "Directional": false + }, + { + "SourceID": 33954, + "TargetID": 26611, + "Directional": false + }, + { + "SourceID": 135959, + "TargetID": 135960, + "Directional": false + }, + { + "SourceID": 135962, + "TargetID": 135963, + "Directional": false + } + ] + }, + { + "ID": 4427, + "SourceStructureID": 7114, + "TargetStructureID": 88139, + "Label": "7114-88139 via Adherens from 88142 -> 88141", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88142, + "TargetID": 88141, + "Directional": false + } + ] + }, + { + "ID": 4428, + "SourceStructureID": 7114, + "TargetStructureID": 115118, + "Label": "7114-115118 via Gap Junction from 124174 -> 124225", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 124174, + "TargetID": 124225, + "Directional": false + } + ] + }, + { + "ID": 4429, + "SourceStructureID": 12897, + "TargetStructureID": 7139, + "Label": "12897-7139 via Touch from 24851 -> 24850", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 24851, + "TargetID": 24850, + "Directional": false + } + ] + }, + { + "ID": 4430, + "SourceStructureID": 7147, + "TargetStructureID": 9769, + "Label": "7147-9769 via Touch from 52594 -> 52593", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 52594, + "TargetID": 52593, + "Directional": false + } + ] + }, + { + "ID": 4431, + "SourceStructureID": 7147, + "TargetStructureID": 12897, + "Label": "7147-12897 via Gap Junction from 24636 -> 24635, 24639 -> 24638, 92806 -> 92808, 134415 -> 134412", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24636, + "TargetID": 24635, + "Directional": false + }, + { + "SourceID": 24639, + "TargetID": 24638, + "Directional": false + }, + { + "SourceID": 92806, + "TargetID": 92808, + "Directional": false + }, + { + "SourceID": 134415, + "TargetID": 134412, + "Directional": false + } + ] + }, + { + "ID": 4432, + "SourceStructureID": 7147, + "TargetStructureID": 16026, + "Label": "7147-16026 via Gap Junction from 91211 -> 91209, 91246 -> 91245", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91211, + "TargetID": 91209, + "Directional": false + }, + { + "SourceID": 91246, + "TargetID": 91245, + "Directional": false + } + ] + }, + { + "ID": 4433, + "SourceStructureID": 73722, + "TargetStructureID": 7147, + "Label": "73722-7147 via Gap Junction from 112281 -> 16067", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 112281, + "TargetID": 16067, + "Directional": false + } + ] + }, + { + "ID": 4434, + "SourceStructureID": 91207, + "TargetStructureID": 7147, + "Label": "91207-7147 via Gap Junction from 91229 -> 91228", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91229, + "TargetID": 91228, + "Directional": false + } + ] + }, + { + "ID": 4435, + "SourceStructureID": 7147, + "TargetStructureID": 122849, + "Label": "7147-122849 via Gap Junction from 130525 -> 130524", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 130525, + "TargetID": 130524, + "Directional": false + } + ] + }, + { + "ID": 4436, + "SourceStructureID": 7149, + "TargetStructureID": 15976, + "Label": "7149-15976 via Gap Junction from 57151 -> 36042, 93346 -> 93345, 93363 -> 93361, 121767 -> 93302", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57151, + "TargetID": 36042, + "Directional": false + }, + { + "SourceID": 93346, + "TargetID": 93345, + "Directional": false + }, + { + "SourceID": 93363, + "TargetID": 93361, + "Directional": false + }, + { + "SourceID": 121767, + "TargetID": 93302, + "Directional": false + } + ] + }, + { + "ID": 4437, + "SourceStructureID": 7149, + "TargetStructureID": 15976, + "Label": "7149-15976 via Unknown from 93349 -> 93348, 93612 -> 93611", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93349, + "TargetID": 93348, + "Directional": false + }, + { + "SourceID": 93612, + "TargetID": 93611, + "Directional": false + } + ] + }, + { + "ID": 4438, + "SourceStructureID": 7149, + "TargetStructureID": 121823, + "Label": "7149-121823 via Gap Junction from 121822 -> 121824", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121822, + "TargetID": 121824, + "Directional": false + } + ] + }, + { + "ID": 4439, + "SourceStructureID": 121827, + "TargetStructureID": 7149, + "Label": "121827-7149 via Gap Junction from 121828 -> 121826", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121828, + "TargetID": 121826, + "Directional": false + } + ] + }, + { + "ID": 4440, + "SourceStructureID": 7468, + "TargetStructureID": 7157, + "Label": "7468-7157 via Adherens from 31751 -> 31750", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 31751, + "TargetID": 31750, + "Directional": false + } + ] + }, + { + "ID": 4441, + "SourceStructureID": 7468, + "TargetStructureID": 7157, + "Label": "7468-7157 via Gap Junction from 31753 -> 31752", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 31753, + "TargetID": 31752, + "Directional": false + } + ] + }, + { + "ID": 4442, + "SourceStructureID": 7157, + "TargetStructureID": 33588, + "Label": "7157-33588 via Adherens from 33596 -> 33595", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 33596, + "TargetID": 33595, + "Directional": false + } + ] + }, + { + "ID": 4443, + "SourceStructureID": 37295, + "TargetStructureID": 7157, + "Label": "37295-7157 via Gap Junction from 37301 -> 37302", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 37301, + "TargetID": 37302, + "Directional": false + } + ] + }, + { + "ID": 4444, + "SourceStructureID": 7157, + "TargetStructureID": 55403, + "Label": "7157-55403 via Adherens from 55442 -> 55441", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 55442, + "TargetID": 55441, + "Directional": false + } + ] + }, + { + "ID": 4445, + "SourceStructureID": 87667, + "TargetStructureID": 7157, + "Label": "87667-7157 via Gap Junction from 87676 -> 87675", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 87676, + "TargetID": 87675, + "Directional": false + } + ] + }, + { + "ID": 4446, + "SourceStructureID": 7188, + "TargetStructureID": 19571, + "Label": "7188-19571 via Adherens from 8522 -> 22717, 22719 -> 8529, 22722 -> 22721", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 8522, + "TargetID": 22717, + "Directional": false + }, + { + "SourceID": 22719, + "TargetID": 8529, + "Directional": false + }, + { + "SourceID": 22722, + "TargetID": 22721, + "Directional": false + } + ] + }, + { + "ID": 4447, + "SourceStructureID": 25155, + "TargetStructureID": 7225, + "Label": "25155-7225 via Gap Junction from 25177 -> 25176", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 25177, + "TargetID": 25176, + "Directional": false + } + ] + }, + { + "ID": 4448, + "SourceStructureID": 38245, + "TargetStructureID": 7225, + "Label": "38245-7225 via Gap Junction from 39165 -> 39167", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 39165, + "TargetID": 39167, + "Directional": false + } + ] + }, + { + "ID": 4449, + "SourceStructureID": 7231, + "TargetStructureID": 7231, + "Label": "7231-7231 via Adherens from 117033 -> 117032", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 117033, + "TargetID": 117032, + "Directional": false + } + ] + }, + { + "ID": 4450, + "SourceStructureID": 7231, + "TargetStructureID": 15977, + "Label": "7231-15977 via Adherens from 116989 -> 116988", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116989, + "TargetID": 116988, + "Directional": false + } + ] + }, + { + "ID": 4451, + "SourceStructureID": 7231, + "TargetStructureID": 15977, + "Label": "7231-15977 via Gap Junction from 116965 -> 116987", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116965, + "TargetID": 116987, + "Directional": false + } + ] + }, + { + "ID": 4452, + "SourceStructureID": 7231, + "TargetStructureID": 15977, + "Label": "7231-15977 via Unknown from 117022 -> 117021", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117022, + "TargetID": 117021, + "Directional": false + } + ] + }, + { + "ID": 4453, + "SourceStructureID": 7279, + "TargetStructureID": 117112, + "Label": "7279-117112 via Gap Junction from 123521 -> 123520", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123521, + "TargetID": 123520, + "Directional": false + } + ] + }, + { + "ID": 4454, + "SourceStructureID": 7346, + "TargetStructureID": 7346, + "Label": "7346-7346 via Gap Junction from 43864 -> 43866, 44122 -> 43882, 45423 -> 45422", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 43864, + "TargetID": 43866, + "Directional": false + }, + { + "SourceID": 44122, + "TargetID": 43882, + "Directional": false + }, + { + "SourceID": 45423, + "TargetID": 45422, + "Directional": false + } + ] + }, + { + "ID": 4455, + "SourceStructureID": 7880, + "TargetStructureID": 7346, + "Label": "7880-7346 via Gap Junction from 45190 -> 45139, 45307 -> 45308", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45190, + "TargetID": 45139, + "Directional": false + }, + { + "SourceID": 45307, + "TargetID": 45308, + "Directional": false + } + ] + }, + { + "ID": 4456, + "SourceStructureID": 11066, + "TargetStructureID": 7346, + "Label": "11066-7346 via Gap Junction from 43951 -> 43950", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 43951, + "TargetID": 43950, + "Directional": false + } + ] + }, + { + "ID": 4457, + "SourceStructureID": 7346, + "TargetStructureID": 44095, + "Label": "7346-44095 via Gap Junction from 45415 -> 44097", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45415, + "TargetID": 44097, + "Directional": false + } + ] + }, + { + "ID": 4458, + "SourceStructureID": 7346, + "TargetStructureID": 44117, + "Label": "7346-44117 via Gap Junction from 44116 -> 44118", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 44116, + "TargetID": 44118, + "Directional": false + } + ] + }, + { + "ID": 4459, + "SourceStructureID": 158538, + "TargetStructureID": 7362, + "Label": "158538-7362 via Adherens from 158539 -> 117294", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 158539, + "TargetID": 117294, + "Directional": false + } + ] + }, + { + "ID": 4460, + "SourceStructureID": 31710, + "TargetStructureID": 7468, + "Label": "31710-7468 via Gap Junction from 121299 -> 121298, 121302 -> 121301", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121299, + "TargetID": 121298, + "Directional": false + }, + { + "SourceID": 121302, + "TargetID": 121301, + "Directional": false + } + ] + }, + { + "ID": 4461, + "SourceStructureID": 82677, + "TargetStructureID": 7564, + "Label": "82677-7564 via Gap Junction from 114626 -> 29639", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 114626, + "TargetID": 29639, + "Directional": false + } + ] + }, + { + "ID": 4462, + "SourceStructureID": 7568, + "TargetStructureID": 10945, + "Label": "7568-10945 via Adherens from 27045 -> 27046", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 27045, + "TargetID": 27046, + "Directional": false + } + ] + }, + { + "ID": 4463, + "SourceStructureID": 137159, + "TargetStructureID": 7568, + "Label": "137159-7568 via Adherens from 147206 -> 27082", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 147206, + "TargetID": 27082, + "Directional": false + } + ] + }, + { + "ID": 4464, + "SourceStructureID": 7576, + "TargetStructureID": 7576, + "Label": "7576-7576 via Adherens from 54974 -> 54973, 55002 -> 55001, 55089 -> 55090", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54974, + "TargetID": 54973, + "Directional": false + }, + { + "SourceID": 55002, + "TargetID": 55001, + "Directional": false + }, + { + "SourceID": 55089, + "TargetID": 55090, + "Directional": false + } + ] + }, + { + "ID": 4465, + "SourceStructureID": 7576, + "TargetStructureID": 54913, + "Label": "7576-54913 via Gap Junction from 55059 -> 55060", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 55059, + "TargetID": 55060, + "Directional": false + } + ] + }, + { + "ID": 4466, + "SourceStructureID": 135295, + "TargetStructureID": 7587, + "Label": "135295-7587 via Gap Junction from 135296 -> 135294", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 135296, + "TargetID": 135294, + "Directional": false + } + ] + }, + { + "ID": 4467, + "SourceStructureID": 9769, + "TargetStructureID": 7594, + "Label": "9769-7594 via Adherens from 46856 -> 46855", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 46856, + "TargetID": 46855, + "Directional": false + } + ] + }, + { + "ID": 4468, + "SourceStructureID": 7594, + "TargetStructureID": 9769, + "Label": "7594-9769 via Touch from 52408 -> 52407", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 52408, + "TargetID": 52407, + "Directional": false + } + ] + }, + { + "ID": 4469, + "SourceStructureID": 7850, + "TargetStructureID": 68153, + "Label": "7850-68153 via Adherens from 70037 -> 70036", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70037, + "TargetID": 70036, + "Directional": false + } + ] + }, + { + "ID": 4470, + "SourceStructureID": 7859, + "TargetStructureID": 9787, + "Label": "7859-9787 via Gap Junction from 84682 -> 84683, 84684 -> 56330, 84685 -> 56330", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 84682, + "TargetID": 84683, + "Directional": false + }, + { + "SourceID": 84684, + "TargetID": 56330, + "Directional": false + }, + { + "SourceID": 84685, + "TargetID": 56330, + "Directional": false + } + ] + }, + { + "ID": 4471, + "SourceStructureID": 28950, + "TargetStructureID": 7859, + "Label": "28950-7859 via Gap Junction from 84729 -> 84728", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 84729, + "TargetID": 84728, + "Directional": false + } + ] + }, + { + "ID": 4472, + "SourceStructureID": 64665, + "TargetStructureID": 7859, + "Label": "64665-7859 via Adherens from 64666 -> 64663", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64666, + "TargetID": 64663, + "Directional": false + } + ] + }, + { + "ID": 4473, + "SourceStructureID": 84825, + "TargetStructureID": 7859, + "Label": "84825-7859 via Touch from 84826 -> 84824", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 84826, + "TargetID": 84824, + "Directional": false + } + ] + }, + { + "ID": 4474, + "SourceStructureID": 7861, + "TargetStructureID": 52152, + "Label": "7861-52152 via Gap Junction from 52153 -> 52154", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 52153, + "TargetID": 52154, + "Directional": false + } + ] + }, + { + "ID": 4475, + "SourceStructureID": 7861, + "TargetStructureID": 82677, + "Label": "7861-82677 via Adherens from 84070 -> 84076", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84070, + "TargetID": 84076, + "Directional": false + } + ] + }, + { + "ID": 4476, + "SourceStructureID": 7861, + "TargetStructureID": 82677, + "Label": "7861-82677 via Gap Junction from 61750 -> 114622, 84016 -> 61749, 84072 -> 84071, 114624 -> 114623, 114638 -> 114637, 118006 -> 91495", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 61750, + "TargetID": 114622, + "Directional": false + }, + { + "SourceID": 84016, + "TargetID": 61749, + "Directional": false + }, + { + "SourceID": 84072, + "TargetID": 84071, + "Directional": false + }, + { + "SourceID": 114624, + "TargetID": 114623, + "Directional": false + }, + { + "SourceID": 114638, + "TargetID": 114637, + "Directional": false + }, + { + "SourceID": 118006, + "TargetID": 91495, + "Directional": false + } + ] + }, + { + "ID": 4477, + "SourceStructureID": 7861, + "TargetStructureID": 99639, + "Label": "7861-99639 via Gap Junction from 121015 -> 101273", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121015, + "TargetID": 101273, + "Directional": false + } + ] + }, + { + "ID": 4478, + "SourceStructureID": 7861, + "TargetStructureID": 117990, + "Label": "7861-117990 via Gap Junction from 117997 -> 117996", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117997, + "TargetID": 117996, + "Directional": false + } + ] + }, + { + "ID": 4479, + "SourceStructureID": 122415, + "TargetStructureID": 7861, + "Label": "122415-7861 via Gap Junction from 122416 -> 122414", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122416, + "TargetID": 122414, + "Directional": false + } + ] + }, + { + "ID": 4480, + "SourceStructureID": 7861, + "TargetStructureID": 122420, + "Label": "7861-122420 via Gap Junction from 122419 -> 122421", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122419, + "TargetID": 122421, + "Directional": false + } + ] + }, + { + "ID": 4481, + "SourceStructureID": 122424, + "TargetStructureID": 7861, + "Label": "122424-7861 via Gap Junction from 122425 -> 122423", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122425, + "TargetID": 122423, + "Directional": false + } + ] + }, + { + "ID": 4482, + "SourceStructureID": 7861, + "TargetStructureID": 137070, + "Label": "7861-137070 via Adherens from 137072 -> 137071", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 137072, + "TargetID": 137071, + "Directional": false + } + ] + }, + { + "ID": 4483, + "SourceStructureID": 8033, + "TargetStructureID": 9769, + "Label": "8033-9769 via Touch from 29922 -> 29921", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 29922, + "TargetID": 29921, + "Directional": false + } + ] + }, + { + "ID": 4484, + "SourceStructureID": 66111, + "TargetStructureID": 8033, + "Label": "66111-8033 via Adherens from 68590 -> 68591", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68590, + "TargetID": 68591, + "Directional": false + } + ] + }, + { + "ID": 4485, + "SourceStructureID": 8038, + "TargetStructureID": 8037, + "Label": "8038-8037 via Gap Junction from 68971 -> 68970, 136200 -> 68925", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 68971, + "TargetID": 68970, + "Directional": false + }, + { + "SourceID": 136200, + "TargetID": 68925, + "Directional": false + } + ] + }, + { + "ID": 4486, + "SourceStructureID": 9693, + "TargetStructureID": 8037, + "Label": "9693-8037 via Adherens from 119773 -> 119774", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 119773, + "TargetID": 119774, + "Directional": false + } + ] + }, + { + "ID": 4487, + "SourceStructureID": 9769, + "TargetStructureID": 8037, + "Label": "9769-8037 via Touch from 29891 -> 29890", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 29891, + "TargetID": 29890, + "Directional": false + } + ] + }, + { + "ID": 4488, + "SourceStructureID": 8037, + "TargetStructureID": 12897, + "Label": "8037-12897 via Gap Junction from 16408 -> 24707, 24694 -> 24606, 24699 -> 24598, 24716 -> 24607, 24744 -> 15732", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 16408, + "TargetID": 24707, + "Directional": false + }, + { + "SourceID": 24694, + "TargetID": 24606, + "Directional": false + }, + { + "SourceID": 24699, + "TargetID": 24598, + "Directional": false + }, + { + "SourceID": 24716, + "TargetID": 24607, + "Directional": false + }, + { + "SourceID": 24744, + "TargetID": 15732, + "Directional": false + } + ] + }, + { + "ID": 4489, + "SourceStructureID": 8037, + "TargetStructureID": 25410, + "Label": "8037-25410 via Adherens from 25427 -> 25419", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 25427, + "TargetID": 25419, + "Directional": false + } + ] + }, + { + "ID": 4490, + "SourceStructureID": 50449, + "TargetStructureID": 8037, + "Label": "50449-8037 via Gap Junction from 50520 -> 120858, 120855 -> 120854, 120857 -> 120856, 148212 -> 148215", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50520, + "TargetID": 120858, + "Directional": false + }, + { + "SourceID": 120855, + "TargetID": 120854, + "Directional": false + }, + { + "SourceID": 120857, + "TargetID": 120856, + "Directional": false + }, + { + "SourceID": 148212, + "TargetID": 148215, + "Directional": false + } + ] + }, + { + "ID": 4491, + "SourceStructureID": 132773, + "TargetStructureID": 8037, + "Label": "132773-8037 via Adherens from 132777 -> 88897", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 132777, + "TargetID": 88897, + "Directional": false + } + ] + }, + { + "ID": 4492, + "SourceStructureID": 132773, + "TargetStructureID": 8037, + "Label": "132773-8037 via Gap Junction from 132778 -> 130628", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132778, + "TargetID": 130628, + "Directional": false + } + ] + }, + { + "ID": 4493, + "SourceStructureID": 8038, + "TargetStructureID": 8040, + "Label": "8038-8040 via Gap Junction from 48598 -> 48596, 113049 -> 48628", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48598, + "TargetID": 48596, + "Directional": false + }, + { + "SourceID": 113049, + "TargetID": 48628, + "Directional": false + } + ] + }, + { + "ID": 4494, + "SourceStructureID": 11246, + "TargetStructureID": 8038, + "Label": "11246-8038 via Adherens from 68963 -> 68962", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68963, + "TargetID": 68962, + "Directional": false + } + ] + }, + { + "ID": 4495, + "SourceStructureID": 32804, + "TargetStructureID": 8038, + "Label": "32804-8038 via Touch from 32814 -> 32815", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 32814, + "TargetID": 32815, + "Directional": false + } + ] + }, + { + "ID": 4496, + "SourceStructureID": 50449, + "TargetStructureID": 8038, + "Label": "50449-8038 via Gap Junction from 50477 -> 50478", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 50477, + "TargetID": 50478, + "Directional": false + } + ] + }, + { + "ID": 4497, + "SourceStructureID": 70500, + "TargetStructureID": 8038, + "Label": "70500-8038 via Adherens from 129063 -> 129064, 129065 -> 129066", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129063, + "TargetID": 129064, + "Directional": false + }, + { + "SourceID": 129065, + "TargetID": 129066, + "Directional": false + } + ] + }, + { + "ID": 4498, + "SourceStructureID": 8038, + "TargetStructureID": 70500, + "Label": "8038-70500 via Gap Junction from 129062 -> 129051", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 129062, + "TargetID": 129051, + "Directional": false + } + ] + }, + { + "ID": 4499, + "SourceStructureID": 8038, + "TargetStructureID": 118654, + "Label": "8038-118654 via Gap Junction from 118676 -> 118657", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118676, + "TargetID": 118657, + "Directional": false + } + ] + }, + { + "ID": 4500, + "SourceStructureID": 8040, + "TargetStructureID": 8040, + "Label": "8040-8040 via Gap Junction from 120818 -> 120819", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120818, + "TargetID": 120819, + "Directional": false + } + ] + }, + { + "ID": 4501, + "SourceStructureID": 8040, + "TargetStructureID": 64939, + "Label": "8040-64939 via Adherens from 48657 -> 65452", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 48657, + "TargetID": 65452, + "Directional": false + } + ] + }, + { + "ID": 4502, + "SourceStructureID": 8040, + "TargetStructureID": 64939, + "Label": "8040-64939 via Gap Junction from 93631 -> 93630, 120823 -> 120824", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93631, + "TargetID": 93630, + "Directional": false + }, + { + "SourceID": 120823, + "TargetID": 120824, + "Directional": false + } + ] + }, + { + "ID": 4503, + "SourceStructureID": 102459, + "TargetStructureID": 8080, + "Label": "102459-8080 via Adherens from 129544 -> 129543", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 129544, + "TargetID": 129543, + "Directional": false + } + ] + }, + { + "ID": 4504, + "SourceStructureID": 61672, + "TargetStructureID": 8575, + "Label": "61672-8575 via Gap Junction from 61674 -> 61671", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 61674, + "TargetID": 61671, + "Directional": false + } + ] + }, + { + "ID": 4505, + "SourceStructureID": 61752, + "TargetStructureID": 8575, + "Label": "61752-8575 via Gap Junction from 61753 -> 61751", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 61753, + "TargetID": 61751, + "Directional": false + } + ] + }, + { + "ID": 4506, + "SourceStructureID": 62842, + "TargetStructureID": 8575, + "Label": "62842-8575 via Adherens from 62843 -> 62841", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 62843, + "TargetID": 62841, + "Directional": false + } + ] + }, + { + "ID": 4507, + "SourceStructureID": 8579, + "TargetStructureID": 8577, + "Label": "8579-8577 via Adherens from 62905 -> 62904", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 62905, + "TargetID": 62904, + "Directional": false + } + ] + }, + { + "ID": 4508, + "SourceStructureID": 8579, + "TargetStructureID": 8577, + "Label": "8579-8577 via Unknown from 132850 -> 132849", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132850, + "TargetID": 132849, + "Directional": false + } + ] + }, + { + "ID": 4509, + "SourceStructureID": 79071, + "TargetStructureID": 8577, + "Label": "79071-8577 via Neuroglial adherens from 79331 -> 79332", + "Type": "Neuroglial adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79331, + "TargetID": 79332, + "Directional": false + } + ] + }, + { + "ID": 4510, + "SourceStructureID": 8577, + "TargetStructureID": 79091, + "Label": "8577-79091 via Neuroglial adherens from 79404 -> 79403", + "Type": "Neuroglial adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79404, + "TargetID": 79403, + "Directional": false + } + ] + }, + { + "ID": 4511, + "SourceStructureID": 8579, + "TargetStructureID": 8580, + "Label": "8579-8580 via Gap Junction from 72104 -> 72103", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 72104, + "TargetID": 72103, + "Directional": false + } + ] + }, + { + "ID": 4512, + "SourceStructureID": 8579, + "TargetStructureID": 16026, + "Label": "8579-16026 via Adherens from 134329 -> 134328, 134331 -> 134330", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134329, + "TargetID": 134328, + "Directional": false + }, + { + "SourceID": 134331, + "TargetID": 134330, + "Directional": false + } + ] + }, + { + "ID": 4513, + "SourceStructureID": 8579, + "TargetStructureID": 16026, + "Label": "8579-16026 via Unknown from 134586 -> 134585, 134587 -> 134588", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134586, + "TargetID": 134585, + "Directional": false + }, + { + "SourceID": 134587, + "TargetID": 134588, + "Directional": false + } + ] + }, + { + "ID": 4514, + "SourceStructureID": 20136, + "TargetStructureID": 8579, + "Label": "20136-8579 via Unknown from 109077 -> 109078", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109077, + "TargetID": 109078, + "Directional": false + } + ] + }, + { + "ID": 4515, + "SourceStructureID": 8579, + "TargetStructureID": 29702, + "Label": "8579-29702 via Adherens from 76076 -> 76077", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76076, + "TargetID": 76077, + "Directional": false + } + ] + }, + { + "ID": 4516, + "SourceStructureID": 8579, + "TargetStructureID": 61864, + "Label": "8579-61864 via Adherens from 19803 -> 66331, 65490 -> 19804", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 19803, + "TargetID": 66331, + "Directional": false + }, + { + "SourceID": 65490, + "TargetID": 19804, + "Directional": false + } + ] + }, + { + "ID": 4517, + "SourceStructureID": 62933, + "TargetStructureID": 8579, + "Label": "62933-8579 via Adherens from 62936 -> 62937", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 62936, + "TargetID": 62937, + "Directional": false + } + ] + }, + { + "ID": 4518, + "SourceStructureID": 11030, + "TargetStructureID": 8580, + "Label": "11030-8580 via Touch from 59882 -> 59881", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 59882, + "TargetID": 59881, + "Directional": false + } + ] + }, + { + "ID": 4519, + "SourceStructureID": 11043, + "TargetStructureID": 8580, + "Label": "11043-8580 via Touch from 59893 -> 59892", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 59893, + "TargetID": 59892, + "Directional": false + } + ] + }, + { + "ID": 4520, + "SourceStructureID": 72395, + "TargetStructureID": 8580, + "Label": "72395-8580 via Unknown from 72412 -> 72413", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 72412, + "TargetID": 72413, + "Directional": false + } + ] + }, + { + "ID": 4521, + "SourceStructureID": 72483, + "TargetStructureID": 8580, + "Label": "72483-8580 via Adherens from 72485 -> 72484", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72485, + "TargetID": 72484, + "Directional": false + } + ] + }, + { + "ID": 4522, + "SourceStructureID": 73678, + "TargetStructureID": 8580, + "Label": "73678-8580 via Adherens from 73679 -> 73677", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73679, + "TargetID": 73677, + "Directional": false + } + ] + }, + { + "ID": 4523, + "SourceStructureID": 75721, + "TargetStructureID": 8580, + "Label": "75721-8580 via Adherens from 75723 -> 75720, 75725 -> 75724", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75723, + "TargetID": 75720, + "Directional": false + }, + { + "SourceID": 75725, + "TargetID": 75724, + "Directional": false + } + ] + }, + { + "ID": 4524, + "SourceStructureID": 31161, + "TargetStructureID": 8588, + "Label": "31161-8588 via Touch from 32712 -> 32711", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 32712, + "TargetID": 32711, + "Directional": false + } + ] + }, + { + "ID": 4525, + "SourceStructureID": 66946, + "TargetStructureID": 8588, + "Label": "66946-8588 via Adherens from 83324 -> 67415", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83324, + "TargetID": 67415, + "Directional": false + } + ] + }, + { + "ID": 4526, + "SourceStructureID": 82271, + "TargetStructureID": 8588, + "Label": "82271-8588 via Adherens from 82276 -> 80587", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82276, + "TargetID": 80587, + "Directional": false + } + ] + }, + { + "ID": 4527, + "SourceStructureID": 8589, + "TargetStructureID": 8589, + "Label": "8589-8589 via Gap Junction from 70453 -> 70452, 71975 -> 71974", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 70453, + "TargetID": 70452, + "Directional": false + }, + { + "SourceID": 71975, + "TargetID": 71974, + "Directional": false + } + ] + }, + { + "ID": 4528, + "SourceStructureID": 70398, + "TargetStructureID": 8589, + "Label": "70398-8589 via Adherens from 70399 -> 70397", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70399, + "TargetID": 70397, + "Directional": false + } + ] + }, + { + "ID": 4529, + "SourceStructureID": 8589, + "TargetStructureID": 70403, + "Label": "8589-70403 via Adherens from 70405 -> 70404", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70405, + "TargetID": 70404, + "Directional": false + } + ] + }, + { + "ID": 4530, + "SourceStructureID": 8589, + "TargetStructureID": 70444, + "Label": "8589-70444 via Adherens from 71313 -> 71312, 71314 -> 71315", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71313, + "TargetID": 71312, + "Directional": false + }, + { + "SourceID": 71314, + "TargetID": 71315, + "Directional": false + } + ] + }, + { + "ID": 4531, + "SourceStructureID": 8589, + "TargetStructureID": 70444, + "Label": "8589-70444 via Gap Junction from 70447 -> 70448", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 70447, + "TargetID": 70448, + "Directional": false + } + ] + }, + { + "ID": 4532, + "SourceStructureID": 8589, + "TargetStructureID": 70462, + "Label": "8589-70462 via Adherens from 70392 -> 70463", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70392, + "TargetID": 70463, + "Directional": false + } + ] + }, + { + "ID": 4533, + "SourceStructureID": 8589, + "TargetStructureID": 71318, + "Label": "8589-71318 via Adherens from 71320 -> 71319", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71320, + "TargetID": 71319, + "Directional": false + } + ] + }, + { + "ID": 4534, + "SourceStructureID": 8589, + "TargetStructureID": 71322, + "Label": "8589-71322 via Adherens from 71390 -> 71391", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71390, + "TargetID": 71391, + "Directional": false + } + ] + }, + { + "ID": 4535, + "SourceStructureID": 71411, + "TargetStructureID": 8589, + "Label": "71411-8589 via Gap Junction from 71412 -> 71409", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71412, + "TargetID": 71409, + "Directional": false + } + ] + }, + { + "ID": 4536, + "SourceStructureID": 71597, + "TargetStructureID": 8589, + "Label": "71597-8589 via Adherens from 71750 -> 71749", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71750, + "TargetID": 71749, + "Directional": false + } + ] + }, + { + "ID": 4537, + "SourceStructureID": 8589, + "TargetStructureID": 71625, + "Label": "8589-71625 via Adherens from 71745 -> 71746", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71745, + "TargetID": 71746, + "Directional": false + } + ] + }, + { + "ID": 4538, + "SourceStructureID": 16026, + "TargetStructureID": 8720, + "Label": "16026-8720 via Unknown from 114652 -> 134419", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114652, + "TargetID": 134419, + "Directional": false + } + ] + }, + { + "ID": 4539, + "SourceStructureID": 59974, + "TargetStructureID": 8720, + "Label": "59974-8720 via Adherens from 59975 -> 59973", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59975, + "TargetID": 59973, + "Directional": false + } + ] + }, + { + "ID": 4540, + "SourceStructureID": 8749, + "TargetStructureID": 123194, + "Label": "8749-123194 via Adherens from 159829 -> 159830", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159829, + "TargetID": 159830, + "Directional": false + } + ] + }, + { + "ID": 4541, + "SourceStructureID": 123197, + "TargetStructureID": 8749, + "Label": "123197-8749 via Adherens from 159844 -> 8872", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159844, + "TargetID": 8872, + "Directional": false + } + ] + }, + { + "ID": 4542, + "SourceStructureID": 8749, + "TargetStructureID": 123227, + "Label": "8749-123227 via Adherens from 159815 -> 159816", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159815, + "TargetID": 159816, + "Directional": false + } + ] + }, + { + "ID": 4543, + "SourceStructureID": 9129, + "TargetStructureID": 35526, + "Label": "9129-35526 via Adherens from 64332 -> 64333", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64332, + "TargetID": 64333, + "Directional": false + } + ] + }, + { + "ID": 4544, + "SourceStructureID": 9129, + "TargetStructureID": 74205, + "Label": "9129-74205 via Adherens from 74207 -> 74208", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74207, + "TargetID": 74208, + "Directional": false + } + ] + }, + { + "ID": 4545, + "SourceStructureID": 122829, + "TargetStructureID": 9129, + "Label": "122829-9129 via Touch from 122847 -> 122846", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 122847, + "TargetID": 122846, + "Directional": false + } + ] + }, + { + "ID": 4546, + "SourceStructureID": 9260, + "TargetStructureID": 9260, + "Label": "9260-9260 via Adherens from 39676 -> 39675", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 39676, + "TargetID": 39675, + "Directional": false + } + ] + }, + { + "ID": 4547, + "SourceStructureID": 9260, + "TargetStructureID": 39285, + "Label": "9260-39285 via Unknown from 93093 -> 93092", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93093, + "TargetID": 93092, + "Directional": false + } + ] + }, + { + "ID": 4548, + "SourceStructureID": 66815, + "TargetStructureID": 9260, + "Label": "66815-9260 via Gap Junction from 159671 -> 159672", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 159671, + "TargetID": 159672, + "Directional": false + } + ] + }, + { + "ID": 4549, + "SourceStructureID": 66815, + "TargetStructureID": 9260, + "Label": "66815-9260 via Peri GJ Adherens from 159673 -> 159674", + "Type": "Peri GJ Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159673, + "TargetID": 159674, + "Directional": false + } + ] + }, + { + "ID": 4550, + "SourceStructureID": 9504, + "TargetStructureID": 9504, + "Label": "9504-9504 via Postsynapse from 9505 -> 9515", + "Type": "Postsynapse", + "Directional": false, + "Links": [ + { + "SourceID": 9505, + "TargetID": 9515, + "Directional": false + } + ] + }, + { + "ID": 4551, + "SourceStructureID": 15394, + "TargetStructureID": 9693, + "Label": "15394-9693 via Adherens from 47699 -> 47698", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 47699, + "TargetID": 47698, + "Directional": false + } + ] + }, + { + "ID": 4552, + "SourceStructureID": 9693, + "TargetStructureID": 15394, + "Label": "9693-15394 via Unknown from 120115 -> 120116", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 120115, + "TargetID": 120116, + "Directional": false + } + ] + }, + { + "ID": 4553, + "SourceStructureID": 9693, + "TargetStructureID": 32739, + "Label": "9693-32739 via Adherens from 119829 -> 119833", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 119829, + "TargetID": 119833, + "Directional": false + } + ] + }, + { + "ID": 4554, + "SourceStructureID": 134659, + "TargetStructureID": 9693, + "Label": "134659-9693 via Adherens from 134661 -> 119783", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134661, + "TargetID": 119783, + "Directional": false + } + ] + }, + { + "ID": 4555, + "SourceStructureID": 9693, + "TargetStructureID": 134674, + "Label": "9693-134674 via Adherens from 134673 -> 134675", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134673, + "TargetID": 134675, + "Directional": false + } + ] + }, + { + "ID": 4556, + "SourceStructureID": 134687, + "TargetStructureID": 9693, + "Label": "134687-9693 via Adherens from 134689 -> 134683", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134689, + "TargetID": 134683, + "Directional": false + } + ] + }, + { + "ID": 4557, + "SourceStructureID": 9693, + "TargetStructureID": 134718, + "Label": "9693-134718 via Unknown from 134998 -> 134997", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134998, + "TargetID": 134997, + "Directional": false + } + ] + }, + { + "ID": 4558, + "SourceStructureID": 45220, + "TargetStructureID": 9769, + "Label": "45220-9769 via Gap Junction from 45327 -> 45219", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45327, + "TargetID": 45219, + "Directional": false + } + ] + }, + { + "ID": 4559, + "SourceStructureID": 9769, + "TargetStructureID": 45326, + "Label": "9769-45326 via Gap Junction from 45325 -> 45329", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45325, + "TargetID": 45329, + "Directional": false + } + ] + }, + { + "ID": 4560, + "SourceStructureID": 45358, + "TargetStructureID": 9769, + "Label": "45358-9769 via Gap Junction from 45359 -> 45357", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 45359, + "TargetID": 45357, + "Directional": false + } + ] + }, + { + "ID": 4561, + "SourceStructureID": 9769, + "TargetStructureID": 50982, + "Label": "9769-50982 via Adherens from 52387 -> 52388", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 52387, + "TargetID": 52388, + "Directional": false + } + ] + }, + { + "ID": 4562, + "SourceStructureID": 9769, + "TargetStructureID": 53421, + "Label": "9769-53421 via Adherens from 53424 -> 53423", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 53424, + "TargetID": 53423, + "Directional": false + } + ] + }, + { + "ID": 4563, + "SourceStructureID": 54264, + "TargetStructureID": 9769, + "Label": "54264-9769 via Adherens from 54265 -> 23928", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 54265, + "TargetID": 23928, + "Directional": false + } + ] + }, + { + "ID": 4564, + "SourceStructureID": 74047, + "TargetStructureID": 9769, + "Label": "74047-9769 via Adherens from 74339 -> 74340, 74342 -> 74343", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74339, + "TargetID": 74340, + "Directional": false + }, + { + "SourceID": 74342, + "TargetID": 74343, + "Directional": false + } + ] + }, + { + "ID": 4565, + "SourceStructureID": 9769, + "TargetStructureID": 74047, + "Label": "9769-74047 via Unknown from 74332 -> 74327", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74332, + "TargetID": 74327, + "Directional": false + } + ] + }, + { + "ID": 4566, + "SourceStructureID": 9769, + "TargetStructureID": 84401, + "Label": "9769-84401 via Adherens from 84404 -> 84403", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84404, + "TargetID": 84403, + "Directional": false + } + ] + }, + { + "ID": 4567, + "SourceStructureID": 56211, + "TargetStructureID": 9787, + "Label": "56211-9787 via Gap Junction from 56238 -> 56239, 85606 -> 56381", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56238, + "TargetID": 56239, + "Directional": false + }, + { + "SourceID": 85606, + "TargetID": 56381, + "Directional": false + } + ] + }, + { + "ID": 4568, + "SourceStructureID": 56328, + "TargetStructureID": 9787, + "Label": "56328-9787 via Gap Junction from 56329 -> 56327", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56329, + "TargetID": 56327, + "Directional": false + } + ] + }, + { + "ID": 4569, + "SourceStructureID": 56598, + "TargetStructureID": 9787, + "Label": "56598-9787 via Gap Junction from 75640 -> 75639", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 75640, + "TargetID": 75639, + "Directional": false + } + ] + }, + { + "ID": 4570, + "SourceStructureID": 59229, + "TargetStructureID": 9787, + "Label": "59229-9787 via Gap Junction from 85537 -> 56379", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 85537, + "TargetID": 56379, + "Directional": false + } + ] + }, + { + "ID": 4571, + "SourceStructureID": 85508, + "TargetStructureID": 9787, + "Label": "85508-9787 via Gap Junction from 85509 -> 56376", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 85509, + "TargetID": 56376, + "Directional": false + } + ] + }, + { + "ID": 4572, + "SourceStructureID": 85517, + "TargetStructureID": 9787, + "Label": "85517-9787 via Gap Junction from 85518 -> 56377", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 85518, + "TargetID": 56377, + "Directional": false + } + ] + }, + { + "ID": 4573, + "SourceStructureID": 85604, + "TargetStructureID": 9787, + "Label": "85604-9787 via Gap Junction from 85605 -> 56380", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 85605, + "TargetID": 56380, + "Directional": false + } + ] + }, + { + "ID": 4574, + "SourceStructureID": 85607, + "TargetStructureID": 9787, + "Label": "85607-9787 via Gap Junction from 85608 -> 56382", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 85608, + "TargetID": 56382, + "Directional": false + } + ] + }, + { + "ID": 4575, + "SourceStructureID": 49185, + "TargetStructureID": 10559, + "Label": "49185-10559 via Adherens from 49189 -> 49190, 49191 -> 49192", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 49189, + "TargetID": 49190, + "Directional": false + }, + { + "SourceID": 49191, + "TargetID": 49192, + "Directional": false + } + ] + }, + { + "ID": 4576, + "SourceStructureID": 39602, + "TargetStructureID": 10625, + "Label": "39602-10625 via Adherens from 64338 -> 64337", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64338, + "TargetID": 64337, + "Directional": false + } + ] + }, + { + "ID": 4577, + "SourceStructureID": 96788, + "TargetStructureID": 10872, + "Label": "96788-10872 via Unknown from 96803 -> 96804", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96803, + "TargetID": 96804, + "Directional": false + } + ] + }, + { + "ID": 4578, + "SourceStructureID": 12897, + "TargetStructureID": 10931, + "Label": "12897-10931 via Adherens from 159343 -> 159342", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159343, + "TargetID": 159342, + "Directional": false + } + ] + }, + { + "ID": 4579, + "SourceStructureID": 32905, + "TargetStructureID": 10931, + "Label": "32905-10931 via Adherens from 159496 -> 159495", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159496, + "TargetID": 159495, + "Directional": false + } + ] + }, + { + "ID": 4580, + "SourceStructureID": 98127, + "TargetStructureID": 10957, + "Label": "98127-10957 via Unknown from 98876 -> 98877", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98876, + "TargetID": 98877, + "Directional": false + } + ] + }, + { + "ID": 4581, + "SourceStructureID": 10959, + "TargetStructureID": 10959, + "Label": "10959-10959 via Unknown from 94441 -> 94440", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94441, + "TargetID": 94440, + "Directional": false + } + ] + }, + { + "ID": 4582, + "SourceStructureID": 10959, + "TargetStructureID": 86751, + "Label": "10959-86751 via Unknown from 86754 -> 86753", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86754, + "TargetID": 86753, + "Directional": false + } + ] + }, + { + "ID": 4583, + "SourceStructureID": 86775, + "TargetStructureID": 10959, + "Label": "86775-10959 via Adherens from 86776 -> 86774", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86776, + "TargetID": 86774, + "Directional": false + } + ] + }, + { + "ID": 4584, + "SourceStructureID": 86783, + "TargetStructureID": 10959, + "Label": "86783-10959 via Adherens from 86785 -> 86781", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86785, + "TargetID": 86781, + "Directional": false + } + ] + }, + { + "ID": 4585, + "SourceStructureID": 10959, + "TargetStructureID": 86816, + "Label": "10959-86816 via Adherens from 86835 -> 86836", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86835, + "TargetID": 86836, + "Directional": false + } + ] + }, + { + "ID": 4586, + "SourceStructureID": 86838, + "TargetStructureID": 10959, + "Label": "86838-10959 via Adherens from 86839 -> 86837", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86839, + "TargetID": 86837, + "Directional": false + } + ] + }, + { + "ID": 4587, + "SourceStructureID": 86891, + "TargetStructureID": 10959, + "Label": "86891-10959 via Adherens from 86892 -> 86893", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86892, + "TargetID": 86893, + "Directional": false + } + ] + }, + { + "ID": 4588, + "SourceStructureID": 15394, + "TargetStructureID": 10960, + "Label": "15394-10960 via Touch from 41017 -> 41018", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 41017, + "TargetID": 41018, + "Directional": false + } + ] + }, + { + "ID": 4589, + "SourceStructureID": 10963, + "TargetStructureID": 64777, + "Label": "10963-64777 via Touch from 64810 -> 64809", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 64810, + "TargetID": 64809, + "Directional": false + } + ] + }, + { + "ID": 4590, + "SourceStructureID": 99650, + "TargetStructureID": 11037, + "Label": "99650-11037 via Unknown from 99660 -> 99661", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 99660, + "TargetID": 99661, + "Directional": false + } + ] + }, + { + "ID": 4591, + "SourceStructureID": 11044, + "TargetStructureID": 15796, + "Label": "11044-15796 via Touch from 32764 -> 32765", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 32764, + "TargetID": 32765, + "Directional": false + } + ] + }, + { + "ID": 4592, + "SourceStructureID": 11074, + "TargetStructureID": 98618, + "Label": "11074-98618 via Gap Junction from 98647 -> 98646", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98647, + "TargetID": 98646, + "Directional": false + } + ] + }, + { + "ID": 4593, + "SourceStructureID": 11092, + "TargetStructureID": 95072, + "Label": "11092-95072 via Gap Junction from 95075 -> 95076", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 95075, + "TargetID": 95076, + "Directional": false + } + ] + }, + { + "ID": 4594, + "SourceStructureID": 11092, + "TargetStructureID": 123499, + "Label": "11092-123499 via Gap Junction from 123505 -> 123506", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123505, + "TargetID": 123506, + "Directional": false + } + ] + }, + { + "ID": 4595, + "SourceStructureID": 11229, + "TargetStructureID": 13624, + "Label": "11229-13624 via Adherens from 15327 -> 15326", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 15327, + "TargetID": 15326, + "Directional": false + } + ] + }, + { + "ID": 4596, + "SourceStructureID": 11229, + "TargetStructureID": 15977, + "Label": "11229-15977 via Gap Junction from 135683 -> 135682, 135684 -> 135685", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 135683, + "TargetID": 135682, + "Directional": false + }, + { + "SourceID": 135684, + "TargetID": 135685, + "Directional": false + } + ] + }, + { + "ID": 4597, + "SourceStructureID": 35418, + "TargetStructureID": 11234, + "Label": "35418-11234 via Adherens from 64610 -> 64611", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64610, + "TargetID": 64611, + "Directional": false + } + ] + }, + { + "ID": 4598, + "SourceStructureID": 24401, + "TargetStructureID": 11485, + "Label": "24401-11485 via Adherens from 48127 -> 48128", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 48127, + "TargetID": 48128, + "Directional": false + } + ] + }, + { + "ID": 4599, + "SourceStructureID": 38698, + "TargetStructureID": 12564, + "Label": "38698-12564 via Adherens from 55638 -> 55639", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 55638, + "TargetID": 55639, + "Directional": false + } + ] + }, + { + "ID": 4600, + "SourceStructureID": 12897, + "TargetStructureID": 16026, + "Label": "12897-16026 via Adherens from 134422 -> 134421, 134886 -> 134885", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134422, + "TargetID": 134421, + "Directional": false + }, + { + "SourceID": 134886, + "TargetID": 134885, + "Directional": false + } + ] + }, + { + "ID": 4601, + "SourceStructureID": 16026, + "TargetStructureID": 12897, + "Label": "16026-12897 via Gap Junction from 24753 -> 24752, 91195 -> 91194, 91244 -> 24634, 92079 -> 92078, 92232 -> 92230, 92575 -> 92576, 92898 -> 92897", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24753, + "TargetID": 24752, + "Directional": false + }, + { + "SourceID": 91195, + "TargetID": 91194, + "Directional": false + }, + { + "SourceID": 91244, + "TargetID": 24634, + "Directional": false + }, + { + "SourceID": 92079, + "TargetID": 92078, + "Directional": false + }, + { + "SourceID": 92232, + "TargetID": 92230, + "Directional": false + }, + { + "SourceID": 92575, + "TargetID": 92576, + "Directional": false + }, + { + "SourceID": 92898, + "TargetID": 92897, + "Directional": false + } + ] + }, + { + "ID": 4602, + "SourceStructureID": 87569, + "TargetStructureID": 12897, + "Label": "87569-12897 via Adherens from 87574 -> 24841", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87574, + "TargetID": 24841, + "Directional": false + } + ] + }, + { + "ID": 4603, + "SourceStructureID": 12897, + "TargetStructureID": 104764, + "Label": "12897-104764 via Unknown from 134409 -> 134410", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134409, + "TargetID": 134410, + "Directional": false + } + ] + }, + { + "ID": 4604, + "SourceStructureID": 12897, + "TargetStructureID": 122868, + "Label": "12897-122868 via Adherens from 130536 -> 130535", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130536, + "TargetID": 130535, + "Directional": false + } + ] + }, + { + "ID": 4605, + "SourceStructureID": 12897, + "TargetStructureID": 122868, + "Label": "12897-122868 via Gap Junction from 130534 -> 130533, 132417 -> 132419, 132421 -> 132422", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 130534, + "TargetID": 130533, + "Directional": false + }, + { + "SourceID": 132417, + "TargetID": 132419, + "Directional": false + }, + { + "SourceID": 132421, + "TargetID": 132422, + "Directional": false + } + ] + }, + { + "ID": 4606, + "SourceStructureID": 135039, + "TargetStructureID": 12897, + "Label": "135039-12897 via Gap Junction from 135040 -> 108243, 135043 -> 135044", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 135040, + "TargetID": 108243, + "Directional": false + }, + { + "SourceID": 135043, + "TargetID": 135044, + "Directional": false + } + ] + }, + { + "ID": 4607, + "SourceStructureID": 135039, + "TargetStructureID": 12897, + "Label": "135039-12897 via Unknown from 135049 -> 135050", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 135049, + "TargetID": 135050, + "Directional": false + } + ] + }, + { + "ID": 4608, + "SourceStructureID": 13130, + "TargetStructureID": 59737, + "Label": "13130-59737 via Adherens from 59741 -> 59742", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 59741, + "TargetID": 59742, + "Directional": false + } + ] + }, + { + "ID": 4609, + "SourceStructureID": 101625, + "TargetStructureID": 13525, + "Label": "101625-13525 via Adherens from 104701 -> 101624", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104701, + "TargetID": 101624, + "Directional": false + } + ] + }, + { + "ID": 4610, + "SourceStructureID": 104677, + "TargetStructureID": 13525, + "Label": "104677-13525 via Adherens from 104679 -> 85668", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104679, + "TargetID": 85668, + "Directional": false + } + ] + }, + { + "ID": 4611, + "SourceStructureID": 104691, + "TargetStructureID": 13525, + "Label": "104691-13525 via Adherens from 104692 -> 86728", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104692, + "TargetID": 86728, + "Directional": false + } + ] + }, + { + "ID": 4612, + "SourceStructureID": 104693, + "TargetStructureID": 13525, + "Label": "104693-13525 via Adherens from 104695 -> 94562", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104695, + "TargetID": 94562, + "Directional": false + } + ] + }, + { + "ID": 4613, + "SourceStructureID": 104726, + "TargetStructureID": 13525, + "Label": "104726-13525 via Adherens from 104730 -> 94557", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104730, + "TargetID": 94557, + "Directional": false + } + ] + }, + { + "ID": 4614, + "SourceStructureID": 130371, + "TargetStructureID": 13525, + "Label": "130371-13525 via Adherens from 130372 -> 130370", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 130372, + "TargetID": 130370, + "Directional": false + } + ] + }, + { + "ID": 4615, + "SourceStructureID": 13525, + "TargetStructureID": 130383, + "Label": "13525-130383 via Gap Junction from 130382 -> 130384", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 130382, + "TargetID": 130384, + "Directional": false + } + ] + }, + { + "ID": 4616, + "SourceStructureID": 13855, + "TargetStructureID": 17183, + "Label": "13855-17183 via Touch from 70918 -> 70919", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 70918, + "TargetID": 70919, + "Directional": false + } + ] + }, + { + "ID": 4617, + "SourceStructureID": 14615, + "TargetStructureID": 14615, + "Label": "14615-14615 via Adherens from 92256 -> 92257", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92256, + "TargetID": 92257, + "Directional": false + } + ] + }, + { + "ID": 4618, + "SourceStructureID": 14615, + "TargetStructureID": 76864, + "Label": "14615-76864 via Adherens from 76866 -> 76865", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76866, + "TargetID": 76865, + "Directional": false + } + ] + }, + { + "ID": 4619, + "SourceStructureID": 76912, + "TargetStructureID": 14615, + "Label": "76912-14615 via Adherens from 76915 -> 76916", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76915, + "TargetID": 76916, + "Directional": false + } + ] + }, + { + "ID": 4620, + "SourceStructureID": 33117, + "TargetStructureID": 15100, + "Label": "33117-15100 via Adherens from 64581 -> 64580", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64581, + "TargetID": 64580, + "Directional": false + } + ] + }, + { + "ID": 4621, + "SourceStructureID": 72252, + "TargetStructureID": 15796, + "Label": "72252-15796 via Touch from 147791 -> 147792", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 147791, + "TargetID": 147792, + "Directional": false + } + ] + }, + { + "ID": 4622, + "SourceStructureID": 15796, + "TargetStructureID": 83935, + "Label": "15796-83935 via Gap Junction from 83940 -> 83939", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 83940, + "TargetID": 83939, + "Directional": false + } + ] + }, + { + "ID": 4623, + "SourceStructureID": 40965, + "TargetStructureID": 15942, + "Label": "40965-15942 via Unknown from 91186 -> 91187", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91186, + "TargetID": 91187, + "Directional": false + } + ] + }, + { + "ID": 4624, + "SourceStructureID": 104735, + "TargetStructureID": 15942, + "Label": "104735-15942 via Unknown from 104759 -> 104760", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 104759, + "TargetID": 104760, + "Directional": false + } + ] + }, + { + "ID": 4625, + "SourceStructureID": 57161, + "TargetStructureID": 15976, + "Label": "57161-15976 via Gap Junction from 57162 -> 57160", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57162, + "TargetID": 57160, + "Directional": false + } + ] + }, + { + "ID": 4626, + "SourceStructureID": 57169, + "TargetStructureID": 15976, + "Label": "57169-15976 via Gap Junction from 57170 -> 57168, 57171 -> 57172, 117085 -> 117084", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57170, + "TargetID": 57168, + "Directional": false + }, + { + "SourceID": 57171, + "TargetID": 57172, + "Directional": false + }, + { + "SourceID": 117085, + "TargetID": 117084, + "Directional": false + } + ] + }, + { + "ID": 4627, + "SourceStructureID": 15976, + "TargetStructureID": 92954, + "Label": "15976-92954 via Gap Junction from 92963 -> 92962", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92963, + "TargetID": 92962, + "Directional": false + } + ] + }, + { + "ID": 4628, + "SourceStructureID": 15976, + "TargetStructureID": 93168, + "Label": "15976-93168 via Adherens from 93167 -> 93170", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93167, + "TargetID": 93170, + "Directional": false + } + ] + }, + { + "ID": 4629, + "SourceStructureID": 15976, + "TargetStructureID": 93175, + "Label": "15976-93175 via Adherens from 93177 -> 93178", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93177, + "TargetID": 93178, + "Directional": false + } + ] + }, + { + "ID": 4630, + "SourceStructureID": 15976, + "TargetStructureID": 93175, + "Label": "15976-93175 via Gap Junction from 93174 -> 93176, 93204 -> 93203", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93174, + "TargetID": 93176, + "Directional": false + }, + { + "SourceID": 93204, + "TargetID": 93203, + "Directional": false + } + ] + }, + { + "ID": 4631, + "SourceStructureID": 15976, + "TargetStructureID": 93281, + "Label": "15976-93281 via Adherens from 93285 -> 93284", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93285, + "TargetID": 93284, + "Directional": false + } + ] + }, + { + "ID": 4632, + "SourceStructureID": 93281, + "TargetStructureID": 15976, + "Label": "93281-15976 via Gap Junction from 93283 -> 57436", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93283, + "TargetID": 57436, + "Directional": false + } + ] + }, + { + "ID": 4633, + "SourceStructureID": 93287, + "TargetStructureID": 15976, + "Label": "93287-15976 via Gap Junction from 93288 -> 93286", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93288, + "TargetID": 93286, + "Directional": false + } + ] + }, + { + "ID": 4634, + "SourceStructureID": 15976, + "TargetStructureID": 93290, + "Label": "15976-93290 via Gap Junction from 57163 -> 93292", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57163, + "TargetID": 93292, + "Directional": false + } + ] + }, + { + "ID": 4635, + "SourceStructureID": 93297, + "TargetStructureID": 15976, + "Label": "93297-15976 via Gap Junction from 93299 -> 57410", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93299, + "TargetID": 57410, + "Directional": false + } + ] + }, + { + "ID": 4636, + "SourceStructureID": 93352, + "TargetStructureID": 15976, + "Label": "93352-15976 via Gap Junction from 93353 -> 93351", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93353, + "TargetID": 93351, + "Directional": false + } + ] + }, + { + "ID": 4637, + "SourceStructureID": 93579, + "TargetStructureID": 15976, + "Label": "93579-15976 via Unknown from 93580 -> 93578", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93580, + "TargetID": 93578, + "Directional": false + } + ] + }, + { + "ID": 4638, + "SourceStructureID": 15977, + "TargetStructureID": 15977, + "Label": "15977-15977 via Gap Junction from 116816 -> 116817, 116939 -> 116940", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 116816, + "TargetID": 116817, + "Directional": false + }, + { + "SourceID": 116939, + "TargetID": 116940, + "Directional": false + } + ] + }, + { + "ID": 4639, + "SourceStructureID": 15977, + "TargetStructureID": 70761, + "Label": "15977-70761 via Adherens from 70764 -> 70763", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70764, + "TargetID": 70763, + "Directional": false + } + ] + }, + { + "ID": 4640, + "SourceStructureID": 16026, + "TargetStructureID": 16026, + "Label": "16026-16026 via Adherens from 91101 -> 91100, 91107 -> 91106, 91148 -> 91147", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91101, + "TargetID": 91100, + "Directional": false + }, + { + "SourceID": 91107, + "TargetID": 91106, + "Directional": false + }, + { + "SourceID": 91148, + "TargetID": 91147, + "Directional": false + } + ] + }, + { + "ID": 4641, + "SourceStructureID": 16026, + "TargetStructureID": 16026, + "Label": "16026-16026 via Gap Junction from 91162 -> 91161", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91162, + "TargetID": 91161, + "Directional": false + } + ] + }, + { + "ID": 4642, + "SourceStructureID": 38373, + "TargetStructureID": 16026, + "Label": "38373-16026 via Unknown from 134486 -> 134485", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134486, + "TargetID": 134485, + "Directional": false + } + ] + }, + { + "ID": 4643, + "SourceStructureID": 16026, + "TargetStructureID": 54078, + "Label": "16026-54078 via Adherens from 67860 -> 67859, 134514 -> 134513, 134694 -> 134696", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67860, + "TargetID": 67859, + "Directional": false + }, + { + "SourceID": 134514, + "TargetID": 134513, + "Directional": false + }, + { + "SourceID": 134694, + "TargetID": 134696, + "Directional": false + } + ] + }, + { + "ID": 4644, + "SourceStructureID": 54078, + "TargetStructureID": 16026, + "Label": "54078-16026 via Unknown from 92919 -> 92918, 124776 -> 124777", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92919, + "TargetID": 92918, + "Directional": false + }, + { + "SourceID": 124776, + "TargetID": 124777, + "Directional": false + } + ] + }, + { + "ID": 4645, + "SourceStructureID": 56841, + "TargetStructureID": 16026, + "Label": "56841-16026 via Adherens from 134541 -> 134539", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134541, + "TargetID": 134539, + "Directional": false + } + ] + }, + { + "ID": 4646, + "SourceStructureID": 16026, + "TargetStructureID": 61836, + "Label": "16026-61836 via Adherens from 134783 -> 134784", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134783, + "TargetID": 134784, + "Directional": false + } + ] + }, + { + "ID": 4647, + "SourceStructureID": 16026, + "TargetStructureID": 65864, + "Label": "16026-65864 via Unknown from 134556 -> 134557", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134556, + "TargetID": 134557, + "Directional": false + } + ] + }, + { + "ID": 4648, + "SourceStructureID": 66111, + "TargetStructureID": 16026, + "Label": "66111-16026 via Adherens from 134754 -> 134755", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134754, + "TargetID": 134755, + "Directional": false + } + ] + }, + { + "ID": 4649, + "SourceStructureID": 66111, + "TargetStructureID": 16026, + "Label": "66111-16026 via Unknown from 92571 -> 92570", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92571, + "TargetID": 92570, + "Directional": false + } + ] + }, + { + "ID": 4650, + "SourceStructureID": 16026, + "TargetStructureID": 66477, + "Label": "16026-66477 via Unknown from 134710 -> 134711", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134710, + "TargetID": 134711, + "Directional": false + } + ] + }, + { + "ID": 4651, + "SourceStructureID": 16026, + "TargetStructureID": 66828, + "Label": "16026-66828 via Adherens from 66835 -> 66834, 134793 -> 134794", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66835, + "TargetID": 66834, + "Directional": false + }, + { + "SourceID": 134793, + "TargetID": 134794, + "Directional": false + } + ] + }, + { + "ID": 4652, + "SourceStructureID": 66962, + "TargetStructureID": 16026, + "Label": "66962-16026 via Adherens from 134605 -> 134604", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134605, + "TargetID": 134604, + "Directional": false + } + ] + }, + { + "ID": 4653, + "SourceStructureID": 67354, + "TargetStructureID": 16026, + "Label": "67354-16026 via Adherens from 67358 -> 67359", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67358, + "TargetID": 67359, + "Directional": false + } + ] + }, + { + "ID": 4654, + "SourceStructureID": 67361, + "TargetStructureID": 16026, + "Label": "67361-16026 via Adherens from 91130 -> 91129", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91130, + "TargetID": 91129, + "Directional": false + } + ] + }, + { + "ID": 4655, + "SourceStructureID": 67595, + "TargetStructureID": 16026, + "Label": "67595-16026 via Adherens from 67637 -> 67638, 67639 -> 67640, 67650 -> 67649, 134392 -> 134393", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67637, + "TargetID": 67638, + "Directional": false + }, + { + "SourceID": 67639, + "TargetID": 67640, + "Directional": false + }, + { + "SourceID": 67650, + "TargetID": 67649, + "Directional": false + }, + { + "SourceID": 134392, + "TargetID": 134393, + "Directional": false + } + ] + }, + { + "ID": 4656, + "SourceStructureID": 67818, + "TargetStructureID": 16026, + "Label": "67818-16026 via Unknown from 134779 -> 134778", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134779, + "TargetID": 134778, + "Directional": false + } + ] + }, + { + "ID": 4657, + "SourceStructureID": 16026, + "TargetStructureID": 67933, + "Label": "16026-67933 via Unknown from 134787 -> 134788", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134787, + "TargetID": 134788, + "Directional": false + } + ] + }, + { + "ID": 4658, + "SourceStructureID": 78876, + "TargetStructureID": 16026, + "Label": "78876-16026 via Unknown from 134802 -> 134801", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134802, + "TargetID": 134801, + "Directional": false + } + ] + }, + { + "ID": 4659, + "SourceStructureID": 80721, + "TargetStructureID": 16026, + "Label": "80721-16026 via Unknown from 125040 -> 125039", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125040, + "TargetID": 125039, + "Directional": false + } + ] + }, + { + "ID": 4660, + "SourceStructureID": 16026, + "TargetStructureID": 81396, + "Label": "16026-81396 via Unknown from 134756 -> 134757", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134756, + "TargetID": 134757, + "Directional": false + } + ] + }, + { + "ID": 4661, + "SourceStructureID": 16026, + "TargetStructureID": 82305, + "Label": "16026-82305 via Adherens from 82335 -> 82334", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82335, + "TargetID": 82334, + "Directional": false + } + ] + }, + { + "ID": 4662, + "SourceStructureID": 16026, + "TargetStructureID": 83616, + "Label": "16026-83616 via Unknown from 134619 -> 134620", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134619, + "TargetID": 134620, + "Directional": false + } + ] + }, + { + "ID": 4663, + "SourceStructureID": 84260, + "TargetStructureID": 16026, + "Label": "84260-16026 via Adherens from 91122 -> 91121", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91122, + "TargetID": 91121, + "Directional": false + } + ] + }, + { + "ID": 4664, + "SourceStructureID": 16026, + "TargetStructureID": 84656, + "Label": "16026-84656 via Adherens from 134503 -> 134502", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134503, + "TargetID": 134502, + "Directional": false + } + ] + }, + { + "ID": 4665, + "SourceStructureID": 91036, + "TargetStructureID": 16026, + "Label": "91036-16026 via Adherens from 91039 -> 91035", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91039, + "TargetID": 91035, + "Directional": false + } + ] + }, + { + "ID": 4666, + "SourceStructureID": 91042, + "TargetStructureID": 16026, + "Label": "91042-16026 via Adherens from 91045 -> 91041", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91045, + "TargetID": 91041, + "Directional": false + } + ] + }, + { + "ID": 4667, + "SourceStructureID": 91043, + "TargetStructureID": 16026, + "Label": "91043-16026 via Adherens from 91044 -> 91041", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91044, + "TargetID": 91041, + "Directional": false + } + ] + }, + { + "ID": 4668, + "SourceStructureID": 91060, + "TargetStructureID": 16026, + "Label": "91060-16026 via Adherens from 91061 -> 91059", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91061, + "TargetID": 91059, + "Directional": false + } + ] + }, + { + "ID": 4669, + "SourceStructureID": 91073, + "TargetStructureID": 16026, + "Label": "91073-16026 via Adherens from 92815 -> 91075", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92815, + "TargetID": 91075, + "Directional": false + } + ] + }, + { + "ID": 4670, + "SourceStructureID": 16026, + "TargetStructureID": 91098, + "Label": "16026-91098 via Adherens from 91097 -> 91099", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91097, + "TargetID": 91099, + "Directional": false + } + ] + }, + { + "ID": 4671, + "SourceStructureID": 91103, + "TargetStructureID": 16026, + "Label": "91103-16026 via Adherens from 91104 -> 91102", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91104, + "TargetID": 91102, + "Directional": false + } + ] + }, + { + "ID": 4672, + "SourceStructureID": 91207, + "TargetStructureID": 16026, + "Label": "91207-16026 via Gap Junction from 91208 -> 91205", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91208, + "TargetID": 91205, + "Directional": false + } + ] + }, + { + "ID": 4673, + "SourceStructureID": 91213, + "TargetStructureID": 16026, + "Label": "91213-16026 via Unknown from 134364 -> 134363", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134364, + "TargetID": 134363, + "Directional": false + } + ] + }, + { + "ID": 4674, + "SourceStructureID": 16026, + "TargetStructureID": 92086, + "Label": "16026-92086 via Unknown from 134450 -> 134449", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134450, + "TargetID": 134449, + "Directional": false + } + ] + }, + { + "ID": 4675, + "SourceStructureID": 92092, + "TargetStructureID": 16026, + "Label": "92092-16026 via Adherens from 134488 -> 134487", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134488, + "TargetID": 134487, + "Directional": false + } + ] + }, + { + "ID": 4676, + "SourceStructureID": 92092, + "TargetStructureID": 16026, + "Label": "92092-16026 via Unknown from 134436 -> 134435", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134436, + "TargetID": 134435, + "Directional": false + } + ] + }, + { + "ID": 4677, + "SourceStructureID": 16026, + "TargetStructureID": 92200, + "Label": "16026-92200 via Unknown from 92204 -> 92203, 92206 -> 92205", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92204, + "TargetID": 92203, + "Directional": false + }, + { + "SourceID": 92206, + "TargetID": 92205, + "Directional": false + } + ] + }, + { + "ID": 4678, + "SourceStructureID": 16026, + "TargetStructureID": 92222, + "Label": "16026-92222 via Unknown from 134543 -> 134544", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134543, + "TargetID": 134544, + "Directional": false + } + ] + }, + { + "ID": 4679, + "SourceStructureID": 16026, + "TargetStructureID": 92226, + "Label": "16026-92226 via Gap Junction from 92228 -> 92227", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92228, + "TargetID": 92227, + "Directional": false + } + ] + }, + { + "ID": 4680, + "SourceStructureID": 16026, + "TargetStructureID": 92233, + "Label": "16026-92233 via Unknown from 92235 -> 92234", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92235, + "TargetID": 92234, + "Directional": false + } + ] + }, + { + "ID": 4681, + "SourceStructureID": 16026, + "TargetStructureID": 92239, + "Label": "16026-92239 via Unknown from 114662 -> 114663", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 114662, + "TargetID": 114663, + "Directional": false + } + ] + }, + { + "ID": 4682, + "SourceStructureID": 16026, + "TargetStructureID": 92250, + "Label": "16026-92250 via Unknown from 92251 -> 92252", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92251, + "TargetID": 92252, + "Directional": false + } + ] + }, + { + "ID": 4683, + "SourceStructureID": 16026, + "TargetStructureID": 92253, + "Label": "16026-92253 via Unknown from 92254 -> 92255", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92254, + "TargetID": 92255, + "Directional": false + } + ] + }, + { + "ID": 4684, + "SourceStructureID": 92353, + "TargetStructureID": 16026, + "Label": "92353-16026 via Unknown from 134383 -> 134382", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134383, + "TargetID": 134382, + "Directional": false + } + ] + }, + { + "ID": 4685, + "SourceStructureID": 92356, + "TargetStructureID": 16026, + "Label": "92356-16026 via Unknown from 134384 -> 134385", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134384, + "TargetID": 134385, + "Directional": false + } + ] + }, + { + "ID": 4686, + "SourceStructureID": 92361, + "TargetStructureID": 16026, + "Label": "92361-16026 via Adherens from 134349 -> 134350, 134353 -> 134352", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134349, + "TargetID": 134350, + "Directional": false + }, + { + "SourceID": 134353, + "TargetID": 134352, + "Directional": false + } + ] + }, + { + "ID": 4687, + "SourceStructureID": 16026, + "TargetStructureID": 92361, + "Label": "16026-92361 via Unknown from 134373 -> 134372", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134373, + "TargetID": 134372, + "Directional": false + } + ] + }, + { + "ID": 4688, + "SourceStructureID": 92369, + "TargetStructureID": 16026, + "Label": "92369-16026 via Unknown from 92371 -> 92370", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92371, + "TargetID": 92370, + "Directional": false + } + ] + }, + { + "ID": 4689, + "SourceStructureID": 16026, + "TargetStructureID": 92376, + "Label": "16026-92376 via Unknown from 92378 -> 92377", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92378, + "TargetID": 92377, + "Directional": false + } + ] + }, + { + "ID": 4690, + "SourceStructureID": 16026, + "TargetStructureID": 92406, + "Label": "16026-92406 via Unknown from 92407 -> 92408", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92407, + "TargetID": 92408, + "Directional": false + } + ] + }, + { + "ID": 4691, + "SourceStructureID": 16026, + "TargetStructureID": 92417, + "Label": "16026-92417 via Unknown from 92419 -> 92418", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92419, + "TargetID": 92418, + "Directional": false + } + ] + }, + { + "ID": 4692, + "SourceStructureID": 16026, + "TargetStructureID": 92424, + "Label": "16026-92424 via Unknown from 92426 -> 92425", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92426, + "TargetID": 92425, + "Directional": false + } + ] + }, + { + "ID": 4693, + "SourceStructureID": 92427, + "TargetStructureID": 16026, + "Label": "92427-16026 via Unknown from 134600 -> 134601", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134600, + "TargetID": 134601, + "Directional": false + } + ] + }, + { + "ID": 4694, + "SourceStructureID": 92577, + "TargetStructureID": 16026, + "Label": "92577-16026 via Unknown from 134895 -> 134894", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134895, + "TargetID": 134894, + "Directional": false + } + ] + }, + { + "ID": 4695, + "SourceStructureID": 92582, + "TargetStructureID": 16026, + "Label": "92582-16026 via Unknown from 92586 -> 92585", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92586, + "TargetID": 92585, + "Directional": false + } + ] + }, + { + "ID": 4696, + "SourceStructureID": 92587, + "TargetStructureID": 16026, + "Label": "92587-16026 via Unknown from 92589 -> 92588", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92589, + "TargetID": 92588, + "Directional": false + } + ] + }, + { + "ID": 4697, + "SourceStructureID": 16026, + "TargetStructureID": 92595, + "Label": "16026-92595 via Unknown from 134883 -> 134884", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134883, + "TargetID": 134884, + "Directional": false + } + ] + }, + { + "ID": 4698, + "SourceStructureID": 92899, + "TargetStructureID": 16026, + "Label": "92899-16026 via Unknown from 134829 -> 134828", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134829, + "TargetID": 134828, + "Directional": false + } + ] + }, + { + "ID": 4699, + "SourceStructureID": 16026, + "TargetStructureID": 92908, + "Label": "16026-92908 via Unknown from 92911 -> 92910, 134649 -> 124841", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92911, + "TargetID": 92910, + "Directional": false + }, + { + "SourceID": 134649, + "TargetID": 124841, + "Directional": false + } + ] + }, + { + "ID": 4700, + "SourceStructureID": 92913, + "TargetStructureID": 16026, + "Label": "92913-16026 via Unknown from 92914 -> 92912", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92914, + "TargetID": 92912, + "Directional": false + } + ] + }, + { + "ID": 4701, + "SourceStructureID": 16026, + "TargetStructureID": 92915, + "Label": "16026-92915 via Unknown from 92917 -> 92916", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92917, + "TargetID": 92916, + "Directional": false + } + ] + }, + { + "ID": 4702, + "SourceStructureID": 92920, + "TargetStructureID": 16026, + "Label": "92920-16026 via Unknown from 92922 -> 92921", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92922, + "TargetID": 92921, + "Directional": false + } + ] + }, + { + "ID": 4703, + "SourceStructureID": 16026, + "TargetStructureID": 93139, + "Label": "16026-93139 via Unknown from 125005 -> 125006", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 125005, + "TargetID": 125006, + "Directional": false + } + ] + }, + { + "ID": 4704, + "SourceStructureID": 16026, + "TargetStructureID": 104641, + "Label": "16026-104641 via Adherens from 104643 -> 104642", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 104643, + "TargetID": 104642, + "Directional": false + } + ] + }, + { + "ID": 4705, + "SourceStructureID": 16026, + "TargetStructureID": 122829, + "Label": "16026-122829 via Adherens from 114655 -> 134420", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 114655, + "TargetID": 134420, + "Directional": false + } + ] + }, + { + "ID": 4706, + "SourceStructureID": 122829, + "TargetStructureID": 16026, + "Label": "122829-16026 via Unknown from 123360 -> 114658", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 123360, + "TargetID": 114658, + "Directional": false + } + ] + }, + { + "ID": 4707, + "SourceStructureID": 16087, + "TargetStructureID": 67671, + "Label": "16087-67671 via Adherens from 78019 -> 78018", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78019, + "TargetID": 78018, + "Directional": false + } + ] + }, + { + "ID": 4708, + "SourceStructureID": 16087, + "TargetStructureID": 67671, + "Label": "16087-67671 via Gap Junction from 78017 -> 78016", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 78017, + "TargetID": 78016, + "Directional": false + } + ] + }, + { + "ID": 4709, + "SourceStructureID": 17527, + "TargetStructureID": 70095, + "Label": "17527-70095 via Gap Junction from 129046 -> 129045", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 129046, + "TargetID": 129045, + "Directional": false + } + ] + }, + { + "ID": 4710, + "SourceStructureID": 129048, + "TargetStructureID": 17527, + "Label": "129048-17527 via Gap Junction from 129049 -> 129047", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 129049, + "TargetID": 129047, + "Directional": false + } + ] + }, + { + "ID": 4711, + "SourceStructureID": 18693, + "TargetStructureID": 88702, + "Label": "18693-88702 via Gap Junction from 64739 -> 88705", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 64739, + "TargetID": 88705, + "Directional": false + } + ] + }, + { + "ID": 4712, + "SourceStructureID": 19203, + "TargetStructureID": 19203, + "Label": "19203-19203 via Gap Junction from 121653 -> 121654", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121653, + "TargetID": 121654, + "Directional": false + } + ] + }, + { + "ID": 4713, + "SourceStructureID": 19203, + "TargetStructureID": 28886, + "Label": "19203-28886 via Gap Junction from 51416 -> 51415, 51619 -> 51618, 51955 -> 51445, 120875 -> 51428, 121659 -> 121656", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51416, + "TargetID": 51415, + "Directional": false + }, + { + "SourceID": 51619, + "TargetID": 51618, + "Directional": false + }, + { + "SourceID": 51955, + "TargetID": 51445, + "Directional": false + }, + { + "SourceID": 120875, + "TargetID": 51428, + "Directional": false + }, + { + "SourceID": 121659, + "TargetID": 121656, + "Directional": false + } + ] + }, + { + "ID": 4714, + "SourceStructureID": 96102, + "TargetStructureID": 19203, + "Label": "96102-19203 via Adherens from 135824 -> 135823", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135824, + "TargetID": 135823, + "Directional": false + } + ] + }, + { + "ID": 4715, + "SourceStructureID": 121635, + "TargetStructureID": 19203, + "Label": "121635-19203 via Gap Junction from 121636 -> 121634", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121636, + "TargetID": 121634, + "Directional": false + } + ] + }, + { + "ID": 4716, + "SourceStructureID": 19203, + "TargetStructureID": 121644, + "Label": "19203-121644 via Gap Junction from 121643 -> 121645", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121643, + "TargetID": 121645, + "Directional": false + } + ] + }, + { + "ID": 4717, + "SourceStructureID": 19203, + "TargetStructureID": 121647, + "Label": "19203-121647 via Gap Junction from 121646 -> 121648", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121646, + "TargetID": 121648, + "Directional": false + } + ] + }, + { + "ID": 4718, + "SourceStructureID": 121660, + "TargetStructureID": 19203, + "Label": "121660-19203 via Gap Junction from 121662 -> 51953", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121662, + "TargetID": 51953, + "Directional": false + } + ] + }, + { + "ID": 4719, + "SourceStructureID": 20136, + "TargetStructureID": 20136, + "Label": "20136-20136 via Adherens from 135800 -> 135799", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135800, + "TargetID": 135799, + "Directional": false + } + ] + }, + { + "ID": 4720, + "SourceStructureID": 20136, + "TargetStructureID": 20136, + "Label": "20136-20136 via Gap Junction from 92412 -> 92413, 130800 -> 130801", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 92412, + "TargetID": 92413, + "Directional": false + }, + { + "SourceID": 130800, + "TargetID": 130801, + "Directional": false + } + ] + }, + { + "ID": 4721, + "SourceStructureID": 20136, + "TargetStructureID": 32911, + "Label": "20136-32911 via Adherens from 135776 -> 135777", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 135776, + "TargetID": 135777, + "Directional": false + } + ] + }, + { + "ID": 4722, + "SourceStructureID": 32911, + "TargetStructureID": 20136, + "Label": "32911-20136 via Gap Junction from 109157 -> 109158", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 109157, + "TargetID": 109158, + "Directional": false + } + ] + }, + { + "ID": 4723, + "SourceStructureID": 20136, + "TargetStructureID": 68277, + "Label": "20136-68277 via Adherens from 109898 -> 109899", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109898, + "TargetID": 109899, + "Directional": false + } + ] + }, + { + "ID": 4724, + "SourceStructureID": 20136, + "TargetStructureID": 83954, + "Label": "20136-83954 via Adherens from 109114 -> 109115", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109114, + "TargetID": 109115, + "Directional": false + } + ] + }, + { + "ID": 4725, + "SourceStructureID": 83981, + "TargetStructureID": 20136, + "Label": "83981-20136 via Unknown from 109024 -> 109025", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109024, + "TargetID": 109025, + "Directional": false + } + ] + }, + { + "ID": 4726, + "SourceStructureID": 96102, + "TargetStructureID": 20136, + "Label": "96102-20136 via Gap Junction from 96185 -> 110430", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96185, + "TargetID": 110430, + "Directional": false + } + ] + }, + { + "ID": 4727, + "SourceStructureID": 98762, + "TargetStructureID": 20136, + "Label": "98762-20136 via Adherens from 109904 -> 109903", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109904, + "TargetID": 109903, + "Directional": false + } + ] + }, + { + "ID": 4728, + "SourceStructureID": 20136, + "TargetStructureID": 108408, + "Label": "20136-108408 via BC Conventional Synapse from 108409 -> 108410", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 108409, + "TargetID": 108410, + "Directional": false + } + ] + }, + { + "ID": 4729, + "SourceStructureID": 20136, + "TargetStructureID": 108429, + "Label": "20136-108429 via Adherens from 108432 -> 108431", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108432, + "TargetID": 108431, + "Directional": false + } + ] + }, + { + "ID": 4730, + "SourceStructureID": 108434, + "TargetStructureID": 20136, + "Label": "108434-20136 via Unknown from 108435 -> 108438", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108435, + "TargetID": 108438, + "Directional": false + } + ] + }, + { + "ID": 4731, + "SourceStructureID": 108506, + "TargetStructureID": 20136, + "Label": "108506-20136 via Unknown from 108507 -> 108508", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108507, + "TargetID": 108508, + "Directional": false + } + ] + }, + { + "ID": 4732, + "SourceStructureID": 20136, + "TargetStructureID": 108512, + "Label": "20136-108512 via Adherens from 108516 -> 108515", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108516, + "TargetID": 108515, + "Directional": false + } + ] + }, + { + "ID": 4733, + "SourceStructureID": 20136, + "TargetStructureID": 108766, + "Label": "20136-108766 via Unknown from 108778 -> 108779", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108778, + "TargetID": 108779, + "Directional": false + } + ] + }, + { + "ID": 4734, + "SourceStructureID": 20136, + "TargetStructureID": 108770, + "Label": "20136-108770 via Adherens from 108773 -> 108774", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108773, + "TargetID": 108774, + "Directional": false + } + ] + }, + { + "ID": 4735, + "SourceStructureID": 20136, + "TargetStructureID": 108800, + "Label": "20136-108800 via Adherens from 108813 -> 108812", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108813, + "TargetID": 108812, + "Directional": false + } + ] + }, + { + "ID": 4736, + "SourceStructureID": 20136, + "TargetStructureID": 108804, + "Label": "20136-108804 via Adherens from 108811 -> 108810", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108811, + "TargetID": 108810, + "Directional": false + } + ] + }, + { + "ID": 4737, + "SourceStructureID": 20136, + "TargetStructureID": 108849, + "Label": "20136-108849 via Unknown from 108850 -> 108851", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108850, + "TargetID": 108851, + "Directional": false + } + ] + }, + { + "ID": 4738, + "SourceStructureID": 20136, + "TargetStructureID": 108853, + "Label": "20136-108853 via Unknown from 108854 -> 108855", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108854, + "TargetID": 108855, + "Directional": false + } + ] + }, + { + "ID": 4739, + "SourceStructureID": 20136, + "TargetStructureID": 108899, + "Label": "20136-108899 via Unknown from 108902 -> 108901", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108902, + "TargetID": 108901, + "Directional": false + } + ] + }, + { + "ID": 4740, + "SourceStructureID": 20136, + "TargetStructureID": 108903, + "Label": "20136-108903 via Unknown from 108909 -> 108908", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108909, + "TargetID": 108908, + "Directional": false + } + ] + }, + { + "ID": 4741, + "SourceStructureID": 108944, + "TargetStructureID": 20136, + "Label": "108944-20136 via Adherens from 108947 -> 108948", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108947, + "TargetID": 108948, + "Directional": false + } + ] + }, + { + "ID": 4742, + "SourceStructureID": 20136, + "TargetStructureID": 108963, + "Label": "20136-108963 via Unknown from 108965 -> 108964", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108965, + "TargetID": 108964, + "Directional": false + } + ] + }, + { + "ID": 4743, + "SourceStructureID": 20136, + "TargetStructureID": 108975, + "Label": "20136-108975 via Adherens from 108977 -> 108976", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 108977, + "TargetID": 108976, + "Directional": false + } + ] + }, + { + "ID": 4744, + "SourceStructureID": 20136, + "TargetStructureID": 109097, + "Label": "20136-109097 via Adherens from 109100 -> 109103", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109100, + "TargetID": 109103, + "Directional": false + } + ] + }, + { + "ID": 4745, + "SourceStructureID": 20136, + "TargetStructureID": 109116, + "Label": "20136-109116 via Adherens from 109170 -> 109171", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109170, + "TargetID": 109171, + "Directional": false + } + ] + }, + { + "ID": 4746, + "SourceStructureID": 20136, + "TargetStructureID": 109124, + "Label": "20136-109124 via Adherens from 109174 -> 109175", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109174, + "TargetID": 109175, + "Directional": false + } + ] + }, + { + "ID": 4747, + "SourceStructureID": 20136, + "TargetStructureID": 109190, + "Label": "20136-109190 via Unknown from 109192 -> 109191", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109192, + "TargetID": 109191, + "Directional": false + } + ] + }, + { + "ID": 4748, + "SourceStructureID": 20136, + "TargetStructureID": 109220, + "Label": "20136-109220 via Unknown from 109222 -> 109221", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109222, + "TargetID": 109221, + "Directional": false + } + ] + }, + { + "ID": 4749, + "SourceStructureID": 20136, + "TargetStructureID": 109223, + "Label": "20136-109223 via Unknown from 97826 -> 109224", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97826, + "TargetID": 109224, + "Directional": false + } + ] + }, + { + "ID": 4750, + "SourceStructureID": 109225, + "TargetStructureID": 20136, + "Label": "109225-20136 via Unknown from 109250 -> 109249", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109250, + "TargetID": 109249, + "Directional": false + } + ] + }, + { + "ID": 4751, + "SourceStructureID": 109257, + "TargetStructureID": 20136, + "Label": "109257-20136 via Adherens from 109265 -> 109266", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109265, + "TargetID": 109266, + "Directional": false + } + ] + }, + { + "ID": 4752, + "SourceStructureID": 20136, + "TargetStructureID": 109262, + "Label": "20136-109262 via Gap Junction from 109263 -> 109264", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 109263, + "TargetID": 109264, + "Directional": false + } + ] + }, + { + "ID": 4753, + "SourceStructureID": 20136, + "TargetStructureID": 109305, + "Label": "20136-109305 via Adherens from 109355 -> 109356", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109355, + "TargetID": 109356, + "Directional": false + } + ] + }, + { + "ID": 4754, + "SourceStructureID": 109350, + "TargetStructureID": 20136, + "Label": "109350-20136 via Unknown from 109351 -> 109349", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109351, + "TargetID": 109349, + "Directional": false + } + ] + }, + { + "ID": 4755, + "SourceStructureID": 20136, + "TargetStructureID": 109500, + "Label": "20136-109500 via Unknown from 109501 -> 109502", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109501, + "TargetID": 109502, + "Directional": false + } + ] + }, + { + "ID": 4756, + "SourceStructureID": 20136, + "TargetStructureID": 109540, + "Label": "20136-109540 via Unknown from 109682 -> 109684, 133989 -> 109684", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109682, + "TargetID": 109684, + "Directional": false + }, + { + "SourceID": 133989, + "TargetID": 109684, + "Directional": false + } + ] + }, + { + "ID": 4757, + "SourceStructureID": 20136, + "TargetStructureID": 109552, + "Label": "20136-109552 via Unknown from 109556 -> 109557", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109556, + "TargetID": 109557, + "Directional": false + } + ] + }, + { + "ID": 4758, + "SourceStructureID": 109582, + "TargetStructureID": 20136, + "Label": "109582-20136 via Unknown from 109583 -> 109584", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109583, + "TargetID": 109584, + "Directional": false + } + ] + }, + { + "ID": 4759, + "SourceStructureID": 109588, + "TargetStructureID": 20136, + "Label": "109588-20136 via Unknown from 109592 -> 109593", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109592, + "TargetID": 109593, + "Directional": false + } + ] + }, + { + "ID": 4760, + "SourceStructureID": 20136, + "TargetStructureID": 109674, + "Label": "20136-109674 via Unknown from 109682 -> 109683", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109682, + "TargetID": 109683, + "Directional": false + } + ] + }, + { + "ID": 4761, + "SourceStructureID": 20136, + "TargetStructureID": 109722, + "Label": "20136-109722 via Unknown from 109725 -> 109726, 109752 -> 109751", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109725, + "TargetID": 109726, + "Directional": false + }, + { + "SourceID": 109752, + "TargetID": 109751, + "Directional": false + } + ] + }, + { + "ID": 4762, + "SourceStructureID": 109753, + "TargetStructureID": 20136, + "Label": "109753-20136 via Unknown from 109754 -> 109755", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109754, + "TargetID": 109755, + "Directional": false + } + ] + }, + { + "ID": 4763, + "SourceStructureID": 109756, + "TargetStructureID": 20136, + "Label": "109756-20136 via Unknown from 109784 -> 109785", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109784, + "TargetID": 109785, + "Directional": false + } + ] + }, + { + "ID": 4764, + "SourceStructureID": 20136, + "TargetStructureID": 109774, + "Label": "20136-109774 via Unknown from 109359 -> 109775", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109359, + "TargetID": 109775, + "Directional": false + } + ] + }, + { + "ID": 4765, + "SourceStructureID": 20136, + "TargetStructureID": 109821, + "Label": "20136-109821 via Adherens from 109823 -> 109822", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109823, + "TargetID": 109822, + "Directional": false + } + ] + }, + { + "ID": 4766, + "SourceStructureID": 109853, + "TargetStructureID": 20136, + "Label": "109853-20136 via Adherens from 109854 -> 109855, 109867 -> 109868", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 109854, + "TargetID": 109855, + "Directional": false + }, + { + "SourceID": 109867, + "TargetID": 109868, + "Directional": false + } + ] + }, + { + "ID": 4767, + "SourceStructureID": 20136, + "TargetStructureID": 109873, + "Label": "20136-109873 via Unknown from 109874 -> 109875", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109874, + "TargetID": 109875, + "Directional": false + } + ] + }, + { + "ID": 4768, + "SourceStructureID": 109884, + "TargetStructureID": 20136, + "Label": "109884-20136 via Unknown from 109886 -> 109885", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109886, + "TargetID": 109885, + "Directional": false + } + ] + }, + { + "ID": 4769, + "SourceStructureID": 20136, + "TargetStructureID": 109908, + "Label": "20136-109908 via Unknown from 109909 -> 109910", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 109909, + "TargetID": 109910, + "Directional": false + } + ] + }, + { + "ID": 4770, + "SourceStructureID": 20136, + "TargetStructureID": 110227, + "Label": "20136-110227 via Unknown from 110229 -> 110230", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110229, + "TargetID": 110230, + "Directional": false + } + ] + }, + { + "ID": 4771, + "SourceStructureID": 110233, + "TargetStructureID": 20136, + "Label": "110233-20136 via Unknown from 110268 -> 110269", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110268, + "TargetID": 110269, + "Directional": false + } + ] + }, + { + "ID": 4772, + "SourceStructureID": 110265, + "TargetStructureID": 20136, + "Label": "110265-20136 via Unknown from 110266 -> 110267", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110266, + "TargetID": 110267, + "Directional": false + } + ] + }, + { + "ID": 4773, + "SourceStructureID": 110271, + "TargetStructureID": 20136, + "Label": "110271-20136 via Adherens from 110279 -> 110280", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110279, + "TargetID": 110280, + "Directional": false + } + ] + }, + { + "ID": 4774, + "SourceStructureID": 110292, + "TargetStructureID": 20136, + "Label": "110292-20136 via Adherens from 110344 -> 110264", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110344, + "TargetID": 110264, + "Directional": false + } + ] + }, + { + "ID": 4775, + "SourceStructureID": 110309, + "TargetStructureID": 20136, + "Label": "110309-20136 via Unknown from 110310 -> 110311", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110310, + "TargetID": 110311, + "Directional": false + } + ] + }, + { + "ID": 4776, + "SourceStructureID": 20136, + "TargetStructureID": 110327, + "Label": "20136-110327 via Adherens from 110328 -> 110329", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110328, + "TargetID": 110329, + "Directional": false + } + ] + }, + { + "ID": 4777, + "SourceStructureID": 110335, + "TargetStructureID": 20136, + "Label": "110335-20136 via Unknown from 110336 -> 110338", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110336, + "TargetID": 110338, + "Directional": false + } + ] + }, + { + "ID": 4778, + "SourceStructureID": 110340, + "TargetStructureID": 20136, + "Label": "110340-20136 via Adherens from 110341 -> 110342", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110341, + "TargetID": 110342, + "Directional": false + } + ] + }, + { + "ID": 4779, + "SourceStructureID": 110356, + "TargetStructureID": 20136, + "Label": "110356-20136 via Adherens from 110397 -> 110398", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110397, + "TargetID": 110398, + "Directional": false + } + ] + }, + { + "ID": 4780, + "SourceStructureID": 110367, + "TargetStructureID": 20136, + "Label": "110367-20136 via Gap Junction from 110369 -> 93852", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 110369, + "TargetID": 93852, + "Directional": false + } + ] + }, + { + "ID": 4781, + "SourceStructureID": 20136, + "TargetStructureID": 110394, + "Label": "20136-110394 via Unknown from 110409 -> 133990", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110409, + "TargetID": 133990, + "Directional": false + } + ] + }, + { + "ID": 4782, + "SourceStructureID": 20136, + "TargetStructureID": 110399, + "Label": "20136-110399 via Adherens from 110401 -> 110402", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110401, + "TargetID": 110402, + "Directional": false + } + ] + }, + { + "ID": 4783, + "SourceStructureID": 20136, + "TargetStructureID": 110412, + "Label": "20136-110412 via Unknown from 110413 -> 110414", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 110413, + "TargetID": 110414, + "Directional": false + } + ] + }, + { + "ID": 4784, + "SourceStructureID": 110416, + "TargetStructureID": 20136, + "Label": "110416-20136 via Adherens from 110427 -> 110428", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110427, + "TargetID": 110428, + "Directional": false + } + ] + }, + { + "ID": 4785, + "SourceStructureID": 21299, + "TargetStructureID": 21299, + "Label": "21299-21299 via Unknown from 91629 -> 91628", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91629, + "TargetID": 91628, + "Directional": false + } + ] + }, + { + "ID": 4786, + "SourceStructureID": 21299, + "TargetStructureID": 56583, + "Label": "21299-56583 via Unknown from 92833 -> 91739", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 92833, + "TargetID": 91739, + "Directional": false + } + ] + }, + { + "ID": 4787, + "SourceStructureID": 21299, + "TargetStructureID": 59422, + "Label": "21299-59422 via Touch from 59460 -> 59461", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 59460, + "TargetID": 59461, + "Directional": false + } + ] + }, + { + "ID": 4788, + "SourceStructureID": 21299, + "TargetStructureID": 88790, + "Label": "21299-88790 via Gap Junction from 48990 -> 91631", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48990, + "TargetID": 91631, + "Directional": false + } + ] + }, + { + "ID": 4789, + "SourceStructureID": 21299, + "TargetStructureID": 91585, + "Label": "21299-91585 via Gap Junction from 48875 -> 91586", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48875, + "TargetID": 91586, + "Directional": false + } + ] + }, + { + "ID": 4790, + "SourceStructureID": 91588, + "TargetStructureID": 21299, + "Label": "91588-21299 via Unknown from 91589 -> 91587", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91589, + "TargetID": 91587, + "Directional": false + } + ] + }, + { + "ID": 4791, + "SourceStructureID": 21299, + "TargetStructureID": 91593, + "Label": "21299-91593 via Gap Junction from 49005 -> 92590", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 49005, + "TargetID": 92590, + "Directional": false + } + ] + }, + { + "ID": 4792, + "SourceStructureID": 21299, + "TargetStructureID": 91593, + "Label": "21299-91593 via Unknown from 91600 -> 91599", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91600, + "TargetID": 91599, + "Directional": false + } + ] + }, + { + "ID": 4793, + "SourceStructureID": 91651, + "TargetStructureID": 21299, + "Label": "91651-21299 via Gap Junction from 91652 -> 49019", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91652, + "TargetID": 49019, + "Directional": false + } + ] + }, + { + "ID": 4794, + "SourceStructureID": 21299, + "TargetStructureID": 91653, + "Label": "21299-91653 via Unknown from 91656 -> 91655", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91656, + "TargetID": 91655, + "Directional": false + } + ] + }, + { + "ID": 4795, + "SourceStructureID": 91692, + "TargetStructureID": 21299, + "Label": "91692-21299 via Unknown from 91693 -> 91684", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91693, + "TargetID": 91684, + "Directional": false + } + ] + }, + { + "ID": 4796, + "SourceStructureID": 91694, + "TargetStructureID": 21299, + "Label": "91694-21299 via Unknown from 91695 -> 91685", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91695, + "TargetID": 91685, + "Directional": false + } + ] + }, + { + "ID": 4797, + "SourceStructureID": 91701, + "TargetStructureID": 21299, + "Label": "91701-21299 via Unknown from 91702 -> 48964", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91702, + "TargetID": 48964, + "Directional": false + } + ] + }, + { + "ID": 4798, + "SourceStructureID": 21299, + "TargetStructureID": 91709, + "Label": "21299-91709 via Adherens from 91714 -> 91713", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91714, + "TargetID": 91713, + "Directional": false + } + ] + }, + { + "ID": 4799, + "SourceStructureID": 91709, + "TargetStructureID": 21299, + "Label": "91709-21299 via Gap Junction from 91710 -> 91708", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91710, + "TargetID": 91708, + "Directional": false + } + ] + }, + { + "ID": 4800, + "SourceStructureID": 21299, + "TargetStructureID": 91723, + "Label": "21299-91723 via Gap Junction from 48841 -> 91724", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 48841, + "TargetID": 91724, + "Directional": false + } + ] + }, + { + "ID": 4801, + "SourceStructureID": 91727, + "TargetStructureID": 21299, + "Label": "91727-21299 via Gap Junction from 91728 -> 48810", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91728, + "TargetID": 48810, + "Directional": false + } + ] + }, + { + "ID": 4802, + "SourceStructureID": 91740, + "TargetStructureID": 21299, + "Label": "91740-21299 via Gap Junction from 91741 -> 48799", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91741, + "TargetID": 48799, + "Directional": false + } + ] + }, + { + "ID": 4803, + "SourceStructureID": 91743, + "TargetStructureID": 21299, + "Label": "91743-21299 via Gap Junction from 91744 -> 48802", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91744, + "TargetID": 48802, + "Directional": false + } + ] + }, + { + "ID": 4804, + "SourceStructureID": 91754, + "TargetStructureID": 21299, + "Label": "91754-21299 via Gap Junction from 91755 -> 48848", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 91755, + "TargetID": 48848, + "Directional": false + } + ] + }, + { + "ID": 4805, + "SourceStructureID": 91768, + "TargetStructureID": 21299, + "Label": "91768-21299 via Unknown from 91769 -> 91767", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 91769, + "TargetID": 91767, + "Directional": false + } + ] + }, + { + "ID": 4806, + "SourceStructureID": 98262, + "TargetStructureID": 21299, + "Label": "98262-21299 via Gap Junction from 98264 -> 48502", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 98264, + "TargetID": 48502, + "Directional": false + } + ] + }, + { + "ID": 4807, + "SourceStructureID": 119517, + "TargetStructureID": 21299, + "Label": "119517-21299 via Gap Junction from 119530 -> 119529", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 119530, + "TargetID": 119529, + "Directional": false + } + ] + }, + { + "ID": 4808, + "SourceStructureID": 131177, + "TargetStructureID": 21299, + "Label": "131177-21299 via Gap Junction from 131178 -> 131176", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 131178, + "TargetID": 131176, + "Directional": false + } + ] + }, + { + "ID": 4809, + "SourceStructureID": 131177, + "TargetStructureID": 21299, + "Label": "131177-21299 via Unknown from 133798 -> 133799", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 133798, + "TargetID": 133799, + "Directional": false + } + ] + }, + { + "ID": 4810, + "SourceStructureID": 21779, + "TargetStructureID": 22210, + "Label": "21779-22210 via Adherens from 32133 -> 32040", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 32133, + "TargetID": 32040, + "Directional": false + } + ] + }, + { + "ID": 4811, + "SourceStructureID": 32273, + "TargetStructureID": 21779, + "Label": "32273-21779 via Adherens from 32275 -> 32106", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 32275, + "TargetID": 32106, + "Directional": false + } + ] + }, + { + "ID": 4812, + "SourceStructureID": 68539, + "TargetStructureID": 22974, + "Label": "68539-22974 via Adherens from 70271 -> 68983", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70271, + "TargetID": 68983, + "Directional": false + } + ] + }, + { + "ID": 4813, + "SourceStructureID": 22974, + "TargetStructureID": 68563, + "Label": "22974-68563 via Adherens from 68562 -> 68564", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68562, + "TargetID": 68564, + "Directional": false + } + ] + }, + { + "ID": 4814, + "SourceStructureID": 68539, + "TargetStructureID": 22994, + "Label": "68539-22994 via Adherens from 75943 -> 75942", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75943, + "TargetID": 75942, + "Directional": false + } + ] + }, + { + "ID": 4815, + "SourceStructureID": 22994, + "TargetStructureID": 75933, + "Label": "22994-75933 via Adherens from 75938 -> 75937", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75938, + "TargetID": 75937, + "Directional": false + } + ] + }, + { + "ID": 4816, + "SourceStructureID": 23870, + "TargetStructureID": 73460, + "Label": "23870-73460 via Unknown from 73462 -> 73461", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73462, + "TargetID": 73461, + "Directional": false + } + ] + }, + { + "ID": 4817, + "SourceStructureID": 24303, + "TargetStructureID": 24303, + "Label": "24303-24303 via Unknown from 122496 -> 122495", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 122496, + "TargetID": 122495, + "Directional": false + } + ] + }, + { + "ID": 4818, + "SourceStructureID": 24303, + "TargetStructureID": 28886, + "Label": "24303-28886 via Gap Junction from 51373 -> 51372, 122498 -> 122497", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51373, + "TargetID": 51372, + "Directional": false + }, + { + "SourceID": 122498, + "TargetID": 122497, + "Directional": false + } + ] + }, + { + "ID": 4819, + "SourceStructureID": 122484, + "TargetStructureID": 24303, + "Label": "122484-24303 via Gap Junction from 122485 -> 122483", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122485, + "TargetID": 122483, + "Directional": false + } + ] + }, + { + "ID": 4820, + "SourceStructureID": 24303, + "TargetStructureID": 122488, + "Label": "24303-122488 via Gap Junction from 122487 -> 122489", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122487, + "TargetID": 122489, + "Directional": false + } + ] + }, + { + "ID": 4821, + "SourceStructureID": 24366, + "TargetStructureID": 24366, + "Label": "24366-24366 via Gap Junction from 24380 -> 24379", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 24380, + "TargetID": 24379, + "Directional": false + } + ] + }, + { + "ID": 4822, + "SourceStructureID": 105844, + "TargetStructureID": 24401, + "Label": "105844-24401 via Gap Junction from 105845 -> 105846", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 105845, + "TargetID": 105846, + "Directional": false + } + ] + }, + { + "ID": 4823, + "SourceStructureID": 121135, + "TargetStructureID": 24401, + "Label": "121135-24401 via Gap Junction from 121136 -> 48093", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121136, + "TargetID": 48093, + "Directional": false + } + ] + }, + { + "ID": 4824, + "SourceStructureID": 121141, + "TargetStructureID": 24401, + "Label": "121141-24401 via Gap Junction from 121142 -> 121140", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121142, + "TargetID": 121140, + "Directional": false + } + ] + }, + { + "ID": 4825, + "SourceStructureID": 24401, + "TargetStructureID": 121177, + "Label": "24401-121177 via Gap Junction from 121175 -> 121178", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121175, + "TargetID": 121178, + "Directional": false + } + ] + }, + { + "ID": 4826, + "SourceStructureID": 25155, + "TargetStructureID": 25155, + "Label": "25155-25155 via Gap Junction from 38210 -> 38211", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 38210, + "TargetID": 38211, + "Directional": false + } + ] + }, + { + "ID": 4827, + "SourceStructureID": 25359, + "TargetStructureID": 25342, + "Label": "25359-25342 via Unknown from 88461 -> 88463", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88461, + "TargetID": 88463, + "Directional": false + } + ] + }, + { + "ID": 4828, + "SourceStructureID": 25367, + "TargetStructureID": 68023, + "Label": "25367-68023 via Adherens from 82355 -> 68660", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82355, + "TargetID": 68660, + "Directional": false + } + ] + }, + { + "ID": 4829, + "SourceStructureID": 82362, + "TargetStructureID": 25367, + "Label": "82362-25367 via Unknown from 82363 -> 82361", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82363, + "TargetID": 82361, + "Directional": false + } + ] + }, + { + "ID": 4830, + "SourceStructureID": 25440, + "TargetStructureID": 54744, + "Label": "25440-54744 via Adherens from 91008 -> 91009, 91010 -> 91011", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91008, + "TargetID": 91009, + "Directional": false + }, + { + "SourceID": 91010, + "TargetID": 91011, + "Directional": false + } + ] + }, + { + "ID": 4831, + "SourceStructureID": 25869, + "TargetStructureID": 36419, + "Label": "25869-36419 via Adherens from 118361 -> 118360, 118365 -> 118364, 118369 -> 98606, 118370 -> 98607", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 118361, + "TargetID": 118360, + "Directional": false + }, + { + "SourceID": 118365, + "TargetID": 118364, + "Directional": false + }, + { + "SourceID": 118369, + "TargetID": 98606, + "Directional": false + }, + { + "SourceID": 118370, + "TargetID": 98607, + "Directional": false + } + ] + }, + { + "ID": 4832, + "SourceStructureID": 26079, + "TargetStructureID": 26079, + "Label": "26079-26079 via Gap Junction from 120871 -> 47043", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 120871, + "TargetID": 47043, + "Directional": false + } + ] + }, + { + "ID": 4833, + "SourceStructureID": 26079, + "TargetStructureID": 102007, + "Label": "26079-102007 via Unknown from 121243 -> 121244", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 121243, + "TargetID": 121244, + "Directional": false + } + ] + }, + { + "ID": 4834, + "SourceStructureID": 102517, + "TargetStructureID": 26079, + "Label": "102517-26079 via Unknown from 102938 -> 102937", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 102938, + "TargetID": 102937, + "Directional": false + } + ] + }, + { + "ID": 4835, + "SourceStructureID": 121258, + "TargetStructureID": 26079, + "Label": "121258-26079 via Gap Junction from 121259 -> 121257", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121259, + "TargetID": 121257, + "Directional": false + } + ] + }, + { + "ID": 4836, + "SourceStructureID": 26079, + "TargetStructureID": 121265, + "Label": "26079-121265 via Gap Junction from 121263 -> 121266", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121263, + "TargetID": 121266, + "Directional": false + } + ] + }, + { + "ID": 4837, + "SourceStructureID": 39862, + "TargetStructureID": 28886, + "Label": "39862-28886 via Gap Junction from 51357 -> 51356, 51386 -> 52365, 52317 -> 51336, 52368 -> 51400", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 51357, + "TargetID": 51356, + "Directional": false + }, + { + "SourceID": 51386, + "TargetID": 52365, + "Directional": false + }, + { + "SourceID": 52317, + "TargetID": 51336, + "Directional": false + }, + { + "SourceID": 52368, + "TargetID": 51400, + "Directional": false + } + ] + }, + { + "ID": 4838, + "SourceStructureID": 56973, + "TargetStructureID": 28886, + "Label": "56973-28886 via Gap Junction from 56974 -> 51418", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56974, + "TargetID": 51418, + "Directional": false + } + ] + }, + { + "ID": 4839, + "SourceStructureID": 56975, + "TargetStructureID": 28886, + "Label": "56975-28886 via Gap Junction from 56976 -> 51452", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 56976, + "TargetID": 51452, + "Directional": false + } + ] + }, + { + "ID": 4840, + "SourceStructureID": 30130, + "TargetStructureID": 68548, + "Label": "30130-68548 via Adherens from 75365 -> 75364", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75365, + "TargetID": 75364, + "Directional": false + } + ] + }, + { + "ID": 4841, + "SourceStructureID": 31161, + "TargetStructureID": 31024, + "Label": "31161-31024 via Adherens from 31175 -> 31113", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 31175, + "TargetID": 31113, + "Directional": false + } + ] + }, + { + "ID": 4842, + "SourceStructureID": 31024, + "TargetStructureID": 75272, + "Label": "31024-75272 via Adherens from 75278 -> 75277", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75278, + "TargetID": 75277, + "Directional": false + } + ] + }, + { + "ID": 4843, + "SourceStructureID": 68486, + "TargetStructureID": 31161, + "Label": "68486-31161 via Adherens from 79607 -> 79606", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79607, + "TargetID": 79606, + "Directional": false + } + ] + }, + { + "ID": 4844, + "SourceStructureID": 31702, + "TargetStructureID": 39998, + "Label": "31702-39998 via Adherens from 40001 -> 40000", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 40001, + "TargetID": 40000, + "Directional": false + } + ] + }, + { + "ID": 4845, + "SourceStructureID": 40844, + "TargetStructureID": 32035, + "Label": "40844-32035 via Adherens from 40847 -> 32041", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 40847, + "TargetID": 32041, + "Directional": false + } + ] + }, + { + "ID": 4846, + "SourceStructureID": 61114, + "TargetStructureID": 32383, + "Label": "61114-32383 via Gap Junction from 61115 -> 61113", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 61115, + "TargetID": 61113, + "Directional": false + } + ] + }, + { + "ID": 4847, + "SourceStructureID": 80755, + "TargetStructureID": 32654, + "Label": "80755-32654 via Gap Junction from 80778 -> 80777", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 80778, + "TargetID": 80777, + "Directional": false + } + ] + }, + { + "ID": 4848, + "SourceStructureID": 32804, + "TargetStructureID": 64196, + "Label": "32804-64196 via Adherens from 64212 -> 64213", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64212, + "TargetID": 64213, + "Directional": false + } + ] + }, + { + "ID": 4849, + "SourceStructureID": 32959, + "TargetStructureID": 60535, + "Label": "32959-60535 via Adherens from 60539 -> 60538", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 60539, + "TargetID": 60538, + "Directional": false + } + ] + }, + { + "ID": 4850, + "SourceStructureID": 68277, + "TargetStructureID": 35176, + "Label": "68277-35176 via Adherens from 82248 -> 82249", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82248, + "TargetID": 82249, + "Directional": false + } + ] + }, + { + "ID": 4851, + "SourceStructureID": 86201, + "TargetStructureID": 35894, + "Label": "86201-35894 via Adherens from 86208 -> 35933", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86208, + "TargetID": 35933, + "Directional": false + } + ] + }, + { + "ID": 4852, + "SourceStructureID": 82743, + "TargetStructureID": 36130, + "Label": "82743-36130 via Adherens from 82785 -> 82786", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82785, + "TargetID": 82786, + "Directional": false + } + ] + }, + { + "ID": 4853, + "SourceStructureID": 36516, + "TargetStructureID": 67331, + "Label": "36516-67331 via Gap Junction from 67335 -> 67334", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 67335, + "TargetID": 67334, + "Directional": false + } + ] + }, + { + "ID": 4854, + "SourceStructureID": 36516, + "TargetStructureID": 67410, + "Label": "36516-67410 via Adherens from 82771 -> 82770", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82771, + "TargetID": 82770, + "Directional": false + } + ] + }, + { + "ID": 4855, + "SourceStructureID": 90530, + "TargetStructureID": 38632, + "Label": "90530-38632 via Adherens from 90532 -> 90533", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90532, + "TargetID": 90533, + "Directional": false + } + ] + }, + { + "ID": 4856, + "SourceStructureID": 40934, + "TargetStructureID": 39216, + "Label": "40934-39216 via Unknown from 90144 -> 90146", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90144, + "TargetID": 90146, + "Directional": false + } + ] + }, + { + "ID": 4857, + "SourceStructureID": 39530, + "TargetStructureID": 97024, + "Label": "39530-97024 via Unknown from 97083 -> 97082", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 97083, + "TargetID": 97082, + "Directional": false + } + ] + }, + { + "ID": 4858, + "SourceStructureID": 116581, + "TargetStructureID": 39615, + "Label": "116581-39615 via Adherens from 116583 -> 116580", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116583, + "TargetID": 116580, + "Directional": false + } + ] + }, + { + "ID": 4859, + "SourceStructureID": 39787, + "TargetStructureID": 39790, + "Label": "39787-39790 via Gap Junction from 93135 -> 93136", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93135, + "TargetID": 93136, + "Directional": false + } + ] + }, + { + "ID": 4860, + "SourceStructureID": 39807, + "TargetStructureID": 39816, + "Label": "39807-39816 via Gap Junction from 89977 -> 89976", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89977, + "TargetID": 89976, + "Directional": false + } + ] + }, + { + "ID": 4861, + "SourceStructureID": 39816, + "TargetStructureID": 39824, + "Label": "39816-39824 via Unknown from 89973 -> 89975", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89973, + "TargetID": 89975, + "Directional": false + } + ] + }, + { + "ID": 4862, + "SourceStructureID": 40039, + "TargetStructureID": 80210, + "Label": "40039-80210 via Adherens from 84382 -> 84383", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84382, + "TargetID": 84383, + "Directional": false + } + ] + }, + { + "ID": 4863, + "SourceStructureID": 40039, + "TargetStructureID": 82704, + "Label": "40039-82704 via Adherens from 82705 -> 82706", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82705, + "TargetID": 82706, + "Directional": false + } + ] + }, + { + "ID": 4864, + "SourceStructureID": 40039, + "TargetStructureID": 86162, + "Label": "40039-86162 via Gap Junction from 82701 -> 86163", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 82701, + "TargetID": 86163, + "Directional": false + } + ] + }, + { + "ID": 4865, + "SourceStructureID": 40469, + "TargetStructureID": 40469, + "Label": "40469-40469 via Adherens from 40492 -> 40491", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 40492, + "TargetID": 40491, + "Directional": false + } + ] + }, + { + "ID": 4866, + "SourceStructureID": 40911, + "TargetStructureID": 40917, + "Label": "40911-40917 via Unknown from 93294 -> 93293", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 93294, + "TargetID": 93293, + "Directional": false + } + ] + }, + { + "ID": 4867, + "SourceStructureID": 90328, + "TargetStructureID": 40951, + "Label": "90328-40951 via Unknown from 90342 -> 90343", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90342, + "TargetID": 90343, + "Directional": false + } + ] + }, + { + "ID": 4868, + "SourceStructureID": 41474, + "TargetStructureID": 41474, + "Label": "41474-41474 via Gap Junction from 103300 -> 103299", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 103300, + "TargetID": 103299, + "Directional": false + } + ] + }, + { + "ID": 4869, + "SourceStructureID": 41608, + "TargetStructureID": 66523, + "Label": "41608-66523 via Adherens from 77955 -> 77954", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77955, + "TargetID": 77954, + "Directional": false + } + ] + }, + { + "ID": 4870, + "SourceStructureID": 68497, + "TargetStructureID": 41608, + "Label": "68497-41608 via Adherens from 81598 -> 81599", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81598, + "TargetID": 81599, + "Directional": false + } + ] + }, + { + "ID": 4871, + "SourceStructureID": 41636, + "TargetStructureID": 85946, + "Label": "41636-85946 via Gap Junction from 85949 -> 85948", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 85949, + "TargetID": 85948, + "Directional": false + } + ] + }, + { + "ID": 4872, + "SourceStructureID": 68444, + "TargetStructureID": 43431, + "Label": "68444-43431 via Adherens from 80455 -> 80456", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80455, + "TargetID": 80456, + "Directional": false + } + ] + }, + { + "ID": 4873, + "SourceStructureID": 68585, + "TargetStructureID": 43712, + "Label": "68585-43712 via Adherens from 68586 -> 68584", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68586, + "TargetID": 68584, + "Directional": false + } + ] + }, + { + "ID": 4874, + "SourceStructureID": 43716, + "TargetStructureID": 88260, + "Label": "43716-88260 via Adherens from 88298 -> 88297", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88298, + "TargetID": 88297, + "Directional": false + } + ] + }, + { + "ID": 4875, + "SourceStructureID": 44970, + "TargetStructureID": 44346, + "Label": "44970-44346 via Adherens from 44976 -> 44347", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 44976, + "TargetID": 44347, + "Directional": false + } + ] + }, + { + "ID": 4876, + "SourceStructureID": 44346, + "TargetStructureID": 87972, + "Label": "44346-87972 via Adherens from 44367 -> 88042, 87976 -> 87977, 87984 -> 87985, 87986 -> 87987, 88041 -> 88040", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 44367, + "TargetID": 88042, + "Directional": false + }, + { + "SourceID": 87976, + "TargetID": 87977, + "Directional": false + }, + { + "SourceID": 87984, + "TargetID": 87985, + "Directional": false + }, + { + "SourceID": 87986, + "TargetID": 87987, + "Directional": false + }, + { + "SourceID": 88041, + "TargetID": 88040, + "Directional": false + } + ] + }, + { + "ID": 4877, + "SourceStructureID": 68539, + "TargetStructureID": 45555, + "Label": "68539-45555 via Adherens from 70278 -> 70277", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70278, + "TargetID": 70277, + "Directional": false + } + ] + }, + { + "ID": 4878, + "SourceStructureID": 68539, + "TargetStructureID": 45571, + "Label": "68539-45571 via Adherens from 76036 -> 70282", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76036, + "TargetID": 70282, + "Directional": false + } + ] + }, + { + "ID": 4879, + "SourceStructureID": 61836, + "TargetStructureID": 45574, + "Label": "61836-45574 via Adherens from 69787 -> 69788", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 69787, + "TargetID": 69788, + "Directional": false + } + ] + }, + { + "ID": 4880, + "SourceStructureID": 46801, + "TargetStructureID": 45894, + "Label": "46801-45894 via Gap Junction from 46802 -> 45905", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46802, + "TargetID": 45905, + "Directional": false + } + ] + }, + { + "ID": 4881, + "SourceStructureID": 46388, + "TargetStructureID": 46105, + "Label": "46388-46105 via Gap Junction from 46397 -> 46233", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 46397, + "TargetID": 46233, + "Directional": false + } + ] + }, + { + "ID": 4882, + "SourceStructureID": 46388, + "TargetStructureID": 50449, + "Label": "46388-50449 via Gap Junction from 121433 -> 121434, 121436 -> 120843, 121442 -> 121443", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121433, + "TargetID": 121434, + "Directional": false + }, + { + "SourceID": 121436, + "TargetID": 120843, + "Directional": false + }, + { + "SourceID": 121442, + "TargetID": 121443, + "Directional": false + } + ] + }, + { + "ID": 4883, + "SourceStructureID": 89120, + "TargetStructureID": 46388, + "Label": "89120-46388 via Gap Junction from 89147 -> 46588, 122403 -> 122402", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89147, + "TargetID": 46588, + "Directional": false + }, + { + "SourceID": 122403, + "TargetID": 122402, + "Directional": false + } + ] + }, + { + "ID": 4884, + "SourceStructureID": 118258, + "TargetStructureID": 46388, + "Label": "118258-46388 via Gap Junction from 118260 -> 148231, 118261 -> 148232", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118260, + "TargetID": 148231, + "Directional": false + }, + { + "SourceID": 118261, + "TargetID": 148232, + "Directional": false + } + ] + }, + { + "ID": 4885, + "SourceStructureID": 46498, + "TargetStructureID": 136884, + "Label": "46498-136884 via Conventional from 127915 -> 136888", + "Type": "Conventional", + "Directional": false, + "Links": [ + { + "SourceID": 127915, + "TargetID": 136888, + "Directional": false + } + ] + }, + { + "ID": 4886, + "SourceStructureID": 69162, + "TargetStructureID": 47013, + "Label": "69162-47013 via Adherens from 69256 -> 47027", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 69256, + "TargetID": 47027, + "Directional": false + } + ] + }, + { + "ID": 4887, + "SourceStructureID": 47445, + "TargetStructureID": 47445, + "Label": "47445-47445 via Gap Junction from 118185 -> 118184", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118185, + "TargetID": 118184, + "Directional": false + } + ] + }, + { + "ID": 4888, + "SourceStructureID": 121889, + "TargetStructureID": 47445, + "Label": "121889-47445 via Gap Junction from 121891 -> 118187", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121891, + "TargetID": 118187, + "Directional": false + } + ] + }, + { + "ID": 4889, + "SourceStructureID": 132009, + "TargetStructureID": 47445, + "Label": "132009-47445 via Gap Junction from 132024 -> 132026", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132024, + "TargetID": 132026, + "Directional": false + } + ] + }, + { + "ID": 4890, + "SourceStructureID": 48516, + "TargetStructureID": 48516, + "Label": "48516-48516 via Adherens from 93796 -> 93798", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93796, + "TargetID": 93798, + "Directional": false + } + ] + }, + { + "ID": 4891, + "SourceStructureID": 48516, + "TargetStructureID": 48516, + "Label": "48516-48516 via Gap Junction from 93795 -> 51691, 93800 -> 52027, 93803 -> 93802", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93795, + "TargetID": 51691, + "Directional": false + }, + { + "SourceID": 93800, + "TargetID": 52027, + "Directional": false + }, + { + "SourceID": 93803, + "TargetID": 93802, + "Directional": false + } + ] + }, + { + "ID": 4892, + "SourceStructureID": 48516, + "TargetStructureID": 64939, + "Label": "48516-64939 via Gap Junction from 93818 -> 93819, 123298 -> 123299", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93818, + "TargetID": 93819, + "Directional": false + }, + { + "SourceID": 123298, + "TargetID": 123299, + "Directional": false + } + ] + }, + { + "ID": 4893, + "SourceStructureID": 93790, + "TargetStructureID": 48516, + "Label": "93790-48516 via Gap Junction from 93791 -> 93783", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 93791, + "TargetID": 93783, + "Directional": false + } + ] + }, + { + "ID": 4894, + "SourceStructureID": 89020, + "TargetStructureID": 49184, + "Label": "89020-49184 via Gap Junction from 89021 -> 49356", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89021, + "TargetID": 49356, + "Directional": false + } + ] + }, + { + "ID": 4895, + "SourceStructureID": 89029, + "TargetStructureID": 49184, + "Label": "89029-49184 via Gap Junction from 89030 -> 49344", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89030, + "TargetID": 49344, + "Directional": false + } + ] + }, + { + "ID": 4896, + "SourceStructureID": 50449, + "TargetStructureID": 89120, + "Label": "50449-89120 via Gap Junction from 122407 -> 122406", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 122407, + "TargetID": 122406, + "Directional": false + } + ] + }, + { + "ID": 4897, + "SourceStructureID": 89829, + "TargetStructureID": 50894, + "Label": "89829-50894 via Gap Junction from 89830 -> 52399", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89830, + "TargetID": 52399, + "Directional": false + } + ] + }, + { + "ID": 4898, + "SourceStructureID": 88733, + "TargetStructureID": 51617, + "Label": "88733-51617 via Unknown from 115464 -> 115463", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 115464, + "TargetID": 115463, + "Directional": false + } + ] + }, + { + "ID": 4899, + "SourceStructureID": 52410, + "TargetStructureID": 87294, + "Label": "52410-87294 via Adherens from 87299 -> 87298", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87299, + "TargetID": 87298, + "Directional": false + } + ] + }, + { + "ID": 4900, + "SourceStructureID": 53828, + "TargetStructureID": 53778, + "Label": "53828-53778 via Gap Junction from 54666 -> 54665", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 54666, + "TargetID": 54665, + "Directional": false + } + ] + }, + { + "ID": 4901, + "SourceStructureID": 53828, + "TargetStructureID": 53828, + "Label": "53828-53828 via Gap Junction from 123118 -> 123117", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 123118, + "TargetID": 123117, + "Directional": false + } + ] + }, + { + "ID": 4902, + "SourceStructureID": 67864, + "TargetStructureID": 54078, + "Label": "67864-54078 via Adherens from 67865 -> 67863", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67865, + "TargetID": 67863, + "Directional": false + } + ] + }, + { + "ID": 4903, + "SourceStructureID": 88975, + "TargetStructureID": 55098, + "Label": "88975-55098 via Adherens from 88976 -> 88974", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88976, + "TargetID": 88974, + "Directional": false + } + ] + }, + { + "ID": 4904, + "SourceStructureID": 57133, + "TargetStructureID": 117127, + "Label": "57133-117127 via Gap Junction from 57138 -> 117144", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 57138, + "TargetID": 117144, + "Directional": false + } + ] + }, + { + "ID": 4905, + "SourceStructureID": 57353, + "TargetStructureID": 57353, + "Label": "57353-57353 via Unknown from 124425 -> 124426", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124425, + "TargetID": 124426, + "Directional": false + } + ] + }, + { + "ID": 4906, + "SourceStructureID": 61397, + "TargetStructureID": 57353, + "Label": "61397-57353 via Gap Junction from 124398 -> 124395", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 124398, + "TargetID": 124395, + "Directional": false + } + ] + }, + { + "ID": 4907, + "SourceStructureID": 124282, + "TargetStructureID": 57353, + "Label": "124282-57353 via Gap Junction from 124283 -> 124276, 124284 -> 124285", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 124283, + "TargetID": 124276, + "Directional": false + }, + { + "SourceID": 124284, + "TargetID": 124285, + "Directional": false + } + ] + }, + { + "ID": 4908, + "SourceStructureID": 57353, + "TargetStructureID": 124301, + "Label": "57353-124301 via Adherens from 124428 -> 124429", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 124428, + "TargetID": 124429, + "Directional": false + } + ] + }, + { + "ID": 4909, + "SourceStructureID": 124313, + "TargetStructureID": 57353, + "Label": "124313-57353 via Gap Junction from 124316 -> 124311", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 124316, + "TargetID": 124311, + "Directional": false + } + ] + }, + { + "ID": 4910, + "SourceStructureID": 124402, + "TargetStructureID": 57353, + "Label": "124402-57353 via Gap Junction from 124403 -> 124401", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 124403, + "TargetID": 124401, + "Directional": false + } + ] + }, + { + "ID": 4911, + "SourceStructureID": 86620, + "TargetStructureID": 58696, + "Label": "86620-58696 via Adherens from 86621 -> 86619", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86621, + "TargetID": 86619, + "Directional": false + } + ] + }, + { + "ID": 4912, + "SourceStructureID": 86927, + "TargetStructureID": 58696, + "Label": "86927-58696 via Adherens from 86930 -> 86929", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86930, + "TargetID": 86929, + "Directional": false + } + ] + }, + { + "ID": 4913, + "SourceStructureID": 86945, + "TargetStructureID": 58696, + "Label": "86945-58696 via Adherens from 86949 -> 86948", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86949, + "TargetID": 86948, + "Directional": false + } + ] + }, + { + "ID": 4914, + "SourceStructureID": 86971, + "TargetStructureID": 58696, + "Label": "86971-58696 via Adherens from 86973 -> 86974, 86978 -> 86977", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86973, + "TargetID": 86974, + "Directional": false + }, + { + "SourceID": 86978, + "TargetID": 86977, + "Directional": false + } + ] + }, + { + "ID": 4915, + "SourceStructureID": 58723, + "TargetStructureID": 58714, + "Label": "58723-58714 via Adherens from 86140 -> 86139", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86140, + "TargetID": 86139, + "Directional": false + } + ] + }, + { + "ID": 4916, + "SourceStructureID": 58784, + "TargetStructureID": 58782, + "Label": "58784-58782 via Gap Junction from 58788 -> 58787", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 58788, + "TargetID": 58787, + "Directional": false + } + ] + }, + { + "ID": 4917, + "SourceStructureID": 59211, + "TargetStructureID": 59208, + "Label": "59211-59208 via Gap Junction from 59213 -> 59214", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59213, + "TargetID": 59214, + "Directional": false + } + ] + }, + { + "ID": 4918, + "SourceStructureID": 59211, + "TargetStructureID": 59219, + "Label": "59211-59219 via Gap Junction from 59218 -> 59220", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59218, + "TargetID": 59220, + "Directional": false + } + ] + }, + { + "ID": 4919, + "SourceStructureID": 59225, + "TargetStructureID": 59223, + "Label": "59225-59223 via Gap Junction from 59226 -> 59224", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59226, + "TargetID": 59224, + "Directional": false + } + ] + }, + { + "ID": 4920, + "SourceStructureID": 59229, + "TargetStructureID": 59223, + "Label": "59229-59223 via Gap Junction from 59230 -> 59231, 59235 -> 59237, 59238 -> 59239, 59241 -> 59240", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59230, + "TargetID": 59231, + "Directional": false + }, + { + "SourceID": 59235, + "TargetID": 59237, + "Directional": false + }, + { + "SourceID": 59238, + "TargetID": 59239, + "Directional": false + }, + { + "SourceID": 59241, + "TargetID": 59240, + "Directional": false + } + ] + }, + { + "ID": 4921, + "SourceStructureID": 59294, + "TargetStructureID": 59262, + "Label": "59294-59262 via Unknown from 59295 -> 59293", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 59295, + "TargetID": 59293, + "Directional": false + } + ] + }, + { + "ID": 4922, + "SourceStructureID": 59262, + "TargetStructureID": 59301, + "Label": "59262-59301 via Gap Junction from 59299 -> 59302", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59299, + "TargetID": 59302, + "Directional": false + } + ] + }, + { + "ID": 4923, + "SourceStructureID": 59262, + "TargetStructureID": 59304, + "Label": "59262-59304 via Gap Junction from 59306 -> 59307", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59306, + "TargetID": 59307, + "Directional": false + } + ] + }, + { + "ID": 4924, + "SourceStructureID": 59340, + "TargetStructureID": 59333, + "Label": "59340-59333 via Gap Junction from 59341 -> 59339", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59341, + "TargetID": 59339, + "Directional": false + } + ] + }, + { + "ID": 4925, + "SourceStructureID": 85050, + "TargetStructureID": 59333, + "Label": "85050-59333 via Adherens from 85051 -> 85049", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85051, + "TargetID": 85049, + "Directional": false + } + ] + }, + { + "ID": 4926, + "SourceStructureID": 85056, + "TargetStructureID": 59333, + "Label": "85056-59333 via Adherens from 85057 -> 85055", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85057, + "TargetID": 85055, + "Directional": false + } + ] + }, + { + "ID": 4927, + "SourceStructureID": 59333, + "TargetStructureID": 85062, + "Label": "59333-85062 via Adherens from 85064 -> 85063", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85064, + "TargetID": 85063, + "Directional": false + } + ] + }, + { + "ID": 4928, + "SourceStructureID": 59392, + "TargetStructureID": 59362, + "Label": "59392-59362 via Gap Junction from 59401 -> 59403, 59414 -> 59415", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59401, + "TargetID": 59403, + "Directional": false + }, + { + "SourceID": 59414, + "TargetID": 59415, + "Directional": false + } + ] + }, + { + "ID": 4929, + "SourceStructureID": 59419, + "TargetStructureID": 85141, + "Label": "59419-85141 via Adherens from 85272 -> 85271", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85272, + "TargetID": 85271, + "Directional": false + } + ] + }, + { + "ID": 4930, + "SourceStructureID": 59419, + "TargetStructureID": 85141, + "Label": "59419-85141 via Gap Junction from 85273 -> 85267, 85384 -> 85383", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 85273, + "TargetID": 85267, + "Directional": false + }, + { + "SourceID": 85384, + "TargetID": 85383, + "Directional": false + } + ] + }, + { + "ID": 4931, + "SourceStructureID": 59419, + "TargetStructureID": 85352, + "Label": "59419-85352 via Adherens from 85355 -> 85354", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85355, + "TargetID": 85354, + "Directional": false + } + ] + }, + { + "ID": 4932, + "SourceStructureID": 59422, + "TargetStructureID": 59469, + "Label": "59422-59469 via Gap Junction from 59472 -> 59470", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59472, + "TargetID": 59470, + "Directional": false + } + ] + }, + { + "ID": 4933, + "SourceStructureID": 65267, + "TargetStructureID": 59455, + "Label": "65267-59455 via Gap Junction from 69949 -> 59457", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 69949, + "TargetID": 59457, + "Directional": false + } + ] + }, + { + "ID": 4934, + "SourceStructureID": 59474, + "TargetStructureID": 59469, + "Label": "59474-59469 via Gap Junction from 59475 -> 59473", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59475, + "TargetID": 59473, + "Directional": false + } + ] + }, + { + "ID": 4935, + "SourceStructureID": 59477, + "TargetStructureID": 59474, + "Label": "59477-59474 via Gap Junction from 59478 -> 59476, 59479 -> 59481", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59478, + "TargetID": 59476, + "Directional": false + }, + { + "SourceID": 59479, + "TargetID": 59481, + "Directional": false + } + ] + }, + { + "ID": 4936, + "SourceStructureID": 59474, + "TargetStructureID": 59491, + "Label": "59474-59491 via Gap Junction from 59496 -> 59495", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59496, + "TargetID": 59495, + "Directional": false + } + ] + }, + { + "ID": 4937, + "SourceStructureID": 59524, + "TargetStructureID": 59523, + "Label": "59524-59523 via Gap Junction from 59527 -> 59528", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 59527, + "TargetID": 59528, + "Directional": false + } + ] + }, + { + "ID": 4938, + "SourceStructureID": 159518, + "TargetStructureID": 60863, + "Label": "159518-60863 via Unknown from 159522 -> 159524", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 159522, + "TargetID": 159524, + "Directional": false + } + ] + }, + { + "ID": 4939, + "SourceStructureID": 60989, + "TargetStructureID": 60976, + "Label": "60989-60976 via Gap Junction from 60993 -> 60987", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 60993, + "TargetID": 60987, + "Directional": false + } + ] + }, + { + "ID": 4940, + "SourceStructureID": 61108, + "TargetStructureID": 79350, + "Label": "61108-79350 via Unknown from 117738 -> 79352", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 117738, + "TargetID": 79352, + "Directional": false + } + ] + }, + { + "ID": 4941, + "SourceStructureID": 68707, + "TargetStructureID": 61117, + "Label": "68707-61117 via Adherens from 68709 -> 68708, 68711 -> 68710", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68709, + "TargetID": 68708, + "Directional": false + }, + { + "SourceID": 68711, + "TargetID": 68710, + "Directional": false + } + ] + }, + { + "ID": 4942, + "SourceStructureID": 61809, + "TargetStructureID": 61807, + "Label": "61809-61807 via Adherens from 68383 -> 68385", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68383, + "TargetID": 68385, + "Directional": false + } + ] + }, + { + "ID": 4943, + "SourceStructureID": 61809, + "TargetStructureID": 80491, + "Label": "61809-80491 via Adherens from 80490 -> 80492", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80490, + "TargetID": 80492, + "Directional": false + } + ] + }, + { + "ID": 4944, + "SourceStructureID": 68548, + "TargetStructureID": 61823, + "Label": "68548-61823 via Gap Junction from 73558 -> 64616", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 73558, + "TargetID": 64616, + "Directional": false + } + ] + }, + { + "ID": 4945, + "SourceStructureID": 70317, + "TargetStructureID": 61823, + "Label": "70317-61823 via Adherens from 70320 -> 70316", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70320, + "TargetID": 70316, + "Directional": false + } + ] + }, + { + "ID": 4946, + "SourceStructureID": 61823, + "TargetStructureID": 70343, + "Label": "61823-70343 via Adherens from 70345 -> 70344", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70345, + "TargetID": 70344, + "Directional": false + } + ] + }, + { + "ID": 4947, + "SourceStructureID": 61864, + "TargetStructureID": 68901, + "Label": "61864-68901 via Adherens from 68913 -> 68912", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68913, + "TargetID": 68912, + "Directional": false + } + ] + }, + { + "ID": 4948, + "SourceStructureID": 62325, + "TargetStructureID": 80516, + "Label": "62325-80516 via Adherens from 80515 -> 80517", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80515, + "TargetID": 80517, + "Directional": false + } + ] + }, + { + "ID": 4949, + "SourceStructureID": 62325, + "TargetStructureID": 80534, + "Label": "62325-80534 via Adherens from 80909 -> 80908", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80909, + "TargetID": 80908, + "Directional": false + } + ] + }, + { + "ID": 4950, + "SourceStructureID": 80684, + "TargetStructureID": 62325, + "Label": "80684-62325 via Unknown from 80688 -> 80687", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80688, + "TargetID": 80687, + "Directional": false + } + ] + }, + { + "ID": 4951, + "SourceStructureID": 62325, + "TargetStructureID": 80751, + "Label": "62325-80751 via Gap Junction from 62331 -> 80752", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 62331, + "TargetID": 80752, + "Directional": false + } + ] + }, + { + "ID": 4952, + "SourceStructureID": 62325, + "TargetStructureID": 80849, + "Label": "62325-80849 via Unknown from 80850 -> 80851", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80850, + "TargetID": 80851, + "Directional": false + } + ] + }, + { + "ID": 4953, + "SourceStructureID": 62325, + "TargetStructureID": 80871, + "Label": "62325-80871 via Adherens from 80994 -> 80995", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80994, + "TargetID": 80995, + "Directional": false + } + ] + }, + { + "ID": 4954, + "SourceStructureID": 80896, + "TargetStructureID": 62325, + "Label": "80896-62325 via Adherens from 80903 -> 80902", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80903, + "TargetID": 80902, + "Directional": false + } + ] + }, + { + "ID": 4955, + "SourceStructureID": 62325, + "TargetStructureID": 80896, + "Label": "62325-80896 via Unknown from 80906 -> 80907", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 80906, + "TargetID": 80907, + "Directional": false + } + ] + }, + { + "ID": 4956, + "SourceStructureID": 81267, + "TargetStructureID": 62325, + "Label": "81267-62325 via Adherens from 81268 -> 81269", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81268, + "TargetID": 81269, + "Directional": false + } + ] + }, + { + "ID": 4957, + "SourceStructureID": 62325, + "TargetStructureID": 81282, + "Label": "62325-81282 via Gap Junction from 81284 -> 81283", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 81284, + "TargetID": 81283, + "Directional": false + } + ] + }, + { + "ID": 4958, + "SourceStructureID": 62325, + "TargetStructureID": 81304, + "Label": "62325-81304 via Adherens from 81307 -> 81306, 81312 -> 81280, 81314 -> 81313", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81307, + "TargetID": 81306, + "Directional": false + }, + { + "SourceID": 81312, + "TargetID": 81280, + "Directional": false + }, + { + "SourceID": 81314, + "TargetID": 81313, + "Directional": false + } + ] + }, + { + "ID": 4959, + "SourceStructureID": 81304, + "TargetStructureID": 62325, + "Label": "81304-62325 via Gap Junction from 81383 -> 81382, 81390 -> 81389", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 81383, + "TargetID": 81382, + "Directional": false + }, + { + "SourceID": 81390, + "TargetID": 81389, + "Directional": false + } + ] + }, + { + "ID": 4960, + "SourceStructureID": 81308, + "TargetStructureID": 62325, + "Label": "81308-62325 via Adherens from 81310 -> 81309", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81310, + "TargetID": 81309, + "Directional": false + } + ] + }, + { + "ID": 4961, + "SourceStructureID": 81308, + "TargetStructureID": 62325, + "Label": "81308-62325 via Unknown from 81385 -> 81384", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81385, + "TargetID": 81384, + "Directional": false + } + ] + }, + { + "ID": 4962, + "SourceStructureID": 62325, + "TargetStructureID": 81316, + "Label": "62325-81316 via Unknown from 81318 -> 81320", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81318, + "TargetID": 81320, + "Directional": false + } + ] + }, + { + "ID": 4963, + "SourceStructureID": 81361, + "TargetStructureID": 62325, + "Label": "81361-62325 via Adherens from 81364 -> 81365", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81364, + "TargetID": 81365, + "Directional": false + } + ] + }, + { + "ID": 4964, + "SourceStructureID": 62325, + "TargetStructureID": 81361, + "Label": "62325-81361 via Gap Junction from 81362 -> 81363", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 81362, + "TargetID": 81363, + "Directional": false + } + ] + }, + { + "ID": 4965, + "SourceStructureID": 81366, + "TargetStructureID": 62325, + "Label": "81366-62325 via Gap Junction from 81369 -> 81368", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 81369, + "TargetID": 81368, + "Directional": false + } + ] + }, + { + "ID": 4966, + "SourceStructureID": 62325, + "TargetStructureID": 81367, + "Label": "62325-81367 via Gap Junction from 81370 -> 81371", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 81370, + "TargetID": 81371, + "Directional": false + } + ] + }, + { + "ID": 4967, + "SourceStructureID": 62325, + "TargetStructureID": 81373, + "Label": "62325-81373 via Adherens from 81376 -> 81374", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81376, + "TargetID": 81374, + "Directional": false + } + ] + }, + { + "ID": 4968, + "SourceStructureID": 62325, + "TargetStructureID": 81422, + "Label": "62325-81422 via Unknown from 81424 -> 81423", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81424, + "TargetID": 81423, + "Directional": false + } + ] + }, + { + "ID": 4969, + "SourceStructureID": 65351, + "TargetStructureID": 63371, + "Label": "65351-63371 via Adherens from 79032 -> 79031", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79032, + "TargetID": 79031, + "Directional": false + } + ] + }, + { + "ID": 4970, + "SourceStructureID": 64417, + "TargetStructureID": 64414, + "Label": "64417-64414 via Adherens from 64419 -> 64416", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 64419, + "TargetID": 64416, + "Directional": false + } + ] + }, + { + "ID": 4971, + "SourceStructureID": 89599, + "TargetStructureID": 64452, + "Label": "89599-64452 via Adherens from 89600 -> 89598", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89600, + "TargetID": 89598, + "Directional": false + } + ] + }, + { + "ID": 4972, + "SourceStructureID": 89599, + "TargetStructureID": 64452, + "Label": "89599-64452 via Gap Junction from 89601 -> 89597", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89601, + "TargetID": 89597, + "Directional": false + } + ] + }, + { + "ID": 4973, + "SourceStructureID": 64452, + "TargetStructureID": 89617, + "Label": "64452-89617 via Adherens from 89615 -> 89619", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89615, + "TargetID": 89619, + "Directional": false + } + ] + }, + { + "ID": 4974, + "SourceStructureID": 111986, + "TargetStructureID": 64452, + "Label": "111986-64452 via Adherens from 111988 -> 111989", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 111988, + "TargetID": 111989, + "Directional": false + } + ] + }, + { + "ID": 4975, + "SourceStructureID": 65576, + "TargetStructureID": 64492, + "Label": "65576-64492 via Adherens from 65583 -> 65582", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65583, + "TargetID": 65582, + "Directional": false + } + ] + }, + { + "ID": 4976, + "SourceStructureID": 64492, + "TargetStructureID": 65963, + "Label": "64492-65963 via Adherens from 65975 -> 65976", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65975, + "TargetID": 65976, + "Directional": false + } + ] + }, + { + "ID": 4977, + "SourceStructureID": 69428, + "TargetStructureID": 64939, + "Label": "69428-64939 via Gap Junction from 69429 -> 69420", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 69429, + "TargetID": 69420, + "Directional": false + } + ] + }, + { + "ID": 4978, + "SourceStructureID": 69431, + "TargetStructureID": 64939, + "Label": "69431-64939 via Adherens from 69432 -> 69430", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 69432, + "TargetID": 69430, + "Directional": false + } + ] + }, + { + "ID": 4979, + "SourceStructureID": 64939, + "TargetStructureID": 70084, + "Label": "64939-70084 via Gap Junction from 69724 -> 70085", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 69724, + "TargetID": 70085, + "Directional": false + } + ] + }, + { + "ID": 4980, + "SourceStructureID": 74907, + "TargetStructureID": 64939, + "Label": "74907-64939 via Adherens from 83779 -> 83780", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83779, + "TargetID": 83780, + "Directional": false + } + ] + }, + { + "ID": 4981, + "SourceStructureID": 64939, + "TargetStructureID": 74907, + "Label": "64939-74907 via Unknown from 83840 -> 83835", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83840, + "TargetID": 83835, + "Directional": false + } + ] + }, + { + "ID": 4982, + "SourceStructureID": 66523, + "TargetStructureID": 65318, + "Label": "66523-65318 via Adherens from 77925 -> 77924", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77925, + "TargetID": 77924, + "Directional": false + } + ] + }, + { + "ID": 4983, + "SourceStructureID": 65320, + "TargetStructureID": 67423, + "Label": "65320-67423 via Adherens from 81356 -> 81357", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81356, + "TargetID": 81357, + "Directional": false + } + ] + }, + { + "ID": 4984, + "SourceStructureID": 67291, + "TargetStructureID": 65324, + "Label": "67291-65324 via Adherens from 67296 -> 67295", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67296, + "TargetID": 67295, + "Directional": false + } + ] + }, + { + "ID": 4985, + "SourceStructureID": 76947, + "TargetStructureID": 65351, + "Label": "76947-65351 via Adherens from 79007 -> 79006", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79007, + "TargetID": 79006, + "Directional": false + } + ] + }, + { + "ID": 4986, + "SourceStructureID": 78950, + "TargetStructureID": 65351, + "Label": "78950-65351 via Adherens from 78951 -> 78952", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78951, + "TargetID": 78952, + "Directional": false + } + ] + }, + { + "ID": 4987, + "SourceStructureID": 78964, + "TargetStructureID": 65351, + "Label": "78964-65351 via Adherens from 78973 -> 78972", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78973, + "TargetID": 78972, + "Directional": false + } + ] + }, + { + "ID": 4988, + "SourceStructureID": 78964, + "TargetStructureID": 65351, + "Label": "78964-65351 via Unknown from 78965 -> 78963", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78965, + "TargetID": 78963, + "Directional": false + } + ] + }, + { + "ID": 4989, + "SourceStructureID": 65351, + "TargetStructureID": 78977, + "Label": "65351-78977 via Adherens from 78976 -> 78978", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78976, + "TargetID": 78978, + "Directional": false + } + ] + }, + { + "ID": 4990, + "SourceStructureID": 65351, + "TargetStructureID": 79034, + "Label": "65351-79034 via Adherens from 79040 -> 79036", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79040, + "TargetID": 79036, + "Directional": false + } + ] + }, + { + "ID": 4991, + "SourceStructureID": 79045, + "TargetStructureID": 65351, + "Label": "79045-65351 via Adherens from 79046 -> 79044", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79046, + "TargetID": 79044, + "Directional": false + } + ] + }, + { + "ID": 4992, + "SourceStructureID": 65358, + "TargetStructureID": 65369, + "Label": "65358-65369 via Adherens from 65370 -> 65371", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 65370, + "TargetID": 65371, + "Directional": false + } + ] + }, + { + "ID": 4993, + "SourceStructureID": 65470, + "TargetStructureID": 65464, + "Label": "65470-65464 via Gap Junction from 65471 -> 65469", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 65471, + "TargetID": 65469, + "Directional": false + } + ] + }, + { + "ID": 4994, + "SourceStructureID": 116703, + "TargetStructureID": 65536, + "Label": "116703-65536 via Adherens from 116704 -> 67069", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116704, + "TargetID": 67069, + "Directional": false + } + ] + }, + { + "ID": 4995, + "SourceStructureID": 65623, + "TargetStructureID": 65569, + "Label": "65623-65569 via Adherens from 81391 -> 81392", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81391, + "TargetID": 81392, + "Directional": false + } + ] + }, + { + "ID": 4996, + "SourceStructureID": 83461, + "TargetStructureID": 65835, + "Label": "83461-65835 via Gap Junction from 83462 -> 83460, 83463 -> 83464", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 83462, + "TargetID": 83460, + "Directional": false + }, + { + "SourceID": 83463, + "TargetID": 83464, + "Directional": false + } + ] + }, + { + "ID": 4997, + "SourceStructureID": 67322, + "TargetStructureID": 65864, + "Label": "67322-65864 via Postsynapse from 67363 -> 65879", + "Type": "Postsynapse", + "Directional": false, + "Links": [ + { + "SourceID": 67363, + "TargetID": 65879, + "Directional": false + } + ] + }, + { + "ID": 4998, + "SourceStructureID": 65893, + "TargetStructureID": 66053, + "Label": "65893-66053 via Adherens from 84437 -> 84436", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84437, + "TargetID": 84436, + "Directional": false + } + ] + }, + { + "ID": 4999, + "SourceStructureID": 66809, + "TargetStructureID": 66031, + "Label": "66809-66031 via Adherens from 66042 -> 66043", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66042, + "TargetID": 66043, + "Directional": false + } + ] + }, + { + "ID": 5000, + "SourceStructureID": 68214, + "TargetStructureID": 66096, + "Label": "68214-66096 via Adherens from 68449 -> 68448", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68449, + "TargetID": 68448, + "Directional": false + } + ] + }, + { + "ID": 5001, + "SourceStructureID": 66096, + "TargetStructureID": 68292, + "Label": "66096-68292 via Adherens from 70005 -> 68293", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70005, + "TargetID": 68293, + "Directional": false + } + ] + }, + { + "ID": 5002, + "SourceStructureID": 66102, + "TargetStructureID": 66339, + "Label": "66102-66339 via Adherens from 84259 -> 84258", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84259, + "TargetID": 84258, + "Directional": false + } + ] + }, + { + "ID": 5003, + "SourceStructureID": 66102, + "TargetStructureID": 67350, + "Label": "66102-67350 via Adherens from 68323 -> 68322", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68323, + "TargetID": 68322, + "Directional": false + } + ] + }, + { + "ID": 5004, + "SourceStructureID": 66114, + "TargetStructureID": 66111, + "Label": "66114-66111 via Gap Junction from 66115 -> 66113", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 66115, + "TargetID": 66113, + "Directional": false + } + ] + }, + { + "ID": 5005, + "SourceStructureID": 66111, + "TargetStructureID": 68444, + "Label": "66111-68444 via Adherens from 68466 -> 68465, 68472 -> 68471", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68466, + "TargetID": 68465, + "Directional": false + }, + { + "SourceID": 68472, + "TargetID": 68471, + "Directional": false + } + ] + }, + { + "ID": 5006, + "SourceStructureID": 66278, + "TargetStructureID": 66295, + "Label": "66278-66295 via Adherens from 66294 -> 66296", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66294, + "TargetID": 66296, + "Directional": false + } + ] + }, + { + "ID": 5007, + "SourceStructureID": 66323, + "TargetStructureID": 84342, + "Label": "66323-84342 via Adherens from 84345 -> 84344", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84345, + "TargetID": 84344, + "Directional": false + } + ] + }, + { + "ID": 5008, + "SourceStructureID": 84407, + "TargetStructureID": 66323, + "Label": "84407-66323 via Adherens from 84409 -> 84406, 84414 -> 84415", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84409, + "TargetID": 84406, + "Directional": false + }, + { + "SourceID": 84414, + "TargetID": 84415, + "Directional": false + } + ] + }, + { + "ID": 5009, + "SourceStructureID": 84427, + "TargetStructureID": 66323, + "Label": "84427-66323 via Unknown from 84428 -> 84426", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84428, + "TargetID": 84426, + "Directional": false + } + ] + }, + { + "ID": 5010, + "SourceStructureID": 84429, + "TargetStructureID": 66323, + "Label": "84429-66323 via Unknown from 84431 -> 84430", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84431, + "TargetID": 84430, + "Directional": false + } + ] + }, + { + "ID": 5011, + "SourceStructureID": 66477, + "TargetStructureID": 66487, + "Label": "66477-66487 via Adherens from 66491 -> 66490", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66491, + "TargetID": 66490, + "Directional": false + } + ] + }, + { + "ID": 5012, + "SourceStructureID": 84127, + "TargetStructureID": 66477, + "Label": "84127-66477 via Adherens from 84128 -> 66491, 84133 -> 84132", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84128, + "TargetID": 66491, + "Directional": false + }, + { + "SourceID": 84133, + "TargetID": 84132, + "Directional": false + } + ] + }, + { + "ID": 5013, + "SourceStructureID": 66487, + "TargetStructureID": 66493, + "Label": "66487-66493 via Adherens from 84134 -> 84135", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84134, + "TargetID": 84135, + "Directional": false + } + ] + }, + { + "ID": 5014, + "SourceStructureID": 84127, + "TargetStructureID": 66487, + "Label": "84127-66487 via Adherens from 84128 -> 66490, 84130 -> 84131", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84128, + "TargetID": 66490, + "Directional": false + }, + { + "SourceID": 84130, + "TargetID": 84131, + "Directional": false + } + ] + }, + { + "ID": 5015, + "SourceStructureID": 66523, + "TargetStructureID": 66520, + "Label": "66523-66520 via Adherens from 66524 -> 66525", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66524, + "TargetID": 66525, + "Directional": false + } + ] + }, + { + "ID": 5016, + "SourceStructureID": 66523, + "TargetStructureID": 70415, + "Label": "66523-70415 via Adherens from 74884 -> 74885", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74884, + "TargetID": 74885, + "Directional": false + } + ] + }, + { + "ID": 5017, + "SourceStructureID": 66523, + "TargetStructureID": 75307, + "Label": "66523-75307 via Adherens from 75305 -> 75308", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75305, + "TargetID": 75308, + "Directional": false + } + ] + }, + { + "ID": 5018, + "SourceStructureID": 77965, + "TargetStructureID": 66523, + "Label": "77965-66523 via Adherens from 77969 -> 77968", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77969, + "TargetID": 77968, + "Directional": false + } + ] + }, + { + "ID": 5019, + "SourceStructureID": 66634, + "TargetStructureID": 71345, + "Label": "66634-71345 via Adherens from 75177 -> 75176", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75177, + "TargetID": 75176, + "Directional": false + } + ] + }, + { + "ID": 5020, + "SourceStructureID": 71351, + "TargetStructureID": 66634, + "Label": "71351-66634 via Adherens from 71914 -> 71913", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71914, + "TargetID": 71913, + "Directional": false + } + ] + }, + { + "ID": 5021, + "SourceStructureID": 66634, + "TargetStructureID": 71517, + "Label": "66634-71517 via Adherens from 66679 -> 66678, 72117 -> 72116", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66679, + "TargetID": 66678, + "Directional": false + }, + { + "SourceID": 72117, + "TargetID": 72116, + "Directional": false + } + ] + }, + { + "ID": 5022, + "SourceStructureID": 75179, + "TargetStructureID": 66634, + "Label": "75179-66634 via Adherens from 75180 -> 75178", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75180, + "TargetID": 75178, + "Directional": false + } + ] + }, + { + "ID": 5023, + "SourceStructureID": 66685, + "TargetStructureID": 66688, + "Label": "66685-66688 via Adherens from 83337 -> 83336", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83337, + "TargetID": 83336, + "Directional": false + } + ] + }, + { + "ID": 5024, + "SourceStructureID": 66731, + "TargetStructureID": 66734, + "Label": "66731-66734 via Adherens from 66736 -> 66737", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66736, + "TargetID": 66737, + "Directional": false + } + ] + }, + { + "ID": 5025, + "SourceStructureID": 66734, + "TargetStructureID": 66743, + "Label": "66734-66743 via Adherens from 66745 -> 66744", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66745, + "TargetID": 66744, + "Directional": false + } + ] + }, + { + "ID": 5026, + "SourceStructureID": 66768, + "TargetStructureID": 68214, + "Label": "66768-68214 via Adherens from 68484 -> 68483", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68484, + "TargetID": 68483, + "Directional": false + } + ] + }, + { + "ID": 5027, + "SourceStructureID": 66777, + "TargetStructureID": 66848, + "Label": "66777-66848 via Adherens from 66859 -> 66857", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66859, + "TargetID": 66857, + "Directional": false + } + ] + }, + { + "ID": 5028, + "SourceStructureID": 67626, + "TargetStructureID": 66779, + "Label": "67626-66779 via Adherens from 67628 -> 67629", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67628, + "TargetID": 67629, + "Directional": false + } + ] + }, + { + "ID": 5029, + "SourceStructureID": 66785, + "TargetStructureID": 66788, + "Label": "66785-66788 via Adherens from 66787 -> 66789", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66787, + "TargetID": 66789, + "Directional": false + } + ] + }, + { + "ID": 5030, + "SourceStructureID": 66809, + "TargetStructureID": 66804, + "Label": "66809-66804 via Adherens from 66868 -> 66869", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66868, + "TargetID": 66869, + "Directional": false + } + ] + }, + { + "ID": 5031, + "SourceStructureID": 66871, + "TargetStructureID": 66804, + "Label": "66871-66804 via Adherens from 66872 -> 66870, 66876 -> 66877", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66872, + "TargetID": 66870, + "Directional": false + }, + { + "SourceID": 66876, + "TargetID": 66877, + "Directional": false + } + ] + }, + { + "ID": 5032, + "SourceStructureID": 66952, + "TargetStructureID": 66809, + "Label": "66952-66809 via Unknown from 83042 -> 83043", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83042, + "TargetID": 83043, + "Directional": false + } + ] + }, + { + "ID": 5033, + "SourceStructureID": 68444, + "TargetStructureID": 66888, + "Label": "68444-66888 via Adherens from 68473 -> 68474", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68473, + "TargetID": 68474, + "Directional": false + } + ] + }, + { + "ID": 5034, + "SourceStructureID": 82305, + "TargetStructureID": 66888, + "Label": "82305-66888 via Adherens from 82321 -> 82322", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82321, + "TargetID": 82322, + "Directional": false + } + ] + }, + { + "ID": 5035, + "SourceStructureID": 66910, + "TargetStructureID": 66905, + "Label": "66910-66905 via Adherens from 66911 -> 66909", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 66911, + "TargetID": 66909, + "Directional": false + } + ] + }, + { + "ID": 5036, + "SourceStructureID": 66946, + "TargetStructureID": 68548, + "Label": "66946-68548 via Adherens from 82893 -> 75710", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82893, + "TargetID": 75710, + "Directional": false + } + ] + }, + { + "ID": 5037, + "SourceStructureID": 67736, + "TargetStructureID": 66958, + "Label": "67736-66958 via Adherens from 67746 -> 70029", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67746, + "TargetID": 70029, + "Directional": false + } + ] + }, + { + "ID": 5038, + "SourceStructureID": 68153, + "TargetStructureID": 66958, + "Label": "68153-66958 via Adherens from 70147 -> 70148", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70147, + "TargetID": 70148, + "Directional": false + } + ] + }, + { + "ID": 5039, + "SourceStructureID": 69908, + "TargetStructureID": 66958, + "Label": "69908-66958 via Adherens from 69909 -> 69318", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 69909, + "TargetID": 69318, + "Directional": false + } + ] + }, + { + "ID": 5040, + "SourceStructureID": 66958, + "TargetStructureID": 70126, + "Label": "66958-70126 via Adherens from 70128 -> 70127", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70128, + "TargetID": 70127, + "Directional": false + } + ] + }, + { + "ID": 5041, + "SourceStructureID": 66958, + "TargetStructureID": 70134, + "Label": "66958-70134 via Adherens from 70137 -> 70136", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70137, + "TargetID": 70136, + "Directional": false + } + ] + }, + { + "ID": 5042, + "SourceStructureID": 67042, + "TargetStructureID": 76463, + "Label": "67042-76463 via Adherens from 76462 -> 76464", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76462, + "TargetID": 76464, + "Directional": false + } + ] + }, + { + "ID": 5043, + "SourceStructureID": 67756, + "TargetStructureID": 67045, + "Label": "67756-67045 via Adherens from 75402 -> 68698", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75402, + "TargetID": 68698, + "Directional": false + } + ] + }, + { + "ID": 5044, + "SourceStructureID": 67140, + "TargetStructureID": 67135, + "Label": "67140-67135 via Adherens from 67141 -> 67139", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67141, + "TargetID": 67139, + "Directional": false + } + ] + }, + { + "ID": 5045, + "SourceStructureID": 67190, + "TargetStructureID": 67585, + "Label": "67190-67585 via Adherens from 67604 -> 67603", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67604, + "TargetID": 67603, + "Directional": false + } + ] + }, + { + "ID": 5046, + "SourceStructureID": 67266, + "TargetStructureID": 79254, + "Label": "67266-79254 via Adherens from 79253 -> 79255", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79253, + "TargetID": 79255, + "Directional": false + } + ] + }, + { + "ID": 5047, + "SourceStructureID": 82806, + "TargetStructureID": 67305, + "Label": "82806-67305 via Adherens from 82811 -> 82810", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82811, + "TargetID": 82810, + "Directional": false + } + ] + }, + { + "ID": 5048, + "SourceStructureID": 67350, + "TargetStructureID": 67337, + "Label": "67350-67337 via Gap Junction from 67351 -> 67349", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 67351, + "TargetID": 67349, + "Directional": false + } + ] + }, + { + "ID": 5049, + "SourceStructureID": 84260, + "TargetStructureID": 67350, + "Label": "84260-67350 via Adherens from 84263 -> 68320", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84263, + "TargetID": 68320, + "Directional": false + } + ] + }, + { + "ID": 5050, + "SourceStructureID": 67372, + "TargetStructureID": 67364, + "Label": "67372-67364 via Gap Junction from 67374 -> 67373", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 67374, + "TargetID": 67373, + "Directional": false + } + ] + }, + { + "ID": 5051, + "SourceStructureID": 82717, + "TargetStructureID": 67460, + "Label": "82717-67460 via Adherens from 82719 -> 82720", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82719, + "TargetID": 82720, + "Directional": false + } + ] + }, + { + "ID": 5052, + "SourceStructureID": 67520, + "TargetStructureID": 67508, + "Label": "67520-67508 via Adherens from 68919 -> 68918", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68919, + "TargetID": 68918, + "Directional": false + } + ] + }, + { + "ID": 5053, + "SourceStructureID": 67666, + "TargetStructureID": 67663, + "Label": "67666-67663 via Adherens from 67667 -> 67665", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67667, + "TargetID": 67665, + "Directional": false + } + ] + }, + { + "ID": 5054, + "SourceStructureID": 68497, + "TargetStructureID": 67671, + "Label": "68497-67671 via Adherens from 81581 -> 77356", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81581, + "TargetID": 77356, + "Directional": false + } + ] + }, + { + "ID": 5055, + "SourceStructureID": 67671, + "TargetStructureID": 77375, + "Label": "67671-77375 via Adherens from 77997 -> 77996", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77997, + "TargetID": 77996, + "Directional": false + } + ] + }, + { + "ID": 5056, + "SourceStructureID": 67671, + "TargetStructureID": 77378, + "Label": "67671-77378 via Adherens from 77999 -> 77998", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77999, + "TargetID": 77998, + "Directional": false + } + ] + }, + { + "ID": 5057, + "SourceStructureID": 67671, + "TargetStructureID": 77682, + "Label": "67671-77682 via Adherens from 78001 -> 78000", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78001, + "TargetID": 78000, + "Directional": false + } + ] + }, + { + "ID": 5058, + "SourceStructureID": 77985, + "TargetStructureID": 67671, + "Label": "77985-67671 via Adherens from 77986 -> 77987", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77986, + "TargetID": 77987, + "Directional": false + } + ] + }, + { + "ID": 5059, + "SourceStructureID": 78005, + "TargetStructureID": 67671, + "Label": "78005-67671 via Adherens from 78006 -> 78004", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78006, + "TargetID": 78004, + "Directional": false + } + ] + }, + { + "ID": 5060, + "SourceStructureID": 67671, + "TargetStructureID": 78021, + "Label": "67671-78021 via Adherens from 78020 -> 78022", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78020, + "TargetID": 78022, + "Directional": false + } + ] + }, + { + "ID": 5061, + "SourceStructureID": 67671, + "TargetStructureID": 78023, + "Label": "67671-78023 via Adherens from 78027 -> 78026", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78027, + "TargetID": 78026, + "Directional": false + } + ] + }, + { + "ID": 5062, + "SourceStructureID": 67671, + "TargetStructureID": 78042, + "Label": "67671-78042 via Adherens from 78041 -> 78044", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78041, + "TargetID": 78044, + "Directional": false + } + ] + }, + { + "ID": 5063, + "SourceStructureID": 67671, + "TargetStructureID": 78045, + "Label": "67671-78045 via Adherens from 78056 -> 78055", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78056, + "TargetID": 78055, + "Directional": false + } + ] + }, + { + "ID": 5064, + "SourceStructureID": 67671, + "TargetStructureID": 78074, + "Label": "67671-78074 via Adherens from 78073 -> 78076", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78073, + "TargetID": 78076, + "Directional": false + } + ] + }, + { + "ID": 5065, + "SourceStructureID": 78080, + "TargetStructureID": 67671, + "Label": "78080-67671 via Adherens from 78081 -> 78079", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78081, + "TargetID": 78079, + "Directional": false + } + ] + }, + { + "ID": 5066, + "SourceStructureID": 67671, + "TargetStructureID": 78228, + "Label": "67671-78228 via Adherens from 78407 -> 78408", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78407, + "TargetID": 78408, + "Directional": false + } + ] + }, + { + "ID": 5067, + "SourceStructureID": 78415, + "TargetStructureID": 67671, + "Label": "78415-67671 via Adherens from 78416 -> 78414", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78416, + "TargetID": 78414, + "Directional": false + } + ] + }, + { + "ID": 5068, + "SourceStructureID": 67689, + "TargetStructureID": 68548, + "Label": "67689-68548 via Adherens from 67691 -> 73570, 73571 -> 67691", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67691, + "TargetID": 73570, + "Directional": false + }, + { + "SourceID": 73571, + "TargetID": 67691, + "Directional": false + } + ] + }, + { + "ID": 5069, + "SourceStructureID": 68486, + "TargetStructureID": 67756, + "Label": "68486-67756 via Adherens from 79603 -> 79604", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79603, + "TargetID": 79604, + "Directional": false + } + ] + }, + { + "ID": 5070, + "SourceStructureID": 67796, + "TargetStructureID": 67796, + "Label": "67796-67796 via Adherens from 67798 -> 67799", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67798, + "TargetID": 67799, + "Directional": false + } + ] + }, + { + "ID": 5071, + "SourceStructureID": 67874, + "TargetStructureID": 67871, + "Label": "67874-67871 via Adherens from 67875 -> 67873", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 67875, + "TargetID": 67873, + "Directional": false + } + ] + }, + { + "ID": 5072, + "SourceStructureID": 67894, + "TargetStructureID": 68096, + "Label": "67894-68096 via Adherens from 82234 -> 68108", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82234, + "TargetID": 68108, + "Directional": false + } + ] + }, + { + "ID": 5073, + "SourceStructureID": 67952, + "TargetStructureID": 67947, + "Label": "67952-67947 via Adherens from 68092 -> 68084", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68092, + "TargetID": 68084, + "Directional": false + } + ] + }, + { + "ID": 5074, + "SourceStructureID": 68232, + "TargetStructureID": 68087, + "Label": "68232-68087 via Adherens from 68236 -> 68237", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68236, + "TargetID": 68237, + "Directional": false + } + ] + }, + { + "ID": 5075, + "SourceStructureID": 68093, + "TargetStructureID": 68153, + "Label": "68093-68153 via Adherens from 68174 -> 68173", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68174, + "TargetID": 68173, + "Directional": false + } + ] + }, + { + "ID": 5076, + "SourceStructureID": 68096, + "TargetStructureID": 68101, + "Label": "68096-68101 via Gap Junction from 68103 -> 68102", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 68103, + "TargetID": 68102, + "Directional": false + } + ] + }, + { + "ID": 5077, + "SourceStructureID": 68153, + "TargetStructureID": 68161, + "Label": "68153-68161 via Adherens from 68160 -> 68162, 68164 -> 68163", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68160, + "TargetID": 68162, + "Directional": false + }, + { + "SourceID": 68164, + "TargetID": 68163, + "Directional": false + } + ] + }, + { + "ID": 5078, + "SourceStructureID": 68168, + "TargetStructureID": 68153, + "Label": "68168-68153 via Adherens from 91164 -> 91163", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91164, + "TargetID": 91163, + "Directional": false + } + ] + }, + { + "ID": 5079, + "SourceStructureID": 68180, + "TargetStructureID": 68153, + "Label": "68180-68153 via Adherens from 68181 -> 68179", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68181, + "TargetID": 68179, + "Directional": false + } + ] + }, + { + "ID": 5080, + "SourceStructureID": 68153, + "TargetStructureID": 70058, + "Label": "68153-70058 via Adherens from 70056 -> 70059", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70056, + "TargetID": 70059, + "Directional": false + } + ] + }, + { + "ID": 5081, + "SourceStructureID": 70149, + "TargetStructureID": 68153, + "Label": "70149-68153 via Adherens from 70152 -> 70151", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70152, + "TargetID": 70151, + "Directional": false + } + ] + }, + { + "ID": 5082, + "SourceStructureID": 68153, + "TargetStructureID": 70171, + "Label": "68153-70171 via Adherens from 70168 -> 70174, 70169 -> 70173, 70170 -> 70172", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70168, + "TargetID": 70174, + "Directional": false + }, + { + "SourceID": 70169, + "TargetID": 70173, + "Directional": false + }, + { + "SourceID": 70170, + "TargetID": 70172, + "Directional": false + } + ] + }, + { + "ID": 5083, + "SourceStructureID": 68153, + "TargetStructureID": 70176, + "Label": "68153-70176 via Adherens from 70180 -> 70179", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70180, + "TargetID": 70179, + "Directional": false + } + ] + }, + { + "ID": 5084, + "SourceStructureID": 88050, + "TargetStructureID": 68153, + "Label": "88050-68153 via Adherens from 88051 -> 88048", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88051, + "TargetID": 88048, + "Directional": false + } + ] + }, + { + "ID": 5085, + "SourceStructureID": 68238, + "TargetStructureID": 68239, + "Label": "68238-68239 via Gap Junction from 68244 -> 68245", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 68244, + "TargetID": 68245, + "Directional": false + } + ] + }, + { + "ID": 5086, + "SourceStructureID": 68286, + "TargetStructureID": 80657, + "Label": "68286-80657 via Adherens from 80659 -> 80660", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80659, + "TargetID": 80660, + "Directional": false + } + ] + }, + { + "ID": 5087, + "SourceStructureID": 69162, + "TargetStructureID": 68289, + "Label": "69162-68289 via Adherens from 80645 -> 80644", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80645, + "TargetID": 80644, + "Directional": false + } + ] + }, + { + "ID": 5088, + "SourceStructureID": 68341, + "TargetStructureID": 79586, + "Label": "68341-79586 via Adherens from 80626 -> 79597", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80626, + "TargetID": 79597, + "Directional": false + } + ] + }, + { + "ID": 5089, + "SourceStructureID": 68444, + "TargetStructureID": 80459, + "Label": "68444-80459 via Adherens from 80461 -> 80462", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80461, + "TargetID": 80462, + "Directional": false + } + ] + }, + { + "ID": 5090, + "SourceStructureID": 80412, + "TargetStructureID": 68463, + "Label": "80412-68463 via Adherens from 80413 -> 80411", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80413, + "TargetID": 80411, + "Directional": false + } + ] + }, + { + "ID": 5091, + "SourceStructureID": 80419, + "TargetStructureID": 68463, + "Label": "80419-68463 via Adherens from 80420 -> 80418", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 80420, + "TargetID": 80418, + "Directional": false + } + ] + }, + { + "ID": 5092, + "SourceStructureID": 68486, + "TargetStructureID": 68669, + "Label": "68486-68669 via Adherens from 79610 -> 68674", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79610, + "TargetID": 68674, + "Directional": false + } + ] + }, + { + "ID": 5093, + "SourceStructureID": 79370, + "TargetStructureID": 68497, + "Label": "79370-68497 via Adherens from 81602 -> 81603", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81602, + "TargetID": 81603, + "Directional": false + } + ] + }, + { + "ID": 5094, + "SourceStructureID": 79474, + "TargetStructureID": 68497, + "Label": "79474-68497 via Adherens from 79475 -> 79473", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79475, + "TargetID": 79473, + "Directional": false + } + ] + }, + { + "ID": 5095, + "SourceStructureID": 68497, + "TargetStructureID": 79487, + "Label": "68497-79487 via Gap Junction from 79488 -> 79489", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 79488, + "TargetID": 79489, + "Directional": false + } + ] + }, + { + "ID": 5096, + "SourceStructureID": 68539, + "TargetStructureID": 68569, + "Label": "68539-68569 via Adherens from 68568 -> 68570", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 68568, + "TargetID": 68570, + "Directional": false + } + ] + }, + { + "ID": 5097, + "SourceStructureID": 69162, + "TargetStructureID": 68539, + "Label": "69162-68539 via Adherens from 69163 -> 69131, 69164 -> 69132", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 69163, + "TargetID": 69131, + "Directional": false + }, + { + "SourceID": 69164, + "TargetID": 69132, + "Directional": false + } + ] + }, + { + "ID": 5098, + "SourceStructureID": 68539, + "TargetStructureID": 70267, + "Label": "68539-70267 via Adherens from 70269 -> 70268", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70269, + "TargetID": 70268, + "Directional": false + } + ] + }, + { + "ID": 5099, + "SourceStructureID": 68539, + "TargetStructureID": 70302, + "Label": "68539-70302 via Adherens from 70306 -> 70305", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70306, + "TargetID": 70305, + "Directional": false + } + ] + }, + { + "ID": 5100, + "SourceStructureID": 68539, + "TargetStructureID": 70422, + "Label": "68539-70422 via Adherens from 76038 -> 70423", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76038, + "TargetID": 70423, + "Directional": false + } + ] + }, + { + "ID": 5101, + "SourceStructureID": 68539, + "TargetStructureID": 73314, + "Label": "68539-73314 via Adherens from 73321 -> 73320", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73321, + "TargetID": 73320, + "Directional": false + } + ] + }, + { + "ID": 5102, + "SourceStructureID": 68539, + "TargetStructureID": 73322, + "Label": "68539-73322 via Adherens from 73331 -> 73330", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73331, + "TargetID": 73330, + "Directional": false + } + ] + }, + { + "ID": 5103, + "SourceStructureID": 68539, + "TargetStructureID": 73350, + "Label": "68539-73350 via Adherens from 73591 -> 73592", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73591, + "TargetID": 73592, + "Directional": false + } + ] + }, + { + "ID": 5104, + "SourceStructureID": 73380, + "TargetStructureID": 68539, + "Label": "73380-68539 via Unknown from 73381 -> 73382", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73381, + "TargetID": 73382, + "Directional": false + } + ] + }, + { + "ID": 5105, + "SourceStructureID": 73390, + "TargetStructureID": 68539, + "Label": "73390-68539 via Adherens from 73392 -> 73393", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73392, + "TargetID": 73393, + "Directional": false + } + ] + }, + { + "ID": 5106, + "SourceStructureID": 73593, + "TargetStructureID": 68539, + "Label": "73593-68539 via Unknown from 73596 -> 73352", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73596, + "TargetID": 73352, + "Directional": false + } + ] + }, + { + "ID": 5107, + "SourceStructureID": 73594, + "TargetStructureID": 68539, + "Label": "73594-68539 via Unknown from 73595 -> 73352", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73595, + "TargetID": 73352, + "Directional": false + } + ] + }, + { + "ID": 5108, + "SourceStructureID": 73621, + "TargetStructureID": 68539, + "Label": "73621-68539 via Adherens from 73624 -> 73623", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73624, + "TargetID": 73623, + "Directional": false + } + ] + }, + { + "ID": 5109, + "SourceStructureID": 73644, + "TargetStructureID": 68539, + "Label": "73644-68539 via Adherens from 73645 -> 73643", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73645, + "TargetID": 73643, + "Directional": false + } + ] + }, + { + "ID": 5110, + "SourceStructureID": 73690, + "TargetStructureID": 68539, + "Label": "73690-68539 via Adherens from 73697 -> 73696", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73697, + "TargetID": 73696, + "Directional": false + } + ] + }, + { + "ID": 5111, + "SourceStructureID": 68539, + "TargetStructureID": 74237, + "Label": "68539-74237 via Adherens from 74250 -> 74249", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74250, + "TargetID": 74249, + "Directional": false + } + ] + }, + { + "ID": 5112, + "SourceStructureID": 74548, + "TargetStructureID": 68539, + "Label": "74548-68539 via Adherens from 74553 -> 74554", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74553, + "TargetID": 74554, + "Directional": false + } + ] + }, + { + "ID": 5113, + "SourceStructureID": 68539, + "TargetStructureID": 74576, + "Label": "68539-74576 via Adherens from 74581 -> 74582", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74581, + "TargetID": 74582, + "Directional": false + } + ] + }, + { + "ID": 5114, + "SourceStructureID": 68539, + "TargetStructureID": 74624, + "Label": "68539-74624 via Adherens from 74632 -> 74631", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74632, + "TargetID": 74631, + "Directional": false + } + ] + }, + { + "ID": 5115, + "SourceStructureID": 74645, + "TargetStructureID": 68539, + "Label": "74645-68539 via Adherens from 74652 -> 74651", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74652, + "TargetID": 74651, + "Directional": false + } + ] + }, + { + "ID": 5116, + "SourceStructureID": 74667, + "TargetStructureID": 68539, + "Label": "74667-68539 via Adherens from 74668 -> 74669", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74668, + "TargetID": 74669, + "Directional": false + } + ] + }, + { + "ID": 5117, + "SourceStructureID": 68539, + "TargetStructureID": 74902, + "Label": "68539-74902 via Unknown from 75769 -> 75770", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 75769, + "TargetID": 75770, + "Directional": false + } + ] + }, + { + "ID": 5118, + "SourceStructureID": 75816, + "TargetStructureID": 68539, + "Label": "75816-68539 via Adherens from 75818 -> 75817", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75818, + "TargetID": 75817, + "Directional": false + } + ] + }, + { + "ID": 5119, + "SourceStructureID": 75825, + "TargetStructureID": 68539, + "Label": "75825-68539 via Adherens from 75829 -> 75828", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75829, + "TargetID": 75828, + "Directional": false + } + ] + }, + { + "ID": 5120, + "SourceStructureID": 76039, + "TargetStructureID": 68539, + "Label": "76039-68539 via Adherens from 76044 -> 76045, 76046 -> 76047, 76048 -> 76049, 76050 -> 76051, 76053 -> 76054", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76044, + "TargetID": 76045, + "Directional": false + }, + { + "SourceID": 76046, + "TargetID": 76047, + "Directional": false + }, + { + "SourceID": 76048, + "TargetID": 76049, + "Directional": false + }, + { + "SourceID": 76050, + "TargetID": 76051, + "Directional": false + }, + { + "SourceID": 76053, + "TargetID": 76054, + "Directional": false + } + ] + }, + { + "ID": 5121, + "SourceStructureID": 76103, + "TargetStructureID": 68539, + "Label": "76103-68539 via Adherens from 76104 -> 76102", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76104, + "TargetID": 76102, + "Directional": false + } + ] + }, + { + "ID": 5122, + "SourceStructureID": 68548, + "TargetStructureID": 73528, + "Label": "68548-73528 via Adherens from 75727 -> 75726", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75727, + "TargetID": 75726, + "Directional": false + } + ] + }, + { + "ID": 5123, + "SourceStructureID": 68548, + "TargetStructureID": 74902, + "Label": "68548-74902 via Adherens from 76191 -> 76192", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76191, + "TargetID": 76192, + "Directional": false + } + ] + }, + { + "ID": 5124, + "SourceStructureID": 68548, + "TargetStructureID": 75359, + "Label": "68548-75359 via Adherens from 75715 -> 75716", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75715, + "TargetID": 75716, + "Directional": false + } + ] + }, + { + "ID": 5125, + "SourceStructureID": 68548, + "TargetStructureID": 75367, + "Label": "68548-75367 via Adherens from 75366 -> 75368", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75366, + "TargetID": 75368, + "Directional": false + } + ] + }, + { + "ID": 5126, + "SourceStructureID": 75678, + "TargetStructureID": 68548, + "Label": "75678-68548 via Adherens from 75680 -> 75681", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75680, + "TargetID": 75681, + "Directional": false + } + ] + }, + { + "ID": 5127, + "SourceStructureID": 68548, + "TargetStructureID": 75689, + "Label": "68548-75689 via Adherens from 75691 -> 75690", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75691, + "TargetID": 75690, + "Directional": false + } + ] + }, + { + "ID": 5128, + "SourceStructureID": 75695, + "TargetStructureID": 68548, + "Label": "75695-68548 via Adherens from 75698 -> 75697", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75698, + "TargetID": 75697, + "Directional": false + } + ] + }, + { + "ID": 5129, + "SourceStructureID": 68548, + "TargetStructureID": 75700, + "Label": "68548-75700 via Adherens from 75706 -> 75707", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75706, + "TargetID": 75707, + "Directional": false + } + ] + }, + { + "ID": 5130, + "SourceStructureID": 68548, + "TargetStructureID": 75728, + "Label": "68548-75728 via Adherens from 75732 -> 75731", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75732, + "TargetID": 75731, + "Directional": false + } + ] + }, + { + "ID": 5131, + "SourceStructureID": 75739, + "TargetStructureID": 68548, + "Label": "75739-68548 via Adherens from 75747 -> 75748", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75747, + "TargetID": 75748, + "Directional": false + } + ] + }, + { + "ID": 5132, + "SourceStructureID": 75761, + "TargetStructureID": 68548, + "Label": "75761-68548 via Adherens from 75762 -> 75763", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75762, + "TargetID": 75763, + "Directional": false + } + ] + }, + { + "ID": 5133, + "SourceStructureID": 68548, + "TargetStructureID": 75764, + "Label": "68548-75764 via Adherens from 75763 -> 75765", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75763, + "TargetID": 75765, + "Directional": false + } + ] + }, + { + "ID": 5134, + "SourceStructureID": 92926, + "TargetStructureID": 68548, + "Label": "92926-68548 via Adherens from 75687 -> 75688", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75687, + "TargetID": 75688, + "Directional": false + } + ] + }, + { + "ID": 5135, + "SourceStructureID": 68691, + "TargetStructureID": 68686, + "Label": "68691-68686 via Gap Junction from 68692 -> 68690", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 68692, + "TargetID": 68690, + "Directional": false + } + ] + }, + { + "ID": 5136, + "SourceStructureID": 69030, + "TargetStructureID": 69030, + "Label": "69030-69030 via Adherens from 110297 -> 110293", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110297, + "TargetID": 110293, + "Directional": false + } + ] + }, + { + "ID": 5137, + "SourceStructureID": 69030, + "TargetStructureID": 87345, + "Label": "69030-87345 via Adherens from 87353 -> 87354", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87353, + "TargetID": 87354, + "Directional": false + } + ] + }, + { + "ID": 5138, + "SourceStructureID": 78262, + "TargetStructureID": 69049, + "Label": "78262-69049 via Adherens from 82556 -> 82557", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82556, + "TargetID": 82557, + "Directional": false + } + ] + }, + { + "ID": 5139, + "SourceStructureID": 69363, + "TargetStructureID": 72384, + "Label": "69363-72384 via Adherens from 78707 -> 78708", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78707, + "TargetID": 78708, + "Directional": false + } + ] + }, + { + "ID": 5140, + "SourceStructureID": 72975, + "TargetStructureID": 69385, + "Label": "72975-69385 via Adherens from 72979 -> 72978, 72984 -> 72983", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72979, + "TargetID": 72978, + "Directional": false + }, + { + "SourceID": 72984, + "TargetID": 72983, + "Directional": false + } + ] + }, + { + "ID": 5141, + "SourceStructureID": 72975, + "TargetStructureID": 69385, + "Label": "72975-69385 via Gap Junction from 72982 -> 72981", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 72982, + "TargetID": 72981, + "Directional": false + } + ] + }, + { + "ID": 5142, + "SourceStructureID": 70050, + "TargetStructureID": 70046, + "Label": "70050-70046 via Adherens from 70051 -> 70049", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70051, + "TargetID": 70049, + "Directional": false + } + ] + }, + { + "ID": 5143, + "SourceStructureID": 70418, + "TargetStructureID": 70415, + "Label": "70418-70415 via Adherens from 70419 -> 70417", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70419, + "TargetID": 70417, + "Directional": false + } + ] + }, + { + "ID": 5144, + "SourceStructureID": 70454, + "TargetStructureID": 89554, + "Label": "70454-89554 via Adherens from 89557 -> 89556", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89557, + "TargetID": 89556, + "Directional": false + } + ] + }, + { + "ID": 5145, + "SourceStructureID": 89120, + "TargetStructureID": 70500, + "Label": "89120-70500 via Gap Junction from 89145 -> 89115, 122404 -> 122410, 122409 -> 122408, 122411 -> 122405", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89145, + "TargetID": 89115, + "Directional": false + }, + { + "SourceID": 122404, + "TargetID": 122410, + "Directional": false + }, + { + "SourceID": 122409, + "TargetID": 122408, + "Directional": false + }, + { + "SourceID": 122411, + "TargetID": 122405, + "Directional": false + } + ] + }, + { + "ID": 5146, + "SourceStructureID": 70659, + "TargetStructureID": 70655, + "Label": "70659-70655 via Adherens from 70661 -> 70662", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70661, + "TargetID": 70662, + "Directional": false + } + ] + }, + { + "ID": 5147, + "SourceStructureID": 70684, + "TargetStructureID": 70712, + "Label": "70684-70712 via Adherens from 70715 -> 70714", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70715, + "TargetID": 70714, + "Directional": false + } + ] + }, + { + "ID": 5148, + "SourceStructureID": 70684, + "TargetStructureID": 70712, + "Label": "70684-70712 via Gap Junction from 70719 -> 70718", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 70719, + "TargetID": 70718, + "Directional": false + } + ] + }, + { + "ID": 5149, + "SourceStructureID": 70743, + "TargetStructureID": 70745, + "Label": "70743-70745 via Adherens from 70754 -> 70753", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70754, + "TargetID": 70753, + "Directional": false + } + ] + }, + { + "ID": 5150, + "SourceStructureID": 70789, + "TargetStructureID": 70795, + "Label": "70789-70795 via Adherens from 70794 -> 70797", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70794, + "TargetID": 70797, + "Directional": false + } + ] + }, + { + "ID": 5151, + "SourceStructureID": 70987, + "TargetStructureID": 70924, + "Label": "70987-70924 via Adherens from 70988 -> 70929, 71002 -> 71000, 71030 -> 71029, 71039 -> 71040", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 70988, + "TargetID": 70929, + "Directional": false + }, + { + "SourceID": 71002, + "TargetID": 71000, + "Directional": false + }, + { + "SourceID": 71030, + "TargetID": 71029, + "Directional": false + }, + { + "SourceID": 71039, + "TargetID": 71040, + "Directional": false + } + ] + }, + { + "ID": 5152, + "SourceStructureID": 71118, + "TargetStructureID": 71063, + "Label": "71118-71063 via Gap Junction from 71120 -> 71078", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71120, + "TargetID": 71078, + "Directional": false + } + ] + }, + { + "ID": 5153, + "SourceStructureID": 71538, + "TargetStructureID": 71517, + "Label": "71538-71517 via Adherens from 74950 -> 74949", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74950, + "TargetID": 74949, + "Directional": false + } + ] + }, + { + "ID": 5154, + "SourceStructureID": 71517, + "TargetStructureID": 71545, + "Label": "71517-71545 via Adherens from 72119 -> 72120", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72119, + "TargetID": 72120, + "Directional": false + } + ] + }, + { + "ID": 5155, + "SourceStructureID": 74388, + "TargetStructureID": 71517, + "Label": "74388-71517 via Adherens from 75011 -> 75010", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75011, + "TargetID": 75010, + "Directional": false + } + ] + }, + { + "ID": 5156, + "SourceStructureID": 71517, + "TargetStructureID": 74931, + "Label": "71517-74931 via Adherens from 74932 -> 74933", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74932, + "TargetID": 74933, + "Directional": false + } + ] + }, + { + "ID": 5157, + "SourceStructureID": 74952, + "TargetStructureID": 71517, + "Label": "74952-71517 via Gap Junction from 74954 -> 74953", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 74954, + "TargetID": 74953, + "Directional": false + } + ] + }, + { + "ID": 5158, + "SourceStructureID": 74969, + "TargetStructureID": 71517, + "Label": "74969-71517 via Adherens from 74975 -> 74976", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74975, + "TargetID": 74976, + "Directional": false + } + ] + }, + { + "ID": 5159, + "SourceStructureID": 75052, + "TargetStructureID": 71517, + "Label": "75052-71517 via Adherens from 75054 -> 75053", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75054, + "TargetID": 75053, + "Directional": false + } + ] + }, + { + "ID": 5160, + "SourceStructureID": 71671, + "TargetStructureID": 71715, + "Label": "71671-71715 via Adherens from 71718 -> 71719, 71727 -> 71728", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71718, + "TargetID": 71719, + "Directional": false + }, + { + "SourceID": 71727, + "TargetID": 71728, + "Directional": false + } + ] + }, + { + "ID": 5161, + "SourceStructureID": 71771, + "TargetStructureID": 71781, + "Label": "71771-71781 via Adherens from 71813 -> 71814", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 71813, + "TargetID": 71814, + "Directional": false + } + ] + }, + { + "ID": 5162, + "SourceStructureID": 90324, + "TargetStructureID": 71882, + "Label": "90324-71882 via Adherens from 90325 -> 90323", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90325, + "TargetID": 90323, + "Directional": false + } + ] + }, + { + "ID": 5163, + "SourceStructureID": 90334, + "TargetStructureID": 71882, + "Label": "90334-71882 via Adherens from 90337 -> 90333", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90337, + "TargetID": 90333, + "Directional": false + } + ] + }, + { + "ID": 5164, + "SourceStructureID": 90334, + "TargetStructureID": 71882, + "Label": "90334-71882 via Gap Junction from 90336 -> 90335", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90336, + "TargetID": 90335, + "Directional": false + } + ] + }, + { + "ID": 5165, + "SourceStructureID": 90376, + "TargetStructureID": 71882, + "Label": "90376-71882 via Adherens from 90380 -> 90379", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90380, + "TargetID": 90379, + "Directional": false + } + ] + }, + { + "ID": 5166, + "SourceStructureID": 90376, + "TargetStructureID": 71882, + "Label": "90376-71882 via Gap Junction from 90378 -> 90374", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90378, + "TargetID": 90374, + "Directional": false + } + ] + }, + { + "ID": 5167, + "SourceStructureID": 90389, + "TargetStructureID": 71882, + "Label": "90389-71882 via Unknown from 90391 -> 90388", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 90391, + "TargetID": 90388, + "Directional": false + } + ] + }, + { + "ID": 5168, + "SourceStructureID": 90446, + "TargetStructureID": 71882, + "Label": "90446-71882 via Adherens from 90447 -> 90445", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90447, + "TargetID": 90445, + "Directional": false + } + ] + }, + { + "ID": 5169, + "SourceStructureID": 90446, + "TargetStructureID": 71882, + "Label": "90446-71882 via Gap Junction from 90448 -> 90444", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90448, + "TargetID": 90444, + "Directional": false + } + ] + }, + { + "ID": 5170, + "SourceStructureID": 71954, + "TargetStructureID": 71953, + "Label": "71954-71953 via Gap Junction from 71956 -> 71955", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 71956, + "TargetID": 71955, + "Directional": false + } + ] + }, + { + "ID": 5171, + "SourceStructureID": 72168, + "TargetStructureID": 82961, + "Label": "72168-82961 via Adherens from 82960 -> 82962, 82967 -> 82968", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82960, + "TargetID": 82962, + "Directional": false + }, + { + "SourceID": 82967, + "TargetID": 82968, + "Directional": false + } + ] + }, + { + "ID": 5172, + "SourceStructureID": 72994, + "TargetStructureID": 72989, + "Label": "72994-72989 via Adherens from 72999 -> 73000", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 72999, + "TargetID": 73000, + "Directional": false + } + ] + }, + { + "ID": 5173, + "SourceStructureID": 75752, + "TargetStructureID": 73025, + "Label": "75752-73025 via Adherens from 75756 -> 75757", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75756, + "TargetID": 75757, + "Directional": false + } + ] + }, + { + "ID": 5174, + "SourceStructureID": 73394, + "TargetStructureID": 73397, + "Label": "73394-73397 via Adherens from 73401 -> 73402", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73401, + "TargetID": 73402, + "Directional": false + } + ] + }, + { + "ID": 5175, + "SourceStructureID": 73465, + "TargetStructureID": 73460, + "Label": "73465-73460 via Adherens from 73471 -> 73470", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73471, + "TargetID": 73470, + "Directional": false + } + ] + }, + { + "ID": 5176, + "SourceStructureID": 73594, + "TargetStructureID": 73593, + "Label": "73594-73593 via Unknown from 73595 -> 73596", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 73595, + "TargetID": 73596, + "Directional": false + } + ] + }, + { + "ID": 5177, + "SourceStructureID": 73655, + "TargetStructureID": 73658, + "Label": "73655-73658 via Adherens from 73657 -> 73660", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73657, + "TargetID": 73660, + "Directional": false + } + ] + }, + { + "ID": 5178, + "SourceStructureID": 73665, + "TargetStructureID": 73662, + "Label": "73665-73662 via Adherens from 73666 -> 73664", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73666, + "TargetID": 73664, + "Directional": false + } + ] + }, + { + "ID": 5179, + "SourceStructureID": 73681, + "TargetStructureID": 73676, + "Label": "73681-73676 via Adherens from 73682 -> 73680", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 73682, + "TargetID": 73680, + "Directional": false + } + ] + }, + { + "ID": 5180, + "SourceStructureID": 74069, + "TargetStructureID": 74069, + "Label": "74069-74069 via Unknown from 74070 -> 74072", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 74070, + "TargetID": 74072, + "Directional": false + } + ] + }, + { + "ID": 5181, + "SourceStructureID": 74238, + "TargetStructureID": 74237, + "Label": "74238-74237 via Adherens from 74263 -> 74262", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74263, + "TargetID": 74262, + "Directional": false + } + ] + }, + { + "ID": 5182, + "SourceStructureID": 74238, + "TargetStructureID": 74240, + "Label": "74238-74240 via Adherens from 74260 -> 74261", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74260, + "TargetID": 74261, + "Directional": false + } + ] + }, + { + "ID": 5183, + "SourceStructureID": 74292, + "TargetStructureID": 74282, + "Label": "74292-74282 via Adherens from 74293 -> 74294", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74293, + "TargetID": 74294, + "Directional": false + } + ] + }, + { + "ID": 5184, + "SourceStructureID": 75130, + "TargetStructureID": 74321, + "Label": "75130-74321 via Gap Junction from 121969 -> 121970", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 121969, + "TargetID": 121970, + "Directional": false + } + ] + }, + { + "ID": 5185, + "SourceStructureID": 74601, + "TargetStructureID": 74590, + "Label": "74601-74590 via Adherens from 74602 -> 74600", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74602, + "TargetID": 74600, + "Directional": false + } + ] + }, + { + "ID": 5186, + "SourceStructureID": 74610, + "TargetStructureID": 74614, + "Label": "74610-74614 via Adherens from 74615 -> 74616", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 74615, + "TargetID": 74616, + "Directional": false + } + ] + }, + { + "ID": 5187, + "SourceStructureID": 74907, + "TargetStructureID": 83698, + "Label": "74907-83698 via Adherens from 83741 -> 83742", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83741, + "TargetID": 83742, + "Directional": false + } + ] + }, + { + "ID": 5188, + "SourceStructureID": 74907, + "TargetStructureID": 83749, + "Label": "74907-83749 via Unknown from 83755 -> 83756", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83755, + "TargetID": 83756, + "Directional": false + } + ] + }, + { + "ID": 5189, + "SourceStructureID": 74907, + "TargetStructureID": 83757, + "Label": "74907-83757 via Adherens from 84614 -> 84615", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84614, + "TargetID": 84615, + "Directional": false + } + ] + }, + { + "ID": 5190, + "SourceStructureID": 74907, + "TargetStructureID": 83757, + "Label": "74907-83757 via Unknown from 84617 -> 84618", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84617, + "TargetID": 84618, + "Directional": false + } + ] + }, + { + "ID": 5191, + "SourceStructureID": 74907, + "TargetStructureID": 83790, + "Label": "74907-83790 via Adherens from 83794 -> 83795", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83794, + "TargetID": 83795, + "Directional": false + } + ] + }, + { + "ID": 5192, + "SourceStructureID": 74907, + "TargetStructureID": 83790, + "Label": "74907-83790 via Gap Junction from 115439 -> 115440", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 115439, + "TargetID": 115440, + "Directional": false + } + ] + }, + { + "ID": 5193, + "SourceStructureID": 83834, + "TargetStructureID": 74907, + "Label": "83834-74907 via Unknown from 83836 -> 83835", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83836, + "TargetID": 83835, + "Directional": false + } + ] + }, + { + "ID": 5194, + "SourceStructureID": 74907, + "TargetStructureID": 83845, + "Label": "74907-83845 via Unknown from 83847 -> 83848", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83847, + "TargetID": 83848, + "Directional": false + } + ] + }, + { + "ID": 5195, + "SourceStructureID": 74907, + "TargetStructureID": 83894, + "Label": "74907-83894 via Adherens from 84448 -> 84447", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84448, + "TargetID": 84447, + "Directional": false + } + ] + }, + { + "ID": 5196, + "SourceStructureID": 83894, + "TargetStructureID": 74907, + "Label": "83894-74907 via Unknown from 84476 -> 84475", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84476, + "TargetID": 84475, + "Directional": false + } + ] + }, + { + "ID": 5197, + "SourceStructureID": 74907, + "TargetStructureID": 83898, + "Label": "74907-83898 via Unknown from 84452 -> 84453", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84452, + "TargetID": 84453, + "Directional": false + } + ] + }, + { + "ID": 5198, + "SourceStructureID": 74907, + "TargetStructureID": 83911, + "Label": "74907-83911 via Unknown from 84468 -> 84469", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84468, + "TargetID": 84469, + "Directional": false + } + ] + }, + { + "ID": 5199, + "SourceStructureID": 74907, + "TargetStructureID": 84280, + "Label": "74907-84280 via Unknown from 84470 -> 84471", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84470, + "TargetID": 84471, + "Directional": false + } + ] + }, + { + "ID": 5200, + "SourceStructureID": 84294, + "TargetStructureID": 74907, + "Label": "84294-74907 via Adherens from 84479 -> 84480", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84479, + "TargetID": 84480, + "Directional": false + } + ] + }, + { + "ID": 5201, + "SourceStructureID": 74907, + "TargetStructureID": 84308, + "Label": "74907-84308 via Adherens from 84315 -> 84314", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84315, + "TargetID": 84314, + "Directional": false + } + ] + }, + { + "ID": 5202, + "SourceStructureID": 74907, + "TargetStructureID": 84308, + "Label": "74907-84308 via Gap Junction from 84312 -> 84313", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 84312, + "TargetID": 84313, + "Directional": false + } + ] + }, + { + "ID": 5203, + "SourceStructureID": 74907, + "TargetStructureID": 84316, + "Label": "74907-84316 via Gap Junction from 84319 -> 84320, 84333 -> 84332", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 84319, + "TargetID": 84320, + "Directional": false + }, + { + "SourceID": 84333, + "TargetID": 84332, + "Directional": false + } + ] + }, + { + "ID": 5204, + "SourceStructureID": 74907, + "TargetStructureID": 84316, + "Label": "74907-84316 via Unknown from 84326 -> 84327", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84326, + "TargetID": 84327, + "Directional": false + } + ] + }, + { + "ID": 5205, + "SourceStructureID": 74907, + "TargetStructureID": 84449, + "Label": "74907-84449 via Unknown from 84454 -> 84455", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84454, + "TargetID": 84455, + "Directional": false + } + ] + }, + { + "ID": 5206, + "SourceStructureID": 74907, + "TargetStructureID": 84514, + "Label": "74907-84514 via Unknown from 84595 -> 84594", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84595, + "TargetID": 84594, + "Directional": false + } + ] + }, + { + "ID": 5207, + "SourceStructureID": 74907, + "TargetStructureID": 84570, + "Label": "74907-84570 via Unknown from 84474 -> 84571", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84474, + "TargetID": 84571, + "Directional": false + } + ] + }, + { + "ID": 5208, + "SourceStructureID": 74907, + "TargetStructureID": 84586, + "Label": "74907-84586 via Unknown from 84772 -> 84608", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84772, + "TargetID": 84608, + "Directional": false + } + ] + }, + { + "ID": 5209, + "SourceStructureID": 74907, + "TargetStructureID": 84621, + "Label": "74907-84621 via Unknown from 84628 -> 84629", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84628, + "TargetID": 84629, + "Directional": false + } + ] + }, + { + "ID": 5210, + "SourceStructureID": 74907, + "TargetStructureID": 84636, + "Label": "74907-84636 via Unknown from 83816 -> 84736", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83816, + "TargetID": 84736, + "Directional": false + } + ] + }, + { + "ID": 5211, + "SourceStructureID": 84831, + "TargetStructureID": 74907, + "Label": "84831-74907 via Unknown from 84835 -> 84834", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84835, + "TargetID": 84834, + "Directional": false + } + ] + }, + { + "ID": 5212, + "SourceStructureID": 75021, + "TargetStructureID": 75028, + "Label": "75021-75028 via Adherens from 75029 -> 75030", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75029, + "TargetID": 75030, + "Directional": false + } + ] + }, + { + "ID": 5213, + "SourceStructureID": 75073, + "TargetStructureID": 81153, + "Label": "75073-81153 via Adherens from 82231 -> 82232", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82231, + "TargetID": 82232, + "Directional": false + } + ] + }, + { + "ID": 5214, + "SourceStructureID": 75130, + "TargetStructureID": 77677, + "Label": "75130-77677 via Adherens from 77687 -> 77685", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 77687, + "TargetID": 77685, + "Directional": false + } + ] + }, + { + "ID": 5215, + "SourceStructureID": 75395, + "TargetStructureID": 75400, + "Label": "75395-75400 via Adherens from 82527 -> 82528", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82527, + "TargetID": 82528, + "Directional": false + } + ] + }, + { + "ID": 5216, + "SourceStructureID": 75622, + "TargetStructureID": 75621, + "Label": "75622-75621 via Gap Junction from 75624 -> 75623", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 75624, + "TargetID": 75623, + "Directional": false + } + ] + }, + { + "ID": 5217, + "SourceStructureID": 75742, + "TargetStructureID": 75739, + "Label": "75742-75739 via Adherens from 75743 -> 75740", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75743, + "TargetID": 75740, + "Directional": false + } + ] + }, + { + "ID": 5218, + "SourceStructureID": 75764, + "TargetStructureID": 75761, + "Label": "75764-75761 via Adherens from 75765 -> 75762", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 75765, + "TargetID": 75762, + "Directional": false + } + ] + }, + { + "ID": 5219, + "SourceStructureID": 76877, + "TargetStructureID": 76595, + "Label": "76877-76595 via Adherens from 76879 -> 76876", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76879, + "TargetID": 76876, + "Directional": false + } + ] + }, + { + "ID": 5220, + "SourceStructureID": 76867, + "TargetStructureID": 76752, + "Label": "76867-76752 via Unknown from 82575 -> 82576", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82575, + "TargetID": 82576, + "Directional": false + } + ] + }, + { + "ID": 5221, + "SourceStructureID": 76829, + "TargetStructureID": 76827, + "Label": "76829-76827 via Adherens from 76830 -> 76828", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76830, + "TargetID": 76828, + "Directional": false + } + ] + }, + { + "ID": 5222, + "SourceStructureID": 76829, + "TargetStructureID": 76832, + "Label": "76829-76832 via Adherens from 76839 -> 76840", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 76839, + "TargetID": 76840, + "Directional": false + } + ] + }, + { + "ID": 5223, + "SourceStructureID": 76832, + "TargetStructureID": 76829, + "Label": "76832-76829 via Gap Junction from 76833 -> 76831", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 76833, + "TargetID": 76831, + "Directional": false + } + ] + }, + { + "ID": 5224, + "SourceStructureID": 82677, + "TargetStructureID": 77403, + "Label": "82677-77403 via Adherens from 83672 -> 83673", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83672, + "TargetID": 83673, + "Directional": false + } + ] + }, + { + "ID": 5225, + "SourceStructureID": 78367, + "TargetStructureID": 78367, + "Label": "78367-78367 via Unknown from 78368 -> 78369", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 78368, + "TargetID": 78369, + "Directional": false + } + ] + }, + { + "ID": 5226, + "SourceStructureID": 78423, + "TargetStructureID": 78710, + "Label": "78423-78710 via Adherens from 78712 -> 78711", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78712, + "TargetID": 78711, + "Directional": false + } + ] + }, + { + "ID": 5227, + "SourceStructureID": 78761, + "TargetStructureID": 78709, + "Label": "78761-78709 via Adherens from 78764 -> 78763", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 78764, + "TargetID": 78763, + "Directional": false + } + ] + }, + { + "ID": 5228, + "SourceStructureID": 87545, + "TargetStructureID": 78909, + "Label": "87545-78909 via Adherens from 87546 -> 87544", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87546, + "TargetID": 87544, + "Directional": false + } + ] + }, + { + "ID": 5229, + "SourceStructureID": 87604, + "TargetStructureID": 78909, + "Label": "87604-78909 via Adherens from 87605 -> 87603", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87605, + "TargetID": 87603, + "Directional": false + } + ] + }, + { + "ID": 5230, + "SourceStructureID": 79069, + "TargetStructureID": 79068, + "Label": "79069-79068 via Adherens from 79076 -> 79075, 79289 -> 79287", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79076, + "TargetID": 79075, + "Directional": false + }, + { + "SourceID": 79289, + "TargetID": 79287, + "Directional": false + } + ] + }, + { + "ID": 5231, + "SourceStructureID": 79068, + "TargetStructureID": 79091, + "Label": "79068-79091 via Adherens from 79139 -> 79138, 79140 -> 79141, 79266 -> 79267, 79293 -> 79292", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79139, + "TargetID": 79138, + "Directional": false + }, + { + "SourceID": 79140, + "TargetID": 79141, + "Directional": false + }, + { + "SourceID": 79266, + "TargetID": 79267, + "Directional": false + }, + { + "SourceID": 79293, + "TargetID": 79292, + "Directional": false + } + ] + }, + { + "ID": 5232, + "SourceStructureID": 79072, + "TargetStructureID": 79069, + "Label": "79072-79069 via Adherens from 79100 -> 79099, 79133 -> 79134, 79272 -> 79273, 79390 -> 79392", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79100, + "TargetID": 79099, + "Directional": false + }, + { + "SourceID": 79133, + "TargetID": 79134, + "Directional": false + }, + { + "SourceID": 79272, + "TargetID": 79273, + "Directional": false + }, + { + "SourceID": 79390, + "TargetID": 79392, + "Directional": false + } + ] + }, + { + "ID": 5233, + "SourceStructureID": 79074, + "TargetStructureID": 79069, + "Label": "79074-79069 via Adherens from 79113 -> 79114, 79115 -> 79116, 79275 -> 79274, 79391 -> 79392, 79393 -> 79394, 79395 -> 79396", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79113, + "TargetID": 79114, + "Directional": false + }, + { + "SourceID": 79115, + "TargetID": 79116, + "Directional": false + }, + { + "SourceID": 79275, + "TargetID": 79274, + "Directional": false + }, + { + "SourceID": 79391, + "TargetID": 79392, + "Directional": false + }, + { + "SourceID": 79393, + "TargetID": 79394, + "Directional": false + }, + { + "SourceID": 79395, + "TargetID": 79396, + "Directional": false + } + ] + }, + { + "ID": 5234, + "SourceStructureID": 79072, + "TargetStructureID": 79071, + "Label": "79072-79071 via Adherens from 79306 -> 79305, 79387 -> 79386, 79388 -> 79389", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79306, + "TargetID": 79305, + "Directional": false + }, + { + "SourceID": 79387, + "TargetID": 79386, + "Directional": false + }, + { + "SourceID": 79388, + "TargetID": 79389, + "Directional": false + } + ] + }, + { + "ID": 5235, + "SourceStructureID": 79074, + "TargetStructureID": 79072, + "Label": "79074-79072 via Adherens from 79079 -> 79080, 79082 -> 79081, 79084 -> 79083, 79103 -> 79101, 79104 -> 79102, 79110 -> 79109, 79136 -> 79135, 79312 -> 79314, 79313 -> 79314, 79327 -> 79328, 79344 -> 79343, 79391 -> 79390", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79079, + "TargetID": 79080, + "Directional": false + }, + { + "SourceID": 79082, + "TargetID": 79081, + "Directional": false + }, + { + "SourceID": 79084, + "TargetID": 79083, + "Directional": false + }, + { + "SourceID": 79103, + "TargetID": 79101, + "Directional": false + }, + { + "SourceID": 79104, + "TargetID": 79102, + "Directional": false + }, + { + "SourceID": 79110, + "TargetID": 79109, + "Directional": false + }, + { + "SourceID": 79136, + "TargetID": 79135, + "Directional": false + }, + { + "SourceID": 79312, + "TargetID": 79314, + "Directional": false + }, + { + "SourceID": 79313, + "TargetID": 79314, + "Directional": false + }, + { + "SourceID": 79327, + "TargetID": 79328, + "Directional": false + }, + { + "SourceID": 79344, + "TargetID": 79343, + "Directional": false + }, + { + "SourceID": 79391, + "TargetID": 79390, + "Directional": false + } + ] + }, + { + "ID": 5236, + "SourceStructureID": 81917, + "TargetStructureID": 79317, + "Label": "81917-79317 via Gap Junction from 99034 -> 99033", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 99034, + "TargetID": 99033, + "Directional": false + } + ] + }, + { + "ID": 5237, + "SourceStructureID": 79559, + "TargetStructureID": 79512, + "Label": "79559-79512 via Adherens from 79569 -> 79529", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 79569, + "TargetID": 79529, + "Directional": false + } + ] + }, + { + "ID": 5238, + "SourceStructureID": 82305, + "TargetStructureID": 79586, + "Label": "82305-79586 via Adherens from 116718 -> 79593", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 116718, + "TargetID": 79593, + "Directional": false + } + ] + }, + { + "ID": 5239, + "SourceStructureID": 79908, + "TargetStructureID": 83121, + "Label": "79908-83121 via BC Conventional Synapse from 83120 -> 83122", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [ + { + "SourceID": 83120, + "TargetID": 83122, + "Directional": false + } + ] + }, + { + "ID": 5240, + "SourceStructureID": 80139, + "TargetStructureID": 82271, + "Label": "80139-82271 via Adherens from 83629 -> 83630", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83629, + "TargetID": 83630, + "Directional": false + } + ] + }, + { + "ID": 5241, + "SourceStructureID": 81304, + "TargetStructureID": 81316, + "Label": "81304-81316 via Unknown from 81317 -> 81319", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 81317, + "TargetID": 81319, + "Directional": false + } + ] + }, + { + "ID": 5242, + "SourceStructureID": 131704, + "TargetStructureID": 81429, + "Label": "131704-81429 via Adherens from 131705 -> 81443", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131705, + "TargetID": 81443, + "Directional": false + } + ] + }, + { + "ID": 5243, + "SourceStructureID": 81615, + "TargetStructureID": 133891, + "Label": "81615-133891 via Adherens from 133899 -> 133898", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133899, + "TargetID": 133898, + "Directional": false + } + ] + }, + { + "ID": 5244, + "SourceStructureID": 81771, + "TargetStructureID": 81667, + "Label": "81771-81667 via Adherens from 81772 -> 81773", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81772, + "TargetID": 81773, + "Directional": false + } + ] + }, + { + "ID": 5245, + "SourceStructureID": 81776, + "TargetStructureID": 81667, + "Label": "81776-81667 via Adherens from 81777 -> 81778", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81777, + "TargetID": 81778, + "Directional": false + } + ] + }, + { + "ID": 5246, + "SourceStructureID": 81748, + "TargetStructureID": 81743, + "Label": "81748-81743 via Adherens from 81749 -> 81747, 81750 -> 81746", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81749, + "TargetID": 81747, + "Directional": false + }, + { + "SourceID": 81750, + "TargetID": 81746, + "Directional": false + } + ] + }, + { + "ID": 5247, + "SourceStructureID": 81808, + "TargetStructureID": 81799, + "Label": "81808-81799 via Adherens from 81809 -> 81807", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81809, + "TargetID": 81807, + "Directional": false + } + ] + }, + { + "ID": 5248, + "SourceStructureID": 81799, + "TargetStructureID": 81831, + "Label": "81799-81831 via Adherens from 81830 -> 81832", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 81830, + "TargetID": 81832, + "Directional": false + } + ] + }, + { + "ID": 5249, + "SourceStructureID": 82172, + "TargetStructureID": 82177, + "Label": "82172-82177 via Adherens from 82176 -> 82178", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82176, + "TargetID": 82178, + "Directional": false + } + ] + }, + { + "ID": 5250, + "SourceStructureID": 82330, + "TargetStructureID": 82305, + "Label": "82330-82305 via Adherens from 82331 -> 82329", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82331, + "TargetID": 82329, + "Directional": false + } + ] + }, + { + "ID": 5251, + "SourceStructureID": 82412, + "TargetStructureID": 82773, + "Label": "82412-82773 via Adherens from 82775 -> 82774", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 82775, + "TargetID": 82774, + "Directional": false + } + ] + }, + { + "ID": 5252, + "SourceStructureID": 83638, + "TargetStructureID": 82677, + "Label": "83638-82677 via Adherens from 83639 -> 83640", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83639, + "TargetID": 83640, + "Directional": false + } + ] + }, + { + "ID": 5253, + "SourceStructureID": 82677, + "TargetStructureID": 83674, + "Label": "82677-83674 via Adherens from 83675 -> 83676", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83675, + "TargetID": 83676, + "Directional": false + } + ] + }, + { + "ID": 5254, + "SourceStructureID": 82677, + "TargetStructureID": 83679, + "Label": "82677-83679 via Adherens from 83695 -> 83696", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83695, + "TargetID": 83696, + "Directional": false + } + ] + }, + { + "ID": 5255, + "SourceStructureID": 82677, + "TargetStructureID": 83714, + "Label": "82677-83714 via Adherens from 83723 -> 83722", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83723, + "TargetID": 83722, + "Directional": false + } + ] + }, + { + "ID": 5256, + "SourceStructureID": 83725, + "TargetStructureID": 82677, + "Label": "83725-82677 via Adherens from 83728 -> 83729", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83728, + "TargetID": 83729, + "Directional": false + } + ] + }, + { + "ID": 5257, + "SourceStructureID": 82677, + "TargetStructureID": 83767, + "Label": "82677-83767 via Adherens from 83769 -> 83768, 83775 -> 83774", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83769, + "TargetID": 83768, + "Directional": false + }, + { + "SourceID": 83775, + "TargetID": 83774, + "Directional": false + } + ] + }, + { + "ID": 5258, + "SourceStructureID": 83782, + "TargetStructureID": 82677, + "Label": "83782-82677 via Adherens from 83783 -> 83781", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83783, + "TargetID": 83781, + "Directional": false + } + ] + }, + { + "ID": 5259, + "SourceStructureID": 83828, + "TargetStructureID": 82677, + "Label": "83828-82677 via Adherens from 83829 -> 83827", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83829, + "TargetID": 83827, + "Directional": false + } + ] + }, + { + "ID": 5260, + "SourceStructureID": 82677, + "TargetStructureID": 83866, + "Label": "82677-83866 via Adherens from 83880 -> 83879", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83880, + "TargetID": 83879, + "Directional": false + } + ] + }, + { + "ID": 5261, + "SourceStructureID": 84021, + "TargetStructureID": 82677, + "Label": "84021-82677 via Adherens from 84022 -> 84020", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84022, + "TargetID": 84020, + "Directional": false + } + ] + }, + { + "ID": 5262, + "SourceStructureID": 84050, + "TargetStructureID": 82677, + "Label": "84050-82677 via Adherens from 84051 -> 84049", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84051, + "TargetID": 84049, + "Directional": false + } + ] + }, + { + "ID": 5263, + "SourceStructureID": 82677, + "TargetStructureID": 117990, + "Label": "82677-117990 via Gap Junction from 118005 -> 118002", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118005, + "TargetID": 118002, + "Directional": false + } + ] + }, + { + "ID": 5264, + "SourceStructureID": 82743, + "TargetStructureID": 82777, + "Label": "82743-82777 via Unknown from 82776 -> 82778", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82776, + "TargetID": 82778, + "Directional": false + } + ] + }, + { + "ID": 5265, + "SourceStructureID": 82743, + "TargetStructureID": 82789, + "Label": "82743-82789 via Unknown from 82788 -> 82790", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 82788, + "TargetID": 82790, + "Directional": false + } + ] + }, + { + "ID": 5266, + "SourceStructureID": 83008, + "TargetStructureID": 82743, + "Label": "83008-82743 via Unknown from 83009 -> 83007", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83009, + "TargetID": 83007, + "Directional": false + } + ] + }, + { + "ID": 5267, + "SourceStructureID": 82743, + "TargetStructureID": 83010, + "Label": "82743-83010 via Unknown from 83006 -> 83011", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83006, + "TargetID": 83011, + "Directional": false + } + ] + }, + { + "ID": 5268, + "SourceStructureID": 82743, + "TargetStructureID": 83012, + "Label": "82743-83012 via Unknown from 83013 -> 83014", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 83013, + "TargetID": 83014, + "Directional": false + } + ] + }, + { + "ID": 5269, + "SourceStructureID": 83619, + "TargetStructureID": 83056, + "Label": "83619-83056 via Adherens from 83620 -> 83618", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83620, + "TargetID": 83618, + "Directional": false + } + ] + }, + { + "ID": 5270, + "SourceStructureID": 83200, + "TargetStructureID": 83161, + "Label": "83200-83161 via Gap Junction from 83201 -> 83199", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 83201, + "TargetID": 83199, + "Directional": false + } + ] + }, + { + "ID": 5271, + "SourceStructureID": 83329, + "TargetStructureID": 83331, + "Label": "83329-83331 via Gap Junction from 83330 -> 83332", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 83330, + "TargetID": 83332, + "Directional": false + } + ] + }, + { + "ID": 5272, + "SourceStructureID": 83449, + "TargetStructureID": 83448, + "Label": "83449-83448 via Adherens from 83453 -> 83452", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83453, + "TargetID": 83452, + "Directional": false + } + ] + }, + { + "ID": 5273, + "SourceStructureID": 83650, + "TargetStructureID": 83648, + "Label": "83650-83648 via Adherens from 83651 -> 83649", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 83651, + "TargetID": 83649, + "Directional": false + } + ] + }, + { + "ID": 5274, + "SourceStructureID": 83807, + "TargetStructureID": 84636, + "Label": "83807-84636 via Unknown from 84735 -> 84734", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84735, + "TargetID": 84734, + "Directional": false + } + ] + }, + { + "ID": 5275, + "SourceStructureID": 84082, + "TargetStructureID": 84088, + "Label": "84082-84088 via Adherens from 84094 -> 84093", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84094, + "TargetID": 84093, + "Directional": false + } + ] + }, + { + "ID": 5276, + "SourceStructureID": 84177, + "TargetStructureID": 84165, + "Label": "84177-84165 via Adherens from 84178 -> 84176", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84178, + "TargetID": 84176, + "Directional": false + } + ] + }, + { + "ID": 5277, + "SourceStructureID": 84751, + "TargetStructureID": 84748, + "Label": "84751-84748 via Adherens from 84752 -> 84750", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84752, + "TargetID": 84750, + "Directional": false + } + ] + }, + { + "ID": 5278, + "SourceStructureID": 84830, + "TargetStructureID": 84847, + "Label": "84830-84847 via Adherens from 84846 -> 84848", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84846, + "TargetID": 84848, + "Directional": false + } + ] + }, + { + "ID": 5279, + "SourceStructureID": 84900, + "TargetStructureID": 84830, + "Label": "84900-84830 via Adherens from 84901 -> 84899", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84901, + "TargetID": 84899, + "Directional": false + } + ] + }, + { + "ID": 5280, + "SourceStructureID": 84919, + "TargetStructureID": 84830, + "Label": "84919-84830 via Adherens from 85470 -> 85469", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85470, + "TargetID": 85469, + "Directional": false + } + ] + }, + { + "ID": 5281, + "SourceStructureID": 84924, + "TargetStructureID": 84830, + "Label": "84924-84830 via Unknown from 84925 -> 84923", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 84925, + "TargetID": 84923, + "Directional": false + } + ] + }, + { + "ID": 5282, + "SourceStructureID": 84909, + "TargetStructureID": 84900, + "Label": "84909-84900 via Adherens from 84910 -> 84908", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84910, + "TargetID": 84908, + "Directional": false + } + ] + }, + { + "ID": 5283, + "SourceStructureID": 84903, + "TargetStructureID": 84905, + "Label": "84903-84905 via Adherens from 84904 -> 84906", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 84904, + "TargetID": 84906, + "Directional": false + } + ] + }, + { + "ID": 5284, + "SourceStructureID": 85053, + "TargetStructureID": 85094, + "Label": "85053-85094 via Adherens from 85111 -> 85110", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85111, + "TargetID": 85110, + "Directional": false + } + ] + }, + { + "ID": 5285, + "SourceStructureID": 85072, + "TargetStructureID": 85068, + "Label": "85072-85068 via Adherens from 85073 -> 85071", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85073, + "TargetID": 85071, + "Directional": false + } + ] + }, + { + "ID": 5286, + "SourceStructureID": 85079, + "TargetStructureID": 85082, + "Label": "85079-85082 via Adherens from 85086 -> 85085", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85086, + "TargetID": 85085, + "Directional": false + } + ] + }, + { + "ID": 5287, + "SourceStructureID": 85121, + "TargetStructureID": 85119, + "Label": "85121-85119 via Adherens from 85126 -> 85120, 85130 -> 85131", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85126, + "TargetID": 85120, + "Directional": false + }, + { + "SourceID": 85130, + "TargetID": 85131, + "Directional": false + } + ] + }, + { + "ID": 5288, + "SourceStructureID": 85141, + "TargetStructureID": 85149, + "Label": "85141-85149 via Adherens from 85152 -> 85153", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85152, + "TargetID": 85153, + "Directional": false + } + ] + }, + { + "ID": 5289, + "SourceStructureID": 85159, + "TargetStructureID": 85141, + "Label": "85159-85141 via Adherens from 85160 -> 85158", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85160, + "TargetID": 85158, + "Directional": false + } + ] + }, + { + "ID": 5290, + "SourceStructureID": 85162, + "TargetStructureID": 85141, + "Label": "85162-85141 via Adherens from 85163 -> 85161", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85163, + "TargetID": 85161, + "Directional": false + } + ] + }, + { + "ID": 5291, + "SourceStructureID": 85172, + "TargetStructureID": 85141, + "Label": "85172-85141 via Adherens from 85177 -> 85178", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85177, + "TargetID": 85178, + "Directional": false + } + ] + }, + { + "ID": 5292, + "SourceStructureID": 85141, + "TargetStructureID": 85214, + "Label": "85141-85214 via Unknown from 85393 -> 85394", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 85393, + "TargetID": 85394, + "Directional": false + } + ] + }, + { + "ID": 5293, + "SourceStructureID": 85233, + "TargetStructureID": 85141, + "Label": "85233-85141 via Adherens from 85398 -> 85397", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85398, + "TargetID": 85397, + "Directional": false + } + ] + }, + { + "ID": 5294, + "SourceStructureID": 85352, + "TargetStructureID": 85141, + "Label": "85352-85141 via Adherens from 85353 -> 85351", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85353, + "TargetID": 85351, + "Directional": false + } + ] + }, + { + "ID": 5295, + "SourceStructureID": 85141, + "TargetStructureID": 85386, + "Label": "85141-85386 via Adherens from 85385 -> 85387", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85385, + "TargetID": 85387, + "Directional": false + } + ] + }, + { + "ID": 5296, + "SourceStructureID": 85750, + "TargetStructureID": 85748, + "Label": "85750-85748 via Adherens from 85753 -> 85752", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85753, + "TargetID": 85752, + "Directional": false + } + ] + }, + { + "ID": 5297, + "SourceStructureID": 85748, + "TargetStructureID": 85766, + "Label": "85748-85766 via Adherens from 85764 -> 85767", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85764, + "TargetID": 85767, + "Directional": false + } + ] + }, + { + "ID": 5298, + "SourceStructureID": 85771, + "TargetStructureID": 85748, + "Label": "85771-85748 via Adherens from 85773 -> 85769", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85773, + "TargetID": 85769, + "Directional": false + } + ] + }, + { + "ID": 5299, + "SourceStructureID": 85900, + "TargetStructureID": 85856, + "Label": "85900-85856 via Gap Junction from 85901 -> 85899", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 85901, + "TargetID": 85899, + "Directional": false + } + ] + }, + { + "ID": 5300, + "SourceStructureID": 85856, + "TargetStructureID": 136970, + "Label": "85856-136970 via Gap Junction from 136982 -> 136981", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136982, + "TargetID": 136981, + "Directional": false + } + ] + }, + { + "ID": 5301, + "SourceStructureID": 85924, + "TargetStructureID": 85928, + "Label": "85924-85928 via Adherens from 85952 -> 85953", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 85952, + "TargetID": 85953, + "Directional": false + } + ] + }, + { + "ID": 5302, + "SourceStructureID": 86050, + "TargetStructureID": 86036, + "Label": "86050-86036 via Adherens from 86058 -> 86051", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86058, + "TargetID": 86051, + "Directional": false + } + ] + }, + { + "ID": 5303, + "SourceStructureID": 86634, + "TargetStructureID": 86662, + "Label": "86634-86662 via Adherens from 86664 -> 86665", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86664, + "TargetID": 86665, + "Directional": false + } + ] + }, + { + "ID": 5304, + "SourceStructureID": 86667, + "TargetStructureID": 86634, + "Label": "86667-86634 via Adherens from 86668 -> 86666", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86668, + "TargetID": 86666, + "Directional": false + } + ] + }, + { + "ID": 5305, + "SourceStructureID": 86672, + "TargetStructureID": 86634, + "Label": "86672-86634 via Adherens from 86682 -> 86681", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86682, + "TargetID": 86681, + "Directional": false + } + ] + }, + { + "ID": 5306, + "SourceStructureID": 86634, + "TargetStructureID": 86675, + "Label": "86634-86675 via Adherens from 86679 -> 86680", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86679, + "TargetID": 86680, + "Directional": false + } + ] + }, + { + "ID": 5307, + "SourceStructureID": 86702, + "TargetStructureID": 86634, + "Label": "86702-86634 via Unknown from 86703 -> 86701", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 86703, + "TargetID": 86701, + "Directional": false + } + ] + }, + { + "ID": 5308, + "SourceStructureID": 86675, + "TargetStructureID": 86672, + "Label": "86675-86672 via Adherens from 86677 -> 86676", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86677, + "TargetID": 86676, + "Directional": false + } + ] + }, + { + "ID": 5309, + "SourceStructureID": 86933, + "TargetStructureID": 86934, + "Label": "86933-86934 via Adherens from 86937 -> 86938", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86937, + "TargetID": 86938, + "Directional": false + } + ] + }, + { + "ID": 5310, + "SourceStructureID": 86991, + "TargetStructureID": 86985, + "Label": "86991-86985 via Adherens from 86993 -> 86994", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 86993, + "TargetID": 86994, + "Directional": false + } + ] + }, + { + "ID": 5311, + "SourceStructureID": 87145, + "TargetStructureID": 87149, + "Label": "87145-87149 via Adherens from 87153 -> 87152", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87153, + "TargetID": 87152, + "Directional": false + } + ] + }, + { + "ID": 5312, + "SourceStructureID": 87189, + "TargetStructureID": 87183, + "Label": "87189-87183 via Adherens from 87191 -> 87188", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87191, + "TargetID": 87188, + "Directional": false + } + ] + }, + { + "ID": 5313, + "SourceStructureID": 87304, + "TargetStructureID": 87294, + "Label": "87304-87294 via Adherens from 87306 -> 87307", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87306, + "TargetID": 87307, + "Directional": false + } + ] + }, + { + "ID": 5314, + "SourceStructureID": 87309, + "TargetStructureID": 87294, + "Label": "87309-87294 via Adherens from 87310 -> 87308", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87310, + "TargetID": 87308, + "Directional": false + } + ] + }, + { + "ID": 5315, + "SourceStructureID": 87294, + "TargetStructureID": 87318, + "Label": "87294-87318 via Unknown from 87317 -> 87319", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 87317, + "TargetID": 87319, + "Directional": false + } + ] + }, + { + "ID": 5316, + "SourceStructureID": 89124, + "TargetStructureID": 87294, + "Label": "89124-87294 via Adherens from 89154 -> 89155", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89154, + "TargetID": 89155, + "Directional": false + } + ] + }, + { + "ID": 5317, + "SourceStructureID": 87396, + "TargetStructureID": 87342, + "Label": "87396-87342 via Adherens from 87397 -> 87395", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87397, + "TargetID": 87395, + "Directional": false + } + ] + }, + { + "ID": 5318, + "SourceStructureID": 87349, + "TargetStructureID": 87345, + "Label": "87349-87345 via Adherens from 87351 -> 87352", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 87351, + "TargetID": 87352, + "Directional": false + } + ] + }, + { + "ID": 5319, + "SourceStructureID": 88199, + "TargetStructureID": 88205, + "Label": "88199-88205 via Adherens from 88204 -> 88206", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88204, + "TargetID": 88206, + "Directional": false + } + ] + }, + { + "ID": 5320, + "SourceStructureID": 88199, + "TargetStructureID": 88215, + "Label": "88199-88215 via Adherens from 88217 -> 88218", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88217, + "TargetID": 88218, + "Directional": false + } + ] + }, + { + "ID": 5321, + "SourceStructureID": 88230, + "TargetStructureID": 88199, + "Label": "88230-88199 via Adherens from 88233 -> 88232", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88233, + "TargetID": 88232, + "Directional": false + } + ] + }, + { + "ID": 5322, + "SourceStructureID": 88300, + "TargetStructureID": 88260, + "Label": "88300-88260 via Adherens from 88303 -> 88295", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88303, + "TargetID": 88295, + "Directional": false + } + ] + }, + { + "ID": 5323, + "SourceStructureID": 88305, + "TargetStructureID": 88260, + "Label": "88305-88260 via Adherens from 88307 -> 88308, 88311 -> 88310", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88307, + "TargetID": 88308, + "Directional": false + }, + { + "SourceID": 88311, + "TargetID": 88310, + "Directional": false + } + ] + }, + { + "ID": 5324, + "SourceStructureID": 88320, + "TargetStructureID": 88260, + "Label": "88320-88260 via Unknown from 88321 -> 88319", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 88321, + "TargetID": 88319, + "Directional": false + } + ] + }, + { + "ID": 5325, + "SourceStructureID": 88323, + "TargetStructureID": 88260, + "Label": "88323-88260 via Adherens from 88324 -> 88322", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88324, + "TargetID": 88322, + "Directional": false + } + ] + }, + { + "ID": 5326, + "SourceStructureID": 88325, + "TargetStructureID": 88323, + "Label": "88325-88323 via Adherens from 88326 -> 88324", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88326, + "TargetID": 88324, + "Directional": false + } + ] + }, + { + "ID": 5327, + "SourceStructureID": 88600, + "TargetStructureID": 88594, + "Label": "88600-88594 via Adherens from 88601 -> 88599", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88601, + "TargetID": 88599, + "Directional": false + } + ] + }, + { + "ID": 5328, + "SourceStructureID": 88923, + "TargetStructureID": 88919, + "Label": "88923-88919 via Adherens from 88925 -> 88922", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 88925, + "TargetID": 88922, + "Directional": false + } + ] + }, + { + "ID": 5329, + "SourceStructureID": 89039, + "TargetStructureID": 89046, + "Label": "89039-89046 via Adherens from 89048 -> 89049", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89048, + "TargetID": 89049, + "Directional": false + } + ] + }, + { + "ID": 5330, + "SourceStructureID": 89160, + "TargetStructureID": 89120, + "Label": "89160-89120 via Adherens from 89164 -> 89163", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89164, + "TargetID": 89163, + "Directional": false + } + ] + }, + { + "ID": 5331, + "SourceStructureID": 89323, + "TargetStructureID": 89124, + "Label": "89323-89124 via Adherens from 89326 -> 89325", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89326, + "TargetID": 89325, + "Directional": false + } + ] + }, + { + "ID": 5332, + "SourceStructureID": 89323, + "TargetStructureID": 89124, + "Label": "89323-89124 via Gap Junction from 89324 -> 89322", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89324, + "TargetID": 89322, + "Directional": false + } + ] + }, + { + "ID": 5333, + "SourceStructureID": 89336, + "TargetStructureID": 89124, + "Label": "89336-89124 via Unknown from 89337 -> 89335", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89337, + "TargetID": 89335, + "Directional": false + } + ] + }, + { + "ID": 5334, + "SourceStructureID": 89355, + "TargetStructureID": 89124, + "Label": "89355-89124 via Adherens from 89358 -> 89354", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89358, + "TargetID": 89354, + "Directional": false + } + ] + }, + { + "ID": 5335, + "SourceStructureID": 89133, + "TargetStructureID": 89133, + "Label": "89133-89133 via Gap Junction from 89203 -> 89202", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 89203, + "TargetID": 89202, + "Directional": false + } + ] + }, + { + "ID": 5336, + "SourceStructureID": 97959, + "TargetStructureID": 89433, + "Label": "97959-89433 via Gap Junction from 97960 -> 97958", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 97960, + "TargetID": 97958, + "Directional": false + } + ] + }, + { + "ID": 5337, + "SourceStructureID": 89694, + "TargetStructureID": 89677, + "Label": "89694-89677 via Adherens from 89697 -> 89692", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89697, + "TargetID": 89692, + "Directional": false + } + ] + }, + { + "ID": 5338, + "SourceStructureID": 89677, + "TargetStructureID": 89694, + "Label": "89677-89694 via Unknown from 89693 -> 89696, 89695 -> 89691", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 89693, + "TargetID": 89696, + "Directional": false + }, + { + "SourceID": 89695, + "TargetID": 89691, + "Directional": false + } + ] + }, + { + "ID": 5339, + "SourceStructureID": 89798, + "TargetStructureID": 89775, + "Label": "89798-89775 via Adherens from 89799 -> 89797", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89799, + "TargetID": 89797, + "Directional": false + } + ] + }, + { + "ID": 5340, + "SourceStructureID": 89801, + "TargetStructureID": 89775, + "Label": "89801-89775 via Adherens from 89802 -> 89800", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89802, + "TargetID": 89800, + "Directional": false + } + ] + }, + { + "ID": 5341, + "SourceStructureID": 89814, + "TargetStructureID": 89811, + "Label": "89814-89811 via Adherens from 89819 -> 89818", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89819, + "TargetID": 89818, + "Directional": false + } + ] + }, + { + "ID": 5342, + "SourceStructureID": 89836, + "TargetStructureID": 89831, + "Label": "89836-89831 via Adherens from 89841 -> 89835", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89841, + "TargetID": 89835, + "Directional": false + } + ] + }, + { + "ID": 5343, + "SourceStructureID": 89910, + "TargetStructureID": 89851, + "Label": "89910-89851 via Adherens from 89911 -> 89909", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89911, + "TargetID": 89909, + "Directional": false + } + ] + }, + { + "ID": 5344, + "SourceStructureID": 89928, + "TargetStructureID": 89851, + "Label": "89928-89851 via Adherens from 89929 -> 89925, 89930 -> 89927", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89929, + "TargetID": 89925, + "Directional": false + }, + { + "SourceID": 89930, + "TargetID": 89927, + "Directional": false + } + ] + }, + { + "ID": 5345, + "SourceStructureID": 89993, + "TargetStructureID": 89989, + "Label": "89993-89989 via Adherens from 89994 -> 89992", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 89994, + "TargetID": 89992, + "Directional": false + } + ] + }, + { + "ID": 5346, + "SourceStructureID": 90035, + "TargetStructureID": 89989, + "Label": "90035-89989 via Adherens from 90036 -> 90034", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90036, + "TargetID": 90034, + "Directional": false + } + ] + }, + { + "ID": 5347, + "SourceStructureID": 90089, + "TargetStructureID": 89989, + "Label": "90089-89989 via Adherens from 90090 -> 90088", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90090, + "TargetID": 90088, + "Directional": false + } + ] + }, + { + "ID": 5348, + "SourceStructureID": 90092, + "TargetStructureID": 89989, + "Label": "90092-89989 via Adherens from 90093 -> 90091", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90093, + "TargetID": 90091, + "Directional": false + } + ] + }, + { + "ID": 5349, + "SourceStructureID": 90795, + "TargetStructureID": 90791, + "Label": "90795-90791 via Adherens from 90797 -> 90794", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90797, + "TargetID": 90794, + "Directional": false + } + ] + }, + { + "ID": 5350, + "SourceStructureID": 90795, + "TargetStructureID": 90791, + "Label": "90795-90791 via Gap Junction from 90798 -> 90793", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 90798, + "TargetID": 90793, + "Directional": false + } + ] + }, + { + "ID": 5351, + "SourceStructureID": 90956, + "TargetStructureID": 90952, + "Label": "90956-90952 via Adherens from 90957 -> 90954", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 90957, + "TargetID": 90954, + "Directional": false + } + ] + }, + { + "ID": 5352, + "SourceStructureID": 91042, + "TargetStructureID": 91043, + "Label": "91042-91043 via Adherens from 91045 -> 91044", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91045, + "TargetID": 91044, + "Directional": false + } + ] + }, + { + "ID": 5353, + "SourceStructureID": 91073, + "TargetStructureID": 91080, + "Label": "91073-91080 via Adherens from 91083 -> 91082", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91083, + "TargetID": 91082, + "Directional": false + } + ] + }, + { + "ID": 5354, + "SourceStructureID": 91240, + "TargetStructureID": 91240, + "Label": "91240-91240 via Adherens from 91242 -> 91241", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 91242, + "TargetID": 91241, + "Directional": false + } + ] + }, + { + "ID": 5355, + "SourceStructureID": 92092, + "TargetStructureID": 92092, + "Label": "92092-92092 via Adherens from 92798 -> 92797", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 92798, + "TargetID": 92797, + "Directional": false + } + ] + }, + { + "ID": 5356, + "SourceStructureID": 113541, + "TargetStructureID": 92865, + "Label": "113541-92865 via Gap Junction from 113543 -> 92866", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 113543, + "TargetID": 92866, + "Directional": false + } + ] + }, + { + "ID": 5357, + "SourceStructureID": 93494, + "TargetStructureID": 93486, + "Label": "93494-93486 via Adherens from 93495 -> 93493", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 93495, + "TargetID": 93493, + "Directional": false + } + ] + }, + { + "ID": 5358, + "SourceStructureID": 94579, + "TargetStructureID": 94579, + "Label": "94579-94579 via Unknown from 94580 -> 94581", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 94580, + "TargetID": 94581, + "Directional": false + } + ] + }, + { + "ID": 5359, + "SourceStructureID": 95299, + "TargetStructureID": 95311, + "Label": "95299-95311 via Unknown from 132857 -> 132859", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 132857, + "TargetID": 132859, + "Directional": false + } + ] + }, + { + "ID": 5360, + "SourceStructureID": 95607, + "TargetStructureID": 95605, + "Label": "95607-95605 via Adherens from 133054 -> 133055", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 133054, + "TargetID": 133055, + "Directional": false + } + ] + }, + { + "ID": 5361, + "SourceStructureID": 96189, + "TargetStructureID": 96212, + "Label": "96189-96212 via Unknown from 96214 -> 96213", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 96214, + "TargetID": 96213, + "Directional": false + } + ] + }, + { + "ID": 5362, + "SourceStructureID": 96788, + "TargetStructureID": 159727, + "Label": "96788-159727 via Gap Junction from 96790 -> 159730", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 96790, + "TargetID": 159730, + "Directional": false + } + ] + }, + { + "ID": 5363, + "SourceStructureID": 108026, + "TargetStructureID": 96898, + "Label": "108026-96898 via Unknown from 108027 -> 108028", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108027, + "TargetID": 108028, + "Directional": false + } + ] + }, + { + "ID": 5364, + "SourceStructureID": 97352, + "TargetStructureID": 97355, + "Label": "97352-97355 via Unknown from 131106 -> 131105", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 131106, + "TargetID": 131105, + "Directional": false + } + ] + }, + { + "ID": 5365, + "SourceStructureID": 98127, + "TargetStructureID": 98556, + "Label": "98127-98556 via Unknown from 98783 -> 98568", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 98783, + "TargetID": 98568, + "Directional": false + } + ] + }, + { + "ID": 5366, + "SourceStructureID": 98505, + "TargetStructureID": 98505, + "Label": "98505-98505 via Adherens from 98508 -> 98507", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 98508, + "TargetID": 98507, + "Directional": false + } + ] + }, + { + "ID": 5367, + "SourceStructureID": 99365, + "TargetStructureID": 99356, + "Label": "99365-99356 via Gap Junction from 99367 -> 99360", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 99367, + "TargetID": 99360, + "Directional": false + } + ] + }, + { + "ID": 5368, + "SourceStructureID": 99831, + "TargetStructureID": 100129, + "Label": "99831-100129 via Adherens from 100133 -> 100134", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100133, + "TargetID": 100134, + "Directional": false + } + ] + }, + { + "ID": 5369, + "SourceStructureID": 99981, + "TargetStructureID": 99981, + "Label": "99981-99981 via Adherens from 134212 -> 134211", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 134212, + "TargetID": 134211, + "Directional": false + } + ] + }, + { + "ID": 5370, + "SourceStructureID": 100709, + "TargetStructureID": 100147, + "Label": "100709-100147 via Adherens from 100711 -> 100712", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 100711, + "TargetID": 100712, + "Directional": false + } + ] + }, + { + "ID": 5371, + "SourceStructureID": 103084, + "TargetStructureID": 102607, + "Label": "103084-102607 via Unknown from 134061 -> 134060", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 134061, + "TargetID": 134060, + "Directional": false + } + ] + }, + { + "ID": 5372, + "SourceStructureID": 103572, + "TargetStructureID": 103572, + "Label": "103572-103572 via Unknown from 103583 -> 103582", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 103583, + "TargetID": 103582, + "Directional": false + } + ] + }, + { + "ID": 5373, + "SourceStructureID": 133891, + "TargetStructureID": 105210, + "Label": "133891-105210 via Gap Junction from 133892 -> 133893", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 133892, + "TargetID": 133893, + "Directional": false + } + ] + }, + { + "ID": 5374, + "SourceStructureID": 108539, + "TargetStructureID": 108539, + "Label": "108539-108539 via Unknown from 108544 -> 108543", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 108544, + "TargetID": 108543, + "Directional": false + } + ] + }, + { + "ID": 5375, + "SourceStructureID": 110880, + "TargetStructureID": 110879, + "Label": "110880-110879 via Adherens from 110897 -> 110898", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 110897, + "TargetID": 110898, + "Directional": false + } + ] + }, + { + "ID": 5376, + "SourceStructureID": 112264, + "TargetStructureID": 112260, + "Label": "112264-112260 via Adherens from 112265 -> 112262", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 112265, + "TargetID": 112262, + "Directional": false + } + ] + }, + { + "ID": 5377, + "SourceStructureID": 117093, + "TargetStructureID": 117091, + "Label": "117093-117091 via Gap Junction from 117094 -> 117092", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117094, + "TargetID": 117092, + "Directional": false + } + ] + }, + { + "ID": 5378, + "SourceStructureID": 117132, + "TargetStructureID": 117127, + "Label": "117132-117127 via Gap Junction from 117133 -> 117131", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117133, + "TargetID": 117131, + "Directional": false + } + ] + }, + { + "ID": 5379, + "SourceStructureID": 117778, + "TargetStructureID": 117774, + "Label": "117778-117774 via Gap Junction from 117779 -> 117777", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 117779, + "TargetID": 117777, + "Directional": false + } + ] + }, + { + "ID": 5380, + "SourceStructureID": 117999, + "TargetStructureID": 117990, + "Label": "117999-117990 via Gap Junction from 118000 -> 117998", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118000, + "TargetID": 117998, + "Directional": false + } + ] + }, + { + "ID": 5381, + "SourceStructureID": 118058, + "TargetStructureID": 118058, + "Label": "118058-118058 via Gap Junction from 118067 -> 118060", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 118067, + "TargetID": 118060, + "Directional": false + } + ] + }, + { + "ID": 5382, + "SourceStructureID": 128907, + "TargetStructureID": 120291, + "Label": "128907-120291 via Unknown from 128909 -> 128910", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 128909, + "TargetID": 128910, + "Directional": false + } + ] + }, + { + "ID": 5383, + "SourceStructureID": 136418, + "TargetStructureID": 122091, + "Label": "136418-122091 via Gap Junction from 136420 -> 136419", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 136420, + "TargetID": 136419, + "Directional": false + } + ] + }, + { + "ID": 5384, + "SourceStructureID": 131740, + "TargetStructureID": 122868, + "Label": "131740-122868 via Adherens from 131741 -> 131739", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 131741, + "TargetID": 131739, + "Directional": false + } + ] + }, + { + "ID": 5385, + "SourceStructureID": 123552, + "TargetStructureID": 123551, + "Label": "123552-123551 via Adherens from 123555 -> 123554", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 123555, + "TargetID": 123554, + "Directional": false + } + ] + }, + { + "ID": 5386, + "SourceStructureID": 124301, + "TargetStructureID": 124301, + "Label": "124301-124301 via Unknown from 124435 -> 124434", + "Type": "Unknown", + "Directional": false, + "Links": [ + { + "SourceID": 124435, + "TargetID": 124434, + "Directional": false + } + ] + }, + { + "ID": 5387, + "SourceStructureID": 132009, + "TargetStructureID": 132009, + "Label": "132009-132009 via Gap Junction from 132015 -> 132016", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132015, + "TargetID": 132016, + "Directional": false + } + ] + }, + { + "ID": 5388, + "SourceStructureID": 132009, + "TargetStructureID": 132021, + "Label": "132009-132021 via Gap Junction from 132020 -> 132022", + "Type": "Gap Junction", + "Directional": false, + "Links": [ + { + "SourceID": 132020, + "TargetID": 132022, + "Directional": false + } + ] + }, + { + "ID": 5389, + "SourceStructureID": 135829, + "TargetStructureID": 135225, + "Label": "135829-135225 via Touch from 135831 -> 135830", + "Type": "Touch", + "Directional": false, + "Links": [ + { + "SourceID": 135831, + "TargetID": 135830, + "Directional": false + } + ] + }, + { + "ID": 5390, + "SourceStructureID": 148300, + "TargetStructureID": 148300, + "Label": "148300-148300 via Adherens from 148309 -> 148308", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 148309, + "TargetID": 148308, + "Directional": false + } + ] + }, + { + "ID": 5391, + "SourceStructureID": 159611, + "TargetStructureID": 159541, + "Label": "159611-159541 via Adherens from 159613 -> 159543", + "Type": "Adherens", + "Directional": false, + "Links": [ + { + "SourceID": 159613, + "TargetID": 159543, + "Directional": false + } + ] + }, + { + "ID": 5392, + "SourceStructureID": 115, + "TargetStructureID": 165, + "Label": "115-165 via Conventional from 8072 -> 21678", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8072, + "TargetID": 21678, + "Directional": true + } + ] + }, + { + "ID": 5393, + "SourceStructureID": 115, + "TargetStructureID": 359, + "Label": "115-359 via Conventional from 8127 -> 21462", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8127, + "TargetID": 21462, + "Directional": true + } + ] + }, + { + "ID": 5394, + "SourceStructureID": 115, + "TargetStructureID": 373, + "Label": "115-373 via Conventional from 8170 -> 55275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8170, + "TargetID": 55275, + "Directional": true + } + ] + }, + { + "ID": 5395, + "SourceStructureID": 115, + "TargetStructureID": 425, + "Label": "115-425 via Conventional from 8168 -> 87462", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8168, + "TargetID": 87462, + "Directional": true + } + ] + }, + { + "ID": 5396, + "SourceStructureID": 115, + "TargetStructureID": 458, + "Label": "115-458 via Conventional from 8156 -> 8157", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8156, + "TargetID": 8157, + "Directional": true + } + ] + }, + { + "ID": 5397, + "SourceStructureID": 115, + "TargetStructureID": 3928, + "Label": "115-3928 via Conventional from 8081 -> 39952", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8081, + "TargetID": 39952, + "Directional": true + } + ] + }, + { + "ID": 5398, + "SourceStructureID": 115, + "TargetStructureID": 13469, + "Label": "115-13469 via Conventional from 10810 -> 13478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10810, + "TargetID": 13478, + "Directional": true + } + ] + }, + { + "ID": 5399, + "SourceStructureID": 115, + "TargetStructureID": 130472, + "Label": "115-130472 via Conventional from 8115 -> 130497", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8115, + "TargetID": 130497, + "Directional": true + } + ] + }, + { + "ID": 5400, + "SourceStructureID": 115, + "TargetStructureID": 159045, + "Label": "115-159045 via Conventional from 8112 -> 159073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8112, + "TargetID": 159073, + "Directional": true + } + ] + }, + { + "ID": 5401, + "SourceStructureID": 138, + "TargetStructureID": 3679, + "Label": "138-3679 via Ribbon Synapse from 2213 -> 65999, 2214 -> 66001, 2403 -> 22732, 11466 -> 11868, 11472 -> 11692, 11857 -> 29405, 46421 -> 22708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 2213, + "TargetID": 65999, + "Directional": true + }, + { + "SourceID": 2214, + "TargetID": 66001, + "Directional": true + }, + { + "SourceID": 2403, + "TargetID": 22732, + "Directional": true + }, + { + "SourceID": 11466, + "TargetID": 11868, + "Directional": true + }, + { + "SourceID": 11472, + "TargetID": 11692, + "Directional": true + }, + { + "SourceID": 11857, + "TargetID": 29405, + "Directional": true + }, + { + "SourceID": 46421, + "TargetID": 22708, + "Directional": true + } + ] + }, + { + "ID": 5402, + "SourceStructureID": 138, + "TargetStructureID": 7073, + "Label": "138-7073 via Ribbon Synapse from 2197 -> 11856", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 2197, + "TargetID": 11856, + "Directional": true + } + ] + }, + { + "ID": 5403, + "SourceStructureID": 138, + "TargetStructureID": 7897, + "Label": "138-7897 via Ribbon Synapse from 46479 -> 46480, 46483 -> 46484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46479, + "TargetID": 46480, + "Directional": true + }, + { + "SourceID": 46483, + "TargetID": 46484, + "Directional": true + } + ] + }, + { + "ID": 5404, + "SourceStructureID": 138, + "TargetStructureID": 12203, + "Label": "138-12203 via Ribbon Synapse from 2187 -> 12204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 2187, + "TargetID": 12204, + "Directional": true + } + ] + }, + { + "ID": 5405, + "SourceStructureID": 138, + "TargetStructureID": 20681, + "Label": "138-20681 via BC Conventional Synapse from 123274 -> 123275", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123274, + "TargetID": 123275, + "Directional": true + } + ] + }, + { + "ID": 5406, + "SourceStructureID": 138, + "TargetStructureID": 29340, + "Label": "138-29340 via Ribbon Synapse from 2197 -> 29398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 2197, + "TargetID": 29398, + "Directional": true + } + ] + }, + { + "ID": 5407, + "SourceStructureID": 138, + "TargetStructureID": 31486, + "Label": "138-31486 via Ribbon Synapse from 19565 -> 31653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19565, + "TargetID": 31653, + "Directional": true + } + ] + }, + { + "ID": 5408, + "SourceStructureID": 138, + "TargetStructureID": 32874, + "Label": "138-32874 via Ribbon Synapse from 32887 -> 32886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32887, + "TargetID": 32886, + "Directional": true + } + ] + }, + { + "ID": 5409, + "SourceStructureID": 138, + "TargetStructureID": 32892, + "Label": "138-32892 via Ribbon Synapse from 32887 -> 32895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32887, + "TargetID": 32895, + "Directional": true + } + ] + }, + { + "ID": 5410, + "SourceStructureID": 138, + "TargetStructureID": 43404, + "Label": "138-43404 via Ribbon Synapse from 33284 -> 43413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33284, + "TargetID": 43413, + "Directional": true + } + ] + }, + { + "ID": 5411, + "SourceStructureID": 138, + "TargetStructureID": 46449, + "Label": "138-46449 via Ribbon Synapse from 46460 -> 46459, 60788 -> 60789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46460, + "TargetID": 46459, + "Directional": true + }, + { + "SourceID": 60788, + "TargetID": 60789, + "Directional": true + } + ] + }, + { + "ID": 5412, + "SourceStructureID": 138, + "TargetStructureID": 54264, + "Label": "138-54264 via Ribbon Synapse from 54273 -> 54272, 54274 -> 54275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54273, + "TargetID": 54272, + "Directional": true + }, + { + "SourceID": 54274, + "TargetID": 54275, + "Directional": true + } + ] + }, + { + "ID": 5413, + "SourceStructureID": 138, + "TargetStructureID": 54622, + "Label": "138-54622 via BC Conventional Synapse from 55939 -> 55940", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55939, + "TargetID": 55940, + "Directional": true + } + ] + }, + { + "ID": 5414, + "SourceStructureID": 138, + "TargetStructureID": 70205, + "Label": "138-70205 via Ribbon Synapse from 11449 -> 70217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11449, + "TargetID": 70217, + "Directional": true + } + ] + }, + { + "ID": 5415, + "SourceStructureID": 138, + "TargetStructureID": 136432, + "Label": "138-136432 via Ribbon Synapse from 11857 -> 136501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11857, + "TargetID": 136501, + "Directional": true + } + ] + }, + { + "ID": 5416, + "SourceStructureID": 142, + "TargetStructureID": 5107, + "Label": "142-5107 via Ribbon Synapse from 92448 -> 125962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92448, + "TargetID": 125962, + "Directional": true + } + ] + }, + { + "ID": 5417, + "SourceStructureID": 142, + "TargetStructureID": 5435, + "Label": "142-5435 via BC Conventional Synapse from 125938 -> 125939", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125938, + "TargetID": 125939, + "Directional": true + } + ] + }, + { + "ID": 5418, + "SourceStructureID": 142, + "TargetStructureID": 5485, + "Label": "142-5485 via Ribbon Synapse from 49747 -> 126181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49747, + "TargetID": 126181, + "Directional": true + } + ] + }, + { + "ID": 5419, + "SourceStructureID": 142, + "TargetStructureID": 5487, + "Label": "142-5487 via Ribbon Synapse from 91678 -> 91680", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91678, + "TargetID": 91680, + "Directional": true + } + ] + }, + { + "ID": 5420, + "SourceStructureID": 142, + "TargetStructureID": 5618, + "Label": "142-5618 via Ribbon Synapse from 65988 -> 65986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65988, + "TargetID": 65986, + "Directional": true + } + ] + }, + { + "ID": 5421, + "SourceStructureID": 142, + "TargetStructureID": 6300, + "Label": "142-6300 via Ribbon Synapse from 32016 -> 125931, 50128 -> 126052, 126051 -> 126052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32016, + "TargetID": 125931, + "Directional": true + }, + { + "SourceID": 50128, + "TargetID": 126052, + "Directional": true + }, + { + "SourceID": 126051, + "TargetID": 126052, + "Directional": true + } + ] + }, + { + "ID": 5422, + "SourceStructureID": 142, + "TargetStructureID": 9347, + "Label": "142-9347 via Cistern Pre from 126307 -> 126318", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 126307, + "TargetID": 126318, + "Directional": true + } + ] + }, + { + "ID": 5423, + "SourceStructureID": 142, + "TargetStructureID": 9347, + "Label": "142-9347 via Ribbon Synapse from 30700 -> 126321, 30704 -> 126249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30700, + "TargetID": 126321, + "Directional": true + }, + { + "SourceID": 30704, + "TargetID": 126249, + "Directional": true + } + ] + }, + { + "ID": 5424, + "SourceStructureID": 142, + "TargetStructureID": 18693, + "Label": "142-18693 via BC Conventional Synapse from 126217 -> 27332", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126217, + "TargetID": 27332, + "Directional": true + } + ] + }, + { + "ID": 5425, + "SourceStructureID": 142, + "TargetStructureID": 18693, + "Label": "142-18693 via Ribbon Synapse from 126136 -> 126135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126136, + "TargetID": 126135, + "Directional": true + } + ] + }, + { + "ID": 5426, + "SourceStructureID": 142, + "TargetStructureID": 30513, + "Label": "142-30513 via Cistern Pre from 49704 -> 125974, 126169 -> 126170", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 49704, + "TargetID": 125974, + "Directional": true + }, + { + "SourceID": 126169, + "TargetID": 126170, + "Directional": true + } + ] + }, + { + "ID": 5427, + "SourceStructureID": 142, + "TargetStructureID": 30513, + "Label": "142-30513 via Ribbon Synapse from 10321 -> 30515", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10321, + "TargetID": 30515, + "Directional": true + } + ] + }, + { + "ID": 5428, + "SourceStructureID": 142, + "TargetStructureID": 30567, + "Label": "142-30567 via Ribbon Synapse from 32084 -> 32083, 126239 -> 126240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32084, + "TargetID": 32083, + "Directional": true + }, + { + "SourceID": 126239, + "TargetID": 126240, + "Directional": true + } + ] + }, + { + "ID": 5429, + "SourceStructureID": 142, + "TargetStructureID": 34036, + "Label": "142-34036 via Ribbon Synapse from 31793 -> 34041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31793, + "TargetID": 34041, + "Directional": true + } + ] + }, + { + "ID": 5430, + "SourceStructureID": 142, + "TargetStructureID": 39968, + "Label": "142-39968 via Ribbon Synapse from 125980 -> 125996", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125980, + "TargetID": 125996, + "Directional": true + } + ] + }, + { + "ID": 5431, + "SourceStructureID": 142, + "TargetStructureID": 44346, + "Label": "142-44346 via Ribbon Synapse from 44448 -> 44445, 87994 -> 44449, 87995 -> 44449, 87995 -> 87990, 87996 -> 87998, 119585 -> 44444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44448, + "TargetID": 44445, + "Directional": true + }, + { + "SourceID": 87994, + "TargetID": 44449, + "Directional": true + }, + { + "SourceID": 87995, + "TargetID": 44449, + "Directional": true + }, + { + "SourceID": 87995, + "TargetID": 87990, + "Directional": true + }, + { + "SourceID": 87996, + "TargetID": 87998, + "Directional": true + }, + { + "SourceID": 119585, + "TargetID": 44444, + "Directional": true + } + ] + }, + { + "ID": 5432, + "SourceStructureID": 142, + "TargetStructureID": 64774, + "Label": "142-64774 via Ribbon Synapse from 126132 -> 64776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126132, + "TargetID": 64776, + "Directional": true + } + ] + }, + { + "ID": 5433, + "SourceStructureID": 142, + "TargetStructureID": 72879, + "Label": "142-72879 via Ribbon Synapse from 35931 -> 72881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35931, + "TargetID": 72881, + "Directional": true + } + ] + }, + { + "ID": 5434, + "SourceStructureID": 142, + "TargetStructureID": 82543, + "Label": "142-82543 via Ribbon Synapse from 49753 -> 126241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49753, + "TargetID": 126241, + "Directional": true + } + ] + }, + { + "ID": 5435, + "SourceStructureID": 142, + "TargetStructureID": 84946, + "Label": "142-84946 via Ribbon Synapse from 30694 -> 126286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30694, + "TargetID": 126286, + "Directional": true + } + ] + }, + { + "ID": 5436, + "SourceStructureID": 142, + "TargetStructureID": 86106, + "Label": "142-86106 via Ribbon Synapse from 49746 -> 126182", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49746, + "TargetID": 126182, + "Directional": true + } + ] + }, + { + "ID": 5437, + "SourceStructureID": 142, + "TargetStructureID": 86110, + "Label": "142-86110 via Ribbon Synapse from 49762 -> 86126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49762, + "TargetID": 86126, + "Directional": true + } + ] + }, + { + "ID": 5438, + "SourceStructureID": 142, + "TargetStructureID": 87972, + "Label": "142-87972 via Ribbon Synapse from 44448 -> 87983, 87994 -> 87992, 119585 -> 125954", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44448, + "TargetID": 87983, + "Directional": true + }, + { + "SourceID": 87994, + "TargetID": 87992, + "Directional": true + }, + { + "SourceID": 119585, + "TargetID": 125954, + "Directional": true + } + ] + }, + { + "ID": 5439, + "SourceStructureID": 142, + "TargetStructureID": 87999, + "Label": "142-87999 via Ribbon Synapse from 87997 -> 88000, 159288 -> 88000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87997, + "TargetID": 88000, + "Directional": true + }, + { + "SourceID": 159288, + "TargetID": 88000, + "Directional": true + } + ] + }, + { + "ID": 5440, + "SourceStructureID": 142, + "TargetStructureID": 88055, + "Label": "142-88055 via Ribbon Synapse from 50124 -> 88057", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50124, + "TargetID": 88057, + "Directional": true + } + ] + }, + { + "ID": 5441, + "SourceStructureID": 142, + "TargetStructureID": 92295, + "Label": "142-92295 via Ribbon Synapse from 49692 -> 127678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49692, + "TargetID": 127678, + "Directional": true + } + ] + }, + { + "ID": 5442, + "SourceStructureID": 142, + "TargetStructureID": 92434, + "Label": "142-92434 via BC Conventional Synapse from 119572 -> 119570, 126167 -> 126369", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119572, + "TargetID": 119570, + "Directional": true + }, + { + "SourceID": 126167, + "TargetID": 126369, + "Directional": true + } + ] + }, + { + "ID": 5443, + "SourceStructureID": 142, + "TargetStructureID": 92434, + "Label": "142-92434 via Ribbon Synapse from 92442 -> 126370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92442, + "TargetID": 126370, + "Directional": true + } + ] + }, + { + "ID": 5444, + "SourceStructureID": 142, + "TargetStructureID": 92445, + "Label": "142-92445 via Unknown from 126160 -> 126159", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 126160, + "TargetID": 126159, + "Directional": true + } + ] + }, + { + "ID": 5445, + "SourceStructureID": 142, + "TargetStructureID": 92935, + "Label": "142-92935 via Ribbon Synapse from 30704 -> 116793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30704, + "TargetID": 116793, + "Directional": true + } + ] + }, + { + "ID": 5446, + "SourceStructureID": 142, + "TargetStructureID": 103964, + "Label": "142-103964 via Ribbon Synapse from 126140 -> 126142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126140, + "TargetID": 126142, + "Directional": true + } + ] + }, + { + "ID": 5447, + "SourceStructureID": 142, + "TargetStructureID": 104053, + "Label": "142-104053 via Ribbon Synapse from 119568 -> 119567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119568, + "TargetID": 119567, + "Directional": true + } + ] + }, + { + "ID": 5448, + "SourceStructureID": 142, + "TargetStructureID": 115195, + "Label": "142-115195 via Ribbon Synapse from 31803 -> 115198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31803, + "TargetID": 115198, + "Directional": true + } + ] + }, + { + "ID": 5449, + "SourceStructureID": 142, + "TargetStructureID": 125934, + "Label": "142-125934 via Ribbon Synapse from 32016 -> 125935", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32016, + "TargetID": 125935, + "Directional": true + } + ] + }, + { + "ID": 5450, + "SourceStructureID": 142, + "TargetStructureID": 127667, + "Label": "142-127667 via Ribbon Synapse from 31775 -> 127668, 125980 -> 127671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31775, + "TargetID": 127668, + "Directional": true + }, + { + "SourceID": 125980, + "TargetID": 127671, + "Directional": true + } + ] + }, + { + "ID": 5451, + "SourceStructureID": 142, + "TargetStructureID": 136728, + "Label": "142-136728 via Ribbon Synapse from 92929 -> 136729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92929, + "TargetID": 136729, + "Directional": true + } + ] + }, + { + "ID": 5452, + "SourceStructureID": 146, + "TargetStructureID": 425, + "Label": "146-425 via Conventional from 22094 -> 22095", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22094, + "TargetID": 22095, + "Directional": true + } + ] + }, + { + "ID": 5453, + "SourceStructureID": 161, + "TargetStructureID": 5377, + "Label": "161-5377 via Ribbon Synapse from 22736 -> 22734, 87016 -> 87014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22736, + "TargetID": 22734, + "Directional": true + }, + { + "SourceID": 87016, + "TargetID": 87014, + "Directional": true + } + ] + }, + { + "ID": 5454, + "SourceStructureID": 161, + "TargetStructureID": 7147, + "Label": "161-7147 via Ribbon Synapse from 11766 -> 11769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11766, + "TargetID": 11769, + "Directional": true + } + ] + }, + { + "ID": 5455, + "SourceStructureID": 161, + "TargetStructureID": 12897, + "Label": "161-12897 via Ribbon Synapse from 22868 -> 22867, 35586 -> 22862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22868, + "TargetID": 22867, + "Directional": true + }, + { + "SourceID": 35586, + "TargetID": 22862, + "Directional": true + } + ] + }, + { + "ID": 5456, + "SourceStructureID": 161, + "TargetStructureID": 43784, + "Label": "161-43784 via Ribbon Synapse from 11780 -> 43788", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11780, + "TargetID": 43788, + "Directional": true + } + ] + }, + { + "ID": 5457, + "SourceStructureID": 161, + "TargetStructureID": 77068, + "Label": "161-77068 via Ribbon Synapse from 77072 -> 77071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77072, + "TargetID": 77071, + "Directional": true + } + ] + }, + { + "ID": 5458, + "SourceStructureID": 162, + "TargetStructureID": 5118, + "Label": "162-5118 via Conventional from 6435 -> 6434", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6435, + "TargetID": 6434, + "Directional": true + } + ] + }, + { + "ID": 5459, + "SourceStructureID": 162, + "TargetStructureID": 6203, + "Label": "162-6203 via Conventional from 52645 -> 125784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52645, + "TargetID": 125784, + "Directional": true + } + ] + }, + { + "ID": 5460, + "SourceStructureID": 162, + "TargetStructureID": 8580, + "Label": "162-8580 via Conventional from 11865 -> 59777", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11865, + "TargetID": 59777, + "Directional": true + } + ] + }, + { + "ID": 5461, + "SourceStructureID": 165, + "TargetStructureID": 5351, + "Label": "165-5351 via Ribbon Synapse from 12544 -> 24067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12544, + "TargetID": 24067, + "Directional": true + } + ] + }, + { + "ID": 5462, + "SourceStructureID": 165, + "TargetStructureID": 6169, + "Label": "165-6169 via Ribbon Synapse from 12559 -> 20775", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12559, + "TargetID": 20775, + "Directional": true + } + ] + }, + { + "ID": 5463, + "SourceStructureID": 165, + "TargetStructureID": 9787, + "Label": "165-9787 via Ribbon Synapse from 12506 -> 12068, 12507 -> 12068, 12586 -> 18052, 21681 -> 21682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12506, + "TargetID": 12068, + "Directional": true + }, + { + "SourceID": 12507, + "TargetID": 12068, + "Directional": true + }, + { + "SourceID": 12586, + "TargetID": 18052, + "Directional": true + }, + { + "SourceID": 21681, + "TargetID": 21682, + "Directional": true + } + ] + }, + { + "ID": 5464, + "SourceStructureID": 165, + "TargetStructureID": 12210, + "Label": "165-12210 via Ribbon Synapse from 12209 -> 12211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12209, + "TargetID": 12211, + "Directional": true + } + ] + }, + { + "ID": 5465, + "SourceStructureID": 165, + "TargetStructureID": 12492, + "Label": "165-12492 via Ribbon Synapse from 7095 -> 12499, 12489 -> 12499, 12490 -> 12499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7095, + "TargetID": 12499, + "Directional": true + }, + { + "SourceID": 12489, + "TargetID": 12499, + "Directional": true + }, + { + "SourceID": 12490, + "TargetID": 12499, + "Directional": true + } + ] + }, + { + "ID": 5466, + "SourceStructureID": 165, + "TargetStructureID": 34336, + "Label": "165-34336 via Ribbon Synapse from 12503 -> 34382, 12530 -> 34381, 12531 -> 34381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12503, + "TargetID": 34382, + "Directional": true + }, + { + "SourceID": 12530, + "TargetID": 34381, + "Directional": true + }, + { + "SourceID": 12531, + "TargetID": 34381, + "Directional": true + } + ] + }, + { + "ID": 5467, + "SourceStructureID": 165, + "TargetStructureID": 46741, + "Label": "165-46741 via Ribbon Synapse from 20863 -> 136949, 21664 -> 136958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20863, + "TargetID": 136949, + "Directional": true + }, + { + "SourceID": 21664, + "TargetID": 136958, + "Directional": true + } + ] + }, + { + "ID": 5468, + "SourceStructureID": 165, + "TargetStructureID": 132202, + "Label": "165-132202 via Ribbon Synapse from 12554 -> 132204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12554, + "TargetID": 132204, + "Directional": true + } + ] + }, + { + "ID": 5469, + "SourceStructureID": 166, + "TargetStructureID": 390, + "Label": "166-390 via Ribbon Synapse from 65224 -> 65223, 94748 -> 65220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65224, + "TargetID": 65223, + "Directional": true + }, + { + "SourceID": 94748, + "TargetID": 65220, + "Directional": true + } + ] + }, + { + "ID": 5470, + "SourceStructureID": 166, + "TargetStructureID": 1620, + "Label": "166-1620 via Ribbon Synapse from 4366 -> 16859, 4374 -> 101155, 16863 -> 16862, 20626 -> 16887, 20627 -> 16870", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4366, + "TargetID": 16859, + "Directional": true + }, + { + "SourceID": 4374, + "TargetID": 101155, + "Directional": true + }, + { + "SourceID": 16863, + "TargetID": 16862, + "Directional": true + }, + { + "SourceID": 20626, + "TargetID": 16887, + "Directional": true + }, + { + "SourceID": 20627, + "TargetID": 16870, + "Directional": true + } + ] + }, + { + "ID": 5471, + "SourceStructureID": 166, + "TargetStructureID": 4890, + "Label": "166-4890 via Ribbon Synapse from 4431 -> 5329, 5792 -> 5793, 5839 -> 4920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4431, + "TargetID": 5329, + "Directional": true + }, + { + "SourceID": 5792, + "TargetID": 5793, + "Directional": true + }, + { + "SourceID": 5839, + "TargetID": 4920, + "Directional": true + } + ] + }, + { + "ID": 5472, + "SourceStructureID": 166, + "TargetStructureID": 5437, + "Label": "166-5437 via Ribbon Synapse from 4434 -> 88062, 4439 -> 88064, 101163 -> 101162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4434, + "TargetID": 88062, + "Directional": true + }, + { + "SourceID": 4439, + "TargetID": 88064, + "Directional": true + }, + { + "SourceID": 101163, + "TargetID": 101162, + "Directional": true + } + ] + }, + { + "ID": 5473, + "SourceStructureID": 166, + "TargetStructureID": 5439, + "Label": "166-5439 via Ribbon Synapse from 39360 -> 70799, 70812 -> 70813, 71452 -> 71443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39360, + "TargetID": 70799, + "Directional": true + }, + { + "SourceID": 70812, + "TargetID": 70813, + "Directional": true + }, + { + "SourceID": 71452, + "TargetID": 71443, + "Directional": true + } + ] + }, + { + "ID": 5474, + "SourceStructureID": 166, + "TargetStructureID": 5794, + "Label": "166-5794 via Ribbon Synapse from 5766 -> 5809, 5791 -> 5795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5766, + "TargetID": 5809, + "Directional": true + }, + { + "SourceID": 5791, + "TargetID": 5795, + "Directional": true + } + ] + }, + { + "ID": 5475, + "SourceStructureID": 166, + "TargetStructureID": 5919, + "Label": "166-5919 via Ribbon Synapse from 4126 -> 5921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4126, + "TargetID": 5921, + "Directional": true + } + ] + }, + { + "ID": 5476, + "SourceStructureID": 166, + "TargetStructureID": 6857, + "Label": "166-6857 via BC Conventional Synapse from 71342 -> 71343", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71342, + "TargetID": 71343, + "Directional": true + } + ] + }, + { + "ID": 5477, + "SourceStructureID": 166, + "TargetStructureID": 6857, + "Label": "166-6857 via Ribbon Synapse from 39006 -> 39007", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39006, + "TargetID": 39007, + "Directional": true + } + ] + }, + { + "ID": 5478, + "SourceStructureID": 166, + "TargetStructureID": 8579, + "Label": "166-8579 via Ribbon Synapse from 19814 -> 19812, 19817 -> 19815, 19826 -> 19823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19814, + "TargetID": 19812, + "Directional": true + }, + { + "SourceID": 19817, + "TargetID": 19815, + "Directional": true + }, + { + "SourceID": 19826, + "TargetID": 19823, + "Directional": true + } + ] + }, + { + "ID": 5479, + "SourceStructureID": 166, + "TargetStructureID": 8720, + "Label": "166-8720 via Ribbon Synapse from 4498 -> 59976", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4498, + "TargetID": 59976, + "Directional": true + } + ] + }, + { + "ID": 5480, + "SourceStructureID": 166, + "TargetStructureID": 16087, + "Label": "166-16087 via Ribbon Synapse from 4378 -> 23106, 4409 -> 23107, 5797 -> 16088, 59886 -> 59885, 59895 -> 59894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4378, + "TargetID": 23106, + "Directional": true + }, + { + "SourceID": 4409, + "TargetID": 23107, + "Directional": true + }, + { + "SourceID": 5797, + "TargetID": 16088, + "Directional": true + }, + { + "SourceID": 59886, + "TargetID": 59885, + "Directional": true + }, + { + "SourceID": 59895, + "TargetID": 59894, + "Directional": true + } + ] + }, + { + "ID": 5481, + "SourceStructureID": 166, + "TargetStructureID": 29198, + "Label": "166-29198 via Ribbon Synapse from 71486 -> 29218, 71851 -> 29216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71486, + "TargetID": 29218, + "Directional": true + }, + { + "SourceID": 71851, + "TargetID": 29216, + "Directional": true + } + ] + }, + { + "ID": 5482, + "SourceStructureID": 166, + "TargetStructureID": 29702, + "Label": "166-29702 via Ribbon Synapse from 72573 -> 72572, 72621 -> 72619", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72573, + "TargetID": 72572, + "Directional": true + }, + { + "SourceID": 72621, + "TargetID": 72619, + "Directional": true + } + ] + }, + { + "ID": 5483, + "SourceStructureID": 166, + "TargetStructureID": 30518, + "Label": "166-30518 via Ribbon Synapse from 30522 -> 30520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30522, + "TargetID": 30520, + "Directional": true + } + ] + }, + { + "ID": 5484, + "SourceStructureID": 166, + "TargetStructureID": 30526, + "Label": "166-30526 via Ribbon Synapse from 4126 -> 30536, 23622 -> 30536, 23624 -> 30536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4126, + "TargetID": 30536, + "Directional": true + }, + { + "SourceID": 23622, + "TargetID": 30536, + "Directional": true + }, + { + "SourceID": 23624, + "TargetID": 30536, + "Directional": true + } + ] + }, + { + "ID": 5485, + "SourceStructureID": 166, + "TargetStructureID": 32970, + "Label": "166-32970 via Ribbon Synapse from 4421 -> 32986, 4423 -> 32985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4421, + "TargetID": 32986, + "Directional": true + }, + { + "SourceID": 4423, + "TargetID": 32985, + "Directional": true + } + ] + }, + { + "ID": 5486, + "SourceStructureID": 166, + "TargetStructureID": 35222, + "Label": "166-35222 via Ribbon Synapse from 35231 -> 35226", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35231, + "TargetID": 35226, + "Directional": true + } + ] + }, + { + "ID": 5487, + "SourceStructureID": 166, + "TargetStructureID": 39345, + "Label": "166-39345 via Ribbon Synapse from 4470 -> 39347, 4530 -> 66718, 39010 -> 39356, 39351 -> 39349, 39355 -> 39354, 39360 -> 39359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4470, + "TargetID": 39347, + "Directional": true + }, + { + "SourceID": 4530, + "TargetID": 66718, + "Directional": true + }, + { + "SourceID": 39010, + "TargetID": 39356, + "Directional": true + }, + { + "SourceID": 39351, + "TargetID": 39349, + "Directional": true + }, + { + "SourceID": 39355, + "TargetID": 39354, + "Directional": true + }, + { + "SourceID": 39360, + "TargetID": 39359, + "Directional": true + } + ] + }, + { + "ID": 5488, + "SourceStructureID": 166, + "TargetStructureID": 39596, + "Label": "166-39596 via Ribbon Synapse from 4427 -> 39599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4427, + "TargetID": 39599, + "Directional": true + } + ] + }, + { + "ID": 5489, + "SourceStructureID": 166, + "TargetStructureID": 39602, + "Label": "166-39602 via Ribbon Synapse from 39606 -> 39604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39606, + "TargetID": 39604, + "Directional": true + } + ] + }, + { + "ID": 5490, + "SourceStructureID": 166, + "TargetStructureID": 39615, + "Label": "166-39615 via Ribbon Synapse from 4376 -> 39646, 4454 -> 39630, 4521 -> 39635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4376, + "TargetID": 39646, + "Directional": true + }, + { + "SourceID": 4454, + "TargetID": 39630, + "Directional": true + }, + { + "SourceID": 4521, + "TargetID": 39635, + "Directional": true + } + ] + }, + { + "ID": 5491, + "SourceStructureID": 166, + "TargetStructureID": 39717, + "Label": "166-39717 via Ribbon Synapse from 39723 -> 39722", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39723, + "TargetID": 39722, + "Directional": true + } + ] + }, + { + "ID": 5492, + "SourceStructureID": 166, + "TargetStructureID": 56822, + "Label": "166-56822 via Ribbon Synapse from 4554 -> 56823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4554, + "TargetID": 56823, + "Directional": true + } + ] + }, + { + "ID": 5493, + "SourceStructureID": 166, + "TargetStructureID": 58696, + "Label": "166-58696 via BC Conventional Synapse from 84810 -> 84811", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84810, + "TargetID": 84811, + "Directional": true + } + ] + }, + { + "ID": 5494, + "SourceStructureID": 166, + "TargetStructureID": 58696, + "Label": "166-58696 via Ribbon Synapse from 4494 -> 66721, 58707 -> 58706, 60006 -> 66711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4494, + "TargetID": 66721, + "Directional": true + }, + { + "SourceID": 58707, + "TargetID": 58706, + "Directional": true + }, + { + "SourceID": 60006, + "TargetID": 66711, + "Directional": true + } + ] + }, + { + "ID": 5495, + "SourceStructureID": 166, + "TargetStructureID": 66278, + "Label": "166-66278 via Ribbon Synapse from 28580 -> 81897, 60028 -> 66293, 81907 -> 81908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28580, + "TargetID": 81897, + "Directional": true + }, + { + "SourceID": 60028, + "TargetID": 66293, + "Directional": true + }, + { + "SourceID": 81907, + "TargetID": 81908, + "Directional": true + } + ] + }, + { + "ID": 5496, + "SourceStructureID": 166, + "TargetStructureID": 66634, + "Label": "166-66634 via Ribbon Synapse from 71339 -> 71340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71339, + "TargetID": 71340, + "Directional": true + } + ] + }, + { + "ID": 5497, + "SourceStructureID": 166, + "TargetStructureID": 66713, + "Label": "166-66713 via Ribbon Synapse from 60006 -> 66714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60006, + "TargetID": 66714, + "Directional": true + } + ] + }, + { + "ID": 5498, + "SourceStructureID": 166, + "TargetStructureID": 69899, + "Label": "166-69899 via Ribbon Synapse from 69898 -> 69900", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69898, + "TargetID": 69900, + "Directional": true + } + ] + }, + { + "ID": 5499, + "SourceStructureID": 166, + "TargetStructureID": 69902, + "Label": "166-69902 via Ribbon Synapse from 69901 -> 69903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69901, + "TargetID": 69903, + "Directional": true + } + ] + }, + { + "ID": 5500, + "SourceStructureID": 166, + "TargetStructureID": 70572, + "Label": "166-70572 via Ribbon Synapse from 39006 -> 70788", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39006, + "TargetID": 70788, + "Directional": true + } + ] + }, + { + "ID": 5501, + "SourceStructureID": 166, + "TargetStructureID": 70577, + "Label": "166-70577 via Ribbon Synapse from 70579 -> 70580", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70579, + "TargetID": 70580, + "Directional": true + } + ] + }, + { + "ID": 5502, + "SourceStructureID": 166, + "TargetStructureID": 71351, + "Label": "166-71351 via Ribbon Synapse from 4460 -> 71903, 60013 -> 71901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4460, + "TargetID": 71903, + "Directional": true + }, + { + "SourceID": 60013, + "TargetID": 71901, + "Directional": true + } + ] + }, + { + "ID": 5503, + "SourceStructureID": 166, + "TargetStructureID": 71429, + "Label": "166-71429 via BC Conventional Synapse from 71440 -> 71441", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71440, + "TargetID": 71441, + "Directional": true + } + ] + }, + { + "ID": 5504, + "SourceStructureID": 166, + "TargetStructureID": 71445, + "Label": "166-71445 via Ribbon Synapse from 71452 -> 71453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71452, + "TargetID": 71453, + "Directional": true + } + ] + }, + { + "ID": 5505, + "SourceStructureID": 166, + "TargetStructureID": 71454, + "Label": "166-71454 via Ribbon Synapse from 71452 -> 71455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71452, + "TargetID": 71455, + "Directional": true + } + ] + }, + { + "ID": 5506, + "SourceStructureID": 166, + "TargetStructureID": 75939, + "Label": "166-75939 via Ribbon Synapse from 72620 -> 75940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72620, + "TargetID": 75940, + "Directional": true + } + ] + }, + { + "ID": 5507, + "SourceStructureID": 166, + "TargetStructureID": 88082, + "Label": "166-88082 via Ribbon Synapse from 88099 -> 88098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88099, + "TargetID": 88098, + "Directional": true + } + ] + }, + { + "ID": 5508, + "SourceStructureID": 166, + "TargetStructureID": 101156, + "Label": "166-101156 via Ribbon Synapse from 4374 -> 101157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4374, + "TargetID": 101157, + "Directional": true + } + ] + }, + { + "ID": 5509, + "SourceStructureID": 166, + "TargetStructureID": 116581, + "Label": "166-116581 via Ribbon Synapse from 4454 -> 116582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4454, + "TargetID": 116582, + "Directional": true + } + ] + }, + { + "ID": 5510, + "SourceStructureID": 166, + "TargetStructureID": 123322, + "Label": "166-123322 via BC Conventional Synapse from 123321 -> 123323", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123321, + "TargetID": 123323, + "Directional": true + } + ] + }, + { + "ID": 5511, + "SourceStructureID": 166, + "TargetStructureID": 125981, + "Label": "166-125981 via Ribbon Synapse from 4448 -> 39969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4448, + "TargetID": 39969, + "Directional": true + } + ] + }, + { + "ID": 5512, + "SourceStructureID": 168, + "TargetStructureID": 606, + "Label": "168-606 via Ribbon Synapse from 4185 -> 53384, 33417 -> 53382, 44415 -> 53517, 53388 -> 53389, 53484 -> 53485", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4185, + "TargetID": 53384, + "Directional": true + }, + { + "SourceID": 33417, + "TargetID": 53382, + "Directional": true + }, + { + "SourceID": 44415, + "TargetID": 53517, + "Directional": true + }, + { + "SourceID": 53388, + "TargetID": 53389, + "Directional": true + }, + { + "SourceID": 53484, + "TargetID": 53485, + "Directional": true + } + ] + }, + { + "ID": 5513, + "SourceStructureID": 168, + "TargetStructureID": 906, + "Label": "168-906 via Cistern Pre from 12453 -> 27449", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 12453, + "TargetID": 27449, + "Directional": true + } + ] + }, + { + "ID": 5514, + "SourceStructureID": 168, + "TargetStructureID": 3257, + "Label": "168-3257 via BC Conventional Synapse from 119580 -> 119579", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119580, + "TargetID": 119579, + "Directional": true + } + ] + }, + { + "ID": 5515, + "SourceStructureID": 168, + "TargetStructureID": 3257, + "Label": "168-3257 via Cistern Pre from 39084 -> 39085", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 39084, + "TargetID": 39085, + "Directional": true + } + ] + }, + { + "ID": 5516, + "SourceStructureID": 168, + "TargetStructureID": 5487, + "Label": "168-5487 via BC Conventional Synapse from 126387 -> 126386", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126387, + "TargetID": 126386, + "Directional": true + } + ] + }, + { + "ID": 5517, + "SourceStructureID": 168, + "TargetStructureID": 5487, + "Label": "168-5487 via Ribbon Synapse from 4148 -> 126388, 4185 -> 34597, 4196 -> 34596, 4206 -> 34598, 29842 -> 29843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4148, + "TargetID": 126388, + "Directional": true + }, + { + "SourceID": 4185, + "TargetID": 34597, + "Directional": true + }, + { + "SourceID": 4196, + "TargetID": 34596, + "Directional": true + }, + { + "SourceID": 4206, + "TargetID": 34598, + "Directional": true + }, + { + "SourceID": 29842, + "TargetID": 29843, + "Directional": true + } + ] + }, + { + "ID": 5518, + "SourceStructureID": 168, + "TargetStructureID": 5489, + "Label": "168-5489 via BC Conventional Synapse from 119043 -> 119042", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119043, + "TargetID": 119042, + "Directional": true + } + ] + }, + { + "ID": 5519, + "SourceStructureID": 168, + "TargetStructureID": 7576, + "Label": "168-7576 via Ribbon Synapse from 4304 -> 54842, 50946 -> 54834, 55007 -> 55006, 55011 -> 55009", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4304, + "TargetID": 54842, + "Directional": true + }, + { + "SourceID": 50946, + "TargetID": 54834, + "Directional": true + }, + { + "SourceID": 55007, + "TargetID": 55006, + "Directional": true + }, + { + "SourceID": 55011, + "TargetID": 55009, + "Directional": true + } + ] + }, + { + "ID": 5520, + "SourceStructureID": 168, + "TargetStructureID": 34055, + "Label": "168-34055 via Ribbon Synapse from 4228 -> 34086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4228, + "TargetID": 34086, + "Directional": true + } + ] + }, + { + "ID": 5521, + "SourceStructureID": 168, + "TargetStructureID": 40444, + "Label": "168-40444 via Ribbon Synapse from 40443 -> 40445", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40443, + "TargetID": 40445, + "Directional": true + } + ] + }, + { + "ID": 5522, + "SourceStructureID": 168, + "TargetStructureID": 44346, + "Label": "168-44346 via Ribbon Synapse from 44415 -> 44413, 44426 -> 44425", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44415, + "TargetID": 44413, + "Directional": true + }, + { + "SourceID": 44426, + "TargetID": 44425, + "Directional": true + } + ] + }, + { + "ID": 5523, + "SourceStructureID": 168, + "TargetStructureID": 54958, + "Label": "168-54958 via Ribbon Synapse from 29841 -> 54960", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29841, + "TargetID": 54960, + "Directional": true + } + ] + }, + { + "ID": 5524, + "SourceStructureID": 168, + "TargetStructureID": 81916, + "Label": "168-81916 via Ribbon Synapse from 81918 -> 81961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81918, + "TargetID": 81961, + "Directional": true + } + ] + }, + { + "ID": 5525, + "SourceStructureID": 168, + "TargetStructureID": 81919, + "Label": "168-81919 via Ribbon Synapse from 81918 -> 81920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81918, + "TargetID": 81920, + "Directional": true + } + ] + }, + { + "ID": 5526, + "SourceStructureID": 168, + "TargetStructureID": 81921, + "Label": "168-81921 via Ribbon Synapse from 81918 -> 81958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81918, + "TargetID": 81958, + "Directional": true + } + ] + }, + { + "ID": 5527, + "SourceStructureID": 168, + "TargetStructureID": 81925, + "Label": "168-81925 via BC Conventional Synapse from 81971 -> 81972", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81971, + "TargetID": 81972, + "Directional": true + } + ] + }, + { + "ID": 5528, + "SourceStructureID": 168, + "TargetStructureID": 81925, + "Label": "168-81925 via Ribbon Synapse from 81967 -> 81970", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81967, + "TargetID": 81970, + "Directional": true + } + ] + }, + { + "ID": 5529, + "SourceStructureID": 168, + "TargetStructureID": 81946, + "Label": "168-81946 via BC Conventional Synapse from 82221 -> 82222", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82221, + "TargetID": 82222, + "Directional": true + } + ] + }, + { + "ID": 5530, + "SourceStructureID": 168, + "TargetStructureID": 81968, + "Label": "168-81968 via Ribbon Synapse from 81967 -> 81969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81967, + "TargetID": 81969, + "Directional": true + } + ] + }, + { + "ID": 5531, + "SourceStructureID": 168, + "TargetStructureID": 81989, + "Label": "168-81989 via Ribbon Synapse from 4294 -> 81994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4294, + "TargetID": 81994, + "Directional": true + } + ] + }, + { + "ID": 5532, + "SourceStructureID": 168, + "TargetStructureID": 81990, + "Label": "168-81990 via Ribbon Synapse from 4294 -> 81993", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4294, + "TargetID": 81993, + "Directional": true + } + ] + }, + { + "ID": 5533, + "SourceStructureID": 168, + "TargetStructureID": 81991, + "Label": "168-81991 via Ribbon Synapse from 4289 -> 82225, 4294 -> 81992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4289, + "TargetID": 82225, + "Directional": true + }, + { + "SourceID": 4294, + "TargetID": 81992, + "Directional": true + } + ] + }, + { + "ID": 5534, + "SourceStructureID": 168, + "TargetStructureID": 82217, + "Label": "168-82217 via Ribbon Synapse from 82215 -> 82218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82215, + "TargetID": 82218, + "Directional": true + } + ] + }, + { + "ID": 5535, + "SourceStructureID": 168, + "TargetStructureID": 91178, + "Label": "168-91178 via BC Conventional Synapse from 91751 -> 91750", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91751, + "TargetID": 91750, + "Directional": true + } + ] + }, + { + "ID": 5536, + "SourceStructureID": 168, + "TargetStructureID": 91593, + "Label": "168-91593 via Ribbon Synapse from 4270 -> 91598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4270, + "TargetID": 91598, + "Directional": true + } + ] + }, + { + "ID": 5537, + "SourceStructureID": 168, + "TargetStructureID": 91742, + "Label": "168-91742 via Ribbon Synapse from 92773 -> 92774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92773, + "TargetID": 92774, + "Directional": true + } + ] + }, + { + "ID": 5538, + "SourceStructureID": 168, + "TargetStructureID": 112211, + "Label": "168-112211 via Ribbon Synapse from 4306 -> 112212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4306, + "TargetID": 112212, + "Directional": true + } + ] + }, + { + "ID": 5539, + "SourceStructureID": 170, + "TargetStructureID": 606, + "Label": "170-606 via Ribbon Synapse from 1411 -> 53327, 1422 -> 53201, 47805 -> 47806, 53348 -> 53347, 53354 -> 53347, 53358 -> 53357", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1411, + "TargetID": 53327, + "Directional": true + }, + { + "SourceID": 1422, + "TargetID": 53201, + "Directional": true + }, + { + "SourceID": 47805, + "TargetID": 47806, + "Directional": true + }, + { + "SourceID": 53348, + "TargetID": 53347, + "Directional": true + }, + { + "SourceID": 53354, + "TargetID": 53347, + "Directional": true + }, + { + "SourceID": 53358, + "TargetID": 53357, + "Directional": true + } + ] + }, + { + "ID": 5540, + "SourceStructureID": 170, + "TargetStructureID": 5481, + "Label": "170-5481 via Ribbon Synapse from 39515 -> 90247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39515, + "TargetID": 90247, + "Directional": true + } + ] + }, + { + "ID": 5541, + "SourceStructureID": 170, + "TargetStructureID": 9769, + "Label": "170-9769 via Ribbon Synapse from 1222 -> 29844, 1224 -> 54957, 1228 -> 29845, 1314 -> 29825, 1315 -> 89730, 88757 -> 88758", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1222, + "TargetID": 29844, + "Directional": true + }, + { + "SourceID": 1224, + "TargetID": 54957, + "Directional": true + }, + { + "SourceID": 1228, + "TargetID": 29845, + "Directional": true + }, + { + "SourceID": 1314, + "TargetID": 29825, + "Directional": true + }, + { + "SourceID": 1315, + "TargetID": 89730, + "Directional": true + }, + { + "SourceID": 88757, + "TargetID": 88758, + "Directional": true + } + ] + }, + { + "ID": 5542, + "SourceStructureID": 170, + "TargetStructureID": 18693, + "Label": "170-18693 via Ribbon Synapse from 1244 -> 89744, 1252 -> 89745, 89490 -> 89491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1244, + "TargetID": 89744, + "Directional": true + }, + { + "SourceID": 1252, + "TargetID": 89745, + "Directional": true + }, + { + "SourceID": 89490, + "TargetID": 89491, + "Directional": true + } + ] + }, + { + "ID": 5543, + "SourceStructureID": 170, + "TargetStructureID": 23512, + "Label": "170-23512 via Ribbon Synapse from 1290 -> 23533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1290, + "TargetID": 23533, + "Directional": true + } + ] + }, + { + "ID": 5544, + "SourceStructureID": 170, + "TargetStructureID": 29827, + "Label": "170-29827 via Ribbon Synapse from 1294 -> 29828, 1315 -> 89724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1294, + "TargetID": 29828, + "Directional": true + }, + { + "SourceID": 1315, + "TargetID": 89724, + "Directional": true + } + ] + }, + { + "ID": 5545, + "SourceStructureID": 170, + "TargetStructureID": 32920, + "Label": "170-32920 via Ribbon Synapse from 1224 -> 32922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1224, + "TargetID": 32922, + "Directional": true + } + ] + }, + { + "ID": 5546, + "SourceStructureID": 170, + "TargetStructureID": 33675, + "Label": "170-33675 via Ribbon Synapse from 28368 -> 33678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28368, + "TargetID": 33678, + "Directional": true + } + ] + }, + { + "ID": 5547, + "SourceStructureID": 170, + "TargetStructureID": 38949, + "Label": "170-38949 via Ribbon Synapse from 1331 -> 39032", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1331, + "TargetID": 39032, + "Directional": true + } + ] + }, + { + "ID": 5548, + "SourceStructureID": 170, + "TargetStructureID": 51617, + "Label": "170-51617 via Ribbon Synapse from 89205 -> 89862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89205, + "TargetID": 89862, + "Directional": true + } + ] + }, + { + "ID": 5549, + "SourceStructureID": 170, + "TargetStructureID": 71882, + "Label": "170-71882 via Ribbon Synapse from 1272 -> 90439, 1359 -> 90410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1272, + "TargetID": 90439, + "Directional": true + }, + { + "SourceID": 1359, + "TargetID": 90410, + "Directional": true + } + ] + }, + { + "ID": 5550, + "SourceStructureID": 170, + "TargetStructureID": 74727, + "Label": "170-74727 via Ribbon Synapse from 147492 -> 147493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147492, + "TargetID": 147493, + "Directional": true + } + ] + }, + { + "ID": 5551, + "SourceStructureID": 170, + "TargetStructureID": 88367, + "Label": "170-88367 via Ribbon Synapse from 1144 -> 88369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1144, + "TargetID": 88369, + "Directional": true + } + ] + }, + { + "ID": 5552, + "SourceStructureID": 170, + "TargetStructureID": 88424, + "Label": "170-88424 via Ribbon Synapse from 1215 -> 88428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1215, + "TargetID": 88428, + "Directional": true + } + ] + }, + { + "ID": 5553, + "SourceStructureID": 170, + "TargetStructureID": 88457, + "Label": "170-88457 via Ribbon Synapse from 1222 -> 88458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1222, + "TargetID": 88458, + "Directional": true + } + ] + }, + { + "ID": 5554, + "SourceStructureID": 170, + "TargetStructureID": 88479, + "Label": "170-88479 via Ribbon Synapse from 1228 -> 88481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1228, + "TargetID": 88481, + "Directional": true + } + ] + }, + { + "ID": 5555, + "SourceStructureID": 170, + "TargetStructureID": 88559, + "Label": "170-88559 via Ribbon Synapse from 1230 -> 88560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1230, + "TargetID": 88560, + "Directional": true + } + ] + }, + { + "ID": 5556, + "SourceStructureID": 170, + "TargetStructureID": 88584, + "Label": "170-88584 via BC Conventional Synapse from 88592 -> 88593", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88592, + "TargetID": 88593, + "Directional": true + } + ] + }, + { + "ID": 5557, + "SourceStructureID": 170, + "TargetStructureID": 88689, + "Label": "170-88689 via Ribbon Synapse from 1237 -> 88707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1237, + "TargetID": 88707, + "Directional": true + } + ] + }, + { + "ID": 5558, + "SourceStructureID": 170, + "TargetStructureID": 88692, + "Label": "170-88692 via Ribbon Synapse from 28364 -> 88697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28364, + "TargetID": 88697, + "Directional": true + } + ] + }, + { + "ID": 5559, + "SourceStructureID": 170, + "TargetStructureID": 88702, + "Label": "170-88702 via Ribbon Synapse from 1234 -> 88704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1234, + "TargetID": 88704, + "Directional": true + } + ] + }, + { + "ID": 5560, + "SourceStructureID": 170, + "TargetStructureID": 88717, + "Label": "170-88717 via Ribbon Synapse from 1244 -> 89518, 1252 -> 89519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1244, + "TargetID": 89518, + "Directional": true + }, + { + "SourceID": 1252, + "TargetID": 89519, + "Directional": true + } + ] + }, + { + "ID": 5561, + "SourceStructureID": 170, + "TargetStructureID": 88747, + "Label": "170-88747 via Ribbon Synapse from 88751 -> 88752", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88751, + "TargetID": 88752, + "Directional": true + } + ] + }, + { + "ID": 5562, + "SourceStructureID": 170, + "TargetStructureID": 88759, + "Label": "170-88759 via Ribbon Synapse from 88757 -> 88760", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88757, + "TargetID": 88760, + "Directional": true + } + ] + }, + { + "ID": 5563, + "SourceStructureID": 170, + "TargetStructureID": 88775, + "Label": "170-88775 via BC Conventional Synapse from 88779 -> 88776", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88779, + "TargetID": 88776, + "Directional": true + } + ] + }, + { + "ID": 5564, + "SourceStructureID": 170, + "TargetStructureID": 88793, + "Label": "170-88793 via Ribbon Synapse from 88794 -> 88795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88794, + "TargetID": 88795, + "Directional": true + } + ] + }, + { + "ID": 5565, + "SourceStructureID": 170, + "TargetStructureID": 88797, + "Label": "170-88797 via Ribbon Synapse from 88794 -> 88798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88794, + "TargetID": 88798, + "Directional": true + } + ] + }, + { + "ID": 5566, + "SourceStructureID": 170, + "TargetStructureID": 88810, + "Label": "170-88810 via Ribbon Synapse from 1365 -> 88811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1365, + "TargetID": 88811, + "Directional": true + } + ] + }, + { + "ID": 5567, + "SourceStructureID": 170, + "TargetStructureID": 88817, + "Label": "170-88817 via Ribbon Synapse from 1338 -> 88821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1338, + "TargetID": 88821, + "Directional": true + } + ] + }, + { + "ID": 5568, + "SourceStructureID": 170, + "TargetStructureID": 88945, + "Label": "170-88945 via Ribbon Synapse from 1345 -> 88949, 28374 -> 88946, 28375 -> 88949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1345, + "TargetID": 88949, + "Directional": true + }, + { + "SourceID": 28374, + "TargetID": 88946, + "Directional": true + }, + { + "SourceID": 28375, + "TargetID": 88949, + "Directional": true + } + ] + }, + { + "ID": 5569, + "SourceStructureID": 170, + "TargetStructureID": 88947, + "Label": "170-88947 via Ribbon Synapse from 1344 -> 88960, 28375 -> 88948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1344, + "TargetID": 88960, + "Directional": true + }, + { + "SourceID": 28375, + "TargetID": 88948, + "Directional": true + } + ] + }, + { + "ID": 5570, + "SourceStructureID": 170, + "TargetStructureID": 88986, + "Label": "170-88986 via Ribbon Synapse from 1342 -> 88991", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1342, + "TargetID": 88991, + "Directional": true + } + ] + }, + { + "ID": 5571, + "SourceStructureID": 170, + "TargetStructureID": 88988, + "Label": "170-88988 via Ribbon Synapse from 1342 -> 88992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1342, + "TargetID": 88992, + "Directional": true + } + ] + }, + { + "ID": 5572, + "SourceStructureID": 170, + "TargetStructureID": 89008, + "Label": "170-89008 via Ribbon Synapse from 89007 -> 89010", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89007, + "TargetID": 89010, + "Directional": true + } + ] + }, + { + "ID": 5573, + "SourceStructureID": 170, + "TargetStructureID": 89034, + "Label": "170-89034 via Ribbon Synapse from 1347 -> 89035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1347, + "TargetID": 89035, + "Directional": true + } + ] + }, + { + "ID": 5574, + "SourceStructureID": 170, + "TargetStructureID": 89078, + "Label": "170-89078 via Ribbon Synapse from 985 -> 89079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 985, + "TargetID": 89079, + "Directional": true + } + ] + }, + { + "ID": 5575, + "SourceStructureID": 170, + "TargetStructureID": 89086, + "Label": "170-89086 via Ribbon Synapse from 28368 -> 89156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28368, + "TargetID": 89156, + "Directional": true + } + ] + }, + { + "ID": 5576, + "SourceStructureID": 170, + "TargetStructureID": 89175, + "Label": "170-89175 via Ribbon Synapse from 1263 -> 89495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1263, + "TargetID": 89495, + "Directional": true + } + ] + }, + { + "ID": 5577, + "SourceStructureID": 170, + "TargetStructureID": 89217, + "Label": "170-89217 via Ribbon Synapse from 1351 -> 89218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1351, + "TargetID": 89218, + "Directional": true + } + ] + }, + { + "ID": 5578, + "SourceStructureID": 170, + "TargetStructureID": 89246, + "Label": "170-89246 via Ribbon Synapse from 1278 -> 89247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1278, + "TargetID": 89247, + "Directional": true + } + ] + }, + { + "ID": 5579, + "SourceStructureID": 170, + "TargetStructureID": 89359, + "Label": "170-89359 via Ribbon Synapse from 1279 -> 89360", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1279, + "TargetID": 89360, + "Directional": true + } + ] + }, + { + "ID": 5580, + "SourceStructureID": 170, + "TargetStructureID": 89367, + "Label": "170-89367 via Ribbon Synapse from 89371 -> 89368", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89371, + "TargetID": 89368, + "Directional": true + } + ] + }, + { + "ID": 5581, + "SourceStructureID": 170, + "TargetStructureID": 89377, + "Label": "170-89377 via Ribbon Synapse from 89376 -> 89379, 89382 -> 89383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89376, + "TargetID": 89379, + "Directional": true + }, + { + "SourceID": 89382, + "TargetID": 89383, + "Directional": true + } + ] + }, + { + "ID": 5582, + "SourceStructureID": 170, + "TargetStructureID": 89400, + "Label": "170-89400 via Ribbon Synapse from 89401 -> 89403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89401, + "TargetID": 89403, + "Directional": true + } + ] + }, + { + "ID": 5583, + "SourceStructureID": 170, + "TargetStructureID": 89402, + "Label": "170-89402 via Ribbon Synapse from 89401 -> 89404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89401, + "TargetID": 89404, + "Directional": true + } + ] + }, + { + "ID": 5584, + "SourceStructureID": 170, + "TargetStructureID": 89407, + "Label": "170-89407 via Ribbon Synapse from 89406 -> 89408", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89406, + "TargetID": 89408, + "Directional": true + } + ] + }, + { + "ID": 5585, + "SourceStructureID": 170, + "TargetStructureID": 89417, + "Label": "170-89417 via Ribbon Synapse from 1283 -> 89418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1283, + "TargetID": 89418, + "Directional": true + } + ] + }, + { + "ID": 5586, + "SourceStructureID": 170, + "TargetStructureID": 89472, + "Label": "170-89472 via Ribbon Synapse from 1285 -> 89473, 1288 -> 89474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1285, + "TargetID": 89473, + "Directional": true + }, + { + "SourceID": 1288, + "TargetID": 89474, + "Directional": true + } + ] + }, + { + "ID": 5587, + "SourceStructureID": 170, + "TargetStructureID": 89475, + "Label": "170-89475 via Ribbon Synapse from 1288 -> 89476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1288, + "TargetID": 89476, + "Directional": true + } + ] + }, + { + "ID": 5588, + "SourceStructureID": 170, + "TargetStructureID": 89496, + "Label": "170-89496 via Ribbon Synapse from 1263 -> 89497, 1275 -> 90052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1263, + "TargetID": 89497, + "Directional": true + }, + { + "SourceID": 1275, + "TargetID": 90052, + "Directional": true + } + ] + }, + { + "ID": 5589, + "SourceStructureID": 170, + "TargetStructureID": 89669, + "Label": "170-89669 via Ribbon Synapse from 1298 -> 89671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1298, + "TargetID": 89671, + "Directional": true + } + ] + }, + { + "ID": 5590, + "SourceStructureID": 170, + "TargetStructureID": 89687, + "Label": "170-89687 via Ribbon Synapse from 1301 -> 89689, 89686 -> 89688", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1301, + "TargetID": 89689, + "Directional": true + }, + { + "SourceID": 89686, + "TargetID": 89688, + "Directional": true + } + ] + }, + { + "ID": 5591, + "SourceStructureID": 170, + "TargetStructureID": 89698, + "Label": "170-89698 via Ribbon Synapse from 1301 -> 89700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1301, + "TargetID": 89700, + "Directional": true + } + ] + }, + { + "ID": 5592, + "SourceStructureID": 170, + "TargetStructureID": 89739, + "Label": "170-89739 via BC Conventional Synapse from 89740 -> 89741", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89740, + "TargetID": 89741, + "Directional": true + } + ] + }, + { + "ID": 5593, + "SourceStructureID": 170, + "TargetStructureID": 89855, + "Label": "170-89855 via Ribbon Synapse from 89205 -> 89861", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89205, + "TargetID": 89861, + "Directional": true + } + ] + }, + { + "ID": 5594, + "SourceStructureID": 170, + "TargetStructureID": 89888, + "Label": "170-89888 via Ribbon Synapse from 89206 -> 89889", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89206, + "TargetID": 89889, + "Directional": true + } + ] + }, + { + "ID": 5595, + "SourceStructureID": 170, + "TargetStructureID": 89935, + "Label": "170-89935 via Ribbon Synapse from 89933 -> 89940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89933, + "TargetID": 89940, + "Directional": true + } + ] + }, + { + "ID": 5596, + "SourceStructureID": 170, + "TargetStructureID": 89985, + "Label": "170-89985 via Ribbon Synapse from 89986 -> 89987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89986, + "TargetID": 89987, + "Directional": true + } + ] + }, + { + "ID": 5597, + "SourceStructureID": 170, + "TargetStructureID": 90047, + "Label": "170-90047 via Ribbon Synapse from 28370 -> 90060, 28373 -> 90085", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28370, + "TargetID": 90060, + "Directional": true + }, + { + "SourceID": 28373, + "TargetID": 90085, + "Directional": true + } + ] + }, + { + "ID": 5598, + "SourceStructureID": 170, + "TargetStructureID": 90053, + "Label": "170-90053 via Ribbon Synapse from 1272 -> 90058, 1275 -> 90057, 28373 -> 90086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1272, + "TargetID": 90058, + "Directional": true + }, + { + "SourceID": 1275, + "TargetID": 90057, + "Directional": true + }, + { + "SourceID": 28373, + "TargetID": 90086, + "Directional": true + } + ] + }, + { + "ID": 5599, + "SourceStructureID": 170, + "TargetStructureID": 90061, + "Label": "170-90061 via Ribbon Synapse from 28370 -> 90062", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28370, + "TargetID": 90062, + "Directional": true + } + ] + }, + { + "ID": 5600, + "SourceStructureID": 170, + "TargetStructureID": 90077, + "Label": "170-90077 via Ribbon Synapse from 28372 -> 90081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28372, + "TargetID": 90081, + "Directional": true + } + ] + }, + { + "ID": 5601, + "SourceStructureID": 170, + "TargetStructureID": 90078, + "Label": "170-90078 via Ribbon Synapse from 28372 -> 90082", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28372, + "TargetID": 90082, + "Directional": true + } + ] + }, + { + "ID": 5602, + "SourceStructureID": 170, + "TargetStructureID": 90079, + "Label": "170-90079 via Ribbon Synapse from 28372 -> 90080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28372, + "TargetID": 90080, + "Directional": true + } + ] + }, + { + "ID": 5603, + "SourceStructureID": 170, + "TargetStructureID": 90241, + "Label": "170-90241 via Ribbon Synapse from 39515 -> 90242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39515, + "TargetID": 90242, + "Directional": true + } + ] + }, + { + "ID": 5604, + "SourceStructureID": 170, + "TargetStructureID": 90248, + "Label": "170-90248 via Ribbon Synapse from 1278 -> 90249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1278, + "TargetID": 90249, + "Directional": true + } + ] + }, + { + "ID": 5605, + "SourceStructureID": 170, + "TargetStructureID": 90258, + "Label": "170-90258 via Ribbon Synapse from 90257 -> 90259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90257, + "TargetID": 90259, + "Directional": true + } + ] + }, + { + "ID": 5606, + "SourceStructureID": 170, + "TargetStructureID": 90260, + "Label": "170-90260 via Ribbon Synapse from 90257 -> 90261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90257, + "TargetID": 90261, + "Directional": true + } + ] + }, + { + "ID": 5607, + "SourceStructureID": 170, + "TargetStructureID": 90269, + "Label": "170-90269 via Ribbon Synapse from 53354 -> 90270", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53354, + "TargetID": 90270, + "Directional": true + } + ] + }, + { + "ID": 5608, + "SourceStructureID": 170, + "TargetStructureID": 90273, + "Label": "170-90273 via Ribbon Synapse from 90272 -> 90277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90272, + "TargetID": 90277, + "Directional": true + } + ] + }, + { + "ID": 5609, + "SourceStructureID": 170, + "TargetStructureID": 90278, + "Label": "170-90278 via Ribbon Synapse from 90272 -> 90279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90272, + "TargetID": 90279, + "Directional": true + } + ] + }, + { + "ID": 5610, + "SourceStructureID": 170, + "TargetStructureID": 90287, + "Label": "170-90287 via Ribbon Synapse from 90286 -> 90288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90286, + "TargetID": 90288, + "Directional": true + } + ] + }, + { + "ID": 5611, + "SourceStructureID": 170, + "TargetStructureID": 90296, + "Label": "170-90296 via Ribbon Synapse from 90307 -> 90308", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90307, + "TargetID": 90308, + "Directional": true + } + ] + }, + { + "ID": 5612, + "SourceStructureID": 170, + "TargetStructureID": 90309, + "Label": "170-90309 via Ribbon Synapse from 90307 -> 90310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90307, + "TargetID": 90310, + "Directional": true + } + ] + }, + { + "ID": 5613, + "SourceStructureID": 170, + "TargetStructureID": 90327, + "Label": "170-90327 via Ribbon Synapse from 53358 -> 90329", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53358, + "TargetID": 90329, + "Directional": true + } + ] + }, + { + "ID": 5614, + "SourceStructureID": 170, + "TargetStructureID": 90330, + "Label": "170-90330 via Ribbon Synapse from 53358 -> 90331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53358, + "TargetID": 90331, + "Directional": true + } + ] + }, + { + "ID": 5615, + "SourceStructureID": 170, + "TargetStructureID": 90366, + "Label": "170-90366 via Ribbon Synapse from 1404 -> 90367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1404, + "TargetID": 90367, + "Directional": true + } + ] + }, + { + "ID": 5616, + "SourceStructureID": 170, + "TargetStructureID": 90368, + "Label": "170-90368 via Ribbon Synapse from 1411 -> 90370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1411, + "TargetID": 90370, + "Directional": true + } + ] + }, + { + "ID": 5617, + "SourceStructureID": 170, + "TargetStructureID": 90409, + "Label": "170-90409 via Ribbon Synapse from 90407 -> 90411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90407, + "TargetID": 90411, + "Directional": true + } + ] + }, + { + "ID": 5618, + "SourceStructureID": 170, + "TargetStructureID": 90421, + "Label": "170-90421 via Ribbon Synapse from 15995 -> 90422", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15995, + "TargetID": 90422, + "Directional": true + } + ] + }, + { + "ID": 5619, + "SourceStructureID": 170, + "TargetStructureID": 90423, + "Label": "170-90423 via Ribbon Synapse from 90425 -> 90426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90425, + "TargetID": 90426, + "Directional": true + } + ] + }, + { + "ID": 5620, + "SourceStructureID": 170, + "TargetStructureID": 90428, + "Label": "170-90428 via Ribbon Synapse from 90427 -> 90431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90427, + "TargetID": 90431, + "Directional": true + } + ] + }, + { + "ID": 5621, + "SourceStructureID": 170, + "TargetStructureID": 90460, + "Label": "170-90460 via Ribbon Synapse from 15997 -> 90462", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15997, + "TargetID": 90462, + "Directional": true + } + ] + }, + { + "ID": 5622, + "SourceStructureID": 170, + "TargetStructureID": 90550, + "Label": "170-90550 via Ribbon Synapse from 90549 -> 90556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90549, + "TargetID": 90556, + "Directional": true + } + ] + }, + { + "ID": 5623, + "SourceStructureID": 170, + "TargetStructureID": 90558, + "Label": "170-90558 via Ribbon Synapse from 90549 -> 90559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90549, + "TargetID": 90559, + "Directional": true + } + ] + }, + { + "ID": 5624, + "SourceStructureID": 170, + "TargetStructureID": 90563, + "Label": "170-90563 via Ribbon Synapse from 1413 -> 90565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1413, + "TargetID": 90565, + "Directional": true + } + ] + }, + { + "ID": 5625, + "SourceStructureID": 170, + "TargetStructureID": 90566, + "Label": "170-90566 via Ribbon Synapse from 1413 -> 90567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1413, + "TargetID": 90567, + "Directional": true + } + ] + }, + { + "ID": 5626, + "SourceStructureID": 170, + "TargetStructureID": 90570, + "Label": "170-90570 via Ribbon Synapse from 1426 -> 90571, 133996 -> 133997", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1426, + "TargetID": 90571, + "Directional": true + }, + { + "SourceID": 133996, + "TargetID": 133997, + "Directional": true + } + ] + }, + { + "ID": 5627, + "SourceStructureID": 170, + "TargetStructureID": 90572, + "Label": "170-90572 via Ribbon Synapse from 1426 -> 90573", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1426, + "TargetID": 90573, + "Directional": true + } + ] + }, + { + "ID": 5628, + "SourceStructureID": 170, + "TargetStructureID": 90577, + "Label": "170-90577 via Ribbon Synapse from 90576 -> 90578", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90576, + "TargetID": 90578, + "Directional": true + } + ] + }, + { + "ID": 5629, + "SourceStructureID": 170, + "TargetStructureID": 90579, + "Label": "170-90579 via Ribbon Synapse from 90576 -> 90580", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90576, + "TargetID": 90580, + "Directional": true + } + ] + }, + { + "ID": 5630, + "SourceStructureID": 170, + "TargetStructureID": 90591, + "Label": "170-90591 via Ribbon Synapse from 1422 -> 90592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1422, + "TargetID": 90592, + "Directional": true + } + ] + }, + { + "ID": 5631, + "SourceStructureID": 170, + "TargetStructureID": 90600, + "Label": "170-90600 via Ribbon Synapse from 1434 -> 90601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1434, + "TargetID": 90601, + "Directional": true + } + ] + }, + { + "ID": 5632, + "SourceStructureID": 170, + "TargetStructureID": 90602, + "Label": "170-90602 via Ribbon Synapse from 1434 -> 90603", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1434, + "TargetID": 90603, + "Directional": true + } + ] + }, + { + "ID": 5633, + "SourceStructureID": 170, + "TargetStructureID": 90622, + "Label": "170-90622 via Ribbon Synapse from 90621 -> 90623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90621, + "TargetID": 90623, + "Directional": true + } + ] + }, + { + "ID": 5634, + "SourceStructureID": 170, + "TargetStructureID": 90626, + "Label": "170-90626 via Ribbon Synapse from 90621 -> 90627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90621, + "TargetID": 90627, + "Directional": true + } + ] + }, + { + "ID": 5635, + "SourceStructureID": 171, + "TargetStructureID": 591, + "Label": "171-591 via Ribbon Synapse from 15443 -> 15445", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15443, + "TargetID": 15445, + "Directional": true + } + ] + }, + { + "ID": 5636, + "SourceStructureID": 171, + "TargetStructureID": 3257, + "Label": "171-3257 via Ribbon Synapse from 15447 -> 15446, 15448 -> 15449, 15460 -> 15459, 22911 -> 22909", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15447, + "TargetID": 15446, + "Directional": true + }, + { + "SourceID": 15448, + "TargetID": 15449, + "Directional": true + }, + { + "SourceID": 15460, + "TargetID": 15459, + "Directional": true + }, + { + "SourceID": 22911, + "TargetID": 22909, + "Directional": true + } + ] + }, + { + "ID": 5637, + "SourceStructureID": 171, + "TargetStructureID": 5860, + "Label": "171-5860 via Ribbon Synapse from 14737 -> 14738, 87730 -> 87731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14737, + "TargetID": 14738, + "Directional": true + }, + { + "SourceID": 87730, + "TargetID": 87731, + "Directional": true + } + ] + }, + { + "ID": 5638, + "SourceStructureID": 171, + "TargetStructureID": 6169, + "Label": "171-6169 via Ribbon Synapse from 6001 -> 16244, 9713 -> 133073, 15450 -> 16241, 29467 -> 29466, 29470 -> 29469, 29471 -> 29472, 133088 -> 133087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6001, + "TargetID": 16244, + "Directional": true + }, + { + "SourceID": 9713, + "TargetID": 133073, + "Directional": true + }, + { + "SourceID": 15450, + "TargetID": 16241, + "Directional": true + }, + { + "SourceID": 29467, + "TargetID": 29466, + "Directional": true + }, + { + "SourceID": 29470, + "TargetID": 29469, + "Directional": true + }, + { + "SourceID": 29471, + "TargetID": 29472, + "Directional": true + }, + { + "SourceID": 133088, + "TargetID": 133087, + "Directional": true + } + ] + }, + { + "ID": 5639, + "SourceStructureID": 172, + "TargetStructureID": 3257, + "Label": "172-3257 via Ribbon Synapse from 128138 -> 18067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128138, + "TargetID": 18067, + "Directional": true + } + ] + }, + { + "ID": 5640, + "SourceStructureID": 172, + "TargetStructureID": 5860, + "Label": "172-5860 via Ribbon Synapse from 29464 -> 29465, 119985 -> 119986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29464, + "TargetID": 29465, + "Directional": true + }, + { + "SourceID": 119985, + "TargetID": 119986, + "Directional": true + } + ] + }, + { + "ID": 5641, + "SourceStructureID": 172, + "TargetStructureID": 6169, + "Label": "172-6169 via Ribbon Synapse from 12219 -> 12226, 46369 -> 46370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12219, + "TargetID": 12226, + "Directional": true + }, + { + "SourceID": 46369, + "TargetID": 46370, + "Directional": true + } + ] + }, + { + "ID": 5642, + "SourceStructureID": 172, + "TargetStructureID": 10574, + "Label": "172-10574 via Ribbon Synapse from 84546 -> 10598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84546, + "TargetID": 10598, + "Directional": true + } + ] + }, + { + "ID": 5643, + "SourceStructureID": 172, + "TargetStructureID": 12203, + "Label": "172-12203 via Ribbon Synapse from 12232 -> 12205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12232, + "TargetID": 12205, + "Directional": true + } + ] + }, + { + "ID": 5644, + "SourceStructureID": 172, + "TargetStructureID": 13448, + "Label": "172-13448 via Ribbon Synapse from 119992 -> 24298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119992, + "TargetID": 24298, + "Directional": true + } + ] + }, + { + "ID": 5645, + "SourceStructureID": 172, + "TargetStructureID": 31486, + "Label": "172-31486 via Ribbon Synapse from 31633 -> 31534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31633, + "TargetID": 31534, + "Directional": true + } + ] + }, + { + "ID": 5646, + "SourceStructureID": 172, + "TargetStructureID": 46359, + "Label": "172-46359 via Ribbon Synapse from 44637 -> 46365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44637, + "TargetID": 46365, + "Directional": true + } + ] + }, + { + "ID": 5647, + "SourceStructureID": 172, + "TargetStructureID": 128122, + "Label": "172-128122 via Ribbon Synapse from 128134 -> 128132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128134, + "TargetID": 128132, + "Directional": true + } + ] + }, + { + "ID": 5648, + "SourceStructureID": 172, + "TargetStructureID": 136432, + "Label": "172-136432 via Ribbon Synapse from 136545 -> 136544", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136545, + "TargetID": 136544, + "Directional": true + } + ] + }, + { + "ID": 5649, + "SourceStructureID": 173, + "TargetStructureID": 5377, + "Label": "173-5377 via Ribbon Synapse from 11998 -> 87082, 12018 -> 87064, 87071 -> 87081, 128180 -> 128182", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11998, + "TargetID": 87082, + "Directional": true + }, + { + "SourceID": 12018, + "TargetID": 87064, + "Directional": true + }, + { + "SourceID": 87071, + "TargetID": 87081, + "Directional": true + }, + { + "SourceID": 128180, + "TargetID": 128182, + "Directional": true + } + ] + }, + { + "ID": 5650, + "SourceStructureID": 173, + "TargetStructureID": 5435, + "Label": "173-5435 via Ribbon Synapse from 12038 -> 24349, 60064 -> 60065", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12038, + "TargetID": 24349, + "Directional": true + }, + { + "SourceID": 60064, + "TargetID": 60065, + "Directional": true + } + ] + }, + { + "ID": 5651, + "SourceStructureID": 173, + "TargetStructureID": 6169, + "Label": "173-6169 via Ribbon Synapse from 5911 -> 88190, 11986 -> 60924, 12002 -> 60928", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5911, + "TargetID": 88190, + "Directional": true + }, + { + "SourceID": 11986, + "TargetID": 60924, + "Directional": true + }, + { + "SourceID": 12002, + "TargetID": 60928, + "Directional": true + } + ] + }, + { + "ID": 5652, + "SourceStructureID": 173, + "TargetStructureID": 7073, + "Label": "173-7073 via Ribbon Synapse from 19588 -> 19586", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19588, + "TargetID": 19586, + "Directional": true + } + ] + }, + { + "ID": 5653, + "SourceStructureID": 173, + "TargetStructureID": 7113, + "Label": "173-7113 via Ribbon Synapse from 12028 -> 18103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12028, + "TargetID": 18103, + "Directional": true + } + ] + }, + { + "ID": 5654, + "SourceStructureID": 173, + "TargetStructureID": 7145, + "Label": "173-7145 via Ribbon Synapse from 12127 -> 15828", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12127, + "TargetID": 15828, + "Directional": true + } + ] + }, + { + "ID": 5655, + "SourceStructureID": 173, + "TargetStructureID": 9787, + "Label": "173-9787 via Ribbon Synapse from 11984 -> 18085, 12028 -> 24350, 24293 -> 24292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11984, + "TargetID": 18085, + "Directional": true + }, + { + "SourceID": 12028, + "TargetID": 24350, + "Directional": true + }, + { + "SourceID": 24293, + "TargetID": 24292, + "Directional": true + } + ] + }, + { + "ID": 5656, + "SourceStructureID": 173, + "TargetStructureID": 12203, + "Label": "173-12203 via Ribbon Synapse from 12035 -> 12251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12035, + "TargetID": 12251, + "Directional": true + } + ] + }, + { + "ID": 5657, + "SourceStructureID": 173, + "TargetStructureID": 20681, + "Label": "173-20681 via BC Conventional Synapse from 12032 -> 20751", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12032, + "TargetID": 20751, + "Directional": true + } + ] + }, + { + "ID": 5658, + "SourceStructureID": 173, + "TargetStructureID": 31486, + "Label": "173-31486 via Ribbon Synapse from 11891 -> 31643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11891, + "TargetID": 31643, + "Directional": true + } + ] + }, + { + "ID": 5659, + "SourceStructureID": 173, + "TargetStructureID": 46389, + "Label": "173-46389 via Ribbon Synapse from 12098 -> 60744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12098, + "TargetID": 60744, + "Directional": true + } + ] + }, + { + "ID": 5660, + "SourceStructureID": 173, + "TargetStructureID": 50240, + "Label": "173-50240 via Ribbon Synapse from 11986 -> 60925", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11986, + "TargetID": 60925, + "Directional": true + } + ] + }, + { + "ID": 5661, + "SourceStructureID": 173, + "TargetStructureID": 54264, + "Label": "173-54264 via Ribbon Synapse from 13042 -> 54279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13042, + "TargetID": 54279, + "Directional": true + } + ] + }, + { + "ID": 5662, + "SourceStructureID": 173, + "TargetStructureID": 85856, + "Label": "173-85856 via Ribbon Synapse from 7053 -> 11887, 11873 -> 11886, 12011 -> 32006, 32008 -> 32007, 88148 -> 88147, 136867 -> 136868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7053, + "TargetID": 11887, + "Directional": true + }, + { + "SourceID": 11873, + "TargetID": 11886, + "Directional": true + }, + { + "SourceID": 12011, + "TargetID": 32006, + "Directional": true + }, + { + "SourceID": 32008, + "TargetID": 32007, + "Directional": true + }, + { + "SourceID": 88148, + "TargetID": 88147, + "Directional": true + }, + { + "SourceID": 136867, + "TargetID": 136868, + "Directional": true + } + ] + }, + { + "ID": 5663, + "SourceStructureID": 173, + "TargetStructureID": 87076, + "Label": "173-87076 via BC Conventional Synapse from 87080 -> 87079", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87080, + "TargetID": 87079, + "Directional": true + } + ] + }, + { + "ID": 5664, + "SourceStructureID": 173, + "TargetStructureID": 103094, + "Label": "173-103094 via Ribbon Synapse from 11925 -> 103096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11925, + "TargetID": 103096, + "Directional": true + } + ] + }, + { + "ID": 5665, + "SourceStructureID": 173, + "TargetStructureID": 128101, + "Label": "173-128101 via Ribbon Synapse from 12013 -> 128105", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12013, + "TargetID": 128105, + "Directional": true + } + ] + }, + { + "ID": 5666, + "SourceStructureID": 173, + "TargetStructureID": 128152, + "Label": "173-128152 via Ribbon Synapse from 12118 -> 128157, 128154 -> 128155", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12118, + "TargetID": 128157, + "Directional": true + }, + { + "SourceID": 128154, + "TargetID": 128155, + "Directional": true + } + ] + }, + { + "ID": 5667, + "SourceStructureID": 173, + "TargetStructureID": 128184, + "Label": "173-128184 via Ribbon Synapse from 11995 -> 128188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11995, + "TargetID": 128188, + "Directional": true + } + ] + }, + { + "ID": 5668, + "SourceStructureID": 173, + "TargetStructureID": 129927, + "Label": "173-129927 via Ribbon Synapse from 12139 -> 129937", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12139, + "TargetID": 129937, + "Directional": true + } + ] + }, + { + "ID": 5669, + "SourceStructureID": 175, + "TargetStructureID": 174, + "Label": "175-174 via Ribbon Synapse from 18811 -> 18799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18811, + "TargetID": 18799, + "Directional": true + } + ] + }, + { + "ID": 5670, + "SourceStructureID": 175, + "TargetStructureID": 178, + "Label": "175-178 via Ribbon Synapse from 24291 -> 3271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24291, + "TargetID": 3271, + "Directional": true + } + ] + }, + { + "ID": 5671, + "SourceStructureID": 175, + "TargetStructureID": 5351, + "Label": "175-5351 via Ribbon Synapse from 21894 -> 24073, 24072 -> 24070, 24077 -> 24076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21894, + "TargetID": 24073, + "Directional": true + }, + { + "SourceID": 24072, + "TargetID": 24070, + "Directional": true + }, + { + "SourceID": 24077, + "TargetID": 24076, + "Directional": true + } + ] + }, + { + "ID": 5672, + "SourceStructureID": 175, + "TargetStructureID": 7113, + "Label": "175-7113 via Ribbon Synapse from 21886 -> 21888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21886, + "TargetID": 21888, + "Directional": true + } + ] + }, + { + "ID": 5673, + "SourceStructureID": 175, + "TargetStructureID": 9787, + "Label": "175-9787 via Ribbon Synapse from 7070 -> 18137, 29375 -> 18141, 29379 -> 18142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7070, + "TargetID": 18137, + "Directional": true + }, + { + "SourceID": 29375, + "TargetID": 18141, + "Directional": true + }, + { + "SourceID": 29379, + "TargetID": 18142, + "Directional": true + } + ] + }, + { + "ID": 5674, + "SourceStructureID": 175, + "TargetStructureID": 29340, + "Label": "175-29340 via Conventional from 33553 -> 29373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33553, + "TargetID": 29373, + "Directional": true + } + ] + }, + { + "ID": 5675, + "SourceStructureID": 175, + "TargetStructureID": 29340, + "Label": "175-29340 via Ribbon Synapse from 19791 -> 29397, 29380 -> 29374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19791, + "TargetID": 29397, + "Directional": true + }, + { + "SourceID": 29380, + "TargetID": 29374, + "Directional": true + } + ] + }, + { + "ID": 5676, + "SourceStructureID": 175, + "TargetStructureID": 46443, + "Label": "175-46443 via Ribbon Synapse from 46448 -> 46447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46448, + "TargetID": 46447, + "Directional": true + } + ] + }, + { + "ID": 5677, + "SourceStructureID": 175, + "TargetStructureID": 85856, + "Label": "175-85856 via Ribbon Synapse from 21718 -> 24507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21718, + "TargetID": 24507, + "Directional": true + } + ] + }, + { + "ID": 5678, + "SourceStructureID": 176, + "TargetStructureID": 545, + "Label": "176-545 via Cistern Pre from 128013 -> 128012", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 128013, + "TargetID": 128012, + "Directional": true + } + ] + }, + { + "ID": 5679, + "SourceStructureID": 176, + "TargetStructureID": 582, + "Label": "176-582 via Cistern Pre from 11704 -> 587", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 11704, + "TargetID": 587, + "Directional": true + } + ] + }, + { + "ID": 5680, + "SourceStructureID": 176, + "TargetStructureID": 606, + "Label": "176-606 via Ribbon Synapse from 53563 -> 53564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53563, + "TargetID": 53564, + "Directional": true + } + ] + }, + { + "ID": 5681, + "SourceStructureID": 176, + "TargetStructureID": 5481, + "Label": "176-5481 via Cistern Pre from 128327 -> 128328", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 128327, + "TargetID": 128328, + "Directional": true + } + ] + }, + { + "ID": 5682, + "SourceStructureID": 176, + "TargetStructureID": 5481, + "Label": "176-5481 via Ribbon Synapse from 5870 -> 128452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5870, + "TargetID": 128452, + "Directional": true + } + ] + }, + { + "ID": 5683, + "SourceStructureID": 176, + "TargetStructureID": 7576, + "Label": "176-7576 via BC Conventional Synapse from 55927 -> 55926", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55927, + "TargetID": 55926, + "Directional": true + } + ] + }, + { + "ID": 5684, + "SourceStructureID": 176, + "TargetStructureID": 20327, + "Label": "176-20327 via Ribbon Synapse from 58651 -> 58652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58651, + "TargetID": 58652, + "Directional": true + } + ] + }, + { + "ID": 5685, + "SourceStructureID": 176, + "TargetStructureID": 20537, + "Label": "176-20537 via Cistern Pre from 5836 -> 23509", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 5836, + "TargetID": 23509, + "Directional": true + } + ] + }, + { + "ID": 5686, + "SourceStructureID": 176, + "TargetStructureID": 30567, + "Label": "176-30567 via Ribbon Synapse from 32099 -> 32090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32099, + "TargetID": 32090, + "Directional": true + } + ] + }, + { + "ID": 5687, + "SourceStructureID": 176, + "TargetStructureID": 32405, + "Label": "176-32405 via Ribbon Synapse from 5899 -> 38528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5899, + "TargetID": 38528, + "Directional": true + } + ] + }, + { + "ID": 5688, + "SourceStructureID": 176, + "TargetStructureID": 35212, + "Label": "176-35212 via Ribbon Synapse from 35220 -> 35219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35220, + "TargetID": 35219, + "Directional": true + } + ] + }, + { + "ID": 5689, + "SourceStructureID": 176, + "TargetStructureID": 38949, + "Label": "176-38949 via Ribbon Synapse from 38986 -> 38985, 38992 -> 38991", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38986, + "TargetID": 38985, + "Directional": true + }, + { + "SourceID": 38992, + "TargetID": 38991, + "Directional": true + } + ] + }, + { + "ID": 5690, + "SourceStructureID": 176, + "TargetStructureID": 44893, + "Label": "176-44893 via Ribbon Synapse from 5858 -> 123328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5858, + "TargetID": 123328, + "Directional": true + } + ] + }, + { + "ID": 5691, + "SourceStructureID": 176, + "TargetStructureID": 44912, + "Label": "176-44912 via Ribbon Synapse from 5858 -> 44914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5858, + "TargetID": 44914, + "Directional": true + } + ] + }, + { + "ID": 5692, + "SourceStructureID": 176, + "TargetStructureID": 44970, + "Label": "176-44970 via Ribbon Synapse from 5856 -> 44975, 45005 -> 45004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5856, + "TargetID": 44975, + "Directional": true + }, + { + "SourceID": 45005, + "TargetID": 45004, + "Directional": true + } + ] + }, + { + "ID": 5693, + "SourceStructureID": 176, + "TargetStructureID": 45220, + "Label": "176-45220 via Ribbon Synapse from 91900 -> 45228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91900, + "TargetID": 45228, + "Directional": true + } + ] + }, + { + "ID": 5694, + "SourceStructureID": 176, + "TargetStructureID": 54948, + "Label": "176-54948 via Ribbon Synapse from 54954 -> 54953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54954, + "TargetID": 54953, + "Directional": true + } + ] + }, + { + "ID": 5695, + "SourceStructureID": 176, + "TargetStructureID": 56802, + "Label": "176-56802 via Cistern Pre from 91790 -> 128032", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 91790, + "TargetID": 128032, + "Directional": true + } + ] + }, + { + "ID": 5696, + "SourceStructureID": 176, + "TargetStructureID": 58592, + "Label": "176-58592 via Ribbon Synapse from 34108 -> 58649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34108, + "TargetID": 58649, + "Directional": true + } + ] + }, + { + "ID": 5697, + "SourceStructureID": 176, + "TargetStructureID": 69893, + "Label": "176-69893 via Ribbon Synapse from 69892 -> 69894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69892, + "TargetID": 69894, + "Directional": true + } + ] + }, + { + "ID": 5698, + "SourceStructureID": 176, + "TargetStructureID": 70648, + "Label": "176-70648 via Ribbon Synapse from 128244 -> 128245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128244, + "TargetID": 128245, + "Directional": true + } + ] + }, + { + "ID": 5699, + "SourceStructureID": 176, + "TargetStructureID": 72299, + "Label": "176-72299 via BC Conventional Synapse from 126437 -> 126438", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126437, + "TargetID": 126438, + "Directional": true + } + ] + }, + { + "ID": 5700, + "SourceStructureID": 176, + "TargetStructureID": 80609, + "Label": "176-80609 via Ribbon Synapse from 5868 -> 82477, 82460 -> 82461, 82464 -> 82463", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5868, + "TargetID": 82477, + "Directional": true + }, + { + "SourceID": 82460, + "TargetID": 82461, + "Directional": true + }, + { + "SourceID": 82464, + "TargetID": 82463, + "Directional": true + } + ] + }, + { + "ID": 5701, + "SourceStructureID": 176, + "TargetStructureID": 88260, + "Label": "176-88260 via Ribbon Synapse from 5896 -> 88277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5896, + "TargetID": 88277, + "Directional": true + } + ] + }, + { + "ID": 5702, + "SourceStructureID": 176, + "TargetStructureID": 89039, + "Label": "176-89039 via Ribbon Synapse from 124556 -> 128241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124556, + "TargetID": 128241, + "Directional": true + } + ] + }, + { + "ID": 5703, + "SourceStructureID": 176, + "TargetStructureID": 91780, + "Label": "176-91780 via Ribbon Synapse from 38998 -> 93039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38998, + "TargetID": 93039, + "Directional": true + } + ] + }, + { + "ID": 5704, + "SourceStructureID": 176, + "TargetStructureID": 91832, + "Label": "176-91832 via Adherens from 124679 -> 124680", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 124679, + "TargetID": 124680, + "Directional": true + } + ] + }, + { + "ID": 5705, + "SourceStructureID": 176, + "TargetStructureID": 91832, + "Label": "176-91832 via Ribbon Synapse from 91829 -> 91835", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91829, + "TargetID": 91835, + "Directional": true + } + ] + }, + { + "ID": 5706, + "SourceStructureID": 176, + "TargetStructureID": 91856, + "Label": "176-91856 via BC Conventional Synapse from 91861 -> 91860, 91861 -> 124752", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91861, + "TargetID": 91860, + "Directional": true + }, + { + "SourceID": 91861, + "TargetID": 124752, + "Directional": true + } + ] + }, + { + "ID": 5707, + "SourceStructureID": 176, + "TargetStructureID": 91913, + "Label": "176-91913 via BC Conventional Synapse from 128432 -> 147451", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128432, + "TargetID": 147451, + "Directional": true + } + ] + }, + { + "ID": 5708, + "SourceStructureID": 176, + "TargetStructureID": 91918, + "Label": "176-91918 via Ribbon Synapse from 93037 -> 93036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93037, + "TargetID": 93036, + "Directional": true + } + ] + }, + { + "ID": 5709, + "SourceStructureID": 176, + "TargetStructureID": 91930, + "Label": "176-91930 via BC Conventional Synapse from 91951 -> 91950", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91951, + "TargetID": 91950, + "Directional": true + } + ] + }, + { + "ID": 5710, + "SourceStructureID": 176, + "TargetStructureID": 91959, + "Label": "176-91959 via Cistern Pre from 91957 -> 128704", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 91957, + "TargetID": 128704, + "Directional": true + } + ] + }, + { + "ID": 5711, + "SourceStructureID": 176, + "TargetStructureID": 91994, + "Label": "176-91994 via Ribbon Synapse from 91906 -> 128443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91906, + "TargetID": 128443, + "Directional": true + } + ] + }, + { + "ID": 5712, + "SourceStructureID": 176, + "TargetStructureID": 97272, + "Label": "176-97272 via Ribbon Synapse from 91999 -> 128442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91999, + "TargetID": 128442, + "Directional": true + } + ] + }, + { + "ID": 5713, + "SourceStructureID": 176, + "TargetStructureID": 97280, + "Label": "176-97280 via Ribbon Synapse from 91999 -> 128441", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91999, + "TargetID": 128441, + "Directional": true + } + ] + }, + { + "ID": 5714, + "SourceStructureID": 176, + "TargetStructureID": 106922, + "Label": "176-106922 via Ribbon Synapse from 128258 -> 128259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128258, + "TargetID": 128259, + "Directional": true + } + ] + }, + { + "ID": 5715, + "SourceStructureID": 176, + "TargetStructureID": 107438, + "Label": "176-107438 via Cistern Pre from 124930 -> 124931", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 124930, + "TargetID": 124931, + "Directional": true + } + ] + }, + { + "ID": 5716, + "SourceStructureID": 176, + "TargetStructureID": 107639, + "Label": "176-107639 via Ribbon Synapse from 5876 -> 128672", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5876, + "TargetID": 128672, + "Directional": true + } + ] + }, + { + "ID": 5717, + "SourceStructureID": 176, + "TargetStructureID": 107672, + "Label": "176-107672 via Ribbon Synapse from 91900 -> 128447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91900, + "TargetID": 128447, + "Directional": true + } + ] + }, + { + "ID": 5718, + "SourceStructureID": 176, + "TargetStructureID": 125857, + "Label": "176-125857 via BC Conventional Synapse from 125858 -> 125859", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125858, + "TargetID": 125859, + "Directional": true + } + ] + }, + { + "ID": 5719, + "SourceStructureID": 176, + "TargetStructureID": 125857, + "Label": "176-125857 via Ribbon Synapse from 124129 -> 128742", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124129, + "TargetID": 128742, + "Directional": true + } + ] + }, + { + "ID": 5720, + "SourceStructureID": 176, + "TargetStructureID": 126585, + "Label": "176-126585 via BC Conventional Synapse from 125429 -> 126586", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125429, + "TargetID": 126586, + "Directional": true + } + ] + }, + { + "ID": 5721, + "SourceStructureID": 176, + "TargetStructureID": 128278, + "Label": "176-128278 via Ribbon Synapse from 128277 -> 128279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128277, + "TargetID": 128279, + "Directional": true + } + ] + }, + { + "ID": 5722, + "SourceStructureID": 176, + "TargetStructureID": 128682, + "Label": "176-128682 via Ribbon Synapse from 34108 -> 128684", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34108, + "TargetID": 128684, + "Directional": true + } + ] + }, + { + "ID": 5723, + "SourceStructureID": 176, + "TargetStructureID": 128696, + "Label": "176-128696 via Ribbon Synapse from 125799 -> 128697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125799, + "TargetID": 128697, + "Directional": true + } + ] + }, + { + "ID": 5724, + "SourceStructureID": 176, + "TargetStructureID": 136680, + "Label": "176-136680 via BC Conventional Synapse from 124558 -> 136682", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124558, + "TargetID": 136682, + "Directional": true + } + ] + }, + { + "ID": 5725, + "SourceStructureID": 176, + "TargetStructureID": 147412, + "Label": "176-147412 via Ribbon Synapse from 5870 -> 147413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5870, + "TargetID": 147413, + "Directional": true + } + ] + }, + { + "ID": 5726, + "SourceStructureID": 176, + "TargetStructureID": 147696, + "Label": "176-147696 via Ribbon Synapse from 54992 -> 147731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54992, + "TargetID": 147731, + "Directional": true + } + ] + }, + { + "ID": 5727, + "SourceStructureID": 176, + "TargetStructureID": 147713, + "Label": "176-147713 via Ribbon Synapse from 125807 -> 147714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125807, + "TargetID": 147714, + "Directional": true + } + ] + }, + { + "ID": 5728, + "SourceStructureID": 177, + "TargetStructureID": 606, + "Label": "177-606 via Ribbon Synapse from 5925 -> 51731, 27983 -> 51731, 47946 -> 51731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5925, + "TargetID": 51731, + "Directional": true + }, + { + "SourceID": 27983, + "TargetID": 51731, + "Directional": true + }, + { + "SourceID": 47946, + "TargetID": 51731, + "Directional": true + } + ] + }, + { + "ID": 5729, + "SourceStructureID": 177, + "TargetStructureID": 7576, + "Label": "177-7576 via Ribbon Synapse from 27945 -> 55013, 27951 -> 55930, 27955 -> 54984, 27965 -> 54998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27945, + "TargetID": 55013, + "Directional": true + }, + { + "SourceID": 27951, + "TargetID": 55930, + "Directional": true + }, + { + "SourceID": 27955, + "TargetID": 54984, + "Directional": true + }, + { + "SourceID": 27965, + "TargetID": 54998, + "Directional": true + } + ] + }, + { + "ID": 5730, + "SourceStructureID": 177, + "TargetStructureID": 30526, + "Label": "177-30526 via Ribbon Synapse from 23642 -> 30527", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23642, + "TargetID": 30527, + "Directional": true + } + ] + }, + { + "ID": 5731, + "SourceStructureID": 177, + "TargetStructureID": 34914, + "Label": "177-34914 via Ribbon Synapse from 5945 -> 34918, 5954 -> 34916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5945, + "TargetID": 34918, + "Directional": true + }, + { + "SourceID": 5954, + "TargetID": 34916, + "Directional": true + } + ] + }, + { + "ID": 5732, + "SourceStructureID": 177, + "TargetStructureID": 56802, + "Label": "177-56802 via BC Conventional Synapse from 119615 -> 119614", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119615, + "TargetID": 119614, + "Directional": true + } + ] + }, + { + "ID": 5733, + "SourceStructureID": 179, + "TargetStructureID": 410, + "Label": "179-410 via Conventional from 103833 -> 23276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103833, + "TargetID": 23276, + "Directional": true + } + ] + }, + { + "ID": 5734, + "SourceStructureID": 179, + "TargetStructureID": 517, + "Label": "179-517 via Conventional from 41026 -> 16427", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41026, + "TargetID": 16427, + "Directional": true + } + ] + }, + { + "ID": 5735, + "SourceStructureID": 179, + "TargetStructureID": 518, + "Label": "179-518 via Conventional from 25301 -> 25304, 36506 -> 3376, 36507 -> 3508", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25301, + "TargetID": 25304, + "Directional": true + }, + { + "SourceID": 36506, + "TargetID": 3376, + "Directional": true + }, + { + "SourceID": 36507, + "TargetID": 3508, + "Directional": true + } + ] + }, + { + "ID": 5736, + "SourceStructureID": 179, + "TargetStructureID": 519, + "Label": "179-519 via Conventional from 9332 -> 9305, 9333 -> 9307, 25363 -> 9238, 25786 -> 25787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9332, + "TargetID": 9305, + "Directional": true + }, + { + "SourceID": 9333, + "TargetID": 9307, + "Directional": true + }, + { + "SourceID": 25363, + "TargetID": 9238, + "Directional": true + }, + { + "SourceID": 25786, + "TargetID": 25787, + "Directional": true + } + ] + }, + { + "ID": 5737, + "SourceStructureID": 179, + "TargetStructureID": 6561, + "Label": "179-6561 via Conventional from 103873 -> 17306, 103874 -> 17305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103873, + "TargetID": 17306, + "Directional": true + }, + { + "SourceID": 103874, + "TargetID": 17305, + "Directional": true + } + ] + }, + { + "ID": 5738, + "SourceStructureID": 179, + "TargetStructureID": 10897, + "Label": "179-10897 via Conventional from 104881 -> 104883", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104881, + "TargetID": 104883, + "Directional": true + } + ] + }, + { + "ID": 5739, + "SourceStructureID": 179, + "TargetStructureID": 10931, + "Label": "179-10931 via Conventional from 87469 -> 87470", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87469, + "TargetID": 87470, + "Directional": true + } + ] + }, + { + "ID": 5740, + "SourceStructureID": 179, + "TargetStructureID": 10943, + "Label": "179-10943 via Conventional from 105528 -> 10944", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105528, + "TargetID": 10944, + "Directional": true + } + ] + }, + { + "ID": 5741, + "SourceStructureID": 179, + "TargetStructureID": 10953, + "Label": "179-10953 via Conventional from 87482 -> 87483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87482, + "TargetID": 87483, + "Directional": true + } + ] + }, + { + "ID": 5742, + "SourceStructureID": 179, + "TargetStructureID": 14615, + "Label": "179-14615 via Conventional from 25314 -> 25318, 33084 -> 25315", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25314, + "TargetID": 25318, + "Directional": true + }, + { + "SourceID": 33084, + "TargetID": 25315, + "Directional": true + } + ] + }, + { + "ID": 5743, + "SourceStructureID": 179, + "TargetStructureID": 15100, + "Label": "179-15100 via Conventional from 33112 -> 17995", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33112, + "TargetID": 17995, + "Directional": true + } + ] + }, + { + "ID": 5744, + "SourceStructureID": 179, + "TargetStructureID": 15942, + "Label": "179-15942 via Conventional from 103840 -> 103839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103840, + "TargetID": 103839, + "Directional": true + } + ] + }, + { + "ID": 5745, + "SourceStructureID": 179, + "TargetStructureID": 16446, + "Label": "179-16446 via Conventional from 103861 -> 16459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103861, + "TargetID": 16459, + "Directional": true + } + ] + }, + { + "ID": 5746, + "SourceStructureID": 179, + "TargetStructureID": 17228, + "Label": "179-17228 via Conventional from 104932 -> 104936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104932, + "TargetID": 104936, + "Directional": true + } + ] + }, + { + "ID": 5747, + "SourceStructureID": 179, + "TargetStructureID": 117272, + "Label": "179-117272 via Postsynapse from 130219 -> 130220", + "Type": "Postsynapse", + "Directional": true, + "Links": [ + { + "SourceID": 130219, + "TargetID": 130220, + "Directional": true + } + ] + }, + { + "ID": 5748, + "SourceStructureID": 180, + "TargetStructureID": 318, + "Label": "180-318 via Ribbon Synapse from 14151 -> 14152, 14156 -> 14118, 84487 -> 133008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14151, + "TargetID": 14152, + "Directional": true + }, + { + "SourceID": 14156, + "TargetID": 14118, + "Directional": true + }, + { + "SourceID": 84487, + "TargetID": 133008, + "Directional": true + } + ] + }, + { + "ID": 5749, + "SourceStructureID": 180, + "TargetStructureID": 606, + "Label": "180-606 via Ribbon Synapse from 51239 -> 51242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51239, + "TargetID": 51242, + "Directional": true + } + ] + }, + { + "ID": 5750, + "SourceStructureID": 180, + "TargetStructureID": 3679, + "Label": "180-3679 via Ribbon Synapse from 56870 -> 9708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56870, + "TargetID": 9708, + "Directional": true + } + ] + }, + { + "ID": 5751, + "SourceStructureID": 180, + "TargetStructureID": 4890, + "Label": "180-4890 via Ribbon Synapse from 4925 -> 4924, 6097 -> 6098, 14149 -> 6100, 56879 -> 6000, 95519 -> 95520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4925, + "TargetID": 4924, + "Directional": true + }, + { + "SourceID": 6097, + "TargetID": 6098, + "Directional": true + }, + { + "SourceID": 14149, + "TargetID": 6100, + "Directional": true + }, + { + "SourceID": 56879, + "TargetID": 6000, + "Directional": true + }, + { + "SourceID": 95519, + "TargetID": 95520, + "Directional": true + } + ] + }, + { + "ID": 5752, + "SourceStructureID": 180, + "TargetStructureID": 5303, + "Label": "180-5303 via Ribbon Synapse from 847 -> 133052, 133051 -> 133052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 847, + "TargetID": 133052, + "Directional": true + }, + { + "SourceID": 133051, + "TargetID": 133052, + "Directional": true + } + ] + }, + { + "ID": 5753, + "SourceStructureID": 180, + "TargetStructureID": 5618, + "Label": "180-5618 via Ribbon Synapse from 6056 -> 65979, 65983 -> 65982, 65984 -> 65982", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6056, + "TargetID": 65979, + "Directional": true + }, + { + "SourceID": 65983, + "TargetID": 65982, + "Directional": true + }, + { + "SourceID": 65984, + "TargetID": 65982, + "Directional": true + } + ] + }, + { + "ID": 5754, + "SourceStructureID": 180, + "TargetStructureID": 6169, + "Label": "180-6169 via Ribbon Synapse from 24656 -> 24653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24656, + "TargetID": 24653, + "Directional": true + } + ] + }, + { + "ID": 5755, + "SourceStructureID": 180, + "TargetStructureID": 8577, + "Label": "180-8577 via BC Conventional Synapse from 15883 -> 15881", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15883, + "TargetID": 15881, + "Directional": true + } + ] + }, + { + "ID": 5756, + "SourceStructureID": 180, + "TargetStructureID": 8577, + "Label": "180-8577 via Ribbon Synapse from 15885 -> 15884, 56873 -> 15876, 126090 -> 133014, 132883 -> 15879, 133126 -> 133127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15885, + "TargetID": 15884, + "Directional": true + }, + { + "SourceID": 56873, + "TargetID": 15876, + "Directional": true + }, + { + "SourceID": 126090, + "TargetID": 133014, + "Directional": true + }, + { + "SourceID": 132883, + "TargetID": 15879, + "Directional": true + }, + { + "SourceID": 133126, + "TargetID": 133127, + "Directional": true + } + ] + }, + { + "ID": 5757, + "SourceStructureID": 180, + "TargetStructureID": 8579, + "Label": "180-8579 via Ribbon Synapse from 6055 -> 94668, 6059 -> 94891, 16128 -> 19805, 19807 -> 66082, 19810 -> 19811, 19821 -> 19820, 133100 -> 133101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6055, + "TargetID": 94668, + "Directional": true + }, + { + "SourceID": 6059, + "TargetID": 94891, + "Directional": true + }, + { + "SourceID": 16128, + "TargetID": 19805, + "Directional": true + }, + { + "SourceID": 19807, + "TargetID": 66082, + "Directional": true + }, + { + "SourceID": 19810, + "TargetID": 19811, + "Directional": true + }, + { + "SourceID": 19821, + "TargetID": 19820, + "Directional": true + }, + { + "SourceID": 133100, + "TargetID": 133101, + "Directional": true + } + ] + }, + { + "ID": 5758, + "SourceStructureID": 180, + "TargetStructureID": 8720, + "Label": "180-8720 via Ribbon Synapse from 853 -> 133049, 868 -> 15292, 65604 -> 133050, 133057 -> 15292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 853, + "TargetID": 133049, + "Directional": true + }, + { + "SourceID": 868, + "TargetID": 15292, + "Directional": true + }, + { + "SourceID": 65604, + "TargetID": 133050, + "Directional": true + }, + { + "SourceID": 133057, + "TargetID": 15292, + "Directional": true + } + ] + }, + { + "ID": 5759, + "SourceStructureID": 180, + "TargetStructureID": 9347, + "Label": "180-9347 via Ribbon Synapse from 95404 -> 95406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95404, + "TargetID": 95406, + "Directional": true + } + ] + }, + { + "ID": 5760, + "SourceStructureID": 180, + "TargetStructureID": 16087, + "Label": "180-16087 via Ribbon Synapse from 126090 -> 133013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126090, + "TargetID": 133013, + "Directional": true + } + ] + }, + { + "ID": 5761, + "SourceStructureID": 180, + "TargetStructureID": 18282, + "Label": "180-18282 via Ribbon Synapse from 890 -> 18322, 133009 -> 135147", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 890, + "TargetID": 18322, + "Directional": true + }, + { + "SourceID": 133009, + "TargetID": 135147, + "Directional": true + } + ] + }, + { + "ID": 5762, + "SourceStructureID": 180, + "TargetStructureID": 25440, + "Label": "180-25440 via BC Conventional Synapse from 133113 -> 133114", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133113, + "TargetID": 133114, + "Directional": true + } + ] + }, + { + "ID": 5763, + "SourceStructureID": 180, + "TargetStructureID": 25440, + "Label": "180-25440 via Ribbon Synapse from 91004 -> 91006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91004, + "TargetID": 91006, + "Directional": true + } + ] + }, + { + "ID": 5764, + "SourceStructureID": 180, + "TargetStructureID": 29277, + "Label": "180-29277 via Ribbon Synapse from 29266 -> 132928, 31106 -> 29279, 90906 -> 123161, 95251 -> 115583, 95252 -> 115583, 95253 -> 115583", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29266, + "TargetID": 132928, + "Directional": true + }, + { + "SourceID": 31106, + "TargetID": 29279, + "Directional": true + }, + { + "SourceID": 90906, + "TargetID": 123161, + "Directional": true + }, + { + "SourceID": 95251, + "TargetID": 115583, + "Directional": true + }, + { + "SourceID": 95252, + "TargetID": 115583, + "Directional": true + }, + { + "SourceID": 95253, + "TargetID": 115583, + "Directional": true + } + ] + }, + { + "ID": 5765, + "SourceStructureID": 180, + "TargetStructureID": 30518, + "Label": "180-30518 via Ribbon Synapse from 6566 -> 32783", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6566, + "TargetID": 32783, + "Directional": true + } + ] + }, + { + "ID": 5766, + "SourceStructureID": 180, + "TargetStructureID": 31024, + "Label": "180-31024 via Ribbon Synapse from 6060 -> 31066, 15885 -> 133023, 31100 -> 31072", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6060, + "TargetID": 31066, + "Directional": true + }, + { + "SourceID": 15885, + "TargetID": 133023, + "Directional": true + }, + { + "SourceID": 31100, + "TargetID": 31072, + "Directional": true + } + ] + }, + { + "ID": 5767, + "SourceStructureID": 180, + "TargetStructureID": 33330, + "Label": "180-33330 via Ribbon Synapse from 33329 -> 33331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33329, + "TargetID": 33331, + "Directional": true + } + ] + }, + { + "ID": 5768, + "SourceStructureID": 180, + "TargetStructureID": 38363, + "Label": "180-38363 via Ribbon Synapse from 31277 -> 133031", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31277, + "TargetID": 133031, + "Directional": true + } + ] + }, + { + "ID": 5769, + "SourceStructureID": 180, + "TargetStructureID": 39345, + "Label": "180-39345 via Ribbon Synapse from 6566 -> 39348, 31283 -> 39363, 39365 -> 39364", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6566, + "TargetID": 39348, + "Directional": true + }, + { + "SourceID": 31283, + "TargetID": 39363, + "Directional": true + }, + { + "SourceID": 39365, + "TargetID": 39364, + "Directional": true + } + ] + }, + { + "ID": 5770, + "SourceStructureID": 180, + "TargetStructureID": 54744, + "Label": "180-54744 via Ribbon Synapse from 91004 -> 91007", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91004, + "TargetID": 91007, + "Directional": true + } + ] + }, + { + "ID": 5771, + "SourceStructureID": 180, + "TargetStructureID": 64492, + "Label": "180-64492 via Ribbon Synapse from 6058 -> 64498, 65586 -> 65587, 91002 -> 91003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6058, + "TargetID": 64498, + "Directional": true + }, + { + "SourceID": 65586, + "TargetID": 65587, + "Directional": true + }, + { + "SourceID": 91002, + "TargetID": 91003, + "Directional": true + } + ] + }, + { + "ID": 5772, + "SourceStructureID": 180, + "TargetStructureID": 65591, + "Label": "180-65591 via Ribbon Synapse from 65590 -> 65592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65590, + "TargetID": 65592, + "Directional": true + } + ] + }, + { + "ID": 5773, + "SourceStructureID": 180, + "TargetStructureID": 65594, + "Label": "180-65594 via Ribbon Synapse from 65593 -> 130253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65593, + "TargetID": 130253, + "Directional": true + } + ] + }, + { + "ID": 5774, + "SourceStructureID": 180, + "TargetStructureID": 65596, + "Label": "180-65596 via Ribbon Synapse from 65593 -> 65597", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65593, + "TargetID": 65597, + "Directional": true + } + ] + }, + { + "ID": 5775, + "SourceStructureID": 180, + "TargetStructureID": 65602, + "Label": "180-65602 via Ribbon Synapse from 133047 -> 65603", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133047, + "TargetID": 65603, + "Directional": true + } + ] + }, + { + "ID": 5776, + "SourceStructureID": 180, + "TargetStructureID": 65864, + "Label": "180-65864 via Ribbon Synapse from 19807 -> 133024, 91024 -> 94882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19807, + "TargetID": 133024, + "Directional": true + }, + { + "SourceID": 91024, + "TargetID": 94882, + "Directional": true + } + ] + }, + { + "ID": 5777, + "SourceStructureID": 180, + "TargetStructureID": 65971, + "Label": "180-65971 via Ribbon Synapse from 59681 -> 65972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59681, + "TargetID": 65972, + "Directional": true + } + ] + }, + { + "ID": 5778, + "SourceStructureID": 180, + "TargetStructureID": 66510, + "Label": "180-66510 via Ribbon Synapse from 91016 -> 91019", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91016, + "TargetID": 91019, + "Directional": true + } + ] + }, + { + "ID": 5779, + "SourceStructureID": 180, + "TargetStructureID": 66634, + "Label": "180-66634 via Ribbon Synapse from 59663 -> 94943", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59663, + "TargetID": 94943, + "Directional": true + } + ] + }, + { + "ID": 5780, + "SourceStructureID": 180, + "TargetStructureID": 70315, + "Label": "180-70315 via Ribbon Synapse from 6059 -> 94890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6059, + "TargetID": 94890, + "Directional": true + } + ] + }, + { + "ID": 5781, + "SourceStructureID": 180, + "TargetStructureID": 71351, + "Label": "180-71351 via Ribbon Synapse from 875 -> 71902, 31270 -> 71889, 71890 -> 71894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 875, + "TargetID": 71902, + "Directional": true + }, + { + "SourceID": 31270, + "TargetID": 71889, + "Directional": true + }, + { + "SourceID": 71890, + "TargetID": 71894, + "Directional": true + } + ] + }, + { + "ID": 5782, + "SourceStructureID": 180, + "TargetStructureID": 71351, + "Label": "180-71351 via Unknown from 133092 -> 95235", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 133092, + "TargetID": 95235, + "Directional": true + } + ] + }, + { + "ID": 5783, + "SourceStructureID": 180, + "TargetStructureID": 71517, + "Label": "180-71517 via Ribbon Synapse from 31277 -> 75161, 71494 -> 71495, 72010 -> 72011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31277, + "TargetID": 75161, + "Directional": true + }, + { + "SourceID": 71494, + "TargetID": 71495, + "Directional": true + }, + { + "SourceID": 72010, + "TargetID": 72011, + "Directional": true + } + ] + }, + { + "ID": 5784, + "SourceStructureID": 180, + "TargetStructureID": 72012, + "Label": "180-72012 via Ribbon Synapse from 31101 -> 132885, 132883 -> 132885", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31101, + "TargetID": 132885, + "Directional": true + }, + { + "SourceID": 132883, + "TargetID": 132885, + "Directional": true + } + ] + }, + { + "ID": 5785, + "SourceStructureID": 180, + "TargetStructureID": 72638, + "Label": "180-72638 via Ribbon Synapse from 31284 -> 133033", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31284, + "TargetID": 133033, + "Directional": true + } + ] + }, + { + "ID": 5786, + "SourceStructureID": 180, + "TargetStructureID": 75130, + "Label": "180-75130 via Ribbon Synapse from 31277 -> 133030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31277, + "TargetID": 133030, + "Directional": true + } + ] + }, + { + "ID": 5787, + "SourceStructureID": 180, + "TargetStructureID": 75339, + "Label": "180-75339 via Ribbon Synapse from 31274 -> 95231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31274, + "TargetID": 95231, + "Directional": true + } + ] + }, + { + "ID": 5788, + "SourceStructureID": 180, + "TargetStructureID": 80609, + "Label": "180-80609 via Ribbon Synapse from 56879 -> 95510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56879, + "TargetID": 95510, + "Directional": true + } + ] + }, + { + "ID": 5789, + "SourceStructureID": 180, + "TargetStructureID": 84335, + "Label": "180-84335 via Ribbon Synapse from 59664 -> 94936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59664, + "TargetID": 94936, + "Directional": true + } + ] + }, + { + "ID": 5790, + "SourceStructureID": 180, + "TargetStructureID": 84806, + "Label": "180-84806 via Ribbon Synapse from 84809 -> 95904", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84809, + "TargetID": 95904, + "Directional": true + } + ] + }, + { + "ID": 5791, + "SourceStructureID": 180, + "TargetStructureID": 90217, + "Label": "180-90217 via BC Conventional Synapse from 90505 -> 90504", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90505, + "TargetID": 90504, + "Directional": true + } + ] + }, + { + "ID": 5792, + "SourceStructureID": 180, + "TargetStructureID": 90217, + "Label": "180-90217 via Ribbon Synapse from 59669 -> 95255, 132882 -> 90506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59669, + "TargetID": 95255, + "Directional": true + }, + { + "SourceID": 132882, + "TargetID": 90506, + "Directional": true + } + ] + }, + { + "ID": 5793, + "SourceStructureID": 180, + "TargetStructureID": 90739, + "Label": "180-90739 via Ribbon Synapse from 6053 -> 90740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6053, + "TargetID": 90740, + "Directional": true + } + ] + }, + { + "ID": 5794, + "SourceStructureID": 180, + "TargetStructureID": 90743, + "Label": "180-90743 via Ribbon Synapse from 29446 -> 90745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29446, + "TargetID": 90745, + "Directional": true + } + ] + }, + { + "ID": 5795, + "SourceStructureID": 180, + "TargetStructureID": 90744, + "Label": "180-90744 via Ribbon Synapse from 29445 -> 90747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29445, + "TargetID": 90747, + "Directional": true + } + ] + }, + { + "ID": 5796, + "SourceStructureID": 180, + "TargetStructureID": 90753, + "Label": "180-90753 via Ribbon Synapse from 6060 -> 133045, 90749 -> 90754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6060, + "TargetID": 133045, + "Directional": true + }, + { + "SourceID": 90749, + "TargetID": 90754, + "Directional": true + } + ] + }, + { + "ID": 5797, + "SourceStructureID": 180, + "TargetStructureID": 90764, + "Label": "180-90764 via BC Conventional Synapse from 90763 -> 90765", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90763, + "TargetID": 90765, + "Directional": true + } + ] + }, + { + "ID": 5798, + "SourceStructureID": 180, + "TargetStructureID": 90775, + "Label": "180-90775 via Ribbon Synapse from 31101 -> 90776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31101, + "TargetID": 90776, + "Directional": true + } + ] + }, + { + "ID": 5799, + "SourceStructureID": 180, + "TargetStructureID": 90779, + "Label": "180-90779 via Ribbon Synapse from 6062 -> 90780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6062, + "TargetID": 90780, + "Directional": true + } + ] + }, + { + "ID": 5800, + "SourceStructureID": 180, + "TargetStructureID": 90781, + "Label": "180-90781 via Ribbon Synapse from 6061 -> 90782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6061, + "TargetID": 90782, + "Directional": true + } + ] + }, + { + "ID": 5801, + "SourceStructureID": 180, + "TargetStructureID": 90783, + "Label": "180-90783 via BC Conventional Synapse from 90785 -> 90786", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90785, + "TargetID": 90786, + "Directional": true + } + ] + }, + { + "ID": 5802, + "SourceStructureID": 180, + "TargetStructureID": 90791, + "Label": "180-90791 via Ribbon Synapse from 81903 -> 90792, 81904 -> 90792", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81903, + "TargetID": 90792, + "Directional": true + }, + { + "SourceID": 81904, + "TargetID": 90792, + "Directional": true + } + ] + }, + { + "ID": 5803, + "SourceStructureID": 180, + "TargetStructureID": 90795, + "Label": "180-90795 via Ribbon Synapse from 81902 -> 90796", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81902, + "TargetID": 90796, + "Directional": true + } + ] + }, + { + "ID": 5804, + "SourceStructureID": 180, + "TargetStructureID": 90811, + "Label": "180-90811 via Ribbon Synapse from 132888 -> 133018, 133119 -> 133118, 133120 -> 90812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132888, + "TargetID": 133018, + "Directional": true + }, + { + "SourceID": 133119, + "TargetID": 133118, + "Directional": true + }, + { + "SourceID": 133120, + "TargetID": 90812, + "Directional": true + } + ] + }, + { + "ID": 5805, + "SourceStructureID": 180, + "TargetStructureID": 90814, + "Label": "180-90814 via Ribbon Synapse from 6065 -> 90815, 133010 -> 90815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6065, + "TargetID": 90815, + "Directional": true + }, + { + "SourceID": 133010, + "TargetID": 90815, + "Directional": true + } + ] + }, + { + "ID": 5806, + "SourceStructureID": 180, + "TargetStructureID": 90817, + "Label": "180-90817 via BC Conventional Synapse from 90816 -> 90818", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90816, + "TargetID": 90818, + "Directional": true + } + ] + }, + { + "ID": 5807, + "SourceStructureID": 180, + "TargetStructureID": 90822, + "Label": "180-90822 via Ribbon Synapse from 5049 -> 90825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5049, + "TargetID": 90825, + "Directional": true + } + ] + }, + { + "ID": 5808, + "SourceStructureID": 180, + "TargetStructureID": 90840, + "Label": "180-90840 via Ribbon Synapse from 90784 -> 90841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90784, + "TargetID": 90841, + "Directional": true + } + ] + }, + { + "ID": 5809, + "SourceStructureID": 180, + "TargetStructureID": 90842, + "Label": "180-90842 via Ribbon Synapse from 6063 -> 90843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6063, + "TargetID": 90843, + "Directional": true + } + ] + }, + { + "ID": 5810, + "SourceStructureID": 180, + "TargetStructureID": 90844, + "Label": "180-90844 via Ribbon Synapse from 6063 -> 95722", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6063, + "TargetID": 95722, + "Directional": true + } + ] + }, + { + "ID": 5811, + "SourceStructureID": 180, + "TargetStructureID": 90851, + "Label": "180-90851 via Ribbon Synapse from 90850 -> 90852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90850, + "TargetID": 90852, + "Directional": true + } + ] + }, + { + "ID": 5812, + "SourceStructureID": 180, + "TargetStructureID": 90853, + "Label": "180-90853 via Ribbon Synapse from 90850 -> 90854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90850, + "TargetID": 90854, + "Directional": true + } + ] + }, + { + "ID": 5813, + "SourceStructureID": 180, + "TargetStructureID": 90856, + "Label": "180-90856 via BC Conventional Synapse from 90855 -> 90857", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90855, + "TargetID": 90857, + "Directional": true + } + ] + }, + { + "ID": 5814, + "SourceStructureID": 180, + "TargetStructureID": 90859, + "Label": "180-90859 via BC Conventional Synapse from 90862 -> 90861", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90862, + "TargetID": 90861, + "Directional": true + } + ] + }, + { + "ID": 5815, + "SourceStructureID": 180, + "TargetStructureID": 90867, + "Label": "180-90867 via BC Conventional Synapse from 90866 -> 90868", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90866, + "TargetID": 90868, + "Directional": true + } + ] + }, + { + "ID": 5816, + "SourceStructureID": 180, + "TargetStructureID": 90872, + "Label": "180-90872 via Ribbon Synapse from 90870 -> 90873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90870, + "TargetID": 90873, + "Directional": true + } + ] + }, + { + "ID": 5817, + "SourceStructureID": 180, + "TargetStructureID": 90874, + "Label": "180-90874 via Ribbon Synapse from 90870 -> 90875", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90870, + "TargetID": 90875, + "Directional": true + } + ] + }, + { + "ID": 5818, + "SourceStructureID": 180, + "TargetStructureID": 90880, + "Label": "180-90880 via BC Conventional Synapse from 90879 -> 90881", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90879, + "TargetID": 90881, + "Directional": true + } + ] + }, + { + "ID": 5819, + "SourceStructureID": 180, + "TargetStructureID": 90883, + "Label": "180-90883 via Ribbon Synapse from 84809 -> 90884", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84809, + "TargetID": 90884, + "Directional": true + } + ] + }, + { + "ID": 5820, + "SourceStructureID": 180, + "TargetStructureID": 90922, + "Label": "180-90922 via Ribbon Synapse from 90921 -> 90923", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90921, + "TargetID": 90923, + "Directional": true + } + ] + }, + { + "ID": 5821, + "SourceStructureID": 180, + "TargetStructureID": 90924, + "Label": "180-90924 via Ribbon Synapse from 4925 -> 90927, 90921 -> 90925", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4925, + "TargetID": 90927, + "Directional": true + }, + { + "SourceID": 90921, + "TargetID": 90925, + "Directional": true + } + ] + }, + { + "ID": 5822, + "SourceStructureID": 180, + "TargetStructureID": 90928, + "Label": "180-90928 via Ribbon Synapse from 4925 -> 90930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4925, + "TargetID": 90930, + "Directional": true + } + ] + }, + { + "ID": 5823, + "SourceStructureID": 180, + "TargetStructureID": 90935, + "Label": "180-90935 via Ribbon Synapse from 132890 -> 90936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132890, + "TargetID": 90936, + "Directional": true + } + ] + }, + { + "ID": 5824, + "SourceStructureID": 180, + "TargetStructureID": 90949, + "Label": "180-90949 via Ribbon Synapse from 902 -> 90950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 902, + "TargetID": 90950, + "Directional": true + } + ] + }, + { + "ID": 5825, + "SourceStructureID": 180, + "TargetStructureID": 90952, + "Label": "180-90952 via Ribbon Synapse from 898 -> 90953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 898, + "TargetID": 90953, + "Directional": true + } + ] + }, + { + "ID": 5826, + "SourceStructureID": 180, + "TargetStructureID": 90956, + "Label": "180-90956 via Ribbon Synapse from 90959 -> 92723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90959, + "TargetID": 92723, + "Directional": true + } + ] + }, + { + "ID": 5827, + "SourceStructureID": 180, + "TargetStructureID": 90967, + "Label": "180-90967 via Ribbon Synapse from 90965 -> 90968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90965, + "TargetID": 90968, + "Directional": true + } + ] + }, + { + "ID": 5828, + "SourceStructureID": 180, + "TargetStructureID": 90971, + "Label": "180-90971 via Ribbon Synapse from 90966 -> 90972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90966, + "TargetID": 90972, + "Directional": true + } + ] + }, + { + "ID": 5829, + "SourceStructureID": 180, + "TargetStructureID": 90973, + "Label": "180-90973 via Ribbon Synapse from 90966 -> 90974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90966, + "TargetID": 90974, + "Directional": true + } + ] + }, + { + "ID": 5830, + "SourceStructureID": 180, + "TargetStructureID": 90979, + "Label": "180-90979 via Ribbon Synapse from 132971 -> 132972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132971, + "TargetID": 132972, + "Directional": true + } + ] + }, + { + "ID": 5831, + "SourceStructureID": 180, + "TargetStructureID": 91014, + "Label": "180-91014 via BC Conventional Synapse from 91013 -> 91015, 94888 -> 94889", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91013, + "TargetID": 91015, + "Directional": true + }, + { + "SourceID": 94888, + "TargetID": 94889, + "Directional": true + } + ] + }, + { + "ID": 5832, + "SourceStructureID": 180, + "TargetStructureID": 94575, + "Label": "180-94575 via Ribbon Synapse from 36173 -> 94576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36173, + "TargetID": 94576, + "Directional": true + } + ] + }, + { + "ID": 5833, + "SourceStructureID": 180, + "TargetStructureID": 94577, + "Label": "180-94577 via Ribbon Synapse from 36175 -> 133035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36175, + "TargetID": 133035, + "Directional": true + } + ] + }, + { + "ID": 5834, + "SourceStructureID": 180, + "TargetStructureID": 94622, + "Label": "180-94622 via Ribbon Synapse from 847 -> 94623, 133051 -> 94623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 847, + "TargetID": 94623, + "Directional": true + }, + { + "SourceID": 133051, + "TargetID": 94623, + "Directional": true + } + ] + }, + { + "ID": 5835, + "SourceStructureID": 180, + "TargetStructureID": 94633, + "Label": "180-94633 via BC Conventional Synapse from 92737 -> 94634", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92737, + "TargetID": 94634, + "Directional": true + } + ] + }, + { + "ID": 5836, + "SourceStructureID": 180, + "TargetStructureID": 94656, + "Label": "180-94656 via Ribbon Synapse from 6056 -> 94659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6056, + "TargetID": 94659, + "Directional": true + } + ] + }, + { + "ID": 5837, + "SourceStructureID": 180, + "TargetStructureID": 94664, + "Label": "180-94664 via Ribbon Synapse from 6055 -> 94669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6055, + "TargetID": 94669, + "Directional": true + } + ] + }, + { + "ID": 5838, + "SourceStructureID": 180, + "TargetStructureID": 94878, + "Label": "180-94878 via Ribbon Synapse from 91024 -> 94879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91024, + "TargetID": 94879, + "Directional": true + } + ] + }, + { + "ID": 5839, + "SourceStructureID": 180, + "TargetStructureID": 94935, + "Label": "180-94935 via Ribbon Synapse from 59662 -> 94941", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59662, + "TargetID": 94941, + "Directional": true + } + ] + }, + { + "ID": 5840, + "SourceStructureID": 180, + "TargetStructureID": 94939, + "Label": "180-94939 via Ribbon Synapse from 59662 -> 94940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59662, + "TargetID": 94940, + "Directional": true + } + ] + }, + { + "ID": 5841, + "SourceStructureID": 180, + "TargetStructureID": 94950, + "Label": "180-94950 via BC Conventional Synapse from 133029 -> 94951", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133029, + "TargetID": 94951, + "Directional": true + } + ] + }, + { + "ID": 5842, + "SourceStructureID": 180, + "TargetStructureID": 94952, + "Label": "180-94952 via Ribbon Synapse from 31272 -> 94953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31272, + "TargetID": 94953, + "Directional": true + } + ] + }, + { + "ID": 5843, + "SourceStructureID": 180, + "TargetStructureID": 94964, + "Label": "180-94964 via Ribbon Synapse from 29252 -> 94966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29252, + "TargetID": 94966, + "Directional": true + } + ] + }, + { + "ID": 5844, + "SourceStructureID": 180, + "TargetStructureID": 94965, + "Label": "180-94965 via Ribbon Synapse from 29253 -> 94967, 133025 -> 94967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29253, + "TargetID": 94967, + "Directional": true + }, + { + "SourceID": 133025, + "TargetID": 94967, + "Directional": true + } + ] + }, + { + "ID": 5845, + "SourceStructureID": 180, + "TargetStructureID": 94981, + "Label": "180-94981 via Ribbon Synapse from 29266 -> 94982", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29266, + "TargetID": 94982, + "Directional": true + } + ] + }, + { + "ID": 5846, + "SourceStructureID": 180, + "TargetStructureID": 94993, + "Label": "180-94993 via Ribbon Synapse from 29263 -> 94996", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29263, + "TargetID": 94996, + "Directional": true + } + ] + }, + { + "ID": 5847, + "SourceStructureID": 180, + "TargetStructureID": 94997, + "Label": "180-94997 via BC Conventional Synapse from 126085 -> 132878", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126085, + "TargetID": 132878, + "Directional": true + } + ] + }, + { + "ID": 5848, + "SourceStructureID": 180, + "TargetStructureID": 94997, + "Label": "180-94997 via Ribbon Synapse from 29262 -> 94998, 95259 -> 132875, 95264 -> 95265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29262, + "TargetID": 94998, + "Directional": true + }, + { + "SourceID": 95259, + "TargetID": 132875, + "Directional": true + }, + { + "SourceID": 95264, + "TargetID": 95265, + "Directional": true + } + ] + }, + { + "ID": 5849, + "SourceStructureID": 180, + "TargetStructureID": 95229, + "Label": "180-95229 via Ribbon Synapse from 31274 -> 95230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31274, + "TargetID": 95230, + "Directional": true + } + ] + }, + { + "ID": 5850, + "SourceStructureID": 180, + "TargetStructureID": 95236, + "Label": "180-95236 via Unknown from 133092 -> 95237", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 133092, + "TargetID": 95237, + "Directional": true + } + ] + }, + { + "ID": 5851, + "SourceStructureID": 180, + "TargetStructureID": 95238, + "Label": "180-95238 via Ribbon Synapse from 31271 -> 95239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31271, + "TargetID": 95239, + "Directional": true + } + ] + }, + { + "ID": 5852, + "SourceStructureID": 180, + "TargetStructureID": 95256, + "Label": "180-95256 via BC Conventional Synapse from 95257 -> 95258", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95257, + "TargetID": 95258, + "Directional": true + } + ] + }, + { + "ID": 5853, + "SourceStructureID": 180, + "TargetStructureID": 95305, + "Label": "180-95305 via Ribbon Synapse from 24656 -> 95306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24656, + "TargetID": 95306, + "Directional": true + } + ] + }, + { + "ID": 5854, + "SourceStructureID": 180, + "TargetStructureID": 95321, + "Label": "180-95321 via Ribbon Synapse from 59672 -> 133038, 59674 -> 95322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59672, + "TargetID": 133038, + "Directional": true + }, + { + "SourceID": 59674, + "TargetID": 95322, + "Directional": true + } + ] + }, + { + "ID": 5855, + "SourceStructureID": 180, + "TargetStructureID": 95326, + "Label": "180-95326 via Ribbon Synapse from 132945 -> 132946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132945, + "TargetID": 132946, + "Directional": true + } + ] + }, + { + "ID": 5856, + "SourceStructureID": 180, + "TargetStructureID": 95330, + "Label": "180-95330 via Ribbon Synapse from 59672 -> 95331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59672, + "TargetID": 95331, + "Directional": true + } + ] + }, + { + "ID": 5857, + "SourceStructureID": 180, + "TargetStructureID": 95332, + "Label": "180-95332 via Ribbon Synapse from 71494 -> 95333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71494, + "TargetID": 95333, + "Directional": true + } + ] + }, + { + "ID": 5858, + "SourceStructureID": 180, + "TargetStructureID": 95334, + "Label": "180-95334 via Ribbon Synapse from 132945 -> 132947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132945, + "TargetID": 132947, + "Directional": true + } + ] + }, + { + "ID": 5859, + "SourceStructureID": 180, + "TargetStructureID": 95349, + "Label": "180-95349 via BC Conventional Synapse from 95352 -> 95353", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95352, + "TargetID": 95353, + "Directional": true + } + ] + }, + { + "ID": 5860, + "SourceStructureID": 180, + "TargetStructureID": 95365, + "Label": "180-95365 via Ribbon Synapse from 5735 -> 95372, 133037 -> 95372", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5735, + "TargetID": 95372, + "Directional": true + }, + { + "SourceID": 133037, + "TargetID": 95372, + "Directional": true + } + ] + }, + { + "ID": 5861, + "SourceStructureID": 180, + "TargetStructureID": 95382, + "Label": "180-95382 via Ribbon Synapse from 844 -> 95383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 844, + "TargetID": 95383, + "Directional": true + } + ] + }, + { + "ID": 5862, + "SourceStructureID": 180, + "TargetStructureID": 95384, + "Label": "180-95384 via Ribbon Synapse from 95386 -> 95385", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95386, + "TargetID": 95385, + "Directional": true + } + ] + }, + { + "ID": 5863, + "SourceStructureID": 180, + "TargetStructureID": 95398, + "Label": "180-95398 via Ribbon Synapse from 862 -> 95403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 862, + "TargetID": 95403, + "Directional": true + } + ] + }, + { + "ID": 5864, + "SourceStructureID": 180, + "TargetStructureID": 95399, + "Label": "180-95399 via Ribbon Synapse from 862 -> 95402, 90916 -> 95402", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 862, + "TargetID": 95402, + "Directional": true + }, + { + "SourceID": 90916, + "TargetID": 95402, + "Directional": true + } + ] + }, + { + "ID": 5865, + "SourceStructureID": 180, + "TargetStructureID": 95408, + "Label": "180-95408 via Ribbon Synapse from 95407 -> 95410, 133057 -> 95418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95407, + "TargetID": 95410, + "Directional": true + }, + { + "SourceID": 133057, + "TargetID": 95418, + "Directional": true + } + ] + }, + { + "ID": 5866, + "SourceStructureID": 180, + "TargetStructureID": 95411, + "Label": "180-95411 via Ribbon Synapse from 867 -> 95412, 11938 -> 95413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 867, + "TargetID": 95412, + "Directional": true + }, + { + "SourceID": 11938, + "TargetID": 95413, + "Directional": true + } + ] + }, + { + "ID": 5867, + "SourceStructureID": 180, + "TargetStructureID": 95419, + "Label": "180-95419 via Ribbon Synapse from 875 -> 95420", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 875, + "TargetID": 95420, + "Directional": true + } + ] + }, + { + "ID": 5868, + "SourceStructureID": 180, + "TargetStructureID": 95424, + "Label": "180-95424 via Ribbon Synapse from 31286 -> 95425, 95427 -> 95426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31286, + "TargetID": 95425, + "Directional": true + }, + { + "SourceID": 95427, + "TargetID": 95426, + "Directional": true + } + ] + }, + { + "ID": 5869, + "SourceStructureID": 180, + "TargetStructureID": 95441, + "Label": "180-95441 via Ribbon Synapse from 883 -> 95442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 883, + "TargetID": 95442, + "Directional": true + } + ] + }, + { + "ID": 5870, + "SourceStructureID": 180, + "TargetStructureID": 95445, + "Label": "180-95445 via Ribbon Synapse from 132896 -> 132984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132896, + "TargetID": 132984, + "Directional": true + } + ] + }, + { + "ID": 5871, + "SourceStructureID": 180, + "TargetStructureID": 95454, + "Label": "180-95454 via Ribbon Synapse from 897 -> 95456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 897, + "TargetID": 95456, + "Directional": true + } + ] + }, + { + "ID": 5872, + "SourceStructureID": 180, + "TargetStructureID": 95495, + "Label": "180-95495 via BC Conventional Synapse from 132943 -> 132942", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132943, + "TargetID": 132942, + "Directional": true + } + ] + }, + { + "ID": 5873, + "SourceStructureID": 180, + "TargetStructureID": 95498, + "Label": "180-95498 via BC Conventional Synapse from 95497 -> 95499", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95497, + "TargetID": 95499, + "Directional": true + } + ] + }, + { + "ID": 5874, + "SourceStructureID": 180, + "TargetStructureID": 95501, + "Label": "180-95501 via Ribbon Synapse from 90959 -> 95505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90959, + "TargetID": 95505, + "Directional": true + } + ] + }, + { + "ID": 5875, + "SourceStructureID": 180, + "TargetStructureID": 95515, + "Label": "180-95515 via BC Conventional Synapse from 95516 -> 95517", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95516, + "TargetID": 95517, + "Directional": true + } + ] + }, + { + "ID": 5876, + "SourceStructureID": 180, + "TargetStructureID": 95527, + "Label": "180-95527 via Ribbon Synapse from 90986 -> 95529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90986, + "TargetID": 95529, + "Directional": true + } + ] + }, + { + "ID": 5877, + "SourceStructureID": 180, + "TargetStructureID": 95530, + "Label": "180-95530 via BC Conventional Synapse from 95535 -> 95536", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95535, + "TargetID": 95536, + "Directional": true + } + ] + }, + { + "ID": 5878, + "SourceStructureID": 180, + "TargetStructureID": 95538, + "Label": "180-95538 via Ribbon Synapse from 904 -> 95539, 95544 -> 133099", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 904, + "TargetID": 95539, + "Directional": true + }, + { + "SourceID": 95544, + "TargetID": 133099, + "Directional": true + } + ] + }, + { + "ID": 5879, + "SourceStructureID": 180, + "TargetStructureID": 95543, + "Label": "180-95543 via Ribbon Synapse from 895 -> 133058", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 895, + "TargetID": 133058, + "Directional": true + } + ] + }, + { + "ID": 5880, + "SourceStructureID": 180, + "TargetStructureID": 95545, + "Label": "180-95545 via Ribbon Synapse from 95544 -> 133097", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95544, + "TargetID": 133097, + "Directional": true + } + ] + }, + { + "ID": 5881, + "SourceStructureID": 180, + "TargetStructureID": 95546, + "Label": "180-95546 via Ribbon Synapse from 11939 -> 95547", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11939, + "TargetID": 95547, + "Directional": true + } + ] + }, + { + "ID": 5882, + "SourceStructureID": 180, + "TargetStructureID": 95560, + "Label": "180-95560 via Ribbon Synapse from 95561 -> 95571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95561, + "TargetID": 95571, + "Directional": true + } + ] + }, + { + "ID": 5883, + "SourceStructureID": 180, + "TargetStructureID": 95562, + "Label": "180-95562 via Ribbon Synapse from 95561 -> 95572", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95561, + "TargetID": 95572, + "Directional": true + } + ] + }, + { + "ID": 5884, + "SourceStructureID": 180, + "TargetStructureID": 95563, + "Label": "180-95563 via Postsynapse from 95565 -> 95564", + "Type": "Postsynapse", + "Directional": true, + "Links": [ + { + "SourceID": 95565, + "TargetID": 95564, + "Directional": true + } + ] + }, + { + "ID": 5885, + "SourceStructureID": 180, + "TargetStructureID": 95563, + "Label": "180-95563 via Ribbon Synapse from 95576 -> 95577", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95576, + "TargetID": 95577, + "Directional": true + } + ] + }, + { + "ID": 5886, + "SourceStructureID": 180, + "TargetStructureID": 95586, + "Label": "180-95586 via Ribbon Synapse from 95587 -> 95588", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95587, + "TargetID": 95588, + "Directional": true + } + ] + }, + { + "ID": 5887, + "SourceStructureID": 180, + "TargetStructureID": 95589, + "Label": "180-95589 via Cistern Pre from 132904 -> 132905", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 132904, + "TargetID": 132905, + "Directional": true + } + ] + }, + { + "ID": 5888, + "SourceStructureID": 180, + "TargetStructureID": 95589, + "Label": "180-95589 via Ribbon Synapse from 132903 -> 95591", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132903, + "TargetID": 95591, + "Directional": true + } + ] + }, + { + "ID": 5889, + "SourceStructureID": 180, + "TargetStructureID": 95603, + "Label": "180-95603 via Ribbon Synapse from 4926 -> 95604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4926, + "TargetID": 95604, + "Directional": true + } + ] + }, + { + "ID": 5890, + "SourceStructureID": 180, + "TargetStructureID": 95607, + "Label": "180-95607 via Ribbon Synapse from 855 -> 95608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 855, + "TargetID": 95608, + "Directional": true + } + ] + }, + { + "ID": 5891, + "SourceStructureID": 180, + "TargetStructureID": 95620, + "Label": "180-95620 via Ribbon Synapse from 65600 -> 133048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65600, + "TargetID": 133048, + "Directional": true + } + ] + }, + { + "ID": 5892, + "SourceStructureID": 180, + "TargetStructureID": 95674, + "Label": "180-95674 via Ribbon Synapse from 95672 -> 95677", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95672, + "TargetID": 95677, + "Directional": true + } + ] + }, + { + "ID": 5893, + "SourceStructureID": 180, + "TargetStructureID": 95678, + "Label": "180-95678 via Ribbon Synapse from 90909 -> 95679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90909, + "TargetID": 95679, + "Directional": true + } + ] + }, + { + "ID": 5894, + "SourceStructureID": 180, + "TargetStructureID": 95683, + "Label": "180-95683 via Ribbon Synapse from 90910 -> 95685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90910, + "TargetID": 95685, + "Directional": true + } + ] + }, + { + "ID": 5895, + "SourceStructureID": 180, + "TargetStructureID": 95703, + "Label": "180-95703 via Ribbon Synapse from 132869 -> 132870", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132869, + "TargetID": 132870, + "Directional": true + } + ] + }, + { + "ID": 5896, + "SourceStructureID": 180, + "TargetStructureID": 95737, + "Label": "180-95737 via Ribbon Synapse from 132939 -> 132940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132939, + "TargetID": 132940, + "Directional": true + } + ] + }, + { + "ID": 5897, + "SourceStructureID": 180, + "TargetStructureID": 95740, + "Label": "180-95740 via BC Conventional Synapse from 95741 -> 95742", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95741, + "TargetID": 95742, + "Directional": true + } + ] + }, + { + "ID": 5898, + "SourceStructureID": 180, + "TargetStructureID": 95743, + "Label": "180-95743 via Ribbon Synapse from 95744 -> 95745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95744, + "TargetID": 95745, + "Directional": true + } + ] + }, + { + "ID": 5899, + "SourceStructureID": 180, + "TargetStructureID": 95759, + "Label": "180-95759 via Ribbon Synapse from 19821 -> 95760", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19821, + "TargetID": 95760, + "Directional": true + } + ] + }, + { + "ID": 5900, + "SourceStructureID": 180, + "TargetStructureID": 95807, + "Label": "180-95807 via Ribbon Synapse from 31100 -> 95809", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31100, + "TargetID": 95809, + "Directional": true + } + ] + }, + { + "ID": 5901, + "SourceStructureID": 180, + "TargetStructureID": 95810, + "Label": "180-95810 via Ribbon Synapse from 31100 -> 95811, 88071 -> 95832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31100, + "TargetID": 95811, + "Directional": true + }, + { + "SourceID": 88071, + "TargetID": 95832, + "Directional": true + } + ] + }, + { + "ID": 5902, + "SourceStructureID": 180, + "TargetStructureID": 95824, + "Label": "180-95824 via Ribbon Synapse from 6097 -> 95825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6097, + "TargetID": 95825, + "Directional": true + } + ] + }, + { + "ID": 5903, + "SourceStructureID": 180, + "TargetStructureID": 95827, + "Label": "180-95827 via BC Conventional Synapse from 88070 -> 95828", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88070, + "TargetID": 95828, + "Directional": true + } + ] + }, + { + "ID": 5904, + "SourceStructureID": 180, + "TargetStructureID": 95829, + "Label": "180-95829 via BC Conventional Synapse from 132965 -> 132964", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132965, + "TargetID": 132964, + "Directional": true + } + ] + }, + { + "ID": 5905, + "SourceStructureID": 180, + "TargetStructureID": 95829, + "Label": "180-95829 via Ribbon Synapse from 88071 -> 95831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88071, + "TargetID": 95831, + "Directional": true + } + ] + }, + { + "ID": 5906, + "SourceStructureID": 180, + "TargetStructureID": 95840, + "Label": "180-95840 via Ribbon Synapse from 95842 -> 95843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95842, + "TargetID": 95843, + "Directional": true + } + ] + }, + { + "ID": 5907, + "SourceStructureID": 180, + "TargetStructureID": 95844, + "Label": "180-95844 via Ribbon Synapse from 95842 -> 95845", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95842, + "TargetID": 95845, + "Directional": true + } + ] + }, + { + "ID": 5908, + "SourceStructureID": 180, + "TargetStructureID": 95877, + "Label": "180-95877 via Ribbon Synapse from 95878 -> 95879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95878, + "TargetID": 95879, + "Directional": true + } + ] + }, + { + "ID": 5909, + "SourceStructureID": 180, + "TargetStructureID": 95927, + "Label": "180-95927 via Ribbon Synapse from 14139 -> 95958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14139, + "TargetID": 95958, + "Directional": true + } + ] + }, + { + "ID": 5910, + "SourceStructureID": 180, + "TargetStructureID": 95951, + "Label": "180-95951 via Ribbon Synapse from 95953 -> 95954", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95953, + "TargetID": 95954, + "Directional": true + } + ] + }, + { + "ID": 5911, + "SourceStructureID": 180, + "TargetStructureID": 95978, + "Label": "180-95978 via Ribbon Synapse from 14156 -> 95982", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14156, + "TargetID": 95982, + "Directional": true + } + ] + }, + { + "ID": 5912, + "SourceStructureID": 180, + "TargetStructureID": 95983, + "Label": "180-95983 via BC Conventional Synapse from 95984 -> 95985", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95984, + "TargetID": 95985, + "Directional": true + } + ] + }, + { + "ID": 5913, + "SourceStructureID": 180, + "TargetStructureID": 96021, + "Label": "180-96021 via Ribbon Synapse from 14151 -> 96022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14151, + "TargetID": 96022, + "Directional": true + } + ] + }, + { + "ID": 5914, + "SourceStructureID": 180, + "TargetStructureID": 96023, + "Label": "180-96023 via Ribbon Synapse from 81387 -> 96030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81387, + "TargetID": 96030, + "Directional": true + } + ] + }, + { + "ID": 5915, + "SourceStructureID": 180, + "TargetStructureID": 96026, + "Label": "180-96026 via Ribbon Synapse from 14149 -> 96027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14149, + "TargetID": 96027, + "Directional": true + } + ] + }, + { + "ID": 5916, + "SourceStructureID": 180, + "TargetStructureID": 96028, + "Label": "180-96028 via Ribbon Synapse from 14155 -> 96029", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14155, + "TargetID": 96029, + "Directional": true + } + ] + }, + { + "ID": 5917, + "SourceStructureID": 180, + "TargetStructureID": 96033, + "Label": "180-96033 via Ribbon Synapse from 81387 -> 96034", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81387, + "TargetID": 96034, + "Directional": true + } + ] + }, + { + "ID": 5918, + "SourceStructureID": 180, + "TargetStructureID": 133015, + "Label": "180-133015 via Ribbon Synapse from 126090 -> 133016", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126090, + "TargetID": 133016, + "Directional": true + } + ] + }, + { + "ID": 5919, + "SourceStructureID": 180, + "TargetStructureID": 133027, + "Label": "180-133027 via Ribbon Synapse from 31272 -> 133028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31272, + "TargetID": 133028, + "Directional": true + } + ] + }, + { + "ID": 5920, + "SourceStructureID": 181, + "TargetStructureID": 173, + "Label": "181-173 via Adherens from 20426 -> 20427, 20439 -> 20440", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 20426, + "TargetID": 20427, + "Directional": true + }, + { + "SourceID": 20439, + "TargetID": 20440, + "Directional": true + } + ] + }, + { + "ID": 5921, + "SourceStructureID": 181, + "TargetStructureID": 3865, + "Label": "181-3865 via Ribbon Synapse from 20521 -> 132174, 33291 -> 36121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20521, + "TargetID": 132174, + "Directional": true + }, + { + "SourceID": 33291, + "TargetID": 36121, + "Directional": true + } + ] + }, + { + "ID": 5922, + "SourceStructureID": 181, + "TargetStructureID": 8575, + "Label": "181-8575 via BC Conventional Synapse from 62847 -> 62846", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62847, + "TargetID": 62846, + "Directional": true + } + ] + }, + { + "ID": 5923, + "SourceStructureID": 181, + "TargetStructureID": 8575, + "Label": "181-8575 via Ribbon Synapse from 20520 -> 62258", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20520, + "TargetID": 62258, + "Directional": true + } + ] + }, + { + "ID": 5924, + "SourceStructureID": 181, + "TargetStructureID": 12203, + "Label": "181-12203 via Ribbon Synapse from 12244 -> 12242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12244, + "TargetID": 12242, + "Directional": true + } + ] + }, + { + "ID": 5925, + "SourceStructureID": 181, + "TargetStructureID": 31605, + "Label": "181-31605 via Ribbon Synapse from 31621 -> 31622", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31621, + "TargetID": 31622, + "Directional": true + } + ] + }, + { + "ID": 5926, + "SourceStructureID": 181, + "TargetStructureID": 54622, + "Label": "181-54622 via BC Conventional Synapse from 55945 -> 55946", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55945, + "TargetID": 55946, + "Directional": true + } + ] + }, + { + "ID": 5927, + "SourceStructureID": 181, + "TargetStructureID": 56211, + "Label": "181-56211 via Ribbon Synapse from 56232 -> 56231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56232, + "TargetID": 56231, + "Directional": true + } + ] + }, + { + "ID": 5928, + "SourceStructureID": 181, + "TargetStructureID": 129648, + "Label": "181-129648 via Ribbon Synapse from 33291 -> 129649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33291, + "TargetID": 129649, + "Directional": true + } + ] + }, + { + "ID": 5929, + "SourceStructureID": 181, + "TargetStructureID": 136432, + "Label": "181-136432 via Ribbon Synapse from 18410 -> 136542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18410, + "TargetID": 136542, + "Directional": true + } + ] + }, + { + "ID": 5930, + "SourceStructureID": 184, + "TargetStructureID": 9260, + "Label": "184-9260 via Conventional from 30392 -> 30391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30392, + "TargetID": 30391, + "Directional": true + } + ] + }, + { + "ID": 5931, + "SourceStructureID": 222, + "TargetStructureID": 8720, + "Label": "222-8720 via BC Conventional Synapse from 63144 -> 15318", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63144, + "TargetID": 15318, + "Directional": true + } + ] + }, + { + "ID": 5932, + "SourceStructureID": 223, + "TargetStructureID": 380, + "Label": "223-380 via Conventional from 26532 -> 17876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 26532, + "TargetID": 17876, + "Directional": true + } + ] + }, + { + "ID": 5933, + "SourceStructureID": 223, + "TargetStructureID": 5150, + "Label": "223-5150 via Conventional from 131213 -> 131212", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131213, + "TargetID": 131212, + "Directional": true + } + ] + }, + { + "ID": 5934, + "SourceStructureID": 223, + "TargetStructureID": 6163, + "Label": "223-6163 via Conventional from 34935 -> 34936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34935, + "TargetID": 34936, + "Directional": true + } + ] + }, + { + "ID": 5935, + "SourceStructureID": 223, + "TargetStructureID": 21874, + "Label": "223-21874 via Conventional from 47086 -> 47087", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47086, + "TargetID": 47087, + "Directional": true + } + ] + }, + { + "ID": 5936, + "SourceStructureID": 260, + "TargetStructureID": 250, + "Label": "260-250 via Ribbon Synapse from 36184 -> 36185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36184, + "TargetID": 36185, + "Directional": true + } + ] + }, + { + "ID": 5937, + "SourceStructureID": 268, + "TargetStructureID": 5117, + "Label": "268-5117 via Ribbon Synapse from 135192 -> 135193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135192, + "TargetID": 135193, + "Directional": true + } + ] + }, + { + "ID": 5938, + "SourceStructureID": 269, + "TargetStructureID": 7468, + "Label": "269-7468 via Ribbon Synapse from 42464 -> 29064", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42464, + "TargetID": 29064, + "Directional": true + } + ] + }, + { + "ID": 5939, + "SourceStructureID": 273, + "TargetStructureID": 352, + "Label": "273-352 via Ribbon Synapse from 31641 -> 31654, 39992 -> 39994, 64539 -> 31654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31641, + "TargetID": 31654, + "Directional": true + }, + { + "SourceID": 39992, + "TargetID": 39994, + "Directional": true + }, + { + "SourceID": 64539, + "TargetID": 31654, + "Directional": true + } + ] + }, + { + "ID": 5940, + "SourceStructureID": 273, + "TargetStructureID": 7157, + "Label": "273-7157 via Ribbon Synapse from 26221 -> 26222, 26223 -> 26224, 31641 -> 31645, 31672 -> 31671, 87624 -> 26226, 87632 -> 26239, 87641 -> 87642, 87644 -> 87643, 87651 -> 87657, 87674 -> 87677", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26221, + "TargetID": 26222, + "Directional": true + }, + { + "SourceID": 26223, + "TargetID": 26224, + "Directional": true + }, + { + "SourceID": 31641, + "TargetID": 31645, + "Directional": true + }, + { + "SourceID": 31672, + "TargetID": 31671, + "Directional": true + }, + { + "SourceID": 87624, + "TargetID": 26226, + "Directional": true + }, + { + "SourceID": 87632, + "TargetID": 26239, + "Directional": true + }, + { + "SourceID": 87641, + "TargetID": 87642, + "Directional": true + }, + { + "SourceID": 87644, + "TargetID": 87643, + "Directional": true + }, + { + "SourceID": 87651, + "TargetID": 87657, + "Directional": true + }, + { + "SourceID": 87674, + "TargetID": 87677, + "Directional": true + } + ] + }, + { + "ID": 5941, + "SourceStructureID": 273, + "TargetStructureID": 87626, + "Label": "273-87626 via Ribbon Synapse from 87624 -> 87627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87624, + "TargetID": 87627, + "Directional": true + } + ] + }, + { + "ID": 5942, + "SourceStructureID": 273, + "TargetStructureID": 87635, + "Label": "273-87635 via Ribbon Synapse from 87634 -> 87636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87634, + "TargetID": 87636, + "Directional": true + } + ] + }, + { + "ID": 5943, + "SourceStructureID": 273, + "TargetStructureID": 87678, + "Label": "273-87678 via Ribbon Synapse from 87674 -> 87679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87674, + "TargetID": 87679, + "Directional": true + } + ] + }, + { + "ID": 5944, + "SourceStructureID": 276, + "TargetStructureID": 284, + "Label": "276-284 via Ribbon Synapse from 29519 -> 29535, 29534 -> 29533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29519, + "TargetID": 29535, + "Directional": true + }, + { + "SourceID": 29534, + "TargetID": 29533, + "Directional": true + } + ] + }, + { + "ID": 5945, + "SourceStructureID": 276, + "TargetStructureID": 7157, + "Label": "276-7157 via Ribbon Synapse from 94910 -> 29518", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94910, + "TargetID": 29518, + "Directional": true + } + ] + }, + { + "ID": 5946, + "SourceStructureID": 276, + "TargetStructureID": 31399, + "Label": "276-31399 via Ribbon Synapse from 31409 -> 31408", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31409, + "TargetID": 31408, + "Directional": true + } + ] + }, + { + "ID": 5947, + "SourceStructureID": 277, + "TargetStructureID": 278, + "Label": "277-278 via BC Conventional Synapse from 60497 -> 60496", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60497, + "TargetID": 60496, + "Directional": true + } + ] + }, + { + "ID": 5948, + "SourceStructureID": 277, + "TargetStructureID": 278, + "Label": "277-278 via Ribbon Synapse from 26072 -> 31728", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26072, + "TargetID": 31728, + "Directional": true + } + ] + }, + { + "ID": 5949, + "SourceStructureID": 277, + "TargetStructureID": 606, + "Label": "277-606 via Ribbon Synapse from 26011 -> 49132, 26019 -> 52851, 26065 -> 52764, 52847 -> 52829", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26011, + "TargetID": 49132, + "Directional": true + }, + { + "SourceID": 26019, + "TargetID": 52851, + "Directional": true + }, + { + "SourceID": 26065, + "TargetID": 52764, + "Directional": true + }, + { + "SourceID": 52847, + "TargetID": 52829, + "Directional": true + } + ] + }, + { + "ID": 5950, + "SourceStructureID": 277, + "TargetStructureID": 7568, + "Label": "277-7568 via Ribbon Synapse from 26048 -> 27147", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26048, + "TargetID": 27147, + "Directional": true + } + ] + }, + { + "ID": 5951, + "SourceStructureID": 277, + "TargetStructureID": 31679, + "Label": "277-31679 via Ribbon Synapse from 26412 -> 31692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26412, + "TargetID": 31692, + "Directional": true + } + ] + }, + { + "ID": 5952, + "SourceStructureID": 277, + "TargetStructureID": 70924, + "Label": "277-70924 via Ribbon Synapse from 26045 -> 71033", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26045, + "TargetID": 71033, + "Directional": true + } + ] + }, + { + "ID": 5953, + "SourceStructureID": 278, + "TargetStructureID": 276, + "Label": "278-276 via Conventional from 46038 -> 46039", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46038, + "TargetID": 46039, + "Directional": true + } + ] + }, + { + "ID": 5954, + "SourceStructureID": 278, + "TargetStructureID": 334, + "Label": "278-334 via Conventional from 35486 -> 35487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35486, + "TargetID": 35487, + "Directional": true + } + ] + }, + { + "ID": 5955, + "SourceStructureID": 278, + "TargetStructureID": 342, + "Label": "278-342 via Conventional from 31726 -> 31724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31726, + "TargetID": 31724, + "Directional": true + } + ] + }, + { + "ID": 5956, + "SourceStructureID": 280, + "TargetStructureID": 284, + "Label": "280-284 via Ribbon Synapse from 32575 -> 32574", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32575, + "TargetID": 32574, + "Directional": true + } + ] + }, + { + "ID": 5957, + "SourceStructureID": 280, + "TargetStructureID": 7157, + "Label": "280-7157 via Ribbon Synapse from 33590 -> 26265, 87686 -> 87691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33590, + "TargetID": 26265, + "Directional": true + }, + { + "SourceID": 87686, + "TargetID": 87691, + "Directional": true + } + ] + }, + { + "ID": 5958, + "SourceStructureID": 280, + "TargetStructureID": 33588, + "Label": "280-33588 via Ribbon Synapse from 33590 -> 33589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33590, + "TargetID": 33589, + "Directional": true + } + ] + }, + { + "ID": 5959, + "SourceStructureID": 280, + "TargetStructureID": 115519, + "Label": "280-115519 via Ribbon Synapse from 115523 -> 115522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115523, + "TargetID": 115522, + "Directional": true + } + ] + }, + { + "ID": 5960, + "SourceStructureID": 284, + "TargetStructureID": 605, + "Label": "284-605 via Conventional from 22516 -> 22517", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22516, + "TargetID": 22517, + "Directional": true + } + ] + }, + { + "ID": 5961, + "SourceStructureID": 284, + "TargetStructureID": 5150, + "Label": "284-5150 via Conventional from 15425 -> 5261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15425, + "TargetID": 5261, + "Directional": true + } + ] + }, + { + "ID": 5962, + "SourceStructureID": 284, + "TargetStructureID": 9787, + "Label": "284-9787 via Conventional from 12055 -> 9844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12055, + "TargetID": 9844, + "Directional": true + } + ] + }, + { + "ID": 5963, + "SourceStructureID": 285, + "TargetStructureID": 284, + "Label": "285-284 via Ribbon Synapse from 95373 -> 95374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95373, + "TargetID": 95374, + "Directional": true + } + ] + }, + { + "ID": 5964, + "SourceStructureID": 285, + "TargetStructureID": 20299, + "Label": "285-20299 via Ribbon Synapse from 20310 -> 20300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20310, + "TargetID": 20300, + "Directional": true + } + ] + }, + { + "ID": 5965, + "SourceStructureID": 286, + "TargetStructureID": 4890, + "Label": "286-4890 via Ribbon Synapse from 20294 -> 20006, 20295 -> 20007, 20522 -> 20008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20294, + "TargetID": 20006, + "Directional": true + }, + { + "SourceID": 20295, + "TargetID": 20007, + "Directional": true + }, + { + "SourceID": 20522, + "TargetID": 20008, + "Directional": true + } + ] + }, + { + "ID": 5966, + "SourceStructureID": 286, + "TargetStructureID": 5439, + "Label": "286-5439 via Ribbon Synapse from 85715 -> 85716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85715, + "TargetID": 85716, + "Directional": true + } + ] + }, + { + "ID": 5967, + "SourceStructureID": 286, + "TargetStructureID": 8579, + "Label": "286-8579 via Ribbon Synapse from 20506 -> 62673", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20506, + "TargetID": 62673, + "Directional": true + } + ] + }, + { + "ID": 5968, + "SourceStructureID": 286, + "TargetStructureID": 15796, + "Label": "286-15796 via BC Conventional Synapse from 121619 -> 121618", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121619, + "TargetID": 121618, + "Directional": true + } + ] + }, + { + "ID": 5969, + "SourceStructureID": 286, + "TargetStructureID": 18282, + "Label": "286-18282 via Ribbon Synapse from 20506 -> 20502, 38860 -> 38851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20506, + "TargetID": 20502, + "Directional": true + }, + { + "SourceID": 38860, + "TargetID": 38851, + "Directional": true + } + ] + }, + { + "ID": 5970, + "SourceStructureID": 286, + "TargetStructureID": 20299, + "Label": "286-20299 via Ribbon Synapse from 27669 -> 45608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27669, + "TargetID": 45608, + "Directional": true + } + ] + }, + { + "ID": 5971, + "SourceStructureID": 286, + "TargetStructureID": 20311, + "Label": "286-20311 via Ribbon Synapse from 100586 -> 100585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100586, + "TargetID": 100585, + "Directional": true + } + ] + }, + { + "ID": 5972, + "SourceStructureID": 286, + "TargetStructureID": 32547, + "Label": "286-32547 via Ribbon Synapse from 26452 -> 99150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26452, + "TargetID": 99150, + "Directional": true + } + ] + }, + { + "ID": 5973, + "SourceStructureID": 286, + "TargetStructureID": 33148, + "Label": "286-33148 via BC Conventional Synapse from 129128 -> 33158", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129128, + "TargetID": 33158, + "Directional": true + } + ] + }, + { + "ID": 5974, + "SourceStructureID": 286, + "TargetStructureID": 34138, + "Label": "286-34138 via Ribbon Synapse from 34143 -> 34142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34143, + "TargetID": 34142, + "Directional": true + } + ] + }, + { + "ID": 5975, + "SourceStructureID": 286, + "TargetStructureID": 34148, + "Label": "286-34148 via Ribbon Synapse from 26460 -> 38751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26460, + "TargetID": 38751, + "Directional": true + } + ] + }, + { + "ID": 5976, + "SourceStructureID": 289, + "TargetStructureID": 606, + "Label": "289-606 via Conventional from 53204 -> 53203", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53204, + "TargetID": 53203, + "Directional": true + } + ] + }, + { + "ID": 5977, + "SourceStructureID": 293, + "TargetStructureID": 284, + "Label": "293-284 via Ribbon Synapse from 14379 -> 17507, 17425 -> 17516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14379, + "TargetID": 17507, + "Directional": true + }, + { + "SourceID": 17425, + "TargetID": 17516, + "Directional": true + } + ] + }, + { + "ID": 5978, + "SourceStructureID": 293, + "TargetStructureID": 6153, + "Label": "293-6153 via Ribbon Synapse from 17424 -> 18167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17424, + "TargetID": 18167, + "Directional": true + } + ] + }, + { + "ID": 5979, + "SourceStructureID": 294, + "TargetStructureID": 223, + "Label": "294-223 via Ribbon Synapse from 17399 -> 17400, 17406 -> 17417, 17873 -> 17874, 120618 -> 120622, 120619 -> 120623, 120620 -> 120625, 120621 -> 120624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17399, + "TargetID": 17400, + "Directional": true + }, + { + "SourceID": 17406, + "TargetID": 17417, + "Directional": true + }, + { + "SourceID": 17873, + "TargetID": 17874, + "Directional": true + }, + { + "SourceID": 120618, + "TargetID": 120622, + "Directional": true + }, + { + "SourceID": 120619, + "TargetID": 120623, + "Directional": true + }, + { + "SourceID": 120620, + "TargetID": 120625, + "Directional": true + }, + { + "SourceID": 120621, + "TargetID": 120624, + "Directional": true + } + ] + }, + { + "ID": 5980, + "SourceStructureID": 294, + "TargetStructureID": 284, + "Label": "294-284 via Ribbon Synapse from 14352 -> 21567, 17406 -> 17522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14352, + "TargetID": 21567, + "Directional": true + }, + { + "SourceID": 17406, + "TargetID": 17522, + "Directional": true + } + ] + }, + { + "ID": 5981, + "SourceStructureID": 294, + "TargetStructureID": 410, + "Label": "294-410 via Ribbon Synapse from 16665 -> 16699, 17412 -> 17411, 17413 -> 17414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16665, + "TargetID": 16699, + "Directional": true + }, + { + "SourceID": 17412, + "TargetID": 17411, + "Directional": true + }, + { + "SourceID": 17413, + "TargetID": 17414, + "Directional": true + } + ] + }, + { + "ID": 5982, + "SourceStructureID": 294, + "TargetStructureID": 4850, + "Label": "294-4850 via Ribbon Synapse from 17873 -> 22540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17873, + "TargetID": 22540, + "Directional": true + } + ] + }, + { + "ID": 5983, + "SourceStructureID": 294, + "TargetStructureID": 6153, + "Label": "294-6153 via Ribbon Synapse from 16654 -> 16655, 16656 -> 16657, 16659 -> 16660, 16664 -> 16698, 16669 -> 16668, 16709 -> 16707, 17835 -> 17834", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16654, + "TargetID": 16655, + "Directional": true + }, + { + "SourceID": 16656, + "TargetID": 16657, + "Directional": true + }, + { + "SourceID": 16659, + "TargetID": 16660, + "Directional": true + }, + { + "SourceID": 16664, + "TargetID": 16698, + "Directional": true + }, + { + "SourceID": 16669, + "TargetID": 16668, + "Directional": true + }, + { + "SourceID": 16709, + "TargetID": 16707, + "Directional": true + }, + { + "SourceID": 17835, + "TargetID": 17834, + "Directional": true + } + ] + }, + { + "ID": 5984, + "SourceStructureID": 294, + "TargetStructureID": 25688, + "Label": "294-25688 via Ribbon Synapse from 17413 -> 25701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17413, + "TargetID": 25701, + "Directional": true + } + ] + }, + { + "ID": 5985, + "SourceStructureID": 298, + "TargetStructureID": 8720, + "Label": "298-8720 via Ribbon Synapse from 63500 -> 63499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63500, + "TargetID": 63499, + "Directional": true + } + ] + }, + { + "ID": 5986, + "SourceStructureID": 299, + "TargetStructureID": 5107, + "Label": "299-5107 via Ribbon Synapse from 7218 -> 55355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7218, + "TargetID": 55355, + "Directional": true + } + ] + }, + { + "ID": 5987, + "SourceStructureID": 299, + "TargetStructureID": 38735, + "Label": "299-38735 via Ribbon Synapse from 38739 -> 38738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38739, + "TargetID": 38738, + "Directional": true + } + ] + }, + { + "ID": 5988, + "SourceStructureID": 299, + "TargetStructureID": 47013, + "Label": "299-47013 via Ribbon Synapse from 47074 -> 47070, 47075 -> 47069", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47074, + "TargetID": 47070, + "Directional": true + }, + { + "SourceID": 47075, + "TargetID": 47069, + "Directional": true + } + ] + }, + { + "ID": 5989, + "SourceStructureID": 299, + "TargetStructureID": 47095, + "Label": "299-47095 via Ribbon Synapse from 47096 -> 47097", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47096, + "TargetID": 47097, + "Directional": true + } + ] + }, + { + "ID": 5990, + "SourceStructureID": 299, + "TargetStructureID": 47104, + "Label": "299-47104 via Ribbon Synapse from 47103 -> 47105", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47103, + "TargetID": 47105, + "Directional": true + } + ] + }, + { + "ID": 5991, + "SourceStructureID": 299, + "TargetStructureID": 47109, + "Label": "299-47109 via Ribbon Synapse from 47103 -> 47111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47103, + "TargetID": 47111, + "Directional": true + } + ] + }, + { + "ID": 5992, + "SourceStructureID": 304, + "TargetStructureID": 28913, + "Label": "304-28913 via Conventional from 129168 -> 28923, 129174 -> 28921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129168, + "TargetID": 28923, + "Directional": true + }, + { + "SourceID": 129174, + "TargetID": 28921, + "Directional": true + } + ] + }, + { + "ID": 5993, + "SourceStructureID": 304, + "TargetStructureID": 129181, + "Label": "304-129181 via Conventional from 129182 -> 129183", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129182, + "TargetID": 129183, + "Directional": true + } + ] + }, + { + "ID": 5994, + "SourceStructureID": 307, + "TargetStructureID": 906, + "Label": "307-906 via Ribbon Synapse from 15973 -> 15903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15973, + "TargetID": 15903, + "Directional": true + } + ] + }, + { + "ID": 5995, + "SourceStructureID": 307, + "TargetStructureID": 7594, + "Label": "307-7594 via Ribbon Synapse from 16591 -> 46860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16591, + "TargetID": 46860, + "Directional": true + } + ] + }, + { + "ID": 5996, + "SourceStructureID": 307, + "TargetStructureID": 9769, + "Label": "307-9769 via Ribbon Synapse from 7257 -> 55107, 7281 -> 12356, 12335 -> 12332, 12337 -> 12338, 12357 -> 12358, 15954 -> 15955, 15975 -> 55153, 16362 -> 12330, 16364 -> 12326", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7257, + "TargetID": 55107, + "Directional": true + }, + { + "SourceID": 7281, + "TargetID": 12356, + "Directional": true + }, + { + "SourceID": 12335, + "TargetID": 12332, + "Directional": true + }, + { + "SourceID": 12337, + "TargetID": 12338, + "Directional": true + }, + { + "SourceID": 12357, + "TargetID": 12358, + "Directional": true + }, + { + "SourceID": 15954, + "TargetID": 15955, + "Directional": true + }, + { + "SourceID": 15975, + "TargetID": 55153, + "Directional": true + }, + { + "SourceID": 16362, + "TargetID": 12330, + "Directional": true + }, + { + "SourceID": 16364, + "TargetID": 12326, + "Directional": true + } + ] + }, + { + "ID": 5997, + "SourceStructureID": 307, + "TargetStructureID": 32668, + "Label": "307-32668 via Ribbon Synapse from 7253 -> 32669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7253, + "TargetID": 32669, + "Directional": true + } + ] + }, + { + "ID": 5998, + "SourceStructureID": 307, + "TargetStructureID": 38632, + "Label": "307-38632 via Ribbon Synapse from 68703 -> 68704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68703, + "TargetID": 68704, + "Directional": true + } + ] + }, + { + "ID": 5999, + "SourceStructureID": 307, + "TargetStructureID": 45326, + "Label": "307-45326 via Ribbon Synapse from 7233 -> 45330, 7250 -> 45333, 7264 -> 45341, 7265 -> 45342", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7233, + "TargetID": 45330, + "Directional": true + }, + { + "SourceID": 7250, + "TargetID": 45333, + "Directional": true + }, + { + "SourceID": 7264, + "TargetID": 45341, + "Directional": true + }, + { + "SourceID": 7265, + "TargetID": 45342, + "Directional": true + } + ] + }, + { + "ID": 6000, + "SourceStructureID": 307, + "TargetStructureID": 45336, + "Label": "307-45336 via Ribbon Synapse from 7250 -> 45338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7250, + "TargetID": 45338, + "Directional": true + } + ] + }, + { + "ID": 6001, + "SourceStructureID": 307, + "TargetStructureID": 45358, + "Label": "307-45358 via Ribbon Synapse from 7237 -> 45363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7237, + "TargetID": 45363, + "Directional": true + } + ] + }, + { + "ID": 6002, + "SourceStructureID": 308, + "TargetStructureID": 422, + "Label": "308-422 via Conventional from 43339 -> 43340, 43341 -> 43342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43339, + "TargetID": 43340, + "Directional": true + }, + { + "SourceID": 43341, + "TargetID": 43342, + "Directional": true + } + ] + }, + { + "ID": 6003, + "SourceStructureID": 308, + "TargetStructureID": 2610, + "Label": "308-2610 via Conventional from 43590 -> 43591, 43760 -> 43761", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43590, + "TargetID": 43591, + "Directional": true + }, + { + "SourceID": 43760, + "TargetID": 43761, + "Directional": true + } + ] + }, + { + "ID": 6004, + "SourceStructureID": 308, + "TargetStructureID": 5017, + "Label": "308-5017 via Conventional from 42551 -> 42554, 42556 -> 42557, 42558 -> 42559, 42560 -> 42561, 86721 -> 86722", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42551, + "TargetID": 42554, + "Directional": true + }, + { + "SourceID": 42556, + "TargetID": 42557, + "Directional": true + }, + { + "SourceID": 42558, + "TargetID": 42559, + "Directional": true + }, + { + "SourceID": 42560, + "TargetID": 42561, + "Directional": true + }, + { + "SourceID": 86721, + "TargetID": 86722, + "Directional": true + } + ] + }, + { + "ID": 6005, + "SourceStructureID": 308, + "TargetStructureID": 8749, + "Label": "308-8749 via Conventional from 42571 -> 8830, 42572 -> 42573, 43459 -> 8823, 43462 -> 8821, 43469 -> 43468, 43470 -> 8801, 43471 -> 43472, 86718 -> 86719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42571, + "TargetID": 8830, + "Directional": true + }, + { + "SourceID": 42572, + "TargetID": 42573, + "Directional": true + }, + { + "SourceID": 43459, + "TargetID": 8823, + "Directional": true + }, + { + "SourceID": 43462, + "TargetID": 8821, + "Directional": true + }, + { + "SourceID": 43469, + "TargetID": 43468, + "Directional": true + }, + { + "SourceID": 43470, + "TargetID": 8801, + "Directional": true + }, + { + "SourceID": 43471, + "TargetID": 43472, + "Directional": true + }, + { + "SourceID": 86718, + "TargetID": 86719, + "Directional": true + } + ] + }, + { + "ID": 6006, + "SourceStructureID": 308, + "TargetStructureID": 10872, + "Label": "308-10872 via Conventional from 43774 -> 15055, 43775 -> 15058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43774, + "TargetID": 15055, + "Directional": true + }, + { + "SourceID": 43775, + "TargetID": 15058, + "Directional": true + } + ] + }, + { + "ID": 6007, + "SourceStructureID": 308, + "TargetStructureID": 11042, + "Label": "308-11042 via Conventional from 42696 -> 42701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42696, + "TargetID": 42701, + "Directional": true + } + ] + }, + { + "ID": 6008, + "SourceStructureID": 308, + "TargetStructureID": 17228, + "Label": "308-17228 via Conventional from 43535 -> 43537, 43536 -> 43538", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43535, + "TargetID": 43537, + "Directional": true + }, + { + "SourceID": 43536, + "TargetID": 43538, + "Directional": true + } + ] + }, + { + "ID": 6009, + "SourceStructureID": 309, + "TargetStructureID": 223, + "Label": "309-223 via Ribbon Synapse from 120616 -> 120617", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120616, + "TargetID": 120617, + "Directional": true + } + ] + }, + { + "ID": 6010, + "SourceStructureID": 309, + "TargetStructureID": 310, + "Label": "309-310 via Ribbon cluster from 122253 -> 21798", + "Type": "Ribbon cluster", + "Directional": true, + "Links": [ + { + "SourceID": 122253, + "TargetID": 21798, + "Directional": true + } + ] + }, + { + "ID": 6011, + "SourceStructureID": 309, + "TargetStructureID": 310, + "Label": "309-310 via Ribbon Synapse from 6676 -> 21798, 13221 -> 21799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6676, + "TargetID": 21798, + "Directional": true + }, + { + "SourceID": 13221, + "TargetID": 21799, + "Directional": true + } + ] + }, + { + "ID": 6012, + "SourceStructureID": 309, + "TargetStructureID": 525, + "Label": "309-525 via Ribbon Synapse from 13239 -> 6270", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13239, + "TargetID": 6270, + "Directional": true + } + ] + }, + { + "ID": 6013, + "SourceStructureID": 309, + "TargetStructureID": 5118, + "Label": "309-5118 via Ribbon Synapse from 13387 -> 6545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13387, + "TargetID": 6545, + "Directional": true + } + ] + }, + { + "ID": 6014, + "SourceStructureID": 309, + "TargetStructureID": 18282, + "Label": "309-18282 via Ribbon Synapse from 13343 -> 20330", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13343, + "TargetID": 20330, + "Directional": true + } + ] + }, + { + "ID": 6015, + "SourceStructureID": 309, + "TargetStructureID": 25440, + "Label": "309-25440 via Ribbon Synapse from 13331 -> 25463", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13331, + "TargetID": 25463, + "Directional": true + } + ] + }, + { + "ID": 6016, + "SourceStructureID": 309, + "TargetStructureID": 37288, + "Label": "309-37288 via Ribbon Synapse from 13246 -> 37371, 13255 -> 37369, 13265 -> 37385, 13309 -> 37356, 28697 -> 37370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13246, + "TargetID": 37371, + "Directional": true + }, + { + "SourceID": 13255, + "TargetID": 37369, + "Directional": true + }, + { + "SourceID": 13265, + "TargetID": 37385, + "Directional": true + }, + { + "SourceID": 13309, + "TargetID": 37356, + "Directional": true + }, + { + "SourceID": 28697, + "TargetID": 37370, + "Directional": true + } + ] + }, + { + "ID": 6017, + "SourceStructureID": 309, + "TargetStructureID": 121541, + "Label": "309-121541 via Ribbon Synapse from 13306 -> 121542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13306, + "TargetID": 121542, + "Directional": true + } + ] + }, + { + "ID": 6018, + "SourceStructureID": 311, + "TargetStructureID": 69537, + "Label": "311-69537 via Ribbon Synapse from 69572 -> 69571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69572, + "TargetID": 69571, + "Directional": true + } + ] + }, + { + "ID": 6019, + "SourceStructureID": 318, + "TargetStructureID": 483, + "Label": "318-483 via Conventional from 102686 -> 6757", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102686, + "TargetID": 6757, + "Directional": true + } + ] + }, + { + "ID": 6020, + "SourceStructureID": 321, + "TargetStructureID": 288, + "Label": "321-288 via Cistern Pre from 38808 -> 38809", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 38808, + "TargetID": 38809, + "Directional": true + } + ] + }, + { + "ID": 6021, + "SourceStructureID": 321, + "TargetStructureID": 9769, + "Label": "321-9769 via Ribbon Synapse from 30094 -> 30091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30094, + "TargetID": 30091, + "Directional": true + } + ] + }, + { + "ID": 6022, + "SourceStructureID": 321, + "TargetStructureID": 32566, + "Label": "321-32566 via Ribbon Synapse from 99154 -> 99151", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99154, + "TargetID": 99151, + "Directional": true + } + ] + }, + { + "ID": 6023, + "SourceStructureID": 321, + "TargetStructureID": 70924, + "Label": "321-70924 via Ribbon Synapse from 122217 -> 122216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122217, + "TargetID": 122216, + "Directional": true + } + ] + }, + { + "ID": 6024, + "SourceStructureID": 321, + "TargetStructureID": 71882, + "Label": "321-71882 via Ribbon Synapse from 90239 -> 90236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90239, + "TargetID": 90236, + "Directional": true + } + ] + }, + { + "ID": 6025, + "SourceStructureID": 321, + "TargetStructureID": 90151, + "Label": "321-90151 via Ribbon Synapse from 65949 -> 90158", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65949, + "TargetID": 90158, + "Directional": true + } + ] + }, + { + "ID": 6026, + "SourceStructureID": 324, + "TargetStructureID": 606, + "Label": "324-606 via Ribbon Synapse from 12381 -> 53072, 30744 -> 53080, 50893 -> 53282, 52391 -> 52392, 53056 -> 53055, 53062 -> 53061, 53086 -> 53087, 53158 -> 53159, 53160 -> 53161, 53261 -> 53262, 53271 -> 53270, 53280 -> 53285, 53289 -> 53290, 53301 -> 53302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12381, + "TargetID": 53072, + "Directional": true + }, + { + "SourceID": 30744, + "TargetID": 53080, + "Directional": true + }, + { + "SourceID": 50893, + "TargetID": 53282, + "Directional": true + }, + { + "SourceID": 52391, + "TargetID": 52392, + "Directional": true + }, + { + "SourceID": 53056, + "TargetID": 53055, + "Directional": true + }, + { + "SourceID": 53062, + "TargetID": 53061, + "Directional": true + }, + { + "SourceID": 53086, + "TargetID": 53087, + "Directional": true + }, + { + "SourceID": 53158, + "TargetID": 53159, + "Directional": true + }, + { + "SourceID": 53160, + "TargetID": 53161, + "Directional": true + }, + { + "SourceID": 53261, + "TargetID": 53262, + "Directional": true + }, + { + "SourceID": 53271, + "TargetID": 53270, + "Directional": true + }, + { + "SourceID": 53280, + "TargetID": 53285, + "Directional": true + }, + { + "SourceID": 53289, + "TargetID": 53290, + "Directional": true + }, + { + "SourceID": 53301, + "TargetID": 53302, + "Directional": true + } + ] + }, + { + "ID": 6027, + "SourceStructureID": 324, + "TargetStructureID": 9769, + "Label": "324-9769 via Ribbon Synapse from 12369 -> 12367, 12381 -> 12375, 12383 -> 12384, 12385 -> 12386, 12387 -> 12388, 12572 -> 12390, 30744 -> 53081, 52391 -> 12371, 120594 -> 120595", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12369, + "TargetID": 12367, + "Directional": true + }, + { + "SourceID": 12381, + "TargetID": 12375, + "Directional": true + }, + { + "SourceID": 12383, + "TargetID": 12384, + "Directional": true + }, + { + "SourceID": 12385, + "TargetID": 12386, + "Directional": true + }, + { + "SourceID": 12387, + "TargetID": 12388, + "Directional": true + }, + { + "SourceID": 12572, + "TargetID": 12390, + "Directional": true + }, + { + "SourceID": 30744, + "TargetID": 53081, + "Directional": true + }, + { + "SourceID": 52391, + "TargetID": 12371, + "Directional": true + }, + { + "SourceID": 120594, + "TargetID": 120595, + "Directional": true + } + ] + }, + { + "ID": 6028, + "SourceStructureID": 324, + "TargetStructureID": 20311, + "Label": "324-20311 via Ribbon Synapse from 30740 -> 100601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30740, + "TargetID": 100601, + "Directional": true + } + ] + }, + { + "ID": 6029, + "SourceStructureID": 324, + "TargetStructureID": 32581, + "Label": "324-32581 via Ribbon Synapse from 32596 -> 32594", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32596, + "TargetID": 32594, + "Directional": true + } + ] + }, + { + "ID": 6030, + "SourceStructureID": 324, + "TargetStructureID": 34494, + "Label": "324-34494 via Ribbon Synapse from 35173 -> 35172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35173, + "TargetID": 35172, + "Directional": true + } + ] + }, + { + "ID": 6031, + "SourceStructureID": 324, + "TargetStructureID": 38632, + "Label": "324-38632 via Ribbon Synapse from 30724 -> 38661, 30726 -> 38660, 30728 -> 38663, 30731 -> 38658, 30733 -> 38653, 30734 -> 38650, 30735 -> 38648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30724, + "TargetID": 38661, + "Directional": true + }, + { + "SourceID": 30726, + "TargetID": 38660, + "Directional": true + }, + { + "SourceID": 30728, + "TargetID": 38663, + "Directional": true + }, + { + "SourceID": 30731, + "TargetID": 38658, + "Directional": true + }, + { + "SourceID": 30733, + "TargetID": 38653, + "Directional": true + }, + { + "SourceID": 30734, + "TargetID": 38650, + "Directional": true + }, + { + "SourceID": 30735, + "TargetID": 38648, + "Directional": true + } + ] + }, + { + "ID": 6032, + "SourceStructureID": 324, + "TargetStructureID": 50982, + "Label": "324-50982 via Ribbon Synapse from 52383 -> 52384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52383, + "TargetID": 52384, + "Directional": true + } + ] + }, + { + "ID": 6033, + "SourceStructureID": 324, + "TargetStructureID": 55403, + "Label": "324-55403 via Ribbon Synapse from 43562 -> 55452, 53271 -> 55406, 55416 -> 55417, 55434 -> 55433", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43562, + "TargetID": 55452, + "Directional": true + }, + { + "SourceID": 53271, + "TargetID": 55406, + "Directional": true + }, + { + "SourceID": 55416, + "TargetID": 55417, + "Directional": true + }, + { + "SourceID": 55434, + "TargetID": 55433, + "Directional": true + } + ] + }, + { + "ID": 6034, + "SourceStructureID": 324, + "TargetStructureID": 55517, + "Label": "324-55517 via Ribbon Synapse from 53261 -> 55525, 53301 -> 55520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53261, + "TargetID": 55525, + "Directional": true + }, + { + "SourceID": 53301, + "TargetID": 55520, + "Directional": true + } + ] + }, + { + "ID": 6035, + "SourceStructureID": 324, + "TargetStructureID": 71882, + "Label": "324-71882 via Ribbon Synapse from 90354 -> 90345", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90354, + "TargetID": 90345, + "Directional": true + } + ] + }, + { + "ID": 6036, + "SourceStructureID": 324, + "TargetStructureID": 83385, + "Label": "324-83385 via Ribbon Synapse from 83398 -> 83438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83398, + "TargetID": 83438, + "Directional": true + } + ] + }, + { + "ID": 6037, + "SourceStructureID": 324, + "TargetStructureID": 83409, + "Label": "324-83409 via Ribbon Synapse from 83405 -> 83442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83405, + "TargetID": 83442, + "Directional": true + } + ] + }, + { + "ID": 6038, + "SourceStructureID": 324, + "TargetStructureID": 83421, + "Label": "324-83421 via BC Conventional Synapse from 83447 -> 83446", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83447, + "TargetID": 83446, + "Directional": true + } + ] + }, + { + "ID": 6039, + "SourceStructureID": 324, + "TargetStructureID": 83425, + "Label": "324-83425 via Ribbon Synapse from 83424 -> 83426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83424, + "TargetID": 83426, + "Directional": true + } + ] + }, + { + "ID": 6040, + "SourceStructureID": 324, + "TargetStructureID": 83430, + "Label": "324-83430 via Ribbon Synapse from 83597 -> 83598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83597, + "TargetID": 83598, + "Directional": true + } + ] + }, + { + "ID": 6041, + "SourceStructureID": 324, + "TargetStructureID": 83439, + "Label": "324-83439 via Ribbon Synapse from 83402 -> 83440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83402, + "TargetID": 83440, + "Directional": true + } + ] + }, + { + "ID": 6042, + "SourceStructureID": 324, + "TargetStructureID": 83482, + "Label": "324-83482 via Ribbon Synapse from 83481 -> 83485", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83481, + "TargetID": 83485, + "Directional": true + } + ] + }, + { + "ID": 6043, + "SourceStructureID": 324, + "TargetStructureID": 83487, + "Label": "324-83487 via Ribbon Synapse from 83481 -> 96962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83481, + "TargetID": 96962, + "Directional": true + } + ] + }, + { + "ID": 6044, + "SourceStructureID": 324, + "TargetStructureID": 83535, + "Label": "324-83535 via Ribbon Synapse from 83384 -> 83536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83384, + "TargetID": 83536, + "Directional": true + } + ] + }, + { + "ID": 6045, + "SourceStructureID": 324, + "TargetStructureID": 83540, + "Label": "324-83540 via Ribbon Synapse from 83539 -> 83543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83539, + "TargetID": 83543, + "Directional": true + } + ] + }, + { + "ID": 6046, + "SourceStructureID": 324, + "TargetStructureID": 83541, + "Label": "324-83541 via Ribbon Synapse from 83539 -> 83542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83539, + "TargetID": 83542, + "Directional": true + } + ] + }, + { + "ID": 6047, + "SourceStructureID": 324, + "TargetStructureID": 83545, + "Label": "324-83545 via Ribbon Synapse from 83544 -> 96551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83544, + "TargetID": 96551, + "Directional": true + } + ] + }, + { + "ID": 6048, + "SourceStructureID": 324, + "TargetStructureID": 83550, + "Label": "324-83550 via Ribbon Synapse from 83544 -> 83551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83544, + "TargetID": 83551, + "Directional": true + } + ] + }, + { + "ID": 6049, + "SourceStructureID": 324, + "TargetStructureID": 83552, + "Label": "324-83552 via Ribbon Synapse from 83544 -> 83553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83544, + "TargetID": 83553, + "Directional": true + } + ] + }, + { + "ID": 6050, + "SourceStructureID": 324, + "TargetStructureID": 83554, + "Label": "324-83554 via Ribbon Synapse from 83544 -> 83555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83544, + "TargetID": 83555, + "Directional": true + } + ] + }, + { + "ID": 6051, + "SourceStructureID": 324, + "TargetStructureID": 83590, + "Label": "324-83590 via Ribbon Synapse from 83568 -> 83593", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83568, + "TargetID": 83593, + "Directional": true + } + ] + }, + { + "ID": 6052, + "SourceStructureID": 324, + "TargetStructureID": 83591, + "Label": "324-83591 via Ribbon Synapse from 83568 -> 83592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83568, + "TargetID": 83592, + "Directional": true + } + ] + }, + { + "ID": 6053, + "SourceStructureID": 324, + "TargetStructureID": 93779, + "Label": "324-93779 via BC Conventional Synapse from 122108 -> 122107", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122108, + "TargetID": 122107, + "Directional": true + } + ] + }, + { + "ID": 6054, + "SourceStructureID": 325, + "TargetStructureID": 6153, + "Label": "325-6153 via Ribbon Synapse from 8173 -> 10739", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8173, + "TargetID": 10739, + "Directional": true + } + ] + }, + { + "ID": 6055, + "SourceStructureID": 325, + "TargetStructureID": 29198, + "Label": "325-29198 via Ribbon Synapse from 29205 -> 29203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29205, + "TargetID": 29203, + "Directional": true + } + ] + }, + { + "ID": 6056, + "SourceStructureID": 325, + "TargetStructureID": 30379, + "Label": "325-30379 via Ribbon Synapse from 29204 -> 30380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29204, + "TargetID": 30380, + "Directional": true + } + ] + }, + { + "ID": 6057, + "SourceStructureID": 327, + "TargetStructureID": 5107, + "Label": "327-5107 via Ribbon Synapse from 23037 -> 23036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23037, + "TargetID": 23036, + "Directional": true + } + ] + }, + { + "ID": 6058, + "SourceStructureID": 327, + "TargetStructureID": 5481, + "Label": "327-5481 via Ribbon Synapse from 14283 -> 90179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14283, + "TargetID": 90179, + "Directional": true + } + ] + }, + { + "ID": 6059, + "SourceStructureID": 327, + "TargetStructureID": 7568, + "Label": "327-7568 via Ribbon Synapse from 27138 -> 27119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27138, + "TargetID": 27119, + "Directional": true + } + ] + }, + { + "ID": 6060, + "SourceStructureID": 327, + "TargetStructureID": 8575, + "Label": "327-8575 via BC Conventional Synapse from 14238 -> 55281", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14238, + "TargetID": 55281, + "Directional": true + } + ] + }, + { + "ID": 6061, + "SourceStructureID": 327, + "TargetStructureID": 9769, + "Label": "327-9769 via Ribbon Synapse from 12394 -> 12393, 31685 -> 31686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12394, + "TargetID": 12393, + "Directional": true + }, + { + "SourceID": 31685, + "TargetID": 31686, + "Directional": true + } + ] + }, + { + "ID": 6062, + "SourceStructureID": 327, + "TargetStructureID": 12564, + "Label": "327-12564 via Ribbon Synapse from 55629 -> 55628", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55629, + "TargetID": 55628, + "Directional": true + } + ] + }, + { + "ID": 6063, + "SourceStructureID": 327, + "TargetStructureID": 32566, + "Label": "327-32566 via BC Conventional Synapse from 14308 -> 32568", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14308, + "TargetID": 32568, + "Directional": true + } + ] + }, + { + "ID": 6064, + "SourceStructureID": 327, + "TargetStructureID": 34055, + "Label": "327-34055 via Ribbon Synapse from 122146 -> 34060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122146, + "TargetID": 34060, + "Directional": true + } + ] + }, + { + "ID": 6065, + "SourceStructureID": 327, + "TargetStructureID": 55201, + "Label": "327-55201 via Ribbon Synapse from 14283 -> 55207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14283, + "TargetID": 55207, + "Directional": true + } + ] + }, + { + "ID": 6066, + "SourceStructureID": 328, + "TargetStructureID": 284, + "Label": "328-284 via Ribbon Synapse from 29522 -> 29521, 31678 -> 12054", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29522, + "TargetID": 29521, + "Directional": true + }, + { + "SourceID": 31678, + "TargetID": 12054, + "Directional": true + } + ] + }, + { + "ID": 6067, + "SourceStructureID": 328, + "TargetStructureID": 6153, + "Label": "328-6153 via Ribbon Synapse from 33512 -> 37292, 33514 -> 37291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33512, + "TargetID": 37292, + "Directional": true + }, + { + "SourceID": 33514, + "TargetID": 37291, + "Directional": true + } + ] + }, + { + "ID": 6068, + "SourceStructureID": 328, + "TargetStructureID": 7157, + "Label": "328-7157 via Ribbon Synapse from 29517 -> 29516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29517, + "TargetID": 29516, + "Directional": true + } + ] + }, + { + "ID": 6069, + "SourceStructureID": 328, + "TargetStructureID": 30370, + "Label": "328-30370 via Ribbon Synapse from 30365 -> 30374, 30367 -> 30375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30365, + "TargetID": 30374, + "Directional": true + }, + { + "SourceID": 30367, + "TargetID": 30375, + "Directional": true + } + ] + }, + { + "ID": 6070, + "SourceStructureID": 330, + "TargetStructureID": 606, + "Label": "330-606 via Ribbon Synapse from 12351 -> 12349, 25934 -> 49178, 25939 -> 52927, 25944 -> 52976, 25945 -> 52988, 25950 -> 53043, 25952 -> 53038, 25977 -> 49153, 26103 -> 52789, 26118 -> 49025, 26124 -> 9798, 26131 -> 52711, 26164 -> 53143, 26181 -> 52601, 52614 -> 52613, 52649 -> 52648, 52760 -> 52761, 52809 -> 52810, 53053 -> 53052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12351, + "TargetID": 12349, + "Directional": true + }, + { + "SourceID": 25934, + "TargetID": 49178, + "Directional": true + }, + { + "SourceID": 25939, + "TargetID": 52927, + "Directional": true + }, + { + "SourceID": 25944, + "TargetID": 52976, + "Directional": true + }, + { + "SourceID": 25945, + "TargetID": 52988, + "Directional": true + }, + { + "SourceID": 25950, + "TargetID": 53043, + "Directional": true + }, + { + "SourceID": 25952, + "TargetID": 53038, + "Directional": true + }, + { + "SourceID": 25977, + "TargetID": 49153, + "Directional": true + }, + { + "SourceID": 26103, + "TargetID": 52789, + "Directional": true + }, + { + "SourceID": 26118, + "TargetID": 49025, + "Directional": true + }, + { + "SourceID": 26124, + "TargetID": 9798, + "Directional": true + }, + { + "SourceID": 26131, + "TargetID": 52711, + "Directional": true + }, + { + "SourceID": 26164, + "TargetID": 53143, + "Directional": true + }, + { + "SourceID": 26181, + "TargetID": 52601, + "Directional": true + }, + { + "SourceID": 52614, + "TargetID": 52613, + "Directional": true + }, + { + "SourceID": 52649, + "TargetID": 52648, + "Directional": true + }, + { + "SourceID": 52760, + "TargetID": 52761, + "Directional": true + }, + { + "SourceID": 52809, + "TargetID": 52810, + "Directional": true + }, + { + "SourceID": 53053, + "TargetID": 53052, + "Directional": true + } + ] + }, + { + "ID": 6071, + "SourceStructureID": 330, + "TargetStructureID": 9769, + "Label": "330-9769 via Ribbon Synapse from 25945 -> 53027, 54637 -> 55283, 122143 -> 122145, 122144 -> 122145", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25945, + "TargetID": 53027, + "Directional": true + }, + { + "SourceID": 54637, + "TargetID": 55283, + "Directional": true + }, + { + "SourceID": 122143, + "TargetID": 122145, + "Directional": true + }, + { + "SourceID": 122144, + "TargetID": 122145, + "Directional": true + } + ] + }, + { + "ID": 6072, + "SourceStructureID": 330, + "TargetStructureID": 12408, + "Label": "330-12408 via Ribbon Synapse from 12426 -> 12420, 52809 -> 52811, 54637 -> 55282", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12426, + "TargetID": 12420, + "Directional": true + }, + { + "SourceID": 52809, + "TargetID": 52811, + "Directional": true + }, + { + "SourceID": 54637, + "TargetID": 55282, + "Directional": true + } + ] + }, + { + "ID": 6073, + "SourceStructureID": 330, + "TargetStructureID": 31679, + "Label": "330-31679 via Ribbon Synapse from 25951 -> 31682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25951, + "TargetID": 31682, + "Directional": true + } + ] + }, + { + "ID": 6074, + "SourceStructureID": 330, + "TargetStructureID": 34055, + "Label": "330-34055 via Ribbon Synapse from 25773 -> 34069, 26174 -> 34285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25773, + "TargetID": 34069, + "Directional": true + }, + { + "SourceID": 26174, + "TargetID": 34285, + "Directional": true + } + ] + }, + { + "ID": 6075, + "SourceStructureID": 330, + "TargetStructureID": 34270, + "Label": "330-34270 via Ribbon Synapse from 26154 -> 34278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26154, + "TargetID": 34278, + "Directional": true + } + ] + }, + { + "ID": 6076, + "SourceStructureID": 330, + "TargetStructureID": 38632, + "Label": "330-38632 via Ribbon Synapse from 26087 -> 38679, 26147 -> 38671, 26156 -> 38670, 26163 -> 38666, 38691 -> 38689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26087, + "TargetID": 38679, + "Directional": true + }, + { + "SourceID": 26147, + "TargetID": 38671, + "Directional": true + }, + { + "SourceID": 26156, + "TargetID": 38670, + "Directional": true + }, + { + "SourceID": 26163, + "TargetID": 38666, + "Directional": true + }, + { + "SourceID": 38691, + "TargetID": 38689, + "Directional": true + } + ] + }, + { + "ID": 6077, + "SourceStructureID": 330, + "TargetStructureID": 38703, + "Label": "330-38703 via Ribbon Synapse from 25767 -> 38706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25767, + "TargetID": 38706, + "Directional": true + } + ] + }, + { + "ID": 6078, + "SourceStructureID": 330, + "TargetStructureID": 89989, + "Label": "330-89989 via Ribbon Synapse from 26131 -> 89991", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26131, + "TargetID": 89991, + "Directional": true + } + ] + }, + { + "ID": 6079, + "SourceStructureID": 330, + "TargetStructureID": 119008, + "Label": "330-119008 via Ribbon Synapse from 119005 -> 119012", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119005, + "TargetID": 119012, + "Directional": true + } + ] + }, + { + "ID": 6080, + "SourceStructureID": 330, + "TargetStructureID": 147696, + "Label": "330-147696 via Ribbon Synapse from 147748 -> 147747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147748, + "TargetID": 147747, + "Directional": true + } + ] + }, + { + "ID": 6081, + "SourceStructureID": 332, + "TargetStructureID": 4890, + "Label": "332-4890 via Ribbon Synapse from 96582 -> 96583", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96582, + "TargetID": 96583, + "Directional": true + } + ] + }, + { + "ID": 6082, + "SourceStructureID": 332, + "TargetStructureID": 5117, + "Label": "332-5117 via Ribbon Synapse from 82147 -> 135205, 135204 -> 135203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82147, + "TargetID": 135205, + "Directional": true + }, + { + "SourceID": 135204, + "TargetID": 135203, + "Directional": true + } + ] + }, + { + "ID": 6083, + "SourceStructureID": 332, + "TargetStructureID": 5410, + "Label": "332-5410 via BC Conventional Synapse from 96531 -> 96532", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96531, + "TargetID": 96532, + "Directional": true + } + ] + }, + { + "ID": 6084, + "SourceStructureID": 332, + "TargetStructureID": 5439, + "Label": "332-5439 via BC Conventional Synapse from 85689 -> 85687", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85689, + "TargetID": 85687, + "Directional": true + } + ] + }, + { + "ID": 6085, + "SourceStructureID": 332, + "TargetStructureID": 18282, + "Label": "332-18282 via Ribbon Synapse from 25217 -> 38863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25217, + "TargetID": 38863, + "Directional": true + } + ] + }, + { + "ID": 6086, + "SourceStructureID": 332, + "TargetStructureID": 31804, + "Label": "332-31804 via BC Conventional Synapse from 31812 -> 31811", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31812, + "TargetID": 31811, + "Directional": true + } + ] + }, + { + "ID": 6087, + "SourceStructureID": 332, + "TargetStructureID": 33161, + "Label": "332-33161 via Ribbon Synapse from 33184 -> 33179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33184, + "TargetID": 33179, + "Directional": true + } + ] + }, + { + "ID": 6088, + "SourceStructureID": 332, + "TargetStructureID": 34259, + "Label": "332-34259 via Ribbon Synapse from 127761 -> 127760", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127761, + "TargetID": 127760, + "Directional": true + } + ] + }, + { + "ID": 6089, + "SourceStructureID": 332, + "TargetStructureID": 35103, + "Label": "332-35103 via Ribbon Synapse from 25219 -> 35109", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25219, + "TargetID": 35109, + "Directional": true + } + ] + }, + { + "ID": 6090, + "SourceStructureID": 332, + "TargetStructureID": 35167, + "Label": "332-35167 via Ribbon Synapse from 35171 -> 35168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35171, + "TargetID": 35168, + "Directional": true + } + ] + }, + { + "ID": 6091, + "SourceStructureID": 332, + "TargetStructureID": 38727, + "Label": "332-38727 via Ribbon Synapse from 38734 -> 38733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38734, + "TargetID": 38733, + "Directional": true + } + ] + }, + { + "ID": 6092, + "SourceStructureID": 332, + "TargetStructureID": 41474, + "Label": "332-41474 via BC Conventional Synapse from 55944 -> 55943", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55944, + "TargetID": 55943, + "Directional": true + } + ] + }, + { + "ID": 6093, + "SourceStructureID": 332, + "TargetStructureID": 95013, + "Label": "332-95013 via BC Conventional Synapse from 95014 -> 95015", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95014, + "TargetID": 95015, + "Directional": true + } + ] + }, + { + "ID": 6094, + "SourceStructureID": 332, + "TargetStructureID": 96487, + "Label": "332-96487 via BC Conventional Synapse from 97255 -> 97254", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97255, + "TargetID": 97254, + "Directional": true + } + ] + }, + { + "ID": 6095, + "SourceStructureID": 332, + "TargetStructureID": 96499, + "Label": "332-96499 via Ribbon Synapse from 96475 -> 96500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96475, + "TargetID": 96500, + "Directional": true + } + ] + }, + { + "ID": 6096, + "SourceStructureID": 332, + "TargetStructureID": 96503, + "Label": "332-96503 via Ribbon Synapse from 96475 -> 96504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96475, + "TargetID": 96504, + "Directional": true + } + ] + }, + { + "ID": 6097, + "SourceStructureID": 332, + "TargetStructureID": 96516, + "Label": "332-96516 via Ribbon Synapse from 94873 -> 96521, 94876 -> 96520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94873, + "TargetID": 96521, + "Directional": true + }, + { + "SourceID": 94876, + "TargetID": 96520, + "Directional": true + } + ] + }, + { + "ID": 6098, + "SourceStructureID": 332, + "TargetStructureID": 96522, + "Label": "332-96522 via Ribbon Synapse from 94873 -> 96525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94873, + "TargetID": 96525, + "Directional": true + } + ] + }, + { + "ID": 6099, + "SourceStructureID": 332, + "TargetStructureID": 96547, + "Label": "332-96547 via BC Conventional Synapse from 97398 -> 96548", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97398, + "TargetID": 96548, + "Directional": true + } + ] + }, + { + "ID": 6100, + "SourceStructureID": 332, + "TargetStructureID": 96547, + "Label": "332-96547 via Ribbon Synapse from 95045 -> 96548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95045, + "TargetID": 96548, + "Directional": true + } + ] + }, + { + "ID": 6101, + "SourceStructureID": 332, + "TargetStructureID": 96550, + "Label": "332-96550 via Ribbon Synapse from 96549 -> 96552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96549, + "TargetID": 96552, + "Directional": true + } + ] + }, + { + "ID": 6102, + "SourceStructureID": 332, + "TargetStructureID": 96554, + "Label": "332-96554 via Ribbon Synapse from 95044 -> 96557", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95044, + "TargetID": 96557, + "Directional": true + } + ] + }, + { + "ID": 6103, + "SourceStructureID": 332, + "TargetStructureID": 96555, + "Label": "332-96555 via Ribbon Synapse from 95044 -> 96556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95044, + "TargetID": 96556, + "Directional": true + } + ] + }, + { + "ID": 6104, + "SourceStructureID": 332, + "TargetStructureID": 96568, + "Label": "332-96568 via BC Conventional Synapse from 96567 -> 96569", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96567, + "TargetID": 96569, + "Directional": true + } + ] + }, + { + "ID": 6105, + "SourceStructureID": 334, + "TargetStructureID": 7157, + "Label": "334-7157 via Ribbon Synapse from 26196 -> 26197, 26207 -> 26208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26196, + "TargetID": 26197, + "Directional": true + }, + { + "SourceID": 26207, + "TargetID": 26208, + "Directional": true + } + ] + }, + { + "ID": 6106, + "SourceStructureID": 334, + "TargetStructureID": 7468, + "Label": "334-7468 via Ribbon Synapse from 31757 -> 31755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31757, + "TargetID": 31755, + "Directional": true + } + ] + }, + { + "ID": 6107, + "SourceStructureID": 334, + "TargetStructureID": 32681, + "Label": "334-32681 via Ribbon Synapse from 64571 -> 64577", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64571, + "TargetID": 64577, + "Directional": true + } + ] + }, + { + "ID": 6108, + "SourceStructureID": 335, + "TargetStructureID": 606, + "Label": "335-606 via BC Conventional Synapse from 52683 -> 52681", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52683, + "TargetID": 52681, + "Directional": true + } + ] + }, + { + "ID": 6109, + "SourceStructureID": 335, + "TargetStructureID": 606, + "Label": "335-606 via Ribbon Synapse from 10063 -> 9795, 49129 -> 49130, 49151 -> 49150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10063, + "TargetID": 9795, + "Directional": true + }, + { + "SourceID": 49129, + "TargetID": 49130, + "Directional": true + }, + { + "SourceID": 49151, + "TargetID": 49150, + "Directional": true + } + ] + }, + { + "ID": 6110, + "SourceStructureID": 335, + "TargetStructureID": 9769, + "Label": "335-9769 via Ribbon Synapse from 12407 -> 12404, 30085 -> 30086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12407, + "TargetID": 12404, + "Directional": true + }, + { + "SourceID": 30085, + "TargetID": 30086, + "Directional": true + } + ] + }, + { + "ID": 6111, + "SourceStructureID": 335, + "TargetStructureID": 31694, + "Label": "335-31694 via Ribbon Synapse from 34134 -> 34131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34134, + "TargetID": 34131, + "Directional": true + } + ] + }, + { + "ID": 6112, + "SourceStructureID": 335, + "TargetStructureID": 38703, + "Label": "335-38703 via Ribbon Synapse from 38708 -> 38707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38708, + "TargetID": 38707, + "Directional": true + } + ] + }, + { + "ID": 6113, + "SourceStructureID": 335, + "TargetStructureID": 55304, + "Label": "335-55304 via Ribbon Synapse from 12407 -> 55306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12407, + "TargetID": 55306, + "Directional": true + } + ] + }, + { + "ID": 6114, + "SourceStructureID": 335, + "TargetStructureID": 70924, + "Label": "335-70924 via Ribbon Synapse from 13635 -> 70960", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13635, + "TargetID": 70960, + "Directional": true + } + ] + }, + { + "ID": 6115, + "SourceStructureID": 335, + "TargetStructureID": 70987, + "Label": "335-70987 via Ribbon Synapse from 34132 -> 71027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34132, + "TargetID": 71027, + "Directional": true + } + ] + }, + { + "ID": 6116, + "SourceStructureID": 335, + "TargetStructureID": 89851, + "Label": "335-89851 via Ribbon Synapse from 33444 -> 89865, 33445 -> 89903, 89884 -> 89896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33444, + "TargetID": 89865, + "Directional": true + }, + { + "SourceID": 33445, + "TargetID": 89903, + "Directional": true + }, + { + "SourceID": 89884, + "TargetID": 89896, + "Directional": true + } + ] + }, + { + "ID": 6117, + "SourceStructureID": 335, + "TargetStructureID": 89898, + "Label": "335-89898 via Ribbon Synapse from 33445 -> 89901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33445, + "TargetID": 89901, + "Directional": true + } + ] + }, + { + "ID": 6118, + "SourceStructureID": 335, + "TargetStructureID": 90475, + "Label": "335-90475 via Ribbon Synapse from 13641 -> 90509", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13641, + "TargetID": 90509, + "Directional": true + } + ] + }, + { + "ID": 6119, + "SourceStructureID": 341, + "TargetStructureID": 30015, + "Label": "341-30015 via Conventional from 29996 -> 30050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29996, + "TargetID": 30050, + "Directional": true + } + ] + }, + { + "ID": 6120, + "SourceStructureID": 342, + "TargetStructureID": 7468, + "Label": "342-7468 via Ribbon Synapse from 31705 -> 121297, 31738 -> 31737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31705, + "TargetID": 121297, + "Directional": true + }, + { + "SourceID": 31738, + "TargetID": 31737, + "Directional": true + } + ] + }, + { + "ID": 6121, + "SourceStructureID": 342, + "TargetStructureID": 31700, + "Label": "342-31700 via Ribbon Synapse from 31705 -> 31704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31705, + "TargetID": 31704, + "Directional": true + } + ] + }, + { + "ID": 6122, + "SourceStructureID": 342, + "TargetStructureID": 135219, + "Label": "342-135219 via Ribbon Synapse from 135224 -> 135223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135224, + "TargetID": 135223, + "Directional": true + } + ] + }, + { + "ID": 6123, + "SourceStructureID": 344, + "TargetStructureID": 278, + "Label": "344-278 via Ribbon Synapse from 31735 -> 31727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31735, + "TargetID": 31727, + "Directional": true + } + ] + }, + { + "ID": 6124, + "SourceStructureID": 344, + "TargetStructureID": 31702, + "Label": "344-31702 via Ribbon Synapse from 31723 -> 31718, 45612 -> 45611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31723, + "TargetID": 31718, + "Directional": true + }, + { + "SourceID": 45612, + "TargetID": 45611, + "Directional": true + } + ] + }, + { + "ID": 6125, + "SourceStructureID": 344, + "TargetStructureID": 35513, + "Label": "344-35513 via Ribbon Synapse from 35519 -> 35518", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35519, + "TargetID": 35518, + "Directional": true + } + ] + }, + { + "ID": 6126, + "SourceStructureID": 344, + "TargetStructureID": 61709, + "Label": "344-61709 via Ribbon Synapse from 65746 -> 65745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65746, + "TargetID": 65745, + "Directional": true + } + ] + }, + { + "ID": 6127, + "SourceStructureID": 352, + "TargetStructureID": 273, + "Label": "352-273 via Conventional from 31655 -> 31646, 31659 -> 31662, 31660 -> 31661", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31655, + "TargetID": 31646, + "Directional": true + }, + { + "SourceID": 31659, + "TargetID": 31662, + "Directional": true + }, + { + "SourceID": 31660, + "TargetID": 31661, + "Directional": true + } + ] + }, + { + "ID": 6128, + "SourceStructureID": 352, + "TargetStructureID": 350, + "Label": "352-350 via Conventional from 20662 -> 18708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20662, + "TargetID": 18708, + "Directional": true + } + ] + }, + { + "ID": 6129, + "SourceStructureID": 352, + "TargetStructureID": 7157, + "Label": "352-7157 via Conventional from 31656 -> 31657", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31656, + "TargetID": 31657, + "Directional": true + } + ] + }, + { + "ID": 6130, + "SourceStructureID": 353, + "TargetStructureID": 21779, + "Label": "353-21779 via Ribbon Synapse from 25230 -> 32134, 25231 -> 32134, 25232 -> 32134, 25233 -> 32134, 25236 -> 32134, 25237 -> 32134, 25238 -> 32134, 25242 -> 32134, 25245 -> 32134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25230, + "TargetID": 32134, + "Directional": true + }, + { + "SourceID": 25231, + "TargetID": 32134, + "Directional": true + }, + { + "SourceID": 25232, + "TargetID": 32134, + "Directional": true + }, + { + "SourceID": 25233, + "TargetID": 32134, + "Directional": true + }, + { + "SourceID": 25236, + "TargetID": 32134, + "Directional": true + }, + { + "SourceID": 25237, + "TargetID": 32134, + "Directional": true + }, + { + "SourceID": 25238, + "TargetID": 32134, + "Directional": true + }, + { + "SourceID": 25242, + "TargetID": 32134, + "Directional": true + }, + { + "SourceID": 25245, + "TargetID": 32134, + "Directional": true + } + ] + }, + { + "ID": 6131, + "SourceStructureID": 353, + "TargetStructureID": 22210, + "Label": "353-22210 via Ribbon Synapse from 6688 -> 32038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6688, + "TargetID": 32038, + "Directional": true + } + ] + }, + { + "ID": 6132, + "SourceStructureID": 354, + "TargetStructureID": 13525, + "Label": "354-13525 via Ribbon Synapse from 133789 -> 130872", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133789, + "TargetID": 130872, + "Directional": true + } + ] + }, + { + "ID": 6133, + "SourceStructureID": 359, + "TargetStructureID": 115, + "Label": "359-115 via Ribbon Synapse from 21461 -> 8124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21461, + "TargetID": 8124, + "Directional": true + } + ] + }, + { + "ID": 6134, + "SourceStructureID": 359, + "TargetStructureID": 5413, + "Label": "359-5413 via Ribbon Synapse from 21431 -> 30451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21431, + "TargetID": 30451, + "Directional": true + } + ] + }, + { + "ID": 6135, + "SourceStructureID": 359, + "TargetStructureID": 7157, + "Label": "359-7157 via Ribbon Synapse from 21426 -> 21449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21426, + "TargetID": 21449, + "Directional": true + } + ] + }, + { + "ID": 6136, + "SourceStructureID": 359, + "TargetStructureID": 7859, + "Label": "359-7859 via Ribbon Synapse from 21432 -> 84816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21432, + "TargetID": 84816, + "Directional": true + } + ] + }, + { + "ID": 6137, + "SourceStructureID": 360, + "TargetStructureID": 4835, + "Label": "360-4835 via Ribbon Synapse from 26575 -> 87850, 26577 -> 26578", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26575, + "TargetID": 87850, + "Directional": true + }, + { + "SourceID": 26577, + "TargetID": 26578, + "Directional": true + } + ] + }, + { + "ID": 6138, + "SourceStructureID": 360, + "TargetStructureID": 5457, + "Label": "360-5457 via Ribbon Synapse from 26575 -> 87849, 26577 -> 87845", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26575, + "TargetID": 87849, + "Directional": true + }, + { + "SourceID": 26577, + "TargetID": 87845, + "Directional": true + } + ] + }, + { + "ID": 6139, + "SourceStructureID": 360, + "TargetStructureID": 7157, + "Label": "360-7157 via Ribbon Synapse from 26215 -> 26216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26215, + "TargetID": 26216, + "Directional": true + } + ] + }, + { + "ID": 6140, + "SourceStructureID": 360, + "TargetStructureID": 7468, + "Label": "360-7468 via Ribbon Synapse from 26599 -> 31749, 26600 -> 31747, 26601 -> 31748", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26599, + "TargetID": 31749, + "Directional": true + }, + { + "SourceID": 26600, + "TargetID": 31747, + "Directional": true + }, + { + "SourceID": 26601, + "TargetID": 31748, + "Directional": true + } + ] + }, + { + "ID": 6141, + "SourceStructureID": 364, + "TargetStructureID": 5435, + "Label": "364-5435 via Ribbon Synapse from 12861 -> 41739, 32024 -> 32021, 32027 -> 32028, 32032 -> 32031, 120612 -> 41740, 120614 -> 41745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12861, + "TargetID": 41739, + "Directional": true + }, + { + "SourceID": 32024, + "TargetID": 32021, + "Directional": true + }, + { + "SourceID": 32027, + "TargetID": 32028, + "Directional": true + }, + { + "SourceID": 32032, + "TargetID": 32031, + "Directional": true + }, + { + "SourceID": 120612, + "TargetID": 41740, + "Directional": true + }, + { + "SourceID": 120614, + "TargetID": 41745, + "Directional": true + } + ] + }, + { + "ID": 6142, + "SourceStructureID": 364, + "TargetStructureID": 7568, + "Label": "364-7568 via Ribbon Synapse from 90551 -> 27083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90551, + "TargetID": 27083, + "Directional": true + } + ] + }, + { + "ID": 6143, + "SourceStructureID": 364, + "TargetStructureID": 20299, + "Label": "364-20299 via Ribbon Synapse from 130193 -> 130192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130193, + "TargetID": 130192, + "Directional": true + } + ] + }, + { + "ID": 6144, + "SourceStructureID": 364, + "TargetStructureID": 34055, + "Label": "364-34055 via Ribbon Synapse from 12885 -> 34072", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12885, + "TargetID": 34072, + "Directional": true + } + ] + }, + { + "ID": 6145, + "SourceStructureID": 364, + "TargetStructureID": 35283, + "Label": "364-35283 via BC Conventional Synapse from 12876 -> 35287", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12876, + "TargetID": 35287, + "Directional": true + } + ] + }, + { + "ID": 6146, + "SourceStructureID": 364, + "TargetStructureID": 38605, + "Label": "364-38605 via Ribbon Synapse from 14101 -> 98744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14101, + "TargetID": 98744, + "Directional": true + } + ] + }, + { + "ID": 6147, + "SourceStructureID": 364, + "TargetStructureID": 38632, + "Label": "364-38632 via Ribbon Synapse from 38675 -> 38673, 38682 -> 38680, 38683 -> 38680", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38675, + "TargetID": 38673, + "Directional": true + }, + { + "SourceID": 38682, + "TargetID": 38680, + "Directional": true + }, + { + "SourceID": 38683, + "TargetID": 38680, + "Directional": true + } + ] + }, + { + "ID": 6148, + "SourceStructureID": 364, + "TargetStructureID": 71882, + "Label": "364-71882 via Ribbon Synapse from 12798 -> 90355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12798, + "TargetID": 90355, + "Directional": true + } + ] + }, + { + "ID": 6149, + "SourceStructureID": 364, + "TargetStructureID": 90334, + "Label": "364-90334 via Ribbon Synapse from 12818 -> 90340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12818, + "TargetID": 90340, + "Directional": true + } + ] + }, + { + "ID": 6150, + "SourceStructureID": 365, + "TargetStructureID": 6153, + "Label": "365-6153 via Ribbon Synapse from 29504 -> 29503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29504, + "TargetID": 29503, + "Directional": true + } + ] + }, + { + "ID": 6151, + "SourceStructureID": 365, + "TargetStructureID": 9260, + "Label": "365-9260 via Ribbon Synapse from 33601 -> 33602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33601, + "TargetID": 33602, + "Directional": true + } + ] + }, + { + "ID": 6152, + "SourceStructureID": 366, + "TargetStructureID": 606, + "Label": "366-606 via Ribbon Synapse from 13645 -> 49154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13645, + "TargetID": 49154, + "Directional": true + } + ] + }, + { + "ID": 6153, + "SourceStructureID": 366, + "TargetStructureID": 5481, + "Label": "366-5481 via Ribbon Synapse from 14045 -> 90205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14045, + "TargetID": 90205, + "Directional": true + } + ] + }, + { + "ID": 6154, + "SourceStructureID": 366, + "TargetStructureID": 12564, + "Label": "366-12564 via Ribbon Synapse from 14056 -> 53240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14056, + "TargetID": 53240, + "Directional": true + } + ] + }, + { + "ID": 6155, + "SourceStructureID": 366, + "TargetStructureID": 31804, + "Label": "366-31804 via Ribbon Synapse from 31810 -> 31809", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31810, + "TargetID": 31809, + "Directional": true + } + ] + }, + { + "ID": 6156, + "SourceStructureID": 366, + "TargetStructureID": 32608, + "Label": "366-32608 via Ribbon Synapse from 13940 -> 32614", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13940, + "TargetID": 32614, + "Directional": true + } + ] + }, + { + "ID": 6157, + "SourceStructureID": 366, + "TargetStructureID": 38605, + "Label": "366-38605 via Ribbon Synapse from 38610 -> 38611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38610, + "TargetID": 38611, + "Directional": true + } + ] + }, + { + "ID": 6158, + "SourceStructureID": 366, + "TargetStructureID": 71882, + "Label": "366-71882 via Ribbon Synapse from 13559 -> 90322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13559, + "TargetID": 90322, + "Directional": true + } + ] + }, + { + "ID": 6159, + "SourceStructureID": 369, + "TargetStructureID": 284, + "Label": "369-284 via Ribbon Synapse from 29565 -> 29548, 29567 -> 29566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29565, + "TargetID": 29548, + "Directional": true + }, + { + "SourceID": 29567, + "TargetID": 29566, + "Directional": true + } + ] + }, + { + "ID": 6160, + "SourceStructureID": 369, + "TargetStructureID": 4850, + "Label": "369-4850 via Ribbon Synapse from 29555 -> 83683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29555, + "TargetID": 83683, + "Directional": true + } + ] + }, + { + "ID": 6161, + "SourceStructureID": 369, + "TargetStructureID": 6153, + "Label": "369-6153 via Ribbon Synapse from 29559 -> 29560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29559, + "TargetID": 29560, + "Directional": true + } + ] + }, + { + "ID": 6162, + "SourceStructureID": 369, + "TargetStructureID": 7157, + "Label": "369-7157 via Ribbon Synapse from 29555 -> 29556, 29558 -> 29557, 29559 -> 26518, 29561 -> 18180, 29562 -> 18180, 29563 -> 45664", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29555, + "TargetID": 29556, + "Directional": true + }, + { + "SourceID": 29558, + "TargetID": 29557, + "Directional": true + }, + { + "SourceID": 29559, + "TargetID": 26518, + "Directional": true + }, + { + "SourceID": 29561, + "TargetID": 18180, + "Directional": true + }, + { + "SourceID": 29562, + "TargetID": 18180, + "Directional": true + }, + { + "SourceID": 29563, + "TargetID": 45664, + "Directional": true + } + ] + }, + { + "ID": 6163, + "SourceStructureID": 372, + "TargetStructureID": 412, + "Label": "372-412 via BC Conventional Synapse from 122387 -> 122386", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122387, + "TargetID": 122386, + "Directional": true + } + ] + }, + { + "ID": 6164, + "SourceStructureID": 372, + "TargetStructureID": 606, + "Label": "372-606 via Ribbon Synapse from 50897 -> 50898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50897, + "TargetID": 50898, + "Directional": true + } + ] + }, + { + "ID": 6165, + "SourceStructureID": 372, + "TargetStructureID": 34509, + "Label": "372-34509 via Ribbon Synapse from 122340 -> 45638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122340, + "TargetID": 45638, + "Directional": true + } + ] + }, + { + "ID": 6166, + "SourceStructureID": 372, + "TargetStructureID": 38632, + "Label": "372-38632 via Ribbon Synapse from 30993 -> 38644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30993, + "TargetID": 38644, + "Directional": true + } + ] + }, + { + "ID": 6167, + "SourceStructureID": 372, + "TargetStructureID": 59499, + "Label": "372-59499 via BC Conventional Synapse from 122358 -> 122357", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122358, + "TargetID": 122357, + "Directional": true + } + ] + }, + { + "ID": 6168, + "SourceStructureID": 372, + "TargetStructureID": 59499, + "Label": "372-59499 via Ribbon Synapse from 122336 -> 90553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122336, + "TargetID": 90553, + "Directional": true + } + ] + }, + { + "ID": 6169, + "SourceStructureID": 372, + "TargetStructureID": 71531, + "Label": "372-71531 via Ribbon Synapse from 71480 -> 71534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71480, + "TargetID": 71534, + "Directional": true + } + ] + }, + { + "ID": 6170, + "SourceStructureID": 372, + "TargetStructureID": 71535, + "Label": "372-71535 via Ribbon Synapse from 71480 -> 71536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71480, + "TargetID": 71536, + "Directional": true + } + ] + }, + { + "ID": 6171, + "SourceStructureID": 372, + "TargetStructureID": 71550, + "Label": "372-71550 via Ribbon Synapse from 71554 -> 71553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71554, + "TargetID": 71553, + "Directional": true + } + ] + }, + { + "ID": 6172, + "SourceStructureID": 372, + "TargetStructureID": 71560, + "Label": "372-71560 via BC Conventional Synapse from 71561 -> 71562", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71561, + "TargetID": 71562, + "Directional": true + } + ] + }, + { + "ID": 6173, + "SourceStructureID": 372, + "TargetStructureID": 71566, + "Label": "372-71566 via Ribbon Synapse from 71564 -> 71567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71564, + "TargetID": 71567, + "Directional": true + } + ] + }, + { + "ID": 6174, + "SourceStructureID": 372, + "TargetStructureID": 71865, + "Label": "372-71865 via Ribbon Synapse from 62670 -> 71866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62670, + "TargetID": 71866, + "Directional": true + } + ] + }, + { + "ID": 6175, + "SourceStructureID": 372, + "TargetStructureID": 71867, + "Label": "372-71867 via Ribbon Synapse from 62670 -> 71868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62670, + "TargetID": 71868, + "Directional": true + } + ] + }, + { + "ID": 6176, + "SourceStructureID": 372, + "TargetStructureID": 71877, + "Label": "372-71877 via Ribbon Synapse from 71564 -> 71878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71564, + "TargetID": 71878, + "Directional": true + } + ] + }, + { + "ID": 6177, + "SourceStructureID": 372, + "TargetStructureID": 108196, + "Label": "372-108196 via Ribbon Synapse from 30790 -> 122360", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30790, + "TargetID": 122360, + "Directional": true + } + ] + }, + { + "ID": 6178, + "SourceStructureID": 373, + "TargetStructureID": 9769, + "Label": "373-9769 via Conventional from 55228 -> 12392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55228, + "TargetID": 12392, + "Directional": true + } + ] + }, + { + "ID": 6179, + "SourceStructureID": 375, + "TargetStructureID": 479, + "Label": "375-479 via Conventional from 21839 -> 12366", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21839, + "TargetID": 12366, + "Directional": true + } + ] + }, + { + "ID": 6180, + "SourceStructureID": 375, + "TargetStructureID": 24401, + "Label": "375-24401 via Conventional from 21841 -> 48253", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21841, + "TargetID": 48253, + "Directional": true + } + ] + }, + { + "ID": 6181, + "SourceStructureID": 380, + "TargetStructureID": 223, + "Label": "380-223 via Ribbon Synapse from 17671 -> 17670, 19132 -> 19135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17671, + "TargetID": 17670, + "Directional": true + }, + { + "SourceID": 19132, + "TargetID": 19135, + "Directional": true + } + ] + }, + { + "ID": 6182, + "SourceStructureID": 380, + "TargetStructureID": 304, + "Label": "380-304 via Ribbon Synapse from 18279 -> 18278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18279, + "TargetID": 18278, + "Directional": true + } + ] + }, + { + "ID": 6183, + "SourceStructureID": 380, + "TargetStructureID": 410, + "Label": "380-410 via Ribbon Synapse from 9526 -> 9525, 17677 -> 17676, 17681 -> 17680, 17878 -> 17877, 17880 -> 17879, 17882 -> 17881, 18368 -> 18367, 18370 -> 18369, 18372 -> 18371, 18514 -> 18536, 18540 -> 18539, 20944 -> 20945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9526, + "TargetID": 9525, + "Directional": true + }, + { + "SourceID": 17677, + "TargetID": 17676, + "Directional": true + }, + { + "SourceID": 17681, + "TargetID": 17680, + "Directional": true + }, + { + "SourceID": 17878, + "TargetID": 17877, + "Directional": true + }, + { + "SourceID": 17880, + "TargetID": 17879, + "Directional": true + }, + { + "SourceID": 17882, + "TargetID": 17881, + "Directional": true + }, + { + "SourceID": 18368, + "TargetID": 18367, + "Directional": true + }, + { + "SourceID": 18370, + "TargetID": 18369, + "Directional": true + }, + { + "SourceID": 18372, + "TargetID": 18371, + "Directional": true + }, + { + "SourceID": 18514, + "TargetID": 18536, + "Directional": true + }, + { + "SourceID": 18540, + "TargetID": 18539, + "Directional": true + }, + { + "SourceID": 20944, + "TargetID": 20945, + "Directional": true + } + ] + }, + { + "ID": 6184, + "SourceStructureID": 380, + "TargetStructureID": 17527, + "Label": "380-17527 via Ribbon Synapse from 17742 -> 38616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17742, + "TargetID": 38616, + "Directional": true + } + ] + }, + { + "ID": 6185, + "SourceStructureID": 382, + "TargetStructureID": 2610, + "Label": "382-2610 via Ribbon Synapse from 71305 -> 71304, 71307 -> 71306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71305, + "TargetID": 71304, + "Directional": true + }, + { + "SourceID": 71307, + "TargetID": 71306, + "Directional": true + } + ] + }, + { + "ID": 6186, + "SourceStructureID": 389, + "TargetStructureID": 19203, + "Label": "389-19203 via Conventional from 62118 -> 62115", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62118, + "TargetID": 62115, + "Directional": true + } + ] + }, + { + "ID": 6187, + "SourceStructureID": 390, + "TargetStructureID": 6857, + "Label": "390-6857 via Conventional from 65101 -> 65230, 65122 -> 7472, 65124 -> 65125, 65227 -> 133424", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65101, + "TargetID": 65230, + "Directional": true + }, + { + "SourceID": 65122, + "TargetID": 7472, + "Directional": true + }, + { + "SourceID": 65124, + "TargetID": 65125, + "Directional": true + }, + { + "SourceID": 65227, + "TargetID": 133424, + "Directional": true + } + ] + }, + { + "ID": 6188, + "SourceStructureID": 390, + "TargetStructureID": 31024, + "Label": "390-31024 via Conventional from 65126 -> 65127", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65126, + "TargetID": 65127, + "Directional": true + } + ] + }, + { + "ID": 6189, + "SourceStructureID": 390, + "TargetStructureID": 65211, + "Label": "390-65211 via Conventional from 65208 -> 65212", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65208, + "TargetID": 65212, + "Directional": true + } + ] + }, + { + "ID": 6190, + "SourceStructureID": 390, + "TargetStructureID": 65218, + "Label": "390-65218 via Conventional from 65217 -> 65219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65217, + "TargetID": 65219, + "Directional": true + } + ] + }, + { + "ID": 6191, + "SourceStructureID": 391, + "TargetStructureID": 10826, + "Label": "391-10826 via Conventional from 108561 -> 108562, 108563 -> 108565, 108688 -> 108689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108561, + "TargetID": 108562, + "Directional": true + }, + { + "SourceID": 108563, + "TargetID": 108565, + "Directional": true + }, + { + "SourceID": 108688, + "TargetID": 108689, + "Directional": true + } + ] + }, + { + "ID": 6192, + "SourceStructureID": 391, + "TargetStructureID": 10897, + "Label": "391-10897 via Conventional from 108369 -> 108370, 108389 -> 108390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108369, + "TargetID": 108370, + "Directional": true + }, + { + "SourceID": 108389, + "TargetID": 108390, + "Directional": true + } + ] + }, + { + "ID": 6193, + "SourceStructureID": 391, + "TargetStructureID": 11401, + "Label": "391-11401 via Conventional from 108197 -> 108211, 108205 -> 108216, 108210 -> 108217, 108315 -> 108316, 108318 -> 108319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108197, + "TargetID": 108211, + "Directional": true + }, + { + "SourceID": 108205, + "TargetID": 108216, + "Directional": true + }, + { + "SourceID": 108210, + "TargetID": 108217, + "Directional": true + }, + { + "SourceID": 108315, + "TargetID": 108316, + "Directional": true + }, + { + "SourceID": 108318, + "TargetID": 108319, + "Directional": true + } + ] + }, + { + "ID": 6194, + "SourceStructureID": 397, + "TargetStructureID": 399, + "Label": "397-399 via BC Conventional Synapse from 122659 -> 122658", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122659, + "TargetID": 122658, + "Directional": true + } + ] + }, + { + "ID": 6195, + "SourceStructureID": 397, + "TargetStructureID": 399, + "Label": "397-399 via Ribbon Synapse from 46894 -> 46890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46894, + "TargetID": 46890, + "Directional": true + } + ] + }, + { + "ID": 6196, + "SourceStructureID": 397, + "TargetStructureID": 598, + "Label": "397-598 via Ribbon Synapse from 38788 -> 38786", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38788, + "TargetID": 38786, + "Directional": true + } + ] + }, + { + "ID": 6197, + "SourceStructureID": 397, + "TargetStructureID": 45358, + "Label": "397-45358 via Ribbon Synapse from 46884 -> 45361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46884, + "TargetID": 45361, + "Directional": true + } + ] + }, + { + "ID": 6198, + "SourceStructureID": 397, + "TargetStructureID": 55330, + "Label": "397-55330 via Ribbon Synapse from 55334 -> 55332", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55334, + "TargetID": 55332, + "Directional": true + } + ] + }, + { + "ID": 6199, + "SourceStructureID": 397, + "TargetStructureID": 63628, + "Label": "397-63628 via Ribbon Synapse from 68725 -> 63825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68725, + "TargetID": 63825, + "Directional": true + } + ] + }, + { + "ID": 6200, + "SourceStructureID": 397, + "TargetStructureID": 71043, + "Label": "397-71043 via Ribbon Synapse from 71052 -> 71048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71052, + "TargetID": 71048, + "Directional": true + } + ] + }, + { + "ID": 6201, + "SourceStructureID": 398, + "TargetStructureID": 22358, + "Label": "398-22358 via Ribbon Synapse from 37567 -> 37568, 37569 -> 37568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37567, + "TargetID": 37568, + "Directional": true + }, + { + "SourceID": 37569, + "TargetID": 37568, + "Directional": true + } + ] + }, + { + "ID": 6202, + "SourceStructureID": 399, + "TargetStructureID": 400, + "Label": "399-400 via Conventional from 46896 -> 46900, 46897 -> 46898, 46906 -> 28483, 46907 -> 46908", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46896, + "TargetID": 46900, + "Directional": true + }, + { + "SourceID": 46897, + "TargetID": 46898, + "Directional": true + }, + { + "SourceID": 46906, + "TargetID": 28483, + "Directional": true + }, + { + "SourceID": 46907, + "TargetID": 46908, + "Directional": true + } + ] + }, + { + "ID": 6203, + "SourceStructureID": 400, + "TargetStructureID": 5117, + "Label": "400-5117 via Ribbon Synapse from 18767 -> 18736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18767, + "TargetID": 18736, + "Directional": true + } + ] + }, + { + "ID": 6204, + "SourceStructureID": 400, + "TargetStructureID": 5118, + "Label": "400-5118 via Ribbon Synapse from 18769 -> 18772, 18770 -> 18772, 18771 -> 18772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18769, + "TargetID": 18772, + "Directional": true + }, + { + "SourceID": 18770, + "TargetID": 18772, + "Directional": true + }, + { + "SourceID": 18771, + "TargetID": 18772, + "Directional": true + } + ] + }, + { + "ID": 6205, + "SourceStructureID": 400, + "TargetStructureID": 8033, + "Label": "400-8033 via BC Conventional Synapse from 61256 -> 61255", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61256, + "TargetID": 61255, + "Directional": true + } + ] + }, + { + "ID": 6206, + "SourceStructureID": 400, + "TargetStructureID": 8033, + "Label": "400-8033 via Ribbon Synapse from 61248 -> 61246, 61249 -> 61246, 61250 -> 61246, 61251 -> 61252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61248, + "TargetID": 61246, + "Directional": true + }, + { + "SourceID": 61249, + "TargetID": 61246, + "Directional": true + }, + { + "SourceID": 61250, + "TargetID": 61246, + "Directional": true + }, + { + "SourceID": 61251, + "TargetID": 61252, + "Directional": true + } + ] + }, + { + "ID": 6207, + "SourceStructureID": 400, + "TargetStructureID": 13855, + "Label": "400-13855 via Ribbon Synapse from 70922 -> 70921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70922, + "TargetID": 70921, + "Directional": true + } + ] + }, + { + "ID": 6208, + "SourceStructureID": 400, + "TargetStructureID": 15394, + "Label": "400-15394 via Ribbon Synapse from 18779 -> 18780, 159475 -> 159476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18779, + "TargetID": 18780, + "Directional": true + }, + { + "SourceID": 159475, + "TargetID": 159476, + "Directional": true + } + ] + }, + { + "ID": 6209, + "SourceStructureID": 400, + "TargetStructureID": 37288, + "Label": "400-37288 via Ribbon Synapse from 1938 -> 37380, 28488 -> 37377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1938, + "TargetID": 37380, + "Directional": true + }, + { + "SourceID": 28488, + "TargetID": 37377, + "Directional": true + } + ] + }, + { + "ID": 6210, + "SourceStructureID": 400, + "TargetStructureID": 61270, + "Label": "400-61270 via Ribbon Synapse from 61269 -> 61271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61269, + "TargetID": 61271, + "Directional": true + } + ] + }, + { + "ID": 6211, + "SourceStructureID": 407, + "TargetStructureID": 382, + "Label": "407-382 via Conventional from 41969 -> 41968", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41969, + "TargetID": 41968, + "Directional": true + } + ] + }, + { + "ID": 6212, + "SourceStructureID": 408, + "TargetStructureID": 405, + "Label": "408-405 via BC Conventional Synapse from 122381 -> 122380, 122385 -> 122384", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122381, + "TargetID": 122380, + "Directional": true + }, + { + "SourceID": 122385, + "TargetID": 122384, + "Directional": true + } + ] + }, + { + "ID": 6213, + "SourceStructureID": 408, + "TargetStructureID": 405, + "Label": "408-405 via Ribbon Synapse from 122382 -> 122383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122382, + "TargetID": 122383, + "Directional": true + } + ] + }, + { + "ID": 6214, + "SourceStructureID": 408, + "TargetStructureID": 598, + "Label": "408-598 via Ribbon Synapse from 38804 -> 38803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38804, + "TargetID": 38803, + "Directional": true + } + ] + }, + { + "ID": 6215, + "SourceStructureID": 408, + "TargetStructureID": 25879, + "Label": "408-25879 via Ribbon Synapse from 25885 -> 25886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25885, + "TargetID": 25886, + "Directional": true + } + ] + }, + { + "ID": 6216, + "SourceStructureID": 408, + "TargetStructureID": 33127, + "Label": "408-33127 via Ribbon Synapse from 33132 -> 33130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33132, + "TargetID": 33130, + "Directional": true + } + ] + }, + { + "ID": 6217, + "SourceStructureID": 408, + "TargetStructureID": 35775, + "Label": "408-35775 via Ribbon Synapse from 35769 -> 35776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35769, + "TargetID": 35776, + "Directional": true + } + ] + }, + { + "ID": 6218, + "SourceStructureID": 408, + "TargetStructureID": 35887, + "Label": "408-35887 via Ribbon Synapse from 35799 -> 35889", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35799, + "TargetID": 35889, + "Directional": true + } + ] + }, + { + "ID": 6219, + "SourceStructureID": 408, + "TargetStructureID": 35894, + "Label": "408-35894 via Ribbon Synapse from 35900 -> 35901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35900, + "TargetID": 35901, + "Directional": true + } + ] + }, + { + "ID": 6220, + "SourceStructureID": 408, + "TargetStructureID": 35966, + "Label": "408-35966 via Ribbon Synapse from 29273 -> 35967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29273, + "TargetID": 35967, + "Directional": true + } + ] + }, + { + "ID": 6221, + "SourceStructureID": 408, + "TargetStructureID": 47013, + "Label": "408-47013 via Ribbon Synapse from 29274 -> 47014, 53023 -> 47018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29274, + "TargetID": 47014, + "Directional": true + }, + { + "SourceID": 53023, + "TargetID": 47018, + "Directional": true + } + ] + }, + { + "ID": 6222, + "SourceStructureID": 408, + "TargetStructureID": 61587, + "Label": "408-61587 via Ribbon Synapse from 52909 -> 61592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52909, + "TargetID": 61592, + "Directional": true + } + ] + }, + { + "ID": 6223, + "SourceStructureID": 410, + "TargetStructureID": 478, + "Label": "410-478 via Conventional from 21348 -> 21349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21348, + "TargetID": 21349, + "Directional": true + } + ] + }, + { + "ID": 6224, + "SourceStructureID": 410, + "TargetStructureID": 35046, + "Label": "410-35046 via Conventional from 20948 -> 62000, 21353 -> 61994, 21354 -> 61995, 21370 -> 61997", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20948, + "TargetID": 62000, + "Directional": true + }, + { + "SourceID": 21353, + "TargetID": 61994, + "Directional": true + }, + { + "SourceID": 21354, + "TargetID": 61995, + "Directional": true + }, + { + "SourceID": 21370, + "TargetID": 61997, + "Directional": true + } + ] + }, + { + "ID": 6225, + "SourceStructureID": 410, + "TargetStructureID": 70820, + "Label": "410-70820 via Conventional from 70828 -> 70827", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70828, + "TargetID": 70827, + "Directional": true + } + ] + }, + { + "ID": 6226, + "SourceStructureID": 412, + "TargetStructureID": 308, + "Label": "412-308 via Cistern Pre from 37592 -> 107260", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 37592, + "TargetID": 107260, + "Directional": true + } + ] + }, + { + "ID": 6227, + "SourceStructureID": 412, + "TargetStructureID": 419, + "Label": "412-419 via Conventional from 49093 -> 37809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 49093, + "TargetID": 37809, + "Directional": true + } + ] + }, + { + "ID": 6228, + "SourceStructureID": 415, + "TargetStructureID": 12208, + "Label": "415-12208 via Conventional from 22464 -> 22463", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22464, + "TargetID": 22463, + "Directional": true + } + ] + }, + { + "ID": 6229, + "SourceStructureID": 419, + "TargetStructureID": 179, + "Label": "419-179 via Ribbon Synapse from 132544 -> 133586", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132544, + "TargetID": 133586, + "Directional": true + } + ] + }, + { + "ID": 6230, + "SourceStructureID": 419, + "TargetStructureID": 318, + "Label": "419-318 via Ribbon Synapse from 10187 -> 133605, 14600 -> 14601, 20372 -> 20373, 20382 -> 20384, 29317 -> 29316, 29318 -> 29316, 34959 -> 133694, 132070 -> 14601, 132236 -> 14601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10187, + "TargetID": 133605, + "Directional": true + }, + { + "SourceID": 14600, + "TargetID": 14601, + "Directional": true + }, + { + "SourceID": 20372, + "TargetID": 20373, + "Directional": true + }, + { + "SourceID": 20382, + "TargetID": 20384, + "Directional": true + }, + { + "SourceID": 29317, + "TargetID": 29316, + "Directional": true + }, + { + "SourceID": 29318, + "TargetID": 29316, + "Directional": true + }, + { + "SourceID": 34959, + "TargetID": 133694, + "Directional": true + }, + { + "SourceID": 132070, + "TargetID": 14601, + "Directional": true + }, + { + "SourceID": 132236, + "TargetID": 14601, + "Directional": true + } + ] + }, + { + "ID": 6231, + "SourceStructureID": 419, + "TargetStructureID": 476, + "Label": "419-476 via Ribbon Synapse from 6553 -> 10073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6553, + "TargetID": 10073, + "Directional": true + } + ] + }, + { + "ID": 6232, + "SourceStructureID": 419, + "TargetStructureID": 591, + "Label": "419-591 via Ribbon Synapse from 6553 -> 6554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6553, + "TargetID": 6554, + "Directional": true + } + ] + }, + { + "ID": 6233, + "SourceStructureID": 419, + "TargetStructureID": 4890, + "Label": "419-4890 via BC Conventional Synapse from 133698 -> 133699", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133698, + "TargetID": 133699, + "Directional": true + } + ] + }, + { + "ID": 6234, + "SourceStructureID": 419, + "TargetStructureID": 4890, + "Label": "419-4890 via Ribbon Synapse from 10130 -> 133637, 19989 -> 19988, 19993 -> 19992, 19996 -> 19997, 34837 -> 64863, 35022 -> 133660, 131766 -> 131767, 132319 -> 133622", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10130, + "TargetID": 133637, + "Directional": true + }, + { + "SourceID": 19989, + "TargetID": 19988, + "Directional": true + }, + { + "SourceID": 19993, + "TargetID": 19992, + "Directional": true + }, + { + "SourceID": 19996, + "TargetID": 19997, + "Directional": true + }, + { + "SourceID": 34837, + "TargetID": 64863, + "Directional": true + }, + { + "SourceID": 35022, + "TargetID": 133660, + "Directional": true + }, + { + "SourceID": 131766, + "TargetID": 131767, + "Directional": true + }, + { + "SourceID": 132319, + "TargetID": 133622, + "Directional": true + } + ] + }, + { + "ID": 6235, + "SourceStructureID": 419, + "TargetStructureID": 5118, + "Label": "419-5118 via Ribbon Synapse from 132333 -> 133624, 133618 -> 133673", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132333, + "TargetID": 133624, + "Directional": true + }, + { + "SourceID": 133618, + "TargetID": 133673, + "Directional": true + } + ] + }, + { + "ID": 6236, + "SourceStructureID": 419, + "TargetStructureID": 5350, + "Label": "419-5350 via Ribbon Synapse from 132537 -> 132538, 133695 -> 133696", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132537, + "TargetID": 132538, + "Directional": true + }, + { + "SourceID": 133695, + "TargetID": 133696, + "Directional": true + } + ] + }, + { + "ID": 6237, + "SourceStructureID": 419, + "TargetStructureID": 8579, + "Label": "419-8579 via Ribbon Synapse from 62667 -> 62666, 131770 -> 133571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62667, + "TargetID": 62666, + "Directional": true + }, + { + "SourceID": 131770, + "TargetID": 133571, + "Directional": true + } + ] + }, + { + "ID": 6238, + "SourceStructureID": 419, + "TargetStructureID": 9226, + "Label": "419-9226 via Ribbon Synapse from 19989 -> 132599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19989, + "TargetID": 132599, + "Directional": true + } + ] + }, + { + "ID": 6239, + "SourceStructureID": 419, + "TargetStructureID": 13855, + "Label": "419-13855 via Ribbon Synapse from 14597 -> 14598, 14895 -> 14896, 14900 -> 14899, 34954 -> 133635, 34970 -> 133655, 132401 -> 133630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14597, + "TargetID": 14598, + "Directional": true + }, + { + "SourceID": 14895, + "TargetID": 14896, + "Directional": true + }, + { + "SourceID": 14900, + "TargetID": 14899, + "Directional": true + }, + { + "SourceID": 34954, + "TargetID": 133635, + "Directional": true + }, + { + "SourceID": 34970, + "TargetID": 133655, + "Directional": true + }, + { + "SourceID": 132401, + "TargetID": 133630, + "Directional": true + } + ] + }, + { + "ID": 6240, + "SourceStructureID": 419, + "TargetStructureID": 18282, + "Label": "419-18282 via Ribbon Synapse from 20336 -> 20335, 20387 -> 20364", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20336, + "TargetID": 20335, + "Directional": true + }, + { + "SourceID": 20387, + "TargetID": 20364, + "Directional": true + } + ] + }, + { + "ID": 6241, + "SourceStructureID": 419, + "TargetStructureID": 18576, + "Label": "419-18576 via BC Conventional Synapse from 133513 -> 133514", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133513, + "TargetID": 133514, + "Directional": true + } + ] + }, + { + "ID": 6242, + "SourceStructureID": 419, + "TargetStructureID": 18576, + "Label": "419-18576 via Ribbon Synapse from 8937 -> 100459, 132529 -> 133585, 132530 -> 133585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8937, + "TargetID": 100459, + "Directional": true + }, + { + "SourceID": 132529, + "TargetID": 133585, + "Directional": true + }, + { + "SourceID": 132530, + "TargetID": 133585, + "Directional": true + } + ] + }, + { + "ID": 6243, + "SourceStructureID": 419, + "TargetStructureID": 22554, + "Label": "419-22554 via Ribbon Synapse from 103898 -> 133610, 133606 -> 133609", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103898, + "TargetID": 133610, + "Directional": true + }, + { + "SourceID": 133606, + "TargetID": 133609, + "Directional": true + } + ] + }, + { + "ID": 6244, + "SourceStructureID": 419, + "TargetStructureID": 25869, + "Label": "419-25869 via Ribbon Synapse from 132544 -> 133587", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132544, + "TargetID": 133587, + "Directional": true + } + ] + }, + { + "ID": 6245, + "SourceStructureID": 419, + "TargetStructureID": 29277, + "Label": "419-29277 via Ribbon Synapse from 29321 -> 29320, 29324 -> 29323, 38451 -> 29310, 65685 -> 29313, 65686 -> 29313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29321, + "TargetID": 29320, + "Directional": true + }, + { + "SourceID": 29324, + "TargetID": 29323, + "Directional": true + }, + { + "SourceID": 38451, + "TargetID": 29310, + "Directional": true + }, + { + "SourceID": 65685, + "TargetID": 29313, + "Directional": true + }, + { + "SourceID": 65686, + "TargetID": 29313, + "Directional": true + } + ] + }, + { + "ID": 6246, + "SourceStructureID": 419, + "TargetStructureID": 34621, + "Label": "419-34621 via Ribbon Synapse from 131470 -> 38454, 131471 -> 38454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131470, + "TargetID": 38454, + "Directional": true + }, + { + "SourceID": 131471, + "TargetID": 38454, + "Directional": true + } + ] + }, + { + "ID": 6247, + "SourceStructureID": 419, + "TargetStructureID": 36234, + "Label": "419-36234 via Ribbon Synapse from 10175 -> 36236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10175, + "TargetID": 36236, + "Directional": true + } + ] + }, + { + "ID": 6248, + "SourceStructureID": 419, + "TargetStructureID": 37286, + "Label": "419-37286 via Ribbon Synapse from 34966 -> 101667, 101670 -> 101669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34966, + "TargetID": 101667, + "Directional": true + }, + { + "SourceID": 101670, + "TargetID": 101669, + "Directional": true + } + ] + }, + { + "ID": 6249, + "SourceStructureID": 419, + "TargetStructureID": 60185, + "Label": "419-60185 via Ribbon Synapse from 60187 -> 60188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60187, + "TargetID": 60188, + "Directional": true + } + ] + }, + { + "ID": 6250, + "SourceStructureID": 419, + "TargetStructureID": 65267, + "Label": "419-65267 via Ribbon Synapse from 132535 -> 69963", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132535, + "TargetID": 69963, + "Directional": true + } + ] + }, + { + "ID": 6251, + "SourceStructureID": 419, + "TargetStructureID": 70518, + "Label": "419-70518 via BC Conventional Synapse from 70520 -> 70519", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70520, + "TargetID": 70519, + "Directional": true + } + ] + }, + { + "ID": 6252, + "SourceStructureID": 419, + "TargetStructureID": 70833, + "Label": "419-70833 via Ribbon Synapse from 34969 -> 70863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34969, + "TargetID": 70863, + "Directional": true + } + ] + }, + { + "ID": 6253, + "SourceStructureID": 419, + "TargetStructureID": 71189, + "Label": "419-71189 via Ribbon Synapse from 19989 -> 71194, 34941 -> 133650, 34951 -> 71191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19989, + "TargetID": 71194, + "Directional": true + }, + { + "SourceID": 34941, + "TargetID": 133650, + "Directional": true + }, + { + "SourceID": 34951, + "TargetID": 71191, + "Directional": true + } + ] + }, + { + "ID": 6254, + "SourceStructureID": 419, + "TargetStructureID": 71882, + "Label": "419-71882 via Ribbon Synapse from 20387 -> 133642, 35002 -> 90317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20387, + "TargetID": 133642, + "Directional": true + }, + { + "SourceID": 35002, + "TargetID": 90317, + "Directional": true + } + ] + }, + { + "ID": 6255, + "SourceStructureID": 419, + "TargetStructureID": 100946, + "Label": "419-100946 via Ribbon Synapse from 10203 -> 100947, 34975 -> 133658, 132584 -> 133658", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10203, + "TargetID": 100947, + "Directional": true + }, + { + "SourceID": 34975, + "TargetID": 133658, + "Directional": true + }, + { + "SourceID": 132584, + "TargetID": 133658, + "Directional": true + } + ] + }, + { + "ID": 6256, + "SourceStructureID": 419, + "TargetStructureID": 102226, + "Label": "419-102226 via Ribbon Synapse from 35005 -> 102229, 35008 -> 133659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35005, + "TargetID": 102229, + "Directional": true + }, + { + "SourceID": 35008, + "TargetID": 133659, + "Directional": true + } + ] + }, + { + "ID": 6257, + "SourceStructureID": 419, + "TargetStructureID": 102286, + "Label": "419-102286 via Ribbon Synapse from 19996 -> 133640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19996, + "TargetID": 133640, + "Directional": true + } + ] + }, + { + "ID": 6258, + "SourceStructureID": 419, + "TargetStructureID": 102524, + "Label": "419-102524 via Ribbon Synapse from 10175 -> 133564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10175, + "TargetID": 133564, + "Directional": true + } + ] + }, + { + "ID": 6259, + "SourceStructureID": 419, + "TargetStructureID": 103508, + "Label": "419-103508 via Ribbon Synapse from 19993 -> 103509", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19993, + "TargetID": 103509, + "Directional": true + } + ] + }, + { + "ID": 6260, + "SourceStructureID": 419, + "TargetStructureID": 103510, + "Label": "419-103510 via BC Conventional Synapse from 103512 -> 103511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103512, + "TargetID": 103511, + "Directional": true + } + ] + }, + { + "ID": 6261, + "SourceStructureID": 419, + "TargetStructureID": 133550, + "Label": "419-133550 via Ribbon Synapse from 20388 -> 133551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20388, + "TargetID": 133551, + "Directional": true + } + ] + }, + { + "ID": 6262, + "SourceStructureID": 419, + "TargetStructureID": 133553, + "Label": "419-133553 via Ribbon Synapse from 34951 -> 133554, 133520 -> 133556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34951, + "TargetID": 133554, + "Directional": true + }, + { + "SourceID": 133520, + "TargetID": 133556, + "Directional": true + } + ] + }, + { + "ID": 6263, + "SourceStructureID": 419, + "TargetStructureID": 133557, + "Label": "419-133557 via Ribbon Synapse from 132558 -> 133558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132558, + "TargetID": 133558, + "Directional": true + } + ] + }, + { + "ID": 6264, + "SourceStructureID": 422, + "TargetStructureID": 284, + "Label": "422-284 via Ribbon Synapse from 17466 -> 17465", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17466, + "TargetID": 17465, + "Directional": true + } + ] + }, + { + "ID": 6265, + "SourceStructureID": 422, + "TargetStructureID": 308, + "Label": "422-308 via Ribbon Synapse from 10210 -> 31870, 10210 -> 43098, 10211 -> 43336, 86635 -> 86636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10210, + "TargetID": 31870, + "Directional": true + }, + { + "SourceID": 10210, + "TargetID": 43098, + "Directional": true + }, + { + "SourceID": 10211, + "TargetID": 43336, + "Directional": true + }, + { + "SourceID": 86635, + "TargetID": 86636, + "Directional": true + } + ] + }, + { + "ID": 6266, + "SourceStructureID": 422, + "TargetStructureID": 476, + "Label": "422-476 via Ribbon Synapse from 5685 -> 5674, 5686 -> 5687, 5696 -> 5675, 10477 -> 10442, 10478 -> 10479, 10481 -> 10444, 10484 -> 10485, 10486 -> 10468, 16550 -> 16551, 18016 -> 10454, 18017 -> 10455, 87886 -> 87887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5685, + "TargetID": 5674, + "Directional": true + }, + { + "SourceID": 5686, + "TargetID": 5687, + "Directional": true + }, + { + "SourceID": 5696, + "TargetID": 5675, + "Directional": true + }, + { + "SourceID": 10477, + "TargetID": 10442, + "Directional": true + }, + { + "SourceID": 10478, + "TargetID": 10479, + "Directional": true + }, + { + "SourceID": 10481, + "TargetID": 10444, + "Directional": true + }, + { + "SourceID": 10484, + "TargetID": 10485, + "Directional": true + }, + { + "SourceID": 10486, + "TargetID": 10468, + "Directional": true + }, + { + "SourceID": 16550, + "TargetID": 16551, + "Directional": true + }, + { + "SourceID": 18016, + "TargetID": 10454, + "Directional": true + }, + { + "SourceID": 18017, + "TargetID": 10455, + "Directional": true + }, + { + "SourceID": 87886, + "TargetID": 87887, + "Directional": true + } + ] + }, + { + "ID": 6267, + "SourceStructureID": 422, + "TargetStructureID": 488, + "Label": "422-488 via Ribbon Synapse from 16603 -> 87800", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16603, + "TargetID": 87800, + "Directional": true + } + ] + }, + { + "ID": 6268, + "SourceStructureID": 422, + "TargetStructureID": 591, + "Label": "422-591 via Ribbon Synapse from 10474 -> 36444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10474, + "TargetID": 36444, + "Directional": true + } + ] + }, + { + "ID": 6269, + "SourceStructureID": 422, + "TargetStructureID": 6153, + "Label": "422-6153 via Ribbon Synapse from 5694 -> 8437, 5695 -> 8438, 8423 -> 8424, 10210 -> 31858, 16603 -> 16605, 16611 -> 16610, 16616 -> 16617, 17477 -> 17478, 17482 -> 17483", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5694, + "TargetID": 8437, + "Directional": true + }, + { + "SourceID": 5695, + "TargetID": 8438, + "Directional": true + }, + { + "SourceID": 8423, + "TargetID": 8424, + "Directional": true + }, + { + "SourceID": 10210, + "TargetID": 31858, + "Directional": true + }, + { + "SourceID": 16603, + "TargetID": 16605, + "Directional": true + }, + { + "SourceID": 16611, + "TargetID": 16610, + "Directional": true + }, + { + "SourceID": 16616, + "TargetID": 16617, + "Directional": true + }, + { + "SourceID": 17477, + "TargetID": 17478, + "Directional": true + }, + { + "SourceID": 17482, + "TargetID": 17483, + "Directional": true + } + ] + }, + { + "ID": 6270, + "SourceStructureID": 422, + "TargetStructureID": 7157, + "Label": "422-7157 via Ribbon Synapse from 18205 -> 18204, 18206 -> 18207, 18210 -> 18209", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18205, + "TargetID": 18204, + "Directional": true + }, + { + "SourceID": 18206, + "TargetID": 18207, + "Directional": true + }, + { + "SourceID": 18210, + "TargetID": 18209, + "Directional": true + } + ] + }, + { + "ID": 6271, + "SourceStructureID": 424, + "TargetStructureID": 906, + "Label": "424-906 via Ribbon Synapse from 19520 -> 15204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19520, + "TargetID": 15204, + "Directional": true + } + ] + }, + { + "ID": 6272, + "SourceStructureID": 424, + "TargetStructureID": 4835, + "Label": "424-4835 via Ribbon Synapse from 62984 -> 62985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62984, + "TargetID": 62985, + "Directional": true + } + ] + }, + { + "ID": 6273, + "SourceStructureID": 424, + "TargetStructureID": 5107, + "Label": "424-5107 via Ribbon Synapse from 19511 -> 64971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19511, + "TargetID": 64971, + "Directional": true + } + ] + }, + { + "ID": 6274, + "SourceStructureID": 424, + "TargetStructureID": 8575, + "Label": "424-8575 via BC Conventional Synapse from 61728 -> 61726", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61728, + "TargetID": 61726, + "Directional": true + } + ] + }, + { + "ID": 6275, + "SourceStructureID": 424, + "TargetStructureID": 8575, + "Label": "424-8575 via Ribbon Synapse from 19546 -> 61581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19546, + "TargetID": 61581, + "Directional": true + } + ] + }, + { + "ID": 6276, + "SourceStructureID": 424, + "TargetStructureID": 56211, + "Label": "424-56211 via Ribbon Synapse from 19531 -> 56223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19531, + "TargetID": 56223, + "Directional": true + } + ] + }, + { + "ID": 6277, + "SourceStructureID": 425, + "TargetStructureID": 5486, + "Label": "425-5486 via Ribbon Synapse from 9441 -> 22099", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9441, + "TargetID": 22099, + "Directional": true + } + ] + }, + { + "ID": 6278, + "SourceStructureID": 425, + "TargetStructureID": 8575, + "Label": "425-8575 via BC Conventional Synapse from 61686 -> 61685, 61714 -> 61713", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61686, + "TargetID": 61685, + "Directional": true + }, + { + "SourceID": 61714, + "TargetID": 61713, + "Directional": true + } + ] + }, + { + "ID": 6279, + "SourceStructureID": 425, + "TargetStructureID": 42387, + "Label": "425-42387 via Ribbon Synapse from 22083 -> 129517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22083, + "TargetID": 129517, + "Directional": true + } + ] + }, + { + "ID": 6280, + "SourceStructureID": 426, + "TargetStructureID": 341, + "Label": "426-341 via Ribbon Synapse from 24511 -> 31834", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24511, + "TargetID": 31834, + "Directional": true + } + ] + }, + { + "ID": 6281, + "SourceStructureID": 426, + "TargetStructureID": 5150, + "Label": "426-5150 via Ribbon Synapse from 46133 -> 46142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46133, + "TargetID": 46142, + "Directional": true + } + ] + }, + { + "ID": 6282, + "SourceStructureID": 426, + "TargetStructureID": 5351, + "Label": "426-5351 via Ribbon Synapse from 24509 -> 24508, 24511 -> 24510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24509, + "TargetID": 24508, + "Directional": true + }, + { + "SourceID": 24511, + "TargetID": 24510, + "Directional": true + } + ] + }, + { + "ID": 6283, + "SourceStructureID": 426, + "TargetStructureID": 46741, + "Label": "426-46741 via Ribbon Synapse from 46137 -> 90213", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46137, + "TargetID": 90213, + "Directional": true + } + ] + }, + { + "ID": 6284, + "SourceStructureID": 428, + "TargetStructureID": 606, + "Label": "428-606 via Ribbon Synapse from 50896 -> 53313, 53215 -> 53216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50896, + "TargetID": 53313, + "Directional": true + }, + { + "SourceID": 53215, + "TargetID": 53216, + "Directional": true + } + ] + }, + { + "ID": 6285, + "SourceStructureID": 428, + "TargetStructureID": 8575, + "Label": "428-8575 via BC Conventional Synapse from 61691 -> 61690", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61691, + "TargetID": 61690, + "Directional": true + } + ] + }, + { + "ID": 6286, + "SourceStructureID": 428, + "TargetStructureID": 8720, + "Label": "428-8720 via Ribbon Synapse from 52688 -> 60254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52688, + "TargetID": 60254, + "Directional": true + } + ] + }, + { + "ID": 6287, + "SourceStructureID": 428, + "TargetStructureID": 12564, + "Label": "428-12564 via Ribbon Synapse from 7163 -> 53238, 52712 -> 55627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7163, + "TargetID": 53238, + "Directional": true + }, + { + "SourceID": 52712, + "TargetID": 55627, + "Directional": true + } + ] + }, + { + "ID": 6288, + "SourceStructureID": 428, + "TargetStructureID": 34263, + "Label": "428-34263 via Ribbon Synapse from 34268 -> 34267", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34268, + "TargetID": 34267, + "Directional": true + } + ] + }, + { + "ID": 6289, + "SourceStructureID": 428, + "TargetStructureID": 34940, + "Label": "428-34940 via Ribbon Synapse from 14084 -> 38523", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14084, + "TargetID": 38523, + "Directional": true + } + ] + }, + { + "ID": 6290, + "SourceStructureID": 428, + "TargetStructureID": 53115, + "Label": "428-53115 via Ribbon Synapse from 14084 -> 53147, 14085 -> 53147", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14084, + "TargetID": 53147, + "Directional": true + }, + { + "SourceID": 14085, + "TargetID": 53147, + "Directional": true + } + ] + }, + { + "ID": 6291, + "SourceStructureID": 428, + "TargetStructureID": 59474, + "Label": "428-59474 via Ribbon Synapse from 7177 -> 59489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7177, + "TargetID": 59489, + "Directional": true + } + ] + }, + { + "ID": 6292, + "SourceStructureID": 428, + "TargetStructureID": 70924, + "Label": "428-70924 via Ribbon Synapse from 7158 -> 70954", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7158, + "TargetID": 70954, + "Directional": true + } + ] + }, + { + "ID": 6293, + "SourceStructureID": 428, + "TargetStructureID": 137122, + "Label": "428-137122 via Ribbon Synapse from 66180 -> 137181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66180, + "TargetID": 137181, + "Directional": true + } + ] + }, + { + "ID": 6294, + "SourceStructureID": 428, + "TargetStructureID": 147696, + "Label": "428-147696 via Ribbon Synapse from 38599 -> 147756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38599, + "TargetID": 147756, + "Directional": true + } + ] + }, + { + "ID": 6295, + "SourceStructureID": 431, + "TargetStructureID": 20299, + "Label": "431-20299 via Ribbon Synapse from 12764 -> 121517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12764, + "TargetID": 121517, + "Directional": true + } + ] + }, + { + "ID": 6296, + "SourceStructureID": 431, + "TargetStructureID": 30015, + "Label": "431-30015 via Ribbon Synapse from 12684 -> 30032", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12684, + "TargetID": 30032, + "Directional": true + } + ] + }, + { + "ID": 6297, + "SourceStructureID": 431, + "TargetStructureID": 31804, + "Label": "431-31804 via Ribbon Synapse from 31815 -> 31814", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31815, + "TargetID": 31814, + "Directional": true + } + ] + }, + { + "ID": 6298, + "SourceStructureID": 431, + "TargetStructureID": 34055, + "Label": "431-34055 via Ribbon Synapse from 12656 -> 34064", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12656, + "TargetID": 34064, + "Directional": true + } + ] + }, + { + "ID": 6299, + "SourceStructureID": 431, + "TargetStructureID": 34302, + "Label": "431-34302 via Ribbon Synapse from 34304 -> 34303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34304, + "TargetID": 34303, + "Directional": true + } + ] + }, + { + "ID": 6300, + "SourceStructureID": 431, + "TargetStructureID": 34868, + "Label": "431-34868 via Ribbon Synapse from 38594 -> 38592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38594, + "TargetID": 38592, + "Directional": true + } + ] + }, + { + "ID": 6301, + "SourceStructureID": 431, + "TargetStructureID": 38949, + "Label": "431-38949 via Ribbon Synapse from 12734 -> 39047", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12734, + "TargetID": 39047, + "Directional": true + } + ] + }, + { + "ID": 6302, + "SourceStructureID": 431, + "TargetStructureID": 60264, + "Label": "431-60264 via Ribbon Synapse from 12684 -> 60267", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12684, + "TargetID": 60267, + "Directional": true + } + ] + }, + { + "ID": 6303, + "SourceStructureID": 431, + "TargetStructureID": 71882, + "Label": "431-71882 via Ribbon Synapse from 12772 -> 90359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12772, + "TargetID": 90359, + "Directional": true + } + ] + }, + { + "ID": 6304, + "SourceStructureID": 431, + "TargetStructureID": 98754, + "Label": "431-98754 via Ribbon Synapse from 119069 -> 98755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119069, + "TargetID": 98755, + "Directional": true + } + ] + }, + { + "ID": 6305, + "SourceStructureID": 431, + "TargetStructureID": 98766, + "Label": "431-98766 via Ribbon Synapse from 119065 -> 98769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119065, + "TargetID": 98769, + "Directional": true + } + ] + }, + { + "ID": 6306, + "SourceStructureID": 431, + "TargetStructureID": 98776, + "Label": "431-98776 via Ribbon Synapse from 119062 -> 98778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119062, + "TargetID": 98778, + "Directional": true + } + ] + }, + { + "ID": 6307, + "SourceStructureID": 431, + "TargetStructureID": 98780, + "Label": "431-98780 via Ribbon Synapse from 119062 -> 98781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119062, + "TargetID": 98781, + "Directional": true + } + ] + }, + { + "ID": 6308, + "SourceStructureID": 431, + "TargetStructureID": 108821, + "Label": "431-108821 via Unknown from 109656 -> 109655", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 109656, + "TargetID": 109655, + "Directional": true + } + ] + }, + { + "ID": 6309, + "SourceStructureID": 431, + "TargetStructureID": 115510, + "Label": "431-115510 via Ribbon Synapse from 115509 -> 115511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115509, + "TargetID": 115511, + "Directional": true + } + ] + }, + { + "ID": 6310, + "SourceStructureID": 432, + "TargetStructureID": 373, + "Label": "432-373 via Ribbon Synapse from 55235 -> 55231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55235, + "TargetID": 55231, + "Directional": true + } + ] + }, + { + "ID": 6311, + "SourceStructureID": 432, + "TargetStructureID": 8575, + "Label": "432-8575 via BC Conventional Synapse from 55238 -> 55237, 55269 -> 55270", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55238, + "TargetID": 55237, + "Directional": true + }, + { + "SourceID": 55269, + "TargetID": 55270, + "Directional": true + } + ] + }, + { + "ID": 6312, + "SourceStructureID": 433, + "TargetStructureID": 7858, + "Label": "433-7858 via Ribbon Synapse from 21486 -> 34519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21486, + "TargetID": 34519, + "Directional": true + } + ] + }, + { + "ID": 6313, + "SourceStructureID": 434, + "TargetStructureID": 7860, + "Label": "434-7860 via Ribbon Synapse from 29661 -> 29660, 29663 -> 29662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29661, + "TargetID": 29660, + "Directional": true + }, + { + "SourceID": 29663, + "TargetID": 29662, + "Directional": true + } + ] + }, + { + "ID": 6314, + "SourceStructureID": 437, + "TargetStructureID": 4835, + "Label": "437-4835 via Ribbon Synapse from 6641 -> 6642, 7064 -> 17614, 17602 -> 17603, 65717 -> 65736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6641, + "TargetID": 6642, + "Directional": true + }, + { + "SourceID": 7064, + "TargetID": 17614, + "Directional": true + }, + { + "SourceID": 17602, + "TargetID": 17603, + "Directional": true + }, + { + "SourceID": 65717, + "TargetID": 65736, + "Directional": true + } + ] + }, + { + "ID": 6315, + "SourceStructureID": 437, + "TargetStructureID": 13525, + "Label": "437-13525 via Ribbon Synapse from 96751 -> 85363, 159032 -> 158517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96751, + "TargetID": 85363, + "Directional": true + }, + { + "SourceID": 159032, + "TargetID": 158517, + "Directional": true + } + ] + }, + { + "ID": 6316, + "SourceStructureID": 437, + "TargetStructureID": 61709, + "Label": "437-61709 via Ribbon Synapse from 65707 -> 65704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65707, + "TargetID": 65704, + "Directional": true + } + ] + }, + { + "ID": 6317, + "SourceStructureID": 437, + "TargetStructureID": 65751, + "Label": "437-65751 via Ribbon Synapse from 17579 -> 65756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17579, + "TargetID": 65756, + "Directional": true + } + ] + }, + { + "ID": 6318, + "SourceStructureID": 440, + "TargetStructureID": 5453, + "Label": "440-5453 via Ribbon Synapse from 24458 -> 62010, 62006 -> 62007, 122528 -> 122529, 122531 -> 122529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24458, + "TargetID": 62010, + "Directional": true + }, + { + "SourceID": 62006, + "TargetID": 62007, + "Directional": true + }, + { + "SourceID": 122528, + "TargetID": 122529, + "Directional": true + }, + { + "SourceID": 122531, + "TargetID": 122529, + "Directional": true + } + ] + }, + { + "ID": 6319, + "SourceStructureID": 440, + "TargetStructureID": 7703, + "Label": "440-7703 via Ribbon Synapse from 18639 -> 18597, 18641 -> 18598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18639, + "TargetID": 18597, + "Directional": true + }, + { + "SourceID": 18641, + "TargetID": 18598, + "Directional": true + } + ] + }, + { + "ID": 6320, + "SourceStructureID": 440, + "TargetStructureID": 8575, + "Label": "440-8575 via BC Conventional Synapse from 62003 -> 61739", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62003, + "TargetID": 61739, + "Directional": true + } + ] + }, + { + "ID": 6321, + "SourceStructureID": 440, + "TargetStructureID": 12563, + "Label": "440-12563 via Ribbon Synapse from 18631 -> 30506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18631, + "TargetID": 30506, + "Directional": true + } + ] + }, + { + "ID": 6322, + "SourceStructureID": 440, + "TargetStructureID": 32581, + "Label": "440-32581 via Ribbon Synapse from 24770 -> 32606", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24770, + "TargetID": 32606, + "Directional": true + } + ] + }, + { + "ID": 6323, + "SourceStructureID": 440, + "TargetStructureID": 33161, + "Label": "440-33161 via Ribbon Synapse from 33193 -> 33192, 33194 -> 33192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33193, + "TargetID": 33192, + "Directional": true + }, + { + "SourceID": 33194, + "TargetID": 33192, + "Directional": true + } + ] + }, + { + "ID": 6324, + "SourceStructureID": 440, + "TargetStructureID": 34311, + "Label": "440-34311 via Ribbon Synapse from 39160 -> 35502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39160, + "TargetID": 35502, + "Directional": true + } + ] + }, + { + "ID": 6325, + "SourceStructureID": 440, + "TargetStructureID": 39998, + "Label": "440-39998 via Ribbon Synapse from 40009 -> 40008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40009, + "TargetID": 40008, + "Directional": true + } + ] + }, + { + "ID": 6326, + "SourceStructureID": 440, + "TargetStructureID": 44346, + "Label": "440-44346 via Ribbon Synapse from 44389 -> 44388, 122875 -> 122876", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44389, + "TargetID": 44388, + "Directional": true + }, + { + "SourceID": 122875, + "TargetID": 122876, + "Directional": true + } + ] + }, + { + "ID": 6327, + "SourceStructureID": 440, + "TargetStructureID": 60272, + "Label": "440-60272 via Ribbon Synapse from 60270 -> 60273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60270, + "TargetID": 60273, + "Directional": true + } + ] + }, + { + "ID": 6328, + "SourceStructureID": 440, + "TargetStructureID": 60283, + "Label": "440-60283 via Ribbon Synapse from 60282 -> 60285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60282, + "TargetID": 60285, + "Directional": true + } + ] + }, + { + "ID": 6329, + "SourceStructureID": 440, + "TargetStructureID": 60288, + "Label": "440-60288 via Ribbon Synapse from 60286 -> 60290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60286, + "TargetID": 60290, + "Directional": true + } + ] + }, + { + "ID": 6330, + "SourceStructureID": 440, + "TargetStructureID": 60292, + "Label": "440-60292 via BC Conventional Synapse from 60291 -> 60293", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60291, + "TargetID": 60293, + "Directional": true + } + ] + }, + { + "ID": 6331, + "SourceStructureID": 440, + "TargetStructureID": 60303, + "Label": "440-60303 via Ribbon Synapse from 60302 -> 60304", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60302, + "TargetID": 60304, + "Directional": true + } + ] + }, + { + "ID": 6332, + "SourceStructureID": 440, + "TargetStructureID": 60309, + "Label": "440-60309 via Ribbon Synapse from 60308 -> 60310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60308, + "TargetID": 60310, + "Directional": true + } + ] + }, + { + "ID": 6333, + "SourceStructureID": 440, + "TargetStructureID": 60311, + "Label": "440-60311 via Ribbon Synapse from 60308 -> 60312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60308, + "TargetID": 60312, + "Directional": true + } + ] + }, + { + "ID": 6334, + "SourceStructureID": 440, + "TargetStructureID": 60315, + "Label": "440-60315 via Ribbon Synapse from 60314 -> 60316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60314, + "TargetID": 60316, + "Directional": true + } + ] + }, + { + "ID": 6335, + "SourceStructureID": 440, + "TargetStructureID": 60317, + "Label": "440-60317 via Ribbon Synapse from 60314 -> 60318", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60314, + "TargetID": 60318, + "Directional": true + } + ] + }, + { + "ID": 6336, + "SourceStructureID": 440, + "TargetStructureID": 60319, + "Label": "440-60319 via Ribbon Synapse from 60314 -> 60320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60314, + "TargetID": 60320, + "Directional": true + } + ] + }, + { + "ID": 6337, + "SourceStructureID": 440, + "TargetStructureID": 60322, + "Label": "440-60322 via BC Conventional Synapse from 60321 -> 60323", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60321, + "TargetID": 60323, + "Directional": true + } + ] + }, + { + "ID": 6338, + "SourceStructureID": 441, + "TargetStructureID": 7861, + "Label": "441-7861 via Ribbon Synapse from 2051 -> 21267, 32630 -> 121012, 121020 -> 121021, 121023 -> 121022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 2051, + "TargetID": 21267, + "Directional": true + }, + { + "SourceID": 32630, + "TargetID": 121012, + "Directional": true + }, + { + "SourceID": 121020, + "TargetID": 121021, + "Directional": true + }, + { + "SourceID": 121023, + "TargetID": 121022, + "Directional": true + } + ] + }, + { + "ID": 6339, + "SourceStructureID": 445, + "TargetStructureID": 7861, + "Label": "445-7861 via Ribbon Synapse from 121031 -> 121029, 121034 -> 121033, 121039 -> 121038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121031, + "TargetID": 121029, + "Directional": true + }, + { + "SourceID": 121034, + "TargetID": 121033, + "Directional": true + }, + { + "SourceID": 121039, + "TargetID": 121038, + "Directional": true + } + ] + }, + { + "ID": 6340, + "SourceStructureID": 446, + "TargetStructureID": 5737, + "Label": "446-5737 via Cistern Pre from 34279 -> 34280", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 34279, + "TargetID": 34280, + "Directional": true + } + ] + }, + { + "ID": 6341, + "SourceStructureID": 446, + "TargetStructureID": 34165, + "Label": "446-34165 via Ribbon Synapse from 2020 -> 34168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 2020, + "TargetID": 34168, + "Directional": true + } + ] + }, + { + "ID": 6342, + "SourceStructureID": 447, + "TargetStructureID": 21779, + "Label": "447-21779 via Ribbon Synapse from 32094 -> 32091, 32095 -> 32091, 32096 -> 32091, 32097 -> 32091, 32100 -> 32091, 32101 -> 32091, 32102 -> 32091, 32103 -> 32091, 32104 -> 32091, 32105 -> 32091, 123231 -> 32091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32094, + "TargetID": 32091, + "Directional": true + }, + { + "SourceID": 32095, + "TargetID": 32091, + "Directional": true + }, + { + "SourceID": 32096, + "TargetID": 32091, + "Directional": true + }, + { + "SourceID": 32097, + "TargetID": 32091, + "Directional": true + }, + { + "SourceID": 32100, + "TargetID": 32091, + "Directional": true + }, + { + "SourceID": 32101, + "TargetID": 32091, + "Directional": true + }, + { + "SourceID": 32102, + "TargetID": 32091, + "Directional": true + }, + { + "SourceID": 32103, + "TargetID": 32091, + "Directional": true + }, + { + "SourceID": 32104, + "TargetID": 32091, + "Directional": true + }, + { + "SourceID": 32105, + "TargetID": 32091, + "Directional": true + }, + { + "SourceID": 123231, + "TargetID": 32091, + "Directional": true + } + ] + }, + { + "ID": 6343, + "SourceStructureID": 447, + "TargetStructureID": 32273, + "Label": "447-32273 via Ribbon Synapse from 32101 -> 32276, 32103 -> 32276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32101, + "TargetID": 32276, + "Directional": true + }, + { + "SourceID": 32103, + "TargetID": 32276, + "Directional": true + } + ] + }, + { + "ID": 6344, + "SourceStructureID": 447, + "TargetStructureID": 34336, + "Label": "447-34336 via Ribbon Synapse from 33852 -> 34341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33852, + "TargetID": 34341, + "Directional": true + } + ] + }, + { + "ID": 6345, + "SourceStructureID": 447, + "TargetStructureID": 34337, + "Label": "447-34337 via Ribbon Synapse from 33852 -> 34338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33852, + "TargetID": 34338, + "Directional": true + } + ] + }, + { + "ID": 6346, + "SourceStructureID": 447, + "TargetStructureID": 123243, + "Label": "447-123243 via Ribbon Synapse from 33855 -> 123245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33855, + "TargetID": 123245, + "Directional": true + } + ] + }, + { + "ID": 6347, + "SourceStructureID": 450, + "TargetStructureID": 606, + "Label": "450-606 via Ribbon Synapse from 5075 -> 5074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5075, + "TargetID": 5074, + "Directional": true + } + ] + }, + { + "ID": 6348, + "SourceStructureID": 450, + "TargetStructureID": 34336, + "Label": "450-34336 via Ribbon Synapse from 122508 -> 122507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122508, + "TargetID": 122507, + "Directional": true + } + ] + }, + { + "ID": 6349, + "SourceStructureID": 453, + "TargetStructureID": 7564, + "Label": "453-7564 via Ribbon Synapse from 45628 -> 29640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45628, + "TargetID": 29640, + "Directional": true + } + ] + }, + { + "ID": 6350, + "SourceStructureID": 455, + "TargetStructureID": 4835, + "Label": "455-4835 via Ribbon Synapse from 20591 -> 31365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20591, + "TargetID": 31365, + "Directional": true + } + ] + }, + { + "ID": 6351, + "SourceStructureID": 455, + "TargetStructureID": 8575, + "Label": "455-8575 via BC Conventional Synapse from 55286 -> 55285", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55286, + "TargetID": 55285, + "Directional": true + } + ] + }, + { + "ID": 6352, + "SourceStructureID": 455, + "TargetStructureID": 42795, + "Label": "455-42795 via Ribbon Synapse from 42809 -> 42806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42809, + "TargetID": 42806, + "Directional": true + } + ] + }, + { + "ID": 6353, + "SourceStructureID": 455, + "TargetStructureID": 64777, + "Label": "455-64777 via Ribbon Synapse from 28775 -> 64802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28775, + "TargetID": 64802, + "Directional": true + } + ] + }, + { + "ID": 6354, + "SourceStructureID": 456, + "TargetStructureID": 108821, + "Label": "456-108821 via Conventional from 109642 -> 109641", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109642, + "TargetID": 109641, + "Directional": true + } + ] + }, + { + "ID": 6355, + "SourceStructureID": 458, + "TargetStructureID": 115, + "Label": "458-115 via Ribbon Synapse from 8155 -> 8154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8155, + "TargetID": 8154, + "Directional": true + } + ] + }, + { + "ID": 6356, + "SourceStructureID": 458, + "TargetStructureID": 7564, + "Label": "458-7564 via Ribbon Synapse from 14470 -> 37285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14470, + "TargetID": 37285, + "Directional": true + } + ] + }, + { + "ID": 6357, + "SourceStructureID": 458, + "TargetStructureID": 7703, + "Label": "458-7703 via Ribbon Synapse from 14471 -> 24794, 14513 -> 14530, 14517 -> 14527, 14524 -> 14525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14471, + "TargetID": 24794, + "Directional": true + }, + { + "SourceID": 14513, + "TargetID": 14530, + "Directional": true + }, + { + "SourceID": 14517, + "TargetID": 14527, + "Directional": true + }, + { + "SourceID": 14524, + "TargetID": 14525, + "Directional": true + } + ] + }, + { + "ID": 6358, + "SourceStructureID": 458, + "TargetStructureID": 8575, + "Label": "458-8575 via BC Conventional Synapse from 55291 -> 55290, 61738 -> 61737", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55291, + "TargetID": 55290, + "Directional": true + }, + { + "SourceID": 61738, + "TargetID": 61737, + "Directional": true + } + ] + }, + { + "ID": 6359, + "SourceStructureID": 458, + "TargetStructureID": 8575, + "Label": "458-8575 via Ribbon Synapse from 14478 -> 55289, 37284 -> 55288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14478, + "TargetID": 55289, + "Directional": true + }, + { + "SourceID": 37284, + "TargetID": 55288, + "Directional": true + } + ] + }, + { + "ID": 6360, + "SourceStructureID": 458, + "TargetStructureID": 11238, + "Label": "458-11238 via Ribbon Synapse from 14504 -> 88582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14504, + "TargetID": 88582, + "Directional": true + } + ] + }, + { + "ID": 6361, + "SourceStructureID": 458, + "TargetStructureID": 98590, + "Label": "458-98590 via Ribbon Synapse from 14461 -> 117180", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14461, + "TargetID": 117180, + "Directional": true + } + ] + }, + { + "ID": 6362, + "SourceStructureID": 458, + "TargetStructureID": 101369, + "Label": "458-101369 via Ribbon Synapse from 101412 -> 101405", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101412, + "TargetID": 101405, + "Directional": true + } + ] + }, + { + "ID": 6363, + "SourceStructureID": 458, + "TargetStructureID": 137024, + "Label": "458-137024 via Ribbon Synapse from 14515 -> 137025", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14515, + "TargetID": 137025, + "Directional": true + } + ] + }, + { + "ID": 6364, + "SourceStructureID": 458, + "TargetStructureID": 137122, + "Label": "458-137122 via BC Conventional Synapse from 137138 -> 137139, 137141 -> 137140", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137138, + "TargetID": 137139, + "Directional": true + }, + { + "SourceID": 137141, + "TargetID": 137140, + "Directional": true + } + ] + }, + { + "ID": 6365, + "SourceStructureID": 460, + "TargetStructureID": 7568, + "Label": "460-7568 via Ribbon Synapse from 14437 -> 27107, 27106 -> 27104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14437, + "TargetID": 27107, + "Directional": true + }, + { + "SourceID": 27106, + "TargetID": 27104, + "Directional": true + } + ] + }, + { + "ID": 6366, + "SourceStructureID": 460, + "TargetStructureID": 9787, + "Label": "460-9787 via Ribbon Synapse from 14443 -> 18032, 14447 -> 18649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14443, + "TargetID": 18032, + "Directional": true + }, + { + "SourceID": 14447, + "TargetID": 18649, + "Directional": true + } + ] + }, + { + "ID": 6367, + "SourceStructureID": 460, + "TargetStructureID": 11238, + "Label": "460-11238 via Ribbon Synapse from 44941 -> 88585, 44947 -> 88583, 88580 -> 88573, 88581 -> 88574", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44941, + "TargetID": 88585, + "Directional": true + }, + { + "SourceID": 44947, + "TargetID": 88583, + "Directional": true + }, + { + "SourceID": 88580, + "TargetID": 88573, + "Directional": true + }, + { + "SourceID": 88581, + "TargetID": 88574, + "Directional": true + } + ] + }, + { + "ID": 6368, + "SourceStructureID": 460, + "TargetStructureID": 13525, + "Label": "460-13525 via Ribbon Synapse from 130160 -> 129949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130160, + "TargetID": 129949, + "Directional": true + } + ] + }, + { + "ID": 6369, + "SourceStructureID": 460, + "TargetStructureID": 31915, + "Label": "460-31915 via Ribbon Synapse from 31923 -> 31920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31923, + "TargetID": 31920, + "Directional": true + } + ] + }, + { + "ID": 6370, + "SourceStructureID": 461, + "TargetStructureID": 390, + "Label": "461-390 via Ribbon Synapse from 14754 -> 65205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14754, + "TargetID": 65205, + "Directional": true + } + ] + }, + { + "ID": 6371, + "SourceStructureID": 461, + "TargetStructureID": 606, + "Label": "461-606 via Ribbon Synapse from 49699 -> 49172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49699, + "TargetID": 49172, + "Directional": true + } + ] + }, + { + "ID": 6372, + "SourceStructureID": 461, + "TargetStructureID": 1620, + "Label": "461-1620 via Ribbon Synapse from 14828 -> 16890, 14831 -> 16895, 14833 -> 16894, 14837 -> 16893, 20620 -> 20619, 20623 -> 20624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14828, + "TargetID": 16890, + "Directional": true + }, + { + "SourceID": 14831, + "TargetID": 16895, + "Directional": true + }, + { + "SourceID": 14833, + "TargetID": 16894, + "Directional": true + }, + { + "SourceID": 14837, + "TargetID": 16893, + "Directional": true + }, + { + "SourceID": 20620, + "TargetID": 20619, + "Directional": true + }, + { + "SourceID": 20623, + "TargetID": 20624, + "Directional": true + } + ] + }, + { + "ID": 6373, + "SourceStructureID": 461, + "TargetStructureID": 5117, + "Label": "461-5117 via Ribbon Synapse from 60138 -> 135211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60138, + "TargetID": 135211, + "Directional": true + } + ] + }, + { + "ID": 6374, + "SourceStructureID": 461, + "TargetStructureID": 5410, + "Label": "461-5410 via Ribbon Synapse from 49581 -> 82168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49581, + "TargetID": 82168, + "Directional": true + } + ] + }, + { + "ID": 6375, + "SourceStructureID": 461, + "TargetStructureID": 18282, + "Label": "461-18282 via Ribbon Synapse from 86710 -> 86711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86710, + "TargetID": 86711, + "Directional": true + } + ] + }, + { + "ID": 6376, + "SourceStructureID": 461, + "TargetStructureID": 29198, + "Label": "461-29198 via Ribbon Synapse from 49795 -> 29212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49795, + "TargetID": 29212, + "Directional": true + } + ] + }, + { + "ID": 6377, + "SourceStructureID": 461, + "TargetStructureID": 34306, + "Label": "461-34306 via Ribbon Synapse from 34310 -> 34309", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34310, + "TargetID": 34309, + "Directional": true + } + ] + }, + { + "ID": 6378, + "SourceStructureID": 463, + "TargetStructureID": 458, + "Label": "463-458 via Ribbon Synapse from 37512 -> 37513", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37512, + "TargetID": 37513, + "Directional": true + } + ] + }, + { + "ID": 6379, + "SourceStructureID": 463, + "TargetStructureID": 5422, + "Label": "463-5422 via Ribbon Synapse from 74131 -> 74128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74131, + "TargetID": 74128, + "Directional": true + } + ] + }, + { + "ID": 6380, + "SourceStructureID": 463, + "TargetStructureID": 74141, + "Label": "463-74141 via Ribbon Synapse from 74140 -> 74142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74140, + "TargetID": 74142, + "Directional": true + } + ] + }, + { + "ID": 6381, + "SourceStructureID": 464, + "TargetStructureID": 4835, + "Label": "464-4835 via Ribbon Synapse from 6653 -> 6652, 26641 -> 87868, 87870 -> 87871, 87874 -> 29509, 87876 -> 29510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6653, + "TargetID": 6652, + "Directional": true + }, + { + "SourceID": 26641, + "TargetID": 87868, + "Directional": true + }, + { + "SourceID": 87870, + "TargetID": 87871, + "Directional": true + }, + { + "SourceID": 87874, + "TargetID": 29509, + "Directional": true + }, + { + "SourceID": 87876, + "TargetID": 29510, + "Directional": true + } + ] + }, + { + "ID": 6382, + "SourceStructureID": 468, + "TargetStructureID": 4835, + "Label": "468-4835 via Ribbon Synapse from 12926 -> 12927", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12926, + "TargetID": 12927, + "Directional": true + } + ] + }, + { + "ID": 6383, + "SourceStructureID": 469, + "TargetStructureID": 390, + "Label": "469-390 via Ribbon Synapse from 4654 -> 65128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4654, + "TargetID": 65128, + "Directional": true + } + ] + }, + { + "ID": 6384, + "SourceStructureID": 469, + "TargetStructureID": 476, + "Label": "469-476 via Ribbon Synapse from 4653 -> 5723, 4665 -> 15065, 4672 -> 15066, 4684 -> 16315, 4685 -> 16317, 16300 -> 16298, 16312 -> 16310, 18021 -> 18020, 18025 -> 18024", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4653, + "TargetID": 5723, + "Directional": true + }, + { + "SourceID": 4665, + "TargetID": 15065, + "Directional": true + }, + { + "SourceID": 4672, + "TargetID": 15066, + "Directional": true + }, + { + "SourceID": 4684, + "TargetID": 16315, + "Directional": true + }, + { + "SourceID": 4685, + "TargetID": 16317, + "Directional": true + }, + { + "SourceID": 16300, + "TargetID": 16298, + "Directional": true + }, + { + "SourceID": 16312, + "TargetID": 16310, + "Directional": true + }, + { + "SourceID": 18021, + "TargetID": 18020, + "Directional": true + }, + { + "SourceID": 18025, + "TargetID": 18024, + "Directional": true + } + ] + }, + { + "ID": 6385, + "SourceStructureID": 469, + "TargetStructureID": 514, + "Label": "469-514 via Ribbon Synapse from 4645 -> 14959, 4676 -> 14959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4645, + "TargetID": 14959, + "Directional": true + }, + { + "SourceID": 4676, + "TargetID": 14959, + "Directional": true + } + ] + }, + { + "ID": 6386, + "SourceStructureID": 469, + "TargetStructureID": 3257, + "Label": "469-3257 via Ribbon Synapse from 16308 -> 16307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16308, + "TargetID": 16307, + "Directional": true + } + ] + }, + { + "ID": 6387, + "SourceStructureID": 469, + "TargetStructureID": 4835, + "Label": "469-4835 via Ribbon Synapse from 4688 -> 36738, 36735 -> 36734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4688, + "TargetID": 36738, + "Directional": true + }, + { + "SourceID": 36735, + "TargetID": 36734, + "Directional": true + } + ] + }, + { + "ID": 6388, + "SourceStructureID": 469, + "TargetStructureID": 4943, + "Label": "469-4943 via Ribbon Synapse from 4641 -> 13432, 4676 -> 13430, 4677 -> 13431, 18025 -> 13435", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4641, + "TargetID": 13432, + "Directional": true + }, + { + "SourceID": 4676, + "TargetID": 13430, + "Directional": true + }, + { + "SourceID": 4677, + "TargetID": 13431, + "Directional": true + }, + { + "SourceID": 18025, + "TargetID": 13435, + "Directional": true + } + ] + }, + { + "ID": 6389, + "SourceStructureID": 469, + "TargetStructureID": 9643, + "Label": "469-9643 via Ribbon Synapse from 4653 -> 9683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4653, + "TargetID": 9683, + "Directional": true + } + ] + }, + { + "ID": 6390, + "SourceStructureID": 469, + "TargetStructureID": 105212, + "Label": "469-105212 via Ribbon Synapse from 36735 -> 105769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36735, + "TargetID": 105769, + "Directional": true + } + ] + }, + { + "ID": 6391, + "SourceStructureID": 471, + "TargetStructureID": 476, + "Label": "471-476 via Ribbon Synapse from 7023 -> 31971, 9649 -> 3162, 9652 -> 3163, 16035 -> 16034, 16283 -> 16284, 16295 -> 16294, 16297 -> 16296, 16302 -> 16301, 16304 -> 16303, 16316 -> 4682, 16318 -> 18009, 18006 -> 3184, 18007 -> 3182, 18008 -> 3203, 18380 -> 3171, 18380 -> 3172, 60637 -> 2235, 65180 -> 3165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7023, + "TargetID": 31971, + "Directional": true + }, + { + "SourceID": 9649, + "TargetID": 3162, + "Directional": true + }, + { + "SourceID": 9652, + "TargetID": 3163, + "Directional": true + }, + { + "SourceID": 16035, + "TargetID": 16034, + "Directional": true + }, + { + "SourceID": 16283, + "TargetID": 16284, + "Directional": true + }, + { + "SourceID": 16295, + "TargetID": 16294, + "Directional": true + }, + { + "SourceID": 16297, + "TargetID": 16296, + "Directional": true + }, + { + "SourceID": 16302, + "TargetID": 16301, + "Directional": true + }, + { + "SourceID": 16304, + "TargetID": 16303, + "Directional": true + }, + { + "SourceID": 16316, + "TargetID": 4682, + "Directional": true + }, + { + "SourceID": 16318, + "TargetID": 18009, + "Directional": true + }, + { + "SourceID": 18006, + "TargetID": 3184, + "Directional": true + }, + { + "SourceID": 18007, + "TargetID": 3182, + "Directional": true + }, + { + "SourceID": 18008, + "TargetID": 3203, + "Directional": true + }, + { + "SourceID": 18380, + "TargetID": 3171, + "Directional": true + }, + { + "SourceID": 18380, + "TargetID": 3172, + "Directional": true + }, + { + "SourceID": 60637, + "TargetID": 2235, + "Directional": true + }, + { + "SourceID": 65180, + "TargetID": 3165, + "Directional": true + } + ] + }, + { + "ID": 6392, + "SourceStructureID": 471, + "TargetStructureID": 514, + "Label": "471-514 via Ribbon Synapse from 16039 -> 3551, 16292 -> 16293, 16309 -> 3565, 88077 -> 88078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16039, + "TargetID": 3551, + "Directional": true + }, + { + "SourceID": 16292, + "TargetID": 16293, + "Directional": true + }, + { + "SourceID": 16309, + "TargetID": 3565, + "Directional": true + }, + { + "SourceID": 88077, + "TargetID": 88078, + "Directional": true + } + ] + }, + { + "ID": 6393, + "SourceStructureID": 471, + "TargetStructureID": 3257, + "Label": "471-3257 via Ribbon Synapse from 8234 -> 8233, 10864 -> 10863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8234, + "TargetID": 8233, + "Directional": true + }, + { + "SourceID": 10864, + "TargetID": 10863, + "Directional": true + } + ] + }, + { + "ID": 6394, + "SourceStructureID": 471, + "TargetStructureID": 9643, + "Label": "471-9643 via Ribbon Synapse from 9652 -> 9653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9652, + "TargetID": 9653, + "Directional": true + } + ] + }, + { + "ID": 6395, + "SourceStructureID": 471, + "TargetStructureID": 39530, + "Label": "471-39530 via Ribbon Synapse from 16035 -> 83492, 60637 -> 83495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16035, + "TargetID": 83492, + "Directional": true + }, + { + "SourceID": 60637, + "TargetID": 83495, + "Directional": true + } + ] + }, + { + "ID": 6396, + "SourceStructureID": 471, + "TargetStructureID": 89984, + "Label": "471-89984 via Ribbon Synapse from 90097 -> 90098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90097, + "TargetID": 90098, + "Directional": true + } + ] + }, + { + "ID": 6397, + "SourceStructureID": 471, + "TargetStructureID": 97024, + "Label": "471-97024 via Ribbon Synapse from 16283 -> 97116", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16283, + "TargetID": 97116, + "Directional": true + } + ] + }, + { + "ID": 6398, + "SourceStructureID": 475, + "TargetStructureID": 476, + "Label": "475-476 via Ribbon Synapse from 43835 -> 65834, 133729 -> 133728", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43835, + "TargetID": 65834, + "Directional": true + }, + { + "SourceID": 133729, + "TargetID": 133728, + "Directional": true + } + ] + }, + { + "ID": 6399, + "SourceStructureID": 475, + "TargetStructureID": 46074, + "Label": "475-46074 via Ribbon Synapse from 60739 -> 60740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60739, + "TargetID": 60740, + "Directional": true + } + ] + }, + { + "ID": 6400, + "SourceStructureID": 476, + "TargetStructureID": 425, + "Label": "476-425 via Conventional from 2147 -> 22046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 2147, + "TargetID": 22046, + "Directional": true + } + ] + }, + { + "ID": 6401, + "SourceStructureID": 476, + "TargetStructureID": 460, + "Label": "476-460 via Conventional from 4714 -> 18026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 4714, + "TargetID": 18026, + "Directional": true + } + ] + }, + { + "ID": 6402, + "SourceStructureID": 476, + "TargetStructureID": 475, + "Label": "476-475 via Conventional from 3054 -> 43837, 5053 -> 5052, 65828 -> 65829, 65832 -> 65833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 3054, + "TargetID": 43837, + "Directional": true + }, + { + "SourceID": 5053, + "TargetID": 5052, + "Directional": true + }, + { + "SourceID": 65828, + "TargetID": 65829, + "Directional": true + }, + { + "SourceID": 65832, + "TargetID": 65833, + "Directional": true + } + ] + }, + { + "ID": 6403, + "SourceStructureID": 476, + "TargetStructureID": 4567, + "Label": "476-4567 via Conventional from 3052 -> 15589", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 3052, + "TargetID": 15589, + "Directional": true + } + ] + }, + { + "ID": 6404, + "SourceStructureID": 476, + "TargetStructureID": 4568, + "Label": "476-4568 via Conventional from 2117 -> 11482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 2117, + "TargetID": 11482, + "Directional": true + } + ] + }, + { + "ID": 6405, + "SourceStructureID": 476, + "TargetStructureID": 5150, + "Label": "476-5150 via Conventional from 3040 -> 5152, 4831 -> 5155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 3040, + "TargetID": 5152, + "Directional": true + }, + { + "SourceID": 4831, + "TargetID": 5155, + "Directional": true + } + ] + }, + { + "ID": 6406, + "SourceStructureID": 476, + "TargetStructureID": 6656, + "Label": "476-6656 via Conventional from 65830 -> 40417, 65831 -> 40416", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65830, + "TargetID": 40417, + "Directional": true + }, + { + "SourceID": 65831, + "TargetID": 40416, + "Directional": true + } + ] + }, + { + "ID": 6407, + "SourceStructureID": 476, + "TargetStructureID": 65835, + "Label": "476-65835 via Conventional from 3063 -> 65836", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 3063, + "TargetID": 65836, + "Directional": true + } + ] + }, + { + "ID": 6408, + "SourceStructureID": 476, + "TargetStructureID": 147796, + "Label": "476-147796 via Conventional from 147802 -> 147801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147802, + "TargetID": 147801, + "Directional": true + } + ] + }, + { + "ID": 6409, + "SourceStructureID": 476, + "TargetStructureID": 147809, + "Label": "476-147809 via Conventional from 3140 -> 147814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 3140, + "TargetID": 147814, + "Directional": true + } + ] + }, + { + "ID": 6410, + "SourceStructureID": 478, + "TargetStructureID": 906, + "Label": "478-906 via Ribbon Synapse from 19396 -> 15200, 19397 -> 19400", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19396, + "TargetID": 15200, + "Directional": true + }, + { + "SourceID": 19397, + "TargetID": 19400, + "Directional": true + } + ] + }, + { + "ID": 6411, + "SourceStructureID": 478, + "TargetStructureID": 5107, + "Label": "478-5107 via Ribbon Synapse from 724 -> 19412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 724, + "TargetID": 19412, + "Directional": true + } + ] + }, + { + "ID": 6412, + "SourceStructureID": 478, + "TargetStructureID": 5150, + "Label": "478-5150 via Ribbon Synapse from 10947 -> 5162, 19386 -> 19385", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10947, + "TargetID": 5162, + "Directional": true + }, + { + "SourceID": 19386, + "TargetID": 19385, + "Directional": true + } + ] + }, + { + "ID": 6413, + "SourceStructureID": 478, + "TargetStructureID": 7568, + "Label": "478-7568 via Ribbon Synapse from 4622 -> 27050, 19408 -> 27077, 19414 -> 27044", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4622, + "TargetID": 27050, + "Directional": true + }, + { + "SourceID": 19408, + "TargetID": 27077, + "Directional": true + }, + { + "SourceID": 19414, + "TargetID": 27044, + "Directional": true + } + ] + }, + { + "ID": 6414, + "SourceStructureID": 478, + "TargetStructureID": 7859, + "Label": "478-7859 via Ribbon Synapse from 19424 -> 64678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19424, + "TargetID": 64678, + "Directional": true + } + ] + }, + { + "ID": 6415, + "SourceStructureID": 478, + "TargetStructureID": 10945, + "Label": "478-10945 via Ribbon Synapse from 10947 -> 10946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10947, + "TargetID": 10946, + "Directional": true + } + ] + }, + { + "ID": 6416, + "SourceStructureID": 478, + "TargetStructureID": 22634, + "Label": "478-22634 via Ribbon Synapse from 706 -> 22641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 706, + "TargetID": 22641, + "Directional": true + } + ] + }, + { + "ID": 6417, + "SourceStructureID": 479, + "TargetStructureID": 314, + "Label": "479-314 via Ribbon Synapse from 21861 -> 21862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21861, + "TargetID": 21862, + "Directional": true + } + ] + }, + { + "ID": 6418, + "SourceStructureID": 479, + "TargetStructureID": 375, + "Label": "479-375 via Ribbon Synapse from 8310 -> 21838, 21866 -> 21852, 21867 -> 21852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8310, + "TargetID": 21838, + "Directional": true + }, + { + "SourceID": 21866, + "TargetID": 21852, + "Directional": true + }, + { + "SourceID": 21867, + "TargetID": 21852, + "Directional": true + } + ] + }, + { + "ID": 6419, + "SourceStructureID": 479, + "TargetStructureID": 8575, + "Label": "479-8575 via BC Conventional Synapse from 61564 -> 61563, 122370 -> 122369", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61564, + "TargetID": 61563, + "Directional": true + }, + { + "SourceID": 122370, + "TargetID": 122369, + "Directional": true + } + ] + }, + { + "ID": 6420, + "SourceStructureID": 479, + "TargetStructureID": 32637, + "Label": "479-32637 via Ribbon Synapse from 34985 -> 34984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34985, + "TargetID": 34984, + "Directional": true + } + ] + }, + { + "ID": 6421, + "SourceStructureID": 479, + "TargetStructureID": 36153, + "Label": "479-36153 via Ribbon Synapse from 45887 -> 61616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45887, + "TargetID": 61616, + "Directional": true + } + ] + }, + { + "ID": 6422, + "SourceStructureID": 479, + "TargetStructureID": 36158, + "Label": "479-36158 via Ribbon Synapse from 8309 -> 36160", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8309, + "TargetID": 36160, + "Directional": true + } + ] + }, + { + "ID": 6423, + "SourceStructureID": 479, + "TargetStructureID": 36162, + "Label": "479-36162 via Ribbon Synapse from 36165 -> 36164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36165, + "TargetID": 36164, + "Directional": true + } + ] + }, + { + "ID": 6424, + "SourceStructureID": 479, + "TargetStructureID": 59568, + "Label": "479-59568 via Ribbon Synapse from 56494 -> 59569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56494, + "TargetID": 59569, + "Directional": true + } + ] + }, + { + "ID": 6425, + "SourceStructureID": 483, + "TargetStructureID": 4890, + "Label": "483-4890 via Ribbon Synapse from 6794 -> 7921, 6798 -> 103718, 19999 -> 19998, 20001 -> 20000, 26824 -> 64860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6794, + "TargetID": 7921, + "Directional": true + }, + { + "SourceID": 6798, + "TargetID": 103718, + "Directional": true + }, + { + "SourceID": 19999, + "TargetID": 19998, + "Directional": true + }, + { + "SourceID": 20001, + "TargetID": 20000, + "Directional": true + }, + { + "SourceID": 26824, + "TargetID": 64860, + "Directional": true + } + ] + }, + { + "ID": 6426, + "SourceStructureID": 483, + "TargetStructureID": 5350, + "Label": "483-5350 via Ribbon Synapse from 71247 -> 10674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71247, + "TargetID": 10674, + "Directional": true + } + ] + }, + { + "ID": 6427, + "SourceStructureID": 483, + "TargetStructureID": 5439, + "Label": "483-5439 via Ribbon Synapse from 6750 -> 66578, 7469 -> 102700, 92341 -> 96636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6750, + "TargetID": 66578, + "Directional": true + }, + { + "SourceID": 7469, + "TargetID": 102700, + "Directional": true + }, + { + "SourceID": 92341, + "TargetID": 96636, + "Directional": true + } + ] + }, + { + "ID": 6428, + "SourceStructureID": 483, + "TargetStructureID": 6073, + "Label": "483-6073 via Ribbon Synapse from 6072 -> 6074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6072, + "TargetID": 6074, + "Directional": true + } + ] + }, + { + "ID": 6429, + "SourceStructureID": 483, + "TargetStructureID": 6857, + "Label": "483-6857 via Ribbon Synapse from 26824 -> 56080, 65234 -> 65231, 85758 -> 96627, 103539 -> 103540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26824, + "TargetID": 56080, + "Directional": true + }, + { + "SourceID": 65234, + "TargetID": 65231, + "Directional": true + }, + { + "SourceID": 85758, + "TargetID": 96627, + "Directional": true + }, + { + "SourceID": 103539, + "TargetID": 103540, + "Directional": true + } + ] + }, + { + "ID": 6430, + "SourceStructureID": 483, + "TargetStructureID": 8577, + "Label": "483-8577 via Ribbon Synapse from 6764 -> 15929, 6798 -> 15930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6764, + "TargetID": 15929, + "Directional": true + }, + { + "SourceID": 6798, + "TargetID": 15930, + "Directional": true + } + ] + }, + { + "ID": 6431, + "SourceStructureID": 483, + "TargetStructureID": 8579, + "Label": "483-8579 via Ribbon Synapse from 6770 -> 103350, 103344 -> 103347", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6770, + "TargetID": 103350, + "Directional": true + }, + { + "SourceID": 103344, + "TargetID": 103347, + "Directional": true + } + ] + }, + { + "ID": 6432, + "SourceStructureID": 483, + "TargetStructureID": 8720, + "Label": "483-8720 via Ribbon Synapse from 97748 -> 97749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97748, + "TargetID": 97749, + "Directional": true + } + ] + }, + { + "ID": 6433, + "SourceStructureID": 483, + "TargetStructureID": 12208, + "Label": "483-12208 via BC Conventional Synapse from 97704 -> 22461", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97704, + "TargetID": 22461, + "Directional": true + } + ] + }, + { + "ID": 6434, + "SourceStructureID": 483, + "TargetStructureID": 12208, + "Label": "483-12208 via Ribbon Synapse from 97724 -> 22460, 97726 -> 22460, 97729 -> 22460", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97724, + "TargetID": 22460, + "Directional": true + }, + { + "SourceID": 97726, + "TargetID": 22460, + "Directional": true + }, + { + "SourceID": 97729, + "TargetID": 22460, + "Directional": true + } + ] + }, + { + "ID": 6435, + "SourceStructureID": 483, + "TargetStructureID": 18282, + "Label": "483-18282 via Ribbon Synapse from 6736 -> 29195, 71188 -> 71187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6736, + "TargetID": 29195, + "Directional": true + }, + { + "SourceID": 71188, + "TargetID": 71187, + "Directional": true + } + ] + }, + { + "ID": 6436, + "SourceStructureID": 483, + "TargetStructureID": 18576, + "Label": "483-18576 via Ribbon Synapse from 100555 -> 100554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100555, + "TargetID": 100554, + "Directional": true + } + ] + }, + { + "ID": 6437, + "SourceStructureID": 483, + "TargetStructureID": 20299, + "Label": "483-20299 via Ribbon Synapse from 20355 -> 20324, 26821 -> 33598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20355, + "TargetID": 20324, + "Directional": true + }, + { + "SourceID": 26821, + "TargetID": 33598, + "Directional": true + } + ] + }, + { + "ID": 6438, + "SourceStructureID": 483, + "TargetStructureID": 29198, + "Label": "483-29198 via BC Conventional Synapse from 103394 -> 103395, 103430 -> 103431", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103394, + "TargetID": 103395, + "Directional": true + }, + { + "SourceID": 103430, + "TargetID": 103431, + "Directional": true + } + ] + }, + { + "ID": 6439, + "SourceStructureID": 483, + "TargetStructureID": 29702, + "Label": "483-29702 via Ribbon Synapse from 75947 -> 75946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75947, + "TargetID": 75946, + "Directional": true + } + ] + }, + { + "ID": 6440, + "SourceStructureID": 483, + "TargetStructureID": 30526, + "Label": "483-30526 via Ribbon Synapse from 6707 -> 30542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6707, + "TargetID": 30542, + "Directional": true + } + ] + }, + { + "ID": 6441, + "SourceStructureID": 483, + "TargetStructureID": 32643, + "Label": "483-32643 via Ribbon Synapse from 81493 -> 32649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81493, + "TargetID": 32649, + "Directional": true + } + ] + }, + { + "ID": 6442, + "SourceStructureID": 483, + "TargetStructureID": 34601, + "Label": "483-34601 via Ribbon Synapse from 6804 -> 60341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6804, + "TargetID": 60341, + "Directional": true + } + ] + }, + { + "ID": 6443, + "SourceStructureID": 483, + "TargetStructureID": 40010, + "Label": "483-40010 via Ribbon Synapse from 14986 -> 40013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14986, + "TargetID": 40013, + "Directional": true + } + ] + }, + { + "ID": 6444, + "SourceStructureID": 483, + "TargetStructureID": 41474, + "Label": "483-41474 via BC Conventional Synapse from 103223 -> 103222", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103223, + "TargetID": 103222, + "Directional": true + } + ] + }, + { + "ID": 6445, + "SourceStructureID": 483, + "TargetStructureID": 41474, + "Label": "483-41474 via Ribbon Synapse from 94597 -> 103298, 103194 -> 103197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94597, + "TargetID": 103298, + "Directional": true + }, + { + "SourceID": 103194, + "TargetID": 103197, + "Directional": true + } + ] + }, + { + "ID": 6446, + "SourceStructureID": 483, + "TargetStructureID": 43747, + "Label": "483-43747 via Ribbon Synapse from 6735 -> 43749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6735, + "TargetID": 43749, + "Directional": true + } + ] + }, + { + "ID": 6447, + "SourceStructureID": 483, + "TargetStructureID": 46823, + "Label": "483-46823 via Ribbon Synapse from 6715 -> 46830, 6717 -> 46827, 6728 -> 46825, 6820 -> 46835, 26829 -> 46834, 46829 -> 46828", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6715, + "TargetID": 46830, + "Directional": true + }, + { + "SourceID": 6717, + "TargetID": 46827, + "Directional": true + }, + { + "SourceID": 6728, + "TargetID": 46825, + "Directional": true + }, + { + "SourceID": 6820, + "TargetID": 46835, + "Directional": true + }, + { + "SourceID": 26829, + "TargetID": 46834, + "Directional": true + }, + { + "SourceID": 46829, + "TargetID": 46828, + "Directional": true + } + ] + }, + { + "ID": 6448, + "SourceStructureID": 483, + "TargetStructureID": 49489, + "Label": "483-49489 via Ribbon Synapse from 6787 -> 49490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6787, + "TargetID": 49490, + "Directional": true + } + ] + }, + { + "ID": 6449, + "SourceStructureID": 483, + "TargetStructureID": 59130, + "Label": "483-59130 via Ribbon Synapse from 23393 -> 59131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23393, + "TargetID": 59131, + "Directional": true + } + ] + }, + { + "ID": 6450, + "SourceStructureID": 483, + "TargetStructureID": 59283, + "Label": "483-59283 via Ribbon Synapse from 6705 -> 59284, 15162 -> 59284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6705, + "TargetID": 59284, + "Directional": true + }, + { + "SourceID": 15162, + "TargetID": 59284, + "Directional": true + } + ] + }, + { + "ID": 6451, + "SourceStructureID": 483, + "TargetStructureID": 59285, + "Label": "483-59285 via Ribbon Synapse from 15162 -> 59286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15162, + "TargetID": 59286, + "Directional": true + } + ] + }, + { + "ID": 6452, + "SourceStructureID": 483, + "TargetStructureID": 59289, + "Label": "483-59289 via Plaque-like Pre from 6706 -> 59290", + "Type": "Plaque-like Pre", + "Directional": true, + "Links": [ + { + "SourceID": 6706, + "TargetID": 59290, + "Directional": true + } + ] + }, + { + "ID": 6453, + "SourceStructureID": 483, + "TargetStructureID": 59432, + "Label": "483-59432 via Ribbon Synapse from 59431 -> 59433", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59431, + "TargetID": 59433, + "Directional": true + } + ] + }, + { + "ID": 6454, + "SourceStructureID": 483, + "TargetStructureID": 59437, + "Label": "483-59437 via Ribbon Synapse from 6779 -> 97768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6779, + "TargetID": 97768, + "Directional": true + } + ] + }, + { + "ID": 6455, + "SourceStructureID": 483, + "TargetStructureID": 59439, + "Label": "483-59439 via Ribbon Synapse from 6779 -> 59440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6779, + "TargetID": 59440, + "Directional": true + } + ] + }, + { + "ID": 6456, + "SourceStructureID": 483, + "TargetStructureID": 59441, + "Label": "483-59441 via Ribbon Synapse from 6778 -> 59442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6778, + "TargetID": 59442, + "Directional": true + } + ] + }, + { + "ID": 6457, + "SourceStructureID": 483, + "TargetStructureID": 60185, + "Label": "483-60185 via Ribbon Synapse from 6784 -> 60186", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6784, + "TargetID": 60186, + "Directional": true + } + ] + }, + { + "ID": 6458, + "SourceStructureID": 483, + "TargetStructureID": 60200, + "Label": "483-60200 via Ribbon Synapse from 6789 -> 103553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6789, + "TargetID": 103553, + "Directional": true + } + ] + }, + { + "ID": 6459, + "SourceStructureID": 483, + "TargetStructureID": 60201, + "Label": "483-60201 via Ribbon Synapse from 6789 -> 60202", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6789, + "TargetID": 60202, + "Directional": true + } + ] + }, + { + "ID": 6460, + "SourceStructureID": 483, + "TargetStructureID": 60223, + "Label": "483-60223 via Ribbon Synapse from 6797 -> 60224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6797, + "TargetID": 60224, + "Directional": true + } + ] + }, + { + "ID": 6461, + "SourceStructureID": 483, + "TargetStructureID": 60227, + "Label": "483-60227 via Ribbon Synapse from 6803 -> 60228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6803, + "TargetID": 60228, + "Directional": true + } + ] + }, + { + "ID": 6462, + "SourceStructureID": 483, + "TargetStructureID": 60229, + "Label": "483-60229 via Ribbon Synapse from 6803 -> 60230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6803, + "TargetID": 60230, + "Directional": true + } + ] + }, + { + "ID": 6463, + "SourceStructureID": 483, + "TargetStructureID": 60337, + "Label": "483-60337 via Ribbon Synapse from 6804 -> 60339", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6804, + "TargetID": 60339, + "Directional": true + } + ] + }, + { + "ID": 6464, + "SourceStructureID": 483, + "TargetStructureID": 60352, + "Label": "483-60352 via Ribbon Synapse from 6812 -> 60353", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6812, + "TargetID": 60353, + "Directional": true + } + ] + }, + { + "ID": 6465, + "SourceStructureID": 483, + "TargetStructureID": 60358, + "Label": "483-60358 via Ribbon Synapse from 60356 -> 60359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60356, + "TargetID": 60359, + "Directional": true + } + ] + }, + { + "ID": 6466, + "SourceStructureID": 483, + "TargetStructureID": 60360, + "Label": "483-60360 via Ribbon Synapse from 60356 -> 60361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60356, + "TargetID": 60361, + "Directional": true + } + ] + }, + { + "ID": 6467, + "SourceStructureID": 483, + "TargetStructureID": 60363, + "Label": "483-60363 via Ribbon Synapse from 60362 -> 60364", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60362, + "TargetID": 60364, + "Directional": true + } + ] + }, + { + "ID": 6468, + "SourceStructureID": 483, + "TargetStructureID": 61816, + "Label": "483-61816 via Ribbon Synapse from 6763 -> 80744, 102803 -> 102806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6763, + "TargetID": 80744, + "Directional": true + }, + { + "SourceID": 102803, + "TargetID": 102806, + "Directional": true + } + ] + }, + { + "ID": 6469, + "SourceStructureID": 483, + "TargetStructureID": 65267, + "Label": "483-65267 via Ribbon Synapse from 26823 -> 69940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26823, + "TargetID": 69940, + "Directional": true + } + ] + }, + { + "ID": 6470, + "SourceStructureID": 483, + "TargetStructureID": 69944, + "Label": "483-69944 via BC Conventional Synapse from 69945 -> 69946", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69945, + "TargetID": 69946, + "Directional": true + } + ] + }, + { + "ID": 6471, + "SourceStructureID": 483, + "TargetStructureID": 70284, + "Label": "483-70284 via BC Conventional Synapse from 97738 -> 103457", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97738, + "TargetID": 103457, + "Directional": true + } + ] + }, + { + "ID": 6472, + "SourceStructureID": 483, + "TargetStructureID": 70610, + "Label": "483-70610 via Ribbon Synapse from 102812 -> 102818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102812, + "TargetID": 102818, + "Directional": true + } + ] + }, + { + "ID": 6473, + "SourceStructureID": 483, + "TargetStructureID": 71089, + "Label": "483-71089 via Ribbon Synapse from 71088 -> 71090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71088, + "TargetID": 71090, + "Directional": true + } + ] + }, + { + "ID": 6474, + "SourceStructureID": 483, + "TargetStructureID": 71098, + "Label": "483-71098 via Ribbon Synapse from 71122 -> 71123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71122, + "TargetID": 71123, + "Directional": true + } + ] + }, + { + "ID": 6475, + "SourceStructureID": 483, + "TargetStructureID": 71107, + "Label": "483-71107 via Ribbon Synapse from 71109 -> 71111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71109, + "TargetID": 71111, + "Directional": true + } + ] + }, + { + "ID": 6476, + "SourceStructureID": 483, + "TargetStructureID": 71108, + "Label": "483-71108 via Ribbon Synapse from 71109 -> 71114", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71109, + "TargetID": 71114, + "Directional": true + } + ] + }, + { + "ID": 6477, + "SourceStructureID": 483, + "TargetStructureID": 71115, + "Label": "483-71115 via BC Conventional Synapse from 71116 -> 71117", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71116, + "TargetID": 71117, + "Directional": true + } + ] + }, + { + "ID": 6478, + "SourceStructureID": 483, + "TargetStructureID": 71145, + "Label": "483-71145 via Ribbon Synapse from 71144 -> 71146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71144, + "TargetID": 71146, + "Directional": true + } + ] + }, + { + "ID": 6479, + "SourceStructureID": 483, + "TargetStructureID": 71151, + "Label": "483-71151 via Ribbon Synapse from 71144 -> 71168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71144, + "TargetID": 71168, + "Directional": true + } + ] + }, + { + "ID": 6480, + "SourceStructureID": 483, + "TargetStructureID": 71153, + "Label": "483-71153 via Ribbon Synapse from 71144 -> 71166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71144, + "TargetID": 71166, + "Directional": true + } + ] + }, + { + "ID": 6481, + "SourceStructureID": 483, + "TargetStructureID": 71155, + "Label": "483-71155 via Ribbon Synapse from 71144 -> 71167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71144, + "TargetID": 71167, + "Directional": true + } + ] + }, + { + "ID": 6482, + "SourceStructureID": 483, + "TargetStructureID": 71189, + "Label": "483-71189 via Ribbon Synapse from 71188 -> 71190, 92322 -> 92323", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71188, + "TargetID": 71190, + "Directional": true + }, + { + "SourceID": 92322, + "TargetID": 92323, + "Directional": true + } + ] + }, + { + "ID": 6483, + "SourceStructureID": 483, + "TargetStructureID": 71210, + "Label": "483-71210 via Ribbon Synapse from 71201 -> 71211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71201, + "TargetID": 71211, + "Directional": true + } + ] + }, + { + "ID": 6484, + "SourceStructureID": 483, + "TargetStructureID": 71213, + "Label": "483-71213 via Ribbon Synapse from 71201 -> 71214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71201, + "TargetID": 71214, + "Directional": true + } + ] + }, + { + "ID": 6485, + "SourceStructureID": 483, + "TargetStructureID": 71241, + "Label": "483-71241 via BC Conventional Synapse from 71265 -> 71266", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71265, + "TargetID": 71266, + "Directional": true + } + ] + }, + { + "ID": 6486, + "SourceStructureID": 483, + "TargetStructureID": 71243, + "Label": "483-71243 via Ribbon Synapse from 71244 -> 71245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71244, + "TargetID": 71245, + "Directional": true + } + ] + }, + { + "ID": 6487, + "SourceStructureID": 483, + "TargetStructureID": 71288, + "Label": "483-71288 via Adherens from 71385 -> 71386", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 71385, + "TargetID": 71386, + "Directional": true + } + ] + }, + { + "ID": 6488, + "SourceStructureID": 483, + "TargetStructureID": 71362, + "Label": "483-71362 via Ribbon Synapse from 71368 -> 71375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71368, + "TargetID": 71375, + "Directional": true + } + ] + }, + { + "ID": 6489, + "SourceStructureID": 483, + "TargetStructureID": 71374, + "Label": "483-71374 via Ribbon Synapse from 71368 -> 71376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71368, + "TargetID": 71376, + "Directional": true + } + ] + }, + { + "ID": 6490, + "SourceStructureID": 483, + "TargetStructureID": 81489, + "Label": "483-81489 via Ribbon Synapse from 81488 -> 81492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81488, + "TargetID": 81492, + "Directional": true + } + ] + }, + { + "ID": 6491, + "SourceStructureID": 483, + "TargetStructureID": 81497, + "Label": "483-81497 via Ribbon Synapse from 81493 -> 81498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81493, + "TargetID": 81498, + "Directional": true + } + ] + }, + { + "ID": 6492, + "SourceStructureID": 483, + "TargetStructureID": 85748, + "Label": "483-85748 via BC Conventional Synapse from 85760 -> 85759, 85768 -> 85765, 96632 -> 96633", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85760, + "TargetID": 85759, + "Directional": true + }, + { + "SourceID": 85768, + "TargetID": 85765, + "Directional": true + }, + { + "SourceID": 96632, + "TargetID": 96633, + "Directional": true + } + ] + }, + { + "ID": 6493, + "SourceStructureID": 483, + "TargetStructureID": 86634, + "Label": "483-86634 via Ribbon Synapse from 86659 -> 102360, 86705 -> 86704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86659, + "TargetID": 102360, + "Directional": true + }, + { + "SourceID": 86705, + "TargetID": 86704, + "Directional": true + } + ] + }, + { + "ID": 6494, + "SourceStructureID": 483, + "TargetStructureID": 86654, + "Label": "483-86654 via Ribbon Synapse from 20340 -> 102366, 26833 -> 86655", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20340, + "TargetID": 102366, + "Directional": true + }, + { + "SourceID": 26833, + "TargetID": 86655, + "Directional": true + } + ] + }, + { + "ID": 6495, + "SourceStructureID": 483, + "TargetStructureID": 86702, + "Label": "483-86702 via BC Conventional Synapse from 102349 -> 102353", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102349, + "TargetID": 102353, + "Directional": true + } + ] + }, + { + "ID": 6496, + "SourceStructureID": 483, + "TargetStructureID": 87145, + "Label": "483-87145 via Ribbon Synapse from 81493 -> 103513", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81493, + "TargetID": 103513, + "Directional": true + } + ] + }, + { + "ID": 6497, + "SourceStructureID": 483, + "TargetStructureID": 96595, + "Label": "483-96595 via Ribbon Synapse from 81487 -> 96596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81487, + "TargetID": 96596, + "Directional": true + } + ] + }, + { + "ID": 6498, + "SourceStructureID": 483, + "TargetStructureID": 96597, + "Label": "483-96597 via Ribbon Synapse from 81487 -> 96598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81487, + "TargetID": 96598, + "Directional": true + } + ] + }, + { + "ID": 6499, + "SourceStructureID": 483, + "TargetStructureID": 96629, + "Label": "483-96629 via Ribbon Synapse from 96628 -> 96630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96628, + "TargetID": 96630, + "Directional": true + } + ] + }, + { + "ID": 6500, + "SourceStructureID": 483, + "TargetStructureID": 96634, + "Label": "483-96634 via BC Conventional Synapse from 92339 -> 96635", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92339, + "TargetID": 96635, + "Directional": true + } + ] + }, + { + "ID": 6501, + "SourceStructureID": 483, + "TargetStructureID": 96642, + "Label": "483-96642 via Ribbon Synapse from 92350 -> 103545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92350, + "TargetID": 103545, + "Directional": true + } + ] + }, + { + "ID": 6502, + "SourceStructureID": 483, + "TargetStructureID": 96644, + "Label": "483-96644 via Ribbon Synapse from 92350 -> 96645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92350, + "TargetID": 96645, + "Directional": true + } + ] + }, + { + "ID": 6503, + "SourceStructureID": 483, + "TargetStructureID": 96649, + "Label": "483-96649 via Ribbon Synapse from 92346 -> 96651, 96665 -> 96666", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92346, + "TargetID": 96651, + "Directional": true + }, + { + "SourceID": 96665, + "TargetID": 96666, + "Directional": true + } + ] + }, + { + "ID": 6504, + "SourceStructureID": 483, + "TargetStructureID": 96667, + "Label": "483-96667 via Ribbon Synapse from 96665 -> 96670", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96665, + "TargetID": 96670, + "Directional": true + } + ] + }, + { + "ID": 6505, + "SourceStructureID": 483, + "TargetStructureID": 96668, + "Label": "483-96668 via Ribbon Synapse from 96665 -> 96669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96665, + "TargetID": 96669, + "Directional": true + } + ] + }, + { + "ID": 6506, + "SourceStructureID": 483, + "TargetStructureID": 97674, + "Label": "483-97674 via Ribbon Synapse from 97673 -> 97675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97673, + "TargetID": 97675, + "Directional": true + } + ] + }, + { + "ID": 6507, + "SourceStructureID": 483, + "TargetStructureID": 101187, + "Label": "483-101187 via Ribbon Synapse from 92326 -> 103495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92326, + "TargetID": 103495, + "Directional": true + } + ] + }, + { + "ID": 6508, + "SourceStructureID": 483, + "TargetStructureID": 102042, + "Label": "483-102042 via Ribbon Synapse from 6711 -> 102046, 26827 -> 102045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6711, + "TargetID": 102046, + "Directional": true + }, + { + "SourceID": 26827, + "TargetID": 102045, + "Directional": true + } + ] + }, + { + "ID": 6509, + "SourceStructureID": 483, + "TargetStructureID": 102051, + "Label": "483-102051 via Ribbon Synapse from 26828 -> 102052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26828, + "TargetID": 102052, + "Directional": true + } + ] + }, + { + "ID": 6510, + "SourceStructureID": 483, + "TargetStructureID": 102053, + "Label": "483-102053 via Ribbon Synapse from 102050 -> 102054", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102050, + "TargetID": 102054, + "Directional": true + } + ] + }, + { + "ID": 6511, + "SourceStructureID": 483, + "TargetStructureID": 102055, + "Label": "483-102055 via Ribbon Synapse from 26828 -> 102056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26828, + "TargetID": 102056, + "Directional": true + } + ] + }, + { + "ID": 6512, + "SourceStructureID": 483, + "TargetStructureID": 102059, + "Label": "483-102059 via Ribbon Synapse from 6820 -> 102060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6820, + "TargetID": 102060, + "Directional": true + } + ] + }, + { + "ID": 6513, + "SourceStructureID": 483, + "TargetStructureID": 102063, + "Label": "483-102063 via BC Conventional Synapse from 102062 -> 102064", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102062, + "TargetID": 102064, + "Directional": true + } + ] + }, + { + "ID": 6514, + "SourceStructureID": 483, + "TargetStructureID": 102067, + "Label": "483-102067 via Ribbon Synapse from 26831 -> 102069", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26831, + "TargetID": 102069, + "Directional": true + } + ] + }, + { + "ID": 6515, + "SourceStructureID": 483, + "TargetStructureID": 102070, + "Label": "483-102070 via Ribbon Synapse from 6825 -> 102071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6825, + "TargetID": 102071, + "Directional": true + } + ] + }, + { + "ID": 6516, + "SourceStructureID": 483, + "TargetStructureID": 102072, + "Label": "483-102072 via Ribbon Synapse from 6826 -> 102073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6826, + "TargetID": 102073, + "Directional": true + } + ] + }, + { + "ID": 6517, + "SourceStructureID": 483, + "TargetStructureID": 102078, + "Label": "483-102078 via Ribbon Synapse from 6849 -> 102081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6849, + "TargetID": 102081, + "Directional": true + } + ] + }, + { + "ID": 6518, + "SourceStructureID": 483, + "TargetStructureID": 102079, + "Label": "483-102079 via Ribbon Synapse from 6849 -> 102080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6849, + "TargetID": 102080, + "Directional": true + } + ] + }, + { + "ID": 6519, + "SourceStructureID": 483, + "TargetStructureID": 102085, + "Label": "483-102085 via BC Conventional Synapse from 102084 -> 102086", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102084, + "TargetID": 102086, + "Directional": true + } + ] + }, + { + "ID": 6520, + "SourceStructureID": 483, + "TargetStructureID": 102087, + "Label": "483-102087 via BC Conventional Synapse from 102089 -> 102088", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102089, + "TargetID": 102088, + "Directional": true + } + ] + }, + { + "ID": 6521, + "SourceStructureID": 483, + "TargetStructureID": 102090, + "Label": "483-102090 via Ribbon Synapse from 6828 -> 102091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6828, + "TargetID": 102091, + "Directional": true + } + ] + }, + { + "ID": 6522, + "SourceStructureID": 483, + "TargetStructureID": 102096, + "Label": "483-102096 via Ribbon Synapse from 102095 -> 134079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102095, + "TargetID": 134079, + "Directional": true + } + ] + }, + { + "ID": 6523, + "SourceStructureID": 483, + "TargetStructureID": 102101, + "Label": "483-102101 via Ribbon Synapse from 102103 -> 102102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102103, + "TargetID": 102102, + "Directional": true + } + ] + }, + { + "ID": 6524, + "SourceStructureID": 483, + "TargetStructureID": 102113, + "Label": "483-102113 via Ribbon Synapse from 6847 -> 102114", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6847, + "TargetID": 102114, + "Directional": true + } + ] + }, + { + "ID": 6525, + "SourceStructureID": 483, + "TargetStructureID": 102118, + "Label": "483-102118 via Ribbon Synapse from 58611 -> 102120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58611, + "TargetID": 102120, + "Directional": true + } + ] + }, + { + "ID": 6526, + "SourceStructureID": 483, + "TargetStructureID": 102122, + "Label": "483-102122 via Ribbon Synapse from 58611 -> 102123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58611, + "TargetID": 102123, + "Directional": true + } + ] + }, + { + "ID": 6527, + "SourceStructureID": 483, + "TargetStructureID": 102129, + "Label": "483-102129 via Ribbon Synapse from 58613 -> 102134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58613, + "TargetID": 102134, + "Directional": true + } + ] + }, + { + "ID": 6528, + "SourceStructureID": 483, + "TargetStructureID": 102135, + "Label": "483-102135 via Ribbon Synapse from 58612 -> 102137", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58612, + "TargetID": 102137, + "Directional": true + } + ] + }, + { + "ID": 6529, + "SourceStructureID": 483, + "TargetStructureID": 102136, + "Label": "483-102136 via Ribbon Synapse from 58612 -> 102138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58612, + "TargetID": 102138, + "Directional": true + } + ] + }, + { + "ID": 6530, + "SourceStructureID": 483, + "TargetStructureID": 102147, + "Label": "483-102147 via BC Conventional Synapse from 102146 -> 102148", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102146, + "TargetID": 102148, + "Directional": true + } + ] + }, + { + "ID": 6531, + "SourceStructureID": 483, + "TargetStructureID": 102153, + "Label": "483-102153 via Ribbon Synapse from 6832 -> 102155", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6832, + "TargetID": 102155, + "Directional": true + } + ] + }, + { + "ID": 6532, + "SourceStructureID": 483, + "TargetStructureID": 102179, + "Label": "483-102179 via Ribbon Synapse from 6842 -> 102180", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6842, + "TargetID": 102180, + "Directional": true + } + ] + }, + { + "ID": 6533, + "SourceStructureID": 483, + "TargetStructureID": 102182, + "Label": "483-102182 via Ribbon Synapse from 6837 -> 102183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6837, + "TargetID": 102183, + "Directional": true + } + ] + }, + { + "ID": 6534, + "SourceStructureID": 483, + "TargetStructureID": 102184, + "Label": "483-102184 via Ribbon Synapse from 6837 -> 102185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6837, + "TargetID": 102185, + "Directional": true + } + ] + }, + { + "ID": 6535, + "SourceStructureID": 483, + "TargetStructureID": 102187, + "Label": "483-102187 via Ribbon Synapse from 6836 -> 102188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6836, + "TargetID": 102188, + "Directional": true + } + ] + }, + { + "ID": 6536, + "SourceStructureID": 483, + "TargetStructureID": 102189, + "Label": "483-102189 via BC Conventional Synapse from 102166 -> 102190", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102166, + "TargetID": 102190, + "Directional": true + } + ] + }, + { + "ID": 6537, + "SourceStructureID": 483, + "TargetStructureID": 102196, + "Label": "483-102196 via Ribbon Synapse from 26796 -> 102199", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26796, + "TargetID": 102199, + "Directional": true + } + ] + }, + { + "ID": 6538, + "SourceStructureID": 483, + "TargetStructureID": 102202, + "Label": "483-102202 via Ribbon Synapse from 26796 -> 102203, 102214 -> 102215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26796, + "TargetID": 102203, + "Directional": true + }, + { + "SourceID": 102214, + "TargetID": 102215, + "Directional": true + } + ] + }, + { + "ID": 6539, + "SourceStructureID": 483, + "TargetStructureID": 102216, + "Label": "483-102216 via Ribbon Synapse from 102214 -> 102217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102214, + "TargetID": 102217, + "Directional": true + } + ] + }, + { + "ID": 6540, + "SourceStructureID": 483, + "TargetStructureID": 102218, + "Label": "483-102218 via Ribbon Synapse from 26793 -> 102219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26793, + "TargetID": 102219, + "Directional": true + } + ] + }, + { + "ID": 6541, + "SourceStructureID": 483, + "TargetStructureID": 102226, + "Label": "483-102226 via Ribbon Synapse from 19999 -> 102227", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19999, + "TargetID": 102227, + "Directional": true + } + ] + }, + { + "ID": 6542, + "SourceStructureID": 483, + "TargetStructureID": 102232, + "Label": "483-102232 via BC Conventional Synapse from 102234 -> 102233", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102234, + "TargetID": 102233, + "Directional": true + } + ] + }, + { + "ID": 6543, + "SourceStructureID": 483, + "TargetStructureID": 102235, + "Label": "483-102235 via Ribbon Synapse from 102212 -> 102239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102212, + "TargetID": 102239, + "Directional": true + } + ] + }, + { + "ID": 6544, + "SourceStructureID": 483, + "TargetStructureID": 102237, + "Label": "483-102237 via Ribbon Synapse from 102212 -> 102240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102212, + "TargetID": 102240, + "Directional": true + } + ] + }, + { + "ID": 6545, + "SourceStructureID": 483, + "TargetStructureID": 102241, + "Label": "483-102241 via Ribbon Synapse from 102212 -> 102242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102212, + "TargetID": 102242, + "Directional": true + } + ] + }, + { + "ID": 6546, + "SourceStructureID": 483, + "TargetStructureID": 102244, + "Label": "483-102244 via BC Conventional Synapse from 102243 -> 102245", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102243, + "TargetID": 102245, + "Directional": true + } + ] + }, + { + "ID": 6547, + "SourceStructureID": 483, + "TargetStructureID": 102248, + "Label": "483-102248 via Ribbon Synapse from 102247 -> 102249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102247, + "TargetID": 102249, + "Directional": true + } + ] + }, + { + "ID": 6548, + "SourceStructureID": 483, + "TargetStructureID": 102250, + "Label": "483-102250 via BC Conventional Synapse from 102253 -> 102252", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102253, + "TargetID": 102252, + "Directional": true + } + ] + }, + { + "ID": 6549, + "SourceStructureID": 483, + "TargetStructureID": 102257, + "Label": "483-102257 via BC Conventional Synapse from 102256 -> 102258", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102256, + "TargetID": 102258, + "Directional": true + } + ] + }, + { + "ID": 6550, + "SourceStructureID": 483, + "TargetStructureID": 102259, + "Label": "483-102259 via Ribbon Synapse from 26795 -> 102260", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26795, + "TargetID": 102260, + "Directional": true + } + ] + }, + { + "ID": 6551, + "SourceStructureID": 483, + "TargetStructureID": 102262, + "Label": "483-102262 via Ribbon Synapse from 26841 -> 102263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26841, + "TargetID": 102263, + "Directional": true + } + ] + }, + { + "ID": 6552, + "SourceStructureID": 483, + "TargetStructureID": 102264, + "Label": "483-102264 via Ribbon Synapse from 102266 -> 102265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102266, + "TargetID": 102265, + "Directional": true + } + ] + }, + { + "ID": 6553, + "SourceStructureID": 483, + "TargetStructureID": 102267, + "Label": "483-102267 via Ribbon Synapse from 102266 -> 102268", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102266, + "TargetID": 102268, + "Directional": true + } + ] + }, + { + "ID": 6554, + "SourceStructureID": 483, + "TargetStructureID": 102280, + "Label": "483-102280 via BC Conventional Synapse from 102279 -> 102281", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102279, + "TargetID": 102281, + "Directional": true + } + ] + }, + { + "ID": 6555, + "SourceStructureID": 483, + "TargetStructureID": 102282, + "Label": "483-102282 via Ribbon Synapse from 26801 -> 102283", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26801, + "TargetID": 102283, + "Directional": true + } + ] + }, + { + "ID": 6556, + "SourceStructureID": 483, + "TargetStructureID": 102288, + "Label": "483-102288 via Ribbon Synapse from 26810 -> 102289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26810, + "TargetID": 102289, + "Directional": true + } + ] + }, + { + "ID": 6557, + "SourceStructureID": 483, + "TargetStructureID": 102290, + "Label": "483-102290 via Ribbon Synapse from 26810 -> 102291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26810, + "TargetID": 102291, + "Directional": true + } + ] + }, + { + "ID": 6558, + "SourceStructureID": 483, + "TargetStructureID": 102293, + "Label": "483-102293 via Ribbon Synapse from 26802 -> 102294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26802, + "TargetID": 102294, + "Directional": true + } + ] + }, + { + "ID": 6559, + "SourceStructureID": 483, + "TargetStructureID": 102298, + "Label": "483-102298 via BC Conventional Synapse from 102300 -> 102299", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102300, + "TargetID": 102299, + "Directional": true + } + ] + }, + { + "ID": 6560, + "SourceStructureID": 483, + "TargetStructureID": 102301, + "Label": "483-102301 via BC Conventional Synapse from 102305 -> 102304", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102305, + "TargetID": 102304, + "Directional": true + } + ] + }, + { + "ID": 6561, + "SourceStructureID": 483, + "TargetStructureID": 102302, + "Label": "483-102302 via BC Conventional Synapse from 102306 -> 102303", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102306, + "TargetID": 102303, + "Directional": true + } + ] + }, + { + "ID": 6562, + "SourceStructureID": 483, + "TargetStructureID": 102312, + "Label": "483-102312 via Ribbon Synapse from 38908 -> 102313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38908, + "TargetID": 102313, + "Directional": true + } + ] + }, + { + "ID": 6563, + "SourceStructureID": 483, + "TargetStructureID": 102318, + "Label": "483-102318 via BC Conventional Synapse from 102320 -> 102319", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102320, + "TargetID": 102319, + "Directional": true + } + ] + }, + { + "ID": 6564, + "SourceStructureID": 483, + "TargetStructureID": 102323, + "Label": "483-102323 via Ribbon Synapse from 26815 -> 102324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26815, + "TargetID": 102324, + "Directional": true + } + ] + }, + { + "ID": 6565, + "SourceStructureID": 483, + "TargetStructureID": 102327, + "Label": "483-102327 via BC Conventional Synapse from 102329 -> 102328", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102329, + "TargetID": 102328, + "Directional": true + } + ] + }, + { + "ID": 6566, + "SourceStructureID": 483, + "TargetStructureID": 102330, + "Label": "483-102330 via BC Conventional Synapse from 102332 -> 102331", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102332, + "TargetID": 102331, + "Directional": true + } + ] + }, + { + "ID": 6567, + "SourceStructureID": 483, + "TargetStructureID": 102343, + "Label": "483-102343 via Ribbon Synapse from 26833 -> 102344", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26833, + "TargetID": 102344, + "Directional": true + } + ] + }, + { + "ID": 6568, + "SourceStructureID": 483, + "TargetStructureID": 102358, + "Label": "483-102358 via BC Conventional Synapse from 102357 -> 102359", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102357, + "TargetID": 102359, + "Directional": true + } + ] + }, + { + "ID": 6569, + "SourceStructureID": 483, + "TargetStructureID": 102362, + "Label": "483-102362 via Ribbon Synapse from 20341 -> 102370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20341, + "TargetID": 102370, + "Directional": true + } + ] + }, + { + "ID": 6570, + "SourceStructureID": 483, + "TargetStructureID": 102364, + "Label": "483-102364 via Ribbon Synapse from 20340 -> 102365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20340, + "TargetID": 102365, + "Directional": true + } + ] + }, + { + "ID": 6571, + "SourceStructureID": 483, + "TargetStructureID": 102368, + "Label": "483-102368 via Ribbon Synapse from 20341 -> 102369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20341, + "TargetID": 102369, + "Directional": true + } + ] + }, + { + "ID": 6572, + "SourceStructureID": 483, + "TargetStructureID": 102371, + "Label": "483-102371 via Ribbon Synapse from 26837 -> 102372", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26837, + "TargetID": 102372, + "Directional": true + } + ] + }, + { + "ID": 6573, + "SourceStructureID": 483, + "TargetStructureID": 102387, + "Label": "483-102387 via Ribbon Synapse from 26820 -> 102388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26820, + "TargetID": 102388, + "Directional": true + } + ] + }, + { + "ID": 6574, + "SourceStructureID": 483, + "TargetStructureID": 102391, + "Label": "483-102391 via Ribbon Synapse from 26820 -> 102392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26820, + "TargetID": 102392, + "Directional": true + } + ] + }, + { + "ID": 6575, + "SourceStructureID": 483, + "TargetStructureID": 102403, + "Label": "483-102403 via Ribbon Synapse from 20345 -> 102404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20345, + "TargetID": 102404, + "Directional": true + } + ] + }, + { + "ID": 6576, + "SourceStructureID": 483, + "TargetStructureID": 102408, + "Label": "483-102408 via BC Conventional Synapse from 20350 -> 102409", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20350, + "TargetID": 102409, + "Directional": true + } + ] + }, + { + "ID": 6577, + "SourceStructureID": 483, + "TargetStructureID": 102410, + "Label": "483-102410 via BC Conventional Synapse from 102407 -> 102411", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102407, + "TargetID": 102411, + "Directional": true + } + ] + }, + { + "ID": 6578, + "SourceStructureID": 483, + "TargetStructureID": 102423, + "Label": "483-102423 via BC Conventional Synapse from 102548 -> 102424", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102548, + "TargetID": 102424, + "Directional": true + } + ] + }, + { + "ID": 6579, + "SourceStructureID": 483, + "TargetStructureID": 102425, + "Label": "483-102425 via Ribbon Synapse from 26821 -> 102550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26821, + "TargetID": 102550, + "Directional": true + } + ] + }, + { + "ID": 6580, + "SourceStructureID": 483, + "TargetStructureID": 102435, + "Label": "483-102435 via Ribbon Synapse from 20392 -> 102436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20392, + "TargetID": 102436, + "Directional": true + } + ] + }, + { + "ID": 6581, + "SourceStructureID": 483, + "TargetStructureID": 102443, + "Label": "483-102443 via BC Conventional Synapse from 102434 -> 102445", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102434, + "TargetID": 102445, + "Directional": true + } + ] + }, + { + "ID": 6582, + "SourceStructureID": 483, + "TargetStructureID": 102449, + "Label": "483-102449 via Ribbon Synapse from 20395 -> 102450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20395, + "TargetID": 102450, + "Directional": true + } + ] + }, + { + "ID": 6583, + "SourceStructureID": 483, + "TargetStructureID": 102451, + "Label": "483-102451 via Ribbon Synapse from 20394 -> 102455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20394, + "TargetID": 102455, + "Directional": true + } + ] + }, + { + "ID": 6584, + "SourceStructureID": 483, + "TargetStructureID": 102453, + "Label": "483-102453 via Ribbon Synapse from 20393 -> 102454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20393, + "TargetID": 102454, + "Directional": true + } + ] + }, + { + "ID": 6585, + "SourceStructureID": 483, + "TargetStructureID": 102470, + "Label": "483-102470 via Ribbon Synapse from 26819 -> 102472, 102469 -> 102472", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26819, + "TargetID": 102472, + "Directional": true + }, + { + "SourceID": 102469, + "TargetID": 102472, + "Directional": true + } + ] + }, + { + "ID": 6586, + "SourceStructureID": 483, + "TargetStructureID": 102473, + "Label": "483-102473 via Ribbon Synapse from 102469 -> 102474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102469, + "TargetID": 102474, + "Directional": true + } + ] + }, + { + "ID": 6587, + "SourceStructureID": 483, + "TargetStructureID": 102479, + "Label": "483-102479 via Ribbon Synapse from 26817 -> 102481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26817, + "TargetID": 102481, + "Directional": true + } + ] + }, + { + "ID": 6588, + "SourceStructureID": 483, + "TargetStructureID": 102484, + "Label": "483-102484 via Ribbon Synapse from 26817 -> 102485", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26817, + "TargetID": 102485, + "Directional": true + } + ] + }, + { + "ID": 6589, + "SourceStructureID": 483, + "TargetStructureID": 102487, + "Label": "483-102487 via Ribbon Synapse from 26783 -> 102488", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26783, + "TargetID": 102488, + "Directional": true + } + ] + }, + { + "ID": 6590, + "SourceStructureID": 483, + "TargetStructureID": 102491, + "Label": "483-102491 via Ribbon Synapse from 26783 -> 102492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26783, + "TargetID": 102492, + "Directional": true + } + ] + }, + { + "ID": 6591, + "SourceStructureID": 483, + "TargetStructureID": 102493, + "Label": "483-102493 via Ribbon Synapse from 26783 -> 102495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26783, + "TargetID": 102495, + "Directional": true + } + ] + }, + { + "ID": 6592, + "SourceStructureID": 483, + "TargetStructureID": 102496, + "Label": "483-102496 via Ribbon Synapse from 26782 -> 102497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26782, + "TargetID": 102497, + "Directional": true + } + ] + }, + { + "ID": 6593, + "SourceStructureID": 483, + "TargetStructureID": 102499, + "Label": "483-102499 via Ribbon Synapse from 26782 -> 102500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26782, + "TargetID": 102500, + "Directional": true + } + ] + }, + { + "ID": 6594, + "SourceStructureID": 483, + "TargetStructureID": 102502, + "Label": "483-102502 via BC Conventional Synapse from 102501 -> 102503", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102501, + "TargetID": 102503, + "Directional": true + } + ] + }, + { + "ID": 6595, + "SourceStructureID": 483, + "TargetStructureID": 102511, + "Label": "483-102511 via Ribbon Synapse from 20361 -> 102512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20361, + "TargetID": 102512, + "Directional": true + } + ] + }, + { + "ID": 6596, + "SourceStructureID": 483, + "TargetStructureID": 102513, + "Label": "483-102513 via Ribbon Synapse from 20361 -> 102514", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20361, + "TargetID": 102514, + "Directional": true + } + ] + }, + { + "ID": 6597, + "SourceStructureID": 483, + "TargetStructureID": 102524, + "Label": "483-102524 via Ribbon Synapse from 75947 -> 102525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75947, + "TargetID": 102525, + "Directional": true + } + ] + }, + { + "ID": 6598, + "SourceStructureID": 483, + "TargetStructureID": 102527, + "Label": "483-102527 via BC Conventional Synapse from 102526 -> 102528", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102526, + "TargetID": 102528, + "Directional": true + } + ] + }, + { + "ID": 6599, + "SourceStructureID": 483, + "TargetStructureID": 102527, + "Label": "483-102527 via Ribbon Synapse from 94710 -> 102539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94710, + "TargetID": 102539, + "Directional": true + } + ] + }, + { + "ID": 6600, + "SourceStructureID": 483, + "TargetStructureID": 102529, + "Label": "483-102529 via Ribbon Synapse from 20358 -> 102530", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20358, + "TargetID": 102530, + "Directional": true + } + ] + }, + { + "ID": 6601, + "SourceStructureID": 483, + "TargetStructureID": 102531, + "Label": "483-102531 via Ribbon Synapse from 20358 -> 102532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20358, + "TargetID": 102532, + "Directional": true + } + ] + }, + { + "ID": 6602, + "SourceStructureID": 483, + "TargetStructureID": 102540, + "Label": "483-102540 via Ribbon Synapse from 94710 -> 102541", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94710, + "TargetID": 102541, + "Directional": true + } + ] + }, + { + "ID": 6603, + "SourceStructureID": 483, + "TargetStructureID": 102545, + "Label": "483-102545 via Ribbon Synapse from 26819 -> 102546", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26819, + "TargetID": 102546, + "Directional": true + } + ] + }, + { + "ID": 6604, + "SourceStructureID": 483, + "TargetStructureID": 102555, + "Label": "483-102555 via Ribbon Synapse from 6708 -> 102560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6708, + "TargetID": 102560, + "Directional": true + } + ] + }, + { + "ID": 6605, + "SourceStructureID": 483, + "TargetStructureID": 102565, + "Label": "483-102565 via Ribbon Synapse from 6714 -> 102567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6714, + "TargetID": 102567, + "Directional": true + } + ] + }, + { + "ID": 6606, + "SourceStructureID": 483, + "TargetStructureID": 102568, + "Label": "483-102568 via Ribbon Synapse from 6714 -> 102569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6714, + "TargetID": 102569, + "Directional": true + } + ] + }, + { + "ID": 6607, + "SourceStructureID": 483, + "TargetStructureID": 102571, + "Label": "483-102571 via BC Conventional Synapse from 102570 -> 102572", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102570, + "TargetID": 102572, + "Directional": true + } + ] + }, + { + "ID": 6608, + "SourceStructureID": 483, + "TargetStructureID": 102575, + "Label": "483-102575 via BC Conventional Synapse from 102574 -> 102576", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102574, + "TargetID": 102576, + "Directional": true + } + ] + }, + { + "ID": 6609, + "SourceStructureID": 483, + "TargetStructureID": 102582, + "Label": "483-102582 via Ribbon Synapse from 134008 -> 102583", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134008, + "TargetID": 102583, + "Directional": true + } + ] + }, + { + "ID": 6610, + "SourceStructureID": 483, + "TargetStructureID": 102590, + "Label": "483-102590 via Ribbon Synapse from 6721 -> 102591", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6721, + "TargetID": 102591, + "Directional": true + } + ] + }, + { + "ID": 6611, + "SourceStructureID": 483, + "TargetStructureID": 102593, + "Label": "483-102593 via BC Conventional Synapse from 102592 -> 102594", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102592, + "TargetID": 102594, + "Directional": true + } + ] + }, + { + "ID": 6612, + "SourceStructureID": 483, + "TargetStructureID": 102596, + "Label": "483-102596 via BC Conventional Synapse from 102595 -> 102597", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102595, + "TargetID": 102597, + "Directional": true + } + ] + }, + { + "ID": 6613, + "SourceStructureID": 483, + "TargetStructureID": 102603, + "Label": "483-102603 via Ribbon Synapse from 6720 -> 102606", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6720, + "TargetID": 102606, + "Directional": true + } + ] + }, + { + "ID": 6614, + "SourceStructureID": 483, + "TargetStructureID": 102607, + "Label": "483-102607 via Ribbon Synapse from 6720 -> 102611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6720, + "TargetID": 102611, + "Directional": true + } + ] + }, + { + "ID": 6615, + "SourceStructureID": 483, + "TargetStructureID": 102626, + "Label": "483-102626 via Ribbon Synapse from 102625 -> 102627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102625, + "TargetID": 102627, + "Directional": true + } + ] + }, + { + "ID": 6616, + "SourceStructureID": 483, + "TargetStructureID": 102631, + "Label": "483-102631 via Ribbon Synapse from 102622 -> 102632", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102622, + "TargetID": 102632, + "Directional": true + } + ] + }, + { + "ID": 6617, + "SourceStructureID": 483, + "TargetStructureID": 102651, + "Label": "483-102651 via Ribbon Synapse from 94568 -> 102652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94568, + "TargetID": 102652, + "Directional": true + } + ] + }, + { + "ID": 6618, + "SourceStructureID": 483, + "TargetStructureID": 102691, + "Label": "483-102691 via Ribbon Synapse from 26784 -> 102692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26784, + "TargetID": 102692, + "Directional": true + } + ] + }, + { + "ID": 6619, + "SourceStructureID": 483, + "TargetStructureID": 102720, + "Label": "483-102720 via Ribbon Synapse from 102803 -> 102809", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102803, + "TargetID": 102809, + "Directional": true + } + ] + }, + { + "ID": 6620, + "SourceStructureID": 483, + "TargetStructureID": 102726, + "Label": "483-102726 via Ribbon Synapse from 26786 -> 102732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26786, + "TargetID": 102732, + "Directional": true + } + ] + }, + { + "ID": 6621, + "SourceStructureID": 483, + "TargetStructureID": 102734, + "Label": "483-102734 via BC Conventional Synapse from 102733 -> 102735", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102733, + "TargetID": 102735, + "Directional": true + } + ] + }, + { + "ID": 6622, + "SourceStructureID": 483, + "TargetStructureID": 102741, + "Label": "483-102741 via Ribbon Synapse from 6763 -> 102743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6763, + "TargetID": 102743, + "Directional": true + } + ] + }, + { + "ID": 6623, + "SourceStructureID": 483, + "TargetStructureID": 102748, + "Label": "483-102748 via Ribbon Synapse from 6761 -> 102765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6761, + "TargetID": 102765, + "Directional": true + } + ] + }, + { + "ID": 6624, + "SourceStructureID": 483, + "TargetStructureID": 102773, + "Label": "483-102773 via BC Conventional Synapse from 102771 -> 102774", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102771, + "TargetID": 102774, + "Directional": true + } + ] + }, + { + "ID": 6625, + "SourceStructureID": 483, + "TargetStructureID": 102807, + "Label": "483-102807 via Ribbon Synapse from 102803 -> 102808, 102812 -> 102817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102803, + "TargetID": 102808, + "Directional": true + }, + { + "SourceID": 102812, + "TargetID": 102817, + "Directional": true + } + ] + }, + { + "ID": 6626, + "SourceStructureID": 483, + "TargetStructureID": 102810, + "Label": "483-102810 via Ribbon Synapse from 102803 -> 102811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102803, + "TargetID": 102811, + "Directional": true + } + ] + }, + { + "ID": 6627, + "SourceStructureID": 483, + "TargetStructureID": 102813, + "Label": "483-102813 via Ribbon Synapse from 102812 -> 102814", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102812, + "TargetID": 102814, + "Directional": true + } + ] + }, + { + "ID": 6628, + "SourceStructureID": 483, + "TargetStructureID": 102825, + "Label": "483-102825 via Ribbon Synapse from 102824 -> 102826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102824, + "TargetID": 102826, + "Directional": true + } + ] + }, + { + "ID": 6629, + "SourceStructureID": 483, + "TargetStructureID": 102828, + "Label": "483-102828 via BC Conventional Synapse from 102827 -> 102829", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102827, + "TargetID": 102829, + "Directional": true + } + ] + }, + { + "ID": 6630, + "SourceStructureID": 483, + "TargetStructureID": 102838, + "Label": "483-102838 via Ribbon Synapse from 31020 -> 102841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31020, + "TargetID": 102841, + "Directional": true + } + ] + }, + { + "ID": 6631, + "SourceStructureID": 483, + "TargetStructureID": 102845, + "Label": "483-102845 via Ribbon Synapse from 31020 -> 102847", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31020, + "TargetID": 102847, + "Directional": true + } + ] + }, + { + "ID": 6632, + "SourceStructureID": 483, + "TargetStructureID": 102854, + "Label": "483-102854 via BC Conventional Synapse from 102853 -> 102855", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102853, + "TargetID": 102855, + "Directional": true + } + ] + }, + { + "ID": 6633, + "SourceStructureID": 483, + "TargetStructureID": 102856, + "Label": "483-102856 via Ribbon Synapse from 102843 -> 102857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102843, + "TargetID": 102857, + "Directional": true + } + ] + }, + { + "ID": 6634, + "SourceStructureID": 483, + "TargetStructureID": 102863, + "Label": "483-102863 via Ribbon Synapse from 92041 -> 102866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92041, + "TargetID": 102866, + "Directional": true + } + ] + }, + { + "ID": 6635, + "SourceStructureID": 483, + "TargetStructureID": 102867, + "Label": "483-102867 via Ribbon Synapse from 92041 -> 102868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92041, + "TargetID": 102868, + "Directional": true + } + ] + }, + { + "ID": 6636, + "SourceStructureID": 483, + "TargetStructureID": 102869, + "Label": "483-102869 via Ribbon Synapse from 92041 -> 102870", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92041, + "TargetID": 102870, + "Directional": true + } + ] + }, + { + "ID": 6637, + "SourceStructureID": 483, + "TargetStructureID": 102879, + "Label": "483-102879 via Ribbon Synapse from 31021 -> 102887, 31022 -> 102881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31021, + "TargetID": 102887, + "Directional": true + }, + { + "SourceID": 31022, + "TargetID": 102881, + "Directional": true + } + ] + }, + { + "ID": 6638, + "SourceStructureID": 483, + "TargetStructureID": 102884, + "Label": "483-102884 via Ribbon Synapse from 31021 -> 102886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31021, + "TargetID": 102886, + "Directional": true + } + ] + }, + { + "ID": 6639, + "SourceStructureID": 483, + "TargetStructureID": 102888, + "Label": "483-102888 via Ribbon Synapse from 31021 -> 102889", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31021, + "TargetID": 102889, + "Directional": true + } + ] + }, + { + "ID": 6640, + "SourceStructureID": 483, + "TargetStructureID": 102892, + "Label": "483-102892 via Ribbon Synapse from 31022 -> 102893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31022, + "TargetID": 102893, + "Directional": true + } + ] + }, + { + "ID": 6641, + "SourceStructureID": 483, + "TargetStructureID": 103056, + "Label": "483-103056 via Ribbon Synapse from 31023 -> 103057", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31023, + "TargetID": 103057, + "Directional": true + } + ] + }, + { + "ID": 6642, + "SourceStructureID": 483, + "TargetStructureID": 103058, + "Label": "483-103058 via Ribbon Synapse from 31023 -> 103059, 103081 -> 103082", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31023, + "TargetID": 103059, + "Directional": true + }, + { + "SourceID": 103081, + "TargetID": 103082, + "Directional": true + } + ] + }, + { + "ID": 6643, + "SourceStructureID": 483, + "TargetStructureID": 103060, + "Label": "483-103060 via Ribbon Synapse from 31023 -> 103061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31023, + "TargetID": 103061, + "Directional": true + } + ] + }, + { + "ID": 6644, + "SourceStructureID": 483, + "TargetStructureID": 103067, + "Label": "483-103067 via BC Conventional Synapse from 103066 -> 103068", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103066, + "TargetID": 103068, + "Directional": true + } + ] + }, + { + "ID": 6645, + "SourceStructureID": 483, + "TargetStructureID": 103072, + "Label": "483-103072 via BC Conventional Synapse from 103074 -> 103073", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103074, + "TargetID": 103073, + "Directional": true + } + ] + }, + { + "ID": 6646, + "SourceStructureID": 483, + "TargetStructureID": 103079, + "Label": "483-103079 via Ribbon Synapse from 103078 -> 103080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103078, + "TargetID": 103080, + "Directional": true + } + ] + }, + { + "ID": 6647, + "SourceStructureID": 483, + "TargetStructureID": 103084, + "Label": "483-103084 via BC Conventional Synapse from 103092 -> 103093", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103092, + "TargetID": 103093, + "Directional": true + } + ] + }, + { + "ID": 6648, + "SourceStructureID": 483, + "TargetStructureID": 103086, + "Label": "483-103086 via Ribbon Synapse from 6725 -> 103087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6725, + "TargetID": 103087, + "Directional": true + } + ] + }, + { + "ID": 6649, + "SourceStructureID": 483, + "TargetStructureID": 103097, + "Label": "483-103097 via Ribbon Synapse from 6728 -> 103099", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6728, + "TargetID": 103099, + "Directional": true + } + ] + }, + { + "ID": 6650, + "SourceStructureID": 483, + "TargetStructureID": 103102, + "Label": "483-103102 via Ribbon Synapse from 6737 -> 103104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6737, + "TargetID": 103104, + "Directional": true + } + ] + }, + { + "ID": 6651, + "SourceStructureID": 483, + "TargetStructureID": 103105, + "Label": "483-103105 via Ribbon Synapse from 6737 -> 103107", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6737, + "TargetID": 103107, + "Directional": true + } + ] + }, + { + "ID": 6652, + "SourceStructureID": 483, + "TargetStructureID": 103108, + "Label": "483-103108 via Ribbon Synapse from 6729 -> 103109", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6729, + "TargetID": 103109, + "Directional": true + } + ] + }, + { + "ID": 6653, + "SourceStructureID": 483, + "TargetStructureID": 103110, + "Label": "483-103110 via Ribbon Synapse from 6729 -> 103111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6729, + "TargetID": 103111, + "Directional": true + } + ] + }, + { + "ID": 6654, + "SourceStructureID": 483, + "TargetStructureID": 103116, + "Label": "483-103116 via BC Conventional Synapse from 103115 -> 103117", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103115, + "TargetID": 103117, + "Directional": true + } + ] + }, + { + "ID": 6655, + "SourceStructureID": 483, + "TargetStructureID": 103122, + "Label": "483-103122 via Ribbon Synapse from 6742 -> 103123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6742, + "TargetID": 103123, + "Directional": true + } + ] + }, + { + "ID": 6656, + "SourceStructureID": 483, + "TargetStructureID": 103126, + "Label": "483-103126 via BC Conventional Synapse from 103134 -> 103127", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103134, + "TargetID": 103127, + "Directional": true + } + ] + }, + { + "ID": 6657, + "SourceStructureID": 483, + "TargetStructureID": 103136, + "Label": "483-103136 via BC Conventional Synapse from 103135 -> 103137", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103135, + "TargetID": 103137, + "Directional": true + } + ] + }, + { + "ID": 6658, + "SourceStructureID": 483, + "TargetStructureID": 103136, + "Label": "483-103136 via Ribbon Synapse from 28763 -> 103138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28763, + "TargetID": 103138, + "Directional": true + } + ] + }, + { + "ID": 6659, + "SourceStructureID": 483, + "TargetStructureID": 103152, + "Label": "483-103152 via BC Conventional Synapse from 103151 -> 103153", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103151, + "TargetID": 103153, + "Directional": true + } + ] + }, + { + "ID": 6660, + "SourceStructureID": 483, + "TargetStructureID": 103156, + "Label": "483-103156 via Ribbon Synapse from 103161 -> 103157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103161, + "TargetID": 103157, + "Directional": true + } + ] + }, + { + "ID": 6661, + "SourceStructureID": 483, + "TargetStructureID": 103158, + "Label": "483-103158 via Ribbon Synapse from 103161 -> 103159", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103161, + "TargetID": 103159, + "Directional": true + } + ] + }, + { + "ID": 6662, + "SourceStructureID": 483, + "TargetStructureID": 103165, + "Label": "483-103165 via Ribbon Synapse from 103161 -> 103166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103161, + "TargetID": 103166, + "Directional": true + } + ] + }, + { + "ID": 6663, + "SourceStructureID": 483, + "TargetStructureID": 103173, + "Label": "483-103173 via BC Conventional Synapse from 103172 -> 103175", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103172, + "TargetID": 103175, + "Directional": true + } + ] + }, + { + "ID": 6664, + "SourceStructureID": 483, + "TargetStructureID": 103179, + "Label": "483-103179 via BC Conventional Synapse from 103177 -> 103181", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103177, + "TargetID": 103181, + "Directional": true + } + ] + }, + { + "ID": 6665, + "SourceStructureID": 483, + "TargetStructureID": 103192, + "Label": "483-103192 via Ribbon Synapse from 28764 -> 103193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28764, + "TargetID": 103193, + "Directional": true + } + ] + }, + { + "ID": 6666, + "SourceStructureID": 483, + "TargetStructureID": 103195, + "Label": "483-103195 via Ribbon Synapse from 103194 -> 103196", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103194, + "TargetID": 103196, + "Directional": true + } + ] + }, + { + "ID": 6667, + "SourceStructureID": 483, + "TargetStructureID": 103203, + "Label": "483-103203 via Ribbon Synapse from 28765 -> 103214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28765, + "TargetID": 103214, + "Directional": true + } + ] + }, + { + "ID": 6668, + "SourceStructureID": 483, + "TargetStructureID": 103228, + "Label": "483-103228 via Ribbon Synapse from 28767 -> 103229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28767, + "TargetID": 103229, + "Directional": true + } + ] + }, + { + "ID": 6669, + "SourceStructureID": 483, + "TargetStructureID": 103240, + "Label": "483-103240 via Ribbon Synapse from 28772 -> 103253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28772, + "TargetID": 103253, + "Directional": true + } + ] + }, + { + "ID": 6670, + "SourceStructureID": 483, + "TargetStructureID": 103242, + "Label": "483-103242 via Ribbon Synapse from 28770 -> 103243", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28770, + "TargetID": 103243, + "Directional": true + } + ] + }, + { + "ID": 6671, + "SourceStructureID": 483, + "TargetStructureID": 103272, + "Label": "483-103272 via Ribbon Synapse from 94594 -> 103273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94594, + "TargetID": 103273, + "Directional": true + } + ] + }, + { + "ID": 6672, + "SourceStructureID": 483, + "TargetStructureID": 103275, + "Label": "483-103275 via Ribbon Synapse from 94594 -> 103276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94594, + "TargetID": 103276, + "Directional": true + } + ] + }, + { + "ID": 6673, + "SourceStructureID": 483, + "TargetStructureID": 103287, + "Label": "483-103287 via Ribbon Synapse from 103290 -> 103288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103290, + "TargetID": 103288, + "Directional": true + } + ] + }, + { + "ID": 6674, + "SourceStructureID": 483, + "TargetStructureID": 103291, + "Label": "483-103291 via Ribbon Synapse from 103290 -> 103292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103290, + "TargetID": 103292, + "Directional": true + } + ] + }, + { + "ID": 6675, + "SourceStructureID": 483, + "TargetStructureID": 103296, + "Label": "483-103296 via Ribbon Synapse from 94596 -> 103297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94596, + "TargetID": 103297, + "Directional": true + } + ] + }, + { + "ID": 6676, + "SourceStructureID": 483, + "TargetStructureID": 103302, + "Label": "483-103302 via BC Conventional Synapse from 103301 -> 103303", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103301, + "TargetID": 103303, + "Directional": true + } + ] + }, + { + "ID": 6677, + "SourceStructureID": 483, + "TargetStructureID": 103305, + "Label": "483-103305 via Ribbon Synapse from 94595 -> 103306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94595, + "TargetID": 103306, + "Directional": true + } + ] + }, + { + "ID": 6678, + "SourceStructureID": 483, + "TargetStructureID": 103307, + "Label": "483-103307 via Ribbon Synapse from 94595 -> 103308", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94595, + "TargetID": 103308, + "Directional": true + } + ] + }, + { + "ID": 6679, + "SourceStructureID": 483, + "TargetStructureID": 103310, + "Label": "483-103310 via BC Conventional Synapse from 103309 -> 103311", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103309, + "TargetID": 103311, + "Directional": true + } + ] + }, + { + "ID": 6680, + "SourceStructureID": 483, + "TargetStructureID": 103326, + "Label": "483-103326 via Ribbon Synapse from 6091 -> 103327", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6091, + "TargetID": 103327, + "Directional": true + } + ] + }, + { + "ID": 6681, + "SourceStructureID": 483, + "TargetStructureID": 103331, + "Label": "483-103331 via Ribbon Synapse from 6091 -> 103333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6091, + "TargetID": 103333, + "Directional": true + } + ] + }, + { + "ID": 6682, + "SourceStructureID": 483, + "TargetStructureID": 103334, + "Label": "483-103334 via Ribbon Synapse from 6094 -> 103337", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6094, + "TargetID": 103337, + "Directional": true + } + ] + }, + { + "ID": 6683, + "SourceStructureID": 483, + "TargetStructureID": 103335, + "Label": "483-103335 via Ribbon Synapse from 6094 -> 103336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6094, + "TargetID": 103336, + "Directional": true + } + ] + }, + { + "ID": 6684, + "SourceStructureID": 483, + "TargetStructureID": 103345, + "Label": "483-103345 via Ribbon Synapse from 103344 -> 103346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103344, + "TargetID": 103346, + "Directional": true + } + ] + }, + { + "ID": 6685, + "SourceStructureID": 483, + "TargetStructureID": 103362, + "Label": "483-103362 via Ribbon Synapse from 103364 -> 103365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103364, + "TargetID": 103365, + "Directional": true + } + ] + }, + { + "ID": 6686, + "SourceStructureID": 483, + "TargetStructureID": 103369, + "Label": "483-103369 via Ribbon Synapse from 6083 -> 103370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6083, + "TargetID": 103370, + "Directional": true + } + ] + }, + { + "ID": 6687, + "SourceStructureID": 483, + "TargetStructureID": 103372, + "Label": "483-103372 via BC Conventional Synapse from 103371 -> 103373", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103371, + "TargetID": 103373, + "Directional": true + } + ] + }, + { + "ID": 6688, + "SourceStructureID": 483, + "TargetStructureID": 103381, + "Label": "483-103381 via Ribbon Synapse from 6776 -> 103383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6776, + "TargetID": 103383, + "Directional": true + } + ] + }, + { + "ID": 6689, + "SourceStructureID": 483, + "TargetStructureID": 103385, + "Label": "483-103385 via BC Conventional Synapse from 103384 -> 103386", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103384, + "TargetID": 103386, + "Directional": true + } + ] + }, + { + "ID": 6690, + "SourceStructureID": 483, + "TargetStructureID": 103387, + "Label": "483-103387 via Ribbon Synapse from 6080 -> 103388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6080, + "TargetID": 103388, + "Directional": true + } + ] + }, + { + "ID": 6691, + "SourceStructureID": 483, + "TargetStructureID": 103389, + "Label": "483-103389 via Ribbon Synapse from 6080 -> 103390", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6080, + "TargetID": 103390, + "Directional": true + } + ] + }, + { + "ID": 6692, + "SourceStructureID": 483, + "TargetStructureID": 103392, + "Label": "483-103392 via Ribbon Synapse from 6776 -> 103393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6776, + "TargetID": 103393, + "Directional": true + } + ] + }, + { + "ID": 6693, + "SourceStructureID": 483, + "TargetStructureID": 103397, + "Label": "483-103397 via BC Conventional Synapse from 103396 -> 103398", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103396, + "TargetID": 103398, + "Directional": true + } + ] + }, + { + "ID": 6694, + "SourceStructureID": 483, + "TargetStructureID": 103408, + "Label": "483-103408 via BC Conventional Synapse from 103407 -> 103409", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103407, + "TargetID": 103409, + "Directional": true + } + ] + }, + { + "ID": 6695, + "SourceStructureID": 483, + "TargetStructureID": 103411, + "Label": "483-103411 via Ribbon Synapse from 6771 -> 103412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6771, + "TargetID": 103412, + "Directional": true + } + ] + }, + { + "ID": 6696, + "SourceStructureID": 483, + "TargetStructureID": 103422, + "Label": "483-103422 via Ribbon Synapse from 6773 -> 103424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6773, + "TargetID": 103424, + "Directional": true + } + ] + }, + { + "ID": 6697, + "SourceStructureID": 483, + "TargetStructureID": 103425, + "Label": "483-103425 via Ribbon Synapse from 6773 -> 103426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6773, + "TargetID": 103426, + "Directional": true + } + ] + }, + { + "ID": 6698, + "SourceStructureID": 483, + "TargetStructureID": 103427, + "Label": "483-103427 via Ribbon Synapse from 6773 -> 103428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6773, + "TargetID": 103428, + "Directional": true + } + ] + }, + { + "ID": 6699, + "SourceStructureID": 483, + "TargetStructureID": 103433, + "Label": "483-103433 via BC Conventional Synapse from 103432 -> 103434", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103432, + "TargetID": 103434, + "Directional": true + } + ] + }, + { + "ID": 6700, + "SourceStructureID": 483, + "TargetStructureID": 103435, + "Label": "483-103435 via Ribbon Synapse from 6088 -> 103436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6088, + "TargetID": 103436, + "Directional": true + } + ] + }, + { + "ID": 6701, + "SourceStructureID": 483, + "TargetStructureID": 103437, + "Label": "483-103437 via Ribbon Synapse from 6088 -> 103438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6088, + "TargetID": 103438, + "Directional": true + } + ] + }, + { + "ID": 6702, + "SourceStructureID": 483, + "TargetStructureID": 103440, + "Label": "483-103440 via Ribbon Synapse from 49798 -> 103448, 49798 -> 103449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49798, + "TargetID": 103448, + "Directional": true + }, + { + "SourceID": 49798, + "TargetID": 103449, + "Directional": true + } + ] + }, + { + "ID": 6703, + "SourceStructureID": 483, + "TargetStructureID": 103444, + "Label": "483-103444 via Ribbon Synapse from 49802 -> 103445", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49802, + "TargetID": 103445, + "Directional": true + } + ] + }, + { + "ID": 6704, + "SourceStructureID": 483, + "TargetStructureID": 103446, + "Label": "483-103446 via Ribbon Synapse from 49798 -> 103447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49798, + "TargetID": 103447, + "Directional": true + } + ] + }, + { + "ID": 6705, + "SourceStructureID": 483, + "TargetStructureID": 103450, + "Label": "483-103450 via Ribbon Synapse from 49798 -> 103451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49798, + "TargetID": 103451, + "Directional": true + } + ] + }, + { + "ID": 6706, + "SourceStructureID": 483, + "TargetStructureID": 103452, + "Label": "483-103452 via BC Conventional Synapse from 148242 -> 148241", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148242, + "TargetID": 148241, + "Directional": true + } + ] + }, + { + "ID": 6707, + "SourceStructureID": 483, + "TargetStructureID": 103460, + "Label": "483-103460 via Ribbon Synapse from 97735 -> 103461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97735, + "TargetID": 103461, + "Directional": true + } + ] + }, + { + "ID": 6708, + "SourceStructureID": 483, + "TargetStructureID": 103466, + "Label": "483-103466 via BC Conventional Synapse from 97699 -> 103467", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97699, + "TargetID": 103467, + "Directional": true + } + ] + }, + { + "ID": 6709, + "SourceStructureID": 483, + "TargetStructureID": 103468, + "Label": "483-103468 via Ribbon Synapse from 97698 -> 103469", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97698, + "TargetID": 103469, + "Directional": true + } + ] + }, + { + "ID": 6710, + "SourceStructureID": 483, + "TargetStructureID": 103470, + "Label": "483-103470 via BC Conventional Synapse from 97702 -> 103471", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97702, + "TargetID": 103471, + "Directional": true + } + ] + }, + { + "ID": 6711, + "SourceStructureID": 483, + "TargetStructureID": 103473, + "Label": "483-103473 via Ribbon Synapse from 6778 -> 103474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6778, + "TargetID": 103474, + "Directional": true + } + ] + }, + { + "ID": 6712, + "SourceStructureID": 483, + "TargetStructureID": 103481, + "Label": "483-103481 via Ribbon Synapse from 92311 -> 103482", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92311, + "TargetID": 103482, + "Directional": true + } + ] + }, + { + "ID": 6713, + "SourceStructureID": 483, + "TargetStructureID": 103483, + "Label": "483-103483 via Ribbon Synapse from 92315 -> 103484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92315, + "TargetID": 103484, + "Directional": true + } + ] + }, + { + "ID": 6714, + "SourceStructureID": 483, + "TargetStructureID": 103496, + "Label": "483-103496 via Ribbon Synapse from 92326 -> 103497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92326, + "TargetID": 103497, + "Directional": true + } + ] + }, + { + "ID": 6715, + "SourceStructureID": 483, + "TargetStructureID": 103501, + "Label": "483-103501 via Ribbon Synapse from 92327 -> 103502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92327, + "TargetID": 103502, + "Directional": true + } + ] + }, + { + "ID": 6716, + "SourceStructureID": 483, + "TargetStructureID": 103503, + "Label": "483-103503 via Ribbon Synapse from 92327 -> 103504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92327, + "TargetID": 103504, + "Directional": true + } + ] + }, + { + "ID": 6717, + "SourceStructureID": 483, + "TargetStructureID": 103506, + "Label": "483-103506 via Ribbon Synapse from 103505 -> 103507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103505, + "TargetID": 103507, + "Directional": true + } + ] + }, + { + "ID": 6718, + "SourceStructureID": 483, + "TargetStructureID": 103508, + "Label": "483-103508 via Ribbon Synapse from 81499 -> 116715", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81499, + "TargetID": 116715, + "Directional": true + } + ] + }, + { + "ID": 6719, + "SourceStructureID": 483, + "TargetStructureID": 103530, + "Label": "483-103530 via Ribbon Synapse from 92337 -> 103531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92337, + "TargetID": 103531, + "Directional": true + } + ] + }, + { + "ID": 6720, + "SourceStructureID": 483, + "TargetStructureID": 103543, + "Label": "483-103543 via Ribbon Synapse from 92345 -> 103544", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92345, + "TargetID": 103544, + "Directional": true + } + ] + }, + { + "ID": 6721, + "SourceStructureID": 483, + "TargetStructureID": 103550, + "Label": "483-103550 via Ribbon Synapse from 6786 -> 103551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6786, + "TargetID": 103551, + "Directional": true + } + ] + }, + { + "ID": 6722, + "SourceStructureID": 483, + "TargetStructureID": 103725, + "Label": "483-103725 via BC Conventional Synapse from 103724 -> 103726", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103724, + "TargetID": 103726, + "Directional": true + } + ] + }, + { + "ID": 6723, + "SourceStructureID": 483, + "TargetStructureID": 103728, + "Label": "483-103728 via Ribbon Synapse from 65234 -> 103731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65234, + "TargetID": 103731, + "Directional": true + } + ] + }, + { + "ID": 6724, + "SourceStructureID": 483, + "TargetStructureID": 103736, + "Label": "483-103736 via Ribbon Synapse from 94625 -> 103737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94625, + "TargetID": 103737, + "Directional": true + } + ] + }, + { + "ID": 6725, + "SourceStructureID": 483, + "TargetStructureID": 103743, + "Label": "483-103743 via Ribbon Synapse from 94629 -> 103744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94629, + "TargetID": 103744, + "Directional": true + } + ] + }, + { + "ID": 6726, + "SourceStructureID": 485, + "TargetStructureID": 318, + "Label": "485-318 via BC Conventional Synapse from 100891 -> 100892", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100891, + "TargetID": 100892, + "Directional": true + } + ] + }, + { + "ID": 6727, + "SourceStructureID": 485, + "TargetStructureID": 4890, + "Label": "485-4890 via Ribbon Synapse from 15934 -> 7924, 19984 -> 19985, 99875 -> 99877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15934, + "TargetID": 7924, + "Directional": true + }, + { + "SourceID": 19984, + "TargetID": 19985, + "Directional": true + }, + { + "SourceID": 99875, + "TargetID": 99877, + "Directional": true + } + ] + }, + { + "ID": 6728, + "SourceStructureID": 485, + "TargetStructureID": 5117, + "Label": "485-5117 via BC Conventional Synapse from 101211 -> 101212", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101211, + "TargetID": 101212, + "Directional": true + } + ] + }, + { + "ID": 6729, + "SourceStructureID": 485, + "TargetStructureID": 5117, + "Label": "485-5117 via Ribbon Synapse from 50854 -> 100170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50854, + "TargetID": 100170, + "Directional": true + } + ] + }, + { + "ID": 6730, + "SourceStructureID": 485, + "TargetStructureID": 5575, + "Label": "485-5575 via Adherens from 27204 -> 23087", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 27204, + "TargetID": 23087, + "Directional": true + } + ] + }, + { + "ID": 6731, + "SourceStructureID": 485, + "TargetStructureID": 8577, + "Label": "485-8577 via Ribbon Synapse from 68784 -> 15931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68784, + "TargetID": 15931, + "Directional": true + } + ] + }, + { + "ID": 6732, + "SourceStructureID": 485, + "TargetStructureID": 15796, + "Label": "485-15796 via Ribbon Synapse from 43477 -> 43478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43477, + "TargetID": 43478, + "Directional": true + } + ] + }, + { + "ID": 6733, + "SourceStructureID": 485, + "TargetStructureID": 18282, + "Label": "485-18282 via Ribbon Synapse from 18300 -> 18301, 18311 -> 18307, 47532 -> 100938, 50888 -> 101088, 100815 -> 18303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18300, + "TargetID": 18301, + "Directional": true + }, + { + "SourceID": 18311, + "TargetID": 18307, + "Directional": true + }, + { + "SourceID": 47532, + "TargetID": 100938, + "Directional": true + }, + { + "SourceID": 50888, + "TargetID": 101088, + "Directional": true + }, + { + "SourceID": 100815, + "TargetID": 18303, + "Directional": true + } + ] + }, + { + "ID": 6734, + "SourceStructureID": 485, + "TargetStructureID": 18576, + "Label": "485-18576 via Ribbon Synapse from 94212 -> 100471", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94212, + "TargetID": 100471, + "Directional": true + } + ] + }, + { + "ID": 6735, + "SourceStructureID": 485, + "TargetStructureID": 22554, + "Label": "485-22554 via BC Conventional Synapse from 22567 -> 22566", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22567, + "TargetID": 22566, + "Directional": true + } + ] + }, + { + "ID": 6736, + "SourceStructureID": 485, + "TargetStructureID": 22974, + "Label": "485-22974 via Ribbon Synapse from 100873 -> 100881, 101492 -> 101713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100873, + "TargetID": 100881, + "Directional": true + }, + { + "SourceID": 101492, + "TargetID": 101713, + "Directional": true + } + ] + }, + { + "ID": 6737, + "SourceStructureID": 485, + "TargetStructureID": 24148, + "Label": "485-24148 via Ribbon Synapse from 24166 -> 24167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24166, + "TargetID": 24167, + "Directional": true + } + ] + }, + { + "ID": 6738, + "SourceStructureID": 485, + "TargetStructureID": 25367, + "Label": "485-25367 via Ribbon Synapse from 18310 -> 25369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18310, + "TargetID": 25369, + "Directional": true + } + ] + }, + { + "ID": 6739, + "SourceStructureID": 485, + "TargetStructureID": 25392, + "Label": "485-25392 via Ribbon Synapse from 32297 -> 32298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32297, + "TargetID": 32298, + "Directional": true + } + ] + }, + { + "ID": 6740, + "SourceStructureID": 485, + "TargetStructureID": 27288, + "Label": "485-27288 via Ribbon Synapse from 19984 -> 27296, 27302 -> 27303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19984, + "TargetID": 27296, + "Directional": true + }, + { + "SourceID": 27302, + "TargetID": 27303, + "Directional": true + } + ] + }, + { + "ID": 6741, + "SourceStructureID": 485, + "TargetStructureID": 34601, + "Label": "485-34601 via Ribbon Synapse from 18311 -> 35174", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18311, + "TargetID": 35174, + "Directional": true + } + ] + }, + { + "ID": 6742, + "SourceStructureID": 485, + "TargetStructureID": 35117, + "Label": "485-35117 via Ribbon Synapse from 35124 -> 35121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35124, + "TargetID": 35121, + "Directional": true + } + ] + }, + { + "ID": 6743, + "SourceStructureID": 485, + "TargetStructureID": 39876, + "Label": "485-39876 via Ribbon Synapse from 15934 -> 39882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15934, + "TargetID": 39882, + "Directional": true + } + ] + }, + { + "ID": 6744, + "SourceStructureID": 485, + "TargetStructureID": 46823, + "Label": "485-46823 via Ribbon Synapse from 46845 -> 46844, 46847 -> 46846, 46850 -> 46849, 50914 -> 99499, 101009 -> 46837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46845, + "TargetID": 46844, + "Directional": true + }, + { + "SourceID": 46847, + "TargetID": 46846, + "Directional": true + }, + { + "SourceID": 46850, + "TargetID": 46849, + "Directional": true + }, + { + "SourceID": 50914, + "TargetID": 99499, + "Directional": true + }, + { + "SourceID": 101009, + "TargetID": 46837, + "Directional": true + } + ] + }, + { + "ID": 6745, + "SourceStructureID": 485, + "TargetStructureID": 49489, + "Label": "485-49489 via Ribbon Synapse from 49532 -> 49529, 65187 -> 103713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49532, + "TargetID": 49529, + "Directional": true + }, + { + "SourceID": 65187, + "TargetID": 103713, + "Directional": true + } + ] + }, + { + "ID": 6746, + "SourceStructureID": 485, + "TargetStructureID": 60657, + "Label": "485-60657 via Ribbon Synapse from 50878 -> 99467, 61428 -> 61427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50878, + "TargetID": 99467, + "Directional": true + }, + { + "SourceID": 61428, + "TargetID": 61427, + "Directional": true + } + ] + }, + { + "ID": 6747, + "SourceStructureID": 485, + "TargetStructureID": 61270, + "Label": "485-61270 via Ribbon Synapse from 50644 -> 61295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50644, + "TargetID": 61295, + "Directional": true + } + ] + }, + { + "ID": 6748, + "SourceStructureID": 485, + "TargetStructureID": 61864, + "Label": "485-61864 via Ribbon Synapse from 23148 -> 61866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23148, + "TargetID": 61866, + "Directional": true + } + ] + }, + { + "ID": 6749, + "SourceStructureID": 485, + "TargetStructureID": 61960, + "Label": "485-61960 via Ribbon Synapse from 47536 -> 81467, 51159 -> 81503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47536, + "TargetID": 81467, + "Directional": true + }, + { + "SourceID": 51159, + "TargetID": 81503, + "Directional": true + } + ] + }, + { + "ID": 6750, + "SourceStructureID": 485, + "TargetStructureID": 65267, + "Label": "485-65267 via Ribbon Synapse from 47529 -> 69964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47529, + "TargetID": 69964, + "Directional": true + } + ] + }, + { + "ID": 6751, + "SourceStructureID": 485, + "TargetStructureID": 70868, + "Label": "485-70868 via Ribbon Synapse from 70877 -> 70876", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70877, + "TargetID": 70876, + "Directional": true + } + ] + }, + { + "ID": 6752, + "SourceStructureID": 485, + "TargetStructureID": 70878, + "Label": "485-70878 via Ribbon Synapse from 70877 -> 70880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70877, + "TargetID": 70880, + "Directional": true + } + ] + }, + { + "ID": 6753, + "SourceStructureID": 485, + "TargetStructureID": 71189, + "Label": "485-71189 via Ribbon Synapse from 101122 -> 101126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101122, + "TargetID": 101126, + "Directional": true + } + ] + }, + { + "ID": 6754, + "SourceStructureID": 485, + "TargetStructureID": 81459, + "Label": "485-81459 via Ribbon Synapse from 81464 -> 81466", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81464, + "TargetID": 81466, + "Directional": true + } + ] + }, + { + "ID": 6755, + "SourceStructureID": 485, + "TargetStructureID": 85748, + "Label": "485-85748 via Ribbon Synapse from 100228 -> 85790, 148418 -> 148419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100228, + "TargetID": 85790, + "Directional": true + }, + { + "SourceID": 148418, + "TargetID": 148419, + "Directional": true + } + ] + }, + { + "ID": 6756, + "SourceStructureID": 485, + "TargetStructureID": 86634, + "Label": "485-86634 via Ribbon Synapse from 50865 -> 86707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50865, + "TargetID": 86707, + "Directional": true + } + ] + }, + { + "ID": 6757, + "SourceStructureID": 485, + "TargetStructureID": 99217, + "Label": "485-99217 via Ribbon Synapse from 24474 -> 99221", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24474, + "TargetID": 99221, + "Directional": true + } + ] + }, + { + "ID": 6758, + "SourceStructureID": 485, + "TargetStructureID": 99218, + "Label": "485-99218 via Ribbon Synapse from 24474 -> 99222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24474, + "TargetID": 99222, + "Directional": true + } + ] + }, + { + "ID": 6759, + "SourceStructureID": 485, + "TargetStructureID": 99223, + "Label": "485-99223 via Ribbon Synapse from 38778 -> 99224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38778, + "TargetID": 99224, + "Directional": true + } + ] + }, + { + "ID": 6760, + "SourceStructureID": 485, + "TargetStructureID": 99228, + "Label": "485-99228 via Ribbon Synapse from 24476 -> 99229, 24477 -> 99229, 24478 -> 99229, 24480 -> 99229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24476, + "TargetID": 99229, + "Directional": true + }, + { + "SourceID": 24477, + "TargetID": 99229, + "Directional": true + }, + { + "SourceID": 24478, + "TargetID": 99229, + "Directional": true + }, + { + "SourceID": 24480, + "TargetID": 99229, + "Directional": true + } + ] + }, + { + "ID": 6761, + "SourceStructureID": 485, + "TargetStructureID": 99230, + "Label": "485-99230 via Ribbon Synapse from 24480 -> 99231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24480, + "TargetID": 99231, + "Directional": true + } + ] + }, + { + "ID": 6762, + "SourceStructureID": 485, + "TargetStructureID": 99247, + "Label": "485-99247 via Ribbon Synapse from 24482 -> 99248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24482, + "TargetID": 99248, + "Directional": true + } + ] + }, + { + "ID": 6763, + "SourceStructureID": 485, + "TargetStructureID": 99249, + "Label": "485-99249 via Ribbon Synapse from 24481 -> 99250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24481, + "TargetID": 99250, + "Directional": true + } + ] + }, + { + "ID": 6764, + "SourceStructureID": 485, + "TargetStructureID": 99347, + "Label": "485-99347 via Ribbon Synapse from 7032 -> 99348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7032, + "TargetID": 99348, + "Directional": true + } + ] + }, + { + "ID": 6765, + "SourceStructureID": 485, + "TargetStructureID": 99349, + "Label": "485-99349 via Ribbon Synapse from 99283 -> 99350", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99283, + "TargetID": 99350, + "Directional": true + } + ] + }, + { + "ID": 6766, + "SourceStructureID": 485, + "TargetStructureID": 99362, + "Label": "485-99362 via Ribbon Synapse from 99354 -> 99363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99354, + "TargetID": 99363, + "Directional": true + } + ] + }, + { + "ID": 6767, + "SourceStructureID": 485, + "TargetStructureID": 99388, + "Label": "485-99388 via Ribbon Synapse from 7034 -> 99390", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7034, + "TargetID": 99390, + "Directional": true + } + ] + }, + { + "ID": 6768, + "SourceStructureID": 485, + "TargetStructureID": 99391, + "Label": "485-99391 via Ribbon Synapse from 7034 -> 99392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7034, + "TargetID": 99392, + "Directional": true + } + ] + }, + { + "ID": 6769, + "SourceStructureID": 485, + "TargetStructureID": 99397, + "Label": "485-99397 via Ribbon Synapse from 99394 -> 99398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99394, + "TargetID": 99398, + "Directional": true + } + ] + }, + { + "ID": 6770, + "SourceStructureID": 485, + "TargetStructureID": 99403, + "Label": "485-99403 via Ribbon Synapse from 7036 -> 99404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7036, + "TargetID": 99404, + "Directional": true + } + ] + }, + { + "ID": 6771, + "SourceStructureID": 485, + "TargetStructureID": 99406, + "Label": "485-99406 via BC Conventional Synapse from 99405 -> 99407", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99405, + "TargetID": 99407, + "Directional": true + } + ] + }, + { + "ID": 6772, + "SourceStructureID": 485, + "TargetStructureID": 99422, + "Label": "485-99422 via Ribbon Synapse from 99421 -> 99424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99421, + "TargetID": 99424, + "Directional": true + } + ] + }, + { + "ID": 6773, + "SourceStructureID": 485, + "TargetStructureID": 99423, + "Label": "485-99423 via Ribbon Synapse from 99421 -> 99425", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99421, + "TargetID": 99425, + "Directional": true + } + ] + }, + { + "ID": 6774, + "SourceStructureID": 485, + "TargetStructureID": 99441, + "Label": "485-99441 via Ribbon Synapse from 50879 -> 99442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50879, + "TargetID": 99442, + "Directional": true + } + ] + }, + { + "ID": 6775, + "SourceStructureID": 485, + "TargetStructureID": 99451, + "Label": "485-99451 via BC Conventional Synapse from 94060 -> 99452", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94060, + "TargetID": 99452, + "Directional": true + } + ] + }, + { + "ID": 6776, + "SourceStructureID": 485, + "TargetStructureID": 99457, + "Label": "485-99457 via Ribbon Synapse from 50861 -> 99458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50861, + "TargetID": 99458, + "Directional": true + } + ] + }, + { + "ID": 6777, + "SourceStructureID": 485, + "TargetStructureID": 99459, + "Label": "485-99459 via Ribbon Synapse from 50859 -> 99460", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50859, + "TargetID": 99460, + "Directional": true + } + ] + }, + { + "ID": 6778, + "SourceStructureID": 485, + "TargetStructureID": 99461, + "Label": "485-99461 via Ribbon Synapse from 50859 -> 99462", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50859, + "TargetID": 99462, + "Directional": true + } + ] + }, + { + "ID": 6779, + "SourceStructureID": 485, + "TargetStructureID": 99479, + "Label": "485-99479 via Ribbon Synapse from 50878 -> 99481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50878, + "TargetID": 99481, + "Directional": true + } + ] + }, + { + "ID": 6780, + "SourceStructureID": 485, + "TargetStructureID": 99525, + "Label": "485-99525 via Ribbon Synapse from 7044 -> 99526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7044, + "TargetID": 99526, + "Directional": true + } + ] + }, + { + "ID": 6781, + "SourceStructureID": 485, + "TargetStructureID": 99617, + "Label": "485-99617 via Ribbon Synapse from 50856 -> 99619", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50856, + "TargetID": 99619, + "Directional": true + } + ] + }, + { + "ID": 6782, + "SourceStructureID": 485, + "TargetStructureID": 99621, + "Label": "485-99621 via Ribbon Synapse from 50856 -> 99623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50856, + "TargetID": 99623, + "Directional": true + } + ] + }, + { + "ID": 6783, + "SourceStructureID": 485, + "TargetStructureID": 99624, + "Label": "485-99624 via Ribbon Synapse from 94092 -> 99627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94092, + "TargetID": 99627, + "Directional": true + } + ] + }, + { + "ID": 6784, + "SourceStructureID": 485, + "TargetStructureID": 99625, + "Label": "485-99625 via Ribbon Synapse from 94092 -> 99626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94092, + "TargetID": 99626, + "Directional": true + } + ] + }, + { + "ID": 6785, + "SourceStructureID": 485, + "TargetStructureID": 99644, + "Label": "485-99644 via Ribbon Synapse from 99875 -> 99876", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99875, + "TargetID": 99876, + "Directional": true + } + ] + }, + { + "ID": 6786, + "SourceStructureID": 485, + "TargetStructureID": 99651, + "Label": "485-99651 via Ribbon Synapse from 46847 -> 99652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46847, + "TargetID": 99652, + "Directional": true + } + ] + }, + { + "ID": 6787, + "SourceStructureID": 485, + "TargetStructureID": 99653, + "Label": "485-99653 via Ribbon Synapse from 99669 -> 99654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99669, + "TargetID": 99654, + "Directional": true + } + ] + }, + { + "ID": 6788, + "SourceStructureID": 485, + "TargetStructureID": 99655, + "Label": "485-99655 via Ribbon Synapse from 99669 -> 99656", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99669, + "TargetID": 99656, + "Directional": true + } + ] + }, + { + "ID": 6789, + "SourceStructureID": 485, + "TargetStructureID": 99701, + "Label": "485-99701 via Ribbon Synapse from 99691 -> 99860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99691, + "TargetID": 99860, + "Directional": true + } + ] + }, + { + "ID": 6790, + "SourceStructureID": 485, + "TargetStructureID": 99711, + "Label": "485-99711 via Ribbon Synapse from 94111 -> 99718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94111, + "TargetID": 99718, + "Directional": true + } + ] + }, + { + "ID": 6791, + "SourceStructureID": 485, + "TargetStructureID": 99731, + "Label": "485-99731 via Ribbon Synapse from 99730 -> 99732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99730, + "TargetID": 99732, + "Directional": true + } + ] + }, + { + "ID": 6792, + "SourceStructureID": 485, + "TargetStructureID": 99773, + "Label": "485-99773 via Ribbon Synapse from 50689 -> 99777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50689, + "TargetID": 99777, + "Directional": true + } + ] + }, + { + "ID": 6793, + "SourceStructureID": 485, + "TargetStructureID": 99841, + "Label": "485-99841 via Ribbon Synapse from 99840 -> 99842", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99840, + "TargetID": 99842, + "Directional": true + } + ] + }, + { + "ID": 6794, + "SourceStructureID": 485, + "TargetStructureID": 99848, + "Label": "485-99848 via Ribbon Synapse from 51171 -> 99849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51171, + "TargetID": 99849, + "Directional": true + } + ] + }, + { + "ID": 6795, + "SourceStructureID": 485, + "TargetStructureID": 99850, + "Label": "485-99850 via Ribbon Synapse from 50685 -> 99851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50685, + "TargetID": 99851, + "Directional": true + } + ] + }, + { + "ID": 6796, + "SourceStructureID": 485, + "TargetStructureID": 99852, + "Label": "485-99852 via Ribbon Synapse from 50685 -> 99853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50685, + "TargetID": 99853, + "Directional": true + } + ] + }, + { + "ID": 6797, + "SourceStructureID": 485, + "TargetStructureID": 99857, + "Label": "485-99857 via Ribbon Synapse from 99681 -> 99859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99681, + "TargetID": 99859, + "Directional": true + } + ] + }, + { + "ID": 6798, + "SourceStructureID": 485, + "TargetStructureID": 99861, + "Label": "485-99861 via Ribbon Synapse from 50631 -> 99864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50631, + "TargetID": 99864, + "Directional": true + } + ] + }, + { + "ID": 6799, + "SourceStructureID": 485, + "TargetStructureID": 99862, + "Label": "485-99862 via Ribbon Synapse from 50631 -> 99863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50631, + "TargetID": 99863, + "Directional": true + } + ] + }, + { + "ID": 6800, + "SourceStructureID": 485, + "TargetStructureID": 99865, + "Label": "485-99865 via Ribbon Synapse from 50631 -> 99866, 99896 -> 99897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50631, + "TargetID": 99866, + "Directional": true + }, + { + "SourceID": 99896, + "TargetID": 99897, + "Directional": true + } + ] + }, + { + "ID": 6801, + "SourceStructureID": 485, + "TargetStructureID": 99879, + "Label": "485-99879 via BC Conventional Synapse from 99878 -> 99880", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99878, + "TargetID": 99880, + "Directional": true + } + ] + }, + { + "ID": 6802, + "SourceStructureID": 485, + "TargetStructureID": 99906, + "Label": "485-99906 via BC Conventional Synapse from 148021 -> 148020", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148021, + "TargetID": 148020, + "Directional": true + } + ] + }, + { + "ID": 6803, + "SourceStructureID": 485, + "TargetStructureID": 99909, + "Label": "485-99909 via Ribbon Synapse from 99908 -> 99910", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99908, + "TargetID": 99910, + "Directional": true + } + ] + }, + { + "ID": 6804, + "SourceStructureID": 485, + "TargetStructureID": 99915, + "Label": "485-99915 via BC Conventional Synapse from 99920 -> 99919", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99920, + "TargetID": 99919, + "Directional": true + } + ] + }, + { + "ID": 6805, + "SourceStructureID": 485, + "TargetStructureID": 99915, + "Label": "485-99915 via Ribbon Synapse from 99914 -> 99917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99914, + "TargetID": 99917, + "Directional": true + } + ] + }, + { + "ID": 6806, + "SourceStructureID": 485, + "TargetStructureID": 99916, + "Label": "485-99916 via Ribbon Synapse from 99914 -> 99918, 99925 -> 99926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99914, + "TargetID": 99918, + "Directional": true + }, + { + "SourceID": 99925, + "TargetID": 99926, + "Directional": true + } + ] + }, + { + "ID": 6807, + "SourceStructureID": 485, + "TargetStructureID": 99933, + "Label": "485-99933 via Ribbon Synapse from 46850 -> 99934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46850, + "TargetID": 99934, + "Directional": true + } + ] + }, + { + "ID": 6808, + "SourceStructureID": 485, + "TargetStructureID": 99936, + "Label": "485-99936 via BC Conventional Synapse from 99935 -> 99939", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99935, + "TargetID": 99939, + "Directional": true + } + ] + }, + { + "ID": 6809, + "SourceStructureID": 485, + "TargetStructureID": 99938, + "Label": "485-99938 via BC Conventional Synapse from 99937 -> 99946", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99937, + "TargetID": 99946, + "Directional": true + } + ] + }, + { + "ID": 6810, + "SourceStructureID": 485, + "TargetStructureID": 99944, + "Label": "485-99944 via Ribbon Synapse from 99943 -> 99945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99943, + "TargetID": 99945, + "Directional": true + } + ] + }, + { + "ID": 6811, + "SourceStructureID": 485, + "TargetStructureID": 99958, + "Label": "485-99958 via Ribbon Synapse from 99955 -> 99959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99955, + "TargetID": 99959, + "Directional": true + } + ] + }, + { + "ID": 6812, + "SourceStructureID": 485, + "TargetStructureID": 99960, + "Label": "485-99960 via Ribbon Synapse from 99955 -> 99961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99955, + "TargetID": 99961, + "Directional": true + } + ] + }, + { + "ID": 6813, + "SourceStructureID": 485, + "TargetStructureID": 99975, + "Label": "485-99975 via Ribbon Synapse from 99974 -> 99978", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99974, + "TargetID": 99978, + "Directional": true + } + ] + }, + { + "ID": 6814, + "SourceStructureID": 485, + "TargetStructureID": 99976, + "Label": "485-99976 via Ribbon Synapse from 99974 -> 99977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99974, + "TargetID": 99977, + "Directional": true + } + ] + }, + { + "ID": 6815, + "SourceStructureID": 485, + "TargetStructureID": 99987, + "Label": "485-99987 via Ribbon Synapse from 99983 -> 99988", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99983, + "TargetID": 99988, + "Directional": true + } + ] + }, + { + "ID": 6816, + "SourceStructureID": 485, + "TargetStructureID": 99989, + "Label": "485-99989 via Ribbon Synapse from 99983 -> 99990", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99983, + "TargetID": 99990, + "Directional": true + } + ] + }, + { + "ID": 6817, + "SourceStructureID": 485, + "TargetStructureID": 100010, + "Label": "485-100010 via Ribbon Synapse from 94198 -> 100013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94198, + "TargetID": 100013, + "Directional": true + } + ] + }, + { + "ID": 6818, + "SourceStructureID": 485, + "TargetStructureID": 100014, + "Label": "485-100014 via Ribbon Synapse from 29184 -> 100016", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29184, + "TargetID": 100016, + "Directional": true + } + ] + }, + { + "ID": 6819, + "SourceStructureID": 485, + "TargetStructureID": 100023, + "Label": "485-100023 via Ribbon Synapse from 100022 -> 100024", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100022, + "TargetID": 100024, + "Directional": true + } + ] + }, + { + "ID": 6820, + "SourceStructureID": 485, + "TargetStructureID": 100032, + "Label": "485-100032 via BC Conventional Synapse from 100034 -> 100033", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100034, + "TargetID": 100033, + "Directional": true + } + ] + }, + { + "ID": 6821, + "SourceStructureID": 485, + "TargetStructureID": 100041, + "Label": "485-100041 via BC Conventional Synapse from 100042 -> 118443", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100042, + "TargetID": 118443, + "Directional": true + } + ] + }, + { + "ID": 6822, + "SourceStructureID": 485, + "TargetStructureID": 100046, + "Label": "485-100046 via Ribbon Synapse from 29189 -> 100049", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29189, + "TargetID": 100049, + "Directional": true + } + ] + }, + { + "ID": 6823, + "SourceStructureID": 485, + "TargetStructureID": 100047, + "Label": "485-100047 via Ribbon Synapse from 29189 -> 100048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29189, + "TargetID": 100048, + "Directional": true + } + ] + }, + { + "ID": 6824, + "SourceStructureID": 485, + "TargetStructureID": 100050, + "Label": "485-100050 via Ribbon Synapse from 29189 -> 100051", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29189, + "TargetID": 100051, + "Directional": true + } + ] + }, + { + "ID": 6825, + "SourceStructureID": 485, + "TargetStructureID": 100062, + "Label": "485-100062 via Ribbon Synapse from 29192 -> 100063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29192, + "TargetID": 100063, + "Directional": true + } + ] + }, + { + "ID": 6826, + "SourceStructureID": 485, + "TargetStructureID": 100072, + "Label": "485-100072 via BC Conventional Synapse from 94207 -> 100073", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94207, + "TargetID": 100073, + "Directional": true + } + ] + }, + { + "ID": 6827, + "SourceStructureID": 485, + "TargetStructureID": 100081, + "Label": "485-100081 via BC Conventional Synapse from 49524 -> 100083", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49524, + "TargetID": 100083, + "Directional": true + } + ] + }, + { + "ID": 6828, + "SourceStructureID": 485, + "TargetStructureID": 100089, + "Label": "485-100089 via BC Conventional Synapse from 100088 -> 100090", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100088, + "TargetID": 100090, + "Directional": true + } + ] + }, + { + "ID": 6829, + "SourceStructureID": 485, + "TargetStructureID": 100095, + "Label": "485-100095 via Ribbon Synapse from 148072 -> 148073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148072, + "TargetID": 148073, + "Directional": true + } + ] + }, + { + "ID": 6830, + "SourceStructureID": 485, + "TargetStructureID": 100098, + "Label": "485-100098 via Ribbon Synapse from 51028 -> 100099", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51028, + "TargetID": 100099, + "Directional": true + } + ] + }, + { + "ID": 6831, + "SourceStructureID": 485, + "TargetStructureID": 100105, + "Label": "485-100105 via BC Conventional Synapse from 100104 -> 100106", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100104, + "TargetID": 100106, + "Directional": true + } + ] + }, + { + "ID": 6832, + "SourceStructureID": 485, + "TargetStructureID": 100111, + "Label": "485-100111 via Ribbon Synapse from 51067 -> 100112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51067, + "TargetID": 100112, + "Directional": true + } + ] + }, + { + "ID": 6833, + "SourceStructureID": 485, + "TargetStructureID": 100116, + "Label": "485-100116 via Ribbon Synapse from 51068 -> 100119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51068, + "TargetID": 100119, + "Directional": true + } + ] + }, + { + "ID": 6834, + "SourceStructureID": 485, + "TargetStructureID": 100117, + "Label": "485-100117 via Ribbon Synapse from 51068 -> 100118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51068, + "TargetID": 100118, + "Directional": true + } + ] + }, + { + "ID": 6835, + "SourceStructureID": 485, + "TargetStructureID": 100128, + "Label": "485-100128 via Ribbon Synapse from 51071 -> 100130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51071, + "TargetID": 100130, + "Directional": true + } + ] + }, + { + "ID": 6836, + "SourceStructureID": 485, + "TargetStructureID": 100131, + "Label": "485-100131 via Ribbon Synapse from 51071 -> 100132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51071, + "TargetID": 100132, + "Directional": true + } + ] + }, + { + "ID": 6837, + "SourceStructureID": 485, + "TargetStructureID": 100135, + "Label": "485-100135 via Ribbon Synapse from 50920 -> 100139", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50920, + "TargetID": 100139, + "Directional": true + } + ] + }, + { + "ID": 6838, + "SourceStructureID": 485, + "TargetStructureID": 100156, + "Label": "485-100156 via Ribbon Synapse from 50920 -> 100158, 51088 -> 100163", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50920, + "TargetID": 100158, + "Directional": true + }, + { + "SourceID": 51088, + "TargetID": 100163, + "Directional": true + } + ] + }, + { + "ID": 6839, + "SourceStructureID": 485, + "TargetStructureID": 100173, + "Label": "485-100173 via Ribbon Synapse from 50690 -> 100192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50690, + "TargetID": 100192, + "Directional": true + } + ] + }, + { + "ID": 6840, + "SourceStructureID": 485, + "TargetStructureID": 100198, + "Label": "485-100198 via BC Conventional Synapse from 49531 -> 100199", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49531, + "TargetID": 100199, + "Directional": true + } + ] + }, + { + "ID": 6841, + "SourceStructureID": 485, + "TargetStructureID": 100207, + "Label": "485-100207 via Ribbon Synapse from 50686 -> 100208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50686, + "TargetID": 100208, + "Directional": true + } + ] + }, + { + "ID": 6842, + "SourceStructureID": 485, + "TargetStructureID": 100209, + "Label": "485-100209 via Ribbon Synapse from 50686 -> 100211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50686, + "TargetID": 100211, + "Directional": true + } + ] + }, + { + "ID": 6843, + "SourceStructureID": 485, + "TargetStructureID": 100217, + "Label": "485-100217 via Ribbon Synapse from 99358 -> 100218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99358, + "TargetID": 100218, + "Directional": true + } + ] + }, + { + "ID": 6844, + "SourceStructureID": 485, + "TargetStructureID": 100221, + "Label": "485-100221 via BC Conventional Synapse from 100223 -> 100222", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100223, + "TargetID": 100222, + "Directional": true + } + ] + }, + { + "ID": 6845, + "SourceStructureID": 485, + "TargetStructureID": 100257, + "Label": "485-100257 via Ribbon Synapse from 7038 -> 100258", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7038, + "TargetID": 100258, + "Directional": true + } + ] + }, + { + "ID": 6846, + "SourceStructureID": 485, + "TargetStructureID": 100271, + "Label": "485-100271 via Ribbon Synapse from 100226 -> 100272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100226, + "TargetID": 100272, + "Directional": true + } + ] + }, + { + "ID": 6847, + "SourceStructureID": 485, + "TargetStructureID": 100279, + "Label": "485-100279 via Ribbon Synapse from 100277 -> 100280", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100277, + "TargetID": 100280, + "Directional": true + } + ] + }, + { + "ID": 6848, + "SourceStructureID": 485, + "TargetStructureID": 100289, + "Label": "485-100289 via BC Conventional Synapse from 100288 -> 100290", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100288, + "TargetID": 100290, + "Directional": true + } + ] + }, + { + "ID": 6849, + "SourceStructureID": 485, + "TargetStructureID": 100292, + "Label": "485-100292 via Ribbon Synapse from 100291 -> 100295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100291, + "TargetID": 100295, + "Directional": true + } + ] + }, + { + "ID": 6850, + "SourceStructureID": 485, + "TargetStructureID": 100299, + "Label": "485-100299 via Ribbon Synapse from 47642 -> 100300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47642, + "TargetID": 100300, + "Directional": true + } + ] + }, + { + "ID": 6851, + "SourceStructureID": 485, + "TargetStructureID": 100304, + "Label": "485-100304 via Ribbon Synapse from 18296 -> 100305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18296, + "TargetID": 100305, + "Directional": true + } + ] + }, + { + "ID": 6852, + "SourceStructureID": 485, + "TargetStructureID": 100308, + "Label": "485-100308 via Ribbon Synapse from 51157 -> 100311", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51157, + "TargetID": 100311, + "Directional": true + } + ] + }, + { + "ID": 6853, + "SourceStructureID": 485, + "TargetStructureID": 100312, + "Label": "485-100312 via Ribbon Synapse from 51159 -> 100314", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51159, + "TargetID": 100314, + "Directional": true + } + ] + }, + { + "ID": 6854, + "SourceStructureID": 485, + "TargetStructureID": 100315, + "Label": "485-100315 via Ribbon Synapse from 47651 -> 100318", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47651, + "TargetID": 100318, + "Directional": true + } + ] + }, + { + "ID": 6855, + "SourceStructureID": 485, + "TargetStructureID": 100316, + "Label": "485-100316 via Ribbon Synapse from 47651 -> 100317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47651, + "TargetID": 100317, + "Directional": true + } + ] + }, + { + "ID": 6856, + "SourceStructureID": 485, + "TargetStructureID": 100322, + "Label": "485-100322 via Ribbon Synapse from 47653 -> 100323", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47653, + "TargetID": 100323, + "Directional": true + } + ] + }, + { + "ID": 6857, + "SourceStructureID": 485, + "TargetStructureID": 100355, + "Label": "485-100355 via Ribbon Synapse from 47646 -> 100356", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47646, + "TargetID": 100356, + "Directional": true + } + ] + }, + { + "ID": 6858, + "SourceStructureID": 485, + "TargetStructureID": 100381, + "Label": "485-100381 via Ribbon Synapse from 51156 -> 100382", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51156, + "TargetID": 100382, + "Directional": true + } + ] + }, + { + "ID": 6859, + "SourceStructureID": 485, + "TargetStructureID": 100391, + "Label": "485-100391 via Ribbon Synapse from 51156 -> 100392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51156, + "TargetID": 100392, + "Directional": true + } + ] + }, + { + "ID": 6860, + "SourceStructureID": 485, + "TargetStructureID": 100410, + "Label": "485-100410 via Ribbon Synapse from 47662 -> 100411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47662, + "TargetID": 100411, + "Directional": true + } + ] + }, + { + "ID": 6861, + "SourceStructureID": 485, + "TargetStructureID": 100426, + "Label": "485-100426 via Ribbon Synapse from 51153 -> 100432", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51153, + "TargetID": 100432, + "Directional": true + } + ] + }, + { + "ID": 6862, + "SourceStructureID": 485, + "TargetStructureID": 100436, + "Label": "485-100436 via BC Conventional Synapse from 100435 -> 100437", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100435, + "TargetID": 100437, + "Directional": true + } + ] + }, + { + "ID": 6863, + "SourceStructureID": 485, + "TargetStructureID": 100439, + "Label": "485-100439 via BC Conventional Synapse from 100438 -> 100440", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100438, + "TargetID": 100440, + "Directional": true + } + ] + }, + { + "ID": 6864, + "SourceStructureID": 485, + "TargetStructureID": 100441, + "Label": "485-100441 via Ribbon Synapse from 51152 -> 100442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51152, + "TargetID": 100442, + "Directional": true + } + ] + }, + { + "ID": 6865, + "SourceStructureID": 485, + "TargetStructureID": 100460, + "Label": "485-100460 via Ribbon Synapse from 51149 -> 100472", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51149, + "TargetID": 100472, + "Directional": true + } + ] + }, + { + "ID": 6866, + "SourceStructureID": 485, + "TargetStructureID": 100469, + "Label": "485-100469 via Ribbon Synapse from 51149 -> 100470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51149, + "TargetID": 100470, + "Directional": true + } + ] + }, + { + "ID": 6867, + "SourceStructureID": 485, + "TargetStructureID": 100474, + "Label": "485-100474 via Ribbon Synapse from 94051 -> 100475", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94051, + "TargetID": 100475, + "Directional": true + } + ] + }, + { + "ID": 6868, + "SourceStructureID": 485, + "TargetStructureID": 100479, + "Label": "485-100479 via Ribbon Synapse from 100489 -> 100487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100489, + "TargetID": 100487, + "Directional": true + } + ] + }, + { + "ID": 6869, + "SourceStructureID": 485, + "TargetStructureID": 100490, + "Label": "485-100490 via Ribbon Synapse from 100489 -> 100491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100489, + "TargetID": 100491, + "Directional": true + } + ] + }, + { + "ID": 6870, + "SourceStructureID": 485, + "TargetStructureID": 100498, + "Label": "485-100498 via Ribbon Synapse from 100497 -> 100500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100497, + "TargetID": 100500, + "Directional": true + } + ] + }, + { + "ID": 6871, + "SourceStructureID": 485, + "TargetStructureID": 100568, + "Label": "485-100568 via Ribbon Synapse from 100539 -> 100569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100539, + "TargetID": 100569, + "Directional": true + } + ] + }, + { + "ID": 6872, + "SourceStructureID": 485, + "TargetStructureID": 100573, + "Label": "485-100573 via Ribbon Synapse from 100577 -> 100576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100577, + "TargetID": 100576, + "Directional": true + } + ] + }, + { + "ID": 6873, + "SourceStructureID": 485, + "TargetStructureID": 100574, + "Label": "485-100574 via Ribbon Synapse from 100577 -> 100575", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100577, + "TargetID": 100575, + "Directional": true + } + ] + }, + { + "ID": 6874, + "SourceStructureID": 485, + "TargetStructureID": 100588, + "Label": "485-100588 via Ribbon Synapse from 100587 -> 100589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100587, + "TargetID": 100589, + "Directional": true + } + ] + }, + { + "ID": 6875, + "SourceStructureID": 485, + "TargetStructureID": 100605, + "Label": "485-100605 via Ribbon Synapse from 100604 -> 100608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100604, + "TargetID": 100608, + "Directional": true + } + ] + }, + { + "ID": 6876, + "SourceStructureID": 485, + "TargetStructureID": 100606, + "Label": "485-100606 via Ribbon Synapse from 100604 -> 100607", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100604, + "TargetID": 100607, + "Directional": true + } + ] + }, + { + "ID": 6877, + "SourceStructureID": 485, + "TargetStructureID": 100614, + "Label": "485-100614 via Ribbon Synapse from 100611 -> 100617", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100611, + "TargetID": 100617, + "Directional": true + } + ] + }, + { + "ID": 6878, + "SourceStructureID": 485, + "TargetStructureID": 100615, + "Label": "485-100615 via Ribbon Synapse from 100611 -> 100616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100611, + "TargetID": 100616, + "Directional": true + } + ] + }, + { + "ID": 6879, + "SourceStructureID": 485, + "TargetStructureID": 100620, + "Label": "485-100620 via Ribbon Synapse from 51081 -> 100726, 100619 -> 100621", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51081, + "TargetID": 100726, + "Directional": true + }, + { + "SourceID": 100619, + "TargetID": 100621, + "Directional": true + } + ] + }, + { + "ID": 6880, + "SourceStructureID": 485, + "TargetStructureID": 100629, + "Label": "485-100629 via BC Conventional Synapse from 100628 -> 100630", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100628, + "TargetID": 100630, + "Directional": true + } + ] + }, + { + "ID": 6881, + "SourceStructureID": 485, + "TargetStructureID": 100634, + "Label": "485-100634 via BC Conventional Synapse from 100637 -> 100635", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100637, + "TargetID": 100635, + "Directional": true + } + ] + }, + { + "ID": 6882, + "SourceStructureID": 485, + "TargetStructureID": 100671, + "Label": "485-100671 via BC Conventional Synapse from 100653 -> 100672", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100653, + "TargetID": 100672, + "Directional": true + } + ] + }, + { + "ID": 6883, + "SourceStructureID": 485, + "TargetStructureID": 100687, + "Label": "485-100687 via Ribbon Synapse from 100658 -> 100688, 100659 -> 100689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100658, + "TargetID": 100688, + "Directional": true + }, + { + "SourceID": 100659, + "TargetID": 100689, + "Directional": true + } + ] + }, + { + "ID": 6884, + "SourceStructureID": 485, + "TargetStructureID": 100695, + "Label": "485-100695 via BC Conventional Synapse from 100693 -> 100697", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100693, + "TargetID": 100697, + "Directional": true + } + ] + }, + { + "ID": 6885, + "SourceStructureID": 485, + "TargetStructureID": 100715, + "Label": "485-100715 via Ribbon Synapse from 51086 -> 100719", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51086, + "TargetID": 100719, + "Directional": true + } + ] + }, + { + "ID": 6886, + "SourceStructureID": 485, + "TargetStructureID": 100716, + "Label": "485-100716 via Ribbon Synapse from 51086 -> 100718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51086, + "TargetID": 100718, + "Directional": true + } + ] + }, + { + "ID": 6887, + "SourceStructureID": 485, + "TargetStructureID": 100717, + "Label": "485-100717 via Ribbon Synapse from 51086 -> 100720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51086, + "TargetID": 100720, + "Directional": true + } + ] + }, + { + "ID": 6888, + "SourceStructureID": 485, + "TargetStructureID": 100721, + "Label": "485-100721 via Ribbon Synapse from 51083 -> 100723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51083, + "TargetID": 100723, + "Directional": true + } + ] + }, + { + "ID": 6889, + "SourceStructureID": 485, + "TargetStructureID": 100731, + "Label": "485-100731 via BC Conventional Synapse from 100727 -> 100732", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100727, + "TargetID": 100732, + "Directional": true + } + ] + }, + { + "ID": 6890, + "SourceStructureID": 485, + "TargetStructureID": 100739, + "Label": "485-100739 via Ribbon Synapse from 47520 -> 100740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47520, + "TargetID": 100740, + "Directional": true + } + ] + }, + { + "ID": 6891, + "SourceStructureID": 485, + "TargetStructureID": 100744, + "Label": "485-100744 via Ribbon Synapse from 7035 -> 100758", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7035, + "TargetID": 100758, + "Directional": true + } + ] + }, + { + "ID": 6892, + "SourceStructureID": 485, + "TargetStructureID": 100762, + "Label": "485-100762 via Ribbon Synapse from 47525 -> 100764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47525, + "TargetID": 100764, + "Directional": true + } + ] + }, + { + "ID": 6893, + "SourceStructureID": 485, + "TargetStructureID": 100767, + "Label": "485-100767 via Ribbon Synapse from 7035 -> 100769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7035, + "TargetID": 100769, + "Directional": true + } + ] + }, + { + "ID": 6894, + "SourceStructureID": 485, + "TargetStructureID": 100771, + "Label": "485-100771 via Ribbon Synapse from 47528 -> 100782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47528, + "TargetID": 100782, + "Directional": true + } + ] + }, + { + "ID": 6895, + "SourceStructureID": 485, + "TargetStructureID": 100787, + "Label": "485-100787 via BC Conventional Synapse from 100786 -> 100791", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100786, + "TargetID": 100791, + "Directional": true + } + ] + }, + { + "ID": 6896, + "SourceStructureID": 485, + "TargetStructureID": 100840, + "Label": "485-100840 via Ribbon Synapse from 47623 -> 100841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47623, + "TargetID": 100841, + "Directional": true + } + ] + }, + { + "ID": 6897, + "SourceStructureID": 485, + "TargetStructureID": 100842, + "Label": "485-100842 via Ribbon Synapse from 47528 -> 100940, 118441 -> 118442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47528, + "TargetID": 100940, + "Directional": true + }, + { + "SourceID": 118441, + "TargetID": 118442, + "Directional": true + } + ] + }, + { + "ID": 6898, + "SourceStructureID": 485, + "TargetStructureID": 100845, + "Label": "485-100845 via BC Conventional Synapse from 100844 -> 100847", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100844, + "TargetID": 100847, + "Directional": true + } + ] + }, + { + "ID": 6899, + "SourceStructureID": 485, + "TargetStructureID": 100856, + "Label": "485-100856 via Ribbon Synapse from 47621 -> 100857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47621, + "TargetID": 100857, + "Directional": true + } + ] + }, + { + "ID": 6900, + "SourceStructureID": 485, + "TargetStructureID": 100883, + "Label": "485-100883 via Ribbon Synapse from 100873 -> 100884", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100873, + "TargetID": 100884, + "Directional": true + } + ] + }, + { + "ID": 6901, + "SourceStructureID": 485, + "TargetStructureID": 100885, + "Label": "485-100885 via Ribbon Synapse from 100873 -> 100887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100873, + "TargetID": 100887, + "Directional": true + } + ] + }, + { + "ID": 6902, + "SourceStructureID": 485, + "TargetStructureID": 100895, + "Label": "485-100895 via BC Conventional Synapse from 100894 -> 100899", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100894, + "TargetID": 100899, + "Directional": true + } + ] + }, + { + "ID": 6903, + "SourceStructureID": 485, + "TargetStructureID": 100900, + "Label": "485-100900 via Ribbon Synapse from 47628 -> 100903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47628, + "TargetID": 100903, + "Directional": true + } + ] + }, + { + "ID": 6904, + "SourceStructureID": 485, + "TargetStructureID": 100901, + "Label": "485-100901 via Ribbon Synapse from 47628 -> 100902", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47628, + "TargetID": 100902, + "Directional": true + } + ] + }, + { + "ID": 6905, + "SourceStructureID": 485, + "TargetStructureID": 100911, + "Label": "485-100911 via Ribbon Synapse from 100910 -> 100915", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100910, + "TargetID": 100915, + "Directional": true + } + ] + }, + { + "ID": 6906, + "SourceStructureID": 485, + "TargetStructureID": 100918, + "Label": "485-100918 via Ribbon Synapse from 100917 -> 100968, 101020 -> 100969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100917, + "TargetID": 100968, + "Directional": true + }, + { + "SourceID": 101020, + "TargetID": 100969, + "Directional": true + } + ] + }, + { + "ID": 6907, + "SourceStructureID": 485, + "TargetStructureID": 100924, + "Label": "485-100924 via BC Conventional Synapse from 100922 -> 100925", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100922, + "TargetID": 100925, + "Directional": true + } + ] + }, + { + "ID": 6908, + "SourceStructureID": 485, + "TargetStructureID": 100928, + "Label": "485-100928 via BC Conventional Synapse from 100927 -> 100929", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100927, + "TargetID": 100929, + "Directional": true + } + ] + }, + { + "ID": 6909, + "SourceStructureID": 485, + "TargetStructureID": 100934, + "Label": "485-100934 via Ribbon Synapse from 47531 -> 100936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47531, + "TargetID": 100936, + "Directional": true + } + ] + }, + { + "ID": 6910, + "SourceStructureID": 485, + "TargetStructureID": 100953, + "Label": "485-100953 via Ribbon Synapse from 100917 -> 100964, 100952 -> 100957", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100917, + "TargetID": 100964, + "Directional": true + }, + { + "SourceID": 100952, + "TargetID": 100957, + "Directional": true + } + ] + }, + { + "ID": 6911, + "SourceStructureID": 485, + "TargetStructureID": 100965, + "Label": "485-100965 via Ribbon Synapse from 100917 -> 100966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100917, + "TargetID": 100966, + "Directional": true + } + ] + }, + { + "ID": 6912, + "SourceStructureID": 485, + "TargetStructureID": 100994, + "Label": "485-100994 via BC Conventional Synapse from 100993 -> 100995", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100993, + "TargetID": 100995, + "Directional": true + } + ] + }, + { + "ID": 6913, + "SourceStructureID": 485, + "TargetStructureID": 101010, + "Label": "485-101010 via Ribbon Synapse from 94213 -> 101011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94213, + "TargetID": 101011, + "Directional": true + } + ] + }, + { + "ID": 6914, + "SourceStructureID": 485, + "TargetStructureID": 101015, + "Label": "485-101015 via Ribbon Synapse from 101020 -> 101022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101020, + "TargetID": 101022, + "Directional": true + } + ] + }, + { + "ID": 6915, + "SourceStructureID": 485, + "TargetStructureID": 101023, + "Label": "485-101023 via Ribbon Synapse from 101020 -> 101024, 101029 -> 101030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101020, + "TargetID": 101024, + "Directional": true + }, + { + "SourceID": 101029, + "TargetID": 101030, + "Directional": true + } + ] + }, + { + "ID": 6916, + "SourceStructureID": 485, + "TargetStructureID": 101027, + "Label": "485-101027 via Ribbon Synapse from 101020 -> 101028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101020, + "TargetID": 101028, + "Directional": true + } + ] + }, + { + "ID": 6917, + "SourceStructureID": 485, + "TargetStructureID": 101031, + "Label": "485-101031 via BC Conventional Synapse from 101033 -> 101032", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101033, + "TargetID": 101032, + "Directional": true + } + ] + }, + { + "ID": 6918, + "SourceStructureID": 485, + "TargetStructureID": 101085, + "Label": "485-101085 via Ribbon Synapse from 94214 -> 101087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94214, + "TargetID": 101087, + "Directional": true + } + ] + }, + { + "ID": 6919, + "SourceStructureID": 485, + "TargetStructureID": 101093, + "Label": "485-101093 via BC Conventional Synapse from 101092 -> 101094", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101092, + "TargetID": 101094, + "Directional": true + } + ] + }, + { + "ID": 6920, + "SourceStructureID": 485, + "TargetStructureID": 101095, + "Label": "485-101095 via BC Conventional Synapse from 94215 -> 101096", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94215, + "TargetID": 101096, + "Directional": true + } + ] + }, + { + "ID": 6921, + "SourceStructureID": 485, + "TargetStructureID": 101112, + "Label": "485-101112 via BC Conventional Synapse from 101111 -> 101113", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101111, + "TargetID": 101113, + "Directional": true + } + ] + }, + { + "ID": 6922, + "SourceStructureID": 485, + "TargetStructureID": 101127, + "Label": "485-101127 via Ribbon Synapse from 101122 -> 101128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101122, + "TargetID": 101128, + "Directional": true + } + ] + }, + { + "ID": 6923, + "SourceStructureID": 485, + "TargetStructureID": 101129, + "Label": "485-101129 via Ribbon Synapse from 47539 -> 101130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47539, + "TargetID": 101130, + "Directional": true + } + ] + }, + { + "ID": 6924, + "SourceStructureID": 485, + "TargetStructureID": 101137, + "Label": "485-101137 via Ribbon Synapse from 47534 -> 101139", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47534, + "TargetID": 101139, + "Directional": true + } + ] + }, + { + "ID": 6925, + "SourceStructureID": 485, + "TargetStructureID": 101138, + "Label": "485-101138 via Ribbon Synapse from 47534 -> 101140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47534, + "TargetID": 101140, + "Directional": true + } + ] + }, + { + "ID": 6926, + "SourceStructureID": 485, + "TargetStructureID": 101142, + "Label": "485-101142 via Ribbon Synapse from 101136 -> 101148", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101136, + "TargetID": 101148, + "Directional": true + } + ] + }, + { + "ID": 6927, + "SourceStructureID": 485, + "TargetStructureID": 101145, + "Label": "485-101145 via Ribbon Synapse from 19986 -> 101149, 101144 -> 101152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19986, + "TargetID": 101149, + "Directional": true + }, + { + "SourceID": 101144, + "TargetID": 101152, + "Directional": true + } + ] + }, + { + "ID": 6928, + "SourceStructureID": 485, + "TargetStructureID": 101178, + "Label": "485-101178 via Ribbon Synapse from 94356 -> 101179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94356, + "TargetID": 101179, + "Directional": true + } + ] + }, + { + "ID": 6929, + "SourceStructureID": 485, + "TargetStructureID": 101180, + "Label": "485-101180 via Ribbon Synapse from 94355 -> 101181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94355, + "TargetID": 101181, + "Directional": true + } + ] + }, + { + "ID": 6930, + "SourceStructureID": 485, + "TargetStructureID": 101182, + "Label": "485-101182 via Ribbon Synapse from 94357 -> 101183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94357, + "TargetID": 101183, + "Directional": true + } + ] + }, + { + "ID": 6931, + "SourceStructureID": 485, + "TargetStructureID": 101185, + "Label": "485-101185 via Ribbon Synapse from 94355 -> 101186", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94355, + "TargetID": 101186, + "Directional": true + } + ] + }, + { + "ID": 6932, + "SourceStructureID": 485, + "TargetStructureID": 101187, + "Label": "485-101187 via Ribbon Synapse from 94354 -> 101189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94354, + "TargetID": 101189, + "Directional": true + } + ] + }, + { + "ID": 6933, + "SourceStructureID": 485, + "TargetStructureID": 101194, + "Label": "485-101194 via Ribbon Synapse from 94354 -> 101199", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94354, + "TargetID": 101199, + "Directional": true + } + ] + }, + { + "ID": 6934, + "SourceStructureID": 485, + "TargetStructureID": 101201, + "Label": "485-101201 via Ribbon Synapse from 101204 -> 101205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101204, + "TargetID": 101205, + "Directional": true + } + ] + }, + { + "ID": 6935, + "SourceStructureID": 485, + "TargetStructureID": 101206, + "Label": "485-101206 via Ribbon Synapse from 101204 -> 101207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101204, + "TargetID": 101207, + "Directional": true + } + ] + }, + { + "ID": 6936, + "SourceStructureID": 485, + "TargetStructureID": 101220, + "Label": "485-101220 via BC Conventional Synapse from 101222 -> 101221", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101222, + "TargetID": 101221, + "Directional": true + } + ] + }, + { + "ID": 6937, + "SourceStructureID": 485, + "TargetStructureID": 101228, + "Label": "485-101228 via BC Conventional Synapse from 101227 -> 101229", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101227, + "TargetID": 101229, + "Directional": true + } + ] + }, + { + "ID": 6938, + "SourceStructureID": 485, + "TargetStructureID": 101238, + "Label": "485-101238 via Ribbon Synapse from 101237 -> 101239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101237, + "TargetID": 101239, + "Directional": true + } + ] + }, + { + "ID": 6939, + "SourceStructureID": 485, + "TargetStructureID": 101257, + "Label": "485-101257 via Ribbon Synapse from 43488 -> 101259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43488, + "TargetID": 101259, + "Directional": true + } + ] + }, + { + "ID": 6940, + "SourceStructureID": 485, + "TargetStructureID": 101261, + "Label": "485-101261 via Ribbon Synapse from 43488 -> 101263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43488, + "TargetID": 101263, + "Directional": true + } + ] + }, + { + "ID": 6941, + "SourceStructureID": 485, + "TargetStructureID": 101289, + "Label": "485-101289 via Ribbon Synapse from 101285 -> 101292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101285, + "TargetID": 101292, + "Directional": true + } + ] + }, + { + "ID": 6942, + "SourceStructureID": 485, + "TargetStructureID": 101294, + "Label": "485-101294 via Ribbon Synapse from 101296 -> 101295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101296, + "TargetID": 101295, + "Directional": true + } + ] + }, + { + "ID": 6943, + "SourceStructureID": 485, + "TargetStructureID": 101299, + "Label": "485-101299 via BC Conventional Synapse from 101298 -> 101302", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101298, + "TargetID": 101302, + "Directional": true + } + ] + }, + { + "ID": 6944, + "SourceStructureID": 485, + "TargetStructureID": 101314, + "Label": "485-101314 via Ribbon Synapse from 101296 -> 101315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101296, + "TargetID": 101315, + "Directional": true + } + ] + }, + { + "ID": 6945, + "SourceStructureID": 485, + "TargetStructureID": 101343, + "Label": "485-101343 via BC Conventional Synapse from 101338 -> 101346", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101338, + "TargetID": 101346, + "Directional": true + } + ] + }, + { + "ID": 6946, + "SourceStructureID": 485, + "TargetStructureID": 101351, + "Label": "485-101351 via BC Conventional Synapse from 101353 -> 101352", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101353, + "TargetID": 101352, + "Directional": true + } + ] + }, + { + "ID": 6947, + "SourceStructureID": 485, + "TargetStructureID": 101375, + "Label": "485-101375 via BC Conventional Synapse from 101373 -> 101376", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101373, + "TargetID": 101376, + "Directional": true + } + ] + }, + { + "ID": 6948, + "SourceStructureID": 485, + "TargetStructureID": 101392, + "Label": "485-101392 via Ribbon Synapse from 94245 -> 101426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94245, + "TargetID": 101426, + "Directional": true + } + ] + }, + { + "ID": 6949, + "SourceStructureID": 485, + "TargetStructureID": 101394, + "Label": "485-101394 via Ribbon Synapse from 94268 -> 101398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94268, + "TargetID": 101398, + "Directional": true + } + ] + }, + { + "ID": 6950, + "SourceStructureID": 485, + "TargetStructureID": 101437, + "Label": "485-101437 via Ribbon Synapse from 101434 -> 101438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101434, + "TargetID": 101438, + "Directional": true + } + ] + }, + { + "ID": 6951, + "SourceStructureID": 485, + "TargetStructureID": 101439, + "Label": "485-101439 via Ribbon Synapse from 94266 -> 101446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94266, + "TargetID": 101446, + "Directional": true + } + ] + }, + { + "ID": 6952, + "SourceStructureID": 485, + "TargetStructureID": 101466, + "Label": "485-101466 via BC Conventional Synapse from 101467 -> 101468", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101467, + "TargetID": 101468, + "Directional": true + } + ] + }, + { + "ID": 6953, + "SourceStructureID": 485, + "TargetStructureID": 101473, + "Label": "485-101473 via Ribbon Synapse from 101472 -> 101476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101472, + "TargetID": 101476, + "Directional": true + } + ] + }, + { + "ID": 6954, + "SourceStructureID": 485, + "TargetStructureID": 101474, + "Label": "485-101474 via Ribbon Synapse from 101472 -> 101475", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101472, + "TargetID": 101475, + "Directional": true + } + ] + }, + { + "ID": 6955, + "SourceStructureID": 485, + "TargetStructureID": 101704, + "Label": "485-101704 via Ribbon Synapse from 101703 -> 101705", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101703, + "TargetID": 101705, + "Directional": true + } + ] + }, + { + "ID": 6956, + "SourceStructureID": 485, + "TargetStructureID": 101707, + "Label": "485-101707 via Ribbon Synapse from 101477 -> 101708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101477, + "TargetID": 101708, + "Directional": true + } + ] + }, + { + "ID": 6957, + "SourceStructureID": 485, + "TargetStructureID": 101711, + "Label": "485-101711 via Ribbon Synapse from 101492 -> 101714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101492, + "TargetID": 101714, + "Directional": true + } + ] + }, + { + "ID": 6958, + "SourceStructureID": 485, + "TargetStructureID": 101715, + "Label": "485-101715 via Ribbon Synapse from 101492 -> 101716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101492, + "TargetID": 101716, + "Directional": true + } + ] + }, + { + "ID": 6959, + "SourceStructureID": 485, + "TargetStructureID": 101721, + "Label": "485-101721 via BC Conventional Synapse from 101723 -> 101722", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101723, + "TargetID": 101722, + "Directional": true + } + ] + }, + { + "ID": 6960, + "SourceStructureID": 485, + "TargetStructureID": 101730, + "Label": "485-101730 via BC Conventional Synapse from 101731 -> 101732", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101731, + "TargetID": 101732, + "Directional": true + } + ] + }, + { + "ID": 6961, + "SourceStructureID": 485, + "TargetStructureID": 101733, + "Label": "485-101733 via Ribbon Synapse from 47559 -> 101734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47559, + "TargetID": 101734, + "Directional": true + } + ] + }, + { + "ID": 6962, + "SourceStructureID": 485, + "TargetStructureID": 101740, + "Label": "485-101740 via Ribbon Synapse from 47558 -> 101741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47558, + "TargetID": 101741, + "Directional": true + } + ] + }, + { + "ID": 6963, + "SourceStructureID": 485, + "TargetStructureID": 101742, + "Label": "485-101742 via Ribbon Synapse from 47558 -> 101743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47558, + "TargetID": 101743, + "Directional": true + } + ] + }, + { + "ID": 6964, + "SourceStructureID": 485, + "TargetStructureID": 101744, + "Label": "485-101744 via Ribbon Synapse from 47555 -> 101746", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47555, + "TargetID": 101746, + "Directional": true + } + ] + }, + { + "ID": 6965, + "SourceStructureID": 485, + "TargetStructureID": 101751, + "Label": "485-101751 via BC Conventional Synapse from 101779 -> 101755", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101779, + "TargetID": 101755, + "Directional": true + } + ] + }, + { + "ID": 6966, + "SourceStructureID": 485, + "TargetStructureID": 101777, + "Label": "485-101777 via Ribbon Synapse from 101776 -> 101778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101776, + "TargetID": 101778, + "Directional": true + } + ] + }, + { + "ID": 6967, + "SourceStructureID": 485, + "TargetStructureID": 101781, + "Label": "485-101781 via BC Conventional Synapse from 101780 -> 101782", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101780, + "TargetID": 101782, + "Directional": true + } + ] + }, + { + "ID": 6968, + "SourceStructureID": 485, + "TargetStructureID": 101785, + "Label": "485-101785 via Ribbon Synapse from 101861 -> 101862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101861, + "TargetID": 101862, + "Directional": true + } + ] + }, + { + "ID": 6969, + "SourceStructureID": 485, + "TargetStructureID": 101793, + "Label": "485-101793 via Ribbon Synapse from 47561 -> 101795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47561, + "TargetID": 101795, + "Directional": true + } + ] + }, + { + "ID": 6970, + "SourceStructureID": 485, + "TargetStructureID": 101796, + "Label": "485-101796 via Ribbon Synapse from 47561 -> 101797", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47561, + "TargetID": 101797, + "Directional": true + } + ] + }, + { + "ID": 6971, + "SourceStructureID": 485, + "TargetStructureID": 101798, + "Label": "485-101798 via BC Conventional Synapse from 101800 -> 101799", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101800, + "TargetID": 101799, + "Directional": true + } + ] + }, + { + "ID": 6972, + "SourceStructureID": 485, + "TargetStructureID": 101801, + "Label": "485-101801 via Ribbon Synapse from 47564 -> 101806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47564, + "TargetID": 101806, + "Directional": true + } + ] + }, + { + "ID": 6973, + "SourceStructureID": 485, + "TargetStructureID": 101815, + "Label": "485-101815 via Ribbon Synapse from 101861 -> 101863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101861, + "TargetID": 101863, + "Directional": true + } + ] + }, + { + "ID": 6974, + "SourceStructureID": 485, + "TargetStructureID": 101830, + "Label": "485-101830 via BC Conventional Synapse from 101829 -> 101832", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101829, + "TargetID": 101832, + "Directional": true + } + ] + }, + { + "ID": 6975, + "SourceStructureID": 485, + "TargetStructureID": 101833, + "Label": "485-101833 via BC Conventional Synapse from 101831 -> 101834", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101831, + "TargetID": 101834, + "Directional": true + } + ] + }, + { + "ID": 6976, + "SourceStructureID": 485, + "TargetStructureID": 101837, + "Label": "485-101837 via BC Conventional Synapse from 101836 -> 101840", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101836, + "TargetID": 101840, + "Directional": true + } + ] + }, + { + "ID": 6977, + "SourceStructureID": 485, + "TargetStructureID": 101864, + "Label": "485-101864 via BC Conventional Synapse from 101856 -> 101865", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101856, + "TargetID": 101865, + "Directional": true + } + ] + }, + { + "ID": 6978, + "SourceStructureID": 485, + "TargetStructureID": 101866, + "Label": "485-101866 via Ribbon Synapse from 23146 -> 101867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23146, + "TargetID": 101867, + "Directional": true + } + ] + }, + { + "ID": 6979, + "SourceStructureID": 485, + "TargetStructureID": 101868, + "Label": "485-101868 via Ribbon Synapse from 23146 -> 101875", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23146, + "TargetID": 101875, + "Directional": true + } + ] + }, + { + "ID": 6980, + "SourceStructureID": 485, + "TargetStructureID": 101903, + "Label": "485-101903 via BC Conventional Synapse from 101905 -> 101904", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101905, + "TargetID": 101904, + "Directional": true + } + ] + }, + { + "ID": 6981, + "SourceStructureID": 485, + "TargetStructureID": 101917, + "Label": "485-101917 via Ribbon Synapse from 101916 -> 101918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101916, + "TargetID": 101918, + "Directional": true + } + ] + }, + { + "ID": 6982, + "SourceStructureID": 485, + "TargetStructureID": 101923, + "Label": "485-101923 via BC Conventional Synapse from 101922 -> 101924", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101922, + "TargetID": 101924, + "Directional": true + } + ] + }, + { + "ID": 6983, + "SourceStructureID": 485, + "TargetStructureID": 101933, + "Label": "485-101933 via BC Conventional Synapse from 101929 -> 101934", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101929, + "TargetID": 101934, + "Directional": true + } + ] + }, + { + "ID": 6984, + "SourceStructureID": 485, + "TargetStructureID": 101961, + "Label": "485-101961 via Ribbon Synapse from 101963 -> 101964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101963, + "TargetID": 101964, + "Directional": true + } + ] + }, + { + "ID": 6985, + "SourceStructureID": 485, + "TargetStructureID": 101965, + "Label": "485-101965 via Ribbon Synapse from 23149 -> 101968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23149, + "TargetID": 101968, + "Directional": true + } + ] + }, + { + "ID": 6986, + "SourceStructureID": 485, + "TargetStructureID": 101966, + "Label": "485-101966 via Ribbon Synapse from 23149 -> 101967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23149, + "TargetID": 101967, + "Directional": true + } + ] + }, + { + "ID": 6987, + "SourceStructureID": 485, + "TargetStructureID": 102007, + "Label": "485-102007 via Ribbon Synapse from 102006 -> 102010", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102006, + "TargetID": 102010, + "Directional": true + } + ] + }, + { + "ID": 6988, + "SourceStructureID": 485, + "TargetStructureID": 102014, + "Label": "485-102014 via Ribbon Synapse from 18310 -> 102019", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18310, + "TargetID": 102019, + "Directional": true + } + ] + }, + { + "ID": 6989, + "SourceStructureID": 485, + "TargetStructureID": 102023, + "Label": "485-102023 via Ribbon Synapse from 102022 -> 102031", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102022, + "TargetID": 102031, + "Directional": true + } + ] + }, + { + "ID": 6990, + "SourceStructureID": 485, + "TargetStructureID": 102032, + "Label": "485-102032 via Ribbon Synapse from 102022 -> 102033", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102022, + "TargetID": 102033, + "Directional": true + } + ] + }, + { + "ID": 6991, + "SourceStructureID": 485, + "TargetStructureID": 102034, + "Label": "485-102034 via Ribbon Synapse from 102022 -> 102035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102022, + "TargetID": 102035, + "Directional": true + } + ] + }, + { + "ID": 6992, + "SourceStructureID": 485, + "TargetStructureID": 127846, + "Label": "485-127846 via Ribbon Synapse from 100539 -> 127864, 101928 -> 101931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100539, + "TargetID": 127864, + "Directional": true + }, + { + "SourceID": 101928, + "TargetID": 101931, + "Directional": true + } + ] + }, + { + "ID": 6993, + "SourceStructureID": 488, + "TargetStructureID": 422, + "Label": "488-422 via Conventional from 87795 -> 16601, 87796 -> 87797", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87795, + "TargetID": 16601, + "Directional": true + }, + { + "SourceID": 87796, + "TargetID": 87797, + "Directional": true + } + ] + }, + { + "ID": 6994, + "SourceStructureID": 488, + "TargetStructureID": 517, + "Label": "488-517 via Conventional from 40938 -> 40939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40938, + "TargetID": 40939, + "Directional": true + } + ] + }, + { + "ID": 6995, + "SourceStructureID": 488, + "TargetStructureID": 519, + "Label": "488-519 via Conventional from 32310 -> 9298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32310, + "TargetID": 9298, + "Directional": true + } + ] + }, + { + "ID": 6996, + "SourceStructureID": 488, + "TargetStructureID": 11250, + "Label": "488-11250 via Conventional from 40940 -> 40941", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40940, + "TargetID": 40941, + "Directional": true + } + ] + }, + { + "ID": 6997, + "SourceStructureID": 492, + "TargetStructureID": 408, + "Label": "492-408 via Conventional from 35044 -> 35043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35044, + "TargetID": 35043, + "Directional": true + } + ] + }, + { + "ID": 6998, + "SourceStructureID": 492, + "TargetStructureID": 6155, + "Label": "492-6155 via Conventional from 35062 -> 35063", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35062, + "TargetID": 35063, + "Directional": true + } + ] + }, + { + "ID": 6999, + "SourceStructureID": 492, + "TargetStructureID": 7054, + "Label": "492-7054 via Conventional from 34987 -> 10895", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34987, + "TargetID": 10895, + "Directional": true + } + ] + }, + { + "ID": 7000, + "SourceStructureID": 492, + "TargetStructureID": 26079, + "Label": "492-26079 via Conventional from 35038 -> 48669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35038, + "TargetID": 48669, + "Directional": true + } + ] + }, + { + "ID": 7001, + "SourceStructureID": 492, + "TargetStructureID": 35046, + "Label": "492-35046 via Conventional from 61993 -> 61992", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61993, + "TargetID": 61992, + "Directional": true + } + ] + }, + { + "ID": 7002, + "SourceStructureID": 514, + "TargetStructureID": 478, + "Label": "514-478 via Conventional from 1171 -> 19455, 1176 -> 4634, 1189 -> 4629, 4820 -> 19441, 4826 -> 19440", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 1171, + "TargetID": 19455, + "Directional": true + }, + { + "SourceID": 1176, + "TargetID": 4634, + "Directional": true + }, + { + "SourceID": 1189, + "TargetID": 4629, + "Directional": true + }, + { + "SourceID": 4820, + "TargetID": 19441, + "Directional": true + }, + { + "SourceID": 4826, + "TargetID": 19440, + "Directional": true + } + ] + }, + { + "ID": 7003, + "SourceStructureID": 514, + "TargetStructureID": 597, + "Label": "514-597 via Conventional from 43399 -> 43400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43399, + "TargetID": 43400, + "Directional": true + } + ] + }, + { + "ID": 7004, + "SourceStructureID": 514, + "TargetStructureID": 992, + "Label": "514-992 via Conventional from 59642 -> 15120, 59643 -> 15121", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59642, + "TargetID": 15120, + "Directional": true + }, + { + "SourceID": 59643, + "TargetID": 15121, + "Directional": true + } + ] + }, + { + "ID": 7005, + "SourceStructureID": 514, + "TargetStructureID": 4567, + "Label": "514-4567 via Conventional from 6210 -> 23293, 15469 -> 15596, 15580 -> 15573, 15581 -> 15575, 15595 -> 15594, 159870 -> 159871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6210, + "TargetID": 23293, + "Directional": true + }, + { + "SourceID": 15469, + "TargetID": 15596, + "Directional": true + }, + { + "SourceID": 15580, + "TargetID": 15573, + "Directional": true + }, + { + "SourceID": 15581, + "TargetID": 15575, + "Directional": true + }, + { + "SourceID": 15595, + "TargetID": 15594, + "Directional": true + }, + { + "SourceID": 159870, + "TargetID": 159871, + "Directional": true + } + ] + }, + { + "ID": 7006, + "SourceStructureID": 514, + "TargetStructureID": 4568, + "Label": "514-4568 via Conventional from 4572 -> 43402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 4572, + "TargetID": 43402, + "Directional": true + } + ] + }, + { + "ID": 7007, + "SourceStructureID": 514, + "TargetStructureID": 5150, + "Label": "514-5150 via Conventional from 1304 -> 5172, 4576 -> 5167", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 1304, + "TargetID": 5172, + "Directional": true + }, + { + "SourceID": 4576, + "TargetID": 5167, + "Directional": true + } + ] + }, + { + "ID": 7008, + "SourceStructureID": 514, + "TargetStructureID": 6850, + "Label": "514-6850 via Conventional from 4823 -> 6854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 4823, + "TargetID": 6854, + "Directional": true + } + ] + }, + { + "ID": 7009, + "SourceStructureID": 514, + "TargetStructureID": 8485, + "Label": "514-8485 via Conventional from 1147 -> 15366, 1151 -> 15370, 11666 -> 11667, 159864 -> 159865, 159866 -> 159867, 159868 -> 159869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 1147, + "TargetID": 15366, + "Directional": true + }, + { + "SourceID": 1151, + "TargetID": 15370, + "Directional": true + }, + { + "SourceID": 11666, + "TargetID": 11667, + "Directional": true + }, + { + "SourceID": 159864, + "TargetID": 159865, + "Directional": true + }, + { + "SourceID": 159866, + "TargetID": 159867, + "Directional": true + }, + { + "SourceID": 159868, + "TargetID": 159869, + "Directional": true + } + ] + }, + { + "ID": 7010, + "SourceStructureID": 514, + "TargetStructureID": 9504, + "Label": "514-9504 via Conventional from 1370 -> 9505, 16649 -> 16648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 1370, + "TargetID": 9505, + "Directional": true + }, + { + "SourceID": 16649, + "TargetID": 16648, + "Directional": true + } + ] + }, + { + "ID": 7011, + "SourceStructureID": 514, + "TargetStructureID": 15377, + "Label": "514-15377 via Conventional from 4817 -> 15378", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 4817, + "TargetID": 15378, + "Directional": true + } + ] + }, + { + "ID": 7012, + "SourceStructureID": 514, + "TargetStructureID": 25392, + "Label": "514-25392 via Adherens from 25396 -> 25395", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 25396, + "TargetID": 25395, + "Directional": true + } + ] + }, + { + "ID": 7013, + "SourceStructureID": 514, + "TargetStructureID": 28913, + "Label": "514-28913 via Conventional from 28930 -> 28928", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 28930, + "TargetID": 28928, + "Directional": true + } + ] + }, + { + "ID": 7014, + "SourceStructureID": 514, + "TargetStructureID": 60440, + "Label": "514-60440 via Conventional from 3221 -> 60444, 3222 -> 60441, 3222 -> 60443", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 3221, + "TargetID": 60444, + "Directional": true + }, + { + "SourceID": 3222, + "TargetID": 60441, + "Directional": true + }, + { + "SourceID": 3222, + "TargetID": 60443, + "Directional": true + } + ] + }, + { + "ID": 7015, + "SourceStructureID": 514, + "TargetStructureID": 83461, + "Label": "514-83461 via Conventional from 4585 -> 83467", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 4585, + "TargetID": 83467, + "Directional": true + } + ] + }, + { + "ID": 7016, + "SourceStructureID": 516, + "TargetStructureID": 514, + "Label": "516-514 via Ribbon Synapse from 10848 -> 10849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10848, + "TargetID": 10849, + "Directional": true + } + ] + }, + { + "ID": 7017, + "SourceStructureID": 516, + "TargetStructureID": 3257, + "Label": "516-3257 via Ribbon Synapse from 6575 -> 16198, 16196 -> 16197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6575, + "TargetID": 16198, + "Directional": true + }, + { + "SourceID": 16196, + "TargetID": 16197, + "Directional": true + } + ] + }, + { + "ID": 7018, + "SourceStructureID": 516, + "TargetStructureID": 3679, + "Label": "516-3679 via Ribbon Synapse from 6188 -> 6186, 6190 -> 6189, 6510 -> 8015, 18402 -> 39335, 39329 -> 39330, 66147 -> 66148, 66149 -> 8013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6188, + "TargetID": 6186, + "Directional": true + }, + { + "SourceID": 6190, + "TargetID": 6189, + "Directional": true + }, + { + "SourceID": 6510, + "TargetID": 8015, + "Directional": true + }, + { + "SourceID": 18402, + "TargetID": 39335, + "Directional": true + }, + { + "SourceID": 39329, + "TargetID": 39330, + "Directional": true + }, + { + "SourceID": 66147, + "TargetID": 66148, + "Directional": true + }, + { + "SourceID": 66149, + "TargetID": 8013, + "Directional": true + } + ] + }, + { + "ID": 7019, + "SourceStructureID": 516, + "TargetStructureID": 4850, + "Label": "516-4850 via Ribbon Synapse from 6510 -> 14208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6510, + "TargetID": 14208, + "Directional": true + } + ] + }, + { + "ID": 7020, + "SourceStructureID": 516, + "TargetStructureID": 5331, + "Label": "516-5331 via Ribbon Synapse from 6385 -> 39172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6385, + "TargetID": 39172, + "Directional": true + } + ] + }, + { + "ID": 7021, + "SourceStructureID": 516, + "TargetStructureID": 5860, + "Label": "516-5860 via Ribbon Synapse from 16347 -> 16348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16347, + "TargetID": 16348, + "Directional": true + } + ] + }, + { + "ID": 7022, + "SourceStructureID": 516, + "TargetStructureID": 6169, + "Label": "516-6169 via Ribbon Synapse from 3737 -> 16330, 6384 -> 16224, 6385 -> 16223, 6391 -> 16247, 6393 -> 29692, 6399 -> 18392, 6405 -> 39341, 10833 -> 10832, 10835 -> 10836, 16177 -> 16176, 16204 -> 16205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3737, + "TargetID": 16330, + "Directional": true + }, + { + "SourceID": 6384, + "TargetID": 16224, + "Directional": true + }, + { + "SourceID": 6385, + "TargetID": 16223, + "Directional": true + }, + { + "SourceID": 6391, + "TargetID": 16247, + "Directional": true + }, + { + "SourceID": 6393, + "TargetID": 29692, + "Directional": true + }, + { + "SourceID": 6399, + "TargetID": 18392, + "Directional": true + }, + { + "SourceID": 6405, + "TargetID": 39341, + "Directional": true + }, + { + "SourceID": 10833, + "TargetID": 10832, + "Directional": true + }, + { + "SourceID": 10835, + "TargetID": 10836, + "Directional": true + }, + { + "SourceID": 16177, + "TargetID": 16176, + "Directional": true + }, + { + "SourceID": 16204, + "TargetID": 16205, + "Directional": true + } + ] + }, + { + "ID": 7023, + "SourceStructureID": 516, + "TargetStructureID": 9260, + "Label": "516-9260 via Ribbon Synapse from 6398 -> 39673, 6399 -> 39674, 6401 -> 39672, 64612 -> 64613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6398, + "TargetID": 39673, + "Directional": true + }, + { + "SourceID": 6399, + "TargetID": 39674, + "Directional": true + }, + { + "SourceID": 6401, + "TargetID": 39672, + "Directional": true + }, + { + "SourceID": 64612, + "TargetID": 64613, + "Directional": true + } + ] + }, + { + "ID": 7024, + "SourceStructureID": 516, + "TargetStructureID": 32046, + "Label": "516-32046 via Ribbon Synapse from 6506 -> 32048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6506, + "TargetID": 32048, + "Directional": true + } + ] + }, + { + "ID": 7025, + "SourceStructureID": 516, + "TargetStructureID": 32371, + "Label": "516-32371 via Ribbon Synapse from 3737 -> 32375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3737, + "TargetID": 32375, + "Directional": true + } + ] + }, + { + "ID": 7026, + "SourceStructureID": 516, + "TargetStructureID": 39168, + "Label": "516-39168 via Ribbon Synapse from 6384 -> 39170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6384, + "TargetID": 39170, + "Directional": true + } + ] + }, + { + "ID": 7027, + "SourceStructureID": 516, + "TargetStructureID": 39201, + "Label": "516-39201 via Ribbon Synapse from 16204 -> 64582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16204, + "TargetID": 64582, + "Directional": true + } + ] + }, + { + "ID": 7028, + "SourceStructureID": 516, + "TargetStructureID": 39208, + "Label": "516-39208 via Ribbon Synapse from 6188 -> 39211, 6498 -> 39256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6188, + "TargetID": 39211, + "Directional": true + }, + { + "SourceID": 6498, + "TargetID": 39256, + "Directional": true + } + ] + }, + { + "ID": 7029, + "SourceStructureID": 516, + "TargetStructureID": 39244, + "Label": "516-39244 via Ribbon Synapse from 6507 -> 39247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6507, + "TargetID": 39247, + "Directional": true + } + ] + }, + { + "ID": 7030, + "SourceStructureID": 516, + "TargetStructureID": 39324, + "Label": "516-39324 via Ribbon Synapse from 39329 -> 39328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39329, + "TargetID": 39328, + "Directional": true + } + ] + }, + { + "ID": 7031, + "SourceStructureID": 516, + "TargetStructureID": 39331, + "Label": "516-39331 via Ribbon Synapse from 18402 -> 39336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18402, + "TargetID": 39336, + "Directional": true + } + ] + }, + { + "ID": 7032, + "SourceStructureID": 516, + "TargetStructureID": 39342, + "Label": "516-39342 via Ribbon Synapse from 6391 -> 114817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6391, + "TargetID": 114817, + "Directional": true + } + ] + }, + { + "ID": 7033, + "SourceStructureID": 516, + "TargetStructureID": 39516, + "Label": "516-39516 via Ribbon Synapse from 16177 -> 39519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16177, + "TargetID": 39519, + "Directional": true + } + ] + }, + { + "ID": 7034, + "SourceStructureID": 516, + "TargetStructureID": 39560, + "Label": "516-39560 via Ribbon Synapse from 39566 -> 39565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39566, + "TargetID": 39565, + "Directional": true + } + ] + }, + { + "ID": 7035, + "SourceStructureID": 516, + "TargetStructureID": 39575, + "Label": "516-39575 via Ribbon Synapse from 16347 -> 39579", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16347, + "TargetID": 39579, + "Directional": true + } + ] + }, + { + "ID": 7036, + "SourceStructureID": 516, + "TargetStructureID": 39590, + "Label": "516-39590 via Ribbon Synapse from 6393 -> 39593", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6393, + "TargetID": 39593, + "Directional": true + } + ] + }, + { + "ID": 7037, + "SourceStructureID": 516, + "TargetStructureID": 39688, + "Label": "516-39688 via Ribbon Synapse from 39692 -> 39691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39692, + "TargetID": 39691, + "Directional": true + } + ] + }, + { + "ID": 7038, + "SourceStructureID": 516, + "TargetStructureID": 40856, + "Label": "516-40856 via Ribbon Synapse from 123169 -> 123168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123169, + "TargetID": 123168, + "Directional": true + } + ] + }, + { + "ID": 7039, + "SourceStructureID": 516, + "TargetStructureID": 40863, + "Label": "516-40863 via Ribbon Synapse from 16349 -> 40864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16349, + "TargetID": 40864, + "Directional": true + } + ] + }, + { + "ID": 7040, + "SourceStructureID": 517, + "TargetStructureID": 514, + "Label": "517-514 via Ribbon Synapse from 10812 -> 10811, 16411 -> 1591, 16421 -> 3081, 16422 -> 3082, 16575 -> 1602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10812, + "TargetID": 10811, + "Directional": true + }, + { + "SourceID": 16411, + "TargetID": 1591, + "Directional": true + }, + { + "SourceID": 16421, + "TargetID": 3081, + "Directional": true + }, + { + "SourceID": 16422, + "TargetID": 3082, + "Directional": true + }, + { + "SourceID": 16575, + "TargetID": 1602, + "Directional": true + } + ] + }, + { + "ID": 7041, + "SourceStructureID": 517, + "TargetStructureID": 591, + "Label": "517-591 via Ribbon Synapse from 14947 -> 40892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14947, + "TargetID": 40892, + "Directional": true + } + ] + }, + { + "ID": 7042, + "SourceStructureID": 517, + "TargetStructureID": 3679, + "Label": "517-3679 via Ribbon Synapse from 14945 -> 3714, 14946 -> 3711, 14947 -> 14915, 16420 -> 16419, 16428 -> 16429, 16442 -> 16431, 16443 -> 16432, 19155 -> 19156, 19157 -> 19160, 19158 -> 19159, 19161 -> 92719, 19163 -> 33031, 19164 -> 35626, 41038 -> 3722, 66136 -> 66137", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14945, + "TargetID": 3714, + "Directional": true + }, + { + "SourceID": 14946, + "TargetID": 3711, + "Directional": true + }, + { + "SourceID": 14947, + "TargetID": 14915, + "Directional": true + }, + { + "SourceID": 16420, + "TargetID": 16419, + "Directional": true + }, + { + "SourceID": 16428, + "TargetID": 16429, + "Directional": true + }, + { + "SourceID": 16442, + "TargetID": 16431, + "Directional": true + }, + { + "SourceID": 16443, + "TargetID": 16432, + "Directional": true + }, + { + "SourceID": 19155, + "TargetID": 19156, + "Directional": true + }, + { + "SourceID": 19157, + "TargetID": 19160, + "Directional": true + }, + { + "SourceID": 19158, + "TargetID": 19159, + "Directional": true + }, + { + "SourceID": 19161, + "TargetID": 92719, + "Directional": true + }, + { + "SourceID": 19163, + "TargetID": 33031, + "Directional": true + }, + { + "SourceID": 19164, + "TargetID": 35626, + "Directional": true + }, + { + "SourceID": 41038, + "TargetID": 3722, + "Directional": true + }, + { + "SourceID": 66136, + "TargetID": 66137, + "Directional": true + } + ] + }, + { + "ID": 7043, + "SourceStructureID": 517, + "TargetStructureID": 4850, + "Label": "517-4850 via Ribbon Synapse from 11624 -> 24300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11624, + "TargetID": 24300, + "Directional": true + } + ] + }, + { + "ID": 7044, + "SourceStructureID": 517, + "TargetStructureID": 4943, + "Label": "517-4943 via Ribbon Synapse from 19157 -> 40987, 19158 -> 40979", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19157, + "TargetID": 40987, + "Directional": true + }, + { + "SourceID": 19158, + "TargetID": 40979, + "Directional": true + } + ] + }, + { + "ID": 7045, + "SourceStructureID": 517, + "TargetStructureID": 5303, + "Label": "517-5303 via Ribbon Synapse from 19164 -> 35625", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19164, + "TargetID": 35625, + "Directional": true + } + ] + }, + { + "ID": 7046, + "SourceStructureID": 517, + "TargetStructureID": 5609, + "Label": "517-5609 via Ribbon Synapse from 16422 -> 20659, 16428 -> 20661", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16422, + "TargetID": 20659, + "Directional": true + }, + { + "SourceID": 16428, + "TargetID": 20661, + "Directional": true + } + ] + }, + { + "ID": 7047, + "SourceStructureID": 517, + "TargetStructureID": 6169, + "Label": "517-6169 via Ribbon Synapse from 6903 -> 18158, 10814 -> 11623, 11624 -> 9460, 14165 -> 14166, 41034 -> 41035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6903, + "TargetID": 18158, + "Directional": true + }, + { + "SourceID": 10814, + "TargetID": 11623, + "Directional": true + }, + { + "SourceID": 11624, + "TargetID": 9460, + "Directional": true + }, + { + "SourceID": 14165, + "TargetID": 14166, + "Directional": true + }, + { + "SourceID": 41034, + "TargetID": 41035, + "Directional": true + } + ] + }, + { + "ID": 7048, + "SourceStructureID": 517, + "TargetStructureID": 40896, + "Label": "517-40896 via Ribbon Synapse from 41024 -> 41023", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 41024, + "TargetID": 41023, + "Directional": true + } + ] + }, + { + "ID": 7049, + "SourceStructureID": 517, + "TargetStructureID": 40919, + "Label": "517-40919 via Ribbon Synapse from 19165 -> 40922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19165, + "TargetID": 40922, + "Directional": true + } + ] + }, + { + "ID": 7050, + "SourceStructureID": 517, + "TargetStructureID": 40927, + "Label": "517-40927 via Ribbon Synapse from 16421 -> 40930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16421, + "TargetID": 40930, + "Directional": true + } + ] + }, + { + "ID": 7051, + "SourceStructureID": 517, + "TargetStructureID": 40934, + "Label": "517-40934 via Ribbon Synapse from 14946 -> 40936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14946, + "TargetID": 40936, + "Directional": true + } + ] + }, + { + "ID": 7052, + "SourceStructureID": 517, + "TargetStructureID": 40951, + "Label": "517-40951 via Ribbon Synapse from 19163 -> 51427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19163, + "TargetID": 51427, + "Directional": true + } + ] + }, + { + "ID": 7053, + "SourceStructureID": 517, + "TargetStructureID": 40956, + "Label": "517-40956 via Ribbon Synapse from 19162 -> 40959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19162, + "TargetID": 40959, + "Directional": true + } + ] + }, + { + "ID": 7054, + "SourceStructureID": 517, + "TargetStructureID": 40965, + "Label": "517-40965 via Ribbon Synapse from 19155 -> 40968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19155, + "TargetID": 40968, + "Directional": true + } + ] + }, + { + "ID": 7055, + "SourceStructureID": 517, + "TargetStructureID": 60523, + "Label": "517-60523 via Ribbon Synapse from 19166 -> 123156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19166, + "TargetID": 123156, + "Directional": true + } + ] + }, + { + "ID": 7056, + "SourceStructureID": 517, + "TargetStructureID": 89887, + "Label": "517-89887 via Ribbon Synapse from 89893 -> 89894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89893, + "TargetID": 89894, + "Directional": true + } + ] + }, + { + "ID": 7057, + "SourceStructureID": 518, + "TargetStructureID": 179, + "Label": "518-179 via Ribbon Synapse from 3442 -> 25302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3442, + "TargetID": 25302, + "Directional": true + } + ] + }, + { + "ID": 7058, + "SourceStructureID": 518, + "TargetStructureID": 476, + "Label": "518-476 via Ribbon Synapse from 2303 -> 2300, 2323 -> 2331, 2325 -> 2333, 3354 -> 16029, 3371 -> 14713, 3380 -> 14741, 3387 -> 14999, 3399 -> 14998, 3413 -> 14992, 3419 -> 14996, 3439 -> 2442, 3442 -> 18012, 3445 -> 32137, 3457 -> 2414, 3459 -> 2416, 3475 -> 2448, 3487 -> 18015, 3503 -> 36695, 3519 -> 18013, 5783 -> 37191, 14722 -> 3305, 18014 -> 2441", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 2303, + "TargetID": 2300, + "Directional": true + }, + { + "SourceID": 2323, + "TargetID": 2331, + "Directional": true + }, + { + "SourceID": 2325, + "TargetID": 2333, + "Directional": true + }, + { + "SourceID": 3354, + "TargetID": 16029, + "Directional": true + }, + { + "SourceID": 3371, + "TargetID": 14713, + "Directional": true + }, + { + "SourceID": 3380, + "TargetID": 14741, + "Directional": true + }, + { + "SourceID": 3387, + "TargetID": 14999, + "Directional": true + }, + { + "SourceID": 3399, + "TargetID": 14998, + "Directional": true + }, + { + "SourceID": 3413, + "TargetID": 14992, + "Directional": true + }, + { + "SourceID": 3419, + "TargetID": 14996, + "Directional": true + }, + { + "SourceID": 3439, + "TargetID": 2442, + "Directional": true + }, + { + "SourceID": 3442, + "TargetID": 18012, + "Directional": true + }, + { + "SourceID": 3445, + "TargetID": 32137, + "Directional": true + }, + { + "SourceID": 3457, + "TargetID": 2414, + "Directional": true + }, + { + "SourceID": 3459, + "TargetID": 2416, + "Directional": true + }, + { + "SourceID": 3475, + "TargetID": 2448, + "Directional": true + }, + { + "SourceID": 3487, + "TargetID": 18015, + "Directional": true + }, + { + "SourceID": 3503, + "TargetID": 36695, + "Directional": true + }, + { + "SourceID": 3519, + "TargetID": 18013, + "Directional": true + }, + { + "SourceID": 5783, + "TargetID": 37191, + "Directional": true + }, + { + "SourceID": 14722, + "TargetID": 3305, + "Directional": true + }, + { + "SourceID": 18014, + "TargetID": 2441, + "Directional": true + } + ] + }, + { + "ID": 7059, + "SourceStructureID": 518, + "TargetStructureID": 514, + "Label": "518-514 via Ribbon Synapse from 3303 -> 3296, 3471 -> 37188, 14717 -> 1554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3303, + "TargetID": 3296, + "Directional": true + }, + { + "SourceID": 3471, + "TargetID": 37188, + "Directional": true + }, + { + "SourceID": 14717, + "TargetID": 1554, + "Directional": true + } + ] + }, + { + "ID": 7060, + "SourceStructureID": 518, + "TargetStructureID": 591, + "Label": "518-591 via Ribbon Synapse from 3371 -> 36470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3371, + "TargetID": 36470, + "Directional": true + } + ] + }, + { + "ID": 7061, + "SourceStructureID": 518, + "TargetStructureID": 4835, + "Label": "518-4835 via Ribbon Synapse from 3390 -> 36743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3390, + "TargetID": 36743, + "Directional": true + } + ] + }, + { + "ID": 7062, + "SourceStructureID": 518, + "TargetStructureID": 4941, + "Label": "518-4941 via Ribbon Synapse from 3439 -> 118354", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3439, + "TargetID": 118354, + "Directional": true + } + ] + }, + { + "ID": 7063, + "SourceStructureID": 518, + "TargetStructureID": 4942, + "Label": "518-4942 via Ribbon Synapse from 3475 -> 118357", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3475, + "TargetID": 118357, + "Directional": true + } + ] + }, + { + "ID": 7064, + "SourceStructureID": 518, + "TargetStructureID": 5006, + "Label": "518-5006 via Ribbon Synapse from 3303 -> 6547, 3459 -> 18866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3303, + "TargetID": 6547, + "Directional": true + }, + { + "SourceID": 3459, + "TargetID": 18866, + "Directional": true + } + ] + }, + { + "ID": 7065, + "SourceStructureID": 518, + "TargetStructureID": 5394, + "Label": "518-5394 via Ribbon Synapse from 3380 -> 22813, 3387 -> 22814", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3380, + "TargetID": 22813, + "Directional": true + }, + { + "SourceID": 3387, + "TargetID": 22814, + "Directional": true + } + ] + }, + { + "ID": 7066, + "SourceStructureID": 518, + "TargetStructureID": 9023, + "Label": "518-9023 via Ribbon Synapse from 14722 -> 36672, 14723 -> 36673", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14722, + "TargetID": 36672, + "Directional": true + }, + { + "SourceID": 14723, + "TargetID": 36673, + "Directional": true + } + ] + }, + { + "ID": 7067, + "SourceStructureID": 518, + "TargetStructureID": 13313, + "Label": "518-13313 via Ribbon Synapse from 3449 -> 37185, 3486 -> 37190", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3449, + "TargetID": 37185, + "Directional": true + }, + { + "SourceID": 3486, + "TargetID": 37190, + "Directional": true + } + ] + }, + { + "ID": 7068, + "SourceStructureID": 518, + "TargetStructureID": 32848, + "Label": "518-32848 via Ribbon Synapse from 3354 -> 36414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3354, + "TargetID": 36414, + "Directional": true + } + ] + }, + { + "ID": 7069, + "SourceStructureID": 518, + "TargetStructureID": 36276, + "Label": "518-36276 via Ribbon Synapse from 2303 -> 36278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 2303, + "TargetID": 36278, + "Directional": true + } + ] + }, + { + "ID": 7070, + "SourceStructureID": 518, + "TargetStructureID": 36481, + "Label": "518-36481 via Ribbon Synapse from 2325 -> 36495, 3425 -> 36494, 3427 -> 36493, 14711 -> 36484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 2325, + "TargetID": 36495, + "Directional": true + }, + { + "SourceID": 3425, + "TargetID": 36494, + "Directional": true + }, + { + "SourceID": 3427, + "TargetID": 36493, + "Directional": true + }, + { + "SourceID": 14711, + "TargetID": 36484, + "Directional": true + } + ] + }, + { + "ID": 7071, + "SourceStructureID": 518, + "TargetStructureID": 36501, + "Label": "518-36501 via Ribbon Synapse from 3427 -> 36503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3427, + "TargetID": 36503, + "Directional": true + } + ] + }, + { + "ID": 7072, + "SourceStructureID": 518, + "TargetStructureID": 36650, + "Label": "518-36650 via Ribbon Synapse from 3435 -> 36653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3435, + "TargetID": 36653, + "Directional": true + } + ] + }, + { + "ID": 7073, + "SourceStructureID": 518, + "TargetStructureID": 36661, + "Label": "518-36661 via Ribbon Synapse from 3471 -> 42787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3471, + "TargetID": 42787, + "Directional": true + } + ] + }, + { + "ID": 7074, + "SourceStructureID": 518, + "TargetStructureID": 36724, + "Label": "518-36724 via Ribbon Synapse from 3390 -> 36732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3390, + "TargetID": 36732, + "Directional": true + } + ] + }, + { + "ID": 7075, + "SourceStructureID": 518, + "TargetStructureID": 37183, + "Label": "518-37183 via Ribbon Synapse from 5783 -> 118374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5783, + "TargetID": 118374, + "Directional": true + } + ] + }, + { + "ID": 7076, + "SourceStructureID": 518, + "TargetStructureID": 49487, + "Label": "518-49487 via Ribbon Synapse from 18014 -> 118358", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18014, + "TargetID": 118358, + "Directional": true + } + ] + }, + { + "ID": 7077, + "SourceStructureID": 518, + "TargetStructureID": 87929, + "Label": "518-87929 via Ribbon Synapse from 18867 -> 87932", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18867, + "TargetID": 87932, + "Directional": true + } + ] + }, + { + "ID": 7078, + "SourceStructureID": 519, + "TargetStructureID": 179, + "Label": "519-179 via Conventional from 9292 -> 9338", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9292, + "TargetID": 9338, + "Directional": true + } + ] + }, + { + "ID": 7079, + "SourceStructureID": 519, + "TargetStructureID": 179, + "Label": "519-179 via Ribbon Synapse from 9284 -> 25788, 9299 -> 9331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9284, + "TargetID": 25788, + "Directional": true + }, + { + "SourceID": 9299, + "TargetID": 9331, + "Directional": true + } + ] + }, + { + "ID": 7080, + "SourceStructureID": 519, + "TargetStructureID": 476, + "Label": "519-476 via Ribbon Synapse from 9237 -> 25373, 16518 -> 16519, 16520 -> 16521, 22616 -> 3345, 25435 -> 25434", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9237, + "TargetID": 25373, + "Directional": true + }, + { + "SourceID": 16518, + "TargetID": 16519, + "Directional": true + }, + { + "SourceID": 16520, + "TargetID": 16521, + "Directional": true + }, + { + "SourceID": 22616, + "TargetID": 3345, + "Directional": true + }, + { + "SourceID": 25435, + "TargetID": 25434, + "Directional": true + } + ] + }, + { + "ID": 7081, + "SourceStructureID": 519, + "TargetStructureID": 488, + "Label": "519-488 via Ribbon Synapse from 9297 -> 39850", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9297, + "TargetID": 39850, + "Directional": true + } + ] + }, + { + "ID": 7082, + "SourceStructureID": 519, + "TargetStructureID": 514, + "Label": "519-514 via Ribbon Synapse from 1376 -> 1383, 1464 -> 1466, 9237 -> 3334, 9241 -> 3335, 9243 -> 3579, 9250 -> 3340, 9278 -> 15081, 9279 -> 159772, 9282 -> 93914, 9284 -> 159753, 9299 -> 9302, 13807 -> 13806, 13810 -> 13809, 16154 -> 16155, 16158 -> 3596, 16520 -> 16541, 16531 -> 16522, 16533 -> 16534, 16537 -> 16536, 22589 -> 1448, 22617 -> 3282, 133246 -> 133245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1376, + "TargetID": 1383, + "Directional": true + }, + { + "SourceID": 1464, + "TargetID": 1466, + "Directional": true + }, + { + "SourceID": 9237, + "TargetID": 3334, + "Directional": true + }, + { + "SourceID": 9241, + "TargetID": 3335, + "Directional": true + }, + { + "SourceID": 9243, + "TargetID": 3579, + "Directional": true + }, + { + "SourceID": 9250, + "TargetID": 3340, + "Directional": true + }, + { + "SourceID": 9278, + "TargetID": 15081, + "Directional": true + }, + { + "SourceID": 9279, + "TargetID": 159772, + "Directional": true + }, + { + "SourceID": 9282, + "TargetID": 93914, + "Directional": true + }, + { + "SourceID": 9284, + "TargetID": 159753, + "Directional": true + }, + { + "SourceID": 9299, + "TargetID": 9302, + "Directional": true + }, + { + "SourceID": 13807, + "TargetID": 13806, + "Directional": true + }, + { + "SourceID": 13810, + "TargetID": 13809, + "Directional": true + }, + { + "SourceID": 16154, + "TargetID": 16155, + "Directional": true + }, + { + "SourceID": 16158, + "TargetID": 3596, + "Directional": true + }, + { + "SourceID": 16520, + "TargetID": 16541, + "Directional": true + }, + { + "SourceID": 16531, + "TargetID": 16522, + "Directional": true + }, + { + "SourceID": 16533, + "TargetID": 16534, + "Directional": true + }, + { + "SourceID": 16537, + "TargetID": 16536, + "Directional": true + }, + { + "SourceID": 22589, + "TargetID": 1448, + "Directional": true + }, + { + "SourceID": 22617, + "TargetID": 3282, + "Directional": true + }, + { + "SourceID": 133246, + "TargetID": 133245, + "Directional": true + } + ] + }, + { + "ID": 7083, + "SourceStructureID": 519, + "TargetStructureID": 2610, + "Label": "519-2610 via Ribbon Synapse from 1468 -> 66173, 9254 -> 9255, 66171 -> 66172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1468, + "TargetID": 66173, + "Directional": true + }, + { + "SourceID": 9254, + "TargetID": 9255, + "Directional": true + }, + { + "SourceID": 66171, + "TargetID": 66172, + "Directional": true + } + ] + }, + { + "ID": 7084, + "SourceStructureID": 519, + "TargetStructureID": 5303, + "Label": "519-5303 via Ribbon Synapse from 1468 -> 8744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1468, + "TargetID": 8744, + "Directional": true + } + ] + }, + { + "ID": 7085, + "SourceStructureID": 519, + "TargetStructureID": 9260, + "Label": "519-9260 via Postsynapse from 9259 -> 9272", + "Type": "Postsynapse", + "Directional": true, + "Links": [ + { + "SourceID": 9259, + "TargetID": 9272, + "Directional": true + } + ] + }, + { + "ID": 7086, + "SourceStructureID": 519, + "TargetStructureID": 9260, + "Label": "519-9260 via Ribbon Synapse from 9254 -> 159777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9254, + "TargetID": 159777, + "Directional": true + } + ] + }, + { + "ID": 7087, + "SourceStructureID": 519, + "TargetStructureID": 25327, + "Label": "519-25327 via Ribbon Synapse from 16518 -> 25333, 25332 -> 25331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16518, + "TargetID": 25333, + "Directional": true + }, + { + "SourceID": 25332, + "TargetID": 25331, + "Directional": true + } + ] + }, + { + "ID": 7088, + "SourceStructureID": 519, + "TargetStructureID": 25359, + "Label": "519-25359 via Ribbon Synapse from 16526 -> 159763, 16533 -> 39871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16526, + "TargetID": 159763, + "Directional": true + }, + { + "SourceID": 16533, + "TargetID": 39871, + "Directional": true + } + ] + }, + { + "ID": 7089, + "SourceStructureID": 519, + "TargetStructureID": 25385, + "Label": "519-25385 via Ribbon Synapse from 9278 -> 25855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9278, + "TargetID": 25855, + "Directional": true + } + ] + }, + { + "ID": 7090, + "SourceStructureID": 519, + "TargetStructureID": 25429, + "Label": "519-25429 via Ribbon Synapse from 16531 -> 159767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16531, + "TargetID": 159767, + "Directional": true + } + ] + }, + { + "ID": 7091, + "SourceStructureID": 519, + "TargetStructureID": 25440, + "Label": "519-25440 via Ribbon Synapse from 9243 -> 25459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9243, + "TargetID": 25459, + "Directional": true + } + ] + }, + { + "ID": 7092, + "SourceStructureID": 519, + "TargetStructureID": 25529, + "Label": "519-25529 via Ribbon Synapse from 13807 -> 25530", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13807, + "TargetID": 25530, + "Directional": true + } + ] + }, + { + "ID": 7093, + "SourceStructureID": 519, + "TargetStructureID": 25551, + "Label": "519-25551 via Ribbon Synapse from 25470 -> 101275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25470, + "TargetID": 101275, + "Directional": true + } + ] + }, + { + "ID": 7094, + "SourceStructureID": 519, + "TargetStructureID": 25561, + "Label": "519-25561 via Ribbon Synapse from 25470 -> 25709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25470, + "TargetID": 25709, + "Directional": true + } + ] + }, + { + "ID": 7095, + "SourceStructureID": 519, + "TargetStructureID": 25688, + "Label": "519-25688 via Ribbon Synapse from 159780 -> 159781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159780, + "TargetID": 159781, + "Directional": true + } + ] + }, + { + "ID": 7096, + "SourceStructureID": 521, + "TargetStructureID": 478, + "Label": "521-478 via Conventional from 9640 -> 613", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9640, + "TargetID": 613, + "Directional": true + } + ] + }, + { + "ID": 7097, + "SourceStructureID": 525, + "TargetStructureID": 9693, + "Label": "525-9693 via Conventional from 6293 -> 9768, 6294 -> 9767", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6293, + "TargetID": 9768, + "Directional": true + }, + { + "SourceID": 6294, + "TargetID": 9767, + "Directional": true + } + ] + }, + { + "ID": 7098, + "SourceStructureID": 525, + "TargetStructureID": 46741, + "Label": "525-46741 via Conventional from 6254 -> 46748", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6254, + "TargetID": 46748, + "Directional": true + } + ] + }, + { + "ID": 7099, + "SourceStructureID": 525, + "TargetStructureID": 92880, + "Label": "525-92880 via Conventional from 132750 -> 132749", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132750, + "TargetID": 132749, + "Directional": true + } + ] + }, + { + "ID": 7100, + "SourceStructureID": 545, + "TargetStructureID": 176, + "Label": "545-176 via Conventional from 546 -> 5730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 546, + "TargetID": 5730, + "Directional": true + } + ] + }, + { + "ID": 7101, + "SourceStructureID": 545, + "TargetStructureID": 5303, + "Label": "545-5303 via Conventional from 24043 -> 24042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24043, + "TargetID": 24042, + "Directional": true + } + ] + }, + { + "ID": 7102, + "SourceStructureID": 573, + "TargetStructureID": 572, + "Label": "573-572 via Conventional from 90169 -> 40238, 90171 -> 90172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90169, + "TargetID": 40238, + "Directional": true + }, + { + "SourceID": 90171, + "TargetID": 90172, + "Directional": true + } + ] + }, + { + "ID": 7103, + "SourceStructureID": 573, + "TargetStructureID": 6166, + "Label": "573-6166 via Conventional from 22315 -> 22320", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22315, + "TargetID": 22320, + "Directional": true + } + ] + }, + { + "ID": 7104, + "SourceStructureID": 579, + "TargetStructureID": 5345, + "Label": "579-5345 via Ribbon Synapse from 18461 -> 18462, 18464 -> 18463, 88874 -> 88873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18461, + "TargetID": 18462, + "Directional": true + }, + { + "SourceID": 18464, + "TargetID": 18463, + "Directional": true + }, + { + "SourceID": 88874, + "TargetID": 88873, + "Directional": true + } + ] + }, + { + "ID": 7105, + "SourceStructureID": 579, + "TargetStructureID": 32312, + "Label": "579-32312 via Ribbon Synapse from 11041 -> 32315, 64543 -> 32315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11041, + "TargetID": 32315, + "Directional": true + }, + { + "SourceID": 64543, + "TargetID": 32315, + "Directional": true + } + ] + }, + { + "ID": 7106, + "SourceStructureID": 579, + "TargetStructureID": 129144, + "Label": "579-129144 via Ribbon Synapse from 18461 -> 129153, 18464 -> 129152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18461, + "TargetID": 129153, + "Directional": true + }, + { + "SourceID": 18464, + "TargetID": 129152, + "Directional": true + } + ] + }, + { + "ID": 7107, + "SourceStructureID": 590, + "TargetStructureID": 2063, + "Label": "590-2063 via Conventional from 81514 -> 81515", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81514, + "TargetID": 81515, + "Directional": true + } + ] + }, + { + "ID": 7108, + "SourceStructureID": 591, + "TargetStructureID": 171, + "Label": "591-171 via Conventional from 15442 -> 5725", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15442, + "TargetID": 5725, + "Directional": true + } + ] + }, + { + "ID": 7109, + "SourceStructureID": 591, + "TargetStructureID": 476, + "Label": "591-476 via Conventional from 14956 -> 2386, 16445 -> 16444", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14956, + "TargetID": 2386, + "Directional": true + }, + { + "SourceID": 16445, + "TargetID": 16444, + "Directional": true + } + ] + }, + { + "ID": 7110, + "SourceStructureID": 591, + "TargetStructureID": 517, + "Label": "591-517 via Conventional from 40888 -> 40889, 40890 -> 40891", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40888, + "TargetID": 40889, + "Directional": true + }, + { + "SourceID": 40890, + "TargetID": 40891, + "Directional": true + } + ] + }, + { + "ID": 7111, + "SourceStructureID": 591, + "TargetStructureID": 518, + "Label": "591-518 via Conventional from 36441 -> 3366, 36468 -> 3362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36441, + "TargetID": 3366, + "Directional": true + }, + { + "SourceID": 36468, + "TargetID": 3362, + "Directional": true + } + ] + }, + { + "ID": 7112, + "SourceStructureID": 591, + "TargetStructureID": 6561, + "Label": "591-6561 via Conventional from 6550 -> 6563, 6550 -> 8345, 6552 -> 8301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6550, + "TargetID": 6563, + "Directional": true + }, + { + "SourceID": 6550, + "TargetID": 8345, + "Directional": true + }, + { + "SourceID": 6552, + "TargetID": 8301, + "Directional": true + } + ] + }, + { + "ID": 7113, + "SourceStructureID": 591, + "TargetStructureID": 8586, + "Label": "591-8586 via Conventional from 10348 -> 10349, 10351 -> 8604", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10348, + "TargetID": 10349, + "Directional": true + }, + { + "SourceID": 10351, + "TargetID": 8604, + "Directional": true + } + ] + }, + { + "ID": 7114, + "SourceStructureID": 591, + "TargetStructureID": 10412, + "Label": "591-10412 via Conventional from 10379 -> 10420, 10423 -> 10422", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10379, + "TargetID": 10420, + "Directional": true + }, + { + "SourceID": 10423, + "TargetID": 10422, + "Directional": true + } + ] + }, + { + "ID": 7115, + "SourceStructureID": 591, + "TargetStructureID": 15942, + "Label": "591-15942 via Conventional from 10289 -> 15960, 15959 -> 15958", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10289, + "TargetID": 15960, + "Directional": true + }, + { + "SourceID": 15959, + "TargetID": 15958, + "Directional": true + } + ] + }, + { + "ID": 7116, + "SourceStructureID": 591, + "TargetStructureID": 15979, + "Label": "591-15979 via Conventional from 36445 -> 36446, 36447 -> 36448, 36452 -> 36453, 36454 -> 36455, 36459 -> 36460", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36445, + "TargetID": 36446, + "Directional": true + }, + { + "SourceID": 36447, + "TargetID": 36448, + "Directional": true + }, + { + "SourceID": 36452, + "TargetID": 36453, + "Directional": true + }, + { + "SourceID": 36454, + "TargetID": 36455, + "Directional": true + }, + { + "SourceID": 36459, + "TargetID": 36460, + "Directional": true + } + ] + }, + { + "ID": 7117, + "SourceStructureID": 591, + "TargetStructureID": 89253, + "Label": "591-89253 via Conventional from 10299 -> 89255, 89256 -> 89257", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10299, + "TargetID": 89255, + "Directional": true + }, + { + "SourceID": 89256, + "TargetID": 89257, + "Directional": true + } + ] + }, + { + "ID": 7118, + "SourceStructureID": 592, + "TargetStructureID": 591, + "Label": "592-591 via Conventional from 10084 -> 10083", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10084, + "TargetID": 10083, + "Directional": true + } + ] + }, + { + "ID": 7119, + "SourceStructureID": 593, + "TargetStructureID": 162, + "Label": "593-162 via Ribbon Synapse from 70257 -> 70258", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70257, + "TargetID": 70258, + "Directional": true + } + ] + }, + { + "ID": 7120, + "SourceStructureID": 593, + "TargetStructureID": 596, + "Label": "593-596 via Ribbon Synapse from 33858 -> 59136, 59100 -> 59136, 63047 -> 68611, 68610 -> 68611, 69360 -> 59136, 115704 -> 59136", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33858, + "TargetID": 59136, + "Directional": true + }, + { + "SourceID": 59100, + "TargetID": 59136, + "Directional": true + }, + { + "SourceID": 63047, + "TargetID": 68611, + "Directional": true + }, + { + "SourceID": 68610, + "TargetID": 68611, + "Directional": true + }, + { + "SourceID": 69360, + "TargetID": 59136, + "Directional": true + }, + { + "SourceID": 115704, + "TargetID": 59136, + "Directional": true + } + ] + }, + { + "ID": 7121, + "SourceStructureID": 593, + "TargetStructureID": 4890, + "Label": "593-4890 via BC Conventional Synapse from 68139 -> 68143", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68139, + "TargetID": 68143, + "Directional": true + } + ] + }, + { + "ID": 7122, + "SourceStructureID": 593, + "TargetStructureID": 4890, + "Label": "593-4890 via Ribbon Synapse from 7705 -> 6104, 36527 -> 6109, 49568 -> 6107, 49572 -> 64913, 130733 -> 6108", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7705, + "TargetID": 6104, + "Directional": true + }, + { + "SourceID": 36527, + "TargetID": 6109, + "Directional": true + }, + { + "SourceID": 49568, + "TargetID": 6107, + "Directional": true + }, + { + "SourceID": 49572, + "TargetID": 64913, + "Directional": true + }, + { + "SourceID": 130733, + "TargetID": 6108, + "Directional": true + } + ] + }, + { + "ID": 7123, + "SourceStructureID": 593, + "TargetStructureID": 5117, + "Label": "593-5117 via Ribbon Synapse from 15889 -> 61805, 28430 -> 66803, 65503 -> 65504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15889, + "TargetID": 61805, + "Directional": true + }, + { + "SourceID": 28430, + "TargetID": 66803, + "Directional": true + }, + { + "SourceID": 65503, + "TargetID": 65504, + "Directional": true + } + ] + }, + { + "ID": 7124, + "SourceStructureID": 593, + "TargetStructureID": 5118, + "Label": "593-5118 via Ribbon Synapse from 120216 -> 120223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120216, + "TargetID": 120223, + "Directional": true + } + ] + }, + { + "ID": 7125, + "SourceStructureID": 593, + "TargetStructureID": 5618, + "Label": "593-5618 via BC Conventional Synapse from 65959 -> 65961", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65959, + "TargetID": 65961, + "Directional": true + } + ] + }, + { + "ID": 7126, + "SourceStructureID": 593, + "TargetStructureID": 5618, + "Label": "593-5618 via Ribbon Synapse from 59627 -> 66508, 130874 -> 66541", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59627, + "TargetID": 66508, + "Directional": true + }, + { + "SourceID": 130874, + "TargetID": 66541, + "Directional": true + } + ] + }, + { + "ID": 7127, + "SourceStructureID": 593, + "TargetStructureID": 6857, + "Label": "593-6857 via Ribbon Synapse from 59625 -> 6886, 59626 -> 6886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59625, + "TargetID": 6886, + "Directional": true + }, + { + "SourceID": 59626, + "TargetID": 6886, + "Directional": true + } + ] + }, + { + "ID": 7128, + "SourceStructureID": 593, + "TargetStructureID": 8033, + "Label": "593-8033 via Ribbon Synapse from 130778 -> 68437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130778, + "TargetID": 68437, + "Directional": true + } + ] + }, + { + "ID": 7129, + "SourceStructureID": 593, + "TargetStructureID": 8577, + "Label": "593-8577 via Ribbon Synapse from 15899 -> 15886, 61957 -> 61970, 61957 -> 115685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15899, + "TargetID": 15886, + "Directional": true + }, + { + "SourceID": 61957, + "TargetID": 61970, + "Directional": true + }, + { + "SourceID": 61957, + "TargetID": 115685, + "Directional": true + } + ] + }, + { + "ID": 7130, + "SourceStructureID": 593, + "TargetStructureID": 8579, + "Label": "593-8579 via BC Conventional Synapse from 52498 -> 61875", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52498, + "TargetID": 61875, + "Directional": true + } + ] + }, + { + "ID": 7131, + "SourceStructureID": 593, + "TargetStructureID": 8579, + "Label": "593-8579 via Ribbon Synapse from 7717 -> 62868, 28429 -> 59113, 61957 -> 65260, 65858 -> 65862, 66480 -> 66482, 130775 -> 61874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7717, + "TargetID": 62868, + "Directional": true + }, + { + "SourceID": 28429, + "TargetID": 59113, + "Directional": true + }, + { + "SourceID": 61957, + "TargetID": 65260, + "Directional": true + }, + { + "SourceID": 65858, + "TargetID": 65862, + "Directional": true + }, + { + "SourceID": 66480, + "TargetID": 66482, + "Directional": true + }, + { + "SourceID": 130775, + "TargetID": 61874, + "Directional": true + } + ] + }, + { + "ID": 7132, + "SourceStructureID": 593, + "TargetStructureID": 8580, + "Label": "593-8580 via BC Conventional Synapse from 115726 -> 59653", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115726, + "TargetID": 59653, + "Directional": true + } + ] + }, + { + "ID": 7133, + "SourceStructureID": 593, + "TargetStructureID": 8580, + "Label": "593-8580 via Ribbon Synapse from 36524 -> 59648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36524, + "TargetID": 59648, + "Directional": true + } + ] + }, + { + "ID": 7134, + "SourceStructureID": 593, + "TargetStructureID": 8588, + "Label": "593-8588 via Ribbon Synapse from 7710 -> 32714, 7764 -> 32709, 52470 -> 59729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7710, + "TargetID": 32714, + "Directional": true + }, + { + "SourceID": 7764, + "TargetID": 32709, + "Directional": true + }, + { + "SourceID": 52470, + "TargetID": 59729, + "Directional": true + } + ] + }, + { + "ID": 7135, + "SourceStructureID": 593, + "TargetStructureID": 12687, + "Label": "593-12687 via BC Conventional Synapse from 130708 -> 130709", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130708, + "TargetID": 130709, + "Directional": true + } + ] + }, + { + "ID": 7136, + "SourceStructureID": 593, + "TargetStructureID": 12804, + "Label": "593-12804 via BC Conventional Synapse from 130995 -> 115670", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130995, + "TargetID": 115670, + "Directional": true + } + ] + }, + { + "ID": 7137, + "SourceStructureID": 593, + "TargetStructureID": 12804, + "Label": "593-12804 via Ribbon Synapse from 59700 -> 59702", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59700, + "TargetID": 59702, + "Directional": true + } + ] + }, + { + "ID": 7138, + "SourceStructureID": 593, + "TargetStructureID": 15796, + "Label": "593-15796 via Ribbon Synapse from 62886 -> 20135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62886, + "TargetID": 20135, + "Directional": true + } + ] + }, + { + "ID": 7139, + "SourceStructureID": 593, + "TargetStructureID": 18282, + "Label": "593-18282 via Unknown from 87215 -> 87216", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 87215, + "TargetID": 87216, + "Directional": true + } + ] + }, + { + "ID": 7140, + "SourceStructureID": 593, + "TargetStructureID": 20537, + "Label": "593-20537 via Ribbon Synapse from 115678 -> 24138, 115679 -> 24138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115678, + "TargetID": 24138, + "Directional": true + }, + { + "SourceID": 115679, + "TargetID": 24138, + "Directional": true + } + ] + }, + { + "ID": 7141, + "SourceStructureID": 593, + "TargetStructureID": 22974, + "Label": "593-22974 via BC Conventional Synapse from 115690 -> 68546", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115690, + "TargetID": 68546, + "Directional": true + } + ] + }, + { + "ID": 7142, + "SourceStructureID": 593, + "TargetStructureID": 22974, + "Label": "593-22974 via Ribbon Synapse from 7713 -> 61822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7713, + "TargetID": 61822, + "Directional": true + } + ] + }, + { + "ID": 7143, + "SourceStructureID": 593, + "TargetStructureID": 24148, + "Label": "593-24148 via BC Conventional Synapse from 7842 -> 24149", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7842, + "TargetID": 24149, + "Directional": true + } + ] + }, + { + "ID": 7144, + "SourceStructureID": 593, + "TargetStructureID": 31024, + "Label": "593-31024 via Ribbon Synapse from 28434 -> 63042", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28434, + "TargetID": 63042, + "Directional": true + } + ] + }, + { + "ID": 7145, + "SourceStructureID": 593, + "TargetStructureID": 31161, + "Label": "593-31161 via Ribbon Synapse from 7764 -> 67545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7764, + "TargetID": 67545, + "Directional": true + } + ] + }, + { + "ID": 7146, + "SourceStructureID": 593, + "TargetStructureID": 32913, + "Label": "593-32913 via Ribbon Synapse from 66440 -> 66442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66440, + "TargetID": 66442, + "Directional": true + } + ] + }, + { + "ID": 7147, + "SourceStructureID": 593, + "TargetStructureID": 33092, + "Label": "593-33092 via Ribbon Synapse from 66630 -> 66631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66630, + "TargetID": 66631, + "Directional": true + } + ] + }, + { + "ID": 7148, + "SourceStructureID": 593, + "TargetStructureID": 36516, + "Label": "593-36516 via Ribbon Synapse from 36597 -> 36595, 130712 -> 135146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36597, + "TargetID": 36595, + "Directional": true + }, + { + "SourceID": 130712, + "TargetID": 135146, + "Directional": true + } + ] + }, + { + "ID": 7149, + "SourceStructureID": 593, + "TargetStructureID": 39973, + "Label": "593-39973 via BC Conventional Synapse from 115688 -> 115687", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115688, + "TargetID": 115687, + "Directional": true + } + ] + }, + { + "ID": 7150, + "SourceStructureID": 593, + "TargetStructureID": 45574, + "Label": "593-45574 via Ribbon Synapse from 67717 -> 67842", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67717, + "TargetID": 67842, + "Directional": true + } + ] + }, + { + "ID": 7151, + "SourceStructureID": 593, + "TargetStructureID": 47104, + "Label": "593-47104 via Ribbon Synapse from 50442 -> 87205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50442, + "TargetID": 87205, + "Directional": true + } + ] + }, + { + "ID": 7152, + "SourceStructureID": 593, + "TargetStructureID": 49489, + "Label": "593-49489 via Ribbon Synapse from 49598 -> 49597", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49598, + "TargetID": 49597, + "Directional": true + } + ] + }, + { + "ID": 7153, + "SourceStructureID": 593, + "TargetStructureID": 54078, + "Label": "593-54078 via Ribbon Synapse from 53816 -> 67801, 66405 -> 66409, 67717 -> 67844", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53816, + "TargetID": 67801, + "Directional": true + }, + { + "SourceID": 66405, + "TargetID": 66409, + "Directional": true + }, + { + "SourceID": 67717, + "TargetID": 67844, + "Directional": true + } + ] + }, + { + "ID": 7154, + "SourceStructureID": 593, + "TargetStructureID": 54744, + "Label": "593-54744 via Ribbon Synapse from 28394 -> 130764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28394, + "TargetID": 130764, + "Directional": true + } + ] + }, + { + "ID": 7155, + "SourceStructureID": 593, + "TargetStructureID": 58696, + "Label": "593-58696 via Ribbon Synapse from 59619 -> 66705, 63963 -> 86962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59619, + "TargetID": 66705, + "Directional": true + }, + { + "SourceID": 63963, + "TargetID": 86962, + "Directional": true + } + ] + }, + { + "ID": 7156, + "SourceStructureID": 593, + "TargetStructureID": 59121, + "Label": "593-59121 via Ribbon Synapse from 33859 -> 59122, 59095 -> 59122", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33859, + "TargetID": 59122, + "Directional": true + }, + { + "SourceID": 59095, + "TargetID": 59122, + "Directional": true + } + ] + }, + { + "ID": 7157, + "SourceStructureID": 593, + "TargetStructureID": 59137, + "Label": "593-59137 via BC Conventional Synapse from 59104 -> 59138", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59104, + "TargetID": 59138, + "Directional": true + } + ] + }, + { + "ID": 7158, + "SourceStructureID": 593, + "TargetStructureID": 59139, + "Label": "593-59139 via Ribbon Synapse from 7699 -> 59140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7699, + "TargetID": 59140, + "Directional": true + } + ] + }, + { + "ID": 7159, + "SourceStructureID": 593, + "TargetStructureID": 59145, + "Label": "593-59145 via BC Conventional Synapse from 59144 -> 85026", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59144, + "TargetID": 85026, + "Directional": true + } + ] + }, + { + "ID": 7160, + "SourceStructureID": 593, + "TargetStructureID": 59333, + "Label": "593-59333 via Ribbon Synapse from 7701 -> 59336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7701, + "TargetID": 59336, + "Directional": true + } + ] + }, + { + "ID": 7161, + "SourceStructureID": 593, + "TargetStructureID": 59523, + "Label": "593-59523 via BC Conventional Synapse from 59529 -> 59526", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59529, + "TargetID": 59526, + "Directional": true + } + ] + }, + { + "ID": 7162, + "SourceStructureID": 593, + "TargetStructureID": 59524, + "Label": "593-59524 via BC Conventional Synapse from 59530 -> 59525", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59530, + "TargetID": 59525, + "Directional": true + } + ] + }, + { + "ID": 7163, + "SourceStructureID": 593, + "TargetStructureID": 59531, + "Label": "593-59531 via BC Conventional Synapse from 59530 -> 59532", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59530, + "TargetID": 59532, + "Directional": true + } + ] + }, + { + "ID": 7164, + "SourceStructureID": 593, + "TargetStructureID": 59548, + "Label": "593-59548 via Ribbon Synapse from 7704 -> 59549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7704, + "TargetID": 59549, + "Directional": true + } + ] + }, + { + "ID": 7165, + "SourceStructureID": 593, + "TargetStructureID": 59589, + "Label": "593-59589 via BC Conventional Synapse from 59590 -> 59591", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59590, + "TargetID": 59591, + "Directional": true + } + ] + }, + { + "ID": 7166, + "SourceStructureID": 593, + "TargetStructureID": 59696, + "Label": "593-59696 via Ribbon Synapse from 59695 -> 59697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59695, + "TargetID": 59697, + "Directional": true + } + ] + }, + { + "ID": 7167, + "SourceStructureID": 593, + "TargetStructureID": 61773, + "Label": "593-61773 via Ribbon Synapse from 7705 -> 130951", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7705, + "TargetID": 130951, + "Directional": true + } + ] + }, + { + "ID": 7168, + "SourceStructureID": 593, + "TargetStructureID": 61775, + "Label": "593-61775 via Ribbon Synapse from 7810 -> 61776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7810, + "TargetID": 61776, + "Directional": true + } + ] + }, + { + "ID": 7169, + "SourceStructureID": 593, + "TargetStructureID": 61779, + "Label": "593-61779 via Ribbon Synapse from 7816 -> 61780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7816, + "TargetID": 61780, + "Directional": true + } + ] + }, + { + "ID": 7170, + "SourceStructureID": 593, + "TargetStructureID": 61785, + "Label": "593-61785 via Ribbon Synapse from 7819 -> 61786", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7819, + "TargetID": 61786, + "Directional": true + } + ] + }, + { + "ID": 7171, + "SourceStructureID": 593, + "TargetStructureID": 61797, + "Label": "593-61797 via Ribbon Synapse from 15891 -> 61877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15891, + "TargetID": 61877, + "Directional": true + } + ] + }, + { + "ID": 7172, + "SourceStructureID": 593, + "TargetStructureID": 61799, + "Label": "593-61799 via Ribbon Synapse from 15889 -> 61803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15889, + "TargetID": 61803, + "Directional": true + } + ] + }, + { + "ID": 7173, + "SourceStructureID": 593, + "TargetStructureID": 61811, + "Label": "593-61811 via Ribbon Synapse from 28394 -> 61812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28394, + "TargetID": 61812, + "Directional": true + } + ] + }, + { + "ID": 7174, + "SourceStructureID": 593, + "TargetStructureID": 61813, + "Label": "593-61813 via Ribbon Synapse from 7713 -> 61821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7713, + "TargetID": 61821, + "Directional": true + } + ] + }, + { + "ID": 7175, + "SourceStructureID": 593, + "TargetStructureID": 61817, + "Label": "593-61817 via Ribbon Synapse from 7711 -> 61825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7711, + "TargetID": 61825, + "Directional": true + } + ] + }, + { + "ID": 7176, + "SourceStructureID": 593, + "TargetStructureID": 61823, + "Label": "593-61823 via Ribbon Synapse from 7713 -> 61824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7713, + "TargetID": 61824, + "Directional": true + } + ] + }, + { + "ID": 7177, + "SourceStructureID": 593, + "TargetStructureID": 61836, + "Label": "593-61836 via BC Conventional Synapse from 115743 -> 115742", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115743, + "TargetID": 115742, + "Directional": true + } + ] + }, + { + "ID": 7178, + "SourceStructureID": 593, + "TargetStructureID": 61836, + "Label": "593-61836 via Ribbon Synapse from 7722 -> 67513, 53822 -> 68113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7722, + "TargetID": 67513, + "Directional": true + }, + { + "SourceID": 53822, + "TargetID": 68113, + "Directional": true + } + ] + }, + { + "ID": 7179, + "SourceStructureID": 593, + "TargetStructureID": 61840, + "Label": "593-61840 via BC Conventional Synapse from 61839 -> 61841", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61839, + "TargetID": 61841, + "Directional": true + } + ] + }, + { + "ID": 7180, + "SourceStructureID": 593, + "TargetStructureID": 61842, + "Label": "593-61842 via Ribbon Synapse from 28423 -> 61843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28423, + "TargetID": 61843, + "Directional": true + } + ] + }, + { + "ID": 7181, + "SourceStructureID": 593, + "TargetStructureID": 61853, + "Label": "593-61853 via Ribbon Synapse from 28418 -> 61855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28418, + "TargetID": 61855, + "Directional": true + } + ] + }, + { + "ID": 7182, + "SourceStructureID": 593, + "TargetStructureID": 61857, + "Label": "593-61857 via Ribbon Synapse from 28404 -> 130765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28404, + "TargetID": 130765, + "Directional": true + } + ] + }, + { + "ID": 7183, + "SourceStructureID": 593, + "TargetStructureID": 61862, + "Label": "593-61862 via BC Conventional Synapse from 65253 -> 65255", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65253, + "TargetID": 65255, + "Directional": true + } + ] + }, + { + "ID": 7184, + "SourceStructureID": 593, + "TargetStructureID": 61864, + "Label": "593-61864 via Ribbon Synapse from 28419 -> 61865, 65312 -> 65314, 66480 -> 66486, 130784 -> 65315, 130789 -> 65476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28419, + "TargetID": 61865, + "Directional": true + }, + { + "SourceID": 65312, + "TargetID": 65314, + "Directional": true + }, + { + "SourceID": 66480, + "TargetID": 66486, + "Directional": true + }, + { + "SourceID": 130784, + "TargetID": 65315, + "Directional": true + }, + { + "SourceID": 130789, + "TargetID": 65476, + "Directional": true + } + ] + }, + { + "ID": 7185, + "SourceStructureID": 593, + "TargetStructureID": 61868, + "Label": "593-61868 via Ribbon Synapse from 130775 -> 61872", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130775, + "TargetID": 61872, + "Directional": true + } + ] + }, + { + "ID": 7186, + "SourceStructureID": 593, + "TargetStructureID": 61878, + "Label": "593-61878 via Ribbon Synapse from 28392 -> 61879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28392, + "TargetID": 61879, + "Directional": true + } + ] + }, + { + "ID": 7187, + "SourceStructureID": 593, + "TargetStructureID": 61880, + "Label": "593-61880 via Ribbon Synapse from 28415 -> 61881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28415, + "TargetID": 61881, + "Directional": true + } + ] + }, + { + "ID": 7188, + "SourceStructureID": 593, + "TargetStructureID": 61882, + "Label": "593-61882 via BC Conventional Synapse from 82196 -> 82197", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82196, + "TargetID": 82197, + "Directional": true + } + ] + }, + { + "ID": 7189, + "SourceStructureID": 593, + "TargetStructureID": 61891, + "Label": "593-61891 via BC Conventional Synapse from 61890 -> 61893", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61890, + "TargetID": 61893, + "Directional": true + } + ] + }, + { + "ID": 7190, + "SourceStructureID": 593, + "TargetStructureID": 61897, + "Label": "593-61897 via BC Conventional Synapse from 65256 -> 65257", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65256, + "TargetID": 65257, + "Directional": true + } + ] + }, + { + "ID": 7191, + "SourceStructureID": 593, + "TargetStructureID": 61897, + "Label": "593-61897 via Ribbon Synapse from 130776 -> 61899", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130776, + "TargetID": 61899, + "Directional": true + } + ] + }, + { + "ID": 7192, + "SourceStructureID": 593, + "TargetStructureID": 61898, + "Label": "593-61898 via Ribbon Synapse from 28396 -> 68398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28396, + "TargetID": 68398, + "Directional": true + } + ] + }, + { + "ID": 7193, + "SourceStructureID": 593, + "TargetStructureID": 61914, + "Label": "593-61914 via Adherens from 61915 -> 61916", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 61915, + "TargetID": 61916, + "Directional": true + } + ] + }, + { + "ID": 7194, + "SourceStructureID": 593, + "TargetStructureID": 61920, + "Label": "593-61920 via Ribbon Synapse from 28419 -> 83361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28419, + "TargetID": 83361, + "Directional": true + } + ] + }, + { + "ID": 7195, + "SourceStructureID": 593, + "TargetStructureID": 61923, + "Label": "593-61923 via Ribbon Synapse from 28390 -> 61924, 115697 -> 61924", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28390, + "TargetID": 61924, + "Directional": true + }, + { + "SourceID": 115697, + "TargetID": 61924, + "Directional": true + } + ] + }, + { + "ID": 7196, + "SourceStructureID": 593, + "TargetStructureID": 61933, + "Label": "593-61933 via Ribbon Synapse from 50440 -> 68886, 68071 -> 68078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50440, + "TargetID": 68886, + "Directional": true + }, + { + "SourceID": 68071, + "TargetID": 68078, + "Directional": true + } + ] + }, + { + "ID": 7197, + "SourceStructureID": 593, + "TargetStructureID": 61936, + "Label": "593-61936 via Ribbon Synapse from 28406 -> 61937", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28406, + "TargetID": 61937, + "Directional": true + } + ] + }, + { + "ID": 7198, + "SourceStructureID": 593, + "TargetStructureID": 61956, + "Label": "593-61956 via Ribbon Synapse from 50447 -> 61958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50447, + "TargetID": 61958, + "Directional": true + } + ] + }, + { + "ID": 7199, + "SourceStructureID": 593, + "TargetStructureID": 61960, + "Label": "593-61960 via Ribbon Synapse from 50440 -> 61964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50440, + "TargetID": 61964, + "Directional": true + } + ] + }, + { + "ID": 7200, + "SourceStructureID": 593, + "TargetStructureID": 61965, + "Label": "593-61965 via BC Conventional Synapse from 68411 -> 68410", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68411, + "TargetID": 68410, + "Directional": true + } + ] + }, + { + "ID": 7201, + "SourceStructureID": 593, + "TargetStructureID": 61982, + "Label": "593-61982 via BC Conventional Synapse from 65292 -> 65293", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65292, + "TargetID": 65293, + "Directional": true + } + ] + }, + { + "ID": 7202, + "SourceStructureID": 593, + "TargetStructureID": 64362, + "Label": "593-64362 via Ribbon Synapse from 64367 -> 64366", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64367, + "TargetID": 64366, + "Directional": true + } + ] + }, + { + "ID": 7203, + "SourceStructureID": 593, + "TargetStructureID": 64491, + "Label": "593-64491 via Ribbon Synapse from 28421 -> 64494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28421, + "TargetID": 64494, + "Directional": true + } + ] + }, + { + "ID": 7204, + "SourceStructureID": 593, + "TargetStructureID": 64492, + "Label": "593-64492 via Ribbon Synapse from 28421 -> 64493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28421, + "TargetID": 64493, + "Directional": true + } + ] + }, + { + "ID": 7205, + "SourceStructureID": 593, + "TargetStructureID": 65258, + "Label": "593-65258 via Ribbon Synapse from 130776 -> 65259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130776, + "TargetID": 65259, + "Directional": true + } + ] + }, + { + "ID": 7206, + "SourceStructureID": 593, + "TargetStructureID": 65267, + "Label": "593-65267 via BC Conventional Synapse from 115749 -> 115748", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115749, + "TargetID": 115748, + "Directional": true + } + ] + }, + { + "ID": 7207, + "SourceStructureID": 593, + "TargetStructureID": 65267, + "Label": "593-65267 via Ribbon Synapse from 65264 -> 65268", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65264, + "TargetID": 65268, + "Directional": true + } + ] + }, + { + "ID": 7208, + "SourceStructureID": 593, + "TargetStructureID": 65271, + "Label": "593-65271 via Ribbon Synapse from 28404 -> 65272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28404, + "TargetID": 65272, + "Directional": true + } + ] + }, + { + "ID": 7209, + "SourceStructureID": 593, + "TargetStructureID": 65276, + "Label": "593-65276 via Ribbon Synapse from 65273 -> 65277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65273, + "TargetID": 65277, + "Directional": true + } + ] + }, + { + "ID": 7210, + "SourceStructureID": 593, + "TargetStructureID": 65284, + "Label": "593-65284 via Ribbon Synapse from 65414 -> 65285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65414, + "TargetID": 65285, + "Directional": true + } + ] + }, + { + "ID": 7211, + "SourceStructureID": 593, + "TargetStructureID": 65303, + "Label": "593-65303 via Ribbon Synapse from 65305 -> 65304", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65305, + "TargetID": 65304, + "Directional": true + } + ] + }, + { + "ID": 7212, + "SourceStructureID": 593, + "TargetStructureID": 65324, + "Label": "593-65324 via Ribbon Synapse from 63033 -> 65325", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63033, + "TargetID": 65325, + "Directional": true + } + ] + }, + { + "ID": 7213, + "SourceStructureID": 593, + "TargetStructureID": 65349, + "Label": "593-65349 via Ribbon Synapse from 65348 -> 65350", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65348, + "TargetID": 65350, + "Directional": true + } + ] + }, + { + "ID": 7214, + "SourceStructureID": 593, + "TargetStructureID": 65351, + "Label": "593-65351 via Ribbon Synapse from 67313 -> 67316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67313, + "TargetID": 67316, + "Directional": true + } + ] + }, + { + "ID": 7215, + "SourceStructureID": 593, + "TargetStructureID": 65375, + "Label": "593-65375 via Ribbon Synapse from 65387 -> 65386", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65387, + "TargetID": 65386, + "Directional": true + } + ] + }, + { + "ID": 7216, + "SourceStructureID": 593, + "TargetStructureID": 65376, + "Label": "593-65376 via Ribbon Synapse from 59683 -> 65857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59683, + "TargetID": 65857, + "Directional": true + } + ] + }, + { + "ID": 7217, + "SourceStructureID": 593, + "TargetStructureID": 65388, + "Label": "593-65388 via Ribbon Synapse from 65387 -> 65389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65387, + "TargetID": 65389, + "Directional": true + } + ] + }, + { + "ID": 7218, + "SourceStructureID": 593, + "TargetStructureID": 65408, + "Label": "593-65408 via BC Conventional Synapse from 115723 -> 115722", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115723, + "TargetID": 115722, + "Directional": true + } + ] + }, + { + "ID": 7219, + "SourceStructureID": 593, + "TargetStructureID": 65411, + "Label": "593-65411 via Ribbon Synapse from 130784 -> 81896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130784, + "TargetID": 81896, + "Directional": true + } + ] + }, + { + "ID": 7220, + "SourceStructureID": 593, + "TargetStructureID": 65454, + "Label": "593-65454 via Ribbon Synapse from 65453 -> 65455, 65529 -> 65531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65453, + "TargetID": 65455, + "Directional": true + }, + { + "SourceID": 65529, + "TargetID": 65531, + "Directional": true + } + ] + }, + { + "ID": 7221, + "SourceStructureID": 593, + "TargetStructureID": 65477, + "Label": "593-65477 via Ribbon Synapse from 66429 -> 66432, 130789 -> 65478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66429, + "TargetID": 66432, + "Directional": true + }, + { + "SourceID": 130789, + "TargetID": 65478, + "Directional": true + } + ] + }, + { + "ID": 7222, + "SourceStructureID": 593, + "TargetStructureID": 65532, + "Label": "593-65532 via Ribbon Synapse from 65529 -> 65533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65529, + "TargetID": 65533, + "Directional": true + } + ] + }, + { + "ID": 7223, + "SourceStructureID": 593, + "TargetStructureID": 65536, + "Label": "593-65536 via BC Conventional Synapse from 67087 -> 67088", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67087, + "TargetID": 67088, + "Directional": true + } + ] + }, + { + "ID": 7224, + "SourceStructureID": 593, + "TargetStructureID": 65536, + "Label": "593-65536 via Ribbon Synapse from 66839 -> 67066", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66839, + "TargetID": 67066, + "Directional": true + } + ] + }, + { + "ID": 7225, + "SourceStructureID": 593, + "TargetStructureID": 65561, + "Label": "593-65561 via Ribbon Synapse from 65560 -> 65562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65560, + "TargetID": 65562, + "Directional": true + } + ] + }, + { + "ID": 7226, + "SourceStructureID": 593, + "TargetStructureID": 65579, + "Label": "593-65579 via Ribbon Synapse from 115724 -> 130757", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115724, + "TargetID": 130757, + "Directional": true + } + ] + }, + { + "ID": 7227, + "SourceStructureID": 593, + "TargetStructureID": 65623, + "Label": "593-65623 via BC Conventional Synapse from 115778 -> 115779", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115778, + "TargetID": 115779, + "Directional": true + } + ] + }, + { + "ID": 7228, + "SourceStructureID": 593, + "TargetStructureID": 65864, + "Label": "593-65864 via BC Conventional Synapse from 65889 -> 65888", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65889, + "TargetID": 65888, + "Directional": true + } + ] + }, + { + "ID": 7229, + "SourceStructureID": 593, + "TargetStructureID": 65864, + "Label": "593-65864 via Ribbon Synapse from 7748 -> 65879, 65858 -> 65865", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7748, + "TargetID": 65879, + "Directional": true + }, + { + "SourceID": 65858, + "TargetID": 65865, + "Directional": true + } + ] + }, + { + "ID": 7230, + "SourceStructureID": 593, + "TargetStructureID": 66028, + "Label": "593-66028 via BC Conventional Synapse from 66027 -> 66029", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66027, + "TargetID": 66029, + "Directional": true + } + ] + }, + { + "ID": 7231, + "SourceStructureID": 593, + "TargetStructureID": 66031, + "Label": "593-66031 via BC Conventional Synapse from 66052 -> 66051", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66052, + "TargetID": 66051, + "Directional": true + } + ] + }, + { + "ID": 7232, + "SourceStructureID": 593, + "TargetStructureID": 66073, + "Label": "593-66073 via Ribbon Synapse from 28436 -> 68513, 65529 -> 66074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28436, + "TargetID": 68513, + "Directional": true + }, + { + "SourceID": 65529, + "TargetID": 66074, + "Directional": true + } + ] + }, + { + "ID": 7233, + "SourceStructureID": 593, + "TargetStructureID": 66089, + "Label": "593-66089 via Ribbon Synapse from 28439 -> 66091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28439, + "TargetID": 66091, + "Directional": true + } + ] + }, + { + "ID": 7234, + "SourceStructureID": 593, + "TargetStructureID": 66100, + "Label": "593-66100 via BC Conventional Synapse from 68529 -> 68530", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68529, + "TargetID": 68530, + "Directional": true + } + ] + }, + { + "ID": 7235, + "SourceStructureID": 593, + "TargetStructureID": 66111, + "Label": "593-66111 via Ribbon Synapse from 28443 -> 66112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28443, + "TargetID": 66112, + "Directional": true + } + ] + }, + { + "ID": 7236, + "SourceStructureID": 593, + "TargetStructureID": 66114, + "Label": "593-66114 via Ribbon Synapse from 7738 -> 66116", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7738, + "TargetID": 66116, + "Directional": true + } + ] + }, + { + "ID": 7237, + "SourceStructureID": 593, + "TargetStructureID": 66283, + "Label": "593-66283 via BC Conventional Synapse from 66282 -> 66284", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66282, + "TargetID": 66284, + "Directional": true + } + ] + }, + { + "ID": 7238, + "SourceStructureID": 593, + "TargetStructureID": 66299, + "Label": "593-66299 via BC Conventional Synapse from 66298 -> 66300", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66298, + "TargetID": 66300, + "Directional": true + } + ] + }, + { + "ID": 7239, + "SourceStructureID": 593, + "TargetStructureID": 66303, + "Label": "593-66303 via Ribbon Synapse from 59788 -> 66306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59788, + "TargetID": 66306, + "Directional": true + } + ] + }, + { + "ID": 7240, + "SourceStructureID": 593, + "TargetStructureID": 66316, + "Label": "593-66316 via BC Conventional Synapse from 66315 -> 66317, 66320 -> 66321", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66315, + "TargetID": 66317, + "Directional": true + }, + { + "SourceID": 66320, + "TargetID": 66321, + "Directional": true + } + ] + }, + { + "ID": 7241, + "SourceStructureID": 593, + "TargetStructureID": 66323, + "Label": "593-66323 via Ribbon Synapse from 66435 -> 130869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66435, + "TargetID": 130869, + "Directional": true + } + ] + }, + { + "ID": 7242, + "SourceStructureID": 593, + "TargetStructureID": 66371, + "Label": "593-66371 via BC Conventional Synapse from 66370 -> 66372", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66370, + "TargetID": 66372, + "Directional": true + } + ] + }, + { + "ID": 7243, + "SourceStructureID": 593, + "TargetStructureID": 66401, + "Label": "593-66401 via Ribbon Synapse from 7760 -> 66424, 66405 -> 66406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7760, + "TargetID": 66424, + "Directional": true + }, + { + "SourceID": 66405, + "TargetID": 66406, + "Directional": true + } + ] + }, + { + "ID": 7244, + "SourceStructureID": 593, + "TargetStructureID": 66407, + "Label": "593-66407 via Ribbon Synapse from 49570 -> 67242, 66405 -> 66408, 86279 -> 130988", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49570, + "TargetID": 67242, + "Directional": true + }, + { + "SourceID": 66405, + "TargetID": 66408, + "Directional": true + }, + { + "SourceID": 86279, + "TargetID": 130988, + "Directional": true + } + ] + }, + { + "ID": 7245, + "SourceStructureID": 593, + "TargetStructureID": 66436, + "Label": "593-66436 via Ribbon Synapse from 66435 -> 66437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66435, + "TargetID": 66437, + "Directional": true + } + ] + }, + { + "ID": 7246, + "SourceStructureID": 593, + "TargetStructureID": 66443, + "Label": "593-66443 via Ribbon Synapse from 66440 -> 66444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66440, + "TargetID": 66444, + "Directional": true + } + ] + }, + { + "ID": 7247, + "SourceStructureID": 593, + "TargetStructureID": 66496, + "Label": "593-66496 via Ribbon Synapse from 66435 -> 66497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66435, + "TargetID": 66497, + "Directional": true + } + ] + }, + { + "ID": 7248, + "SourceStructureID": 593, + "TargetStructureID": 66498, + "Label": "593-66498 via BC Conventional Synapse from 66501 -> 66502", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66501, + "TargetID": 66502, + "Directional": true + } + ] + }, + { + "ID": 7249, + "SourceStructureID": 593, + "TargetStructureID": 66503, + "Label": "593-66503 via Ribbon Synapse from 59627 -> 66506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59627, + "TargetID": 66506, + "Directional": true + } + ] + }, + { + "ID": 7250, + "SourceStructureID": 593, + "TargetStructureID": 66516, + "Label": "593-66516 via Ribbon Synapse from 59622 -> 66519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59622, + "TargetID": 66519, + "Directional": true + } + ] + }, + { + "ID": 7251, + "SourceStructureID": 593, + "TargetStructureID": 66520, + "Label": "593-66520 via Ribbon Synapse from 66522 -> 66521", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66522, + "TargetID": 66521, + "Directional": true + } + ] + }, + { + "ID": 7252, + "SourceStructureID": 593, + "TargetStructureID": 66539, + "Label": "593-66539 via Ribbon Synapse from 130874 -> 66540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130874, + "TargetID": 66540, + "Directional": true + } + ] + }, + { + "ID": 7253, + "SourceStructureID": 593, + "TargetStructureID": 66634, + "Label": "593-66634 via Ribbon Synapse from 59626 -> 66639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59626, + "TargetID": 66639, + "Directional": true + } + ] + }, + { + "ID": 7254, + "SourceStructureID": 593, + "TargetStructureID": 66640, + "Label": "593-66640 via BC Conventional Synapse from 66642 -> 66641", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66642, + "TargetID": 66641, + "Directional": true + } + ] + }, + { + "ID": 7255, + "SourceStructureID": 593, + "TargetStructureID": 66682, + "Label": "593-66682 via Ribbon Synapse from 59619 -> 66683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59619, + "TargetID": 66683, + "Directional": true + } + ] + }, + { + "ID": 7256, + "SourceStructureID": 593, + "TargetStructureID": 66693, + "Label": "593-66693 via Ribbon Synapse from 130751 -> 66694", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130751, + "TargetID": 66694, + "Directional": true + } + ] + }, + { + "ID": 7257, + "SourceStructureID": 593, + "TargetStructureID": 66696, + "Label": "593-66696 via Ribbon Synapse from 130751 -> 66697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130751, + "TargetID": 66697, + "Directional": true + } + ] + }, + { + "ID": 7258, + "SourceStructureID": 593, + "TargetStructureID": 66702, + "Label": "593-66702 via Ribbon Synapse from 59618 -> 66729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59618, + "TargetID": 66729, + "Directional": true + } + ] + }, + { + "ID": 7259, + "SourceStructureID": 593, + "TargetStructureID": 66706, + "Label": "593-66706 via Ribbon Synapse from 59619 -> 66707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59619, + "TargetID": 66707, + "Directional": true + } + ] + }, + { + "ID": 7260, + "SourceStructureID": 593, + "TargetStructureID": 66731, + "Label": "593-66731 via BC Conventional Synapse from 115750 -> 115751", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115750, + "TargetID": 115751, + "Directional": true + } + ] + }, + { + "ID": 7261, + "SourceStructureID": 593, + "TargetStructureID": 66764, + "Label": "593-66764 via BC Conventional Synapse from 66766 -> 66767", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66766, + "TargetID": 66767, + "Directional": true + } + ] + }, + { + "ID": 7262, + "SourceStructureID": 593, + "TargetStructureID": 66768, + "Label": "593-66768 via BC Conventional Synapse from 115718 -> 115717", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115718, + "TargetID": 115717, + "Directional": true + } + ] + }, + { + "ID": 7263, + "SourceStructureID": 593, + "TargetStructureID": 66768, + "Label": "593-66768 via Ribbon Synapse from 28436 -> 68428, 28439 -> 68432", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28436, + "TargetID": 68428, + "Directional": true + }, + { + "SourceID": 28439, + "TargetID": 68432, + "Directional": true + } + ] + }, + { + "ID": 7264, + "SourceStructureID": 593, + "TargetStructureID": 66774, + "Label": "593-66774 via BC Conventional Synapse from 66776 -> 66775, 66822 -> 66820", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66776, + "TargetID": 66775, + "Directional": true + }, + { + "SourceID": 66822, + "TargetID": 66820, + "Directional": true + } + ] + }, + { + "ID": 7265, + "SourceStructureID": 593, + "TargetStructureID": 66777, + "Label": "593-66777 via BC Conventional Synapse from 115703 -> 66778", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115703, + "TargetID": 66778, + "Directional": true + } + ] + }, + { + "ID": 7266, + "SourceStructureID": 593, + "TargetStructureID": 66777, + "Label": "593-66777 via Ribbon Synapse from 28431 -> 66878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28431, + "TargetID": 66878, + "Directional": true + } + ] + }, + { + "ID": 7267, + "SourceStructureID": 593, + "TargetStructureID": 66782, + "Label": "593-66782 via Ribbon Synapse from 28428 -> 66784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28428, + "TargetID": 66784, + "Directional": true + } + ] + }, + { + "ID": 7268, + "SourceStructureID": 593, + "TargetStructureID": 66785, + "Label": "593-66785 via Ribbon Synapse from 28428 -> 66786", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28428, + "TargetID": 66786, + "Directional": true + } + ] + }, + { + "ID": 7269, + "SourceStructureID": 593, + "TargetStructureID": 66795, + "Label": "593-66795 via Ribbon Synapse from 7768 -> 67568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7768, + "TargetID": 67568, + "Directional": true + } + ] + }, + { + "ID": 7270, + "SourceStructureID": 593, + "TargetStructureID": 66804, + "Label": "593-66804 via Ribbon Synapse from 28430 -> 66805", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28430, + "TargetID": 66805, + "Directional": true + } + ] + }, + { + "ID": 7271, + "SourceStructureID": 593, + "TargetStructureID": 66809, + "Label": "593-66809 via Ribbon Synapse from 64367 -> 66862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64367, + "TargetID": 66862, + "Directional": true + } + ] + }, + { + "ID": 7272, + "SourceStructureID": 593, + "TargetStructureID": 66828, + "Label": "593-66828 via Ribbon Synapse from 7752 -> 66829", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7752, + "TargetID": 66829, + "Directional": true + } + ] + }, + { + "ID": 7273, + "SourceStructureID": 593, + "TargetStructureID": 66840, + "Label": "593-66840 via Ribbon Synapse from 66839 -> 66841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66839, + "TargetID": 66841, + "Directional": true + } + ] + }, + { + "ID": 7274, + "SourceStructureID": 593, + "TargetStructureID": 66843, + "Label": "593-66843 via BC Conventional Synapse from 115686 -> 66845, 115762 -> 115761", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115686, + "TargetID": 66845, + "Directional": true + }, + { + "SourceID": 115762, + "TargetID": 115761, + "Directional": true + } + ] + }, + { + "ID": 7275, + "SourceStructureID": 593, + "TargetStructureID": 66848, + "Label": "593-66848 via Ribbon Synapse from 66846 -> 66849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66846, + "TargetID": 66849, + "Directional": true + } + ] + }, + { + "ID": 7276, + "SourceStructureID": 593, + "TargetStructureID": 66879, + "Label": "593-66879 via BC Conventional Synapse from 66881 -> 66880", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66881, + "TargetID": 66880, + "Directional": true + } + ] + }, + { + "ID": 7277, + "SourceStructureID": 593, + "TargetStructureID": 66888, + "Label": "593-66888 via Ribbon Synapse from 7759 -> 68224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7759, + "TargetID": 68224, + "Directional": true + } + ] + }, + { + "ID": 7278, + "SourceStructureID": 593, + "TargetStructureID": 66933, + "Label": "593-66933 via BC Conventional Synapse from 66932 -> 66934", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66932, + "TargetID": 66934, + "Directional": true + } + ] + }, + { + "ID": 7279, + "SourceStructureID": 593, + "TargetStructureID": 66937, + "Label": "593-66937 via Ribbon Synapse from 7720 -> 66938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7720, + "TargetID": 66938, + "Directional": true + } + ] + }, + { + "ID": 7280, + "SourceStructureID": 593, + "TargetStructureID": 66946, + "Label": "593-66946 via Ribbon Synapse from 7719 -> 66947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7719, + "TargetID": 66947, + "Directional": true + } + ] + }, + { + "ID": 7281, + "SourceStructureID": 593, + "TargetStructureID": 66952, + "Label": "593-66952 via Ribbon Synapse from 7721 -> 67387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7721, + "TargetID": 67387, + "Directional": true + } + ] + }, + { + "ID": 7282, + "SourceStructureID": 593, + "TargetStructureID": 66958, + "Label": "593-66958 via BC Conventional Synapse from 49575 -> 67040, 69922 -> 69924", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49575, + "TargetID": 67040, + "Directional": true + }, + { + "SourceID": 69922, + "TargetID": 69924, + "Directional": true + } + ] + }, + { + "ID": 7283, + "SourceStructureID": 593, + "TargetStructureID": 66958, + "Label": "593-66958 via Ribbon Synapse from 7736 -> 70028, 7768 -> 70026, 49572 -> 67044, 64367 -> 130781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7736, + "TargetID": 70028, + "Directional": true + }, + { + "SourceID": 7768, + "TargetID": 70026, + "Directional": true + }, + { + "SourceID": 49572, + "TargetID": 67044, + "Directional": true + }, + { + "SourceID": 64367, + "TargetID": 130781, + "Directional": true + } + ] + }, + { + "ID": 7284, + "SourceStructureID": 593, + "TargetStructureID": 66983, + "Label": "593-66983 via Ribbon Synapse from 7722 -> 66998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7722, + "TargetID": 66998, + "Directional": true + } + ] + }, + { + "ID": 7285, + "SourceStructureID": 593, + "TargetStructureID": 67016, + "Label": "593-67016 via Ribbon Synapse from 7832 -> 67018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7832, + "TargetID": 67018, + "Directional": true + } + ] + }, + { + "ID": 7286, + "SourceStructureID": 593, + "TargetStructureID": 67019, + "Label": "593-67019 via Ribbon Synapse from 7832 -> 67020", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7832, + "TargetID": 67020, + "Directional": true + } + ] + }, + { + "ID": 7287, + "SourceStructureID": 593, + "TargetStructureID": 67042, + "Label": "593-67042 via Ribbon Synapse from 130884 -> 67261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130884, + "TargetID": 67261, + "Directional": true + } + ] + }, + { + "ID": 7288, + "SourceStructureID": 593, + "TargetStructureID": 67045, + "Label": "593-67045 via Ribbon Synapse from 65503 -> 130790, 67211 -> 67217, 130960 -> 67677", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65503, + "TargetID": 130790, + "Directional": true + }, + { + "SourceID": 67211, + "TargetID": 67217, + "Directional": true + }, + { + "SourceID": 130960, + "TargetID": 67677, + "Directional": true + } + ] + }, + { + "ID": 7289, + "SourceStructureID": 593, + "TargetStructureID": 67063, + "Label": "593-67063 via Ribbon Synapse from 64367 -> 67064", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64367, + "TargetID": 67064, + "Directional": true + } + ] + }, + { + "ID": 7290, + "SourceStructureID": 593, + "TargetStructureID": 67093, + "Label": "593-67093 via BC Conventional Synapse from 67092 -> 67094", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67092, + "TargetID": 67094, + "Directional": true + } + ] + }, + { + "ID": 7291, + "SourceStructureID": 593, + "TargetStructureID": 67095, + "Label": "593-67095 via Ribbon Synapse from 28432 -> 67096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28432, + "TargetID": 67096, + "Directional": true + } + ] + }, + { + "ID": 7292, + "SourceStructureID": 593, + "TargetStructureID": 67101, + "Label": "593-67101 via Ribbon Synapse from 7810 -> 67103, 66621 -> 67102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7810, + "TargetID": 67103, + "Directional": true + }, + { + "SourceID": 66621, + "TargetID": 67102, + "Directional": true + } + ] + }, + { + "ID": 7293, + "SourceStructureID": 593, + "TargetStructureID": 67109, + "Label": "593-67109 via Ribbon Synapse from 67108 -> 67110", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67108, + "TargetID": 67110, + "Directional": true + } + ] + }, + { + "ID": 7294, + "SourceStructureID": 593, + "TargetStructureID": 67112, + "Label": "593-67112 via Ribbon Synapse from 62883 -> 67114", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62883, + "TargetID": 67114, + "Directional": true + } + ] + }, + { + "ID": 7295, + "SourceStructureID": 593, + "TargetStructureID": 67119, + "Label": "593-67119 via Ribbon Synapse from 66624 -> 67120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66624, + "TargetID": 67120, + "Directional": true + } + ] + }, + { + "ID": 7296, + "SourceStructureID": 593, + "TargetStructureID": 67121, + "Label": "593-67121 via Ribbon Synapse from 85529 -> 85530", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85529, + "TargetID": 85530, + "Directional": true + } + ] + }, + { + "ID": 7297, + "SourceStructureID": 593, + "TargetStructureID": 67125, + "Label": "593-67125 via BC Conventional Synapse from 67127 -> 67126", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67127, + "TargetID": 67126, + "Directional": true + } + ] + }, + { + "ID": 7298, + "SourceStructureID": 593, + "TargetStructureID": 67128, + "Label": "593-67128 via Ribbon Synapse from 66629 -> 67129", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66629, + "TargetID": 67129, + "Directional": true + } + ] + }, + { + "ID": 7299, + "SourceStructureID": 593, + "TargetStructureID": 67130, + "Label": "593-67130 via Ribbon Synapse from 66629 -> 67132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66629, + "TargetID": 67132, + "Directional": true + } + ] + }, + { + "ID": 7300, + "SourceStructureID": 593, + "TargetStructureID": 67131, + "Label": "593-67131 via Ribbon Synapse from 66629 -> 67133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66629, + "TargetID": 67133, + "Directional": true + } + ] + }, + { + "ID": 7301, + "SourceStructureID": 593, + "TargetStructureID": 67135, + "Label": "593-67135 via Ribbon Synapse from 66630 -> 67136", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66630, + "TargetID": 67136, + "Directional": true + } + ] + }, + { + "ID": 7302, + "SourceStructureID": 593, + "TargetStructureID": 67137, + "Label": "593-67137 via Ribbon Synapse from 66630 -> 67138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66630, + "TargetID": 67138, + "Directional": true + } + ] + }, + { + "ID": 7303, + "SourceStructureID": 593, + "TargetStructureID": 67161, + "Label": "593-67161 via Ribbon Synapse from 66652 -> 67164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66652, + "TargetID": 67164, + "Directional": true + } + ] + }, + { + "ID": 7304, + "SourceStructureID": 593, + "TargetStructureID": 67187, + "Label": "593-67187 via Ribbon Synapse from 62887 -> 67188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62887, + "TargetID": 67188, + "Directional": true + } + ] + }, + { + "ID": 7305, + "SourceStructureID": 593, + "TargetStructureID": 67190, + "Label": "593-67190 via Ribbon Synapse from 70257 -> 130933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70257, + "TargetID": 130933, + "Directional": true + } + ] + }, + { + "ID": 7306, + "SourceStructureID": 593, + "TargetStructureID": 67208, + "Label": "593-67208 via BC Conventional Synapse from 67210 -> 67209", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67210, + "TargetID": 67209, + "Directional": true + } + ] + }, + { + "ID": 7307, + "SourceStructureID": 593, + "TargetStructureID": 67219, + "Label": "593-67219 via Ribbon Synapse from 67211 -> 67220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67211, + "TargetID": 67220, + "Directional": true + } + ] + }, + { + "ID": 7308, + "SourceStructureID": 593, + "TargetStructureID": 67221, + "Label": "593-67221 via Ribbon Synapse from 67211 -> 67222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67211, + "TargetID": 67222, + "Directional": true + } + ] + }, + { + "ID": 7309, + "SourceStructureID": 593, + "TargetStructureID": 67227, + "Label": "593-67227 via Ribbon Synapse from 130983 -> 82754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130983, + "TargetID": 82754, + "Directional": true + } + ] + }, + { + "ID": 7310, + "SourceStructureID": 593, + "TargetStructureID": 67246, + "Label": "593-67246 via BC Conventional Synapse from 67248 -> 67247", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67248, + "TargetID": 67247, + "Directional": true + } + ] + }, + { + "ID": 7311, + "SourceStructureID": 593, + "TargetStructureID": 67252, + "Label": "593-67252 via Ribbon Synapse from 67251 -> 67253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67251, + "TargetID": 67253, + "Directional": true + } + ] + }, + { + "ID": 7312, + "SourceStructureID": 593, + "TargetStructureID": 67254, + "Label": "593-67254 via Ribbon Synapse from 49573 -> 67422", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49573, + "TargetID": 67422, + "Directional": true + } + ] + }, + { + "ID": 7313, + "SourceStructureID": 593, + "TargetStructureID": 67258, + "Label": "593-67258 via Ribbon Synapse from 7731 -> 68485, 130884 -> 67259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7731, + "TargetID": 68485, + "Directional": true + }, + { + "SourceID": 130884, + "TargetID": 67259, + "Directional": true + } + ] + }, + { + "ID": 7314, + "SourceStructureID": 593, + "TargetStructureID": 67262, + "Label": "593-67262 via BC Conventional Synapse from 130887 -> 130888", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130887, + "TargetID": 130888, + "Directional": true + } + ] + }, + { + "ID": 7315, + "SourceStructureID": 593, + "TargetStructureID": 67262, + "Label": "593-67262 via Ribbon Synapse from 49573 -> 67416, 130884 -> 67263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49573, + "TargetID": 67416, + "Directional": true + }, + { + "SourceID": 130884, + "TargetID": 67263, + "Directional": true + } + ] + }, + { + "ID": 7316, + "SourceStructureID": 593, + "TargetStructureID": 67269, + "Label": "593-67269 via Ribbon Synapse from 67272 -> 67273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67272, + "TargetID": 67273, + "Directional": true + } + ] + }, + { + "ID": 7317, + "SourceStructureID": 593, + "TargetStructureID": 67291, + "Label": "593-67291 via Ribbon Synapse from 68343 -> 68345, 68343 -> 130932", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68343, + "TargetID": 68345, + "Directional": true + }, + { + "SourceID": 68343, + "TargetID": 130932, + "Directional": true + } + ] + }, + { + "ID": 7318, + "SourceStructureID": 593, + "TargetStructureID": 67307, + "Label": "593-67307 via BC Conventional Synapse from 67312 -> 67311", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67312, + "TargetID": 67311, + "Directional": true + } + ] + }, + { + "ID": 7319, + "SourceStructureID": 593, + "TargetStructureID": 67322, + "Label": "593-67322 via Ribbon Synapse from 7748 -> 67363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7748, + "TargetID": 67363, + "Directional": true + } + ] + }, + { + "ID": 7320, + "SourceStructureID": 593, + "TargetStructureID": 67331, + "Label": "593-67331 via Ribbon Synapse from 130712 -> 67336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130712, + "TargetID": 67336, + "Directional": true + } + ] + }, + { + "ID": 7321, + "SourceStructureID": 593, + "TargetStructureID": 67341, + "Label": "593-67341 via Ribbon Synapse from 130712 -> 67342, 130989 -> 67391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130712, + "TargetID": 67342, + "Directional": true + }, + { + "SourceID": 130989, + "TargetID": 67391, + "Directional": true + } + ] + }, + { + "ID": 7322, + "SourceStructureID": 593, + "TargetStructureID": 67352, + "Label": "593-67352 via BC Conventional Synapse from 68208 -> 68209", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68208, + "TargetID": 68209, + "Directional": true + } + ] + }, + { + "ID": 7323, + "SourceStructureID": 593, + "TargetStructureID": 67370, + "Label": "593-67370 via Ribbon Synapse from 36597 -> 67371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36597, + "TargetID": 67371, + "Directional": true + } + ] + }, + { + "ID": 7324, + "SourceStructureID": 593, + "TargetStructureID": 67375, + "Label": "593-67375 via Ribbon Synapse from 7764 -> 67543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7764, + "TargetID": 67543, + "Directional": true + } + ] + }, + { + "ID": 7325, + "SourceStructureID": 593, + "TargetStructureID": 67382, + "Label": "593-67382 via Ribbon Synapse from 130989 -> 67384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130989, + "TargetID": 67384, + "Directional": true + } + ] + }, + { + "ID": 7326, + "SourceStructureID": 593, + "TargetStructureID": 67401, + "Label": "593-67401 via BC Conventional Synapse from 67399 -> 67402", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67399, + "TargetID": 67402, + "Directional": true + } + ] + }, + { + "ID": 7327, + "SourceStructureID": 593, + "TargetStructureID": 67406, + "Label": "593-67406 via BC Conventional Synapse from 67408 -> 67407", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67408, + "TargetID": 67407, + "Directional": true + } + ] + }, + { + "ID": 7328, + "SourceStructureID": 593, + "TargetStructureID": 67425, + "Label": "593-67425 via BC Conventional Synapse from 67431 -> 67428", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67431, + "TargetID": 67428, + "Directional": true + } + ] + }, + { + "ID": 7329, + "SourceStructureID": 593, + "TargetStructureID": 67430, + "Label": "593-67430 via Ribbon Synapse from 7719 -> 130953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7719, + "TargetID": 130953, + "Directional": true + } + ] + }, + { + "ID": 7330, + "SourceStructureID": 593, + "TargetStructureID": 67455, + "Label": "593-67455 via Ribbon Synapse from 85609 -> 67456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85609, + "TargetID": 67456, + "Directional": true + } + ] + }, + { + "ID": 7331, + "SourceStructureID": 593, + "TargetStructureID": 67458, + "Label": "593-67458 via Ribbon Synapse from 85609 -> 67459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85609, + "TargetID": 67459, + "Directional": true + } + ] + }, + { + "ID": 7332, + "SourceStructureID": 593, + "TargetStructureID": 67466, + "Label": "593-67466 via BC Conventional Synapse from 67465 -> 67467", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67465, + "TargetID": 67467, + "Directional": true + } + ] + }, + { + "ID": 7333, + "SourceStructureID": 593, + "TargetStructureID": 67486, + "Label": "593-67486 via BC Conventional Synapse from 67485 -> 67487", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67485, + "TargetID": 67487, + "Directional": true + } + ] + }, + { + "ID": 7334, + "SourceStructureID": 593, + "TargetStructureID": 67494, + "Label": "593-67494 via BC Conventional Synapse from 67496 -> 67495", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67496, + "TargetID": 67495, + "Directional": true + } + ] + }, + { + "ID": 7335, + "SourceStructureID": 593, + "TargetStructureID": 67502, + "Label": "593-67502 via Ribbon Synapse from 28408 -> 67503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28408, + "TargetID": 67503, + "Directional": true + } + ] + }, + { + "ID": 7336, + "SourceStructureID": 593, + "TargetStructureID": 67506, + "Label": "593-67506 via Ribbon Synapse from 7821 -> 67507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7821, + "TargetID": 67507, + "Directional": true + } + ] + }, + { + "ID": 7337, + "SourceStructureID": 593, + "TargetStructureID": 67508, + "Label": "593-67508 via Ribbon Synapse from 7815 -> 130974, 7821 -> 67509", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7815, + "TargetID": 130974, + "Directional": true + }, + { + "SourceID": 7821, + "TargetID": 67509, + "Directional": true + } + ] + }, + { + "ID": 7338, + "SourceStructureID": 593, + "TargetStructureID": 67520, + "Label": "593-67520 via Ribbon Synapse from 130917 -> 67534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130917, + "TargetID": 67534, + "Directional": true + } + ] + }, + { + "ID": 7339, + "SourceStructureID": 593, + "TargetStructureID": 67531, + "Label": "593-67531 via Ribbon Synapse from 130917 -> 67532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130917, + "TargetID": 67532, + "Directional": true + } + ] + }, + { + "ID": 7340, + "SourceStructureID": 593, + "TargetStructureID": 67546, + "Label": "593-67546 via BC Conventional Synapse from 7829 -> 67547", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7829, + "TargetID": 67547, + "Directional": true + } + ] + }, + { + "ID": 7341, + "SourceStructureID": 593, + "TargetStructureID": 67551, + "Label": "593-67551 via BC Conventional Synapse from 7830 -> 67552", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7830, + "TargetID": 67552, + "Directional": true + } + ] + }, + { + "ID": 7342, + "SourceStructureID": 593, + "TargetStructureID": 67560, + "Label": "593-67560 via BC Conventional Synapse from 67804 -> 67803", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67804, + "TargetID": 67803, + "Directional": true + } + ] + }, + { + "ID": 7343, + "SourceStructureID": 593, + "TargetStructureID": 67575, + "Label": "593-67575 via BC Conventional Synapse from 67578 -> 67577", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67578, + "TargetID": 67577, + "Directional": true + } + ] + }, + { + "ID": 7344, + "SourceStructureID": 593, + "TargetStructureID": 67580, + "Label": "593-67580 via Ribbon Synapse from 7835 -> 67582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7835, + "TargetID": 67582, + "Directional": true + } + ] + }, + { + "ID": 7345, + "SourceStructureID": 593, + "TargetStructureID": 67585, + "Label": "593-67585 via BC Conventional Synapse from 134750 -> 134751", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134750, + "TargetID": 134751, + "Directional": true + } + ] + }, + { + "ID": 7346, + "SourceStructureID": 593, + "TargetStructureID": 67586, + "Label": "593-67586 via Ribbon Synapse from 130977 -> 67587", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130977, + "TargetID": 67587, + "Directional": true + } + ] + }, + { + "ID": 7347, + "SourceStructureID": 593, + "TargetStructureID": 67595, + "Label": "593-67595 via Ribbon Synapse from 28447 -> 67631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28447, + "TargetID": 67631, + "Directional": true + } + ] + }, + { + "ID": 7348, + "SourceStructureID": 593, + "TargetStructureID": 67663, + "Label": "593-67663 via BC Conventional Synapse from 7807 -> 67664", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7807, + "TargetID": 67664, + "Directional": true + } + ] + }, + { + "ID": 7349, + "SourceStructureID": 593, + "TargetStructureID": 67686, + "Label": "593-67686 via Ribbon Synapse from 7736 -> 67738, 7768 -> 67754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7736, + "TargetID": 67738, + "Directional": true + }, + { + "SourceID": 7768, + "TargetID": 67754, + "Directional": true + } + ] + }, + { + "ID": 7350, + "SourceStructureID": 593, + "TargetStructureID": 67705, + "Label": "593-67705 via BC Conventional Synapse from 82125 -> 82126", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82125, + "TargetID": 82126, + "Directional": true + } + ] + }, + { + "ID": 7351, + "SourceStructureID": 593, + "TargetStructureID": 67711, + "Label": "593-67711 via Ribbon Synapse from 67717 -> 67718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67717, + "TargetID": 67718, + "Directional": true + } + ] + }, + { + "ID": 7352, + "SourceStructureID": 593, + "TargetStructureID": 67729, + "Label": "593-67729 via Ribbon Synapse from 130960 -> 67730", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130960, + "TargetID": 67730, + "Directional": true + } + ] + }, + { + "ID": 7353, + "SourceStructureID": 593, + "TargetStructureID": 67731, + "Label": "593-67731 via BC Conventional Synapse from 67733 -> 67732", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67733, + "TargetID": 67732, + "Directional": true + } + ] + }, + { + "ID": 7354, + "SourceStructureID": 593, + "TargetStructureID": 67736, + "Label": "593-67736 via Ribbon Synapse from 7736 -> 67737, 53817 -> 67747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7736, + "TargetID": 67737, + "Directional": true + }, + { + "SourceID": 53817, + "TargetID": 67747, + "Directional": true + } + ] + }, + { + "ID": 7355, + "SourceStructureID": 593, + "TargetStructureID": 67756, + "Label": "593-67756 via Ribbon Synapse from 78293 -> 78294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78293, + "TargetID": 78294, + "Directional": true + } + ] + }, + { + "ID": 7356, + "SourceStructureID": 593, + "TargetStructureID": 67779, + "Label": "593-67779 via BC Conventional Synapse from 67781 -> 67782", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67781, + "TargetID": 67782, + "Directional": true + } + ] + }, + { + "ID": 7357, + "SourceStructureID": 593, + "TargetStructureID": 67779, + "Label": "593-67779 via Ribbon Synapse from 53811 -> 67783", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53811, + "TargetID": 67783, + "Directional": true + } + ] + }, + { + "ID": 7358, + "SourceStructureID": 593, + "TargetStructureID": 67784, + "Label": "593-67784 via Ribbon Synapse from 130977 -> 67785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130977, + "TargetID": 67785, + "Directional": true + } + ] + }, + { + "ID": 7359, + "SourceStructureID": 593, + "TargetStructureID": 67809, + "Label": "593-67809 via Ribbon Synapse from 7831 -> 67811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7831, + "TargetID": 67811, + "Directional": true + } + ] + }, + { + "ID": 7360, + "SourceStructureID": 593, + "TargetStructureID": 67812, + "Label": "593-67812 via BC Conventional Synapse from 67814 -> 67813", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67814, + "TargetID": 67813, + "Directional": true + } + ] + }, + { + "ID": 7361, + "SourceStructureID": 593, + "TargetStructureID": 67833, + "Label": "593-67833 via Ribbon Synapse from 87237 -> 87239, 130990 -> 87239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87237, + "TargetID": 87239, + "Directional": true + }, + { + "SourceID": 130990, + "TargetID": 87239, + "Directional": true + } + ] + }, + { + "ID": 7362, + "SourceStructureID": 593, + "TargetStructureID": 67839, + "Label": "593-67839 via Ribbon Synapse from 28411 -> 67840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28411, + "TargetID": 67840, + "Directional": true + } + ] + }, + { + "ID": 7363, + "SourceStructureID": 593, + "TargetStructureID": 67871, + "Label": "593-67871 via Ribbon Synapse from 52488 -> 67872", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52488, + "TargetID": 67872, + "Directional": true + } + ] + }, + { + "ID": 7364, + "SourceStructureID": 593, + "TargetStructureID": 67883, + "Label": "593-67883 via Ribbon Synapse from 130982 -> 67911", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130982, + "TargetID": 67911, + "Directional": true + } + ] + }, + { + "ID": 7365, + "SourceStructureID": 593, + "TargetStructureID": 67890, + "Label": "593-67890 via Ribbon Synapse from 130982 -> 67908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130982, + "TargetID": 67908, + "Directional": true + } + ] + }, + { + "ID": 7366, + "SourceStructureID": 593, + "TargetStructureID": 67892, + "Label": "593-67892 via Ribbon Synapse from 28413 -> 67893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28413, + "TargetID": 67893, + "Directional": true + } + ] + }, + { + "ID": 7367, + "SourceStructureID": 593, + "TargetStructureID": 67915, + "Label": "593-67915 via Ribbon Synapse from 7836 -> 67916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7836, + "TargetID": 67916, + "Directional": true + } + ] + }, + { + "ID": 7368, + "SourceStructureID": 593, + "TargetStructureID": 67918, + "Label": "593-67918 via Ribbon Synapse from 7836 -> 67919, 49855 -> 67946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7836, + "TargetID": 67919, + "Directional": true + }, + { + "SourceID": 49855, + "TargetID": 67946, + "Directional": true + } + ] + }, + { + "ID": 7369, + "SourceStructureID": 593, + "TargetStructureID": 67920, + "Label": "593-67920 via Ribbon Synapse from 7836 -> 67921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7836, + "TargetID": 67921, + "Directional": true + } + ] + }, + { + "ID": 7370, + "SourceStructureID": 593, + "TargetStructureID": 67932, + "Label": "593-67932 via BC Conventional Synapse from 115738 -> 115739", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115738, + "TargetID": 115739, + "Directional": true + } + ] + }, + { + "ID": 7371, + "SourceStructureID": 593, + "TargetStructureID": 67952, + "Label": "593-67952 via BC Conventional Synapse from 68139 -> 82247", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68139, + "TargetID": 82247, + "Directional": true + } + ] + }, + { + "ID": 7372, + "SourceStructureID": 593, + "TargetStructureID": 67952, + "Label": "593-67952 via Ribbon Synapse from 7738 -> 67962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7738, + "TargetID": 67962, + "Directional": true + } + ] + }, + { + "ID": 7373, + "SourceStructureID": 593, + "TargetStructureID": 67967, + "Label": "593-67967 via BC Conventional Synapse from 7843 -> 67968", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7843, + "TargetID": 67968, + "Directional": true + } + ] + }, + { + "ID": 7374, + "SourceStructureID": 593, + "TargetStructureID": 67996, + "Label": "593-67996 via BC Conventional Synapse from 87283 -> 67997", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87283, + "TargetID": 67997, + "Directional": true + } + ] + }, + { + "ID": 7375, + "SourceStructureID": 593, + "TargetStructureID": 68003, + "Label": "593-68003 via Ribbon Synapse from 52487 -> 68008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52487, + "TargetID": 68008, + "Directional": true + } + ] + }, + { + "ID": 7376, + "SourceStructureID": 593, + "TargetStructureID": 68009, + "Label": "593-68009 via Ribbon Synapse from 52451 -> 115707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52451, + "TargetID": 115707, + "Directional": true + } + ] + }, + { + "ID": 7377, + "SourceStructureID": 593, + "TargetStructureID": 68014, + "Label": "593-68014 via Ribbon Synapse from 52451 -> 68015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52451, + "TargetID": 68015, + "Directional": true + } + ] + }, + { + "ID": 7378, + "SourceStructureID": 593, + "TargetStructureID": 68031, + "Label": "593-68031 via Cistern Pre from 68627 -> 68628", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 68627, + "TargetID": 68628, + "Directional": true + } + ] + }, + { + "ID": 7379, + "SourceStructureID": 593, + "TargetStructureID": 68040, + "Label": "593-68040 via BC Conventional Synapse from 68054 -> 68055", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68054, + "TargetID": 68055, + "Directional": true + } + ] + }, + { + "ID": 7380, + "SourceStructureID": 593, + "TargetStructureID": 68042, + "Label": "593-68042 via Ribbon Synapse from 68029 -> 68043", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68029, + "TargetID": 68043, + "Directional": true + } + ] + }, + { + "ID": 7381, + "SourceStructureID": 593, + "TargetStructureID": 68077, + "Label": "593-68077 via BC Conventional Synapse from 68082 -> 68081", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68082, + "TargetID": 68081, + "Directional": true + } + ] + }, + { + "ID": 7382, + "SourceStructureID": 593, + "TargetStructureID": 68093, + "Label": "593-68093 via BC Conventional Synapse from 68123 -> 68122", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68123, + "TargetID": 68122, + "Directional": true + } + ] + }, + { + "ID": 7383, + "SourceStructureID": 593, + "TargetStructureID": 68093, + "Label": "593-68093 via Ribbon Synapse from 53816 -> 68094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53816, + "TargetID": 68094, + "Directional": true + } + ] + }, + { + "ID": 7384, + "SourceStructureID": 593, + "TargetStructureID": 68140, + "Label": "593-68140 via BC Conventional Synapse from 68139 -> 68141", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68139, + "TargetID": 68141, + "Directional": true + } + ] + }, + { + "ID": 7385, + "SourceStructureID": 593, + "TargetStructureID": 68153, + "Label": "593-68153 via Ribbon Synapse from 53817 -> 68154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53817, + "TargetID": 68154, + "Directional": true + } + ] + }, + { + "ID": 7386, + "SourceStructureID": 593, + "TargetStructureID": 68202, + "Label": "593-68202 via Ribbon Synapse from 53817 -> 72576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53817, + "TargetID": 72576, + "Directional": true + } + ] + }, + { + "ID": 7387, + "SourceStructureID": 593, + "TargetStructureID": 68214, + "Label": "593-68214 via BC Conventional Synapse from 68441 -> 68443", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68441, + "TargetID": 68443, + "Directional": true + } + ] + }, + { + "ID": 7388, + "SourceStructureID": 593, + "TargetStructureID": 68214, + "Label": "593-68214 via Ribbon Synapse from 7759 -> 68479", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7759, + "TargetID": 68479, + "Directional": true + } + ] + }, + { + "ID": 7389, + "SourceStructureID": 593, + "TargetStructureID": 68238, + "Label": "593-68238 via Ribbon Synapse from 130744 -> 68241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130744, + "TargetID": 68241, + "Directional": true + } + ] + }, + { + "ID": 7390, + "SourceStructureID": 593, + "TargetStructureID": 68239, + "Label": "593-68239 via BC Conventional Synapse from 87513 -> 87514", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87513, + "TargetID": 87514, + "Directional": true + } + ] + }, + { + "ID": 7391, + "SourceStructureID": 593, + "TargetStructureID": 68239, + "Label": "593-68239 via Ribbon Synapse from 130744 -> 68242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130744, + "TargetID": 68242, + "Directional": true + } + ] + }, + { + "ID": 7392, + "SourceStructureID": 593, + "TargetStructureID": 68252, + "Label": "593-68252 via Ribbon Synapse from 52470 -> 68629", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52470, + "TargetID": 68629, + "Directional": true + } + ] + }, + { + "ID": 7393, + "SourceStructureID": 593, + "TargetStructureID": 68296, + "Label": "593-68296 via Ribbon Synapse from 130742 -> 68297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130742, + "TargetID": 68297, + "Directional": true + } + ] + }, + { + "ID": 7394, + "SourceStructureID": 593, + "TargetStructureID": 68300, + "Label": "593-68300 via Ribbon Synapse from 130742 -> 68301", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130742, + "TargetID": 68301, + "Directional": true + } + ] + }, + { + "ID": 7395, + "SourceStructureID": 593, + "TargetStructureID": 68312, + "Label": "593-68312 via Ribbon Synapse from 68311 -> 68313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68311, + "TargetID": 68313, + "Directional": true + } + ] + }, + { + "ID": 7396, + "SourceStructureID": 593, + "TargetStructureID": 68318, + "Label": "593-68318 via Ribbon Synapse from 28434 -> 68415", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28434, + "TargetID": 68415, + "Directional": true + } + ] + }, + { + "ID": 7397, + "SourceStructureID": 593, + "TargetStructureID": 68326, + "Label": "593-68326 via BC Conventional Synapse from 68328 -> 68327", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68328, + "TargetID": 68327, + "Directional": true + } + ] + }, + { + "ID": 7398, + "SourceStructureID": 593, + "TargetStructureID": 68399, + "Label": "593-68399 via BC Conventional Synapse from 115698 -> 68400", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115698, + "TargetID": 68400, + "Directional": true + } + ] + }, + { + "ID": 7399, + "SourceStructureID": 593, + "TargetStructureID": 68412, + "Label": "593-68412 via Ribbon Synapse from 28434 -> 68413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28434, + "TargetID": 68413, + "Directional": true + } + ] + }, + { + "ID": 7400, + "SourceStructureID": 593, + "TargetStructureID": 68433, + "Label": "593-68433 via BC Conventional Synapse from 87220 -> 68434", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87220, + "TargetID": 68434, + "Directional": true + } + ] + }, + { + "ID": 7401, + "SourceStructureID": 593, + "TargetStructureID": 68435, + "Label": "593-68435 via Ribbon Synapse from 130778 -> 68436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130778, + "TargetID": 68436, + "Directional": true + } + ] + }, + { + "ID": 7402, + "SourceStructureID": 593, + "TargetStructureID": 68453, + "Label": "593-68453 via Ribbon Synapse from 130778 -> 68454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130778, + "TargetID": 68454, + "Directional": true + } + ] + }, + { + "ID": 7403, + "SourceStructureID": 593, + "TargetStructureID": 68459, + "Label": "593-68459 via Ribbon Synapse from 49882 -> 68460", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49882, + "TargetID": 68460, + "Directional": true + } + ] + }, + { + "ID": 7404, + "SourceStructureID": 593, + "TargetStructureID": 68461, + "Label": "593-68461 via Ribbon Synapse from 67265 -> 86544, 130889 -> 86544", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67265, + "TargetID": 86544, + "Directional": true + }, + { + "SourceID": 130889, + "TargetID": 86544, + "Directional": true + } + ] + }, + { + "ID": 7405, + "SourceStructureID": 593, + "TargetStructureID": 68463, + "Label": "593-68463 via Ribbon Synapse from 67279 -> 86564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67279, + "TargetID": 86564, + "Directional": true + } + ] + }, + { + "ID": 7406, + "SourceStructureID": 593, + "TargetStructureID": 68480, + "Label": "593-68480 via Ribbon Synapse from 63032 -> 84102, 130733 -> 84114", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63032, + "TargetID": 84102, + "Directional": true + }, + { + "SourceID": 130733, + "TargetID": 84114, + "Directional": true + } + ] + }, + { + "ID": 7407, + "SourceStructureID": 593, + "TargetStructureID": 68486, + "Label": "593-68486 via Ribbon Synapse from 130884 -> 79608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130884, + "TargetID": 79608, + "Directional": true + } + ] + }, + { + "ID": 7408, + "SourceStructureID": 593, + "TargetStructureID": 68488, + "Label": "593-68488 via Ribbon Synapse from 7735 -> 68491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7735, + "TargetID": 68491, + "Directional": true + } + ] + }, + { + "ID": 7409, + "SourceStructureID": 593, + "TargetStructureID": 68501, + "Label": "593-68501 via Ribbon Synapse from 7740 -> 68503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7740, + "TargetID": 68503, + "Directional": true + } + ] + }, + { + "ID": 7410, + "SourceStructureID": 593, + "TargetStructureID": 68511, + "Label": "593-68511 via Ribbon Synapse from 7727 -> 68512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7727, + "TargetID": 68512, + "Directional": true + } + ] + }, + { + "ID": 7411, + "SourceStructureID": 593, + "TargetStructureID": 68527, + "Label": "593-68527 via BC Conventional Synapse from 115693 -> 68528", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115693, + "TargetID": 68528, + "Directional": true + } + ] + }, + { + "ID": 7412, + "SourceStructureID": 593, + "TargetStructureID": 68539, + "Label": "593-68539 via Ribbon Synapse from 131104 -> 68540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131104, + "TargetID": 68540, + "Directional": true + } + ] + }, + { + "ID": 7413, + "SourceStructureID": 593, + "TargetStructureID": 68543, + "Label": "593-68543 via Ribbon Synapse from 131104 -> 68544", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131104, + "TargetID": 68544, + "Directional": true + } + ] + }, + { + "ID": 7414, + "SourceStructureID": 593, + "TargetStructureID": 68548, + "Label": "593-68548 via BC Conventional Synapse from 68547 -> 68549", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68547, + "TargetID": 68549, + "Directional": true + } + ] + }, + { + "ID": 7415, + "SourceStructureID": 593, + "TargetStructureID": 68548, + "Label": "593-68548 via Ribbon Synapse from 63040 -> 73568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63040, + "TargetID": 73568, + "Directional": true + } + ] + }, + { + "ID": 7416, + "SourceStructureID": 593, + "TargetStructureID": 68613, + "Label": "593-68613 via Ribbon Synapse from 115710 -> 115711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115710, + "TargetID": 115711, + "Directional": true + } + ] + }, + { + "ID": 7417, + "SourceStructureID": 593, + "TargetStructureID": 68655, + "Label": "593-68655 via Ribbon Synapse from 67553 -> 68657", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67553, + "TargetID": 68657, + "Directional": true + } + ] + }, + { + "ID": 7418, + "SourceStructureID": 593, + "TargetStructureID": 68669, + "Label": "593-68669 via Ribbon Synapse from 130713 -> 68685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130713, + "TargetID": 68685, + "Directional": true + } + ] + }, + { + "ID": 7419, + "SourceStructureID": 593, + "TargetStructureID": 68678, + "Label": "593-68678 via Ribbon Synapse from 130715 -> 68681", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130715, + "TargetID": 68681, + "Directional": true + } + ] + }, + { + "ID": 7420, + "SourceStructureID": 593, + "TargetStructureID": 68679, + "Label": "593-68679 via Ribbon Synapse from 130713 -> 130714, 130715 -> 130714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130713, + "TargetID": 130714, + "Directional": true + }, + { + "SourceID": 130715, + "TargetID": 130714, + "Directional": true + } + ] + }, + { + "ID": 7421, + "SourceStructureID": 593, + "TargetStructureID": 68879, + "Label": "593-68879 via Ribbon Synapse from 49568 -> 68880, 130983 -> 82764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49568, + "TargetID": 68880, + "Directional": true + }, + { + "SourceID": 130983, + "TargetID": 82764, + "Directional": true + } + ] + }, + { + "ID": 7422, + "SourceStructureID": 593, + "TargetStructureID": 68988, + "Label": "593-68988 via Ribbon Synapse from 52488 -> 68989", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52488, + "TargetID": 68989, + "Directional": true + } + ] + }, + { + "ID": 7423, + "SourceStructureID": 593, + "TargetStructureID": 70040, + "Label": "593-70040 via Ribbon Synapse from 7719 -> 70041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7719, + "TargetID": 70041, + "Directional": true + } + ] + }, + { + "ID": 7424, + "SourceStructureID": 593, + "TargetStructureID": 71517, + "Label": "593-71517 via Ribbon Synapse from 59625 -> 66676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59625, + "TargetID": 66676, + "Directional": true + } + ] + }, + { + "ID": 7425, + "SourceStructureID": 593, + "TargetStructureID": 75573, + "Label": "593-75573 via Ribbon Synapse from 62883 -> 78882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62883, + "TargetID": 78882, + "Directional": true + } + ] + }, + { + "ID": 7426, + "SourceStructureID": 593, + "TargetStructureID": 79431, + "Label": "593-79431 via BC Conventional Synapse from 115721 -> 115719", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115721, + "TargetID": 115719, + "Directional": true + } + ] + }, + { + "ID": 7427, + "SourceStructureID": 593, + "TargetStructureID": 79433, + "Label": "593-79433 via BC Conventional Synapse from 115721 -> 115720", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115721, + "TargetID": 115720, + "Directional": true + } + ] + }, + { + "ID": 7428, + "SourceStructureID": 593, + "TargetStructureID": 79586, + "Label": "593-79586 via Ribbon Synapse from 49882 -> 79594", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49882, + "TargetID": 79594, + "Directional": true + } + ] + }, + { + "ID": 7429, + "SourceStructureID": 593, + "TargetStructureID": 79654, + "Label": "593-79654 via Ribbon Synapse from 86287 -> 86295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86287, + "TargetID": 86295, + "Directional": true + } + ] + }, + { + "ID": 7430, + "SourceStructureID": 593, + "TargetStructureID": 81894, + "Label": "593-81894 via Ribbon Synapse from 130784 -> 81895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130784, + "TargetID": 81895, + "Directional": true + } + ] + }, + { + "ID": 7431, + "SourceStructureID": 593, + "TargetStructureID": 82241, + "Label": "593-82241 via Ribbon Synapse from 62890 -> 159443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62890, + "TargetID": 159443, + "Directional": true + } + ] + }, + { + "ID": 7432, + "SourceStructureID": 593, + "TargetStructureID": 82757, + "Label": "593-82757 via BC Conventional Synapse from 130984 -> 82758", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130984, + "TargetID": 82758, + "Directional": true + } + ] + }, + { + "ID": 7433, + "SourceStructureID": 593, + "TargetStructureID": 82757, + "Label": "593-82757 via Ribbon Synapse from 130983 -> 82758", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130983, + "TargetID": 82758, + "Directional": true + } + ] + }, + { + "ID": 7434, + "SourceStructureID": 593, + "TargetStructureID": 83443, + "Label": "593-83443 via BC Conventional Synapse from 67199 -> 83444", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67199, + "TargetID": 83444, + "Directional": true + } + ] + }, + { + "ID": 7435, + "SourceStructureID": 593, + "TargetStructureID": 83476, + "Label": "593-83476 via Ribbon Synapse from 49598 -> 83477", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49598, + "TargetID": 83477, + "Directional": true + } + ] + }, + { + "ID": 7436, + "SourceStructureID": 593, + "TargetStructureID": 84275, + "Label": "593-84275 via Ribbon Synapse from 115724 -> 115725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115724, + "TargetID": 115725, + "Directional": true + } + ] + }, + { + "ID": 7437, + "SourceStructureID": 593, + "TargetStructureID": 84613, + "Label": "593-84613 via Ribbon Synapse from 7745 -> 84616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7745, + "TargetID": 84616, + "Directional": true + } + ] + }, + { + "ID": 7438, + "SourceStructureID": 593, + "TargetStructureID": 85220, + "Label": "593-85220 via BC Conventional Synapse from 115731 -> 115730", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115731, + "TargetID": 115730, + "Directional": true + } + ] + }, + { + "ID": 7439, + "SourceStructureID": 593, + "TargetStructureID": 85490, + "Label": "593-85490 via BC Conventional Synapse from 85494 -> 85492, 85495 -> 85493", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85494, + "TargetID": 85492, + "Directional": true + }, + { + "SourceID": 85495, + "TargetID": 85493, + "Directional": true + } + ] + }, + { + "ID": 7440, + "SourceStructureID": 593, + "TargetStructureID": 85491, + "Label": "593-85491 via Ribbon Synapse from 66620 -> 85497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66620, + "TargetID": 85497, + "Directional": true + } + ] + }, + { + "ID": 7441, + "SourceStructureID": 593, + "TargetStructureID": 85496, + "Label": "593-85496 via Ribbon Synapse from 66620 -> 85498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66620, + "TargetID": 85498, + "Directional": true + } + ] + }, + { + "ID": 7442, + "SourceStructureID": 593, + "TargetStructureID": 85534, + "Label": "593-85534 via BC Conventional Synapse from 85533 -> 85535", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85533, + "TargetID": 85535, + "Directional": true + } + ] + }, + { + "ID": 7443, + "SourceStructureID": 593, + "TargetStructureID": 85549, + "Label": "593-85549 via Ribbon Synapse from 62886 -> 85550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62886, + "TargetID": 85550, + "Directional": true + } + ] + }, + { + "ID": 7444, + "SourceStructureID": 593, + "TargetStructureID": 85563, + "Label": "593-85563 via Ribbon Synapse from 62887 -> 85564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62887, + "TargetID": 85564, + "Directional": true + } + ] + }, + { + "ID": 7445, + "SourceStructureID": 593, + "TargetStructureID": 85595, + "Label": "593-85595 via Ribbon Synapse from 66651 -> 85596, 85609 -> 130987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66651, + "TargetID": 85596, + "Directional": true + }, + { + "SourceID": 85609, + "TargetID": 130987, + "Directional": true + } + ] + }, + { + "ID": 7446, + "SourceStructureID": 593, + "TargetStructureID": 86545, + "Label": "593-86545 via Ribbon Synapse from 67265 -> 86553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67265, + "TargetID": 86553, + "Directional": true + } + ] + }, + { + "ID": 7447, + "SourceStructureID": 593, + "TargetStructureID": 87200, + "Label": "593-87200 via Ribbon Synapse from 50442 -> 87202", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50442, + "TargetID": 87202, + "Directional": true + } + ] + }, + { + "ID": 7448, + "SourceStructureID": 593, + "TargetStructureID": 87201, + "Label": "593-87201 via Ribbon Synapse from 50442 -> 87204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50442, + "TargetID": 87204, + "Directional": true + } + ] + }, + { + "ID": 7449, + "SourceStructureID": 593, + "TargetStructureID": 87221, + "Label": "593-87221 via BC Conventional Synapse from 87222 -> 87223", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87222, + "TargetID": 87223, + "Directional": true + } + ] + }, + { + "ID": 7450, + "SourceStructureID": 593, + "TargetStructureID": 87238, + "Label": "593-87238 via Ribbon Synapse from 87237 -> 87240, 130990 -> 87240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87237, + "TargetID": 87240, + "Directional": true + }, + { + "SourceID": 130990, + "TargetID": 87240, + "Directional": true + } + ] + }, + { + "ID": 7451, + "SourceStructureID": 593, + "TargetStructureID": 87263, + "Label": "593-87263 via Ribbon Synapse from 87262 -> 87264", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87262, + "TargetID": 87264, + "Directional": true + } + ] + }, + { + "ID": 7452, + "SourceStructureID": 593, + "TargetStructureID": 87271, + "Label": "593-87271 via Ribbon Synapse from 7838 -> 115695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7838, + "TargetID": 115695, + "Directional": true + } + ] + }, + { + "ID": 7453, + "SourceStructureID": 593, + "TargetStructureID": 115701, + "Label": "593-115701 via Ribbon Synapse from 28406 -> 115702", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28406, + "TargetID": 115702, + "Directional": true + } + ] + }, + { + "ID": 7454, + "SourceStructureID": 593, + "TargetStructureID": 130710, + "Label": "593-130710 via Ribbon Synapse from 115681 -> 130711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115681, + "TargetID": 130711, + "Directional": true + } + ] + }, + { + "ID": 7455, + "SourceStructureID": 593, + "TargetStructureID": 130739, + "Label": "593-130739 via Ribbon Synapse from 130738 -> 130740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130738, + "TargetID": 130740, + "Directional": true + } + ] + }, + { + "ID": 7456, + "SourceStructureID": 593, + "TargetStructureID": 130755, + "Label": "593-130755 via Ribbon Synapse from 120216 -> 130756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120216, + "TargetID": 130756, + "Directional": true + } + ] + }, + { + "ID": 7457, + "SourceStructureID": 593, + "TargetStructureID": 130760, + "Label": "593-130760 via Ribbon Synapse from 15899 -> 130761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15899, + "TargetID": 130761, + "Directional": true + } + ] + }, + { + "ID": 7458, + "SourceStructureID": 593, + "TargetStructureID": 130762, + "Label": "593-130762 via Ribbon Synapse from 15899 -> 130763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15899, + "TargetID": 130763, + "Directional": true + } + ] + }, + { + "ID": 7459, + "SourceStructureID": 593, + "TargetStructureID": 130772, + "Label": "593-130772 via Ribbon Synapse from 36527 -> 130773", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36527, + "TargetID": 130773, + "Directional": true + } + ] + }, + { + "ID": 7460, + "SourceStructureID": 593, + "TargetStructureID": 130779, + "Label": "593-130779 via Ribbon Synapse from 63963 -> 130780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63963, + "TargetID": 130780, + "Directional": true + } + ] + }, + { + "ID": 7461, + "SourceStructureID": 593, + "TargetStructureID": 130885, + "Label": "593-130885 via Ribbon Synapse from 130884 -> 130886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130884, + "TargetID": 130886, + "Directional": true + } + ] + }, + { + "ID": 7462, + "SourceStructureID": 593, + "TargetStructureID": 130891, + "Label": "593-130891 via Ribbon Synapse from 67279 -> 130892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67279, + "TargetID": 130892, + "Directional": true + } + ] + }, + { + "ID": 7463, + "SourceStructureID": 593, + "TargetStructureID": 130913, + "Label": "593-130913 via Ribbon Synapse from 67553 -> 130914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67553, + "TargetID": 130914, + "Directional": true + } + ] + }, + { + "ID": 7464, + "SourceStructureID": 593, + "TargetStructureID": 130930, + "Label": "593-130930 via Ribbon Synapse from 68071 -> 130931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68071, + "TargetID": 130931, + "Directional": true + } + ] + }, + { + "ID": 7465, + "SourceStructureID": 593, + "TargetStructureID": 130964, + "Label": "593-130964 via Ribbon Synapse from 7736 -> 130965", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7736, + "TargetID": 130965, + "Directional": true + } + ] + }, + { + "ID": 7466, + "SourceStructureID": 593, + "TargetStructureID": 130975, + "Label": "593-130975 via Ribbon Synapse from 7815 -> 130976", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7815, + "TargetID": 130976, + "Directional": true + } + ] + }, + { + "ID": 7467, + "SourceStructureID": 595, + "TargetStructureID": 606, + "Label": "595-606 via Ribbon Synapse from 47254 -> 47255, 53469 -> 53470, 53508 -> 53509, 53512 -> 53513, 53977 -> 53978", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47254, + "TargetID": 47255, + "Directional": true + }, + { + "SourceID": 53469, + "TargetID": 53470, + "Directional": true + }, + { + "SourceID": 53508, + "TargetID": 53509, + "Directional": true + }, + { + "SourceID": 53512, + "TargetID": 53513, + "Directional": true + }, + { + "SourceID": 53977, + "TargetID": 53978, + "Directional": true + } + ] + }, + { + "ID": 7468, + "SourceStructureID": 595, + "TargetStructureID": 5423, + "Label": "595-5423 via Ribbon Synapse from 92825 -> 92826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92825, + "TargetID": 92826, + "Directional": true + } + ] + }, + { + "ID": 7469, + "SourceStructureID": 595, + "TargetStructureID": 5435, + "Label": "595-5435 via Ribbon Synapse from 40656 -> 40546, 125078 -> 125080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40656, + "TargetID": 40546, + "Directional": true + }, + { + "SourceID": 125078, + "TargetID": 125080, + "Directional": true + } + ] + }, + { + "ID": 7470, + "SourceStructureID": 595, + "TargetStructureID": 5436, + "Label": "595-5436 via Ribbon Synapse from 91646 -> 23074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91646, + "TargetID": 23074, + "Directional": true + } + ] + }, + { + "ID": 7471, + "SourceStructureID": 595, + "TargetStructureID": 5451, + "Label": "595-5451 via Ribbon Synapse from 46655 -> 55160, 46659 -> 55163, 46661 -> 55159", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46655, + "TargetID": 55160, + "Directional": true + }, + { + "SourceID": 46659, + "TargetID": 55163, + "Directional": true + }, + { + "SourceID": 46661, + "TargetID": 55159, + "Directional": true + } + ] + }, + { + "ID": 7472, + "SourceStructureID": 595, + "TargetStructureID": 5481, + "Label": "595-5481 via Ribbon Synapse from 19557 -> 19555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19557, + "TargetID": 19555, + "Directional": true + } + ] + }, + { + "ID": 7473, + "SourceStructureID": 595, + "TargetStructureID": 10565, + "Label": "595-10565 via Ribbon Synapse from 135568 -> 135569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135568, + "TargetID": 135569, + "Directional": true + } + ] + }, + { + "ID": 7474, + "SourceStructureID": 595, + "TargetStructureID": 15796, + "Label": "595-15796 via Ribbon Synapse from 135688 -> 135690", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135688, + "TargetID": 135690, + "Directional": true + } + ] + }, + { + "ID": 7475, + "SourceStructureID": 595, + "TargetStructureID": 34055, + "Label": "595-34055 via Ribbon Synapse from 40648 -> 40649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40648, + "TargetID": 40649, + "Directional": true + } + ] + }, + { + "ID": 7476, + "SourceStructureID": 595, + "TargetStructureID": 44346, + "Label": "595-44346 via Ribbon Synapse from 44816 -> 44814, 125203 -> 135700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44816, + "TargetID": 44814, + "Directional": true + }, + { + "SourceID": 125203, + "TargetID": 135700, + "Directional": true + } + ] + }, + { + "ID": 7477, + "SourceStructureID": 595, + "TargetStructureID": 54925, + "Label": "595-54925 via Ribbon Synapse from 54940 -> 54939", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54940, + "TargetID": 54939, + "Directional": true + } + ] + }, + { + "ID": 7478, + "SourceStructureID": 595, + "TargetStructureID": 74727, + "Label": "595-74727 via Ribbon Synapse from 82480 -> 82481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82480, + "TargetID": 82481, + "Directional": true + } + ] + }, + { + "ID": 7479, + "SourceStructureID": 595, + "TargetStructureID": 79259, + "Label": "595-79259 via Ribbon Synapse from 46650 -> 135707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46650, + "TargetID": 135707, + "Directional": true + } + ] + }, + { + "ID": 7480, + "SourceStructureID": 595, + "TargetStructureID": 88521, + "Label": "595-88521 via BC Conventional Synapse from 92684 -> 92683", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92684, + "TargetID": 92683, + "Directional": true + } + ] + }, + { + "ID": 7481, + "SourceStructureID": 595, + "TargetStructureID": 89039, + "Label": "595-89039 via Ribbon Synapse from 46691 -> 89055", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46691, + "TargetID": 89055, + "Directional": true + } + ] + }, + { + "ID": 7482, + "SourceStructureID": 595, + "TargetStructureID": 91132, + "Label": "595-91132 via Ribbon Synapse from 92618 -> 92619", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92618, + "TargetID": 92619, + "Directional": true + } + ] + }, + { + "ID": 7483, + "SourceStructureID": 595, + "TargetStructureID": 91232, + "Label": "595-91232 via Ribbon Synapse from 92600 -> 92601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92600, + "TargetID": 92601, + "Directional": true + } + ] + }, + { + "ID": 7484, + "SourceStructureID": 595, + "TargetStructureID": 91376, + "Label": "595-91376 via Ribbon Synapse from 91276 -> 92704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91276, + "TargetID": 92704, + "Directional": true + } + ] + }, + { + "ID": 7485, + "SourceStructureID": 595, + "TargetStructureID": 96270, + "Label": "595-96270 via Ribbon Synapse from 46650 -> 135706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46650, + "TargetID": 135706, + "Directional": true + } + ] + }, + { + "ID": 7486, + "SourceStructureID": 595, + "TargetStructureID": 126012, + "Label": "595-126012 via Ribbon Synapse from 47206 -> 126015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47206, + "TargetID": 126015, + "Directional": true + } + ] + }, + { + "ID": 7487, + "SourceStructureID": 598, + "TargetStructureID": 408, + "Label": "598-408 via Conventional from 25881 -> 25880", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25881, + "TargetID": 25880, + "Directional": true + } + ] + }, + { + "ID": 7488, + "SourceStructureID": 598, + "TargetStructureID": 485, + "Label": "598-485 via Conventional from 38812 -> 38814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38812, + "TargetID": 38814, + "Directional": true + } + ] + }, + { + "ID": 7489, + "SourceStructureID": 598, + "TargetStructureID": 5396, + "Label": "598-5396 via Conventional from 32401 -> 89481", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32401, + "TargetID": 89481, + "Directional": true + } + ] + }, + { + "ID": 7490, + "SourceStructureID": 598, + "TargetStructureID": 5563, + "Label": "598-5563 via Conventional from 32402 -> 32399", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32402, + "TargetID": 32399, + "Directional": true + } + ] + }, + { + "ID": 7491, + "SourceStructureID": 598, + "TargetStructureID": 5650, + "Label": "598-5650 via Conventional from 6323 -> 104312", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6323, + "TargetID": 104312, + "Directional": true + } + ] + }, + { + "ID": 7492, + "SourceStructureID": 598, + "TargetStructureID": 6120, + "Label": "598-6120 via Conventional from 6328 -> 110543", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6328, + "TargetID": 110543, + "Directional": true + } + ] + }, + { + "ID": 7493, + "SourceStructureID": 598, + "TargetStructureID": 38810, + "Label": "598-38810 via Conventional from 38806 -> 38811", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38806, + "TargetID": 38811, + "Directional": true + } + ] + }, + { + "ID": 7494, + "SourceStructureID": 606, + "TargetStructureID": 7594, + "Label": "606-7594 via Cistern Pre from 47615 -> 47616", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 47615, + "TargetID": 47616, + "Directional": true + } + ] + }, + { + "ID": 7495, + "SourceStructureID": 606, + "TargetStructureID": 55517, + "Label": "606-55517 via Cistern Pre from 52853 -> 55560", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 52853, + "TargetID": 55560, + "Directional": true + } + ] + }, + { + "ID": 7496, + "SourceStructureID": 606, + "TargetStructureID": 89554, + "Label": "606-89554 via Cistern Pre from 51540 -> 89555", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 51540, + "TargetID": 89555, + "Directional": true + } + ] + }, + { + "ID": 7497, + "SourceStructureID": 611, + "TargetStructureID": 70205, + "Label": "611-70205 via Ribbon Synapse from 70216 -> 70214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70216, + "TargetID": 70214, + "Directional": true + } + ] + }, + { + "ID": 7498, + "SourceStructureID": 906, + "TargetStructureID": 307, + "Label": "906-307 via Conventional from 15874 -> 15896, 15875 -> 15895, 15904 -> 15972, 15905 -> 16793", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15874, + "TargetID": 15896, + "Directional": true + }, + { + "SourceID": 15875, + "TargetID": 15895, + "Directional": true + }, + { + "SourceID": 15904, + "TargetID": 15972, + "Directional": true + }, + { + "SourceID": 15905, + "TargetID": 16793, + "Directional": true + } + ] + }, + { + "ID": 7499, + "SourceStructureID": 906, + "TargetStructureID": 4570, + "Label": "906-4570 via Conventional from 15194 -> 4751", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15194, + "TargetID": 4751, + "Directional": true + } + ] + }, + { + "ID": 7500, + "SourceStructureID": 906, + "TargetStructureID": 5575, + "Label": "906-5575 via Conventional from 15229 -> 22950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15229, + "TargetID": 22950, + "Directional": true + } + ] + }, + { + "ID": 7501, + "SourceStructureID": 906, + "TargetStructureID": 18693, + "Label": "906-18693 via Conventional from 15912 -> 18822, 15913 -> 18727, 22957 -> 22958", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15912, + "TargetID": 18822, + "Directional": true + }, + { + "SourceID": 15913, + "TargetID": 18727, + "Directional": true + }, + { + "SourceID": 22957, + "TargetID": 22958, + "Directional": true + } + ] + }, + { + "ID": 7502, + "SourceStructureID": 906, + "TargetStructureID": 25392, + "Label": "906-25392 via Conventional from 15231 -> 25401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15231, + "TargetID": 25401, + "Directional": true + } + ] + }, + { + "ID": 7503, + "SourceStructureID": 906, + "TargetStructureID": 122467, + "Label": "906-122467 via Conventional from 15172 -> 122468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15172, + "TargetID": 122468, + "Directional": true + } + ] + }, + { + "ID": 7504, + "SourceStructureID": 906, + "TargetStructureID": 122469, + "Label": "906-122469 via Conventional from 15179 -> 122470", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15179, + "TargetID": 122470, + "Directional": true + } + ] + }, + { + "ID": 7505, + "SourceStructureID": 907, + "TargetStructureID": 1724, + "Label": "907-1724 via Cistern Pre from 47910 -> 47909", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 47910, + "TargetID": 47909, + "Directional": true + } + ] + }, + { + "ID": 7506, + "SourceStructureID": 907, + "TargetStructureID": 5575, + "Label": "907-5575 via Conventional from 64545 -> 64544", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64545, + "TargetID": 64544, + "Directional": true + } + ] + }, + { + "ID": 7507, + "SourceStructureID": 909, + "TargetStructureID": 598, + "Label": "909-598 via BC Conventional Synapse from 117796 -> 117797", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117796, + "TargetID": 117797, + "Directional": true + } + ] + }, + { + "ID": 7508, + "SourceStructureID": 909, + "TargetStructureID": 598, + "Label": "909-598 via Ribbon Synapse from 36055 -> 36056, 53772 -> 117258, 55601 -> 117795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36055, + "TargetID": 36056, + "Directional": true + }, + { + "SourceID": 53772, + "TargetID": 117258, + "Directional": true + }, + { + "SourceID": 55601, + "TargetID": 117795, + "Directional": true + } + ] + }, + { + "ID": 7509, + "SourceStructureID": 909, + "TargetStructureID": 4890, + "Label": "909-4890 via Ribbon Synapse from 64915 -> 64914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64915, + "TargetID": 64914, + "Directional": true + } + ] + }, + { + "ID": 7510, + "SourceStructureID": 909, + "TargetStructureID": 5282, + "Label": "909-5282 via Ribbon Synapse from 113682 -> 121606", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113682, + "TargetID": 121606, + "Directional": true + } + ] + }, + { + "ID": 7511, + "SourceStructureID": 909, + "TargetStructureID": 5377, + "Label": "909-5377 via Ribbon Synapse from 87039 -> 87030, 87040 -> 87042", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87039, + "TargetID": 87030, + "Directional": true + }, + { + "SourceID": 87040, + "TargetID": 87042, + "Directional": true + } + ] + }, + { + "ID": 7512, + "SourceStructureID": 909, + "TargetStructureID": 5405, + "Label": "909-5405 via BC Conventional Synapse from 87041 -> 11177, 120200 -> 120201", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87041, + "TargetID": 11177, + "Directional": true + }, + { + "SourceID": 120200, + "TargetID": 120201, + "Directional": true + } + ] + }, + { + "ID": 7513, + "SourceStructureID": 909, + "TargetStructureID": 5405, + "Label": "909-5405 via Ribbon Synapse from 53735 -> 117427, 113675 -> 113676, 113679 -> 131025, 117275 -> 117282, 117425 -> 117426, 118645 -> 11175, 120109 -> 11181, 130018 -> 130017", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53735, + "TargetID": 117427, + "Directional": true + }, + { + "SourceID": 113675, + "TargetID": 113676, + "Directional": true + }, + { + "SourceID": 113679, + "TargetID": 131025, + "Directional": true + }, + { + "SourceID": 117275, + "TargetID": 117282, + "Directional": true + }, + { + "SourceID": 117425, + "TargetID": 117426, + "Directional": true + }, + { + "SourceID": 118645, + "TargetID": 11175, + "Directional": true + }, + { + "SourceID": 120109, + "TargetID": 11181, + "Directional": true + }, + { + "SourceID": 130018, + "TargetID": 130017, + "Directional": true + } + ] + }, + { + "ID": 7514, + "SourceStructureID": 909, + "TargetStructureID": 5497, + "Label": "909-5497 via Ribbon Synapse from 45938 -> 131091, 53746 -> 117469, 130118 -> 117653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45938, + "TargetID": 131091, + "Directional": true + }, + { + "SourceID": 53746, + "TargetID": 117469, + "Directional": true + }, + { + "SourceID": 130118, + "TargetID": 117653, + "Directional": true + } + ] + }, + { + "ID": 7515, + "SourceStructureID": 909, + "TargetStructureID": 7134, + "Label": "909-7134 via Ribbon Synapse from 117824 -> 117900, 117911 -> 117914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117824, + "TargetID": 117900, + "Directional": true + }, + { + "SourceID": 117911, + "TargetID": 117914, + "Directional": true + } + ] + }, + { + "ID": 7516, + "SourceStructureID": 909, + "TargetStructureID": 7594, + "Label": "909-7594 via Ribbon Synapse from 55601 -> 117794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55601, + "TargetID": 117794, + "Directional": true + } + ] + }, + { + "ID": 7517, + "SourceStructureID": 909, + "TargetStructureID": 8575, + "Label": "909-8575 via BC Conventional Synapse from 130864 -> 130865", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130864, + "TargetID": 130865, + "Directional": true + } + ] + }, + { + "ID": 7518, + "SourceStructureID": 909, + "TargetStructureID": 8575, + "Label": "909-8575 via Ribbon Synapse from 62060 -> 62058, 120142 -> 120146, 129568 -> 62077, 129570 -> 62077, 130823 -> 130821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62060, + "TargetID": 62058, + "Directional": true + }, + { + "SourceID": 120142, + "TargetID": 120146, + "Directional": true + }, + { + "SourceID": 129568, + "TargetID": 62077, + "Directional": true + }, + { + "SourceID": 129570, + "TargetID": 62077, + "Directional": true + }, + { + "SourceID": 130823, + "TargetID": 130821, + "Directional": true + } + ] + }, + { + "ID": 7519, + "SourceStructureID": 909, + "TargetStructureID": 8579, + "Label": "909-8579 via Ribbon Synapse from 36057 -> 62900", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36057, + "TargetID": 62900, + "Directional": true + } + ] + }, + { + "ID": 7520, + "SourceStructureID": 909, + "TargetStructureID": 15796, + "Label": "909-15796 via Ribbon Synapse from 87039 -> 131063, 116366 -> 116392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87039, + "TargetID": 131063, + "Directional": true + }, + { + "SourceID": 116366, + "TargetID": 116392, + "Directional": true + } + ] + }, + { + "ID": 7521, + "SourceStructureID": 909, + "TargetStructureID": 16073, + "Label": "909-16073 via Ribbon Synapse from 116783 -> 116784, 130018 -> 130019", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116783, + "TargetID": 116784, + "Directional": true + }, + { + "SourceID": 130018, + "TargetID": 130019, + "Directional": true + } + ] + }, + { + "ID": 7522, + "SourceStructureID": 909, + "TargetStructureID": 30567, + "Label": "909-30567 via Ribbon Synapse from 30652 -> 30647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30652, + "TargetID": 30647, + "Directional": true + } + ] + }, + { + "ID": 7523, + "SourceStructureID": 909, + "TargetStructureID": 48573, + "Label": "909-48573 via Ribbon Synapse from 45883 -> 115927", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45883, + "TargetID": 115927, + "Directional": true + } + ] + }, + { + "ID": 7524, + "SourceStructureID": 909, + "TargetStructureID": 54078, + "Label": "909-54078 via Ribbon Synapse from 53804 -> 67802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53804, + "TargetID": 67802, + "Directional": true + } + ] + }, + { + "ID": 7525, + "SourceStructureID": 909, + "TargetStructureID": 55517, + "Label": "909-55517 via Ribbon Synapse from 55601 -> 55602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55601, + "TargetID": 55602, + "Directional": true + } + ] + }, + { + "ID": 7526, + "SourceStructureID": 909, + "TargetStructureID": 58592, + "Label": "909-58592 via Ribbon Synapse from 45882 -> 58626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45882, + "TargetID": 58626, + "Directional": true + } + ] + }, + { + "ID": 7527, + "SourceStructureID": 909, + "TargetStructureID": 58829, + "Label": "909-58829 via Ribbon Synapse from 45933 -> 131079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45933, + "TargetID": 131079, + "Directional": true + } + ] + }, + { + "ID": 7528, + "SourceStructureID": 909, + "TargetStructureID": 59145, + "Label": "909-59145 via Ribbon Synapse from 30651 -> 59146, 128748 -> 59146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30651, + "TargetID": 59146, + "Directional": true + }, + { + "SourceID": 128748, + "TargetID": 59146, + "Directional": true + } + ] + }, + { + "ID": 7529, + "SourceStructureID": 909, + "TargetStructureID": 59147, + "Label": "909-59147 via Ribbon Synapse from 30651 -> 59150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30651, + "TargetID": 59150, + "Directional": true + } + ] + }, + { + "ID": 7530, + "SourceStructureID": 909, + "TargetStructureID": 61450, + "Label": "909-61450 via BC Conventional Synapse from 117231 -> 61492", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117231, + "TargetID": 61492, + "Directional": true + } + ] + }, + { + "ID": 7531, + "SourceStructureID": 909, + "TargetStructureID": 61450, + "Label": "909-61450 via Ribbon Synapse from 130261 -> 117890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130261, + "TargetID": 117890, + "Directional": true + } + ] + }, + { + "ID": 7532, + "SourceStructureID": 909, + "TargetStructureID": 61500, + "Label": "909-61500 via Ribbon Synapse from 45924 -> 130980, 61502 -> 61501, 61505 -> 61504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45924, + "TargetID": 130980, + "Directional": true + }, + { + "SourceID": 61502, + "TargetID": 61501, + "Directional": true + }, + { + "SourceID": 61505, + "TargetID": 61504, + "Directional": true + } + ] + }, + { + "ID": 7533, + "SourceStructureID": 909, + "TargetStructureID": 62578, + "Label": "909-62578 via BC Conventional Synapse from 120169 -> 120168", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120169, + "TargetID": 120168, + "Directional": true + } + ] + }, + { + "ID": 7534, + "SourceStructureID": 909, + "TargetStructureID": 62578, + "Label": "909-62578 via Ribbon Synapse from 113675 -> 62583, 117275 -> 117281, 118407 -> 118416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113675, + "TargetID": 62583, + "Directional": true + }, + { + "SourceID": 117275, + "TargetID": 117281, + "Directional": true + }, + { + "SourceID": 118407, + "TargetID": 118416, + "Directional": true + } + ] + }, + { + "ID": 7535, + "SourceStructureID": 909, + "TargetStructureID": 65134, + "Label": "909-65134 via BC Conventional Synapse from 123565 -> 123564", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123565, + "TargetID": 123564, + "Directional": true + } + ] + }, + { + "ID": 7536, + "SourceStructureID": 909, + "TargetStructureID": 66374, + "Label": "909-66374 via Ribbon Synapse from 115966 -> 66387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115966, + "TargetID": 66387, + "Directional": true + } + ] + }, + { + "ID": 7537, + "SourceStructureID": 909, + "TargetStructureID": 66390, + "Label": "909-66390 via Ribbon Synapse from 36058 -> 66393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36058, + "TargetID": 66393, + "Directional": true + } + ] + }, + { + "ID": 7538, + "SourceStructureID": 909, + "TargetStructureID": 67663, + "Label": "909-67663 via Ribbon Synapse from 36061 -> 69866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36061, + "TargetID": 69866, + "Directional": true + } + ] + }, + { + "ID": 7539, + "SourceStructureID": 909, + "TargetStructureID": 68153, + "Label": "909-68153 via Ribbon Synapse from 130077 -> 130078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130077, + "TargetID": 130078, + "Directional": true + } + ] + }, + { + "ID": 7540, + "SourceStructureID": 909, + "TargetStructureID": 69162, + "Label": "909-69162 via Ribbon Synapse from 45918 -> 69214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45918, + "TargetID": 69214, + "Directional": true + } + ] + }, + { + "ID": 7541, + "SourceStructureID": 909, + "TargetStructureID": 69367, + "Label": "909-69367 via Ribbon Synapse from 53740 -> 72371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53740, + "TargetID": 72371, + "Directional": true + } + ] + }, + { + "ID": 7542, + "SourceStructureID": 909, + "TargetStructureID": 75922, + "Label": "909-75922 via Ribbon Synapse from 129969 -> 129970", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129969, + "TargetID": 129970, + "Directional": true + } + ] + }, + { + "ID": 7543, + "SourceStructureID": 909, + "TargetStructureID": 78333, + "Label": "909-78333 via BC Conventional Synapse from 117480 -> 117481", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117480, + "TargetID": 117481, + "Directional": true + } + ] + }, + { + "ID": 7544, + "SourceStructureID": 909, + "TargetStructureID": 78709, + "Label": "909-78709 via Ribbon Synapse from 45932 -> 131021", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45932, + "TargetID": 131021, + "Directional": true + } + ] + }, + { + "ID": 7545, + "SourceStructureID": 909, + "TargetStructureID": 81532, + "Label": "909-81532 via Ribbon Synapse from 53772 -> 117257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53772, + "TargetID": 117257, + "Directional": true + } + ] + }, + { + "ID": 7546, + "SourceStructureID": 909, + "TargetStructureID": 96139, + "Label": "909-96139 via Ribbon Synapse from 118471 -> 130854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118471, + "TargetID": 130854, + "Directional": true + } + ] + }, + { + "ID": 7547, + "SourceStructureID": 909, + "TargetStructureID": 97131, + "Label": "909-97131 via Ribbon Synapse from 130116 -> 130117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130116, + "TargetID": 130117, + "Directional": true + } + ] + }, + { + "ID": 7548, + "SourceStructureID": 909, + "TargetStructureID": 97363, + "Label": "909-97363 via Ribbon Synapse from 115939 -> 129616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115939, + "TargetID": 129616, + "Directional": true + } + ] + }, + { + "ID": 7549, + "SourceStructureID": 909, + "TargetStructureID": 99091, + "Label": "909-99091 via Ribbon Synapse from 45882 -> 129574", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45882, + "TargetID": 129574, + "Directional": true + } + ] + }, + { + "ID": 7550, + "SourceStructureID": 909, + "TargetStructureID": 103987, + "Label": "909-103987 via Ribbon Synapse from 130073 -> 130074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130073, + "TargetID": 130074, + "Directional": true + } + ] + }, + { + "ID": 7551, + "SourceStructureID": 909, + "TargetStructureID": 104619, + "Label": "909-104619 via Ribbon Synapse from 53802 -> 118383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53802, + "TargetID": 118383, + "Directional": true + } + ] + }, + { + "ID": 7552, + "SourceStructureID": 909, + "TargetStructureID": 104662, + "Label": "909-104662 via Ribbon Synapse from 130266 -> 130267", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130266, + "TargetID": 130267, + "Directional": true + } + ] + }, + { + "ID": 7553, + "SourceStructureID": 909, + "TargetStructureID": 110295, + "Label": "909-110295 via BC Conventional Synapse from 130934 -> 130935", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130934, + "TargetID": 130935, + "Directional": true + } + ] + }, + { + "ID": 7554, + "SourceStructureID": 909, + "TargetStructureID": 115853, + "Label": "909-115853 via Ribbon Synapse from 129472 -> 115854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129472, + "TargetID": 115854, + "Directional": true + } + ] + }, + { + "ID": 7555, + "SourceStructureID": 909, + "TargetStructureID": 115855, + "Label": "909-115855 via BC Conventional Synapse from 130471 -> 130470", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130471, + "TargetID": 130470, + "Directional": true + } + ] + }, + { + "ID": 7556, + "SourceStructureID": 909, + "TargetStructureID": 115855, + "Label": "909-115855 via Ribbon Synapse from 38884 -> 115859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38884, + "TargetID": 115859, + "Directional": true + } + ] + }, + { + "ID": 7557, + "SourceStructureID": 909, + "TargetStructureID": 115860, + "Label": "909-115860 via Ribbon Synapse from 40312 -> 115862, 129472 -> 129473", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40312, + "TargetID": 115862, + "Directional": true + }, + { + "SourceID": 129472, + "TargetID": 129473, + "Directional": true + } + ] + }, + { + "ID": 7558, + "SourceStructureID": 909, + "TargetStructureID": 115878, + "Label": "909-115878 via Ribbon Synapse from 115877 -> 115879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115877, + "TargetID": 115879, + "Directional": true + } + ] + }, + { + "ID": 7559, + "SourceStructureID": 909, + "TargetStructureID": 115880, + "Label": "909-115880 via Ribbon Synapse from 115877 -> 115881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115877, + "TargetID": 115881, + "Directional": true + } + ] + }, + { + "ID": 7560, + "SourceStructureID": 909, + "TargetStructureID": 115884, + "Label": "909-115884 via Ribbon Synapse from 115883 -> 115885", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115883, + "TargetID": 115885, + "Directional": true + } + ] + }, + { + "ID": 7561, + "SourceStructureID": 909, + "TargetStructureID": 115886, + "Label": "909-115886 via Ribbon Synapse from 115883 -> 115887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115883, + "TargetID": 115887, + "Directional": true + } + ] + }, + { + "ID": 7562, + "SourceStructureID": 909, + "TargetStructureID": 115890, + "Label": "909-115890 via Ribbon Synapse from 45839 -> 115893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45839, + "TargetID": 115893, + "Directional": true + } + ] + }, + { + "ID": 7563, + "SourceStructureID": 909, + "TargetStructureID": 115895, + "Label": "909-115895 via Ribbon Synapse from 115894 -> 115898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115894, + "TargetID": 115898, + "Directional": true + } + ] + }, + { + "ID": 7564, + "SourceStructureID": 909, + "TargetStructureID": 115897, + "Label": "909-115897 via Ribbon Synapse from 115894 -> 115899", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115894, + "TargetID": 115899, + "Directional": true + } + ] + }, + { + "ID": 7565, + "SourceStructureID": 909, + "TargetStructureID": 115916, + "Label": "909-115916 via Ribbon Synapse from 115913 -> 115917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115913, + "TargetID": 115917, + "Directional": true + } + ] + }, + { + "ID": 7566, + "SourceStructureID": 909, + "TargetStructureID": 115921, + "Label": "909-115921 via Ribbon Synapse from 115920 -> 115924", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115920, + "TargetID": 115924, + "Directional": true + } + ] + }, + { + "ID": 7567, + "SourceStructureID": 909, + "TargetStructureID": 115922, + "Label": "909-115922 via Ribbon Synapse from 115920 -> 115925", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115920, + "TargetID": 115925, + "Directional": true + } + ] + }, + { + "ID": 7568, + "SourceStructureID": 909, + "TargetStructureID": 115923, + "Label": "909-115923 via Ribbon Synapse from 115920 -> 115926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115920, + "TargetID": 115926, + "Directional": true + } + ] + }, + { + "ID": 7569, + "SourceStructureID": 909, + "TargetStructureID": 115928, + "Label": "909-115928 via BC Conventional Synapse from 115113 -> 115932", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115113, + "TargetID": 115932, + "Directional": true + } + ] + }, + { + "ID": 7570, + "SourceStructureID": 909, + "TargetStructureID": 115930, + "Label": "909-115930 via BC Conventional Synapse from 115114 -> 115933", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115114, + "TargetID": 115933, + "Directional": true + } + ] + }, + { + "ID": 7571, + "SourceStructureID": 909, + "TargetStructureID": 115944, + "Label": "909-115944 via Ribbon Synapse from 115939 -> 115945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115939, + "TargetID": 115945, + "Directional": true + } + ] + }, + { + "ID": 7572, + "SourceStructureID": 909, + "TargetStructureID": 115967, + "Label": "909-115967 via Ribbon Synapse from 115966 -> 115968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115966, + "TargetID": 115968, + "Directional": true + } + ] + }, + { + "ID": 7573, + "SourceStructureID": 909, + "TargetStructureID": 115969, + "Label": "909-115969 via Ribbon Synapse from 36059 -> 115970", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36059, + "TargetID": 115970, + "Directional": true + } + ] + }, + { + "ID": 7574, + "SourceStructureID": 909, + "TargetStructureID": 115984, + "Label": "909-115984 via Ribbon Synapse from 115115 -> 115985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115115, + "TargetID": 115985, + "Directional": true + } + ] + }, + { + "ID": 7575, + "SourceStructureID": 909, + "TargetStructureID": 115990, + "Label": "909-115990 via Ribbon Synapse from 120103 -> 120102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120103, + "TargetID": 120102, + "Directional": true + } + ] + }, + { + "ID": 7576, + "SourceStructureID": 909, + "TargetStructureID": 116373, + "Label": "909-116373 via Ribbon Synapse from 115997 -> 116374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115997, + "TargetID": 116374, + "Directional": true + } + ] + }, + { + "ID": 7577, + "SourceStructureID": 909, + "TargetStructureID": 116378, + "Label": "909-116378 via Ribbon Synapse from 116379 -> 116380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116379, + "TargetID": 116380, + "Directional": true + } + ] + }, + { + "ID": 7578, + "SourceStructureID": 909, + "TargetStructureID": 116387, + "Label": "909-116387 via Ribbon Synapse from 116379 -> 129975", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116379, + "TargetID": 129975, + "Directional": true + } + ] + }, + { + "ID": 7579, + "SourceStructureID": 909, + "TargetStructureID": 116390, + "Label": "909-116390 via Ribbon Synapse from 116366 -> 116391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116366, + "TargetID": 116391, + "Directional": true + } + ] + }, + { + "ID": 7580, + "SourceStructureID": 909, + "TargetStructureID": 116395, + "Label": "909-116395 via Ribbon Synapse from 129987 -> 116397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129987, + "TargetID": 116397, + "Directional": true + } + ] + }, + { + "ID": 7581, + "SourceStructureID": 909, + "TargetStructureID": 116400, + "Label": "909-116400 via Ribbon Synapse from 116780 -> 116781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116780, + "TargetID": 116781, + "Directional": true + } + ] + }, + { + "ID": 7582, + "SourceStructureID": 909, + "TargetStructureID": 116769, + "Label": "909-116769 via Ribbon Synapse from 116780 -> 116774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116780, + "TargetID": 116774, + "Directional": true + } + ] + }, + { + "ID": 7583, + "SourceStructureID": 909, + "TargetStructureID": 116775, + "Label": "909-116775 via Ribbon Synapse from 116402 -> 116776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116402, + "TargetID": 116776, + "Directional": true + } + ] + }, + { + "ID": 7584, + "SourceStructureID": 909, + "TargetStructureID": 116785, + "Label": "909-116785 via Ribbon Synapse from 116783 -> 116787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116783, + "TargetID": 116787, + "Directional": true + } + ] + }, + { + "ID": 7585, + "SourceStructureID": 909, + "TargetStructureID": 117200, + "Label": "909-117200 via Ribbon Synapse from 97715 -> 117201", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97715, + "TargetID": 117201, + "Directional": true + } + ] + }, + { + "ID": 7586, + "SourceStructureID": 909, + "TargetStructureID": 117202, + "Label": "909-117202 via Ribbon Synapse from 97715 -> 117203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97715, + "TargetID": 117203, + "Directional": true + } + ] + }, + { + "ID": 7587, + "SourceStructureID": 909, + "TargetStructureID": 117208, + "Label": "909-117208 via BC Conventional Synapse from 117212 -> 117213", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117212, + "TargetID": 117213, + "Directional": true + } + ] + }, + { + "ID": 7588, + "SourceStructureID": 909, + "TargetStructureID": 117214, + "Label": "909-117214 via Ribbon Synapse from 113684 -> 117217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113684, + "TargetID": 117217, + "Directional": true + } + ] + }, + { + "ID": 7589, + "SourceStructureID": 909, + "TargetStructureID": 117218, + "Label": "909-117218 via Ribbon Synapse from 113684 -> 131067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113684, + "TargetID": 131067, + "Directional": true + } + ] + }, + { + "ID": 7590, + "SourceStructureID": 909, + "TargetStructureID": 117233, + "Label": "909-117233 via Ribbon Synapse from 87043 -> 117234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87043, + "TargetID": 117234, + "Directional": true + } + ] + }, + { + "ID": 7591, + "SourceStructureID": 909, + "TargetStructureID": 117263, + "Label": "909-117263 via Ribbon Synapse from 53805 -> 117264", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53805, + "TargetID": 117264, + "Directional": true + } + ] + }, + { + "ID": 7592, + "SourceStructureID": 909, + "TargetStructureID": 117269, + "Label": "909-117269 via BC Conventional Synapse from 117267 -> 117270", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117267, + "TargetID": 117270, + "Directional": true + } + ] + }, + { + "ID": 7593, + "SourceStructureID": 909, + "TargetStructureID": 117272, + "Label": "909-117272 via BC Conventional Synapse from 130135 -> 130136", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130135, + "TargetID": 130136, + "Directional": true + } + ] + }, + { + "ID": 7594, + "SourceStructureID": 909, + "TargetStructureID": 117285, + "Label": "909-117285 via Ribbon Synapse from 117279 -> 117434", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117279, + "TargetID": 117434, + "Directional": true + } + ] + }, + { + "ID": 7595, + "SourceStructureID": 909, + "TargetStructureID": 117388, + "Label": "909-117388 via Ribbon Synapse from 53736 -> 117389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53736, + "TargetID": 117389, + "Directional": true + } + ] + }, + { + "ID": 7596, + "SourceStructureID": 909, + "TargetStructureID": 117390, + "Label": "909-117390 via Ribbon Synapse from 53736 -> 117391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53736, + "TargetID": 117391, + "Directional": true + } + ] + }, + { + "ID": 7597, + "SourceStructureID": 909, + "TargetStructureID": 117394, + "Label": "909-117394 via Ribbon Synapse from 117393 -> 117395", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117393, + "TargetID": 117395, + "Directional": true + } + ] + }, + { + "ID": 7598, + "SourceStructureID": 909, + "TargetStructureID": 117406, + "Label": "909-117406 via Ribbon Synapse from 53731 -> 117418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53731, + "TargetID": 117418, + "Directional": true + } + ] + }, + { + "ID": 7599, + "SourceStructureID": 909, + "TargetStructureID": 117411, + "Label": "909-117411 via Ribbon Synapse from 53731 -> 117419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53731, + "TargetID": 117419, + "Directional": true + } + ] + }, + { + "ID": 7600, + "SourceStructureID": 909, + "TargetStructureID": 117431, + "Label": "909-117431 via Ribbon Synapse from 117425 -> 120164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117425, + "TargetID": 120164, + "Directional": true + } + ] + }, + { + "ID": 7601, + "SourceStructureID": 909, + "TargetStructureID": 117433, + "Label": "909-117433 via Ribbon Synapse from 117275 -> 117435", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117275, + "TargetID": 117435, + "Directional": true + } + ] + }, + { + "ID": 7602, + "SourceStructureID": 909, + "TargetStructureID": 117450, + "Label": "909-117450 via BC Conventional Synapse from 130075 -> 130076", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130075, + "TargetID": 130076, + "Directional": true + } + ] + }, + { + "ID": 7603, + "SourceStructureID": 909, + "TargetStructureID": 117461, + "Label": "909-117461 via Ribbon Synapse from 117460 -> 117462", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117460, + "TargetID": 117462, + "Directional": true + } + ] + }, + { + "ID": 7604, + "SourceStructureID": 909, + "TargetStructureID": 117465, + "Label": "909-117465 via Ribbon Synapse from 117479 -> 130089", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117479, + "TargetID": 130089, + "Directional": true + } + ] + }, + { + "ID": 7605, + "SourceStructureID": 909, + "TargetStructureID": 117470, + "Label": "909-117470 via Ribbon Synapse from 53746 -> 117473", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53746, + "TargetID": 117473, + "Directional": true + } + ] + }, + { + "ID": 7606, + "SourceStructureID": 909, + "TargetStructureID": 117637, + "Label": "909-117637 via BC Conventional Synapse from 117636 -> 117638", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117636, + "TargetID": 117638, + "Directional": true + } + ] + }, + { + "ID": 7607, + "SourceStructureID": 909, + "TargetStructureID": 117639, + "Label": "909-117639 via Ribbon Synapse from 130080 -> 130081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130080, + "TargetID": 130081, + "Directional": true + } + ] + }, + { + "ID": 7608, + "SourceStructureID": 909, + "TargetStructureID": 117643, + "Label": "909-117643 via Ribbon Synapse from 117642 -> 117644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117642, + "TargetID": 117644, + "Directional": true + } + ] + }, + { + "ID": 7609, + "SourceStructureID": 909, + "TargetStructureID": 117645, + "Label": "909-117645 via Ribbon Synapse from 117642 -> 117646", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117642, + "TargetID": 117646, + "Directional": true + } + ] + }, + { + "ID": 7610, + "SourceStructureID": 909, + "TargetStructureID": 117650, + "Label": "909-117650 via Ribbon Synapse from 130118 -> 117651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130118, + "TargetID": 117651, + "Directional": true + } + ] + }, + { + "ID": 7611, + "SourceStructureID": 909, + "TargetStructureID": 117668, + "Label": "909-117668 via BC Conventional Synapse from 117667 -> 117669", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117667, + "TargetID": 117669, + "Directional": true + } + ] + }, + { + "ID": 7612, + "SourceStructureID": 909, + "TargetStructureID": 117670, + "Label": "909-117670 via BC Conventional Synapse from 117459 -> 117671, 120170 -> 120171", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117459, + "TargetID": 117671, + "Directional": true + }, + { + "SourceID": 120170, + "TargetID": 120171, + "Directional": true + } + ] + }, + { + "ID": 7613, + "SourceStructureID": 909, + "TargetStructureID": 117672, + "Label": "909-117672 via BC Conventional Synapse from 117676 -> 117677", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117676, + "TargetID": 117677, + "Directional": true + } + ] + }, + { + "ID": 7614, + "SourceStructureID": 909, + "TargetStructureID": 117678, + "Label": "909-117678 via Ribbon Synapse from 130133 -> 130131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130133, + "TargetID": 130131, + "Directional": true + } + ] + }, + { + "ID": 7615, + "SourceStructureID": 909, + "TargetStructureID": 117683, + "Label": "909-117683 via Ribbon Synapse from 130133 -> 130132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130133, + "TargetID": 130132, + "Directional": true + } + ] + }, + { + "ID": 7616, + "SourceStructureID": 909, + "TargetStructureID": 117689, + "Label": "909-117689 via Ribbon Synapse from 117693 -> 120174", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117693, + "TargetID": 120174, + "Directional": true + } + ] + }, + { + "ID": 7617, + "SourceStructureID": 909, + "TargetStructureID": 117780, + "Label": "909-117780 via Ribbon Synapse from 117696 -> 117781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117696, + "TargetID": 117781, + "Directional": true + } + ] + }, + { + "ID": 7618, + "SourceStructureID": 909, + "TargetStructureID": 117811, + "Label": "909-117811 via Ribbon Synapse from 117809 -> 117812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117809, + "TargetID": 117812, + "Directional": true + } + ] + }, + { + "ID": 7619, + "SourceStructureID": 909, + "TargetStructureID": 117835, + "Label": "909-117835 via BC Conventional Synapse from 117834 -> 117836", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117834, + "TargetID": 117836, + "Directional": true + } + ] + }, + { + "ID": 7620, + "SourceStructureID": 909, + "TargetStructureID": 117843, + "Label": "909-117843 via Ribbon Synapse from 53788 -> 117848, 117844 -> 130277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53788, + "TargetID": 117848, + "Directional": true + }, + { + "SourceID": 117844, + "TargetID": 130277, + "Directional": true + } + ] + }, + { + "ID": 7621, + "SourceStructureID": 909, + "TargetStructureID": 117854, + "Label": "909-117854 via Ribbon Synapse from 117844 -> 117855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117844, + "TargetID": 117855, + "Directional": true + } + ] + }, + { + "ID": 7622, + "SourceStructureID": 909, + "TargetStructureID": 117860, + "Label": "909-117860 via Ribbon Synapse from 117849 -> 130276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117849, + "TargetID": 130276, + "Directional": true + } + ] + }, + { + "ID": 7623, + "SourceStructureID": 909, + "TargetStructureID": 117868, + "Label": "909-117868 via Ribbon Synapse from 117867 -> 117869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117867, + "TargetID": 117869, + "Directional": true + } + ] + }, + { + "ID": 7624, + "SourceStructureID": 909, + "TargetStructureID": 117873, + "Label": "909-117873 via Ribbon Synapse from 130275 -> 117875", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130275, + "TargetID": 117875, + "Directional": true + } + ] + }, + { + "ID": 7625, + "SourceStructureID": 909, + "TargetStructureID": 117876, + "Label": "909-117876 via Ribbon Synapse from 130273 -> 130274", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130273, + "TargetID": 130274, + "Directional": true + } + ] + }, + { + "ID": 7626, + "SourceStructureID": 909, + "TargetStructureID": 117881, + "Label": "909-117881 via Ribbon Synapse from 117880 -> 117882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117880, + "TargetID": 117882, + "Directional": true + } + ] + }, + { + "ID": 7627, + "SourceStructureID": 909, + "TargetStructureID": 117883, + "Label": "909-117883 via BC Conventional Synapse from 130269 -> 130268", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130269, + "TargetID": 130268, + "Directional": true + } + ] + }, + { + "ID": 7628, + "SourceStructureID": 909, + "TargetStructureID": 117897, + "Label": "909-117897 via Ribbon Synapse from 117824 -> 117910, 130261 -> 130262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117824, + "TargetID": 117910, + "Directional": true + }, + { + "SourceID": 130261, + "TargetID": 130262, + "Directional": true + } + ] + }, + { + "ID": 7629, + "SourceStructureID": 909, + "TargetStructureID": 117906, + "Label": "909-117906 via Ribbon Synapse from 117911 -> 117912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117911, + "TargetID": 117912, + "Directional": true + } + ] + }, + { + "ID": 7630, + "SourceStructureID": 909, + "TargetStructureID": 117916, + "Label": "909-117916 via Ribbon Synapse from 117915 -> 117917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117915, + "TargetID": 117917, + "Directional": true + } + ] + }, + { + "ID": 7631, + "SourceStructureID": 909, + "TargetStructureID": 118380, + "Label": "909-118380 via Ribbon Synapse from 53800 -> 118381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53800, + "TargetID": 118381, + "Directional": true + } + ] + }, + { + "ID": 7632, + "SourceStructureID": 909, + "TargetStructureID": 118388, + "Label": "909-118388 via BC Conventional Synapse from 118390 -> 118389", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118390, + "TargetID": 118389, + "Directional": true + } + ] + }, + { + "ID": 7633, + "SourceStructureID": 909, + "TargetStructureID": 118391, + "Label": "909-118391 via Ribbon Synapse from 53802 -> 118392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53802, + "TargetID": 118392, + "Directional": true + } + ] + }, + { + "ID": 7634, + "SourceStructureID": 909, + "TargetStructureID": 118398, + "Label": "909-118398 via Ribbon Synapse from 118396 -> 118399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118396, + "TargetID": 118399, + "Directional": true + } + ] + }, + { + "ID": 7635, + "SourceStructureID": 909, + "TargetStructureID": 118402, + "Label": "909-118402 via Ribbon Synapse from 53804 -> 118403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53804, + "TargetID": 118403, + "Directional": true + } + ] + }, + { + "ID": 7636, + "SourceStructureID": 909, + "TargetStructureID": 118410, + "Label": "909-118410 via Ribbon Synapse from 117792 -> 118411, 118409 -> 130306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117792, + "TargetID": 118411, + "Directional": true + }, + { + "SourceID": 118409, + "TargetID": 130306, + "Directional": true + } + ] + }, + { + "ID": 7637, + "SourceStructureID": 909, + "TargetStructureID": 118412, + "Label": "909-118412 via Ribbon Synapse from 118409 -> 118413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118409, + "TargetID": 118413, + "Directional": true + } + ] + }, + { + "ID": 7638, + "SourceStructureID": 909, + "TargetStructureID": 118417, + "Label": "909-118417 via Ribbon Synapse from 117792 -> 118418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117792, + "TargetID": 118418, + "Directional": true + } + ] + }, + { + "ID": 7639, + "SourceStructureID": 909, + "TargetStructureID": 118446, + "Label": "909-118446 via Ribbon Synapse from 45167 -> 118447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45167, + "TargetID": 118447, + "Directional": true + } + ] + }, + { + "ID": 7640, + "SourceStructureID": 909, + "TargetStructureID": 118453, + "Label": "909-118453 via Ribbon Synapse from 45890 -> 118454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45890, + "TargetID": 118454, + "Directional": true + } + ] + }, + { + "ID": 7641, + "SourceStructureID": 909, + "TargetStructureID": 118588, + "Label": "909-118588 via Ribbon Synapse from 118582 -> 118589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118582, + "TargetID": 118589, + "Directional": true + } + ] + }, + { + "ID": 7642, + "SourceStructureID": 909, + "TargetStructureID": 118590, + "Label": "909-118590 via Ribbon Synapse from 118582 -> 118591", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118582, + "TargetID": 118591, + "Directional": true + } + ] + }, + { + "ID": 7643, + "SourceStructureID": 909, + "TargetStructureID": 120197, + "Label": "909-120197 via Ribbon Synapse from 117692 -> 130241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117692, + "TargetID": 130241, + "Directional": true + } + ] + }, + { + "ID": 7644, + "SourceStructureID": 909, + "TargetStructureID": 130012, + "Label": "909-130012 via Ribbon Synapse from 36061 -> 130015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36061, + "TargetID": 130015, + "Directional": true + } + ] + }, + { + "ID": 7645, + "SourceStructureID": 911, + "TargetStructureID": 492, + "Label": "911-492 via Conventional from 924 -> 35036, 26675 -> 34991", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 924, + "TargetID": 35036, + "Directional": true + }, + { + "SourceID": 26675, + "TargetID": 34991, + "Directional": true + } + ] + }, + { + "ID": 7646, + "SourceStructureID": 968, + "TargetStructureID": 3865, + "Label": "968-3865 via Ribbon Synapse from 132112 -> 132104, 132114 -> 132113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132112, + "TargetID": 132104, + "Directional": true + }, + { + "SourceID": 132114, + "TargetID": 132113, + "Directional": true + } + ] + }, + { + "ID": 7647, + "SourceStructureID": 968, + "TargetStructureID": 4568, + "Label": "968-4568 via Ribbon Synapse from 12194 -> 11515, 12195 -> 11516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12194, + "TargetID": 11515, + "Directional": true + }, + { + "SourceID": 12195, + "TargetID": 11516, + "Directional": true + } + ] + }, + { + "ID": 7648, + "SourceStructureID": 968, + "TargetStructureID": 4835, + "Label": "968-4835 via Ribbon Synapse from 12312 -> 12313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12312, + "TargetID": 12313, + "Directional": true + } + ] + }, + { + "ID": 7649, + "SourceStructureID": 968, + "TargetStructureID": 5486, + "Label": "968-5486 via Ribbon Synapse from 129873 -> 41085", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129873, + "TargetID": 41085, + "Directional": true + } + ] + }, + { + "ID": 7650, + "SourceStructureID": 968, + "TargetStructureID": 7568, + "Label": "968-7568 via Ribbon Synapse from 27102 -> 27096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27102, + "TargetID": 27096, + "Directional": true + } + ] + }, + { + "ID": 7651, + "SourceStructureID": 968, + "TargetStructureID": 8575, + "Label": "968-8575 via Ribbon Synapse from 12161 -> 62254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12161, + "TargetID": 62254, + "Directional": true + } + ] + }, + { + "ID": 7652, + "SourceStructureID": 968, + "TargetStructureID": 129648, + "Label": "968-129648 via Ribbon Synapse from 12158 -> 129656", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12158, + "TargetID": 129656, + "Directional": true + } + ] + }, + { + "ID": 7653, + "SourceStructureID": 968, + "TargetStructureID": 133744, + "Label": "968-133744 via Ribbon Synapse from 12189 -> 133745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12189, + "TargetID": 133745, + "Directional": true + } + ] + }, + { + "ID": 7654, + "SourceStructureID": 989, + "TargetStructureID": 3257, + "Label": "989-3257 via Ribbon Synapse from 13069 -> 129881, 13092 -> 129882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13069, + "TargetID": 129881, + "Directional": true + }, + { + "SourceID": 13092, + "TargetID": 129882, + "Directional": true + } + ] + }, + { + "ID": 7655, + "SourceStructureID": 989, + "TargetStructureID": 20681, + "Label": "989-20681 via Ribbon Synapse from 13095 -> 65807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13095, + "TargetID": 65807, + "Directional": true + } + ] + }, + { + "ID": 7656, + "SourceStructureID": 992, + "TargetStructureID": 3679, + "Label": "992-3679 via Ribbon Synapse from 23295 -> 23294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23295, + "TargetID": 23294, + "Directional": true + } + ] + }, + { + "ID": 7657, + "SourceStructureID": 992, + "TargetStructureID": 29340, + "Label": "992-29340 via Ribbon Synapse from 29431 -> 29430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29431, + "TargetID": 29430, + "Directional": true + } + ] + }, + { + "ID": 7658, + "SourceStructureID": 992, + "TargetStructureID": 46498, + "Label": "992-46498 via Ribbon Synapse from 127921 -> 127920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127921, + "TargetID": 127920, + "Directional": true + } + ] + }, + { + "ID": 7659, + "SourceStructureID": 992, + "TargetStructureID": 60386, + "Label": "992-60386 via Ribbon Synapse from 60423 -> 60422", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60423, + "TargetID": 60422, + "Directional": true + } + ] + }, + { + "ID": 7660, + "SourceStructureID": 999, + "TargetStructureID": 5405, + "Label": "999-5405 via Ribbon Synapse from 23412 -> 23409, 23413 -> 23408, 23416 -> 11054", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23412, + "TargetID": 23409, + "Directional": true + }, + { + "SourceID": 23413, + "TargetID": 23408, + "Directional": true + }, + { + "SourceID": 23416, + "TargetID": 11054, + "Directional": true + } + ] + }, + { + "ID": 7661, + "SourceStructureID": 999, + "TargetStructureID": 5497, + "Label": "999-5497 via Ribbon Synapse from 23411 -> 62525, 62527 -> 62526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23411, + "TargetID": 62525, + "Directional": true + }, + { + "SourceID": 62527, + "TargetID": 62526, + "Directional": true + } + ] + }, + { + "ID": 7662, + "SourceStructureID": 1021, + "TargetStructureID": 598, + "Label": "1021-598 via Ribbon Synapse from 19754 -> 6325, 125623 -> 125628, 125654 -> 125653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19754, + "TargetID": 6325, + "Directional": true + }, + { + "SourceID": 125623, + "TargetID": 125628, + "Directional": true + }, + { + "SourceID": 125654, + "TargetID": 125653, + "Directional": true + } + ] + }, + { + "ID": 7663, + "SourceStructureID": 1021, + "TargetStructureID": 606, + "Label": "1021-606 via Ribbon Synapse from 51471 -> 51468, 51475 -> 51476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51471, + "TargetID": 51468, + "Directional": true + }, + { + "SourceID": 51475, + "TargetID": 51476, + "Directional": true + } + ] + }, + { + "ID": 7664, + "SourceStructureID": 1021, + "TargetStructureID": 5377, + "Label": "1021-5377 via Ribbon Synapse from 58796 -> 87128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58796, + "TargetID": 87128, + "Directional": true + } + ] + }, + { + "ID": 7665, + "SourceStructureID": 1021, + "TargetStructureID": 6121, + "Label": "1021-6121 via Ribbon Synapse from 125308 -> 125309", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125308, + "TargetID": 125309, + "Directional": true + } + ] + }, + { + "ID": 7666, + "SourceStructureID": 1021, + "TargetStructureID": 7134, + "Label": "1021-7134 via Ribbon Synapse from 19766 -> 53487, 61087 -> 125711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19766, + "TargetID": 53487, + "Directional": true + }, + { + "SourceID": 61087, + "TargetID": 125711, + "Directional": true + } + ] + }, + { + "ID": 7667, + "SourceStructureID": 1021, + "TargetStructureID": 7594, + "Label": "1021-7594 via Ribbon Synapse from 19748 -> 25086, 19750 -> 125132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19748, + "TargetID": 25086, + "Directional": true + }, + { + "SourceID": 19750, + "TargetID": 125132, + "Directional": true + } + ] + }, + { + "ID": 7668, + "SourceStructureID": 1021, + "TargetStructureID": 9769, + "Label": "1021-9769 via Ribbon Synapse from 26483 -> 52609, 28348 -> 125260, 28349 -> 30150, 30187 -> 30163, 51475 -> 125332, 115343 -> 30140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26483, + "TargetID": 52609, + "Directional": true + }, + { + "SourceID": 28348, + "TargetID": 125260, + "Directional": true + }, + { + "SourceID": 28349, + "TargetID": 30150, + "Directional": true + }, + { + "SourceID": 30187, + "TargetID": 30163, + "Directional": true + }, + { + "SourceID": 51475, + "TargetID": 125332, + "Directional": true + }, + { + "SourceID": 115343, + "TargetID": 30140, + "Directional": true + } + ] + }, + { + "ID": 7669, + "SourceStructureID": 1021, + "TargetStructureID": 16073, + "Label": "1021-16073 via Ribbon Synapse from 125148 -> 19838, 125520 -> 125521, 125527 -> 125528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125148, + "TargetID": 19838, + "Directional": true + }, + { + "SourceID": 125520, + "TargetID": 125521, + "Directional": true + }, + { + "SourceID": 125527, + "TargetID": 125528, + "Directional": true + } + ] + }, + { + "ID": 7670, + "SourceStructureID": 1021, + "TargetStructureID": 22974, + "Label": "1021-22974 via Ribbon Synapse from 51533 -> 125333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51533, + "TargetID": 125333, + "Directional": true + } + ] + }, + { + "ID": 7671, + "SourceStructureID": 1021, + "TargetStructureID": 53436, + "Label": "1021-53436 via Ribbon Synapse from 55833 -> 55834, 115343 -> 125327, 115349 -> 120569, 120568 -> 53437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55833, + "TargetID": 55834, + "Directional": true + }, + { + "SourceID": 115343, + "TargetID": 125327, + "Directional": true + }, + { + "SourceID": 115349, + "TargetID": 120569, + "Directional": true + }, + { + "SourceID": 120568, + "TargetID": 53437, + "Directional": true + } + ] + }, + { + "ID": 7672, + "SourceStructureID": 1021, + "TargetStructureID": 53991, + "Label": "1021-53991 via Ribbon Synapse from 28349 -> 53994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28349, + "TargetID": 53994, + "Directional": true + } + ] + }, + { + "ID": 7673, + "SourceStructureID": 1021, + "TargetStructureID": 57064, + "Label": "1021-57064 via Unknown from 124965 -> 124964", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 124965, + "TargetID": 124964, + "Directional": true + } + ] + }, + { + "ID": 7674, + "SourceStructureID": 1021, + "TargetStructureID": 64923, + "Label": "1021-64923 via Ribbon Synapse from 103025 -> 126718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103025, + "TargetID": 126718, + "Directional": true + } + ] + }, + { + "ID": 7675, + "SourceStructureID": 1021, + "TargetStructureID": 68539, + "Label": "1021-68539 via Ribbon Synapse from 19787 -> 72853, 125343 -> 125342, 125417 -> 125418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19787, + "TargetID": 72853, + "Directional": true + }, + { + "SourceID": 125343, + "TargetID": 125342, + "Directional": true + }, + { + "SourceID": 125417, + "TargetID": 125418, + "Directional": true + } + ] + }, + { + "ID": 7676, + "SourceStructureID": 1021, + "TargetStructureID": 69162, + "Label": "1021-69162 via Ribbon Synapse from 103018 -> 125761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103018, + "TargetID": 125761, + "Directional": true + } + ] + }, + { + "ID": 7677, + "SourceStructureID": 1021, + "TargetStructureID": 87419, + "Label": "1021-87419 via Ribbon Synapse from 58795 -> 125696", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58795, + "TargetID": 125696, + "Directional": true + } + ] + }, + { + "ID": 7678, + "SourceStructureID": 1021, + "TargetStructureID": 89124, + "Label": "1021-89124 via Ribbon Synapse from 28323 -> 89334", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28323, + "TargetID": 89334, + "Directional": true + } + ] + }, + { + "ID": 7679, + "SourceStructureID": 1021, + "TargetStructureID": 89124, + "Label": "1021-89124 via Unknown from 125535 -> 125533", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 125535, + "TargetID": 125533, + "Directional": true + } + ] + }, + { + "ID": 7680, + "SourceStructureID": 1021, + "TargetStructureID": 89350, + "Label": "1021-89350 via Unknown from 125535 -> 125534", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 125535, + "TargetID": 125534, + "Directional": true + } + ] + }, + { + "ID": 7681, + "SourceStructureID": 1021, + "TargetStructureID": 103001, + "Label": "1021-103001 via Ribbon Synapse from 28362 -> 125310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28362, + "TargetID": 125310, + "Directional": true + } + ] + }, + { + "ID": 7682, + "SourceStructureID": 1021, + "TargetStructureID": 103008, + "Label": "1021-103008 via Ribbon Synapse from 125291 -> 125292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125291, + "TargetID": 125292, + "Directional": true + } + ] + }, + { + "ID": 7683, + "SourceStructureID": 1021, + "TargetStructureID": 105090, + "Label": "1021-105090 via Ribbon Synapse from 19779 -> 125074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19779, + "TargetID": 125074, + "Directional": true + } + ] + }, + { + "ID": 7684, + "SourceStructureID": 1021, + "TargetStructureID": 105553, + "Label": "1021-105553 via Ribbon Synapse from 19748 -> 125131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19748, + "TargetID": 125131, + "Directional": true + } + ] + }, + { + "ID": 7685, + "SourceStructureID": 1021, + "TargetStructureID": 111342, + "Label": "1021-111342 via Ribbon Synapse from 28316 -> 125492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28316, + "TargetID": 125492, + "Directional": true + } + ] + }, + { + "ID": 7686, + "SourceStructureID": 1021, + "TargetStructureID": 111351, + "Label": "1021-111351 via Unknown from 125496 -> 125495", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 125496, + "TargetID": 125495, + "Directional": true + } + ] + }, + { + "ID": 7687, + "SourceStructureID": 1021, + "TargetStructureID": 111394, + "Label": "1021-111394 via Ribbon Synapse from 61092 -> 125661", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61092, + "TargetID": 125661, + "Directional": true + } + ] + }, + { + "ID": 7688, + "SourceStructureID": 1021, + "TargetStructureID": 112077, + "Label": "1021-112077 via Ribbon Synapse from 19746 -> 112078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19746, + "TargetID": 112078, + "Directional": true + } + ] + }, + { + "ID": 7689, + "SourceStructureID": 1021, + "TargetStructureID": 112342, + "Label": "1021-112342 via Ribbon Synapse from 1626 -> 125122", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1626, + "TargetID": 125122, + "Directional": true + } + ] + }, + { + "ID": 7690, + "SourceStructureID": 1021, + "TargetStructureID": 112362, + "Label": "1021-112362 via Ribbon Synapse from 19772 -> 124990, 19773 -> 124990", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19772, + "TargetID": 124990, + "Directional": true + }, + { + "SourceID": 19773, + "TargetID": 124990, + "Directional": true + } + ] + }, + { + "ID": 7691, + "SourceStructureID": 1021, + "TargetStructureID": 113689, + "Label": "1021-113689 via Unknown from 125526 -> 125525", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 125526, + "TargetID": 125525, + "Directional": true + } + ] + }, + { + "ID": 7692, + "SourceStructureID": 1021, + "TargetStructureID": 126711, + "Label": "1021-126711 via Ribbon Synapse from 125343 -> 126714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125343, + "TargetID": 126714, + "Directional": true + } + ] + }, + { + "ID": 7693, + "SourceStructureID": 1021, + "TargetStructureID": 126711, + "Label": "1021-126711 via Unknown from 126713 -> 126712", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 126713, + "TargetID": 126712, + "Directional": true + } + ] + }, + { + "ID": 7694, + "SourceStructureID": 1021, + "TargetStructureID": 126886, + "Label": "1021-126886 via Ribbon Synapse from 19754 -> 126887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19754, + "TargetID": 126887, + "Directional": true + } + ] + }, + { + "ID": 7695, + "SourceStructureID": 1021, + "TargetStructureID": 128800, + "Label": "1021-128800 via Ribbon Synapse from 19781 -> 128802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19781, + "TargetID": 128802, + "Directional": true + } + ] + }, + { + "ID": 7696, + "SourceStructureID": 1021, + "TargetStructureID": 128803, + "Label": "1021-128803 via Ribbon Synapse from 19781 -> 128807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19781, + "TargetID": 128807, + "Directional": true + } + ] + }, + { + "ID": 7697, + "SourceStructureID": 1610, + "TargetStructureID": 514, + "Label": "1610-514 via Conventional from 23281 -> 23279", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23281, + "TargetID": 23279, + "Directional": true + } + ] + }, + { + "ID": 7698, + "SourceStructureID": 1620, + "TargetStructureID": 166, + "Label": "1620-166 via Conventional from 16860 -> 4369", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16860, + "TargetID": 4369, + "Directional": true + } + ] + }, + { + "ID": 7699, + "SourceStructureID": 1620, + "TargetStructureID": 461, + "Label": "1620-461 via Conventional from 16892 -> 14834, 20622 -> 20621", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16892, + "TargetID": 14834, + "Directional": true + }, + { + "SourceID": 20622, + "TargetID": 20621, + "Directional": true + } + ] + }, + { + "ID": 7700, + "SourceStructureID": 1620, + "TargetStructureID": 483, + "Label": "1620-483 via Conventional from 103742 -> 103741", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103742, + "TargetID": 103741, + "Directional": true + } + ] + }, + { + "ID": 7701, + "SourceStructureID": 1620, + "TargetStructureID": 6997, + "Label": "1620-6997 via Conventional from 16842 -> 21933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16842, + "TargetID": 21933, + "Directional": true + } + ] + }, + { + "ID": 7702, + "SourceStructureID": 1620, + "TargetStructureID": 20614, + "Label": "1620-20614 via Conventional from 16996 -> 20615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16996, + "TargetID": 20615, + "Directional": true + } + ] + }, + { + "ID": 7703, + "SourceStructureID": 1620, + "TargetStructureID": 20728, + "Label": "1620-20728 via Conventional from 16905 -> 33074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16905, + "TargetID": 33074, + "Directional": true + } + ] + }, + { + "ID": 7704, + "SourceStructureID": 1620, + "TargetStructureID": 29198, + "Label": "1620-29198 via Conventional from 16864 -> 29222", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16864, + "TargetID": 29222, + "Directional": true + } + ] + }, + { + "ID": 7705, + "SourceStructureID": 1620, + "TargetStructureID": 45894, + "Label": "1620-45894 via Conventional from 16908 -> 46930", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16908, + "TargetID": 46930, + "Directional": true + } + ] + }, + { + "ID": 7706, + "SourceStructureID": 1620, + "TargetStructureID": 91730, + "Label": "1620-91730 via Conventional from 16852 -> 91732", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16852, + "TargetID": 91732, + "Directional": true + } + ] + }, + { + "ID": 7707, + "SourceStructureID": 1637, + "TargetStructureID": 179, + "Label": "1637-179 via Ribbon Synapse from 23704 -> 30409", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23704, + "TargetID": 30409, + "Directional": true + } + ] + }, + { + "ID": 7708, + "SourceStructureID": 1637, + "TargetStructureID": 8575, + "Label": "1637-8575 via BC Conventional Synapse from 62088 -> 62087, 62855 -> 62854", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62088, + "TargetID": 62087, + "Directional": true + }, + { + "SourceID": 62855, + "TargetID": 62854, + "Directional": true + } + ] + }, + { + "ID": 7709, + "SourceStructureID": 1637, + "TargetStructureID": 8575, + "Label": "1637-8575 via Ribbon Synapse from 1689 -> 62073, 30198 -> 62091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1689, + "TargetID": 62073, + "Directional": true + }, + { + "SourceID": 30198, + "TargetID": 62091, + "Directional": true + } + ] + }, + { + "ID": 7710, + "SourceStructureID": 1637, + "TargetStructureID": 8577, + "Label": "1637-8577 via BC Conventional Synapse from 30406 -> 30407", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30406, + "TargetID": 30407, + "Directional": true + } + ] + }, + { + "ID": 7711, + "SourceStructureID": 1637, + "TargetStructureID": 9347, + "Label": "1637-9347 via Ribbon Synapse from 30242 -> 30243", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30242, + "TargetID": 30243, + "Directional": true + } + ] + }, + { + "ID": 7712, + "SourceStructureID": 1637, + "TargetStructureID": 13154, + "Label": "1637-13154 via Ribbon Synapse from 1639 -> 23698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1639, + "TargetID": 23698, + "Directional": true + } + ] + }, + { + "ID": 7713, + "SourceStructureID": 1637, + "TargetStructureID": 22974, + "Label": "1637-22974 via Ribbon Synapse from 23710 -> 23713, 30366 -> 30368", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23710, + "TargetID": 23713, + "Directional": true + }, + { + "SourceID": 30366, + "TargetID": 30368, + "Directional": true + } + ] + }, + { + "ID": 7714, + "SourceStructureID": 1637, + "TargetStructureID": 32227, + "Label": "1637-32227 via Ribbon Synapse from 23723 -> 32229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23723, + "TargetID": 32229, + "Directional": true + } + ] + }, + { + "ID": 7715, + "SourceStructureID": 1637, + "TargetStructureID": 39957, + "Label": "1637-39957 via Ribbon Synapse from 28277 -> 58450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28277, + "TargetID": 58450, + "Directional": true + } + ] + }, + { + "ID": 7716, + "SourceStructureID": 1637, + "TargetStructureID": 61793, + "Label": "1637-61793 via Ribbon Synapse from 28270 -> 61795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28270, + "TargetID": 61795, + "Directional": true + } + ] + }, + { + "ID": 7717, + "SourceStructureID": 1637, + "TargetStructureID": 61933, + "Label": "1637-61933 via Ribbon Synapse from 1707 -> 68649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1707, + "TargetID": 68649, + "Directional": true + } + ] + }, + { + "ID": 7718, + "SourceStructureID": 1637, + "TargetStructureID": 67920, + "Label": "1637-67920 via Ribbon Synapse from 49631 -> 67958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49631, + "TargetID": 67958, + "Directional": true + } + ] + }, + { + "ID": 7719, + "SourceStructureID": 1637, + "TargetStructureID": 67959, + "Label": "1637-67959 via Ribbon Synapse from 49631 -> 67960", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49631, + "TargetID": 67960, + "Directional": true + } + ] + }, + { + "ID": 7720, + "SourceStructureID": 1637, + "TargetStructureID": 68277, + "Label": "1637-68277 via BC Conventional Synapse from 68281 -> 68280", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68281, + "TargetID": 68280, + "Directional": true + } + ] + }, + { + "ID": 7721, + "SourceStructureID": 1637, + "TargetStructureID": 98762, + "Label": "1637-98762 via Ribbon Synapse from 23709 -> 98768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23709, + "TargetID": 98768, + "Directional": true + } + ] + }, + { + "ID": 7722, + "SourceStructureID": 1724, + "TargetStructureID": 5107, + "Label": "1724-5107 via Ribbon Synapse from 3970 -> 119510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3970, + "TargetID": 119510, + "Directional": true + } + ] + }, + { + "ID": 7723, + "SourceStructureID": 1724, + "TargetStructureID": 5579, + "Label": "1724-5579 via BC Conventional Synapse from 119148 -> 119149", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119148, + "TargetID": 119149, + "Directional": true + } + ] + }, + { + "ID": 7724, + "SourceStructureID": 1724, + "TargetStructureID": 7594, + "Label": "1724-7594 via Ribbon Synapse from 23721 -> 101854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23721, + "TargetID": 101854, + "Directional": true + } + ] + }, + { + "ID": 7725, + "SourceStructureID": 1724, + "TargetStructureID": 15796, + "Label": "1724-15796 via Ribbon Synapse from 4092 -> 101770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4092, + "TargetID": 101770, + "Directional": true + } + ] + }, + { + "ID": 7726, + "SourceStructureID": 1724, + "TargetStructureID": 23512, + "Label": "1724-23512 via Ribbon Synapse from 1738 -> 23544, 4092 -> 101769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1738, + "TargetID": 23544, + "Directional": true + }, + { + "SourceID": 4092, + "TargetID": 101769, + "Directional": true + } + ] + }, + { + "ID": 7727, + "SourceStructureID": 1724, + "TargetStructureID": 32227, + "Label": "1724-32227 via Ribbon Synapse from 3984 -> 32233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3984, + "TargetID": 32233, + "Directional": true + } + ] + }, + { + "ID": 7728, + "SourceStructureID": 1724, + "TargetStructureID": 35894, + "Label": "1724-35894 via Ribbon Synapse from 3951 -> 35917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3951, + "TargetID": 35917, + "Directional": true + } + ] + }, + { + "ID": 7729, + "SourceStructureID": 1724, + "TargetStructureID": 41003, + "Label": "1724-41003 via Ribbon Synapse from 4094 -> 41008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4094, + "TargetID": 41008, + "Directional": true + } + ] + }, + { + "ID": 7730, + "SourceStructureID": 1724, + "TargetStructureID": 43314, + "Label": "1724-43314 via Ribbon Synapse from 43315 -> 43316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43315, + "TargetID": 43316, + "Directional": true + } + ] + }, + { + "ID": 7731, + "SourceStructureID": 1724, + "TargetStructureID": 47104, + "Label": "1724-47104 via Ribbon Synapse from 3995 -> 47132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3995, + "TargetID": 47132, + "Directional": true + } + ] + }, + { + "ID": 7732, + "SourceStructureID": 1724, + "TargetStructureID": 48455, + "Label": "1724-48455 via BC Conventional Synapse from 99417 -> 99418, 101980 -> 101981, 119542 -> 119541", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99417, + "TargetID": 99418, + "Directional": true + }, + { + "SourceID": 101980, + "TargetID": 101981, + "Directional": true + }, + { + "SourceID": 119542, + "TargetID": 119541, + "Directional": true + } + ] + }, + { + "ID": 7733, + "SourceStructureID": 1724, + "TargetStructureID": 48612, + "Label": "1724-48612 via Ribbon Synapse from 1736 -> 48613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1736, + "TargetID": 48613, + "Directional": true + } + ] + }, + { + "ID": 7734, + "SourceStructureID": 1724, + "TargetStructureID": 68978, + "Label": "1724-68978 via Ribbon Synapse from 4116 -> 101977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4116, + "TargetID": 101977, + "Directional": true + } + ] + }, + { + "ID": 7735, + "SourceStructureID": 1724, + "TargetStructureID": 99106, + "Label": "1724-99106 via BC Conventional Synapse from 99512 -> 99511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99512, + "TargetID": 99511, + "Directional": true + } + ] + }, + { + "ID": 7736, + "SourceStructureID": 1724, + "TargetStructureID": 99256, + "Label": "1724-99256 via Ribbon Synapse from 1769 -> 99260", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1769, + "TargetID": 99260, + "Directional": true + } + ] + }, + { + "ID": 7737, + "SourceStructureID": 1724, + "TargetStructureID": 99309, + "Label": "1724-99309 via Ribbon Synapse from 4029 -> 100404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4029, + "TargetID": 100404, + "Directional": true + } + ] + }, + { + "ID": 7738, + "SourceStructureID": 1724, + "TargetStructureID": 99314, + "Label": "1724-99314 via Ribbon Synapse from 4037 -> 99315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4037, + "TargetID": 99315, + "Directional": true + } + ] + }, + { + "ID": 7739, + "SourceStructureID": 1724, + "TargetStructureID": 99334, + "Label": "1724-99334 via Ribbon Synapse from 4044 -> 99335", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4044, + "TargetID": 99335, + "Directional": true + } + ] + }, + { + "ID": 7740, + "SourceStructureID": 1724, + "TargetStructureID": 99364, + "Label": "1724-99364 via Ribbon Synapse from 47391 -> 99430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47391, + "TargetID": 99430, + "Directional": true + } + ] + }, + { + "ID": 7741, + "SourceStructureID": 1724, + "TargetStructureID": 99429, + "Label": "1724-99429 via Ribbon Synapse from 47391 -> 99431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47391, + "TargetID": 99431, + "Directional": true + } + ] + }, + { + "ID": 7742, + "SourceStructureID": 1724, + "TargetStructureID": 99440, + "Label": "1724-99440 via BC Conventional Synapse from 99446 -> 99449", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99446, + "TargetID": 99449, + "Directional": true + } + ] + }, + { + "ID": 7743, + "SourceStructureID": 1724, + "TargetStructureID": 99454, + "Label": "1724-99454 via Ribbon Synapse from 47390 -> 99456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47390, + "TargetID": 99456, + "Directional": true + } + ] + }, + { + "ID": 7744, + "SourceStructureID": 1724, + "TargetStructureID": 99468, + "Label": "1724-99468 via Ribbon Synapse from 4062 -> 99471", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4062, + "TargetID": 99471, + "Directional": true + } + ] + }, + { + "ID": 7745, + "SourceStructureID": 1724, + "TargetStructureID": 99472, + "Label": "1724-99472 via Ribbon Synapse from 4062 -> 99478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4062, + "TargetID": 99478, + "Directional": true + } + ] + }, + { + "ID": 7746, + "SourceStructureID": 1724, + "TargetStructureID": 99498, + "Label": "1724-99498 via Ribbon Synapse from 4060 -> 99500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4060, + "TargetID": 99500, + "Directional": true + } + ] + }, + { + "ID": 7747, + "SourceStructureID": 1724, + "TargetStructureID": 99549, + "Label": "1724-99549 via Ribbon Synapse from 1798 -> 99550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1798, + "TargetID": 99550, + "Directional": true + } + ] + }, + { + "ID": 7748, + "SourceStructureID": 1724, + "TargetStructureID": 99551, + "Label": "1724-99551 via Ribbon Synapse from 1792 -> 99556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1792, + "TargetID": 99556, + "Directional": true + } + ] + }, + { + "ID": 7749, + "SourceStructureID": 1724, + "TargetStructureID": 99554, + "Label": "1724-99554 via Ribbon Synapse from 1792 -> 99555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1792, + "TargetID": 99555, + "Directional": true + } + ] + }, + { + "ID": 7750, + "SourceStructureID": 1724, + "TargetStructureID": 99564, + "Label": "1724-99564 via Ribbon Synapse from 1788 -> 99565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1788, + "TargetID": 99565, + "Directional": true + } + ] + }, + { + "ID": 7751, + "SourceStructureID": 1724, + "TargetStructureID": 99566, + "Label": "1724-99566 via Ribbon Synapse from 1788 -> 99567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1788, + "TargetID": 99567, + "Directional": true + } + ] + }, + { + "ID": 7752, + "SourceStructureID": 1724, + "TargetStructureID": 99569, + "Label": "1724-99569 via Ribbon Synapse from 1783 -> 99570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1783, + "TargetID": 99570, + "Directional": true + } + ] + }, + { + "ID": 7753, + "SourceStructureID": 1724, + "TargetStructureID": 100248, + "Label": "1724-100248 via Ribbon Synapse from 47397 -> 100249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47397, + "TargetID": 100249, + "Directional": true + } + ] + }, + { + "ID": 7754, + "SourceStructureID": 1724, + "TargetStructureID": 100250, + "Label": "1724-100250 via Ribbon Synapse from 43315 -> 100251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43315, + "TargetID": 100251, + "Directional": true + } + ] + }, + { + "ID": 7755, + "SourceStructureID": 1724, + "TargetStructureID": 100310, + "Label": "1724-100310 via Ribbon Synapse from 100313 -> 100321", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100313, + "TargetID": 100321, + "Directional": true + } + ] + }, + { + "ID": 7756, + "SourceStructureID": 1724, + "TargetStructureID": 100338, + "Label": "1724-100338 via BC Conventional Synapse from 119137 -> 119136", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119137, + "TargetID": 119136, + "Directional": true + } + ] + }, + { + "ID": 7757, + "SourceStructureID": 1724, + "TargetStructureID": 100360, + "Label": "1724-100360 via BC Conventional Synapse from 101511 -> 101512", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101511, + "TargetID": 101512, + "Directional": true + } + ] + }, + { + "ID": 7758, + "SourceStructureID": 1724, + "TargetStructureID": 100405, + "Label": "1724-100405 via Ribbon Synapse from 4027 -> 100406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4027, + "TargetID": 100406, + "Directional": true + } + ] + }, + { + "ID": 7759, + "SourceStructureID": 1724, + "TargetStructureID": 100486, + "Label": "1724-100486 via BC Conventional Synapse from 100494 -> 100495", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100494, + "TargetID": 100495, + "Directional": true + } + ] + }, + { + "ID": 7760, + "SourceStructureID": 1724, + "TargetStructureID": 100562, + "Label": "1724-100562 via Ribbon Synapse from 47369 -> 100563", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47369, + "TargetID": 100563, + "Directional": true + } + ] + }, + { + "ID": 7761, + "SourceStructureID": 1724, + "TargetStructureID": 100572, + "Label": "1724-100572 via Ribbon Synapse from 3940 -> 100590", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3940, + "TargetID": 100590, + "Directional": true + } + ] + }, + { + "ID": 7762, + "SourceStructureID": 1724, + "TargetStructureID": 100591, + "Label": "1724-100591 via Ribbon Synapse from 20013 -> 100592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20013, + "TargetID": 100592, + "Directional": true + } + ] + }, + { + "ID": 7763, + "SourceStructureID": 1724, + "TargetStructureID": 100682, + "Label": "1724-100682 via BC Conventional Synapse from 100683 -> 100684", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100683, + "TargetID": 100684, + "Directional": true + } + ] + }, + { + "ID": 7764, + "SourceStructureID": 1724, + "TargetStructureID": 100685, + "Label": "1724-100685 via Ribbon Synapse from 20180 -> 100686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20180, + "TargetID": 100686, + "Directional": true + } + ] + }, + { + "ID": 7765, + "SourceStructureID": 1724, + "TargetStructureID": 100690, + "Label": "1724-100690 via Ribbon Synapse from 20180 -> 100691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20180, + "TargetID": 100691, + "Directional": true + } + ] + }, + { + "ID": 7766, + "SourceStructureID": 1724, + "TargetStructureID": 100748, + "Label": "1724-100748 via Ribbon Synapse from 20182 -> 100749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20182, + "TargetID": 100749, + "Directional": true + } + ] + }, + { + "ID": 7767, + "SourceStructureID": 1724, + "TargetStructureID": 100750, + "Label": "1724-100750 via Ribbon Synapse from 20182 -> 100751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20182, + "TargetID": 100751, + "Directional": true + } + ] + }, + { + "ID": 7768, + "SourceStructureID": 1724, + "TargetStructureID": 100846, + "Label": "1724-100846 via Ribbon Synapse from 20185 -> 100851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20185, + "TargetID": 100851, + "Directional": true + } + ] + }, + { + "ID": 7769, + "SourceStructureID": 1724, + "TargetStructureID": 100860, + "Label": "1724-100860 via Ribbon Synapse from 20183 -> 101540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20183, + "TargetID": 101540, + "Directional": true + } + ] + }, + { + "ID": 7770, + "SourceStructureID": 1724, + "TargetStructureID": 100871, + "Label": "1724-100871 via Ribbon Synapse from 20191 -> 100893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20191, + "TargetID": 100893, + "Directional": true + } + ] + }, + { + "ID": 7771, + "SourceStructureID": 1724, + "TargetStructureID": 100877, + "Label": "1724-100877 via Ribbon Synapse from 20189 -> 100880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20189, + "TargetID": 100880, + "Directional": true + } + ] + }, + { + "ID": 7772, + "SourceStructureID": 1724, + "TargetStructureID": 100878, + "Label": "1724-100878 via Ribbon Synapse from 20189 -> 100879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20189, + "TargetID": 100879, + "Directional": true + } + ] + }, + { + "ID": 7773, + "SourceStructureID": 1724, + "TargetStructureID": 101507, + "Label": "1724-101507 via Ribbon Synapse from 20198 -> 101526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20198, + "TargetID": 101526, + "Directional": true + } + ] + }, + { + "ID": 7774, + "SourceStructureID": 1724, + "TargetStructureID": 101516, + "Label": "1724-101516 via Ribbon Synapse from 20194 -> 101517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20194, + "TargetID": 101517, + "Directional": true + } + ] + }, + { + "ID": 7775, + "SourceStructureID": 1724, + "TargetStructureID": 101518, + "Label": "1724-101518 via Ribbon Synapse from 20193 -> 101519, 20194 -> 101520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20193, + "TargetID": 101519, + "Directional": true + }, + { + "SourceID": 20194, + "TargetID": 101520, + "Directional": true + } + ] + }, + { + "ID": 7776, + "SourceStructureID": 1724, + "TargetStructureID": 101550, + "Label": "1724-101550 via BC Conventional Synapse from 101549 -> 101551", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101549, + "TargetID": 101551, + "Directional": true + } + ] + }, + { + "ID": 7777, + "SourceStructureID": 1724, + "TargetStructureID": 101558, + "Label": "1724-101558 via Ribbon Synapse from 1808 -> 101561", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1808, + "TargetID": 101561, + "Directional": true + } + ] + }, + { + "ID": 7778, + "SourceStructureID": 1724, + "TargetStructureID": 101581, + "Label": "1724-101581 via Ribbon Synapse from 1758 -> 101582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1758, + "TargetID": 101582, + "Directional": true + } + ] + }, + { + "ID": 7779, + "SourceStructureID": 1724, + "TargetStructureID": 101594, + "Label": "1724-101594 via Ribbon Synapse from 1746 -> 101595", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 1746, + "TargetID": 101595, + "Directional": true + } + ] + }, + { + "ID": 7780, + "SourceStructureID": 1724, + "TargetStructureID": 101675, + "Label": "1724-101675 via Ribbon Synapse from 47342 -> 101676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47342, + "TargetID": 101676, + "Directional": true + } + ] + }, + { + "ID": 7781, + "SourceStructureID": 1724, + "TargetStructureID": 101686, + "Label": "1724-101686 via Ribbon Synapse from 4014 -> 101687", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4014, + "TargetID": 101687, + "Directional": true + } + ] + }, + { + "ID": 7782, + "SourceStructureID": 1724, + "TargetStructureID": 101749, + "Label": "1724-101749 via BC Conventional Synapse from 101752 -> 101754", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101752, + "TargetID": 101754, + "Directional": true + } + ] + }, + { + "ID": 7783, + "SourceStructureID": 1724, + "TargetStructureID": 101767, + "Label": "1724-101767 via Ribbon Synapse from 4094 -> 101768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4094, + "TargetID": 101768, + "Directional": true + } + ] + }, + { + "ID": 7784, + "SourceStructureID": 1724, + "TargetStructureID": 101771, + "Label": "1724-101771 via BC Conventional Synapse from 119170 -> 119169", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119170, + "TargetID": 119169, + "Directional": true + } + ] + }, + { + "ID": 7785, + "SourceStructureID": 1724, + "TargetStructureID": 101814, + "Label": "1724-101814 via Ribbon Synapse from 4096 -> 101817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4096, + "TargetID": 101817, + "Directional": true + } + ] + }, + { + "ID": 7786, + "SourceStructureID": 1724, + "TargetStructureID": 101824, + "Label": "1724-101824 via Ribbon Synapse from 4103 -> 101825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4103, + "TargetID": 101825, + "Directional": true + } + ] + }, + { + "ID": 7787, + "SourceStructureID": 1724, + "TargetStructureID": 101842, + "Label": "1724-101842 via Ribbon Synapse from 23721 -> 101853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23721, + "TargetID": 101853, + "Directional": true + } + ] + }, + { + "ID": 7788, + "SourceStructureID": 1724, + "TargetStructureID": 101880, + "Label": "1724-101880 via Ribbon Synapse from 101890 -> 101891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101890, + "TargetID": 101891, + "Directional": true + } + ] + }, + { + "ID": 7789, + "SourceStructureID": 1724, + "TargetStructureID": 101892, + "Label": "1724-101892 via Ribbon Synapse from 101890 -> 101893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101890, + "TargetID": 101893, + "Directional": true + } + ] + }, + { + "ID": 7790, + "SourceStructureID": 1724, + "TargetStructureID": 101938, + "Label": "1724-101938 via BC Conventional Synapse from 119542 -> 101949", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119542, + "TargetID": 101949, + "Directional": true + } + ] + }, + { + "ID": 7791, + "SourceStructureID": 1724, + "TargetStructureID": 101944, + "Label": "1724-101944 via Ribbon Synapse from 4105 -> 101945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4105, + "TargetID": 101945, + "Directional": true + } + ] + }, + { + "ID": 7792, + "SourceStructureID": 1724, + "TargetStructureID": 101951, + "Label": "1724-101951 via Ribbon Synapse from 47355 -> 101953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47355, + "TargetID": 101953, + "Directional": true + } + ] + }, + { + "ID": 7793, + "SourceStructureID": 1724, + "TargetStructureID": 101954, + "Label": "1724-101954 via Ribbon Synapse from 47356 -> 101955", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47356, + "TargetID": 101955, + "Directional": true + } + ] + }, + { + "ID": 7794, + "SourceStructureID": 1724, + "TargetStructureID": 101972, + "Label": "1724-101972 via Ribbon Synapse from 4120 -> 101973", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4120, + "TargetID": 101973, + "Directional": true + } + ] + }, + { + "ID": 7795, + "SourceStructureID": 1724, + "TargetStructureID": 101974, + "Label": "1724-101974 via Ribbon Synapse from 4120 -> 101976", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4120, + "TargetID": 101976, + "Directional": true + } + ] + }, + { + "ID": 7796, + "SourceStructureID": 1724, + "TargetStructureID": 102509, + "Label": "1724-102509 via Ribbon Synapse from 102508 -> 102510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102508, + "TargetID": 102510, + "Directional": true + } + ] + }, + { + "ID": 7797, + "SourceStructureID": 1724, + "TargetStructureID": 102517, + "Label": "1724-102517 via Ribbon Synapse from 30430 -> 102522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30430, + "TargetID": 102522, + "Directional": true + } + ] + }, + { + "ID": 7798, + "SourceStructureID": 2063, + "TargetStructureID": 36130, + "Label": "2063-36130 via Ribbon Synapse from 36139 -> 36140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36139, + "TargetID": 36140, + "Directional": true + } + ] + }, + { + "ID": 7799, + "SourceStructureID": 2064, + "TargetStructureID": 5575, + "Label": "2064-5575 via Conventional from 13185 -> 23054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 13185, + "TargetID": 23054, + "Directional": true + } + ] + }, + { + "ID": 7800, + "SourceStructureID": 2064, + "TargetStructureID": 8749, + "Label": "2064-8749 via Conventional from 123206 -> 123207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123206, + "TargetID": 123207, + "Directional": true + } + ] + }, + { + "ID": 7801, + "SourceStructureID": 2064, + "TargetStructureID": 9693, + "Label": "2064-9693 via Conventional from 13197 -> 13198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 13197, + "TargetID": 13198, + "Directional": true + } + ] + }, + { + "ID": 7802, + "SourceStructureID": 2065, + "TargetStructureID": 8575, + "Label": "2065-8575 via BC Conventional Synapse from 62086 -> 62081", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62086, + "TargetID": 62081, + "Directional": true + } + ] + }, + { + "ID": 7803, + "SourceStructureID": 2065, + "TargetStructureID": 59524, + "Label": "2065-59524 via Ribbon Synapse from 36345 -> 59541, 36347 -> 59542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36345, + "TargetID": 59541, + "Directional": true + }, + { + "SourceID": 36347, + "TargetID": 59542, + "Directional": true + } + ] + }, + { + "ID": 7804, + "SourceStructureID": 2065, + "TargetStructureID": 61439, + "Label": "2065-61439 via Ribbon Synapse from 120083 -> 120084", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120083, + "TargetID": 120084, + "Directional": true + } + ] + }, + { + "ID": 7805, + "SourceStructureID": 2610, + "TargetStructureID": 382, + "Label": "2610-382 via Conventional from 2656 -> 41977", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 2656, + "TargetID": 41977, + "Directional": true + } + ] + }, + { + "ID": 7806, + "SourceStructureID": 2610, + "TargetStructureID": 5325, + "Label": "2610-5325 via Conventional from 2679 -> 68758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 2679, + "TargetID": 68758, + "Directional": true + } + ] + }, + { + "ID": 7807, + "SourceStructureID": 2610, + "TargetStructureID": 7594, + "Label": "2610-7594 via Touch from 25117 -> 25116", + "Type": "Touch", + "Directional": true, + "Links": [ + { + "SourceID": 25117, + "TargetID": 25116, + "Directional": true + } + ] + }, + { + "ID": 7808, + "SourceStructureID": 2610, + "TargetStructureID": 8485, + "Label": "2610-8485 via Conventional from 2630 -> 28881, 2632 -> 28879", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 2630, + "TargetID": 28881, + "Directional": true + }, + { + "SourceID": 2632, + "TargetID": 28879, + "Directional": true + } + ] + }, + { + "ID": 7809, + "SourceStructureID": 2610, + "TargetStructureID": 16940, + "Label": "2610-16940 via Conventional from 23153 -> 71260", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23153, + "TargetID": 71260, + "Directional": true + } + ] + }, + { + "ID": 7810, + "SourceStructureID": 2610, + "TargetStructureID": 28913, + "Label": "2610-28913 via Conventional from 2634 -> 28926, 2657 -> 28914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 2634, + "TargetID": 28926, + "Directional": true + }, + { + "SourceID": 2657, + "TargetID": 28914, + "Directional": true + } + ] + }, + { + "ID": 7811, + "SourceStructureID": 2610, + "TargetStructureID": 71261, + "Label": "2610-71261 via Conventional from 23155 -> 71262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23155, + "TargetID": 71262, + "Directional": true + } + ] + }, + { + "ID": 7812, + "SourceStructureID": 3116, + "TargetStructureID": 606, + "Label": "3116-606 via Ribbon Synapse from 46566 -> 53369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46566, + "TargetID": 53369, + "Directional": true + } + ] + }, + { + "ID": 7813, + "SourceStructureID": 3116, + "TargetStructureID": 5107, + "Label": "3116-5107 via Ribbon Synapse from 43862 -> 43491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43862, + "TargetID": 43491, + "Directional": true + } + ] + }, + { + "ID": 7814, + "SourceStructureID": 3116, + "TargetStructureID": 5435, + "Label": "3116-5435 via Ribbon Synapse from 126382 -> 41138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126382, + "TargetID": 41138, + "Directional": true + } + ] + }, + { + "ID": 7815, + "SourceStructureID": 3116, + "TargetStructureID": 15796, + "Label": "3116-15796 via Ribbon Synapse from 3144 -> 19369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 3144, + "TargetID": 19369, + "Directional": true + } + ] + }, + { + "ID": 7816, + "SourceStructureID": 3116, + "TargetStructureID": 35811, + "Label": "3116-35811 via Ribbon Synapse from 23822 -> 35816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23822, + "TargetID": 35816, + "Directional": true + } + ] + }, + { + "ID": 7817, + "SourceStructureID": 3116, + "TargetStructureID": 68539, + "Label": "3116-68539 via Ribbon Synapse from 27995 -> 73642", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27995, + "TargetID": 73642, + "Directional": true + } + ] + }, + { + "ID": 7818, + "SourceStructureID": 3116, + "TargetStructureID": 90254, + "Label": "3116-90254 via Ribbon Synapse from 46567 -> 116732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46567, + "TargetID": 116732, + "Directional": true + } + ] + }, + { + "ID": 7819, + "SourceStructureID": 3116, + "TargetStructureID": 91547, + "Label": "3116-91547 via Ribbon Synapse from 23811 -> 91548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23811, + "TargetID": 91548, + "Directional": true + } + ] + }, + { + "ID": 7820, + "SourceStructureID": 3116, + "TargetStructureID": 91549, + "Label": "3116-91549 via Ribbon Synapse from 23810 -> 91550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23810, + "TargetID": 91550, + "Directional": true + } + ] + }, + { + "ID": 7821, + "SourceStructureID": 3116, + "TargetStructureID": 100765, + "Label": "3116-100765 via Ribbon Synapse from 27999 -> 147295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27999, + "TargetID": 147295, + "Directional": true + } + ] + }, + { + "ID": 7822, + "SourceStructureID": 3116, + "TargetStructureID": 116729, + "Label": "3116-116729 via Ribbon Synapse from 46567 -> 116731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46567, + "TargetID": 116731, + "Directional": true + } + ] + }, + { + "ID": 7823, + "SourceStructureID": 3257, + "TargetStructureID": 165, + "Label": "3257-165 via Conventional from 66219 -> 66224", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66219, + "TargetID": 66224, + "Directional": true + } + ] + }, + { + "ID": 7824, + "SourceStructureID": 3257, + "TargetStructureID": 172, + "Label": "3257-172 via Conventional from 18066 -> 128137", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18066, + "TargetID": 128137, + "Directional": true + } + ] + }, + { + "ID": 7825, + "SourceStructureID": 3257, + "TargetStructureID": 968, + "Label": "3257-968 via Conventional from 33287 -> 12174, 33289 -> 12172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33287, + "TargetID": 12174, + "Directional": true + }, + { + "SourceID": 33289, + "TargetID": 12172, + "Directional": true + } + ] + }, + { + "ID": 7826, + "SourceStructureID": 3257, + "TargetStructureID": 989, + "Label": "3257-989 via Conventional from 129880 -> 13093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129880, + "TargetID": 13093, + "Directional": true + } + ] + }, + { + "ID": 7827, + "SourceStructureID": 3257, + "TargetStructureID": 4568, + "Label": "3257-4568 via Conventional from 21881 -> 11513, 66225 -> 11524, 130016 -> 11512", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21881, + "TargetID": 11513, + "Directional": true + }, + { + "SourceID": 66225, + "TargetID": 11524, + "Directional": true + }, + { + "SourceID": 130016, + "TargetID": 11512, + "Directional": true + } + ] + }, + { + "ID": 7828, + "SourceStructureID": 3257, + "TargetStructureID": 4569, + "Label": "3257-4569 via Conventional from 47537 -> 47535", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47537, + "TargetID": 47535, + "Directional": true + } + ] + }, + { + "ID": 7829, + "SourceStructureID": 3257, + "TargetStructureID": 9787, + "Label": "3257-9787 via Conventional from 9175 -> 12067, 18069 -> 18061, 129887 -> 18045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9175, + "TargetID": 12067, + "Directional": true + }, + { + "SourceID": 18069, + "TargetID": 18061, + "Directional": true + }, + { + "SourceID": 129887, + "TargetID": 18045, + "Directional": true + } + ] + }, + { + "ID": 7830, + "SourceStructureID": 3257, + "TargetStructureID": 34336, + "Label": "3257-34336 via Conventional from 9122 -> 34376", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9122, + "TargetID": 34376, + "Directional": true + } + ] + }, + { + "ID": 7831, + "SourceStructureID": 3679, + "TargetStructureID": 138, + "Label": "3679-138 via Conventional from 3768 -> 32877, 22701 -> 46419, 22709 -> 46420, 22726 -> 2429, 22729 -> 2219, 29401 -> 29402, 29403 -> 29404", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 3768, + "TargetID": 32877, + "Directional": true + }, + { + "SourceID": 22701, + "TargetID": 46419, + "Directional": true + }, + { + "SourceID": 22709, + "TargetID": 46420, + "Directional": true + }, + { + "SourceID": 22726, + "TargetID": 2429, + "Directional": true + }, + { + "SourceID": 22729, + "TargetID": 2219, + "Directional": true + }, + { + "SourceID": 29401, + "TargetID": 29402, + "Directional": true + }, + { + "SourceID": 29403, + "TargetID": 29404, + "Directional": true + } + ] + }, + { + "ID": 7832, + "SourceStructureID": 3679, + "TargetStructureID": 161, + "Label": "3679-161 via Conventional from 7929 -> 27209, 27212 -> 27211", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 7929, + "TargetID": 27209, + "Directional": true + }, + { + "SourceID": 27212, + "TargetID": 27211, + "Directional": true + } + ] + }, + { + "ID": 7833, + "SourceStructureID": 3679, + "TargetStructureID": 992, + "Label": "3679-992 via Conventional from 5066 -> 5065, 29409 -> 29410, 29413 -> 29412, 31145 -> 31144, 31147 -> 31146, 33878 -> 33879", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 5066, + "TargetID": 5065, + "Directional": true + }, + { + "SourceID": 29409, + "TargetID": 29410, + "Directional": true + }, + { + "SourceID": 29413, + "TargetID": 29412, + "Directional": true + }, + { + "SourceID": 31145, + "TargetID": 31144, + "Directional": true + }, + { + "SourceID": 31147, + "TargetID": 31146, + "Directional": true + }, + { + "SourceID": 33878, + "TargetID": 33879, + "Directional": true + } + ] + }, + { + "ID": 7834, + "SourceStructureID": 3679, + "TargetStructureID": 2063, + "Label": "3679-2063 via Conventional from 31131 -> 21761", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31131, + "TargetID": 21761, + "Directional": true + } + ] + }, + { + "ID": 7835, + "SourceStructureID": 3679, + "TargetStructureID": 4567, + "Label": "3679-4567 via Conventional from 29407 -> 60554, 29414 -> 21334, 29415 -> 29416, 60553 -> 60552, 60862 -> 60861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29407, + "TargetID": 60554, + "Directional": true + }, + { + "SourceID": 29414, + "TargetID": 21334, + "Directional": true + }, + { + "SourceID": 29415, + "TargetID": 29416, + "Directional": true + }, + { + "SourceID": 60553, + "TargetID": 60552, + "Directional": true + }, + { + "SourceID": 60862, + "TargetID": 60861, + "Directional": true + } + ] + }, + { + "ID": 7836, + "SourceStructureID": 3679, + "TargetStructureID": 4849, + "Label": "3679-4849 via Conventional from 31124 -> 31125, 31126 -> 31127, 31128 -> 31129, 130021 -> 130020", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31124, + "TargetID": 31125, + "Directional": true + }, + { + "SourceID": 31126, + "TargetID": 31127, + "Directional": true + }, + { + "SourceID": 31128, + "TargetID": 31129, + "Directional": true + }, + { + "SourceID": 130021, + "TargetID": 130020, + "Directional": true + } + ] + }, + { + "ID": 7837, + "SourceStructureID": 3679, + "TargetStructureID": 5150, + "Label": "3679-5150 via Conventional from 5185 -> 5183, 15437 -> 5233", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 5185, + "TargetID": 5183, + "Directional": true + }, + { + "SourceID": 15437, + "TargetID": 5233, + "Directional": true + } + ] + }, + { + "ID": 7838, + "SourceStructureID": 3679, + "TargetStructureID": 5502, + "Label": "3679-5502 via Conventional from 6374 -> 27267, 6375 -> 27263, 27261 -> 27262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6374, + "TargetID": 27267, + "Directional": true + }, + { + "SourceID": 6375, + "TargetID": 27263, + "Directional": true + }, + { + "SourceID": 27261, + "TargetID": 27262, + "Directional": true + } + ] + }, + { + "ID": 7839, + "SourceStructureID": 3679, + "TargetStructureID": 5648, + "Label": "3679-5648 via Conventional from 6372 -> 23417", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6372, + "TargetID": 23417, + "Directional": true + } + ] + }, + { + "ID": 7840, + "SourceStructureID": 3679, + "TargetStructureID": 10335, + "Label": "3679-10335 via Conventional from 10330 -> 106282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10330, + "TargetID": 106282, + "Directional": true + } + ] + }, + { + "ID": 7841, + "SourceStructureID": 3679, + "TargetStructureID": 13469, + "Label": "3679-13469 via Conventional from 16252 -> 13471", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16252, + "TargetID": 13471, + "Directional": true + } + ] + }, + { + "ID": 7842, + "SourceStructureID": 3679, + "TargetStructureID": 28913, + "Label": "3679-28913 via Conventional from 28936 -> 28935, 29408 -> 28934", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 28936, + "TargetID": 28935, + "Directional": true + }, + { + "SourceID": 29408, + "TargetID": 28934, + "Directional": true + } + ] + }, + { + "ID": 7843, + "SourceStructureID": 3679, + "TargetStructureID": 33881, + "Label": "3679-33881 via Conventional from 33880 -> 33926", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33880, + "TargetID": 33926, + "Directional": true + } + ] + }, + { + "ID": 7844, + "SourceStructureID": 3756, + "TargetStructureID": 162, + "Label": "3756-162 via Ribbon Synapse from 56913 -> 129453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56913, + "TargetID": 129453, + "Directional": true + } + ] + }, + { + "ID": 7845, + "SourceStructureID": 3756, + "TargetStructureID": 5107, + "Label": "3756-5107 via Ribbon Synapse from 116264 -> 129069, 116284 -> 129098, 129213 -> 129214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116264, + "TargetID": 129069, + "Directional": true + }, + { + "SourceID": 116284, + "TargetID": 129098, + "Directional": true + }, + { + "SourceID": 129213, + "TargetID": 129214, + "Directional": true + } + ] + }, + { + "ID": 7846, + "SourceStructureID": 3756, + "TargetStructureID": 5374, + "Label": "3756-5374 via Ribbon Synapse from 127642 -> 127643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127642, + "TargetID": 127643, + "Directional": true + } + ] + }, + { + "ID": 7847, + "SourceStructureID": 3756, + "TargetStructureID": 5405, + "Label": "3756-5405 via Ribbon Synapse from 116256 -> 129006, 116257 -> 129007, 128994 -> 128998, 128999 -> 129000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116256, + "TargetID": 129006, + "Directional": true + }, + { + "SourceID": 116257, + "TargetID": 129007, + "Directional": true + }, + { + "SourceID": 128994, + "TargetID": 128998, + "Directional": true + }, + { + "SourceID": 128999, + "TargetID": 129000, + "Directional": true + } + ] + }, + { + "ID": 7848, + "SourceStructureID": 3756, + "TargetStructureID": 5442, + "Label": "3756-5442 via Ribbon Synapse from 129076 -> 129077", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129076, + "TargetID": 129077, + "Directional": true + } + ] + }, + { + "ID": 7849, + "SourceStructureID": 3756, + "TargetStructureID": 6300, + "Label": "3756-6300 via Ribbon Synapse from 129234 -> 129233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129234, + "TargetID": 129233, + "Directional": true + } + ] + }, + { + "ID": 7850, + "SourceStructureID": 3756, + "TargetStructureID": 7134, + "Label": "3756-7134 via Ribbon Synapse from 53621 -> 53617, 122234 -> 122231, 122235 -> 122236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53621, + "TargetID": 53617, + "Directional": true + }, + { + "SourceID": 122234, + "TargetID": 122231, + "Directional": true + }, + { + "SourceID": 122235, + "TargetID": 122236, + "Directional": true + } + ] + }, + { + "ID": 7851, + "SourceStructureID": 3756, + "TargetStructureID": 8575, + "Label": "3756-8575 via BC Conventional Synapse from 98368 -> 62832, 128893 -> 62811", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98368, + "TargetID": 62832, + "Directional": true + }, + { + "SourceID": 128893, + "TargetID": 62811, + "Directional": true + } + ] + }, + { + "ID": 7852, + "SourceStructureID": 3756, + "TargetStructureID": 8575, + "Label": "3756-8575 via Ribbon Synapse from 122232 -> 62848, 128868 -> 62813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122232, + "TargetID": 62848, + "Directional": true + }, + { + "SourceID": 128868, + "TargetID": 62813, + "Directional": true + } + ] + }, + { + "ID": 7853, + "SourceStructureID": 3756, + "TargetStructureID": 12203, + "Label": "3756-12203 via Ribbon Synapse from 12253 -> 12252, 129017 -> 12252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12253, + "TargetID": 12252, + "Directional": true + }, + { + "SourceID": 129017, + "TargetID": 12252, + "Directional": true + } + ] + }, + { + "ID": 7854, + "SourceStructureID": 3756, + "TargetStructureID": 15796, + "Label": "3756-15796 via BC Conventional Synapse from 119336 -> 147779", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119336, + "TargetID": 147779, + "Directional": true + } + ] + }, + { + "ID": 7855, + "SourceStructureID": 3756, + "TargetStructureID": 15796, + "Label": "3756-15796 via Ribbon Synapse from 116206 -> 147786, 129196 -> 147785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116206, + "TargetID": 147786, + "Directional": true + }, + { + "SourceID": 129196, + "TargetID": 147785, + "Directional": true + } + ] + }, + { + "ID": 7856, + "SourceStructureID": 3756, + "TargetStructureID": 22974, + "Label": "3756-22974 via Ribbon Synapse from 54440 -> 68993, 93262 -> 128781, 127642 -> 68990", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54440, + "TargetID": 68993, + "Directional": true + }, + { + "SourceID": 93262, + "TargetID": 128781, + "Directional": true + }, + { + "SourceID": 127642, + "TargetID": 68990, + "Directional": true + } + ] + }, + { + "ID": 7857, + "SourceStructureID": 3756, + "TargetStructureID": 24174, + "Label": "3756-24174 via Ribbon Synapse from 129114 -> 129116", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129114, + "TargetID": 129116, + "Directional": true + } + ] + }, + { + "ID": 7858, + "SourceStructureID": 3756, + "TargetStructureID": 29702, + "Label": "3756-29702 via Ribbon Synapse from 128982 -> 75479", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128982, + "TargetID": 75479, + "Directional": true + } + ] + }, + { + "ID": 7859, + "SourceStructureID": 3756, + "TargetStructureID": 35894, + "Label": "3756-35894 via Ribbon Synapse from 35960 -> 35961, 35963 -> 35962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35960, + "TargetID": 35961, + "Directional": true + }, + { + "SourceID": 35963, + "TargetID": 35962, + "Directional": true + } + ] + }, + { + "ID": 7860, + "SourceStructureID": 3756, + "TargetStructureID": 40604, + "Label": "3756-40604 via BC Conventional Synapse from 116079 -> 129211", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116079, + "TargetID": 129211, + "Directional": true + } + ] + }, + { + "ID": 7861, + "SourceStructureID": 3756, + "TargetStructureID": 40604, + "Label": "3756-40604 via Ribbon Synapse from 116260 -> 41402", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116260, + "TargetID": 41402, + "Directional": true + } + ] + }, + { + "ID": 7862, + "SourceStructureID": 3756, + "TargetStructureID": 45220, + "Label": "3756-45220 via Ribbon Synapse from 69849 -> 128968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69849, + "TargetID": 128968, + "Directional": true + } + ] + }, + { + "ID": 7863, + "SourceStructureID": 3756, + "TargetStructureID": 56955, + "Label": "3756-56955 via Ribbon Synapse from 35857 -> 129127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35857, + "TargetID": 129127, + "Directional": true + } + ] + }, + { + "ID": 7864, + "SourceStructureID": 3756, + "TargetStructureID": 57034, + "Label": "3756-57034 via Ribbon Synapse from 125085 -> 159289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125085, + "TargetID": 159289, + "Directional": true + } + ] + }, + { + "ID": 7865, + "SourceStructureID": 3756, + "TargetStructureID": 57064, + "Label": "3756-57064 via BC Conventional Synapse from 128943 -> 128944", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128943, + "TargetID": 128944, + "Directional": true + } + ] + }, + { + "ID": 7866, + "SourceStructureID": 3756, + "TargetStructureID": 61823, + "Label": "3756-61823 via Ribbon Synapse from 116008 -> 128879, 116009 -> 128878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116008, + "TargetID": 128879, + "Directional": true + }, + { + "SourceID": 116009, + "TargetID": 128878, + "Directional": true + } + ] + }, + { + "ID": 7867, + "SourceStructureID": 3756, + "TargetStructureID": 68539, + "Label": "3756-68539 via Ribbon Synapse from 129092 -> 129096, 129094 -> 129095", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129092, + "TargetID": 129096, + "Directional": true + }, + { + "SourceID": 129094, + "TargetID": 129095, + "Directional": true + } + ] + }, + { + "ID": 7868, + "SourceStructureID": 3756, + "TargetStructureID": 69845, + "Label": "3756-69845 via Ribbon Synapse from 69844 -> 69846", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69844, + "TargetID": 69846, + "Directional": true + } + ] + }, + { + "ID": 7869, + "SourceStructureID": 3756, + "TargetStructureID": 69847, + "Label": "3756-69847 via Ribbon Synapse from 69844 -> 69848, 69849 -> 69848", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69844, + "TargetID": 69848, + "Directional": true + }, + { + "SourceID": 69849, + "TargetID": 69848, + "Directional": true + } + ] + }, + { + "ID": 7870, + "SourceStructureID": 3756, + "TargetStructureID": 82961, + "Label": "3756-82961 via Ribbon Synapse from 15639 -> 82963, 116237 -> 82963", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15639, + "TargetID": 82963, + "Directional": true + }, + { + "SourceID": 116237, + "TargetID": 82963, + "Directional": true + } + ] + }, + { + "ID": 7871, + "SourceStructureID": 3756, + "TargetStructureID": 112205, + "Label": "3756-112205 via Ribbon Synapse from 116119 -> 129349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116119, + "TargetID": 129349, + "Directional": true + } + ] + }, + { + "ID": 7872, + "SourceStructureID": 3756, + "TargetStructureID": 112476, + "Label": "3756-112476 via Ribbon Synapse from 116113 -> 129317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116113, + "TargetID": 129317, + "Directional": true + } + ] + }, + { + "ID": 7873, + "SourceStructureID": 3756, + "TargetStructureID": 112843, + "Label": "3756-112843 via Ribbon Synapse from 56894 -> 120367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56894, + "TargetID": 120367, + "Directional": true + } + ] + }, + { + "ID": 7874, + "SourceStructureID": 3756, + "TargetStructureID": 113186, + "Label": "3756-113186 via Ribbon Synapse from 129392 -> 129393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129392, + "TargetID": 129393, + "Directional": true + } + ] + }, + { + "ID": 7875, + "SourceStructureID": 3756, + "TargetStructureID": 120282, + "Label": "3756-120282 via Ribbon Synapse from 54456 -> 128821, 114043 -> 128891, 128819 -> 128820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54456, + "TargetID": 128821, + "Directional": true + }, + { + "SourceID": 114043, + "TargetID": 128891, + "Directional": true + }, + { + "SourceID": 128819, + "TargetID": 128820, + "Directional": true + } + ] + }, + { + "ID": 7876, + "SourceStructureID": 3756, + "TargetStructureID": 120285, + "Label": "3756-120285 via Ribbon Synapse from 120284 -> 120286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120284, + "TargetID": 120286, + "Directional": true + } + ] + }, + { + "ID": 7877, + "SourceStructureID": 3756, + "TargetStructureID": 120291, + "Label": "3756-120291 via Ribbon Synapse from 116017 -> 120297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116017, + "TargetID": 120297, + "Directional": true + } + ] + }, + { + "ID": 7878, + "SourceStructureID": 3756, + "TargetStructureID": 120299, + "Label": "3756-120299 via Ribbon Synapse from 116018 -> 120302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116018, + "TargetID": 120302, + "Directional": true + } + ] + }, + { + "ID": 7879, + "SourceStructureID": 3756, + "TargetStructureID": 120309, + "Label": "3756-120309 via Ribbon Synapse from 128782 -> 128784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128782, + "TargetID": 128784, + "Directional": true + } + ] + }, + { + "ID": 7880, + "SourceStructureID": 3756, + "TargetStructureID": 120321, + "Label": "3756-120321 via Ribbon Synapse from 116037 -> 128795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116037, + "TargetID": 128795, + "Directional": true + } + ] + }, + { + "ID": 7881, + "SourceStructureID": 3756, + "TargetStructureID": 120331, + "Label": "3756-120331 via Ribbon Synapse from 116052 -> 120333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116052, + "TargetID": 120333, + "Directional": true + } + ] + }, + { + "ID": 7882, + "SourceStructureID": 3756, + "TargetStructureID": 120343, + "Label": "3756-120343 via Ribbon Synapse from 116047 -> 129232", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116047, + "TargetID": 129232, + "Directional": true + } + ] + }, + { + "ID": 7883, + "SourceStructureID": 3756, + "TargetStructureID": 120347, + "Label": "3756-120347 via Ribbon Synapse from 56918 -> 120353", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56918, + "TargetID": 120353, + "Directional": true + } + ] + }, + { + "ID": 7884, + "SourceStructureID": 3756, + "TargetStructureID": 120355, + "Label": "3756-120355 via Ribbon Synapse from 129209 -> 129210", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129209, + "TargetID": 129210, + "Directional": true + } + ] + }, + { + "ID": 7885, + "SourceStructureID": 3756, + "TargetStructureID": 120372, + "Label": "3756-120372 via Ribbon Synapse from 129313 -> 129314", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129313, + "TargetID": 129314, + "Directional": true + } + ] + }, + { + "ID": 7886, + "SourceStructureID": 3756, + "TargetStructureID": 120379, + "Label": "3756-120379 via Ribbon Synapse from 57327 -> 120385, 116131 -> 120381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57327, + "TargetID": 120385, + "Directional": true + }, + { + "SourceID": 116131, + "TargetID": 120381, + "Directional": true + } + ] + }, + { + "ID": 7887, + "SourceStructureID": 3756, + "TargetStructureID": 120393, + "Label": "3756-120393 via Ribbon Synapse from 129404 -> 129405, 129419 -> 129420", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129404, + "TargetID": 129405, + "Directional": true + }, + { + "SourceID": 129419, + "TargetID": 129420, + "Directional": true + } + ] + }, + { + "ID": 7888, + "SourceStructureID": 3756, + "TargetStructureID": 120398, + "Label": "3756-120398 via Ribbon Synapse from 116151 -> 129421", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116151, + "TargetID": 129421, + "Directional": true + } + ] + }, + { + "ID": 7889, + "SourceStructureID": 3756, + "TargetStructureID": 120403, + "Label": "3756-120403 via Ribbon Synapse from 116163 -> 120407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116163, + "TargetID": 120407, + "Directional": true + } + ] + }, + { + "ID": 7890, + "SourceStructureID": 3756, + "TargetStructureID": 120416, + "Label": "3756-120416 via Ribbon Synapse from 116170 -> 129429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116170, + "TargetID": 129429, + "Directional": true + } + ] + }, + { + "ID": 7891, + "SourceStructureID": 3756, + "TargetStructureID": 120425, + "Label": "3756-120425 via Ribbon Synapse from 116180 -> 129468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116180, + "TargetID": 129468, + "Directional": true + } + ] + }, + { + "ID": 7892, + "SourceStructureID": 3756, + "TargetStructureID": 120431, + "Label": "3756-120431 via Ribbon Synapse from 116173 -> 120438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116173, + "TargetID": 120438, + "Directional": true + } + ] + }, + { + "ID": 7893, + "SourceStructureID": 3756, + "TargetStructureID": 120464, + "Label": "3756-120464 via Ribbon Synapse from 128940 -> 128939", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128940, + "TargetID": 128939, + "Directional": true + } + ] + }, + { + "ID": 7894, + "SourceStructureID": 3756, + "TargetStructureID": 120478, + "Label": "3756-120478 via Ribbon Synapse from 56680 -> 129074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56680, + "TargetID": 129074, + "Directional": true + } + ] + }, + { + "ID": 7895, + "SourceStructureID": 3756, + "TargetStructureID": 120480, + "Label": "3756-120480 via Ribbon Synapse from 129104 -> 129105", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129104, + "TargetID": 129105, + "Directional": true + } + ] + }, + { + "ID": 7896, + "SourceStructureID": 3756, + "TargetStructureID": 120484, + "Label": "3756-120484 via Ribbon Synapse from 116272 -> 120486, 116281 -> 129100", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116272, + "TargetID": 120486, + "Directional": true + }, + { + "SourceID": 116281, + "TargetID": 129100, + "Directional": true + } + ] + }, + { + "ID": 7897, + "SourceStructureID": 3756, + "TargetStructureID": 120489, + "Label": "3756-120489 via Ribbon Synapse from 35963 -> 129123, 56954 -> 120492, 116286 -> 120493, 129114 -> 129117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35963, + "TargetID": 129123, + "Directional": true + }, + { + "SourceID": 56954, + "TargetID": 120492, + "Directional": true + }, + { + "SourceID": 116286, + "TargetID": 120493, + "Directional": true + }, + { + "SourceID": 129114, + "TargetID": 129117, + "Directional": true + } + ] + }, + { + "ID": 7898, + "SourceStructureID": 3756, + "TargetStructureID": 120499, + "Label": "3756-120499 via Ribbon Synapse from 35857 -> 129162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35857, + "TargetID": 129162, + "Directional": true + } + ] + }, + { + "ID": 7899, + "SourceStructureID": 3756, + "TargetStructureID": 120518, + "Label": "3756-120518 via Ribbon Synapse from 129204 -> 129205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129204, + "TargetID": 129205, + "Directional": true + } + ] + }, + { + "ID": 7900, + "SourceStructureID": 3756, + "TargetStructureID": 120521, + "Label": "3756-120521 via Ribbon Synapse from 116012 -> 128902", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116012, + "TargetID": 128902, + "Directional": true + } + ] + }, + { + "ID": 7901, + "SourceStructureID": 3756, + "TargetStructureID": 120523, + "Label": "3756-120523 via Ribbon Synapse from 35857 -> 120531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35857, + "TargetID": 120531, + "Directional": true + } + ] + }, + { + "ID": 7902, + "SourceStructureID": 3756, + "TargetStructureID": 120534, + "Label": "3756-120534 via Ribbon Synapse from 11707 -> 128754, 37801 -> 128755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11707, + "TargetID": 128754, + "Directional": true + }, + { + "SourceID": 37801, + "TargetID": 128755, + "Directional": true + } + ] + }, + { + "ID": 7903, + "SourceStructureID": 3756, + "TargetStructureID": 120536, + "Label": "3756-120536 via BC Conventional Synapse from 128769 -> 128770", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128769, + "TargetID": 128770, + "Directional": true + } + ] + }, + { + "ID": 7904, + "SourceStructureID": 3756, + "TargetStructureID": 120536, + "Label": "3756-120536 via Ribbon Synapse from 11710 -> 128768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11710, + "TargetID": 128768, + "Directional": true + } + ] + }, + { + "ID": 7905, + "SourceStructureID": 3756, + "TargetStructureID": 120538, + "Label": "3756-120538 via Ribbon Synapse from 116003 -> 120540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116003, + "TargetID": 120540, + "Directional": true + } + ] + }, + { + "ID": 7906, + "SourceStructureID": 3756, + "TargetStructureID": 120544, + "Label": "3756-120544 via Ribbon Synapse from 54457 -> 128825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54457, + "TargetID": 128825, + "Directional": true + } + ] + }, + { + "ID": 7907, + "SourceStructureID": 3756, + "TargetStructureID": 120554, + "Label": "3756-120554 via Ribbon Synapse from 56899 -> 129400", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56899, + "TargetID": 129400, + "Directional": true + } + ] + }, + { + "ID": 7908, + "SourceStructureID": 3756, + "TargetStructureID": 120563, + "Label": "3756-120563 via Ribbon Synapse from 129001 -> 129002", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129001, + "TargetID": 129002, + "Directional": true + } + ] + }, + { + "ID": 7909, + "SourceStructureID": 3756, + "TargetStructureID": 120953, + "Label": "3756-120953 via Ribbon Synapse from 56952 -> 120955", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56952, + "TargetID": 120955, + "Directional": true + } + ] + }, + { + "ID": 7910, + "SourceStructureID": 3756, + "TargetStructureID": 120963, + "Label": "3756-120963 via Ribbon Synapse from 116293 -> 129166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116293, + "TargetID": 129166, + "Directional": true + } + ] + }, + { + "ID": 7911, + "SourceStructureID": 3756, + "TargetStructureID": 125397, + "Label": "3756-125397 via Ribbon Synapse from 56913 -> 129454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56913, + "TargetID": 129454, + "Directional": true + } + ] + }, + { + "ID": 7912, + "SourceStructureID": 3756, + "TargetStructureID": 128758, + "Label": "3756-128758 via Ribbon Synapse from 37802 -> 128759, 128760 -> 128759, 128761 -> 128759", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37802, + "TargetID": 128759, + "Directional": true + }, + { + "SourceID": 128760, + "TargetID": 128759, + "Directional": true + }, + { + "SourceID": 128761, + "TargetID": 128759, + "Directional": true + } + ] + }, + { + "ID": 7913, + "SourceStructureID": 3756, + "TargetStructureID": 128790, + "Label": "3756-128790 via Ribbon Synapse from 93258 -> 128791, 93259 -> 128792, 116037 -> 128793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93258, + "TargetID": 128791, + "Directional": true + }, + { + "SourceID": 93259, + "TargetID": 128792, + "Directional": true + }, + { + "SourceID": 116037, + "TargetID": 128793, + "Directional": true + } + ] + }, + { + "ID": 7914, + "SourceStructureID": 3756, + "TargetStructureID": 128803, + "Label": "3756-128803 via Ribbon Synapse from 116035 -> 128804", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116035, + "TargetID": 128804, + "Directional": true + } + ] + }, + { + "ID": 7915, + "SourceStructureID": 3756, + "TargetStructureID": 128816, + "Label": "3756-128816 via Ribbon Synapse from 128814 -> 128818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128814, + "TargetID": 128818, + "Directional": true + } + ] + }, + { + "ID": 7916, + "SourceStructureID": 3756, + "TargetStructureID": 128907, + "Label": "3756-128907 via Ribbon Synapse from 116017 -> 128908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116017, + "TargetID": 128908, + "Directional": true + } + ] + }, + { + "ID": 7917, + "SourceStructureID": 3756, + "TargetStructureID": 128992, + "Label": "3756-128992 via Ribbon Synapse from 128993 -> 128995", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128993, + "TargetID": 128995, + "Directional": true + } + ] + }, + { + "ID": 7918, + "SourceStructureID": 3756, + "TargetStructureID": 129465, + "Label": "3756-129465 via Ribbon Synapse from 129462 -> 129466", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129462, + "TargetID": 129466, + "Directional": true + } + ] + }, + { + "ID": 7919, + "SourceStructureID": 3865, + "TargetStructureID": 181, + "Label": "3865-181 via Conventional from 36120 -> 34090", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36120, + "TargetID": 34090, + "Directional": true + } + ] + }, + { + "ID": 7920, + "SourceStructureID": 3865, + "TargetStructureID": 968, + "Label": "3865-968 via Conventional from 132115 -> 132116", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132115, + "TargetID": 132116, + "Directional": true + } + ] + }, + { + "ID": 7921, + "SourceStructureID": 3865, + "TargetStructureID": 5278, + "Label": "3865-5278 via Conventional from 36112 -> 114521, 99727 -> 20079, 99823 -> 20158", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36112, + "TargetID": 114521, + "Directional": true + }, + { + "SourceID": 99727, + "TargetID": 20079, + "Directional": true + }, + { + "SourceID": 99823, + "TargetID": 20158, + "Directional": true + } + ] + }, + { + "ID": 7922, + "SourceStructureID": 3865, + "TargetStructureID": 6169, + "Label": "3865-6169 via Conventional from 36126 -> 36127", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36126, + "TargetID": 36127, + "Directional": true + } + ] + }, + { + "ID": 7923, + "SourceStructureID": 3865, + "TargetStructureID": 8575, + "Label": "3865-8575 via Conventional from 132213 -> 132214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132213, + "TargetID": 132214, + "Directional": true + } + ] + }, + { + "ID": 7924, + "SourceStructureID": 3865, + "TargetStructureID": 129648, + "Label": "3865-129648 via Conventional from 36123 -> 129652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36123, + "TargetID": 129652, + "Directional": true + } + ] + }, + { + "ID": 7925, + "SourceStructureID": 3865, + "TargetStructureID": 132220, + "Label": "3865-132220 via Conventional from 132232 -> 132234", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132232, + "TargetID": 132234, + "Directional": true + } + ] + }, + { + "ID": 7926, + "SourceStructureID": 3881, + "TargetStructureID": 5609, + "Label": "3881-5609 via Ribbon Synapse from 31396 -> 31395", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31396, + "TargetID": 31395, + "Directional": true + } + ] + }, + { + "ID": 7927, + "SourceStructureID": 3881, + "TargetStructureID": 11229, + "Label": "3881-11229 via Ribbon Synapse from 28979 -> 28978, 135599 -> 135600", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28979, + "TargetID": 28978, + "Directional": true + }, + { + "SourceID": 135599, + "TargetID": 135600, + "Directional": true + } + ] + }, + { + "ID": 7928, + "SourceStructureID": 3928, + "TargetStructureID": 115, + "Label": "3928-115 via Ribbon Synapse from 42555 -> 8083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42555, + "TargetID": 8083, + "Directional": true + } + ] + }, + { + "ID": 7929, + "SourceStructureID": 3928, + "TargetStructureID": 7225, + "Label": "3928-7225 via Ribbon Synapse from 40704 -> 42446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40704, + "TargetID": 42446, + "Directional": true + } + ] + }, + { + "ID": 7930, + "SourceStructureID": 3928, + "TargetStructureID": 7274, + "Label": "3928-7274 via BC Conventional Synapse from 40680 -> 40676, 40823 -> 41813", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40680, + "TargetID": 40676, + "Directional": true + }, + { + "SourceID": 40823, + "TargetID": 41813, + "Directional": true + } + ] + }, + { + "ID": 7931, + "SourceStructureID": 3928, + "TargetStructureID": 7688, + "Label": "3928-7688 via BC Conventional Synapse from 36364 -> 40787", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36364, + "TargetID": 40787, + "Directional": true + } + ] + }, + { + "ID": 7932, + "SourceStructureID": 3928, + "TargetStructureID": 8551, + "Label": "3928-8551 via Ribbon Synapse from 40707 -> 8559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40707, + "TargetID": 8559, + "Directional": true + } + ] + }, + { + "ID": 7933, + "SourceStructureID": 3928, + "TargetStructureID": 46741, + "Label": "3928-46741 via Ribbon Synapse from 41457 -> 137006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 41457, + "TargetID": 137006, + "Directional": true + } + ] + }, + { + "ID": 7934, + "SourceStructureID": 4568, + "TargetStructureID": 174, + "Label": "4568-174 via Ribbon Synapse from 21882 -> 21883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21882, + "TargetID": 21883, + "Directional": true + } + ] + }, + { + "ID": 7935, + "SourceStructureID": 4568, + "TargetStructureID": 3257, + "Label": "4568-3257 via Ribbon Synapse from 11521 -> 66231, 11523 -> 12448", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11521, + "TargetID": 66231, + "Directional": true + }, + { + "SourceID": 11523, + "TargetID": 12448, + "Directional": true + } + ] + }, + { + "ID": 7936, + "SourceStructureID": 4568, + "TargetStructureID": 5435, + "Label": "4568-5435 via Ribbon Synapse from 11580 -> 41139, 11593 -> 41098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11580, + "TargetID": 41139, + "Directional": true + }, + { + "SourceID": 11593, + "TargetID": 41098, + "Directional": true + } + ] + }, + { + "ID": 7937, + "SourceStructureID": 4568, + "TargetStructureID": 6169, + "Label": "4568-6169 via Ribbon Synapse from 11551 -> 9473", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11551, + "TargetID": 9473, + "Directional": true + } + ] + }, + { + "ID": 7938, + "SourceStructureID": 4568, + "TargetStructureID": 7859, + "Label": "4568-7859 via Ribbon Synapse from 11561 -> 64685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11561, + "TargetID": 64685, + "Directional": true + } + ] + }, + { + "ID": 7939, + "SourceStructureID": 4568, + "TargetStructureID": 8575, + "Label": "4568-8575 via Ribbon Synapse from 11574 -> 62255", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11574, + "TargetID": 62255, + "Directional": true + } + ] + }, + { + "ID": 7940, + "SourceStructureID": 4568, + "TargetStructureID": 43404, + "Label": "4568-43404 via Ribbon Synapse from 11521 -> 43405", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11521, + "TargetID": 43405, + "Directional": true + } + ] + }, + { + "ID": 7941, + "SourceStructureID": 4568, + "TargetStructureID": 64777, + "Label": "4568-64777 via Ribbon Synapse from 11571 -> 64782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11571, + "TargetID": 64782, + "Directional": true + } + ] + }, + { + "ID": 7942, + "SourceStructureID": 4569, + "TargetStructureID": 606, + "Label": "4569-606 via Ribbon Synapse from 47507 -> 50891, 53319 -> 53320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47507, + "TargetID": 50891, + "Directional": true + }, + { + "SourceID": 53319, + "TargetID": 53320, + "Directional": true + } + ] + }, + { + "ID": 7943, + "SourceStructureID": 4569, + "TargetStructureID": 6300, + "Label": "4569-6300 via Ribbon Synapse from 6296 -> 6301, 98552 -> 98553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6296, + "TargetID": 6301, + "Directional": true + }, + { + "SourceID": 98552, + "TargetID": 98553, + "Directional": true + } + ] + }, + { + "ID": 7944, + "SourceStructureID": 4569, + "TargetStructureID": 11072, + "Label": "4569-11072 via Ribbon Synapse from 11070 -> 11075", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11070, + "TargetID": 11075, + "Directional": true + } + ] + }, + { + "ID": 7945, + "SourceStructureID": 4569, + "TargetStructureID": 18693, + "Label": "4569-18693 via Ribbon Synapse from 4738 -> 64724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4738, + "TargetID": 64724, + "Directional": true + } + ] + }, + { + "ID": 7946, + "SourceStructureID": 4569, + "TargetStructureID": 20299, + "Label": "4569-20299 via Ribbon Synapse from 98682 -> 98691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98682, + "TargetID": 98691, + "Directional": true + } + ] + }, + { + "ID": 7947, + "SourceStructureID": 4569, + "TargetStructureID": 38605, + "Label": "4569-38605 via Ribbon Synapse from 38615 -> 38614", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38615, + "TargetID": 38614, + "Directional": true + } + ] + }, + { + "ID": 7948, + "SourceStructureID": 4569, + "TargetStructureID": 43327, + "Label": "4569-43327 via Ribbon Synapse from 6296 -> 43329, 6296 -> 99067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6296, + "TargetID": 43329, + "Directional": true + }, + { + "SourceID": 6296, + "TargetID": 99067, + "Directional": true + } + ] + }, + { + "ID": 7949, + "SourceStructureID": 4569, + "TargetStructureID": 89008, + "Label": "4569-89008 via Ribbon Synapse from 30860 -> 99021", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30860, + "TargetID": 99021, + "Directional": true + } + ] + }, + { + "ID": 7950, + "SourceStructureID": 4569, + "TargetStructureID": 89388, + "Label": "4569-89388 via BC Conventional Synapse from 98954 -> 98953", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98954, + "TargetID": 98953, + "Directional": true + } + ] + }, + { + "ID": 7951, + "SourceStructureID": 4569, + "TargetStructureID": 90280, + "Label": "4569-90280 via Ribbon Synapse from 52509 -> 98545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52509, + "TargetID": 98545, + "Directional": true + } + ] + }, + { + "ID": 7952, + "SourceStructureID": 4569, + "TargetStructureID": 90483, + "Label": "4569-90483 via Ribbon Synapse from 38615 -> 90489, 90490 -> 90489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38615, + "TargetID": 90489, + "Directional": true + }, + { + "SourceID": 90490, + "TargetID": 90489, + "Directional": true + } + ] + }, + { + "ID": 7953, + "SourceStructureID": 4569, + "TargetStructureID": 97786, + "Label": "4569-97786 via Ribbon Synapse from 52448 -> 97789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52448, + "TargetID": 97789, + "Directional": true + } + ] + }, + { + "ID": 7954, + "SourceStructureID": 4569, + "TargetStructureID": 97794, + "Label": "4569-97794 via Ribbon Synapse from 52460 -> 97795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52460, + "TargetID": 97795, + "Directional": true + } + ] + }, + { + "ID": 7955, + "SourceStructureID": 4569, + "TargetStructureID": 97807, + "Label": "4569-97807 via Ribbon Synapse from 52464 -> 97808", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52464, + "TargetID": 97808, + "Directional": true + } + ] + }, + { + "ID": 7956, + "SourceStructureID": 4569, + "TargetStructureID": 97810, + "Label": "4569-97810 via Ribbon Synapse from 97809 -> 97811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97809, + "TargetID": 97811, + "Directional": true + } + ] + }, + { + "ID": 7957, + "SourceStructureID": 4569, + "TargetStructureID": 97812, + "Label": "4569-97812 via Ribbon Synapse from 97809 -> 97813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97809, + "TargetID": 97813, + "Directional": true + } + ] + }, + { + "ID": 7958, + "SourceStructureID": 4569, + "TargetStructureID": 97819, + "Label": "4569-97819 via Ribbon Synapse from 52465 -> 97820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52465, + "TargetID": 97820, + "Directional": true + } + ] + }, + { + "ID": 7959, + "SourceStructureID": 4569, + "TargetStructureID": 97855, + "Label": "4569-97855 via BC Conventional Synapse from 97854 -> 97856", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97854, + "TargetID": 97856, + "Directional": true + } + ] + }, + { + "ID": 7960, + "SourceStructureID": 4569, + "TargetStructureID": 97864, + "Label": "4569-97864 via Ribbon Synapse from 4745 -> 97865", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4745, + "TargetID": 97865, + "Directional": true + } + ] + }, + { + "ID": 7961, + "SourceStructureID": 4569, + "TargetStructureID": 98163, + "Label": "4569-98163 via Ribbon Synapse from 23784 -> 98164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23784, + "TargetID": 98164, + "Directional": true + } + ] + }, + { + "ID": 7962, + "SourceStructureID": 4569, + "TargetStructureID": 98175, + "Label": "4569-98175 via Ribbon Synapse from 23788 -> 98176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23788, + "TargetID": 98176, + "Directional": true + } + ] + }, + { + "ID": 7963, + "SourceStructureID": 4569, + "TargetStructureID": 98186, + "Label": "4569-98186 via BC Conventional Synapse from 98226 -> 98223, 98227 -> 98222", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98226, + "TargetID": 98223, + "Directional": true + }, + { + "SourceID": 98227, + "TargetID": 98222, + "Directional": true + } + ] + }, + { + "ID": 7964, + "SourceStructureID": 4569, + "TargetStructureID": 98195, + "Label": "4569-98195 via Ribbon Synapse from 23804 -> 98197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23804, + "TargetID": 98197, + "Directional": true + } + ] + }, + { + "ID": 7965, + "SourceStructureID": 4569, + "TargetStructureID": 98208, + "Label": "4569-98208 via Ribbon Synapse from 23804 -> 98209", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23804, + "TargetID": 98209, + "Directional": true + } + ] + }, + { + "ID": 7966, + "SourceStructureID": 4569, + "TargetStructureID": 98254, + "Label": "4569-98254 via Ribbon Synapse from 23794 -> 98256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23794, + "TargetID": 98256, + "Directional": true + } + ] + }, + { + "ID": 7967, + "SourceStructureID": 4569, + "TargetStructureID": 98353, + "Label": "4569-98353 via Ribbon Synapse from 15999 -> 98354", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15999, + "TargetID": 98354, + "Directional": true + } + ] + }, + { + "ID": 7968, + "SourceStructureID": 4569, + "TargetStructureID": 98372, + "Label": "4569-98372 via Ribbon Synapse from 47492 -> 98373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47492, + "TargetID": 98373, + "Directional": true + } + ] + }, + { + "ID": 7969, + "SourceStructureID": 4569, + "TargetStructureID": 98375, + "Label": "4569-98375 via Ribbon Synapse from 47492 -> 98376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47492, + "TargetID": 98376, + "Directional": true + } + ] + }, + { + "ID": 7970, + "SourceStructureID": 4569, + "TargetStructureID": 98377, + "Label": "4569-98377 via Ribbon Synapse from 47492 -> 98378", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47492, + "TargetID": 98378, + "Directional": true + } + ] + }, + { + "ID": 7971, + "SourceStructureID": 4569, + "TargetStructureID": 98379, + "Label": "4569-98379 via Ribbon Synapse from 30827 -> 98380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30827, + "TargetID": 98380, + "Directional": true + } + ] + }, + { + "ID": 7972, + "SourceStructureID": 4569, + "TargetStructureID": 98381, + "Label": "4569-98381 via Ribbon Synapse from 30827 -> 98382", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30827, + "TargetID": 98382, + "Directional": true + } + ] + }, + { + "ID": 7973, + "SourceStructureID": 4569, + "TargetStructureID": 98424, + "Label": "4569-98424 via Ribbon Synapse from 30830 -> 98427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30830, + "TargetID": 98427, + "Directional": true + } + ] + }, + { + "ID": 7974, + "SourceStructureID": 4569, + "TargetStructureID": 98436, + "Label": "4569-98436 via Ribbon Synapse from 92754 -> 98437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92754, + "TargetID": 98437, + "Directional": true + } + ] + }, + { + "ID": 7975, + "SourceStructureID": 4569, + "TargetStructureID": 98449, + "Label": "4569-98449 via BC Conventional Synapse from 98448 -> 98450", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98448, + "TargetID": 98450, + "Directional": true + } + ] + }, + { + "ID": 7976, + "SourceStructureID": 4569, + "TargetStructureID": 98453, + "Label": "4569-98453 via Ribbon Synapse from 98452 -> 98454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98452, + "TargetID": 98454, + "Directional": true + } + ] + }, + { + "ID": 7977, + "SourceStructureID": 4569, + "TargetStructureID": 98471, + "Label": "4569-98471 via BC Conventional Synapse from 98470 -> 98473", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98470, + "TargetID": 98473, + "Directional": true + } + ] + }, + { + "ID": 7978, + "SourceStructureID": 4569, + "TargetStructureID": 98475, + "Label": "4569-98475 via Ribbon Synapse from 30832 -> 98477", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30832, + "TargetID": 98477, + "Directional": true + } + ] + }, + { + "ID": 7979, + "SourceStructureID": 4569, + "TargetStructureID": 98484, + "Label": "4569-98484 via Ribbon Synapse from 98481 -> 98497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98481, + "TargetID": 98497, + "Directional": true + } + ] + }, + { + "ID": 7980, + "SourceStructureID": 4569, + "TargetStructureID": 98489, + "Label": "4569-98489 via Ribbon Synapse from 11070 -> 98490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11070, + "TargetID": 98490, + "Directional": true + } + ] + }, + { + "ID": 7981, + "SourceStructureID": 4569, + "TargetStructureID": 98495, + "Label": "4569-98495 via Ribbon Synapse from 98481 -> 98496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98481, + "TargetID": 98496, + "Directional": true + } + ] + }, + { + "ID": 7982, + "SourceStructureID": 4569, + "TargetStructureID": 98498, + "Label": "4569-98498 via Ribbon Synapse from 98480 -> 98499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98480, + "TargetID": 98499, + "Directional": true + } + ] + }, + { + "ID": 7983, + "SourceStructureID": 4569, + "TargetStructureID": 98500, + "Label": "4569-98500 via Ribbon Synapse from 98480 -> 98501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98480, + "TargetID": 98501, + "Directional": true + } + ] + }, + { + "ID": 7984, + "SourceStructureID": 4569, + "TargetStructureID": 98513, + "Label": "4569-98513 via Ribbon Synapse from 98509 -> 98514", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98509, + "TargetID": 98514, + "Directional": true + } + ] + }, + { + "ID": 7985, + "SourceStructureID": 4569, + "TargetStructureID": 98517, + "Label": "4569-98517 via Ribbon Synapse from 98509 -> 98518", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98509, + "TargetID": 98518, + "Directional": true + } + ] + }, + { + "ID": 7986, + "SourceStructureID": 4569, + "TargetStructureID": 98519, + "Label": "4569-98519 via Ribbon Synapse from 65202 -> 98520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65202, + "TargetID": 98520, + "Directional": true + } + ] + }, + { + "ID": 7987, + "SourceStructureID": 4569, + "TargetStructureID": 98521, + "Label": "4569-98521 via Ribbon Synapse from 65202 -> 98522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65202, + "TargetID": 98522, + "Directional": true + } + ] + }, + { + "ID": 7988, + "SourceStructureID": 4569, + "TargetStructureID": 98525, + "Label": "4569-98525 via BC Conventional Synapse from 98523 -> 98527", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98523, + "TargetID": 98527, + "Directional": true + } + ] + }, + { + "ID": 7989, + "SourceStructureID": 4569, + "TargetStructureID": 98570, + "Label": "4569-98570 via BC Conventional Synapse from 98569 -> 98571", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98569, + "TargetID": 98571, + "Directional": true + } + ] + }, + { + "ID": 7990, + "SourceStructureID": 4569, + "TargetStructureID": 98574, + "Label": "4569-98574 via Ribbon Synapse from 47504 -> 98602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47504, + "TargetID": 98602, + "Directional": true + } + ] + }, + { + "ID": 7991, + "SourceStructureID": 4569, + "TargetStructureID": 98600, + "Label": "4569-98600 via Ribbon Synapse from 47504 -> 98601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47504, + "TargetID": 98601, + "Directional": true + } + ] + }, + { + "ID": 7992, + "SourceStructureID": 4569, + "TargetStructureID": 98635, + "Label": "4569-98635 via Ribbon Synapse from 98634 -> 98639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98634, + "TargetID": 98639, + "Directional": true + } + ] + }, + { + "ID": 7993, + "SourceStructureID": 4569, + "TargetStructureID": 98697, + "Label": "4569-98697 via BC Conventional Synapse from 98699 -> 98698", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98699, + "TargetID": 98698, + "Directional": true + } + ] + }, + { + "ID": 7994, + "SourceStructureID": 4569, + "TargetStructureID": 98700, + "Label": "4569-98700 via BC Conventional Synapse from 98718 -> 98719", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98718, + "TargetID": 98719, + "Directional": true + } + ] + }, + { + "ID": 7995, + "SourceStructureID": 4569, + "TargetStructureID": 98700, + "Label": "4569-98700 via Ribbon Synapse from 53319 -> 98701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53319, + "TargetID": 98701, + "Directional": true + } + ] + }, + { + "ID": 7996, + "SourceStructureID": 4569, + "TargetStructureID": 98714, + "Label": "4569-98714 via Ribbon Synapse from 53682 -> 98715", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53682, + "TargetID": 98715, + "Directional": true + } + ] + }, + { + "ID": 7997, + "SourceStructureID": 4569, + "TargetStructureID": 98716, + "Label": "4569-98716 via Ribbon Synapse from 53682 -> 98717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53682, + "TargetID": 98717, + "Directional": true + } + ] + }, + { + "ID": 7998, + "SourceStructureID": 4569, + "TargetStructureID": 98740, + "Label": "4569-98740 via Ribbon Synapse from 98739 -> 98743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98739, + "TargetID": 98743, + "Directional": true + } + ] + }, + { + "ID": 7999, + "SourceStructureID": 4569, + "TargetStructureID": 98745, + "Label": "4569-98745 via Ribbon Synapse from 47510 -> 98746", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47510, + "TargetID": 98746, + "Directional": true + } + ] + }, + { + "ID": 8000, + "SourceStructureID": 4569, + "TargetStructureID": 98852, + "Label": "4569-98852 via Ribbon Synapse from 52513 -> 98853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52513, + "TargetID": 98853, + "Directional": true + } + ] + }, + { + "ID": 8001, + "SourceStructureID": 4569, + "TargetStructureID": 98854, + "Label": "4569-98854 via Ribbon Synapse from 52515 -> 98855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52515, + "TargetID": 98855, + "Directional": true + } + ] + }, + { + "ID": 8002, + "SourceStructureID": 4569, + "TargetStructureID": 98856, + "Label": "4569-98856 via Ribbon Synapse from 52515 -> 98857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52515, + "TargetID": 98857, + "Directional": true + } + ] + }, + { + "ID": 8003, + "SourceStructureID": 4569, + "TargetStructureID": 98861, + "Label": "4569-98861 via Ribbon Synapse from 98860 -> 98862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98860, + "TargetID": 98862, + "Directional": true + } + ] + }, + { + "ID": 8004, + "SourceStructureID": 4569, + "TargetStructureID": 98867, + "Label": "4569-98867 via Ribbon Synapse from 30836 -> 98868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30836, + "TargetID": 98868, + "Directional": true + } + ] + }, + { + "ID": 8005, + "SourceStructureID": 4569, + "TargetStructureID": 98878, + "Label": "4569-98878 via Ribbon Synapse from 30838 -> 98879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30838, + "TargetID": 98879, + "Directional": true + } + ] + }, + { + "ID": 8006, + "SourceStructureID": 4569, + "TargetStructureID": 98880, + "Label": "4569-98880 via Ribbon Synapse from 30837 -> 98881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30837, + "TargetID": 98881, + "Directional": true + } + ] + }, + { + "ID": 8007, + "SourceStructureID": 4569, + "TargetStructureID": 98882, + "Label": "4569-98882 via Ribbon Synapse from 30837 -> 98883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30837, + "TargetID": 98883, + "Directional": true + } + ] + }, + { + "ID": 8008, + "SourceStructureID": 4569, + "TargetStructureID": 98898, + "Label": "4569-98898 via Ribbon Synapse from 30844 -> 98906, 30845 -> 98905", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30844, + "TargetID": 98906, + "Directional": true + }, + { + "SourceID": 30845, + "TargetID": 98905, + "Directional": true + } + ] + }, + { + "ID": 8009, + "SourceStructureID": 4569, + "TargetStructureID": 98912, + "Label": "4569-98912 via Ribbon Synapse from 98911 -> 98913", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98911, + "TargetID": 98913, + "Directional": true + } + ] + }, + { + "ID": 8010, + "SourceStructureID": 4569, + "TargetStructureID": 98927, + "Label": "4569-98927 via BC Conventional Synapse from 98926 -> 98928", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98926, + "TargetID": 98928, + "Directional": true + } + ] + }, + { + "ID": 8011, + "SourceStructureID": 4569, + "TargetStructureID": 98929, + "Label": "4569-98929 via Ribbon Synapse from 52544 -> 98940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52544, + "TargetID": 98940, + "Directional": true + } + ] + }, + { + "ID": 8012, + "SourceStructureID": 4569, + "TargetStructureID": 98936, + "Label": "4569-98936 via Ribbon Synapse from 52544 -> 98939", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52544, + "TargetID": 98939, + "Directional": true + } + ] + }, + { + "ID": 8013, + "SourceStructureID": 4569, + "TargetStructureID": 98941, + "Label": "4569-98941 via Ribbon Synapse from 52544 -> 98942", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52544, + "TargetID": 98942, + "Directional": true + } + ] + }, + { + "ID": 8014, + "SourceStructureID": 4569, + "TargetStructureID": 98999, + "Label": "4569-98999 via Ribbon Synapse from 30858 -> 99000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30858, + "TargetID": 99000, + "Directional": true + } + ] + }, + { + "ID": 8015, + "SourceStructureID": 4569, + "TargetStructureID": 99004, + "Label": "4569-99004 via Ribbon Synapse from 30860 -> 99005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30860, + "TargetID": 99005, + "Directional": true + } + ] + }, + { + "ID": 8016, + "SourceStructureID": 4569, + "TargetStructureID": 99025, + "Label": "4569-99025 via BC Conventional Synapse from 99052 -> 99053", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99052, + "TargetID": 99053, + "Directional": true + } + ] + }, + { + "ID": 8017, + "SourceStructureID": 4569, + "TargetStructureID": 99025, + "Label": "4569-99025 via Ribbon Synapse from 47533 -> 99030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47533, + "TargetID": 99030, + "Directional": true + } + ] + }, + { + "ID": 8018, + "SourceStructureID": 4569, + "TargetStructureID": 99057, + "Label": "4569-99057 via Ribbon Synapse from 29786 -> 99060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29786, + "TargetID": 99060, + "Directional": true + } + ] + }, + { + "ID": 8019, + "SourceStructureID": 4569, + "TargetStructureID": 99058, + "Label": "4569-99058 via Ribbon Synapse from 29786 -> 99059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29786, + "TargetID": 99059, + "Directional": true + } + ] + }, + { + "ID": 8020, + "SourceStructureID": 4569, + "TargetStructureID": 99081, + "Label": "4569-99081 via Ribbon Synapse from 40130 -> 99084", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40130, + "TargetID": 99084, + "Directional": true + } + ] + }, + { + "ID": 8021, + "SourceStructureID": 4569, + "TargetStructureID": 99100, + "Label": "4569-99100 via Ribbon Synapse from 23567 -> 99101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23567, + "TargetID": 99101, + "Directional": true + } + ] + }, + { + "ID": 8022, + "SourceStructureID": 4570, + "TargetStructureID": 318, + "Label": "4570-318 via Ribbon Synapse from 4814 -> 14130, 14127 -> 14126, 14987 -> 14975", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4814, + "TargetID": 14130, + "Directional": true + }, + { + "SourceID": 14127, + "TargetID": 14126, + "Directional": true + }, + { + "SourceID": 14987, + "TargetID": 14975, + "Directional": true + } + ] + }, + { + "ID": 8023, + "SourceStructureID": 4570, + "TargetStructureID": 390, + "Label": "4570-390 via Ribbon Synapse from 65216 -> 65215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65216, + "TargetID": 65215, + "Directional": true + } + ] + }, + { + "ID": 8024, + "SourceStructureID": 4570, + "TargetStructureID": 906, + "Label": "4570-906 via Ribbon Synapse from 4750 -> 15192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4750, + "TargetID": 15192, + "Directional": true + } + ] + }, + { + "ID": 8025, + "SourceStructureID": 4570, + "TargetStructureID": 4890, + "Label": "4570-4890 via Ribbon Synapse from 4770 -> 7910, 4771 -> 4891, 7909 -> 4892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4770, + "TargetID": 7910, + "Directional": true + }, + { + "SourceID": 4771, + "TargetID": 4891, + "Directional": true + }, + { + "SourceID": 7909, + "TargetID": 4892, + "Directional": true + } + ] + }, + { + "ID": 8026, + "SourceStructureID": 4570, + "TargetStructureID": 5117, + "Label": "4570-5117 via Ribbon Synapse from 14399 -> 28793, 28537 -> 28787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14399, + "TargetID": 28793, + "Directional": true + }, + { + "SourceID": 28537, + "TargetID": 28787, + "Directional": true + } + ] + }, + { + "ID": 8027, + "SourceStructureID": 4570, + "TargetStructureID": 5118, + "Label": "4570-5118 via Ribbon Synapse from 13423 -> 6537", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13423, + "TargetID": 6537, + "Directional": true + } + ] + }, + { + "ID": 8028, + "SourceStructureID": 4570, + "TargetStructureID": 5303, + "Label": "4570-5303 via Ribbon Synapse from 14404 -> 20762", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14404, + "TargetID": 20762, + "Directional": true + } + ] + }, + { + "ID": 8029, + "SourceStructureID": 4570, + "TargetStructureID": 5350, + "Label": "4570-5350 via Ribbon Synapse from 4783 -> 10678, 4791 -> 10676, 10673 -> 10667", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4783, + "TargetID": 10678, + "Directional": true + }, + { + "SourceID": 4791, + "TargetID": 10676, + "Directional": true + }, + { + "SourceID": 10673, + "TargetID": 10667, + "Directional": true + } + ] + }, + { + "ID": 8030, + "SourceStructureID": 4570, + "TargetStructureID": 8579, + "Label": "4570-8579 via Ribbon Synapse from 4757 -> 62657", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4757, + "TargetID": 62657, + "Directional": true + } + ] + }, + { + "ID": 8031, + "SourceStructureID": 4570, + "TargetStructureID": 13855, + "Label": "4570-13855 via Ribbon Synapse from 4783 -> 36317, 4791 -> 36314, 14386 -> 36308", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4783, + "TargetID": 36317, + "Directional": true + }, + { + "SourceID": 4791, + "TargetID": 36314, + "Directional": true + }, + { + "SourceID": 14386, + "TargetID": 36308, + "Directional": true + } + ] + }, + { + "ID": 8032, + "SourceStructureID": 4570, + "TargetStructureID": 29277, + "Label": "4570-29277 via Ribbon Synapse from 28539 -> 29302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28539, + "TargetID": 29302, + "Directional": true + } + ] + }, + { + "ID": 8033, + "SourceStructureID": 4570, + "TargetStructureID": 29702, + "Label": "4570-29702 via Ribbon Synapse from 4761 -> 72628, 28513 -> 72628", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4761, + "TargetID": 72628, + "Directional": true + }, + { + "SourceID": 28513, + "TargetID": 72628, + "Directional": true + } + ] + }, + { + "ID": 8034, + "SourceStructureID": 4570, + "TargetStructureID": 31024, + "Label": "4570-31024 via Ribbon Synapse from 4759 -> 31085", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4759, + "TargetID": 31085, + "Directional": true + } + ] + }, + { + "ID": 8035, + "SourceStructureID": 4570, + "TargetStructureID": 40010, + "Label": "4570-40010 via Ribbon Synapse from 14983 -> 40011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14983, + "TargetID": 40011, + "Directional": true + } + ] + }, + { + "ID": 8036, + "SourceStructureID": 4570, + "TargetStructureID": 40858, + "Label": "4570-40858 via Ribbon Synapse from 123179 -> 123172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123179, + "TargetID": 123172, + "Directional": true + } + ] + }, + { + "ID": 8037, + "SourceStructureID": 4570, + "TargetStructureID": 41474, + "Label": "4570-41474 via Conventional from 41529 -> 41528", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41529, + "TargetID": 41528, + "Directional": true + } + ] + }, + { + "ID": 8038, + "SourceStructureID": 4570, + "TargetStructureID": 41474, + "Label": "4570-41474 via Ribbon Synapse from 4764 -> 41508, 123177 -> 123178", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 4764, + "TargetID": 41508, + "Directional": true + }, + { + "SourceID": 123177, + "TargetID": 123178, + "Directional": true + } + ] + }, + { + "ID": 8039, + "SourceStructureID": 4570, + "TargetStructureID": 71284, + "Label": "4570-71284 via BC Conventional Synapse from 71285 -> 71286", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71285, + "TargetID": 71286, + "Directional": true + } + ] + }, + { + "ID": 8040, + "SourceStructureID": 4570, + "TargetStructureID": 88082, + "Label": "4570-88082 via Ribbon Synapse from 28516 -> 88083, 88086 -> 88085, 88089 -> 88090, 88091 -> 88090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28516, + "TargetID": 88083, + "Directional": true + }, + { + "SourceID": 88086, + "TargetID": 88085, + "Directional": true + }, + { + "SourceID": 88089, + "TargetID": 88090, + "Directional": true + }, + { + "SourceID": 88091, + "TargetID": 88090, + "Directional": true + } + ] + }, + { + "ID": 8041, + "SourceStructureID": 4835, + "TargetStructureID": 354, + "Label": "4835-354 via Conventional from 65735 -> 44673", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65735, + "TargetID": 44673, + "Directional": true + } + ] + }, + { + "ID": 8042, + "SourceStructureID": 4835, + "TargetStructureID": 424, + "Label": "4835-424 via Conventional from 121853 -> 121852", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121853, + "TargetID": 121852, + "Directional": true + } + ] + }, + { + "ID": 8043, + "SourceStructureID": 4835, + "TargetStructureID": 437, + "Label": "4835-437 via Conventional from 6640 -> 6634, 17604 -> 17605, 17608 -> 17606, 17609 -> 17607, 17612 -> 17613, 65738 -> 65715", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6640, + "TargetID": 6634, + "Directional": true + }, + { + "SourceID": 17604, + "TargetID": 17605, + "Directional": true + }, + { + "SourceID": 17608, + "TargetID": 17606, + "Directional": true + }, + { + "SourceID": 17609, + "TargetID": 17607, + "Directional": true + }, + { + "SourceID": 17612, + "TargetID": 17613, + "Directional": true + }, + { + "SourceID": 65738, + "TargetID": 65715, + "Directional": true + } + ] + }, + { + "ID": 8044, + "SourceStructureID": 4835, + "TargetStructureID": 455, + "Label": "4835-455 via Conventional from 21417 -> 7391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21417, + "TargetID": 7391, + "Directional": true + } + ] + }, + { + "ID": 8045, + "SourceStructureID": 4835, + "TargetStructureID": 460, + "Label": "4835-460 via Conventional from 18034 -> 14442", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18034, + "TargetID": 14442, + "Directional": true + } + ] + }, + { + "ID": 8046, + "SourceStructureID": 4835, + "TargetStructureID": 463, + "Label": "4835-463 via Conventional from 74144 -> 74143, 74149 -> 74148, 74151 -> 74150, 74176 -> 74175", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74144, + "TargetID": 74143, + "Directional": true + }, + { + "SourceID": 74149, + "TargetID": 74148, + "Directional": true + }, + { + "SourceID": 74151, + "TargetID": 74150, + "Directional": true + }, + { + "SourceID": 74176, + "TargetID": 74175, + "Directional": true + } + ] + }, + { + "ID": 8047, + "SourceStructureID": 4835, + "TargetStructureID": 9787, + "Label": "4835-9787 via Conventional from 12042 -> 12045, 12043 -> 12044, 12060 -> 9788, 18038 -> 18037, 18650 -> 12066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12042, + "TargetID": 12045, + "Directional": true + }, + { + "SourceID": 12043, + "TargetID": 12044, + "Directional": true + }, + { + "SourceID": 12060, + "TargetID": 9788, + "Directional": true + }, + { + "SourceID": 18038, + "TargetID": 18037, + "Directional": true + }, + { + "SourceID": 18650, + "TargetID": 12066, + "Directional": true + } + ] + }, + { + "ID": 8048, + "SourceStructureID": 4835, + "TargetStructureID": 131516, + "Label": "4835-131516 via Conventional from 18043 -> 131523", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18043, + "TargetID": 131523, + "Directional": true + } + ] + }, + { + "ID": 8049, + "SourceStructureID": 4849, + "TargetStructureID": 115, + "Label": "4849-115 via Conventional from 42566 -> 10796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42566, + "TargetID": 10796, + "Directional": true + } + ] + }, + { + "ID": 8050, + "SourceStructureID": 4849, + "TargetStructureID": 115, + "Label": "4849-115 via Ribbon Synapse from 40563 -> 10794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40563, + "TargetID": 10794, + "Directional": true + } + ] + }, + { + "ID": 8051, + "SourceStructureID": 4849, + "TargetStructureID": 3865, + "Label": "4849-3865 via Ribbon Synapse from 132102 -> 132098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132102, + "TargetID": 132098, + "Directional": true + } + ] + }, + { + "ID": 8052, + "SourceStructureID": 4849, + "TargetStructureID": 5372, + "Label": "4849-5372 via Ribbon Synapse from 26120 -> 26115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26120, + "TargetID": 26115, + "Directional": true + } + ] + }, + { + "ID": 8053, + "SourceStructureID": 4849, + "TargetStructureID": 8575, + "Label": "4849-8575 via BC Conventional Synapse from 26121 -> 62282, 62281 -> 62280", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26121, + "TargetID": 62282, + "Directional": true + }, + { + "SourceID": 62281, + "TargetID": 62280, + "Directional": true + } + ] + }, + { + "ID": 8054, + "SourceStructureID": 4850, + "TargetStructureID": 294, + "Label": "4850-294 via Conventional from 22532 -> 22534, 22533 -> 22535, 22537 -> 22536, 22538 -> 22539", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22532, + "TargetID": 22534, + "Directional": true + }, + { + "SourceID": 22533, + "TargetID": 22535, + "Directional": true + }, + { + "SourceID": 22537, + "TargetID": 22536, + "Directional": true + }, + { + "SourceID": 22538, + "TargetID": 22539, + "Directional": true + } + ] + }, + { + "ID": 8055, + "SourceStructureID": 4850, + "TargetStructureID": 369, + "Label": "4850-369 via Conventional from 83682 -> 29554, 83684 -> 83685, 83687 -> 83689, 83688 -> 83690", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83682, + "TargetID": 29554, + "Directional": true + }, + { + "SourceID": 83684, + "TargetID": 83685, + "Directional": true + }, + { + "SourceID": 83687, + "TargetID": 83689, + "Directional": true + }, + { + "SourceID": 83688, + "TargetID": 83690, + "Directional": true + } + ] + }, + { + "ID": 8056, + "SourceStructureID": 4850, + "TargetStructureID": 516, + "Label": "4850-516 via Conventional from 14209 -> 6508, 14210 -> 14211", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14209, + "TargetID": 6508, + "Directional": true + }, + { + "SourceID": 14210, + "TargetID": 14211, + "Directional": true + } + ] + }, + { + "ID": 8057, + "SourceStructureID": 4850, + "TargetStructureID": 517, + "Label": "4850-517 via Conventional from 14200 -> 14168, 14201 -> 14164, 14205 -> 14164", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14200, + "TargetID": 14168, + "Directional": true + }, + { + "SourceID": 14201, + "TargetID": 14164, + "Directional": true + }, + { + "SourceID": 14205, + "TargetID": 14164, + "Directional": true + } + ] + }, + { + "ID": 8058, + "SourceStructureID": 4850, + "TargetStructureID": 5563, + "Label": "4850-5563 via Conventional from 14303 -> 14304, 14306 -> 14307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14303, + "TargetID": 14304, + "Directional": true + }, + { + "SourceID": 14306, + "TargetID": 14307, + "Directional": true + } + ] + }, + { + "ID": 8059, + "SourceStructureID": 4850, + "TargetStructureID": 6169, + "Label": "4850-6169 via Conventional from 14202 -> 14204, 14206 -> 9460", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14202, + "TargetID": 14204, + "Directional": true + }, + { + "SourceID": 14206, + "TargetID": 9460, + "Directional": true + } + ] + }, + { + "ID": 8060, + "SourceStructureID": 4850, + "TargetStructureID": 6618, + "Label": "4850-6618 via Conventional from 30712 -> 30711, 30713 -> 30710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30712, + "TargetID": 30711, + "Directional": true + }, + { + "SourceID": 30713, + "TargetID": 30710, + "Directional": true + } + ] + }, + { + "ID": 8061, + "SourceStructureID": 4850, + "TargetStructureID": 7054, + "Label": "4850-7054 via Conventional from 19465 -> 19466, 19469 -> 19472, 97847 -> 97848, 159559 -> 159558", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 19465, + "TargetID": 19466, + "Directional": true + }, + { + "SourceID": 19469, + "TargetID": 19472, + "Directional": true + }, + { + "SourceID": 97847, + "TargetID": 97848, + "Directional": true + }, + { + "SourceID": 159559, + "TargetID": 159558, + "Directional": true + } + ] + }, + { + "ID": 8062, + "SourceStructureID": 4850, + "TargetStructureID": 9693, + "Label": "4850-9693 via Conventional from 15389 -> 15390, 15392 -> 15076", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15389, + "TargetID": 15390, + "Directional": true + }, + { + "SourceID": 15392, + "TargetID": 15076, + "Directional": true + } + ] + }, + { + "ID": 8063, + "SourceStructureID": 4850, + "TargetStructureID": 10897, + "Label": "4850-10897 via Conventional from 22548 -> 13833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22548, + "TargetID": 13833, + "Directional": true + } + ] + }, + { + "ID": 8064, + "SourceStructureID": 4850, + "TargetStructureID": 10931, + "Label": "4850-10931 via Conventional from 14213 -> 14214, 14222 -> 14224, 14223 -> 14225, 14231 -> 14232", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14213, + "TargetID": 14214, + "Directional": true + }, + { + "SourceID": 14222, + "TargetID": 14224, + "Directional": true + }, + { + "SourceID": 14223, + "TargetID": 14225, + "Directional": true + }, + { + "SourceID": 14231, + "TargetID": 14232, + "Directional": true + } + ] + }, + { + "ID": 8065, + "SourceStructureID": 4850, + "TargetStructureID": 11033, + "Label": "4850-11033 via Conventional from 33898 -> 33901, 33899 -> 33904, 33900 -> 33902", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33898, + "TargetID": 33901, + "Directional": true + }, + { + "SourceID": 33899, + "TargetID": 33904, + "Directional": true + }, + { + "SourceID": 33900, + "TargetID": 33902, + "Directional": true + } + ] + }, + { + "ID": 8066, + "SourceStructureID": 4850, + "TargetStructureID": 11172, + "Label": "4850-11172 via Conventional from 22549 -> 22550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22549, + "TargetID": 22550, + "Directional": true + } + ] + }, + { + "ID": 8067, + "SourceStructureID": 4876, + "TargetStructureID": 597, + "Label": "4876-597 via Ribbon Synapse from 60472 -> 60470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60472, + "TargetID": 60470, + "Directional": true + } + ] + }, + { + "ID": 8068, + "SourceStructureID": 4876, + "TargetStructureID": 608, + "Label": "4876-608 via Ribbon Synapse from 131361 -> 148297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131361, + "TargetID": 148297, + "Directional": true + } + ] + }, + { + "ID": 8069, + "SourceStructureID": 4876, + "TargetStructureID": 4876, + "Label": "4876-4876 via Ribbon Synapse from 131361 -> 44420", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131361, + "TargetID": 44420, + "Directional": true + } + ] + }, + { + "ID": 8070, + "SourceStructureID": 4876, + "TargetStructureID": 5441, + "Label": "4876-5441 via Ribbon Synapse from 91462 -> 91452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91462, + "TargetID": 91452, + "Directional": true + } + ] + }, + { + "ID": 8071, + "SourceStructureID": 4876, + "TargetStructureID": 6857, + "Label": "4876-6857 via Ribbon Synapse from 18997 -> 18899, 19000 -> 19001, 19002 -> 7519, 19004 -> 19005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18997, + "TargetID": 18899, + "Directional": true + }, + { + "SourceID": 19000, + "TargetID": 19001, + "Directional": true + }, + { + "SourceID": 19002, + "TargetID": 7519, + "Directional": true + }, + { + "SourceID": 19004, + "TargetID": 19005, + "Directional": true + } + ] + }, + { + "ID": 8072, + "SourceStructureID": 4876, + "TargetStructureID": 7147, + "Label": "4876-7147 via Ribbon Synapse from 19114 -> 52243, 114062 -> 114061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19114, + "TargetID": 52243, + "Directional": true + }, + { + "SourceID": 114062, + "TargetID": 114061, + "Directional": true + } + ] + }, + { + "ID": 8073, + "SourceStructureID": 4877, + "TargetStructureID": 5435, + "Label": "4877-5435 via Ribbon Synapse from 24357 -> 24356", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24357, + "TargetID": 24356, + "Directional": true + } + ] + }, + { + "ID": 8074, + "SourceStructureID": 4877, + "TargetStructureID": 5491, + "Label": "4877-5491 via BC Conventional Synapse from 54709 -> 54710", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54709, + "TargetID": 54710, + "Directional": true + } + ] + }, + { + "ID": 8075, + "SourceStructureID": 4877, + "TargetStructureID": 5491, + "Label": "4877-5491 via Ribbon Synapse from 126824 -> 135623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126824, + "TargetID": 135623, + "Directional": true + } + ] + }, + { + "ID": 8076, + "SourceStructureID": 4877, + "TargetStructureID": 9769, + "Label": "4877-9769 via Ribbon Synapse from 23964 -> 23959, 54702 -> 54703, 91384 -> 147815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23964, + "TargetID": 23959, + "Directional": true + }, + { + "SourceID": 54702, + "TargetID": 54703, + "Directional": true + }, + { + "SourceID": 91384, + "TargetID": 147815, + "Directional": true + } + ] + }, + { + "ID": 8077, + "SourceStructureID": 4877, + "TargetStructureID": 15796, + "Label": "4877-15796 via BC Conventional Synapse from 46582 -> 46583", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46582, + "TargetID": 46583, + "Directional": true + } + ] + }, + { + "ID": 8078, + "SourceStructureID": 4877, + "TargetStructureID": 15796, + "Label": "4877-15796 via Ribbon Synapse from 20272 -> 20268, 46441 -> 46442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20272, + "TargetID": 20268, + "Directional": true + }, + { + "SourceID": 46441, + "TargetID": 46442, + "Directional": true + } + ] + }, + { + "ID": 8079, + "SourceStructureID": 4877, + "TargetStructureID": 35212, + "Label": "4877-35212 via Ribbon Synapse from 33385 -> 35217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33385, + "TargetID": 35217, + "Directional": true + } + ] + }, + { + "ID": 8080, + "SourceStructureID": 4877, + "TargetStructureID": 38307, + "Label": "4877-38307 via Ribbon Synapse from 33305 -> 38334", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33305, + "TargetID": 38334, + "Directional": true + } + ] + }, + { + "ID": 8081, + "SourceStructureID": 4877, + "TargetStructureID": 43716, + "Label": "4877-43716 via BC Conventional Synapse from 123571 -> 123570", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123571, + "TargetID": 123570, + "Directional": true + } + ] + }, + { + "ID": 8082, + "SourceStructureID": 4877, + "TargetStructureID": 43716, + "Label": "4877-43716 via Ribbon Synapse from 54702 -> 54704, 54707 -> 54708, 54716 -> 54715, 56595 -> 123569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54702, + "TargetID": 54704, + "Directional": true + }, + { + "SourceID": 54707, + "TargetID": 54708, + "Directional": true + }, + { + "SourceID": 54716, + "TargetID": 54715, + "Directional": true + }, + { + "SourceID": 56595, + "TargetID": 123569, + "Directional": true + } + ] + }, + { + "ID": 8083, + "SourceStructureID": 4877, + "TargetStructureID": 44346, + "Label": "4877-44346 via Ribbon Synapse from 33392 -> 44455, 44453 -> 44452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33392, + "TargetID": 44455, + "Directional": true + }, + { + "SourceID": 44453, + "TargetID": 44452, + "Directional": true + } + ] + }, + { + "ID": 8084, + "SourceStructureID": 4877, + "TargetStructureID": 54778, + "Label": "4877-54778 via BC Conventional Synapse from 126850 -> 126851", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126850, + "TargetID": 126851, + "Directional": true + } + ] + }, + { + "ID": 8085, + "SourceStructureID": 4877, + "TargetStructureID": 54818, + "Label": "4877-54818 via Ribbon Synapse from 54821 -> 54820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54821, + "TargetID": 54820, + "Directional": true + } + ] + }, + { + "ID": 8086, + "SourceStructureID": 4877, + "TargetStructureID": 58592, + "Label": "4877-58592 via Ribbon Synapse from 33307 -> 58660", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33307, + "TargetID": 58660, + "Directional": true + } + ] + }, + { + "ID": 8087, + "SourceStructureID": 4877, + "TargetStructureID": 58642, + "Label": "4877-58642 via Ribbon Synapse from 33385 -> 58647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33385, + "TargetID": 58647, + "Directional": true + } + ] + }, + { + "ID": 8088, + "SourceStructureID": 4877, + "TargetStructureID": 72299, + "Label": "4877-72299 via Ribbon Synapse from 33384 -> 82117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33384, + "TargetID": 82117, + "Directional": true + } + ] + }, + { + "ID": 8089, + "SourceStructureID": 4877, + "TargetStructureID": 82071, + "Label": "4877-82071 via Ribbon Synapse from 33311 -> 82503, 33312 -> 82504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33311, + "TargetID": 82503, + "Directional": true + }, + { + "SourceID": 33312, + "TargetID": 82504, + "Directional": true + } + ] + }, + { + "ID": 8090, + "SourceStructureID": 4877, + "TargetStructureID": 126582, + "Label": "4877-126582 via Ribbon Synapse from 126581 -> 126583", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126581, + "TargetID": 126583, + "Directional": true + } + ] + }, + { + "ID": 8091, + "SourceStructureID": 4877, + "TargetStructureID": 126763, + "Label": "4877-126763 via BC Conventional Synapse from 126762 -> 126764", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126762, + "TargetID": 126764, + "Directional": true + } + ] + }, + { + "ID": 8092, + "SourceStructureID": 4877, + "TargetStructureID": 127764, + "Label": "4877-127764 via Ribbon Synapse from 62755 -> 129273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62755, + "TargetID": 129273, + "Directional": true + } + ] + }, + { + "ID": 8093, + "SourceStructureID": 4877, + "TargetStructureID": 136432, + "Label": "4877-136432 via Ribbon Synapse from 133995 -> 136534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133995, + "TargetID": 136534, + "Directional": true + } + ] + }, + { + "ID": 8094, + "SourceStructureID": 4890, + "TargetStructureID": 397, + "Label": "4890-397 via Conventional from 71055 -> 71056", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71055, + "TargetID": 71056, + "Directional": true + } + ] + }, + { + "ID": 8095, + "SourceStructureID": 4890, + "TargetStructureID": 5514, + "Label": "4890-5514 via Conventional from 64870 -> 50662, 64871 -> 50701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64870, + "TargetID": 50662, + "Directional": true + }, + { + "SourceID": 64871, + "TargetID": 50701, + "Directional": true + } + ] + }, + { + "ID": 8096, + "SourceStructureID": 4890, + "TargetStructureID": 5530, + "Label": "4890-5530 via Conventional from 82064 -> 82065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82064, + "TargetID": 82065, + "Directional": true + } + ] + }, + { + "ID": 8097, + "SourceStructureID": 4890, + "TargetStructureID": 7024, + "Label": "4890-7024 via Conventional from 64879 -> 64880", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64879, + "TargetID": 64880, + "Directional": true + } + ] + }, + { + "ID": 8098, + "SourceStructureID": 4890, + "TargetStructureID": 50449, + "Label": "4890-50449 via Conventional from 64875 -> 50599, 64877 -> 50658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64875, + "TargetID": 50599, + "Directional": true + }, + { + "SourceID": 64877, + "TargetID": 50658, + "Directional": true + } + ] + }, + { + "ID": 8099, + "SourceStructureID": 4890, + "TargetStructureID": 62777, + "Label": "4890-62777 via Conventional from 64884 -> 64885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64884, + "TargetID": 64885, + "Directional": true + } + ] + }, + { + "ID": 8100, + "SourceStructureID": 4890, + "TargetStructureID": 64887, + "Label": "4890-64887 via Conventional from 64886 -> 64889", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64886, + "TargetID": 64889, + "Directional": true + } + ] + }, + { + "ID": 8101, + "SourceStructureID": 4890, + "TargetStructureID": 64923, + "Label": "4890-64923 via Conventional from 64922 -> 64924", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64922, + "TargetID": 64924, + "Directional": true + } + ] + }, + { + "ID": 8102, + "SourceStructureID": 4890, + "TargetStructureID": 70924, + "Label": "4890-70924 via Conventional from 20525 -> 70937, 70940 -> 70939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20525, + "TargetID": 70937, + "Directional": true + }, + { + "SourceID": 70940, + "TargetID": 70939, + "Directional": true + } + ] + }, + { + "ID": 8103, + "SourceStructureID": 4941, + "TargetStructureID": 518, + "Label": "4941-518 via Conventional from 5750 -> 3464, 36660 -> 3298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 5750, + "TargetID": 3464, + "Directional": true + }, + { + "SourceID": 36660, + "TargetID": 3298, + "Directional": true + } + ] + }, + { + "ID": 8104, + "SourceStructureID": 4942, + "TargetStructureID": 518, + "Label": "4942-518 via Conventional from 5751 -> 3480, 36658 -> 3301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 5751, + "TargetID": 3480, + "Directional": true + }, + { + "SourceID": 36658, + "TargetID": 3301, + "Directional": true + } + ] + }, + { + "ID": 8105, + "SourceStructureID": 4943, + "TargetStructureID": 469, + "Label": "4943-469 via Conventional from 13426 -> 4664, 13429 -> 4673", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 13426, + "TargetID": 4664, + "Directional": true + }, + { + "SourceID": 13429, + "TargetID": 4673, + "Directional": true + } + ] + }, + { + "ID": 8106, + "SourceStructureID": 4943, + "TargetStructureID": 514, + "Label": "4943-514 via Conventional from 13433 -> 14957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 13433, + "TargetID": 14957, + "Directional": true + } + ] + }, + { + "ID": 8107, + "SourceStructureID": 4943, + "TargetStructureID": 517, + "Label": "4943-517 via Conventional from 42786 -> 40978", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42786, + "TargetID": 40978, + "Directional": true + } + ] + }, + { + "ID": 8108, + "SourceStructureID": 4943, + "TargetStructureID": 518, + "Label": "4943-518 via Conventional from 8501 -> 3467", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8501, + "TargetID": 3467, + "Directional": true + } + ] + }, + { + "ID": 8109, + "SourceStructureID": 4943, + "TargetStructureID": 3881, + "Label": "4943-3881 via Conventional from 4969 -> 3883", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 4969, + "TargetID": 3883, + "Directional": true + } + ] + }, + { + "ID": 8110, + "SourceStructureID": 4943, + "TargetStructureID": 5923, + "Label": "4943-5923 via Conventional from 4996 -> 8690", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 4996, + "TargetID": 8690, + "Directional": true + } + ] + }, + { + "ID": 8111, + "SourceStructureID": 4943, + "TargetStructureID": 8586, + "Label": "4943-8586 via Conventional from 4967 -> 8665", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 4967, + "TargetID": 8665, + "Directional": true + } + ] + }, + { + "ID": 8112, + "SourceStructureID": 4943, + "TargetStructureID": 10815, + "Label": "4943-10815 via Conventional from 43370 -> 43371, 43374 -> 43375, 43378 -> 43379", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43370, + "TargetID": 43371, + "Directional": true + }, + { + "SourceID": 43374, + "TargetID": 43375, + "Directional": true + }, + { + "SourceID": 43378, + "TargetID": 43379, + "Directional": true + } + ] + }, + { + "ID": 8113, + "SourceStructureID": 4943, + "TargetStructureID": 10826, + "Label": "4943-10826 via Conventional from 43251 -> 43252, 43253 -> 43254", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43251, + "TargetID": 43252, + "Directional": true + }, + { + "SourceID": 43253, + "TargetID": 43254, + "Directional": true + } + ] + }, + { + "ID": 8114, + "SourceStructureID": 4943, + "TargetStructureID": 10957, + "Label": "4943-10957 via Conventional from 83508 -> 83509, 83518 -> 83521, 83519 -> 83522, 83520 -> 83523, 83524 -> 83526, 83525 -> 83527", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83508, + "TargetID": 83509, + "Directional": true + }, + { + "SourceID": 83518, + "TargetID": 83521, + "Directional": true + }, + { + "SourceID": 83519, + "TargetID": 83522, + "Directional": true + }, + { + "SourceID": 83520, + "TargetID": 83523, + "Directional": true + }, + { + "SourceID": 83524, + "TargetID": 83526, + "Directional": true + }, + { + "SourceID": 83525, + "TargetID": 83527, + "Directional": true + } + ] + }, + { + "ID": 8115, + "SourceStructureID": 4943, + "TargetStructureID": 11031, + "Label": "4943-11031 via Conventional from 40982 -> 40983", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40982, + "TargetID": 40983, + "Directional": true + } + ] + }, + { + "ID": 8116, + "SourceStructureID": 4943, + "TargetStructureID": 15969, + "Label": "4943-15969 via Conventional from 43275 -> 43276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43275, + "TargetID": 43276, + "Directional": true + } + ] + }, + { + "ID": 8117, + "SourceStructureID": 5006, + "TargetStructureID": 518, + "Label": "5006-518 via Conventional from 5009 -> 3300, 5010 -> 3494, 9642 -> 9641, 36656 -> 3461", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 5009, + "TargetID": 3300, + "Directional": true + }, + { + "SourceID": 5010, + "TargetID": 3494, + "Directional": true + }, + { + "SourceID": 9642, + "TargetID": 9641, + "Directional": true + }, + { + "SourceID": 36656, + "TargetID": 3461, + "Directional": true + } + ] + }, + { + "ID": 8118, + "SourceStructureID": 5017, + "TargetStructureID": 308, + "Label": "5017-308 via Ribbon Synapse from 42553 -> 86720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42553, + "TargetID": 86720, + "Directional": true + } + ] + }, + { + "ID": 8119, + "SourceStructureID": 5017, + "TargetStructureID": 514, + "Label": "5017-514 via Ribbon Synapse from 5021 -> 5014, 5040 -> 2554, 13821 -> 13816, 13829 -> 13828, 16152 -> 16151, 17048 -> 17049, 17066 -> 17083, 17068 -> 17938, 25581 -> 159698, 133284 -> 133285, 158796 -> 159683, 159711 -> 17938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5021, + "TargetID": 5014, + "Directional": true + }, + { + "SourceID": 5040, + "TargetID": 2554, + "Directional": true + }, + { + "SourceID": 13821, + "TargetID": 13816, + "Directional": true + }, + { + "SourceID": 13829, + "TargetID": 13828, + "Directional": true + }, + { + "SourceID": 16152, + "TargetID": 16151, + "Directional": true + }, + { + "SourceID": 17048, + "TargetID": 17049, + "Directional": true + }, + { + "SourceID": 17066, + "TargetID": 17083, + "Directional": true + }, + { + "SourceID": 17068, + "TargetID": 17938, + "Directional": true + }, + { + "SourceID": 25581, + "TargetID": 159698, + "Directional": true + }, + { + "SourceID": 133284, + "TargetID": 133285, + "Directional": true + }, + { + "SourceID": 158796, + "TargetID": 159683, + "Directional": true + }, + { + "SourceID": 159711, + "TargetID": 17938, + "Directional": true + } + ] + }, + { + "ID": 8120, + "SourceStructureID": 5017, + "TargetStructureID": 2610, + "Label": "5017-2610 via Ribbon Synapse from 13818 -> 13817, 17054 -> 3616, 17065 -> 17064, 17099 -> 17100, 17104 -> 13788, 17974 -> 17973, 17987 -> 17985, 17988 -> 17986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13818, + "TargetID": 13817, + "Directional": true + }, + { + "SourceID": 17054, + "TargetID": 3616, + "Directional": true + }, + { + "SourceID": 17065, + "TargetID": 17064, + "Directional": true + }, + { + "SourceID": 17099, + "TargetID": 17100, + "Directional": true + }, + { + "SourceID": 17104, + "TargetID": 13788, + "Directional": true + }, + { + "SourceID": 17974, + "TargetID": 17973, + "Directional": true + }, + { + "SourceID": 17987, + "TargetID": 17985, + "Directional": true + }, + { + "SourceID": 17988, + "TargetID": 17986, + "Directional": true + } + ] + }, + { + "ID": 8121, + "SourceStructureID": 5017, + "TargetStructureID": 3679, + "Label": "5017-3679 via Ribbon Synapse from 5027 -> 66141, 5036 -> 159652, 17056 -> 3832, 17060 -> 3830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5027, + "TargetID": 66141, + "Directional": true + }, + { + "SourceID": 5036, + "TargetID": 159652, + "Directional": true + }, + { + "SourceID": 17056, + "TargetID": 3832, + "Directional": true + }, + { + "SourceID": 17060, + "TargetID": 3830, + "Directional": true + } + ] + }, + { + "ID": 8122, + "SourceStructureID": 5017, + "TargetStructureID": 8990, + "Label": "5017-8990 via Ribbon Synapse from 5021 -> 158795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5021, + "TargetID": 158795, + "Directional": true + } + ] + }, + { + "ID": 8123, + "SourceStructureID": 5017, + "TargetStructureID": 9260, + "Label": "5017-9260 via Ribbon Synapse from 5035 -> 96772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5035, + "TargetID": 96772, + "Directional": true + } + ] + }, + { + "ID": 8124, + "SourceStructureID": 5017, + "TargetStructureID": 25575, + "Label": "5017-25575 via Ribbon Synapse from 25581 -> 25580, 25583 -> 25582, 159697 -> 25580", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25581, + "TargetID": 25580, + "Directional": true + }, + { + "SourceID": 25583, + "TargetID": 25582, + "Directional": true + }, + { + "SourceID": 159697, + "TargetID": 25580, + "Directional": true + } + ] + }, + { + "ID": 8125, + "SourceStructureID": 5017, + "TargetStructureID": 25669, + "Label": "5017-25669 via Ribbon Synapse from 25687 -> 25686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25687, + "TargetID": 25686, + "Directional": true + } + ] + }, + { + "ID": 8126, + "SourceStructureID": 5017, + "TargetStructureID": 39530, + "Label": "5017-39530 via Ribbon Synapse from 17054 -> 39555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17054, + "TargetID": 39555, + "Directional": true + } + ] + }, + { + "ID": 8127, + "SourceStructureID": 5017, + "TargetStructureID": 61117, + "Label": "5017-61117 via Ribbon Synapse from 5041 -> 61120, 5044 -> 159684", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5041, + "TargetID": 61120, + "Directional": true + }, + { + "SourceID": 5044, + "TargetID": 159684, + "Directional": true + } + ] + }, + { + "ID": 8128, + "SourceStructureID": 5017, + "TargetStructureID": 61214, + "Label": "5017-61214 via Ribbon Synapse from 17066 -> 61241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17066, + "TargetID": 61241, + "Directional": true + } + ] + }, + { + "ID": 8129, + "SourceStructureID": 5017, + "TargetStructureID": 61231, + "Label": "5017-61231 via Ribbon Synapse from 17067 -> 61237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17067, + "TargetID": 61237, + "Directional": true + } + ] + }, + { + "ID": 8130, + "SourceStructureID": 5017, + "TargetStructureID": 66815, + "Label": "5017-66815 via Ribbon Synapse from 5027 -> 159669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5027, + "TargetID": 159669, + "Directional": true + } + ] + }, + { + "ID": 8131, + "SourceStructureID": 5017, + "TargetStructureID": 159660, + "Label": "5017-159660 via Ribbon Synapse from 5026 -> 159662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 5026, + "TargetID": 159662, + "Directional": true + } + ] + }, + { + "ID": 8132, + "SourceStructureID": 5017, + "TargetStructureID": 159703, + "Label": "5017-159703 via Ribbon Synapse from 17056 -> 159705", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17056, + "TargetID": 159705, + "Directional": true + } + ] + }, + { + "ID": 8133, + "SourceStructureID": 5017, + "TargetStructureID": 159721, + "Label": "5017-159721 via Ribbon Synapse from 17988 -> 159722", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17988, + "TargetID": 159722, + "Directional": true + } + ] + }, + { + "ID": 8134, + "SourceStructureID": 5017, + "TargetStructureID": 159736, + "Label": "5017-159736 via Ribbon Synapse from 17989 -> 159737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17989, + "TargetID": 159737, + "Directional": true + } + ] + }, + { + "ID": 8135, + "SourceStructureID": 5017, + "TargetStructureID": 159740, + "Label": "5017-159740 via Ribbon Synapse from 17104 -> 159741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17104, + "TargetID": 159741, + "Directional": true + } + ] + }, + { + "ID": 8136, + "SourceStructureID": 5057, + "TargetStructureID": 397, + "Label": "5057-397 via Conventional from 45641 -> 122673", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45641, + "TargetID": 122673, + "Directional": true + } + ] + }, + { + "ID": 8137, + "SourceStructureID": 5057, + "TargetStructureID": 606, + "Label": "5057-606 via Conventional from 10225 -> 45602", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10225, + "TargetID": 45602, + "Directional": true + } + ] + }, + { + "ID": 8138, + "SourceStructureID": 5057, + "TargetStructureID": 6912, + "Label": "5057-6912 via Conventional from 10224 -> 6923", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10224, + "TargetID": 6923, + "Directional": true + } + ] + }, + { + "ID": 8139, + "SourceStructureID": 5057, + "TargetStructureID": 7594, + "Label": "5057-7594 via Conventional from 45654 -> 45655", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45654, + "TargetID": 45655, + "Directional": true + } + ] + }, + { + "ID": 8140, + "SourceStructureID": 5107, + "TargetStructureID": 5107, + "Label": "5107-5107 via Conventional from 148322 -> 148320", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148322, + "TargetID": 148320, + "Directional": true + } + ] + }, + { + "ID": 8141, + "SourceStructureID": 5117, + "TargetStructureID": 483, + "Label": "5117-483 via Cistern Pre from 28781 -> 28784", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 28781, + "TargetID": 28784, + "Directional": true + } + ] + }, + { + "ID": 8142, + "SourceStructureID": 5117, + "TargetStructureID": 61864, + "Label": "5117-61864 via Conventional from 69342 -> 69343", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69342, + "TargetID": 69343, + "Directional": true + } + ] + }, + { + "ID": 8143, + "SourceStructureID": 5278, + "TargetStructureID": 3865, + "Label": "5278-3865 via Ribbon Synapse from 20077 -> 99726, 20157 -> 99822, 95952 -> 36111, 104833 -> 104840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20077, + "TargetID": 99726, + "Directional": true + }, + { + "SourceID": 20157, + "TargetID": 99822, + "Directional": true + }, + { + "SourceID": 95952, + "TargetID": 36111, + "Directional": true + }, + { + "SourceID": 104833, + "TargetID": 104840, + "Directional": true + } + ] + }, + { + "ID": 8144, + "SourceStructureID": 5278, + "TargetStructureID": 5107, + "Label": "5278-5107 via Ribbon Synapse from 11208 -> 104215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11208, + "TargetID": 104215, + "Directional": true + } + ] + }, + { + "ID": 8145, + "SourceStructureID": 5278, + "TargetStructureID": 6406, + "Label": "5278-6406 via Ribbon Synapse from 20091 -> 20093", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20091, + "TargetID": 20093, + "Directional": true + } + ] + }, + { + "ID": 8146, + "SourceStructureID": 5278, + "TargetStructureID": 8575, + "Label": "5278-8575 via BC Conventional Synapse from 62069 -> 62068, 93411 -> 93412, 104822 -> 62259", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62069, + "TargetID": 62068, + "Directional": true + }, + { + "SourceID": 93411, + "TargetID": 93412, + "Directional": true + }, + { + "SourceID": 104822, + "TargetID": 62259, + "Directional": true + } + ] + }, + { + "ID": 8147, + "SourceStructureID": 5278, + "TargetStructureID": 8579, + "Label": "5278-8579 via Ribbon Synapse from 92309 -> 114300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92309, + "TargetID": 114300, + "Directional": true + } + ] + }, + { + "ID": 8148, + "SourceStructureID": 5278, + "TargetStructureID": 15796, + "Label": "5278-15796 via BC Conventional Synapse from 147262 -> 147261, 147320 -> 147319", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147262, + "TargetID": 147261, + "Directional": true + }, + { + "SourceID": 147320, + "TargetID": 147319, + "Directional": true + } + ] + }, + { + "ID": 8149, + "SourceStructureID": 5278, + "TargetStructureID": 16073, + "Label": "5278-16073 via BC Conventional Synapse from 19885 -> 19881, 92023 -> 19874", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19885, + "TargetID": 19881, + "Directional": true + }, + { + "SourceID": 92023, + "TargetID": 19874, + "Directional": true + } + ] + }, + { + "ID": 8150, + "SourceStructureID": 5278, + "TargetStructureID": 16073, + "Label": "5278-16073 via Ribbon Synapse from 20017 -> 20018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20017, + "TargetID": 20018, + "Directional": true + } + ] + }, + { + "ID": 8151, + "SourceStructureID": 5278, + "TargetStructureID": 18693, + "Label": "5278-18693 via Ribbon Synapse from 8980 -> 100412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8980, + "TargetID": 100412, + "Directional": true + } + ] + }, + { + "ID": 8152, + "SourceStructureID": 5278, + "TargetStructureID": 27304, + "Label": "5278-27304 via Ribbon Synapse from 20069 -> 27306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20069, + "TargetID": 27306, + "Directional": true + } + ] + }, + { + "ID": 8153, + "SourceStructureID": 5278, + "TargetStructureID": 32035, + "Label": "5278-32035 via Ribbon Synapse from 11202 -> 32044", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11202, + "TargetID": 32044, + "Directional": true + } + ] + }, + { + "ID": 8154, + "SourceStructureID": 5278, + "TargetStructureID": 34336, + "Label": "5278-34336 via BC Conventional Synapse from 147290 -> 147289", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147290, + "TargetID": 147289, + "Directional": true + } + ] + }, + { + "ID": 8155, + "SourceStructureID": 5278, + "TargetStructureID": 35894, + "Label": "5278-35894 via Ribbon Synapse from 11191 -> 104083, 11199 -> 104177", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11191, + "TargetID": 104083, + "Directional": true + }, + { + "SourceID": 11199, + "TargetID": 104177, + "Directional": true + } + ] + }, + { + "ID": 8156, + "SourceStructureID": 5278, + "TargetStructureID": 64774, + "Label": "5278-64774 via BC Conventional Synapse from 147251 -> 147252", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147251, + "TargetID": 147252, + "Directional": true + } + ] + }, + { + "ID": 8157, + "SourceStructureID": 5278, + "TargetStructureID": 65284, + "Label": "5278-65284 via Ribbon Synapse from 20098 -> 99611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20098, + "TargetID": 99611, + "Directional": true + } + ] + }, + { + "ID": 8158, + "SourceStructureID": 5278, + "TargetStructureID": 67182, + "Label": "5278-67182 via Ribbon Synapse from 8984 -> 83311", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8984, + "TargetID": 83311, + "Directional": true + } + ] + }, + { + "ID": 8159, + "SourceStructureID": 5278, + "TargetStructureID": 68539, + "Label": "5278-68539 via Ribbon Synapse from 20126 -> 104034, 104193 -> 104196", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20126, + "TargetID": 104034, + "Directional": true + }, + { + "SourceID": 104193, + "TargetID": 104196, + "Directional": true + } + ] + }, + { + "ID": 8160, + "SourceStructureID": 5278, + "TargetStructureID": 73390, + "Label": "5278-73390 via Ribbon Synapse from 20126 -> 104035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20126, + "TargetID": 104035, + "Directional": true + } + ] + }, + { + "ID": 8161, + "SourceStructureID": 5278, + "TargetStructureID": 73593, + "Label": "5278-73593 via Ribbon Synapse from 104193 -> 104195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104193, + "TargetID": 104195, + "Directional": true + } + ] + }, + { + "ID": 8162, + "SourceStructureID": 5278, + "TargetStructureID": 85955, + "Label": "5278-85955 via Ribbon Synapse from 104241 -> 104376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104241, + "TargetID": 104376, + "Directional": true + } + ] + }, + { + "ID": 8163, + "SourceStructureID": 5278, + "TargetStructureID": 86042, + "Label": "5278-86042 via Ribbon Synapse from 114527 -> 89089", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114527, + "TargetID": 89089, + "Directional": true + } + ] + }, + { + "ID": 8164, + "SourceStructureID": 5278, + "TargetStructureID": 92169, + "Label": "5278-92169 via Ribbon Synapse from 104833 -> 104841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104833, + "TargetID": 104841, + "Directional": true + } + ] + }, + { + "ID": 8165, + "SourceStructureID": 5278, + "TargetStructureID": 93392, + "Label": "5278-93392 via Ribbon Synapse from 114502 -> 114504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114502, + "TargetID": 114504, + "Directional": true + } + ] + }, + { + "ID": 8166, + "SourceStructureID": 5278, + "TargetStructureID": 93396, + "Label": "5278-93396 via Ribbon Synapse from 114502 -> 114503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114502, + "TargetID": 114503, + "Directional": true + } + ] + }, + { + "ID": 8167, + "SourceStructureID": 5278, + "TargetStructureID": 93399, + "Label": "5278-93399 via Unknown from 114501 -> 93400", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 114501, + "TargetID": 93400, + "Directional": true + } + ] + }, + { + "ID": 8168, + "SourceStructureID": 5278, + "TargetStructureID": 93401, + "Label": "5278-93401 via Unknown from 114501 -> 93402", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 114501, + "TargetID": 93402, + "Directional": true + } + ] + }, + { + "ID": 8169, + "SourceStructureID": 5278, + "TargetStructureID": 93407, + "Label": "5278-93407 via BC Conventional Synapse from 93409 -> 93408", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93409, + "TargetID": 93408, + "Directional": true + } + ] + }, + { + "ID": 8170, + "SourceStructureID": 5278, + "TargetStructureID": 93416, + "Label": "5278-93416 via BC Conventional Synapse from 93417 -> 93418", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93417, + "TargetID": 93418, + "Directional": true + } + ] + }, + { + "ID": 8171, + "SourceStructureID": 5278, + "TargetStructureID": 93420, + "Label": "5278-93420 via Ribbon Synapse from 93419 -> 93421", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93419, + "TargetID": 93421, + "Directional": true + } + ] + }, + { + "ID": 8172, + "SourceStructureID": 5278, + "TargetStructureID": 93424, + "Label": "5278-93424 via Ribbon Synapse from 93419 -> 93425", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93419, + "TargetID": 93425, + "Directional": true + } + ] + }, + { + "ID": 8173, + "SourceStructureID": 5278, + "TargetStructureID": 93463, + "Label": "5278-93463 via Ribbon Synapse from 114497 -> 93464, 114499 -> 93464", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114497, + "TargetID": 93464, + "Directional": true + }, + { + "SourceID": 114499, + "TargetID": 93464, + "Directional": true + } + ] + }, + { + "ID": 8174, + "SourceStructureID": 5278, + "TargetStructureID": 97925, + "Label": "5278-97925 via Ribbon Synapse from 18485 -> 97926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18485, + "TargetID": 97926, + "Directional": true + } + ] + }, + { + "ID": 8175, + "SourceStructureID": 5278, + "TargetStructureID": 97927, + "Label": "5278-97927 via BC Conventional Synapse from 147324 -> 147323", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147324, + "TargetID": 147323, + "Directional": true + } + ] + }, + { + "ID": 8176, + "SourceStructureID": 5278, + "TargetStructureID": 97933, + "Label": "5278-97933 via Ribbon Synapse from 20032 -> 97950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20032, + "TargetID": 97950, + "Directional": true + } + ] + }, + { + "ID": 8177, + "SourceStructureID": 5278, + "TargetStructureID": 97936, + "Label": "5278-97936 via Ribbon Synapse from 11224 -> 97937", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11224, + "TargetID": 97937, + "Directional": true + } + ] + }, + { + "ID": 8178, + "SourceStructureID": 5278, + "TargetStructureID": 97944, + "Label": "5278-97944 via BC Conventional Synapse from 97945 -> 97946", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97945, + "TargetID": 97946, + "Directional": true + } + ] + }, + { + "ID": 8179, + "SourceStructureID": 5278, + "TargetStructureID": 98810, + "Label": "5278-98810 via Ribbon Synapse from 92096 -> 98811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92096, + "TargetID": 98811, + "Directional": true + } + ] + }, + { + "ID": 8180, + "SourceStructureID": 5278, + "TargetStructureID": 98812, + "Label": "5278-98812 via Ribbon Synapse from 92096 -> 98813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92096, + "TargetID": 98813, + "Directional": true + } + ] + }, + { + "ID": 8181, + "SourceStructureID": 5278, + "TargetStructureID": 98814, + "Label": "5278-98814 via Ribbon Synapse from 11227 -> 98816, 92096 -> 98815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11227, + "TargetID": 98816, + "Directional": true + }, + { + "SourceID": 92096, + "TargetID": 98815, + "Directional": true + } + ] + }, + { + "ID": 8182, + "SourceStructureID": 5278, + "TargetStructureID": 98818, + "Label": "5278-98818 via Ribbon Synapse from 11227 -> 98819", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11227, + "TargetID": 98819, + "Directional": true + } + ] + }, + { + "ID": 8183, + "SourceStructureID": 5278, + "TargetStructureID": 98823, + "Label": "5278-98823 via Ribbon Synapse from 20035 -> 98825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20035, + "TargetID": 98825, + "Directional": true + } + ] + }, + { + "ID": 8184, + "SourceStructureID": 5278, + "TargetStructureID": 99237, + "Label": "5278-99237 via Ribbon cluster from 92105 -> 99246", + "Type": "Ribbon cluster", + "Directional": true, + "Links": [ + { + "SourceID": 92105, + "TargetID": 99246, + "Directional": true + } + ] + }, + { + "ID": 8185, + "SourceStructureID": 5278, + "TargetStructureID": 99262, + "Label": "5278-99262 via Ribbon Synapse from 133882 -> 133883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133882, + "TargetID": 133883, + "Directional": true + } + ] + }, + { + "ID": 8186, + "SourceStructureID": 5278, + "TargetStructureID": 99268, + "Label": "5278-99268 via Ribbon Synapse from 133882 -> 147325", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133882, + "TargetID": 147325, + "Directional": true + } + ] + }, + { + "ID": 8187, + "SourceStructureID": 5278, + "TargetStructureID": 99288, + "Label": "5278-99288 via Ribbon Synapse from 20048 -> 99289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20048, + "TargetID": 99289, + "Directional": true + } + ] + }, + { + "ID": 8188, + "SourceStructureID": 5278, + "TargetStructureID": 99295, + "Label": "5278-99295 via Ribbon Synapse from 20069 -> 99296", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20069, + "TargetID": 99296, + "Directional": true + } + ] + }, + { + "ID": 8189, + "SourceStructureID": 5278, + "TargetStructureID": 99302, + "Label": "5278-99302 via Ribbon Synapse from 20108 -> 99303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20108, + "TargetID": 99303, + "Directional": true + } + ] + }, + { + "ID": 8190, + "SourceStructureID": 5278, + "TargetStructureID": 99309, + "Label": "5278-99309 via Ribbon Synapse from 20109 -> 99310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20109, + "TargetID": 99310, + "Directional": true + } + ] + }, + { + "ID": 8191, + "SourceStructureID": 5278, + "TargetStructureID": 99311, + "Label": "5278-99311 via Ribbon Synapse from 20109 -> 99312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20109, + "TargetID": 99312, + "Directional": true + } + ] + }, + { + "ID": 8192, + "SourceStructureID": 5278, + "TargetStructureID": 99513, + "Label": "5278-99513 via Ribbon Synapse from 93419 -> 129644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93419, + "TargetID": 129644, + "Directional": true + } + ] + }, + { + "ID": 8193, + "SourceStructureID": 5278, + "TargetStructureID": 99584, + "Label": "5278-99584 via Ribbon Synapse from 20112 -> 99585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20112, + "TargetID": 99585, + "Directional": true + } + ] + }, + { + "ID": 8194, + "SourceStructureID": 5278, + "TargetStructureID": 99586, + "Label": "5278-99586 via Ribbon Synapse from 20112 -> 99588", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20112, + "TargetID": 99588, + "Directional": true + } + ] + }, + { + "ID": 8195, + "SourceStructureID": 5278, + "TargetStructureID": 99600, + "Label": "5278-99600 via Ribbon Synapse from 147327 -> 147328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147327, + "TargetID": 147328, + "Directional": true + } + ] + }, + { + "ID": 8196, + "SourceStructureID": 5278, + "TargetStructureID": 99601, + "Label": "5278-99601 via Ribbon Synapse from 92115 -> 99605", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92115, + "TargetID": 99605, + "Directional": true + } + ] + }, + { + "ID": 8197, + "SourceStructureID": 5278, + "TargetStructureID": 99609, + "Label": "5278-99609 via Ribbon Synapse from 20098 -> 99610", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20098, + "TargetID": 99610, + "Directional": true + } + ] + }, + { + "ID": 8198, + "SourceStructureID": 5278, + "TargetStructureID": 99612, + "Label": "5278-99612 via BC Conventional Synapse from 20072 -> 99613", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20072, + "TargetID": 99613, + "Directional": true + } + ] + }, + { + "ID": 8199, + "SourceStructureID": 5278, + "TargetStructureID": 99728, + "Label": "5278-99728 via Ribbon Synapse from 20077 -> 99729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20077, + "TargetID": 99729, + "Directional": true + } + ] + }, + { + "ID": 8200, + "SourceStructureID": 5278, + "TargetStructureID": 99784, + "Label": "5278-99784 via Ribbon Synapse from 20091 -> 99785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20091, + "TargetID": 99785, + "Directional": true + } + ] + }, + { + "ID": 8201, + "SourceStructureID": 5278, + "TargetStructureID": 99786, + "Label": "5278-99786 via BC Conventional Synapse from 20119 -> 99787", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20119, + "TargetID": 99787, + "Directional": true + } + ] + }, + { + "ID": 8202, + "SourceStructureID": 5278, + "TargetStructureID": 99792, + "Label": "5278-99792 via Ribbon Synapse from 8958 -> 99794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8958, + "TargetID": 99794, + "Directional": true + } + ] + }, + { + "ID": 8203, + "SourceStructureID": 5278, + "TargetStructureID": 99812, + "Label": "5278-99812 via Ribbon Synapse from 20155 -> 99813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20155, + "TargetID": 99813, + "Directional": true + } + ] + }, + { + "ID": 8204, + "SourceStructureID": 5278, + "TargetStructureID": 99818, + "Label": "5278-99818 via Ribbon Synapse from 20157 -> 99820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20157, + "TargetID": 99820, + "Directional": true + } + ] + }, + { + "ID": 8205, + "SourceStructureID": 5278, + "TargetStructureID": 99824, + "Label": "5278-99824 via Ribbon Synapse from 20161 -> 99825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20161, + "TargetID": 99825, + "Directional": true + } + ] + }, + { + "ID": 8206, + "SourceStructureID": 5278, + "TargetStructureID": 99827, + "Label": "5278-99827 via BC Conventional Synapse from 20162 -> 99828", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20162, + "TargetID": 99828, + "Directional": true + } + ] + }, + { + "ID": 8207, + "SourceStructureID": 5278, + "TargetStructureID": 99831, + "Label": "5278-99831 via Ribbon Synapse from 20165 -> 100140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20165, + "TargetID": 100140, + "Directional": true + } + ] + }, + { + "ID": 8208, + "SourceStructureID": 5278, + "TargetStructureID": 100110, + "Label": "5278-100110 via Ribbon Synapse from 20164 -> 100115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20164, + "TargetID": 100115, + "Directional": true + } + ] + }, + { + "ID": 8209, + "SourceStructureID": 5278, + "TargetStructureID": 100121, + "Label": "5278-100121 via Ribbon Synapse from 20164 -> 100122", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20164, + "TargetID": 100122, + "Directional": true + } + ] + }, + { + "ID": 8210, + "SourceStructureID": 5278, + "TargetStructureID": 100129, + "Label": "5278-100129 via Ribbon Synapse from 20165 -> 100141", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20165, + "TargetID": 100141, + "Directional": true + } + ] + }, + { + "ID": 8211, + "SourceStructureID": 5278, + "TargetStructureID": 100157, + "Label": "5278-100157 via Ribbon Synapse from 20163 -> 100159", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20163, + "TargetID": 100159, + "Directional": true + } + ] + }, + { + "ID": 8212, + "SourceStructureID": 5278, + "TargetStructureID": 100195, + "Label": "5278-100195 via Ribbon Synapse from 8973 -> 100196", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8973, + "TargetID": 100196, + "Directional": true + } + ] + }, + { + "ID": 8213, + "SourceStructureID": 5278, + "TargetStructureID": 100201, + "Label": "5278-100201 via BC Conventional Synapse from 100213 -> 100214", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100213, + "TargetID": 100214, + "Directional": true + } + ] + }, + { + "ID": 8214, + "SourceStructureID": 5278, + "TargetStructureID": 100235, + "Label": "5278-100235 via Ribbon Synapse from 8977 -> 100236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8977, + "TargetID": 100236, + "Directional": true + } + ] + }, + { + "ID": 8215, + "SourceStructureID": 5278, + "TargetStructureID": 100365, + "Label": "5278-100365 via Ribbon Synapse from 8982 -> 100368", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8982, + "TargetID": 100368, + "Directional": true + } + ] + }, + { + "ID": 8216, + "SourceStructureID": 5278, + "TargetStructureID": 100374, + "Label": "5278-100374 via Ribbon Synapse from 147298 -> 147299", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147298, + "TargetID": 147299, + "Directional": true + } + ] + }, + { + "ID": 8217, + "SourceStructureID": 5278, + "TargetStructureID": 100389, + "Label": "5278-100389 via Ribbon Synapse from 8981 -> 100394", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8981, + "TargetID": 100394, + "Directional": true + } + ] + }, + { + "ID": 8218, + "SourceStructureID": 5278, + "TargetStructureID": 100396, + "Label": "5278-100396 via Ribbon Synapse from 8981 -> 100397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8981, + "TargetID": 100397, + "Directional": true + } + ] + }, + { + "ID": 8219, + "SourceStructureID": 5278, + "TargetStructureID": 100400, + "Label": "5278-100400 via Ribbon Synapse from 8976 -> 100424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8976, + "TargetID": 100424, + "Directional": true + } + ] + }, + { + "ID": 8220, + "SourceStructureID": 5278, + "TargetStructureID": 100414, + "Label": "5278-100414 via Ribbon Synapse from 8975 -> 100428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8975, + "TargetID": 100428, + "Directional": true + } + ] + }, + { + "ID": 8221, + "SourceStructureID": 5278, + "TargetStructureID": 100422, + "Label": "5278-100422 via Ribbon Synapse from 8976 -> 100423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8976, + "TargetID": 100423, + "Directional": true + } + ] + }, + { + "ID": 8222, + "SourceStructureID": 5278, + "TargetStructureID": 100425, + "Label": "5278-100425 via Ribbon Synapse from 8975 -> 100427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8975, + "TargetID": 100427, + "Directional": true + } + ] + }, + { + "ID": 8223, + "SourceStructureID": 5278, + "TargetStructureID": 100450, + "Label": "5278-100450 via Ribbon Synapse from 8974 -> 100451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8974, + "TargetID": 100451, + "Directional": true + } + ] + }, + { + "ID": 8224, + "SourceStructureID": 5278, + "TargetStructureID": 100452, + "Label": "5278-100452 via Ribbon Synapse from 8974 -> 100453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8974, + "TargetID": 100453, + "Directional": true + } + ] + }, + { + "ID": 8225, + "SourceStructureID": 5278, + "TargetStructureID": 100455, + "Label": "5278-100455 via Ribbon Synapse from 8974 -> 100456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8974, + "TargetID": 100456, + "Directional": true + } + ] + }, + { + "ID": 8226, + "SourceStructureID": 5278, + "TargetStructureID": 100485, + "Label": "5278-100485 via Ribbon Synapse from 147460 -> 147300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147460, + "TargetID": 147300, + "Directional": true + } + ] + }, + { + "ID": 8227, + "SourceStructureID": 5278, + "TargetStructureID": 100521, + "Label": "5278-100521 via Ribbon Synapse from 100520 -> 100523", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100520, + "TargetID": 100523, + "Directional": true + } + ] + }, + { + "ID": 8228, + "SourceStructureID": 5278, + "TargetStructureID": 100524, + "Label": "5278-100524 via Ribbon Synapse from 100520 -> 100531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100520, + "TargetID": 100531, + "Directional": true + } + ] + }, + { + "ID": 8229, + "SourceStructureID": 5278, + "TargetStructureID": 100536, + "Label": "5278-100536 via Ribbon Synapse from 100545 -> 100547", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100545, + "TargetID": 100547, + "Directional": true + } + ] + }, + { + "ID": 8230, + "SourceStructureID": 5278, + "TargetStructureID": 100548, + "Label": "5278-100548 via Ribbon Synapse from 92152 -> 100550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92152, + "TargetID": 100550, + "Directional": true + } + ] + }, + { + "ID": 8231, + "SourceStructureID": 5278, + "TargetStructureID": 100779, + "Label": "5278-100779 via Ribbon Synapse from 92138 -> 100781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92138, + "TargetID": 100781, + "Directional": true + } + ] + }, + { + "ID": 8232, + "SourceStructureID": 5278, + "TargetStructureID": 100788, + "Label": "5278-100788 via Ribbon Synapse from 92138 -> 100790", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92138, + "TargetID": 100790, + "Directional": true + } + ] + }, + { + "ID": 8233, + "SourceStructureID": 5278, + "TargetStructureID": 100795, + "Label": "5278-100795 via BC Conventional Synapse from 100794 -> 100796", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100794, + "TargetID": 100796, + "Directional": true + } + ] + }, + { + "ID": 8234, + "SourceStructureID": 5278, + "TargetStructureID": 100803, + "Label": "5278-100803 via Ribbon Synapse from 92137 -> 100806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92137, + "TargetID": 100806, + "Directional": true + } + ] + }, + { + "ID": 8235, + "SourceStructureID": 5278, + "TargetStructureID": 100829, + "Label": "5278-100829 via Ribbon Synapse from 8984 -> 100830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8984, + "TargetID": 100830, + "Directional": true + } + ] + }, + { + "ID": 8236, + "SourceStructureID": 5278, + "TargetStructureID": 100831, + "Label": "5278-100831 via Ribbon Synapse from 8986 -> 100832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8986, + "TargetID": 100832, + "Directional": true + } + ] + }, + { + "ID": 8237, + "SourceStructureID": 5278, + "TargetStructureID": 104007, + "Label": "5278-104007 via Ribbon Synapse from 11188 -> 104008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11188, + "TargetID": 104008, + "Directional": true + } + ] + }, + { + "ID": 8238, + "SourceStructureID": 5278, + "TargetStructureID": 104009, + "Label": "5278-104009 via Ribbon Synapse from 11188 -> 104010", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11188, + "TargetID": 104010, + "Directional": true + } + ] + }, + { + "ID": 8239, + "SourceStructureID": 5278, + "TargetStructureID": 104012, + "Label": "5278-104012 via Ribbon Synapse from 8985 -> 104014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8985, + "TargetID": 104014, + "Directional": true + } + ] + }, + { + "ID": 8240, + "SourceStructureID": 5278, + "TargetStructureID": 104015, + "Label": "5278-104015 via Ribbon Synapse from 8985 -> 104021, 20125 -> 104020", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8985, + "TargetID": 104021, + "Directional": true + }, + { + "SourceID": 20125, + "TargetID": 104020, + "Directional": true + } + ] + }, + { + "ID": 8241, + "SourceStructureID": 5278, + "TargetStructureID": 104028, + "Label": "5278-104028 via Ribbon Synapse from 20125 -> 104029", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20125, + "TargetID": 104029, + "Directional": true + } + ] + }, + { + "ID": 8242, + "SourceStructureID": 5278, + "TargetStructureID": 104038, + "Label": "5278-104038 via Ribbon Synapse from 8988 -> 104042, 8989 -> 104039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8988, + "TargetID": 104042, + "Directional": true + }, + { + "SourceID": 8989, + "TargetID": 104039, + "Directional": true + } + ] + }, + { + "ID": 8243, + "SourceStructureID": 5278, + "TargetStructureID": 104040, + "Label": "5278-104040 via Ribbon Synapse from 8989 -> 104041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8989, + "TargetID": 104041, + "Directional": true + } + ] + }, + { + "ID": 8244, + "SourceStructureID": 5278, + "TargetStructureID": 104044, + "Label": "5278-104044 via Ribbon Synapse from 8988 -> 104045, 8989 -> 104046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8988, + "TargetID": 104045, + "Directional": true + }, + { + "SourceID": 8989, + "TargetID": 104046, + "Directional": true + } + ] + }, + { + "ID": 8245, + "SourceStructureID": 5278, + "TargetStructureID": 104068, + "Label": "5278-104068 via Unknown from 104070 -> 104069", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 104070, + "TargetID": 104069, + "Directional": true + } + ] + }, + { + "ID": 8246, + "SourceStructureID": 5278, + "TargetStructureID": 104079, + "Label": "5278-104079 via Ribbon Synapse from 11191 -> 104080, 11191 -> 104081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11191, + "TargetID": 104080, + "Directional": true + }, + { + "SourceID": 11191, + "TargetID": 104081, + "Directional": true + } + ] + }, + { + "ID": 8247, + "SourceStructureID": 5278, + "TargetStructureID": 104084, + "Label": "5278-104084 via Ribbon Synapse from 104099 -> 104100", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104099, + "TargetID": 104100, + "Directional": true + } + ] + }, + { + "ID": 8248, + "SourceStructureID": 5278, + "TargetStructureID": 104095, + "Label": "5278-104095 via BC Conventional Synapse from 104098 -> 104096", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104098, + "TargetID": 104096, + "Directional": true + } + ] + }, + { + "ID": 8249, + "SourceStructureID": 5278, + "TargetStructureID": 104105, + "Label": "5278-104105 via Ribbon Synapse from 11195 -> 104106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11195, + "TargetID": 104106, + "Directional": true + } + ] + }, + { + "ID": 8250, + "SourceStructureID": 5278, + "TargetStructureID": 104107, + "Label": "5278-104107 via Ribbon Synapse from 11195 -> 104108", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11195, + "TargetID": 104108, + "Directional": true + } + ] + }, + { + "ID": 8251, + "SourceStructureID": 5278, + "TargetStructureID": 104114, + "Label": "5278-104114 via BC Conventional Synapse from 104116 -> 104115", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104116, + "TargetID": 104115, + "Directional": true + } + ] + }, + { + "ID": 8252, + "SourceStructureID": 5278, + "TargetStructureID": 104117, + "Label": "5278-104117 via Ribbon Synapse from 11211 -> 104128, 11212 -> 104132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11211, + "TargetID": 104128, + "Directional": true + }, + { + "SourceID": 11212, + "TargetID": 104132, + "Directional": true + } + ] + }, + { + "ID": 8253, + "SourceStructureID": 5278, + "TargetStructureID": 104129, + "Label": "5278-104129 via Ribbon Synapse from 11211 -> 104134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11211, + "TargetID": 104134, + "Directional": true + } + ] + }, + { + "ID": 8254, + "SourceStructureID": 5278, + "TargetStructureID": 104137, + "Label": "5278-104137 via Ribbon Synapse from 11212 -> 104138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11212, + "TargetID": 104138, + "Directional": true + } + ] + }, + { + "ID": 8255, + "SourceStructureID": 5278, + "TargetStructureID": 104168, + "Label": "5278-104168 via Ribbon Synapse from 20128 -> 104187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20128, + "TargetID": 104187, + "Directional": true + } + ] + }, + { + "ID": 8256, + "SourceStructureID": 5278, + "TargetStructureID": 104170, + "Label": "5278-104170 via Ribbon Synapse from 20128 -> 104186, 20129 -> 104185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20128, + "TargetID": 104186, + "Directional": true + }, + { + "SourceID": 20129, + "TargetID": 104185, + "Directional": true + } + ] + }, + { + "ID": 8257, + "SourceStructureID": 5278, + "TargetStructureID": 104178, + "Label": "5278-104178 via Ribbon Synapse from 11199 -> 104179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11199, + "TargetID": 104179, + "Directional": true + } + ] + }, + { + "ID": 8258, + "SourceStructureID": 5278, + "TargetStructureID": 104180, + "Label": "5278-104180 via Ribbon Synapse from 20129 -> 104184", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20129, + "TargetID": 104184, + "Directional": true + } + ] + }, + { + "ID": 8259, + "SourceStructureID": 5278, + "TargetStructureID": 104202, + "Label": "5278-104202 via Ribbon Synapse from 104197 -> 104203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104197, + "TargetID": 104203, + "Directional": true + } + ] + }, + { + "ID": 8260, + "SourceStructureID": 5278, + "TargetStructureID": 104204, + "Label": "5278-104204 via Ribbon Synapse from 104197 -> 104205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104197, + "TargetID": 104205, + "Directional": true + } + ] + }, + { + "ID": 8261, + "SourceStructureID": 5278, + "TargetStructureID": 104206, + "Label": "5278-104206 via Ribbon Synapse from 11202 -> 104207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11202, + "TargetID": 104207, + "Directional": true + } + ] + }, + { + "ID": 8262, + "SourceStructureID": 5278, + "TargetStructureID": 104216, + "Label": "5278-104216 via Ribbon Synapse from 11208 -> 104217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11208, + "TargetID": 104217, + "Directional": true + } + ] + }, + { + "ID": 8263, + "SourceStructureID": 5278, + "TargetStructureID": 104218, + "Label": "5278-104218 via Ribbon Synapse from 11208 -> 104219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11208, + "TargetID": 104219, + "Directional": true + } + ] + }, + { + "ID": 8264, + "SourceStructureID": 5278, + "TargetStructureID": 104222, + "Label": "5278-104222 via Ribbon Synapse from 104227 -> 104228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104227, + "TargetID": 104228, + "Directional": true + } + ] + }, + { + "ID": 8265, + "SourceStructureID": 5278, + "TargetStructureID": 104223, + "Label": "5278-104223 via Ribbon Synapse from 11206 -> 104229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11206, + "TargetID": 104229, + "Directional": true + } + ] + }, + { + "ID": 8266, + "SourceStructureID": 5278, + "TargetStructureID": 104235, + "Label": "5278-104235 via Ribbon Synapse from 147305 -> 147306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147305, + "TargetID": 147306, + "Directional": true + } + ] + }, + { + "ID": 8267, + "SourceStructureID": 5278, + "TargetStructureID": 104242, + "Label": "5278-104242 via BC Conventional Synapse from 104383 -> 104382", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104383, + "TargetID": 104382, + "Directional": true + } + ] + }, + { + "ID": 8268, + "SourceStructureID": 5278, + "TargetStructureID": 104242, + "Label": "5278-104242 via Ribbon Synapse from 104241 -> 104243", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104241, + "TargetID": 104243, + "Directional": true + } + ] + }, + { + "ID": 8269, + "SourceStructureID": 5278, + "TargetStructureID": 104244, + "Label": "5278-104244 via Ribbon Synapse from 104245 -> 104246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104245, + "TargetID": 104246, + "Directional": true + } + ] + }, + { + "ID": 8270, + "SourceStructureID": 5278, + "TargetStructureID": 104247, + "Label": "5278-104247 via Ribbon Synapse from 104245 -> 104248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104245, + "TargetID": 104248, + "Directional": true + } + ] + }, + { + "ID": 8271, + "SourceStructureID": 5278, + "TargetStructureID": 104250, + "Label": "5278-104250 via Ribbon Synapse from 104249 -> 104251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104249, + "TargetID": 104251, + "Directional": true + } + ] + }, + { + "ID": 8272, + "SourceStructureID": 5278, + "TargetStructureID": 104252, + "Label": "5278-104252 via Ribbon Synapse from 104249 -> 104253, 104254 -> 104257, 104258 -> 104262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104249, + "TargetID": 104253, + "Directional": true + }, + { + "SourceID": 104254, + "TargetID": 104257, + "Directional": true + }, + { + "SourceID": 104258, + "TargetID": 104262, + "Directional": true + } + ] + }, + { + "ID": 8273, + "SourceStructureID": 5278, + "TargetStructureID": 104255, + "Label": "5278-104255 via Ribbon Synapse from 104254 -> 104256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104254, + "TargetID": 104256, + "Directional": true + } + ] + }, + { + "ID": 8274, + "SourceStructureID": 5278, + "TargetStructureID": 104259, + "Label": "5278-104259 via Ribbon Synapse from 104249 -> 147304, 104258 -> 104260", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104249, + "TargetID": 147304, + "Directional": true + }, + { + "SourceID": 104258, + "TargetID": 104260, + "Directional": true + } + ] + }, + { + "ID": 8275, + "SourceStructureID": 5278, + "TargetStructureID": 104263, + "Label": "5278-104263 via BC Conventional Synapse from 147308 -> 147309", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147308, + "TargetID": 147309, + "Directional": true + } + ] + }, + { + "ID": 8276, + "SourceStructureID": 5278, + "TargetStructureID": 104299, + "Label": "5278-104299 via Ribbon Synapse from 104298 -> 104311", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104298, + "TargetID": 104311, + "Directional": true + } + ] + }, + { + "ID": 8277, + "SourceStructureID": 5278, + "TargetStructureID": 104301, + "Label": "5278-104301 via Ribbon Synapse from 104298 -> 104307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104298, + "TargetID": 104307, + "Directional": true + } + ] + }, + { + "ID": 8278, + "SourceStructureID": 5278, + "TargetStructureID": 104302, + "Label": "5278-104302 via Ribbon Synapse from 104298 -> 104305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104298, + "TargetID": 104305, + "Directional": true + } + ] + }, + { + "ID": 8279, + "SourceStructureID": 5278, + "TargetStructureID": 104333, + "Label": "5278-104333 via Ribbon Synapse from 104331 -> 104336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104331, + "TargetID": 104336, + "Directional": true + } + ] + }, + { + "ID": 8280, + "SourceStructureID": 5278, + "TargetStructureID": 104346, + "Label": "5278-104346 via Ribbon Synapse from 104351 -> 104355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104351, + "TargetID": 104355, + "Directional": true + } + ] + }, + { + "ID": 8281, + "SourceStructureID": 5278, + "TargetStructureID": 104353, + "Label": "5278-104353 via Ribbon Synapse from 104351 -> 104354", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104351, + "TargetID": 104354, + "Directional": true + } + ] + }, + { + "ID": 8282, + "SourceStructureID": 5278, + "TargetStructureID": 104377, + "Label": "5278-104377 via Ribbon Synapse from 104384 -> 104387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104384, + "TargetID": 104387, + "Directional": true + } + ] + }, + { + "ID": 8283, + "SourceStructureID": 5278, + "TargetStructureID": 104385, + "Label": "5278-104385 via Ribbon Synapse from 104384 -> 104386", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104384, + "TargetID": 104386, + "Directional": true + } + ] + }, + { + "ID": 8284, + "SourceStructureID": 5278, + "TargetStructureID": 104397, + "Label": "5278-104397 via Ribbon Synapse from 92194 -> 104398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92194, + "TargetID": 104398, + "Directional": true + } + ] + }, + { + "ID": 8285, + "SourceStructureID": 5278, + "TargetStructureID": 104402, + "Label": "5278-104402 via Ribbon Synapse from 104407 -> 104408", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104407, + "TargetID": 104408, + "Directional": true + } + ] + }, + { + "ID": 8286, + "SourceStructureID": 5278, + "TargetStructureID": 104403, + "Label": "5278-104403 via Ribbon Synapse from 104407 -> 104409", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104407, + "TargetID": 104409, + "Directional": true + } + ] + }, + { + "ID": 8287, + "SourceStructureID": 5278, + "TargetStructureID": 104411, + "Label": "5278-104411 via Ribbon Synapse from 92194 -> 104412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92194, + "TargetID": 104412, + "Directional": true + } + ] + }, + { + "ID": 8288, + "SourceStructureID": 5278, + "TargetStructureID": 104421, + "Label": "5278-104421 via Ribbon Synapse from 104420 -> 104423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104420, + "TargetID": 104423, + "Directional": true + } + ] + }, + { + "ID": 8289, + "SourceStructureID": 5278, + "TargetStructureID": 104425, + "Label": "5278-104425 via BC Conventional Synapse from 92166 -> 104426", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92166, + "TargetID": 104426, + "Directional": true + } + ] + }, + { + "ID": 8290, + "SourceStructureID": 5278, + "TargetStructureID": 104428, + "Label": "5278-104428 via Ribbon Synapse from 92164 -> 104429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92164, + "TargetID": 104429, + "Directional": true + } + ] + }, + { + "ID": 8291, + "SourceStructureID": 5278, + "TargetStructureID": 104444, + "Label": "5278-104444 via Ribbon Synapse from 92181 -> 104529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92181, + "TargetID": 104529, + "Directional": true + } + ] + }, + { + "ID": 8292, + "SourceStructureID": 5278, + "TargetStructureID": 104496, + "Label": "5278-104496 via Ribbon Synapse from 92163 -> 104498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92163, + "TargetID": 104498, + "Directional": true + } + ] + }, + { + "ID": 8293, + "SourceStructureID": 5278, + "TargetStructureID": 104499, + "Label": "5278-104499 via Ribbon Synapse from 92163 -> 104500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92163, + "TargetID": 104500, + "Directional": true + } + ] + }, + { + "ID": 8294, + "SourceStructureID": 5278, + "TargetStructureID": 104516, + "Label": "5278-104516 via Ribbon Synapse from 104515 -> 104517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104515, + "TargetID": 104517, + "Directional": true + } + ] + }, + { + "ID": 8295, + "SourceStructureID": 5278, + "TargetStructureID": 104521, + "Label": "5278-104521 via Ribbon Synapse from 92181 -> 116724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92181, + "TargetID": 116724, + "Directional": true + } + ] + }, + { + "ID": 8296, + "SourceStructureID": 5278, + "TargetStructureID": 104547, + "Label": "5278-104547 via Ribbon Synapse from 104420 -> 104551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104420, + "TargetID": 104551, + "Directional": true + } + ] + }, + { + "ID": 8297, + "SourceStructureID": 5278, + "TargetStructureID": 104568, + "Label": "5278-104568 via Ribbon Synapse from 104584 -> 104585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104584, + "TargetID": 104585, + "Directional": true + } + ] + }, + { + "ID": 8298, + "SourceStructureID": 5278, + "TargetStructureID": 104569, + "Label": "5278-104569 via Ribbon Synapse from 92211 -> 104578", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92211, + "TargetID": 104578, + "Directional": true + } + ] + }, + { + "ID": 8299, + "SourceStructureID": 5278, + "TargetStructureID": 104571, + "Label": "5278-104571 via Ribbon Synapse from 92211 -> 104576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92211, + "TargetID": 104576, + "Directional": true + } + ] + }, + { + "ID": 8300, + "SourceStructureID": 5278, + "TargetStructureID": 104591, + "Label": "5278-104591 via Ribbon Synapse from 92219 -> 104596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92219, + "TargetID": 104596, + "Directional": true + } + ] + }, + { + "ID": 8301, + "SourceStructureID": 5278, + "TargetStructureID": 104806, + "Label": "5278-104806 via Ribbon Synapse from 92219 -> 104807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92219, + "TargetID": 104807, + "Directional": true + } + ] + }, + { + "ID": 8302, + "SourceStructureID": 5278, + "TargetStructureID": 104808, + "Label": "5278-104808 via Ribbon Synapse from 104811 -> 104821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104811, + "TargetID": 104821, + "Directional": true + } + ] + }, + { + "ID": 8303, + "SourceStructureID": 5278, + "TargetStructureID": 104812, + "Label": "5278-104812 via Ribbon Synapse from 92216 -> 104816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92216, + "TargetID": 104816, + "Directional": true + } + ] + }, + { + "ID": 8304, + "SourceStructureID": 5278, + "TargetStructureID": 104823, + "Label": "5278-104823 via Ribbon Synapse from 92216 -> 104827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92216, + "TargetID": 104827, + "Directional": true + } + ] + }, + { + "ID": 8305, + "SourceStructureID": 5278, + "TargetStructureID": 104834, + "Label": "5278-104834 via Ribbon Synapse from 104833 -> 104839", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104833, + "TargetID": 104839, + "Directional": true + } + ] + }, + { + "ID": 8306, + "SourceStructureID": 5278, + "TargetStructureID": 104842, + "Label": "5278-104842 via Ribbon Synapse from 104845 -> 104852, 104854 -> 104855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104845, + "TargetID": 104852, + "Directional": true + }, + { + "SourceID": 104854, + "TargetID": 104855, + "Directional": true + } + ] + }, + { + "ID": 8307, + "SourceStructureID": 5278, + "TargetStructureID": 104848, + "Label": "5278-104848 via Ribbon Synapse from 104845 -> 104849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104845, + "TargetID": 104849, + "Directional": true + } + ] + }, + { + "ID": 8308, + "SourceStructureID": 5278, + "TargetStructureID": 104850, + "Label": "5278-104850 via Ribbon Synapse from 104845 -> 104851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104845, + "TargetID": 104851, + "Directional": true + } + ] + }, + { + "ID": 8309, + "SourceStructureID": 5278, + "TargetStructureID": 104856, + "Label": "5278-104856 via Ribbon Synapse from 104854 -> 104857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104854, + "TargetID": 104857, + "Directional": true + } + ] + }, + { + "ID": 8310, + "SourceStructureID": 5278, + "TargetStructureID": 104858, + "Label": "5278-104858 via Ribbon Synapse from 104853 -> 104859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104853, + "TargetID": 104859, + "Directional": true + } + ] + }, + { + "ID": 8311, + "SourceStructureID": 5278, + "TargetStructureID": 120783, + "Label": "5278-120783 via Ribbon Synapse from 114179 -> 120928", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114179, + "TargetID": 120928, + "Directional": true + } + ] + }, + { + "ID": 8312, + "SourceStructureID": 5279, + "TargetStructureID": 5107, + "Label": "5279-5107 via Ribbon Synapse from 6354 -> 97284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6354, + "TargetID": 97284, + "Directional": true + } + ] + }, + { + "ID": 8313, + "SourceStructureID": 5279, + "TargetStructureID": 5280, + "Label": "5279-5280 via Ribbon Synapse from 25683 -> 96398, 25683 -> 96399, 25685 -> 40883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25683, + "TargetID": 96398, + "Directional": true + }, + { + "SourceID": 25683, + "TargetID": 96399, + "Directional": true + }, + { + "SourceID": 25685, + "TargetID": 40883, + "Directional": true + } + ] + }, + { + "ID": 8314, + "SourceStructureID": 5279, + "TargetStructureID": 5282, + "Label": "5279-5282 via Ribbon Synapse from 6351 -> 87549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6351, + "TargetID": 87549, + "Directional": true + } + ] + }, + { + "ID": 8315, + "SourceStructureID": 5279, + "TargetStructureID": 5489, + "Label": "5279-5489 via Ribbon Synapse from 92556 -> 119112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92556, + "TargetID": 119112, + "Directional": true + } + ] + }, + { + "ID": 8316, + "SourceStructureID": 5279, + "TargetStructureID": 6857, + "Label": "5279-6857 via Ribbon Synapse from 59054 -> 7539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59054, + "TargetID": 7539, + "Directional": true + } + ] + }, + { + "ID": 8317, + "SourceStructureID": 5279, + "TargetStructureID": 8579, + "Label": "5279-8579 via Ribbon Synapse from 6351 -> 62897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6351, + "TargetID": 62897, + "Directional": true + } + ] + }, + { + "ID": 8318, + "SourceStructureID": 5279, + "TargetStructureID": 15796, + "Label": "5279-15796 via Ribbon Synapse from 27433 -> 20151", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27433, + "TargetID": 20151, + "Directional": true + } + ] + }, + { + "ID": 8319, + "SourceStructureID": 5279, + "TargetStructureID": 37466, + "Label": "5279-37466 via Ribbon Synapse from 11479 -> 37478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11479, + "TargetID": 37478, + "Directional": true + } + ] + }, + { + "ID": 8320, + "SourceStructureID": 5279, + "TargetStructureID": 39957, + "Label": "5279-39957 via BC Conventional Synapse from 97623 -> 97624", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97623, + "TargetID": 97624, + "Directional": true + } + ] + }, + { + "ID": 8321, + "SourceStructureID": 5279, + "TargetStructureID": 47104, + "Label": "5279-47104 via Ribbon Synapse from 47147 -> 47146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47147, + "TargetID": 47146, + "Directional": true + } + ] + }, + { + "ID": 8322, + "SourceStructureID": 5279, + "TargetStructureID": 55347, + "Label": "5279-55347 via Ribbon Synapse from 119116 -> 119115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119116, + "TargetID": 119115, + "Directional": true + } + ] + }, + { + "ID": 8323, + "SourceStructureID": 5279, + "TargetStructureID": 57034, + "Label": "5279-57034 via Ribbon Synapse from 92550 -> 65397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92550, + "TargetID": 65397, + "Directional": true + } + ] + }, + { + "ID": 8324, + "SourceStructureID": 5279, + "TargetStructureID": 58592, + "Label": "5279-58592 via Ribbon Synapse from 49229 -> 58627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49229, + "TargetID": 58627, + "Directional": true + } + ] + }, + { + "ID": 8325, + "SourceStructureID": 5279, + "TargetStructureID": 58816, + "Label": "5279-58816 via Ribbon Synapse from 49203 -> 58824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49203, + "TargetID": 58824, + "Directional": true + } + ] + }, + { + "ID": 8326, + "SourceStructureID": 5279, + "TargetStructureID": 59012, + "Label": "5279-59012 via Ribbon Synapse from 59016 -> 59017, 59016 -> 116767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59016, + "TargetID": 59017, + "Directional": true + }, + { + "SourceID": 59016, + "TargetID": 116767, + "Directional": true + } + ] + }, + { + "ID": 8327, + "SourceStructureID": 5279, + "TargetStructureID": 61793, + "Label": "5279-61793 via Ribbon Synapse from 130718 -> 61794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130718, + "TargetID": 61794, + "Directional": true + } + ] + }, + { + "ID": 8328, + "SourceStructureID": 5279, + "TargetStructureID": 66395, + "Label": "5279-66395 via Ribbon Synapse from 27433 -> 97596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27433, + "TargetID": 97596, + "Directional": true + } + ] + }, + { + "ID": 8329, + "SourceStructureID": 5279, + "TargetStructureID": 66523, + "Label": "5279-66523 via Ribbon Synapse from 97217 -> 97220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97217, + "TargetID": 97220, + "Directional": true + } + ] + }, + { + "ID": 8330, + "SourceStructureID": 5279, + "TargetStructureID": 67182, + "Label": "5279-67182 via Ribbon Synapse from 25819 -> 92662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25819, + "TargetID": 92662, + "Directional": true + } + ] + }, + { + "ID": 8331, + "SourceStructureID": 5279, + "TargetStructureID": 68335, + "Label": "5279-68335 via Ribbon Synapse from 130718 -> 68336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130718, + "TargetID": 68336, + "Directional": true + } + ] + }, + { + "ID": 8332, + "SourceStructureID": 5279, + "TargetStructureID": 68430, + "Label": "5279-68430 via BC Conventional Synapse from 98089 -> 98090", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98089, + "TargetID": 98090, + "Directional": true + } + ] + }, + { + "ID": 8333, + "SourceStructureID": 5279, + "TargetStructureID": 70360, + "Label": "5279-70360 via Ribbon Synapse from 28312 -> 97338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28312, + "TargetID": 97338, + "Directional": true + } + ] + }, + { + "ID": 8334, + "SourceStructureID": 5279, + "TargetStructureID": 83190, + "Label": "5279-83190 via Ribbon Synapse from 92556 -> 129646", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92556, + "TargetID": 129646, + "Directional": true + } + ] + }, + { + "ID": 8335, + "SourceStructureID": 5279, + "TargetStructureID": 83293, + "Label": "5279-83293 via Ribbon Synapse from 25795 -> 96482", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25795, + "TargetID": 96482, + "Directional": true + } + ] + }, + { + "ID": 8336, + "SourceStructureID": 5279, + "TargetStructureID": 88565, + "Label": "5279-88565 via Ribbon Synapse from 6351 -> 97231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6351, + "TargetID": 97231, + "Directional": true + } + ] + }, + { + "ID": 8337, + "SourceStructureID": 5279, + "TargetStructureID": 92638, + "Label": "5279-92638 via Ribbon Synapse from 25999 -> 92857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25999, + "TargetID": 92857, + "Directional": true + } + ] + }, + { + "ID": 8338, + "SourceStructureID": 5279, + "TargetStructureID": 94878, + "Label": "5279-94878 via Ribbon Synapse from 25796 -> 96509", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25796, + "TargetID": 96509, + "Directional": true + } + ] + }, + { + "ID": 8339, + "SourceStructureID": 5279, + "TargetStructureID": 96343, + "Label": "5279-96343 via Cistern Pre from 27529 -> 126411", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 27529, + "TargetID": 126411, + "Directional": true + } + ] + }, + { + "ID": 8340, + "SourceStructureID": 5279, + "TargetStructureID": 96345, + "Label": "5279-96345 via Ribbon Synapse from 15122 -> 96349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15122, + "TargetID": 96349, + "Directional": true + } + ] + }, + { + "ID": 8341, + "SourceStructureID": 5279, + "TargetStructureID": 96353, + "Label": "5279-96353 via Ribbon Synapse from 6905 -> 96355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6905, + "TargetID": 96355, + "Directional": true + } + ] + }, + { + "ID": 8342, + "SourceStructureID": 5279, + "TargetStructureID": 96413, + "Label": "5279-96413 via Ribbon Synapse from 96412 -> 96416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96412, + "TargetID": 96416, + "Directional": true + } + ] + }, + { + "ID": 8343, + "SourceStructureID": 5279, + "TargetStructureID": 96417, + "Label": "5279-96417 via Ribbon Synapse from 49236 -> 96418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49236, + "TargetID": 96418, + "Directional": true + } + ] + }, + { + "ID": 8344, + "SourceStructureID": 5279, + "TargetStructureID": 96423, + "Label": "5279-96423 via Ribbon Synapse from 49238 -> 96424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49238, + "TargetID": 96424, + "Directional": true + } + ] + }, + { + "ID": 8345, + "SourceStructureID": 5279, + "TargetStructureID": 96439, + "Label": "5279-96439 via Ribbon Synapse from 47147 -> 96441", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47147, + "TargetID": 96441, + "Directional": true + } + ] + }, + { + "ID": 8346, + "SourceStructureID": 5279, + "TargetStructureID": 96446, + "Label": "5279-96446 via Ribbon Synapse from 147963 -> 147962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147963, + "TargetID": 147962, + "Directional": true + } + ] + }, + { + "ID": 8347, + "SourceStructureID": 5279, + "TargetStructureID": 96465, + "Label": "5279-96465 via Ribbon Synapse from 133835 -> 133836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133835, + "TargetID": 133836, + "Directional": true + } + ] + }, + { + "ID": 8348, + "SourceStructureID": 5279, + "TargetStructureID": 96483, + "Label": "5279-96483 via Ribbon Synapse from 25795 -> 96484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25795, + "TargetID": 96484, + "Directional": true + } + ] + }, + { + "ID": 8349, + "SourceStructureID": 5279, + "TargetStructureID": 96493, + "Label": "5279-96493 via Ribbon Synapse from 6341 -> 96498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6341, + "TargetID": 96498, + "Directional": true + } + ] + }, + { + "ID": 8350, + "SourceStructureID": 5279, + "TargetStructureID": 96494, + "Label": "5279-96494 via Ribbon Synapse from 6341 -> 96497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6341, + "TargetID": 96497, + "Directional": true + } + ] + }, + { + "ID": 8351, + "SourceStructureID": 5279, + "TargetStructureID": 96505, + "Label": "5279-96505 via BC Conventional Synapse from 96514 -> 96513", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96514, + "TargetID": 96513, + "Directional": true + } + ] + }, + { + "ID": 8352, + "SourceStructureID": 5279, + "TargetStructureID": 96505, + "Label": "5279-96505 via Ribbon Synapse from 25796 -> 96507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25796, + "TargetID": 96507, + "Directional": true + } + ] + }, + { + "ID": 8353, + "SourceStructureID": 5279, + "TargetStructureID": 97018, + "Label": "5279-97018 via Ribbon Synapse from 25802 -> 97022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25802, + "TargetID": 97022, + "Directional": true + } + ] + }, + { + "ID": 8354, + "SourceStructureID": 5279, + "TargetStructureID": 97034, + "Label": "5279-97034 via Ribbon Synapse from 25801 -> 97036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25801, + "TargetID": 97036, + "Directional": true + } + ] + }, + { + "ID": 8355, + "SourceStructureID": 5279, + "TargetStructureID": 97124, + "Label": "5279-97124 via Ribbon Synapse from 25805 -> 97125", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25805, + "TargetID": 97125, + "Directional": true + } + ] + }, + { + "ID": 8356, + "SourceStructureID": 5279, + "TargetStructureID": 97126, + "Label": "5279-97126 via Ribbon Synapse from 97127 -> 97128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97127, + "TargetID": 97128, + "Directional": true + } + ] + }, + { + "ID": 8357, + "SourceStructureID": 5279, + "TargetStructureID": 97129, + "Label": "5279-97129 via Ribbon Synapse from 97127 -> 97132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97127, + "TargetID": 97132, + "Directional": true + } + ] + }, + { + "ID": 8358, + "SourceStructureID": 5279, + "TargetStructureID": 97152, + "Label": "5279-97152 via Ribbon Synapse from 25809 -> 97153", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25809, + "TargetID": 97153, + "Directional": true + } + ] + }, + { + "ID": 8359, + "SourceStructureID": 5279, + "TargetStructureID": 97156, + "Label": "5279-97156 via Ribbon Synapse from 25811 -> 97158", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25811, + "TargetID": 97158, + "Directional": true + } + ] + }, + { + "ID": 8360, + "SourceStructureID": 5279, + "TargetStructureID": 97162, + "Label": "5279-97162 via Ribbon Synapse from 25809 -> 97163", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25809, + "TargetID": 97163, + "Directional": true + } + ] + }, + { + "ID": 8361, + "SourceStructureID": 5279, + "TargetStructureID": 97167, + "Label": "5279-97167 via Ribbon Synapse from 97168 -> 97169", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97168, + "TargetID": 97169, + "Directional": true + } + ] + }, + { + "ID": 8362, + "SourceStructureID": 5279, + "TargetStructureID": 97218, + "Label": "5279-97218 via Ribbon Synapse from 97217 -> 97219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97217, + "TargetID": 97219, + "Directional": true + } + ] + }, + { + "ID": 8363, + "SourceStructureID": 5279, + "TargetStructureID": 97223, + "Label": "5279-97223 via Ribbon Synapse from 6346 -> 97224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6346, + "TargetID": 97224, + "Directional": true + } + ] + }, + { + "ID": 8364, + "SourceStructureID": 5279, + "TargetStructureID": 97228, + "Label": "5279-97228 via Ribbon Synapse from 6346 -> 97229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6346, + "TargetID": 97229, + "Directional": true + } + ] + }, + { + "ID": 8365, + "SourceStructureID": 5279, + "TargetStructureID": 97261, + "Label": "5279-97261 via Ribbon Synapse from 6343 -> 97262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6343, + "TargetID": 97262, + "Directional": true + } + ] + }, + { + "ID": 8366, + "SourceStructureID": 5279, + "TargetStructureID": 97294, + "Label": "5279-97294 via Ribbon Synapse from 6353 -> 97296", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6353, + "TargetID": 97296, + "Directional": true + } + ] + }, + { + "ID": 8367, + "SourceStructureID": 5279, + "TargetStructureID": 97302, + "Label": "5279-97302 via Ribbon Synapse from 25838 -> 97303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25838, + "TargetID": 97303, + "Directional": true + } + ] + }, + { + "ID": 8368, + "SourceStructureID": 5279, + "TargetStructureID": 97305, + "Label": "5279-97305 via Ribbon Synapse from 25838 -> 97309", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25838, + "TargetID": 97309, + "Directional": true + } + ] + }, + { + "ID": 8369, + "SourceStructureID": 5279, + "TargetStructureID": 97329, + "Label": "5279-97329 via Ribbon Synapse from 97330 -> 97331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97330, + "TargetID": 97331, + "Directional": true + } + ] + }, + { + "ID": 8370, + "SourceStructureID": 5279, + "TargetStructureID": 97358, + "Label": "5279-97358 via BC Conventional Synapse from 97359 -> 97360", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97359, + "TargetID": 97360, + "Directional": true + } + ] + }, + { + "ID": 8371, + "SourceStructureID": 5279, + "TargetStructureID": 97374, + "Label": "5279-97374 via Ribbon Synapse from 49261 -> 97375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49261, + "TargetID": 97375, + "Directional": true + } + ] + }, + { + "ID": 8372, + "SourceStructureID": 5279, + "TargetStructureID": 97532, + "Label": "5279-97532 via Ribbon Synapse from 97527 -> 97533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97527, + "TargetID": 97533, + "Directional": true + } + ] + }, + { + "ID": 8373, + "SourceStructureID": 5279, + "TargetStructureID": 97538, + "Label": "5279-97538 via BC Conventional Synapse from 97537 -> 97540", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97537, + "TargetID": 97540, + "Directional": true + } + ] + }, + { + "ID": 8374, + "SourceStructureID": 5279, + "TargetStructureID": 97548, + "Label": "5279-97548 via Ribbon Synapse from 97545 -> 97551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97545, + "TargetID": 97551, + "Directional": true + } + ] + }, + { + "ID": 8375, + "SourceStructureID": 5279, + "TargetStructureID": 97552, + "Label": "5279-97552 via Ribbon Synapse from 97545 -> 97556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97545, + "TargetID": 97556, + "Directional": true + } + ] + }, + { + "ID": 8376, + "SourceStructureID": 5279, + "TargetStructureID": 97609, + "Label": "5279-97609 via Ribbon Synapse from 97608 -> 97612", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97608, + "TargetID": 97612, + "Directional": true + } + ] + }, + { + "ID": 8377, + "SourceStructureID": 5279, + "TargetStructureID": 97610, + "Label": "5279-97610 via Ribbon Synapse from 97608 -> 97611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97608, + "TargetID": 97611, + "Directional": true + } + ] + }, + { + "ID": 8378, + "SourceStructureID": 5279, + "TargetStructureID": 97615, + "Label": "5279-97615 via Ribbon Synapse from 97613 -> 97618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97613, + "TargetID": 97618, + "Directional": true + } + ] + }, + { + "ID": 8379, + "SourceStructureID": 5279, + "TargetStructureID": 97649, + "Label": "5279-97649 via Ribbon Synapse from 25819 -> 98007", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25819, + "TargetID": 98007, + "Directional": true + } + ] + }, + { + "ID": 8380, + "SourceStructureID": 5279, + "TargetStructureID": 98000, + "Label": "5279-98000 via Ribbon Synapse from 25818 -> 98004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25818, + "TargetID": 98004, + "Directional": true + } + ] + }, + { + "ID": 8381, + "SourceStructureID": 5279, + "TargetStructureID": 98029, + "Label": "5279-98029 via Ribbon Synapse from 25823 -> 98032", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25823, + "TargetID": 98032, + "Directional": true + } + ] + }, + { + "ID": 8382, + "SourceStructureID": 5279, + "TargetStructureID": 98030, + "Label": "5279-98030 via Ribbon Synapse from 25823 -> 98031", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25823, + "TargetID": 98031, + "Directional": true + } + ] + }, + { + "ID": 8383, + "SourceStructureID": 5279, + "TargetStructureID": 98037, + "Label": "5279-98037 via Ribbon Synapse from 26005 -> 98038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26005, + "TargetID": 98038, + "Directional": true + } + ] + }, + { + "ID": 8384, + "SourceStructureID": 5279, + "TargetStructureID": 98039, + "Label": "5279-98039 via Ribbon Synapse from 20133 -> 98044", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20133, + "TargetID": 98044, + "Directional": true + } + ] + }, + { + "ID": 8385, + "SourceStructureID": 5279, + "TargetStructureID": 98041, + "Label": "5279-98041 via Ribbon Synapse from 20133 -> 98045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20133, + "TargetID": 98045, + "Directional": true + } + ] + }, + { + "ID": 8386, + "SourceStructureID": 5279, + "TargetStructureID": 98074, + "Label": "5279-98074 via Ribbon Synapse from 147287 -> 147288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147287, + "TargetID": 147288, + "Directional": true + } + ] + }, + { + "ID": 8387, + "SourceStructureID": 5279, + "TargetStructureID": 98106, + "Label": "5279-98106 via Ribbon Synapse from 11479 -> 98110", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11479, + "TargetID": 98110, + "Directional": true + } + ] + }, + { + "ID": 8388, + "SourceStructureID": 5279, + "TargetStructureID": 98534, + "Label": "5279-98534 via Ribbon Synapse from 49209 -> 98536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49209, + "TargetID": 98536, + "Directional": true + } + ] + }, + { + "ID": 8389, + "SourceStructureID": 5279, + "TargetStructureID": 98579, + "Label": "5279-98579 via Ribbon Synapse from 25842 -> 98580", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25842, + "TargetID": 98580, + "Directional": true + } + ] + }, + { + "ID": 8390, + "SourceStructureID": 5279, + "TargetStructureID": 98584, + "Label": "5279-98584 via Ribbon Synapse from 25845 -> 147956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25845, + "TargetID": 147956, + "Directional": true + } + ] + }, + { + "ID": 8391, + "SourceStructureID": 5279, + "TargetStructureID": 98589, + "Label": "5279-98589 via BC Conventional Synapse from 98593 -> 98594", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98593, + "TargetID": 98594, + "Directional": true + } + ] + }, + { + "ID": 8392, + "SourceStructureID": 5279, + "TargetStructureID": 98599, + "Label": "5279-98599 via Ribbon Synapse from 25845 -> 98603", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25845, + "TargetID": 98603, + "Directional": true + } + ] + }, + { + "ID": 8393, + "SourceStructureID": 5279, + "TargetStructureID": 98630, + "Label": "5279-98630 via Ribbon Synapse from 25989 -> 98631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25989, + "TargetID": 98631, + "Directional": true + } + ] + }, + { + "ID": 8394, + "SourceStructureID": 5279, + "TargetStructureID": 98632, + "Label": "5279-98632 via Ribbon Synapse from 25989 -> 98633", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25989, + "TargetID": 98633, + "Directional": true + } + ] + }, + { + "ID": 8395, + "SourceStructureID": 5279, + "TargetStructureID": 98644, + "Label": "5279-98644 via Ribbon Synapse from 25990 -> 98645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25990, + "TargetID": 98645, + "Directional": true + } + ] + }, + { + "ID": 8396, + "SourceStructureID": 5279, + "TargetStructureID": 98676, + "Label": "5279-98676 via Ribbon Synapse from 25991 -> 98684", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25991, + "TargetID": 98684, + "Directional": true + } + ] + }, + { + "ID": 8397, + "SourceStructureID": 5279, + "TargetStructureID": 98689, + "Label": "5279-98689 via Ribbon Synapse from 25992 -> 98692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25992, + "TargetID": 98692, + "Directional": true + } + ] + }, + { + "ID": 8398, + "SourceStructureID": 5279, + "TargetStructureID": 98993, + "Label": "5279-98993 via Ribbon Synapse from 26003 -> 98994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26003, + "TargetID": 98994, + "Directional": true + } + ] + }, + { + "ID": 8399, + "SourceStructureID": 5279, + "TargetStructureID": 99044, + "Label": "5279-99044 via Ribbon Synapse from 49231 -> 99045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49231, + "TargetID": 99045, + "Directional": true + } + ] + }, + { + "ID": 8400, + "SourceStructureID": 5279, + "TargetStructureID": 99054, + "Label": "5279-99054 via Ribbon Synapse from 49221 -> 99055", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49221, + "TargetID": 99055, + "Directional": true + } + ] + }, + { + "ID": 8401, + "SourceStructureID": 5279, + "TargetStructureID": 99056, + "Label": "5279-99056 via Ribbon Synapse from 49221 -> 99061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49221, + "TargetID": 99061, + "Directional": true + } + ] + }, + { + "ID": 8402, + "SourceStructureID": 5279, + "TargetStructureID": 99088, + "Label": "5279-99088 via BC Conventional Synapse from 99089 -> 99090", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99089, + "TargetID": 99090, + "Directional": true + } + ] + }, + { + "ID": 8403, + "SourceStructureID": 5279, + "TargetStructureID": 99106, + "Label": "5279-99106 via Ribbon Synapse from 49224 -> 99107", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49224, + "TargetID": 99107, + "Directional": true + } + ] + }, + { + "ID": 8404, + "SourceStructureID": 5279, + "TargetStructureID": 99118, + "Label": "5279-99118 via Ribbon Synapse from 49229 -> 99120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49229, + "TargetID": 99120, + "Directional": true + } + ] + }, + { + "ID": 8405, + "SourceStructureID": 5279, + "TargetStructureID": 99122, + "Label": "5279-99122 via Ribbon Synapse from 99121 -> 99123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99121, + "TargetID": 99123, + "Directional": true + } + ] + }, + { + "ID": 8406, + "SourceStructureID": 5279, + "TargetStructureID": 99139, + "Label": "5279-99139 via Ribbon Synapse from 99138 -> 99140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99138, + "TargetID": 99140, + "Directional": true + } + ] + }, + { + "ID": 8407, + "SourceStructureID": 5279, + "TargetStructureID": 99142, + "Label": "5279-99142 via Ribbon Synapse from 99138 -> 99143", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99138, + "TargetID": 99143, + "Directional": true + } + ] + }, + { + "ID": 8408, + "SourceStructureID": 5279, + "TargetStructureID": 99795, + "Label": "5279-99795 via Ribbon Synapse from 92676 -> 99796", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92676, + "TargetID": 99796, + "Directional": true + } + ] + }, + { + "ID": 8409, + "SourceStructureID": 5279, + "TargetStructureID": 99797, + "Label": "5279-99797 via Ribbon Synapse from 92676 -> 99798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92676, + "TargetID": 99798, + "Directional": true + } + ] + }, + { + "ID": 8410, + "SourceStructureID": 5279, + "TargetStructureID": 99799, + "Label": "5279-99799 via Ribbon Synapse from 92676 -> 99800", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92676, + "TargetID": 99800, + "Directional": true + } + ] + }, + { + "ID": 8411, + "SourceStructureID": 5279, + "TargetStructureID": 99806, + "Label": "5279-99806 via Ribbon Synapse from 92675 -> 99807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92675, + "TargetID": 99807, + "Directional": true + } + ] + }, + { + "ID": 8412, + "SourceStructureID": 5279, + "TargetStructureID": 136667, + "Label": "5279-136667 via Ribbon Synapse from 92551 -> 147692, 119107 -> 147693", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92551, + "TargetID": 147692, + "Directional": true + }, + { + "SourceID": 119107, + "TargetID": 147693, + "Directional": true + } + ] + }, + { + "ID": 8413, + "SourceStructureID": 5280, + "TargetStructureID": 517, + "Label": "5280-517 via Conventional from 40877 -> 6907", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40877, + "TargetID": 6907, + "Directional": true + } + ] + }, + { + "ID": 8414, + "SourceStructureID": 5281, + "TargetStructureID": 166, + "Label": "5281-166 via Conventional from 39262 -> 39261, 39266 -> 4402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39262, + "TargetID": 39261, + "Directional": true + }, + { + "SourceID": 39266, + "TargetID": 4402, + "Directional": true + } + ] + }, + { + "ID": 8415, + "SourceStructureID": 5281, + "TargetStructureID": 483, + "Label": "5281-483 via Conventional from 36765 -> 6754, 36766 -> 6753", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36765, + "TargetID": 6754, + "Directional": true + }, + { + "SourceID": 36766, + "TargetID": 6753, + "Directional": true + } + ] + }, + { + "ID": 8416, + "SourceStructureID": 5281, + "TargetStructureID": 516, + "Label": "5281-516 via Conventional from 39199 -> 39200, 39260 -> 39259, 116591 -> 39259, 116592 -> 39200", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39199, + "TargetID": 39200, + "Directional": true + }, + { + "SourceID": 39260, + "TargetID": 39259, + "Directional": true + }, + { + "SourceID": 116591, + "TargetID": 39259, + "Directional": true + }, + { + "SourceID": 116592, + "TargetID": 39200, + "Directional": true + } + ] + }, + { + "ID": 8417, + "SourceStructureID": 5281, + "TargetStructureID": 518, + "Label": "5281-518 via Conventional from 36756 -> 36757, 36758 -> 36759, 36760 -> 36761", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36756, + "TargetID": 36757, + "Directional": true + }, + { + "SourceID": 36758, + "TargetID": 36759, + "Directional": true + }, + { + "SourceID": 36760, + "TargetID": 36761, + "Directional": true + } + ] + }, + { + "ID": 8418, + "SourceStructureID": 5281, + "TargetStructureID": 606, + "Label": "5281-606 via Conventional from 51280 -> 42517", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 51280, + "TargetID": 42517, + "Directional": true + } + ] + }, + { + "ID": 8419, + "SourceStructureID": 5281, + "TargetStructureID": 5485, + "Label": "5281-5485 via Conventional from 36772 -> 36773", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36772, + "TargetID": 36773, + "Directional": true + } + ] + }, + { + "ID": 8420, + "SourceStructureID": 5281, + "TargetStructureID": 6117, + "Label": "5281-6117 via Conventional from 39282 -> 39283, 85970 -> 85971", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39282, + "TargetID": 39283, + "Directional": true + }, + { + "SourceID": 85970, + "TargetID": 85971, + "Directional": true + } + ] + }, + { + "ID": 8421, + "SourceStructureID": 5281, + "TargetStructureID": 10625, + "Label": "5281-10625 via Conventional from 39264 -> 39263", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39264, + "TargetID": 39263, + "Directional": true + } + ] + }, + { + "ID": 8422, + "SourceStructureID": 5281, + "TargetStructureID": 10959, + "Label": "5281-10959 via Conventional from 39272 -> 39271, 39274 -> 39273", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39272, + "TargetID": 39271, + "Directional": true + }, + { + "SourceID": 39274, + "TargetID": 39273, + "Directional": true + } + ] + }, + { + "ID": 8423, + "SourceStructureID": 5281, + "TargetStructureID": 10960, + "Label": "5281-10960 via Conventional from 39275 -> 39276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39275, + "TargetID": 39276, + "Directional": true + } + ] + }, + { + "ID": 8424, + "SourceStructureID": 5281, + "TargetStructureID": 15796, + "Label": "5281-15796 via Conventional from 36769 -> 19831", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36769, + "TargetID": 19831, + "Directional": true + } + ] + }, + { + "ID": 8425, + "SourceStructureID": 5281, + "TargetStructureID": 15977, + "Label": "5281-15977 via Conventional from 36791 -> 33961", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36791, + "TargetID": 33961, + "Directional": true + } + ] + }, + { + "ID": 8426, + "SourceStructureID": 5281, + "TargetStructureID": 29277, + "Label": "5281-29277 via Conventional from 39269 -> 29286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39269, + "TargetID": 29286, + "Directional": true + } + ] + }, + { + "ID": 8427, + "SourceStructureID": 5281, + "TargetStructureID": 40991, + "Label": "5281-40991 via Conventional from 39284 -> 40996", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39284, + "TargetID": 40996, + "Directional": true + } + ] + }, + { + "ID": 8428, + "SourceStructureID": 5282, + "TargetStructureID": 909, + "Label": "5282-909 via Conventional from 87556 -> 53739", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87556, + "TargetID": 53739, + "Directional": true + } + ] + }, + { + "ID": 8429, + "SourceStructureID": 5282, + "TargetStructureID": 7129, + "Label": "5282-7129 via Conventional from 87554 -> 87555", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87554, + "TargetID": 87555, + "Directional": true + } + ] + }, + { + "ID": 8430, + "SourceStructureID": 5283, + "TargetStructureID": 3679, + "Label": "5283-3679 via Ribbon Synapse from 124118 -> 132294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124118, + "TargetID": 132294, + "Directional": true + } + ] + }, + { + "ID": 8431, + "SourceStructureID": 5283, + "TargetStructureID": 5350, + "Label": "5283-5350 via Ribbon Synapse from 117748 -> 117749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117748, + "TargetID": 117749, + "Directional": true + } + ] + }, + { + "ID": 8432, + "SourceStructureID": 5283, + "TargetStructureID": 8033, + "Label": "5283-8033 via Ribbon Synapse from 80063 -> 18442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80063, + "TargetID": 18442, + "Directional": true + } + ] + }, + { + "ID": 8433, + "SourceStructureID": 5283, + "TargetStructureID": 12208, + "Label": "5283-12208 via Ribbon Synapse from 24047 -> 22367, 24048 -> 22367, 24049 -> 22367, 24051 -> 22367, 131706 -> 22367, 131707 -> 22367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24047, + "TargetID": 22367, + "Directional": true + }, + { + "SourceID": 24048, + "TargetID": 22367, + "Directional": true + }, + { + "SourceID": 24049, + "TargetID": 22367, + "Directional": true + }, + { + "SourceID": 24051, + "TargetID": 22367, + "Directional": true + }, + { + "SourceID": 131706, + "TargetID": 22367, + "Directional": true + }, + { + "SourceID": 131707, + "TargetID": 22367, + "Directional": true + } + ] + }, + { + "ID": 8434, + "SourceStructureID": 5283, + "TargetStructureID": 20537, + "Label": "5283-20537 via Cistern Pre from 24053 -> 24134", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 24053, + "TargetID": 24134, + "Directional": true + } + ] + }, + { + "ID": 8435, + "SourceStructureID": 5283, + "TargetStructureID": 22554, + "Label": "5283-22554 via Ribbon Synapse from 60882 -> 60883, 80165 -> 80169, 118742 -> 118743, 123819 -> 132121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60882, + "TargetID": 60883, + "Directional": true + }, + { + "SourceID": 80165, + "TargetID": 80169, + "Directional": true + }, + { + "SourceID": 118742, + "TargetID": 118743, + "Directional": true + }, + { + "SourceID": 123819, + "TargetID": 132121, + "Directional": true + } + ] + }, + { + "ID": 8436, + "SourceStructureID": 5283, + "TargetStructureID": 32913, + "Label": "5283-32913 via Ribbon Synapse from 28015 -> 38353, 28016 -> 38353, 28017 -> 38353, 28018 -> 38353, 28019 -> 38353", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28015, + "TargetID": 38353, + "Directional": true + }, + { + "SourceID": 28016, + "TargetID": 38353, + "Directional": true + }, + { + "SourceID": 28017, + "TargetID": 38353, + "Directional": true + }, + { + "SourceID": 28018, + "TargetID": 38353, + "Directional": true + }, + { + "SourceID": 28019, + "TargetID": 38353, + "Directional": true + } + ] + }, + { + "ID": 8437, + "SourceStructureID": 5283, + "TargetStructureID": 33092, + "Label": "5283-33092 via Ribbon Synapse from 22430 -> 132130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22430, + "TargetID": 132130, + "Directional": true + } + ] + }, + { + "ID": 8438, + "SourceStructureID": 5283, + "TargetStructureID": 59422, + "Label": "5283-59422 via Cistern Pre from 132094 -> 132095", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 132094, + "TargetID": 132095, + "Directional": true + } + ] + }, + { + "ID": 8439, + "SourceStructureID": 5283, + "TargetStructureID": 61836, + "Label": "5283-61836 via Ribbon Synapse from 28097 -> 69772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28097, + "TargetID": 69772, + "Directional": true + } + ] + }, + { + "ID": 8440, + "SourceStructureID": 5283, + "TargetStructureID": 64371, + "Label": "5283-64371 via Ribbon Synapse from 28105 -> 124036, 64376 -> 64374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28105, + "TargetID": 124036, + "Directional": true + }, + { + "SourceID": 64376, + "TargetID": 64374, + "Directional": true + } + ] + }, + { + "ID": 8441, + "SourceStructureID": 5283, + "TargetStructureID": 65538, + "Label": "5283-65538 via Ribbon Synapse from 28015 -> 65549, 28016 -> 65549, 28017 -> 65549, 28018 -> 65549, 28019 -> 65549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28015, + "TargetID": 65549, + "Directional": true + }, + { + "SourceID": 28016, + "TargetID": 65549, + "Directional": true + }, + { + "SourceID": 28017, + "TargetID": 65549, + "Directional": true + }, + { + "SourceID": 28018, + "TargetID": 65549, + "Directional": true + }, + { + "SourceID": 28019, + "TargetID": 65549, + "Directional": true + } + ] + }, + { + "ID": 8442, + "SourceStructureID": 5283, + "TargetStructureID": 66303, + "Label": "5283-66303 via Ribbon Synapse from 66311 -> 66312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66311, + "TargetID": 66312, + "Directional": true + } + ] + }, + { + "ID": 8443, + "SourceStructureID": 5283, + "TargetStructureID": 66828, + "Label": "5283-66828 via Ribbon Synapse from 80150 -> 82731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80150, + "TargetID": 82731, + "Directional": true + } + ] + }, + { + "ID": 8444, + "SourceStructureID": 5283, + "TargetStructureID": 67361, + "Label": "5283-67361 via Ribbon Synapse from 118740 -> 131712, 131680 -> 131681", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118740, + "TargetID": 131712, + "Directional": true + }, + { + "SourceID": 131680, + "TargetID": 131681, + "Directional": true + } + ] + }, + { + "ID": 8445, + "SourceStructureID": 5283, + "TargetStructureID": 67973, + "Label": "5283-67973 via Ribbon Synapse from 22427 -> 159609, 22429 -> 67977, 22430 -> 67977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22427, + "TargetID": 159609, + "Directional": true + }, + { + "SourceID": 22429, + "TargetID": 67977, + "Directional": true + }, + { + "SourceID": 22430, + "TargetID": 67977, + "Directional": true + } + ] + }, + { + "ID": 8446, + "SourceStructureID": 5283, + "TargetStructureID": 68087, + "Label": "5283-68087 via Ribbon Synapse from 80150 -> 68227", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80150, + "TargetID": 68227, + "Directional": true + } + ] + }, + { + "ID": 8447, + "SourceStructureID": 5283, + "TargetStructureID": 68435, + "Label": "5283-68435 via Ribbon Synapse from 79884 -> 68451, 80057 -> 68450, 132107 -> 68451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79884, + "TargetID": 68451, + "Directional": true + }, + { + "SourceID": 80057, + "TargetID": 68450, + "Directional": true + }, + { + "SourceID": 132107, + "TargetID": 68451, + "Directional": true + } + ] + }, + { + "ID": 8448, + "SourceStructureID": 5283, + "TargetStructureID": 68453, + "Label": "5283-68453 via Ribbon Synapse from 79889 -> 68458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79889, + "TargetID": 68458, + "Directional": true + } + ] + }, + { + "ID": 8449, + "SourceStructureID": 5283, + "TargetStructureID": 68463, + "Label": "5283-68463 via BC Conventional Synapse from 16141 -> 80406", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16141, + "TargetID": 80406, + "Directional": true + } + ] + }, + { + "ID": 8450, + "SourceStructureID": 5283, + "TargetStructureID": 68463, + "Label": "5283-68463 via Ribbon Synapse from 79884 -> 132106, 132107 -> 132106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79884, + "TargetID": 132106, + "Directional": true + }, + { + "SourceID": 132107, + "TargetID": 132106, + "Directional": true + } + ] + }, + { + "ID": 8451, + "SourceStructureID": 5283, + "TargetStructureID": 69773, + "Label": "5283-69773 via Ribbon Synapse from 28097 -> 69774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28097, + "TargetID": 69774, + "Directional": true + } + ] + }, + { + "ID": 8452, + "SourceStructureID": 5283, + "TargetStructureID": 71195, + "Label": "5283-71195 via Ribbon Synapse from 124159 -> 132302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124159, + "TargetID": 132302, + "Directional": true + } + ] + }, + { + "ID": 8453, + "SourceStructureID": 5283, + "TargetStructureID": 80074, + "Label": "5283-80074 via BC Conventional Synapse from 80073 -> 80077", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80073, + "TargetID": 80077, + "Directional": true + } + ] + }, + { + "ID": 8454, + "SourceStructureID": 5283, + "TargetStructureID": 80083, + "Label": "5283-80083 via Ribbon Synapse from 80082 -> 80084", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80082, + "TargetID": 80084, + "Directional": true + } + ] + }, + { + "ID": 8455, + "SourceStructureID": 5283, + "TargetStructureID": 80086, + "Label": "5283-80086 via Ribbon Synapse from 80085 -> 80087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80085, + "TargetID": 80087, + "Directional": true + } + ] + }, + { + "ID": 8456, + "SourceStructureID": 5283, + "TargetStructureID": 80123, + "Label": "5283-80123 via Ribbon Synapse from 131699 -> 131698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131699, + "TargetID": 131698, + "Directional": true + } + ] + }, + { + "ID": 8457, + "SourceStructureID": 5283, + "TargetStructureID": 80131, + "Label": "5283-80131 via Ribbon Synapse from 80129 -> 132151, 132211 -> 132151, 132212 -> 132151", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80129, + "TargetID": 132151, + "Directional": true + }, + { + "SourceID": 132211, + "TargetID": 132151, + "Directional": true + }, + { + "SourceID": 132212, + "TargetID": 132151, + "Directional": true + } + ] + }, + { + "ID": 8458, + "SourceStructureID": 5283, + "TargetStructureID": 80139, + "Label": "5283-80139 via Ribbon Synapse from 132211 -> 132210, 132212 -> 132210", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132211, + "TargetID": 132210, + "Directional": true + }, + { + "SourceID": 132212, + "TargetID": 132210, + "Directional": true + } + ] + }, + { + "ID": 8459, + "SourceStructureID": 5283, + "TargetStructureID": 80163, + "Label": "5283-80163 via Ribbon Synapse from 123897 -> 80164, 123898 -> 131652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123897, + "TargetID": 80164, + "Directional": true + }, + { + "SourceID": 123898, + "TargetID": 131652, + "Directional": true + } + ] + }, + { + "ID": 8460, + "SourceStructureID": 5283, + "TargetStructureID": 82307, + "Label": "5283-82307 via Ribbon Synapse from 80103 -> 132149", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80103, + "TargetID": 132149, + "Directional": true + } + ] + }, + { + "ID": 8461, + "SourceStructureID": 5283, + "TargetStructureID": 122829, + "Label": "5283-122829 via Ribbon Synapse from 28099 -> 122879, 28100 -> 122879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28099, + "TargetID": 122879, + "Directional": true + }, + { + "SourceID": 28100, + "TargetID": 122879, + "Directional": true + } + ] + }, + { + "ID": 8462, + "SourceStructureID": 5283, + "TargetStructureID": 131635, + "Label": "5283-131635 via Ribbon Synapse from 22438 -> 131636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22438, + "TargetID": 131636, + "Directional": true + } + ] + }, + { + "ID": 8463, + "SourceStructureID": 5283, + "TargetStructureID": 131638, + "Label": "5283-131638 via Ribbon Synapse from 22436 -> 131640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22436, + "TargetID": 131640, + "Directional": true + } + ] + }, + { + "ID": 8464, + "SourceStructureID": 5283, + "TargetStructureID": 131708, + "Label": "5283-131708 via Ribbon Synapse from 118740 -> 131711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118740, + "TargetID": 131711, + "Directional": true + } + ] + }, + { + "ID": 8465, + "SourceStructureID": 5283, + "TargetStructureID": 132038, + "Label": "5283-132038 via Ribbon Synapse from 123377 -> 132039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123377, + "TargetID": 132039, + "Directional": true + } + ] + }, + { + "ID": 8466, + "SourceStructureID": 5283, + "TargetStructureID": 132123, + "Label": "5283-132123 via Ribbon Synapse from 124029 -> 132124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124029, + "TargetID": 132124, + "Directional": true + } + ] + }, + { + "ID": 8467, + "SourceStructureID": 5283, + "TargetStructureID": 132135, + "Label": "5283-132135 via Ribbon Synapse from 28062 -> 132136, 28063 -> 132136, 28064 -> 132136", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28062, + "TargetID": 132136, + "Directional": true + }, + { + "SourceID": 28063, + "TargetID": 132136, + "Directional": true + }, + { + "SourceID": 28064, + "TargetID": 132136, + "Directional": true + } + ] + }, + { + "ID": 8468, + "SourceStructureID": 5283, + "TargetStructureID": 132162, + "Label": "5283-132162 via Ribbon Synapse from 22459 -> 132166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22459, + "TargetID": 132166, + "Directional": true + } + ] + }, + { + "ID": 8469, + "SourceStructureID": 5283, + "TargetStructureID": 132255, + "Label": "5283-132255 via Ribbon Synapse from 132262 -> 132256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132262, + "TargetID": 132256, + "Directional": true + } + ] + }, + { + "ID": 8470, + "SourceStructureID": 5283, + "TargetStructureID": 132257, + "Label": "5283-132257 via Ribbon Synapse from 124012 -> 132258", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124012, + "TargetID": 132258, + "Directional": true + } + ] + }, + { + "ID": 8471, + "SourceStructureID": 5283, + "TargetStructureID": 132259, + "Label": "5283-132259 via Ribbon Synapse from 124012 -> 132260", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124012, + "TargetID": 132260, + "Directional": true + } + ] + }, + { + "ID": 8472, + "SourceStructureID": 5283, + "TargetStructureID": 159638, + "Label": "5283-159638 via Ribbon Synapse from 132131 -> 159641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132131, + "TargetID": 159641, + "Directional": true + } + ] + }, + { + "ID": 8473, + "SourceStructureID": 5284, + "TargetStructureID": 5107, + "Label": "5284-5107 via Ribbon Synapse from 43706 -> 43691, 53427 -> 53428, 113584 -> 113585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43706, + "TargetID": 43691, + "Directional": true + }, + { + "SourceID": 53427, + "TargetID": 53428, + "Directional": true + }, + { + "SourceID": 113584, + "TargetID": 113585, + "Directional": true + } + ] + }, + { + "ID": 8474, + "SourceStructureID": 5284, + "TargetStructureID": 5292, + "Label": "5284-5292 via Adherens from 124681 -> 124683", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 124681, + "TargetID": 124683, + "Directional": true + } + ] + }, + { + "ID": 8475, + "SourceStructureID": 5284, + "TargetStructureID": 5442, + "Label": "5284-5442 via Ribbon Synapse from 54341 -> 56698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54341, + "TargetID": 56698, + "Directional": true + } + ] + }, + { + "ID": 8476, + "SourceStructureID": 5284, + "TargetStructureID": 7073, + "Label": "5284-7073 via Ribbon Synapse from 112565 -> 112564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112565, + "TargetID": 112564, + "Directional": true + } + ] + }, + { + "ID": 8477, + "SourceStructureID": 5284, + "TargetStructureID": 8033, + "Label": "5284-8033 via Ribbon Synapse from 18441 -> 18438, 54375 -> 113203, 60845 -> 113357, 81526 -> 113648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18441, + "TargetID": 18438, + "Directional": true + }, + { + "SourceID": 54375, + "TargetID": 113203, + "Directional": true + }, + { + "SourceID": 60845, + "TargetID": 113357, + "Directional": true + }, + { + "SourceID": 81526, + "TargetID": 113648, + "Directional": true + } + ] + }, + { + "ID": 8478, + "SourceStructureID": 5284, + "TargetStructureID": 8720, + "Label": "5284-8720 via Ribbon Synapse from 54377 -> 127823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54377, + "TargetID": 127823, + "Directional": true + } + ] + }, + { + "ID": 8479, + "SourceStructureID": 5284, + "TargetStructureID": 9769, + "Label": "5284-9769 via Ribbon Synapse from 23465 -> 23466, 23926 -> 23924, 53406 -> 53405", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23465, + "TargetID": 23466, + "Directional": true + }, + { + "SourceID": 23926, + "TargetID": 23924, + "Directional": true + }, + { + "SourceID": 53406, + "TargetID": 53405, + "Directional": true + } + ] + }, + { + "ID": 8480, + "SourceStructureID": 5284, + "TargetStructureID": 16073, + "Label": "5284-16073 via Ribbon Synapse from 23463 -> 23462", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23463, + "TargetID": 23462, + "Directional": true + } + ] + }, + { + "ID": 8481, + "SourceStructureID": 5284, + "TargetStructureID": 35367, + "Label": "5284-35367 via Ribbon Synapse from 35379 -> 35378", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35379, + "TargetID": 35378, + "Directional": true + } + ] + }, + { + "ID": 8482, + "SourceStructureID": 5284, + "TargetStructureID": 38379, + "Label": "5284-38379 via BC Conventional Synapse from 113193 -> 124735", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113193, + "TargetID": 124735, + "Directional": true + } + ] + }, + { + "ID": 8483, + "SourceStructureID": 5284, + "TargetStructureID": 53202, + "Label": "5284-53202 via Ribbon Synapse from 112799 -> 112801", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112799, + "TargetID": 112801, + "Directional": true + } + ] + }, + { + "ID": 8484, + "SourceStructureID": 5284, + "TargetStructureID": 55132, + "Label": "5284-55132 via Ribbon Synapse from 113066 -> 55133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113066, + "TargetID": 55133, + "Directional": true + } + ] + }, + { + "ID": 8485, + "SourceStructureID": 5284, + "TargetStructureID": 55517, + "Label": "5284-55517 via Ribbon Synapse from 49850 -> 55608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49850, + "TargetID": 55608, + "Directional": true + } + ] + }, + { + "ID": 8486, + "SourceStructureID": 5284, + "TargetStructureID": 66165, + "Label": "5284-66165 via Ribbon Synapse from 92852 -> 113272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92852, + "TargetID": 113272, + "Directional": true + } + ] + }, + { + "ID": 8487, + "SourceStructureID": 5284, + "TargetStructureID": 67045, + "Label": "5284-67045 via Ribbon Synapse from 53427 -> 81547", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53427, + "TargetID": 81547, + "Directional": true + } + ] + }, + { + "ID": 8488, + "SourceStructureID": 5284, + "TargetStructureID": 67818, + "Label": "5284-67818 via Ribbon Synapse from 67904 -> 67905", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67904, + "TargetID": 67905, + "Directional": true + } + ] + }, + { + "ID": 8489, + "SourceStructureID": 5284, + "TargetStructureID": 67868, + "Label": "5284-67868 via Ribbon Synapse from 67877 -> 67876", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67877, + "TargetID": 67876, + "Directional": true + } + ] + }, + { + "ID": 8490, + "SourceStructureID": 5284, + "TargetStructureID": 68093, + "Label": "5284-68093 via Ribbon Synapse from 68128 -> 68127, 68132 -> 68133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68128, + "TargetID": 68127, + "Directional": true + }, + { + "SourceID": 68132, + "TargetID": 68133, + "Directional": true + } + ] + }, + { + "ID": 8491, + "SourceStructureID": 5284, + "TargetStructureID": 68135, + "Label": "5284-68135 via Ribbon Synapse from 113594 -> 147971, 147970 -> 147969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113594, + "TargetID": 147971, + "Directional": true + }, + { + "SourceID": 147970, + "TargetID": 147969, + "Directional": true + } + ] + }, + { + "ID": 8492, + "SourceStructureID": 5284, + "TargetStructureID": 68153, + "Label": "5284-68153 via Ribbon Synapse from 68170 -> 68171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68170, + "TargetID": 68171, + "Directional": true + } + ] + }, + { + "ID": 8493, + "SourceStructureID": 5284, + "TargetStructureID": 68198, + "Label": "5284-68198 via Ribbon Synapse from 112873 -> 135757", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112873, + "TargetID": 135757, + "Directional": true + } + ] + }, + { + "ID": 8494, + "SourceStructureID": 5284, + "TargetStructureID": 69162, + "Label": "5284-69162 via Ribbon Synapse from 64608 -> 69176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64608, + "TargetID": 69176, + "Directional": true + } + ] + }, + { + "ID": 8495, + "SourceStructureID": 5284, + "TargetStructureID": 70379, + "Label": "5284-70379 via Ribbon Synapse from 70378 -> 70380, 113390 -> 113399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70378, + "TargetID": 70380, + "Directional": true + }, + { + "SourceID": 113390, + "TargetID": 113399, + "Directional": true + } + ] + }, + { + "ID": 8496, + "SourceStructureID": 5284, + "TargetStructureID": 73521, + "Label": "5284-73521 via Ribbon Synapse from 98155 -> 127693", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98155, + "TargetID": 127693, + "Directional": true + } + ] + }, + { + "ID": 8497, + "SourceStructureID": 5284, + "TargetStructureID": 75713, + "Label": "5284-75713 via Ribbon Synapse from 113381 -> 113382", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113381, + "TargetID": 113382, + "Directional": true + } + ] + }, + { + "ID": 8498, + "SourceStructureID": 5284, + "TargetStructureID": 76811, + "Label": "5284-76811 via Ribbon Synapse from 112926 -> 130279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112926, + "TargetID": 130279, + "Directional": true + } + ] + }, + { + "ID": 8499, + "SourceStructureID": 5284, + "TargetStructureID": 81691, + "Label": "5284-81691 via Ribbon Synapse from 56719 -> 113374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56719, + "TargetID": 113374, + "Directional": true + } + ] + }, + { + "ID": 8500, + "SourceStructureID": 5284, + "TargetStructureID": 92092, + "Label": "5284-92092 via Ribbon Synapse from 112818 -> 112831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112818, + "TargetID": 112831, + "Directional": true + } + ] + }, + { + "ID": 8501, + "SourceStructureID": 5284, + "TargetStructureID": 92865, + "Label": "5284-92865 via Ribbon Synapse from 113540 -> 127688", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113540, + "TargetID": 127688, + "Directional": true + } + ] + }, + { + "ID": 8502, + "SourceStructureID": 5284, + "TargetStructureID": 92872, + "Label": "5284-92872 via Ribbon Synapse from 127697 -> 127698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127697, + "TargetID": 127698, + "Directional": true + } + ] + }, + { + "ID": 8503, + "SourceStructureID": 5284, + "TargetStructureID": 104662, + "Label": "5284-104662 via BC Conventional Synapse from 112592 -> 112591", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112592, + "TargetID": 112591, + "Directional": true + } + ] + }, + { + "ID": 8504, + "SourceStructureID": 5284, + "TargetStructureID": 112819, + "Label": "5284-112819 via Ribbon Synapse from 112818 -> 112820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112818, + "TargetID": 112820, + "Directional": true + } + ] + }, + { + "ID": 8505, + "SourceStructureID": 5284, + "TargetStructureID": 112859, + "Label": "5284-112859 via Ribbon Synapse from 67877 -> 112864, 112872 -> 127909", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67877, + "TargetID": 112864, + "Directional": true + }, + { + "SourceID": 112872, + "TargetID": 127909, + "Directional": true + } + ] + }, + { + "ID": 8506, + "SourceStructureID": 5284, + "TargetStructureID": 113086, + "Label": "5284-113086 via Ribbon Synapse from 64590 -> 113109, 64605 -> 113116", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64590, + "TargetID": 113109, + "Directional": true + }, + { + "SourceID": 64605, + "TargetID": 113116, + "Directional": true + } + ] + }, + { + "ID": 8507, + "SourceStructureID": 5284, + "TargetStructureID": 113342, + "Label": "5284-113342 via Ribbon Synapse from 35379 -> 113349, 54355 -> 113344", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35379, + "TargetID": 113349, + "Directional": true + }, + { + "SourceID": 54355, + "TargetID": 113344, + "Directional": true + } + ] + }, + { + "ID": 8508, + "SourceStructureID": 5284, + "TargetStructureID": 117803, + "Label": "5284-117803 via Ribbon Synapse from 53406 -> 127740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53406, + "TargetID": 127740, + "Directional": true + } + ] + }, + { + "ID": 8509, + "SourceStructureID": 5284, + "TargetStructureID": 117892, + "Label": "5284-117892 via Ribbon Synapse from 127883 -> 130259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127883, + "TargetID": 130259, + "Directional": true + } + ] + }, + { + "ID": 8510, + "SourceStructureID": 5284, + "TargetStructureID": 118405, + "Label": "5284-118405 via BC Conventional Synapse from 113600 -> 130302", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113600, + "TargetID": 130302, + "Directional": true + } + ] + }, + { + "ID": 8511, + "SourceStructureID": 5284, + "TargetStructureID": 120987, + "Label": "5284-120987 via Cistern Pre from 113440 -> 120989", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 113440, + "TargetID": 120989, + "Directional": true + } + ] + }, + { + "ID": 8512, + "SourceStructureID": 5284, + "TargetStructureID": 121044, + "Label": "5284-121044 via Ribbon Synapse from 98157 -> 124617", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98157, + "TargetID": 124617, + "Directional": true + } + ] + }, + { + "ID": 8513, + "SourceStructureID": 5284, + "TargetStructureID": 127897, + "Label": "5284-127897 via Ribbon Synapse from 112795 -> 127898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112795, + "TargetID": 127898, + "Directional": true + } + ] + }, + { + "ID": 8514, + "SourceStructureID": 5284, + "TargetStructureID": 134553, + "Label": "5284-134553 via Ribbon Synapse from 127737 -> 127738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127737, + "TargetID": 127738, + "Directional": true + } + ] + }, + { + "ID": 8515, + "SourceStructureID": 5285, + "TargetStructureID": 5150, + "Label": "5285-5150 via Conventional from 5286 -> 5168, 5298 -> 5161", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 5286, + "TargetID": 5168, + "Directional": true + }, + { + "SourceID": 5298, + "TargetID": 5161, + "Directional": true + } + ] + }, + { + "ID": 8516, + "SourceStructureID": 5285, + "TargetStructureID": 46741, + "Label": "5285-46741 via Conventional from 5291 -> 90189", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 5291, + "TargetID": 90189, + "Directional": true + } + ] + }, + { + "ID": 8517, + "SourceStructureID": 5292, + "TargetStructureID": 598, + "Label": "5292-598 via Ribbon Synapse from 45606 -> 6322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45606, + "TargetID": 6322, + "Directional": true + } + ] + }, + { + "ID": 8518, + "SourceStructureID": 5292, + "TargetStructureID": 606, + "Label": "5292-606 via Ribbon Synapse from 51341 -> 51351, 51352 -> 51353, 51366 -> 51367, 59487 -> 59488", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51341, + "TargetID": 51351, + "Directional": true + }, + { + "SourceID": 51352, + "TargetID": 51353, + "Directional": true + }, + { + "SourceID": 51366, + "TargetID": 51367, + "Directional": true + }, + { + "SourceID": 59487, + "TargetID": 59488, + "Directional": true + } + ] + }, + { + "ID": 8519, + "SourceStructureID": 5292, + "TargetStructureID": 5377, + "Label": "5292-5377 via Ribbon Synapse from 87050 -> 87051", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87050, + "TargetID": 87051, + "Directional": true + } + ] + }, + { + "ID": 8520, + "SourceStructureID": 5292, + "TargetStructureID": 5618, + "Label": "5292-5618 via Ribbon Synapse from 49787 -> 65993", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49787, + "TargetID": 65993, + "Directional": true + } + ] + }, + { + "ID": 8521, + "SourceStructureID": 5292, + "TargetStructureID": 9769, + "Label": "5292-9769 via Ribbon Synapse from 23935 -> 23934, 53649 -> 54444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23935, + "TargetID": 23934, + "Directional": true + }, + { + "SourceID": 53649, + "TargetID": 54444, + "Directional": true + } + ] + }, + { + "ID": 8522, + "SourceStructureID": 5292, + "TargetStructureID": 15796, + "Label": "5292-15796 via Ribbon Synapse from 36006 -> 36004, 51556 -> 15841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36006, + "TargetID": 36004, + "Directional": true + }, + { + "SourceID": 51556, + "TargetID": 15841, + "Directional": true + } + ] + }, + { + "ID": 8523, + "SourceStructureID": 5292, + "TargetStructureID": 35975, + "Label": "5292-35975 via Ribbon Synapse from 36006 -> 36003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36006, + "TargetID": 36003, + "Directional": true + } + ] + }, + { + "ID": 8524, + "SourceStructureID": 5292, + "TargetStructureID": 54078, + "Label": "5292-54078 via Ribbon Synapse from 51578 -> 54082", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51578, + "TargetID": 54082, + "Directional": true + } + ] + }, + { + "ID": 8525, + "SourceStructureID": 5292, + "TargetStructureID": 54261, + "Label": "5292-54261 via Ribbon Synapse from 54258 -> 54262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54258, + "TargetID": 54262, + "Directional": true + } + ] + }, + { + "ID": 8526, + "SourceStructureID": 5292, + "TargetStructureID": 55098, + "Label": "5292-55098 via Ribbon Synapse from 55100 -> 55106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55100, + "TargetID": 55106, + "Directional": true + } + ] + }, + { + "ID": 8527, + "SourceStructureID": 5292, + "TargetStructureID": 55517, + "Label": "5292-55517 via Ribbon Synapse from 49833 -> 55605", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49833, + "TargetID": 55605, + "Directional": true + } + ] + }, + { + "ID": 8528, + "SourceStructureID": 5292, + "TargetStructureID": 59482, + "Label": "5292-59482 via Ribbon Synapse from 51366 -> 59484, 51542 -> 59483, 59487 -> 59486", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51366, + "TargetID": 59484, + "Directional": true + }, + { + "SourceID": 51542, + "TargetID": 59483, + "Directional": true + }, + { + "SourceID": 59487, + "TargetID": 59486, + "Directional": true + } + ] + }, + { + "ID": 8529, + "SourceStructureID": 5292, + "TargetStructureID": 67868, + "Label": "5292-67868 via Ribbon Synapse from 49839 -> 67878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49839, + "TargetID": 67878, + "Directional": true + } + ] + }, + { + "ID": 8530, + "SourceStructureID": 5292, + "TargetStructureID": 68539, + "Label": "5292-68539 via Ribbon Synapse from 51547 -> 84389, 70299 -> 70300, 70301 -> 70411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51547, + "TargetID": 84389, + "Directional": true + }, + { + "SourceID": 70299, + "TargetID": 70300, + "Directional": true + }, + { + "SourceID": 70301, + "TargetID": 70411, + "Directional": true + } + ] + }, + { + "ID": 8531, + "SourceStructureID": 5292, + "TargetStructureID": 70331, + "Label": "5292-70331 via Ribbon Synapse from 51579 -> 70333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51579, + "TargetID": 70333, + "Directional": true + } + ] + }, + { + "ID": 8532, + "SourceStructureID": 5292, + "TargetStructureID": 70334, + "Label": "5292-70334 via Ribbon Synapse from 51579 -> 70336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51579, + "TargetID": 70336, + "Directional": true + } + ] + }, + { + "ID": 8533, + "SourceStructureID": 5292, + "TargetStructureID": 70454, + "Label": "5292-70454 via Ribbon Synapse from 51547 -> 89565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51547, + "TargetID": 89565, + "Directional": true + } + ] + }, + { + "ID": 8534, + "SourceStructureID": 5292, + "TargetStructureID": 87052, + "Label": "5292-87052 via Ribbon Synapse from 87050 -> 87053", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87050, + "TargetID": 87053, + "Directional": true + } + ] + }, + { + "ID": 8535, + "SourceStructureID": 5294, + "TargetStructureID": 579, + "Label": "5294-579 via Conventional from 32322 -> 32320", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32322, + "TargetID": 32320, + "Directional": true + } + ] + }, + { + "ID": 8536, + "SourceStructureID": 5294, + "TargetStructureID": 5562, + "Label": "5294-5562 via Conventional from 32338 -> 32339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32338, + "TargetID": 32339, + "Directional": true + } + ] + }, + { + "ID": 8537, + "SourceStructureID": 5294, + "TargetStructureID": 5645, + "Label": "5294-5645 via Conventional from 39474 -> 39490, 39493 -> 39494, 93040 -> 93041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39474, + "TargetID": 39490, + "Directional": true + }, + { + "SourceID": 39493, + "TargetID": 39494, + "Directional": true + }, + { + "SourceID": 93040, + "TargetID": 93041, + "Directional": true + } + ] + }, + { + "ID": 8538, + "SourceStructureID": 5294, + "TargetStructureID": 5650, + "Label": "5294-5650 via Conventional from 39468 -> 39469", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39468, + "TargetID": 39469, + "Directional": true + } + ] + }, + { + "ID": 8539, + "SourceStructureID": 5294, + "TargetStructureID": 7897, + "Label": "5294-7897 via Conventional from 93047 -> 93048", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93047, + "TargetID": 93048, + "Directional": true + } + ] + }, + { + "ID": 8540, + "SourceStructureID": 5294, + "TargetStructureID": 15796, + "Label": "5294-15796 via Conventional from 93050 -> 93051", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93050, + "TargetID": 93051, + "Directional": true + } + ] + }, + { + "ID": 8541, + "SourceStructureID": 5294, + "TargetStructureID": 92970, + "Label": "5294-92970 via Conventional from 92969 -> 93034", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92969, + "TargetID": 93034, + "Directional": true + } + ] + }, + { + "ID": 8542, + "SourceStructureID": 5294, + "TargetStructureID": 93053, + "Label": "5294-93053 via Conventional from 39475 -> 93054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39475, + "TargetID": 93054, + "Directional": true + } + ] + }, + { + "ID": 8543, + "SourceStructureID": 5294, + "TargetStructureID": 93115, + "Label": "5294-93115 via Conventional from 32328 -> 93116", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32328, + "TargetID": 93116, + "Directional": true + } + ] + }, + { + "ID": 8544, + "SourceStructureID": 5295, + "TargetStructureID": 85629, + "Label": "5295-85629 via Ribbon Synapse from 36401 -> 85829, 36403 -> 85827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36401, + "TargetID": 85829, + "Directional": true + }, + { + "SourceID": 36403, + "TargetID": 85827, + "Directional": true + } + ] + }, + { + "ID": 8545, + "SourceStructureID": 5295, + "TargetStructureID": 85856, + "Label": "5295-85856 via Ribbon Synapse from 85864 -> 85863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85864, + "TargetID": 85863, + "Directional": true + } + ] + }, + { + "ID": 8546, + "SourceStructureID": 5297, + "TargetStructureID": 5405, + "Label": "5297-5405 via Ribbon Synapse from 23430 -> 23429, 32225 -> 11183, 98469 -> 11187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23430, + "TargetID": 23429, + "Directional": true + }, + { + "SourceID": 32225, + "TargetID": 11183, + "Directional": true + }, + { + "SourceID": 98469, + "TargetID": 11187, + "Directional": true + } + ] + }, + { + "ID": 8547, + "SourceStructureID": 5297, + "TargetStructureID": 5618, + "Label": "5297-5618 via Ribbon Synapse from 56810 -> 66006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56810, + "TargetID": 66006, + "Directional": true + } + ] + }, + { + "ID": 8548, + "SourceStructureID": 5297, + "TargetStructureID": 7134, + "Label": "5297-7134 via Ribbon Synapse from 61483 -> 122178, 93271 -> 122221, 93276 -> 122224, 116488 -> 147934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61483, + "TargetID": 122178, + "Directional": true + }, + { + "SourceID": 93271, + "TargetID": 122221, + "Directional": true + }, + { + "SourceID": 93276, + "TargetID": 122224, + "Directional": true + }, + { + "SourceID": 116488, + "TargetID": 147934, + "Directional": true + } + ] + }, + { + "ID": 8549, + "SourceStructureID": 5297, + "TargetStructureID": 8575, + "Label": "5297-8575 via BC Conventional Synapse from 93339 -> 93340", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93339, + "TargetID": 93340, + "Directional": true + } + ] + }, + { + "ID": 8550, + "SourceStructureID": 5297, + "TargetStructureID": 8575, + "Label": "5297-8575 via Ribbon Synapse from 53671 -> 62270, 93388 -> 93391, 98134 -> 62823, 98257 -> 62817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53671, + "TargetID": 62270, + "Directional": true + }, + { + "SourceID": 93388, + "TargetID": 93391, + "Directional": true + }, + { + "SourceID": 98134, + "TargetID": 62823, + "Directional": true + }, + { + "SourceID": 98257, + "TargetID": 62817, + "Directional": true + } + ] + }, + { + "ID": 8551, + "SourceStructureID": 5297, + "TargetStructureID": 9347, + "Label": "5297-9347 via Ribbon Synapse from 53640 -> 93341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53640, + "TargetID": 93341, + "Directional": true + } + ] + }, + { + "ID": 8552, + "SourceStructureID": 5297, + "TargetStructureID": 9769, + "Label": "5297-9769 via Ribbon Synapse from 39422 -> 39423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39422, + "TargetID": 39423, + "Directional": true + } + ] + }, + { + "ID": 8553, + "SourceStructureID": 5297, + "TargetStructureID": 13492, + "Label": "5297-13492 via Ribbon Synapse from 37615 -> 37616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37615, + "TargetID": 37616, + "Directional": true + } + ] + }, + { + "ID": 8554, + "SourceStructureID": 5297, + "TargetStructureID": 22974, + "Label": "5297-22974 via BC Conventional Synapse from 116436 -> 134279", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116436, + "TargetID": 134279, + "Directional": true + } + ] + }, + { + "ID": 8555, + "SourceStructureID": 5297, + "TargetStructureID": 22974, + "Label": "5297-22974 via Ribbon Synapse from 39431 -> 39432", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39431, + "TargetID": 39432, + "Directional": true + } + ] + }, + { + "ID": 8556, + "SourceStructureID": 5297, + "TargetStructureID": 38379, + "Label": "5297-38379 via Ribbon Synapse from 38384 -> 38383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38384, + "TargetID": 38383, + "Directional": true + } + ] + }, + { + "ID": 8557, + "SourceStructureID": 5297, + "TargetStructureID": 54078, + "Label": "5297-54078 via Ribbon Synapse from 54081 -> 54080, 116343 -> 134512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54081, + "TargetID": 54080, + "Directional": true + }, + { + "SourceID": 116343, + "TargetID": 134512, + "Directional": true + } + ] + }, + { + "ID": 8558, + "SourceStructureID": 5297, + "TargetStructureID": 61450, + "Label": "5297-61450 via BC Conventional Synapse from 116466 -> 61459", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116466, + "TargetID": 61459, + "Directional": true + } + ] + }, + { + "ID": 8559, + "SourceStructureID": 5297, + "TargetStructureID": 61450, + "Label": "5297-61450 via Ribbon Synapse from 131395 -> 131396", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131395, + "TargetID": 131396, + "Directional": true + } + ] + }, + { + "ID": 8560, + "SourceStructureID": 5297, + "TargetStructureID": 61823, + "Label": "5297-61823 via Ribbon Synapse from 64620 -> 64621, 68580 -> 68639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64620, + "TargetID": 64621, + "Directional": true + }, + { + "SourceID": 68580, + "TargetID": 68639, + "Directional": true + } + ] + }, + { + "ID": 8561, + "SourceStructureID": 5297, + "TargetStructureID": 62842, + "Label": "5297-62842 via BC Conventional Synapse from 62845 -> 62844", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62845, + "TargetID": 62844, + "Directional": true + } + ] + }, + { + "ID": 8562, + "SourceStructureID": 5297, + "TargetStructureID": 66111, + "Label": "5297-66111 via Ribbon Synapse from 61349 -> 68592, 68593 -> 68592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61349, + "TargetID": 68592, + "Directional": true + }, + { + "SourceID": 68593, + "TargetID": 68592, + "Directional": true + } + ] + }, + { + "ID": 8563, + "SourceStructureID": 5297, + "TargetStructureID": 66523, + "Label": "5297-66523 via Ribbon Synapse from 75345 -> 75346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75345, + "TargetID": 75346, + "Directional": true + } + ] + }, + { + "ID": 8564, + "SourceStructureID": 5297, + "TargetStructureID": 68539, + "Label": "5297-68539 via Ribbon Synapse from 68575 -> 68574, 68580 -> 68581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68575, + "TargetID": 68574, + "Directional": true + }, + { + "SourceID": 68580, + "TargetID": 68581, + "Directional": true + } + ] + }, + { + "ID": 8565, + "SourceStructureID": 5297, + "TargetStructureID": 75347, + "Label": "5297-75347 via Ribbon Synapse from 75345 -> 75348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75345, + "TargetID": 75348, + "Directional": true + } + ] + }, + { + "ID": 8566, + "SourceStructureID": 5297, + "TargetStructureID": 93318, + "Label": "5297-93318 via Ribbon Synapse from 93317 -> 93319", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93317, + "TargetID": 93319, + "Directional": true + } + ] + }, + { + "ID": 8567, + "SourceStructureID": 5297, + "TargetStructureID": 93325, + "Label": "5297-93325 via Ribbon Synapse from 93331 -> 98463", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93331, + "TargetID": 98463, + "Directional": true + } + ] + }, + { + "ID": 8568, + "SourceStructureID": 5297, + "TargetStructureID": 93327, + "Label": "5297-93327 via Ribbon Synapse from 53661 -> 93328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53661, + "TargetID": 93328, + "Directional": true + } + ] + }, + { + "ID": 8569, + "SourceStructureID": 5297, + "TargetStructureID": 93336, + "Label": "5297-93336 via Ribbon Synapse from 53696 -> 93337", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53696, + "TargetID": 93337, + "Directional": true + } + ] + }, + { + "ID": 8570, + "SourceStructureID": 5297, + "TargetStructureID": 93342, + "Label": "5297-93342 via Ribbon Synapse from 53640 -> 93343", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53640, + "TargetID": 93343, + "Directional": true + } + ] + }, + { + "ID": 8571, + "SourceStructureID": 5297, + "TargetStructureID": 93371, + "Label": "5297-93371 via Ribbon Synapse from 93378 -> 93376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93378, + "TargetID": 93376, + "Directional": true + } + ] + }, + { + "ID": 8572, + "SourceStructureID": 5297, + "TargetStructureID": 93373, + "Label": "5297-93373 via Ribbon Synapse from 93378 -> 93375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93378, + "TargetID": 93375, + "Directional": true + } + ] + }, + { + "ID": 8573, + "SourceStructureID": 5297, + "TargetStructureID": 93384, + "Label": "5297-93384 via Ribbon Synapse from 53657 -> 93385", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53657, + "TargetID": 93385, + "Directional": true + } + ] + }, + { + "ID": 8574, + "SourceStructureID": 5297, + "TargetStructureID": 98456, + "Label": "5297-98456 via Ribbon Synapse from 93378 -> 98458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93378, + "TargetID": 98458, + "Directional": true + } + ] + }, + { + "ID": 8575, + "SourceStructureID": 5297, + "TargetStructureID": 121070, + "Label": "5297-121070 via BC Conventional Synapse from 98266 -> 134293", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98266, + "TargetID": 134293, + "Directional": true + } + ] + }, + { + "ID": 8576, + "SourceStructureID": 5297, + "TargetStructureID": 121288, + "Label": "5297-121288 via BC Conventional Synapse from 116355 -> 121290", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116355, + "TargetID": 121290, + "Directional": true + } + ] + }, + { + "ID": 8577, + "SourceStructureID": 5297, + "TargetStructureID": 121294, + "Label": "5297-121294 via Ribbon Synapse from 116354 -> 121296", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116354, + "TargetID": 121296, + "Directional": true + } + ] + }, + { + "ID": 8578, + "SourceStructureID": 5297, + "TargetStructureID": 121315, + "Label": "5297-121315 via Ribbon Synapse from 113609 -> 121320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113609, + "TargetID": 121320, + "Directional": true + } + ] + }, + { + "ID": 8579, + "SourceStructureID": 5303, + "TargetStructureID": 471, + "Label": "5303-471 via Conventional from 32784 -> 32785", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32784, + "TargetID": 32785, + "Directional": true + } + ] + }, + { + "ID": 8580, + "SourceStructureID": 5303, + "TargetStructureID": 476, + "Label": "5303-476 via Conventional from 102991 -> 3212", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102991, + "TargetID": 3212, + "Directional": true + } + ] + }, + { + "ID": 8581, + "SourceStructureID": 5303, + "TargetStructureID": 517, + "Label": "5303-517 via Conventional from 35624 -> 14948", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35624, + "TargetID": 14948, + "Directional": true + } + ] + }, + { + "ID": 8582, + "SourceStructureID": 5303, + "TargetStructureID": 519, + "Label": "5303-519 via Conventional from 8743 -> 3598", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8743, + "TargetID": 3598, + "Directional": true + } + ] + }, + { + "ID": 8583, + "SourceStructureID": 5303, + "TargetStructureID": 5017, + "Label": "5303-5017 via Conventional from 102634 -> 5037", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102634, + "TargetID": 5037, + "Directional": true + } + ] + }, + { + "ID": 8584, + "SourceStructureID": 5303, + "TargetStructureID": 5563, + "Label": "5303-5563 via Conventional from 6180 -> 35650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6180, + "TargetID": 35650, + "Directional": true + } + ] + }, + { + "ID": 8585, + "SourceStructureID": 5303, + "TargetStructureID": 5592, + "Label": "5303-5592 via Conventional from 35734 -> 36841", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35734, + "TargetID": 36841, + "Directional": true + } + ] + }, + { + "ID": 8586, + "SourceStructureID": 5303, + "TargetStructureID": 6135, + "Label": "5303-6135 via Conventional from 35638 -> 35639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35638, + "TargetID": 35639, + "Directional": true + } + ] + }, + { + "ID": 8587, + "SourceStructureID": 5303, + "TargetStructureID": 7054, + "Label": "5303-7054 via Conventional from 30550 -> 30552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30550, + "TargetID": 30552, + "Directional": true + } + ] + }, + { + "ID": 8588, + "SourceStructureID": 5303, + "TargetStructureID": 8749, + "Label": "5303-8749 via Conventional from 8748 -> 17157", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8748, + "TargetID": 17157, + "Directional": true + } + ] + }, + { + "ID": 8589, + "SourceStructureID": 5303, + "TargetStructureID": 10625, + "Label": "5303-10625 via Conventional from 30523 -> 20760", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30523, + "TargetID": 20760, + "Directional": true + } + ] + }, + { + "ID": 8590, + "SourceStructureID": 5303, + "TargetStructureID": 10826, + "Label": "5303-10826 via Conventional from 6182 -> 11269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6182, + "TargetID": 11269, + "Directional": true + } + ] + }, + { + "ID": 8591, + "SourceStructureID": 5303, + "TargetStructureID": 10872, + "Label": "5303-10872 via Conventional from 30565 -> 15748, 100700 -> 15750", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30565, + "TargetID": 15748, + "Directional": true + }, + { + "SourceID": 100700, + "TargetID": 15750, + "Directional": true + } + ] + }, + { + "ID": 8592, + "SourceStructureID": 5303, + "TargetStructureID": 10897, + "Label": "5303-10897 via Conventional from 35632 -> 35633, 35634 -> 35635, 102666 -> 102667", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35632, + "TargetID": 35633, + "Directional": true + }, + { + "SourceID": 35634, + "TargetID": 35635, + "Directional": true + }, + { + "SourceID": 102666, + "TargetID": 102667, + "Directional": true + } + ] + }, + { + "ID": 8593, + "SourceStructureID": 5303, + "TargetStructureID": 10943, + "Label": "5303-10943 via Conventional from 35627 -> 35628", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35627, + "TargetID": 35628, + "Directional": true + } + ] + }, + { + "ID": 8594, + "SourceStructureID": 5303, + "TargetStructureID": 10953, + "Label": "5303-10953 via Conventional from 24054 -> 33266", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24054, + "TargetID": 33266, + "Directional": true + } + ] + }, + { + "ID": 8595, + "SourceStructureID": 5303, + "TargetStructureID": 10956, + "Label": "5303-10956 via Conventional from 24061 -> 35652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24061, + "TargetID": 35652, + "Directional": true + } + ] + }, + { + "ID": 8596, + "SourceStructureID": 5303, + "TargetStructureID": 10961, + "Label": "5303-10961 via Conventional from 24057 -> 33250", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24057, + "TargetID": 33250, + "Directional": true + } + ] + }, + { + "ID": 8597, + "SourceStructureID": 5303, + "TargetStructureID": 11049, + "Label": "5303-11049 via Conventional from 35594 -> 35595, 35602 -> 35603", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35594, + "TargetID": 35595, + "Directional": true + }, + { + "SourceID": 35602, + "TargetID": 35603, + "Directional": true + } + ] + }, + { + "ID": 8598, + "SourceStructureID": 5303, + "TargetStructureID": 11085, + "Label": "5303-11085 via Conventional from 24013 -> 24026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24013, + "TargetID": 24026, + "Directional": true + } + ] + }, + { + "ID": 8599, + "SourceStructureID": 5303, + "TargetStructureID": 11172, + "Label": "5303-11172 via Conventional from 30554 -> 100698, 33000 -> 15700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30554, + "TargetID": 100698, + "Directional": true + }, + { + "SourceID": 33000, + "TargetID": 15700, + "Directional": true + } + ] + }, + { + "ID": 8600, + "SourceStructureID": 5303, + "TargetStructureID": 14615, + "Label": "5303-14615 via Conventional from 6178 -> 35648, 6179 -> 35649, 64558 -> 64559", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6178, + "TargetID": 35648, + "Directional": true + }, + { + "SourceID": 6179, + "TargetID": 35649, + "Directional": true + }, + { + "SourceID": 64558, + "TargetID": 64559, + "Directional": true + } + ] + }, + { + "ID": 8601, + "SourceStructureID": 5303, + "TargetStructureID": 15100, + "Label": "5303-15100 via Conventional from 102939 -> 102940", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102939, + "TargetID": 102940, + "Directional": true + } + ] + }, + { + "ID": 8602, + "SourceStructureID": 5325, + "TargetStructureID": 8575, + "Label": "5325-8575 via Ribbon Synapse from 68755 -> 21634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68755, + "TargetID": 21634, + "Directional": true + } + ] + }, + { + "ID": 8603, + "SourceStructureID": 5325, + "TargetStructureID": 40493, + "Label": "5325-40493 via Ribbon Synapse from 36409 -> 40494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36409, + "TargetID": 40494, + "Directional": true + } + ] + }, + { + "ID": 8604, + "SourceStructureID": 5325, + "TargetStructureID": 40495, + "Label": "5325-40495 via BC Conventional Synapse from 36410 -> 40496", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36410, + "TargetID": 40496, + "Directional": true + } + ] + }, + { + "ID": 8605, + "SourceStructureID": 5325, + "TargetStructureID": 40498, + "Label": "5325-40498 via Ribbon Synapse from 36408 -> 40499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36408, + "TargetID": 40499, + "Directional": true + } + ] + }, + { + "ID": 8606, + "SourceStructureID": 5331, + "TargetStructureID": 5595, + "Label": "5331-5595 via Conventional from 39185 -> 33622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39185, + "TargetID": 33622, + "Directional": true + } + ] + }, + { + "ID": 8607, + "SourceStructureID": 5331, + "TargetStructureID": 10625, + "Label": "5331-10625 via Conventional from 39174 -> 26926, 39176 -> 39177", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39174, + "TargetID": 26926, + "Directional": true + }, + { + "SourceID": 39176, + "TargetID": 39177, + "Directional": true + } + ] + }, + { + "ID": 8608, + "SourceStructureID": 5338, + "TargetStructureID": 8575, + "Label": "5338-8575 via Conventional from 63004 -> 63002, 63006 -> 21647", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63004, + "TargetID": 63002, + "Directional": true + }, + { + "SourceID": 63006, + "TargetID": 21647, + "Directional": true + } + ] + }, + { + "ID": 8609, + "SourceStructureID": 5345, + "TargetStructureID": 59229, + "Label": "5345-59229 via Conventional from 59259 -> 59260", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59259, + "TargetID": 59260, + "Directional": true + } + ] + }, + { + "ID": 8610, + "SourceStructureID": 5350, + "TargetStructureID": 6857, + "Label": "5350-6857 via Conventional from 10635 -> 10636, 10660 -> 10661", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10635, + "TargetID": 10636, + "Directional": true + }, + { + "SourceID": 10660, + "TargetID": 10661, + "Directional": true + } + ] + }, + { + "ID": 8611, + "SourceStructureID": 5351, + "TargetStructureID": 178, + "Label": "5351-178 via Conventional from 24106 -> 3273", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24106, + "TargetID": 3273, + "Directional": true + } + ] + }, + { + "ID": 8612, + "SourceStructureID": 5351, + "TargetStructureID": 5602, + "Label": "5351-5602 via Conventional from 24081 -> 24104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24081, + "TargetID": 24104, + "Directional": true + } + ] + }, + { + "ID": 8613, + "SourceStructureID": 5351, + "TargetStructureID": 7073, + "Label": "5351-7073 via Conventional from 24068 -> 24066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24068, + "TargetID": 24066, + "Directional": true + } + ] + }, + { + "ID": 8614, + "SourceStructureID": 5352, + "TargetStructureID": 5575, + "Label": "5352-5575 via Conventional from 24118 -> 24117", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24118, + "TargetID": 24117, + "Directional": true + } + ] + }, + { + "ID": 8615, + "SourceStructureID": 5355, + "TargetStructureID": 10963, + "Label": "5355-10963 via Conventional from 5461 -> 136923", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 5461, + "TargetID": 136923, + "Directional": true + } + ] + }, + { + "ID": 8616, + "SourceStructureID": 5372, + "TargetStructureID": 906, + "Label": "5372-906 via Conventional from 41076 -> 16627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41076, + "TargetID": 16627, + "Directional": true + } + ] + }, + { + "ID": 8617, + "SourceStructureID": 5377, + "TargetStructureID": 161, + "Label": "5377-161 via Conventional from 22740 -> 22741, 87013 -> 22741", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22740, + "TargetID": 22741, + "Directional": true + }, + { + "SourceID": 87013, + "TargetID": 22741, + "Directional": true + } + ] + }, + { + "ID": 8618, + "SourceStructureID": 5377, + "TargetStructureID": 173, + "Label": "5377-173 via Conventional from 87063 -> 12019, 87083 -> 11999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87063, + "TargetID": 12019, + "Directional": true + }, + { + "SourceID": 87083, + "TargetID": 11999, + "Directional": true + } + ] + }, + { + "ID": 8619, + "SourceStructureID": 5377, + "TargetStructureID": 1637, + "Label": "5377-1637 via Conventional from 22774 -> 22779", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22774, + "TargetID": 22779, + "Directional": true + } + ] + }, + { + "ID": 8620, + "SourceStructureID": 5377, + "TargetStructureID": 5118, + "Label": "5377-5118 via Conventional from 87024 -> 52227", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87024, + "TargetID": 52227, + "Directional": true + } + ] + }, + { + "ID": 8621, + "SourceStructureID": 5377, + "TargetStructureID": 5279, + "Label": "5377-5279 via Conventional from 22751 -> 119108, 98582 -> 98583", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22751, + "TargetID": 119108, + "Directional": true + }, + { + "SourceID": 98582, + "TargetID": 98583, + "Directional": true + } + ] + }, + { + "ID": 8622, + "SourceStructureID": 5377, + "TargetStructureID": 5292, + "Label": "5377-5292 via Conventional from 22738 -> 22739", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22738, + "TargetID": 22739, + "Directional": true + } + ] + }, + { + "ID": 8623, + "SourceStructureID": 5377, + "TargetStructureID": 5530, + "Label": "5377-5530 via Conventional from 87088 -> 42131", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87088, + "TargetID": 42131, + "Directional": true + } + ] + }, + { + "ID": 8624, + "SourceStructureID": 5377, + "TargetStructureID": 5561, + "Label": "5377-5561 via Conventional from 97747 -> 97746", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97747, + "TargetID": 97746, + "Directional": true + } + ] + }, + { + "ID": 8625, + "SourceStructureID": 5377, + "TargetStructureID": 20136, + "Label": "5377-20136 via Conventional from 87028 -> 87029", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87028, + "TargetID": 87029, + "Directional": true + } + ] + }, + { + "ID": 8626, + "SourceStructureID": 5377, + "TargetStructureID": 58714, + "Label": "5377-58714 via Conventional from 87086 -> 58734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87086, + "TargetID": 58734, + "Directional": true + } + ] + }, + { + "ID": 8627, + "SourceStructureID": 5377, + "TargetStructureID": 75583, + "Label": "5377-75583 via Conventional from 22753 -> 75592", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22753, + "TargetID": 75592, + "Directional": true + } + ] + }, + { + "ID": 8628, + "SourceStructureID": 5377, + "TargetStructureID": 80562, + "Label": "5377-80562 via Conventional from 87089 -> 87092", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87089, + "TargetID": 87092, + "Directional": true + } + ] + }, + { + "ID": 8629, + "SourceStructureID": 5377, + "TargetStructureID": 87020, + "Label": "5377-87020 via Conventional from 87019 -> 87021", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87019, + "TargetID": 87021, + "Directional": true + } + ] + }, + { + "ID": 8630, + "SourceStructureID": 5377, + "TargetStructureID": 87095, + "Label": "5377-87095 via Conventional from 87094 -> 87096", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87094, + "TargetID": 87096, + "Directional": true + } + ] + }, + { + "ID": 8631, + "SourceStructureID": 5377, + "TargetStructureID": 87098, + "Label": "5377-87098 via Conventional from 87097 -> 87099", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87097, + "TargetID": 87099, + "Directional": true + } + ] + }, + { + "ID": 8632, + "SourceStructureID": 5377, + "TargetStructureID": 88199, + "Label": "5377-88199 via Conventional from 87044 -> 88237", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87044, + "TargetID": 88237, + "Directional": true + } + ] + }, + { + "ID": 8633, + "SourceStructureID": 5382, + "TargetStructureID": 6857, + "Label": "5382-6857 via Conventional from 59641 -> 7526", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59641, + "TargetID": 7526, + "Directional": true + } + ] + }, + { + "ID": 8634, + "SourceStructureID": 5388, + "TargetStructureID": 6146, + "Label": "5388-6146 via Conventional from 20215 -> 38097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20215, + "TargetID": 38097, + "Directional": true + } + ] + }, + { + "ID": 8635, + "SourceStructureID": 5390, + "TargetStructureID": 5916, + "Label": "5390-5916 via Conventional from 55696 -> 37980", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55696, + "TargetID": 37980, + "Directional": true + } + ] + }, + { + "ID": 8636, + "SourceStructureID": 5394, + "TargetStructureID": 518, + "Label": "5394-518 via Conventional from 22811 -> 3384", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22811, + "TargetID": 3384, + "Directional": true + } + ] + }, + { + "ID": 8637, + "SourceStructureID": 5394, + "TargetStructureID": 10931, + "Label": "5394-10931 via Conventional from 77054 -> 77055, 77057 -> 77058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77054, + "TargetID": 77055, + "Directional": true + }, + { + "SourceID": 77057, + "TargetID": 77058, + "Directional": true + } + ] + }, + { + "ID": 8638, + "SourceStructureID": 5394, + "TargetStructureID": 10943, + "Label": "5394-10943 via Conventional from 22808 -> 22809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22808, + "TargetID": 22809, + "Directional": true + } + ] + }, + { + "ID": 8639, + "SourceStructureID": 5394, + "TargetStructureID": 11031, + "Label": "5394-11031 via Conventional from 77060 -> 77064, 77062 -> 25443, 77063 -> 25444", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77060, + "TargetID": 77064, + "Directional": true + }, + { + "SourceID": 77062, + "TargetID": 25443, + "Directional": true + }, + { + "SourceID": 77063, + "TargetID": 25444, + "Directional": true + } + ] + }, + { + "ID": 8640, + "SourceStructureID": 5394, + "TargetStructureID": 14615, + "Label": "5394-14615 via Conventional from 76804 -> 76805, 76817 -> 76818, 76819 -> 76820, 77101 -> 77102, 87951 -> 87952", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76804, + "TargetID": 76805, + "Directional": true + }, + { + "SourceID": 76817, + "TargetID": 76818, + "Directional": true + }, + { + "SourceID": 76819, + "TargetID": 76820, + "Directional": true + }, + { + "SourceID": 77101, + "TargetID": 77102, + "Directional": true + }, + { + "SourceID": 87951, + "TargetID": 87952, + "Directional": true + } + ] + }, + { + "ID": 8641, + "SourceStructureID": 5396, + "TargetStructureID": 5565, + "Label": "5396-5565 via Conventional from 89484 -> 53961", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89484, + "TargetID": 53961, + "Directional": true + } + ] + }, + { + "ID": 8642, + "SourceStructureID": 5396, + "TargetStructureID": 89312, + "Label": "5396-89312 via Conventional from 89454 -> 89315", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89454, + "TargetID": 89315, + "Directional": true + } + ] + }, + { + "ID": 8643, + "SourceStructureID": 5402, + "TargetStructureID": 5563, + "Label": "5402-5563 via Conventional from 129595 -> 129597, 129596 -> 129598, 129599 -> 129600, 129602 -> 129603", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129595, + "TargetID": 129597, + "Directional": true + }, + { + "SourceID": 129596, + "TargetID": 129598, + "Directional": true + }, + { + "SourceID": 129599, + "TargetID": 129600, + "Directional": true + }, + { + "SourceID": 129602, + "TargetID": 129603, + "Directional": true + } + ] + }, + { + "ID": 8644, + "SourceStructureID": 5402, + "TargetStructureID": 10943, + "Label": "5402-10943 via Conventional from 129551 -> 16255, 129553 -> 16257", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129551, + "TargetID": 16255, + "Directional": true + }, + { + "SourceID": 129553, + "TargetID": 16257, + "Directional": true + } + ] + }, + { + "ID": 8645, + "SourceStructureID": 5402, + "TargetStructureID": 14615, + "Label": "5402-14615 via Conventional from 76605 -> 76910, 76606 -> 76911", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76605, + "TargetID": 76910, + "Directional": true + }, + { + "SourceID": 76606, + "TargetID": 76911, + "Directional": true + } + ] + }, + { + "ID": 8646, + "SourceStructureID": 5405, + "TargetStructureID": 909, + "Label": "5405-909 via Conventional from 11176 -> 87035, 11182 -> 120110, 117424 -> 53733, 117658 -> 53761, 131033 -> 131031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11176, + "TargetID": 87035, + "Directional": true + }, + { + "SourceID": 11182, + "TargetID": 120110, + "Directional": true + }, + { + "SourceID": 117424, + "TargetID": 53733, + "Directional": true + }, + { + "SourceID": 117658, + "TargetID": 53761, + "Directional": true + }, + { + "SourceID": 131033, + "TargetID": 131031, + "Directional": true + } + ] + }, + { + "ID": 8647, + "SourceStructureID": 5405, + "TargetStructureID": 999, + "Label": "5405-999 via Conventional from 23406 -> 23415, 23407 -> 23414", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23406, + "TargetID": 23415, + "Directional": true + }, + { + "SourceID": 23407, + "TargetID": 23414, + "Directional": true + } + ] + }, + { + "ID": 8648, + "SourceStructureID": 5405, + "TargetStructureID": 3756, + "Label": "5405-3756 via Conventional from 116247 -> 116246, 116259 -> 116258, 120469 -> 116238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116247, + "TargetID": 116246, + "Directional": true + }, + { + "SourceID": 116259, + "TargetID": 116258, + "Directional": true + }, + { + "SourceID": 120469, + "TargetID": 116238, + "Directional": true + } + ] + }, + { + "ID": 8649, + "SourceStructureID": 5405, + "TargetStructureID": 5297, + "Label": "5405-5297 via Conventional from 11184 -> 32226, 23431 -> 23432, 116496 -> 116495", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11184, + "TargetID": 32226, + "Directional": true + }, + { + "SourceID": 23431, + "TargetID": 23432, + "Directional": true + }, + { + "SourceID": 116496, + "TargetID": 116495, + "Directional": true + } + ] + }, + { + "ID": 8650, + "SourceStructureID": 5405, + "TargetStructureID": 5500, + "Label": "5405-5500 via Conventional from 11171 -> 40071", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11171, + "TargetID": 40071, + "Directional": true + } + ] + }, + { + "ID": 8651, + "SourceStructureID": 5405, + "TargetStructureID": 5501, + "Label": "5405-5501 via Conventional from 42923 -> 110209, 42929 -> 110195, 42930 -> 115368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42923, + "TargetID": 110209, + "Directional": true + }, + { + "SourceID": 42929, + "TargetID": 110195, + "Directional": true + }, + { + "SourceID": 42930, + "TargetID": 115368, + "Directional": true + } + ] + }, + { + "ID": 8652, + "SourceStructureID": 5405, + "TargetStructureID": 5504, + "Label": "5405-5504 via Conventional from 42934 -> 37894", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42934, + "TargetID": 37894, + "Directional": true + } + ] + }, + { + "ID": 8653, + "SourceStructureID": 5405, + "TargetStructureID": 5561, + "Label": "5405-5561 via Conventional from 42911 -> 46211", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42911, + "TargetID": 46211, + "Directional": true + } + ] + }, + { + "ID": 8654, + "SourceStructureID": 5405, + "TargetStructureID": 5568, + "Label": "5405-5568 via Conventional from 11146 -> 50338", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11146, + "TargetID": 50338, + "Directional": true + } + ] + }, + { + "ID": 8655, + "SourceStructureID": 5405, + "TargetStructureID": 5648, + "Label": "5405-5648 via Conventional from 11178 -> 23420", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11178, + "TargetID": 23420, + "Directional": true + } + ] + }, + { + "ID": 8656, + "SourceStructureID": 5405, + "TargetStructureID": 6118, + "Label": "5405-6118 via Conventional from 42939 -> 65674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42939, + "TargetID": 65674, + "Directional": true + } + ] + }, + { + "ID": 8657, + "SourceStructureID": 5405, + "TargetStructureID": 6121, + "Label": "5405-6121 via Conventional from 11141 -> 30184, 42944 -> 52277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11141, + "TargetID": 30184, + "Directional": true + }, + { + "SourceID": 42944, + "TargetID": 52277, + "Directional": true + } + ] + }, + { + "ID": 8658, + "SourceStructureID": 5405, + "TargetStructureID": 18693, + "Label": "5405-18693 via Conventional from 42908 -> 33807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42908, + "TargetID": 33807, + "Directional": true + } + ] + }, + { + "ID": 8659, + "SourceStructureID": 5405, + "TargetStructureID": 59392, + "Label": "5405-59392 via Conventional from 11168 -> 59417", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11168, + "TargetID": 59417, + "Directional": true + } + ] + }, + { + "ID": 8660, + "SourceStructureID": 5405, + "TargetStructureID": 85088, + "Label": "5405-85088 via Conventional from 11165 -> 85089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11165, + "TargetID": 85089, + "Directional": true + } + ] + }, + { + "ID": 8661, + "SourceStructureID": 5405, + "TargetStructureID": 85119, + "Label": "5405-85119 via Conventional from 42907 -> 85135", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42907, + "TargetID": 85135, + "Directional": true + } + ] + }, + { + "ID": 8662, + "SourceStructureID": 5410, + "TargetStructureID": 330, + "Label": "5410-330 via Cistern Pre from 82127 -> 38882", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 82127, + "TargetID": 38882, + "Directional": true + } + ] + }, + { + "ID": 8663, + "SourceStructureID": 5410, + "TargetStructureID": 332, + "Label": "5410-332 via Conventional from 82141 -> 82146, 82152 -> 97394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82141, + "TargetID": 82146, + "Directional": true + }, + { + "SourceID": 82152, + "TargetID": 97394, + "Directional": true + } + ] + }, + { + "ID": 8664, + "SourceStructureID": 5411, + "TargetStructureID": 184, + "Label": "5411-184 via Conventional from 31764 -> 17364", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31764, + "TargetID": 17364, + "Directional": true + } + ] + }, + { + "ID": 8665, + "SourceStructureID": 5411, + "TargetStructureID": 11244, + "Label": "5411-11244 via Conventional from 31762 -> 31761", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31762, + "TargetID": 31761, + "Directional": true + } + ] + }, + { + "ID": 8666, + "SourceStructureID": 5413, + "TargetStructureID": 7446, + "Label": "5413-7446 via Conventional from 130915 -> 123028", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130915, + "TargetID": 123028, + "Directional": true + } + ] + }, + { + "ID": 8667, + "SourceStructureID": 5413, + "TargetStructureID": 7461, + "Label": "5413-7461 via Conventional from 41183 -> 41132", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41183, + "TargetID": 41132, + "Directional": true + } + ] + }, + { + "ID": 8668, + "SourceStructureID": 5413, + "TargetStructureID": 38605, + "Label": "5413-38605 via Conventional from 30436 -> 30439", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30436, + "TargetID": 30439, + "Directional": true + } + ] + }, + { + "ID": 8669, + "SourceStructureID": 5423, + "TargetStructureID": 595, + "Label": "5423-595 via Conventional from 92827 -> 92828", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92827, + "TargetID": 92828, + "Directional": true + } + ] + }, + { + "ID": 8670, + "SourceStructureID": 5423, + "TargetStructureID": 5530, + "Label": "5423-5530 via Conventional from 80465 -> 80466", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80465, + "TargetID": 80466, + "Directional": true + } + ] + }, + { + "ID": 8671, + "SourceStructureID": 5435, + "TargetStructureID": 138, + "Label": "5435-138 via Conventional from 41136 -> 46417", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41136, + "TargetID": 46417, + "Directional": true + } + ] + }, + { + "ID": 8672, + "SourceStructureID": 5435, + "TargetStructureID": 142, + "Label": "5435-142 via Cistern Pre from 147681 -> 147682", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 147681, + "TargetID": 147682, + "Directional": true + } + ] + }, + { + "ID": 8673, + "SourceStructureID": 5435, + "TargetStructureID": 170, + "Label": "5435-170 via Conventional from 89037 -> 89038, 89999 -> 90000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89037, + "TargetID": 89038, + "Directional": true + }, + { + "SourceID": 89999, + "TargetID": 90000, + "Directional": true + } + ] + }, + { + "ID": 8674, + "SourceStructureID": 5435, + "TargetStructureID": 173, + "Label": "5435-173 via Conventional from 24346 -> 12040, 41174 -> 41175", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24346, + "TargetID": 12040, + "Directional": true + }, + { + "SourceID": 41174, + "TargetID": 41175, + "Directional": true + } + ] + }, + { + "ID": 8675, + "SourceStructureID": 5435, + "TargetStructureID": 364, + "Label": "5435-364 via Conventional from 32023 -> 32022, 32026 -> 32025, 41792 -> 120615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32023, + "TargetID": 32022, + "Directional": true + }, + { + "SourceID": 32026, + "TargetID": 32025, + "Directional": true + }, + { + "SourceID": 41792, + "TargetID": 120615, + "Directional": true + } + ] + }, + { + "ID": 8676, + "SourceStructureID": 5435, + "TargetStructureID": 595, + "Label": "5435-595 via Conventional from 41147 -> 53505", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41147, + "TargetID": 53505, + "Directional": true + } + ] + }, + { + "ID": 8677, + "SourceStructureID": 5435, + "TargetStructureID": 1724, + "Label": "5435-1724 via Conventional from 119515 -> 119514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119515, + "TargetID": 119514, + "Directional": true + } + ] + }, + { + "ID": 8678, + "SourceStructureID": 5435, + "TargetStructureID": 4568, + "Label": "5435-4568 via Conventional from 41099 -> 36318", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41099, + "TargetID": 36318, + "Directional": true + } + ] + }, + { + "ID": 8679, + "SourceStructureID": 5435, + "TargetStructureID": 4569, + "Label": "5435-4569 via Conventional from 41125 -> 4744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41125, + "TargetID": 4744, + "Directional": true + } + ] + }, + { + "ID": 8680, + "SourceStructureID": 5435, + "TargetStructureID": 4877, + "Label": "5435-4877 via Conventional from 24358 -> 23963", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24358, + "TargetID": 23963, + "Directional": true + } + ] + }, + { + "ID": 8681, + "SourceStructureID": 5435, + "TargetStructureID": 5427, + "Label": "5435-5427 via Conventional from 41679 -> 129984", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41679, + "TargetID": 129984, + "Directional": true + } + ] + }, + { + "ID": 8682, + "SourceStructureID": 5435, + "TargetStructureID": 5534, + "Label": "5435-5534 via Conventional from 41153 -> 34629", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41153, + "TargetID": 34629, + "Directional": true + } + ] + }, + { + "ID": 8683, + "SourceStructureID": 5435, + "TargetStructureID": 5601, + "Label": "5435-5601 via Conventional from 24359 -> 127312, 24364 -> 127321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24359, + "TargetID": 127312, + "Directional": true + }, + { + "SourceID": 24364, + "TargetID": 127321, + "Directional": true + } + ] + }, + { + "ID": 8684, + "SourceStructureID": 5435, + "TargetStructureID": 11092, + "Label": "5435-11092 via Conventional from 41152 -> 128635", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41152, + "TargetID": 128635, + "Directional": true + } + ] + }, + { + "ID": 8685, + "SourceStructureID": 5435, + "TargetStructureID": 20136, + "Label": "5435-20136 via Conventional from 41179 -> 135513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41179, + "TargetID": 135513, + "Directional": true + } + ] + }, + { + "ID": 8686, + "SourceStructureID": 5435, + "TargetStructureID": 59362, + "Label": "5435-59362 via Conventional from 41259 -> 63794", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41259, + "TargetID": 63794, + "Directional": true + } + ] + }, + { + "ID": 8687, + "SourceStructureID": 5435, + "TargetStructureID": 82743, + "Label": "5435-82743 via Conventional from 41215 -> 82779", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41215, + "TargetID": 82779, + "Directional": true + } + ] + }, + { + "ID": 8688, + "SourceStructureID": 5435, + "TargetStructureID": 85856, + "Label": "5435-85856 via Cistern Pre from 85917 -> 85919", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 85917, + "TargetID": 85919, + "Directional": true + } + ] + }, + { + "ID": 8689, + "SourceStructureID": 5435, + "TargetStructureID": 127846, + "Label": "5435-127846 via Conventional from 41130 -> 127877", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41130, + "TargetID": 127877, + "Directional": true + } + ] + }, + { + "ID": 8690, + "SourceStructureID": 5435, + "TargetStructureID": 131568, + "Label": "5435-131568 via Conventional from 41738 -> 131587", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41738, + "TargetID": 131587, + "Directional": true + } + ] + }, + { + "ID": 8691, + "SourceStructureID": 5436, + "TargetStructureID": 5453, + "Label": "5436-5453 via Conventional from 23095 -> 18551", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23095, + "TargetID": 18551, + "Directional": true + } + ] + }, + { + "ID": 8692, + "SourceStructureID": 5436, + "TargetStructureID": 5528, + "Label": "5436-5528 via Conventional from 23092 -> 94269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23092, + "TargetID": 94269, + "Directional": true + } + ] + }, + { + "ID": 8693, + "SourceStructureID": 5436, + "TargetStructureID": 6129, + "Label": "5436-6129 via Conventional from 23089 -> 23090", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23089, + "TargetID": 23090, + "Directional": true + } + ] + }, + { + "ID": 8694, + "SourceStructureID": 5436, + "TargetStructureID": 7215, + "Label": "5436-7215 via Conventional from 41603 -> 31578", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41603, + "TargetID": 31578, + "Directional": true + } + ] + }, + { + "ID": 8695, + "SourceStructureID": 5436, + "TargetStructureID": 8575, + "Label": "5436-8575 via Conventional from 61663 -> 61662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61663, + "TargetID": 61662, + "Directional": true + } + ] + }, + { + "ID": 8696, + "SourceStructureID": 5439, + "TargetStructureID": 166, + "Label": "5439-166 via Conventional from 70807 -> 70808, 71457 -> 71458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70807, + "TargetID": 70808, + "Directional": true + }, + { + "SourceID": 71457, + "TargetID": 71458, + "Directional": true + } + ] + }, + { + "ID": 8697, + "SourceStructureID": 5439, + "TargetStructureID": 280, + "Label": "5439-280 via Conventional from 85705 -> 85706", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85705, + "TargetID": 85706, + "Directional": true + } + ] + }, + { + "ID": 8698, + "SourceStructureID": 5439, + "TargetStructureID": 332, + "Label": "5439-332 via Conventional from 85675 -> 85676, 85677 -> 85678, 85688 -> 25207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85675, + "TargetID": 85676, + "Directional": true + }, + { + "SourceID": 85677, + "TargetID": 85678, + "Directional": true + }, + { + "SourceID": 85688, + "TargetID": 25207, + "Directional": true + } + ] + }, + { + "ID": 8699, + "SourceStructureID": 5439, + "TargetStructureID": 431, + "Label": "5439-431 via Conventional from 98774 -> 119074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98774, + "TargetID": 119074, + "Directional": true + } + ] + }, + { + "ID": 8700, + "SourceStructureID": 5439, + "TargetStructureID": 5599, + "Label": "5439-5599 via Conventional from 66594 -> 70669, 70636 -> 70638", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66594, + "TargetID": 70669, + "Directional": true + }, + { + "SourceID": 70636, + "TargetID": 70638, + "Directional": true + } + ] + }, + { + "ID": 8701, + "SourceStructureID": 5439, + "TargetStructureID": 5635, + "Label": "5439-5635 via Conventional from 66555 -> 55993, 66557 -> 66558, 66562 -> 55983, 66581 -> 28818, 70636 -> 70637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66555, + "TargetID": 55993, + "Directional": true + }, + { + "SourceID": 66557, + "TargetID": 66558, + "Directional": true + }, + { + "SourceID": 66562, + "TargetID": 55983, + "Directional": true + }, + { + "SourceID": 66581, + "TargetID": 28818, + "Directional": true + }, + { + "SourceID": 70636, + "TargetID": 70637, + "Directional": true + } + ] + }, + { + "ID": 8702, + "SourceStructureID": 5439, + "TargetStructureID": 5638, + "Label": "5439-5638 via Conventional from 66545 -> 66255, 66611 -> 39126", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66545, + "TargetID": 66255, + "Directional": true + }, + { + "SourceID": 66611, + "TargetID": 39126, + "Directional": true + } + ] + }, + { + "ID": 8703, + "SourceStructureID": 5439, + "TargetStructureID": 7568, + "Label": "5439-7568 via Conventional from 85516 -> 27087", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85516, + "TargetID": 27087, + "Directional": true + } + ] + }, + { + "ID": 8704, + "SourceStructureID": 5439, + "TargetStructureID": 10959, + "Label": "5439-10959 via Conventional from 66572 -> 16374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66572, + "TargetID": 16374, + "Directional": true + } + ] + }, + { + "ID": 8705, + "SourceStructureID": 5439, + "TargetStructureID": 15977, + "Label": "5439-15977 via Conventional from 66614 -> 70756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66614, + "TargetID": 70756, + "Directional": true + } + ] + }, + { + "ID": 8706, + "SourceStructureID": 5439, + "TargetStructureID": 29198, + "Label": "5439-29198 via Conventional from 66554 -> 29226, 85589 -> 29209", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66554, + "TargetID": 29226, + "Directional": true + }, + { + "SourceID": 85589, + "TargetID": 29209, + "Directional": true + } + ] + }, + { + "ID": 8707, + "SourceStructureID": 5439, + "TargetStructureID": 32608, + "Label": "5439-32608 via Conventional from 85598 -> 85600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85598, + "TargetID": 85600, + "Directional": true + } + ] + }, + { + "ID": 8708, + "SourceStructureID": 5439, + "TargetStructureID": 56822, + "Label": "5439-56822 via Conventional from 66561 -> 70569", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66561, + "TargetID": 70569, + "Directional": true + } + ] + }, + { + "ID": 8709, + "SourceStructureID": 5439, + "TargetStructureID": 61816, + "Label": "5439-61816 via Conventional from 80747 -> 80748", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80747, + "TargetID": 80748, + "Directional": true + } + ] + }, + { + "ID": 8710, + "SourceStructureID": 5439, + "TargetStructureID": 70535, + "Label": "5439-70535 via Cistern Pre from 66586 -> 70536", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 66586, + "TargetID": 70536, + "Directional": true + } + ] + }, + { + "ID": 8711, + "SourceStructureID": 5439, + "TargetStructureID": 70557, + "Label": "5439-70557 via Conventional from 66549 -> 70558", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66549, + "TargetID": 70558, + "Directional": true + } + ] + }, + { + "ID": 8712, + "SourceStructureID": 5439, + "TargetStructureID": 70562, + "Label": "5439-70562 via Conventional from 70561 -> 70564", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70561, + "TargetID": 70564, + "Directional": true + } + ] + }, + { + "ID": 8713, + "SourceStructureID": 5439, + "TargetStructureID": 70572, + "Label": "5439-70572 via Conventional from 66563 -> 70574", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66563, + "TargetID": 70574, + "Directional": true + } + ] + }, + { + "ID": 8714, + "SourceStructureID": 5439, + "TargetStructureID": 70577, + "Label": "5439-70577 via Conventional from 66570 -> 70578", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66570, + "TargetID": 70578, + "Directional": true + } + ] + }, + { + "ID": 8715, + "SourceStructureID": 5439, + "TargetStructureID": 70610, + "Label": "5439-70610 via Conventional from 70609 -> 70611", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70609, + "TargetID": 70611, + "Directional": true + } + ] + }, + { + "ID": 8716, + "SourceStructureID": 5439, + "TargetStructureID": 70615, + "Label": "5439-70615 via Conventional from 66579 -> 70616", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66579, + "TargetID": 70616, + "Directional": true + } + ] + }, + { + "ID": 8717, + "SourceStructureID": 5439, + "TargetStructureID": 70618, + "Label": "5439-70618 via Conventional from 70617 -> 70619", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70617, + "TargetID": 70619, + "Directional": true + } + ] + }, + { + "ID": 8718, + "SourceStructureID": 5439, + "TargetStructureID": 70680, + "Label": "5439-70680 via Conventional from 70679 -> 70681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70679, + "TargetID": 70681, + "Directional": true + } + ] + }, + { + "ID": 8719, + "SourceStructureID": 5439, + "TargetStructureID": 70768, + "Label": "5439-70768 via Conventional from 66565 -> 70769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66565, + "TargetID": 70769, + "Directional": true + } + ] + }, + { + "ID": 8720, + "SourceStructureID": 5439, + "TargetStructureID": 70776, + "Label": "5439-70776 via Conventional from 70568 -> 70777", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70568, + "TargetID": 70777, + "Directional": true + } + ] + }, + { + "ID": 8721, + "SourceStructureID": 5439, + "TargetStructureID": 70780, + "Label": "5439-70780 via Conventional from 70782 -> 70783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70782, + "TargetID": 70783, + "Directional": true + } + ] + }, + { + "ID": 8722, + "SourceStructureID": 5439, + "TargetStructureID": 70789, + "Label": "5439-70789 via Conventional from 66574 -> 70790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66574, + "TargetID": 70790, + "Directional": true + } + ] + }, + { + "ID": 8723, + "SourceStructureID": 5439, + "TargetStructureID": 85634, + "Label": "5439-85634 via Conventional from 85633 -> 85635", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85633, + "TargetID": 85635, + "Directional": true + } + ] + }, + { + "ID": 8724, + "SourceStructureID": 5439, + "TargetStructureID": 85711, + "Label": "5439-85711 via Conventional from 85710 -> 85718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85710, + "TargetID": 85718, + "Directional": true + } + ] + }, + { + "ID": 8725, + "SourceStructureID": 5439, + "TargetStructureID": 85722, + "Label": "5439-85722 via Conventional from 85719 -> 85723", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85719, + "TargetID": 85723, + "Directional": true + } + ] + }, + { + "ID": 8726, + "SourceStructureID": 5442, + "TargetStructureID": 5601, + "Label": "5442-5601 via Cistern Pre from 124493 -> 124492", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 124493, + "TargetID": 124492, + "Directional": true + } + ] + }, + { + "ID": 8727, + "SourceStructureID": 5451, + "TargetStructureID": 28950, + "Label": "5451-28950 via Conventional from 44794 -> 44795, 44802 -> 28967", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44794, + "TargetID": 44795, + "Directional": true + }, + { + "SourceID": 44802, + "TargetID": 28967, + "Directional": true + } + ] + }, + { + "ID": 8728, + "SourceStructureID": 5453, + "TargetStructureID": 440, + "Label": "5453-440 via Conventional from 41728 -> 122532, 41729 -> 62005, 41730 -> 24453", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41728, + "TargetID": 122532, + "Directional": true + }, + { + "SourceID": 41729, + "TargetID": 62005, + "Directional": true + }, + { + "SourceID": 41730, + "TargetID": 24453, + "Directional": true + } + ] + }, + { + "ID": 8729, + "SourceStructureID": 5453, + "TargetStructureID": 5531, + "Label": "5453-5531 via Conventional from 41698 -> 41699, 41706 -> 62362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41698, + "TargetID": 41699, + "Directional": true + }, + { + "SourceID": 41706, + "TargetID": 62362, + "Directional": true + } + ] + }, + { + "ID": 8730, + "SourceStructureID": 5453, + "TargetStructureID": 5543, + "Label": "5453-5543 via Conventional from 18564 -> 17028, 18665 -> 17098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18564, + "TargetID": 17028, + "Directional": true + }, + { + "SourceID": 18665, + "TargetID": 17098, + "Directional": true + } + ] + }, + { + "ID": 8731, + "SourceStructureID": 5453, + "TargetStructureID": 5545, + "Label": "5453-5545 via Conventional from 28778 -> 128474", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 28778, + "TargetID": 128474, + "Directional": true + } + ] + }, + { + "ID": 8732, + "SourceStructureID": 5453, + "TargetStructureID": 5636, + "Label": "5453-5636 via Conventional from 41712 -> 34710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41712, + "TargetID": 34710, + "Directional": true + } + ] + }, + { + "ID": 8733, + "SourceStructureID": 5453, + "TargetStructureID": 6129, + "Label": "5453-6129 via Conventional from 18541 -> 38874, 18545 -> 38871, 18552 -> 18557", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18541, + "TargetID": 38874, + "Directional": true + }, + { + "SourceID": 18545, + "TargetID": 38871, + "Directional": true + }, + { + "SourceID": 18552, + "TargetID": 18557, + "Directional": true + } + ] + }, + { + "ID": 8734, + "SourceStructureID": 5454, + "TargetStructureID": 330, + "Label": "5454-330 via Conventional from 34242 -> 38690", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34242, + "TargetID": 38690, + "Directional": true + } + ] + }, + { + "ID": 8735, + "SourceStructureID": 5454, + "TargetStructureID": 360, + "Label": "5454-360 via Conventional from 34172 -> 26584", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34172, + "TargetID": 26584, + "Directional": true + } + ] + }, + { + "ID": 8736, + "SourceStructureID": 5454, + "TargetStructureID": 3881, + "Label": "5454-3881 via Conventional from 34205 -> 3895", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34205, + "TargetID": 3895, + "Directional": true + } + ] + }, + { + "ID": 8737, + "SourceStructureID": 5454, + "TargetStructureID": 5536, + "Label": "5454-5536 via Conventional from 34194 -> 22654", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34194, + "TargetID": 22654, + "Directional": true + } + ] + }, + { + "ID": 8738, + "SourceStructureID": 5454, + "TargetStructureID": 5614, + "Label": "5454-5614 via Conventional from 32461 -> 5620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32461, + "TargetID": 5620, + "Directional": true + } + ] + }, + { + "ID": 8739, + "SourceStructureID": 5454, + "TargetStructureID": 5635, + "Label": "5454-5635 via Conventional from 34208 -> 28844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34208, + "TargetID": 28844, + "Directional": true + } + ] + }, + { + "ID": 8740, + "SourceStructureID": 5454, + "TargetStructureID": 8575, + "Label": "5454-8575 via Conventional from 34214 -> 62327, 147397 -> 147398", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34214, + "TargetID": 62327, + "Directional": true + }, + { + "SourceID": 147397, + "TargetID": 147398, + "Directional": true + } + ] + }, + { + "ID": 8741, + "SourceStructureID": 5454, + "TargetStructureID": 10840, + "Label": "5454-10840 via Conventional from 34200 -> 33269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34200, + "TargetID": 33269, + "Directional": true + } + ] + }, + { + "ID": 8742, + "SourceStructureID": 5454, + "TargetStructureID": 25155, + "Label": "5454-25155 via Conventional from 38438 -> 34640", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38438, + "TargetID": 34640, + "Directional": true + } + ] + }, + { + "ID": 8743, + "SourceStructureID": 5456, + "TargetStructureID": 606, + "Label": "5456-606 via Ribbon Synapse from 38164 -> 10564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38164, + "TargetID": 10564, + "Directional": true + } + ] + }, + { + "ID": 8744, + "SourceStructureID": 5456, + "TargetStructureID": 8720, + "Label": "5456-8720 via Ribbon Synapse from 38153 -> 63168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38153, + "TargetID": 63168, + "Directional": true + } + ] + }, + { + "ID": 8745, + "SourceStructureID": 5457, + "TargetStructureID": 360, + "Label": "5457-360 via Conventional from 87846 -> 26579, 87847 -> 87848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87846, + "TargetID": 26579, + "Directional": true + }, + { + "SourceID": 87847, + "TargetID": 87848, + "Directional": true + } + ] + }, + { + "ID": 8746, + "SourceStructureID": 5457, + "TargetStructureID": 5614, + "Label": "5457-5614 via Conventional from 15355 -> 8734, 15356 -> 15357, 15359 -> 40810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15355, + "TargetID": 8734, + "Directional": true + }, + { + "SourceID": 15356, + "TargetID": 15357, + "Directional": true + }, + { + "SourceID": 15359, + "TargetID": 40810, + "Directional": true + } + ] + }, + { + "ID": 8747, + "SourceStructureID": 5464, + "TargetStructureID": 46521, + "Label": "5464-46521 via Conventional from 46524 -> 46523", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46524, + "TargetID": 46523, + "Directional": true + } + ] + }, + { + "ID": 8748, + "SourceStructureID": 5468, + "TargetStructureID": 606, + "Label": "5468-606 via Ribbon Synapse from 38474 -> 51782, 38476 -> 51783, 48073 -> 48077, 48112 -> 48114, 51791 -> 51790, 51852 -> 51850", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38474, + "TargetID": 51782, + "Directional": true + }, + { + "SourceID": 38476, + "TargetID": 51783, + "Directional": true + }, + { + "SourceID": 48073, + "TargetID": 48077, + "Directional": true + }, + { + "SourceID": 48112, + "TargetID": 48114, + "Directional": true + }, + { + "SourceID": 51791, + "TargetID": 51790, + "Directional": true + }, + { + "SourceID": 51852, + "TargetID": 51850, + "Directional": true + } + ] + }, + { + "ID": 8749, + "SourceStructureID": 5468, + "TargetStructureID": 5442, + "Label": "5468-5442 via Ribbon Synapse from 55127 -> 55128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55127, + "TargetID": 55128, + "Directional": true + } + ] + }, + { + "ID": 8750, + "SourceStructureID": 5468, + "TargetStructureID": 9769, + "Label": "5468-9769 via Ribbon Synapse from 29967 -> 29966, 38476 -> 38475, 45698 -> 52857, 45702 -> 29970, 45705 -> 52856, 48300 -> 52855, 52879 -> 52880, 53121 -> 29963", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29967, + "TargetID": 29966, + "Directional": true + }, + { + "SourceID": 38476, + "TargetID": 38475, + "Directional": true + }, + { + "SourceID": 45698, + "TargetID": 52857, + "Directional": true + }, + { + "SourceID": 45702, + "TargetID": 29970, + "Directional": true + }, + { + "SourceID": 45705, + "TargetID": 52856, + "Directional": true + }, + { + "SourceID": 48300, + "TargetID": 52855, + "Directional": true + }, + { + "SourceID": 52879, + "TargetID": 52880, + "Directional": true + }, + { + "SourceID": 53121, + "TargetID": 29963, + "Directional": true + } + ] + }, + { + "ID": 8751, + "SourceStructureID": 5468, + "TargetStructureID": 23870, + "Label": "5468-23870 via Ribbon Synapse from 23879 -> 23873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23879, + "TargetID": 23873, + "Directional": true + } + ] + }, + { + "ID": 8752, + "SourceStructureID": 5468, + "TargetStructureID": 33039, + "Label": "5468-33039 via Ribbon Synapse from 33044 -> 33042, 33046 -> 33045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33044, + "TargetID": 33042, + "Directional": true + }, + { + "SourceID": 33046, + "TargetID": 33045, + "Directional": true + } + ] + }, + { + "ID": 8753, + "SourceStructureID": 5468, + "TargetStructureID": 33057, + "Label": "5468-33057 via BC Conventional Synapse from 48224 -> 48227", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48224, + "TargetID": 48227, + "Directional": true + } + ] + }, + { + "ID": 8754, + "SourceStructureID": 5468, + "TargetStructureID": 35811, + "Label": "5468-35811 via Ribbon Synapse from 23876 -> 35879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23876, + "TargetID": 35879, + "Directional": true + } + ] + }, + { + "ID": 8755, + "SourceStructureID": 5468, + "TargetStructureID": 74047, + "Label": "5468-74047 via Ribbon Synapse from 48211 -> 74390, 55127 -> 74359, 74319 -> 74320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48211, + "TargetID": 74390, + "Directional": true + }, + { + "SourceID": 55127, + "TargetID": 74359, + "Directional": true + }, + { + "SourceID": 74319, + "TargetID": 74320, + "Directional": true + } + ] + }, + { + "ID": 8756, + "SourceStructureID": 5468, + "TargetStructureID": 93067, + "Label": "5468-93067 via Ribbon Synapse from 45728 -> 93068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45728, + "TargetID": 93068, + "Directional": true + } + ] + }, + { + "ID": 8757, + "SourceStructureID": 5468, + "TargetStructureID": 93069, + "Label": "5468-93069 via Ribbon Synapse from 45728 -> 93071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45728, + "TargetID": 93071, + "Directional": true + } + ] + }, + { + "ID": 8758, + "SourceStructureID": 5468, + "TargetStructureID": 93072, + "Label": "5468-93072 via Ribbon Synapse from 48229 -> 93079, 48230 -> 93073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48229, + "TargetID": 93079, + "Directional": true + }, + { + "SourceID": 48230, + "TargetID": 93073, + "Directional": true + } + ] + }, + { + "ID": 8759, + "SourceStructureID": 5468, + "TargetStructureID": 93074, + "Label": "5468-93074 via Ribbon Synapse from 23876 -> 93075", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23876, + "TargetID": 93075, + "Directional": true + } + ] + }, + { + "ID": 8760, + "SourceStructureID": 5468, + "TargetStructureID": 93076, + "Label": "5468-93076 via Ribbon Synapse from 23876 -> 93077", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23876, + "TargetID": 93077, + "Directional": true + } + ] + }, + { + "ID": 8761, + "SourceStructureID": 5470, + "TargetStructureID": 7204, + "Label": "5470-7204 via Conventional from 54692 -> 24344", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54692, + "TargetID": 24344, + "Directional": true + } + ] + }, + { + "ID": 8762, + "SourceStructureID": 5470, + "TargetStructureID": 9769, + "Label": "5470-9769 via Conventional from 54690 -> 23957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54690, + "TargetID": 23957, + "Directional": true + } + ] + }, + { + "ID": 8763, + "SourceStructureID": 5473, + "TargetStructureID": 5587, + "Label": "5473-5587 via Conventional from 28956 -> 136555, 129034 -> 129033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 28956, + "TargetID": 136555, + "Directional": true + }, + { + "SourceID": 129034, + "TargetID": 129033, + "Directional": true + } + ] + }, + { + "ID": 8764, + "SourceStructureID": 5473, + "TargetStructureID": 5640, + "Label": "5473-5640 via Conventional from 37122 -> 37117", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37122, + "TargetID": 37117, + "Directional": true + } + ] + }, + { + "ID": 8765, + "SourceStructureID": 5473, + "TargetStructureID": 28913, + "Label": "5473-28913 via Conventional from 37123 -> 28944", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37123, + "TargetID": 28944, + "Directional": true + } + ] + }, + { + "ID": 8766, + "SourceStructureID": 5473, + "TargetStructureID": 28950, + "Label": "5473-28950 via Conventional from 23893 -> 84727, 28955 -> 28951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23893, + "TargetID": 84727, + "Directional": true + }, + { + "SourceID": 28955, + "TargetID": 28951, + "Directional": true + } + ] + }, + { + "ID": 8767, + "SourceStructureID": 5481, + "TargetStructureID": 60174, + "Label": "5481-60174 via Cistern Pre from 60173 -> 60175", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 60173, + "TargetID": 60175, + "Directional": true + } + ] + }, + { + "ID": 8768, + "SourceStructureID": 5481, + "TargetStructureID": 90177, + "Label": "5481-90177 via Conventional from 90176 -> 90178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90176, + "TargetID": 90178, + "Directional": true + } + ] + }, + { + "ID": 8769, + "SourceStructureID": 5481, + "TargetStructureID": 90186, + "Label": "5481-90186 via Conventional from 90185 -> 90187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90185, + "TargetID": 90187, + "Directional": true + } + ] + }, + { + "ID": 8770, + "SourceStructureID": 5481, + "TargetStructureID": 133757, + "Label": "5481-133757 via Cistern Pre from 133760 -> 133761", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 133760, + "TargetID": 133761, + "Directional": true + } + ] + }, + { + "ID": 8771, + "SourceStructureID": 5485, + "TargetStructureID": 5150, + "Label": "5485-5150 via Conventional from 26965 -> 5157", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 26965, + "TargetID": 5157, + "Directional": true + } + ] + }, + { + "ID": 8772, + "SourceStructureID": 5485, + "TargetStructureID": 8575, + "Label": "5485-8575 via Conventional from 62291 -> 62290", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62291, + "TargetID": 62290, + "Directional": true + } + ] + }, + { + "ID": 8773, + "SourceStructureID": 5485, + "TargetStructureID": 34336, + "Label": "5485-34336 via Conventional from 34366 -> 34365, 34370 -> 34369, 34392 -> 34391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34366, + "TargetID": 34365, + "Directional": true + }, + { + "SourceID": 34370, + "TargetID": 34369, + "Directional": true + }, + { + "SourceID": 34392, + "TargetID": 34391, + "Directional": true + } + ] + }, + { + "ID": 8774, + "SourceStructureID": 5485, + "TargetStructureID": 84830, + "Label": "5485-84830 via Conventional from 84836 -> 84833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84836, + "TargetID": 84833, + "Directional": true + } + ] + }, + { + "ID": 8775, + "SourceStructureID": 5486, + "TargetStructureID": 8575, + "Label": "5486-8575 via Conventional from 21140 -> 61723", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21140, + "TargetID": 61723, + "Directional": true + } + ] + }, + { + "ID": 8776, + "SourceStructureID": 5486, + "TargetStructureID": 10959, + "Label": "5486-10959 via Cistern Pre from 86723 -> 86725", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 86723, + "TargetID": 86725, + "Directional": true + } + ] + }, + { + "ID": 8777, + "SourceStructureID": 5486, + "TargetStructureID": 137122, + "Label": "5486-137122 via Conventional from 21152 -> 137180", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21152, + "TargetID": 137180, + "Directional": true + } + ] + }, + { + "ID": 8778, + "SourceStructureID": 5487, + "TargetStructureID": 142, + "Label": "5487-142 via Conventional from 91679 -> 50123", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91679, + "TargetID": 50123, + "Directional": true + } + ] + }, + { + "ID": 8779, + "SourceStructureID": 5487, + "TargetStructureID": 469, + "Label": "5487-469 via Conventional from 34563 -> 4656", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34563, + "TargetID": 4656, + "Directional": true + } + ] + }, + { + "ID": 8780, + "SourceStructureID": 5487, + "TargetStructureID": 4570, + "Label": "5487-4570 via Conventional from 34574 -> 24487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34574, + "TargetID": 24487, + "Directional": true + } + ] + }, + { + "ID": 8781, + "SourceStructureID": 5487, + "TargetStructureID": 5480, + "Label": "5487-5480 via Cistern Pre from 87229 -> 87230", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 87229, + "TargetID": 87230, + "Directional": true + } + ] + }, + { + "ID": 8782, + "SourceStructureID": 5487, + "TargetStructureID": 60798, + "Label": "5487-60798 via Conventional from 34593 -> 60802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34593, + "TargetID": 60802, + "Directional": true + } + ] + }, + { + "ID": 8783, + "SourceStructureID": 5487, + "TargetStructureID": 129995, + "Label": "5487-129995 via Conventional from 34588 -> 130001, 34588 -> 130002, 130000 -> 129998", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34588, + "TargetID": 130001, + "Directional": true + }, + { + "SourceID": 34588, + "TargetID": 130002, + "Directional": true + }, + { + "SourceID": 130000, + "TargetID": 129998, + "Directional": true + } + ] + }, + { + "ID": 8784, + "SourceStructureID": 5489, + "TargetStructureID": 11222, + "Label": "5489-11222 via Conventional from 37147 -> 11223", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37147, + "TargetID": 11223, + "Directional": true + } + ] + }, + { + "ID": 8785, + "SourceStructureID": 5489, + "TargetStructureID": 16073, + "Label": "5489-16073 via Conventional from 37148 -> 19871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37148, + "TargetID": 19871, + "Directional": true + } + ] + }, + { + "ID": 8786, + "SourceStructureID": 5489, + "TargetStructureID": 68497, + "Label": "5489-68497 via Conventional from 81594 -> 81595", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81594, + "TargetID": 81595, + "Directional": true + } + ] + }, + { + "ID": 8787, + "SourceStructureID": 5489, + "TargetStructureID": 128107, + "Label": "5489-128107 via Conventional from 128112 -> 128113", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128112, + "TargetID": 128113, + "Directional": true + } + ] + }, + { + "ID": 8788, + "SourceStructureID": 5491, + "TargetStructureID": 606, + "Label": "5491-606 via Conventional from 45479 -> 53514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45479, + "TargetID": 53514, + "Directional": true + } + ] + }, + { + "ID": 8789, + "SourceStructureID": 5491, + "TargetStructureID": 7231, + "Label": "5491-7231 via Conventional from 116958 -> 116957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116958, + "TargetID": 116957, + "Directional": true + } + ] + }, + { + "ID": 8790, + "SourceStructureID": 5491, + "TargetStructureID": 8575, + "Label": "5491-8575 via Conventional from 62365 -> 62363, 62369 -> 62368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62365, + "TargetID": 62363, + "Directional": true + }, + { + "SourceID": 62369, + "TargetID": 62368, + "Directional": true + } + ] + }, + { + "ID": 8791, + "SourceStructureID": 5491, + "TargetStructureID": 8578, + "Label": "5491-8578 via Conventional from 54671 -> 54672", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54671, + "TargetID": 54672, + "Directional": true + } + ] + }, + { + "ID": 8792, + "SourceStructureID": 5491, + "TargetStructureID": 44346, + "Label": "5491-44346 via Conventional from 44410 -> 44409", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44410, + "TargetID": 44409, + "Directional": true + } + ] + }, + { + "ID": 8793, + "SourceStructureID": 5497, + "TargetStructureID": 909, + "Label": "5497-909 via Conventional from 62559 -> 45939, 62596 -> 117468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62559, + "TargetID": 45939, + "Directional": true + }, + { + "SourceID": 62596, + "TargetID": 117468, + "Directional": true + } + ] + }, + { + "ID": 8794, + "SourceStructureID": 5497, + "TargetStructureID": 5500, + "Label": "5497-5500 via Conventional from 62562 -> 62563, 62566 -> 62567", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62562, + "TargetID": 62563, + "Directional": true + }, + { + "SourceID": 62566, + "TargetID": 62567, + "Directional": true + } + ] + }, + { + "ID": 8795, + "SourceStructureID": 5497, + "TargetStructureID": 8575, + "Label": "5497-8575 via Conventional from 21735 -> 62449, 21745 -> 21744, 62543 -> 62544", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21735, + "TargetID": 62449, + "Directional": true + }, + { + "SourceID": 21745, + "TargetID": 21744, + "Directional": true + }, + { + "SourceID": 62543, + "TargetID": 62544, + "Directional": true + } + ] + }, + { + "ID": 8796, + "SourceStructureID": 5497, + "TargetStructureID": 14293, + "Label": "5497-14293 via Conventional from 62549 -> 40209", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62549, + "TargetID": 40209, + "Directional": true + } + ] + }, + { + "ID": 8797, + "SourceStructureID": 5497, + "TargetStructureID": 19203, + "Label": "5497-19203 via Conventional from 21740 -> 22890, 22941 -> 22920", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21740, + "TargetID": 22890, + "Directional": true + }, + { + "SourceID": 22941, + "TargetID": 22920, + "Directional": true + } + ] + }, + { + "ID": 8798, + "SourceStructureID": 5497, + "TargetStructureID": 62500, + "Label": "5497-62500 via Conventional from 62499 -> 62501", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62499, + "TargetID": 62501, + "Directional": true + } + ] + }, + { + "ID": 8799, + "SourceStructureID": 5497, + "TargetStructureID": 62578, + "Label": "5497-62578 via Conventional from 62577 -> 62579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62577, + "TargetID": 62579, + "Directional": true + } + ] + }, + { + "ID": 8800, + "SourceStructureID": 5498, + "TargetStructureID": 12192, + "Label": "5498-12192 via Ribbon Synapse from 46617 -> 46618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46617, + "TargetID": 46618, + "Directional": true + } + ] + }, + { + "ID": 8801, + "SourceStructureID": 5498, + "TargetStructureID": 84670, + "Label": "5498-84670 via Ribbon Synapse from 59723 -> 84676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59723, + "TargetID": 84676, + "Directional": true + } + ] + }, + { + "ID": 8802, + "SourceStructureID": 5498, + "TargetStructureID": 93125, + "Label": "5498-93125 via BC Conventional Synapse from 93140 -> 93137", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93140, + "TargetID": 93137, + "Directional": true + } + ] + }, + { + "ID": 8803, + "SourceStructureID": 5499, + "TargetStructureID": 606, + "Label": "5499-606 via BC Conventional Synapse from 106639 -> 106638", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106639, + "TargetID": 106638, + "Directional": true + } + ] + }, + { + "ID": 8804, + "SourceStructureID": 5499, + "TargetStructureID": 606, + "Label": "5499-606 via Ribbon Synapse from 48514 -> 48515, 48531 -> 51611, 49658 -> 47318, 49659 -> 47319, 51612 -> 51613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48514, + "TargetID": 48515, + "Directional": true + }, + { + "SourceID": 48531, + "TargetID": 51611, + "Directional": true + }, + { + "SourceID": 49658, + "TargetID": 47318, + "Directional": true + }, + { + "SourceID": 49659, + "TargetID": 47319, + "Directional": true + }, + { + "SourceID": 51612, + "TargetID": 51613, + "Directional": true + } + ] + }, + { + "ID": 8805, + "SourceStructureID": 5499, + "TargetStructureID": 5396, + "Label": "5499-5396 via Ribbon Synapse from 40144 -> 40143", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40144, + "TargetID": 40143, + "Directional": true + } + ] + }, + { + "ID": 8806, + "SourceStructureID": 5499, + "TargetStructureID": 7897, + "Label": "5499-7897 via Ribbon Synapse from 55722 -> 55721", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55722, + "TargetID": 55721, + "Directional": true + } + ] + }, + { + "ID": 8807, + "SourceStructureID": 5499, + "TargetStructureID": 22232, + "Label": "5499-22232 via Ribbon Synapse from 40139 -> 68824, 49644 -> 105276, 95213 -> 68817, 96684 -> 96685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40139, + "TargetID": 68824, + "Directional": true + }, + { + "SourceID": 49644, + "TargetID": 105276, + "Directional": true + }, + { + "SourceID": 95213, + "TargetID": 68817, + "Directional": true + }, + { + "SourceID": 96684, + "TargetID": 96685, + "Directional": true + } + ] + }, + { + "ID": 8808, + "SourceStructureID": 5499, + "TargetStructureID": 31161, + "Label": "5499-31161 via Ribbon Synapse from 49664 -> 31220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49664, + "TargetID": 31220, + "Directional": true + } + ] + }, + { + "ID": 8809, + "SourceStructureID": 5499, + "TargetStructureID": 55403, + "Label": "5499-55403 via Ribbon Synapse from 49664 -> 55497, 55484 -> 55485, 55488 -> 55487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49664, + "TargetID": 55497, + "Directional": true + }, + { + "SourceID": 55484, + "TargetID": 55485, + "Directional": true + }, + { + "SourceID": 55488, + "TargetID": 55487, + "Directional": true + } + ] + }, + { + "ID": 8810, + "SourceStructureID": 5499, + "TargetStructureID": 68539, + "Label": "5499-68539 via Ribbon Synapse from 97896 -> 69091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97896, + "TargetID": 69091, + "Directional": true + } + ] + }, + { + "ID": 8811, + "SourceStructureID": 5499, + "TargetStructureID": 78409, + "Label": "5499-78409 via Ribbon Synapse from 106779 -> 106780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106779, + "TargetID": 106780, + "Directional": true + } + ] + }, + { + "ID": 8812, + "SourceStructureID": 5499, + "TargetStructureID": 85730, + "Label": "5499-85730 via Ribbon Synapse from 85743 -> 85742", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85743, + "TargetID": 85742, + "Directional": true + } + ] + }, + { + "ID": 8813, + "SourceStructureID": 5499, + "TargetStructureID": 89571, + "Label": "5499-89571 via Ribbon Synapse from 89574 -> 89572", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89574, + "TargetID": 89572, + "Directional": true + } + ] + }, + { + "ID": 8814, + "SourceStructureID": 5499, + "TargetStructureID": 96676, + "Label": "5499-96676 via BC Conventional Synapse from 96675 -> 96677", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96675, + "TargetID": 96677, + "Directional": true + } + ] + }, + { + "ID": 8815, + "SourceStructureID": 5499, + "TargetStructureID": 96682, + "Label": "5499-96682 via BC Conventional Synapse from 96681 -> 96683", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96681, + "TargetID": 96683, + "Directional": true + } + ] + }, + { + "ID": 8816, + "SourceStructureID": 5499, + "TargetStructureID": 96688, + "Label": "5499-96688 via Ribbon Synapse from 95216 -> 96689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95216, + "TargetID": 96689, + "Directional": true + } + ] + }, + { + "ID": 8817, + "SourceStructureID": 5499, + "TargetStructureID": 96690, + "Label": "5499-96690 via Ribbon Synapse from 95213 -> 96691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95213, + "TargetID": 96691, + "Directional": true + } + ] + }, + { + "ID": 8818, + "SourceStructureID": 5499, + "TargetStructureID": 96695, + "Label": "5499-96695 via Ribbon Synapse from 96692 -> 96696", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96692, + "TargetID": 96696, + "Directional": true + } + ] + }, + { + "ID": 8819, + "SourceStructureID": 5499, + "TargetStructureID": 96703, + "Label": "5499-96703 via Ribbon Synapse from 96702 -> 96704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96702, + "TargetID": 96704, + "Directional": true + } + ] + }, + { + "ID": 8820, + "SourceStructureID": 5499, + "TargetStructureID": 96705, + "Label": "5499-96705 via Ribbon Synapse from 87330 -> 96706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87330, + "TargetID": 96706, + "Directional": true + } + ] + }, + { + "ID": 8821, + "SourceStructureID": 5499, + "TargetStructureID": 96708, + "Label": "5499-96708 via Ribbon Synapse from 87330 -> 96709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87330, + "TargetID": 96709, + "Directional": true + } + ] + }, + { + "ID": 8822, + "SourceStructureID": 5499, + "TargetStructureID": 96711, + "Label": "5499-96711 via Ribbon Synapse from 87330 -> 96712", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87330, + "TargetID": 96712, + "Directional": true + } + ] + }, + { + "ID": 8823, + "SourceStructureID": 5499, + "TargetStructureID": 96720, + "Label": "5499-96720 via Ribbon Synapse from 96714 -> 96722", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96714, + "TargetID": 96722, + "Directional": true + } + ] + }, + { + "ID": 8824, + "SourceStructureID": 5499, + "TargetStructureID": 96730, + "Label": "5499-96730 via Ribbon Synapse from 96723 -> 96732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96723, + "TargetID": 96732, + "Directional": true + } + ] + }, + { + "ID": 8825, + "SourceStructureID": 5499, + "TargetStructureID": 96733, + "Label": "5499-96733 via Ribbon Synapse from 96723 -> 96735", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96723, + "TargetID": 96735, + "Directional": true + } + ] + }, + { + "ID": 8826, + "SourceStructureID": 5499, + "TargetStructureID": 96738, + "Label": "5499-96738 via Ribbon Synapse from 96724 -> 96739", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96724, + "TargetID": 96739, + "Directional": true + } + ] + }, + { + "ID": 8827, + "SourceStructureID": 5499, + "TargetStructureID": 97171, + "Label": "5499-97171 via Ribbon Synapse from 97179 -> 97185, 106670 -> 106671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97179, + "TargetID": 97185, + "Directional": true + }, + { + "SourceID": 106670, + "TargetID": 106671, + "Directional": true + } + ] + }, + { + "ID": 8828, + "SourceStructureID": 5499, + "TargetStructureID": 105498, + "Label": "5499-105498 via Ribbon Synapse from 105497 -> 105499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105497, + "TargetID": 105499, + "Directional": true + } + ] + }, + { + "ID": 8829, + "SourceStructureID": 5499, + "TargetStructureID": 105506, + "Label": "5499-105506 via Ribbon Synapse from 105505 -> 105508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105505, + "TargetID": 105508, + "Directional": true + } + ] + }, + { + "ID": 8830, + "SourceStructureID": 5499, + "TargetStructureID": 105509, + "Label": "5499-105509 via Ribbon Synapse from 105505 -> 105510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105505, + "TargetID": 105510, + "Directional": true + } + ] + }, + { + "ID": 8831, + "SourceStructureID": 5499, + "TargetStructureID": 105521, + "Label": "5499-105521 via Ribbon Synapse from 105523 -> 105524", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105523, + "TargetID": 105524, + "Directional": true + } + ] + }, + { + "ID": 8832, + "SourceStructureID": 5499, + "TargetStructureID": 105526, + "Label": "5499-105526 via Ribbon Synapse from 105518 -> 105529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105518, + "TargetID": 105529, + "Directional": true + } + ] + }, + { + "ID": 8833, + "SourceStructureID": 5499, + "TargetStructureID": 106752, + "Label": "5499-106752 via Ribbon Synapse from 40151 -> 106753", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40151, + "TargetID": 106753, + "Directional": true + } + ] + }, + { + "ID": 8834, + "SourceStructureID": 5499, + "TargetStructureID": 108722, + "Label": "5499-108722 via BC Conventional Synapse from 105782 -> 108723", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105782, + "TargetID": 108723, + "Directional": true + } + ] + }, + { + "ID": 8835, + "SourceStructureID": 5499, + "TargetStructureID": 108727, + "Label": "5499-108727 via Ribbon Synapse from 105741 -> 108728", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105741, + "TargetID": 108728, + "Directional": true + } + ] + }, + { + "ID": 8836, + "SourceStructureID": 5499, + "TargetStructureID": 129927, + "Label": "5499-129927 via Ribbon Synapse from 96692 -> 96694, 106891 -> 129944", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96692, + "TargetID": 96694, + "Directional": true + }, + { + "SourceID": 106891, + "TargetID": 129944, + "Directional": true + } + ] + }, + { + "ID": 8837, + "SourceStructureID": 5500, + "TargetStructureID": 5405, + "Label": "5500-5405 via Ribbon Synapse from 40070 -> 11170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40070, + "TargetID": 11170, + "Directional": true + } + ] + }, + { + "ID": 8838, + "SourceStructureID": 5500, + "TargetStructureID": 5497, + "Label": "5500-5497 via Ribbon Synapse from 36498 -> 62564, 59385 -> 62569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36498, + "TargetID": 62564, + "Directional": true + }, + { + "SourceID": 59385, + "TargetID": 62569, + "Directional": true + } + ] + }, + { + "ID": 8839, + "SourceStructureID": 5500, + "TargetStructureID": 59333, + "Label": "5500-59333 via Ribbon Synapse from 59358 -> 59361, 59359 -> 59360", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59358, + "TargetID": 59361, + "Directional": true + }, + { + "SourceID": 59359, + "TargetID": 59360, + "Directional": true + } + ] + }, + { + "ID": 8840, + "SourceStructureID": 5500, + "TargetStructureID": 59371, + "Label": "5500-59371 via Ribbon Synapse from 59373 -> 59372", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59373, + "TargetID": 59372, + "Directional": true + } + ] + }, + { + "ID": 8841, + "SourceStructureID": 5500, + "TargetStructureID": 59389, + "Label": "5500-59389 via Ribbon Synapse from 59388 -> 59390", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59388, + "TargetID": 59390, + "Directional": true + } + ] + }, + { + "ID": 8842, + "SourceStructureID": 5500, + "TargetStructureID": 61450, + "Label": "5500-61450 via BC Conventional Synapse from 61495 -> 61494", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61495, + "TargetID": 61494, + "Directional": true + } + ] + }, + { + "ID": 8843, + "SourceStructureID": 5500, + "TargetStructureID": 85032, + "Label": "5500-85032 via Ribbon Synapse from 59358 -> 85034, 85035 -> 85036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59358, + "TargetID": 85034, + "Directional": true + }, + { + "SourceID": 85035, + "TargetID": 85036, + "Directional": true + } + ] + }, + { + "ID": 8844, + "SourceStructureID": 5501, + "TargetStructureID": 5107, + "Label": "5501-5107 via Ribbon Synapse from 131432 -> 65004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131432, + "TargetID": 65004, + "Directional": true + } + ] + }, + { + "ID": 8845, + "SourceStructureID": 5501, + "TargetStructureID": 5405, + "Label": "5501-5405 via Ribbon Synapse from 60766 -> 42920, 110210 -> 110211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60766, + "TargetID": 42920, + "Directional": true + }, + { + "SourceID": 110210, + "TargetID": 110211, + "Directional": true + } + ] + }, + { + "ID": 8846, + "SourceStructureID": 5501, + "TargetStructureID": 7134, + "Label": "5501-7134 via Ribbon Synapse from 15775 -> 29650, 36570 -> 122193, 122458 -> 41656", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15775, + "TargetID": 29650, + "Directional": true + }, + { + "SourceID": 36570, + "TargetID": 122193, + "Directional": true + }, + { + "SourceID": 122458, + "TargetID": 41656, + "Directional": true + } + ] + }, + { + "ID": 8847, + "SourceStructureID": 5501, + "TargetStructureID": 8575, + "Label": "5501-8575 via Ribbon Synapse from 62952 -> 62951", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62952, + "TargetID": 62951, + "Directional": true + } + ] + }, + { + "ID": 8848, + "SourceStructureID": 5501, + "TargetStructureID": 31024, + "Label": "5501-31024 via BC Conventional Synapse from 110243 -> 110242", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110243, + "TargetID": 110242, + "Directional": true + } + ] + }, + { + "ID": 8849, + "SourceStructureID": 5501, + "TargetStructureID": 68539, + "Label": "5501-68539 via Ribbon Synapse from 60408 -> 69080, 114049 -> 114048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60408, + "TargetID": 69080, + "Directional": true + }, + { + "SourceID": 114049, + "TargetID": 114048, + "Directional": true + } + ] + }, + { + "ID": 8850, + "SourceStructureID": 5501, + "TargetStructureID": 87342, + "Label": "5501-87342 via Ribbon Synapse from 36553 -> 87393, 36558 -> 87398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36553, + "TargetID": 87393, + "Directional": true + }, + { + "SourceID": 36558, + "TargetID": 87398, + "Directional": true + } + ] + }, + { + "ID": 8851, + "SourceStructureID": 5501, + "TargetStructureID": 87396, + "Label": "5501-87396 via Ribbon Synapse from 36558 -> 87399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36558, + "TargetID": 87399, + "Directional": true + } + ] + }, + { + "ID": 8852, + "SourceStructureID": 5501, + "TargetStructureID": 102793, + "Label": "5501-102793 via Ribbon Synapse from 131435 -> 131436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131435, + "TargetID": 131436, + "Directional": true + } + ] + }, + { + "ID": 8853, + "SourceStructureID": 5501, + "TargetStructureID": 106709, + "Label": "5501-106709 via Ribbon Synapse from 110246 -> 110255, 110252 -> 110251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110246, + "TargetID": 110255, + "Directional": true + }, + { + "SourceID": 110252, + "TargetID": 110251, + "Directional": true + } + ] + }, + { + "ID": 8854, + "SourceStructureID": 5501, + "TargetStructureID": 106732, + "Label": "5501-106732 via Ribbon Synapse from 110256 -> 110257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110256, + "TargetID": 110257, + "Directional": true + } + ] + }, + { + "ID": 8855, + "SourceStructureID": 5501, + "TargetStructureID": 108083, + "Label": "5501-108083 via Ribbon Synapse from 110212 -> 110220, 110216 -> 110222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110212, + "TargetID": 110220, + "Directional": true + }, + { + "SourceID": 110216, + "TargetID": 110222, + "Directional": true + } + ] + }, + { + "ID": 8856, + "SourceStructureID": 5501, + "TargetStructureID": 110064, + "Label": "5501-110064 via Ribbon Synapse from 36578 -> 110065", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36578, + "TargetID": 110065, + "Directional": true + } + ] + }, + { + "ID": 8857, + "SourceStructureID": 5502, + "TargetStructureID": 3679, + "Label": "5502-3679 via Ribbon Synapse from 27254 -> 27255", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27254, + "TargetID": 27255, + "Directional": true + } + ] + }, + { + "ID": 8858, + "SourceStructureID": 5502, + "TargetStructureID": 59229, + "Label": "5502-59229 via Ribbon Synapse from 27283 -> 85577", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27283, + "TargetID": 85577, + "Directional": true + } + ] + }, + { + "ID": 8859, + "SourceStructureID": 5502, + "TargetStructureID": 60657, + "Label": "5502-60657 via Ribbon Synapse from 27243 -> 61448", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27243, + "TargetID": 61448, + "Directional": true + } + ] + }, + { + "ID": 8860, + "SourceStructureID": 5503, + "TargetStructureID": 606, + "Label": "5503-606 via Ribbon Synapse from 47378 -> 110424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47378, + "TargetID": 110424, + "Directional": true + } + ] + }, + { + "ID": 8861, + "SourceStructureID": 5503, + "TargetStructureID": 5107, + "Label": "5503-5107 via Ribbon Synapse from 24861 -> 24863, 65000 -> 64999, 110052 -> 110056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24861, + "TargetID": 24863, + "Directional": true + }, + { + "SourceID": 65000, + "TargetID": 64999, + "Directional": true + }, + { + "SourceID": 110052, + "TargetID": 110056, + "Directional": true + } + ] + }, + { + "ID": 8862, + "SourceStructureID": 5503, + "TargetStructureID": 7897, + "Label": "5503-7897 via Ribbon Synapse from 60667 -> 109891, 60690 -> 109714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60667, + "TargetID": 109891, + "Directional": true + }, + { + "SourceID": 60690, + "TargetID": 109714, + "Directional": true + } + ] + }, + { + "ID": 8863, + "SourceStructureID": 5503, + "TargetStructureID": 8575, + "Label": "5503-8575 via Ribbon Synapse from 60725 -> 62995", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60725, + "TargetID": 62995, + "Directional": true + } + ] + }, + { + "ID": 8864, + "SourceStructureID": 5503, + "TargetStructureID": 16073, + "Label": "5503-16073 via Ribbon Synapse from 36635 -> 108919", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36635, + "TargetID": 108919, + "Directional": true + } + ] + }, + { + "ID": 8865, + "SourceStructureID": 5503, + "TargetStructureID": 52410, + "Label": "5503-52410 via Ribbon Synapse from 52438 -> 52439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52438, + "TargetID": 52439, + "Directional": true + } + ] + }, + { + "ID": 8866, + "SourceStructureID": 5503, + "TargetStructureID": 65002, + "Label": "5503-65002 via Ribbon Synapse from 65001 -> 110006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65001, + "TargetID": 110006, + "Directional": true + } + ] + }, + { + "ID": 8867, + "SourceStructureID": 5503, + "TargetStructureID": 87294, + "Label": "5503-87294 via Ribbon Synapse from 52438 -> 108379, 108422 -> 108428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52438, + "TargetID": 108379, + "Directional": true + }, + { + "SourceID": 108422, + "TargetID": 108428, + "Directional": true + } + ] + }, + { + "ID": 8868, + "SourceStructureID": 5503, + "TargetStructureID": 107374, + "Label": "5503-107374 via Cistern Pre from 36624 -> 107375", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 36624, + "TargetID": 107375, + "Directional": true + } + ] + }, + { + "ID": 8869, + "SourceStructureID": 5503, + "TargetStructureID": 107405, + "Label": "5503-107405 via Cistern Pre from 107404 -> 107407", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 107404, + "TargetID": 107407, + "Directional": true + } + ] + }, + { + "ID": 8870, + "SourceStructureID": 5503, + "TargetStructureID": 107414, + "Label": "5503-107414 via Ribbon Synapse from 60728 -> 107426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60728, + "TargetID": 107426, + "Directional": true + } + ] + }, + { + "ID": 8871, + "SourceStructureID": 5503, + "TargetStructureID": 107463, + "Label": "5503-107463 via Cistern Pre from 107462 -> 107465", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 107462, + "TargetID": 107465, + "Directional": true + } + ] + }, + { + "ID": 8872, + "SourceStructureID": 5503, + "TargetStructureID": 107510, + "Label": "5503-107510 via BC Conventional Synapse from 107509 -> 107522", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107509, + "TargetID": 107522, + "Directional": true + } + ] + }, + { + "ID": 8873, + "SourceStructureID": 5503, + "TargetStructureID": 107525, + "Label": "5503-107525 via Ribbon Synapse from 60707 -> 107959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60707, + "TargetID": 107959, + "Directional": true + } + ] + }, + { + "ID": 8874, + "SourceStructureID": 5503, + "TargetStructureID": 107957, + "Label": "5503-107957 via Ribbon Synapse from 60707 -> 107958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60707, + "TargetID": 107958, + "Directional": true + } + ] + }, + { + "ID": 8875, + "SourceStructureID": 5503, + "TargetStructureID": 107964, + "Label": "5503-107964 via BC Conventional Synapse from 107963 -> 107965", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107963, + "TargetID": 107965, + "Directional": true + } + ] + }, + { + "ID": 8876, + "SourceStructureID": 5503, + "TargetStructureID": 107966, + "Label": "5503-107966 via Ribbon Synapse from 60710 -> 107967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60710, + "TargetID": 107967, + "Directional": true + } + ] + }, + { + "ID": 8877, + "SourceStructureID": 5503, + "TargetStructureID": 107968, + "Label": "5503-107968 via Ribbon Synapse from 60710 -> 107969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60710, + "TargetID": 107969, + "Directional": true + } + ] + }, + { + "ID": 8878, + "SourceStructureID": 5503, + "TargetStructureID": 108011, + "Label": "5503-108011 via Ribbon Synapse from 60722 -> 108013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60722, + "TargetID": 108013, + "Directional": true + } + ] + }, + { + "ID": 8879, + "SourceStructureID": 5503, + "TargetStructureID": 108032, + "Label": "5503-108032 via BC Conventional Synapse from 108030 -> 108033", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108030, + "TargetID": 108033, + "Directional": true + } + ] + }, + { + "ID": 8880, + "SourceStructureID": 5503, + "TargetStructureID": 108257, + "Label": "5503-108257 via Ribbon Synapse from 37957 -> 108259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37957, + "TargetID": 108259, + "Directional": true + } + ] + }, + { + "ID": 8881, + "SourceStructureID": 5503, + "TargetStructureID": 108260, + "Label": "5503-108260 via Ribbon Synapse from 37957 -> 108261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37957, + "TargetID": 108261, + "Directional": true + } + ] + }, + { + "ID": 8882, + "SourceStructureID": 5503, + "TargetStructureID": 108426, + "Label": "5503-108426 via Ribbon Synapse from 108422 -> 108427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108422, + "TargetID": 108427, + "Directional": true + } + ] + }, + { + "ID": 8883, + "SourceStructureID": 5503, + "TargetStructureID": 108464, + "Label": "5503-108464 via BC Conventional Synapse from 108460 -> 108511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108460, + "TargetID": 108511, + "Directional": true + } + ] + }, + { + "ID": 8884, + "SourceStructureID": 5503, + "TargetStructureID": 108464, + "Label": "5503-108464 via Ribbon Synapse from 60633 -> 108683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60633, + "TargetID": 108683, + "Directional": true + } + ] + }, + { + "ID": 8885, + "SourceStructureID": 5503, + "TargetStructureID": 108485, + "Label": "5503-108485 via Ribbon Synapse from 60635 -> 108686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60635, + "TargetID": 108686, + "Directional": true + } + ] + }, + { + "ID": 8886, + "SourceStructureID": 5503, + "TargetStructureID": 108569, + "Label": "5503-108569 via Ribbon Synapse from 60632 -> 108570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60632, + "TargetID": 108570, + "Directional": true + } + ] + }, + { + "ID": 8887, + "SourceStructureID": 5503, + "TargetStructureID": 108684, + "Label": "5503-108684 via Ribbon Synapse from 60635 -> 108685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60635, + "TargetID": 108685, + "Directional": true + } + ] + }, + { + "ID": 8888, + "SourceStructureID": 5503, + "TargetStructureID": 108771, + "Label": "5503-108771 via Ribbon Synapse from 36634 -> 108772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36634, + "TargetID": 108772, + "Directional": true + } + ] + }, + { + "ID": 8889, + "SourceStructureID": 5503, + "TargetStructureID": 108787, + "Label": "5503-108787 via Ribbon Synapse from 36637 -> 108925", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36637, + "TargetID": 108925, + "Directional": true + } + ] + }, + { + "ID": 8890, + "SourceStructureID": 5503, + "TargetStructureID": 108826, + "Label": "5503-108826 via Ribbon Synapse from 36639 -> 108827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36639, + "TargetID": 108827, + "Directional": true + } + ] + }, + { + "ID": 8891, + "SourceStructureID": 5503, + "TargetStructureID": 108831, + "Label": "5503-108831 via Ribbon Synapse from 36639 -> 108838", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36639, + "TargetID": 108838, + "Directional": true + } + ] + }, + { + "ID": 8892, + "SourceStructureID": 5503, + "TargetStructureID": 108839, + "Label": "5503-108839 via Ribbon Synapse from 36641 -> 108841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36641, + "TargetID": 108841, + "Directional": true + } + ] + }, + { + "ID": 8893, + "SourceStructureID": 5503, + "TargetStructureID": 108856, + "Label": "5503-108856 via BC Conventional Synapse from 108852 -> 108864", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108852, + "TargetID": 108864, + "Directional": true + } + ] + }, + { + "ID": 8894, + "SourceStructureID": 5503, + "TargetStructureID": 108871, + "Label": "5503-108871 via Ribbon Synapse from 36648 -> 109961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36648, + "TargetID": 109961, + "Directional": true + } + ] + }, + { + "ID": 8895, + "SourceStructureID": 5503, + "TargetStructureID": 108923, + "Label": "5503-108923 via Ribbon Synapse from 36637 -> 108924", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36637, + "TargetID": 108924, + "Directional": true + } + ] + }, + { + "ID": 8896, + "SourceStructureID": 5503, + "TargetStructureID": 109693, + "Label": "5503-109693 via BC Conventional Synapse from 109690 -> 109701", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109690, + "TargetID": 109701, + "Directional": true + } + ] + }, + { + "ID": 8897, + "SourceStructureID": 5503, + "TargetStructureID": 109703, + "Label": "5503-109703 via Ribbon Synapse from 60691 -> 109705", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60691, + "TargetID": 109705, + "Directional": true + } + ] + }, + { + "ID": 8898, + "SourceStructureID": 5503, + "TargetStructureID": 109706, + "Label": "5503-109706 via Ribbon Synapse from 60691 -> 109707, 109744 -> 109745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60691, + "TargetID": 109707, + "Directional": true + }, + { + "SourceID": 109744, + "TargetID": 109745, + "Directional": true + } + ] + }, + { + "ID": 8899, + "SourceStructureID": 5503, + "TargetStructureID": 109746, + "Label": "5503-109746 via Ribbon Synapse from 109744 -> 109747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109744, + "TargetID": 109747, + "Directional": true + } + ] + }, + { + "ID": 8900, + "SourceStructureID": 5503, + "TargetStructureID": 109804, + "Label": "5503-109804 via Ribbon Synapse from 60667 -> 109869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60667, + "TargetID": 109869, + "Directional": true + } + ] + }, + { + "ID": 8901, + "SourceStructureID": 5503, + "TargetStructureID": 109870, + "Label": "5503-109870 via Ribbon Synapse from 60667 -> 109871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60667, + "TargetID": 109871, + "Directional": true + } + ] + }, + { + "ID": 8902, + "SourceStructureID": 5503, + "TargetStructureID": 109872, + "Label": "5503-109872 via Ribbon Synapse from 60667 -> 109888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60667, + "TargetID": 109888, + "Directional": true + } + ] + }, + { + "ID": 8903, + "SourceStructureID": 5503, + "TargetStructureID": 109893, + "Label": "5503-109893 via Ribbon Synapse from 60687 -> 109912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60687, + "TargetID": 109912, + "Directional": true + } + ] + }, + { + "ID": 8904, + "SourceStructureID": 5503, + "TargetStructureID": 109913, + "Label": "5503-109913 via Ribbon Synapse from 60673 -> 109919", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60673, + "TargetID": 109919, + "Directional": true + } + ] + }, + { + "ID": 8905, + "SourceStructureID": 5503, + "TargetStructureID": 109920, + "Label": "5503-109920 via Ribbon Synapse from 60673 -> 109921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60673, + "TargetID": 109921, + "Directional": true + } + ] + }, + { + "ID": 8906, + "SourceStructureID": 5503, + "TargetStructureID": 109965, + "Label": "5503-109965 via Ribbon Synapse from 36645 -> 109966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36645, + "TargetID": 109966, + "Directional": true + } + ] + }, + { + "ID": 8907, + "SourceStructureID": 5503, + "TargetStructureID": 109967, + "Label": "5503-109967 via Ribbon Synapse from 36644 -> 109968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36644, + "TargetID": 109968, + "Directional": true + } + ] + }, + { + "ID": 8908, + "SourceStructureID": 5503, + "TargetStructureID": 109977, + "Label": "5503-109977 via BC Conventional Synapse from 109976 -> 109978", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109976, + "TargetID": 109978, + "Directional": true + } + ] + }, + { + "ID": 8909, + "SourceStructureID": 5503, + "TargetStructureID": 109980, + "Label": "5503-109980 via Ribbon Synapse from 109983 -> 109985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109983, + "TargetID": 109985, + "Directional": true + } + ] + }, + { + "ID": 8910, + "SourceStructureID": 5503, + "TargetStructureID": 109986, + "Label": "5503-109986 via Ribbon Synapse from 109983 -> 109987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109983, + "TargetID": 109987, + "Directional": true + } + ] + }, + { + "ID": 8911, + "SourceStructureID": 5503, + "TargetStructureID": 109994, + "Label": "5503-109994 via BC Conventional Synapse from 109993 -> 109995", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109993, + "TargetID": 109995, + "Directional": true + } + ] + }, + { + "ID": 8912, + "SourceStructureID": 5503, + "TargetStructureID": 110007, + "Label": "5503-110007 via Ribbon Synapse from 65001 -> 110008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65001, + "TargetID": 110008, + "Directional": true + } + ] + }, + { + "ID": 8913, + "SourceStructureID": 5503, + "TargetStructureID": 110013, + "Label": "5503-110013 via BC Conventional Synapse from 110012 -> 110014", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110012, + "TargetID": 110014, + "Directional": true + } + ] + }, + { + "ID": 8914, + "SourceStructureID": 5503, + "TargetStructureID": 110019, + "Label": "5503-110019 via BC Conventional Synapse from 110021 -> 110020", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110021, + "TargetID": 110020, + "Directional": true + } + ] + }, + { + "ID": 8915, + "SourceStructureID": 5503, + "TargetStructureID": 110043, + "Label": "5503-110043 via BC Conventional Synapse from 110042 -> 110044", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110042, + "TargetID": 110044, + "Directional": true + } + ] + }, + { + "ID": 8916, + "SourceStructureID": 5503, + "TargetStructureID": 110050, + "Label": "5503-110050 via Ribbon Synapse from 24861 -> 110051", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24861, + "TargetID": 110051, + "Directional": true + } + ] + }, + { + "ID": 8917, + "SourceStructureID": 5503, + "TargetStructureID": 110062, + "Label": "5503-110062 via Ribbon Synapse from 110061 -> 110063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110061, + "TargetID": 110063, + "Directional": true + } + ] + }, + { + "ID": 8918, + "SourceStructureID": 5503, + "TargetStructureID": 110066, + "Label": "5503-110066 via Ribbon Synapse from 36583 -> 110093", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36583, + "TargetID": 110093, + "Directional": true + } + ] + }, + { + "ID": 8919, + "SourceStructureID": 5503, + "TargetStructureID": 110072, + "Label": "5503-110072 via Ribbon Synapse from 110085 -> 110086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110085, + "TargetID": 110086, + "Directional": true + } + ] + }, + { + "ID": 8920, + "SourceStructureID": 5503, + "TargetStructureID": 110078, + "Label": "5503-110078 via BC Conventional Synapse from 110077 -> 110079", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110077, + "TargetID": 110079, + "Directional": true + } + ] + }, + { + "ID": 8921, + "SourceStructureID": 5503, + "TargetStructureID": 110087, + "Label": "5503-110087 via Ribbon Synapse from 110085 -> 110088", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110085, + "TargetID": 110088, + "Directional": true + } + ] + }, + { + "ID": 8922, + "SourceStructureID": 5503, + "TargetStructureID": 110097, + "Label": "5503-110097 via Ribbon Synapse from 61321 -> 110098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61321, + "TargetID": 110098, + "Directional": true + } + ] + }, + { + "ID": 8923, + "SourceStructureID": 5503, + "TargetStructureID": 110110, + "Label": "5503-110110 via Ribbon Synapse from 110109 -> 110111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110109, + "TargetID": 110111, + "Directional": true + } + ] + }, + { + "ID": 8924, + "SourceStructureID": 5503, + "TargetStructureID": 110112, + "Label": "5503-110112 via Ribbon Synapse from 110109 -> 110117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110109, + "TargetID": 110117, + "Directional": true + } + ] + }, + { + "ID": 8925, + "SourceStructureID": 5503, + "TargetStructureID": 110129, + "Label": "5503-110129 via Ribbon Synapse from 110113 -> 110130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110113, + "TargetID": 110130, + "Directional": true + } + ] + }, + { + "ID": 8926, + "SourceStructureID": 5503, + "TargetStructureID": 110131, + "Label": "5503-110131 via Ribbon Synapse from 110113 -> 110132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110113, + "TargetID": 110132, + "Directional": true + } + ] + }, + { + "ID": 8927, + "SourceStructureID": 5503, + "TargetStructureID": 110157, + "Label": "5503-110157 via Ribbon Synapse from 110153 -> 110158", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110153, + "TargetID": 110158, + "Directional": true + } + ] + }, + { + "ID": 8928, + "SourceStructureID": 5503, + "TargetStructureID": 110159, + "Label": "5503-110159 via Ribbon Synapse from 110153 -> 110162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110153, + "TargetID": 110162, + "Directional": true + } + ] + }, + { + "ID": 8929, + "SourceStructureID": 5503, + "TargetStructureID": 110164, + "Label": "5503-110164 via Ribbon Synapse from 110163 -> 110165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110163, + "TargetID": 110165, + "Directional": true + } + ] + }, + { + "ID": 8930, + "SourceStructureID": 5503, + "TargetStructureID": 110247, + "Label": "5503-110247 via Ribbon Synapse from 110245 -> 110250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110245, + "TargetID": 110250, + "Directional": true + } + ] + }, + { + "ID": 8931, + "SourceStructureID": 5503, + "TargetStructureID": 110248, + "Label": "5503-110248 via Ribbon Synapse from 110245 -> 110249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110245, + "TargetID": 110249, + "Directional": true + } + ] + }, + { + "ID": 8932, + "SourceStructureID": 5503, + "TargetStructureID": 110281, + "Label": "5503-110281 via Ribbon Synapse from 36564 -> 110286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36564, + "TargetID": 110286, + "Directional": true + } + ] + }, + { + "ID": 8933, + "SourceStructureID": 5503, + "TargetStructureID": 110282, + "Label": "5503-110282 via Ribbon Synapse from 36564 -> 110285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36564, + "TargetID": 110285, + "Directional": true + } + ] + }, + { + "ID": 8934, + "SourceStructureID": 5503, + "TargetStructureID": 110354, + "Label": "5503-110354 via Ribbon Synapse from 110330 -> 110365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110330, + "TargetID": 110365, + "Directional": true + } + ] + }, + { + "ID": 8935, + "SourceStructureID": 5503, + "TargetStructureID": 110360, + "Label": "5503-110360 via Ribbon Synapse from 110330 -> 110363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110330, + "TargetID": 110363, + "Directional": true + } + ] + }, + { + "ID": 8936, + "SourceStructureID": 5503, + "TargetStructureID": 110392, + "Label": "5503-110392 via Ribbon Synapse from 110343 -> 110393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110343, + "TargetID": 110393, + "Directional": true + } + ] + }, + { + "ID": 8937, + "SourceStructureID": 5503, + "TargetStructureID": 110403, + "Label": "5503-110403 via Ribbon Synapse from 110400 -> 110405", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110400, + "TargetID": 110405, + "Directional": true + } + ] + }, + { + "ID": 8938, + "SourceStructureID": 5503, + "TargetStructureID": 110406, + "Label": "5503-110406 via Ribbon Synapse from 110400 -> 110407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110400, + "TargetID": 110407, + "Directional": true + } + ] + }, + { + "ID": 8939, + "SourceStructureID": 5503, + "TargetStructureID": 110410, + "Label": "5503-110410 via Ribbon Synapse from 110400 -> 110411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110400, + "TargetID": 110411, + "Directional": true + } + ] + }, + { + "ID": 8940, + "SourceStructureID": 5503, + "TargetStructureID": 110444, + "Label": "5503-110444 via BC Conventional Synapse from 110446 -> 110445", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110446, + "TargetID": 110445, + "Directional": true + } + ] + }, + { + "ID": 8941, + "SourceStructureID": 5503, + "TargetStructureID": 110449, + "Label": "5503-110449 via Ribbon Synapse from 60782 -> 110456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60782, + "TargetID": 110456, + "Directional": true + } + ] + }, + { + "ID": 8942, + "SourceStructureID": 5503, + "TargetStructureID": 110457, + "Label": "5503-110457 via Ribbon Synapse from 52806 -> 110458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52806, + "TargetID": 110458, + "Directional": true + } + ] + }, + { + "ID": 8943, + "SourceStructureID": 5503, + "TargetStructureID": 110459, + "Label": "5503-110459 via Ribbon Synapse from 52806 -> 110460", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52806, + "TargetID": 110460, + "Directional": true + } + ] + }, + { + "ID": 8944, + "SourceStructureID": 5503, + "TargetStructureID": 110463, + "Label": "5503-110463 via BC Conventional Synapse from 110462 -> 110464", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110462, + "TargetID": 110464, + "Directional": true + } + ] + }, + { + "ID": 8945, + "SourceStructureID": 5503, + "TargetStructureID": 110477, + "Label": "5503-110477 via Ribbon Synapse from 110461 -> 110478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110461, + "TargetID": 110478, + "Directional": true + } + ] + }, + { + "ID": 8946, + "SourceStructureID": 5503, + "TargetStructureID": 110479, + "Label": "5503-110479 via Ribbon Synapse from 110461 -> 110480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110461, + "TargetID": 110480, + "Directional": true + } + ] + }, + { + "ID": 8947, + "SourceStructureID": 5503, + "TargetStructureID": 110488, + "Label": "5503-110488 via BC Conventional Synapse from 110487 -> 110489", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110487, + "TargetID": 110489, + "Directional": true + } + ] + }, + { + "ID": 8948, + "SourceStructureID": 5503, + "TargetStructureID": 110490, + "Label": "5503-110490 via BC Conventional Synapse from 110486 -> 110491", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110486, + "TargetID": 110491, + "Directional": true + } + ] + }, + { + "ID": 8949, + "SourceStructureID": 5503, + "TargetStructureID": 111474, + "Label": "5503-111474 via Ribbon Synapse from 52438 -> 111475", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52438, + "TargetID": 111475, + "Directional": true + } + ] + }, + { + "ID": 8950, + "SourceStructureID": 5504, + "TargetStructureID": 5405, + "Label": "5504-5405 via Ribbon Synapse from 11121 -> 11122", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11121, + "TargetID": 11122, + "Directional": true + } + ] + }, + { + "ID": 8951, + "SourceStructureID": 5504, + "TargetStructureID": 8035, + "Label": "5504-8035 via Ribbon Synapse from 25014 -> 25018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25014, + "TargetID": 25018, + "Directional": true + } + ] + }, + { + "ID": 8952, + "SourceStructureID": 5511, + "TargetStructureID": 1620, + "Label": "5511-1620 via Ribbon Synapse from 17022 -> 16998, 17025 -> 17026, 21965 -> 16998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17022, + "TargetID": 16998, + "Directional": true + }, + { + "SourceID": 17025, + "TargetID": 17026, + "Directional": true + }, + { + "SourceID": 21965, + "TargetID": 16998, + "Directional": true + } + ] + }, + { + "ID": 8953, + "SourceStructureID": 5511, + "TargetStructureID": 12897, + "Label": "5511-12897 via Ribbon Synapse from 21972 -> 65175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21972, + "TargetID": 65175, + "Directional": true + } + ] + }, + { + "ID": 8954, + "SourceStructureID": 5511, + "TargetStructureID": 20608, + "Label": "5511-20608 via Ribbon Synapse from 20609 -> 20611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20609, + "TargetID": 20611, + "Directional": true + } + ] + }, + { + "ID": 8955, + "SourceStructureID": 5513, + "TargetStructureID": 606, + "Label": "5513-606 via Ribbon Synapse from 30666 -> 30667, 30668 -> 98784, 30670 -> 30671, 47580 -> 47581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30666, + "TargetID": 30667, + "Directional": true + }, + { + "SourceID": 30668, + "TargetID": 98784, + "Directional": true + }, + { + "SourceID": 30670, + "TargetID": 30671, + "Directional": true + }, + { + "SourceID": 47580, + "TargetID": 47581, + "Directional": true + } + ] + }, + { + "ID": 8956, + "SourceStructureID": 5513, + "TargetStructureID": 911, + "Label": "5513-911 via Ribbon Synapse from 35136 -> 35134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35136, + "TargetID": 35134, + "Directional": true + } + ] + }, + { + "ID": 8957, + "SourceStructureID": 5513, + "TargetStructureID": 7594, + "Label": "5513-7594 via Ribbon Synapse from 25123 -> 25122, 29590 -> 64855, 29603 -> 64853, 29604 -> 64854, 118216 -> 25118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25123, + "TargetID": 25122, + "Directional": true + }, + { + "SourceID": 29590, + "TargetID": 64855, + "Directional": true + }, + { + "SourceID": 29603, + "TargetID": 64853, + "Directional": true + }, + { + "SourceID": 29604, + "TargetID": 64854, + "Directional": true + }, + { + "SourceID": 118216, + "TargetID": 25118, + "Directional": true + } + ] + }, + { + "ID": 8958, + "SourceStructureID": 5513, + "TargetStructureID": 9769, + "Label": "5513-9769 via Ribbon Synapse from 12347 -> 12340, 46974 -> 12340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12347, + "TargetID": 12340, + "Directional": true + }, + { + "SourceID": 46974, + "TargetID": 12340, + "Directional": true + } + ] + }, + { + "ID": 8959, + "SourceStructureID": 5513, + "TargetStructureID": 32862, + "Label": "5513-32862 via Ribbon Synapse from 32870 -> 32869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32870, + "TargetID": 32869, + "Directional": true + } + ] + }, + { + "ID": 8960, + "SourceStructureID": 5513, + "TargetStructureID": 33117, + "Label": "5513-33117 via Ribbon Synapse from 29614 -> 33123, 33122 -> 33121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29614, + "TargetID": 33123, + "Directional": true + }, + { + "SourceID": 33122, + "TargetID": 33121, + "Directional": true + } + ] + }, + { + "ID": 8961, + "SourceStructureID": 5513, + "TargetStructureID": 35138, + "Label": "5513-35138 via Ribbon Synapse from 29625 -> 35141", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29625, + "TargetID": 35141, + "Directional": true + } + ] + }, + { + "ID": 8962, + "SourceStructureID": 5513, + "TargetStructureID": 37466, + "Label": "5513-37466 via Ribbon Synapse from 37469 -> 37468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37469, + "TargetID": 37468, + "Directional": true + } + ] + }, + { + "ID": 8963, + "SourceStructureID": 5513, + "TargetStructureID": 87162, + "Label": "5513-87162 via Ribbon Synapse from 87171 -> 87164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87171, + "TargetID": 87164, + "Directional": true + } + ] + }, + { + "ID": 8964, + "SourceStructureID": 5513, + "TargetStructureID": 99513, + "Label": "5513-99513 via Ribbon Synapse from 29612 -> 129631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29612, + "TargetID": 129631, + "Directional": true + } + ] + }, + { + "ID": 8965, + "SourceStructureID": 5514, + "TargetStructureID": 18693, + "Label": "5514-18693 via Ribbon Synapse from 121564 -> 121563", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121564, + "TargetID": 121563, + "Directional": true + } + ] + }, + { + "ID": 8966, + "SourceStructureID": 5514, + "TargetStructureID": 55366, + "Label": "5514-55366 via Ribbon Synapse from 55380 -> 55376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55380, + "TargetID": 55376, + "Directional": true + } + ] + }, + { + "ID": 8967, + "SourceStructureID": 5514, + "TargetStructureID": 105635, + "Label": "5514-105635 via Ribbon Synapse from 50698 -> 105637", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50698, + "TargetID": 105637, + "Directional": true + } + ] + }, + { + "ID": 8968, + "SourceStructureID": 5515, + "TargetStructureID": 525, + "Label": "5515-525 via Ribbon Synapse from 11333 -> 11332, 11391 -> 6246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11333, + "TargetID": 11332, + "Directional": true + }, + { + "SourceID": 11391, + "TargetID": 6246, + "Directional": true + } + ] + }, + { + "ID": 8969, + "SourceStructureID": 5515, + "TargetStructureID": 8576, + "Label": "5515-8576 via Ribbon Synapse from 11282 -> 69045, 69040 -> 69039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11282, + "TargetID": 69045, + "Directional": true + }, + { + "SourceID": 69040, + "TargetID": 69039, + "Directional": true + } + ] + }, + { + "ID": 8970, + "SourceStructureID": 5515, + "TargetStructureID": 8720, + "Label": "5515-8720 via Ribbon Synapse from 60110 -> 60108", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60110, + "TargetID": 60108, + "Directional": true + } + ] + }, + { + "ID": 8971, + "SourceStructureID": 5515, + "TargetStructureID": 18282, + "Label": "5515-18282 via Ribbon Synapse from 31441 -> 31440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31441, + "TargetID": 31440, + "Directional": true + } + ] + }, + { + "ID": 8972, + "SourceStructureID": 5515, + "TargetStructureID": 40480, + "Label": "5515-40480 via Ribbon Synapse from 56512 -> 59938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56512, + "TargetID": 59938, + "Directional": true + } + ] + }, + { + "ID": 8973, + "SourceStructureID": 5515, + "TargetStructureID": 66958, + "Label": "5515-66958 via Ribbon Synapse from 70063 -> 70061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70063, + "TargetID": 70061, + "Directional": true + } + ] + }, + { + "ID": 8974, + "SourceStructureID": 5515, + "TargetStructureID": 69049, + "Label": "5515-69049 via Ribbon Synapse from 69053 -> 69052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69053, + "TargetID": 69052, + "Directional": true + } + ] + }, + { + "ID": 8975, + "SourceStructureID": 5515, + "TargetStructureID": 132162, + "Label": "5515-132162 via Ribbon Synapse from 132165 -> 132167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132165, + "TargetID": 132167, + "Directional": true + } + ] + }, + { + "ID": 8976, + "SourceStructureID": 5515, + "TargetStructureID": 136742, + "Label": "5515-136742 via BC Conventional Synapse from 119130 -> 136750", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119130, + "TargetID": 136750, + "Directional": true + } + ] + }, + { + "ID": 8977, + "SourceStructureID": 5516, + "TargetStructureID": 5345, + "Label": "5516-5345 via Ribbon Synapse from 50086 -> 88853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50086, + "TargetID": 88853, + "Directional": true + } + ] + }, + { + "ID": 8978, + "SourceStructureID": 5516, + "TargetStructureID": 7594, + "Label": "5516-7594 via Ribbon Synapse from 50031 -> 7669, 50078 -> 7671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50031, + "TargetID": 7669, + "Directional": true + }, + { + "SourceID": 50078, + "TargetID": 7671, + "Directional": true + } + ] + }, + { + "ID": 8979, + "SourceStructureID": 5516, + "TargetStructureID": 9769, + "Label": "5516-9769 via Ribbon Synapse from 148194 -> 148195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148194, + "TargetID": 148195, + "Directional": true + } + ] + }, + { + "ID": 8980, + "SourceStructureID": 5516, + "TargetStructureID": 40018, + "Label": "5516-40018 via Ribbon Synapse from 40028 -> 40027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40028, + "TargetID": 40027, + "Directional": true + } + ] + }, + { + "ID": 8981, + "SourceStructureID": 5516, + "TargetStructureID": 68153, + "Label": "5516-68153 via Ribbon Synapse from 50112 -> 70155, 50113 -> 96580, 70167 -> 70161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50112, + "TargetID": 70155, + "Directional": true + }, + { + "SourceID": 50113, + "TargetID": 96580, + "Directional": true + }, + { + "SourceID": 70167, + "TargetID": 70161, + "Directional": true + } + ] + }, + { + "ID": 8982, + "SourceStructureID": 5516, + "TargetStructureID": 69162, + "Label": "5516-69162 via Ribbon Synapse from 50113 -> 96581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50113, + "TargetID": 96581, + "Directional": true + } + ] + }, + { + "ID": 8983, + "SourceStructureID": 5517, + "TargetStructureID": 598, + "Label": "5517-598 via Ribbon Synapse from 49371 -> 6319", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49371, + "TargetID": 6319, + "Directional": true + } + ] + }, + { + "ID": 8984, + "SourceStructureID": 5517, + "TargetStructureID": 1610, + "Label": "5517-1610 via Ribbon Synapse from 96074 -> 96075", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96074, + "TargetID": 96075, + "Directional": true + } + ] + }, + { + "ID": 8985, + "SourceStructureID": 5517, + "TargetStructureID": 5509, + "Label": "5517-5509 via Ribbon Synapse from 49404 -> 122392, 49405 -> 121911", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49404, + "TargetID": 122392, + "Directional": true + }, + { + "SourceID": 49405, + "TargetID": 121911, + "Directional": true + } + ] + }, + { + "ID": 8986, + "SourceStructureID": 5517, + "TargetStructureID": 7594, + "Label": "5517-7594 via Ribbon Synapse from 25105 -> 25103, 96065 -> 25115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25105, + "TargetID": 25103, + "Directional": true + }, + { + "SourceID": 96065, + "TargetID": 25115, + "Directional": true + } + ] + }, + { + "ID": 8987, + "SourceStructureID": 5517, + "TargetStructureID": 18693, + "Label": "5517-18693 via Ribbon Synapse from 18703 -> 18702, 23502 -> 23503, 96081 -> 96533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18703, + "TargetID": 18702, + "Directional": true + }, + { + "SourceID": 23502, + "TargetID": 23503, + "Directional": true + }, + { + "SourceID": 96081, + "TargetID": 96533, + "Directional": true + } + ] + }, + { + "ID": 8988, + "SourceStructureID": 5517, + "TargetStructureID": 30567, + "Label": "5517-30567 via Ribbon Synapse from 30659 -> 30658", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30659, + "TargetID": 30658, + "Directional": true + } + ] + }, + { + "ID": 8989, + "SourceStructureID": 5517, + "TargetStructureID": 40018, + "Label": "5517-40018 via Ribbon Synapse from 40021 -> 40020, 40025 -> 40024", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40021, + "TargetID": 40020, + "Directional": true + }, + { + "SourceID": 40025, + "TargetID": 40024, + "Directional": true + } + ] + }, + { + "ID": 8990, + "SourceStructureID": 5517, + "TargetStructureID": 53344, + "Label": "5517-53344 via Ribbon Synapse from 53343 -> 53345", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53343, + "TargetID": 53345, + "Directional": true + } + ] + }, + { + "ID": 8991, + "SourceStructureID": 5517, + "TargetStructureID": 53395, + "Label": "5517-53395 via Ribbon Synapse from 49475 -> 53397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49475, + "TargetID": 53397, + "Directional": true + } + ] + }, + { + "ID": 8992, + "SourceStructureID": 5517, + "TargetStructureID": 58592, + "Label": "5517-58592 via Ribbon Synapse from 49367 -> 58631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49367, + "TargetID": 58631, + "Directional": true + } + ] + }, + { + "ID": 8993, + "SourceStructureID": 5517, + "TargetStructureID": 68277, + "Label": "5517-68277 via Ribbon Synapse from 49364 -> 68279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49364, + "TargetID": 68279, + "Directional": true + } + ] + }, + { + "ID": 8994, + "SourceStructureID": 5517, + "TargetStructureID": 82229, + "Label": "5517-82229 via Ribbon Synapse from 49359 -> 82230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49359, + "TargetID": 82230, + "Directional": true + } + ] + }, + { + "ID": 8995, + "SourceStructureID": 5517, + "TargetStructureID": 87972, + "Label": "5517-87972 via Ribbon Synapse from 49272 -> 88011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49272, + "TargetID": 88011, + "Directional": true + } + ] + }, + { + "ID": 8996, + "SourceStructureID": 5517, + "TargetStructureID": 96178, + "Label": "5517-96178 via BC Conventional Synapse from 96177 -> 96179", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96177, + "TargetID": 96179, + "Directional": true + } + ] + }, + { + "ID": 8997, + "SourceStructureID": 5517, + "TargetStructureID": 96217, + "Label": "5517-96217 via BC Conventional Synapse from 96305 -> 96306", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96305, + "TargetID": 96306, + "Directional": true + } + ] + }, + { + "ID": 8998, + "SourceStructureID": 5517, + "TargetStructureID": 96217, + "Label": "5517-96217 via Ribbon Synapse from 96113 -> 96218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96113, + "TargetID": 96218, + "Directional": true + } + ] + }, + { + "ID": 8999, + "SourceStructureID": 5517, + "TargetStructureID": 96323, + "Label": "5517-96323 via Ribbon Synapse from 96109 -> 96324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96109, + "TargetID": 96324, + "Directional": true + } + ] + }, + { + "ID": 9000, + "SourceStructureID": 5517, + "TargetStructureID": 96335, + "Label": "5517-96335 via BC Conventional Synapse from 96330 -> 96336", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96330, + "TargetID": 96336, + "Directional": true + } + ] + }, + { + "ID": 9001, + "SourceStructureID": 5517, + "TargetStructureID": 109799, + "Label": "5517-109799 via BC Conventional Synapse from 119235 -> 119236", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119235, + "TargetID": 119236, + "Directional": true + } + ] + }, + { + "ID": 9002, + "SourceStructureID": 5517, + "TargetStructureID": 110367, + "Label": "5517-110367 via Cistern Pre from 135806 -> 135805", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 135806, + "TargetID": 135805, + "Directional": true + } + ] + }, + { + "ID": 9003, + "SourceStructureID": 5519, + "TargetStructureID": 46741, + "Label": "5519-46741 via Ribbon Synapse from 46740 -> 46742, 46745 -> 46743, 46747 -> 46744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46740, + "TargetID": 46742, + "Directional": true + }, + { + "SourceID": 46745, + "TargetID": 46743, + "Directional": true + }, + { + "SourceID": 46747, + "TargetID": 46744, + "Directional": true + } + ] + }, + { + "ID": 9004, + "SourceStructureID": 5519, + "TargetStructureID": 70501, + "Label": "5519-70501 via Ribbon Synapse from 46746 -> 70502, 70503 -> 70502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46746, + "TargetID": 70502, + "Directional": true + }, + { + "SourceID": 70503, + "TargetID": 70502, + "Directional": true + } + ] + }, + { + "ID": 9005, + "SourceStructureID": 5520, + "TargetStructureID": 5499, + "Label": "5520-5499 via Adherens from 105461 -> 105462", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 105461, + "TargetID": 105462, + "Directional": true + } + ] + }, + { + "ID": 9006, + "SourceStructureID": 5520, + "TargetStructureID": 5520, + "Label": "5520-5520 via Cistern Pre from 37930 -> 37931", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 37930, + "TargetID": 37931, + "Directional": true + } + ] + }, + { + "ID": 9007, + "SourceStructureID": 5520, + "TargetStructureID": 7897, + "Label": "5520-7897 via Ribbon Synapse from 119750 -> 55720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119750, + "TargetID": 55720, + "Directional": true + } + ] + }, + { + "ID": 9008, + "SourceStructureID": 5520, + "TargetStructureID": 8575, + "Label": "5520-8575 via Ribbon Synapse from 62998 -> 62997", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62998, + "TargetID": 62997, + "Directional": true + } + ] + }, + { + "ID": 9009, + "SourceStructureID": 5520, + "TargetStructureID": 136236, + "Label": "5520-136236 via Ribbon Synapse from 97903 -> 136237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97903, + "TargetID": 136237, + "Directional": true + } + ] + }, + { + "ID": 9010, + "SourceStructureID": 5522, + "TargetStructureID": 18282, + "Label": "5522-18282 via Ribbon Synapse from 43504 -> 43494, 109815 -> 43494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43504, + "TargetID": 43494, + "Directional": true + }, + { + "SourceID": 109815, + "TargetID": 43494, + "Directional": true + } + ] + }, + { + "ID": 9011, + "SourceStructureID": 5522, + "TargetStructureID": 31024, + "Label": "5522-31024 via Ribbon Synapse from 63128 -> 63130, 64119 -> 31363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63128, + "TargetID": 63130, + "Directional": true + }, + { + "SourceID": 64119, + "TargetID": 31363, + "Directional": true + } + ] + }, + { + "ID": 9012, + "SourceStructureID": 5522, + "TargetStructureID": 32804, + "Label": "5522-32804 via Ribbon Synapse from 43499 -> 32809, 43500 -> 32807, 64127 -> 32806, 64137 -> 64138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43499, + "TargetID": 32809, + "Directional": true + }, + { + "SourceID": 43500, + "TargetID": 32807, + "Directional": true + }, + { + "SourceID": 64127, + "TargetID": 32806, + "Directional": true + }, + { + "SourceID": 64137, + "TargetID": 64138, + "Directional": true + } + ] + }, + { + "ID": 9013, + "SourceStructureID": 5522, + "TargetStructureID": 63115, + "Label": "5522-63115 via Ribbon Synapse from 63118 -> 63119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63118, + "TargetID": 63119, + "Directional": true + } + ] + }, + { + "ID": 9014, + "SourceStructureID": 5522, + "TargetStructureID": 69554, + "Label": "5522-69554 via Ribbon Synapse from 63180 -> 69560, 63181 -> 69559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63180, + "TargetID": 69560, + "Directional": true + }, + { + "SourceID": 63181, + "TargetID": 69559, + "Directional": true + } + ] + }, + { + "ID": 9015, + "SourceStructureID": 5522, + "TargetStructureID": 75272, + "Label": "5522-75272 via Ribbon Synapse from 64320 -> 75298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64320, + "TargetID": 75298, + "Directional": true + } + ] + }, + { + "ID": 9016, + "SourceStructureID": 5528, + "TargetStructureID": 606, + "Label": "5528-606 via Ribbon Synapse from 54722 -> 54723, 107105 -> 53568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54722, + "TargetID": 54723, + "Directional": true + }, + { + "SourceID": 107105, + "TargetID": 53568, + "Directional": true + } + ] + }, + { + "ID": 9017, + "SourceStructureID": 5528, + "TargetStructureID": 7225, + "Label": "5528-7225 via Ribbon Synapse from 94517 -> 10029", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94517, + "TargetID": 10029, + "Directional": true + } + ] + }, + { + "ID": 9018, + "SourceStructureID": 5528, + "TargetStructureID": 7576, + "Label": "5528-7576 via BC Conventional Synapse from 55925 -> 55924, 95184 -> 95183, 95196 -> 55087", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55925, + "TargetID": 55924, + "Directional": true + }, + { + "SourceID": 95184, + "TargetID": 95183, + "Directional": true + }, + { + "SourceID": 95196, + "TargetID": 55087, + "Directional": true + } + ] + }, + { + "ID": 9019, + "SourceStructureID": 5528, + "TargetStructureID": 7576, + "Label": "5528-7576 via Ribbon Synapse from 8265 -> 54809, 8272 -> 55043, 54873 -> 54870, 55024 -> 55025, 55047 -> 55048, 55086 -> 55087, 95637 -> 95639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8265, + "TargetID": 54809, + "Directional": true + }, + { + "SourceID": 8272, + "TargetID": 55043, + "Directional": true + }, + { + "SourceID": 54873, + "TargetID": 54870, + "Directional": true + }, + { + "SourceID": 55024, + "TargetID": 55025, + "Directional": true + }, + { + "SourceID": 55047, + "TargetID": 55048, + "Directional": true + }, + { + "SourceID": 55086, + "TargetID": 55087, + "Directional": true + }, + { + "SourceID": 95637, + "TargetID": 95639, + "Directional": true + } + ] + }, + { + "ID": 9020, + "SourceStructureID": 5528, + "TargetStructureID": 7594, + "Label": "5528-7594 via Ribbon Synapse from 95172 -> 95174, 113943 -> 113944", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95172, + "TargetID": 95174, + "Directional": true + }, + { + "SourceID": 113943, + "TargetID": 113944, + "Directional": true + } + ] + }, + { + "ID": 9021, + "SourceStructureID": 5528, + "TargetStructureID": 33217, + "Label": "5528-33217 via Ribbon Synapse from 33237 -> 33232", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33237, + "TargetID": 33232, + "Directional": true + } + ] + }, + { + "ID": 9022, + "SourceStructureID": 5528, + "TargetStructureID": 43716, + "Label": "5528-43716 via Ribbon Synapse from 95172 -> 95173", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95172, + "TargetID": 95173, + "Directional": true + } + ] + }, + { + "ID": 9023, + "SourceStructureID": 5528, + "TargetStructureID": 55034, + "Label": "5528-55034 via Ribbon Synapse from 55035 -> 55036, 94721 -> 94724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55035, + "TargetID": 55036, + "Directional": true + }, + { + "SourceID": 94721, + "TargetID": 94724, + "Directional": true + } + ] + }, + { + "ID": 9024, + "SourceStructureID": 5528, + "TargetStructureID": 60243, + "Label": "5528-60243 via Ribbon Synapse from 60248 -> 96183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60248, + "TargetID": 96183, + "Directional": true + } + ] + }, + { + "ID": 9025, + "SourceStructureID": 5528, + "TargetStructureID": 64414, + "Label": "5528-64414 via Ribbon Synapse from 93944 -> 93949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93944, + "TargetID": 93949, + "Directional": true + } + ] + }, + { + "ID": 9026, + "SourceStructureID": 5528, + "TargetStructureID": 68793, + "Label": "5528-68793 via Ribbon Synapse from 68792 -> 68794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68792, + "TargetID": 68794, + "Directional": true + } + ] + }, + { + "ID": 9027, + "SourceStructureID": 5528, + "TargetStructureID": 77329, + "Label": "5528-77329 via Ribbon Synapse from 94401 -> 94402", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94401, + "TargetID": 94402, + "Directional": true + } + ] + }, + { + "ID": 9028, + "SourceStructureID": 5528, + "TargetStructureID": 77920, + "Label": "5528-77920 via Ribbon Synapse from 93944 -> 93948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93944, + "TargetID": 93948, + "Directional": true + } + ] + }, + { + "ID": 9029, + "SourceStructureID": 5528, + "TargetStructureID": 93523, + "Label": "5528-93523 via BC Conventional Synapse from 93526 -> 93527", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93526, + "TargetID": 93527, + "Directional": true + } + ] + }, + { + "ID": 9030, + "SourceStructureID": 5528, + "TargetStructureID": 93523, + "Label": "5528-93523 via Cistern Pre from 36390 -> 93525", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 36390, + "TargetID": 93525, + "Directional": true + } + ] + }, + { + "ID": 9031, + "SourceStructureID": 5528, + "TargetStructureID": 93565, + "Label": "5528-93565 via Ribbon Synapse from 93567 -> 93566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93567, + "TargetID": 93566, + "Directional": true + } + ] + }, + { + "ID": 9032, + "SourceStructureID": 5528, + "TargetStructureID": 93568, + "Label": "5528-93568 via Ribbon Synapse from 36394 -> 93569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36394, + "TargetID": 93569, + "Directional": true + } + ] + }, + { + "ID": 9033, + "SourceStructureID": 5528, + "TargetStructureID": 93571, + "Label": "5528-93571 via Cistern Pre from 93570 -> 93572", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 93570, + "TargetID": 93572, + "Directional": true + } + ] + }, + { + "ID": 9034, + "SourceStructureID": 5528, + "TargetStructureID": 93945, + "Label": "5528-93945 via Ribbon Synapse from 93944 -> 93946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93944, + "TargetID": 93946, + "Directional": true + } + ] + }, + { + "ID": 9035, + "SourceStructureID": 5528, + "TargetStructureID": 93950, + "Label": "5528-93950 via BC Conventional Synapse from 93952 -> 93951", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93952, + "TargetID": 93951, + "Directional": true + } + ] + }, + { + "ID": 9036, + "SourceStructureID": 5528, + "TargetStructureID": 93966, + "Label": "5528-93966 via Ribbon Synapse from 93956 -> 93967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93956, + "TargetID": 93967, + "Directional": true + } + ] + }, + { + "ID": 9037, + "SourceStructureID": 5528, + "TargetStructureID": 93968, + "Label": "5528-93968 via Ribbon Synapse from 93956 -> 93969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93956, + "TargetID": 93969, + "Directional": true + } + ] + }, + { + "ID": 9038, + "SourceStructureID": 5528, + "TargetStructureID": 93982, + "Label": "5528-93982 via BC Conventional Synapse from 93983 -> 93984", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93983, + "TargetID": 93984, + "Directional": true + } + ] + }, + { + "ID": 9039, + "SourceStructureID": 5528, + "TargetStructureID": 93993, + "Label": "5528-93993 via Ribbon Synapse from 93582 -> 93994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93582, + "TargetID": 93994, + "Directional": true + } + ] + }, + { + "ID": 9040, + "SourceStructureID": 5528, + "TargetStructureID": 94003, + "Label": "5528-94003 via Ribbon Synapse from 93582 -> 94004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93582, + "TargetID": 94004, + "Directional": true + } + ] + }, + { + "ID": 9041, + "SourceStructureID": 5528, + "TargetStructureID": 94015, + "Label": "5528-94015 via Ribbon Synapse from 93585 -> 94017", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93585, + "TargetID": 94017, + "Directional": true + } + ] + }, + { + "ID": 9042, + "SourceStructureID": 5528, + "TargetStructureID": 94021, + "Label": "5528-94021 via BC Conventional Synapse from 94020 -> 94022", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94020, + "TargetID": 94022, + "Directional": true + } + ] + }, + { + "ID": 9043, + "SourceStructureID": 5528, + "TargetStructureID": 94029, + "Label": "5528-94029 via Ribbon Synapse from 93601 -> 94030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93601, + "TargetID": 94030, + "Directional": true + } + ] + }, + { + "ID": 9044, + "SourceStructureID": 5528, + "TargetStructureID": 94038, + "Label": "5528-94038 via Ribbon Synapse from 94040 -> 94041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94040, + "TargetID": 94041, + "Directional": true + } + ] + }, + { + "ID": 9045, + "SourceStructureID": 5528, + "TargetStructureID": 94039, + "Label": "5528-94039 via Ribbon Synapse from 94040 -> 94042", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94040, + "TargetID": 94042, + "Directional": true + } + ] + }, + { + "ID": 9046, + "SourceStructureID": 5528, + "TargetStructureID": 94044, + "Label": "5528-94044 via Ribbon Synapse from 94043 -> 94045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94043, + "TargetID": 94045, + "Directional": true + } + ] + }, + { + "ID": 9047, + "SourceStructureID": 5528, + "TargetStructureID": 94046, + "Label": "5528-94046 via Ribbon Synapse from 94043 -> 94047", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94043, + "TargetID": 94047, + "Directional": true + } + ] + }, + { + "ID": 9048, + "SourceStructureID": 5528, + "TargetStructureID": 94123, + "Label": "5528-94123 via BC Conventional Synapse from 94125 -> 94124", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94125, + "TargetID": 94124, + "Directional": true + } + ] + }, + { + "ID": 9049, + "SourceStructureID": 5528, + "TargetStructureID": 94123, + "Label": "5528-94123 via Ribbon Synapse from 94134 -> 94135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94134, + "TargetID": 94135, + "Directional": true + } + ] + }, + { + "ID": 9050, + "SourceStructureID": 5528, + "TargetStructureID": 94127, + "Label": "5528-94127 via Ribbon Synapse from 94126 -> 94128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94126, + "TargetID": 94128, + "Directional": true + } + ] + }, + { + "ID": 9051, + "SourceStructureID": 5528, + "TargetStructureID": 94155, + "Label": "5528-94155 via Ribbon Synapse from 94154 -> 94156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94154, + "TargetID": 94156, + "Directional": true + } + ] + }, + { + "ID": 9052, + "SourceStructureID": 5528, + "TargetStructureID": 94161, + "Label": "5528-94161 via Ribbon Synapse from 94160 -> 94162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94160, + "TargetID": 94162, + "Directional": true + } + ] + }, + { + "ID": 9053, + "SourceStructureID": 5528, + "TargetStructureID": 94194, + "Label": "5528-94194 via BC Conventional Synapse from 94275 -> 94274", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94275, + "TargetID": 94274, + "Directional": true + } + ] + }, + { + "ID": 9054, + "SourceStructureID": 5528, + "TargetStructureID": 94262, + "Label": "5528-94262 via Ribbon Synapse from 94261 -> 94265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94261, + "TargetID": 94265, + "Directional": true + } + ] + }, + { + "ID": 9055, + "SourceStructureID": 5528, + "TargetStructureID": 94297, + "Label": "5528-94297 via Ribbon Synapse from 94304 -> 94310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94304, + "TargetID": 94310, + "Directional": true + } + ] + }, + { + "ID": 9056, + "SourceStructureID": 5528, + "TargetStructureID": 94303, + "Label": "5528-94303 via Ribbon Synapse from 94304 -> 94305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94304, + "TargetID": 94305, + "Directional": true + } + ] + }, + { + "ID": 9057, + "SourceStructureID": 5528, + "TargetStructureID": 94309, + "Label": "5528-94309 via BC Conventional Synapse from 94308 -> 94311", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94308, + "TargetID": 94311, + "Directional": true + } + ] + }, + { + "ID": 9058, + "SourceStructureID": 5528, + "TargetStructureID": 94353, + "Label": "5528-94353 via Ribbon Synapse from 94352 -> 94377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94352, + "TargetID": 94377, + "Directional": true + } + ] + }, + { + "ID": 9059, + "SourceStructureID": 5528, + "TargetStructureID": 94381, + "Label": "5528-94381 via Ribbon Synapse from 94380 -> 94382", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94380, + "TargetID": 94382, + "Directional": true + } + ] + }, + { + "ID": 9060, + "SourceStructureID": 5528, + "TargetStructureID": 94403, + "Label": "5528-94403 via Ribbon Synapse from 94401 -> 94404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94401, + "TargetID": 94404, + "Directional": true + } + ] + }, + { + "ID": 9061, + "SourceStructureID": 5528, + "TargetStructureID": 94409, + "Label": "5528-94409 via Ribbon Synapse from 91643 -> 94410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91643, + "TargetID": 94410, + "Directional": true + } + ] + }, + { + "ID": 9062, + "SourceStructureID": 5528, + "TargetStructureID": 94428, + "Label": "5528-94428 via Ribbon Synapse from 84674 -> 94429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84674, + "TargetID": 94429, + "Directional": true + } + ] + }, + { + "ID": 9063, + "SourceStructureID": 5528, + "TargetStructureID": 94430, + "Label": "5528-94430 via BC Conventional Synapse from 94431 -> 94432", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94431, + "TargetID": 94432, + "Directional": true + } + ] + }, + { + "ID": 9064, + "SourceStructureID": 5528, + "TargetStructureID": 94433, + "Label": "5528-94433 via BC Conventional Synapse from 94435 -> 94434", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94435, + "TargetID": 94434, + "Directional": true + } + ] + }, + { + "ID": 9065, + "SourceStructureID": 5528, + "TargetStructureID": 94479, + "Label": "5528-94479 via BC Conventional Synapse from 94510 -> 94511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94510, + "TargetID": 94511, + "Directional": true + } + ] + }, + { + "ID": 9066, + "SourceStructureID": 5528, + "TargetStructureID": 94479, + "Label": "5528-94479 via Ribbon Synapse from 94484 -> 94496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94484, + "TargetID": 94496, + "Directional": true + } + ] + }, + { + "ID": 9067, + "SourceStructureID": 5528, + "TargetStructureID": 94482, + "Label": "5528-94482 via Ribbon Synapse from 55024 -> 94483", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55024, + "TargetID": 94483, + "Directional": true + } + ] + }, + { + "ID": 9068, + "SourceStructureID": 5528, + "TargetStructureID": 94485, + "Label": "5528-94485 via Ribbon Synapse from 94484 -> 94495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94484, + "TargetID": 94495, + "Directional": true + } + ] + }, + { + "ID": 9069, + "SourceStructureID": 5528, + "TargetStructureID": 94518, + "Label": "5528-94518 via Ribbon Synapse from 94517 -> 94522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94517, + "TargetID": 94522, + "Directional": true + } + ] + }, + { + "ID": 9070, + "SourceStructureID": 5528, + "TargetStructureID": 94523, + "Label": "5528-94523 via Ribbon Synapse from 94517 -> 94524", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94517, + "TargetID": 94524, + "Directional": true + } + ] + }, + { + "ID": 9071, + "SourceStructureID": 5528, + "TargetStructureID": 94719, + "Label": "5528-94719 via Ribbon Synapse from 94718 -> 94720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94718, + "TargetID": 94720, + "Directional": true + } + ] + }, + { + "ID": 9072, + "SourceStructureID": 5528, + "TargetStructureID": 94722, + "Label": "5528-94722 via Ribbon Synapse from 94721 -> 94723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94721, + "TargetID": 94723, + "Directional": true + } + ] + }, + { + "ID": 9073, + "SourceStructureID": 5528, + "TargetStructureID": 94729, + "Label": "5528-94729 via Ribbon Synapse from 94730 -> 94731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94730, + "TargetID": 94731, + "Directional": true + } + ] + }, + { + "ID": 9074, + "SourceStructureID": 5528, + "TargetStructureID": 94733, + "Label": "5528-94733 via Ribbon Synapse from 94732 -> 94734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94732, + "TargetID": 94734, + "Directional": true + } + ] + }, + { + "ID": 9075, + "SourceStructureID": 5528, + "TargetStructureID": 94741, + "Label": "5528-94741 via Ribbon Synapse from 94792 -> 94793, 94792 -> 94795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94792, + "TargetID": 94793, + "Directional": true + }, + { + "SourceID": 94792, + "TargetID": 94795, + "Directional": true + } + ] + }, + { + "ID": 9076, + "SourceStructureID": 5528, + "TargetStructureID": 94827, + "Label": "5528-94827 via BC Conventional Synapse from 94829 -> 94828", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 94829, + "TargetID": 94828, + "Directional": true + } + ] + }, + { + "ID": 9077, + "SourceStructureID": 5528, + "TargetStructureID": 94867, + "Label": "5528-94867 via Ribbon Synapse from 8256 -> 95061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8256, + "TargetID": 95061, + "Directional": true + } + ] + }, + { + "ID": 9078, + "SourceStructureID": 5528, + "TargetStructureID": 94870, + "Label": "5528-94870 via Ribbon Synapse from 8255 -> 95055", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8255, + "TargetID": 95055, + "Directional": true + } + ] + }, + { + "ID": 9079, + "SourceStructureID": 5528, + "TargetStructureID": 95059, + "Label": "5528-95059 via Ribbon Synapse from 8256 -> 95060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8256, + "TargetID": 95060, + "Directional": true + } + ] + }, + { + "ID": 9080, + "SourceStructureID": 5528, + "TargetStructureID": 95069, + "Label": "5528-95069 via Ribbon Synapse from 68792 -> 95087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68792, + "TargetID": 95087, + "Directional": true + } + ] + }, + { + "ID": 9081, + "SourceStructureID": 5528, + "TargetStructureID": 95131, + "Label": "5528-95131 via Ribbon Synapse from 95132 -> 95133, 95141 -> 95142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95132, + "TargetID": 95133, + "Directional": true + }, + { + "SourceID": 95141, + "TargetID": 95142, + "Directional": true + } + ] + }, + { + "ID": 9082, + "SourceStructureID": 5528, + "TargetStructureID": 95134, + "Label": "5528-95134 via Ribbon Synapse from 95132 -> 95135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95132, + "TargetID": 95135, + "Directional": true + } + ] + }, + { + "ID": 9083, + "SourceStructureID": 5528, + "TargetStructureID": 95166, + "Label": "5528-95166 via Ribbon Synapse from 95165 -> 95169", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95165, + "TargetID": 95169, + "Directional": true + } + ] + }, + { + "ID": 9084, + "SourceStructureID": 5528, + "TargetStructureID": 95167, + "Label": "5528-95167 via Ribbon Synapse from 95165 -> 95168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95165, + "TargetID": 95168, + "Directional": true + } + ] + }, + { + "ID": 9085, + "SourceStructureID": 5528, + "TargetStructureID": 95187, + "Label": "5528-95187 via BC Conventional Synapse from 95189 -> 95188", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95189, + "TargetID": 95188, + "Directional": true + } + ] + }, + { + "ID": 9086, + "SourceStructureID": 5528, + "TargetStructureID": 95195, + "Label": "5528-95195 via Ribbon Synapse from 55086 -> 95464, 95637 -> 95638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55086, + "TargetID": 95464, + "Directional": true + }, + { + "SourceID": 95637, + "TargetID": 95638, + "Directional": true + } + ] + }, + { + "ID": 9087, + "SourceStructureID": 5528, + "TargetStructureID": 95435, + "Label": "5528-95435 via Ribbon Synapse from 95200 -> 95437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95200, + "TargetID": 95437, + "Directional": true + } + ] + }, + { + "ID": 9088, + "SourceStructureID": 5528, + "TargetStructureID": 95440, + "Label": "5528-95440 via Ribbon Synapse from 95200 -> 95453, 95462 -> 95463", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95200, + "TargetID": 95453, + "Directional": true + }, + { + "SourceID": 95462, + "TargetID": 95463, + "Directional": true + } + ] + }, + { + "ID": 9089, + "SourceStructureID": 5528, + "TargetStructureID": 95468, + "Label": "5528-95468 via BC Conventional Synapse from 95470 -> 95469", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95470, + "TargetID": 95469, + "Directional": true + } + ] + }, + { + "ID": 9090, + "SourceStructureID": 5528, + "TargetStructureID": 95659, + "Label": "5528-95659 via Ribbon Synapse from 8265 -> 95660", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8265, + "TargetID": 95660, + "Directional": true + } + ] + }, + { + "ID": 9091, + "SourceStructureID": 5528, + "TargetStructureID": 95662, + "Label": "5528-95662 via Ribbon Synapse from 8265 -> 95663", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8265, + "TargetID": 95663, + "Directional": true + } + ] + }, + { + "ID": 9092, + "SourceStructureID": 5528, + "TargetStructureID": 95670, + "Label": "5528-95670 via Ribbon Synapse from 8265 -> 95671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8265, + "TargetID": 95671, + "Directional": true + } + ] + }, + { + "ID": 9093, + "SourceStructureID": 5528, + "TargetStructureID": 95693, + "Label": "5528-95693 via Ribbon Synapse from 8267 -> 95695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8267, + "TargetID": 95695, + "Directional": true + } + ] + }, + { + "ID": 9094, + "SourceStructureID": 5528, + "TargetStructureID": 95696, + "Label": "5528-95696 via Ribbon Synapse from 8267 -> 95697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8267, + "TargetID": 95697, + "Directional": true + } + ] + }, + { + "ID": 9095, + "SourceStructureID": 5528, + "TargetStructureID": 95698, + "Label": "5528-95698 via Ribbon Synapse from 8269 -> 96167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8269, + "TargetID": 96167, + "Directional": true + } + ] + }, + { + "ID": 9096, + "SourceStructureID": 5528, + "TargetStructureID": 96143, + "Label": "5528-96143 via Ribbon Synapse from 8269 -> 96168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8269, + "TargetID": 96168, + "Directional": true + } + ] + }, + { + "ID": 9097, + "SourceStructureID": 5528, + "TargetStructureID": 96207, + "Label": "5528-96207 via Ribbon Synapse from 96206 -> 96208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96206, + "TargetID": 96208, + "Directional": true + } + ] + }, + { + "ID": 9098, + "SourceStructureID": 5528, + "TargetStructureID": 96227, + "Label": "5528-96227 via BC Conventional Synapse from 96229 -> 96230", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96229, + "TargetID": 96230, + "Directional": true + } + ] + }, + { + "ID": 9099, + "SourceStructureID": 5528, + "TargetStructureID": 96227, + "Label": "5528-96227 via Ribbon Synapse from 96231 -> 96232", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96231, + "TargetID": 96232, + "Directional": true + } + ] + }, + { + "ID": 9100, + "SourceStructureID": 5528, + "TargetStructureID": 96234, + "Label": "5528-96234 via Ribbon Synapse from 96233 -> 96235", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96233, + "TargetID": 96235, + "Directional": true + } + ] + }, + { + "ID": 9101, + "SourceStructureID": 5528, + "TargetStructureID": 96236, + "Label": "5528-96236 via Ribbon Synapse from 96233 -> 96237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96233, + "TargetID": 96237, + "Directional": true + } + ] + }, + { + "ID": 9102, + "SourceStructureID": 5528, + "TargetStructureID": 96238, + "Label": "5528-96238 via Ribbon Synapse from 96231 -> 96239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96231, + "TargetID": 96239, + "Directional": true + } + ] + }, + { + "ID": 9103, + "SourceStructureID": 5528, + "TargetStructureID": 96240, + "Label": "5528-96240 via BC Conventional Synapse from 96241 -> 96242", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96241, + "TargetID": 96242, + "Directional": true + } + ] + }, + { + "ID": 9104, + "SourceStructureID": 5528, + "TargetStructureID": 96252, + "Label": "5528-96252 via BC Conventional Synapse from 96253 -> 96254", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96253, + "TargetID": 96254, + "Directional": true + } + ] + }, + { + "ID": 9105, + "SourceStructureID": 5528, + "TargetStructureID": 96280, + "Label": "5528-96280 via Ribbon Synapse from 8284 -> 96281", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8284, + "TargetID": 96281, + "Directional": true + } + ] + }, + { + "ID": 9106, + "SourceStructureID": 5528, + "TargetStructureID": 96303, + "Label": "5528-96303 via Ribbon Synapse from 8279 -> 96831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8279, + "TargetID": 96831, + "Directional": true + } + ] + }, + { + "ID": 9107, + "SourceStructureID": 5528, + "TargetStructureID": 96304, + "Label": "5528-96304 via Ribbon Synapse from 8279 -> 96828, 8280 -> 96827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8279, + "TargetID": 96828, + "Directional": true + }, + { + "SourceID": 8280, + "TargetID": 96827, + "Directional": true + } + ] + }, + { + "ID": 9108, + "SourceStructureID": 5528, + "TargetStructureID": 96832, + "Label": "5528-96832 via Ribbon Synapse from 107105 -> 96833", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107105, + "TargetID": 96833, + "Directional": true + } + ] + }, + { + "ID": 9109, + "SourceStructureID": 5528, + "TargetStructureID": 96834, + "Label": "5528-96834 via Ribbon Synapse from 107105 -> 96836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107105, + "TargetID": 96836, + "Directional": true + } + ] + }, + { + "ID": 9110, + "SourceStructureID": 5528, + "TargetStructureID": 96837, + "Label": "5528-96837 via Ribbon Synapse from 107105 -> 96838", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107105, + "TargetID": 96838, + "Directional": true + } + ] + }, + { + "ID": 9111, + "SourceStructureID": 5528, + "TargetStructureID": 96880, + "Label": "5528-96880 via Ribbon Synapse from 8291 -> 96882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8291, + "TargetID": 96882, + "Directional": true + } + ] + }, + { + "ID": 9112, + "SourceStructureID": 5528, + "TargetStructureID": 96883, + "Label": "5528-96883 via Ribbon Synapse from 8295 -> 96886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8295, + "TargetID": 96886, + "Directional": true + } + ] + }, + { + "ID": 9113, + "SourceStructureID": 5528, + "TargetStructureID": 96884, + "Label": "5528-96884 via Ribbon Synapse from 8295 -> 96885", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8295, + "TargetID": 96885, + "Directional": true + } + ] + }, + { + "ID": 9114, + "SourceStructureID": 5528, + "TargetStructureID": 96891, + "Label": "5528-96891 via Ribbon Synapse from 8292 -> 96892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8292, + "TargetID": 96892, + "Directional": true + } + ] + }, + { + "ID": 9115, + "SourceStructureID": 5528, + "TargetStructureID": 96893, + "Label": "5528-96893 via Ribbon Synapse from 8292 -> 96913, 96894 -> 96896, 96894 -> 96897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8292, + "TargetID": 96913, + "Directional": true + }, + { + "SourceID": 96894, + "TargetID": 96896, + "Directional": true + }, + { + "SourceID": 96894, + "TargetID": 96897, + "Directional": true + } + ] + }, + { + "ID": 9116, + "SourceStructureID": 5528, + "TargetStructureID": 96898, + "Label": "5528-96898 via BC Conventional Synapse from 96903 -> 96904", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96903, + "TargetID": 96904, + "Directional": true + } + ] + }, + { + "ID": 9117, + "SourceStructureID": 5528, + "TargetStructureID": 96906, + "Label": "5528-96906 via Ribbon Synapse from 96905 -> 96907", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96905, + "TargetID": 96907, + "Directional": true + } + ] + }, + { + "ID": 9118, + "SourceStructureID": 5528, + "TargetStructureID": 96909, + "Label": "5528-96909 via Ribbon Synapse from 8296 -> 96910", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8296, + "TargetID": 96910, + "Directional": true + } + ] + }, + { + "ID": 9119, + "SourceStructureID": 5528, + "TargetStructureID": 96911, + "Label": "5528-96911 via Ribbon Synapse from 8296 -> 96912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8296, + "TargetID": 96912, + "Directional": true + } + ] + }, + { + "ID": 9120, + "SourceStructureID": 5528, + "TargetStructureID": 97244, + "Label": "5528-97244 via Ribbon Synapse from 55047 -> 97251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55047, + "TargetID": 97251, + "Directional": true + } + ] + }, + { + "ID": 9121, + "SourceStructureID": 5528, + "TargetStructureID": 97252, + "Label": "5528-97252 via Ribbon Synapse from 55047 -> 97257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55047, + "TargetID": 97257, + "Directional": true + } + ] + }, + { + "ID": 9122, + "SourceStructureID": 5528, + "TargetStructureID": 97260, + "Label": "5528-97260 via Ribbon Synapse from 55047 -> 97263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55047, + "TargetID": 97263, + "Directional": true + } + ] + }, + { + "ID": 9123, + "SourceStructureID": 5528, + "TargetStructureID": 97272, + "Label": "5528-97272 via Ribbon Synapse from 97270 -> 97277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97270, + "TargetID": 97277, + "Directional": true + } + ] + }, + { + "ID": 9124, + "SourceStructureID": 5528, + "TargetStructureID": 97280, + "Label": "5528-97280 via Ribbon Synapse from 97270 -> 97283", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97270, + "TargetID": 97283, + "Directional": true + } + ] + }, + { + "ID": 9125, + "SourceStructureID": 5528, + "TargetStructureID": 97293, + "Label": "5528-97293 via Ribbon Synapse from 54722 -> 97301", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54722, + "TargetID": 97301, + "Directional": true + } + ] + }, + { + "ID": 9126, + "SourceStructureID": 5530, + "TargetStructureID": 606, + "Label": "5530-606 via Ribbon Synapse from 23844 -> 23840, 23859 -> 44214, 23861 -> 10514, 42097 -> 50902, 42099 -> 50903, 42141 -> 50906, 42145 -> 53541, 44215 -> 10511, 44247 -> 44243, 45233 -> 52543, 50952 -> 50950, 53413 -> 53412, 53506 -> 53507, 53543 -> 53544, 54034 -> 54035, 54043 -> 54044, 54047 -> 10518, 54055 -> 54056, 54106 -> 10521", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23844, + "TargetID": 23840, + "Directional": true + }, + { + "SourceID": 23859, + "TargetID": 44214, + "Directional": true + }, + { + "SourceID": 23861, + "TargetID": 10514, + "Directional": true + }, + { + "SourceID": 42097, + "TargetID": 50902, + "Directional": true + }, + { + "SourceID": 42099, + "TargetID": 50903, + "Directional": true + }, + { + "SourceID": 42141, + "TargetID": 50906, + "Directional": true + }, + { + "SourceID": 42145, + "TargetID": 53541, + "Directional": true + }, + { + "SourceID": 44215, + "TargetID": 10511, + "Directional": true + }, + { + "SourceID": 44247, + "TargetID": 44243, + "Directional": true + }, + { + "SourceID": 45233, + "TargetID": 52543, + "Directional": true + }, + { + "SourceID": 50952, + "TargetID": 50950, + "Directional": true + }, + { + "SourceID": 53413, + "TargetID": 53412, + "Directional": true + }, + { + "SourceID": 53506, + "TargetID": 53507, + "Directional": true + }, + { + "SourceID": 53543, + "TargetID": 53544, + "Directional": true + }, + { + "SourceID": 54034, + "TargetID": 54035, + "Directional": true + }, + { + "SourceID": 54043, + "TargetID": 54044, + "Directional": true + }, + { + "SourceID": 54047, + "TargetID": 10518, + "Directional": true + }, + { + "SourceID": 54055, + "TargetID": 54056, + "Directional": true + }, + { + "SourceID": 54106, + "TargetID": 10521, + "Directional": true + } + ] + }, + { + "ID": 9127, + "SourceStructureID": 5530, + "TargetStructureID": 5435, + "Label": "5530-5435 via Ribbon Synapse from 52537 -> 82419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52537, + "TargetID": 82419, + "Directional": true + } + ] + }, + { + "ID": 9128, + "SourceStructureID": 5530, + "TargetStructureID": 5451, + "Label": "5530-5451 via BC Conventional Synapse from 81114 -> 81116", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81114, + "TargetID": 81116, + "Directional": true + } + ] + }, + { + "ID": 9129, + "SourceStructureID": 5530, + "TargetStructureID": 5451, + "Label": "5530-5451 via Ribbon Synapse from 55199 -> 55196", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55199, + "TargetID": 55196, + "Directional": true + } + ] + }, + { + "ID": 9130, + "SourceStructureID": 5530, + "TargetStructureID": 7594, + "Label": "5530-7594 via Ribbon Synapse from 17906 -> 17907", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17906, + "TargetID": 17907, + "Directional": true + } + ] + }, + { + "ID": 9131, + "SourceStructureID": 5530, + "TargetStructureID": 9769, + "Label": "5530-9769 via Ribbon Synapse from 29867 -> 29859, 30119 -> 30113, 39712 -> 126459, 45218 -> 45217, 45314 -> 45315, 74220 -> 74221, 74676 -> 74876, 80481 -> 80482", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29867, + "TargetID": 29859, + "Directional": true + }, + { + "SourceID": 30119, + "TargetID": 30113, + "Directional": true + }, + { + "SourceID": 39712, + "TargetID": 126459, + "Directional": true + }, + { + "SourceID": 45218, + "TargetID": 45217, + "Directional": true + }, + { + "SourceID": 45314, + "TargetID": 45315, + "Directional": true + }, + { + "SourceID": 74220, + "TargetID": 74221, + "Directional": true + }, + { + "SourceID": 74676, + "TargetID": 74876, + "Directional": true + }, + { + "SourceID": 80481, + "TargetID": 80482, + "Directional": true + } + ] + }, + { + "ID": 9132, + "SourceStructureID": 5530, + "TargetStructureID": 12564, + "Label": "5530-12564 via Ribbon Synapse from 77345 -> 77346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77345, + "TargetID": 77346, + "Directional": true + } + ] + }, + { + "ID": 9133, + "SourceStructureID": 5530, + "TargetStructureID": 18693, + "Label": "5530-18693 via Ribbon Synapse from 77650 -> 77651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77650, + "TargetID": 77651, + "Directional": true + } + ] + }, + { + "ID": 9134, + "SourceStructureID": 5530, + "TargetStructureID": 23512, + "Label": "5530-23512 via Ribbon Synapse from 23842 -> 23843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23842, + "TargetID": 23843, + "Directional": true + } + ] + }, + { + "ID": 9135, + "SourceStructureID": 5530, + "TargetStructureID": 25293, + "Label": "5530-25293 via Ribbon Synapse from 23859 -> 25299", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23859, + "TargetID": 25299, + "Directional": true + } + ] + }, + { + "ID": 9136, + "SourceStructureID": 5530, + "TargetStructureID": 35152, + "Label": "5530-35152 via Ribbon Synapse from 35163 -> 35162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35163, + "TargetID": 35162, + "Directional": true + } + ] + }, + { + "ID": 9137, + "SourceStructureID": 5530, + "TargetStructureID": 35288, + "Label": "5530-35288 via Ribbon Synapse from 35304 -> 35303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35304, + "TargetID": 35303, + "Directional": true + } + ] + }, + { + "ID": 9138, + "SourceStructureID": 5530, + "TargetStructureID": 35539, + "Label": "5530-35539 via Ribbon Synapse from 17906 -> 35543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17906, + "TargetID": 35543, + "Directional": true + } + ] + }, + { + "ID": 9139, + "SourceStructureID": 5530, + "TargetStructureID": 35653, + "Label": "5530-35653 via Ribbon Synapse from 75534 -> 75535", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75534, + "TargetID": 75535, + "Directional": true + } + ] + }, + { + "ID": 9140, + "SourceStructureID": 5530, + "TargetStructureID": 39696, + "Label": "5530-39696 via Ribbon Synapse from 39715 -> 39711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39715, + "TargetID": 39711, + "Directional": true + } + ] + }, + { + "ID": 9141, + "SourceStructureID": 5530, + "TargetStructureID": 45220, + "Label": "5530-45220 via Ribbon Synapse from 45233 -> 45232, 54034 -> 55182, 54063 -> 81574, 55178 -> 55180, 55205 -> 55206, 81226 -> 45224, 81243 -> 81246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45233, + "TargetID": 45232, + "Directional": true + }, + { + "SourceID": 54034, + "TargetID": 55182, + "Directional": true + }, + { + "SourceID": 54063, + "TargetID": 81574, + "Directional": true + }, + { + "SourceID": 55178, + "TargetID": 55180, + "Directional": true + }, + { + "SourceID": 55205, + "TargetID": 55206, + "Directional": true + }, + { + "SourceID": 81226, + "TargetID": 45224, + "Directional": true + }, + { + "SourceID": 81243, + "TargetID": 81246, + "Directional": true + } + ] + }, + { + "ID": 9142, + "SourceStructureID": 5530, + "TargetStructureID": 54925, + "Label": "5530-54925 via Ribbon Synapse from 54047 -> 54946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54047, + "TargetID": 54946, + "Directional": true + } + ] + }, + { + "ID": 9143, + "SourceStructureID": 5530, + "TargetStructureID": 70566, + "Label": "5530-70566 via Ribbon Synapse from 80306 -> 80308", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80306, + "TargetID": 80308, + "Directional": true + } + ] + }, + { + "ID": 9144, + "SourceStructureID": 5530, + "TargetStructureID": 71882, + "Label": "5530-71882 via Ribbon Synapse from 75909 -> 90451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75909, + "TargetID": 90451, + "Directional": true + } + ] + }, + { + "ID": 9145, + "SourceStructureID": 5530, + "TargetStructureID": 74049, + "Label": "5530-74049 via Cistern Pre from 37805 -> 74050", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 37805, + "TargetID": 74050, + "Directional": true + } + ] + }, + { + "ID": 9146, + "SourceStructureID": 5530, + "TargetStructureID": 74056, + "Label": "5530-74056 via BC Conventional Synapse from 74055 -> 74057", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74055, + "TargetID": 74057, + "Directional": true + } + ] + }, + { + "ID": 9147, + "SourceStructureID": 5530, + "TargetStructureID": 74222, + "Label": "5530-74222 via Ribbon Synapse from 74220 -> 74223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74220, + "TargetID": 74223, + "Directional": true + } + ] + }, + { + "ID": 9148, + "SourceStructureID": 5530, + "TargetStructureID": 74909, + "Label": "5530-74909 via Ribbon Synapse from 74676 -> 74910", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74676, + "TargetID": 74910, + "Directional": true + } + ] + }, + { + "ID": 9149, + "SourceStructureID": 5530, + "TargetStructureID": 74911, + "Label": "5530-74911 via Ribbon Synapse from 45218 -> 74912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45218, + "TargetID": 74912, + "Directional": true + } + ] + }, + { + "ID": 9150, + "SourceStructureID": 5530, + "TargetStructureID": 74978, + "Label": "5530-74978 via Adherens from 74980 -> 74982", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 74980, + "TargetID": 74982, + "Directional": true + } + ] + }, + { + "ID": 9151, + "SourceStructureID": 5530, + "TargetStructureID": 74978, + "Label": "5530-74978 via Ribbon Synapse from 74989 -> 74988", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74989, + "TargetID": 74988, + "Directional": true + } + ] + }, + { + "ID": 9152, + "SourceStructureID": 5530, + "TargetStructureID": 75395, + "Label": "5530-75395 via Ribbon Synapse from 75398 -> 75399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75398, + "TargetID": 75399, + "Directional": true + } + ] + }, + { + "ID": 9153, + "SourceStructureID": 5530, + "TargetStructureID": 75400, + "Label": "5530-75400 via Ribbon Synapse from 75398 -> 75403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75398, + "TargetID": 75403, + "Directional": true + } + ] + }, + { + "ID": 9154, + "SourceStructureID": 5530, + "TargetStructureID": 75404, + "Label": "5530-75404 via Ribbon Synapse from 75406 -> 75407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75406, + "TargetID": 75407, + "Directional": true + } + ] + }, + { + "ID": 9155, + "SourceStructureID": 5530, + "TargetStructureID": 75488, + "Label": "5530-75488 via Ribbon Synapse from 75492 -> 75494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75492, + "TargetID": 75494, + "Directional": true + } + ] + }, + { + "ID": 9156, + "SourceStructureID": 5530, + "TargetStructureID": 75491, + "Label": "5530-75491 via Ribbon Synapse from 75492 -> 75493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75492, + "TargetID": 75493, + "Directional": true + } + ] + }, + { + "ID": 9157, + "SourceStructureID": 5530, + "TargetStructureID": 75517, + "Label": "5530-75517 via Ribbon Synapse from 53414 -> 75518, 75534 -> 75536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53414, + "TargetID": 75518, + "Directional": true + }, + { + "SourceID": 75534, + "TargetID": 75536, + "Directional": true + } + ] + }, + { + "ID": 9158, + "SourceStructureID": 5530, + "TargetStructureID": 75519, + "Label": "5530-75519 via Ribbon Synapse from 53414 -> 75520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53414, + "TargetID": 75520, + "Directional": true + } + ] + }, + { + "ID": 9159, + "SourceStructureID": 5530, + "TargetStructureID": 75521, + "Label": "5530-75521 via Ribbon Synapse from 53413 -> 75523", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53413, + "TargetID": 75523, + "Directional": true + } + ] + }, + { + "ID": 9160, + "SourceStructureID": 5530, + "TargetStructureID": 75780, + "Label": "5530-75780 via Ribbon Synapse from 75779 -> 75781, 75786 -> 75787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75779, + "TargetID": 75781, + "Directional": true + }, + { + "SourceID": 75786, + "TargetID": 75787, + "Directional": true + } + ] + }, + { + "ID": 9161, + "SourceStructureID": 5530, + "TargetStructureID": 75782, + "Label": "5530-75782 via Ribbon Synapse from 75779 -> 75785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75779, + "TargetID": 75785, + "Directional": true + } + ] + }, + { + "ID": 9162, + "SourceStructureID": 5530, + "TargetStructureID": 75795, + "Label": "5530-75795 via Ribbon Synapse from 75800 -> 75803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75800, + "TargetID": 75803, + "Directional": true + } + ] + }, + { + "ID": 9163, + "SourceStructureID": 5530, + "TargetStructureID": 75796, + "Label": "5530-75796 via Ribbon Synapse from 75797 -> 75798, 75800 -> 75802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75797, + "TargetID": 75798, + "Directional": true + }, + { + "SourceID": 75800, + "TargetID": 75802, + "Directional": true + } + ] + }, + { + "ID": 9164, + "SourceStructureID": 5530, + "TargetStructureID": 75890, + "Label": "5530-75890 via Ribbon Synapse from 75889 -> 75891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75889, + "TargetID": 75891, + "Directional": true + } + ] + }, + { + "ID": 9165, + "SourceStructureID": 5530, + "TargetStructureID": 75898, + "Label": "5530-75898 via Ribbon Synapse from 75897 -> 75899", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75897, + "TargetID": 75899, + "Directional": true + } + ] + }, + { + "ID": 9166, + "SourceStructureID": 5530, + "TargetStructureID": 75911, + "Label": "5530-75911 via Ribbon Synapse from 75909 -> 75914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75909, + "TargetID": 75914, + "Directional": true + } + ] + }, + { + "ID": 9167, + "SourceStructureID": 5530, + "TargetStructureID": 76483, + "Label": "5530-76483 via Ribbon Synapse from 76486 -> 76487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76486, + "TargetID": 76487, + "Directional": true + } + ] + }, + { + "ID": 9168, + "SourceStructureID": 5530, + "TargetStructureID": 76489, + "Label": "5530-76489 via Ribbon Synapse from 76486 -> 76491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76486, + "TargetID": 76491, + "Directional": true + } + ] + }, + { + "ID": 9169, + "SourceStructureID": 5530, + "TargetStructureID": 76492, + "Label": "5530-76492 via Ribbon Synapse from 35304 -> 76493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35304, + "TargetID": 76493, + "Directional": true + } + ] + }, + { + "ID": 9170, + "SourceStructureID": 5530, + "TargetStructureID": 76764, + "Label": "5530-76764 via Ribbon Synapse from 76763 -> 76765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76763, + "TargetID": 76765, + "Directional": true + } + ] + }, + { + "ID": 9171, + "SourceStructureID": 5530, + "TargetStructureID": 76770, + "Label": "5530-76770 via Ribbon Synapse from 76769 -> 76772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76769, + "TargetID": 76772, + "Directional": true + } + ] + }, + { + "ID": 9172, + "SourceStructureID": 5530, + "TargetStructureID": 76771, + "Label": "5530-76771 via Ribbon Synapse from 76769 -> 76773", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76769, + "TargetID": 76773, + "Directional": true + } + ] + }, + { + "ID": 9173, + "SourceStructureID": 5530, + "TargetStructureID": 77332, + "Label": "5530-77332 via Ribbon Synapse from 82586 -> 82585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82586, + "TargetID": 82585, + "Directional": true + } + ] + }, + { + "ID": 9174, + "SourceStructureID": 5530, + "TargetStructureID": 77342, + "Label": "5530-77342 via Ribbon Synapse from 77345 -> 77349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77345, + "TargetID": 77349, + "Directional": true + } + ] + }, + { + "ID": 9175, + "SourceStructureID": 5530, + "TargetStructureID": 77347, + "Label": "5530-77347 via Ribbon Synapse from 77345 -> 77348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77345, + "TargetID": 77348, + "Directional": true + } + ] + }, + { + "ID": 9176, + "SourceStructureID": 5530, + "TargetStructureID": 77428, + "Label": "5530-77428 via Ribbon Synapse from 44247 -> 77431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44247, + "TargetID": 77431, + "Directional": true + } + ] + }, + { + "ID": 9177, + "SourceStructureID": 5530, + "TargetStructureID": 77632, + "Label": "5530-77632 via Ribbon Synapse from 77631 -> 77634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77631, + "TargetID": 77634, + "Directional": true + } + ] + }, + { + "ID": 9178, + "SourceStructureID": 5530, + "TargetStructureID": 77633, + "Label": "5530-77633 via Ribbon Synapse from 77631 -> 77635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77631, + "TargetID": 77635, + "Directional": true + } + ] + }, + { + "ID": 9179, + "SourceStructureID": 5530, + "TargetStructureID": 77641, + "Label": "5530-77641 via Ribbon Synapse from 77640 -> 77643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77640, + "TargetID": 77643, + "Directional": true + } + ] + }, + { + "ID": 9180, + "SourceStructureID": 5530, + "TargetStructureID": 77642, + "Label": "5530-77642 via Ribbon Synapse from 77640 -> 77644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77640, + "TargetID": 77644, + "Directional": true + } + ] + }, + { + "ID": 9181, + "SourceStructureID": 5530, + "TargetStructureID": 77652, + "Label": "5530-77652 via Ribbon Synapse from 77650 -> 77653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77650, + "TargetID": 77653, + "Directional": true + } + ] + }, + { + "ID": 9182, + "SourceStructureID": 5530, + "TargetStructureID": 77905, + "Label": "5530-77905 via Ribbon Synapse from 17908 -> 82342", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17908, + "TargetID": 82342, + "Directional": true + } + ] + }, + { + "ID": 9183, + "SourceStructureID": 5530, + "TargetStructureID": 77918, + "Label": "5530-77918 via Ribbon Synapse from 77917 -> 77921, 77919 -> 77921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77917, + "TargetID": 77921, + "Directional": true + }, + { + "SourceID": 77919, + "TargetID": 77921, + "Directional": true + } + ] + }, + { + "ID": 9184, + "SourceStructureID": 5530, + "TargetStructureID": 79061, + "Label": "5530-79061 via Ribbon Synapse from 50952 -> 79062", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50952, + "TargetID": 79062, + "Directional": true + } + ] + }, + { + "ID": 9185, + "SourceStructureID": 5530, + "TargetStructureID": 79159, + "Label": "5530-79159 via Ribbon Synapse from 42137 -> 80709, 42138 -> 80709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42137, + "TargetID": 80709, + "Directional": true + }, + { + "SourceID": 42138, + "TargetID": 80709, + "Directional": true + } + ] + }, + { + "ID": 9186, + "SourceStructureID": 5530, + "TargetStructureID": 79264, + "Label": "5530-79264 via Ribbon Synapse from 126450 -> 79269", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126450, + "TargetID": 79269, + "Directional": true + } + ] + }, + { + "ID": 9187, + "SourceStructureID": 5530, + "TargetStructureID": 79549, + "Label": "5530-79549 via Ribbon Synapse from 42108 -> 79550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42108, + "TargetID": 79550, + "Directional": true + } + ] + }, + { + "ID": 9188, + "SourceStructureID": 5530, + "TargetStructureID": 79551, + "Label": "5530-79551 via Ribbon Synapse from 42107 -> 79552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42107, + "TargetID": 79552, + "Directional": true + } + ] + }, + { + "ID": 9189, + "SourceStructureID": 5530, + "TargetStructureID": 79555, + "Label": "5530-79555 via Ribbon Synapse from 42106 -> 79556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42106, + "TargetID": 79556, + "Directional": true + } + ] + }, + { + "ID": 9190, + "SourceStructureID": 5530, + "TargetStructureID": 80182, + "Label": "5530-80182 via Ribbon Synapse from 42101 -> 80183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42101, + "TargetID": 80183, + "Directional": true + } + ] + }, + { + "ID": 9191, + "SourceStructureID": 5530, + "TargetStructureID": 80190, + "Label": "5530-80190 via Ribbon Synapse from 42104 -> 80195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42104, + "TargetID": 80195, + "Directional": true + } + ] + }, + { + "ID": 9192, + "SourceStructureID": 5530, + "TargetStructureID": 80208, + "Label": "5530-80208 via Ribbon Synapse from 80205 -> 80212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80205, + "TargetID": 80212, + "Directional": true + } + ] + }, + { + "ID": 9193, + "SourceStructureID": 5530, + "TargetStructureID": 80210, + "Label": "5530-80210 via Ribbon Synapse from 80205 -> 80218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80205, + "TargetID": 80218, + "Directional": true + } + ] + }, + { + "ID": 9194, + "SourceStructureID": 5530, + "TargetStructureID": 80228, + "Label": "5530-80228 via Ribbon Synapse from 42110 -> 80231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42110, + "TargetID": 80231, + "Directional": true + } + ] + }, + { + "ID": 9195, + "SourceStructureID": 5530, + "TargetStructureID": 80417, + "Label": "5530-80417 via Ribbon Synapse from 80415 -> 83041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80415, + "TargetID": 83041, + "Directional": true + } + ] + }, + { + "ID": 9196, + "SourceStructureID": 5530, + "TargetStructureID": 80425, + "Label": "5530-80425 via Ribbon Synapse from 80429 -> 80430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80429, + "TargetID": 80430, + "Directional": true + } + ] + }, + { + "ID": 9197, + "SourceStructureID": 5530, + "TargetStructureID": 80433, + "Label": "5530-80433 via Ribbon Synapse from 42117 -> 80435", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42117, + "TargetID": 80435, + "Directional": true + } + ] + }, + { + "ID": 9198, + "SourceStructureID": 5530, + "TargetStructureID": 80436, + "Label": "5530-80436 via Ribbon Synapse from 42117 -> 80437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42117, + "TargetID": 80437, + "Directional": true + } + ] + }, + { + "ID": 9199, + "SourceStructureID": 5530, + "TargetStructureID": 80483, + "Label": "5530-80483 via Ribbon Synapse from 42126 -> 80485", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42126, + "TargetID": 80485, + "Directional": true + } + ] + }, + { + "ID": 9200, + "SourceStructureID": 5530, + "TargetStructureID": 80484, + "Label": "5530-80484 via Ribbon Synapse from 42126 -> 80486", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42126, + "TargetID": 80486, + "Directional": true + } + ] + }, + { + "ID": 9201, + "SourceStructureID": 5530, + "TargetStructureID": 80495, + "Label": "5530-80495 via Ribbon Synapse from 42127 -> 80497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42127, + "TargetID": 80497, + "Directional": true + } + ] + }, + { + "ID": 9202, + "SourceStructureID": 5530, + "TargetStructureID": 80498, + "Label": "5530-80498 via Ribbon Synapse from 30119 -> 80499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30119, + "TargetID": 80499, + "Directional": true + } + ] + }, + { + "ID": 9203, + "SourceStructureID": 5530, + "TargetStructureID": 80501, + "Label": "5530-80501 via Ribbon Synapse from 80500 -> 80502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80500, + "TargetID": 80502, + "Directional": true + } + ] + }, + { + "ID": 9204, + "SourceStructureID": 5530, + "TargetStructureID": 80568, + "Label": "5530-80568 via Ribbon Synapse from 39713 -> 80571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39713, + "TargetID": 80571, + "Directional": true + } + ] + }, + { + "ID": 9205, + "SourceStructureID": 5530, + "TargetStructureID": 80569, + "Label": "5530-80569 via Ribbon Synapse from 39713 -> 80570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39713, + "TargetID": 80570, + "Directional": true + } + ] + }, + { + "ID": 9206, + "SourceStructureID": 5530, + "TargetStructureID": 80592, + "Label": "5530-80592 via Ribbon Synapse from 39715 -> 80593", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39715, + "TargetID": 80593, + "Directional": true + } + ] + }, + { + "ID": 9207, + "SourceStructureID": 5530, + "TargetStructureID": 80713, + "Label": "5530-80713 via Ribbon Synapse from 80715 -> 80716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80715, + "TargetID": 80716, + "Directional": true + } + ] + }, + { + "ID": 9208, + "SourceStructureID": 5530, + "TargetStructureID": 80971, + "Label": "5530-80971 via Ribbon Synapse from 42141 -> 80972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42141, + "TargetID": 80972, + "Directional": true + } + ] + }, + { + "ID": 9209, + "SourceStructureID": 5530, + "TargetStructureID": 80980, + "Label": "5530-80980 via Ribbon Synapse from 42139 -> 80982", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42139, + "TargetID": 80982, + "Directional": true + } + ] + }, + { + "ID": 9210, + "SourceStructureID": 5530, + "TargetStructureID": 81003, + "Label": "5530-81003 via Ribbon Synapse from 42145 -> 81006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42145, + "TargetID": 81006, + "Directional": true + } + ] + }, + { + "ID": 9211, + "SourceStructureID": 5530, + "TargetStructureID": 81008, + "Label": "5530-81008 via Ribbon Synapse from 42148 -> 81010", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42148, + "TargetID": 81010, + "Directional": true + } + ] + }, + { + "ID": 9212, + "SourceStructureID": 5530, + "TargetStructureID": 81014, + "Label": "5530-81014 via Ribbon Synapse from 42148 -> 81015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42148, + "TargetID": 81015, + "Directional": true + } + ] + }, + { + "ID": 9213, + "SourceStructureID": 5530, + "TargetStructureID": 81123, + "Label": "5530-81123 via Ribbon Synapse from 55178 -> 81126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55178, + "TargetID": 81126, + "Directional": true + } + ] + }, + { + "ID": 9214, + "SourceStructureID": 5530, + "TargetStructureID": 81207, + "Label": "5530-81207 via Ribbon Synapse from 81206 -> 81208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81206, + "TargetID": 81208, + "Directional": true + } + ] + }, + { + "ID": 9215, + "SourceStructureID": 5530, + "TargetStructureID": 81215, + "Label": "5530-81215 via Ribbon Synapse from 55205 -> 81216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55205, + "TargetID": 81216, + "Directional": true + } + ] + }, + { + "ID": 9216, + "SourceStructureID": 5530, + "TargetStructureID": 81244, + "Label": "5530-81244 via Ribbon Synapse from 81243 -> 81247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81243, + "TargetID": 81247, + "Directional": true + } + ] + }, + { + "ID": 9217, + "SourceStructureID": 5530, + "TargetStructureID": 81250, + "Label": "5530-81250 via Ribbon Synapse from 81248 -> 81251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81248, + "TargetID": 81251, + "Directional": true + } + ] + }, + { + "ID": 9218, + "SourceStructureID": 5530, + "TargetStructureID": 81566, + "Label": "5530-81566 via Ribbon Synapse from 54063 -> 81575", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54063, + "TargetID": 81575, + "Directional": true + } + ] + }, + { + "ID": 9219, + "SourceStructureID": 5530, + "TargetStructureID": 81637, + "Label": "5530-81637 via Ribbon Synapse from 115794 -> 115795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115794, + "TargetID": 115795, + "Directional": true + } + ] + }, + { + "ID": 9220, + "SourceStructureID": 5530, + "TargetStructureID": 81857, + "Label": "5530-81857 via Ribbon Synapse from 130672 -> 81858", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130672, + "TargetID": 81858, + "Directional": true + } + ] + }, + { + "ID": 9221, + "SourceStructureID": 5530, + "TargetStructureID": 81862, + "Label": "5530-81862 via Ribbon Synapse from 54055 -> 81864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54055, + "TargetID": 81864, + "Directional": true + } + ] + }, + { + "ID": 9222, + "SourceStructureID": 5530, + "TargetStructureID": 82060, + "Label": "5530-82060 via Ribbon Synapse from 82059 -> 82063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82059, + "TargetID": 82063, + "Directional": true + } + ] + }, + { + "ID": 9223, + "SourceStructureID": 5530, + "TargetStructureID": 82061, + "Label": "5530-82061 via Ribbon Synapse from 82059 -> 82062", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82059, + "TargetID": 82062, + "Directional": true + } + ] + }, + { + "ID": 9224, + "SourceStructureID": 5530, + "TargetStructureID": 83051, + "Label": "5530-83051 via Ribbon Synapse from 75484 -> 83052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75484, + "TargetID": 83052, + "Directional": true + } + ] + }, + { + "ID": 9225, + "SourceStructureID": 5530, + "TargetStructureID": 147696, + "Label": "5530-147696 via Ribbon Synapse from 42148 -> 147729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42148, + "TargetID": 147729, + "Directional": true + } + ] + }, + { + "ID": 9226, + "SourceStructureID": 5531, + "TargetStructureID": 606, + "Label": "5531-606 via Ribbon Synapse from 45213 -> 10517, 53538 -> 53539, 53929 -> 53930, 54136 -> 54137", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45213, + "TargetID": 10517, + "Directional": true + }, + { + "SourceID": 53538, + "TargetID": 53539, + "Directional": true + }, + { + "SourceID": 53929, + "TargetID": 53930, + "Directional": true + }, + { + "SourceID": 54136, + "TargetID": 54137, + "Directional": true + } + ] + }, + { + "ID": 9227, + "SourceStructureID": 5531, + "TargetStructureID": 5118, + "Label": "5531-5118 via BC Conventional Synapse from 120313 -> 120314", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120313, + "TargetID": 120314, + "Directional": true + } + ] + }, + { + "ID": 9228, + "SourceStructureID": 5531, + "TargetStructureID": 5451, + "Label": "5531-5451 via Ribbon Synapse from 55168 -> 55169", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55168, + "TargetID": 55169, + "Directional": true + } + ] + }, + { + "ID": 9229, + "SourceStructureID": 5531, + "TargetStructureID": 5453, + "Label": "5531-5453 via Ribbon Synapse from 54536 -> 106756, 106649 -> 106650, 113849 -> 113848", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54536, + "TargetID": 106756, + "Directional": true + }, + { + "SourceID": 106649, + "TargetID": 106650, + "Directional": true + }, + { + "SourceID": 113849, + "TargetID": 113848, + "Directional": true + } + ] + }, + { + "ID": 9230, + "SourceStructureID": 5531, + "TargetStructureID": 5481, + "Label": "5531-5481 via Ribbon Synapse from 62920 -> 62921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62920, + "TargetID": 62921, + "Directional": true + } + ] + }, + { + "ID": 9231, + "SourceStructureID": 5531, + "TargetStructureID": 7274, + "Label": "5531-7274 via BC Conventional Synapse from 113967 -> 41805", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113967, + "TargetID": 41805, + "Directional": true + } + ] + }, + { + "ID": 9232, + "SourceStructureID": 5531, + "TargetStructureID": 7274, + "Label": "5531-7274 via Ribbon Synapse from 113957 -> 41808", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113957, + "TargetID": 41808, + "Directional": true + } + ] + }, + { + "ID": 9233, + "SourceStructureID": 5531, + "TargetStructureID": 8575, + "Label": "5531-8575 via BC Conventional Synapse from 147401 -> 147400", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147401, + "TargetID": 147400, + "Directional": true + } + ] + }, + { + "ID": 9234, + "SourceStructureID": 5531, + "TargetStructureID": 8575, + "Label": "5531-8575 via Ribbon Synapse from 113846 -> 62359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113846, + "TargetID": 62359, + "Directional": true + } + ] + }, + { + "ID": 9235, + "SourceStructureID": 5531, + "TargetStructureID": 15796, + "Label": "5531-15796 via BC Conventional Synapse from 125992 -> 92624", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125992, + "TargetID": 92624, + "Directional": true + } + ] + }, + { + "ID": 9236, + "SourceStructureID": 5531, + "TargetStructureID": 15796, + "Label": "5531-15796 via Ribbon Synapse from 125914 -> 107168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125914, + "TargetID": 107168, + "Directional": true + } + ] + }, + { + "ID": 9237, + "SourceStructureID": 5531, + "TargetStructureID": 43874, + "Label": "5531-43874 via Ribbon Synapse from 54547 -> 106741, 106746 -> 106741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54547, + "TargetID": 106741, + "Directional": true + }, + { + "SourceID": 106746, + "TargetID": 106741, + "Directional": true + } + ] + }, + { + "ID": 9238, + "SourceStructureID": 5531, + "TargetStructureID": 44346, + "Label": "5531-44346 via Ribbon Synapse from 114744 -> 44818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114744, + "TargetID": 44818, + "Directional": true + } + ] + }, + { + "ID": 9239, + "SourceStructureID": 5531, + "TargetStructureID": 54913, + "Label": "5531-54913 via Ribbon Synapse from 54917 -> 54916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54917, + "TargetID": 54916, + "Directional": true + } + ] + }, + { + "ID": 9240, + "SourceStructureID": 5531, + "TargetStructureID": 79256, + "Label": "5531-79256 via Ribbon Synapse from 112456 -> 112457", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112456, + "TargetID": 112457, + "Directional": true + } + ] + }, + { + "ID": 9241, + "SourceStructureID": 5531, + "TargetStructureID": 81618, + "Label": "5531-81618 via BC Conventional Synapse from 105215 -> 105214", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105215, + "TargetID": 105214, + "Directional": true + } + ] + }, + { + "ID": 9242, + "SourceStructureID": 5531, + "TargetStructureID": 82070, + "Label": "5531-82070 via Ribbon Synapse from 40520 -> 82508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40520, + "TargetID": 82508, + "Directional": true + } + ] + }, + { + "ID": 9243, + "SourceStructureID": 5531, + "TargetStructureID": 82071, + "Label": "5531-82071 via Ribbon Synapse from 82501 -> 82502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82501, + "TargetID": 82502, + "Directional": true + } + ] + }, + { + "ID": 9244, + "SourceStructureID": 5531, + "TargetStructureID": 82569, + "Label": "5531-82569 via Ribbon Synapse from 82568 -> 82570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82568, + "TargetID": 82570, + "Directional": true + } + ] + }, + { + "ID": 9245, + "SourceStructureID": 5531, + "TargetStructureID": 82832, + "Label": "5531-82832 via Ribbon Synapse from 107190 -> 107191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107190, + "TargetID": 107191, + "Directional": true + } + ] + }, + { + "ID": 9246, + "SourceStructureID": 5531, + "TargetStructureID": 82897, + "Label": "5531-82897 via Ribbon Synapse from 110684 -> 110685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110684, + "TargetID": 110685, + "Directional": true + } + ] + }, + { + "ID": 9247, + "SourceStructureID": 5531, + "TargetStructureID": 88260, + "Label": "5531-88260 via Ribbon Synapse from 88272 -> 88269", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88272, + "TargetID": 88269, + "Directional": true + } + ] + }, + { + "ID": 9248, + "SourceStructureID": 5531, + "TargetStructureID": 93431, + "Label": "5531-93431 via BC Conventional Synapse from 147455 -> 147454", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147455, + "TargetID": 147454, + "Directional": true + } + ] + }, + { + "ID": 9249, + "SourceStructureID": 5531, + "TargetStructureID": 95195, + "Label": "5531-95195 via Ribbon Synapse from 147423 -> 147424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147423, + "TargetID": 147424, + "Directional": true + } + ] + }, + { + "ID": 9250, + "SourceStructureID": 5531, + "TargetStructureID": 96266, + "Label": "5531-96266 via Ribbon Synapse from 96839 -> 107106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96839, + "TargetID": 107106, + "Directional": true + } + ] + }, + { + "ID": 9251, + "SourceStructureID": 5531, + "TargetStructureID": 96832, + "Label": "5531-96832 via Ribbon Synapse from 96839 -> 96833", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96839, + "TargetID": 96833, + "Directional": true + } + ] + }, + { + "ID": 9252, + "SourceStructureID": 5531, + "TargetStructureID": 96837, + "Label": "5531-96837 via Ribbon Synapse from 96839 -> 96838", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96839, + "TargetID": 96838, + "Directional": true + } + ] + }, + { + "ID": 9253, + "SourceStructureID": 5531, + "TargetStructureID": 96872, + "Label": "5531-96872 via Ribbon Synapse from 106513 -> 107173", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106513, + "TargetID": 107173, + "Directional": true + } + ] + }, + { + "ID": 9254, + "SourceStructureID": 5531, + "TargetStructureID": 96891, + "Label": "5531-96891 via Ribbon Synapse from 125914 -> 107169", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125914, + "TargetID": 107169, + "Directional": true + } + ] + }, + { + "ID": 9255, + "SourceStructureID": 5531, + "TargetStructureID": 96893, + "Label": "5531-96893 via Ribbon Synapse from 106526 -> 107167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106526, + "TargetID": 107167, + "Directional": true + } + ] + }, + { + "ID": 9256, + "SourceStructureID": 5531, + "TargetStructureID": 105210, + "Label": "5531-105210 via Ribbon Synapse from 82568 -> 105211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82568, + "TargetID": 105211, + "Directional": true + } + ] + }, + { + "ID": 9257, + "SourceStructureID": 5531, + "TargetStructureID": 105222, + "Label": "5531-105222 via Ribbon Synapse from 40549 -> 105225", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40549, + "TargetID": 105225, + "Directional": true + } + ] + }, + { + "ID": 9258, + "SourceStructureID": 5531, + "TargetStructureID": 105223, + "Label": "5531-105223 via Ribbon Synapse from 40549 -> 105224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40549, + "TargetID": 105224, + "Directional": true + } + ] + }, + { + "ID": 9259, + "SourceStructureID": 5531, + "TargetStructureID": 105226, + "Label": "5531-105226 via Ribbon Synapse from 40550 -> 105227", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40550, + "TargetID": 105227, + "Directional": true + } + ] + }, + { + "ID": 9260, + "SourceStructureID": 5531, + "TargetStructureID": 105232, + "Label": "5531-105232 via Ribbon Synapse from 40538 -> 105233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40538, + "TargetID": 105233, + "Directional": true + } + ] + }, + { + "ID": 9261, + "SourceStructureID": 5531, + "TargetStructureID": 105234, + "Label": "5531-105234 via BC Conventional Synapse from 105235 -> 105236", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105235, + "TargetID": 105236, + "Directional": true + } + ] + }, + { + "ID": 9262, + "SourceStructureID": 5531, + "TargetStructureID": 105239, + "Label": "5531-105239 via Ribbon Synapse from 105238 -> 105240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105238, + "TargetID": 105240, + "Directional": true + } + ] + }, + { + "ID": 9263, + "SourceStructureID": 5531, + "TargetStructureID": 105241, + "Label": "5531-105241 via BC Conventional Synapse from 105242 -> 105244", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105242, + "TargetID": 105244, + "Directional": true + } + ] + }, + { + "ID": 9264, + "SourceStructureID": 5531, + "TargetStructureID": 105241, + "Label": "5531-105241 via Ribbon Synapse from 40522 -> 147432", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40522, + "TargetID": 147432, + "Directional": true + } + ] + }, + { + "ID": 9265, + "SourceStructureID": 5531, + "TargetStructureID": 105255, + "Label": "5531-105255 via Ribbon Synapse from 105256 -> 105257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105256, + "TargetID": 105257, + "Directional": true + } + ] + }, + { + "ID": 9266, + "SourceStructureID": 5531, + "TargetStructureID": 105262, + "Label": "5531-105262 via Ribbon Synapse from 105263 -> 105264", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105263, + "TargetID": 105264, + "Directional": true + } + ] + }, + { + "ID": 9267, + "SourceStructureID": 5531, + "TargetStructureID": 105265, + "Label": "5531-105265 via Ribbon Synapse from 105267 -> 105290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105267, + "TargetID": 105290, + "Directional": true + } + ] + }, + { + "ID": 9268, + "SourceStructureID": 5531, + "TargetStructureID": 105269, + "Label": "5531-105269 via Ribbon Synapse from 105268 -> 105272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105268, + "TargetID": 105272, + "Directional": true + } + ] + }, + { + "ID": 9269, + "SourceStructureID": 5531, + "TargetStructureID": 105273, + "Label": "5531-105273 via Ribbon Synapse from 105268 -> 105274", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105268, + "TargetID": 105274, + "Directional": true + } + ] + }, + { + "ID": 9270, + "SourceStructureID": 5531, + "TargetStructureID": 105285, + "Label": "5531-105285 via Ribbon Synapse from 105286 -> 105289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105286, + "TargetID": 105289, + "Directional": true + } + ] + }, + { + "ID": 9271, + "SourceStructureID": 5531, + "TargetStructureID": 105287, + "Label": "5531-105287 via Ribbon Synapse from 105286 -> 105288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105286, + "TargetID": 105288, + "Directional": true + } + ] + }, + { + "ID": 9272, + "SourceStructureID": 5531, + "TargetStructureID": 105311, + "Label": "5531-105311 via Ribbon Synapse from 105310 -> 105312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105310, + "TargetID": 105312, + "Directional": true + } + ] + }, + { + "ID": 9273, + "SourceStructureID": 5531, + "TargetStructureID": 105313, + "Label": "5531-105313 via Ribbon Synapse from 106200 -> 106201", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106200, + "TargetID": 106201, + "Directional": true + } + ] + }, + { + "ID": 9274, + "SourceStructureID": 5531, + "TargetStructureID": 105324, + "Label": "5531-105324 via Ribbon Synapse from 62923 -> 105330", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62923, + "TargetID": 105330, + "Directional": true + } + ] + }, + { + "ID": 9275, + "SourceStructureID": 5531, + "TargetStructureID": 105325, + "Label": "5531-105325 via Ribbon Synapse from 62923 -> 105327", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62923, + "TargetID": 105327, + "Directional": true + } + ] + }, + { + "ID": 9276, + "SourceStructureID": 5531, + "TargetStructureID": 105331, + "Label": "5531-105331 via BC Conventional Synapse from 105336 -> 105334", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105336, + "TargetID": 105334, + "Directional": true + } + ] + }, + { + "ID": 9277, + "SourceStructureID": 5531, + "TargetStructureID": 105360, + "Label": "5531-105360 via Ribbon Synapse from 105361 -> 105362", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105361, + "TargetID": 105362, + "Directional": true + } + ] + }, + { + "ID": 9278, + "SourceStructureID": 5531, + "TargetStructureID": 106141, + "Label": "5531-106141 via Ribbon Synapse from 62929 -> 106142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62929, + "TargetID": 106142, + "Directional": true + } + ] + }, + { + "ID": 9279, + "SourceStructureID": 5531, + "TargetStructureID": 106151, + "Label": "5531-106151 via Ribbon Synapse from 62932 -> 106152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62932, + "TargetID": 106152, + "Directional": true + } + ] + }, + { + "ID": 9280, + "SourceStructureID": 5531, + "TargetStructureID": 106156, + "Label": "5531-106156 via Ribbon Synapse from 82501 -> 106157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82501, + "TargetID": 106157, + "Directional": true + } + ] + }, + { + "ID": 9281, + "SourceStructureID": 5531, + "TargetStructureID": 106164, + "Label": "5531-106164 via Ribbon Synapse from 62925 -> 106167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62925, + "TargetID": 106167, + "Directional": true + } + ] + }, + { + "ID": 9282, + "SourceStructureID": 5531, + "TargetStructureID": 106165, + "Label": "5531-106165 via Ribbon Synapse from 62925 -> 106166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62925, + "TargetID": 106166, + "Directional": true + } + ] + }, + { + "ID": 9283, + "SourceStructureID": 5531, + "TargetStructureID": 106168, + "Label": "5531-106168 via Ribbon Synapse from 62926 -> 106169, 62926 -> 136320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62926, + "TargetID": 106169, + "Directional": true + }, + { + "SourceID": 62926, + "TargetID": 136320, + "Directional": true + } + ] + }, + { + "ID": 9284, + "SourceStructureID": 5531, + "TargetStructureID": 106175, + "Label": "5531-106175 via Ribbon Synapse from 62928 -> 106176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62928, + "TargetID": 106176, + "Directional": true + } + ] + }, + { + "ID": 9285, + "SourceStructureID": 5531, + "TargetStructureID": 106177, + "Label": "5531-106177 via Ribbon Synapse from 62928 -> 106178", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62928, + "TargetID": 106178, + "Directional": true + } + ] + }, + { + "ID": 9286, + "SourceStructureID": 5531, + "TargetStructureID": 106179, + "Label": "5531-106179 via Ribbon Synapse from 62928 -> 106180", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62928, + "TargetID": 106180, + "Directional": true + } + ] + }, + { + "ID": 9287, + "SourceStructureID": 5531, + "TargetStructureID": 106189, + "Label": "5531-106189 via Ribbon Synapse from 40515 -> 106190", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40515, + "TargetID": 106190, + "Directional": true + } + ] + }, + { + "ID": 9288, + "SourceStructureID": 5531, + "TargetStructureID": 106197, + "Label": "5531-106197 via Ribbon Synapse from 106198 -> 106199", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106198, + "TargetID": 106199, + "Directional": true + } + ] + }, + { + "ID": 9289, + "SourceStructureID": 5531, + "TargetStructureID": 106204, + "Label": "5531-106204 via Ribbon Synapse from 40511 -> 106205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40511, + "TargetID": 106205, + "Directional": true + } + ] + }, + { + "ID": 9290, + "SourceStructureID": 5531, + "TargetStructureID": 106206, + "Label": "5531-106206 via Ribbon Synapse from 40511 -> 106207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40511, + "TargetID": 106207, + "Directional": true + } + ] + }, + { + "ID": 9291, + "SourceStructureID": 5531, + "TargetStructureID": 106211, + "Label": "5531-106211 via Ribbon Synapse from 40512 -> 106212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40512, + "TargetID": 106212, + "Directional": true + } + ] + }, + { + "ID": 9292, + "SourceStructureID": 5531, + "TargetStructureID": 106213, + "Label": "5531-106213 via Ribbon Synapse from 40512 -> 106214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40512, + "TargetID": 106214, + "Directional": true + } + ] + }, + { + "ID": 9293, + "SourceStructureID": 5531, + "TargetStructureID": 106221, + "Label": "5531-106221 via Ribbon Synapse from 40510 -> 106223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40510, + "TargetID": 106223, + "Directional": true + } + ] + }, + { + "ID": 9294, + "SourceStructureID": 5531, + "TargetStructureID": 106224, + "Label": "5531-106224 via Ribbon Synapse from 40510 -> 106226", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40510, + "TargetID": 106226, + "Directional": true + } + ] + }, + { + "ID": 9295, + "SourceStructureID": 5531, + "TargetStructureID": 106227, + "Label": "5531-106227 via Ribbon Synapse from 40509 -> 106228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40509, + "TargetID": 106228, + "Directional": true + } + ] + }, + { + "ID": 9296, + "SourceStructureID": 5531, + "TargetStructureID": 106230, + "Label": "5531-106230 via BC Conventional Synapse from 120317 -> 120315", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120317, + "TargetID": 120315, + "Directional": true + } + ] + }, + { + "ID": 9297, + "SourceStructureID": 5531, + "TargetStructureID": 106253, + "Label": "5531-106253 via Ribbon Synapse from 40514 -> 106255", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40514, + "TargetID": 106255, + "Directional": true + } + ] + }, + { + "ID": 9298, + "SourceStructureID": 5531, + "TargetStructureID": 106256, + "Label": "5531-106256 via Ribbon Synapse from 106262 -> 106265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106262, + "TargetID": 106265, + "Directional": true + } + ] + }, + { + "ID": 9299, + "SourceStructureID": 5531, + "TargetStructureID": 106263, + "Label": "5531-106263 via Ribbon Synapse from 106262 -> 106264", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106262, + "TargetID": 106264, + "Directional": true + } + ] + }, + { + "ID": 9300, + "SourceStructureID": 5531, + "TargetStructureID": 106484, + "Label": "5531-106484 via BC Conventional Synapse from 91662 -> 107653", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91662, + "TargetID": 107653, + "Directional": true + } + ] + }, + { + "ID": 9301, + "SourceStructureID": 5531, + "TargetStructureID": 106486, + "Label": "5531-106486 via Ribbon Synapse from 106485 -> 106487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106485, + "TargetID": 106487, + "Directional": true + } + ] + }, + { + "ID": 9302, + "SourceStructureID": 5531, + "TargetStructureID": 106493, + "Label": "5531-106493 via Ribbon Synapse from 106488 -> 106494, 106499 -> 107984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106488, + "TargetID": 106494, + "Directional": true + }, + { + "SourceID": 106499, + "TargetID": 107984, + "Directional": true + } + ] + }, + { + "ID": 9303, + "SourceStructureID": 5531, + "TargetStructureID": 106495, + "Label": "5531-106495 via Ribbon Synapse from 106488 -> 106496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106488, + "TargetID": 106496, + "Directional": true + } + ] + }, + { + "ID": 9304, + "SourceStructureID": 5531, + "TargetStructureID": 106586, + "Label": "5531-106586 via Ribbon Synapse from 106585 -> 106587", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106585, + "TargetID": 106587, + "Directional": true + } + ] + }, + { + "ID": 9305, + "SourceStructureID": 5531, + "TargetStructureID": 106625, + "Label": "5531-106625 via Ribbon Synapse from 91668 -> 106634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91668, + "TargetID": 106634, + "Directional": true + } + ] + }, + { + "ID": 9306, + "SourceStructureID": 5531, + "TargetStructureID": 106628, + "Label": "5531-106628 via Ribbon Synapse from 91668 -> 106635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91668, + "TargetID": 106635, + "Directional": true + } + ] + }, + { + "ID": 9307, + "SourceStructureID": 5531, + "TargetStructureID": 106637, + "Label": "5531-106637 via Ribbon Synapse from 54587 -> 120206", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54587, + "TargetID": 120206, + "Directional": true + } + ] + }, + { + "ID": 9308, + "SourceStructureID": 5531, + "TargetStructureID": 106651, + "Label": "5531-106651 via Ribbon Synapse from 106648 -> 106652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106648, + "TargetID": 106652, + "Directional": true + } + ] + }, + { + "ID": 9309, + "SourceStructureID": 5531, + "TargetStructureID": 106689, + "Label": "5531-106689 via BC Conventional Synapse from 133890 -> 133889", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133890, + "TargetID": 133889, + "Directional": true + } + ] + }, + { + "ID": 9310, + "SourceStructureID": 5531, + "TargetStructureID": 106689, + "Label": "5531-106689 via Ribbon Synapse from 106748 -> 106749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106748, + "TargetID": 106749, + "Directional": true + } + ] + }, + { + "ID": 9311, + "SourceStructureID": 5531, + "TargetStructureID": 106697, + "Label": "5531-106697 via Ribbon Synapse from 54560 -> 106701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54560, + "TargetID": 106701, + "Directional": true + } + ] + }, + { + "ID": 9312, + "SourceStructureID": 5531, + "TargetStructureID": 106742, + "Label": "5531-106742 via Ribbon Synapse from 106746 -> 106747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106746, + "TargetID": 106747, + "Directional": true + } + ] + }, + { + "ID": 9313, + "SourceStructureID": 5531, + "TargetStructureID": 106757, + "Label": "5531-106757 via Ribbon Synapse from 54536 -> 106758", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54536, + "TargetID": 106758, + "Directional": true + } + ] + }, + { + "ID": 9314, + "SourceStructureID": 5531, + "TargetStructureID": 106762, + "Label": "5531-106762 via Ribbon Synapse from 147402 -> 147403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147402, + "TargetID": 147403, + "Directional": true + } + ] + }, + { + "ID": 9315, + "SourceStructureID": 5531, + "TargetStructureID": 106767, + "Label": "5531-106767 via Ribbon Synapse from 54537 -> 106774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54537, + "TargetID": 106774, + "Directional": true + } + ] + }, + { + "ID": 9316, + "SourceStructureID": 5531, + "TargetStructureID": 106775, + "Label": "5531-106775 via Ribbon Synapse from 54537 -> 106777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54537, + "TargetID": 106777, + "Directional": true + } + ] + }, + { + "ID": 9317, + "SourceStructureID": 5531, + "TargetStructureID": 106778, + "Label": "5531-106778 via Ribbon Synapse from 54535 -> 106789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54535, + "TargetID": 106789, + "Directional": true + } + ] + }, + { + "ID": 9318, + "SourceStructureID": 5531, + "TargetStructureID": 106807, + "Label": "5531-106807 via Ribbon Synapse from 54532 -> 106811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54532, + "TargetID": 106811, + "Directional": true + } + ] + }, + { + "ID": 9319, + "SourceStructureID": 5531, + "TargetStructureID": 106813, + "Label": "5531-106813 via Ribbon Synapse from 53538 -> 106823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53538, + "TargetID": 106823, + "Directional": true + } + ] + }, + { + "ID": 9320, + "SourceStructureID": 5531, + "TargetStructureID": 106826, + "Label": "5531-106826 via Ribbon Synapse from 54531 -> 106830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54531, + "TargetID": 106830, + "Directional": true + } + ] + }, + { + "ID": 9321, + "SourceStructureID": 5531, + "TargetStructureID": 106832, + "Label": "5531-106832 via Ribbon Synapse from 54528 -> 106834", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54528, + "TargetID": 106834, + "Directional": true + } + ] + }, + { + "ID": 9322, + "SourceStructureID": 5531, + "TargetStructureID": 106835, + "Label": "5531-106835 via Ribbon Synapse from 54528 -> 106845", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54528, + "TargetID": 106845, + "Directional": true + } + ] + }, + { + "ID": 9323, + "SourceStructureID": 5531, + "TargetStructureID": 106846, + "Label": "5531-106846 via Ribbon Synapse from 54545 -> 106850", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54545, + "TargetID": 106850, + "Directional": true + } + ] + }, + { + "ID": 9324, + "SourceStructureID": 5531, + "TargetStructureID": 106875, + "Label": "5531-106875 via BC Conventional Synapse from 147438 -> 147437", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147438, + "TargetID": 147437, + "Directional": true + } + ] + }, + { + "ID": 9325, + "SourceStructureID": 5531, + "TargetStructureID": 106887, + "Label": "5531-106887 via Ribbon Synapse from 54569 -> 106888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54569, + "TargetID": 106888, + "Directional": true + } + ] + }, + { + "ID": 9326, + "SourceStructureID": 5531, + "TargetStructureID": 106890, + "Label": "5531-106890 via Ribbon Synapse from 54582 -> 107415", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54582, + "TargetID": 107415, + "Directional": true + } + ] + }, + { + "ID": 9327, + "SourceStructureID": 5531, + "TargetStructureID": 106941, + "Label": "5531-106941 via Ribbon Synapse from 88271 -> 106943", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88271, + "TargetID": 106943, + "Directional": true + } + ] + }, + { + "ID": 9328, + "SourceStructureID": 5531, + "TargetStructureID": 107170, + "Label": "5531-107170 via Ribbon Synapse from 106526 -> 107171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106526, + "TargetID": 107171, + "Directional": true + } + ] + }, + { + "ID": 9329, + "SourceStructureID": 5531, + "TargetStructureID": 107370, + "Label": "5531-107370 via Ribbon Synapse from 107369 -> 107371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107369, + "TargetID": 107371, + "Directional": true + } + ] + }, + { + "ID": 9330, + "SourceStructureID": 5531, + "TargetStructureID": 107372, + "Label": "5531-107372 via Ribbon Synapse from 107369 -> 107373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107369, + "TargetID": 107373, + "Directional": true + } + ] + }, + { + "ID": 9331, + "SourceStructureID": 5531, + "TargetStructureID": 107382, + "Label": "5531-107382 via Ribbon Synapse from 107376 -> 107387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107376, + "TargetID": 107387, + "Directional": true + } + ] + }, + { + "ID": 9332, + "SourceStructureID": 5531, + "TargetStructureID": 107401, + "Label": "5531-107401 via Ribbon Synapse from 54583 -> 107411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54583, + "TargetID": 107411, + "Directional": true + } + ] + }, + { + "ID": 9333, + "SourceStructureID": 5531, + "TargetStructureID": 107408, + "Label": "5531-107408 via Ribbon Synapse from 54583 -> 107410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54583, + "TargetID": 107410, + "Directional": true + } + ] + }, + { + "ID": 9334, + "SourceStructureID": 5531, + "TargetStructureID": 107412, + "Label": "5531-107412 via Ribbon Synapse from 54582 -> 107413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54582, + "TargetID": 107413, + "Directional": true + } + ] + }, + { + "ID": 9335, + "SourceStructureID": 5531, + "TargetStructureID": 107431, + "Label": "5531-107431 via Ribbon Synapse from 91487 -> 107432", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91487, + "TargetID": 107432, + "Directional": true + } + ] + }, + { + "ID": 9336, + "SourceStructureID": 5531, + "TargetStructureID": 107436, + "Label": "5531-107436 via Ribbon Synapse from 91486 -> 107437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91486, + "TargetID": 107437, + "Directional": true + } + ] + }, + { + "ID": 9337, + "SourceStructureID": 5531, + "TargetStructureID": 107442, + "Label": "5531-107442 via BC Conventional Synapse from 91682 -> 107443", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91682, + "TargetID": 107443, + "Directional": true + } + ] + }, + { + "ID": 9338, + "SourceStructureID": 5531, + "TargetStructureID": 107449, + "Label": "5531-107449 via Ribbon Synapse from 107448 -> 107450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107448, + "TargetID": 107450, + "Directional": true + } + ] + }, + { + "ID": 9339, + "SourceStructureID": 5531, + "TargetStructureID": 107460, + "Label": "5531-107460 via Ribbon Synapse from 107452 -> 107464, 107459 -> 107461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107452, + "TargetID": 107464, + "Directional": true + }, + { + "SourceID": 107459, + "TargetID": 107461, + "Directional": true + } + ] + }, + { + "ID": 9340, + "SourceStructureID": 5531, + "TargetStructureID": 107468, + "Label": "5531-107468 via Ribbon Synapse from 107459 -> 107469", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107459, + "TargetID": 107469, + "Directional": true + } + ] + }, + { + "ID": 9341, + "SourceStructureID": 5531, + "TargetStructureID": 107483, + "Label": "5531-107483 via Ribbon Synapse from 107515 -> 107518, 107516 -> 107517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107515, + "TargetID": 107518, + "Directional": true + }, + { + "SourceID": 107516, + "TargetID": 107517, + "Directional": true + } + ] + }, + { + "ID": 9342, + "SourceStructureID": 5531, + "TargetStructureID": 107502, + "Label": "5531-107502 via Ribbon Synapse from 107499 -> 107503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107499, + "TargetID": 107503, + "Directional": true + } + ] + }, + { + "ID": 9343, + "SourceStructureID": 5531, + "TargetStructureID": 107504, + "Label": "5531-107504 via Ribbon Synapse from 107470 -> 107505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107470, + "TargetID": 107505, + "Directional": true + } + ] + }, + { + "ID": 9344, + "SourceStructureID": 5531, + "TargetStructureID": 107533, + "Label": "5531-107533 via Ribbon Synapse from 107534 -> 107535", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107534, + "TargetID": 107535, + "Directional": true + } + ] + }, + { + "ID": 9345, + "SourceStructureID": 5531, + "TargetStructureID": 107538, + "Label": "5531-107538 via Ribbon Synapse from 107496 -> 107539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107496, + "TargetID": 107539, + "Directional": true + } + ] + }, + { + "ID": 9346, + "SourceStructureID": 5531, + "TargetStructureID": 107551, + "Label": "5531-107551 via Ribbon Synapse from 107550 -> 107552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107550, + "TargetID": 107552, + "Directional": true + } + ] + }, + { + "ID": 9347, + "SourceStructureID": 5531, + "TargetStructureID": 107553, + "Label": "5531-107553 via Ribbon Synapse from 107550 -> 107554, 107563 -> 107564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107550, + "TargetID": 107554, + "Directional": true + }, + { + "SourceID": 107563, + "TargetID": 107564, + "Directional": true + } + ] + }, + { + "ID": 9348, + "SourceStructureID": 5531, + "TargetStructureID": 107557, + "Label": "5531-107557 via Ribbon Synapse from 107555 -> 107558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107555, + "TargetID": 107558, + "Directional": true + } + ] + }, + { + "ID": 9349, + "SourceStructureID": 5531, + "TargetStructureID": 107559, + "Label": "5531-107559 via Ribbon Synapse from 107555 -> 107566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107555, + "TargetID": 107566, + "Directional": true + } + ] + }, + { + "ID": 9350, + "SourceStructureID": 5531, + "TargetStructureID": 107560, + "Label": "5531-107560 via Ribbon Synapse from 107563 -> 107565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107563, + "TargetID": 107565, + "Directional": true + } + ] + }, + { + "ID": 9351, + "SourceStructureID": 5531, + "TargetStructureID": 107567, + "Label": "5531-107567 via BC Conventional Synapse from 107568 -> 107569", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107568, + "TargetID": 107569, + "Directional": true + } + ] + }, + { + "ID": 9352, + "SourceStructureID": 5531, + "TargetStructureID": 107575, + "Label": "5531-107575 via Ribbon Synapse from 91725 -> 107576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91725, + "TargetID": 107576, + "Directional": true + } + ] + }, + { + "ID": 9353, + "SourceStructureID": 5531, + "TargetStructureID": 107580, + "Label": "5531-107580 via Ribbon Synapse from 107579 -> 107581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107579, + "TargetID": 107581, + "Directional": true + } + ] + }, + { + "ID": 9354, + "SourceStructureID": 5531, + "TargetStructureID": 107635, + "Label": "5531-107635 via Ribbon Synapse from 107634 -> 107636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107634, + "TargetID": 107636, + "Directional": true + } + ] + }, + { + "ID": 9355, + "SourceStructureID": 5531, + "TargetStructureID": 107639, + "Label": "5531-107639 via Ribbon Synapse from 91716 -> 107640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91716, + "TargetID": 107640, + "Directional": true + } + ] + }, + { + "ID": 9356, + "SourceStructureID": 5531, + "TargetStructureID": 107646, + "Label": "5531-107646 via BC Conventional Synapse from 107647 -> 107648", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107647, + "TargetID": 107648, + "Directional": true + } + ] + }, + { + "ID": 9357, + "SourceStructureID": 5531, + "TargetStructureID": 107649, + "Label": "5531-107649 via Ribbon Synapse from 91711 -> 107652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91711, + "TargetID": 107652, + "Directional": true + } + ] + }, + { + "ID": 9358, + "SourceStructureID": 5531, + "TargetStructureID": 107654, + "Label": "5531-107654 via Ribbon Synapse from 107656 -> 107660", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107656, + "TargetID": 107660, + "Directional": true + } + ] + }, + { + "ID": 9359, + "SourceStructureID": 5531, + "TargetStructureID": 107657, + "Label": "5531-107657 via Ribbon Synapse from 107656 -> 107659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107656, + "TargetID": 107659, + "Directional": true + } + ] + }, + { + "ID": 9360, + "SourceStructureID": 5531, + "TargetStructureID": 107665, + "Label": "5531-107665 via Ribbon Synapse from 107664 -> 107666", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107664, + "TargetID": 107666, + "Directional": true + } + ] + }, + { + "ID": 9361, + "SourceStructureID": 5531, + "TargetStructureID": 107667, + "Label": "5531-107667 via BC Conventional Synapse from 107671 -> 107668", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107671, + "TargetID": 107668, + "Directional": true + } + ] + }, + { + "ID": 9362, + "SourceStructureID": 5531, + "TargetStructureID": 107667, + "Label": "5531-107667 via Ribbon Synapse from 107664 -> 107669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107664, + "TargetID": 107669, + "Directional": true + } + ] + }, + { + "ID": 9363, + "SourceStructureID": 5531, + "TargetStructureID": 107680, + "Label": "5531-107680 via Ribbon Synapse from 107681 -> 107682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107681, + "TargetID": 107682, + "Directional": true + } + ] + }, + { + "ID": 9364, + "SourceStructureID": 5531, + "TargetStructureID": 107686, + "Label": "5531-107686 via Ribbon Synapse from 107690 -> 107692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107690, + "TargetID": 107692, + "Directional": true + } + ] + }, + { + "ID": 9365, + "SourceStructureID": 5531, + "TargetStructureID": 107687, + "Label": "5531-107687 via Ribbon Synapse from 107690 -> 107691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107690, + "TargetID": 107691, + "Directional": true + } + ] + }, + { + "ID": 9366, + "SourceStructureID": 5531, + "TargetStructureID": 107699, + "Label": "5531-107699 via Ribbon Synapse from 107698 -> 107700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107698, + "TargetID": 107700, + "Directional": true + } + ] + }, + { + "ID": 9367, + "SourceStructureID": 5531, + "TargetStructureID": 107709, + "Label": "5531-107709 via Ribbon Synapse from 107710 -> 107711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107710, + "TargetID": 107711, + "Directional": true + } + ] + }, + { + "ID": 9368, + "SourceStructureID": 5531, + "TargetStructureID": 107715, + "Label": "5531-107715 via BC Conventional Synapse from 107716 -> 107717", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107716, + "TargetID": 107717, + "Directional": true + } + ] + }, + { + "ID": 9369, + "SourceStructureID": 5531, + "TargetStructureID": 107715, + "Label": "5531-107715 via Ribbon Synapse from 107718 -> 107720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107718, + "TargetID": 107720, + "Directional": true + } + ] + }, + { + "ID": 9370, + "SourceStructureID": 5531, + "TargetStructureID": 107719, + "Label": "5531-107719 via Ribbon Synapse from 107718 -> 107721", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107718, + "TargetID": 107721, + "Directional": true + } + ] + }, + { + "ID": 9371, + "SourceStructureID": 5531, + "TargetStructureID": 107723, + "Label": "5531-107723 via Ribbon Synapse from 107722 -> 107724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107722, + "TargetID": 107724, + "Directional": true + } + ] + }, + { + "ID": 9372, + "SourceStructureID": 5531, + "TargetStructureID": 107725, + "Label": "5531-107725 via Ribbon Synapse from 107722 -> 107726", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107722, + "TargetID": 107726, + "Directional": true + } + ] + }, + { + "ID": 9373, + "SourceStructureID": 5531, + "TargetStructureID": 107727, + "Label": "5531-107727 via Ribbon Synapse from 107730 -> 107731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107730, + "TargetID": 107731, + "Directional": true + } + ] + }, + { + "ID": 9374, + "SourceStructureID": 5531, + "TargetStructureID": 107732, + "Label": "5531-107732 via Ribbon Synapse from 107730 -> 107733, 107734 -> 107735", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107730, + "TargetID": 107733, + "Directional": true + }, + { + "SourceID": 107734, + "TargetID": 107735, + "Directional": true + } + ] + }, + { + "ID": 9375, + "SourceStructureID": 5531, + "TargetStructureID": 108061, + "Label": "5531-108061 via BC Conventional Synapse from 108126 -> 108125", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108126, + "TargetID": 108125, + "Directional": true + } + ] + }, + { + "ID": 9376, + "SourceStructureID": 5531, + "TargetStructureID": 110648, + "Label": "5531-110648 via Ribbon Synapse from 147463 -> 147461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147463, + "TargetID": 147461, + "Directional": true + } + ] + }, + { + "ID": 9377, + "SourceStructureID": 5531, + "TargetStructureID": 110666, + "Label": "5531-110666 via Ribbon Synapse from 110665 -> 110667, 147463 -> 147462", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110665, + "TargetID": 110667, + "Directional": true + }, + { + "SourceID": 147463, + "TargetID": 147462, + "Directional": true + } + ] + }, + { + "ID": 9378, + "SourceStructureID": 5531, + "TargetStructureID": 110681, + "Label": "5531-110681 via Ribbon Synapse from 110679 -> 110682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110679, + "TargetID": 110682, + "Directional": true + } + ] + }, + { + "ID": 9379, + "SourceStructureID": 5531, + "TargetStructureID": 110686, + "Label": "5531-110686 via Ribbon Synapse from 110684 -> 114823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110684, + "TargetID": 114823, + "Directional": true + } + ] + }, + { + "ID": 9380, + "SourceStructureID": 5531, + "TargetStructureID": 111806, + "Label": "5531-111806 via Ribbon Synapse from 87140 -> 111807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87140, + "TargetID": 111807, + "Directional": true + } + ] + }, + { + "ID": 9381, + "SourceStructureID": 5531, + "TargetStructureID": 111808, + "Label": "5531-111808 via Ribbon Synapse from 56793 -> 111810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56793, + "TargetID": 111810, + "Directional": true + } + ] + }, + { + "ID": 9382, + "SourceStructureID": 5531, + "TargetStructureID": 111812, + "Label": "5531-111812 via Ribbon Synapse from 56794 -> 111815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56794, + "TargetID": 111815, + "Directional": true + } + ] + }, + { + "ID": 9383, + "SourceStructureID": 5531, + "TargetStructureID": 111813, + "Label": "5531-111813 via Ribbon Synapse from 56794 -> 111816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56794, + "TargetID": 111816, + "Directional": true + } + ] + }, + { + "ID": 9384, + "SourceStructureID": 5531, + "TargetStructureID": 111814, + "Label": "5531-111814 via Ribbon Synapse from 111817 -> 111818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111817, + "TargetID": 111818, + "Directional": true + } + ] + }, + { + "ID": 9385, + "SourceStructureID": 5531, + "TargetStructureID": 111821, + "Label": "5531-111821 via Ribbon Synapse from 111820 -> 111822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111820, + "TargetID": 111822, + "Directional": true + } + ] + }, + { + "ID": 9386, + "SourceStructureID": 5531, + "TargetStructureID": 111823, + "Label": "5531-111823 via Ribbon Synapse from 56795 -> 111824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56795, + "TargetID": 111824, + "Directional": true + } + ] + }, + { + "ID": 9387, + "SourceStructureID": 5531, + "TargetStructureID": 111835, + "Label": "5531-111835 via Ribbon Synapse from 111834 -> 111836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111834, + "TargetID": 111836, + "Directional": true + } + ] + }, + { + "ID": 9388, + "SourceStructureID": 5531, + "TargetStructureID": 111838, + "Label": "5531-111838 via Ribbon Synapse from 111837 -> 111839", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111837, + "TargetID": 111839, + "Directional": true + } + ] + }, + { + "ID": 9389, + "SourceStructureID": 5531, + "TargetStructureID": 111842, + "Label": "5531-111842 via Ribbon Synapse from 111846 -> 111847", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111846, + "TargetID": 111847, + "Directional": true + } + ] + }, + { + "ID": 9390, + "SourceStructureID": 5531, + "TargetStructureID": 111852, + "Label": "5531-111852 via Ribbon Synapse from 111851 -> 111853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111851, + "TargetID": 111853, + "Directional": true + } + ] + }, + { + "ID": 9391, + "SourceStructureID": 5531, + "TargetStructureID": 111854, + "Label": "5531-111854 via Ribbon Synapse from 56801 -> 111855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56801, + "TargetID": 111855, + "Directional": true + } + ] + }, + { + "ID": 9392, + "SourceStructureID": 5531, + "TargetStructureID": 111856, + "Label": "5531-111856 via Ribbon Synapse from 56801 -> 111857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56801, + "TargetID": 111857, + "Directional": true + } + ] + }, + { + "ID": 9393, + "SourceStructureID": 5531, + "TargetStructureID": 112458, + "Label": "5531-112458 via Ribbon Synapse from 112456 -> 112459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112456, + "TargetID": 112459, + "Directional": true + } + ] + }, + { + "ID": 9394, + "SourceStructureID": 5531, + "TargetStructureID": 112465, + "Label": "5531-112465 via BC Conventional Synapse from 112466 -> 112467", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112466, + "TargetID": 112467, + "Directional": true + } + ] + }, + { + "ID": 9395, + "SourceStructureID": 5531, + "TargetStructureID": 112473, + "Label": "5531-112473 via Ribbon Synapse from 112472 -> 114567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112472, + "TargetID": 114567, + "Directional": true + } + ] + }, + { + "ID": 9396, + "SourceStructureID": 5531, + "TargetStructureID": 114540, + "Label": "5531-114540 via Ribbon Synapse from 107190 -> 114541", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107190, + "TargetID": 114541, + "Directional": true + } + ] + }, + { + "ID": 9397, + "SourceStructureID": 5531, + "TargetStructureID": 114556, + "Label": "5531-114556 via Ribbon Synapse from 112472 -> 114557", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112472, + "TargetID": 114557, + "Directional": true + } + ] + }, + { + "ID": 9398, + "SourceStructureID": 5531, + "TargetStructureID": 114558, + "Label": "5531-114558 via Ribbon Synapse from 112472 -> 114559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112472, + "TargetID": 114559, + "Directional": true + } + ] + }, + { + "ID": 9399, + "SourceStructureID": 5531, + "TargetStructureID": 114560, + "Label": "5531-114560 via BC Conventional Synapse from 114562 -> 114563", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114562, + "TargetID": 114563, + "Directional": true + } + ] + }, + { + "ID": 9400, + "SourceStructureID": 5531, + "TargetStructureID": 114564, + "Label": "5531-114564 via BC Conventional Synapse from 114579 -> 114580", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114579, + "TargetID": 114580, + "Directional": true + } + ] + }, + { + "ID": 9401, + "SourceStructureID": 5531, + "TargetStructureID": 114568, + "Label": "5531-114568 via BC Conventional Synapse from 127296 -> 127297", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127296, + "TargetID": 127297, + "Directional": true + } + ] + }, + { + "ID": 9402, + "SourceStructureID": 5531, + "TargetStructureID": 114573, + "Label": "5531-114573 via Ribbon Synapse from 114574 -> 114575", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114574, + "TargetID": 114575, + "Directional": true + } + ] + }, + { + "ID": 9403, + "SourceStructureID": 5531, + "TargetStructureID": 114695, + "Label": "5531-114695 via BC Conventional Synapse from 114696 -> 114697", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114696, + "TargetID": 114697, + "Directional": true + } + ] + }, + { + "ID": 9404, + "SourceStructureID": 5531, + "TargetStructureID": 114702, + "Label": "5531-114702 via Ribbon Synapse from 114701 -> 114703", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114701, + "TargetID": 114703, + "Directional": true + } + ] + }, + { + "ID": 9405, + "SourceStructureID": 5531, + "TargetStructureID": 114705, + "Label": "5531-114705 via Ribbon Synapse from 114704 -> 114706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114704, + "TargetID": 114706, + "Directional": true + } + ] + }, + { + "ID": 9406, + "SourceStructureID": 5531, + "TargetStructureID": 114707, + "Label": "5531-114707 via Ribbon Synapse from 114704 -> 114708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114704, + "TargetID": 114708, + "Directional": true + } + ] + }, + { + "ID": 9407, + "SourceStructureID": 5531, + "TargetStructureID": 114709, + "Label": "5531-114709 via BC Conventional Synapse from 114710 -> 114711", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114710, + "TargetID": 114711, + "Directional": true + } + ] + }, + { + "ID": 9408, + "SourceStructureID": 5531, + "TargetStructureID": 114718, + "Label": "5531-114718 via Ribbon Synapse from 114719 -> 114720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114719, + "TargetID": 114720, + "Directional": true + } + ] + }, + { + "ID": 9409, + "SourceStructureID": 5531, + "TargetStructureID": 114721, + "Label": "5531-114721 via Ribbon Synapse from 114722 -> 114723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114722, + "TargetID": 114723, + "Directional": true + } + ] + }, + { + "ID": 9410, + "SourceStructureID": 5531, + "TargetStructureID": 114724, + "Label": "5531-114724 via Ribbon Synapse from 114722 -> 114725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114722, + "TargetID": 114725, + "Directional": true + } + ] + }, + { + "ID": 9411, + "SourceStructureID": 5531, + "TargetStructureID": 114732, + "Label": "5531-114732 via Ribbon Synapse from 54917 -> 114733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54917, + "TargetID": 114733, + "Directional": true + } + ] + }, + { + "ID": 9412, + "SourceStructureID": 5531, + "TargetStructureID": 114745, + "Label": "5531-114745 via Ribbon Synapse from 114746 -> 114753", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114746, + "TargetID": 114753, + "Directional": true + } + ] + }, + { + "ID": 9413, + "SourceStructureID": 5531, + "TargetStructureID": 114747, + "Label": "5531-114747 via Ribbon Synapse from 114746 -> 114752", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114746, + "TargetID": 114752, + "Directional": true + } + ] + }, + { + "ID": 9414, + "SourceStructureID": 5531, + "TargetStructureID": 114748, + "Label": "5531-114748 via Ribbon Synapse from 54651 -> 114749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54651, + "TargetID": 114749, + "Directional": true + } + ] + }, + { + "ID": 9415, + "SourceStructureID": 5531, + "TargetStructureID": 114760, + "Label": "5531-114760 via Ribbon Synapse from 54648 -> 114761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54648, + "TargetID": 114761, + "Directional": true + } + ] + }, + { + "ID": 9416, + "SourceStructureID": 5531, + "TargetStructureID": 114763, + "Label": "5531-114763 via Ribbon Synapse from 54648 -> 114764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54648, + "TargetID": 114764, + "Directional": true + } + ] + }, + { + "ID": 9417, + "SourceStructureID": 5532, + "TargetStructureID": 13448, + "Label": "5532-13448 via Ribbon Synapse from 43394 -> 13449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43394, + "TargetID": 13449, + "Directional": true + } + ] + }, + { + "ID": 9418, + "SourceStructureID": 5532, + "TargetStructureID": 90715, + "Label": "5532-90715 via Ribbon Synapse from 43155 -> 91311, 43394 -> 91320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43155, + "TargetID": 91311, + "Directional": true + }, + { + "SourceID": 43394, + "TargetID": 91320, + "Directional": true + } + ] + }, + { + "ID": 9419, + "SourceStructureID": 5534, + "TargetStructureID": 606, + "Label": "5534-606 via Ribbon Synapse from 34644 -> 54327, 44250 -> 44249, 44303 -> 44302, 49803 -> 49804, 53667 -> 53668, 54206 -> 44277, 54296 -> 44300, 54303 -> 54304", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34644, + "TargetID": 54327, + "Directional": true + }, + { + "SourceID": 44250, + "TargetID": 44249, + "Directional": true + }, + { + "SourceID": 44303, + "TargetID": 44302, + "Directional": true + }, + { + "SourceID": 49803, + "TargetID": 49804, + "Directional": true + }, + { + "SourceID": 53667, + "TargetID": 53668, + "Directional": true + }, + { + "SourceID": 54206, + "TargetID": 44277, + "Directional": true + }, + { + "SourceID": 54296, + "TargetID": 44300, + "Directional": true + }, + { + "SourceID": 54303, + "TargetID": 54304, + "Directional": true + } + ] + }, + { + "ID": 9420, + "SourceStructureID": 5534, + "TargetStructureID": 9769, + "Label": "5534-9769 via Ribbon Synapse from 29879 -> 29878, 35323 -> 29877, 45321 -> 45209", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29879, + "TargetID": 29878, + "Directional": true + }, + { + "SourceID": 35323, + "TargetID": 29877, + "Directional": true + }, + { + "SourceID": 45321, + "TargetID": 45209, + "Directional": true + } + ] + }, + { + "ID": 9421, + "SourceStructureID": 5534, + "TargetStructureID": 32938, + "Label": "5534-32938 via Ribbon Synapse from 32944 -> 32943", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32944, + "TargetID": 32943, + "Directional": true + } + ] + }, + { + "ID": 9422, + "SourceStructureID": 5534, + "TargetStructureID": 35317, + "Label": "5534-35317 via Ribbon Synapse from 35323 -> 35321", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35323, + "TargetID": 35321, + "Directional": true + } + ] + }, + { + "ID": 9423, + "SourceStructureID": 5534, + "TargetStructureID": 45220, + "Label": "5534-45220 via Ribbon Synapse from 118274 -> 45252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118274, + "TargetID": 45252, + "Directional": true + } + ] + }, + { + "ID": 9424, + "SourceStructureID": 5534, + "TargetStructureID": 58592, + "Label": "5534-58592 via Ribbon Synapse from 118350 -> 118351", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118350, + "TargetID": 118351, + "Directional": true + } + ] + }, + { + "ID": 9425, + "SourceStructureID": 5534, + "TargetStructureID": 84118, + "Label": "5534-84118 via Ribbon Synapse from 123621 -> 123622", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123621, + "TargetID": 123622, + "Directional": true + } + ] + }, + { + "ID": 9426, + "SourceStructureID": 5534, + "TargetStructureID": 88912, + "Label": "5534-88912 via Ribbon Synapse from 88917 -> 88918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88917, + "TargetID": 88918, + "Directional": true + } + ] + }, + { + "ID": 9427, + "SourceStructureID": 5535, + "TargetStructureID": 35092, + "Label": "5535-35092 via Ribbon Synapse from 35100 -> 35098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35100, + "TargetID": 35098, + "Directional": true + } + ] + }, + { + "ID": 9428, + "SourceStructureID": 5536, + "TargetStructureID": 19571, + "Label": "5536-19571 via Ribbon Synapse from 22697 -> 22714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22697, + "TargetID": 22714, + "Directional": true + } + ] + }, + { + "ID": 9429, + "SourceStructureID": 5536, + "TargetStructureID": 20537, + "Label": "5536-20537 via Ribbon Synapse from 22697 -> 23528, 22711 -> 23528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22697, + "TargetID": 23528, + "Directional": true + }, + { + "SourceID": 22711, + "TargetID": 23528, + "Directional": true + } + ] + }, + { + "ID": 9430, + "SourceStructureID": 5536, + "TargetStructureID": 26971, + "Label": "5536-26971 via Ribbon Synapse from 22645 -> 26972, 27807 -> 26972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22645, + "TargetID": 26972, + "Directional": true + }, + { + "SourceID": 27807, + "TargetID": 26972, + "Directional": true + } + ] + }, + { + "ID": 9431, + "SourceStructureID": 5536, + "TargetStructureID": 70684, + "Label": "5536-70684 via Ribbon Synapse from 27813 -> 70691, 27817 -> 70689, 27822 -> 70686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27813, + "TargetID": 70691, + "Directional": true + }, + { + "SourceID": 27817, + "TargetID": 70689, + "Directional": true + }, + { + "SourceID": 27822, + "TargetID": 70686, + "Directional": true + } + ] + }, + { + "ID": 9432, + "SourceStructureID": 5537, + "TargetStructureID": 606, + "Label": "5537-606 via Ribbon Synapse from 44957 -> 54330, 54381 -> 54380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44957, + "TargetID": 54330, + "Directional": true + }, + { + "SourceID": 54381, + "TargetID": 54380, + "Directional": true + } + ] + }, + { + "ID": 9433, + "SourceStructureID": 5537, + "TargetStructureID": 5451, + "Label": "5537-5451 via Ribbon Synapse from 44784 -> 44785, 44925 -> 44926, 44957 -> 44958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44784, + "TargetID": 44785, + "Directional": true + }, + { + "SourceID": 44925, + "TargetID": 44926, + "Directional": true + }, + { + "SourceID": 44957, + "TargetID": 44958, + "Directional": true + } + ] + }, + { + "ID": 9434, + "SourceStructureID": 5537, + "TargetStructureID": 7594, + "Label": "5537-7594 via Ribbon Synapse from 25142 -> 24396, 38187 -> 38188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25142, + "TargetID": 24396, + "Directional": true + }, + { + "SourceID": 38187, + "TargetID": 38188, + "Directional": true + } + ] + }, + { + "ID": 9435, + "SourceStructureID": 5537, + "TargetStructureID": 10559, + "Label": "5537-10559 via Ribbon Synapse from 44317 -> 44316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44317, + "TargetID": 44316, + "Directional": true + } + ] + }, + { + "ID": 9436, + "SourceStructureID": 5537, + "TargetStructureID": 11238, + "Label": "5537-11238 via Ribbon Synapse from 88356 -> 88318, 88382 -> 88378, 88383 -> 88384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88356, + "TargetID": 88318, + "Directional": true + }, + { + "SourceID": 88382, + "TargetID": 88378, + "Directional": true + }, + { + "SourceID": 88383, + "TargetID": 88384, + "Directional": true + } + ] + }, + { + "ID": 9437, + "SourceStructureID": 5537, + "TargetStructureID": 32926, + "Label": "5537-32926 via Ribbon Synapse from 32935 -> 32934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32935, + "TargetID": 32934, + "Directional": true + } + ] + }, + { + "ID": 9438, + "SourceStructureID": 5537, + "TargetStructureID": 35188, + "Label": "5537-35188 via Ribbon Synapse from 127762 -> 127763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127762, + "TargetID": 127763, + "Directional": true + } + ] + }, + { + "ID": 9439, + "SourceStructureID": 5537, + "TargetStructureID": 45220, + "Label": "5537-45220 via Ribbon Synapse from 56095 -> 45247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56095, + "TargetID": 45247, + "Directional": true + } + ] + }, + { + "ID": 9440, + "SourceStructureID": 5537, + "TargetStructureID": 56093, + "Label": "5537-56093 via Ribbon Synapse from 56095 -> 56094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56095, + "TargetID": 56094, + "Directional": true + } + ] + }, + { + "ID": 9441, + "SourceStructureID": 5538, + "TargetStructureID": 5451, + "Label": "5538-5451 via BC Conventional Synapse from 55936 -> 55937", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55936, + "TargetID": 55937, + "Directional": true + } + ] + }, + { + "ID": 9442, + "SourceStructureID": 5538, + "TargetStructureID": 5453, + "Label": "5538-5453 via Ribbon Synapse from 42198 -> 18509, 42202 -> 18504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42198, + "TargetID": 18509, + "Directional": true + }, + { + "SourceID": 42202, + "TargetID": 18504, + "Directional": true + } + ] + }, + { + "ID": 9443, + "SourceStructureID": 5538, + "TargetStructureID": 8504, + "Label": "5538-8504 via Ribbon Synapse from 45012 -> 8709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45012, + "TargetID": 8709, + "Directional": true + } + ] + }, + { + "ID": 9444, + "SourceStructureID": 5538, + "TargetStructureID": 8551, + "Label": "5538-8551 via Ribbon Synapse from 8545 -> 8566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8545, + "TargetID": 8566, + "Directional": true + } + ] + }, + { + "ID": 9445, + "SourceStructureID": 5538, + "TargetStructureID": 16073, + "Label": "5538-16073 via Ribbon Synapse from 24223 -> 24220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24223, + "TargetID": 24220, + "Directional": true + } + ] + }, + { + "ID": 9446, + "SourceStructureID": 5538, + "TargetStructureID": 42770, + "Label": "5538-42770 via Ribbon Synapse from 24222 -> 42772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24222, + "TargetID": 42772, + "Directional": true + } + ] + }, + { + "ID": 9447, + "SourceStructureID": 5538, + "TargetStructureID": 55933, + "Label": "5538-55933 via BC Conventional Synapse from 55935 -> 55934", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55935, + "TargetID": 55934, + "Directional": true + } + ] + }, + { + "ID": 9448, + "SourceStructureID": 5539, + "TargetStructureID": 7188, + "Label": "5539-7188 via Ribbon Synapse from 8514 -> 7190, 8519 -> 8516, 8521 -> 7192, 9816 -> 8517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8514, + "TargetID": 7190, + "Directional": true + }, + { + "SourceID": 8519, + "TargetID": 8516, + "Directional": true + }, + { + "SourceID": 8521, + "TargetID": 7192, + "Directional": true + }, + { + "SourceID": 9816, + "TargetID": 8517, + "Directional": true + } + ] + }, + { + "ID": 9449, + "SourceStructureID": 5539, + "TargetStructureID": 7225, + "Label": "5539-7225 via Ribbon Synapse from 10022 -> 22689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10022, + "TargetID": 22689, + "Directional": true + } + ] + }, + { + "ID": 9450, + "SourceStructureID": 5539, + "TargetStructureID": 19572, + "Label": "5539-19572 via Ribbon Synapse from 8521 -> 22625", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8521, + "TargetID": 22625, + "Directional": true + } + ] + }, + { + "ID": 9451, + "SourceStructureID": 5539, + "TargetStructureID": 20681, + "Label": "5539-20681 via Ribbon Synapse from 44471 -> 65772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44471, + "TargetID": 65772, + "Directional": true + } + ] + }, + { + "ID": 9452, + "SourceStructureID": 5541, + "TargetStructureID": 606, + "Label": "5541-606 via Ribbon Synapse from 33240 -> 44252, 33241 -> 44251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33240, + "TargetID": 44252, + "Directional": true + }, + { + "SourceID": 33241, + "TargetID": 44251, + "Directional": true + } + ] + }, + { + "ID": 9453, + "SourceStructureID": 5541, + "TargetStructureID": 4890, + "Label": "5541-4890 via Ribbon Synapse from 7914 -> 7915", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7914, + "TargetID": 7915, + "Directional": true + } + ] + }, + { + "ID": 9454, + "SourceStructureID": 5541, + "TargetStructureID": 35325, + "Label": "5541-35325 via Ribbon Synapse from 38254 -> 38249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38254, + "TargetID": 38249, + "Directional": true + } + ] + }, + { + "ID": 9455, + "SourceStructureID": 5541, + "TargetStructureID": 71985, + "Label": "5541-71985 via Ribbon Synapse from 72023 -> 72026", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72023, + "TargetID": 72026, + "Directional": true + } + ] + }, + { + "ID": 9456, + "SourceStructureID": 5541, + "TargetStructureID": 72036, + "Label": "5541-72036 via Ribbon Synapse from 72038 -> 72039, 72041 -> 72040", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72038, + "TargetID": 72039, + "Directional": true + }, + { + "SourceID": 72041, + "TargetID": 72040, + "Directional": true + } + ] + }, + { + "ID": 9457, + "SourceStructureID": 5542, + "TargetStructureID": 456, + "Label": "5542-456 via Ribbon Synapse from 39990 -> 14424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39990, + "TargetID": 14424, + "Directional": true + } + ] + }, + { + "ID": 9458, + "SourceStructureID": 5542, + "TargetStructureID": 7564, + "Label": "5542-7564 via Ribbon Synapse from 29055 -> 29049", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29055, + "TargetID": 29049, + "Directional": true + } + ] + }, + { + "ID": 9459, + "SourceStructureID": 5542, + "TargetStructureID": 13525, + "Label": "5542-13525 via Ribbon Synapse from 95794 -> 85330, 133824 -> 129028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95794, + "TargetID": 85330, + "Directional": true + }, + { + "SourceID": 133824, + "TargetID": 129028, + "Directional": true + } + ] + }, + { + "ID": 9460, + "SourceStructureID": 5542, + "TargetStructureID": 90715, + "Label": "5542-90715 via Ribbon Synapse from 43158 -> 91225, 43164 -> 91027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43158, + "TargetID": 91225, + "Directional": true + }, + { + "SourceID": 43164, + "TargetID": 91027, + "Directional": true + } + ] + }, + { + "ID": 9461, + "SourceStructureID": 5542, + "TargetStructureID": 130365, + "Label": "5542-130365 via Ribbon Synapse from 95796 -> 130367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95796, + "TargetID": 130367, + "Directional": true + } + ] + }, + { + "ID": 9462, + "SourceStructureID": 5542, + "TargetStructureID": 137122, + "Label": "5542-137122 via Ribbon Synapse from 137132 -> 137130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137132, + "TargetID": 137130, + "Directional": true + } + ] + }, + { + "ID": 9463, + "SourceStructureID": 5543, + "TargetStructureID": 5453, + "Label": "5543-5453 via Ribbon Synapse from 17033 -> 18570, 17095 -> 18664, 17096 -> 18674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17033, + "TargetID": 18570, + "Directional": true + }, + { + "SourceID": 17095, + "TargetID": 18664, + "Directional": true + }, + { + "SourceID": 17096, + "TargetID": 18674, + "Directional": true + } + ] + }, + { + "ID": 9464, + "SourceStructureID": 5543, + "TargetStructureID": 7703, + "Label": "5543-7703 via Ribbon Synapse from 17018 -> 17020, 17091 -> 18652, 17096 -> 18591, 17097 -> 18592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17018, + "TargetID": 17020, + "Directional": true + }, + { + "SourceID": 17091, + "TargetID": 18652, + "Directional": true + }, + { + "SourceID": 17096, + "TargetID": 18591, + "Directional": true + }, + { + "SourceID": 17097, + "TargetID": 18592, + "Directional": true + } + ] + }, + { + "ID": 9465, + "SourceStructureID": 5543, + "TargetStructureID": 8575, + "Label": "5543-8575 via BC Conventional Synapse from 55284 -> 37282", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55284, + "TargetID": 37282, + "Directional": true + } + ] + }, + { + "ID": 9466, + "SourceStructureID": 5543, + "TargetStructureID": 98590, + "Label": "5543-98590 via Ribbon Synapse from 17088 -> 117185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17088, + "TargetID": 117185, + "Directional": true + } + ] + }, + { + "ID": 9467, + "SourceStructureID": 5543, + "TargetStructureID": 101369, + "Label": "5543-101369 via Ribbon Synapse from 101421 -> 101416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101421, + "TargetID": 101416, + "Directional": true + } + ] + }, + { + "ID": 9468, + "SourceStructureID": 5543, + "TargetStructureID": 135225, + "Label": "5543-135225 via Ribbon Synapse from 17131 -> 135241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17131, + "TargetID": 135241, + "Directional": true + } + ] + }, + { + "ID": 9469, + "SourceStructureID": 5544, + "TargetStructureID": 458, + "Label": "5544-458 via Ribbon Synapse from 44714 -> 14491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44714, + "TargetID": 14491, + "Directional": true + } + ] + }, + { + "ID": 9470, + "SourceStructureID": 5544, + "TargetStructureID": 5421, + "Label": "5544-5421 via Ribbon Synapse from 44703 -> 130831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44703, + "TargetID": 130831, + "Directional": true + } + ] + }, + { + "ID": 9471, + "SourceStructureID": 5544, + "TargetStructureID": 5422, + "Label": "5544-5422 via Ribbon Synapse from 74125 -> 74124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74125, + "TargetID": 74124, + "Directional": true + } + ] + }, + { + "ID": 9472, + "SourceStructureID": 5544, + "TargetStructureID": 7564, + "Label": "5544-7564 via Ribbon Synapse from 44703 -> 44707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44703, + "TargetID": 44707, + "Directional": true + } + ] + }, + { + "ID": 9473, + "SourceStructureID": 5544, + "TargetStructureID": 20681, + "Label": "5544-20681 via Ribbon Synapse from 45082 -> 65811, 65804 -> 65803, 65815 -> 65814", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45082, + "TargetID": 65811, + "Directional": true + }, + { + "SourceID": 65804, + "TargetID": 65803, + "Directional": true + }, + { + "SourceID": 65815, + "TargetID": 65814, + "Directional": true + } + ] + }, + { + "ID": 9474, + "SourceStructureID": 5544, + "TargetStructureID": 31931, + "Label": "5544-31931 via Ribbon Synapse from 31936 -> 31935", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31936, + "TargetID": 31935, + "Directional": true + } + ] + }, + { + "ID": 9475, + "SourceStructureID": 5544, + "TargetStructureID": 137024, + "Label": "5544-137024 via Ribbon Synapse from 137032 -> 137031", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137032, + "TargetID": 137031, + "Directional": true + } + ] + }, + { + "ID": 9476, + "SourceStructureID": 5545, + "TargetStructureID": 5453, + "Label": "5545-5453 via Ribbon Synapse from 128475 -> 28779", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128475, + "TargetID": 28779, + "Directional": true + } + ] + }, + { + "ID": 9477, + "SourceStructureID": 5545, + "TargetStructureID": 7859, + "Label": "5545-7859 via Ribbon Synapse from 40080 -> 84687, 84692 -> 84693", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40080, + "TargetID": 84687, + "Directional": true + }, + { + "SourceID": 84692, + "TargetID": 84693, + "Directional": true + } + ] + }, + { + "ID": 9478, + "SourceStructureID": 5545, + "TargetStructureID": 13525, + "Label": "5545-13525 via Ribbon Synapse from 21278 -> 129965, 128463 -> 87084", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21278, + "TargetID": 129965, + "Directional": true + }, + { + "SourceID": 128463, + "TargetID": 87084, + "Directional": true + } + ] + }, + { + "ID": 9479, + "SourceStructureID": 5545, + "TargetStructureID": 22225, + "Label": "5545-22225 via Ribbon Synapse from 40078 -> 128201", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40078, + "TargetID": 128201, + "Directional": true + } + ] + }, + { + "ID": 9480, + "SourceStructureID": 5545, + "TargetStructureID": 46741, + "Label": "5545-46741 via BC Conventional Synapse from 136955 -> 136954", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136955, + "TargetID": 136954, + "Directional": true + } + ] + }, + { + "ID": 9481, + "SourceStructureID": 5545, + "TargetStructureID": 64777, + "Label": "5545-64777 via Ribbon Synapse from 64835 -> 64829", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64835, + "TargetID": 64829, + "Directional": true + } + ] + }, + { + "ID": 9482, + "SourceStructureID": 5545, + "TargetStructureID": 122073, + "Label": "5545-122073 via Ribbon Synapse from 128465 -> 123252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128465, + "TargetID": 123252, + "Directional": true + } + ] + }, + { + "ID": 9483, + "SourceStructureID": 5551, + "TargetStructureID": 116925, + "Label": "5551-116925 via Ribbon Synapse from 116923 -> 116926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116923, + "TargetID": 116926, + "Directional": true + } + ] + }, + { + "ID": 9484, + "SourceStructureID": 5557, + "TargetStructureID": 117065, + "Label": "5557-117065 via Ribbon Synapse from 117064 -> 117068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117064, + "TargetID": 117068, + "Directional": true + } + ] + }, + { + "ID": 9485, + "SourceStructureID": 5561, + "TargetStructureID": 606, + "Label": "5561-606 via Ribbon Synapse from 20252 -> 20253, 46263 -> 51599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20252, + "TargetID": 20253, + "Directional": true + }, + { + "SourceID": 46263, + "TargetID": 51599, + "Directional": true + } + ] + }, + { + "ID": 9486, + "SourceStructureID": 5561, + "TargetStructureID": 5282, + "Label": "5561-5282 via Ribbon Synapse from 46043 -> 97665", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46043, + "TargetID": 97665, + "Directional": true + } + ] + }, + { + "ID": 9487, + "SourceStructureID": 5561, + "TargetStructureID": 9769, + "Label": "5561-9769 via Ribbon Synapse from 29900 -> 20229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29900, + "TargetID": 20229, + "Directional": true + } + ] + }, + { + "ID": 9488, + "SourceStructureID": 5561, + "TargetStructureID": 53399, + "Label": "5561-53399 via Ribbon Synapse from 46301 -> 53402", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46301, + "TargetID": 53402, + "Directional": true + } + ] + }, + { + "ID": 9489, + "SourceStructureID": 5561, + "TargetStructureID": 63594, + "Label": "5561-63594 via Ribbon Synapse from 46288 -> 63604, 49639 -> 96820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46288, + "TargetID": 63604, + "Directional": true + }, + { + "SourceID": 49639, + "TargetID": 96820, + "Directional": true + } + ] + }, + { + "ID": 9490, + "SourceStructureID": 5561, + "TargetStructureID": 69162, + "Label": "5561-69162 via Ribbon Synapse from 46308 -> 148171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46308, + "TargetID": 148171, + "Directional": true + } + ] + }, + { + "ID": 9491, + "SourceStructureID": 5561, + "TargetStructureID": 70050, + "Label": "5561-70050 via Ribbon Synapse from 46279 -> 130901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46279, + "TargetID": 130901, + "Directional": true + } + ] + }, + { + "ID": 9492, + "SourceStructureID": 5561, + "TargetStructureID": 96762, + "Label": "5561-96762 via Cistern Pre from 46112 -> 96763", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 46112, + "TargetID": 96763, + "Directional": true + } + ] + }, + { + "ID": 9493, + "SourceStructureID": 5561, + "TargetStructureID": 96764, + "Label": "5561-96764 via Cistern Pre from 46115 -> 96765", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 46115, + "TargetID": 96765, + "Directional": true + } + ] + }, + { + "ID": 9494, + "SourceStructureID": 5561, + "TargetStructureID": 96766, + "Label": "5561-96766 via Cistern Pre from 46134 -> 96767", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 46134, + "TargetID": 96767, + "Directional": true + } + ] + }, + { + "ID": 9495, + "SourceStructureID": 5561, + "TargetStructureID": 96768, + "Label": "5561-96768 via Ribbon Synapse from 46135 -> 96769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46135, + "TargetID": 96769, + "Directional": true + } + ] + }, + { + "ID": 9496, + "SourceStructureID": 5561, + "TargetStructureID": 96781, + "Label": "5561-96781 via Ribbon Synapse from 46145 -> 96783, 46294 -> 96782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46145, + "TargetID": 96783, + "Directional": true + }, + { + "SourceID": 46294, + "TargetID": 96782, + "Directional": true + } + ] + }, + { + "ID": 9497, + "SourceStructureID": 5561, + "TargetStructureID": 96784, + "Label": "5561-96784 via Ribbon Synapse from 46294 -> 96785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46294, + "TargetID": 96785, + "Directional": true + } + ] + }, + { + "ID": 9498, + "SourceStructureID": 5561, + "TargetStructureID": 96786, + "Label": "5561-96786 via Ribbon Synapse from 46263 -> 96789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46263, + "TargetID": 96789, + "Directional": true + } + ] + }, + { + "ID": 9499, + "SourceStructureID": 5561, + "TargetStructureID": 96791, + "Label": "5561-96791 via BC Conventional Synapse from 96792 -> 96793", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96792, + "TargetID": 96793, + "Directional": true + } + ] + }, + { + "ID": 9500, + "SourceStructureID": 5561, + "TargetStructureID": 96791, + "Label": "5561-96791 via Ribbon Synapse from 46292 -> 96798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46292, + "TargetID": 96798, + "Directional": true + } + ] + }, + { + "ID": 9501, + "SourceStructureID": 5561, + "TargetStructureID": 96794, + "Label": "5561-96794 via Ribbon Synapse from 46292 -> 96795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46292, + "TargetID": 96795, + "Directional": true + } + ] + }, + { + "ID": 9502, + "SourceStructureID": 5561, + "TargetStructureID": 96812, + "Label": "5561-96812 via BC Conventional Synapse from 96809 -> 96813", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96809, + "TargetID": 96813, + "Directional": true + } + ] + }, + { + "ID": 9503, + "SourceStructureID": 5561, + "TargetStructureID": 96851, + "Label": "5561-96851 via Ribbon Synapse from 96850 -> 96853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96850, + "TargetID": 96853, + "Directional": true + } + ] + }, + { + "ID": 9504, + "SourceStructureID": 5561, + "TargetStructureID": 96927, + "Label": "5561-96927 via BC Conventional Synapse from 96929 -> 96928", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96929, + "TargetID": 96928, + "Directional": true + } + ] + }, + { + "ID": 9505, + "SourceStructureID": 5561, + "TargetStructureID": 96934, + "Label": "5561-96934 via Ribbon Synapse from 29900 -> 96935", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29900, + "TargetID": 96935, + "Directional": true + } + ] + }, + { + "ID": 9506, + "SourceStructureID": 5561, + "TargetStructureID": 96938, + "Label": "5561-96938 via BC Conventional Synapse from 96939 -> 96940", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96939, + "TargetID": 96940, + "Directional": true + } + ] + }, + { + "ID": 9507, + "SourceStructureID": 5561, + "TargetStructureID": 96943, + "Label": "5561-96943 via BC Conventional Synapse from 96946 -> 96945", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96946, + "TargetID": 96945, + "Directional": true + } + ] + }, + { + "ID": 9508, + "SourceStructureID": 5561, + "TargetStructureID": 96974, + "Label": "5561-96974 via Ribbon Synapse from 46271 -> 96975", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46271, + "TargetID": 96975, + "Directional": true + } + ] + }, + { + "ID": 9509, + "SourceStructureID": 5561, + "TargetStructureID": 96980, + "Label": "5561-96980 via Ribbon Synapse from 46273 -> 96981", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46273, + "TargetID": 96981, + "Directional": true + } + ] + }, + { + "ID": 9510, + "SourceStructureID": 5561, + "TargetStructureID": 96988, + "Label": "5561-96988 via Ribbon Synapse from 46277 -> 96989", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46277, + "TargetID": 96989, + "Directional": true + } + ] + }, + { + "ID": 9511, + "SourceStructureID": 5561, + "TargetStructureID": 97001, + "Label": "5561-97001 via Ribbon Synapse from 97000 -> 97002", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97000, + "TargetID": 97002, + "Directional": true + } + ] + }, + { + "ID": 9512, + "SourceStructureID": 5561, + "TargetStructureID": 97012, + "Label": "5561-97012 via Ribbon Synapse from 46279 -> 97014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46279, + "TargetID": 97014, + "Directional": true + } + ] + }, + { + "ID": 9513, + "SourceStructureID": 5561, + "TargetStructureID": 97065, + "Label": "5561-97065 via BC Conventional Synapse from 46196 -> 97066", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46196, + "TargetID": 97066, + "Directional": true + } + ] + }, + { + "ID": 9514, + "SourceStructureID": 5561, + "TargetStructureID": 97090, + "Label": "5561-97090 via Ribbon Synapse from 97085 -> 97091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97085, + "TargetID": 97091, + "Directional": true + } + ] + }, + { + "ID": 9515, + "SourceStructureID": 5561, + "TargetStructureID": 97093, + "Label": "5561-97093 via Ribbon Synapse from 97092 -> 97094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97092, + "TargetID": 97094, + "Directional": true + } + ] + }, + { + "ID": 9516, + "SourceStructureID": 5561, + "TargetStructureID": 97159, + "Label": "5561-97159 via Ribbon Synapse from 46172 -> 148167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46172, + "TargetID": 148167, + "Directional": true + } + ] + }, + { + "ID": 9517, + "SourceStructureID": 5561, + "TargetStructureID": 97166, + "Label": "5561-97166 via Ribbon Synapse from 46172 -> 97170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46172, + "TargetID": 97170, + "Directional": true + } + ] + }, + { + "ID": 9518, + "SourceStructureID": 5561, + "TargetStructureID": 97202, + "Label": "5561-97202 via BC Conventional Synapse from 97201 -> 97203", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97201, + "TargetID": 97203, + "Directional": true + } + ] + }, + { + "ID": 9519, + "SourceStructureID": 5561, + "TargetStructureID": 97204, + "Label": "5561-97204 via Ribbon Synapse from 97200 -> 97205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97200, + "TargetID": 97205, + "Directional": true + } + ] + }, + { + "ID": 9520, + "SourceStructureID": 5561, + "TargetStructureID": 97215, + "Label": "5561-97215 via BC Conventional Synapse from 97214 -> 97216", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97214, + "TargetID": 97216, + "Directional": true + } + ] + }, + { + "ID": 9521, + "SourceStructureID": 5561, + "TargetStructureID": 97347, + "Label": "5561-97347 via Ribbon Synapse from 46123 -> 97348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46123, + "TargetID": 97348, + "Directional": true + } + ] + }, + { + "ID": 9522, + "SourceStructureID": 5561, + "TargetStructureID": 97350, + "Label": "5561-97350 via Ribbon Synapse from 46123 -> 97351", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46123, + "TargetID": 97351, + "Directional": true + } + ] + }, + { + "ID": 9523, + "SourceStructureID": 5561, + "TargetStructureID": 97381, + "Label": "5561-97381 via BC Conventional Synapse from 97384 -> 97383", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97384, + "TargetID": 97383, + "Directional": true + } + ] + }, + { + "ID": 9524, + "SourceStructureID": 5561, + "TargetStructureID": 97391, + "Label": "5561-97391 via BC Conventional Synapse from 97393 -> 97392", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97393, + "TargetID": 97392, + "Directional": true + } + ] + }, + { + "ID": 9525, + "SourceStructureID": 5561, + "TargetStructureID": 97443, + "Label": "5561-97443 via Ribbon Synapse from 46212 -> 97444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46212, + "TargetID": 97444, + "Directional": true + } + ] + }, + { + "ID": 9526, + "SourceStructureID": 5561, + "TargetStructureID": 97445, + "Label": "5561-97445 via Ribbon Synapse from 46213 -> 97446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46213, + "TargetID": 97446, + "Directional": true + } + ] + }, + { + "ID": 9527, + "SourceStructureID": 5561, + "TargetStructureID": 97485, + "Label": "5561-97485 via Ribbon Synapse from 97472 -> 97487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97472, + "TargetID": 97487, + "Directional": true + } + ] + }, + { + "ID": 9528, + "SourceStructureID": 5561, + "TargetStructureID": 97486, + "Label": "5561-97486 via Ribbon Synapse from 97472 -> 97488", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97472, + "TargetID": 97488, + "Directional": true + } + ] + }, + { + "ID": 9529, + "SourceStructureID": 5561, + "TargetStructureID": 97492, + "Label": "5561-97492 via Ribbon Synapse from 97469 -> 97495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97469, + "TargetID": 97495, + "Directional": true + } + ] + }, + { + "ID": 9530, + "SourceStructureID": 5561, + "TargetStructureID": 97496, + "Label": "5561-97496 via Ribbon Synapse from 97469 -> 97497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97469, + "TargetID": 97497, + "Directional": true + } + ] + }, + { + "ID": 9531, + "SourceStructureID": 5561, + "TargetStructureID": 97503, + "Label": "5561-97503 via Ribbon Synapse from 46231 -> 97505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46231, + "TargetID": 97505, + "Directional": true + } + ] + }, + { + "ID": 9532, + "SourceStructureID": 5561, + "TargetStructureID": 97512, + "Label": "5561-97512 via Ribbon Synapse from 46259 -> 97513", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46259, + "TargetID": 97513, + "Directional": true + } + ] + }, + { + "ID": 9533, + "SourceStructureID": 5561, + "TargetStructureID": 97514, + "Label": "5561-97514 via Ribbon Synapse from 46258 -> 97517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46258, + "TargetID": 97517, + "Directional": true + } + ] + }, + { + "ID": 9534, + "SourceStructureID": 5561, + "TargetStructureID": 97515, + "Label": "5561-97515 via Ribbon Synapse from 46258 -> 97516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46258, + "TargetID": 97516, + "Directional": true + } + ] + }, + { + "ID": 9535, + "SourceStructureID": 5561, + "TargetStructureID": 97518, + "Label": "5561-97518 via Ribbon Synapse from 46259 -> 97519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46259, + "TargetID": 97519, + "Directional": true + } + ] + }, + { + "ID": 9536, + "SourceStructureID": 5561, + "TargetStructureID": 97558, + "Label": "5561-97558 via Ribbon Synapse from 46251 -> 97566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46251, + "TargetID": 97566, + "Directional": true + } + ] + }, + { + "ID": 9537, + "SourceStructureID": 5561, + "TargetStructureID": 97559, + "Label": "5561-97559 via Ribbon Synapse from 46246 -> 97562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46246, + "TargetID": 97562, + "Directional": true + } + ] + }, + { + "ID": 9538, + "SourceStructureID": 5561, + "TargetStructureID": 97560, + "Label": "5561-97560 via Ribbon Synapse from 46246 -> 97561", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46246, + "TargetID": 97561, + "Directional": true + } + ] + }, + { + "ID": 9539, + "SourceStructureID": 5561, + "TargetStructureID": 97584, + "Label": "5561-97584 via Ribbon Synapse from 46251 -> 97589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46251, + "TargetID": 97589, + "Directional": true + } + ] + }, + { + "ID": 9540, + "SourceStructureID": 5561, + "TargetStructureID": 97636, + "Label": "5561-97636 via BC Conventional Synapse from 97635 -> 97637", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97635, + "TargetID": 97637, + "Directional": true + } + ] + }, + { + "ID": 9541, + "SourceStructureID": 5561, + "TargetStructureID": 97653, + "Label": "5561-97653 via Ribbon Synapse from 46309 -> 97654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46309, + "TargetID": 97654, + "Directional": true + } + ] + }, + { + "ID": 9542, + "SourceStructureID": 5561, + "TargetStructureID": 97684, + "Label": "5561-97684 via Ribbon Synapse from 48984 -> 97686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48984, + "TargetID": 97686, + "Directional": true + } + ] + }, + { + "ID": 9543, + "SourceStructureID": 5561, + "TargetStructureID": 97707, + "Label": "5561-97707 via Ribbon Synapse from 97705 -> 97708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97705, + "TargetID": 97708, + "Directional": true + } + ] + }, + { + "ID": 9544, + "SourceStructureID": 5561, + "TargetStructureID": 97709, + "Label": "5561-97709 via Ribbon Synapse from 97705 -> 97710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97705, + "TargetID": 97710, + "Directional": true + } + ] + }, + { + "ID": 9545, + "SourceStructureID": 5562, + "TargetStructureID": 5117, + "Label": "5562-5117 via BC Conventional Synapse from 77532 -> 65513", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77532, + "TargetID": 65513, + "Directional": true + } + ] + }, + { + "ID": 9546, + "SourceStructureID": 5562, + "TargetStructureID": 5117, + "Label": "5562-5117 via Ribbon Synapse from 65511 -> 65510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65511, + "TargetID": 65510, + "Directional": true + } + ] + }, + { + "ID": 9547, + "SourceStructureID": 5562, + "TargetStructureID": 5294, + "Label": "5562-5294 via Ribbon Synapse from 32337 -> 32336, 37649 -> 32336, 37650 -> 32336, 37651 -> 32336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32337, + "TargetID": 32336, + "Directional": true + }, + { + "SourceID": 37649, + "TargetID": 32336, + "Directional": true + }, + { + "SourceID": 37650, + "TargetID": 32336, + "Directional": true + }, + { + "SourceID": 37651, + "TargetID": 32336, + "Directional": true + } + ] + }, + { + "ID": 9548, + "SourceStructureID": 5562, + "TargetStructureID": 8576, + "Label": "5562-8576 via Ribbon Synapse from 20060 -> 20059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20060, + "TargetID": 20059, + "Directional": true + } + ] + }, + { + "ID": 9549, + "SourceStructureID": 5562, + "TargetStructureID": 18282, + "Label": "5562-18282 via Ribbon Synapse from 31445 -> 31443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31445, + "TargetID": 31443, + "Directional": true + } + ] + }, + { + "ID": 9550, + "SourceStructureID": 5562, + "TargetStructureID": 24148, + "Label": "5562-24148 via Ribbon Synapse from 48948 -> 147570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48948, + "TargetID": 147570, + "Directional": true + } + ] + }, + { + "ID": 9551, + "SourceStructureID": 5562, + "TargetStructureID": 31024, + "Label": "5562-31024 via Ribbon Synapse from 31044 -> 31043, 31051 -> 31159, 31064 -> 31047, 31359 -> 31160, 49518 -> 78898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31044, + "TargetID": 31043, + "Directional": true + }, + { + "SourceID": 31051, + "TargetID": 31159, + "Directional": true + }, + { + "SourceID": 31064, + "TargetID": 31047, + "Directional": true + }, + { + "SourceID": 31359, + "TargetID": 31160, + "Directional": true + }, + { + "SourceID": 49518, + "TargetID": 78898, + "Directional": true + } + ] + }, + { + "ID": 9552, + "SourceStructureID": 5562, + "TargetStructureID": 33092, + "Label": "5562-33092 via Ribbon Synapse from 25324 -> 38292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25324, + "TargetID": 38292, + "Directional": true + } + ] + }, + { + "ID": 9553, + "SourceStructureID": 5562, + "TargetStructureID": 36516, + "Label": "5562-36516 via Ribbon Synapse from 33096 -> 36612, 36522 -> 36521", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33096, + "TargetID": 36612, + "Directional": true + }, + { + "SourceID": 36522, + "TargetID": 36521, + "Directional": true + } + ] + }, + { + "ID": 9554, + "SourceStructureID": 5562, + "TargetStructureID": 58696, + "Label": "5562-58696 via Ribbon Synapse from 63787 -> 86968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63787, + "TargetID": 86968, + "Directional": true + } + ] + }, + { + "ID": 9555, + "SourceStructureID": 5562, + "TargetStructureID": 61816, + "Label": "5562-61816 via Ribbon Synapse from 31291 -> 116712, 63215 -> 80727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31291, + "TargetID": 116712, + "Directional": true + }, + { + "SourceID": 63215, + "TargetID": 80727, + "Directional": true + } + ] + }, + { + "ID": 9556, + "SourceStructureID": 5562, + "TargetStructureID": 63274, + "Label": "5562-63274 via BC Conventional Synapse from 80345 -> 80343", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80345, + "TargetID": 80343, + "Directional": true + } + ] + }, + { + "ID": 9557, + "SourceStructureID": 5562, + "TargetStructureID": 63371, + "Label": "5562-63371 via BC Conventional Synapse from 63382 -> 63380, 77165 -> 63387", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63382, + "TargetID": 63380, + "Directional": true + }, + { + "SourceID": 77165, + "TargetID": 63387, + "Directional": true + } + ] + }, + { + "ID": 9558, + "SourceStructureID": 5562, + "TargetStructureID": 63371, + "Label": "5562-63371 via Ribbon Synapse from 31299 -> 63388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31299, + "TargetID": 63388, + "Directional": true + } + ] + }, + { + "ID": 9559, + "SourceStructureID": 5562, + "TargetStructureID": 65351, + "Label": "5562-65351 via Ribbon Synapse from 77245 -> 78959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77245, + "TargetID": 78959, + "Directional": true + } + ] + }, + { + "ID": 9560, + "SourceStructureID": 5562, + "TargetStructureID": 65366, + "Label": "5562-65366 via Ribbon Synapse from 49516 -> 78911, 49516 -> 78912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49516, + "TargetID": 78911, + "Directional": true + }, + { + "SourceID": 49516, + "TargetID": 78912, + "Directional": true + } + ] + }, + { + "ID": 9561, + "SourceStructureID": 5562, + "TargetStructureID": 66958, + "Label": "5562-66958 via Ribbon Synapse from 63876 -> 79633", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63876, + "TargetID": 79633, + "Directional": true + } + ] + }, + { + "ID": 9562, + "SourceStructureID": 5562, + "TargetStructureID": 67269, + "Label": "5562-67269 via Ribbon Synapse from 63237 -> 69640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63237, + "TargetID": 69640, + "Directional": true + } + ] + }, + { + "ID": 9563, + "SourceStructureID": 5562, + "TargetStructureID": 68480, + "Label": "5562-68480 via Ribbon Synapse from 65511 -> 79641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65511, + "TargetID": 79641, + "Directional": true + } + ] + }, + { + "ID": 9564, + "SourceStructureID": 5562, + "TargetStructureID": 69049, + "Label": "5562-69049 via Ribbon Synapse from 40289 -> 76436, 63267 -> 69060, 63355 -> 69057", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40289, + "TargetID": 76436, + "Directional": true + }, + { + "SourceID": 63267, + "TargetID": 69060, + "Directional": true + }, + { + "SourceID": 63355, + "TargetID": 69057, + "Directional": true + } + ] + }, + { + "ID": 9565, + "SourceStructureID": 5562, + "TargetStructureID": 69926, + "Label": "5562-69926 via Ribbon Synapse from 48959 -> 72852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48959, + "TargetID": 72852, + "Directional": true + } + ] + }, + { + "ID": 9566, + "SourceStructureID": 5562, + "TargetStructureID": 69930, + "Label": "5562-69930 via Ribbon Synapse from 48959 -> 79638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48959, + "TargetID": 79638, + "Directional": true + } + ] + }, + { + "ID": 9567, + "SourceStructureID": 5562, + "TargetStructureID": 76228, + "Label": "5562-76228 via Ribbon Synapse from 37636 -> 76229, 37638 -> 76229, 37639 -> 76229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37636, + "TargetID": 76229, + "Directional": true + }, + { + "SourceID": 37638, + "TargetID": 76229, + "Directional": true + }, + { + "SourceID": 37639, + "TargetID": 76229, + "Directional": true + } + ] + }, + { + "ID": 9568, + "SourceStructureID": 5562, + "TargetStructureID": 76230, + "Label": "5562-76230 via Ribbon Synapse from 37637 -> 76231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37637, + "TargetID": 76231, + "Directional": true + } + ] + }, + { + "ID": 9569, + "SourceStructureID": 5562, + "TargetStructureID": 76233, + "Label": "5562-76233 via Ribbon Synapse from 37641 -> 76234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37641, + "TargetID": 76234, + "Directional": true + } + ] + }, + { + "ID": 9570, + "SourceStructureID": 5562, + "TargetStructureID": 76235, + "Label": "5562-76235 via BC Conventional Synapse from 76238 -> 76239", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76238, + "TargetID": 76239, + "Directional": true + } + ] + }, + { + "ID": 9571, + "SourceStructureID": 5562, + "TargetStructureID": 76235, + "Label": "5562-76235 via Ribbon Synapse from 37642 -> 76236, 37643 -> 76236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37642, + "TargetID": 76236, + "Directional": true + }, + { + "SourceID": 37643, + "TargetID": 76236, + "Directional": true + } + ] + }, + { + "ID": 9572, + "SourceStructureID": 5562, + "TargetStructureID": 76240, + "Label": "5562-76240 via Ribbon Synapse from 37644 -> 76241, 37644 -> 76242, 37645 -> 76242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37644, + "TargetID": 76241, + "Directional": true + }, + { + "SourceID": 37644, + "TargetID": 76242, + "Directional": true + }, + { + "SourceID": 37645, + "TargetID": 76242, + "Directional": true + } + ] + }, + { + "ID": 9573, + "SourceStructureID": 5562, + "TargetStructureID": 76243, + "Label": "5562-76243 via Ribbon Synapse from 63049 -> 76244", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63049, + "TargetID": 76244, + "Directional": true + } + ] + }, + { + "ID": 9574, + "SourceStructureID": 5562, + "TargetStructureID": 76245, + "Label": "5562-76245 via Ribbon Synapse from 63049 -> 76246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63049, + "TargetID": 76246, + "Directional": true + } + ] + }, + { + "ID": 9575, + "SourceStructureID": 5562, + "TargetStructureID": 76247, + "Label": "5562-76247 via Ribbon Synapse from 37647 -> 76250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37647, + "TargetID": 76250, + "Directional": true + } + ] + }, + { + "ID": 9576, + "SourceStructureID": 5562, + "TargetStructureID": 76251, + "Label": "5562-76251 via Ribbon Synapse from 37649 -> 76252, 37650 -> 76252, 37651 -> 76252, 37652 -> 76252, 37652 -> 76261, 159287 -> 76252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37649, + "TargetID": 76252, + "Directional": true + }, + { + "SourceID": 37650, + "TargetID": 76252, + "Directional": true + }, + { + "SourceID": 37651, + "TargetID": 76252, + "Directional": true + }, + { + "SourceID": 37652, + "TargetID": 76252, + "Directional": true + }, + { + "SourceID": 37652, + "TargetID": 76261, + "Directional": true + }, + { + "SourceID": 159287, + "TargetID": 76252, + "Directional": true + } + ] + }, + { + "ID": 9577, + "SourceStructureID": 5562, + "TargetStructureID": 76255, + "Label": "5562-76255 via Ribbon Synapse from 37652 -> 76260, 37653 -> 76265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37652, + "TargetID": 76260, + "Directional": true + }, + { + "SourceID": 37653, + "TargetID": 76265, + "Directional": true + } + ] + }, + { + "ID": 9578, + "SourceStructureID": 5562, + "TargetStructureID": 76262, + "Label": "5562-76262 via BC Conventional Synapse from 76264 -> 76263", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76264, + "TargetID": 76263, + "Directional": true + } + ] + }, + { + "ID": 9579, + "SourceStructureID": 5562, + "TargetStructureID": 76275, + "Label": "5562-76275 via Ribbon Synapse from 40294 -> 76276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40294, + "TargetID": 76276, + "Directional": true + } + ] + }, + { + "ID": 9580, + "SourceStructureID": 5562, + "TargetStructureID": 76277, + "Label": "5562-76277 via Ribbon Synapse from 40294 -> 76278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40294, + "TargetID": 76278, + "Directional": true + } + ] + }, + { + "ID": 9581, + "SourceStructureID": 5562, + "TargetStructureID": 76291, + "Label": "5562-76291 via Ribbon Synapse from 40287 -> 76293", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40287, + "TargetID": 76293, + "Directional": true + } + ] + }, + { + "ID": 9582, + "SourceStructureID": 5562, + "TargetStructureID": 76294, + "Label": "5562-76294 via Ribbon Synapse from 40286 -> 76295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40286, + "TargetID": 76295, + "Directional": true + } + ] + }, + { + "ID": 9583, + "SourceStructureID": 5562, + "TargetStructureID": 76296, + "Label": "5562-76296 via Ribbon Synapse from 40286 -> 76297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40286, + "TargetID": 76297, + "Directional": true + } + ] + }, + { + "ID": 9584, + "SourceStructureID": 5562, + "TargetStructureID": 76302, + "Label": "5562-76302 via Ribbon Synapse from 40283 -> 76305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40283, + "TargetID": 76305, + "Directional": true + } + ] + }, + { + "ID": 9585, + "SourceStructureID": 5562, + "TargetStructureID": 76310, + "Label": "5562-76310 via Ribbon Synapse from 40285 -> 76312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40285, + "TargetID": 76312, + "Directional": true + } + ] + }, + { + "ID": 9586, + "SourceStructureID": 5562, + "TargetStructureID": 76311, + "Label": "5562-76311 via Ribbon Synapse from 40285 -> 76313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40285, + "TargetID": 76313, + "Directional": true + } + ] + }, + { + "ID": 9587, + "SourceStructureID": 5562, + "TargetStructureID": 76317, + "Label": "5562-76317 via Ribbon Synapse from 40282 -> 76318", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40282, + "TargetID": 76318, + "Directional": true + } + ] + }, + { + "ID": 9588, + "SourceStructureID": 5562, + "TargetStructureID": 76319, + "Label": "5562-76319 via BC Conventional Synapse from 76320 -> 76321", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76320, + "TargetID": 76321, + "Directional": true + } + ] + }, + { + "ID": 9589, + "SourceStructureID": 5562, + "TargetStructureID": 76322, + "Label": "5562-76322 via Ribbon Synapse from 40281 -> 76327", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40281, + "TargetID": 76327, + "Directional": true + } + ] + }, + { + "ID": 9590, + "SourceStructureID": 5562, + "TargetStructureID": 76323, + "Label": "5562-76323 via Ribbon Synapse from 40281 -> 76325", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40281, + "TargetID": 76325, + "Directional": true + } + ] + }, + { + "ID": 9591, + "SourceStructureID": 5562, + "TargetStructureID": 76324, + "Label": "5562-76324 via Ribbon Synapse from 40281 -> 76326", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40281, + "TargetID": 76326, + "Directional": true + } + ] + }, + { + "ID": 9592, + "SourceStructureID": 5562, + "TargetStructureID": 76336, + "Label": "5562-76336 via Ribbon Synapse from 40280 -> 76339", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40280, + "TargetID": 76339, + "Directional": true + } + ] + }, + { + "ID": 9593, + "SourceStructureID": 5562, + "TargetStructureID": 76337, + "Label": "5562-76337 via Ribbon Synapse from 40280 -> 76338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40280, + "TargetID": 76338, + "Directional": true + } + ] + }, + { + "ID": 9594, + "SourceStructureID": 5562, + "TargetStructureID": 76340, + "Label": "5562-76340 via Ribbon Synapse from 40280 -> 76341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40280, + "TargetID": 76341, + "Directional": true + } + ] + }, + { + "ID": 9595, + "SourceStructureID": 5562, + "TargetStructureID": 76365, + "Label": "5562-76365 via Ribbon Synapse from 40275 -> 76366", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40275, + "TargetID": 76366, + "Directional": true + } + ] + }, + { + "ID": 9596, + "SourceStructureID": 5562, + "TargetStructureID": 76367, + "Label": "5562-76367 via BC Conventional Synapse from 76369 -> 76370", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76369, + "TargetID": 76370, + "Directional": true + } + ] + }, + { + "ID": 9597, + "SourceStructureID": 5562, + "TargetStructureID": 76384, + "Label": "5562-76384 via Ribbon Synapse from 31044 -> 76385", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31044, + "TargetID": 76385, + "Directional": true + } + ] + }, + { + "ID": 9598, + "SourceStructureID": 5562, + "TargetStructureID": 76391, + "Label": "5562-76391 via Ribbon Synapse from 40270 -> 76393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40270, + "TargetID": 76393, + "Directional": true + } + ] + }, + { + "ID": 9599, + "SourceStructureID": 5562, + "TargetStructureID": 76394, + "Label": "5562-76394 via Ribbon Synapse from 40270 -> 76395", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40270, + "TargetID": 76395, + "Directional": true + } + ] + }, + { + "ID": 9600, + "SourceStructureID": 5562, + "TargetStructureID": 76403, + "Label": "5562-76403 via BC Conventional Synapse from 76404 -> 76405", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76404, + "TargetID": 76405, + "Directional": true + } + ] + }, + { + "ID": 9601, + "SourceStructureID": 5562, + "TargetStructureID": 76406, + "Label": "5562-76406 via Ribbon Synapse from 40269 -> 76408", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40269, + "TargetID": 76408, + "Directional": true + } + ] + }, + { + "ID": 9602, + "SourceStructureID": 5562, + "TargetStructureID": 76409, + "Label": "5562-76409 via Ribbon Synapse from 40267 -> 76416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40267, + "TargetID": 76416, + "Directional": true + } + ] + }, + { + "ID": 9603, + "SourceStructureID": 5562, + "TargetStructureID": 76414, + "Label": "5562-76414 via Ribbon Synapse from 40267 -> 76415", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40267, + "TargetID": 76415, + "Directional": true + } + ] + }, + { + "ID": 9604, + "SourceStructureID": 5562, + "TargetStructureID": 76419, + "Label": "5562-76419 via Ribbon Synapse from 40267 -> 76420", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40267, + "TargetID": 76420, + "Directional": true + } + ] + }, + { + "ID": 9605, + "SourceStructureID": 5562, + "TargetStructureID": 76430, + "Label": "5562-76430 via Ribbon Synapse from 40289 -> 76434", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40289, + "TargetID": 76434, + "Directional": true + } + ] + }, + { + "ID": 9606, + "SourceStructureID": 5562, + "TargetStructureID": 76432, + "Label": "5562-76432 via Ribbon Synapse from 40289 -> 76437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40289, + "TargetID": 76437, + "Directional": true + } + ] + }, + { + "ID": 9607, + "SourceStructureID": 5562, + "TargetStructureID": 76433, + "Label": "5562-76433 via Ribbon Synapse from 40289 -> 76435", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40289, + "TargetID": 76435, + "Directional": true + } + ] + }, + { + "ID": 9608, + "SourceStructureID": 5562, + "TargetStructureID": 76446, + "Label": "5562-76446 via Ribbon Synapse from 76514 -> 76515", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76514, + "TargetID": 76515, + "Directional": true + } + ] + }, + { + "ID": 9609, + "SourceStructureID": 5562, + "TargetStructureID": 76450, + "Label": "5562-76450 via Ribbon Synapse from 40292 -> 76451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40292, + "TargetID": 76451, + "Directional": true + } + ] + }, + { + "ID": 9610, + "SourceStructureID": 5562, + "TargetStructureID": 76452, + "Label": "5562-76452 via Ribbon Synapse from 40292 -> 76453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40292, + "TargetID": 76453, + "Directional": true + } + ] + }, + { + "ID": 9611, + "SourceStructureID": 5562, + "TargetStructureID": 76457, + "Label": "5562-76457 via BC Conventional Synapse from 76456 -> 76458", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76456, + "TargetID": 76458, + "Directional": true + } + ] + }, + { + "ID": 9612, + "SourceStructureID": 5562, + "TargetStructureID": 76510, + "Label": "5562-76510 via Unknown from 76509 -> 76511", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 76509, + "TargetID": 76511, + "Directional": true + } + ] + }, + { + "ID": 9613, + "SourceStructureID": 5562, + "TargetStructureID": 76526, + "Label": "5562-76526 via Ribbon Synapse from 49397 -> 76527", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49397, + "TargetID": 76527, + "Directional": true + } + ] + }, + { + "ID": 9614, + "SourceStructureID": 5562, + "TargetStructureID": 76531, + "Label": "5562-76531 via Ribbon Synapse from 49397 -> 76532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49397, + "TargetID": 76532, + "Directional": true + } + ] + }, + { + "ID": 9615, + "SourceStructureID": 5562, + "TargetStructureID": 76545, + "Label": "5562-76545 via Ribbon Synapse from 63212 -> 76546", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63212, + "TargetID": 76546, + "Directional": true + } + ] + }, + { + "ID": 9616, + "SourceStructureID": 5562, + "TargetStructureID": 76548, + "Label": "5562-76548 via Ribbon Synapse from 63211 -> 76549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63211, + "TargetID": 76549, + "Directional": true + } + ] + }, + { + "ID": 9617, + "SourceStructureID": 5562, + "TargetStructureID": 76561, + "Label": "5562-76561 via BC Conventional Synapse from 76560 -> 76562", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76560, + "TargetID": 76562, + "Directional": true + } + ] + }, + { + "ID": 9618, + "SourceStructureID": 5562, + "TargetStructureID": 76573, + "Label": "5562-76573 via Ribbon Synapse from 49395 -> 76575", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49395, + "TargetID": 76575, + "Directional": true + } + ] + }, + { + "ID": 9619, + "SourceStructureID": 5562, + "TargetStructureID": 76574, + "Label": "5562-76574 via Ribbon Synapse from 49395 -> 76576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49395, + "TargetID": 76576, + "Directional": true + } + ] + }, + { + "ID": 9620, + "SourceStructureID": 5562, + "TargetStructureID": 76593, + "Label": "5562-76593 via Ribbon Synapse from 49393 -> 76602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49393, + "TargetID": 76602, + "Directional": true + } + ] + }, + { + "ID": 9621, + "SourceStructureID": 5562, + "TargetStructureID": 76600, + "Label": "5562-76600 via Ribbon Synapse from 49393 -> 76601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49393, + "TargetID": 76601, + "Directional": true + } + ] + }, + { + "ID": 9622, + "SourceStructureID": 5562, + "TargetStructureID": 76610, + "Label": "5562-76610 via Unknown from 76608 -> 76611", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 76608, + "TargetID": 76611, + "Directional": true + } + ] + }, + { + "ID": 9623, + "SourceStructureID": 5562, + "TargetStructureID": 76619, + "Label": "5562-76619 via Ribbon Synapse from 63215 -> 76624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63215, + "TargetID": 76624, + "Directional": true + } + ] + }, + { + "ID": 9624, + "SourceStructureID": 5562, + "TargetStructureID": 76620, + "Label": "5562-76620 via Ribbon Synapse from 63215 -> 76623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63215, + "TargetID": 76623, + "Directional": true + } + ] + }, + { + "ID": 9625, + "SourceStructureID": 5562, + "TargetStructureID": 76625, + "Label": "5562-76625 via BC Conventional Synapse from 76626 -> 76627", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76626, + "TargetID": 76627, + "Directional": true + } + ] + }, + { + "ID": 9626, + "SourceStructureID": 5562, + "TargetStructureID": 76646, + "Label": "5562-76646 via Ribbon Synapse from 49392 -> 76647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49392, + "TargetID": 76647, + "Directional": true + } + ] + }, + { + "ID": 9627, + "SourceStructureID": 5562, + "TargetStructureID": 76653, + "Label": "5562-76653 via BC Conventional Synapse from 76652 -> 92085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76652, + "TargetID": 92085, + "Directional": true + } + ] + }, + { + "ID": 9628, + "SourceStructureID": 5562, + "TargetStructureID": 76663, + "Label": "5562-76663 via Ribbon Synapse from 31301 -> 76664", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31301, + "TargetID": 76664, + "Directional": true + } + ] + }, + { + "ID": 9629, + "SourceStructureID": 5562, + "TargetStructureID": 76665, + "Label": "5562-76665 via Ribbon Synapse from 31301 -> 76666", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31301, + "TargetID": 76666, + "Directional": true + } + ] + }, + { + "ID": 9630, + "SourceStructureID": 5562, + "TargetStructureID": 76671, + "Label": "5562-76671 via BC Conventional Synapse from 76672 -> 76673", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76672, + "TargetID": 76673, + "Directional": true + } + ] + }, + { + "ID": 9631, + "SourceStructureID": 5562, + "TargetStructureID": 76677, + "Label": "5562-76677 via Ribbon Synapse from 76676 -> 76679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76676, + "TargetID": 76679, + "Directional": true + } + ] + }, + { + "ID": 9632, + "SourceStructureID": 5562, + "TargetStructureID": 76704, + "Label": "5562-76704 via BC Conventional Synapse from 76705 -> 76706", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76705, + "TargetID": 76706, + "Directional": true + } + ] + }, + { + "ID": 9633, + "SourceStructureID": 5562, + "TargetStructureID": 76711, + "Label": "5562-76711 via Ribbon Synapse from 49391 -> 76712", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49391, + "TargetID": 76712, + "Directional": true + } + ] + }, + { + "ID": 9634, + "SourceStructureID": 5562, + "TargetStructureID": 76724, + "Label": "5562-76724 via Ribbon Synapse from 47311 -> 76716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47311, + "TargetID": 76716, + "Directional": true + } + ] + }, + { + "ID": 9635, + "SourceStructureID": 5562, + "TargetStructureID": 76730, + "Label": "5562-76730 via Ribbon Synapse from 47359 -> 76731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47359, + "TargetID": 76731, + "Directional": true + } + ] + }, + { + "ID": 9636, + "SourceStructureID": 5562, + "TargetStructureID": 76732, + "Label": "5562-76732 via Ribbon Synapse from 47359 -> 76734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47359, + "TargetID": 76734, + "Directional": true + } + ] + }, + { + "ID": 9637, + "SourceStructureID": 5562, + "TargetStructureID": 76904, + "Label": "5562-76904 via Ribbon Synapse from 47305 -> 76905", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47305, + "TargetID": 76905, + "Directional": true + } + ] + }, + { + "ID": 9638, + "SourceStructureID": 5562, + "TargetStructureID": 76917, + "Label": "5562-76917 via Ribbon Synapse from 134311 -> 76918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134311, + "TargetID": 76918, + "Directional": true + } + ] + }, + { + "ID": 9639, + "SourceStructureID": 5562, + "TargetStructureID": 76956, + "Label": "5562-76956 via Ribbon Synapse from 63233 -> 76957", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63233, + "TargetID": 76957, + "Directional": true + } + ] + }, + { + "ID": 9640, + "SourceStructureID": 5562, + "TargetStructureID": 77103, + "Label": "5562-77103 via Ribbon Synapse from 63233 -> 77104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63233, + "TargetID": 77104, + "Directional": true + } + ] + }, + { + "ID": 9641, + "SourceStructureID": 5562, + "TargetStructureID": 77105, + "Label": "5562-77105 via Ribbon Synapse from 63233 -> 77106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63233, + "TargetID": 77106, + "Directional": true + } + ] + }, + { + "ID": 9642, + "SourceStructureID": 5562, + "TargetStructureID": 77109, + "Label": "5562-77109 via Ribbon Synapse from 63230 -> 77112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63230, + "TargetID": 77112, + "Directional": true + } + ] + }, + { + "ID": 9643, + "SourceStructureID": 5562, + "TargetStructureID": 77110, + "Label": "5562-77110 via Ribbon Synapse from 63230 -> 77111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63230, + "TargetID": 77111, + "Directional": true + } + ] + }, + { + "ID": 9644, + "SourceStructureID": 5562, + "TargetStructureID": 77130, + "Label": "5562-77130 via Ribbon Synapse from 31296 -> 77131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31296, + "TargetID": 77131, + "Directional": true + } + ] + }, + { + "ID": 9645, + "SourceStructureID": 5562, + "TargetStructureID": 77132, + "Label": "5562-77132 via Ribbon Synapse from 31296 -> 77133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31296, + "TargetID": 77133, + "Directional": true + } + ] + }, + { + "ID": 9646, + "SourceStructureID": 5562, + "TargetStructureID": 77134, + "Label": "5562-77134 via BC Conventional Synapse from 77136 -> 77135", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77136, + "TargetID": 77135, + "Directional": true + } + ] + }, + { + "ID": 9647, + "SourceStructureID": 5562, + "TargetStructureID": 77137, + "Label": "5562-77137 via Ribbon Synapse from 134318 -> 134320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134318, + "TargetID": 134320, + "Directional": true + } + ] + }, + { + "ID": 9648, + "SourceStructureID": 5562, + "TargetStructureID": 77149, + "Label": "5562-77149 via BC Conventional Synapse from 81505 -> 81506", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81505, + "TargetID": 81506, + "Directional": true + } + ] + }, + { + "ID": 9649, + "SourceStructureID": 5562, + "TargetStructureID": 77172, + "Label": "5562-77172 via Ribbon Synapse from 77205 -> 77208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77205, + "TargetID": 77208, + "Directional": true + } + ] + }, + { + "ID": 9650, + "SourceStructureID": 5562, + "TargetStructureID": 77175, + "Label": "5562-77175 via Ribbon Synapse from 31291 -> 77176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31291, + "TargetID": 77176, + "Directional": true + } + ] + }, + { + "ID": 9651, + "SourceStructureID": 5562, + "TargetStructureID": 77183, + "Label": "5562-77183 via Ribbon Synapse from 31293 -> 77184", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31293, + "TargetID": 77184, + "Directional": true + } + ] + }, + { + "ID": 9652, + "SourceStructureID": 5562, + "TargetStructureID": 77186, + "Label": "5562-77186 via Ribbon Synapse from 134318 -> 134319", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134318, + "TargetID": 134319, + "Directional": true + } + ] + }, + { + "ID": 9653, + "SourceStructureID": 5562, + "TargetStructureID": 77206, + "Label": "5562-77206 via Ribbon Synapse from 77205 -> 77207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77205, + "TargetID": 77207, + "Directional": true + } + ] + }, + { + "ID": 9654, + "SourceStructureID": 5562, + "TargetStructureID": 77212, + "Label": "5562-77212 via Ribbon Synapse from 77213 -> 77214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77213, + "TargetID": 77214, + "Directional": true + } + ] + }, + { + "ID": 9655, + "SourceStructureID": 5562, + "TargetStructureID": 77215, + "Label": "5562-77215 via Ribbon Synapse from 77213 -> 77216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77213, + "TargetID": 77216, + "Directional": true + } + ] + }, + { + "ID": 9656, + "SourceStructureID": 5562, + "TargetStructureID": 77228, + "Label": "5562-77228 via Ribbon Synapse from 77231 -> 77234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77231, + "TargetID": 77234, + "Directional": true + } + ] + }, + { + "ID": 9657, + "SourceStructureID": 5562, + "TargetStructureID": 77232, + "Label": "5562-77232 via Ribbon Synapse from 77231 -> 77233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77231, + "TargetID": 77233, + "Directional": true + } + ] + }, + { + "ID": 9658, + "SourceStructureID": 5562, + "TargetStructureID": 77246, + "Label": "5562-77246 via Ribbon Synapse from 77245 -> 77247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77245, + "TargetID": 77247, + "Directional": true + } + ] + }, + { + "ID": 9659, + "SourceStructureID": 5562, + "TargetStructureID": 77259, + "Label": "5562-77259 via Unknown from 77258 -> 77260", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 77258, + "TargetID": 77260, + "Directional": true + } + ] + }, + { + "ID": 9660, + "SourceStructureID": 5562, + "TargetStructureID": 77272, + "Label": "5562-77272 via Ribbon Synapse from 49562 -> 77273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49562, + "TargetID": 77273, + "Directional": true + } + ] + }, + { + "ID": 9661, + "SourceStructureID": 5562, + "TargetStructureID": 77274, + "Label": "5562-77274 via Ribbon Synapse from 49562 -> 77275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49562, + "TargetID": 77275, + "Directional": true + } + ] + }, + { + "ID": 9662, + "SourceStructureID": 5562, + "TargetStructureID": 77276, + "Label": "5562-77276 via Ribbon Synapse from 49562 -> 77277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49562, + "TargetID": 77277, + "Directional": true + } + ] + }, + { + "ID": 9663, + "SourceStructureID": 5562, + "TargetStructureID": 77304, + "Label": "5562-77304 via Ribbon Synapse from 49559 -> 77307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49559, + "TargetID": 77307, + "Directional": true + } + ] + }, + { + "ID": 9664, + "SourceStructureID": 5562, + "TargetStructureID": 77305, + "Label": "5562-77305 via Ribbon Synapse from 49559 -> 77306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49559, + "TargetID": 77306, + "Directional": true + } + ] + }, + { + "ID": 9665, + "SourceStructureID": 5562, + "TargetStructureID": 77313, + "Label": "5562-77313 via BC Conventional Synapse from 77315 -> 77314", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77315, + "TargetID": 77314, + "Directional": true + } + ] + }, + { + "ID": 9666, + "SourceStructureID": 5562, + "TargetStructureID": 77316, + "Label": "5562-77316 via Ribbon Synapse from 25324 -> 77320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25324, + "TargetID": 77320, + "Directional": true + } + ] + }, + { + "ID": 9667, + "SourceStructureID": 5562, + "TargetStructureID": 77321, + "Label": "5562-77321 via Ribbon Synapse from 25324 -> 77322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25324, + "TargetID": 77322, + "Directional": true + } + ] + }, + { + "ID": 9668, + "SourceStructureID": 5562, + "TargetStructureID": 77441, + "Label": "5562-77441 via Ribbon Synapse from 49563 -> 77443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49563, + "TargetID": 77443, + "Directional": true + } + ] + }, + { + "ID": 9669, + "SourceStructureID": 5562, + "TargetStructureID": 77463, + "Label": "5562-77463 via Ribbon Synapse from 77467 -> 77468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77467, + "TargetID": 77468, + "Directional": true + } + ] + }, + { + "ID": 9670, + "SourceStructureID": 5562, + "TargetStructureID": 77479, + "Label": "5562-77479 via Ribbon Synapse from 77471 -> 77480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77471, + "TargetID": 77480, + "Directional": true + } + ] + }, + { + "ID": 9671, + "SourceStructureID": 5562, + "TargetStructureID": 77481, + "Label": "5562-77481 via Ribbon Synapse from 77471 -> 77482", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77471, + "TargetID": 77482, + "Directional": true + } + ] + }, + { + "ID": 9672, + "SourceStructureID": 5562, + "TargetStructureID": 77487, + "Label": "5562-77487 via Ribbon Synapse from 77483 -> 77491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77483, + "TargetID": 77491, + "Directional": true + } + ] + }, + { + "ID": 9673, + "SourceStructureID": 5562, + "TargetStructureID": 77488, + "Label": "5562-77488 via Ribbon Synapse from 77483 -> 77489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77483, + "TargetID": 77489, + "Directional": true + } + ] + }, + { + "ID": 9674, + "SourceStructureID": 5562, + "TargetStructureID": 77490, + "Label": "5562-77490 via BC Conventional Synapse from 78320 -> 78321", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78320, + "TargetID": 78321, + "Directional": true + } + ] + }, + { + "ID": 9675, + "SourceStructureID": 5562, + "TargetStructureID": 77495, + "Label": "5562-77495 via Ribbon Synapse from 77494 -> 77498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77494, + "TargetID": 77498, + "Directional": true + } + ] + }, + { + "ID": 9676, + "SourceStructureID": 5562, + "TargetStructureID": 77496, + "Label": "5562-77496 via Ribbon Synapse from 77494 -> 77497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77494, + "TargetID": 77497, + "Directional": true + } + ] + }, + { + "ID": 9677, + "SourceStructureID": 5562, + "TargetStructureID": 77500, + "Label": "5562-77500 via Ribbon Synapse from 77499 -> 77501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77499, + "TargetID": 77501, + "Directional": true + } + ] + }, + { + "ID": 9678, + "SourceStructureID": 5562, + "TargetStructureID": 77502, + "Label": "5562-77502 via Ribbon Synapse from 77499 -> 77503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77499, + "TargetID": 77503, + "Directional": true + } + ] + }, + { + "ID": 9679, + "SourceStructureID": 5562, + "TargetStructureID": 77525, + "Label": "5562-77525 via Ribbon Synapse from 77526 -> 77527", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77526, + "TargetID": 77527, + "Directional": true + } + ] + }, + { + "ID": 9680, + "SourceStructureID": 5562, + "TargetStructureID": 77545, + "Label": "5562-77545 via Ribbon Synapse from 76853 -> 77546", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76853, + "TargetID": 77546, + "Directional": true + } + ] + }, + { + "ID": 9681, + "SourceStructureID": 5562, + "TargetStructureID": 77550, + "Label": "5562-77550 via BC Conventional Synapse from 77552 -> 77551", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77552, + "TargetID": 77551, + "Directional": true + } + ] + }, + { + "ID": 9682, + "SourceStructureID": 5562, + "TargetStructureID": 77589, + "Label": "5562-77589 via BC Conventional Synapse from 77591 -> 77592", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77591, + "TargetID": 77592, + "Directional": true + } + ] + }, + { + "ID": 9683, + "SourceStructureID": 5562, + "TargetStructureID": 77607, + "Label": "5562-77607 via Ribbon Synapse from 63252 -> 77608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63252, + "TargetID": 77608, + "Directional": true + } + ] + }, + { + "ID": 9684, + "SourceStructureID": 5562, + "TargetStructureID": 77612, + "Label": "5562-77612 via BC Conventional Synapse from 77723 -> 77724", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77723, + "TargetID": 77724, + "Directional": true + } + ] + }, + { + "ID": 9685, + "SourceStructureID": 5562, + "TargetStructureID": 77747, + "Label": "5562-77747 via BC Conventional Synapse from 77748 -> 77749", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77748, + "TargetID": 77749, + "Directional": true + } + ] + }, + { + "ID": 9686, + "SourceStructureID": 5562, + "TargetStructureID": 77756, + "Label": "5562-77756 via Ribbon Synapse from 63254 -> 77761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63254, + "TargetID": 77761, + "Directional": true + } + ] + }, + { + "ID": 9687, + "SourceStructureID": 5562, + "TargetStructureID": 77757, + "Label": "5562-77757 via Ribbon Synapse from 63254 -> 77760", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63254, + "TargetID": 77760, + "Directional": true + } + ] + }, + { + "ID": 9688, + "SourceStructureID": 5562, + "TargetStructureID": 77758, + "Label": "5562-77758 via Ribbon Synapse from 63254 -> 77759", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63254, + "TargetID": 77759, + "Directional": true + } + ] + }, + { + "ID": 9689, + "SourceStructureID": 5562, + "TargetStructureID": 77762, + "Label": "5562-77762 via Ribbon Synapse from 31051 -> 77763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31051, + "TargetID": 77763, + "Directional": true + } + ] + }, + { + "ID": 9690, + "SourceStructureID": 5562, + "TargetStructureID": 77764, + "Label": "5562-77764 via Ribbon Synapse from 31052 -> 77767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31052, + "TargetID": 77767, + "Directional": true + } + ] + }, + { + "ID": 9691, + "SourceStructureID": 5562, + "TargetStructureID": 77765, + "Label": "5562-77765 via Ribbon Synapse from 31052 -> 77766", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31052, + "TargetID": 77766, + "Directional": true + } + ] + }, + { + "ID": 9692, + "SourceStructureID": 5562, + "TargetStructureID": 77777, + "Label": "5562-77777 via Ribbon Synapse from 63256 -> 77778, 63256 -> 77779", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63256, + "TargetID": 77778, + "Directional": true + }, + { + "SourceID": 63256, + "TargetID": 77779, + "Directional": true + } + ] + }, + { + "ID": 9693, + "SourceStructureID": 5562, + "TargetStructureID": 77780, + "Label": "5562-77780 via Ribbon Synapse from 63256 -> 77781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63256, + "TargetID": 77781, + "Directional": true + } + ] + }, + { + "ID": 9694, + "SourceStructureID": 5562, + "TargetStructureID": 77792, + "Label": "5562-77792 via Ribbon Synapse from 63260 -> 77795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63260, + "TargetID": 77795, + "Directional": true + } + ] + }, + { + "ID": 9695, + "SourceStructureID": 5562, + "TargetStructureID": 77793, + "Label": "5562-77793 via Ribbon Synapse from 63260 -> 77794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63260, + "TargetID": 77794, + "Directional": true + } + ] + }, + { + "ID": 9696, + "SourceStructureID": 5562, + "TargetStructureID": 77800, + "Label": "5562-77800 via Ribbon Synapse from 63264 -> 77802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63264, + "TargetID": 77802, + "Directional": true + } + ] + }, + { + "ID": 9697, + "SourceStructureID": 5562, + "TargetStructureID": 77805, + "Label": "5562-77805 via Ribbon Synapse from 63262 -> 77806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63262, + "TargetID": 77806, + "Directional": true + } + ] + }, + { + "ID": 9698, + "SourceStructureID": 5562, + "TargetStructureID": 77807, + "Label": "5562-77807 via Ribbon Synapse from 37728 -> 77808", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37728, + "TargetID": 77808, + "Directional": true + } + ] + }, + { + "ID": 9699, + "SourceStructureID": 5562, + "TargetStructureID": 77809, + "Label": "5562-77809 via Ribbon Synapse from 37728 -> 77810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37728, + "TargetID": 77810, + "Directional": true + } + ] + }, + { + "ID": 9700, + "SourceStructureID": 5562, + "TargetStructureID": 77836, + "Label": "5562-77836 via Ribbon Synapse from 63267 -> 77837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63267, + "TargetID": 77837, + "Directional": true + } + ] + }, + { + "ID": 9701, + "SourceStructureID": 5562, + "TargetStructureID": 77840, + "Label": "5562-77840 via BC Conventional Synapse from 77860 -> 82414, 93084 -> 93083, 135142 -> 135143", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77860, + "TargetID": 82414, + "Directional": true + }, + { + "SourceID": 93084, + "TargetID": 93083, + "Directional": true + }, + { + "SourceID": 135142, + "TargetID": 135143, + "Directional": true + } + ] + }, + { + "ID": 9702, + "SourceStructureID": 5562, + "TargetStructureID": 77875, + "Label": "5562-77875 via Ribbon Synapse from 63276 -> 77878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63276, + "TargetID": 77878, + "Directional": true + } + ] + }, + { + "ID": 9703, + "SourceStructureID": 5562, + "TargetStructureID": 77876, + "Label": "5562-77876 via Ribbon Synapse from 63276 -> 77877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63276, + "TargetID": 77877, + "Directional": true + } + ] + }, + { + "ID": 9704, + "SourceStructureID": 5562, + "TargetStructureID": 77896, + "Label": "5562-77896 via Ribbon Synapse from 63279 -> 77897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63279, + "TargetID": 77897, + "Directional": true + } + ] + }, + { + "ID": 9705, + "SourceStructureID": 5562, + "TargetStructureID": 77900, + "Label": "5562-77900 via Ribbon Synapse from 63279 -> 77901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63279, + "TargetID": 77901, + "Directional": true + } + ] + }, + { + "ID": 9706, + "SourceStructureID": 5562, + "TargetStructureID": 78088, + "Label": "5562-78088 via Ribbon Synapse from 31055 -> 78089", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31055, + "TargetID": 78089, + "Directional": true + } + ] + }, + { + "ID": 9707, + "SourceStructureID": 5562, + "TargetStructureID": 78090, + "Label": "5562-78090 via Ribbon Synapse from 31057 -> 78091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31057, + "TargetID": 78091, + "Directional": true + } + ] + }, + { + "ID": 9708, + "SourceStructureID": 5562, + "TargetStructureID": 78098, + "Label": "5562-78098 via BC Conventional Synapse from 63329 -> 82413", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63329, + "TargetID": 82413, + "Directional": true + } + ] + }, + { + "ID": 9709, + "SourceStructureID": 5562, + "TargetStructureID": 78105, + "Label": "5562-78105 via BC Conventional Synapse from 63335 -> 78106", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63335, + "TargetID": 78106, + "Directional": true + } + ] + }, + { + "ID": 9710, + "SourceStructureID": 5562, + "TargetStructureID": 78112, + "Label": "5562-78112 via Ribbon Synapse from 31060 -> 78113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31060, + "TargetID": 78113, + "Directional": true + } + ] + }, + { + "ID": 9711, + "SourceStructureID": 5562, + "TargetStructureID": 78115, + "Label": "5562-78115 via Ribbon Synapse from 63330 -> 78117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63330, + "TargetID": 78117, + "Directional": true + } + ] + }, + { + "ID": 9712, + "SourceStructureID": 5562, + "TargetStructureID": 78124, + "Label": "5562-78124 via Ribbon Synapse from 48473 -> 78133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48473, + "TargetID": 78133, + "Directional": true + } + ] + }, + { + "ID": 9713, + "SourceStructureID": 5562, + "TargetStructureID": 78126, + "Label": "5562-78126 via BC Conventional Synapse from 78848 -> 78849", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78848, + "TargetID": 78849, + "Directional": true + } + ] + }, + { + "ID": 9714, + "SourceStructureID": 5562, + "TargetStructureID": 78134, + "Label": "5562-78134 via Ribbon Synapse from 48473 -> 78135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48473, + "TargetID": 78135, + "Directional": true + } + ] + }, + { + "ID": 9715, + "SourceStructureID": 5562, + "TargetStructureID": 78139, + "Label": "5562-78139 via Ribbon Synapse from 31062 -> 78140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31062, + "TargetID": 78140, + "Directional": true + } + ] + }, + { + "ID": 9716, + "SourceStructureID": 5562, + "TargetStructureID": 78155, + "Label": "5562-78155 via Ribbon Synapse from 63340 -> 78156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63340, + "TargetID": 78156, + "Directional": true + } + ] + }, + { + "ID": 9717, + "SourceStructureID": 5562, + "TargetStructureID": 78166, + "Label": "5562-78166 via Ribbon Synapse from 48463 -> 78167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48463, + "TargetID": 78167, + "Directional": true + } + ] + }, + { + "ID": 9718, + "SourceStructureID": 5562, + "TargetStructureID": 78168, + "Label": "5562-78168 via Ribbon Synapse from 63611 -> 78169", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63611, + "TargetID": 78169, + "Directional": true + } + ] + }, + { + "ID": 9719, + "SourceStructureID": 5562, + "TargetStructureID": 78170, + "Label": "5562-78170 via Ribbon Synapse from 63611 -> 78171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63611, + "TargetID": 78171, + "Directional": true + } + ] + }, + { + "ID": 9720, + "SourceStructureID": 5562, + "TargetStructureID": 78174, + "Label": "5562-78174 via BC Conventional Synapse from 48469 -> 78175", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48469, + "TargetID": 78175, + "Directional": true + } + ] + }, + { + "ID": 9721, + "SourceStructureID": 5562, + "TargetStructureID": 78191, + "Label": "5562-78191 via Ribbon Synapse from 63350 -> 78193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63350, + "TargetID": 78193, + "Directional": true + } + ] + }, + { + "ID": 9722, + "SourceStructureID": 5562, + "TargetStructureID": 78194, + "Label": "5562-78194 via Ribbon Synapse from 63350 -> 78195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63350, + "TargetID": 78195, + "Directional": true + } + ] + }, + { + "ID": 9723, + "SourceStructureID": 5562, + "TargetStructureID": 78196, + "Label": "5562-78196 via Ribbon Synapse from 63350 -> 78197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63350, + "TargetID": 78197, + "Directional": true + } + ] + }, + { + "ID": 9724, + "SourceStructureID": 5562, + "TargetStructureID": 78202, + "Label": "5562-78202 via BC Conventional Synapse from 134447 -> 134448", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134447, + "TargetID": 134448, + "Directional": true + } + ] + }, + { + "ID": 9725, + "SourceStructureID": 5562, + "TargetStructureID": 78205, + "Label": "5562-78205 via Ribbon Synapse from 63354 -> 78206", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63354, + "TargetID": 78206, + "Directional": true + } + ] + }, + { + "ID": 9726, + "SourceStructureID": 5562, + "TargetStructureID": 78220, + "Label": "5562-78220 via Ribbon Synapse from 63354 -> 82475", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63354, + "TargetID": 82475, + "Directional": true + } + ] + }, + { + "ID": 9727, + "SourceStructureID": 5562, + "TargetStructureID": 78222, + "Label": "5562-78222 via BC Conventional Synapse from 78234 -> 78236", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78234, + "TargetID": 78236, + "Directional": true + } + ] + }, + { + "ID": 9728, + "SourceStructureID": 5562, + "TargetStructureID": 78262, + "Label": "5562-78262 via BC Conventional Synapse from 79905 -> 79906", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79905, + "TargetID": 79906, + "Directional": true + } + ] + }, + { + "ID": 9729, + "SourceStructureID": 5562, + "TargetStructureID": 78262, + "Label": "5562-78262 via Ribbon Synapse from 49009 -> 79768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49009, + "TargetID": 79768, + "Directional": true + } + ] + }, + { + "ID": 9730, + "SourceStructureID": 5562, + "TargetStructureID": 78283, + "Label": "5562-78283 via Ribbon Synapse from 63364 -> 78286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63364, + "TargetID": 78286, + "Directional": true + } + ] + }, + { + "ID": 9731, + "SourceStructureID": 5562, + "TargetStructureID": 78284, + "Label": "5562-78284 via Ribbon Synapse from 63364 -> 78285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63364, + "TargetID": 78285, + "Directional": true + } + ] + }, + { + "ID": 9732, + "SourceStructureID": 5562, + "TargetStructureID": 78343, + "Label": "5562-78343 via Ribbon Synapse from 78347 -> 78345", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78347, + "TargetID": 78345, + "Directional": true + } + ] + }, + { + "ID": 9733, + "SourceStructureID": 5562, + "TargetStructureID": 78355, + "Label": "5562-78355 via Ribbon Synapse from 78347 -> 82713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78347, + "TargetID": 82713, + "Directional": true + } + ] + }, + { + "ID": 9734, + "SourceStructureID": 5562, + "TargetStructureID": 78364, + "Label": "5562-78364 via Ribbon Synapse from 63530 -> 78373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63530, + "TargetID": 78373, + "Directional": true + } + ] + }, + { + "ID": 9735, + "SourceStructureID": 5562, + "TargetStructureID": 78374, + "Label": "5562-78374 via BC Conventional Synapse from 78376 -> 78375", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78376, + "TargetID": 78375, + "Directional": true + } + ] + }, + { + "ID": 9736, + "SourceStructureID": 5562, + "TargetStructureID": 78398, + "Label": "5562-78398 via Ribbon Synapse from 31049 -> 78399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31049, + "TargetID": 78399, + "Directional": true + } + ] + }, + { + "ID": 9737, + "SourceStructureID": 5562, + "TargetStructureID": 78400, + "Label": "5562-78400 via Ribbon Synapse from 31049 -> 78401", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31049, + "TargetID": 78401, + "Directional": true + } + ] + }, + { + "ID": 9738, + "SourceStructureID": 5562, + "TargetStructureID": 78469, + "Label": "5562-78469 via Ribbon Synapse from 49537 -> 78470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49537, + "TargetID": 78470, + "Directional": true + } + ] + }, + { + "ID": 9739, + "SourceStructureID": 5562, + "TargetStructureID": 78473, + "Label": "5562-78473 via Ribbon Synapse from 40297 -> 78474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40297, + "TargetID": 78474, + "Directional": true + } + ] + }, + { + "ID": 9740, + "SourceStructureID": 5562, + "TargetStructureID": 78475, + "Label": "5562-78475 via BC Conventional Synapse from 78476 -> 78477", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78476, + "TargetID": 78477, + "Directional": true + } + ] + }, + { + "ID": 9741, + "SourceStructureID": 5562, + "TargetStructureID": 78483, + "Label": "5562-78483 via BC Conventional Synapse from 134461 -> 134462", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134461, + "TargetID": 134462, + "Directional": true + } + ] + }, + { + "ID": 9742, + "SourceStructureID": 5562, + "TargetStructureID": 78493, + "Label": "5562-78493 via Ribbon Synapse from 40298 -> 78494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40298, + "TargetID": 78494, + "Directional": true + } + ] + }, + { + "ID": 9743, + "SourceStructureID": 5562, + "TargetStructureID": 78495, + "Label": "5562-78495 via Ribbon Synapse from 40298 -> 78496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40298, + "TargetID": 78496, + "Directional": true + } + ] + }, + { + "ID": 9744, + "SourceStructureID": 5562, + "TargetStructureID": 78497, + "Label": "5562-78497 via Ribbon Synapse from 40299 -> 78498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40299, + "TargetID": 78498, + "Directional": true + } + ] + }, + { + "ID": 9745, + "SourceStructureID": 5562, + "TargetStructureID": 78499, + "Label": "5562-78499 via Ribbon Synapse from 40299 -> 78500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40299, + "TargetID": 78500, + "Directional": true + } + ] + }, + { + "ID": 9746, + "SourceStructureID": 5562, + "TargetStructureID": 78514, + "Label": "5562-78514 via Ribbon Synapse from 63646 -> 78516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63646, + "TargetID": 78516, + "Directional": true + } + ] + }, + { + "ID": 9747, + "SourceStructureID": 5562, + "TargetStructureID": 78515, + "Label": "5562-78515 via Ribbon Synapse from 63646 -> 78517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63646, + "TargetID": 78517, + "Directional": true + } + ] + }, + { + "ID": 9748, + "SourceStructureID": 5562, + "TargetStructureID": 78523, + "Label": "5562-78523 via Ribbon Synapse from 63655 -> 78525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63655, + "TargetID": 78525, + "Directional": true + } + ] + }, + { + "ID": 9749, + "SourceStructureID": 5562, + "TargetStructureID": 78548, + "Label": "5562-78548 via BC Conventional Synapse from 63659 -> 78549", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63659, + "TargetID": 78549, + "Directional": true + } + ] + }, + { + "ID": 9750, + "SourceStructureID": 5562, + "TargetStructureID": 78556, + "Label": "5562-78556 via Ribbon Synapse from 40301 -> 78559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40301, + "TargetID": 78559, + "Directional": true + } + ] + }, + { + "ID": 9751, + "SourceStructureID": 5562, + "TargetStructureID": 78557, + "Label": "5562-78557 via Ribbon Synapse from 40301 -> 78558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40301, + "TargetID": 78558, + "Directional": true + } + ] + }, + { + "ID": 9752, + "SourceStructureID": 5562, + "TargetStructureID": 78564, + "Label": "5562-78564 via BC Conventional Synapse from 134463 -> 134464", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134463, + "TargetID": 134464, + "Directional": true + } + ] + }, + { + "ID": 9753, + "SourceStructureID": 5562, + "TargetStructureID": 78582, + "Label": "5562-78582 via BC Conventional Synapse from 93090 -> 93089", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93090, + "TargetID": 93089, + "Directional": true + } + ] + }, + { + "ID": 9754, + "SourceStructureID": 5562, + "TargetStructureID": 78596, + "Label": "5562-78596 via Ribbon Synapse from 63675 -> 78597", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63675, + "TargetID": 78597, + "Directional": true + } + ] + }, + { + "ID": 9755, + "SourceStructureID": 5562, + "TargetStructureID": 78598, + "Label": "5562-78598 via Ribbon Synapse from 63675 -> 78599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63675, + "TargetID": 78599, + "Directional": true + } + ] + }, + { + "ID": 9756, + "SourceStructureID": 5562, + "TargetStructureID": 78600, + "Label": "5562-78600 via Ribbon Synapse from 63673 -> 78601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63673, + "TargetID": 78601, + "Directional": true + } + ] + }, + { + "ID": 9757, + "SourceStructureID": 5562, + "TargetStructureID": 78602, + "Label": "5562-78602 via Ribbon Synapse from 63673 -> 78603", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63673, + "TargetID": 78603, + "Directional": true + } + ] + }, + { + "ID": 9758, + "SourceStructureID": 5562, + "TargetStructureID": 78610, + "Label": "5562-78610 via Ribbon Synapse from 132072 -> 78611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132072, + "TargetID": 78611, + "Directional": true + } + ] + }, + { + "ID": 9759, + "SourceStructureID": 5562, + "TargetStructureID": 78621, + "Label": "5562-78621 via Ribbon Synapse from 63679 -> 78622", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63679, + "TargetID": 78622, + "Directional": true + } + ] + }, + { + "ID": 9760, + "SourceStructureID": 5562, + "TargetStructureID": 78623, + "Label": "5562-78623 via Ribbon Synapse from 63679 -> 78624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63679, + "TargetID": 78624, + "Directional": true + } + ] + }, + { + "ID": 9761, + "SourceStructureID": 5562, + "TargetStructureID": 78626, + "Label": "5562-78626 via BC Conventional Synapse from 78625 -> 78627", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78625, + "TargetID": 78627, + "Directional": true + } + ] + }, + { + "ID": 9762, + "SourceStructureID": 5562, + "TargetStructureID": 78628, + "Label": "5562-78628 via Ribbon Synapse from 63681 -> 78631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63681, + "TargetID": 78631, + "Directional": true + } + ] + }, + { + "ID": 9763, + "SourceStructureID": 5562, + "TargetStructureID": 78629, + "Label": "5562-78629 via Ribbon Synapse from 63681 -> 78630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63681, + "TargetID": 78630, + "Directional": true + } + ] + }, + { + "ID": 9764, + "SourceStructureID": 5562, + "TargetStructureID": 78632, + "Label": "5562-78632 via BC Conventional Synapse from 78633 -> 78634", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78633, + "TargetID": 78634, + "Directional": true + } + ] + }, + { + "ID": 9765, + "SourceStructureID": 5562, + "TargetStructureID": 78635, + "Label": "5562-78635 via Ribbon Synapse from 63680 -> 78636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63680, + "TargetID": 78636, + "Directional": true + } + ] + }, + { + "ID": 9766, + "SourceStructureID": 5562, + "TargetStructureID": 78647, + "Label": "5562-78647 via Ribbon Synapse from 54210 -> 78649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54210, + "TargetID": 78649, + "Directional": true + } + ] + }, + { + "ID": 9767, + "SourceStructureID": 5562, + "TargetStructureID": 78652, + "Label": "5562-78652 via Ribbon Synapse from 49416 -> 78653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49416, + "TargetID": 78653, + "Directional": true + } + ] + }, + { + "ID": 9768, + "SourceStructureID": 5562, + "TargetStructureID": 78656, + "Label": "5562-78656 via Ribbon Synapse from 49417 -> 78657", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49417, + "TargetID": 78657, + "Directional": true + } + ] + }, + { + "ID": 9769, + "SourceStructureID": 5562, + "TargetStructureID": 78658, + "Label": "5562-78658 via Ribbon Synapse from 49417 -> 78659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49417, + "TargetID": 78659, + "Directional": true + } + ] + }, + { + "ID": 9770, + "SourceStructureID": 5562, + "TargetStructureID": 78663, + "Label": "5562-78663 via Ribbon Synapse from 63704 -> 78664", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63704, + "TargetID": 78664, + "Directional": true + } + ] + }, + { + "ID": 9771, + "SourceStructureID": 5562, + "TargetStructureID": 78675, + "Label": "5562-78675 via Ribbon Synapse from 54210 -> 78676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54210, + "TargetID": 78676, + "Directional": true + } + ] + }, + { + "ID": 9772, + "SourceStructureID": 5562, + "TargetStructureID": 78684, + "Label": "5562-78684 via Ribbon Synapse from 49566 -> 78685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49566, + "TargetID": 78685, + "Directional": true + } + ] + }, + { + "ID": 9773, + "SourceStructureID": 5562, + "TargetStructureID": 78699, + "Label": "5562-78699 via Ribbon Synapse from 49567 -> 78700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49567, + "TargetID": 78700, + "Directional": true + } + ] + }, + { + "ID": 9774, + "SourceStructureID": 5562, + "TargetStructureID": 78739, + "Label": "5562-78739 via Ribbon Synapse from 49566 -> 78742", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49566, + "TargetID": 78742, + "Directional": true + } + ] + }, + { + "ID": 9775, + "SourceStructureID": 5562, + "TargetStructureID": 78785, + "Label": "5562-78785 via Ribbon Synapse from 49424 -> 78786", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49424, + "TargetID": 78786, + "Directional": true + } + ] + }, + { + "ID": 9776, + "SourceStructureID": 5562, + "TargetStructureID": 78810, + "Label": "5562-78810 via Ribbon Synapse from 63725 -> 78811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63725, + "TargetID": 78811, + "Directional": true + } + ] + }, + { + "ID": 9777, + "SourceStructureID": 5562, + "TargetStructureID": 78812, + "Label": "5562-78812 via Ribbon Synapse from 63725 -> 78813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63725, + "TargetID": 78813, + "Directional": true + } + ] + }, + { + "ID": 9778, + "SourceStructureID": 5562, + "TargetStructureID": 78825, + "Label": "5562-78825 via Ribbon Synapse from 54212 -> 78828", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54212, + "TargetID": 78828, + "Directional": true + } + ] + }, + { + "ID": 9779, + "SourceStructureID": 5562, + "TargetStructureID": 78826, + "Label": "5562-78826 via Ribbon Synapse from 54212 -> 78827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54212, + "TargetID": 78827, + "Directional": true + } + ] + }, + { + "ID": 9780, + "SourceStructureID": 5562, + "TargetStructureID": 78858, + "Label": "5562-78858 via BC Conventional Synapse from 63747 -> 78859", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63747, + "TargetID": 78859, + "Directional": true + } + ] + }, + { + "ID": 9781, + "SourceStructureID": 5562, + "TargetStructureID": 78864, + "Label": "5562-78864 via BC Conventional Synapse from 134469 -> 134470", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134469, + "TargetID": 134470, + "Directional": true + } + ] + }, + { + "ID": 9782, + "SourceStructureID": 5562, + "TargetStructureID": 78867, + "Label": "5562-78867 via Ribbon Synapse from 31358 -> 78869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31358, + "TargetID": 78869, + "Directional": true + } + ] + }, + { + "ID": 9783, + "SourceStructureID": 5562, + "TargetStructureID": 78870, + "Label": "5562-78870 via Ribbon Synapse from 31359 -> 78871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31359, + "TargetID": 78871, + "Directional": true + } + ] + }, + { + "ID": 9784, + "SourceStructureID": 5562, + "TargetStructureID": 78896, + "Label": "5562-78896 via Ribbon Synapse from 49519 -> 78897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49519, + "TargetID": 78897, + "Directional": true + } + ] + }, + { + "ID": 9785, + "SourceStructureID": 5562, + "TargetStructureID": 78899, + "Label": "5562-78899 via Ribbon Synapse from 49518 -> 78900", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49518, + "TargetID": 78900, + "Directional": true + } + ] + }, + { + "ID": 9786, + "SourceStructureID": 5562, + "TargetStructureID": 78905, + "Label": "5562-78905 via Ribbon Synapse from 49517 -> 78908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49517, + "TargetID": 78908, + "Directional": true + } + ] + }, + { + "ID": 9787, + "SourceStructureID": 5562, + "TargetStructureID": 78906, + "Label": "5562-78906 via Ribbon Synapse from 49517 -> 78907", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49517, + "TargetID": 78907, + "Directional": true + } + ] + }, + { + "ID": 9788, + "SourceStructureID": 5562, + "TargetStructureID": 78909, + "Label": "5562-78909 via Ribbon Synapse from 77467 -> 87516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77467, + "TargetID": 87516, + "Directional": true + } + ] + }, + { + "ID": 9789, + "SourceStructureID": 5562, + "TargetStructureID": 78920, + "Label": "5562-78920 via Ribbon Synapse from 63762 -> 78923", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63762, + "TargetID": 78923, + "Directional": true + } + ] + }, + { + "ID": 9790, + "SourceStructureID": 5562, + "TargetStructureID": 78921, + "Label": "5562-78921 via Ribbon Synapse from 63762 -> 78922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63762, + "TargetID": 78922, + "Directional": true + } + ] + }, + { + "ID": 9791, + "SourceStructureID": 5562, + "TargetStructureID": 78926, + "Label": "5562-78926 via Ribbon Synapse from 63767 -> 78927", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63767, + "TargetID": 78927, + "Directional": true + } + ] + }, + { + "ID": 9792, + "SourceStructureID": 5562, + "TargetStructureID": 78928, + "Label": "5562-78928 via Ribbon Synapse from 63767 -> 78929", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63767, + "TargetID": 78929, + "Directional": true + } + ] + }, + { + "ID": 9793, + "SourceStructureID": 5562, + "TargetStructureID": 78938, + "Label": "5562-78938 via Ribbon Synapse from 63764 -> 78939", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63764, + "TargetID": 78939, + "Directional": true + } + ] + }, + { + "ID": 9794, + "SourceStructureID": 5562, + "TargetStructureID": 78946, + "Label": "5562-78946 via Ribbon Synapse from 63771 -> 78953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63771, + "TargetID": 78953, + "Directional": true + } + ] + }, + { + "ID": 9795, + "SourceStructureID": 5562, + "TargetStructureID": 78954, + "Label": "5562-78954 via Ribbon Synapse from 63771 -> 78955", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63771, + "TargetID": 78955, + "Directional": true + } + ] + }, + { + "ID": 9796, + "SourceStructureID": 5562, + "TargetStructureID": 78961, + "Label": "5562-78961 via Ribbon Synapse from 49436 -> 78962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49436, + "TargetID": 78962, + "Directional": true + } + ] + }, + { + "ID": 9797, + "SourceStructureID": 5562, + "TargetStructureID": 78974, + "Label": "5562-78974 via BC Conventional Synapse from 63776 -> 78975", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63776, + "TargetID": 78975, + "Directional": true + } + ] + }, + { + "ID": 9798, + "SourceStructureID": 5562, + "TargetStructureID": 78982, + "Label": "5562-78982 via BC Conventional Synapse from 78983 -> 78984", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78983, + "TargetID": 78984, + "Directional": true + } + ] + }, + { + "ID": 9799, + "SourceStructureID": 5562, + "TargetStructureID": 78985, + "Label": "5562-78985 via Ribbon Synapse from 63783 -> 78986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63783, + "TargetID": 78986, + "Directional": true + } + ] + }, + { + "ID": 9800, + "SourceStructureID": 5562, + "TargetStructureID": 78997, + "Label": "5562-78997 via Ribbon Synapse from 63787 -> 78998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63787, + "TargetID": 78998, + "Directional": true + } + ] + }, + { + "ID": 9801, + "SourceStructureID": 5562, + "TargetStructureID": 79000, + "Label": "5562-79000 via BC Conventional Synapse from 134473 -> 134474", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134473, + "TargetID": 134474, + "Directional": true + } + ] + }, + { + "ID": 9802, + "SourceStructureID": 5562, + "TargetStructureID": 79013, + "Label": "5562-79013 via Ribbon Synapse from 49106 -> 79014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49106, + "TargetID": 79014, + "Directional": true + } + ] + }, + { + "ID": 9803, + "SourceStructureID": 5562, + "TargetStructureID": 79015, + "Label": "5562-79015 via Ribbon Synapse from 49106 -> 79016", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49106, + "TargetID": 79016, + "Directional": true + } + ] + }, + { + "ID": 9804, + "SourceStructureID": 5562, + "TargetStructureID": 79027, + "Label": "5562-79027 via BC Conventional Synapse from 134475 -> 134476", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134475, + "TargetID": 134476, + "Directional": true + } + ] + }, + { + "ID": 9805, + "SourceStructureID": 5562, + "TargetStructureID": 79160, + "Label": "5562-79160 via BC Conventional Synapse from 79158 -> 79161", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79158, + "TargetID": 79161, + "Directional": true + } + ] + }, + { + "ID": 9806, + "SourceStructureID": 5562, + "TargetStructureID": 79166, + "Label": "5562-79166 via Ribbon Synapse from 63835 -> 79167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63835, + "TargetID": 79167, + "Directional": true + } + ] + }, + { + "ID": 9807, + "SourceStructureID": 5562, + "TargetStructureID": 79185, + "Label": "5562-79185 via Ribbon Synapse from 63838 -> 79186", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63838, + "TargetID": 79186, + "Directional": true + } + ] + }, + { + "ID": 9808, + "SourceStructureID": 5562, + "TargetStructureID": 79187, + "Label": "5562-79187 via Ribbon Synapse from 63838 -> 79188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63838, + "TargetID": 79188, + "Directional": true + } + ] + }, + { + "ID": 9809, + "SourceStructureID": 5562, + "TargetStructureID": 79194, + "Label": "5562-79194 via Ribbon Synapse from 63844 -> 79195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63844, + "TargetID": 79195, + "Directional": true + } + ] + }, + { + "ID": 9810, + "SourceStructureID": 5562, + "TargetStructureID": 79202, + "Label": "5562-79202 via Ribbon Synapse from 63847 -> 79203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63847, + "TargetID": 79203, + "Directional": true + } + ] + }, + { + "ID": 9811, + "SourceStructureID": 5562, + "TargetStructureID": 79204, + "Label": "5562-79204 via BC Conventional Synapse from 63850 -> 79205", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63850, + "TargetID": 79205, + "Directional": true + } + ] + }, + { + "ID": 9812, + "SourceStructureID": 5562, + "TargetStructureID": 79209, + "Label": "5562-79209 via Ribbon Synapse from 134309 -> 79210", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134309, + "TargetID": 79210, + "Directional": true + } + ] + }, + { + "ID": 9813, + "SourceStructureID": 5562, + "TargetStructureID": 79211, + "Label": "5562-79211 via Ribbon Synapse from 134309 -> 79212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134309, + "TargetID": 79212, + "Directional": true + } + ] + }, + { + "ID": 9814, + "SourceStructureID": 5562, + "TargetStructureID": 79217, + "Label": "5562-79217 via BC Conventional Synapse from 63840 -> 79218", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63840, + "TargetID": 79218, + "Directional": true + } + ] + }, + { + "ID": 9815, + "SourceStructureID": 5562, + "TargetStructureID": 79232, + "Label": "5562-79232 via Ribbon Synapse from 48960 -> 79234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48960, + "TargetID": 79234, + "Directional": true + } + ] + }, + { + "ID": 9816, + "SourceStructureID": 5562, + "TargetStructureID": 79235, + "Label": "5562-79235 via Ribbon Synapse from 48960 -> 79236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48960, + "TargetID": 79236, + "Directional": true + } + ] + }, + { + "ID": 9817, + "SourceStructureID": 5562, + "TargetStructureID": 79242, + "Label": "5562-79242 via Ribbon Synapse from 36522 -> 79243", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36522, + "TargetID": 79243, + "Directional": true + } + ] + }, + { + "ID": 9818, + "SourceStructureID": 5562, + "TargetStructureID": 79244, + "Label": "5562-79244 via Ribbon Synapse from 63862 -> 79249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63862, + "TargetID": 79249, + "Directional": true + } + ] + }, + { + "ID": 9819, + "SourceStructureID": 5562, + "TargetStructureID": 79245, + "Label": "5562-79245 via Ribbon Synapse from 63862 -> 79246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63862, + "TargetID": 79246, + "Directional": true + } + ] + }, + { + "ID": 9820, + "SourceStructureID": 5562, + "TargetStructureID": 79247, + "Label": "5562-79247 via Ribbon Synapse from 63862 -> 79248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63862, + "TargetID": 79248, + "Directional": true + } + ] + }, + { + "ID": 9821, + "SourceStructureID": 5562, + "TargetStructureID": 79618, + "Label": "5562-79618 via Ribbon Synapse from 63859 -> 79619", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63859, + "TargetID": 79619, + "Directional": true + } + ] + }, + { + "ID": 9822, + "SourceStructureID": 5562, + "TargetStructureID": 79625, + "Label": "5562-79625 via Ribbon Synapse from 63860 -> 79628", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63860, + "TargetID": 79628, + "Directional": true + } + ] + }, + { + "ID": 9823, + "SourceStructureID": 5562, + "TargetStructureID": 79626, + "Label": "5562-79626 via Ribbon Synapse from 63860 -> 79627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63860, + "TargetID": 79627, + "Directional": true + } + ] + }, + { + "ID": 9824, + "SourceStructureID": 5562, + "TargetStructureID": 79629, + "Label": "5562-79629 via Ribbon Synapse from 48959 -> 79642, 63876 -> 79630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48959, + "TargetID": 79642, + "Directional": true + }, + { + "SourceID": 63876, + "TargetID": 79630, + "Directional": true + } + ] + }, + { + "ID": 9825, + "SourceStructureID": 5562, + "TargetStructureID": 79631, + "Label": "5562-79631 via Ribbon Synapse from 63876 -> 79632", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63876, + "TargetID": 79632, + "Directional": true + } + ] + }, + { + "ID": 9826, + "SourceStructureID": 5562, + "TargetStructureID": 79635, + "Label": "5562-79635 via Ribbon Synapse from 48959 -> 79636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48959, + "TargetID": 79636, + "Directional": true + } + ] + }, + { + "ID": 9827, + "SourceStructureID": 5562, + "TargetStructureID": 79639, + "Label": "5562-79639 via Ribbon Synapse from 48959 -> 79640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48959, + "TargetID": 79640, + "Directional": true + } + ] + }, + { + "ID": 9828, + "SourceStructureID": 5562, + "TargetStructureID": 79645, + "Label": "5562-79645 via BC Conventional Synapse from 134490 -> 134489", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134490, + "TargetID": 134489, + "Directional": true + } + ] + }, + { + "ID": 9829, + "SourceStructureID": 5562, + "TargetStructureID": 79651, + "Label": "5562-79651 via BC Conventional Synapse from 79652 -> 79653", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79652, + "TargetID": 79653, + "Directional": true + } + ] + }, + { + "ID": 9830, + "SourceStructureID": 5562, + "TargetStructureID": 79654, + "Label": "5562-79654 via Ribbon Synapse from 48948 -> 79655", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48948, + "TargetID": 79655, + "Directional": true + } + ] + }, + { + "ID": 9831, + "SourceStructureID": 5562, + "TargetStructureID": 79669, + "Label": "5562-79669 via BC Conventional Synapse from 134492 -> 134491", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134492, + "TargetID": 134491, + "Directional": true + } + ] + }, + { + "ID": 9832, + "SourceStructureID": 5562, + "TargetStructureID": 79678, + "Label": "5562-79678 via Ribbon Synapse from 63878 -> 79679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63878, + "TargetID": 79679, + "Directional": true + } + ] + }, + { + "ID": 9833, + "SourceStructureID": 5562, + "TargetStructureID": 79680, + "Label": "5562-79680 via Ribbon Synapse from 63878 -> 79681", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63878, + "TargetID": 79681, + "Directional": true + } + ] + }, + { + "ID": 9834, + "SourceStructureID": 5562, + "TargetStructureID": 79688, + "Label": "5562-79688 via Ribbon Synapse from 49103 -> 79689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49103, + "TargetID": 79689, + "Directional": true + } + ] + }, + { + "ID": 9835, + "SourceStructureID": 5562, + "TargetStructureID": 79690, + "Label": "5562-79690 via BC Conventional Synapse from 134494 -> 134493", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134494, + "TargetID": 134493, + "Directional": true + } + ] + }, + { + "ID": 9836, + "SourceStructureID": 5562, + "TargetStructureID": 79698, + "Label": "5562-79698 via Adherens from 79701 -> 79702", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 79701, + "TargetID": 79702, + "Directional": true + } + ] + }, + { + "ID": 9837, + "SourceStructureID": 5562, + "TargetStructureID": 79698, + "Label": "5562-79698 via BC Conventional Synapse from 134496 -> 134497", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134496, + "TargetID": 134497, + "Directional": true + } + ] + }, + { + "ID": 9838, + "SourceStructureID": 5562, + "TargetStructureID": 79707, + "Label": "5562-79707 via BC Conventional Synapse from 134500 -> 134501", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134500, + "TargetID": 134501, + "Directional": true + } + ] + }, + { + "ID": 9839, + "SourceStructureID": 5562, + "TargetStructureID": 79710, + "Label": "5562-79710 via Ribbon Synapse from 63886 -> 79711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63886, + "TargetID": 79711, + "Directional": true + } + ] + }, + { + "ID": 9840, + "SourceStructureID": 5562, + "TargetStructureID": 79712, + "Label": "5562-79712 via Ribbon Synapse from 63886 -> 79713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63886, + "TargetID": 79713, + "Directional": true + } + ] + }, + { + "ID": 9841, + "SourceStructureID": 5562, + "TargetStructureID": 79716, + "Label": "5562-79716 via Ribbon Synapse from 49011 -> 79717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49011, + "TargetID": 79717, + "Directional": true + } + ] + }, + { + "ID": 9842, + "SourceStructureID": 5562, + "TargetStructureID": 79718, + "Label": "5562-79718 via Ribbon Synapse from 49011 -> 79719", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49011, + "TargetID": 79719, + "Directional": true + } + ] + }, + { + "ID": 9843, + "SourceStructureID": 5562, + "TargetStructureID": 79725, + "Label": "5562-79725 via Ribbon Synapse from 79724 -> 79728", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79724, + "TargetID": 79728, + "Directional": true + } + ] + }, + { + "ID": 9844, + "SourceStructureID": 5562, + "TargetStructureID": 79726, + "Label": "5562-79726 via Ribbon Synapse from 79724 -> 79727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79724, + "TargetID": 79727, + "Directional": true + } + ] + }, + { + "ID": 9845, + "SourceStructureID": 5562, + "TargetStructureID": 79731, + "Label": "5562-79731 via Ribbon Synapse from 49010 -> 79734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49010, + "TargetID": 79734, + "Directional": true + } + ] + }, + { + "ID": 9846, + "SourceStructureID": 5562, + "TargetStructureID": 79732, + "Label": "5562-79732 via Ribbon Synapse from 49010 -> 79733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49010, + "TargetID": 79733, + "Directional": true + } + ] + }, + { + "ID": 9847, + "SourceStructureID": 5562, + "TargetStructureID": 79749, + "Label": "5562-79749 via Ribbon Synapse from 49021 -> 79752", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49021, + "TargetID": 79752, + "Directional": true + } + ] + }, + { + "ID": 9848, + "SourceStructureID": 5562, + "TargetStructureID": 79750, + "Label": "5562-79750 via Ribbon Synapse from 49021 -> 79751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49021, + "TargetID": 79751, + "Directional": true + } + ] + }, + { + "ID": 9849, + "SourceStructureID": 5562, + "TargetStructureID": 79753, + "Label": "5562-79753 via BC Conventional Synapse from 79754 -> 79755", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79754, + "TargetID": 79755, + "Directional": true + } + ] + }, + { + "ID": 9850, + "SourceStructureID": 5562, + "TargetStructureID": 79764, + "Label": "5562-79764 via BC Conventional Synapse from 134505 -> 134506", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134505, + "TargetID": 134506, + "Directional": true + } + ] + }, + { + "ID": 9851, + "SourceStructureID": 5562, + "TargetStructureID": 79781, + "Label": "5562-79781 via BC Conventional Synapse from 63381 -> 79783", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63381, + "TargetID": 79783, + "Directional": true + } + ] + }, + { + "ID": 9852, + "SourceStructureID": 5562, + "TargetStructureID": 79802, + "Label": "5562-79802 via BC Conventional Synapse from 81751 -> 81752", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81751, + "TargetID": 81752, + "Directional": true + } + ] + }, + { + "ID": 9853, + "SourceStructureID": 5562, + "TargetStructureID": 79813, + "Label": "5562-79813 via Ribbon Synapse from 63900 -> 79814", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63900, + "TargetID": 79814, + "Directional": true + } + ] + }, + { + "ID": 9854, + "SourceStructureID": 5562, + "TargetStructureID": 79815, + "Label": "5562-79815 via Ribbon Synapse from 63900 -> 79816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63900, + "TargetID": 79816, + "Directional": true + } + ] + }, + { + "ID": 9855, + "SourceStructureID": 5562, + "TargetStructureID": 79821, + "Label": "5562-79821 via Ribbon Synapse from 63906 -> 79825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63906, + "TargetID": 79825, + "Directional": true + } + ] + }, + { + "ID": 9856, + "SourceStructureID": 5562, + "TargetStructureID": 79822, + "Label": "5562-79822 via Ribbon Synapse from 63906 -> 79826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63906, + "TargetID": 79826, + "Directional": true + } + ] + }, + { + "ID": 9857, + "SourceStructureID": 5562, + "TargetStructureID": 79823, + "Label": "5562-79823 via Ribbon Synapse from 63906 -> 79824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63906, + "TargetID": 79824, + "Directional": true + } + ] + }, + { + "ID": 9858, + "SourceStructureID": 5562, + "TargetStructureID": 79827, + "Label": "5562-79827 via BC Conventional Synapse from 79829 -> 79830", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79829, + "TargetID": 79830, + "Directional": true + } + ] + }, + { + "ID": 9859, + "SourceStructureID": 5562, + "TargetStructureID": 79832, + "Label": "5562-79832 via Ribbon Synapse from 63909 -> 79833", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63909, + "TargetID": 79833, + "Directional": true + } + ] + }, + { + "ID": 9860, + "SourceStructureID": 5562, + "TargetStructureID": 79834, + "Label": "5562-79834 via Ribbon Synapse from 134646 -> 134647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134646, + "TargetID": 134647, + "Directional": true + } + ] + }, + { + "ID": 9861, + "SourceStructureID": 5562, + "TargetStructureID": 79847, + "Label": "5562-79847 via BC Conventional Synapse from 79848 -> 92080", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79848, + "TargetID": 92080, + "Directional": true + } + ] + }, + { + "ID": 9862, + "SourceStructureID": 5562, + "TargetStructureID": 79849, + "Label": "5562-79849 via Ribbon Synapse from 48997 -> 79850", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48997, + "TargetID": 79850, + "Directional": true + } + ] + }, + { + "ID": 9863, + "SourceStructureID": 5562, + "TargetStructureID": 79851, + "Label": "5562-79851 via Ribbon Synapse from 48997 -> 79853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48997, + "TargetID": 79853, + "Directional": true + } + ] + }, + { + "ID": 9864, + "SourceStructureID": 5562, + "TargetStructureID": 79854, + "Label": "5562-79854 via Ribbon Synapse from 48998 -> 79856", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48998, + "TargetID": 79856, + "Directional": true + } + ] + }, + { + "ID": 9865, + "SourceStructureID": 5562, + "TargetStructureID": 79863, + "Label": "5562-79863 via Ribbon Synapse from 79860 -> 79864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79860, + "TargetID": 79864, + "Directional": true + } + ] + }, + { + "ID": 9866, + "SourceStructureID": 5562, + "TargetStructureID": 79865, + "Label": "5562-79865 via Ribbon Synapse from 79860 -> 79866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79860, + "TargetID": 79866, + "Directional": true + } + ] + }, + { + "ID": 9867, + "SourceStructureID": 5562, + "TargetStructureID": 79867, + "Label": "5562-79867 via Ribbon Synapse from 79860 -> 79868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79860, + "TargetID": 79868, + "Directional": true + } + ] + }, + { + "ID": 9868, + "SourceStructureID": 5562, + "TargetStructureID": 79886, + "Label": "5562-79886 via Ribbon Synapse from 63923 -> 79887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63923, + "TargetID": 79887, + "Directional": true + } + ] + }, + { + "ID": 9869, + "SourceStructureID": 5562, + "TargetStructureID": 79890, + "Label": "5562-79890 via Ribbon Synapse from 63923 -> 79892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63923, + "TargetID": 79892, + "Directional": true + } + ] + }, + { + "ID": 9870, + "SourceStructureID": 5562, + "TargetStructureID": 80206, + "Label": "5562-80206 via Ribbon Synapse from 63082 -> 80207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63082, + "TargetID": 80207, + "Directional": true + } + ] + }, + { + "ID": 9871, + "SourceStructureID": 5562, + "TargetStructureID": 80209, + "Label": "5562-80209 via Ribbon Synapse from 63082 -> 80211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63082, + "TargetID": 80211, + "Directional": true + } + ] + }, + { + "ID": 9872, + "SourceStructureID": 5562, + "TargetStructureID": 80219, + "Label": "5562-80219 via Ribbon Synapse from 63081 -> 80222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63081, + "TargetID": 80222, + "Directional": true + } + ] + }, + { + "ID": 9873, + "SourceStructureID": 5562, + "TargetStructureID": 80220, + "Label": "5562-80220 via Ribbon Synapse from 63081 -> 80221", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63081, + "TargetID": 80221, + "Directional": true + } + ] + }, + { + "ID": 9874, + "SourceStructureID": 5562, + "TargetStructureID": 80252, + "Label": "5562-80252 via Ribbon Synapse from 63088 -> 80254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63088, + "TargetID": 80254, + "Directional": true + } + ] + }, + { + "ID": 9875, + "SourceStructureID": 5562, + "TargetStructureID": 80253, + "Label": "5562-80253 via Ribbon Synapse from 63088 -> 80255", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63088, + "TargetID": 80255, + "Directional": true + } + ] + }, + { + "ID": 9876, + "SourceStructureID": 5562, + "TargetStructureID": 80315, + "Label": "5562-80315 via Ribbon Synapse from 80317 -> 80316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80317, + "TargetID": 80316, + "Directional": true + } + ] + }, + { + "ID": 9877, + "SourceStructureID": 5562, + "TargetStructureID": 80318, + "Label": "5562-80318 via Ribbon Synapse from 63242 -> 80319", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63242, + "TargetID": 80319, + "Directional": true + } + ] + }, + { + "ID": 9878, + "SourceStructureID": 5562, + "TargetStructureID": 80320, + "Label": "5562-80320 via Ribbon Synapse from 63242 -> 80321", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63242, + "TargetID": 80321, + "Directional": true + } + ] + }, + { + "ID": 9879, + "SourceStructureID": 5562, + "TargetStructureID": 80322, + "Label": "5562-80322 via Ribbon Synapse from 63242 -> 80323", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63242, + "TargetID": 80323, + "Directional": true + } + ] + }, + { + "ID": 9880, + "SourceStructureID": 5562, + "TargetStructureID": 80348, + "Label": "5562-80348 via Ribbon Synapse from 63295 -> 80349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63295, + "TargetID": 80349, + "Directional": true + } + ] + }, + { + "ID": 9881, + "SourceStructureID": 5562, + "TargetStructureID": 80353, + "Label": "5562-80353 via Ribbon Synapse from 63299 -> 80355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63299, + "TargetID": 80355, + "Directional": true + } + ] + }, + { + "ID": 9882, + "SourceStructureID": 5562, + "TargetStructureID": 80359, + "Label": "5562-80359 via Ribbon Synapse from 63295 -> 81478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63295, + "TargetID": 81478, + "Directional": true + } + ] + }, + { + "ID": 9883, + "SourceStructureID": 5562, + "TargetStructureID": 80372, + "Label": "5562-80372 via BC Conventional Synapse from 93086 -> 93085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93086, + "TargetID": 93085, + "Directional": true + } + ] + }, + { + "ID": 9884, + "SourceStructureID": 5562, + "TargetStructureID": 80381, + "Label": "5562-80381 via Ribbon Synapse from 63307 -> 80389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63307, + "TargetID": 80389, + "Directional": true + } + ] + }, + { + "ID": 9885, + "SourceStructureID": 5562, + "TargetStructureID": 80385, + "Label": "5562-80385 via Ribbon Synapse from 63304 -> 80386", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63304, + "TargetID": 80386, + "Directional": true + } + ] + }, + { + "ID": 9886, + "SourceStructureID": 5562, + "TargetStructureID": 80387, + "Label": "5562-80387 via Ribbon Synapse from 63304 -> 80388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63304, + "TargetID": 80388, + "Directional": true + } + ] + }, + { + "ID": 9887, + "SourceStructureID": 5562, + "TargetStructureID": 80390, + "Label": "5562-80390 via Ribbon Synapse from 63307 -> 80391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63307, + "TargetID": 80391, + "Directional": true + } + ] + }, + { + "ID": 9888, + "SourceStructureID": 5562, + "TargetStructureID": 80399, + "Label": "5562-80399 via Ribbon Synapse from 63285 -> 80682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63285, + "TargetID": 80682, + "Directional": true + } + ] + }, + { + "ID": 9889, + "SourceStructureID": 5562, + "TargetStructureID": 80673, + "Label": "5562-80673 via Ribbon Synapse from 63285 -> 80675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63285, + "TargetID": 80675, + "Directional": true + } + ] + }, + { + "ID": 9890, + "SourceStructureID": 5562, + "TargetStructureID": 80691, + "Label": "5562-80691 via BC Conventional Synapse from 134629 -> 134630", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134629, + "TargetID": 134630, + "Directional": true + } + ] + }, + { + "ID": 9891, + "SourceStructureID": 5562, + "TargetStructureID": 80700, + "Label": "5562-80700 via Ribbon Synapse from 63291 -> 80701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63291, + "TargetID": 80701, + "Directional": true + } + ] + }, + { + "ID": 9892, + "SourceStructureID": 5562, + "TargetStructureID": 80799, + "Label": "5562-80799 via Ribbon Synapse from 63316 -> 80800", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63316, + "TargetID": 80800, + "Directional": true + } + ] + }, + { + "ID": 9893, + "SourceStructureID": 5562, + "TargetStructureID": 80801, + "Label": "5562-80801 via BC Conventional Synapse from 80803 -> 80802", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80803, + "TargetID": 80802, + "Directional": true + } + ] + }, + { + "ID": 9894, + "SourceStructureID": 5562, + "TargetStructureID": 80818, + "Label": "5562-80818 via Ribbon Synapse from 63315 -> 80821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63315, + "TargetID": 80821, + "Directional": true + } + ] + }, + { + "ID": 9895, + "SourceStructureID": 5562, + "TargetStructureID": 80819, + "Label": "5562-80819 via Ribbon Synapse from 63315 -> 80820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63315, + "TargetID": 80820, + "Directional": true + } + ] + }, + { + "ID": 9896, + "SourceStructureID": 5562, + "TargetStructureID": 80826, + "Label": "5562-80826 via Ribbon Synapse from 63317 -> 80830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63317, + "TargetID": 80830, + "Directional": true + } + ] + }, + { + "ID": 9897, + "SourceStructureID": 5562, + "TargetStructureID": 80827, + "Label": "5562-80827 via Ribbon Synapse from 63317 -> 80832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63317, + "TargetID": 80832, + "Directional": true + } + ] + }, + { + "ID": 9898, + "SourceStructureID": 5562, + "TargetStructureID": 80829, + "Label": "5562-80829 via Ribbon Synapse from 63317 -> 80831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63317, + "TargetID": 80831, + "Directional": true + } + ] + }, + { + "ID": 9899, + "SourceStructureID": 5562, + "TargetStructureID": 80855, + "Label": "5562-80855 via Ribbon Synapse from 134634 -> 134637", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134634, + "TargetID": 134637, + "Directional": true + } + ] + }, + { + "ID": 9900, + "SourceStructureID": 5562, + "TargetStructureID": 80856, + "Label": "5562-80856 via Ribbon Synapse from 134634 -> 134636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134634, + "TargetID": 134636, + "Directional": true + } + ] + }, + { + "ID": 9901, + "SourceStructureID": 5562, + "TargetStructureID": 80858, + "Label": "5562-80858 via Ribbon Synapse from 134634 -> 134635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134634, + "TargetID": 134635, + "Directional": true + } + ] + }, + { + "ID": 9902, + "SourceStructureID": 5562, + "TargetStructureID": 80859, + "Label": "5562-80859 via Ribbon Synapse from 134634 -> 134638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134634, + "TargetID": 134638, + "Directional": true + } + ] + }, + { + "ID": 9903, + "SourceStructureID": 5562, + "TargetStructureID": 80874, + "Label": "5562-80874 via Ribbon Synapse from 63324 -> 80875", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63324, + "TargetID": 80875, + "Directional": true + } + ] + }, + { + "ID": 9904, + "SourceStructureID": 5562, + "TargetStructureID": 80876, + "Label": "5562-80876 via Ribbon Synapse from 63324 -> 80877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63324, + "TargetID": 80877, + "Directional": true + } + ] + }, + { + "ID": 9905, + "SourceStructureID": 5562, + "TargetStructureID": 80882, + "Label": "5562-80882 via Ribbon Synapse from 63323 -> 80883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63323, + "TargetID": 80883, + "Directional": true + } + ] + }, + { + "ID": 9906, + "SourceStructureID": 5562, + "TargetStructureID": 80891, + "Label": "5562-80891 via Ribbon Synapse from 63325 -> 80892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63325, + "TargetID": 80892, + "Directional": true + } + ] + }, + { + "ID": 9907, + "SourceStructureID": 5562, + "TargetStructureID": 80893, + "Label": "5562-80893 via Ribbon Synapse from 63325 -> 80895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63325, + "TargetID": 80895, + "Directional": true + } + ] + }, + { + "ID": 9908, + "SourceStructureID": 5562, + "TargetStructureID": 81799, + "Label": "5562-81799 via Ribbon Synapse from 77220 -> 81815, 77238 -> 81806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77220, + "TargetID": 81815, + "Directional": true + }, + { + "SourceID": 77238, + "TargetID": 81806, + "Directional": true + } + ] + }, + { + "ID": 9909, + "SourceStructureID": 5562, + "TargetStructureID": 81810, + "Label": "5562-81810 via Ribbon Synapse from 77238 -> 81811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77238, + "TargetID": 81811, + "Directional": true + } + ] + }, + { + "ID": 9910, + "SourceStructureID": 5562, + "TargetStructureID": 81852, + "Label": "5562-81852 via Unknown from 81851 -> 81853", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 81851, + "TargetID": 81853, + "Directional": true + } + ] + }, + { + "ID": 9911, + "SourceStructureID": 5562, + "TargetStructureID": 81875, + "Label": "5562-81875 via Ribbon Synapse from 134646 -> 134648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134646, + "TargetID": 134648, + "Directional": true + } + ] + }, + { + "ID": 9912, + "SourceStructureID": 5562, + "TargetStructureID": 82462, + "Label": "5562-82462 via Ribbon Synapse from 63731 -> 82465", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63731, + "TargetID": 82465, + "Directional": true + } + ] + }, + { + "ID": 9913, + "SourceStructureID": 5562, + "TargetStructureID": 84520, + "Label": "5562-84520 via Ribbon Synapse from 49563 -> 84522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49563, + "TargetID": 84522, + "Directional": true + } + ] + }, + { + "ID": 9914, + "SourceStructureID": 5562, + "TargetStructureID": 84530, + "Label": "5562-84530 via Ribbon Synapse from 31300 -> 116710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31300, + "TargetID": 116710, + "Directional": true + } + ] + }, + { + "ID": 9915, + "SourceStructureID": 5563, + "TargetStructureID": 4850, + "Label": "5563-4850 via Ribbon Synapse from 14302 -> 14301, 19488 -> 19489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14302, + "TargetID": 14301, + "Directional": true + }, + { + "SourceID": 19488, + "TargetID": 19489, + "Directional": true + } + ] + }, + { + "ID": 9916, + "SourceStructureID": 5563, + "TargetStructureID": 5402, + "Label": "5563-5402 via Ribbon Synapse from 32387 -> 129594, 32393 -> 129601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32387, + "TargetID": 129594, + "Directional": true + }, + { + "SourceID": 32393, + "TargetID": 129601, + "Directional": true + } + ] + }, + { + "ID": 9917, + "SourceStructureID": 5563, + "TargetStructureID": 7050, + "Label": "5563-7050 via Ribbon Synapse from 19504 -> 19503, 31447 -> 32397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19504, + "TargetID": 19503, + "Directional": true + }, + { + "SourceID": 31447, + "TargetID": 32397, + "Directional": true + } + ] + }, + { + "ID": 9918, + "SourceStructureID": 5563, + "TargetStructureID": 8037, + "Label": "5563-8037 via Ribbon Synapse from 32387 -> 32386, 32389 -> 32388, 32393 -> 32394, 32395 -> 32396, 56818 -> 56821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32387, + "TargetID": 32386, + "Directional": true + }, + { + "SourceID": 32389, + "TargetID": 32388, + "Directional": true + }, + { + "SourceID": 32393, + "TargetID": 32394, + "Directional": true + }, + { + "SourceID": 32395, + "TargetID": 32396, + "Directional": true + }, + { + "SourceID": 56818, + "TargetID": 56821, + "Directional": true + } + ] + }, + { + "ID": 9919, + "SourceStructureID": 5563, + "TargetStructureID": 9260, + "Label": "5563-9260 via Ribbon Synapse from 66248 -> 98789, 98792 -> 98793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66248, + "TargetID": 98789, + "Directional": true + }, + { + "SourceID": 98792, + "TargetID": 98793, + "Directional": true + } + ] + }, + { + "ID": 9920, + "SourceStructureID": 5563, + "TargetStructureID": 12897, + "Label": "5563-12897 via Ribbon Synapse from 56657 -> 60636, 66250 -> 66251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56657, + "TargetID": 60636, + "Directional": true + }, + { + "SourceID": 66250, + "TargetID": 66251, + "Directional": true + } + ] + }, + { + "ID": 9921, + "SourceStructureID": 5563, + "TargetStructureID": 18282, + "Label": "5563-18282 via Ribbon Synapse from 31447 -> 31446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31447, + "TargetID": 31446, + "Directional": true + } + ] + }, + { + "ID": 9922, + "SourceStructureID": 5565, + "TargetStructureID": 606, + "Label": "5565-606 via Ribbon Synapse from 50172 -> 39921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50172, + "TargetID": 39921, + "Directional": true + } + ] + }, + { + "ID": 9923, + "SourceStructureID": 5565, + "TargetStructureID": 32994, + "Label": "5565-32994 via Ribbon Synapse from 35102 -> 35101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35102, + "TargetID": 35101, + "Directional": true + } + ] + }, + { + "ID": 9924, + "SourceStructureID": 5565, + "TargetStructureID": 35232, + "Label": "5565-35232 via Ribbon Synapse from 37685 -> 35235", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37685, + "TargetID": 35235, + "Directional": true + } + ] + }, + { + "ID": 9925, + "SourceStructureID": 5565, + "TargetStructureID": 89312, + "Label": "5565-89312 via BC Conventional Synapse from 89314 -> 89313", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89314, + "TargetID": 89313, + "Directional": true + } + ] + }, + { + "ID": 9926, + "SourceStructureID": 5565, + "TargetStructureID": 97401, + "Label": "5565-97401 via Ribbon Synapse from 53985 -> 97402", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53985, + "TargetID": 97402, + "Directional": true + } + ] + }, + { + "ID": 9927, + "SourceStructureID": 5566, + "TargetStructureID": 5107, + "Label": "5566-5107 via Ribbon Synapse from 148326 -> 148324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148326, + "TargetID": 148324, + "Directional": true + } + ] + }, + { + "ID": 9928, + "SourceStructureID": 5566, + "TargetStructureID": 5497, + "Label": "5566-5497 via Ribbon Synapse from 59199 -> 59200", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59199, + "TargetID": 59200, + "Directional": true + } + ] + }, + { + "ID": 9929, + "SourceStructureID": 5566, + "TargetStructureID": 59271, + "Label": "5566-59271 via Ribbon Synapse from 33669 -> 59272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33669, + "TargetID": 59272, + "Directional": true + } + ] + }, + { + "ID": 9930, + "SourceStructureID": 5566, + "TargetStructureID": 59275, + "Label": "5566-59275 via Ribbon Synapse from 59274 -> 59276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59274, + "TargetID": 59276, + "Directional": true + } + ] + }, + { + "ID": 9931, + "SourceStructureID": 5568, + "TargetStructureID": 389, + "Label": "5568-389 via BC Conventional Synapse from 62141 -> 62140", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62141, + "TargetID": 62140, + "Directional": true + } + ] + }, + { + "ID": 9932, + "SourceStructureID": 5568, + "TargetStructureID": 4890, + "Label": "5568-4890 via Ribbon Synapse from 99177 -> 64873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99177, + "TargetID": 64873, + "Directional": true + } + ] + }, + { + "ID": 9933, + "SourceStructureID": 5568, + "TargetStructureID": 5405, + "Label": "5568-5405 via Ribbon Synapse from 11062 -> 11061, 49987 -> 11047, 50368 -> 11149", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11062, + "TargetID": 11061, + "Directional": true + }, + { + "SourceID": 49987, + "TargetID": 11047, + "Directional": true + }, + { + "SourceID": 50368, + "TargetID": 11149, + "Directional": true + } + ] + }, + { + "ID": 9934, + "SourceStructureID": 5568, + "TargetStructureID": 8575, + "Label": "5568-8575 via BC Conventional Synapse from 62139 -> 62134", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62139, + "TargetID": 62134, + "Directional": true + } + ] + }, + { + "ID": 9935, + "SourceStructureID": 5568, + "TargetStructureID": 8575, + "Label": "5568-8575 via Ribbon Synapse from 49961 -> 62780, 62380 -> 62376, 62782 -> 62781, 121329 -> 121330, 121405 -> 43288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49961, + "TargetID": 62780, + "Directional": true + }, + { + "SourceID": 62380, + "TargetID": 62376, + "Directional": true + }, + { + "SourceID": 62782, + "TargetID": 62781, + "Directional": true + }, + { + "SourceID": 121329, + "TargetID": 121330, + "Directional": true + }, + { + "SourceID": 121405, + "TargetID": 43288, + "Directional": true + } + ] + }, + { + "ID": 9936, + "SourceStructureID": 5568, + "TargetStructureID": 32994, + "Label": "5568-32994 via Ribbon Synapse from 99174 -> 32998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99174, + "TargetID": 32998, + "Directional": true + } + ] + }, + { + "ID": 9937, + "SourceStructureID": 5568, + "TargetStructureID": 35475, + "Label": "5568-35475 via Ribbon Synapse from 35479 -> 35478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35479, + "TargetID": 35478, + "Directional": true + } + ] + }, + { + "ID": 9938, + "SourceStructureID": 5568, + "TargetStructureID": 87178, + "Label": "5568-87178 via Ribbon Synapse from 121473 -> 87179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121473, + "TargetID": 87179, + "Directional": true + } + ] + }, + { + "ID": 9939, + "SourceStructureID": 5568, + "TargetStructureID": 89571, + "Label": "5568-89571 via Ribbon Synapse from 50362 -> 89575", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50362, + "TargetID": 89575, + "Directional": true + } + ] + }, + { + "ID": 9940, + "SourceStructureID": 5575, + "TargetStructureID": 906, + "Label": "5575-906 via Conventional from 22959 -> 15235", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22959, + "TargetID": 15235, + "Directional": true + } + ] + }, + { + "ID": 9941, + "SourceStructureID": 5575, + "TargetStructureID": 15796, + "Label": "5575-15796 via Conventional from 23079 -> 27205", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23079, + "TargetID": 27205, + "Directional": true + } + ] + }, + { + "ID": 9942, + "SourceStructureID": 5575, + "TargetStructureID": 18693, + "Label": "5575-18693 via Conventional from 22966 -> 18724, 23081 -> 39463", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22966, + "TargetID": 18724, + "Directional": true + }, + { + "SourceID": 23081, + "TargetID": 39463, + "Directional": true + } + ] + }, + { + "ID": 9943, + "SourceStructureID": 5575, + "TargetStructureID": 27288, + "Label": "5575-27288 via Conventional from 23088 -> 27298, 23096 -> 27295", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23088, + "TargetID": 27298, + "Directional": true + }, + { + "SourceID": 23096, + "TargetID": 27295, + "Directional": true + } + ] + }, + { + "ID": 9944, + "SourceStructureID": 5575, + "TargetStructureID": 27304, + "Label": "5575-27304 via Conventional from 22955 -> 27315", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22955, + "TargetID": 27315, + "Directional": true + } + ] + }, + { + "ID": 9945, + "SourceStructureID": 5575, + "TargetStructureID": 47013, + "Label": "5575-47013 via Conventional from 23068 -> 47028", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23068, + "TargetID": 47028, + "Directional": true + } + ] + }, + { + "ID": 9946, + "SourceStructureID": 5582, + "TargetStructureID": 28950, + "Label": "5582-28950 via Ribbon Synapse from 136371 -> 136364, 136395 -> 136396", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136371, + "TargetID": 136364, + "Directional": true + }, + { + "SourceID": 136395, + "TargetID": 136396, + "Directional": true + } + ] + }, + { + "ID": 9947, + "SourceStructureID": 5582, + "TargetStructureID": 136393, + "Label": "5582-136393 via Ribbon Synapse from 136392 -> 136394", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136392, + "TargetID": 136394, + "Directional": true + } + ] + }, + { + "ID": 9948, + "SourceStructureID": 5584, + "TargetStructureID": 5107, + "Label": "5584-5107 via Ribbon Synapse from 124490 -> 124489, 126927 -> 126919", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124490, + "TargetID": 124489, + "Directional": true + }, + { + "SourceID": 126927, + "TargetID": 126919, + "Directional": true + } + ] + }, + { + "ID": 9949, + "SourceStructureID": 5584, + "TargetStructureID": 5117, + "Label": "5584-5117 via Ribbon Synapse from 126925 -> 126926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126925, + "TargetID": 126926, + "Directional": true + } + ] + }, + { + "ID": 9950, + "SourceStructureID": 5584, + "TargetStructureID": 5442, + "Label": "5584-5442 via Ribbon Synapse from 48219 -> 15275, 55118 -> 15274", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48219, + "TargetID": 15275, + "Directional": true + }, + { + "SourceID": 55118, + "TargetID": 15274, + "Directional": true + } + ] + }, + { + "ID": 9951, + "SourceStructureID": 5584, + "TargetStructureID": 15796, + "Label": "5584-15796 via Ribbon Synapse from 55835 -> 52884, 147763 -> 147762", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55835, + "TargetID": 52884, + "Directional": true + }, + { + "SourceID": 147763, + "TargetID": 147762, + "Directional": true + } + ] + }, + { + "ID": 9952, + "SourceStructureID": 5584, + "TargetStructureID": 23870, + "Label": "5584-23870 via BC Conventional Synapse from 37925 -> 23900", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37925, + "TargetID": 23900, + "Directional": true + } + ] + }, + { + "ID": 9953, + "SourceStructureID": 5584, + "TargetStructureID": 33272, + "Label": "5584-33272 via Ribbon Synapse from 57198 -> 33279, 89768 -> 89769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57198, + "TargetID": 33279, + "Directional": true + }, + { + "SourceID": 89768, + "TargetID": 89769, + "Directional": true + } + ] + }, + { + "ID": 9954, + "SourceStructureID": 5584, + "TargetStructureID": 35811, + "Label": "5584-35811 via Ribbon Synapse from 35881 -> 35880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35881, + "TargetID": 35880, + "Directional": true + } + ] + }, + { + "ID": 9955, + "SourceStructureID": 5584, + "TargetStructureID": 38949, + "Label": "5584-38949 via Ribbon Synapse from 38974 -> 38971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38974, + "TargetID": 38971, + "Directional": true + } + ] + }, + { + "ID": 9956, + "SourceStructureID": 5584, + "TargetStructureID": 56841, + "Label": "5584-56841 via Ribbon Synapse from 123795 -> 123796", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123795, + "TargetID": 123796, + "Directional": true + } + ] + }, + { + "ID": 9957, + "SourceStructureID": 5585, + "TargetStructureID": 5351, + "Label": "5585-5351 via Ribbon Synapse from 24109 -> 24107", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24109, + "TargetID": 24107, + "Directional": true + } + ] + }, + { + "ID": 9958, + "SourceStructureID": 5585, + "TargetStructureID": 7114, + "Label": "5585-7114 via Ribbon Synapse from 24113 -> 24112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24113, + "TargetID": 24112, + "Directional": true + } + ] + }, + { + "ID": 9959, + "SourceStructureID": 5585, + "TargetStructureID": 85856, + "Label": "5585-85856 via Ribbon Synapse from 32436 -> 32434, 32438 -> 32437, 32439 -> 32440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32436, + "TargetID": 32434, + "Directional": true + }, + { + "SourceID": 32438, + "TargetID": 32437, + "Directional": true + }, + { + "SourceID": 32439, + "TargetID": 32440, + "Directional": true + } + ] + }, + { + "ID": 9960, + "SourceStructureID": 5587, + "TargetStructureID": 7114, + "Label": "5587-7114 via Ribbon Synapse from 136454 -> 136455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136454, + "TargetID": 136455, + "Directional": true + } + ] + }, + { + "ID": 9961, + "SourceStructureID": 5587, + "TargetStructureID": 28950, + "Label": "5587-28950 via Ribbon Synapse from 136553 -> 136551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136553, + "TargetID": 136551, + "Directional": true + } + ] + }, + { + "ID": 9962, + "SourceStructureID": 5587, + "TargetStructureID": 129648, + "Label": "5587-129648 via Ribbon Synapse from 129733 -> 129731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129733, + "TargetID": 129731, + "Directional": true + } + ] + }, + { + "ID": 9963, + "SourceStructureID": 5587, + "TargetStructureID": 129798, + "Label": "5587-129798 via Ribbon Synapse from 129819 -> 129818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129819, + "TargetID": 129818, + "Directional": true + } + ] + }, + { + "ID": 9964, + "SourceStructureID": 5587, + "TargetStructureID": 136432, + "Label": "5587-136432 via Ribbon Synapse from 136443 -> 136440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136443, + "TargetID": 136440, + "Directional": true + } + ] + }, + { + "ID": 9965, + "SourceStructureID": 5592, + "TargetStructureID": 5442, + "Label": "5592-5442 via Ribbon Synapse from 36834 -> 74425", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36834, + "TargetID": 74425, + "Directional": true + } + ] + }, + { + "ID": 9966, + "SourceStructureID": 5592, + "TargetStructureID": 23870, + "Label": "5592-23870 via Ribbon Synapse from 92948 -> 92950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92948, + "TargetID": 92950, + "Directional": true + } + ] + }, + { + "ID": 9967, + "SourceStructureID": 5595, + "TargetStructureID": 7113, + "Label": "5595-7113 via Ribbon Synapse from 15283 -> 34911, 15285 -> 34912, 32425 -> 32430, 32425 -> 124076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15283, + "TargetID": 34911, + "Directional": true + }, + { + "SourceID": 15285, + "TargetID": 34912, + "Directional": true + }, + { + "SourceID": 32425, + "TargetID": 32430, + "Directional": true + }, + { + "SourceID": 32425, + "TargetID": 124076, + "Directional": true + } + ] + }, + { + "ID": 9968, + "SourceStructureID": 5595, + "TargetStructureID": 32422, + "Label": "5595-32422 via Ribbon Synapse from 32425 -> 32424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32425, + "TargetID": 32424, + "Directional": true + } + ] + }, + { + "ID": 9969, + "SourceStructureID": 5596, + "TargetStructureID": 7114, + "Label": "5596-7114 via Ribbon Synapse from 36871 -> 26608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36871, + "TargetID": 26608, + "Directional": true + } + ] + }, + { + "ID": 9970, + "SourceStructureID": 5596, + "TargetStructureID": 42816, + "Label": "5596-42816 via Ribbon Synapse from 42835 -> 42836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42835, + "TargetID": 42836, + "Directional": true + } + ] + }, + { + "ID": 9971, + "SourceStructureID": 5596, + "TargetStructureID": 60558, + "Label": "5596-60558 via Cistern Pre from 60580 -> 60582", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 60580, + "TargetID": 60582, + "Directional": true + } + ] + }, + { + "ID": 9972, + "SourceStructureID": 5596, + "TargetStructureID": 60558, + "Label": "5596-60558 via Ribbon Synapse from 36868 -> 60579, 36870 -> 60560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36868, + "TargetID": 60579, + "Directional": true + }, + { + "SourceID": 36870, + "TargetID": 60560, + "Directional": true + } + ] + }, + { + "ID": 9973, + "SourceStructureID": 5598, + "TargetStructureID": 5107, + "Label": "5598-5107 via Ribbon Synapse from 45195 -> 53135, 52969 -> 116701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45195, + "TargetID": 53135, + "Directional": true + }, + { + "SourceID": 52969, + "TargetID": 116701, + "Directional": true + } + ] + }, + { + "ID": 9974, + "SourceStructureID": 5598, + "TargetStructureID": 5442, + "Label": "5598-5442 via Ribbon Synapse from 12549 -> 55123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12549, + "TargetID": 55123, + "Directional": true + } + ] + }, + { + "ID": 9975, + "SourceStructureID": 5598, + "TargetStructureID": 9769, + "Label": "5598-9769 via Ribbon Synapse from 23907 -> 53125, 45196 -> 29957, 54479 -> 54481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23907, + "TargetID": 53125, + "Directional": true + }, + { + "SourceID": 45196, + "TargetID": 29957, + "Directional": true + }, + { + "SourceID": 54479, + "TargetID": 54481, + "Directional": true + } + ] + }, + { + "ID": 9976, + "SourceStructureID": 5598, + "TargetStructureID": 23870, + "Label": "5598-23870 via Ribbon Synapse from 23907 -> 23906, 23908 -> 23905, 23912 -> 23911, 36018 -> 36019, 36021 -> 23915, 54479 -> 23918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23907, + "TargetID": 23906, + "Directional": true + }, + { + "SourceID": 23908, + "TargetID": 23905, + "Directional": true + }, + { + "SourceID": 23912, + "TargetID": 23911, + "Directional": true + }, + { + "SourceID": 36018, + "TargetID": 36019, + "Directional": true + }, + { + "SourceID": 36021, + "TargetID": 23915, + "Directional": true + }, + { + "SourceID": 54479, + "TargetID": 23918, + "Directional": true + } + ] + }, + { + "ID": 9977, + "SourceStructureID": 5598, + "TargetStructureID": 31605, + "Label": "5598-31605 via BC Conventional Synapse from 124087 -> 126965", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124087, + "TargetID": 126965, + "Directional": true + } + ] + }, + { + "ID": 9978, + "SourceStructureID": 5598, + "TargetStructureID": 34055, + "Label": "5598-34055 via Ribbon Synapse from 34120 -> 34119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34120, + "TargetID": 34119, + "Directional": true + } + ] + }, + { + "ID": 9979, + "SourceStructureID": 5598, + "TargetStructureID": 35335, + "Label": "5598-35335 via Ribbon Synapse from 35341 -> 35340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35341, + "TargetID": 35340, + "Directional": true + } + ] + }, + { + "ID": 9980, + "SourceStructureID": 5598, + "TargetStructureID": 35811, + "Label": "5598-35811 via Ribbon Synapse from 35874 -> 35873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35874, + "TargetID": 35873, + "Directional": true + } + ] + }, + { + "ID": 9981, + "SourceStructureID": 5598, + "TargetStructureID": 54482, + "Label": "5598-54482 via Ribbon Synapse from 54485 -> 54484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54485, + "TargetID": 54484, + "Directional": true + } + ] + }, + { + "ID": 9982, + "SourceStructureID": 5598, + "TargetStructureID": 57299, + "Label": "5598-57299 via Ribbon Synapse from 56774 -> 123854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56774, + "TargetID": 123854, + "Directional": true + } + ] + }, + { + "ID": 9983, + "SourceStructureID": 5598, + "TargetStructureID": 68539, + "Label": "5598-68539 via Ribbon Synapse from 74550 -> 74552, 114936 -> 123879, 115227 -> 124257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74550, + "TargetID": 74552, + "Directional": true + }, + { + "SourceID": 114936, + "TargetID": 123879, + "Directional": true + }, + { + "SourceID": 115227, + "TargetID": 124257, + "Directional": true + } + ] + }, + { + "ID": 9984, + "SourceStructureID": 5598, + "TargetStructureID": 73348, + "Label": "5598-73348 via Ribbon Synapse from 59061 -> 124604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59061, + "TargetID": 124604, + "Directional": true + } + ] + }, + { + "ID": 9985, + "SourceStructureID": 5598, + "TargetStructureID": 74548, + "Label": "5598-74548 via Ribbon Synapse from 74550 -> 74551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74550, + "TargetID": 74551, + "Directional": true + } + ] + }, + { + "ID": 9986, + "SourceStructureID": 5598, + "TargetStructureID": 116142, + "Label": "5598-116142 via BC Conventional Synapse from 115250 -> 123865, 115252 -> 123866, 115262 -> 120934", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115250, + "TargetID": 123865, + "Directional": true + }, + { + "SourceID": 115252, + "TargetID": 123866, + "Directional": true + }, + { + "SourceID": 115262, + "TargetID": 120934, + "Directional": true + } + ] + }, + { + "ID": 9987, + "SourceStructureID": 5598, + "TargetStructureID": 116142, + "Label": "5598-116142 via Ribbon Synapse from 115283 -> 120933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115283, + "TargetID": 120933, + "Directional": true + } + ] + }, + { + "ID": 9988, + "SourceStructureID": 5598, + "TargetStructureID": 124069, + "Label": "5598-124069 via Ribbon Synapse from 115000 -> 124071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115000, + "TargetID": 124071, + "Directional": true + } + ] + }, + { + "ID": 9989, + "SourceStructureID": 5598, + "TargetStructureID": 124198, + "Label": "5598-124198 via BC Conventional Synapse from 114611 -> 124204", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114611, + "TargetID": 124204, + "Directional": true + } + ] + }, + { + "ID": 9990, + "SourceStructureID": 5599, + "TargetStructureID": 4890, + "Label": "5599-4890 via Ribbon Synapse from 28842 -> 5318, 28849 -> 28838, 38327 -> 4931, 38328 -> 6095", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28842, + "TargetID": 5318, + "Directional": true + }, + { + "SourceID": 28849, + "TargetID": 28838, + "Directional": true + }, + { + "SourceID": 38327, + "TargetID": 4931, + "Directional": true + }, + { + "SourceID": 38328, + "TargetID": 6095, + "Directional": true + } + ] + }, + { + "ID": 9991, + "SourceStructureID": 5599, + "TargetStructureID": 5117, + "Label": "5599-5117 via Ribbon Synapse from 38330 -> 28799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38330, + "TargetID": 28799, + "Directional": true + } + ] + }, + { + "ID": 9992, + "SourceStructureID": 5599, + "TargetStructureID": 5118, + "Label": "5599-5118 via BC Conventional Synapse from 52173 -> 52172, 56278 -> 56279", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52173, + "TargetID": 52172, + "Directional": true + }, + { + "SourceID": 56278, + "TargetID": 56279, + "Directional": true + } + ] + }, + { + "ID": 9993, + "SourceStructureID": 5599, + "TargetStructureID": 5118, + "Label": "5599-5118 via Ribbon Synapse from 52168 -> 52167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52168, + "TargetID": 52167, + "Directional": true + } + ] + }, + { + "ID": 9994, + "SourceStructureID": 5599, + "TargetStructureID": 5374, + "Label": "5599-5374 via Ribbon Synapse from 56119 -> 131158", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56119, + "TargetID": 131158, + "Directional": true + } + ] + }, + { + "ID": 9995, + "SourceStructureID": 5599, + "TargetStructureID": 5439, + "Label": "5599-5439 via Ribbon Synapse from 66595 -> 66596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66595, + "TargetID": 66596, + "Directional": true + } + ] + }, + { + "ID": 9996, + "SourceStructureID": 5599, + "TargetStructureID": 8580, + "Label": "5599-8580 via BC Conventional Synapse from 73673 -> 59827, 73673 -> 73675", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73673, + "TargetID": 59827, + "Directional": true + }, + { + "SourceID": 73673, + "TargetID": 73675, + "Directional": true + } + ] + }, + { + "ID": 9997, + "SourceStructureID": 5599, + "TargetStructureID": 8580, + "Label": "5599-8580 via Ribbon Synapse from 59828 -> 59827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59828, + "TargetID": 59827, + "Directional": true + } + ] + }, + { + "ID": 9998, + "SourceStructureID": 5599, + "TargetStructureID": 18282, + "Label": "5599-18282 via BC Conventional Synapse from 56159 -> 72340", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56159, + "TargetID": 72340, + "Directional": true + } + ] + }, + { + "ID": 9999, + "SourceStructureID": 5599, + "TargetStructureID": 29702, + "Label": "5599-29702 via Ribbon Synapse from 75555 -> 75505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75555, + "TargetID": 75505, + "Directional": true + } + ] + }, + { + "ID": 10000, + "SourceStructureID": 5599, + "TargetStructureID": 38307, + "Label": "5599-38307 via Ribbon Synapse from 38325 -> 38323", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38325, + "TargetID": 38323, + "Directional": true + } + ] + }, + { + "ID": 10001, + "SourceStructureID": 5599, + "TargetStructureID": 44970, + "Label": "5599-44970 via Ribbon Synapse from 44789 -> 44992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44789, + "TargetID": 44992, + "Directional": true + } + ] + }, + { + "ID": 10002, + "SourceStructureID": 5599, + "TargetStructureID": 63978, + "Label": "5599-63978 via Ribbon Synapse from 64005 -> 64004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64005, + "TargetID": 64004, + "Directional": true + } + ] + }, + { + "ID": 10003, + "SourceStructureID": 5599, + "TargetStructureID": 66407, + "Label": "5599-66407 via Ribbon Synapse from 56200 -> 69492, 135180 -> 135182", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56200, + "TargetID": 69492, + "Directional": true + }, + { + "SourceID": 135180, + "TargetID": 135182, + "Directional": true + } + ] + }, + { + "ID": 10004, + "SourceStructureID": 5599, + "TargetStructureID": 66768, + "Label": "5599-66768 via Ribbon Synapse from 131159 -> 131160", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131159, + "TargetID": 131160, + "Directional": true + } + ] + }, + { + "ID": 10005, + "SourceStructureID": 5599, + "TargetStructureID": 72299, + "Label": "5599-72299 via Ribbon Synapse from 135160 -> 135161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135160, + "TargetID": 135161, + "Directional": true + } + ] + }, + { + "ID": 10006, + "SourceStructureID": 5599, + "TargetStructureID": 131156, + "Label": "5599-131156 via Ribbon Synapse from 56119 -> 131157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56119, + "TargetID": 131157, + "Directional": true + } + ] + }, + { + "ID": 10007, + "SourceStructureID": 5600, + "TargetStructureID": 606, + "Label": "5600-606 via Ribbon Synapse from 51860 -> 51861", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51860, + "TargetID": 51861, + "Directional": true + } + ] + }, + { + "ID": 10008, + "SourceStructureID": 5600, + "TargetStructureID": 5118, + "Label": "5600-5118 via BC Conventional Synapse from 52197 -> 52196, 52203 -> 52202", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52197, + "TargetID": 52196, + "Directional": true + }, + { + "SourceID": 52203, + "TargetID": 52202, + "Directional": true + } + ] + }, + { + "ID": 10009, + "SourceStructureID": 5600, + "TargetStructureID": 5118, + "Label": "5600-5118 via Ribbon Synapse from 52201 -> 52198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52201, + "TargetID": 52198, + "Directional": true + } + ] + }, + { + "ID": 10010, + "SourceStructureID": 5600, + "TargetStructureID": 5374, + "Label": "5600-5374 via Ribbon Synapse from 20454 -> 20453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20454, + "TargetID": 20453, + "Directional": true + } + ] + }, + { + "ID": 10011, + "SourceStructureID": 5600, + "TargetStructureID": 7114, + "Label": "5600-7114 via Ribbon Synapse from 20436 -> 7917, 26613 -> 26612, 95595 -> 95596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20436, + "TargetID": 7917, + "Directional": true + }, + { + "SourceID": 26613, + "TargetID": 26612, + "Directional": true + }, + { + "SourceID": 95595, + "TargetID": 95596, + "Directional": true + } + ] + }, + { + "ID": 10012, + "SourceStructureID": 5600, + "TargetStructureID": 7231, + "Label": "5600-7231 via BC Conventional Synapse from 116993 -> 116992, 117004 -> 117003", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116993, + "TargetID": 116992, + "Directional": true + }, + { + "SourceID": 117004, + "TargetID": 117003, + "Directional": true + } + ] + }, + { + "ID": 10013, + "SourceStructureID": 5600, + "TargetStructureID": 7231, + "Label": "5600-7231 via Ribbon Synapse from 37874 -> 117019, 116942 -> 117006, 116943 -> 117006, 116944 -> 116996, 116963 -> 116964, 117001 -> 116996", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37874, + "TargetID": 117019, + "Directional": true + }, + { + "SourceID": 116942, + "TargetID": 117006, + "Directional": true + }, + { + "SourceID": 116943, + "TargetID": 117006, + "Directional": true + }, + { + "SourceID": 116944, + "TargetID": 116996, + "Directional": true + }, + { + "SourceID": 116963, + "TargetID": 116964, + "Directional": true + }, + { + "SourceID": 117001, + "TargetID": 116996, + "Directional": true + } + ] + }, + { + "ID": 10014, + "SourceStructureID": 5600, + "TargetStructureID": 8579, + "Label": "5600-8579 via Ribbon Synapse from 26626 -> 62701, 62691 -> 62690, 116648 -> 63138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26626, + "TargetID": 62701, + "Directional": true + }, + { + "SourceID": 62691, + "TargetID": 62690, + "Directional": true + }, + { + "SourceID": 116648, + "TargetID": 63138, + "Directional": true + } + ] + }, + { + "ID": 10015, + "SourceStructureID": 5600, + "TargetStructureID": 18282, + "Label": "5600-18282 via Ribbon Synapse from 20438 -> 20433", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20438, + "TargetID": 20433, + "Directional": true + } + ] + }, + { + "ID": 10016, + "SourceStructureID": 5600, + "TargetStructureID": 35183, + "Label": "5600-35183 via Ribbon Synapse from 35187 -> 35186", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35187, + "TargetID": 35186, + "Directional": true + } + ] + }, + { + "ID": 10017, + "SourceStructureID": 5600, + "TargetStructureID": 39319, + "Label": "5600-39319 via Ribbon Synapse from 39687 -> 39686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39687, + "TargetID": 39686, + "Directional": true + } + ] + }, + { + "ID": 10018, + "SourceStructureID": 5600, + "TargetStructureID": 122760, + "Label": "5600-122760 via Ribbon Synapse from 122762 -> 122761, 122762 -> 122765, 122764 -> 122765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122762, + "TargetID": 122761, + "Directional": true + }, + { + "SourceID": 122762, + "TargetID": 122765, + "Directional": true + }, + { + "SourceID": 122764, + "TargetID": 122765, + "Directional": true + } + ] + }, + { + "ID": 10019, + "SourceStructureID": 5600, + "TargetStructureID": 122768, + "Label": "5600-122768 via Ribbon Synapse from 122772 -> 122771, 122783 -> 122784, 122819 -> 122818, 122820 -> 122818, 122821 -> 122822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122772, + "TargetID": 122771, + "Directional": true + }, + { + "SourceID": 122783, + "TargetID": 122784, + "Directional": true + }, + { + "SourceID": 122819, + "TargetID": 122818, + "Directional": true + }, + { + "SourceID": 122820, + "TargetID": 122818, + "Directional": true + }, + { + "SourceID": 122821, + "TargetID": 122822, + "Directional": true + } + ] + }, + { + "ID": 10020, + "SourceStructureID": 5600, + "TargetStructureID": 122829, + "Label": "5600-122829 via Ribbon Synapse from 122831 -> 122830, 122833 -> 122832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122831, + "TargetID": 122830, + "Directional": true + }, + { + "SourceID": 122833, + "TargetID": 122832, + "Directional": true + } + ] + }, + { + "ID": 10021, + "SourceStructureID": 5600, + "TargetStructureID": 126901, + "Label": "5600-126901 via Ribbon Synapse from 126902 -> 126903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126902, + "TargetID": 126903, + "Directional": true + } + ] + }, + { + "ID": 10022, + "SourceStructureID": 5601, + "TargetStructureID": 606, + "Label": "5601-606 via BC Conventional Synapse from 54592 -> 54591", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54592, + "TargetID": 54591, + "Directional": true + } + ] + }, + { + "ID": 10023, + "SourceStructureID": 5601, + "TargetStructureID": 606, + "Label": "5601-606 via Ribbon Synapse from 44282 -> 10523, 54132 -> 54134, 54151 -> 54147, 54153 -> 10522, 54154 -> 54157, 54155 -> 54156, 54487 -> 54488, 54550 -> 54488, 54568 -> 54571, 54573 -> 54575, 54603 -> 54607, 54604 -> 54607, 54605 -> 54607", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44282, + "TargetID": 10523, + "Directional": true + }, + { + "SourceID": 54132, + "TargetID": 54134, + "Directional": true + }, + { + "SourceID": 54151, + "TargetID": 54147, + "Directional": true + }, + { + "SourceID": 54153, + "TargetID": 10522, + "Directional": true + }, + { + "SourceID": 54154, + "TargetID": 54157, + "Directional": true + }, + { + "SourceID": 54155, + "TargetID": 54156, + "Directional": true + }, + { + "SourceID": 54487, + "TargetID": 54488, + "Directional": true + }, + { + "SourceID": 54550, + "TargetID": 54488, + "Directional": true + }, + { + "SourceID": 54568, + "TargetID": 54571, + "Directional": true + }, + { + "SourceID": 54573, + "TargetID": 54575, + "Directional": true + }, + { + "SourceID": 54603, + "TargetID": 54607, + "Directional": true + }, + { + "SourceID": 54604, + "TargetID": 54607, + "Directional": true + }, + { + "SourceID": 54605, + "TargetID": 54607, + "Directional": true + } + ] + }, + { + "ID": 10024, + "SourceStructureID": 5601, + "TargetStructureID": 7594, + "Label": "5601-7594 via Ribbon Synapse from 54132 -> 7607, 54154 -> 7612, 91349 -> 7630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54132, + "TargetID": 7607, + "Directional": true + }, + { + "SourceID": 54154, + "TargetID": 7612, + "Directional": true + }, + { + "SourceID": 91349, + "TargetID": 7630, + "Directional": true + } + ] + }, + { + "ID": 10025, + "SourceStructureID": 5601, + "TargetStructureID": 9769, + "Label": "5601-9769 via Ribbon Synapse from 23945 -> 23939, 23953 -> 23952, 23969 -> 23968, 23980 -> 23976, 23984 -> 23981, 23989 -> 23988, 23991 -> 23990, 29951 -> 29941, 54487 -> 23966, 54550 -> 23966, 56103 -> 75335, 93096 -> 93097", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23945, + "TargetID": 23939, + "Directional": true + }, + { + "SourceID": 23953, + "TargetID": 23952, + "Directional": true + }, + { + "SourceID": 23969, + "TargetID": 23968, + "Directional": true + }, + { + "SourceID": 23980, + "TargetID": 23976, + "Directional": true + }, + { + "SourceID": 23984, + "TargetID": 23981, + "Directional": true + }, + { + "SourceID": 23989, + "TargetID": 23988, + "Directional": true + }, + { + "SourceID": 23991, + "TargetID": 23990, + "Directional": true + }, + { + "SourceID": 29951, + "TargetID": 29941, + "Directional": true + }, + { + "SourceID": 54487, + "TargetID": 23966, + "Directional": true + }, + { + "SourceID": 54550, + "TargetID": 23966, + "Directional": true + }, + { + "SourceID": 56103, + "TargetID": 75335, + "Directional": true + }, + { + "SourceID": 93096, + "TargetID": 93097, + "Directional": true + } + ] + }, + { + "ID": 10026, + "SourceStructureID": 5601, + "TargetStructureID": 23870, + "Label": "5601-23870 via Ribbon Synapse from 23943 -> 23921, 23945 -> 23942, 93096 -> 93098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23943, + "TargetID": 23921, + "Directional": true + }, + { + "SourceID": 23945, + "TargetID": 23942, + "Directional": true + }, + { + "SourceID": 93096, + "TargetID": 93098, + "Directional": true + } + ] + }, + { + "ID": 10027, + "SourceStructureID": 5601, + "TargetStructureID": 32409, + "Label": "5601-32409 via Ribbon Synapse from 32411 -> 32410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32411, + "TargetID": 32410, + "Directional": true + } + ] + }, + { + "ID": 10028, + "SourceStructureID": 5601, + "TargetStructureID": 32451, + "Label": "5601-32451 via Ribbon Synapse from 32459 -> 32458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32459, + "TargetID": 32458, + "Directional": true + } + ] + }, + { + "ID": 10029, + "SourceStructureID": 5601, + "TargetStructureID": 32787, + "Label": "5601-32787 via Ribbon Synapse from 23980 -> 32789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23980, + "TargetID": 32789, + "Directional": true + } + ] + }, + { + "ID": 10030, + "SourceStructureID": 5601, + "TargetStructureID": 34055, + "Label": "5601-34055 via Ribbon Synapse from 34102 -> 34103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34102, + "TargetID": 34103, + "Directional": true + } + ] + }, + { + "ID": 10031, + "SourceStructureID": 5601, + "TargetStructureID": 35526, + "Label": "5601-35526 via Ribbon Synapse from 35533 -> 35532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35533, + "TargetID": 35532, + "Directional": true + } + ] + }, + { + "ID": 10032, + "SourceStructureID": 5601, + "TargetStructureID": 38307, + "Label": "5601-38307 via Ribbon Synapse from 38313 -> 38314", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38313, + "TargetID": 38314, + "Directional": true + } + ] + }, + { + "ID": 10033, + "SourceStructureID": 5601, + "TargetStructureID": 54469, + "Label": "5601-54469 via Ribbon Synapse from 23947 -> 54476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23947, + "TargetID": 54476, + "Directional": true + } + ] + }, + { + "ID": 10034, + "SourceStructureID": 5601, + "TargetStructureID": 54778, + "Label": "5601-54778 via Ribbon Synapse from 54811 -> 54810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54811, + "TargetID": 54810, + "Directional": true + } + ] + }, + { + "ID": 10035, + "SourceStructureID": 5601, + "TargetStructureID": 62396, + "Label": "5601-62396 via Ribbon Synapse from 36015 -> 62402, 36039 -> 62414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36015, + "TargetID": 62402, + "Directional": true + }, + { + "SourceID": 36039, + "TargetID": 62414, + "Directional": true + } + ] + }, + { + "ID": 10036, + "SourceStructureID": 5601, + "TargetStructureID": 84118, + "Label": "5601-84118 via Ribbon Synapse from 57494 -> 123651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57494, + "TargetID": 123651, + "Directional": true + } + ] + }, + { + "ID": 10037, + "SourceStructureID": 5601, + "TargetStructureID": 91979, + "Label": "5601-91979 via BC Conventional Synapse from 127154 -> 134791", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127154, + "TargetID": 134791, + "Directional": true + } + ] + }, + { + "ID": 10038, + "SourceStructureID": 5602, + "TargetStructureID": 115, + "Label": "5602-115 via Ribbon Synapse from 10402 -> 8097", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10402, + "TargetID": 8097, + "Directional": true + } + ] + }, + { + "ID": 10039, + "SourceStructureID": 5602, + "TargetStructureID": 5351, + "Label": "5602-5351 via Ribbon Synapse from 24105 -> 24082", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24105, + "TargetID": 24082, + "Directional": true + } + ] + }, + { + "ID": 10040, + "SourceStructureID": 5606, + "TargetStructureID": 606, + "Label": "5606-606 via Ribbon Synapse from 36906 -> 5098, 44257 -> 5087, 44265 -> 5088, 44266 -> 5095, 53832 -> 5094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36906, + "TargetID": 5098, + "Directional": true + }, + { + "SourceID": 44257, + "TargetID": 5087, + "Directional": true + }, + { + "SourceID": 44265, + "TargetID": 5088, + "Directional": true + }, + { + "SourceID": 44266, + "TargetID": 5095, + "Directional": true + }, + { + "SourceID": 53832, + "TargetID": 5094, + "Directional": true + } + ] + }, + { + "ID": 10041, + "SourceStructureID": 5606, + "TargetStructureID": 10559, + "Label": "5606-10559 via Ribbon Synapse from 43647 -> 44322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43647, + "TargetID": 44322, + "Directional": true + } + ] + }, + { + "ID": 10042, + "SourceStructureID": 5606, + "TargetStructureID": 88646, + "Label": "5606-88646 via Ribbon Synapse from 88656 -> 88654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88656, + "TargetID": 88654, + "Directional": true + } + ] + }, + { + "ID": 10043, + "SourceStructureID": 5607, + "TargetStructureID": 606, + "Label": "5607-606 via Ribbon Synapse from 43056 -> 44273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43056, + "TargetID": 44273, + "Directional": true + } + ] + }, + { + "ID": 10044, + "SourceStructureID": 5607, + "TargetStructureID": 9769, + "Label": "5607-9769 via Ribbon Synapse from 24007 -> 23998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24007, + "TargetID": 23998, + "Directional": true + } + ] + }, + { + "ID": 10045, + "SourceStructureID": 5607, + "TargetStructureID": 54862, + "Label": "5607-54862 via Ribbon Synapse from 54866 -> 54864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54866, + "TargetID": 54864, + "Directional": true + } + ] + }, + { + "ID": 10046, + "SourceStructureID": 5608, + "TargetStructureID": 115, + "Label": "5608-115 via Ribbon Synapse from 42664 -> 8088", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42664, + "TargetID": 8088, + "Directional": true + } + ] + }, + { + "ID": 10047, + "SourceStructureID": 5608, + "TargetStructureID": 606, + "Label": "5608-606 via BC Conventional Synapse from 54277 -> 54276", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54277, + "TargetID": 54276, + "Directional": true + } + ] + }, + { + "ID": 10048, + "SourceStructureID": 5608, + "TargetStructureID": 606, + "Label": "5608-606 via Ribbon Synapse from 54196 -> 10525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54196, + "TargetID": 10525, + "Directional": true + } + ] + }, + { + "ID": 10049, + "SourceStructureID": 5608, + "TargetStructureID": 5607, + "Label": "5608-5607 via Ribbon Synapse from 42839 -> 42840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42839, + "TargetID": 42840, + "Directional": true + } + ] + }, + { + "ID": 10050, + "SourceStructureID": 5608, + "TargetStructureID": 10559, + "Label": "5608-10559 via BC Conventional Synapse from 54277 -> 54280", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54277, + "TargetID": 54280, + "Directional": true + } + ] + }, + { + "ID": 10051, + "SourceStructureID": 5608, + "TargetStructureID": 88762, + "Label": "5608-88762 via Ribbon Synapse from 88787 -> 88783, 88788 -> 88783", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88787, + "TargetID": 88783, + "Directional": true + }, + { + "SourceID": 88788, + "TargetID": 88783, + "Directional": true + } + ] + }, + { + "ID": 10052, + "SourceStructureID": 5609, + "TargetStructureID": 517, + "Label": "5609-517 via Conventional from 20656 -> 16417, 20657 -> 20658, 20663 -> 20665, 20664 -> 20667, 61446 -> 16423", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20656, + "TargetID": 16417, + "Directional": true + }, + { + "SourceID": 20657, + "TargetID": 20658, + "Directional": true + }, + { + "SourceID": 20663, + "TargetID": 20665, + "Directional": true + }, + { + "SourceID": 20664, + "TargetID": 20667, + "Directional": true + }, + { + "SourceID": 61446, + "TargetID": 16423, + "Directional": true + } + ] + }, + { + "ID": 10053, + "SourceStructureID": 5609, + "TargetStructureID": 3881, + "Label": "5609-3881 via Conventional from 32348 -> 31394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32348, + "TargetID": 31394, + "Directional": true + } + ] + }, + { + "ID": 10054, + "SourceStructureID": 5609, + "TargetStructureID": 10815, + "Label": "5609-10815 via Conventional from 20642 -> 31377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20642, + "TargetID": 31377, + "Directional": true + } + ] + }, + { + "ID": 10055, + "SourceStructureID": 5611, + "TargetStructureID": 8720, + "Label": "5611-8720 via Ribbon Synapse from 63954 -> 63952", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63954, + "TargetID": 63952, + "Directional": true + } + ] + }, + { + "ID": 10056, + "SourceStructureID": 5614, + "TargetStructureID": 5457, + "Label": "5614-5457 via Ribbon Synapse from 8733 -> 15353, 15361 -> 15360, 15362 -> 15363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8733, + "TargetID": 15353, + "Directional": true + }, + { + "SourceID": 15361, + "TargetID": 15360, + "Directional": true + }, + { + "SourceID": 15362, + "TargetID": 15363, + "Directional": true + } + ] + }, + { + "ID": 10057, + "SourceStructureID": 5614, + "TargetStructureID": 5634, + "Label": "5614-5634 via Ribbon Synapse from 8736 -> 8731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8736, + "TargetID": 8731, + "Directional": true + } + ] + }, + { + "ID": 10058, + "SourceStructureID": 5614, + "TargetStructureID": 11229, + "Label": "5614-11229 via Ribbon Synapse from 25186 -> 25185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25186, + "TargetID": 25185, + "Directional": true + } + ] + }, + { + "ID": 10059, + "SourceStructureID": 5618, + "TargetStructureID": 5292, + "Label": "5618-5292 via Conventional from 65991 -> 65992", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65991, + "TargetID": 65992, + "Directional": true + } + ] + }, + { + "ID": 10060, + "SourceStructureID": 5618, + "TargetStructureID": 18693, + "Label": "5618-18693 via Conventional from 65985 -> 33819", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65985, + "TargetID": 33819, + "Directional": true + } + ] + }, + { + "ID": 10061, + "SourceStructureID": 5622, + "TargetStructureID": 7050, + "Label": "5622-7050 via Ribbon Synapse from 113043 -> 113044", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113043, + "TargetID": 113044, + "Directional": true + } + ] + }, + { + "ID": 10062, + "SourceStructureID": 5623, + "TargetStructureID": 8576, + "Label": "5623-8576 via Ribbon Synapse from 69042 -> 69041, 69044 -> 69043, 69047 -> 69046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69042, + "TargetID": 69041, + "Directional": true + }, + { + "SourceID": 69044, + "TargetID": 69043, + "Directional": true + }, + { + "SourceID": 69047, + "TargetID": 69046, + "Directional": true + } + ] + }, + { + "ID": 10063, + "SourceStructureID": 5623, + "TargetStructureID": 32804, + "Label": "5623-32804 via Ribbon Synapse from 32817 -> 32816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32817, + "TargetID": 32816, + "Directional": true + } + ] + }, + { + "ID": 10064, + "SourceStructureID": 5623, + "TargetStructureID": 38236, + "Label": "5623-38236 via Ribbon Synapse from 38240 -> 38239, 38244 -> 38243", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38240, + "TargetID": 38239, + "Directional": true + }, + { + "SourceID": 38244, + "TargetID": 38243, + "Directional": true + } + ] + }, + { + "ID": 10065, + "SourceStructureID": 5623, + "TargetStructureID": 66958, + "Label": "5623-66958 via Ribbon Synapse from 131980 -> 131981", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131980, + "TargetID": 131981, + "Directional": true + } + ] + }, + { + "ID": 10066, + "SourceStructureID": 5623, + "TargetStructureID": 69049, + "Label": "5623-69049 via Ribbon Synapse from 40379 -> 69051", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40379, + "TargetID": 69051, + "Directional": true + } + ] + }, + { + "ID": 10067, + "SourceStructureID": 5623, + "TargetStructureID": 127813, + "Label": "5623-127813 via Ribbon Synapse from 40376 -> 127818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40376, + "TargetID": 127818, + "Directional": true + } + ] + }, + { + "ID": 10068, + "SourceStructureID": 5634, + "TargetStructureID": 5614, + "Label": "5634-5614 via Conventional from 8729 -> 8735", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8729, + "TargetID": 8735, + "Directional": true + } + ] + }, + { + "ID": 10069, + "SourceStructureID": 5634, + "TargetStructureID": 10956, + "Label": "5634-10956 via Conventional from 33245 -> 33244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33245, + "TargetID": 33244, + "Directional": true + } + ] + }, + { + "ID": 10070, + "SourceStructureID": 5635, + "TargetStructureID": 5117, + "Label": "5635-5117 via Ribbon Synapse from 28826 -> 28800", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28826, + "TargetID": 28800, + "Directional": true + } + ] + }, + { + "ID": 10071, + "SourceStructureID": 5635, + "TargetStructureID": 5439, + "Label": "5635-5439 via Ribbon Synapse from 55976 -> 66556, 55984 -> 70784, 55985 -> 66560, 55995 -> 66564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55976, + "TargetID": 66556, + "Directional": true + }, + { + "SourceID": 55984, + "TargetID": 70784, + "Directional": true + }, + { + "SourceID": 55985, + "TargetID": 66560, + "Directional": true + }, + { + "SourceID": 55995, + "TargetID": 66564, + "Directional": true + } + ] + }, + { + "ID": 10072, + "SourceStructureID": 5635, + "TargetStructureID": 73617, + "Label": "5635-73617 via Ribbon Synapse from 56145 -> 73618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56145, + "TargetID": 73618, + "Directional": true + } + ] + }, + { + "ID": 10073, + "SourceStructureID": 5636, + "TargetStructureID": 7279, + "Label": "5636-7279 via Ribbon Synapse from 34725 -> 34729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34725, + "TargetID": 34729, + "Directional": true + } + ] + }, + { + "ID": 10074, + "SourceStructureID": 5636, + "TargetStructureID": 8551, + "Label": "5636-8551 via Ribbon Synapse from 34706 -> 8581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34706, + "TargetID": 8581, + "Directional": true + } + ] + }, + { + "ID": 10075, + "SourceStructureID": 5636, + "TargetStructureID": 31389, + "Label": "5636-31389 via Ribbon Synapse from 36975 -> 36977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36975, + "TargetID": 36977, + "Directional": true + } + ] + }, + { + "ID": 10076, + "SourceStructureID": 5637, + "TargetStructureID": 606, + "Label": "5637-606 via Ribbon Synapse from 44293 -> 44287, 44299 -> 44297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44293, + "TargetID": 44287, + "Directional": true + }, + { + "SourceID": 44299, + "TargetID": 44297, + "Directional": true + } + ] + }, + { + "ID": 10077, + "SourceStructureID": 5637, + "TargetStructureID": 5451, + "Label": "5637-5451 via Cistern Pre from 39077 -> 39078", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 39077, + "TargetID": 39078, + "Directional": true + } + ] + }, + { + "ID": 10078, + "SourceStructureID": 5637, + "TargetStructureID": 7594, + "Label": "5637-7594 via Ribbon Synapse from 56027 -> 7611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56027, + "TargetID": 7611, + "Directional": true + } + ] + }, + { + "ID": 10079, + "SourceStructureID": 5637, + "TargetStructureID": 31471, + "Label": "5637-31471 via Ribbon Synapse from 44290 -> 44291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44290, + "TargetID": 44291, + "Directional": true + } + ] + }, + { + "ID": 10080, + "SourceStructureID": 5637, + "TargetStructureID": 43716, + "Label": "5637-43716 via BC Conventional Synapse from 123647 -> 123646", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123647, + "TargetID": 123646, + "Directional": true + } + ] + }, + { + "ID": 10081, + "SourceStructureID": 5637, + "TargetStructureID": 54776, + "Label": "5637-54776 via Ribbon Synapse from 54792 -> 54785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54792, + "TargetID": 54785, + "Directional": true + } + ] + }, + { + "ID": 10082, + "SourceStructureID": 5638, + "TargetStructureID": 5439, + "Label": "5638-5439 via Ribbon Synapse from 39125 -> 66612, 65937 -> 66607", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39125, + "TargetID": 66612, + "Directional": true + }, + { + "SourceID": 65937, + "TargetID": 66607, + "Directional": true + } + ] + }, + { + "ID": 10083, + "SourceStructureID": 5639, + "TargetStructureID": 7113, + "Label": "5639-7113 via Ribbon Synapse from 46219 -> 46218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46219, + "TargetID": 46218, + "Directional": true + } + ] + }, + { + "ID": 10084, + "SourceStructureID": 5639, + "TargetStructureID": 7274, + "Label": "5639-7274 via Ribbon Synapse from 36987 -> 41888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36987, + "TargetID": 41888, + "Directional": true + } + ] + }, + { + "ID": 10085, + "SourceStructureID": 5639, + "TargetStructureID": 10574, + "Label": "5639-10574 via BC Conventional Synapse from 37010 -> 37011", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37010, + "TargetID": 37011, + "Directional": true + } + ] + }, + { + "ID": 10086, + "SourceStructureID": 5639, + "TargetStructureID": 10574, + "Label": "5639-10574 via Ribbon Synapse from 37045 -> 38901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37045, + "TargetID": 38901, + "Directional": true + } + ] + }, + { + "ID": 10087, + "SourceStructureID": 5639, + "TargetStructureID": 13858, + "Label": "5639-13858 via BC Conventional Synapse from 37052 -> 13915", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37052, + "TargetID": 13915, + "Directional": true + } + ] + }, + { + "ID": 10088, + "SourceStructureID": 5639, + "TargetStructureID": 136432, + "Label": "5639-136432 via Ribbon Synapse from 37007 -> 136526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37007, + "TargetID": 136526, + "Directional": true + } + ] + }, + { + "ID": 10089, + "SourceStructureID": 5640, + "TargetStructureID": 5473, + "Label": "5640-5473 via Ribbon Synapse from 37114 -> 37120, 37115 -> 37121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37114, + "TargetID": 37120, + "Directional": true + }, + { + "SourceID": 37115, + "TargetID": 37121, + "Directional": true + } + ] + }, + { + "ID": 10090, + "SourceStructureID": 5640, + "TargetStructureID": 7114, + "Label": "5640-7114 via Ribbon Synapse from 37059 -> 37060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37059, + "TargetID": 37060, + "Directional": true + } + ] + }, + { + "ID": 10091, + "SourceStructureID": 5641, + "TargetStructureID": 5491, + "Label": "5641-5491 via Ribbon Synapse from 20607 -> 54812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20607, + "TargetID": 54812, + "Directional": true + } + ] + }, + { + "ID": 10092, + "SourceStructureID": 5641, + "TargetStructureID": 7113, + "Label": "5641-7113 via BC Conventional Synapse from 124055 -> 124054", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124055, + "TargetID": 124054, + "Directional": true + } + ] + }, + { + "ID": 10093, + "SourceStructureID": 5641, + "TargetStructureID": 7204, + "Label": "5641-7204 via Ribbon Synapse from 20647 -> 24345, 24184 -> 24338, 24342 -> 24341, 39050 -> 39051", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20647, + "TargetID": 24345, + "Directional": true + }, + { + "SourceID": 24184, + "TargetID": 24338, + "Directional": true + }, + { + "SourceID": 24342, + "TargetID": 24341, + "Directional": true + }, + { + "SourceID": 39050, + "TargetID": 39051, + "Directional": true + } + ] + }, + { + "ID": 10094, + "SourceStructureID": 5641, + "TargetStructureID": 8578, + "Label": "5641-8578 via Ribbon Synapse from 54499 -> 54498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54499, + "TargetID": 54498, + "Directional": true + } + ] + }, + { + "ID": 10095, + "SourceStructureID": 5641, + "TargetStructureID": 9769, + "Label": "5641-9769 via Ribbon Synapse from 54686 -> 54687", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54686, + "TargetID": 54687, + "Directional": true + } + ] + }, + { + "ID": 10096, + "SourceStructureID": 5641, + "TargetStructureID": 12203, + "Label": "5641-12203 via Ribbon Synapse from 20711 -> 12262, 27411 -> 12262, 27412 -> 12262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20711, + "TargetID": 12262, + "Directional": true + }, + { + "SourceID": 27411, + "TargetID": 12262, + "Directional": true + }, + { + "SourceID": 27412, + "TargetID": 12262, + "Directional": true + } + ] + }, + { + "ID": 10097, + "SourceStructureID": 5641, + "TargetStructureID": 24174, + "Label": "5641-24174 via Ribbon Synapse from 20677 -> 24178, 24184 -> 24179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20677, + "TargetID": 24178, + "Directional": true + }, + { + "SourceID": 24184, + "TargetID": 24179, + "Directional": true + } + ] + }, + { + "ID": 10098, + "SourceStructureID": 5641, + "TargetStructureID": 30567, + "Label": "5641-30567 via Ribbon Synapse from 32116 -> 32110", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32116, + "TargetID": 32110, + "Directional": true + } + ] + }, + { + "ID": 10099, + "SourceStructureID": 5641, + "TargetStructureID": 34055, + "Label": "5641-34055 via Ribbon Synapse from 27666 -> 34116", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27666, + "TargetID": 34116, + "Directional": true + } + ] + }, + { + "ID": 10100, + "SourceStructureID": 5641, + "TargetStructureID": 35811, + "Label": "5641-35811 via Ribbon Synapse from 35867 -> 35866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35867, + "TargetID": 35866, + "Directional": true + } + ] + }, + { + "ID": 10101, + "SourceStructureID": 5641, + "TargetStructureID": 38404, + "Label": "5641-38404 via Ribbon Synapse from 39049 -> 39048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39049, + "TargetID": 39048, + "Directional": true + } + ] + }, + { + "ID": 10102, + "SourceStructureID": 5641, + "TargetStructureID": 54681, + "Label": "5641-54681 via Ribbon Synapse from 20666 -> 54688, 54686 -> 54685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20666, + "TargetID": 54688, + "Directional": true + }, + { + "SourceID": 54686, + "TargetID": 54685, + "Directional": true + } + ] + }, + { + "ID": 10103, + "SourceStructureID": 5641, + "TargetStructureID": 54695, + "Label": "5641-54695 via Ribbon Synapse from 57508 -> 54697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57508, + "TargetID": 54697, + "Directional": true + } + ] + }, + { + "ID": 10104, + "SourceStructureID": 5641, + "TargetStructureID": 54818, + "Label": "5641-54818 via BC Conventional Synapse from 54849 -> 54848", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54849, + "TargetID": 54848, + "Directional": true + } + ] + }, + { + "ID": 10105, + "SourceStructureID": 5641, + "TargetStructureID": 55610, + "Label": "5641-55610 via Ribbon Synapse from 55613 -> 55611, 55617 -> 55618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55613, + "TargetID": 55611, + "Directional": true + }, + { + "SourceID": 55617, + "TargetID": 55618, + "Directional": true + } + ] + }, + { + "ID": 10106, + "SourceStructureID": 5641, + "TargetStructureID": 112748, + "Label": "5641-112748 via Ribbon Synapse from 20603 -> 129923", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20603, + "TargetID": 129923, + "Directional": true + } + ] + }, + { + "ID": 10107, + "SourceStructureID": 5641, + "TargetStructureID": 147696, + "Label": "5641-147696 via Ribbon Synapse from 27659 -> 147702", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27659, + "TargetID": 147702, + "Directional": true + } + ] + }, + { + "ID": 10108, + "SourceStructureID": 5641, + "TargetStructureID": 147818, + "Label": "5641-147818 via Ribbon Synapse from 147817 -> 147819", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147817, + "TargetID": 147819, + "Directional": true + } + ] + }, + { + "ID": 10109, + "SourceStructureID": 5643, + "TargetStructureID": 5556, + "Label": "5643-5556 via Conventional from 34907 -> 34908", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34907, + "TargetID": 34908, + "Directional": true + } + ] + }, + { + "ID": 10110, + "SourceStructureID": 5643, + "TargetStructureID": 5650, + "Label": "5643-5650 via Conventional from 38551 -> 102749", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38551, + "TargetID": 102749, + "Directional": true + } + ] + }, + { + "ID": 10111, + "SourceStructureID": 5643, + "TargetStructureID": 30177, + "Label": "5643-30177 via Conventional from 34909 -> 34910", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34909, + "TargetID": 34910, + "Directional": true + } + ] + }, + { + "ID": 10112, + "SourceStructureID": 5643, + "TargetStructureID": 35440, + "Label": "5643-35440 via Conventional from 38547 -> 35448", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38547, + "TargetID": 35448, + "Directional": true + } + ] + }, + { + "ID": 10113, + "SourceStructureID": 5645, + "TargetStructureID": 606, + "Label": "5645-606 via Ribbon Synapse from 47420 -> 47419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47420, + "TargetID": 47419, + "Directional": true + } + ] + }, + { + "ID": 10114, + "SourceStructureID": 5645, + "TargetStructureID": 5107, + "Label": "5645-5107 via Ribbon Synapse from 108513 -> 108514", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108513, + "TargetID": 108514, + "Directional": true + } + ] + }, + { + "ID": 10115, + "SourceStructureID": 5645, + "TargetStructureID": 5117, + "Label": "5645-5117 via Ribbon Synapse from 47763 -> 66357", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47763, + "TargetID": 66357, + "Directional": true + } + ] + }, + { + "ID": 10116, + "SourceStructureID": 5645, + "TargetStructureID": 5294, + "Label": "5645-5294 via BC Conventional Synapse from 54504 -> 39472", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54504, + "TargetID": 39472, + "Directional": true + } + ] + }, + { + "ID": 10117, + "SourceStructureID": 5645, + "TargetStructureID": 6857, + "Label": "5645-6857 via Ribbon Synapse from 108615 -> 6898, 108619 -> 6898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108615, + "TargetID": 6898, + "Directional": true + }, + { + "SourceID": 108619, + "TargetID": 6898, + "Directional": true + } + ] + }, + { + "ID": 10118, + "SourceStructureID": 5645, + "TargetStructureID": 22974, + "Label": "5645-22974 via Ribbon Synapse from 78061 -> 108627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78061, + "TargetID": 108627, + "Directional": true + } + ] + }, + { + "ID": 10119, + "SourceStructureID": 5645, + "TargetStructureID": 31024, + "Label": "5645-31024 via Ribbon Synapse from 31154 -> 31118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31154, + "TargetID": 31118, + "Directional": true + } + ] + }, + { + "ID": 10120, + "SourceStructureID": 5645, + "TargetStructureID": 31305, + "Label": "5645-31305 via Ribbon Synapse from 31327 -> 31306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31327, + "TargetID": 31306, + "Directional": true + } + ] + }, + { + "ID": 10121, + "SourceStructureID": 5645, + "TargetStructureID": 31356, + "Label": "5645-31356 via Ribbon Synapse from 32762 -> 32761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32762, + "TargetID": 32761, + "Directional": true + } + ] + }, + { + "ID": 10122, + "SourceStructureID": 5645, + "TargetStructureID": 35384, + "Label": "5645-35384 via Ribbon Synapse from 39480 -> 39481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39480, + "TargetID": 39481, + "Directional": true + } + ] + }, + { + "ID": 10123, + "SourceStructureID": 5645, + "TargetStructureID": 67671, + "Label": "5645-67671 via Ribbon Synapse from 78049 -> 78050", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78049, + "TargetID": 78050, + "Directional": true + } + ] + }, + { + "ID": 10124, + "SourceStructureID": 5645, + "TargetStructureID": 71517, + "Label": "5645-71517 via Ribbon Synapse from 72129 -> 72127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72129, + "TargetID": 72127, + "Directional": true + } + ] + }, + { + "ID": 10125, + "SourceStructureID": 5645, + "TargetStructureID": 72124, + "Label": "5645-72124 via Ribbon Synapse from 108572 -> 108573", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108572, + "TargetID": 108573, + "Directional": true + } + ] + }, + { + "ID": 10126, + "SourceStructureID": 5645, + "TargetStructureID": 78051, + "Label": "5645-78051 via Ribbon Synapse from 78049 -> 78052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78049, + "TargetID": 78052, + "Directional": true + } + ] + }, + { + "ID": 10127, + "SourceStructureID": 5645, + "TargetStructureID": 78423, + "Label": "5645-78423 via Ribbon Synapse from 72132 -> 78424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72132, + "TargetID": 78424, + "Directional": true + } + ] + }, + { + "ID": 10128, + "SourceStructureID": 5645, + "TargetStructureID": 87432, + "Label": "5645-87432 via Ribbon Synapse from 47649 -> 87439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47649, + "TargetID": 87439, + "Directional": true + } + ] + }, + { + "ID": 10129, + "SourceStructureID": 5645, + "TargetStructureID": 98703, + "Label": "5645-98703 via Ribbon Synapse from 31332 -> 98706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31332, + "TargetID": 98706, + "Directional": true + } + ] + }, + { + "ID": 10130, + "SourceStructureID": 5645, + "TargetStructureID": 108539, + "Label": "5645-108539 via Ribbon Synapse from 108546 -> 108545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108546, + "TargetID": 108545, + "Directional": true + } + ] + }, + { + "ID": 10131, + "SourceStructureID": 5645, + "TargetStructureID": 108616, + "Label": "5645-108616 via Ribbon Synapse from 108615 -> 108618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108615, + "TargetID": 108618, + "Directional": true + } + ] + }, + { + "ID": 10132, + "SourceStructureID": 5648, + "TargetStructureID": 5405, + "Label": "5648-5405 via Ribbon Synapse from 23419 -> 11180", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23419, + "TargetID": 11180, + "Directional": true + } + ] + }, + { + "ID": 10133, + "SourceStructureID": 5648, + "TargetStructureID": 7134, + "Label": "5648-7134 via Ribbon Synapse from 53973 -> 26672", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53973, + "TargetID": 26672, + "Directional": true + } + ] + }, + { + "ID": 10134, + "SourceStructureID": 5648, + "TargetStructureID": 8575, + "Label": "5648-8575 via BC Conventional Synapse from 62286 -> 62285", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62286, + "TargetID": 62285, + "Directional": true + } + ] + }, + { + "ID": 10135, + "SourceStructureID": 5648, + "TargetStructureID": 16073, + "Label": "5648-16073 via BC Conventional Synapse from 32222 -> 32221", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32222, + "TargetID": 32221, + "Directional": true + } + ] + }, + { + "ID": 10136, + "SourceStructureID": 5648, + "TargetStructureID": 77077, + "Label": "5648-77077 via Ribbon Synapse from 77076 -> 77079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77076, + "TargetID": 77079, + "Directional": true + } + ] + }, + { + "ID": 10137, + "SourceStructureID": 5649, + "TargetStructureID": 4890, + "Label": "5649-4890 via BC Conventional Synapse from 104702 -> 104703", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104702, + "TargetID": 104703, + "Directional": true + } + ] + }, + { + "ID": 10138, + "SourceStructureID": 5649, + "TargetStructureID": 4890, + "Label": "5649-4890 via Ribbon Synapse from 53849 -> 104545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53849, + "TargetID": 104545, + "Directional": true + } + ] + }, + { + "ID": 10139, + "SourceStructureID": 5649, + "TargetStructureID": 5117, + "Label": "5649-5117 via Ribbon Synapse from 66353 -> 66352", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66353, + "TargetID": 66352, + "Directional": true + } + ] + }, + { + "ID": 10140, + "SourceStructureID": 5649, + "TargetStructureID": 6857, + "Label": "5649-6857 via Ribbon Synapse from 105764 -> 105765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105764, + "TargetID": 105765, + "Directional": true + } + ] + }, + { + "ID": 10141, + "SourceStructureID": 5649, + "TargetStructureID": 8027, + "Label": "5649-8027 via Ribbon Synapse from 37858 -> 37857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37858, + "TargetID": 37857, + "Directional": true + } + ] + }, + { + "ID": 10142, + "SourceStructureID": 5649, + "TargetStructureID": 8579, + "Label": "5649-8579 via Ribbon Synapse from 135350 -> 62685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135350, + "TargetID": 62685, + "Directional": true + } + ] + }, + { + "ID": 10143, + "SourceStructureID": 5649, + "TargetStructureID": 8580, + "Label": "5649-8580 via BC Conventional Synapse from 107096 -> 107089", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107096, + "TargetID": 107089, + "Directional": true + } + ] + }, + { + "ID": 10144, + "SourceStructureID": 5649, + "TargetStructureID": 8580, + "Label": "5649-8580 via Ribbon Synapse from 59659 -> 59658, 70012 -> 59658, 104598 -> 104607", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59659, + "TargetID": 59658, + "Directional": true + }, + { + "SourceID": 70012, + "TargetID": 59658, + "Directional": true + }, + { + "SourceID": 104598, + "TargetID": 104607, + "Directional": true + } + ] + }, + { + "ID": 10145, + "SourceStructureID": 5649, + "TargetStructureID": 8588, + "Label": "5649-8588 via Ribbon Synapse from 106814 -> 106822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106814, + "TargetID": 106822, + "Directional": true + } + ] + }, + { + "ID": 10146, + "SourceStructureID": 5649, + "TargetStructureID": 16087, + "Label": "5649-16087 via BC Conventional Synapse from 38488 -> 16096", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38488, + "TargetID": 16096, + "Directional": true + } + ] + }, + { + "ID": 10147, + "SourceStructureID": 5649, + "TargetStructureID": 16087, + "Label": "5649-16087 via Ribbon Synapse from 53900 -> 105611, 55733 -> 16095, 78012 -> 78013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53900, + "TargetID": 105611, + "Directional": true + }, + { + "SourceID": 55733, + "TargetID": 16095, + "Directional": true + }, + { + "SourceID": 78012, + "TargetID": 78013, + "Directional": true + } + ] + }, + { + "ID": 10148, + "SourceStructureID": 5649, + "TargetStructureID": 22974, + "Label": "5649-22974 via Ribbon Synapse from 23026 -> 23027, 23028 -> 23025, 53907 -> 105686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23026, + "TargetID": 23027, + "Directional": true + }, + { + "SourceID": 23028, + "TargetID": 23025, + "Directional": true + }, + { + "SourceID": 53907, + "TargetID": 105686, + "Directional": true + } + ] + }, + { + "ID": 10149, + "SourceStructureID": 5649, + "TargetStructureID": 31024, + "Label": "5649-31024 via Ribbon Synapse from 31042 -> 31039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31042, + "TargetID": 31039, + "Directional": true + } + ] + }, + { + "ID": 10150, + "SourceStructureID": 5649, + "TargetStructureID": 35064, + "Label": "5649-35064 via BC Conventional Synapse from 105775 -> 105776", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105775, + "TargetID": 105776, + "Directional": true + } + ] + }, + { + "ID": 10151, + "SourceStructureID": 5649, + "TargetStructureID": 35064, + "Label": "5649-35064 via Ribbon Synapse from 35067 -> 35066", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35067, + "TargetID": 35066, + "Directional": true + } + ] + }, + { + "ID": 10152, + "SourceStructureID": 5649, + "TargetStructureID": 35356, + "Label": "5649-35356 via Ribbon Synapse from 35365 -> 35364, 35366 -> 35363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35365, + "TargetID": 35364, + "Directional": true + }, + { + "SourceID": 35366, + "TargetID": 35363, + "Directional": true + } + ] + }, + { + "ID": 10153, + "SourceStructureID": 5649, + "TargetStructureID": 36516, + "Label": "5649-36516 via Ribbon Synapse from 33105 -> 36621, 33110 -> 36625", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33105, + "TargetID": 36621, + "Directional": true + }, + { + "SourceID": 33110, + "TargetID": 36625, + "Directional": true + } + ] + }, + { + "ID": 10154, + "SourceStructureID": 5649, + "TargetStructureID": 38483, + "Label": "5649-38483 via Ribbon Synapse from 38489 -> 38486, 38498 -> 38497, 106853 -> 106862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38489, + "TargetID": 38486, + "Directional": true + }, + { + "SourceID": 38498, + "TargetID": 38497, + "Directional": true + }, + { + "SourceID": 106853, + "TargetID": 106862, + "Directional": true + } + ] + }, + { + "ID": 10155, + "SourceStructureID": 5649, + "TargetStructureID": 53202, + "Label": "5649-53202 via Ribbon Synapse from 81698 -> 104674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81698, + "TargetID": 104674, + "Directional": true + } + ] + }, + { + "ID": 10156, + "SourceStructureID": 5649, + "TargetStructureID": 61836, + "Label": "5649-61836 via Ribbon Synapse from 38498 -> 69777, 68118 -> 68117, 68120 -> 68119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38498, + "TargetID": 69777, + "Directional": true + }, + { + "SourceID": 68118, + "TargetID": 68117, + "Directional": true + }, + { + "SourceID": 68120, + "TargetID": 68119, + "Directional": true + } + ] + }, + { + "ID": 10157, + "SourceStructureID": 5649, + "TargetStructureID": 65576, + "Label": "5649-65576 via Ribbon Synapse from 84501 -> 84504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84501, + "TargetID": 84504, + "Directional": true + } + ] + }, + { + "ID": 10158, + "SourceStructureID": 5649, + "TargetStructureID": 67671, + "Label": "5649-67671 via Ribbon Synapse from 53886 -> 77362, 53888 -> 104738, 53897 -> 77385, 53943 -> 105727, 53999 -> 77720, 54033 -> 77701, 76890 -> 76891, 78012 -> 78014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53886, + "TargetID": 77362, + "Directional": true + }, + { + "SourceID": 53888, + "TargetID": 104738, + "Directional": true + }, + { + "SourceID": 53897, + "TargetID": 77385, + "Directional": true + }, + { + "SourceID": 53943, + "TargetID": 105727, + "Directional": true + }, + { + "SourceID": 53999, + "TargetID": 77720, + "Directional": true + }, + { + "SourceID": 54033, + "TargetID": 77701, + "Directional": true + }, + { + "SourceID": 76890, + "TargetID": 76891, + "Directional": true + }, + { + "SourceID": 78012, + "TargetID": 78014, + "Directional": true + } + ] + }, + { + "ID": 10159, + "SourceStructureID": 5649, + "TargetStructureID": 67894, + "Label": "5649-67894 via Ribbon Synapse from 35365 -> 82237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35365, + "TargetID": 82237, + "Directional": true + } + ] + }, + { + "ID": 10160, + "SourceStructureID": 5649, + "TargetStructureID": 68153, + "Label": "5649-68153 via Ribbon Synapse from 68177 -> 68178", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68177, + "TargetID": 68178, + "Directional": true + } + ] + }, + { + "ID": 10161, + "SourceStructureID": 5649, + "TargetStructureID": 68497, + "Label": "5649-68497 via Ribbon Synapse from 81587 -> 81586", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81587, + "TargetID": 81586, + "Directional": true + } + ] + }, + { + "ID": 10162, + "SourceStructureID": 5649, + "TargetStructureID": 68548, + "Label": "5649-68548 via BC Conventional Synapse from 73169 -> 73170", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73169, + "TargetID": 73170, + "Directional": true + } + ] + }, + { + "ID": 10163, + "SourceStructureID": 5649, + "TargetStructureID": 71634, + "Label": "5649-71634 via Ribbon Synapse from 105699 -> 105702, 105764 -> 105763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105699, + "TargetID": 105702, + "Directional": true + }, + { + "SourceID": 105764, + "TargetID": 105763, + "Directional": true + } + ] + }, + { + "ID": 10164, + "SourceStructureID": 5649, + "TargetStructureID": 75099, + "Label": "5649-75099 via BC Conventional Synapse from 82564 -> 82565", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82564, + "TargetID": 82565, + "Directional": true + } + ] + }, + { + "ID": 10165, + "SourceStructureID": 5649, + "TargetStructureID": 75099, + "Label": "5649-75099 via Ribbon Synapse from 105397 -> 105412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105397, + "TargetID": 105412, + "Directional": true + } + ] + }, + { + "ID": 10166, + "SourceStructureID": 5649, + "TargetStructureID": 77688, + "Label": "5649-77688 via Ribbon Synapse from 53943 -> 105726", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53943, + "TargetID": 105726, + "Directional": true + } + ] + }, + { + "ID": 10167, + "SourceStructureID": 5649, + "TargetStructureID": 78021, + "Label": "5649-78021 via Ribbon Synapse from 53960 -> 105903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53960, + "TargetID": 105903, + "Directional": true + } + ] + }, + { + "ID": 10168, + "SourceStructureID": 5649, + "TargetStructureID": 78023, + "Label": "5649-78023 via Ribbon Synapse from 78025 -> 78024", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78025, + "TargetID": 78024, + "Directional": true + } + ] + }, + { + "ID": 10169, + "SourceStructureID": 5649, + "TargetStructureID": 78032, + "Label": "5649-78032 via Ribbon Synapse from 106020 -> 106021", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106020, + "TargetID": 106021, + "Directional": true + } + ] + }, + { + "ID": 10170, + "SourceStructureID": 5649, + "TargetStructureID": 78290, + "Label": "5649-78290 via Ribbon Synapse from 53999 -> 106003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53999, + "TargetID": 106003, + "Directional": true + } + ] + }, + { + "ID": 10171, + "SourceStructureID": 5649, + "TargetStructureID": 78431, + "Label": "5649-78431 via Ribbon Synapse from 54308 -> 107184", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54308, + "TargetID": 107184, + "Directional": true + } + ] + }, + { + "ID": 10172, + "SourceStructureID": 5649, + "TargetStructureID": 78909, + "Label": "5649-78909 via Ribbon Synapse from 54180 -> 106317, 54301 -> 87523", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54180, + "TargetID": 106317, + "Directional": true + }, + { + "SourceID": 54301, + "TargetID": 87523, + "Directional": true + } + ] + }, + { + "ID": 10173, + "SourceStructureID": 5649, + "TargetStructureID": 80294, + "Label": "5649-80294 via Ribbon Synapse from 54107 -> 106558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54107, + "TargetID": 106558, + "Directional": true + } + ] + }, + { + "ID": 10174, + "SourceStructureID": 5649, + "TargetStructureID": 80338, + "Label": "5649-80338 via Ribbon Synapse from 54103 -> 106538", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54103, + "TargetID": 106538, + "Directional": true + } + ] + }, + { + "ID": 10175, + "SourceStructureID": 5649, + "TargetStructureID": 81588, + "Label": "5649-81588 via Ribbon Synapse from 81587 -> 81589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81587, + "TargetID": 81589, + "Directional": true + } + ] + }, + { + "ID": 10176, + "SourceStructureID": 5649, + "TargetStructureID": 81667, + "Label": "5649-81667 via BC Conventional Synapse from 81723 -> 81721", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81723, + "TargetID": 81721, + "Directional": true + } + ] + }, + { + "ID": 10177, + "SourceStructureID": 5649, + "TargetStructureID": 81667, + "Label": "5649-81667 via Ribbon Synapse from 81698 -> 81699", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81698, + "TargetID": 81699, + "Directional": true + } + ] + }, + { + "ID": 10178, + "SourceStructureID": 5649, + "TargetStructureID": 84502, + "Label": "5649-84502 via Ribbon Synapse from 84501 -> 84503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84501, + "TargetID": 84503, + "Directional": true + } + ] + }, + { + "ID": 10179, + "SourceStructureID": 5649, + "TargetStructureID": 103756, + "Label": "5649-103756 via BC Conventional Synapse from 37860 -> 103757", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37860, + "TargetID": 103757, + "Directional": true + } + ] + }, + { + "ID": 10180, + "SourceStructureID": 5649, + "TargetStructureID": 103760, + "Label": "5649-103760 via BC Conventional Synapse from 103758 -> 103761", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103758, + "TargetID": 103761, + "Directional": true + } + ] + }, + { + "ID": 10181, + "SourceStructureID": 5649, + "TargetStructureID": 103766, + "Label": "5649-103766 via BC Conventional Synapse from 103762 -> 103767", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103762, + "TargetID": 103767, + "Directional": true + } + ] + }, + { + "ID": 10182, + "SourceStructureID": 5649, + "TargetStructureID": 103771, + "Label": "5649-103771 via Ribbon Synapse from 53884 -> 104732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53884, + "TargetID": 104732, + "Directional": true + } + ] + }, + { + "ID": 10183, + "SourceStructureID": 5649, + "TargetStructureID": 103777, + "Label": "5649-103777 via Ribbon Synapse from 103769 -> 103778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103769, + "TargetID": 103778, + "Directional": true + } + ] + }, + { + "ID": 10184, + "SourceStructureID": 5649, + "TargetStructureID": 104484, + "Label": "5649-104484 via Ribbon Synapse from 104476 -> 104488", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104476, + "TargetID": 104488, + "Directional": true + } + ] + }, + { + "ID": 10185, + "SourceStructureID": 5649, + "TargetStructureID": 104489, + "Label": "5649-104489 via Ribbon Synapse from 104475 -> 104490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104475, + "TargetID": 104490, + "Directional": true + } + ] + }, + { + "ID": 10186, + "SourceStructureID": 5649, + "TargetStructureID": 104491, + "Label": "5649-104491 via BC Conventional Synapse from 104493 -> 104492", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104493, + "TargetID": 104492, + "Directional": true + } + ] + }, + { + "ID": 10187, + "SourceStructureID": 5649, + "TargetStructureID": 104497, + "Label": "5649-104497 via Ribbon Synapse from 104502 -> 104501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104502, + "TargetID": 104501, + "Directional": true + } + ] + }, + { + "ID": 10188, + "SourceStructureID": 5649, + "TargetStructureID": 104509, + "Label": "5649-104509 via Ribbon Synapse from 104508 -> 104518, 104561 -> 104570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104508, + "TargetID": 104518, + "Directional": true + }, + { + "SourceID": 104561, + "TargetID": 104570, + "Directional": true + } + ] + }, + { + "ID": 10189, + "SourceStructureID": 5649, + "TargetStructureID": 104538, + "Label": "5649-104538 via Ribbon Synapse from 53848 -> 104540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53848, + "TargetID": 104540, + "Directional": true + } + ] + }, + { + "ID": 10190, + "SourceStructureID": 5649, + "TargetStructureID": 104541, + "Label": "5649-104541 via Ribbon Synapse from 53848 -> 104543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53848, + "TargetID": 104543, + "Directional": true + } + ] + }, + { + "ID": 10191, + "SourceStructureID": 5649, + "TargetStructureID": 104559, + "Label": "5649-104559 via Ribbon Synapse from 104561 -> 104560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104561, + "TargetID": 104560, + "Directional": true + } + ] + }, + { + "ID": 10192, + "SourceStructureID": 5649, + "TargetStructureID": 104575, + "Label": "5649-104575 via Ribbon Synapse from 68120 -> 104577", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68120, + "TargetID": 104577, + "Directional": true + } + ] + }, + { + "ID": 10193, + "SourceStructureID": 5649, + "TargetStructureID": 104609, + "Label": "5649-104609 via BC Conventional Synapse from 104611 -> 104610", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104611, + "TargetID": 104610, + "Directional": true + } + ] + }, + { + "ID": 10194, + "SourceStructureID": 5649, + "TargetStructureID": 104613, + "Label": "5649-104613 via BC Conventional Synapse from 104612 -> 104614", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104612, + "TargetID": 104614, + "Directional": true + } + ] + }, + { + "ID": 10195, + "SourceStructureID": 5649, + "TargetStructureID": 104619, + "Label": "5649-104619 via Ribbon Synapse from 77980 -> 104621", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77980, + "TargetID": 104621, + "Directional": true + } + ] + }, + { + "ID": 10196, + "SourceStructureID": 5649, + "TargetStructureID": 104622, + "Label": "5649-104622 via Ribbon Synapse from 76890 -> 104623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76890, + "TargetID": 104623, + "Directional": true + } + ] + }, + { + "ID": 10197, + "SourceStructureID": 5649, + "TargetStructureID": 104633, + "Label": "5649-104633 via Ribbon Synapse from 53836 -> 104634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53836, + "TargetID": 104634, + "Directional": true + } + ] + }, + { + "ID": 10198, + "SourceStructureID": 5649, + "TargetStructureID": 104636, + "Label": "5649-104636 via Ribbon Synapse from 53844 -> 104637", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53844, + "TargetID": 104637, + "Directional": true + } + ] + }, + { + "ID": 10199, + "SourceStructureID": 5649, + "TargetStructureID": 104638, + "Label": "5649-104638 via Ribbon Synapse from 53844 -> 104640, 53845 -> 104645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53844, + "TargetID": 104640, + "Directional": true + }, + { + "SourceID": 53845, + "TargetID": 104645, + "Directional": true + } + ] + }, + { + "ID": 10200, + "SourceStructureID": 5649, + "TargetStructureID": 104641, + "Label": "5649-104641 via Ribbon Synapse from 53843 -> 104644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53843, + "TargetID": 104644, + "Directional": true + } + ] + }, + { + "ID": 10201, + "SourceStructureID": 5649, + "TargetStructureID": 104646, + "Label": "5649-104646 via Ribbon Synapse from 53845 -> 104647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53845, + "TargetID": 104647, + "Directional": true + } + ] + }, + { + "ID": 10202, + "SourceStructureID": 5649, + "TargetStructureID": 104655, + "Label": "5649-104655 via Ribbon Synapse from 104632 -> 104658", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104632, + "TargetID": 104658, + "Directional": true + } + ] + }, + { + "ID": 10203, + "SourceStructureID": 5649, + "TargetStructureID": 104656, + "Label": "5649-104656 via Ribbon Synapse from 104632 -> 104657", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104632, + "TargetID": 104657, + "Directional": true + } + ] + }, + { + "ID": 10204, + "SourceStructureID": 5649, + "TargetStructureID": 104659, + "Label": "5649-104659 via BC Conventional Synapse from 104664 -> 104661", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104664, + "TargetID": 104661, + "Directional": true + } + ] + }, + { + "ID": 10205, + "SourceStructureID": 5649, + "TargetStructureID": 104662, + "Label": "5649-104662 via BC Conventional Synapse from 104665 -> 104663", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104665, + "TargetID": 104663, + "Directional": true + } + ] + }, + { + "ID": 10206, + "SourceStructureID": 5649, + "TargetStructureID": 104676, + "Label": "5649-104676 via BC Conventional Synapse from 104675 -> 104678", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104675, + "TargetID": 104678, + "Directional": true + } + ] + }, + { + "ID": 10207, + "SourceStructureID": 5649, + "TargetStructureID": 104680, + "Label": "5649-104680 via Ribbon Synapse from 92022 -> 104681", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92022, + "TargetID": 104681, + "Directional": true + } + ] + }, + { + "ID": 10208, + "SourceStructureID": 5649, + "TargetStructureID": 104682, + "Label": "5649-104682 via Ribbon Synapse from 92022 -> 104689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92022, + "TargetID": 104689, + "Directional": true + } + ] + }, + { + "ID": 10209, + "SourceStructureID": 5649, + "TargetStructureID": 104707, + "Label": "5649-104707 via BC Conventional Synapse from 104704 -> 104709", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104704, + "TargetID": 104709, + "Directional": true + } + ] + }, + { + "ID": 10210, + "SourceStructureID": 5649, + "TargetStructureID": 104710, + "Label": "5649-104710 via BC Conventional Synapse from 104705 -> 104711", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104705, + "TargetID": 104711, + "Directional": true + } + ] + }, + { + "ID": 10211, + "SourceStructureID": 5649, + "TargetStructureID": 104717, + "Label": "5649-104717 via Ribbon Synapse from 53883 -> 104718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53883, + "TargetID": 104718, + "Directional": true + } + ] + }, + { + "ID": 10212, + "SourceStructureID": 5649, + "TargetStructureID": 104721, + "Label": "5649-104721 via Ribbon Synapse from 53881 -> 104723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53881, + "TargetID": 104723, + "Directional": true + } + ] + }, + { + "ID": 10213, + "SourceStructureID": 5649, + "TargetStructureID": 104724, + "Label": "5649-104724 via Ribbon Synapse from 53881 -> 104725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53881, + "TargetID": 104725, + "Directional": true + } + ] + }, + { + "ID": 10214, + "SourceStructureID": 5649, + "TargetStructureID": 104733, + "Label": "5649-104733 via Ribbon Synapse from 53886 -> 104737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53886, + "TargetID": 104737, + "Directional": true + } + ] + }, + { + "ID": 10215, + "SourceStructureID": 5649, + "TargetStructureID": 104739, + "Label": "5649-104739 via Ribbon Synapse from 53888 -> 104758", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53888, + "TargetID": 104758, + "Directional": true + } + ] + }, + { + "ID": 10216, + "SourceStructureID": 5649, + "TargetStructureID": 104746, + "Label": "5649-104746 via Ribbon Synapse from 55740 -> 104747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55740, + "TargetID": 104747, + "Directional": true + } + ] + }, + { + "ID": 10217, + "SourceStructureID": 5649, + "TargetStructureID": 104761, + "Label": "5649-104761 via Ribbon Synapse from 23029 -> 104762", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23029, + "TargetID": 104762, + "Directional": true + } + ] + }, + { + "ID": 10218, + "SourceStructureID": 5649, + "TargetStructureID": 104764, + "Label": "5649-104764 via Ribbon Synapse from 53891 -> 104765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53891, + "TargetID": 104765, + "Directional": true + } + ] + }, + { + "ID": 10219, + "SourceStructureID": 5649, + "TargetStructureID": 104767, + "Label": "5649-104767 via BC Conventional Synapse from 104766 -> 104769", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104766, + "TargetID": 104769, + "Directional": true + } + ] + }, + { + "ID": 10220, + "SourceStructureID": 5649, + "TargetStructureID": 104771, + "Label": "5649-104771 via Ribbon Synapse from 104770 -> 104772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104770, + "TargetID": 104772, + "Directional": true + } + ] + }, + { + "ID": 10221, + "SourceStructureID": 5649, + "TargetStructureID": 104776, + "Label": "5649-104776 via BC Conventional Synapse from 104778 -> 104777", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104778, + "TargetID": 104777, + "Directional": true + } + ] + }, + { + "ID": 10222, + "SourceStructureID": 5649, + "TargetStructureID": 104780, + "Label": "5649-104780 via BC Conventional Synapse from 104779 -> 104781", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104779, + "TargetID": 104781, + "Directional": true + } + ] + }, + { + "ID": 10223, + "SourceStructureID": 5649, + "TargetStructureID": 104783, + "Label": "5649-104783 via BC Conventional Synapse from 104782 -> 104785", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104782, + "TargetID": 104785, + "Directional": true + } + ] + }, + { + "ID": 10224, + "SourceStructureID": 5649, + "TargetStructureID": 104786, + "Label": "5649-104786 via Ribbon Synapse from 55731 -> 104787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55731, + "TargetID": 104787, + "Directional": true + } + ] + }, + { + "ID": 10225, + "SourceStructureID": 5649, + "TargetStructureID": 104788, + "Label": "5649-104788 via Ribbon Synapse from 55731 -> 104789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55731, + "TargetID": 104789, + "Directional": true + } + ] + }, + { + "ID": 10226, + "SourceStructureID": 5649, + "TargetStructureID": 104801, + "Label": "5649-104801 via BC Conventional Synapse from 104800 -> 104802", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104800, + "TargetID": 104802, + "Directional": true + } + ] + }, + { + "ID": 10227, + "SourceStructureID": 5649, + "TargetStructureID": 105320, + "Label": "5649-105320 via BC Conventional Synapse from 105319 -> 105329", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105319, + "TargetID": 105329, + "Directional": true + } + ] + }, + { + "ID": 10228, + "SourceStructureID": 5649, + "TargetStructureID": 105346, + "Label": "5649-105346 via Ribbon Synapse from 105317 -> 105347", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105317, + "TargetID": 105347, + "Directional": true + } + ] + }, + { + "ID": 10229, + "SourceStructureID": 5649, + "TargetStructureID": 105349, + "Label": "5649-105349 via Ribbon Synapse from 105348 -> 105350", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105348, + "TargetID": 105350, + "Directional": true + } + ] + }, + { + "ID": 10230, + "SourceStructureID": 5649, + "TargetStructureID": 105354, + "Label": "5649-105354 via Ribbon Synapse from 105348 -> 105355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105348, + "TargetID": 105355, + "Directional": true + } + ] + }, + { + "ID": 10231, + "SourceStructureID": 5649, + "TargetStructureID": 105359, + "Label": "5649-105359 via Ribbon Synapse from 105358 -> 105371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105358, + "TargetID": 105371, + "Directional": true + } + ] + }, + { + "ID": 10232, + "SourceStructureID": 5649, + "TargetStructureID": 105372, + "Label": "5649-105372 via Ribbon Synapse from 105358 -> 105373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105358, + "TargetID": 105373, + "Directional": true + } + ] + }, + { + "ID": 10233, + "SourceStructureID": 5649, + "TargetStructureID": 105376, + "Label": "5649-105376 via Ribbon Synapse from 105374 -> 105378, 105388 -> 105389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105374, + "TargetID": 105378, + "Directional": true + }, + { + "SourceID": 105388, + "TargetID": 105389, + "Directional": true + } + ] + }, + { + "ID": 10234, + "SourceStructureID": 5649, + "TargetStructureID": 105380, + "Label": "5649-105380 via BC Conventional Synapse from 105379 -> 105387", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105379, + "TargetID": 105387, + "Directional": true + } + ] + }, + { + "ID": 10235, + "SourceStructureID": 5649, + "TargetStructureID": 105382, + "Label": "5649-105382 via Ribbon Synapse from 105388 -> 105384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105388, + "TargetID": 105384, + "Directional": true + } + ] + }, + { + "ID": 10236, + "SourceStructureID": 5649, + "TargetStructureID": 105390, + "Label": "5649-105390 via Ribbon Synapse from 105388 -> 105391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105388, + "TargetID": 105391, + "Directional": true + } + ] + }, + { + "ID": 10237, + "SourceStructureID": 5649, + "TargetStructureID": 105398, + "Label": "5649-105398 via Ribbon Synapse from 105397 -> 105399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105397, + "TargetID": 105399, + "Directional": true + } + ] + }, + { + "ID": 10238, + "SourceStructureID": 5649, + "TargetStructureID": 105403, + "Label": "5649-105403 via BC Conventional Synapse from 105405 -> 105404", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105405, + "TargetID": 105404, + "Directional": true + } + ] + }, + { + "ID": 10239, + "SourceStructureID": 5649, + "TargetStructureID": 105410, + "Label": "5649-105410 via Ribbon Synapse from 105409 -> 105411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105409, + "TargetID": 105411, + "Directional": true + } + ] + }, + { + "ID": 10240, + "SourceStructureID": 5649, + "TargetStructureID": 105414, + "Label": "5649-105414 via BC Conventional Synapse from 105413 -> 105415", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105413, + "TargetID": 105415, + "Directional": true + } + ] + }, + { + "ID": 10241, + "SourceStructureID": 5649, + "TargetStructureID": 105418, + "Label": "5649-105418 via Ribbon Synapse from 105416 -> 105419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105416, + "TargetID": 105419, + "Directional": true + } + ] + }, + { + "ID": 10242, + "SourceStructureID": 5649, + "TargetStructureID": 105426, + "Label": "5649-105426 via Ribbon Synapse from 53894 -> 105428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53894, + "TargetID": 105428, + "Directional": true + } + ] + }, + { + "ID": 10243, + "SourceStructureID": 5649, + "TargetStructureID": 105429, + "Label": "5649-105429 via Ribbon Synapse from 53895 -> 105430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53895, + "TargetID": 105430, + "Directional": true + } + ] + }, + { + "ID": 10244, + "SourceStructureID": 5649, + "TargetStructureID": 105436, + "Label": "5649-105436 via Ribbon Synapse from 53895 -> 105437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53895, + "TargetID": 105437, + "Directional": true + } + ] + }, + { + "ID": 10245, + "SourceStructureID": 5649, + "TargetStructureID": 105438, + "Label": "5649-105438 via Ribbon Synapse from 53899 -> 105442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53899, + "TargetID": 105442, + "Directional": true + } + ] + }, + { + "ID": 10246, + "SourceStructureID": 5649, + "TargetStructureID": 105443, + "Label": "5649-105443 via Ribbon Synapse from 53899 -> 105444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53899, + "TargetID": 105444, + "Directional": true + } + ] + }, + { + "ID": 10247, + "SourceStructureID": 5649, + "TargetStructureID": 105445, + "Label": "5649-105445 via Ribbon Synapse from 53898 -> 105446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53898, + "TargetID": 105446, + "Directional": true + } + ] + }, + { + "ID": 10248, + "SourceStructureID": 5649, + "TargetStructureID": 105553, + "Label": "5649-105553 via BC Conventional Synapse from 134970 -> 134971", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134970, + "TargetID": 134971, + "Directional": true + } + ] + }, + { + "ID": 10249, + "SourceStructureID": 5649, + "TargetStructureID": 105553, + "Label": "5649-105553 via Ribbon Synapse from 105557 -> 105561", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105557, + "TargetID": 105561, + "Directional": true + } + ] + }, + { + "ID": 10250, + "SourceStructureID": 5649, + "TargetStructureID": 105558, + "Label": "5649-105558 via Ribbon Synapse from 105557 -> 105560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105557, + "TargetID": 105560, + "Directional": true + } + ] + }, + { + "ID": 10251, + "SourceStructureID": 5649, + "TargetStructureID": 105566, + "Label": "5649-105566 via Ribbon Synapse from 105565 -> 105567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105565, + "TargetID": 105567, + "Directional": true + } + ] + }, + { + "ID": 10252, + "SourceStructureID": 5649, + "TargetStructureID": 105568, + "Label": "5649-105568 via Ribbon Synapse from 105565 -> 105569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105565, + "TargetID": 105569, + "Directional": true + } + ] + }, + { + "ID": 10253, + "SourceStructureID": 5649, + "TargetStructureID": 105575, + "Label": "5649-105575 via BC Conventional Synapse from 105573 -> 105576", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105573, + "TargetID": 105576, + "Directional": true + } + ] + }, + { + "ID": 10254, + "SourceStructureID": 5649, + "TargetStructureID": 105585, + "Label": "5649-105585 via BC Conventional Synapse from 105584 -> 105586", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105584, + "TargetID": 105586, + "Directional": true + } + ] + }, + { + "ID": 10255, + "SourceStructureID": 5649, + "TargetStructureID": 105588, + "Label": "5649-105588 via BC Conventional Synapse from 105590 -> 105591", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105590, + "TargetID": 105591, + "Directional": true + } + ] + }, + { + "ID": 10256, + "SourceStructureID": 5649, + "TargetStructureID": 105595, + "Label": "5649-105595 via Ribbon Synapse from 105594 -> 105596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105594, + "TargetID": 105596, + "Directional": true + } + ] + }, + { + "ID": 10257, + "SourceStructureID": 5649, + "TargetStructureID": 105597, + "Label": "5649-105597 via Ribbon Synapse from 105594 -> 105598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105594, + "TargetID": 105598, + "Directional": true + } + ] + }, + { + "ID": 10258, + "SourceStructureID": 5649, + "TargetStructureID": 105609, + "Label": "5649-105609 via BC Conventional Synapse from 105608 -> 105610", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105608, + "TargetID": 105610, + "Directional": true + } + ] + }, + { + "ID": 10259, + "SourceStructureID": 5649, + "TargetStructureID": 105616, + "Label": "5649-105616 via BC Conventional Synapse from 105615 -> 105617", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105615, + "TargetID": 105617, + "Directional": true + } + ] + }, + { + "ID": 10260, + "SourceStructureID": 5649, + "TargetStructureID": 105619, + "Label": "5649-105619 via BC Conventional Synapse from 105618 -> 105620", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105618, + "TargetID": 105620, + "Directional": true + } + ] + }, + { + "ID": 10261, + "SourceStructureID": 5649, + "TargetStructureID": 105659, + "Label": "5649-105659 via BC Conventional Synapse from 105656 -> 105661", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105656, + "TargetID": 105661, + "Directional": true + } + ] + }, + { + "ID": 10262, + "SourceStructureID": 5649, + "TargetStructureID": 105659, + "Label": "5649-105659 via Ribbon Synapse from 105668 -> 105662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105668, + "TargetID": 105662, + "Directional": true + } + ] + }, + { + "ID": 10263, + "SourceStructureID": 5649, + "TargetStructureID": 105663, + "Label": "5649-105663 via Ribbon Synapse from 105668 -> 105669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105668, + "TargetID": 105669, + "Directional": true + } + ] + }, + { + "ID": 10264, + "SourceStructureID": 5649, + "TargetStructureID": 105666, + "Label": "5649-105666 via BC Conventional Synapse from 105665 -> 105667", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105665, + "TargetID": 105667, + "Directional": true + } + ] + }, + { + "ID": 10265, + "SourceStructureID": 5649, + "TargetStructureID": 105673, + "Label": "5649-105673 via Ribbon Synapse from 105672 -> 105674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105672, + "TargetID": 105674, + "Directional": true + } + ] + }, + { + "ID": 10266, + "SourceStructureID": 5649, + "TargetStructureID": 105687, + "Label": "5649-105687 via Ribbon Synapse from 53904 -> 105689, 53907 -> 105688", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53904, + "TargetID": 105689, + "Directional": true + }, + { + "SourceID": 53907, + "TargetID": 105688, + "Directional": true + } + ] + }, + { + "ID": 10267, + "SourceStructureID": 5649, + "TargetStructureID": 105700, + "Label": "5649-105700 via Ribbon Synapse from 105699 -> 105701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105699, + "TargetID": 105701, + "Directional": true + } + ] + }, + { + "ID": 10268, + "SourceStructureID": 5649, + "TargetStructureID": 105711, + "Label": "5649-105711 via Ribbon Synapse from 53945 -> 105713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53945, + "TargetID": 105713, + "Directional": true + } + ] + }, + { + "ID": 10269, + "SourceStructureID": 5649, + "TargetStructureID": 105712, + "Label": "5649-105712 via Ribbon Synapse from 53945 -> 105714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53945, + "TargetID": 105714, + "Directional": true + } + ] + }, + { + "ID": 10270, + "SourceStructureID": 5649, + "TargetStructureID": 105715, + "Label": "5649-105715 via Ribbon Synapse from 55733 -> 105717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55733, + "TargetID": 105717, + "Directional": true + } + ] + }, + { + "ID": 10271, + "SourceStructureID": 5649, + "TargetStructureID": 105723, + "Label": "5649-105723 via Ribbon Synapse from 38490 -> 105724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38490, + "TargetID": 105724, + "Directional": true + } + ] + }, + { + "ID": 10272, + "SourceStructureID": 5649, + "TargetStructureID": 105734, + "Label": "5649-105734 via BC Conventional Synapse from 105733 -> 105737", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105733, + "TargetID": 105737, + "Directional": true + } + ] + }, + { + "ID": 10273, + "SourceStructureID": 5649, + "TargetStructureID": 105756, + "Label": "5649-105756 via BC Conventional Synapse from 105752 -> 105757", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105752, + "TargetID": 105757, + "Directional": true + } + ] + }, + { + "ID": 10274, + "SourceStructureID": 5649, + "TargetStructureID": 105773, + "Label": "5649-105773 via BC Conventional Synapse from 105771 -> 105774", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105771, + "TargetID": 105774, + "Directional": true + } + ] + }, + { + "ID": 10275, + "SourceStructureID": 5649, + "TargetStructureID": 105793, + "Label": "5649-105793 via BC Conventional Synapse from 105792 -> 134907", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105792, + "TargetID": 134907, + "Directional": true + } + ] + }, + { + "ID": 10276, + "SourceStructureID": 5649, + "TargetStructureID": 105860, + "Label": "5649-105860 via Ribbon Synapse from 53947 -> 105861", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53947, + "TargetID": 105861, + "Directional": true + } + ] + }, + { + "ID": 10277, + "SourceStructureID": 5649, + "TargetStructureID": 105862, + "Label": "5649-105862 via Ribbon Synapse from 53947 -> 105863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53947, + "TargetID": 105863, + "Directional": true + } + ] + }, + { + "ID": 10278, + "SourceStructureID": 5649, + "TargetStructureID": 105868, + "Label": "5649-105868 via BC Conventional Synapse from 105867 -> 105869", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105867, + "TargetID": 105869, + "Directional": true + } + ] + }, + { + "ID": 10279, + "SourceStructureID": 5649, + "TargetStructureID": 105871, + "Label": "5649-105871 via BC Conventional Synapse from 105870 -> 105872", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105870, + "TargetID": 105872, + "Directional": true + } + ] + }, + { + "ID": 10280, + "SourceStructureID": 5649, + "TargetStructureID": 105889, + "Label": "5649-105889 via Ribbon Synapse from 53957 -> 105890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53957, + "TargetID": 105890, + "Directional": true + } + ] + }, + { + "ID": 10281, + "SourceStructureID": 5649, + "TargetStructureID": 105897, + "Label": "5649-105897 via Ribbon Synapse from 53960 -> 105898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53960, + "TargetID": 105898, + "Directional": true + } + ] + }, + { + "ID": 10282, + "SourceStructureID": 5649, + "TargetStructureID": 105900, + "Label": "5649-105900 via Ribbon Synapse from 53960 -> 105902", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53960, + "TargetID": 105902, + "Directional": true + } + ] + }, + { + "ID": 10283, + "SourceStructureID": 5649, + "TargetStructureID": 105912, + "Label": "5649-105912 via Ribbon Synapse from 53952 -> 105914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53952, + "TargetID": 105914, + "Directional": true + } + ] + }, + { + "ID": 10284, + "SourceStructureID": 5649, + "TargetStructureID": 105916, + "Label": "5649-105916 via Ribbon Synapse from 53952 -> 105917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53952, + "TargetID": 105917, + "Directional": true + } + ] + }, + { + "ID": 10285, + "SourceStructureID": 5649, + "TargetStructureID": 105931, + "Label": "5649-105931 via Ribbon Synapse from 105930 -> 105933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105930, + "TargetID": 105933, + "Directional": true + } + ] + }, + { + "ID": 10286, + "SourceStructureID": 5649, + "TargetStructureID": 105934, + "Label": "5649-105934 via Ribbon Synapse from 53974 -> 105935", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53974, + "TargetID": 105935, + "Directional": true + } + ] + }, + { + "ID": 10287, + "SourceStructureID": 5649, + "TargetStructureID": 105936, + "Label": "5649-105936 via Ribbon Synapse from 53974 -> 105938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53974, + "TargetID": 105938, + "Directional": true + } + ] + }, + { + "ID": 10288, + "SourceStructureID": 5649, + "TargetStructureID": 105940, + "Label": "5649-105940 via Ribbon Synapse from 54003 -> 105941", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54003, + "TargetID": 105941, + "Directional": true + } + ] + }, + { + "ID": 10289, + "SourceStructureID": 5649, + "TargetStructureID": 105942, + "Label": "5649-105942 via Ribbon Synapse from 54003 -> 105943", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54003, + "TargetID": 105943, + "Directional": true + } + ] + }, + { + "ID": 10290, + "SourceStructureID": 5649, + "TargetStructureID": 105946, + "Label": "5649-105946 via BC Conventional Synapse from 105945 -> 105948", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105945, + "TargetID": 105948, + "Directional": true + } + ] + }, + { + "ID": 10291, + "SourceStructureID": 5649, + "TargetStructureID": 105950, + "Label": "5649-105950 via BC Conventional Synapse from 105949 -> 105951", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105949, + "TargetID": 105951, + "Directional": true + } + ] + }, + { + "ID": 10292, + "SourceStructureID": 5649, + "TargetStructureID": 105952, + "Label": "5649-105952 via BC Conventional Synapse from 105954 -> 105953", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105954, + "TargetID": 105953, + "Directional": true + } + ] + }, + { + "ID": 10293, + "SourceStructureID": 5649, + "TargetStructureID": 105963, + "Label": "5649-105963 via Ribbon Synapse from 105962 -> 105964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105962, + "TargetID": 105964, + "Directional": true + } + ] + }, + { + "ID": 10294, + "SourceStructureID": 5649, + "TargetStructureID": 105982, + "Label": "5649-105982 via Ribbon Synapse from 53998 -> 105985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53998, + "TargetID": 105985, + "Directional": true + } + ] + }, + { + "ID": 10295, + "SourceStructureID": 5649, + "TargetStructureID": 105996, + "Label": "5649-105996 via Ribbon Synapse from 105995 -> 105997", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105995, + "TargetID": 105997, + "Directional": true + } + ] + }, + { + "ID": 10296, + "SourceStructureID": 5649, + "TargetStructureID": 106023, + "Label": "5649-106023 via BC Conventional Synapse from 106022 -> 106025", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106022, + "TargetID": 106025, + "Directional": true + } + ] + }, + { + "ID": 10297, + "SourceStructureID": 5649, + "TargetStructureID": 106035, + "Label": "5649-106035 via Ribbon Synapse from 106034 -> 106036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106034, + "TargetID": 106036, + "Directional": true + } + ] + }, + { + "ID": 10298, + "SourceStructureID": 5649, + "TargetStructureID": 106037, + "Label": "5649-106037 via Ribbon Synapse from 106034 -> 106038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106034, + "TargetID": 106038, + "Directional": true + } + ] + }, + { + "ID": 10299, + "SourceStructureID": 5649, + "TargetStructureID": 106059, + "Label": "5649-106059 via Ribbon Synapse from 37867 -> 135385, 106043 -> 106063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37867, + "TargetID": 135385, + "Directional": true + }, + { + "SourceID": 106043, + "TargetID": 106063, + "Directional": true + } + ] + }, + { + "ID": 10300, + "SourceStructureID": 5649, + "TargetStructureID": 106098, + "Label": "5649-106098 via BC Conventional Synapse from 135386 -> 106100", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135386, + "TargetID": 106100, + "Directional": true + } + ] + }, + { + "ID": 10301, + "SourceStructureID": 5649, + "TargetStructureID": 106099, + "Label": "5649-106099 via BC Conventional Synapse from 135386 -> 106101", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135386, + "TargetID": 106101, + "Directional": true + } + ] + }, + { + "ID": 10302, + "SourceStructureID": 5649, + "TargetStructureID": 106107, + "Label": "5649-106107 via Ribbon Synapse from 31040 -> 106109", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31040, + "TargetID": 106109, + "Directional": true + } + ] + }, + { + "ID": 10303, + "SourceStructureID": 5649, + "TargetStructureID": 106112, + "Label": "5649-106112 via Ribbon Synapse from 37867 -> 106113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37867, + "TargetID": 106113, + "Directional": true + } + ] + }, + { + "ID": 10304, + "SourceStructureID": 5649, + "TargetStructureID": 106114, + "Label": "5649-106114 via Ribbon Synapse from 106111 -> 106115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106111, + "TargetID": 106115, + "Directional": true + } + ] + }, + { + "ID": 10305, + "SourceStructureID": 5649, + "TargetStructureID": 106119, + "Label": "5649-106119 via Ribbon Synapse from 31040 -> 106120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31040, + "TargetID": 106120, + "Directional": true + } + ] + }, + { + "ID": 10306, + "SourceStructureID": 5649, + "TargetStructureID": 106134, + "Label": "5649-106134 via Ribbon Synapse from 54084 -> 106135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54084, + "TargetID": 106135, + "Directional": true + } + ] + }, + { + "ID": 10307, + "SourceStructureID": 5649, + "TargetStructureID": 106246, + "Label": "5649-106246 via Ribbon Synapse from 54086 -> 106248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54086, + "TargetID": 106248, + "Directional": true + } + ] + }, + { + "ID": 10308, + "SourceStructureID": 5649, + "TargetStructureID": 106247, + "Label": "5649-106247 via Ribbon Synapse from 54086 -> 106252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54086, + "TargetID": 106252, + "Directional": true + } + ] + }, + { + "ID": 10309, + "SourceStructureID": 5649, + "TargetStructureID": 106269, + "Label": "5649-106269 via Ribbon Synapse from 33110 -> 106271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33110, + "TargetID": 106271, + "Directional": true + } + ] + }, + { + "ID": 10310, + "SourceStructureID": 5649, + "TargetStructureID": 106272, + "Label": "5649-106272 via Ribbon Synapse from 54087 -> 106275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54087, + "TargetID": 106275, + "Directional": true + } + ] + }, + { + "ID": 10311, + "SourceStructureID": 5649, + "TargetStructureID": 106273, + "Label": "5649-106273 via Ribbon Synapse from 54087 -> 106274", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54087, + "TargetID": 106274, + "Directional": true + } + ] + }, + { + "ID": 10312, + "SourceStructureID": 5649, + "TargetStructureID": 106277, + "Label": "5649-106277 via Ribbon Synapse from 54090 -> 106278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54090, + "TargetID": 106278, + "Directional": true + } + ] + }, + { + "ID": 10313, + "SourceStructureID": 5649, + "TargetStructureID": 106288, + "Label": "5649-106288 via Ribbon Synapse from 106287 -> 106289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106287, + "TargetID": 106289, + "Directional": true + } + ] + }, + { + "ID": 10314, + "SourceStructureID": 5649, + "TargetStructureID": 106291, + "Label": "5649-106291 via Ribbon Synapse from 54093 -> 106307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54093, + "TargetID": 106307, + "Directional": true + } + ] + }, + { + "ID": 10315, + "SourceStructureID": 5649, + "TargetStructureID": 106298, + "Label": "5649-106298 via BC Conventional Synapse from 106300 -> 106301", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106300, + "TargetID": 106301, + "Directional": true + } + ] + }, + { + "ID": 10316, + "SourceStructureID": 5649, + "TargetStructureID": 106308, + "Label": "5649-106308 via BC Conventional Synapse from 106311 -> 106309", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106311, + "TargetID": 106309, + "Directional": true + } + ] + }, + { + "ID": 10317, + "SourceStructureID": 5649, + "TargetStructureID": 106315, + "Label": "5649-106315 via Ribbon Synapse from 54180 -> 106316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54180, + "TargetID": 106316, + "Directional": true + } + ] + }, + { + "ID": 10318, + "SourceStructureID": 5649, + "TargetStructureID": 106339, + "Label": "5649-106339 via Ribbon Synapse from 54183 -> 106340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54183, + "TargetID": 106340, + "Directional": true + } + ] + }, + { + "ID": 10319, + "SourceStructureID": 5649, + "TargetStructureID": 106352, + "Label": "5649-106352 via BC Conventional Synapse from 54114 -> 106353", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54114, + "TargetID": 106353, + "Directional": true + } + ] + }, + { + "ID": 10320, + "SourceStructureID": 5649, + "TargetStructureID": 106419, + "Label": "5649-106419 via Ribbon Synapse from 54119 -> 106420", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54119, + "TargetID": 106420, + "Directional": true + } + ] + }, + { + "ID": 10321, + "SourceStructureID": 5649, + "TargetStructureID": 106531, + "Label": "5649-106531 via Ribbon Synapse from 54108 -> 106533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54108, + "TargetID": 106533, + "Directional": true + } + ] + }, + { + "ID": 10322, + "SourceStructureID": 5649, + "TargetStructureID": 106532, + "Label": "5649-106532 via Ribbon Synapse from 54108 -> 106534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54108, + "TargetID": 106534, + "Directional": true + } + ] + }, + { + "ID": 10323, + "SourceStructureID": 5649, + "TargetStructureID": 106539, + "Label": "5649-106539 via Ribbon Synapse from 54103 -> 106540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54103, + "TargetID": 106540, + "Directional": true + } + ] + }, + { + "ID": 10324, + "SourceStructureID": 5649, + "TargetStructureID": 106552, + "Label": "5649-106552 via Ribbon Synapse from 106551 -> 106553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106551, + "TargetID": 106553, + "Directional": true + } + ] + }, + { + "ID": 10325, + "SourceStructureID": 5649, + "TargetStructureID": 106560, + "Label": "5649-106560 via BC Conventional Synapse from 106559 -> 106561", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106559, + "TargetID": 106561, + "Directional": true + } + ] + }, + { + "ID": 10326, + "SourceStructureID": 5649, + "TargetStructureID": 106562, + "Label": "5649-106562 via Ribbon Synapse from 54107 -> 106563", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54107, + "TargetID": 106563, + "Directional": true + } + ] + }, + { + "ID": 10327, + "SourceStructureID": 5649, + "TargetStructureID": 106564, + "Label": "5649-106564 via Ribbon Synapse from 54107 -> 106590", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54107, + "TargetID": 106590, + "Directional": true + } + ] + }, + { + "ID": 10328, + "SourceStructureID": 5649, + "TargetStructureID": 106595, + "Label": "5649-106595 via Ribbon Synapse from 106594 -> 106596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106594, + "TargetID": 106596, + "Directional": true + } + ] + }, + { + "ID": 10329, + "SourceStructureID": 5649, + "TargetStructureID": 106661, + "Label": "5649-106661 via Ribbon Synapse from 106605 -> 106664", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106605, + "TargetID": 106664, + "Directional": true + } + ] + }, + { + "ID": 10330, + "SourceStructureID": 5649, + "TargetStructureID": 106709, + "Label": "5649-106709 via Ribbon Synapse from 106706 -> 106710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106706, + "TargetID": 106710, + "Directional": true + } + ] + }, + { + "ID": 10331, + "SourceStructureID": 5649, + "TargetStructureID": 106761, + "Label": "5649-106761 via Ribbon Synapse from 54085 -> 106763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54085, + "TargetID": 106763, + "Directional": true + } + ] + }, + { + "ID": 10332, + "SourceStructureID": 5649, + "TargetStructureID": 106764, + "Label": "5649-106764 via Ribbon Synapse from 54085 -> 106769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54085, + "TargetID": 106769, + "Directional": true + } + ] + }, + { + "ID": 10333, + "SourceStructureID": 5649, + "TargetStructureID": 106770, + "Label": "5649-106770 via Ribbon Synapse from 54085 -> 106771", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54085, + "TargetID": 106771, + "Directional": true + } + ] + }, + { + "ID": 10334, + "SourceStructureID": 5649, + "TargetStructureID": 106781, + "Label": "5649-106781 via Ribbon Synapse from 106760 -> 106783", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106760, + "TargetID": 106783, + "Directional": true + } + ] + }, + { + "ID": 10335, + "SourceStructureID": 5649, + "TargetStructureID": 106782, + "Label": "5649-106782 via Ribbon Synapse from 106760 -> 106784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106760, + "TargetID": 106784, + "Directional": true + } + ] + }, + { + "ID": 10336, + "SourceStructureID": 5649, + "TargetStructureID": 106801, + "Label": "5649-106801 via Ribbon Synapse from 106814 -> 106817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106814, + "TargetID": 106817, + "Directional": true + } + ] + }, + { + "ID": 10337, + "SourceStructureID": 5649, + "TargetStructureID": 106859, + "Label": "5649-106859 via Ribbon Synapse from 106853 -> 106860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106853, + "TargetID": 106860, + "Directional": true + } + ] + }, + { + "ID": 10338, + "SourceStructureID": 5649, + "TargetStructureID": 106873, + "Label": "5649-106873 via Ribbon Synapse from 106866 -> 106874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106866, + "TargetID": 106874, + "Directional": true + } + ] + }, + { + "ID": 10339, + "SourceStructureID": 5649, + "TargetStructureID": 106881, + "Label": "5649-106881 via Ribbon Synapse from 106866 -> 106882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106866, + "TargetID": 106882, + "Directional": true + } + ] + }, + { + "ID": 10340, + "SourceStructureID": 5649, + "TargetStructureID": 106883, + "Label": "5649-106883 via Ribbon Synapse from 106866 -> 106884", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106866, + "TargetID": 106884, + "Directional": true + } + ] + }, + { + "ID": 10341, + "SourceStructureID": 5649, + "TargetStructureID": 106926, + "Label": "5649-106926 via Ribbon Synapse from 106923 -> 106930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106923, + "TargetID": 106930, + "Directional": true + } + ] + }, + { + "ID": 10342, + "SourceStructureID": 5649, + "TargetStructureID": 107054, + "Label": "5649-107054 via Ribbon Synapse from 107055 -> 107056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107055, + "TargetID": 107056, + "Directional": true + } + ] + }, + { + "ID": 10343, + "SourceStructureID": 5649, + "TargetStructureID": 107059, + "Label": "5649-107059 via Ribbon Synapse from 107058 -> 107060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107058, + "TargetID": 107060, + "Directional": true + } + ] + }, + { + "ID": 10344, + "SourceStructureID": 5649, + "TargetStructureID": 107063, + "Label": "5649-107063 via Ribbon Synapse from 107058 -> 107064", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107058, + "TargetID": 107064, + "Directional": true + } + ] + }, + { + "ID": 10345, + "SourceStructureID": 5649, + "TargetStructureID": 107074, + "Label": "5649-107074 via Ribbon Synapse from 107077 -> 107076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107077, + "TargetID": 107076, + "Directional": true + } + ] + }, + { + "ID": 10346, + "SourceStructureID": 5649, + "TargetStructureID": 107078, + "Label": "5649-107078 via Ribbon Synapse from 107077 -> 107079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107077, + "TargetID": 107079, + "Directional": true + } + ] + }, + { + "ID": 10347, + "SourceStructureID": 5649, + "TargetStructureID": 107085, + "Label": "5649-107085 via BC Conventional Synapse from 107097 -> 107086", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107097, + "TargetID": 107086, + "Directional": true + } + ] + }, + { + "ID": 10348, + "SourceStructureID": 5649, + "TargetStructureID": 107122, + "Label": "5649-107122 via Ribbon Synapse from 35067 -> 107123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35067, + "TargetID": 107123, + "Directional": true + } + ] + }, + { + "ID": 10349, + "SourceStructureID": 5649, + "TargetStructureID": 107126, + "Label": "5649-107126 via Ribbon Synapse from 54291 -> 107127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54291, + "TargetID": 107127, + "Directional": true + } + ] + }, + { + "ID": 10350, + "SourceStructureID": 5649, + "TargetStructureID": 107129, + "Label": "5649-107129 via Ribbon Synapse from 54292 -> 107130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54292, + "TargetID": 107130, + "Directional": true + } + ] + }, + { + "ID": 10351, + "SourceStructureID": 5649, + "TargetStructureID": 107160, + "Label": "5649-107160 via BC Conventional Synapse from 107159 -> 107161", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107159, + "TargetID": 107161, + "Directional": true + } + ] + }, + { + "ID": 10352, + "SourceStructureID": 5649, + "TargetStructureID": 107179, + "Label": "5649-107179 via Ribbon Synapse from 135438 -> 135439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135438, + "TargetID": 135439, + "Directional": true + } + ] + }, + { + "ID": 10353, + "SourceStructureID": 5649, + "TargetStructureID": 107213, + "Label": "5649-107213 via BC Conventional Synapse from 107212 -> 107214", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107212, + "TargetID": 107214, + "Directional": true + } + ] + }, + { + "ID": 10354, + "SourceStructureID": 5649, + "TargetStructureID": 107220, + "Label": "5649-107220 via BC Conventional Synapse from 107219 -> 107221", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107219, + "TargetID": 107221, + "Directional": true + } + ] + }, + { + "ID": 10355, + "SourceStructureID": 5649, + "TargetStructureID": 107222, + "Label": "5649-107222 via Ribbon Synapse from 107218 -> 107223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107218, + "TargetID": 107223, + "Directional": true + } + ] + }, + { + "ID": 10356, + "SourceStructureID": 5649, + "TargetStructureID": 107227, + "Label": "5649-107227 via BC Conventional Synapse from 107226 -> 107228, 134972 -> 134973", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107226, + "TargetID": 107228, + "Directional": true + }, + { + "SourceID": 134972, + "TargetID": 134973, + "Directional": true + } + ] + }, + { + "ID": 10357, + "SourceStructureID": 5649, + "TargetStructureID": 107233, + "Label": "5649-107233 via Ribbon Synapse from 107231 -> 107234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107231, + "TargetID": 107234, + "Directional": true + } + ] + }, + { + "ID": 10358, + "SourceStructureID": 5649, + "TargetStructureID": 107235, + "Label": "5649-107235 via Ribbon Synapse from 107232 -> 107236, 107269 -> 107272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107232, + "TargetID": 107236, + "Directional": true + }, + { + "SourceID": 107269, + "TargetID": 107272, + "Directional": true + } + ] + }, + { + "ID": 10359, + "SourceStructureID": 5649, + "TargetStructureID": 107237, + "Label": "5649-107237 via Ribbon Synapse from 107232 -> 107238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107232, + "TargetID": 107238, + "Directional": true + } + ] + }, + { + "ID": 10360, + "SourceStructureID": 5649, + "TargetStructureID": 107246, + "Label": "5649-107246 via BC Conventional Synapse from 107244 -> 107247", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107244, + "TargetID": 107247, + "Directional": true + } + ] + }, + { + "ID": 10361, + "SourceStructureID": 5649, + "TargetStructureID": 107248, + "Label": "5649-107248 via Ribbon Synapse from 107242 -> 107250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107242, + "TargetID": 107250, + "Directional": true + } + ] + }, + { + "ID": 10362, + "SourceStructureID": 5649, + "TargetStructureID": 107257, + "Label": "5649-107257 via BC Conventional Synapse from 107251 -> 107258", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107251, + "TargetID": 107258, + "Directional": true + } + ] + }, + { + "ID": 10363, + "SourceStructureID": 5649, + "TargetStructureID": 107262, + "Label": "5649-107262 via Ribbon Synapse from 107239 -> 107284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107239, + "TargetID": 107284, + "Directional": true + } + ] + }, + { + "ID": 10364, + "SourceStructureID": 5649, + "TargetStructureID": 107265, + "Label": "5649-107265 via Ribbon Synapse from 107241 -> 107274, 107242 -> 107286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107241, + "TargetID": 107274, + "Directional": true + }, + { + "SourceID": 107242, + "TargetID": 107286, + "Directional": true + } + ] + }, + { + "ID": 10365, + "SourceStructureID": 5649, + "TargetStructureID": 107275, + "Label": "5649-107275 via Ribbon Synapse from 107241 -> 107276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107241, + "TargetID": 107276, + "Directional": true + } + ] + }, + { + "ID": 10366, + "SourceStructureID": 5649, + "TargetStructureID": 107280, + "Label": "5649-107280 via Ribbon Synapse from 107240 -> 107282", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107240, + "TargetID": 107282, + "Directional": true + } + ] + }, + { + "ID": 10367, + "SourceStructureID": 5649, + "TargetStructureID": 107287, + "Label": "5649-107287 via Ribbon Synapse from 107242 -> 107288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107242, + "TargetID": 107288, + "Directional": true + } + ] + }, + { + "ID": 10368, + "SourceStructureID": 5649, + "TargetStructureID": 107295, + "Label": "5649-107295 via BC Conventional Synapse from 107294 -> 107296", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107294, + "TargetID": 107296, + "Directional": true + } + ] + }, + { + "ID": 10369, + "SourceStructureID": 5649, + "TargetStructureID": 107304, + "Label": "5649-107304 via Ribbon Synapse from 107303 -> 107305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107303, + "TargetID": 107305, + "Directional": true + } + ] + }, + { + "ID": 10370, + "SourceStructureID": 5649, + "TargetStructureID": 107306, + "Label": "5649-107306 via Ribbon Synapse from 107303 -> 107307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107303, + "TargetID": 107307, + "Directional": true + } + ] + }, + { + "ID": 10371, + "SourceStructureID": 5649, + "TargetStructureID": 107312, + "Label": "5649-107312 via BC Conventional Synapse from 107311 -> 107313", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107311, + "TargetID": 107313, + "Directional": true + } + ] + }, + { + "ID": 10372, + "SourceStructureID": 5649, + "TargetStructureID": 107328, + "Label": "5649-107328 via Ribbon Synapse from 70011 -> 116725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70011, + "TargetID": 116725, + "Directional": true + } + ] + }, + { + "ID": 10373, + "SourceStructureID": 5649, + "TargetStructureID": 107332, + "Label": "5649-107332 via Ribbon Synapse from 35366 -> 107333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35366, + "TargetID": 107333, + "Directional": true + } + ] + }, + { + "ID": 10374, + "SourceStructureID": 5649, + "TargetStructureID": 107339, + "Label": "5649-107339 via BC Conventional Synapse from 104606 -> 104602", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104606, + "TargetID": 104602, + "Directional": true + } + ] + }, + { + "ID": 10375, + "SourceStructureID": 5649, + "TargetStructureID": 107339, + "Label": "5649-107339 via Ribbon Synapse from 59659 -> 107340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59659, + "TargetID": 107340, + "Directional": true + } + ] + }, + { + "ID": 10376, + "SourceStructureID": 5649, + "TargetStructureID": 107342, + "Label": "5649-107342 via Ribbon Synapse from 70012 -> 107343", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70012, + "TargetID": 107343, + "Directional": true + } + ] + }, + { + "ID": 10377, + "SourceStructureID": 5649, + "TargetStructureID": 107344, + "Label": "5649-107344 via BC Conventional Synapse from 107346 -> 107345", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107346, + "TargetID": 107345, + "Directional": true + } + ] + }, + { + "ID": 10378, + "SourceStructureID": 5649, + "TargetStructureID": 108143, + "Label": "5649-108143 via Ribbon Synapse from 108142 -> 108145", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108142, + "TargetID": 108145, + "Directional": true + } + ] + }, + { + "ID": 10379, + "SourceStructureID": 5649, + "TargetStructureID": 113086, + "Label": "5649-113086 via BC Conventional Synapse from 104624 -> 104626", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104624, + "TargetID": 104626, + "Directional": true + } + ] + }, + { + "ID": 10380, + "SourceStructureID": 5649, + "TargetStructureID": 135401, + "Label": "5649-135401 via Ribbon Synapse from 81727 -> 135404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81727, + "TargetID": 135404, + "Directional": true + } + ] + }, + { + "ID": 10381, + "SourceStructureID": 5650, + "TargetStructureID": 598, + "Label": "5650-598 via Ribbon Synapse from 104303 -> 6324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104303, + "TargetID": 6324, + "Directional": true + } + ] + }, + { + "ID": 10382, + "SourceStructureID": 5650, + "TargetStructureID": 606, + "Label": "5650-606 via Ribbon Synapse from 30159 -> 51486, 51396 -> 51401, 51397 -> 51399, 51442 -> 51443, 51451 -> 51453, 51465 -> 51467, 51479 -> 51480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30159, + "TargetID": 51486, + "Directional": true + }, + { + "SourceID": 51396, + "TargetID": 51401, + "Directional": true + }, + { + "SourceID": 51397, + "TargetID": 51399, + "Directional": true + }, + { + "SourceID": 51442, + "TargetID": 51443, + "Directional": true + }, + { + "SourceID": 51451, + "TargetID": 51453, + "Directional": true + }, + { + "SourceID": 51465, + "TargetID": 51467, + "Directional": true + }, + { + "SourceID": 51479, + "TargetID": 51480, + "Directional": true + } + ] + }, + { + "ID": 10383, + "SourceStructureID": 5650, + "TargetStructureID": 5643, + "Label": "5650-5643 via Ribbon Synapse from 38553 -> 38552, 102750 -> 102751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38553, + "TargetID": 38552, + "Directional": true + }, + { + "SourceID": 102750, + "TargetID": 102751, + "Directional": true + } + ] + }, + { + "ID": 10384, + "SourceStructureID": 5650, + "TargetStructureID": 7594, + "Label": "5650-7594 via Ribbon Synapse from 25090 -> 25089, 30264 -> 30273, 105061 -> 25087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25090, + "TargetID": 25089, + "Directional": true + }, + { + "SourceID": 30264, + "TargetID": 30273, + "Directional": true + }, + { + "SourceID": 105061, + "TargetID": 25087, + "Directional": true + } + ] + }, + { + "ID": 10385, + "SourceStructureID": 5650, + "TargetStructureID": 9769, + "Label": "5650-9769 via Ribbon Synapse from 23470 -> 30125, 23478 -> 23479, 23480 -> 103955, 23483 -> 23484, 23486 -> 23467, 25091 -> 52588, 29913 -> 29920, 29915 -> 20262, 29931 -> 29924, 29938 -> 29936, 30123 -> 30122, 30149 -> 30143, 30154 -> 30155, 30159 -> 30160, 30217 -> 30211, 50563 -> 103838, 51442 -> 51444, 52586 -> 52587, 52606 -> 52596, 53189 -> 53190, 103625 -> 103628, 105039 -> 52590, 105196 -> 105198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23470, + "TargetID": 30125, + "Directional": true + }, + { + "SourceID": 23478, + "TargetID": 23479, + "Directional": true + }, + { + "SourceID": 23480, + "TargetID": 103955, + "Directional": true + }, + { + "SourceID": 23483, + "TargetID": 23484, + "Directional": true + }, + { + "SourceID": 23486, + "TargetID": 23467, + "Directional": true + }, + { + "SourceID": 25091, + "TargetID": 52588, + "Directional": true + }, + { + "SourceID": 29913, + "TargetID": 29920, + "Directional": true + }, + { + "SourceID": 29915, + "TargetID": 20262, + "Directional": true + }, + { + "SourceID": 29931, + "TargetID": 29924, + "Directional": true + }, + { + "SourceID": 29938, + "TargetID": 29936, + "Directional": true + }, + { + "SourceID": 30123, + "TargetID": 30122, + "Directional": true + }, + { + "SourceID": 30149, + "TargetID": 30143, + "Directional": true + }, + { + "SourceID": 30154, + "TargetID": 30155, + "Directional": true + }, + { + "SourceID": 30159, + "TargetID": 30160, + "Directional": true + }, + { + "SourceID": 30217, + "TargetID": 30211, + "Directional": true + }, + { + "SourceID": 50563, + "TargetID": 103838, + "Directional": true + }, + { + "SourceID": 51442, + "TargetID": 51444, + "Directional": true + }, + { + "SourceID": 52586, + "TargetID": 52587, + "Directional": true + }, + { + "SourceID": 52606, + "TargetID": 52596, + "Directional": true + }, + { + "SourceID": 53189, + "TargetID": 53190, + "Directional": true + }, + { + "SourceID": 103625, + "TargetID": 103628, + "Directional": true + }, + { + "SourceID": 105039, + "TargetID": 52590, + "Directional": true + }, + { + "SourceID": 105196, + "TargetID": 105198, + "Directional": true + } + ] + }, + { + "ID": 10386, + "SourceStructureID": 5650, + "TargetStructureID": 12897, + "Label": "5650-12897 via BC Conventional Synapse from 102746 -> 102747", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102746, + "TargetID": 102747, + "Directional": true + } + ] + }, + { + "ID": 10387, + "SourceStructureID": 5650, + "TargetStructureID": 16073, + "Label": "5650-16073 via Ribbon Synapse from 105172 -> 105174", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105172, + "TargetID": 105174, + "Directional": true + } + ] + }, + { + "ID": 10388, + "SourceStructureID": 5650, + "TargetStructureID": 30130, + "Label": "5650-30130 via Ribbon Synapse from 30137 -> 30138, 30264 -> 30263, 50563 -> 103837, 104281 -> 104284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30137, + "TargetID": 30138, + "Directional": true + }, + { + "SourceID": 30264, + "TargetID": 30263, + "Directional": true + }, + { + "SourceID": 50563, + "TargetID": 103837, + "Directional": true + }, + { + "SourceID": 104281, + "TargetID": 104284, + "Directional": true + } + ] + }, + { + "ID": 10389, + "SourceStructureID": 5650, + "TargetStructureID": 35240, + "Label": "5650-35240 via Ribbon Synapse from 35264 -> 35263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35264, + "TargetID": 35263, + "Directional": true + } + ] + }, + { + "ID": 10390, + "SourceStructureID": 5650, + "TargetStructureID": 35351, + "Label": "5650-35351 via Ribbon Synapse from 50565 -> 103598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50565, + "TargetID": 103598, + "Directional": true + } + ] + }, + { + "ID": 10391, + "SourceStructureID": 5650, + "TargetStructureID": 35440, + "Label": "5650-35440 via Ribbon Synapse from 35451 -> 35450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35451, + "TargetID": 35450, + "Directional": true + } + ] + }, + { + "ID": 10392, + "SourceStructureID": 5650, + "TargetStructureID": 53407, + "Label": "5650-53407 via Ribbon Synapse from 23486 -> 53410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23486, + "TargetID": 53410, + "Directional": true + } + ] + }, + { + "ID": 10393, + "SourceStructureID": 5650, + "TargetStructureID": 53443, + "Label": "5650-53443 via Ribbon Synapse from 104153 -> 104154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104153, + "TargetID": 104154, + "Directional": true + } + ] + }, + { + "ID": 10394, + "SourceStructureID": 5650, + "TargetStructureID": 57034, + "Label": "5650-57034 via Ribbon Synapse from 57038 -> 57037, 105172 -> 105173", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57038, + "TargetID": 57037, + "Directional": true + }, + { + "SourceID": 105172, + "TargetID": 105173, + "Directional": true + } + ] + }, + { + "ID": 10395, + "SourceStructureID": 5650, + "TargetStructureID": 89097, + "Label": "5650-89097 via Ribbon Synapse from 23490 -> 89100", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23490, + "TargetID": 89100, + "Directional": true + } + ] + }, + { + "ID": 10396, + "SourceStructureID": 5650, + "TargetStructureID": 102646, + "Label": "5650-102646 via Ribbon Synapse from 102647 -> 102648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102647, + "TargetID": 102648, + "Directional": true + } + ] + }, + { + "ID": 10397, + "SourceStructureID": 5650, + "TargetStructureID": 102649, + "Label": "5650-102649 via Ribbon Synapse from 102657 -> 102654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102657, + "TargetID": 102654, + "Directional": true + } + ] + }, + { + "ID": 10398, + "SourceStructureID": 5650, + "TargetStructureID": 102650, + "Label": "5650-102650 via Ribbon Synapse from 102657 -> 102653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102657, + "TargetID": 102653, + "Directional": true + } + ] + }, + { + "ID": 10399, + "SourceStructureID": 5650, + "TargetStructureID": 102664, + "Label": "5650-102664 via Ribbon Synapse from 102668 -> 102669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102668, + "TargetID": 102669, + "Directional": true + } + ] + }, + { + "ID": 10400, + "SourceStructureID": 5650, + "TargetStructureID": 102671, + "Label": "5650-102671 via Ribbon Synapse from 102670 -> 102673", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102670, + "TargetID": 102673, + "Directional": true + } + ] + }, + { + "ID": 10401, + "SourceStructureID": 5650, + "TargetStructureID": 102674, + "Label": "5650-102674 via Ribbon Synapse from 102670 -> 102675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102670, + "TargetID": 102675, + "Directional": true + } + ] + }, + { + "ID": 10402, + "SourceStructureID": 5650, + "TargetStructureID": 102693, + "Label": "5650-102693 via BC Conventional Synapse from 102701 -> 102702", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102701, + "TargetID": 102702, + "Directional": true + } + ] + }, + { + "ID": 10403, + "SourceStructureID": 5650, + "TargetStructureID": 102697, + "Label": "5650-102697 via BC Conventional Synapse from 102698 -> 102699", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102698, + "TargetID": 102699, + "Directional": true + } + ] + }, + { + "ID": 10404, + "SourceStructureID": 5650, + "TargetStructureID": 102761, + "Label": "5650-102761 via Ribbon Synapse from 102763 -> 102762", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102763, + "TargetID": 102762, + "Directional": true + } + ] + }, + { + "ID": 10405, + "SourceStructureID": 5650, + "TargetStructureID": 102787, + "Label": "5650-102787 via Ribbon Synapse from 102786 -> 102794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102786, + "TargetID": 102794, + "Directional": true + } + ] + }, + { + "ID": 10406, + "SourceStructureID": 5650, + "TargetStructureID": 102793, + "Label": "5650-102793 via Ribbon Synapse from 102798 -> 102799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102798, + "TargetID": 102799, + "Directional": true + } + ] + }, + { + "ID": 10407, + "SourceStructureID": 5650, + "TargetStructureID": 102953, + "Label": "5650-102953 via Ribbon Synapse from 102963 -> 102972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102963, + "TargetID": 102972, + "Directional": true + } + ] + }, + { + "ID": 10408, + "SourceStructureID": 5650, + "TargetStructureID": 102975, + "Label": "5650-102975 via Ribbon Synapse from 102978 -> 102979", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102978, + "TargetID": 102979, + "Directional": true + } + ] + }, + { + "ID": 10409, + "SourceStructureID": 5650, + "TargetStructureID": 102982, + "Label": "5650-102982 via Ribbon Synapse from 102984 -> 102983", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102984, + "TargetID": 102983, + "Directional": true + } + ] + }, + { + "ID": 10410, + "SourceStructureID": 5650, + "TargetStructureID": 102990, + "Label": "5650-102990 via Ribbon Synapse from 102989 -> 102992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102989, + "TargetID": 102992, + "Directional": true + } + ] + }, + { + "ID": 10411, + "SourceStructureID": 5650, + "TargetStructureID": 102993, + "Label": "5650-102993 via Ribbon Synapse from 102989 -> 102994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102989, + "TargetID": 102994, + "Directional": true + } + ] + }, + { + "ID": 10412, + "SourceStructureID": 5650, + "TargetStructureID": 102999, + "Label": "5650-102999 via Ribbon Synapse from 61077 -> 103000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61077, + "TargetID": 103000, + "Directional": true + } + ] + }, + { + "ID": 10413, + "SourceStructureID": 5650, + "TargetStructureID": 103005, + "Label": "5650-103005 via Ribbon Synapse from 103006 -> 103007", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103006, + "TargetID": 103007, + "Directional": true + } + ] + }, + { + "ID": 10414, + "SourceStructureID": 5650, + "TargetStructureID": 103043, + "Label": "5650-103043 via Ribbon Synapse from 103042 -> 103044", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103042, + "TargetID": 103044, + "Directional": true + } + ] + }, + { + "ID": 10415, + "SourceStructureID": 5650, + "TargetStructureID": 103045, + "Label": "5650-103045 via Ribbon Synapse from 103042 -> 103046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103042, + "TargetID": 103046, + "Directional": true + } + ] + }, + { + "ID": 10416, + "SourceStructureID": 5650, + "TargetStructureID": 103554, + "Label": "5650-103554 via Ribbon Synapse from 50567 -> 103555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50567, + "TargetID": 103555, + "Directional": true + } + ] + }, + { + "ID": 10417, + "SourceStructureID": 5650, + "TargetStructureID": 103556, + "Label": "5650-103556 via Ribbon Synapse from 50567 -> 103560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50567, + "TargetID": 103560, + "Directional": true + } + ] + }, + { + "ID": 10418, + "SourceStructureID": 5650, + "TargetStructureID": 103561, + "Label": "5650-103561 via Ribbon Synapse from 50570 -> 103562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50570, + "TargetID": 103562, + "Directional": true + } + ] + }, + { + "ID": 10419, + "SourceStructureID": 5650, + "TargetStructureID": 103563, + "Label": "5650-103563 via Ribbon Synapse from 50569 -> 103584", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50569, + "TargetID": 103584, + "Directional": true + } + ] + }, + { + "ID": 10420, + "SourceStructureID": 5650, + "TargetStructureID": 103592, + "Label": "5650-103592 via Ribbon Synapse from 50565 -> 103593", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50565, + "TargetID": 103593, + "Directional": true + } + ] + }, + { + "ID": 10421, + "SourceStructureID": 5650, + "TargetStructureID": 103601, + "Label": "5650-103601 via Ribbon Synapse from 50564 -> 103602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50564, + "TargetID": 103602, + "Directional": true + } + ] + }, + { + "ID": 10422, + "SourceStructureID": 5650, + "TargetStructureID": 103603, + "Label": "5650-103603 via Ribbon Synapse from 50564 -> 103604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50564, + "TargetID": 103604, + "Directional": true + } + ] + }, + { + "ID": 10423, + "SourceStructureID": 5650, + "TargetStructureID": 103622, + "Label": "5650-103622 via Ribbon Synapse from 50566 -> 103624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50566, + "TargetID": 103624, + "Directional": true + } + ] + }, + { + "ID": 10424, + "SourceStructureID": 5650, + "TargetStructureID": 103626, + "Label": "5650-103626 via Ribbon Synapse from 103625 -> 103627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103625, + "TargetID": 103627, + "Directional": true + } + ] + }, + { + "ID": 10425, + "SourceStructureID": 5650, + "TargetStructureID": 103648, + "Label": "5650-103648 via Ribbon Synapse from 103649 -> 103650", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103649, + "TargetID": 103650, + "Directional": true + } + ] + }, + { + "ID": 10426, + "SourceStructureID": 5650, + "TargetStructureID": 103661, + "Label": "5650-103661 via Ribbon Synapse from 103660 -> 103662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103660, + "TargetID": 103662, + "Directional": true + } + ] + }, + { + "ID": 10427, + "SourceStructureID": 5650, + "TargetStructureID": 103673, + "Label": "5650-103673 via Ribbon Synapse from 103668 -> 103674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103668, + "TargetID": 103674, + "Directional": true + } + ] + }, + { + "ID": 10428, + "SourceStructureID": 5650, + "TargetStructureID": 103690, + "Label": "5650-103690 via Ribbon Synapse from 103688 -> 103691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103688, + "TargetID": 103691, + "Directional": true + } + ] + }, + { + "ID": 10429, + "SourceStructureID": 5650, + "TargetStructureID": 103699, + "Label": "5650-103699 via BC Conventional Synapse from 103698 -> 103700", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103698, + "TargetID": 103700, + "Directional": true + } + ] + }, + { + "ID": 10430, + "SourceStructureID": 5650, + "TargetStructureID": 103823, + "Label": "5650-103823 via Postsynapse from 103825 -> 103824", + "Type": "Postsynapse", + "Directional": true, + "Links": [ + { + "SourceID": 103825, + "TargetID": 103824, + "Directional": true + } + ] + }, + { + "ID": 10431, + "SourceStructureID": 5650, + "TargetStructureID": 103841, + "Label": "5650-103841 via Ribbon Synapse from 103844 -> 103845", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103844, + "TargetID": 103845, + "Directional": true + } + ] + }, + { + "ID": 10432, + "SourceStructureID": 5650, + "TargetStructureID": 103889, + "Label": "5650-103889 via Ribbon Synapse from 50555 -> 103890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50555, + "TargetID": 103890, + "Directional": true + } + ] + }, + { + "ID": 10433, + "SourceStructureID": 5650, + "TargetStructureID": 103893, + "Label": "5650-103893 via Ribbon Synapse from 23488 -> 103894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23488, + "TargetID": 103894, + "Directional": true + } + ] + }, + { + "ID": 10434, + "SourceStructureID": 5650, + "TargetStructureID": 103905, + "Label": "5650-103905 via Ribbon Synapse from 23478 -> 103906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23478, + "TargetID": 103906, + "Directional": true + } + ] + }, + { + "ID": 10435, + "SourceStructureID": 5650, + "TargetStructureID": 103924, + "Label": "5650-103924 via Ribbon Synapse from 103927 -> 103925", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103927, + "TargetID": 103925, + "Directional": true + } + ] + }, + { + "ID": 10436, + "SourceStructureID": 5650, + "TargetStructureID": 103987, + "Label": "5650-103987 via Ribbon Synapse from 103986 -> 104003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103986, + "TargetID": 104003, + "Directional": true + } + ] + }, + { + "ID": 10437, + "SourceStructureID": 5650, + "TargetStructureID": 104005, + "Label": "5650-104005 via Ribbon Synapse from 103986 -> 104011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103986, + "TargetID": 104011, + "Directional": true + } + ] + }, + { + "ID": 10438, + "SourceStructureID": 5650, + "TargetStructureID": 104123, + "Label": "5650-104123 via Ribbon Synapse from 30145 -> 104124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30145, + "TargetID": 104124, + "Directional": true + } + ] + }, + { + "ID": 10439, + "SourceStructureID": 5650, + "TargetStructureID": 104130, + "Label": "5650-104130 via Ribbon Synapse from 104127 -> 118189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104127, + "TargetID": 118189, + "Directional": true + } + ] + }, + { + "ID": 10440, + "SourceStructureID": 5650, + "TargetStructureID": 104149, + "Label": "5650-104149 via Ribbon Synapse from 30149 -> 104152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30149, + "TargetID": 104152, + "Directional": true + } + ] + }, + { + "ID": 10441, + "SourceStructureID": 5650, + "TargetStructureID": 104155, + "Label": "5650-104155 via Ribbon Synapse from 104153 -> 104156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104153, + "TargetID": 104156, + "Directional": true + } + ] + }, + { + "ID": 10442, + "SourceStructureID": 5650, + "TargetStructureID": 104282, + "Label": "5650-104282 via Ribbon Synapse from 104281 -> 104283", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104281, + "TargetID": 104283, + "Directional": true + } + ] + }, + { + "ID": 10443, + "SourceStructureID": 5650, + "TargetStructureID": 104285, + "Label": "5650-104285 via Ribbon Synapse from 30137 -> 104286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30137, + "TargetID": 104286, + "Directional": true + } + ] + }, + { + "ID": 10444, + "SourceStructureID": 5650, + "TargetStructureID": 104304, + "Label": "5650-104304 via Ribbon Synapse from 104303 -> 104306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104303, + "TargetID": 104306, + "Directional": true + } + ] + }, + { + "ID": 10445, + "SourceStructureID": 5650, + "TargetStructureID": 104313, + "Label": "5650-104313 via Ribbon Synapse from 104314 -> 104315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104314, + "TargetID": 104315, + "Directional": true + } + ] + }, + { + "ID": 10446, + "SourceStructureID": 5650, + "TargetStructureID": 104316, + "Label": "5650-104316 via Ribbon Synapse from 104314 -> 104317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104314, + "TargetID": 104317, + "Directional": true + } + ] + }, + { + "ID": 10447, + "SourceStructureID": 5650, + "TargetStructureID": 104345, + "Label": "5650-104345 via Ribbon Synapse from 104344 -> 104347", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104344, + "TargetID": 104347, + "Directional": true + } + ] + }, + { + "ID": 10448, + "SourceStructureID": 5650, + "TargetStructureID": 104433, + "Label": "5650-104433 via Ribbon Synapse from 104437 -> 104439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104437, + "TargetID": 104439, + "Directional": true + } + ] + }, + { + "ID": 10449, + "SourceStructureID": 5650, + "TargetStructureID": 104435, + "Label": "5650-104435 via Ribbon Synapse from 104437 -> 104438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104437, + "TargetID": 104438, + "Directional": true + } + ] + }, + { + "ID": 10450, + "SourceStructureID": 5650, + "TargetStructureID": 104452, + "Label": "5650-104452 via Ribbon Synapse from 29913 -> 104453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29913, + "TargetID": 104453, + "Directional": true + } + ] + }, + { + "ID": 10451, + "SourceStructureID": 5650, + "TargetStructureID": 104454, + "Label": "5650-104454 via Ribbon Synapse from 104455 -> 104456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104455, + "TargetID": 104456, + "Directional": true + } + ] + }, + { + "ID": 10452, + "SourceStructureID": 5650, + "TargetStructureID": 104985, + "Label": "5650-104985 via Ribbon Synapse from 29915 -> 104986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29915, + "TargetID": 104986, + "Directional": true + } + ] + }, + { + "ID": 10453, + "SourceStructureID": 5650, + "TargetStructureID": 105002, + "Label": "5650-105002 via Ribbon Synapse from 25091 -> 105003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25091, + "TargetID": 105003, + "Directional": true + } + ] + }, + { + "ID": 10454, + "SourceStructureID": 5650, + "TargetStructureID": 105014, + "Label": "5650-105014 via Ribbon Synapse from 105013 -> 105015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105013, + "TargetID": 105015, + "Directional": true + } + ] + }, + { + "ID": 10455, + "SourceStructureID": 5650, + "TargetStructureID": 105022, + "Label": "5650-105022 via Ribbon Synapse from 105034 -> 105035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105034, + "TargetID": 105035, + "Directional": true + } + ] + }, + { + "ID": 10456, + "SourceStructureID": 5650, + "TargetStructureID": 105023, + "Label": "5650-105023 via Unknown from 105025 -> 105024", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 105025, + "TargetID": 105024, + "Directional": true + } + ] + }, + { + "ID": 10457, + "SourceStructureID": 5650, + "TargetStructureID": 105062, + "Label": "5650-105062 via Ribbon Synapse from 105061 -> 105063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105061, + "TargetID": 105063, + "Directional": true + } + ] + }, + { + "ID": 10458, + "SourceStructureID": 5650, + "TargetStructureID": 105090, + "Label": "5650-105090 via Ribbon Synapse from 105093 -> 105094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105093, + "TargetID": 105094, + "Directional": true + } + ] + }, + { + "ID": 10459, + "SourceStructureID": 5650, + "TargetStructureID": 105100, + "Label": "5650-105100 via Ribbon Synapse from 105099 -> 105101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105099, + "TargetID": 105101, + "Directional": true + } + ] + }, + { + "ID": 10460, + "SourceStructureID": 5650, + "TargetStructureID": 105102, + "Label": "5650-105102 via Ribbon Synapse from 105111 -> 105115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105111, + "TargetID": 105115, + "Directional": true + } + ] + }, + { + "ID": 10461, + "SourceStructureID": 5650, + "TargetStructureID": 105112, + "Label": "5650-105112 via Ribbon Synapse from 105111 -> 105113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105111, + "TargetID": 105113, + "Directional": true + } + ] + }, + { + "ID": 10462, + "SourceStructureID": 5650, + "TargetStructureID": 105126, + "Label": "5650-105126 via Ribbon Synapse from 105125 -> 105127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105125, + "TargetID": 105127, + "Directional": true + } + ] + }, + { + "ID": 10463, + "SourceStructureID": 5650, + "TargetStructureID": 105131, + "Label": "5650-105131 via Ribbon Synapse from 52606 -> 105132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52606, + "TargetID": 105132, + "Directional": true + } + ] + }, + { + "ID": 10464, + "SourceStructureID": 5650, + "TargetStructureID": 105146, + "Label": "5650-105146 via Ribbon Synapse from 105145 -> 105147", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105145, + "TargetID": 105147, + "Directional": true + } + ] + }, + { + "ID": 10465, + "SourceStructureID": 5650, + "TargetStructureID": 105148, + "Label": "5650-105148 via Ribbon Synapse from 105145 -> 105149", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105145, + "TargetID": 105149, + "Directional": true + } + ] + }, + { + "ID": 10466, + "SourceStructureID": 5650, + "TargetStructureID": 105151, + "Label": "5650-105151 via Ribbon Synapse from 105150 -> 105152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105150, + "TargetID": 105152, + "Directional": true + } + ] + }, + { + "ID": 10467, + "SourceStructureID": 5650, + "TargetStructureID": 105164, + "Label": "5650-105164 via Ribbon Synapse from 105166 -> 105165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105166, + "TargetID": 105165, + "Directional": true + } + ] + }, + { + "ID": 10468, + "SourceStructureID": 5650, + "TargetStructureID": 105167, + "Label": "5650-105167 via Ribbon Synapse from 30216 -> 105170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30216, + "TargetID": 105170, + "Directional": true + } + ] + }, + { + "ID": 10469, + "SourceStructureID": 5650, + "TargetStructureID": 105184, + "Label": "5650-105184 via Ribbon Synapse from 105183 -> 105185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105183, + "TargetID": 105185, + "Directional": true + } + ] + }, + { + "ID": 10470, + "SourceStructureID": 5650, + "TargetStructureID": 105186, + "Label": "5650-105186 via Ribbon Synapse from 105183 -> 105187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105183, + "TargetID": 105187, + "Directional": true + } + ] + }, + { + "ID": 10471, + "SourceStructureID": 5650, + "TargetStructureID": 105199, + "Label": "5650-105199 via Postsynapse from 29928 -> 105201", + "Type": "Postsynapse", + "Directional": true, + "Links": [ + { + "SourceID": 29928, + "TargetID": 105201, + "Directional": true + } + ] + }, + { + "ID": 10472, + "SourceStructureID": 5650, + "TargetStructureID": 106336, + "Label": "5650-106336 via Ribbon Synapse from 57038 -> 106341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57038, + "TargetID": 106341, + "Directional": true + } + ] + }, + { + "ID": 10473, + "SourceStructureID": 5650, + "TargetStructureID": 106361, + "Label": "5650-106361 via BC Conventional Synapse from 106362 -> 106363", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106362, + "TargetID": 106363, + "Directional": true + } + ] + }, + { + "ID": 10474, + "SourceStructureID": 5650, + "TargetStructureID": 106378, + "Label": "5650-106378 via Ribbon Synapse from 29931 -> 106379", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29931, + "TargetID": 106379, + "Directional": true + } + ] + }, + { + "ID": 10475, + "SourceStructureID": 5650, + "TargetStructureID": 106380, + "Label": "5650-106380 via Ribbon Synapse from 29932 -> 106381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29932, + "TargetID": 106381, + "Directional": true + } + ] + }, + { + "ID": 10476, + "SourceStructureID": 5671, + "TargetStructureID": 7859, + "Label": "5671-7859 via Ribbon Synapse from 24930 -> 84705", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24930, + "TargetID": 84705, + "Directional": true + } + ] + }, + { + "ID": 10477, + "SourceStructureID": 5671, + "TargetStructureID": 24898, + "Label": "5671-24898 via Ribbon Synapse from 24923 -> 24900", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24923, + "TargetID": 24900, + "Directional": true + } + ] + }, + { + "ID": 10478, + "SourceStructureID": 5711, + "TargetStructureID": 71118, + "Label": "5711-71118 via Ribbon Synapse from 38129 -> 71149", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38129, + "TargetID": 71149, + "Directional": true + } + ] + }, + { + "ID": 10479, + "SourceStructureID": 5711, + "TargetStructureID": 71152, + "Label": "5711-71152 via Ribbon Synapse from 38129 -> 71154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38129, + "TargetID": 71154, + "Directional": true + } + ] + }, + { + "ID": 10480, + "SourceStructureID": 5711, + "TargetStructureID": 93456, + "Label": "5711-93456 via Ribbon Synapse from 38135 -> 93468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38135, + "TargetID": 93468, + "Directional": true + } + ] + }, + { + "ID": 10481, + "SourceStructureID": 5729, + "TargetStructureID": 606, + "Label": "5729-606 via Ribbon Synapse from 37828 -> 47277, 47228 -> 47227, 47229 -> 47221, 47236 -> 47237, 47262 -> 47263, 47264 -> 47265, 47278 -> 47279, 47280 -> 47281, 47295 -> 47293, 110919 -> 110923", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37828, + "TargetID": 47277, + "Directional": true + }, + { + "SourceID": 47228, + "TargetID": 47227, + "Directional": true + }, + { + "SourceID": 47229, + "TargetID": 47221, + "Directional": true + }, + { + "SourceID": 47236, + "TargetID": 47237, + "Directional": true + }, + { + "SourceID": 47262, + "TargetID": 47263, + "Directional": true + }, + { + "SourceID": 47264, + "TargetID": 47265, + "Directional": true + }, + { + "SourceID": 47278, + "TargetID": 47279, + "Directional": true + }, + { + "SourceID": 47280, + "TargetID": 47281, + "Directional": true + }, + { + "SourceID": 47295, + "TargetID": 47293, + "Directional": true + }, + { + "SourceID": 110919, + "TargetID": 110923, + "Directional": true + } + ] + }, + { + "ID": 10482, + "SourceStructureID": 5729, + "TargetStructureID": 7594, + "Label": "5729-7594 via Ribbon Synapse from 47242 -> 110957", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47242, + "TargetID": 110957, + "Directional": true + } + ] + }, + { + "ID": 10483, + "SourceStructureID": 5729, + "TargetStructureID": 11408, + "Label": "5729-11408 via BC Conventional Synapse from 112614 -> 112646", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112614, + "TargetID": 112646, + "Directional": true + } + ] + }, + { + "ID": 10484, + "SourceStructureID": 5729, + "TargetStructureID": 35240, + "Label": "5729-35240 via Ribbon Synapse from 35281 -> 35280", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35281, + "TargetID": 35280, + "Directional": true + } + ] + }, + { + "ID": 10485, + "SourceStructureID": 5729, + "TargetStructureID": 35428, + "Label": "5729-35428 via Ribbon Synapse from 89624 -> 111956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89624, + "TargetID": 111956, + "Directional": true + } + ] + }, + { + "ID": 10486, + "SourceStructureID": 5729, + "TargetStructureID": 35440, + "Label": "5729-35440 via Ribbon Synapse from 105768 -> 111631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105768, + "TargetID": 111631, + "Directional": true + } + ] + }, + { + "ID": 10487, + "SourceStructureID": 5729, + "TargetStructureID": 55232, + "Label": "5729-55232 via Ribbon Synapse from 47229 -> 55239, 47229 -> 111152, 47236 -> 55250, 55388 -> 55389, 55392 -> 55393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47229, + "TargetID": 55239, + "Directional": true + }, + { + "SourceID": 47229, + "TargetID": 111152, + "Directional": true + }, + { + "SourceID": 47236, + "TargetID": 55250, + "Directional": true + }, + { + "SourceID": 55388, + "TargetID": 55389, + "Directional": true + }, + { + "SourceID": 55392, + "TargetID": 55393, + "Directional": true + } + ] + }, + { + "ID": 10488, + "SourceStructureID": 5729, + "TargetStructureID": 55403, + "Label": "5729-55403 via Ribbon Synapse from 112616 -> 112619, 112622 -> 55472, 112623 -> 55468, 112624 -> 55468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112616, + "TargetID": 112619, + "Directional": true + }, + { + "SourceID": 112622, + "TargetID": 55472, + "Directional": true + }, + { + "SourceID": 112623, + "TargetID": 55468, + "Directional": true + }, + { + "SourceID": 112624, + "TargetID": 55468, + "Directional": true + } + ] + }, + { + "ID": 10489, + "SourceStructureID": 5729, + "TargetStructureID": 64447, + "Label": "5729-64447 via Ribbon Synapse from 64450 -> 64449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64450, + "TargetID": 64449, + "Directional": true + } + ] + }, + { + "ID": 10490, + "SourceStructureID": 5729, + "TargetStructureID": 64452, + "Label": "5729-64452 via Ribbon Synapse from 64536 -> 64455, 89609 -> 89605, 89610 -> 111990, 89627 -> 111947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64536, + "TargetID": 64455, + "Directional": true + }, + { + "SourceID": 89609, + "TargetID": 89605, + "Directional": true + }, + { + "SourceID": 89610, + "TargetID": 111990, + "Directional": true + }, + { + "SourceID": 89627, + "TargetID": 111947, + "Directional": true + } + ] + }, + { + "ID": 10491, + "SourceStructureID": 5729, + "TargetStructureID": 64520, + "Label": "5729-64520 via Ribbon Synapse from 64511 -> 64522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64511, + "TargetID": 64522, + "Directional": true + } + ] + }, + { + "ID": 10492, + "SourceStructureID": 5729, + "TargetStructureID": 68539, + "Label": "5729-68539 via Ribbon Synapse from 47262 -> 110933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47262, + "TargetID": 110933, + "Directional": true + } + ] + }, + { + "ID": 10493, + "SourceStructureID": 5729, + "TargetStructureID": 87277, + "Label": "5729-87277 via Ribbon Synapse from 47295 -> 111451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47295, + "TargetID": 111451, + "Directional": true + } + ] + }, + { + "ID": 10494, + "SourceStructureID": 5729, + "TargetStructureID": 88981, + "Label": "5729-88981 via Ribbon Synapse from 110919 -> 110920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110919, + "TargetID": 110920, + "Directional": true + } + ] + }, + { + "ID": 10495, + "SourceStructureID": 5729, + "TargetStructureID": 89586, + "Label": "5729-89586 via Ribbon Synapse from 64507 -> 89592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64507, + "TargetID": 89592, + "Directional": true + } + ] + }, + { + "ID": 10496, + "SourceStructureID": 5729, + "TargetStructureID": 108749, + "Label": "5729-108749 via Ribbon Synapse from 47296 -> 108750", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47296, + "TargetID": 108750, + "Directional": true + } + ] + }, + { + "ID": 10497, + "SourceStructureID": 5729, + "TargetStructureID": 110535, + "Label": "5729-110535 via Cistern Pre from 37810 -> 110536", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 37810, + "TargetID": 110536, + "Directional": true + } + ] + }, + { + "ID": 10498, + "SourceStructureID": 5729, + "TargetStructureID": 110540, + "Label": "5729-110540 via Ribbon Synapse from 110542 -> 110541", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110542, + "TargetID": 110541, + "Directional": true + } + ] + }, + { + "ID": 10499, + "SourceStructureID": 5729, + "TargetStructureID": 110842, + "Label": "5729-110842 via Ribbon Synapse from 37835 -> 110849, 110848 -> 110849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37835, + "TargetID": 110849, + "Directional": true + }, + { + "SourceID": 110848, + "TargetID": 110849, + "Directional": true + } + ] + }, + { + "ID": 10500, + "SourceStructureID": 5729, + "TargetStructureID": 110854, + "Label": "5729-110854 via Ribbon Synapse from 37836 -> 110856, 37837 -> 110856", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37836, + "TargetID": 110856, + "Directional": true + }, + { + "SourceID": 37837, + "TargetID": 110856, + "Directional": true + } + ] + }, + { + "ID": 10501, + "SourceStructureID": 5729, + "TargetStructureID": 110876, + "Label": "5729-110876 via Ribbon Synapse from 37843 -> 110877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37843, + "TargetID": 110877, + "Directional": true + } + ] + }, + { + "ID": 10502, + "SourceStructureID": 5729, + "TargetStructureID": 110879, + "Label": "5729-110879 via Ribbon Synapse from 110878 -> 110891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110878, + "TargetID": 110891, + "Directional": true + } + ] + }, + { + "ID": 10503, + "SourceStructureID": 5729, + "TargetStructureID": 110880, + "Label": "5729-110880 via Ribbon Synapse from 37842 -> 110887, 110878 -> 110890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37842, + "TargetID": 110887, + "Directional": true + }, + { + "SourceID": 110878, + "TargetID": 110890, + "Directional": true + } + ] + }, + { + "ID": 10504, + "SourceStructureID": 5729, + "TargetStructureID": 110885, + "Label": "5729-110885 via Ribbon Synapse from 37842 -> 110886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37842, + "TargetID": 110886, + "Directional": true + } + ] + }, + { + "ID": 10505, + "SourceStructureID": 5729, + "TargetStructureID": 110921, + "Label": "5729-110921 via Ribbon Synapse from 110919 -> 110922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110919, + "TargetID": 110922, + "Directional": true + } + ] + }, + { + "ID": 10506, + "SourceStructureID": 5729, + "TargetStructureID": 110930, + "Label": "5729-110930 via Ribbon Synapse from 47264 -> 110931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47264, + "TargetID": 110931, + "Directional": true + } + ] + }, + { + "ID": 10507, + "SourceStructureID": 5729, + "TargetStructureID": 110946, + "Label": "5729-110946 via Ribbon Synapse from 37854 -> 110950, 37854 -> 110951", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37854, + "TargetID": 110950, + "Directional": true + }, + { + "SourceID": 37854, + "TargetID": 110951, + "Directional": true + } + ] + }, + { + "ID": 10508, + "SourceStructureID": 5729, + "TargetStructureID": 110948, + "Label": "5729-110948 via Ribbon Synapse from 37854 -> 110949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37854, + "TargetID": 110949, + "Directional": true + } + ] + }, + { + "ID": 10509, + "SourceStructureID": 5729, + "TargetStructureID": 111040, + "Label": "5729-111040 via Ribbon Synapse from 47240 -> 111072", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47240, + "TargetID": 111072, + "Directional": true + } + ] + }, + { + "ID": 10510, + "SourceStructureID": 5729, + "TargetStructureID": 111043, + "Label": "5729-111043 via Ribbon Synapse from 111048 -> 111046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111048, + "TargetID": 111046, + "Directional": true + } + ] + }, + { + "ID": 10511, + "SourceStructureID": 5729, + "TargetStructureID": 111049, + "Label": "5729-111049 via Ribbon Synapse from 111048 -> 111050", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111048, + "TargetID": 111050, + "Directional": true + } + ] + }, + { + "ID": 10512, + "SourceStructureID": 5729, + "TargetStructureID": 111051, + "Label": "5729-111051 via Ribbon Synapse from 111048 -> 111052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111048, + "TargetID": 111052, + "Directional": true + } + ] + }, + { + "ID": 10513, + "SourceStructureID": 5729, + "TargetStructureID": 111057, + "Label": "5729-111057 via Ribbon Synapse from 111058 -> 111061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111058, + "TargetID": 111061, + "Directional": true + } + ] + }, + { + "ID": 10514, + "SourceStructureID": 5729, + "TargetStructureID": 111064, + "Label": "5729-111064 via Ribbon Synapse from 111058 -> 111065", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111058, + "TargetID": 111065, + "Directional": true + } + ] + }, + { + "ID": 10515, + "SourceStructureID": 5729, + "TargetStructureID": 111073, + "Label": "5729-111073 via Ribbon Synapse from 47240 -> 111074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47240, + "TargetID": 111074, + "Directional": true + } + ] + }, + { + "ID": 10516, + "SourceStructureID": 5729, + "TargetStructureID": 111164, + "Label": "5729-111164 via Ribbon Synapse from 111163 -> 111170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111163, + "TargetID": 111170, + "Directional": true + } + ] + }, + { + "ID": 10517, + "SourceStructureID": 5729, + "TargetStructureID": 111171, + "Label": "5729-111171 via Ribbon Synapse from 111163 -> 111172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111163, + "TargetID": 111172, + "Directional": true + } + ] + }, + { + "ID": 10518, + "SourceStructureID": 5729, + "TargetStructureID": 111174, + "Label": "5729-111174 via Ribbon Synapse from 55388 -> 111177", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55388, + "TargetID": 111177, + "Directional": true + } + ] + }, + { + "ID": 10519, + "SourceStructureID": 5729, + "TargetStructureID": 111178, + "Label": "5729-111178 via Ribbon Synapse from 55388 -> 111179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55388, + "TargetID": 111179, + "Directional": true + } + ] + }, + { + "ID": 10520, + "SourceStructureID": 5729, + "TargetStructureID": 111201, + "Label": "5729-111201 via Ribbon Synapse from 111200 -> 111202", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111200, + "TargetID": 111202, + "Directional": true + } + ] + }, + { + "ID": 10521, + "SourceStructureID": 5729, + "TargetStructureID": 111296, + "Label": "5729-111296 via Ribbon Synapse from 37813 -> 111297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37813, + "TargetID": 111297, + "Directional": true + } + ] + }, + { + "ID": 10522, + "SourceStructureID": 5729, + "TargetStructureID": 111309, + "Label": "5729-111309 via Ribbon Synapse from 37817 -> 111310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37817, + "TargetID": 111310, + "Directional": true + } + ] + }, + { + "ID": 10523, + "SourceStructureID": 5729, + "TargetStructureID": 111312, + "Label": "5729-111312 via Ribbon Synapse from 37824 -> 111313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37824, + "TargetID": 111313, + "Directional": true + } + ] + }, + { + "ID": 10524, + "SourceStructureID": 5729, + "TargetStructureID": 111314, + "Label": "5729-111314 via Ribbon Synapse from 37820 -> 111333, 37822 -> 111334, 37824 -> 111317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37820, + "TargetID": 111333, + "Directional": true + }, + { + "SourceID": 37822, + "TargetID": 111334, + "Directional": true + }, + { + "SourceID": 37824, + "TargetID": 111317, + "Directional": true + } + ] + }, + { + "ID": 10525, + "SourceStructureID": 5729, + "TargetStructureID": 111318, + "Label": "5729-111318 via Ribbon Synapse from 37824 -> 111322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37824, + "TargetID": 111322, + "Directional": true + } + ] + }, + { + "ID": 10526, + "SourceStructureID": 5729, + "TargetStructureID": 111328, + "Label": "5729-111328 via Ribbon Synapse from 37820 -> 111329", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37820, + "TargetID": 111329, + "Directional": true + } + ] + }, + { + "ID": 10527, + "SourceStructureID": 5729, + "TargetStructureID": 111330, + "Label": "5729-111330 via Ribbon Synapse from 37820 -> 111337", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37820, + "TargetID": 111337, + "Directional": true + } + ] + }, + { + "ID": 10528, + "SourceStructureID": 5729, + "TargetStructureID": 111335, + "Label": "5729-111335 via Ribbon Synapse from 37822 -> 111336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37822, + "TargetID": 111336, + "Directional": true + } + ] + }, + { + "ID": 10529, + "SourceStructureID": 5729, + "TargetStructureID": 111339, + "Label": "5729-111339 via Ribbon Synapse from 37823 -> 111340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37823, + "TargetID": 111340, + "Directional": true + } + ] + }, + { + "ID": 10530, + "SourceStructureID": 5729, + "TargetStructureID": 111410, + "Label": "5729-111410 via Ribbon Synapse from 37830 -> 111420, 111412 -> 111413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37830, + "TargetID": 111420, + "Directional": true + }, + { + "SourceID": 111412, + "TargetID": 111413, + "Directional": true + } + ] + }, + { + "ID": 10531, + "SourceStructureID": 5729, + "TargetStructureID": 111414, + "Label": "5729-111414 via Ribbon Synapse from 37831 -> 111416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37831, + "TargetID": 111416, + "Directional": true + } + ] + }, + { + "ID": 10532, + "SourceStructureID": 5729, + "TargetStructureID": 111417, + "Label": "5729-111417 via Ribbon Synapse from 37830 -> 111419, 37831 -> 111418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37830, + "TargetID": 111419, + "Directional": true + }, + { + "SourceID": 37831, + "TargetID": 111418, + "Directional": true + } + ] + }, + { + "ID": 10533, + "SourceStructureID": 5729, + "TargetStructureID": 111428, + "Label": "5729-111428 via Ribbon Synapse from 47278 -> 111429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47278, + "TargetID": 111429, + "Directional": true + } + ] + }, + { + "ID": 10534, + "SourceStructureID": 5729, + "TargetStructureID": 111436, + "Label": "5729-111436 via Ribbon Synapse from 47280 -> 111437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47280, + "TargetID": 111437, + "Directional": true + } + ] + }, + { + "ID": 10535, + "SourceStructureID": 5729, + "TargetStructureID": 111470, + "Label": "5729-111470 via Ribbon Synapse from 37834 -> 111471", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37834, + "TargetID": 111471, + "Directional": true + } + ] + }, + { + "ID": 10536, + "SourceStructureID": 5729, + "TargetStructureID": 111472, + "Label": "5729-111472 via Ribbon Synapse from 105777 -> 111473", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105777, + "TargetID": 111473, + "Directional": true + } + ] + }, + { + "ID": 10537, + "SourceStructureID": 5729, + "TargetStructureID": 111474, + "Label": "5729-111474 via Ribbon Synapse from 105777 -> 111476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105777, + "TargetID": 111476, + "Directional": true + } + ] + }, + { + "ID": 10538, + "SourceStructureID": 5729, + "TargetStructureID": 111616, + "Label": "5729-111616 via Ribbon Synapse from 102926 -> 111618, 105768 -> 111626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102926, + "TargetID": 111618, + "Directional": true + }, + { + "SourceID": 105768, + "TargetID": 111626, + "Directional": true + } + ] + }, + { + "ID": 10539, + "SourceStructureID": 5729, + "TargetStructureID": 111620, + "Label": "5729-111620 via Ribbon Synapse from 102926 -> 111621", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102926, + "TargetID": 111621, + "Directional": true + } + ] + }, + { + "ID": 10540, + "SourceStructureID": 5729, + "TargetStructureID": 111629, + "Label": "5729-111629 via Ribbon Synapse from 105768 -> 111632", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105768, + "TargetID": 111632, + "Directional": true + } + ] + }, + { + "ID": 10541, + "SourceStructureID": 5729, + "TargetStructureID": 111638, + "Label": "5729-111638 via Ribbon Synapse from 48384 -> 111643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48384, + "TargetID": 111643, + "Directional": true + } + ] + }, + { + "ID": 10542, + "SourceStructureID": 5729, + "TargetStructureID": 111641, + "Label": "5729-111641 via Ribbon Synapse from 48384 -> 111642", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48384, + "TargetID": 111642, + "Directional": true + } + ] + }, + { + "ID": 10543, + "SourceStructureID": 5729, + "TargetStructureID": 111738, + "Label": "5729-111738 via Ribbon Synapse from 48379 -> 111739", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48379, + "TargetID": 111739, + "Directional": true + } + ] + }, + { + "ID": 10544, + "SourceStructureID": 5729, + "TargetStructureID": 111746, + "Label": "5729-111746 via Ribbon Synapse from 48379 -> 111747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48379, + "TargetID": 111747, + "Directional": true + } + ] + }, + { + "ID": 10545, + "SourceStructureID": 5729, + "TargetStructureID": 111753, + "Label": "5729-111753 via Ribbon Synapse from 48381 -> 111754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48381, + "TargetID": 111754, + "Directional": true + } + ] + }, + { + "ID": 10546, + "SourceStructureID": 5729, + "TargetStructureID": 111755, + "Label": "5729-111755 via Ribbon Synapse from 48381 -> 111756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48381, + "TargetID": 111756, + "Directional": true + } + ] + }, + { + "ID": 10547, + "SourceStructureID": 5729, + "TargetStructureID": 111764, + "Label": "5729-111764 via Ribbon Synapse from 111760 -> 111765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111760, + "TargetID": 111765, + "Directional": true + } + ] + }, + { + "ID": 10548, + "SourceStructureID": 5729, + "TargetStructureID": 111772, + "Label": "5729-111772 via Ribbon Synapse from 48383 -> 111773", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48383, + "TargetID": 111773, + "Directional": true + } + ] + }, + { + "ID": 10549, + "SourceStructureID": 5729, + "TargetStructureID": 111776, + "Label": "5729-111776 via Ribbon Synapse from 111762 -> 111777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111762, + "TargetID": 111777, + "Directional": true + } + ] + }, + { + "ID": 10550, + "SourceStructureID": 5729, + "TargetStructureID": 111781, + "Label": "5729-111781 via Ribbon Synapse from 35281 -> 111782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35281, + "TargetID": 111782, + "Directional": true + } + ] + }, + { + "ID": 10551, + "SourceStructureID": 5729, + "TargetStructureID": 111783, + "Label": "5729-111783 via Ribbon Synapse from 111761 -> 111784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111761, + "TargetID": 111784, + "Directional": true + } + ] + }, + { + "ID": 10552, + "SourceStructureID": 5729, + "TargetStructureID": 111949, + "Label": "5729-111949 via Ribbon Synapse from 89627 -> 111950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89627, + "TargetID": 111950, + "Directional": true + } + ] + }, + { + "ID": 10553, + "SourceStructureID": 5729, + "TargetStructureID": 111957, + "Label": "5729-111957 via Ribbon Synapse from 89624 -> 111958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89624, + "TargetID": 111958, + "Directional": true + } + ] + }, + { + "ID": 10554, + "SourceStructureID": 5729, + "TargetStructureID": 111974, + "Label": "5729-111974 via Ribbon Synapse from 111973 -> 111975", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111973, + "TargetID": 111975, + "Directional": true + } + ] + }, + { + "ID": 10555, + "SourceStructureID": 5729, + "TargetStructureID": 111976, + "Label": "5729-111976 via Ribbon Synapse from 111973 -> 111977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111973, + "TargetID": 111977, + "Directional": true + } + ] + }, + { + "ID": 10556, + "SourceStructureID": 5729, + "TargetStructureID": 111980, + "Label": "5729-111980 via Ribbon Synapse from 89608 -> 111981", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89608, + "TargetID": 111981, + "Directional": true + } + ] + }, + { + "ID": 10557, + "SourceStructureID": 5729, + "TargetStructureID": 111982, + "Label": "5729-111982 via Ribbon Synapse from 89608 -> 111984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89608, + "TargetID": 111984, + "Directional": true + } + ] + }, + { + "ID": 10558, + "SourceStructureID": 5729, + "TargetStructureID": 111986, + "Label": "5729-111986 via Ribbon Synapse from 89609 -> 111987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89609, + "TargetID": 111987, + "Directional": true + } + ] + }, + { + "ID": 10559, + "SourceStructureID": 5729, + "TargetStructureID": 111991, + "Label": "5729-111991 via Ribbon Synapse from 89610 -> 111993", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89610, + "TargetID": 111993, + "Directional": true + } + ] + }, + { + "ID": 10560, + "SourceStructureID": 5729, + "TargetStructureID": 112005, + "Label": "5729-112005 via Ribbon Synapse from 112008 -> 112009", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112008, + "TargetID": 112009, + "Directional": true + } + ] + }, + { + "ID": 10561, + "SourceStructureID": 5729, + "TargetStructureID": 112010, + "Label": "5729-112010 via Ribbon Synapse from 112008 -> 112011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112008, + "TargetID": 112011, + "Directional": true + } + ] + }, + { + "ID": 10562, + "SourceStructureID": 5729, + "TargetStructureID": 112304, + "Label": "5729-112304 via Ribbon Synapse from 112305 -> 112309", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112305, + "TargetID": 112309, + "Directional": true + } + ] + }, + { + "ID": 10563, + "SourceStructureID": 5729, + "TargetStructureID": 112447, + "Label": "5729-112447 via Ribbon Synapse from 112446 -> 112448, 112450 -> 112452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112446, + "TargetID": 112448, + "Directional": true + }, + { + "SourceID": 112450, + "TargetID": 112452, + "Directional": true + } + ] + }, + { + "ID": 10564, + "SourceStructureID": 5729, + "TargetStructureID": 112449, + "Label": "5729-112449 via Ribbon Synapse from 112450 -> 112453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112450, + "TargetID": 112453, + "Directional": true + } + ] + }, + { + "ID": 10565, + "SourceStructureID": 5729, + "TargetStructureID": 112593, + "Label": "5729-112593 via Ribbon Synapse from 112450 -> 112599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112450, + "TargetID": 112599, + "Directional": true + } + ] + }, + { + "ID": 10566, + "SourceStructureID": 5729, + "TargetStructureID": 112625, + "Label": "5729-112625 via Ribbon Synapse from 112623 -> 112626, 112624 -> 112626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112623, + "TargetID": 112626, + "Directional": true + }, + { + "SourceID": 112624, + "TargetID": 112626, + "Directional": true + } + ] + }, + { + "ID": 10567, + "SourceStructureID": 5729, + "TargetStructureID": 112628, + "Label": "5729-112628 via Ribbon Synapse from 112627 -> 112629", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112627, + "TargetID": 112629, + "Directional": true + } + ] + }, + { + "ID": 10568, + "SourceStructureID": 5729, + "TargetStructureID": 112634, + "Label": "5729-112634 via Ribbon Synapse from 112627 -> 112635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112627, + "TargetID": 112635, + "Directional": true + } + ] + }, + { + "ID": 10569, + "SourceStructureID": 5729, + "TargetStructureID": 112638, + "Label": "5729-112638 via Ribbon Synapse from 112622 -> 112639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112622, + "TargetID": 112639, + "Directional": true + } + ] + }, + { + "ID": 10570, + "SourceStructureID": 5729, + "TargetStructureID": 112641, + "Label": "5729-112641 via Ribbon Synapse from 112616 -> 112642, 112617 -> 112642", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112616, + "TargetID": 112642, + "Directional": true + }, + { + "SourceID": 112617, + "TargetID": 112642, + "Directional": true + } + ] + }, + { + "ID": 10571, + "SourceStructureID": 5729, + "TargetStructureID": 112658, + "Label": "5729-112658 via Ribbon Synapse from 112654 -> 112659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112654, + "TargetID": 112659, + "Directional": true + } + ] + }, + { + "ID": 10572, + "SourceStructureID": 5729, + "TargetStructureID": 112669, + "Label": "5729-112669 via Ribbon Synapse from 64513 -> 112670", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64513, + "TargetID": 112670, + "Directional": true + } + ] + }, + { + "ID": 10573, + "SourceStructureID": 5729, + "TargetStructureID": 112678, + "Label": "5729-112678 via Ribbon Synapse from 64511 -> 112679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64511, + "TargetID": 112679, + "Directional": true + } + ] + }, + { + "ID": 10574, + "SourceStructureID": 5729, + "TargetStructureID": 112681, + "Label": "5729-112681 via Ribbon Synapse from 64506 -> 112682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64506, + "TargetID": 112682, + "Directional": true + } + ] + }, + { + "ID": 10575, + "SourceStructureID": 5729, + "TargetStructureID": 112684, + "Label": "5729-112684 via Ribbon Synapse from 64507 -> 112686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64507, + "TargetID": 112686, + "Directional": true + } + ] + }, + { + "ID": 10576, + "SourceStructureID": 5729, + "TargetStructureID": 112689, + "Label": "5729-112689 via Ribbon Synapse from 64502 -> 112690", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64502, + "TargetID": 112690, + "Directional": true + } + ] + }, + { + "ID": 10577, + "SourceStructureID": 5729, + "TargetStructureID": 112692, + "Label": "5729-112692 via Ribbon Synapse from 64501 -> 112693", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64501, + "TargetID": 112693, + "Directional": true + } + ] + }, + { + "ID": 10578, + "SourceStructureID": 5729, + "TargetStructureID": 112700, + "Label": "5729-112700 via Ribbon Synapse from 64484 -> 112702", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64484, + "TargetID": 112702, + "Directional": true + } + ] + }, + { + "ID": 10579, + "SourceStructureID": 5729, + "TargetStructureID": 112703, + "Label": "5729-112703 via Ribbon Synapse from 64486 -> 112704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64486, + "TargetID": 112704, + "Directional": true + } + ] + }, + { + "ID": 10580, + "SourceStructureID": 5729, + "TargetStructureID": 112709, + "Label": "5729-112709 via Ribbon Synapse from 64482 -> 112711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64482, + "TargetID": 112711, + "Directional": true + } + ] + }, + { + "ID": 10581, + "SourceStructureID": 5729, + "TargetStructureID": 112715, + "Label": "5729-112715 via Ribbon Synapse from 64501 -> 112716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64501, + "TargetID": 112716, + "Directional": true + } + ] + }, + { + "ID": 10582, + "SourceStructureID": 5729, + "TargetStructureID": 112721, + "Label": "5729-112721 via Adherens from 64476 -> 112724", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 64476, + "TargetID": 112724, + "Directional": true + } + ] + }, + { + "ID": 10583, + "SourceStructureID": 5729, + "TargetStructureID": 112729, + "Label": "5729-112729 via Ribbon Synapse from 64469 -> 112730", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64469, + "TargetID": 112730, + "Directional": true + } + ] + }, + { + "ID": 10584, + "SourceStructureID": 5729, + "TargetStructureID": 112732, + "Label": "5729-112732 via Ribbon Synapse from 64469 -> 112733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64469, + "TargetID": 112733, + "Directional": true + } + ] + }, + { + "ID": 10585, + "SourceStructureID": 5729, + "TargetStructureID": 112887, + "Label": "5729-112887 via Ribbon Synapse from 64461 -> 112892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64461, + "TargetID": 112892, + "Directional": true + } + ] + }, + { + "ID": 10586, + "SourceStructureID": 5729, + "TargetStructureID": 112898, + "Label": "5729-112898 via Ribbon Synapse from 64467 -> 112901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64467, + "TargetID": 112901, + "Directional": true + } + ] + }, + { + "ID": 10587, + "SourceStructureID": 5729, + "TargetStructureID": 112912, + "Label": "5729-112912 via Ribbon Synapse from 64585 -> 112915", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64585, + "TargetID": 112915, + "Directional": true + } + ] + }, + { + "ID": 10588, + "SourceStructureID": 5729, + "TargetStructureID": 112931, + "Label": "5729-112931 via Ribbon Synapse from 64532 -> 112933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64532, + "TargetID": 112933, + "Directional": true + } + ] + }, + { + "ID": 10589, + "SourceStructureID": 5729, + "TargetStructureID": 112934, + "Label": "5729-112934 via Ribbon Synapse from 64532 -> 112935, 64536 -> 112936, 64583 -> 112959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64532, + "TargetID": 112935, + "Directional": true + }, + { + "SourceID": 64536, + "TargetID": 112936, + "Directional": true + }, + { + "SourceID": 64583, + "TargetID": 112959, + "Directional": true + } + ] + }, + { + "ID": 10590, + "SourceStructureID": 5729, + "TargetStructureID": 112943, + "Label": "5729-112943 via Ribbon Synapse from 64583 -> 112945, 64584 -> 112945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64583, + "TargetID": 112945, + "Directional": true + }, + { + "SourceID": 64584, + "TargetID": 112945, + "Directional": true + } + ] + }, + { + "ID": 10591, + "SourceStructureID": 5729, + "TargetStructureID": 112950, + "Label": "5729-112950 via Ribbon Synapse from 64531 -> 112951", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64531, + "TargetID": 112951, + "Directional": true + } + ] + }, + { + "ID": 10592, + "SourceStructureID": 5729, + "TargetStructureID": 112952, + "Label": "5729-112952 via Ribbon Synapse from 64534 -> 112953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64534, + "TargetID": 112953, + "Directional": true + } + ] + }, + { + "ID": 10593, + "SourceStructureID": 5729, + "TargetStructureID": 112955, + "Label": "5729-112955 via Ribbon Synapse from 64584 -> 112956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64584, + "TargetID": 112956, + "Directional": true + } + ] + }, + { + "ID": 10594, + "SourceStructureID": 5729, + "TargetStructureID": 112961, + "Label": "5729-112961 via Ribbon Synapse from 111942 -> 112962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111942, + "TargetID": 112962, + "Directional": true + } + ] + }, + { + "ID": 10595, + "SourceStructureID": 5729, + "TargetStructureID": 112977, + "Label": "5729-112977 via Ribbon Synapse from 112976 -> 112980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112976, + "TargetID": 112980, + "Directional": true + } + ] + }, + { + "ID": 10596, + "SourceStructureID": 5729, + "TargetStructureID": 112978, + "Label": "5729-112978 via Ribbon Synapse from 112975 -> 112981, 112976 -> 112979", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112975, + "TargetID": 112981, + "Directional": true + }, + { + "SourceID": 112976, + "TargetID": 112979, + "Directional": true + } + ] + }, + { + "ID": 10597, + "SourceStructureID": 5729, + "TargetStructureID": 112982, + "Label": "5729-112982 via Ribbon Synapse from 112975 -> 112983", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112975, + "TargetID": 112983, + "Directional": true + } + ] + }, + { + "ID": 10598, + "SourceStructureID": 5729, + "TargetStructureID": 112984, + "Label": "5729-112984 via Ribbon Synapse from 112973 -> 112985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112973, + "TargetID": 112985, + "Directional": true + } + ] + }, + { + "ID": 10599, + "SourceStructureID": 5729, + "TargetStructureID": 112991, + "Label": "5729-112991 via Ribbon Synapse from 112972 -> 112992, 112975 -> 112993", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112972, + "TargetID": 112992, + "Directional": true + }, + { + "SourceID": 112975, + "TargetID": 112993, + "Directional": true + } + ] + }, + { + "ID": 10600, + "SourceStructureID": 5729, + "TargetStructureID": 113095, + "Label": "5729-113095 via Ribbon Synapse from 113092 -> 113096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113092, + "TargetID": 113096, + "Directional": true + } + ] + }, + { + "ID": 10601, + "SourceStructureID": 5729, + "TargetStructureID": 113097, + "Label": "5729-113097 via Ribbon Synapse from 113092 -> 113098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113092, + "TargetID": 113098, + "Directional": true + } + ] + }, + { + "ID": 10602, + "SourceStructureID": 5729, + "TargetStructureID": 113099, + "Label": "5729-113099 via Ribbon Synapse from 111795 -> 113100", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111795, + "TargetID": 113100, + "Directional": true + } + ] + }, + { + "ID": 10603, + "SourceStructureID": 5737, + "TargetStructureID": 352, + "Label": "5737-352 via Conventional from 5741 -> 5742", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 5741, + "TargetID": 5742, + "Directional": true + } + ] + }, + { + "ID": 10604, + "SourceStructureID": 5775, + "TargetStructureID": 8575, + "Label": "5775-8575 via BC Conventional Synapse from 62247 -> 62245", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62247, + "TargetID": 62245, + "Directional": true + } + ] + }, + { + "ID": 10605, + "SourceStructureID": 5838, + "TargetStructureID": 5118, + "Label": "5838-5118 via BC Conventional Synapse from 52220 -> 52219", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52220, + "TargetID": 52219, + "Directional": true + } + ] + }, + { + "ID": 10606, + "SourceStructureID": 5838, + "TargetStructureID": 5118, + "Label": "5838-5118 via Ribbon Synapse from 38041 -> 52221", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38041, + "TargetID": 52221, + "Directional": true + } + ] + }, + { + "ID": 10607, + "SourceStructureID": 5838, + "TargetStructureID": 8579, + "Label": "5838-8579 via Ribbon Synapse from 38036 -> 62677", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38036, + "TargetID": 62677, + "Directional": true + } + ] + }, + { + "ID": 10608, + "SourceStructureID": 5860, + "TargetStructureID": 172, + "Label": "5860-172 via Conventional from 29463 -> 29462, 119989 -> 119991", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29463, + "TargetID": 29462, + "Directional": true + }, + { + "SourceID": 119989, + "TargetID": 119991, + "Directional": true + } + ] + }, + { + "ID": 10609, + "SourceStructureID": 5860, + "TargetStructureID": 5528, + "Label": "5860-5528 via Conventional from 8248 -> 96908", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8248, + "TargetID": 96908, + "Directional": true + } + ] + }, + { + "ID": 10610, + "SourceStructureID": 5860, + "TargetStructureID": 5544, + "Label": "5860-5544 via Conventional from 9920 -> 9916, 9922 -> 9921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9920, + "TargetID": 9916, + "Directional": true + }, + { + "SourceID": 9922, + "TargetID": 9921, + "Directional": true + } + ] + }, + { + "ID": 10611, + "SourceStructureID": 5860, + "TargetStructureID": 7075, + "Label": "5860-7075 via Conventional from 62356 -> 62355", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62356, + "TargetID": 62355, + "Directional": true + } + ] + }, + { + "ID": 10612, + "SourceStructureID": 5860, + "TargetStructureID": 38911, + "Label": "5860-38911 via Conventional from 38910 -> 38914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38910, + "TargetID": 38914, + "Directional": true + } + ] + }, + { + "ID": 10613, + "SourceStructureID": 5916, + "TargetStructureID": 8579, + "Label": "5916-8579 via BC Conventional Synapse from 109327 -> 109328", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109327, + "TargetID": 109328, + "Directional": true + } + ] + }, + { + "ID": 10614, + "SourceStructureID": 5916, + "TargetStructureID": 8579, + "Label": "5916-8579 via Ribbon Synapse from 63973 -> 108279, 109435 -> 19795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63973, + "TargetID": 108279, + "Directional": true + }, + { + "SourceID": 109435, + "TargetID": 19795, + "Directional": true + } + ] + }, + { + "ID": 10615, + "SourceStructureID": 5916, + "TargetStructureID": 18282, + "Label": "5916-18282 via Ribbon Synapse from 38845 -> 38843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38845, + "TargetID": 38843, + "Directional": true + } + ] + }, + { + "ID": 10616, + "SourceStructureID": 5916, + "TargetStructureID": 52262, + "Label": "5916-52262 via Ribbon Synapse from 37990 -> 52289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37990, + "TargetID": 52289, + "Directional": true + } + ] + }, + { + "ID": 10617, + "SourceStructureID": 5916, + "TargetStructureID": 106352, + "Label": "5916-106352 via BC Conventional Synapse from 109645 -> 109646", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109645, + "TargetID": 109646, + "Directional": true + } + ] + }, + { + "ID": 10618, + "SourceStructureID": 5916, + "TargetStructureID": 108734, + "Label": "5916-108734 via Ribbon Synapse from 37970 -> 108735", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37970, + "TargetID": 108735, + "Directional": true + } + ] + }, + { + "ID": 10619, + "SourceStructureID": 5916, + "TargetStructureID": 108745, + "Label": "5916-108745 via BC Conventional Synapse from 108747 -> 108748", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108747, + "TargetID": 108748, + "Directional": true + } + ] + }, + { + "ID": 10620, + "SourceStructureID": 5916, + "TargetStructureID": 109039, + "Label": "5916-109039 via Ribbon Synapse from 108922 -> 109044, 108933 -> 109040", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108922, + "TargetID": 109044, + "Directional": true + }, + { + "SourceID": 108933, + "TargetID": 109040, + "Directional": true + } + ] + }, + { + "ID": 10621, + "SourceStructureID": 5916, + "TargetStructureID": 109079, + "Label": "5916-109079 via Ribbon Synapse from 38001 -> 109080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38001, + "TargetID": 109080, + "Directional": true + } + ] + }, + { + "ID": 10622, + "SourceStructureID": 5916, + "TargetStructureID": 109308, + "Label": "5916-109308 via Ribbon Synapse from 109312 -> 109313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109312, + "TargetID": 109313, + "Directional": true + } + ] + }, + { + "ID": 10623, + "SourceStructureID": 5916, + "TargetStructureID": 109696, + "Label": "5916-109696 via Ribbon Synapse from 109702 -> 109700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109702, + "TargetID": 109700, + "Directional": true + } + ] + }, + { + "ID": 10624, + "SourceStructureID": 5916, + "TargetStructureID": 109716, + "Label": "5916-109716 via Ribbon Synapse from 109702 -> 109719", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109702, + "TargetID": 109719, + "Directional": true + } + ] + }, + { + "ID": 10625, + "SourceStructureID": 5919, + "TargetStructureID": 166, + "Label": "5919-166 via Conventional from 23613 -> 4128", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23613, + "TargetID": 4128, + "Directional": true + } + ] + }, + { + "ID": 10626, + "SourceStructureID": 5922, + "TargetStructureID": 7050, + "Label": "5922-7050 via Ribbon Synapse from 68834 -> 68835", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68834, + "TargetID": 68835, + "Directional": true + } + ] + }, + { + "ID": 10627, + "SourceStructureID": 5922, + "TargetStructureID": 22232, + "Label": "5922-22232 via Ribbon Synapse from 68829 -> 68830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68829, + "TargetID": 68830, + "Directional": true + } + ] + }, + { + "ID": 10628, + "SourceStructureID": 5922, + "TargetStructureID": 68836, + "Label": "5922-68836 via Ribbon Synapse from 68834 -> 68839", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68834, + "TargetID": 68839, + "Directional": true + } + ] + }, + { + "ID": 10629, + "SourceStructureID": 5923, + "TargetStructureID": 4943, + "Label": "5923-4943 via Ribbon Synapse from 8691 -> 4997, 87584 -> 4997", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8691, + "TargetID": 4997, + "Directional": true + }, + { + "SourceID": 87584, + "TargetID": 4997, + "Directional": true + } + ] + }, + { + "ID": 10630, + "SourceStructureID": 5923, + "TargetStructureID": 7050, + "Label": "5923-7050 via Ribbon Synapse from 9974 -> 10069, 10007 -> 14316, 33624 -> 55666", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9974, + "TargetID": 10069, + "Directional": true + }, + { + "SourceID": 10007, + "TargetID": 14316, + "Directional": true + }, + { + "SourceID": 33624, + "TargetID": 55666, + "Directional": true + } + ] + }, + { + "ID": 10631, + "SourceStructureID": 5923, + "TargetStructureID": 12897, + "Label": "5923-12897 via Ribbon Synapse from 9961 -> 24724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9961, + "TargetID": 24724, + "Directional": true + } + ] + }, + { + "ID": 10632, + "SourceStructureID": 5923, + "TargetStructureID": 87589, + "Label": "5923-87589 via Ribbon Synapse from 87587 -> 98799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87587, + "TargetID": 98799, + "Directional": true + } + ] + }, + { + "ID": 10633, + "SourceStructureID": 6011, + "TargetStructureID": 138, + "Label": "6011-138 via Conventional from 6034 -> 32880, 6035 -> 32881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6034, + "TargetID": 32880, + "Directional": true + }, + { + "SourceID": 6035, + "TargetID": 32881, + "Directional": true + } + ] + }, + { + "ID": 10634, + "SourceStructureID": 6011, + "TargetStructureID": 5640, + "Label": "6011-5640 via Conventional from 37063 -> 37062", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37063, + "TargetID": 37062, + "Directional": true + } + ] + }, + { + "ID": 10635, + "SourceStructureID": 6011, + "TargetStructureID": 5648, + "Label": "6011-5648 via Conventional from 6037 -> 23418", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6037, + "TargetID": 23418, + "Directional": true + } + ] + }, + { + "ID": 10636, + "SourceStructureID": 6011, + "TargetStructureID": 6050, + "Label": "6011-6050 via Conventional from 6029 -> 37632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6029, + "TargetID": 37632, + "Directional": true + } + ] + }, + { + "ID": 10637, + "SourceStructureID": 6011, + "TargetStructureID": 6136, + "Label": "6011-6136 via Conventional from 6028 -> 10366", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6028, + "TargetID": 10366, + "Directional": true + } + ] + }, + { + "ID": 10638, + "SourceStructureID": 6046, + "TargetStructureID": 7134, + "Label": "6046-7134 via Ribbon Synapse from 16715 -> 16747, 16716 -> 16748, 16719 -> 16745, 16726 -> 53602, 18189 -> 53593, 18191 -> 53594, 42759 -> 41648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16715, + "TargetID": 16747, + "Directional": true + }, + { + "SourceID": 16716, + "TargetID": 16748, + "Directional": true + }, + { + "SourceID": 16719, + "TargetID": 16745, + "Directional": true + }, + { + "SourceID": 16726, + "TargetID": 53602, + "Directional": true + }, + { + "SourceID": 18189, + "TargetID": 53593, + "Directional": true + }, + { + "SourceID": 18191, + "TargetID": 53594, + "Directional": true + }, + { + "SourceID": 42759, + "TargetID": 41648, + "Directional": true + } + ] + }, + { + "ID": 10639, + "SourceStructureID": 6046, + "TargetStructureID": 7145, + "Label": "6046-7145 via Ribbon Synapse from 16676 -> 16684, 16678 -> 15834", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16676, + "TargetID": 16684, + "Directional": true + }, + { + "SourceID": 16678, + "TargetID": 15834, + "Directional": true + } + ] + }, + { + "ID": 10640, + "SourceStructureID": 6046, + "TargetStructureID": 7897, + "Label": "6046-7897 via Ribbon Synapse from 11859 -> 55690", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11859, + "TargetID": 55690, + "Directional": true + } + ] + }, + { + "ID": 10641, + "SourceStructureID": 6046, + "TargetStructureID": 16073, + "Label": "6046-16073 via Ribbon Synapse from 16729 -> 18213", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16729, + "TargetID": 18213, + "Directional": true + } + ] + }, + { + "ID": 10642, + "SourceStructureID": 6046, + "TargetStructureID": 35576, + "Label": "6046-35576 via Ribbon Synapse from 16734 -> 35581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16734, + "TargetID": 35581, + "Directional": true + } + ] + }, + { + "ID": 10643, + "SourceStructureID": 6046, + "TargetStructureID": 43261, + "Label": "6046-43261 via Ribbon Synapse from 18179 -> 122049", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18179, + "TargetID": 122049, + "Directional": true + } + ] + }, + { + "ID": 10644, + "SourceStructureID": 6046, + "TargetStructureID": 61450, + "Label": "6046-61450 via BC Conventional Synapse from 61454 -> 61453", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61454, + "TargetID": 61453, + "Directional": true + } + ] + }, + { + "ID": 10645, + "SourceStructureID": 6047, + "TargetStructureID": 5107, + "Label": "6047-5107 via Ribbon Synapse from 112034 -> 65074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112034, + "TargetID": 65074, + "Directional": true + } + ] + }, + { + "ID": 10646, + "SourceStructureID": 6047, + "TargetStructureID": 7073, + "Label": "6047-7073 via Ribbon Synapse from 19623 -> 19624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19623, + "TargetID": 19624, + "Directional": true + } + ] + }, + { + "ID": 10647, + "SourceStructureID": 6047, + "TargetStructureID": 9769, + "Label": "6047-9769 via Ribbon Synapse from 19680 -> 52611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19680, + "TargetID": 52611, + "Directional": true + } + ] + }, + { + "ID": 10648, + "SourceStructureID": 6047, + "TargetStructureID": 35343, + "Label": "6047-35343 via Cistern Pre from 129332 -> 129333", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 129332, + "TargetID": 129333, + "Directional": true + } + ] + }, + { + "ID": 10649, + "SourceStructureID": 6047, + "TargetStructureID": 35343, + "Label": "6047-35343 via Ribbon Synapse from 113258 -> 159532, 113271 -> 159532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113258, + "TargetID": 159532, + "Directional": true + }, + { + "SourceID": 113271, + "TargetID": 159532, + "Directional": true + } + ] + }, + { + "ID": 10650, + "SourceStructureID": 6047, + "TargetStructureID": 47104, + "Label": "6047-47104 via Ribbon Synapse from 30639 -> 47185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30639, + "TargetID": 47185, + "Directional": true + } + ] + }, + { + "ID": 10651, + "SourceStructureID": 6047, + "TargetStructureID": 68539, + "Label": "6047-68539 via Ribbon Synapse from 19655 -> 73768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19655, + "TargetID": 73768, + "Directional": true + } + ] + }, + { + "ID": 10652, + "SourceStructureID": 6047, + "TargetStructureID": 74231, + "Label": "6047-74231 via Ribbon Synapse from 112493 -> 112504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112493, + "TargetID": 112504, + "Directional": true + } + ] + }, + { + "ID": 10653, + "SourceStructureID": 6047, + "TargetStructureID": 75133, + "Label": "6047-75133 via Ribbon Synapse from 19719 -> 112377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19719, + "TargetID": 112377, + "Directional": true + } + ] + }, + { + "ID": 10654, + "SourceStructureID": 6047, + "TargetStructureID": 111904, + "Label": "6047-111904 via Cistern Pre from 19615 -> 111906, 19617 -> 111905", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 19615, + "TargetID": 111906, + "Directional": true + }, + { + "SourceID": 19617, + "TargetID": 111905, + "Directional": true + } + ] + }, + { + "ID": 10655, + "SourceStructureID": 6047, + "TargetStructureID": 111908, + "Label": "6047-111908 via Cistern Pre from 19614 -> 111910", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 19614, + "TargetID": 111910, + "Directional": true + } + ] + }, + { + "ID": 10656, + "SourceStructureID": 6047, + "TargetStructureID": 111914, + "Label": "6047-111914 via Ribbon Synapse from 19618 -> 111915", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19618, + "TargetID": 111915, + "Directional": true + } + ] + }, + { + "ID": 10657, + "SourceStructureID": 6047, + "TargetStructureID": 111923, + "Label": "6047-111923 via BC Conventional Synapse from 111922 -> 111925", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111922, + "TargetID": 111925, + "Directional": true + } + ] + }, + { + "ID": 10658, + "SourceStructureID": 6047, + "TargetStructureID": 111923, + "Label": "6047-111923 via Ribbon Synapse from 19619 -> 111924", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19619, + "TargetID": 111924, + "Directional": true + } + ] + }, + { + "ID": 10659, + "SourceStructureID": 6047, + "TargetStructureID": 111929, + "Label": "6047-111929 via Ribbon Synapse from 19693 -> 111930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19693, + "TargetID": 111930, + "Directional": true + } + ] + }, + { + "ID": 10660, + "SourceStructureID": 6047, + "TargetStructureID": 111934, + "Label": "6047-111934 via BC Conventional Synapse from 111933 -> 111935", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111933, + "TargetID": 111935, + "Directional": true + } + ] + }, + { + "ID": 10661, + "SourceStructureID": 6047, + "TargetStructureID": 112020, + "Label": "6047-112020 via BC Conventional Synapse from 112022 -> 112023", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112022, + "TargetID": 112023, + "Directional": true + } + ] + }, + { + "ID": 10662, + "SourceStructureID": 6047, + "TargetStructureID": 112020, + "Label": "6047-112020 via Ribbon Synapse from 19694 -> 112021", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19694, + "TargetID": 112021, + "Directional": true + } + ] + }, + { + "ID": 10663, + "SourceStructureID": 6047, + "TargetStructureID": 112024, + "Label": "6047-112024 via Ribbon Synapse from 19695 -> 112025", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19695, + "TargetID": 112025, + "Directional": true + } + ] + }, + { + "ID": 10664, + "SourceStructureID": 6047, + "TargetStructureID": 112036, + "Label": "6047-112036 via Ribbon Synapse from 112035 -> 112038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112035, + "TargetID": 112038, + "Directional": true + } + ] + }, + { + "ID": 10665, + "SourceStructureID": 6047, + "TargetStructureID": 112049, + "Label": "6047-112049 via Ribbon Synapse from 112041 -> 112050", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112041, + "TargetID": 112050, + "Directional": true + } + ] + }, + { + "ID": 10666, + "SourceStructureID": 6047, + "TargetStructureID": 112051, + "Label": "6047-112051 via Ribbon Synapse from 112041 -> 112052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112041, + "TargetID": 112052, + "Directional": true + } + ] + }, + { + "ID": 10667, + "SourceStructureID": 6047, + "TargetStructureID": 112075, + "Label": "6047-112075 via Ribbon Synapse from 19697 -> 112076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19697, + "TargetID": 112076, + "Directional": true + } + ] + }, + { + "ID": 10668, + "SourceStructureID": 6047, + "TargetStructureID": 112091, + "Label": "6047-112091 via Ribbon Synapse from 19706 -> 112092", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19706, + "TargetID": 112092, + "Directional": true + } + ] + }, + { + "ID": 10669, + "SourceStructureID": 6047, + "TargetStructureID": 112115, + "Label": "6047-112115 via Ribbon Synapse from 19676 -> 112117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19676, + "TargetID": 112117, + "Directional": true + } + ] + }, + { + "ID": 10670, + "SourceStructureID": 6047, + "TargetStructureID": 112120, + "Label": "6047-112120 via Ribbon Synapse from 19676 -> 112121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19676, + "TargetID": 112121, + "Directional": true + } + ] + }, + { + "ID": 10671, + "SourceStructureID": 6047, + "TargetStructureID": 112122, + "Label": "6047-112122 via Ribbon Synapse from 19676 -> 112123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19676, + "TargetID": 112123, + "Directional": true + } + ] + }, + { + "ID": 10672, + "SourceStructureID": 6047, + "TargetStructureID": 112142, + "Label": "6047-112142 via Ribbon Synapse from 112141 -> 112143", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112141, + "TargetID": 112143, + "Directional": true + } + ] + }, + { + "ID": 10673, + "SourceStructureID": 6047, + "TargetStructureID": 112144, + "Label": "6047-112144 via Ribbon Synapse from 112146 -> 112145", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112146, + "TargetID": 112145, + "Directional": true + } + ] + }, + { + "ID": 10674, + "SourceStructureID": 6047, + "TargetStructureID": 112147, + "Label": "6047-112147 via Ribbon Synapse from 112153 -> 112148", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112153, + "TargetID": 112148, + "Directional": true + } + ] + }, + { + "ID": 10675, + "SourceStructureID": 6047, + "TargetStructureID": 112149, + "Label": "6047-112149 via Ribbon Synapse from 112153 -> 112150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112153, + "TargetID": 112150, + "Directional": true + } + ] + }, + { + "ID": 10676, + "SourceStructureID": 6047, + "TargetStructureID": 112151, + "Label": "6047-112151 via Ribbon Synapse from 112153 -> 112152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112153, + "TargetID": 112152, + "Directional": true + } + ] + }, + { + "ID": 10677, + "SourceStructureID": 6047, + "TargetStructureID": 112157, + "Label": "6047-112157 via BC Conventional Synapse from 148296 -> 112158", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148296, + "TargetID": 112158, + "Directional": true + } + ] + }, + { + "ID": 10678, + "SourceStructureID": 6047, + "TargetStructureID": 112170, + "Label": "6047-112170 via Ribbon Synapse from 19684 -> 112171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19684, + "TargetID": 112171, + "Directional": true + } + ] + }, + { + "ID": 10679, + "SourceStructureID": 6047, + "TargetStructureID": 112172, + "Label": "6047-112172 via Ribbon Synapse from 19684 -> 112175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19684, + "TargetID": 112175, + "Directional": true + } + ] + }, + { + "ID": 10680, + "SourceStructureID": 6047, + "TargetStructureID": 112176, + "Label": "6047-112176 via Ribbon Synapse from 19684 -> 112177", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19684, + "TargetID": 112177, + "Directional": true + } + ] + }, + { + "ID": 10681, + "SourceStructureID": 6047, + "TargetStructureID": 112188, + "Label": "6047-112188 via Ribbon Synapse from 19669 -> 112195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19669, + "TargetID": 112195, + "Directional": true + } + ] + }, + { + "ID": 10682, + "SourceStructureID": 6047, + "TargetStructureID": 112192, + "Label": "6047-112192 via Ribbon Synapse from 19669 -> 112193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19669, + "TargetID": 112193, + "Directional": true + } + ] + }, + { + "ID": 10683, + "SourceStructureID": 6047, + "TargetStructureID": 112197, + "Label": "6047-112197 via BC Conventional Synapse from 112196 -> 112198", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112196, + "TargetID": 112198, + "Directional": true + } + ] + }, + { + "ID": 10684, + "SourceStructureID": 6047, + "TargetStructureID": 112203, + "Label": "6047-112203 via BC Conventional Synapse from 112202 -> 112204", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112202, + "TargetID": 112204, + "Directional": true + } + ] + }, + { + "ID": 10685, + "SourceStructureID": 6047, + "TargetStructureID": 112209, + "Label": "6047-112209 via Ribbon Synapse from 19711 -> 112210", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19711, + "TargetID": 112210, + "Directional": true + } + ] + }, + { + "ID": 10686, + "SourceStructureID": 6047, + "TargetStructureID": 112221, + "Label": "6047-112221 via BC Conventional Synapse from 112224 -> 112225", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112224, + "TargetID": 112225, + "Directional": true + } + ] + }, + { + "ID": 10687, + "SourceStructureID": 6047, + "TargetStructureID": 112232, + "Label": "6047-112232 via Ribbon Synapse from 61335 -> 112235", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61335, + "TargetID": 112235, + "Directional": true + } + ] + }, + { + "ID": 10688, + "SourceStructureID": 6047, + "TargetStructureID": 112246, + "Label": "6047-112246 via Ribbon Synapse from 112243 -> 112249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112243, + "TargetID": 112249, + "Directional": true + } + ] + }, + { + "ID": 10689, + "SourceStructureID": 6047, + "TargetStructureID": 112253, + "Label": "6047-112253 via Ribbon Synapse from 61332 -> 112266", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61332, + "TargetID": 112266, + "Directional": true + } + ] + }, + { + "ID": 10690, + "SourceStructureID": 6047, + "TargetStructureID": 112257, + "Label": "6047-112257 via BC Conventional Synapse from 112259 -> 112258", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112259, + "TargetID": 112258, + "Directional": true + } + ] + }, + { + "ID": 10691, + "SourceStructureID": 6047, + "TargetStructureID": 112260, + "Label": "6047-112260 via BC Conventional Synapse from 112263 -> 112261", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112263, + "TargetID": 112261, + "Directional": true + } + ] + }, + { + "ID": 10692, + "SourceStructureID": 6047, + "TargetStructureID": 112264, + "Label": "6047-112264 via Ribbon Synapse from 112248 -> 112269", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112248, + "TargetID": 112269, + "Directional": true + } + ] + }, + { + "ID": 10693, + "SourceStructureID": 6047, + "TargetStructureID": 112267, + "Label": "6047-112267 via Ribbon Synapse from 61332 -> 112268", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61332, + "TargetID": 112268, + "Directional": true + } + ] + }, + { + "ID": 10694, + "SourceStructureID": 6047, + "TargetStructureID": 112282, + "Label": "6047-112282 via Ribbon Synapse from 61332 -> 112335", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61332, + "TargetID": 112335, + "Directional": true + } + ] + }, + { + "ID": 10695, + "SourceStructureID": 6047, + "TargetStructureID": 112284, + "Label": "6047-112284 via Ribbon Synapse from 112331 -> 126798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112331, + "TargetID": 126798, + "Directional": true + } + ] + }, + { + "ID": 10696, + "SourceStructureID": 6047, + "TargetStructureID": 112292, + "Label": "6047-112292 via BC Conventional Synapse from 112295 -> 112294", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112295, + "TargetID": 112294, + "Directional": true + } + ] + }, + { + "ID": 10697, + "SourceStructureID": 6047, + "TargetStructureID": 112319, + "Label": "6047-112319 via Ribbon Synapse from 61322 -> 112339", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61322, + "TargetID": 112339, + "Directional": true + } + ] + }, + { + "ID": 10698, + "SourceStructureID": 6047, + "TargetStructureID": 112322, + "Label": "6047-112322 via Ribbon Synapse from 112327 -> 112330", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112327, + "TargetID": 112330, + "Directional": true + } + ] + }, + { + "ID": 10699, + "SourceStructureID": 6047, + "TargetStructureID": 112328, + "Label": "6047-112328 via Ribbon Synapse from 112327 -> 112329", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112327, + "TargetID": 112329, + "Directional": true + } + ] + }, + { + "ID": 10700, + "SourceStructureID": 6047, + "TargetStructureID": 112333, + "Label": "6047-112333 via Ribbon Synapse from 112331 -> 112334", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112331, + "TargetID": 112334, + "Directional": true + } + ] + }, + { + "ID": 10701, + "SourceStructureID": 6047, + "TargetStructureID": 112340, + "Label": "6047-112340 via Ribbon Synapse from 61322 -> 112341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61322, + "TargetID": 112341, + "Directional": true + } + ] + }, + { + "ID": 10702, + "SourceStructureID": 6047, + "TargetStructureID": 112342, + "Label": "6047-112342 via Ribbon Synapse from 19713 -> 112343", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19713, + "TargetID": 112343, + "Directional": true + } + ] + }, + { + "ID": 10703, + "SourceStructureID": 6047, + "TargetStructureID": 112360, + "Label": "6047-112360 via Ribbon Synapse from 19715 -> 112361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19715, + "TargetID": 112361, + "Directional": true + } + ] + }, + { + "ID": 10704, + "SourceStructureID": 6047, + "TargetStructureID": 112362, + "Label": "6047-112362 via Ribbon Synapse from 19715 -> 112363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19715, + "TargetID": 112363, + "Directional": true + } + ] + }, + { + "ID": 10705, + "SourceStructureID": 6047, + "TargetStructureID": 112364, + "Label": "6047-112364 via BC Conventional Synapse from 112367 -> 112369", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112367, + "TargetID": 112369, + "Directional": true + } + ] + }, + { + "ID": 10706, + "SourceStructureID": 6047, + "TargetStructureID": 112370, + "Label": "6047-112370 via Ribbon Synapse from 19719 -> 112371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19719, + "TargetID": 112371, + "Directional": true + } + ] + }, + { + "ID": 10707, + "SourceStructureID": 6047, + "TargetStructureID": 112389, + "Label": "6047-112389 via BC Conventional Synapse from 112388 -> 112391", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112388, + "TargetID": 112391, + "Directional": true + } + ] + }, + { + "ID": 10708, + "SourceStructureID": 6047, + "TargetStructureID": 112392, + "Label": "6047-112392 via Ribbon Synapse from 19728 -> 112394", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19728, + "TargetID": 112394, + "Directional": true + } + ] + }, + { + "ID": 10709, + "SourceStructureID": 6047, + "TargetStructureID": 112395, + "Label": "6047-112395 via Ribbon Synapse from 19728 -> 112397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19728, + "TargetID": 112397, + "Directional": true + } + ] + }, + { + "ID": 10710, + "SourceStructureID": 6047, + "TargetStructureID": 112409, + "Label": "6047-112409 via Ribbon Synapse from 19737 -> 112410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19737, + "TargetID": 112410, + "Directional": true + } + ] + }, + { + "ID": 10711, + "SourceStructureID": 6047, + "TargetStructureID": 112411, + "Label": "6047-112411 via Ribbon Synapse from 19737 -> 112412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19737, + "TargetID": 112412, + "Directional": true + } + ] + }, + { + "ID": 10712, + "SourceStructureID": 6047, + "TargetStructureID": 112419, + "Label": "6047-112419 via BC Conventional Synapse from 112421 -> 112422", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112421, + "TargetID": 112422, + "Directional": true + } + ] + }, + { + "ID": 10713, + "SourceStructureID": 6047, + "TargetStructureID": 112436, + "Label": "6047-112436 via BC Conventional Synapse from 112536 -> 112535", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112536, + "TargetID": 112535, + "Directional": true + } + ] + }, + { + "ID": 10714, + "SourceStructureID": 6047, + "TargetStructureID": 112500, + "Label": "6047-112500 via BC Conventional Synapse from 112499 -> 112503, 112511 -> 112501", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112499, + "TargetID": 112503, + "Directional": true + }, + { + "SourceID": 112511, + "TargetID": 112501, + "Directional": true + } + ] + }, + { + "ID": 10715, + "SourceStructureID": 6047, + "TargetStructureID": 112505, + "Label": "6047-112505 via Ribbon Synapse from 112493 -> 112506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112493, + "TargetID": 112506, + "Directional": true + } + ] + }, + { + "ID": 10716, + "SourceStructureID": 6047, + "TargetStructureID": 112507, + "Label": "6047-112507 via Ribbon Synapse from 112493 -> 112508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112493, + "TargetID": 112508, + "Directional": true + } + ] + }, + { + "ID": 10717, + "SourceStructureID": 6047, + "TargetStructureID": 112518, + "Label": "6047-112518 via Ribbon Synapse from 112513 -> 112522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112513, + "TargetID": 112522, + "Directional": true + } + ] + }, + { + "ID": 10718, + "SourceStructureID": 6047, + "TargetStructureID": 112519, + "Label": "6047-112519 via Ribbon Synapse from 112513 -> 112520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112513, + "TargetID": 112520, + "Directional": true + } + ] + }, + { + "ID": 10719, + "SourceStructureID": 6047, + "TargetStructureID": 112523, + "Label": "6047-112523 via Ribbon Synapse from 112512 -> 112524", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112512, + "TargetID": 112524, + "Directional": true + } + ] + }, + { + "ID": 10720, + "SourceStructureID": 6047, + "TargetStructureID": 112525, + "Label": "6047-112525 via Ribbon Synapse from 112512 -> 112528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112512, + "TargetID": 112528, + "Directional": true + } + ] + }, + { + "ID": 10721, + "SourceStructureID": 6047, + "TargetStructureID": 112549, + "Label": "6047-112549 via Ribbon Synapse from 19660 -> 112554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19660, + "TargetID": 112554, + "Directional": true + } + ] + }, + { + "ID": 10722, + "SourceStructureID": 6047, + "TargetStructureID": 112557, + "Label": "6047-112557 via Ribbon Synapse from 19659 -> 112558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19659, + "TargetID": 112558, + "Directional": true + } + ] + }, + { + "ID": 10723, + "SourceStructureID": 6047, + "TargetStructureID": 112582, + "Label": "6047-112582 via Ribbon Synapse from 19656 -> 112583", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19656, + "TargetID": 112583, + "Directional": true + } + ] + }, + { + "ID": 10724, + "SourceStructureID": 6047, + "TargetStructureID": 112753, + "Label": "6047-112753 via Ribbon Synapse from 61339 -> 112755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61339, + "TargetID": 112755, + "Directional": true + } + ] + }, + { + "ID": 10725, + "SourceStructureID": 6047, + "TargetStructureID": 112756, + "Label": "6047-112756 via Ribbon Synapse from 61339 -> 112757", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61339, + "TargetID": 112757, + "Directional": true + } + ] + }, + { + "ID": 10726, + "SourceStructureID": 6047, + "TargetStructureID": 112764, + "Label": "6047-112764 via BC Conventional Synapse from 112763 -> 112765", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112763, + "TargetID": 112765, + "Directional": true + } + ] + }, + { + "ID": 10727, + "SourceStructureID": 6047, + "TargetStructureID": 112769, + "Label": "6047-112769 via Ribbon Synapse from 61341 -> 112770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61341, + "TargetID": 112770, + "Directional": true + } + ] + }, + { + "ID": 10728, + "SourceStructureID": 6047, + "TargetStructureID": 112782, + "Label": "6047-112782 via BC Conventional Synapse from 112781 -> 112783", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112781, + "TargetID": 112783, + "Directional": true + } + ] + }, + { + "ID": 10729, + "SourceStructureID": 6047, + "TargetStructureID": 112805, + "Label": "6047-112805 via Ribbon Synapse from 19647 -> 112807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19647, + "TargetID": 112807, + "Directional": true + } + ] + }, + { + "ID": 10730, + "SourceStructureID": 6047, + "TargetStructureID": 112824, + "Label": "6047-112824 via Ribbon Synapse from 19643 -> 112826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19643, + "TargetID": 112826, + "Directional": true + } + ] + }, + { + "ID": 10731, + "SourceStructureID": 6047, + "TargetStructureID": 112835, + "Label": "6047-112835 via BC Conventional Synapse from 112834 -> 112840", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 112834, + "TargetID": 112840, + "Directional": true + } + ] + }, + { + "ID": 10732, + "SourceStructureID": 6047, + "TargetStructureID": 112841, + "Label": "6047-112841 via Ribbon Synapse from 19643 -> 112842", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19643, + "TargetID": 112842, + "Directional": true + } + ] + }, + { + "ID": 10733, + "SourceStructureID": 6047, + "TargetStructureID": 113122, + "Label": "6047-113122 via Ribbon Synapse from 19638 -> 113124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19638, + "TargetID": 113124, + "Directional": true + } + ] + }, + { + "ID": 10734, + "SourceStructureID": 6047, + "TargetStructureID": 113125, + "Label": "6047-113125 via Ribbon Synapse from 19638 -> 113126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19638, + "TargetID": 113126, + "Directional": true + } + ] + }, + { + "ID": 10735, + "SourceStructureID": 6047, + "TargetStructureID": 113127, + "Label": "6047-113127 via Ribbon Synapse from 19641 -> 113128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19641, + "TargetID": 113128, + "Directional": true + } + ] + }, + { + "ID": 10736, + "SourceStructureID": 6047, + "TargetStructureID": 113149, + "Label": "6047-113149 via Ribbon Synapse from 19637 -> 113150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19637, + "TargetID": 113150, + "Directional": true + } + ] + }, + { + "ID": 10737, + "SourceStructureID": 6047, + "TargetStructureID": 113153, + "Label": "6047-113153 via BC Conventional Synapse from 113155 -> 113154", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113155, + "TargetID": 113154, + "Directional": true + } + ] + }, + { + "ID": 10738, + "SourceStructureID": 6047, + "TargetStructureID": 113162, + "Label": "6047-113162 via Ribbon Synapse from 19628 -> 113163", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19628, + "TargetID": 113163, + "Directional": true + } + ] + }, + { + "ID": 10739, + "SourceStructureID": 6047, + "TargetStructureID": 113176, + "Label": "6047-113176 via BC Conventional Synapse from 113177 -> 113178", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113177, + "TargetID": 113178, + "Directional": true + } + ] + }, + { + "ID": 10740, + "SourceStructureID": 6047, + "TargetStructureID": 113179, + "Label": "6047-113179 via Ribbon Synapse from 19634 -> 113183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19634, + "TargetID": 113183, + "Directional": true + } + ] + }, + { + "ID": 10741, + "SourceStructureID": 6047, + "TargetStructureID": 113184, + "Label": "6047-113184 via Ribbon Synapse from 19634 -> 113185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19634, + "TargetID": 113185, + "Directional": true + } + ] + }, + { + "ID": 10742, + "SourceStructureID": 6047, + "TargetStructureID": 113230, + "Label": "6047-113230 via Ribbon Synapse from 19691 -> 113231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19691, + "TargetID": 113231, + "Directional": true + } + ] + }, + { + "ID": 10743, + "SourceStructureID": 6047, + "TargetStructureID": 113693, + "Label": "6047-113693 via Ribbon Synapse from 113696 -> 113695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113696, + "TargetID": 113695, + "Directional": true + } + ] + }, + { + "ID": 10744, + "SourceStructureID": 6048, + "TargetStructureID": 597, + "Label": "6048-597 via Ribbon Synapse from 60481 -> 60475", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60481, + "TargetID": 60475, + "Directional": true + } + ] + }, + { + "ID": 10745, + "SourceStructureID": 6048, + "TargetStructureID": 7147, + "Label": "6048-7147 via Ribbon Synapse from 60476 -> 60477", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60476, + "TargetID": 60477, + "Directional": true + } + ] + }, + { + "ID": 10746, + "SourceStructureID": 6050, + "TargetStructureID": 5442, + "Label": "6050-5442 via Ribbon Synapse from 51648 -> 56662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51648, + "TargetID": 56662, + "Directional": true + } + ] + }, + { + "ID": 10747, + "SourceStructureID": 6050, + "TargetStructureID": 6300, + "Label": "6050-6300 via Ribbon Synapse from 35946 -> 35947, 51653 -> 56097, 69795 -> 69799, 113884 -> 127104, 113890 -> 127161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35946, + "TargetID": 35947, + "Directional": true + }, + { + "SourceID": 51653, + "TargetID": 56097, + "Directional": true + }, + { + "SourceID": 69795, + "TargetID": 69799, + "Directional": true + }, + { + "SourceID": 113884, + "TargetID": 127104, + "Directional": true + }, + { + "SourceID": 113890, + "TargetID": 127161, + "Directional": true + } + ] + }, + { + "ID": 10748, + "SourceStructureID": 6050, + "TargetStructureID": 9769, + "Label": "6050-9769 via Ribbon Synapse from 35944 -> 23938, 51887 -> 127034, 126968 -> 126969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35944, + "TargetID": 23938, + "Directional": true + }, + { + "SourceID": 51887, + "TargetID": 127034, + "Directional": true + }, + { + "SourceID": 126968, + "TargetID": 126969, + "Directional": true + } + ] + }, + { + "ID": 10749, + "SourceStructureID": 6050, + "TargetStructureID": 15796, + "Label": "6050-15796 via Ribbon Synapse from 19306 -> 19282", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19306, + "TargetID": 19282, + "Directional": true + } + ] + }, + { + "ID": 10750, + "SourceStructureID": 6050, + "TargetStructureID": 35894, + "Label": "6050-35894 via Ribbon Synapse from 119685 -> 119686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119685, + "TargetID": 119686, + "Directional": true + } + ] + }, + { + "ID": 10751, + "SourceStructureID": 6050, + "TargetStructureID": 45536, + "Label": "6050-45536 via Ribbon Synapse from 45535 -> 45539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45535, + "TargetID": 45539, + "Directional": true + } + ] + }, + { + "ID": 10752, + "SourceStructureID": 6050, + "TargetStructureID": 45551, + "Label": "6050-45551 via Ribbon Synapse from 45549 -> 45552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45549, + "TargetID": 45552, + "Directional": true + } + ] + }, + { + "ID": 10753, + "SourceStructureID": 6050, + "TargetStructureID": 45555, + "Label": "6050-45555 via Ribbon Synapse from 54399 -> 127068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54399, + "TargetID": 127068, + "Directional": true + } + ] + }, + { + "ID": 10754, + "SourceStructureID": 6050, + "TargetStructureID": 57064, + "Label": "6050-57064 via Ribbon Synapse from 51879 -> 128926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51879, + "TargetID": 128926, + "Directional": true + } + ] + }, + { + "ID": 10755, + "SourceStructureID": 6050, + "TargetStructureID": 62396, + "Label": "6050-62396 via Ribbon Synapse from 36012 -> 62398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36012, + "TargetID": 62398, + "Directional": true + } + ] + }, + { + "ID": 10756, + "SourceStructureID": 6050, + "TargetStructureID": 66366, + "Label": "6050-66366 via Ribbon Synapse from 66365 -> 66367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66365, + "TargetID": 66367, + "Directional": true + } + ] + }, + { + "ID": 10757, + "SourceStructureID": 6050, + "TargetStructureID": 66368, + "Label": "6050-66368 via Ribbon Synapse from 66153 -> 66369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66153, + "TargetID": 66369, + "Directional": true + } + ] + }, + { + "ID": 10758, + "SourceStructureID": 6050, + "TargetStructureID": 67291, + "Label": "6050-67291 via Ribbon Synapse from 68369 -> 68368, 69794 -> 69792", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68369, + "TargetID": 68368, + "Directional": true + }, + { + "SourceID": 69794, + "TargetID": 69792, + "Directional": true + } + ] + }, + { + "ID": 10759, + "SourceStructureID": 6050, + "TargetStructureID": 74894, + "Label": "6050-74894 via Ribbon Synapse from 19299 -> 74895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19299, + "TargetID": 74895, + "Directional": true + } + ] + }, + { + "ID": 10760, + "SourceStructureID": 6050, + "TargetStructureID": 82091, + "Label": "6050-82091 via Ribbon Synapse from 126994 -> 126998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 126994, + "TargetID": 126998, + "Directional": true + } + ] + }, + { + "ID": 10761, + "SourceStructureID": 6050, + "TargetStructureID": 86254, + "Label": "6050-86254 via Ribbon Synapse from 127053 -> 127054", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127053, + "TargetID": 127054, + "Directional": true + } + ] + }, + { + "ID": 10762, + "SourceStructureID": 6050, + "TargetStructureID": 91867, + "Label": "6050-91867 via Ribbon Synapse from 51653 -> 128990, 51666 -> 127229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51653, + "TargetID": 128990, + "Directional": true + }, + { + "SourceID": 51666, + "TargetID": 127229, + "Directional": true + } + ] + }, + { + "ID": 10763, + "SourceStructureID": 6050, + "TargetStructureID": 105188, + "Label": "6050-105188 via Ribbon Synapse from 114349 -> 114351", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114349, + "TargetID": 114351, + "Directional": true + } + ] + }, + { + "ID": 10764, + "SourceStructureID": 6050, + "TargetStructureID": 116279, + "Label": "6050-116279 via Ribbon Synapse from 51684 -> 120962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51684, + "TargetID": 120962, + "Directional": true + } + ] + }, + { + "ID": 10765, + "SourceStructureID": 6050, + "TargetStructureID": 120956, + "Label": "6050-120956 via Ribbon Synapse from 35955 -> 127248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35955, + "TargetID": 127248, + "Directional": true + } + ] + }, + { + "ID": 10766, + "SourceStructureID": 6050, + "TargetStructureID": 124198, + "Label": "6050-124198 via Ribbon Synapse from 113565 -> 124199", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 113565, + "TargetID": 124199, + "Directional": true + } + ] + }, + { + "ID": 10767, + "SourceStructureID": 6050, + "TargetStructureID": 128843, + "Label": "6050-128843 via Ribbon Synapse from 114253 -> 128844", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114253, + "TargetID": 128844, + "Directional": true + } + ] + }, + { + "ID": 10768, + "SourceStructureID": 6115, + "TargetStructureID": 593, + "Label": "6115-593 via Ribbon Synapse from 66337 -> 73127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66337, + "TargetID": 73127, + "Directional": true + } + ] + }, + { + "ID": 10769, + "SourceStructureID": 6115, + "TargetStructureID": 5117, + "Label": "6115-5117 via Ribbon Synapse from 66335 -> 66336, 66337 -> 66338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66335, + "TargetID": 66336, + "Directional": true + }, + { + "SourceID": 66337, + "TargetID": 66338, + "Directional": true + } + ] + }, + { + "ID": 10770, + "SourceStructureID": 6115, + "TargetStructureID": 5118, + "Label": "6115-5118 via BC Conventional Synapse from 52189 -> 52187, 73770 -> 73771, 74800 -> 52192", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52189, + "TargetID": 52187, + "Directional": true + }, + { + "SourceID": 73770, + "TargetID": 73771, + "Directional": true + }, + { + "SourceID": 74800, + "TargetID": 52192, + "Directional": true + } + ] + }, + { + "ID": 10771, + "SourceStructureID": 6115, + "TargetStructureID": 5118, + "Label": "6115-5118 via Unknown from 75598 -> 75599", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 75598, + "TargetID": 75599, + "Directional": true + } + ] + }, + { + "ID": 10772, + "SourceStructureID": 6115, + "TargetStructureID": 8577, + "Label": "6115-8577 via Ribbon Synapse from 16058 -> 16048, 72962 -> 76011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16058, + "TargetID": 16048, + "Directional": true + }, + { + "SourceID": 72962, + "TargetID": 76011, + "Directional": true + } + ] + }, + { + "ID": 10773, + "SourceStructureID": 6115, + "TargetStructureID": 8579, + "Label": "6115-8579 via Ribbon Synapse from 18325 -> 72517, 55845 -> 62740, 55902 -> 62736, 59596 -> 72562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18325, + "TargetID": 72517, + "Directional": true + }, + { + "SourceID": 55845, + "TargetID": 62740, + "Directional": true + }, + { + "SourceID": 55902, + "TargetID": 62736, + "Directional": true + }, + { + "SourceID": 59596, + "TargetID": 72562, + "Directional": true + } + ] + }, + { + "ID": 10774, + "SourceStructureID": 6115, + "TargetStructureID": 8720, + "Label": "6115-8720 via Ribbon Synapse from 127792 -> 127793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127792, + "TargetID": 127793, + "Directional": true + } + ] + }, + { + "ID": 10775, + "SourceStructureID": 6115, + "TargetStructureID": 15796, + "Label": "6115-15796 via Ribbon Synapse from 72256 -> 147790", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72256, + "TargetID": 147790, + "Directional": true + } + ] + }, + { + "ID": 10776, + "SourceStructureID": 6115, + "TargetStructureID": 16087, + "Label": "6115-16087 via BC Conventional Synapse from 134152 -> 134151", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134152, + "TargetID": 134151, + "Directional": true + } + ] + }, + { + "ID": 10777, + "SourceStructureID": 6115, + "TargetStructureID": 16087, + "Label": "6115-16087 via Ribbon Synapse from 16058 -> 75658, 32979 -> 16090, 59604 -> 73182, 75449 -> 75452, 77672 -> 77697, 90650 -> 77697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16058, + "TargetID": 75658, + "Directional": true + }, + { + "SourceID": 32979, + "TargetID": 16090, + "Directional": true + }, + { + "SourceID": 59604, + "TargetID": 73182, + "Directional": true + }, + { + "SourceID": 75449, + "TargetID": 75452, + "Directional": true + }, + { + "SourceID": 77672, + "TargetID": 77697, + "Directional": true + }, + { + "SourceID": 90650, + "TargetID": 77697, + "Directional": true + } + ] + }, + { + "ID": 10778, + "SourceStructureID": 6115, + "TargetStructureID": 18282, + "Label": "6115-18282 via Ribbon Synapse from 18325 -> 18324, 72708 -> 72709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18325, + "TargetID": 18324, + "Directional": true + }, + { + "SourceID": 72708, + "TargetID": 72709, + "Directional": true + } + ] + }, + { + "ID": 10779, + "SourceStructureID": 6115, + "TargetStructureID": 29702, + "Label": "6115-29702 via Ribbon Synapse from 55849 -> 72495, 72272 -> 72274, 73885 -> 75506, 75502 -> 75501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55849, + "TargetID": 72495, + "Directional": true + }, + { + "SourceID": 72272, + "TargetID": 72274, + "Directional": true + }, + { + "SourceID": 73885, + "TargetID": 75506, + "Directional": true + }, + { + "SourceID": 75502, + "TargetID": 75501, + "Directional": true + } + ] + }, + { + "ID": 10780, + "SourceStructureID": 6115, + "TargetStructureID": 32954, + "Label": "6115-32954 via Ribbon Synapse from 32958 -> 32955", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32958, + "TargetID": 32955, + "Directional": true + } + ] + }, + { + "ID": 10781, + "SourceStructureID": 6115, + "TargetStructureID": 32970, + "Label": "6115-32970 via Ribbon Synapse from 55802 -> 72833, 55855 -> 73189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55802, + "TargetID": 72833, + "Directional": true + }, + { + "SourceID": 55855, + "TargetID": 73189, + "Directional": true + } + ] + }, + { + "ID": 10782, + "SourceStructureID": 6115, + "TargetStructureID": 32970, + "Label": "6115-32970 via Unknown from 72722 -> 72723", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 72722, + "TargetID": 72723, + "Directional": true + } + ] + }, + { + "ID": 10783, + "SourceStructureID": 6115, + "TargetStructureID": 41608, + "Label": "6115-41608 via Ribbon Synapse from 55798 -> 41692, 55799 -> 41691, 55809 -> 72270, 55810 -> 72288, 56310 -> 41752, 72275 -> 72276, 72305 -> 72314, 73360 -> 73361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55798, + "TargetID": 41692, + "Directional": true + }, + { + "SourceID": 55799, + "TargetID": 41691, + "Directional": true + }, + { + "SourceID": 55809, + "TargetID": 72270, + "Directional": true + }, + { + "SourceID": 55810, + "TargetID": 72288, + "Directional": true + }, + { + "SourceID": 56310, + "TargetID": 41752, + "Directional": true + }, + { + "SourceID": 72275, + "TargetID": 72276, + "Directional": true + }, + { + "SourceID": 72305, + "TargetID": 72314, + "Directional": true + }, + { + "SourceID": 73360, + "TargetID": 73361, + "Directional": true + } + ] + }, + { + "ID": 10784, + "SourceStructureID": 6115, + "TargetStructureID": 58696, + "Label": "6115-58696 via Ribbon Synapse from 72653 -> 84770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72653, + "TargetID": 84770, + "Directional": true + } + ] + }, + { + "ID": 10785, + "SourceStructureID": 6115, + "TargetStructureID": 61823, + "Label": "6115-61823 via BC Conventional Synapse from 73859 -> 73860, 73889 -> 73890", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73859, + "TargetID": 73860, + "Directional": true + }, + { + "SourceID": 73889, + "TargetID": 73890, + "Directional": true + } + ] + }, + { + "ID": 10786, + "SourceStructureID": 6115, + "TargetStructureID": 61864, + "Label": "6115-61864 via Ribbon Synapse from 66335 -> 73130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66335, + "TargetID": 73130, + "Directional": true + } + ] + }, + { + "ID": 10787, + "SourceStructureID": 6115, + "TargetStructureID": 64362, + "Label": "6115-64362 via Ribbon Synapse from 134223 -> 134224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134223, + "TargetID": 134224, + "Directional": true + } + ] + }, + { + "ID": 10788, + "SourceStructureID": 6115, + "TargetStructureID": 66407, + "Label": "6115-66407 via Ribbon Synapse from 55799 -> 72795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55799, + "TargetID": 72795, + "Directional": true + } + ] + }, + { + "ID": 10789, + "SourceStructureID": 6115, + "TargetStructureID": 66634, + "Label": "6115-66634 via Ribbon Synapse from 55788 -> 71337, 55909 -> 71333, 73386 -> 73387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55788, + "TargetID": 71337, + "Directional": true + }, + { + "SourceID": 55909, + "TargetID": 71333, + "Directional": true + }, + { + "SourceID": 73386, + "TargetID": 73387, + "Directional": true + } + ] + }, + { + "ID": 10790, + "SourceStructureID": 6115, + "TargetStructureID": 66696, + "Label": "6115-66696 via Ribbon Synapse from 59606 -> 66748, 66751 -> 66750, 75652 -> 75655", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59606, + "TargetID": 66748, + "Directional": true + }, + { + "SourceID": 66751, + "TargetID": 66750, + "Directional": true + }, + { + "SourceID": 75652, + "TargetID": 75655, + "Directional": true + } + ] + }, + { + "ID": 10791, + "SourceStructureID": 6115, + "TargetStructureID": 66768, + "Label": "6115-66768 via Ribbon Synapse from 72653 -> 72655", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72653, + "TargetID": 72655, + "Directional": true + } + ] + }, + { + "ID": 10792, + "SourceStructureID": 6115, + "TargetStructureID": 68153, + "Label": "6115-68153 via Ribbon Synapse from 68187 -> 68186, 73493 -> 73496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68187, + "TargetID": 68186, + "Directional": true + }, + { + "SourceID": 73493, + "TargetID": 73496, + "Directional": true + } + ] + }, + { + "ID": 10793, + "SourceStructureID": 6115, + "TargetStructureID": 68548, + "Label": "6115-68548 via BC Conventional Synapse from 73027 -> 75737", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73027, + "TargetID": 75737, + "Directional": true + } + ] + }, + { + "ID": 10794, + "SourceStructureID": 6115, + "TargetStructureID": 69385, + "Label": "6115-69385 via Ribbon Synapse from 55783 -> 72170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55783, + "TargetID": 72170, + "Directional": true + } + ] + }, + { + "ID": 10795, + "SourceStructureID": 6115, + "TargetStructureID": 69464, + "Label": "6115-69464 via Ribbon Synapse from 55845 -> 69471", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55845, + "TargetID": 69471, + "Directional": true + } + ] + }, + { + "ID": 10796, + "SourceStructureID": 6115, + "TargetStructureID": 69472, + "Label": "6115-69472 via Ribbon Synapse from 59610 -> 69474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59610, + "TargetID": 69474, + "Directional": true + } + ] + }, + { + "ID": 10797, + "SourceStructureID": 6115, + "TargetStructureID": 69493, + "Label": "6115-69493 via Ribbon Synapse from 16049 -> 69495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16049, + "TargetID": 69495, + "Directional": true + } + ] + }, + { + "ID": 10798, + "SourceStructureID": 6115, + "TargetStructureID": 69496, + "Label": "6115-69496 via Ribbon Synapse from 16052 -> 69499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16052, + "TargetID": 69499, + "Directional": true + } + ] + }, + { + "ID": 10799, + "SourceStructureID": 6115, + "TargetStructureID": 69500, + "Label": "6115-69500 via Ribbon Synapse from 55854 -> 69501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55854, + "TargetID": 69501, + "Directional": true + } + ] + }, + { + "ID": 10800, + "SourceStructureID": 6115, + "TargetStructureID": 70308, + "Label": "6115-70308 via Ribbon Synapse from 70311 -> 70312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70311, + "TargetID": 70312, + "Directional": true + } + ] + }, + { + "ID": 10801, + "SourceStructureID": 6115, + "TargetStructureID": 71351, + "Label": "6115-71351 via BC Conventional Synapse from 71899 -> 71900", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71899, + "TargetID": 71900, + "Directional": true + } + ] + }, + { + "ID": 10802, + "SourceStructureID": 6115, + "TargetStructureID": 71351, + "Label": "6115-71351 via Ribbon Synapse from 55754 -> 71673, 55789 -> 71672, 55905 -> 71352, 70410 -> 71898, 135165 -> 135166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55754, + "TargetID": 71673, + "Directional": true + }, + { + "SourceID": 55789, + "TargetID": 71672, + "Directional": true + }, + { + "SourceID": 55905, + "TargetID": 71352, + "Directional": true + }, + { + "SourceID": 70410, + "TargetID": 71898, + "Directional": true + }, + { + "SourceID": 135165, + "TargetID": 135166, + "Directional": true + } + ] + }, + { + "ID": 10803, + "SourceStructureID": 6115, + "TargetStructureID": 71517, + "Label": "6115-71517 via Ribbon Synapse from 55785 -> 71509, 55791 -> 71514, 75002 -> 75003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55785, + "TargetID": 71509, + "Directional": true + }, + { + "SourceID": 55791, + "TargetID": 71514, + "Directional": true + }, + { + "SourceID": 75002, + "TargetID": 75003, + "Directional": true + } + ] + }, + { + "ID": 10804, + "SourceStructureID": 6115, + "TargetStructureID": 72003, + "Label": "6115-72003 via Ribbon Synapse from 55843 -> 75092", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55843, + "TargetID": 75092, + "Directional": true + } + ] + }, + { + "ID": 10805, + "SourceStructureID": 6115, + "TargetStructureID": 72074, + "Label": "6115-72074 via Ribbon Synapse from 37625 -> 72075", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37625, + "TargetID": 72075, + "Directional": true + } + ] + }, + { + "ID": 10806, + "SourceStructureID": 6115, + "TargetStructureID": 72076, + "Label": "6115-72076 via BC Conventional Synapse from 72148 -> 72147", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72148, + "TargetID": 72147, + "Directional": true + } + ] + }, + { + "ID": 10807, + "SourceStructureID": 6115, + "TargetStructureID": 72079, + "Label": "6115-72079 via Ribbon Synapse from 37631 -> 72080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37631, + "TargetID": 72080, + "Directional": true + } + ] + }, + { + "ID": 10808, + "SourceStructureID": 6115, + "TargetStructureID": 72091, + "Label": "6115-72091 via Ribbon Synapse from 55859 -> 72095", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55859, + "TargetID": 72095, + "Directional": true + } + ] + }, + { + "ID": 10809, + "SourceStructureID": 6115, + "TargetStructureID": 72092, + "Label": "6115-72092 via Ribbon Synapse from 55859 -> 72145, 72090 -> 72145", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55859, + "TargetID": 72145, + "Directional": true + }, + { + "SourceID": 72090, + "TargetID": 72145, + "Directional": true + } + ] + }, + { + "ID": 10810, + "SourceStructureID": 6115, + "TargetStructureID": 72093, + "Label": "6115-72093 via Ribbon Synapse from 55858 -> 72094, 72158 -> 72094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55858, + "TargetID": 72094, + "Directional": true + }, + { + "SourceID": 72158, + "TargetID": 72094, + "Directional": true + } + ] + }, + { + "ID": 10811, + "SourceStructureID": 6115, + "TargetStructureID": 72142, + "Label": "6115-72142 via Ribbon Synapse from 37635 -> 72143", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37635, + "TargetID": 72143, + "Directional": true + } + ] + }, + { + "ID": 10812, + "SourceStructureID": 6115, + "TargetStructureID": 72152, + "Label": "6115-72152 via Ribbon Synapse from 37631 -> 72153", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37631, + "TargetID": 72153, + "Directional": true + } + ] + }, + { + "ID": 10813, + "SourceStructureID": 6115, + "TargetStructureID": 72159, + "Label": "6115-72159 via Ribbon Synapse from 37635 -> 72160", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37635, + "TargetID": 72160, + "Directional": true + } + ] + }, + { + "ID": 10814, + "SourceStructureID": 6115, + "TargetStructureID": 72162, + "Label": "6115-72162 via Unknown from 72236 -> 72235", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 72236, + "TargetID": 72235, + "Directional": true + } + ] + }, + { + "ID": 10815, + "SourceStructureID": 6115, + "TargetStructureID": 72166, + "Label": "6115-72166 via Ribbon Synapse from 134156 -> 134157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134156, + "TargetID": 134157, + "Directional": true + } + ] + }, + { + "ID": 10816, + "SourceStructureID": 6115, + "TargetStructureID": 72168, + "Label": "6115-72168 via BC Conventional Synapse from 72241 -> 72239", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72241, + "TargetID": 72239, + "Directional": true + } + ] + }, + { + "ID": 10817, + "SourceStructureID": 6115, + "TargetStructureID": 72173, + "Label": "6115-72173 via Ribbon Synapse from 72244 -> 82709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72244, + "TargetID": 82709, + "Directional": true + } + ] + }, + { + "ID": 10818, + "SourceStructureID": 6115, + "TargetStructureID": 72176, + "Label": "6115-72176 via Ribbon Synapse from 72244 -> 72249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72244, + "TargetID": 72249, + "Directional": true + } + ] + }, + { + "ID": 10819, + "SourceStructureID": 6115, + "TargetStructureID": 72186, + "Label": "6115-72186 via Ribbon Synapse from 20424 -> 72187, 72196 -> 72194", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20424, + "TargetID": 72187, + "Directional": true + }, + { + "SourceID": 72196, + "TargetID": 72194, + "Directional": true + } + ] + }, + { + "ID": 10820, + "SourceStructureID": 6115, + "TargetStructureID": 72218, + "Label": "6115-72218 via Ribbon Synapse from 55807 -> 72232, 80749 -> 80750", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55807, + "TargetID": 72232, + "Directional": true + }, + { + "SourceID": 80749, + "TargetID": 80750, + "Directional": true + } + ] + }, + { + "ID": 10821, + "SourceStructureID": 6115, + "TargetStructureID": 72233, + "Label": "6115-72233 via Ribbon Synapse from 55807 -> 72234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55807, + "TargetID": 72234, + "Directional": true + } + ] + }, + { + "ID": 10822, + "SourceStructureID": 6115, + "TargetStructureID": 72259, + "Label": "6115-72259 via BC Conventional Synapse from 72263 -> 72264", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72263, + "TargetID": 72264, + "Directional": true + } + ] + }, + { + "ID": 10823, + "SourceStructureID": 6115, + "TargetStructureID": 72285, + "Label": "6115-72285 via Ribbon Synapse from 72284 -> 72286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72284, + "TargetID": 72286, + "Directional": true + } + ] + }, + { + "ID": 10824, + "SourceStructureID": 6115, + "TargetStructureID": 72287, + "Label": "6115-72287 via Ribbon Synapse from 55810 -> 72289, 134160 -> 134161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55810, + "TargetID": 72289, + "Directional": true + }, + { + "SourceID": 134160, + "TargetID": 134161, + "Directional": true + } + ] + }, + { + "ID": 10825, + "SourceStructureID": 6115, + "TargetStructureID": 72296, + "Label": "6115-72296 via BC Conventional Synapse from 72295 -> 72297", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72295, + "TargetID": 72297, + "Directional": true + } + ] + }, + { + "ID": 10826, + "SourceStructureID": 6115, + "TargetStructureID": 72309, + "Label": "6115-72309 via Ribbon Synapse from 72305 -> 81347", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72305, + "TargetID": 81347, + "Directional": true + } + ] + }, + { + "ID": 10827, + "SourceStructureID": 6115, + "TargetStructureID": 72320, + "Label": "6115-72320 via BC Conventional Synapse from 134166 -> 134165", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134166, + "TargetID": 134165, + "Directional": true + } + ] + }, + { + "ID": 10828, + "SourceStructureID": 6115, + "TargetStructureID": 72329, + "Label": "6115-72329 via Ribbon Synapse from 55812 -> 72330", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55812, + "TargetID": 72330, + "Directional": true + } + ] + }, + { + "ID": 10829, + "SourceStructureID": 6115, + "TargetStructureID": 72331, + "Label": "6115-72331 via Ribbon Synapse from 55812 -> 72332", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55812, + "TargetID": 72332, + "Directional": true + } + ] + }, + { + "ID": 10830, + "SourceStructureID": 6115, + "TargetStructureID": 72401, + "Label": "6115-72401 via Ribbon Synapse from 55854 -> 72415", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55854, + "TargetID": 72415, + "Directional": true + } + ] + }, + { + "ID": 10831, + "SourceStructureID": 6115, + "TargetStructureID": 72449, + "Label": "6115-72449 via BC Conventional Synapse from 72448 -> 72450", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72448, + "TargetID": 72450, + "Directional": true + } + ] + }, + { + "ID": 10832, + "SourceStructureID": 6115, + "TargetStructureID": 72458, + "Label": "6115-72458 via Ribbon Synapse from 55855 -> 72459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55855, + "TargetID": 72459, + "Directional": true + } + ] + }, + { + "ID": 10833, + "SourceStructureID": 6115, + "TargetStructureID": 72460, + "Label": "6115-72460 via Ribbon Synapse from 72462 -> 73188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72462, + "TargetID": 73188, + "Directional": true + } + ] + }, + { + "ID": 10834, + "SourceStructureID": 6115, + "TargetStructureID": 72492, + "Label": "6115-72492 via Ribbon Synapse from 55849 -> 72493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55849, + "TargetID": 72493, + "Directional": true + } + ] + }, + { + "ID": 10835, + "SourceStructureID": 6115, + "TargetStructureID": 72515, + "Label": "6115-72515 via BC Conventional Synapse from 72514 -> 72516", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72514, + "TargetID": 72516, + "Directional": true + } + ] + }, + { + "ID": 10836, + "SourceStructureID": 6115, + "TargetStructureID": 72526, + "Label": "6115-72526 via Ribbon Synapse from 72525 -> 72531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72525, + "TargetID": 72531, + "Directional": true + } + ] + }, + { + "ID": 10837, + "SourceStructureID": 6115, + "TargetStructureID": 72529, + "Label": "6115-72529 via Ribbon Synapse from 72525 -> 72530", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72525, + "TargetID": 72530, + "Directional": true + } + ] + }, + { + "ID": 10838, + "SourceStructureID": 6115, + "TargetStructureID": 72545, + "Label": "6115-72545 via Ribbon Synapse from 59597 -> 72546", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59597, + "TargetID": 72546, + "Directional": true + } + ] + }, + { + "ID": 10839, + "SourceStructureID": 6115, + "TargetStructureID": 72559, + "Label": "6115-72559 via Ribbon Synapse from 59596 -> 72561", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59596, + "TargetID": 72561, + "Directional": true + } + ] + }, + { + "ID": 10840, + "SourceStructureID": 6115, + "TargetStructureID": 72566, + "Label": "6115-72566 via BC Conventional Synapse from 72568 -> 72567", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72568, + "TargetID": 72567, + "Directional": true + } + ] + }, + { + "ID": 10841, + "SourceStructureID": 6115, + "TargetStructureID": 72589, + "Label": "6115-72589 via BC Conventional Synapse from 72590 -> 72591", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72590, + "TargetID": 72591, + "Directional": true + } + ] + }, + { + "ID": 10842, + "SourceStructureID": 6115, + "TargetStructureID": 72594, + "Label": "6115-72594 via Ribbon Synapse from 55848 -> 72595", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55848, + "TargetID": 72595, + "Directional": true + } + ] + }, + { + "ID": 10843, + "SourceStructureID": 6115, + "TargetStructureID": 72604, + "Label": "6115-72604 via BC Conventional Synapse from 72632 -> 82408, 72671 -> 72672, 75661 -> 75662", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72632, + "TargetID": 82408, + "Directional": true + }, + { + "SourceID": 72671, + "TargetID": 72672, + "Directional": true + }, + { + "SourceID": 75661, + "TargetID": 75662, + "Directional": true + } + ] + }, + { + "ID": 10844, + "SourceStructureID": 6115, + "TargetStructureID": 72606, + "Label": "6115-72606 via BC Conventional Synapse from 72632 -> 82409", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72632, + "TargetID": 82409, + "Directional": true + } + ] + }, + { + "ID": 10845, + "SourceStructureID": 6115, + "TargetStructureID": 72606, + "Label": "6115-72606 via Ribbon Synapse from 82423 -> 82409", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82423, + "TargetID": 82409, + "Directional": true + } + ] + }, + { + "ID": 10846, + "SourceStructureID": 6115, + "TargetStructureID": 72612, + "Label": "6115-72612 via BC Conventional Synapse from 73261 -> 73260", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73261, + "TargetID": 73260, + "Directional": true + } + ] + }, + { + "ID": 10847, + "SourceStructureID": 6115, + "TargetStructureID": 72638, + "Label": "6115-72638 via Ribbon Synapse from 59606 -> 72639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59606, + "TargetID": 72639, + "Directional": true + } + ] + }, + { + "ID": 10848, + "SourceStructureID": 6115, + "TargetStructureID": 72643, + "Label": "6115-72643 via Ribbon Synapse from 59604 -> 73181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59604, + "TargetID": 73181, + "Directional": true + } + ] + }, + { + "ID": 10849, + "SourceStructureID": 6115, + "TargetStructureID": 72647, + "Label": "6115-72647 via BC Conventional Synapse from 72646 -> 72648", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72646, + "TargetID": 72648, + "Directional": true + } + ] + }, + { + "ID": 10850, + "SourceStructureID": 6115, + "TargetStructureID": 72650, + "Label": "6115-72650 via Ribbon Synapse from 72653 -> 78315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72653, + "TargetID": 78315, + "Directional": true + } + ] + }, + { + "ID": 10851, + "SourceStructureID": 6115, + "TargetStructureID": 72658, + "Label": "6115-72658 via Ribbon Synapse from 59610 -> 72661", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59610, + "TargetID": 72661, + "Directional": true + } + ] + }, + { + "ID": 10852, + "SourceStructureID": 6115, + "TargetStructureID": 72681, + "Label": "6115-72681 via Ribbon Synapse from 32979 -> 72682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32979, + "TargetID": 72682, + "Directional": true + } + ] + }, + { + "ID": 10853, + "SourceStructureID": 6115, + "TargetStructureID": 72694, + "Label": "6115-72694 via Ribbon Synapse from 72693 -> 72695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72693, + "TargetID": 72695, + "Directional": true + } + ] + }, + { + "ID": 10854, + "SourceStructureID": 6115, + "TargetStructureID": 72716, + "Label": "6115-72716 via Ribbon Synapse from 55813 -> 72717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55813, + "TargetID": 72717, + "Directional": true + } + ] + }, + { + "ID": 10855, + "SourceStructureID": 6115, + "TargetStructureID": 72718, + "Label": "6115-72718 via Ribbon Synapse from 55813 -> 72719", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55813, + "TargetID": 72719, + "Directional": true + } + ] + }, + { + "ID": 10856, + "SourceStructureID": 6115, + "TargetStructureID": 72724, + "Label": "6115-72724 via BC Conventional Synapse from 72725 -> 72726", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72725, + "TargetID": 72726, + "Directional": true + } + ] + }, + { + "ID": 10857, + "SourceStructureID": 6115, + "TargetStructureID": 72728, + "Label": "6115-72728 via BC Conventional Synapse from 72745 -> 72746", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72745, + "TargetID": 72746, + "Directional": true + } + ] + }, + { + "ID": 10858, + "SourceStructureID": 6115, + "TargetStructureID": 72730, + "Label": "6115-72730 via Ribbon Synapse from 55796 -> 72755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55796, + "TargetID": 72755, + "Directional": true + } + ] + }, + { + "ID": 10859, + "SourceStructureID": 6115, + "TargetStructureID": 72731, + "Label": "6115-72731 via Ribbon Synapse from 55796 -> 72732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55796, + "TargetID": 72732, + "Directional": true + } + ] + }, + { + "ID": 10860, + "SourceStructureID": 6115, + "TargetStructureID": 72735, + "Label": "6115-72735 via Ribbon Synapse from 55795 -> 72736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55795, + "TargetID": 72736, + "Directional": true + } + ] + }, + { + "ID": 10861, + "SourceStructureID": 6115, + "TargetStructureID": 72737, + "Label": "6115-72737 via Ribbon Synapse from 55795 -> 72738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55795, + "TargetID": 72738, + "Directional": true + } + ] + }, + { + "ID": 10862, + "SourceStructureID": 6115, + "TargetStructureID": 72742, + "Label": "6115-72742 via BC Conventional Synapse from 72741 -> 72743", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72741, + "TargetID": 72743, + "Directional": true + } + ] + }, + { + "ID": 10863, + "SourceStructureID": 6115, + "TargetStructureID": 72754, + "Label": "6115-72754 via BC Conventional Synapse from 82711 -> 82710", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82711, + "TargetID": 82710, + "Directional": true + } + ] + }, + { + "ID": 10864, + "SourceStructureID": 6115, + "TargetStructureID": 72772, + "Label": "6115-72772 via Ribbon Synapse from 72771 -> 72774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72771, + "TargetID": 72774, + "Directional": true + } + ] + }, + { + "ID": 10865, + "SourceStructureID": 6115, + "TargetStructureID": 72773, + "Label": "6115-72773 via Ribbon Synapse from 72771 -> 72775", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72771, + "TargetID": 72775, + "Directional": true + } + ] + }, + { + "ID": 10866, + "SourceStructureID": 6115, + "TargetStructureID": 72787, + "Label": "6115-72787 via Ribbon Synapse from 55798 -> 81164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55798, + "TargetID": 81164, + "Directional": true + } + ] + }, + { + "ID": 10867, + "SourceStructureID": 6115, + "TargetStructureID": 72792, + "Label": "6115-72792 via BC Conventional Synapse from 72794 -> 72793", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72794, + "TargetID": 72793, + "Directional": true + } + ] + }, + { + "ID": 10868, + "SourceStructureID": 6115, + "TargetStructureID": 72796, + "Label": "6115-72796 via Ribbon Synapse from 55799 -> 72797", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55799, + "TargetID": 72797, + "Directional": true + } + ] + }, + { + "ID": 10869, + "SourceStructureID": 6115, + "TargetStructureID": 72826, + "Label": "6115-72826 via Ribbon Synapse from 55803 -> 72827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55803, + "TargetID": 72827, + "Directional": true + } + ] + }, + { + "ID": 10870, + "SourceStructureID": 6115, + "TargetStructureID": 72829, + "Label": "6115-72829 via Ribbon Synapse from 73264 -> 72830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73264, + "TargetID": 72830, + "Directional": true + } + ] + }, + { + "ID": 10871, + "SourceStructureID": 6115, + "TargetStructureID": 72831, + "Label": "6115-72831 via Ribbon Synapse from 55802 -> 72832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55802, + "TargetID": 72832, + "Directional": true + } + ] + }, + { + "ID": 10872, + "SourceStructureID": 6115, + "TargetStructureID": 72841, + "Label": "6115-72841 via Ribbon Synapse from 72842 -> 72843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72842, + "TargetID": 72843, + "Directional": true + } + ] + }, + { + "ID": 10873, + "SourceStructureID": 6115, + "TargetStructureID": 72901, + "Label": "6115-72901 via Ribbon Synapse from 72903 -> 72902", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72903, + "TargetID": 72902, + "Directional": true + } + ] + }, + { + "ID": 10874, + "SourceStructureID": 6115, + "TargetStructureID": 72905, + "Label": "6115-72905 via Ribbon Synapse from 72904 -> 72906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72904, + "TargetID": 72906, + "Directional": true + } + ] + }, + { + "ID": 10875, + "SourceStructureID": 6115, + "TargetStructureID": 72923, + "Label": "6115-72923 via Unknown from 72924 -> 72925", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 72924, + "TargetID": 72925, + "Directional": true + } + ] + }, + { + "ID": 10876, + "SourceStructureID": 6115, + "TargetStructureID": 72936, + "Label": "6115-72936 via Unknown from 72946 -> 72947", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 72946, + "TargetID": 72947, + "Directional": true + } + ] + }, + { + "ID": 10877, + "SourceStructureID": 6115, + "TargetStructureID": 72939, + "Label": "6115-72939 via Ribbon Synapse from 55865 -> 72948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55865, + "TargetID": 72948, + "Directional": true + } + ] + }, + { + "ID": 10878, + "SourceStructureID": 6115, + "TargetStructureID": 72941, + "Label": "6115-72941 via Ribbon Synapse from 73138 -> 81890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73138, + "TargetID": 81890, + "Directional": true + } + ] + }, + { + "ID": 10879, + "SourceStructureID": 6115, + "TargetStructureID": 72952, + "Label": "6115-72952 via BC Conventional Synapse from 72953 -> 72954", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72953, + "TargetID": 72954, + "Directional": true + } + ] + }, + { + "ID": 10880, + "SourceStructureID": 6115, + "TargetStructureID": 72955, + "Label": "6115-72955 via Ribbon Synapse from 55865 -> 72956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55865, + "TargetID": 72956, + "Directional": true + } + ] + }, + { + "ID": 10881, + "SourceStructureID": 6115, + "TargetStructureID": 72957, + "Label": "6115-72957 via Ribbon Synapse from 55915 -> 72958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55915, + "TargetID": 72958, + "Directional": true + } + ] + }, + { + "ID": 10882, + "SourceStructureID": 6115, + "TargetStructureID": 72959, + "Label": "6115-72959 via Ribbon Synapse from 72960 -> 72961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72960, + "TargetID": 72961, + "Directional": true + } + ] + }, + { + "ID": 10883, + "SourceStructureID": 6115, + "TargetStructureID": 72975, + "Label": "6115-72975 via Ribbon Synapse from 55783 -> 74290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55783, + "TargetID": 74290, + "Directional": true + } + ] + }, + { + "ID": 10884, + "SourceStructureID": 6115, + "TargetStructureID": 72987, + "Label": "6115-72987 via Ribbon Synapse from 55902 -> 75994, 55902 -> 81352, 55911 -> 73015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55902, + "TargetID": 75994, + "Directional": true + }, + { + "SourceID": 55902, + "TargetID": 81352, + "Directional": true + }, + { + "SourceID": 55911, + "TargetID": 73015, + "Directional": true + } + ] + }, + { + "ID": 10885, + "SourceStructureID": 6115, + "TargetStructureID": 73004, + "Label": "6115-73004 via Ribbon Synapse from 55910 -> 73005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55910, + "TargetID": 73005, + "Directional": true + } + ] + }, + { + "ID": 10886, + "SourceStructureID": 6115, + "TargetStructureID": 73007, + "Label": "6115-73007 via Ribbon Synapse from 55909 -> 73008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55909, + "TargetID": 73008, + "Directional": true + } + ] + }, + { + "ID": 10887, + "SourceStructureID": 6115, + "TargetStructureID": 73021, + "Label": "6115-73021 via Ribbon Synapse from 55898 -> 73022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55898, + "TargetID": 73022, + "Directional": true + } + ] + }, + { + "ID": 10888, + "SourceStructureID": 6115, + "TargetStructureID": 73023, + "Label": "6115-73023 via Ribbon Synapse from 55898 -> 73024", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55898, + "TargetID": 73024, + "Directional": true + } + ] + }, + { + "ID": 10889, + "SourceStructureID": 6115, + "TargetStructureID": 73030, + "Label": "6115-73030 via Unknown from 73031 -> 73032", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 73031, + "TargetID": 73032, + "Directional": true + } + ] + }, + { + "ID": 10890, + "SourceStructureID": 6115, + "TargetStructureID": 73037, + "Label": "6115-73037 via Unknown from 73036 -> 73038", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 73036, + "TargetID": 73038, + "Directional": true + } + ] + }, + { + "ID": 10891, + "SourceStructureID": 6115, + "TargetStructureID": 73043, + "Label": "6115-73043 via BC Conventional Synapse from 73044 -> 73045", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73044, + "TargetID": 73045, + "Directional": true + } + ] + }, + { + "ID": 10892, + "SourceStructureID": 6115, + "TargetStructureID": 73051, + "Label": "6115-73051 via Unknown from 73052 -> 73053", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 73052, + "TargetID": 73053, + "Directional": true + } + ] + }, + { + "ID": 10893, + "SourceStructureID": 6115, + "TargetStructureID": 73067, + "Label": "6115-73067 via Ribbon Synapse from 73064 -> 73068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73064, + "TargetID": 73068, + "Directional": true + } + ] + }, + { + "ID": 10894, + "SourceStructureID": 6115, + "TargetStructureID": 73094, + "Label": "6115-73094 via Ribbon Synapse from 73093 -> 73095", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73093, + "TargetID": 73095, + "Directional": true + } + ] + }, + { + "ID": 10895, + "SourceStructureID": 6115, + "TargetStructureID": 73110, + "Label": "6115-73110 via Ribbon Synapse from 73109 -> 73111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73109, + "TargetID": 73111, + "Directional": true + } + ] + }, + { + "ID": 10896, + "SourceStructureID": 6115, + "TargetStructureID": 73118, + "Label": "6115-73118 via Ribbon Synapse from 73117 -> 73119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73117, + "TargetID": 73119, + "Directional": true + } + ] + }, + { + "ID": 10897, + "SourceStructureID": 6115, + "TargetStructureID": 73124, + "Label": "6115-73124 via BC Conventional Synapse from 73125 -> 73126", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73125, + "TargetID": 73126, + "Directional": true + } + ] + }, + { + "ID": 10898, + "SourceStructureID": 6115, + "TargetStructureID": 73144, + "Label": "6115-73144 via Ribbon Synapse from 55916 -> 73145, 73156 -> 73203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55916, + "TargetID": 73145, + "Directional": true + }, + { + "SourceID": 73156, + "TargetID": 73203, + "Directional": true + } + ] + }, + { + "ID": 10899, + "SourceStructureID": 6115, + "TargetStructureID": 73204, + "Label": "6115-73204 via Ribbon Synapse from 73156 -> 73205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73156, + "TargetID": 73205, + "Directional": true + } + ] + }, + { + "ID": 10900, + "SourceStructureID": 6115, + "TargetStructureID": 73219, + "Label": "6115-73219 via Ribbon Synapse from 73218 -> 73220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73218, + "TargetID": 73220, + "Directional": true + } + ] + }, + { + "ID": 10901, + "SourceStructureID": 6115, + "TargetStructureID": 73225, + "Label": "6115-73225 via Ribbon Synapse from 72327 -> 73228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72327, + "TargetID": 73228, + "Directional": true + } + ] + }, + { + "ID": 10902, + "SourceStructureID": 6115, + "TargetStructureID": 73229, + "Label": "6115-73229 via Ribbon Synapse from 72327 -> 73230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72327, + "TargetID": 73230, + "Directional": true + } + ] + }, + { + "ID": 10903, + "SourceStructureID": 6115, + "TargetStructureID": 73250, + "Label": "6115-73250 via Ribbon Synapse from 73249 -> 73251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73249, + "TargetID": 73251, + "Directional": true + } + ] + }, + { + "ID": 10904, + "SourceStructureID": 6115, + "TargetStructureID": 73252, + "Label": "6115-73252 via Ribbon Synapse from 55810 -> 73253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55810, + "TargetID": 73253, + "Directional": true + } + ] + }, + { + "ID": 10905, + "SourceStructureID": 6115, + "TargetStructureID": 73273, + "Label": "6115-73273 via Ribbon Synapse from 73215 -> 82676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73215, + "TargetID": 82676, + "Directional": true + } + ] + }, + { + "ID": 10906, + "SourceStructureID": 6115, + "TargetStructureID": 73275, + "Label": "6115-73275 via Ribbon Synapse from 73272 -> 73278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73272, + "TargetID": 73278, + "Directional": true + } + ] + }, + { + "ID": 10907, + "SourceStructureID": 6115, + "TargetStructureID": 73276, + "Label": "6115-73276 via Ribbon Synapse from 73272 -> 73277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73272, + "TargetID": 73277, + "Directional": true + } + ] + }, + { + "ID": 10908, + "SourceStructureID": 6115, + "TargetStructureID": 73301, + "Label": "6115-73301 via Ribbon Synapse from 55881 -> 73302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55881, + "TargetID": 73302, + "Directional": true + } + ] + }, + { + "ID": 10909, + "SourceStructureID": 6115, + "TargetStructureID": 73303, + "Label": "6115-73303 via Ribbon Synapse from 55882 -> 73306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55882, + "TargetID": 73306, + "Directional": true + } + ] + }, + { + "ID": 10910, + "SourceStructureID": 6115, + "TargetStructureID": 73304, + "Label": "6115-73304 via Ribbon Synapse from 55882 -> 73305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55882, + "TargetID": 73305, + "Directional": true + } + ] + }, + { + "ID": 10911, + "SourceStructureID": 6115, + "TargetStructureID": 73313, + "Label": "6115-73313 via BC Conventional Synapse from 73312 -> 73317", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73312, + "TargetID": 73317, + "Directional": true + } + ] + }, + { + "ID": 10912, + "SourceStructureID": 6115, + "TargetStructureID": 73323, + "Label": "6115-73323 via Ribbon Synapse from 55883 -> 73329", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55883, + "TargetID": 73329, + "Directional": true + } + ] + }, + { + "ID": 10913, + "SourceStructureID": 6115, + "TargetStructureID": 73324, + "Label": "6115-73324 via Ribbon Synapse from 55883 -> 73328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55883, + "TargetID": 73328, + "Directional": true + } + ] + }, + { + "ID": 10914, + "SourceStructureID": 6115, + "TargetStructureID": 73332, + "Label": "6115-73332 via Ribbon Synapse from 55884 -> 73333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55884, + "TargetID": 73333, + "Directional": true + } + ] + }, + { + "ID": 10915, + "SourceStructureID": 6115, + "TargetStructureID": 73335, + "Label": "6115-73335 via Ribbon Synapse from 73334 -> 73336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73334, + "TargetID": 73336, + "Directional": true + } + ] + }, + { + "ID": 10916, + "SourceStructureID": 6115, + "TargetStructureID": 73399, + "Label": "6115-73399 via BC Conventional Synapse from 73396 -> 73400", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73396, + "TargetID": 73400, + "Directional": true + } + ] + }, + { + "ID": 10917, + "SourceStructureID": 6115, + "TargetStructureID": 73426, + "Label": "6115-73426 via Ribbon Synapse from 73425 -> 73427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73425, + "TargetID": 73427, + "Directional": true + } + ] + }, + { + "ID": 10918, + "SourceStructureID": 6115, + "TargetStructureID": 73428, + "Label": "6115-73428 via Ribbon Synapse from 73425 -> 73429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73425, + "TargetID": 73429, + "Directional": true + } + ] + }, + { + "ID": 10919, + "SourceStructureID": 6115, + "TargetStructureID": 73436, + "Label": "6115-73436 via Unknown from 73437 -> 73438", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 73437, + "TargetID": 73438, + "Directional": true + } + ] + }, + { + "ID": 10920, + "SourceStructureID": 6115, + "TargetStructureID": 73448, + "Label": "6115-73448 via Ribbon Synapse from 73447 -> 73449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73447, + "TargetID": 73449, + "Directional": true + } + ] + }, + { + "ID": 10921, + "SourceStructureID": 6115, + "TargetStructureID": 73472, + "Label": "6115-73472 via BC Conventional Synapse from 73474 -> 73473", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73474, + "TargetID": 73473, + "Directional": true + } + ] + }, + { + "ID": 10922, + "SourceStructureID": 6115, + "TargetStructureID": 73494, + "Label": "6115-73494 via Ribbon Synapse from 73493 -> 73495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73493, + "TargetID": 73495, + "Directional": true + } + ] + }, + { + "ID": 10923, + "SourceStructureID": 6115, + "TargetStructureID": 73509, + "Label": "6115-73509 via BC Conventional Synapse from 73510 -> 73511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73510, + "TargetID": 73511, + "Directional": true + } + ] + }, + { + "ID": 10924, + "SourceStructureID": 6115, + "TargetStructureID": 73540, + "Label": "6115-73540 via Ribbon Synapse from 73539 -> 73541", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73539, + "TargetID": 73541, + "Directional": true + } + ] + }, + { + "ID": 10925, + "SourceStructureID": 6115, + "TargetStructureID": 73542, + "Label": "6115-73542 via Ribbon Synapse from 73539 -> 73543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73539, + "TargetID": 73543, + "Directional": true + } + ] + }, + { + "ID": 10926, + "SourceStructureID": 6115, + "TargetStructureID": 73565, + "Label": "6115-73565 via Ribbon Synapse from 74174 -> 74178", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74174, + "TargetID": 74178, + "Directional": true + } + ] + }, + { + "ID": 10927, + "SourceStructureID": 6115, + "TargetStructureID": 73784, + "Label": "6115-73784 via BC Conventional Synapse from 73785 -> 73786", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73785, + "TargetID": 73786, + "Directional": true + } + ] + }, + { + "ID": 10928, + "SourceStructureID": 6115, + "TargetStructureID": 73792, + "Label": "6115-73792 via Ribbon Synapse from 73787 -> 73794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73787, + "TargetID": 73794, + "Directional": true + } + ] + }, + { + "ID": 10929, + "SourceStructureID": 6115, + "TargetStructureID": 73793, + "Label": "6115-73793 via Ribbon Synapse from 73787 -> 73795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73787, + "TargetID": 73795, + "Directional": true + } + ] + }, + { + "ID": 10930, + "SourceStructureID": 6115, + "TargetStructureID": 73796, + "Label": "6115-73796 via Ribbon Synapse from 73788 -> 73797", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73788, + "TargetID": 73797, + "Directional": true + } + ] + }, + { + "ID": 10931, + "SourceStructureID": 6115, + "TargetStructureID": 73821, + "Label": "6115-73821 via Ribbon Synapse from 32958 -> 73835", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32958, + "TargetID": 73835, + "Directional": true + } + ] + }, + { + "ID": 10932, + "SourceStructureID": 6115, + "TargetStructureID": 73838, + "Label": "6115-73838 via BC Conventional Synapse from 78311 -> 78312", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78311, + "TargetID": 78312, + "Directional": true + } + ] + }, + { + "ID": 10933, + "SourceStructureID": 6115, + "TargetStructureID": 73846, + "Label": "6115-73846 via Ribbon Synapse from 73851 -> 73852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73851, + "TargetID": 73852, + "Directional": true + } + ] + }, + { + "ID": 10934, + "SourceStructureID": 6115, + "TargetStructureID": 73853, + "Label": "6115-73853 via Ribbon Synapse from 73851 -> 73854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73851, + "TargetID": 73854, + "Directional": true + } + ] + }, + { + "ID": 10935, + "SourceStructureID": 6115, + "TargetStructureID": 73884, + "Label": "6115-73884 via Ribbon Synapse from 73885 -> 73888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73885, + "TargetID": 73888, + "Directional": true + } + ] + }, + { + "ID": 10936, + "SourceStructureID": 6115, + "TargetStructureID": 73891, + "Label": "6115-73891 via Ribbon Synapse from 73894 -> 73895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73894, + "TargetID": 73895, + "Directional": true + } + ] + }, + { + "ID": 10937, + "SourceStructureID": 6115, + "TargetStructureID": 73896, + "Label": "6115-73896 via Ribbon Synapse from 73894 -> 73897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73894, + "TargetID": 73897, + "Directional": true + } + ] + }, + { + "ID": 10938, + "SourceStructureID": 6115, + "TargetStructureID": 73909, + "Label": "6115-73909 via BC Conventional Synapse from 134232 -> 134233", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134232, + "TargetID": 134233, + "Directional": true + } + ] + }, + { + "ID": 10939, + "SourceStructureID": 6115, + "TargetStructureID": 73916, + "Label": "6115-73916 via Ribbon Synapse from 73915 -> 73917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73915, + "TargetID": 73917, + "Directional": true + } + ] + }, + { + "ID": 10940, + "SourceStructureID": 6115, + "TargetStructureID": 73926, + "Label": "6115-73926 via Ribbon Synapse from 73929 -> 73931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73929, + "TargetID": 73931, + "Directional": true + } + ] + }, + { + "ID": 10941, + "SourceStructureID": 6115, + "TargetStructureID": 73928, + "Label": "6115-73928 via Ribbon Synapse from 73929 -> 73930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73929, + "TargetID": 73930, + "Directional": true + } + ] + }, + { + "ID": 10942, + "SourceStructureID": 6115, + "TargetStructureID": 73965, + "Label": "6115-73965 via Ribbon Synapse from 56311 -> 73966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56311, + "TargetID": 73966, + "Directional": true + } + ] + }, + { + "ID": 10943, + "SourceStructureID": 6115, + "TargetStructureID": 73967, + "Label": "6115-73967 via Ribbon Synapse from 56311 -> 73969, 56312 -> 73972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56311, + "TargetID": 73969, + "Directional": true + }, + { + "SourceID": 56312, + "TargetID": 73972, + "Directional": true + } + ] + }, + { + "ID": 10944, + "SourceStructureID": 6115, + "TargetStructureID": 73970, + "Label": "6115-73970 via Ribbon Synapse from 56312 -> 73971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56312, + "TargetID": 73971, + "Directional": true + } + ] + }, + { + "ID": 10945, + "SourceStructureID": 6115, + "TargetStructureID": 73977, + "Label": "6115-73977 via BC Conventional Synapse from 73976 -> 73978", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73976, + "TargetID": 73978, + "Directional": true + } + ] + }, + { + "ID": 10946, + "SourceStructureID": 6115, + "TargetStructureID": 73979, + "Label": "6115-73979 via Ribbon Synapse from 74000 -> 74001", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74000, + "TargetID": 74001, + "Directional": true + } + ] + }, + { + "ID": 10947, + "SourceStructureID": 6115, + "TargetStructureID": 74002, + "Label": "6115-74002 via Ribbon Synapse from 74000 -> 74003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74000, + "TargetID": 74003, + "Directional": true + } + ] + }, + { + "ID": 10948, + "SourceStructureID": 6115, + "TargetStructureID": 74004, + "Label": "6115-74004 via Ribbon Synapse from 74000 -> 74005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74000, + "TargetID": 74005, + "Directional": true + } + ] + }, + { + "ID": 10949, + "SourceStructureID": 6115, + "TargetStructureID": 74026, + "Label": "6115-74026 via Ribbon Synapse from 74025 -> 74031", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74025, + "TargetID": 74031, + "Directional": true + } + ] + }, + { + "ID": 10950, + "SourceStructureID": 6115, + "TargetStructureID": 74028, + "Label": "6115-74028 via Ribbon Synapse from 74025 -> 74032", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74025, + "TargetID": 74032, + "Directional": true + } + ] + }, + { + "ID": 10951, + "SourceStructureID": 6115, + "TargetStructureID": 74029, + "Label": "6115-74029 via Ribbon Synapse from 74025 -> 74030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74025, + "TargetID": 74030, + "Directional": true + } + ] + }, + { + "ID": 10952, + "SourceStructureID": 6115, + "TargetStructureID": 74045, + "Label": "6115-74045 via Ribbon Synapse from 74060 -> 74062", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74060, + "TargetID": 74062, + "Directional": true + } + ] + }, + { + "ID": 10953, + "SourceStructureID": 6115, + "TargetStructureID": 74046, + "Label": "6115-74046 via Ribbon Synapse from 74060 -> 74061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74060, + "TargetID": 74061, + "Directional": true + } + ] + }, + { + "ID": 10954, + "SourceStructureID": 6115, + "TargetStructureID": 74067, + "Label": "6115-74067 via Ribbon Synapse from 74063 -> 74068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74063, + "TargetID": 74068, + "Directional": true + } + ] + }, + { + "ID": 10955, + "SourceStructureID": 6115, + "TargetStructureID": 74073, + "Label": "6115-74073 via Unknown from 74071 -> 74074", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 74071, + "TargetID": 74074, + "Directional": true + } + ] + }, + { + "ID": 10956, + "SourceStructureID": 6115, + "TargetStructureID": 74075, + "Label": "6115-74075 via Ribbon Synapse from 56315 -> 74076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56315, + "TargetID": 74076, + "Directional": true + } + ] + }, + { + "ID": 10957, + "SourceStructureID": 6115, + "TargetStructureID": 74077, + "Label": "6115-74077 via Ribbon Synapse from 56315 -> 74078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56315, + "TargetID": 74078, + "Directional": true + } + ] + }, + { + "ID": 10958, + "SourceStructureID": 6115, + "TargetStructureID": 74086, + "Label": "6115-74086 via Ribbon Synapse from 74083 -> 74090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74083, + "TargetID": 74090, + "Directional": true + } + ] + }, + { + "ID": 10959, + "SourceStructureID": 6115, + "TargetStructureID": 74087, + "Label": "6115-74087 via Ribbon Synapse from 74083 -> 74091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74083, + "TargetID": 74091, + "Directional": true + } + ] + }, + { + "ID": 10960, + "SourceStructureID": 6115, + "TargetStructureID": 74088, + "Label": "6115-74088 via Ribbon Synapse from 74083 -> 74089", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74083, + "TargetID": 74089, + "Directional": true + } + ] + }, + { + "ID": 10961, + "SourceStructureID": 6115, + "TargetStructureID": 74165, + "Label": "6115-74165 via Ribbon Synapse from 74164 -> 74166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74164, + "TargetID": 74166, + "Directional": true + } + ] + }, + { + "ID": 10962, + "SourceStructureID": 6115, + "TargetStructureID": 74177, + "Label": "6115-74177 via Ribbon Synapse from 74174 -> 74179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74174, + "TargetID": 74179, + "Directional": true + } + ] + }, + { + "ID": 10963, + "SourceStructureID": 6115, + "TargetStructureID": 74187, + "Label": "6115-74187 via Ribbon Synapse from 74188 -> 74189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74188, + "TargetID": 74189, + "Directional": true + } + ] + }, + { + "ID": 10964, + "SourceStructureID": 6115, + "TargetStructureID": 74197, + "Label": "6115-74197 via Ribbon Synapse from 74196 -> 74198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74196, + "TargetID": 74198, + "Directional": true + } + ] + }, + { + "ID": 10965, + "SourceStructureID": 6115, + "TargetStructureID": 74203, + "Label": "6115-74203 via Ribbon Synapse from 74202 -> 74204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74202, + "TargetID": 74204, + "Directional": true + } + ] + }, + { + "ID": 10966, + "SourceStructureID": 6115, + "TargetStructureID": 74276, + "Label": "6115-74276 via BC Conventional Synapse from 74275 -> 74277", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74275, + "TargetID": 74277, + "Directional": true + } + ] + }, + { + "ID": 10967, + "SourceStructureID": 6115, + "TargetStructureID": 74279, + "Label": "6115-74279 via BC Conventional Synapse from 74280 -> 74281", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74280, + "TargetID": 74281, + "Directional": true + } + ] + }, + { + "ID": 10968, + "SourceStructureID": 6115, + "TargetStructureID": 74299, + "Label": "6115-74299 via Ribbon Synapse from 55776 -> 74300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55776, + "TargetID": 74300, + "Directional": true + } + ] + }, + { + "ID": 10969, + "SourceStructureID": 6115, + "TargetStructureID": 74301, + "Label": "6115-74301 via Ribbon Synapse from 55776 -> 74302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55776, + "TargetID": 74302, + "Directional": true + } + ] + }, + { + "ID": 10970, + "SourceStructureID": 6115, + "TargetStructureID": 74333, + "Label": "6115-74333 via Ribbon Synapse from 55780 -> 74336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55780, + "TargetID": 74336, + "Directional": true + } + ] + }, + { + "ID": 10971, + "SourceStructureID": 6115, + "TargetStructureID": 74334, + "Label": "6115-74334 via Ribbon Synapse from 55780 -> 74335", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55780, + "TargetID": 74335, + "Directional": true + } + ] + }, + { + "ID": 10972, + "SourceStructureID": 6115, + "TargetStructureID": 74337, + "Label": "6115-74337 via Ribbon Synapse from 55779 -> 74349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55779, + "TargetID": 74349, + "Directional": true + } + ] + }, + { + "ID": 10973, + "SourceStructureID": 6115, + "TargetStructureID": 74364, + "Label": "6115-74364 via Ribbon Synapse from 55793 -> 74365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55793, + "TargetID": 74365, + "Directional": true + } + ] + }, + { + "ID": 10974, + "SourceStructureID": 6115, + "TargetStructureID": 74366, + "Label": "6115-74366 via Ribbon Synapse from 55793 -> 74367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55793, + "TargetID": 74367, + "Directional": true + } + ] + }, + { + "ID": 10975, + "SourceStructureID": 6115, + "TargetStructureID": 74370, + "Label": "6115-74370 via Ribbon Synapse from 55792 -> 74375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55792, + "TargetID": 74375, + "Directional": true + } + ] + }, + { + "ID": 10976, + "SourceStructureID": 6115, + "TargetStructureID": 74382, + "Label": "6115-74382 via Ribbon Synapse from 55792 -> 74383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55792, + "TargetID": 74383, + "Directional": true + } + ] + }, + { + "ID": 10977, + "SourceStructureID": 6115, + "TargetStructureID": 74388, + "Label": "6115-74388 via Ribbon Synapse from 55791 -> 74389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55791, + "TargetID": 74389, + "Directional": true + } + ] + }, + { + "ID": 10978, + "SourceStructureID": 6115, + "TargetStructureID": 74396, + "Label": "6115-74396 via BC Conventional Synapse from 74395 -> 74397", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74395, + "TargetID": 74397, + "Directional": true + } + ] + }, + { + "ID": 10979, + "SourceStructureID": 6115, + "TargetStructureID": 74416, + "Label": "6115-74416 via BC Conventional Synapse from 74415 -> 74417", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74415, + "TargetID": 74417, + "Directional": true + } + ] + }, + { + "ID": 10980, + "SourceStructureID": 6115, + "TargetStructureID": 74441, + "Label": "6115-74441 via Ribbon Synapse from 55785 -> 74444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55785, + "TargetID": 74444, + "Directional": true + } + ] + }, + { + "ID": 10981, + "SourceStructureID": 6115, + "TargetStructureID": 74448, + "Label": "6115-74448 via Unknown from 75973 -> 75974", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 75973, + "TargetID": 75974, + "Directional": true + } + ] + }, + { + "ID": 10982, + "SourceStructureID": 6115, + "TargetStructureID": 74452, + "Label": "6115-74452 via BC Conventional Synapse from 74451 -> 74453", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74451, + "TargetID": 74453, + "Directional": true + } + ] + }, + { + "ID": 10983, + "SourceStructureID": 6115, + "TargetStructureID": 74471, + "Label": "6115-74471 via Ribbon Synapse from 55775 -> 74474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55775, + "TargetID": 74474, + "Directional": true + } + ] + }, + { + "ID": 10984, + "SourceStructureID": 6115, + "TargetStructureID": 74480, + "Label": "6115-74480 via Adherens from 75873 -> 75874", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 75873, + "TargetID": 75874, + "Directional": true + } + ] + }, + { + "ID": 10985, + "SourceStructureID": 6115, + "TargetStructureID": 74480, + "Label": "6115-74480 via BC Conventional Synapse from 74479 -> 74481", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74479, + "TargetID": 74481, + "Directional": true + } + ] + }, + { + "ID": 10986, + "SourceStructureID": 6115, + "TargetStructureID": 74497, + "Label": "6115-74497 via Ribbon Synapse from 74496 -> 74498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74496, + "TargetID": 74498, + "Directional": true + } + ] + }, + { + "ID": 10987, + "SourceStructureID": 6115, + "TargetStructureID": 74517, + "Label": "6115-74517 via Ribbon Synapse from 74516 -> 74521", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74516, + "TargetID": 74521, + "Directional": true + } + ] + }, + { + "ID": 10988, + "SourceStructureID": 6115, + "TargetStructureID": 74519, + "Label": "6115-74519 via Ribbon Synapse from 74516 -> 74520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74516, + "TargetID": 74520, + "Directional": true + } + ] + }, + { + "ID": 10989, + "SourceStructureID": 6115, + "TargetStructureID": 74524, + "Label": "6115-74524 via Ribbon Synapse from 74522 -> 74525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74522, + "TargetID": 74525, + "Directional": true + } + ] + }, + { + "ID": 10990, + "SourceStructureID": 6115, + "TargetStructureID": 74530, + "Label": "6115-74530 via BC Conventional Synapse from 74531 -> 74532", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74531, + "TargetID": 74532, + "Directional": true + } + ] + }, + { + "ID": 10991, + "SourceStructureID": 6115, + "TargetStructureID": 74536, + "Label": "6115-74536 via Ribbon Synapse from 74535 -> 74537", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74535, + "TargetID": 74537, + "Directional": true + } + ] + }, + { + "ID": 10992, + "SourceStructureID": 6115, + "TargetStructureID": 74539, + "Label": "6115-74539 via Ribbon Synapse from 74535 -> 74540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74535, + "TargetID": 74540, + "Directional": true + } + ] + }, + { + "ID": 10993, + "SourceStructureID": 6115, + "TargetStructureID": 74683, + "Label": "6115-74683 via BC Conventional Synapse from 74682 -> 74684", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74682, + "TargetID": 74684, + "Directional": true + } + ] + }, + { + "ID": 10994, + "SourceStructureID": 6115, + "TargetStructureID": 74699, + "Label": "6115-74699 via Ribbon Synapse from 74761 -> 74768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74761, + "TargetID": 74768, + "Directional": true + } + ] + }, + { + "ID": 10995, + "SourceStructureID": 6115, + "TargetStructureID": 74701, + "Label": "6115-74701 via Ribbon Synapse from 74700 -> 74703", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74700, + "TargetID": 74703, + "Directional": true + } + ] + }, + { + "ID": 10996, + "SourceStructureID": 6115, + "TargetStructureID": 74702, + "Label": "6115-74702 via Ribbon Synapse from 74700 -> 74704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74700, + "TargetID": 74704, + "Directional": true + } + ] + }, + { + "ID": 10997, + "SourceStructureID": 6115, + "TargetStructureID": 74719, + "Label": "6115-74719 via Unknown from 74722 -> 74723", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 74722, + "TargetID": 74723, + "Directional": true + } + ] + }, + { + "ID": 10998, + "SourceStructureID": 6115, + "TargetStructureID": 74728, + "Label": "6115-74728 via Ribbon Synapse from 74725 -> 74729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74725, + "TargetID": 74729, + "Directional": true + } + ] + }, + { + "ID": 10999, + "SourceStructureID": 6115, + "TargetStructureID": 74731, + "Label": "6115-74731 via Ribbon Synapse from 74725 -> 74732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74725, + "TargetID": 74732, + "Directional": true + } + ] + }, + { + "ID": 11000, + "SourceStructureID": 6115, + "TargetStructureID": 74749, + "Label": "6115-74749 via BC Conventional Synapse from 80952 -> 80950", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80952, + "TargetID": 80950, + "Directional": true + } + ] + }, + { + "ID": 11001, + "SourceStructureID": 6115, + "TargetStructureID": 74762, + "Label": "6115-74762 via Ribbon Synapse from 74761 -> 74765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74761, + "TargetID": 74765, + "Directional": true + } + ] + }, + { + "ID": 11002, + "SourceStructureID": 6115, + "TargetStructureID": 74763, + "Label": "6115-74763 via Ribbon Synapse from 74761 -> 74766", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74761, + "TargetID": 74766, + "Directional": true + } + ] + }, + { + "ID": 11003, + "SourceStructureID": 6115, + "TargetStructureID": 74764, + "Label": "6115-74764 via Ribbon Synapse from 74761 -> 74767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74761, + "TargetID": 74767, + "Directional": true + } + ] + }, + { + "ID": 11004, + "SourceStructureID": 6115, + "TargetStructureID": 74769, + "Label": "6115-74769 via Ribbon Synapse from 74778 -> 74779", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74778, + "TargetID": 74779, + "Directional": true + } + ] + }, + { + "ID": 11005, + "SourceStructureID": 6115, + "TargetStructureID": 74780, + "Label": "6115-74780 via Ribbon Synapse from 74778 -> 74781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74778, + "TargetID": 74781, + "Directional": true + } + ] + }, + { + "ID": 11006, + "SourceStructureID": 6115, + "TargetStructureID": 74795, + "Label": "6115-74795 via Ribbon Synapse from 55774 -> 74798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55774, + "TargetID": 74798, + "Directional": true + } + ] + }, + { + "ID": 11007, + "SourceStructureID": 6115, + "TargetStructureID": 74797, + "Label": "6115-74797 via Ribbon Synapse from 55774 -> 74799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55774, + "TargetID": 74799, + "Directional": true + } + ] + }, + { + "ID": 11008, + "SourceStructureID": 6115, + "TargetStructureID": 74815, + "Label": "6115-74815 via Ribbon Synapse from 55771 -> 74822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55771, + "TargetID": 74822, + "Directional": true + } + ] + }, + { + "ID": 11009, + "SourceStructureID": 6115, + "TargetStructureID": 74818, + "Label": "6115-74818 via Ribbon Synapse from 55771 -> 74820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55771, + "TargetID": 74820, + "Directional": true + } + ] + }, + { + "ID": 11010, + "SourceStructureID": 6115, + "TargetStructureID": 74819, + "Label": "6115-74819 via Ribbon Synapse from 55771 -> 74821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55771, + "TargetID": 74821, + "Directional": true + } + ] + }, + { + "ID": 11011, + "SourceStructureID": 6115, + "TargetStructureID": 74825, + "Label": "6115-74825 via Ribbon Synapse from 55840 -> 74826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55840, + "TargetID": 74826, + "Directional": true + } + ] + }, + { + "ID": 11012, + "SourceStructureID": 6115, + "TargetStructureID": 74828, + "Label": "6115-74828 via Ribbon Synapse from 55773 -> 74829", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55773, + "TargetID": 74829, + "Directional": true + } + ] + }, + { + "ID": 11013, + "SourceStructureID": 6115, + "TargetStructureID": 74843, + "Label": "6115-74843 via Ribbon Synapse from 55770 -> 74844", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55770, + "TargetID": 74844, + "Directional": true + } + ] + }, + { + "ID": 11014, + "SourceStructureID": 6115, + "TargetStructureID": 75035, + "Label": "6115-75035 via BC Conventional Synapse from 75037 -> 75039", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75037, + "TargetID": 75039, + "Directional": true + } + ] + }, + { + "ID": 11015, + "SourceStructureID": 6115, + "TargetStructureID": 75059, + "Label": "6115-75059 via BC Conventional Synapse from 75060 -> 75061", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75060, + "TargetID": 75061, + "Directional": true + } + ] + }, + { + "ID": 11016, + "SourceStructureID": 6115, + "TargetStructureID": 75065, + "Label": "6115-75065 via Ribbon Synapse from 75066 -> 75067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75066, + "TargetID": 75067, + "Directional": true + } + ] + }, + { + "ID": 11017, + "SourceStructureID": 6115, + "TargetStructureID": 75073, + "Label": "6115-75073 via Ribbon Synapse from 55843 -> 75091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55843, + "TargetID": 75091, + "Directional": true + } + ] + }, + { + "ID": 11018, + "SourceStructureID": 6115, + "TargetStructureID": 75081, + "Label": "6115-75081 via Ribbon Synapse from 55757 -> 75083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55757, + "TargetID": 75083, + "Directional": true + } + ] + }, + { + "ID": 11019, + "SourceStructureID": 6115, + "TargetStructureID": 75082, + "Label": "6115-75082 via Ribbon Synapse from 55757 -> 75084", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55757, + "TargetID": 75084, + "Directional": true + } + ] + }, + { + "ID": 11020, + "SourceStructureID": 6115, + "TargetStructureID": 75085, + "Label": "6115-75085 via Ribbon Synapse from 55757 -> 75088", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55757, + "TargetID": 75088, + "Directional": true + } + ] + }, + { + "ID": 11021, + "SourceStructureID": 6115, + "TargetStructureID": 75086, + "Label": "6115-75086 via Ribbon Synapse from 55757 -> 75087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55757, + "TargetID": 75087, + "Directional": true + } + ] + }, + { + "ID": 11022, + "SourceStructureID": 6115, + "TargetStructureID": 75089, + "Label": "6115-75089 via Ribbon Synapse from 55843 -> 75090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55843, + "TargetID": 75090, + "Directional": true + } + ] + }, + { + "ID": 11023, + "SourceStructureID": 6115, + "TargetStructureID": 75099, + "Label": "6115-75099 via Ribbon Synapse from 55767 -> 75254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55767, + "TargetID": 75254, + "Directional": true + } + ] + }, + { + "ID": 11024, + "SourceStructureID": 6115, + "TargetStructureID": 75102, + "Label": "6115-75102 via Ribbon Synapse from 55756 -> 75103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55756, + "TargetID": 75103, + "Directional": true + } + ] + }, + { + "ID": 11025, + "SourceStructureID": 6115, + "TargetStructureID": 75110, + "Label": "6115-75110 via Ribbon Synapse from 55754 -> 75111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55754, + "TargetID": 75111, + "Directional": true + } + ] + }, + { + "ID": 11026, + "SourceStructureID": 6115, + "TargetStructureID": 75112, + "Label": "6115-75112 via Ribbon Synapse from 75115 -> 75122", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75115, + "TargetID": 75122, + "Directional": true + } + ] + }, + { + "ID": 11027, + "SourceStructureID": 6115, + "TargetStructureID": 75116, + "Label": "6115-75116 via Ribbon Synapse from 75115 -> 75118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75115, + "TargetID": 75118, + "Directional": true + } + ] + }, + { + "ID": 11028, + "SourceStructureID": 6115, + "TargetStructureID": 75117, + "Label": "6115-75117 via Ribbon Synapse from 75115 -> 75119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75115, + "TargetID": 75119, + "Directional": true + } + ] + }, + { + "ID": 11029, + "SourceStructureID": 6115, + "TargetStructureID": 75120, + "Label": "6115-75120 via Ribbon Synapse from 75115 -> 75121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75115, + "TargetID": 75121, + "Directional": true + } + ] + }, + { + "ID": 11030, + "SourceStructureID": 6115, + "TargetStructureID": 75130, + "Label": "6115-75130 via Ribbon Synapse from 55840 -> 74827, 82662 -> 90638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55840, + "TargetID": 74827, + "Directional": true + }, + { + "SourceID": 82662, + "TargetID": 90638, + "Directional": true + } + ] + }, + { + "ID": 11031, + "SourceStructureID": 6115, + "TargetStructureID": 75156, + "Label": "6115-75156 via Ribbon Synapse from 75155 -> 75157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75155, + "TargetID": 75157, + "Directional": true + } + ] + }, + { + "ID": 11032, + "SourceStructureID": 6115, + "TargetStructureID": 75158, + "Label": "6115-75158 via Ribbon Synapse from 75155 -> 75159", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75155, + "TargetID": 75159, + "Directional": true + } + ] + }, + { + "ID": 11033, + "SourceStructureID": 6115, + "TargetStructureID": 75189, + "Label": "6115-75189 via Ribbon Synapse from 75188 -> 75191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75188, + "TargetID": 75191, + "Directional": true + } + ] + }, + { + "ID": 11034, + "SourceStructureID": 6115, + "TargetStructureID": 75194, + "Label": "6115-75194 via Ribbon Synapse from 75193 -> 75195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75193, + "TargetID": 75195, + "Directional": true + } + ] + }, + { + "ID": 11035, + "SourceStructureID": 6115, + "TargetStructureID": 75196, + "Label": "6115-75196 via Ribbon Synapse from 75193 -> 75197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75193, + "TargetID": 75197, + "Directional": true + } + ] + }, + { + "ID": 11036, + "SourceStructureID": 6115, + "TargetStructureID": 75205, + "Label": "6115-75205 via BC Conventional Synapse from 75207 -> 75206", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75207, + "TargetID": 75206, + "Directional": true + } + ] + }, + { + "ID": 11037, + "SourceStructureID": 6115, + "TargetStructureID": 75214, + "Label": "6115-75214 via BC Conventional Synapse from 75215 -> 75216", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75215, + "TargetID": 75216, + "Directional": true + } + ] + }, + { + "ID": 11038, + "SourceStructureID": 6115, + "TargetStructureID": 75223, + "Label": "6115-75223 via BC Conventional Synapse from 93081 -> 93082", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93081, + "TargetID": 93082, + "Directional": true + } + ] + }, + { + "ID": 11039, + "SourceStructureID": 6115, + "TargetStructureID": 75223, + "Label": "6115-75223 via Ribbon Synapse from 55766 -> 75229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55766, + "TargetID": 75229, + "Directional": true + } + ] + }, + { + "ID": 11040, + "SourceStructureID": 6115, + "TargetStructureID": 75227, + "Label": "6115-75227 via Ribbon Synapse from 55766 -> 75228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55766, + "TargetID": 75228, + "Directional": true + } + ] + }, + { + "ID": 11041, + "SourceStructureID": 6115, + "TargetStructureID": 75235, + "Label": "6115-75235 via Ribbon Synapse from 55861 -> 75237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55861, + "TargetID": 75237, + "Directional": true + } + ] + }, + { + "ID": 11042, + "SourceStructureID": 6115, + "TargetStructureID": 75236, + "Label": "6115-75236 via Ribbon Synapse from 55861 -> 75240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55861, + "TargetID": 75240, + "Directional": true + } + ] + }, + { + "ID": 11043, + "SourceStructureID": 6115, + "TargetStructureID": 75246, + "Label": "6115-75246 via Ribbon Synapse from 55860 -> 75247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55860, + "TargetID": 75247, + "Directional": true + } + ] + }, + { + "ID": 11044, + "SourceStructureID": 6115, + "TargetStructureID": 75255, + "Label": "6115-75255 via Ribbon Synapse from 55767 -> 75256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55767, + "TargetID": 75256, + "Directional": true + } + ] + }, + { + "ID": 11045, + "SourceStructureID": 6115, + "TargetStructureID": 75266, + "Label": "6115-75266 via Ribbon Synapse from 75002 -> 75267", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75002, + "TargetID": 75267, + "Directional": true + } + ] + }, + { + "ID": 11046, + "SourceStructureID": 6115, + "TargetStructureID": 75268, + "Label": "6115-75268 via Ribbon Synapse from 55765 -> 75270", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55765, + "TargetID": 75270, + "Directional": true + } + ] + }, + { + "ID": 11047, + "SourceStructureID": 6115, + "TargetStructureID": 75269, + "Label": "6115-75269 via Ribbon Synapse from 55765 -> 75271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55765, + "TargetID": 75271, + "Directional": true + } + ] + }, + { + "ID": 11048, + "SourceStructureID": 6115, + "TargetStructureID": 75283, + "Label": "6115-75283 via Ribbon Synapse from 134153 -> 75284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134153, + "TargetID": 75284, + "Directional": true + } + ] + }, + { + "ID": 11049, + "SourceStructureID": 6115, + "TargetStructureID": 75285, + "Label": "6115-75285 via Ribbon Synapse from 134153 -> 75286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134153, + "TargetID": 75286, + "Directional": true + } + ] + }, + { + "ID": 11050, + "SourceStructureID": 6115, + "TargetStructureID": 75288, + "Label": "6115-75288 via Ribbon Synapse from 55761 -> 75289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55761, + "TargetID": 75289, + "Directional": true + } + ] + }, + { + "ID": 11051, + "SourceStructureID": 6115, + "TargetStructureID": 75290, + "Label": "6115-75290 via Ribbon Synapse from 55761 -> 75291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55761, + "TargetID": 75291, + "Directional": true + } + ] + }, + { + "ID": 11052, + "SourceStructureID": 6115, + "TargetStructureID": 75292, + "Label": "6115-75292 via Ribbon Synapse from 55763 -> 75295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55763, + "TargetID": 75295, + "Directional": true + } + ] + }, + { + "ID": 11053, + "SourceStructureID": 6115, + "TargetStructureID": 75293, + "Label": "6115-75293 via Ribbon Synapse from 55763 -> 75294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55763, + "TargetID": 75294, + "Directional": true + } + ] + }, + { + "ID": 11054, + "SourceStructureID": 6115, + "TargetStructureID": 75440, + "Label": "6115-75440 via Ribbon Synapse from 55763 -> 75441", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55763, + "TargetID": 75441, + "Directional": true + } + ] + }, + { + "ID": 11055, + "SourceStructureID": 6115, + "TargetStructureID": 75446, + "Label": "6115-75446 via Ribbon Synapse from 75449 -> 75451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75449, + "TargetID": 75451, + "Directional": true + } + ] + }, + { + "ID": 11056, + "SourceStructureID": 6115, + "TargetStructureID": 75450, + "Label": "6115-75450 via Ribbon Synapse from 75449 -> 75453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75449, + "TargetID": 75453, + "Directional": true + } + ] + }, + { + "ID": 11057, + "SourceStructureID": 6115, + "TargetStructureID": 75465, + "Label": "6115-75465 via Ribbon Synapse from 70310 -> 75466", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70310, + "TargetID": 75466, + "Directional": true + } + ] + }, + { + "ID": 11058, + "SourceStructureID": 6115, + "TargetStructureID": 75467, + "Label": "6115-75467 via Ribbon Synapse from 70310 -> 75468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70310, + "TargetID": 75468, + "Directional": true + } + ] + }, + { + "ID": 11059, + "SourceStructureID": 6115, + "TargetStructureID": 75470, + "Label": "6115-75470 via BC Conventional Synapse from 75469 -> 75471", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75469, + "TargetID": 75471, + "Directional": true + } + ] + }, + { + "ID": 11060, + "SourceStructureID": 6115, + "TargetStructureID": 75472, + "Label": "6115-75472 via Ribbon Synapse from 70409 -> 75473", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70409, + "TargetID": 75473, + "Directional": true + } + ] + }, + { + "ID": 11061, + "SourceStructureID": 6115, + "TargetStructureID": 75548, + "Label": "6115-75548 via Ribbon Synapse from 75547 -> 75549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75547, + "TargetID": 75549, + "Directional": true + } + ] + }, + { + "ID": 11062, + "SourceStructureID": 6115, + "TargetStructureID": 75550, + "Label": "6115-75550 via Ribbon Synapse from 75547 -> 75551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75547, + "TargetID": 75551, + "Directional": true + } + ] + }, + { + "ID": 11063, + "SourceStructureID": 6115, + "TargetStructureID": 75569, + "Label": "6115-75569 via Ribbon Synapse from 72327 -> 75570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72327, + "TargetID": 75570, + "Directional": true + } + ] + }, + { + "ID": 11064, + "SourceStructureID": 6115, + "TargetStructureID": 75644, + "Label": "6115-75644 via Ribbon Synapse from 73171 -> 75645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73171, + "TargetID": 75645, + "Directional": true + } + ] + }, + { + "ID": 11065, + "SourceStructureID": 6115, + "TargetStructureID": 75646, + "Label": "6115-75646 via Ribbon Synapse from 72626 -> 75647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72626, + "TargetID": 75647, + "Directional": true + } + ] + }, + { + "ID": 11066, + "SourceStructureID": 6115, + "TargetStructureID": 75648, + "Label": "6115-75648 via Ribbon Synapse from 66751 -> 75651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66751, + "TargetID": 75651, + "Directional": true + } + ] + }, + { + "ID": 11067, + "SourceStructureID": 6115, + "TargetStructureID": 75649, + "Label": "6115-75649 via Ribbon Synapse from 66751 -> 75650", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66751, + "TargetID": 75650, + "Directional": true + } + ] + }, + { + "ID": 11068, + "SourceStructureID": 6115, + "TargetStructureID": 75653, + "Label": "6115-75653 via Ribbon Synapse from 75652 -> 75654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75652, + "TargetID": 75654, + "Directional": true + } + ] + }, + { + "ID": 11069, + "SourceStructureID": 6115, + "TargetStructureID": 75672, + "Label": "6115-75672 via BC Conventional Synapse from 75671 -> 75673", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75671, + "TargetID": 75673, + "Directional": true + } + ] + }, + { + "ID": 11070, + "SourceStructureID": 6115, + "TargetStructureID": 75674, + "Label": "6115-75674 via Ribbon Synapse from 134154 -> 75675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134154, + "TargetID": 75675, + "Directional": true + } + ] + }, + { + "ID": 11071, + "SourceStructureID": 6115, + "TargetStructureID": 75841, + "Label": "6115-75841 via Ribbon Synapse from 75838 -> 75842", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75838, + "TargetID": 75842, + "Directional": true + } + ] + }, + { + "ID": 11072, + "SourceStructureID": 6115, + "TargetStructureID": 75857, + "Label": "6115-75857 via Ribbon Synapse from 75856 -> 75860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75856, + "TargetID": 75860, + "Directional": true + } + ] + }, + { + "ID": 11073, + "SourceStructureID": 6115, + "TargetStructureID": 75861, + "Label": "6115-75861 via Ribbon Synapse from 75856 -> 75862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75856, + "TargetID": 75862, + "Directional": true + } + ] + }, + { + "ID": 11074, + "SourceStructureID": 6115, + "TargetStructureID": 75866, + "Label": "6115-75866 via Ribbon Synapse from 75865 -> 75867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75865, + "TargetID": 75867, + "Directional": true + } + ] + }, + { + "ID": 11075, + "SourceStructureID": 6115, + "TargetStructureID": 75868, + "Label": "6115-75868 via Ribbon Synapse from 75865 -> 75869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75865, + "TargetID": 75869, + "Directional": true + } + ] + }, + { + "ID": 11076, + "SourceStructureID": 6115, + "TargetStructureID": 75882, + "Label": "6115-75882 via Ribbon Synapse from 55843 -> 75883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55843, + "TargetID": 75883, + "Directional": true + } + ] + }, + { + "ID": 11077, + "SourceStructureID": 6115, + "TargetStructureID": 75985, + "Label": "6115-75985 via Ribbon Synapse from 73386 -> 75986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73386, + "TargetID": 75986, + "Directional": true + } + ] + }, + { + "ID": 11078, + "SourceStructureID": 6115, + "TargetStructureID": 76000, + "Label": "6115-76000 via Ribbon Synapse from 73093 -> 76001", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73093, + "TargetID": 76001, + "Directional": true + } + ] + }, + { + "ID": 11079, + "SourceStructureID": 6115, + "TargetStructureID": 76010, + "Label": "6115-76010 via Ribbon Synapse from 72962 -> 76012", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72962, + "TargetID": 76012, + "Directional": true + } + ] + }, + { + "ID": 11080, + "SourceStructureID": 6115, + "TargetStructureID": 76013, + "Label": "6115-76013 via Ribbon Synapse from 55915 -> 76018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55915, + "TargetID": 76018, + "Directional": true + } + ] + }, + { + "ID": 11081, + "SourceStructureID": 6115, + "TargetStructureID": 76014, + "Label": "6115-76014 via Ribbon Synapse from 55915 -> 76017", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55915, + "TargetID": 76017, + "Directional": true + } + ] + }, + { + "ID": 11082, + "SourceStructureID": 6115, + "TargetStructureID": 76015, + "Label": "6115-76015 via Ribbon Synapse from 55915 -> 76016", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55915, + "TargetID": 76016, + "Directional": true + } + ] + }, + { + "ID": 11083, + "SourceStructureID": 6115, + "TargetStructureID": 76024, + "Label": "6115-76024 via Ribbon Synapse from 73218 -> 76025", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73218, + "TargetID": 76025, + "Directional": true + } + ] + }, + { + "ID": 11084, + "SourceStructureID": 6115, + "TargetStructureID": 76111, + "Label": "6115-76111 via Unknown from 76113 -> 76112", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 76113, + "TargetID": 76112, + "Directional": true + } + ] + }, + { + "ID": 11085, + "SourceStructureID": 6115, + "TargetStructureID": 76182, + "Label": "6115-76182 via Ribbon Synapse from 76181 -> 76183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76181, + "TargetID": 76183, + "Directional": true + } + ] + }, + { + "ID": 11086, + "SourceStructureID": 6115, + "TargetStructureID": 76184, + "Label": "6115-76184 via Ribbon Synapse from 76181 -> 76185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76181, + "TargetID": 76185, + "Directional": true + } + ] + }, + { + "ID": 11087, + "SourceStructureID": 6115, + "TargetStructureID": 76186, + "Label": "6115-76186 via Ribbon Synapse from 76181 -> 76187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76181, + "TargetID": 76187, + "Directional": true + } + ] + }, + { + "ID": 11088, + "SourceStructureID": 6115, + "TargetStructureID": 77677, + "Label": "6115-77677 via Ribbon Synapse from 77676 -> 77678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77676, + "TargetID": 77678, + "Directional": true + } + ] + }, + { + "ID": 11089, + "SourceStructureID": 6115, + "TargetStructureID": 78309, + "Label": "6115-78309 via Ribbon Synapse from 55842 -> 78310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55842, + "TargetID": 78310, + "Directional": true + } + ] + }, + { + "ID": 11090, + "SourceStructureID": 6115, + "TargetStructureID": 80957, + "Label": "6115-80957 via Ribbon Synapse from 75188 -> 82233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75188, + "TargetID": 82233, + "Directional": true + } + ] + }, + { + "ID": 11091, + "SourceStructureID": 6115, + "TargetStructureID": 81167, + "Label": "6115-81167 via Ribbon Synapse from 74522 -> 82103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74522, + "TargetID": 82103, + "Directional": true + } + ] + }, + { + "ID": 11092, + "SourceStructureID": 6115, + "TargetStructureID": 81337, + "Label": "6115-81337 via Ribbon Synapse from 81340 -> 81339", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81340, + "TargetID": 81339, + "Directional": true + } + ] + }, + { + "ID": 11093, + "SourceStructureID": 6115, + "TargetStructureID": 81348, + "Label": "6115-81348 via Ribbon Synapse from 72305 -> 81349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72305, + "TargetID": 81349, + "Directional": true + } + ] + }, + { + "ID": 11094, + "SourceStructureID": 6115, + "TargetStructureID": 81667, + "Label": "6115-81667 via Ribbon Synapse from 55866 -> 81706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55866, + "TargetID": 81706, + "Directional": true + } + ] + }, + { + "ID": 11095, + "SourceStructureID": 6115, + "TargetStructureID": 81964, + "Label": "6115-81964 via Ribbon Synapse from 55811 -> 81965", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55811, + "TargetID": 81965, + "Directional": true + } + ] + }, + { + "ID": 11096, + "SourceStructureID": 6115, + "TargetStructureID": 82368, + "Label": "6115-82368 via BC Conventional Synapse from 72912 -> 82369", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72912, + "TargetID": 82369, + "Directional": true + } + ] + }, + { + "ID": 11097, + "SourceStructureID": 6115, + "TargetStructureID": 82402, + "Label": "6115-82402 via Ribbon Synapse from 55770 -> 82563", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55770, + "TargetID": 82563, + "Directional": true + } + ] + }, + { + "ID": 11098, + "SourceStructureID": 6115, + "TargetStructureID": 82644, + "Label": "6115-82644 via Ribbon Synapse from 77671 -> 82645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77671, + "TargetID": 82645, + "Directional": true + } + ] + }, + { + "ID": 11099, + "SourceStructureID": 6115, + "TargetStructureID": 82653, + "Label": "6115-82653 via Ribbon Synapse from 77671 -> 90630, 77672 -> 82658, 134154 -> 90719", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77671, + "TargetID": 90630, + "Directional": true + }, + { + "SourceID": 77672, + "TargetID": 82658, + "Directional": true + }, + { + "SourceID": 134154, + "TargetID": 90719, + "Directional": true + } + ] + }, + { + "ID": 11100, + "SourceStructureID": 6115, + "TargetStructureID": 82659, + "Label": "6115-82659 via Ribbon Synapse from 77672 -> 82660", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 77672, + "TargetID": 82660, + "Directional": true + } + ] + }, + { + "ID": 11101, + "SourceStructureID": 6115, + "TargetStructureID": 82795, + "Label": "6115-82795 via Ribbon Synapse from 55861 -> 82797", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55861, + "TargetID": 82797, + "Directional": true + } + ] + }, + { + "ID": 11102, + "SourceStructureID": 6115, + "TargetStructureID": 82803, + "Label": "6115-82803 via BC Conventional Synapse from 55790 -> 134149", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55790, + "TargetID": 134149, + "Directional": true + } + ] + }, + { + "ID": 11103, + "SourceStructureID": 6115, + "TargetStructureID": 82954, + "Label": "6115-82954 via Ribbon Synapse from 72244 -> 82956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72244, + "TargetID": 82956, + "Directional": true + } + ] + }, + { + "ID": 11104, + "SourceStructureID": 6115, + "TargetStructureID": 82969, + "Label": "6115-82969 via Ribbon Synapse from 72353 -> 82971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72353, + "TargetID": 82971, + "Directional": true + } + ] + }, + { + "ID": 11105, + "SourceStructureID": 6115, + "TargetStructureID": 86246, + "Label": "6115-86246 via Ribbon Synapse from 16049 -> 86247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16049, + "TargetID": 86247, + "Directional": true + } + ] + }, + { + "ID": 11106, + "SourceStructureID": 6115, + "TargetStructureID": 90651, + "Label": "6115-90651 via Ribbon Synapse from 82669 -> 90652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82669, + "TargetID": 90652, + "Directional": true + } + ] + }, + { + "ID": 11107, + "SourceStructureID": 6115, + "TargetStructureID": 90654, + "Label": "6115-90654 via Ribbon Synapse from 82669 -> 90655", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82669, + "TargetID": 90655, + "Directional": true + } + ] + }, + { + "ID": 11108, + "SourceStructureID": 6117, + "TargetStructureID": 606, + "Label": "6117-606 via Ribbon Synapse from 6967 -> 6968, 10053 -> 10052, 10056 -> 10055, 10714 -> 10709, 10715 -> 10708, 10717 -> 10706, 12318 -> 12319, 30887 -> 10713, 51326 -> 51327, 51334 -> 51335, 51530 -> 51368, 51546 -> 10718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6967, + "TargetID": 6968, + "Directional": true + }, + { + "SourceID": 10053, + "TargetID": 10052, + "Directional": true + }, + { + "SourceID": 10056, + "TargetID": 10055, + "Directional": true + }, + { + "SourceID": 10714, + "TargetID": 10709, + "Directional": true + }, + { + "SourceID": 10715, + "TargetID": 10708, + "Directional": true + }, + { + "SourceID": 10717, + "TargetID": 10706, + "Directional": true + }, + { + "SourceID": 12318, + "TargetID": 12319, + "Directional": true + }, + { + "SourceID": 30887, + "TargetID": 10713, + "Directional": true + }, + { + "SourceID": 51326, + "TargetID": 51327, + "Directional": true + }, + { + "SourceID": 51334, + "TargetID": 51335, + "Directional": true + }, + { + "SourceID": 51530, + "TargetID": 51368, + "Directional": true + }, + { + "SourceID": 51546, + "TargetID": 10718, + "Directional": true + } + ] + }, + { + "ID": 11109, + "SourceStructureID": 6117, + "TargetStructureID": 5377, + "Label": "6117-5377 via BC Conventional Synapse from 86374 -> 87085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86374, + "TargetID": 87085, + "Directional": true + } + ] + }, + { + "ID": 11110, + "SourceStructureID": 6117, + "TargetStructureID": 5377, + "Label": "6117-5377 via Ribbon Synapse from 86400 -> 87087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86400, + "TargetID": 87087, + "Directional": true + } + ] + }, + { + "ID": 11111, + "SourceStructureID": 6117, + "TargetStructureID": 5489, + "Label": "6117-5489 via Ribbon Synapse from 85960 -> 85962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85960, + "TargetID": 85962, + "Directional": true + } + ] + }, + { + "ID": 11112, + "SourceStructureID": 6117, + "TargetStructureID": 6300, + "Label": "6117-6300 via Ribbon Synapse from 20587 -> 86241, 30902 -> 86358", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20587, + "TargetID": 86241, + "Directional": true + }, + { + "SourceID": 30902, + "TargetID": 86358, + "Directional": true + } + ] + }, + { + "ID": 11113, + "SourceStructureID": 6117, + "TargetStructureID": 7594, + "Label": "6117-7594 via Ribbon Synapse from 10717 -> 25096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10717, + "TargetID": 25096, + "Directional": true + } + ] + }, + { + "ID": 11114, + "SourceStructureID": 6117, + "TargetStructureID": 9769, + "Label": "6117-9769 via Ribbon Synapse from 6967 -> 51270, 10526 -> 12566, 10715 -> 51305, 22385 -> 84190, 30883 -> 84247, 45117 -> 45118, 51326 -> 11268, 51546 -> 84173, 54012 -> 83281, 54285 -> 23929, 58594 -> 83130, 86013 -> 86075", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6967, + "TargetID": 51270, + "Directional": true + }, + { + "SourceID": 10526, + "TargetID": 12566, + "Directional": true + }, + { + "SourceID": 10715, + "TargetID": 51305, + "Directional": true + }, + { + "SourceID": 22385, + "TargetID": 84190, + "Directional": true + }, + { + "SourceID": 30883, + "TargetID": 84247, + "Directional": true + }, + { + "SourceID": 45117, + "TargetID": 45118, + "Directional": true + }, + { + "SourceID": 51326, + "TargetID": 11268, + "Directional": true + }, + { + "SourceID": 51546, + "TargetID": 84173, + "Directional": true + }, + { + "SourceID": 54012, + "TargetID": 83281, + "Directional": true + }, + { + "SourceID": 54285, + "TargetID": 23929, + "Directional": true + }, + { + "SourceID": 58594, + "TargetID": 83130, + "Directional": true + }, + { + "SourceID": 86013, + "TargetID": 86075, + "Directional": true + } + ] + }, + { + "ID": 11115, + "SourceStructureID": 6117, + "TargetStructureID": 15796, + "Label": "6117-15796 via Ribbon Synapse from 83934 -> 83937", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83934, + "TargetID": 83937, + "Directional": true + } + ] + }, + { + "ID": 11116, + "SourceStructureID": 6117, + "TargetStructureID": 18693, + "Label": "6117-18693 via Ribbon Synapse from 84221 -> 27325", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84221, + "TargetID": 27325, + "Directional": true + } + ] + }, + { + "ID": 11117, + "SourceStructureID": 6117, + "TargetStructureID": 30567, + "Label": "6117-30567 via Ribbon Synapse from 20585 -> 32088", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20585, + "TargetID": 32088, + "Directional": true + } + ] + }, + { + "ID": 11118, + "SourceStructureID": 6117, + "TargetStructureID": 32035, + "Label": "6117-32035 via Adherens from 86085 -> 86352", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 86085, + "TargetID": 86352, + "Directional": true + } + ] + }, + { + "ID": 11119, + "SourceStructureID": 6117, + "TargetStructureID": 32035, + "Label": "6117-32035 via Ribbon Synapse from 10526 -> 41661", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10526, + "TargetID": 41661, + "Directional": true + } + ] + }, + { + "ID": 11120, + "SourceStructureID": 6117, + "TargetStructureID": 35811, + "Label": "6117-35811 via Ribbon Synapse from 30908 -> 35846, 30922 -> 35851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30908, + "TargetID": 35846, + "Directional": true + }, + { + "SourceID": 30922, + "TargetID": 35851, + "Directional": true + } + ] + }, + { + "ID": 11121, + "SourceStructureID": 6117, + "TargetStructureID": 35894, + "Label": "6117-35894 via Ribbon Synapse from 30931 -> 35923", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30931, + "TargetID": 35923, + "Directional": true + } + ] + }, + { + "ID": 11122, + "SourceStructureID": 6117, + "TargetStructureID": 35975, + "Label": "6117-35975 via Ribbon Synapse from 30892 -> 35997, 85986 -> 85988", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30892, + "TargetID": 35997, + "Directional": true + }, + { + "SourceID": 85986, + "TargetID": 85988, + "Directional": true + } + ] + }, + { + "ID": 11123, + "SourceStructureID": 6117, + "TargetStructureID": 40844, + "Label": "6117-40844 via Ribbon Synapse from 10532 -> 40846", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10532, + "TargetID": 40846, + "Directional": true + } + ] + }, + { + "ID": 11124, + "SourceStructureID": 6117, + "TargetStructureID": 40880, + "Label": "6117-40880 via Ribbon Synapse from 121987 -> 121988", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121987, + "TargetID": 121988, + "Directional": true + } + ] + }, + { + "ID": 11125, + "SourceStructureID": 6117, + "TargetStructureID": 45220, + "Label": "6117-45220 via Ribbon Synapse from 30927 -> 86511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30927, + "TargetID": 86511, + "Directional": true + } + ] + }, + { + "ID": 11126, + "SourceStructureID": 6117, + "TargetStructureID": 54006, + "Label": "6117-54006 via Ribbon Synapse from 22385 -> 54009, 54012 -> 83283", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22385, + "TargetID": 54009, + "Directional": true + }, + { + "SourceID": 54012, + "TargetID": 83283, + "Directional": true + } + ] + }, + { + "ID": 11127, + "SourceStructureID": 6117, + "TargetStructureID": 54078, + "Label": "6117-54078 via Ribbon Synapse from 30883 -> 84246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30883, + "TargetID": 84246, + "Directional": true + } + ] + }, + { + "ID": 11128, + "SourceStructureID": 6117, + "TargetStructureID": 54287, + "Label": "6117-54287 via Ribbon Synapse from 54294 -> 54293, 85411 -> 85414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54294, + "TargetID": 54293, + "Directional": true + }, + { + "SourceID": 85411, + "TargetID": 85414, + "Directional": true + } + ] + }, + { + "ID": 11129, + "SourceStructureID": 6117, + "TargetStructureID": 55517, + "Label": "6117-55517 via Ribbon Synapse from 55577 -> 55578, 55593 -> 55592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55577, + "TargetID": 55578, + "Directional": true + }, + { + "SourceID": 55593, + "TargetID": 55592, + "Directional": true + } + ] + }, + { + "ID": 11130, + "SourceStructureID": 6117, + "TargetStructureID": 56841, + "Label": "6117-56841 via Ribbon Synapse from 83944 -> 83948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83944, + "TargetID": 83948, + "Directional": true + } + ] + }, + { + "ID": 11131, + "SourceStructureID": 6117, + "TargetStructureID": 58592, + "Label": "6117-58592 via Ribbon Synapse from 20573 -> 86144, 30908 -> 58639, 30916 -> 58640, 58594 -> 83129", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20573, + "TargetID": 86144, + "Directional": true + }, + { + "SourceID": 30908, + "TargetID": 58639, + "Directional": true + }, + { + "SourceID": 30916, + "TargetID": 58640, + "Directional": true + }, + { + "SourceID": 58594, + "TargetID": 83129, + "Directional": true + } + ] + }, + { + "ID": 11132, + "SourceStructureID": 6117, + "TargetStructureID": 58687, + "Label": "6117-58687 via Ribbon Synapse from 85999 -> 86006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85999, + "TargetID": 86006, + "Directional": true + } + ] + }, + { + "ID": 11133, + "SourceStructureID": 6117, + "TargetStructureID": 58691, + "Label": "6117-58691 via Ribbon Synapse from 10539 -> 84935, 84859 -> 84865, 84959 -> 84961, 84964 -> 84967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10539, + "TargetID": 84935, + "Directional": true + }, + { + "SourceID": 84859, + "TargetID": 84865, + "Directional": true + }, + { + "SourceID": 84959, + "TargetID": 84961, + "Directional": true + }, + { + "SourceID": 84964, + "TargetID": 84967, + "Directional": true + } + ] + }, + { + "ID": 11134, + "SourceStructureID": 6117, + "TargetStructureID": 58714, + "Label": "6117-58714 via Ribbon Synapse from 20573 -> 86142, 30910 -> 86414, 30916 -> 86484, 58731 -> 58730", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20573, + "TargetID": 86142, + "Directional": true + }, + { + "SourceID": 30910, + "TargetID": 86414, + "Directional": true + }, + { + "SourceID": 30916, + "TargetID": 86484, + "Directional": true + }, + { + "SourceID": 58731, + "TargetID": 58730, + "Directional": true + } + ] + }, + { + "ID": 11135, + "SourceStructureID": 6117, + "TargetStructureID": 58723, + "Label": "6117-58723 via Ribbon Synapse from 20570 -> 58727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20570, + "TargetID": 58727, + "Directional": true + } + ] + }, + { + "ID": 11136, + "SourceStructureID": 6117, + "TargetStructureID": 58741, + "Label": "6117-58741 via Ribbon Synapse from 30911 -> 58743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30911, + "TargetID": 58743, + "Directional": true + } + ] + }, + { + "ID": 11137, + "SourceStructureID": 6117, + "TargetStructureID": 58775, + "Label": "6117-58775 via Ribbon Synapse from 30917 -> 58776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30917, + "TargetID": 58776, + "Directional": true + } + ] + }, + { + "ID": 11138, + "SourceStructureID": 6117, + "TargetStructureID": 58777, + "Label": "6117-58777 via Ribbon Synapse from 30927 -> 58778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30927, + "TargetID": 58778, + "Directional": true + } + ] + }, + { + "ID": 11139, + "SourceStructureID": 6117, + "TargetStructureID": 58816, + "Label": "6117-58816 via Ribbon Synapse from 85986 -> 85987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85986, + "TargetID": 85987, + "Directional": true + } + ] + }, + { + "ID": 11140, + "SourceStructureID": 6117, + "TargetStructureID": 58825, + "Label": "6117-58825 via Ribbon Synapse from 58811 -> 58826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58811, + "TargetID": 58826, + "Directional": true + } + ] + }, + { + "ID": 11141, + "SourceStructureID": 6117, + "TargetStructureID": 59008, + "Label": "6117-59008 via Ribbon Synapse from 58811 -> 59010", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58811, + "TargetID": 59010, + "Directional": true + } + ] + }, + { + "ID": 11142, + "SourceStructureID": 6117, + "TargetStructureID": 59482, + "Label": "6117-59482 via Ribbon Synapse from 51530 -> 84654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51530, + "TargetID": 84654, + "Directional": true + } + ] + }, + { + "ID": 11143, + "SourceStructureID": 6117, + "TargetStructureID": 66374, + "Label": "6117-66374 via Ribbon Synapse from 30879 -> 66377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30879, + "TargetID": 66377, + "Directional": true + } + ] + }, + { + "ID": 11144, + "SourceStructureID": 6117, + "TargetStructureID": 66523, + "Label": "6117-66523 via Ribbon Synapse from 30869 -> 77928", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30869, + "TargetID": 77928, + "Directional": true + } + ] + }, + { + "ID": 11145, + "SourceStructureID": 6117, + "TargetStructureID": 68539, + "Label": "6117-68539 via Ribbon Synapse from 84371 -> 84381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84371, + "TargetID": 84381, + "Directional": true + } + ] + }, + { + "ID": 11146, + "SourceStructureID": 6117, + "TargetStructureID": 70388, + "Label": "6117-70388 via Ribbon Synapse from 70387 -> 70389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70387, + "TargetID": 70389, + "Directional": true + } + ] + }, + { + "ID": 11147, + "SourceStructureID": 6117, + "TargetStructureID": 70454, + "Label": "6117-70454 via Ribbon Synapse from 84198 -> 89562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84198, + "TargetID": 89562, + "Directional": true + } + ] + }, + { + "ID": 11148, + "SourceStructureID": 6117, + "TargetStructureID": 70460, + "Label": "6117-70460 via Ribbon Synapse from 30885 -> 70461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30885, + "TargetID": 70461, + "Directional": true + } + ] + }, + { + "ID": 11149, + "SourceStructureID": 6117, + "TargetStructureID": 70476, + "Label": "6117-70476 via Ribbon Synapse from 30934 -> 70477", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30934, + "TargetID": 70477, + "Directional": true + } + ] + }, + { + "ID": 11150, + "SourceStructureID": 6117, + "TargetStructureID": 75583, + "Label": "6117-75583 via Ribbon Synapse from 83209 -> 83210", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83209, + "TargetID": 83210, + "Directional": true + } + ] + }, + { + "ID": 11151, + "SourceStructureID": 6117, + "TargetStructureID": 82704, + "Label": "6117-82704 via Ribbon Synapse from 20577 -> 86181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20577, + "TargetID": 86181, + "Directional": true + } + ] + }, + { + "ID": 11152, + "SourceStructureID": 6117, + "TargetStructureID": 83147, + "Label": "6117-83147 via Ribbon Synapse from 83150 -> 83153", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83150, + "TargetID": 83153, + "Directional": true + } + ] + }, + { + "ID": 11153, + "SourceStructureID": 6117, + "TargetStructureID": 83157, + "Label": "6117-83157 via Ribbon Synapse from 83196 -> 83198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83196, + "TargetID": 83198, + "Directional": true + } + ] + }, + { + "ID": 11154, + "SourceStructureID": 6117, + "TargetStructureID": 83161, + "Label": "6117-83161 via Ribbon Synapse from 83196 -> 83197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83196, + "TargetID": 83197, + "Directional": true + } + ] + }, + { + "ID": 11155, + "SourceStructureID": 6117, + "TargetStructureID": 83163, + "Label": "6117-83163 via Ribbon Synapse from 83146 -> 83164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83146, + "TargetID": 83164, + "Directional": true + } + ] + }, + { + "ID": 11156, + "SourceStructureID": 6117, + "TargetStructureID": 83165, + "Label": "6117-83165 via Ribbon Synapse from 83146 -> 83166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83146, + "TargetID": 83166, + "Directional": true + } + ] + }, + { + "ID": 11157, + "SourceStructureID": 6117, + "TargetStructureID": 83186, + "Label": "6117-83186 via Ribbon Synapse from 83146 -> 83188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83146, + "TargetID": 83188, + "Directional": true + } + ] + }, + { + "ID": 11158, + "SourceStructureID": 6117, + "TargetStructureID": 83204, + "Label": "6117-83204 via Ribbon Synapse from 30888 -> 83207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30888, + "TargetID": 83207, + "Directional": true + } + ] + }, + { + "ID": 11159, + "SourceStructureID": 6117, + "TargetStructureID": 83205, + "Label": "6117-83205 via Ribbon Synapse from 30888 -> 83208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30888, + "TargetID": 83208, + "Directional": true + } + ] + }, + { + "ID": 11160, + "SourceStructureID": 6117, + "TargetStructureID": 83211, + "Label": "6117-83211 via Ribbon Synapse from 83209 -> 83212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83209, + "TargetID": 83212, + "Directional": true + } + ] + }, + { + "ID": 11161, + "SourceStructureID": 6117, + "TargetStructureID": 83214, + "Label": "6117-83214 via Ribbon Synapse from 83209 -> 83215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83209, + "TargetID": 83215, + "Directional": true + } + ] + }, + { + "ID": 11162, + "SourceStructureID": 6117, + "TargetStructureID": 83248, + "Label": "6117-83248 via Ribbon Synapse from 30925 -> 83249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30925, + "TargetID": 83249, + "Directional": true + } + ] + }, + { + "ID": 11163, + "SourceStructureID": 6117, + "TargetStructureID": 83253, + "Label": "6117-83253 via Ribbon Synapse from 83252 -> 83254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83252, + "TargetID": 83254, + "Directional": true + } + ] + }, + { + "ID": 11164, + "SourceStructureID": 6117, + "TargetStructureID": 83255, + "Label": "6117-83255 via Ribbon Synapse from 83252 -> 83256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83252, + "TargetID": 83256, + "Directional": true + } + ] + }, + { + "ID": 11165, + "SourceStructureID": 6117, + "TargetStructureID": 83270, + "Label": "6117-83270 via Ribbon Synapse from 30867 -> 83271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30867, + "TargetID": 83271, + "Directional": true + } + ] + }, + { + "ID": 11166, + "SourceStructureID": 6117, + "TargetStructureID": 83272, + "Label": "6117-83272 via Ribbon Synapse from 30867 -> 83273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30867, + "TargetID": 83273, + "Directional": true + } + ] + }, + { + "ID": 11167, + "SourceStructureID": 6117, + "TargetStructureID": 83282, + "Label": "6117-83282 via Ribbon Synapse from 54012 -> 83284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54012, + "TargetID": 83284, + "Directional": true + } + ] + }, + { + "ID": 11168, + "SourceStructureID": 6117, + "TargetStructureID": 83288, + "Label": "6117-83288 via Ribbon Synapse from 30869 -> 83289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30869, + "TargetID": 83289, + "Directional": true + } + ] + }, + { + "ID": 11169, + "SourceStructureID": 6117, + "TargetStructureID": 83290, + "Label": "6117-83290 via Ribbon Synapse from 30869 -> 83291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30869, + "TargetID": 83291, + "Directional": true + } + ] + }, + { + "ID": 11170, + "SourceStructureID": 6117, + "TargetStructureID": 83935, + "Label": "6117-83935 via Ribbon Synapse from 83934 -> 83936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83934, + "TargetID": 83936, + "Directional": true + } + ] + }, + { + "ID": 11171, + "SourceStructureID": 6117, + "TargetStructureID": 83949, + "Label": "6117-83949 via Ribbon Synapse from 83944 -> 83950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83944, + "TargetID": 83950, + "Directional": true + } + ] + }, + { + "ID": 11172, + "SourceStructureID": 6117, + "TargetStructureID": 83951, + "Label": "6117-83951 via Ribbon Synapse from 83944 -> 83952", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83944, + "TargetID": 83952, + "Directional": true + } + ] + }, + { + "ID": 11173, + "SourceStructureID": 6117, + "TargetStructureID": 83963, + "Label": "6117-83963 via Ribbon Synapse from 10717 -> 83964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10717, + "TargetID": 83964, + "Directional": true + } + ] + }, + { + "ID": 11174, + "SourceStructureID": 6117, + "TargetStructureID": 83972, + "Label": "6117-83972 via Ribbon Synapse from 83971 -> 83973", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83971, + "TargetID": 83973, + "Directional": true + } + ] + }, + { + "ID": 11175, + "SourceStructureID": 6117, + "TargetStructureID": 83974, + "Label": "6117-83974 via Ribbon Synapse from 30871 -> 83977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30871, + "TargetID": 83977, + "Directional": true + } + ] + }, + { + "ID": 11176, + "SourceStructureID": 6117, + "TargetStructureID": 83975, + "Label": "6117-83975 via Ribbon Synapse from 30871 -> 83976", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30871, + "TargetID": 83976, + "Directional": true + } + ] + }, + { + "ID": 11177, + "SourceStructureID": 6117, + "TargetStructureID": 84136, + "Label": "6117-84136 via Ribbon Synapse from 51546 -> 84139", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51546, + "TargetID": 84139, + "Directional": true + } + ] + }, + { + "ID": 11178, + "SourceStructureID": 6117, + "TargetStructureID": 84151, + "Label": "6117-84151 via Ribbon Synapse from 84153 -> 84154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84153, + "TargetID": 84154, + "Directional": true + } + ] + }, + { + "ID": 11179, + "SourceStructureID": 6117, + "TargetStructureID": 84165, + "Label": "6117-84165 via Ribbon Synapse from 45117 -> 84166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45117, + "TargetID": 84166, + "Directional": true + } + ] + }, + { + "ID": 11180, + "SourceStructureID": 6117, + "TargetStructureID": 84188, + "Label": "6117-84188 via Ribbon Synapse from 22385 -> 84189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22385, + "TargetID": 84189, + "Directional": true + } + ] + }, + { + "ID": 11181, + "SourceStructureID": 6117, + "TargetStructureID": 84201, + "Label": "6117-84201 via Ribbon Synapse from 84198 -> 84202", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84198, + "TargetID": 84202, + "Directional": true + } + ] + }, + { + "ID": 11182, + "SourceStructureID": 6117, + "TargetStructureID": 84203, + "Label": "6117-84203 via Ribbon Synapse from 22389 -> 84204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22389, + "TargetID": 84204, + "Directional": true + } + ] + }, + { + "ID": 11183, + "SourceStructureID": 6117, + "TargetStructureID": 84205, + "Label": "6117-84205 via Ribbon Synapse from 22389 -> 84206", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22389, + "TargetID": 84206, + "Directional": true + } + ] + }, + { + "ID": 11184, + "SourceStructureID": 6117, + "TargetStructureID": 84222, + "Label": "6117-84222 via Ribbon Synapse from 30875 -> 84223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30875, + "TargetID": 84223, + "Directional": true + } + ] + }, + { + "ID": 11185, + "SourceStructureID": 6117, + "TargetStructureID": 84228, + "Label": "6117-84228 via Ribbon Synapse from 30880 -> 84231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30880, + "TargetID": 84231, + "Directional": true + } + ] + }, + { + "ID": 11186, + "SourceStructureID": 6117, + "TargetStructureID": 84229, + "Label": "6117-84229 via Ribbon Synapse from 30880 -> 84230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30880, + "TargetID": 84230, + "Directional": true + } + ] + }, + { + "ID": 11187, + "SourceStructureID": 6117, + "TargetStructureID": 84237, + "Label": "6117-84237 via Ribbon Synapse from 30884 -> 84250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30884, + "TargetID": 84250, + "Directional": true + } + ] + }, + { + "ID": 11188, + "SourceStructureID": 6117, + "TargetStructureID": 84238, + "Label": "6117-84238 via Ribbon Synapse from 30884 -> 84249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30884, + "TargetID": 84249, + "Directional": true + } + ] + }, + { + "ID": 11189, + "SourceStructureID": 6117, + "TargetStructureID": 84256, + "Label": "6117-84256 via Ribbon Synapse from 84213 -> 84257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84213, + "TargetID": 84257, + "Directional": true + } + ] + }, + { + "ID": 11190, + "SourceStructureID": 6117, + "TargetStructureID": 84482, + "Label": "6117-84482 via Ribbon Synapse from 51326 -> 84484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51326, + "TargetID": 84484, + "Directional": true + } + ] + }, + { + "ID": 11191, + "SourceStructureID": 6117, + "TargetStructureID": 84650, + "Label": "6117-84650 via Ribbon Synapse from 84646 -> 84651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84646, + "TargetID": 84651, + "Directional": true + } + ] + }, + { + "ID": 11192, + "SourceStructureID": 6117, + "TargetStructureID": 84652, + "Label": "6117-84652 via Ribbon Synapse from 84646 -> 84653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84646, + "TargetID": 84653, + "Directional": true + } + ] + }, + { + "ID": 11193, + "SourceStructureID": 6117, + "TargetStructureID": 84790, + "Label": "6117-84790 via Ribbon Synapse from 10529 -> 84856, 10539 -> 84932", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10529, + "TargetID": 84856, + "Directional": true + }, + { + "SourceID": 10539, + "TargetID": 84932, + "Directional": true + } + ] + }, + { + "ID": 11194, + "SourceStructureID": 6117, + "TargetStructureID": 84858, + "Label": "6117-84858 via Ribbon Synapse from 84859 -> 84860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84859, + "TargetID": 84860, + "Directional": true + } + ] + }, + { + "ID": 11195, + "SourceStructureID": 6117, + "TargetStructureID": 84861, + "Label": "6117-84861 via Ribbon Synapse from 84859 -> 84862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84859, + "TargetID": 84862, + "Directional": true + } + ] + }, + { + "ID": 11196, + "SourceStructureID": 6117, + "TargetStructureID": 84948, + "Label": "6117-84948 via Ribbon Synapse from 30895 -> 84949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30895, + "TargetID": 84949, + "Directional": true + } + ] + }, + { + "ID": 11197, + "SourceStructureID": 6117, + "TargetStructureID": 84950, + "Label": "6117-84950 via Ribbon Synapse from 30891 -> 84952", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30891, + "TargetID": 84952, + "Directional": true + } + ] + }, + { + "ID": 11198, + "SourceStructureID": 6117, + "TargetStructureID": 84957, + "Label": "6117-84957 via BC Conventional Synapse from 86093 -> 86094", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86093, + "TargetID": 86094, + "Directional": true + } + ] + }, + { + "ID": 11199, + "SourceStructureID": 6117, + "TargetStructureID": 84957, + "Label": "6117-84957 via Ribbon Synapse from 84959 -> 84960", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84959, + "TargetID": 84960, + "Directional": true + } + ] + }, + { + "ID": 11200, + "SourceStructureID": 6117, + "TargetStructureID": 84965, + "Label": "6117-84965 via Ribbon Synapse from 84964 -> 84966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84964, + "TargetID": 84966, + "Directional": true + } + ] + }, + { + "ID": 11201, + "SourceStructureID": 6117, + "TargetStructureID": 85013, + "Label": "6117-85013 via Ribbon Synapse from 85012 -> 85014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85012, + "TargetID": 85014, + "Directional": true + } + ] + }, + { + "ID": 11202, + "SourceStructureID": 6117, + "TargetStructureID": 85015, + "Label": "6117-85015 via Ribbon Synapse from 30899 -> 85283", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30899, + "TargetID": 85283, + "Directional": true + } + ] + }, + { + "ID": 11203, + "SourceStructureID": 6117, + "TargetStructureID": 85235, + "Label": "6117-85235 via Ribbon Synapse from 85223 -> 85238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85223, + "TargetID": 85238, + "Directional": true + } + ] + }, + { + "ID": 11204, + "SourceStructureID": 6117, + "TargetStructureID": 85239, + "Label": "6117-85239 via Ribbon Synapse from 30897 -> 85242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30897, + "TargetID": 85242, + "Directional": true + } + ] + }, + { + "ID": 11205, + "SourceStructureID": 6117, + "TargetStructureID": 85240, + "Label": "6117-85240 via Ribbon Synapse from 30897 -> 85241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30897, + "TargetID": 85241, + "Directional": true + } + ] + }, + { + "ID": 11206, + "SourceStructureID": 6117, + "TargetStructureID": 85279, + "Label": "6117-85279 via Ribbon Synapse from 30899 -> 85282, 85280 -> 85281", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30899, + "TargetID": 85282, + "Directional": true + }, + { + "SourceID": 85280, + "TargetID": 85281, + "Directional": true + } + ] + }, + { + "ID": 11207, + "SourceStructureID": 6117, + "TargetStructureID": 85317, + "Label": "6117-85317 via Ribbon Synapse from 54285 -> 85318", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54285, + "TargetID": 85318, + "Directional": true + } + ] + }, + { + "ID": 11208, + "SourceStructureID": 6117, + "TargetStructureID": 85404, + "Label": "6117-85404 via Ribbon Synapse from 85403 -> 85407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85403, + "TargetID": 85407, + "Directional": true + } + ] + }, + { + "ID": 11209, + "SourceStructureID": 6117, + "TargetStructureID": 85405, + "Label": "6117-85405 via Ribbon Synapse from 85403 -> 85406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85403, + "TargetID": 85406, + "Directional": true + } + ] + }, + { + "ID": 11210, + "SourceStructureID": 6117, + "TargetStructureID": 85412, + "Label": "6117-85412 via Ribbon Synapse from 85411 -> 85413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85411, + "TargetID": 85413, + "Directional": true + } + ] + }, + { + "ID": 11211, + "SourceStructureID": 6117, + "TargetStructureID": 85661, + "Label": "6117-85661 via Ribbon Synapse from 58803 -> 85663, 86013 -> 86076, 86074 -> 86079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58803, + "TargetID": 85663, + "Directional": true + }, + { + "SourceID": 86013, + "TargetID": 86076, + "Directional": true + }, + { + "SourceID": 86074, + "TargetID": 86079, + "Directional": true + } + ] + }, + { + "ID": 11212, + "SourceStructureID": 6117, + "TargetStructureID": 85891, + "Label": "6117-85891 via Ribbon Synapse from 58804 -> 85923, 58806 -> 85894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58804, + "TargetID": 85923, + "Directional": true + }, + { + "SourceID": 58806, + "TargetID": 85894, + "Directional": true + } + ] + }, + { + "ID": 11213, + "SourceStructureID": 6117, + "TargetStructureID": 85905, + "Label": "6117-85905 via Ribbon Synapse from 58804 -> 85922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58804, + "TargetID": 85922, + "Directional": true + } + ] + }, + { + "ID": 11214, + "SourceStructureID": 6117, + "TargetStructureID": 85931, + "Label": "6117-85931 via Ribbon Synapse from 58805 -> 85934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58805, + "TargetID": 85934, + "Directional": true + } + ] + }, + { + "ID": 11215, + "SourceStructureID": 6117, + "TargetStructureID": 85932, + "Label": "6117-85932 via Ribbon Synapse from 58805 -> 85933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58805, + "TargetID": 85933, + "Directional": true + } + ] + }, + { + "ID": 11216, + "SourceStructureID": 6117, + "TargetStructureID": 85955, + "Label": "6117-85955 via Ribbon Synapse from 85960 -> 85961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85960, + "TargetID": 85961, + "Directional": true + } + ] + }, + { + "ID": 11217, + "SourceStructureID": 6117, + "TargetStructureID": 85964, + "Label": "6117-85964 via Ribbon Synapse from 58808 -> 85967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58808, + "TargetID": 85967, + "Directional": true + } + ] + }, + { + "ID": 11218, + "SourceStructureID": 6117, + "TargetStructureID": 85965, + "Label": "6117-85965 via Ribbon Synapse from 58808 -> 85966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58808, + "TargetID": 85966, + "Directional": true + } + ] + }, + { + "ID": 11219, + "SourceStructureID": 6117, + "TargetStructureID": 86004, + "Label": "6117-86004 via Ribbon Synapse from 85999 -> 86005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85999, + "TargetID": 86005, + "Directional": true + } + ] + }, + { + "ID": 11220, + "SourceStructureID": 6117, + "TargetStructureID": 86010, + "Label": "6117-86010 via Ribbon Synapse from 10528 -> 86011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10528, + "TargetID": 86011, + "Directional": true + } + ] + }, + { + "ID": 11221, + "SourceStructureID": 6117, + "TargetStructureID": 86017, + "Label": "6117-86017 via Ribbon Synapse from 86016 -> 86018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86016, + "TargetID": 86018, + "Directional": true + } + ] + }, + { + "ID": 11222, + "SourceStructureID": 6117, + "TargetStructureID": 86042, + "Label": "6117-86042 via Ribbon Synapse from 10534 -> 86043", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10534, + "TargetID": 86043, + "Directional": true + } + ] + }, + { + "ID": 11223, + "SourceStructureID": 6117, + "TargetStructureID": 86070, + "Label": "6117-86070 via Ribbon Synapse from 59085 -> 86071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59085, + "TargetID": 86071, + "Directional": true + } + ] + }, + { + "ID": 11224, + "SourceStructureID": 6117, + "TargetStructureID": 86072, + "Label": "6117-86072 via Ribbon Synapse from 59085 -> 86073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59085, + "TargetID": 86073, + "Directional": true + } + ] + }, + { + "ID": 11225, + "SourceStructureID": 6117, + "TargetStructureID": 86077, + "Label": "6117-86077 via Ribbon Synapse from 86074 -> 86078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86074, + "TargetID": 86078, + "Directional": true + } + ] + }, + { + "ID": 11226, + "SourceStructureID": 6117, + "TargetStructureID": 86110, + "Label": "6117-86110 via Ribbon Synapse from 20573 -> 86143, 58731 -> 86111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20573, + "TargetID": 86143, + "Directional": true + }, + { + "SourceID": 58731, + "TargetID": 86111, + "Directional": true + } + ] + }, + { + "ID": 11227, + "SourceStructureID": 6117, + "TargetStructureID": 86114, + "Label": "6117-86114 via Ribbon Synapse from 86113 -> 86117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86113, + "TargetID": 86117, + "Directional": true + } + ] + }, + { + "ID": 11228, + "SourceStructureID": 6117, + "TargetStructureID": 86145, + "Label": "6117-86145 via Ribbon Synapse from 86127 -> 86146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86127, + "TargetID": 86146, + "Directional": true + } + ] + }, + { + "ID": 11229, + "SourceStructureID": 6117, + "TargetStructureID": 86147, + "Label": "6117-86147 via Ribbon Synapse from 86127 -> 86148", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86127, + "TargetID": 86148, + "Directional": true + } + ] + }, + { + "ID": 11230, + "SourceStructureID": 6117, + "TargetStructureID": 86149, + "Label": "6117-86149 via Ribbon Synapse from 86127 -> 86150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86127, + "TargetID": 86150, + "Directional": true + } + ] + }, + { + "ID": 11231, + "SourceStructureID": 6117, + "TargetStructureID": 86165, + "Label": "6117-86165 via Ribbon Synapse from 86186 -> 86189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86186, + "TargetID": 86189, + "Directional": true + } + ] + }, + { + "ID": 11232, + "SourceStructureID": 6117, + "TargetStructureID": 86178, + "Label": "6117-86178 via Ribbon Synapse from 20577 -> 86180", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20577, + "TargetID": 86180, + "Directional": true + } + ] + }, + { + "ID": 11233, + "SourceStructureID": 6117, + "TargetStructureID": 86182, + "Label": "6117-86182 via Ribbon Synapse from 20576 -> 86183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20576, + "TargetID": 86183, + "Directional": true + } + ] + }, + { + "ID": 11234, + "SourceStructureID": 6117, + "TargetStructureID": 86192, + "Label": "6117-86192 via Ribbon Synapse from 20581 -> 86197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20581, + "TargetID": 86197, + "Directional": true + } + ] + }, + { + "ID": 11235, + "SourceStructureID": 6117, + "TargetStructureID": 86198, + "Label": "6117-86198 via Ribbon Synapse from 20581 -> 86199", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20581, + "TargetID": 86199, + "Directional": true + } + ] + }, + { + "ID": 11236, + "SourceStructureID": 6117, + "TargetStructureID": 86201, + "Label": "6117-86201 via Ribbon Synapse from 20579 -> 86203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20579, + "TargetID": 86203, + "Directional": true + } + ] + }, + { + "ID": 11237, + "SourceStructureID": 6117, + "TargetStructureID": 86209, + "Label": "6117-86209 via Ribbon Synapse from 20583 -> 86213", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20583, + "TargetID": 86213, + "Directional": true + } + ] + }, + { + "ID": 11238, + "SourceStructureID": 6117, + "TargetStructureID": 86210, + "Label": "6117-86210 via Ribbon Synapse from 20583 -> 86214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20583, + "TargetID": 86214, + "Directional": true + } + ] + }, + { + "ID": 11239, + "SourceStructureID": 6117, + "TargetStructureID": 86211, + "Label": "6117-86211 via Ribbon Synapse from 20583 -> 86212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20583, + "TargetID": 86212, + "Directional": true + } + ] + }, + { + "ID": 11240, + "SourceStructureID": 6117, + "TargetStructureID": 86215, + "Label": "6117-86215 via Ribbon Synapse from 20582 -> 86216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20582, + "TargetID": 86216, + "Directional": true + } + ] + }, + { + "ID": 11241, + "SourceStructureID": 6117, + "TargetStructureID": 86237, + "Label": "6117-86237 via Ribbon Synapse from 20585 -> 86238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20585, + "TargetID": 86238, + "Directional": true + } + ] + }, + { + "ID": 11242, + "SourceStructureID": 6117, + "TargetStructureID": 86246, + "Label": "6117-86246 via BC Conventional Synapse from 86248 -> 86249", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86248, + "TargetID": 86249, + "Directional": true + } + ] + }, + { + "ID": 11243, + "SourceStructureID": 6117, + "TargetStructureID": 86246, + "Label": "6117-86246 via Ribbon Synapse from 20589 -> 86250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20589, + "TargetID": 86250, + "Directional": true + } + ] + }, + { + "ID": 11244, + "SourceStructureID": 6117, + "TargetStructureID": 86254, + "Label": "6117-86254 via Ribbon Synapse from 86253 -> 86255", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86253, + "TargetID": 86255, + "Directional": true + } + ] + }, + { + "ID": 11245, + "SourceStructureID": 6117, + "TargetStructureID": 86268, + "Label": "6117-86268 via Ribbon Synapse from 30933 -> 86269", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30933, + "TargetID": 86269, + "Directional": true + } + ] + }, + { + "ID": 11246, + "SourceStructureID": 6117, + "TargetStructureID": 86272, + "Label": "6117-86272 via Ribbon Synapse from 30931 -> 86273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30931, + "TargetID": 86273, + "Directional": true + } + ] + }, + { + "ID": 11247, + "SourceStructureID": 6117, + "TargetStructureID": 86274, + "Label": "6117-86274 via Ribbon Synapse from 30932 -> 86275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30932, + "TargetID": 86275, + "Directional": true + } + ] + }, + { + "ID": 11248, + "SourceStructureID": 6117, + "TargetStructureID": 86282, + "Label": "6117-86282 via BC Conventional Synapse from 86284 -> 86283, 86290 -> 86291", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86284, + "TargetID": 86283, + "Directional": true + }, + { + "SourceID": 86290, + "TargetID": 86291, + "Directional": true + } + ] + }, + { + "ID": 11249, + "SourceStructureID": 6117, + "TargetStructureID": 86330, + "Label": "6117-86330 via Ribbon Synapse from 86336 -> 86333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86336, + "TargetID": 86333, + "Directional": true + } + ] + }, + { + "ID": 11250, + "SourceStructureID": 6117, + "TargetStructureID": 86334, + "Label": "6117-86334 via Ribbon Synapse from 86336 -> 86337", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86336, + "TargetID": 86337, + "Directional": true + } + ] + }, + { + "ID": 11251, + "SourceStructureID": 6117, + "TargetStructureID": 86345, + "Label": "6117-86345 via Postsynapse from 86344 -> 86346", + "Type": "Postsynapse", + "Directional": true, + "Links": [ + { + "SourceID": 86344, + "TargetID": 86346, + "Directional": true + } + ] + }, + { + "ID": 11252, + "SourceStructureID": 6117, + "TargetStructureID": 86356, + "Label": "6117-86356 via Ribbon Synapse from 30902 -> 86357", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30902, + "TargetID": 86357, + "Directional": true + } + ] + }, + { + "ID": 11253, + "SourceStructureID": 6117, + "TargetStructureID": 86366, + "Label": "6117-86366 via Ribbon Synapse from 30907 -> 86406, 86365 -> 86367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30907, + "TargetID": 86406, + "Directional": true + }, + { + "SourceID": 86365, + "TargetID": 86367, + "Directional": true + } + ] + }, + { + "ID": 11254, + "SourceStructureID": 6117, + "TargetStructureID": 86383, + "Label": "6117-86383 via Ribbon Synapse from 30930 -> 86384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30930, + "TargetID": 86384, + "Directional": true + } + ] + }, + { + "ID": 11255, + "SourceStructureID": 6117, + "TargetStructureID": 86385, + "Label": "6117-86385 via Ribbon Synapse from 30930 -> 86386", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30930, + "TargetID": 86386, + "Directional": true + } + ] + }, + { + "ID": 11256, + "SourceStructureID": 6117, + "TargetStructureID": 86391, + "Label": "6117-86391 via Ribbon Synapse from 30906 -> 86394", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30906, + "TargetID": 86394, + "Directional": true + } + ] + }, + { + "ID": 11257, + "SourceStructureID": 6117, + "TargetStructureID": 86395, + "Label": "6117-86395 via Ribbon Synapse from 30906 -> 86396", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30906, + "TargetID": 86396, + "Directional": true + } + ] + }, + { + "ID": 11258, + "SourceStructureID": 6117, + "TargetStructureID": 86397, + "Label": "6117-86397 via Ribbon Synapse from 86400 -> 86401", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86400, + "TargetID": 86401, + "Directional": true + } + ] + }, + { + "ID": 11259, + "SourceStructureID": 6117, + "TargetStructureID": 86402, + "Label": "6117-86402 via Ribbon Synapse from 86400 -> 86403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86400, + "TargetID": 86403, + "Directional": true + } + ] + }, + { + "ID": 11260, + "SourceStructureID": 6117, + "TargetStructureID": 86412, + "Label": "6117-86412 via Ribbon Synapse from 30910 -> 86413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30910, + "TargetID": 86413, + "Directional": true + } + ] + }, + { + "ID": 11261, + "SourceStructureID": 6117, + "TargetStructureID": 86418, + "Label": "6117-86418 via Ribbon Synapse from 30911 -> 86419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30911, + "TargetID": 86419, + "Directional": true + } + ] + }, + { + "ID": 11262, + "SourceStructureID": 6117, + "TargetStructureID": 86422, + "Label": "6117-86422 via Ribbon Synapse from 30913 -> 86423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30913, + "TargetID": 86423, + "Directional": true + } + ] + }, + { + "ID": 11263, + "SourceStructureID": 6117, + "TargetStructureID": 86435, + "Label": "6117-86435 via Ribbon Synapse from 30914 -> 86436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30914, + "TargetID": 86436, + "Directional": true + } + ] + }, + { + "ID": 11264, + "SourceStructureID": 6117, + "TargetStructureID": 86444, + "Label": "6117-86444 via Ribbon Synapse from 86443 -> 86446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86443, + "TargetID": 86446, + "Directional": true + } + ] + }, + { + "ID": 11265, + "SourceStructureID": 6117, + "TargetStructureID": 86449, + "Label": "6117-86449 via Ribbon Synapse from 86443 -> 86452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86443, + "TargetID": 86452, + "Directional": true + } + ] + }, + { + "ID": 11266, + "SourceStructureID": 6117, + "TargetStructureID": 86462, + "Label": "6117-86462 via Ribbon Synapse from 30929 -> 86463", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30929, + "TargetID": 86463, + "Directional": true + } + ] + }, + { + "ID": 11267, + "SourceStructureID": 6117, + "TargetStructureID": 86464, + "Label": "6117-86464 via Ribbon Synapse from 30929 -> 86465", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30929, + "TargetID": 86465, + "Directional": true + } + ] + }, + { + "ID": 11268, + "SourceStructureID": 6117, + "TargetStructureID": 86466, + "Label": "6117-86466 via Ribbon Synapse from 30929 -> 86467", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30929, + "TargetID": 86467, + "Directional": true + } + ] + }, + { + "ID": 11269, + "SourceStructureID": 6117, + "TargetStructureID": 86479, + "Label": "6117-86479 via Ribbon Synapse from 30916 -> 86480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30916, + "TargetID": 86480, + "Directional": true + } + ] + }, + { + "ID": 11270, + "SourceStructureID": 6117, + "TargetStructureID": 86502, + "Label": "6117-86502 via Ribbon Synapse from 30917 -> 86503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30917, + "TargetID": 86503, + "Directional": true + } + ] + }, + { + "ID": 11271, + "SourceStructureID": 6117, + "TargetStructureID": 86516, + "Label": "6117-86516 via Ribbon Synapse from 30928 -> 86517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30928, + "TargetID": 86517, + "Directional": true + } + ] + }, + { + "ID": 11272, + "SourceStructureID": 6117, + "TargetStructureID": 86518, + "Label": "6117-86518 via Ribbon Synapse from 30928 -> 86519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30928, + "TargetID": 86519, + "Directional": true + } + ] + }, + { + "ID": 11273, + "SourceStructureID": 6117, + "TargetStructureID": 86565, + "Label": "6117-86565 via Ribbon Synapse from 86090 -> 86566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 86090, + "TargetID": 86566, + "Directional": true + } + ] + }, + { + "ID": 11274, + "SourceStructureID": 6117, + "TargetStructureID": 86607, + "Label": "6117-86607 via Ribbon Synapse from 30922 -> 86618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30922, + "TargetID": 86618, + "Directional": true + } + ] + }, + { + "ID": 11275, + "SourceStructureID": 6118, + "TargetStructureID": 5107, + "Label": "6118-5107 via Ribbon Synapse from 120673 -> 120671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120673, + "TargetID": 120671, + "Directional": true + } + ] + }, + { + "ID": 11276, + "SourceStructureID": 6118, + "TargetStructureID": 65020, + "Label": "6118-65020 via Ribbon Synapse from 65026 -> 65022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65026, + "TargetID": 65022, + "Directional": true + } + ] + }, + { + "ID": 11277, + "SourceStructureID": 6118, + "TargetStructureID": 65023, + "Label": "6118-65023 via Ribbon Synapse from 65033 -> 65034", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65033, + "TargetID": 65034, + "Directional": true + } + ] + }, + { + "ID": 11278, + "SourceStructureID": 6118, + "TargetStructureID": 65035, + "Label": "6118-65035 via Ribbon Synapse from 65033 -> 65036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65033, + "TargetID": 65036, + "Directional": true + } + ] + }, + { + "ID": 11279, + "SourceStructureID": 6118, + "TargetStructureID": 65047, + "Label": "6118-65047 via Ribbon Synapse from 65026 -> 65048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65026, + "TargetID": 65048, + "Directional": true + } + ] + }, + { + "ID": 11280, + "SourceStructureID": 6118, + "TargetStructureID": 136700, + "Label": "6118-136700 via BC Conventional Synapse from 136699 -> 136701", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136699, + "TargetID": 136701, + "Directional": true + } + ] + }, + { + "ID": 11281, + "SourceStructureID": 6120, + "TargetStructureID": 598, + "Label": "6120-598 via Ribbon Synapse from 61176 -> 111236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61176, + "TargetID": 111236, + "Directional": true + } + ] + }, + { + "ID": 11282, + "SourceStructureID": 6120, + "TargetStructureID": 606, + "Label": "6120-606 via Ribbon Synapse from 51491 -> 51492, 51495 -> 51496, 51500 -> 51502, 51505 -> 51504, 51519 -> 50969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51491, + "TargetID": 51492, + "Directional": true + }, + { + "SourceID": 51495, + "TargetID": 51496, + "Directional": true + }, + { + "SourceID": 51500, + "TargetID": 51502, + "Directional": true + }, + { + "SourceID": 51505, + "TargetID": 51504, + "Directional": true + }, + { + "SourceID": 51519, + "TargetID": 50969, + "Directional": true + } + ] + }, + { + "ID": 11283, + "SourceStructureID": 6120, + "TargetStructureID": 5107, + "Label": "6120-5107 via Ribbon Synapse from 111678 -> 111682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111678, + "TargetID": 111682, + "Directional": true + } + ] + }, + { + "ID": 11284, + "SourceStructureID": 6120, + "TargetStructureID": 7594, + "Label": "6120-7594 via Ribbon Synapse from 111246 -> 25084, 111669 -> 111675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111246, + "TargetID": 25084, + "Directional": true + }, + { + "SourceID": 111669, + "TargetID": 111675, + "Directional": true + } + ] + }, + { + "ID": 11285, + "SourceStructureID": 6120, + "TargetStructureID": 9769, + "Label": "6120-9769 via Ribbon Synapse from 30179 -> 30167, 51519 -> 30166, 61191 -> 111484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30179, + "TargetID": 30167, + "Directional": true + }, + { + "SourceID": 51519, + "TargetID": 30166, + "Directional": true + }, + { + "SourceID": 61191, + "TargetID": 111484, + "Directional": true + } + ] + }, + { + "ID": 11286, + "SourceStructureID": 6120, + "TargetStructureID": 16073, + "Label": "6120-16073 via Ribbon Synapse from 61177 -> 111254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61177, + "TargetID": 111254, + "Directional": true + } + ] + }, + { + "ID": 11287, + "SourceStructureID": 6120, + "TargetStructureID": 31334, + "Label": "6120-31334 via Ribbon Synapse from 98734 -> 98733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98734, + "TargetID": 98733, + "Directional": true + } + ] + }, + { + "ID": 11288, + "SourceStructureID": 6120, + "TargetStructureID": 32477, + "Label": "6120-32477 via Ribbon Synapse from 32506 -> 32504, 101195 -> 101197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32506, + "TargetID": 32504, + "Directional": true + }, + { + "SourceID": 101195, + "TargetID": 101197, + "Directional": true + } + ] + }, + { + "ID": 11289, + "SourceStructureID": 6120, + "TargetStructureID": 35367, + "Label": "6120-35367 via Ribbon Synapse from 51500 -> 110754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51500, + "TargetID": 110754, + "Directional": true + } + ] + }, + { + "ID": 11290, + "SourceStructureID": 6120, + "TargetStructureID": 52410, + "Label": "6120-52410 via Ribbon Synapse from 37240 -> 52416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37240, + "TargetID": 52416, + "Directional": true + } + ] + }, + { + "ID": 11291, + "SourceStructureID": 6120, + "TargetStructureID": 60491, + "Label": "6120-60491 via Ribbon Synapse from 60489 -> 60493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60489, + "TargetID": 60493, + "Directional": true + } + ] + }, + { + "ID": 11292, + "SourceStructureID": 6120, + "TargetStructureID": 60494, + "Label": "6120-60494 via Ribbon Synapse from 32506 -> 60495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32506, + "TargetID": 60495, + "Directional": true + } + ] + }, + { + "ID": 11293, + "SourceStructureID": 6120, + "TargetStructureID": 64923, + "Label": "6120-64923 via Ribbon Synapse from 64929 -> 64928", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64929, + "TargetID": 64928, + "Directional": true + } + ] + }, + { + "ID": 11294, + "SourceStructureID": 6120, + "TargetStructureID": 68539, + "Label": "6120-68539 via BC Conventional Synapse from 111725 -> 111726", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111725, + "TargetID": 111726, + "Directional": true + } + ] + }, + { + "ID": 11295, + "SourceStructureID": 6120, + "TargetStructureID": 68539, + "Label": "6120-68539 via Ribbon Synapse from 110765 -> 69140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110765, + "TargetID": 69140, + "Directional": true + } + ] + }, + { + "ID": 11296, + "SourceStructureID": 6120, + "TargetStructureID": 87428, + "Label": "6120-87428 via Ribbon Synapse from 111408 -> 111409", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111408, + "TargetID": 111409, + "Directional": true + } + ] + }, + { + "ID": 11297, + "SourceStructureID": 6120, + "TargetStructureID": 89124, + "Label": "6120-89124 via Ribbon Synapse from 110549 -> 89342", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110549, + "TargetID": 89342, + "Directional": true + } + ] + }, + { + "ID": 11298, + "SourceStructureID": 6120, + "TargetStructureID": 101184, + "Label": "6120-101184 via Ribbon Synapse from 51519 -> 111488", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51519, + "TargetID": 111488, + "Directional": true + } + ] + }, + { + "ID": 11299, + "SourceStructureID": 6120, + "TargetStructureID": 110493, + "Label": "6120-110493 via Cistern Pre from 37229 -> 110495", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 37229, + "TargetID": 110495, + "Directional": true + } + ] + }, + { + "ID": 11300, + "SourceStructureID": 6120, + "TargetStructureID": 110499, + "Label": "6120-110499 via BC Conventional Synapse from 37234 -> 110500", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37234, + "TargetID": 110500, + "Directional": true + } + ] + }, + { + "ID": 11301, + "SourceStructureID": 6120, + "TargetStructureID": 110501, + "Label": "6120-110501 via Ribbon Synapse from 37235 -> 110502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37235, + "TargetID": 110502, + "Directional": true + } + ] + }, + { + "ID": 11302, + "SourceStructureID": 6120, + "TargetStructureID": 110503, + "Label": "6120-110503 via Ribbon Synapse from 37237 -> 110504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37237, + "TargetID": 110504, + "Directional": true + } + ] + }, + { + "ID": 11303, + "SourceStructureID": 6120, + "TargetStructureID": 110506, + "Label": "6120-110506 via Ribbon Synapse from 37237 -> 110507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37237, + "TargetID": 110507, + "Directional": true + } + ] + }, + { + "ID": 11304, + "SourceStructureID": 6120, + "TargetStructureID": 110510, + "Label": "6120-110510 via BC Conventional Synapse from 110508 -> 110511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110508, + "TargetID": 110511, + "Directional": true + } + ] + }, + { + "ID": 11305, + "SourceStructureID": 6120, + "TargetStructureID": 110512, + "Label": "6120-110512 via Ribbon Synapse from 37238 -> 110513", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37238, + "TargetID": 110513, + "Directional": true + } + ] + }, + { + "ID": 11306, + "SourceStructureID": 6120, + "TargetStructureID": 110516, + "Label": "6120-110516 via Ribbon Synapse from 37240 -> 110517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37240, + "TargetID": 110517, + "Directional": true + } + ] + }, + { + "ID": 11307, + "SourceStructureID": 6120, + "TargetStructureID": 110547, + "Label": "6120-110547 via Ribbon Synapse from 110546 -> 110548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110546, + "TargetID": 110548, + "Directional": true + } + ] + }, + { + "ID": 11308, + "SourceStructureID": 6120, + "TargetStructureID": 110557, + "Label": "6120-110557 via Ribbon Synapse from 110549 -> 110558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110549, + "TargetID": 110558, + "Directional": true + } + ] + }, + { + "ID": 11309, + "SourceStructureID": 6120, + "TargetStructureID": 110567, + "Label": "6120-110567 via Ribbon Synapse from 37245 -> 110569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37245, + "TargetID": 110569, + "Directional": true + } + ] + }, + { + "ID": 11310, + "SourceStructureID": 6120, + "TargetStructureID": 110570, + "Label": "6120-110570 via Ribbon Synapse from 37244 -> 110571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37244, + "TargetID": 110571, + "Directional": true + } + ] + }, + { + "ID": 11311, + "SourceStructureID": 6120, + "TargetStructureID": 110583, + "Label": "6120-110583 via Ribbon Synapse from 37248 -> 110585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37248, + "TargetID": 110585, + "Directional": true + } + ] + }, + { + "ID": 11312, + "SourceStructureID": 6120, + "TargetStructureID": 110586, + "Label": "6120-110586 via Ribbon Synapse from 37248 -> 110587", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37248, + "TargetID": 110587, + "Directional": true + } + ] + }, + { + "ID": 11313, + "SourceStructureID": 6120, + "TargetStructureID": 110595, + "Label": "6120-110595 via Ribbon Synapse from 37250 -> 110596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37250, + "TargetID": 110596, + "Directional": true + } + ] + }, + { + "ID": 11314, + "SourceStructureID": 6120, + "TargetStructureID": 110607, + "Label": "6120-110607 via BC Conventional Synapse from 110577 -> 110576", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110577, + "TargetID": 110576, + "Directional": true + } + ] + }, + { + "ID": 11315, + "SourceStructureID": 6120, + "TargetStructureID": 110610, + "Label": "6120-110610 via Ribbon Synapse from 110612 -> 110613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110612, + "TargetID": 110613, + "Directional": true + } + ] + }, + { + "ID": 11316, + "SourceStructureID": 6120, + "TargetStructureID": 110614, + "Label": "6120-110614 via Ribbon Synapse from 110612 -> 110615", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110612, + "TargetID": 110615, + "Directional": true + } + ] + }, + { + "ID": 11317, + "SourceStructureID": 6120, + "TargetStructureID": 110622, + "Label": "6120-110622 via Ribbon Synapse from 110632 -> 110634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110632, + "TargetID": 110634, + "Directional": true + } + ] + }, + { + "ID": 11318, + "SourceStructureID": 6120, + "TargetStructureID": 110623, + "Label": "6120-110623 via Ribbon Synapse from 110632 -> 110633", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110632, + "TargetID": 110633, + "Directional": true + } + ] + }, + { + "ID": 11319, + "SourceStructureID": 6120, + "TargetStructureID": 110641, + "Label": "6120-110641 via Ribbon Synapse from 110639 -> 110642", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110639, + "TargetID": 110642, + "Directional": true + } + ] + }, + { + "ID": 11320, + "SourceStructureID": 6120, + "TargetStructureID": 110644, + "Label": "6120-110644 via Ribbon Synapse from 110635 -> 110645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110635, + "TargetID": 110645, + "Directional": true + } + ] + }, + { + "ID": 11321, + "SourceStructureID": 6120, + "TargetStructureID": 110731, + "Label": "6120-110731 via Ribbon Synapse from 61163 -> 110732, 61164 -> 110733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61163, + "TargetID": 110732, + "Directional": true + }, + { + "SourceID": 61164, + "TargetID": 110733, + "Directional": true + } + ] + }, + { + "ID": 11322, + "SourceStructureID": 6120, + "TargetStructureID": 110734, + "Label": "6120-110734 via Ribbon Synapse from 61164 -> 110777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61164, + "TargetID": 110777, + "Directional": true + } + ] + }, + { + "ID": 11323, + "SourceStructureID": 6120, + "TargetStructureID": 110738, + "Label": "6120-110738 via Ribbon Synapse from 61163 -> 110739", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61163, + "TargetID": 110739, + "Directional": true + } + ] + }, + { + "ID": 11324, + "SourceStructureID": 6120, + "TargetStructureID": 110747, + "Label": "6120-110747 via BC Conventional Synapse from 110746 -> 110748", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110746, + "TargetID": 110748, + "Directional": true + } + ] + }, + { + "ID": 11325, + "SourceStructureID": 6120, + "TargetStructureID": 110758, + "Label": "6120-110758 via BC Conventional Synapse from 110757 -> 110759", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110757, + "TargetID": 110759, + "Directional": true + } + ] + }, + { + "ID": 11326, + "SourceStructureID": 6120, + "TargetStructureID": 110760, + "Label": "6120-110760 via Ribbon Synapse from 51501 -> 110761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51501, + "TargetID": 110761, + "Directional": true + } + ] + }, + { + "ID": 11327, + "SourceStructureID": 6120, + "TargetStructureID": 110762, + "Label": "6120-110762 via Ribbon Synapse from 51501 -> 110781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51501, + "TargetID": 110781, + "Directional": true + } + ] + }, + { + "ID": 11328, + "SourceStructureID": 6120, + "TargetStructureID": 110763, + "Label": "6120-110763 via Ribbon Synapse from 61163 -> 110764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61163, + "TargetID": 110764, + "Directional": true + } + ] + }, + { + "ID": 11329, + "SourceStructureID": 6120, + "TargetStructureID": 110793, + "Label": "6120-110793 via Ribbon Synapse from 110789 -> 110795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110789, + "TargetID": 110795, + "Directional": true + } + ] + }, + { + "ID": 11330, + "SourceStructureID": 6120, + "TargetStructureID": 110798, + "Label": "6120-110798 via Ribbon Synapse from 61160 -> 110799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61160, + "TargetID": 110799, + "Directional": true + } + ] + }, + { + "ID": 11331, + "SourceStructureID": 6120, + "TargetStructureID": 110812, + "Label": "6120-110812 via BC Conventional Synapse from 110811 -> 110813", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110811, + "TargetID": 110813, + "Directional": true + } + ] + }, + { + "ID": 11332, + "SourceStructureID": 6120, + "TargetStructureID": 110814, + "Label": "6120-110814 via Ribbon Synapse from 61156 -> 110815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61156, + "TargetID": 110815, + "Directional": true + } + ] + }, + { + "ID": 11333, + "SourceStructureID": 6120, + "TargetStructureID": 110816, + "Label": "6120-110816 via BC Conventional Synapse from 110855 -> 110858", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110855, + "TargetID": 110858, + "Directional": true + } + ] + }, + { + "ID": 11334, + "SourceStructureID": 6120, + "TargetStructureID": 110816, + "Label": "6120-110816 via Ribbon Synapse from 61156 -> 110817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61156, + "TargetID": 110817, + "Directional": true + } + ] + }, + { + "ID": 11335, + "SourceStructureID": 6120, + "TargetStructureID": 110835, + "Label": "6120-110835 via Ribbon Synapse from 110827 -> 110836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110827, + "TargetID": 110836, + "Directional": true + } + ] + }, + { + "ID": 11336, + "SourceStructureID": 6120, + "TargetStructureID": 110860, + "Label": "6120-110860 via Ribbon Synapse from 51491 -> 110863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51491, + "TargetID": 110863, + "Directional": true + } + ] + }, + { + "ID": 11337, + "SourceStructureID": 6120, + "TargetStructureID": 110869, + "Label": "6120-110869 via Ribbon Synapse from 61145 -> 110870", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61145, + "TargetID": 110870, + "Directional": true + } + ] + }, + { + "ID": 11338, + "SourceStructureID": 6120, + "TargetStructureID": 110875, + "Label": "6120-110875 via BC Conventional Synapse from 110991 -> 110993", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110991, + "TargetID": 110993, + "Directional": true + } + ] + }, + { + "ID": 11339, + "SourceStructureID": 6120, + "TargetStructureID": 110997, + "Label": "6120-110997 via Ribbon Synapse from 61146 -> 110998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61146, + "TargetID": 110998, + "Directional": true + } + ] + }, + { + "ID": 11340, + "SourceStructureID": 6120, + "TargetStructureID": 110999, + "Label": "6120-110999 via Ribbon Synapse from 61146 -> 111000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61146, + "TargetID": 111000, + "Directional": true + } + ] + }, + { + "ID": 11341, + "SourceStructureID": 6120, + "TargetStructureID": 111012, + "Label": "6120-111012 via BC Conventional Synapse from 111011 -> 111013", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111011, + "TargetID": 111013, + "Directional": true + } + ] + }, + { + "ID": 11342, + "SourceStructureID": 6120, + "TargetStructureID": 111026, + "Label": "6120-111026 via Ribbon Synapse from 61148 -> 111028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61148, + "TargetID": 111028, + "Directional": true + } + ] + }, + { + "ID": 11343, + "SourceStructureID": 6120, + "TargetStructureID": 111029, + "Label": "6120-111029 via Ribbon Synapse from 61148 -> 111030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61148, + "TargetID": 111030, + "Directional": true + } + ] + }, + { + "ID": 11344, + "SourceStructureID": 6120, + "TargetStructureID": 111033, + "Label": "6120-111033 via Ribbon Synapse from 61128 -> 111034", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61128, + "TargetID": 111034, + "Directional": true + } + ] + }, + { + "ID": 11345, + "SourceStructureID": 6120, + "TargetStructureID": 111035, + "Label": "6120-111035 via Ribbon Synapse from 61128 -> 111036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61128, + "TargetID": 111036, + "Directional": true + } + ] + }, + { + "ID": 11346, + "SourceStructureID": 6120, + "TargetStructureID": 111044, + "Label": "6120-111044 via Ribbon Synapse from 61128 -> 111045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61128, + "TargetID": 111045, + "Directional": true + } + ] + }, + { + "ID": 11347, + "SourceStructureID": 6120, + "TargetStructureID": 111092, + "Label": "6120-111092 via BC Conventional Synapse from 111091 -> 111093", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111091, + "TargetID": 111093, + "Directional": true + } + ] + }, + { + "ID": 11348, + "SourceStructureID": 6120, + "TargetStructureID": 111110, + "Label": "6120-111110 via Ribbon Synapse from 61143 -> 111120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61143, + "TargetID": 111120, + "Directional": true + } + ] + }, + { + "ID": 11349, + "SourceStructureID": 6120, + "TargetStructureID": 111111, + "Label": "6120-111111 via BC Conventional Synapse from 111113 -> 111114", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111113, + "TargetID": 111114, + "Directional": true + } + ] + }, + { + "ID": 11350, + "SourceStructureID": 6120, + "TargetStructureID": 111111, + "Label": "6120-111111 via Ribbon Synapse from 61143 -> 111115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61143, + "TargetID": 111115, + "Directional": true + } + ] + }, + { + "ID": 11351, + "SourceStructureID": 6120, + "TargetStructureID": 111117, + "Label": "6120-111117 via BC Conventional Synapse from 111116 -> 111119", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111116, + "TargetID": 111119, + "Directional": true + } + ] + }, + { + "ID": 11352, + "SourceStructureID": 6120, + "TargetStructureID": 111126, + "Label": "6120-111126 via Ribbon Synapse from 111125 -> 111127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111125, + "TargetID": 111127, + "Directional": true + } + ] + }, + { + "ID": 11353, + "SourceStructureID": 6120, + "TargetStructureID": 111135, + "Label": "6120-111135 via Ribbon Synapse from 61176 -> 111136, 111141 -> 111250, 111246 -> 111245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61176, + "TargetID": 111136, + "Directional": true + }, + { + "SourceID": 111141, + "TargetID": 111250, + "Directional": true + }, + { + "SourceID": 111246, + "TargetID": 111245, + "Directional": true + } + ] + }, + { + "ID": 11354, + "SourceStructureID": 6120, + "TargetStructureID": 111139, + "Label": "6120-111139 via Ribbon Synapse from 111137 -> 111140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111137, + "TargetID": 111140, + "Directional": true + } + ] + }, + { + "ID": 11355, + "SourceStructureID": 6120, + "TargetStructureID": 111216, + "Label": "6120-111216 via Ribbon Synapse from 61180 -> 111217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61180, + "TargetID": 111217, + "Directional": true + } + ] + }, + { + "ID": 11356, + "SourceStructureID": 6120, + "TargetStructureID": 111221, + "Label": "6120-111221 via Ribbon Synapse from 61180 -> 111222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61180, + "TargetID": 111222, + "Directional": true + } + ] + }, + { + "ID": 11357, + "SourceStructureID": 6120, + "TargetStructureID": 111231, + "Label": "6120-111231 via Ribbon Synapse from 57389 -> 111285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57389, + "TargetID": 111285, + "Directional": true + } + ] + }, + { + "ID": 11358, + "SourceStructureID": 6120, + "TargetStructureID": 111235, + "Label": "6120-111235 via Ribbon Synapse from 61176 -> 111237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61176, + "TargetID": 111237, + "Directional": true + } + ] + }, + { + "ID": 11359, + "SourceStructureID": 6120, + "TargetStructureID": 111238, + "Label": "6120-111238 via Ribbon Synapse from 111141 -> 111239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111141, + "TargetID": 111239, + "Directional": true + } + ] + }, + { + "ID": 11360, + "SourceStructureID": 6120, + "TargetStructureID": 111251, + "Label": "6120-111251 via Ribbon Synapse from 61177 -> 111252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61177, + "TargetID": 111252, + "Directional": true + } + ] + }, + { + "ID": 11361, + "SourceStructureID": 6120, + "TargetStructureID": 111260, + "Label": "6120-111260 via Ribbon Synapse from 111258 -> 111262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111258, + "TargetID": 111262, + "Directional": true + } + ] + }, + { + "ID": 11362, + "SourceStructureID": 6120, + "TargetStructureID": 111269, + "Label": "6120-111269 via Ribbon Synapse from 57383 -> 111274, 111353 -> 111355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57383, + "TargetID": 111274, + "Directional": true + }, + { + "SourceID": 111353, + "TargetID": 111355, + "Directional": true + } + ] + }, + { + "ID": 11363, + "SourceStructureID": 6120, + "TargetStructureID": 111286, + "Label": "6120-111286 via Ribbon Synapse from 57389 -> 111287", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57389, + "TargetID": 111287, + "Directional": true + } + ] + }, + { + "ID": 11364, + "SourceStructureID": 6120, + "TargetStructureID": 111292, + "Label": "6120-111292 via BC Conventional Synapse from 111291 -> 111293", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111291, + "TargetID": 111293, + "Directional": true + } + ] + }, + { + "ID": 11365, + "SourceStructureID": 6120, + "TargetStructureID": 111351, + "Label": "6120-111351 via BC Conventional Synapse from 111350 -> 111352", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111350, + "TargetID": 111352, + "Directional": true + } + ] + }, + { + "ID": 11366, + "SourceStructureID": 6120, + "TargetStructureID": 111356, + "Label": "6120-111356 via Ribbon Synapse from 111353 -> 111359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111353, + "TargetID": 111359, + "Directional": true + } + ] + }, + { + "ID": 11367, + "SourceStructureID": 6120, + "TargetStructureID": 111377, + "Label": "6120-111377 via BC Conventional Synapse from 111376 -> 111378", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111376, + "TargetID": 111378, + "Directional": true + } + ] + }, + { + "ID": 11368, + "SourceStructureID": 6120, + "TargetStructureID": 111399, + "Label": "6120-111399 via BC Conventional Synapse from 111398 -> 111400", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111398, + "TargetID": 111400, + "Directional": true + } + ] + }, + { + "ID": 11369, + "SourceStructureID": 6120, + "TargetStructureID": 111485, + "Label": "6120-111485 via Ribbon Synapse from 61191 -> 111489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61191, + "TargetID": 111489, + "Directional": true + } + ] + }, + { + "ID": 11370, + "SourceStructureID": 6120, + "TargetStructureID": 111503, + "Label": "6120-111503 via BC Conventional Synapse from 111495 -> 111504", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111495, + "TargetID": 111504, + "Directional": true + } + ] + }, + { + "ID": 11371, + "SourceStructureID": 6120, + "TargetStructureID": 111515, + "Label": "6120-111515 via Ribbon Synapse from 61186 -> 111517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61186, + "TargetID": 111517, + "Directional": true + } + ] + }, + { + "ID": 11372, + "SourceStructureID": 6120, + "TargetStructureID": 111518, + "Label": "6120-111518 via BC Conventional Synapse from 111520 -> 111519", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111520, + "TargetID": 111519, + "Directional": true + } + ] + }, + { + "ID": 11373, + "SourceStructureID": 6120, + "TargetStructureID": 111521, + "Label": "6120-111521 via Ribbon Synapse from 61186 -> 111522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61186, + "TargetID": 111522, + "Directional": true + } + ] + }, + { + "ID": 11374, + "SourceStructureID": 6120, + "TargetStructureID": 111523, + "Label": "6120-111523 via Ribbon Synapse from 61197 -> 111524", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61197, + "TargetID": 111524, + "Directional": true + } + ] + }, + { + "ID": 11375, + "SourceStructureID": 6120, + "TargetStructureID": 111525, + "Label": "6120-111525 via Ribbon Synapse from 61197 -> 111526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61197, + "TargetID": 111526, + "Directional": true + } + ] + }, + { + "ID": 11376, + "SourceStructureID": 6120, + "TargetStructureID": 111533, + "Label": "6120-111533 via Ribbon Synapse from 61188 -> 111534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61188, + "TargetID": 111534, + "Directional": true + } + ] + }, + { + "ID": 11377, + "SourceStructureID": 6120, + "TargetStructureID": 111553, + "Label": "6120-111553 via Ribbon Synapse from 64929 -> 111554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64929, + "TargetID": 111554, + "Directional": true + } + ] + }, + { + "ID": 11378, + "SourceStructureID": 6120, + "TargetStructureID": 111557, + "Label": "6120-111557 via Ribbon Synapse from 64929 -> 111558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64929, + "TargetID": 111558, + "Directional": true + } + ] + }, + { + "ID": 11379, + "SourceStructureID": 6120, + "TargetStructureID": 111563, + "Label": "6120-111563 via Ribbon Synapse from 111561 -> 111565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111561, + "TargetID": 111565, + "Directional": true + } + ] + }, + { + "ID": 11380, + "SourceStructureID": 6120, + "TargetStructureID": 111564, + "Label": "6120-111564 via Ribbon Synapse from 111561 -> 111566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111561, + "TargetID": 111566, + "Directional": true + } + ] + }, + { + "ID": 11381, + "SourceStructureID": 6120, + "TargetStructureID": 111580, + "Label": "6120-111580 via Ribbon Synapse from 52428 -> 111582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52428, + "TargetID": 111582, + "Directional": true + } + ] + }, + { + "ID": 11382, + "SourceStructureID": 6120, + "TargetStructureID": 111662, + "Label": "6120-111662 via Ribbon Synapse from 111661 -> 111663", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111661, + "TargetID": 111663, + "Directional": true + } + ] + }, + { + "ID": 11383, + "SourceStructureID": 6120, + "TargetStructureID": 111672, + "Label": "6120-111672 via Ribbon Synapse from 111669 -> 111674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111669, + "TargetID": 111674, + "Directional": true + } + ] + }, + { + "ID": 11384, + "SourceStructureID": 6120, + "TargetStructureID": 111677, + "Label": "6120-111677 via Ribbon Synapse from 111678 -> 111681", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111678, + "TargetID": 111681, + "Directional": true + } + ] + }, + { + "ID": 11385, + "SourceStructureID": 6120, + "TargetStructureID": 111684, + "Label": "6120-111684 via BC Conventional Synapse from 111683 -> 111685", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111683, + "TargetID": 111685, + "Directional": true + } + ] + }, + { + "ID": 11386, + "SourceStructureID": 6120, + "TargetStructureID": 111691, + "Label": "6120-111691 via BC Conventional Synapse from 111690 -> 111692", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111690, + "TargetID": 111692, + "Directional": true + } + ] + }, + { + "ID": 11387, + "SourceStructureID": 6120, + "TargetStructureID": 111698, + "Label": "6120-111698 via Ribbon Synapse from 111678 -> 111700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111678, + "TargetID": 111700, + "Directional": true + } + ] + }, + { + "ID": 11388, + "SourceStructureID": 6120, + "TargetStructureID": 111708, + "Label": "6120-111708 via Ribbon Synapse from 111707 -> 111710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111707, + "TargetID": 111710, + "Directional": true + } + ] + }, + { + "ID": 11389, + "SourceStructureID": 6120, + "TargetStructureID": 111713, + "Label": "6120-111713 via Ribbon Synapse from 111706 -> 111714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111706, + "TargetID": 111714, + "Directional": true + } + ] + }, + { + "ID": 11390, + "SourceStructureID": 6120, + "TargetStructureID": 111718, + "Label": "6120-111718 via BC Conventional Synapse from 111705 -> 111719", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111705, + "TargetID": 111719, + "Directional": true + } + ] + }, + { + "ID": 11391, + "SourceStructureID": 6120, + "TargetStructureID": 111723, + "Label": "6120-111723 via BC Conventional Synapse from 111722 -> 111724", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111722, + "TargetID": 111724, + "Directional": true + } + ] + }, + { + "ID": 11392, + "SourceStructureID": 6120, + "TargetStructureID": 111732, + "Label": "6120-111732 via Ribbon Synapse from 111731 -> 111733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111731, + "TargetID": 111733, + "Directional": true + } + ] + }, + { + "ID": 11393, + "SourceStructureID": 6120, + "TargetStructureID": 111866, + "Label": "6120-111866 via Ribbon Synapse from 30179 -> 111867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30179, + "TargetID": 111867, + "Directional": true + } + ] + }, + { + "ID": 11394, + "SourceStructureID": 6120, + "TargetStructureID": 111890, + "Label": "6120-111890 via Ribbon Synapse from 111865 -> 111891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111865, + "TargetID": 111891, + "Directional": true + } + ] + }, + { + "ID": 11395, + "SourceStructureID": 6120, + "TargetStructureID": 111894, + "Label": "6120-111894 via BC Conventional Synapse from 111893 -> 111895", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 111893, + "TargetID": 111895, + "Directional": true + } + ] + }, + { + "ID": 11396, + "SourceStructureID": 6121, + "TargetStructureID": 5107, + "Label": "6121-5107 via Ribbon Synapse from 65010 -> 65009, 65055 -> 65054, 65065 -> 65060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65010, + "TargetID": 65009, + "Directional": true + }, + { + "SourceID": 65055, + "TargetID": 65054, + "Directional": true + }, + { + "SourceID": 65065, + "TargetID": 65060, + "Directional": true + } + ] + }, + { + "ID": 11397, + "SourceStructureID": 6121, + "TargetStructureID": 5405, + "Label": "6121-5405 via Ribbon Synapse from 40014 -> 40015, 52276 -> 42945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40014, + "TargetID": 40015, + "Directional": true + }, + { + "SourceID": 52276, + "TargetID": 42945, + "Directional": true + } + ] + }, + { + "ID": 11398, + "SourceStructureID": 6121, + "TargetStructureID": 7134, + "Label": "6121-7134 via Ribbon Synapse from 53462 -> 53457, 53492 -> 53489, 53493 -> 53494, 53497 -> 53496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53462, + "TargetID": 53457, + "Directional": true + }, + { + "SourceID": 53492, + "TargetID": 53489, + "Directional": true + }, + { + "SourceID": 53493, + "TargetID": 53494, + "Directional": true + }, + { + "SourceID": 53497, + "TargetID": 53496, + "Directional": true + } + ] + }, + { + "ID": 11399, + "SourceStructureID": 6121, + "TargetStructureID": 9769, + "Label": "6121-9769 via Ribbon Synapse from 30183 -> 30165, 52577 -> 52579", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30183, + "TargetID": 30165, + "Directional": true + }, + { + "SourceID": 52577, + "TargetID": 52579, + "Directional": true + } + ] + }, + { + "ID": 11400, + "SourceStructureID": 6121, + "TargetStructureID": 16073, + "Label": "6121-16073 via BC Conventional Synapse from 125214 -> 125215", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125214, + "TargetID": 125215, + "Directional": true + } + ] + }, + { + "ID": 11401, + "SourceStructureID": 6121, + "TargetStructureID": 22974, + "Label": "6121-22974 via Ribbon Synapse from 125226 -> 125228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125226, + "TargetID": 125228, + "Directional": true + } + ] + }, + { + "ID": 11402, + "SourceStructureID": 6121, + "TargetStructureID": 30130, + "Label": "6121-30130 via Ribbon Synapse from 30327 -> 30326", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30327, + "TargetID": 30326, + "Directional": true + } + ] + }, + { + "ID": 11403, + "SourceStructureID": 6121, + "TargetStructureID": 52262, + "Label": "6121-52262 via Ribbon Synapse from 52275 -> 52272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52275, + "TargetID": 52272, + "Directional": true + } + ] + }, + { + "ID": 11404, + "SourceStructureID": 6121, + "TargetStructureID": 52410, + "Label": "6121-52410 via Ribbon Synapse from 30183 -> 52411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30183, + "TargetID": 52411, + "Directional": true + } + ] + }, + { + "ID": 11405, + "SourceStructureID": 6121, + "TargetStructureID": 53991, + "Label": "6121-53991 via Ribbon Synapse from 52577 -> 53995", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52577, + "TargetID": 53995, + "Directional": true + } + ] + }, + { + "ID": 11406, + "SourceStructureID": 6121, + "TargetStructureID": 64923, + "Label": "6121-64923 via Ribbon Synapse from 64927 -> 64926, 123563 -> 123562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64927, + "TargetID": 64926, + "Directional": true + }, + { + "SourceID": 123563, + "TargetID": 123562, + "Directional": true + } + ] + }, + { + "ID": 11407, + "SourceStructureID": 6121, + "TargetStructureID": 68539, + "Label": "6121-68539 via BC Conventional Synapse from 120720 -> 120721", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120720, + "TargetID": 120721, + "Directional": true + } + ] + }, + { + "ID": 11408, + "SourceStructureID": 6121, + "TargetStructureID": 110997, + "Label": "6121-110997 via BC Conventional Synapse from 125283 -> 125282", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 125283, + "TargetID": 125282, + "Directional": true + } + ] + }, + { + "ID": 11409, + "SourceStructureID": 6121, + "TargetStructureID": 111539, + "Label": "6121-111539 via Ribbon Synapse from 127707 -> 127708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127707, + "TargetID": 127708, + "Directional": true + } + ] + }, + { + "ID": 11410, + "SourceStructureID": 6123, + "TargetStructureID": 606, + "Label": "6123-606 via Ribbon Synapse from 47239 -> 47238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47239, + "TargetID": 47238, + "Directional": true + } + ] + }, + { + "ID": 11411, + "SourceStructureID": 6123, + "TargetStructureID": 71517, + "Label": "6123-71517 via Ribbon Synapse from 47891 -> 71540, 47993 -> 72151, 47994 -> 74924, 48017 -> 76999, 48020 -> 74919, 74928 -> 74929", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47891, + "TargetID": 71540, + "Directional": true + }, + { + "SourceID": 47993, + "TargetID": 72151, + "Directional": true + }, + { + "SourceID": 47994, + "TargetID": 74924, + "Directional": true + }, + { + "SourceID": 48017, + "TargetID": 76999, + "Directional": true + }, + { + "SourceID": 48020, + "TargetID": 74919, + "Directional": true + }, + { + "SourceID": 74928, + "TargetID": 74929, + "Directional": true + } + ] + }, + { + "ID": 11412, + "SourceStructureID": 6123, + "TargetStructureID": 134954, + "Label": "6123-134954 via Ribbon Synapse from 47860 -> 135436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47860, + "TargetID": 135436, + "Directional": true + } + ] + }, + { + "ID": 11413, + "SourceStructureID": 6123, + "TargetStructureID": 148300, + "Label": "6123-148300 via Ribbon Synapse from 148298 -> 148301, 148304 -> 148301", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148298, + "TargetID": 148301, + "Directional": true + }, + { + "SourceID": 148304, + "TargetID": 148301, + "Directional": true + } + ] + }, + { + "ID": 11414, + "SourceStructureID": 6123, + "TargetStructureID": 148302, + "Label": "6123-148302 via Ribbon Synapse from 148298 -> 148303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148298, + "TargetID": 148303, + "Directional": true + } + ] + }, + { + "ID": 11415, + "SourceStructureID": 6125, + "TargetStructureID": 608, + "Label": "6125-608 via BC Conventional Synapse from 31206 -> 31199", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31206, + "TargetID": 31199, + "Directional": true + } + ] + }, + { + "ID": 11416, + "SourceStructureID": 6125, + "TargetStructureID": 5150, + "Label": "6125-5150 via Ribbon Synapse from 131351 -> 5249, 131352 -> 5249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131351, + "TargetID": 5249, + "Directional": true + }, + { + "SourceID": 131352, + "TargetID": 5249, + "Directional": true + } + ] + }, + { + "ID": 11417, + "SourceStructureID": 6125, + "TargetStructureID": 7951, + "Label": "6125-7951 via Ribbon Synapse from 31204 -> 31205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31204, + "TargetID": 31205, + "Directional": true + } + ] + }, + { + "ID": 11418, + "SourceStructureID": 6125, + "TargetStructureID": 34761, + "Label": "6125-34761 via Ribbon Synapse from 34773 -> 34771", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34773, + "TargetID": 34771, + "Directional": true + } + ] + }, + { + "ID": 11419, + "SourceStructureID": 6127, + "TargetStructureID": 34847, + "Label": "6127-34847 via Ribbon Synapse from 34865 -> 34863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34865, + "TargetID": 34863, + "Directional": true + } + ] + }, + { + "ID": 11420, + "SourceStructureID": 6127, + "TargetStructureID": 35653, + "Label": "6127-35653 via Ribbon Synapse from 35665 -> 35664", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35665, + "TargetID": 35664, + "Directional": true + } + ] + }, + { + "ID": 11421, + "SourceStructureID": 6127, + "TargetStructureID": 84118, + "Label": "6127-84118 via Ribbon Synapse from 123614 -> 123616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123614, + "TargetID": 123616, + "Directional": true + } + ] + }, + { + "ID": 11422, + "SourceStructureID": 6128, + "TargetStructureID": 7225, + "Label": "6128-7225 via Ribbon Synapse from 21178 -> 88400", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21178, + "TargetID": 88400, + "Directional": true + } + ] + }, + { + "ID": 11423, + "SourceStructureID": 6128, + "TargetStructureID": 7461, + "Label": "6128-7461 via Ribbon Synapse from 20997 -> 30472, 33735 -> 30467", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20997, + "TargetID": 30472, + "Directional": true + }, + { + "SourceID": 33735, + "TargetID": 30467, + "Directional": true + } + ] + }, + { + "ID": 11424, + "SourceStructureID": 6128, + "TargetStructureID": 7859, + "Label": "6128-7859 via Ribbon Synapse from 84732 -> 84731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84732, + "TargetID": 84731, + "Directional": true + } + ] + }, + { + "ID": 11425, + "SourceStructureID": 6128, + "TargetStructureID": 28950, + "Label": "6128-28950 via Ribbon Synapse from 21016 -> 29043, 21017 -> 29043", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21016, + "TargetID": 29043, + "Directional": true + }, + { + "SourceID": 21017, + "TargetID": 29043, + "Directional": true + } + ] + }, + { + "ID": 11426, + "SourceStructureID": 6128, + "TargetStructureID": 30015, + "Label": "6128-30015 via Ribbon Synapse from 20982 -> 30042", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20982, + "TargetID": 30042, + "Directional": true + } + ] + }, + { + "ID": 11427, + "SourceStructureID": 6128, + "TargetStructureID": 31486, + "Label": "6128-31486 via Ribbon Synapse from 21041 -> 31512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21041, + "TargetID": 31512, + "Directional": true + } + ] + }, + { + "ID": 11428, + "SourceStructureID": 6128, + "TargetStructureID": 46741, + "Label": "6128-46741 via BC Conventional Synapse from 137107 -> 137106, 137117 -> 137118", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137107, + "TargetID": 137106, + "Directional": true + }, + { + "SourceID": 137117, + "TargetID": 137118, + "Directional": true + } + ] + }, + { + "ID": 11429, + "SourceStructureID": 6128, + "TargetStructureID": 46741, + "Label": "6128-46741 via Ribbon Synapse from 20992 -> 137098, 33737 -> 137094, 136966 -> 136964, 136968 -> 136969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20992, + "TargetID": 137098, + "Directional": true + }, + { + "SourceID": 33737, + "TargetID": 137094, + "Directional": true + }, + { + "SourceID": 136966, + "TargetID": 136964, + "Directional": true + }, + { + "SourceID": 136968, + "TargetID": 136969, + "Directional": true + } + ] + }, + { + "ID": 11430, + "SourceStructureID": 6128, + "TargetStructureID": 122431, + "Label": "6128-122431 via Ribbon Synapse from 20935 -> 129523", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20935, + "TargetID": 129523, + "Directional": true + } + ] + }, + { + "ID": 11431, + "SourceStructureID": 6129, + "TargetStructureID": 5453, + "Label": "6129-5453 via BC Conventional Synapse from 38870 -> 18547", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38870, + "TargetID": 18547, + "Directional": true + } + ] + }, + { + "ID": 11432, + "SourceStructureID": 6129, + "TargetStructureID": 5453, + "Label": "6129-5453 via Ribbon Synapse from 17819 -> 18550, 18584 -> 18549, 38872 -> 18544, 38875 -> 18524, 38877 -> 18532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17819, + "TargetID": 18550, + "Directional": true + }, + { + "SourceID": 18584, + "TargetID": 18549, + "Directional": true + }, + { + "SourceID": 38872, + "TargetID": 18544, + "Directional": true + }, + { + "SourceID": 38875, + "TargetID": 18524, + "Directional": true + }, + { + "SourceID": 38877, + "TargetID": 18532, + "Directional": true + } + ] + }, + { + "ID": 11433, + "SourceStructureID": 6129, + "TargetStructureID": 5528, + "Label": "6129-5528 via Ribbon Synapse from 17850 -> 94142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17850, + "TargetID": 94142, + "Directional": true + } + ] + }, + { + "ID": 11434, + "SourceStructureID": 6129, + "TargetStructureID": 7703, + "Label": "6129-7703 via Ribbon Synapse from 17785 -> 17758, 42081 -> 26776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17785, + "TargetID": 17758, + "Directional": true + }, + { + "SourceID": 42081, + "TargetID": 26776, + "Directional": true + } + ] + }, + { + "ID": 11435, + "SourceStructureID": 6129, + "TargetStructureID": 11238, + "Label": "6129-11238 via Ribbon Synapse from 88568 -> 88528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88568, + "TargetID": 88528, + "Directional": true + } + ] + }, + { + "ID": 11436, + "SourceStructureID": 6129, + "TargetStructureID": 64414, + "Label": "6129-64414 via BC Conventional Synapse from 64424 -> 64423", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64424, + "TargetID": 64423, + "Directional": true + } + ] + }, + { + "ID": 11437, + "SourceStructureID": 6129, + "TargetStructureID": 88539, + "Label": "6129-88539 via Ribbon Synapse from 88538 -> 88542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88538, + "TargetID": 88542, + "Directional": true + } + ] + }, + { + "ID": 11438, + "SourceStructureID": 6131, + "TargetStructureID": 13525, + "Label": "6131-13525 via Ribbon Synapse from 37331 -> 129030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37331, + "TargetID": 129030, + "Directional": true + } + ] + }, + { + "ID": 11439, + "SourceStructureID": 6131, + "TargetStructureID": 130189, + "Label": "6131-130189 via Ribbon Synapse from 37331 -> 130191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37331, + "TargetID": 130191, + "Directional": true + } + ] + }, + { + "ID": 11440, + "SourceStructureID": 6132, + "TargetStructureID": 7225, + "Label": "6132-7225 via Ribbon Synapse from 29018 -> 29031, 29028 -> 29027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29018, + "TargetID": 29031, + "Directional": true + }, + { + "SourceID": 29028, + "TargetID": 29027, + "Directional": true + } + ] + }, + { + "ID": 11441, + "SourceStructureID": 6132, + "TargetStructureID": 7564, + "Label": "6132-7564 via Ribbon Synapse from 88502 -> 88497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88502, + "TargetID": 88497, + "Directional": true + } + ] + }, + { + "ID": 11442, + "SourceStructureID": 6132, + "TargetStructureID": 11238, + "Label": "6132-11238 via Ribbon Synapse from 88437 -> 88443, 88504 -> 88505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88437, + "TargetID": 88443, + "Directional": true + }, + { + "SourceID": 88504, + "TargetID": 88505, + "Directional": true + } + ] + }, + { + "ID": 11443, + "SourceStructureID": 6132, + "TargetStructureID": 35681, + "Label": "6132-35681 via Ribbon Synapse from 35727 -> 35726", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35727, + "TargetID": 35726, + "Directional": true + } + ] + }, + { + "ID": 11444, + "SourceStructureID": 6132, + "TargetStructureID": 43203, + "Label": "6132-43203 via Ribbon Synapse from 122036 -> 122035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122036, + "TargetID": 122035, + "Directional": true + } + ] + }, + { + "ID": 11445, + "SourceStructureID": 6133, + "TargetStructureID": 7859, + "Label": "6133-7859 via Ribbon Synapse from 84840 -> 84838", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84840, + "TargetID": 84838, + "Directional": true + } + ] + }, + { + "ID": 11446, + "SourceStructureID": 6133, + "TargetStructureID": 8504, + "Label": "6133-8504 via Ribbon Synapse from 8702 -> 8718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8702, + "TargetID": 8718, + "Directional": true + } + ] + }, + { + "ID": 11447, + "SourceStructureID": 6133, + "TargetStructureID": 10574, + "Label": "6133-10574 via Ribbon Synapse from 37405 -> 10608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37405, + "TargetID": 10608, + "Directional": true + } + ] + }, + { + "ID": 11448, + "SourceStructureID": 6133, + "TargetStructureID": 11229, + "Label": "6133-11229 via Ribbon Synapse from 37404 -> 28974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37404, + "TargetID": 28974, + "Directional": true + } + ] + }, + { + "ID": 11449, + "SourceStructureID": 6133, + "TargetStructureID": 43205, + "Label": "6133-43205 via Ribbon Synapse from 65446 -> 122086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65446, + "TargetID": 122086, + "Directional": true + } + ] + }, + { + "ID": 11450, + "SourceStructureID": 6133, + "TargetStructureID": 96877, + "Label": "6133-96877 via Ribbon Synapse from 37412 -> 131152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37412, + "TargetID": 131152, + "Directional": true + } + ] + }, + { + "ID": 11451, + "SourceStructureID": 6134, + "TargetStructureID": 122173, + "Label": "6134-122173 via Ribbon Synapse from 32473 -> 122175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32473, + "TargetID": 122175, + "Directional": true + } + ] + }, + { + "ID": 11452, + "SourceStructureID": 6136, + "TargetStructureID": 7145, + "Label": "6136-7145 via Ribbon Synapse from 10952 -> 18111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10952, + "TargetID": 18111, + "Directional": true + } + ] + }, + { + "ID": 11453, + "SourceStructureID": 6136, + "TargetStructureID": 10371, + "Label": "6136-10371 via Ribbon Synapse from 10370 -> 10373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10370, + "TargetID": 10373, + "Directional": true + } + ] + }, + { + "ID": 11454, + "SourceStructureID": 6136, + "TargetStructureID": 56211, + "Label": "6136-56211 via Ribbon Synapse from 13029 -> 85453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13029, + "TargetID": 85453, + "Directional": true + } + ] + }, + { + "ID": 11455, + "SourceStructureID": 6136, + "TargetStructureID": 59229, + "Label": "6136-59229 via Ribbon Synapse from 85560 -> 85559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85560, + "TargetID": 85559, + "Directional": true + } + ] + }, + { + "ID": 11456, + "SourceStructureID": 6138, + "TargetStructureID": 5464, + "Label": "6138-5464 via Ribbon Synapse from 37430 -> 37431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37430, + "TargetID": 37431, + "Directional": true + } + ] + }, + { + "ID": 11457, + "SourceStructureID": 6140, + "TargetStructureID": 29340, + "Label": "6140-29340 via Ribbon Synapse from 29360 -> 29354", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29360, + "TargetID": 29354, + "Directional": true + } + ] + }, + { + "ID": 11458, + "SourceStructureID": 6141, + "TargetStructureID": 606, + "Label": "6141-606 via Ribbon Synapse from 51958 -> 51959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51958, + "TargetID": 51959, + "Directional": true + } + ] + }, + { + "ID": 11459, + "SourceStructureID": 6141, + "TargetStructureID": 5117, + "Label": "6141-5117 via Ribbon Synapse from 66359 -> 66358", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66359, + "TargetID": 66358, + "Directional": true + } + ] + }, + { + "ID": 11460, + "SourceStructureID": 6141, + "TargetStructureID": 32513, + "Label": "6141-32513 via Ribbon Synapse from 32520 -> 32516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32520, + "TargetID": 32516, + "Directional": true + } + ] + }, + { + "ID": 11461, + "SourceStructureID": 6142, + "TargetStructureID": 8579, + "Label": "6142-8579 via Ribbon Synapse from 16121 -> 62859, 27900 -> 62723, 62862 -> 62863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16121, + "TargetID": 62859, + "Directional": true + }, + { + "SourceID": 27900, + "TargetID": 62723, + "Directional": true + }, + { + "SourceID": 62862, + "TargetID": 62863, + "Directional": true + } + ] + }, + { + "ID": 11462, + "SourceStructureID": 6142, + "TargetStructureID": 67671, + "Label": "6142-67671 via Ribbon Synapse from 23334 -> 78036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23334, + "TargetID": 78036, + "Directional": true + } + ] + }, + { + "ID": 11463, + "SourceStructureID": 6142, + "TargetStructureID": 68539, + "Label": "6142-68539 via Ribbon Synapse from 27843 -> 76069", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27843, + "TargetID": 76069, + "Directional": true + } + ] + }, + { + "ID": 11464, + "SourceStructureID": 6142, + "TargetStructureID": 71351, + "Label": "6142-71351 via Ribbon Synapse from 71682 -> 71683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71682, + "TargetID": 71683, + "Directional": true + } + ] + }, + { + "ID": 11465, + "SourceStructureID": 6142, + "TargetStructureID": 71684, + "Label": "6142-71684 via Ribbon Synapse from 71682 -> 71685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71682, + "TargetID": 71685, + "Directional": true + } + ] + }, + { + "ID": 11466, + "SourceStructureID": 6142, + "TargetStructureID": 71686, + "Label": "6142-71686 via Ribbon Synapse from 71682 -> 71687", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71682, + "TargetID": 71687, + "Directional": true + } + ] + }, + { + "ID": 11467, + "SourceStructureID": 6142, + "TargetStructureID": 78909, + "Label": "6142-78909 via Ribbon Synapse from 16119 -> 87553, 23586 -> 87551, 23587 -> 87552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16119, + "TargetID": 87553, + "Directional": true + }, + { + "SourceID": 23586, + "TargetID": 87551, + "Directional": true + }, + { + "SourceID": 23587, + "TargetID": 87552, + "Directional": true + } + ] + }, + { + "ID": 11468, + "SourceStructureID": 6142, + "TargetStructureID": 88473, + "Label": "6142-88473 via Ribbon Synapse from 27887 -> 88474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27887, + "TargetID": 88474, + "Directional": true + } + ] + }, + { + "ID": 11469, + "SourceStructureID": 6142, + "TargetStructureID": 89336, + "Label": "6142-89336 via Ribbon Synapse from 23577 -> 89338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23577, + "TargetID": 89338, + "Directional": true + } + ] + }, + { + "ID": 11470, + "SourceStructureID": 6142, + "TargetStructureID": 89775, + "Label": "6142-89775 via BC Conventional Synapse from 16116 -> 89782", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16116, + "TargetID": 89782, + "Directional": true + } + ] + }, + { + "ID": 11471, + "SourceStructureID": 6146, + "TargetStructureID": 5388, + "Label": "6146-5388 via Ribbon Synapse from 20219 -> 20214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20219, + "TargetID": 20214, + "Directional": true + } + ] + }, + { + "ID": 11472, + "SourceStructureID": 6146, + "TargetStructureID": 7594, + "Label": "6146-7594 via Ribbon Synapse from 38101 -> 38105", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38101, + "TargetID": 38105, + "Directional": true + } + ] + }, + { + "ID": 11473, + "SourceStructureID": 6146, + "TargetStructureID": 8212, + "Label": "6146-8212 via Cistern Pre from 38078 -> 38082", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 38078, + "TargetID": 38082, + "Directional": true + } + ] + }, + { + "ID": 11474, + "SourceStructureID": 6146, + "TargetStructureID": 9769, + "Label": "6146-9769 via Ribbon Synapse from 38101 -> 38102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38101, + "TargetID": 38102, + "Directional": true + } + ] + }, + { + "ID": 11475, + "SourceStructureID": 6146, + "TargetStructureID": 45574, + "Label": "6146-45574 via Ribbon Synapse from 131947 -> 131948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131947, + "TargetID": 131948, + "Directional": true + } + ] + }, + { + "ID": 11476, + "SourceStructureID": 6146, + "TargetStructureID": 87419, + "Label": "6146-87419 via Cistern Pre from 87418 -> 87421", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 87418, + "TargetID": 87421, + "Directional": true + } + ] + }, + { + "ID": 11477, + "SourceStructureID": 6150, + "TargetStructureID": 6118, + "Label": "6150-6118 via Cistern Pre from 37177 -> 37175", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 37177, + "TargetID": 37175, + "Directional": true + } + ] + }, + { + "ID": 11478, + "SourceStructureID": 6153, + "TargetStructureID": 325, + "Label": "6153-325 via Conventional from 10726 -> 8183, 10728 -> 7027", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10726, + "TargetID": 8183, + "Directional": true + }, + { + "SourceID": 10728, + "TargetID": 7027, + "Directional": true + } + ] + }, + { + "ID": 11479, + "SourceStructureID": 6153, + "TargetStructureID": 425, + "Label": "6153-425 via Conventional from 39980 -> 39981", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39980, + "TargetID": 39981, + "Directional": true + } + ] + }, + { + "ID": 11480, + "SourceStructureID": 6153, + "TargetStructureID": 426, + "Label": "6153-426 via Conventional from 21579 -> 21586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21579, + "TargetID": 21586, + "Directional": true + } + ] + }, + { + "ID": 11481, + "SourceStructureID": 6153, + "TargetStructureID": 463, + "Label": "6153-463 via Conventional from 74156 -> 74154, 74157 -> 74155, 74159 -> 74158, 74160 -> 74161", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74156, + "TargetID": 74154, + "Directional": true + }, + { + "SourceID": 74157, + "TargetID": 74155, + "Directional": true + }, + { + "SourceID": 74159, + "TargetID": 74158, + "Directional": true + }, + { + "SourceID": 74160, + "TargetID": 74161, + "Directional": true + } + ] + }, + { + "ID": 11482, + "SourceStructureID": 6153, + "TargetStructureID": 476, + "Label": "6153-476 via Cistern Pre from 31957 -> 31958", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 31957, + "TargetID": 31958, + "Directional": true + } + ] + }, + { + "ID": 11483, + "SourceStructureID": 6153, + "TargetStructureID": 5150, + "Label": "6153-5150 via Conventional from 15411 -> 5268, 15421 -> 15418", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15411, + "TargetID": 5268, + "Directional": true + }, + { + "SourceID": 15421, + "TargetID": 15418, + "Directional": true + } + ] + }, + { + "ID": 11484, + "SourceStructureID": 6153, + "TargetStructureID": 5351, + "Label": "6153-5351 via Conventional from 24123 -> 24122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24123, + "TargetID": 24122, + "Directional": true + } + ] + }, + { + "ID": 11485, + "SourceStructureID": 6155, + "TargetStructureID": 289, + "Label": "6155-289 via Ribbon Synapse from 56649 -> 56647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56649, + "TargetID": 56647, + "Directional": true + } + ] + }, + { + "ID": 11486, + "SourceStructureID": 6155, + "TargetStructureID": 2064, + "Label": "6155-2064 via Ribbon Synapse from 15525 -> 13189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15525, + "TargetID": 13189, + "Directional": true + } + ] + }, + { + "ID": 11487, + "SourceStructureID": 6155, + "TargetStructureID": 6300, + "Label": "6155-6300 via Ribbon Synapse from 15381 -> 104888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15381, + "TargetID": 104888, + "Directional": true + } + ] + }, + { + "ID": 11488, + "SourceStructureID": 6155, + "TargetStructureID": 7594, + "Label": "6155-7594 via Ribbon Synapse from 15511 -> 107869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15511, + "TargetID": 107869, + "Directional": true + } + ] + }, + { + "ID": 11489, + "SourceStructureID": 6155, + "TargetStructureID": 8720, + "Label": "6155-8720 via Cistern Pre from 24083 -> 24100", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 24083, + "TargetID": 24100, + "Directional": true + } + ] + }, + { + "ID": 11490, + "SourceStructureID": 6155, + "TargetStructureID": 9769, + "Label": "6155-9769 via Ribbon Synapse from 15767 -> 29811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15767, + "TargetID": 29811, + "Directional": true + } + ] + }, + { + "ID": 11491, + "SourceStructureID": 6155, + "TargetStructureID": 18693, + "Label": "6155-18693 via Ribbon Synapse from 56650 -> 33803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56650, + "TargetID": 33803, + "Directional": true + } + ] + }, + { + "ID": 11492, + "SourceStructureID": 6155, + "TargetStructureID": 36421, + "Label": "6155-36421 via Ribbon Synapse from 34785 -> 36436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34785, + "TargetID": 36436, + "Directional": true + } + ] + }, + { + "ID": 11493, + "SourceStructureID": 6155, + "TargetStructureID": 47104, + "Label": "6155-47104 via Ribbon Synapse from 15510 -> 107878, 15511 -> 47125", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15510, + "TargetID": 107878, + "Directional": true + }, + { + "SourceID": 15511, + "TargetID": 47125, + "Directional": true + } + ] + }, + { + "ID": 11494, + "SourceStructureID": 6155, + "TargetStructureID": 48612, + "Label": "6155-48612 via Ribbon Synapse from 15761 -> 48621", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15761, + "TargetID": 48621, + "Directional": true + } + ] + }, + { + "ID": 11495, + "SourceStructureID": 6155, + "TargetStructureID": 104886, + "Label": "6155-104886 via Ribbon Synapse from 15381 -> 104887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15381, + "TargetID": 104887, + "Directional": true + } + ] + }, + { + "ID": 11496, + "SourceStructureID": 6155, + "TargetStructureID": 104893, + "Label": "6155-104893 via Ribbon Synapse from 104892 -> 104894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104892, + "TargetID": 104894, + "Directional": true + } + ] + }, + { + "ID": 11497, + "SourceStructureID": 6155, + "TargetStructureID": 104952, + "Label": "6155-104952 via Ribbon Synapse from 15606 -> 104953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15606, + "TargetID": 104953, + "Directional": true + } + ] + }, + { + "ID": 11498, + "SourceStructureID": 6155, + "TargetStructureID": 104957, + "Label": "6155-104957 via Ribbon Synapse from 15607 -> 104958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15607, + "TargetID": 104958, + "Directional": true + } + ] + }, + { + "ID": 11499, + "SourceStructureID": 6155, + "TargetStructureID": 104959, + "Label": "6155-104959 via Ribbon Synapse from 15607 -> 104960", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15607, + "TargetID": 104960, + "Directional": true + } + ] + }, + { + "ID": 11500, + "SourceStructureID": 6155, + "TargetStructureID": 104963, + "Label": "6155-104963 via Ribbon Synapse from 48319 -> 104964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48319, + "TargetID": 104964, + "Directional": true + } + ] + }, + { + "ID": 11501, + "SourceStructureID": 6155, + "TargetStructureID": 104965, + "Label": "6155-104965 via Ribbon Synapse from 48319 -> 104966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48319, + "TargetID": 104966, + "Directional": true + } + ] + }, + { + "ID": 11502, + "SourceStructureID": 6155, + "TargetStructureID": 104971, + "Label": "6155-104971 via Ribbon Synapse from 15612 -> 104972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15612, + "TargetID": 104972, + "Directional": true + } + ] + }, + { + "ID": 11503, + "SourceStructureID": 6155, + "TargetStructureID": 104979, + "Label": "6155-104979 via Ribbon Synapse from 15756 -> 104980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15756, + "TargetID": 104980, + "Directional": true + } + ] + }, + { + "ID": 11504, + "SourceStructureID": 6155, + "TargetStructureID": 104981, + "Label": "6155-104981 via Ribbon Synapse from 15756 -> 104982", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15756, + "TargetID": 104982, + "Directional": true + } + ] + }, + { + "ID": 11505, + "SourceStructureID": 6155, + "TargetStructureID": 105838, + "Label": "6155-105838 via Ribbon Synapse from 16874 -> 105840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16874, + "TargetID": 105840, + "Directional": true + } + ] + }, + { + "ID": 11506, + "SourceStructureID": 6155, + "TargetStructureID": 105844, + "Label": "6155-105844 via Ribbon Synapse from 16874 -> 105847", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16874, + "TargetID": 105847, + "Directional": true + } + ] + }, + { + "ID": 11507, + "SourceStructureID": 6155, + "TargetStructureID": 105928, + "Label": "6155-105928 via Ribbon Synapse from 15761 -> 105998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15761, + "TargetID": 105998, + "Directional": true + } + ] + }, + { + "ID": 11508, + "SourceStructureID": 6155, + "TargetStructureID": 105944, + "Label": "6155-105944 via Ribbon Synapse from 15606 -> 105947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15606, + "TargetID": 105947, + "Directional": true + } + ] + }, + { + "ID": 11509, + "SourceStructureID": 6155, + "TargetStructureID": 105965, + "Label": "6155-105965 via Ribbon Synapse from 29758 -> 105993", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29758, + "TargetID": 105993, + "Directional": true + } + ] + }, + { + "ID": 11510, + "SourceStructureID": 6155, + "TargetStructureID": 106045, + "Label": "6155-106045 via Ribbon Synapse from 15610 -> 106046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15610, + "TargetID": 106046, + "Directional": true + } + ] + }, + { + "ID": 11511, + "SourceStructureID": 6155, + "TargetStructureID": 106048, + "Label": "6155-106048 via Cistern Pre from 48326 -> 106049", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 48326, + "TargetID": 106049, + "Directional": true + } + ] + }, + { + "ID": 11512, + "SourceStructureID": 6155, + "TargetStructureID": 106060, + "Label": "6155-106060 via BC Conventional Synapse from 106062 -> 106061", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106062, + "TargetID": 106061, + "Directional": true + } + ] + }, + { + "ID": 11513, + "SourceStructureID": 6155, + "TargetStructureID": 106067, + "Label": "6155-106067 via BC Conventional Synapse from 106356 -> 106357", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106356, + "TargetID": 106357, + "Directional": true + } + ] + }, + { + "ID": 11514, + "SourceStructureID": 6155, + "TargetStructureID": 106094, + "Label": "6155-106094 via Ribbon Synapse from 106093 -> 106103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106093, + "TargetID": 106103, + "Directional": true + } + ] + }, + { + "ID": 11515, + "SourceStructureID": 6155, + "TargetStructureID": 106095, + "Label": "6155-106095 via Ribbon Synapse from 56650 -> 106096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56650, + "TargetID": 106096, + "Directional": true + } + ] + }, + { + "ID": 11516, + "SourceStructureID": 6155, + "TargetStructureID": 106123, + "Label": "6155-106123 via Ribbon Synapse from 106124 -> 106125", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106124, + "TargetID": 106125, + "Directional": true + } + ] + }, + { + "ID": 11517, + "SourceStructureID": 6155, + "TargetStructureID": 106413, + "Label": "6155-106413 via Ribbon Synapse from 106395 -> 106416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106395, + "TargetID": 106416, + "Directional": true + } + ] + }, + { + "ID": 11518, + "SourceStructureID": 6155, + "TargetStructureID": 106435, + "Label": "6155-106435 via Ribbon Synapse from 48327 -> 106436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48327, + "TargetID": 106436, + "Directional": true + } + ] + }, + { + "ID": 11519, + "SourceStructureID": 6155, + "TargetStructureID": 106458, + "Label": "6155-106458 via Ribbon Synapse from 15799 -> 106459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15799, + "TargetID": 106459, + "Directional": true + } + ] + }, + { + "ID": 11520, + "SourceStructureID": 6155, + "TargetStructureID": 106460, + "Label": "6155-106460 via Ribbon Synapse from 15799 -> 106461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15799, + "TargetID": 106461, + "Directional": true + } + ] + }, + { + "ID": 11521, + "SourceStructureID": 6155, + "TargetStructureID": 106463, + "Label": "6155-106463 via Ribbon Synapse from 15799 -> 106579", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15799, + "TargetID": 106579, + "Directional": true + } + ] + }, + { + "ID": 11522, + "SourceStructureID": 6155, + "TargetStructureID": 106483, + "Label": "6155-106483 via BC Conventional Synapse from 106568 -> 106569", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106568, + "TargetID": 106569, + "Directional": true + } + ] + }, + { + "ID": 11523, + "SourceStructureID": 6155, + "TargetStructureID": 106604, + "Label": "6155-106604 via Ribbon Synapse from 15767 -> 106611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15767, + "TargetID": 106611, + "Directional": true + } + ] + }, + { + "ID": 11524, + "SourceStructureID": 6155, + "TargetStructureID": 106612, + "Label": "6155-106612 via Ribbon Synapse from 15768 -> 106613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15768, + "TargetID": 106613, + "Directional": true + } + ] + }, + { + "ID": 11525, + "SourceStructureID": 6155, + "TargetStructureID": 106617, + "Label": "6155-106617 via Ribbon Synapse from 15768 -> 106618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15768, + "TargetID": 106618, + "Directional": true + } + ] + }, + { + "ID": 11526, + "SourceStructureID": 6155, + "TargetStructureID": 106750, + "Label": "6155-106750 via Ribbon Synapse from 15518 -> 106751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15518, + "TargetID": 106751, + "Directional": true + } + ] + }, + { + "ID": 11527, + "SourceStructureID": 6155, + "TargetStructureID": 106812, + "Label": "6155-106812 via BC Conventional Synapse from 106815 -> 106816", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106815, + "TargetID": 106816, + "Directional": true + } + ] + }, + { + "ID": 11528, + "SourceStructureID": 6155, + "TargetStructureID": 106824, + "Label": "6155-106824 via Ribbon Synapse from 49068 -> 106827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49068, + "TargetID": 106827, + "Directional": true + } + ] + }, + { + "ID": 11529, + "SourceStructureID": 6155, + "TargetStructureID": 106831, + "Label": "6155-106831 via Ribbon Synapse from 49068 -> 106833", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49068, + "TargetID": 106833, + "Directional": true + } + ] + }, + { + "ID": 11530, + "SourceStructureID": 6155, + "TargetStructureID": 107619, + "Label": "6155-107619 via Ribbon Synapse from 48267 -> 107627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48267, + "TargetID": 107627, + "Directional": true + } + ] + }, + { + "ID": 11531, + "SourceStructureID": 6155, + "TargetStructureID": 107622, + "Label": "6155-107622 via Ribbon Synapse from 15397 -> 107623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15397, + "TargetID": 107623, + "Directional": true + } + ] + }, + { + "ID": 11532, + "SourceStructureID": 6155, + "TargetStructureID": 107739, + "Label": "6155-107739 via Ribbon Synapse from 48267 -> 107740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48267, + "TargetID": 107740, + "Directional": true + } + ] + }, + { + "ID": 11533, + "SourceStructureID": 6155, + "TargetStructureID": 107741, + "Label": "6155-107741 via Ribbon Synapse from 15397 -> 107742", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15397, + "TargetID": 107742, + "Directional": true + } + ] + }, + { + "ID": 11534, + "SourceStructureID": 6155, + "TargetStructureID": 107747, + "Label": "6155-107747 via Ribbon Synapse from 15430 -> 107752", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15430, + "TargetID": 107752, + "Directional": true + } + ] + }, + { + "ID": 11535, + "SourceStructureID": 6155, + "TargetStructureID": 107750, + "Label": "6155-107750 via Ribbon Synapse from 15430 -> 107751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15430, + "TargetID": 107751, + "Directional": true + } + ] + }, + { + "ID": 11536, + "SourceStructureID": 6155, + "TargetStructureID": 107767, + "Label": "6155-107767 via Ribbon Synapse from 15395 -> 107768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15395, + "TargetID": 107768, + "Directional": true + } + ] + }, + { + "ID": 11537, + "SourceStructureID": 6155, + "TargetStructureID": 107769, + "Label": "6155-107769 via Ribbon Synapse from 15395 -> 107770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15395, + "TargetID": 107770, + "Directional": true + } + ] + }, + { + "ID": 11538, + "SourceStructureID": 6155, + "TargetStructureID": 107779, + "Label": "6155-107779 via Ribbon Synapse from 15433 -> 107780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15433, + "TargetID": 107780, + "Directional": true + } + ] + }, + { + "ID": 11539, + "SourceStructureID": 6155, + "TargetStructureID": 107784, + "Label": "6155-107784 via Ribbon Synapse from 15429 -> 107785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15429, + "TargetID": 107785, + "Directional": true + } + ] + }, + { + "ID": 11540, + "SourceStructureID": 6155, + "TargetStructureID": 107786, + "Label": "6155-107786 via Ribbon Synapse from 15429 -> 107787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15429, + "TargetID": 107787, + "Directional": true + } + ] + }, + { + "ID": 11541, + "SourceStructureID": 6155, + "TargetStructureID": 107789, + "Label": "6155-107789 via Ribbon Synapse from 107788 -> 107790", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107788, + "TargetID": 107790, + "Directional": true + } + ] + }, + { + "ID": 11542, + "SourceStructureID": 6155, + "TargetStructureID": 107798, + "Label": "6155-107798 via Ribbon Synapse from 15400 -> 107799, 107791 -> 107799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15400, + "TargetID": 107799, + "Directional": true + }, + { + "SourceID": 107791, + "TargetID": 107799, + "Directional": true + } + ] + }, + { + "ID": 11543, + "SourceStructureID": 6155, + "TargetStructureID": 107800, + "Label": "6155-107800 via Ribbon Synapse from 15400 -> 107801", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15400, + "TargetID": 107801, + "Directional": true + } + ] + }, + { + "ID": 11544, + "SourceStructureID": 6155, + "TargetStructureID": 107805, + "Label": "6155-107805 via BC Conventional Synapse from 107811 -> 107812", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107811, + "TargetID": 107812, + "Directional": true + } + ] + }, + { + "ID": 11545, + "SourceStructureID": 6155, + "TargetStructureID": 107818, + "Label": "6155-107818 via Ribbon Synapse from 107817 -> 107819", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107817, + "TargetID": 107819, + "Directional": true + } + ] + }, + { + "ID": 11546, + "SourceStructureID": 6155, + "TargetStructureID": 107838, + "Label": "6155-107838 via Ribbon Synapse from 15384 -> 107839", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15384, + "TargetID": 107839, + "Directional": true + } + ] + }, + { + "ID": 11547, + "SourceStructureID": 6155, + "TargetStructureID": 107840, + "Label": "6155-107840 via Ribbon Synapse from 15384 -> 107841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15384, + "TargetID": 107841, + "Directional": true + } + ] + }, + { + "ID": 11548, + "SourceStructureID": 6155, + "TargetStructureID": 107845, + "Label": "6155-107845 via Ribbon Synapse from 49076 -> 107864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49076, + "TargetID": 107864, + "Directional": true + } + ] + }, + { + "ID": 11549, + "SourceStructureID": 6155, + "TargetStructureID": 107860, + "Label": "6155-107860 via Ribbon Synapse from 49076 -> 107863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49076, + "TargetID": 107863, + "Directional": true + } + ] + }, + { + "ID": 11550, + "SourceStructureID": 6155, + "TargetStructureID": 107870, + "Label": "6155-107870 via Ribbon Synapse from 15511 -> 107871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15511, + "TargetID": 107871, + "Directional": true + } + ] + }, + { + "ID": 11551, + "SourceStructureID": 6155, + "TargetStructureID": 107879, + "Label": "6155-107879 via Ribbon Synapse from 15510 -> 107881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15510, + "TargetID": 107881, + "Directional": true + } + ] + }, + { + "ID": 11552, + "SourceStructureID": 6155, + "TargetStructureID": 107882, + "Label": "6155-107882 via Ribbon Synapse from 15510 -> 107885", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15510, + "TargetID": 107885, + "Directional": true + } + ] + }, + { + "ID": 11553, + "SourceStructureID": 6155, + "TargetStructureID": 107894, + "Label": "6155-107894 via Ribbon Synapse from 15386 -> 107903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15386, + "TargetID": 107903, + "Directional": true + } + ] + }, + { + "ID": 11554, + "SourceStructureID": 6155, + "TargetStructureID": 107904, + "Label": "6155-107904 via Ribbon Synapse from 49078 -> 107906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49078, + "TargetID": 107906, + "Directional": true + } + ] + }, + { + "ID": 11555, + "SourceStructureID": 6155, + "TargetStructureID": 107908, + "Label": "6155-107908 via Ribbon Synapse from 15541 -> 107949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15541, + "TargetID": 107949, + "Directional": true + } + ] + }, + { + "ID": 11556, + "SourceStructureID": 6155, + "TargetStructureID": 107910, + "Label": "6155-107910 via Ribbon Synapse from 15541 -> 107972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15541, + "TargetID": 107972, + "Directional": true + } + ] + }, + { + "ID": 11557, + "SourceStructureID": 6155, + "TargetStructureID": 107915, + "Label": "6155-107915 via Ribbon Synapse from 15509 -> 107916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15509, + "TargetID": 107916, + "Directional": true + } + ] + }, + { + "ID": 11558, + "SourceStructureID": 6155, + "TargetStructureID": 107917, + "Label": "6155-107917 via Ribbon Synapse from 15508 -> 107920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15508, + "TargetID": 107920, + "Directional": true + } + ] + }, + { + "ID": 11559, + "SourceStructureID": 6155, + "TargetStructureID": 107918, + "Label": "6155-107918 via Ribbon Synapse from 15508 -> 107919", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15508, + "TargetID": 107919, + "Directional": true + } + ] + }, + { + "ID": 11560, + "SourceStructureID": 6155, + "TargetStructureID": 107989, + "Label": "6155-107989 via Ribbon Synapse from 15569 -> 108007", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15569, + "TargetID": 108007, + "Directional": true + } + ] + }, + { + "ID": 11561, + "SourceStructureID": 6155, + "TargetStructureID": 107992, + "Label": "6155-107992 via BC Conventional Synapse from 107995 -> 107994", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107995, + "TargetID": 107994, + "Directional": true + } + ] + }, + { + "ID": 11562, + "SourceStructureID": 6155, + "TargetStructureID": 108004, + "Label": "6155-108004 via Ribbon Synapse from 15568 -> 108009", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15568, + "TargetID": 108009, + "Directional": true + } + ] + }, + { + "ID": 11563, + "SourceStructureID": 6155, + "TargetStructureID": 108008, + "Label": "6155-108008 via Ribbon Synapse from 15569 -> 108015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15569, + "TargetID": 108015, + "Directional": true + } + ] + }, + { + "ID": 11564, + "SourceStructureID": 6155, + "TargetStructureID": 108010, + "Label": "6155-108010 via Ribbon Synapse from 15568 -> 108014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15568, + "TargetID": 108014, + "Directional": true + } + ] + }, + { + "ID": 11565, + "SourceStructureID": 6155, + "TargetStructureID": 108066, + "Label": "6155-108066 via Ribbon Synapse from 48305 -> 108069", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48305, + "TargetID": 108069, + "Directional": true + } + ] + }, + { + "ID": 11566, + "SourceStructureID": 6155, + "TargetStructureID": 108076, + "Label": "6155-108076 via Ribbon Synapse from 48303 -> 108078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48303, + "TargetID": 108078, + "Directional": true + } + ] + }, + { + "ID": 11567, + "SourceStructureID": 6155, + "TargetStructureID": 108079, + "Label": "6155-108079 via Ribbon Synapse from 48303 -> 108080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48303, + "TargetID": 108080, + "Directional": true + } + ] + }, + { + "ID": 11568, + "SourceStructureID": 6155, + "TargetStructureID": 108081, + "Label": "6155-108081 via BC Conventional Synapse from 108084 -> 108085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108084, + "TargetID": 108085, + "Directional": true + } + ] + }, + { + "ID": 11569, + "SourceStructureID": 6155, + "TargetStructureID": 108092, + "Label": "6155-108092 via Ribbon Synapse from 15546 -> 108093", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15546, + "TargetID": 108093, + "Directional": true + } + ] + }, + { + "ID": 11570, + "SourceStructureID": 6155, + "TargetStructureID": 108117, + "Label": "6155-108117 via Ribbon Synapse from 15549 -> 108121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15549, + "TargetID": 108121, + "Directional": true + } + ] + }, + { + "ID": 11571, + "SourceStructureID": 6155, + "TargetStructureID": 108119, + "Label": "6155-108119 via Ribbon Synapse from 15550 -> 108120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15550, + "TargetID": 108120, + "Directional": true + } + ] + }, + { + "ID": 11572, + "SourceStructureID": 6155, + "TargetStructureID": 108122, + "Label": "6155-108122 via Ribbon Synapse from 48293 -> 108123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48293, + "TargetID": 108123, + "Directional": true + } + ] + }, + { + "ID": 11573, + "SourceStructureID": 6155, + "TargetStructureID": 108196, + "Label": "6155-108196 via Ribbon Synapse from 34785 -> 108198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34785, + "TargetID": 108198, + "Directional": true + } + ] + }, + { + "ID": 11574, + "SourceStructureID": 6155, + "TargetStructureID": 108286, + "Label": "6155-108286 via Ribbon Synapse from 15521 -> 108287", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15521, + "TargetID": 108287, + "Directional": true + } + ] + }, + { + "ID": 11575, + "SourceStructureID": 6155, + "TargetStructureID": 108292, + "Label": "6155-108292 via Ribbon Synapse from 15521 -> 108293", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15521, + "TargetID": 108293, + "Directional": true + } + ] + }, + { + "ID": 11576, + "SourceStructureID": 6155, + "TargetStructureID": 108296, + "Label": "6155-108296 via Ribbon Synapse from 15520 -> 108297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15520, + "TargetID": 108297, + "Directional": true + } + ] + }, + { + "ID": 11577, + "SourceStructureID": 6155, + "TargetStructureID": 108301, + "Label": "6155-108301 via Ribbon Synapse from 15522 -> 108302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15522, + "TargetID": 108302, + "Directional": true + } + ] + }, + { + "ID": 11578, + "SourceStructureID": 6155, + "TargetStructureID": 108325, + "Label": "6155-108325 via Ribbon Synapse from 15523 -> 108326", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15523, + "TargetID": 108326, + "Directional": true + } + ] + }, + { + "ID": 11579, + "SourceStructureID": 6155, + "TargetStructureID": 108327, + "Label": "6155-108327 via Ribbon Synapse from 15525 -> 108329", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15525, + "TargetID": 108329, + "Directional": true + } + ] + }, + { + "ID": 11580, + "SourceStructureID": 6155, + "TargetStructureID": 108339, + "Label": "6155-108339 via Ribbon Synapse from 49083 -> 108341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49083, + "TargetID": 108341, + "Directional": true + } + ] + }, + { + "ID": 11581, + "SourceStructureID": 6156, + "TargetStructureID": 318, + "Label": "6156-318 via Ribbon Synapse from 14099 -> 14098, 15852 -> 15853, 65190 -> 65191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14099, + "TargetID": 14098, + "Directional": true + }, + { + "SourceID": 15852, + "TargetID": 15853, + "Directional": true + }, + { + "SourceID": 65190, + "TargetID": 65191, + "Directional": true + } + ] + }, + { + "ID": 11582, + "SourceStructureID": 6156, + "TargetStructureID": 390, + "Label": "6156-390 via Ribbon Synapse from 23199 -> 65106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23199, + "TargetID": 65106, + "Directional": true + } + ] + }, + { + "ID": 11583, + "SourceStructureID": 6156, + "TargetStructureID": 514, + "Label": "6156-514 via Ribbon Synapse from 11622 -> 11597, 117625 -> 133371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11622, + "TargetID": 11597, + "Directional": true + }, + { + "SourceID": 117625, + "TargetID": 133371, + "Directional": true + } + ] + }, + { + "ID": 11584, + "SourceStructureID": 6156, + "TargetStructureID": 4890, + "Label": "6156-4890 via BC Conventional Synapse from 117575 -> 133465", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117575, + "TargetID": 133465, + "Directional": true + } + ] + }, + { + "ID": 11585, + "SourceStructureID": 6156, + "TargetStructureID": 4890, + "Label": "6156-4890 via Ribbon Synapse from 18574 -> 9635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18574, + "TargetID": 9635, + "Directional": true + } + ] + }, + { + "ID": 11586, + "SourceStructureID": 6156, + "TargetStructureID": 5117, + "Label": "6156-5117 via BC Conventional Synapse from 133228 -> 23233", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133228, + "TargetID": 23233, + "Directional": true + } + ] + }, + { + "ID": 11587, + "SourceStructureID": 6156, + "TargetStructureID": 5117, + "Label": "6156-5117 via Ribbon Synapse from 23229 -> 133221, 23230 -> 23232, 23231 -> 23233, 23269 -> 69329, 28677 -> 133182, 28678 -> 133176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23229, + "TargetID": 133221, + "Directional": true + }, + { + "SourceID": 23230, + "TargetID": 23232, + "Directional": true + }, + { + "SourceID": 23231, + "TargetID": 23233, + "Directional": true + }, + { + "SourceID": 23269, + "TargetID": 69329, + "Directional": true + }, + { + "SourceID": 28677, + "TargetID": 133182, + "Directional": true + }, + { + "SourceID": 28678, + "TargetID": 133176, + "Directional": true + } + ] + }, + { + "ID": 11588, + "SourceStructureID": 6156, + "TargetStructureID": 5118, + "Label": "6156-5118 via Ribbon Synapse from 23231 -> 133238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23231, + "TargetID": 133238, + "Directional": true + } + ] + }, + { + "ID": 11589, + "SourceStructureID": 6156, + "TargetStructureID": 5350, + "Label": "6156-5350 via Ribbon Synapse from 22574 -> 133279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22574, + "TargetID": 133279, + "Directional": true + } + ] + }, + { + "ID": 11590, + "SourceStructureID": 6156, + "TargetStructureID": 5575, + "Label": "6156-5575 via Ribbon Synapse from 11604 -> 22948, 11605 -> 22949, 23625 -> 22948, 24495 -> 24494, 24497 -> 24494, 133153 -> 22948, 133154 -> 22948, 133155 -> 22949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11604, + "TargetID": 22948, + "Directional": true + }, + { + "SourceID": 11605, + "TargetID": 22949, + "Directional": true + }, + { + "SourceID": 23625, + "TargetID": 22948, + "Directional": true + }, + { + "SourceID": 24495, + "TargetID": 24494, + "Directional": true + }, + { + "SourceID": 24497, + "TargetID": 24494, + "Directional": true + }, + { + "SourceID": 133153, + "TargetID": 22948, + "Directional": true + }, + { + "SourceID": 133154, + "TargetID": 22948, + "Directional": true + }, + { + "SourceID": 133155, + "TargetID": 22949, + "Directional": true + } + ] + }, + { + "ID": 11591, + "SourceStructureID": 6156, + "TargetStructureID": 8577, + "Label": "6156-8577 via Ribbon Synapse from 117566 -> 15927", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117566, + "TargetID": 15927, + "Directional": true + } + ] + }, + { + "ID": 11592, + "SourceStructureID": 6156, + "TargetStructureID": 8579, + "Label": "6156-8579 via Ribbon Synapse from 23251 -> 61876, 23259 -> 133385", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23251, + "TargetID": 61876, + "Directional": true + }, + { + "SourceID": 23259, + "TargetID": 133385, + "Directional": true + } + ] + }, + { + "ID": 11593, + "SourceStructureID": 6156, + "TargetStructureID": 8720, + "Label": "6156-8720 via BC Conventional Synapse from 133388 -> 60103", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133388, + "TargetID": 60103, + "Directional": true + } + ] + }, + { + "ID": 11594, + "SourceStructureID": 6156, + "TargetStructureID": 8720, + "Label": "6156-8720 via Ribbon Synapse from 15304 -> 15303, 22375 -> 15306, 28673 -> 63198, 117510 -> 133313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15304, + "TargetID": 15303, + "Directional": true + }, + { + "SourceID": 22375, + "TargetID": 15306, + "Directional": true + }, + { + "SourceID": 28673, + "TargetID": 63198, + "Directional": true + }, + { + "SourceID": 117510, + "TargetID": 133313, + "Directional": true + } + ] + }, + { + "ID": 11595, + "SourceStructureID": 6156, + "TargetStructureID": 12208, + "Label": "6156-12208 via Ribbon Synapse from 11599 -> 22343", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11599, + "TargetID": 22343, + "Directional": true + } + ] + }, + { + "ID": 11596, + "SourceStructureID": 6156, + "TargetStructureID": 13855, + "Label": "6156-13855 via Ribbon Synapse from 133477 -> 133478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133477, + "TargetID": 133478, + "Directional": true + } + ] + }, + { + "ID": 11597, + "SourceStructureID": 6156, + "TargetStructureID": 15394, + "Label": "6156-15394 via Ribbon Synapse from 15858 -> 133421", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15858, + "TargetID": 133421, + "Directional": true + } + ] + }, + { + "ID": 11598, + "SourceStructureID": 6156, + "TargetStructureID": 18282, + "Label": "6156-18282 via Ribbon Synapse from 18574 -> 18305, 18575 -> 18572", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18574, + "TargetID": 18305, + "Directional": true + }, + { + "SourceID": 18575, + "TargetID": 18572, + "Directional": true + } + ] + }, + { + "ID": 11599, + "SourceStructureID": 6156, + "TargetStructureID": 18576, + "Label": "6156-18576 via Ribbon Synapse from 18575 -> 18577, 20418 -> 100454, 133204 -> 133203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18575, + "TargetID": 18577, + "Directional": true + }, + { + "SourceID": 20418, + "TargetID": 100454, + "Directional": true + }, + { + "SourceID": 133204, + "TargetID": 133203, + "Directional": true + } + ] + }, + { + "ID": 11600, + "SourceStructureID": 6156, + "TargetStructureID": 20413, + "Label": "6156-20413 via Ribbon Synapse from 20418 -> 20417", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20418, + "TargetID": 20417, + "Directional": true + } + ] + }, + { + "ID": 11601, + "SourceStructureID": 6156, + "TargetStructureID": 22554, + "Label": "6156-22554 via Ribbon Synapse from 28654 -> 135148", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28654, + "TargetID": 135148, + "Directional": true + } + ] + }, + { + "ID": 11602, + "SourceStructureID": 6156, + "TargetStructureID": 22974, + "Label": "6156-22974 via Ribbon Synapse from 11621 -> 23030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11621, + "TargetID": 23030, + "Directional": true + } + ] + }, + { + "ID": 11603, + "SourceStructureID": 6156, + "TargetStructureID": 25374, + "Label": "6156-25374 via Ribbon Synapse from 25381 -> 25380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25381, + "TargetID": 25380, + "Directional": true + } + ] + }, + { + "ID": 11604, + "SourceStructureID": 6156, + "TargetStructureID": 25440, + "Label": "6156-25440 via Ribbon Synapse from 23227 -> 25460, 28677 -> 133183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23227, + "TargetID": 25460, + "Directional": true + }, + { + "SourceID": 28677, + "TargetID": 133183, + "Directional": true + } + ] + }, + { + "ID": 11605, + "SourceStructureID": 6156, + "TargetStructureID": 25861, + "Label": "6156-25861 via Ribbon Synapse from 23166 -> 32236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23166, + "TargetID": 32236, + "Directional": true + } + ] + }, + { + "ID": 11606, + "SourceStructureID": 6156, + "TargetStructureID": 34601, + "Label": "6156-34601 via Ribbon Synapse from 60642 -> 60643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60642, + "TargetID": 60643, + "Directional": true + } + ] + }, + { + "ID": 11607, + "SourceStructureID": 6156, + "TargetStructureID": 54727, + "Label": "6156-54727 via Ribbon Synapse from 23180 -> 54738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23180, + "TargetID": 54738, + "Directional": true + } + ] + }, + { + "ID": 11608, + "SourceStructureID": 6156, + "TargetStructureID": 54744, + "Label": "6156-54744 via Ribbon Synapse from 23192 -> 133254, 23269 -> 54746", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23192, + "TargetID": 133254, + "Directional": true + }, + { + "SourceID": 23269, + "TargetID": 54746, + "Directional": true + } + ] + }, + { + "ID": 11609, + "SourceStructureID": 6156, + "TargetStructureID": 59422, + "Label": "6156-59422 via Ribbon Synapse from 23258 -> 59423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23258, + "TargetID": 59423, + "Directional": true + } + ] + }, + { + "ID": 11610, + "SourceStructureID": 6156, + "TargetStructureID": 60201, + "Label": "6156-60201 via Ribbon Synapse from 23230 -> 133230, 23234 -> 60205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23230, + "TargetID": 133230, + "Directional": true + }, + { + "SourceID": 23234, + "TargetID": 60205, + "Directional": true + } + ] + }, + { + "ID": 11611, + "SourceStructureID": 6156, + "TargetStructureID": 60657, + "Label": "6156-60657 via Ribbon Synapse from 28678 -> 60659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28678, + "TargetID": 60659, + "Directional": true + } + ] + }, + { + "ID": 11612, + "SourceStructureID": 6156, + "TargetStructureID": 61816, + "Label": "6156-61816 via Ribbon Synapse from 22375 -> 80737, 22376 -> 74052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22375, + "TargetID": 80737, + "Directional": true + }, + { + "SourceID": 22376, + "TargetID": 74052, + "Directional": true + } + ] + }, + { + "ID": 11613, + "SourceStructureID": 6156, + "TargetStructureID": 61882, + "Label": "6156-61882 via Ribbon Synapse from 23257 -> 61885", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23257, + "TargetID": 61885, + "Directional": true + } + ] + }, + { + "ID": 11614, + "SourceStructureID": 6156, + "TargetStructureID": 61898, + "Label": "6156-61898 via Ribbon Synapse from 23255 -> 61903, 23260 -> 61901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23255, + "TargetID": 61903, + "Directional": true + }, + { + "SourceID": 23260, + "TargetID": 61901, + "Directional": true + } + ] + }, + { + "ID": 11615, + "SourceStructureID": 6156, + "TargetStructureID": 61933, + "Label": "6156-61933 via Ribbon Synapse from 28692 -> 68641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28692, + "TargetID": 68641, + "Directional": true + } + ] + }, + { + "ID": 11616, + "SourceStructureID": 6156, + "TargetStructureID": 65267, + "Label": "6156-65267 via Ribbon Synapse from 28637 -> 65301, 28638 -> 65301, 28639 -> 65301", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28637, + "TargetID": 65301, + "Directional": true + }, + { + "SourceID": 28638, + "TargetID": 65301, + "Directional": true + }, + { + "SourceID": 28639, + "TargetID": 65301, + "Directional": true + } + ] + }, + { + "ID": 11617, + "SourceStructureID": 6156, + "TargetStructureID": 67812, + "Label": "6156-67812 via BC Conventional Synapse from 67821 -> 67822", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67821, + "TargetID": 67822, + "Directional": true + } + ] + }, + { + "ID": 11618, + "SourceStructureID": 6156, + "TargetStructureID": 67871, + "Label": "6156-67871 via Ribbon Synapse from 28696 -> 133338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28696, + "TargetID": 133338, + "Directional": true + } + ] + }, + { + "ID": 11619, + "SourceStructureID": 6156, + "TargetStructureID": 67874, + "Label": "6156-67874 via Ribbon Synapse from 133337 -> 67880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133337, + "TargetID": 67880, + "Directional": true + } + ] + }, + { + "ID": 11620, + "SourceStructureID": 6156, + "TargetStructureID": 68042, + "Label": "6156-68042 via BC Conventional Synapse from 68048 -> 68049", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68048, + "TargetID": 68049, + "Directional": true + } + ] + }, + { + "ID": 11621, + "SourceStructureID": 6156, + "TargetStructureID": 68077, + "Label": "6156-68077 via Ribbon Synapse from 28695 -> 68650", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28695, + "TargetID": 68650, + "Directional": true + } + ] + }, + { + "ID": 11622, + "SourceStructureID": 6156, + "TargetStructureID": 68894, + "Label": "6156-68894 via Ribbon Synapse from 28692 -> 68896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28692, + "TargetID": 68896, + "Directional": true + } + ] + }, + { + "ID": 11623, + "SourceStructureID": 6156, + "TargetStructureID": 70284, + "Label": "6156-70284 via Ribbon Synapse from 22323 -> 133148", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22323, + "TargetID": 133148, + "Directional": true + } + ] + }, + { + "ID": 11624, + "SourceStructureID": 6156, + "TargetStructureID": 101325, + "Label": "6156-101325 via Ribbon Synapse from 25560 -> 101328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25560, + "TargetID": 101328, + "Directional": true + } + ] + }, + { + "ID": 11625, + "SourceStructureID": 6156, + "TargetStructureID": 133192, + "Label": "6156-133192 via Ribbon Synapse from 23208 -> 133193, 23210 -> 133193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23208, + "TargetID": 133193, + "Directional": true + }, + { + "SourceID": 23210, + "TargetID": 133193, + "Directional": true + } + ] + }, + { + "ID": 11626, + "SourceStructureID": 6156, + "TargetStructureID": 133260, + "Label": "6156-133260 via Ribbon Synapse from 133259 -> 133261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133259, + "TargetID": 133261, + "Directional": true + } + ] + }, + { + "ID": 11627, + "SourceStructureID": 6156, + "TargetStructureID": 133264, + "Label": "6156-133264 via Ribbon Synapse from 133259 -> 133265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133259, + "TargetID": 133265, + "Directional": true + } + ] + }, + { + "ID": 11628, + "SourceStructureID": 6156, + "TargetStructureID": 133304, + "Label": "6156-133304 via Ribbon Synapse from 133307 -> 133306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133307, + "TargetID": 133306, + "Directional": true + } + ] + }, + { + "ID": 11629, + "SourceStructureID": 6156, + "TargetStructureID": 133364, + "Label": "6156-133364 via Ribbon Synapse from 23265 -> 133365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 23265, + "TargetID": 133365, + "Directional": true + } + ] + }, + { + "ID": 11630, + "SourceStructureID": 6156, + "TargetStructureID": 133451, + "Label": "6156-133451 via Ribbon Synapse from 133450 -> 133453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133450, + "TargetID": 133453, + "Directional": true + } + ] + }, + { + "ID": 11631, + "SourceStructureID": 6158, + "TargetStructureID": 606, + "Label": "6158-606 via Ribbon Synapse from 47268 -> 47266, 47269 -> 47270", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47268, + "TargetID": 47266, + "Directional": true + }, + { + "SourceID": 47269, + "TargetID": 47270, + "Directional": true + } + ] + }, + { + "ID": 11632, + "SourceStructureID": 6162, + "TargetStructureID": 7594, + "Label": "6162-7594 via Ribbon Synapse from 29120 -> 55751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29120, + "TargetID": 55751, + "Directional": true + } + ] + }, + { + "ID": 11633, + "SourceStructureID": 6162, + "TargetStructureID": 15796, + "Label": "6162-15796 via Ribbon Synapse from 19982 -> 19978, 20797 -> 20799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19982, + "TargetID": 19978, + "Directional": true + }, + { + "SourceID": 20797, + "TargetID": 20799, + "Directional": true + } + ] + }, + { + "ID": 11634, + "SourceStructureID": 6162, + "TargetStructureID": 35597, + "Label": "6162-35597 via Ribbon Synapse from 127715 -> 127714, 127717 -> 127716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127715, + "TargetID": 127714, + "Directional": true + }, + { + "SourceID": 127717, + "TargetID": 127716, + "Directional": true + } + ] + }, + { + "ID": 11635, + "SourceStructureID": 6162, + "TargetStructureID": 55232, + "Label": "6162-55232 via Ribbon Synapse from 29094 -> 55249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29094, + "TargetID": 55249, + "Directional": true + } + ] + }, + { + "ID": 11636, + "SourceStructureID": 6162, + "TargetStructureID": 87277, + "Label": "6162-87277 via Ribbon Synapse from 29122 -> 87290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29122, + "TargetID": 87290, + "Directional": true + } + ] + }, + { + "ID": 11637, + "SourceStructureID": 6162, + "TargetStructureID": 87291, + "Label": "6162-87291 via Ribbon Synapse from 29122 -> 87292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29122, + "TargetID": 87292, + "Directional": true + } + ] + }, + { + "ID": 11638, + "SourceStructureID": 6162, + "TargetStructureID": 110908, + "Label": "6162-110908 via Ribbon Synapse from 136306 -> 136307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136306, + "TargetID": 136307, + "Directional": true + } + ] + }, + { + "ID": 11639, + "SourceStructureID": 6162, + "TargetStructureID": 111078, + "Label": "6162-111078 via Ribbon Synapse from 29077 -> 111079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29077, + "TargetID": 111079, + "Directional": true + } + ] + }, + { + "ID": 11640, + "SourceStructureID": 6162, + "TargetStructureID": 111080, + "Label": "6162-111080 via Ribbon Synapse from 29077 -> 111081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29077, + "TargetID": 111081, + "Directional": true + } + ] + }, + { + "ID": 11641, + "SourceStructureID": 6163, + "TargetStructureID": 223, + "Label": "6163-223 via Ribbon Synapse from 35979 -> 35980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35979, + "TargetID": 35980, + "Directional": true + } + ] + }, + { + "ID": 11642, + "SourceStructureID": 6163, + "TargetStructureID": 410, + "Label": "6163-410 via Ribbon Synapse from 17526 -> 17524, 17739 -> 38509, 17761 -> 17760, 17767 -> 17766, 17768 -> 17765, 19147 -> 19149", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17526, + "TargetID": 17524, + "Directional": true + }, + { + "SourceID": 17739, + "TargetID": 38509, + "Directional": true + }, + { + "SourceID": 17761, + "TargetID": 17760, + "Directional": true + }, + { + "SourceID": 17767, + "TargetID": 17766, + "Directional": true + }, + { + "SourceID": 17768, + "TargetID": 17765, + "Directional": true + }, + { + "SourceID": 19147, + "TargetID": 19149, + "Directional": true + } + ] + }, + { + "ID": 11643, + "SourceStructureID": 6163, + "TargetStructureID": 591, + "Label": "6163-591 via Ribbon Synapse from 19150 -> 10294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19150, + "TargetID": 10294, + "Directional": true + } + ] + }, + { + "ID": 11644, + "SourceStructureID": 6163, + "TargetStructureID": 17527, + "Label": "6163-17527 via Ribbon Synapse from 17529 -> 17528, 17530 -> 17531, 17731 -> 17730, 17737 -> 17736, 17739 -> 17738, 18363 -> 18364, 19144 -> 19145, 19153 -> 19154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17529, + "TargetID": 17528, + "Directional": true + }, + { + "SourceID": 17530, + "TargetID": 17531, + "Directional": true + }, + { + "SourceID": 17731, + "TargetID": 17730, + "Directional": true + }, + { + "SourceID": 17737, + "TargetID": 17736, + "Directional": true + }, + { + "SourceID": 17739, + "TargetID": 17738, + "Directional": true + }, + { + "SourceID": 18363, + "TargetID": 18364, + "Directional": true + }, + { + "SourceID": 19144, + "TargetID": 19145, + "Directional": true + }, + { + "SourceID": 19153, + "TargetID": 19154, + "Directional": true + } + ] + }, + { + "ID": 11645, + "SourceStructureID": 6163, + "TargetStructureID": 29791, + "Label": "6163-29791 via Ribbon Synapse from 18375 -> 29798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18375, + "TargetID": 29798, + "Directional": true + } + ] + }, + { + "ID": 11646, + "SourceStructureID": 6164, + "TargetStructureID": 284, + "Label": "6164-284 via Ribbon Synapse from 17437 -> 17438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17437, + "TargetID": 17438, + "Directional": true + } + ] + }, + { + "ID": 11647, + "SourceStructureID": 6164, + "TargetStructureID": 6153, + "Label": "6164-6153 via Ribbon Synapse from 11759 -> 11760, 17443 -> 17442, 17445 -> 17447, 17450 -> 17449, 17451 -> 17452, 17460 -> 17461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11759, + "TargetID": 11760, + "Directional": true + }, + { + "SourceID": 17443, + "TargetID": 17442, + "Directional": true + }, + { + "SourceID": 17445, + "TargetID": 17447, + "Directional": true + }, + { + "SourceID": 17450, + "TargetID": 17449, + "Directional": true + }, + { + "SourceID": 17451, + "TargetID": 17452, + "Directional": true + }, + { + "SourceID": 17460, + "TargetID": 17461, + "Directional": true + } + ] + }, + { + "ID": 11648, + "SourceStructureID": 6164, + "TargetStructureID": 7157, + "Label": "6164-7157 via Ribbon Synapse from 18186 -> 18185, 18201 -> 18200", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18186, + "TargetID": 18185, + "Directional": true + }, + { + "SourceID": 18201, + "TargetID": 18200, + "Directional": true + } + ] + }, + { + "ID": 11649, + "SourceStructureID": 6164, + "TargetStructureID": 114925, + "Label": "6164-114925 via Ribbon Synapse from 17445 -> 114933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17445, + "TargetID": 114933, + "Directional": true + } + ] + }, + { + "ID": 11650, + "SourceStructureID": 6165, + "TargetStructureID": 38718, + "Label": "6165-38718 via Ribbon Synapse from 38726 -> 38725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38726, + "TargetID": 38725, + "Directional": true + } + ] + }, + { + "ID": 11651, + "SourceStructureID": 6165, + "TargetStructureID": 83803, + "Label": "6165-83803 via Ribbon Synapse from 38726 -> 83804", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38726, + "TargetID": 83804, + "Directional": true + } + ] + }, + { + "ID": 11652, + "SourceStructureID": 6166, + "TargetStructureID": 8575, + "Label": "6166-8575 via BC Conventional Synapse from 62645 -> 62644", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62645, + "TargetID": 62644, + "Directional": true + } + ] + }, + { + "ID": 11653, + "SourceStructureID": 6169, + "TargetStructureID": 138, + "Label": "6169-138 via Conventional from 14909 -> 2173", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14909, + "TargetID": 2173, + "Directional": true + } + ] + }, + { + "ID": 11654, + "SourceStructureID": 6169, + "TargetStructureID": 165, + "Label": "6169-165 via Conventional from 20776 -> 20777, 21684 -> 20781", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20776, + "TargetID": 20777, + "Directional": true + }, + { + "SourceID": 21684, + "TargetID": 20781, + "Directional": true + } + ] + }, + { + "ID": 11655, + "SourceStructureID": 6169, + "TargetStructureID": 172, + "Label": "6169-172 via Conventional from 12227 -> 12218, 18408 -> 18407", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12227, + "TargetID": 12218, + "Directional": true + }, + { + "SourceID": 18408, + "TargetID": 18407, + "Directional": true + } + ] + }, + { + "ID": 11656, + "SourceStructureID": 6169, + "TargetStructureID": 173, + "Label": "6169-173 via Conventional from 11953 -> 11911, 11954 -> 11915, 11956 -> 11955, 12221 -> 11890, 12223 -> 11890, 12224 -> 12225, 60919 -> 11982, 60920 -> 11985, 60926 -> 60927, 88183 -> 5913, 88186 -> 88187, 88189 -> 88188, 136856 -> 136858, 136860 -> 136861, 136871 -> 136872", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11953, + "TargetID": 11911, + "Directional": true + }, + { + "SourceID": 11954, + "TargetID": 11915, + "Directional": true + }, + { + "SourceID": 11956, + "TargetID": 11955, + "Directional": true + }, + { + "SourceID": 12221, + "TargetID": 11890, + "Directional": true + }, + { + "SourceID": 12223, + "TargetID": 11890, + "Directional": true + }, + { + "SourceID": 12224, + "TargetID": 12225, + "Directional": true + }, + { + "SourceID": 60919, + "TargetID": 11982, + "Directional": true + }, + { + "SourceID": 60920, + "TargetID": 11985, + "Directional": true + }, + { + "SourceID": 60926, + "TargetID": 60927, + "Directional": true + }, + { + "SourceID": 88183, + "TargetID": 5913, + "Directional": true + }, + { + "SourceID": 88186, + "TargetID": 88187, + "Directional": true + }, + { + "SourceID": 88189, + "TargetID": 88188, + "Directional": true + }, + { + "SourceID": 136856, + "TargetID": 136858, + "Directional": true + }, + { + "SourceID": 136860, + "TargetID": 136861, + "Directional": true + }, + { + "SourceID": 136871, + "TargetID": 136872, + "Directional": true + } + ] + }, + { + "ID": 11657, + "SourceStructureID": 6169, + "TargetStructureID": 181, + "Label": "6169-181 via Conventional from 20421 -> 20422, 20441 -> 20442", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20421, + "TargetID": 20422, + "Directional": true + }, + { + "SourceID": 20441, + "TargetID": 20442, + "Directional": true + } + ] + }, + { + "ID": 11658, + "SourceStructureID": 6169, + "TargetStructureID": 992, + "Label": "6169-992 via Conventional from 29417 -> 29425, 29417 -> 29433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29417, + "TargetID": 29425, + "Directional": true + }, + { + "SourceID": 29417, + "TargetID": 29433, + "Directional": true + } + ] + }, + { + "ID": 11659, + "SourceStructureID": 6169, + "TargetStructureID": 4568, + "Label": "6169-4568 via Conventional from 9472 -> 11554, 9476 -> 20778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9472, + "TargetID": 11554, + "Directional": true + }, + { + "SourceID": 9476, + "TargetID": 20778, + "Directional": true + } + ] + }, + { + "ID": 11660, + "SourceStructureID": 6169, + "TargetStructureID": 6169, + "Label": "6169-6169 via Conventional from 88185 -> 88184", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88185, + "TargetID": 88184, + "Directional": true + } + ] + }, + { + "ID": 11661, + "SourceStructureID": 6169, + "TargetStructureID": 9787, + "Label": "6169-9787 via Conventional from 18076 -> 12071, 60922 -> 18086", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18076, + "TargetID": 12071, + "Directional": true + }, + { + "SourceID": 60922, + "TargetID": 18086, + "Directional": true + } + ] + }, + { + "ID": 11662, + "SourceStructureID": 6169, + "TargetStructureID": 11030, + "Label": "6169-11030 via Conventional from 77661 -> 77662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77661, + "TargetID": 77662, + "Directional": true + } + ] + }, + { + "ID": 11663, + "SourceStructureID": 6169, + "TargetStructureID": 12203, + "Label": "6169-12203 via Conventional from 18813 -> 15636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18813, + "TargetID": 15636, + "Directional": true + } + ] + }, + { + "ID": 11664, + "SourceStructureID": 6169, + "TargetStructureID": 91280, + "Label": "6169-91280 via Conventional from 91300 -> 91301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91300, + "TargetID": 91301, + "Directional": true + } + ] + }, + { + "ID": 11665, + "SourceStructureID": 6169, + "TargetStructureID": 132220, + "Label": "6169-132220 via Conventional from 60853 -> 132227, 60856 -> 132226", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60853, + "TargetID": 132227, + "Directional": true + }, + { + "SourceID": 60856, + "TargetID": 132226, + "Directional": true + } + ] + }, + { + "ID": 11666, + "SourceStructureID": 6203, + "TargetStructureID": 162, + "Label": "6203-162 via Ribbon Synapse from 12001 -> 11867, 52644 -> 52643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12001, + "TargetID": 11867, + "Directional": true + }, + { + "SourceID": 52644, + "TargetID": 52643, + "Directional": true + } + ] + }, + { + "ID": 11667, + "SourceStructureID": 6203, + "TargetStructureID": 606, + "Label": "6203-606 via Ribbon Synapse from 51942 -> 51943, 54617 -> 54618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51942, + "TargetID": 51943, + "Directional": true + }, + { + "SourceID": 54617, + "TargetID": 54618, + "Directional": true + } + ] + }, + { + "ID": 11668, + "SourceStructureID": 6203, + "TargetStructureID": 9769, + "Label": "6203-9769 via Ribbon Synapse from 52628 -> 52626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52628, + "TargetID": 52626, + "Directional": true + } + ] + }, + { + "ID": 11669, + "SourceStructureID": 6203, + "TargetStructureID": 33272, + "Label": "6203-33272 via Ribbon Synapse from 11973 -> 33273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11973, + "TargetID": 33273, + "Directional": true + } + ] + }, + { + "ID": 11670, + "SourceStructureID": 6203, + "TargetStructureID": 43716, + "Label": "6203-43716 via Ribbon Synapse from 123671 -> 123670, 123674 -> 123673", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123671, + "TargetID": 123670, + "Directional": true + }, + { + "SourceID": 123674, + "TargetID": 123673, + "Directional": true + } + ] + }, + { + "ID": 11671, + "SourceStructureID": 6203, + "TargetStructureID": 56841, + "Label": "6203-56841 via Ribbon Synapse from 57215 -> 57216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57215, + "TargetID": 57216, + "Directional": true + } + ] + }, + { + "ID": 11672, + "SourceStructureID": 6203, + "TargetStructureID": 120945, + "Label": "6203-120945 via Ribbon Synapse from 57261 -> 120947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57261, + "TargetID": 120947, + "Directional": true + } + ] + }, + { + "ID": 11673, + "SourceStructureID": 6203, + "TargetStructureID": 123675, + "Label": "6203-123675 via Ribbon Synapse from 123674 -> 123676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123674, + "TargetID": 123676, + "Directional": true + } + ] + }, + { + "ID": 11674, + "SourceStructureID": 6204, + "TargetStructureID": 162, + "Label": "6204-162 via Ribbon Synapse from 52642 -> 52641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52642, + "TargetID": 52641, + "Directional": true + } + ] + }, + { + "ID": 11675, + "SourceStructureID": 6204, + "TargetStructureID": 606, + "Label": "6204-606 via Ribbon Synapse from 51922 -> 51921, 51937 -> 51938, 51954 -> 51949, 51956 -> 51957, 51967 -> 51968, 51985 -> 51986, 51987 -> 51982, 51998 -> 51999", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51922, + "TargetID": 51921, + "Directional": true + }, + { + "SourceID": 51937, + "TargetID": 51938, + "Directional": true + }, + { + "SourceID": 51954, + "TargetID": 51949, + "Directional": true + }, + { + "SourceID": 51956, + "TargetID": 51957, + "Directional": true + }, + { + "SourceID": 51967, + "TargetID": 51968, + "Directional": true + }, + { + "SourceID": 51985, + "TargetID": 51986, + "Directional": true + }, + { + "SourceID": 51987, + "TargetID": 51982, + "Directional": true + }, + { + "SourceID": 51998, + "TargetID": 51999, + "Directional": true + } + ] + }, + { + "ID": 11676, + "SourceStructureID": 6204, + "TargetStructureID": 5442, + "Label": "6204-5442 via Ribbon Synapse from 74439 -> 74440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74439, + "TargetID": 74440, + "Directional": true + } + ] + }, + { + "ID": 11677, + "SourceStructureID": 6204, + "TargetStructureID": 9769, + "Label": "6204-9769 via Ribbon Synapse from 52825 -> 52824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52825, + "TargetID": 52824, + "Directional": true + } + ] + }, + { + "ID": 11678, + "SourceStructureID": 6204, + "TargetStructureID": 16073, + "Label": "6204-16073 via Ribbon Synapse from 52121 -> 16076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52121, + "TargetID": 16076, + "Directional": true + } + ] + }, + { + "ID": 11679, + "SourceStructureID": 6204, + "TargetStructureID": 32773, + "Label": "6204-32773 via Ribbon Synapse from 101702 -> 32782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 101702, + "TargetID": 32782, + "Directional": true + } + ] + }, + { + "ID": 11680, + "SourceStructureID": 6204, + "TargetStructureID": 33039, + "Label": "6204-33039 via Ribbon Synapse from 33051 -> 33050", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33051, + "TargetID": 33050, + "Directional": true + } + ] + }, + { + "ID": 11681, + "SourceStructureID": 6204, + "TargetStructureID": 33714, + "Label": "6204-33714 via Ribbon Synapse from 33717 -> 33715", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33717, + "TargetID": 33715, + "Directional": true + } + ] + }, + { + "ID": 11682, + "SourceStructureID": 6204, + "TargetStructureID": 35343, + "Label": "6204-35343 via Ribbon Synapse from 35347 -> 35346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35347, + "TargetID": 35346, + "Directional": true + } + ] + }, + { + "ID": 11683, + "SourceStructureID": 6204, + "TargetStructureID": 51923, + "Label": "6204-51923 via Ribbon Synapse from 51926 -> 51927", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51926, + "TargetID": 51927, + "Directional": true + } + ] + }, + { + "ID": 11684, + "SourceStructureID": 6204, + "TargetStructureID": 68539, + "Label": "6204-68539 via Ribbon Synapse from 52123 -> 75959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52123, + "TargetID": 75959, + "Directional": true + } + ] + }, + { + "ID": 11685, + "SourceStructureID": 6204, + "TargetStructureID": 75960, + "Label": "6204-75960 via Ribbon Synapse from 52123 -> 75961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52123, + "TargetID": 75961, + "Directional": true + } + ] + }, + { + "ID": 11686, + "SourceStructureID": 6204, + "TargetStructureID": 88395, + "Label": "6204-88395 via Ribbon Synapse from 51987 -> 88421", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51987, + "TargetID": 88421, + "Directional": true + } + ] + }, + { + "ID": 11687, + "SourceStructureID": 6300, + "TargetStructureID": 6047, + "Label": "6300-6047 via Conventional from 113701 -> 113702", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113701, + "TargetID": 113702, + "Directional": true + } + ] + }, + { + "ID": 11688, + "SourceStructureID": 6406, + "TargetStructureID": 514, + "Label": "6406-514 via Conventional from 6418 -> 1006, 6419 -> 1441", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6418, + "TargetID": 1006, + "Directional": true + }, + { + "SourceID": 6419, + "TargetID": 1441, + "Directional": true + } + ] + }, + { + "ID": 11689, + "SourceStructureID": 6406, + "TargetStructureID": 5278, + "Label": "6406-5278 via Conventional from 20094 -> 20095", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20094, + "TargetID": 20095, + "Directional": true + } + ] + }, + { + "ID": 11690, + "SourceStructureID": 6406, + "TargetStructureID": 20681, + "Label": "6406-20681 via Conventional from 6415 -> 20698", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6415, + "TargetID": 20698, + "Directional": true + } + ] + }, + { + "ID": 11691, + "SourceStructureID": 6561, + "TargetStructureID": 223, + "Label": "6561-223 via Ribbon Synapse from 8326 -> 17312, 17307 -> 17304, 17309 -> 17308, 17318 -> 17317, 17751 -> 18491, 17843 -> 17842, 17892 -> 17668, 18487 -> 18488, 18489 -> 18490, 18493 -> 18494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8326, + "TargetID": 17312, + "Directional": true + }, + { + "SourceID": 17307, + "TargetID": 17304, + "Directional": true + }, + { + "SourceID": 17309, + "TargetID": 17308, + "Directional": true + }, + { + "SourceID": 17318, + "TargetID": 17317, + "Directional": true + }, + { + "SourceID": 17751, + "TargetID": 18491, + "Directional": true + }, + { + "SourceID": 17843, + "TargetID": 17842, + "Directional": true + }, + { + "SourceID": 17892, + "TargetID": 17668, + "Directional": true + }, + { + "SourceID": 18487, + "TargetID": 18488, + "Directional": true + }, + { + "SourceID": 18489, + "TargetID": 18490, + "Directional": true + }, + { + "SourceID": 18493, + "TargetID": 18494, + "Directional": true + } + ] + }, + { + "ID": 11692, + "SourceStructureID": 6561, + "TargetStructureID": 410, + "Label": "6561-410 via Ribbon Synapse from 8303 -> 17335, 8306 -> 17334, 8312 -> 17333, 8333 -> 17826, 17812 -> 17811, 17814 -> 17813, 17816 -> 17815, 17823 -> 17822, 17824 -> 17825, 17828 -> 17827, 17891 -> 17669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8303, + "TargetID": 17335, + "Directional": true + }, + { + "SourceID": 8306, + "TargetID": 17334, + "Directional": true + }, + { + "SourceID": 8312, + "TargetID": 17333, + "Directional": true + }, + { + "SourceID": 8333, + "TargetID": 17826, + "Directional": true + }, + { + "SourceID": 17812, + "TargetID": 17811, + "Directional": true + }, + { + "SourceID": 17814, + "TargetID": 17813, + "Directional": true + }, + { + "SourceID": 17816, + "TargetID": 17815, + "Directional": true + }, + { + "SourceID": 17823, + "TargetID": 17822, + "Directional": true + }, + { + "SourceID": 17824, + "TargetID": 17825, + "Directional": true + }, + { + "SourceID": 17828, + "TargetID": 17827, + "Directional": true + }, + { + "SourceID": 17891, + "TargetID": 17669, + "Directional": true + } + ] + }, + { + "ID": 11693, + "SourceStructureID": 6561, + "TargetStructureID": 476, + "Label": "6561-476 via Ribbon Synapse from 6562 -> 2388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6562, + "TargetID": 2388, + "Directional": true + } + ] + }, + { + "ID": 11694, + "SourceStructureID": 6561, + "TargetStructureID": 591, + "Label": "6561-591 via Ribbon Synapse from 6562 -> 6551, 8299 -> 8300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6562, + "TargetID": 6551, + "Directional": true + }, + { + "SourceID": 8299, + "TargetID": 8300, + "Directional": true + } + ] + }, + { + "ID": 11695, + "SourceStructureID": 6561, + "TargetStructureID": 6153, + "Label": "6561-6153 via Ribbon Synapse from 8312 -> 17350, 8314 -> 17353, 8317 -> 17321, 8318 -> 17322, 17326 -> 17325, 17787 -> 17786, 17828 -> 17831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8312, + "TargetID": 17350, + "Directional": true + }, + { + "SourceID": 8314, + "TargetID": 17353, + "Directional": true + }, + { + "SourceID": 8317, + "TargetID": 17321, + "Directional": true + }, + { + "SourceID": 8318, + "TargetID": 17322, + "Directional": true + }, + { + "SourceID": 17326, + "TargetID": 17325, + "Directional": true + }, + { + "SourceID": 17787, + "TargetID": 17786, + "Directional": true + }, + { + "SourceID": 17828, + "TargetID": 17831, + "Directional": true + } + ] + }, + { + "ID": 11696, + "SourceStructureID": 6561, + "TargetStructureID": 66815, + "Label": "6561-66815 via Ribbon Synapse from 8326 -> 159682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8326, + "TargetID": 159682, + "Directional": true + } + ] + }, + { + "ID": 11697, + "SourceStructureID": 6589, + "TargetStructureID": 525, + "Label": "6589-525 via BC Conventional Synapse from 120019 -> 132625", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120019, + "TargetID": 132625, + "Directional": true + } + ] + }, + { + "ID": 11698, + "SourceStructureID": 6589, + "TargetStructureID": 525, + "Label": "6589-525 via Ribbon Synapse from 9547 -> 6228, 14575 -> 9729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9547, + "TargetID": 6228, + "Directional": true + }, + { + "SourceID": 14575, + "TargetID": 9729, + "Directional": true + } + ] + }, + { + "ID": 11699, + "SourceStructureID": 6589, + "TargetStructureID": 5118, + "Label": "6589-5118 via Ribbon Synapse from 6991 -> 6454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6991, + "TargetID": 6454, + "Directional": true + } + ] + }, + { + "ID": 11700, + "SourceStructureID": 6589, + "TargetStructureID": 5345, + "Label": "6589-5345 via Ribbon Synapse from 14576 -> 14589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14576, + "TargetID": 14589, + "Directional": true + } + ] + }, + { + "ID": 11701, + "SourceStructureID": 6589, + "TargetStructureID": 5350, + "Label": "6589-5350 via Ribbon Synapse from 6596 -> 13800", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6596, + "TargetID": 13800, + "Directional": true + } + ] + }, + { + "ID": 11702, + "SourceStructureID": 6589, + "TargetStructureID": 8033, + "Label": "6589-8033 via Ribbon Synapse from 132670 -> 132671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132670, + "TargetID": 132671, + "Directional": true + } + ] + }, + { + "ID": 11703, + "SourceStructureID": 6589, + "TargetStructureID": 11531, + "Label": "6589-11531 via Ribbon Synapse from 6590 -> 11532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6590, + "TargetID": 11532, + "Directional": true + } + ] + }, + { + "ID": 11704, + "SourceStructureID": 6589, + "TargetStructureID": 13855, + "Label": "6589-13855 via Ribbon Synapse from 9586 -> 132761, 9591 -> 132638, 81480 -> 132747, 123736 -> 132729, 123737 -> 132710, 123755 -> 70816, 132718 -> 132717, 132769 -> 132770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9586, + "TargetID": 132761, + "Directional": true + }, + { + "SourceID": 9591, + "TargetID": 132638, + "Directional": true + }, + { + "SourceID": 81480, + "TargetID": 132747, + "Directional": true + }, + { + "SourceID": 123736, + "TargetID": 132729, + "Directional": true + }, + { + "SourceID": 123737, + "TargetID": 132710, + "Directional": true + }, + { + "SourceID": 123755, + "TargetID": 70816, + "Directional": true + }, + { + "SourceID": 132718, + "TargetID": 132717, + "Directional": true + }, + { + "SourceID": 132769, + "TargetID": 132770, + "Directional": true + } + ] + }, + { + "ID": 11705, + "SourceStructureID": 6589, + "TargetStructureID": 22554, + "Label": "6589-22554 via BC Conventional Synapse from 60886 -> 22562, 132684 -> 132685", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60886, + "TargetID": 22562, + "Directional": true + }, + { + "SourceID": 132684, + "TargetID": 132685, + "Directional": true + } + ] + }, + { + "ID": 11706, + "SourceStructureID": 6589, + "TargetStructureID": 22554, + "Label": "6589-22554 via Ribbon Synapse from 60888 -> 22559, 120032 -> 22558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60888, + "TargetID": 22559, + "Directional": true + }, + { + "SourceID": 120032, + "TargetID": 22558, + "Directional": true + } + ] + }, + { + "ID": 11707, + "SourceStructureID": 6589, + "TargetStructureID": 40469, + "Label": "6589-40469 via Ribbon Synapse from 132670 -> 40470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132670, + "TargetID": 40470, + "Directional": true + } + ] + }, + { + "ID": 11708, + "SourceStructureID": 6589, + "TargetStructureID": 54744, + "Label": "6589-54744 via Ribbon Synapse from 6600 -> 54761, 6602 -> 54760, 9578 -> 132759, 123737 -> 132711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6600, + "TargetID": 54761, + "Directional": true + }, + { + "SourceID": 6602, + "TargetID": 54760, + "Directional": true + }, + { + "SourceID": 9578, + "TargetID": 132759, + "Directional": true + }, + { + "SourceID": 123737, + "TargetID": 132711, + "Directional": true + } + ] + }, + { + "ID": 11709, + "SourceStructureID": 6589, + "TargetStructureID": 63371, + "Label": "6589-63371 via Ribbon Synapse from 63374 -> 63372", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63374, + "TargetID": 63372, + "Directional": true + } + ] + }, + { + "ID": 11710, + "SourceStructureID": 6589, + "TargetStructureID": 64357, + "Label": "6589-64357 via Ribbon Synapse from 60889 -> 132649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60889, + "TargetID": 132649, + "Directional": true + } + ] + }, + { + "ID": 11711, + "SourceStructureID": 6589, + "TargetStructureID": 70833, + "Label": "6589-70833 via Ribbon Synapse from 70858 -> 70859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70858, + "TargetID": 70859, + "Directional": true + } + ] + }, + { + "ID": 11712, + "SourceStructureID": 6589, + "TargetStructureID": 70868, + "Label": "6589-70868 via Ribbon Synapse from 123755 -> 132735", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123755, + "TargetID": 132735, + "Directional": true + } + ] + }, + { + "ID": 11713, + "SourceStructureID": 6589, + "TargetStructureID": 92331, + "Label": "6589-92331 via Ribbon Synapse from 9591 -> 132637", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9591, + "TargetID": 132637, + "Directional": true + } + ] + }, + { + "ID": 11714, + "SourceStructureID": 6589, + "TargetStructureID": 95701, + "Label": "6589-95701 via Ribbon Synapse from 6590 -> 95750, 6596 -> 132738, 6604 -> 95702, 9534 -> 95747, 9538 -> 132748", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6590, + "TargetID": 95750, + "Directional": true + }, + { + "SourceID": 6596, + "TargetID": 132738, + "Directional": true + }, + { + "SourceID": 6604, + "TargetID": 95702, + "Directional": true + }, + { + "SourceID": 9534, + "TargetID": 95747, + "Directional": true + }, + { + "SourceID": 9538, + "TargetID": 132748, + "Directional": true + } + ] + }, + { + "ID": 11715, + "SourceStructureID": 6589, + "TargetStructureID": 121541, + "Label": "6589-121541 via Ribbon Synapse from 9570 -> 121553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9570, + "TargetID": 121553, + "Directional": true + } + ] + }, + { + "ID": 11716, + "SourceStructureID": 6589, + "TargetStructureID": 132712, + "Label": "6589-132712 via Ribbon Synapse from 9566 -> 132713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9566, + "TargetID": 132713, + "Directional": true + } + ] + }, + { + "ID": 11717, + "SourceStructureID": 6589, + "TargetStructureID": 132722, + "Label": "6589-132722 via Ribbon Synapse from 9565 -> 132723, 132721 -> 132723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9565, + "TargetID": 132723, + "Directional": true + }, + { + "SourceID": 132721, + "TargetID": 132723, + "Directional": true + } + ] + }, + { + "ID": 11718, + "SourceStructureID": 6589, + "TargetStructureID": 132740, + "Label": "6589-132740 via BC Conventional Synapse from 132741 -> 132742", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132741, + "TargetID": 132742, + "Directional": true + } + ] + }, + { + "ID": 11719, + "SourceStructureID": 6617, + "TargetStructureID": 304, + "Label": "6617-304 via Ribbon Synapse from 17289 -> 17288, 17290 -> 17291, 17294 -> 17293, 17574 -> 17573, 17683 -> 17682, 17723 -> 17722, 18331 -> 18330, 18874 -> 18881, 18893 -> 18894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17289, + "TargetID": 17288, + "Directional": true + }, + { + "SourceID": 17290, + "TargetID": 17291, + "Directional": true + }, + { + "SourceID": 17294, + "TargetID": 17293, + "Directional": true + }, + { + "SourceID": 17574, + "TargetID": 17573, + "Directional": true + }, + { + "SourceID": 17683, + "TargetID": 17682, + "Directional": true + }, + { + "SourceID": 17723, + "TargetID": 17722, + "Directional": true + }, + { + "SourceID": 18331, + "TargetID": 18330, + "Directional": true + }, + { + "SourceID": 18874, + "TargetID": 18881, + "Directional": true + }, + { + "SourceID": 18893, + "TargetID": 18894, + "Directional": true + } + ] + }, + { + "ID": 11720, + "SourceStructureID": 6617, + "TargetStructureID": 410, + "Label": "6617-410 via Ribbon Synapse from 17566 -> 17565, 17707 -> 17706, 17711 -> 17710, 17716 -> 17715, 18346 -> 17656", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17566, + "TargetID": 17565, + "Directional": true + }, + { + "SourceID": 17707, + "TargetID": 17706, + "Directional": true + }, + { + "SourceID": 17711, + "TargetID": 17710, + "Directional": true + }, + { + "SourceID": 17716, + "TargetID": 17715, + "Directional": true + }, + { + "SourceID": 18346, + "TargetID": 17656, + "Directional": true + } + ] + }, + { + "ID": 11721, + "SourceStructureID": 6617, + "TargetStructureID": 2610, + "Label": "6617-2610 via Ribbon Synapse from 18874 -> 18877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18874, + "TargetID": 18877, + "Directional": true + } + ] + }, + { + "ID": 11722, + "SourceStructureID": 6617, + "TargetStructureID": 32660, + "Label": "6617-32660 via Ribbon Synapse from 6625 -> 32665", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6625, + "TargetID": 32665, + "Directional": true + } + ] + }, + { + "ID": 11723, + "SourceStructureID": 6618, + "TargetStructureID": 304, + "Label": "6618-304 via Ribbon Synapse from 17743 -> 17744, 18919 -> 18920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17743, + "TargetID": 17744, + "Directional": true + }, + { + "SourceID": 18919, + "TargetID": 18920, + "Directional": true + } + ] + }, + { + "ID": 11724, + "SourceStructureID": 6618, + "TargetStructureID": 410, + "Label": "6618-410 via Ribbon Synapse from 17701 -> 17700, 17704 -> 17703, 17709 -> 17708, 18335 -> 17578, 18337 -> 18336, 18340 -> 18339, 18905 -> 18906, 18918 -> 22486, 22485 -> 22487, 22499 -> 22498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17701, + "TargetID": 17700, + "Directional": true + }, + { + "SourceID": 17704, + "TargetID": 17703, + "Directional": true + }, + { + "SourceID": 17709, + "TargetID": 17708, + "Directional": true + }, + { + "SourceID": 18335, + "TargetID": 17578, + "Directional": true + }, + { + "SourceID": 18337, + "TargetID": 18336, + "Directional": true + }, + { + "SourceID": 18340, + "TargetID": 18339, + "Directional": true + }, + { + "SourceID": 18905, + "TargetID": 18906, + "Directional": true + }, + { + "SourceID": 18918, + "TargetID": 22486, + "Directional": true + }, + { + "SourceID": 22485, + "TargetID": 22487, + "Directional": true + }, + { + "SourceID": 22499, + "TargetID": 22498, + "Directional": true + } + ] + }, + { + "ID": 11725, + "SourceStructureID": 6618, + "TargetStructureID": 4850, + "Label": "6618-4850 via Ribbon Synapse from 18900 -> 30714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18900, + "TargetID": 30714, + "Directional": true + } + ] + }, + { + "ID": 11726, + "SourceStructureID": 6618, + "TargetStructureID": 29791, + "Label": "6618-29791 via Ribbon Synapse from 18908 -> 29794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18908, + "TargetID": 29794, + "Directional": true + } + ] + }, + { + "ID": 11727, + "SourceStructureID": 6618, + "TargetStructureID": 40919, + "Label": "6618-40919 via Ribbon Synapse from 18901 -> 60507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18901, + "TargetID": 60507, + "Directional": true + } + ] + }, + { + "ID": 11728, + "SourceStructureID": 6656, + "TargetStructureID": 421, + "Label": "6656-421 via BC Conventional Synapse from 31857 -> 31856", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31857, + "TargetID": 31856, + "Directional": true + } + ] + }, + { + "ID": 11729, + "SourceStructureID": 6909, + "TargetStructureID": 7594, + "Label": "6909-7594 via Ribbon Synapse from 38220 -> 25161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38220, + "TargetID": 25161, + "Directional": true + } + ] + }, + { + "ID": 11730, + "SourceStructureID": 6910, + "TargetStructureID": 42951, + "Label": "6910-42951 via Ribbon Synapse from 42998 -> 42994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42998, + "TargetID": 42994, + "Directional": true + } + ] + }, + { + "ID": 11731, + "SourceStructureID": 6911, + "TargetStructureID": 7345, + "Label": "6911-7345 via Ribbon Synapse from 33654 -> 56576, 56579 -> 56578", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33654, + "TargetID": 56576, + "Directional": true + }, + { + "SourceID": 56579, + "TargetID": 56578, + "Directional": true + } + ] + }, + { + "ID": 11732, + "SourceStructureID": 6912, + "TargetStructureID": 2064, + "Label": "6912-2064 via Ribbon Synapse from 6922 -> 13192, 51059 -> 13196", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6922, + "TargetID": 13192, + "Directional": true + }, + { + "SourceID": 51059, + "TargetID": 13196, + "Directional": true + } + ] + }, + { + "ID": 11733, + "SourceStructureID": 6912, + "TargetStructureID": 7594, + "Label": "6912-7594 via Ribbon Synapse from 25125 -> 25124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25125, + "TargetID": 25124, + "Directional": true + } + ] + }, + { + "ID": 11734, + "SourceStructureID": 6912, + "TargetStructureID": 25869, + "Label": "6912-25869 via Ribbon Synapse from 6937 -> 98609", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 6937, + "TargetID": 98609, + "Directional": true + } + ] + }, + { + "ID": 11735, + "SourceStructureID": 6912, + "TargetStructureID": 32379, + "Label": "6912-32379 via Ribbon Synapse from 51075 -> 101689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51075, + "TargetID": 101689, + "Directional": true + } + ] + }, + { + "ID": 11736, + "SourceStructureID": 6912, + "TargetStructureID": 33127, + "Label": "6912-33127 via Ribbon Synapse from 33137 -> 33136", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33137, + "TargetID": 33136, + "Directional": true + } + ] + }, + { + "ID": 11737, + "SourceStructureID": 6912, + "TargetStructureID": 35068, + "Label": "6912-35068 via BC Conventional Synapse from 123180 -> 35070", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123180, + "TargetID": 35070, + "Directional": true + } + ] + }, + { + "ID": 11738, + "SourceStructureID": 6912, + "TargetStructureID": 35068, + "Label": "6912-35068 via Ribbon Synapse from 35074 -> 35071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35074, + "TargetID": 35071, + "Directional": true + } + ] + }, + { + "ID": 11739, + "SourceStructureID": 6912, + "TargetStructureID": 69162, + "Label": "6912-69162 via Ribbon Synapse from 48370 -> 69254, 51147 -> 69250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48370, + "TargetID": 69254, + "Directional": true + }, + { + "SourceID": 51147, + "TargetID": 69250, + "Directional": true + } + ] + }, + { + "ID": 11740, + "SourceStructureID": 6957, + "TargetStructureID": 42866, + "Label": "6957-42866 via Ribbon Synapse from 42913 -> 42868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42913, + "TargetID": 42868, + "Directional": true + } + ] + }, + { + "ID": 11741, + "SourceStructureID": 6957, + "TargetStructureID": 42890, + "Label": "6957-42890 via Ribbon Synapse from 122052 -> 122053", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122052, + "TargetID": 122053, + "Directional": true + } + ] + }, + { + "ID": 11742, + "SourceStructureID": 6957, + "TargetStructureID": 42895, + "Label": "6957-42895 via Ribbon Synapse from 42919 -> 42906, 42921 -> 42922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42919, + "TargetID": 42906, + "Directional": true + }, + { + "SourceID": 42921, + "TargetID": 42922, + "Directional": true + } + ] + }, + { + "ID": 11743, + "SourceStructureID": 6958, + "TargetStructureID": 606, + "Label": "6958-606 via Ribbon Synapse from 51832 -> 51835, 51833 -> 51834, 117945 -> 51795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51832, + "TargetID": 51835, + "Directional": true + }, + { + "SourceID": 51833, + "TargetID": 51834, + "Directional": true + }, + { + "SourceID": 117945, + "TargetID": 51795, + "Directional": true + } + ] + }, + { + "ID": 11744, + "SourceStructureID": 6958, + "TargetStructureID": 5117, + "Label": "6958-5117 via Ribbon Synapse from 116573 -> 116572, 116574 -> 116572, 117939 -> 117946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116573, + "TargetID": 116572, + "Directional": true + }, + { + "SourceID": 116574, + "TargetID": 116572, + "Directional": true + }, + { + "SourceID": 117939, + "TargetID": 117946, + "Directional": true + } + ] + }, + { + "ID": 11745, + "SourceStructureID": 6958, + "TargetStructureID": 5374, + "Label": "6958-5374 via Ribbon Synapse from 20450 -> 20446, 20452 -> 20449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20450, + "TargetID": 20446, + "Directional": true + }, + { + "SourceID": 20452, + "TargetID": 20449, + "Directional": true + } + ] + }, + { + "ID": 11746, + "SourceStructureID": 6958, + "TargetStructureID": 8579, + "Label": "6958-8579 via Ribbon Synapse from 118042 -> 62947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118042, + "TargetID": 62947, + "Directional": true + } + ] + }, + { + "ID": 11747, + "SourceStructureID": 6958, + "TargetStructureID": 8589, + "Label": "6958-8589 via BC Conventional Synapse from 70475 -> 70478", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70475, + "TargetID": 70478, + "Directional": true + } + ] + }, + { + "ID": 11748, + "SourceStructureID": 6958, + "TargetStructureID": 63978, + "Label": "6958-63978 via Ribbon Synapse from 56413 -> 63995", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56413, + "TargetID": 63995, + "Directional": true + } + ] + }, + { + "ID": 11749, + "SourceStructureID": 6958, + "TargetStructureID": 122768, + "Label": "6958-122768 via Ribbon Synapse from 118032 -> 122791", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118032, + "TargetID": 122791, + "Directional": true + } + ] + }, + { + "ID": 11750, + "SourceStructureID": 6965, + "TargetStructureID": 606, + "Label": "6965-606 via Ribbon Synapse from 54424 -> 54422", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54424, + "TargetID": 54422, + "Directional": true + } + ] + }, + { + "ID": 11751, + "SourceStructureID": 6965, + "TargetStructureID": 5413, + "Label": "6965-5413 via Ribbon Synapse from 121942 -> 130918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121942, + "TargetID": 130918, + "Directional": true + } + ] + }, + { + "ID": 11752, + "SourceStructureID": 6965, + "TargetStructureID": 11238, + "Label": "6965-11238 via Ribbon Synapse from 136245 -> 136244", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136245, + "TargetID": 136244, + "Directional": true + } + ] + }, + { + "ID": 11753, + "SourceStructureID": 6997, + "TargetStructureID": 390, + "Label": "6997-390 via Ribbon Synapse from 70894 -> 65110", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70894, + "TargetID": 65110, + "Directional": true + } + ] + }, + { + "ID": 11754, + "SourceStructureID": 6997, + "TargetStructureID": 525, + "Label": "6997-525 via BC Conventional Synapse from 22033 -> 22034", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22033, + "TargetID": 22034, + "Directional": true + } + ] + }, + { + "ID": 11755, + "SourceStructureID": 6997, + "TargetStructureID": 1620, + "Label": "6997-1620 via Ribbon Synapse from 21951 -> 16841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21951, + "TargetID": 16841, + "Directional": true + } + ] + }, + { + "ID": 11756, + "SourceStructureID": 6997, + "TargetStructureID": 4890, + "Label": "6997-4890 via Ribbon Synapse from 64901 -> 64900, 64904 -> 64903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64901, + "TargetID": 64900, + "Directional": true + }, + { + "SourceID": 64904, + "TargetID": 64903, + "Directional": true + } + ] + }, + { + "ID": 11757, + "SourceStructureID": 6997, + "TargetStructureID": 5117, + "Label": "6997-5117 via Ribbon Synapse from 22042 -> 15010, 22108 -> 15008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22042, + "TargetID": 15010, + "Directional": true + }, + { + "SourceID": 22108, + "TargetID": 15008, + "Directional": true + } + ] + }, + { + "ID": 11758, + "SourceStructureID": 6997, + "TargetStructureID": 5507, + "Label": "6997-5507 via Ribbon Synapse from 7000 -> 21896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7000, + "TargetID": 21896, + "Directional": true + } + ] + }, + { + "ID": 11759, + "SourceStructureID": 6997, + "TargetStructureID": 8720, + "Label": "6997-8720 via Ribbon Synapse from 136642 -> 15302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136642, + "TargetID": 15302, + "Directional": true + } + ] + }, + { + "ID": 11760, + "SourceStructureID": 6997, + "TargetStructureID": 18282, + "Label": "6997-18282 via Ribbon Synapse from 31419 -> 31416, 31438 -> 31437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31419, + "TargetID": 31416, + "Directional": true + }, + { + "SourceID": 31438, + "TargetID": 31437, + "Directional": true + } + ] + }, + { + "ID": 11761, + "SourceStructureID": 6997, + "TargetStructureID": 20728, + "Label": "6997-20728 via Ribbon Synapse from 20732 -> 20731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20732, + "TargetID": 20731, + "Directional": true + } + ] + }, + { + "ID": 11762, + "SourceStructureID": 6997, + "TargetStructureID": 32804, + "Label": "6997-32804 via Ribbon Synapse from 22170 -> 32823, 22282 -> 32826, 22311 -> 32830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22170, + "TargetID": 32823, + "Directional": true + }, + { + "SourceID": 22282, + "TargetID": 32826, + "Directional": true + }, + { + "SourceID": 22311, + "TargetID": 32830, + "Directional": true + } + ] + }, + { + "ID": 11763, + "SourceStructureID": 6997, + "TargetStructureID": 34882, + "Label": "6997-34882 via Ribbon Synapse from 28761 -> 34885, 70892 -> 70893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28761, + "TargetID": 34885, + "Directional": true + }, + { + "SourceID": 70892, + "TargetID": 70893, + "Directional": true + } + ] + }, + { + "ID": 11764, + "SourceStructureID": 6997, + "TargetStructureID": 43507, + "Label": "6997-43507 via BC Conventional Synapse from 136647 -> 136648", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136647, + "TargetID": 136648, + "Directional": true + } + ] + }, + { + "ID": 11765, + "SourceStructureID": 6997, + "TargetStructureID": 45677, + "Label": "6997-45677 via Ribbon Synapse from 82947 -> 82948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82947, + "TargetID": 82948, + "Directional": true + } + ] + }, + { + "ID": 11766, + "SourceStructureID": 6997, + "TargetStructureID": 61270, + "Label": "6997-61270 via Ribbon Synapse from 22153 -> 61283, 22311 -> 61275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22153, + "TargetID": 61283, + "Directional": true + }, + { + "SourceID": 22311, + "TargetID": 61275, + "Directional": true + } + ] + }, + { + "ID": 11767, + "SourceStructureID": 6997, + "TargetStructureID": 63371, + "Label": "6997-63371 via BC Conventional Synapse from 95992 -> 63375", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95992, + "TargetID": 63375, + "Directional": true + } + ] + }, + { + "ID": 11768, + "SourceStructureID": 6997, + "TargetStructureID": 66407, + "Label": "6997-66407 via Ribbon Synapse from 83109 -> 83104, 83112 -> 69353", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83109, + "TargetID": 83104, + "Directional": true + }, + { + "SourceID": 83112, + "TargetID": 69353, + "Directional": true + } + ] + }, + { + "ID": 11769, + "SourceStructureID": 6997, + "TargetStructureID": 66946, + "Label": "6997-66946 via Ribbon Synapse from 80637 -> 82944", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80637, + "TargetID": 82944, + "Directional": true + } + ] + }, + { + "ID": 11770, + "SourceStructureID": 6997, + "TargetStructureID": 66958, + "Label": "6997-66958 via Ribbon Synapse from 22245 -> 70103, 83030 -> 70067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22245, + "TargetID": 70103, + "Directional": true + }, + { + "SourceID": 83030, + "TargetID": 70067, + "Directional": true + } + ] + }, + { + "ID": 11771, + "SourceStructureID": 6997, + "TargetStructureID": 68286, + "Label": "6997-68286 via Ribbon Synapse from 28710 -> 80652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28710, + "TargetID": 80652, + "Directional": true + } + ] + }, + { + "ID": 11772, + "SourceStructureID": 6997, + "TargetStructureID": 68302, + "Label": "6997-68302 via Ribbon Synapse from 22108 -> 82940, 82930 -> 82929, 82935 -> 82934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22108, + "TargetID": 82940, + "Directional": true + }, + { + "SourceID": 82930, + "TargetID": 82929, + "Directional": true + }, + { + "SourceID": 82935, + "TargetID": 82934, + "Directional": true + } + ] + }, + { + "ID": 11773, + "SourceStructureID": 6997, + "TargetStructureID": 70069, + "Label": "6997-70069 via Ribbon Synapse from 83030 -> 70070", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83030, + "TargetID": 70070, + "Directional": true + } + ] + }, + { + "ID": 11774, + "SourceStructureID": 6997, + "TargetStructureID": 70868, + "Label": "6997-70868 via Ribbon Synapse from 70895 -> 70888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70895, + "TargetID": 70888, + "Directional": true + } + ] + }, + { + "ID": 11775, + "SourceStructureID": 6997, + "TargetStructureID": 78301, + "Label": "6997-78301 via Ribbon Synapse from 28762 -> 78302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28762, + "TargetID": 78302, + "Directional": true + } + ] + }, + { + "ID": 11776, + "SourceStructureID": 6997, + "TargetStructureID": 78303, + "Label": "6997-78303 via Ribbon Synapse from 136268 -> 136833", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136268, + "TargetID": 136833, + "Directional": true + } + ] + }, + { + "ID": 11777, + "SourceStructureID": 6997, + "TargetStructureID": 79911, + "Label": "6997-79911 via Ribbon Synapse from 83118 -> 79912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83118, + "TargetID": 79912, + "Directional": true + } + ] + }, + { + "ID": 11778, + "SourceStructureID": 6997, + "TargetStructureID": 79921, + "Label": "6997-79921 via Ribbon Synapse from 83094 -> 79922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83094, + "TargetID": 79922, + "Directional": true + } + ] + }, + { + "ID": 11779, + "SourceStructureID": 6997, + "TargetStructureID": 79926, + "Label": "6997-79926 via Ribbon Synapse from 83094 -> 83098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83094, + "TargetID": 83098, + "Directional": true + } + ] + }, + { + "ID": 11780, + "SourceStructureID": 6997, + "TargetStructureID": 79943, + "Label": "6997-79943 via Ribbon Synapse from 83109 -> 79944", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83109, + "TargetID": 79944, + "Directional": true + } + ] + }, + { + "ID": 11781, + "SourceStructureID": 6997, + "TargetStructureID": 79946, + "Label": "6997-79946 via Ribbon Synapse from 83111 -> 79947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83111, + "TargetID": 79947, + "Directional": true + } + ] + }, + { + "ID": 11782, + "SourceStructureID": 6997, + "TargetStructureID": 79948, + "Label": "6997-79948 via Ribbon Synapse from 83111 -> 79949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83111, + "TargetID": 79949, + "Directional": true + } + ] + }, + { + "ID": 11783, + "SourceStructureID": 6997, + "TargetStructureID": 79958, + "Label": "6997-79958 via Ribbon Synapse from 83112 -> 79959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83112, + "TargetID": 79959, + "Directional": true + } + ] + }, + { + "ID": 11784, + "SourceStructureID": 6997, + "TargetStructureID": 79960, + "Label": "6997-79960 via Ribbon Synapse from 83112 -> 79961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83112, + "TargetID": 79961, + "Directional": true + } + ] + }, + { + "ID": 11785, + "SourceStructureID": 6997, + "TargetStructureID": 79966, + "Label": "6997-79966 via Ribbon Synapse from 83091 -> 79967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83091, + "TargetID": 79967, + "Directional": true + } + ] + }, + { + "ID": 11786, + "SourceStructureID": 6997, + "TargetStructureID": 79968, + "Label": "6997-79968 via Ribbon Synapse from 83091 -> 79969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83091, + "TargetID": 79969, + "Directional": true + } + ] + }, + { + "ID": 11787, + "SourceStructureID": 6997, + "TargetStructureID": 79970, + "Label": "6997-79970 via Ribbon Synapse from 83078 -> 79974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83078, + "TargetID": 79974, + "Directional": true + } + ] + }, + { + "ID": 11788, + "SourceStructureID": 6997, + "TargetStructureID": 79975, + "Label": "6997-79975 via Ribbon Synapse from 83078 -> 79976", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83078, + "TargetID": 79976, + "Directional": true + } + ] + }, + { + "ID": 11789, + "SourceStructureID": 6997, + "TargetStructureID": 79984, + "Label": "6997-79984 via Ribbon Synapse from 83082 -> 79992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83082, + "TargetID": 79992, + "Directional": true + } + ] + }, + { + "ID": 11790, + "SourceStructureID": 6997, + "TargetStructureID": 79993, + "Label": "6997-79993 via Ribbon Synapse from 83082 -> 79994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83082, + "TargetID": 79994, + "Directional": true + } + ] + }, + { + "ID": 11791, + "SourceStructureID": 6997, + "TargetStructureID": 80026, + "Label": "6997-80026 via Ribbon Synapse from 83025 -> 80027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83025, + "TargetID": 80027, + "Directional": true + } + ] + }, + { + "ID": 11792, + "SourceStructureID": 6997, + "TargetStructureID": 80034, + "Label": "6997-80034 via Ribbon Synapse from 84434 -> 84435", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84434, + "TargetID": 84435, + "Directional": true + } + ] + }, + { + "ID": 11793, + "SourceStructureID": 6997, + "TargetStructureID": 80042, + "Label": "6997-80042 via BC Conventional Synapse from 83066 -> 80044", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83066, + "TargetID": 80044, + "Directional": true + } + ] + }, + { + "ID": 11794, + "SourceStructureID": 6997, + "TargetStructureID": 80051, + "Label": "6997-80051 via Ribbon Synapse from 83024 -> 81886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83024, + "TargetID": 81886, + "Directional": true + } + ] + }, + { + "ID": 11795, + "SourceStructureID": 6997, + "TargetStructureID": 81098, + "Label": "6997-81098 via Ribbon Synapse from 22300 -> 81101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22300, + "TargetID": 81101, + "Directional": true + } + ] + }, + { + "ID": 11796, + "SourceStructureID": 6997, + "TargetStructureID": 82216, + "Label": "6997-82216 via Ribbon Synapse from 31428 -> 82219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31428, + "TargetID": 82219, + "Directional": true + } + ] + }, + { + "ID": 11797, + "SourceStructureID": 6997, + "TargetStructureID": 83105, + "Label": "6997-83105 via Ribbon Synapse from 83109 -> 83106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83109, + "TargetID": 83106, + "Directional": true + } + ] + }, + { + "ID": 11798, + "SourceStructureID": 6997, + "TargetStructureID": 83114, + "Label": "6997-83114 via Ribbon Synapse from 83112 -> 83115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83112, + "TargetID": 83115, + "Directional": true + } + ] + }, + { + "ID": 11799, + "SourceStructureID": 6997, + "TargetStructureID": 84830, + "Label": "6997-84830 via BC Conventional Synapse from 84883 -> 84882", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84883, + "TargetID": 84882, + "Directional": true + } + ] + }, + { + "ID": 11800, + "SourceStructureID": 6997, + "TargetStructureID": 84830, + "Label": "6997-84830 via Ribbon Synapse from 21927 -> 85447, 22143 -> 84895, 52510 -> 84891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21927, + "TargetID": 85447, + "Directional": true + }, + { + "SourceID": 22143, + "TargetID": 84895, + "Directional": true + }, + { + "SourceID": 52510, + "TargetID": 84891, + "Directional": true + } + ] + }, + { + "ID": 11801, + "SourceStructureID": 6997, + "TargetStructureID": 95772, + "Label": "6997-95772 via BC Conventional Synapse from 95774 -> 95773", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95774, + "TargetID": 95773, + "Directional": true + } + ] + }, + { + "ID": 11802, + "SourceStructureID": 6997, + "TargetStructureID": 95999, + "Label": "6997-95999 via Ribbon Synapse from 136702 -> 136703, 136709 -> 96002", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136702, + "TargetID": 136703, + "Directional": true + }, + { + "SourceID": 136709, + "TargetID": 96002, + "Directional": true + } + ] + }, + { + "ID": 11803, + "SourceStructureID": 6997, + "TargetStructureID": 101428, + "Label": "6997-101428 via Ribbon Synapse from 136268 -> 136832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136268, + "TargetID": 136832, + "Directional": true + } + ] + }, + { + "ID": 11804, + "SourceStructureID": 6997, + "TargetStructureID": 127841, + "Label": "6997-127841 via Ribbon Synapse from 22272 -> 127843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22272, + "TargetID": 127843, + "Directional": true + } + ] + }, + { + "ID": 11805, + "SourceStructureID": 6997, + "TargetStructureID": 133260, + "Label": "6997-133260 via Ribbon Synapse from 133263 -> 133262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133263, + "TargetID": 133262, + "Directional": true + } + ] + }, + { + "ID": 11806, + "SourceStructureID": 6997, + "TargetStructureID": 136677, + "Label": "6997-136677 via BC Conventional Synapse from 136679 -> 136678", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136679, + "TargetID": 136678, + "Directional": true + } + ] + }, + { + "ID": 11807, + "SourceStructureID": 7024, + "TargetStructureID": 606, + "Label": "7024-606 via Ribbon Synapse from 46436 -> 10502, 46473 -> 46585, 46596 -> 10498, 46609 -> 10499, 47347 -> 47346, 48510 -> 48511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46436, + "TargetID": 10502, + "Directional": true + }, + { + "SourceID": 46473, + "TargetID": 46585, + "Directional": true + }, + { + "SourceID": 46596, + "TargetID": 10498, + "Directional": true + }, + { + "SourceID": 46609, + "TargetID": 10499, + "Directional": true + }, + { + "SourceID": 47347, + "TargetID": 47346, + "Directional": true + }, + { + "SourceID": 48510, + "TargetID": 48511, + "Directional": true + } + ] + }, + { + "ID": 11808, + "SourceStructureID": 7024, + "TargetStructureID": 5396, + "Label": "7024-5396 via Ribbon Synapse from 40154 -> 89451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40154, + "TargetID": 89451, + "Directional": true + } + ] + }, + { + "ID": 11809, + "SourceStructureID": 7024, + "TargetStructureID": 8037, + "Label": "7024-8037 via BC Conventional Synapse from 114158 -> 114159", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114158, + "TargetID": 114159, + "Directional": true + } + ] + }, + { + "ID": 11810, + "SourceStructureID": 7024, + "TargetStructureID": 9769, + "Label": "7024-9769 via Ribbon Synapse from 10908 -> 10909, 10911 -> 10910, 10913 -> 10912, 20232 -> 20230, 20242 -> 20243, 20245 -> 20246, 53239 -> 53237, 53391 -> 11259, 114206 -> 148205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10908, + "TargetID": 10909, + "Directional": true + }, + { + "SourceID": 10911, + "TargetID": 10910, + "Directional": true + }, + { + "SourceID": 10913, + "TargetID": 10912, + "Directional": true + }, + { + "SourceID": 20232, + "TargetID": 20230, + "Directional": true + }, + { + "SourceID": 20242, + "TargetID": 20243, + "Directional": true + }, + { + "SourceID": 20245, + "TargetID": 20246, + "Directional": true + }, + { + "SourceID": 53239, + "TargetID": 53237, + "Directional": true + }, + { + "SourceID": 53391, + "TargetID": 11259, + "Directional": true + }, + { + "SourceID": 114206, + "TargetID": 148205, + "Directional": true + } + ] + }, + { + "ID": 11811, + "SourceStructureID": 7024, + "TargetStructureID": 31161, + "Label": "7024-31161 via Ribbon Synapse from 106600 -> 31219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106600, + "TargetID": 31219, + "Directional": true + } + ] + }, + { + "ID": 11812, + "SourceStructureID": 7024, + "TargetStructureID": 39982, + "Label": "7024-39982 via Ribbon Synapse from 40159 -> 40138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40159, + "TargetID": 40138, + "Directional": true + } + ] + }, + { + "ID": 11813, + "SourceStructureID": 7024, + "TargetStructureID": 53245, + "Label": "7024-53245 via Ribbon Synapse from 20245 -> 53248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20245, + "TargetID": 53248, + "Directional": true + } + ] + }, + { + "ID": 11814, + "SourceStructureID": 7024, + "TargetStructureID": 77215, + "Label": "7024-77215 via Ribbon Synapse from 106600 -> 106565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106600, + "TargetID": 106565, + "Directional": true + } + ] + }, + { + "ID": 11815, + "SourceStructureID": 7024, + "TargetStructureID": 97443, + "Label": "7024-97443 via Ribbon Synapse from 40159 -> 113495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40159, + "TargetID": 113495, + "Directional": true + } + ] + }, + { + "ID": 11816, + "SourceStructureID": 7024, + "TargetStructureID": 97445, + "Label": "7024-97445 via Ribbon Synapse from 40159 -> 97447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40159, + "TargetID": 97447, + "Directional": true + } + ] + }, + { + "ID": 11817, + "SourceStructureID": 7040, + "TargetStructureID": 5396, + "Label": "7040-5396 via Ribbon Synapse from 93699 -> 89492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93699, + "TargetID": 89492, + "Directional": true + } + ] + }, + { + "ID": 11818, + "SourceStructureID": 7040, + "TargetStructureID": 8575, + "Label": "7040-8575 via Ribbon Synapse from 63056 -> 63055, 93727 -> 62231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63056, + "TargetID": 63055, + "Directional": true + }, + { + "SourceID": 93727, + "TargetID": 62231, + "Directional": true + } + ] + }, + { + "ID": 11819, + "SourceStructureID": 7040, + "TargetStructureID": 16073, + "Label": "7040-16073 via BC Conventional Synapse from 19962 -> 19958", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19962, + "TargetID": 19958, + "Directional": true + } + ] + }, + { + "ID": 11820, + "SourceStructureID": 7040, + "TargetStructureID": 68539, + "Label": "7040-68539 via Ribbon Synapse from 50300 -> 69096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50300, + "TargetID": 69096, + "Directional": true + } + ] + }, + { + "ID": 11821, + "SourceStructureID": 7040, + "TargetStructureID": 93685, + "Label": "7040-93685 via Ribbon Synapse from 93690 -> 93691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93690, + "TargetID": 93691, + "Directional": true + } + ] + }, + { + "ID": 11822, + "SourceStructureID": 7043, + "TargetStructureID": 8576, + "Label": "7043-8576 via Ribbon Synapse from 37738 -> 69037, 118544 -> 20050", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37738, + "TargetID": 69037, + "Directional": true + }, + { + "SourceID": 118544, + "TargetID": 20050, + "Directional": true + } + ] + }, + { + "ID": 11823, + "SourceStructureID": 7043, + "TargetStructureID": 31024, + "Label": "7043-31024 via Ribbon Synapse from 31360 -> 31082, 31361 -> 31046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31360, + "TargetID": 31082, + "Directional": true + }, + { + "SourceID": 31361, + "TargetID": 31046, + "Directional": true + } + ] + }, + { + "ID": 11824, + "SourceStructureID": 7043, + "TargetStructureID": 69049, + "Label": "7043-69049 via Ribbon Synapse from 37726 -> 69059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37726, + "TargetID": 69059, + "Directional": true + } + ] + }, + { + "ID": 11825, + "SourceStructureID": 7043, + "TargetStructureID": 77777, + "Label": "7043-77777 via Ribbon Synapse from 37727 -> 119029", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37727, + "TargetID": 119029, + "Directional": true + } + ] + }, + { + "ID": 11826, + "SourceStructureID": 7043, + "TargetStructureID": 78174, + "Label": "7043-78174 via Ribbon Synapse from 118711 -> 118967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118711, + "TargetID": 118967, + "Directional": true + } + ] + }, + { + "ID": 11827, + "SourceStructureID": 7043, + "TargetStructureID": 89292, + "Label": "7043-89292 via Ribbon Synapse from 89263 -> 89294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89263, + "TargetID": 89294, + "Directional": true + } + ] + }, + { + "ID": 11828, + "SourceStructureID": 7050, + "TargetStructureID": 5622, + "Label": "7050-5622 via Conventional from 113003 -> 113000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113003, + "TargetID": 113000, + "Directional": true + } + ] + }, + { + "ID": 11829, + "SourceStructureID": 7050, + "TargetStructureID": 5671, + "Label": "7050-5671 via Conventional from 24904 -> 24903, 24905 -> 24906, 24920 -> 24921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24904, + "TargetID": 24903, + "Directional": true + }, + { + "SourceID": 24905, + "TargetID": 24906, + "Directional": true + }, + { + "SourceID": 24920, + "TargetID": 24921, + "Directional": true + } + ] + }, + { + "ID": 11830, + "SourceStructureID": 7050, + "TargetStructureID": 5922, + "Label": "7050-5922 via Conventional from 55667 -> 68833, 68843 -> 68842, 68845 -> 68844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55667, + "TargetID": 68833, + "Directional": true + }, + { + "SourceID": 68843, + "TargetID": 68842, + "Directional": true + }, + { + "SourceID": 68845, + "TargetID": 68844, + "Directional": true + } + ] + }, + { + "ID": 11831, + "SourceStructureID": 7050, + "TargetStructureID": 24898, + "Label": "7050-24898 via Conventional from 24942 -> 24939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24942, + "TargetID": 24939, + "Directional": true + } + ] + }, + { + "ID": 11832, + "SourceStructureID": 7050, + "TargetStructureID": 24909, + "Label": "7050-24909 via Conventional from 24907 -> 24910", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24907, + "TargetID": 24910, + "Directional": true + } + ] + }, + { + "ID": 11833, + "SourceStructureID": 7050, + "TargetStructureID": 148374, + "Label": "7050-148374 via Conventional from 113006 -> 148395", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113006, + "TargetID": 148395, + "Directional": true + } + ] + }, + { + "ID": 11834, + "SourceStructureID": 7054, + "TargetStructureID": 514, + "Label": "7054-514 via Ribbon Synapse from 7056 -> 2601, 10917 -> 1553, 159567 -> 159569, 159570 -> 159571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 7056, + "TargetID": 2601, + "Directional": true + }, + { + "SourceID": 10917, + "TargetID": 1553, + "Directional": true + }, + { + "SourceID": 159567, + "TargetID": 159569, + "Directional": true + }, + { + "SourceID": 159570, + "TargetID": 159571, + "Directional": true + } + ] + }, + { + "ID": 11835, + "SourceStructureID": 7054, + "TargetStructureID": 3679, + "Label": "7054-3679 via Ribbon Synapse from 10901 -> 159536, 43246 -> 43245, 66132 -> 66133, 66134 -> 66135, 135061 -> 135060, 159455 -> 159456, 159457 -> 3814, 159566 -> 159565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10901, + "TargetID": 159536, + "Directional": true + }, + { + "SourceID": 43246, + "TargetID": 43245, + "Directional": true + }, + { + "SourceID": 66132, + "TargetID": 66133, + "Directional": true + }, + { + "SourceID": 66134, + "TargetID": 66135, + "Directional": true + }, + { + "SourceID": 135061, + "TargetID": 135060, + "Directional": true + }, + { + "SourceID": 159455, + "TargetID": 159456, + "Directional": true + }, + { + "SourceID": 159457, + "TargetID": 3814, + "Directional": true + }, + { + "SourceID": 159566, + "TargetID": 159565, + "Directional": true + } + ] + }, + { + "ID": 11836, + "SourceStructureID": 7054, + "TargetStructureID": 4850, + "Label": "7054-4850 via Ribbon Synapse from 10916 -> 19467", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10916, + "TargetID": 19467, + "Directional": true + } + ] + }, + { + "ID": 11837, + "SourceStructureID": 7054, + "TargetStructureID": 8033, + "Label": "7054-8033 via Ribbon Synapse from 159461 -> 18443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159461, + "TargetID": 18443, + "Directional": true + } + ] + }, + { + "ID": 11838, + "SourceStructureID": 7054, + "TargetStructureID": 8037, + "Label": "7054-8037 via Ribbon Synapse from 25425 -> 25424, 30553 -> 15730, 159462 -> 159463, 159563 -> 159564, 159587 -> 15734, 159619 -> 159620", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25425, + "TargetID": 25424, + "Directional": true + }, + { + "SourceID": 30553, + "TargetID": 15730, + "Directional": true + }, + { + "SourceID": 159462, + "TargetID": 159463, + "Directional": true + }, + { + "SourceID": 159563, + "TargetID": 159564, + "Directional": true + }, + { + "SourceID": 159587, + "TargetID": 15734, + "Directional": true + }, + { + "SourceID": 159619, + "TargetID": 159620, + "Directional": true + } + ] + }, + { + "ID": 11839, + "SourceStructureID": 7054, + "TargetStructureID": 12897, + "Label": "7054-12897 via Ribbon Synapse from 30553 -> 24743, 159589 -> 159588", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30553, + "TargetID": 24743, + "Directional": true + }, + { + "SourceID": 159589, + "TargetID": 159588, + "Directional": true + } + ] + }, + { + "ID": 11840, + "SourceStructureID": 7054, + "TargetStructureID": 25410, + "Label": "7054-25410 via Ribbon Synapse from 25418 -> 25417", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25418, + "TargetID": 25417, + "Directional": true + } + ] + }, + { + "ID": 11841, + "SourceStructureID": 7054, + "TargetStructureID": 32676, + "Label": "7054-32676 via Ribbon Synapse from 10901 -> 32679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10901, + "TargetID": 32679, + "Directional": true + } + ] + }, + { + "ID": 11842, + "SourceStructureID": 7054, + "TargetStructureID": 67890, + "Label": "7054-67890 via Ribbon Synapse from 159449 -> 159450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159449, + "TargetID": 159450, + "Directional": true + } + ] + }, + { + "ID": 11843, + "SourceStructureID": 7054, + "TargetStructureID": 67973, + "Label": "7054-67973 via Ribbon Synapse from 159451 -> 159452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159451, + "TargetID": 159452, + "Directional": true + } + ] + }, + { + "ID": 11844, + "SourceStructureID": 7054, + "TargetStructureID": 159541, + "Label": "7054-159541 via Ribbon Synapse from 10916 -> 159542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10916, + "TargetID": 159542, + "Directional": true + } + ] + }, + { + "ID": 11845, + "SourceStructureID": 7054, + "TargetStructureID": 159554, + "Label": "7054-159554 via Ribbon Synapse from 19473 -> 159555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19473, + "TargetID": 159555, + "Directional": true + } + ] + }, + { + "ID": 11846, + "SourceStructureID": 7054, + "TargetStructureID": 159592, + "Label": "7054-159592 via Ribbon Synapse from 159589 -> 159593", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159589, + "TargetID": 159593, + "Directional": true + } + ] + }, + { + "ID": 11847, + "SourceStructureID": 7054, + "TargetStructureID": 159601, + "Label": "7054-159601 via Ribbon Synapse from 159578 -> 159602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159578, + "TargetID": 159602, + "Directional": true + } + ] + }, + { + "ID": 11848, + "SourceStructureID": 7054, + "TargetStructureID": 159603, + "Label": "7054-159603 via Ribbon Synapse from 25425 -> 159604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25425, + "TargetID": 159604, + "Directional": true + } + ] + }, + { + "ID": 11849, + "SourceStructureID": 7054, + "TargetStructureID": 159611, + "Label": "7054-159611 via Ribbon Synapse from 135061 -> 159615", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135061, + "TargetID": 159615, + "Directional": true + } + ] + }, + { + "ID": 11850, + "SourceStructureID": 7054, + "TargetStructureID": 159643, + "Label": "7054-159643 via Ribbon Synapse from 159459 -> 159645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159459, + "TargetID": 159645, + "Directional": true + } + ] + }, + { + "ID": 11851, + "SourceStructureID": 7073, + "TargetStructureID": 5150, + "Label": "7073-5150 via Conventional from 11822 -> 5239, 11822 -> 19802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11822, + "TargetID": 5239, + "Directional": true + }, + { + "SourceID": 11822, + "TargetID": 19802, + "Directional": true + } + ] + }, + { + "ID": 11852, + "SourceStructureID": 7073, + "TargetStructureID": 8575, + "Label": "7073-8575 via Conventional from 19883 -> 62816", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 19883, + "TargetID": 62816, + "Directional": true + } + ] + }, + { + "ID": 11853, + "SourceStructureID": 7073, + "TargetStructureID": 16073, + "Label": "7073-16073 via Conventional from 24520 -> 24198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24520, + "TargetID": 24198, + "Directional": true + } + ] + }, + { + "ID": 11854, + "SourceStructureID": 7073, + "TargetStructureID": 29340, + "Label": "7073-29340 via Conventional from 11844 -> 29394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11844, + "TargetID": 29394, + "Directional": true + } + ] + }, + { + "ID": 11855, + "SourceStructureID": 7073, + "TargetStructureID": 72162, + "Label": "7073-72162 via Conventional from 11789 -> 82949", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11789, + "TargetID": 82949, + "Directional": true + } + ] + }, + { + "ID": 11856, + "SourceStructureID": 7073, + "TargetStructureID": 129927, + "Label": "7073-129927 via Conventional from 19595 -> 129935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 19595, + "TargetID": 129935, + "Directional": true + } + ] + }, + { + "ID": 11857, + "SourceStructureID": 7075, + "TargetStructureID": 5860, + "Label": "7075-5860 via Ribbon Synapse from 62353 -> 62352, 123334 -> 62352", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62353, + "TargetID": 62352, + "Directional": true + }, + { + "SourceID": 123334, + "TargetID": 62352, + "Directional": true + } + ] + }, + { + "ID": 11858, + "SourceStructureID": 7075, + "TargetStructureID": 7204, + "Label": "7075-7204 via Ribbon Synapse from 133765 -> 133763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 133765, + "TargetID": 133763, + "Directional": true + } + ] + }, + { + "ID": 11859, + "SourceStructureID": 7075, + "TargetStructureID": 8575, + "Label": "7075-8575 via BC Conventional Synapse from 62358 -> 62347", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62358, + "TargetID": 62347, + "Directional": true + } + ] + }, + { + "ID": 11860, + "SourceStructureID": 7075, + "TargetStructureID": 43631, + "Label": "7075-43631 via Ribbon Synapse from 43649 -> 43635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43649, + "TargetID": 43635, + "Directional": true + } + ] + }, + { + "ID": 11861, + "SourceStructureID": 7112, + "TargetStructureID": 7073, + "Label": "7112-7073 via Conventional from 122000 -> 11793", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122000, + "TargetID": 11793, + "Directional": true + } + ] + }, + { + "ID": 11862, + "SourceStructureID": 7112, + "TargetStructureID": 15796, + "Label": "7112-15796 via Conventional from 122001 -> 29444, 122003 -> 15816", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122001, + "TargetID": 29444, + "Directional": true + }, + { + "SourceID": 122003, + "TargetID": 15816, + "Directional": true + } + ] + }, + { + "ID": 11863, + "SourceStructureID": 7113, + "TargetStructureID": 173, + "Label": "7113-173 via Conventional from 19578 -> 19576, 31371 -> 31372, 31374 -> 39397", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 19578, + "TargetID": 19576, + "Directional": true + }, + { + "SourceID": 31371, + "TargetID": 31372, + "Directional": true + }, + { + "SourceID": 31374, + "TargetID": 39397, + "Directional": true + } + ] + }, + { + "ID": 11864, + "SourceStructureID": 7113, + "TargetStructureID": 4876, + "Label": "7113-4876 via Conventional from 44988 -> 44465, 60566 -> 18943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44988, + "TargetID": 44465, + "Directional": true + }, + { + "SourceID": 60566, + "TargetID": 18943, + "Directional": true + } + ] + }, + { + "ID": 11865, + "SourceStructureID": 7113, + "TargetStructureID": 5351, + "Label": "7113-5351 via Conventional from 15258 -> 24074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15258, + "TargetID": 24074, + "Directional": true + } + ] + }, + { + "ID": 11866, + "SourceStructureID": 7113, + "TargetStructureID": 5618, + "Label": "7113-5618 via Conventional from 66012 -> 66013", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66012, + "TargetID": 66013, + "Directional": true + } + ] + }, + { + "ID": 11867, + "SourceStructureID": 7113, + "TargetStructureID": 6011, + "Label": "7113-6011 via Conventional from 21885 -> 6017, 21891 -> 6014", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21885, + "TargetID": 6017, + "Directional": true + }, + { + "SourceID": 21891, + "TargetID": 6014, + "Directional": true + } + ] + }, + { + "ID": 11868, + "SourceStructureID": 7113, + "TargetStructureID": 6050, + "Label": "7113-6050 via Cistern Pre from 127237 -> 127238", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 127237, + "TargetID": 127238, + "Directional": true + } + ] + }, + { + "ID": 11869, + "SourceStructureID": 7113, + "TargetStructureID": 9376, + "Label": "7113-9376 via Conventional from 27369 -> 33656", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27369, + "TargetID": 33656, + "Directional": true + } + ] + }, + { + "ID": 11870, + "SourceStructureID": 7113, + "TargetStructureID": 9787, + "Label": "7113-9787 via Conventional from 18104 -> 18105, 18128 -> 18122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18104, + "TargetID": 18105, + "Directional": true + }, + { + "SourceID": 18128, + "TargetID": 18122, + "Directional": true + } + ] + }, + { + "ID": 11871, + "SourceStructureID": 7113, + "TargetStructureID": 35696, + "Label": "7113-35696 via Conventional from 18126 -> 35707, 35705 -> 35704, 46431 -> 46429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18126, + "TargetID": 35707, + "Directional": true + }, + { + "SourceID": 35705, + "TargetID": 35704, + "Directional": true + }, + { + "SourceID": 46431, + "TargetID": 46429, + "Directional": true + } + ] + }, + { + "ID": 11872, + "SourceStructureID": 7113, + "TargetStructureID": 60558, + "Label": "7113-60558 via Conventional from 60571 -> 60561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60571, + "TargetID": 60561, + "Directional": true + } + ] + }, + { + "ID": 11873, + "SourceStructureID": 7113, + "TargetStructureID": 126536, + "Label": "7113-126536 via Conventional from 27363 -> 131393, 131390 -> 131389", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27363, + "TargetID": 131393, + "Directional": true + }, + { + "SourceID": 131390, + "TargetID": 131389, + "Directional": true + } + ] + }, + { + "ID": 11874, + "SourceStructureID": 7113, + "TargetStructureID": 129827, + "Label": "7113-129827 via Conventional from 129837 -> 129836", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129837, + "TargetID": 129836, + "Directional": true + } + ] + }, + { + "ID": 11875, + "SourceStructureID": 7114, + "TargetStructureID": 5585, + "Label": "7114-5585 via Conventional from 12483 -> 24108, 24111 -> 24110, 24127 -> 24128, 36809 -> 36808, 136517 -> 32441", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12483, + "TargetID": 24108, + "Directional": true + }, + { + "SourceID": 24111, + "TargetID": 24110, + "Directional": true + }, + { + "SourceID": 24127, + "TargetID": 24128, + "Directional": true + }, + { + "SourceID": 36809, + "TargetID": 36808, + "Directional": true + }, + { + "SourceID": 136517, + "TargetID": 32441, + "Directional": true + } + ] + }, + { + "ID": 11876, + "SourceStructureID": 7114, + "TargetStructureID": 5587, + "Label": "7114-5587 via Conventional from 136451 -> 136450, 136457 -> 136456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136451, + "TargetID": 136450, + "Directional": true + }, + { + "SourceID": 136457, + "TargetID": 136456, + "Directional": true + } + ] + }, + { + "ID": 11877, + "SourceStructureID": 7114, + "TargetStructureID": 5596, + "Label": "7114-5596 via Cistern Pre from 36873 -> 36874", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 36873, + "TargetID": 36874, + "Directional": true + } + ] + }, + { + "ID": 11878, + "SourceStructureID": 7114, + "TargetStructureID": 5640, + "Label": "7114-5640 via Conventional from 26634 -> 37061", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 26634, + "TargetID": 37061, + "Directional": true + } + ] + }, + { + "ID": 11879, + "SourceStructureID": 7114, + "TargetStructureID": 28913, + "Label": "7114-28913 via Conventional from 32442 -> 28942, 88143 -> 28947", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32442, + "TargetID": 28942, + "Directional": true + }, + { + "SourceID": 88143, + "TargetID": 28947, + "Directional": true + } + ] + }, + { + "ID": 11880, + "SourceStructureID": 7114, + "TargetStructureID": 136513, + "Label": "7114-136513 via Conventional from 136518 -> 136516, 136523 -> 136522", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136518, + "TargetID": 136516, + "Directional": true + }, + { + "SourceID": 136523, + "TargetID": 136522, + "Directional": true + } + ] + }, + { + "ID": 11881, + "SourceStructureID": 7129, + "TargetStructureID": 598, + "Label": "7129-598 via Conventional from 56457 -> 6321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56457, + "TargetID": 6321, + "Directional": true + } + ] + }, + { + "ID": 11882, + "SourceStructureID": 7129, + "TargetStructureID": 9769, + "Label": "7129-9769 via Conventional from 54016 -> 11262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54016, + "TargetID": 11262, + "Directional": true + } + ] + }, + { + "ID": 11883, + "SourceStructureID": 7129, + "TargetStructureID": 55517, + "Label": "7129-55517 via Conventional from 55598 -> 55599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55598, + "TargetID": 55599, + "Directional": true + } + ] + }, + { + "ID": 11884, + "SourceStructureID": 7129, + "TargetStructureID": 89097, + "Label": "7129-89097 via Conventional from 130294 -> 130295", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130294, + "TargetID": 130295, + "Directional": true + } + ] + }, + { + "ID": 11885, + "SourceStructureID": 7134, + "TargetStructureID": 909, + "Label": "7134-909 via Conventional from 130250 -> 130251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130250, + "TargetID": 130251, + "Directional": true + } + ] + }, + { + "ID": 11886, + "SourceStructureID": 7134, + "TargetStructureID": 3756, + "Label": "7134-3756 via Conventional from 53616 -> 53622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53616, + "TargetID": 53622, + "Directional": true + } + ] + }, + { + "ID": 11887, + "SourceStructureID": 7134, + "TargetStructureID": 5297, + "Label": "7134-5297 via Conventional from 98333 -> 98334, 121120 -> 116309, 121328 -> 116441, 121505 -> 98283, 122220 -> 98267, 147350 -> 147349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98333, + "TargetID": 98334, + "Directional": true + }, + { + "SourceID": 121120, + "TargetID": 116309, + "Directional": true + }, + { + "SourceID": 121328, + "TargetID": 116441, + "Directional": true + }, + { + "SourceID": 121505, + "TargetID": 98283, + "Directional": true + }, + { + "SourceID": 122220, + "TargetID": 98267, + "Directional": true + }, + { + "SourceID": 147350, + "TargetID": 147349, + "Directional": true + } + ] + }, + { + "ID": 11888, + "SourceStructureID": 7134, + "TargetStructureID": 5501, + "Label": "7134-5501 via Conventional from 41657 -> 122176, 42386 -> 15778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41657, + "TargetID": 122176, + "Directional": true + }, + { + "SourceID": 42386, + "TargetID": 15778, + "Directional": true + } + ] + }, + { + "ID": 11889, + "SourceStructureID": 7134, + "TargetStructureID": 5648, + "Label": "7134-5648 via Conventional from 53971 -> 53970, 122457 -> 122456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53971, + "TargetID": 53970, + "Directional": true + }, + { + "SourceID": 122457, + "TargetID": 122456, + "Directional": true + } + ] + }, + { + "ID": 11890, + "SourceStructureID": 7134, + "TargetStructureID": 6046, + "Label": "7134-6046 via Conventional from 16746 -> 16721, 26766 -> 16683, 53595 -> 53596", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16746, + "TargetID": 16721, + "Directional": true + }, + { + "SourceID": 26766, + "TargetID": 16683, + "Directional": true + }, + { + "SourceID": 53595, + "TargetID": 53596, + "Directional": true + } + ] + }, + { + "ID": 11891, + "SourceStructureID": 7134, + "TargetStructureID": 6121, + "Label": "7134-6121 via Conventional from 53458 -> 53465, 53471 -> 53472, 53498 -> 53491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53458, + "TargetID": 53465, + "Directional": true + }, + { + "SourceID": 53471, + "TargetID": 53472, + "Directional": true + }, + { + "SourceID": 53498, + "TargetID": 53491, + "Directional": true + } + ] + }, + { + "ID": 11892, + "SourceStructureID": 7134, + "TargetStructureID": 8575, + "Label": "7134-8575 via Conventional from 53609 -> 62826, 121507 -> 62822", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53609, + "TargetID": 62826, + "Directional": true + }, + { + "SourceID": 121507, + "TargetID": 62822, + "Directional": true + } + ] + }, + { + "ID": 11893, + "SourceStructureID": 7134, + "TargetStructureID": 15779, + "Label": "7134-15779 via Conventional from 29652 -> 29653", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29652, + "TargetID": 29653, + "Directional": true + } + ] + }, + { + "ID": 11894, + "SourceStructureID": 7134, + "TargetStructureID": 46468, + "Label": "7134-46468 via Conventional from 122009 -> 122010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122009, + "TargetID": 122010, + "Directional": true + } + ] + }, + { + "ID": 11895, + "SourceStructureID": 7134, + "TargetStructureID": 61450, + "Label": "7134-61450 via Conventional from 61457 -> 61456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61457, + "TargetID": 61456, + "Directional": true + } + ] + }, + { + "ID": 11896, + "SourceStructureID": 7134, + "TargetStructureID": 87754, + "Label": "7134-87754 via Conventional from 122195 -> 87756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122195, + "TargetID": 87756, + "Directional": true + } + ] + }, + { + "ID": 11897, + "SourceStructureID": 7134, + "TargetStructureID": 117906, + "Label": "7134-117906 via Conventional from 122185 -> 122186", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122185, + "TargetID": 122186, + "Directional": true + } + ] + }, + { + "ID": 11898, + "SourceStructureID": 7144, + "TargetStructureID": 59229, + "Label": "7144-59229 via Ribbon Synapse from 59249 -> 59245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59249, + "TargetID": 59245, + "Directional": true + } + ] + }, + { + "ID": 11899, + "SourceStructureID": 7145, + "TargetStructureID": 173, + "Label": "7145-173 via Conventional from 15825 -> 12116, 15826 -> 12135, 15827 -> 12132, 15829 -> 12131, 60151 -> 41241", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15825, + "TargetID": 12116, + "Directional": true + }, + { + "SourceID": 15826, + "TargetID": 12135, + "Directional": true + }, + { + "SourceID": 15827, + "TargetID": 12132, + "Directional": true + }, + { + "SourceID": 15829, + "TargetID": 12131, + "Directional": true + }, + { + "SourceID": 60151, + "TargetID": 41241, + "Directional": true + } + ] + }, + { + "ID": 11900, + "SourceStructureID": 7145, + "TargetStructureID": 175, + "Label": "7145-175 via Conventional from 18108 -> 2264", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18108, + "TargetID": 2264, + "Directional": true + } + ] + }, + { + "ID": 11901, + "SourceStructureID": 7145, + "TargetStructureID": 4876, + "Label": "7145-4876 via Conventional from 15831 -> 129035, 18109 -> 18982", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15831, + "TargetID": 129035, + "Directional": true + }, + { + "SourceID": 18109, + "TargetID": 18982, + "Directional": true + } + ] + }, + { + "ID": 11902, + "SourceStructureID": 7145, + "TargetStructureID": 9787, + "Label": "7145-9787 via Conventional from 18112 -> 18106, 27142 -> 27143", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18112, + "TargetID": 18106, + "Directional": true + }, + { + "SourceID": 27142, + "TargetID": 27143, + "Directional": true + } + ] + }, + { + "ID": 11903, + "SourceStructureID": 7145, + "TargetStructureID": 91459, + "Label": "7145-91459 via Conventional from 16667 -> 91460", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16667, + "TargetID": 91460, + "Directional": true + } + ] + }, + { + "ID": 11904, + "SourceStructureID": 7145, + "TargetStructureID": 129798, + "Label": "7145-129798 via Conventional from 129805 -> 129804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129805, + "TargetID": 129804, + "Directional": true + } + ] + }, + { + "ID": 11905, + "SourceStructureID": 7147, + "TargetStructureID": 161, + "Label": "7147-161 via Conventional from 11768 -> 11765", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11768, + "TargetID": 11765, + "Directional": true + } + ] + }, + { + "ID": 11906, + "SourceStructureID": 7147, + "TargetStructureID": 4876, + "Label": "7147-4876 via Conventional from 52240 -> 19079, 52241 -> 19112", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52240, + "TargetID": 19079, + "Directional": true + }, + { + "SourceID": 52241, + "TargetID": 19112, + "Directional": true + } + ] + }, + { + "ID": 11907, + "SourceStructureID": 7147, + "TargetStructureID": 6048, + "Label": "7147-6048 via Conventional from 60479 -> 60478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60479, + "TargetID": 60478, + "Directional": true + } + ] + }, + { + "ID": 11908, + "SourceStructureID": 7147, + "TargetStructureID": 6136, + "Label": "7147-6136 via Conventional from 36068 -> 13033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36068, + "TargetID": 13033, + "Directional": true + } + ] + }, + { + "ID": 11909, + "SourceStructureID": 7147, + "TargetStructureID": 28913, + "Label": "7147-28913 via Conventional from 52238 -> 52239", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52238, + "TargetID": 52239, + "Directional": true + } + ] + }, + { + "ID": 11910, + "SourceStructureID": 7157, + "TargetStructureID": 354, + "Label": "7157-354 via Conventional from 21451 -> 133819, 26514 -> 133816", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21451, + "TargetID": 133819, + "Directional": true + }, + { + "SourceID": 26514, + "TargetID": 133816, + "Directional": true + } + ] + }, + { + "ID": 11911, + "SourceStructureID": 7157, + "TargetStructureID": 359, + "Label": "7157-359 via Conventional from 21450 -> 21435", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21450, + "TargetID": 21435, + "Directional": true + } + ] + }, + { + "ID": 11912, + "SourceStructureID": 7157, + "TargetStructureID": 433, + "Label": "7157-433 via Conventional from 8207 -> 8200", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8207, + "TargetID": 8200, + "Directional": true + } + ] + }, + { + "ID": 11913, + "SourceStructureID": 7157, + "TargetStructureID": 437, + "Label": "7157-437 via Conventional from 65722 -> 65719, 65723 -> 65720, 65724 -> 65721, 65728 -> 65726, 65732 -> 65716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65722, + "TargetID": 65719, + "Directional": true + }, + { + "SourceID": 65723, + "TargetID": 65720, + "Directional": true + }, + { + "SourceID": 65724, + "TargetID": 65721, + "Directional": true + }, + { + "SourceID": 65728, + "TargetID": 65726, + "Directional": true + }, + { + "SourceID": 65732, + "TargetID": 65716, + "Directional": true + } + ] + }, + { + "ID": 11914, + "SourceStructureID": 7157, + "TargetStructureID": 9787, + "Label": "7157-9787 via Conventional from 12050 -> 9838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12050, + "TargetID": 9838, + "Directional": true + } + ] + }, + { + "ID": 11915, + "SourceStructureID": 7157, + "TargetStructureID": 26304, + "Label": "7157-26304 via Conventional from 12049 -> 26306, 25970 -> 26330, 26501 -> 26356, 26504 -> 26355, 26538 -> 26537", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12049, + "TargetID": 26306, + "Directional": true + }, + { + "SourceID": 25970, + "TargetID": 26330, + "Directional": true + }, + { + "SourceID": 26501, + "TargetID": 26356, + "Directional": true + }, + { + "SourceID": 26504, + "TargetID": 26355, + "Directional": true + }, + { + "SourceID": 26538, + "TargetID": 26537, + "Directional": true + } + ] + }, + { + "ID": 11916, + "SourceStructureID": 7157, + "TargetStructureID": 31944, + "Label": "7157-31944 via Conventional from 31949 -> 31947, 31950 -> 31948", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31949, + "TargetID": 31947, + "Directional": true + }, + { + "SourceID": 31950, + "TargetID": 31948, + "Directional": true + } + ] + }, + { + "ID": 11917, + "SourceStructureID": 7157, + "TargetStructureID": 158844, + "Label": "7157-158844 via Conventional from 8214 -> 158845", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8214, + "TargetID": 158845, + "Directional": true + } + ] + }, + { + "ID": 11918, + "SourceStructureID": 7157, + "TargetStructureID": 158846, + "Label": "7157-158846 via Conventional from 8210 -> 158850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8210, + "TargetID": 158850, + "Directional": true + } + ] + }, + { + "ID": 11919, + "SourceStructureID": 7157, + "TargetStructureID": 158907, + "Label": "7157-158907 via Conventional from 21445 -> 158909, 21448 -> 158911", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21445, + "TargetID": 158909, + "Directional": true + }, + { + "SourceID": 21448, + "TargetID": 158911, + "Directional": true + } + ] + }, + { + "ID": 11920, + "SourceStructureID": 7174, + "TargetStructureID": 29277, + "Label": "7174-29277 via Ribbon Synapse from 29285 -> 29284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29285, + "TargetID": 29284, + "Directional": true + } + ] + }, + { + "ID": 11921, + "SourceStructureID": 7188, + "TargetStructureID": 4943, + "Label": "7188-4943 via Conventional from 8513 -> 4971", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8513, + "TargetID": 4971, + "Directional": true + } + ] + }, + { + "ID": 11922, + "SourceStructureID": 7188, + "TargetStructureID": 5634, + "Label": "7188-5634 via Conventional from 22801 -> 122030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22801, + "TargetID": 122030, + "Directional": true + } + ] + }, + { + "ID": 11923, + "SourceStructureID": 7188, + "TargetStructureID": 9810, + "Label": "7188-9810 via Conventional from 9802 -> 9812", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9802, + "TargetID": 9812, + "Directional": true + } + ] + }, + { + "ID": 11924, + "SourceStructureID": 7188, + "TargetStructureID": 90715, + "Label": "7188-90715 via Conventional from 9820 -> 91314", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9820, + "TargetID": 91314, + "Directional": true + } + ] + }, + { + "ID": 11925, + "SourceStructureID": 7203, + "TargetStructureID": 5532, + "Label": "7203-5532 via Cistern Pre from 37536 -> 37537", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 37536, + "TargetID": 37537, + "Directional": true + } + ] + }, + { + "ID": 11926, + "SourceStructureID": 7204, + "TargetStructureID": 5641, + "Label": "7204-5641 via Conventional from 24336 -> 24185, 39052 -> 39053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24336, + "TargetID": 24185, + "Directional": true + }, + { + "SourceID": 39052, + "TargetID": 39053, + "Directional": true + } + ] + }, + { + "ID": 11927, + "SourceStructureID": 7204, + "TargetStructureID": 8578, + "Label": "7204-8578 via Conventional from 54670 -> 54669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54670, + "TargetID": 54669, + "Directional": true + } + ] + }, + { + "ID": 11928, + "SourceStructureID": 7215, + "TargetStructureID": 7691, + "Label": "7215-7691 via Conventional from 41565 -> 14705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41565, + "TargetID": 14705, + "Directional": true + } + ] + }, + { + "ID": 11929, + "SourceStructureID": 7215, + "TargetStructureID": 34336, + "Label": "7215-34336 via Conventional from 31587 -> 34371", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31587, + "TargetID": 34371, + "Directional": true + } + ] + }, + { + "ID": 11930, + "SourceStructureID": 7225, + "TargetStructureID": 3928, + "Label": "7225-3928 via Conventional from 28998 -> 40819, 29023 -> 40703", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 28998, + "TargetID": 40819, + "Directional": true + }, + { + "SourceID": 29023, + "TargetID": 40703, + "Directional": true + } + ] + }, + { + "ID": 11931, + "SourceStructureID": 7225, + "TargetStructureID": 5539, + "Label": "7225-5539 via Conventional from 10034 -> 10023", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10034, + "TargetID": 10023, + "Directional": true + } + ] + }, + { + "ID": 11932, + "SourceStructureID": 7225, + "TargetStructureID": 5544, + "Label": "7225-5544 via Conventional from 137048 -> 44751", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137048, + "TargetID": 44751, + "Directional": true + } + ] + }, + { + "ID": 11933, + "SourceStructureID": 7225, + "TargetStructureID": 6128, + "Label": "7225-6128 via Conventional from 88399 -> 21177, 88401 -> 88402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88399, + "TargetID": 21177, + "Directional": true + }, + { + "SourceID": 88401, + "TargetID": 88402, + "Directional": true + } + ] + }, + { + "ID": 11934, + "SourceStructureID": 7225, + "TargetStructureID": 6131, + "Label": "7225-6131 via Conventional from 88396 -> 88397", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88396, + "TargetID": 88397, + "Directional": true + } + ] + }, + { + "ID": 11935, + "SourceStructureID": 7225, + "TargetStructureID": 6132, + "Label": "7225-6132 via Conventional from 29025 -> 29003, 29026 -> 29004, 88408 -> 88432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29025, + "TargetID": 29003, + "Directional": true + }, + { + "SourceID": 29026, + "TargetID": 29004, + "Directional": true + }, + { + "SourceID": 88408, + "TargetID": 88432, + "Directional": true + } + ] + }, + { + "ID": 11936, + "SourceStructureID": 7225, + "TargetStructureID": 7293, + "Label": "7225-7293 via Conventional from 10032 -> 10033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10032, + "TargetID": 10033, + "Directional": true + } + ] + }, + { + "ID": 11937, + "SourceStructureID": 7225, + "TargetStructureID": 7346, + "Label": "7225-7346 via Conventional from 43994 -> 44009", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43994, + "TargetID": 44009, + "Directional": true + } + ] + }, + { + "ID": 11938, + "SourceStructureID": 7225, + "TargetStructureID": 11066, + "Label": "7225-11066 via Conventional from 31557 -> 31555", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31557, + "TargetID": 31555, + "Directional": true + } + ] + }, + { + "ID": 11939, + "SourceStructureID": 7225, + "TargetStructureID": 28950, + "Label": "7225-28950 via Conventional from 28994 -> 28990, 28995 -> 28993, 28996 -> 28991", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 28994, + "TargetID": 28990, + "Directional": true + }, + { + "SourceID": 28995, + "TargetID": 28993, + "Directional": true + }, + { + "SourceID": 28996, + "TargetID": 28991, + "Directional": true + } + ] + }, + { + "ID": 11940, + "SourceStructureID": 7225, + "TargetStructureID": 117778, + "Label": "7225-117778 via Conventional from 28997 -> 117784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 28997, + "TargetID": 117784, + "Directional": true + } + ] + }, + { + "ID": 11941, + "SourceStructureID": 7225, + "TargetStructureID": 137024, + "Label": "7225-137024 via Conventional from 137045 -> 137046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137045, + "TargetID": 137046, + "Directional": true + } + ] + }, + { + "ID": 11942, + "SourceStructureID": 7231, + "TargetStructureID": 16073, + "Label": "7231-16073 via Conventional from 116952 -> 24204, 117038 -> 117039, 117040 -> 41249, 117041 -> 41251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116952, + "TargetID": 24204, + "Directional": true + }, + { + "SourceID": 117038, + "TargetID": 117039, + "Directional": true + }, + { + "SourceID": 117040, + "TargetID": 41249, + "Directional": true + }, + { + "SourceID": 117041, + "TargetID": 41251, + "Directional": true + } + ] + }, + { + "ID": 11943, + "SourceStructureID": 7274, + "TargetStructureID": 5303, + "Label": "7274-5303 via Conventional from 41802 -> 24046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41802, + "TargetID": 24046, + "Directional": true + } + ] + }, + { + "ID": 11944, + "SourceStructureID": 7279, + "TargetStructureID": 5551, + "Label": "7279-5551 via Conventional from 34688 -> 116916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34688, + "TargetID": 116916, + "Directional": true + } + ] + }, + { + "ID": 11945, + "SourceStructureID": 7279, + "TargetStructureID": 5604, + "Label": "7279-5604 via Conventional from 131380 -> 36882", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131380, + "TargetID": 36882, + "Directional": true + } + ] + }, + { + "ID": 11946, + "SourceStructureID": 7279, + "TargetStructureID": 5636, + "Label": "7279-5636 via Conventional from 34689 -> 34728", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34689, + "TargetID": 34728, + "Directional": true + } + ] + }, + { + "ID": 11947, + "SourceStructureID": 7279, + "TargetStructureID": 116919, + "Label": "7279-116919 via Conventional from 34686 -> 116922", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34686, + "TargetID": 116922, + "Directional": true + } + ] + }, + { + "ID": 11948, + "SourceStructureID": 7279, + "TargetStructureID": 137024, + "Label": "7279-137024 via Conventional from 137060 -> 137059", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137060, + "TargetID": 137059, + "Directional": true + } + ] + }, + { + "ID": 11949, + "SourceStructureID": 7344, + "TargetStructureID": 5422, + "Label": "7344-5422 via Cistern Pre from 74118 -> 74117", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 74118, + "TargetID": 74117, + "Directional": true + } + ] + }, + { + "ID": 11950, + "SourceStructureID": 7345, + "TargetStructureID": 11066, + "Label": "7345-11066 via Conventional from 34447 -> 34410, 34448 -> 34404, 34450 -> 34406", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34447, + "TargetID": 34410, + "Directional": true + }, + { + "SourceID": 34448, + "TargetID": 34404, + "Directional": true + }, + { + "SourceID": 34450, + "TargetID": 34406, + "Directional": true + } + ] + }, + { + "ID": 11951, + "SourceStructureID": 7345, + "TargetStructureID": 135295, + "Label": "7345-135295 via Conventional from 135314 -> 135313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135314, + "TargetID": 135313, + "Directional": true + } + ] + }, + { + "ID": 11952, + "SourceStructureID": 7346, + "TargetStructureID": 6128, + "Label": "7346-6128 via BC Conventional Synapse from 44069 -> 20977", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44069, + "TargetID": 20977, + "Directional": true + } + ] + }, + { + "ID": 11953, + "SourceStructureID": 7346, + "TargetStructureID": 43198, + "Label": "7346-43198 via Ribbon Synapse from 122102 -> 122101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122102, + "TargetID": 122101, + "Directional": true + } + ] + }, + { + "ID": 11954, + "SourceStructureID": 7346, + "TargetStructureID": 44095, + "Label": "7346-44095 via Ribbon Synapse from 44105 -> 44096, 44109 -> 44508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44105, + "TargetID": 44096, + "Directional": true + }, + { + "SourceID": 44109, + "TargetID": 44508, + "Directional": true + } + ] + }, + { + "ID": 11955, + "SourceStructureID": 7346, + "TargetStructureID": 64414, + "Label": "7346-64414 via Ribbon Synapse from 64431 -> 64430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64431, + "TargetID": 64430, + "Directional": true + } + ] + }, + { + "ID": 11956, + "SourceStructureID": 7361, + "TargetStructureID": 11238, + "Label": "7361-11238 via Ribbon Synapse from 136251 -> 136246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136251, + "TargetID": 136246, + "Directional": true + } + ] + }, + { + "ID": 11957, + "SourceStructureID": 7362, + "TargetStructureID": 13525, + "Label": "7362-13525 via Ribbon Synapse from 103930 -> 86531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103930, + "TargetID": 86531, + "Directional": true + } + ] + }, + { + "ID": 11958, + "SourceStructureID": 7446, + "TargetStructureID": 5413, + "Label": "7446-5413 via Ribbon Synapse from 121931 -> 130909", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121931, + "TargetID": 130909, + "Directional": true + } + ] + }, + { + "ID": 11959, + "SourceStructureID": 7446, + "TargetStructureID": 18693, + "Label": "7446-18693 via Ribbon Synapse from 64765 -> 64764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64765, + "TargetID": 64764, + "Directional": true + } + ] + }, + { + "ID": 11960, + "SourceStructureID": 7446, + "TargetStructureID": 45220, + "Label": "7446-45220 via Ribbon Synapse from 123044 -> 45259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123044, + "TargetID": 45259, + "Directional": true + } + ] + }, + { + "ID": 11961, + "SourceStructureID": 7446, + "TargetStructureID": 118315, + "Label": "7446-118315 via Ribbon Synapse from 118314 -> 118317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118314, + "TargetID": 118317, + "Directional": true + } + ] + }, + { + "ID": 11962, + "SourceStructureID": 7461, + "TargetStructureID": 433, + "Label": "7461-433 via Conventional from 41087 -> 21593", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41087, + "TargetID": 21593, + "Directional": true + } + ] + }, + { + "ID": 11963, + "SourceStructureID": 7461, + "TargetStructureID": 6128, + "Label": "7461-6128 via Conventional from 30465 -> 30466, 30470 -> 39989", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30465, + "TargetID": 30466, + "Directional": true + }, + { + "SourceID": 30470, + "TargetID": 39989, + "Directional": true + } + ] + }, + { + "ID": 11964, + "SourceStructureID": 7464, + "TargetStructureID": 446, + "Label": "7464-446 via Cistern Pre from 39437 -> 39438", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 39437, + "TargetID": 39438, + "Directional": true + } + ] + }, + { + "ID": 11965, + "SourceStructureID": 7468, + "TargetStructureID": 354, + "Label": "7468-354 via Conventional from 47906 -> 44656", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47906, + "TargetID": 44656, + "Directional": true + } + ] + }, + { + "ID": 11966, + "SourceStructureID": 7468, + "TargetStructureID": 28950, + "Label": "7468-28950 via Conventional from 29065 -> 29063, 29065 -> 29066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29065, + "TargetID": 29063, + "Directional": true + }, + { + "SourceID": 29065, + "TargetID": 29066, + "Directional": true + } + ] + }, + { + "ID": 11967, + "SourceStructureID": 7468, + "TargetStructureID": 47908, + "Label": "7468-47908 via Conventional from 47905 -> 47914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47905, + "TargetID": 47914, + "Directional": true + } + ] + }, + { + "ID": 11968, + "SourceStructureID": 7468, + "TargetStructureID": 129484, + "Label": "7468-129484 via Conventional from 129482 -> 129485, 129486 -> 129487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129482, + "TargetID": 129485, + "Directional": true + }, + { + "SourceID": 129486, + "TargetID": 129487, + "Directional": true + } + ] + }, + { + "ID": 11969, + "SourceStructureID": 7561, + "TargetStructureID": 7054, + "Label": "7561-7054 via Conventional from 7562 -> 7055", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 7562, + "TargetID": 7055, + "Directional": true + } + ] + }, + { + "ID": 11970, + "SourceStructureID": 7564, + "TargetStructureID": 458, + "Label": "7564-458 via Conventional from 28773 -> 14493, 34345 -> 34344", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 28773, + "TargetID": 14493, + "Directional": true + }, + { + "SourceID": 34345, + "TargetID": 34344, + "Directional": true + } + ] + }, + { + "ID": 11971, + "SourceStructureID": 7564, + "TargetStructureID": 5542, + "Label": "7564-5542 via Conventional from 29052 -> 29054, 82104 -> 127976", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29052, + "TargetID": 29054, + "Directional": true + }, + { + "SourceID": 82104, + "TargetID": 127976, + "Directional": true + } + ] + }, + { + "ID": 11972, + "SourceStructureID": 7564, + "TargetStructureID": 5544, + "Label": "7564-5544 via Conventional from 29156 -> 29162, 44709 -> 44708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29156, + "TargetID": 29162, + "Directional": true + }, + { + "SourceID": 44709, + "TargetID": 44708, + "Directional": true + } + ] + }, + { + "ID": 11973, + "SourceStructureID": 7564, + "TargetStructureID": 6128, + "Label": "7564-6128 via Conventional from 137019 -> 33759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137019, + "TargetID": 33759, + "Directional": true + } + ] + }, + { + "ID": 11974, + "SourceStructureID": 7564, + "TargetStructureID": 6131, + "Label": "7564-6131 via Conventional from 82105 -> 45282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82105, + "TargetID": 45282, + "Directional": true + } + ] + }, + { + "ID": 11975, + "SourceStructureID": 7564, + "TargetStructureID": 6132, + "Label": "7564-6132 via Conventional from 88492 -> 88503", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88492, + "TargetID": 88503, + "Directional": true + } + ] + }, + { + "ID": 11976, + "SourceStructureID": 7564, + "TargetStructureID": 10963, + "Label": "7564-10963 via Conventional from 31930 -> 31929", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31930, + "TargetID": 31929, + "Directional": true + } + ] + }, + { + "ID": 11977, + "SourceStructureID": 7564, + "TargetStructureID": 28950, + "Label": "7564-28950 via Conventional from 29048 -> 29045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29048, + "TargetID": 29045, + "Directional": true + } + ] + }, + { + "ID": 11978, + "SourceStructureID": 7564, + "TargetStructureID": 46741, + "Label": "7564-46741 via Conventional from 137000 -> 136994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137000, + "TargetID": 136994, + "Directional": true + } + ] + }, + { + "ID": 11979, + "SourceStructureID": 7564, + "TargetStructureID": 137024, + "Label": "7564-137024 via Conventional from 137028 -> 137027", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137028, + "TargetID": 137027, + "Directional": true + } + ] + }, + { + "ID": 11980, + "SourceStructureID": 7564, + "TargetStructureID": 158673, + "Label": "7564-158673 via Conventional from 137018 -> 158675", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137018, + "TargetID": 158675, + "Directional": true + } + ] + }, + { + "ID": 11981, + "SourceStructureID": 7565, + "TargetStructureID": 172, + "Label": "7565-172 via Conventional from 129856 -> 129857", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129856, + "TargetID": 129857, + "Directional": true + } + ] + }, + { + "ID": 11982, + "SourceStructureID": 7568, + "TargetStructureID": 5350, + "Label": "7568-5350 via Conventional from 27020 -> 10655", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27020, + "TargetID": 10655, + "Directional": true + } + ] + }, + { + "ID": 11983, + "SourceStructureID": 7568, + "TargetStructureID": 5439, + "Label": "7568-5439 via Conventional from 27086 -> 85515", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27086, + "TargetID": 85515, + "Directional": true + } + ] + }, + { + "ID": 11984, + "SourceStructureID": 7568, + "TargetStructureID": 29198, + "Label": "7568-29198 via Conventional from 27114 -> 29208", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27114, + "TargetID": 29208, + "Directional": true + } + ] + }, + { + "ID": 11985, + "SourceStructureID": 7568, + "TargetStructureID": 30015, + "Label": "7568-30015 via Conventional from 30024 -> 30023", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30024, + "TargetID": 30023, + "Directional": true + } + ] + }, + { + "ID": 11986, + "SourceStructureID": 7568, + "TargetStructureID": 78303, + "Label": "7568-78303 via Conventional from 78306 -> 78307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78306, + "TargetID": 78307, + "Directional": true + } + ] + }, + { + "ID": 11987, + "SourceStructureID": 7576, + "TargetStructureID": 177, + "Label": "7576-177 via Conventional from 54980 -> 27967, 54985 -> 27954", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54980, + "TargetID": 27967, + "Directional": true + }, + { + "SourceID": 54985, + "TargetID": 27954, + "Directional": true + } + ] + }, + { + "ID": 11988, + "SourceStructureID": 7576, + "TargetStructureID": 10961, + "Label": "7576-10961 via Conventional from 54977 -> 54978", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54977, + "TargetID": 54978, + "Directional": true + } + ] + }, + { + "ID": 11989, + "SourceStructureID": 7576, + "TargetStructureID": 54913, + "Label": "7576-54913 via Conventional from 54770 -> 55058, 55056 -> 55057", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54770, + "TargetID": 55058, + "Directional": true + }, + { + "SourceID": 55056, + "TargetID": 55057, + "Directional": true + } + ] + }, + { + "ID": 11990, + "SourceStructureID": 7577, + "TargetStructureID": 137024, + "Label": "7577-137024 via Plaque-like Pre from 130512 -> 137053", + "Type": "Plaque-like Pre", + "Directional": true, + "Links": [ + { + "SourceID": 130512, + "TargetID": 137053, + "Directional": true + } + ] + }, + { + "ID": 11991, + "SourceStructureID": 7587, + "TargetStructureID": 135225, + "Label": "7587-135225 via Ribbon Synapse from 135272 -> 135261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135272, + "TargetID": 135261, + "Directional": true + } + ] + }, + { + "ID": 11992, + "SourceStructureID": 7703, + "TargetStructureID": 115, + "Label": "7703-115 via Conventional from 15212 -> 15214, 18593 -> 8159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15212, + "TargetID": 15214, + "Directional": true + }, + { + "SourceID": 18593, + "TargetID": 8159, + "Directional": true + } + ] + }, + { + "ID": 11993, + "SourceStructureID": 7703, + "TargetStructureID": 440, + "Label": "7703-440 via Conventional from 18599 -> 18648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18599, + "TargetID": 18648, + "Directional": true + } + ] + }, + { + "ID": 11994, + "SourceStructureID": 7703, + "TargetStructureID": 458, + "Label": "7703-458 via Conventional from 14522 -> 8151", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14522, + "TargetID": 8151, + "Directional": true + } + ] + }, + { + "ID": 11995, + "SourceStructureID": 7703, + "TargetStructureID": 5453, + "Label": "7703-5453 via Conventional from 18590 -> 18660", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18590, + "TargetID": 18660, + "Directional": true + } + ] + }, + { + "ID": 11996, + "SourceStructureID": 7703, + "TargetStructureID": 5543, + "Label": "7703-5543 via Conventional from 17004 -> 17019, 18275 -> 17135, 18589 -> 17092", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 17004, + "TargetID": 17019, + "Directional": true + }, + { + "SourceID": 18275, + "TargetID": 17135, + "Directional": true + }, + { + "SourceID": 18589, + "TargetID": 17092, + "Directional": true + } + ] + }, + { + "ID": 11997, + "SourceStructureID": 7703, + "TargetStructureID": 6129, + "Label": "7703-6129 via Conventional from 17757 -> 17784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 17757, + "TargetID": 17784, + "Directional": true + } + ] + }, + { + "ID": 11998, + "SourceStructureID": 7703, + "TargetStructureID": 8575, + "Label": "7703-8575 via Conventional from 18595 -> 37281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18595, + "TargetID": 37281, + "Directional": true + } + ] + }, + { + "ID": 11999, + "SourceStructureID": 7703, + "TargetStructureID": 62632, + "Label": "7703-62632 via Conventional from 62635 -> 62636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62635, + "TargetID": 62636, + "Directional": true + } + ] + }, + { + "ID": 12000, + "SourceStructureID": 7703, + "TargetStructureID": 137122, + "Label": "7703-137122 via Conventional from 137129 -> 137128", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137129, + "TargetID": 137128, + "Directional": true + } + ] + }, + { + "ID": 12001, + "SourceStructureID": 7850, + "TargetStructureID": 4890, + "Label": "7850-4890 via Conventional from 7851 -> 6111", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 7851, + "TargetID": 6111, + "Directional": true + } + ] + }, + { + "ID": 12002, + "SourceStructureID": 7850, + "TargetStructureID": 78327, + "Label": "7850-78327 via Conventional from 7852 -> 78328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 7852, + "TargetID": 78328, + "Directional": true + } + ] + }, + { + "ID": 12003, + "SourceStructureID": 7858, + "TargetStructureID": 64414, + "Label": "7858-64414 via Conventional from 31906 -> 64439", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31906, + "TargetID": 64439, + "Directional": true + } + ] + }, + { + "ID": 12004, + "SourceStructureID": 7859, + "TargetStructureID": 11238, + "Label": "7859-11238 via Conventional from 84698 -> 136112, 84808 -> 136114, 84819 -> 136137", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84698, + "TargetID": 136112, + "Directional": true + }, + { + "SourceID": 84808, + "TargetID": 136114, + "Directional": true + }, + { + "SourceID": 84819, + "TargetID": 136137, + "Directional": true + } + ] + }, + { + "ID": 12005, + "SourceStructureID": 7859, + "TargetStructureID": 43716, + "Label": "7859-43716 via Conventional from 84808 -> 43723", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84808, + "TargetID": 43723, + "Directional": true + } + ] + }, + { + "ID": 12006, + "SourceStructureID": 7859, + "TargetStructureID": 62531, + "Label": "7859-62531 via Conventional from 64636 -> 64637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64636, + "TargetID": 64637, + "Directional": true + } + ] + }, + { + "ID": 12007, + "SourceStructureID": 7859, + "TargetStructureID": 64670, + "Label": "7859-64670 via Conventional from 64669 -> 64671", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64669, + "TargetID": 64671, + "Directional": true + } + ] + }, + { + "ID": 12008, + "SourceStructureID": 7859, + "TargetStructureID": 136351, + "Label": "7859-136351 via Conventional from 136354 -> 136352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136354, + "TargetID": 136352, + "Directional": true + } + ] + }, + { + "ID": 12009, + "SourceStructureID": 7860, + "TargetStructureID": 452, + "Label": "7860-452 via Conventional from 36085 -> 7324, 36086 -> 7380", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36085, + "TargetID": 7324, + "Directional": true + }, + { + "SourceID": 36086, + "TargetID": 7380, + "Directional": true + } + ] + }, + { + "ID": 12010, + "SourceStructureID": 7860, + "TargetStructureID": 452, + "Label": "7860-452 via Ribbon Synapse from 36084 -> 7324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 36084, + "TargetID": 7324, + "Directional": true + } + ] + }, + { + "ID": 12011, + "SourceStructureID": 7860, + "TargetStructureID": 28950, + "Label": "7860-28950 via Conventional from 29062 -> 29060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29062, + "TargetID": 29060, + "Directional": true + } + ] + }, + { + "ID": 12012, + "SourceStructureID": 7861, + "TargetStructureID": 441, + "Label": "7861-441 via Conventional from 21268 -> 21269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21268, + "TargetID": 21269, + "Directional": true + } + ] + }, + { + "ID": 12013, + "SourceStructureID": 7861, + "TargetStructureID": 452, + "Label": "7861-452 via Conventional from 34547 -> 7343, 36072 -> 21243, 36073 -> 21243", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34547, + "TargetID": 7343, + "Directional": true + }, + { + "SourceID": 36072, + "TargetID": 21243, + "Directional": true + }, + { + "SourceID": 36073, + "TargetID": 21243, + "Directional": true + } + ] + }, + { + "ID": 12014, + "SourceStructureID": 7861, + "TargetStructureID": 5542, + "Label": "7861-5542 via Conventional from 18250 -> 18266, 18250 -> 130353", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18250, + "TargetID": 18266, + "Directional": true + }, + { + "SourceID": 18250, + "TargetID": 130353, + "Directional": true + } + ] + }, + { + "ID": 12015, + "SourceStructureID": 7861, + "TargetStructureID": 5543, + "Label": "7861-5543 via Conventional from 18243 -> 17159, 18244 -> 17158", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18243, + "TargetID": 17159, + "Directional": true + }, + { + "SourceID": 18244, + "TargetID": 17158, + "Directional": true + } + ] + }, + { + "ID": 12016, + "SourceStructureID": 7861, + "TargetStructureID": 6128, + "Label": "7861-6128 via Conventional from 21253 -> 20885, 36071 -> 20973", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21253, + "TargetID": 20885, + "Directional": true + }, + { + "SourceID": 36071, + "TargetID": 20973, + "Directional": true + } + ] + }, + { + "ID": 12017, + "SourceStructureID": 7861, + "TargetStructureID": 7346, + "Label": "7861-7346 via Conventional from 44108 -> 44107", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44108, + "TargetID": 44107, + "Directional": true + } + ] + }, + { + "ID": 12018, + "SourceStructureID": 7861, + "TargetStructureID": 11092, + "Label": "7861-11092 via Conventional from 34544 -> 125793, 121014 -> 123471", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34544, + "TargetID": 125793, + "Directional": true + }, + { + "SourceID": 121014, + "TargetID": 123471, + "Directional": true + } + ] + }, + { + "ID": 12019, + "SourceStructureID": 7861, + "TargetStructureID": 137070, + "Label": "7861-137070 via Conventional from 137069 -> 137073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137069, + "TargetID": 137073, + "Directional": true + } + ] + }, + { + "ID": 12020, + "SourceStructureID": 7897, + "TargetStructureID": 138, + "Label": "7897-138 via Conventional from 46476 -> 46477, 46481 -> 46482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46476, + "TargetID": 46477, + "Directional": true + }, + { + "SourceID": 46481, + "TargetID": 46482, + "Directional": true + } + ] + }, + { + "ID": 12021, + "SourceStructureID": 7897, + "TargetStructureID": 5303, + "Label": "7897-5303 via Conventional from 46475 -> 35623", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46475, + "TargetID": 35623, + "Directional": true + } + ] + }, + { + "ID": 12022, + "SourceStructureID": 7897, + "TargetStructureID": 15796, + "Label": "7897-15796 via Conventional from 55755 -> 55678", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55755, + "TargetID": 55678, + "Directional": true + } + ] + }, + { + "ID": 12023, + "SourceStructureID": 7897, + "TargetStructureID": 36130, + "Label": "7897-36130 via Conventional from 15795 -> 36132", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15795, + "TargetID": 36132, + "Directional": true + } + ] + }, + { + "ID": 12024, + "SourceStructureID": 7904, + "TargetStructureID": 5150, + "Label": "7904-5150 via Conventional from 131348 -> 5247, 131353 -> 5252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131348, + "TargetID": 5247, + "Directional": true + }, + { + "SourceID": 131353, + "TargetID": 5252, + "Directional": true + } + ] + }, + { + "ID": 12025, + "SourceStructureID": 7904, + "TargetStructureID": 6125, + "Label": "7904-6125 via Conventional from 129040 -> 129041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129040, + "TargetID": 129041, + "Directional": true + } + ] + }, + { + "ID": 12026, + "SourceStructureID": 7904, + "TargetStructureID": 119547, + "Label": "7904-119547 via Conventional from 131345 -> 119573", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131345, + "TargetID": 119573, + "Directional": true + } + ] + }, + { + "ID": 12027, + "SourceStructureID": 7951, + "TargetStructureID": 5504, + "Label": "7951-5504 via Conventional from 11126 -> 11125", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11126, + "TargetID": 11125, + "Directional": true + } + ] + }, + { + "ID": 12028, + "SourceStructureID": 7951, + "TargetStructureID": 5909, + "Label": "7951-5909 via Conventional from 93153 -> 93152", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93153, + "TargetID": 93152, + "Directional": true + } + ] + }, + { + "ID": 12029, + "SourceStructureID": 7951, + "TargetStructureID": 5922, + "Label": "7951-5922 via Conventional from 26732 -> 68846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 26732, + "TargetID": 68846, + "Directional": true + } + ] + }, + { + "ID": 12030, + "SourceStructureID": 7951, + "TargetStructureID": 6125, + "Label": "7951-6125 via Conventional from 26757 -> 31202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 26757, + "TargetID": 31202, + "Directional": true + } + ] + }, + { + "ID": 12031, + "SourceStructureID": 7951, + "TargetStructureID": 34761, + "Label": "7951-34761 via Conventional from 34767 -> 34766, 34768 -> 34765, 34775 -> 34776", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34767, + "TargetID": 34766, + "Directional": true + }, + { + "SourceID": 34768, + "TargetID": 34765, + "Directional": true + }, + { + "SourceID": 34775, + "TargetID": 34776, + "Directional": true + } + ] + }, + { + "ID": 12032, + "SourceStructureID": 8032, + "TargetStructureID": 6140, + "Label": "8032-6140 via Conventional from 47950 -> 47951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47950, + "TargetID": 47951, + "Directional": true + } + ] + }, + { + "ID": 12033, + "SourceStructureID": 8035, + "TargetStructureID": 5504, + "Label": "8035-5504 via Conventional from 25016 -> 25015", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25016, + "TargetID": 25015, + "Directional": true + } + ] + }, + { + "ID": 12034, + "SourceStructureID": 8035, + "TargetStructureID": 5609, + "Label": "8035-5609 via Conventional from 25051 -> 25050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25051, + "TargetID": 25050, + "Directional": true + } + ] + }, + { + "ID": 12035, + "SourceStructureID": 8035, + "TargetStructureID": 6118, + "Label": "8035-6118 via Conventional from 25019 -> 25031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25019, + "TargetID": 25031, + "Directional": true + } + ] + }, + { + "ID": 12036, + "SourceStructureID": 8037, + "TargetStructureID": 5498, + "Label": "8037-5498 via Conventional from 48003 -> 48004", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 48003, + "TargetID": 48004, + "Directional": true + } + ] + }, + { + "ID": 12037, + "SourceStructureID": 8037, + "TargetStructureID": 7054, + "Label": "8037-7054 via Conventional from 159599 -> 159591", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159599, + "TargetID": 159591, + "Directional": true + } + ] + }, + { + "ID": 12038, + "SourceStructureID": 8037, + "TargetStructureID": 8485, + "Label": "8037-8485 via Conventional from 11671 -> 11672, 11673 -> 11674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11671, + "TargetID": 11672, + "Directional": true + }, + { + "SourceID": 11673, + "TargetID": 11674, + "Directional": true + } + ] + }, + { + "ID": 12039, + "SourceStructureID": 8037, + "TargetStructureID": 18471, + "Label": "8037-18471 via Conventional from 18470 -> 18473", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18470, + "TargetID": 18473, + "Directional": true + } + ] + }, + { + "ID": 12040, + "SourceStructureID": 8037, + "TargetStructureID": 85094, + "Label": "8037-85094 via Conventional from 85114 -> 85112", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85114, + "TargetID": 85112, + "Directional": true + } + ] + }, + { + "ID": 12041, + "SourceStructureID": 8038, + "TargetStructureID": 5622, + "Label": "8038-5622 via Conventional from 24173 -> 24172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24173, + "TargetID": 24172, + "Directional": true + } + ] + }, + { + "ID": 12042, + "SourceStructureID": 8040, + "TargetStructureID": 606, + "Label": "8040-606 via Ribbon Synapse from 39149 -> 39150, 48523 -> 48524, 48525 -> 48526, 51705 -> 51706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39149, + "TargetID": 39150, + "Directional": true + }, + { + "SourceID": 48523, + "TargetID": 48524, + "Directional": true + }, + { + "SourceID": 48525, + "TargetID": 48526, + "Directional": true + }, + { + "SourceID": 51705, + "TargetID": 51706, + "Directional": true + } + ] + }, + { + "ID": 12043, + "SourceStructureID": 8040, + "TargetStructureID": 35452, + "Label": "8040-35452 via Ribbon Synapse from 35464 -> 35460", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35464, + "TargetID": 35460, + "Directional": true + } + ] + }, + { + "ID": 12044, + "SourceStructureID": 8040, + "TargetStructureID": 52410, + "Label": "8040-52410 via Ribbon Synapse from 48629 -> 52562, 48774 -> 52556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48629, + "TargetID": 52562, + "Directional": true + }, + { + "SourceID": 48774, + "TargetID": 52556, + "Directional": true + } + ] + }, + { + "ID": 12045, + "SourceStructureID": 8040, + "TargetStructureID": 69554, + "Label": "8040-69554 via Cistern Pre from 39140 -> 69556, 39142 -> 69563", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 39140, + "TargetID": 69556, + "Directional": true + }, + { + "SourceID": 39142, + "TargetID": 69563, + "Directional": true + } + ] + }, + { + "ID": 12046, + "SourceStructureID": 8045, + "TargetStructureID": 7114, + "Label": "8045-7114 via Conventional from 12486 -> 12487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12486, + "TargetID": 12487, + "Directional": true + } + ] + }, + { + "ID": 12047, + "SourceStructureID": 8059, + "TargetStructureID": 8575, + "Label": "8059-8575 via Conventional from 62215 -> 62214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62215, + "TargetID": 62214, + "Directional": true + } + ] + }, + { + "ID": 12048, + "SourceStructureID": 8212, + "TargetStructureID": 6146, + "Label": "8212-6146 via Conventional from 38080 -> 38079", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38080, + "TargetID": 38079, + "Directional": true + } + ] + }, + { + "ID": 12049, + "SourceStructureID": 8218, + "TargetStructureID": 5598, + "Label": "8218-5598 via Conventional from 12533 -> 12532", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12533, + "TargetID": 12532, + "Directional": true + } + ] + }, + { + "ID": 12050, + "SourceStructureID": 8485, + "TargetStructureID": 2610, + "Label": "8485-2610 via Ribbon Synapse from 71249 -> 71250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71249, + "TargetID": 71250, + "Directional": true + } + ] + }, + { + "ID": 12051, + "SourceStructureID": 8485, + "TargetStructureID": 12192, + "Label": "8485-12192 via Ribbon Synapse from 46619 -> 46620", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46619, + "TargetID": 46620, + "Directional": true + } + ] + }, + { + "ID": 12052, + "SourceStructureID": 8485, + "TargetStructureID": 28913, + "Label": "8485-28913 via Conventional from 43990 -> 43991", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43990, + "TargetID": 43991, + "Directional": true + } + ] + }, + { + "ID": 12053, + "SourceStructureID": 8485, + "TargetStructureID": 69534, + "Label": "8485-69534 via Ribbon Synapse from 28877 -> 69535", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28877, + "TargetID": 69535, + "Directional": true + } + ] + }, + { + "ID": 12054, + "SourceStructureID": 8504, + "TargetStructureID": 4943, + "Label": "8504-4943 via Conventional from 8716 -> 4988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8716, + "TargetID": 4988, + "Directional": true + } + ] + }, + { + "ID": 12055, + "SourceStructureID": 8504, + "TargetStructureID": 5538, + "Label": "8504-5538 via Conventional from 8710 -> 45011", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8710, + "TargetID": 45011, + "Directional": true + } + ] + }, + { + "ID": 12056, + "SourceStructureID": 8504, + "TargetStructureID": 6133, + "Label": "8504-6133 via Conventional from 8694 -> 8701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8694, + "TargetID": 8701, + "Directional": true + } + ] + }, + { + "ID": 12057, + "SourceStructureID": 8504, + "TargetStructureID": 32359, + "Label": "8504-32359 via Conventional from 8711 -> 41351", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8711, + "TargetID": 41351, + "Directional": true + } + ] + }, + { + "ID": 12058, + "SourceStructureID": 8551, + "TargetStructureID": 3928, + "Label": "8551-3928 via Conventional from 8557 -> 40706", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8557, + "TargetID": 40706, + "Directional": true + } + ] + }, + { + "ID": 12059, + "SourceStructureID": 8551, + "TargetStructureID": 4943, + "Label": "8551-4943 via Conventional from 8554 -> 8537", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8554, + "TargetID": 8537, + "Directional": true + } + ] + }, + { + "ID": 12060, + "SourceStructureID": 8551, + "TargetStructureID": 5538, + "Label": "8551-5538 via Conventional from 8565 -> 8550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8565, + "TargetID": 8550, + "Directional": true + } + ] + }, + { + "ID": 12061, + "SourceStructureID": 8551, + "TargetStructureID": 5636, + "Label": "8551-5636 via Conventional from 8583 -> 34707", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8583, + "TargetID": 34707, + "Directional": true + } + ] + }, + { + "ID": 12062, + "SourceStructureID": 8576, + "TargetStructureID": 5501, + "Label": "8576-5501 via Conventional from 20075 -> 36592", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20075, + "TargetID": 36592, + "Directional": true + } + ] + }, + { + "ID": 12063, + "SourceStructureID": 8576, + "TargetStructureID": 5503, + "Label": "8576-5503 via Conventional from 20070 -> 20086, 20076 -> 60665", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20070, + "TargetID": 20086, + "Directional": true + }, + { + "SourceID": 20076, + "TargetID": 60665, + "Directional": true + } + ] + }, + { + "ID": 12064, + "SourceStructureID": 8576, + "TargetStructureID": 5561, + "Label": "8576-5561 via Conventional from 20066 -> 46249", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20066, + "TargetID": 46249, + "Directional": true + } + ] + }, + { + "ID": 12065, + "SourceStructureID": 8577, + "TargetStructureID": 8579, + "Label": "8577-8579 via Adherens from 62739 -> 62738", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 62739, + "TargetID": 62738, + "Directional": true + } + ] + }, + { + "ID": 12066, + "SourceStructureID": 8577, + "TargetStructureID": 61933, + "Label": "8577-61933 via Conventional from 68648 -> 68647", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68648, + "TargetID": 68647, + "Directional": true + } + ] + }, + { + "ID": 12067, + "SourceStructureID": 8579, + "TargetStructureID": 6142, + "Label": "8579-6142 via Conventional from 62715 -> 23381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62715, + "TargetID": 23381, + "Directional": true + } + ] + }, + { + "ID": 12068, + "SourceStructureID": 8579, + "TargetStructureID": 8580, + "Label": "8579-8580 via Plaque-like Pre from 72106 -> 72107", + "Type": "Plaque-like Pre", + "Directional": true, + "Links": [ + { + "SourceID": 72106, + "TargetID": 72107, + "Directional": true + } + ] + }, + { + "ID": 12069, + "SourceStructureID": 8579, + "TargetStructureID": 16026, + "Label": "8579-16026 via Conventional from 25985 -> 24085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25985, + "TargetID": 24085, + "Directional": true + } + ] + }, + { + "ID": 12070, + "SourceStructureID": 8579, + "TargetStructureID": 62710, + "Label": "8579-62710 via Conventional from 62703 -> 62711", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62703, + "TargetID": 62711, + "Directional": true + } + ] + }, + { + "ID": 12071, + "SourceStructureID": 8580, + "TargetStructureID": 8580, + "Label": "8580-8580 via Conventional from 59836 -> 59834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59836, + "TargetID": 59834, + "Directional": true + } + ] + }, + { + "ID": 12072, + "SourceStructureID": 8586, + "TargetStructureID": 591, + "Label": "8586-591 via Ribbon Synapse from 8603 -> 10350, 8606 -> 10347, 10352 -> 10353", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8603, + "TargetID": 10350, + "Directional": true + }, + { + "SourceID": 8606, + "TargetID": 10347, + "Directional": true + }, + { + "SourceID": 10352, + "TargetID": 10353, + "Directional": true + } + ] + }, + { + "ID": 12073, + "SourceStructureID": 8586, + "TargetStructureID": 4943, + "Label": "8586-4943 via Ribbon Synapse from 8654 -> 4966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8654, + "TargetID": 4966, + "Directional": true + } + ] + }, + { + "ID": 12074, + "SourceStructureID": 8586, + "TargetStructureID": 7147, + "Label": "8586-7147 via Ribbon Synapse from 8655 -> 32689, 8670 -> 16070", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8655, + "TargetID": 32689, + "Directional": true + }, + { + "SourceID": 8670, + "TargetID": 16070, + "Directional": true + } + ] + }, + { + "ID": 12075, + "SourceStructureID": 8589, + "TargetStructureID": 71309, + "Label": "8589-71309 via Adherens from 71308 -> 71310", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 71308, + "TargetID": 71310, + "Directional": true + } + ] + }, + { + "ID": 12076, + "SourceStructureID": 8720, + "TargetStructureID": 8575, + "Label": "8720-8575 via Conventional from 63141 -> 43265, 104922 -> 62850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63141, + "TargetID": 43265, + "Directional": true + }, + { + "SourceID": 104922, + "TargetID": 62850, + "Directional": true + } + ] + }, + { + "ID": 12077, + "SourceStructureID": 8720, + "TargetStructureID": 13858, + "Label": "8720-13858 via Conventional from 63406 -> 63415", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63406, + "TargetID": 63415, + "Directional": true + } + ] + }, + { + "ID": 12078, + "SourceStructureID": 8720, + "TargetStructureID": 63371, + "Label": "8720-63371 via Conventional from 63370 -> 63373, 63400 -> 63401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63370, + "TargetID": 63373, + "Directional": true + }, + { + "SourceID": 63400, + "TargetID": 63401, + "Directional": true + } + ] + }, + { + "ID": 12079, + "SourceStructureID": 8749, + "TargetStructureID": 308, + "Label": "8749-308 via Ribbon Synapse from 8820 -> 43450, 8822 -> 43451, 17035 -> 42580, 42564 -> 42565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8820, + "TargetID": 43450, + "Directional": true + }, + { + "SourceID": 8822, + "TargetID": 43451, + "Directional": true + }, + { + "SourceID": 17035, + "TargetID": 42580, + "Directional": true + }, + { + "SourceID": 42564, + "TargetID": 42565, + "Directional": true + } + ] + }, + { + "ID": 12080, + "SourceStructureID": 8749, + "TargetStructureID": 410, + "Label": "8749-410 via Ribbon Synapse from 8845 -> 17491, 15090 -> 15089, 17370 -> 17371, 18004 -> 17492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8845, + "TargetID": 17491, + "Directional": true + }, + { + "SourceID": 15090, + "TargetID": 15089, + "Directional": true + }, + { + "SourceID": 17370, + "TargetID": 17371, + "Directional": true + }, + { + "SourceID": 18004, + "TargetID": 17492, + "Directional": true + } + ] + }, + { + "ID": 12081, + "SourceStructureID": 8749, + "TargetStructureID": 514, + "Label": "8749-514 via Ribbon Synapse from 8818 -> 32716, 8820 -> 38204, 8869 -> 15091, 15095 -> 15094, 17035 -> 17034, 17037 -> 17036, 17154 -> 2530, 17155 -> 17156, 17161 -> 17163, 17162 -> 17164, 17165 -> 2500, 18004 -> 18003, 32717 -> 32718, 159793 -> 159794, 159836 -> 159837, 159851 -> 18003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8818, + "TargetID": 32716, + "Directional": true + }, + { + "SourceID": 8820, + "TargetID": 38204, + "Directional": true + }, + { + "SourceID": 8869, + "TargetID": 15091, + "Directional": true + }, + { + "SourceID": 15095, + "TargetID": 15094, + "Directional": true + }, + { + "SourceID": 17035, + "TargetID": 17034, + "Directional": true + }, + { + "SourceID": 17037, + "TargetID": 17036, + "Directional": true + }, + { + "SourceID": 17154, + "TargetID": 2530, + "Directional": true + }, + { + "SourceID": 17155, + "TargetID": 17156, + "Directional": true + }, + { + "SourceID": 17161, + "TargetID": 17163, + "Directional": true + }, + { + "SourceID": 17162, + "TargetID": 17164, + "Directional": true + }, + { + "SourceID": 17165, + "TargetID": 2500, + "Directional": true + }, + { + "SourceID": 18004, + "TargetID": 18003, + "Directional": true + }, + { + "SourceID": 32717, + "TargetID": 32718, + "Directional": true + }, + { + "SourceID": 159793, + "TargetID": 159794, + "Directional": true + }, + { + "SourceID": 159836, + "TargetID": 159837, + "Directional": true + }, + { + "SourceID": 159851, + "TargetID": 18003, + "Directional": true + } + ] + }, + { + "ID": 12082, + "SourceStructureID": 8749, + "TargetStructureID": 2610, + "Label": "8749-2610 via Ribbon Synapse from 8856 -> 8857, 8870 -> 2743, 17167 -> 2783, 17168 -> 2778, 17373 -> 2748, 17981 -> 17980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8856, + "TargetID": 8857, + "Directional": true + }, + { + "SourceID": 8870, + "TargetID": 2743, + "Directional": true + }, + { + "SourceID": 17167, + "TargetID": 2783, + "Directional": true + }, + { + "SourceID": 17168, + "TargetID": 2778, + "Directional": true + }, + { + "SourceID": 17373, + "TargetID": 2748, + "Directional": true + }, + { + "SourceID": 17981, + "TargetID": 17980, + "Directional": true + } + ] + }, + { + "ID": 12083, + "SourceStructureID": 8749, + "TargetStructureID": 5303, + "Label": "8749-5303 via Ribbon Synapse from 17155 -> 8747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17155, + "TargetID": 8747, + "Directional": true + } + ] + }, + { + "ID": 12084, + "SourceStructureID": 8749, + "TargetStructureID": 8749, + "Label": "8749-8749 via Ribbon Synapse from 17981 -> 8832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17981, + "TargetID": 8832, + "Directional": true + } + ] + }, + { + "ID": 12085, + "SourceStructureID": 8749, + "TargetStructureID": 25352, + "Label": "8749-25352 via Ribbon Synapse from 17370 -> 32291, 159836 -> 159838", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17370, + "TargetID": 32291, + "Directional": true + }, + { + "SourceID": 159836, + "TargetID": 159838, + "Directional": true + } + ] + }, + { + "ID": 12086, + "SourceStructureID": 8749, + "TargetStructureID": 25410, + "Label": "8749-25410 via Ribbon Synapse from 8856 -> 25415", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8856, + "TargetID": 25415, + "Directional": true + } + ] + }, + { + "ID": 12087, + "SourceStructureID": 8749, + "TargetStructureID": 32719, + "Label": "8749-32719 via Ribbon Synapse from 8851 -> 32721", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8851, + "TargetID": 32721, + "Directional": true + } + ] + }, + { + "ID": 12088, + "SourceStructureID": 8749, + "TargetStructureID": 39208, + "Label": "8749-39208 via Ribbon Synapse from 17981 -> 39221", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17981, + "TargetID": 39221, + "Directional": true + } + ] + }, + { + "ID": 12089, + "SourceStructureID": 8749, + "TargetStructureID": 93099, + "Label": "8749-93099 via Ribbon Synapse from 93105 -> 93104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93105, + "TargetID": 93104, + "Directional": true + } + ] + }, + { + "ID": 12090, + "SourceStructureID": 8749, + "TargetStructureID": 123186, + "Label": "8749-123186 via Ribbon Synapse from 8818 -> 123188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8818, + "TargetID": 123188, + "Directional": true + } + ] + }, + { + "ID": 12091, + "SourceStructureID": 8749, + "TargetStructureID": 123197, + "Label": "8749-123197 via Ribbon Synapse from 8870 -> 159846", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8870, + "TargetID": 159846, + "Directional": true + } + ] + }, + { + "ID": 12092, + "SourceStructureID": 8749, + "TargetStructureID": 123201, + "Label": "8749-123201 via Ribbon Synapse from 15095 -> 123202", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15095, + "TargetID": 123202, + "Directional": true + } + ] + }, + { + "ID": 12093, + "SourceStructureID": 8749, + "TargetStructureID": 123209, + "Label": "8749-123209 via Ribbon Synapse from 18004 -> 123211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18004, + "TargetID": 123211, + "Directional": true + } + ] + }, + { + "ID": 12094, + "SourceStructureID": 8749, + "TargetStructureID": 123227, + "Label": "8749-123227 via Ribbon Synapse from 17162 -> 123228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17162, + "TargetID": 123228, + "Directional": true + } + ] + }, + { + "ID": 12095, + "SourceStructureID": 8749, + "TargetStructureID": 159818, + "Label": "8749-159818 via Ribbon Synapse from 17161 -> 159819", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17161, + "TargetID": 159819, + "Directional": true + } + ] + }, + { + "ID": 12096, + "SourceStructureID": 8749, + "TargetStructureID": 159822, + "Label": "8749-159822 via Ribbon Synapse from 17154 -> 159826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17154, + "TargetID": 159826, + "Directional": true + } + ] + }, + { + "ID": 12097, + "SourceStructureID": 8749, + "TargetStructureID": 159852, + "Label": "8749-159852 via Ribbon Synapse from 8845 -> 159853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 8845, + "TargetID": 159853, + "Directional": true + } + ] + }, + { + "ID": 12098, + "SourceStructureID": 8749, + "TargetStructureID": 159854, + "Label": "8749-159854 via Ribbon Synapse from 17165 -> 159855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17165, + "TargetID": 159855, + "Directional": true + } + ] + }, + { + "ID": 12099, + "SourceStructureID": 8990, + "TargetStructureID": 5017, + "Label": "8990-5017 via Conventional from 8991 -> 159659, 8992 -> 5022", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 8991, + "TargetID": 159659, + "Directional": true + }, + { + "SourceID": 8992, + "TargetID": 5022, + "Directional": true + } + ] + }, + { + "ID": 12100, + "SourceStructureID": 8990, + "TargetStructureID": 15942, + "Label": "8990-15942 via Conventional from 95933 -> 95934, 95935 -> 95936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95933, + "TargetID": 95934, + "Directional": true + }, + { + "SourceID": 95935, + "TargetID": 95936, + "Directional": true + } + ] + }, + { + "ID": 12101, + "SourceStructureID": 9023, + "TargetStructureID": 517, + "Label": "9023-517 via Conventional from 36677 -> 36679, 36678 -> 36680", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36677, + "TargetID": 36679, + "Directional": true + }, + { + "SourceID": 36678, + "TargetID": 36680, + "Directional": true + } + ] + }, + { + "ID": 12102, + "SourceStructureID": 9023, + "TargetStructureID": 518, + "Label": "9023-518 via Conventional from 36669 -> 36668, 37134 -> 14720", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36669, + "TargetID": 36668, + "Directional": true + }, + { + "SourceID": 37134, + "TargetID": 14720, + "Directional": true + } + ] + }, + { + "ID": 12103, + "SourceStructureID": 9124, + "TargetStructureID": 514, + "Label": "9124-514 via Conventional from 22629 -> 3556", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22629, + "TargetID": 3556, + "Directional": true + } + ] + }, + { + "ID": 12104, + "SourceStructureID": 9226, + "TargetStructureID": 514, + "Label": "9226-514 via Conventional from 9227 -> 3328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9227, + "TargetID": 3328, + "Directional": true + } + ] + }, + { + "ID": 12105, + "SourceStructureID": 9228, + "TargetStructureID": 514, + "Label": "9228-514 via Conventional from 9229 -> 3329", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9229, + "TargetID": 3329, + "Directional": true + } + ] + }, + { + "ID": 12106, + "SourceStructureID": 9260, + "TargetStructureID": 365, + "Label": "9260-365 via Conventional from 31820 -> 30390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31820, + "TargetID": 30390, + "Directional": true + } + ] + }, + { + "ID": 12107, + "SourceStructureID": 9260, + "TargetStructureID": 516, + "Label": "9260-516 via Conventional from 39660 -> 39662, 39661 -> 39663, 39666 -> 39667, 39668 -> 39669, 39670 -> 39671", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39660, + "TargetID": 39662, + "Directional": true + }, + { + "SourceID": 39661, + "TargetID": 39663, + "Directional": true + }, + { + "SourceID": 39666, + "TargetID": 39667, + "Directional": true + }, + { + "SourceID": 39668, + "TargetID": 39669, + "Directional": true + }, + { + "SourceID": 39670, + "TargetID": 39671, + "Directional": true + } + ] + }, + { + "ID": 12108, + "SourceStructureID": 9260, + "TargetStructureID": 519, + "Label": "9260-519 via Conventional from 9271 -> 9273, 9274 -> 9259, 9275 -> 9276, 25390 -> 25391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9271, + "TargetID": 9273, + "Directional": true + }, + { + "SourceID": 9274, + "TargetID": 9259, + "Directional": true + }, + { + "SourceID": 9275, + "TargetID": 9276, + "Directional": true + }, + { + "SourceID": 25390, + "TargetID": 25391, + "Directional": true + } + ] + }, + { + "ID": 12109, + "SourceStructureID": 9260, + "TargetStructureID": 2610, + "Label": "9260-2610 via Conventional from 9261 -> 9266, 9262 -> 9265, 9264 -> 9267", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9261, + "TargetID": 9266, + "Directional": true + }, + { + "SourceID": 9262, + "TargetID": 9265, + "Directional": true + }, + { + "SourceID": 9264, + "TargetID": 9267, + "Directional": true + } + ] + }, + { + "ID": 12110, + "SourceStructureID": 9260, + "TargetStructureID": 5017, + "Label": "9260-5017 via Conventional from 159653 -> 5025", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159653, + "TargetID": 5025, + "Directional": true + } + ] + }, + { + "ID": 12111, + "SourceStructureID": 9260, + "TargetStructureID": 5563, + "Label": "9260-5563 via Conventional from 98790 -> 98791, 98794 -> 98795", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98790, + "TargetID": 98791, + "Directional": true + }, + { + "SourceID": 98794, + "TargetID": 98795, + "Directional": true + } + ] + }, + { + "ID": 12112, + "SourceStructureID": 9347, + "TargetStructureID": 180, + "Label": "9347-180 via Conventional from 29447 -> 29448, 92729 -> 92727, 95415 -> 871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29447, + "TargetID": 29448, + "Directional": true + }, + { + "SourceID": 92729, + "TargetID": 92727, + "Directional": true + }, + { + "SourceID": 95415, + "TargetID": 871, + "Directional": true + } + ] + }, + { + "ID": 12113, + "SourceStructureID": 9347, + "TargetStructureID": 1637, + "Label": "9347-1637 via Conventional from 9360 -> 117313, 30244 -> 30245", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9360, + "TargetID": 117313, + "Directional": true + }, + { + "SourceID": 30244, + "TargetID": 30245, + "Directional": true + } + ] + }, + { + "ID": 12114, + "SourceStructureID": 9347, + "TargetStructureID": 5297, + "Label": "9347-5297 via Conventional from 53647 -> 53644", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53647, + "TargetID": 53644, + "Directional": true + } + ] + }, + { + "ID": 12115, + "SourceStructureID": 9347, + "TargetStructureID": 39957, + "Label": "9347-39957 via Conventional from 58440 -> 58439", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58440, + "TargetID": 58439, + "Directional": true + } + ] + }, + { + "ID": 12116, + "SourceStructureID": 9347, + "TargetStructureID": 59340, + "Label": "9347-59340 via Conventional from 9373 -> 59346", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9373, + "TargetID": 59346, + "Directional": true + } + ] + }, + { + "ID": 12117, + "SourceStructureID": 9376, + "TargetStructureID": 352, + "Label": "9376-352 via Ribbon Synapse from 90700 -> 90695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90700, + "TargetID": 90695, + "Directional": true + } + ] + }, + { + "ID": 12118, + "SourceStructureID": 9376, + "TargetStructureID": 5860, + "Label": "9376-5860 via Ribbon Synapse from 90698 -> 8810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90698, + "TargetID": 8810, + "Directional": true + } + ] + }, + { + "ID": 12119, + "SourceStructureID": 9492, + "TargetStructureID": 9260, + "Label": "9492-9260 via Conventional from 9493 -> 9475", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9493, + "TargetID": 9475, + "Directional": true + } + ] + }, + { + "ID": 12120, + "SourceStructureID": 9504, + "TargetStructureID": 514, + "Label": "9504-514 via Ribbon Synapse from 9512 -> 66204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9512, + "TargetID": 66204, + "Directional": true + } + ] + }, + { + "ID": 12121, + "SourceStructureID": 9504, + "TargetStructureID": 906, + "Label": "9504-906 via Ribbon Synapse from 16644 -> 16630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16644, + "TargetID": 16630, + "Directional": true + } + ] + }, + { + "ID": 12122, + "SourceStructureID": 9604, + "TargetStructureID": 968, + "Label": "9604-968 via Conventional from 9605 -> 977", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9605, + "TargetID": 977, + "Directional": true + } + ] + }, + { + "ID": 12123, + "SourceStructureID": 9606, + "TargetStructureID": 968, + "Label": "9606-968 via Conventional from 9610 -> 981", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9610, + "TargetID": 981, + "Directional": true + } + ] + }, + { + "ID": 12124, + "SourceStructureID": 9614, + "TargetStructureID": 4849, + "Label": "9614-4849 via Conventional from 9617 -> 9612", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9617, + "TargetID": 9612, + "Directional": true + } + ] + }, + { + "ID": 12125, + "SourceStructureID": 9643, + "TargetStructureID": 469, + "Label": "9643-469 via Conventional from 9644 -> 9645, 9646 -> 4652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9644, + "TargetID": 9645, + "Directional": true + }, + { + "SourceID": 9646, + "TargetID": 4652, + "Directional": true + } + ] + }, + { + "ID": 12126, + "SourceStructureID": 9643, + "TargetStructureID": 471, + "Label": "9643-471 via Conventional from 9647 -> 9648, 9650 -> 9651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9647, + "TargetID": 9648, + "Directional": true + }, + { + "SourceID": 9650, + "TargetID": 9651, + "Directional": true + } + ] + }, + { + "ID": 12127, + "SourceStructureID": 9643, + "TargetStructureID": 10625, + "Label": "9643-10625 via Conventional from 9657 -> 16251, 9658 -> 16249", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9657, + "TargetID": 16251, + "Directional": true + }, + { + "SourceID": 9658, + "TargetID": 16249, + "Directional": true + } + ] + }, + { + "ID": 12128, + "SourceStructureID": 9693, + "TargetStructureID": 304, + "Label": "9693-304 via Ribbon Synapse from 28242 -> 39225", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28242, + "TargetID": 39225, + "Directional": true + } + ] + }, + { + "ID": 12129, + "SourceStructureID": 9693, + "TargetStructureID": 390, + "Label": "9693-390 via Ribbon Synapse from 9753 -> 65113, 9891 -> 65107, 9892 -> 65107", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9753, + "TargetID": 65113, + "Directional": true + }, + { + "SourceID": 9891, + "TargetID": 65107, + "Directional": true + }, + { + "SourceID": 9892, + "TargetID": 65107, + "Directional": true + } + ] + }, + { + "ID": 12130, + "SourceStructureID": 9693, + "TargetStructureID": 514, + "Label": "9693-514 via Ribbon Synapse from 10437 -> 2512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10437, + "TargetID": 2512, + "Directional": true + } + ] + }, + { + "ID": 12131, + "SourceStructureID": 9693, + "TargetStructureID": 525, + "Label": "9693-525 via Ribbon Synapse from 11630 -> 6232", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11630, + "TargetID": 6232, + "Directional": true + } + ] + }, + { + "ID": 12132, + "SourceStructureID": 9693, + "TargetStructureID": 606, + "Label": "9693-606 via Ribbon Synapse from 9722 -> 37752, 9724 -> 37752, 14095 -> 45879, 27485 -> 37752, 28256 -> 45878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9722, + "TargetID": 37752, + "Directional": true + }, + { + "SourceID": 9724, + "TargetID": 37752, + "Directional": true + }, + { + "SourceID": 14095, + "TargetID": 45879, + "Directional": true + }, + { + "SourceID": 27485, + "TargetID": 37752, + "Directional": true + }, + { + "SourceID": 28256, + "TargetID": 45878, + "Directional": true + } + ] + }, + { + "ID": 12133, + "SourceStructureID": 9693, + "TargetStructureID": 608, + "Label": "9693-608 via Ribbon Synapse from 28169 -> 59070", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28169, + "TargetID": 59070, + "Directional": true + } + ] + }, + { + "ID": 12134, + "SourceStructureID": 9693, + "TargetStructureID": 2610, + "Label": "9693-2610 via Ribbon Synapse from 15013 -> 2854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15013, + "TargetID": 2854, + "Directional": true + } + ] + }, + { + "ID": 12135, + "SourceStructureID": 9693, + "TargetStructureID": 4850, + "Label": "9693-4850 via Ribbon Synapse from 15079 -> 15388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15079, + "TargetID": 15388, + "Directional": true + } + ] + }, + { + "ID": 12136, + "SourceStructureID": 9693, + "TargetStructureID": 4890, + "Label": "9693-4890 via BC Conventional Synapse from 119830 -> 64899, 119871 -> 7926", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119830, + "TargetID": 64899, + "Directional": true + }, + { + "SourceID": 119871, + "TargetID": 7926, + "Directional": true + } + ] + }, + { + "ID": 12137, + "SourceStructureID": 9693, + "TargetStructureID": 4890, + "Label": "9693-4890 via Ribbon Synapse from 15079 -> 7926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15079, + "TargetID": 7926, + "Directional": true + } + ] + }, + { + "ID": 12138, + "SourceStructureID": 9693, + "TargetStructureID": 5117, + "Label": "9693-5117 via Ribbon Synapse from 18734 -> 18736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18734, + "TargetID": 18736, + "Directional": true + } + ] + }, + { + "ID": 12139, + "SourceStructureID": 9693, + "TargetStructureID": 5118, + "Label": "9693-5118 via Ribbon Synapse from 28245 -> 70916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 28245, + "TargetID": 70916, + "Directional": true + } + ] + }, + { + "ID": 12140, + "SourceStructureID": 9693, + "TargetStructureID": 8033, + "Label": "9693-8033 via Ribbon Synapse from 9777 -> 18444, 18445 -> 18446, 18448 -> 18447, 18451 -> 18450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9777, + "TargetID": 18444, + "Directional": true + }, + { + "SourceID": 18445, + "TargetID": 18446, + "Directional": true + }, + { + "SourceID": 18448, + "TargetID": 18447, + "Directional": true + }, + { + "SourceID": 18451, + "TargetID": 18450, + "Directional": true + } + ] + }, + { + "ID": 12141, + "SourceStructureID": 9693, + "TargetStructureID": 15394, + "Label": "9693-15394 via Ribbon Synapse from 15393 -> 41020, 135020 -> 135019", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15393, + "TargetID": 41020, + "Directional": true + }, + { + "SourceID": 135020, + "TargetID": 135019, + "Directional": true + } + ] + }, + { + "ID": 12142, + "SourceStructureID": 9693, + "TargetStructureID": 32804, + "Label": "9693-32804 via Ribbon Synapse from 14066 -> 32827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14066, + "TargetID": 32827, + "Directional": true + } + ] + }, + { + "ID": 12143, + "SourceStructureID": 9693, + "TargetStructureID": 54727, + "Label": "9693-54727 via Ribbon Synapse from 15393 -> 54729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15393, + "TargetID": 54729, + "Directional": true + } + ] + }, + { + "ID": 12144, + "SourceStructureID": 9693, + "TargetStructureID": 59560, + "Label": "9693-59560 via Ribbon Synapse from 59559 -> 59561", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59559, + "TargetID": 59561, + "Directional": true + } + ] + }, + { + "ID": 12145, + "SourceStructureID": 9693, + "TargetStructureID": 95701, + "Label": "9693-95701 via Ribbon Synapse from 10437 -> 135152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10437, + "TargetID": 135152, + "Directional": true + } + ] + }, + { + "ID": 12146, + "SourceStructureID": 9693, + "TargetStructureID": 134654, + "Label": "9693-134654 via BC Conventional Synapse from 119733 -> 134655", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119733, + "TargetID": 134655, + "Directional": true + } + ] + }, + { + "ID": 12147, + "SourceStructureID": 9693, + "TargetStructureID": 134657, + "Label": "9693-134657 via BC Conventional Synapse from 119771 -> 134658", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119771, + "TargetID": 134658, + "Directional": true + } + ] + }, + { + "ID": 12148, + "SourceStructureID": 9693, + "TargetStructureID": 134659, + "Label": "9693-134659 via BC Conventional Synapse from 119782 -> 134660", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119782, + "TargetID": 134660, + "Directional": true + } + ] + }, + { + "ID": 12149, + "SourceStructureID": 9693, + "TargetStructureID": 134662, + "Label": "9693-134662 via BC Conventional Synapse from 119808 -> 134663", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119808, + "TargetID": 134663, + "Directional": true + } + ] + }, + { + "ID": 12150, + "SourceStructureID": 9693, + "TargetStructureID": 134664, + "Label": "9693-134664 via BC Conventional Synapse from 119813 -> 134665", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119813, + "TargetID": 134665, + "Directional": true + } + ] + }, + { + "ID": 12151, + "SourceStructureID": 9693, + "TargetStructureID": 134667, + "Label": "9693-134667 via BC Conventional Synapse from 119842 -> 134668", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119842, + "TargetID": 134668, + "Directional": true + } + ] + }, + { + "ID": 12152, + "SourceStructureID": 9693, + "TargetStructureID": 134669, + "Label": "9693-134669 via BC Conventional Synapse from 119849 -> 134670", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119849, + "TargetID": 134670, + "Directional": true + } + ] + }, + { + "ID": 12153, + "SourceStructureID": 9693, + "TargetStructureID": 134671, + "Label": "9693-134671 via BC Conventional Synapse from 119851 -> 134672", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119851, + "TargetID": 134672, + "Directional": true + } + ] + }, + { + "ID": 12154, + "SourceStructureID": 9693, + "TargetStructureID": 134674, + "Label": "9693-134674 via BC Conventional Synapse from 119855 -> 134676", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119855, + "TargetID": 134676, + "Directional": true + } + ] + }, + { + "ID": 12155, + "SourceStructureID": 9693, + "TargetStructureID": 134677, + "Label": "9693-134677 via BC Conventional Synapse from 119868 -> 134678", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119868, + "TargetID": 134678, + "Directional": true + } + ] + }, + { + "ID": 12156, + "SourceStructureID": 9693, + "TargetStructureID": 134681, + "Label": "9693-134681 via BC Conventional Synapse from 119875 -> 134682", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119875, + "TargetID": 134682, + "Directional": true + } + ] + }, + { + "ID": 12157, + "SourceStructureID": 9693, + "TargetStructureID": 134691, + "Label": "9693-134691 via BC Conventional Synapse from 120061 -> 134692", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120061, + "TargetID": 134692, + "Directional": true + } + ] + }, + { + "ID": 12158, + "SourceStructureID": 9693, + "TargetStructureID": 134693, + "Label": "9693-134693 via BC Conventional Synapse from 120069 -> 134695", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120069, + "TargetID": 134695, + "Directional": true + } + ] + }, + { + "ID": 12159, + "SourceStructureID": 9693, + "TargetStructureID": 134698, + "Label": "9693-134698 via BC Conventional Synapse from 120094 -> 134699", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120094, + "TargetID": 134699, + "Directional": true + } + ] + }, + { + "ID": 12160, + "SourceStructureID": 9693, + "TargetStructureID": 134701, + "Label": "9693-134701 via BC Conventional Synapse from 120098 -> 134702", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120098, + "TargetID": 134702, + "Directional": true + } + ] + }, + { + "ID": 12161, + "SourceStructureID": 9693, + "TargetStructureID": 134703, + "Label": "9693-134703 via BC Conventional Synapse from 120211 -> 134705", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120211, + "TargetID": 134705, + "Directional": true + } + ] + }, + { + "ID": 12162, + "SourceStructureID": 9693, + "TargetStructureID": 134706, + "Label": "9693-134706 via BC Conventional Synapse from 15014 -> 134707", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15014, + "TargetID": 134707, + "Directional": true + } + ] + }, + { + "ID": 12163, + "SourceStructureID": 9693, + "TargetStructureID": 134713, + "Label": "9693-134713 via BC Conventional Synapse from 15073 -> 134714", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15073, + "TargetID": 134714, + "Directional": true + } + ] + }, + { + "ID": 12164, + "SourceStructureID": 9693, + "TargetStructureID": 134715, + "Label": "9693-134715 via BC Conventional Synapse from 9754 -> 134716", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 9754, + "TargetID": 134716, + "Directional": true + } + ] + }, + { + "ID": 12165, + "SourceStructureID": 9769, + "TargetStructureID": 606, + "Label": "9769-606 via Conventional from 25889 -> 25890, 42521 -> 42520, 51208 -> 51207, 51257 -> 51258, 51275 -> 51274, 51592 -> 51591, 51866 -> 51865", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25889, + "TargetID": 25890, + "Directional": true + }, + { + "SourceID": 42521, + "TargetID": 42520, + "Directional": true + }, + { + "SourceID": 51208, + "TargetID": 51207, + "Directional": true + }, + { + "SourceID": 51257, + "TargetID": 51258, + "Directional": true + }, + { + "SourceID": 51275, + "TargetID": 51274, + "Directional": true + }, + { + "SourceID": 51592, + "TargetID": 51591, + "Directional": true + }, + { + "SourceID": 51866, + "TargetID": 51865, + "Directional": true + } + ] + }, + { + "ID": 12166, + "SourceStructureID": 9769, + "TargetStructureID": 5107, + "Label": "9769-5107 via Conventional from 29960 -> 53163", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29960, + "TargetID": 53163, + "Directional": true + } + ] + }, + { + "ID": 12167, + "SourceStructureID": 9769, + "TargetStructureID": 5528, + "Label": "9769-5528 via Conventional from 54899 -> 55030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54899, + "TargetID": 55030, + "Directional": true + } + ] + }, + { + "ID": 12168, + "SourceStructureID": 9769, + "TargetStructureID": 5643, + "Label": "9769-5643 via Conventional from 30174 -> 52255, 38539 -> 38538", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30174, + "TargetID": 52255, + "Directional": true + }, + { + "SourceID": 38539, + "TargetID": 38538, + "Directional": true + } + ] + }, + { + "ID": 12169, + "SourceStructureID": 9769, + "TargetStructureID": 5650, + "Label": "9769-5650 via Conventional from 105189 -> 105192", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105189, + "TargetID": 105192, + "Directional": true + } + ] + }, + { + "ID": 12170, + "SourceStructureID": 9769, + "TargetStructureID": 6203, + "Label": "9769-6203 via Conventional from 52828 -> 52830", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52828, + "TargetID": 52830, + "Directional": true + } + ] + }, + { + "ID": 12171, + "SourceStructureID": 9769, + "TargetStructureID": 6857, + "Label": "9769-6857 via Conventional from 29846 -> 29847", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29846, + "TargetID": 29847, + "Directional": true + } + ] + }, + { + "ID": 12172, + "SourceStructureID": 9769, + "TargetStructureID": 15796, + "Label": "9769-15796 via Conventional from 11265 -> 15843, 12374 -> 38155, 52881 -> 52914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11265, + "TargetID": 15843, + "Directional": true + }, + { + "SourceID": 12374, + "TargetID": 38155, + "Directional": true + }, + { + "SourceID": 52881, + "TargetID": 52914, + "Directional": true + } + ] + }, + { + "ID": 12173, + "SourceStructureID": 9769, + "TargetStructureID": 24381, + "Label": "9769-24381 via Conventional from 12402 -> 24383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12402, + "TargetID": 24383, + "Directional": true + } + ] + }, + { + "ID": 12174, + "SourceStructureID": 9769, + "TargetStructureID": 25865, + "Label": "9769-25865 via Conventional from 29808 -> 32249", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29808, + "TargetID": 32249, + "Directional": true + } + ] + }, + { + "ID": 12175, + "SourceStructureID": 9769, + "TargetStructureID": 29827, + "Label": "9769-29827 via Conventional from 29826 -> 29838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29826, + "TargetID": 29838, + "Directional": true + } + ] + }, + { + "ID": 12176, + "SourceStructureID": 9769, + "TargetStructureID": 30130, + "Label": "9769-30130 via Conventional from 30126 -> 30133, 30128 -> 52581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30126, + "TargetID": 30133, + "Directional": true + }, + { + "SourceID": 30128, + "TargetID": 52581, + "Directional": true + } + ] + }, + { + "ID": 12177, + "SourceStructureID": 9769, + "TargetStructureID": 32945, + "Label": "9769-32945 via Conventional from 23936 -> 32948, 54451 -> 54452", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23936, + "TargetID": 32948, + "Directional": true + }, + { + "SourceID": 54451, + "TargetID": 54452, + "Directional": true + } + ] + }, + { + "ID": 12178, + "SourceStructureID": 9769, + "TargetStructureID": 38357, + "Label": "9769-38357 via Conventional from 12403 -> 38890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12403, + "TargetID": 38890, + "Directional": true + } + ] + }, + { + "ID": 12179, + "SourceStructureID": 9769, + "TargetStructureID": 38461, + "Label": "9769-38461 via Conventional from 29965 -> 38471", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29965, + "TargetID": 38471, + "Directional": true + } + ] + }, + { + "ID": 12180, + "SourceStructureID": 9769, + "TargetStructureID": 38502, + "Label": "9769-38502 via Conventional from 38507 -> 38506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38507, + "TargetID": 38506, + "Directional": true + } + ] + }, + { + "ID": 12181, + "SourceStructureID": 9769, + "TargetStructureID": 38949, + "Label": "9769-38949 via Conventional from 30114 -> 38996", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30114, + "TargetID": 38996, + "Directional": true + } + ] + }, + { + "ID": 12182, + "SourceStructureID": 9769, + "TargetStructureID": 43716, + "Label": "9769-43716 via Conventional from 23971 -> 54705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23971, + "TargetID": 54705, + "Directional": true + } + ] + }, + { + "ID": 12183, + "SourceStructureID": 9769, + "TargetStructureID": 46975, + "Label": "9769-46975 via Conventional from 46978 -> 46977", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46978, + "TargetID": 46977, + "Directional": true + } + ] + }, + { + "ID": 12184, + "SourceStructureID": 9769, + "TargetStructureID": 51812, + "Label": "9769-51812 via Conventional from 29848 -> 51813", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29848, + "TargetID": 51813, + "Directional": true + } + ] + }, + { + "ID": 12185, + "SourceStructureID": 9769, + "TargetStructureID": 52921, + "Label": "9769-52921 via Conventional from 29964 -> 52925", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29964, + "TargetID": 52925, + "Directional": true + } + ] + }, + { + "ID": 12186, + "SourceStructureID": 9769, + "TargetStructureID": 53000, + "Label": "9769-53000 via Conventional from 29962 -> 53122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29962, + "TargetID": 53122, + "Directional": true + } + ] + }, + { + "ID": 12187, + "SourceStructureID": 9769, + "TargetStructureID": 53182, + "Label": "9769-53182 via Conventional from 29935 -> 53183", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29935, + "TargetID": 53183, + "Directional": true + } + ] + }, + { + "ID": 12188, + "SourceStructureID": 9769, + "TargetStructureID": 53202, + "Label": "9769-53202 via Conventional from 53199 -> 53214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53199, + "TargetID": 53214, + "Directional": true + } + ] + }, + { + "ID": 12189, + "SourceStructureID": 9769, + "TargetStructureID": 53218, + "Label": "9769-53218 via Conventional from 53217 -> 53219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53217, + "TargetID": 53219, + "Directional": true + } + ] + }, + { + "ID": 12190, + "SourceStructureID": 9769, + "TargetStructureID": 53221, + "Label": "9769-53221 via Conventional from 20258 -> 53222", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20258, + "TargetID": 53222, + "Directional": true + } + ] + }, + { + "ID": 12191, + "SourceStructureID": 9769, + "TargetStructureID": 53224, + "Label": "9769-53224 via Conventional from 20257 -> 53225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20257, + "TargetID": 53225, + "Directional": true + } + ] + }, + { + "ID": 12192, + "SourceStructureID": 9769, + "TargetStructureID": 53229, + "Label": "9769-53229 via Conventional from 20254 -> 53230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20254, + "TargetID": 53230, + "Directional": true + } + ] + }, + { + "ID": 12193, + "SourceStructureID": 9769, + "TargetStructureID": 53232, + "Label": "9769-53232 via Conventional from 53231 -> 53234", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53231, + "TargetID": 53234, + "Directional": true + } + ] + }, + { + "ID": 12194, + "SourceStructureID": 9769, + "TargetStructureID": 53245, + "Label": "9769-53245 via Conventional from 20244 -> 53246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20244, + "TargetID": 53246, + "Directional": true + } + ] + }, + { + "ID": 12195, + "SourceStructureID": 9769, + "TargetStructureID": 53399, + "Label": "9769-53399 via Conventional from 53398 -> 53401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53398, + "TargetID": 53401, + "Directional": true + } + ] + }, + { + "ID": 12196, + "SourceStructureID": 9769, + "TargetStructureID": 53407, + "Label": "9769-53407 via Conventional from 20652 -> 53408", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20652, + "TargetID": 53408, + "Directional": true + } + ] + }, + { + "ID": 12197, + "SourceStructureID": 9769, + "TargetStructureID": 53416, + "Label": "9769-53416 via Conventional from 53415 -> 53417", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53415, + "TargetID": 53417, + "Directional": true + } + ] + }, + { + "ID": 12198, + "SourceStructureID": 9769, + "TargetStructureID": 53436, + "Label": "9769-53436 via Conventional from 30139 -> 53438", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30139, + "TargetID": 53438, + "Directional": true + } + ] + }, + { + "ID": 12199, + "SourceStructureID": 9769, + "TargetStructureID": 53443, + "Label": "9769-53443 via Conventional from 30152 -> 53444", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30152, + "TargetID": 53444, + "Directional": true + } + ] + }, + { + "ID": 12200, + "SourceStructureID": 9769, + "TargetStructureID": 53991, + "Label": "9769-53991 via Conventional from 30156 -> 53992", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30156, + "TargetID": 53992, + "Directional": true + } + ] + }, + { + "ID": 12201, + "SourceStructureID": 9769, + "TargetStructureID": 54006, + "Label": "9769-54006 via Conventional from 11264 -> 54007, 54013 -> 54014", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11264, + "TargetID": 54007, + "Directional": true + }, + { + "SourceID": 54013, + "TargetID": 54014, + "Directional": true + } + ] + }, + { + "ID": 12202, + "SourceStructureID": 9769, + "TargetStructureID": 54078, + "Label": "9769-54078 via Conventional from 54077 -> 54079", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54077, + "TargetID": 54079, + "Directional": true + } + ] + }, + { + "ID": 12203, + "SourceStructureID": 9769, + "TargetStructureID": 54261, + "Label": "9769-54261 via Conventional from 54254 -> 54263", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54254, + "TargetID": 54263, + "Directional": true + } + ] + }, + { + "ID": 12204, + "SourceStructureID": 9769, + "TargetStructureID": 54287, + "Label": "9769-54287 via Conventional from 23930 -> 54288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23930, + "TargetID": 54288, + "Directional": true + } + ] + }, + { + "ID": 12205, + "SourceStructureID": 9769, + "TargetStructureID": 54681, + "Label": "9769-54681 via Conventional from 23956 -> 54684", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23956, + "TargetID": 54684, + "Directional": true + } + ] + }, + { + "ID": 12206, + "SourceStructureID": 9769, + "TargetStructureID": 54695, + "Label": "9769-54695 via Conventional from 23958 -> 54696", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23958, + "TargetID": 54696, + "Directional": true + } + ] + }, + { + "ID": 12207, + "SourceStructureID": 9769, + "TargetStructureID": 54818, + "Label": "9769-54818 via Conventional from 23975 -> 54819", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23975, + "TargetID": 54819, + "Directional": true + } + ] + }, + { + "ID": 12208, + "SourceStructureID": 9769, + "TargetStructureID": 54862, + "Label": "9769-54862 via Conventional from 24008 -> 54863", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24008, + "TargetID": 54863, + "Directional": true + } + ] + }, + { + "ID": 12209, + "SourceStructureID": 9769, + "TargetStructureID": 54877, + "Label": "9769-54877 via Conventional from 12565 -> 54878", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12565, + "TargetID": 54878, + "Directional": true + } + ] + }, + { + "ID": 12210, + "SourceStructureID": 9769, + "TargetStructureID": 54908, + "Label": "9769-54908 via Conventional from 29886 -> 54909", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29886, + "TargetID": 54909, + "Directional": true + } + ] + }, + { + "ID": 12211, + "SourceStructureID": 9769, + "TargetStructureID": 54925, + "Label": "9769-54925 via Conventional from 29855 -> 54936, 54924 -> 54926", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29855, + "TargetID": 54936, + "Directional": true + }, + { + "SourceID": 54924, + "TargetID": 54926, + "Directional": true + } + ] + }, + { + "ID": 12212, + "SourceStructureID": 9769, + "TargetStructureID": 55103, + "Label": "9769-55103 via Conventional from 12329 -> 55104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12329, + "TargetID": 55104, + "Directional": true + } + ] + }, + { + "ID": 12213, + "SourceStructureID": 9769, + "TargetStructureID": 55166, + "Label": "9769-55166 via Conventional from 30076 -> 55167", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30076, + "TargetID": 55167, + "Directional": true + } + ] + }, + { + "ID": 12214, + "SourceStructureID": 9769, + "TargetStructureID": 55201, + "Label": "9769-55201 via Conventional from 55200 -> 55202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55200, + "TargetID": 55202, + "Directional": true + } + ] + }, + { + "ID": 12215, + "SourceStructureID": 9769, + "TargetStructureID": 55212, + "Label": "9769-55212 via Conventional from 30096 -> 55214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30096, + "TargetID": 55214, + "Directional": true + } + ] + }, + { + "ID": 12216, + "SourceStructureID": 9769, + "TargetStructureID": 55215, + "Label": "9769-55215 via Conventional from 30098 -> 55217", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30098, + "TargetID": 55217, + "Directional": true + } + ] + }, + { + "ID": 12217, + "SourceStructureID": 9769, + "TargetStructureID": 55218, + "Label": "9769-55218 via Conventional from 30108 -> 55219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30108, + "TargetID": 55219, + "Directional": true + } + ] + }, + { + "ID": 12218, + "SourceStructureID": 9769, + "TargetStructureID": 55304, + "Label": "9769-55304 via Conventional from 12405 -> 55305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12405, + "TargetID": 55305, + "Directional": true + } + ] + }, + { + "ID": 12219, + "SourceStructureID": 9769, + "TargetStructureID": 55311, + "Label": "9769-55311 via Conventional from 55310 -> 55312", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55310, + "TargetID": 55312, + "Directional": true + } + ] + }, + { + "ID": 12220, + "SourceStructureID": 9769, + "TargetStructureID": 55319, + "Label": "9769-55319 via Conventional from 55321 -> 55320", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55321, + "TargetID": 55320, + "Directional": true + } + ] + }, + { + "ID": 12221, + "SourceStructureID": 9769, + "TargetStructureID": 74584, + "Label": "9769-74584 via Conventional from 81827 -> 81828", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81827, + "TargetID": 81828, + "Directional": true + } + ] + }, + { + "ID": 12222, + "SourceStructureID": 9810, + "TargetStructureID": 6134, + "Label": "9810-6134 via Conventional from 9811 -> 9809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 9811, + "TargetID": 9809, + "Directional": true + } + ] + }, + { + "ID": 12223, + "SourceStructureID": 10142, + "TargetStructureID": 7225, + "Label": "10142-7225 via Ribbon Synapse from 31468 -> 31469, 63493 -> 63492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31468, + "TargetID": 31469, + "Directional": true + }, + { + "SourceID": 63493, + "TargetID": 63492, + "Directional": true + } + ] + }, + { + "ID": 12224, + "SourceStructureID": 10146, + "TargetStructureID": 7279, + "Label": "10146-7279 via Ribbon Synapse from 60574 -> 60576, 60574 -> 87898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60574, + "TargetID": 60576, + "Directional": true + }, + { + "SourceID": 60574, + "TargetID": 87898, + "Directional": true + } + ] + }, + { + "ID": 12225, + "SourceStructureID": 10335, + "TargetStructureID": 591, + "Label": "10335-591 via Conventional from 10337 -> 10323", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10337, + "TargetID": 10323, + "Directional": true + } + ] + }, + { + "ID": 12226, + "SourceStructureID": 10335, + "TargetStructureID": 3679, + "Label": "10335-3679 via Conventional from 10338 -> 10328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10338, + "TargetID": 10328, + "Directional": true + } + ] + }, + { + "ID": 12227, + "SourceStructureID": 10371, + "TargetStructureID": 591, + "Label": "10371-591 via Conventional from 10372 -> 10362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10372, + "TargetID": 10362, + "Directional": true + } + ] + }, + { + "ID": 12228, + "SourceStructureID": 10412, + "TargetStructureID": 591, + "Label": "10412-591 via Ribbon Synapse from 10417 -> 10418, 10421 -> 10380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10417, + "TargetID": 10418, + "Directional": true + }, + { + "SourceID": 10421, + "TargetID": 10380, + "Directional": true + } + ] + }, + { + "ID": 12229, + "SourceStructureID": 10412, + "TargetStructureID": 7114, + "Label": "10412-7114 via Ribbon Synapse from 10429 -> 10433, 124457 -> 124458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10429, + "TargetID": 10433, + "Directional": true + }, + { + "SourceID": 124457, + "TargetID": 124458, + "Directional": true + } + ] + }, + { + "ID": 12230, + "SourceStructureID": 10565, + "TargetStructureID": 176, + "Label": "10565-176 via Conventional from 44198 -> 5886", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44198, + "TargetID": 5886, + "Directional": true + } + ] + }, + { + "ID": 12231, + "SourceStructureID": 10565, + "TargetStructureID": 606, + "Label": "10565-606 via Conventional from 45408 -> 10515, 45410 -> 53958, 45412 -> 10513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45408, + "TargetID": 10515, + "Directional": true + }, + { + "SourceID": 45410, + "TargetID": 53958, + "Directional": true + }, + { + "SourceID": 45412, + "TargetID": 10513, + "Directional": true + } + ] + }, + { + "ID": 12232, + "SourceStructureID": 10574, + "TargetStructureID": 165, + "Label": "10574-165 via Conventional from 84552 -> 84553", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84552, + "TargetID": 84553, + "Directional": true + } + ] + }, + { + "ID": 12233, + "SourceStructureID": 10574, + "TargetStructureID": 456, + "Label": "10574-456 via Conventional from 84602 -> 84603", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84602, + "TargetID": 84603, + "Directional": true + } + ] + }, + { + "ID": 12234, + "SourceStructureID": 10574, + "TargetStructureID": 460, + "Label": "10574-460 via Conventional from 84557 -> 130170", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84557, + "TargetID": 130170, + "Directional": true + } + ] + }, + { + "ID": 12235, + "SourceStructureID": 10574, + "TargetStructureID": 5530, + "Label": "10574-5530 via Cistern Pre from 82546 -> 80493", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 82546, + "TargetID": 80493, + "Directional": true + } + ] + }, + { + "ID": 12236, + "SourceStructureID": 10574, + "TargetStructureID": 26304, + "Label": "10574-26304 via Conventional from 84599 -> 26311", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84599, + "TargetID": 26311, + "Directional": true + } + ] + }, + { + "ID": 12237, + "SourceStructureID": 10574, + "TargetStructureID": 56600, + "Label": "10574-56600 via Conventional from 84601 -> 56602", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84601, + "TargetID": 56602, + "Directional": true + } + ] + }, + { + "ID": 12238, + "SourceStructureID": 10574, + "TargetStructureID": 64690, + "Label": "10574-64690 via Conventional from 84550 -> 84551", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84550, + "TargetID": 84551, + "Directional": true + } + ] + }, + { + "ID": 12239, + "SourceStructureID": 10574, + "TargetStructureID": 88266, + "Label": "10574-88266 via Cistern Pre from 45013 -> 88268", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 45013, + "TargetID": 88268, + "Directional": true + } + ] + }, + { + "ID": 12240, + "SourceStructureID": 10596, + "TargetStructureID": 7564, + "Label": "10596-7564 via Ribbon Synapse from 82325 -> 82324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82325, + "TargetID": 82324, + "Directional": true + } + ] + }, + { + "ID": 12241, + "SourceStructureID": 10596, + "TargetStructureID": 7861, + "Label": "10596-7861 via Ribbon Synapse from 122418 -> 122417, 122427 -> 122426, 122429 -> 122428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122418, + "TargetID": 122417, + "Directional": true + }, + { + "SourceID": 122427, + "TargetID": 122426, + "Directional": true + }, + { + "SourceID": 122429, + "TargetID": 122428, + "Directional": true + } + ] + }, + { + "ID": 12242, + "SourceStructureID": 10602, + "TargetStructureID": 5457, + "Label": "10602-5457 via Ribbon Synapse from 103359 -> 103360", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103359, + "TargetID": 103360, + "Directional": true + } + ] + }, + { + "ID": 12243, + "SourceStructureID": 10625, + "TargetStructureID": 514, + "Label": "10625-514 via Ribbon Synapse from 16239 -> 16335, 16337 -> 16336, 16339 -> 16338, 16757 -> 16346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16239, + "TargetID": 16335, + "Directional": true + }, + { + "SourceID": 16337, + "TargetID": 16336, + "Directional": true + }, + { + "SourceID": 16339, + "TargetID": 16338, + "Directional": true + }, + { + "SourceID": 16757, + "TargetID": 16346, + "Directional": true + } + ] + }, + { + "ID": 12244, + "SourceStructureID": 10625, + "TargetStructureID": 3257, + "Label": "10625-3257 via Ribbon Synapse from 16211 -> 22973, 16354 -> 16355, 22915 -> 22914, 22917 -> 22916, 51375 -> 51378", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16211, + "TargetID": 22973, + "Directional": true + }, + { + "SourceID": 16354, + "TargetID": 16355, + "Directional": true + }, + { + "SourceID": 22915, + "TargetID": 22914, + "Directional": true + }, + { + "SourceID": 22917, + "TargetID": 22916, + "Directional": true + }, + { + "SourceID": 51375, + "TargetID": 51378, + "Directional": true + } + ] + }, + { + "ID": 12245, + "SourceStructureID": 10625, + "TargetStructureID": 3679, + "Label": "10625-3679 via Ribbon Synapse from 16235 -> 8026, 16236 -> 8022, 16754 -> 6192, 16756 -> 6193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16235, + "TargetID": 8026, + "Directional": true + }, + { + "SourceID": 16236, + "TargetID": 8022, + "Directional": true + }, + { + "SourceID": 16754, + "TargetID": 6192, + "Directional": true + }, + { + "SourceID": 16756, + "TargetID": 6193, + "Directional": true + } + ] + }, + { + "ID": 12246, + "SourceStructureID": 10625, + "TargetStructureID": 5331, + "Label": "10625-5331 via Ribbon Synapse from 16222 -> 39175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16222, + "TargetID": 39175, + "Directional": true + } + ] + }, + { + "ID": 12247, + "SourceStructureID": 10625, + "TargetStructureID": 5860, + "Label": "10625-5860 via Ribbon Synapse from 26915 -> 7653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26915, + "TargetID": 7653, + "Directional": true + } + ] + }, + { + "ID": 12248, + "SourceStructureID": 10625, + "TargetStructureID": 6169, + "Label": "10625-6169 via Ribbon Synapse from 16183 -> 16182, 16185 -> 16184, 16187 -> 16186, 16190 -> 16189, 16192 -> 16191, 16219 -> 16218, 16222 -> 16221, 16229 -> 16230, 16231 -> 16232, 16323 -> 16322, 16325 -> 16324, 26923 -> 29693", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16183, + "TargetID": 16182, + "Directional": true + }, + { + "SourceID": 16185, + "TargetID": 16184, + "Directional": true + }, + { + "SourceID": 16187, + "TargetID": 16186, + "Directional": true + }, + { + "SourceID": 16190, + "TargetID": 16189, + "Directional": true + }, + { + "SourceID": 16192, + "TargetID": 16191, + "Directional": true + }, + { + "SourceID": 16219, + "TargetID": 16218, + "Directional": true + }, + { + "SourceID": 16222, + "TargetID": 16221, + "Directional": true + }, + { + "SourceID": 16229, + "TargetID": 16230, + "Directional": true + }, + { + "SourceID": 16231, + "TargetID": 16232, + "Directional": true + }, + { + "SourceID": 16323, + "TargetID": 16322, + "Directional": true + }, + { + "SourceID": 16325, + "TargetID": 16324, + "Directional": true + }, + { + "SourceID": 26923, + "TargetID": 29693, + "Directional": true + } + ] + }, + { + "ID": 12249, + "SourceStructureID": 10625, + "TargetStructureID": 9643, + "Label": "10625-9643 via Ribbon Synapse from 16229 -> 9659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16229, + "TargetID": 9659, + "Directional": true + } + ] + }, + { + "ID": 12250, + "SourceStructureID": 10625, + "TargetStructureID": 39528, + "Label": "10625-39528 via Ribbon Synapse from 16192 -> 39773", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16192, + "TargetID": 39773, + "Directional": true + } + ] + }, + { + "ID": 12251, + "SourceStructureID": 10625, + "TargetStructureID": 39530, + "Label": "10625-39530 via Ribbon Synapse from 16183 -> 39540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16183, + "TargetID": 39540, + "Directional": true + } + ] + }, + { + "ID": 12252, + "SourceStructureID": 10625, + "TargetStructureID": 39724, + "Label": "10625-39724 via Ribbon Synapse from 16211 -> 39728, 19264 -> 39727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16211, + "TargetID": 39728, + "Directional": true + }, + { + "SourceID": 19264, + "TargetID": 39727, + "Directional": true + } + ] + }, + { + "ID": 12253, + "SourceStructureID": 10625, + "TargetStructureID": 39737, + "Label": "10625-39737 via Ribbon Synapse from 16239 -> 39744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16239, + "TargetID": 39744, + "Directional": true + } + ] + }, + { + "ID": 12254, + "SourceStructureID": 10625, + "TargetStructureID": 39745, + "Label": "10625-39745 via Ribbon Synapse from 16337 -> 39747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16337, + "TargetID": 39747, + "Directional": true + } + ] + }, + { + "ID": 12255, + "SourceStructureID": 10625, + "TargetStructureID": 39748, + "Label": "10625-39748 via Ribbon Synapse from 22915 -> 39749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22915, + "TargetID": 39749, + "Directional": true + } + ] + }, + { + "ID": 12256, + "SourceStructureID": 10625, + "TargetStructureID": 39759, + "Label": "10625-39759 via Ribbon Synapse from 22917 -> 39762", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22917, + "TargetID": 39762, + "Directional": true + } + ] + }, + { + "ID": 12257, + "SourceStructureID": 10625, + "TargetStructureID": 39764, + "Label": "10625-39764 via Ribbon Synapse from 16236 -> 39767, 16325 -> 39770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16236, + "TargetID": 39767, + "Directional": true + }, + { + "SourceID": 16325, + "TargetID": 39770, + "Directional": true + } + ] + }, + { + "ID": 12258, + "SourceStructureID": 10625, + "TargetStructureID": 39784, + "Label": "10625-39784 via Ribbon Synapse from 19263 -> 39786", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19263, + "TargetID": 39786, + "Directional": true + } + ] + }, + { + "ID": 12259, + "SourceStructureID": 10625, + "TargetStructureID": 39787, + "Label": "10625-39787 via Ribbon Synapse from 19262 -> 39789, 19262 -> 87732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19262, + "TargetID": 39789, + "Directional": true + }, + { + "SourceID": 19262, + "TargetID": 87732, + "Directional": true + } + ] + }, + { + "ID": 12260, + "SourceStructureID": 10625, + "TargetStructureID": 39790, + "Label": "10625-39790 via Ribbon Synapse from 19261 -> 39793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19261, + "TargetID": 39793, + "Directional": true + } + ] + }, + { + "ID": 12261, + "SourceStructureID": 10625, + "TargetStructureID": 39794, + "Label": "10625-39794 via Ribbon Synapse from 16323 -> 39795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16323, + "TargetID": 39795, + "Directional": true + } + ] + }, + { + "ID": 12262, + "SourceStructureID": 10625, + "TargetStructureID": 39798, + "Label": "10625-39798 via Ribbon Synapse from 16187 -> 39801", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16187, + "TargetID": 39801, + "Directional": true + } + ] + }, + { + "ID": 12263, + "SourceStructureID": 10625, + "TargetStructureID": 39802, + "Label": "10625-39802 via Ribbon Synapse from 16190 -> 39806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16190, + "TargetID": 39806, + "Directional": true + } + ] + }, + { + "ID": 12264, + "SourceStructureID": 10625, + "TargetStructureID": 39807, + "Label": "10625-39807 via Ribbon Synapse from 26913 -> 39810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26913, + "TargetID": 39810, + "Directional": true + } + ] + }, + { + "ID": 12265, + "SourceStructureID": 10625, + "TargetStructureID": 39811, + "Label": "10625-39811 via Ribbon Synapse from 16756 -> 39815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16756, + "TargetID": 39815, + "Directional": true + } + ] + }, + { + "ID": 12266, + "SourceStructureID": 10625, + "TargetStructureID": 39816, + "Label": "10625-39816 via Ribbon Synapse from 16755 -> 39819, 26912 -> 39818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16755, + "TargetID": 39819, + "Directional": true + }, + { + "SourceID": 26912, + "TargetID": 39818, + "Directional": true + } + ] + }, + { + "ID": 12267, + "SourceStructureID": 10625, + "TargetStructureID": 39830, + "Label": "10625-39830 via Ribbon Synapse from 26915 -> 39831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26915, + "TargetID": 39831, + "Directional": true + } + ] + }, + { + "ID": 12268, + "SourceStructureID": 10625, + "TargetStructureID": 39835, + "Label": "10625-39835 via Ribbon Synapse from 26916 -> 39837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26916, + "TargetID": 39837, + "Directional": true + } + ] + }, + { + "ID": 12269, + "SourceStructureID": 10625, + "TargetStructureID": 39838, + "Label": "10625-39838 via Ribbon Synapse from 51375 -> 51376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51375, + "TargetID": 51376, + "Directional": true + } + ] + }, + { + "ID": 12270, + "SourceStructureID": 10625, + "TargetStructureID": 40863, + "Label": "10625-40863 via Ribbon Synapse from 26906 -> 40874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26906, + "TargetID": 40874, + "Directional": true + } + ] + }, + { + "ID": 12271, + "SourceStructureID": 10632, + "TargetStructureID": 8038, + "Label": "10632-8038 via Ribbon Synapse from 68921 -> 68920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68921, + "TargetID": 68920, + "Directional": true + } + ] + }, + { + "ID": 12272, + "SourceStructureID": 10720, + "TargetStructureID": 138, + "Label": "10720-138 via Conventional from 27176 -> 136847", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27176, + "TargetID": 136847, + "Directional": true + } + ] + }, + { + "ID": 12273, + "SourceStructureID": 10720, + "TargetStructureID": 173, + "Label": "10720-173 via Conventional from 27177 -> 11930, 27180 -> 128179, 27180 -> 128181", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27177, + "TargetID": 11930, + "Directional": true + }, + { + "SourceID": 27180, + "TargetID": 128179, + "Directional": true + }, + { + "SourceID": 27180, + "TargetID": 128181, + "Directional": true + } + ] + }, + { + "ID": 12274, + "SourceStructureID": 10720, + "TargetStructureID": 5150, + "Label": "10720-5150 via Conventional from 27152 -> 10719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27152, + "TargetID": 10719, + "Directional": true + } + ] + }, + { + "ID": 12275, + "SourceStructureID": 10720, + "TargetStructureID": 5585, + "Label": "10720-5585 via Conventional from 36817 -> 36816", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36817, + "TargetID": 36816, + "Directional": true + } + ] + }, + { + "ID": 12276, + "SourceStructureID": 10720, + "TargetStructureID": 10720, + "Label": "10720-10720 via Conventional from 27153 -> 27155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27153, + "TargetID": 27155, + "Directional": true + } + ] + }, + { + "ID": 12277, + "SourceStructureID": 10720, + "TargetStructureID": 147796, + "Label": "10720-147796 via Conventional from 27158 -> 147803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27158, + "TargetID": 147803, + "Directional": true + } + ] + }, + { + "ID": 12278, + "SourceStructureID": 10815, + "TargetStructureID": 4943, + "Label": "10815-4943 via Ribbon Synapse from 43373 -> 43372", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43373, + "TargetID": 43372, + "Directional": true + } + ] + }, + { + "ID": 12279, + "SourceStructureID": 10815, + "TargetStructureID": 5609, + "Label": "10815-5609 via Ribbon Synapse from 31380 -> 31381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31380, + "TargetID": 31381, + "Directional": true + } + ] + }, + { + "ID": 12280, + "SourceStructureID": 10815, + "TargetStructureID": 7114, + "Label": "10815-7114 via Ribbon Synapse from 31380 -> 31384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31380, + "TargetID": 31384, + "Directional": true + } + ] + }, + { + "ID": 12281, + "SourceStructureID": 10826, + "TargetStructureID": 391, + "Label": "10826-391 via Ribbon Synapse from 108557 -> 108559, 108571 -> 108574", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108557, + "TargetID": 108559, + "Directional": true + }, + { + "SourceID": 108571, + "TargetID": 108574, + "Directional": true + } + ] + }, + { + "ID": 12282, + "SourceStructureID": 10826, + "TargetStructureID": 5345, + "Label": "10826-5345 via Ribbon Synapse from 11387 -> 11382, 94781 -> 94780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11387, + "TargetID": 11382, + "Directional": true + }, + { + "SourceID": 94781, + "TargetID": 94780, + "Directional": true + } + ] + }, + { + "ID": 12283, + "SourceStructureID": 10826, + "TargetStructureID": 8037, + "Label": "10826-8037 via Ribbon Synapse from 11388 -> 11379, 11390 -> 11378", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11388, + "TargetID": 11379, + "Directional": true + }, + { + "SourceID": 11390, + "TargetID": 11378, + "Directional": true + } + ] + }, + { + "ID": 12284, + "SourceStructureID": 10826, + "TargetStructureID": 32795, + "Label": "10826-32795 via Ribbon Synapse from 32799 -> 32798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32799, + "TargetID": 32798, + "Directional": true + } + ] + }, + { + "ID": 12285, + "SourceStructureID": 10826, + "TargetStructureID": 38231, + "Label": "10826-38231 via Ribbon Synapse from 38234 -> 38235", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38234, + "TargetID": 38235, + "Directional": true + } + ] + }, + { + "ID": 12286, + "SourceStructureID": 10826, + "TargetStructureID": 101402, + "Label": "10826-101402 via Ribbon Synapse from 102083 -> 102082", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102083, + "TargetID": 102082, + "Directional": true + } + ] + }, + { + "ID": 12287, + "SourceStructureID": 10840, + "TargetStructureID": 38401, + "Label": "10840-38401 via Ribbon Synapse from 33271 -> 38403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33271, + "TargetID": 38403, + "Directional": true + } + ] + }, + { + "ID": 12288, + "SourceStructureID": 10840, + "TargetStructureID": 38404, + "Label": "10840-38404 via Ribbon Synapse from 33271 -> 38407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33271, + "TargetID": 38407, + "Directional": true + } + ] + }, + { + "ID": 12289, + "SourceStructureID": 10872, + "TargetStructureID": 308, + "Label": "10872-308 via Ribbon Synapse from 15042 -> 43776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15042, + "TargetID": 43776, + "Directional": true + } + ] + }, + { + "ID": 12290, + "SourceStructureID": 10872, + "TargetStructureID": 514, + "Label": "10872-514 via Ribbon Synapse from 10893 -> 2525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10893, + "TargetID": 2525, + "Directional": true + } + ] + }, + { + "ID": 12291, + "SourceStructureID": 10872, + "TargetStructureID": 573, + "Label": "10872-573 via Ribbon Synapse from 19220 -> 11430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19220, + "TargetID": 11430, + "Directional": true + } + ] + }, + { + "ID": 12292, + "SourceStructureID": 10872, + "TargetStructureID": 2610, + "Label": "10872-2610 via Ribbon Synapse from 15036 -> 19226, 15040 -> 2901, 15042 -> 17940, 15640 -> 2910, 15641 -> 17898, 15645 -> 2913, 15740 -> 15663, 17897 -> 15647, 17900 -> 17899", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15036, + "TargetID": 19226, + "Directional": true + }, + { + "SourceID": 15040, + "TargetID": 2901, + "Directional": true + }, + { + "SourceID": 15042, + "TargetID": 17940, + "Directional": true + }, + { + "SourceID": 15640, + "TargetID": 2910, + "Directional": true + }, + { + "SourceID": 15641, + "TargetID": 17898, + "Directional": true + }, + { + "SourceID": 15645, + "TargetID": 2913, + "Directional": true + }, + { + "SourceID": 15740, + "TargetID": 15663, + "Directional": true + }, + { + "SourceID": 17897, + "TargetID": 15647, + "Directional": true + }, + { + "SourceID": 17900, + "TargetID": 17899, + "Directional": true + } + ] + }, + { + "ID": 12293, + "SourceStructureID": 10872, + "TargetStructureID": 5303, + "Label": "10872-5303 via Ribbon Synapse from 15747 -> 30566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15747, + "TargetID": 30566, + "Directional": true + } + ] + }, + { + "ID": 12294, + "SourceStructureID": 10872, + "TargetStructureID": 5345, + "Label": "10872-5345 via Ribbon Synapse from 10879 -> 10881, 10882 -> 10883, 10889 -> 10890, 15021 -> 15020, 15742 -> 15674, 15744 -> 15737, 15747 -> 14592, 15751 -> 15753, 19233 -> 32860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10879, + "TargetID": 10881, + "Directional": true + }, + { + "SourceID": 10882, + "TargetID": 10883, + "Directional": true + }, + { + "SourceID": 10889, + "TargetID": 10890, + "Directional": true + }, + { + "SourceID": 15021, + "TargetID": 15020, + "Directional": true + }, + { + "SourceID": 15742, + "TargetID": 15674, + "Directional": true + }, + { + "SourceID": 15744, + "TargetID": 15737, + "Directional": true + }, + { + "SourceID": 15747, + "TargetID": 14592, + "Directional": true + }, + { + "SourceID": 15751, + "TargetID": 15753, + "Directional": true + }, + { + "SourceID": 19233, + "TargetID": 32860, + "Directional": true + } + ] + }, + { + "ID": 12295, + "SourceStructureID": 10872, + "TargetStructureID": 8037, + "Label": "10872-8037 via Ribbon Synapse from 10891 -> 10892, 11629 -> 11628, 19222 -> 19223, 19224 -> 19225, 19227 -> 19230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10891, + "TargetID": 10892, + "Directional": true + }, + { + "SourceID": 11629, + "TargetID": 11628, + "Directional": true + }, + { + "SourceID": 19222, + "TargetID": 19223, + "Directional": true + }, + { + "SourceID": 19224, + "TargetID": 19225, + "Directional": true + }, + { + "SourceID": 19227, + "TargetID": 19230, + "Directional": true + } + ] + }, + { + "ID": 12296, + "SourceStructureID": 10897, + "TargetStructureID": 179, + "Label": "10897-179 via Ribbon Synapse from 104875 -> 104874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104875, + "TargetID": 104874, + "Directional": true + } + ] + }, + { + "ID": 12297, + "SourceStructureID": 10897, + "TargetStructureID": 391, + "Label": "10897-391 via Ribbon Synapse from 13838 -> 108368, 13839 -> 108364, 13843 -> 108365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13838, + "TargetID": 108368, + "Directional": true + }, + { + "SourceID": 13839, + "TargetID": 108364, + "Directional": true + }, + { + "SourceID": 13843, + "TargetID": 108365, + "Directional": true + } + ] + }, + { + "ID": 12298, + "SourceStructureID": 10897, + "TargetStructureID": 514, + "Label": "10897-514 via Ribbon Synapse from 10898 -> 1528, 10899 -> 2596, 10900 -> 1534, 10922 -> 2582, 10923 -> 2584, 10924 -> 10925, 13843 -> 13842, 18949 -> 18950, 18958 -> 2580, 18959 -> 18960, 18965 -> 82028, 104875 -> 104873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10898, + "TargetID": 1528, + "Directional": true + }, + { + "SourceID": 10899, + "TargetID": 2596, + "Directional": true + }, + { + "SourceID": 10900, + "TargetID": 1534, + "Directional": true + }, + { + "SourceID": 10922, + "TargetID": 2582, + "Directional": true + }, + { + "SourceID": 10923, + "TargetID": 2584, + "Directional": true + }, + { + "SourceID": 10924, + "TargetID": 10925, + "Directional": true + }, + { + "SourceID": 13843, + "TargetID": 13842, + "Directional": true + }, + { + "SourceID": 18949, + "TargetID": 18950, + "Directional": true + }, + { + "SourceID": 18958, + "TargetID": 2580, + "Directional": true + }, + { + "SourceID": 18959, + "TargetID": 18960, + "Directional": true + }, + { + "SourceID": 18965, + "TargetID": 82028, + "Directional": true + }, + { + "SourceID": 104875, + "TargetID": 104873, + "Directional": true + } + ] + }, + { + "ID": 12299, + "SourceStructureID": 10897, + "TargetStructureID": 3679, + "Label": "10897-3679 via Ribbon Synapse from 10927 -> 4701, 10927 -> 10928, 10929 -> 4702, 13839 -> 13840, 13841 -> 3812, 18946 -> 18947, 18954 -> 4702, 18955 -> 66142, 18961 -> 3808, 18962 -> 3856, 18968 -> 3822, 18969 -> 3823, 66139 -> 3815, 66140 -> 3819, 158724 -> 158725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10927, + "TargetID": 4701, + "Directional": true + }, + { + "SourceID": 10927, + "TargetID": 10928, + "Directional": true + }, + { + "SourceID": 10929, + "TargetID": 4702, + "Directional": true + }, + { + "SourceID": 13839, + "TargetID": 13840, + "Directional": true + }, + { + "SourceID": 13841, + "TargetID": 3812, + "Directional": true + }, + { + "SourceID": 18946, + "TargetID": 18947, + "Directional": true + }, + { + "SourceID": 18954, + "TargetID": 4702, + "Directional": true + }, + { + "SourceID": 18955, + "TargetID": 66142, + "Directional": true + }, + { + "SourceID": 18961, + "TargetID": 3808, + "Directional": true + }, + { + "SourceID": 18962, + "TargetID": 3856, + "Directional": true + }, + { + "SourceID": 18968, + "TargetID": 3822, + "Directional": true + }, + { + "SourceID": 18969, + "TargetID": 3823, + "Directional": true + }, + { + "SourceID": 66139, + "TargetID": 3815, + "Directional": true + }, + { + "SourceID": 66140, + "TargetID": 3819, + "Directional": true + }, + { + "SourceID": 158724, + "TargetID": 158725, + "Directional": true + } + ] + }, + { + "ID": 12300, + "SourceStructureID": 10897, + "TargetStructureID": 5303, + "Label": "10897-5303 via Ribbon Synapse from 18959 -> 35629, 18967 -> 102665", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18959, + "TargetID": 35629, + "Directional": true + }, + { + "SourceID": 18967, + "TargetID": 102665, + "Directional": true + } + ] + }, + { + "ID": 12301, + "SourceStructureID": 10897, + "TargetStructureID": 8037, + "Label": "10897-8037 via Ribbon Synapse from 18965 -> 18966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18965, + "TargetID": 18966, + "Directional": true + } + ] + }, + { + "ID": 12302, + "SourceStructureID": 10897, + "TargetStructureID": 97683, + "Label": "10897-97683 via Ribbon Synapse from 13835 -> 97703", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13835, + "TargetID": 97703, + "Directional": true + } + ] + }, + { + "ID": 12303, + "SourceStructureID": 10897, + "TargetStructureID": 101553, + "Label": "10897-101553 via Ribbon Synapse from 18958 -> 101569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18958, + "TargetID": 101569, + "Directional": true + } + ] + }, + { + "ID": 12304, + "SourceStructureID": 10931, + "TargetStructureID": 179, + "Label": "10931-179 via Ribbon Synapse from 19242 -> 87471, 19243 -> 87468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19242, + "TargetID": 87471, + "Directional": true + }, + { + "SourceID": 19243, + "TargetID": 87468, + "Directional": true + } + ] + }, + { + "ID": 12305, + "SourceStructureID": 10931, + "TargetStructureID": 514, + "Label": "10931-514 via Ribbon Synapse from 10940 -> 5223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10940, + "TargetID": 5223, + "Directional": true + } + ] + }, + { + "ID": 12306, + "SourceStructureID": 10931, + "TargetStructureID": 3679, + "Label": "10931-3679 via Ribbon Synapse from 10933 -> 7935, 10934 -> 7934, 10937 -> 7971, 10938 -> 10939, 13844 -> 13845, 14226 -> 14227, 18977 -> 159517, 18990 -> 29647, 19248 -> 22794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10933, + "TargetID": 7935, + "Directional": true + }, + { + "SourceID": 10934, + "TargetID": 7934, + "Directional": true + }, + { + "SourceID": 10937, + "TargetID": 7971, + "Directional": true + }, + { + "SourceID": 10938, + "TargetID": 10939, + "Directional": true + }, + { + "SourceID": 13844, + "TargetID": 13845, + "Directional": true + }, + { + "SourceID": 14226, + "TargetID": 14227, + "Directional": true + }, + { + "SourceID": 18977, + "TargetID": 159517, + "Directional": true + }, + { + "SourceID": 18990, + "TargetID": 29647, + "Directional": true + }, + { + "SourceID": 19248, + "TargetID": 22794, + "Directional": true + } + ] + }, + { + "ID": 12307, + "SourceStructureID": 10931, + "TargetStructureID": 4850, + "Label": "10931-4850 via Ribbon Synapse from 14219 -> 14218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14219, + "TargetID": 14218, + "Directional": true + } + ] + }, + { + "ID": 12308, + "SourceStructureID": 10931, + "TargetStructureID": 5394, + "Label": "10931-5394 via Ribbon Synapse from 18980 -> 77059, 18998 -> 77056, 18998 -> 159503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18980, + "TargetID": 77059, + "Directional": true + }, + { + "SourceID": 18998, + "TargetID": 77056, + "Directional": true + }, + { + "SourceID": 18998, + "TargetID": 159503, + "Directional": true + } + ] + }, + { + "ID": 12309, + "SourceStructureID": 10931, + "TargetStructureID": 7147, + "Label": "10931-7147 via Ribbon Synapse from 19241 -> 22902, 19244 -> 22901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19241, + "TargetID": 22902, + "Directional": true + }, + { + "SourceID": 19244, + "TargetID": 22901, + "Directional": true + } + ] + }, + { + "ID": 12310, + "SourceStructureID": 10931, + "TargetStructureID": 12897, + "Label": "10931-12897 via Ribbon Synapse from 14234 -> 24622, 18978 -> 24621, 18980 -> 24617, 18981 -> 159344, 18998 -> 24616, 159346 -> 159345", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14234, + "TargetID": 24622, + "Directional": true + }, + { + "SourceID": 18978, + "TargetID": 24621, + "Directional": true + }, + { + "SourceID": 18980, + "TargetID": 24617, + "Directional": true + }, + { + "SourceID": 18981, + "TargetID": 159344, + "Directional": true + }, + { + "SourceID": 18998, + "TargetID": 24616, + "Directional": true + }, + { + "SourceID": 159346, + "TargetID": 159345, + "Directional": true + } + ] + }, + { + "ID": 12311, + "SourceStructureID": 10931, + "TargetStructureID": 32871, + "Label": "10931-32871 via Ribbon Synapse from 10933 -> 93906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10933, + "TargetID": 93906, + "Directional": true + } + ] + }, + { + "ID": 12312, + "SourceStructureID": 10931, + "TargetStructureID": 32905, + "Label": "10931-32905 via Ribbon Synapse from 10934 -> 159492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10934, + "TargetID": 159492, + "Directional": true + } + ] + }, + { + "ID": 12313, + "SourceStructureID": 10931, + "TargetStructureID": 39244, + "Label": "10931-39244 via Ribbon Synapse from 18992 -> 159352", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18992, + "TargetID": 159352, + "Directional": true + } + ] + }, + { + "ID": 12314, + "SourceStructureID": 10931, + "TargetStructureID": 76973, + "Label": "10931-76973 via Ribbon Synapse from 13844 -> 77010, 14226 -> 76974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13844, + "TargetID": 77010, + "Directional": true + }, + { + "SourceID": 14226, + "TargetID": 76974, + "Directional": true + } + ] + }, + { + "ID": 12315, + "SourceStructureID": 10931, + "TargetStructureID": 77019, + "Label": "10931-77019 via Ribbon Synapse from 10940 -> 77020", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 10940, + "TargetID": 77020, + "Directional": true + } + ] + }, + { + "ID": 12316, + "SourceStructureID": 10931, + "TargetStructureID": 85311, + "Label": "10931-85311 via Ribbon Synapse from 159333 -> 159334", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159333, + "TargetID": 159334, + "Directional": true + } + ] + }, + { + "ID": 12317, + "SourceStructureID": 10931, + "TargetStructureID": 159504, + "Label": "10931-159504 via Ribbon Synapse from 18998 -> 159505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18998, + "TargetID": 159505, + "Directional": true + } + ] + }, + { + "ID": 12318, + "SourceStructureID": 10931, + "TargetStructureID": 159518, + "Label": "10931-159518 via Ribbon Synapse from 18974 -> 159519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18974, + "TargetID": 159519, + "Directional": true + } + ] + }, + { + "ID": 12319, + "SourceStructureID": 10943, + "TargetStructureID": 514, + "Label": "10943-514 via Ribbon Synapse from 16274 -> 3097, 16276 -> 3110, 16279 -> 5224, 22579 -> 3100", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16274, + "TargetID": 3097, + "Directional": true + }, + { + "SourceID": 16276, + "TargetID": 3110, + "Directional": true + }, + { + "SourceID": 16279, + "TargetID": 5224, + "Directional": true + }, + { + "SourceID": 22579, + "TargetID": 3100, + "Directional": true + } + ] + }, + { + "ID": 12320, + "SourceStructureID": 10943, + "TargetStructureID": 3679, + "Label": "10943-3679 via Ribbon Synapse from 16256 -> 3774, 16260 -> 3775, 16265 -> 120444, 16271 -> 5191, 16272 -> 5195, 16273 -> 5211, 16277 -> 16278, 18847 -> 18846, 19012 -> 66145, 19023 -> 63366, 66143 -> 8003, 66144 -> 8004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16256, + "TargetID": 3774, + "Directional": true + }, + { + "SourceID": 16260, + "TargetID": 3775, + "Directional": true + }, + { + "SourceID": 16265, + "TargetID": 120444, + "Directional": true + }, + { + "SourceID": 16271, + "TargetID": 5191, + "Directional": true + }, + { + "SourceID": 16272, + "TargetID": 5195, + "Directional": true + }, + { + "SourceID": 16273, + "TargetID": 5211, + "Directional": true + }, + { + "SourceID": 16277, + "TargetID": 16278, + "Directional": true + }, + { + "SourceID": 18847, + "TargetID": 18846, + "Directional": true + }, + { + "SourceID": 19012, + "TargetID": 66145, + "Directional": true + }, + { + "SourceID": 19023, + "TargetID": 63366, + "Directional": true + }, + { + "SourceID": 66143, + "TargetID": 8003, + "Directional": true + }, + { + "SourceID": 66144, + "TargetID": 8004, + "Directional": true + } + ] + }, + { + "ID": 12321, + "SourceStructureID": 10943, + "TargetStructureID": 5394, + "Label": "10943-5394 via Ribbon Synapse from 16271 -> 87955, 22579 -> 22810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16271, + "TargetID": 87955, + "Directional": true + }, + { + "SourceID": 22579, + "TargetID": 22810, + "Directional": true + } + ] + }, + { + "ID": 12322, + "SourceStructureID": 10943, + "TargetStructureID": 5402, + "Label": "10943-5402 via Ribbon Synapse from 16254 -> 129552, 16256 -> 129550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16254, + "TargetID": 129552, + "Directional": true + }, + { + "SourceID": 16256, + "TargetID": 129550, + "Directional": true + } + ] + }, + { + "ID": 12323, + "SourceStructureID": 10943, + "TargetStructureID": 8720, + "Label": "10943-8720 via Ribbon Synapse from 19023 -> 63367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19023, + "TargetID": 63367, + "Directional": true + } + ] + }, + { + "ID": 12324, + "SourceStructureID": 10943, + "TargetStructureID": 66815, + "Label": "10943-66815 via Ribbon Synapse from 16266 -> 66816, 16268 -> 66819", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16266, + "TargetID": 66816, + "Directional": true + }, + { + "SourceID": 16268, + "TargetID": 66819, + "Directional": true + } + ] + }, + { + "ID": 12325, + "SourceStructureID": 10945, + "TargetStructureID": 424, + "Label": "10945-424 via Conventional from 10979 -> 19528, 19535 -> 19534", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10979, + "TargetID": 19528, + "Directional": true + }, + { + "SourceID": 19535, + "TargetID": 19534, + "Directional": true + } + ] + }, + { + "ID": 12326, + "SourceStructureID": 10945, + "TargetStructureID": 478, + "Label": "10945-478 via Conventional from 10948 -> 10949, 10974 -> 3024, 10977 -> 19389", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10948, + "TargetID": 10949, + "Directional": true + }, + { + "SourceID": 10974, + "TargetID": 3024, + "Directional": true + }, + { + "SourceID": 10977, + "TargetID": 19389, + "Directional": true + } + ] + }, + { + "ID": 12327, + "SourceStructureID": 10945, + "TargetStructureID": 26304, + "Label": "10945-26304 via Conventional from 10992 -> 26321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10992, + "TargetID": 26321, + "Directional": true + } + ] + }, + { + "ID": 12328, + "SourceStructureID": 10945, + "TargetStructureID": 31944, + "Label": "10945-31944 via Conventional from 10988 -> 31952", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10988, + "TargetID": 31952, + "Directional": true + } + ] + }, + { + "ID": 12329, + "SourceStructureID": 10950, + "TargetStructureID": 6857, + "Label": "10950-6857 via Conventional from 19010 -> 7521, 19016 -> 7520", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 19010, + "TargetID": 7521, + "Directional": true + }, + { + "SourceID": 19016, + "TargetID": 7520, + "Directional": true + } + ] + }, + { + "ID": 12330, + "SourceStructureID": 10953, + "TargetStructureID": 179, + "Label": "10953-179 via Ribbon Synapse from 87479 -> 87480, 87484 -> 87485", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87479, + "TargetID": 87480, + "Directional": true + }, + { + "SourceID": 87484, + "TargetID": 87485, + "Directional": true + } + ] + }, + { + "ID": 12331, + "SourceStructureID": 10953, + "TargetStructureID": 5303, + "Label": "10953-5303 via Ribbon Synapse from 33268 -> 24056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33268, + "TargetID": 24056, + "Directional": true + } + ] + }, + { + "ID": 12332, + "SourceStructureID": 10953, + "TargetStructureID": 5860, + "Label": "10953-5860 via Ribbon Synapse from 33672 -> 33673, 87479 -> 87481, 87484 -> 87486", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33672, + "TargetID": 33673, + "Directional": true + }, + { + "SourceID": 87479, + "TargetID": 87481, + "Directional": true + }, + { + "SourceID": 87484, + "TargetID": 87486, + "Directional": true + } + ] + }, + { + "ID": 12333, + "SourceStructureID": 10954, + "TargetStructureID": 514, + "Label": "10954-514 via Conventional from 10955 -> 1089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10955, + "TargetID": 1089, + "Directional": true + } + ] + }, + { + "ID": 12334, + "SourceStructureID": 10957, + "TargetStructureID": 4943, + "Label": "10957-4943 via Ribbon Synapse from 83511 -> 83510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83511, + "TargetID": 83510, + "Directional": true + } + ] + }, + { + "ID": 12335, + "SourceStructureID": 10957, + "TargetStructureID": 83514, + "Label": "10957-83514 via Ribbon Synapse from 83511 -> 83515, 83516 -> 83517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83511, + "TargetID": 83515, + "Directional": true + }, + { + "SourceID": 83516, + "TargetID": 83517, + "Directional": true + } + ] + }, + { + "ID": 12336, + "SourceStructureID": 10957, + "TargetStructureID": 98127, + "Label": "10957-98127 via Ribbon Synapse from 33683 -> 98875", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33683, + "TargetID": 98875, + "Directional": true + } + ] + }, + { + "ID": 12337, + "SourceStructureID": 10957, + "TargetStructureID": 105212, + "Label": "10957-105212 via Ribbon Synapse from 105716 -> 105710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105716, + "TargetID": 105710, + "Directional": true + } + ] + }, + { + "ID": 12338, + "SourceStructureID": 10959, + "TargetStructureID": 476, + "Label": "10959-476 via Ribbon Synapse from 16555 -> 3210, 16557 -> 3208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16555, + "TargetID": 3210, + "Directional": true + }, + { + "SourceID": 16557, + "TargetID": 3208, + "Directional": true + } + ] + }, + { + "ID": 12339, + "SourceStructureID": 10959, + "TargetStructureID": 3257, + "Label": "10959-3257 via Ribbon Synapse from 16369 -> 16370, 16378 -> 16379, 16381 -> 16382, 16383 -> 16384, 16385 -> 16387, 16388 -> 18381, 16389 -> 16390, 16393 -> 16392, 16562 -> 16560, 16563 -> 16564, 16581 -> 16582, 16584 -> 16583, 16596 -> 16597, 18935 -> 10854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16369, + "TargetID": 16370, + "Directional": true + }, + { + "SourceID": 16378, + "TargetID": 16379, + "Directional": true + }, + { + "SourceID": 16381, + "TargetID": 16382, + "Directional": true + }, + { + "SourceID": 16383, + "TargetID": 16384, + "Directional": true + }, + { + "SourceID": 16385, + "TargetID": 16387, + "Directional": true + }, + { + "SourceID": 16388, + "TargetID": 18381, + "Directional": true + }, + { + "SourceID": 16389, + "TargetID": 16390, + "Directional": true + }, + { + "SourceID": 16393, + "TargetID": 16392, + "Directional": true + }, + { + "SourceID": 16562, + "TargetID": 16560, + "Directional": true + }, + { + "SourceID": 16563, + "TargetID": 16564, + "Directional": true + }, + { + "SourceID": 16581, + "TargetID": 16582, + "Directional": true + }, + { + "SourceID": 16584, + "TargetID": 16583, + "Directional": true + }, + { + "SourceID": 16596, + "TargetID": 16597, + "Directional": true + }, + { + "SourceID": 18935, + "TargetID": 10854, + "Directional": true + } + ] + }, + { + "ID": 12340, + "SourceStructureID": 10959, + "TargetStructureID": 5394, + "Label": "10959-5394 via Ribbon Synapse from 18927 -> 87750", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18927, + "TargetID": 87750, + "Directional": true + } + ] + }, + { + "ID": 12341, + "SourceStructureID": 10959, + "TargetStructureID": 86747, + "Label": "10959-86747 via Ribbon Synapse from 16369 -> 86750", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16369, + "TargetID": 86750, + "Directional": true + } + ] + }, + { + "ID": 12342, + "SourceStructureID": 10959, + "TargetStructureID": 86751, + "Label": "10959-86751 via Ribbon Synapse from 16369 -> 86755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16369, + "TargetID": 86755, + "Directional": true + } + ] + }, + { + "ID": 12343, + "SourceStructureID": 10959, + "TargetStructureID": 86775, + "Label": "10959-86775 via Ribbon Synapse from 16380 -> 86778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16380, + "TargetID": 86778, + "Directional": true + } + ] + }, + { + "ID": 12344, + "SourceStructureID": 10959, + "TargetStructureID": 86779, + "Label": "10959-86779 via Ribbon Synapse from 16380 -> 86780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16380, + "TargetID": 86780, + "Directional": true + } + ] + }, + { + "ID": 12345, + "SourceStructureID": 10959, + "TargetStructureID": 86783, + "Label": "10959-86783 via Ribbon Synapse from 16563 -> 86787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16563, + "TargetID": 86787, + "Directional": true + } + ] + }, + { + "ID": 12346, + "SourceStructureID": 10959, + "TargetStructureID": 86799, + "Label": "10959-86799 via Ribbon Synapse from 16555 -> 86805", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16555, + "TargetID": 86805, + "Directional": true + } + ] + }, + { + "ID": 12347, + "SourceStructureID": 10959, + "TargetStructureID": 86860, + "Label": "10959-86860 via Ribbon Synapse from 19260 -> 86861", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19260, + "TargetID": 86861, + "Directional": true + } + ] + }, + { + "ID": 12348, + "SourceStructureID": 10959, + "TargetStructureID": 86862, + "Label": "10959-86862 via Ribbon Synapse from 16393 -> 86863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16393, + "TargetID": 86863, + "Directional": true + } + ] + }, + { + "ID": 12349, + "SourceStructureID": 10959, + "TargetStructureID": 86864, + "Label": "10959-86864 via Ribbon Synapse from 18936 -> 86866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18936, + "TargetID": 86866, + "Directional": true + } + ] + }, + { + "ID": 12350, + "SourceStructureID": 10959, + "TargetStructureID": 86871, + "Label": "10959-86871 via Ribbon Synapse from 18934 -> 86873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18934, + "TargetID": 86873, + "Directional": true + } + ] + }, + { + "ID": 12351, + "SourceStructureID": 10959, + "TargetStructureID": 86876, + "Label": "10959-86876 via Ribbon Synapse from 16383 -> 86877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16383, + "TargetID": 86877, + "Directional": true + } + ] + }, + { + "ID": 12352, + "SourceStructureID": 10959, + "TargetStructureID": 86888, + "Label": "10959-86888 via Ribbon Synapse from 16385 -> 86890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16385, + "TargetID": 86890, + "Directional": true + } + ] + }, + { + "ID": 12353, + "SourceStructureID": 10959, + "TargetStructureID": 86913, + "Label": "10959-86913 via Ribbon Synapse from 16581 -> 86914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16581, + "TargetID": 86914, + "Directional": true + } + ] + }, + { + "ID": 12354, + "SourceStructureID": 10959, + "TargetStructureID": 86915, + "Label": "10959-86915 via Ribbon Synapse from 16584 -> 86917, 16596 -> 86926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16584, + "TargetID": 86917, + "Directional": true + }, + { + "SourceID": 16596, + "TargetID": 86926, + "Directional": true + } + ] + }, + { + "ID": 12355, + "SourceStructureID": 10960, + "TargetStructureID": 3257, + "Label": "10960-3257 via Ribbon Synapse from 12469 -> 8226", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12469, + "TargetID": 8226, + "Directional": true + } + ] + }, + { + "ID": 12356, + "SourceStructureID": 10960, + "TargetStructureID": 42432, + "Label": "10960-42432 via Ribbon Synapse from 42434 -> 42433", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42434, + "TargetID": 42433, + "Directional": true + } + ] + }, + { + "ID": 12357, + "SourceStructureID": 10960, + "TargetStructureID": 42450, + "Label": "10960-42450 via Ribbon Synapse from 42452 -> 42451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42452, + "TargetID": 42451, + "Directional": true + } + ] + }, + { + "ID": 12358, + "SourceStructureID": 10961, + "TargetStructureID": 5303, + "Label": "10961-5303 via Ribbon Synapse from 33252 -> 24059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33252, + "TargetID": 24059, + "Directional": true + } + ] + }, + { + "ID": 12359, + "SourceStructureID": 10963, + "TargetStructureID": 11238, + "Label": "10963-11238 via Ribbon Synapse from 88572 -> 88569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88572, + "TargetID": 88569, + "Directional": true + } + ] + }, + { + "ID": 12360, + "SourceStructureID": 10963, + "TargetStructureID": 136913, + "Label": "10963-136913 via Ribbon Synapse from 136912 -> 136914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136912, + "TargetID": 136914, + "Directional": true + } + ] + }, + { + "ID": 12361, + "SourceStructureID": 10963, + "TargetStructureID": 136917, + "Label": "10963-136917 via Ribbon Synapse from 136920 -> 136921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136920, + "TargetID": 136921, + "Directional": true + } + ] + }, + { + "ID": 12362, + "SourceStructureID": 10966, + "TargetStructureID": 514, + "Label": "10966-514 via Conventional from 10967 -> 1091", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10967, + "TargetID": 1091, + "Directional": true + } + ] + }, + { + "ID": 12363, + "SourceStructureID": 10970, + "TargetStructureID": 514, + "Label": "10970-514 via Conventional from 10971 -> 1102, 10972 -> 1098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 10971, + "TargetID": 1102, + "Directional": true + }, + { + "SourceID": 10972, + "TargetID": 1098, + "Directional": true + } + ] + }, + { + "ID": 12364, + "SourceStructureID": 11011, + "TargetStructureID": 514, + "Label": "11011-514 via Conventional from 11012 -> 1103", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11012, + "TargetID": 1103, + "Directional": true + } + ] + }, + { + "ID": 12365, + "SourceStructureID": 11015, + "TargetStructureID": 514, + "Label": "11015-514 via Conventional from 11016 -> 1105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11016, + "TargetID": 1105, + "Directional": true + } + ] + }, + { + "ID": 12366, + "SourceStructureID": 11017, + "TargetStructureID": 8575, + "Label": "11017-8575 via Conventional from 11008 -> 61570", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11008, + "TargetID": 61570, + "Directional": true + } + ] + }, + { + "ID": 12367, + "SourceStructureID": 11020, + "TargetStructureID": 7861, + "Label": "11020-7861 via Ribbon Synapse from 20012 -> 10558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20012, + "TargetID": 10558, + "Directional": true + } + ] + }, + { + "ID": 12368, + "SourceStructureID": 11023, + "TargetStructureID": 2610, + "Label": "11023-2610 via Conventional from 11027 -> 2614, 11028 -> 2621", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11027, + "TargetID": 2614, + "Directional": true + }, + { + "SourceID": 11028, + "TargetID": 2621, + "Directional": true + } + ] + }, + { + "ID": 12369, + "SourceStructureID": 11024, + "TargetStructureID": 2610, + "Label": "11024-2610 via Conventional from 11025 -> 2616", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11025, + "TargetID": 2616, + "Directional": true + } + ] + }, + { + "ID": 12370, + "SourceStructureID": 11031, + "TargetStructureID": 3679, + "Label": "11031-3679 via Ribbon Synapse from 25442 -> 7965, 25445 -> 7969, 25446 -> 7970, 25450 -> 25451, 66121 -> 66122, 66123 -> 7967, 66124 -> 66125", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25442, + "TargetID": 7965, + "Directional": true + }, + { + "SourceID": 25445, + "TargetID": 7969, + "Directional": true + }, + { + "SourceID": 25446, + "TargetID": 7970, + "Directional": true + }, + { + "SourceID": 25450, + "TargetID": 25451, + "Directional": true + }, + { + "SourceID": 66121, + "TargetID": 66122, + "Directional": true + }, + { + "SourceID": 66123, + "TargetID": 7967, + "Directional": true + }, + { + "SourceID": 66124, + "TargetID": 66125, + "Directional": true + } + ] + }, + { + "ID": 12371, + "SourceStructureID": 11031, + "TargetStructureID": 4943, + "Label": "11031-4943 via Ribbon Synapse from 40981 -> 40980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40981, + "TargetID": 40980, + "Directional": true + } + ] + }, + { + "ID": 12372, + "SourceStructureID": 11031, + "TargetStructureID": 5394, + "Label": "11031-5394 via Ribbon Synapse from 25442 -> 77061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25442, + "TargetID": 77061, + "Directional": true + } + ] + }, + { + "ID": 12373, + "SourceStructureID": 11031, + "TargetStructureID": 6169, + "Label": "11031-6169 via Ribbon Synapse from 29782 -> 29781, 60865 -> 14938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29782, + "TargetID": 29781, + "Directional": true + }, + { + "SourceID": 60865, + "TargetID": 14938, + "Directional": true + } + ] + }, + { + "ID": 12374, + "SourceStructureID": 11031, + "TargetStructureID": 60863, + "Label": "11031-60863 via Ribbon Synapse from 60865 -> 60864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60865, + "TargetID": 60864, + "Directional": true + } + ] + }, + { + "ID": 12375, + "SourceStructureID": 11033, + "TargetStructureID": 7113, + "Label": "11033-7113 via Ribbon Synapse from 82687 -> 82688", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82687, + "TargetID": 82688, + "Directional": true + } + ] + }, + { + "ID": 12376, + "SourceStructureID": 11033, + "TargetStructureID": 7147, + "Label": "11033-7147 via Ribbon Synapse from 32966 -> 32965", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32966, + "TargetID": 32965, + "Directional": true + } + ] + }, + { + "ID": 12377, + "SourceStructureID": 11033, + "TargetStructureID": 32959, + "Label": "11033-32959 via Ribbon Synapse from 32963 -> 32962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32963, + "TargetID": 32962, + "Directional": true + } + ] + }, + { + "ID": 12378, + "SourceStructureID": 11037, + "TargetStructureID": 7114, + "Label": "11037-7114 via Ribbon Synapse from 33706 -> 33707, 159297 -> 159298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33706, + "TargetID": 33707, + "Directional": true + }, + { + "SourceID": 159297, + "TargetID": 159298, + "Directional": true + } + ] + }, + { + "ID": 12379, + "SourceStructureID": 11042, + "TargetStructureID": 308, + "Label": "11042-308 via Ribbon Synapse from 42697 -> 42698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 42697, + "TargetID": 42698, + "Directional": true + } + ] + }, + { + "ID": 12380, + "SourceStructureID": 11042, + "TargetStructureID": 7147, + "Label": "11042-7147 via Ribbon Synapse from 91327 -> 91326, 92810 -> 22900", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91327, + "TargetID": 91326, + "Directional": true + }, + { + "SourceID": 92810, + "TargetID": 22900, + "Directional": true + } + ] + }, + { + "ID": 12381, + "SourceStructureID": 11042, + "TargetStructureID": 12897, + "Label": "11042-12897 via Ribbon Synapse from 92810 -> 92809, 108238 -> 108239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92810, + "TargetID": 92809, + "Directional": true + }, + { + "SourceID": 108238, + "TargetID": 108239, + "Directional": true + } + ] + }, + { + "ID": 12382, + "SourceStructureID": 11042, + "TargetStructureID": 91207, + "Label": "11042-91207 via Ribbon Synapse from 91540 -> 91539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91540, + "TargetID": 91539, + "Directional": true + } + ] + }, + { + "ID": 12383, + "SourceStructureID": 11043, + "TargetStructureID": 3679, + "Label": "11043-3679 via Ribbon Synapse from 66130 -> 66131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66130, + "TargetID": 66131, + "Directional": true + } + ] + }, + { + "ID": 12384, + "SourceStructureID": 11043, + "TargetStructureID": 12897, + "Label": "11043-12897 via Ribbon Synapse from 87573 -> 24842, 108258 -> 108256, 108263 -> 108251, 135377 -> 135379", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87573, + "TargetID": 24842, + "Directional": true + }, + { + "SourceID": 108258, + "TargetID": 108256, + "Directional": true + }, + { + "SourceID": 108263, + "TargetID": 108251, + "Directional": true + }, + { + "SourceID": 135377, + "TargetID": 135379, + "Directional": true + } + ] + }, + { + "ID": 12385, + "SourceStructureID": 11043, + "TargetStructureID": 61466, + "Label": "11043-61466 via Ribbon Synapse from 33710 -> 61468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33710, + "TargetID": 61468, + "Directional": true + } + ] + }, + { + "ID": 12386, + "SourceStructureID": 11043, + "TargetStructureID": 87569, + "Label": "11043-87569 via Ribbon Synapse from 87573 -> 87572", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87573, + "TargetID": 87572, + "Directional": true + } + ] + }, + { + "ID": 12387, + "SourceStructureID": 11043, + "TargetStructureID": 92226, + "Label": "11043-92226 via Ribbon Synapse from 92804 -> 92805", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92804, + "TargetID": 92805, + "Directional": true + } + ] + }, + { + "ID": 12388, + "SourceStructureID": 11043, + "TargetStructureID": 135039, + "Label": "11043-135039 via Ribbon Synapse from 135046 -> 135047", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135046, + "TargetID": 135047, + "Directional": true + } + ] + }, + { + "ID": 12389, + "SourceStructureID": 11044, + "TargetStructureID": 5609, + "Label": "11044-5609 via Ribbon Synapse from 33322 -> 25059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33322, + "TargetID": 25059, + "Directional": true + } + ] + }, + { + "ID": 12390, + "SourceStructureID": 11044, + "TargetStructureID": 31024, + "Label": "11044-31024 via Ribbon Synapse from 33321 -> 33320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33321, + "TargetID": 33320, + "Directional": true + } + ] + }, + { + "ID": 12391, + "SourceStructureID": 11044, + "TargetStructureID": 32767, + "Label": "11044-32767 via Ribbon Synapse from 32770 -> 32769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32770, + "TargetID": 32769, + "Directional": true + } + ] + }, + { + "ID": 12392, + "SourceStructureID": 11049, + "TargetStructureID": 5303, + "Label": "11049-5303 via Ribbon Synapse from 35605 -> 35604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35605, + "TargetID": 35604, + "Directional": true + } + ] + }, + { + "ID": 12393, + "SourceStructureID": 11056, + "TargetStructureID": 7054, + "Label": "11056-7054 via Conventional from 159634 -> 7058, 159635 -> 7057", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159634, + "TargetID": 7058, + "Directional": true + }, + { + "SourceID": 159635, + "TargetID": 7057, + "Directional": true + } + ] + }, + { + "ID": 12394, + "SourceStructureID": 11063, + "TargetStructureID": 5394, + "Label": "11063-5394 via Ribbon Synapse from 122905 -> 122906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122905, + "TargetID": 122906, + "Directional": true + } + ] + }, + { + "ID": 12395, + "SourceStructureID": 11063, + "TargetStructureID": 7114, + "Label": "11063-7114 via Ribbon Synapse from 116680 -> 116681, 122887 -> 122886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 116680, + "TargetID": 116681, + "Directional": true + }, + { + "SourceID": 122887, + "TargetID": 122886, + "Directional": true + } + ] + }, + { + "ID": 12396, + "SourceStructureID": 11066, + "TargetStructureID": 7215, + "Label": "11066-7215 via Ribbon Synapse from 31563 -> 31548, 31564 -> 31548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31563, + "TargetID": 31548, + "Directional": true + }, + { + "SourceID": 31564, + "TargetID": 31548, + "Directional": true + } + ] + }, + { + "ID": 12397, + "SourceStructureID": 11066, + "TargetStructureID": 7858, + "Label": "11066-7858 via Ribbon Synapse from 31914 -> 31909", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31914, + "TargetID": 31909, + "Directional": true + } + ] + }, + { + "ID": 12398, + "SourceStructureID": 11066, + "TargetStructureID": 16073, + "Label": "11066-16073 via Ribbon Synapse from 34421 -> 24227", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34421, + "TargetID": 24227, + "Directional": true + } + ] + }, + { + "ID": 12399, + "SourceStructureID": 11071, + "TargetStructureID": 4569, + "Label": "11071-4569 via Conventional from 11078 -> 11068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11078, + "TargetID": 11068, + "Directional": true + } + ] + }, + { + "ID": 12400, + "SourceStructureID": 11073, + "TargetStructureID": 4569, + "Label": "11073-4569 via Conventional from 11079 -> 11069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11079, + "TargetID": 11069, + "Directional": true + } + ] + }, + { + "ID": 12401, + "SourceStructureID": 11074, + "TargetStructureID": 170, + "Label": "11074-170 via Conventional from 11082 -> 90372", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11082, + "TargetID": 90372, + "Directional": true + } + ] + }, + { + "ID": 12402, + "SourceStructureID": 11074, + "TargetStructureID": 4569, + "Label": "11074-4569 via Conventional from 11084 -> 47506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11084, + "TargetID": 47506, + "Directional": true + } + ] + }, + { + "ID": 12403, + "SourceStructureID": 11074, + "TargetStructureID": 11072, + "Label": "11074-11072 via Conventional from 11077 -> 11076", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11077, + "TargetID": 11076, + "Directional": true + } + ] + }, + { + "ID": 12404, + "SourceStructureID": 11085, + "TargetStructureID": 5303, + "Label": "11085-5303 via Ribbon Synapse from 24030 -> 24011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24030, + "TargetID": 24011, + "Directional": true + } + ] + }, + { + "ID": 12405, + "SourceStructureID": 11085, + "TargetStructureID": 5464, + "Label": "11085-5464 via Ribbon Synapse from 24015 -> 57269, 116629 -> 116630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24015, + "TargetID": 57269, + "Directional": true + }, + { + "SourceID": 116629, + "TargetID": 116630, + "Directional": true + } + ] + }, + { + "ID": 12406, + "SourceStructureID": 11092, + "TargetStructureID": 7693, + "Label": "11092-7693 via Ribbon Synapse from 95082 -> 95083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95082, + "TargetID": 95083, + "Directional": true + } + ] + }, + { + "ID": 12407, + "SourceStructureID": 11092, + "TargetStructureID": 7703, + "Label": "11092-7703 via Ribbon Synapse from 128623 -> 17755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128623, + "TargetID": 17755, + "Directional": true + } + ] + }, + { + "ID": 12408, + "SourceStructureID": 11092, + "TargetStructureID": 7859, + "Label": "11092-7859 via Ribbon Synapse from 128615 -> 84694", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128615, + "TargetID": 84694, + "Directional": true + } + ] + }, + { + "ID": 12409, + "SourceStructureID": 11092, + "TargetStructureID": 7861, + "Label": "11092-7861 via Ribbon Synapse from 123430 -> 34543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123430, + "TargetID": 34543, + "Directional": true + } + ] + }, + { + "ID": 12410, + "SourceStructureID": 11092, + "TargetStructureID": 13525, + "Label": "11092-13525 via Ribbon Synapse from 107594 -> 95779, 109974 -> 109975, 123463 -> 85945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107594, + "TargetID": 95779, + "Directional": true + }, + { + "SourceID": 109974, + "TargetID": 109975, + "Directional": true + }, + { + "SourceID": 123463, + "TargetID": 85945, + "Directional": true + } + ] + }, + { + "ID": 12411, + "SourceStructureID": 11092, + "TargetStructureID": 34336, + "Label": "11092-34336 via Ribbon Synapse from 95050 -> 34346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95050, + "TargetID": 34346, + "Directional": true + } + ] + }, + { + "ID": 12412, + "SourceStructureID": 11092, + "TargetStructureID": 34337, + "Label": "11092-34337 via Ribbon Synapse from 95029 -> 95030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 95029, + "TargetID": 95030, + "Directional": true + } + ] + }, + { + "ID": 12413, + "SourceStructureID": 11092, + "TargetStructureID": 64777, + "Label": "11092-64777 via Ribbon Synapse from 128623 -> 64837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128623, + "TargetID": 64837, + "Directional": true + } + ] + }, + { + "ID": 12414, + "SourceStructureID": 11092, + "TargetStructureID": 122431, + "Label": "11092-122431 via Ribbon Synapse from 128587 -> 129528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128587, + "TargetID": 129528, + "Directional": true + } + ] + }, + { + "ID": 12415, + "SourceStructureID": 11092, + "TargetStructureID": 130408, + "Label": "11092-130408 via Ribbon Synapse from 123463 -> 130409", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 123463, + "TargetID": 130409, + "Directional": true + } + ] + }, + { + "ID": 12416, + "SourceStructureID": 11172, + "TargetStructureID": 4850, + "Label": "11172-4850 via Ribbon Synapse from 22551 -> 22552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22551, + "TargetID": 22552, + "Directional": true + } + ] + }, + { + "ID": 12417, + "SourceStructureID": 11172, + "TargetStructureID": 5303, + "Label": "11172-5303 via Ribbon Synapse from 15703 -> 35651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15703, + "TargetID": 35651, + "Directional": true + } + ] + }, + { + "ID": 12418, + "SourceStructureID": 11172, + "TargetStructureID": 8037, + "Label": "11172-8037 via Ribbon Synapse from 15724 -> 15723, 19238 -> 11372, 30557 -> 30556, 30563 -> 30562, 33001 -> 33002", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15724, + "TargetID": 15723, + "Directional": true + }, + { + "SourceID": 19238, + "TargetID": 11372, + "Directional": true + }, + { + "SourceID": 30557, + "TargetID": 30556, + "Directional": true + }, + { + "SourceID": 30563, + "TargetID": 30562, + "Directional": true + }, + { + "SourceID": 33001, + "TargetID": 33002, + "Directional": true + } + ] + }, + { + "ID": 12419, + "SourceStructureID": 11172, + "TargetStructureID": 12897, + "Label": "11172-12897 via Ribbon Synapse from 15709 -> 24719, 22551 -> 66246, 24718 -> 24717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15709, + "TargetID": 24719, + "Directional": true + }, + { + "SourceID": 22551, + "TargetID": 66246, + "Directional": true + }, + { + "SourceID": 24718, + "TargetID": 24717, + "Directional": true + } + ] + }, + { + "ID": 12420, + "SourceStructureID": 11229, + "TargetStructureID": 6133, + "Label": "11229-6133 via Conventional from 28972 -> 37400, 135678 -> 135677", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 28972, + "TargetID": 37400, + "Directional": true + }, + { + "SourceID": 135678, + "TargetID": 135677, + "Directional": true + } + ] + }, + { + "ID": 12421, + "SourceStructureID": 11229, + "TargetStructureID": 6134, + "Label": "11229-6134 via Conventional from 44860 -> 44859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44860, + "TargetID": 44859, + "Directional": true + } + ] + }, + { + "ID": 12422, + "SourceStructureID": 11229, + "TargetStructureID": 28950, + "Label": "11229-28950 via Conventional from 28981 -> 28971", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 28981, + "TargetID": 28971, + "Directional": true + } + ] + }, + { + "ID": 12423, + "SourceStructureID": 11234, + "TargetStructureID": 7050, + "Label": "11234-7050 via Ribbon Synapse from 43505 -> 24893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43505, + "TargetID": 24893, + "Directional": true + } + ] + }, + { + "ID": 12424, + "SourceStructureID": 11238, + "TargetStructureID": 5543, + "Label": "11238-5543 via Conventional from 136107 -> 136313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136107, + "TargetID": 136313, + "Directional": true + } + ] + }, + { + "ID": 12425, + "SourceStructureID": 11238, + "TargetStructureID": 6132, + "Label": "11238-6132 via Conventional from 88390 -> 88507, 88488 -> 88506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88390, + "TargetID": 88507, + "Directional": true + }, + { + "SourceID": 88488, + "TargetID": 88506, + "Directional": true + } + ] + }, + { + "ID": 12426, + "SourceStructureID": 11238, + "TargetStructureID": 10963, + "Label": "11238-10963 via Conventional from 88570 -> 88571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88570, + "TargetID": 88571, + "Directional": true + } + ] + }, + { + "ID": 12427, + "SourceStructureID": 11238, + "TargetStructureID": 136127, + "Label": "11238-136127 via Conventional from 136131 -> 136130", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136131, + "TargetID": 136130, + "Directional": true + } + ] + }, + { + "ID": 12428, + "SourceStructureID": 11238, + "TargetStructureID": 136351, + "Label": "11238-136351 via Conventional from 136111 -> 136353", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136111, + "TargetID": 136353, + "Directional": true + } + ] + }, + { + "ID": 12429, + "SourceStructureID": 11246, + "TargetStructureID": 8038, + "Label": "11246-8038 via Ribbon Synapse from 68932 -> 68931, 68936 -> 68935, 68959 -> 68961, 68966 -> 68965", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68932, + "TargetID": 68931, + "Directional": true + }, + { + "SourceID": 68936, + "TargetID": 68935, + "Directional": true + }, + { + "SourceID": 68959, + "TargetID": 68961, + "Directional": true + }, + { + "SourceID": 68966, + "TargetID": 68965, + "Directional": true + } + ] + }, + { + "ID": 12430, + "SourceStructureID": 11248, + "TargetStructureID": 5345, + "Label": "11248-5345 via Ribbon Synapse from 88881 -> 88880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88881, + "TargetID": 88880, + "Directional": true + } + ] + }, + { + "ID": 12431, + "SourceStructureID": 11248, + "TargetStructureID": 8037, + "Label": "11248-8037 via Ribbon Synapse from 43572 -> 43571, 88903 -> 88901, 88904 -> 88902, 88907 -> 88908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43572, + "TargetID": 43571, + "Directional": true + }, + { + "SourceID": 88903, + "TargetID": 88901, + "Directional": true + }, + { + "SourceID": 88904, + "TargetID": 88902, + "Directional": true + }, + { + "SourceID": 88907, + "TargetID": 88908, + "Directional": true + } + ] + }, + { + "ID": 12432, + "SourceStructureID": 11248, + "TargetStructureID": 88905, + "Label": "11248-88905 via Ribbon Synapse from 88903 -> 88906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88903, + "TargetID": 88906, + "Directional": true + } + ] + }, + { + "ID": 12433, + "SourceStructureID": 11248, + "TargetStructureID": 96788, + "Label": "11248-96788 via Ribbon Synapse from 96857 -> 96858", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96857, + "TargetID": 96858, + "Directional": true + } + ] + }, + { + "ID": 12434, + "SourceStructureID": 11248, + "TargetStructureID": 132773, + "Label": "11248-132773 via Ribbon Synapse from 96857 -> 132776, 132775 -> 132774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96857, + "TargetID": 132776, + "Directional": true + }, + { + "SourceID": 132775, + "TargetID": 132774, + "Directional": true + } + ] + }, + { + "ID": 12435, + "SourceStructureID": 11250, + "TargetStructureID": 488, + "Label": "11250-488 via Ribbon Synapse from 40943 -> 40942", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40943, + "TargetID": 40942, + "Directional": true + } + ] + }, + { + "ID": 12436, + "SourceStructureID": 11250, + "TargetStructureID": 7147, + "Label": "11250-7147 via Ribbon Synapse from 30300 -> 30309, 30314 -> 30315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30300, + "TargetID": 30309, + "Directional": true + }, + { + "SourceID": 30314, + "TargetID": 30315, + "Directional": true + } + ] + }, + { + "ID": 12437, + "SourceStructureID": 11250, + "TargetStructureID": 12897, + "Label": "11250-12897 via Ribbon Synapse from 30286 -> 30288, 30293 -> 24631, 129505 -> 129506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30286, + "TargetID": 30288, + "Directional": true + }, + { + "SourceID": 30293, + "TargetID": 24631, + "Directional": true + }, + { + "SourceID": 129505, + "TargetID": 129506, + "Directional": true + } + ] + }, + { + "ID": 12438, + "SourceStructureID": 11321, + "TargetStructureID": 5464, + "Label": "11321-5464 via Ribbon Synapse from 33011 -> 33010, 33012 -> 33013, 33777 -> 33778, 33779 -> 33780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33011, + "TargetID": 33010, + "Directional": true + }, + { + "SourceID": 33012, + "TargetID": 33013, + "Directional": true + }, + { + "SourceID": 33777, + "TargetID": 33778, + "Directional": true + }, + { + "SourceID": 33779, + "TargetID": 33780, + "Directional": true + } + ] + }, + { + "ID": 12439, + "SourceStructureID": 11401, + "TargetStructureID": 304, + "Label": "11401-304 via Ribbon Synapse from 17925 -> 17631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17925, + "TargetID": 17631, + "Directional": true + } + ] + }, + { + "ID": 12440, + "SourceStructureID": 11401, + "TargetStructureID": 391, + "Label": "11401-391 via Ribbon Synapse from 16833 -> 108171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16833, + "TargetID": 108171, + "Directional": true + } + ] + }, + { + "ID": 12441, + "SourceStructureID": 11401, + "TargetStructureID": 514, + "Label": "11401-514 via Ribbon Synapse from 19051 -> 19058", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19051, + "TargetID": 19058, + "Directional": true + } + ] + }, + { + "ID": 12442, + "SourceStructureID": 11401, + "TargetStructureID": 573, + "Label": "11401-573 via Ribbon Synapse from 11413 -> 11424, 11426 -> 11425", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11413, + "TargetID": 11424, + "Directional": true + }, + { + "SourceID": 11426, + "TargetID": 11425, + "Directional": true + } + ] + }, + { + "ID": 12443, + "SourceStructureID": 11401, + "TargetStructureID": 2610, + "Label": "11401-2610 via Ribbon Synapse from 11409 -> 11410, 11412 -> 11411, 16803 -> 2850, 16828 -> 2825, 16830 -> 2822, 17914 -> 3005, 17922 -> 17921, 17924 -> 17923, 17992 -> 17993, 19027 -> 19026, 19050 -> 19049, 19054 -> 19053", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11409, + "TargetID": 11410, + "Directional": true + }, + { + "SourceID": 11412, + "TargetID": 11411, + "Directional": true + }, + { + "SourceID": 16803, + "TargetID": 2850, + "Directional": true + }, + { + "SourceID": 16828, + "TargetID": 2825, + "Directional": true + }, + { + "SourceID": 16830, + "TargetID": 2822, + "Directional": true + }, + { + "SourceID": 17914, + "TargetID": 3005, + "Directional": true + }, + { + "SourceID": 17922, + "TargetID": 17921, + "Directional": true + }, + { + "SourceID": 17924, + "TargetID": 17923, + "Directional": true + }, + { + "SourceID": 17992, + "TargetID": 17993, + "Directional": true + }, + { + "SourceID": 19027, + "TargetID": 19026, + "Directional": true + }, + { + "SourceID": 19050, + "TargetID": 19049, + "Directional": true + }, + { + "SourceID": 19054, + "TargetID": 19053, + "Directional": true + } + ] + }, + { + "ID": 12444, + "SourceStructureID": 11401, + "TargetStructureID": 5345, + "Label": "11401-5345 via Ribbon Synapse from 16805 -> 16810, 16824 -> 16825, 33782 -> 33784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16805, + "TargetID": 16810, + "Directional": true + }, + { + "SourceID": 16824, + "TargetID": 16825, + "Directional": true + }, + { + "SourceID": 33782, + "TargetID": 33784, + "Directional": true + } + ] + }, + { + "ID": 12445, + "SourceStructureID": 11401, + "TargetStructureID": 25342, + "Label": "11401-25342 via Ribbon Synapse from 25346 -> 25345", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25346, + "TargetID": 25345, + "Directional": true + } + ] + }, + { + "ID": 12446, + "SourceStructureID": 11401, + "TargetStructureID": 66184, + "Label": "11401-66184 via Ribbon Synapse from 11409 -> 92040", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 11409, + "TargetID": 92040, + "Directional": true + } + ] + }, + { + "ID": 12447, + "SourceStructureID": 11408, + "TargetStructureID": 5909, + "Label": "11408-5909 via Conventional from 93185 -> 93159, 93187 -> 93186", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93185, + "TargetID": 93159, + "Directional": true + }, + { + "SourceID": 93187, + "TargetID": 93186, + "Directional": true + } + ] + }, + { + "ID": 12448, + "SourceStructureID": 11485, + "TargetStructureID": 514, + "Label": "11485-514 via Conventional from 22604 -> 3240", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22604, + "TargetID": 3240, + "Directional": true + } + ] + }, + { + "ID": 12449, + "SourceStructureID": 11485, + "TargetStructureID": 5575, + "Label": "11485-5575 via Conventional from 23061 -> 23053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23061, + "TargetID": 23053, + "Directional": true + } + ] + }, + { + "ID": 12450, + "SourceStructureID": 11485, + "TargetStructureID": 24401, + "Label": "11485-24401 via Conventional from 11487 -> 32267, 11488 -> 43627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11487, + "TargetID": 32267, + "Directional": true + }, + { + "SourceID": 11488, + "TargetID": 43627, + "Directional": true + } + ] + }, + { + "ID": 12451, + "SourceStructureID": 11531, + "TargetStructureID": 390, + "Label": "11531-390 via Conventional from 11534 -> 65115", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11534, + "TargetID": 65115, + "Directional": true + } + ] + }, + { + "ID": 12452, + "SourceStructureID": 11531, + "TargetStructureID": 5562, + "Label": "11531-5562 via Conventional from 78350 -> 63361", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78350, + "TargetID": 63361, + "Directional": true + } + ] + }, + { + "ID": 12453, + "SourceStructureID": 11531, + "TargetStructureID": 5623, + "Label": "11531-5623 via Conventional from 63584 -> 63581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63584, + "TargetID": 63581, + "Directional": true + } + ] + }, + { + "ID": 12454, + "SourceStructureID": 11531, + "TargetStructureID": 6589, + "Label": "11531-6589 via Conventional from 11533 -> 6593", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11533, + "TargetID": 6593, + "Directional": true + } + ] + }, + { + "ID": 12455, + "SourceStructureID": 11645, + "TargetStructureID": 514, + "Label": "11645-514 via Conventional from 15374 -> 1158", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15374, + "TargetID": 1158, + "Directional": true + } + ] + }, + { + "ID": 12456, + "SourceStructureID": 11650, + "TargetStructureID": 179, + "Label": "11650-179 via Conventional from 25745 -> 25744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25745, + "TargetID": 25744, + "Directional": true + } + ] + }, + { + "ID": 12457, + "SourceStructureID": 11651, + "TargetStructureID": 5281, + "Label": "11651-5281 via Conventional from 43121 -> 43119", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43121, + "TargetID": 43119, + "Directional": true + } + ] + }, + { + "ID": 12458, + "SourceStructureID": 11657, + "TargetStructureID": 40455, + "Label": "11657-40455 via Conventional from 40460 -> 40459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40460, + "TargetID": 40459, + "Directional": true + } + ] + }, + { + "ID": 12459, + "SourceStructureID": 11683, + "TargetStructureID": 5281, + "Label": "11683-5281 via Conventional from 43118 -> 36776, 43306 -> 43305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43118, + "TargetID": 36776, + "Directional": true + }, + { + "SourceID": 43306, + "TargetID": 43305, + "Directional": true + } + ] + }, + { + "ID": 12460, + "SourceStructureID": 11696, + "TargetStructureID": 142, + "Label": "11696-142 via Conventional from 11698 -> 6657", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11698, + "TargetID": 6657, + "Directional": true + } + ] + }, + { + "ID": 12461, + "SourceStructureID": 11696, + "TargetStructureID": 488, + "Label": "11696-488 via Conventional from 11741 -> 71277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11741, + "TargetID": 71277, + "Directional": true + } + ] + }, + { + "ID": 12462, + "SourceStructureID": 11696, + "TargetStructureID": 159084, + "Label": "11696-159084 via Conventional from 11740 -> 159085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 11740, + "TargetID": 159085, + "Directional": true + } + ] + }, + { + "ID": 12463, + "SourceStructureID": 12072, + "TargetStructureID": 12208, + "Label": "12072-12208 via Conventional from 27336 -> 22361", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27336, + "TargetID": 22361, + "Directional": true + } + ] + }, + { + "ID": 12464, + "SourceStructureID": 12113, + "TargetStructureID": 173, + "Label": "12113-173 via Ribbon Synapse from 12114 -> 12112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 12114, + "TargetID": 12112, + "Directional": true + } + ] + }, + { + "ID": 12465, + "SourceStructureID": 12192, + "TargetStructureID": 591, + "Label": "12192-591 via Conventional from 46625 -> 10081", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46625, + "TargetID": 10081, + "Directional": true + } + ] + }, + { + "ID": 12466, + "SourceStructureID": 12192, + "TargetStructureID": 93125, + "Label": "12192-93125 via Conventional from 46616 -> 93134", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46616, + "TargetID": 93134, + "Directional": true + } + ] + }, + { + "ID": 12467, + "SourceStructureID": 12298, + "TargetStructureID": 596, + "Label": "12298-596 via Conventional from 84669 -> 68608", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84669, + "TargetID": 68608, + "Directional": true + } + ] + }, + { + "ID": 12468, + "SourceStructureID": 12298, + "TargetStructureID": 84667, + "Label": "12298-84667 via Conventional from 84666 -> 84668", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84666, + "TargetID": 84668, + "Directional": true + } + ] + }, + { + "ID": 12469, + "SourceStructureID": 12461, + "TargetStructureID": 591, + "Label": "12461-591 via Conventional from 46624 -> 10082", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46624, + "TargetID": 10082, + "Directional": true + } + ] + }, + { + "ID": 12470, + "SourceStructureID": 12564, + "TargetStructureID": 450, + "Label": "12564-450 via Conventional from 122559 -> 122558", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122559, + "TargetID": 122558, + "Directional": true + } + ] + }, + { + "ID": 12471, + "SourceStructureID": 12696, + "TargetStructureID": 4850, + "Label": "12696-4850 via Conventional from 33890 -> 33889", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33890, + "TargetID": 33889, + "Directional": true + } + ] + }, + { + "ID": 12472, + "SourceStructureID": 12897, + "TargetStructureID": 161, + "Label": "12897-161 via Conventional from 22864 -> 22865, 33770 -> 33769, 35584 -> 35585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22864, + "TargetID": 22865, + "Directional": true + }, + { + "SourceID": 33770, + "TargetID": 33769, + "Directional": true + }, + { + "SourceID": 35584, + "TargetID": 35585, + "Directional": true + } + ] + }, + { + "ID": 12473, + "SourceStructureID": 12897, + "TargetStructureID": 5150, + "Label": "12897-5150 via Conventional from 131334 -> 5244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131334, + "TargetID": 5244, + "Directional": true + } + ] + }, + { + "ID": 12474, + "SourceStructureID": 12897, + "TargetStructureID": 5502, + "Label": "12897-5502 via Conventional from 12907 -> 27233, 12908 -> 27235, 27231 -> 27232, 131333 -> 131341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 12907, + "TargetID": 27233, + "Directional": true + }, + { + "SourceID": 12908, + "TargetID": 27235, + "Directional": true + }, + { + "SourceID": 27231, + "TargetID": 27232, + "Directional": true + }, + { + "SourceID": 131333, + "TargetID": 131341, + "Directional": true + } + ] + }, + { + "ID": 12475, + "SourceStructureID": 12897, + "TargetStructureID": 5511, + "Label": "12897-5511 via Conventional from 65176 -> 65177", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65176, + "TargetID": 65177, + "Directional": true + } + ] + }, + { + "ID": 12476, + "SourceStructureID": 13000, + "TargetStructureID": 11401, + "Label": "13000-11401 via Conventional from 21921 -> 11402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21921, + "TargetID": 11402, + "Directional": true + } + ] + }, + { + "ID": 12477, + "SourceStructureID": 13015, + "TargetStructureID": 308, + "Label": "13015-308 via Conventional from 86572 -> 86570", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86572, + "TargetID": 86570, + "Directional": true + } + ] + }, + { + "ID": 12478, + "SourceStructureID": 13056, + "TargetStructureID": 475, + "Label": "13056-475 via Conventional from 46081 -> 46082", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46081, + "TargetID": 46082, + "Directional": true + } + ] + }, + { + "ID": 12479, + "SourceStructureID": 13130, + "TargetStructureID": 59737, + "Label": "13130-59737 via Conventional from 59739 -> 59740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59739, + "TargetID": 59740, + "Directional": true + } + ] + }, + { + "ID": 12480, + "SourceStructureID": 13134, + "TargetStructureID": 488, + "Label": "13134-488 via Conventional from 122103 -> 71301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122103, + "TargetID": 71301, + "Directional": true + } + ] + }, + { + "ID": 12481, + "SourceStructureID": 13134, + "TargetStructureID": 4850, + "Label": "13134-4850 via Conventional from 19444 -> 19443", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 19444, + "TargetID": 19443, + "Directional": true + } + ] + }, + { + "ID": 12482, + "SourceStructureID": 13150, + "TargetStructureID": 5498, + "Label": "13150-5498 via Conventional from 40405 -> 40404", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40405, + "TargetID": 40404, + "Directional": true + } + ] + }, + { + "ID": 12483, + "SourceStructureID": 13159, + "TargetStructureID": 4850, + "Label": "13159-4850 via Conventional from 20768 -> 14518", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20768, + "TargetID": 14518, + "Directional": true + } + ] + }, + { + "ID": 12484, + "SourceStructureID": 13180, + "TargetStructureID": 6997, + "Label": "13180-6997 via Conventional from 21895 -> 6998", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21895, + "TargetID": 6998, + "Directional": true + } + ] + }, + { + "ID": 12485, + "SourceStructureID": 13215, + "TargetStructureID": 4569, + "Label": "13215-4569 via Conventional from 15125 -> 4737", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15125, + "TargetID": 4737, + "Directional": true + } + ] + }, + { + "ID": 12486, + "SourceStructureID": 13313, + "TargetStructureID": 518, + "Label": "13313-518 via Conventional from 37186 -> 3454, 37189 -> 3482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37186, + "TargetID": 3454, + "Directional": true + }, + { + "SourceID": 37189, + "TargetID": 3482, + "Directional": true + } + ] + }, + { + "ID": 12487, + "SourceStructureID": 13444, + "TargetStructureID": 419, + "Label": "13444-419 via Conventional from 13446 -> 10160", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 13446, + "TargetID": 10160, + "Directional": true + } + ] + }, + { + "ID": 12488, + "SourceStructureID": 13444, + "TargetStructureID": 476, + "Label": "13444-476 via Conventional from 13447 -> 10458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 13447, + "TargetID": 10458, + "Directional": true + } + ] + }, + { + "ID": 12489, + "SourceStructureID": 13444, + "TargetStructureID": 518, + "Label": "13444-518 via Conventional from 13445 -> 3382", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 13445, + "TargetID": 3382, + "Directional": true + } + ] + }, + { + "ID": 12490, + "SourceStructureID": 13448, + "TargetStructureID": 4943, + "Label": "13448-4943 via Conventional from 21344 -> 13441", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21344, + "TargetID": 13441, + "Directional": true + } + ] + }, + { + "ID": 12491, + "SourceStructureID": 13469, + "TargetStructureID": 3679, + "Label": "13469-3679 via Ribbon Synapse from 13472 -> 13468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13472, + "TargetID": 13468, + "Directional": true + } + ] + }, + { + "ID": 12492, + "SourceStructureID": 13485, + "TargetStructureID": 469, + "Label": "13485-469 via Conventional from 30509 -> 4651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30509, + "TargetID": 4651, + "Directional": true + } + ] + }, + { + "ID": 12493, + "SourceStructureID": 13499, + "TargetStructureID": 4567, + "Label": "13499-4567 via Conventional from 40589 -> 21329", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40589, + "TargetID": 21329, + "Directional": true + } + ] + }, + { + "ID": 12494, + "SourceStructureID": 13521, + "TargetStructureID": 4835, + "Label": "13521-4835 via Ribbon Synapse from 13522 -> 13520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 13522, + "TargetID": 13520, + "Directional": true + } + ] + }, + { + "ID": 12495, + "SourceStructureID": 13624, + "TargetStructureID": 11229, + "Label": "13624-11229 via Conventional from 15328 -> 15329, 15330 -> 15331, 15333 -> 15332", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15328, + "TargetID": 15329, + "Directional": true + }, + { + "SourceID": 15330, + "TargetID": 15331, + "Directional": true + }, + { + "SourceID": 15333, + "TargetID": 15332, + "Directional": true + } + ] + }, + { + "ID": 12496, + "SourceStructureID": 14034, + "TargetStructureID": 13858, + "Label": "14034-13858 via Ribbon Synapse from 14040 -> 14024, 18858 -> 14017", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14040, + "TargetID": 14024, + "Directional": true + }, + { + "SourceID": 18858, + "TargetID": 14017, + "Directional": true + } + ] + }, + { + "ID": 12497, + "SourceStructureID": 14291, + "TargetStructureID": 4850, + "Label": "14291-4850 via Conventional from 14299 -> 14290", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14299, + "TargetID": 14290, + "Directional": true + } + ] + }, + { + "ID": 12498, + "SourceStructureID": 14293, + "TargetStructureID": 5497, + "Label": "14293-5497 via Ribbon Synapse from 40210 -> 62550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40210, + "TargetID": 62550, + "Directional": true + } + ] + }, + { + "ID": 12499, + "SourceStructureID": 14293, + "TargetStructureID": 8575, + "Label": "14293-8575 via BC Conventional Synapse from 61554 -> 61553", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61554, + "TargetID": 61553, + "Directional": true + } + ] + }, + { + "ID": 12500, + "SourceStructureID": 14293, + "TargetStructureID": 8575, + "Label": "14293-8575 via Ribbon Synapse from 40215 -> 61553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40215, + "TargetID": 61553, + "Directional": true + } + ] + }, + { + "ID": 12501, + "SourceStructureID": 14293, + "TargetStructureID": 14291, + "Label": "14293-14291 via Ribbon Synapse from 14294 -> 14292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 14294, + "TargetID": 14292, + "Directional": true + } + ] + }, + { + "ID": 12502, + "SourceStructureID": 14293, + "TargetStructureID": 61500, + "Label": "14293-61500 via Ribbon Synapse from 40218 -> 61506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40218, + "TargetID": 61506, + "Directional": true + } + ] + }, + { + "ID": 12503, + "SourceStructureID": 14607, + "TargetStructureID": 5422, + "Label": "14607-5422 via Conventional from 74114 -> 74113", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74114, + "TargetID": 74113, + "Directional": true + } + ] + }, + { + "ID": 12504, + "SourceStructureID": 14615, + "TargetStructureID": 3679, + "Label": "14615-3679 via Ribbon Synapse from 66126 -> 7989, 66127 -> 7988, 66128 -> 7996, 66129 -> 7999, 76225 -> 5207, 132305 -> 132306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66126, + "TargetID": 7989, + "Directional": true + }, + { + "SourceID": 66127, + "TargetID": 7988, + "Directional": true + }, + { + "SourceID": 66128, + "TargetID": 7996, + "Directional": true + }, + { + "SourceID": 66129, + "TargetID": 7999, + "Directional": true + }, + { + "SourceID": 76225, + "TargetID": 5207, + "Directional": true + }, + { + "SourceID": 132305, + "TargetID": 132306, + "Directional": true + } + ] + }, + { + "ID": 12505, + "SourceStructureID": 14615, + "TargetStructureID": 5394, + "Label": "14615-5394 via Ribbon Synapse from 76801 -> 76803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76801, + "TargetID": 76803, + "Directional": true + } + ] + }, + { + "ID": 12506, + "SourceStructureID": 14615, + "TargetStructureID": 5402, + "Label": "14615-5402 via Ribbon Synapse from 76594 -> 76599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76594, + "TargetID": 76599, + "Directional": true + } + ] + }, + { + "ID": 12507, + "SourceStructureID": 14615, + "TargetStructureID": 12897, + "Label": "14615-12897 via Ribbon Synapse from 76213 -> 24747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76213, + "TargetID": 24747, + "Directional": true + } + ] + }, + { + "ID": 12508, + "SourceStructureID": 14615, + "TargetStructureID": 76206, + "Label": "14615-76206 via Ribbon Synapse from 76205 -> 76209", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76205, + "TargetID": 76209, + "Directional": true + } + ] + }, + { + "ID": 12509, + "SourceStructureID": 14615, + "TargetStructureID": 76207, + "Label": "14615-76207 via Ribbon Synapse from 76205 -> 76208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76205, + "TargetID": 76208, + "Directional": true + } + ] + }, + { + "ID": 12510, + "SourceStructureID": 14615, + "TargetStructureID": 76214, + "Label": "14615-76214 via Ribbon Synapse from 76213 -> 76215, 76225 -> 76226", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76213, + "TargetID": 76215, + "Directional": true + }, + { + "SourceID": 76225, + "TargetID": 76226, + "Directional": true + } + ] + }, + { + "ID": 12511, + "SourceStructureID": 14615, + "TargetStructureID": 76595, + "Label": "14615-76595 via Ribbon Synapse from 76594 -> 76597", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76594, + "TargetID": 76597, + "Directional": true + } + ] + }, + { + "ID": 12512, + "SourceStructureID": 14615, + "TargetStructureID": 76829, + "Label": "14615-76829 via Ribbon Synapse from 76841 -> 76842", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76841, + "TargetID": 76842, + "Directional": true + } + ] + }, + { + "ID": 12513, + "SourceStructureID": 14615, + "TargetStructureID": 76832, + "Label": "14615-76832 via Ribbon Synapse from 76845 -> 76848", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76845, + "TargetID": 76848, + "Directional": true + } + ] + }, + { + "ID": 12514, + "SourceStructureID": 14615, + "TargetStructureID": 76849, + "Label": "14615-76849 via Ribbon Synapse from 76845 -> 76850", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76845, + "TargetID": 76850, + "Directional": true + } + ] + }, + { + "ID": 12515, + "SourceStructureID": 14615, + "TargetStructureID": 76868, + "Label": "14615-76868 via Ribbon Synapse from 25317 -> 76869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25317, + "TargetID": 76869, + "Directional": true + } + ] + }, + { + "ID": 12516, + "SourceStructureID": 14615, + "TargetStructureID": 76901, + "Label": "14615-76901 via Ribbon Synapse from 76223 -> 76902, 76224 -> 76903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76223, + "TargetID": 76902, + "Directional": true + }, + { + "SourceID": 76224, + "TargetID": 76903, + "Directional": true + } + ] + }, + { + "ID": 12517, + "SourceStructureID": 14615, + "TargetStructureID": 87562, + "Label": "14615-87562 via Ribbon Synapse from 87564 -> 87563", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87564, + "TargetID": 87563, + "Directional": true + } + ] + }, + { + "ID": 12518, + "SourceStructureID": 14725, + "TargetStructureID": 171, + "Label": "14725-171 via Conventional from 14726 -> 14734, 14728 -> 87728, 14729 -> 87729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14726, + "TargetID": 14734, + "Directional": true + }, + { + "SourceID": 14728, + "TargetID": 87728, + "Directional": true + }, + { + "SourceID": 14729, + "TargetID": 87729, + "Directional": true + } + ] + }, + { + "ID": 12519, + "SourceStructureID": 14894, + "TargetStructureID": 606, + "Label": "14894-606 via Conventional from 14910 -> 52335", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 14910, + "TargetID": 52335, + "Directional": true + } + ] + }, + { + "ID": 12520, + "SourceStructureID": 15100, + "TargetStructureID": 304, + "Label": "15100-304 via Ribbon Synapse from 17117 -> 17628, 17206 -> 17207, 17626 -> 17625, 17955 -> 17954, 18240 -> 18239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17117, + "TargetID": 17628, + "Directional": true + }, + { + "SourceID": 17206, + "TargetID": 17207, + "Directional": true + }, + { + "SourceID": 17626, + "TargetID": 17625, + "Directional": true + }, + { + "SourceID": 17955, + "TargetID": 17954, + "Directional": true + }, + { + "SourceID": 18240, + "TargetID": 18239, + "Directional": true + } + ] + }, + { + "ID": 12521, + "SourceStructureID": 15100, + "TargetStructureID": 514, + "Label": "15100-514 via Ribbon Synapse from 15101 -> 15099, 17214 -> 17215, 17219 -> 17220, 18287 -> 13786, 18289 -> 18288, 19059 -> 19063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15101, + "TargetID": 15099, + "Directional": true + }, + { + "SourceID": 17214, + "TargetID": 17215, + "Directional": true + }, + { + "SourceID": 17219, + "TargetID": 17220, + "Directional": true + }, + { + "SourceID": 18287, + "TargetID": 13786, + "Directional": true + }, + { + "SourceID": 18289, + "TargetID": 18288, + "Directional": true + }, + { + "SourceID": 19059, + "TargetID": 19063, + "Directional": true + } + ] + }, + { + "ID": 12522, + "SourceStructureID": 15100, + "TargetStructureID": 2610, + "Label": "15100-2610 via Ribbon Synapse from 16398 -> 16397, 17116 -> 18223, 17118 -> 18224, 17172 -> 17504, 17179 -> 17178, 17181 -> 17180, 17227 -> 17224, 17622 -> 2937, 17963 -> 17964, 17966 -> 17965, 17997 -> 15051, 18227 -> 18226, 18230 -> 18231, 18237 -> 18236, 33787 -> 9407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16398, + "TargetID": 16397, + "Directional": true + }, + { + "SourceID": 17116, + "TargetID": 18223, + "Directional": true + }, + { + "SourceID": 17118, + "TargetID": 18224, + "Directional": true + }, + { + "SourceID": 17172, + "TargetID": 17504, + "Directional": true + }, + { + "SourceID": 17179, + "TargetID": 17178, + "Directional": true + }, + { + "SourceID": 17181, + "TargetID": 17180, + "Directional": true + }, + { + "SourceID": 17227, + "TargetID": 17224, + "Directional": true + }, + { + "SourceID": 17622, + "TargetID": 2937, + "Directional": true + }, + { + "SourceID": 17963, + "TargetID": 17964, + "Directional": true + }, + { + "SourceID": 17966, + "TargetID": 17965, + "Directional": true + }, + { + "SourceID": 17997, + "TargetID": 15051, + "Directional": true + }, + { + "SourceID": 18227, + "TargetID": 18226, + "Directional": true + }, + { + "SourceID": 18230, + "TargetID": 18231, + "Directional": true + }, + { + "SourceID": 18237, + "TargetID": 18236, + "Directional": true + }, + { + "SourceID": 33787, + "TargetID": 9407, + "Directional": true + } + ] + }, + { + "ID": 12523, + "SourceStructureID": 15100, + "TargetStructureID": 5303, + "Label": "15100-5303 via Ribbon Synapse from 18289 -> 102936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18289, + "TargetID": 102936, + "Directional": true + } + ] + }, + { + "ID": 12524, + "SourceStructureID": 15130, + "TargetStructureID": 168, + "Label": "15130-168 via Conventional from 15134 -> 4124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15134, + "TargetID": 4124, + "Directional": true + } + ] + }, + { + "ID": 12525, + "SourceStructureID": 15377, + "TargetStructureID": 4850, + "Label": "15377-4850 via Conventional from 15379 -> 15387", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 15379, + "TargetID": 15387, + "Directional": true + } + ] + }, + { + "ID": 12526, + "SourceStructureID": 15377, + "TargetStructureID": 10945, + "Label": "15377-10945 via Conventional from 19275 -> 19276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 19275, + "TargetID": 19276, + "Directional": true + } + ] + }, + { + "ID": 12527, + "SourceStructureID": 15475, + "TargetStructureID": 5281, + "Label": "15475-5281 via Conventional from 43137 -> 43136", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43137, + "TargetID": 43136, + "Directional": true + } + ] + }, + { + "ID": 12528, + "SourceStructureID": 15614, + "TargetStructureID": 4876, + "Label": "15614-4876 via Conventional from 42512 -> 42511", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42512, + "TargetID": 42511, + "Directional": true + } + ] + }, + { + "ID": 12529, + "SourceStructureID": 15653, + "TargetStructureID": 9260, + "Label": "15653-9260 via Conventional from 129703 -> 129702", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129703, + "TargetID": 129702, + "Directional": true + } + ] + }, + { + "ID": 12530, + "SourceStructureID": 15942, + "TargetStructureID": 304, + "Label": "15942-304 via Ribbon Synapse from 17960 -> 17686, 19107 -> 17685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17960, + "TargetID": 17686, + "Directional": true + }, + { + "SourceID": 19107, + "TargetID": 17685, + "Directional": true + } + ] + }, + { + "ID": 12531, + "SourceStructureID": 15942, + "TargetStructureID": 410, + "Label": "15942-410 via Ribbon Synapse from 15116 -> 15114, 16505 -> 15939, 16513 -> 16511, 16801 -> 16800, 17265 -> 17266, 17498 -> 17497, 18525 -> 18526, 18527 -> 18528, 18531 -> 18530, 19121 -> 22672, 19121 -> 23117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15116, + "TargetID": 15114, + "Directional": true + }, + { + "SourceID": 16505, + "TargetID": 15939, + "Directional": true + }, + { + "SourceID": 16513, + "TargetID": 16511, + "Directional": true + }, + { + "SourceID": 16801, + "TargetID": 16800, + "Directional": true + }, + { + "SourceID": 17265, + "TargetID": 17266, + "Directional": true + }, + { + "SourceID": 17498, + "TargetID": 17497, + "Directional": true + }, + { + "SourceID": 18525, + "TargetID": 18526, + "Directional": true + }, + { + "SourceID": 18527, + "TargetID": 18528, + "Directional": true + }, + { + "SourceID": 18531, + "TargetID": 18530, + "Directional": true + }, + { + "SourceID": 19121, + "TargetID": 22672, + "Directional": true + }, + { + "SourceID": 19121, + "TargetID": 23117, + "Directional": true + } + ] + }, + { + "ID": 12532, + "SourceStructureID": 15942, + "TargetStructureID": 476, + "Label": "15942-476 via Ribbon Synapse from 16507 -> 16508, 16507 -> 16774, 17374 -> 17375, 17377 -> 17376, 17378 -> 16503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16507, + "TargetID": 16508, + "Directional": true + }, + { + "SourceID": 16507, + "TargetID": 16774, + "Directional": true + }, + { + "SourceID": 17374, + "TargetID": 17375, + "Directional": true + }, + { + "SourceID": 17377, + "TargetID": 17376, + "Directional": true + }, + { + "SourceID": 17378, + "TargetID": 16503, + "Directional": true + } + ] + }, + { + "ID": 12533, + "SourceStructureID": 15942, + "TargetStructureID": 514, + "Label": "15942-514 via Ribbon Synapse from 16401 -> 16400", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16401, + "TargetID": 16400, + "Directional": true + } + ] + }, + { + "ID": 12534, + "SourceStructureID": 15942, + "TargetStructureID": 591, + "Label": "15942-591 via Ribbon Synapse from 15962 -> 10290, 15963 -> 15964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15962, + "TargetID": 10290, + "Directional": true + }, + { + "SourceID": 15963, + "TargetID": 15964, + "Directional": true + } + ] + }, + { + "ID": 12535, + "SourceStructureID": 15942, + "TargetStructureID": 2610, + "Label": "15942-2610 via Ribbon Synapse from 15962 -> 15965, 15966 -> 15941, 16765 -> 16399, 16788 -> 16779, 17268 -> 17269, 17959 -> 2952, 18414 -> 2956, 66158 -> 66160", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 15962, + "TargetID": 15965, + "Directional": true + }, + { + "SourceID": 15966, + "TargetID": 15941, + "Directional": true + }, + { + "SourceID": 16765, + "TargetID": 16399, + "Directional": true + }, + { + "SourceID": 16788, + "TargetID": 16779, + "Directional": true + }, + { + "SourceID": 17268, + "TargetID": 17269, + "Directional": true + }, + { + "SourceID": 17959, + "TargetID": 2952, + "Directional": true + }, + { + "SourceID": 18414, + "TargetID": 2956, + "Directional": true + }, + { + "SourceID": 66158, + "TargetID": 66160, + "Directional": true + } + ] + }, + { + "ID": 12536, + "SourceStructureID": 15942, + "TargetStructureID": 8990, + "Label": "15942-8990 via Ribbon Synapse from 18414 -> 95928, 19106 -> 95931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18414, + "TargetID": 95928, + "Directional": true + }, + { + "SourceID": 19106, + "TargetID": 95931, + "Directional": true + } + ] + }, + { + "ID": 12537, + "SourceStructureID": 15976, + "TargetStructureID": 5442, + "Label": "15976-5442 via Ribbon Synapse from 55131 -> 55130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55131, + "TargetID": 55130, + "Directional": true + } + ] + }, + { + "ID": 12538, + "SourceStructureID": 15976, + "TargetStructureID": 57487, + "Label": "15976-57487 via Ribbon Synapse from 57425 -> 57489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57425, + "TargetID": 57489, + "Directional": true + } + ] + }, + { + "ID": 12539, + "SourceStructureID": 15976, + "TargetStructureID": 93168, + "Label": "15976-93168 via BC Conventional Synapse from 93164 -> 93169", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93164, + "TargetID": 93169, + "Directional": true + } + ] + }, + { + "ID": 12540, + "SourceStructureID": 15976, + "TargetStructureID": 93281, + "Label": "15976-93281 via Ribbon Synapse from 57435 -> 93282", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 57435, + "TargetID": 93282, + "Directional": true + } + ] + }, + { + "ID": 12541, + "SourceStructureID": 15977, + "TargetStructureID": 4890, + "Label": "15977-4890 via Ribbon Synapse from 33953 -> 7916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33953, + "TargetID": 7916, + "Directional": true + } + ] + }, + { + "ID": 12542, + "SourceStructureID": 15977, + "TargetStructureID": 5442, + "Label": "15977-5442 via Ribbon Synapse from 73553 -> 73555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73553, + "TargetID": 73555, + "Directional": true + } + ] + }, + { + "ID": 12543, + "SourceStructureID": 15977, + "TargetStructureID": 8579, + "Label": "15977-8579 via Ribbon Synapse from 62689 -> 62688, 62695 -> 62694, 62697 -> 62696, 62940 -> 62939, 62944 -> 62943", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62689, + "TargetID": 62688, + "Directional": true + }, + { + "SourceID": 62695, + "TargetID": 62694, + "Directional": true + }, + { + "SourceID": 62697, + "TargetID": 62696, + "Directional": true + }, + { + "SourceID": 62940, + "TargetID": 62939, + "Directional": true + }, + { + "SourceID": 62944, + "TargetID": 62943, + "Directional": true + } + ] + }, + { + "ID": 12544, + "SourceStructureID": 15977, + "TargetStructureID": 8588, + "Label": "15977-8588 via BC Conventional Synapse from 118439 -> 118438", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118439, + "TargetID": 118438, + "Directional": true + } + ] + }, + { + "ID": 12545, + "SourceStructureID": 15977, + "TargetStructureID": 29198, + "Label": "15977-29198 via BC Conventional Synapse from 117188 -> 117187", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117188, + "TargetID": 117187, + "Directional": true + } + ] + }, + { + "ID": 12546, + "SourceStructureID": 15977, + "TargetStructureID": 29198, + "Label": "15977-29198 via Ribbon Synapse from 33946 -> 29230, 33973 -> 33974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33946, + "TargetID": 29230, + "Directional": true + }, + { + "SourceID": 33973, + "TargetID": 33974, + "Directional": true + } + ] + }, + { + "ID": 12547, + "SourceStructureID": 15977, + "TargetStructureID": 35406, + "Label": "15977-35406 via Ribbon Synapse from 38301 -> 38297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38301, + "TargetID": 38297, + "Directional": true + } + ] + }, + { + "ID": 12548, + "SourceStructureID": 15977, + "TargetStructureID": 60590, + "Label": "15977-60590 via Ribbon Synapse from 60592 -> 60591", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60592, + "TargetID": 60591, + "Directional": true + } + ] + }, + { + "ID": 12549, + "SourceStructureID": 15977, + "TargetStructureID": 123573, + "Label": "15977-123573 via Ribbon Synapse from 56333 -> 123585, 56339 -> 123588", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56333, + "TargetID": 123585, + "Directional": true + }, + { + "SourceID": 56339, + "TargetID": 123588, + "Directional": true + } + ] + }, + { + "ID": 12550, + "SourceStructureID": 15979, + "TargetStructureID": 284, + "Label": "15979-284 via Ribbon Synapse from 29490 -> 29489, 29492 -> 29491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29490, + "TargetID": 29489, + "Directional": true + }, + { + "SourceID": 29492, + "TargetID": 29491, + "Directional": true + } + ] + }, + { + "ID": 12551, + "SourceStructureID": 15979, + "TargetStructureID": 591, + "Label": "15979-591 via Ribbon Synapse from 33788 -> 36451, 36450 -> 36449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33788, + "TargetID": 36451, + "Directional": true + }, + { + "SourceID": 36450, + "TargetID": 36449, + "Directional": true + } + ] + }, + { + "ID": 12552, + "SourceStructureID": 15979, + "TargetStructureID": 6153, + "Label": "15979-6153 via Ribbon Synapse from 29475 -> 29474, 29476 -> 29477, 33788 -> 33789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29475, + "TargetID": 29474, + "Directional": true + }, + { + "SourceID": 29476, + "TargetID": 29477, + "Directional": true + }, + { + "SourceID": 33788, + "TargetID": 33789, + "Directional": true + } + ] + }, + { + "ID": 12553, + "SourceStructureID": 16002, + "TargetStructureID": 170, + "Label": "16002-170 via Conventional from 16009 -> 90435, 16011 -> 16012", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16009, + "TargetID": 90435, + "Directional": true + }, + { + "SourceID": 16011, + "TargetID": 16012, + "Directional": true + } + ] + }, + { + "ID": 12554, + "SourceStructureID": 16002, + "TargetStructureID": 4569, + "Label": "16002-4569 via Conventional from 16006 -> 16007, 66654 -> 30841", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 16006, + "TargetID": 16007, + "Directional": true + }, + { + "SourceID": 66654, + "TargetID": 30841, + "Directional": true + } + ] + }, + { + "ID": 12555, + "SourceStructureID": 16002, + "TargetStructureID": 21299, + "Label": "16002-21299 via Conventional from 46340 -> 46339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46340, + "TargetID": 46339, + "Directional": true + } + ] + }, + { + "ID": 12556, + "SourceStructureID": 16002, + "TargetStructureID": 66656, + "Label": "16002-66656 via Conventional from 66655 -> 66657", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66655, + "TargetID": 66657, + "Directional": true + } + ] + }, + { + "ID": 12557, + "SourceStructureID": 16026, + "TargetStructureID": 5117, + "Label": "16026-5117 via Ribbon Synapse from 24094 -> 65498, 24095 -> 65498, 25542 -> 66349, 25546 -> 66348, 25556 -> 65502, 68158 -> 68159, 91047 -> 134610", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24094, + "TargetID": 65498, + "Directional": true + }, + { + "SourceID": 24095, + "TargetID": 65498, + "Directional": true + }, + { + "SourceID": 25542, + "TargetID": 66349, + "Directional": true + }, + { + "SourceID": 25546, + "TargetID": 66348, + "Directional": true + }, + { + "SourceID": 25556, + "TargetID": 65502, + "Directional": true + }, + { + "SourceID": 68158, + "TargetID": 68159, + "Directional": true + }, + { + "SourceID": 91047, + "TargetID": 134610, + "Directional": true + } + ] + }, + { + "ID": 12558, + "SourceStructureID": 16026, + "TargetStructureID": 5282, + "Label": "16026-5282 via Ribbon Synapse from 22336 -> 87547, 134535 -> 87547", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22336, + "TargetID": 87547, + "Directional": true + }, + { + "SourceID": 134535, + "TargetID": 87547, + "Directional": true + } + ] + }, + { + "ID": 12559, + "SourceStructureID": 16026, + "TargetStructureID": 5374, + "Label": "16026-5374 via Ribbon Synapse from 25517 -> 69002", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25517, + "TargetID": 69002, + "Directional": true + } + ] + }, + { + "ID": 12560, + "SourceStructureID": 16026, + "TargetStructureID": 5485, + "Label": "16026-5485 via Ribbon Synapse from 25284 -> 134508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25284, + "TargetID": 134508, + "Directional": true + } + ] + }, + { + "ID": 12561, + "SourceStructureID": 16026, + "TargetStructureID": 8033, + "Label": "16026-8033 via Ribbon Synapse from 25290 -> 134483, 25291 -> 134483, 25673 -> 134747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25290, + "TargetID": 134483, + "Directional": true + }, + { + "SourceID": 25291, + "TargetID": 134483, + "Directional": true + }, + { + "SourceID": 25673, + "TargetID": 134747, + "Directional": true + } + ] + }, + { + "ID": 12562, + "SourceStructureID": 16026, + "TargetStructureID": 8579, + "Label": "16026-8579 via Ribbon Synapse from 24087 -> 134547, 25972 -> 62866, 91203 -> 19799, 124822 -> 134548, 134326 -> 19798, 134555 -> 62864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24087, + "TargetID": 134547, + "Directional": true + }, + { + "SourceID": 25972, + "TargetID": 62866, + "Directional": true + }, + { + "SourceID": 91203, + "TargetID": 19799, + "Directional": true + }, + { + "SourceID": 124822, + "TargetID": 134548, + "Directional": true + }, + { + "SourceID": 134326, + "TargetID": 19798, + "Directional": true + }, + { + "SourceID": 134555, + "TargetID": 62864, + "Directional": true + } + ] + }, + { + "ID": 12563, + "SourceStructureID": 16026, + "TargetStructureID": 8720, + "Label": "16026-8720 via Ribbon Synapse from 63148 -> 63146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63148, + "TargetID": 63146, + "Directional": true + } + ] + }, + { + "ID": 12564, + "SourceStructureID": 16026, + "TargetStructureID": 12208, + "Label": "16026-12208 via Ribbon Synapse from 38654 -> 22369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38654, + "TargetID": 22369, + "Directional": true + } + ] + }, + { + "ID": 12565, + "SourceStructureID": 16026, + "TargetStructureID": 12897, + "Label": "16026-12897 via Ribbon Synapse from 24596 -> 25703, 25486 -> 134388, 25487 -> 134388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24596, + "TargetID": 25703, + "Directional": true + }, + { + "SourceID": 25486, + "TargetID": 134388, + "Directional": true + }, + { + "SourceID": 25487, + "TargetID": 134388, + "Directional": true + } + ] + }, + { + "ID": 12566, + "SourceStructureID": 16026, + "TargetStructureID": 20537, + "Label": "16026-20537 via Ribbon Synapse from 22326 -> 24133, 25757 -> 24133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22326, + "TargetID": 24133, + "Directional": true + }, + { + "SourceID": 25757, + "TargetID": 24133, + "Directional": true + } + ] + }, + { + "ID": 12567, + "SourceStructureID": 16026, + "TargetStructureID": 29277, + "Label": "16026-29277 via Ribbon Synapse from 134594 -> 123165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134594, + "TargetID": 123165, + "Directional": true + } + ] + }, + { + "ID": 12568, + "SourceStructureID": 16026, + "TargetStructureID": 31024, + "Label": "16026-31024 via BC Conventional Synapse from 134607 -> 124827", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134607, + "TargetID": 124827, + "Directional": true + } + ] + }, + { + "ID": 12569, + "SourceStructureID": 16026, + "TargetStructureID": 31024, + "Label": "16026-31024 via Ribbon Synapse from 25558 -> 31025, 25714 -> 31031, 134590 -> 134589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25558, + "TargetID": 31025, + "Directional": true + }, + { + "SourceID": 25714, + "TargetID": 31031, + "Directional": true + }, + { + "SourceID": 134590, + "TargetID": 134589, + "Directional": true + } + ] + }, + { + "ID": 12570, + "SourceStructureID": 16026, + "TargetStructureID": 31161, + "Label": "16026-31161 via Ribbon Synapse from 67939 -> 134772, 67940 -> 134767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67939, + "TargetID": 134772, + "Directional": true + }, + { + "SourceID": 67940, + "TargetID": 134767, + "Directional": true + } + ] + }, + { + "ID": 12571, + "SourceStructureID": 16026, + "TargetStructureID": 40947, + "Label": "16026-40947 via Ribbon Synapse from 25563 -> 40950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25563, + "TargetID": 40950, + "Directional": true + } + ] + }, + { + "ID": 12572, + "SourceStructureID": 16026, + "TargetStructureID": 54078, + "Label": "16026-54078 via BC Conventional Synapse from 124779 -> 54112", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124779, + "TargetID": 54112, + "Directional": true + } + ] + }, + { + "ID": 12573, + "SourceStructureID": 16026, + "TargetStructureID": 54078, + "Label": "16026-54078 via Ribbon Synapse from 25272 -> 134511, 67849 -> 67848, 134510 -> 134511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25272, + "TargetID": 134511, + "Directional": true + }, + { + "SourceID": 67849, + "TargetID": 67848, + "Directional": true + }, + { + "SourceID": 134510, + "TargetID": 134511, + "Directional": true + } + ] + }, + { + "ID": 12574, + "SourceStructureID": 16026, + "TargetStructureID": 61836, + "Label": "16026-61836 via Ribbon Synapse from 25656 -> 68115, 67939 -> 68114", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25656, + "TargetID": 68115, + "Directional": true + }, + { + "SourceID": 67939, + "TargetID": 68114, + "Directional": true + } + ] + }, + { + "ID": 12575, + "SourceStructureID": 16026, + "TargetStructureID": 61864, + "Label": "16026-61864 via Ribbon Synapse from 66050 -> 66068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66050, + "TargetID": 66068, + "Directional": true + } + ] + }, + { + "ID": 12576, + "SourceStructureID": 16026, + "TargetStructureID": 61864, + "Label": "16026-61864 via Unknown from 134704 -> 66486", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 134704, + "TargetID": 66486, + "Directional": true + } + ] + }, + { + "ID": 12577, + "SourceStructureID": 16026, + "TargetStructureID": 65324, + "Label": "16026-65324 via Ribbon Synapse from 25595 -> 134830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25595, + "TargetID": 134830, + "Directional": true + } + ] + }, + { + "ID": 12578, + "SourceStructureID": 16026, + "TargetStructureID": 65536, + "Label": "16026-65536 via BC Conventional Synapse from 67086 -> 67085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67086, + "TargetID": 67085, + "Directional": true + } + ] + }, + { + "ID": 12579, + "SourceStructureID": 16026, + "TargetStructureID": 65536, + "Label": "16026-65536 via Ribbon Synapse from 24087 -> 67076, 134555 -> 134554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24087, + "TargetID": 67076, + "Directional": true + }, + { + "SourceID": 134555, + "TargetID": 134554, + "Directional": true + } + ] + }, + { + "ID": 12580, + "SourceStructureID": 16026, + "TargetStructureID": 65538, + "Label": "16026-65538 via Ribbon Synapse from 25733 -> 65544", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25733, + "TargetID": 65544, + "Directional": true + } + ] + }, + { + "ID": 12581, + "SourceStructureID": 16026, + "TargetStructureID": 65864, + "Label": "16026-65864 via BC Conventional Synapse from 65874 -> 65875", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65874, + "TargetID": 65875, + "Directional": true + } + ] + }, + { + "ID": 12582, + "SourceStructureID": 16026, + "TargetStructureID": 65864, + "Label": "16026-65864 via Ribbon Synapse from 25730 -> 65871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25730, + "TargetID": 65871, + "Directional": true + } + ] + }, + { + "ID": 12583, + "SourceStructureID": 16026, + "TargetStructureID": 66031, + "Label": "16026-66031 via Ribbon Synapse from 66050 -> 66049", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66050, + "TargetID": 66049, + "Directional": true + } + ] + }, + { + "ID": 12584, + "SourceStructureID": 16026, + "TargetStructureID": 66073, + "Label": "16026-66073 via Ribbon Synapse from 25667 -> 66083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25667, + "TargetID": 66083, + "Directional": true + } + ] + }, + { + "ID": 12585, + "SourceStructureID": 16026, + "TargetStructureID": 66111, + "Label": "16026-66111 via Ribbon Synapse from 25601 -> 134736, 25611 -> 134741, 25662 -> 68589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25601, + "TargetID": 134736, + "Directional": true + }, + { + "SourceID": 25611, + "TargetID": 134741, + "Directional": true + }, + { + "SourceID": 25662, + "TargetID": 68589, + "Directional": true + } + ] + }, + { + "ID": 12586, + "SourceStructureID": 16026, + "TargetStructureID": 66114, + "Label": "16026-66114 via Ribbon Synapse from 25605 -> 134800, 25606 -> 66118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25605, + "TargetID": 134800, + "Directional": true + }, + { + "SourceID": 25606, + "TargetID": 66118, + "Directional": true + } + ] + }, + { + "ID": 12587, + "SourceStructureID": 16026, + "TargetStructureID": 66795, + "Label": "16026-66795 via Ribbon Synapse from 91047 -> 134611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91047, + "TargetID": 134611, + "Directional": true + } + ] + }, + { + "ID": 12588, + "SourceStructureID": 16026, + "TargetStructureID": 66828, + "Label": "16026-66828 via Ribbon Synapse from 25599 -> 82736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25599, + "TargetID": 82736, + "Directional": true + } + ] + }, + { + "ID": 12589, + "SourceStructureID": 16026, + "TargetStructureID": 66888, + "Label": "16026-66888 via Ribbon Synapse from 25645 -> 66895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25645, + "TargetID": 66895, + "Directional": true + } + ] + }, + { + "ID": 12590, + "SourceStructureID": 16026, + "TargetStructureID": 66966, + "Label": "16026-66966 via BC Conventional Synapse from 134575 -> 134574", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134575, + "TargetID": 134574, + "Directional": true + } + ] + }, + { + "ID": 12591, + "SourceStructureID": 16026, + "TargetStructureID": 67045, + "Label": "16026-67045 via Ribbon Synapse from 25484 -> 134389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25484, + "TargetID": 134389, + "Directional": true + } + ] + }, + { + "ID": 12592, + "SourceStructureID": 16026, + "TargetStructureID": 67354, + "Label": "16026-67354 via Ribbon Synapse from 25608 -> 92793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25608, + "TargetID": 92793, + "Directional": true + } + ] + }, + { + "ID": 12593, + "SourceStructureID": 16026, + "TargetStructureID": 67361, + "Label": "16026-67361 via Ribbon Synapse from 25595 -> 134831, 25597 -> 130544, 25610 -> 130543, 125026 -> 134845, 125030 -> 134864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25595, + "TargetID": 134831, + "Directional": true + }, + { + "SourceID": 25597, + "TargetID": 130544, + "Directional": true + }, + { + "SourceID": 25610, + "TargetID": 130543, + "Directional": true + }, + { + "SourceID": 125026, + "TargetID": 134845, + "Directional": true + }, + { + "SourceID": 125030, + "TargetID": 134864, + "Directional": true + } + ] + }, + { + "ID": 12594, + "SourceStructureID": 16026, + "TargetStructureID": 67595, + "Label": "16026-67595 via Ribbon Synapse from 24593 -> 134740, 25496 -> 67648, 25672 -> 67630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24593, + "TargetID": 134740, + "Directional": true + }, + { + "SourceID": 25496, + "TargetID": 67648, + "Directional": true + }, + { + "SourceID": 25672, + "TargetID": 67630, + "Directional": true + } + ] + }, + { + "ID": 12595, + "SourceStructureID": 16026, + "TargetStructureID": 67793, + "Label": "16026-67793 via Ribbon Synapse from 67940 -> 134763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67940, + "TargetID": 134763, + "Directional": true + } + ] + }, + { + "ID": 12596, + "SourceStructureID": 16026, + "TargetStructureID": 67818, + "Label": "16026-67818 via BC Conventional Synapse from 124851 -> 124850", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124851, + "TargetID": 124850, + "Directional": true + } + ] + }, + { + "ID": 12597, + "SourceStructureID": 16026, + "TargetStructureID": 67818, + "Label": "16026-67818 via Ribbon Synapse from 67917 -> 67912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67917, + "TargetID": 67912, + "Directional": true + } + ] + }, + { + "ID": 12598, + "SourceStructureID": 16026, + "TargetStructureID": 67851, + "Label": "16026-67851 via Adherens from 67858 -> 67857", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 67858, + "TargetID": 67857, + "Directional": true + } + ] + }, + { + "ID": 12599, + "SourceStructureID": 16026, + "TargetStructureID": 67933, + "Label": "16026-67933 via Ribbon Synapse from 67917 -> 67934, 67927 -> 134790, 67931 -> 67934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67917, + "TargetID": 67934, + "Directional": true + }, + { + "SourceID": 67927, + "TargetID": 134790, + "Directional": true + }, + { + "SourceID": 67931, + "TargetID": 67934, + "Directional": true + } + ] + }, + { + "ID": 12600, + "SourceStructureID": 16026, + "TargetStructureID": 67941, + "Label": "16026-67941 via Ribbon Synapse from 67940 -> 134769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 67940, + "TargetID": 134769, + "Directional": true + } + ] + }, + { + "ID": 12601, + "SourceStructureID": 16026, + "TargetStructureID": 68153, + "Label": "16026-68153 via Ribbon Synapse from 25487 -> 134387, 25516 -> 68185, 68157 -> 68155", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25487, + "TargetID": 134387, + "Directional": true + }, + { + "SourceID": 25516, + "TargetID": 68185, + "Directional": true + }, + { + "SourceID": 68157, + "TargetID": 68155, + "Directional": true + } + ] + }, + { + "ID": 12602, + "SourceStructureID": 16026, + "TargetStructureID": 68531, + "Label": "16026-68531 via Ribbon Synapse from 25667 -> 134628", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25667, + "TargetID": 134628, + "Directional": true + } + ] + }, + { + "ID": 12603, + "SourceStructureID": 16026, + "TargetStructureID": 68548, + "Label": "16026-68548 via Ribbon Synapse from 25289 -> 73481, 25477 -> 73483, 67925 -> 75356, 67926 -> 75356", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25289, + "TargetID": 73481, + "Directional": true + }, + { + "SourceID": 25477, + "TargetID": 73483, + "Directional": true + }, + { + "SourceID": 67925, + "TargetID": 75356, + "Directional": true + }, + { + "SourceID": 67926, + "TargetID": 75356, + "Directional": true + } + ] + }, + { + "ID": 12604, + "SourceStructureID": 16026, + "TargetStructureID": 80412, + "Label": "16026-80412 via BC Conventional Synapse from 134870 -> 134869", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134870, + "TargetID": 134869, + "Directional": true + } + ] + }, + { + "ID": 12605, + "SourceStructureID": 16026, + "TargetStructureID": 82305, + "Label": "16026-82305 via Ribbon Synapse from 25548 -> 82333, 25662 -> 82327", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25548, + "TargetID": 82333, + "Directional": true + }, + { + "SourceID": 25662, + "TargetID": 82327, + "Directional": true + } + ] + }, + { + "ID": 12606, + "SourceStructureID": 16026, + "TargetStructureID": 83603, + "Label": "16026-83603 via Ribbon Synapse from 134616 -> 134617", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134616, + "TargetID": 134617, + "Directional": true + } + ] + }, + { + "ID": 12607, + "SourceStructureID": 16026, + "TargetStructureID": 84260, + "Label": "16026-84260 via Ribbon Synapse from 22332 -> 134533, 25269 -> 134533, 25618 -> 84261, 25619 -> 84261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22332, + "TargetID": 134533, + "Directional": true + }, + { + "SourceID": 25269, + "TargetID": 134533, + "Directional": true + }, + { + "SourceID": 25618, + "TargetID": 84261, + "Directional": true + }, + { + "SourceID": 25619, + "TargetID": 84261, + "Directional": true + } + ] + }, + { + "ID": 12608, + "SourceStructureID": 16026, + "TargetStructureID": 84656, + "Label": "16026-84656 via BC Conventional Synapse from 124783 -> 134507", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124783, + "TargetID": 134507, + "Directional": true + } + ] + }, + { + "ID": 12609, + "SourceStructureID": 16026, + "TargetStructureID": 91036, + "Label": "16026-91036 via Ribbon Synapse from 25556 -> 91038, 25558 -> 91037", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25556, + "TargetID": 91038, + "Directional": true + }, + { + "SourceID": 25558, + "TargetID": 91037, + "Directional": true + } + ] + }, + { + "ID": 12610, + "SourceStructureID": 16026, + "TargetStructureID": 91056, + "Label": "16026-91056 via Ribbon Synapse from 91055 -> 91057", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91055, + "TargetID": 91057, + "Directional": true + } + ] + }, + { + "ID": 12611, + "SourceStructureID": 16026, + "TargetStructureID": 91060, + "Label": "16026-91060 via Ribbon Synapse from 91062 -> 91063, 134616 -> 91063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91062, + "TargetID": 91063, + "Directional": true + }, + { + "SourceID": 134616, + "TargetID": 91063, + "Directional": true + } + ] + }, + { + "ID": 12612, + "SourceStructureID": 16026, + "TargetStructureID": 91073, + "Label": "16026-91073 via Ribbon Synapse from 91067 -> 91074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91067, + "TargetID": 91074, + "Directional": true + } + ] + }, + { + "ID": 12613, + "SourceStructureID": 16026, + "TargetStructureID": 91080, + "Label": "16026-91080 via Ribbon Synapse from 91069 -> 91081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91069, + "TargetID": 91081, + "Directional": true + } + ] + }, + { + "ID": 12614, + "SourceStructureID": 16026, + "TargetStructureID": 91085, + "Label": "16026-91085 via BC Conventional Synapse from 134622 -> 134621", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134622, + "TargetID": 134621, + "Directional": true + } + ] + }, + { + "ID": 12615, + "SourceStructureID": 16026, + "TargetStructureID": 91090, + "Label": "16026-91090 via Ribbon Synapse from 91088 -> 91091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91088, + "TargetID": 91091, + "Directional": true + } + ] + }, + { + "ID": 12616, + "SourceStructureID": 16026, + "TargetStructureID": 91092, + "Label": "16026-91092 via Ribbon Synapse from 91088 -> 91093", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91088, + "TargetID": 91093, + "Directional": true + } + ] + }, + { + "ID": 12617, + "SourceStructureID": 16026, + "TargetStructureID": 91094, + "Label": "16026-91094 via Ribbon Synapse from 91050 -> 91095", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91050, + "TargetID": 91095, + "Directional": true + } + ] + }, + { + "ID": 12618, + "SourceStructureID": 16026, + "TargetStructureID": 91098, + "Label": "16026-91098 via Ribbon Synapse from 25730 -> 134560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25730, + "TargetID": 134560, + "Directional": true + } + ] + }, + { + "ID": 12619, + "SourceStructureID": 16026, + "TargetStructureID": 91111, + "Label": "16026-91111 via Ribbon Synapse from 25972 -> 91112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25972, + "TargetID": 91112, + "Directional": true + } + ] + }, + { + "ID": 12620, + "SourceStructureID": 16026, + "TargetStructureID": 91118, + "Label": "16026-91118 via Ribbon Synapse from 91116 -> 91119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91116, + "TargetID": 91119, + "Directional": true + } + ] + }, + { + "ID": 12621, + "SourceStructureID": 16026, + "TargetStructureID": 91145, + "Label": "16026-91145 via Cistern Pre from 91144 -> 91146", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 91144, + "TargetID": 91146, + "Directional": true + } + ] + }, + { + "ID": 12622, + "SourceStructureID": 16026, + "TargetStructureID": 91150, + "Label": "16026-91150 via Ribbon Synapse from 91149 -> 91152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91149, + "TargetID": 91152, + "Directional": true + } + ] + }, + { + "ID": 12623, + "SourceStructureID": 16026, + "TargetStructureID": 91167, + "Label": "16026-91167 via Ribbon Synapse from 91166 -> 91168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91166, + "TargetID": 91168, + "Directional": true + } + ] + }, + { + "ID": 12624, + "SourceStructureID": 16026, + "TargetStructureID": 91240, + "Label": "16026-91240 via Ribbon Synapse from 114644 -> 114645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 114644, + "TargetID": 114645, + "Directional": true + } + ] + }, + { + "ID": 12625, + "SourceStructureID": 16026, + "TargetStructureID": 91533, + "Label": "16026-91533 via Ribbon Synapse from 25611 -> 134742", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25611, + "TargetID": 134742, + "Directional": true + } + ] + }, + { + "ID": 12626, + "SourceStructureID": 16026, + "TargetStructureID": 92092, + "Label": "16026-92092 via BC Conventional Synapse from 92191 -> 92192, 92796 -> 92795", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92191, + "TargetID": 92192, + "Directional": true + }, + { + "SourceID": 92796, + "TargetID": 92795, + "Directional": true + } + ] + }, + { + "ID": 12627, + "SourceStructureID": 16026, + "TargetStructureID": 92193, + "Label": "16026-92193 via BC Conventional Synapse from 134495 -> 92800", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134495, + "TargetID": 92800, + "Directional": true + } + ] + }, + { + "ID": 12628, + "SourceStructureID": 16026, + "TargetStructureID": 92223, + "Label": "16026-92223 via BC Conventional Synapse from 134932 -> 134933", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134932, + "TargetID": 134933, + "Directional": true + } + ] + }, + { + "ID": 12629, + "SourceStructureID": 16026, + "TargetStructureID": 92236, + "Label": "16026-92236 via Ribbon Synapse from 92817 -> 92818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92817, + "TargetID": 92818, + "Directional": true + } + ] + }, + { + "ID": 12630, + "SourceStructureID": 16026, + "TargetStructureID": 92361, + "Label": "16026-92361 via Ribbon Synapse from 124810 -> 134354, 134376 -> 134377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124810, + "TargetID": 134354, + "Directional": true + }, + { + "SourceID": 134376, + "TargetID": 134377, + "Directional": true + } + ] + }, + { + "ID": 12631, + "SourceStructureID": 16026, + "TargetStructureID": 92372, + "Label": "16026-92372 via Ribbon Synapse from 25542 -> 134368", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25542, + "TargetID": 134368, + "Directional": true + } + ] + }, + { + "ID": 12632, + "SourceStructureID": 16026, + "TargetStructureID": 92400, + "Label": "16026-92400 via Ribbon Synapse from 134360 -> 134361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134360, + "TargetID": 134361, + "Directional": true + } + ] + }, + { + "ID": 12633, + "SourceStructureID": 16026, + "TargetStructureID": 92403, + "Label": "16026-92403 via Ribbon Synapse from 134537 -> 134536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134537, + "TargetID": 134536, + "Directional": true + } + ] + }, + { + "ID": 12634, + "SourceStructureID": 16026, + "TargetStructureID": 92414, + "Label": "16026-92414 via BC Conventional Synapse from 134581 -> 134582", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134581, + "TargetID": 134582, + "Directional": true + } + ] + }, + { + "ID": 12635, + "SourceStructureID": 16026, + "TargetStructureID": 92560, + "Label": "16026-92560 via BC Conventional Synapse from 92563 -> 92564", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92563, + "TargetID": 92564, + "Directional": true + } + ] + }, + { + "ID": 12636, + "SourceStructureID": 16026, + "TargetStructureID": 92602, + "Label": "16026-92602 via Cistern Pre from 134880 -> 134881", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 134880, + "TargetID": 134881, + "Directional": true + } + ] + }, + { + "ID": 12637, + "SourceStructureID": 16026, + "TargetStructureID": 92607, + "Label": "16026-92607 via Ribbon Synapse from 134866 -> 134867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 134866, + "TargetID": 134867, + "Directional": true + } + ] + }, + { + "ID": 12638, + "SourceStructureID": 16026, + "TargetStructureID": 92865, + "Label": "16026-92865 via Ribbon Synapse from 25643 -> 92869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25643, + "TargetID": 92869, + "Directional": true + } + ] + }, + { + "ID": 12639, + "SourceStructureID": 16026, + "TargetStructureID": 92926, + "Label": "16026-92926 via Ribbon Synapse from 82741 -> 134795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82741, + "TargetID": 134795, + "Directional": true + } + ] + }, + { + "ID": 12640, + "SourceStructureID": 16026, + "TargetStructureID": 104497, + "Label": "16026-104497 via Ribbon Synapse from 25770 -> 134395", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25770, + "TargetID": 134395, + "Directional": true + } + ] + }, + { + "ID": 12641, + "SourceStructureID": 16026, + "TargetStructureID": 122829, + "Label": "16026-122829 via Ribbon Synapse from 25504 -> 122877, 114646 -> 122873, 114647 -> 122872, 114669 -> 122874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25504, + "TargetID": 122877, + "Directional": true + }, + { + "SourceID": 114646, + "TargetID": 122873, + "Directional": true + }, + { + "SourceID": 114647, + "TargetID": 122872, + "Directional": true + }, + { + "SourceID": 114669, + "TargetID": 122874, + "Directional": true + } + ] + }, + { + "ID": 12642, + "SourceStructureID": 16073, + "TargetStructureID": 289, + "Label": "16073-289 via Conventional from 19931 -> 30003", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 19931, + "TargetID": 30003, + "Directional": true + } + ] + }, + { + "ID": 12643, + "SourceStructureID": 16073, + "TargetStructureID": 909, + "Label": "16073-909 via Conventional from 32219 -> 32220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32219, + "TargetID": 32220, + "Directional": true + } + ] + }, + { + "ID": 12644, + "SourceStructureID": 16073, + "TargetStructureID": 1021, + "Label": "16073-1021 via Conventional from 41264 -> 1617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41264, + "TargetID": 1617, + "Directional": true + } + ] + }, + { + "ID": 12645, + "SourceStructureID": 16073, + "TargetStructureID": 8575, + "Label": "16073-8575 via Conventional from 32191 -> 21648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32191, + "TargetID": 21648, + "Directional": true + } + ] + }, + { + "ID": 12646, + "SourceStructureID": 16073, + "TargetStructureID": 15796, + "Label": "16073-15796 via Conventional from 19853 -> 19835, 19873 -> 114286, 32218 -> 20120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 19853, + "TargetID": 19835, + "Directional": true + }, + { + "SourceID": 19873, + "TargetID": 114286, + "Directional": true + }, + { + "SourceID": 32218, + "TargetID": 20120, + "Directional": true + } + ] + }, + { + "ID": 12647, + "SourceStructureID": 16073, + "TargetStructureID": 20136, + "Label": "16073-20136 via Conventional from 108504 -> 108505", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108504, + "TargetID": 108505, + "Directional": true + } + ] + }, + { + "ID": 12648, + "SourceStructureID": 16446, + "TargetStructureID": 410, + "Label": "16446-410 via Ribbon Synapse from 16461 -> 8375, 16463 -> 8379, 18850 -> 18849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16461, + "TargetID": 8375, + "Directional": true + }, + { + "SourceID": 16463, + "TargetID": 8379, + "Directional": true + }, + { + "SourceID": 18850, + "TargetID": 18849, + "Directional": true + } + ] + }, + { + "ID": 12649, + "SourceStructureID": 16446, + "TargetStructureID": 476, + "Label": "16446-476 via Ribbon Synapse from 16461 -> 16478, 16464 -> 2390, 16466 -> 16467, 16472 -> 19064, 16477 -> 16476, 16484 -> 16482, 16485 -> 16486, 16492 -> 16493, 16496 -> 16495, 16499 -> 16498, 16625 -> 2352, 19071 -> 19073, 19082 -> 10441", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16461, + "TargetID": 16478, + "Directional": true + }, + { + "SourceID": 16464, + "TargetID": 2390, + "Directional": true + }, + { + "SourceID": 16466, + "TargetID": 16467, + "Directional": true + }, + { + "SourceID": 16472, + "TargetID": 19064, + "Directional": true + }, + { + "SourceID": 16477, + "TargetID": 16476, + "Directional": true + }, + { + "SourceID": 16484, + "TargetID": 16482, + "Directional": true + }, + { + "SourceID": 16485, + "TargetID": 16486, + "Directional": true + }, + { + "SourceID": 16492, + "TargetID": 16493, + "Directional": true + }, + { + "SourceID": 16496, + "TargetID": 16495, + "Directional": true + }, + { + "SourceID": 16499, + "TargetID": 16498, + "Directional": true + }, + { + "SourceID": 16625, + "TargetID": 2352, + "Directional": true + }, + { + "SourceID": 19071, + "TargetID": 19073, + "Directional": true + }, + { + "SourceID": 19082, + "TargetID": 10441, + "Directional": true + } + ] + }, + { + "ID": 12650, + "SourceStructureID": 16446, + "TargetStructureID": 6153, + "Label": "16446-6153 via Ribbon Synapse from 16623 -> 8417, 18851 -> 8412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16623, + "TargetID": 8417, + "Directional": true + }, + { + "SourceID": 18851, + "TargetID": 8412, + "Directional": true + } + ] + }, + { + "ID": 12651, + "SourceStructureID": 16446, + "TargetStructureID": 34295, + "Label": "16446-34295 via Ribbon Synapse from 16477 -> 34298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16477, + "TargetID": 34298, + "Directional": true + } + ] + }, + { + "ID": 12652, + "SourceStructureID": 16940, + "TargetStructureID": 1620, + "Label": "16940-1620 via Ribbon Synapse from 16951 -> 16935, 16952 -> 16934, 16953 -> 16931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16951, + "TargetID": 16935, + "Directional": true + }, + { + "SourceID": 16952, + "TargetID": 16934, + "Directional": true + }, + { + "SourceID": 16953, + "TargetID": 16931, + "Directional": true + } + ] + }, + { + "ID": 12653, + "SourceStructureID": 16940, + "TargetStructureID": 5497, + "Label": "16940-5497 via Ribbon Synapse from 16948 -> 62613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 16948, + "TargetID": 62613, + "Directional": true + } + ] + }, + { + "ID": 12654, + "SourceStructureID": 16940, + "TargetStructureID": 63628, + "Label": "16940-63628 via Ribbon Synapse from 63693 -> 63634, 63698 -> 63696, 63703 -> 68718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63693, + "TargetID": 63634, + "Directional": true + }, + { + "SourceID": 63698, + "TargetID": 63696, + "Directional": true + }, + { + "SourceID": 63703, + "TargetID": 68718, + "Directional": true + } + ] + }, + { + "ID": 12655, + "SourceStructureID": 17183, + "TargetStructureID": 304, + "Label": "17183-304 via Ribbon Synapse from 17185 -> 17186, 17191 -> 17190, 17203 -> 17202, 17205 -> 17204, 17650 -> 17651, 17652 -> 17653, 17654 -> 17655, 18360 -> 18359, 18853 -> 17287, 127856 -> 127857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17185, + "TargetID": 17186, + "Directional": true + }, + { + "SourceID": 17191, + "TargetID": 17190, + "Directional": true + }, + { + "SourceID": 17203, + "TargetID": 17202, + "Directional": true + }, + { + "SourceID": 17205, + "TargetID": 17204, + "Directional": true + }, + { + "SourceID": 17650, + "TargetID": 17651, + "Directional": true + }, + { + "SourceID": 17652, + "TargetID": 17653, + "Directional": true + }, + { + "SourceID": 17654, + "TargetID": 17655, + "Directional": true + }, + { + "SourceID": 18360, + "TargetID": 18359, + "Directional": true + }, + { + "SourceID": 18853, + "TargetID": 17287, + "Directional": true + }, + { + "SourceID": 127856, + "TargetID": 127857, + "Directional": true + } + ] + }, + { + "ID": 12656, + "SourceStructureID": 17183, + "TargetStructureID": 573, + "Label": "17183-573 via Ribbon Synapse from 18356 -> 18355, 19089 -> 19090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 18356, + "TargetID": 18355, + "Directional": true + }, + { + "SourceID": 19089, + "TargetID": 19090, + "Directional": true + } + ] + }, + { + "ID": 12657, + "SourceStructureID": 17183, + "TargetStructureID": 2610, + "Label": "17183-2610 via Ribbon Synapse from 17196 -> 2983, 17197 -> 2996, 18416 -> 18415, 19101 -> 19102, 19103 -> 19104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17196, + "TargetID": 2983, + "Directional": true + }, + { + "SourceID": 17197, + "TargetID": 2996, + "Directional": true + }, + { + "SourceID": 18416, + "TargetID": 18415, + "Directional": true + }, + { + "SourceID": 19101, + "TargetID": 19102, + "Directional": true + }, + { + "SourceID": 19103, + "TargetID": 19104, + "Directional": true + } + ] + }, + { + "ID": 12658, + "SourceStructureID": 17228, + "TargetStructureID": 304, + "Label": "17228-304 via Ribbon Synapse from 19185 -> 20757, 19186 -> 20755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19185, + "TargetID": 20757, + "Directional": true + }, + { + "SourceID": 19186, + "TargetID": 20755, + "Directional": true + } + ] + }, + { + "ID": 12659, + "SourceStructureID": 17228, + "TargetStructureID": 308, + "Label": "17228-308 via Ribbon Synapse from 19184 -> 43547, 19190 -> 43528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19184, + "TargetID": 43547, + "Directional": true + }, + { + "SourceID": 19190, + "TargetID": 43528, + "Directional": true + } + ] + }, + { + "ID": 12660, + "SourceStructureID": 17228, + "TargetStructureID": 573, + "Label": "17228-573 via Ribbon Synapse from 19184 -> 43542, 19192 -> 18352", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19184, + "TargetID": 43542, + "Directional": true + }, + { + "SourceID": 19192, + "TargetID": 18352, + "Directional": true + } + ] + }, + { + "ID": 12661, + "SourceStructureID": 17228, + "TargetStructureID": 2610, + "Label": "17228-2610 via Ribbon Synapse from 17916 -> 17917, 19169 -> 66183, 19174 -> 19175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17916, + "TargetID": 17917, + "Directional": true + }, + { + "SourceID": 19169, + "TargetID": 66183, + "Directional": true + }, + { + "SourceID": 19174, + "TargetID": 19175, + "Directional": true + } + ] + }, + { + "ID": 12662, + "SourceStructureID": 17228, + "TargetStructureID": 61214, + "Label": "17228-61214 via Ribbon Synapse from 17263 -> 61224, 19201 -> 61219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17263, + "TargetID": 61224, + "Directional": true + }, + { + "SourceID": 19201, + "TargetID": 61219, + "Directional": true + } + ] + }, + { + "ID": 12663, + "SourceStructureID": 17533, + "TargetStructureID": 410, + "Label": "17533-410 via Ribbon Synapse from 17538 -> 17539, 17540 -> 17541, 17543 -> 17542, 17545 -> 17544, 17547 -> 17548, 17552 -> 17551, 17798 -> 17795, 17799 -> 17794, 17805 -> 17804", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 17538, + "TargetID": 17539, + "Directional": true + }, + { + "SourceID": 17540, + "TargetID": 17541, + "Directional": true + }, + { + "SourceID": 17543, + "TargetID": 17542, + "Directional": true + }, + { + "SourceID": 17545, + "TargetID": 17544, + "Directional": true + }, + { + "SourceID": 17547, + "TargetID": 17548, + "Directional": true + }, + { + "SourceID": 17552, + "TargetID": 17551, + "Directional": true + }, + { + "SourceID": 17798, + "TargetID": 17795, + "Directional": true + }, + { + "SourceID": 17799, + "TargetID": 17794, + "Directional": true + }, + { + "SourceID": 17805, + "TargetID": 17804, + "Directional": true + } + ] + }, + { + "ID": 12664, + "SourceStructureID": 18150, + "TargetStructureID": 9787, + "Label": "18150-9787 via Conventional from 18151 -> 18147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18151, + "TargetID": 18147, + "Directional": true + } + ] + }, + { + "ID": 12665, + "SourceStructureID": 18282, + "TargetStructureID": 166, + "Label": "18282-166 via Conventional from 18320 -> 18321, 84792 -> 84787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18320, + "TargetID": 18321, + "Directional": true + }, + { + "SourceID": 84792, + "TargetID": 84787, + "Directional": true + } + ] + }, + { + "ID": 12666, + "SourceStructureID": 18282, + "TargetStructureID": 268, + "Label": "18282-268 via Conventional from 38868 -> 43464, 38869 -> 43461", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38868, + "TargetID": 43464, + "Directional": true + }, + { + "SourceID": 38869, + "TargetID": 43461, + "Directional": true + } + ] + }, + { + "ID": 12667, + "SourceStructureID": 18282, + "TargetStructureID": 286, + "Label": "18282-286 via Conventional from 20500 -> 20501, 38852 -> 38859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20500, + "TargetID": 20501, + "Directional": true + }, + { + "SourceID": 38852, + "TargetID": 38859, + "Directional": true + } + ] + }, + { + "ID": 12668, + "SourceStructureID": 18282, + "TargetStructureID": 332, + "Label": "18282-332 via Conventional from 38864 -> 25204", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38864, + "TargetID": 25204, + "Directional": true + } + ] + }, + { + "ID": 12669, + "SourceStructureID": 18282, + "TargetStructureID": 461, + "Label": "18282-461 via Conventional from 20399 -> 14666, 29232 -> 29236", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20399, + "TargetID": 14666, + "Directional": true + }, + { + "SourceID": 29232, + "TargetID": 29236, + "Directional": true + } + ] + }, + { + "ID": 12670, + "SourceStructureID": 18282, + "TargetStructureID": 483, + "Label": "18282-483 via Conventional from 20390 -> 51184, 29194 -> 6739, 71185 -> 71186", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20390, + "TargetID": 51184, + "Directional": true + }, + { + "SourceID": 29194, + "TargetID": 6739, + "Directional": true + }, + { + "SourceID": 71185, + "TargetID": 71186, + "Directional": true + } + ] + }, + { + "ID": 12671, + "SourceStructureID": 18282, + "TargetStructureID": 485, + "Label": "18282-485 via Conventional from 18293 -> 18297, 18294 -> 43485, 18298 -> 18299, 18306 -> 49176, 18308 -> 102013, 20333 -> 29193, 20412 -> 120430, 29181 -> 101089, 31411 -> 43489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18293, + "TargetID": 18297, + "Directional": true + }, + { + "SourceID": 18294, + "TargetID": 43485, + "Directional": true + }, + { + "SourceID": 18298, + "TargetID": 18299, + "Directional": true + }, + { + "SourceID": 18306, + "TargetID": 49176, + "Directional": true + }, + { + "SourceID": 18308, + "TargetID": 102013, + "Directional": true + }, + { + "SourceID": 20333, + "TargetID": 29193, + "Directional": true + }, + { + "SourceID": 20412, + "TargetID": 120430, + "Directional": true + }, + { + "SourceID": 29181, + "TargetID": 101089, + "Directional": true + }, + { + "SourceID": 31411, + "TargetID": 43489, + "Directional": true + } + ] + }, + { + "ID": 12672, + "SourceStructureID": 18282, + "TargetStructureID": 593, + "Label": "18282-593 via Conventional from 18315 -> 50445", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18315, + "TargetID": 50445, + "Directional": true + } + ] + }, + { + "ID": 12673, + "SourceStructureID": 18282, + "TargetStructureID": 5562, + "Label": "18282-5562 via Conventional from 31442 -> 31444", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31442, + "TargetID": 31444, + "Directional": true + } + ] + }, + { + "ID": 12674, + "SourceStructureID": 18282, + "TargetStructureID": 5916, + "Label": "18282-5916 via Conventional from 31450 -> 38844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31450, + "TargetID": 38844, + "Directional": true + } + ] + }, + { + "ID": 12675, + "SourceStructureID": 18282, + "TargetStructureID": 6115, + "Label": "18282-6115 via Conventional from 20420 -> 20431, 72711 -> 72710, 129083 -> 75554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20420, + "TargetID": 20431, + "Directional": true + }, + { + "SourceID": 72711, + "TargetID": 72710, + "Directional": true + }, + { + "SourceID": 129083, + "TargetID": 75554, + "Directional": true + } + ] + }, + { + "ID": 12676, + "SourceStructureID": 18282, + "TargetStructureID": 6997, + "Label": "18282-6997 via Conventional from 31412 -> 22124, 31415 -> 31422, 31424 -> 31434", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31412, + "TargetID": 22124, + "Directional": true + }, + { + "SourceID": 31415, + "TargetID": 31422, + "Directional": true + }, + { + "SourceID": 31424, + "TargetID": 31434, + "Directional": true + } + ] + }, + { + "ID": 12677, + "SourceStructureID": 18282, + "TargetStructureID": 31430, + "Label": "18282-31430 via Conventional from 31423 -> 31432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31423, + "TargetID": 31432, + "Directional": true + } + ] + }, + { + "ID": 12678, + "SourceStructureID": 18282, + "TargetStructureID": 38848, + "Label": "18282-38848 via Conventional from 31454 -> 38849", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31454, + "TargetID": 38849, + "Directional": true + } + ] + }, + { + "ID": 12679, + "SourceStructureID": 18282, + "TargetStructureID": 61960, + "Label": "18282-61960 via Conventional from 18313 -> 81445, 29179 -> 69696", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18313, + "TargetID": 81445, + "Directional": true + }, + { + "SourceID": 29179, + "TargetID": 69696, + "Directional": true + } + ] + }, + { + "ID": 12680, + "SourceStructureID": 18471, + "TargetStructureID": 18472, + "Label": "18471-18472 via Conventional from 18474 -> 18475", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18474, + "TargetID": 18475, + "Directional": true + } + ] + }, + { + "ID": 12681, + "SourceStructureID": 18576, + "TargetStructureID": 419, + "Label": "18576-419 via Conventional from 100465 -> 10124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100465, + "TargetID": 10124, + "Directional": true + } + ] + }, + { + "ID": 12682, + "SourceStructureID": 18576, + "TargetStructureID": 514, + "Label": "18576-514 via Conventional from 18582 -> 18581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18582, + "TargetID": 18581, + "Directional": true + } + ] + }, + { + "ID": 12683, + "SourceStructureID": 18576, + "TargetStructureID": 519, + "Label": "18576-519 via Conventional from 18580 -> 18579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 18580, + "TargetID": 18579, + "Directional": true + } + ] + }, + { + "ID": 12684, + "SourceStructureID": 18576, + "TargetStructureID": 6857, + "Label": "18576-6857 via Conventional from 36328 -> 6862", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36328, + "TargetID": 6862, + "Directional": true + } + ] + }, + { + "ID": 12685, + "SourceStructureID": 18693, + "TargetStructureID": 64774, + "Label": "18693-64774 via Conventional from 64773 -> 64775", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64773, + "TargetID": 64775, + "Directional": true + } + ] + }, + { + "ID": 12686, + "SourceStructureID": 18693, + "TargetStructureID": 64777, + "Label": "18693-64777 via Conventional from 64720 -> 64778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64720, + "TargetID": 64778, + "Directional": true + } + ] + }, + { + "ID": 12687, + "SourceStructureID": 19203, + "TargetStructureID": 389, + "Label": "19203-389 via Ribbon Synapse from 62114 -> 62117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62114, + "TargetID": 62117, + "Directional": true + } + ] + }, + { + "ID": 12688, + "SourceStructureID": 19203, + "TargetStructureID": 598, + "Label": "19203-598 via Ribbon Synapse from 22889 -> 38535", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22889, + "TargetID": 38535, + "Directional": true + } + ] + }, + { + "ID": 12689, + "SourceStructureID": 19203, + "TargetStructureID": 5345, + "Label": "19203-5345 via Ribbon Synapse from 19321 -> 22837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19321, + "TargetID": 22837, + "Directional": true + } + ] + }, + { + "ID": 12690, + "SourceStructureID": 19203, + "TargetStructureID": 5497, + "Label": "19203-5497 via Ribbon Synapse from 21747 -> 21742, 22894 -> 21736, 22896 -> 22897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21747, + "TargetID": 21742, + "Directional": true + }, + { + "SourceID": 22894, + "TargetID": 21736, + "Directional": true + }, + { + "SourceID": 22896, + "TargetID": 22897, + "Directional": true + } + ] + }, + { + "ID": 12691, + "SourceStructureID": 19203, + "TargetStructureID": 8575, + "Label": "19203-8575 via BC Conventional Synapse from 62431 -> 61549", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62431, + "TargetID": 61549, + "Directional": true + } + ] + }, + { + "ID": 12692, + "SourceStructureID": 19203, + "TargetStructureID": 8575, + "Label": "19203-8575 via Ribbon Synapse from 22877 -> 21731, 22942 -> 21733, 62108 -> 62105, 63610 -> 62102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 22877, + "TargetID": 21731, + "Directional": true + }, + { + "SourceID": 22942, + "TargetID": 21733, + "Directional": true + }, + { + "SourceID": 62108, + "TargetID": 62105, + "Directional": true + }, + { + "SourceID": 63610, + "TargetID": 62102, + "Directional": true + } + ] + }, + { + "ID": 12693, + "SourceStructureID": 19203, + "TargetStructureID": 18693, + "Label": "19203-18693 via Ribbon Synapse from 19313 -> 18701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 19313, + "TargetID": 18701, + "Directional": true + } + ] + }, + { + "ID": 12694, + "SourceStructureID": 19203, + "TargetStructureID": 62120, + "Label": "19203-62120 via Ribbon Synapse from 62114 -> 62123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62114, + "TargetID": 62123, + "Directional": true + } + ] + }, + { + "ID": 12695, + "SourceStructureID": 19351, + "TargetStructureID": 6131, + "Label": "19351-6131 via Conventional from 37312 -> 37311", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37312, + "TargetID": 37311, + "Directional": true + } + ] + }, + { + "ID": 12696, + "SourceStructureID": 19362, + "TargetStructureID": 5457, + "Label": "19362-5457 via Conventional from 23435 -> 103140, 23461 -> 15341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23435, + "TargetID": 103140, + "Directional": true + }, + { + "SourceID": 23461, + "TargetID": 15341, + "Directional": true + } + ] + }, + { + "ID": 12697, + "SourceStructureID": 19362, + "TargetStructureID": 5458, + "Label": "19362-5458 via Conventional from 23424 -> 23425", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23424, + "TargetID": 23425, + "Directional": true + } + ] + }, + { + "ID": 12698, + "SourceStructureID": 19362, + "TargetStructureID": 5536, + "Label": "19362-5536 via Conventional from 23423 -> 22690", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23423, + "TargetID": 22690, + "Directional": true + } + ] + }, + { + "ID": 12699, + "SourceStructureID": 19362, + "TargetStructureID": 7188, + "Label": "19362-7188 via Conventional from 23454 -> 7195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23454, + "TargetID": 7195, + "Directional": true + } + ] + }, + { + "ID": 12700, + "SourceStructureID": 19362, + "TargetStructureID": 7225, + "Label": "19362-7225 via Conventional from 23438 -> 23444", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23438, + "TargetID": 23444, + "Directional": true + } + ] + }, + { + "ID": 12701, + "SourceStructureID": 19383, + "TargetStructureID": 5541, + "Label": "19383-5541 via Conventional from 33205 -> 33204, 33207 -> 33206", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33205, + "TargetID": 33204, + "Directional": true + }, + { + "SourceID": 33207, + "TargetID": 33206, + "Directional": true + } + ] + }, + { + "ID": 12702, + "SourceStructureID": 19571, + "TargetStructureID": 5452, + "Label": "19571-5452 via Conventional from 22724 -> 23692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22724, + "TargetID": 23692, + "Directional": true + } + ] + }, + { + "ID": 12703, + "SourceStructureID": 19571, + "TargetStructureID": 5536, + "Label": "19571-5536 via Conventional from 22713 -> 22696", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22713, + "TargetID": 22696, + "Directional": true + } + ] + }, + { + "ID": 12704, + "SourceStructureID": 19571, + "TargetStructureID": 5539, + "Label": "19571-5539 via Conventional from 22720 -> 22631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22720, + "TargetID": 22631, + "Directional": true + } + ] + }, + { + "ID": 12705, + "SourceStructureID": 19571, + "TargetStructureID": 19362, + "Label": "19571-19362 via Conventional from 22762 -> 23440, 23451 -> 23450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22762, + "TargetID": 23440, + "Directional": true + }, + { + "SourceID": 23451, + "TargetID": 23450, + "Directional": true + } + ] + }, + { + "ID": 12706, + "SourceStructureID": 19572, + "TargetStructureID": 5539, + "Label": "19572-5539 via Conventional from 22624 -> 22792, 22626 -> 9814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22624, + "TargetID": 22792, + "Directional": true + }, + { + "SourceID": 22626, + "TargetID": 9814, + "Directional": true + } + ] + }, + { + "ID": 12707, + "SourceStructureID": 20136, + "TargetStructureID": 162, + "Label": "20136-162 via Ribbon Synapse from 29137 -> 70265, 29141 -> 109301", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29137, + "TargetID": 70265, + "Directional": true + }, + { + "SourceID": 29141, + "TargetID": 109301, + "Directional": true + } + ] + }, + { + "ID": 12708, + "SourceStructureID": 20136, + "TargetStructureID": 492, + "Label": "20136-492 via Ribbon Synapse from 30655 -> 109850, 109838 -> 109837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30655, + "TargetID": 109850, + "Directional": true + }, + { + "SourceID": 109838, + "TargetID": 109837, + "Directional": true + } + ] + }, + { + "ID": 12709, + "SourceStructureID": 20136, + "TargetStructureID": 598, + "Label": "20136-598 via Ribbon Synapse from 46000 -> 6320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46000, + "TargetID": 6320, + "Directional": true + } + ] + }, + { + "ID": 12710, + "SourceStructureID": 20136, + "TargetStructureID": 5377, + "Label": "20136-5377 via Ribbon Synapse from 69862 -> 108969, 87025 -> 87026, 108966 -> 108967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69862, + "TargetID": 108969, + "Directional": true + }, + { + "SourceID": 87025, + "TargetID": 87026, + "Directional": true + }, + { + "SourceID": 108966, + "TargetID": 108967, + "Directional": true + } + ] + }, + { + "ID": 12711, + "SourceStructureID": 20136, + "TargetStructureID": 5435, + "Label": "20136-5435 via Ribbon Synapse from 127744 -> 135515", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127744, + "TargetID": 135515, + "Directional": true + } + ] + }, + { + "ID": 12712, + "SourceStructureID": 20136, + "TargetStructureID": 7594, + "Label": "20136-7594 via Ribbon Synapse from 25107 -> 25106, 29141 -> 29142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25107, + "TargetID": 25106, + "Directional": true + }, + { + "SourceID": 29141, + "TargetID": 29142, + "Directional": true + } + ] + }, + { + "ID": 12713, + "SourceStructureID": 20136, + "TargetStructureID": 15796, + "Label": "20136-15796 via BC Conventional Synapse from 97845 -> 97844", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97845, + "TargetID": 97844, + "Directional": true + } + ] + }, + { + "ID": 12714, + "SourceStructureID": 20136, + "TargetStructureID": 15796, + "Label": "20136-15796 via Ribbon Synapse from 20149 -> 15845, 45995 -> 108492, 69861 -> 20117, 130475 -> 130474, 130481 -> 20123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20149, + "TargetID": 15845, + "Directional": true + }, + { + "SourceID": 45995, + "TargetID": 108492, + "Directional": true + }, + { + "SourceID": 69861, + "TargetID": 20117, + "Directional": true + }, + { + "SourceID": 130475, + "TargetID": 130474, + "Directional": true + }, + { + "SourceID": 130481, + "TargetID": 20123, + "Directional": true + } + ] + }, + { + "ID": 12715, + "SourceStructureID": 20136, + "TargetStructureID": 16073, + "Label": "20136-16073 via BC Conventional Synapse from 108471 -> 108472", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108471, + "TargetID": 108472, + "Directional": true + } + ] + }, + { + "ID": 12716, + "SourceStructureID": 20136, + "TargetStructureID": 16073, + "Label": "20136-16073 via Ribbon Synapse from 69862 -> 23442, 130479 -> 130480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69862, + "TargetID": 23442, + "Directional": true + }, + { + "SourceID": 130479, + "TargetID": 130480, + "Directional": true + } + ] + }, + { + "ID": 12717, + "SourceStructureID": 20136, + "TargetStructureID": 30567, + "Label": "20136-30567 via Ribbon Synapse from 30655 -> 109848", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30655, + "TargetID": 109848, + "Directional": true + } + ] + }, + { + "ID": 12718, + "SourceStructureID": 20136, + "TargetStructureID": 38502, + "Label": "20136-38502 via Ribbon Synapse from 29127 -> 38508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29127, + "TargetID": 38508, + "Directional": true + } + ] + }, + { + "ID": 12719, + "SourceStructureID": 20136, + "TargetStructureID": 40018, + "Label": "20136-40018 via Ribbon Synapse from 110350 -> 110351", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110350, + "TargetID": 110351, + "Directional": true + } + ] + }, + { + "ID": 12720, + "SourceStructureID": 20136, + "TargetStructureID": 53399, + "Label": "20136-53399 via Ribbon Synapse from 29136 -> 53400", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29136, + "TargetID": 53400, + "Directional": true + } + ] + }, + { + "ID": 12721, + "SourceStructureID": 20136, + "TargetStructureID": 54006, + "Label": "20136-54006 via Ribbon Synapse from 20146 -> 109049, 20147 -> 109060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20146, + "TargetID": 109049, + "Directional": true + }, + { + "SourceID": 20147, + "TargetID": 109060, + "Directional": true + } + ] + }, + { + "ID": 12722, + "SourceStructureID": 20136, + "TargetStructureID": 55403, + "Label": "20136-55403 via Ribbon Synapse from 119289 -> 55503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119289, + "TargetID": 55503, + "Directional": true + } + ] + }, + { + "ID": 12723, + "SourceStructureID": 20136, + "TargetStructureID": 59145, + "Label": "20136-59145 via BC Conventional Synapse from 20138 -> 59152", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20138, + "TargetID": 59152, + "Directional": true + } + ] + }, + { + "ID": 12724, + "SourceStructureID": 20136, + "TargetStructureID": 67663, + "Label": "20136-67663 via Ribbon Synapse from 69864 -> 108981, 70044 -> 70043", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69864, + "TargetID": 108981, + "Directional": true + }, + { + "SourceID": 70044, + "TargetID": 70043, + "Directional": true + } + ] + }, + { + "ID": 12725, + "SourceStructureID": 20136, + "TargetStructureID": 68277, + "Label": "20136-68277 via Ribbon Synapse from 109894 -> 109897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109894, + "TargetID": 109897, + "Directional": true + } + ] + }, + { + "ID": 12726, + "SourceStructureID": 20136, + "TargetStructureID": 69162, + "Label": "20136-69162 via Ribbon Synapse from 46031 -> 109228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46031, + "TargetID": 109228, + "Directional": true + } + ] + }, + { + "ID": 12727, + "SourceStructureID": 20136, + "TargetStructureID": 83949, + "Label": "20136-83949 via BC Conventional Synapse from 109087 -> 109089", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109087, + "TargetID": 109089, + "Directional": true + } + ] + }, + { + "ID": 12728, + "SourceStructureID": 20136, + "TargetStructureID": 83949, + "Label": "20136-83949 via Ribbon Synapse from 20146 -> 109048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20146, + "TargetID": 109048, + "Directional": true + } + ] + }, + { + "ID": 12729, + "SourceStructureID": 20136, + "TargetStructureID": 83954, + "Label": "20136-83954 via Ribbon Synapse from 109092 -> 109091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109092, + "TargetID": 109091, + "Directional": true + } + ] + }, + { + "ID": 12730, + "SourceStructureID": 20136, + "TargetStructureID": 84148, + "Label": "20136-84148 via BC Conventional Synapse from 84147 -> 84149", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84147, + "TargetID": 84149, + "Directional": true + } + ] + }, + { + "ID": 12731, + "SourceStructureID": 20136, + "TargetStructureID": 84193, + "Label": "20136-84193 via BC Conventional Synapse from 109172 -> 109173", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109172, + "TargetID": 109173, + "Directional": true + } + ] + }, + { + "ID": 12732, + "SourceStructureID": 20136, + "TargetStructureID": 88199, + "Label": "20136-88199 via Ribbon Synapse from 110350 -> 110349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110350, + "TargetID": 110349, + "Directional": true + } + ] + }, + { + "ID": 12733, + "SourceStructureID": 20136, + "TargetStructureID": 97691, + "Label": "20136-97691 via Ribbon Synapse from 119296 -> 119297, 119301 -> 119302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119296, + "TargetID": 119297, + "Directional": true + }, + { + "SourceID": 119301, + "TargetID": 119302, + "Directional": true + } + ] + }, + { + "ID": 12734, + "SourceStructureID": 20136, + "TargetStructureID": 103987, + "Label": "20136-103987 via Ribbon Synapse from 108875 -> 108879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108875, + "TargetID": 108879, + "Directional": true + } + ] + }, + { + "ID": 12735, + "SourceStructureID": 20136, + "TargetStructureID": 108398, + "Label": "20136-108398 via Ribbon Synapse from 108412 -> 108413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108412, + "TargetID": 108413, + "Directional": true + } + ] + }, + { + "ID": 12736, + "SourceStructureID": 20136, + "TargetStructureID": 108421, + "Label": "20136-108421 via BC Conventional Synapse from 108440 -> 108425", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108440, + "TargetID": 108425, + "Directional": true + } + ] + }, + { + "ID": 12737, + "SourceStructureID": 20136, + "TargetStructureID": 108448, + "Label": "20136-108448 via Ribbon Synapse from 45993 -> 108455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45993, + "TargetID": 108455, + "Directional": true + } + ] + }, + { + "ID": 12738, + "SourceStructureID": 20136, + "TargetStructureID": 108469, + "Label": "20136-108469 via BC Conventional Synapse from 108471 -> 108474", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108471, + "TargetID": 108474, + "Directional": true + } + ] + }, + { + "ID": 12739, + "SourceStructureID": 20136, + "TargetStructureID": 108487, + "Label": "20136-108487 via Ribbon Synapse from 45995 -> 108490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45995, + "TargetID": 108490, + "Directional": true + } + ] + }, + { + "ID": 12740, + "SourceStructureID": 20136, + "TargetStructureID": 108500, + "Label": "20136-108500 via Ribbon Synapse from 108479 -> 108503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108479, + "TargetID": 108503, + "Directional": true + } + ] + }, + { + "ID": 12741, + "SourceStructureID": 20136, + "TargetStructureID": 108766, + "Label": "20136-108766 via Ribbon Synapse from 108765 -> 108767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108765, + "TargetID": 108767, + "Directional": true + } + ] + }, + { + "ID": 12742, + "SourceStructureID": 20136, + "TargetStructureID": 108768, + "Label": "20136-108768 via Ribbon Synapse from 108765 -> 108769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108765, + "TargetID": 108769, + "Directional": true + } + ] + }, + { + "ID": 12743, + "SourceStructureID": 20136, + "TargetStructureID": 108800, + "Label": "20136-108800 via Ribbon Synapse from 108805 -> 108806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108805, + "TargetID": 108806, + "Directional": true + } + ] + }, + { + "ID": 12744, + "SourceStructureID": 20136, + "TargetStructureID": 108804, + "Label": "20136-108804 via Ribbon Synapse from 108805 -> 108809", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108805, + "TargetID": 108809, + "Directional": true + } + ] + }, + { + "ID": 12745, + "SourceStructureID": 20136, + "TargetStructureID": 108818, + "Label": "20136-108818 via Ribbon Synapse from 129604 -> 129605", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129604, + "TargetID": 129605, + "Directional": true + } + ] + }, + { + "ID": 12746, + "SourceStructureID": 20136, + "TargetStructureID": 108825, + "Label": "20136-108825 via Ribbon Synapse from 108834 -> 108837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108834, + "TargetID": 108837, + "Directional": true + } + ] + }, + { + "ID": 12747, + "SourceStructureID": 20136, + "TargetStructureID": 108835, + "Label": "20136-108835 via Ribbon Synapse from 108834 -> 108836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108834, + "TargetID": 108836, + "Directional": true + } + ] + }, + { + "ID": 12748, + "SourceStructureID": 20136, + "TargetStructureID": 108845, + "Label": "20136-108845 via Ribbon Synapse from 108832 -> 108848", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108832, + "TargetID": 108848, + "Directional": true + } + ] + }, + { + "ID": 12749, + "SourceStructureID": 20136, + "TargetStructureID": 108846, + "Label": "20136-108846 via Ribbon Synapse from 108832 -> 108847", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108832, + "TargetID": 108847, + "Directional": true + } + ] + }, + { + "ID": 12750, + "SourceStructureID": 20136, + "TargetStructureID": 108861, + "Label": "20136-108861 via Ribbon Synapse from 108860 -> 108862, 108884 -> 108898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108860, + "TargetID": 108862, + "Directional": true + }, + { + "SourceID": 108884, + "TargetID": 108898, + "Directional": true + } + ] + }, + { + "ID": 12751, + "SourceStructureID": 20136, + "TargetStructureID": 108881, + "Label": "20136-108881 via Ribbon Synapse from 108875 -> 108882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108875, + "TargetID": 108882, + "Directional": true + } + ] + }, + { + "ID": 12752, + "SourceStructureID": 20136, + "TargetStructureID": 108883, + "Label": "20136-108883 via Ribbon Synapse from 108884 -> 108886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108884, + "TargetID": 108886, + "Directional": true + } + ] + }, + { + "ID": 12753, + "SourceStructureID": 20136, + "TargetStructureID": 108890, + "Label": "20136-108890 via Ribbon Synapse from 108888 -> 108892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108888, + "TargetID": 108892, + "Directional": true + } + ] + }, + { + "ID": 12754, + "SourceStructureID": 20136, + "TargetStructureID": 108893, + "Label": "20136-108893 via Ribbon Synapse from 108888 -> 108896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108888, + "TargetID": 108896, + "Directional": true + } + ] + }, + { + "ID": 12755, + "SourceStructureID": 20136, + "TargetStructureID": 108937, + "Label": "20136-108937 via Ribbon Synapse from 69864 -> 108979", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69864, + "TargetID": 108979, + "Directional": true + } + ] + }, + { + "ID": 12756, + "SourceStructureID": 20136, + "TargetStructureID": 108949, + "Label": "20136-108949 via Ribbon Synapse from 87025 -> 108950, 108951 -> 108952", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87025, + "TargetID": 108950, + "Directional": true + }, + { + "SourceID": 108951, + "TargetID": 108952, + "Directional": true + } + ] + }, + { + "ID": 12757, + "SourceStructureID": 20136, + "TargetStructureID": 108953, + "Label": "20136-108953 via Ribbon Synapse from 108951 -> 108954", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108951, + "TargetID": 108954, + "Directional": true + } + ] + }, + { + "ID": 12758, + "SourceStructureID": 20136, + "TargetStructureID": 108955, + "Label": "20136-108955 via Ribbon Synapse from 69862 -> 108968, 108951 -> 108956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69862, + "TargetID": 108968, + "Directional": true + }, + { + "SourceID": 108951, + "TargetID": 108956, + "Directional": true + } + ] + }, + { + "ID": 12759, + "SourceStructureID": 20136, + "TargetStructureID": 108959, + "Label": "20136-108959 via BC Conventional Synapse from 108961 -> 108960", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108961, + "TargetID": 108960, + "Directional": true + } + ] + }, + { + "ID": 12760, + "SourceStructureID": 20136, + "TargetStructureID": 108970, + "Label": "20136-108970 via Ribbon Synapse from 108966 -> 108971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108966, + "TargetID": 108971, + "Directional": true + } + ] + }, + { + "ID": 12761, + "SourceStructureID": 20136, + "TargetStructureID": 108972, + "Label": "20136-108972 via Ribbon Synapse from 69861 -> 108973, 69861 -> 108974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69861, + "TargetID": 108973, + "Directional": true + }, + { + "SourceID": 69861, + "TargetID": 108974, + "Directional": true + } + ] + }, + { + "ID": 12762, + "SourceStructureID": 20136, + "TargetStructureID": 108986, + "Label": "20136-108986 via BC Conventional Synapse from 108985 -> 108987", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108985, + "TargetID": 108987, + "Directional": true + } + ] + }, + { + "ID": 12763, + "SourceStructureID": 20136, + "TargetStructureID": 108988, + "Label": "20136-108988 via Ribbon Synapse from 45996 -> 108989", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45996, + "TargetID": 108989, + "Directional": true + } + ] + }, + { + "ID": 12764, + "SourceStructureID": 20136, + "TargetStructureID": 108991, + "Label": "20136-108991 via Ribbon Synapse from 45996 -> 108992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45996, + "TargetID": 108992, + "Directional": true + } + ] + }, + { + "ID": 12765, + "SourceStructureID": 20136, + "TargetStructureID": 108993, + "Label": "20136-108993 via Ribbon Synapse from 46003 -> 108994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46003, + "TargetID": 108994, + "Directional": true + } + ] + }, + { + "ID": 12766, + "SourceStructureID": 20136, + "TargetStructureID": 108999, + "Label": "20136-108999 via Ribbon Synapse from 108998 -> 109000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108998, + "TargetID": 109000, + "Directional": true + } + ] + }, + { + "ID": 12767, + "SourceStructureID": 20136, + "TargetStructureID": 109007, + "Label": "20136-109007 via Ribbon Synapse from 109006 -> 109008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109006, + "TargetID": 109008, + "Directional": true + } + ] + }, + { + "ID": 12768, + "SourceStructureID": 20136, + "TargetStructureID": 109012, + "Label": "20136-109012 via Ribbon Synapse from 109009 -> 109013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109009, + "TargetID": 109013, + "Directional": true + } + ] + }, + { + "ID": 12769, + "SourceStructureID": 20136, + "TargetStructureID": 109014, + "Label": "20136-109014 via Ribbon Synapse from 109009 -> 109015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109009, + "TargetID": 109015, + "Directional": true + } + ] + }, + { + "ID": 12770, + "SourceStructureID": 20136, + "TargetStructureID": 109016, + "Label": "20136-109016 via Ribbon Synapse from 46003 -> 109017, 46004 -> 109018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46003, + "TargetID": 109017, + "Directional": true + }, + { + "SourceID": 46004, + "TargetID": 109018, + "Directional": true + } + ] + }, + { + "ID": 12771, + "SourceStructureID": 20136, + "TargetStructureID": 109019, + "Label": "20136-109019 via Ribbon Synapse from 46005 -> 109020", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46005, + "TargetID": 109020, + "Directional": true + } + ] + }, + { + "ID": 12772, + "SourceStructureID": 20136, + "TargetStructureID": 109021, + "Label": "20136-109021 via Ribbon Synapse from 46005 -> 109022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46005, + "TargetID": 109022, + "Directional": true + } + ] + }, + { + "ID": 12773, + "SourceStructureID": 20136, + "TargetStructureID": 109027, + "Label": "20136-109027 via Ribbon Synapse from 46008 -> 109028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46008, + "TargetID": 109028, + "Directional": true + } + ] + }, + { + "ID": 12774, + "SourceStructureID": 20136, + "TargetStructureID": 109029, + "Label": "20136-109029 via Ribbon Synapse from 109092 -> 109090, 109133 -> 109134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109092, + "TargetID": 109090, + "Directional": true + }, + { + "SourceID": 109133, + "TargetID": 109134, + "Directional": true + } + ] + }, + { + "ID": 12775, + "SourceStructureID": 20136, + "TargetStructureID": 109030, + "Label": "20136-109030 via Ribbon Synapse from 20147 -> 109056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20147, + "TargetID": 109056, + "Directional": true + } + ] + }, + { + "ID": 12776, + "SourceStructureID": 20136, + "TargetStructureID": 109053, + "Label": "20136-109053 via Ribbon Synapse from 20147 -> 109054", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20147, + "TargetID": 109054, + "Directional": true + } + ] + }, + { + "ID": 12777, + "SourceStructureID": 20136, + "TargetStructureID": 109065, + "Label": "20136-109065 via Ribbon Synapse from 20149 -> 109066", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 20149, + "TargetID": 109066, + "Directional": true + } + ] + }, + { + "ID": 12778, + "SourceStructureID": 20136, + "TargetStructureID": 109084, + "Label": "20136-109084 via BC Conventional Synapse from 109086 -> 109085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109086, + "TargetID": 109085, + "Directional": true + } + ] + }, + { + "ID": 12779, + "SourceStructureID": 20136, + "TargetStructureID": 109097, + "Label": "20136-109097 via Ribbon Synapse from 70044 -> 109098, 109104 -> 109105, 109154 -> 109153", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70044, + "TargetID": 109098, + "Directional": true + }, + { + "SourceID": 109104, + "TargetID": 109105, + "Directional": true + }, + { + "SourceID": 109154, + "TargetID": 109153, + "Directional": true + } + ] + }, + { + "ID": 12780, + "SourceStructureID": 20136, + "TargetStructureID": 109106, + "Label": "20136-109106 via Ribbon Synapse from 109104 -> 109110", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109104, + "TargetID": 109110, + "Directional": true + } + ] + }, + { + "ID": 12781, + "SourceStructureID": 20136, + "TargetStructureID": 109116, + "Label": "20136-109116 via Ribbon Synapse from 46006 -> 109118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46006, + "TargetID": 109118, + "Directional": true + } + ] + }, + { + "ID": 12782, + "SourceStructureID": 20136, + "TargetStructureID": 109119, + "Label": "20136-109119 via Ribbon Synapse from 46006 -> 109120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46006, + "TargetID": 109120, + "Directional": true + } + ] + }, + { + "ID": 12783, + "SourceStructureID": 20136, + "TargetStructureID": 109126, + "Label": "20136-109126 via Ribbon Synapse from 46008 -> 109127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46008, + "TargetID": 109127, + "Directional": true + } + ] + }, + { + "ID": 12784, + "SourceStructureID": 20136, + "TargetStructureID": 109135, + "Label": "20136-109135 via Ribbon Synapse from 109133 -> 109159", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109133, + "TargetID": 109159, + "Directional": true + } + ] + }, + { + "ID": 12785, + "SourceStructureID": 20136, + "TargetStructureID": 109160, + "Label": "20136-109160 via Ribbon Synapse from 109161 -> 109162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109161, + "TargetID": 109162, + "Directional": true + } + ] + }, + { + "ID": 12786, + "SourceStructureID": 20136, + "TargetStructureID": 109163, + "Label": "20136-109163 via Ribbon Synapse from 109161 -> 109168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109161, + "TargetID": 109168, + "Directional": true + } + ] + }, + { + "ID": 12787, + "SourceStructureID": 20136, + "TargetStructureID": 109164, + "Label": "20136-109164 via Ribbon Synapse from 109161 -> 109165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109161, + "TargetID": 109165, + "Directional": true + } + ] + }, + { + "ID": 12788, + "SourceStructureID": 20136, + "TargetStructureID": 109166, + "Label": "20136-109166 via Ribbon Synapse from 109161 -> 109167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109161, + "TargetID": 109167, + "Directional": true + } + ] + }, + { + "ID": 12789, + "SourceStructureID": 20136, + "TargetStructureID": 109184, + "Label": "20136-109184 via BC Conventional Synapse from 109188 -> 109187", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109188, + "TargetID": 109187, + "Directional": true + } + ] + }, + { + "ID": 12790, + "SourceStructureID": 20136, + "TargetStructureID": 109210, + "Label": "20136-109210 via Ribbon Synapse from 29127 -> 109231, 29132 -> 109235, 29134 -> 109213", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29127, + "TargetID": 109231, + "Directional": true + }, + { + "SourceID": 29132, + "TargetID": 109235, + "Directional": true + }, + { + "SourceID": 29134, + "TargetID": 109213, + "Directional": true + } + ] + }, + { + "ID": 12791, + "SourceStructureID": 20136, + "TargetStructureID": 109214, + "Label": "20136-109214 via Ribbon Synapse from 29134 -> 109215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29134, + "TargetID": 109215, + "Directional": true + } + ] + }, + { + "ID": 12792, + "SourceStructureID": 20136, + "TargetStructureID": 109226, + "Label": "20136-109226 via Ribbon Synapse from 46031 -> 109227", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46031, + "TargetID": 109227, + "Directional": true + } + ] + }, + { + "ID": 12793, + "SourceStructureID": 20136, + "TargetStructureID": 109230, + "Label": "20136-109230 via Ribbon Synapse from 29132 -> 109236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29132, + "TargetID": 109236, + "Directional": true + } + ] + }, + { + "ID": 12794, + "SourceStructureID": 20136, + "TargetStructureID": 109237, + "Label": "20136-109237 via Ribbon Synapse from 46030 -> 109238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46030, + "TargetID": 109238, + "Directional": true + } + ] + }, + { + "ID": 12795, + "SourceStructureID": 20136, + "TargetStructureID": 109243, + "Label": "20136-109243 via Ribbon Synapse from 29125 -> 109244", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29125, + "TargetID": 109244, + "Directional": true + } + ] + }, + { + "ID": 12796, + "SourceStructureID": 20136, + "TargetStructureID": 109247, + "Label": "20136-109247 via Ribbon Synapse from 96719 -> 109248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96719, + "TargetID": 109248, + "Directional": true + } + ] + }, + { + "ID": 12797, + "SourceStructureID": 20136, + "TargetStructureID": 109251, + "Label": "20136-109251 via Ribbon Synapse from 96718 -> 109253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96718, + "TargetID": 109253, + "Directional": true + } + ] + }, + { + "ID": 12798, + "SourceStructureID": 20136, + "TargetStructureID": 109252, + "Label": "20136-109252 via Ribbon Synapse from 96718 -> 109254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96718, + "TargetID": 109254, + "Directional": true + } + ] + }, + { + "ID": 12799, + "SourceStructureID": 20136, + "TargetStructureID": 109255, + "Label": "20136-109255 via Ribbon Synapse from 96719 -> 109256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 96719, + "TargetID": 109256, + "Directional": true + } + ] + }, + { + "ID": 12800, + "SourceStructureID": 20136, + "TargetStructureID": 109257, + "Label": "20136-109257 via Ribbon Synapse from 46032 -> 109259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46032, + "TargetID": 109259, + "Directional": true + } + ] + }, + { + "ID": 12801, + "SourceStructureID": 20136, + "TargetStructureID": 109260, + "Label": "20136-109260 via Ribbon Synapse from 46032 -> 109261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46032, + "TargetID": 109261, + "Directional": true + } + ] + }, + { + "ID": 12802, + "SourceStructureID": 20136, + "TargetStructureID": 109267, + "Label": "20136-109267 via Ribbon Synapse from 46034 -> 109268", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46034, + "TargetID": 109268, + "Directional": true + } + ] + }, + { + "ID": 12803, + "SourceStructureID": 20136, + "TargetStructureID": 109269, + "Label": "20136-109269 via Ribbon Synapse from 46034 -> 109270", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46034, + "TargetID": 109270, + "Directional": true + } + ] + }, + { + "ID": 12804, + "SourceStructureID": 20136, + "TargetStructureID": 109271, + "Label": "20136-109271 via Ribbon Synapse from 97851 -> 120514", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97851, + "TargetID": 120514, + "Directional": true + } + ] + }, + { + "ID": 12805, + "SourceStructureID": 20136, + "TargetStructureID": 109274, + "Label": "20136-109274 via Ribbon Synapse from 97851 -> 109275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97851, + "TargetID": 109275, + "Directional": true + } + ] + }, + { + "ID": 12806, + "SourceStructureID": 20136, + "TargetStructureID": 109287, + "Label": "20136-109287 via Ribbon Synapse from 109286 -> 109288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109286, + "TargetID": 109288, + "Directional": true + } + ] + }, + { + "ID": 12807, + "SourceStructureID": 20136, + "TargetStructureID": 109289, + "Label": "20136-109289 via Ribbon Synapse from 109286 -> 109290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109286, + "TargetID": 109290, + "Directional": true + } + ] + }, + { + "ID": 12808, + "SourceStructureID": 20136, + "TargetStructureID": 109291, + "Label": "20136-109291 via Ribbon Synapse from 29137 -> 109292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29137, + "TargetID": 109292, + "Directional": true + } + ] + }, + { + "ID": 12809, + "SourceStructureID": 20136, + "TargetStructureID": 109293, + "Label": "20136-109293 via Ribbon Synapse from 29140 -> 109294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29140, + "TargetID": 109294, + "Directional": true + } + ] + }, + { + "ID": 12810, + "SourceStructureID": 20136, + "TargetStructureID": 109305, + "Label": "20136-109305 via Ribbon Synapse from 29144 -> 109314", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29144, + "TargetID": 109314, + "Directional": true + } + ] + }, + { + "ID": 12811, + "SourceStructureID": 20136, + "TargetStructureID": 109316, + "Label": "20136-109316 via Ribbon Synapse from 109315 -> 109317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109315, + "TargetID": 109317, + "Directional": true + } + ] + }, + { + "ID": 12812, + "SourceStructureID": 20136, + "TargetStructureID": 109318, + "Label": "20136-109318 via Ribbon Synapse from 109315 -> 109319", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109315, + "TargetID": 109319, + "Directional": true + } + ] + }, + { + "ID": 12813, + "SourceStructureID": 20136, + "TargetStructureID": 109335, + "Label": "20136-109335 via Ribbon Synapse from 29138 -> 109340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29138, + "TargetID": 109340, + "Directional": true + } + ] + }, + { + "ID": 12814, + "SourceStructureID": 20136, + "TargetStructureID": 109347, + "Label": "20136-109347 via Ribbon Synapse from 109346 -> 109348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109346, + "TargetID": 109348, + "Directional": true + } + ] + }, + { + "ID": 12815, + "SourceStructureID": 20136, + "TargetStructureID": 109417, + "Label": "20136-109417 via BC Conventional Synapse from 109416 -> 109418", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109416, + "TargetID": 109418, + "Directional": true + } + ] + }, + { + "ID": 12816, + "SourceStructureID": 20136, + "TargetStructureID": 109420, + "Label": "20136-109420 via Ribbon Synapse from 109415 -> 109421", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109415, + "TargetID": 109421, + "Directional": true + } + ] + }, + { + "ID": 12817, + "SourceStructureID": 20136, + "TargetStructureID": 109422, + "Label": "20136-109422 via Ribbon Synapse from 109415 -> 109423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109415, + "TargetID": 109423, + "Directional": true + } + ] + }, + { + "ID": 12818, + "SourceStructureID": 20136, + "TargetStructureID": 109424, + "Label": "20136-109424 via Ribbon Synapse from 109415 -> 109425, 109427 -> 109429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109415, + "TargetID": 109425, + "Directional": true + }, + { + "SourceID": 109427, + "TargetID": 109429, + "Directional": true + } + ] + }, + { + "ID": 12819, + "SourceStructureID": 20136, + "TargetStructureID": 109430, + "Label": "20136-109430 via Ribbon Synapse from 109427 -> 109431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109427, + "TargetID": 109431, + "Directional": true + } + ] + }, + { + "ID": 12820, + "SourceStructureID": 20136, + "TargetStructureID": 109439, + "Label": "20136-109439 via Ribbon Synapse from 46025 -> 109443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46025, + "TargetID": 109443, + "Directional": true + } + ] + }, + { + "ID": 12821, + "SourceStructureID": 20136, + "TargetStructureID": 109445, + "Label": "20136-109445 via Ribbon Synapse from 46025 -> 109446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46025, + "TargetID": 109446, + "Directional": true + } + ] + }, + { + "ID": 12822, + "SourceStructureID": 20136, + "TargetStructureID": 109450, + "Label": "20136-109450 via Ribbon Synapse from 46026 -> 109455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46026, + "TargetID": 109455, + "Directional": true + } + ] + }, + { + "ID": 12823, + "SourceStructureID": 20136, + "TargetStructureID": 109456, + "Label": "20136-109456 via Ribbon Synapse from 46026 -> 109457", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46026, + "TargetID": 109457, + "Directional": true + } + ] + }, + { + "ID": 12824, + "SourceStructureID": 20136, + "TargetStructureID": 109458, + "Label": "20136-109458 via Ribbon Synapse from 46026 -> 109471", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46026, + "TargetID": 109471, + "Directional": true + } + ] + }, + { + "ID": 12825, + "SourceStructureID": 20136, + "TargetStructureID": 109468, + "Label": "20136-109468 via Ribbon Synapse from 46025 -> 109470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46025, + "TargetID": 109470, + "Directional": true + } + ] + }, + { + "ID": 12826, + "SourceStructureID": 20136, + "TargetStructureID": 109472, + "Label": "20136-109472 via Ribbon Synapse from 46024 -> 109474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46024, + "TargetID": 109474, + "Directional": true + } + ] + }, + { + "ID": 12827, + "SourceStructureID": 20136, + "TargetStructureID": 109479, + "Label": "20136-109479 via Ribbon Synapse from 46024 -> 109480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46024, + "TargetID": 109480, + "Directional": true + } + ] + }, + { + "ID": 12828, + "SourceStructureID": 20136, + "TargetStructureID": 109488, + "Label": "20136-109488 via Ribbon Synapse from 109489 -> 109490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109489, + "TargetID": 109490, + "Directional": true + } + ] + }, + { + "ID": 12829, + "SourceStructureID": 20136, + "TargetStructureID": 109491, + "Label": "20136-109491 via Ribbon Synapse from 109489 -> 109494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109489, + "TargetID": 109494, + "Directional": true + } + ] + }, + { + "ID": 12830, + "SourceStructureID": 20136, + "TargetStructureID": 109497, + "Label": "20136-109497 via Ribbon Synapse from 109503 -> 109506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109503, + "TargetID": 109506, + "Directional": true + } + ] + }, + { + "ID": 12831, + "SourceStructureID": 20136, + "TargetStructureID": 109504, + "Label": "20136-109504 via Ribbon Synapse from 109503 -> 109505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109503, + "TargetID": 109505, + "Directional": true + } + ] + }, + { + "ID": 12832, + "SourceStructureID": 20136, + "TargetStructureID": 109528, + "Label": "20136-109528 via Ribbon Synapse from 46020 -> 109529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46020, + "TargetID": 109529, + "Directional": true + } + ] + }, + { + "ID": 12833, + "SourceStructureID": 20136, + "TargetStructureID": 109530, + "Label": "20136-109530 via Ribbon Synapse from 46020 -> 109531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46020, + "TargetID": 109531, + "Directional": true + } + ] + }, + { + "ID": 12834, + "SourceStructureID": 20136, + "TargetStructureID": 109533, + "Label": "20136-109533 via BC Conventional Synapse from 109538 -> 109539", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109538, + "TargetID": 109539, + "Directional": true + } + ] + }, + { + "ID": 12835, + "SourceStructureID": 20136, + "TargetStructureID": 109547, + "Label": "20136-109547 via Ribbon Synapse from 46016 -> 109548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46016, + "TargetID": 109548, + "Directional": true + } + ] + }, + { + "ID": 12836, + "SourceStructureID": 20136, + "TargetStructureID": 109554, + "Label": "20136-109554 via BC Conventional Synapse from 109541 -> 109555", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109541, + "TargetID": 109555, + "Directional": true + } + ] + }, + { + "ID": 12837, + "SourceStructureID": 20136, + "TargetStructureID": 109575, + "Label": "20136-109575 via BC Conventional Synapse from 109595 -> 109596", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109595, + "TargetID": 109596, + "Directional": true + } + ] + }, + { + "ID": 12838, + "SourceStructureID": 20136, + "TargetStructureID": 109577, + "Label": "20136-109577 via Ribbon Synapse from 46016 -> 109679, 46017 -> 109581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46016, + "TargetID": 109679, + "Directional": true + }, + { + "SourceID": 46017, + "TargetID": 109581, + "Directional": true + } + ] + }, + { + "ID": 12839, + "SourceStructureID": 20136, + "TargetStructureID": 109597, + "Label": "20136-109597 via Ribbon Synapse from 109644 -> 109669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109644, + "TargetID": 109669, + "Directional": true + } + ] + }, + { + "ID": 12840, + "SourceStructureID": 20136, + "TargetStructureID": 109608, + "Label": "20136-109608 via Ribbon Synapse from 109644 -> 109668", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109644, + "TargetID": 109668, + "Directional": true + } + ] + }, + { + "ID": 12841, + "SourceStructureID": 20136, + "TargetStructureID": 109758, + "Label": "20136-109758 via Ribbon Synapse from 109759 -> 109760", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109759, + "TargetID": 109760, + "Directional": true + } + ] + }, + { + "ID": 12842, + "SourceStructureID": 20136, + "TargetStructureID": 109762, + "Label": "20136-109762 via Ribbon Synapse from 109761 -> 109766", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109761, + "TargetID": 109766, + "Directional": true + } + ] + }, + { + "ID": 12843, + "SourceStructureID": 20136, + "TargetStructureID": 109788, + "Label": "20136-109788 via Ribbon Synapse from 46012 -> 109789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46012, + "TargetID": 109789, + "Directional": true + } + ] + }, + { + "ID": 12844, + "SourceStructureID": 20136, + "TargetStructureID": 109797, + "Label": "20136-109797 via Ribbon Synapse from 46012 -> 109798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46012, + "TargetID": 109798, + "Directional": true + } + ] + }, + { + "ID": 12845, + "SourceStructureID": 20136, + "TargetStructureID": 109799, + "Label": "20136-109799 via BC Conventional Synapse from 119234 -> 119233", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119234, + "TargetID": 119233, + "Directional": true + } + ] + }, + { + "ID": 12846, + "SourceStructureID": 20136, + "TargetStructureID": 109802, + "Label": "20136-109802 via Ribbon Synapse from 29150 -> 109863, 46013 -> 109810, 109876 -> 109878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29150, + "TargetID": 109863, + "Directional": true + }, + { + "SourceID": 46013, + "TargetID": 109810, + "Directional": true + }, + { + "SourceID": 109876, + "TargetID": 109878, + "Directional": true + } + ] + }, + { + "ID": 12847, + "SourceStructureID": 20136, + "TargetStructureID": 109812, + "Label": "20136-109812 via Ribbon Synapse from 46013 -> 109813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46013, + "TargetID": 109813, + "Directional": true + } + ] + }, + { + "ID": 12848, + "SourceStructureID": 20136, + "TargetStructureID": 109816, + "Label": "20136-109816 via Ribbon Synapse from 29145 -> 109818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29145, + "TargetID": 109818, + "Directional": true + } + ] + }, + { + "ID": 12849, + "SourceStructureID": 20136, + "TargetStructureID": 109824, + "Label": "20136-109824 via Ribbon Synapse from 109829 -> 109826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109829, + "TargetID": 109826, + "Directional": true + } + ] + }, + { + "ID": 12850, + "SourceStructureID": 20136, + "TargetStructureID": 109827, + "Label": "20136-109827 via Ribbon Synapse from 109829 -> 109830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109829, + "TargetID": 109830, + "Directional": true + } + ] + }, + { + "ID": 12851, + "SourceStructureID": 20136, + "TargetStructureID": 109839, + "Label": "20136-109839 via Ribbon Synapse from 109838 -> 109841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109838, + "TargetID": 109841, + "Directional": true + } + ] + }, + { + "ID": 12852, + "SourceStructureID": 20136, + "TargetStructureID": 109842, + "Label": "20136-109842 via Ribbon Synapse from 29146 -> 109843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29146, + "TargetID": 109843, + "Directional": true + } + ] + }, + { + "ID": 12853, + "SourceStructureID": 20136, + "TargetStructureID": 109844, + "Label": "20136-109844 via Ribbon Synapse from 29146 -> 109845", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29146, + "TargetID": 109845, + "Directional": true + } + ] + }, + { + "ID": 12854, + "SourceStructureID": 20136, + "TargetStructureID": 109851, + "Label": "20136-109851 via Ribbon Synapse from 29149 -> 109852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29149, + "TargetID": 109852, + "Directional": true + } + ] + }, + { + "ID": 12855, + "SourceStructureID": 20136, + "TargetStructureID": 109857, + "Label": "20136-109857 via Ribbon Synapse from 29150 -> 109859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29150, + "TargetID": 109859, + "Directional": true + } + ] + }, + { + "ID": 12856, + "SourceStructureID": 20136, + "TargetStructureID": 109865, + "Label": "20136-109865 via Ribbon Synapse from 29153 -> 109866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29153, + "TargetID": 109866, + "Directional": true + } + ] + }, + { + "ID": 12857, + "SourceStructureID": 20136, + "TargetStructureID": 109873, + "Label": "20136-109873 via Ribbon Synapse from 109876 -> 109877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109876, + "TargetID": 109877, + "Directional": true + } + ] + }, + { + "ID": 12858, + "SourceStructureID": 20136, + "TargetStructureID": 109879, + "Label": "20136-109879 via Ribbon Synapse from 109876 -> 109880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109876, + "TargetID": 109880, + "Directional": true + } + ] + }, + { + "ID": 12859, + "SourceStructureID": 20136, + "TargetStructureID": 109895, + "Label": "20136-109895 via Ribbon Synapse from 109894 -> 109896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109894, + "TargetID": 109896, + "Directional": true + } + ] + }, + { + "ID": 12860, + "SourceStructureID": 20136, + "TargetStructureID": 109900, + "Label": "20136-109900 via Ribbon Synapse from 109902 -> 109907", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109902, + "TargetID": 109907, + "Directional": true + } + ] + }, + { + "ID": 12861, + "SourceStructureID": 20136, + "TargetStructureID": 109905, + "Label": "20136-109905 via Ribbon Synapse from 109902 -> 109906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109902, + "TargetID": 109906, + "Directional": true + } + ] + }, + { + "ID": 12862, + "SourceStructureID": 20136, + "TargetStructureID": 110186, + "Label": "20136-110186 via Ribbon Synapse from 110185 -> 110187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110185, + "TargetID": 110187, + "Directional": true + } + ] + }, + { + "ID": 12863, + "SourceStructureID": 20136, + "TargetStructureID": 110204, + "Label": "20136-110204 via Ribbon Synapse from 110203 -> 110205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110203, + "TargetID": 110205, + "Directional": true + } + ] + }, + { + "ID": 12864, + "SourceStructureID": 20136, + "TargetStructureID": 110208, + "Label": "20136-110208 via BC Conventional Synapse from 110217 -> 110218", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110217, + "TargetID": 110218, + "Directional": true + } + ] + }, + { + "ID": 12865, + "SourceStructureID": 20136, + "TargetStructureID": 110271, + "Label": "20136-110271 via Ribbon Synapse from 110237 -> 110288, 110299 -> 110300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110237, + "TargetID": 110288, + "Directional": true + }, + { + "SourceID": 110299, + "TargetID": 110300, + "Directional": true + } + ] + }, + { + "ID": 12866, + "SourceStructureID": 20136, + "TargetStructureID": 110289, + "Label": "20136-110289 via Ribbon Synapse from 110237 -> 110290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110237, + "TargetID": 110290, + "Directional": true + } + ] + }, + { + "ID": 12867, + "SourceStructureID": 20136, + "TargetStructureID": 110292, + "Label": "20136-110292 via Ribbon Synapse from 110287 -> 110294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110287, + "TargetID": 110294, + "Directional": true + } + ] + }, + { + "ID": 12868, + "SourceStructureID": 20136, + "TargetStructureID": 110295, + "Label": "20136-110295 via Ribbon Synapse from 110287 -> 110298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110287, + "TargetID": 110298, + "Directional": true + } + ] + }, + { + "ID": 12869, + "SourceStructureID": 20136, + "TargetStructureID": 110301, + "Label": "20136-110301 via Ribbon Synapse from 110299 -> 110302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110299, + "TargetID": 110302, + "Directional": true + } + ] + }, + { + "ID": 12870, + "SourceStructureID": 20136, + "TargetStructureID": 110316, + "Label": "20136-110316 via Ribbon Synapse from 110315 -> 110318", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110315, + "TargetID": 110318, + "Directional": true + } + ] + }, + { + "ID": 12871, + "SourceStructureID": 20136, + "TargetStructureID": 110352, + "Label": "20136-110352 via Ribbon Synapse from 110350 -> 110355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110350, + "TargetID": 110355, + "Directional": true + } + ] + }, + { + "ID": 12872, + "SourceStructureID": 20136, + "TargetStructureID": 110356, + "Label": "20136-110356 via Ribbon Synapse from 93855 -> 110359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93855, + "TargetID": 110359, + "Directional": true + } + ] + }, + { + "ID": 12873, + "SourceStructureID": 20136, + "TargetStructureID": 110364, + "Label": "20136-110364 via Ribbon Synapse from 93855 -> 110366", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93855, + "TargetID": 110366, + "Directional": true + } + ] + }, + { + "ID": 12874, + "SourceStructureID": 20136, + "TargetStructureID": 110371, + "Label": "20136-110371 via Ribbon Synapse from 110370 -> 110373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110370, + "TargetID": 110373, + "Directional": true + } + ] + }, + { + "ID": 12875, + "SourceStructureID": 20136, + "TargetStructureID": 110374, + "Label": "20136-110374 via Ribbon Synapse from 110370 -> 110377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110370, + "TargetID": 110377, + "Directional": true + } + ] + }, + { + "ID": 12876, + "SourceStructureID": 20136, + "TargetStructureID": 110385, + "Label": "20136-110385 via Ribbon Synapse from 93853 -> 110388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93853, + "TargetID": 110388, + "Directional": true + } + ] + }, + { + "ID": 12877, + "SourceStructureID": 20136, + "TargetStructureID": 110386, + "Label": "20136-110386 via Ribbon Synapse from 93853 -> 110387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93853, + "TargetID": 110387, + "Directional": true + } + ] + }, + { + "ID": 12878, + "SourceStructureID": 20136, + "TargetStructureID": 110416, + "Label": "20136-110416 via Ribbon Synapse from 110415 -> 110417", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110415, + "TargetID": 110417, + "Directional": true + } + ] + }, + { + "ID": 12879, + "SourceStructureID": 20136, + "TargetStructureID": 110418, + "Label": "20136-110418 via Ribbon Synapse from 110415 -> 110419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 110415, + "TargetID": 110419, + "Directional": true + } + ] + }, + { + "ID": 12880, + "SourceStructureID": 20299, + "TargetStructureID": 285, + "Label": "20299-285 via Conventional from 20302 -> 20314", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20302, + "TargetID": 20314, + "Directional": true + } + ] + }, + { + "ID": 12881, + "SourceStructureID": 20299, + "TargetStructureID": 286, + "Label": "20299-286 via Conventional from 20317 -> 45607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20317, + "TargetID": 45607, + "Directional": true + } + ] + }, + { + "ID": 12882, + "SourceStructureID": 20299, + "TargetStructureID": 464, + "Label": "20299-464 via Conventional from 55904 -> 121839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55904, + "TargetID": 121839, + "Directional": true + } + ] + }, + { + "ID": 12883, + "SourceStructureID": 20299, + "TargetStructureID": 483, + "Label": "20299-483 via Conventional from 33599 -> 102549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33599, + "TargetID": 102549, + "Directional": true + } + ] + }, + { + "ID": 12884, + "SourceStructureID": 20299, + "TargetStructureID": 71935, + "Label": "20299-71935 via Conventional from 121494 -> 121495", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121494, + "TargetID": 121495, + "Directional": true + } + ] + }, + { + "ID": 12885, + "SourceStructureID": 20311, + "TargetStructureID": 285, + "Label": "20311-285 via Conventional from 20312 -> 20313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20312, + "TargetID": 20313, + "Directional": true + } + ] + }, + { + "ID": 12886, + "SourceStructureID": 20311, + "TargetStructureID": 286, + "Label": "20311-286 via Conventional from 30343 -> 26463, 93858 -> 93859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30343, + "TargetID": 26463, + "Directional": true + }, + { + "SourceID": 93858, + "TargetID": 93859, + "Directional": true + } + ] + }, + { + "ID": 12887, + "SourceStructureID": 20311, + "TargetStructureID": 525, + "Label": "20311-525 via Conventional from 30341 -> 6280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30341, + "TargetID": 6280, + "Directional": true + } + ] + }, + { + "ID": 12888, + "SourceStructureID": 20327, + "TargetStructureID": 15796, + "Label": "20327-15796 via Conventional from 20329 -> 20267", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20329, + "TargetID": 20267, + "Directional": true + } + ] + }, + { + "ID": 12889, + "SourceStructureID": 20537, + "TargetStructureID": 5482, + "Label": "20537-5482 via Conventional from 23510 -> 23511", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23510, + "TargetID": 23511, + "Directional": true + } + ] + }, + { + "ID": 12890, + "SourceStructureID": 20537, + "TargetStructureID": 19571, + "Label": "20537-19571 via Conventional from 23507 -> 22715", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23507, + "TargetID": 22715, + "Directional": true + } + ] + }, + { + "ID": 12891, + "SourceStructureID": 20608, + "TargetStructureID": 1620, + "Label": "20608-1620 via Conventional from 20612 -> 20613", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20612, + "TargetID": 20613, + "Directional": true + } + ] + }, + { + "ID": 12892, + "SourceStructureID": 20728, + "TargetStructureID": 1620, + "Label": "20728-1620 via Conventional from 33075 -> 16904, 33076 -> 33077", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33075, + "TargetID": 16904, + "Directional": true + }, + { + "SourceID": 33076, + "TargetID": 33077, + "Directional": true + } + ] + }, + { + "ID": 12893, + "SourceStructureID": 20728, + "TargetStructureID": 6997, + "Label": "20728-6997 via Conventional from 33078 -> 33079", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33078, + "TargetID": 33079, + "Directional": true + } + ] + }, + { + "ID": 12894, + "SourceStructureID": 20728, + "TargetStructureID": 11401, + "Label": "20728-11401 via Conventional from 20729 -> 16834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 20729, + "TargetID": 16834, + "Directional": true + } + ] + }, + { + "ID": 12895, + "SourceStructureID": 21094, + "TargetStructureID": 165, + "Label": "21094-165 via Conventional from 21127 -> 7089, 21130 -> 21131", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21127, + "TargetID": 7089, + "Directional": true + }, + { + "SourceID": 21130, + "TargetID": 21131, + "Directional": true + } + ] + }, + { + "ID": 12896, + "SourceStructureID": 21094, + "TargetStructureID": 424, + "Label": "21094-424 via Conventional from 21108 -> 19512", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21108, + "TargetID": 19512, + "Directional": true + } + ] + }, + { + "ID": 12897, + "SourceStructureID": 21094, + "TargetStructureID": 4850, + "Label": "21094-4850 via Conventional from 21095 -> 14541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21095, + "TargetID": 14541, + "Directional": true + } + ] + }, + { + "ID": 12898, + "SourceStructureID": 21094, + "TargetStructureID": 128015, + "Label": "21094-128015 via Conventional from 21136 -> 128047", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 21136, + "TargetID": 128047, + "Directional": true + } + ] + }, + { + "ID": 12899, + "SourceStructureID": 21155, + "TargetStructureID": 19362, + "Label": "21155-19362 via Conventional from 23448 -> 23446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23448, + "TargetID": 23446, + "Directional": true + } + ] + }, + { + "ID": 12900, + "SourceStructureID": 21159, + "TargetStructureID": 19362, + "Label": "21159-19362 via Conventional from 23428 -> 23427", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23428, + "TargetID": 23427, + "Directional": true + } + ] + }, + { + "ID": 12901, + "SourceStructureID": 21163, + "TargetStructureID": 6910, + "Label": "21163-6910 via Conventional from 43000 -> 42999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43000, + "TargetID": 42999, + "Directional": true + } + ] + }, + { + "ID": 12902, + "SourceStructureID": 21299, + "TargetStructureID": 3865, + "Label": "21299-3865 via Ribbon Synapse from 39303 -> 132328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39303, + "TargetID": 132328, + "Directional": true + } + ] + }, + { + "ID": 12903, + "SourceStructureID": 21299, + "TargetStructureID": 5435, + "Label": "21299-5435 via Ribbon Synapse from 48942 -> 126008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48942, + "TargetID": 126008, + "Directional": true + } + ] + }, + { + "ID": 12904, + "SourceStructureID": 21299, + "TargetStructureID": 6300, + "Label": "21299-6300 via Ribbon Synapse from 21310 -> 21311", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21310, + "TargetID": 21311, + "Directional": true + } + ] + }, + { + "ID": 12905, + "SourceStructureID": 21299, + "TargetStructureID": 8575, + "Label": "21299-8575 via Ribbon Synapse from 21305 -> 62298, 21306 -> 62297, 62322 -> 62321, 125942 -> 62300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 21305, + "TargetID": 62298, + "Directional": true + }, + { + "SourceID": 21306, + "TargetID": 62297, + "Directional": true + }, + { + "SourceID": 62322, + "TargetID": 62321, + "Directional": true + }, + { + "SourceID": 125942, + "TargetID": 62300, + "Directional": true + } + ] + }, + { + "ID": 12906, + "SourceStructureID": 21299, + "TargetStructureID": 9769, + "Label": "21299-9769 via Ribbon Synapse from 29853 -> 29850, 119071 -> 119070", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29853, + "TargetID": 29850, + "Directional": true + }, + { + "SourceID": 119071, + "TargetID": 119070, + "Directional": true + } + ] + }, + { + "ID": 12907, + "SourceStructureID": 21299, + "TargetStructureID": 16002, + "Label": "21299-16002 via Ribbon Synapse from 46341 -> 16005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46341, + "TargetID": 16005, + "Directional": true + } + ] + }, + { + "ID": 12908, + "SourceStructureID": 21299, + "TargetStructureID": 29702, + "Label": "21299-29702 via BC Conventional Synapse from 72630 -> 72629", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72630, + "TargetID": 72629, + "Directional": true + } + ] + }, + { + "ID": 12909, + "SourceStructureID": 21299, + "TargetStructureID": 34055, + "Label": "21299-34055 via Ribbon Synapse from 34093 -> 34087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34093, + "TargetID": 34087, + "Directional": true + } + ] + }, + { + "ID": 12910, + "SourceStructureID": 21299, + "TargetStructureID": 35811, + "Label": "21299-35811 via Ribbon Synapse from 35833 -> 35827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35833, + "TargetID": 35827, + "Directional": true + } + ] + }, + { + "ID": 12911, + "SourceStructureID": 21299, + "TargetStructureID": 39299, + "Label": "21299-39299 via Ribbon Synapse from 39303 -> 39302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39303, + "TargetID": 39302, + "Directional": true + } + ] + }, + { + "ID": 12912, + "SourceStructureID": 21299, + "TargetStructureID": 44346, + "Label": "21299-44346 via Ribbon Synapse from 44440 -> 44439, 44441 -> 44439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44440, + "TargetID": 44439, + "Directional": true + }, + { + "SourceID": 44441, + "TargetID": 44439, + "Directional": true + } + ] + }, + { + "ID": 12913, + "SourceStructureID": 21299, + "TargetStructureID": 87972, + "Label": "21299-87972 via Ribbon Synapse from 44440 -> 87978", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44440, + "TargetID": 87978, + "Directional": true + } + ] + }, + { + "ID": 12914, + "SourceStructureID": 21299, + "TargetStructureID": 87979, + "Label": "21299-87979 via Ribbon Synapse from 44441 -> 87980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44441, + "TargetID": 87980, + "Directional": true + } + ] + }, + { + "ID": 12915, + "SourceStructureID": 21299, + "TargetStructureID": 88059, + "Label": "21299-88059 via Ribbon Synapse from 48905 -> 88060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48905, + "TargetID": 88060, + "Directional": true + } + ] + }, + { + "ID": 12916, + "SourceStructureID": 21299, + "TargetStructureID": 91737, + "Label": "21299-91737 via BC Conventional Synapse from 92845 -> 92846", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92845, + "TargetID": 92846, + "Directional": true + } + ] + }, + { + "ID": 12917, + "SourceStructureID": 21299, + "TargetStructureID": 98238, + "Label": "21299-98238 via BC Conventional Synapse from 98242 -> 98243", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 98242, + "TargetID": 98243, + "Directional": true + } + ] + }, + { + "ID": 12918, + "SourceStructureID": 21299, + "TargetStructureID": 98838, + "Label": "21299-98838 via Ribbon Synapse from 48851 -> 98840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48851, + "TargetID": 98840, + "Directional": true + } + ] + }, + { + "ID": 12919, + "SourceStructureID": 21314, + "TargetStructureID": 5457, + "Label": "21314-5457 via Conventional from 103235 -> 15343", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103235, + "TargetID": 15343, + "Directional": true + } + ] + }, + { + "ID": 12920, + "SourceStructureID": 21384, + "TargetStructureID": 19571, + "Label": "21384-19571 via Conventional from 22768 -> 22769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22768, + "TargetID": 22769, + "Directional": true + } + ] + }, + { + "ID": 12921, + "SourceStructureID": 21384, + "TargetStructureID": 21779, + "Label": "21384-21779 via Conventional from 32260 -> 32071", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32260, + "TargetID": 32071, + "Directional": true + } + ] + }, + { + "ID": 12922, + "SourceStructureID": 21386, + "TargetStructureID": 21779, + "Label": "21386-21779 via Conventional from 32259 -> 32073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32259, + "TargetID": 32073, + "Directional": true + } + ] + }, + { + "ID": 12923, + "SourceStructureID": 21778, + "TargetStructureID": 21779, + "Label": "21778-21779 via Conventional from 34536 -> 32060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34536, + "TargetID": 32060, + "Directional": true + } + ] + }, + { + "ID": 12924, + "SourceStructureID": 21817, + "TargetStructureID": 443, + "Label": "21817-443 via Conventional from 34612 -> 2031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34612, + "TargetID": 2031, + "Directional": true + } + ] + }, + { + "ID": 12925, + "SourceStructureID": 21824, + "TargetStructureID": 5457, + "Label": "21824-5457 via Conventional from 103236 -> 15345", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103236, + "TargetID": 15345, + "Directional": true + } + ] + }, + { + "ID": 12926, + "SourceStructureID": 21855, + "TargetStructureID": 7461, + "Label": "21855-7461 via Conventional from 41129 -> 30456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41129, + "TargetID": 30456, + "Directional": true + } + ] + }, + { + "ID": 12927, + "SourceStructureID": 22225, + "TargetStructureID": 5545, + "Label": "22225-5545 via Conventional from 128202 -> 128203", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128202, + "TargetID": 128203, + "Directional": true + } + ] + }, + { + "ID": 12928, + "SourceStructureID": 22225, + "TargetStructureID": 128205, + "Label": "22225-128205 via Conventional from 128204 -> 128206", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128204, + "TargetID": 128206, + "Directional": true + } + ] + }, + { + "ID": 12929, + "SourceStructureID": 22227, + "TargetStructureID": 98127, + "Label": "22227-98127 via Conventional from 98847 -> 98846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98847, + "TargetID": 98846, + "Directional": true + } + ] + }, + { + "ID": 12930, + "SourceStructureID": 22228, + "TargetStructureID": 4850, + "Label": "22228-4850 via Conventional from 97962 -> 14540", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97962, + "TargetID": 14540, + "Directional": true + } + ] + }, + { + "ID": 12931, + "SourceStructureID": 22232, + "TargetStructureID": 5295, + "Label": "22232-5295 via Conventional from 68810 -> 59169", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68810, + "TargetID": 59169, + "Directional": true + } + ] + }, + { + "ID": 12932, + "SourceStructureID": 22232, + "TargetStructureID": 5499, + "Label": "22232-5499 via Conventional from 68814 -> 95214, 68819 -> 95215", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68814, + "TargetID": 95214, + "Directional": true + }, + { + "SourceID": 68819, + "TargetID": 95215, + "Directional": true + } + ] + }, + { + "ID": 12933, + "SourceStructureID": 22232, + "TargetStructureID": 5922, + "Label": "22232-5922 via Conventional from 68827 -> 68847, 68850 -> 68851", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68827, + "TargetID": 68847, + "Directional": true + }, + { + "SourceID": 68850, + "TargetID": 68851, + "Directional": true + } + ] + }, + { + "ID": 12934, + "SourceStructureID": 22232, + "TargetStructureID": 8575, + "Label": "22232-8575 via Conventional from 68806 -> 61535", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68806, + "TargetID": 61535, + "Directional": true + } + ] + }, + { + "ID": 12935, + "SourceStructureID": 22349, + "TargetStructureID": 4943, + "Label": "22349-4943 via Conventional from 96462 -> 4957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96462, + "TargetID": 4957, + "Directional": true + } + ] + }, + { + "ID": 12936, + "SourceStructureID": 22358, + "TargetStructureID": 398, + "Label": "22358-398 via Conventional from 37571 -> 37572", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37571, + "TargetID": 37572, + "Directional": true + } + ] + }, + { + "ID": 12937, + "SourceStructureID": 22368, + "TargetStructureID": 591, + "Label": "22368-591 via Conventional from 29788 -> 10079, 46628 -> 46626", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29788, + "TargetID": 10079, + "Directional": true + }, + { + "SourceID": 46628, + "TargetID": 46626, + "Directional": true + } + ] + }, + { + "ID": 12938, + "SourceStructureID": 22374, + "TargetStructureID": 12208, + "Label": "22374-12208 via Cistern Pre from 35736 -> 35737", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 35736, + "TargetID": 35737, + "Directional": true + } + ] + }, + { + "ID": 12939, + "SourceStructureID": 22597, + "TargetStructureID": 98127, + "Label": "22597-98127 via Conventional from 98139 -> 98138", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98139, + "TargetID": 98138, + "Directional": true + } + ] + }, + { + "ID": 12940, + "SourceStructureID": 22634, + "TargetStructureID": 418, + "Label": "22634-418 via Conventional from 22661 -> 129692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 22661, + "TargetID": 129692, + "Directional": true + } + ] + }, + { + "ID": 12941, + "SourceStructureID": 22760, + "TargetStructureID": 179, + "Label": "22760-179 via Conventional from 25310 -> 25309", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25310, + "TargetID": 25309, + "Directional": true + } + ] + }, + { + "ID": 12942, + "SourceStructureID": 22772, + "TargetStructureID": 61439, + "Label": "22772-61439 via Conventional from 61441 -> 61440", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61441, + "TargetID": 61440, + "Directional": true + } + ] + }, + { + "ID": 12943, + "SourceStructureID": 22791, + "TargetStructureID": 5331, + "Label": "22791-5331 via Conventional from 39187 -> 39186", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39187, + "TargetID": 39186, + "Directional": true + } + ] + }, + { + "ID": 12944, + "SourceStructureID": 22974, + "TargetStructureID": 22974, + "Label": "22974-22974 via Conventional from 70263 -> 70261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70263, + "TargetID": 70261, + "Directional": true + } + ] + }, + { + "ID": 12945, + "SourceStructureID": 22994, + "TargetStructureID": 68539, + "Label": "22994-68539 via Ribbon Synapse from 75813 -> 69158, 75931 -> 75932", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75813, + "TargetID": 69158, + "Directional": true + }, + { + "SourceID": 75931, + "TargetID": 75932, + "Directional": true + } + ] + }, + { + "ID": 12946, + "SourceStructureID": 22994, + "TargetStructureID": 75933, + "Label": "22994-75933 via Ribbon Synapse from 75931 -> 75934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75931, + "TargetID": 75934, + "Directional": true + } + ] + }, + { + "ID": 12947, + "SourceStructureID": 22994, + "TargetStructureID": 78909, + "Label": "22994-78909 via Ribbon Synapse from 75813 -> 87548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75813, + "TargetID": 87548, + "Directional": true + } + ] + }, + { + "ID": 12948, + "SourceStructureID": 23323, + "TargetStructureID": 5609, + "Label": "23323-5609 via Conventional from 31391 -> 31390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31391, + "TargetID": 31390, + "Directional": true + } + ] + }, + { + "ID": 12949, + "SourceStructureID": 23512, + "TargetStructureID": 168, + "Label": "23512-168 via Conventional from 23515 -> 125601", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23515, + "TargetID": 125601, + "Directional": true + } + ] + }, + { + "ID": 12950, + "SourceStructureID": 23512, + "TargetStructureID": 170, + "Label": "23512-170 via Conventional from 23514 -> 1371, 23517 -> 1274, 23531 -> 23532, 23534 -> 1296, 23535 -> 89704", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23514, + "TargetID": 1371, + "Directional": true + }, + { + "SourceID": 23517, + "TargetID": 1274, + "Directional": true + }, + { + "SourceID": 23531, + "TargetID": 23532, + "Directional": true + }, + { + "SourceID": 23534, + "TargetID": 1296, + "Directional": true + }, + { + "SourceID": 23535, + "TargetID": 89704, + "Directional": true + } + ] + }, + { + "ID": 12951, + "SourceStructureID": 23512, + "TargetStructureID": 1724, + "Label": "23512-1724 via Conventional from 23540 -> 4008, 23542 -> 1742, 101787 -> 101788", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23540, + "TargetID": 4008, + "Directional": true + }, + { + "SourceID": 23542, + "TargetID": 1742, + "Directional": true + }, + { + "SourceID": 101787, + "TargetID": 101788, + "Directional": true + } + ] + }, + { + "ID": 12952, + "SourceStructureID": 23512, + "TargetStructureID": 4569, + "Label": "23512-4569 via Conventional from 23535 -> 52517, 23536 -> 99075, 23539 -> 23780", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23535, + "TargetID": 52517, + "Directional": true + }, + { + "SourceID": 23536, + "TargetID": 99075, + "Directional": true + }, + { + "SourceID": 23539, + "TargetID": 23780, + "Directional": true + } + ] + }, + { + "ID": 12953, + "SourceStructureID": 23512, + "TargetStructureID": 5278, + "Label": "23512-5278 via Conventional from 99313 -> 20113", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99313, + "TargetID": 20113, + "Directional": true + } + ] + }, + { + "ID": 12954, + "SourceStructureID": 23512, + "TargetStructureID": 5530, + "Label": "23512-5530 via Conventional from 23520 -> 76494", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23520, + "TargetID": 76494, + "Directional": true + } + ] + }, + { + "ID": 12955, + "SourceStructureID": 23512, + "TargetStructureID": 6156, + "Label": "23512-6156 via Conventional from 133160 -> 133159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133160, + "TargetID": 133159, + "Directional": true + } + ] + }, + { + "ID": 12956, + "SourceStructureID": 23512, + "TargetStructureID": 10596, + "Label": "23512-10596 via Conventional from 23521 -> 33213", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23521, + "TargetID": 33213, + "Directional": true + } + ] + }, + { + "ID": 12957, + "SourceStructureID": 23512, + "TargetStructureID": 33675, + "Label": "23512-33675 via Conventional from 33681 -> 33680", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33681, + "TargetID": 33680, + "Directional": true + } + ] + }, + { + "ID": 12958, + "SourceStructureID": 23512, + "TargetStructureID": 82677, + "Label": "23512-82677 via Conventional from 83886 -> 83887", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83886, + "TargetID": 83887, + "Directional": true + } + ] + }, + { + "ID": 12959, + "SourceStructureID": 23566, + "TargetStructureID": 168, + "Label": "23566-168 via Conventional from 23573 -> 23576, 23574 -> 23575", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23573, + "TargetID": 23576, + "Directional": true + }, + { + "SourceID": 23574, + "TargetID": 23575, + "Directional": true + } + ] + }, + { + "ID": 12960, + "SourceStructureID": 23566, + "TargetStructureID": 170, + "Label": "23566-170 via Conventional from 88393 -> 88394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88393, + "TargetID": 88394, + "Directional": true + } + ] + }, + { + "ID": 12961, + "SourceStructureID": 23566, + "TargetStructureID": 4569, + "Label": "23566-4569 via Conventional from 23570 -> 23565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23570, + "TargetID": 23565, + "Directional": true + } + ] + }, + { + "ID": 12962, + "SourceStructureID": 23836, + "TargetStructureID": 345, + "Label": "23836-345 via Conventional from 23854 -> 64334", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23854, + "TargetID": 64334, + "Directional": true + } + ] + }, + { + "ID": 12963, + "SourceStructureID": 23836, + "TargetStructureID": 606, + "Label": "23836-606 via Conventional from 23837 -> 10512, 23838 -> 10510, 23847 -> 23848, 23863 -> 54138, 23866 -> 48126, 51776 -> 51775, 53643 -> 53645, 53912 -> 53909, 53914 -> 44234, 53927 -> 53926, 53935 -> 53936, 54561 -> 54562", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23837, + "TargetID": 10512, + "Directional": true + }, + { + "SourceID": 23838, + "TargetID": 10510, + "Directional": true + }, + { + "SourceID": 23847, + "TargetID": 23848, + "Directional": true + }, + { + "SourceID": 23863, + "TargetID": 54138, + "Directional": true + }, + { + "SourceID": 23866, + "TargetID": 48126, + "Directional": true + }, + { + "SourceID": 51776, + "TargetID": 51775, + "Directional": true + }, + { + "SourceID": 53643, + "TargetID": 53645, + "Directional": true + }, + { + "SourceID": 53912, + "TargetID": 53909, + "Directional": true + }, + { + "SourceID": 53914, + "TargetID": 44234, + "Directional": true + }, + { + "SourceID": 53927, + "TargetID": 53926, + "Directional": true + }, + { + "SourceID": 53935, + "TargetID": 53936, + "Directional": true + }, + { + "SourceID": 54561, + "TargetID": 54562, + "Directional": true + } + ] + }, + { + "ID": 12964, + "SourceStructureID": 23836, + "TargetStructureID": 5468, + "Label": "23836-5468 via Conventional from 23867 -> 23877", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23867, + "TargetID": 23877, + "Directional": true + } + ] + }, + { + "ID": 12965, + "SourceStructureID": 23836, + "TargetStructureID": 5530, + "Label": "23836-5530 via Conventional from 23839 -> 23845", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23839, + "TargetID": 23845, + "Directional": true + } + ] + }, + { + "ID": 12966, + "SourceStructureID": 23836, + "TargetStructureID": 5531, + "Label": "23836-5531 via Conventional from 106244 -> 59572", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106244, + "TargetID": 59572, + "Directional": true + } + ] + }, + { + "ID": 12967, + "SourceStructureID": 23836, + "TargetStructureID": 5601, + "Label": "23836-5601 via Conventional from 23865 -> 127422, 127408 -> 127406", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23865, + "TargetID": 127422, + "Directional": true + }, + { + "SourceID": 127408, + "TargetID": 127406, + "Directional": true + } + ] + }, + { + "ID": 12968, + "SourceStructureID": 23836, + "TargetStructureID": 7594, + "Label": "23836-7594 via Conventional from 23864 -> 7609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23864, + "TargetID": 7609, + "Directional": true + } + ] + }, + { + "ID": 12969, + "SourceStructureID": 23836, + "TargetStructureID": 23870, + "Label": "23836-23870 via Conventional from 23868 -> 92944, 23871 -> 23872", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 23868, + "TargetID": 92944, + "Directional": true + }, + { + "SourceID": 23871, + "TargetID": 23872, + "Directional": true + } + ] + }, + { + "ID": 12970, + "SourceStructureID": 23836, + "TargetStructureID": 74047, + "Label": "23836-74047 via Conventional from 74325 -> 74323", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74325, + "TargetID": 74323, + "Directional": true + } + ] + }, + { + "ID": 12971, + "SourceStructureID": 24148, + "TargetStructureID": 5562, + "Label": "24148-5562 via Conventional from 76635 -> 76634", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76635, + "TargetID": 76634, + "Directional": true + } + ] + }, + { + "ID": 12972, + "SourceStructureID": 24174, + "TargetStructureID": 5598, + "Label": "24174-5598 via Conventional from 24181 -> 115033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24181, + "TargetID": 115033, + "Directional": true + } + ] + }, + { + "ID": 12973, + "SourceStructureID": 24174, + "TargetStructureID": 5609, + "Label": "24174-5609 via Conventional from 24175 -> 20646", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24175, + "TargetID": 20646, + "Directional": true + } + ] + }, + { + "ID": 12974, + "SourceStructureID": 24174, + "TargetStructureID": 5641, + "Label": "24174-5641 via Conventional from 24177 -> 20678", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24177, + "TargetID": 20678, + "Directional": true + } + ] + }, + { + "ID": 12975, + "SourceStructureID": 24241, + "TargetStructureID": 175, + "Label": "24241-175 via Conventional from 24258 -> 24288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24258, + "TargetID": 24288, + "Directional": true + } + ] + }, + { + "ID": 12976, + "SourceStructureID": 24241, + "TargetStructureID": 178, + "Label": "24241-178 via Conventional from 24260 -> 3263, 24261 -> 3261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24260, + "TargetID": 3263, + "Directional": true + }, + { + "SourceID": 24261, + "TargetID": 3261, + "Directional": true + } + ] + }, + { + "ID": 12977, + "SourceStructureID": 24241, + "TargetStructureID": 325, + "Label": "24241-325 via Conventional from 24283 -> 31943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24283, + "TargetID": 31943, + "Directional": true + } + ] + }, + { + "ID": 12978, + "SourceStructureID": 24241, + "TargetStructureID": 426, + "Label": "24241-426 via Conventional from 24276 -> 21583, 24277 -> 21584", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24276, + "TargetID": 21583, + "Directional": true + }, + { + "SourceID": 24277, + "TargetID": 21584, + "Directional": true + } + ] + }, + { + "ID": 12979, + "SourceStructureID": 24241, + "TargetStructureID": 9643, + "Label": "24241-9643 via Conventional from 24280 -> 9677", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24280, + "TargetID": 9677, + "Directional": true + } + ] + }, + { + "ID": 12980, + "SourceStructureID": 24294, + "TargetStructureID": 7054, + "Label": "24294-7054 via Conventional from 159626 -> 9631, 159628 -> 159627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159626, + "TargetID": 9631, + "Directional": true + }, + { + "SourceID": 159628, + "TargetID": 159627, + "Directional": true + } + ] + }, + { + "ID": 12981, + "SourceStructureID": 24303, + "TargetStructureID": 598, + "Label": "24303-598 via Ribbon Synapse from 38782 -> 38775, 38784 -> 38783", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38782, + "TargetID": 38775, + "Directional": true + }, + { + "SourceID": 38784, + "TargetID": 38783, + "Directional": true + } + ] + }, + { + "ID": 12982, + "SourceStructureID": 24303, + "TargetStructureID": 606, + "Label": "24303-606 via Ribbon Synapse from 38780 -> 38779", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38780, + "TargetID": 38779, + "Directional": true + } + ] + }, + { + "ID": 12983, + "SourceStructureID": 24303, + "TargetStructureID": 9769, + "Label": "24303-9769 via Ribbon Synapse from 30073 -> 30074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30073, + "TargetID": 30074, + "Directional": true + } + ] + }, + { + "ID": 12984, + "SourceStructureID": 24366, + "TargetStructureID": 12408, + "Label": "24366-12408 via Ribbon Synapse from 24377 -> 12431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24377, + "TargetID": 12431, + "Directional": true + } + ] + }, + { + "ID": 12985, + "SourceStructureID": 24366, + "TargetStructureID": 24381, + "Label": "24366-24381 via Ribbon Synapse from 24385 -> 24384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 24385, + "TargetID": 24384, + "Directional": true + } + ] + }, + { + "ID": 12986, + "SourceStructureID": 24381, + "TargetStructureID": 9769, + "Label": "24381-9769 via Conventional from 24382 -> 12401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24382, + "TargetID": 12401, + "Directional": true + } + ] + }, + { + "ID": 12987, + "SourceStructureID": 24401, + "TargetStructureID": 598, + "Label": "24401-598 via Ribbon Synapse from 38801 -> 38802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38801, + "TargetID": 38802, + "Directional": true + } + ] + }, + { + "ID": 12988, + "SourceStructureID": 24401, + "TargetStructureID": 6155, + "Label": "24401-6155 via Ribbon Synapse from 104947 -> 104948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 104947, + "TargetID": 104948, + "Directional": true + } + ] + }, + { + "ID": 12989, + "SourceStructureID": 24401, + "TargetStructureID": 8575, + "Label": "24401-8575 via BC Conventional Synapse from 34802 -> 61561, 48107 -> 38618, 62383 -> 62382, 63011 -> 21646, 64348 -> 64347", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34802, + "TargetID": 61561, + "Directional": true + }, + { + "SourceID": 48107, + "TargetID": 38618, + "Directional": true + }, + { + "SourceID": 62383, + "TargetID": 62382, + "Directional": true + }, + { + "SourceID": 63011, + "TargetID": 21646, + "Directional": true + }, + { + "SourceID": 64348, + "TargetID": 64347, + "Directional": true + } + ] + }, + { + "ID": 12990, + "SourceStructureID": 24401, + "TargetStructureID": 8575, + "Label": "24401-8575 via Ribbon Synapse from 32262 -> 21646", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32262, + "TargetID": 21646, + "Directional": true + } + ] + }, + { + "ID": 12991, + "SourceStructureID": 24401, + "TargetStructureID": 11485, + "Label": "24401-11485 via Ribbon Synapse from 32266 -> 11486, 32268 -> 11486", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32266, + "TargetID": 11486, + "Directional": true + }, + { + "SourceID": 32268, + "TargetID": 11486, + "Directional": true + } + ] + }, + { + "ID": 12992, + "SourceStructureID": 24401, + "TargetStructureID": 15796, + "Label": "24401-15796 via Ribbon Synapse from 34751 -> 19834", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34751, + "TargetID": 19834, + "Directional": true + } + ] + }, + { + "ID": 12993, + "SourceStructureID": 24401, + "TargetStructureID": 22232, + "Label": "24401-22232 via Ribbon Synapse from 48194 -> 68807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48194, + "TargetID": 68807, + "Directional": true + } + ] + }, + { + "ID": 12994, + "SourceStructureID": 24401, + "TargetStructureID": 22974, + "Label": "24401-22974 via Ribbon Synapse from 48068 -> 15478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48068, + "TargetID": 15478, + "Directional": true + } + ] + }, + { + "ID": 12995, + "SourceStructureID": 24401, + "TargetStructureID": 33127, + "Label": "24401-33127 via Ribbon Synapse from 34803 -> 34804", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34803, + "TargetID": 34804, + "Directional": true + } + ] + }, + { + "ID": 12996, + "SourceStructureID": 24401, + "TargetStructureID": 35969, + "Label": "24401-35969 via Ribbon Synapse from 33070 -> 35971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 33070, + "TargetID": 35971, + "Directional": true + } + ] + }, + { + "ID": 12997, + "SourceStructureID": 24401, + "TargetStructureID": 39841, + "Label": "24401-39841 via Ribbon Synapse from 39842 -> 39843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39842, + "TargetID": 39843, + "Directional": true + } + ] + }, + { + "ID": 12998, + "SourceStructureID": 24401, + "TargetStructureID": 47104, + "Label": "24401-47104 via Ribbon Synapse from 47128 -> 47129", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47128, + "TargetID": 47129, + "Directional": true + } + ] + }, + { + "ID": 12999, + "SourceStructureID": 24401, + "TargetStructureID": 61864, + "Label": "24401-61864 via Ribbon Synapse from 48138 -> 69310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48138, + "TargetID": 69310, + "Directional": true + } + ] + }, + { + "ID": 13000, + "SourceStructureID": 24401, + "TargetStructureID": 129666, + "Label": "24401-129666 via Ribbon Synapse from 34798 -> 129671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34798, + "TargetID": 129671, + "Directional": true + } + ] + }, + { + "ID": 13001, + "SourceStructureID": 24909, + "TargetStructureID": 5622, + "Label": "24909-5622 via Conventional from 24918 -> 24916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24918, + "TargetID": 24916, + "Directional": true + } + ] + }, + { + "ID": 13002, + "SourceStructureID": 24909, + "TargetStructureID": 5671, + "Label": "24909-5671 via Conventional from 24919 -> 24933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24919, + "TargetID": 24933, + "Directional": true + } + ] + }, + { + "ID": 13003, + "SourceStructureID": 24947, + "TargetStructureID": 7050, + "Label": "24947-7050 via Conventional from 24948 -> 24946", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 24948, + "TargetID": 24946, + "Directional": true + } + ] + }, + { + "ID": 13004, + "SourceStructureID": 25155, + "TargetStructureID": 606, + "Label": "25155-606 via Ribbon Synapse from 34639 -> 44308, 38206 -> 44324, 44335 -> 44334, 50709 -> 50711, 53751 -> 44254, 54366 -> 54367, 54388 -> 54389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 34639, + "TargetID": 44308, + "Directional": true + }, + { + "SourceID": 38206, + "TargetID": 44324, + "Directional": true + }, + { + "SourceID": 44335, + "TargetID": 44334, + "Directional": true + }, + { + "SourceID": 50709, + "TargetID": 50711, + "Directional": true + }, + { + "SourceID": 53751, + "TargetID": 44254, + "Directional": true + }, + { + "SourceID": 54366, + "TargetID": 54367, + "Directional": true + }, + { + "SourceID": 54388, + "TargetID": 54389, + "Directional": true + } + ] + }, + { + "ID": 13005, + "SourceStructureID": 25155, + "TargetStructureID": 5451, + "Label": "25155-5451 via BC Conventional Synapse from 55941 -> 55942", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55941, + "TargetID": 55942, + "Directional": true + } + ] + }, + { + "ID": 13006, + "SourceStructureID": 25155, + "TargetStructureID": 7594, + "Label": "25155-7594 via Ribbon Synapse from 25156 -> 25153, 38207 -> 38208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 25156, + "TargetID": 25153, + "Directional": true + }, + { + "SourceID": 38207, + "TargetID": 38208, + "Directional": true + } + ] + }, + { + "ID": 13007, + "SourceStructureID": 25155, + "TargetStructureID": 9769, + "Label": "25155-9769 via Ribbon Synapse from 29883 -> 29884", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29883, + "TargetID": 29884, + "Directional": true + } + ] + }, + { + "ID": 13008, + "SourceStructureID": 25155, + "TargetStructureID": 35188, + "Label": "25155-35188 via Ribbon Synapse from 38230 -> 38229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38230, + "TargetID": 38229, + "Directional": true + } + ] + }, + { + "ID": 13009, + "SourceStructureID": 25155, + "TargetStructureID": 35308, + "Label": "25155-35308 via Ribbon Synapse from 35315 -> 35312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35315, + "TargetID": 35312, + "Directional": true + } + ] + }, + { + "ID": 13010, + "SourceStructureID": 25182, + "TargetStructureID": 11229, + "Label": "25182-11229 via Conventional from 25183 -> 25184, 25189 -> 15631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25183, + "TargetID": 25184, + "Directional": true + }, + { + "SourceID": 25189, + "TargetID": 15631, + "Directional": true + } + ] + }, + { + "ID": 13011, + "SourceStructureID": 25293, + "TargetStructureID": 5528, + "Label": "25293-5528 via Conventional from 25294 -> 25295, 25298 -> 8258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25294, + "TargetID": 25295, + "Directional": true + }, + { + "SourceID": 25298, + "TargetID": 8258, + "Directional": true + } + ] + }, + { + "ID": 13012, + "SourceStructureID": 25293, + "TargetStructureID": 5530, + "Label": "25293-5530 via Conventional from 81128 -> 81129", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81128, + "TargetID": 81129, + "Directional": true + } + ] + }, + { + "ID": 13013, + "SourceStructureID": 25293, + "TargetStructureID": 5531, + "Label": "25293-5531 via Conventional from 114739 -> 114740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114739, + "TargetID": 114740, + "Directional": true + } + ] + }, + { + "ID": 13014, + "SourceStructureID": 25327, + "TargetStructureID": 519, + "Label": "25327-519 via Conventional from 25328 -> 25337, 25329 -> 25336, 25330 -> 25335, 25334 -> 16517", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25328, + "TargetID": 25337, + "Directional": true + }, + { + "SourceID": 25329, + "TargetID": 25336, + "Directional": true + }, + { + "SourceID": 25330, + "TargetID": 25335, + "Directional": true + }, + { + "SourceID": 25334, + "TargetID": 16517, + "Directional": true + } + ] + }, + { + "ID": 13015, + "SourceStructureID": 25327, + "TargetStructureID": 11401, + "Label": "25327-11401 via Conventional from 25340 -> 25341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25340, + "TargetID": 25341, + "Directional": true + } + ] + }, + { + "ID": 13016, + "SourceStructureID": 25342, + "TargetStructureID": 519, + "Label": "25342-519 via Conventional from 25343 -> 25344, 159769 -> 159768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25343, + "TargetID": 25344, + "Directional": true + }, + { + "SourceID": 159769, + "TargetID": 159768, + "Directional": true + } + ] + }, + { + "ID": 13017, + "SourceStructureID": 25342, + "TargetStructureID": 11401, + "Label": "25342-11401 via Conventional from 25347 -> 25348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25347, + "TargetID": 25348, + "Directional": true + } + ] + }, + { + "ID": 13018, + "SourceStructureID": 25350, + "TargetStructureID": 519, + "Label": "25350-519 via Conventional from 25351 -> 25349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25351, + "TargetID": 25349, + "Directional": true + } + ] + }, + { + "ID": 13019, + "SourceStructureID": 25352, + "TargetStructureID": 469, + "Label": "25352-469 via Conventional from 32287 -> 32285", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32287, + "TargetID": 32285, + "Directional": true + } + ] + }, + { + "ID": 13020, + "SourceStructureID": 25352, + "TargetStructureID": 519, + "Label": "25352-519 via Conventional from 25353 -> 25338", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25353, + "TargetID": 25338, + "Directional": true + } + ] + }, + { + "ID": 13021, + "SourceStructureID": 25352, + "TargetStructureID": 8749, + "Label": "25352-8749 via Conventional from 32290 -> 32289", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32290, + "TargetID": 32289, + "Directional": true + } + ] + }, + { + "ID": 13022, + "SourceStructureID": 25359, + "TargetStructureID": 519, + "Label": "25359-519 via Conventional from 25360 -> 16529, 25361 -> 25362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25360, + "TargetID": 16529, + "Directional": true + }, + { + "SourceID": 25361, + "TargetID": 25362, + "Directional": true + } + ] + }, + { + "ID": 13023, + "SourceStructureID": 25364, + "TargetStructureID": 518, + "Label": "25364-518 via Conventional from 25366 -> 3509", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25366, + "TargetID": 3509, + "Directional": true + } + ] + }, + { + "ID": 13024, + "SourceStructureID": 25364, + "TargetStructureID": 519, + "Label": "25364-519 via Conventional from 25365 -> 9244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25365, + "TargetID": 9244, + "Directional": true + } + ] + }, + { + "ID": 13025, + "SourceStructureID": 25367, + "TargetStructureID": 469, + "Label": "25367-469 via Conventional from 82357 -> 4670, 82359 -> 82358", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82357, + "TargetID": 4670, + "Directional": true + }, + { + "SourceID": 82359, + "TargetID": 82358, + "Directional": true + } + ] + }, + { + "ID": 13026, + "SourceStructureID": 25367, + "TargetStructureID": 485, + "Label": "25367-485 via Conventional from 25370 -> 25371", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25370, + "TargetID": 25371, + "Directional": true + } + ] + }, + { + "ID": 13027, + "SourceStructureID": 25367, + "TargetStructureID": 519, + "Label": "25367-519 via Conventional from 25368 -> 9253", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25368, + "TargetID": 9253, + "Directional": true + } + ] + }, + { + "ID": 13028, + "SourceStructureID": 25367, + "TargetStructureID": 593, + "Label": "25367-593 via Conventional from 68027 -> 68028", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68027, + "TargetID": 68028, + "Directional": true + } + ] + }, + { + "ID": 13029, + "SourceStructureID": 25367, + "TargetStructureID": 5562, + "Label": "25367-5562 via Conventional from 82348 -> 79894", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82348, + "TargetID": 79894, + "Directional": true + } + ] + }, + { + "ID": 13030, + "SourceStructureID": 25367, + "TargetStructureID": 6156, + "Label": "25367-6156 via Conventional from 82346 -> 82347", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82346, + "TargetID": 82347, + "Directional": true + } + ] + }, + { + "ID": 13031, + "SourceStructureID": 25367, + "TargetStructureID": 82353, + "Label": "25367-82353 via Conventional from 82352 -> 82354", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82352, + "TargetID": 82354, + "Directional": true + } + ] + }, + { + "ID": 13032, + "SourceStructureID": 25374, + "TargetStructureID": 514, + "Label": "25374-514 via Conventional from 25376 -> 25377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25376, + "TargetID": 25377, + "Directional": true + } + ] + }, + { + "ID": 13033, + "SourceStructureID": 25382, + "TargetStructureID": 519, + "Label": "25382-519 via Conventional from 25383 -> 25384", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25383, + "TargetID": 25384, + "Directional": true + } + ] + }, + { + "ID": 13034, + "SourceStructureID": 25392, + "TargetStructureID": 485, + "Label": "25392-485 via Conventional from 32295 -> 32296", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32295, + "TargetID": 32296, + "Directional": true + } + ] + }, + { + "ID": 13035, + "SourceStructureID": 25392, + "TargetStructureID": 519, + "Label": "25392-519 via Conventional from 25393 -> 25394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25393, + "TargetID": 25394, + "Directional": true + } + ] + }, + { + "ID": 13036, + "SourceStructureID": 25392, + "TargetStructureID": 606, + "Label": "25392-606 via Conventional from 32299 -> 32300", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32299, + "TargetID": 32300, + "Directional": true + } + ] + }, + { + "ID": 13037, + "SourceStructureID": 25392, + "TargetStructureID": 906, + "Label": "25392-906 via Conventional from 27340 -> 15237", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27340, + "TargetID": 15237, + "Directional": true + } + ] + }, + { + "ID": 13038, + "SourceStructureID": 25392, + "TargetStructureID": 5315, + "Label": "25392-5315 via Conventional from 32303 -> 26948", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32303, + "TargetID": 26948, + "Directional": true + } + ] + }, + { + "ID": 13039, + "SourceStructureID": 25402, + "TargetStructureID": 369, + "Label": "25402-369 via Conventional from 100655 -> 100657", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100655, + "TargetID": 100657, + "Directional": true + } + ] + }, + { + "ID": 13040, + "SourceStructureID": 25402, + "TargetStructureID": 419, + "Label": "25402-419 via Conventional from 100642 -> 20368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100642, + "TargetID": 20368, + "Directional": true + } + ] + }, + { + "ID": 13041, + "SourceStructureID": 25402, + "TargetStructureID": 519, + "Label": "25402-519 via Conventional from 25403 -> 25404", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25403, + "TargetID": 25404, + "Directional": true + } + ] + }, + { + "ID": 13042, + "SourceStructureID": 25402, + "TargetStructureID": 12897, + "Label": "25402-12897 via Conventional from 100746 -> 100747", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100746, + "TargetID": 100747, + "Directional": true + } + ] + }, + { + "ID": 13043, + "SourceStructureID": 25402, + "TargetStructureID": 101369, + "Label": "25402-101369 via Conventional from 100663 -> 101370", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100663, + "TargetID": 101370, + "Directional": true + } + ] + }, + { + "ID": 13044, + "SourceStructureID": 25405, + "TargetStructureID": 519, + "Label": "25405-519 via Conventional from 25406 -> 3582", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25406, + "TargetID": 3582, + "Directional": true + } + ] + }, + { + "ID": 13045, + "SourceStructureID": 25405, + "TargetStructureID": 2610, + "Label": "25405-2610 via Conventional from 25407 -> 17177", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25407, + "TargetID": 17177, + "Directional": true + } + ] + }, + { + "ID": 13046, + "SourceStructureID": 25410, + "TargetStructureID": 8749, + "Label": "25410-8749 via Conventional from 25411 -> 8862, 25412 -> 8855, 25413 -> 25414, 123208 -> 8863", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25411, + "TargetID": 8862, + "Directional": true + }, + { + "SourceID": 25412, + "TargetID": 8855, + "Directional": true + }, + { + "SourceID": 25413, + "TargetID": 25414, + "Directional": true + }, + { + "SourceID": 123208, + "TargetID": 8863, + "Directional": true + } + ] + }, + { + "ID": 13047, + "SourceStructureID": 25429, + "TargetStructureID": 519, + "Label": "25429-519 via Conventional from 25431 -> 25432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25431, + "TargetID": 25432, + "Directional": true + } + ] + }, + { + "ID": 13048, + "SourceStructureID": 25440, + "TargetStructureID": 10943, + "Label": "25440-10943 via Touch from 25454 -> 25453", + "Type": "Touch", + "Directional": true, + "Links": [ + { + "SourceID": 25454, + "TargetID": 25453, + "Directional": true + } + ] + }, + { + "ID": 13049, + "SourceStructureID": 25440, + "TargetStructureID": 11031, + "Label": "25440-11031 via Touch from 25441 -> 25452", + "Type": "Touch", + "Directional": true, + "Links": [ + { + "SourceID": 25441, + "TargetID": 25452, + "Directional": true + } + ] + }, + { + "ID": 13050, + "SourceStructureID": 25466, + "TargetStructureID": 485, + "Label": "25466-485 via Conventional from 32239 -> 32240, 32241 -> 32243", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32239, + "TargetID": 32240, + "Directional": true + }, + { + "SourceID": 32241, + "TargetID": 32243, + "Directional": true + } + ] + }, + { + "ID": 13051, + "SourceStructureID": 25466, + "TargetStructureID": 519, + "Label": "25466-519 via Conventional from 25467 -> 5011, 25468 -> 25469, 25473 -> 3612, 32238 -> 32237", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25467, + "TargetID": 5011, + "Directional": true + }, + { + "SourceID": 25468, + "TargetID": 25469, + "Directional": true + }, + { + "SourceID": 25473, + "TargetID": 3612, + "Directional": true + }, + { + "SourceID": 32238, + "TargetID": 32237, + "Directional": true + } + ] + }, + { + "ID": 13052, + "SourceStructureID": 25529, + "TargetStructureID": 519, + "Label": "25529-519 via Conventional from 25531 -> 25532", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25531, + "TargetID": 25532, + "Directional": true + } + ] + }, + { + "ID": 13053, + "SourceStructureID": 25529, + "TargetStructureID": 2610, + "Label": "25529-2610 via Conventional from 25543 -> 13819", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25543, + "TargetID": 13819, + "Directional": true + } + ] + }, + { + "ID": 13054, + "SourceStructureID": 25529, + "TargetStructureID": 5017, + "Label": "25529-5017 via Conventional from 25535 -> 13822", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25535, + "TargetID": 13822, + "Directional": true + } + ] + }, + { + "ID": 13055, + "SourceStructureID": 25551, + "TargetStructureID": 519, + "Label": "25551-519 via Conventional from 25552 -> 25553", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25552, + "TargetID": 25553, + "Directional": true + } + ] + }, + { + "ID": 13056, + "SourceStructureID": 25551, + "TargetStructureID": 22554, + "Label": "25551-22554 via Conventional from 123154 -> 123155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123154, + "TargetID": 123155, + "Directional": true + } + ] + }, + { + "ID": 13057, + "SourceStructureID": 25561, + "TargetStructureID": 519, + "Label": "25561-519 via Conventional from 25562 -> 3592", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25562, + "TargetID": 3592, + "Directional": true + } + ] + }, + { + "ID": 13058, + "SourceStructureID": 25575, + "TargetStructureID": 519, + "Label": "25575-519 via Conventional from 25576 -> 25633, 25578 -> 25579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25576, + "TargetID": 25633, + "Directional": true + }, + { + "SourceID": 25578, + "TargetID": 25579, + "Directional": true + } + ] + }, + { + "ID": 13059, + "SourceStructureID": 25575, + "TargetStructureID": 5017, + "Label": "25575-5017 via Conventional from 25584 -> 25585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25584, + "TargetID": 25585, + "Directional": true + } + ] + }, + { + "ID": 13060, + "SourceStructureID": 25575, + "TargetStructureID": 10959, + "Label": "25575-10959 via Conventional from 25665 -> 25666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25665, + "TargetID": 25666, + "Directional": true + } + ] + }, + { + "ID": 13061, + "SourceStructureID": 25575, + "TargetStructureID": 25575, + "Label": "25575-25575 via Conventional from 25576 -> 25577", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25576, + "TargetID": 25577, + "Directional": true + } + ] + }, + { + "ID": 13062, + "SourceStructureID": 25669, + "TargetStructureID": 519, + "Label": "25669-519 via Conventional from 25680 -> 25681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25680, + "TargetID": 25681, + "Directional": true + } + ] + }, + { + "ID": 13063, + "SourceStructureID": 25669, + "TargetStructureID": 6169, + "Label": "25669-6169 via Conventional from 123143 -> 123144, 123145 -> 18396", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123143, + "TargetID": 123144, + "Directional": true + }, + { + "SourceID": 123145, + "TargetID": 18396, + "Directional": true + } + ] + }, + { + "ID": 13064, + "SourceStructureID": 25688, + "TargetStructureID": 294, + "Label": "25688-294 via Conventional from 25693 -> 25694, 25695 -> 25696, 123150 -> 123151", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25693, + "TargetID": 25694, + "Directional": true + }, + { + "SourceID": 25695, + "TargetID": 25696, + "Directional": true + }, + { + "SourceID": 123150, + "TargetID": 123151, + "Directional": true + } + ] + }, + { + "ID": 13065, + "SourceStructureID": 25688, + "TargetStructureID": 410, + "Label": "25688-410 via Conventional from 25697 -> 25698", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25697, + "TargetID": 25698, + "Directional": true + } + ] + }, + { + "ID": 13066, + "SourceStructureID": 25688, + "TargetStructureID": 519, + "Label": "25688-519 via Conventional from 25689 -> 25690, 25691 -> 25692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25689, + "TargetID": 25690, + "Directional": true + }, + { + "SourceID": 25691, + "TargetID": 25692, + "Directional": true + } + ] + }, + { + "ID": 13067, + "SourceStructureID": 25858, + "TargetStructureID": 519, + "Label": "25858-519 via Conventional from 25859 -> 25860", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25859, + "TargetID": 25860, + "Directional": true + } + ] + }, + { + "ID": 13068, + "SourceStructureID": 25861, + "TargetStructureID": 519, + "Label": "25861-519 via Conventional from 25862 -> 25863", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25862, + "TargetID": 25863, + "Directional": true + } + ] + }, + { + "ID": 13069, + "SourceStructureID": 25861, + "TargetStructureID": 6156, + "Label": "25861-6156 via Conventional from 133275 -> 23167", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133275, + "TargetID": 23167, + "Directional": true + } + ] + }, + { + "ID": 13070, + "SourceStructureID": 25865, + "TargetStructureID": 483, + "Label": "25865-483 via Conventional from 133438 -> 133437", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133438, + "TargetID": 133437, + "Directional": true + } + ] + }, + { + "ID": 13071, + "SourceStructureID": 25865, + "TargetStructureID": 519, + "Label": "25865-519 via Conventional from 25866 -> 25867, 32245 -> 32244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25866, + "TargetID": 25867, + "Directional": true + }, + { + "SourceID": 32245, + "TargetID": 32244, + "Directional": true + } + ] + }, + { + "ID": 13072, + "SourceStructureID": 25865, + "TargetStructureID": 24401, + "Label": "25865-24401 via Conventional from 32255 -> 32269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32255, + "TargetID": 32269, + "Directional": true + } + ] + }, + { + "ID": 13073, + "SourceStructureID": 25865, + "TargetStructureID": 26079, + "Label": "25865-26079 via Conventional from 32248 -> 29817, 32253 -> 32252, 32270 -> 26191", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32248, + "TargetID": 29817, + "Directional": true + }, + { + "SourceID": 32253, + "TargetID": 32252, + "Directional": true + }, + { + "SourceID": 32270, + "TargetID": 26191, + "Directional": true + } + ] + }, + { + "ID": 13074, + "SourceStructureID": 25869, + "TargetStructureID": 485, + "Label": "25869-485 via Conventional from 45667 -> 45668", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45667, + "TargetID": 45668, + "Directional": true + } + ] + }, + { + "ID": 13075, + "SourceStructureID": 25869, + "TargetStructureID": 519, + "Label": "25869-519 via Conventional from 25870 -> 25871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25870, + "TargetID": 25871, + "Directional": true + } + ] + }, + { + "ID": 13076, + "SourceStructureID": 25869, + "TargetStructureID": 6912, + "Label": "25869-6912 via Conventional from 98608 -> 6952", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98608, + "TargetID": 6952, + "Directional": true + } + ] + }, + { + "ID": 13077, + "SourceStructureID": 25879, + "TargetStructureID": 9769, + "Label": "25879-9769 via Conventional from 25887 -> 25876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25887, + "TargetID": 25876, + "Directional": true + } + ] + }, + { + "ID": 13078, + "SourceStructureID": 26079, + "TargetStructureID": 7568, + "Label": "26079-7568 via Ribbon Synapse from 27028 -> 27027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 27028, + "TargetID": 27027, + "Directional": true + } + ] + }, + { + "ID": 13079, + "SourceStructureID": 26079, + "TargetStructureID": 9769, + "Label": "26079-9769 via Ribbon Synapse from 29813 -> 29812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29813, + "TargetID": 29812, + "Directional": true + } + ] + }, + { + "ID": 13080, + "SourceStructureID": 26079, + "TargetStructureID": 15796, + "Label": "26079-15796 via Ribbon Synapse from 29813 -> 29816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 29813, + "TargetID": 29816, + "Directional": true + } + ] + }, + { + "ID": 13081, + "SourceStructureID": 26079, + "TargetStructureID": 25865, + "Label": "26079-25865 via Ribbon Synapse from 32247 -> 32246, 32250 -> 32251, 32272 -> 32271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32247, + "TargetID": 32246, + "Directional": true + }, + { + "SourceID": 32250, + "TargetID": 32251, + "Directional": true + }, + { + "SourceID": 32272, + "TargetID": 32271, + "Directional": true + } + ] + }, + { + "ID": 13082, + "SourceStructureID": 26079, + "TargetStructureID": 35894, + "Label": "26079-35894 via Ribbon Synapse from 35909 -> 35908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35909, + "TargetID": 35908, + "Directional": true + } + ] + }, + { + "ID": 13083, + "SourceStructureID": 26079, + "TargetStructureID": 47013, + "Label": "26079-47013 via Ribbon Synapse from 47022 -> 47021, 47034 -> 47031, 47035 -> 47033, 47044 -> 47041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47022, + "TargetID": 47021, + "Directional": true + }, + { + "SourceID": 47034, + "TargetID": 47031, + "Directional": true + }, + { + "SourceID": 47035, + "TargetID": 47033, + "Directional": true + }, + { + "SourceID": 47044, + "TargetID": 47041, + "Directional": true + } + ] + }, + { + "ID": 13084, + "SourceStructureID": 26079, + "TargetStructureID": 84876, + "Label": "26079-84876 via Ribbon Synapse from 102910 -> 102913", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102910, + "TargetID": 102913, + "Directional": true + } + ] + }, + { + "ID": 13085, + "SourceStructureID": 26304, + "TargetStructureID": 284, + "Label": "26304-284 via Ribbon Synapse from 26305 -> 26296", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26305, + "TargetID": 26296, + "Directional": true + } + ] + }, + { + "ID": 13086, + "SourceStructureID": 26304, + "TargetStructureID": 456, + "Label": "26304-456 via Ribbon Synapse from 26324 -> 26325", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26324, + "TargetID": 26325, + "Directional": true + } + ] + }, + { + "ID": 13087, + "SourceStructureID": 26304, + "TargetStructureID": 7157, + "Label": "26304-7157 via Ribbon Synapse from 26307 -> 26303, 26331 -> 26332", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 26307, + "TargetID": 26303, + "Directional": true + }, + { + "SourceID": 26331, + "TargetID": 26332, + "Directional": true + } + ] + }, + { + "ID": 13088, + "SourceStructureID": 26497, + "TargetStructureID": 26304, + "Label": "26497-26304 via Conventional from 44490 -> 44489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44490, + "TargetID": 44489, + "Directional": true + } + ] + }, + { + "ID": 13089, + "SourceStructureID": 26971, + "TargetStructureID": 26971, + "Label": "26971-26971 via Cistern Pre from 38144 -> 26985", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 38144, + "TargetID": 26985, + "Directional": true + } + ] + }, + { + "ID": 13090, + "SourceStructureID": 27288, + "TargetStructureID": 485, + "Label": "27288-485 via Conventional from 27289 -> 27292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27289, + "TargetID": 27292, + "Directional": true + } + ] + }, + { + "ID": 13091, + "SourceStructureID": 27288, + "TargetStructureID": 13855, + "Label": "27288-13855 via Conventional from 27290 -> 27291", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27290, + "TargetID": 27291, + "Directional": true + } + ] + }, + { + "ID": 13092, + "SourceStructureID": 27288, + "TargetStructureID": 101452, + "Label": "27288-101452 via Conventional from 27300 -> 101453", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27300, + "TargetID": 101453, + "Directional": true + } + ] + }, + { + "ID": 13093, + "SourceStructureID": 27304, + "TargetStructureID": 6857, + "Label": "27304-6857 via Conventional from 27305 -> 7536", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 27305, + "TargetID": 7536, + "Directional": true + } + ] + }, + { + "ID": 13094, + "SourceStructureID": 28382, + "TargetStructureID": 6160, + "Label": "28382-6160 via Cistern Pre from 37474 -> 37475", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 37474, + "TargetID": 37475, + "Directional": true + } + ] + }, + { + "ID": 13095, + "SourceStructureID": 28886, + "TargetStructureID": 608, + "Label": "28886-608 via Ribbon Synapse from 59073 -> 59072", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59073, + "TargetID": 59072, + "Directional": true + } + ] + }, + { + "ID": 13096, + "SourceStructureID": 28886, + "TargetStructureID": 7594, + "Label": "28886-7594 via Ribbon Synapse from 51298 -> 7678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51298, + "TargetID": 7678, + "Directional": true + } + ] + }, + { + "ID": 13097, + "SourceStructureID": 28886, + "TargetStructureID": 40482, + "Label": "28886-40482 via Ribbon Synapse from 51314 -> 40483", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51314, + "TargetID": 40483, + "Directional": true + } + ] + }, + { + "ID": 13098, + "SourceStructureID": 28886, + "TargetStructureID": 40485, + "Label": "28886-40485 via Ribbon Synapse from 51314 -> 40487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51314, + "TargetID": 40487, + "Directional": true + } + ] + }, + { + "ID": 13099, + "SourceStructureID": 28886, + "TargetStructureID": 46842, + "Label": "28886-46842 via Ribbon Synapse from 45764 -> 46853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45764, + "TargetID": 46853, + "Directional": true + } + ] + }, + { + "ID": 13100, + "SourceStructureID": 28886, + "TargetStructureID": 99513, + "Label": "28886-99513 via Ribbon Synapse from 129639 -> 129636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129639, + "TargetID": 129636, + "Directional": true + } + ] + }, + { + "ID": 13101, + "SourceStructureID": 29277, + "TargetStructureID": 318, + "Label": "29277-318 via Conventional from 29314 -> 29315", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29314, + "TargetID": 29315, + "Directional": true + } + ] + }, + { + "ID": 13102, + "SourceStructureID": 29277, + "TargetStructureID": 60657, + "Label": "29277-60657 via Conventional from 29322 -> 61429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29322, + "TargetID": 61429, + "Directional": true + } + ] + }, + { + "ID": 13103, + "SourceStructureID": 29702, + "TargetStructureID": 76127, + "Label": "29702-76127 via Conventional from 76083 -> 76147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76083, + "TargetID": 76147, + "Directional": true + } + ] + }, + { + "ID": 13104, + "SourceStructureID": 29783, + "TargetStructureID": 2610, + "Label": "29783-2610 via Conventional from 29784 -> 2815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29784, + "TargetID": 2815, + "Directional": true + } + ] + }, + { + "ID": 13105, + "SourceStructureID": 29783, + "TargetStructureID": 15100, + "Label": "29783-15100 via Conventional from 65235 -> 65236", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65235, + "TargetID": 65236, + "Directional": true + } + ] + }, + { + "ID": 13106, + "SourceStructureID": 29791, + "TargetStructureID": 410, + "Label": "29791-410 via Conventional from 29797 -> 29790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29797, + "TargetID": 29790, + "Directional": true + } + ] + }, + { + "ID": 13107, + "SourceStructureID": 29791, + "TargetStructureID": 6163, + "Label": "29791-6163 via Conventional from 29799 -> 29800, 29801 -> 29802, 29803 -> 29804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29799, + "TargetID": 29800, + "Directional": true + }, + { + "SourceID": 29801, + "TargetID": 29802, + "Directional": true + }, + { + "SourceID": 29803, + "TargetID": 29804, + "Directional": true + } + ] + }, + { + "ID": 13108, + "SourceStructureID": 29791, + "TargetStructureID": 6618, + "Label": "29791-6618 via Conventional from 29792 -> 29793, 29795 -> 29796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29792, + "TargetID": 29793, + "Directional": true + }, + { + "SourceID": 29795, + "TargetID": 29796, + "Directional": true + } + ] + }, + { + "ID": 13109, + "SourceStructureID": 29805, + "TargetStructureID": 5345, + "Label": "29805-5345 via Conventional from 29806 -> 14593", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29806, + "TargetID": 14593, + "Directional": true + } + ] + }, + { + "ID": 13110, + "SourceStructureID": 29827, + "TargetStructureID": 170, + "Label": "29827-170 via Conventional from 29832 -> 29831", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29832, + "TargetID": 29831, + "Directional": true + } + ] + }, + { + "ID": 13111, + "SourceStructureID": 29827, + "TargetStructureID": 10959, + "Label": "29827-10959 via Conventional from 29834 -> 29833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 29834, + "TargetID": 29833, + "Directional": true + } + ] + }, + { + "ID": 13112, + "SourceStructureID": 30015, + "TargetStructureID": 330, + "Label": "30015-330 via Conventional from 30028 -> 30029, 30034 -> 26172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30028, + "TargetID": 30029, + "Directional": true + }, + { + "SourceID": 30034, + "TargetID": 26172, + "Directional": true + } + ] + }, + { + "ID": 13113, + "SourceStructureID": 30015, + "TargetStructureID": 341, + "Label": "30015-341 via Conventional from 30039 -> 30059, 30051 -> 30049", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30039, + "TargetID": 30059, + "Directional": true + }, + { + "SourceID": 30051, + "TargetID": 30049, + "Directional": true + } + ] + }, + { + "ID": 13114, + "SourceStructureID": 30015, + "TargetStructureID": 101369, + "Label": "30015-101369 via Conventional from 30027 -> 101400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30027, + "TargetID": 101400, + "Directional": true + } + ] + }, + { + "ID": 13115, + "SourceStructureID": 30102, + "TargetStructureID": 9769, + "Label": "30102-9769 via Ribbon Synapse from 30104 -> 30097", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30104, + "TargetID": 30097, + "Directional": true + } + ] + }, + { + "ID": 13116, + "SourceStructureID": 30102, + "TargetStructureID": 32566, + "Label": "30102-32566 via Ribbon Synapse from 32570 -> 32569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32570, + "TargetID": 32569, + "Directional": true + } + ] + }, + { + "ID": 13117, + "SourceStructureID": 30102, + "TargetStructureID": 55212, + "Label": "30102-55212 via Ribbon Synapse from 30104 -> 55213", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30104, + "TargetID": 55213, + "Directional": true + } + ] + }, + { + "ID": 13118, + "SourceStructureID": 30130, + "TargetStructureID": 5292, + "Label": "30130-5292 via Conventional from 30260 -> 30266", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30260, + "TargetID": 30266, + "Directional": true + } + ] + }, + { + "ID": 13119, + "SourceStructureID": 30130, + "TargetStructureID": 5649, + "Label": "30130-5649 via Conventional from 30134 -> 30127", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30134, + "TargetID": 30127, + "Directional": true + } + ] + }, + { + "ID": 13120, + "SourceStructureID": 30130, + "TargetStructureID": 5650, + "Label": "30130-5650 via Conventional from 30253 -> 30254, 30258 -> 30259, 103826 -> 103827", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30253, + "TargetID": 30254, + "Directional": true + }, + { + "SourceID": 30258, + "TargetID": 30259, + "Directional": true + }, + { + "SourceID": 103826, + "TargetID": 103827, + "Directional": true + } + ] + }, + { + "ID": 13121, + "SourceStructureID": 30130, + "TargetStructureID": 11042, + "Label": "30130-11042 via Conventional from 30132 -> 30129", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30132, + "TargetID": 30129, + "Directional": true + } + ] + }, + { + "ID": 13122, + "SourceStructureID": 30130, + "TargetStructureID": 11250, + "Label": "30130-11250 via Conventional from 30283 -> 30292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30283, + "TargetID": 30292, + "Directional": true + } + ] + }, + { + "ID": 13123, + "SourceStructureID": 30177, + "TargetStructureID": 9769, + "Label": "30177-9769 via Ribbon Synapse from 30178 -> 30175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 30178, + "TargetID": 30175, + "Directional": true + } + ] + }, + { + "ID": 13124, + "SourceStructureID": 30332, + "TargetStructureID": 171, + "Label": "30332-171 via Conventional from 30333 -> 30330", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30333, + "TargetID": 30330, + "Directional": true + } + ] + }, + { + "ID": 13125, + "SourceStructureID": 30332, + "TargetStructureID": 591, + "Label": "30332-591 via Conventional from 30334 -> 15441", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30334, + "TargetID": 15441, + "Directional": true + } + ] + }, + { + "ID": 13126, + "SourceStructureID": 30332, + "TargetStructureID": 5297, + "Label": "30332-5297 via Conventional from 103220 -> 103219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103220, + "TargetID": 103219, + "Directional": true + } + ] + }, + { + "ID": 13127, + "SourceStructureID": 30332, + "TargetStructureID": 5618, + "Label": "30332-5618 via Conventional from 30337 -> 66002", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30337, + "TargetID": 66002, + "Directional": true + } + ] + }, + { + "ID": 13128, + "SourceStructureID": 30332, + "TargetStructureID": 6115, + "Label": "30332-6115 via Conventional from 75186 -> 75187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75186, + "TargetID": 75187, + "Directional": true + } + ] + }, + { + "ID": 13129, + "SourceStructureID": 30332, + "TargetStructureID": 7073, + "Label": "30332-7073 via Conventional from 31623 -> 11795", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31623, + "TargetID": 11795, + "Directional": true + } + ] + }, + { + "ID": 13130, + "SourceStructureID": 30332, + "TargetStructureID": 7147, + "Label": "30332-7147 via Conventional from 31626 -> 31627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31626, + "TargetID": 31627, + "Directional": true + } + ] + }, + { + "ID": 13131, + "SourceStructureID": 30370, + "TargetStructureID": 328, + "Label": "30370-328 via Conventional from 30376 -> 30361, 30377 -> 30363", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30376, + "TargetID": 30361, + "Directional": true + }, + { + "SourceID": 30377, + "TargetID": 30363, + "Directional": true + } + ] + }, + { + "ID": 13132, + "SourceStructureID": 30370, + "TargetStructureID": 15979, + "Label": "30370-15979 via Conventional from 30372 -> 30373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30372, + "TargetID": 30373, + "Directional": true + } + ] + }, + { + "ID": 13133, + "SourceStructureID": 30379, + "TargetStructureID": 30370, + "Label": "30379-30370 via Conventional from 30384 -> 30378", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30384, + "TargetID": 30378, + "Directional": true + } + ] + }, + { + "ID": 13134, + "SourceStructureID": 30477, + "TargetStructureID": 294, + "Label": "30477-294 via Conventional from 30478 -> 30358", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30478, + "TargetID": 30358, + "Directional": true + } + ] + }, + { + "ID": 13135, + "SourceStructureID": 30477, + "TargetStructureID": 380, + "Label": "30477-380 via Conventional from 30484 -> 30476", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30484, + "TargetID": 30476, + "Directional": true + } + ] + }, + { + "ID": 13136, + "SourceStructureID": 30477, + "TargetStructureID": 485, + "Label": "30477-485 via Conventional from 30487 -> 31677", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30487, + "TargetID": 31677, + "Directional": true + } + ] + }, + { + "ID": 13137, + "SourceStructureID": 30477, + "TargetStructureID": 516, + "Label": "30477-516 via Conventional from 38625 -> 38626", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38625, + "TargetID": 38626, + "Directional": true + } + ] + }, + { + "ID": 13138, + "SourceStructureID": 30477, + "TargetStructureID": 517, + "Label": "30477-517 via Conventional from 38623 -> 38624", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38623, + "TargetID": 38624, + "Directional": true + } + ] + }, + { + "ID": 13139, + "SourceStructureID": 30477, + "TargetStructureID": 8575, + "Label": "30477-8575 via Conventional from 30490 -> 38617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30490, + "TargetID": 38617, + "Directional": true + } + ] + }, + { + "ID": 13140, + "SourceStructureID": 30477, + "TargetStructureID": 24401, + "Label": "30477-24401 via Conventional from 38628 -> 38629", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38628, + "TargetID": 38629, + "Directional": true + } + ] + }, + { + "ID": 13141, + "SourceStructureID": 30495, + "TargetStructureID": 434, + "Label": "30495-434 via Conventional from 31876 -> 30494", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31876, + "TargetID": 30494, + "Directional": true + } + ] + }, + { + "ID": 13142, + "SourceStructureID": 30495, + "TargetStructureID": 31874, + "Label": "30495-31874 via Conventional from 30497 -> 31875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30497, + "TargetID": 31875, + "Directional": true + } + ] + }, + { + "ID": 13143, + "SourceStructureID": 30499, + "TargetStructureID": 464, + "Label": "30499-464 via Conventional from 30500 -> 30369", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30500, + "TargetID": 30369, + "Directional": true + } + ] + }, + { + "ID": 13144, + "SourceStructureID": 30499, + "TargetStructureID": 468, + "Label": "30499-468 via Conventional from 31941 -> 6651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31941, + "TargetID": 6651, + "Directional": true + } + ] + }, + { + "ID": 13145, + "SourceStructureID": 30513, + "TargetStructureID": 142, + "Label": "30513-142 via Conventional from 125932 -> 125933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125932, + "TargetID": 125933, + "Directional": true + } + ] + }, + { + "ID": 13146, + "SourceStructureID": 30513, + "TargetStructureID": 516, + "Label": "30513-516 via Conventional from 30514 -> 30511", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30514, + "TargetID": 30511, + "Directional": true + } + ] + }, + { + "ID": 13147, + "SourceStructureID": 30518, + "TargetStructureID": 5303, + "Label": "30518-5303 via Conventional from 30519 -> 30517", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30519, + "TargetID": 30517, + "Directional": true + } + ] + }, + { + "ID": 13148, + "SourceStructureID": 30567, + "TargetStructureID": 142, + "Label": "30567-142 via Conventional from 32078 -> 32079, 32082 -> 32085, 49757 -> 49756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32078, + "TargetID": 32079, + "Directional": true + }, + { + "SourceID": 32082, + "TargetID": 32085, + "Directional": true + }, + { + "SourceID": 49757, + "TargetID": 49756, + "Directional": true + } + ] + }, + { + "ID": 13149, + "SourceStructureID": 30567, + "TargetStructureID": 176, + "Label": "30567-176 via Conventional from 32089 -> 124759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32089, + "TargetID": 124759, + "Directional": true + } + ] + }, + { + "ID": 13150, + "SourceStructureID": 30567, + "TargetStructureID": 517, + "Label": "30567-517 via Conventional from 30568 -> 6902", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30568, + "TargetID": 6902, + "Directional": true + } + ] + }, + { + "ID": 13151, + "SourceStructureID": 30567, + "TargetStructureID": 909, + "Label": "30567-909 via Conventional from 30646 -> 30653", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30646, + "TargetID": 30653, + "Directional": true + } + ] + }, + { + "ID": 13152, + "SourceStructureID": 30567, + "TargetStructureID": 1637, + "Label": "30567-1637 via Conventional from 30657 -> 1723", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30657, + "TargetID": 1723, + "Directional": true + } + ] + }, + { + "ID": 13153, + "SourceStructureID": 30567, + "TargetStructureID": 5279, + "Label": "30567-5279 via Conventional from 30644 -> 30645, 96427 -> 96426", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30644, + "TargetID": 30645, + "Directional": true + }, + { + "SourceID": 96427, + "TargetID": 96426, + "Directional": true + } + ] + }, + { + "ID": 13154, + "SourceStructureID": 30567, + "TargetStructureID": 5297, + "Label": "30567-5297 via Conventional from 32081 -> 56815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32081, + "TargetID": 56815, + "Directional": true + } + ] + }, + { + "ID": 13155, + "SourceStructureID": 30567, + "TargetStructureID": 5513, + "Label": "30567-5513 via Conventional from 30660 -> 30672", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30660, + "TargetID": 30672, + "Directional": true + } + ] + }, + { + "ID": 13156, + "SourceStructureID": 30567, + "TargetStructureID": 5517, + "Label": "30567-5517 via Conventional from 49512 -> 49510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 49512, + "TargetID": 49510, + "Directional": true + } + ] + }, + { + "ID": 13157, + "SourceStructureID": 30567, + "TargetStructureID": 6050, + "Label": "30567-6050 via Conventional from 113569 -> 113568", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113569, + "TargetID": 113568, + "Directional": true + } + ] + }, + { + "ID": 13158, + "SourceStructureID": 30567, + "TargetStructureID": 6117, + "Label": "30567-6117 via Conventional from 30569 -> 30570, 84962 -> 84963", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30569, + "TargetID": 30570, + "Directional": true + }, + { + "SourceID": 84962, + "TargetID": 84963, + "Directional": true + } + ] + }, + { + "ID": 13159, + "SourceStructureID": 30567, + "TargetStructureID": 66523, + "Label": "30567-66523 via Conventional from 74315 -> 74316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74315, + "TargetID": 74316, + "Directional": true + } + ] + }, + { + "ID": 13160, + "SourceStructureID": 31024, + "TargetStructureID": 31024, + "Label": "31024-31024 via Ribbon Synapse from 130895 -> 130897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130895, + "TargetID": 130897, + "Directional": true + } + ] + }, + { + "ID": 13161, + "SourceStructureID": 31024, + "TargetStructureID": 67290, + "Label": "31024-67290 via Ribbon Synapse from 130895 -> 67292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130895, + "TargetID": 67292, + "Directional": true + } + ] + }, + { + "ID": 13162, + "SourceStructureID": 31024, + "TargetStructureID": 67291, + "Label": "31024-67291 via Ribbon Synapse from 130895 -> 67293", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130895, + "TargetID": 67293, + "Directional": true + } + ] + }, + { + "ID": 13163, + "SourceStructureID": 31157, + "TargetStructureID": 31024, + "Label": "31157-31024 via Ribbon Synapse from 31158 -> 31156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31158, + "TargetID": 31156, + "Directional": true + } + ] + }, + { + "ID": 13164, + "SourceStructureID": 31161, + "TargetStructureID": 608, + "Label": "31161-608 via Conventional from 31188 -> 31190, 31223 -> 31224", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31188, + "TargetID": 31190, + "Directional": true + }, + { + "SourceID": 31223, + "TargetID": 31224, + "Directional": true + } + ] + }, + { + "ID": 13165, + "SourceStructureID": 31161, + "TargetStructureID": 31024, + "Label": "31161-31024 via Conventional from 31162 -> 31075, 31165 -> 31164, 31169 -> 31109, 31173 -> 31172, 31176 -> 31114, 31177 -> 31115, 31222 -> 31078, 31225 -> 31228, 31226 -> 31227, 31231 -> 31232, 31240 -> 31029, 31243 -> 31242, 31245 -> 31246, 31254 -> 31065, 65496 -> 65497", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31162, + "TargetID": 31075, + "Directional": true + }, + { + "SourceID": 31165, + "TargetID": 31164, + "Directional": true + }, + { + "SourceID": 31169, + "TargetID": 31109, + "Directional": true + }, + { + "SourceID": 31173, + "TargetID": 31172, + "Directional": true + }, + { + "SourceID": 31176, + "TargetID": 31114, + "Directional": true + }, + { + "SourceID": 31177, + "TargetID": 31115, + "Directional": true + }, + { + "SourceID": 31222, + "TargetID": 31078, + "Directional": true + }, + { + "SourceID": 31225, + "TargetID": 31228, + "Directional": true + }, + { + "SourceID": 31226, + "TargetID": 31227, + "Directional": true + }, + { + "SourceID": 31231, + "TargetID": 31232, + "Directional": true + }, + { + "SourceID": 31240, + "TargetID": 31029, + "Directional": true + }, + { + "SourceID": 31243, + "TargetID": 31242, + "Directional": true + }, + { + "SourceID": 31245, + "TargetID": 31246, + "Directional": true + }, + { + "SourceID": 31254, + "TargetID": 31065, + "Directional": true + }, + { + "SourceID": 65496, + "TargetID": 65497, + "Directional": true + } + ] + }, + { + "ID": 13166, + "SourceStructureID": 31161, + "TargetStructureID": 33092, + "Label": "31161-33092 via Conventional from 31214 -> 99210", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31214, + "TargetID": 99210, + "Directional": true + } + ] + }, + { + "ID": 13167, + "SourceStructureID": 31161, + "TargetStructureID": 36516, + "Label": "31161-36516 via Conventional from 36618 -> 36617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36618, + "TargetID": 36617, + "Directional": true + } + ] + }, + { + "ID": 13168, + "SourceStructureID": 31161, + "TargetStructureID": 61836, + "Label": "31161-61836 via Conventional from 31230 -> 68116", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31230, + "TargetID": 68116, + "Directional": true + } + ] + }, + { + "ID": 13169, + "SourceStructureID": 31161, + "TargetStructureID": 66828, + "Label": "31161-66828 via Conventional from 66833 -> 66832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66833, + "TargetID": 66832, + "Directional": true + } + ] + }, + { + "ID": 13170, + "SourceStructureID": 31161, + "TargetStructureID": 69162, + "Label": "31161-69162 via Conventional from 69195 -> 69196", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69195, + "TargetID": 69196, + "Directional": true + } + ] + }, + { + "ID": 13171, + "SourceStructureID": 31261, + "TargetStructureID": 5645, + "Label": "31261-5645 via Conventional from 31266 -> 31268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31266, + "TargetID": 31268, + "Directional": true + } + ] + }, + { + "ID": 13172, + "SourceStructureID": 31261, + "TargetStructureID": 6857, + "Label": "31261-6857 via Conventional from 31262 -> 7559", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31262, + "TargetID": 7559, + "Directional": true + } + ] + }, + { + "ID": 13173, + "SourceStructureID": 31305, + "TargetStructureID": 9183, + "Label": "31305-9183 via Conventional from 31312 -> 31304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31312, + "TargetID": 31304, + "Directional": true + } + ] + }, + { + "ID": 13174, + "SourceStructureID": 31305, + "TargetStructureID": 101651, + "Label": "31305-101651 via Conventional from 101648 -> 101652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101648, + "TargetID": 101652, + "Directional": true + } + ] + }, + { + "ID": 13175, + "SourceStructureID": 31334, + "TargetStructureID": 5645, + "Label": "31334-5645 via Conventional from 31340 -> 31341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31340, + "TargetID": 31341, + "Directional": true + } + ] + }, + { + "ID": 13176, + "SourceStructureID": 31334, + "TargetStructureID": 9183, + "Label": "31334-9183 via Conventional from 31338 -> 31339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31338, + "TargetID": 31339, + "Directional": true + } + ] + }, + { + "ID": 13177, + "SourceStructureID": 31356, + "TargetStructureID": 9183, + "Label": "31356-9183 via Conventional from 32760 -> 31355", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32760, + "TargetID": 31355, + "Directional": true + } + ] + }, + { + "ID": 13178, + "SourceStructureID": 31356, + "TargetStructureID": 31161, + "Label": "31356-31161 via Conventional from 32759 -> 31178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32759, + "TargetID": 31178, + "Directional": true + } + ] + }, + { + "ID": 13179, + "SourceStructureID": 31389, + "TargetStructureID": 5609, + "Label": "31389-5609 via Conventional from 31397 -> 31388", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31397, + "TargetID": 31388, + "Directional": true + } + ] + }, + { + "ID": 13180, + "SourceStructureID": 31399, + "TargetStructureID": 4570, + "Label": "31399-4570 via Conventional from 31403 -> 31404", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31403, + "TargetID": 31404, + "Directional": true + } + ] + }, + { + "ID": 13181, + "SourceStructureID": 31399, + "TargetStructureID": 79317, + "Label": "31399-79317 via Conventional from 31405 -> 99006", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31405, + "TargetID": 99006, + "Directional": true + } + ] + }, + { + "ID": 13182, + "SourceStructureID": 31430, + "TargetStructureID": 6997, + "Label": "31430-6997 via Conventional from 31433 -> 31436", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31433, + "TargetID": 31436, + "Directional": true + } + ] + }, + { + "ID": 13183, + "SourceStructureID": 31465, + "TargetStructureID": 10142, + "Label": "31465-10142 via Conventional from 31466 -> 31464", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31466, + "TargetID": 31464, + "Directional": true + } + ] + }, + { + "ID": 13184, + "SourceStructureID": 31471, + "TargetStructureID": 5535, + "Label": "31471-5535 via Conventional from 31476 -> 38442, 31478 -> 31479", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31476, + "TargetID": 38442, + "Directional": true + }, + { + "SourceID": 31478, + "TargetID": 31479, + "Directional": true + } + ] + }, + { + "ID": 13185, + "SourceStructureID": 31471, + "TargetStructureID": 10142, + "Label": "31471-10142 via Conventional from 31472 -> 31470", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31472, + "TargetID": 31470, + "Directional": true + } + ] + }, + { + "ID": 13186, + "SourceStructureID": 31471, + "TargetStructureID": 10964, + "Label": "31471-10964 via Conventional from 31480 -> 31490", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31480, + "TargetID": 31490, + "Directional": true + } + ] + }, + { + "ID": 13187, + "SourceStructureID": 31471, + "TargetStructureID": 58592, + "Label": "31471-58592 via Conventional from 31497 -> 58670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31497, + "TargetID": 58670, + "Directional": true + } + ] + }, + { + "ID": 13188, + "SourceStructureID": 31483, + "TargetStructureID": 10964, + "Label": "31483-10964 via Conventional from 31484 -> 31482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31484, + "TargetID": 31482, + "Directional": true + } + ] + }, + { + "ID": 13189, + "SourceStructureID": 31486, + "TargetStructureID": 172, + "Label": "31486-172 via Conventional from 31533 -> 31634", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31533, + "TargetID": 31634, + "Directional": true + } + ] + }, + { + "ID": 13190, + "SourceStructureID": 31486, + "TargetStructureID": 6128, + "Label": "31486-6128 via Conventional from 31513 -> 21042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31513, + "TargetID": 21042, + "Directional": true + } + ] + }, + { + "ID": 13191, + "SourceStructureID": 31603, + "TargetStructureID": 31605, + "Label": "31603-31605 via Conventional from 31604 -> 31615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31604, + "TargetID": 31615, + "Directional": true + } + ] + }, + { + "ID": 13192, + "SourceStructureID": 31665, + "TargetStructureID": 352, + "Label": "31665-352 via Conventional from 31666 -> 20669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31666, + "TargetID": 20669, + "Directional": true + } + ] + }, + { + "ID": 13193, + "SourceStructureID": 31679, + "TargetStructureID": 277, + "Label": "31679-277 via Conventional from 31691 -> 26410", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31691, + "TargetID": 26410, + "Directional": true + } + ] + }, + { + "ID": 13194, + "SourceStructureID": 31679, + "TargetStructureID": 327, + "Label": "31679-327 via Conventional from 31684 -> 31687", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31684, + "TargetID": 31687, + "Directional": true + } + ] + }, + { + "ID": 13195, + "SourceStructureID": 31679, + "TargetStructureID": 328, + "Label": "31679-328 via Conventional from 31680 -> 31681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31680, + "TargetID": 31681, + "Directional": true + } + ] + }, + { + "ID": 13196, + "SourceStructureID": 31694, + "TargetStructureID": 277, + "Label": "31694-277 via Conventional from 31696 -> 26418, 31697 -> 26013", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31696, + "TargetID": 26418, + "Directional": true + }, + { + "SourceID": 31697, + "TargetID": 26013, + "Directional": true + } + ] + }, + { + "ID": 13197, + "SourceStructureID": 31694, + "TargetStructureID": 280, + "Label": "31694-280 via Conventional from 31695 -> 31693", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31695, + "TargetID": 31693, + "Directional": true + } + ] + }, + { + "ID": 13198, + "SourceStructureID": 31700, + "TargetStructureID": 268, + "Label": "31700-268 via Conventional from 45613 -> 45614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45613, + "TargetID": 45614, + "Directional": true + } + ] + }, + { + "ID": 13199, + "SourceStructureID": 31700, + "TargetStructureID": 330, + "Label": "31700-330 via Conventional from 119080 -> 119081", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119080, + "TargetID": 119081, + "Directional": true + } + ] + }, + { + "ID": 13200, + "SourceStructureID": 31700, + "TargetStructureID": 342, + "Label": "31700-342 via Conventional from 31701 -> 31698, 64487 -> 64488", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31701, + "TargetID": 31698, + "Directional": true + }, + { + "SourceID": 64487, + "TargetID": 64488, + "Directional": true + } + ] + }, + { + "ID": 13201, + "SourceStructureID": 31700, + "TargetStructureID": 345, + "Label": "31700-345 via Conventional from 118993 -> 118994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118993, + "TargetID": 118994, + "Directional": true + } + ] + }, + { + "ID": 13202, + "SourceStructureID": 31702, + "TargetStructureID": 342, + "Label": "31702-342 via Conventional from 31703 -> 31699", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31703, + "TargetID": 31699, + "Directional": true + } + ] + }, + { + "ID": 13203, + "SourceStructureID": 31702, + "TargetStructureID": 344, + "Label": "31702-344 via Conventional from 31717 -> 31721", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31717, + "TargetID": 31721, + "Directional": true + } + ] + }, + { + "ID": 13204, + "SourceStructureID": 31702, + "TargetStructureID": 34055, + "Label": "31702-34055 via Conventional from 39997 -> 34058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39997, + "TargetID": 34058, + "Directional": true + } + ] + }, + { + "ID": 13205, + "SourceStructureID": 31710, + "TargetStructureID": 606, + "Label": "31710-606 via Ribbon Synapse from 52670 -> 52669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52670, + "TargetID": 52669, + "Directional": true + } + ] + }, + { + "ID": 13206, + "SourceStructureID": 31710, + "TargetStructureID": 9769, + "Label": "31710-9769 via Ribbon Synapse from 55329 -> 12445", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55329, + "TargetID": 12445, + "Directional": true + } + ] + }, + { + "ID": 13207, + "SourceStructureID": 31710, + "TargetStructureID": 31700, + "Label": "31710-31700 via Ribbon Synapse from 31712 -> 31709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31712, + "TargetID": 31709, + "Directional": true + } + ] + }, + { + "ID": 13208, + "SourceStructureID": 31710, + "TargetStructureID": 55319, + "Label": "31710-55319 via Ribbon Synapse from 55323 -> 55324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55323, + "TargetID": 55324, + "Directional": true + } + ] + }, + { + "ID": 13209, + "SourceStructureID": 31710, + "TargetStructureID": 89851, + "Label": "31710-89851 via Ribbon Synapse from 52670 -> 89856, 89859 -> 89857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52670, + "TargetID": 89856, + "Directional": true + }, + { + "SourceID": 89859, + "TargetID": 89857, + "Directional": true + } + ] + }, + { + "ID": 13210, + "SourceStructureID": 31804, + "TargetStructureID": 365, + "Label": "31804-365 via Conventional from 31806 -> 31805", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31806, + "TargetID": 31805, + "Directional": true + } + ] + }, + { + "ID": 13211, + "SourceStructureID": 31874, + "TargetStructureID": 4835, + "Label": "31874-4835 via Ribbon Synapse from 31883 -> 31884", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31883, + "TargetID": 31884, + "Directional": true + } + ] + }, + { + "ID": 13212, + "SourceStructureID": 31915, + "TargetStructureID": 460, + "Label": "31915-460 via Conventional from 31921 -> 31924", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31921, + "TargetID": 31924, + "Directional": true + } + ] + }, + { + "ID": 13213, + "SourceStructureID": 31915, + "TargetStructureID": 10963, + "Label": "31915-10963 via Conventional from 31927 -> 31937", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31927, + "TargetID": 31937, + "Directional": true + } + ] + }, + { + "ID": 13214, + "SourceStructureID": 31915, + "TargetStructureID": 30499, + "Label": "31915-30499 via Conventional from 31916 -> 30501", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31916, + "TargetID": 30501, + "Directional": true + } + ] + }, + { + "ID": 13215, + "SourceStructureID": 31931, + "TargetStructureID": 5544, + "Label": "31931-5544 via Conventional from 31933 -> 31934", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31933, + "TargetID": 31934, + "Directional": true + } + ] + }, + { + "ID": 13216, + "SourceStructureID": 31931, + "TargetStructureID": 5634, + "Label": "31931-5634 via Conventional from 31932 -> 8741", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31932, + "TargetID": 8741, + "Directional": true + } + ] + }, + { + "ID": 13217, + "SourceStructureID": 31944, + "TargetStructureID": 5413, + "Label": "31944-5413 via Ribbon Synapse from 31945 -> 31946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 31945, + "TargetID": 31946, + "Directional": true + } + ] + }, + { + "ID": 13218, + "SourceStructureID": 31944, + "TargetStructureID": 128015, + "Label": "31944-128015 via Ribbon Synapse from 128059 -> 128058", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 128059, + "TargetID": 128058, + "Directional": true + } + ] + }, + { + "ID": 13219, + "SourceStructureID": 31960, + "TargetStructureID": 422, + "Label": "31960-422 via Conventional from 31963 -> 5702, 31966 -> 5704, 31967 -> 87879, 31968 -> 5706", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31963, + "TargetID": 5702, + "Directional": true + }, + { + "SourceID": 31966, + "TargetID": 5704, + "Directional": true + }, + { + "SourceID": 31967, + "TargetID": 87879, + "Directional": true + }, + { + "SourceID": 31968, + "TargetID": 5706, + "Directional": true + } + ] + }, + { + "ID": 13220, + "SourceStructureID": 31969, + "TargetStructureID": 471, + "Label": "31969-471 via Conventional from 31970 -> 30510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31970, + "TargetID": 30510, + "Directional": true + } + ] + }, + { + "ID": 13221, + "SourceStructureID": 31994, + "TargetStructureID": 14291, + "Label": "31994-14291 via Conventional from 31995 -> 31993", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31995, + "TargetID": 31993, + "Directional": true + } + ] + }, + { + "ID": 13222, + "SourceStructureID": 31994, + "TargetStructureID": 19203, + "Label": "31994-19203 via Conventional from 31997 -> 31998", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31997, + "TargetID": 31998, + "Directional": true + } + ] + }, + { + "ID": 13223, + "SourceStructureID": 32035, + "TargetStructureID": 516, + "Label": "32035-516 via Conventional from 32036 -> 30512", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32036, + "TargetID": 30512, + "Directional": true + } + ] + }, + { + "ID": 13224, + "SourceStructureID": 32035, + "TargetStructureID": 6117, + "Label": "32035-6117 via Conventional from 41663 -> 30901, 41668 -> 30900", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41663, + "TargetID": 30901, + "Directional": true + }, + { + "SourceID": 41668, + "TargetID": 30900, + "Directional": true + } + ] + }, + { + "ID": 13225, + "SourceStructureID": 32046, + "TargetStructureID": 422, + "Label": "32046-422 via Conventional from 32057 -> 32058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32057, + "TargetID": 32058, + "Directional": true + } + ] + }, + { + "ID": 13226, + "SourceStructureID": 32046, + "TargetStructureID": 516, + "Label": "32046-516 via Conventional from 32049 -> 32050, 32052 -> 32051, 39233 -> 39235, 39234 -> 39236, 39237 -> 39238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32049, + "TargetID": 32050, + "Directional": true + }, + { + "SourceID": 32052, + "TargetID": 32051, + "Directional": true + }, + { + "SourceID": 39233, + "TargetID": 39235, + "Directional": true + }, + { + "SourceID": 39234, + "TargetID": 39236, + "Directional": true + }, + { + "SourceID": 39237, + "TargetID": 39238, + "Directional": true + } + ] + }, + { + "ID": 13227, + "SourceStructureID": 32141, + "TargetStructureID": 518, + "Label": "32141-518 via Conventional from 32142 -> 3348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32142, + "TargetID": 3348, + "Directional": true + } + ] + }, + { + "ID": 13228, + "SourceStructureID": 32147, + "TargetStructureID": 32144, + "Label": "32147-32144 via Conventional from 32149 -> 32146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32149, + "TargetID": 32146, + "Directional": true + } + ] + }, + { + "ID": 13229, + "SourceStructureID": 32147, + "TargetStructureID": 45672, + "Label": "32147-45672 via Conventional from 32148 -> 127756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32148, + "TargetID": 127756, + "Directional": true + } + ] + }, + { + "ID": 13230, + "SourceStructureID": 32160, + "TargetStructureID": 519, + "Label": "32160-519 via Conventional from 32162 -> 32159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32162, + "TargetID": 32159, + "Directional": true + } + ] + }, + { + "ID": 13231, + "SourceStructureID": 32160, + "TargetStructureID": 6617, + "Label": "32160-6617 via Conventional from 32171 -> 6620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32171, + "TargetID": 6620, + "Directional": true + } + ] + }, + { + "ID": 13232, + "SourceStructureID": 32160, + "TargetStructureID": 8575, + "Label": "32160-8575 via Conventional from 32174 -> 21639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32174, + "TargetID": 21639, + "Directional": true + } + ] + }, + { + "ID": 13233, + "SourceStructureID": 32172, + "TargetStructureID": 419, + "Label": "32172-419 via Conventional from 32185 -> 32186", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32185, + "TargetID": 32186, + "Directional": true + } + ] + }, + { + "ID": 13234, + "SourceStructureID": 32172, + "TargetStructureID": 6617, + "Label": "32172-6617 via Conventional from 32173 -> 6621, 64340 -> 26873", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32173, + "TargetID": 6621, + "Directional": true + }, + { + "SourceID": 64340, + "TargetID": 26873, + "Directional": true + } + ] + }, + { + "ID": 13235, + "SourceStructureID": 32187, + "TargetStructureID": 6617, + "Label": "32187-6617 via Conventional from 32188 -> 6622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32188, + "TargetID": 6622, + "Directional": true + } + ] + }, + { + "ID": 13236, + "SourceStructureID": 32227, + "TargetStructureID": 519, + "Label": "32227-519 via Conventional from 32228 -> 9294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32228, + "TargetID": 9294, + "Directional": true + } + ] + }, + { + "ID": 13237, + "SourceStructureID": 32227, + "TargetStructureID": 1724, + "Label": "32227-1724 via Conventional from 32232 -> 3986, 101859 -> 101860", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32232, + "TargetID": 3986, + "Directional": true + }, + { + "SourceID": 101859, + "TargetID": 101860, + "Directional": true + } + ] + }, + { + "ID": 13238, + "SourceStructureID": 32258, + "TargetStructureID": 39957, + "Label": "32258-39957 via Ribbon Synapse from 58457 -> 58454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58457, + "TargetID": 58454, + "Directional": true + } + ] + }, + { + "ID": 13239, + "SourceStructureID": 32273, + "TargetStructureID": 447, + "Label": "32273-447 via Conventional from 32279 -> 32278", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32279, + "TargetID": 32278, + "Directional": true + } + ] + }, + { + "ID": 13240, + "SourceStructureID": 32273, + "TargetStructureID": 21779, + "Label": "32273-21779 via Conventional from 32274 -> 32092, 32282 -> 32121", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32274, + "TargetID": 32092, + "Directional": true + }, + { + "SourceID": 32282, + "TargetID": 32121, + "Directional": true + } + ] + }, + { + "ID": 13241, + "SourceStructureID": 32312, + "TargetStructureID": 579, + "Label": "32312-579 via Conventional from 32313 -> 32314, 32319 -> 11039", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32313, + "TargetID": 32314, + "Directional": true + }, + { + "SourceID": 32319, + "TargetID": 11039, + "Directional": true + } + ] + }, + { + "ID": 13242, + "SourceStructureID": 32354, + "TargetStructureID": 32359, + "Label": "32354-32359 via Conventional from 32362 -> 32363", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32362, + "TargetID": 32363, + "Directional": true + } + ] + }, + { + "ID": 13243, + "SourceStructureID": 32359, + "TargetStructureID": 6128, + "Label": "32359-6128 via Adherens from 41683 -> 21085", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 41683, + "TargetID": 21085, + "Directional": true + } + ] + }, + { + "ID": 13244, + "SourceStructureID": 32359, + "TargetStructureID": 7225, + "Label": "32359-7225 via Ribbon Synapse from 41337 -> 41338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 41337, + "TargetID": 41338, + "Directional": true + } + ] + }, + { + "ID": 13245, + "SourceStructureID": 32359, + "TargetStructureID": 7859, + "Label": "32359-7859 via Ribbon Synapse from 32369 -> 84730, 41381 -> 84712", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32369, + "TargetID": 84730, + "Directional": true + }, + { + "SourceID": 41381, + "TargetID": 84712, + "Directional": true + } + ] + }, + { + "ID": 13246, + "SourceStructureID": 32359, + "TargetStructureID": 8504, + "Label": "32359-8504 via Ribbon Synapse from 41342 -> 8707, 45014 -> 8708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 41342, + "TargetID": 8707, + "Directional": true + }, + { + "SourceID": 45014, + "TargetID": 8708, + "Directional": true + } + ] + }, + { + "ID": 13247, + "SourceStructureID": 32359, + "TargetStructureID": 28950, + "Label": "32359-28950 via Ribbon Synapse from 41639 -> 28964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 41639, + "TargetID": 28964, + "Directional": true + } + ] + }, + { + "ID": 13248, + "SourceStructureID": 32359, + "TargetStructureID": 32354, + "Label": "32359-32354 via Ribbon Synapse from 32366 -> 32367, 32369 -> 32370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32366, + "TargetID": 32367, + "Directional": true + }, + { + "SourceID": 32369, + "TargetID": 32370, + "Directional": true + } + ] + }, + { + "ID": 13249, + "SourceStructureID": 32359, + "TargetStructureID": 35681, + "Label": "32359-35681 via Ribbon Synapse from 35717 -> 35716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35717, + "TargetID": 35716, + "Directional": true + } + ] + }, + { + "ID": 13250, + "SourceStructureID": 32359, + "TargetStructureID": 42776, + "Label": "32359-42776 via Ribbon Synapse from 41335 -> 42777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 41335, + "TargetID": 42777, + "Directional": true + } + ] + }, + { + "ID": 13251, + "SourceStructureID": 32371, + "TargetStructureID": 516, + "Label": "32371-516 via Conventional from 32372 -> 3746, 32373 -> 3741, 32374 -> 3748, 64567 -> 64568", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32372, + "TargetID": 3746, + "Directional": true + }, + { + "SourceID": 32373, + "TargetID": 3741, + "Directional": true + }, + { + "SourceID": 32374, + "TargetID": 3748, + "Directional": true + }, + { + "SourceID": 64567, + "TargetID": 64568, + "Directional": true + } + ] + }, + { + "ID": 13252, + "SourceStructureID": 32379, + "TargetStructureID": 483, + "Label": "32379-483 via Conventional from 100618 -> 6801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100618, + "TargetID": 6801, + "Directional": true + } + ] + }, + { + "ID": 13253, + "SourceStructureID": 32379, + "TargetStructureID": 485, + "Label": "32379-485 via Conventional from 100609 -> 100610", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100609, + "TargetID": 100610, + "Directional": true + } + ] + }, + { + "ID": 13254, + "SourceStructureID": 32379, + "TargetStructureID": 6912, + "Label": "32379-6912 via Conventional from 32382 -> 26843", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32382, + "TargetID": 26843, + "Directional": true + } + ] + }, + { + "ID": 13255, + "SourceStructureID": 32379, + "TargetStructureID": 15100, + "Label": "32379-15100 via Conventional from 32380 -> 32381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32380, + "TargetID": 32381, + "Directional": true + } + ] + }, + { + "ID": 13256, + "SourceStructureID": 32383, + "TargetStructureID": 142, + "Label": "32383-142 via Conventional from 101699 -> 92143", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101699, + "TargetID": 92143, + "Directional": true + } + ] + }, + { + "ID": 13257, + "SourceStructureID": 32383, + "TargetStructureID": 1724, + "Label": "32383-1724 via Conventional from 99548 -> 1790, 101505 -> 101506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99548, + "TargetID": 1790, + "Directional": true + }, + { + "SourceID": 101505, + "TargetID": 101506, + "Directional": true + } + ] + }, + { + "ID": 13258, + "SourceStructureID": 32383, + "TargetStructureID": 5017, + "Label": "32383-5017 via Conventional from 32385 -> 5045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32385, + "TargetID": 5045, + "Directional": true + } + ] + }, + { + "ID": 13259, + "SourceStructureID": 32383, + "TargetStructureID": 5279, + "Label": "32383-5279 via Conventional from 92703 -> 92702, 98049 -> 25828", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92703, + "TargetID": 92702, + "Directional": true + }, + { + "SourceID": 98049, + "TargetID": 25828, + "Directional": true + } + ] + }, + { + "ID": 13260, + "SourceStructureID": 32383, + "TargetStructureID": 5513, + "Label": "32383-5513 via Conventional from 35175 -> 40166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35175, + "TargetID": 40166, + "Directional": true + } + ] + }, + { + "ID": 13261, + "SourceStructureID": 32405, + "TargetStructureID": 176, + "Label": "32405-176 via Conventional from 38525 -> 5880", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38525, + "TargetID": 5880, + "Directional": true + } + ] + }, + { + "ID": 13262, + "SourceStructureID": 32405, + "TargetStructureID": 5531, + "Label": "32405-5531 via Conventional from 107528 -> 107529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107528, + "TargetID": 107529, + "Directional": true + } + ] + }, + { + "ID": 13263, + "SourceStructureID": 32405, + "TargetStructureID": 5595, + "Label": "32405-5595 via Conventional from 32406 -> 32407", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32406, + "TargetID": 32407, + "Directional": true + } + ] + }, + { + "ID": 13264, + "SourceStructureID": 32405, + "TargetStructureID": 5598, + "Label": "32405-5598 via Conventional from 32415 -> 32419", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32415, + "TargetID": 32419, + "Directional": true + } + ] + }, + { + "ID": 13265, + "SourceStructureID": 32405, + "TargetStructureID": 32409, + "Label": "32405-32409 via Conventional from 32408 -> 32414", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32408, + "TargetID": 32414, + "Directional": true + } + ] + }, + { + "ID": 13266, + "SourceStructureID": 32405, + "TargetStructureID": 62396, + "Label": "32405-62396 via Conventional from 36027 -> 62405", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36027, + "TargetID": 62405, + "Directional": true + } + ] + }, + { + "ID": 13267, + "SourceStructureID": 32409, + "TargetStructureID": 5601, + "Label": "32409-5601 via Conventional from 32412 -> 32413", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32412, + "TargetID": 32413, + "Directional": true + } + ] + }, + { + "ID": 13268, + "SourceStructureID": 32422, + "TargetStructureID": 5595, + "Label": "32422-5595 via Conventional from 32423 -> 15281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32423, + "TargetID": 15281, + "Directional": true + } + ] + }, + { + "ID": 13269, + "SourceStructureID": 32445, + "TargetStructureID": 7114, + "Label": "32445-7114 via Conventional from 32446 -> 32443", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32446, + "TargetID": 32443, + "Directional": true + } + ] + }, + { + "ID": 13270, + "SourceStructureID": 32451, + "TargetStructureID": 5530, + "Label": "32451-5530 via Conventional from 32455 -> 32456, 81285 -> 81286, 81647 -> 81648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32455, + "TargetID": 32456, + "Directional": true + }, + { + "SourceID": 81285, + "TargetID": 81286, + "Directional": true + }, + { + "SourceID": 81647, + "TargetID": 81648, + "Directional": true + } + ] + }, + { + "ID": 13271, + "SourceStructureID": 32451, + "TargetStructureID": 5614, + "Label": "32451-5614 via Conventional from 32452 -> 8732", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32452, + "TargetID": 8732, + "Directional": true + } + ] + }, + { + "ID": 13272, + "SourceStructureID": 32465, + "TargetStructureID": 5614, + "Label": "32465-5614 via Conventional from 32466 -> 5619", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32466, + "TargetID": 5619, + "Directional": true + } + ] + }, + { + "ID": 13273, + "SourceStructureID": 32477, + "TargetStructureID": 5565, + "Label": "32477-5565 via Conventional from 32479 -> 32487, 32488 -> 32489, 122605 -> 50186, 122608 -> 50198, 122609 -> 50202, 122612 -> 50213", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32479, + "TargetID": 32487, + "Directional": true + }, + { + "SourceID": 32488, + "TargetID": 32489, + "Directional": true + }, + { + "SourceID": 122605, + "TargetID": 50186, + "Directional": true + }, + { + "SourceID": 122608, + "TargetID": 50198, + "Directional": true + }, + { + "SourceID": 122609, + "TargetID": 50202, + "Directional": true + }, + { + "SourceID": 122612, + "TargetID": 50213, + "Directional": true + } + ] + }, + { + "ID": 13274, + "SourceStructureID": 32477, + "TargetStructureID": 5923, + "Label": "32477-5923 via Conventional from 32478 -> 32476", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32478, + "TargetID": 32476, + "Directional": true + } + ] + }, + { + "ID": 13275, + "SourceStructureID": 32477, + "TargetStructureID": 6118, + "Label": "32477-6118 via Conventional from 32494 -> 32497, 32498 -> 65907", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32494, + "TargetID": 32497, + "Directional": true + }, + { + "SourceID": 32498, + "TargetID": 65907, + "Directional": true + } + ] + }, + { + "ID": 13276, + "SourceStructureID": 32477, + "TargetStructureID": 6120, + "Label": "32477-6120 via Conventional from 32503 -> 32505", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32503, + "TargetID": 32505, + "Directional": true + } + ] + }, + { + "ID": 13277, + "SourceStructureID": 32477, + "TargetStructureID": 32513, + "Label": "32477-32513 via Conventional from 32511 -> 32514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32511, + "TargetID": 32514, + "Directional": true + } + ] + }, + { + "ID": 13278, + "SourceStructureID": 32477, + "TargetStructureID": 89546, + "Label": "32477-89546 via Conventional from 89548 -> 89547", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89548, + "TargetID": 89547, + "Directional": true + } + ] + }, + { + "ID": 13279, + "SourceStructureID": 32513, + "TargetStructureID": 6141, + "Label": "32513-6141 via Conventional from 32515 -> 32512, 32517 -> 32519", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32515, + "TargetID": 32512, + "Directional": true + }, + { + "SourceID": 32517, + "TargetID": 32519, + "Directional": true + } + ] + }, + { + "ID": 13280, + "SourceStructureID": 32534, + "TargetStructureID": 168, + "Label": "32534-168 via Conventional from 32537 -> 4220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32537, + "TargetID": 4220, + "Directional": true + } + ] + }, + { + "ID": 13281, + "SourceStructureID": 32534, + "TargetStructureID": 606, + "Label": "32534-606 via Conventional from 32548 -> 53486", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32548, + "TargetID": 53486, + "Directional": true + } + ] + }, + { + "ID": 13282, + "SourceStructureID": 32534, + "TargetStructureID": 8720, + "Label": "32534-8720 via Conventional from 46313 -> 60250", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46313, + "TargetID": 60250, + "Directional": true + } + ] + }, + { + "ID": 13283, + "SourceStructureID": 32534, + "TargetStructureID": 21299, + "Label": "32534-21299 via Conventional from 32535 -> 32533", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32535, + "TargetID": 32533, + "Directional": true + } + ] + }, + { + "ID": 13284, + "SourceStructureID": 32547, + "TargetStructureID": 286, + "Label": "32547-286 via Conventional from 32559 -> 32560", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32559, + "TargetID": 32560, + "Directional": true + } + ] + }, + { + "ID": 13285, + "SourceStructureID": 32547, + "TargetStructureID": 6164, + "Label": "32547-6164 via Conventional from 32550 -> 26869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32550, + "TargetID": 26869, + "Directional": true + } + ] + }, + { + "ID": 13286, + "SourceStructureID": 32566, + "TargetStructureID": 280, + "Label": "32566-280 via Conventional from 32571 -> 32572", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32571, + "TargetID": 32572, + "Directional": true + } + ] + }, + { + "ID": 13287, + "SourceStructureID": 32577, + "TargetStructureID": 6164, + "Label": "32577-6164 via Conventional from 32578 -> 32576, 32579 -> 26870", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32578, + "TargetID": 32576, + "Directional": true + }, + { + "SourceID": 32579, + "TargetID": 26870, + "Directional": true + } + ] + }, + { + "ID": 13288, + "SourceStructureID": 32581, + "TargetStructureID": 321, + "Label": "32581-321 via Conventional from 32584 -> 32585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32584, + "TargetID": 32585, + "Directional": true + } + ] + }, + { + "ID": 13289, + "SourceStructureID": 32581, + "TargetStructureID": 366, + "Label": "32581-366 via Conventional from 32601 -> 13963", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32601, + "TargetID": 13963, + "Directional": true + } + ] + }, + { + "ID": 13290, + "SourceStructureID": 32581, + "TargetStructureID": 431, + "Label": "32581-431 via Conventional from 32604 -> 32605", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32604, + "TargetID": 32605, + "Directional": true + } + ] + }, + { + "ID": 13291, + "SourceStructureID": 32581, + "TargetStructureID": 6164, + "Label": "32581-6164 via Conventional from 32582 -> 26871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32582, + "TargetID": 26871, + "Directional": true + } + ] + }, + { + "ID": 13292, + "SourceStructureID": 32608, + "TargetStructureID": 366, + "Label": "32608-366 via Conventional from 32615 -> 32616", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32615, + "TargetID": 32616, + "Directional": true + } + ] + }, + { + "ID": 13293, + "SourceStructureID": 32608, + "TargetStructureID": 369, + "Label": "32608-369 via Conventional from 32612 -> 32613", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32612, + "TargetID": 32613, + "Directional": true + } + ] + }, + { + "ID": 13294, + "SourceStructureID": 32608, + "TargetStructureID": 431, + "Label": "32608-431 via Conventional from 32618 -> 119063", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32618, + "TargetID": 119063, + "Directional": true + } + ] + }, + { + "ID": 13295, + "SourceStructureID": 32608, + "TargetStructureID": 6164, + "Label": "32608-6164 via Conventional from 32609 -> 11761", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32609, + "TargetID": 11761, + "Directional": true + } + ] + }, + { + "ID": 13296, + "SourceStructureID": 32621, + "TargetStructureID": 6164, + "Label": "32621-6164 via Conventional from 32622 -> 11758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32622, + "TargetID": 11758, + "Directional": true + } + ] + }, + { + "ID": 13297, + "SourceStructureID": 32626, + "TargetStructureID": 6561, + "Label": "32626-6561 via Conventional from 32627 -> 8340, 32628 -> 8341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32627, + "TargetID": 8340, + "Directional": true + }, + { + "SourceID": 32628, + "TargetID": 8341, + "Directional": true + } + ] + }, + { + "ID": 13298, + "SourceStructureID": 32637, + "TargetStructureID": 6561, + "Label": "32637-6561 via Conventional from 32638 -> 8342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32638, + "TargetID": 8342, + "Directional": true + } + ] + }, + { + "ID": 13299, + "SourceStructureID": 32641, + "TargetStructureID": 6561, + "Label": "32641-6561 via Conventional from 32642 -> 8343", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32642, + "TargetID": 8343, + "Directional": true + } + ] + }, + { + "ID": 13300, + "SourceStructureID": 32643, + "TargetStructureID": 6617, + "Label": "32643-6617 via Conventional from 32644 -> 17567", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32644, + "TargetID": 17567, + "Directional": true + } + ] + }, + { + "ID": 13301, + "SourceStructureID": 32643, + "TargetStructureID": 32654, + "Label": "32643-32654 via Conventional from 32651 -> 32657", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32651, + "TargetID": 32657, + "Directional": true + } + ] + }, + { + "ID": 13302, + "SourceStructureID": 32643, + "TargetStructureID": 32668, + "Label": "32643-32668 via Conventional from 32673 -> 32674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32673, + "TargetID": 32674, + "Directional": true + } + ] + }, + { + "ID": 13303, + "SourceStructureID": 32643, + "TargetStructureID": 87158, + "Label": "32643-87158 via Conventional from 32648 -> 87161", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32648, + "TargetID": 87161, + "Directional": true + } + ] + }, + { + "ID": 13304, + "SourceStructureID": 32654, + "TargetStructureID": 32643, + "Label": "32654-32643 via Ribbon Synapse from 32658 -> 32653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32658, + "TargetID": 32653, + "Directional": true + } + ] + }, + { + "ID": 13305, + "SourceStructureID": 32654, + "TargetStructureID": 32804, + "Label": "32654-32804 via Ribbon Synapse from 32837 -> 32836, 32842 -> 32841, 81047 -> 32839", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32837, + "TargetID": 32836, + "Directional": true + }, + { + "SourceID": 32842, + "TargetID": 32841, + "Directional": true + }, + { + "SourceID": 81047, + "TargetID": 32839, + "Directional": true + } + ] + }, + { + "ID": 13306, + "SourceStructureID": 32654, + "TargetStructureID": 61960, + "Label": "32654-61960 via Ribbon Synapse from 49306 -> 81650", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49306, + "TargetID": 81650, + "Directional": true + } + ] + }, + { + "ID": 13307, + "SourceStructureID": 32654, + "TargetStructureID": 66958, + "Label": "32654-66958 via Ribbon Synapse from 49308 -> 70113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49308, + "TargetID": 70113, + "Directional": true + } + ] + }, + { + "ID": 13308, + "SourceStructureID": 32654, + "TargetStructureID": 81038, + "Label": "32654-81038 via Ribbon Synapse from 81037 -> 81040", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81037, + "TargetID": 81040, + "Directional": true + } + ] + }, + { + "ID": 13309, + "SourceStructureID": 32654, + "TargetStructureID": 81039, + "Label": "32654-81039 via Ribbon Synapse from 81037 -> 81041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81037, + "TargetID": 81041, + "Directional": true + } + ] + }, + { + "ID": 13310, + "SourceStructureID": 32654, + "TargetStructureID": 81056, + "Label": "32654-81056 via Ribbon Synapse from 81055 -> 81060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81055, + "TargetID": 81060, + "Directional": true + } + ] + }, + { + "ID": 13311, + "SourceStructureID": 32654, + "TargetStructureID": 81057, + "Label": "32654-81057 via Ribbon Synapse from 81055 -> 81059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81055, + "TargetID": 81059, + "Directional": true + } + ] + }, + { + "ID": 13312, + "SourceStructureID": 32654, + "TargetStructureID": 81063, + "Label": "32654-81063 via Ribbon Synapse from 81062 -> 81064", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81062, + "TargetID": 81064, + "Directional": true + } + ] + }, + { + "ID": 13313, + "SourceStructureID": 32654, + "TargetStructureID": 81079, + "Label": "32654-81079 via Ribbon Synapse from 81078 -> 81080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81078, + "TargetID": 81080, + "Directional": true + } + ] + }, + { + "ID": 13314, + "SourceStructureID": 32654, + "TargetStructureID": 81085, + "Label": "32654-81085 via Ribbon Synapse from 81084 -> 81086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81084, + "TargetID": 81086, + "Directional": true + } + ] + }, + { + "ID": 13315, + "SourceStructureID": 32654, + "TargetStructureID": 81087, + "Label": "32654-81087 via Ribbon Synapse from 32842 -> 81088", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 32842, + "TargetID": 81088, + "Directional": true + } + ] + }, + { + "ID": 13316, + "SourceStructureID": 32654, + "TargetStructureID": 87158, + "Label": "32654-87158 via BC Conventional Synapse from 118970 -> 118969", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118970, + "TargetID": 118969, + "Directional": true + } + ] + }, + { + "ID": 13317, + "SourceStructureID": 32660, + "TargetStructureID": 6617, + "Label": "32660-6617 via Conventional from 32661 -> 6627, 32663 -> 6624, 32664 -> 6626", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32661, + "TargetID": 6627, + "Directional": true + }, + { + "SourceID": 32663, + "TargetID": 6624, + "Directional": true + }, + { + "SourceID": 32664, + "TargetID": 6626, + "Directional": true + } + ] + }, + { + "ID": 13318, + "SourceStructureID": 32666, + "TargetStructureID": 6618, + "Label": "32666-6618 via Conventional from 32667 -> 17611", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32667, + "TargetID": 17611, + "Directional": true + } + ] + }, + { + "ID": 13319, + "SourceStructureID": 32668, + "TargetStructureID": 307, + "Label": "32668-307 via Conventional from 32671 -> 15980", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32671, + "TargetID": 15980, + "Directional": true + } + ] + }, + { + "ID": 13320, + "SourceStructureID": 32668, + "TargetStructureID": 6618, + "Label": "32668-6618 via Conventional from 32670 -> 17610", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32670, + "TargetID": 17610, + "Directional": true + } + ] + }, + { + "ID": 13321, + "SourceStructureID": 32676, + "TargetStructureID": 7054, + "Label": "32676-7054 via Conventional from 32678 -> 10896", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32678, + "TargetID": 10896, + "Directional": true + } + ] + }, + { + "ID": 13322, + "SourceStructureID": 32681, + "TargetStructureID": 334, + "Label": "32681-334 via Conventional from 38481 -> 38482, 64570 -> 64569, 64573 -> 64572", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38481, + "TargetID": 38482, + "Directional": true + }, + { + "SourceID": 64570, + "TargetID": 64569, + "Directional": true + }, + { + "SourceID": 64573, + "TargetID": 64572, + "Directional": true + } + ] + }, + { + "ID": 13323, + "SourceStructureID": 32681, + "TargetStructureID": 8586, + "Label": "32681-8586 via Conventional from 32682 -> 32680", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32682, + "TargetID": 32680, + "Directional": true + } + ] + }, + { + "ID": 13324, + "SourceStructureID": 32719, + "TargetStructureID": 8749, + "Label": "32719-8749 via Conventional from 32720 -> 8850, 32724 -> 8852, 32725 -> 8854, 159840 -> 8861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32720, + "TargetID": 8850, + "Directional": true + }, + { + "SourceID": 32724, + "TargetID": 8852, + "Directional": true + }, + { + "SourceID": 32725, + "TargetID": 8854, + "Directional": true + }, + { + "SourceID": 159840, + "TargetID": 8861, + "Directional": true + } + ] + }, + { + "ID": 13325, + "SourceStructureID": 32726, + "TargetStructureID": 410, + "Label": "32726-410 via Conventional from 32733 -> 18164", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32733, + "TargetID": 18164, + "Directional": true + } + ] + }, + { + "ID": 13326, + "SourceStructureID": 32726, + "TargetStructureID": 5117, + "Label": "32726-5117 via Conventional from 32732 -> 15002", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32732, + "TargetID": 15002, + "Directional": true + } + ] + }, + { + "ID": 13327, + "SourceStructureID": 32726, + "TargetStructureID": 6153, + "Label": "32726-6153 via Conventional from 32727 -> 32728, 32729 -> 32730, 32731 -> 18166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32727, + "TargetID": 32728, + "Directional": true + }, + { + "SourceID": 32729, + "TargetID": 32730, + "Directional": true + }, + { + "SourceID": 32731, + "TargetID": 18166, + "Directional": true + } + ] + }, + { + "ID": 13328, + "SourceStructureID": 32734, + "TargetStructureID": 476, + "Label": "32734-476 via Conventional from 32735 -> 16501", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32735, + "TargetID": 16501, + "Directional": true + } + ] + }, + { + "ID": 13329, + "SourceStructureID": 32739, + "TargetStructureID": 410, + "Label": "32739-410 via Conventional from 32742 -> 32737, 32745 -> 23113, 32747 -> 32746, 32748 -> 18277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32742, + "TargetID": 32737, + "Directional": true + }, + { + "SourceID": 32745, + "TargetID": 23113, + "Directional": true + }, + { + "SourceID": 32747, + "TargetID": 32746, + "Directional": true + }, + { + "SourceID": 32748, + "TargetID": 18277, + "Directional": true + } + ] + }, + { + "ID": 13330, + "SourceStructureID": 32739, + "TargetStructureID": 419, + "Label": "32739-419 via Conventional from 32740 -> 32741, 32744 -> 32743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32740, + "TargetID": 32741, + "Directional": true + }, + { + "SourceID": 32744, + "TargetID": 32743, + "Directional": true + } + ] + }, + { + "ID": 13331, + "SourceStructureID": 32739, + "TargetStructureID": 514, + "Label": "32739-514 via Conventional from 32749 -> 15085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32749, + "TargetID": 15085, + "Directional": true + } + ] + }, + { + "ID": 13332, + "SourceStructureID": 32739, + "TargetStructureID": 9693, + "Label": "32739-9693 via Conventional from 32750 -> 28198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32750, + "TargetID": 28198, + "Directional": true + } + ] + }, + { + "ID": 13333, + "SourceStructureID": 32751, + "TargetStructureID": 2610, + "Label": "32751-2610 via Conventional from 32752 -> 18221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32752, + "TargetID": 18221, + "Directional": true + } + ] + }, + { + "ID": 13334, + "SourceStructureID": 32751, + "TargetStructureID": 9693, + "Label": "32751-9693 via Conventional from 32753 -> 27495", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32753, + "TargetID": 27495, + "Directional": true + } + ] + }, + { + "ID": 13335, + "SourceStructureID": 32754, + "TargetStructureID": 304, + "Label": "32754-304 via Conventional from 32755 -> 32756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32755, + "TargetID": 32756, + "Directional": true + } + ] + }, + { + "ID": 13336, + "SourceStructureID": 32767, + "TargetStructureID": 11044, + "Label": "32767-11044 via Conventional from 32768 -> 32766", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32768, + "TargetID": 32766, + "Directional": true + } + ] + }, + { + "ID": 13337, + "SourceStructureID": 32771, + "TargetStructureID": 10412, + "Label": "32771-10412 via Conventional from 32772 -> 10413", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32772, + "TargetID": 10413, + "Directional": true + } + ] + }, + { + "ID": 13338, + "SourceStructureID": 32773, + "TargetStructureID": 6203, + "Label": "32773-6203 via Conventional from 32775 -> 32776, 32779 -> 32780", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32775, + "TargetID": 32776, + "Directional": true + }, + { + "SourceID": 32779, + "TargetID": 32780, + "Directional": true + } + ] + }, + { + "ID": 13339, + "SourceStructureID": 32773, + "TargetStructureID": 10412, + "Label": "32773-10412 via Conventional from 32774 -> 10416", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32774, + "TargetID": 10416, + "Directional": true + } + ] + }, + { + "ID": 13340, + "SourceStructureID": 32787, + "TargetStructureID": 5601, + "Label": "32787-5601 via Conventional from 32790 -> 32791", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32790, + "TargetID": 32791, + "Directional": true + } + ] + }, + { + "ID": 13341, + "SourceStructureID": 32787, + "TargetStructureID": 10815, + "Label": "32787-10815 via Conventional from 32788 -> 32786", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32788, + "TargetID": 32786, + "Directional": true + } + ] + }, + { + "ID": 13342, + "SourceStructureID": 32795, + "TargetStructureID": 10826, + "Label": "32795-10826 via Conventional from 32796 -> 32794, 35466 -> 35467", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32796, + "TargetID": 32794, + "Directional": true + }, + { + "SourceID": 35466, + "TargetID": 35467, + "Directional": true + } + ] + }, + { + "ID": 13343, + "SourceStructureID": 32795, + "TargetStructureID": 11248, + "Label": "32795-11248 via Conventional from 33293 -> 33292, 33295 -> 33294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33293, + "TargetID": 33292, + "Directional": true + }, + { + "SourceID": 33295, + "TargetID": 33294, + "Directional": true + } + ] + }, + { + "ID": 13344, + "SourceStructureID": 32802, + "TargetStructureID": 10826, + "Label": "32802-10826 via Conventional from 32803 -> 32801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32803, + "TargetID": 32801, + "Directional": true + } + ] + }, + { + "ID": 13345, + "SourceStructureID": 32802, + "TargetStructureID": 67469, + "Label": "32802-67469 via Conventional from 35552 -> 69686", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35552, + "TargetID": 69686, + "Directional": true + } + ] + }, + { + "ID": 13346, + "SourceStructureID": 32804, + "TargetStructureID": 5522, + "Label": "32804-5522 via Conventional from 32805 -> 64124, 32808 -> 64254, 64304 -> 64303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32805, + "TargetID": 64124, + "Directional": true + }, + { + "SourceID": 32808, + "TargetID": 64254, + "Directional": true + }, + { + "SourceID": 64304, + "TargetID": 64303, + "Directional": true + } + ] + }, + { + "ID": 13347, + "SourceStructureID": 32804, + "TargetStructureID": 5623, + "Label": "32804-5623 via Conventional from 32818 -> 32820", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32818, + "TargetID": 32820, + "Directional": true + } + ] + }, + { + "ID": 13348, + "SourceStructureID": 32804, + "TargetStructureID": 6997, + "Label": "32804-6997 via Conventional from 32821 -> 32822, 32825 -> 22281, 32829 -> 22312", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32821, + "TargetID": 32822, + "Directional": true + }, + { + "SourceID": 32825, + "TargetID": 22281, + "Directional": true + }, + { + "SourceID": 32829, + "TargetID": 22312, + "Directional": true + } + ] + }, + { + "ID": 13349, + "SourceStructureID": 32804, + "TargetStructureID": 32654, + "Label": "32804-32654 via Conventional from 32832 -> 49276, 32834 -> 49319, 32840 -> 32843, 32844 -> 32845", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32832, + "TargetID": 49276, + "Directional": true + }, + { + "SourceID": 32834, + "TargetID": 49319, + "Directional": true + }, + { + "SourceID": 32840, + "TargetID": 32843, + "Directional": true + }, + { + "SourceID": 32844, + "TargetID": 32845, + "Directional": true + } + ] + }, + { + "ID": 13350, + "SourceStructureID": 32804, + "TargetStructureID": 61270, + "Label": "32804-61270 via Conventional from 32831 -> 61274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32831, + "TargetID": 61274, + "Directional": true + } + ] + }, + { + "ID": 13351, + "SourceStructureID": 32804, + "TargetStructureID": 64196, + "Label": "32804-64196 via Conventional from 32810 -> 64208", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32810, + "TargetID": 64208, + "Directional": true + } + ] + }, + { + "ID": 13352, + "SourceStructureID": 32804, + "TargetStructureID": 64268, + "Label": "32804-64268 via Conventional from 32811 -> 64286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32811, + "TargetID": 64286, + "Directional": true + } + ] + }, + { + "ID": 13353, + "SourceStructureID": 32804, + "TargetStructureID": 80755, + "Label": "32804-80755 via Conventional from 32847 -> 118928, 80758 -> 80759, 80775 -> 80776", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32847, + "TargetID": 118928, + "Directional": true + }, + { + "SourceID": 80758, + "TargetID": 80759, + "Directional": true + }, + { + "SourceID": 80775, + "TargetID": 80776, + "Directional": true + } + ] + }, + { + "ID": 13354, + "SourceStructureID": 32804, + "TargetStructureID": 81105, + "Label": "32804-81105 via Conventional from 32824 -> 81106", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32824, + "TargetID": 81106, + "Directional": true + } + ] + }, + { + "ID": 13355, + "SourceStructureID": 32848, + "TargetStructureID": 518, + "Label": "32848-518 via Conventional from 36416 -> 36415, 36417 -> 3358, 36418 -> 3364, 36697 -> 3350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36416, + "TargetID": 36415, + "Directional": true + }, + { + "SourceID": 36417, + "TargetID": 3358, + "Directional": true + }, + { + "SourceID": 36418, + "TargetID": 3364, + "Directional": true + }, + { + "SourceID": 36697, + "TargetID": 3350, + "Directional": true + } + ] + }, + { + "ID": 13356, + "SourceStructureID": 32848, + "TargetStructureID": 10872, + "Label": "32848-10872 via Conventional from 32849 -> 10873, 32850 -> 10874, 32851 -> 10875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32849, + "TargetID": 10873, + "Directional": true + }, + { + "SourceID": 32850, + "TargetID": 10874, + "Directional": true + }, + { + "SourceID": 32851, + "TargetID": 10875, + "Directional": true + } + ] + }, + { + "ID": 13357, + "SourceStructureID": 32853, + "TargetStructureID": 10872, + "Label": "32853-10872 via Conventional from 32854 -> 10876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32854, + "TargetID": 10876, + "Directional": true + } + ] + }, + { + "ID": 13358, + "SourceStructureID": 32855, + "TargetStructureID": 10872, + "Label": "32855-10872 via Conventional from 32856 -> 10876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32856, + "TargetID": 10876, + "Directional": true + } + ] + }, + { + "ID": 13359, + "SourceStructureID": 32857, + "TargetStructureID": 10872, + "Label": "32857-10872 via Conventional from 32858 -> 10878", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32858, + "TargetID": 10878, + "Directional": true + } + ] + }, + { + "ID": 13360, + "SourceStructureID": 32862, + "TargetStructureID": 5513, + "Label": "32862-5513 via Conventional from 32865 -> 32866, 32868 -> 118225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32865, + "TargetID": 32866, + "Directional": true + }, + { + "SourceID": 32868, + "TargetID": 118225, + "Directional": true + } + ] + }, + { + "ID": 13361, + "SourceStructureID": 32862, + "TargetStructureID": 10872, + "Label": "32862-10872 via Conventional from 32863 -> 10884", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32863, + "TargetID": 10884, + "Directional": true + } + ] + }, + { + "ID": 13362, + "SourceStructureID": 32862, + "TargetStructureID": 25575, + "Label": "32862-25575 via Conventional from 32867 -> 25587", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32867, + "TargetID": 25587, + "Directional": true + } + ] + }, + { + "ID": 13363, + "SourceStructureID": 32871, + "TargetStructureID": 10931, + "Label": "32871-10931 via Conventional from 32872 -> 10932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32872, + "TargetID": 10932, + "Directional": true + } + ] + }, + { + "ID": 13364, + "SourceStructureID": 32874, + "TargetStructureID": 138, + "Label": "32874-138 via Conventional from 32876 -> 32882, 32883 -> 32885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32876, + "TargetID": 32882, + "Directional": true + }, + { + "SourceID": 32883, + "TargetID": 32885, + "Directional": true + } + ] + }, + { + "ID": 13365, + "SourceStructureID": 32874, + "TargetStructureID": 2063, + "Label": "32874-2063 via Conventional from 32890 -> 36138", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32890, + "TargetID": 36138, + "Directional": true + } + ] + }, + { + "ID": 13366, + "SourceStructureID": 32874, + "TargetStructureID": 32871, + "Label": "32874-32871 via Conventional from 32875 -> 32873", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32875, + "TargetID": 32873, + "Directional": true + } + ] + }, + { + "ID": 13367, + "SourceStructureID": 32892, + "TargetStructureID": 138, + "Label": "32892-138 via Conventional from 32893 -> 32894", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32893, + "TargetID": 32894, + "Directional": true + } + ] + }, + { + "ID": 13368, + "SourceStructureID": 32892, + "TargetStructureID": 32874, + "Label": "32892-32874 via Conventional from 32896 -> 32888", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32896, + "TargetID": 32888, + "Directional": true + } + ] + }, + { + "ID": 13369, + "SourceStructureID": 32900, + "TargetStructureID": 10931, + "Label": "32900-10931 via Conventional from 32901 -> 10936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32901, + "TargetID": 10936, + "Directional": true + } + ] + }, + { + "ID": 13370, + "SourceStructureID": 32900, + "TargetStructureID": 108861, + "Label": "32900-108861 via Conventional from 38362 -> 108866", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38362, + "TargetID": 108866, + "Directional": true + } + ] + }, + { + "ID": 13371, + "SourceStructureID": 32905, + "TargetStructureID": 10931, + "Label": "32905-10931 via Conventional from 32906 -> 10935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32906, + "TargetID": 10935, + "Directional": true + } + ] + }, + { + "ID": 13372, + "SourceStructureID": 32911, + "TargetStructureID": 10943, + "Label": "32911-10943 via Conventional from 32912 -> 16259", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32912, + "TargetID": 16259, + "Directional": true + } + ] + }, + { + "ID": 13373, + "SourceStructureID": 32913, + "TargetStructureID": 593, + "Label": "32913-593 via Conventional from 66288 -> 66289", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66288, + "TargetID": 66289, + "Directional": true + } + ] + }, + { + "ID": 13374, + "SourceStructureID": 32913, + "TargetStructureID": 10943, + "Label": "32913-10943 via Conventional from 32914 -> 16261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32914, + "TargetID": 16261, + "Directional": true + } + ] + }, + { + "ID": 13375, + "SourceStructureID": 32913, + "TargetStructureID": 16026, + "Label": "32913-16026 via Conventional from 38351 -> 38352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38351, + "TargetID": 38352, + "Directional": true + } + ] + }, + { + "ID": 13376, + "SourceStructureID": 32913, + "TargetStructureID": 66804, + "Label": "32913-66804 via Conventional from 38350 -> 66811", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38350, + "TargetID": 66811, + "Directional": true + } + ] + }, + { + "ID": 13377, + "SourceStructureID": 32913, + "TargetStructureID": 67080, + "Label": "32913-67080 via Conventional from 67079 -> 67081", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67079, + "TargetID": 67081, + "Directional": true + } + ] + }, + { + "ID": 13378, + "SourceStructureID": 32916, + "TargetStructureID": 168, + "Label": "32916-168 via Conventional from 49171 -> 49170", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 49171, + "TargetID": 49170, + "Directional": true + } + ] + }, + { + "ID": 13379, + "SourceStructureID": 32916, + "TargetStructureID": 10960, + "Label": "32916-10960 via Conventional from 32917 -> 12472", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32917, + "TargetID": 12472, + "Directional": true + } + ] + }, + { + "ID": 13380, + "SourceStructureID": 32920, + "TargetStructureID": 166, + "Label": "32920-166 via Conventional from 39004 -> 39005", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39004, + "TargetID": 39005, + "Directional": true + } + ] + }, + { + "ID": 13381, + "SourceStructureID": 32920, + "TargetStructureID": 170, + "Label": "32920-170 via Conventional from 32923 -> 1218", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32923, + "TargetID": 1218, + "Directional": true + } + ] + }, + { + "ID": 13382, + "SourceStructureID": 32920, + "TargetStructureID": 10960, + "Label": "32920-10960 via Conventional from 32921 -> 32919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32921, + "TargetID": 32919, + "Directional": true + } + ] + }, + { + "ID": 13383, + "SourceStructureID": 32926, + "TargetStructureID": 5535, + "Label": "32926-5535 via Conventional from 32933 -> 32932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32933, + "TargetID": 32932, + "Directional": true + } + ] + }, + { + "ID": 13384, + "SourceStructureID": 32926, + "TargetStructureID": 5609, + "Label": "32926-5609 via Conventional from 32927 -> 32931", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32927, + "TargetID": 32931, + "Directional": true + } + ] + }, + { + "ID": 13385, + "SourceStructureID": 32926, + "TargetStructureID": 10964, + "Label": "32926-10964 via Conventional from 32928 -> 31489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32928, + "TargetID": 31489, + "Directional": true + } + ] + }, + { + "ID": 13386, + "SourceStructureID": 32936, + "TargetStructureID": 11020, + "Label": "32936-11020 via Conventional from 32937 -> 20010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32937, + "TargetID": 20010, + "Directional": true + } + ] + }, + { + "ID": 13387, + "SourceStructureID": 32945, + "TargetStructureID": 11030, + "Label": "32945-11030 via Conventional from 32946 -> 32947", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32946, + "TargetID": 32947, + "Directional": true + } + ] + }, + { + "ID": 13388, + "SourceStructureID": 32950, + "TargetStructureID": 5297, + "Label": "32950-5297 via Conventional from 32953 -> 39415", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32953, + "TargetID": 39415, + "Directional": true + } + ] + }, + { + "ID": 13389, + "SourceStructureID": 32950, + "TargetStructureID": 32950, + "Label": "32950-32950 via Conventional from 32951 -> 32952", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32951, + "TargetID": 32952, + "Directional": true + } + ] + }, + { + "ID": 13390, + "SourceStructureID": 32954, + "TargetStructureID": 6115, + "Label": "32954-6115 via Conventional from 32956 -> 32957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32956, + "TargetID": 32957, + "Directional": true + } + ] + }, + { + "ID": 13391, + "SourceStructureID": 32959, + "TargetStructureID": 517, + "Label": "32959-517 via Conventional from 33025 -> 33026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33025, + "TargetID": 33026, + "Directional": true + } + ] + }, + { + "ID": 13392, + "SourceStructureID": 32959, + "TargetStructureID": 11033, + "Label": "32959-11033 via Conventional from 32960 -> 32961", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32960, + "TargetID": 32961, + "Directional": true + } + ] + }, + { + "ID": 13393, + "SourceStructureID": 32959, + "TargetStructureID": 11038, + "Label": "32959-11038 via Conventional from 33021 -> 33022", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33021, + "TargetID": 33022, + "Directional": true + } + ] + }, + { + "ID": 13394, + "SourceStructureID": 32959, + "TargetStructureID": 11321, + "Label": "32959-11321 via Conventional from 33017 -> 33014, 33019 -> 33018", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33017, + "TargetID": 33014, + "Directional": true + }, + { + "SourceID": 33019, + "TargetID": 33018, + "Directional": true + } + ] + }, + { + "ID": 13395, + "SourceStructureID": 32970, + "TargetStructureID": 166, + "Label": "32970-166 via Conventional from 32980 -> 59977, 32981 -> 32982, 32981 -> 59988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32980, + "TargetID": 59977, + "Directional": true + }, + { + "SourceID": 32981, + "TargetID": 32982, + "Directional": true + }, + { + "SourceID": 32981, + "TargetID": 59988, + "Directional": true + } + ] + }, + { + "ID": 13396, + "SourceStructureID": 32970, + "TargetStructureID": 6115, + "Label": "32970-6115 via Conventional from 32974 -> 16056, 32975 -> 32976, 72679 -> 72680", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32974, + "TargetID": 16056, + "Directional": true + }, + { + "SourceID": 32975, + "TargetID": 32976, + "Directional": true + }, + { + "SourceID": 72679, + "TargetID": 72680, + "Directional": true + } + ] + }, + { + "ID": 13397, + "SourceStructureID": 32970, + "TargetStructureID": 11030, + "Label": "32970-11030 via Conventional from 32971 -> 32972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32971, + "TargetID": 32972, + "Directional": true + } + ] + }, + { + "ID": 13398, + "SourceStructureID": 32970, + "TargetStructureID": 16087, + "Label": "32970-16087 via Conventional from 32977 -> 16089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32977, + "TargetID": 16089, + "Directional": true + } + ] + }, + { + "ID": 13399, + "SourceStructureID": 32970, + "TargetStructureID": 71519, + "Label": "32970-71519 via Conventional from 32973 -> 77036", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32973, + "TargetID": 77036, + "Directional": true + } + ] + }, + { + "ID": 13400, + "SourceStructureID": 32987, + "TargetStructureID": 11089, + "Label": "32987-11089 via Conventional from 32988 -> 30498", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32988, + "TargetID": 30498, + "Directional": true + } + ] + }, + { + "ID": 13401, + "SourceStructureID": 32989, + "TargetStructureID": 11089, + "Label": "32989-11089 via Conventional from 32990 -> 32991", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32990, + "TargetID": 32991, + "Directional": true + } + ] + }, + { + "ID": 13402, + "SourceStructureID": 32992, + "TargetStructureID": 11172, + "Label": "32992-11172 via Conventional from 32993 -> 15697", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32993, + "TargetID": 15697, + "Directional": true + } + ] + }, + { + "ID": 13403, + "SourceStructureID": 32994, + "TargetStructureID": 579, + "Label": "32994-579 via Conventional from 99197 -> 99198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99197, + "TargetID": 99198, + "Directional": true + } + ] + }, + { + "ID": 13404, + "SourceStructureID": 32994, + "TargetStructureID": 5565, + "Label": "32994-5565 via Conventional from 99201 -> 50274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99201, + "TargetID": 50274, + "Directional": true + } + ] + }, + { + "ID": 13405, + "SourceStructureID": 32994, + "TargetStructureID": 11172, + "Label": "32994-11172 via Conventional from 32995 -> 15698", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32995, + "TargetID": 15698, + "Directional": true + } + ] + }, + { + "ID": 13406, + "SourceStructureID": 33003, + "TargetStructureID": 11172, + "Label": "33003-11172 via Conventional from 33004 -> 15705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33004, + "TargetID": 15705, + "Directional": true + } + ] + }, + { + "ID": 13407, + "SourceStructureID": 33003, + "TargetStructureID": 66958, + "Label": "33003-66958 via Conventional from 69947 -> 69937", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69947, + "TargetID": 69937, + "Directional": true + } + ] + }, + { + "ID": 13408, + "SourceStructureID": 33008, + "TargetStructureID": 11250, + "Label": "33008-11250 via Conventional from 33009 -> 30291", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33009, + "TargetID": 30291, + "Directional": true + } + ] + }, + { + "ID": 13409, + "SourceStructureID": 33039, + "TargetStructureID": 4877, + "Label": "33039-4877 via Conventional from 33049 -> 126822, 54222 -> 126865", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33049, + "TargetID": 126822, + "Directional": true + }, + { + "SourceID": 54222, + "TargetID": 126865, + "Directional": true + } + ] + }, + { + "ID": 13410, + "SourceStructureID": 33039, + "TargetStructureID": 5637, + "Label": "33039-5637 via Conventional from 33053 -> 33054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33053, + "TargetID": 33054, + "Directional": true + } + ] + }, + { + "ID": 13411, + "SourceStructureID": 33039, + "TargetStructureID": 11321, + "Label": "33039-11321 via Conventional from 33040 -> 33038", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33040, + "TargetID": 33038, + "Directional": true + } + ] + }, + { + "ID": 13412, + "SourceStructureID": 33057, + "TargetStructureID": 606, + "Label": "33057-606 via Conventional from 33061 -> 48121, 33064 -> 33065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33061, + "TargetID": 48121, + "Directional": true + }, + { + "SourceID": 33064, + "TargetID": 33065, + "Directional": true + } + ] + }, + { + "ID": 13413, + "SourceStructureID": 33057, + "TargetStructureID": 5468, + "Label": "33057-5468 via Conventional from 33060 -> 48130", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33060, + "TargetID": 48130, + "Directional": true + } + ] + }, + { + "ID": 13414, + "SourceStructureID": 33057, + "TargetStructureID": 11321, + "Label": "33057-11321 via Conventional from 33058 -> 33056", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33058, + "TargetID": 33056, + "Directional": true + } + ] + }, + { + "ID": 13415, + "SourceStructureID": 33072, + "TargetStructureID": 11401, + "Label": "33072-11401 via Conventional from 33073 -> 11403", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33073, + "TargetID": 11403, + "Directional": true + } + ] + }, + { + "ID": 13416, + "SourceStructureID": 33088, + "TargetStructureID": 14615, + "Label": "33088-14615 via Conventional from 33089 -> 25316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33089, + "TargetID": 25316, + "Directional": true + } + ] + }, + { + "ID": 13417, + "SourceStructureID": 33092, + "TargetStructureID": 5283, + "Label": "33092-5283 via Conventional from 123779 -> 123780", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123779, + "TargetID": 123780, + "Directional": true + } + ] + }, + { + "ID": 13418, + "SourceStructureID": 33092, + "TargetStructureID": 14615, + "Label": "33092-14615 via Conventional from 36608 -> 33091", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36608, + "TargetID": 33091, + "Directional": true + } + ] + }, + { + "ID": 13419, + "SourceStructureID": 33114, + "TargetStructureID": 15100, + "Label": "33114-15100 via Conventional from 33115 -> 17999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33115, + "TargetID": 17999, + "Directional": true + } + ] + }, + { + "ID": 13420, + "SourceStructureID": 33117, + "TargetStructureID": 15100, + "Label": "33117-15100 via Conventional from 33118 -> 33119", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33118, + "TargetID": 33119, + "Directional": true + } + ] + }, + { + "ID": 13421, + "SourceStructureID": 33117, + "TargetStructureID": 26079, + "Label": "33117-26079 via Conventional from 33125 -> 33126", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33125, + "TargetID": 33126, + "Directional": true + } + ] + }, + { + "ID": 13422, + "SourceStructureID": 33127, + "TargetStructureID": 408, + "Label": "33127-408 via Conventional from 33129 -> 33131, 33133 -> 52952", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33129, + "TargetID": 33131, + "Directional": true + }, + { + "SourceID": 33133, + "TargetID": 52952, + "Directional": true + } + ] + }, + { + "ID": 13423, + "SourceStructureID": 33127, + "TargetStructureID": 6912, + "Label": "33127-6912 via Conventional from 33135 -> 6927, 33139 -> 33140, 33142 -> 33146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33135, + "TargetID": 6927, + "Directional": true + }, + { + "SourceID": 33139, + "TargetID": 33140, + "Directional": true + }, + { + "SourceID": 33142, + "TargetID": 33146, + "Directional": true + } + ] + }, + { + "ID": 13424, + "SourceStructureID": 33127, + "TargetStructureID": 15942, + "Label": "33127-15942 via Conventional from 33128 -> 15967", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33128, + "TargetID": 15967, + "Directional": true + } + ] + }, + { + "ID": 13425, + "SourceStructureID": 33127, + "TargetStructureID": 28886, + "Label": "33127-28886 via Conventional from 33143 -> 51321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33143, + "TargetID": 51321, + "Directional": true + } + ] + }, + { + "ID": 13426, + "SourceStructureID": 33148, + "TargetStructureID": 324, + "Label": "33148-324 via Conventional from 33155 -> 12378", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33155, + "TargetID": 12378, + "Directional": true + } + ] + }, + { + "ID": 13427, + "SourceStructureID": 33148, + "TargetStructureID": 366, + "Label": "33148-366 via Conventional from 33154 -> 13988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33154, + "TargetID": 13988, + "Directional": true + } + ] + }, + { + "ID": 13428, + "SourceStructureID": 33148, + "TargetStructureID": 15979, + "Label": "33148-15979 via Conventional from 33149 -> 33147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33149, + "TargetID": 33147, + "Directional": true + } + ] + }, + { + "ID": 13429, + "SourceStructureID": 33161, + "TargetStructureID": 461, + "Label": "33161-461 via Conventional from 114779 -> 114778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114779, + "TargetID": 114778, + "Directional": true + } + ] + }, + { + "ID": 13430, + "SourceStructureID": 33198, + "TargetStructureID": 16446, + "Label": "33198-16446 via Conventional from 33199 -> 16450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33199, + "TargetID": 16450, + "Directional": true + } + ] + }, + { + "ID": 13431, + "SourceStructureID": 33200, + "TargetStructureID": 16446, + "Label": "33200-16446 via Conventional from 33202 -> 33201", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33202, + "TargetID": 33201, + "Directional": true + } + ] + }, + { + "ID": 13432, + "SourceStructureID": 33217, + "TargetStructureID": 5528, + "Label": "33217-5528 via Conventional from 33228 -> 94177, 93977 -> 93976, 94147 -> 94148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33228, + "TargetID": 94177, + "Directional": true + }, + { + "SourceID": 93977, + "TargetID": 93976, + "Directional": true + }, + { + "SourceID": 94147, + "TargetID": 94148, + "Directional": true + } + ] + }, + { + "ID": 13433, + "SourceStructureID": 33217, + "TargetStructureID": 5530, + "Label": "33217-5530 via Conventional from 33220 -> 23841", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33220, + "TargetID": 23841, + "Directional": true + } + ] + }, + { + "ID": 13434, + "SourceStructureID": 33217, + "TargetStructureID": 6129, + "Label": "33217-6129 via Conventional from 88533 -> 88534", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88533, + "TargetID": 88534, + "Directional": true + } + ] + }, + { + "ID": 13435, + "SourceStructureID": 33217, + "TargetStructureID": 10596, + "Label": "33217-10596 via Conventional from 33218 -> 33215", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33218, + "TargetID": 33215, + "Directional": true + } + ] + }, + { + "ID": 13436, + "SourceStructureID": 33253, + "TargetStructureID": 10956, + "Label": "33253-10956 via Conventional from 33254 -> 33248", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33254, + "TargetID": 33248, + "Directional": true + } + ] + }, + { + "ID": 13437, + "SourceStructureID": 33272, + "TargetStructureID": 5598, + "Label": "33272-5598 via Conventional from 89761 -> 89762, 89770 -> 89771, 89773 -> 89774", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89761, + "TargetID": 89762, + "Directional": true + }, + { + "SourceID": 89770, + "TargetID": 89771, + "Directional": true + }, + { + "SourceID": 89773, + "TargetID": 89774, + "Directional": true + } + ] + }, + { + "ID": 13438, + "SourceStructureID": 33272, + "TargetStructureID": 6141, + "Label": "33272-6141 via Conventional from 33276 -> 33277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33276, + "TargetID": 33277, + "Directional": true + } + ] + }, + { + "ID": 13439, + "SourceStructureID": 33272, + "TargetStructureID": 11038, + "Label": "33272-11038 via Conventional from 89712 -> 89717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89712, + "TargetID": 89717, + "Directional": true + } + ] + }, + { + "ID": 13440, + "SourceStructureID": 33272, + "TargetStructureID": 89737, + "Label": "33272-89737 via Conventional from 33278 -> 89738", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33278, + "TargetID": 89738, + "Directional": true + } + ] + }, + { + "ID": 13441, + "SourceStructureID": 33333, + "TargetStructureID": 516, + "Label": "33333-516 via Conventional from 33334 -> 10846, 64361 -> 64360", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33334, + "TargetID": 10846, + "Directional": true + }, + { + "SourceID": 64361, + "TargetID": 64360, + "Directional": true + } + ] + }, + { + "ID": 13442, + "SourceStructureID": 33588, + "TargetStructureID": 280, + "Label": "33588-280 via Conventional from 33591 -> 33592, 33593 -> 33594", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33591, + "TargetID": 33592, + "Directional": true + }, + { + "SourceID": 33593, + "TargetID": 33594, + "Directional": true + } + ] + }, + { + "ID": 13443, + "SourceStructureID": 33615, + "TargetStructureID": 5563, + "Label": "33615-5563 via Conventional from 33619 -> 33614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33619, + "TargetID": 33614, + "Directional": true + } + ] + }, + { + "ID": 13444, + "SourceStructureID": 33615, + "TargetStructureID": 5565, + "Label": "33615-5565 via Conventional from 33616 -> 33617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33616, + "TargetID": 33617, + "Directional": true + } + ] + }, + { + "ID": 13445, + "SourceStructureID": 33625, + "TargetStructureID": 15796, + "Label": "33625-15796 via Conventional from 33645 -> 55676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33645, + "TargetID": 55676, + "Directional": true + } + ] + }, + { + "ID": 13446, + "SourceStructureID": 33625, + "TargetStructureID": 99338, + "Label": "33625-99338 via Conventional from 99216 -> 99339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99216, + "TargetID": 99339, + "Directional": true + } + ] + }, + { + "ID": 13447, + "SourceStructureID": 33625, + "TargetStructureID": 99356, + "Label": "33625-99356 via Conventional from 33647 -> 99357", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33647, + "TargetID": 99357, + "Directional": true + } + ] + }, + { + "ID": 13448, + "SourceStructureID": 33625, + "TargetStructureID": 99365, + "Label": "33625-99365 via Conventional from 33648 -> 99368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33648, + "TargetID": 99368, + "Directional": true + } + ] + }, + { + "ID": 13449, + "SourceStructureID": 33625, + "TargetStructureID": 99370, + "Label": "33625-99370 via Conventional from 33649 -> 99373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33649, + "TargetID": 99373, + "Directional": true + } + ] + }, + { + "ID": 13450, + "SourceStructureID": 33675, + "TargetStructureID": 10956, + "Label": "33675-10956 via Conventional from 33676 -> 33674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33676, + "TargetID": 33674, + "Directional": true + } + ] + }, + { + "ID": 13451, + "SourceStructureID": 33714, + "TargetStructureID": 5303, + "Label": "33714-5303 via Conventional from 99379 -> 35733", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99379, + "TargetID": 35733, + "Directional": true + } + ] + }, + { + "ID": 13452, + "SourceStructureID": 33714, + "TargetStructureID": 6204, + "Label": "33714-6204 via Conventional from 99382 -> 99384", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99382, + "TargetID": 99384, + "Directional": true + } + ] + }, + { + "ID": 13453, + "SourceStructureID": 33714, + "TargetStructureID": 11085, + "Label": "33714-11085 via Conventional from 33716 -> 33713", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33716, + "TargetID": 33713, + "Directional": true + } + ] + }, + { + "ID": 13454, + "SourceStructureID": 33873, + "TargetStructureID": 1724, + "Label": "33873-1724 via Conventional from 33874 -> 3982", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33874, + "TargetID": 3982, + "Directional": true + } + ] + }, + { + "ID": 13455, + "SourceStructureID": 33873, + "TargetStructureID": 5575, + "Label": "33873-5575 via Conventional from 33876 -> 22951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33876, + "TargetID": 22951, + "Directional": true + } + ] + }, + { + "ID": 13456, + "SourceStructureID": 33881, + "TargetStructureID": 458, + "Label": "33881-458 via Conventional from 33922 -> 14531", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33922, + "TargetID": 14531, + "Directional": true + } + ] + }, + { + "ID": 13457, + "SourceStructureID": 33881, + "TargetStructureID": 968, + "Label": "33881-968 via Conventional from 33912 -> 33913", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33912, + "TargetID": 33913, + "Directional": true + } + ] + }, + { + "ID": 13458, + "SourceStructureID": 33881, + "TargetStructureID": 992, + "Label": "33881-992 via Conventional from 33908 -> 60207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33908, + "TargetID": 60207, + "Directional": true + } + ] + }, + { + "ID": 13459, + "SourceStructureID": 33881, + "TargetStructureID": 4849, + "Label": "33881-4849 via Conventional from 33882 -> 33883, 33884 -> 33885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33882, + "TargetID": 33883, + "Directional": true + }, + { + "SourceID": 33884, + "TargetID": 33885, + "Directional": true + } + ] + }, + { + "ID": 13460, + "SourceStructureID": 33881, + "TargetStructureID": 4850, + "Label": "33881-4850 via Conventional from 33887 -> 33892", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33887, + "TargetID": 33892, + "Directional": true + } + ] + }, + { + "ID": 13461, + "SourceStructureID": 33881, + "TargetStructureID": 131722, + "Label": "33881-131722 via Conventional from 33917 -> 131737", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33917, + "TargetID": 131737, + "Directional": true + } + ] + }, + { + "ID": 13462, + "SourceStructureID": 34028, + "TargetStructureID": 142, + "Label": "34028-142 via Conventional from 34033 -> 92931", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34033, + "TargetID": 92931, + "Directional": true + } + ] + }, + { + "ID": 13463, + "SourceStructureID": 34028, + "TargetStructureID": 171, + "Label": "34028-171 via Conventional from 34029 -> 34030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34029, + "TargetID": 34030, + "Directional": true + } + ] + }, + { + "ID": 13464, + "SourceStructureID": 34028, + "TargetStructureID": 39696, + "Label": "34028-39696 via Conventional from 34032 -> 39782", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34032, + "TargetID": 39782, + "Directional": true + } + ] + }, + { + "ID": 13465, + "SourceStructureID": 34034, + "TargetStructureID": 171, + "Label": "34034-171 via Conventional from 34035 -> 87723", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34035, + "TargetID": 87723, + "Directional": true + } + ] + }, + { + "ID": 13466, + "SourceStructureID": 34036, + "TargetStructureID": 142, + "Label": "34036-142 via Conventional from 34039 -> 31788, 34050 -> 34051, 47139 -> 47138", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34039, + "TargetID": 31788, + "Directional": true + }, + { + "SourceID": 34050, + "TargetID": 34051, + "Directional": true + }, + { + "SourceID": 47139, + "TargetID": 47138, + "Directional": true + } + ] + }, + { + "ID": 13467, + "SourceStructureID": 34036, + "TargetStructureID": 171, + "Label": "34036-171 via Conventional from 34037 -> 34038", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34037, + "TargetID": 34038, + "Directional": true + } + ] + }, + { + "ID": 13468, + "SourceStructureID": 34036, + "TargetStructureID": 176, + "Label": "34036-176 via Conventional from 34043 -> 34044", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34043, + "TargetID": 34044, + "Directional": true + } + ] + }, + { + "ID": 13469, + "SourceStructureID": 34036, + "TargetStructureID": 5279, + "Label": "34036-5279 via Conventional from 34049 -> 49213", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34049, + "TargetID": 49213, + "Directional": true + } + ] + }, + { + "ID": 13470, + "SourceStructureID": 34036, + "TargetStructureID": 6117, + "Label": "34036-6117 via Conventional from 34040 -> 59089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34040, + "TargetID": 59089, + "Directional": true + } + ] + }, + { + "ID": 13471, + "SourceStructureID": 34036, + "TargetStructureID": 10625, + "Label": "34036-10625 via Conventional from 34047 -> 33607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34047, + "TargetID": 33607, + "Directional": true + } + ] + }, + { + "ID": 13472, + "SourceStructureID": 34053, + "TargetStructureID": 273, + "Label": "34053-273 via Conventional from 34054 -> 34052", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34054, + "TargetID": 34052, + "Directional": true + } + ] + }, + { + "ID": 13473, + "SourceStructureID": 34055, + "TargetStructureID": 168, + "Label": "34055-168 via Conventional from 34079 -> 34082, 34085 -> 4226, 81944 -> 81945", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34079, + "TargetID": 34082, + "Directional": true + }, + { + "SourceID": 34085, + "TargetID": 4226, + "Directional": true + }, + { + "SourceID": 81944, + "TargetID": 81945, + "Directional": true + } + ] + }, + { + "ID": 13474, + "SourceStructureID": 34055, + "TargetStructureID": 176, + "Label": "34055-176 via Conventional from 34105 -> 34109", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34105, + "TargetID": 34109, + "Directional": true + } + ] + }, + { + "ID": 13475, + "SourceStructureID": 34055, + "TargetStructureID": 273, + "Label": "34055-273 via Conventional from 34056 -> 34057", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34056, + "TargetID": 34057, + "Directional": true + } + ] + }, + { + "ID": 13476, + "SourceStructureID": 34055, + "TargetStructureID": 330, + "Label": "34055-330 via Conventional from 34286 -> 26177", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34286, + "TargetID": 26177, + "Directional": true + } + ] + }, + { + "ID": 13477, + "SourceStructureID": 34055, + "TargetStructureID": 431, + "Label": "34055-431 via Conventional from 34063 -> 12655, 34283 -> 34284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34063, + "TargetID": 12655, + "Directional": true + }, + { + "SourceID": 34283, + "TargetID": 34284, + "Directional": true + } + ] + }, + { + "ID": 13478, + "SourceStructureID": 34055, + "TargetStructureID": 446, + "Label": "34055-446 via Conventional from 34288 -> 34289, 34290 -> 34291, 34292 -> 34293", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34288, + "TargetID": 34289, + "Directional": true + }, + { + "SourceID": 34290, + "TargetID": 34291, + "Directional": true + }, + { + "SourceID": 34292, + "TargetID": 34293, + "Directional": true + } + ] + }, + { + "ID": 13479, + "SourceStructureID": 34055, + "TargetStructureID": 461, + "Label": "34055-461 via Conventional from 34074 -> 14679, 34075 -> 14802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34074, + "TargetID": 14679, + "Directional": true + }, + { + "SourceID": 34075, + "TargetID": 14802, + "Directional": true + } + ] + }, + { + "ID": 13480, + "SourceStructureID": 34055, + "TargetStructureID": 468, + "Label": "34055-468 via Conventional from 34465 -> 12930, 34469 -> 34470", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34465, + "TargetID": 12930, + "Directional": true + }, + { + "SourceID": 34469, + "TargetID": 34470, + "Directional": true + } + ] + }, + { + "ID": 13481, + "SourceStructureID": 34055, + "TargetStructureID": 5530, + "Label": "34055-5530 via Conventional from 34096 -> 80192", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34096, + "TargetID": 80192, + "Directional": true + } + ] + }, + { + "ID": 13482, + "SourceStructureID": 34055, + "TargetStructureID": 5598, + "Label": "34055-5598 via Conventional from 34121 -> 34122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34121, + "TargetID": 34122, + "Directional": true + } + ] + }, + { + "ID": 13483, + "SourceStructureID": 34055, + "TargetStructureID": 5601, + "Label": "34055-5601 via Conventional from 34100 -> 34101", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34100, + "TargetID": 34101, + "Directional": true + } + ] + }, + { + "ID": 13484, + "SourceStructureID": 34055, + "TargetStructureID": 6203, + "Label": "34055-6203 via Conventional from 34125 -> 34126", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34125, + "TargetID": 34126, + "Directional": true + } + ] + }, + { + "ID": 13485, + "SourceStructureID": 34055, + "TargetStructureID": 10412, + "Label": "34055-10412 via Conventional from 38477 -> 34124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38477, + "TargetID": 34124, + "Directional": true + } + ] + }, + { + "ID": 13486, + "SourceStructureID": 34055, + "TargetStructureID": 12564, + "Label": "34055-12564 via Conventional from 55640 -> 55641", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55640, + "TargetID": 55641, + "Directional": true + } + ] + }, + { + "ID": 13487, + "SourceStructureID": 34135, + "TargetStructureID": 285, + "Label": "34135-285 via Conventional from 34136 -> 34137", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34136, + "TargetID": 34137, + "Directional": true + } + ] + }, + { + "ID": 13488, + "SourceStructureID": 34135, + "TargetStructureID": 309, + "Label": "34135-309 via Conventional from 99434 -> 13315", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99434, + "TargetID": 13315, + "Directional": true + } + ] + }, + { + "ID": 13489, + "SourceStructureID": 34148, + "TargetStructureID": 286, + "Label": "34148-286 via Conventional from 38749 -> 38750", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38749, + "TargetID": 38750, + "Directional": true + } + ] + }, + { + "ID": 13490, + "SourceStructureID": 34148, + "TargetStructureID": 293, + "Label": "34148-293 via Conventional from 34149 -> 14378", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34149, + "TargetID": 14378, + "Directional": true + } + ] + }, + { + "ID": 13491, + "SourceStructureID": 34148, + "TargetStructureID": 20311, + "Label": "34148-20311 via Conventional from 38748 -> 30342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38748, + "TargetID": 30342, + "Directional": true + } + ] + }, + { + "ID": 13492, + "SourceStructureID": 34152, + "TargetStructureID": 293, + "Label": "34152-293 via Conventional from 34153 -> 34151", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34153, + "TargetID": 34151, + "Directional": true + } + ] + }, + { + "ID": 13493, + "SourceStructureID": 34152, + "TargetStructureID": 55191, + "Label": "34152-55191 via Conventional from 34155 -> 55193", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34155, + "TargetID": 55193, + "Directional": true + } + ] + }, + { + "ID": 13494, + "SourceStructureID": 34159, + "TargetStructureID": 294, + "Label": "34159-294 via Conventional from 34160 -> 34158", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34160, + "TargetID": 34158, + "Directional": true + } + ] + }, + { + "ID": 13495, + "SourceStructureID": 34159, + "TargetStructureID": 99482, + "Label": "34159-99482 via Conventional from 34163 -> 99485", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34163, + "TargetID": 99485, + "Directional": true + } + ] + }, + { + "ID": 13496, + "SourceStructureID": 34164, + "TargetStructureID": 71882, + "Label": "34164-71882 via Ribbon Synapse from 90289 -> 90290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90289, + "TargetID": 90290, + "Directional": true + } + ] + }, + { + "ID": 13497, + "SourceStructureID": 34165, + "TargetStructureID": 350, + "Label": "34165-350 via Conventional from 34166 -> 18730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34166, + "TargetID": 18730, + "Directional": true + } + ] + }, + { + "ID": 13498, + "SourceStructureID": 34165, + "TargetStructureID": 446, + "Label": "34165-446 via Conventional from 34169 -> 34170", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34169, + "TargetID": 34170, + "Directional": true + } + ] + }, + { + "ID": 13499, + "SourceStructureID": 34253, + "TargetStructureID": 332, + "Label": "34253-332 via Conventional from 99491 -> 99492", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99491, + "TargetID": 99492, + "Directional": true + } + ] + }, + { + "ID": 13500, + "SourceStructureID": 34253, + "TargetStructureID": 365, + "Label": "34253-365 via Conventional from 34254 -> 34252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34254, + "TargetID": 34252, + "Directional": true + } + ] + }, + { + "ID": 13501, + "SourceStructureID": 34253, + "TargetStructureID": 6153, + "Label": "34253-6153 via Conventional from 99495 -> 99496", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99495, + "TargetID": 99496, + "Directional": true + } + ] + }, + { + "ID": 13502, + "SourceStructureID": 34256, + "TargetStructureID": 365, + "Label": "34256-365 via Conventional from 34257 -> 34255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34257, + "TargetID": 34255, + "Directional": true + } + ] + }, + { + "ID": 13503, + "SourceStructureID": 34259, + "TargetStructureID": 365, + "Label": "34259-365 via Conventional from 34260 -> 34258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34260, + "TargetID": 34258, + "Directional": true + } + ] + }, + { + "ID": 13504, + "SourceStructureID": 34259, + "TargetStructureID": 34256, + "Label": "34259-34256 via Conventional from 34261 -> 45616", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34261, + "TargetID": 45616, + "Directional": true + } + ] + }, + { + "ID": 13505, + "SourceStructureID": 34263, + "TargetStructureID": 365, + "Label": "34263-365 via Conventional from 34264 -> 34265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34264, + "TargetID": 34265, + "Directional": true + } + ] + }, + { + "ID": 13506, + "SourceStructureID": 34270, + "TargetStructureID": 324, + "Label": "34270-324 via Conventional from 34273 -> 34274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34273, + "TargetID": 34274, + "Directional": true + } + ] + }, + { + "ID": 13507, + "SourceStructureID": 34270, + "TargetStructureID": 330, + "Label": "34270-330 via Conventional from 34277 -> 26155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34277, + "TargetID": 26155, + "Directional": true + } + ] + }, + { + "ID": 13508, + "SourceStructureID": 34270, + "TargetStructureID": 369, + "Label": "34270-369 via Conventional from 34271 -> 34269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34271, + "TargetID": 34269, + "Directional": true + } + ] + }, + { + "ID": 13509, + "SourceStructureID": 34270, + "TargetStructureID": 34055, + "Label": "34270-34055 via Conventional from 34281 -> 34066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34281, + "TargetID": 34066, + "Directional": true + } + ] + }, + { + "ID": 13510, + "SourceStructureID": 34295, + "TargetStructureID": 422, + "Label": "34295-422 via Conventional from 34296 -> 34294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34296, + "TargetID": 34294, + "Directional": true + } + ] + }, + { + "ID": 13511, + "SourceStructureID": 34300, + "TargetStructureID": 422, + "Label": "34300-422 via Conventional from 34301 -> 34299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34301, + "TargetID": 34299, + "Directional": true + } + ] + }, + { + "ID": 13512, + "SourceStructureID": 34306, + "TargetStructureID": 434, + "Label": "34306-434 via Conventional from 34307 -> 34305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34307, + "TargetID": 34305, + "Directional": true + } + ] + }, + { + "ID": 13513, + "SourceStructureID": 34306, + "TargetStructureID": 461, + "Label": "34306-461 via Conventional from 114809 -> 114808", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114809, + "TargetID": 114808, + "Directional": true + } + ] + }, + { + "ID": 13514, + "SourceStructureID": 34311, + "TargetStructureID": 330, + "Label": "34311-330 via Conventional from 99509 -> 99510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99509, + "TargetID": 99510, + "Directional": true + } + ] + }, + { + "ID": 13515, + "SourceStructureID": 34311, + "TargetStructureID": 434, + "Label": "34311-434 via Conventional from 35496 -> 35497", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35496, + "TargetID": 35497, + "Directional": true + } + ] + }, + { + "ID": 13516, + "SourceStructureID": 34311, + "TargetStructureID": 441, + "Label": "34311-441 via Conventional from 34312 -> 2041, 64298 -> 2047, 64299 -> 2045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34312, + "TargetID": 2041, + "Directional": true + }, + { + "SourceID": 64298, + "TargetID": 2047, + "Directional": true + }, + { + "SourceID": 64299, + "TargetID": 2045, + "Directional": true + } + ] + }, + { + "ID": 13517, + "SourceStructureID": 34315, + "TargetStructureID": 445, + "Label": "34315-445 via Conventional from 34335 -> 1969", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34335, + "TargetID": 1969, + "Directional": true + } + ] + }, + { + "ID": 13518, + "SourceStructureID": 34315, + "TargetStructureID": 446, + "Label": "34315-446 via Conventional from 35147 -> 35148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35147, + "TargetID": 35148, + "Directional": true + } + ] + }, + { + "ID": 13519, + "SourceStructureID": 34315, + "TargetStructureID": 606, + "Label": "34315-606 via Conventional from 34324 -> 34327, 34328 -> 48102, 35503 -> 35504, 35505 -> 5077, 52379 -> 52378, 53709 -> 53708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34324, + "TargetID": 34327, + "Directional": true + }, + { + "SourceID": 34328, + "TargetID": 48102, + "Directional": true + }, + { + "SourceID": 35503, + "TargetID": 35504, + "Directional": true + }, + { + "SourceID": 35505, + "TargetID": 5077, + "Directional": true + }, + { + "SourceID": 52379, + "TargetID": 52378, + "Directional": true + }, + { + "SourceID": 53709, + "TargetID": 53708, + "Directional": true + } + ] + }, + { + "ID": 13520, + "SourceStructureID": 34315, + "TargetStructureID": 5468, + "Label": "34315-5468 via Conventional from 35509 -> 48213", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35509, + "TargetID": 48213, + "Directional": true + } + ] + }, + { + "ID": 13521, + "SourceStructureID": 34315, + "TargetStructureID": 5528, + "Label": "34315-5528 via Conventional from 34317 -> 34319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34317, + "TargetID": 34319, + "Directional": true + } + ] + }, + { + "ID": 13522, + "SourceStructureID": 34315, + "TargetStructureID": 5601, + "Label": "34315-5601 via Conventional from 34323 -> 34326, 35506 -> 35507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34323, + "TargetID": 34326, + "Directional": true + }, + { + "SourceID": 35506, + "TargetID": 35507, + "Directional": true + } + ] + }, + { + "ID": 13523, + "SourceStructureID": 34315, + "TargetStructureID": 7594, + "Label": "34315-7594 via Conventional from 34325 -> 7608", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34325, + "TargetID": 7608, + "Directional": true + } + ] + }, + { + "ID": 13524, + "SourceStructureID": 34337, + "TargetStructureID": 34336, + "Label": "34337-34336 via Conventional from 34339 -> 34340", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34339, + "TargetID": 34340, + "Directional": true + } + ] + }, + { + "ID": 13525, + "SourceStructureID": 34494, + "TargetStructureID": 324, + "Label": "34494-324 via Conventional from 34507 -> 34508", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34507, + "TargetID": 34508, + "Directional": true + } + ] + }, + { + "ID": 13526, + "SourceStructureID": 34494, + "TargetStructureID": 366, + "Label": "34494-366 via Conventional from 34505 -> 34506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34505, + "TargetID": 34506, + "Directional": true + } + ] + }, + { + "ID": 13527, + "SourceStructureID": 34494, + "TargetStructureID": 428, + "Label": "34494-428 via Conventional from 66206 -> 66205", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66206, + "TargetID": 66205, + "Directional": true + } + ] + }, + { + "ID": 13528, + "SourceStructureID": 34494, + "TargetStructureID": 469, + "Label": "34494-469 via Conventional from 34495 -> 34491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34495, + "TargetID": 34491, + "Directional": true + } + ] + }, + { + "ID": 13529, + "SourceStructureID": 34494, + "TargetStructureID": 471, + "Label": "34494-471 via Conventional from 34496 -> 34493", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34496, + "TargetID": 34493, + "Directional": true + } + ] + }, + { + "ID": 13530, + "SourceStructureID": 34494, + "TargetStructureID": 4569, + "Label": "34494-4569 via Conventional from 98361 -> 98362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98361, + "TargetID": 98362, + "Directional": true + } + ] + }, + { + "ID": 13531, + "SourceStructureID": 34494, + "TargetStructureID": 38605, + "Label": "34494-38605 via Conventional from 34502 -> 38608", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34502, + "TargetID": 38608, + "Directional": true + } + ] + }, + { + "ID": 13532, + "SourceStructureID": 34509, + "TargetStructureID": 469, + "Label": "34509-469 via Conventional from 34510 -> 34511", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34510, + "TargetID": 34511, + "Directional": true + } + ] + }, + { + "ID": 13533, + "SourceStructureID": 34527, + "TargetStructureID": 469, + "Label": "34527-469 via Conventional from 34528 -> 34529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34528, + "TargetID": 34529, + "Directional": true + } + ] + }, + { + "ID": 13534, + "SourceStructureID": 34527, + "TargetStructureID": 483, + "Label": "34527-483 via Conventional from 34534 -> 6768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34534, + "TargetID": 6768, + "Directional": true + } + ] + }, + { + "ID": 13535, + "SourceStructureID": 34527, + "TargetStructureID": 4570, + "Label": "34527-4570 via Conventional from 34539 -> 4793", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34539, + "TargetID": 4793, + "Directional": true + } + ] + }, + { + "ID": 13536, + "SourceStructureID": 34601, + "TargetStructureID": 180, + "Label": "34601-180 via Conventional from 33327 -> 33328, 34613 -> 6567", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 33327, + "TargetID": 33328, + "Directional": true + }, + { + "SourceID": 34613, + "TargetID": 6567, + "Directional": true + } + ] + }, + { + "ID": 13537, + "SourceStructureID": 34601, + "TargetStructureID": 483, + "Label": "34601-483 via Conventional from 32283 -> 6780, 103722 -> 6805", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 32283, + "TargetID": 6780, + "Directional": true + }, + { + "SourceID": 103722, + "TargetID": 6805, + "Directional": true + } + ] + }, + { + "ID": 13538, + "SourceStructureID": 34601, + "TargetStructureID": 518, + "Label": "34601-518 via Conventional from 34602 -> 14708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34602, + "TargetID": 14708, + "Directional": true + } + ] + }, + { + "ID": 13539, + "SourceStructureID": 34601, + "TargetStructureID": 519, + "Label": "34601-519 via Conventional from 25437 -> 9251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 25437, + "TargetID": 9251, + "Directional": true + } + ] + }, + { + "ID": 13540, + "SourceStructureID": 34601, + "TargetStructureID": 6155, + "Label": "34601-6155 via Conventional from 34604 -> 34605", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34604, + "TargetID": 34605, + "Directional": true + } + ] + }, + { + "ID": 13541, + "SourceStructureID": 34601, + "TargetStructureID": 60229, + "Label": "34601-60229 via Conventional from 60336 -> 60234", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60336, + "TargetID": 60234, + "Directional": true + } + ] + }, + { + "ID": 13542, + "SourceStructureID": 34601, + "TargetStructureID": 60337, + "Label": "34601-60337 via Conventional from 60340 -> 60338", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60340, + "TargetID": 60338, + "Directional": true + } + ] + }, + { + "ID": 13543, + "SourceStructureID": 34621, + "TargetStructureID": 419, + "Label": "34621-419 via Conventional from 36712 -> 38450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36712, + "TargetID": 38450, + "Directional": true + } + ] + }, + { + "ID": 13544, + "SourceStructureID": 34621, + "TargetStructureID": 485, + "Label": "34621-485 via Conventional from 101121 -> 101120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101121, + "TargetID": 101120, + "Directional": true + } + ] + }, + { + "ID": 13545, + "SourceStructureID": 34621, + "TargetStructureID": 518, + "Label": "34621-518 via Conventional from 34622 -> 14709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34622, + "TargetID": 14709, + "Directional": true + } + ] + }, + { + "ID": 13546, + "SourceStructureID": 34756, + "TargetStructureID": 579, + "Label": "34756-579 via Conventional from 34757 -> 33608", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34757, + "TargetID": 33608, + "Directional": true + } + ] + }, + { + "ID": 13547, + "SourceStructureID": 34847, + "TargetStructureID": 3881, + "Label": "34847-3881 via Conventional from 34848 -> 34846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34848, + "TargetID": 34846, + "Directional": true + } + ] + }, + { + "ID": 13548, + "SourceStructureID": 34847, + "TargetStructureID": 5528, + "Label": "34847-5528 via Conventional from 34851 -> 34853", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34851, + "TargetID": 34853, + "Directional": true + } + ] + }, + { + "ID": 13549, + "SourceStructureID": 34847, + "TargetStructureID": 5537, + "Label": "34847-5537 via Conventional from 34858 -> 34859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34858, + "TargetID": 34859, + "Directional": true + } + ] + }, + { + "ID": 13550, + "SourceStructureID": 34847, + "TargetStructureID": 6127, + "Label": "34847-6127 via Conventional from 34861 -> 34862, 34866 -> 34867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34861, + "TargetID": 34862, + "Directional": true + }, + { + "SourceID": 34866, + "TargetID": 34867, + "Directional": true + } + ] + }, + { + "ID": 13551, + "SourceStructureID": 34868, + "TargetStructureID": 170, + "Label": "34868-170 via Conventional from 89384 -> 89385, 89386 -> 89387, 89997 -> 89998, 90357 -> 90358", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89384, + "TargetID": 89385, + "Directional": true + }, + { + "SourceID": 89386, + "TargetID": 89387, + "Directional": true + }, + { + "SourceID": 89997, + "TargetID": 89998, + "Directional": true + }, + { + "SourceID": 90357, + "TargetID": 90358, + "Directional": true + } + ] + }, + { + "ID": 13552, + "SourceStructureID": 34868, + "TargetStructureID": 330, + "Label": "34868-330 via Conventional from 38572 -> 38574, 38583 -> 25875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38572, + "TargetID": 38574, + "Directional": true + }, + { + "SourceID": 38583, + "TargetID": 25875, + "Directional": true + } + ] + }, + { + "ID": 13553, + "SourceStructureID": 34868, + "TargetStructureID": 431, + "Label": "34868-431 via Conventional from 38578 -> 38581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38578, + "TargetID": 38581, + "Directional": true + } + ] + }, + { + "ID": 13554, + "SourceStructureID": 34868, + "TargetStructureID": 606, + "Label": "34868-606 via Conventional from 38596 -> 38597, 52576 -> 48787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38596, + "TargetID": 38597, + "Directional": true + }, + { + "SourceID": 52576, + "TargetID": 48787, + "Directional": true + } + ] + }, + { + "ID": 13555, + "SourceStructureID": 34868, + "TargetStructureID": 1637, + "Label": "34868-1637 via Conventional from 38564 -> 38563", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38564, + "TargetID": 38563, + "Directional": true + } + ] + }, + { + "ID": 13556, + "SourceStructureID": 34868, + "TargetStructureID": 4569, + "Label": "34868-4569 via Conventional from 38567 -> 38568", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38567, + "TargetID": 38568, + "Directional": true + } + ] + }, + { + "ID": 13557, + "SourceStructureID": 34868, + "TargetStructureID": 5017, + "Label": "34868-5017 via Conventional from 34869 -> 5043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34869, + "TargetID": 5043, + "Directional": true + } + ] + }, + { + "ID": 13558, + "SourceStructureID": 34868, + "TargetStructureID": 7024, + "Label": "34868-7024 via Conventional from 34878 -> 48586, 38557 -> 38558, 38559 -> 38560, 38562 -> 38561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34878, + "TargetID": 48586, + "Directional": true + }, + { + "SourceID": 38557, + "TargetID": 38558, + "Directional": true + }, + { + "SourceID": 38559, + "TargetID": 38560, + "Directional": true + }, + { + "SourceID": 38562, + "TargetID": 38561, + "Directional": true + } + ] + }, + { + "ID": 13559, + "SourceStructureID": 34882, + "TargetStructureID": 5017, + "Label": "34882-5017 via Conventional from 34883 -> 17047", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34883, + "TargetID": 17047, + "Directional": true + } + ] + }, + { + "ID": 13560, + "SourceStructureID": 34882, + "TargetStructureID": 6997, + "Label": "34882-6997 via Conventional from 34886 -> 70891", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34886, + "TargetID": 70891, + "Directional": true + } + ] + }, + { + "ID": 13561, + "SourceStructureID": 34893, + "TargetStructureID": 6123, + "Label": "34893-6123 via Conventional from 34894 -> 34895", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34894, + "TargetID": 34895, + "Directional": true + } + ] + }, + { + "ID": 13562, + "SourceStructureID": 34899, + "TargetStructureID": 5556, + "Label": "34899-5556 via Conventional from 34900 -> 33612", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34900, + "TargetID": 33612, + "Directional": true + } + ] + }, + { + "ID": 13563, + "SourceStructureID": 34899, + "TargetStructureID": 5645, + "Label": "34899-5645 via Conventional from 34904 -> 47717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34904, + "TargetID": 47717, + "Directional": true + } + ] + }, + { + "ID": 13564, + "SourceStructureID": 34899, + "TargetStructureID": 31157, + "Label": "34899-31157 via Conventional from 34901 -> 35179", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34901, + "TargetID": 35179, + "Directional": true + } + ] + }, + { + "ID": 13565, + "SourceStructureID": 34919, + "TargetStructureID": 6163, + "Label": "34919-6163 via Conventional from 34920 -> 34921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34920, + "TargetID": 34921, + "Directional": true + } + ] + }, + { + "ID": 13566, + "SourceStructureID": 34922, + "TargetStructureID": 6163, + "Label": "34922-6163 via Conventional from 34923 -> 34924", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34923, + "TargetID": 34924, + "Directional": true + } + ] + }, + { + "ID": 13567, + "SourceStructureID": 34940, + "TargetStructureID": 321, + "Label": "34940-321 via Conventional from 34953 -> 38510, 38513 -> 38514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34953, + "TargetID": 38510, + "Directional": true + }, + { + "SourceID": 38513, + "TargetID": 38514, + "Directional": true + } + ] + }, + { + "ID": 13568, + "SourceStructureID": 34940, + "TargetStructureID": 366, + "Label": "34940-366 via Conventional from 38517 -> 13990, 38519 -> 38520, 38521 -> 13846, 38522 -> 13957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38517, + "TargetID": 13990, + "Directional": true + }, + { + "SourceID": 38519, + "TargetID": 38520, + "Directional": true + }, + { + "SourceID": 38521, + "TargetID": 13846, + "Directional": true + }, + { + "SourceID": 38522, + "TargetID": 13957, + "Directional": true + } + ] + }, + { + "ID": 13569, + "SourceStructureID": 34940, + "TargetStructureID": 428, + "Label": "34940-428 via Conventional from 52722 -> 52721", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52722, + "TargetID": 52721, + "Directional": true + } + ] + }, + { + "ID": 13570, + "SourceStructureID": 34978, + "TargetStructureID": 6163, + "Label": "34978-6163 via Conventional from 34979 -> 34980", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34979, + "TargetID": 34980, + "Directional": true + } + ] + }, + { + "ID": 13571, + "SourceStructureID": 34982, + "TargetStructureID": 6561, + "Label": "34982-6561 via Conventional from 34983 -> 8339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 34983, + "TargetID": 8339, + "Directional": true + } + ] + }, + { + "ID": 13572, + "SourceStructureID": 35046, + "TargetStructureID": 410, + "Label": "35046-410 via Ribbon Synapse from 61996 -> 21368, 61998 -> 61999, 71223 -> 9533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61996, + "TargetID": 21368, + "Directional": true + }, + { + "SourceID": 61998, + "TargetID": 61999, + "Directional": true + }, + { + "SourceID": 71223, + "TargetID": 9533, + "Directional": true + } + ] + }, + { + "ID": 13573, + "SourceStructureID": 35046, + "TargetStructureID": 492, + "Label": "35046-492 via Ribbon Synapse from 35047 -> 35045, 71225 -> 71224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35047, + "TargetID": 35045, + "Directional": true + }, + { + "SourceID": 71225, + "TargetID": 71224, + "Directional": true + } + ] + }, + { + "ID": 13574, + "SourceStructureID": 35046, + "TargetStructureID": 906, + "Label": "35046-906 via Ribbon Synapse from 40681 -> 16772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40681, + "TargetID": 16772, + "Directional": true + } + ] + }, + { + "ID": 13575, + "SourceStructureID": 35064, + "TargetStructureID": 8586, + "Label": "35064-8586 via Conventional from 64342 -> 8643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64342, + "TargetID": 8643, + "Directional": true + } + ] + }, + { + "ID": 13576, + "SourceStructureID": 35068, + "TargetStructureID": 8749, + "Label": "35068-8749 via Conventional from 35069 -> 8798", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35069, + "TargetID": 8798, + "Directional": true + } + ] + }, + { + "ID": 13577, + "SourceStructureID": 35076, + "TargetStructureID": 6912, + "Label": "35076-6912 via Conventional from 35077 -> 35075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35077, + "TargetID": 35075, + "Directional": true + } + ] + }, + { + "ID": 13578, + "SourceStructureID": 35084, + "TargetStructureID": 10826, + "Label": "35084-10826 via Conventional from 35085 -> 35086", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35085, + "TargetID": 35086, + "Directional": true + } + ] + }, + { + "ID": 13579, + "SourceStructureID": 35087, + "TargetStructureID": 5345, + "Label": "35087-5345 via Conventional from 35090 -> 88886", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35090, + "TargetID": 88886, + "Directional": true + } + ] + }, + { + "ID": 13580, + "SourceStructureID": 35087, + "TargetStructureID": 10826, + "Label": "35087-10826 via Conventional from 35088 -> 35089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35088, + "TargetID": 35089, + "Directional": true + } + ] + }, + { + "ID": 13581, + "SourceStructureID": 35103, + "TargetStructureID": 332, + "Label": "35103-332 via Conventional from 35107 -> 35108", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35107, + "TargetID": 35108, + "Directional": true + } + ] + }, + { + "ID": 13582, + "SourceStructureID": 35103, + "TargetStructureID": 15979, + "Label": "35103-15979 via Conventional from 35106 -> 35105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35106, + "TargetID": 35105, + "Directional": true + } + ] + }, + { + "ID": 13583, + "SourceStructureID": 35110, + "TargetStructureID": 16446, + "Label": "35110-16446 via Conventional from 35111 -> 16449", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35111, + "TargetID": 16449, + "Directional": true + } + ] + }, + { + "ID": 13584, + "SourceStructureID": 35112, + "TargetStructureID": 422, + "Label": "35112-422 via Conventional from 35115 -> 35116", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35115, + "TargetID": 35116, + "Directional": true + } + ] + }, + { + "ID": 13585, + "SourceStructureID": 35112, + "TargetStructureID": 16446, + "Label": "35112-16446 via Conventional from 35113 -> 35114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35113, + "TargetID": 35114, + "Directional": true + } + ] + }, + { + "ID": 13586, + "SourceStructureID": 35117, + "TargetStructureID": 16446, + "Label": "35117-16446 via Conventional from 35118 -> 35119", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35118, + "TargetID": 35119, + "Directional": true + } + ] + }, + { + "ID": 13587, + "SourceStructureID": 35126, + "TargetStructureID": 17183, + "Label": "35126-17183 via Conventional from 35127 -> 35128", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35127, + "TargetID": 35128, + "Directional": true + } + ] + }, + { + "ID": 13588, + "SourceStructureID": 35138, + "TargetStructureID": 17183, + "Label": "35138-17183 via Conventional from 35139 -> 35140", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35139, + "TargetID": 35140, + "Directional": true + } + ] + }, + { + "ID": 13589, + "SourceStructureID": 35142, + "TargetStructureID": 17228, + "Label": "35142-17228 via Conventional from 35143 -> 17258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35143, + "TargetID": 17258, + "Directional": true + } + ] + }, + { + "ID": 13590, + "SourceStructureID": 35145, + "TargetStructureID": 8575, + "Label": "35145-8575 via Ribbon Synapse from 45492 -> 63515, 64697 -> 64696", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45492, + "TargetID": 63515, + "Directional": true + }, + { + "SourceID": 64697, + "TargetID": 64696, + "Directional": true + } + ] + }, + { + "ID": 13591, + "SourceStructureID": 35145, + "TargetStructureID": 35142, + "Label": "35145-35142 via Ribbon Synapse from 35146 -> 35144", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35146, + "TargetID": 35144, + "Directional": true + } + ] + }, + { + "ID": 13592, + "SourceStructureID": 35145, + "TargetStructureID": 64698, + "Label": "35145-64698 via Ribbon Synapse from 64701 -> 64702", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64701, + "TargetID": 64702, + "Directional": true + } + ] + }, + { + "ID": 13593, + "SourceStructureID": 35149, + "TargetStructureID": 453, + "Label": "35149-453 via Conventional from 35150 -> 35151", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35150, + "TargetID": 35151, + "Directional": true + } + ] + }, + { + "ID": 13594, + "SourceStructureID": 35152, + "TargetStructureID": 453, + "Label": "35152-453 via Conventional from 35153 -> 35154", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35153, + "TargetID": 35154, + "Directional": true + } + ] + }, + { + "ID": 13595, + "SourceStructureID": 35152, + "TargetStructureID": 5528, + "Label": "35152-5528 via Conventional from 35161 -> 94421", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35161, + "TargetID": 94421, + "Directional": true + } + ] + }, + { + "ID": 13596, + "SourceStructureID": 35164, + "TargetStructureID": 332, + "Label": "35164-332 via Conventional from 121980 -> 121981", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121980, + "TargetID": 121981, + "Directional": true + } + ] + }, + { + "ID": 13597, + "SourceStructureID": 35164, + "TargetStructureID": 464, + "Label": "35164-464 via Conventional from 35165 -> 8066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35165, + "TargetID": 8066, + "Directional": true + } + ] + }, + { + "ID": 13598, + "SourceStructureID": 35164, + "TargetStructureID": 121978, + "Label": "35164-121978 via Conventional from 121977 -> 121979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121977, + "TargetID": 121979, + "Directional": true + } + ] + }, + { + "ID": 13599, + "SourceStructureID": 35176, + "TargetStructureID": 5017, + "Label": "35176-5017 via Conventional from 35177 -> 35178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35177, + "TargetID": 35178, + "Directional": true + } + ] + }, + { + "ID": 13600, + "SourceStructureID": 35180, + "TargetStructureID": 6135, + "Label": "35180-6135 via Conventional from 35181 -> 35182", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35181, + "TargetID": 35182, + "Directional": true + } + ] + }, + { + "ID": 13601, + "SourceStructureID": 35183, + "TargetStructureID": 6135, + "Label": "35183-6135 via Conventional from 35184 -> 35185", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35184, + "TargetID": 35185, + "Directional": true + } + ] + }, + { + "ID": 13602, + "SourceStructureID": 35188, + "TargetStructureID": 6909, + "Label": "35188-6909 via Conventional from 35522 -> 38227", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35522, + "TargetID": 38227, + "Directional": true + } + ] + }, + { + "ID": 13603, + "SourceStructureID": 35188, + "TargetStructureID": 6911, + "Label": "35188-6911 via Conventional from 35189 -> 33653", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35189, + "TargetID": 33653, + "Directional": true + } + ] + }, + { + "ID": 13604, + "SourceStructureID": 35188, + "TargetStructureID": 7446, + "Label": "35188-7446 via Conventional from 35525 -> 123048", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35525, + "TargetID": 123048, + "Directional": true + } + ] + }, + { + "ID": 13605, + "SourceStructureID": 35188, + "TargetStructureID": 25155, + "Label": "35188-25155 via Conventional from 35191 -> 38209", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35191, + "TargetID": 38209, + "Directional": true + } + ] + }, + { + "ID": 13606, + "SourceStructureID": 35193, + "TargetStructureID": 606, + "Label": "35193-606 via Conventional from 54221 -> 49685, 54402 -> 44332", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54221, + "TargetID": 49685, + "Directional": true + }, + { + "SourceID": 54402, + "TargetID": 44332, + "Directional": true + } + ] + }, + { + "ID": 13607, + "SourceStructureID": 35193, + "TargetStructureID": 5607, + "Label": "35193-5607 via Conventional from 35201 -> 38947, 35204 -> 24004", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35201, + "TargetID": 38947, + "Directional": true + }, + { + "SourceID": 35204, + "TargetID": 24004, + "Directional": true + } + ] + }, + { + "ID": 13608, + "SourceStructureID": 35193, + "TargetStructureID": 7594, + "Label": "35193-7594 via Conventional from 35202 -> 7629", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35202, + "TargetID": 7629, + "Directional": true + } + ] + }, + { + "ID": 13609, + "SourceStructureID": 35193, + "TargetStructureID": 25155, + "Label": "35193-25155 via Conventional from 38215 -> 38214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38215, + "TargetID": 38214, + "Directional": true + } + ] + }, + { + "ID": 13610, + "SourceStructureID": 35193, + "TargetStructureID": 35188, + "Label": "35193-35188 via Conventional from 35523 -> 35524", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35523, + "TargetID": 35524, + "Directional": true + } + ] + }, + { + "ID": 13611, + "SourceStructureID": 35193, + "TargetStructureID": 88762, + "Label": "35193-88762 via Conventional from 35203 -> 88782", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35203, + "TargetID": 88782, + "Directional": true + } + ] + }, + { + "ID": 13612, + "SourceStructureID": 35193, + "TargetStructureID": 118301, + "Label": "35193-118301 via Conventional from 35194 -> 118302", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35194, + "TargetID": 118302, + "Directional": true + } + ] + }, + { + "ID": 13613, + "SourceStructureID": 35208, + "TargetStructureID": 9376, + "Label": "35208-9376 via Conventional from 35209 -> 33659", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35209, + "TargetID": 33659, + "Directional": true + } + ] + }, + { + "ID": 13614, + "SourceStructureID": 35212, + "TargetStructureID": 176, + "Label": "35212-176 via Conventional from 35215 -> 35214, 35216 -> 58650, 35218 -> 35221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35215, + "TargetID": 35214, + "Directional": true + }, + { + "SourceID": 35216, + "TargetID": 58650, + "Directional": true + }, + { + "SourceID": 35218, + "TargetID": 35221, + "Directional": true + } + ] + }, + { + "ID": 13615, + "SourceStructureID": 35212, + "TargetStructureID": 9376, + "Label": "35212-9376 via Conventional from 35213 -> 33658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35213, + "TargetID": 33658, + "Directional": true + } + ] + }, + { + "ID": 13616, + "SourceStructureID": 35222, + "TargetStructureID": 166, + "Label": "35222-166 via Conventional from 35227 -> 35230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35227, + "TargetID": 35230, + "Directional": true + } + ] + }, + { + "ID": 13617, + "SourceStructureID": 35222, + "TargetStructureID": 390, + "Label": "35222-390 via Conventional from 65226 -> 65225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65226, + "TargetID": 65225, + "Directional": true + } + ] + }, + { + "ID": 13618, + "SourceStructureID": 35222, + "TargetStructureID": 10961, + "Label": "35222-10961 via Conventional from 35223 -> 35224", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35223, + "TargetID": 35224, + "Directional": true + } + ] + }, + { + "ID": 13619, + "SourceStructureID": 35232, + "TargetStructureID": 5565, + "Label": "35232-5565 via Conventional from 35236 -> 37686", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35236, + "TargetID": 37686, + "Directional": true + } + ] + }, + { + "ID": 13620, + "SourceStructureID": 35240, + "TargetStructureID": 606, + "Label": "35240-606 via Conventional from 35242 -> 35243, 42152 -> 10434, 44220 -> 44219, 51725 -> 51726, 53432 -> 51437, 53534 -> 53535", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35242, + "TargetID": 35243, + "Directional": true + }, + { + "SourceID": 42152, + "TargetID": 10434, + "Directional": true + }, + { + "SourceID": 44220, + "TargetID": 44219, + "Directional": true + }, + { + "SourceID": 51725, + "TargetID": 51726, + "Directional": true + }, + { + "SourceID": 53432, + "TargetID": 51437, + "Directional": true + }, + { + "SourceID": 53534, + "TargetID": 53535, + "Directional": true + } + ] + }, + { + "ID": 13621, + "SourceStructureID": 35240, + "TargetStructureID": 5284, + "Label": "35240-5284 via Conventional from 113207 -> 113206", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113207, + "TargetID": 113206, + "Directional": true + } + ] + }, + { + "ID": 13622, + "SourceStructureID": 35240, + "TargetStructureID": 5530, + "Label": "35240-5530 via Conventional from 38260 -> 38261, 38267 -> 38268, 80178 -> 80179, 81026 -> 81027", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38260, + "TargetID": 38261, + "Directional": true + }, + { + "SourceID": 38267, + "TargetID": 38268, + "Directional": true + }, + { + "SourceID": 80178, + "TargetID": 80179, + "Directional": true + }, + { + "SourceID": 81026, + "TargetID": 81027, + "Directional": true + } + ] + }, + { + "ID": 13623, + "SourceStructureID": 35240, + "TargetStructureID": 5534, + "Label": "35240-5534 via Conventional from 38272 -> 38273, 38276 -> 38278", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38272, + "TargetID": 38273, + "Directional": true + }, + { + "SourceID": 38276, + "TargetID": 38278, + "Directional": true + } + ] + }, + { + "ID": 13624, + "SourceStructureID": 35240, + "TargetStructureID": 5650, + "Label": "35240-5650 via Conventional from 35252 -> 29906, 35256 -> 35257, 35261 -> 35262, 35267 -> 38283, 53433 -> 53434, 104445 -> 104446, 104449 -> 104450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35252, + "TargetID": 29906, + "Directional": true + }, + { + "SourceID": 35256, + "TargetID": 35257, + "Directional": true + }, + { + "SourceID": 35261, + "TargetID": 35262, + "Directional": true + }, + { + "SourceID": 35267, + "TargetID": 38283, + "Directional": true + }, + { + "SourceID": 53433, + "TargetID": 53434, + "Directional": true + }, + { + "SourceID": 104445, + "TargetID": 104446, + "Directional": true + }, + { + "SourceID": 104449, + "TargetID": 104450, + "Directional": true + } + ] + }, + { + "ID": 13625, + "SourceStructureID": 35240, + "TargetStructureID": 5729, + "Label": "35240-5729 via Conventional from 35271 -> 105772, 35274 -> 37838, 35279 -> 35282, 35279 -> 38290", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35271, + "TargetID": 105772, + "Directional": true + }, + { + "SourceID": 35274, + "TargetID": 37838, + "Directional": true + }, + { + "SourceID": 35279, + "TargetID": 35282, + "Directional": true + }, + { + "SourceID": 35279, + "TargetID": 38290, + "Directional": true + } + ] + }, + { + "ID": 13626, + "SourceStructureID": 35240, + "TargetStructureID": 6117, + "Label": "35240-6117 via Conventional from 35246 -> 20584, 42153 -> 86092, 85440 -> 85433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35246, + "TargetID": 20584, + "Directional": true + }, + { + "SourceID": 42153, + "TargetID": 86092, + "Directional": true + }, + { + "SourceID": 85440, + "TargetID": 85433, + "Directional": true + } + ] + }, + { + "ID": 13627, + "SourceStructureID": 35240, + "TargetStructureID": 6118, + "Label": "35240-6118 via Conventional from 35272 -> 38288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35272, + "TargetID": 38288, + "Directional": true + } + ] + }, + { + "ID": 13628, + "SourceStructureID": 35240, + "TargetStructureID": 6127, + "Label": "35240-6127 via Conventional from 38280 -> 38281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38280, + "TargetID": 38281, + "Directional": true + } + ] + }, + { + "ID": 13629, + "SourceStructureID": 35240, + "TargetStructureID": 6158, + "Label": "35240-6158 via Conventional from 35277 -> 38289", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35277, + "TargetID": 38289, + "Directional": true + } + ] + }, + { + "ID": 13630, + "SourceStructureID": 35240, + "TargetStructureID": 7594, + "Label": "35240-7594 via Conventional from 35248 -> 7596, 35255 -> 25092, 38258 -> 38259, 38262 -> 38263, 38265 -> 38266", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35248, + "TargetID": 7596, + "Directional": true + }, + { + "SourceID": 35255, + "TargetID": 25092, + "Directional": true + }, + { + "SourceID": 38258, + "TargetID": 38259, + "Directional": true + }, + { + "SourceID": 38262, + "TargetID": 38263, + "Directional": true + }, + { + "SourceID": 38265, + "TargetID": 38266, + "Directional": true + } + ] + }, + { + "ID": 13631, + "SourceStructureID": 35240, + "TargetStructureID": 10953, + "Label": "35240-10953 via Conventional from 35241 -> 33265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35241, + "TargetID": 33265, + "Directional": true + } + ] + }, + { + "ID": 13632, + "SourceStructureID": 35240, + "TargetStructureID": 35539, + "Label": "35240-35539 via Conventional from 38264 -> 35542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38264, + "TargetID": 35542, + "Directional": true + } + ] + }, + { + "ID": 13633, + "SourceStructureID": 35240, + "TargetStructureID": 35894, + "Label": "35240-35894 via Conventional from 35936 -> 35935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35936, + "TargetID": 35935, + "Directional": true + } + ] + }, + { + "ID": 13634, + "SourceStructureID": 35240, + "TargetStructureID": 44222, + "Label": "35240-44222 via Conventional from 45017 -> 45018", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45017, + "TargetID": 45018, + "Directional": true + } + ] + }, + { + "ID": 13635, + "SourceStructureID": 35240, + "TargetStructureID": 58714, + "Label": "35240-58714 via Conventional from 35244 -> 58718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35244, + "TargetID": 58718, + "Directional": true + } + ] + }, + { + "ID": 13636, + "SourceStructureID": 35240, + "TargetStructureID": 86444, + "Label": "35240-86444 via Conventional from 86459 -> 86458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86459, + "TargetID": 86458, + "Directional": true + } + ] + }, + { + "ID": 13637, + "SourceStructureID": 35240, + "TargetStructureID": 110842, + "Label": "35240-110842 via Conventional from 35273 -> 110845", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35273, + "TargetID": 110845, + "Directional": true + } + ] + }, + { + "ID": 13638, + "SourceStructureID": 35240, + "TargetStructureID": 111604, + "Label": "35240-111604 via Conventional from 35270 -> 111609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35270, + "TargetID": 111609, + "Directional": true + } + ] + }, + { + "ID": 13639, + "SourceStructureID": 35283, + "TargetStructureID": 4569, + "Label": "35283-4569 via Conventional from 35286 -> 30854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35286, + "TargetID": 30854, + "Directional": true + } + ] + }, + { + "ID": 13640, + "SourceStructureID": 35283, + "TargetStructureID": 10957, + "Label": "35283-10957 via Conventional from 35284 -> 35285", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35284, + "TargetID": 35285, + "Directional": true + } + ] + }, + { + "ID": 13641, + "SourceStructureID": 35288, + "TargetStructureID": 606, + "Label": "35288-606 via Conventional from 53727 -> 53726", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53727, + "TargetID": 53726, + "Directional": true + } + ] + }, + { + "ID": 13642, + "SourceStructureID": 35288, + "TargetStructureID": 5530, + "Label": "35288-5530 via Conventional from 35302 -> 76484", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35302, + "TargetID": 76484, + "Directional": true + } + ] + }, + { + "ID": 13643, + "SourceStructureID": 35288, + "TargetStructureID": 10142, + "Label": "35288-10142 via Conventional from 35291 -> 35292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35291, + "TargetID": 35292, + "Directional": true + } + ] + }, + { + "ID": 13644, + "SourceStructureID": 35288, + "TargetStructureID": 10962, + "Label": "35288-10962 via Conventional from 35289 -> 33687", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35289, + "TargetID": 33687, + "Directional": true + } + ] + }, + { + "ID": 13645, + "SourceStructureID": 35288, + "TargetStructureID": 38345, + "Label": "35288-38345 via Conventional from 35296 -> 38348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35296, + "TargetID": 38348, + "Directional": true + } + ] + }, + { + "ID": 13646, + "SourceStructureID": 35305, + "TargetStructureID": 10969, + "Label": "35305-10969 via Conventional from 35306 -> 33585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35306, + "TargetID": 33585, + "Directional": true + } + ] + }, + { + "ID": 13647, + "SourceStructureID": 35308, + "TargetStructureID": 10969, + "Label": "35308-10969 via Conventional from 35309 -> 35307, 35310 -> 33586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35309, + "TargetID": 35307, + "Directional": true + }, + { + "SourceID": 35310, + "TargetID": 33586, + "Directional": true + } + ] + }, + { + "ID": 13648, + "SourceStructureID": 35308, + "TargetStructureID": 25155, + "Label": "35308-25155 via Conventional from 35313 -> 35316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35313, + "TargetID": 35316, + "Directional": true + } + ] + }, + { + "ID": 13649, + "SourceStructureID": 35317, + "TargetStructureID": 11021, + "Label": "35317-11021 via Conventional from 35319 -> 35318", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35319, + "TargetID": 35318, + "Directional": true + } + ] + }, + { + "ID": 13650, + "SourceStructureID": 35325, + "TargetStructureID": 5541, + "Label": "35325-5541 via Conventional from 38252 -> 38253", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38252, + "TargetID": 38253, + "Directional": true + } + ] + }, + { + "ID": 13651, + "SourceStructureID": 35325, + "TargetStructureID": 11022, + "Label": "35325-11022 via Conventional from 35326 -> 35324", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35326, + "TargetID": 35324, + "Directional": true + } + ] + }, + { + "ID": 13652, + "SourceStructureID": 35325, + "TargetStructureID": 35331, + "Label": "35325-35331 via Conventional from 38247 -> 35334", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38247, + "TargetID": 35334, + "Directional": true + } + ] + }, + { + "ID": 13653, + "SourceStructureID": 35325, + "TargetStructureID": 38245, + "Label": "35325-38245 via Conventional from 35327 -> 38246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35327, + "TargetID": 38246, + "Directional": true + } + ] + }, + { + "ID": 13654, + "SourceStructureID": 35328, + "TargetStructureID": 11022, + "Label": "35328-11022 via Conventional from 35329 -> 35330", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35329, + "TargetID": 35330, + "Directional": true + } + ] + }, + { + "ID": 13655, + "SourceStructureID": 35331, + "TargetStructureID": 11022, + "Label": "35331-11022 via Conventional from 35332 -> 33587", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35332, + "TargetID": 33587, + "Directional": true + } + ] + }, + { + "ID": 13656, + "SourceStructureID": 35335, + "TargetStructureID": 11037, + "Label": "35335-11037 via Conventional from 35336 -> 12552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35336, + "TargetID": 12552, + "Directional": true + } + ] + }, + { + "ID": 13657, + "SourceStructureID": 35343, + "TargetStructureID": 11038, + "Label": "35343-11038 via Conventional from 35344 -> 33708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35344, + "TargetID": 33708, + "Directional": true + } + ] + }, + { + "ID": 13658, + "SourceStructureID": 35348, + "TargetStructureID": 11043, + "Label": "35348-11043 via Conventional from 35349 -> 35350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35349, + "TargetID": 35350, + "Directional": true + } + ] + }, + { + "ID": 13659, + "SourceStructureID": 35351, + "TargetStructureID": 11043, + "Label": "35351-11043 via Conventional from 35352 -> 35353", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35352, + "TargetID": 35353, + "Directional": true + } + ] + }, + { + "ID": 13660, + "SourceStructureID": 35356, + "TargetStructureID": 5649, + "Label": "35356-5649 via Conventional from 35362 -> 107310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35362, + "TargetID": 107310, + "Directional": true + } + ] + }, + { + "ID": 13661, + "SourceStructureID": 35356, + "TargetStructureID": 11043, + "Label": "35356-11043 via Conventional from 35357 -> 35358", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35357, + "TargetID": 35358, + "Directional": true + } + ] + }, + { + "ID": 13662, + "SourceStructureID": 35356, + "TargetStructureID": 30130, + "Label": "35356-30130 via Conventional from 35360 -> 30250", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35360, + "TargetID": 30250, + "Directional": true + } + ] + }, + { + "ID": 13663, + "SourceStructureID": 35367, + "TargetStructureID": 5284, + "Label": "35367-5284 via Conventional from 35377 -> 35380", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35377, + "TargetID": 35380, + "Directional": true + } + ] + }, + { + "ID": 13664, + "SourceStructureID": 35367, + "TargetStructureID": 6120, + "Label": "35367-6120 via Conventional from 35372 -> 110843, 110753 -> 110749", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35372, + "TargetID": 110843, + "Directional": true + }, + { + "SourceID": 110753, + "TargetID": 110749, + "Directional": true + } + ] + }, + { + "ID": 13665, + "SourceStructureID": 35367, + "TargetStructureID": 11044, + "Label": "35367-11044 via Conventional from 35368 -> 35370", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35368, + "TargetID": 35370, + "Directional": true + } + ] + }, + { + "ID": 13666, + "SourceStructureID": 35381, + "TargetStructureID": 11049, + "Label": "35381-11049 via Conventional from 35382 -> 35383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35382, + "TargetID": 35383, + "Directional": true + } + ] + }, + { + "ID": 13667, + "SourceStructureID": 35384, + "TargetStructureID": 5645, + "Label": "35384-5645 via Conventional from 35389 -> 39482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35389, + "TargetID": 39482, + "Directional": true + } + ] + }, + { + "ID": 13668, + "SourceStructureID": 35384, + "TargetStructureID": 11049, + "Label": "35384-11049 via Conventional from 35385 -> 35386", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35385, + "TargetID": 35386, + "Directional": true + } + ] + }, + { + "ID": 13669, + "SourceStructureID": 35384, + "TargetStructureID": 35392, + "Label": "35384-35392 via Conventional from 35390 -> 35394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35390, + "TargetID": 35394, + "Directional": true + } + ] + }, + { + "ID": 13670, + "SourceStructureID": 35392, + "TargetStructureID": 35384, + "Label": "35392-35384 via Ribbon Synapse from 35393 -> 35391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35393, + "TargetID": 35391, + "Directional": true + } + ] + }, + { + "ID": 13671, + "SourceStructureID": 35395, + "TargetStructureID": 11063, + "Label": "35395-11063 via Conventional from 35396 -> 33577", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35396, + "TargetID": 33577, + "Directional": true + } + ] + }, + { + "ID": 13672, + "SourceStructureID": 35400, + "TargetStructureID": 11063, + "Label": "35400-11063 via Conventional from 35401 -> 35402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35401, + "TargetID": 35402, + "Directional": true + } + ] + }, + { + "ID": 13673, + "SourceStructureID": 35403, + "TargetStructureID": 11063, + "Label": "35403-11063 via Conventional from 35404 -> 33581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35404, + "TargetID": 33581, + "Directional": true + } + ] + }, + { + "ID": 13674, + "SourceStructureID": 35406, + "TargetStructureID": 11063, + "Label": "35406-11063 via Conventional from 35407 -> 35408", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35407, + "TargetID": 35408, + "Directional": true + } + ] + }, + { + "ID": 13675, + "SourceStructureID": 35406, + "TargetStructureID": 15977, + "Label": "35406-15977 via Conventional from 35409 -> 38299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35409, + "TargetID": 38299, + "Directional": true + } + ] + }, + { + "ID": 13676, + "SourceStructureID": 35418, + "TargetStructureID": 11234, + "Label": "35418-11234 via Conventional from 35419 -> 33316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35419, + "TargetID": 33316, + "Directional": true + } + ] + }, + { + "ID": 13677, + "SourceStructureID": 35418, + "TargetStructureID": 64939, + "Label": "35418-64939 via Conventional from 129135 -> 129136, 129137 -> 129138", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129135, + "TargetID": 129136, + "Directional": true + }, + { + "SourceID": 129137, + "TargetID": 129138, + "Directional": true + } + ] + }, + { + "ID": 13678, + "SourceStructureID": 35428, + "TargetStructureID": 5729, + "Label": "35428-5729 via Conventional from 35433 -> 111945", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35433, + "TargetID": 111945, + "Directional": true + } + ] + }, + { + "ID": 13679, + "SourceStructureID": 35428, + "TargetStructureID": 11235, + "Label": "35428-11235 via Conventional from 35429 -> 35427", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35429, + "TargetID": 35427, + "Directional": true + } + ] + }, + { + "ID": 13680, + "SourceStructureID": 35436, + "TargetStructureID": 11235, + "Label": "35436-11235 via Conventional from 35437 -> 35435", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35437, + "TargetID": 35435, + "Directional": true + } + ] + }, + { + "ID": 13681, + "SourceStructureID": 35440, + "TargetStructureID": 5503, + "Label": "35440-5503 via Conventional from 108521 -> 108518", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108521, + "TargetID": 108518, + "Directional": true + } + ] + }, + { + "ID": 13682, + "SourceStructureID": 35440, + "TargetStructureID": 5729, + "Label": "35440-5729 via Conventional from 111624 -> 111625", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111624, + "TargetID": 111625, + "Directional": true + } + ] + }, + { + "ID": 13683, + "SourceStructureID": 35440, + "TargetStructureID": 6118, + "Label": "35440-6118 via Conventional from 35446 -> 129142, 35449 -> 65926", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35446, + "TargetID": 129142, + "Directional": true + }, + { + "SourceID": 35449, + "TargetID": 65926, + "Directional": true + } + ] + }, + { + "ID": 13684, + "SourceStructureID": 35440, + "TargetStructureID": 11235, + "Label": "35440-11235 via Conventional from 35441 -> 35439", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35441, + "TargetID": 35439, + "Directional": true + } + ] + }, + { + "ID": 13685, + "SourceStructureID": 35452, + "TargetStructureID": 8040, + "Label": "35452-8040 via Conventional from 35459 -> 35462", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35459, + "TargetID": 35462, + "Directional": true + } + ] + }, + { + "ID": 13686, + "SourceStructureID": 35452, + "TargetStructureID": 10632, + "Label": "35452-10632 via Conventional from 35455 -> 35456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35455, + "TargetID": 35456, + "Directional": true + } + ] + }, + { + "ID": 13687, + "SourceStructureID": 35452, + "TargetStructureID": 11246, + "Label": "35452-11246 via Conventional from 35453 -> 35454", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35453, + "TargetID": 35454, + "Directional": true + } + ] + }, + { + "ID": 13688, + "SourceStructureID": 35468, + "TargetStructureID": 11248, + "Label": "35468-11248 via Conventional from 35469 -> 33767", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35469, + "TargetID": 33767, + "Directional": true + } + ] + }, + { + "ID": 13689, + "SourceStructureID": 35470, + "TargetStructureID": 11248, + "Label": "35470-11248 via Conventional from 35471 -> 33768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35471, + "TargetID": 33768, + "Directional": true + } + ] + }, + { + "ID": 13690, + "SourceStructureID": 35473, + "TargetStructureID": 11248, + "Label": "35473-11248 via Conventional from 35474 -> 35472", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35474, + "TargetID": 35472, + "Directional": true + } + ] + }, + { + "ID": 13691, + "SourceStructureID": 35475, + "TargetStructureID": 11248, + "Label": "35475-11248 via Conventional from 35476 -> 35477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35476, + "TargetID": 35477, + "Directional": true + } + ] + }, + { + "ID": 13692, + "SourceStructureID": 35483, + "TargetStructureID": 334, + "Label": "35483-334 via Conventional from 35484 -> 35482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35484, + "TargetID": 35482, + "Directional": true + } + ] + }, + { + "ID": 13693, + "SourceStructureID": 35489, + "TargetStructureID": 366, + "Label": "35489-366 via Conventional from 35492 -> 13670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35492, + "TargetID": 13670, + "Directional": true + } + ] + }, + { + "ID": 13694, + "SourceStructureID": 35489, + "TargetStructureID": 422, + "Label": "35489-422 via Conventional from 35490 -> 35491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35490, + "TargetID": 35491, + "Directional": true + } + ] + }, + { + "ID": 13695, + "SourceStructureID": 35510, + "TargetStructureID": 445, + "Label": "35510-445 via Conventional from 35511 -> 1979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35511, + "TargetID": 1979, + "Directional": true + } + ] + }, + { + "ID": 13696, + "SourceStructureID": 35513, + "TargetStructureID": 445, + "Label": "35513-445 via Conventional from 35514 -> 35512", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35514, + "TargetID": 35512, + "Directional": true + } + ] + }, + { + "ID": 13697, + "SourceStructureID": 35534, + "TargetStructureID": 10590, + "Label": "35534-10590 via Conventional from 35535 -> 35536", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35535, + "TargetID": 35536, + "Directional": true + } + ] + }, + { + "ID": 13698, + "SourceStructureID": 35534, + "TargetStructureID": 10961, + "Label": "35534-10961 via Conventional from 35537 -> 35538", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35537, + "TargetID": 35538, + "Directional": true + } + ] + }, + { + "ID": 13699, + "SourceStructureID": 35539, + "TargetStructureID": 5530, + "Label": "35539-5530 via Conventional from 77912 -> 42447", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77912, + "TargetID": 42447, + "Directional": true + } + ] + }, + { + "ID": 13700, + "SourceStructureID": 35539, + "TargetStructureID": 10590, + "Label": "35539-10590 via Conventional from 35540 -> 35541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35540, + "TargetID": 35541, + "Directional": true + } + ] + }, + { + "ID": 13701, + "SourceStructureID": 35545, + "TargetStructureID": 10602, + "Label": "35545-10602 via Conventional from 35546 -> 35544", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35546, + "TargetID": 35544, + "Directional": true + } + ] + }, + { + "ID": 13702, + "SourceStructureID": 35550, + "TargetStructureID": 35545, + "Label": "35550-35545 via Ribbon Synapse from 35551 -> 35549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35551, + "TargetID": 35549, + "Directional": true + } + ] + }, + { + "ID": 13703, + "SourceStructureID": 35555, + "TargetStructureID": 5565, + "Label": "35555-5565 via Conventional from 35559 -> 50848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35559, + "TargetID": 50848, + "Directional": true + } + ] + }, + { + "ID": 13704, + "SourceStructureID": 35555, + "TargetStructureID": 5568, + "Label": "35555-5568 via Conventional from 35558 -> 50361", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35558, + "TargetID": 50361, + "Directional": true + } + ] + }, + { + "ID": 13705, + "SourceStructureID": 35555, + "TargetStructureID": 5729, + "Label": "35555-5729 via Conventional from 35565 -> 64505", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35565, + "TargetID": 64505, + "Directional": true + } + ] + }, + { + "ID": 13706, + "SourceStructureID": 35555, + "TargetStructureID": 8040, + "Label": "35555-8040 via Conventional from 35564 -> 48630", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35564, + "TargetID": 48630, + "Directional": true + } + ] + }, + { + "ID": 13707, + "SourceStructureID": 35555, + "TargetStructureID": 10826, + "Label": "35555-10826 via Conventional from 35556 -> 35554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35556, + "TargetID": 35554, + "Directional": true + } + ] + }, + { + "ID": 13708, + "SourceStructureID": 35576, + "TargetStructureID": 161, + "Label": "35576-161 via Conventional from 35582 -> 35588", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35582, + "TargetID": 35588, + "Directional": true + } + ] + }, + { + "ID": 13709, + "SourceStructureID": 35576, + "TargetStructureID": 5303, + "Label": "35576-5303 via Conventional from 35577 -> 35575", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35577, + "TargetID": 35575, + "Directional": true + } + ] + }, + { + "ID": 13710, + "SourceStructureID": 35576, + "TargetStructureID": 5502, + "Label": "35576-5502 via Conventional from 35589 -> 27270", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35589, + "TargetID": 27270, + "Directional": true + } + ] + }, + { + "ID": 13711, + "SourceStructureID": 35576, + "TargetStructureID": 6121, + "Label": "35576-6121 via Conventional from 35579 -> 53466", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35579, + "TargetID": 53466, + "Directional": true + } + ] + }, + { + "ID": 13712, + "SourceStructureID": 35597, + "TargetStructureID": 5303, + "Label": "35597-5303 via Conventional from 35599 -> 35600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35599, + "TargetID": 35600, + "Directional": true + } + ] + }, + { + "ID": 13713, + "SourceStructureID": 35597, + "TargetStructureID": 6118, + "Label": "35597-6118 via Conventional from 121989 -> 121990", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121989, + "TargetID": 121990, + "Directional": true + } + ] + }, + { + "ID": 13714, + "SourceStructureID": 35597, + "TargetStructureID": 11049, + "Label": "35597-11049 via Conventional from 35598 -> 35596", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35598, + "TargetID": 35596, + "Directional": true + } + ] + }, + { + "ID": 13715, + "SourceStructureID": 35653, + "TargetStructureID": 168, + "Label": "35653-168 via Conventional from 35674 -> 4282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35674, + "TargetID": 4282, + "Directional": true + } + ] + }, + { + "ID": 13716, + "SourceStructureID": 35653, + "TargetStructureID": 170, + "Label": "35653-170 via Conventional from 35680 -> 89663, 89455 -> 89456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35680, + "TargetID": 89663, + "Directional": true + }, + { + "SourceID": 89455, + "TargetID": 89456, + "Directional": true + } + ] + }, + { + "ID": 13717, + "SourceStructureID": 35653, + "TargetStructureID": 606, + "Label": "35653-606 via Conventional from 35677 -> 35678, 47825 -> 47824", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35677, + "TargetID": 35678, + "Directional": true + }, + { + "SourceID": 47825, + "TargetID": 47824, + "Directional": true + } + ] + }, + { + "ID": 13718, + "SourceStructureID": 35653, + "TargetStructureID": 5528, + "Label": "35653-5528 via Conventional from 35656 -> 94413, 35657 -> 35658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35656, + "TargetID": 94413, + "Directional": true + }, + { + "SourceID": 35657, + "TargetID": 35658, + "Directional": true + } + ] + }, + { + "ID": 13719, + "SourceStructureID": 35653, + "TargetStructureID": 5530, + "Label": "35653-5530 via Conventional from 35676 -> 75529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35676, + "TargetID": 75529, + "Directional": true + } + ] + }, + { + "ID": 13720, + "SourceStructureID": 35653, + "TargetStructureID": 6127, + "Label": "35653-6127 via Conventional from 35666 -> 35668", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35666, + "TargetID": 35668, + "Directional": true + } + ] + }, + { + "ID": 13721, + "SourceStructureID": 35653, + "TargetStructureID": 10956, + "Label": "35653-10956 via Conventional from 35654 -> 35655", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35654, + "TargetID": 35655, + "Directional": true + } + ] + }, + { + "ID": 13722, + "SourceStructureID": 35681, + "TargetStructureID": 5303, + "Label": "35681-5303 via Conventional from 35682 -> 35612", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35682, + "TargetID": 35612, + "Directional": true + } + ] + }, + { + "ID": 13723, + "SourceStructureID": 35681, + "TargetStructureID": 6048, + "Label": "35681-6048 via Conventional from 35684 -> 35685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35684, + "TargetID": 35685, + "Directional": true + } + ] + }, + { + "ID": 13724, + "SourceStructureID": 35681, + "TargetStructureID": 6132, + "Label": "35681-6132 via Conventional from 35724 -> 35725", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35724, + "TargetID": 35725, + "Directional": true + } + ] + }, + { + "ID": 13725, + "SourceStructureID": 35696, + "TargetStructureID": 9787, + "Label": "35696-9787 via Ribbon Synapse from 35702 -> 35703", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35702, + "TargetID": 35703, + "Directional": true + } + ] + }, + { + "ID": 13726, + "SourceStructureID": 35696, + "TargetStructureID": 16073, + "Label": "35696-16073 via Ribbon Synapse from 35697 -> 24189, 35700 -> 24188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35697, + "TargetID": 24189, + "Directional": true + }, + { + "SourceID": 35700, + "TargetID": 24188, + "Directional": true + } + ] + }, + { + "ID": 13727, + "SourceStructureID": 35696, + "TargetStructureID": 35681, + "Label": "35696-35681 via Ribbon Synapse from 35711 -> 35695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 35711, + "TargetID": 35695, + "Directional": true + } + ] + }, + { + "ID": 13728, + "SourceStructureID": 35696, + "TargetStructureID": 136432, + "Label": "35696-136432 via Ribbon Synapse from 40123 -> 136490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40123, + "TargetID": 136490, + "Directional": true + } + ] + }, + { + "ID": 13729, + "SourceStructureID": 35751, + "TargetStructureID": 408, + "Label": "35751-408 via Conventional from 35752 -> 22511", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35752, + "TargetID": 22511, + "Directional": true + } + ] + }, + { + "ID": 13730, + "SourceStructureID": 35811, + "TargetStructureID": 142, + "Label": "35811-142 via Conventional from 35835 -> 126164, 35836 -> 31769, 35837 -> 31776, 35840 -> 49707", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35835, + "TargetID": 126164, + "Directional": true + }, + { + "SourceID": 35836, + "TargetID": 31769, + "Directional": true + }, + { + "SourceID": 35837, + "TargetID": 31776, + "Directional": true + }, + { + "SourceID": 35840, + "TargetID": 49707, + "Directional": true + } + ] + }, + { + "ID": 13731, + "SourceStructureID": 35811, + "TargetStructureID": 176, + "Label": "35811-176 via Conventional from 35842 -> 35843, 35848 -> 35849", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35842, + "TargetID": 35843, + "Directional": true + }, + { + "SourceID": 35848, + "TargetID": 35849, + "Directional": true + } + ] + }, + { + "ID": 13732, + "SourceStructureID": 35811, + "TargetStructureID": 372, + "Label": "35811-372 via Conventional from 35812 -> 30781", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35812, + "TargetID": 30781, + "Directional": true + } + ] + }, + { + "ID": 13733, + "SourceStructureID": 35811, + "TargetStructureID": 408, + "Label": "35811-408 via Conventional from 35882 -> 35883, 35884 -> 35771", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35882, + "TargetID": 35883, + "Directional": true + }, + { + "SourceID": 35884, + "TargetID": 35771, + "Directional": true + } + ] + }, + { + "ID": 13734, + "SourceStructureID": 35811, + "TargetStructureID": 1724, + "Label": "35811-1724 via Conventional from 35823 -> 20187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35823, + "TargetID": 20187, + "Directional": true + } + ] + }, + { + "ID": 13735, + "SourceStructureID": 35811, + "TargetStructureID": 3756, + "Label": "35811-3756 via Conventional from 35852 -> 35854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35852, + "TargetID": 35854, + "Directional": true + } + ] + }, + { + "ID": 13736, + "SourceStructureID": 35811, + "TargetStructureID": 4569, + "Label": "35811-4569 via Conventional from 35815 -> 52458, 35818 -> 23797, 35820 -> 23783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35815, + "TargetID": 52458, + "Directional": true + }, + { + "SourceID": 35818, + "TargetID": 23797, + "Directional": true + }, + { + "SourceID": 35820, + "TargetID": 23783, + "Directional": true + } + ] + }, + { + "ID": 13737, + "SourceStructureID": 35811, + "TargetStructureID": 5442, + "Label": "35811-5442 via Conventional from 55122 -> 55121, 55143 -> 55142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55122, + "TargetID": 55121, + "Directional": true + }, + { + "SourceID": 55143, + "TargetID": 55142, + "Directional": true + } + ] + }, + { + "ID": 13738, + "SourceStructureID": 35811, + "TargetStructureID": 5598, + "Label": "35811-5598 via Conventional from 35861 -> 35862, 35864 -> 35865, 35871 -> 35872", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35861, + "TargetID": 35862, + "Directional": true + }, + { + "SourceID": 35864, + "TargetID": 35865, + "Directional": true + }, + { + "SourceID": 35871, + "TargetID": 35872, + "Directional": true + } + ] + }, + { + "ID": 13739, + "SourceStructureID": 35811, + "TargetStructureID": 5601, + "Label": "35811-5601 via Conventional from 35858 -> 35859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35858, + "TargetID": 35859, + "Directional": true + } + ] + }, + { + "ID": 13740, + "SourceStructureID": 35811, + "TargetStructureID": 6050, + "Label": "35811-6050 via Conventional from 86605 -> 86606", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86605, + "TargetID": 86606, + "Directional": true + } + ] + }, + { + "ID": 13741, + "SourceStructureID": 35811, + "TargetStructureID": 6117, + "Label": "35811-6117 via Conventional from 86603 -> 86604", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86603, + "TargetID": 86604, + "Directional": true + } + ] + }, + { + "ID": 13742, + "SourceStructureID": 35811, + "TargetStructureID": 6155, + "Label": "35811-6155 via Conventional from 35813 -> 34787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35813, + "TargetID": 34787, + "Directional": true + } + ] + }, + { + "ID": 13743, + "SourceStructureID": 35811, + "TargetStructureID": 21299, + "Label": "35811-21299 via Conventional from 35825 -> 35834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35825, + "TargetID": 35834, + "Directional": true + } + ] + }, + { + "ID": 13744, + "SourceStructureID": 35811, + "TargetStructureID": 58777, + "Label": "35811-58777 via Conventional from 58783 -> 58781", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58783, + "TargetID": 58781, + "Directional": true + } + ] + }, + { + "ID": 13745, + "SourceStructureID": 35887, + "TargetStructureID": 372, + "Label": "35887-372 via Conventional from 35892 -> 30963, 35893 -> 30992", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35892, + "TargetID": 30963, + "Directional": true + }, + { + "SourceID": 35893, + "TargetID": 30992, + "Directional": true + } + ] + }, + { + "ID": 13746, + "SourceStructureID": 35887, + "TargetStructureID": 408, + "Label": "35887-408 via Conventional from 35888 -> 35798", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35888, + "TargetID": 35798, + "Directional": true + } + ] + }, + { + "ID": 13747, + "SourceStructureID": 35894, + "TargetStructureID": 142, + "Label": "35894-142 via Conventional from 35928 -> 35930", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35928, + "TargetID": 35930, + "Directional": true + } + ] + }, + { + "ID": 13748, + "SourceStructureID": 35894, + "TargetStructureID": 176, + "Label": "35894-176 via Conventional from 35938 -> 35939, 128229 -> 119680", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35938, + "TargetID": 35939, + "Directional": true + }, + { + "SourceID": 128229, + "TargetID": 119680, + "Directional": true + } + ] + }, + { + "ID": 13749, + "SourceStructureID": 35894, + "TargetStructureID": 408, + "Label": "35894-408 via Conventional from 35895 -> 35797, 35897 -> 35899, 35903 -> 35785", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35895, + "TargetID": 35797, + "Directional": true + }, + { + "SourceID": 35897, + "TargetID": 35899, + "Directional": true + }, + { + "SourceID": 35903, + "TargetID": 35785, + "Directional": true + } + ] + }, + { + "ID": 13750, + "SourceStructureID": 35894, + "TargetStructureID": 1724, + "Label": "35894-1724 via Conventional from 35918 -> 20200, 100543 -> 100544, 100638 -> 3944", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35918, + "TargetID": 20200, + "Directional": true + }, + { + "SourceID": 100543, + "TargetID": 100544, + "Directional": true + }, + { + "SourceID": 100638, + "TargetID": 3944, + "Directional": true + } + ] + }, + { + "ID": 13751, + "SourceStructureID": 35894, + "TargetStructureID": 5278, + "Label": "35894-5278 via Conventional from 35920 -> 11192", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35920, + "TargetID": 11192, + "Directional": true + } + ] + }, + { + "ID": 13752, + "SourceStructureID": 35894, + "TargetStructureID": 5279, + "Label": "35894-5279 via Conventional from 35922 -> 92650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35922, + "TargetID": 92650, + "Directional": true + } + ] + }, + { + "ID": 13753, + "SourceStructureID": 35894, + "TargetStructureID": 6050, + "Label": "35894-6050 via Conventional from 35940 -> 119683, 35941 -> 35958", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35940, + "TargetID": 119683, + "Directional": true + }, + { + "SourceID": 35941, + "TargetID": 35958, + "Directional": true + } + ] + }, + { + "ID": 13754, + "SourceStructureID": 35894, + "TargetStructureID": 6117, + "Label": "35894-6117 via Conventional from 35927 -> 10527, 86023 -> 86024", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35927, + "TargetID": 10527, + "Directional": true + }, + { + "SourceID": 86023, + "TargetID": 86024, + "Directional": true + } + ] + }, + { + "ID": 13755, + "SourceStructureID": 35894, + "TargetStructureID": 6155, + "Label": "35894-6155 via Conventional from 35912 -> 15534, 35913 -> 15611, 107953 -> 107914, 107954 -> 48278", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35912, + "TargetID": 15534, + "Directional": true + }, + { + "SourceID": 35913, + "TargetID": 15611, + "Directional": true + }, + { + "SourceID": 107953, + "TargetID": 107914, + "Directional": true + }, + { + "SourceID": 107954, + "TargetID": 48278, + "Directional": true + } + ] + }, + { + "ID": 13756, + "SourceStructureID": 35894, + "TargetStructureID": 32035, + "Label": "35894-32035 via Conventional from 41660 -> 41659", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41660, + "TargetID": 41659, + "Directional": true + } + ] + }, + { + "ID": 13757, + "SourceStructureID": 35969, + "TargetStructureID": 408, + "Label": "35969-408 via Conventional from 35970 -> 29269, 62037 -> 52973", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35970, + "TargetID": 29269, + "Directional": true + }, + { + "SourceID": 62037, + "TargetID": 52973, + "Directional": true + } + ] + }, + { + "ID": 13758, + "SourceStructureID": 35972, + "TargetStructureID": 408, + "Label": "35972-408 via Conventional from 35973 -> 35807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35973, + "TargetID": 35807, + "Directional": true + } + ] + }, + { + "ID": 13759, + "SourceStructureID": 35975, + "TargetStructureID": 142, + "Label": "35975-142 via Conventional from 84978 -> 49770", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84978, + "TargetID": 49770, + "Directional": true + } + ] + }, + { + "ID": 13760, + "SourceStructureID": 35975, + "TargetStructureID": 408, + "Label": "35975-408 via Conventional from 35976 -> 35974, 35981 -> 35792", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35976, + "TargetID": 35974, + "Directional": true + }, + { + "SourceID": 35981, + "TargetID": 35792, + "Directional": true + } + ] + }, + { + "ID": 13761, + "SourceStructureID": 35975, + "TargetStructureID": 1724, + "Label": "35975-1724 via Conventional from 35989 -> 3930, 48481 -> 4012, 49048 -> 49047", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35989, + "TargetID": 3930, + "Directional": true + }, + { + "SourceID": 48481, + "TargetID": 4012, + "Directional": true + }, + { + "SourceID": 49048, + "TargetID": 49047, + "Directional": true + } + ] + }, + { + "ID": 13762, + "SourceStructureID": 35975, + "TargetStructureID": 5279, + "Label": "35975-5279 via Conventional from 35990 -> 25825, 35991 -> 35993", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35990, + "TargetID": 25825, + "Directional": true + }, + { + "SourceID": 35991, + "TargetID": 35993, + "Directional": true + } + ] + }, + { + "ID": 13763, + "SourceStructureID": 35975, + "TargetStructureID": 5292, + "Label": "35975-5292 via Conventional from 36002 -> 36007", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36002, + "TargetID": 36007, + "Directional": true + } + ] + }, + { + "ID": 13764, + "SourceStructureID": 35975, + "TargetStructureID": 5598, + "Label": "35975-5598 via Conventional from 36028 -> 36029", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36028, + "TargetID": 36029, + "Directional": true + } + ] + }, + { + "ID": 13765, + "SourceStructureID": 35975, + "TargetStructureID": 6050, + "Label": "35975-6050 via Conventional from 36009 -> 126981, 62392 -> 51878, 62393 -> 35951, 62394 -> 62395, 70350 -> 70356, 126986 -> 126985", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36009, + "TargetID": 126981, + "Directional": true + }, + { + "SourceID": 62392, + "TargetID": 51878, + "Directional": true + }, + { + "SourceID": 62393, + "TargetID": 35951, + "Directional": true + }, + { + "SourceID": 62394, + "TargetID": 62395, + "Directional": true + }, + { + "SourceID": 70350, + "TargetID": 70356, + "Directional": true + }, + { + "SourceID": 126986, + "TargetID": 126985, + "Directional": true + } + ] + }, + { + "ID": 13766, + "SourceStructureID": 35975, + "TargetStructureID": 6117, + "Label": "35975-6117 via Conventional from 84975 -> 84976", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84975, + "TargetID": 84976, + "Directional": true + } + ] + }, + { + "ID": 13767, + "SourceStructureID": 35975, + "TargetStructureID": 6155, + "Label": "35975-6155 via Conventional from 35982 -> 35983, 35984 -> 15755, 35986 -> 15604, 35987 -> 15686, 108107 -> 48286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35982, + "TargetID": 35983, + "Directional": true + }, + { + "SourceID": 35984, + "TargetID": 15755, + "Directional": true + }, + { + "SourceID": 35986, + "TargetID": 15604, + "Directional": true + }, + { + "SourceID": 35987, + "TargetID": 15686, + "Directional": true + }, + { + "SourceID": 108107, + "TargetID": 48286, + "Directional": true + } + ] + }, + { + "ID": 13768, + "SourceStructureID": 35975, + "TargetStructureID": 15796, + "Label": "35975-15796 via Conventional from 35999 -> 36001", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 35999, + "TargetID": 36001, + "Directional": true + } + ] + }, + { + "ID": 13769, + "SourceStructureID": 35975, + "TargetStructureID": 15976, + "Label": "35975-15976 via Conventional from 36052 -> 36053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36052, + "TargetID": 36053, + "Directional": true + } + ] + }, + { + "ID": 13770, + "SourceStructureID": 36130, + "TargetStructureID": 15796, + "Label": "36130-15796 via Conventional from 36131 -> 15838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36131, + "TargetID": 15838, + "Directional": true + } + ] + }, + { + "ID": 13771, + "SourceStructureID": 36130, + "TargetStructureID": 59163, + "Label": "36130-59163 via Conventional from 36149 -> 59166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36149, + "TargetID": 59166, + "Directional": true + } + ] + }, + { + "ID": 13772, + "SourceStructureID": 36151, + "TargetStructureID": 36153, + "Label": "36151-36153 via Conventional from 36152 -> 36154", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36152, + "TargetID": 36154, + "Directional": true + } + ] + }, + { + "ID": 13773, + "SourceStructureID": 36153, + "TargetStructureID": 479, + "Label": "36153-479 via Conventional from 61615 -> 61614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61615, + "TargetID": 61614, + "Directional": true + } + ] + }, + { + "ID": 13774, + "SourceStructureID": 36153, + "TargetStructureID": 8575, + "Label": "36153-8575 via Conventional from 61612 -> 17385", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61612, + "TargetID": 17385, + "Directional": true + } + ] + }, + { + "ID": 13775, + "SourceStructureID": 36158, + "TargetStructureID": 479, + "Label": "36158-479 via Conventional from 36159 -> 12365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36159, + "TargetID": 12365, + "Directional": true + } + ] + }, + { + "ID": 13776, + "SourceStructureID": 36162, + "TargetStructureID": 479, + "Label": "36162-479 via Conventional from 36163 -> 36161, 36166 -> 36167, 36166 -> 37612", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36163, + "TargetID": 36161, + "Directional": true + }, + { + "SourceID": 36166, + "TargetID": 36167, + "Directional": true + }, + { + "SourceID": 36166, + "TargetID": 37612, + "Directional": true + } + ] + }, + { + "ID": 13777, + "SourceStructureID": 36170, + "TargetStructureID": 479, + "Label": "36170-479 via Conventional from 36171 -> 121708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36171, + "TargetID": 121708, + "Directional": true + } + ] + }, + { + "ID": 13778, + "SourceStructureID": 36222, + "TargetStructureID": 372, + "Label": "36222-372 via Conventional from 36223 -> 16019", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36223, + "TargetID": 16019, + "Directional": true + } + ] + }, + { + "ID": 13779, + "SourceStructureID": 36228, + "TargetStructureID": 318, + "Label": "36228-318 via Conventional from 36233 -> 20276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36233, + "TargetID": 20276, + "Directional": true + } + ] + }, + { + "ID": 13780, + "SourceStructureID": 36228, + "TargetStructureID": 419, + "Label": "36228-419 via Conventional from 36229 -> 10174", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36229, + "TargetID": 10174, + "Directional": true + } + ] + }, + { + "ID": 13781, + "SourceStructureID": 36234, + "TargetStructureID": 419, + "Label": "36234-419 via Conventional from 36235 -> 10166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36235, + "TargetID": 10166, + "Directional": true + } + ] + }, + { + "ID": 13782, + "SourceStructureID": 36276, + "TargetStructureID": 518, + "Label": "36276-518 via Conventional from 36277 -> 3408", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36277, + "TargetID": 3408, + "Directional": true + } + ] + }, + { + "ID": 13783, + "SourceStructureID": 36276, + "TargetStructureID": 10959, + "Label": "36276-10959 via Conventional from 36289 -> 36291, 36290 -> 36292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36289, + "TargetID": 36291, + "Directional": true + }, + { + "SourceID": 36290, + "TargetID": 36292, + "Directional": true + } + ] + }, + { + "ID": 13784, + "SourceStructureID": 36293, + "TargetStructureID": 518, + "Label": "36293-518 via Conventional from 36294 -> 3447, 36296 -> 3409", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36294, + "TargetID": 3447, + "Directional": true + }, + { + "SourceID": 36296, + "TargetID": 3409, + "Directional": true + } + ] + }, + { + "ID": 13785, + "SourceStructureID": 36299, + "TargetStructureID": 518, + "Label": "36299-518 via Conventional from 36300 -> 3406, 36304 -> 3412", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36300, + "TargetID": 3406, + "Directional": true + }, + { + "SourceID": 36304, + "TargetID": 3412, + "Directional": true + } + ] + }, + { + "ID": 13786, + "SourceStructureID": 36419, + "TargetStructureID": 518, + "Label": "36419-518 via Conventional from 36420 -> 3356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36420, + "TargetID": 3356, + "Directional": true + } + ] + }, + { + "ID": 13787, + "SourceStructureID": 36419, + "TargetStructureID": 118372, + "Label": "36419-118372 via Conventional from 118371 -> 118373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118371, + "TargetID": 118373, + "Directional": true + } + ] + }, + { + "ID": 13788, + "SourceStructureID": 36421, + "TargetStructureID": 518, + "Label": "36421-518 via Conventional from 36422 -> 36423", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36422, + "TargetID": 36423, + "Directional": true + } + ] + }, + { + "ID": 13789, + "SourceStructureID": 36481, + "TargetStructureID": 518, + "Label": "36481-518 via Conventional from 36482 -> 3370, 36486 -> 36487, 36723 -> 36721", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36482, + "TargetID": 3370, + "Directional": true + }, + { + "SourceID": 36486, + "TargetID": 36487, + "Directional": true + }, + { + "SourceID": 36723, + "TargetID": 36721, + "Directional": true + } + ] + }, + { + "ID": 13790, + "SourceStructureID": 36481, + "TargetStructureID": 8749, + "Label": "36481-8749 via Conventional from 36496 -> 8864", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36496, + "TargetID": 8864, + "Directional": true + } + ] + }, + { + "ID": 13791, + "SourceStructureID": 36501, + "TargetStructureID": 476, + "Label": "36501-476 via Conventional from 36504 -> 2317", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36504, + "TargetID": 2317, + "Directional": true + } + ] + }, + { + "ID": 13792, + "SourceStructureID": 36501, + "TargetStructureID": 518, + "Label": "36501-518 via Conventional from 36502 -> 3374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36502, + "TargetID": 3374, + "Directional": true + } + ] + }, + { + "ID": 13793, + "SourceStructureID": 36508, + "TargetStructureID": 518, + "Label": "36508-518 via Conventional from 36509 -> 36510, 36511 -> 3430", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36509, + "TargetID": 36510, + "Directional": true + }, + { + "SourceID": 36511, + "TargetID": 3430, + "Directional": true + } + ] + }, + { + "ID": 13794, + "SourceStructureID": 36512, + "TargetStructureID": 518, + "Label": "36512-518 via Conventional from 36514 -> 2321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36514, + "TargetID": 2321, + "Directional": true + } + ] + }, + { + "ID": 13795, + "SourceStructureID": 36516, + "TargetStructureID": 5562, + "Label": "36516-5562 via Conventional from 36613 -> 33099", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36613, + "TargetID": 33099, + "Directional": true + } + ] + }, + { + "ID": 13796, + "SourceStructureID": 36516, + "TargetStructureID": 5649, + "Label": "36516-5649 via Conventional from 36623 -> 33108", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36623, + "TargetID": 33108, + "Directional": true + } + ] + }, + { + "ID": 13797, + "SourceStructureID": 36516, + "TargetStructureID": 10872, + "Label": "36516-10872 via Conventional from 36519 -> 15025", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36519, + "TargetID": 15025, + "Directional": true + } + ] + }, + { + "ID": 13798, + "SourceStructureID": 36516, + "TargetStructureID": 67410, + "Label": "36516-67410 via Conventional from 36520 -> 82769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36520, + "TargetID": 82769, + "Directional": true + } + ] + }, + { + "ID": 13799, + "SourceStructureID": 36650, + "TargetStructureID": 518, + "Label": "36650-518 via Conventional from 36651 -> 2319, 36652 -> 3433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36651, + "TargetID": 2319, + "Directional": true + }, + { + "SourceID": 36652, + "TargetID": 3433, + "Directional": true + } + ] + }, + { + "ID": 13800, + "SourceStructureID": 36661, + "TargetStructureID": 518, + "Label": "36661-518 via Conventional from 36662 -> 3456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36662, + "TargetID": 3456, + "Directional": true + } + ] + }, + { + "ID": 13801, + "SourceStructureID": 36664, + "TargetStructureID": 518, + "Label": "36664-518 via Conventional from 36665 -> 36663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36665, + "TargetID": 36663, + "Directional": true + } + ] + }, + { + "ID": 13802, + "SourceStructureID": 36683, + "TargetStructureID": 518, + "Label": "36683-518 via Conventional from 36684 -> 3444, 36686 -> 36685, 118353 -> 118352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36684, + "TargetID": 3444, + "Directional": true + }, + { + "SourceID": 36686, + "TargetID": 36685, + "Directional": true + }, + { + "SourceID": 118353, + "TargetID": 118352, + "Directional": true + } + ] + }, + { + "ID": 13803, + "SourceStructureID": 36688, + "TargetStructureID": 476, + "Label": "36688-476 via Conventional from 36694 -> 36693", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36694, + "TargetID": 36693, + "Directional": true + } + ] + }, + { + "ID": 13804, + "SourceStructureID": 36688, + "TargetStructureID": 518, + "Label": "36688-518 via Conventional from 36689 -> 3500, 36691 -> 36692, 36696 -> 3578", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36689, + "TargetID": 3500, + "Directional": true + }, + { + "SourceID": 36691, + "TargetID": 36692, + "Directional": true + }, + { + "SourceID": 36696, + "TargetID": 3578, + "Directional": true + } + ] + }, + { + "ID": 13805, + "SourceStructureID": 36698, + "TargetStructureID": 476, + "Label": "36698-476 via Conventional from 36699 -> 2327", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36699, + "TargetID": 2327, + "Directional": true + } + ] + }, + { + "ID": 13806, + "SourceStructureID": 36700, + "TargetStructureID": 476, + "Label": "36700-476 via Conventional from 36701 -> 2314, 36703 -> 16546", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36701, + "TargetID": 2314, + "Directional": true + }, + { + "SourceID": 36703, + "TargetID": 16546, + "Directional": true + } + ] + }, + { + "ID": 13807, + "SourceStructureID": 36700, + "TargetStructureID": 5350, + "Label": "36700-5350 via Conventional from 36704 -> 36705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36704, + "TargetID": 36705, + "Directional": true + } + ] + }, + { + "ID": 13808, + "SourceStructureID": 36714, + "TargetStructureID": 518, + "Label": "36714-518 via Conventional from 36715 -> 36716, 36720 -> 3514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36715, + "TargetID": 36716, + "Directional": true + }, + { + "SourceID": 36720, + "TargetID": 3514, + "Directional": true + } + ] + }, + { + "ID": 13809, + "SourceStructureID": 36724, + "TargetStructureID": 294, + "Label": "36724-294 via Conventional from 36728 -> 36729, 36730 -> 36731", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36728, + "TargetID": 36729, + "Directional": true + }, + { + "SourceID": 36730, + "TargetID": 36731, + "Directional": true + } + ] + }, + { + "ID": 13810, + "SourceStructureID": 36724, + "TargetStructureID": 518, + "Label": "36724-518 via Conventional from 36725 -> 3392, 36726 -> 3398, 36727 -> 3386", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36725, + "TargetID": 3392, + "Directional": true + }, + { + "SourceID": 36726, + "TargetID": 3398, + "Directional": true + }, + { + "SourceID": 36727, + "TargetID": 3386, + "Directional": true + } + ] + }, + { + "ID": 13811, + "SourceStructureID": 36746, + "TargetStructureID": 518, + "Label": "36746-518 via Conventional from 36747 -> 36745", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 36747, + "TargetID": 36745, + "Directional": true + } + ] + }, + { + "ID": 13812, + "SourceStructureID": 37012, + "TargetStructureID": 476, + "Label": "37012-476 via Conventional from 37013 -> 2313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37013, + "TargetID": 2313, + "Directional": true + } + ] + }, + { + "ID": 13813, + "SourceStructureID": 37021, + "TargetStructureID": 476, + "Label": "37021-476 via Conventional from 37022 -> 37023", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37022, + "TargetID": 37023, + "Directional": true + } + ] + }, + { + "ID": 13814, + "SourceStructureID": 37042, + "TargetStructureID": 471, + "Label": "37042-471 via Conventional from 37043 -> 16043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37043, + "TargetID": 16043, + "Directional": true + } + ] + }, + { + "ID": 13815, + "SourceStructureID": 37127, + "TargetStructureID": 476, + "Label": "37127-476 via Conventional from 37132 -> 2374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37132, + "TargetID": 2374, + "Directional": true + } + ] + }, + { + "ID": 13816, + "SourceStructureID": 37127, + "TargetStructureID": 518, + "Label": "37127-518 via Conventional from 37128 -> 3438", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37128, + "TargetID": 3438, + "Directional": true + } + ] + }, + { + "ID": 13817, + "SourceStructureID": 37135, + "TargetStructureID": 419, + "Label": "37135-419 via Conventional from 45662 -> 45663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45662, + "TargetID": 45663, + "Directional": true + } + ] + }, + { + "ID": 13818, + "SourceStructureID": 37135, + "TargetStructureID": 476, + "Label": "37135-476 via Conventional from 37181 -> 2394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37181, + "TargetID": 2394, + "Directional": true + } + ] + }, + { + "ID": 13819, + "SourceStructureID": 37135, + "TargetStructureID": 514, + "Label": "37135-514 via Conventional from 37179 -> 1557", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37179, + "TargetID": 1557, + "Directional": true + } + ] + }, + { + "ID": 13820, + "SourceStructureID": 37135, + "TargetStructureID": 518, + "Label": "37135-518 via Conventional from 37136 -> 14719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37136, + "TargetID": 14719, + "Directional": true + } + ] + }, + { + "ID": 13821, + "SourceStructureID": 37183, + "TargetStructureID": 518, + "Label": "37183-518 via Conventional from 37184 -> 3489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37184, + "TargetID": 3489, + "Directional": true + } + ] + }, + { + "ID": 13822, + "SourceStructureID": 37192, + "TargetStructureID": 514, + "Label": "37192-514 via Conventional from 37193 -> 3288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37193, + "TargetID": 3288, + "Directional": true + } + ] + }, + { + "ID": 13823, + "SourceStructureID": 37192, + "TargetStructureID": 3679, + "Label": "37192-3679 via Conventional from 37196 -> 16433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37196, + "TargetID": 16433, + "Directional": true + } + ] + }, + { + "ID": 13824, + "SourceStructureID": 37286, + "TargetStructureID": 419, + "Label": "37286-419 via Conventional from 133552 -> 132365, 133652 -> 132389", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133552, + "TargetID": 132365, + "Directional": true + }, + { + "SourceID": 133652, + "TargetID": 132389, + "Directional": true + } + ] + }, + { + "ID": 13825, + "SourceStructureID": 37295, + "TargetStructureID": 318, + "Label": "37295-318 via Ribbon Synapse from 39161 -> 39162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39161, + "TargetID": 39162, + "Directional": true + } + ] + }, + { + "ID": 13826, + "SourceStructureID": 37295, + "TargetStructureID": 37288, + "Label": "37295-37288 via Ribbon Synapse from 37296 -> 37289, 37300 -> 37299", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37296, + "TargetID": 37289, + "Directional": true + }, + { + "SourceID": 37300, + "TargetID": 37299, + "Directional": true + } + ] + }, + { + "ID": 13827, + "SourceStructureID": 37309, + "TargetStructureID": 22554, + "Label": "37309-22554 via Ribbon Synapse from 37343 -> 22568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37343, + "TargetID": 22568, + "Directional": true + } + ] + }, + { + "ID": 13828, + "SourceStructureID": 37309, + "TargetStructureID": 37288, + "Label": "37309-37288 via Ribbon Synapse from 37353 -> 37354, 37355 -> 37308, 37357 -> 37358, 37360 -> 37359, 37364 -> 37365, 37367 -> 37366, 37438 -> 37437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 37353, + "TargetID": 37354, + "Directional": true + }, + { + "SourceID": 37355, + "TargetID": 37308, + "Directional": true + }, + { + "SourceID": 37357, + "TargetID": 37358, + "Directional": true + }, + { + "SourceID": 37360, + "TargetID": 37359, + "Directional": true + }, + { + "SourceID": 37364, + "TargetID": 37365, + "Directional": true + }, + { + "SourceID": 37367, + "TargetID": 37366, + "Directional": true + }, + { + "SourceID": 37438, + "TargetID": 37437, + "Directional": true + } + ] + }, + { + "ID": 13829, + "SourceStructureID": 37309, + "TargetStructureID": 121541, + "Label": "37309-121541 via Ribbon Synapse from 121557 -> 121556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121557, + "TargetID": 121556, + "Directional": true + } + ] + }, + { + "ID": 13830, + "SourceStructureID": 37440, + "TargetStructureID": 37288, + "Label": "37440-37288 via Conventional from 37446 -> 37307, 37448 -> 37306", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37446, + "TargetID": 37307, + "Directional": true + }, + { + "SourceID": 37448, + "TargetID": 37306, + "Directional": true + } + ] + }, + { + "ID": 13831, + "SourceStructureID": 37440, + "TargetStructureID": 37309, + "Label": "37440-37309 via Conventional from 37441 -> 37439", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37441, + "TargetID": 37439, + "Directional": true + } + ] + }, + { + "ID": 13832, + "SourceStructureID": 37440, + "TargetStructureID": 37440, + "Label": "37440-37440 via Conventional from 37442 -> 37443", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37442, + "TargetID": 37443, + "Directional": true + } + ] + }, + { + "ID": 13833, + "SourceStructureID": 37461, + "TargetStructureID": 514, + "Label": "37461-514 via Conventional from 37462 -> 1439, 37463 -> 1509", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37462, + "TargetID": 1439, + "Directional": true + }, + { + "SourceID": 37463, + "TargetID": 1509, + "Directional": true + } + ] + }, + { + "ID": 13834, + "SourceStructureID": 37461, + "TargetStructureID": 591, + "Label": "37461-591 via Conventional from 37464 -> 10288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37464, + "TargetID": 10288, + "Directional": true + } + ] + }, + { + "ID": 13835, + "SourceStructureID": 37466, + "TargetStructureID": 519, + "Label": "37466-519 via Conventional from 37467 -> 37465", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 37467, + "TargetID": 37465, + "Directional": true + } + ] + }, + { + "ID": 13836, + "SourceStructureID": 38200, + "TargetStructureID": 514, + "Label": "38200-514 via Conventional from 38201 -> 1373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38201, + "TargetID": 1373, + "Directional": true + } + ] + }, + { + "ID": 13837, + "SourceStructureID": 38231, + "TargetStructureID": 10826, + "Label": "38231-10826 via Conventional from 38232 -> 38233", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38232, + "TargetID": 38233, + "Directional": true + } + ] + }, + { + "ID": 13838, + "SourceStructureID": 38236, + "TargetStructureID": 5623, + "Label": "38236-5623 via Conventional from 38241 -> 38242", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38241, + "TargetID": 38242, + "Directional": true + } + ] + }, + { + "ID": 13839, + "SourceStructureID": 38236, + "TargetStructureID": 10826, + "Label": "38236-10826 via Conventional from 38237 -> 38238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38237, + "TargetID": 38238, + "Directional": true + } + ] + }, + { + "ID": 13840, + "SourceStructureID": 38302, + "TargetStructureID": 6050, + "Label": "38302-6050 via Conventional from 38305 -> 38306, 127551 -> 127552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38305, + "TargetID": 38306, + "Directional": true + }, + { + "SourceID": 127551, + "TargetID": 127552, + "Directional": true + } + ] + }, + { + "ID": 13841, + "SourceStructureID": 38302, + "TargetStructureID": 11033, + "Label": "38302-11033 via Conventional from 38303 -> 38304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38303, + "TargetID": 38304, + "Directional": true + } + ] + }, + { + "ID": 13842, + "SourceStructureID": 38307, + "TargetStructureID": 5599, + "Label": "38307-5599 via Conventional from 38321 -> 38326", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38321, + "TargetID": 38326, + "Directional": true + } + ] + }, + { + "ID": 13843, + "SourceStructureID": 38307, + "TargetStructureID": 6050, + "Label": "38307-6050 via Conventional from 38311 -> 38312, 38319 -> 38320", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38311, + "TargetID": 38312, + "Directional": true + }, + { + "SourceID": 38319, + "TargetID": 38320, + "Directional": true + } + ] + }, + { + "ID": 13844, + "SourceStructureID": 38307, + "TargetStructureID": 11033, + "Label": "38307-11033 via Conventional from 38309 -> 38310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38309, + "TargetID": 38310, + "Directional": true + } + ] + }, + { + "ID": 13845, + "SourceStructureID": 38345, + "TargetStructureID": 11020, + "Label": "38345-11020 via Conventional from 38346 -> 20011", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38346, + "TargetID": 20011, + "Directional": true + } + ] + }, + { + "ID": 13846, + "SourceStructureID": 38357, + "TargetStructureID": 277, + "Label": "38357-277 via Conventional from 38431 -> 38430", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38431, + "TargetID": 38430, + "Directional": true + } + ] + }, + { + "ID": 13847, + "SourceStructureID": 38357, + "TargetStructureID": 24366, + "Label": "38357-24366 via Conventional from 38889 -> 24378", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38889, + "TargetID": 24378, + "Directional": true + } + ] + }, + { + "ID": 13848, + "SourceStructureID": 38363, + "TargetStructureID": 6115, + "Label": "38363-6115 via Conventional from 38369 -> 59609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38369, + "TargetID": 59609, + "Directional": true + } + ] + }, + { + "ID": 13849, + "SourceStructureID": 38363, + "TargetStructureID": 10931, + "Label": "38363-10931 via Conventional from 38364 -> 38365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38364, + "TargetID": 38365, + "Directional": true + } + ] + }, + { + "ID": 13850, + "SourceStructureID": 38363, + "TargetStructureID": 66407, + "Label": "38363-66407 via Conventional from 66467 -> 66468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66467, + "TargetID": 66468, + "Directional": true + } + ] + }, + { + "ID": 13851, + "SourceStructureID": 38373, + "TargetStructureID": 10931, + "Label": "38373-10931 via Conventional from 38374 -> 38375", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38374, + "TargetID": 38375, + "Directional": true + } + ] + }, + { + "ID": 13852, + "SourceStructureID": 38376, + "TargetStructureID": 10931, + "Label": "38376-10931 via Conventional from 38377 -> 14216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38377, + "TargetID": 14216, + "Directional": true + } + ] + }, + { + "ID": 13853, + "SourceStructureID": 38379, + "TargetStructureID": 5297, + "Label": "38379-5297 via Conventional from 121285 -> 116331", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121285, + "TargetID": 116331, + "Directional": true + } + ] + }, + { + "ID": 13854, + "SourceStructureID": 38379, + "TargetStructureID": 10931, + "Label": "38379-10931 via Conventional from 38380 -> 38381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38380, + "TargetID": 38381, + "Directional": true + } + ] + }, + { + "ID": 13855, + "SourceStructureID": 38385, + "TargetStructureID": 10897, + "Label": "38385-10897 via Conventional from 38386 -> 38387", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38386, + "TargetID": 38387, + "Directional": true + } + ] + }, + { + "ID": 13856, + "SourceStructureID": 38385, + "TargetStructureID": 67981, + "Label": "38385-67981 via Conventional from 67991 -> 67990", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67991, + "TargetID": 67990, + "Directional": true + } + ] + }, + { + "ID": 13857, + "SourceStructureID": 38388, + "TargetStructureID": 10897, + "Label": "38388-10897 via Conventional from 38389 -> 38390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38389, + "TargetID": 38390, + "Directional": true + } + ] + }, + { + "ID": 13858, + "SourceStructureID": 38388, + "TargetStructureID": 11401, + "Label": "38388-11401 via Conventional from 38455 -> 38456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38455, + "TargetID": 38456, + "Directional": true + } + ] + }, + { + "ID": 13859, + "SourceStructureID": 38395, + "TargetStructureID": 8037, + "Label": "38395-8037 via Conventional from 38398 -> 38399", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38398, + "TargetID": 38399, + "Directional": true + } + ] + }, + { + "ID": 13860, + "SourceStructureID": 38395, + "TargetStructureID": 8749, + "Label": "38395-8749 via Conventional from 38400 -> 8829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38400, + "TargetID": 8829, + "Directional": true + } + ] + }, + { + "ID": 13861, + "SourceStructureID": 38395, + "TargetStructureID": 10897, + "Label": "38395-10897 via Conventional from 38396 -> 38397", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38396, + "TargetID": 38397, + "Directional": true + } + ] + }, + { + "ID": 13862, + "SourceStructureID": 38401, + "TargetStructureID": 10840, + "Label": "38401-10840 via Conventional from 38402 -> 33270", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38402, + "TargetID": 33270, + "Directional": true + } + ] + }, + { + "ID": 13863, + "SourceStructureID": 38404, + "TargetStructureID": 5637, + "Label": "38404-5637 via Conventional from 38411 -> 56030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38411, + "TargetID": 56030, + "Directional": true + } + ] + }, + { + "ID": 13864, + "SourceStructureID": 38428, + "TargetStructureID": 16087, + "Label": "38428-16087 via Conventional from 38429 -> 38427", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38429, + "TargetID": 38427, + "Directional": true + } + ] + }, + { + "ID": 13865, + "SourceStructureID": 38435, + "TargetStructureID": 5454, + "Label": "38435-5454 via Conventional from 38436 -> 34195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38436, + "TargetID": 34195, + "Directional": true + } + ] + }, + { + "ID": 13866, + "SourceStructureID": 38446, + "TargetStructureID": 5454, + "Label": "38446-5454 via Conventional from 38447 -> 38432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38447, + "TargetID": 38432, + "Directional": true + } + ] + }, + { + "ID": 13867, + "SourceStructureID": 38461, + "TargetStructureID": 5468, + "Label": "38461-5468 via Conventional from 38470 -> 38473", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38470, + "TargetID": 38473, + "Directional": true + } + ] + }, + { + "ID": 13868, + "SourceStructureID": 38461, + "TargetStructureID": 10412, + "Label": "38461-10412 via Conventional from 38462 -> 10419", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38462, + "TargetID": 10419, + "Directional": true + } + ] + }, + { + "ID": 13869, + "SourceStructureID": 38483, + "TargetStructureID": 5649, + "Label": "38483-5649 via Conventional from 38500 -> 38501, 107116 -> 107114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38500, + "TargetID": 38501, + "Directional": true + }, + { + "SourceID": 107116, + "TargetID": 107114, + "Directional": true + } + ] + }, + { + "ID": 13870, + "SourceStructureID": 38483, + "TargetStructureID": 8586, + "Label": "38483-8586 via Conventional from 38484 -> 8644", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38484, + "TargetID": 8644, + "Directional": true + } + ] + }, + { + "ID": 13871, + "SourceStructureID": 38502, + "TargetStructureID": 7054, + "Label": "38502-7054 via Conventional from 38503 -> 10914, 159550 -> 159548", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38503, + "TargetID": 10914, + "Directional": true + }, + { + "SourceID": 159550, + "TargetID": 159548, + "Directional": true + } + ] + }, + { + "ID": 13872, + "SourceStructureID": 38600, + "TargetStructureID": 422, + "Label": "38600-422 via Conventional from 38601 -> 31854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38601, + "TargetID": 31854, + "Directional": true + } + ] + }, + { + "ID": 13873, + "SourceStructureID": 38605, + "TargetStructureID": 369, + "Label": "38605-369 via Conventional from 30438 -> 29552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 30438, + "TargetID": 29552, + "Directional": true + } + ] + }, + { + "ID": 13874, + "SourceStructureID": 38605, + "TargetStructureID": 422, + "Label": "38605-422 via Conventional from 38606 -> 38604", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38606, + "TargetID": 38604, + "Directional": true + } + ] + }, + { + "ID": 13875, + "SourceStructureID": 38605, + "TargetStructureID": 3116, + "Label": "38605-3116 via Conventional from 101488 -> 46773", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101488, + "TargetID": 46773, + "Directional": true + } + ] + }, + { + "ID": 13876, + "SourceStructureID": 38605, + "TargetStructureID": 4569, + "Label": "38605-4569 via Conventional from 38612 -> 38613, 98731 -> 98729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38612, + "TargetID": 38613, + "Directional": true + }, + { + "SourceID": 98731, + "TargetID": 98729, + "Directional": true + } + ] + }, + { + "ID": 13877, + "SourceStructureID": 38632, + "TargetStructureID": 307, + "Label": "38632-307 via Conventional from 38642 -> 38643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38642, + "TargetID": 38643, + "Directional": true + } + ] + }, + { + "ID": 13878, + "SourceStructureID": 38632, + "TargetStructureID": 380, + "Label": "38632-380 via Conventional from 38636 -> 38635", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38636, + "TargetID": 38635, + "Directional": true + } + ] + }, + { + "ID": 13879, + "SourceStructureID": 38698, + "TargetStructureID": 330, + "Label": "38698-330 via Conventional from 38701 -> 38702", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38701, + "TargetID": 38702, + "Directional": true + } + ] + }, + { + "ID": 13880, + "SourceStructureID": 38698, + "TargetStructureID": 360, + "Label": "38698-360 via Conventional from 38699 -> 26585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38699, + "TargetID": 26585, + "Directional": true + } + ] + }, + { + "ID": 13881, + "SourceStructureID": 38698, + "TargetStructureID": 606, + "Label": "38698-606 via Conventional from 52707 -> 9797", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52707, + "TargetID": 9797, + "Directional": true + } + ] + }, + { + "ID": 13882, + "SourceStructureID": 38703, + "TargetStructureID": 335, + "Label": "38703-335 via Conventional from 38711 -> 38712", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38711, + "TargetID": 38712, + "Directional": true + } + ] + }, + { + "ID": 13883, + "SourceStructureID": 38703, + "TargetStructureID": 360, + "Label": "38703-360 via Conventional from 38704 -> 26586, 38705 -> 26587", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38704, + "TargetID": 26586, + "Directional": true + }, + { + "SourceID": 38705, + "TargetID": 26587, + "Directional": true + } + ] + }, + { + "ID": 13884, + "SourceStructureID": 38713, + "TargetStructureID": 345, + "Label": "38713-345 via Conventional from 38714 -> 38715", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38714, + "TargetID": 38715, + "Directional": true + } + ] + }, + { + "ID": 13885, + "SourceStructureID": 38718, + "TargetStructureID": 345, + "Label": "38718-345 via Conventional from 38720 -> 38719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38720, + "TargetID": 38719, + "Directional": true + } + ] + }, + { + "ID": 13886, + "SourceStructureID": 38718, + "TargetStructureID": 446, + "Label": "38718-446 via Conventional from 38723 -> 38724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38723, + "TargetID": 38724, + "Directional": true + } + ] + }, + { + "ID": 13887, + "SourceStructureID": 38727, + "TargetStructureID": 332, + "Label": "38727-332 via Conventional from 38731 -> 38732", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38731, + "TargetID": 38732, + "Directional": true + } + ] + }, + { + "ID": 13888, + "SourceStructureID": 38727, + "TargetStructureID": 334, + "Label": "38727-334 via Conventional from 38728 -> 26206", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38728, + "TargetID": 26206, + "Directional": true + } + ] + }, + { + "ID": 13889, + "SourceStructureID": 38727, + "TargetStructureID": 38703, + "Label": "38727-38703 via Conventional from 38729 -> 38730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38729, + "TargetID": 38730, + "Directional": true + } + ] + }, + { + "ID": 13890, + "SourceStructureID": 38735, + "TargetStructureID": 17533, + "Label": "38735-17533 via Conventional from 38736 -> 38737", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38736, + "TargetID": 38737, + "Directional": true + } + ] + }, + { + "ID": 13891, + "SourceStructureID": 38740, + "TargetStructureID": 293, + "Label": "38740-293 via Conventional from 38741 -> 14377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38741, + "TargetID": 14377, + "Directional": true + } + ] + }, + { + "ID": 13892, + "SourceStructureID": 38799, + "TargetStructureID": 598, + "Label": "38799-598 via Ribbon Synapse from 38800 -> 38798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38800, + "TargetID": 38798, + "Directional": true + } + ] + }, + { + "ID": 13893, + "SourceStructureID": 38848, + "TargetStructureID": 18282, + "Label": "38848-18282 via Ribbon Synapse from 38850 -> 31455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 38850, + "TargetID": 31455, + "Directional": true + } + ] + }, + { + "ID": 13894, + "SourceStructureID": 38906, + "TargetStructureID": 483, + "Label": "38906-483 via Conventional from 38907 -> 26812", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38907, + "TargetID": 26812, + "Directional": true + } + ] + }, + { + "ID": 13895, + "SourceStructureID": 38906, + "TargetStructureID": 4570, + "Label": "38906-4570 via Conventional from 38925 -> 14979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38925, + "TargetID": 14979, + "Directional": true + } + ] + }, + { + "ID": 13896, + "SourceStructureID": 38949, + "TargetStructureID": 170, + "Label": "38949-170 via Conventional from 39029 -> 39030, 39034 -> 39035", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39029, + "TargetID": 39030, + "Directional": true + }, + { + "SourceID": 39034, + "TargetID": 39035, + "Directional": true + } + ] + }, + { + "ID": 13897, + "SourceStructureID": 38949, + "TargetStructureID": 176, + "Label": "38949-176 via Conventional from 38989 -> 128264, 38993 -> 38994, 38997 -> 38999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38989, + "TargetID": 128264, + "Directional": true + }, + { + "SourceID": 38993, + "TargetID": 38994, + "Directional": true + }, + { + "SourceID": 38997, + "TargetID": 38999, + "Directional": true + } + ] + }, + { + "ID": 13898, + "SourceStructureID": 38949, + "TargetStructureID": 431, + "Label": "38949-431 via Conventional from 39043 -> 12741, 39045 -> 39046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39043, + "TargetID": 12741, + "Directional": true + }, + { + "SourceID": 39045, + "TargetID": 39046, + "Directional": true + } + ] + }, + { + "ID": 13899, + "SourceStructureID": 38949, + "TargetStructureID": 4569, + "Label": "38949-4569 via Conventional from 39038 -> 39039, 39040 -> 39041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39038, + "TargetID": 39039, + "Directional": true + }, + { + "SourceID": 39040, + "TargetID": 39041, + "Directional": true + } + ] + }, + { + "ID": 13900, + "SourceStructureID": 38949, + "TargetStructureID": 5584, + "Label": "38949-5584 via Conventional from 38952 -> 38970", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38952, + "TargetID": 38970, + "Directional": true + } + ] + }, + { + "ID": 13901, + "SourceStructureID": 38949, + "TargetStructureID": 5598, + "Label": "38949-5598 via Conventional from 38950 -> 38951, 38976 -> 38977, 38980 -> 115006, 124477 -> 114595, 130063 -> 130064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38950, + "TargetID": 38951, + "Directional": true + }, + { + "SourceID": 38976, + "TargetID": 38977, + "Directional": true + }, + { + "SourceID": 38980, + "TargetID": 115006, + "Directional": true + }, + { + "SourceID": 124477, + "TargetID": 114595, + "Directional": true + }, + { + "SourceID": 130063, + "TargetID": 130064, + "Directional": true + } + ] + }, + { + "ID": 13902, + "SourceStructureID": 38949, + "TargetStructureID": 9376, + "Label": "38949-9376 via Conventional from 38983 -> 33657", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 38983, + "TargetID": 33657, + "Directional": true + } + ] + }, + { + "ID": 13903, + "SourceStructureID": 38949, + "TargetStructureID": 29827, + "Label": "38949-29827 via Conventional from 39028 -> 29836", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39028, + "TargetID": 29836, + "Directional": true + } + ] + }, + { + "ID": 13904, + "SourceStructureID": 38949, + "TargetStructureID": 90273, + "Label": "38949-90273 via Conventional from 39037 -> 90274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39037, + "TargetID": 90274, + "Directional": true + } + ] + }, + { + "ID": 13905, + "SourceStructureID": 39168, + "TargetStructureID": 516, + "Label": "39168-516 via Conventional from 39169 -> 6383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39169, + "TargetID": 6383, + "Directional": true + } + ] + }, + { + "ID": 13906, + "SourceStructureID": 39192, + "TargetStructureID": 516, + "Label": "39192-516 via Conventional from 39194 -> 39193", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39194, + "TargetID": 39193, + "Directional": true + } + ] + }, + { + "ID": 13907, + "SourceStructureID": 39196, + "TargetStructureID": 516, + "Label": "39196-516 via Conventional from 39197 -> 39195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39197, + "TargetID": 39195, + "Directional": true + } + ] + }, + { + "ID": 13908, + "SourceStructureID": 39201, + "TargetStructureID": 516, + "Label": "39201-516 via Conventional from 39202 -> 6493, 39204 -> 39205, 39206 -> 39207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39202, + "TargetID": 6493, + "Directional": true + }, + { + "SourceID": 39204, + "TargetID": 39205, + "Directional": true + }, + { + "SourceID": 39206, + "TargetID": 39207, + "Directional": true + } + ] + }, + { + "ID": 13909, + "SourceStructureID": 39208, + "TargetStructureID": 171, + "Label": "39208-171 via Conventional from 39219 -> 39220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39219, + "TargetID": 39220, + "Directional": true + } + ] + }, + { + "ID": 13910, + "SourceStructureID": 39208, + "TargetStructureID": 516, + "Label": "39208-516 via Conventional from 39209 -> 39210, 39215 -> 3742", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39209, + "TargetID": 39210, + "Directional": true + }, + { + "SourceID": 39215, + "TargetID": 3742, + "Directional": true + } + ] + }, + { + "ID": 13911, + "SourceStructureID": 39216, + "TargetStructureID": 516, + "Label": "39216-516 via Conventional from 39217 -> 39218", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39217, + "TargetID": 39218, + "Directional": true + } + ] + }, + { + "ID": 13912, + "SourceStructureID": 39226, + "TargetStructureID": 516, + "Label": "39226-516 via Conventional from 39227 -> 39229", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39227, + "TargetID": 39229, + "Directional": true + } + ] + }, + { + "ID": 13913, + "SourceStructureID": 39239, + "TargetStructureID": 3679, + "Label": "39239-3679 via Conventional from 39242 -> 39243", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39242, + "TargetID": 39243, + "Directional": true + } + ] + }, + { + "ID": 13914, + "SourceStructureID": 39239, + "TargetStructureID": 32046, + "Label": "39239-32046 via Conventional from 39240 -> 39241", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39240, + "TargetID": 39241, + "Directional": true + } + ] + }, + { + "ID": 13915, + "SourceStructureID": 39244, + "TargetStructureID": 516, + "Label": "39244-516 via Conventional from 39245 -> 39246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39245, + "TargetID": 39246, + "Directional": true + } + ] + }, + { + "ID": 13916, + "SourceStructureID": 39244, + "TargetStructureID": 517, + "Label": "39244-517 via Conventional from 39248 -> 39249", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39248, + "TargetID": 39249, + "Directional": true + } + ] + }, + { + "ID": 13917, + "SourceStructureID": 39244, + "TargetStructureID": 10931, + "Label": "39244-10931 via Conventional from 39250 -> 39251, 89590 -> 89591", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39250, + "TargetID": 39251, + "Directional": true + }, + { + "SourceID": 89590, + "TargetID": 89591, + "Directional": true + } + ] + }, + { + "ID": 13918, + "SourceStructureID": 39252, + "TargetStructureID": 516, + "Label": "39252-516 via Conventional from 39253 -> 39254", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39253, + "TargetID": 39254, + "Directional": true + } + ] + }, + { + "ID": 13919, + "SourceStructureID": 39252, + "TargetStructureID": 517, + "Label": "39252-517 via Conventional from 39255 -> 1576", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39255, + "TargetID": 1576, + "Directional": true + } + ] + }, + { + "ID": 13920, + "SourceStructureID": 39285, + "TargetStructureID": 516, + "Label": "39285-516 via Conventional from 39288 -> 39291", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39288, + "TargetID": 39291, + "Directional": true + } + ] + }, + { + "ID": 13921, + "SourceStructureID": 39299, + "TargetStructureID": 9260, + "Label": "39299-9260 via Conventional from 39300 -> 39298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39300, + "TargetID": 39298, + "Directional": true + } + ] + }, + { + "ID": 13922, + "SourceStructureID": 39299, + "TargetStructureID": 21299, + "Label": "39299-21299 via Conventional from 39301 -> 39304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39301, + "TargetID": 39304, + "Directional": true + } + ] + }, + { + "ID": 13923, + "SourceStructureID": 39299, + "TargetStructureID": 24401, + "Label": "39299-24401 via Conventional from 39309 -> 48069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39309, + "TargetID": 48069, + "Directional": true + } + ] + }, + { + "ID": 13924, + "SourceStructureID": 39319, + "TargetStructureID": 166, + "Label": "39319-166 via Conventional from 39321 -> 59979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39321, + "TargetID": 59979, + "Directional": true + } + ] + }, + { + "ID": 13925, + "SourceStructureID": 39319, + "TargetStructureID": 516, + "Label": "39319-516 via Conventional from 39320 -> 6402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39320, + "TargetID": 6402, + "Directional": true + } + ] + }, + { + "ID": 13926, + "SourceStructureID": 39324, + "TargetStructureID": 516, + "Label": "39324-516 via Conventional from 39325 -> 39289, 39326 -> 39327", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39325, + "TargetID": 39289, + "Directional": true + }, + { + "SourceID": 39326, + "TargetID": 39327, + "Directional": true + } + ] + }, + { + "ID": 13927, + "SourceStructureID": 39331, + "TargetStructureID": 516, + "Label": "39331-516 via Conventional from 39332 -> 18400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39332, + "TargetID": 18400, + "Directional": true + } + ] + }, + { + "ID": 13928, + "SourceStructureID": 39342, + "TargetStructureID": 516, + "Label": "39342-516 via Conventional from 39343 -> 39344, 39588 -> 39589", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39343, + "TargetID": 39344, + "Directional": true + }, + { + "SourceID": 39588, + "TargetID": 39589, + "Directional": true + } + ] + }, + { + "ID": 13929, + "SourceStructureID": 39345, + "TargetStructureID": 166, + "Label": "39345-166 via Conventional from 39346 -> 4462, 39352 -> 39353, 66719 -> 66720", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39346, + "TargetID": 4462, + "Directional": true + }, + { + "SourceID": 39352, + "TargetID": 39353, + "Directional": true + }, + { + "SourceID": 66719, + "TargetID": 66720, + "Directional": true + } + ] + }, + { + "ID": 13930, + "SourceStructureID": 39516, + "TargetStructureID": 516, + "Label": "39516-516 via Conventional from 39517 -> 6495, 39518 -> 6496", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39517, + "TargetID": 6495, + "Directional": true + }, + { + "SourceID": 39518, + "TargetID": 6496, + "Directional": true + } + ] + }, + { + "ID": 13931, + "SourceStructureID": 39520, + "TargetStructureID": 516, + "Label": "39520-516 via Conventional from 39522 -> 39521", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39522, + "TargetID": 39521, + "Directional": true + } + ] + }, + { + "ID": 13932, + "SourceStructureID": 39523, + "TargetStructureID": 516, + "Label": "39523-516 via Conventional from 39524 -> 39525", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39524, + "TargetID": 39525, + "Directional": true + } + ] + }, + { + "ID": 13933, + "SourceStructureID": 39528, + "TargetStructureID": 10625, + "Label": "39528-10625 via Conventional from 39529 -> 16238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39529, + "TargetID": 16238, + "Directional": true + } + ] + }, + { + "ID": 13934, + "SourceStructureID": 39530, + "TargetStructureID": 471, + "Label": "39530-471 via Conventional from 83493 -> 16287, 83497 -> 16289, 83498 -> 16288, 83501 -> 16290", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83493, + "TargetID": 16287, + "Directional": true + }, + { + "SourceID": 83497, + "TargetID": 16289, + "Directional": true + }, + { + "SourceID": 83498, + "TargetID": 16288, + "Directional": true + }, + { + "SourceID": 83501, + "TargetID": 16290, + "Directional": true + } + ] + }, + { + "ID": 13935, + "SourceStructureID": 39530, + "TargetStructureID": 3679, + "Label": "39530-3679 via Conventional from 39556 -> 39549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39556, + "TargetID": 39549, + "Directional": true + } + ] + }, + { + "ID": 13936, + "SourceStructureID": 39530, + "TargetStructureID": 5017, + "Label": "39530-5017 via Conventional from 39552 -> 39542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39552, + "TargetID": 39542, + "Directional": true + } + ] + }, + { + "ID": 13937, + "SourceStructureID": 39530, + "TargetStructureID": 10625, + "Label": "39530-10625 via Conventional from 39531 -> 39532, 39533 -> 39534, 39535 -> 16237, 39536 -> 39537, 39538 -> 39539", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39531, + "TargetID": 39532, + "Directional": true + }, + { + "SourceID": 39533, + "TargetID": 39534, + "Directional": true + }, + { + "SourceID": 39535, + "TargetID": 16237, + "Directional": true + }, + { + "SourceID": 39536, + "TargetID": 39537, + "Directional": true + }, + { + "SourceID": 39538, + "TargetID": 39539, + "Directional": true + } + ] + }, + { + "ID": 13938, + "SourceStructureID": 39560, + "TargetStructureID": 516, + "Label": "39560-516 via Conventional from 39561 -> 39562, 39563 -> 39564, 39567 -> 39568, 39569 -> 39570, 39655 -> 39657, 39656 -> 39658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39561, + "TargetID": 39562, + "Directional": true + }, + { + "SourceID": 39563, + "TargetID": 39564, + "Directional": true + }, + { + "SourceID": 39567, + "TargetID": 39568, + "Directional": true + }, + { + "SourceID": 39569, + "TargetID": 39570, + "Directional": true + }, + { + "SourceID": 39655, + "TargetID": 39657, + "Directional": true + }, + { + "SourceID": 39656, + "TargetID": 39658, + "Directional": true + } + ] + }, + { + "ID": 13939, + "SourceStructureID": 39575, + "TargetStructureID": 516, + "Label": "39575-516 via Conventional from 39576 -> 39572, 39577 -> 39574", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39576, + "TargetID": 39572, + "Directional": true + }, + { + "SourceID": 39577, + "TargetID": 39574, + "Directional": true + } + ] + }, + { + "ID": 13940, + "SourceStructureID": 39581, + "TargetStructureID": 6857, + "Label": "39581-6857 via Conventional from 39582 -> 7496, 39583 -> 7495, 39584 -> 7497, 39586 -> 7499, 39587 -> 7498", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39582, + "TargetID": 7496, + "Directional": true + }, + { + "SourceID": 39583, + "TargetID": 7495, + "Directional": true + }, + { + "SourceID": 39584, + "TargetID": 7497, + "Directional": true + }, + { + "SourceID": 39586, + "TargetID": 7499, + "Directional": true + }, + { + "SourceID": 39587, + "TargetID": 7498, + "Directional": true + } + ] + }, + { + "ID": 13941, + "SourceStructureID": 39590, + "TargetStructureID": 516, + "Label": "39590-516 via Conventional from 39591 -> 6390, 39592 -> 6388, 39592 -> 6389, 39594 -> 39595", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39591, + "TargetID": 6390, + "Directional": true + }, + { + "SourceID": 39592, + "TargetID": 6388, + "Directional": true + }, + { + "SourceID": 39592, + "TargetID": 6389, + "Directional": true + }, + { + "SourceID": 39594, + "TargetID": 39595, + "Directional": true + } + ] + }, + { + "ID": 13942, + "SourceStructureID": 39596, + "TargetStructureID": 516, + "Label": "39596-516 via Conventional from 39597 -> 6387", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39597, + "TargetID": 6387, + "Directional": true + } + ] + }, + { + "ID": 13943, + "SourceStructureID": 39602, + "TargetStructureID": 516, + "Label": "39602-516 via Conventional from 39603 -> 39601", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39603, + "TargetID": 39601, + "Directional": true + } + ] + }, + { + "ID": 13944, + "SourceStructureID": 39602, + "TargetStructureID": 10625, + "Label": "39602-10625 via Conventional from 51392 -> 51391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 51392, + "TargetID": 51391, + "Directional": true + } + ] + }, + { + "ID": 13945, + "SourceStructureID": 39610, + "TargetStructureID": 166, + "Label": "39610-166 via Conventional from 121986 -> 5799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121986, + "TargetID": 5799, + "Directional": true + } + ] + }, + { + "ID": 13946, + "SourceStructureID": 39610, + "TargetStructureID": 516, + "Label": "39610-516 via Conventional from 39647 -> 39648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39647, + "TargetID": 39648, + "Directional": true + } + ] + }, + { + "ID": 13947, + "SourceStructureID": 39615, + "TargetStructureID": 180, + "Label": "39615-180 via Conventional from 66533 -> 66534", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66533, + "TargetID": 66534, + "Directional": true + } + ] + }, + { + "ID": 13948, + "SourceStructureID": 39615, + "TargetStructureID": 516, + "Label": "39615-516 via Conventional from 45650 -> 39614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45650, + "TargetID": 39614, + "Directional": true + } + ] + }, + { + "ID": 13949, + "SourceStructureID": 39615, + "TargetStructureID": 10931, + "Label": "39615-10931 via Conventional from 39643 -> 39629", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39643, + "TargetID": 39629, + "Directional": true + } + ] + }, + { + "ID": 13950, + "SourceStructureID": 39615, + "TargetStructureID": 71517, + "Label": "39615-71517 via Conventional from 132951 -> 132952", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132951, + "TargetID": 132952, + "Directional": true + } + ] + }, + { + "ID": 13951, + "SourceStructureID": 39649, + "TargetStructureID": 516, + "Label": "39649-516 via Conventional from 39650 -> 39651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39650, + "TargetID": 39651, + "Directional": true + } + ] + }, + { + "ID": 13952, + "SourceStructureID": 39677, + "TargetStructureID": 516, + "Label": "39677-516 via Conventional from 39678 -> 4549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39678, + "TargetID": 4549, + "Directional": true + } + ] + }, + { + "ID": 13953, + "SourceStructureID": 39677, + "TargetStructureID": 31024, + "Label": "39677-31024 via Conventional from 39679 -> 31068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39679, + "TargetID": 31068, + "Directional": true + } + ] + }, + { + "ID": 13954, + "SourceStructureID": 39688, + "TargetStructureID": 516, + "Label": "39688-516 via Conventional from 39689 -> 39690", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39689, + "TargetID": 39690, + "Directional": true + } + ] + }, + { + "ID": 13955, + "SourceStructureID": 39688, + "TargetStructureID": 10625, + "Label": "39688-10625 via Conventional from 39693 -> 39694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39693, + "TargetID": 39694, + "Directional": true + } + ] + }, + { + "ID": 13956, + "SourceStructureID": 39696, + "TargetStructureID": 142, + "Label": "39696-142 via Conventional from 87725 -> 92839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87725, + "TargetID": 92839, + "Directional": true + } + ] + }, + { + "ID": 13957, + "SourceStructureID": 39696, + "TargetStructureID": 171, + "Label": "39696-171 via Conventional from 39700 -> 22910", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39700, + "TargetID": 22910, + "Directional": true + } + ] + }, + { + "ID": 13958, + "SourceStructureID": 39696, + "TargetStructureID": 6117, + "Label": "39696-6117 via Conventional from 86321 -> 86322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86321, + "TargetID": 86322, + "Directional": true + } + ] + }, + { + "ID": 13959, + "SourceStructureID": 39696, + "TargetStructureID": 10625, + "Label": "39696-10625 via Conventional from 39697 -> 39695", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39697, + "TargetID": 39695, + "Directional": true + } + ] + }, + { + "ID": 13960, + "SourceStructureID": 39706, + "TargetStructureID": 171, + "Label": "39706-171 via Conventional from 39708 -> 39705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39708, + "TargetID": 39705, + "Directional": true + } + ] + }, + { + "ID": 13961, + "SourceStructureID": 39706, + "TargetStructureID": 39696, + "Label": "39706-39696 via Conventional from 39707 -> 39703", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39707, + "TargetID": 39703, + "Directional": true + } + ] + }, + { + "ID": 13962, + "SourceStructureID": 39717, + "TargetStructureID": 142, + "Label": "39717-142 via Conventional from 39721 -> 119586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39721, + "TargetID": 119586, + "Directional": true + } + ] + }, + { + "ID": 13963, + "SourceStructureID": 39717, + "TargetStructureID": 5437, + "Label": "39717-5437 via Conventional from 39720 -> 88063", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39720, + "TargetID": 88063, + "Directional": true + } + ] + }, + { + "ID": 13964, + "SourceStructureID": 39717, + "TargetStructureID": 10625, + "Label": "39717-10625 via Conventional from 39718 -> 39716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39718, + "TargetID": 39716, + "Directional": true + } + ] + }, + { + "ID": 13965, + "SourceStructureID": 39724, + "TargetStructureID": 10625, + "Label": "39724-10625 via Conventional from 39725 -> 39726, 39729 -> 26932, 39731 -> 39732, 39733 -> 39734, 39735 -> 39736, 88826 -> 88828", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39725, + "TargetID": 39726, + "Directional": true + }, + { + "SourceID": 39729, + "TargetID": 26932, + "Directional": true + }, + { + "SourceID": 39731, + "TargetID": 39732, + "Directional": true + }, + { + "SourceID": 39733, + "TargetID": 39734, + "Directional": true + }, + { + "SourceID": 39735, + "TargetID": 39736, + "Directional": true + }, + { + "SourceID": 88826, + "TargetID": 88828, + "Directional": true + } + ] + }, + { + "ID": 13966, + "SourceStructureID": 39737, + "TargetStructureID": 10625, + "Label": "39737-10625 via Conventional from 39738 -> 39739, 39740 -> 88829, 39742 -> 39743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39738, + "TargetID": 39739, + "Directional": true + }, + { + "SourceID": 39740, + "TargetID": 88829, + "Directional": true + }, + { + "SourceID": 39742, + "TargetID": 39743, + "Directional": true + } + ] + }, + { + "ID": 13967, + "SourceStructureID": 39745, + "TargetStructureID": 10625, + "Label": "39745-10625 via Conventional from 39746 -> 26936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39746, + "TargetID": 26936, + "Directional": true + } + ] + }, + { + "ID": 13968, + "SourceStructureID": 39748, + "TargetStructureID": 10625, + "Label": "39748-10625 via Conventional from 39750 -> 39751, 39757 -> 39758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39750, + "TargetID": 39751, + "Directional": true + }, + { + "SourceID": 39757, + "TargetID": 39758, + "Directional": true + } + ] + }, + { + "ID": 13969, + "SourceStructureID": 39752, + "TargetStructureID": 10625, + "Label": "39752-10625 via Conventional from 39753 -> 39754, 39755 -> 39756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39753, + "TargetID": 39754, + "Directional": true + }, + { + "SourceID": 39755, + "TargetID": 39756, + "Directional": true + } + ] + }, + { + "ID": 13970, + "SourceStructureID": 39759, + "TargetStructureID": 10625, + "Label": "39759-10625 via Conventional from 39760 -> 39761, 39763 -> 16340", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39760, + "TargetID": 39761, + "Directional": true + }, + { + "SourceID": 39763, + "TargetID": 16340, + "Directional": true + } + ] + }, + { + "ID": 13971, + "SourceStructureID": 39764, + "TargetStructureID": 10625, + "Label": "39764-10625 via Conventional from 39765 -> 16233, 39766 -> 16234, 39768 -> 39769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39765, + "TargetID": 16233, + "Directional": true + }, + { + "SourceID": 39766, + "TargetID": 16234, + "Directional": true + }, + { + "SourceID": 39768, + "TargetID": 39769, + "Directional": true + } + ] + }, + { + "ID": 13972, + "SourceStructureID": 39764, + "TargetStructureID": 14615, + "Label": "39764-14615 via Conventional from 39771 -> 39772", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39771, + "TargetID": 39772, + "Directional": true + } + ] + }, + { + "ID": 13973, + "SourceStructureID": 39774, + "TargetStructureID": 180, + "Label": "39774-180 via Conventional from 51339 -> 14157", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 51339, + "TargetID": 14157, + "Directional": true + } + ] + }, + { + "ID": 13974, + "SourceStructureID": 39774, + "TargetStructureID": 516, + "Label": "39774-516 via Conventional from 39777 -> 39778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39777, + "TargetID": 39778, + "Directional": true + } + ] + }, + { + "ID": 13975, + "SourceStructureID": 39774, + "TargetStructureID": 10625, + "Label": "39774-10625 via Conventional from 39775 -> 39776", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39775, + "TargetID": 39776, + "Directional": true + } + ] + }, + { + "ID": 13976, + "SourceStructureID": 39784, + "TargetStructureID": 10625, + "Label": "39784-10625 via Conventional from 39785 -> 39783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39785, + "TargetID": 39783, + "Directional": true + } + ] + }, + { + "ID": 13977, + "SourceStructureID": 39787, + "TargetStructureID": 10625, + "Label": "39787-10625 via Conventional from 87735 -> 26931", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87735, + "TargetID": 26931, + "Directional": true + } + ] + }, + { + "ID": 13978, + "SourceStructureID": 39787, + "TargetStructureID": 39787, + "Label": "39787-39787 via Conventional from 87733 -> 87734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87733, + "TargetID": 87734, + "Directional": true + } + ] + }, + { + "ID": 13979, + "SourceStructureID": 39790, + "TargetStructureID": 10625, + "Label": "39790-10625 via Conventional from 39791 -> 39792", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39791, + "TargetID": 39792, + "Directional": true + } + ] + }, + { + "ID": 13980, + "SourceStructureID": 39794, + "TargetStructureID": 10625, + "Label": "39794-10625 via Conventional from 39796 -> 39797", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39796, + "TargetID": 39797, + "Directional": true + } + ] + }, + { + "ID": 13981, + "SourceStructureID": 39798, + "TargetStructureID": 10625, + "Label": "39798-10625 via Conventional from 39799 -> 39800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39799, + "TargetID": 39800, + "Directional": true + } + ] + }, + { + "ID": 13982, + "SourceStructureID": 39802, + "TargetStructureID": 10625, + "Label": "39802-10625 via Conventional from 39803 -> 39804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39803, + "TargetID": 39804, + "Directional": true + } + ] + }, + { + "ID": 13983, + "SourceStructureID": 39807, + "TargetStructureID": 10625, + "Label": "39807-10625 via Conventional from 39808 -> 16751, 39809 -> 16752", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39808, + "TargetID": 16751, + "Directional": true + }, + { + "SourceID": 39809, + "TargetID": 16752, + "Directional": true + } + ] + }, + { + "ID": 13984, + "SourceStructureID": 39811, + "TargetStructureID": 10625, + "Label": "39811-10625 via Conventional from 39812 -> 39813, 39814 -> 26911", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39812, + "TargetID": 39813, + "Directional": true + }, + { + "SourceID": 39814, + "TargetID": 26911, + "Directional": true + } + ] + }, + { + "ID": 13985, + "SourceStructureID": 39816, + "TargetStructureID": 10625, + "Label": "39816-10625 via Conventional from 39820 -> 39821, 88830 -> 88831", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39820, + "TargetID": 39821, + "Directional": true + }, + { + "SourceID": 88830, + "TargetID": 88831, + "Directional": true + } + ] + }, + { + "ID": 13986, + "SourceStructureID": 39822, + "TargetStructureID": 10625, + "Label": "39822-10625 via Conventional from 39823 -> 26904", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39823, + "TargetID": 26904, + "Directional": true + } + ] + }, + { + "ID": 13987, + "SourceStructureID": 39824, + "TargetStructureID": 10625, + "Label": "39824-10625 via Conventional from 39825 -> 26910, 39829 -> 16753", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39825, + "TargetID": 26910, + "Directional": true + }, + { + "SourceID": 39829, + "TargetID": 16753, + "Directional": true + } + ] + }, + { + "ID": 13988, + "SourceStructureID": 39830, + "TargetStructureID": 10625, + "Label": "39830-10625 via Conventional from 39832 -> 26918, 39833 -> 26919, 39834 -> 26921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39832, + "TargetID": 26918, + "Directional": true + }, + { + "SourceID": 39833, + "TargetID": 26919, + "Directional": true + }, + { + "SourceID": 39834, + "TargetID": 26921, + "Directional": true + } + ] + }, + { + "ID": 13989, + "SourceStructureID": 39835, + "TargetStructureID": 10625, + "Label": "39835-10625 via Conventional from 39836 -> 26920", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39836, + "TargetID": 26920, + "Directional": true + } + ] + }, + { + "ID": 13990, + "SourceStructureID": 39838, + "TargetStructureID": 10625, + "Label": "39838-10625 via Conventional from 39839 -> 26922", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39839, + "TargetID": 26922, + "Directional": true + } + ] + }, + { + "ID": 13991, + "SourceStructureID": 39846, + "TargetStructureID": 519, + "Label": "39846-519 via Conventional from 39847 -> 9306, 159751 -> 9306", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39847, + "TargetID": 9306, + "Directional": true + }, + { + "SourceID": 159751, + "TargetID": 9306, + "Directional": true + } + ] + }, + { + "ID": 13992, + "SourceStructureID": 39846, + "TargetStructureID": 5575, + "Label": "39846-5575 via Conventional from 39849 -> 23084", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39849, + "TargetID": 23084, + "Directional": true + } + ] + }, + { + "ID": 13993, + "SourceStructureID": 39851, + "TargetStructureID": 408, + "Label": "39851-408 via Conventional from 39860 -> 39861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39860, + "TargetID": 39861, + "Directional": true + } + ] + }, + { + "ID": 13994, + "SourceStructureID": 39851, + "TargetStructureID": 519, + "Label": "39851-519 via Conventional from 39852 -> 39853", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39852, + "TargetID": 39853, + "Directional": true + } + ] + }, + { + "ID": 13995, + "SourceStructureID": 39851, + "TargetStructureID": 15100, + "Label": "39851-15100 via Conventional from 39858 -> 33786", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39858, + "TargetID": 33786, + "Directional": true + } + ] + }, + { + "ID": 13996, + "SourceStructureID": 39851, + "TargetStructureID": 26079, + "Label": "39851-26079 via Conventional from 39856 -> 39857", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39856, + "TargetID": 39857, + "Directional": true + } + ] + }, + { + "ID": 13997, + "SourceStructureID": 39862, + "TargetStructureID": 6912, + "Label": "39862-6912 via Ribbon Synapse from 51279 -> 51132, 51283 -> 51284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51279, + "TargetID": 51132, + "Directional": true + }, + { + "SourceID": 51283, + "TargetID": 51284, + "Directional": true + } + ] + }, + { + "ID": 13998, + "SourceStructureID": 39862, + "TargetStructureID": 39851, + "Label": "39862-39851 via Ribbon Synapse from 39866 -> 39859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 39866, + "TargetID": 39859, + "Directional": true + } + ] + }, + { + "ID": 13999, + "SourceStructureID": 39862, + "TargetStructureID": 39957, + "Label": "39862-39957 via Ribbon Synapse from 52302 -> 58545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52302, + "TargetID": 58545, + "Directional": true + } + ] + }, + { + "ID": 14000, + "SourceStructureID": 39862, + "TargetStructureID": 68737, + "Label": "39862-68737 via Ribbon Synapse from 52330 -> 68741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52330, + "TargetID": 68741, + "Directional": true + } + ] + }, + { + "ID": 14001, + "SourceStructureID": 39862, + "TargetStructureID": 87172, + "Label": "39862-87172 via Ribbon Synapse from 51176 -> 87173", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51176, + "TargetID": 87173, + "Directional": true + } + ] + }, + { + "ID": 14002, + "SourceStructureID": 39867, + "TargetStructureID": 519, + "Label": "39867-519 via Conventional from 39868 -> 39869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39868, + "TargetID": 39869, + "Directional": true + } + ] + }, + { + "ID": 14003, + "SourceStructureID": 39872, + "TargetStructureID": 485, + "Label": "39872-485 via Conventional from 39874 -> 49903", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39874, + "TargetID": 49903, + "Directional": true + } + ] + }, + { + "ID": 14004, + "SourceStructureID": 39872, + "TargetStructureID": 519, + "Label": "39872-519 via Conventional from 39873 -> 16516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39873, + "TargetID": 16516, + "Directional": true + } + ] + }, + { + "ID": 14005, + "SourceStructureID": 39876, + "TargetStructureID": 485, + "Label": "39876-485 via Conventional from 39879 -> 39880", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39879, + "TargetID": 39880, + "Directional": true + } + ] + }, + { + "ID": 14006, + "SourceStructureID": 39876, + "TargetStructureID": 519, + "Label": "39876-519 via Conventional from 39877 -> 39878", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39877, + "TargetID": 39878, + "Directional": true + } + ] + }, + { + "ID": 14007, + "SourceStructureID": 39876, + "TargetStructureID": 27288, + "Label": "39876-27288 via Conventional from 39881 -> 27297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39881, + "TargetID": 27297, + "Directional": true + } + ] + }, + { + "ID": 14008, + "SourceStructureID": 39883, + "TargetStructureID": 519, + "Label": "39883-519 via Conventional from 39884 -> 39885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39884, + "TargetID": 39885, + "Directional": true + } + ] + }, + { + "ID": 14009, + "SourceStructureID": 39896, + "TargetStructureID": 5729, + "Label": "39896-5729 via Conventional from 110888 -> 110889, 110943 -> 37856", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110888, + "TargetID": 110889, + "Directional": true + }, + { + "SourceID": 110943, + "TargetID": 37856, + "Directional": true + } + ] + }, + { + "ID": 14010, + "SourceStructureID": 39900, + "TargetStructureID": 606, + "Label": "39900-606 via Conventional from 52169 -> 39898", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52169, + "TargetID": 39898, + "Directional": true + } + ] + }, + { + "ID": 14011, + "SourceStructureID": 39900, + "TargetStructureID": 7594, + "Label": "39900-7594 via Conventional from 54141 -> 54140", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54141, + "TargetID": 54140, + "Directional": true + } + ] + }, + { + "ID": 14012, + "SourceStructureID": 39909, + "TargetStructureID": 606, + "Label": "39909-606 via Conventional from 39910 -> 39908, 54162 -> 54163", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39910, + "TargetID": 39908, + "Directional": true + }, + { + "SourceID": 54162, + "TargetID": 54163, + "Directional": true + } + ] + }, + { + "ID": 14013, + "SourceStructureID": 39915, + "TargetStructureID": 606, + "Label": "39915-606 via Conventional from 44194 -> 39912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44194, + "TargetID": 39912, + "Directional": true + } + ] + }, + { + "ID": 14014, + "SourceStructureID": 39917, + "TargetStructureID": 606, + "Label": "39917-606 via Conventional from 39919 -> 39916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39919, + "TargetID": 39916, + "Directional": true + } + ] + }, + { + "ID": 14015, + "SourceStructureID": 39922, + "TargetStructureID": 606, + "Label": "39922-606 via Conventional from 51622 -> 51623", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 51622, + "TargetID": 51623, + "Directional": true + } + ] + }, + { + "ID": 14016, + "SourceStructureID": 39931, + "TargetStructureID": 606, + "Label": "39931-606 via Conventional from 44195 -> 39930, 52047 -> 52046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44195, + "TargetID": 39930, + "Directional": true + }, + { + "SourceID": 52047, + "TargetID": 52046, + "Directional": true + } + ] + }, + { + "ID": 14017, + "SourceStructureID": 39939, + "TargetStructureID": 606, + "Label": "39939-606 via Adherens from 52583 -> 52584", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 52583, + "TargetID": 52584, + "Directional": true + } + ] + }, + { + "ID": 14018, + "SourceStructureID": 39939, + "TargetStructureID": 606, + "Label": "39939-606 via Conventional from 44197 -> 39937", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44197, + "TargetID": 39937, + "Directional": true + } + ] + }, + { + "ID": 14019, + "SourceStructureID": 39941, + "TargetStructureID": 606, + "Label": "39941-606 via Conventional from 52621 -> 39940", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52621, + "TargetID": 39940, + "Directional": true + } + ] + }, + { + "ID": 14020, + "SourceStructureID": 39957, + "TargetStructureID": 606, + "Label": "39957-606 via Conventional from 43116 -> 10711, 58552 -> 39960, 58555 -> 44285, 58558 -> 49604", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43116, + "TargetID": 10711, + "Directional": true + }, + { + "SourceID": 58552, + "TargetID": 39960, + "Directional": true + }, + { + "SourceID": 58555, + "TargetID": 44285, + "Directional": true + }, + { + "SourceID": 58558, + "TargetID": 49604, + "Directional": true + } + ] + }, + { + "ID": 14021, + "SourceStructureID": 39957, + "TargetStructureID": 6117, + "Label": "39957-6117 via Conventional from 58437 -> 6966, 58553 -> 20564, 86429 -> 86430, 116719 -> 30909", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58437, + "TargetID": 6966, + "Directional": true + }, + { + "SourceID": 58553, + "TargetID": 20564, + "Directional": true + }, + { + "SourceID": 86429, + "TargetID": 86430, + "Directional": true + }, + { + "SourceID": 116719, + "TargetID": 30909, + "Directional": true + } + ] + }, + { + "ID": 14022, + "SourceStructureID": 39957, + "TargetStructureID": 7594, + "Label": "39957-7594 via Conventional from 58557 -> 7627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58557, + "TargetID": 7627, + "Directional": true + } + ] + }, + { + "ID": 14023, + "SourceStructureID": 39957, + "TargetStructureID": 32258, + "Label": "39957-32258 via Conventional from 58459 -> 58458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58459, + "TargetID": 58458, + "Directional": true + } + ] + }, + { + "ID": 14024, + "SourceStructureID": 39957, + "TargetStructureID": 39862, + "Label": "39957-39862 via Conventional from 58547 -> 52307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58547, + "TargetID": 52307, + "Directional": true + } + ] + }, + { + "ID": 14025, + "SourceStructureID": 39963, + "TargetStructureID": 606, + "Label": "39963-606 via Conventional from 52171 -> 39961", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52171, + "TargetID": 39961, + "Directional": true + } + ] + }, + { + "ID": 14026, + "SourceStructureID": 39963, + "TargetStructureID": 6117, + "Label": "39963-6117 via Conventional from 86264 -> 86265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86264, + "TargetID": 86265, + "Directional": true + } + ] + }, + { + "ID": 14027, + "SourceStructureID": 39982, + "TargetStructureID": 5520, + "Label": "39982-5520 via Conventional from 39985 -> 40134", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39985, + "TargetID": 40134, + "Directional": true + } + ] + }, + { + "ID": 14028, + "SourceStructureID": 39982, + "TargetStructureID": 5923, + "Label": "39982-5923 via Conventional from 39983 -> 39984", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39983, + "TargetID": 39984, + "Directional": true + } + ] + }, + { + "ID": 14029, + "SourceStructureID": 39998, + "TargetStructureID": 342, + "Label": "39998-342 via Conventional from 39999 -> 31715", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 39999, + "TargetID": 31715, + "Directional": true + } + ] + }, + { + "ID": 14030, + "SourceStructureID": 40010, + "TargetStructureID": 60798, + "Label": "40010-60798 via Conventional from 40012 -> 60799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40012, + "TargetID": 60799, + "Directional": true + } + ] + }, + { + "ID": 14031, + "SourceStructureID": 40018, + "TargetStructureID": 5517, + "Label": "40018-5517 via Conventional from 40019 -> 25104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40019, + "TargetID": 25104, + "Directional": true + } + ] + }, + { + "ID": 14032, + "SourceStructureID": 40018, + "TargetStructureID": 10872, + "Label": "40018-10872 via Conventional from 40029 -> 10880", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40029, + "TargetID": 10880, + "Directional": true + } + ] + }, + { + "ID": 14033, + "SourceStructureID": 40018, + "TargetStructureID": 20136, + "Label": "40018-20136 via Conventional from 110223 -> 110224", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110223, + "TargetID": 110224, + "Directional": true + } + ] + }, + { + "ID": 14034, + "SourceStructureID": 40033, + "TargetStructureID": 606, + "Label": "40033-606 via Conventional from 44190 -> 51255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44190, + "TargetID": 51255, + "Directional": true + } + ] + }, + { + "ID": 14035, + "SourceStructureID": 40035, + "TargetStructureID": 606, + "Label": "40035-606 via Conventional from 52175 -> 39498", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52175, + "TargetID": 39498, + "Directional": true + } + ] + }, + { + "ID": 14036, + "SourceStructureID": 40037, + "TargetStructureID": 606, + "Label": "40037-606 via Conventional from 52176 -> 10057, 52177 -> 52178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52176, + "TargetID": 10057, + "Directional": true + }, + { + "SourceID": 52177, + "TargetID": 52178, + "Directional": true + } + ] + }, + { + "ID": 14037, + "SourceStructureID": 40039, + "TargetStructureID": 142, + "Label": "40039-142 via Conventional from 82523 -> 49763", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82523, + "TargetID": 49763, + "Directional": true + } + ] + }, + { + "ID": 14038, + "SourceStructureID": 40039, + "TargetStructureID": 168, + "Label": "40039-168 via Conventional from 82603 -> 82607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82603, + "TargetID": 82607, + "Directional": true + } + ] + }, + { + "ID": 14039, + "SourceStructureID": 40039, + "TargetStructureID": 176, + "Label": "40039-176 via Conventional from 82514 -> 5865", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82514, + "TargetID": 5865, + "Directional": true + } + ] + }, + { + "ID": 14040, + "SourceStructureID": 40039, + "TargetStructureID": 606, + "Label": "40039-606 via Conventional from 44192 -> 39504", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44192, + "TargetID": 39504, + "Directional": true + } + ] + }, + { + "ID": 14041, + "SourceStructureID": 40039, + "TargetStructureID": 5530, + "Label": "40039-5530 via Adherens from 74967 -> 74968", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 74967, + "TargetID": 74968, + "Directional": true + } + ] + }, + { + "ID": 14042, + "SourceStructureID": 40039, + "TargetStructureID": 5530, + "Label": "40039-5530 via Conventional from 74965 -> 74966, 75790 -> 75791, 80202 -> 42112, 80478 -> 80479, 82381 -> 42130", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74965, + "TargetID": 74966, + "Directional": true + }, + { + "SourceID": 75790, + "TargetID": 75791, + "Directional": true + }, + { + "SourceID": 80202, + "TargetID": 42112, + "Directional": true + }, + { + "SourceID": 80478, + "TargetID": 80479, + "Directional": true + }, + { + "SourceID": 82381, + "TargetID": 42130, + "Directional": true + } + ] + }, + { + "ID": 14043, + "SourceStructureID": 40039, + "TargetStructureID": 6117, + "Label": "40039-6117 via Conventional from 82515 -> 30904, 82516 -> 82517, 82518 -> 82519, 82698 -> 82699", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82515, + "TargetID": 30904, + "Directional": true + }, + { + "SourceID": 82516, + "TargetID": 82517, + "Directional": true + }, + { + "SourceID": 82518, + "TargetID": 82519, + "Directional": true + }, + { + "SourceID": 82698, + "TargetID": 82699, + "Directional": true + } + ] + }, + { + "ID": 14044, + "SourceStructureID": 40039, + "TargetStructureID": 80210, + "Label": "40039-80210 via Conventional from 82544 -> 82545", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82544, + "TargetID": 82545, + "Directional": true + } + ] + }, + { + "ID": 14045, + "SourceStructureID": 40039, + "TargetStructureID": 80483, + "Label": "40039-80483 via Unknown from 82646 -> 82647", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 82646, + "TargetID": 82647, + "Directional": true + } + ] + }, + { + "ID": 14046, + "SourceStructureID": 40039, + "TargetStructureID": 80569, + "Label": "40039-80569 via Conventional from 82512 -> 82513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82512, + "TargetID": 82513, + "Directional": true + } + ] + }, + { + "ID": 14047, + "SourceStructureID": 40039, + "TargetStructureID": 82541, + "Label": "40039-82541 via Conventional from 82538 -> 82542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82538, + "TargetID": 82542, + "Directional": true + } + ] + }, + { + "ID": 14048, + "SourceStructureID": 40039, + "TargetStructureID": 82609, + "Label": "40039-82609 via Conventional from 82612 -> 84364", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82612, + "TargetID": 84364, + "Directional": true + } + ] + }, + { + "ID": 14049, + "SourceStructureID": 40039, + "TargetStructureID": 82667, + "Label": "40039-82667 via Conventional from 82670 -> 82671", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82670, + "TargetID": 82671, + "Directional": true + } + ] + }, + { + "ID": 14050, + "SourceStructureID": 40039, + "TargetStructureID": 82690, + "Label": "40039-82690 via Conventional from 68797 -> 82691", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68797, + "TargetID": 82691, + "Directional": true + } + ] + }, + { + "ID": 14051, + "SourceStructureID": 40041, + "TargetStructureID": 606, + "Label": "40041-606 via Conventional from 44193 -> 39505", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44193, + "TargetID": 39505, + "Directional": true + } + ] + }, + { + "ID": 14052, + "SourceStructureID": 40044, + "TargetStructureID": 176, + "Label": "40044-176 via Conventional from 40047 -> 114816, 40048 -> 82539", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40047, + "TargetID": 114816, + "Directional": true + }, + { + "SourceID": 40048, + "TargetID": 82539, + "Directional": true + } + ] + }, + { + "ID": 14053, + "SourceStructureID": 40044, + "TargetStructureID": 606, + "Label": "40044-606 via Conventional from 47784 -> 40042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47784, + "TargetID": 40042, + "Directional": true + } + ] + }, + { + "ID": 14054, + "SourceStructureID": 40044, + "TargetStructureID": 5530, + "Label": "40044-5530 via Conventional from 40049 -> 80414", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40049, + "TargetID": 80414, + "Directional": true + } + ] + }, + { + "ID": 14055, + "SourceStructureID": 40051, + "TargetStructureID": 606, + "Label": "40051-606 via Conventional from 52180 -> 10196", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52180, + "TargetID": 10196, + "Directional": true + } + ] + }, + { + "ID": 14056, + "SourceStructureID": 40053, + "TargetStructureID": 606, + "Label": "40053-606 via Conventional from 44191 -> 10197", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44191, + "TargetID": 10197, + "Directional": true + } + ] + }, + { + "ID": 14057, + "SourceStructureID": 40057, + "TargetStructureID": 606, + "Label": "40057-606 via Conventional from 43113 -> 10199", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43113, + "TargetID": 10199, + "Directional": true + } + ] + }, + { + "ID": 14058, + "SourceStructureID": 40059, + "TargetStructureID": 606, + "Label": "40059-606 via Conventional from 43112 -> 10198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43112, + "TargetID": 10198, + "Directional": true + } + ] + }, + { + "ID": 14059, + "SourceStructureID": 40439, + "TargetStructureID": 170, + "Label": "40439-170 via Conventional from 88372 -> 1198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88372, + "TargetID": 1198, + "Directional": true + } + ] + }, + { + "ID": 14060, + "SourceStructureID": 40469, + "TargetStructureID": 92880, + "Label": "40469-92880 via Conventional from 92886 -> 92885, 92887 -> 92883", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92886, + "TargetID": 92885, + "Directional": true + }, + { + "SourceID": 92887, + "TargetID": 92883, + "Directional": true + } + ] + }, + { + "ID": 14061, + "SourceStructureID": 40598, + "TargetStructureID": 181, + "Label": "40598-181 via Conventional from 40601 -> 40600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40601, + "TargetID": 40600, + "Directional": true + } + ] + }, + { + "ID": 14062, + "SourceStructureID": 40602, + "TargetStructureID": 40604, + "Label": "40602-40604 via Conventional from 40611 -> 40610", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40611, + "TargetID": 40610, + "Directional": true + } + ] + }, + { + "ID": 14063, + "SourceStructureID": 40602, + "TargetStructureID": 86438, + "Label": "40602-86438 via Conventional from 86437 -> 86441", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86437, + "TargetID": 86441, + "Directional": true + } + ] + }, + { + "ID": 14064, + "SourceStructureID": 40606, + "TargetStructureID": 40602, + "Label": "40606-40602 via Conventional from 40608 -> 40607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40608, + "TargetID": 40607, + "Directional": true + } + ] + }, + { + "ID": 14065, + "SourceStructureID": 40612, + "TargetStructureID": 428, + "Label": "40612-428 via Conventional from 40614 -> 40613", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40614, + "TargetID": 40613, + "Directional": true + } + ] + }, + { + "ID": 14066, + "SourceStructureID": 40616, + "TargetStructureID": 40619, + "Label": "40616-40619 via Ribbon Synapse from 40617 -> 40624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 40617, + "TargetID": 40624, + "Directional": true + } + ] + }, + { + "ID": 14067, + "SourceStructureID": 40619, + "TargetStructureID": 40616, + "Label": "40619-40616 via Conventional from 40622 -> 40623", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40622, + "TargetID": 40623, + "Directional": true + } + ] + }, + { + "ID": 14068, + "SourceStructureID": 40625, + "TargetStructureID": 40626, + "Label": "40625-40626 via Conventional from 40628 -> 40627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40628, + "TargetID": 40627, + "Directional": true + } + ] + }, + { + "ID": 14069, + "SourceStructureID": 40629, + "TargetStructureID": 40631, + "Label": "40629-40631 via Conventional from 40632 -> 40633", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40632, + "TargetID": 40633, + "Directional": true + } + ] + }, + { + "ID": 14070, + "SourceStructureID": 40635, + "TargetStructureID": 40637, + "Label": "40635-40637 via Conventional from 40636 -> 40638", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40636, + "TargetID": 40638, + "Directional": true + } + ] + }, + { + "ID": 14071, + "SourceStructureID": 40640, + "TargetStructureID": 40639, + "Label": "40640-40639 via Conventional from 40641 -> 40642", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40641, + "TargetID": 40642, + "Directional": true + } + ] + }, + { + "ID": 14072, + "SourceStructureID": 40643, + "TargetStructureID": 40644, + "Label": "40643-40644 via Conventional from 40645 -> 40646", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40645, + "TargetID": 40646, + "Directional": true + } + ] + }, + { + "ID": 14073, + "SourceStructureID": 40844, + "TargetStructureID": 6117, + "Label": "40844-6117 via Conventional from 40845 -> 10530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40845, + "TargetID": 10530, + "Directional": true + } + ] + }, + { + "ID": 14074, + "SourceStructureID": 40851, + "TargetStructureID": 516, + "Label": "40851-516 via Conventional from 40852 -> 40853, 40854 -> 10847, 40855 -> 6573", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40852, + "TargetID": 40853, + "Directional": true + }, + { + "SourceID": 40854, + "TargetID": 10847, + "Directional": true + }, + { + "SourceID": 40855, + "TargetID": 6573, + "Directional": true + } + ] + }, + { + "ID": 14075, + "SourceStructureID": 40856, + "TargetStructureID": 516, + "Label": "40856-516 via Conventional from 40857 -> 6574", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40857, + "TargetID": 6574, + "Directional": true + } + ] + }, + { + "ID": 14076, + "SourceStructureID": 40858, + "TargetStructureID": 516, + "Label": "40858-516 via Conventional from 40859 -> 40860", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40859, + "TargetID": 40860, + "Directional": true + } + ] + }, + { + "ID": 14077, + "SourceStructureID": 40858, + "TargetStructureID": 3257, + "Label": "40858-3257 via Conventional from 123170 -> 10861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123170, + "TargetID": 10861, + "Directional": true + } + ] + }, + { + "ID": 14078, + "SourceStructureID": 40858, + "TargetStructureID": 4570, + "Label": "40858-4570 via Conventional from 123171 -> 4800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123171, + "TargetID": 4800, + "Directional": true + } + ] + }, + { + "ID": 14079, + "SourceStructureID": 40858, + "TargetStructureID": 6169, + "Label": "40858-6169 via Conventional from 40861 -> 40862", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40861, + "TargetID": 40862, + "Directional": true + } + ] + }, + { + "ID": 14080, + "SourceStructureID": 40880, + "TargetStructureID": 517, + "Label": "40880-517 via Conventional from 40881 -> 40879", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40881, + "TargetID": 40879, + "Directional": true + } + ] + }, + { + "ID": 14081, + "SourceStructureID": 40884, + "TargetStructureID": 517, + "Label": "40884-517 via Conventional from 40885 -> 40886", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40885, + "TargetID": 40886, + "Directional": true + } + ] + }, + { + "ID": 14082, + "SourceStructureID": 40896, + "TargetStructureID": 517, + "Label": "40896-517 via Conventional from 40897 -> 14163, 40898 -> 40899", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40897, + "TargetID": 14163, + "Directional": true + }, + { + "SourceID": 40898, + "TargetID": 40899, + "Directional": true + } + ] + }, + { + "ID": 14083, + "SourceStructureID": 40901, + "TargetStructureID": 517, + "Label": "40901-517 via Conventional from 88838 -> 88839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88838, + "TargetID": 88839, + "Directional": true + } + ] + }, + { + "ID": 14084, + "SourceStructureID": 40903, + "TargetStructureID": 517, + "Label": "40903-517 via Conventional from 40904 -> 40905, 40915 -> 10828", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40904, + "TargetID": 40905, + "Directional": true + }, + { + "SourceID": 40915, + "TargetID": 10828, + "Directional": true + } + ] + }, + { + "ID": 14085, + "SourceStructureID": 40909, + "TargetStructureID": 517, + "Label": "40909-517 via Conventional from 40910 -> 40908", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40910, + "TargetID": 40908, + "Directional": true + } + ] + }, + { + "ID": 14086, + "SourceStructureID": 40911, + "TargetStructureID": 517, + "Label": "40911-517 via Conventional from 40912 -> 40913, 40914 -> 10827, 40916 -> 22541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40912, + "TargetID": 40913, + "Directional": true + }, + { + "SourceID": 40914, + "TargetID": 10827, + "Directional": true + }, + { + "SourceID": 40916, + "TargetID": 22541, + "Directional": true + } + ] + }, + { + "ID": 14087, + "SourceStructureID": 40917, + "TargetStructureID": 517, + "Label": "40917-517 via Conventional from 40918 -> 16412", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40918, + "TargetID": 16412, + "Directional": true + } + ] + }, + { + "ID": 14088, + "SourceStructureID": 40919, + "TargetStructureID": 517, + "Label": "40919-517 via Conventional from 40920 -> 40921, 40924 -> 40923, 40925 -> 40926, 60501 -> 60500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40920, + "TargetID": 40921, + "Directional": true + }, + { + "SourceID": 40924, + "TargetID": 40923, + "Directional": true + }, + { + "SourceID": 40925, + "TargetID": 40926, + "Directional": true + }, + { + "SourceID": 60501, + "TargetID": 60500, + "Directional": true + } + ] + }, + { + "ID": 14089, + "SourceStructureID": 40919, + "TargetStructureID": 6618, + "Label": "40919-6618 via Conventional from 60508 -> 18902, 60509 -> 18903, 60510 -> 60512, 60511 -> 60513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60508, + "TargetID": 18902, + "Directional": true + }, + { + "SourceID": 60509, + "TargetID": 18903, + "Directional": true + }, + { + "SourceID": 60510, + "TargetID": 60512, + "Directional": true + }, + { + "SourceID": 60511, + "TargetID": 60513, + "Directional": true + } + ] + }, + { + "ID": 14090, + "SourceStructureID": 40927, + "TargetStructureID": 517, + "Label": "40927-517 via Conventional from 40928 -> 16424, 64460 -> 64459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40928, + "TargetID": 16424, + "Directional": true + }, + { + "SourceID": 64460, + "TargetID": 64459, + "Directional": true + } + ] + }, + { + "ID": 14091, + "SourceStructureID": 40931, + "TargetStructureID": 517, + "Label": "40931-517 via Conventional from 40932 -> 40933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40932, + "TargetID": 40933, + "Directional": true + } + ] + }, + { + "ID": 14092, + "SourceStructureID": 40934, + "TargetStructureID": 517, + "Label": "40934-517 via Conventional from 40935 -> 14944, 60528 -> 60527", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40935, + "TargetID": 14944, + "Directional": true + }, + { + "SourceID": 60528, + "TargetID": 60527, + "Directional": true + } + ] + }, + { + "ID": 14093, + "SourceStructureID": 40947, + "TargetStructureID": 517, + "Label": "40947-517 via Conventional from 40948 -> 40949", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40948, + "TargetID": 40949, + "Directional": true + } + ] + }, + { + "ID": 14094, + "SourceStructureID": 40951, + "TargetStructureID": 517, + "Label": "40951-517 via Conventional from 40952 -> 40953, 40954 -> 40955, 51423 -> 51424, 60529 -> 60530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40952, + "TargetID": 40953, + "Directional": true + }, + { + "SourceID": 40954, + "TargetID": 40955, + "Directional": true + }, + { + "SourceID": 51423, + "TargetID": 51424, + "Directional": true + }, + { + "SourceID": 60529, + "TargetID": 60530, + "Directional": true + } + ] + }, + { + "ID": 14095, + "SourceStructureID": 40956, + "TargetStructureID": 517, + "Label": "40956-517 via Conventional from 40957 -> 40958, 88847 -> 88848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40957, + "TargetID": 40958, + "Directional": true + }, + { + "SourceID": 88847, + "TargetID": 88848, + "Directional": true + } + ] + }, + { + "ID": 14096, + "SourceStructureID": 40960, + "TargetStructureID": 516, + "Label": "40960-516 via Conventional from 51438 -> 51439", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 51438, + "TargetID": 51439, + "Directional": true + } + ] + }, + { + "ID": 14097, + "SourceStructureID": 40960, + "TargetStructureID": 517, + "Label": "40960-517 via Conventional from 40961 -> 40962", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40961, + "TargetID": 40962, + "Directional": true + } + ] + }, + { + "ID": 14098, + "SourceStructureID": 40960, + "TargetStructureID": 10943, + "Label": "40960-10943 via Conventional from 40963 -> 40964", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40963, + "TargetID": 40964, + "Directional": true + } + ] + }, + { + "ID": 14099, + "SourceStructureID": 40965, + "TargetStructureID": 410, + "Label": "40965-410 via Conventional from 91165 -> 16797", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91165, + "TargetID": 16797, + "Directional": true + } + ] + }, + { + "ID": 14100, + "SourceStructureID": 40965, + "TargetStructureID": 476, + "Label": "40965-476 via Conventional from 91155 -> 16509", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91155, + "TargetID": 16509, + "Directional": true + } + ] + }, + { + "ID": 14101, + "SourceStructureID": 40965, + "TargetStructureID": 517, + "Label": "40965-517 via Conventional from 40966 -> 40967, 40969 -> 40970, 88845 -> 88846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40966, + "TargetID": 40967, + "Directional": true + }, + { + "SourceID": 40969, + "TargetID": 40970, + "Directional": true + }, + { + "SourceID": 88845, + "TargetID": 88846, + "Directional": true + } + ] + }, + { + "ID": 14102, + "SourceStructureID": 40973, + "TargetStructureID": 517, + "Label": "40973-517 via Conventional from 40974 -> 40975", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40974, + "TargetID": 40975, + "Directional": true + } + ] + }, + { + "ID": 14103, + "SourceStructureID": 40973, + "TargetStructureID": 3679, + "Label": "40973-3679 via Conventional from 41057 -> 14920", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41057, + "TargetID": 14920, + "Directional": true + } + ] + }, + { + "ID": 14104, + "SourceStructureID": 40988, + "TargetStructureID": 517, + "Label": "40988-517 via Conventional from 40989 -> 40990", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40989, + "TargetID": 40990, + "Directional": true + } + ] + }, + { + "ID": 14105, + "SourceStructureID": 40991, + "TargetStructureID": 517, + "Label": "40991-517 via Conventional from 40992 -> 40993", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40992, + "TargetID": 40993, + "Directional": true + } + ] + }, + { + "ID": 14106, + "SourceStructureID": 40991, + "TargetStructureID": 593, + "Label": "40991-593 via Conventional from 41001 -> 66033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41001, + "TargetID": 66033, + "Directional": true + } + ] + }, + { + "ID": 14107, + "SourceStructureID": 40991, + "TargetStructureID": 6117, + "Label": "40991-6117 via Conventional from 40998 -> 40999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 40998, + "TargetID": 40999, + "Directional": true + } + ] + }, + { + "ID": 14108, + "SourceStructureID": 41003, + "TargetStructureID": 517, + "Label": "41003-517 via Conventional from 41004 -> 14949", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41004, + "TargetID": 14949, + "Directional": true + } + ] + }, + { + "ID": 14109, + "SourceStructureID": 41003, + "TargetStructureID": 1637, + "Label": "41003-1637 via Conventional from 41007 -> 1659", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41007, + "TargetID": 1659, + "Directional": true + } + ] + }, + { + "ID": 14110, + "SourceStructureID": 41003, + "TargetStructureID": 1724, + "Label": "41003-1724 via Conventional from 41006 -> 100284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41006, + "TargetID": 100284, + "Directional": true + } + ] + }, + { + "ID": 14111, + "SourceStructureID": 41009, + "TargetStructureID": 517, + "Label": "41009-517 via Conventional from 41010 -> 41011", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41010, + "TargetID": 41011, + "Directional": true + } + ] + }, + { + "ID": 14112, + "SourceStructureID": 41031, + "TargetStructureID": 517, + "Label": "41031-517 via Conventional from 41032 -> 41050, 41033 -> 41029, 41051 -> 41050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41032, + "TargetID": 41050, + "Directional": true + }, + { + "SourceID": 41033, + "TargetID": 41029, + "Directional": true + }, + { + "SourceID": 41051, + "TargetID": 41050, + "Directional": true + } + ] + }, + { + "ID": 14113, + "SourceStructureID": 41039, + "TargetStructureID": 517, + "Label": "41039-517 via Conventional from 88849 -> 41047, 88850 -> 41040, 88852 -> 88851, 116700 -> 41045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88849, + "TargetID": 41047, + "Directional": true + }, + { + "SourceID": 88850, + "TargetID": 41040, + "Directional": true + }, + { + "SourceID": 88852, + "TargetID": 88851, + "Directional": true + }, + { + "SourceID": 116700, + "TargetID": 41045, + "Directional": true + } + ] + }, + { + "ID": 14114, + "SourceStructureID": 41042, + "TargetStructureID": 469, + "Label": "41042-469 via Conventional from 91472 -> 15070, 91475 -> 4659, 91477 -> 4661, 91478 -> 4661", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91472, + "TargetID": 15070, + "Directional": true + }, + { + "SourceID": 91475, + "TargetID": 4659, + "Directional": true + }, + { + "SourceID": 91477, + "TargetID": 4661, + "Directional": true + }, + { + "SourceID": 91478, + "TargetID": 4661, + "Directional": true + } + ] + }, + { + "ID": 14115, + "SourceStructureID": 41042, + "TargetStructureID": 517, + "Label": "41042-517 via Conventional from 41043 -> 41041, 41056 -> 41054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41043, + "TargetID": 41041, + "Directional": true + }, + { + "SourceID": 41056, + "TargetID": 41054, + "Directional": true + } + ] + }, + { + "ID": 14116, + "SourceStructureID": 41058, + "TargetStructureID": 514, + "Label": "41058-514 via Conventional from 41061 -> 41062", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41061, + "TargetID": 41062, + "Directional": true + } + ] + }, + { + "ID": 14117, + "SourceStructureID": 41058, + "TargetStructureID": 3679, + "Label": "41058-3679 via Conventional from 41059 -> 41060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41059, + "TargetID": 41060, + "Directional": true + } + ] + }, + { + "ID": 14118, + "SourceStructureID": 41058, + "TargetStructureID": 12897, + "Label": "41058-12897 via Conventional from 41063 -> 41064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41063, + "TargetID": 41064, + "Directional": true + } + ] + }, + { + "ID": 14119, + "SourceStructureID": 41126, + "TargetStructureID": 483, + "Label": "41126-483 via Conventional from 41127 -> 6848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41127, + "TargetID": 6848, + "Directional": true + } + ] + }, + { + "ID": 14120, + "SourceStructureID": 41159, + "TargetStructureID": 41159, + "Label": "41159-41159 via Adherens from 41880 -> 41881", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 41880, + "TargetID": 41881, + "Directional": true + } + ] + }, + { + "ID": 14121, + "SourceStructureID": 41159, + "TargetStructureID": 42586, + "Label": "41159-42586 via Ribbon Synapse from 41936 -> 42708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 41936, + "TargetID": 42708, + "Directional": true + } + ] + }, + { + "ID": 14122, + "SourceStructureID": 41587, + "TargetStructureID": 41583, + "Label": "41587-41583 via Conventional from 43151 -> 43152", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43151, + "TargetID": 43152, + "Directional": true + } + ] + }, + { + "ID": 14123, + "SourceStructureID": 41587, + "TargetStructureID": 90715, + "Label": "41587-90715 via Conventional from 41595 -> 91313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41595, + "TargetID": 91313, + "Directional": true + } + ] + }, + { + "ID": 14124, + "SourceStructureID": 41608, + "TargetStructureID": 6115, + "Label": "41608-6115 via Conventional from 41751 -> 73946, 73254 -> 73255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41751, + "TargetID": 73946, + "Directional": true + }, + { + "SourceID": 73254, + "TargetID": 73255, + "Directional": true + } + ] + }, + { + "ID": 14125, + "SourceStructureID": 41608, + "TargetStructureID": 8575, + "Label": "41608-8575 via Conventional from 79326 -> 62278", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79326, + "TargetID": 62278, + "Directional": true + } + ] + }, + { + "ID": 14126, + "SourceStructureID": 41608, + "TargetStructureID": 15977, + "Label": "41608-15977 via Conventional from 41757 -> 41758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41757, + "TargetID": 41758, + "Directional": true + } + ] + }, + { + "ID": 14127, + "SourceStructureID": 41608, + "TargetStructureID": 66523, + "Label": "41608-66523 via Conventional from 74915 -> 74914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74915, + "TargetID": 74914, + "Directional": true + } + ] + }, + { + "ID": 14128, + "SourceStructureID": 41608, + "TargetStructureID": 68497, + "Label": "41608-68497 via Conventional from 41612 -> 79323, 41613 -> 79356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41612, + "TargetID": 79323, + "Directional": true + }, + { + "SourceID": 41613, + "TargetID": 79356, + "Directional": true + } + ] + }, + { + "ID": 14129, + "SourceStructureID": 41608, + "TargetStructureID": 72287, + "Label": "41608-72287 via Conventional from 41696 -> 72290", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41696, + "TargetID": 72290, + "Directional": true + } + ] + }, + { + "ID": 14130, + "SourceStructureID": 41608, + "TargetStructureID": 72309, + "Label": "41608-72309 via Conventional from 72315 -> 72316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72315, + "TargetID": 72316, + "Directional": true + } + ] + }, + { + "ID": 14131, + "SourceStructureID": 41608, + "TargetStructureID": 82653, + "Label": "41608-82653 via Conventional from 41694 -> 90720", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41694, + "TargetID": 90720, + "Directional": true + } + ] + }, + { + "ID": 14132, + "SourceStructureID": 41882, + "TargetStructureID": 5640, + "Label": "41882-5640 via Conventional from 41884 -> 41110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 41884, + "TargetID": 41110, + "Directional": true + } + ] + }, + { + "ID": 14133, + "SourceStructureID": 41905, + "TargetStructureID": 41891, + "Label": "41905-41891 via Ribbon Synapse from 41906 -> 41895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 41906, + "TargetID": 41895, + "Directional": true + } + ] + }, + { + "ID": 14134, + "SourceStructureID": 42001, + "TargetStructureID": 41999, + "Label": "42001-41999 via Conventional from 42002 -> 42000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42002, + "TargetID": 42000, + "Directional": true + } + ] + }, + { + "ID": 14135, + "SourceStructureID": 42094, + "TargetStructureID": 606, + "Label": "42094-606 via Conventional from 42134 -> 42093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42134, + "TargetID": 42093, + "Directional": true + } + ] + }, + { + "ID": 14136, + "SourceStructureID": 42159, + "TargetStructureID": 606, + "Label": "42159-606 via Conventional from 42160 -> 42158", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42160, + "TargetID": 42158, + "Directional": true + } + ] + }, + { + "ID": 14137, + "SourceStructureID": 42404, + "TargetStructureID": 606, + "Label": "42404-606 via Conventional from 116584 -> 42402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116584, + "TargetID": 42402, + "Directional": true + } + ] + }, + { + "ID": 14138, + "SourceStructureID": 42406, + "TargetStructureID": 606, + "Label": "42406-606 via Conventional from 42407 -> 10201", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42407, + "TargetID": 10201, + "Directional": true + } + ] + }, + { + "ID": 14139, + "SourceStructureID": 42416, + "TargetStructureID": 606, + "Label": "42416-606 via Conventional from 42417 -> 10710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42417, + "TargetID": 10710, + "Directional": true + } + ] + }, + { + "ID": 14140, + "SourceStructureID": 42416, + "TargetStructureID": 6117, + "Label": "42416-6117 via Conventional from 51291 -> 83294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 51291, + "TargetID": 83294, + "Directional": true + } + ] + }, + { + "ID": 14141, + "SourceStructureID": 42416, + "TargetStructureID": 16073, + "Label": "42416-16073 via Conventional from 42515 -> 19866", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42515, + "TargetID": 19866, + "Directional": true + } + ] + }, + { + "ID": 14142, + "SourceStructureID": 42423, + "TargetStructureID": 10960, + "Label": "42423-10960 via Conventional from 42424 -> 42425, 42426 -> 42427, 42428 -> 42429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42424, + "TargetID": 42425, + "Directional": true + }, + { + "SourceID": 42426, + "TargetID": 42427, + "Directional": true + }, + { + "SourceID": 42428, + "TargetID": 42429, + "Directional": true + } + ] + }, + { + "ID": 14143, + "SourceStructureID": 42432, + "TargetStructureID": 10960, + "Label": "42432-10960 via Conventional from 42437 -> 42438, 42439 -> 12475, 42442 -> 42443", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42437, + "TargetID": 42438, + "Directional": true + }, + { + "SourceID": 42439, + "TargetID": 12475, + "Directional": true + }, + { + "SourceID": 42442, + "TargetID": 42443, + "Directional": true + } + ] + }, + { + "ID": 14144, + "SourceStructureID": 42523, + "TargetStructureID": 41159, + "Label": "42523-41159 via Conventional from 42524 -> 42522", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42524, + "TargetID": 42522, + "Directional": true + } + ] + }, + { + "ID": 14145, + "SourceStructureID": 42527, + "TargetStructureID": 1724, + "Label": "42527-1724 via Conventional from 42529 -> 1782", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42529, + "TargetID": 1782, + "Directional": true + } + ] + }, + { + "ID": 14146, + "SourceStructureID": 42615, + "TargetStructureID": 42586, + "Label": "42615-42586 via Conventional from 42616 -> 42614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42616, + "TargetID": 42614, + "Directional": true + } + ] + }, + { + "ID": 14147, + "SourceStructureID": 42711, + "TargetStructureID": 308, + "Label": "42711-308 via Conventional from 42730 -> 31859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42730, + "TargetID": 31859, + "Directional": true + } + ] + }, + { + "ID": 14148, + "SourceStructureID": 42715, + "TargetStructureID": 606, + "Label": "42715-606 via Conventional from 128562 -> 42713", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128562, + "TargetID": 42713, + "Directional": true + } + ] + }, + { + "ID": 14149, + "SourceStructureID": 42770, + "TargetStructureID": 3928, + "Label": "42770-3928 via Conventional from 42774 -> 42775", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42774, + "TargetID": 42775, + "Directional": true + } + ] + }, + { + "ID": 14150, + "SourceStructureID": 42770, + "TargetStructureID": 5538, + "Label": "42770-5538 via Conventional from 42771 -> 24221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42771, + "TargetID": 24221, + "Directional": true + } + ] + }, + { + "ID": 14151, + "SourceStructureID": 42795, + "TargetStructureID": 4943, + "Label": "42795-4943 via Conventional from 43146 -> 8511", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43146, + "TargetID": 8511, + "Directional": true + } + ] + }, + { + "ID": 14152, + "SourceStructureID": 42795, + "TargetStructureID": 137024, + "Label": "42795-137024 via Conventional from 137036 -> 137038", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137036, + "TargetID": 137038, + "Directional": true + } + ] + }, + { + "ID": 14153, + "SourceStructureID": 42816, + "TargetStructureID": 4943, + "Label": "42816-4943 via Conventional from 42817 -> 4953", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42817, + "TargetID": 4953, + "Directional": true + } + ] + }, + { + "ID": 14154, + "SourceStructureID": 42816, + "TargetStructureID": 5596, + "Label": "42816-5596 via Conventional from 42832 -> 42833, 42834 -> 40583", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42832, + "TargetID": 42833, + "Directional": true + }, + { + "SourceID": 42834, + "TargetID": 40583, + "Directional": true + } + ] + }, + { + "ID": 14155, + "SourceStructureID": 42819, + "TargetStructureID": 7114, + "Label": "42819-7114 via Conventional from 42822 -> 42821", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42822, + "TargetID": 42821, + "Directional": true + } + ] + }, + { + "ID": 14156, + "SourceStructureID": 42846, + "TargetStructureID": 4943, + "Label": "42846-4943 via Conventional from 42847 -> 4963", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42847, + "TargetID": 4963, + "Directional": true + } + ] + }, + { + "ID": 14157, + "SourceStructureID": 42846, + "TargetStructureID": 5598, + "Label": "42846-5598 via Conventional from 91504 -> 37914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91504, + "TargetID": 37914, + "Directional": true + } + ] + }, + { + "ID": 14158, + "SourceStructureID": 42846, + "TargetStructureID": 29340, + "Label": "42846-29340 via Conventional from 42853 -> 29370", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42853, + "TargetID": 29370, + "Directional": true + } + ] + }, + { + "ID": 14159, + "SourceStructureID": 42858, + "TargetStructureID": 175, + "Label": "42858-175 via Conventional from 42864 -> 42865", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42864, + "TargetID": 42865, + "Directional": true + } + ] + }, + { + "ID": 14160, + "SourceStructureID": 42858, + "TargetStructureID": 4943, + "Label": "42858-4943 via Conventional from 42859 -> 8508", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42859, + "TargetID": 8508, + "Directional": true + } + ] + }, + { + "ID": 14161, + "SourceStructureID": 42866, + "TargetStructureID": 4943, + "Label": "42866-4943 via Conventional from 42867 -> 4955", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42867, + "TargetID": 4955, + "Directional": true + } + ] + }, + { + "ID": 14162, + "SourceStructureID": 42871, + "TargetStructureID": 4943, + "Label": "42871-4943 via Conventional from 42872 -> 13440", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42872, + "TargetID": 13440, + "Directional": true + } + ] + }, + { + "ID": 14163, + "SourceStructureID": 42873, + "TargetStructureID": 4943, + "Label": "42873-4943 via Conventional from 42874 -> 4952", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42874, + "TargetID": 4952, + "Directional": true + } + ] + }, + { + "ID": 14164, + "SourceStructureID": 42873, + "TargetStructureID": 5596, + "Label": "42873-5596 via Conventional from 42875 -> 122088", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42875, + "TargetID": 122088, + "Directional": true + } + ] + }, + { + "ID": 14165, + "SourceStructureID": 42877, + "TargetStructureID": 4943, + "Label": "42877-4943 via Conventional from 42878 -> 4951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42878, + "TargetID": 4951, + "Directional": true + } + ] + }, + { + "ID": 14166, + "SourceStructureID": 42890, + "TargetStructureID": 4943, + "Label": "42890-4943 via Conventional from 42891 -> 4958", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42891, + "TargetID": 4958, + "Directional": true + } + ] + }, + { + "ID": 14167, + "SourceStructureID": 42890, + "TargetStructureID": 6957, + "Label": "42890-6957 via Conventional from 122050 -> 122051", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122050, + "TargetID": 122051, + "Directional": true + } + ] + }, + { + "ID": 14168, + "SourceStructureID": 42895, + "TargetStructureID": 4943, + "Label": "42895-4943 via Conventional from 42896 -> 4976", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42896, + "TargetID": 4976, + "Directional": true + } + ] + }, + { + "ID": 14169, + "SourceStructureID": 42895, + "TargetStructureID": 42816, + "Label": "42895-42816 via Conventional from 42899 -> 42844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42899, + "TargetID": 42844, + "Directional": true + } + ] + }, + { + "ID": 14170, + "SourceStructureID": 42927, + "TargetStructureID": 4943, + "Label": "42927-4943 via Conventional from 42928 -> 4977", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42928, + "TargetID": 4977, + "Directional": true + } + ] + }, + { + "ID": 14171, + "SourceStructureID": 42948, + "TargetStructureID": 4943, + "Label": "42948-4943 via Conventional from 42949 -> 42947", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42949, + "TargetID": 42947, + "Directional": true + } + ] + }, + { + "ID": 14172, + "SourceStructureID": 42951, + "TargetStructureID": 4943, + "Label": "42951-4943 via Conventional from 42952 -> 42950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42952, + "TargetID": 42950, + "Directional": true + } + ] + }, + { + "ID": 14173, + "SourceStructureID": 42953, + "TargetStructureID": 4943, + "Label": "42953-4943 via Conventional from 42955 -> 42954", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42955, + "TargetID": 42954, + "Directional": true + } + ] + }, + { + "ID": 14174, + "SourceStructureID": 42953, + "TargetStructureID": 20681, + "Label": "42953-20681 via Conventional from 122055 -> 65779", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122055, + "TargetID": 65779, + "Directional": true + } + ] + }, + { + "ID": 14175, + "SourceStructureID": 42957, + "TargetStructureID": 4943, + "Label": "42957-4943 via Conventional from 42958 -> 42956", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42958, + "TargetID": 42956, + "Directional": true + } + ] + }, + { + "ID": 14176, + "SourceStructureID": 42966, + "TargetStructureID": 4943, + "Label": "42966-4943 via Conventional from 42967 -> 42964", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42967, + "TargetID": 42964, + "Directional": true + } + ] + }, + { + "ID": 14177, + "SourceStructureID": 42966, + "TargetStructureID": 122091, + "Label": "42966-122091 via Conventional from 122097 -> 122098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122097, + "TargetID": 122098, + "Directional": true + } + ] + }, + { + "ID": 14178, + "SourceStructureID": 42968, + "TargetStructureID": 4943, + "Label": "42968-4943 via Conventional from 42969 -> 42965", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42969, + "TargetID": 42965, + "Directional": true + } + ] + }, + { + "ID": 14179, + "SourceStructureID": 42971, + "TargetStructureID": 4943, + "Label": "42971-4943 via Conventional from 42972 -> 42970", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42972, + "TargetID": 42970, + "Directional": true + } + ] + }, + { + "ID": 14180, + "SourceStructureID": 42977, + "TargetStructureID": 4943, + "Label": "42977-4943 via Conventional from 42978 -> 42976", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42978, + "TargetID": 42976, + "Directional": true + } + ] + }, + { + "ID": 14181, + "SourceStructureID": 42980, + "TargetStructureID": 4943, + "Label": "42980-4943 via Conventional from 42981 -> 42979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42981, + "TargetID": 42979, + "Directional": true + } + ] + }, + { + "ID": 14182, + "SourceStructureID": 42985, + "TargetStructureID": 4943, + "Label": "42985-4943 via Conventional from 42986 -> 42984", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 42986, + "TargetID": 42984, + "Directional": true + } + ] + }, + { + "ID": 14183, + "SourceStructureID": 43114, + "TargetStructureID": 5281, + "Label": "43114-5281 via Conventional from 43115 -> 36777", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43115, + "TargetID": 36777, + "Directional": true + } + ] + }, + { + "ID": 14184, + "SourceStructureID": 43127, + "TargetStructureID": 5281, + "Label": "43127-5281 via Conventional from 43128 -> 43126", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43128, + "TargetID": 43126, + "Directional": true + } + ] + }, + { + "ID": 14185, + "SourceStructureID": 43130, + "TargetStructureID": 5281, + "Label": "43130-5281 via Conventional from 43131 -> 43129", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43131, + "TargetID": 43129, + "Directional": true + } + ] + }, + { + "ID": 14186, + "SourceStructureID": 43132, + "TargetStructureID": 5281, + "Label": "43132-5281 via Conventional from 43133 -> 36779", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43133, + "TargetID": 36779, + "Directional": true + } + ] + }, + { + "ID": 14187, + "SourceStructureID": 43134, + "TargetStructureID": 5281, + "Label": "43134-5281 via Conventional from 43135 -> 36801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43135, + "TargetID": 36801, + "Directional": true + } + ] + }, + { + "ID": 14188, + "SourceStructureID": 43142, + "TargetStructureID": 4943, + "Label": "43142-4943 via Conventional from 43143 -> 10065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43143, + "TargetID": 10065, + "Directional": true + } + ] + }, + { + "ID": 14189, + "SourceStructureID": 43198, + "TargetStructureID": 4943, + "Label": "43198-4943 via Conventional from 43199 -> 4975", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43199, + "TargetID": 4975, + "Directional": true + } + ] + }, + { + "ID": 14190, + "SourceStructureID": 43201, + "TargetStructureID": 4943, + "Label": "43201-4943 via Conventional from 43202 -> 8536", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43202, + "TargetID": 8536, + "Directional": true + } + ] + }, + { + "ID": 14191, + "SourceStructureID": 43201, + "TargetStructureID": 7346, + "Label": "43201-7346 via Conventional from 122043 -> 122042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122043, + "TargetID": 122042, + "Directional": true + } + ] + }, + { + "ID": 14192, + "SourceStructureID": 43201, + "TargetStructureID": 127972, + "Label": "43201-127972 via Conventional from 127969 -> 127974, 127970 -> 127975", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127969, + "TargetID": 127974, + "Directional": true + }, + { + "SourceID": 127970, + "TargetID": 127975, + "Directional": true + } + ] + }, + { + "ID": 14193, + "SourceStructureID": 43203, + "TargetStructureID": 4943, + "Label": "43203-4943 via Conventional from 43204 -> 4974", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43204, + "TargetID": 4974, + "Directional": true + } + ] + }, + { + "ID": 14194, + "SourceStructureID": 43203, + "TargetStructureID": 5634, + "Label": "43203-5634 via Conventional from 122028 -> 122032", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122028, + "TargetID": 122032, + "Directional": true + } + ] + }, + { + "ID": 14195, + "SourceStructureID": 43203, + "TargetStructureID": 6132, + "Label": "43203-6132 via Conventional from 122033 -> 88414, 122034 -> 122037", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122033, + "TargetID": 88414, + "Directional": true + }, + { + "SourceID": 122034, + "TargetID": 122037, + "Directional": true + } + ] + }, + { + "ID": 14196, + "SourceStructureID": 43205, + "TargetStructureID": 4943, + "Label": "43205-4943 via Conventional from 43206 -> 4972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43206, + "TargetID": 4972, + "Directional": true + } + ] + }, + { + "ID": 14197, + "SourceStructureID": 43205, + "TargetStructureID": 65768, + "Label": "43205-65768 via Conventional from 65767 -> 65769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65767, + "TargetID": 65769, + "Directional": true + } + ] + }, + { + "ID": 14198, + "SourceStructureID": 43207, + "TargetStructureID": 165, + "Label": "43207-165 via Conventional from 43210 -> 12524, 43227 -> 43228, 60745 -> 60746", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43210, + "TargetID": 12524, + "Directional": true + }, + { + "SourceID": 43227, + "TargetID": 43228, + "Directional": true + }, + { + "SourceID": 60745, + "TargetID": 60746, + "Directional": true + } + ] + }, + { + "ID": 14199, + "SourceStructureID": 43207, + "TargetStructureID": 175, + "Label": "43207-175 via Conventional from 43231 -> 43232", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43231, + "TargetID": 43232, + "Directional": true + } + ] + }, + { + "ID": 14200, + "SourceStructureID": 43207, + "TargetStructureID": 478, + "Label": "43207-478 via Conventional from 43234 -> 43235", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43234, + "TargetID": 43235, + "Directional": true + } + ] + }, + { + "ID": 14201, + "SourceStructureID": 43207, + "TargetStructureID": 4943, + "Label": "43207-4943 via Conventional from 43208 -> 13438", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43208, + "TargetID": 13438, + "Directional": true + } + ] + }, + { + "ID": 14202, + "SourceStructureID": 43207, + "TargetStructureID": 5457, + "Label": "43207-5457 via Conventional from 43225 -> 103519", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43225, + "TargetID": 103519, + "Directional": true + } + ] + }, + { + "ID": 14203, + "SourceStructureID": 43207, + "TargetStructureID": 6128, + "Label": "43207-6128 via Conventional from 43217 -> 21046, 43219 -> 43218, 43220 -> 33762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43217, + "TargetID": 21046, + "Directional": true + }, + { + "SourceID": 43219, + "TargetID": 43218, + "Directional": true + }, + { + "SourceID": 43220, + "TargetID": 33762, + "Directional": true + } + ] + }, + { + "ID": 14204, + "SourceStructureID": 43207, + "TargetStructureID": 32359, + "Label": "43207-32359 via Conventional from 43221 -> 41323", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43221, + "TargetID": 41323, + "Directional": true + } + ] + }, + { + "ID": 14205, + "SourceStructureID": 43259, + "TargetStructureID": 4943, + "Label": "43259-4943 via Conventional from 43260 -> 4993", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43260, + "TargetID": 4993, + "Directional": true + } + ] + }, + { + "ID": 14206, + "SourceStructureID": 43261, + "TargetStructureID": 4943, + "Label": "43261-4943 via Conventional from 43263 -> 4965", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43263, + "TargetID": 4965, + "Directional": true + } + ] + }, + { + "ID": 14207, + "SourceStructureID": 43261, + "TargetStructureID": 6046, + "Label": "43261-6046 via Conventional from 122047 -> 122048", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122047, + "TargetID": 122048, + "Directional": true + } + ] + }, + { + "ID": 14208, + "SourceStructureID": 43297, + "TargetStructureID": 42576, + "Label": "43297-42576 via Conventional from 43300 -> 43110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43300, + "TargetID": 43110, + "Directional": true + } + ] + }, + { + "ID": 14209, + "SourceStructureID": 43303, + "TargetStructureID": 42576, + "Label": "43303-42576 via Conventional from 43304 -> 43249", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43304, + "TargetID": 43249, + "Directional": true + } + ] + }, + { + "ID": 14210, + "SourceStructureID": 43327, + "TargetStructureID": 4569, + "Label": "43327-4569 via Conventional from 43328 -> 6297, 43331 -> 52523", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43328, + "TargetID": 6297, + "Directional": true + }, + { + "SourceID": 43331, + "TargetID": 52523, + "Directional": true + } + ] + }, + { + "ID": 14211, + "SourceStructureID": 43327, + "TargetStructureID": 137159, + "Label": "43327-137159 via Conventional from 43330 -> 31352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43330, + "TargetID": 31352, + "Directional": true + } + ] + }, + { + "ID": 14212, + "SourceStructureID": 43334, + "TargetStructureID": 4569, + "Label": "43334-4569 via Conventional from 43335 -> 23782", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43335, + "TargetID": 23782, + "Directional": true + } + ] + }, + { + "ID": 14213, + "SourceStructureID": 43404, + "TargetStructureID": 165, + "Label": "43404-165 via Conventional from 43408 -> 43409", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43408, + "TargetID": 43409, + "Directional": true + } + ] + }, + { + "ID": 14214, + "SourceStructureID": 43404, + "TargetStructureID": 181, + "Label": "43404-181 via Conventional from 43411 -> 20482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43411, + "TargetID": 20482, + "Directional": true + } + ] + }, + { + "ID": 14215, + "SourceStructureID": 43404, + "TargetStructureID": 4568, + "Label": "43404-4568 via Conventional from 43407 -> 11518", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43407, + "TargetID": 11518, + "Directional": true + } + ] + }, + { + "ID": 14216, + "SourceStructureID": 43431, + "TargetStructureID": 519, + "Label": "43431-519 via Conventional from 100171 -> 100172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100171, + "TargetID": 100172, + "Directional": true + } + ] + }, + { + "ID": 14217, + "SourceStructureID": 43431, + "TargetStructureID": 593, + "Label": "43431-593 via Conventional from 84268 -> 84267", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84268, + "TargetID": 84267, + "Directional": true + } + ] + }, + { + "ID": 14218, + "SourceStructureID": 43431, + "TargetStructureID": 3679, + "Label": "43431-3679 via Conventional from 43444 -> 4703", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43444, + "TargetID": 4703, + "Directional": true + } + ] + }, + { + "ID": 14219, + "SourceStructureID": 43431, + "TargetStructureID": 8720, + "Label": "43431-8720 via Conventional from 43440 -> 60076", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43440, + "TargetID": 60076, + "Directional": true + } + ] + }, + { + "ID": 14220, + "SourceStructureID": 43431, + "TargetStructureID": 11031, + "Label": "43431-11031 via Conventional from 43432 -> 25448", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43432, + "TargetID": 25448, + "Directional": true + } + ] + }, + { + "ID": 14221, + "SourceStructureID": 43431, + "TargetStructureID": 54744, + "Label": "43431-54744 via Conventional from 43442 -> 54752, 54758 -> 54757, 100164 -> 54759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43442, + "TargetID": 54752, + "Directional": true + }, + { + "SourceID": 54758, + "TargetID": 54757, + "Directional": true + }, + { + "SourceID": 100164, + "TargetID": 54759, + "Directional": true + } + ] + }, + { + "ID": 14222, + "SourceStructureID": 43445, + "TargetStructureID": 25440, + "Label": "43445-25440 via Conventional from 43446 -> 25458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43446, + "TargetID": 25458, + "Directional": true + } + ] + }, + { + "ID": 14223, + "SourceStructureID": 43482, + "TargetStructureID": 6857, + "Label": "43482-6857 via Conventional from 43483 -> 6878", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43483, + "TargetID": 6878, + "Directional": true + } + ] + }, + { + "ID": 14224, + "SourceStructureID": 43507, + "TargetStructureID": 6997, + "Label": "43507-6997 via Conventional from 43511 -> 22176", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43511, + "TargetID": 22176, + "Directional": true + } + ] + }, + { + "ID": 14225, + "SourceStructureID": 43507, + "TargetStructureID": 8575, + "Label": "43507-8575 via Conventional from 43508 -> 43277, 62146 -> 62145", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43508, + "TargetID": 43277, + "Directional": true + }, + { + "SourceID": 62146, + "TargetID": 62145, + "Directional": true + } + ] + }, + { + "ID": 14226, + "SourceStructureID": 43507, + "TargetStructureID": 11401, + "Label": "43507-11401 via Conventional from 43509 -> 43510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43509, + "TargetID": 43510, + "Directional": true + } + ] + }, + { + "ID": 14227, + "SourceStructureID": 43507, + "TargetStructureID": 88199, + "Label": "43507-88199 via Conventional from 43515 -> 88202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43515, + "TargetID": 88202, + "Directional": true + } + ] + }, + { + "ID": 14228, + "SourceStructureID": 43507, + "TargetStructureID": 136786, + "Label": "43507-136786 via Conventional from 136805 -> 136804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136805, + "TargetID": 136804, + "Directional": true + } + ] + }, + { + "ID": 14229, + "SourceStructureID": 43601, + "TargetStructureID": 179, + "Label": "43601-179 via Conventional from 43602 -> 25312", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43602, + "TargetID": 25312, + "Directional": true + } + ] + }, + { + "ID": 14230, + "SourceStructureID": 43700, + "TargetStructureID": 5107, + "Label": "43700-5107 via Ribbon Synapse from 43702 -> 43701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 43702, + "TargetID": 43701, + "Directional": true + } + ] + }, + { + "ID": 14231, + "SourceStructureID": 43712, + "TargetStructureID": 5107, + "Label": "43712-5107 via Conventional from 43713 -> 43676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43713, + "TargetID": 43676, + "Directional": true + } + ] + }, + { + "ID": 14232, + "SourceStructureID": 43747, + "TargetStructureID": 308, + "Label": "43747-308 via Conventional from 43751 -> 43748", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43751, + "TargetID": 43748, + "Directional": true + } + ] + }, + { + "ID": 14233, + "SourceStructureID": 43770, + "TargetStructureID": 46074, + "Label": "43770-46074 via Conventional from 43779 -> 46086", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 43779, + "TargetID": 46086, + "Directional": true + } + ] + }, + { + "ID": 14234, + "SourceStructureID": 44205, + "TargetStructureID": 606, + "Label": "44205-606 via Conventional from 44206 -> 44204", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44206, + "TargetID": 44204, + "Directional": true + } + ] + }, + { + "ID": 14235, + "SourceStructureID": 44212, + "TargetStructureID": 606, + "Label": "44212-606 via Conventional from 44213 -> 44211", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44213, + "TargetID": 44211, + "Directional": true + } + ] + }, + { + "ID": 14236, + "SourceStructureID": 44222, + "TargetStructureID": 44229, + "Label": "44222-44229 via Conventional from 44227 -> 44231", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44227, + "TargetID": 44231, + "Directional": true + } + ] + }, + { + "ID": 14237, + "SourceStructureID": 44229, + "TargetStructureID": 606, + "Label": "44229-606 via Conventional from 44230 -> 44228", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44230, + "TargetID": 44228, + "Directional": true + } + ] + }, + { + "ID": 14238, + "SourceStructureID": 44237, + "TargetStructureID": 606, + "Label": "44237-606 via Conventional from 44239 -> 44236", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44239, + "TargetID": 44236, + "Directional": true + } + ] + }, + { + "ID": 14239, + "SourceStructureID": 44237, + "TargetStructureID": 5530, + "Label": "44237-5530 via Conventional from 44238 -> 23846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44238, + "TargetID": 23846, + "Directional": true + } + ] + }, + { + "ID": 14240, + "SourceStructureID": 44241, + "TargetStructureID": 606, + "Label": "44241-606 via Conventional from 44242 -> 44240", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44242, + "TargetID": 44240, + "Directional": true + } + ] + }, + { + "ID": 14241, + "SourceStructureID": 44338, + "TargetStructureID": 606, + "Label": "44338-606 via Ribbon Synapse from 44339 -> 44337", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 44339, + "TargetID": 44337, + "Directional": true + } + ] + }, + { + "ID": 14242, + "SourceStructureID": 44893, + "TargetStructureID": 44895, + "Label": "44893-44895 via Conventional from 44894 -> 44897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44894, + "TargetID": 44897, + "Directional": true + } + ] + }, + { + "ID": 14243, + "SourceStructureID": 44895, + "TargetStructureID": 44346, + "Label": "44895-44346 via Conventional from 44896 -> 44351", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44896, + "TargetID": 44351, + "Directional": true + } + ] + }, + { + "ID": 14244, + "SourceStructureID": 44901, + "TargetStructureID": 44346, + "Label": "44901-44346 via Conventional from 44902 -> 44350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44902, + "TargetID": 44350, + "Directional": true + } + ] + }, + { + "ID": 14245, + "SourceStructureID": 44912, + "TargetStructureID": 44346, + "Label": "44912-44346 via Conventional from 44913 -> 44355, 44920 -> 44356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44913, + "TargetID": 44355, + "Directional": true + }, + { + "SourceID": 44920, + "TargetID": 44356, + "Directional": true + } + ] + }, + { + "ID": 14246, + "SourceStructureID": 44965, + "TargetStructureID": 5439, + "Label": "44965-5439 via Conventional from 44999 -> 70650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 44999, + "TargetID": 70650, + "Directional": true + } + ] + }, + { + "ID": 14247, + "SourceStructureID": 45007, + "TargetStructureID": 44346, + "Label": "45007-44346 via Conventional from 45008 -> 44353", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45008, + "TargetID": 44353, + "Directional": true + } + ] + }, + { + "ID": 14248, + "SourceStructureID": 45220, + "TargetStructureID": 16073, + "Label": "45220-16073 via Conventional from 56091 -> 56092", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56091, + "TargetID": 56092, + "Directional": true + } + ] + }, + { + "ID": 14249, + "SourceStructureID": 45220, + "TargetStructureID": 56086, + "Label": "45220-56086 via Conventional from 45226 -> 56090", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45226, + "TargetID": 56090, + "Directional": true + } + ] + }, + { + "ID": 14250, + "SourceStructureID": 45326, + "TargetStructureID": 45336, + "Label": "45326-45336 via Conventional from 45334 -> 45337", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45334, + "TargetID": 45337, + "Directional": true + } + ] + }, + { + "ID": 14251, + "SourceStructureID": 45326, + "TargetStructureID": 56084, + "Label": "45326-56084 via Conventional from 56083 -> 56085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56083, + "TargetID": 56085, + "Directional": true + } + ] + }, + { + "ID": 14252, + "SourceStructureID": 45536, + "TargetStructureID": 9769, + "Label": "45536-9769 via Conventional from 45541 -> 23932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45541, + "TargetID": 23932, + "Directional": true + } + ] + }, + { + "ID": 14253, + "SourceStructureID": 45536, + "TargetStructureID": 68539, + "Label": "45536-68539 via Conventional from 45537 -> 70412", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45537, + "TargetID": 70412, + "Directional": true + } + ] + }, + { + "ID": 14254, + "SourceStructureID": 45551, + "TargetStructureID": 68539, + "Label": "45551-68539 via Conventional from 45553 -> 70276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45553, + "TargetID": 70276, + "Directional": true + } + ] + }, + { + "ID": 14255, + "SourceStructureID": 45555, + "TargetStructureID": 68539, + "Label": "45555-68539 via Conventional from 45556 -> 70279, 45561 -> 70413", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45556, + "TargetID": 70279, + "Directional": true + }, + { + "SourceID": 45561, + "TargetID": 70413, + "Directional": true + } + ] + }, + { + "ID": 14256, + "SourceStructureID": 45568, + "TargetStructureID": 68539, + "Label": "45568-68539 via Conventional from 45569 -> 70280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45569, + "TargetID": 70280, + "Directional": true + } + ] + }, + { + "ID": 14257, + "SourceStructureID": 45571, + "TargetStructureID": 68539, + "Label": "45571-68539 via Conventional from 45572 -> 70281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45572, + "TargetID": 70281, + "Directional": true + } + ] + }, + { + "ID": 14258, + "SourceStructureID": 45617, + "TargetStructureID": 606, + "Label": "45617-606 via Conventional from 52136 -> 52135", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52136, + "TargetID": 52135, + "Directional": true + } + ] + }, + { + "ID": 14259, + "SourceStructureID": 45617, + "TargetStructureID": 31024, + "Label": "45617-31024 via Conventional from 45619 -> 31099", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45619, + "TargetID": 31099, + "Directional": true + } + ] + }, + { + "ID": 14260, + "SourceStructureID": 45617, + "TargetStructureID": 44346, + "Label": "45617-44346 via Conventional from 45626 -> 44381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45626, + "TargetID": 44381, + "Directional": true + } + ] + }, + { + "ID": 14261, + "SourceStructureID": 45629, + "TargetStructureID": 330, + "Label": "45629-330 via Conventional from 45634 -> 25912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45634, + "TargetID": 25912, + "Directional": true + } + ] + }, + { + "ID": 14262, + "SourceStructureID": 45629, + "TargetStructureID": 453, + "Label": "45629-453 via Conventional from 45630 -> 45631, 45632 -> 45633", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45630, + "TargetID": 45631, + "Directional": true + }, + { + "SourceID": 45632, + "TargetID": 45633, + "Directional": true + } + ] + }, + { + "ID": 14263, + "SourceStructureID": 45672, + "TargetStructureID": 579, + "Label": "45672-579 via Conventional from 45673 -> 45674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45673, + "TargetID": 45674, + "Directional": true + } + ] + }, + { + "ID": 14264, + "SourceStructureID": 45672, + "TargetStructureID": 5623, + "Label": "45672-5623 via Conventional from 45676 -> 127729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45676, + "TargetID": 127729, + "Directional": true + } + ] + }, + { + "ID": 14265, + "SourceStructureID": 45677, + "TargetStructureID": 5017, + "Label": "45677-5017 via Conventional from 45678 -> 5038", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45678, + "TargetID": 5038, + "Directional": true + } + ] + }, + { + "ID": 14266, + "SourceStructureID": 45677, + "TargetStructureID": 6997, + "Label": "45677-6997 via Conventional from 82945 -> 82946", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82945, + "TargetID": 82946, + "Directional": true + } + ] + }, + { + "ID": 14267, + "SourceStructureID": 45680, + "TargetStructureID": 5017, + "Label": "45680-5017 via Conventional from 45681 -> 45679", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 45681, + "TargetID": 45679, + "Directional": true + } + ] + }, + { + "ID": 14268, + "SourceStructureID": 45731, + "TargetStructureID": 606, + "Label": "45731-606 via Ribbon Synapse from 45739 -> 45689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45739, + "TargetID": 45689, + "Directional": true + } + ] + }, + { + "ID": 14269, + "SourceStructureID": 45847, + "TargetStructureID": 606, + "Label": "45847-606 via Ribbon Synapse from 45850 -> 45845, 45855 -> 45856", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45850, + "TargetID": 45845, + "Directional": true + }, + { + "SourceID": 45855, + "TargetID": 45856, + "Directional": true + } + ] + }, + { + "ID": 14270, + "SourceStructureID": 45894, + "TargetStructureID": 606, + "Label": "45894-606 via Ribbon Synapse from 45900 -> 45891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 45900, + "TargetID": 45891, + "Directional": true + } + ] + }, + { + "ID": 14271, + "SourceStructureID": 46050, + "TargetStructureID": 308, + "Label": "46050-308 via Conventional from 46051 -> 15045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46051, + "TargetID": 15045, + "Directional": true + } + ] + }, + { + "ID": 14272, + "SourceStructureID": 46052, + "TargetStructureID": 308, + "Label": "46052-308 via Conventional from 46053 -> 15046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46053, + "TargetID": 15046, + "Directional": true + } + ] + }, + { + "ID": 14273, + "SourceStructureID": 46054, + "TargetStructureID": 308, + "Label": "46054-308 via Conventional from 46055 -> 15047", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46055, + "TargetID": 15047, + "Directional": true + } + ] + }, + { + "ID": 14274, + "SourceStructureID": 46054, + "TargetStructureID": 46057, + "Label": "46054-46057 via Conventional from 46056 -> 46058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46056, + "TargetID": 46058, + "Directional": true + } + ] + }, + { + "ID": 14275, + "SourceStructureID": 46059, + "TargetStructureID": 308, + "Label": "46059-308 via Conventional from 46060 -> 15050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46060, + "TargetID": 15050, + "Directional": true + } + ] + }, + { + "ID": 14276, + "SourceStructureID": 46059, + "TargetStructureID": 24303, + "Label": "46059-24303 via Conventional from 107024 -> 122493", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107024, + "TargetID": 122493, + "Directional": true + } + ] + }, + { + "ID": 14277, + "SourceStructureID": 46062, + "TargetStructureID": 15100, + "Label": "46062-15100 via Conventional from 46063 -> 17996, 46065 -> 46064, 46066 -> 46069, 46067 -> 46068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46063, + "TargetID": 17996, + "Directional": true + }, + { + "SourceID": 46065, + "TargetID": 46064, + "Directional": true + }, + { + "SourceID": 46066, + "TargetID": 46069, + "Directional": true + }, + { + "SourceID": 46067, + "TargetID": 46068, + "Directional": true + } + ] + }, + { + "ID": 14278, + "SourceStructureID": 46070, + "TargetStructureID": 308, + "Label": "46070-308 via Conventional from 46071 -> 31862", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46071, + "TargetID": 31862, + "Directional": true + } + ] + }, + { + "ID": 14279, + "SourceStructureID": 46074, + "TargetStructureID": 308, + "Label": "46074-308 via Conventional from 46075 -> 31864", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46075, + "TargetID": 31864, + "Directional": true + } + ] + }, + { + "ID": 14280, + "SourceStructureID": 46074, + "TargetStructureID": 475, + "Label": "46074-475 via Conventional from 46079 -> 46083, 46084 -> 46085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46079, + "TargetID": 46083, + "Directional": true + }, + { + "SourceID": 46084, + "TargetID": 46085, + "Directional": true + } + ] + }, + { + "ID": 14281, + "SourceStructureID": 46090, + "TargetStructureID": 308, + "Label": "46090-308 via Conventional from 46091 -> 31865", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46091, + "TargetID": 31865, + "Directional": true + } + ] + }, + { + "ID": 14282, + "SourceStructureID": 46090, + "TargetStructureID": 382, + "Label": "46090-382 via Conventional from 107032 -> 107033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107032, + "TargetID": 107033, + "Directional": true + } + ] + }, + { + "ID": 14283, + "SourceStructureID": 46093, + "TargetStructureID": 308, + "Label": "46093-308 via Conventional from 46094 -> 31866, 46103 -> 31867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46094, + "TargetID": 31866, + "Directional": true + }, + { + "SourceID": 46103, + "TargetID": 31867, + "Directional": true + } + ] + }, + { + "ID": 14284, + "SourceStructureID": 46093, + "TargetStructureID": 46098, + "Label": "46093-46098 via Conventional from 46097 -> 46099", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46097, + "TargetID": 46099, + "Directional": true + } + ] + }, + { + "ID": 14285, + "SourceStructureID": 46098, + "TargetStructureID": 46093, + "Label": "46098-46093 via Ribbon Synapse from 46101 -> 46096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46101, + "TargetID": 46096, + "Directional": true + } + ] + }, + { + "ID": 14286, + "SourceStructureID": 46105, + "TargetStructureID": 606, + "Label": "46105-606 via Ribbon Synapse from 46238 -> 46104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46238, + "TargetID": 46104, + "Directional": true + } + ] + }, + { + "ID": 14287, + "SourceStructureID": 46107, + "TargetStructureID": 308, + "Label": "46107-308 via Conventional from 46108 -> 31860", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46108, + "TargetID": 31860, + "Directional": true + } + ] + }, + { + "ID": 14288, + "SourceStructureID": 46116, + "TargetStructureID": 308, + "Label": "46116-308 via Conventional from 46117 -> 43385", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46117, + "TargetID": 43385, + "Directional": true + } + ] + }, + { + "ID": 14289, + "SourceStructureID": 46118, + "TargetStructureID": 308, + "Label": "46118-308 via Conventional from 46119 -> 43397", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46119, + "TargetID": 43397, + "Directional": true + } + ] + }, + { + "ID": 14290, + "SourceStructureID": 46121, + "TargetStructureID": 308, + "Label": "46121-308 via Conventional from 46122 -> 43600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46122, + "TargetID": 43600, + "Directional": true + } + ] + }, + { + "ID": 14291, + "SourceStructureID": 46121, + "TargetStructureID": 426, + "Label": "46121-426 via Conventional from 46128 -> 46136", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46128, + "TargetID": 46136, + "Directional": true + } + ] + }, + { + "ID": 14292, + "SourceStructureID": 46121, + "TargetStructureID": 4850, + "Label": "46121-4850 via Conventional from 46170 -> 46178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46170, + "TargetID": 46178, + "Directional": true + } + ] + }, + { + "ID": 14293, + "SourceStructureID": 46121, + "TargetStructureID": 5150, + "Label": "46121-5150 via Conventional from 46124 -> 5180", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46124, + "TargetID": 5180, + "Directional": true + } + ] + }, + { + "ID": 14294, + "SourceStructureID": 46121, + "TargetStructureID": 5639, + "Label": "46121-5639 via Conventional from 46214 -> 46217", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46214, + "TargetID": 46217, + "Directional": true + } + ] + }, + { + "ID": 14295, + "SourceStructureID": 46121, + "TargetStructureID": 7568, + "Label": "46121-7568 via Conventional from 46147 -> 27078", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46147, + "TargetID": 27078, + "Directional": true + } + ] + }, + { + "ID": 14296, + "SourceStructureID": 46121, + "TargetStructureID": 9787, + "Label": "46121-9787 via Conventional from 46150 -> 46151, 46155 -> 46159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46150, + "TargetID": 46151, + "Directional": true + }, + { + "SourceID": 46155, + "TargetID": 46159, + "Directional": true + } + ] + }, + { + "ID": 14297, + "SourceStructureID": 46121, + "TargetStructureID": 28950, + "Label": "46121-28950 via Conventional from 46235 -> 46239", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46235, + "TargetID": 46239, + "Directional": true + } + ] + }, + { + "ID": 14298, + "SourceStructureID": 46121, + "TargetStructureID": 29340, + "Label": "46121-29340 via Conventional from 46241 -> 33844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46241, + "TargetID": 33844, + "Directional": true + } + ] + }, + { + "ID": 14299, + "SourceStructureID": 46121, + "TargetStructureID": 46186, + "Label": "46121-46186 via Conventional from 46181 -> 46187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46181, + "TargetID": 46187, + "Directional": true + } + ] + }, + { + "ID": 14300, + "SourceStructureID": 46347, + "TargetStructureID": 5303, + "Label": "46347-5303 via Conventional from 46349 -> 46348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46349, + "TargetID": 46348, + "Directional": true + } + ] + }, + { + "ID": 14301, + "SourceStructureID": 46351, + "TargetStructureID": 992, + "Label": "46351-992 via Conventional from 46353 -> 29421, 46356 -> 46357", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46353, + "TargetID": 29421, + "Directional": true + }, + { + "SourceID": 46356, + "TargetID": 46357, + "Directional": true + } + ] + }, + { + "ID": 14302, + "SourceStructureID": 46351, + "TargetStructureID": 5303, + "Label": "46351-5303 via Conventional from 46352 -> 46350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46352, + "TargetID": 46350, + "Directional": true + } + ] + }, + { + "ID": 14303, + "SourceStructureID": 46359, + "TargetStructureID": 172, + "Label": "46359-172 via Conventional from 46363 -> 33349, 46367 -> 46368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46363, + "TargetID": 33349, + "Directional": true + }, + { + "SourceID": 46367, + "TargetID": 46368, + "Directional": true + } + ] + }, + { + "ID": 14304, + "SourceStructureID": 46359, + "TargetStructureID": 5303, + "Label": "46359-5303 via Conventional from 46360 -> 6173", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46360, + "TargetID": 6173, + "Directional": true + } + ] + }, + { + "ID": 14305, + "SourceStructureID": 46359, + "TargetStructureID": 46373, + "Label": "46359-46373 via Conventional from 46372 -> 46374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46372, + "TargetID": 46374, + "Directional": true + } + ] + }, + { + "ID": 14306, + "SourceStructureID": 46373, + "TargetStructureID": 46359, + "Label": "46373-46359 via Ribbon Synapse from 46376 -> 46375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46376, + "TargetID": 46375, + "Directional": true + } + ] + }, + { + "ID": 14307, + "SourceStructureID": 46379, + "TargetStructureID": 5303, + "Label": "46379-5303 via Conventional from 46380 -> 30548", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46380, + "TargetID": 30548, + "Directional": true + } + ] + }, + { + "ID": 14308, + "SourceStructureID": 46386, + "TargetStructureID": 5303, + "Label": "46386-5303 via Conventional from 46387 -> 30549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46387, + "TargetID": 30549, + "Directional": true + } + ] + }, + { + "ID": 14309, + "SourceStructureID": 46386, + "TargetStructureID": 46384, + "Label": "46386-46384 via Conventional from 127956 -> 127957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127956, + "TargetID": 127957, + "Directional": true + } + ] + }, + { + "ID": 14310, + "SourceStructureID": 46388, + "TargetStructureID": 606, + "Label": "46388-606 via Ribbon Synapse from 46403 -> 46404, 46603 -> 46606, 46604 -> 46605, 46629 -> 10496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46403, + "TargetID": 46404, + "Directional": true + }, + { + "SourceID": 46603, + "TargetID": 46606, + "Directional": true + }, + { + "SourceID": 46604, + "TargetID": 46605, + "Directional": true + }, + { + "SourceID": 46629, + "TargetID": 10496, + "Directional": true + } + ] + }, + { + "ID": 14311, + "SourceStructureID": 46388, + "TargetStructureID": 40480, + "Label": "46388-40480 via Ribbon Synapse from 121389 -> 59949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121389, + "TargetID": 59949, + "Directional": true + } + ] + }, + { + "ID": 14312, + "SourceStructureID": 46388, + "TargetStructureID": 46589, + "Label": "46388-46589 via Ribbon Synapse from 47176 -> 47177, 47179 -> 47181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47176, + "TargetID": 47177, + "Directional": true + }, + { + "SourceID": 47179, + "TargetID": 47181, + "Directional": true + } + ] + }, + { + "ID": 14313, + "SourceStructureID": 46388, + "TargetStructureID": 127796, + "Label": "46388-127796 via Ribbon Synapse from 127807 -> 127806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127807, + "TargetID": 127806, + "Directional": true + } + ] + }, + { + "ID": 14314, + "SourceStructureID": 46389, + "TargetStructureID": 5303, + "Label": "46389-5303 via Conventional from 46390 -> 35617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46390, + "TargetID": 35617, + "Directional": true + } + ] + }, + { + "ID": 14315, + "SourceStructureID": 46389, + "TargetStructureID": 12099, + "Label": "46389-12099 via Conventional from 46394 -> 12103", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46394, + "TargetID": 12103, + "Directional": true + } + ] + }, + { + "ID": 14316, + "SourceStructureID": 46391, + "TargetStructureID": 5303, + "Label": "46391-5303 via Conventional from 46392 -> 35618", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46392, + "TargetID": 35618, + "Directional": true + } + ] + }, + { + "ID": 14317, + "SourceStructureID": 46391, + "TargetStructureID": 35696, + "Label": "46391-35696 via Conventional from 46433 -> 46432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46433, + "TargetID": 46432, + "Directional": true + } + ] + }, + { + "ID": 14318, + "SourceStructureID": 46443, + "TargetStructureID": 5303, + "Label": "46443-5303 via Conventional from 46444 -> 35619", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46444, + "TargetID": 35619, + "Directional": true + } + ] + }, + { + "ID": 14319, + "SourceStructureID": 46443, + "TargetStructureID": 35696, + "Label": "46443-35696 via Conventional from 46445 -> 46446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46445, + "TargetID": 46446, + "Directional": true + } + ] + }, + { + "ID": 14320, + "SourceStructureID": 46449, + "TargetStructureID": 138, + "Label": "46449-138 via Conventional from 46457 -> 46458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46457, + "TargetID": 46458, + "Directional": true + } + ] + }, + { + "ID": 14321, + "SourceStructureID": 46449, + "TargetStructureID": 173, + "Label": "46449-173 via Conventional from 46452 -> 46454, 60792 -> 60791", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46452, + "TargetID": 46454, + "Directional": true + }, + { + "SourceID": 60792, + "TargetID": 60791, + "Directional": true + } + ] + }, + { + "ID": 14322, + "SourceStructureID": 46449, + "TargetStructureID": 5303, + "Label": "46449-5303 via Conventional from 46450 -> 35620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46450, + "TargetID": 35620, + "Directional": true + } + ] + }, + { + "ID": 14323, + "SourceStructureID": 46449, + "TargetStructureID": 6136, + "Label": "46449-6136 via Conventional from 60773 -> 12999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60773, + "TargetID": 12999, + "Directional": true + } + ] + }, + { + "ID": 14324, + "SourceStructureID": 46461, + "TargetStructureID": 5303, + "Label": "46461-5303 via Conventional from 46462 -> 35621", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46462, + "TargetID": 35621, + "Directional": true + } + ] + }, + { + "ID": 14325, + "SourceStructureID": 46468, + "TargetStructureID": 5303, + "Label": "46468-5303 via Conventional from 46469 -> 35622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46469, + "TargetID": 35622, + "Directional": true + } + ] + }, + { + "ID": 14326, + "SourceStructureID": 46468, + "TargetStructureID": 7112, + "Label": "46468-7112 via Conventional from 46472 -> 121999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46472, + "TargetID": 121999, + "Directional": true + } + ] + }, + { + "ID": 14327, + "SourceStructureID": 46468, + "TargetStructureID": 102116, + "Label": "46468-102116 via Conventional from 122013 -> 102119", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122013, + "TargetID": 102119, + "Directional": true + } + ] + }, + { + "ID": 14328, + "SourceStructureID": 46498, + "TargetStructureID": 138, + "Label": "46498-138 via Conventional from 127911 -> 2199", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127911, + "TargetID": 2199, + "Directional": true + } + ] + }, + { + "ID": 14329, + "SourceStructureID": 46498, + "TargetStructureID": 992, + "Label": "46498-992 via Conventional from 127912 -> 127913, 127916 -> 127918", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127912, + "TargetID": 127913, + "Directional": true + }, + { + "SourceID": 127916, + "TargetID": 127918, + "Directional": true + } + ] + }, + { + "ID": 14330, + "SourceStructureID": 46498, + "TargetStructureID": 5303, + "Label": "46498-5303 via Conventional from 46499 -> 46500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46499, + "TargetID": 46500, + "Directional": true + } + ] + }, + { + "ID": 14331, + "SourceStructureID": 46502, + "TargetStructureID": 181, + "Label": "46502-181 via Conventional from 127924 -> 20485", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127924, + "TargetID": 20485, + "Directional": true + } + ] + }, + { + "ID": 14332, + "SourceStructureID": 46502, + "TargetStructureID": 5303, + "Label": "46502-5303 via Conventional from 46503 -> 46501", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46503, + "TargetID": 46501, + "Directional": true + } + ] + }, + { + "ID": 14333, + "SourceStructureID": 46502, + "TargetStructureID": 127930, + "Label": "46502-127930 via Conventional from 127928 -> 127932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127928, + "TargetID": 127932, + "Directional": true + } + ] + }, + { + "ID": 14334, + "SourceStructureID": 46504, + "TargetStructureID": 5303, + "Label": "46504-5303 via Conventional from 46505 -> 35730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46505, + "TargetID": 35730, + "Directional": true + } + ] + }, + { + "ID": 14335, + "SourceStructureID": 46504, + "TargetStructureID": 46508, + "Label": "46504-46508 via Conventional from 46507 -> 46509", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46507, + "TargetID": 46509, + "Directional": true + } + ] + }, + { + "ID": 14336, + "SourceStructureID": 46504, + "TargetStructureID": 46512, + "Label": "46504-46512 via Conventional from 46510 -> 46513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46510, + "TargetID": 46513, + "Directional": true + } + ] + }, + { + "ID": 14337, + "SourceStructureID": 46512, + "TargetStructureID": 46504, + "Label": "46512-46504 via Ribbon Synapse from 60738 -> 46511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60738, + "TargetID": 46511, + "Directional": true + } + ] + }, + { + "ID": 14338, + "SourceStructureID": 46514, + "TargetStructureID": 5303, + "Label": "46514-5303 via Conventional from 46515 -> 35731", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46515, + "TargetID": 35731, + "Directional": true + } + ] + }, + { + "ID": 14339, + "SourceStructureID": 46514, + "TargetStructureID": 127940, + "Label": "46514-127940 via Conventional from 127937 -> 127942", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127937, + "TargetID": 127942, + "Directional": true + } + ] + }, + { + "ID": 14340, + "SourceStructureID": 46517, + "TargetStructureID": 175, + "Label": "46517-175 via Conventional from 46519 -> 46520", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46519, + "TargetID": 46520, + "Directional": true + } + ] + }, + { + "ID": 14341, + "SourceStructureID": 46517, + "TargetStructureID": 5303, + "Label": "46517-5303 via Conventional from 46518 -> 46516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46518, + "TargetID": 46516, + "Directional": true + } + ] + }, + { + "ID": 14342, + "SourceStructureID": 46521, + "TargetStructureID": 5303, + "Label": "46521-5303 via Conventional from 46522 -> 35732", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46522, + "TargetID": 35732, + "Directional": true + } + ] + }, + { + "ID": 14343, + "SourceStructureID": 46521, + "TargetStructureID": 46527, + "Label": "46521-46527 via Conventional from 46525 -> 46529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46525, + "TargetID": 46529, + "Directional": true + } + ] + }, + { + "ID": 14344, + "SourceStructureID": 46527, + "TargetStructureID": 46521, + "Label": "46527-46521 via Ribbon Synapse from 46528 -> 46526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46528, + "TargetID": 46526, + "Directional": true + } + ] + }, + { + "ID": 14345, + "SourceStructureID": 46530, + "TargetStructureID": 5303, + "Label": "46530-5303 via Conventional from 46531 -> 35614, 46535 -> 46536", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46531, + "TargetID": 35614, + "Directional": true + }, + { + "SourceID": 46535, + "TargetID": 46536, + "Directional": true + } + ] + }, + { + "ID": 14346, + "SourceStructureID": 46530, + "TargetStructureID": 6048, + "Label": "46530-6048 via Conventional from 46534 -> 127967", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46534, + "TargetID": 127967, + "Directional": true + } + ] + }, + { + "ID": 14347, + "SourceStructureID": 46530, + "TargetStructureID": 29340, + "Label": "46530-29340 via Conventional from 46538 -> 29390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46538, + "TargetID": 29390, + "Directional": true + } + ] + }, + { + "ID": 14348, + "SourceStructureID": 46670, + "TargetStructureID": 591, + "Label": "46670-591 via Conventional from 46671 -> 10280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46671, + "TargetID": 10280, + "Directional": true + } + ] + }, + { + "ID": 14349, + "SourceStructureID": 46679, + "TargetStructureID": 591, + "Label": "46679-591 via Conventional from 46680 -> 10281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46680, + "TargetID": 10281, + "Directional": true + } + ] + }, + { + "ID": 14350, + "SourceStructureID": 46682, + "TargetStructureID": 591, + "Label": "46682-591 via Conventional from 46683 -> 10282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46683, + "TargetID": 10282, + "Directional": true + } + ] + }, + { + "ID": 14351, + "SourceStructureID": 46682, + "TargetStructureID": 20537, + "Label": "46682-20537 via Conventional from 106522 -> 24143", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106522, + "TargetID": 24143, + "Directional": true + } + ] + }, + { + "ID": 14352, + "SourceStructureID": 46682, + "TargetStructureID": 93125, + "Label": "46682-93125 via Conventional from 106515 -> 93142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106515, + "TargetID": 93142, + "Directional": true + } + ] + }, + { + "ID": 14353, + "SourceStructureID": 46693, + "TargetStructureID": 591, + "Label": "46693-591 via Conventional from 46694 -> 10285", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46694, + "TargetID": 10285, + "Directional": true + } + ] + }, + { + "ID": 14354, + "SourceStructureID": 46693, + "TargetStructureID": 106528, + "Label": "46693-106528 via Conventional from 106527 -> 106529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106527, + "TargetID": 106529, + "Directional": true + } + ] + }, + { + "ID": 14355, + "SourceStructureID": 46741, + "TargetStructureID": 6128, + "Label": "46741-6128 via Postsynapse from 137065 -> 137064", + "Type": "Postsynapse", + "Directional": true, + "Links": [ + { + "SourceID": 137065, + "TargetID": 137064, + "Directional": true + } + ] + }, + { + "ID": 14356, + "SourceStructureID": 46797, + "TargetStructureID": 9769, + "Label": "46797-9769 via Conventional from 46799 -> 46795, 46800 -> 46796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46799, + "TargetID": 46795, + "Directional": true + }, + { + "SourceID": 46800, + "TargetID": 46796, + "Directional": true + } + ] + }, + { + "ID": 14357, + "SourceStructureID": 46804, + "TargetStructureID": 9769, + "Label": "46804-9769 via Conventional from 46805 -> 46803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46805, + "TargetID": 46803, + "Directional": true + } + ] + }, + { + "ID": 14358, + "SourceStructureID": 46807, + "TargetStructureID": 9769, + "Label": "46807-9769 via Conventional from 46809 -> 46806", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46809, + "TargetID": 46806, + "Directional": true + } + ] + }, + { + "ID": 14359, + "SourceStructureID": 46812, + "TargetStructureID": 9769, + "Label": "46812-9769 via Conventional from 46813 -> 30067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46813, + "TargetID": 30067, + "Directional": true + } + ] + }, + { + "ID": 14360, + "SourceStructureID": 46817, + "TargetStructureID": 9769, + "Label": "46817-9769 via Conventional from 46818 -> 23696, 46960 -> 23697", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46818, + "TargetID": 23696, + "Directional": true + }, + { + "SourceID": 46960, + "TargetID": 23697, + "Directional": true + } + ] + }, + { + "ID": 14361, + "SourceStructureID": 46817, + "TargetStructureID": 20728, + "Label": "46817-20728 via Conventional from 46819 -> 46820", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46819, + "TargetID": 46820, + "Directional": true + } + ] + }, + { + "ID": 14362, + "SourceStructureID": 46842, + "TargetStructureID": 9769, + "Label": "46842-9769 via Conventional from 46843 -> 46841", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46843, + "TargetID": 46841, + "Directional": true + } + ] + }, + { + "ID": 14363, + "SourceStructureID": 46923, + "TargetStructureID": 9769, + "Label": "46923-9769 via Conventional from 46924 -> 30066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46924, + "TargetID": 30066, + "Directional": true + } + ] + }, + { + "ID": 14364, + "SourceStructureID": 46931, + "TargetStructureID": 1620, + "Label": "46931-1620 via Conventional from 46932 -> 1624", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46932, + "TargetID": 1624, + "Directional": true + } + ] + }, + { + "ID": 14365, + "SourceStructureID": 46933, + "TargetStructureID": 1620, + "Label": "46933-1620 via Conventional from 46934 -> 1630", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46934, + "TargetID": 1630, + "Directional": true + } + ] + }, + { + "ID": 14366, + "SourceStructureID": 46933, + "TargetStructureID": 69537, + "Label": "46933-69537 via Conventional from 93841 -> 69579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93841, + "TargetID": 69579, + "Directional": true + } + ] + }, + { + "ID": 14367, + "SourceStructureID": 46943, + "TargetStructureID": 46933, + "Label": "46943-46933 via Ribbon Synapse from 46944 -> 46941, 46945 -> 46942", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 46944, + "TargetID": 46941, + "Directional": true + }, + { + "SourceID": 46945, + "TargetID": 46942, + "Directional": true + } + ] + }, + { + "ID": 14368, + "SourceStructureID": 46955, + "TargetStructureID": 9769, + "Label": "46955-9769 via Conventional from 46956 -> 23695", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46956, + "TargetID": 23695, + "Directional": true + } + ] + }, + { + "ID": 14369, + "SourceStructureID": 46957, + "TargetStructureID": 9769, + "Label": "46957-9769 via Conventional from 46958 -> 30068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46958, + "TargetID": 30068, + "Directional": true + } + ] + }, + { + "ID": 14370, + "SourceStructureID": 46962, + "TargetStructureID": 9769, + "Label": "46962-9769 via Conventional from 46963 -> 46961", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46963, + "TargetID": 46961, + "Directional": true + } + ] + }, + { + "ID": 14371, + "SourceStructureID": 46975, + "TargetStructureID": 9769, + "Label": "46975-9769 via Conventional from 46976 -> 12339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46976, + "TargetID": 12339, + "Directional": true + } + ] + }, + { + "ID": 14372, + "SourceStructureID": 46979, + "TargetStructureID": 9769, + "Label": "46979-9769 via Conventional from 46980 -> 45324", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46980, + "TargetID": 45324, + "Directional": true + } + ] + }, + { + "ID": 14373, + "SourceStructureID": 46979, + "TargetStructureID": 62500, + "Label": "46979-62500 via Conventional from 46981 -> 62521", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46981, + "TargetID": 62521, + "Directional": true + } + ] + }, + { + "ID": 14374, + "SourceStructureID": 46982, + "TargetStructureID": 9769, + "Label": "46982-9769 via Conventional from 46983 -> 12328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46983, + "TargetID": 12328, + "Directional": true + } + ] + }, + { + "ID": 14375, + "SourceStructureID": 46984, + "TargetStructureID": 9769, + "Label": "46984-9769 via Conventional from 46985 -> 30071", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46985, + "TargetID": 30071, + "Directional": true + } + ] + }, + { + "ID": 14376, + "SourceStructureID": 46988, + "TargetStructureID": 9769, + "Label": "46988-9769 via Conventional from 46989 -> 30070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46989, + "TargetID": 30070, + "Directional": true + } + ] + }, + { + "ID": 14377, + "SourceStructureID": 46994, + "TargetStructureID": 9769, + "Label": "46994-9769 via Conventional from 46995 -> 30069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46995, + "TargetID": 30069, + "Directional": true + } + ] + }, + { + "ID": 14378, + "SourceStructureID": 46998, + "TargetStructureID": 9769, + "Label": "46998-9769 via Conventional from 46999 -> 12354", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 46999, + "TargetID": 12354, + "Directional": true + } + ] + }, + { + "ID": 14379, + "SourceStructureID": 47002, + "TargetStructureID": 46998, + "Label": "47002-46998 via Conventional from 47003 -> 47000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47003, + "TargetID": 47000, + "Directional": true + } + ] + }, + { + "ID": 14380, + "SourceStructureID": 47004, + "TargetStructureID": 9769, + "Label": "47004-9769 via Conventional from 47005 -> 12355", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47005, + "TargetID": 12355, + "Directional": true + } + ] + }, + { + "ID": 14381, + "SourceStructureID": 47007, + "TargetStructureID": 47004, + "Label": "47007-47004 via Conventional from 47008 -> 47006", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47008, + "TargetID": 47006, + "Directional": true + } + ] + }, + { + "ID": 14382, + "SourceStructureID": 47010, + "TargetStructureID": 9769, + "Label": "47010-9769 via Conventional from 47011 -> 47009", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47011, + "TargetID": 47009, + "Directional": true + } + ] + }, + { + "ID": 14383, + "SourceStructureID": 47010, + "TargetStructureID": 47013, + "Label": "47010-47013 via Conventional from 47012 -> 47016", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47012, + "TargetID": 47016, + "Directional": true + } + ] + }, + { + "ID": 14384, + "SourceStructureID": 47104, + "TargetStructureID": 142, + "Label": "47104-142 via Conventional from 47137 -> 47141, 47149 -> 47150, 47151 -> 47152", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47137, + "TargetID": 47141, + "Directional": true + }, + { + "SourceID": 47149, + "TargetID": 47150, + "Directional": true + }, + { + "SourceID": 47151, + "TargetID": 47152, + "Directional": true + } + ] + }, + { + "ID": 14385, + "SourceStructureID": 47104, + "TargetStructureID": 299, + "Label": "47104-299 via Conventional from 47106 -> 47107", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47106, + "TargetID": 47107, + "Directional": true + } + ] + }, + { + "ID": 14386, + "SourceStructureID": 47104, + "TargetStructureID": 307, + "Label": "47104-307 via Conventional from 47122 -> 16781", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47122, + "TargetID": 16781, + "Directional": true + } + ] + }, + { + "ID": 14387, + "SourceStructureID": 47104, + "TargetStructureID": 408, + "Label": "47104-408 via Conventional from 47117 -> 47118", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47117, + "TargetID": 47118, + "Directional": true + } + ] + }, + { + "ID": 14388, + "SourceStructureID": 47104, + "TargetStructureID": 485, + "Label": "47104-485 via Conventional from 47123 -> 47124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47123, + "TargetID": 47124, + "Directional": true + } + ] + }, + { + "ID": 14389, + "SourceStructureID": 47104, + "TargetStructureID": 1724, + "Label": "47104-1724 via Conventional from 47131 -> 3992, 47133 -> 1775", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47131, + "TargetID": 3992, + "Directional": true + }, + { + "SourceID": 47133, + "TargetID": 1775, + "Directional": true + } + ] + }, + { + "ID": 14390, + "SourceStructureID": 47104, + "TargetStructureID": 5279, + "Label": "47104-5279 via Conventional from 47136 -> 11481, 47145 -> 47144, 147284 -> 147283", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47136, + "TargetID": 11481, + "Directional": true + }, + { + "SourceID": 47145, + "TargetID": 47144, + "Directional": true + }, + { + "SourceID": 147284, + "TargetID": 147283, + "Directional": true + } + ] + }, + { + "ID": 14391, + "SourceStructureID": 47104, + "TargetStructureID": 5601, + "Label": "47104-5601 via Conventional from 47175 -> 47174", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47175, + "TargetID": 47174, + "Directional": true + } + ] + }, + { + "ID": 14392, + "SourceStructureID": 47104, + "TargetStructureID": 6047, + "Label": "47104-6047 via Conventional from 47184 -> 30636, 47187 -> 30633, 47188 -> 30631, 47189 -> 47190", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47184, + "TargetID": 30636, + "Directional": true + }, + { + "SourceID": 47187, + "TargetID": 30633, + "Directional": true + }, + { + "SourceID": 47188, + "TargetID": 30631, + "Directional": true + }, + { + "SourceID": 47189, + "TargetID": 47190, + "Directional": true + } + ] + }, + { + "ID": 14393, + "SourceStructureID": 47104, + "TargetStructureID": 6050, + "Label": "47104-6050 via Conventional from 47153 -> 47154, 47156 -> 30952, 47168 -> 30623, 47170 -> 30625", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47153, + "TargetID": 47154, + "Directional": true + }, + { + "SourceID": 47156, + "TargetID": 30952, + "Directional": true + }, + { + "SourceID": 47168, + "TargetID": 30623, + "Directional": true + }, + { + "SourceID": 47170, + "TargetID": 30625, + "Directional": true + } + ] + }, + { + "ID": 14394, + "SourceStructureID": 47104, + "TargetStructureID": 6155, + "Label": "47104-6155 via Conventional from 47127 -> 15512, 107745 -> 107746, 108267 -> 49082", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47127, + "TargetID": 15512, + "Directional": true + }, + { + "SourceID": 107745, + "TargetID": 107746, + "Directional": true + }, + { + "SourceID": 108267, + "TargetID": 49082, + "Directional": true + } + ] + }, + { + "ID": 14395, + "SourceStructureID": 47104, + "TargetStructureID": 11033, + "Label": "47104-11033 via Conventional from 47171 -> 47172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47171, + "TargetID": 47172, + "Directional": true + } + ] + }, + { + "ID": 14396, + "SourceStructureID": 47104, + "TargetStructureID": 35894, + "Label": "47104-35894 via Conventional from 47121 -> 35896", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47121, + "TargetID": 35896, + "Directional": true + } + ] + }, + { + "ID": 14397, + "SourceStructureID": 47104, + "TargetStructureID": 85002, + "Label": "47104-85002 via Conventional from 126303 -> 126302", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126303, + "TargetID": 126302, + "Directional": true + } + ] + }, + { + "ID": 14398, + "SourceStructureID": 47109, + "TargetStructureID": 299, + "Label": "47109-299 via Conventional from 47112 -> 47113", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47112, + "TargetID": 47113, + "Directional": true + } + ] + }, + { + "ID": 14399, + "SourceStructureID": 47109, + "TargetStructureID": 47104, + "Label": "47109-47104 via Conventional from 47110 -> 47108", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47110, + "TargetID": 47108, + "Directional": true + } + ] + }, + { + "ID": 14400, + "SourceStructureID": 47195, + "TargetStructureID": 61270, + "Label": "47195-61270 via Ribbon Synapse from 61311 -> 61310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61311, + "TargetID": 61310, + "Directional": true + } + ] + }, + { + "ID": 14401, + "SourceStructureID": 47204, + "TargetStructureID": 223, + "Label": "47204-223 via Conventional from 47205 -> 47203", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47205, + "TargetID": 47203, + "Directional": true + } + ] + }, + { + "ID": 14402, + "SourceStructureID": 47445, + "TargetStructureID": 606, + "Label": "47445-606 via Ribbon Synapse from 47446 -> 47447, 47455 -> 47456, 47458 -> 47460, 47459 -> 47461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47446, + "TargetID": 47447, + "Directional": true + }, + { + "SourceID": 47455, + "TargetID": 47456, + "Directional": true + }, + { + "SourceID": 47458, + "TargetID": 47460, + "Directional": true + }, + { + "SourceID": 47459, + "TargetID": 47461, + "Directional": true + } + ] + }, + { + "ID": 14403, + "SourceStructureID": 47445, + "TargetStructureID": 7594, + "Label": "47445-7594 via Ribbon Synapse from 47455 -> 47457", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 47455, + "TargetID": 47457, + "Directional": true + } + ] + }, + { + "ID": 14404, + "SourceStructureID": 47445, + "TargetStructureID": 55232, + "Label": "47445-55232 via Ribbon Synapse from 118182 -> 55396", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 118182, + "TargetID": 55396, + "Directional": true + } + ] + }, + { + "ID": 14405, + "SourceStructureID": 47445, + "TargetStructureID": 87413, + "Label": "47445-87413 via Ribbon Synapse from 87415 -> 87414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87415, + "TargetID": 87414, + "Directional": true + } + ] + }, + { + "ID": 14406, + "SourceStructureID": 47593, + "TargetStructureID": 606, + "Label": "47593-606 via Conventional from 47594 -> 47595", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47594, + "TargetID": 47595, + "Directional": true + } + ] + }, + { + "ID": 14407, + "SourceStructureID": 47833, + "TargetStructureID": 606, + "Label": "47833-606 via Conventional from 47834 -> 47832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 47834, + "TargetID": 47832, + "Directional": true + } + ] + }, + { + "ID": 14408, + "SourceStructureID": 48455, + "TargetStructureID": 121946, + "Label": "48455-121946 via Conventional from 48459 -> 121950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 48459, + "TargetID": 121950, + "Directional": true + } + ] + }, + { + "ID": 14409, + "SourceStructureID": 48516, + "TargetStructureID": 606, + "Label": "48516-606 via Ribbon Synapse from 48518 -> 48520, 48519 -> 48521, 51642 -> 51643, 51669 -> 51670, 51688 -> 51689, 51695 -> 51696", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48518, + "TargetID": 48520, + "Directional": true + }, + { + "SourceID": 48519, + "TargetID": 48521, + "Directional": true + }, + { + "SourceID": 51642, + "TargetID": 51643, + "Directional": true + }, + { + "SourceID": 51669, + "TargetID": 51670, + "Directional": true + }, + { + "SourceID": 51688, + "TargetID": 51689, + "Directional": true + }, + { + "SourceID": 51695, + "TargetID": 51696, + "Directional": true + } + ] + }, + { + "ID": 14410, + "SourceStructureID": 48516, + "TargetStructureID": 89577, + "Label": "48516-89577 via BC Conventional Synapse from 48559 -> 89579", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 48559, + "TargetID": 89579, + "Directional": true + } + ] + }, + { + "ID": 14411, + "SourceStructureID": 48573, + "TargetStructureID": 909, + "Label": "48573-909 via Conventional from 48608 -> 45934", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 48608, + "TargetID": 45934, + "Directional": true + } + ] + }, + { + "ID": 14412, + "SourceStructureID": 48573, + "TargetStructureID": 1724, + "Label": "48573-1724 via Conventional from 99533 -> 4058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99533, + "TargetID": 4058, + "Directional": true + } + ] + }, + { + "ID": 14413, + "SourceStructureID": 48573, + "TargetStructureID": 5561, + "Label": "48573-5561 via Conventional from 48600 -> 46304, 48607 -> 46296", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 48600, + "TargetID": 46304, + "Directional": true + }, + { + "SourceID": 48607, + "TargetID": 46296, + "Directional": true + } + ] + }, + { + "ID": 14414, + "SourceStructureID": 48573, + "TargetStructureID": 7024, + "Label": "48573-7024 via Conventional from 48610 -> 48609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 48610, + "TargetID": 48609, + "Directional": true + } + ] + }, + { + "ID": 14415, + "SourceStructureID": 48612, + "TargetStructureID": 372, + "Label": "48612-372 via Conventional from 48623 -> 30786, 48627 -> 46917", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 48623, + "TargetID": 30786, + "Directional": true + }, + { + "SourceID": 48627, + "TargetID": 46917, + "Directional": true + } + ] + }, + { + "ID": 14416, + "SourceStructureID": 48612, + "TargetStructureID": 1724, + "Label": "48612-1724 via Conventional from 48616 -> 1810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 48616, + "TargetID": 1810, + "Directional": true + } + ] + }, + { + "ID": 14417, + "SourceStructureID": 48612, + "TargetStructureID": 6155, + "Label": "48612-6155 via Conventional from 48618 -> 16136, 104903 -> 104902", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 48618, + "TargetID": 16136, + "Directional": true + }, + { + "SourceID": 104903, + "TargetID": 104902, + "Directional": true + } + ] + }, + { + "ID": 14418, + "SourceStructureID": 48612, + "TargetStructureID": 23512, + "Label": "48612-23512 via Conventional from 48615 -> 23545", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 48615, + "TargetID": 23545, + "Directional": true + } + ] + }, + { + "ID": 14419, + "SourceStructureID": 48612, + "TargetStructureID": 48612, + "Label": "48612-48612 via Conventional from 48619 -> 48620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 48619, + "TargetID": 48620, + "Directional": true + } + ] + }, + { + "ID": 14420, + "SourceStructureID": 49186, + "TargetStructureID": 49185, + "Label": "49186-49185 via Ribbon Synapse from 49187 -> 49188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49187, + "TargetID": 49188, + "Directional": true + } + ] + }, + { + "ID": 14421, + "SourceStructureID": 49487, + "TargetStructureID": 518, + "Label": "49487-518 via Conventional from 49488 -> 49486", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 49488, + "TargetID": 49486, + "Directional": true + } + ] + }, + { + "ID": 14422, + "SourceStructureID": 49489, + "TargetStructureID": 483, + "Label": "49489-483 via Conventional from 116702 -> 6783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116702, + "TargetID": 6783, + "Directional": true + } + ] + }, + { + "ID": 14423, + "SourceStructureID": 49489, + "TargetStructureID": 485, + "Label": "49489-485 via Conventional from 49520 -> 47626, 49522 -> 148422, 49523 -> 49527, 49528 -> 49530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 49520, + "TargetID": 47626, + "Directional": true + }, + { + "SourceID": 49522, + "TargetID": 148422, + "Directional": true + }, + { + "SourceID": 49523, + "TargetID": 49527, + "Directional": true + }, + { + "SourceID": 49528, + "TargetID": 49530, + "Directional": true + } + ] + }, + { + "ID": 14424, + "SourceStructureID": 49489, + "TargetStructureID": 593, + "Label": "49489-593 via Conventional from 49596 -> 49599, 61950 -> 61949", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 49596, + "TargetID": 49599, + "Directional": true + }, + { + "SourceID": 61950, + "TargetID": 61949, + "Directional": true + } + ] + }, + { + "ID": 14425, + "SourceStructureID": 49489, + "TargetStructureID": 70095, + "Label": "49489-70095 via Conventional from 49533 -> 70096", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 49533, + "TargetID": 70096, + "Directional": true + } + ] + }, + { + "ID": 14426, + "SourceStructureID": 49554, + "TargetStructureID": 606, + "Label": "49554-606 via Ribbon Synapse from 49555 -> 5079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 49555, + "TargetID": 5079, + "Directional": true + } + ] + }, + { + "ID": 14427, + "SourceStructureID": 49600, + "TargetStructureID": 517, + "Label": "49600-517 via Conventional from 49602 -> 16440", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 49602, + "TargetID": 16440, + "Directional": true + } + ] + }, + { + "ID": 14428, + "SourceStructureID": 49600, + "TargetStructureID": 6156, + "Label": "49600-6156 via Conventional from 49603 -> 23263", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 49603, + "TargetID": 23263, + "Directional": true + } + ] + }, + { + "ID": 14429, + "SourceStructureID": 49600, + "TargetStructureID": 49489, + "Label": "49600-49489 via Conventional from 49601 -> 49595", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 49601, + "TargetID": 49595, + "Directional": true + } + ] + }, + { + "ID": 14430, + "SourceStructureID": 50449, + "TargetStructureID": 4890, + "Label": "50449-4890 via Ribbon Synapse from 50652 -> 64878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50652, + "TargetID": 64878, + "Directional": true + } + ] + }, + { + "ID": 14431, + "SourceStructureID": 50449, + "TargetStructureID": 62190, + "Label": "50449-62190 via Ribbon Synapse from 50559 -> 62192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 50559, + "TargetID": 62192, + "Directional": true + } + ] + }, + { + "ID": 14432, + "SourceStructureID": 51617, + "TargetStructureID": 142, + "Label": "51617-142 via Conventional from 82436 -> 126007", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82436, + "TargetID": 126007, + "Directional": true + } + ] + }, + { + "ID": 14433, + "SourceStructureID": 51617, + "TargetStructureID": 168, + "Label": "51617-168 via Conventional from 115460 -> 4322, 115461 -> 4265, 115467 -> 4296, 115469 -> 92777", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115460, + "TargetID": 4322, + "Directional": true + }, + { + "SourceID": 115461, + "TargetID": 4265, + "Directional": true + }, + { + "SourceID": 115467, + "TargetID": 4296, + "Directional": true + }, + { + "SourceID": 115469, + "TargetID": 92777, + "Directional": true + } + ] + }, + { + "ID": 14434, + "SourceStructureID": 51617, + "TargetStructureID": 170, + "Label": "51617-170 via Conventional from 89853 -> 89854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89853, + "TargetID": 89854, + "Directional": true + } + ] + }, + { + "ID": 14435, + "SourceStructureID": 51667, + "TargetStructureID": 6050, + "Label": "51667-6050 via Conventional from 127223 -> 127224", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127223, + "TargetID": 127224, + "Directional": true + } + ] + }, + { + "ID": 14436, + "SourceStructureID": 51700, + "TargetStructureID": 5513, + "Label": "51700-5513 via Conventional from 51701 -> 29626", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 51701, + "TargetID": 29626, + "Directional": true + } + ] + }, + { + "ID": 14437, + "SourceStructureID": 51711, + "TargetStructureID": 606, + "Label": "51711-606 via Ribbon Synapse from 51712 -> 51713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51712, + "TargetID": 51713, + "Directional": true + } + ] + }, + { + "ID": 14438, + "SourceStructureID": 51715, + "TargetStructureID": 606, + "Label": "51715-606 via Ribbon Synapse from 51716 -> 51717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 51716, + "TargetID": 51717, + "Directional": true + } + ] + }, + { + "ID": 14439, + "SourceStructureID": 51715, + "TargetStructureID": 5117, + "Label": "51715-5117 via Ribbon Synapse from 52079 -> 28827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52079, + "TargetID": 28827, + "Directional": true + } + ] + }, + { + "ID": 14440, + "SourceStructureID": 51808, + "TargetStructureID": 21299, + "Label": "51808-21299 via Conventional from 51810 -> 48985", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 51810, + "TargetID": 48985, + "Directional": true + } + ] + }, + { + "ID": 14441, + "SourceStructureID": 51808, + "TargetStructureID": 51812, + "Label": "51808-51812 via Conventional from 51811 -> 51814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 51811, + "TargetID": 51814, + "Directional": true + } + ] + }, + { + "ID": 14442, + "SourceStructureID": 51812, + "TargetStructureID": 170, + "Label": "51812-170 via Conventional from 88545 -> 88543", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88545, + "TargetID": 88543, + "Directional": true + } + ] + }, + { + "ID": 14443, + "SourceStructureID": 51812, + "TargetStructureID": 88666, + "Label": "51812-88666 via Conventional from 82454 -> 88719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82454, + "TargetID": 88719, + "Directional": true + } + ] + }, + { + "ID": 14444, + "SourceStructureID": 51923, + "TargetStructureID": 89670, + "Label": "51923-89670 via Conventional from 51930 -> 89675", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 51930, + "TargetID": 89675, + "Directional": true + } + ] + }, + { + "ID": 14445, + "SourceStructureID": 52147, + "TargetStructureID": 5118, + "Label": "52147-5118 via Conventional from 52148 -> 6526", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52148, + "TargetID": 6526, + "Directional": true + } + ] + }, + { + "ID": 14446, + "SourceStructureID": 52152, + "TargetStructureID": 7861, + "Label": "52152-7861 via Ribbon Synapse from 52155 -> 29644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52155, + "TargetID": 29644, + "Directional": true + } + ] + }, + { + "ID": 14447, + "SourceStructureID": 52247, + "TargetStructureID": 597, + "Label": "52247-597 via Ribbon Synapse from 60468 -> 60469", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60468, + "TargetID": 60469, + "Directional": true + } + ] + }, + { + "ID": 14448, + "SourceStructureID": 52247, + "TargetStructureID": 6857, + "Label": "52247-6857 via Ribbon Synapse from 52248 -> 35033, 52251 -> 7533, 52252 -> 52246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52248, + "TargetID": 35033, + "Directional": true + }, + { + "SourceID": 52251, + "TargetID": 7533, + "Directional": true + }, + { + "SourceID": 52252, + "TargetID": 52246, + "Directional": true + } + ] + }, + { + "ID": 14449, + "SourceStructureID": 52257, + "TargetStructureID": 8032, + "Label": "52257-8032 via Ribbon Synapse from 52318 -> 52319, 52323 -> 26677", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52318, + "TargetID": 52319, + "Directional": true + }, + { + "SourceID": 52323, + "TargetID": 26677, + "Directional": true + } + ] + }, + { + "ID": 14450, + "SourceStructureID": 52257, + "TargetStructureID": 9769, + "Label": "52257-9769 via Ribbon Synapse from 52327 -> 30172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 52327, + "TargetID": 30172, + "Directional": true + } + ] + }, + { + "ID": 14451, + "SourceStructureID": 52257, + "TargetStructureID": 119241, + "Label": "52257-119241 via Ribbon Synapse from 119246 -> 119247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119246, + "TargetID": 119247, + "Directional": true + } + ] + }, + { + "ID": 14452, + "SourceStructureID": 52262, + "TargetStructureID": 6118, + "Label": "52262-6118 via Conventional from 52270 -> 52271", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52270, + "TargetID": 52271, + "Directional": true + } + ] + }, + { + "ID": 14453, + "SourceStructureID": 52262, + "TargetStructureID": 6146, + "Label": "52262-6146 via Conventional from 52264 -> 52265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52264, + "TargetID": 52265, + "Directional": true + } + ] + }, + { + "ID": 14454, + "SourceStructureID": 52262, + "TargetStructureID": 6158, + "Label": "52262-6158 via Conventional from 52286 -> 52287", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52286, + "TargetID": 52287, + "Directional": true + } + ] + }, + { + "ID": 14455, + "SourceStructureID": 52262, + "TargetStructureID": 52257, + "Label": "52262-52257 via Conventional from 52263 -> 52261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52263, + "TargetID": 52261, + "Directional": true + } + ] + }, + { + "ID": 14456, + "SourceStructureID": 52410, + "TargetStructureID": 5503, + "Label": "52410-5503 via Conventional from 52436 -> 52440", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52436, + "TargetID": 52440, + "Directional": true + } + ] + }, + { + "ID": 14457, + "SourceStructureID": 52410, + "TargetStructureID": 6118, + "Label": "52410-6118 via Conventional from 52434 -> 65853", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52434, + "TargetID": 65853, + "Directional": true + } + ] + }, + { + "ID": 14458, + "SourceStructureID": 52410, + "TargetStructureID": 6120, + "Label": "52410-6120 via Conventional from 52412 -> 52413, 52415 -> 37242, 52417 -> 52418, 52423 -> 52424, 52429 -> 52430", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52412, + "TargetID": 52413, + "Directional": true + }, + { + "SourceID": 52415, + "TargetID": 37242, + "Directional": true + }, + { + "SourceID": 52417, + "TargetID": 52418, + "Directional": true + }, + { + "SourceID": 52423, + "TargetID": 52424, + "Directional": true + }, + { + "SourceID": 52429, + "TargetID": 52430, + "Directional": true + } + ] + }, + { + "ID": 14459, + "SourceStructureID": 52410, + "TargetStructureID": 6141, + "Label": "52410-6141 via Conventional from 52422 -> 6472", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52422, + "TargetID": 6472, + "Directional": true + } + ] + }, + { + "ID": 14460, + "SourceStructureID": 52410, + "TargetStructureID": 8040, + "Label": "52410-8040 via Conventional from 52561 -> 48631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52561, + "TargetID": 48631, + "Directional": true + } + ] + }, + { + "ID": 14461, + "SourceStructureID": 52929, + "TargetStructureID": 9769, + "Label": "52929-9769 via Conventional from 52930 -> 52926", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52930, + "TargetID": 52926, + "Directional": true + } + ] + }, + { + "ID": 14462, + "SourceStructureID": 52932, + "TargetStructureID": 9769, + "Label": "52932-9769 via Conventional from 52933 -> 52928", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52933, + "TargetID": 52928, + "Directional": true + } + ] + }, + { + "ID": 14463, + "SourceStructureID": 52955, + "TargetStructureID": 9769, + "Label": "52955-9769 via Conventional from 52956 -> 52957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52956, + "TargetID": 52957, + "Directional": true + } + ] + }, + { + "ID": 14464, + "SourceStructureID": 52960, + "TargetStructureID": 9769, + "Label": "52960-9769 via Conventional from 52962 -> 52959", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52962, + "TargetID": 52959, + "Directional": true + } + ] + }, + { + "ID": 14465, + "SourceStructureID": 52991, + "TargetStructureID": 9769, + "Label": "52991-9769 via Conventional from 52992 -> 52990", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52992, + "TargetID": 52990, + "Directional": true + } + ] + }, + { + "ID": 14466, + "SourceStructureID": 53000, + "TargetStructureID": 5598, + "Label": "53000-5598 via Conventional from 53123 -> 53124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53123, + "TargetID": 53124, + "Directional": true + } + ] + }, + { + "ID": 14467, + "SourceStructureID": 53127, + "TargetStructureID": 5107, + "Label": "53127-5107 via Conventional from 53128 -> 53132", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53128, + "TargetID": 53132, + "Directional": true + } + ] + }, + { + "ID": 14468, + "SourceStructureID": 53127, + "TargetStructureID": 9769, + "Label": "53127-9769 via Conventional from 53130 -> 29959", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53130, + "TargetID": 29959, + "Directional": true + } + ] + }, + { + "ID": 14469, + "SourceStructureID": 53166, + "TargetStructureID": 9769, + "Label": "53166-9769 via Conventional from 53167 -> 29956", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53167, + "TargetID": 29956, + "Directional": true + } + ] + }, + { + "ID": 14470, + "SourceStructureID": 53169, + "TargetStructureID": 9769, + "Label": "53169-9769 via Conventional from 53170 -> 29953, 53175 -> 29952", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53170, + "TargetID": 29953, + "Directional": true + }, + { + "SourceID": 53175, + "TargetID": 29952, + "Directional": true + } + ] + }, + { + "ID": 14471, + "SourceStructureID": 53173, + "TargetStructureID": 9769, + "Label": "53173-9769 via Conventional from 53174 -> 29940", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53174, + "TargetID": 29940, + "Directional": true + } + ] + }, + { + "ID": 14472, + "SourceStructureID": 53178, + "TargetStructureID": 9769, + "Label": "53178-9769 via Conventional from 53179 -> 45191", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53179, + "TargetID": 45191, + "Directional": true + } + ] + }, + { + "ID": 14473, + "SourceStructureID": 53180, + "TargetStructureID": 9769, + "Label": "53180-9769 via Conventional from 53181 -> 29939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53181, + "TargetID": 29939, + "Directional": true + } + ] + }, + { + "ID": 14474, + "SourceStructureID": 53182, + "TargetStructureID": 1021, + "Label": "53182-1021 via Conventional from 53184 -> 53185", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53184, + "TargetID": 53185, + "Directional": true + } + ] + }, + { + "ID": 14475, + "SourceStructureID": 53182, + "TargetStructureID": 3756, + "Label": "53182-3756 via Conventional from 116088 -> 116089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116088, + "TargetID": 116089, + "Directional": true + } + ] + }, + { + "ID": 14476, + "SourceStructureID": 53182, + "TargetStructureID": 5650, + "Label": "53182-5650 via Conventional from 105159 -> 105160", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105159, + "TargetID": 105160, + "Directional": true + } + ] + }, + { + "ID": 14477, + "SourceStructureID": 53186, + "TargetStructureID": 9769, + "Label": "53186-9769 via Conventional from 53187 -> 29934", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53187, + "TargetID": 29934, + "Directional": true + } + ] + }, + { + "ID": 14478, + "SourceStructureID": 53195, + "TargetStructureID": 9769, + "Label": "53195-9769 via Conventional from 53198 -> 20261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53198, + "TargetID": 20261, + "Directional": true + } + ] + }, + { + "ID": 14479, + "SourceStructureID": 53202, + "TargetStructureID": 32892, + "Label": "53202-32892 via Conventional from 53210 -> 53211", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53210, + "TargetID": 53211, + "Directional": true + } + ] + }, + { + "ID": 14480, + "SourceStructureID": 53224, + "TargetStructureID": 5562, + "Label": "53224-5562 via Conventional from 77548 -> 77547", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77548, + "TargetID": 77547, + "Directional": true + } + ] + }, + { + "ID": 14481, + "SourceStructureID": 53232, + "TargetStructureID": 5561, + "Label": "53232-5561 via Conventional from 53233 -> 119284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53233, + "TargetID": 119284, + "Directional": true + } + ] + }, + { + "ID": 14482, + "SourceStructureID": 53235, + "TargetStructureID": 9769, + "Label": "53235-9769 via Conventional from 53236 -> 20255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53236, + "TargetID": 20255, + "Directional": true + } + ] + }, + { + "ID": 14483, + "SourceStructureID": 53241, + "TargetStructureID": 9769, + "Label": "53241-9769 via Conventional from 53242 -> 20251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53242, + "TargetID": 20251, + "Directional": true + } + ] + }, + { + "ID": 14484, + "SourceStructureID": 53243, + "TargetStructureID": 9769, + "Label": "53243-9769 via Conventional from 53244 -> 20250", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53244, + "TargetID": 20250, + "Directional": true + } + ] + }, + { + "ID": 14485, + "SourceStructureID": 53245, + "TargetStructureID": 7024, + "Label": "53245-7024 via Conventional from 53249 -> 20247", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53249, + "TargetID": 20247, + "Directional": true + } + ] + }, + { + "ID": 14486, + "SourceStructureID": 53250, + "TargetStructureID": 9769, + "Label": "53250-9769 via Conventional from 53251 -> 20236", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53251, + "TargetID": 20236, + "Directional": true + } + ] + }, + { + "ID": 14487, + "SourceStructureID": 53252, + "TargetStructureID": 9769, + "Label": "53252-9769 via Conventional from 53256 -> 20233", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53256, + "TargetID": 20233, + "Directional": true + } + ] + }, + { + "ID": 14488, + "SourceStructureID": 53257, + "TargetStructureID": 9769, + "Label": "53257-9769 via Conventional from 53258 -> 20226", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53258, + "TargetID": 20226, + "Directional": true + } + ] + }, + { + "ID": 14489, + "SourceStructureID": 53259, + "TargetStructureID": 9769, + "Label": "53259-9769 via Conventional from 53260 -> 20225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53260, + "TargetID": 20225, + "Directional": true + } + ] + }, + { + "ID": 14490, + "SourceStructureID": 53263, + "TargetStructureID": 9769, + "Label": "53263-9769 via Conventional from 53265 -> 20227", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53265, + "TargetID": 20227, + "Directional": true + } + ] + }, + { + "ID": 14491, + "SourceStructureID": 53324, + "TargetStructureID": 9769, + "Label": "53324-9769 via Conventional from 53326 -> 53328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53326, + "TargetID": 53328, + "Directional": true + } + ] + }, + { + "ID": 14492, + "SourceStructureID": 53330, + "TargetStructureID": 9769, + "Label": "53330-9769 via Conventional from 53331 -> 53329", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53331, + "TargetID": 53329, + "Directional": true + } + ] + }, + { + "ID": 14493, + "SourceStructureID": 53335, + "TargetStructureID": 9769, + "Label": "53335-9769 via Conventional from 53336 -> 53337", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53336, + "TargetID": 53337, + "Directional": true + } + ] + }, + { + "ID": 14494, + "SourceStructureID": 53344, + "TargetStructureID": 5345, + "Label": "53344-5345 via Conventional from 53350 -> 53349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53350, + "TargetID": 53349, + "Directional": true + } + ] + }, + { + "ID": 14495, + "SourceStructureID": 53344, + "TargetStructureID": 5517, + "Label": "53344-5517 via Conventional from 53351 -> 53352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53351, + "TargetID": 53352, + "Directional": true + } + ] + }, + { + "ID": 14496, + "SourceStructureID": 53344, + "TargetStructureID": 53335, + "Label": "53344-53335 via Conventional from 53353 -> 53338", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53353, + "TargetID": 53338, + "Directional": true + } + ] + }, + { + "ID": 14497, + "SourceStructureID": 53355, + "TargetStructureID": 9769, + "Label": "53355-9769 via Conventional from 53356 -> 20304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53356, + "TargetID": 20304, + "Directional": true + } + ] + }, + { + "ID": 14498, + "SourceStructureID": 53374, + "TargetStructureID": 598, + "Label": "53374-598 via Conventional from 53378 -> 38534", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53378, + "TargetID": 38534, + "Directional": true + } + ] + }, + { + "ID": 14499, + "SourceStructureID": 53374, + "TargetStructureID": 9769, + "Label": "53374-9769 via Conventional from 53375 -> 11258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53375, + "TargetID": 11258, + "Directional": true + } + ] + }, + { + "ID": 14500, + "SourceStructureID": 53393, + "TargetStructureID": 9769, + "Label": "53393-9769 via Conventional from 53394 -> 53392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53394, + "TargetID": 53392, + "Directional": true + } + ] + }, + { + "ID": 14501, + "SourceStructureID": 53395, + "TargetStructureID": 9769, + "Label": "53395-9769 via Conventional from 53396 -> 11254", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53396, + "TargetID": 11254, + "Directional": true + } + ] + }, + { + "ID": 14502, + "SourceStructureID": 53403, + "TargetStructureID": 9769, + "Label": "53403-9769 via Conventional from 53404 -> 45116", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53404, + "TargetID": 45116, + "Directional": true + } + ] + }, + { + "ID": 14503, + "SourceStructureID": 53407, + "TargetStructureID": 909, + "Label": "53407-909 via Conventional from 117271 -> 117268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117271, + "TargetID": 117268, + "Directional": true + } + ] + }, + { + "ID": 14504, + "SourceStructureID": 53407, + "TargetStructureID": 5650, + "Label": "53407-5650 via Conventional from 53411 -> 50554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53411, + "TargetID": 50554, + "Directional": true + } + ] + }, + { + "ID": 14505, + "SourceStructureID": 53416, + "TargetStructureID": 5292, + "Label": "53416-5292 via Conventional from 53418 -> 49832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53418, + "TargetID": 49832, + "Directional": true + } + ] + }, + { + "ID": 14506, + "SourceStructureID": 53421, + "TargetStructureID": 5284, + "Label": "53421-5284 via Conventional from 53426 -> 113596", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53426, + "TargetID": 113596, + "Directional": true + } + ] + }, + { + "ID": 14507, + "SourceStructureID": 53421, + "TargetStructureID": 9769, + "Label": "53421-9769 via Conventional from 53422 -> 30124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53422, + "TargetID": 30124, + "Directional": true + } + ] + }, + { + "ID": 14508, + "SourceStructureID": 53439, + "TargetStructureID": 9769, + "Label": "53439-9769 via Conventional from 53440 -> 30141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53440, + "TargetID": 30141, + "Directional": true + } + ] + }, + { + "ID": 14509, + "SourceStructureID": 53441, + "TargetStructureID": 9769, + "Label": "53441-9769 via Conventional from 53442 -> 30142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53442, + "TargetID": 30142, + "Directional": true + } + ] + }, + { + "ID": 14510, + "SourceStructureID": 53443, + "TargetStructureID": 5303, + "Label": "53443-5303 via Conventional from 53446 -> 35592", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53446, + "TargetID": 35592, + "Directional": true + } + ] + }, + { + "ID": 14511, + "SourceStructureID": 53443, + "TargetStructureID": 5650, + "Label": "53443-5650 via Conventional from 53445 -> 30153", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53445, + "TargetID": 30153, + "Directional": true + } + ] + }, + { + "ID": 14512, + "SourceStructureID": 53447, + "TargetStructureID": 7134, + "Label": "53447-7134 via Conventional from 53449 -> 53499", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53449, + "TargetID": 53499, + "Directional": true + } + ] + }, + { + "ID": 14513, + "SourceStructureID": 53447, + "TargetStructureID": 9769, + "Label": "53447-9769 via Conventional from 53448 -> 30161, 53452 -> 30162", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 53448, + "TargetID": 30161, + "Directional": true + }, + { + "SourceID": 53452, + "TargetID": 30162, + "Directional": true + } + ] + }, + { + "ID": 14514, + "SourceStructureID": 53768, + "TargetStructureID": 606, + "Label": "53768-606 via Ribbon Synapse from 53769 -> 53770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53769, + "TargetID": 53770, + "Directional": true + } + ] + }, + { + "ID": 14515, + "SourceStructureID": 53778, + "TargetStructureID": 606, + "Label": "53778-606 via Ribbon Synapse from 53779 -> 53780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53779, + "TargetID": 53780, + "Directional": true + } + ] + }, + { + "ID": 14516, + "SourceStructureID": 53828, + "TargetStructureID": 606, + "Label": "53828-606 via Ribbon Synapse from 53829 -> 5091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53829, + "TargetID": 5091, + "Directional": true + } + ] + }, + { + "ID": 14517, + "SourceStructureID": 53872, + "TargetStructureID": 606, + "Label": "53872-606 via Ribbon Synapse from 53873 -> 5106, 159427 -> 159426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 53873, + "TargetID": 5106, + "Directional": true + }, + { + "SourceID": 159427, + "TargetID": 159426, + "Directional": true + } + ] + }, + { + "ID": 14518, + "SourceStructureID": 54006, + "TargetStructureID": 6117, + "Label": "54006-6117 via Conventional from 83277 -> 83278", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83277, + "TargetID": 83278, + "Directional": true + } + ] + }, + { + "ID": 14519, + "SourceStructureID": 54006, + "TargetStructureID": 20136, + "Label": "54006-20136 via Conventional from 109046 -> 109033, 109058 -> 109059", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109046, + "TargetID": 109033, + "Directional": true + }, + { + "SourceID": 109058, + "TargetID": 109059, + "Directional": true + } + ] + }, + { + "ID": 14520, + "SourceStructureID": 54074, + "TargetStructureID": 9769, + "Label": "54074-9769 via Conventional from 54075 -> 11266", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54075, + "TargetID": 11266, + "Directional": true + } + ] + }, + { + "ID": 14521, + "SourceStructureID": 54078, + "TargetStructureID": 606, + "Label": "54078-606 via Conventional from 54083 -> 51333", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54083, + "TargetID": 51333, + "Directional": true + } + ] + }, + { + "ID": 14522, + "SourceStructureID": 54078, + "TargetStructureID": 8579, + "Label": "54078-8579 via Conventional from 66484 -> 66483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66484, + "TargetID": 66483, + "Directional": true + } + ] + }, + { + "ID": 14523, + "SourceStructureID": 54078, + "TargetStructureID": 16026, + "Label": "54078-16026 via Conventional from 54117 -> 54118", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54117, + "TargetID": 54118, + "Directional": true + } + ] + }, + { + "ID": 14524, + "SourceStructureID": 54232, + "TargetStructureID": 606, + "Label": "54232-606 via Ribbon Synapse from 54233 -> 54234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 54233, + "TargetID": 54234, + "Directional": true + } + ] + }, + { + "ID": 14525, + "SourceStructureID": 54245, + "TargetStructureID": 606, + "Label": "54245-606 via Conventional from 54246 -> 39903, 54249 -> 54250", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54246, + "TargetID": 39903, + "Directional": true + }, + { + "SourceID": 54249, + "TargetID": 54250, + "Directional": true + } + ] + }, + { + "ID": 14526, + "SourceStructureID": 54245, + "TargetStructureID": 5637, + "Label": "54245-5637 via Conventional from 54248 -> 54247", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54248, + "TargetID": 54247, + "Directional": true + } + ] + }, + { + "ID": 14527, + "SourceStructureID": 54252, + "TargetStructureID": 9769, + "Label": "54252-9769 via Conventional from 54253 -> 54251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54253, + "TargetID": 54251, + "Directional": true + } + ] + }, + { + "ID": 14528, + "SourceStructureID": 54264, + "TargetStructureID": 9769, + "Label": "54264-9769 via Conventional from 54266 -> 23927", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54266, + "TargetID": 23927, + "Directional": true + } + ] + }, + { + "ID": 14529, + "SourceStructureID": 54264, + "TargetStructureID": 85404, + "Label": "54264-85404 via Conventional from 54267 -> 85410", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54267, + "TargetID": 85410, + "Directional": true + } + ] + }, + { + "ID": 14530, + "SourceStructureID": 54287, + "TargetStructureID": 6117, + "Label": "54287-6117 via Conventional from 54289 -> 54290, 54299 -> 30896, 85301 -> 85302", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54289, + "TargetID": 54290, + "Directional": true + }, + { + "SourceID": 54299, + "TargetID": 30896, + "Directional": true + }, + { + "SourceID": 85301, + "TargetID": 85302, + "Directional": true + } + ] + }, + { + "ID": 14531, + "SourceStructureID": 54356, + "TargetStructureID": 9769, + "Label": "54356-9769 via Conventional from 54357 -> 23931", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54357, + "TargetID": 23931, + "Directional": true + } + ] + }, + { + "ID": 14532, + "SourceStructureID": 54428, + "TargetStructureID": 9769, + "Label": "54428-9769 via Conventional from 54429 -> 23933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54429, + "TargetID": 23933, + "Directional": true + } + ] + }, + { + "ID": 14533, + "SourceStructureID": 54428, + "TargetStructureID": 68539, + "Label": "54428-68539 via Conventional from 72871 -> 72870", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72871, + "TargetID": 72870, + "Directional": true + } + ] + }, + { + "ID": 14534, + "SourceStructureID": 54461, + "TargetStructureID": 9769, + "Label": "54461-9769 via Conventional from 54462 -> 23937", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54462, + "TargetID": 23937, + "Directional": true + } + ] + }, + { + "ID": 14535, + "SourceStructureID": 54469, + "TargetStructureID": 5601, + "Label": "54469-5601 via Conventional from 54471 -> 54472", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54471, + "TargetID": 54472, + "Directional": true + } + ] + }, + { + "ID": 14536, + "SourceStructureID": 54477, + "TargetStructureID": 9769, + "Label": "54477-9769 via Conventional from 54478 -> 23950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54478, + "TargetID": 23950, + "Directional": true + } + ] + }, + { + "ID": 14537, + "SourceStructureID": 54492, + "TargetStructureID": 8578, + "Label": "54492-8578 via Conventional from 54494 -> 54496", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54494, + "TargetID": 54496, + "Directional": true + } + ] + }, + { + "ID": 14538, + "SourceStructureID": 54492, + "TargetStructureID": 9769, + "Label": "54492-9769 via Conventional from 54493 -> 54491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54493, + "TargetID": 54491, + "Directional": true + } + ] + }, + { + "ID": 14539, + "SourceStructureID": 54698, + "TargetStructureID": 9769, + "Label": "54698-9769 via Conventional from 54700 -> 23965", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54700, + "TargetID": 23965, + "Directional": true + } + ] + }, + { + "ID": 14540, + "SourceStructureID": 54727, + "TargetStructureID": 15394, + "Label": "54727-15394 via Conventional from 54728 -> 41019", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54728, + "TargetID": 41019, + "Directional": true + } + ] + }, + { + "ID": 14541, + "SourceStructureID": 54727, + "TargetStructureID": 54744, + "Label": "54727-54744 via Conventional from 54730 -> 54745", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54730, + "TargetID": 54745, + "Directional": true + } + ] + }, + { + "ID": 14542, + "SourceStructureID": 54776, + "TargetStructureID": 5637, + "Label": "54776-5637 via Conventional from 54784 -> 54795", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54784, + "TargetID": 54795, + "Directional": true + } + ] + }, + { + "ID": 14543, + "SourceStructureID": 54776, + "TargetStructureID": 9769, + "Label": "54776-9769 via Conventional from 54777 -> 23972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54777, + "TargetID": 23972, + "Directional": true + } + ] + }, + { + "ID": 14544, + "SourceStructureID": 54778, + "TargetStructureID": 9769, + "Label": "54778-9769 via Conventional from 54779 -> 23973", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54779, + "TargetID": 23973, + "Directional": true + } + ] + }, + { + "ID": 14545, + "SourceStructureID": 54813, + "TargetStructureID": 9769, + "Label": "54813-9769 via Conventional from 54815 -> 23974", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54815, + "TargetID": 23974, + "Directional": true + } + ] + }, + { + "ID": 14546, + "SourceStructureID": 54850, + "TargetStructureID": 9769, + "Label": "54850-9769 via Conventional from 54851 -> 23982", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54851, + "TargetID": 23982, + "Directional": true + } + ] + }, + { + "ID": 14547, + "SourceStructureID": 54857, + "TargetStructureID": 9769, + "Label": "54857-9769 via Conventional from 54858 -> 23994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54858, + "TargetID": 23994, + "Directional": true + } + ] + }, + { + "ID": 14548, + "SourceStructureID": 54859, + "TargetStructureID": 9769, + "Label": "54859-9769 via Conventional from 54860 -> 23995", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54860, + "TargetID": 23995, + "Directional": true + } + ] + }, + { + "ID": 14549, + "SourceStructureID": 54874, + "TargetStructureID": 16073, + "Label": "54874-16073 via Conventional from 54875 -> 19864", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54875, + "TargetID": 19864, + "Directional": true + } + ] + }, + { + "ID": 14550, + "SourceStructureID": 54877, + "TargetStructureID": 6117, + "Label": "54877-6117 via Conventional from 54879 -> 86012", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54879, + "TargetID": 86012, + "Directional": true + } + ] + }, + { + "ID": 14551, + "SourceStructureID": 54881, + "TargetStructureID": 9769, + "Label": "54881-9769 via Conventional from 54882 -> 12568", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54882, + "TargetID": 12568, + "Directional": true + } + ] + }, + { + "ID": 14552, + "SourceStructureID": 54881, + "TargetStructureID": 34036, + "Label": "54881-34036 via Conventional from 54887 -> 34046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54887, + "TargetID": 34046, + "Directional": true + } + ] + }, + { + "ID": 14553, + "SourceStructureID": 54895, + "TargetStructureID": 9769, + "Label": "54895-9769 via Conventional from 54896 -> 30120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54896, + "TargetID": 30120, + "Directional": true + } + ] + }, + { + "ID": 14554, + "SourceStructureID": 54901, + "TargetStructureID": 9769, + "Label": "54901-9769 via Conventional from 54902 -> 29885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54902, + "TargetID": 29885, + "Directional": true + } + ] + }, + { + "ID": 14555, + "SourceStructureID": 54904, + "TargetStructureID": 9769, + "Label": "54904-9769 via Conventional from 54905 -> 29874, 54906 -> 29875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54905, + "TargetID": 29874, + "Directional": true + }, + { + "SourceID": 54906, + "TargetID": 29875, + "Directional": true + } + ] + }, + { + "ID": 14556, + "SourceStructureID": 54908, + "TargetStructureID": 25155, + "Label": "54908-25155 via Conventional from 54911 -> 54912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54911, + "TargetID": 54912, + "Directional": true + } + ] + }, + { + "ID": 14557, + "SourceStructureID": 54913, + "TargetStructureID": 5531, + "Label": "54913-5531 via Conventional from 54918 -> 54919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54918, + "TargetID": 54919, + "Directional": true + } + ] + }, + { + "ID": 14558, + "SourceStructureID": 54913, + "TargetStructureID": 9769, + "Label": "54913-9769 via Conventional from 54914 -> 29869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54914, + "TargetID": 29869, + "Directional": true + } + ] + }, + { + "ID": 14559, + "SourceStructureID": 54925, + "TargetStructureID": 595, + "Label": "54925-595 via Conventional from 115793 -> 115792", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115793, + "TargetID": 115792, + "Directional": true + } + ] + }, + { + "ID": 14560, + "SourceStructureID": 54925, + "TargetStructureID": 5528, + "Label": "54925-5528 via Conventional from 54942 -> 54943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54942, + "TargetID": 54943, + "Directional": true + } + ] + }, + { + "ID": 14561, + "SourceStructureID": 54925, + "TargetStructureID": 5530, + "Label": "54925-5530 via Conventional from 54930 -> 54931, 54937 -> 54938, 54944 -> 54945, 54947 -> 54098, 81563 -> 81564", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54930, + "TargetID": 54931, + "Directional": true + }, + { + "SourceID": 54937, + "TargetID": 54938, + "Directional": true + }, + { + "SourceID": 54944, + "TargetID": 54945, + "Directional": true + }, + { + "SourceID": 54947, + "TargetID": 54098, + "Directional": true + }, + { + "SourceID": 81563, + "TargetID": 81564, + "Directional": true + } + ] + }, + { + "ID": 14562, + "SourceStructureID": 54925, + "TargetStructureID": 5531, + "Label": "54925-5531 via Conventional from 106583 -> 106584", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106583, + "TargetID": 106584, + "Directional": true + } + ] + }, + { + "ID": 14563, + "SourceStructureID": 54948, + "TargetStructureID": 9769, + "Label": "54948-9769 via Conventional from 54949 -> 29849", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54949, + "TargetID": 29849, + "Directional": true + } + ] + }, + { + "ID": 14564, + "SourceStructureID": 54958, + "TargetStructureID": 9769, + "Label": "54958-9769 via Conventional from 54959 -> 29839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54959, + "TargetID": 29839, + "Directional": true + } + ] + }, + { + "ID": 14565, + "SourceStructureID": 54967, + "TargetStructureID": 9769, + "Label": "54967-9769 via Conventional from 54968 -> 54965", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 54968, + "TargetID": 54965, + "Directional": true + } + ] + }, + { + "ID": 14566, + "SourceStructureID": 55098, + "TargetStructureID": 88970, + "Label": "55098-88970 via Conventional from 55105 -> 88971", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55105, + "TargetID": 88971, + "Directional": true + } + ] + }, + { + "ID": 14567, + "SourceStructureID": 55108, + "TargetStructureID": 9769, + "Label": "55108-9769 via Conventional from 55109 -> 12361, 55145 -> 12362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55109, + "TargetID": 12361, + "Directional": true + }, + { + "SourceID": 55145, + "TargetID": 12362, + "Directional": true + } + ] + }, + { + "ID": 14568, + "SourceStructureID": 55154, + "TargetStructureID": 9769, + "Label": "55154-9769 via Conventional from 55155 -> 12363", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55155, + "TargetID": 12363, + "Directional": true + } + ] + }, + { + "ID": 14569, + "SourceStructureID": 55161, + "TargetStructureID": 9769, + "Label": "55161-9769 via Conventional from 55162 -> 12364", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55162, + "TargetID": 12364, + "Directional": true + } + ] + }, + { + "ID": 14570, + "SourceStructureID": 55176, + "TargetStructureID": 9769, + "Label": "55176-9769 via Conventional from 55177 -> 14363", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55177, + "TargetID": 14363, + "Directional": true + } + ] + }, + { + "ID": 14571, + "SourceStructureID": 55185, + "TargetStructureID": 324, + "Label": "55185-324 via Conventional from 55187 -> 55184", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55187, + "TargetID": 55184, + "Directional": true + } + ] + }, + { + "ID": 14572, + "SourceStructureID": 55185, + "TargetStructureID": 6153, + "Label": "55185-6153 via Conventional from 55186 -> 55183", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55186, + "TargetID": 55183, + "Directional": true + } + ] + }, + { + "ID": 14573, + "SourceStructureID": 55185, + "TargetStructureID": 55191, + "Label": "55185-55191 via Conventional from 55188 -> 55194", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55188, + "TargetID": 55194, + "Directional": true + } + ] + }, + { + "ID": 14574, + "SourceStructureID": 55191, + "TargetStructureID": 55185, + "Label": "55191-55185 via Ribbon Synapse from 55195 -> 55190", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55195, + "TargetID": 55190, + "Directional": true + } + ] + }, + { + "ID": 14575, + "SourceStructureID": 55197, + "TargetStructureID": 9769, + "Label": "55197-9769 via Conventional from 55198 -> 30083", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55198, + "TargetID": 30083, + "Directional": true + } + ] + }, + { + "ID": 14576, + "SourceStructureID": 55201, + "TargetStructureID": 324, + "Label": "55201-324 via Conventional from 55203 -> 55204", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55203, + "TargetID": 55204, + "Directional": true + } + ] + }, + { + "ID": 14577, + "SourceStructureID": 55208, + "TargetStructureID": 9769, + "Label": "55208-9769 via Conventional from 55209 -> 30092", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55209, + "TargetID": 30092, + "Directional": true + } + ] + }, + { + "ID": 14578, + "SourceStructureID": 55215, + "TargetStructureID": 9769, + "Label": "55215-9769 via Conventional from 55216 -> 30095", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55216, + "TargetID": 30095, + "Directional": true + } + ] + }, + { + "ID": 14579, + "SourceStructureID": 55221, + "TargetStructureID": 9769, + "Label": "55221-9769 via Conventional from 55222 -> 30109", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55222, + "TargetID": 30109, + "Directional": true + } + ] + }, + { + "ID": 14580, + "SourceStructureID": 55223, + "TargetStructureID": 9769, + "Label": "55223-9769 via Ribbon Synapse from 55224 -> 55225", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55224, + "TargetID": 55225, + "Directional": true + } + ] + }, + { + "ID": 14581, + "SourceStructureID": 55279, + "TargetStructureID": 9769, + "Label": "55279-9769 via Conventional from 55280 -> 12395", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55280, + "TargetID": 12395, + "Directional": true + } + ] + }, + { + "ID": 14582, + "SourceStructureID": 55308, + "TargetStructureID": 9769, + "Label": "55308-9769 via Conventional from 55309 -> 55307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55309, + "TargetID": 55307, + "Directional": true + } + ] + }, + { + "ID": 14583, + "SourceStructureID": 55311, + "TargetStructureID": 268, + "Label": "55311-268 via Conventional from 55314 -> 55315", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55314, + "TargetID": 55315, + "Directional": true + } + ] + }, + { + "ID": 14584, + "SourceStructureID": 55317, + "TargetStructureID": 9769, + "Label": "55317-9769 via Conventional from 55318 -> 55316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55318, + "TargetID": 55316, + "Directional": true + } + ] + }, + { + "ID": 14585, + "SourceStructureID": 55330, + "TargetStructureID": 9769, + "Label": "55330-9769 via Conventional from 55331 -> 12331", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55331, + "TargetID": 12331, + "Directional": true + } + ] + }, + { + "ID": 14586, + "SourceStructureID": 55359, + "TargetStructureID": 9769, + "Label": "55359-9769 via Conventional from 55360 -> 12359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55360, + "TargetID": 12359, + "Directional": true + } + ] + }, + { + "ID": 14587, + "SourceStructureID": 55361, + "TargetStructureID": 9769, + "Label": "55361-9769 via Conventional from 55362 -> 12360", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55362, + "TargetID": 12360, + "Directional": true + } + ] + }, + { + "ID": 14588, + "SourceStructureID": 55364, + "TargetStructureID": 9769, + "Label": "55364-9769 via Conventional from 55365 -> 10903", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55365, + "TargetID": 10903, + "Directional": true + } + ] + }, + { + "ID": 14589, + "SourceStructureID": 55366, + "TargetStructureID": 9769, + "Label": "55366-9769 via Conventional from 55367 -> 29889", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55367, + "TargetID": 29889, + "Directional": true + } + ] + }, + { + "ID": 14590, + "SourceStructureID": 55403, + "TargetStructureID": 324, + "Label": "55403-324 via Conventional from 55413 -> 55412, 55418 -> 55419, 55425 -> 55426, 55454 -> 55455", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55413, + "TargetID": 55412, + "Directional": true + }, + { + "SourceID": 55418, + "TargetID": 55419, + "Directional": true + }, + { + "SourceID": 55425, + "TargetID": 55426, + "Directional": true + }, + { + "SourceID": 55454, + "TargetID": 55455, + "Directional": true + } + ] + }, + { + "ID": 14591, + "SourceStructureID": 55403, + "TargetStructureID": 330, + "Label": "55403-330 via Conventional from 55439 -> 12424", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55439, + "TargetID": 12424, + "Directional": true + } + ] + }, + { + "ID": 14592, + "SourceStructureID": 55403, + "TargetStructureID": 372, + "Label": "55403-372 via Conventional from 55446 -> 55445", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55446, + "TargetID": 55445, + "Directional": true + } + ] + }, + { + "ID": 14593, + "SourceStructureID": 55403, + "TargetStructureID": 606, + "Label": "55403-606 via Conventional from 55405 -> 53269, 55410 -> 53274, 55447 -> 53315", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55405, + "TargetID": 53269, + "Directional": true + }, + { + "SourceID": 55410, + "TargetID": 53274, + "Directional": true + }, + { + "SourceID": 55447, + "TargetID": 53315, + "Directional": true + } + ] + }, + { + "ID": 14594, + "SourceStructureID": 55403, + "TargetStructureID": 1724, + "Label": "55403-1724 via Conventional from 55461 -> 4042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55461, + "TargetID": 4042, + "Directional": true + } + ] + }, + { + "ID": 14595, + "SourceStructureID": 55403, + "TargetStructureID": 5107, + "Label": "55403-5107 via Conventional from 55436 -> 55437", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55436, + "TargetID": 55437, + "Directional": true + } + ] + }, + { + "ID": 14596, + "SourceStructureID": 55403, + "TargetStructureID": 20299, + "Label": "55403-20299 via Conventional from 55421 -> 55422", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55421, + "TargetID": 55422, + "Directional": true + } + ] + }, + { + "ID": 14597, + "SourceStructureID": 55403, + "TargetStructureID": 31024, + "Label": "55403-31024 via Conventional from 55509 -> 55508, 55510 -> 55511", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55509, + "TargetID": 55508, + "Directional": true + }, + { + "SourceID": 55510, + "TargetID": 55511, + "Directional": true + } + ] + }, + { + "ID": 14598, + "SourceStructureID": 55403, + "TargetStructureID": 32581, + "Label": "55403-32581 via Conventional from 55430 -> 55431", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55430, + "TargetID": 55431, + "Directional": true + } + ] + }, + { + "ID": 14599, + "SourceStructureID": 55403, + "TargetStructureID": 35894, + "Label": "55403-35894 via Conventional from 55457 -> 55458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55457, + "TargetID": 55458, + "Directional": true + } + ] + }, + { + "ID": 14600, + "SourceStructureID": 55403, + "TargetStructureID": 38605, + "Label": "55403-38605 via Conventional from 55420 -> 101484", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55420, + "TargetID": 101484, + "Directional": true + } + ] + }, + { + "ID": 14601, + "SourceStructureID": 55517, + "TargetStructureID": 170, + "Label": "55517-170 via Conventional from 55562 -> 55563", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55562, + "TargetID": 55563, + "Directional": true + } + ] + }, + { + "ID": 14602, + "SourceStructureID": 55517, + "TargetStructureID": 277, + "Label": "55517-277 via Conventional from 55549 -> 55548, 55555 -> 26008", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55549, + "TargetID": 55548, + "Directional": true + }, + { + "SourceID": 55555, + "TargetID": 26008, + "Directional": true + } + ] + }, + { + "ID": 14603, + "SourceStructureID": 55517, + "TargetStructureID": 330, + "Label": "55517-330 via Conventional from 55546 -> 52977", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55546, + "TargetID": 52977, + "Directional": true + } + ] + }, + { + "ID": 14604, + "SourceStructureID": 55517, + "TargetStructureID": 372, + "Label": "55517-372 via Conventional from 55524 -> 45647", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55524, + "TargetID": 45647, + "Directional": true + } + ] + }, + { + "ID": 14605, + "SourceStructureID": 55517, + "TargetStructureID": 606, + "Label": "55517-606 via Conventional from 55519 -> 53305, 55554 -> 52850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55519, + "TargetID": 53305, + "Directional": true + }, + { + "SourceID": 55554, + "TargetID": 52850, + "Directional": true + } + ] + }, + { + "ID": 14606, + "SourceStructureID": 55517, + "TargetStructureID": 4569, + "Label": "55517-4569 via Conventional from 55566 -> 47442", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55566, + "TargetID": 47442, + "Directional": true + } + ] + }, + { + "ID": 14607, + "SourceStructureID": 55517, + "TargetStructureID": 5279, + "Label": "55517-5279 via Conventional from 55572 -> 92709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55572, + "TargetID": 92709, + "Directional": true + } + ] + }, + { + "ID": 14608, + "SourceStructureID": 55517, + "TargetStructureID": 5284, + "Label": "55517-5284 via Conventional from 55603 -> 55604", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55603, + "TargetID": 55604, + "Directional": true + } + ] + }, + { + "ID": 14609, + "SourceStructureID": 55517, + "TargetStructureID": 6117, + "Label": "55517-6117 via Conventional from 55574 -> 55579, 55585 -> 83236, 55588 -> 30889", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55574, + "TargetID": 55579, + "Directional": true + }, + { + "SourceID": 55585, + "TargetID": 83236, + "Directional": true + }, + { + "SourceID": 55588, + "TargetID": 30889, + "Directional": true + } + ] + }, + { + "ID": 14610, + "SourceStructureID": 55517, + "TargetStructureID": 9769, + "Label": "55517-9769 via Conventional from 55595 -> 55596", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55595, + "TargetID": 55596, + "Directional": true + } + ] + }, + { + "ID": 14611, + "SourceStructureID": 55517, + "TargetStructureID": 32581, + "Label": "55517-32581 via Conventional from 55538 -> 55539", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55538, + "TargetID": 55539, + "Directional": true + } + ] + }, + { + "ID": 14612, + "SourceStructureID": 55517, + "TargetStructureID": 59008, + "Label": "55517-59008 via Conventional from 55573 -> 59009", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55573, + "TargetID": 59009, + "Directional": true + } + ] + }, + { + "ID": 14613, + "SourceStructureID": 55517, + "TargetStructureID": 75583, + "Label": "55517-75583 via Conventional from 55587 -> 83213", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55587, + "TargetID": 83213, + "Directional": true + } + ] + }, + { + "ID": 14614, + "SourceStructureID": 55517, + "TargetStructureID": 83204, + "Label": "55517-83204 via Conventional from 55586 -> 83206", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55586, + "TargetID": 83206, + "Directional": true + } + ] + }, + { + "ID": 14615, + "SourceStructureID": 55517, + "TargetStructureID": 83925, + "Label": "55517-83925 via Conventional from 55591 -> 83928", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55591, + "TargetID": 83928, + "Directional": true + } + ] + }, + { + "ID": 14616, + "SourceStructureID": 55517, + "TargetStructureID": 90483, + "Label": "55517-90483 via Conventional from 55523 -> 90497", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55523, + "TargetID": 90497, + "Directional": true + } + ] + }, + { + "ID": 14617, + "SourceStructureID": 55686, + "TargetStructureID": 7897, + "Label": "55686-7897 via Ribbon Synapse from 55687 -> 55685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 55687, + "TargetID": 55685, + "Directional": true + } + ] + }, + { + "ID": 14618, + "SourceStructureID": 55697, + "TargetStructureID": 5499, + "Label": "55697-5499 via Conventional from 55701 -> 105488", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55701, + "TargetID": 105488, + "Directional": true + } + ] + }, + { + "ID": 14619, + "SourceStructureID": 55697, + "TargetStructureID": 5503, + "Label": "55697-5503 via Conventional from 55702 -> 60727", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55702, + "TargetID": 60727, + "Directional": true + } + ] + }, + { + "ID": 14620, + "SourceStructureID": 55697, + "TargetStructureID": 5520, + "Label": "55697-5520 via Conventional from 55699 -> 55700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55699, + "TargetID": 55700, + "Directional": true + } + ] + }, + { + "ID": 14621, + "SourceStructureID": 55697, + "TargetStructureID": 7897, + "Label": "55697-7897 via Conventional from 55698 -> 55692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55698, + "TargetID": 55692, + "Directional": true + } + ] + }, + { + "ID": 14622, + "SourceStructureID": 55830, + "TargetStructureID": 6047, + "Label": "55830-6047 via Conventional from 112347 -> 112346", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112347, + "TargetID": 112346, + "Directional": true + } + ] + }, + { + "ID": 14623, + "SourceStructureID": 55830, + "TargetStructureID": 6050, + "Label": "55830-6050 via Conventional from 114235 -> 114234", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114235, + "TargetID": 114234, + "Directional": true + } + ] + }, + { + "ID": 14624, + "SourceStructureID": 55837, + "TargetStructureID": 9769, + "Label": "55837-9769 via Conventional from 55838 -> 55836", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 55838, + "TargetID": 55836, + "Directional": true + } + ] + }, + { + "ID": 14625, + "SourceStructureID": 56078, + "TargetStructureID": 6857, + "Label": "56078-6857 via Conventional from 56079 -> 6858", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56079, + "TargetID": 6858, + "Directional": true + } + ] + }, + { + "ID": 14626, + "SourceStructureID": 56081, + "TargetStructureID": 6857, + "Label": "56081-6857 via Conventional from 56082 -> 6867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56082, + "TargetID": 6867, + "Directional": true + } + ] + }, + { + "ID": 14627, + "SourceStructureID": 56086, + "TargetStructureID": 5530, + "Label": "56086-5530 via Conventional from 56087 -> 56088", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56087, + "TargetID": 56088, + "Directional": true + } + ] + }, + { + "ID": 14628, + "SourceStructureID": 56148, + "TargetStructureID": 15796, + "Label": "56148-15796 via Conventional from 56149 -> 55760", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56149, + "TargetID": 55760, + "Directional": true + } + ] + }, + { + "ID": 14629, + "SourceStructureID": 56191, + "TargetStructureID": 5150, + "Label": "56191-5150 via Ribbon Synapse from 56192 -> 5242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56192, + "TargetID": 5242, + "Directional": true + } + ] + }, + { + "ID": 14630, + "SourceStructureID": 56211, + "TargetStructureID": 46261, + "Label": "56211-46261 via Conventional from 56242 -> 56243", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56242, + "TargetID": 56243, + "Directional": true + } + ] + }, + { + "ID": 14631, + "SourceStructureID": 56328, + "TargetStructureID": 7568, + "Label": "56328-7568 via Conventional from 85482 -> 27108", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85482, + "TargetID": 27108, + "Directional": true + } + ] + }, + { + "ID": 14632, + "SourceStructureID": 56328, + "TargetStructureID": 131568, + "Label": "56328-131568 via Conventional from 85485 -> 131569", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85485, + "TargetID": 131569, + "Directional": true + } + ] + }, + { + "ID": 14633, + "SourceStructureID": 56598, + "TargetStructureID": 9787, + "Label": "56598-9787 via Conventional from 56599 -> 12246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56599, + "TargetID": 12246, + "Directional": true + } + ] + }, + { + "ID": 14634, + "SourceStructureID": 56600, + "TargetStructureID": 9787, + "Label": "56600-9787 via Ribbon Synapse from 56604 -> 12245, 56605 -> 12256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56604, + "TargetID": 12245, + "Directional": true + }, + { + "SourceID": 56605, + "TargetID": 12256, + "Directional": true + } + ] + }, + { + "ID": 14635, + "SourceStructureID": 56631, + "TargetStructureID": 289, + "Label": "56631-289 via Ribbon Synapse from 56632 -> 56630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56632, + "TargetID": 56630, + "Directional": true + } + ] + }, + { + "ID": 14636, + "SourceStructureID": 56643, + "TargetStructureID": 289, + "Label": "56643-289 via Ribbon Synapse from 56644 -> 56642", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 56644, + "TargetID": 56642, + "Directional": true + } + ] + }, + { + "ID": 14637, + "SourceStructureID": 56704, + "TargetStructureID": 142, + "Label": "56704-142 via Conventional from 56707 -> 31789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56707, + "TargetID": 31789, + "Directional": true + } + ] + }, + { + "ID": 14638, + "SourceStructureID": 56822, + "TargetStructureID": 171, + "Label": "56822-171 via Conventional from 130199 -> 6002", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130199, + "TargetID": 6002, + "Directional": true + } + ] + }, + { + "ID": 14639, + "SourceStructureID": 56841, + "TargetStructureID": 5284, + "Label": "56841-5284 via Conventional from 56847 -> 113471, 56853 -> 54343, 113526 -> 113524, 113557 -> 98211", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56847, + "TargetID": 113471, + "Directional": true + }, + { + "SourceID": 56853, + "TargetID": 54343, + "Directional": true + }, + { + "SourceID": 113526, + "TargetID": 113524, + "Directional": true + }, + { + "SourceID": 113557, + "TargetID": 98211, + "Directional": true + } + ] + }, + { + "ID": 14640, + "SourceStructureID": 56841, + "TargetStructureID": 5297, + "Label": "56841-5297 via Conventional from 120273 -> 120274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120273, + "TargetID": 120274, + "Directional": true + } + ] + }, + { + "ID": 14641, + "SourceStructureID": 56841, + "TargetStructureID": 5517, + "Label": "56841-5517 via Conventional from 56932 -> 49293", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56932, + "TargetID": 49293, + "Directional": true + } + ] + }, + { + "ID": 14642, + "SourceStructureID": 56841, + "TargetStructureID": 5598, + "Label": "56841-5598 via Conventional from 56865 -> 114588, 113789 -> 113788", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56865, + "TargetID": 114588, + "Directional": true + }, + { + "SourceID": 113789, + "TargetID": 113788, + "Directional": true + } + ] + }, + { + "ID": 14643, + "SourceStructureID": 56841, + "TargetStructureID": 5650, + "Label": "56841-5650 via Conventional from 104993 -> 104994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104993, + "TargetID": 104994, + "Directional": true + } + ] + }, + { + "ID": 14644, + "SourceStructureID": 56841, + "TargetStructureID": 6047, + "Label": "56841-6047 via Conventional from 56863 -> 56864", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56863, + "TargetID": 56864, + "Directional": true + } + ] + }, + { + "ID": 14645, + "SourceStructureID": 56841, + "TargetStructureID": 6050, + "Label": "56841-6050 via Conventional from 56855 -> 56073, 56858 -> 114028, 56860 -> 114034, 113972 -> 113971", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56855, + "TargetID": 56073, + "Directional": true + }, + { + "SourceID": 56858, + "TargetID": 114028, + "Directional": true + }, + { + "SourceID": 56860, + "TargetID": 114034, + "Directional": true + }, + { + "SourceID": 113972, + "TargetID": 113971, + "Directional": true + } + ] + }, + { + "ID": 14646, + "SourceStructureID": 56841, + "TargetStructureID": 6117, + "Label": "56841-6117 via Conventional from 56845 -> 30870", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56845, + "TargetID": 30870, + "Directional": true + } + ] + }, + { + "ID": 14647, + "SourceStructureID": 56841, + "TargetStructureID": 6203, + "Label": "56841-6203 via Conventional from 56868 -> 57214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56868, + "TargetID": 57214, + "Directional": true + } + ] + }, + { + "ID": 14648, + "SourceStructureID": 56841, + "TargetStructureID": 20136, + "Label": "56841-20136 via Conventional from 56844 -> 20145", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56844, + "TargetID": 20145, + "Directional": true + } + ] + }, + { + "ID": 14649, + "SourceStructureID": 56841, + "TargetStructureID": 28886, + "Label": "56841-28886 via Conventional from 56941 -> 51383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56941, + "TargetID": 51383, + "Directional": true + } + ] + }, + { + "ID": 14650, + "SourceStructureID": 56841, + "TargetStructureID": 83954, + "Label": "56841-83954 via Conventional from 56846 -> 83956", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 56846, + "TargetID": 83956, + "Directional": true + } + ] + }, + { + "ID": 14651, + "SourceStructureID": 57027, + "TargetStructureID": 5279, + "Label": "57027-5279 via Conventional from 99128 -> 99129", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99128, + "TargetID": 99129, + "Directional": true + } + ] + }, + { + "ID": 14652, + "SourceStructureID": 57034, + "TargetStructureID": 3756, + "Label": "57034-3756 via Conventional from 120320 -> 116034", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120320, + "TargetID": 116034, + "Directional": true + } + ] + }, + { + "ID": 14653, + "SourceStructureID": 57034, + "TargetStructureID": 5650, + "Label": "57034-5650 via Conventional from 125089 -> 125088", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125089, + "TargetID": 125088, + "Directional": true + } + ] + }, + { + "ID": 14654, + "SourceStructureID": 57178, + "TargetStructureID": 35811, + "Label": "57178-35811 via Conventional from 57182 -> 35875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 57182, + "TargetID": 35875, + "Directional": true + } + ] + }, + { + "ID": 14655, + "SourceStructureID": 57353, + "TargetStructureID": 5107, + "Label": "57353-5107 via Ribbon Synapse from 65078 -> 65077, 122890 -> 65073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65078, + "TargetID": 65077, + "Directional": true + }, + { + "SourceID": 122890, + "TargetID": 65073, + "Directional": true + } + ] + }, + { + "ID": 14656, + "SourceStructureID": 57353, + "TargetStructureID": 5118, + "Label": "57353-5118 via BC Conventional Synapse from 124432 -> 124433", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 124432, + "TargetID": 124433, + "Directional": true + } + ] + }, + { + "ID": 14657, + "SourceStructureID": 58441, + "TargetStructureID": 8575, + "Label": "58441-8575 via BC Conventional Synapse from 62076 -> 62075", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62076, + "TargetID": 62075, + "Directional": true + } + ] + }, + { + "ID": 14658, + "SourceStructureID": 58441, + "TargetStructureID": 39957, + "Label": "58441-39957 via Ribbon Synapse from 58442 -> 58438, 58449 -> 58443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58442, + "TargetID": 58438, + "Directional": true + }, + { + "SourceID": 58449, + "TargetID": 58443, + "Directional": true + } + ] + }, + { + "ID": 14659, + "SourceStructureID": 58441, + "TargetStructureID": 59333, + "Label": "58441-59333 via Ribbon Synapse from 59350 -> 59351", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59350, + "TargetID": 59351, + "Directional": true + } + ] + }, + { + "ID": 14660, + "SourceStructureID": 58441, + "TargetStructureID": 59340, + "Label": "58441-59340 via Ribbon Synapse from 58446 -> 59344", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58446, + "TargetID": 59344, + "Directional": true + } + ] + }, + { + "ID": 14661, + "SourceStructureID": 58441, + "TargetStructureID": 59347, + "Label": "58441-59347 via Ribbon Synapse from 58445 -> 59349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 58445, + "TargetID": 59349, + "Directional": true + } + ] + }, + { + "ID": 14662, + "SourceStructureID": 58592, + "TargetStructureID": 142, + "Label": "58592-142 via Conventional from 58636 -> 49759, 114530 -> 49743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58636, + "TargetID": 49759, + "Directional": true + }, + { + "SourceID": 114530, + "TargetID": 49743, + "Directional": true + } + ] + }, + { + "ID": 14663, + "SourceStructureID": 58592, + "TargetStructureID": 176, + "Label": "58592-176 via Conventional from 58648 -> 91304, 58658 -> 58659", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58648, + "TargetID": 91304, + "Directional": true + }, + { + "SourceID": 58658, + "TargetID": 58659, + "Directional": true + } + ] + }, + { + "ID": 14664, + "SourceStructureID": 58592, + "TargetStructureID": 4877, + "Label": "58592-4877 via Conventional from 58661 -> 33308", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58661, + "TargetID": 33308, + "Directional": true + } + ] + }, + { + "ID": 14665, + "SourceStructureID": 58592, + "TargetStructureID": 5279, + "Label": "58592-5279 via Conventional from 58596 -> 49234, 58622 -> 58623, 58628 -> 49226, 58629 -> 58630", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58596, + "TargetID": 49234, + "Directional": true + }, + { + "SourceID": 58622, + "TargetID": 58623, + "Directional": true + }, + { + "SourceID": 58628, + "TargetID": 49226, + "Directional": true + }, + { + "SourceID": 58629, + "TargetID": 58630, + "Directional": true + } + ] + }, + { + "ID": 14666, + "SourceStructureID": 58592, + "TargetStructureID": 5534, + "Label": "58592-5534 via Conventional from 58676 -> 58677", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58676, + "TargetID": 58677, + "Directional": true + } + ] + }, + { + "ID": 14667, + "SourceStructureID": 58592, + "TargetStructureID": 5607, + "Label": "58592-5607 via Conventional from 58681 -> 43085, 58685 -> 58684", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58681, + "TargetID": 43085, + "Directional": true + }, + { + "SourceID": 58685, + "TargetID": 58684, + "Directional": true + } + ] + }, + { + "ID": 14668, + "SourceStructureID": 58592, + "TargetStructureID": 5637, + "Label": "58592-5637 via Conventional from 58666 -> 58667, 58673 -> 58674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58666, + "TargetID": 58667, + "Directional": true + }, + { + "SourceID": 58673, + "TargetID": 58674, + "Directional": true + } + ] + }, + { + "ID": 14669, + "SourceStructureID": 58592, + "TargetStructureID": 5641, + "Label": "58592-5641 via Conventional from 58671 -> 58672", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58671, + "TargetID": 58672, + "Directional": true + } + ] + }, + { + "ID": 14670, + "SourceStructureID": 58592, + "TargetStructureID": 6117, + "Label": "58592-6117 via Conventional from 58593 -> 10541, 86425 -> 86426", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58593, + "TargetID": 10541, + "Directional": true + }, + { + "SourceID": 86425, + "TargetID": 86426, + "Directional": true + } + ] + }, + { + "ID": 14671, + "SourceStructureID": 58592, + "TargetStructureID": 58642, + "Label": "58592-58642 via Conventional from 58641 -> 58643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58641, + "TargetID": 58643, + "Directional": true + } + ] + }, + { + "ID": 14672, + "SourceStructureID": 58592, + "TargetStructureID": 58714, + "Label": "58592-58714 via Conventional from 86121 -> 86122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86121, + "TargetID": 86122, + "Directional": true + } + ] + }, + { + "ID": 14673, + "SourceStructureID": 58687, + "TargetStructureID": 6117, + "Label": "58687-6117 via Conventional from 58688 -> 58689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58688, + "TargetID": 58689, + "Directional": true + } + ] + }, + { + "ID": 14674, + "SourceStructureID": 58691, + "TargetStructureID": 6117, + "Label": "58691-6117 via Conventional from 58693 -> 58694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58693, + "TargetID": 58694, + "Directional": true + } + ] + }, + { + "ID": 14675, + "SourceStructureID": 58696, + "TargetStructureID": 166, + "Label": "58696-166 via Conventional from 58702 -> 4480, 58703 -> 4482, 58705 -> 84812, 58708 -> 16161, 66712 -> 60008", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58702, + "TargetID": 4480, + "Directional": true + }, + { + "SourceID": 58703, + "TargetID": 4482, + "Directional": true + }, + { + "SourceID": 58705, + "TargetID": 84812, + "Directional": true + }, + { + "SourceID": 58708, + "TargetID": 16161, + "Directional": true + }, + { + "SourceID": 66712, + "TargetID": 60008, + "Directional": true + } + ] + }, + { + "ID": 14676, + "SourceStructureID": 58696, + "TargetStructureID": 593, + "Label": "58696-593 via Conventional from 86960 -> 86961", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86960, + "TargetID": 86961, + "Directional": true + } + ] + }, + { + "ID": 14677, + "SourceStructureID": 58696, + "TargetStructureID": 5377, + "Label": "58696-5377 via Conventional from 86954 -> 22746", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86954, + "TargetID": 22746, + "Directional": true + } + ] + }, + { + "ID": 14678, + "SourceStructureID": 58696, + "TargetStructureID": 5562, + "Label": "58696-5562 via Conventional from 86969 -> 63790, 86979 -> 63846, 86983 -> 63615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86969, + "TargetID": 63790, + "Directional": true + }, + { + "SourceID": 86979, + "TargetID": 63846, + "Directional": true + }, + { + "SourceID": 86983, + "TargetID": 63615, + "Directional": true + } + ] + }, + { + "ID": 14679, + "SourceStructureID": 58696, + "TargetStructureID": 6117, + "Label": "58696-6117 via Conventional from 58697 -> 58695", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58697, + "TargetID": 58695, + "Directional": true + } + ] + }, + { + "ID": 14680, + "SourceStructureID": 58696, + "TargetStructureID": 84828, + "Label": "58696-84828 via Conventional from 84827 -> 84829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84827, + "TargetID": 84829, + "Directional": true + } + ] + }, + { + "ID": 14681, + "SourceStructureID": 58696, + "TargetStructureID": 86943, + "Label": "58696-86943 via Conventional from 86942 -> 86944", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86942, + "TargetID": 86944, + "Directional": true + } + ] + }, + { + "ID": 14682, + "SourceStructureID": 58696, + "TargetStructureID": 86965, + "Label": "58696-86965 via Conventional from 86964 -> 86966", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86964, + "TargetID": 86966, + "Directional": true + } + ] + }, + { + "ID": 14683, + "SourceStructureID": 58696, + "TargetStructureID": 86985, + "Label": "58696-86985 via Conventional from 86984 -> 86986", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86984, + "TargetID": 86986, + "Directional": true + } + ] + }, + { + "ID": 14684, + "SourceStructureID": 58709, + "TargetStructureID": 176, + "Label": "58709-176 via Conventional from 58712 -> 5814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58712, + "TargetID": 5814, + "Directional": true + } + ] + }, + { + "ID": 14685, + "SourceStructureID": 58709, + "TargetStructureID": 6117, + "Label": "58709-6117 via Conventional from 58710 -> 58711", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58710, + "TargetID": 58711, + "Directional": true + } + ] + }, + { + "ID": 14686, + "SourceStructureID": 58714, + "TargetStructureID": 4877, + "Label": "58714-4877 via Conventional from 58736 -> 58737, 58739 -> 33390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58736, + "TargetID": 58737, + "Directional": true + }, + { + "SourceID": 58739, + "TargetID": 33390, + "Directional": true + } + ] + }, + { + "ID": 14687, + "SourceStructureID": 58714, + "TargetStructureID": 5303, + "Label": "58714-5303 via Conventional from 58738 -> 35610", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58738, + "TargetID": 35610, + "Directional": true + } + ] + }, + { + "ID": 14688, + "SourceStructureID": 58714, + "TargetStructureID": 6117, + "Label": "58714-6117 via Conventional from 58715 -> 58713, 58719 -> 20578, 86123 -> 20569, 86141 -> 20574, 86454 -> 86455", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58715, + "TargetID": 58713, + "Directional": true + }, + { + "SourceID": 58719, + "TargetID": 20578, + "Directional": true + }, + { + "SourceID": 86123, + "TargetID": 20569, + "Directional": true + }, + { + "SourceID": 86141, + "TargetID": 20574, + "Directional": true + }, + { + "SourceID": 86454, + "TargetID": 86455, + "Directional": true + } + ] + }, + { + "ID": 14689, + "SourceStructureID": 58723, + "TargetStructureID": 6117, + "Label": "58723-6117 via Conventional from 58725 -> 20571, 58726 -> 20572", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58725, + "TargetID": 20571, + "Directional": true + }, + { + "SourceID": 58726, + "TargetID": 20572, + "Directional": true + } + ] + }, + { + "ID": 14690, + "SourceStructureID": 58723, + "TargetStructureID": 58714, + "Label": "58723-58714 via Conventional from 58724 -> 58722", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58724, + "TargetID": 58722, + "Directional": true + } + ] + }, + { + "ID": 14691, + "SourceStructureID": 58745, + "TargetStructureID": 6117, + "Label": "58745-6117 via Conventional from 58746 -> 58744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58746, + "TargetID": 58744, + "Directional": true + } + ] + }, + { + "ID": 14692, + "SourceStructureID": 58757, + "TargetStructureID": 5601, + "Label": "58757-5601 via Conventional from 58764 -> 127182", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58764, + "TargetID": 127182, + "Directional": true + } + ] + }, + { + "ID": 14693, + "SourceStructureID": 58757, + "TargetStructureID": 6117, + "Label": "58757-6117 via Conventional from 58758 -> 58756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58758, + "TargetID": 58756, + "Directional": true + } + ] + }, + { + "ID": 14694, + "SourceStructureID": 58773, + "TargetStructureID": 6117, + "Label": "58773-6117 via Conventional from 58774 -> 30924", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58774, + "TargetID": 30924, + "Directional": true + } + ] + }, + { + "ID": 14695, + "SourceStructureID": 58777, + "TargetStructureID": 6117, + "Label": "58777-6117 via Conventional from 58785 -> 58786, 86597 -> 86598", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58785, + "TargetID": 58786, + "Directional": true + }, + { + "SourceID": 86597, + "TargetID": 86598, + "Directional": true + } + ] + }, + { + "ID": 14696, + "SourceStructureID": 58816, + "TargetStructureID": 1724, + "Label": "58816-1724 via Conventional from 58819 -> 1772", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58819, + "TargetID": 1772, + "Directional": true + } + ] + }, + { + "ID": 14697, + "SourceStructureID": 58816, + "TargetStructureID": 5279, + "Label": "58816-5279 via Conventional from 58821 -> 25816", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58821, + "TargetID": 25816, + "Directional": true + } + ] + }, + { + "ID": 14698, + "SourceStructureID": 58816, + "TargetStructureID": 6117, + "Label": "58816-6117 via Conventional from 85990 -> 58809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85990, + "TargetID": 58809, + "Directional": true + } + ] + }, + { + "ID": 14699, + "SourceStructureID": 58827, + "TargetStructureID": 6117, + "Label": "58827-6117 via Conventional from 58828 -> 58810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 58828, + "TargetID": 58810, + "Directional": true + } + ] + }, + { + "ID": 14700, + "SourceStructureID": 58829, + "TargetStructureID": 5561, + "Label": "58829-5561 via Conventional from 97652 -> 46307, 97679 -> 46303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97652, + "TargetID": 46307, + "Directional": true + }, + { + "SourceID": 97679, + "TargetID": 46303, + "Directional": true + } + ] + }, + { + "ID": 14701, + "SourceStructureID": 59012, + "TargetStructureID": 1724, + "Label": "59012-1724 via Conventional from 101524 -> 20197", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101524, + "TargetID": 20197, + "Directional": true + } + ] + }, + { + "ID": 14702, + "SourceStructureID": 59012, + "TargetStructureID": 5279, + "Label": "59012-5279 via Conventional from 59013 -> 25826, 59014 -> 59015", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59013, + "TargetID": 25826, + "Directional": true + }, + { + "SourceID": 59014, + "TargetID": 59015, + "Directional": true + } + ] + }, + { + "ID": 14703, + "SourceStructureID": 59102, + "TargetStructureID": 593, + "Label": "59102-593 via Postsynapse from 59103 -> 59101", + "Type": "Postsynapse", + "Directional": true, + "Links": [ + { + "SourceID": 59103, + "TargetID": 59101, + "Directional": true + } + ] + }, + { + "ID": 14704, + "SourceStructureID": 59125, + "TargetStructureID": 483, + "Label": "59125-483 via Conventional from 59126 -> 6704", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59126, + "TargetID": 6704, + "Directional": true + } + ] + }, + { + "ID": 14705, + "SourceStructureID": 59139, + "TargetStructureID": 593, + "Label": "59139-593 via Conventional from 59141 -> 7700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59141, + "TargetID": 7700, + "Directional": true + } + ] + }, + { + "ID": 14706, + "SourceStructureID": 59147, + "TargetStructureID": 909, + "Label": "59147-909 via Conventional from 59151 -> 30650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59151, + "TargetID": 30650, + "Directional": true + } + ] + }, + { + "ID": 14707, + "SourceStructureID": 59147, + "TargetStructureID": 20136, + "Label": "59147-20136 via Conventional from 130468 -> 130467", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130468, + "TargetID": 130467, + "Directional": true + } + ] + }, + { + "ID": 14708, + "SourceStructureID": 59147, + "TargetStructureID": 59145, + "Label": "59147-59145 via Conventional from 59148 -> 59149", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59148, + "TargetID": 59149, + "Directional": true + } + ] + }, + { + "ID": 14709, + "SourceStructureID": 59163, + "TargetStructureID": 8575, + "Label": "59163-8575 via BC Conventional Synapse from 62440 -> 62438", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62440, + "TargetID": 62438, + "Directional": true + } + ] + }, + { + "ID": 14710, + "SourceStructureID": 59211, + "TargetStructureID": 59223, + "Label": "59211-59223 via Ribbon Synapse from 59216 -> 59234, 59232 -> 59233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59216, + "TargetID": 59234, + "Directional": true + }, + { + "SourceID": 59232, + "TargetID": 59233, + "Directional": true + } + ] + }, + { + "ID": 14711, + "SourceStructureID": 59225, + "TargetStructureID": 59223, + "Label": "59225-59223 via Conventional from 59227 -> 59228", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59227, + "TargetID": 59228, + "Directional": true + } + ] + }, + { + "ID": 14712, + "SourceStructureID": 59229, + "TargetStructureID": 6136, + "Label": "59229-6136 via Conventional from 85556 -> 85557", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85556, + "TargetID": 85557, + "Directional": true + } + ] + }, + { + "ID": 14713, + "SourceStructureID": 59229, + "TargetStructureID": 59251, + "Label": "59229-59251 via Conventional from 59250 -> 59252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59250, + "TargetID": 59252, + "Directional": true + } + ] + }, + { + "ID": 14714, + "SourceStructureID": 59229, + "TargetStructureID": 59257, + "Label": "59229-59257 via Conventional from 59256 -> 59258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59256, + "TargetID": 59258, + "Directional": true + } + ] + }, + { + "ID": 14715, + "SourceStructureID": 59243, + "TargetStructureID": 59223, + "Label": "59243-59223 via Conventional from 59244 -> 59242", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59244, + "TargetID": 59242, + "Directional": true + } + ] + }, + { + "ID": 14716, + "SourceStructureID": 59247, + "TargetStructureID": 7144, + "Label": "59247-7144 via Conventional from 59248 -> 59246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59248, + "TargetID": 59246, + "Directional": true + } + ] + }, + { + "ID": 14717, + "SourceStructureID": 59251, + "TargetStructureID": 59254, + "Label": "59251-59254 via Conventional from 59253 -> 59255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59253, + "TargetID": 59255, + "Directional": true + } + ] + }, + { + "ID": 14718, + "SourceStructureID": 59262, + "TargetStructureID": 5497, + "Label": "59262-5497 via Ribbon Synapse from 62621 -> 62620, 62624 -> 62623, 62625 -> 62626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62621, + "TargetID": 62620, + "Directional": true + }, + { + "SourceID": 62624, + "TargetID": 62623, + "Directional": true + }, + { + "SourceID": 62625, + "TargetID": 62626, + "Directional": true + } + ] + }, + { + "ID": 14719, + "SourceStructureID": 59262, + "TargetStructureID": 59229, + "Label": "59262-59229 via Ribbon Synapse from 59263 -> 59261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59263, + "TargetID": 59261, + "Directional": true + } + ] + }, + { + "ID": 14720, + "SourceStructureID": 59262, + "TargetStructureID": 59294, + "Label": "59262-59294 via Ribbon Synapse from 122437 -> 122438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122437, + "TargetID": 122438, + "Directional": true + } + ] + }, + { + "ID": 14721, + "SourceStructureID": 59262, + "TargetStructureID": 62627, + "Label": "59262-62627 via BC Conventional Synapse from 59292 -> 62628", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59292, + "TargetID": 62628, + "Directional": true + } + ] + }, + { + "ID": 14722, + "SourceStructureID": 59294, + "TargetStructureID": 5566, + "Label": "59294-5566 via Conventional from 59298 -> 59321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59298, + "TargetID": 59321, + "Directional": true + } + ] + }, + { + "ID": 14723, + "SourceStructureID": 59294, + "TargetStructureID": 59262, + "Label": "59294-59262 via Conventional from 59297 -> 122439, 59297 -> 122446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59297, + "TargetID": 122439, + "Directional": true + }, + { + "SourceID": 59297, + "TargetID": 122446, + "Directional": true + } + ] + }, + { + "ID": 14724, + "SourceStructureID": 59316, + "TargetStructureID": 5566, + "Label": "59316-5566 via Conventional from 59318 -> 59317", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59318, + "TargetID": 59317, + "Directional": true + } + ] + }, + { + "ID": 14725, + "SourceStructureID": 59326, + "TargetStructureID": 4877, + "Label": "59326-4877 via Conventional from 59327 -> 59325", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59327, + "TargetID": 59325, + "Directional": true + } + ] + }, + { + "ID": 14726, + "SourceStructureID": 59329, + "TargetStructureID": 4877, + "Label": "59329-4877 via Conventional from 59330 -> 59328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59330, + "TargetID": 59328, + "Directional": true + } + ] + }, + { + "ID": 14727, + "SourceStructureID": 59331, + "TargetStructureID": 59145, + "Label": "59331-59145 via Conventional from 59332 -> 59153", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59332, + "TargetID": 59153, + "Directional": true + } + ] + }, + { + "ID": 14728, + "SourceStructureID": 59333, + "TargetStructureID": 5497, + "Label": "59333-5497 via Conventional from 85041 -> 85043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85041, + "TargetID": 85043, + "Directional": true + } + ] + }, + { + "ID": 14729, + "SourceStructureID": 59333, + "TargetStructureID": 5500, + "Label": "59333-5500 via Conventional from 59354 -> 59356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59354, + "TargetID": 59356, + "Directional": true + } + ] + }, + { + "ID": 14730, + "SourceStructureID": 59333, + "TargetStructureID": 58441, + "Label": "59333-58441 via Conventional from 59352 -> 59353", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59352, + "TargetID": 59353, + "Directional": true + } + ] + }, + { + "ID": 14731, + "SourceStructureID": 59333, + "TargetStructureID": 59347, + "Label": "59333-59347 via Conventional from 59338 -> 59348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59338, + "TargetID": 59348, + "Directional": true + } + ] + }, + { + "ID": 14732, + "SourceStructureID": 59333, + "TargetStructureID": 85044, + "Label": "59333-85044 via Conventional from 85042 -> 85047", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85042, + "TargetID": 85047, + "Directional": true + } + ] + }, + { + "ID": 14733, + "SourceStructureID": 59333, + "TargetStructureID": 85053, + "Label": "59333-85053 via Conventional from 85052 -> 85054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85052, + "TargetID": 85054, + "Directional": true + } + ] + }, + { + "ID": 14734, + "SourceStructureID": 59333, + "TargetStructureID": 85059, + "Label": "59333-85059 via Conventional from 85058 -> 85060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85058, + "TargetID": 85060, + "Directional": true + } + ] + }, + { + "ID": 14735, + "SourceStructureID": 59333, + "TargetStructureID": 85079, + "Label": "59333-85079 via Conventional from 85078 -> 85081", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85078, + "TargetID": 85081, + "Directional": true + } + ] + }, + { + "ID": 14736, + "SourceStructureID": 59340, + "TargetStructureID": 58441, + "Label": "59340-58441 via Conventional from 59342 -> 59343", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59342, + "TargetID": 59343, + "Directional": true + } + ] + }, + { + "ID": 14737, + "SourceStructureID": 59362, + "TargetStructureID": 5435, + "Label": "59362-5435 via Ribbon Synapse from 63792 -> 63793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63792, + "TargetID": 63793, + "Directional": true + } + ] + }, + { + "ID": 14738, + "SourceStructureID": 59362, + "TargetStructureID": 5497, + "Label": "59362-5497 via Ribbon Synapse from 59370 -> 62570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59370, + "TargetID": 62570, + "Directional": true + } + ] + }, + { + "ID": 14739, + "SourceStructureID": 59362, + "TargetStructureID": 7859, + "Label": "59362-7859 via Ribbon Synapse from 122452 -> 64638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122452, + "TargetID": 64638, + "Directional": true + } + ] + }, + { + "ID": 14740, + "SourceStructureID": 59362, + "TargetStructureID": 63628, + "Label": "59362-63628 via Ribbon Synapse from 63795 -> 63784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63795, + "TargetID": 63784, + "Directional": true + } + ] + }, + { + "ID": 14741, + "SourceStructureID": 59371, + "TargetStructureID": 59362, + "Label": "59371-59362 via Conventional from 59374 -> 59375", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59374, + "TargetID": 59375, + "Directional": true + } + ] + }, + { + "ID": 14742, + "SourceStructureID": 59392, + "TargetStructureID": 5405, + "Label": "59392-5405 via Ribbon Synapse from 59416 -> 59418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59416, + "TargetID": 59418, + "Directional": true + } + ] + }, + { + "ID": 14743, + "SourceStructureID": 59392, + "TargetStructureID": 5497, + "Label": "59392-5497 via Ribbon Synapse from 59398 -> 62554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59398, + "TargetID": 62554, + "Directional": true + } + ] + }, + { + "ID": 14744, + "SourceStructureID": 59422, + "TargetStructureID": 166, + "Label": "59422-166 via Conventional from 59449 -> 59450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59449, + "TargetID": 59450, + "Directional": true + } + ] + }, + { + "ID": 14745, + "SourceStructureID": 59422, + "TargetStructureID": 483, + "Label": "59422-483 via Conventional from 59447 -> 59448, 59459 -> 51180, 59462 -> 59463, 59465 -> 6727, 59467 -> 59468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59447, + "TargetID": 59448, + "Directional": true + }, + { + "SourceID": 59459, + "TargetID": 51180, + "Directional": true + }, + { + "SourceID": 59462, + "TargetID": 59463, + "Directional": true + }, + { + "SourceID": 59465, + "TargetID": 6727, + "Directional": true + }, + { + "SourceID": 59467, + "TargetID": 59468, + "Directional": true + } + ] + }, + { + "ID": 14746, + "SourceStructureID": 59422, + "TargetStructureID": 593, + "Label": "59422-593 via Conventional from 59426 -> 28402, 59505 -> 7702, 63964 -> 63962, 66650 -> 66649", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59426, + "TargetID": 28402, + "Directional": true + }, + { + "SourceID": 59505, + "TargetID": 7702, + "Directional": true + }, + { + "SourceID": 63964, + "TargetID": 63962, + "Directional": true + }, + { + "SourceID": 66650, + "TargetID": 66649, + "Directional": true + } + ] + }, + { + "ID": 14747, + "SourceStructureID": 59422, + "TargetStructureID": 5283, + "Label": "59422-5283 via Conventional from 59515 -> 24052", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59515, + "TargetID": 24052, + "Directional": true + } + ] + }, + { + "ID": 14748, + "SourceStructureID": 59422, + "TargetStructureID": 6156, + "Label": "59422-6156 via Conventional from 59424 -> 59425, 59434 -> 28643, 117714 -> 117715", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59424, + "TargetID": 59425, + "Directional": true + }, + { + "SourceID": 59434, + "TargetID": 28643, + "Directional": true + }, + { + "SourceID": 117714, + "TargetID": 117715, + "Directional": true + } + ] + }, + { + "ID": 14749, + "SourceStructureID": 59422, + "TargetStructureID": 16026, + "Label": "59422-16026 via Conventional from 59516 -> 22382", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59516, + "TargetID": 22382, + "Directional": true + } + ] + }, + { + "ID": 14750, + "SourceStructureID": 59437, + "TargetStructureID": 483, + "Label": "59437-483 via Conventional from 59438 -> 6777", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59438, + "TargetID": 6777, + "Directional": true + } + ] + }, + { + "ID": 14751, + "SourceStructureID": 59482, + "TargetStructureID": 5377, + "Label": "59482-5377 via Conventional from 87033 -> 87032", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87033, + "TargetID": 87032, + "Directional": true + } + ] + }, + { + "ID": 14752, + "SourceStructureID": 59507, + "TargetStructureID": 59422, + "Label": "59507-59422 via Conventional from 59508 -> 59506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59508, + "TargetID": 59506, + "Directional": true + } + ] + }, + { + "ID": 14753, + "SourceStructureID": 59510, + "TargetStructureID": 59422, + "Label": "59510-59422 via Conventional from 59511 -> 59509", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59511, + "TargetID": 59509, + "Directional": true + } + ] + }, + { + "ID": 14754, + "SourceStructureID": 59518, + "TargetStructureID": 59422, + "Label": "59518-59422 via Conventional from 59519 -> 59517", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59519, + "TargetID": 59517, + "Directional": true + } + ] + }, + { + "ID": 14755, + "SourceStructureID": 59521, + "TargetStructureID": 59422, + "Label": "59521-59422 via Conventional from 59522 -> 59520", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59522, + "TargetID": 59520, + "Directional": true + } + ] + }, + { + "ID": 14756, + "SourceStructureID": 59524, + "TargetStructureID": 16073, + "Label": "59524-16073 via Conventional from 59544 -> 32212", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59544, + "TargetID": 32212, + "Directional": true + } + ] + }, + { + "ID": 14757, + "SourceStructureID": 59524, + "TargetStructureID": 59539, + "Label": "59524-59539 via Conventional from 59538 -> 59540", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59538, + "TargetID": 59540, + "Directional": true + } + ] + }, + { + "ID": 14758, + "SourceStructureID": 59535, + "TargetStructureID": 59524, + "Label": "59535-59524 via Conventional from 59536 -> 59534", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59536, + "TargetID": 59534, + "Directional": true + } + ] + }, + { + "ID": 14759, + "SourceStructureID": 59632, + "TargetStructureID": 59629, + "Label": "59632-59629 via Conventional from 59633 -> 59631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59633, + "TargetID": 59631, + "Directional": true + } + ] + }, + { + "ID": 14760, + "SourceStructureID": 59638, + "TargetStructureID": 5382, + "Label": "59638-5382 via Ribbon Synapse from 59640 -> 59639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59640, + "TargetID": 59639, + "Directional": true + } + ] + }, + { + "ID": 14761, + "SourceStructureID": 59638, + "TargetStructureID": 6857, + "Label": "59638-6857 via Ribbon Synapse from 159480 -> 35031, 159481 -> 159482", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159480, + "TargetID": 35031, + "Directional": true + }, + { + "SourceID": 159481, + "TargetID": 159482, + "Directional": true + } + ] + }, + { + "ID": 14762, + "SourceStructureID": 59715, + "TargetStructureID": 8580, + "Label": "59715-8580 via Conventional from 59716 -> 59714", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59716, + "TargetID": 59714, + "Directional": true + } + ] + }, + { + "ID": 14763, + "SourceStructureID": 59718, + "TargetStructureID": 8580, + "Label": "59718-8580 via Conventional from 59719 -> 59717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59719, + "TargetID": 59717, + "Directional": true + } + ] + }, + { + "ID": 14764, + "SourceStructureID": 59721, + "TargetStructureID": 8580, + "Label": "59721-8580 via Conventional from 59722 -> 59720", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59722, + "TargetID": 59720, + "Directional": true + } + ] + }, + { + "ID": 14765, + "SourceStructureID": 59726, + "TargetStructureID": 8580, + "Label": "59726-8580 via Conventional from 59727 -> 59725", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59727, + "TargetID": 59725, + "Directional": true + } + ] + }, + { + "ID": 14766, + "SourceStructureID": 59731, + "TargetStructureID": 8580, + "Label": "59731-8580 via Conventional from 59732 -> 59730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59732, + "TargetID": 59730, + "Directional": true + } + ] + }, + { + "ID": 14767, + "SourceStructureID": 59734, + "TargetStructureID": 8580, + "Label": "59734-8580 via Conventional from 59735 -> 59733", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59735, + "TargetID": 59733, + "Directional": true + } + ] + }, + { + "ID": 14768, + "SourceStructureID": 59737, + "TargetStructureID": 8580, + "Label": "59737-8580 via Conventional from 59738 -> 59736", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59738, + "TargetID": 59736, + "Directional": true + } + ] + }, + { + "ID": 14769, + "SourceStructureID": 59751, + "TargetStructureID": 8580, + "Label": "59751-8580 via Conventional from 59752 -> 59750", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59752, + "TargetID": 59750, + "Directional": true + } + ] + }, + { + "ID": 14770, + "SourceStructureID": 59756, + "TargetStructureID": 8580, + "Label": "59756-8580 via Conventional from 59757 -> 59755", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59757, + "TargetID": 59755, + "Directional": true + } + ] + }, + { + "ID": 14771, + "SourceStructureID": 59761, + "TargetStructureID": 8580, + "Label": "59761-8580 via Conventional from 59762 -> 59760", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59762, + "TargetID": 59760, + "Directional": true + } + ] + }, + { + "ID": 14772, + "SourceStructureID": 59763, + "TargetStructureID": 8580, + "Label": "59763-8580 via Conventional from 59764 -> 59759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59764, + "TargetID": 59759, + "Directional": true + } + ] + }, + { + "ID": 14773, + "SourceStructureID": 59766, + "TargetStructureID": 8580, + "Label": "59766-8580 via Conventional from 59767 -> 59765", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59767, + "TargetID": 59765, + "Directional": true + } + ] + }, + { + "ID": 14774, + "SourceStructureID": 59769, + "TargetStructureID": 8580, + "Label": "59769-8580 via Conventional from 59770 -> 59768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59770, + "TargetID": 59768, + "Directional": true + } + ] + }, + { + "ID": 14775, + "SourceStructureID": 59772, + "TargetStructureID": 8580, + "Label": "59772-8580 via Conventional from 59773 -> 59771", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59773, + "TargetID": 59771, + "Directional": true + } + ] + }, + { + "ID": 14776, + "SourceStructureID": 59775, + "TargetStructureID": 8580, + "Label": "59775-8580 via Conventional from 59776 -> 59774", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59776, + "TargetID": 59774, + "Directional": true + } + ] + }, + { + "ID": 14777, + "SourceStructureID": 59779, + "TargetStructureID": 8580, + "Label": "59779-8580 via Conventional from 59780 -> 59778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59780, + "TargetID": 59778, + "Directional": true + } + ] + }, + { + "ID": 14778, + "SourceStructureID": 59782, + "TargetStructureID": 8580, + "Label": "59782-8580 via Conventional from 59783 -> 59781", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59783, + "TargetID": 59781, + "Directional": true + } + ] + }, + { + "ID": 14779, + "SourceStructureID": 59785, + "TargetStructureID": 8580, + "Label": "59785-8580 via Conventional from 59786 -> 59784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59786, + "TargetID": 59784, + "Directional": true + } + ] + }, + { + "ID": 14780, + "SourceStructureID": 59796, + "TargetStructureID": 8580, + "Label": "59796-8580 via Conventional from 59797 -> 59795", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59797, + "TargetID": 59795, + "Directional": true + } + ] + }, + { + "ID": 14781, + "SourceStructureID": 59801, + "TargetStructureID": 8580, + "Label": "59801-8580 via Conventional from 59802 -> 59800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59802, + "TargetID": 59800, + "Directional": true + } + ] + }, + { + "ID": 14782, + "SourceStructureID": 59804, + "TargetStructureID": 8580, + "Label": "59804-8580 via Conventional from 59805 -> 59803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59805, + "TargetID": 59803, + "Directional": true + } + ] + }, + { + "ID": 14783, + "SourceStructureID": 59811, + "TargetStructureID": 8580, + "Label": "59811-8580 via Conventional from 59812 -> 59809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59812, + "TargetID": 59809, + "Directional": true + } + ] + }, + { + "ID": 14784, + "SourceStructureID": 59813, + "TargetStructureID": 8580, + "Label": "59813-8580 via Conventional from 59814 -> 59810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59814, + "TargetID": 59810, + "Directional": true + } + ] + }, + { + "ID": 14785, + "SourceStructureID": 59816, + "TargetStructureID": 8580, + "Label": "59816-8580 via Conventional from 59817 -> 59815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59817, + "TargetID": 59815, + "Directional": true + } + ] + }, + { + "ID": 14786, + "SourceStructureID": 59819, + "TargetStructureID": 8580, + "Label": "59819-8580 via Conventional from 59820 -> 59818", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59820, + "TargetID": 59818, + "Directional": true + } + ] + }, + { + "ID": 14787, + "SourceStructureID": 59822, + "TargetStructureID": 8580, + "Label": "59822-8580 via Conventional from 59823 -> 59821", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59823, + "TargetID": 59821, + "Directional": true + } + ] + }, + { + "ID": 14788, + "SourceStructureID": 59825, + "TargetStructureID": 8580, + "Label": "59825-8580 via Conventional from 59826 -> 59824", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59826, + "TargetID": 59824, + "Directional": true + } + ] + }, + { + "ID": 14789, + "SourceStructureID": 59830, + "TargetStructureID": 8580, + "Label": "59830-8580 via Conventional from 59831 -> 59829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59831, + "TargetID": 59829, + "Directional": true + } + ] + }, + { + "ID": 14790, + "SourceStructureID": 59837, + "TargetStructureID": 8580, + "Label": "59837-8580 via Conventional from 59839 -> 59838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59839, + "TargetID": 59838, + "Directional": true + } + ] + }, + { + "ID": 14791, + "SourceStructureID": 59841, + "TargetStructureID": 8580, + "Label": "59841-8580 via Conventional from 59842 -> 59840", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59842, + "TargetID": 59840, + "Directional": true + } + ] + }, + { + "ID": 14792, + "SourceStructureID": 59847, + "TargetStructureID": 59843, + "Label": "59847-59843 via Conventional from 59848 -> 59846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59848, + "TargetID": 59846, + "Directional": true + } + ] + }, + { + "ID": 14793, + "SourceStructureID": 59851, + "TargetStructureID": 8580, + "Label": "59851-8580 via Conventional from 59852 -> 59850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59852, + "TargetID": 59850, + "Directional": true + } + ] + }, + { + "ID": 14794, + "SourceStructureID": 59854, + "TargetStructureID": 8580, + "Label": "59854-8580 via Conventional from 59855 -> 59853", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59855, + "TargetID": 59853, + "Directional": true + } + ] + }, + { + "ID": 14795, + "SourceStructureID": 59857, + "TargetStructureID": 8580, + "Label": "59857-8580 via Conventional from 59858 -> 59856", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59858, + "TargetID": 59856, + "Directional": true + } + ] + }, + { + "ID": 14796, + "SourceStructureID": 59862, + "TargetStructureID": 8580, + "Label": "59862-8580 via Conventional from 59863 -> 59861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59863, + "TargetID": 59861, + "Directional": true + } + ] + }, + { + "ID": 14797, + "SourceStructureID": 59865, + "TargetStructureID": 8580, + "Label": "59865-8580 via Conventional from 59866 -> 59864", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59866, + "TargetID": 59864, + "Directional": true + } + ] + }, + { + "ID": 14798, + "SourceStructureID": 59868, + "TargetStructureID": 8580, + "Label": "59868-8580 via Conventional from 59869 -> 59867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59869, + "TargetID": 59867, + "Directional": true + } + ] + }, + { + "ID": 14799, + "SourceStructureID": 59872, + "TargetStructureID": 8580, + "Label": "59872-8580 via Conventional from 59873 -> 59870", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59873, + "TargetID": 59870, + "Directional": true + } + ] + }, + { + "ID": 14800, + "SourceStructureID": 59890, + "TargetStructureID": 8580, + "Label": "59890-8580 via Conventional from 59891 -> 59660", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59891, + "TargetID": 59660, + "Directional": true + } + ] + }, + { + "ID": 14801, + "SourceStructureID": 59896, + "TargetStructureID": 5491, + "Label": "59896-5491 via Conventional from 59897 -> 41950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59897, + "TargetID": 41950, + "Directional": true + } + ] + }, + { + "ID": 14802, + "SourceStructureID": 59904, + "TargetStructureID": 8578, + "Label": "59904-8578 via Conventional from 59905 -> 59903", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59905, + "TargetID": 59903, + "Directional": true + } + ] + }, + { + "ID": 14803, + "SourceStructureID": 59910, + "TargetStructureID": 8578, + "Label": "59910-8578 via Conventional from 59911 -> 59909", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59911, + "TargetID": 59909, + "Directional": true + } + ] + }, + { + "ID": 14804, + "SourceStructureID": 59913, + "TargetStructureID": 8578, + "Label": "59913-8578 via Conventional from 59914 -> 59912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59914, + "TargetID": 59912, + "Directional": true + } + ] + }, + { + "ID": 14805, + "SourceStructureID": 59916, + "TargetStructureID": 8578, + "Label": "59916-8578 via BC Conventional Synapse from 59917 -> 59915", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59917, + "TargetID": 59915, + "Directional": true + } + ] + }, + { + "ID": 14806, + "SourceStructureID": 59919, + "TargetStructureID": 8578, + "Label": "59919-8578 via Ribbon Synapse from 59920 -> 59918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 59920, + "TargetID": 59918, + "Directional": true + } + ] + }, + { + "ID": 14807, + "SourceStructureID": 59922, + "TargetStructureID": 8578, + "Label": "59922-8578 via Conventional from 59923 -> 59921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59923, + "TargetID": 59921, + "Directional": true + } + ] + }, + { + "ID": 14808, + "SourceStructureID": 59929, + "TargetStructureID": 8578, + "Label": "59929-8578 via Conventional from 59930 -> 59928", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59930, + "TargetID": 59928, + "Directional": true + } + ] + }, + { + "ID": 14809, + "SourceStructureID": 59932, + "TargetStructureID": 8578, + "Label": "59932-8578 via Conventional from 59933 -> 59931", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59933, + "TargetID": 59931, + "Directional": true + } + ] + }, + { + "ID": 14810, + "SourceStructureID": 59935, + "TargetStructureID": 8578, + "Label": "59935-8578 via Conventional from 59936 -> 59934", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59936, + "TargetID": 59934, + "Directional": true + } + ] + }, + { + "ID": 14811, + "SourceStructureID": 59940, + "TargetStructureID": 40480, + "Label": "59940-40480 via Conventional from 59941 -> 59939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59941, + "TargetID": 59939, + "Directional": true + } + ] + }, + { + "ID": 14812, + "SourceStructureID": 59943, + "TargetStructureID": 40480, + "Label": "59943-40480 via Conventional from 59944 -> 59942", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59944, + "TargetID": 59942, + "Directional": true + } + ] + }, + { + "ID": 14813, + "SourceStructureID": 59947, + "TargetStructureID": 40480, + "Label": "59947-40480 via Conventional from 59948 -> 59946", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59948, + "TargetID": 59946, + "Directional": true + } + ] + }, + { + "ID": 14814, + "SourceStructureID": 59953, + "TargetStructureID": 40480, + "Label": "59953-40480 via Conventional from 59954 -> 59952", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59954, + "TargetID": 59952, + "Directional": true + } + ] + }, + { + "ID": 14815, + "SourceStructureID": 59957, + "TargetStructureID": 40480, + "Label": "59957-40480 via Conventional from 59958 -> 59956", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59958, + "TargetID": 59956, + "Directional": true + } + ] + }, + { + "ID": 14816, + "SourceStructureID": 59960, + "TargetStructureID": 40480, + "Label": "59960-40480 via Conventional from 59961 -> 59959", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59961, + "TargetID": 59959, + "Directional": true + } + ] + }, + { + "ID": 14817, + "SourceStructureID": 59963, + "TargetStructureID": 40480, + "Label": "59963-40480 via Conventional from 59964 -> 59962", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59964, + "TargetID": 59962, + "Directional": true + } + ] + }, + { + "ID": 14818, + "SourceStructureID": 59966, + "TargetStructureID": 59963, + "Label": "59966-59963 via Conventional from 59968 -> 59965", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 59968, + "TargetID": 59965, + "Directional": true + } + ] + }, + { + "ID": 14819, + "SourceStructureID": 60067, + "TargetStructureID": 173, + "Label": "60067-173 via Conventional from 60068 -> 60066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60068, + "TargetID": 60066, + "Directional": true + } + ] + }, + { + "ID": 14820, + "SourceStructureID": 60074, + "TargetStructureID": 8720, + "Label": "60074-8720 via Conventional from 60075 -> 15293", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60075, + "TargetID": 15293, + "Directional": true + } + ] + }, + { + "ID": 14821, + "SourceStructureID": 60078, + "TargetStructureID": 8720, + "Label": "60078-8720 via Conventional from 60079 -> 60077", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60079, + "TargetID": 60077, + "Directional": true + } + ] + }, + { + "ID": 14822, + "SourceStructureID": 60083, + "TargetStructureID": 8720, + "Label": "60083-8720 via Conventional from 60084 -> 60082", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60084, + "TargetID": 60082, + "Directional": true + } + ] + }, + { + "ID": 14823, + "SourceStructureID": 60083, + "TargetStructureID": 67354, + "Label": "60083-67354 via Conventional from 91536 -> 91535", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91536, + "TargetID": 91535, + "Directional": true + } + ] + }, + { + "ID": 14824, + "SourceStructureID": 60086, + "TargetStructureID": 8720, + "Label": "60086-8720 via Conventional from 60087 -> 15307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60087, + "TargetID": 15307, + "Directional": true + } + ] + }, + { + "ID": 14825, + "SourceStructureID": 60088, + "TargetStructureID": 8720, + "Label": "60088-8720 via Conventional from 60089 -> 15309", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60089, + "TargetID": 15309, + "Directional": true + } + ] + }, + { + "ID": 14826, + "SourceStructureID": 60088, + "TargetStructureID": 65267, + "Label": "60088-65267 via Conventional from 65300 -> 65299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65300, + "TargetID": 65299, + "Directional": true + } + ] + }, + { + "ID": 14827, + "SourceStructureID": 60090, + "TargetStructureID": 8720, + "Label": "60090-8720 via Conventional from 60091 -> 15308", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60091, + "TargetID": 15308, + "Directional": true + } + ] + }, + { + "ID": 14828, + "SourceStructureID": 60094, + "TargetStructureID": 8720, + "Label": "60094-8720 via Ribbon Synapse from 60095 -> 15311", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60095, + "TargetID": 15311, + "Directional": true + } + ] + }, + { + "ID": 14829, + "SourceStructureID": 60098, + "TargetStructureID": 8720, + "Label": "60098-8720 via Conventional from 60099 -> 60097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60099, + "TargetID": 60097, + "Directional": true + } + ] + }, + { + "ID": 14830, + "SourceStructureID": 60100, + "TargetStructureID": 8720, + "Label": "60100-8720 via Conventional from 60101 -> 15312", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60101, + "TargetID": 15312, + "Directional": true + } + ] + }, + { + "ID": 14831, + "SourceStructureID": 60104, + "TargetStructureID": 8720, + "Label": "60104-8720 via Conventional from 60105 -> 15294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60105, + "TargetID": 15294, + "Directional": true + } + ] + }, + { + "ID": 14832, + "SourceStructureID": 60106, + "TargetStructureID": 8720, + "Label": "60106-8720 via Conventional from 60107 -> 15297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60107, + "TargetID": 15297, + "Directional": true + } + ] + }, + { + "ID": 14833, + "SourceStructureID": 60115, + "TargetStructureID": 8720, + "Label": "60115-8720 via Conventional from 60116 -> 60114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60116, + "TargetID": 60114, + "Directional": true + } + ] + }, + { + "ID": 14834, + "SourceStructureID": 60191, + "TargetStructureID": 483, + "Label": "60191-483 via Conventional from 60192 -> 6781", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60192, + "TargetID": 6781, + "Directional": true + } + ] + }, + { + "ID": 14835, + "SourceStructureID": 60193, + "TargetStructureID": 483, + "Label": "60193-483 via Conventional from 60194 -> 6790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60194, + "TargetID": 6790, + "Directional": true + } + ] + }, + { + "ID": 14836, + "SourceStructureID": 60200, + "TargetStructureID": 483, + "Label": "60200-483 via Conventional from 60203 -> 6788", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60203, + "TargetID": 6788, + "Directional": true + } + ] + }, + { + "ID": 14837, + "SourceStructureID": 60211, + "TargetStructureID": 483, + "Label": "60211-483 via Conventional from 60212 -> 6792", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60212, + "TargetID": 6792, + "Directional": true + } + ] + }, + { + "ID": 14838, + "SourceStructureID": 60215, + "TargetStructureID": 483, + "Label": "60215-483 via Conventional from 60220 -> 6793", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60220, + "TargetID": 6793, + "Directional": true + } + ] + }, + { + "ID": 14839, + "SourceStructureID": 60218, + "TargetStructureID": 483, + "Label": "60218-483 via Conventional from 60219 -> 6799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60219, + "TargetID": 6799, + "Directional": true + } + ] + }, + { + "ID": 14840, + "SourceStructureID": 60221, + "TargetStructureID": 483, + "Label": "60221-483 via Conventional from 60222 -> 6795", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60222, + "TargetID": 6795, + "Directional": true + } + ] + }, + { + "ID": 14841, + "SourceStructureID": 60225, + "TargetStructureID": 483, + "Label": "60225-483 via Conventional from 60226 -> 6800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60226, + "TargetID": 6800, + "Directional": true + } + ] + }, + { + "ID": 14842, + "SourceStructureID": 60232, + "TargetStructureID": 60229, + "Label": "60232-60229 via Conventional from 60233 -> 60231", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60233, + "TargetID": 60231, + "Directional": true + } + ] + }, + { + "ID": 14843, + "SourceStructureID": 60236, + "TargetStructureID": 483, + "Label": "60236-483 via Conventional from 60237 -> 60235", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60237, + "TargetID": 60235, + "Directional": true + } + ] + }, + { + "ID": 14844, + "SourceStructureID": 60239, + "TargetStructureID": 483, + "Label": "60239-483 via Conventional from 60240 -> 60238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60240, + "TargetID": 60238, + "Directional": true + } + ] + }, + { + "ID": 14845, + "SourceStructureID": 60243, + "TargetStructureID": 5528, + "Label": "60243-5528 via Conventional from 60245 -> 60249", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60245, + "TargetID": 60249, + "Directional": true + } + ] + }, + { + "ID": 14846, + "SourceStructureID": 60243, + "TargetStructureID": 8720, + "Label": "60243-8720 via Conventional from 60244 -> 60242", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60244, + "TargetID": 60242, + "Directional": true + } + ] + }, + { + "ID": 14847, + "SourceStructureID": 60246, + "TargetStructureID": 5528, + "Label": "60246-5528 via Conventional from 60247 -> 8264", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60247, + "TargetID": 8264, + "Directional": true + } + ] + }, + { + "ID": 14848, + "SourceStructureID": 60252, + "TargetStructureID": 8720, + "Label": "60252-8720 via Conventional from 60253 -> 60251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60253, + "TargetID": 60251, + "Directional": true + } + ] + }, + { + "ID": 14849, + "SourceStructureID": 60256, + "TargetStructureID": 8720, + "Label": "60256-8720 via Conventional from 60257 -> 60255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60257, + "TargetID": 60255, + "Directional": true + } + ] + }, + { + "ID": 14850, + "SourceStructureID": 60260, + "TargetStructureID": 8720, + "Label": "60260-8720 via Conventional from 60261 -> 60259", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60261, + "TargetID": 60259, + "Directional": true + } + ] + }, + { + "ID": 14851, + "SourceStructureID": 60264, + "TargetStructureID": 431, + "Label": "60264-431 via Conventional from 60266 -> 12686", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60266, + "TargetID": 12686, + "Directional": true + } + ] + }, + { + "ID": 14852, + "SourceStructureID": 60264, + "TargetStructureID": 8720, + "Label": "60264-8720 via Conventional from 60265 -> 60263", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60265, + "TargetID": 60263, + "Directional": true + } + ] + }, + { + "ID": 14853, + "SourceStructureID": 60272, + "TargetStructureID": 440, + "Label": "60272-440 via Conventional from 60274 -> 60271", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60274, + "TargetID": 60271, + "Directional": true + } + ] + }, + { + "ID": 14854, + "SourceStructureID": 60288, + "TargetStructureID": 440, + "Label": "60288-440 via Conventional from 60289 -> 60287", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60289, + "TargetID": 60287, + "Directional": true + } + ] + }, + { + "ID": 14855, + "SourceStructureID": 60306, + "TargetStructureID": 440, + "Label": "60306-440 via Conventional from 60307 -> 60305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60307, + "TargetID": 60305, + "Directional": true + } + ] + }, + { + "ID": 14856, + "SourceStructureID": 60328, + "TargetStructureID": 8720, + "Label": "60328-8720 via Conventional from 60329 -> 60327", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60329, + "TargetID": 60327, + "Directional": true + } + ] + }, + { + "ID": 14857, + "SourceStructureID": 60331, + "TargetStructureID": 483, + "Label": "60331-483 via Conventional from 60332 -> 6796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60332, + "TargetID": 6796, + "Directional": true + } + ] + }, + { + "ID": 14858, + "SourceStructureID": 60337, + "TargetStructureID": 483, + "Label": "60337-483 via Conventional from 60342 -> 60343", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60342, + "TargetID": 60343, + "Directional": true + } + ] + }, + { + "ID": 14859, + "SourceStructureID": 60344, + "TargetStructureID": 483, + "Label": "60344-483 via Conventional from 60345 -> 6809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60345, + "TargetID": 6809, + "Directional": true + } + ] + }, + { + "ID": 14860, + "SourceStructureID": 60346, + "TargetStructureID": 483, + "Label": "60346-483 via Conventional from 60347 -> 6807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60347, + "TargetID": 6807, + "Directional": true + } + ] + }, + { + "ID": 14861, + "SourceStructureID": 60348, + "TargetStructureID": 483, + "Label": "60348-483 via Conventional from 60349 -> 6810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60349, + "TargetID": 6810, + "Directional": true + } + ] + }, + { + "ID": 14862, + "SourceStructureID": 60350, + "TargetStructureID": 483, + "Label": "60350-483 via Conventional from 60351 -> 6808", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60351, + "TargetID": 6808, + "Directional": true + } + ] + }, + { + "ID": 14863, + "SourceStructureID": 60354, + "TargetStructureID": 483, + "Label": "60354-483 via Conventional from 60355 -> 6815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60355, + "TargetID": 6815, + "Directional": true + } + ] + }, + { + "ID": 14864, + "SourceStructureID": 60381, + "TargetStructureID": 992, + "Label": "60381-992 via Conventional from 60382 -> 994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60382, + "TargetID": 994, + "Directional": true + } + ] + }, + { + "ID": 14865, + "SourceStructureID": 60381, + "TargetStructureID": 60386, + "Label": "60381-60386 via Conventional from 60385 -> 60387", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60385, + "TargetID": 60387, + "Directional": true + } + ] + }, + { + "ID": 14866, + "SourceStructureID": 60389, + "TargetStructureID": 60386, + "Label": "60389-60386 via Conventional from 60390 -> 60388", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60390, + "TargetID": 60388, + "Directional": true + } + ] + }, + { + "ID": 14867, + "SourceStructureID": 60424, + "TargetStructureID": 514, + "Label": "60424-514 via Conventional from 60425 -> 15468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60425, + "TargetID": 15468, + "Directional": true + } + ] + }, + { + "ID": 14868, + "SourceStructureID": 60426, + "TargetStructureID": 514, + "Label": "60426-514 via Conventional from 60427 -> 15467", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60427, + "TargetID": 15467, + "Directional": true + } + ] + }, + { + "ID": 14869, + "SourceStructureID": 60428, + "TargetStructureID": 514, + "Label": "60428-514 via Conventional from 60429 -> 1156", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60429, + "TargetID": 1156, + "Directional": true + } + ] + }, + { + "ID": 14870, + "SourceStructureID": 60430, + "TargetStructureID": 514, + "Label": "60430-514 via Conventional from 60431 -> 1145", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60431, + "TargetID": 1145, + "Directional": true + } + ] + }, + { + "ID": 14871, + "SourceStructureID": 60432, + "TargetStructureID": 8485, + "Label": "60432-8485 via Conventional from 60433 -> 15369", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60433, + "TargetID": 15369, + "Directional": true + } + ] + }, + { + "ID": 14872, + "SourceStructureID": 60434, + "TargetStructureID": 8485, + "Label": "60434-8485 via Conventional from 60435 -> 15368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60435, + "TargetID": 15368, + "Directional": true + } + ] + }, + { + "ID": 14873, + "SourceStructureID": 60436, + "TargetStructureID": 514, + "Label": "60436-514 via Conventional from 60437 -> 8941", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60437, + "TargetID": 8941, + "Directional": true + } + ] + }, + { + "ID": 14874, + "SourceStructureID": 60438, + "TargetStructureID": 514, + "Label": "60438-514 via Conventional from 60439 -> 3236", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60439, + "TargetID": 3236, + "Directional": true + } + ] + }, + { + "ID": 14875, + "SourceStructureID": 60449, + "TargetStructureID": 514, + "Label": "60449-514 via Conventional from 60450 -> 11669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60450, + "TargetID": 11669, + "Directional": true + } + ] + }, + { + "ID": 14876, + "SourceStructureID": 60451, + "TargetStructureID": 514, + "Label": "60451-514 via Conventional from 60452 -> 1140", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60452, + "TargetID": 1140, + "Directional": true + } + ] + }, + { + "ID": 14877, + "SourceStructureID": 60454, + "TargetStructureID": 597, + "Label": "60454-597 via Conventional from 60455 -> 60453", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60455, + "TargetID": 60453, + "Directional": true + } + ] + }, + { + "ID": 14878, + "SourceStructureID": 60457, + "TargetStructureID": 597, + "Label": "60457-597 via Conventional from 60458 -> 60456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60458, + "TargetID": 60456, + "Directional": true + } + ] + }, + { + "ID": 14879, + "SourceStructureID": 60460, + "TargetStructureID": 597, + "Label": "60460-597 via Conventional from 60461 -> 60459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60461, + "TargetID": 60459, + "Directional": true + } + ] + }, + { + "ID": 14880, + "SourceStructureID": 60463, + "TargetStructureID": 597, + "Label": "60463-597 via Conventional from 60464 -> 60462", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60464, + "TargetID": 60462, + "Directional": true + } + ] + }, + { + "ID": 14881, + "SourceStructureID": 60466, + "TargetStructureID": 597, + "Label": "60466-597 via Conventional from 60467 -> 60465", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60467, + "TargetID": 60465, + "Directional": true + } + ] + }, + { + "ID": 14882, + "SourceStructureID": 60484, + "TargetStructureID": 597, + "Label": "60484-597 via Conventional from 60485 -> 60483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60485, + "TargetID": 60483, + "Directional": true + } + ] + }, + { + "ID": 14883, + "SourceStructureID": 60487, + "TargetStructureID": 597, + "Label": "60487-597 via Conventional from 60488 -> 60486", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60488, + "TargetID": 60486, + "Directional": true + } + ] + }, + { + "ID": 14884, + "SourceStructureID": 60503, + "TargetStructureID": 40919, + "Label": "60503-40919 via Conventional from 60504 -> 60502", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60504, + "TargetID": 60502, + "Directional": true + } + ] + }, + { + "ID": 14885, + "SourceStructureID": 60519, + "TargetStructureID": 304, + "Label": "60519-304 via Conventional from 60520 -> 60518", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60520, + "TargetID": 60518, + "Directional": true + } + ] + }, + { + "ID": 14886, + "SourceStructureID": 60523, + "TargetStructureID": 517, + "Label": "60523-517 via Conventional from 60524 -> 60522", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60524, + "TargetID": 60522, + "Directional": true + } + ] + }, + { + "ID": 14887, + "SourceStructureID": 60535, + "TargetStructureID": 54744, + "Label": "60535-54744 via Conventional from 60536 -> 54753", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60536, + "TargetID": 54753, + "Directional": true + } + ] + }, + { + "ID": 14888, + "SourceStructureID": 60542, + "TargetStructureID": 60535, + "Label": "60542-60535 via Conventional from 60543 -> 60541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60543, + "TargetID": 60541, + "Directional": true + } + ] + }, + { + "ID": 14889, + "SourceStructureID": 60547, + "TargetStructureID": 43130, + "Label": "60547-43130 via Conventional from 60548 -> 60546", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60548, + "TargetID": 60546, + "Directional": true + } + ] + }, + { + "ID": 14890, + "SourceStructureID": 60549, + "TargetStructureID": 4567, + "Label": "60549-4567 via Conventional from 60551 -> 60555", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60551, + "TargetID": 60555, + "Directional": true + } + ] + }, + { + "ID": 14891, + "SourceStructureID": 60549, + "TargetStructureID": 5281, + "Label": "60549-5281 via Conventional from 60550 -> 36775", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60550, + "TargetID": 36775, + "Directional": true + } + ] + }, + { + "ID": 14892, + "SourceStructureID": 60556, + "TargetStructureID": 5281, + "Label": "60556-5281 via Conventional from 60557 -> 36778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60557, + "TargetID": 36778, + "Directional": true + } + ] + }, + { + "ID": 14893, + "SourceStructureID": 60558, + "TargetStructureID": 5281, + "Label": "60558-5281 via Conventional from 60559 -> 36790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60559, + "TargetID": 36790, + "Directional": true + } + ] + }, + { + "ID": 14894, + "SourceStructureID": 60558, + "TargetStructureID": 7113, + "Label": "60558-7113 via Conventional from 60562 -> 60569", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60562, + "TargetID": 60569, + "Directional": true + } + ] + }, + { + "ID": 14895, + "SourceStructureID": 60572, + "TargetStructureID": 5454, + "Label": "60572-5454 via Conventional from 60573 -> 38433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60573, + "TargetID": 38433, + "Directional": true + } + ] + }, + { + "ID": 14896, + "SourceStructureID": 60645, + "TargetStructureID": 166, + "Label": "60645-166 via Conventional from 60650 -> 60651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60650, + "TargetID": 60651, + "Directional": true + } + ] + }, + { + "ID": 14897, + "SourceStructureID": 60645, + "TargetStructureID": 485, + "Label": "60645-485 via Conventional from 101366 -> 101365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101366, + "TargetID": 101365, + "Directional": true + } + ] + }, + { + "ID": 14898, + "SourceStructureID": 60645, + "TargetStructureID": 6156, + "Label": "60645-6156 via Conventional from 60647 -> 60644", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60647, + "TargetID": 60644, + "Directional": true + } + ] + }, + { + "ID": 14899, + "SourceStructureID": 60657, + "TargetStructureID": 5118, + "Label": "60657-5118 via Conventional from 61432 -> 6515", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61432, + "TargetID": 6515, + "Directional": true + } + ] + }, + { + "ID": 14900, + "SourceStructureID": 60657, + "TargetStructureID": 6156, + "Label": "60657-6156 via Conventional from 60658 -> 28679", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60658, + "TargetID": 28679, + "Directional": true + } + ] + }, + { + "ID": 14901, + "SourceStructureID": 60657, + "TargetStructureID": 8575, + "Label": "60657-8575 via Conventional from 61431 -> 17382, 61434 -> 62080", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61431, + "TargetID": 17382, + "Directional": true + }, + { + "SourceID": 61434, + "TargetID": 62080, + "Directional": true + } + ] + }, + { + "ID": 14902, + "SourceStructureID": 60657, + "TargetStructureID": 61439, + "Label": "60657-61439 via Conventional from 61438 -> 61444, 61443 -> 61442", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61438, + "TargetID": 61444, + "Directional": true + }, + { + "SourceID": 61443, + "TargetID": 61442, + "Directional": true + } + ] + }, + { + "ID": 14903, + "SourceStructureID": 60657, + "TargetStructureID": 61450, + "Label": "60657-61450 via Conventional from 61449 -> 61452", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61449, + "TargetID": 61452, + "Directional": true + } + ] + }, + { + "ID": 14904, + "SourceStructureID": 60840, + "TargetStructureID": 591, + "Label": "60840-591 via Conventional from 60841 -> 10075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60841, + "TargetID": 10075, + "Directional": true + } + ] + }, + { + "ID": 14905, + "SourceStructureID": 60863, + "TargetStructureID": 11031, + "Label": "60863-11031 via Conventional from 60866 -> 60868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60866, + "TargetID": 60868, + "Directional": true + } + ] + }, + { + "ID": 14906, + "SourceStructureID": 60873, + "TargetStructureID": 6169, + "Label": "60873-6169 via Conventional from 60874 -> 60875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60874, + "TargetID": 60875, + "Directional": true + } + ] + }, + { + "ID": 14907, + "SourceStructureID": 60873, + "TargetStructureID": 11031, + "Label": "60873-11031 via Conventional from 60876 -> 60877", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60876, + "TargetID": 60877, + "Directional": true + } + ] + }, + { + "ID": 14908, + "SourceStructureID": 60879, + "TargetStructureID": 12897, + "Label": "60879-12897 via Conventional from 60880 -> 60878", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60880, + "TargetID": 60878, + "Directional": true + } + ] + }, + { + "ID": 14909, + "SourceStructureID": 60893, + "TargetStructureID": 6169, + "Label": "60893-6169 via Conventional from 60894 -> 23040", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60894, + "TargetID": 23040, + "Directional": true + } + ] + }, + { + "ID": 14910, + "SourceStructureID": 60895, + "TargetStructureID": 6169, + "Label": "60895-6169 via Conventional from 60896 -> 23041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60896, + "TargetID": 23041, + "Directional": true + } + ] + }, + { + "ID": 14911, + "SourceStructureID": 60917, + "TargetStructureID": 6169, + "Label": "60917-6169 via Conventional from 60918 -> 60916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60918, + "TargetID": 60916, + "Directional": true + } + ] + }, + { + "ID": 14912, + "SourceStructureID": 60967, + "TargetStructureID": 60976, + "Label": "60967-60976 via Conventional from 60975 -> 60985", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 60975, + "TargetID": 60985, + "Directional": true + } + ] + }, + { + "ID": 14913, + "SourceStructureID": 60976, + "TargetStructureID": 60967, + "Label": "60976-60967 via Ribbon Synapse from 60982 -> 60994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 60982, + "TargetID": 60994, + "Directional": true + } + ] + }, + { + "ID": 14914, + "SourceStructureID": 61108, + "TargetStructureID": 483, + "Label": "61108-483 via Conventional from 61110 -> 6713, 61111 -> 6821, 92344 -> 92343", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61110, + "TargetID": 6713, + "Directional": true + }, + { + "SourceID": 61111, + "TargetID": 6821, + "Directional": true + }, + { + "SourceID": 92344, + "TargetID": 92343, + "Directional": true + } + ] + }, + { + "ID": 14915, + "SourceStructureID": 61108, + "TargetStructureID": 593, + "Label": "61108-593 via Conventional from 61109 -> 50446, 117732 -> 62875, 117735 -> 62873", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61109, + "TargetID": 50446, + "Directional": true + }, + { + "SourceID": 117732, + "TargetID": 62875, + "Directional": true + }, + { + "SourceID": 117735, + "TargetID": 62873, + "Directional": true + } + ] + }, + { + "ID": 14916, + "SourceStructureID": 61108, + "TargetStructureID": 5649, + "Label": "61108-5649 via Conventional from 118485 -> 53946", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118485, + "TargetID": 53946, + "Directional": true + } + ] + }, + { + "ID": 14917, + "SourceStructureID": 61108, + "TargetStructureID": 6115, + "Label": "61108-6115 via Conventional from 117733 -> 62871, 117740 -> 73151, 117743 -> 75252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117733, + "TargetID": 62871, + "Directional": true + }, + { + "SourceID": 117740, + "TargetID": 73151, + "Directional": true + }, + { + "SourceID": 117743, + "TargetID": 75252, + "Directional": true + } + ] + }, + { + "ID": 14918, + "SourceStructureID": 61117, + "TargetStructureID": 5017, + "Label": "61117-5017 via Conventional from 61118 -> 61119, 61121 -> 5042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61118, + "TargetID": 61119, + "Directional": true + }, + { + "SourceID": 61121, + "TargetID": 5042, + "Directional": true + } + ] + }, + { + "ID": 14919, + "SourceStructureID": 61122, + "TargetStructureID": 5017, + "Label": "61122-5017 via Conventional from 61123 -> 61124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61123, + "TargetID": 61124, + "Directional": true + } + ] + }, + { + "ID": 14920, + "SourceStructureID": 61214, + "TargetStructureID": 5017, + "Label": "61214-5017 via Conventional from 61215 -> 61212, 61216 -> 61213, 61229 -> 17084, 159710 -> 17063", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61215, + "TargetID": 61212, + "Directional": true + }, + { + "SourceID": 61216, + "TargetID": 61213, + "Directional": true + }, + { + "SourceID": 61229, + "TargetID": 17084, + "Directional": true + }, + { + "SourceID": 159710, + "TargetID": 17063, + "Directional": true + } + ] + }, + { + "ID": 14921, + "SourceStructureID": 61214, + "TargetStructureID": 17228, + "Label": "61214-17228 via Conventional from 61220 -> 61221, 61222 -> 61223, 61225 -> 17261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61220, + "TargetID": 61221, + "Directional": true + }, + { + "SourceID": 61222, + "TargetID": 61223, + "Directional": true + }, + { + "SourceID": 61225, + "TargetID": 17261, + "Directional": true + } + ] + }, + { + "ID": 14922, + "SourceStructureID": 61227, + "TargetStructureID": 61214, + "Label": "61227-61214 via Conventional from 61228 -> 61226", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61228, + "TargetID": 61226, + "Directional": true + } + ] + }, + { + "ID": 14923, + "SourceStructureID": 61231, + "TargetStructureID": 5017, + "Label": "61231-5017 via Conventional from 61210 -> 61211, 61232 -> 61233", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61210, + "TargetID": 61211, + "Directional": true + }, + { + "SourceID": 61232, + "TargetID": 61233, + "Directional": true + } + ] + }, + { + "ID": 14924, + "SourceStructureID": 61313, + "TargetStructureID": 61270, + "Label": "61313-61270 via Conventional from 61315 -> 61306", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61315, + "TargetID": 61306, + "Directional": true + } + ] + }, + { + "ID": 14925, + "SourceStructureID": 61417, + "TargetStructureID": 61270, + "Label": "61417-61270 via Conventional from 61418 -> 61304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61418, + "TargetID": 61304, + "Directional": true + } + ] + }, + { + "ID": 14926, + "SourceStructureID": 61419, + "TargetStructureID": 61270, + "Label": "61419-61270 via Conventional from 61420 -> 61305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61420, + "TargetID": 61305, + "Directional": true + } + ] + }, + { + "ID": 14927, + "SourceStructureID": 61421, + "TargetStructureID": 61270, + "Label": "61421-61270 via Conventional from 61422 -> 61307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61422, + "TargetID": 61307, + "Directional": true + } + ] + }, + { + "ID": 14928, + "SourceStructureID": 61424, + "TargetStructureID": 61421, + "Label": "61424-61421 via Conventional from 61425 -> 61423", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61425, + "TargetID": 61423, + "Directional": true + } + ] + }, + { + "ID": 14929, + "SourceStructureID": 61462, + "TargetStructureID": 61450, + "Label": "61462-61450 via Conventional from 61463 -> 61461", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61463, + "TargetID": 61461, + "Directional": true + } + ] + }, + { + "ID": 14930, + "SourceStructureID": 61466, + "TargetStructureID": 138, + "Label": "61466-138 via Conventional from 61475 -> 61476", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61475, + "TargetID": 61476, + "Directional": true + } + ] + }, + { + "ID": 14931, + "SourceStructureID": 61466, + "TargetStructureID": 5297, + "Label": "61466-5297 via Conventional from 61477 -> 61478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61477, + "TargetID": 61478, + "Directional": true + } + ] + }, + { + "ID": 14932, + "SourceStructureID": 61466, + "TargetStructureID": 63628, + "Label": "61466-63628 via Conventional from 61467 -> 63813", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61467, + "TargetID": 63813, + "Directional": true + } + ] + }, + { + "ID": 14933, + "SourceStructureID": 61500, + "TargetStructureID": 909, + "Label": "61500-909 via Conventional from 61503 -> 45923", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61503, + "TargetID": 45923, + "Directional": true + } + ] + }, + { + "ID": 14934, + "SourceStructureID": 61530, + "TargetStructureID": 8575, + "Label": "61530-8575 via BC Conventional Synapse from 61533 -> 61529", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61533, + "TargetID": 61529, + "Directional": true + } + ] + }, + { + "ID": 14935, + "SourceStructureID": 61583, + "TargetStructureID": 8575, + "Label": "61583-8575 via Conventional from 61584 -> 17381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61584, + "TargetID": 17381, + "Directional": true + } + ] + }, + { + "ID": 14936, + "SourceStructureID": 61587, + "TargetStructureID": 408, + "Label": "61587-408 via Conventional from 61590 -> 61591", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61590, + "TargetID": 61591, + "Directional": true + } + ] + }, + { + "ID": 14937, + "SourceStructureID": 61587, + "TargetStructureID": 8575, + "Label": "61587-8575 via Conventional from 61588 -> 17383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61588, + "TargetID": 17383, + "Directional": true + } + ] + }, + { + "ID": 14938, + "SourceStructureID": 61596, + "TargetStructureID": 8575, + "Label": "61596-8575 via Conventional from 61597 -> 61595", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61597, + "TargetID": 61595, + "Directional": true + } + ] + }, + { + "ID": 14939, + "SourceStructureID": 61598, + "TargetStructureID": 372, + "Label": "61598-372 via Conventional from 61604 -> 16016", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61604, + "TargetID": 16016, + "Directional": true + } + ] + }, + { + "ID": 14940, + "SourceStructureID": 61598, + "TargetStructureID": 428, + "Label": "61598-428 via Conventional from 66207 -> 66208", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66207, + "TargetID": 66208, + "Directional": true + } + ] + }, + { + "ID": 14941, + "SourceStructureID": 61598, + "TargetStructureID": 606, + "Label": "61598-606 via Conventional from 61606 -> 53255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61606, + "TargetID": 53255, + "Directional": true + } + ] + }, + { + "ID": 14942, + "SourceStructureID": 61598, + "TargetStructureID": 4569, + "Label": "61598-4569 via Conventional from 61607 -> 47508", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61607, + "TargetID": 47508, + "Directional": true + } + ] + }, + { + "ID": 14943, + "SourceStructureID": 61598, + "TargetStructureID": 8575, + "Label": "61598-8575 via Conventional from 61599 -> 17384", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61599, + "TargetID": 17384, + "Directional": true + } + ] + }, + { + "ID": 14944, + "SourceStructureID": 61618, + "TargetStructureID": 8575, + "Label": "61618-8575 via Conventional from 61619 -> 17386", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61619, + "TargetID": 17386, + "Directional": true + } + ] + }, + { + "ID": 14945, + "SourceStructureID": 61621, + "TargetStructureID": 8575, + "Label": "61621-8575 via Conventional from 61622 -> 61620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61622, + "TargetID": 61620, + "Directional": true + } + ] + }, + { + "ID": 14946, + "SourceStructureID": 61624, + "TargetStructureID": 8575, + "Label": "61624-8575 via Conventional from 61626 -> 17387", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61626, + "TargetID": 17387, + "Directional": true + } + ] + }, + { + "ID": 14947, + "SourceStructureID": 61627, + "TargetStructureID": 8575, + "Label": "61627-8575 via Conventional from 61628 -> 17391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61628, + "TargetID": 17391, + "Directional": true + } + ] + }, + { + "ID": 14948, + "SourceStructureID": 61630, + "TargetStructureID": 8575, + "Label": "61630-8575 via BC Conventional Synapse from 61631 -> 61629", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61631, + "TargetID": 61629, + "Directional": true + } + ] + }, + { + "ID": 14949, + "SourceStructureID": 61632, + "TargetStructureID": 8575, + "Label": "61632-8575 via Conventional from 61633 -> 17392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61633, + "TargetID": 17392, + "Directional": true + } + ] + }, + { + "ID": 14950, + "SourceStructureID": 61638, + "TargetStructureID": 8575, + "Label": "61638-8575 via BC Conventional Synapse from 61640 -> 61637", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61640, + "TargetID": 61637, + "Directional": true + } + ] + }, + { + "ID": 14951, + "SourceStructureID": 61642, + "TargetStructureID": 8575, + "Label": "61642-8575 via Conventional from 61643 -> 61641", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61643, + "TargetID": 61641, + "Directional": true + } + ] + }, + { + "ID": 14952, + "SourceStructureID": 61644, + "TargetStructureID": 8575, + "Label": "61644-8575 via Conventional from 61645 -> 17393", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61645, + "TargetID": 17393, + "Directional": true + } + ] + }, + { + "ID": 14953, + "SourceStructureID": 61646, + "TargetStructureID": 8575, + "Label": "61646-8575 via Conventional from 61647 -> 17394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61647, + "TargetID": 17394, + "Directional": true + } + ] + }, + { + "ID": 14954, + "SourceStructureID": 61649, + "TargetStructureID": 8575, + "Label": "61649-8575 via Conventional from 61650 -> 61648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61650, + "TargetID": 61648, + "Directional": true + } + ] + }, + { + "ID": 14955, + "SourceStructureID": 61652, + "TargetStructureID": 8575, + "Label": "61652-8575 via Conventional from 61653 -> 17388", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61653, + "TargetID": 17388, + "Directional": true + } + ] + }, + { + "ID": 14956, + "SourceStructureID": 61656, + "TargetStructureID": 8575, + "Label": "61656-8575 via BC Conventional Synapse from 61659 -> 61655, 61661 -> 61660", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61659, + "TargetID": 61655, + "Directional": true + }, + { + "SourceID": 61661, + "TargetID": 61660, + "Directional": true + } + ] + }, + { + "ID": 14957, + "SourceStructureID": 61666, + "TargetStructureID": 8575, + "Label": "61666-8575 via BC Conventional Synapse from 61668 -> 61664", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61668, + "TargetID": 61664, + "Directional": true + } + ] + }, + { + "ID": 14958, + "SourceStructureID": 61676, + "TargetStructureID": 8575, + "Label": "61676-8575 via Conventional from 61677 -> 61675", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61677, + "TargetID": 61675, + "Directional": true + } + ] + }, + { + "ID": 14959, + "SourceStructureID": 61698, + "TargetStructureID": 372, + "Label": "61698-372 via Conventional from 61700 -> 55073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61700, + "TargetID": 55073, + "Directional": true + } + ] + }, + { + "ID": 14960, + "SourceStructureID": 61698, + "TargetStructureID": 8575, + "Label": "61698-8575 via Conventional from 61699 -> 37255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61699, + "TargetID": 37255, + "Directional": true + } + ] + }, + { + "ID": 14961, + "SourceStructureID": 61703, + "TargetStructureID": 8575, + "Label": "61703-8575 via BC Conventional Synapse from 61704 -> 61702", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61704, + "TargetID": 61702, + "Directional": true + } + ] + }, + { + "ID": 14962, + "SourceStructureID": 61705, + "TargetStructureID": 8575, + "Label": "61705-8575 via Conventional from 61706 -> 37256", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61706, + "TargetID": 37256, + "Directional": true + } + ] + }, + { + "ID": 14963, + "SourceStructureID": 61707, + "TargetStructureID": 8575, + "Label": "61707-8575 via Conventional from 61708 -> 37257", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61708, + "TargetID": 37257, + "Directional": true + } + ] + }, + { + "ID": 14964, + "SourceStructureID": 61709, + "TargetStructureID": 7594, + "Label": "61709-7594 via Conventional from 65695 -> 64852", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65695, + "TargetID": 64852, + "Directional": true + } + ] + }, + { + "ID": 14965, + "SourceStructureID": 61709, + "TargetStructureID": 8575, + "Label": "61709-8575 via Conventional from 61710 -> 37259", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61710, + "TargetID": 37259, + "Directional": true + } + ] + }, + { + "ID": 14966, + "SourceStructureID": 61716, + "TargetStructureID": 8575, + "Label": "61716-8575 via Conventional from 61717 -> 61715", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61717, + "TargetID": 61715, + "Directional": true + } + ] + }, + { + "ID": 14967, + "SourceStructureID": 61719, + "TargetStructureID": 8575, + "Label": "61719-8575 via BC Conventional Synapse from 61720 -> 61718", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61720, + "TargetID": 61718, + "Directional": true + } + ] + }, + { + "ID": 14968, + "SourceStructureID": 61740, + "TargetStructureID": 8575, + "Label": "61740-8575 via Conventional from 61744 -> 43101", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61744, + "TargetID": 43101, + "Directional": true + } + ] + }, + { + "ID": 14969, + "SourceStructureID": 61741, + "TargetStructureID": 61740, + "Label": "61741-61740 via Conventional from 61742 -> 61743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61742, + "TargetID": 61743, + "Directional": true + } + ] + }, + { + "ID": 14970, + "SourceStructureID": 61745, + "TargetStructureID": 8575, + "Label": "61745-8575 via Conventional from 61746 -> 37273", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61746, + "TargetID": 37273, + "Directional": true + } + ] + }, + { + "ID": 14971, + "SourceStructureID": 61752, + "TargetStructureID": 61758, + "Label": "61752-61758 via Conventional from 61757 -> 61761", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61757, + "TargetID": 61761, + "Directional": true + } + ] + }, + { + "ID": 14972, + "SourceStructureID": 61758, + "TargetStructureID": 8575, + "Label": "61758-8575 via BC Conventional Synapse from 61762 -> 43102", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61762, + "TargetID": 43102, + "Directional": true + } + ] + }, + { + "ID": 14973, + "SourceStructureID": 61758, + "TargetStructureID": 61752, + "Label": "61758-61752 via Ribbon Synapse from 61759 -> 61756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 61759, + "TargetID": 61756, + "Directional": true + } + ] + }, + { + "ID": 14974, + "SourceStructureID": 61763, + "TargetStructureID": 8575, + "Label": "61763-8575 via Conventional from 61764 -> 43103", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61764, + "TargetID": 43103, + "Directional": true + } + ] + }, + { + "ID": 14975, + "SourceStructureID": 61765, + "TargetStructureID": 8575, + "Label": "61765-8575 via Conventional from 61766 -> 43105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61766, + "TargetID": 43105, + "Directional": true + } + ] + }, + { + "ID": 14976, + "SourceStructureID": 61767, + "TargetStructureID": 8575, + "Label": "61767-8575 via Conventional from 61768 -> 43104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61768, + "TargetID": 43104, + "Directional": true + } + ] + }, + { + "ID": 14977, + "SourceStructureID": 61773, + "TargetStructureID": 593, + "Label": "61773-593 via Conventional from 61774 -> 61772", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61774, + "TargetID": 61772, + "Directional": true + } + ] + }, + { + "ID": 14978, + "SourceStructureID": 61777, + "TargetStructureID": 593, + "Label": "61777-593 via Conventional from 61778 -> 7709, 61783 -> 7811", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61778, + "TargetID": 7709, + "Directional": true + }, + { + "SourceID": 61783, + "TargetID": 7811, + "Directional": true + } + ] + }, + { + "ID": 14979, + "SourceStructureID": 61785, + "TargetStructureID": 593, + "Label": "61785-593 via Conventional from 61787 -> 7818", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61787, + "TargetID": 7818, + "Directional": true + } + ] + }, + { + "ID": 14980, + "SourceStructureID": 61788, + "TargetStructureID": 593, + "Label": "61788-593 via Conventional from 61789 -> 7817", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61789, + "TargetID": 7817, + "Directional": true + } + ] + }, + { + "ID": 14981, + "SourceStructureID": 61791, + "TargetStructureID": 593, + "Label": "61791-593 via Conventional from 61792 -> 61790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61792, + "TargetID": 61790, + "Directional": true + } + ] + }, + { + "ID": 14982, + "SourceStructureID": 61797, + "TargetStructureID": 593, + "Label": "61797-593 via Conventional from 61798 -> 15887", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61798, + "TargetID": 15887, + "Directional": true + } + ] + }, + { + "ID": 14983, + "SourceStructureID": 61797, + "TargetStructureID": 79461, + "Label": "61797-79461 via Conventional from 79462 -> 79463", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79462, + "TargetID": 79463, + "Directional": true + } + ] + }, + { + "ID": 14984, + "SourceStructureID": 61799, + "TargetStructureID": 593, + "Label": "61799-593 via Conventional from 61800 -> 15888", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61800, + "TargetID": 15888, + "Directional": true + } + ] + }, + { + "ID": 14985, + "SourceStructureID": 61807, + "TargetStructureID": 483, + "Label": "61807-483 via Conventional from 80463 -> 80464", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80463, + "TargetID": 80464, + "Directional": true + } + ] + }, + { + "ID": 14986, + "SourceStructureID": 61807, + "TargetStructureID": 593, + "Label": "61807-593 via Conventional from 61808 -> 15890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61808, + "TargetID": 15890, + "Directional": true + } + ] + }, + { + "ID": 14987, + "SourceStructureID": 61809, + "TargetStructureID": 166, + "Label": "61809-166 via Conventional from 80538 -> 80539", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80538, + "TargetID": 80539, + "Directional": true + } + ] + }, + { + "ID": 14988, + "SourceStructureID": 61809, + "TargetStructureID": 593, + "Label": "61809-593 via Conventional from 61810 -> 52499, 80513 -> 68259", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61810, + "TargetID": 52499, + "Directional": true + }, + { + "SourceID": 80513, + "TargetID": 68259, + "Directional": true + } + ] + }, + { + "ID": 14989, + "SourceStructureID": 61809, + "TargetStructureID": 6156, + "Label": "61809-6156 via Conventional from 80488 -> 80489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80488, + "TargetID": 80489, + "Directional": true + } + ] + }, + { + "ID": 14990, + "SourceStructureID": 61813, + "TargetStructureID": 593, + "Label": "61813-593 via Conventional from 61814 -> 61815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61814, + "TargetID": 61815, + "Directional": true + } + ] + }, + { + "ID": 14991, + "SourceStructureID": 61816, + "TargetStructureID": 483, + "Label": "61816-483 via Conventional from 80745 -> 6762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80745, + "TargetID": 6762, + "Directional": true + } + ] + }, + { + "ID": 14992, + "SourceStructureID": 61816, + "TargetStructureID": 593, + "Label": "61816-593 via Conventional from 61818 -> 28393, 61892 -> 15892, 80724 -> 67326", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61818, + "TargetID": 28393, + "Directional": true + }, + { + "SourceID": 61892, + "TargetID": 15892, + "Directional": true + }, + { + "SourceID": 80724, + "TargetID": 67326, + "Directional": true + } + ] + }, + { + "ID": 14993, + "SourceStructureID": 61816, + "TargetStructureID": 5562, + "Label": "61816-5562 via Conventional from 80725 -> 77166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80725, + "TargetID": 77166, + "Directional": true + } + ] + }, + { + "ID": 14994, + "SourceStructureID": 61817, + "TargetStructureID": 66523, + "Label": "61817-66523 via Conventional from 61820 -> 75925", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61820, + "TargetID": 75925, + "Directional": true + } + ] + }, + { + "ID": 14995, + "SourceStructureID": 61827, + "TargetStructureID": 22974, + "Label": "61827-22974 via Conventional from 61829 -> 61830", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61829, + "TargetID": 61830, + "Directional": true + } + ] + }, + { + "ID": 14996, + "SourceStructureID": 61836, + "TargetStructureID": 16026, + "Label": "61836-16026 via Conventional from 134785 -> 134782", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134785, + "TargetID": 134782, + "Directional": true + } + ] + }, + { + "ID": 14997, + "SourceStructureID": 61836, + "TargetStructureID": 69783, + "Label": "61836-69783 via Adherens from 69782 -> 69784", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 69782, + "TargetID": 69784, + "Directional": true + } + ] + }, + { + "ID": 14998, + "SourceStructureID": 61842, + "TargetStructureID": 593, + "Label": "61842-593 via Conventional from 61844 -> 28426", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61844, + "TargetID": 28426, + "Directional": true + } + ] + }, + { + "ID": 14999, + "SourceStructureID": 61845, + "TargetStructureID": 593, + "Label": "61845-593 via Conventional from 61846 -> 28425, 81149 -> 64370", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61846, + "TargetID": 28425, + "Directional": true + }, + { + "SourceID": 81149, + "TargetID": 64370, + "Directional": true + } + ] + }, + { + "ID": 15000, + "SourceStructureID": 61847, + "TargetStructureID": 593, + "Label": "61847-593 via Conventional from 61848 -> 28424", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61848, + "TargetID": 28424, + "Directional": true + } + ] + }, + { + "ID": 15001, + "SourceStructureID": 61849, + "TargetStructureID": 593, + "Label": "61849-593 via Conventional from 61850 -> 28414", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61850, + "TargetID": 28414, + "Directional": true + } + ] + }, + { + "ID": 15002, + "SourceStructureID": 61851, + "TargetStructureID": 593, + "Label": "61851-593 via Conventional from 61852 -> 28420", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61852, + "TargetID": 28420, + "Directional": true + } + ] + }, + { + "ID": 15003, + "SourceStructureID": 61853, + "TargetStructureID": 593, + "Label": "61853-593 via Conventional from 61854 -> 28416", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61854, + "TargetID": 28416, + "Directional": true + } + ] + }, + { + "ID": 15004, + "SourceStructureID": 61853, + "TargetStructureID": 6115, + "Label": "61853-6115 via Conventional from 81425 -> 73775", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81425, + "TargetID": 73775, + "Directional": true + } + ] + }, + { + "ID": 15005, + "SourceStructureID": 61853, + "TargetStructureID": 81430, + "Label": "61853-81430 via Conventional from 81431 -> 81432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81431, + "TargetID": 81432, + "Directional": true + } + ] + }, + { + "ID": 15006, + "SourceStructureID": 61857, + "TargetStructureID": 593, + "Label": "61857-593 via Conventional from 61858 -> 61856, 81978 -> 81979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61858, + "TargetID": 61856, + "Directional": true + }, + { + "SourceID": 81978, + "TargetID": 81979, + "Directional": true + } + ] + }, + { + "ID": 15007, + "SourceStructureID": 61862, + "TargetStructureID": 593, + "Label": "61862-593 via Conventional from 61863 -> 28417", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61863, + "TargetID": 28417, + "Directional": true + } + ] + }, + { + "ID": 15008, + "SourceStructureID": 61868, + "TargetStructureID": 593, + "Label": "61868-593 via Conventional from 61869 -> 61867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61869, + "TargetID": 61867, + "Directional": true + } + ] + }, + { + "ID": 15009, + "SourceStructureID": 61886, + "TargetStructureID": 483, + "Label": "61886-483 via Conventional from 82191 -> 82192, 82195 -> 71297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82191, + "TargetID": 82192, + "Directional": true + }, + { + "SourceID": 82195, + "TargetID": 71297, + "Directional": true + } + ] + }, + { + "ID": 15010, + "SourceStructureID": 61886, + "TargetStructureID": 593, + "Label": "61886-593 via Conventional from 61887 -> 15897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61887, + "TargetID": 15897, + "Directional": true + } + ] + }, + { + "ID": 15011, + "SourceStructureID": 61886, + "TargetStructureID": 4570, + "Label": "61886-4570 via Conventional from 82193 -> 82194", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82193, + "TargetID": 82194, + "Directional": true + } + ] + }, + { + "ID": 15012, + "SourceStructureID": 61886, + "TargetStructureID": 82188, + "Label": "61886-82188 via Conventional from 82189 -> 82190", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82189, + "TargetID": 82190, + "Directional": true + } + ] + }, + { + "ID": 15013, + "SourceStructureID": 61894, + "TargetStructureID": 593, + "Label": "61894-593 via Conventional from 61895 -> 15893, 82198 -> 28400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61895, + "TargetID": 15893, + "Directional": true + }, + { + "SourceID": 82198, + "TargetID": 28400, + "Directional": true + } + ] + }, + { + "ID": 15014, + "SourceStructureID": 61894, + "TargetStructureID": 68401, + "Label": "61894-68401 via Conventional from 68397 -> 68402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68397, + "TargetID": 68402, + "Directional": true + } + ] + }, + { + "ID": 15015, + "SourceStructureID": 61894, + "TargetStructureID": 69537, + "Label": "61894-69537 via Conventional from 82203 -> 69759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82203, + "TargetID": 69759, + "Directional": true + } + ] + }, + { + "ID": 15016, + "SourceStructureID": 61894, + "TargetStructureID": 82204, + "Label": "61894-82204 via Conventional from 82205 -> 82206", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82205, + "TargetID": 82206, + "Directional": true + } + ] + }, + { + "ID": 15017, + "SourceStructureID": 61897, + "TargetStructureID": 70114, + "Label": "61897-70114 via Conventional from 61902 -> 70118", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61902, + "TargetID": 70118, + "Directional": true + } + ] + }, + { + "ID": 15018, + "SourceStructureID": 61904, + "TargetStructureID": 593, + "Label": "61904-593 via Conventional from 61906 -> 61907", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61906, + "TargetID": 61907, + "Directional": true + } + ] + }, + { + "ID": 15019, + "SourceStructureID": 61904, + "TargetStructureID": 61868, + "Label": "61904-61868 via Conventional from 61905 -> 81988, 81983 -> 81984", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61905, + "TargetID": 81988, + "Directional": true + }, + { + "SourceID": 81983, + "TargetID": 81984, + "Directional": true + } + ] + }, + { + "ID": 15020, + "SourceStructureID": 61904, + "TargetStructureID": 69537, + "Label": "61904-69537 via Conventional from 82207 -> 69756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82207, + "TargetID": 69756, + "Directional": true + } + ] + }, + { + "ID": 15021, + "SourceStructureID": 61908, + "TargetStructureID": 593, + "Label": "61908-593 via Conventional from 61909 -> 28399", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61909, + "TargetID": 28399, + "Directional": true + } + ] + }, + { + "ID": 15022, + "SourceStructureID": 61914, + "TargetStructureID": 593, + "Label": "61914-593 via Conventional from 61918 -> 61917", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61918, + "TargetID": 61917, + "Directional": true + } + ] + }, + { + "ID": 15023, + "SourceStructureID": 61920, + "TargetStructureID": 593, + "Label": "61920-593 via Conventional from 61921 -> 61919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61921, + "TargetID": 61919, + "Directional": true + } + ] + }, + { + "ID": 15024, + "SourceStructureID": 61920, + "TargetStructureID": 61840, + "Label": "61920-61840 via Conventional from 82286 -> 82287", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82286, + "TargetID": 82287, + "Directional": true + } + ] + }, + { + "ID": 15025, + "SourceStructureID": 61928, + "TargetStructureID": 593, + "Label": "61928-593 via Conventional from 61929 -> 28401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61929, + "TargetID": 28401, + "Directional": true + } + ] + }, + { + "ID": 15026, + "SourceStructureID": 61928, + "TargetStructureID": 65282, + "Label": "61928-65282 via Conventional from 65281 -> 65283", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65281, + "TargetID": 65283, + "Directional": true + } + ] + }, + { + "ID": 15027, + "SourceStructureID": 61930, + "TargetStructureID": 593, + "Label": "61930-593 via Conventional from 61931 -> 28403", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61931, + "TargetID": 28403, + "Directional": true + } + ] + }, + { + "ID": 15028, + "SourceStructureID": 61933, + "TargetStructureID": 68072, + "Label": "61933-68072 via Conventional from 68075 -> 68074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68075, + "TargetID": 68074, + "Directional": true + } + ] + }, + { + "ID": 15029, + "SourceStructureID": 61933, + "TargetStructureID": 68891, + "Label": "61933-68891 via Conventional from 61935 -> 68892", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61935, + "TargetID": 68892, + "Directional": true + } + ] + }, + { + "ID": 15030, + "SourceStructureID": 61936, + "TargetStructureID": 82383, + "Label": "61936-82383 via Conventional from 82384 -> 82385", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82384, + "TargetID": 82385, + "Directional": true + } + ] + }, + { + "ID": 15031, + "SourceStructureID": 61940, + "TargetStructureID": 593, + "Label": "61940-593 via Conventional from 61941 -> 61939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61941, + "TargetID": 61939, + "Directional": true + } + ] + }, + { + "ID": 15032, + "SourceStructureID": 61942, + "TargetStructureID": 593, + "Label": "61942-593 via Conventional from 61944 -> 61943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61944, + "TargetID": 61943, + "Directional": true + } + ] + }, + { + "ID": 15033, + "SourceStructureID": 61951, + "TargetStructureID": 593, + "Label": "61951-593 via Conventional from 61952 -> 61953, 61986 -> 61984", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61952, + "TargetID": 61953, + "Directional": true + }, + { + "SourceID": 61986, + "TargetID": 61984, + "Directional": true + } + ] + }, + { + "ID": 15034, + "SourceStructureID": 61954, + "TargetStructureID": 593, + "Label": "61954-593 via Conventional from 61955 -> 50444", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61955, + "TargetID": 50444, + "Directional": true + } + ] + }, + { + "ID": 15035, + "SourceStructureID": 61960, + "TargetStructureID": 400, + "Label": "61960-400 via Conventional from 81662 -> 81681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81662, + "TargetID": 81681, + "Directional": true + } + ] + }, + { + "ID": 15036, + "SourceStructureID": 61960, + "TargetStructureID": 483, + "Label": "61960-483 via Conventional from 81484 -> 81485, 134092 -> 134093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81484, + "TargetID": 81485, + "Directional": true + }, + { + "SourceID": 134092, + "TargetID": 134093, + "Directional": true + } + ] + }, + { + "ID": 15037, + "SourceStructureID": 61960, + "TargetStructureID": 485, + "Label": "61960-485 via Conventional from 81449 -> 81450, 81468 -> 81469, 81470 -> 81471", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81449, + "TargetID": 81450, + "Directional": true + }, + { + "SourceID": 81468, + "TargetID": 81469, + "Directional": true + }, + { + "SourceID": 81470, + "TargetID": 81471, + "Directional": true + } + ] + }, + { + "ID": 15038, + "SourceStructureID": 61960, + "TargetStructureID": 593, + "Label": "61960-593 via Conventional from 61961 -> 50441", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61961, + "TargetID": 50441, + "Directional": true + } + ] + }, + { + "ID": 15039, + "SourceStructureID": 61960, + "TargetStructureID": 6156, + "Label": "61960-6156 via Conventional from 81448 -> 11612", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81448, + "TargetID": 11612, + "Directional": true + } + ] + }, + { + "ID": 15040, + "SourceStructureID": 61960, + "TargetStructureID": 6589, + "Label": "61960-6589 via Conventional from 81481 -> 81482, 81512 -> 9590", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81481, + "TargetID": 81482, + "Directional": true + }, + { + "SourceID": 81512, + "TargetID": 9590, + "Directional": true + } + ] + }, + { + "ID": 15041, + "SourceStructureID": 61960, + "TargetStructureID": 15394, + "Label": "61960-15394 via Conventional from 81452 -> 81453", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81452, + "TargetID": 81453, + "Directional": true + } + ] + }, + { + "ID": 15042, + "SourceStructureID": 61960, + "TargetStructureID": 81664, + "Label": "61960-81664 via Conventional from 81666 -> 81665", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81666, + "TargetID": 81665, + "Directional": true + } + ] + }, + { + "ID": 15043, + "SourceStructureID": 61960, + "TargetStructureID": 81682, + "Label": "61960-81682 via Conventional from 81683 -> 81684", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81683, + "TargetID": 81684, + "Directional": true + } + ] + }, + { + "ID": 15044, + "SourceStructureID": 61960, + "TargetStructureID": 87158, + "Label": "61960-87158 via Conventional from 81657 -> 81658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81657, + "TargetID": 81658, + "Directional": true + } + ] + }, + { + "ID": 15045, + "SourceStructureID": 61972, + "TargetStructureID": 593, + "Label": "61972-593 via Conventional from 61973 -> 61971", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61973, + "TargetID": 61971, + "Directional": true + } + ] + }, + { + "ID": 15046, + "SourceStructureID": 61978, + "TargetStructureID": 593, + "Label": "61978-593 via Conventional from 61980 -> 61979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 61980, + "TargetID": 61979, + "Directional": true + } + ] + }, + { + "ID": 15047, + "SourceStructureID": 61978, + "TargetStructureID": 65267, + "Label": "61978-65267 via Conventional from 69366 -> 69365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69366, + "TargetID": 69365, + "Directional": true + } + ] + }, + { + "ID": 15048, + "SourceStructureID": 61989, + "TargetStructureID": 61940, + "Label": "61989-61940 via Conventional from 65294 -> 65295", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65294, + "TargetID": 65295, + "Directional": true + } + ] + }, + { + "ID": 15049, + "SourceStructureID": 62012, + "TargetStructureID": 8575, + "Label": "62012-8575 via Conventional from 62013 -> 62011", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62013, + "TargetID": 62011, + "Directional": true + } + ] + }, + { + "ID": 15050, + "SourceStructureID": 62015, + "TargetStructureID": 8575, + "Label": "62015-8575 via Conventional from 62016 -> 62014", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62016, + "TargetID": 62014, + "Directional": true + } + ] + }, + { + "ID": 15051, + "SourceStructureID": 62019, + "TargetStructureID": 8575, + "Label": "62019-8575 via BC Conventional Synapse from 62022 -> 62018", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62022, + "TargetID": 62018, + "Directional": true + } + ] + }, + { + "ID": 15052, + "SourceStructureID": 62026, + "TargetStructureID": 8575, + "Label": "62026-8575 via Conventional from 62027 -> 62025", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62027, + "TargetID": 62025, + "Directional": true + } + ] + }, + { + "ID": 15053, + "SourceStructureID": 62029, + "TargetStructureID": 8575, + "Label": "62029-8575 via Conventional from 62030 -> 62028", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62030, + "TargetID": 62028, + "Directional": true + } + ] + }, + { + "ID": 15054, + "SourceStructureID": 62032, + "TargetStructureID": 8575, + "Label": "62032-8575 via Conventional from 62033 -> 62031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62033, + "TargetID": 62031, + "Directional": true + } + ] + }, + { + "ID": 15055, + "SourceStructureID": 62035, + "TargetStructureID": 8575, + "Label": "62035-8575 via Ribbon Synapse from 62036 -> 62034", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62036, + "TargetID": 62034, + "Directional": true + } + ] + }, + { + "ID": 15056, + "SourceStructureID": 62038, + "TargetStructureID": 7858, + "Label": "62038-7858 via Conventional from 62039 -> 31899", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62039, + "TargetID": 31899, + "Directional": true + } + ] + }, + { + "ID": 15057, + "SourceStructureID": 62043, + "TargetStructureID": 8575, + "Label": "62043-8575 via Conventional from 62044 -> 62042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62044, + "TargetID": 62042, + "Directional": true + } + ] + }, + { + "ID": 15058, + "SourceStructureID": 62046, + "TargetStructureID": 8575, + "Label": "62046-8575 via Ribbon Synapse from 62047 -> 62041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62047, + "TargetID": 62041, + "Directional": true + } + ] + }, + { + "ID": 15059, + "SourceStructureID": 62049, + "TargetStructureID": 8575, + "Label": "62049-8575 via Conventional from 62050 -> 62048", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62050, + "TargetID": 62048, + "Directional": true + } + ] + }, + { + "ID": 15060, + "SourceStructureID": 62052, + "TargetStructureID": 8575, + "Label": "62052-8575 via Conventional from 62053 -> 62051", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62053, + "TargetID": 62051, + "Directional": true + } + ] + }, + { + "ID": 15061, + "SourceStructureID": 62110, + "TargetStructureID": 8575, + "Label": "62110-8575 via Conventional from 62112 -> 62109", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62112, + "TargetID": 62109, + "Directional": true + } + ] + }, + { + "ID": 15062, + "SourceStructureID": 62110, + "TargetStructureID": 18693, + "Label": "62110-18693 via Conventional from 62111 -> 33829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62111, + "TargetID": 33829, + "Directional": true + } + ] + }, + { + "ID": 15063, + "SourceStructureID": 62120, + "TargetStructureID": 389, + "Label": "62120-389 via Conventional from 62124 -> 62119", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62124, + "TargetID": 62119, + "Directional": true + } + ] + }, + { + "ID": 15064, + "SourceStructureID": 62120, + "TargetStructureID": 19203, + "Label": "62120-19203 via Conventional from 62121 -> 62122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62121, + "TargetID": 62122, + "Directional": true + } + ] + }, + { + "ID": 15065, + "SourceStructureID": 62150, + "TargetStructureID": 8575, + "Label": "62150-8575 via Conventional from 62151 -> 43280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62151, + "TargetID": 43280, + "Directional": true + } + ] + }, + { + "ID": 15066, + "SourceStructureID": 62152, + "TargetStructureID": 8575, + "Label": "62152-8575 via Conventional from 62153 -> 43281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62153, + "TargetID": 43281, + "Directional": true + } + ] + }, + { + "ID": 15067, + "SourceStructureID": 62155, + "TargetStructureID": 8575, + "Label": "62155-8575 via Conventional from 62156 -> 43581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62156, + "TargetID": 43581, + "Directional": true + } + ] + }, + { + "ID": 15068, + "SourceStructureID": 62160, + "TargetStructureID": 8575, + "Label": "62160-8575 via Conventional from 62161 -> 62159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62161, + "TargetID": 62159, + "Directional": true + } + ] + }, + { + "ID": 15069, + "SourceStructureID": 62165, + "TargetStructureID": 8575, + "Label": "62165-8575 via Ribbon Synapse from 62166 -> 62164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62166, + "TargetID": 62164, + "Directional": true + } + ] + }, + { + "ID": 15070, + "SourceStructureID": 62169, + "TargetStructureID": 8575, + "Label": "62169-8575 via Conventional from 62170 -> 62168", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62170, + "TargetID": 62168, + "Directional": true + } + ] + }, + { + "ID": 15071, + "SourceStructureID": 62172, + "TargetStructureID": 8575, + "Label": "62172-8575 via Ribbon Synapse from 62173 -> 62171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62173, + "TargetID": 62171, + "Directional": true + } + ] + }, + { + "ID": 15072, + "SourceStructureID": 62174, + "TargetStructureID": 6166, + "Label": "62174-6166 via Conventional from 62175 -> 15147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62175, + "TargetID": 15147, + "Directional": true + } + ] + }, + { + "ID": 15073, + "SourceStructureID": 62177, + "TargetStructureID": 8575, + "Label": "62177-8575 via Ribbon Synapse from 62178 -> 62176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62178, + "TargetID": 62176, + "Directional": true + } + ] + }, + { + "ID": 15074, + "SourceStructureID": 62190, + "TargetStructureID": 8575, + "Label": "62190-8575 via Conventional from 62191 -> 43285", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62191, + "TargetID": 43285, + "Directional": true + } + ] + }, + { + "ID": 15075, + "SourceStructureID": 62194, + "TargetStructureID": 8575, + "Label": "62194-8575 via BC Conventional Synapse from 62196 -> 62193", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62196, + "TargetID": 62193, + "Directional": true + } + ] + }, + { + "ID": 15076, + "SourceStructureID": 62197, + "TargetStructureID": 8575, + "Label": "62197-8575 via Conventional from 62198 -> 43287", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62198, + "TargetID": 43287, + "Directional": true + } + ] + }, + { + "ID": 15077, + "SourceStructureID": 62205, + "TargetStructureID": 8575, + "Label": "62205-8575 via Ribbon Synapse from 62206 -> 62204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62206, + "TargetID": 62204, + "Directional": true + } + ] + }, + { + "ID": 15078, + "SourceStructureID": 62208, + "TargetStructureID": 8575, + "Label": "62208-8575 via BC Conventional Synapse from 62209 -> 62207", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62209, + "TargetID": 62207, + "Directional": true + } + ] + }, + { + "ID": 15079, + "SourceStructureID": 62217, + "TargetStructureID": 8575, + "Label": "62217-8575 via Conventional from 62218 -> 62216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62218, + "TargetID": 62216, + "Directional": true + } + ] + }, + { + "ID": 15080, + "SourceStructureID": 62223, + "TargetStructureID": 8575, + "Label": "62223-8575 via Ribbon Synapse from 62224 -> 62222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62224, + "TargetID": 62222, + "Directional": true + } + ] + }, + { + "ID": 15081, + "SourceStructureID": 62239, + "TargetStructureID": 8575, + "Label": "62239-8575 via BC Conventional Synapse from 62240 -> 62238", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62240, + "TargetID": 62238, + "Directional": true + } + ] + }, + { + "ID": 15082, + "SourceStructureID": 62310, + "TargetStructureID": 8575, + "Label": "62310-8575 via Ribbon Synapse from 62312 -> 62314", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62312, + "TargetID": 62314, + "Directional": true + } + ] + }, + { + "ID": 15083, + "SourceStructureID": 62317, + "TargetStructureID": 8575, + "Label": "62317-8575 via Conventional from 62319 -> 62316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62319, + "TargetID": 62316, + "Directional": true + } + ] + }, + { + "ID": 15084, + "SourceStructureID": 62325, + "TargetStructureID": 8575, + "Label": "62325-8575 via BC Conventional Synapse from 62326 -> 62323, 80679 -> 62328, 81413 -> 81412, 81417 -> 62324", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62326, + "TargetID": 62323, + "Directional": true + }, + { + "SourceID": 80679, + "TargetID": 62328, + "Directional": true + }, + { + "SourceID": 81413, + "TargetID": 81412, + "Directional": true + }, + { + "SourceID": 81417, + "TargetID": 62324, + "Directional": true + } + ] + }, + { + "ID": 15085, + "SourceStructureID": 62325, + "TargetStructureID": 8575, + "Label": "62325-8575 via Ribbon Synapse from 81264 -> 62324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81264, + "TargetID": 62324, + "Directional": true + } + ] + }, + { + "ID": 15086, + "SourceStructureID": 62325, + "TargetStructureID": 10574, + "Label": "62325-10574 via Ribbon Synapse from 81278 -> 10622", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81278, + "TargetID": 10622, + "Directional": true + } + ] + }, + { + "ID": 15087, + "SourceStructureID": 62325, + "TargetStructureID": 80522, + "Label": "62325-80522 via Ribbon Synapse from 80529 -> 80530, 80842 -> 81005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80529, + "TargetID": 80530, + "Directional": true + }, + { + "SourceID": 80842, + "TargetID": 81005, + "Directional": true + } + ] + }, + { + "ID": 15088, + "SourceStructureID": 62325, + "TargetStructureID": 80527, + "Label": "62325-80527 via BC Conventional Synapse from 80762 -> 80763", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80762, + "TargetID": 80763, + "Directional": true + } + ] + }, + { + "ID": 15089, + "SourceStructureID": 62325, + "TargetStructureID": 80532, + "Label": "62325-80532 via Ribbon Synapse from 80531 -> 80533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80531, + "TargetID": 80533, + "Directional": true + } + ] + }, + { + "ID": 15090, + "SourceStructureID": 62325, + "TargetStructureID": 80534, + "Label": "62325-80534 via Ribbon Synapse from 80861 -> 80866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80861, + "TargetID": 80866, + "Directional": true + } + ] + }, + { + "ID": 15091, + "SourceStructureID": 62325, + "TargetStructureID": 80684, + "Label": "62325-80684 via Ribbon Synapse from 80683 -> 80686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80683, + "TargetID": 80686, + "Directional": true + } + ] + }, + { + "ID": 15092, + "SourceStructureID": 62325, + "TargetStructureID": 80753, + "Label": "62325-80753 via Ribbon Synapse from 80529 -> 80754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80529, + "TargetID": 80754, + "Directional": true + } + ] + }, + { + "ID": 15093, + "SourceStructureID": 62325, + "TargetStructureID": 80806, + "Label": "62325-80806 via Ribbon Synapse from 80805 -> 80808", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80805, + "TargetID": 80808, + "Directional": true + } + ] + }, + { + "ID": 15094, + "SourceStructureID": 62325, + "TargetStructureID": 80849, + "Label": "62325-80849 via Ribbon Synapse from 80842 -> 80852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80842, + "TargetID": 80852, + "Directional": true + } + ] + }, + { + "ID": 15095, + "SourceStructureID": 62325, + "TargetStructureID": 80871, + "Label": "62325-80871 via BC Conventional Synapse from 80873 -> 80872", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80873, + "TargetID": 80872, + "Directional": true + } + ] + }, + { + "ID": 15096, + "SourceStructureID": 62325, + "TargetStructureID": 81236, + "Label": "62325-81236 via Ribbon Synapse from 81235 -> 81240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81235, + "TargetID": 81240, + "Directional": true + } + ] + }, + { + "ID": 15097, + "SourceStructureID": 62325, + "TargetStructureID": 81239, + "Label": "62325-81239 via Ribbon Synapse from 81235 -> 81241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81235, + "TargetID": 81241, + "Directional": true + } + ] + }, + { + "ID": 15098, + "SourceStructureID": 62325, + "TargetStructureID": 81257, + "Label": "62325-81257 via BC Conventional Synapse from 81255 -> 81258", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81255, + "TargetID": 81258, + "Directional": true + } + ] + }, + { + "ID": 15099, + "SourceStructureID": 62325, + "TargetStructureID": 81270, + "Label": "62325-81270 via BC Conventional Synapse from 81419 -> 81418", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81419, + "TargetID": 81418, + "Directional": true + } + ] + }, + { + "ID": 15100, + "SourceStructureID": 62325, + "TargetStructureID": 81270, + "Label": "62325-81270 via Ribbon Synapse from 81264 -> 81416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81264, + "TargetID": 81416, + "Directional": true + } + ] + }, + { + "ID": 15101, + "SourceStructureID": 62325, + "TargetStructureID": 81293, + "Label": "62325-81293 via Ribbon Synapse from 81291 -> 81294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81291, + "TargetID": 81294, + "Directional": true + } + ] + }, + { + "ID": 15102, + "SourceStructureID": 62325, + "TargetStructureID": 81296, + "Label": "62325-81296 via Ribbon Synapse from 81295 -> 81386", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81295, + "TargetID": 81386, + "Directional": true + } + ] + }, + { + "ID": 15103, + "SourceStructureID": 62325, + "TargetStructureID": 81300, + "Label": "62325-81300 via Ribbon Synapse from 81299 -> 81359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81299, + "TargetID": 81359, + "Directional": true + } + ] + }, + { + "ID": 15104, + "SourceStructureID": 62325, + "TargetStructureID": 81301, + "Label": "62325-81301 via Ribbon Synapse from 81299 -> 81358", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81299, + "TargetID": 81358, + "Directional": true + } + ] + }, + { + "ID": 15105, + "SourceStructureID": 62325, + "TargetStructureID": 81302, + "Label": "62325-81302 via Ribbon Synapse from 81299 -> 81303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81299, + "TargetID": 81303, + "Directional": true + } + ] + }, + { + "ID": 15106, + "SourceStructureID": 62325, + "TargetStructureID": 81321, + "Label": "62325-81321 via Ribbon Synapse from 81315 -> 81323", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81315, + "TargetID": 81323, + "Directional": true + } + ] + }, + { + "ID": 15107, + "SourceStructureID": 62325, + "TargetStructureID": 81322, + "Label": "62325-81322 via Ribbon Synapse from 81315 -> 81324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81315, + "TargetID": 81324, + "Directional": true + } + ] + }, + { + "ID": 15108, + "SourceStructureID": 62325, + "TargetStructureID": 81379, + "Label": "62325-81379 via BC Conventional Synapse from 81380 -> 81381", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81380, + "TargetID": 81381, + "Directional": true + } + ] + }, + { + "ID": 15109, + "SourceStructureID": 62325, + "TargetStructureID": 81405, + "Label": "62325-81405 via Ribbon Synapse from 81291 -> 81406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81291, + "TargetID": 81406, + "Directional": true + } + ] + }, + { + "ID": 15110, + "SourceStructureID": 62337, + "TargetStructureID": 8575, + "Label": "62337-8575 via BC Conventional Synapse from 62338 -> 62336", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62338, + "TargetID": 62336, + "Directional": true + } + ] + }, + { + "ID": 15111, + "SourceStructureID": 62340, + "TargetStructureID": 8575, + "Label": "62340-8575 via Conventional from 62341 -> 62339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62341, + "TargetID": 62339, + "Directional": true + } + ] + }, + { + "ID": 15112, + "SourceStructureID": 62344, + "TargetStructureID": 8575, + "Label": "62344-8575 via BC Conventional Synapse from 62345 -> 62343", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62345, + "TargetID": 62343, + "Directional": true + } + ] + }, + { + "ID": 15113, + "SourceStructureID": 62384, + "TargetStructureID": 8575, + "Label": "62384-8575 via Conventional from 62385 -> 62381, 62385 -> 62386", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62385, + "TargetID": 62381, + "Directional": true + }, + { + "SourceID": 62385, + "TargetID": 62386, + "Directional": true + } + ] + }, + { + "ID": 15114, + "SourceStructureID": 62396, + "TargetStructureID": 5598, + "Label": "62396-5598 via Conventional from 62404 -> 36022, 62411 -> 115158, 91576 -> 62403", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62404, + "TargetID": 36022, + "Directional": true + }, + { + "SourceID": 62411, + "TargetID": 115158, + "Directional": true + }, + { + "SourceID": 91576, + "TargetID": 62403, + "Directional": true + } + ] + }, + { + "ID": 15115, + "SourceStructureID": 62396, + "TargetStructureID": 6050, + "Label": "62396-6050 via Conventional from 62397 -> 35945", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62397, + "TargetID": 35945, + "Directional": true + } + ] + }, + { + "ID": 15116, + "SourceStructureID": 62396, + "TargetStructureID": 15976, + "Label": "62396-15976 via Conventional from 62416 -> 36044, 62418 -> 36048", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62416, + "TargetID": 36044, + "Directional": true + }, + { + "SourceID": 62418, + "TargetID": 36048, + "Directional": true + } + ] + }, + { + "ID": 15117, + "SourceStructureID": 62396, + "TargetStructureID": 35811, + "Label": "62396-35811 via Conventional from 62408 -> 35869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62408, + "TargetID": 35869, + "Directional": true + } + ] + }, + { + "ID": 15118, + "SourceStructureID": 62420, + "TargetStructureID": 8575, + "Label": "62420-8575 via BC Conventional Synapse from 62421 -> 62249", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62421, + "TargetID": 62249, + "Directional": true + } + ] + }, + { + "ID": 15119, + "SourceStructureID": 62420, + "TargetStructureID": 62423, + "Label": "62420-62423 via Ribbon Synapse from 62425 -> 62424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62425, + "TargetID": 62424, + "Directional": true + } + ] + }, + { + "ID": 15120, + "SourceStructureID": 62423, + "TargetStructureID": 62420, + "Label": "62423-62420 via Conventional from 62426 -> 62422", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62426, + "TargetID": 62422, + "Directional": true + } + ] + }, + { + "ID": 15121, + "SourceStructureID": 62433, + "TargetStructureID": 8575, + "Label": "62433-8575 via BC Conventional Synapse from 62434 -> 62432", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62434, + "TargetID": 62432, + "Directional": true + } + ] + }, + { + "ID": 15122, + "SourceStructureID": 62436, + "TargetStructureID": 8575, + "Label": "62436-8575 via Conventional from 62437 -> 61552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62437, + "TargetID": 61552, + "Directional": true + } + ] + }, + { + "ID": 15123, + "SourceStructureID": 62443, + "TargetStructureID": 8575, + "Label": "62443-8575 via Conventional from 62444 -> 62442", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62444, + "TargetID": 62442, + "Directional": true + } + ] + }, + { + "ID": 15124, + "SourceStructureID": 62446, + "TargetStructureID": 8575, + "Label": "62446-8575 via Conventional from 62447 -> 62445", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62447, + "TargetID": 62445, + "Directional": true + } + ] + }, + { + "ID": 15125, + "SourceStructureID": 62450, + "TargetStructureID": 8575, + "Label": "62450-8575 via Conventional from 62451 -> 61550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62451, + "TargetID": 61550, + "Directional": true + } + ] + }, + { + "ID": 15126, + "SourceStructureID": 62453, + "TargetStructureID": 8575, + "Label": "62453-8575 via Conventional from 62454 -> 62452", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62454, + "TargetID": 62452, + "Directional": true + } + ] + }, + { + "ID": 15127, + "SourceStructureID": 62456, + "TargetStructureID": 16073, + "Label": "62456-16073 via Conventional from 62457 -> 16081", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62457, + "TargetID": 16081, + "Directional": true + } + ] + }, + { + "ID": 15128, + "SourceStructureID": 62458, + "TargetStructureID": 16073, + "Label": "62458-16073 via Conventional from 62459 -> 20179", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62459, + "TargetID": 20179, + "Directional": true + } + ] + }, + { + "ID": 15129, + "SourceStructureID": 62460, + "TargetStructureID": 16073, + "Label": "62460-16073 via Conventional from 62461 -> 20177", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62461, + "TargetID": 20177, + "Directional": true + } + ] + }, + { + "ID": 15130, + "SourceStructureID": 62462, + "TargetStructureID": 16073, + "Label": "62462-16073 via Conventional from 62463 -> 20178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62463, + "TargetID": 20178, + "Directional": true + } + ] + }, + { + "ID": 15131, + "SourceStructureID": 62464, + "TargetStructureID": 16073, + "Label": "62464-16073 via Conventional from 62465 -> 16083", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62465, + "TargetID": 16083, + "Directional": true + } + ] + }, + { + "ID": 15132, + "SourceStructureID": 62468, + "TargetStructureID": 16073, + "Label": "62468-16073 via Conventional from 62471 -> 62466", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62471, + "TargetID": 62466, + "Directional": true + } + ] + }, + { + "ID": 15133, + "SourceStructureID": 62469, + "TargetStructureID": 16073, + "Label": "62469-16073 via Conventional from 62470 -> 62467", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62470, + "TargetID": 62467, + "Directional": true + } + ] + }, + { + "ID": 15134, + "SourceStructureID": 62473, + "TargetStructureID": 16073, + "Label": "62473-16073 via Conventional from 62474 -> 62472", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62474, + "TargetID": 62472, + "Directional": true + } + ] + }, + { + "ID": 15135, + "SourceStructureID": 62475, + "TargetStructureID": 16073, + "Label": "62475-16073 via Conventional from 62476 -> 20176", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62476, + "TargetID": 20176, + "Directional": true + } + ] + }, + { + "ID": 15136, + "SourceStructureID": 62478, + "TargetStructureID": 16073, + "Label": "62478-16073 via Conventional from 62479 -> 62477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62479, + "TargetID": 62477, + "Directional": true + } + ] + }, + { + "ID": 15137, + "SourceStructureID": 62480, + "TargetStructureID": 6120, + "Label": "62480-6120 via Conventional from 62482 -> 37243", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62482, + "TargetID": 37243, + "Directional": true + } + ] + }, + { + "ID": 15138, + "SourceStructureID": 62480, + "TargetStructureID": 16073, + "Label": "62480-16073 via Conventional from 62481 -> 19898, 62481 -> 19936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62481, + "TargetID": 19898, + "Directional": true + }, + { + "SourceID": 62481, + "TargetID": 19936, + "Directional": true + } + ] + }, + { + "ID": 15139, + "SourceStructureID": 62483, + "TargetStructureID": 6120, + "Label": "62483-6120 via Conventional from 125647 -> 125646", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125647, + "TargetID": 125646, + "Directional": true + } + ] + }, + { + "ID": 15140, + "SourceStructureID": 62483, + "TargetStructureID": 16073, + "Label": "62483-16073 via Conventional from 62484 -> 19935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62484, + "TargetID": 19935, + "Directional": true + } + ] + }, + { + "ID": 15141, + "SourceStructureID": 62485, + "TargetStructureID": 16073, + "Label": "62485-16073 via Conventional from 62486 -> 19934", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62486, + "TargetID": 19934, + "Directional": true + } + ] + }, + { + "ID": 15142, + "SourceStructureID": 62489, + "TargetStructureID": 16073, + "Label": "62489-16073 via Conventional from 62490 -> 62488", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62490, + "TargetID": 62488, + "Directional": true + } + ] + }, + { + "ID": 15143, + "SourceStructureID": 62491, + "TargetStructureID": 16073, + "Label": "62491-16073 via Conventional from 62493 -> 19939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62493, + "TargetID": 19939, + "Directional": true + } + ] + }, + { + "ID": 15144, + "SourceStructureID": 62492, + "TargetStructureID": 16073, + "Label": "62492-16073 via Conventional from 62494 -> 19940", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62494, + "TargetID": 19940, + "Directional": true + } + ] + }, + { + "ID": 15145, + "SourceStructureID": 62496, + "TargetStructureID": 5498, + "Label": "62496-5498 via Conventional from 62497 -> 62495", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62497, + "TargetID": 62495, + "Directional": true + } + ] + }, + { + "ID": 15146, + "SourceStructureID": 62500, + "TargetStructureID": 55686, + "Label": "62500-55686 via Conventional from 62523 -> 62524", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62523, + "TargetID": 62524, + "Directional": true + } + ] + }, + { + "ID": 15147, + "SourceStructureID": 62511, + "TargetStructureID": 62500, + "Label": "62511-62500 via Ribbon Synapse from 62512 -> 62510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62512, + "TargetID": 62510, + "Directional": true + } + ] + }, + { + "ID": 15148, + "SourceStructureID": 62515, + "TargetStructureID": 62500, + "Label": "62515-62500 via Ribbon Synapse from 62516 -> 62514", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62516, + "TargetID": 62514, + "Directional": true + } + ] + }, + { + "ID": 15149, + "SourceStructureID": 62531, + "TargetStructureID": 5497, + "Label": "62531-5497 via Ribbon Synapse from 62532 -> 62530", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62532, + "TargetID": 62530, + "Directional": true + } + ] + }, + { + "ID": 15150, + "SourceStructureID": 62531, + "TargetStructureID": 7859, + "Label": "62531-7859 via Ribbon Synapse from 64635 -> 64630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64635, + "TargetID": 64630, + "Directional": true + } + ] + }, + { + "ID": 15151, + "SourceStructureID": 62540, + "TargetStructureID": 5497, + "Label": "62540-5497 via Ribbon Synapse from 62541 -> 62539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62541, + "TargetID": 62539, + "Directional": true + } + ] + }, + { + "ID": 15152, + "SourceStructureID": 62574, + "TargetStructureID": 5497, + "Label": "62574-5497 via Conventional from 62575 -> 62573", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62575, + "TargetID": 62573, + "Directional": true + } + ] + }, + { + "ID": 15153, + "SourceStructureID": 62599, + "TargetStructureID": 5497, + "Label": "62599-5497 via Ribbon Synapse from 62600 -> 62598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62600, + "TargetID": 62598, + "Directional": true + } + ] + }, + { + "ID": 15154, + "SourceStructureID": 62617, + "TargetStructureID": 5497, + "Label": "62617-5497 via Ribbon Synapse from 62618 -> 62616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62618, + "TargetID": 62616, + "Directional": true + } + ] + }, + { + "ID": 15155, + "SourceStructureID": 62632, + "TargetStructureID": 7703, + "Label": "62632-7703 via Ribbon Synapse from 62633 -> 62634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62633, + "TargetID": 62634, + "Directional": true + } + ] + }, + { + "ID": 15156, + "SourceStructureID": 62655, + "TargetStructureID": 8579, + "Label": "62655-8579 via Ribbon Synapse from 62656 -> 62654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62656, + "TargetID": 62654, + "Directional": true + } + ] + }, + { + "ID": 15157, + "SourceStructureID": 62659, + "TargetStructureID": 8579, + "Label": "62659-8579 via Conventional from 62660 -> 62658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62660, + "TargetID": 62658, + "Directional": true + } + ] + }, + { + "ID": 15158, + "SourceStructureID": 62704, + "TargetStructureID": 8579, + "Label": "62704-8579 via Conventional from 62705 -> 62702", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62705, + "TargetID": 62702, + "Directional": true + } + ] + }, + { + "ID": 15159, + "SourceStructureID": 62704, + "TargetStructureID": 62707, + "Label": "62704-62707 via Conventional from 62706 -> 62709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62706, + "TargetID": 62709, + "Directional": true + } + ] + }, + { + "ID": 15160, + "SourceStructureID": 62720, + "TargetStructureID": 6142, + "Label": "62720-6142 via Conventional from 62722 -> 62719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62722, + "TargetID": 62719, + "Directional": true + } + ] + }, + { + "ID": 15161, + "SourceStructureID": 62720, + "TargetStructureID": 8579, + "Label": "62720-8579 via Conventional from 62721 -> 62718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62721, + "TargetID": 62718, + "Directional": true + } + ] + }, + { + "ID": 15162, + "SourceStructureID": 62731, + "TargetStructureID": 8579, + "Label": "62731-8579 via Conventional from 62732 -> 62730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62732, + "TargetID": 62730, + "Directional": true + } + ] + }, + { + "ID": 15163, + "SourceStructureID": 62760, + "TargetStructureID": 6997, + "Label": "62760-6997 via Conventional from 62762 -> 28718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62762, + "TargetID": 28718, + "Directional": true + } + ] + }, + { + "ID": 15164, + "SourceStructureID": 62760, + "TargetStructureID": 8575, + "Label": "62760-8575 via Conventional from 62761 -> 21626", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62761, + "TargetID": 21626, + "Directional": true + } + ] + }, + { + "ID": 15165, + "SourceStructureID": 62764, + "TargetStructureID": 8575, + "Label": "62764-8575 via Conventional from 62765 -> 43264", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62765, + "TargetID": 43264, + "Directional": true + } + ] + }, + { + "ID": 15166, + "SourceStructureID": 62777, + "TargetStructureID": 4890, + "Label": "62777-4890 via Ribbon Synapse from 64883 -> 64882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64883, + "TargetID": 64882, + "Directional": true + } + ] + }, + { + "ID": 15167, + "SourceStructureID": 62777, + "TargetStructureID": 8575, + "Label": "62777-8575 via BC Conventional Synapse from 62778 -> 62776", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62778, + "TargetID": 62776, + "Directional": true + } + ] + }, + { + "ID": 15168, + "SourceStructureID": 62786, + "TargetStructureID": 5405, + "Label": "62786-5405 via Ribbon Synapse from 62787 -> 11155", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62787, + "TargetID": 11155, + "Directional": true + } + ] + }, + { + "ID": 15169, + "SourceStructureID": 62786, + "TargetStructureID": 8575, + "Label": "62786-8575 via Ribbon Synapse from 62788 -> 62785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62788, + "TargetID": 62785, + "Directional": true + } + ] + }, + { + "ID": 15170, + "SourceStructureID": 62807, + "TargetStructureID": 8575, + "Label": "62807-8575 via Conventional from 62808 -> 62806", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62808, + "TargetID": 62806, + "Directional": true + } + ] + }, + { + "ID": 15171, + "SourceStructureID": 62829, + "TargetStructureID": 8575, + "Label": "62829-8575 via Conventional from 62830 -> 62828", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62830, + "TargetID": 62828, + "Directional": true + } + ] + }, + { + "ID": 15172, + "SourceStructureID": 62933, + "TargetStructureID": 8579, + "Label": "62933-8579 via Adherens from 62935 -> 62683", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 62935, + "TargetID": 62683, + "Directional": true + } + ] + }, + { + "ID": 15173, + "SourceStructureID": 62933, + "TargetStructureID": 8579, + "Label": "62933-8579 via Conventional from 62934 -> 62684", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62934, + "TargetID": 62684, + "Directional": true + } + ] + }, + { + "ID": 15174, + "SourceStructureID": 62956, + "TargetStructureID": 8575, + "Label": "62956-8575 via Ribbon Synapse from 62958 -> 62955", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62958, + "TargetID": 62955, + "Directional": true + } + ] + }, + { + "ID": 15175, + "SourceStructureID": 62964, + "TargetStructureID": 8575, + "Label": "62964-8575 via Conventional from 62965 -> 37263", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62965, + "TargetID": 37263, + "Directional": true + } + ] + }, + { + "ID": 15176, + "SourceStructureID": 62974, + "TargetStructureID": 8575, + "Label": "62974-8575 via Conventional from 62975 -> 62973", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62975, + "TargetID": 62973, + "Directional": true + } + ] + }, + { + "ID": 15177, + "SourceStructureID": 62974, + "TargetStructureID": 10963, + "Label": "62974-10963 via Conventional from 62982 -> 31937", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62982, + "TargetID": 31937, + "Directional": true + } + ] + }, + { + "ID": 15178, + "SourceStructureID": 62989, + "TargetStructureID": 8575, + "Label": "62989-8575 via Conventional from 62991 -> 37265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 62991, + "TargetID": 37265, + "Directional": true + } + ] + }, + { + "ID": 15179, + "SourceStructureID": 62992, + "TargetStructureID": 62989, + "Label": "62992-62989 via Ribbon Synapse from 62993 -> 62990", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 62993, + "TargetID": 62990, + "Directional": true + } + ] + }, + { + "ID": 15180, + "SourceStructureID": 63000, + "TargetStructureID": 8575, + "Label": "63000-8575 via Conventional from 63001 -> 21651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63001, + "TargetID": 21651, + "Directional": true + } + ] + }, + { + "ID": 15181, + "SourceStructureID": 63016, + "TargetStructureID": 8575, + "Label": "63016-8575 via Conventional from 63017 -> 63015", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63017, + "TargetID": 63015, + "Directional": true + } + ] + }, + { + "ID": 15182, + "SourceStructureID": 63060, + "TargetStructureID": 8575, + "Label": "63060-8575 via Conventional from 63061 -> 63059", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63061, + "TargetID": 63059, + "Directional": true + } + ] + }, + { + "ID": 15183, + "SourceStructureID": 63068, + "TargetStructureID": 8575, + "Label": "63068-8575 via Conventional from 63070 -> 21627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63070, + "TargetID": 21627, + "Directional": true + } + ] + }, + { + "ID": 15184, + "SourceStructureID": 63071, + "TargetStructureID": 63068, + "Label": "63071-63068 via Conventional from 63072 -> 63069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63072, + "TargetID": 63069, + "Directional": true + } + ] + }, + { + "ID": 15185, + "SourceStructureID": 63115, + "TargetStructureID": 5522, + "Label": "63115-5522 via Conventional from 63116 -> 63117", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63116, + "TargetID": 63117, + "Directional": true + } + ] + }, + { + "ID": 15186, + "SourceStructureID": 63199, + "TargetStructureID": 79042, + "Label": "63199-79042 via Ribbon Synapse from 147551 -> 147552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147551, + "TargetID": 147552, + "Directional": true + } + ] + }, + { + "ID": 15187, + "SourceStructureID": 63209, + "TargetStructureID": 5916, + "Label": "63209-5916 via Conventional from 63210 -> 63208", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63210, + "TargetID": 63208, + "Directional": true + } + ] + }, + { + "ID": 15188, + "SourceStructureID": 63423, + "TargetStructureID": 13858, + "Label": "63423-13858 via Ribbon Synapse from 63424 -> 63422", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63424, + "TargetID": 63422, + "Directional": true + } + ] + }, + { + "ID": 15189, + "SourceStructureID": 63423, + "TargetStructureID": 85856, + "Label": "63423-85856 via Ribbon Synapse from 71180 -> 71177, 71181 -> 71178", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71180, + "TargetID": 71177, + "Directional": true + }, + { + "SourceID": 71181, + "TargetID": 71178, + "Directional": true + } + ] + }, + { + "ID": 15190, + "SourceStructureID": 63440, + "TargetStructureID": 13858, + "Label": "63440-13858 via Conventional from 63441 -> 63442", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63441, + "TargetID": 63442, + "Directional": true + } + ] + }, + { + "ID": 15191, + "SourceStructureID": 63440, + "TargetStructureID": 63445, + "Label": "63440-63445 via Conventional from 63444 -> 63446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63444, + "TargetID": 63446, + "Directional": true + } + ] + }, + { + "ID": 15192, + "SourceStructureID": 63445, + "TargetStructureID": 13858, + "Label": "63445-13858 via Ribbon Synapse from 63447 -> 63439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63447, + "TargetID": 63439, + "Directional": true + } + ] + }, + { + "ID": 15193, + "SourceStructureID": 63451, + "TargetStructureID": 8720, + "Label": "63451-8720 via Ribbon Synapse from 63452 -> 63450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63452, + "TargetID": 63450, + "Directional": true + } + ] + }, + { + "ID": 15194, + "SourceStructureID": 63460, + "TargetStructureID": 8720, + "Label": "63460-8720 via Ribbon Synapse from 63461 -> 63459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63461, + "TargetID": 63459, + "Directional": true + } + ] + }, + { + "ID": 15195, + "SourceStructureID": 63465, + "TargetStructureID": 8720, + "Label": "63465-8720 via Ribbon Synapse from 63466 -> 63464", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63466, + "TargetID": 63464, + "Directional": true + } + ] + }, + { + "ID": 15196, + "SourceStructureID": 63473, + "TargetStructureID": 63469, + "Label": "63473-63469 via Ribbon Synapse from 63474 -> 63472", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63474, + "TargetID": 63472, + "Directional": true + } + ] + }, + { + "ID": 15197, + "SourceStructureID": 63485, + "TargetStructureID": 71985, + "Label": "63485-71985 via Ribbon Synapse from 72017 -> 72018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72017, + "TargetID": 72018, + "Directional": true + } + ] + }, + { + "ID": 15198, + "SourceStructureID": 63487, + "TargetStructureID": 71985, + "Label": "63487-71985 via Ribbon Synapse from 63488 -> 71987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63488, + "TargetID": 71987, + "Directional": true + } + ] + }, + { + "ID": 15199, + "SourceStructureID": 63513, + "TargetStructureID": 8575, + "Label": "63513-8575 via Ribbon Synapse from 63514 -> 63512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63514, + "TargetID": 63512, + "Directional": true + } + ] + }, + { + "ID": 15200, + "SourceStructureID": 63516, + "TargetStructureID": 8575, + "Label": "63516-8575 via Conventional from 63517 -> 63509", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63517, + "TargetID": 63509, + "Directional": true + } + ] + }, + { + "ID": 15201, + "SourceStructureID": 63521, + "TargetStructureID": 8575, + "Label": "63521-8575 via Conventional from 63523 -> 62104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63523, + "TargetID": 62104, + "Directional": true + } + ] + }, + { + "ID": 15202, + "SourceStructureID": 63521, + "TargetStructureID": 35145, + "Label": "63521-35145 via Conventional from 63522 -> 45493", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63522, + "TargetID": 45493, + "Directional": true + } + ] + }, + { + "ID": 15203, + "SourceStructureID": 63542, + "TargetStructureID": 8575, + "Label": "63542-8575 via Conventional from 63543 -> 63541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63543, + "TargetID": 63541, + "Directional": true + } + ] + }, + { + "ID": 15204, + "SourceStructureID": 63550, + "TargetStructureID": 8575, + "Label": "63550-8575 via Conventional from 63552 -> 62100", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63552, + "TargetID": 62100, + "Directional": true + } + ] + }, + { + "ID": 15205, + "SourceStructureID": 63573, + "TargetStructureID": 63550, + "Label": "63573-63550 via Ribbon Synapse from 63575 -> 63572", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63575, + "TargetID": 63572, + "Directional": true + } + ] + }, + { + "ID": 15206, + "SourceStructureID": 63592, + "TargetStructureID": 63550, + "Label": "63592-63550 via Ribbon Synapse from 63593 -> 63591", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63593, + "TargetID": 63591, + "Directional": true + } + ] + }, + { + "ID": 15207, + "SourceStructureID": 63612, + "TargetStructureID": 8575, + "Label": "63612-8575 via Conventional from 63613 -> 62098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63613, + "TargetID": 62098, + "Directional": true + } + ] + }, + { + "ID": 15208, + "SourceStructureID": 63619, + "TargetStructureID": 8575, + "Label": "63619-8575 via Conventional from 63620 -> 62096", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63620, + "TargetID": 62096, + "Directional": true + } + ] + }, + { + "ID": 15209, + "SourceStructureID": 63628, + "TargetStructureID": 397, + "Label": "63628-397 via Conventional from 63826 -> 68724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63826, + "TargetID": 68724, + "Directional": true + } + ] + }, + { + "ID": 15210, + "SourceStructureID": 63628, + "TargetStructureID": 8575, + "Label": "63628-8575 via Conventional from 63629 -> 62095", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63629, + "TargetID": 62095, + "Directional": true + } + ] + }, + { + "ID": 15211, + "SourceStructureID": 63628, + "TargetStructureID": 59333, + "Label": "63628-59333 via Conventional from 85040 -> 85037", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85040, + "TargetID": 85037, + "Directional": true + } + ] + }, + { + "ID": 15212, + "SourceStructureID": 63628, + "TargetStructureID": 63806, + "Label": "63628-63806 via Conventional from 63805 -> 63808", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63805, + "TargetID": 63808, + "Directional": true + } + ] + }, + { + "ID": 15213, + "SourceStructureID": 63799, + "TargetStructureID": 59362, + "Label": "63799-59362 via Conventional from 63800 -> 63798", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63800, + "TargetID": 63798, + "Directional": true + } + ] + }, + { + "ID": 15214, + "SourceStructureID": 63806, + "TargetStructureID": 63628, + "Label": "63806-63628 via Ribbon Synapse from 63807 -> 63804", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63807, + "TargetID": 63804, + "Directional": true + } + ] + }, + { + "ID": 15215, + "SourceStructureID": 63956, + "TargetStructureID": 5611, + "Label": "63956-5611 via Conventional from 63957 -> 63955", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 63957, + "TargetID": 63955, + "Directional": true + } + ] + }, + { + "ID": 15216, + "SourceStructureID": 63991, + "TargetStructureID": 63978, + "Label": "63991-63978 via Ribbon Synapse from 63992 -> 63990", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63992, + "TargetID": 63990, + "Directional": true + } + ] + }, + { + "ID": 15217, + "SourceStructureID": 64196, + "TargetStructureID": 32804, + "Label": "64196-32804 via Ribbon Synapse from 64199 -> 64206, 64200 -> 64205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64199, + "TargetID": 64206, + "Directional": true + }, + { + "SourceID": 64200, + "TargetID": 64205, + "Directional": true + } + ] + }, + { + "ID": 15218, + "SourceStructureID": 64355, + "TargetStructureID": 13858, + "Label": "64355-13858 via Conventional from 64356 -> 63418", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64356, + "TargetID": 63418, + "Directional": true + } + ] + }, + { + "ID": 15219, + "SourceStructureID": 64362, + "TargetStructureID": 593, + "Label": "64362-593 via Conventional from 64364 -> 64365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64364, + "TargetID": 64365, + "Directional": true + } + ] + }, + { + "ID": 15220, + "SourceStructureID": 64362, + "TargetStructureID": 7594, + "Label": "64362-7594 via Conventional from 82389 -> 82390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82389, + "TargetID": 82390, + "Directional": true + } + ] + }, + { + "ID": 15221, + "SourceStructureID": 64362, + "TargetStructureID": 16026, + "Label": "64362-16026 via Conventional from 81910 -> 25639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81910, + "TargetID": 25639, + "Directional": true + } + ] + }, + { + "ID": 15222, + "SourceStructureID": 64362, + "TargetStructureID": 31161, + "Label": "64362-31161 via Conventional from 64363 -> 31244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64363, + "TargetID": 31244, + "Directional": true + } + ] + }, + { + "ID": 15223, + "SourceStructureID": 64362, + "TargetStructureID": 81912, + "Label": "64362-81912 via Conventional from 81911 -> 81913", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81911, + "TargetID": 81913, + "Directional": true + } + ] + }, + { + "ID": 15224, + "SourceStructureID": 64387, + "TargetStructureID": 8720, + "Label": "64387-8720 via Conventional from 64388 -> 63171", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64388, + "TargetID": 63171, + "Directional": true + } + ] + }, + { + "ID": 15225, + "SourceStructureID": 64389, + "TargetStructureID": 8720, + "Label": "64389-8720 via Conventional from 64390 -> 63170", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64390, + "TargetID": 63170, + "Directional": true + } + ] + }, + { + "ID": 15226, + "SourceStructureID": 64399, + "TargetStructureID": 8720, + "Label": "64399-8720 via Conventional from 64400 -> 63169", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64400, + "TargetID": 63169, + "Directional": true + } + ] + }, + { + "ID": 15227, + "SourceStructureID": 64402, + "TargetStructureID": 8720, + "Label": "64402-8720 via Conventional from 64403 -> 64401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64403, + "TargetID": 64401, + "Directional": true + } + ] + }, + { + "ID": 15228, + "SourceStructureID": 64406, + "TargetStructureID": 8720, + "Label": "64406-8720 via Conventional from 64407 -> 64405", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64407, + "TargetID": 64405, + "Directional": true + } + ] + }, + { + "ID": 15229, + "SourceStructureID": 64409, + "TargetStructureID": 5530, + "Label": "64409-5530 via Conventional from 74999 -> 75000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74999, + "TargetID": 75000, + "Directional": true + } + ] + }, + { + "ID": 15230, + "SourceStructureID": 64447, + "TargetStructureID": 5729, + "Label": "64447-5729 via Conventional from 64448 -> 64446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64448, + "TargetID": 64446, + "Directional": true + } + ] + }, + { + "ID": 15231, + "SourceStructureID": 64520, + "TargetStructureID": 5729, + "Label": "64520-5729 via Conventional from 64521 -> 64519", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64521, + "TargetID": 64519, + "Directional": true + } + ] + }, + { + "ID": 15232, + "SourceStructureID": 64547, + "TargetStructureID": 5575, + "Label": "64547-5575 via Conventional from 64548 -> 64546", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64548, + "TargetID": 64546, + "Directional": true + } + ] + }, + { + "ID": 15233, + "SourceStructureID": 64549, + "TargetStructureID": 5575, + "Label": "64549-5575 via Conventional from 64550 -> 22970", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64550, + "TargetID": 22970, + "Directional": true + } + ] + }, + { + "ID": 15234, + "SourceStructureID": 64626, + "TargetStructureID": 7859, + "Label": "64626-7859 via Conventional from 64627 -> 64625", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64627, + "TargetID": 64625, + "Directional": true + } + ] + }, + { + "ID": 15235, + "SourceStructureID": 64651, + "TargetStructureID": 5860, + "Label": "64651-5860 via Conventional from 64652 -> 64653", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64652, + "TargetID": 64653, + "Directional": true + } + ] + }, + { + "ID": 15236, + "SourceStructureID": 64654, + "TargetStructureID": 485, + "Label": "64654-485 via Conventional from 64656 -> 64657", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64656, + "TargetID": 64657, + "Directional": true + } + ] + }, + { + "ID": 15237, + "SourceStructureID": 64665, + "TargetStructureID": 7859, + "Label": "64665-7859 via Conventional from 64667 -> 64664", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64667, + "TargetID": 64664, + "Directional": true + } + ] + }, + { + "ID": 15238, + "SourceStructureID": 64670, + "TargetStructureID": 64673, + "Label": "64670-64673 via Conventional from 64672 -> 64674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64672, + "TargetID": 64674, + "Directional": true + } + ] + }, + { + "ID": 15239, + "SourceStructureID": 64673, + "TargetStructureID": 174, + "Label": "64673-174 via Ribbon Synapse from 64676 -> 64675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64676, + "TargetID": 64675, + "Directional": true + } + ] + }, + { + "ID": 15240, + "SourceStructureID": 64673, + "TargetStructureID": 64670, + "Label": "64673-64670 via Ribbon Synapse from 64676 -> 64677, 64680 -> 64679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64676, + "TargetID": 64677, + "Directional": true + }, + { + "SourceID": 64680, + "TargetID": 64679, + "Directional": true + } + ] + }, + { + "ID": 15241, + "SourceStructureID": 64673, + "TargetStructureID": 119154, + "Label": "64673-119154 via Ribbon Synapse from 64680 -> 119174", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64680, + "TargetID": 119174, + "Directional": true + } + ] + }, + { + "ID": 15242, + "SourceStructureID": 64690, + "TargetStructureID": 9787, + "Label": "64690-9787 via Ribbon Synapse from 64691 -> 64692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64691, + "TargetID": 64692, + "Directional": true + } + ] + }, + { + "ID": 15243, + "SourceStructureID": 64690, + "TargetStructureID": 10574, + "Label": "64690-10574 via Ribbon Synapse from 84549 -> 84547", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84549, + "TargetID": 84547, + "Directional": true + } + ] + }, + { + "ID": 15244, + "SourceStructureID": 64698, + "TargetStructureID": 8575, + "Label": "64698-8575 via Conventional from 64699 -> 63510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64699, + "TargetID": 63510, + "Directional": true + } + ] + }, + { + "ID": 15245, + "SourceStructureID": 64787, + "TargetStructureID": 64777, + "Label": "64787-64777 via Conventional from 64788 -> 64786", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64788, + "TargetID": 64786, + "Directional": true + } + ] + }, + { + "ID": 15246, + "SourceStructureID": 64795, + "TargetStructureID": 64777, + "Label": "64795-64777 via Conventional from 64796 -> 64794", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64796, + "TargetID": 64794, + "Directional": true + } + ] + }, + { + "ID": 15247, + "SourceStructureID": 64805, + "TargetStructureID": 10963, + "Label": "64805-10963 via Conventional from 64806 -> 64803, 64807 -> 64804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64806, + "TargetID": 64803, + "Directional": true + }, + { + "SourceID": 64807, + "TargetID": 64804, + "Directional": true + } + ] + }, + { + "ID": 15248, + "SourceStructureID": 64841, + "TargetStructureID": 64777, + "Label": "64841-64777 via Ribbon Synapse from 64842 -> 64840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 64842, + "TargetID": 64840, + "Directional": true + } + ] + }, + { + "ID": 15249, + "SourceStructureID": 64920, + "TargetStructureID": 4890, + "Label": "64920-4890 via Conventional from 64921 -> 64919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64921, + "TargetID": 64919, + "Directional": true + } + ] + }, + { + "ID": 15250, + "SourceStructureID": 64939, + "TargetStructureID": 64939, + "Label": "64939-64939 via Conventional from 69440 -> 69419", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69440, + "TargetID": 69419, + "Directional": true + } + ] + }, + { + "ID": 15251, + "SourceStructureID": 64939, + "TargetStructureID": 64939, + "Label": "64939-64939 via Ribbon Synapse from 69707 -> 69715", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69707, + "TargetID": 69715, + "Directional": true + } + ] + }, + { + "ID": 15252, + "SourceStructureID": 64939, + "TargetStructureID": 69436, + "Label": "64939-69436 via Ribbon Synapse from 69417 -> 69437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69417, + "TargetID": 69437, + "Directional": true + } + ] + }, + { + "ID": 15253, + "SourceStructureID": 64939, + "TargetStructureID": 69439, + "Label": "64939-69439 via Ribbon Synapse from 69417 -> 69644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69417, + "TargetID": 69644, + "Directional": true + } + ] + }, + { + "ID": 15254, + "SourceStructureID": 64939, + "TargetStructureID": 69443, + "Label": "64939-69443 via BC Conventional Synapse from 69421 -> 69444", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69421, + "TargetID": 69444, + "Directional": true + } + ] + }, + { + "ID": 15255, + "SourceStructureID": 64939, + "TargetStructureID": 69446, + "Label": "64939-69446 via Ribbon Synapse from 69425 -> 116705, 69445 -> 69447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69425, + "TargetID": 116705, + "Directional": true + }, + { + "SourceID": 69445, + "TargetID": 69447, + "Directional": true + } + ] + }, + { + "ID": 15256, + "SourceStructureID": 64939, + "TargetStructureID": 69454, + "Label": "64939-69454 via Ribbon Synapse from 69423 -> 69455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69423, + "TargetID": 69455, + "Directional": true + } + ] + }, + { + "ID": 15257, + "SourceStructureID": 64939, + "TargetStructureID": 69554, + "Label": "64939-69554 via BC Conventional Synapse from 69564 -> 69565", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69564, + "TargetID": 69565, + "Directional": true + } + ] + }, + { + "ID": 15258, + "SourceStructureID": 64939, + "TargetStructureID": 69695, + "Label": "64939-69695 via Ribbon Synapse from 69694 -> 69698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69694, + "TargetID": 69698, + "Directional": true + } + ] + }, + { + "ID": 15259, + "SourceStructureID": 64939, + "TargetStructureID": 69697, + "Label": "64939-69697 via Ribbon Synapse from 69694 -> 69699", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69694, + "TargetID": 69699, + "Directional": true + } + ] + }, + { + "ID": 15260, + "SourceStructureID": 64939, + "TargetStructureID": 69708, + "Label": "64939-69708 via Ribbon Synapse from 69707 -> 69709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69707, + "TargetID": 69709, + "Directional": true + } + ] + }, + { + "ID": 15261, + "SourceStructureID": 64939, + "TargetStructureID": 69710, + "Label": "64939-69710 via Ribbon Synapse from 69707 -> 69716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69707, + "TargetID": 69716, + "Directional": true + } + ] + }, + { + "ID": 15262, + "SourceStructureID": 64939, + "TargetStructureID": 69720, + "Label": "64939-69720 via Ribbon Synapse from 69719 -> 69722", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69719, + "TargetID": 69722, + "Directional": true + } + ] + }, + { + "ID": 15263, + "SourceStructureID": 64939, + "TargetStructureID": 69721, + "Label": "64939-69721 via Ribbon Synapse from 69719 -> 69723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69719, + "TargetID": 69723, + "Directional": true + } + ] + }, + { + "ID": 15264, + "SourceStructureID": 64939, + "TargetStructureID": 69727, + "Label": "64939-69727 via Ribbon Synapse from 69726 -> 69730", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69726, + "TargetID": 69730, + "Directional": true + } + ] + }, + { + "ID": 15265, + "SourceStructureID": 64939, + "TargetStructureID": 69728, + "Label": "64939-69728 via Ribbon Synapse from 69726 -> 69731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69726, + "TargetID": 69731, + "Directional": true + } + ] + }, + { + "ID": 15266, + "SourceStructureID": 64939, + "TargetStructureID": 69733, + "Label": "64939-69733 via Ribbon Synapse from 69732 -> 70081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69732, + "TargetID": 70081, + "Directional": true + } + ] + }, + { + "ID": 15267, + "SourceStructureID": 64939, + "TargetStructureID": 69735, + "Label": "64939-69735 via Ribbon Synapse from 69734 -> 69736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69734, + "TargetID": 69736, + "Directional": true + } + ] + }, + { + "ID": 15268, + "SourceStructureID": 64939, + "TargetStructureID": 69737, + "Label": "64939-69737 via Ribbon Synapse from 69734 -> 69738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69734, + "TargetID": 69738, + "Directional": true + } + ] + }, + { + "ID": 15269, + "SourceStructureID": 64939, + "TargetStructureID": 69750, + "Label": "64939-69750 via Ribbon Synapse from 70082 -> 70083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70082, + "TargetID": 70083, + "Directional": true + } + ] + }, + { + "ID": 15270, + "SourceStructureID": 64939, + "TargetStructureID": 69966, + "Label": "64939-69966 via Ribbon Synapse from 69965 -> 69969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69965, + "TargetID": 69969, + "Directional": true + } + ] + }, + { + "ID": 15271, + "SourceStructureID": 64939, + "TargetStructureID": 69967, + "Label": "64939-69967 via Ribbon Synapse from 69965 -> 69968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69965, + "TargetID": 69968, + "Directional": true + } + ] + }, + { + "ID": 15272, + "SourceStructureID": 64939, + "TargetStructureID": 69972, + "Label": "64939-69972 via Ribbon Synapse from 69970 -> 69974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69970, + "TargetID": 69974, + "Directional": true + } + ] + }, + { + "ID": 15273, + "SourceStructureID": 64939, + "TargetStructureID": 69973, + "Label": "64939-69973 via Ribbon Synapse from 69970 -> 69975", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 69970, + "TargetID": 69975, + "Directional": true + } + ] + }, + { + "ID": 15274, + "SourceStructureID": 64939, + "TargetStructureID": 70003, + "Label": "64939-70003 via Ribbon Synapse from 70002 -> 70004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70002, + "TargetID": 70004, + "Directional": true + } + ] + }, + { + "ID": 15275, + "SourceStructureID": 64939, + "TargetStructureID": 93634, + "Label": "64939-93634 via BC Conventional Synapse from 93633 -> 93636", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93633, + "TargetID": 93636, + "Directional": true + } + ] + }, + { + "ID": 15276, + "SourceStructureID": 64939, + "TargetStructureID": 112880, + "Label": "64939-112880 via Ribbon Synapse from 93639 -> 112881, 93642 -> 112882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93639, + "TargetID": 112881, + "Directional": true + }, + { + "SourceID": 93642, + "TargetID": 112882, + "Directional": true + } + ] + }, + { + "ID": 15277, + "SourceStructureID": 65023, + "TargetStructureID": 6118, + "Label": "65023-6118 via Conventional from 65032 -> 65031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65032, + "TargetID": 65031, + "Directional": true + } + ] + }, + { + "ID": 15278, + "SourceStructureID": 65056, + "TargetStructureID": 5107, + "Label": "65056-5107 via Conventional from 65057 -> 65011", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65057, + "TargetID": 65011, + "Directional": true + } + ] + }, + { + "ID": 15279, + "SourceStructureID": 65134, + "TargetStructureID": 65138, + "Label": "65134-65138 via Conventional from 65137 -> 65139", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65137, + "TargetID": 65139, + "Directional": true + } + ] + }, + { + "ID": 15280, + "SourceStructureID": 65134, + "TargetStructureID": 65141, + "Label": "65134-65141 via Conventional from 65140 -> 65142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65140, + "TargetID": 65142, + "Directional": true + } + ] + }, + { + "ID": 15281, + "SourceStructureID": 65134, + "TargetStructureID": 65144, + "Label": "65134-65144 via Conventional from 65143 -> 65145", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65143, + "TargetID": 65145, + "Directional": true + } + ] + }, + { + "ID": 15282, + "SourceStructureID": 65156, + "TargetStructureID": 593, + "Label": "65156-593 via Conventional from 65157 -> 65155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65157, + "TargetID": 65155, + "Directional": true + } + ] + }, + { + "ID": 15283, + "SourceStructureID": 65181, + "TargetStructureID": 476, + "Label": "65181-476 via Conventional from 65182 -> 18023", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65182, + "TargetID": 18023, + "Directional": true + } + ] + }, + { + "ID": 15284, + "SourceStructureID": 65245, + "TargetStructureID": 180, + "Label": "65245-180 via Conventional from 94584 -> 5734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94584, + "TargetID": 5734, + "Directional": true + } + ] + }, + { + "ID": 15285, + "SourceStructureID": 65247, + "TargetStructureID": 6117, + "Label": "65247-6117 via Conventional from 65248 -> 65249", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65248, + "TargetID": 65249, + "Directional": true + } + ] + }, + { + "ID": 15286, + "SourceStructureID": 65250, + "TargetStructureID": 6117, + "Label": "65250-6117 via Conventional from 65251 -> 65252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65251, + "TargetID": 65252, + "Directional": true + } + ] + }, + { + "ID": 15287, + "SourceStructureID": 65278, + "TargetStructureID": 593, + "Label": "65278-593 via Conventional from 65279 -> 65280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65279, + "TargetID": 65280, + "Directional": true + } + ] + }, + { + "ID": 15288, + "SourceStructureID": 65287, + "TargetStructureID": 65284, + "Label": "65287-65284 via Conventional from 65288 -> 65286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65288, + "TargetID": 65286, + "Directional": true + } + ] + }, + { + "ID": 15289, + "SourceStructureID": 65297, + "TargetStructureID": 65267, + "Label": "65297-65267 via Conventional from 65298 -> 65296", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65298, + "TargetID": 65296, + "Directional": true + } + ] + }, + { + "ID": 15290, + "SourceStructureID": 65307, + "TargetStructureID": 593, + "Label": "65307-593 via Conventional from 65308 -> 65306", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65308, + "TargetID": 65306, + "Directional": true + } + ] + }, + { + "ID": 15291, + "SourceStructureID": 65309, + "TargetStructureID": 593, + "Label": "65309-593 via Conventional from 65310 -> 65311", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65310, + "TargetID": 65311, + "Directional": true + } + ] + }, + { + "ID": 15292, + "SourceStructureID": 65318, + "TargetStructureID": 593, + "Label": "65318-593 via Conventional from 83562 -> 83560", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83562, + "TargetID": 83560, + "Directional": true + } + ] + }, + { + "ID": 15293, + "SourceStructureID": 65318, + "TargetStructureID": 65307, + "Label": "65318-65307 via Conventional from 65319 -> 65317", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65319, + "TargetID": 65317, + "Directional": true + } + ] + }, + { + "ID": 15294, + "SourceStructureID": 65318, + "TargetStructureID": 66523, + "Label": "65318-66523 via Conventional from 75920 -> 75921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75920, + "TargetID": 75921, + "Directional": true + } + ] + }, + { + "ID": 15295, + "SourceStructureID": 65320, + "TargetStructureID": 593, + "Label": "65320-593 via Conventional from 65321 -> 65322, 65340 -> 62894, 65341 -> 63034, 65342 -> 65343, 65346 -> 65347", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65321, + "TargetID": 65322, + "Directional": true + }, + { + "SourceID": 65340, + "TargetID": 62894, + "Directional": true + }, + { + "SourceID": 65341, + "TargetID": 63034, + "Directional": true + }, + { + "SourceID": 65342, + "TargetID": 65343, + "Directional": true + }, + { + "SourceID": 65346, + "TargetID": 65347, + "Directional": true + } + ] + }, + { + "ID": 15296, + "SourceStructureID": 65324, + "TargetStructureID": 65332, + "Label": "65324-65332 via Conventional from 65329 -> 65333", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65329, + "TargetID": 65333, + "Directional": true + } + ] + }, + { + "ID": 15297, + "SourceStructureID": 65324, + "TargetStructureID": 65334, + "Label": "65324-65334 via Conventional from 65336 -> 65335", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65336, + "TargetID": 65335, + "Directional": true + } + ] + }, + { + "ID": 15298, + "SourceStructureID": 65324, + "TargetStructureID": 69162, + "Label": "65324-69162 via Conventional from 69197 -> 69198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69197, + "TargetID": 69198, + "Directional": true + } + ] + }, + { + "ID": 15299, + "SourceStructureID": 65334, + "TargetStructureID": 65338, + "Label": "65334-65338 via Conventional from 65337 -> 65339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65337, + "TargetID": 65339, + "Directional": true + } + ] + }, + { + "ID": 15300, + "SourceStructureID": 65351, + "TargetStructureID": 593, + "Label": "65351-593 via Conventional from 65352 -> 65353", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65352, + "TargetID": 65353, + "Directional": true + } + ] + }, + { + "ID": 15301, + "SourceStructureID": 65351, + "TargetStructureID": 5562, + "Label": "65351-5562 via Conventional from 79033 -> 76373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79033, + "TargetID": 76373, + "Directional": true + } + ] + }, + { + "ID": 15302, + "SourceStructureID": 65351, + "TargetStructureID": 63371, + "Label": "65351-63371 via Conventional from 79010 -> 63389, 79030 -> 63390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79010, + "TargetID": 63389, + "Directional": true + }, + { + "SourceID": 79030, + "TargetID": 63390, + "Directional": true + } + ] + }, + { + "ID": 15303, + "SourceStructureID": 65351, + "TargetStructureID": 78947, + "Label": "65351-78947 via Conventional from 78942 -> 78948", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78942, + "TargetID": 78948, + "Directional": true + } + ] + }, + { + "ID": 15304, + "SourceStructureID": 65351, + "TargetStructureID": 79034, + "Label": "65351-79034 via Conventional from 79038 -> 79039", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79038, + "TargetID": 79039, + "Directional": true + } + ] + }, + { + "ID": 15305, + "SourceStructureID": 65351, + "TargetStructureID": 79042, + "Label": "65351-79042 via Conventional from 79041 -> 79043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79041, + "TargetID": 79043, + "Directional": true + } + ] + }, + { + "ID": 15306, + "SourceStructureID": 65355, + "TargetStructureID": 65351, + "Label": "65355-65351 via Conventional from 65356 -> 65354", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65356, + "TargetID": 65354, + "Directional": true + } + ] + }, + { + "ID": 15307, + "SourceStructureID": 65355, + "TargetStructureID": 65358, + "Label": "65355-65358 via Conventional from 65357 -> 65359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65357, + "TargetID": 65359, + "Directional": true + } + ] + }, + { + "ID": 15308, + "SourceStructureID": 65358, + "TargetStructureID": 606, + "Label": "65358-606 via Conventional from 65360 -> 47476", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65360, + "TargetID": 47476, + "Directional": true + } + ] + }, + { + "ID": 15309, + "SourceStructureID": 65358, + "TargetStructureID": 65373, + "Label": "65358-65373 via Conventional from 65372 -> 65374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65372, + "TargetID": 65374, + "Directional": true + } + ] + }, + { + "ID": 15310, + "SourceStructureID": 65363, + "TargetStructureID": 5562, + "Label": "65363-5562 via Conventional from 65365 -> 63759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65365, + "TargetID": 63759, + "Directional": true + } + ] + }, + { + "ID": 15311, + "SourceStructureID": 65363, + "TargetStructureID": 65358, + "Label": "65363-65358 via Conventional from 65364 -> 65362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65364, + "TargetID": 65362, + "Directional": true + } + ] + }, + { + "ID": 15312, + "SourceStructureID": 65363, + "TargetStructureID": 65366, + "Label": "65363-65366 via Conventional from 65368 -> 65367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65368, + "TargetID": 65367, + "Directional": true + } + ] + }, + { + "ID": 15313, + "SourceStructureID": 65375, + "TargetStructureID": 593, + "Label": "65375-593 via Conventional from 65384 -> 65385, 65551 -> 65552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65384, + "TargetID": 65385, + "Directional": true + }, + { + "SourceID": 65551, + "TargetID": 65552, + "Directional": true + } + ] + }, + { + "ID": 15314, + "SourceStructureID": 65375, + "TargetStructureID": 5283, + "Label": "65375-5283 via Conventional from 65553 -> 65554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65553, + "TargetID": 65554, + "Directional": true + } + ] + }, + { + "ID": 15315, + "SourceStructureID": 65375, + "TargetStructureID": 65376, + "Label": "65375-65376 via Conventional from 65378 -> 65377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65378, + "TargetID": 65377, + "Directional": true + } + ] + }, + { + "ID": 15316, + "SourceStructureID": 65375, + "TargetStructureID": 65555, + "Label": "65375-65555 via Conventional from 65557 -> 65558", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65557, + "TargetID": 65558, + "Directional": true + } + ] + }, + { + "ID": 15317, + "SourceStructureID": 65375, + "TargetStructureID": 73102, + "Label": "65375-73102 via Conventional from 82399 -> 82400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82399, + "TargetID": 82400, + "Directional": true + } + ] + }, + { + "ID": 15318, + "SourceStructureID": 65376, + "TargetStructureID": 593, + "Label": "65376-593 via Conventional from 65379 -> 65380", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65379, + "TargetID": 65380, + "Directional": true + } + ] + }, + { + "ID": 15319, + "SourceStructureID": 65388, + "TargetStructureID": 57034, + "Label": "65388-57034 via Conventional from 65393 -> 65394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65393, + "TargetID": 65394, + "Directional": true + } + ] + }, + { + "ID": 15320, + "SourceStructureID": 65388, + "TargetStructureID": 65391, + "Label": "65388-65391 via Conventional from 65390 -> 65392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65390, + "TargetID": 65392, + "Directional": true + } + ] + }, + { + "ID": 15321, + "SourceStructureID": 65404, + "TargetStructureID": 593, + "Label": "65404-593 via Conventional from 65605 -> 65606", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65605, + "TargetID": 65606, + "Directional": true + } + ] + }, + { + "ID": 15322, + "SourceStructureID": 65408, + "TargetStructureID": 65612, + "Label": "65408-65612 via Conventional from 65611 -> 65613", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65611, + "TargetID": 65613, + "Directional": true + } + ] + }, + { + "ID": 15323, + "SourceStructureID": 65411, + "TargetStructureID": 593, + "Label": "65411-593 via Conventional from 65412 -> 65410", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65412, + "TargetID": 65410, + "Directional": true + } + ] + }, + { + "ID": 15324, + "SourceStructureID": 65439, + "TargetStructureID": 65438, + "Label": "65439-65438 via Conventional from 65440 -> 65441", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65440, + "TargetID": 65441, + "Directional": true + } + ] + }, + { + "ID": 15325, + "SourceStructureID": 65454, + "TargetStructureID": 593, + "Label": "65454-593 via Conventional from 65459 -> 65460, 65527 -> 65528", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65459, + "TargetID": 65460, + "Directional": true + }, + { + "SourceID": 65527, + "TargetID": 65528, + "Directional": true + } + ] + }, + { + "ID": 15326, + "SourceStructureID": 65454, + "TargetStructureID": 65457, + "Label": "65454-65457 via Conventional from 65456 -> 65458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65456, + "TargetID": 65458, + "Directional": true + } + ] + }, + { + "ID": 15327, + "SourceStructureID": 65461, + "TargetStructureID": 593, + "Label": "65461-593 via Conventional from 65462 -> 65463, 69859 -> 65402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65462, + "TargetID": 65463, + "Directional": true + }, + { + "SourceID": 69859, + "TargetID": 65402, + "Directional": true + } + ] + }, + { + "ID": 15328, + "SourceStructureID": 65464, + "TargetStructureID": 593, + "Label": "65464-593 via Conventional from 65472 -> 65473, 65565 -> 65566, 65572 -> 65575", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65472, + "TargetID": 65473, + "Directional": true + }, + { + "SourceID": 65565, + "TargetID": 65566, + "Directional": true + }, + { + "SourceID": 65572, + "TargetID": 65575, + "Directional": true + } + ] + }, + { + "ID": 15329, + "SourceStructureID": 65477, + "TargetStructureID": 65480, + "Label": "65477-65480 via Conventional from 65479 -> 65481", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65479, + "TargetID": 65481, + "Directional": true + } + ] + }, + { + "ID": 15330, + "SourceStructureID": 65480, + "TargetStructureID": 5279, + "Label": "65480-5279 via Conventional from 65482 -> 49253", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65482, + "TargetID": 49253, + "Directional": true + } + ] + }, + { + "ID": 15331, + "SourceStructureID": 65484, + "TargetStructureID": 65477, + "Label": "65484-65477 via Conventional from 65489 -> 65488", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65489, + "TargetID": 65488, + "Directional": true + } + ] + }, + { + "ID": 15332, + "SourceStructureID": 65484, + "TargetStructureID": 65480, + "Label": "65484-65480 via Conventional from 65485 -> 65483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65485, + "TargetID": 65483, + "Directional": true + } + ] + }, + { + "ID": 15333, + "SourceStructureID": 65514, + "TargetStructureID": 5635, + "Label": "65514-5635 via Conventional from 65515 -> 55964", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65515, + "TargetID": 55964, + "Directional": true + } + ] + }, + { + "ID": 15334, + "SourceStructureID": 65519, + "TargetStructureID": 8575, + "Label": "65519-8575 via Ribbon Synapse from 65520 -> 65518", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65520, + "TargetID": 65518, + "Directional": true + } + ] + }, + { + "ID": 15335, + "SourceStructureID": 65522, + "TargetStructureID": 8575, + "Label": "65522-8575 via Conventional from 65523 -> 65521", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65523, + "TargetID": 65521, + "Directional": true + } + ] + }, + { + "ID": 15336, + "SourceStructureID": 65524, + "TargetStructureID": 8575, + "Label": "65524-8575 via Conventional from 65525 -> 61538", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65525, + "TargetID": 61538, + "Directional": true + } + ] + }, + { + "ID": 15337, + "SourceStructureID": 65532, + "TargetStructureID": 16026, + "Label": "65532-16026 via Conventional from 65534 -> 25725", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65534, + "TargetID": 25725, + "Directional": true + } + ] + }, + { + "ID": 15338, + "SourceStructureID": 65532, + "TargetStructureID": 65536, + "Label": "65532-65536 via Conventional from 65535 -> 65537", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65535, + "TargetID": 65537, + "Directional": true + } + ] + }, + { + "ID": 15339, + "SourceStructureID": 65536, + "TargetStructureID": 65538, + "Label": "65536-65538 via Conventional from 65539 -> 65540", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65539, + "TargetID": 65540, + "Directional": true + } + ] + }, + { + "ID": 15340, + "SourceStructureID": 65536, + "TargetStructureID": 67072, + "Label": "65536-67072 via Conventional from 67071 -> 67073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67071, + "TargetID": 67073, + "Directional": true + } + ] + }, + { + "ID": 15341, + "SourceStructureID": 65559, + "TargetStructureID": 593, + "Label": "65559-593 via Conventional from 66060 -> 66061", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66060, + "TargetID": 66061, + "Directional": true + } + ] + }, + { + "ID": 15342, + "SourceStructureID": 65559, + "TargetStructureID": 29277, + "Label": "65559-29277 via Conventional from 84442 -> 123163", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84442, + "TargetID": 123163, + "Directional": true + } + ] + }, + { + "ID": 15343, + "SourceStructureID": 65559, + "TargetStructureID": 65375, + "Label": "65559-65375 via Conventional from 66060 -> 66063", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66060, + "TargetID": 66063, + "Directional": true + } + ] + }, + { + "ID": 15344, + "SourceStructureID": 65559, + "TargetStructureID": 65376, + "Label": "65559-65376 via Conventional from 84439 -> 65381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84439, + "TargetID": 65381, + "Directional": true + } + ] + }, + { + "ID": 15345, + "SourceStructureID": 65559, + "TargetStructureID": 65454, + "Label": "65559-65454 via Conventional from 66060 -> 66062", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66060, + "TargetID": 66062, + "Directional": true + } + ] + }, + { + "ID": 15346, + "SourceStructureID": 65559, + "TargetStructureID": 65477, + "Label": "65559-65477 via Conventional from 66070 -> 66069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66070, + "TargetID": 66069, + "Directional": true + } + ] + }, + { + "ID": 15347, + "SourceStructureID": 65559, + "TargetStructureID": 65532, + "Label": "65559-65532 via Conventional from 66065 -> 66064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66065, + "TargetID": 66064, + "Directional": true + } + ] + }, + { + "ID": 15348, + "SourceStructureID": 65559, + "TargetStructureID": 66031, + "Label": "65559-66031 via Conventional from 66035 -> 66034, 66059 -> 66055", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66035, + "TargetID": 66034, + "Directional": true + }, + { + "SourceID": 66059, + "TargetID": 66055, + "Directional": true + } + ] + }, + { + "ID": 15349, + "SourceStructureID": 65559, + "TargetStructureID": 66053, + "Label": "65559-66053 via Conventional from 66059 -> 66058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66059, + "TargetID": 66058, + "Directional": true + } + ] + }, + { + "ID": 15350, + "SourceStructureID": 65569, + "TargetStructureID": 180, + "Label": "65569-180 via Conventional from 84485 -> 84486", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84485, + "TargetID": 84486, + "Directional": true + } + ] + }, + { + "ID": 15351, + "SourceStructureID": 65569, + "TargetStructureID": 593, + "Label": "65569-593 via Conventional from 65570 -> 65571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65570, + "TargetID": 65571, + "Directional": true + } + ] + }, + { + "ID": 15352, + "SourceStructureID": 65569, + "TargetStructureID": 65623, + "Label": "65569-65623 via Conventional from 70825 -> 70826", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70825, + "TargetID": 70826, + "Directional": true + } + ] + }, + { + "ID": 15353, + "SourceStructureID": 65576, + "TargetStructureID": 180, + "Label": "65576-180 via Conventional from 65584 -> 65585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65584, + "TargetID": 65585, + "Directional": true + } + ] + }, + { + "ID": 15354, + "SourceStructureID": 65576, + "TargetStructureID": 593, + "Label": "65576-593 via Conventional from 65577 -> 65578", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65577, + "TargetID": 65578, + "Directional": true + } + ] + }, + { + "ID": 15355, + "SourceStructureID": 65576, + "TargetStructureID": 5649, + "Label": "65576-5649 via Conventional from 84495 -> 82338, 84505 -> 84506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84495, + "TargetID": 82338, + "Directional": true + }, + { + "SourceID": 84505, + "TargetID": 84506, + "Directional": true + } + ] + }, + { + "ID": 15356, + "SourceStructureID": 65576, + "TargetStructureID": 6115, + "Label": "65576-6115 via Conventional from 84496 -> 55885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84496, + "TargetID": 55885, + "Directional": true + } + ] + }, + { + "ID": 15357, + "SourceStructureID": 65579, + "TargetStructureID": 593, + "Label": "65579-593 via Conventional from 65580 -> 65581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65580, + "TargetID": 65581, + "Directional": true + } + ] + }, + { + "ID": 15358, + "SourceStructureID": 65596, + "TargetStructureID": 180, + "Label": "65596-180 via Conventional from 65598 -> 65599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65598, + "TargetID": 65599, + "Directional": true + } + ] + }, + { + "ID": 15359, + "SourceStructureID": 65612, + "TargetStructureID": 6117, + "Label": "65612-6117 via Conventional from 65614 -> 65615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65614, + "TargetID": 65615, + "Directional": true + } + ] + }, + { + "ID": 15360, + "SourceStructureID": 65616, + "TargetStructureID": 606, + "Label": "65616-606 via Conventional from 65621 -> 10707", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65621, + "TargetID": 10707, + "Directional": true + } + ] + }, + { + "ID": 15361, + "SourceStructureID": 65616, + "TargetStructureID": 6117, + "Label": "65616-6117 via Conventional from 65617 -> 65618", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65617, + "TargetID": 65618, + "Directional": true + } + ] + }, + { + "ID": 15362, + "SourceStructureID": 65616, + "TargetStructureID": 65612, + "Label": "65616-65612 via Conventional from 65619 -> 65620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65619, + "TargetID": 65620, + "Directional": true + } + ] + }, + { + "ID": 15363, + "SourceStructureID": 65623, + "TargetStructureID": 593, + "Label": "65623-593 via Conventional from 65624 -> 65622, 66419 -> 28433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65624, + "TargetID": 65622, + "Directional": true + }, + { + "SourceID": 66419, + "TargetID": 28433, + "Directional": true + } + ] + }, + { + "ID": 15364, + "SourceStructureID": 65648, + "TargetStructureID": 6118, + "Label": "65648-6118 via Conventional from 65650 -> 65649", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65650, + "TargetID": 65649, + "Directional": true + } + ] + }, + { + "ID": 15365, + "SourceStructureID": 65652, + "TargetStructureID": 6118, + "Label": "65652-6118 via Conventional from 65655 -> 65654", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65655, + "TargetID": 65654, + "Directional": true + } + ] + }, + { + "ID": 15366, + "SourceStructureID": 65680, + "TargetStructureID": 6118, + "Label": "65680-6118 via Conventional from 65681 -> 65679", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65681, + "TargetID": 65679, + "Directional": true + } + ] + }, + { + "ID": 15367, + "SourceStructureID": 65683, + "TargetStructureID": 419, + "Label": "65683-419 via Conventional from 65689 -> 65690", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65689, + "TargetID": 65690, + "Directional": true + } + ] + }, + { + "ID": 15368, + "SourceStructureID": 65683, + "TargetStructureID": 8575, + "Label": "65683-8575 via Conventional from 65684 -> 65682", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65684, + "TargetID": 65682, + "Directional": true + } + ] + }, + { + "ID": 15369, + "SourceStructureID": 65691, + "TargetStructureID": 419, + "Label": "65691-419 via Conventional from 65692 -> 132356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65692, + "TargetID": 132356, + "Directional": true + } + ] + }, + { + "ID": 15370, + "SourceStructureID": 65742, + "TargetStructureID": 61709, + "Label": "65742-61709 via Ribbon Synapse from 65743 -> 65741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65743, + "TargetID": 65741, + "Directional": true + } + ] + }, + { + "ID": 15371, + "SourceStructureID": 65751, + "TargetStructureID": 437, + "Label": "65751-437 via Conventional from 65753 -> 65708, 65755 -> 17586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65753, + "TargetID": 65708, + "Directional": true + }, + { + "SourceID": 65755, + "TargetID": 17586, + "Directional": true + } + ] + }, + { + "ID": 15372, + "SourceStructureID": 65751, + "TargetStructureID": 65751, + "Label": "65751-65751 via Conventional from 65758 -> 65760", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65758, + "TargetID": 65760, + "Directional": true + } + ] + }, + { + "ID": 15373, + "SourceStructureID": 65791, + "TargetStructureID": 5609, + "Label": "65791-5609 via Conventional from 65792 -> 20636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65792, + "TargetID": 20636, + "Directional": true + } + ] + }, + { + "ID": 15374, + "SourceStructureID": 65791, + "TargetStructureID": 20681, + "Label": "65791-20681 via Conventional from 65793 -> 65790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65793, + "TargetID": 65790, + "Directional": true + } + ] + }, + { + "ID": 15375, + "SourceStructureID": 65816, + "TargetStructureID": 8575, + "Label": "65816-8575 via BC Conventional Synapse from 65817 -> 21643", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 65817, + "TargetID": 21643, + "Directional": true + } + ] + }, + { + "ID": 15376, + "SourceStructureID": 65819, + "TargetStructureID": 410, + "Label": "65819-410 via Conventional from 65820 -> 65818", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65820, + "TargetID": 65818, + "Directional": true + } + ] + }, + { + "ID": 15377, + "SourceStructureID": 65823, + "TargetStructureID": 410, + "Label": "65823-410 via Conventional from 65824 -> 8349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65824, + "TargetID": 8349, + "Directional": true + } + ] + }, + { + "ID": 15378, + "SourceStructureID": 65826, + "TargetStructureID": 410, + "Label": "65826-410 via Conventional from 65827 -> 8359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65827, + "TargetID": 8359, + "Directional": true + } + ] + }, + { + "ID": 15379, + "SourceStructureID": 65849, + "TargetStructureID": 6118, + "Label": "65849-6118 via Conventional from 65851 -> 65850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65851, + "TargetID": 65850, + "Directional": true + } + ] + }, + { + "ID": 15380, + "SourceStructureID": 65866, + "TargetStructureID": 65864, + "Label": "65866-65864 via Conventional from 65867 -> 65869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65867, + "TargetID": 65869, + "Directional": true + } + ] + }, + { + "ID": 15381, + "SourceStructureID": 65883, + "TargetStructureID": 65864, + "Label": "65883-65864 via Conventional from 65886 -> 65887", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65886, + "TargetID": 65887, + "Directional": true + } + ] + }, + { + "ID": 15382, + "SourceStructureID": 65890, + "TargetStructureID": 593, + "Label": "65890-593 via Conventional from 65891 -> 65892", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65891, + "TargetID": 65892, + "Directional": true + } + ] + }, + { + "ID": 15383, + "SourceStructureID": 65893, + "TargetStructureID": 593, + "Label": "65893-593 via Conventional from 65894 -> 65895", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65894, + "TargetID": 65895, + "Directional": true + } + ] + }, + { + "ID": 15384, + "SourceStructureID": 65898, + "TargetStructureID": 65899, + "Label": "65898-65899 via Conventional from 65900 -> 65901", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65900, + "TargetID": 65901, + "Directional": true + } + ] + }, + { + "ID": 15385, + "SourceStructureID": 65910, + "TargetStructureID": 6118, + "Label": "65910-6118 via Conventional from 65912 -> 65913", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65912, + "TargetID": 65913, + "Directional": true + } + ] + }, + { + "ID": 15386, + "SourceStructureID": 65916, + "TargetStructureID": 6118, + "Label": "65916-6118 via Conventional from 65917 -> 65918", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65917, + "TargetID": 65918, + "Directional": true + } + ] + }, + { + "ID": 15387, + "SourceStructureID": 65920, + "TargetStructureID": 5650, + "Label": "65920-5650 via Conventional from 102961 -> 102962", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102961, + "TargetID": 102962, + "Directional": true + } + ] + }, + { + "ID": 15388, + "SourceStructureID": 65920, + "TargetStructureID": 6118, + "Label": "65920-6118 via Conventional from 65921 -> 65922", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65921, + "TargetID": 65922, + "Directional": true + } + ] + }, + { + "ID": 15389, + "SourceStructureID": 65963, + "TargetStructureID": 180, + "Label": "65963-180 via Conventional from 65965 -> 65966, 65969 -> 65970", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65965, + "TargetID": 65966, + "Directional": true + }, + { + "SourceID": 65969, + "TargetID": 65970, + "Directional": true + } + ] + }, + { + "ID": 15390, + "SourceStructureID": 65963, + "TargetStructureID": 5618, + "Label": "65963-5618 via Conventional from 65964 -> 65962", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65964, + "TargetID": 65962, + "Directional": true + } + ] + }, + { + "ID": 15391, + "SourceStructureID": 65963, + "TargetStructureID": 64492, + "Label": "65963-64492 via Conventional from 65973 -> 65974", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 65973, + "TargetID": 65974, + "Directional": true + } + ] + }, + { + "ID": 15392, + "SourceStructureID": 65963, + "TargetStructureID": 66299, + "Label": "65963-66299 via Conventional from 66301 -> 66302", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66301, + "TargetID": 66302, + "Directional": true + } + ] + }, + { + "ID": 15393, + "SourceStructureID": 66015, + "TargetStructureID": 7111, + "Label": "66015-7111 via Conventional from 66016 -> 66014", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66016, + "TargetID": 66014, + "Directional": true + } + ] + }, + { + "ID": 15394, + "SourceStructureID": 66018, + "TargetStructureID": 7111, + "Label": "66018-7111 via Conventional from 66019 -> 66017", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66019, + "TargetID": 66017, + "Directional": true + } + ] + }, + { + "ID": 15395, + "SourceStructureID": 66020, + "TargetStructureID": 7111, + "Label": "66020-7111 via Conventional from 66021 -> 66017", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66021, + "TargetID": 66017, + "Directional": true + } + ] + }, + { + "ID": 15396, + "SourceStructureID": 66024, + "TargetStructureID": 593, + "Label": "66024-593 via Conventional from 66025 -> 66026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66025, + "TargetID": 66026, + "Directional": true + } + ] + }, + { + "ID": 15397, + "SourceStructureID": 66031, + "TargetStructureID": 593, + "Label": "66031-593 via Conventional from 66071 -> 66072", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66071, + "TargetID": 66072, + "Directional": true + } + ] + }, + { + "ID": 15398, + "SourceStructureID": 66031, + "TargetStructureID": 66028, + "Label": "66031-66028 via Conventional from 66032 -> 66030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66032, + "TargetID": 66030, + "Directional": true + } + ] + }, + { + "ID": 15399, + "SourceStructureID": 66031, + "TargetStructureID": 66037, + "Label": "66031-66037 via Conventional from 66036 -> 66038", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66036, + "TargetID": 66038, + "Directional": true + } + ] + }, + { + "ID": 15400, + "SourceStructureID": 66031, + "TargetStructureID": 84457, + "Label": "66031-84457 via Conventional from 84456 -> 84459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84456, + "TargetID": 84459, + "Directional": true + } + ] + }, + { + "ID": 15401, + "SourceStructureID": 66037, + "TargetStructureID": 66031, + "Label": "66037-66031 via Conventional from 66039 -> 66040", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66039, + "TargetID": 66040, + "Directional": true + } + ] + }, + { + "ID": 15402, + "SourceStructureID": 66037, + "TargetStructureID": 66809, + "Label": "66037-66809 via Conventional from 66039 -> 82439", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66039, + "TargetID": 82439, + "Directional": true + } + ] + }, + { + "ID": 15403, + "SourceStructureID": 66044, + "TargetStructureID": 66031, + "Label": "66044-66031 via Conventional from 66046 -> 66045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66046, + "TargetID": 66045, + "Directional": true + } + ] + }, + { + "ID": 15404, + "SourceStructureID": 66053, + "TargetStructureID": 593, + "Label": "66053-593 via Conventional from 66056 -> 66057", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66056, + "TargetID": 66057, + "Directional": true + } + ] + }, + { + "ID": 15405, + "SourceStructureID": 66073, + "TargetStructureID": 66075, + "Label": "66073-66075 via Conventional from 66076 -> 66077", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66076, + "TargetID": 66077, + "Directional": true + } + ] + }, + { + "ID": 15406, + "SourceStructureID": 66073, + "TargetStructureID": 66085, + "Label": "66073-66085 via Conventional from 66084 -> 66086", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66084, + "TargetID": 66086, + "Directional": true + } + ] + }, + { + "ID": 15407, + "SourceStructureID": 66079, + "TargetStructureID": 66075, + "Label": "66079-66075 via Conventional from 66080 -> 66078", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66080, + "TargetID": 66078, + "Directional": true + } + ] + }, + { + "ID": 15408, + "SourceStructureID": 66085, + "TargetStructureID": 66946, + "Label": "66085-66946 via Conventional from 82750 -> 82751", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82750, + "TargetID": 82751, + "Directional": true + } + ] + }, + { + "ID": 15409, + "SourceStructureID": 66089, + "TargetStructureID": 593, + "Label": "66089-593 via Conventional from 66090 -> 28441, 66094 -> 66095", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66090, + "TargetID": 28441, + "Directional": true + }, + { + "SourceID": 66094, + "TargetID": 66095, + "Directional": true + } + ] + }, + { + "ID": 15410, + "SourceStructureID": 66096, + "TargetStructureID": 593, + "Label": "66096-593 via Conventional from 66097 -> 52744, 66098 -> 66099, 66885 -> 7753, 67025 -> 7828, 67032 -> 7812", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66097, + "TargetID": 52744, + "Directional": true + }, + { + "SourceID": 66098, + "TargetID": 66099, + "Directional": true + }, + { + "SourceID": 66885, + "TargetID": 7753, + "Directional": true + }, + { + "SourceID": 67025, + "TargetID": 7828, + "Directional": true + }, + { + "SourceID": 67032, + "TargetID": 7812, + "Directional": true + } + ] + }, + { + "ID": 15411, + "SourceStructureID": 66100, + "TargetStructureID": 593, + "Label": "66100-593 via Conventional from 66101 -> 28437", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66101, + "TargetID": 28437, + "Directional": true + } + ] + }, + { + "ID": 15412, + "SourceStructureID": 66102, + "TargetStructureID": 593, + "Label": "66102-593 via Conventional from 66103 -> 28442", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66103, + "TargetID": 28442, + "Directional": true + } + ] + }, + { + "ID": 15413, + "SourceStructureID": 66102, + "TargetStructureID": 66096, + "Label": "66102-66096 via Conventional from 66109 -> 66110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66109, + "TargetID": 66110, + "Directional": true + } + ] + }, + { + "ID": 15414, + "SourceStructureID": 66104, + "TargetStructureID": 66102, + "Label": "66104-66102 via Conventional from 66105 -> 66106", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66105, + "TargetID": 66106, + "Directional": true + } + ] + }, + { + "ID": 15415, + "SourceStructureID": 66111, + "TargetStructureID": 16026, + "Label": "66111-16026 via Conventional from 134753 -> 134752", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134753, + "TargetID": 134752, + "Directional": true + } + ] + }, + { + "ID": 15416, + "SourceStructureID": 66114, + "TargetStructureID": 66114, + "Label": "66114-66114 via Conventional from 66119 -> 66120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66119, + "TargetID": 66120, + "Directional": true + } + ] + }, + { + "ID": 15417, + "SourceStructureID": 66114, + "TargetStructureID": 66768, + "Label": "66114-66768 via Conventional from 66117 -> 67565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66117, + "TargetID": 67565, + "Directional": true + } + ] + }, + { + "ID": 15418, + "SourceStructureID": 66165, + "TargetStructureID": 5284, + "Label": "66165-5284 via Conventional from 113269 -> 113270", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113269, + "TargetID": 113270, + "Directional": true + } + ] + }, + { + "ID": 15419, + "SourceStructureID": 66165, + "TargetStructureID": 6050, + "Label": "66165-6050 via Conventional from 66175 -> 66174", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66175, + "TargetID": 66174, + "Directional": true + } + ] + }, + { + "ID": 15420, + "SourceStructureID": 66184, + "TargetStructureID": 11401, + "Label": "66184-11401 via Conventional from 66185 -> 66186, 92038 -> 92039", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66185, + "TargetID": 66186, + "Directional": true + }, + { + "SourceID": 92038, + "TargetID": 92039, + "Directional": true + } + ] + }, + { + "ID": 15421, + "SourceStructureID": 66193, + "TargetStructureID": 428, + "Label": "66193-428 via Conventional from 66194 -> 66195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66194, + "TargetID": 66195, + "Directional": true + } + ] + }, + { + "ID": 15422, + "SourceStructureID": 66199, + "TargetStructureID": 514, + "Label": "66199-514 via Ribbon Synapse from 66200 -> 1173", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 66200, + "TargetID": 1173, + "Directional": true + } + ] + }, + { + "ID": 15423, + "SourceStructureID": 66278, + "TargetStructureID": 166, + "Label": "66278-166 via Conventional from 66292 -> 60025, 81905 -> 81906", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66292, + "TargetID": 60025, + "Directional": true + }, + { + "SourceID": 81905, + "TargetID": 81906, + "Directional": true + } + ] + }, + { + "ID": 15424, + "SourceStructureID": 66278, + "TargetStructureID": 593, + "Label": "66278-593 via Conventional from 66279 -> 66280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66279, + "TargetID": 66280, + "Directional": true + } + ] + }, + { + "ID": 15425, + "SourceStructureID": 66295, + "TargetStructureID": 166, + "Label": "66295-166 via Conventional from 66297 -> 60022", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66297, + "TargetID": 60022, + "Directional": true + } + ] + }, + { + "ID": 15426, + "SourceStructureID": 66303, + "TargetStructureID": 180, + "Label": "66303-180 via Conventional from 66307 -> 6057", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66307, + "TargetID": 6057, + "Directional": true + } + ] + }, + { + "ID": 15427, + "SourceStructureID": 66303, + "TargetStructureID": 593, + "Label": "66303-593 via Conventional from 66304 -> 66305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66304, + "TargetID": 66305, + "Directional": true + } + ] + }, + { + "ID": 15428, + "SourceStructureID": 66323, + "TargetStructureID": 593, + "Label": "66323-593 via Conventional from 66324 -> 66322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66324, + "TargetID": 66322, + "Directional": true + } + ] + }, + { + "ID": 15429, + "SourceStructureID": 66323, + "TargetStructureID": 6115, + "Label": "66323-6115 via Conventional from 84323 -> 73123", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84323, + "TargetID": 73123, + "Directional": true + } + ] + }, + { + "ID": 15430, + "SourceStructureID": 66323, + "TargetStructureID": 84342, + "Label": "66323-84342 via Conventional from 84341 -> 84343", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84341, + "TargetID": 84343, + "Directional": true + } + ] + }, + { + "ID": 15431, + "SourceStructureID": 66323, + "TargetStructureID": 84391, + "Label": "66323-84391 via Conventional from 84390 -> 84392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84390, + "TargetID": 84392, + "Directional": true + } + ] + }, + { + "ID": 15432, + "SourceStructureID": 66323, + "TargetStructureID": 84394, + "Label": "66323-84394 via Conventional from 84393 -> 84395", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84393, + "TargetID": 84395, + "Directional": true + } + ] + }, + { + "ID": 15433, + "SourceStructureID": 66323, + "TargetStructureID": 84398, + "Label": "66323-84398 via Conventional from 84397 -> 84399", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84397, + "TargetID": 84399, + "Directional": true + } + ] + }, + { + "ID": 15434, + "SourceStructureID": 66323, + "TargetStructureID": 84407, + "Label": "66323-84407 via Conventional from 84405 -> 84408, 84412 -> 84413", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84405, + "TargetID": 84408, + "Directional": true + }, + { + "SourceID": 84412, + "TargetID": 84413, + "Directional": true + } + ] + }, + { + "ID": 15435, + "SourceStructureID": 66323, + "TargetStructureID": 84418, + "Label": "66323-84418 via Conventional from 84417 -> 84419", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84417, + "TargetID": 84419, + "Directional": true + } + ] + }, + { + "ID": 15436, + "SourceStructureID": 66323, + "TargetStructureID": 84424, + "Label": "66323-84424 via Conventional from 84423 -> 84425", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84423, + "TargetID": 84425, + "Directional": true + } + ] + }, + { + "ID": 15437, + "SourceStructureID": 66329, + "TargetStructureID": 593, + "Label": "66329-593 via Conventional from 66330 -> 66328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66330, + "TargetID": 66328, + "Directional": true + } + ] + }, + { + "ID": 15438, + "SourceStructureID": 66339, + "TargetStructureID": 593, + "Label": "66339-593 via Conventional from 66340 -> 66341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66340, + "TargetID": 66341, + "Directional": true + } + ] + }, + { + "ID": 15439, + "SourceStructureID": 66339, + "TargetStructureID": 6115, + "Label": "66339-6115 via Conventional from 84273 -> 73083", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84273, + "TargetID": 73083, + "Directional": true + } + ] + }, + { + "ID": 15440, + "SourceStructureID": 66355, + "TargetStructureID": 5117, + "Label": "66355-5117 via Conventional from 66356 -> 66354", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66356, + "TargetID": 66354, + "Directional": true + } + ] + }, + { + "ID": 15441, + "SourceStructureID": 66374, + "TargetStructureID": 5279, + "Label": "66374-5279 via Conventional from 66379 -> 49251, 66389 -> 6347, 66394 -> 97580", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66379, + "TargetID": 49251, + "Directional": true + }, + { + "SourceID": 66389, + "TargetID": 6347, + "Directional": true + }, + { + "SourceID": 66394, + "TargetID": 97580, + "Directional": true + } + ] + }, + { + "ID": 15442, + "SourceStructureID": 66381, + "TargetStructureID": 909, + "Label": "66381-909 via Conventional from 66383 -> 36060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66383, + "TargetID": 36060, + "Directional": true + } + ] + }, + { + "ID": 15443, + "SourceStructureID": 66381, + "TargetStructureID": 5279, + "Label": "66381-5279 via Conventional from 66386 -> 49250", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66386, + "TargetID": 49250, + "Directional": true + } + ] + }, + { + "ID": 15444, + "SourceStructureID": 66381, + "TargetStructureID": 66374, + "Label": "66381-66374 via Conventional from 66382 -> 66380", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66382, + "TargetID": 66380, + "Directional": true + } + ] + }, + { + "ID": 15445, + "SourceStructureID": 66395, + "TargetStructureID": 5279, + "Label": "66395-5279 via Conventional from 66396 -> 97585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66396, + "TargetID": 97585, + "Directional": true + } + ] + }, + { + "ID": 15446, + "SourceStructureID": 66395, + "TargetStructureID": 15796, + "Label": "66395-15796 via Conventional from 66397 -> 66398", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66397, + "TargetID": 66398, + "Directional": true + } + ] + }, + { + "ID": 15447, + "SourceStructureID": 66401, + "TargetStructureID": 593, + "Label": "66401-593 via Conventional from 66403 -> 66404, 66417 -> 66418, 66422 -> 66423", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66403, + "TargetID": 66404, + "Directional": true + }, + { + "SourceID": 66417, + "TargetID": 66418, + "Directional": true + }, + { + "SourceID": 66422, + "TargetID": 66423, + "Directional": true + } + ] + }, + { + "ID": 15448, + "SourceStructureID": 66401, + "TargetStructureID": 65623, + "Label": "66401-65623 via Conventional from 66414 -> 66416", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66414, + "TargetID": 66416, + "Directional": true + } + ] + }, + { + "ID": 15449, + "SourceStructureID": 66407, + "TargetStructureID": 593, + "Label": "66407-593 via Conventional from 66462 -> 66463, 67448 -> 67449", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66462, + "TargetID": 66463, + "Directional": true + }, + { + "SourceID": 67448, + "TargetID": 67449, + "Directional": true + } + ] + }, + { + "ID": 15450, + "SourceStructureID": 66407, + "TargetStructureID": 5599, + "Label": "66407-5599 via Conventional from 69410 -> 135181", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69410, + "TargetID": 135181, + "Directional": true + } + ] + }, + { + "ID": 15451, + "SourceStructureID": 66407, + "TargetStructureID": 6115, + "Label": "66407-6115 via Conventional from 72803 -> 72804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72803, + "TargetID": 72804, + "Directional": true + } + ] + }, + { + "ID": 15452, + "SourceStructureID": 66407, + "TargetStructureID": 6997, + "Label": "66407-6997 via Conventional from 69391 -> 28740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69391, + "TargetID": 28740, + "Directional": true + } + ] + }, + { + "ID": 15453, + "SourceStructureID": 66407, + "TargetStructureID": 16087, + "Label": "66407-16087 via Conventional from 69398 -> 16092", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69398, + "TargetID": 16092, + "Directional": true + } + ] + }, + { + "ID": 15454, + "SourceStructureID": 66407, + "TargetStructureID": 39319, + "Label": "66407-39319 via Conventional from 69408 -> 69409", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69408, + "TargetID": 69409, + "Directional": true + } + ] + }, + { + "ID": 15455, + "SourceStructureID": 66407, + "TargetStructureID": 41608, + "Label": "66407-41608 via Conventional from 69399 -> 69400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69399, + "TargetID": 69400, + "Directional": true + } + ] + }, + { + "ID": 15456, + "SourceStructureID": 66407, + "TargetStructureID": 66469, + "Label": "66407-66469 via Conventional from 66471 -> 66470", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66471, + "TargetID": 66470, + "Directional": true + } + ] + }, + { + "ID": 15457, + "SourceStructureID": 66407, + "TargetStructureID": 66473, + "Label": "66407-66473 via Conventional from 66472 -> 66474", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66472, + "TargetID": 66474, + "Directional": true + } + ] + }, + { + "ID": 15458, + "SourceStructureID": 66407, + "TargetStructureID": 66937, + "Label": "66407-66937 via Conventional from 66941 -> 66939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66941, + "TargetID": 66939, + "Directional": true + } + ] + }, + { + "ID": 15459, + "SourceStructureID": 66407, + "TargetStructureID": 67254, + "Label": "66407-67254 via Conventional from 67245 -> 79579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67245, + "TargetID": 79579, + "Directional": true + } + ] + }, + { + "ID": 15460, + "SourceStructureID": 66407, + "TargetStructureID": 69347, + "Label": "66407-69347 via Conventional from 69346 -> 69348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69346, + "TargetID": 69348, + "Directional": true + } + ] + }, + { + "ID": 15461, + "SourceStructureID": 66407, + "TargetStructureID": 69350, + "Label": "66407-69350 via Conventional from 69349 -> 69351", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69349, + "TargetID": 69351, + "Directional": true + } + ] + }, + { + "ID": 15462, + "SourceStructureID": 66407, + "TargetStructureID": 69396, + "Label": "66407-69396 via Conventional from 69395 -> 69397", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69395, + "TargetID": 69397, + "Directional": true + } + ] + }, + { + "ID": 15463, + "SourceStructureID": 66407, + "TargetStructureID": 69414, + "Label": "66407-69414 via Conventional from 69413 -> 69415", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69413, + "TargetID": 69415, + "Directional": true + } + ] + }, + { + "ID": 15464, + "SourceStructureID": 66407, + "TargetStructureID": 69461, + "Label": "66407-69461 via Conventional from 69462 -> 69463", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69462, + "TargetID": 69463, + "Directional": true + } + ] + }, + { + "ID": 15465, + "SourceStructureID": 66407, + "TargetStructureID": 69483, + "Label": "66407-69483 via Conventional from 69486 -> 69488", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69486, + "TargetID": 69488, + "Directional": true + } + ] + }, + { + "ID": 15466, + "SourceStructureID": 66407, + "TargetStructureID": 69484, + "Label": "66407-69484 via Conventional from 69485 -> 69487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69485, + "TargetID": 69487, + "Directional": true + } + ] + }, + { + "ID": 15467, + "SourceStructureID": 66407, + "TargetStructureID": 69505, + "Label": "66407-69505 via Conventional from 69506 -> 69507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69506, + "TargetID": 69507, + "Directional": true + } + ] + }, + { + "ID": 15468, + "SourceStructureID": 66425, + "TargetStructureID": 593, + "Label": "66425-593 via Conventional from 66426 -> 7766, 66427 -> 66428", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66426, + "TargetID": 7766, + "Directional": true + }, + { + "SourceID": 66427, + "TargetID": 66428, + "Directional": true + } + ] + }, + { + "ID": 15469, + "SourceStructureID": 66425, + "TargetStructureID": 5283, + "Label": "66425-5283 via Conventional from 131668 -> 131669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131668, + "TargetID": 131669, + "Directional": true + } + ] + }, + { + "ID": 15470, + "SourceStructureID": 66425, + "TargetStructureID": 70750, + "Label": "66425-70750 via Conventional from 70749 -> 70751", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70749, + "TargetID": 70751, + "Directional": true + } + ] + }, + { + "ID": 15471, + "SourceStructureID": 66447, + "TargetStructureID": 39590, + "Label": "66447-39590 via Conventional from 66454 -> 66456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66454, + "TargetID": 66456, + "Directional": true + } + ] + }, + { + "ID": 15472, + "SourceStructureID": 66452, + "TargetStructureID": 66447, + "Label": "66452-66447 via Conventional from 66453 -> 66451", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66453, + "TargetID": 66451, + "Directional": true + } + ] + }, + { + "ID": 15473, + "SourceStructureID": 66459, + "TargetStructureID": 66447, + "Label": "66459-66447 via Conventional from 66460 -> 66461", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66460, + "TargetID": 66461, + "Directional": true + } + ] + }, + { + "ID": 15474, + "SourceStructureID": 66464, + "TargetStructureID": 66407, + "Label": "66464-66407 via Conventional from 66465 -> 66466", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66465, + "TargetID": 66466, + "Directional": true + } + ] + }, + { + "ID": 15475, + "SourceStructureID": 66473, + "TargetStructureID": 6115, + "Label": "66473-6115 via Conventional from 66475 -> 66476", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66475, + "TargetID": 66476, + "Directional": true + } + ] + }, + { + "ID": 15476, + "SourceStructureID": 66477, + "TargetStructureID": 593, + "Label": "66477-593 via Conventional from 66478 -> 66479", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66478, + "TargetID": 66479, + "Directional": true + } + ] + }, + { + "ID": 15477, + "SourceStructureID": 66487, + "TargetStructureID": 593, + "Label": "66487-593 via Conventional from 66488 -> 66489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66488, + "TargetID": 66489, + "Directional": true + } + ] + }, + { + "ID": 15478, + "SourceStructureID": 66493, + "TargetStructureID": 39615, + "Label": "66493-39615 via Conventional from 66495 -> 39641", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66495, + "TargetID": 39641, + "Directional": true + } + ] + }, + { + "ID": 15479, + "SourceStructureID": 66503, + "TargetStructureID": 593, + "Label": "66503-593 via Conventional from 66504 -> 66505", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66504, + "TargetID": 66505, + "Directional": true + } + ] + }, + { + "ID": 15480, + "SourceStructureID": 66503, + "TargetStructureID": 66510, + "Label": "66503-66510 via Conventional from 66509 -> 66511", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66509, + "TargetID": 66511, + "Directional": true + } + ] + }, + { + "ID": 15481, + "SourceStructureID": 66503, + "TargetStructureID": 66516, + "Label": "66503-66516 via Conventional from 66515 -> 66518", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66515, + "TargetID": 66518, + "Directional": true + } + ] + }, + { + "ID": 15482, + "SourceStructureID": 66510, + "TargetStructureID": 66513, + "Label": "66510-66513 via Conventional from 66512 -> 66514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66512, + "TargetID": 66514, + "Directional": true + } + ] + }, + { + "ID": 15483, + "SourceStructureID": 66516, + "TargetStructureID": 593, + "Label": "66516-593 via Conventional from 66517 -> 59623", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66517, + "TargetID": 59623, + "Directional": true + } + ] + }, + { + "ID": 15484, + "SourceStructureID": 66520, + "TargetStructureID": 66523, + "Label": "66520-66523 via Conventional from 66526 -> 66527", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66526, + "TargetID": 66527, + "Directional": true + } + ] + }, + { + "ID": 15485, + "SourceStructureID": 66523, + "TargetStructureID": 16087, + "Label": "66523-16087 via Conventional from 75309 -> 75310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75309, + "TargetID": 75310, + "Directional": true + } + ] + }, + { + "ID": 15486, + "SourceStructureID": 66523, + "TargetStructureID": 22974, + "Label": "66523-22974 via Conventional from 75924 -> 75923", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75924, + "TargetID": 75923, + "Directional": true + } + ] + }, + { + "ID": 15487, + "SourceStructureID": 66523, + "TargetStructureID": 31256, + "Label": "66523-31256 via Conventional from 75349 -> 31257", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75349, + "TargetID": 31257, + "Directional": true + } + ] + }, + { + "ID": 15488, + "SourceStructureID": 66523, + "TargetStructureID": 39615, + "Label": "66523-39615 via Conventional from 66530 -> 39636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66530, + "TargetID": 39636, + "Directional": true + } + ] + }, + { + "ID": 15489, + "SourceStructureID": 66523, + "TargetStructureID": 41608, + "Label": "66523-41608 via Conventional from 74913 -> 41688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74913, + "TargetID": 41688, + "Directional": true + } + ] + }, + { + "ID": 15490, + "SourceStructureID": 66523, + "TargetStructureID": 66647, + "Label": "66523-66647 via Conventional from 75342 -> 66648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75342, + "TargetID": 66648, + "Directional": true + } + ] + }, + { + "ID": 15491, + "SourceStructureID": 66523, + "TargetStructureID": 75130, + "Label": "66523-75130 via Conventional from 75315 -> 75316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75315, + "TargetID": 75316, + "Directional": true + } + ] + }, + { + "ID": 15492, + "SourceStructureID": 66523, + "TargetStructureID": 75300, + "Label": "66523-75300 via Conventional from 75299 -> 75301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75299, + "TargetID": 75301, + "Directional": true + } + ] + }, + { + "ID": 15493, + "SourceStructureID": 66523, + "TargetStructureID": 75302, + "Label": "66523-75302 via Conventional from 75303 -> 75304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75303, + "TargetID": 75304, + "Directional": true + } + ] + }, + { + "ID": 15494, + "SourceStructureID": 66523, + "TargetStructureID": 75324, + "Label": "66523-75324 via Conventional from 75323 -> 75325", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75323, + "TargetID": 75325, + "Directional": true + } + ] + }, + { + "ID": 15495, + "SourceStructureID": 66523, + "TargetStructureID": 75326, + "Label": "66523-75326 via Conventional from 75327 -> 75328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75327, + "TargetID": 75328, + "Directional": true + } + ] + }, + { + "ID": 15496, + "SourceStructureID": 66523, + "TargetStructureID": 75332, + "Label": "66523-75332 via Conventional from 75333 -> 75334", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75333, + "TargetID": 75334, + "Directional": true + } + ] + }, + { + "ID": 15497, + "SourceStructureID": 66523, + "TargetStructureID": 75337, + "Label": "66523-75337 via Conventional from 66528 -> 75338", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66528, + "TargetID": 75338, + "Directional": true + } + ] + }, + { + "ID": 15498, + "SourceStructureID": 66523, + "TargetStructureID": 75339, + "Label": "66523-75339 via Conventional from 66529 -> 75340", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66529, + "TargetID": 75340, + "Directional": true + } + ] + }, + { + "ID": 15499, + "SourceStructureID": 66523, + "TargetStructureID": 77965, + "Label": "66523-77965 via Conventional from 77966 -> 77967", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77966, + "TargetID": 77967, + "Directional": true + } + ] + }, + { + "ID": 15500, + "SourceStructureID": 66542, + "TargetStructureID": 166, + "Label": "66542-166 via Conventional from 83483 -> 83484", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83483, + "TargetID": 83484, + "Directional": true + } + ] + }, + { + "ID": 15501, + "SourceStructureID": 66542, + "TargetStructureID": 593, + "Label": "66542-593 via Conventional from 66543 -> 66544", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66543, + "TargetID": 66544, + "Directional": true + } + ] + }, + { + "ID": 15502, + "SourceStructureID": 66634, + "TargetStructureID": 166, + "Label": "66634-166 via Conventional from 71338 -> 60026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71338, + "TargetID": 60026, + "Directional": true + } + ] + }, + { + "ID": 15503, + "SourceStructureID": 66634, + "TargetStructureID": 593, + "Label": "66634-593 via Conventional from 66635 -> 59624", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66635, + "TargetID": 59624, + "Directional": true + } + ] + }, + { + "ID": 15504, + "SourceStructureID": 66634, + "TargetStructureID": 6115, + "Label": "66634-6115 via Conventional from 71331 -> 71332, 71957 -> 71621", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71331, + "TargetID": 71332, + "Directional": true + }, + { + "SourceID": 71957, + "TargetID": 71621, + "Directional": true + } + ] + }, + { + "ID": 15505, + "SourceStructureID": 66634, + "TargetStructureID": 6857, + "Label": "66634-6857 via Conventional from 66638 -> 66637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66638, + "TargetID": 66637, + "Directional": true + } + ] + }, + { + "ID": 15506, + "SourceStructureID": 66634, + "TargetStructureID": 38363, + "Label": "66634-38363 via Conventional from 71613 -> 38367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71613, + "TargetID": 38367, + "Directional": true + } + ] + }, + { + "ID": 15507, + "SourceStructureID": 66634, + "TargetStructureID": 71345, + "Label": "66634-71345 via Conventional from 71344 -> 71346", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71344, + "TargetID": 71346, + "Directional": true + } + ] + }, + { + "ID": 15508, + "SourceStructureID": 66634, + "TargetStructureID": 71517, + "Label": "66634-71517 via Conventional from 66672 -> 66674, 71623 -> 71624", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66672, + "TargetID": 66674, + "Directional": true + }, + { + "SourceID": 71623, + "TargetID": 71624, + "Directional": true + } + ] + }, + { + "ID": 15509, + "SourceStructureID": 66634, + "TargetStructureID": 71615, + "Label": "66634-71615 via Conventional from 71614 -> 71616", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71614, + "TargetID": 71616, + "Directional": true + } + ] + }, + { + "ID": 15510, + "SourceStructureID": 66640, + "TargetStructureID": 66523, + "Label": "66640-66523 via Conventional from 66643 -> 75341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66643, + "TargetID": 75341, + "Directional": true + } + ] + }, + { + "ID": 15511, + "SourceStructureID": 66656, + "TargetStructureID": 16002, + "Label": "66656-16002 via Adherens from 66659 -> 66658", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 66659, + "TargetID": 66658, + "Directional": true + } + ] + }, + { + "ID": 15512, + "SourceStructureID": 66660, + "TargetStructureID": 4569, + "Label": "66660-4569 via Conventional from 66661 -> 30839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66661, + "TargetID": 30839, + "Directional": true + } + ] + }, + { + "ID": 15513, + "SourceStructureID": 66665, + "TargetStructureID": 4569, + "Label": "66665-4569 via Conventional from 66670 -> 30840", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66670, + "TargetID": 30840, + "Directional": true + } + ] + }, + { + "ID": 15514, + "SourceStructureID": 66665, + "TargetStructureID": 66667, + "Label": "66665-66667 via Conventional from 66668 -> 66669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66668, + "TargetID": 66669, + "Directional": true + } + ] + }, + { + "ID": 15515, + "SourceStructureID": 66682, + "TargetStructureID": 593, + "Label": "66682-593 via Conventional from 66684 -> 59621", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66684, + "TargetID": 59621, + "Directional": true + } + ] + }, + { + "ID": 15516, + "SourceStructureID": 66685, + "TargetStructureID": 593, + "Label": "66685-593 via Conventional from 66686 -> 59617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66686, + "TargetID": 59617, + "Directional": true + } + ] + }, + { + "ID": 15517, + "SourceStructureID": 66685, + "TargetStructureID": 66688, + "Label": "66685-66688 via Conventional from 66687 -> 66689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66687, + "TargetID": 66689, + "Directional": true + } + ] + }, + { + "ID": 15518, + "SourceStructureID": 66691, + "TargetStructureID": 66688, + "Label": "66691-66688 via Conventional from 66692 -> 66690", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66692, + "TargetID": 66690, + "Directional": true + } + ] + }, + { + "ID": 15519, + "SourceStructureID": 66693, + "TargetStructureID": 593, + "Label": "66693-593 via Conventional from 66695 -> 59612", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66695, + "TargetID": 59612, + "Directional": true + } + ] + }, + { + "ID": 15520, + "SourceStructureID": 66696, + "TargetStructureID": 6115, + "Label": "66696-6115 via Conventional from 66749 -> 16059", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66749, + "TargetID": 16059, + "Directional": true + } + ] + }, + { + "ID": 15521, + "SourceStructureID": 66699, + "TargetStructureID": 66696, + "Label": "66699-66696 via Conventional from 66700 -> 66698", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66700, + "TargetID": 66698, + "Directional": true + } + ] + }, + { + "ID": 15522, + "SourceStructureID": 66702, + "TargetStructureID": 66696, + "Label": "66702-66696 via Conventional from 66703 -> 66701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66703, + "TargetID": 66701, + "Directional": true + } + ] + }, + { + "ID": 15523, + "SourceStructureID": 66706, + "TargetStructureID": 593, + "Label": "66706-593 via Conventional from 66708 -> 59620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66708, + "TargetID": 59620, + "Directional": true + } + ] + }, + { + "ID": 15524, + "SourceStructureID": 66710, + "TargetStructureID": 39345, + "Label": "66710-39345 via Conventional from 66717 -> 39362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66717, + "TargetID": 39362, + "Directional": true + } + ] + }, + { + "ID": 15525, + "SourceStructureID": 66710, + "TargetStructureID": 58696, + "Label": "66710-58696 via Conventional from 66716 -> 66709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66716, + "TargetID": 66709, + "Directional": true + } + ] + }, + { + "ID": 15526, + "SourceStructureID": 66713, + "TargetStructureID": 166, + "Label": "66713-166 via Conventional from 66715 -> 60005", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66715, + "TargetID": 60005, + "Directional": true + } + ] + }, + { + "ID": 15527, + "SourceStructureID": 66723, + "TargetStructureID": 58696, + "Label": "66723-58696 via Conventional from 66724 -> 66722", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66724, + "TargetID": 66722, + "Directional": true + } + ] + }, + { + "ID": 15528, + "SourceStructureID": 66726, + "TargetStructureID": 66516, + "Label": "66726-66516 via Conventional from 66727 -> 66725", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66727, + "TargetID": 66725, + "Directional": true + } + ] + }, + { + "ID": 15529, + "SourceStructureID": 66731, + "TargetStructureID": 66734, + "Label": "66731-66734 via Conventional from 66733 -> 66735", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66733, + "TargetID": 66735, + "Directional": true + } + ] + }, + { + "ID": 15530, + "SourceStructureID": 66731, + "TargetStructureID": 66741, + "Label": "66731-66741 via Conventional from 66740 -> 66742", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66740, + "TargetID": 66742, + "Directional": true + } + ] + }, + { + "ID": 15531, + "SourceStructureID": 66760, + "TargetStructureID": 66756, + "Label": "66760-66756 via Conventional from 66761 -> 66762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66761, + "TargetID": 66762, + "Directional": true + } + ] + }, + { + "ID": 15532, + "SourceStructureID": 66768, + "TargetStructureID": 593, + "Label": "66768-593 via Conventional from 67538 -> 67539, 68429 -> 28438", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67538, + "TargetID": 67539, + "Directional": true + }, + { + "SourceID": 68429, + "TargetID": 28438, + "Directional": true + } + ] + }, + { + "ID": 15533, + "SourceStructureID": 66768, + "TargetStructureID": 6115, + "Label": "66768-6115 via Conventional from 66771 -> 59607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66771, + "TargetID": 59607, + "Directional": true + } + ] + }, + { + "ID": 15534, + "SourceStructureID": 66779, + "TargetStructureID": 593, + "Label": "66779-593 via Conventional from 66780 -> 7712, 66793 -> 7751, 67499 -> 7757", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66780, + "TargetID": 7712, + "Directional": true + }, + { + "SourceID": 66793, + "TargetID": 7751, + "Directional": true + }, + { + "SourceID": 67499, + "TargetID": 7757, + "Directional": true + } + ] + }, + { + "ID": 15535, + "SourceStructureID": 66788, + "TargetStructureID": 66791, + "Label": "66788-66791 via Conventional from 66790 -> 66792", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66790, + "TargetID": 66792, + "Directional": true + } + ] + }, + { + "ID": 15536, + "SourceStructureID": 66795, + "TargetStructureID": 593, + "Label": "66795-593 via Conventional from 66796 -> 7714, 67567 -> 7767", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66796, + "TargetID": 7714, + "Directional": true + }, + { + "SourceID": 67567, + "TargetID": 7767, + "Directional": true + } + ] + }, + { + "ID": 15537, + "SourceStructureID": 66795, + "TargetStructureID": 66798, + "Label": "66795-66798 via Conventional from 66797 -> 66799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66797, + "TargetID": 66799, + "Directional": true + } + ] + }, + { + "ID": 15538, + "SourceStructureID": 66795, + "TargetStructureID": 68488, + "Label": "66795-68488 via Conventional from 79580 -> 79581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79580, + "TargetID": 79581, + "Directional": true + } + ] + }, + { + "ID": 15539, + "SourceStructureID": 66801, + "TargetStructureID": 16026, + "Label": "66801-16026 via Conventional from 83605 -> 91078", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83605, + "TargetID": 91078, + "Directional": true + } + ] + }, + { + "ID": 15540, + "SourceStructureID": 66801, + "TargetStructureID": 66795, + "Label": "66801-66795 via Conventional from 66802 -> 66800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66802, + "TargetID": 66800, + "Directional": true + } + ] + }, + { + "ID": 15541, + "SourceStructureID": 66801, + "TargetStructureID": 83609, + "Label": "66801-83609 via Conventional from 83608 -> 83610", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83608, + "TargetID": 83610, + "Directional": true + } + ] + }, + { + "ID": 15542, + "SourceStructureID": 66804, + "TargetStructureID": 593, + "Label": "66804-593 via Conventional from 66806 -> 66807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66806, + "TargetID": 66807, + "Directional": true + } + ] + }, + { + "ID": 15543, + "SourceStructureID": 66804, + "TargetStructureID": 66801, + "Label": "66804-66801 via Conventional from 80629 -> 83601", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80629, + "TargetID": 83601, + "Directional": true + } + ] + }, + { + "ID": 15544, + "SourceStructureID": 66804, + "TargetStructureID": 66809, + "Label": "66804-66809 via Conventional from 66808 -> 66810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66808, + "TargetID": 66810, + "Directional": true + } + ] + }, + { + "ID": 15545, + "SourceStructureID": 66804, + "TargetStructureID": 69537, + "Label": "66804-69537 via Conventional from 80632 -> 69633", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80632, + "TargetID": 69633, + "Directional": true + } + ] + }, + { + "ID": 15546, + "SourceStructureID": 66809, + "TargetStructureID": 593, + "Label": "66809-593 via Conventional from 66861 -> 67060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66861, + "TargetID": 67060, + "Directional": true + } + ] + }, + { + "ID": 15547, + "SourceStructureID": 66809, + "TargetStructureID": 66031, + "Label": "66809-66031 via Conventional from 66047 -> 66048", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66047, + "TargetID": 66048, + "Directional": true + } + ] + }, + { + "ID": 15548, + "SourceStructureID": 66809, + "TargetStructureID": 66795, + "Label": "66809-66795 via Conventional from 82440 -> 82441", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82440, + "TargetID": 82441, + "Directional": true + } + ] + }, + { + "ID": 15549, + "SourceStructureID": 66809, + "TargetStructureID": 66804, + "Label": "66809-66804 via Conventional from 66864 -> 66867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66864, + "TargetID": 66867, + "Directional": true + } + ] + }, + { + "ID": 15550, + "SourceStructureID": 66815, + "TargetStructureID": 5017, + "Label": "66815-5017 via Conventional from 159670 -> 5028, 159677 -> 5031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159670, + "TargetID": 5028, + "Directional": true + }, + { + "SourceID": 159677, + "TargetID": 5031, + "Directional": true + } + ] + }, + { + "ID": 15551, + "SourceStructureID": 66815, + "TargetStructureID": 6561, + "Label": "66815-6561 via Conventional from 159679 -> 8330, 159680 -> 8329", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159679, + "TargetID": 8330, + "Directional": true + }, + { + "SourceID": 159680, + "TargetID": 8329, + "Directional": true + } + ] + }, + { + "ID": 15552, + "SourceStructureID": 66815, + "TargetStructureID": 10943, + "Label": "66815-10943 via Conventional from 66818 -> 16269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66818, + "TargetID": 16269, + "Directional": true + } + ] + }, + { + "ID": 15553, + "SourceStructureID": 66828, + "TargetStructureID": 593, + "Label": "66828-593 via Conventional from 66830 -> 66831", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66830, + "TargetID": 66831, + "Directional": true + } + ] + }, + { + "ID": 15554, + "SourceStructureID": 66828, + "TargetStructureID": 16026, + "Label": "66828-16026 via Conventional from 66836 -> 25704, 82735 -> 25600, 82740 -> 67923", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66836, + "TargetID": 25704, + "Directional": true + }, + { + "SourceID": 82735, + "TargetID": 25600, + "Directional": true + }, + { + "SourceID": 82740, + "TargetID": 67923, + "Directional": true + } + ] + }, + { + "ID": 15555, + "SourceStructureID": 66828, + "TargetStructureID": 40451, + "Label": "66828-40451 via Conventional from 82727 -> 40452", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82727, + "TargetID": 40452, + "Directional": true + } + ] + }, + { + "ID": 15556, + "SourceStructureID": 66828, + "TargetStructureID": 82729, + "Label": "66828-82729 via Conventional from 82728 -> 82730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82728, + "TargetID": 82730, + "Directional": true + } + ] + }, + { + "ID": 15557, + "SourceStructureID": 66840, + "TargetStructureID": 8720, + "Label": "66840-8720 via Conventional from 64379 -> 64377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 64379, + "TargetID": 64377, + "Directional": true + } + ] + }, + { + "ID": 15558, + "SourceStructureID": 66852, + "TargetStructureID": 593, + "Label": "66852-593 via Conventional from 66853 -> 66854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66853, + "TargetID": 66854, + "Directional": true + } + ] + }, + { + "ID": 15559, + "SourceStructureID": 66871, + "TargetStructureID": 593, + "Label": "66871-593 via Conventional from 66873 -> 7754", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66873, + "TargetID": 7754, + "Directional": true + } + ] + }, + { + "ID": 15560, + "SourceStructureID": 66871, + "TargetStructureID": 66804, + "Label": "66871-66804 via Conventional from 66874 -> 66875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66874, + "TargetID": 66875, + "Directional": true + } + ] + }, + { + "ID": 15561, + "SourceStructureID": 66871, + "TargetStructureID": 67430, + "Label": "66871-67430 via Conventional from 82742 -> 70032", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82742, + "TargetID": 70032, + "Directional": true + } + ] + }, + { + "ID": 15562, + "SourceStructureID": 66896, + "TargetStructureID": 593, + "Label": "66896-593 via Conventional from 79252 -> 7805", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79252, + "TargetID": 7805, + "Directional": true + } + ] + }, + { + "ID": 15563, + "SourceStructureID": 66900, + "TargetStructureID": 66900, + "Label": "66900-66900 via Conventional from 66902 -> 66904", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66902, + "TargetID": 66904, + "Directional": true + } + ] + }, + { + "ID": 15564, + "SourceStructureID": 66900, + "TargetStructureID": 84260, + "Label": "66900-84260 via Conventional from 66901 -> 84265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66901, + "TargetID": 84265, + "Directional": true + } + ] + }, + { + "ID": 15565, + "SourceStructureID": 66905, + "TargetStructureID": 66923, + "Label": "66905-66923 via Conventional from 66922 -> 66924", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66922, + "TargetID": 66924, + "Directional": true + } + ] + }, + { + "ID": 15566, + "SourceStructureID": 66920, + "TargetStructureID": 66905, + "Label": "66920-66905 via Conventional from 66921 -> 66919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66921, + "TargetID": 66919, + "Directional": true + } + ] + }, + { + "ID": 15567, + "SourceStructureID": 66927, + "TargetStructureID": 66905, + "Label": "66927-66905 via Conventional from 66928 -> 66926", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66928, + "TargetID": 66926, + "Directional": true + } + ] + }, + { + "ID": 15568, + "SourceStructureID": 66930, + "TargetStructureID": 66905, + "Label": "66930-66905 via Conventional from 66931 -> 66929", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66931, + "TargetID": 66929, + "Directional": true + } + ] + }, + { + "ID": 15569, + "SourceStructureID": 66946, + "TargetStructureID": 525, + "Label": "66946-525 via Conventional from 83032 -> 6223", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83032, + "TargetID": 6223, + "Directional": true + } + ] + }, + { + "ID": 15570, + "SourceStructureID": 66946, + "TargetStructureID": 593, + "Label": "66946-593 via Conventional from 66948 -> 66949", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66948, + "TargetID": 66949, + "Directional": true + } + ] + }, + { + "ID": 15571, + "SourceStructureID": 66946, + "TargetStructureID": 5017, + "Label": "66946-5017 via Conventional from 82924 -> 61167", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82924, + "TargetID": 61167, + "Directional": true + } + ] + }, + { + "ID": 15572, + "SourceStructureID": 66946, + "TargetStructureID": 6156, + "Label": "66946-6156 via Conventional from 82906 -> 28694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82906, + "TargetID": 28694, + "Directional": true + } + ] + }, + { + "ID": 15573, + "SourceStructureID": 66946, + "TargetStructureID": 6997, + "Label": "66946-6997 via Conventional from 82943 -> 80639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82943, + "TargetID": 80639, + "Directional": true + } + ] + }, + { + "ID": 15574, + "SourceStructureID": 66946, + "TargetStructureID": 8580, + "Label": "66946-8580 via Conventional from 69261 -> 59650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69261, + "TargetID": 59650, + "Directional": true + } + ] + }, + { + "ID": 15575, + "SourceStructureID": 66946, + "TargetStructureID": 8588, + "Label": "66946-8588 via Conventional from 82745 -> 32708, 82905 -> 59743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82745, + "TargetID": 32708, + "Directional": true + }, + { + "SourceID": 82905, + "TargetID": 59743, + "Directional": true + } + ] + }, + { + "ID": 15576, + "SourceStructureID": 66946, + "TargetStructureID": 16026, + "Label": "66946-16026 via Conventional from 82890 -> 25488", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82890, + "TargetID": 25488, + "Directional": true + } + ] + }, + { + "ID": 15577, + "SourceStructureID": 66946, + "TargetStructureID": 32913, + "Label": "66946-32913 via Conventional from 82903 -> 82904", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82903, + "TargetID": 82904, + "Directional": true + } + ] + }, + { + "ID": 15578, + "SourceStructureID": 66946, + "TargetStructureID": 66952, + "Label": "66946-66952 via Conventional from 66951 -> 66953", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66951, + "TargetID": 66953, + "Directional": true + } + ] + }, + { + "ID": 15579, + "SourceStructureID": 66946, + "TargetStructureID": 68302, + "Label": "66946-68302 via Adherens from 82925 -> 80635", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 82925, + "TargetID": 80635, + "Directional": true + } + ] + }, + { + "ID": 15580, + "SourceStructureID": 66946, + "TargetStructureID": 68302, + "Label": "66946-68302 via Conventional from 82926 -> 80634, 82927 -> 80636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82926, + "TargetID": 80634, + "Directional": true + }, + { + "SourceID": 82927, + "TargetID": 80636, + "Directional": true + } + ] + }, + { + "ID": 15581, + "SourceStructureID": 66946, + "TargetStructureID": 68341, + "Label": "66946-68341 via Conventional from 82744 -> 80622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82744, + "TargetID": 80622, + "Directional": true + } + ] + }, + { + "ID": 15582, + "SourceStructureID": 66946, + "TargetStructureID": 68548, + "Label": "66946-68548 via Conventional from 82891 -> 73486", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82891, + "TargetID": 73486, + "Directional": true + } + ] + }, + { + "ID": 15583, + "SourceStructureID": 66946, + "TargetStructureID": 83034, + "Label": "66946-83034 via Conventional from 83035 -> 83036", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83035, + "TargetID": 83036, + "Directional": true + } + ] + }, + { + "ID": 15584, + "SourceStructureID": 66952, + "TargetStructureID": 593, + "Label": "66952-593 via Conventional from 67006 -> 67004", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67006, + "TargetID": 67004, + "Directional": true + } + ] + }, + { + "ID": 15585, + "SourceStructureID": 66952, + "TargetStructureID": 67007, + "Label": "66952-67007 via Conventional from 67012 -> 67013", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67012, + "TargetID": 67013, + "Directional": true + } + ] + }, + { + "ID": 15586, + "SourceStructureID": 66952, + "TargetStructureID": 67389, + "Label": "66952-67389 via Conventional from 67388 -> 67390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67388, + "TargetID": 67390, + "Directional": true + } + ] + }, + { + "ID": 15587, + "SourceStructureID": 66952, + "TargetStructureID": 83049, + "Label": "66952-83049 via Conventional from 83048 -> 83050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83048, + "TargetID": 83050, + "Directional": true + } + ] + }, + { + "ID": 15588, + "SourceStructureID": 66955, + "TargetStructureID": 66946, + "Label": "66955-66946 via Conventional from 66956 -> 66954", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66956, + "TargetID": 66954, + "Directional": true + } + ] + }, + { + "ID": 15589, + "SourceStructureID": 66962, + "TargetStructureID": 16026, + "Label": "66962-16026 via Conventional from 71226 -> 25734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71226, + "TargetID": 25734, + "Directional": true + } + ] + }, + { + "ID": 15590, + "SourceStructureID": 66962, + "TargetStructureID": 66964, + "Label": "66962-66964 via Conventional from 66963 -> 66965", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66963, + "TargetID": 66965, + "Directional": true + } + ] + }, + { + "ID": 15591, + "SourceStructureID": 66969, + "TargetStructureID": 66966, + "Label": "66969-66966 via Conventional from 66970 -> 66971", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66970, + "TargetID": 66971, + "Directional": true + } + ] + }, + { + "ID": 15592, + "SourceStructureID": 66972, + "TargetStructureID": 10943, + "Label": "66972-10943 via Conventional from 66973 -> 66974", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66973, + "TargetID": 66974, + "Directional": true + } + ] + }, + { + "ID": 15593, + "SourceStructureID": 66983, + "TargetStructureID": 593, + "Label": "66983-593 via Conventional from 66984 -> 7718, 66997 -> 7724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66984, + "TargetID": 7718, + "Directional": true + }, + { + "SourceID": 66997, + "TargetID": 7724, + "Directional": true + } + ] + }, + { + "ID": 15594, + "SourceStructureID": 66983, + "TargetStructureID": 66988, + "Label": "66983-66988 via Conventional from 66987 -> 66989", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66987, + "TargetID": 66989, + "Directional": true + } + ] + }, + { + "ID": 15595, + "SourceStructureID": 66992, + "TargetStructureID": 66983, + "Label": "66992-66983 via Conventional from 66993 -> 66994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66993, + "TargetID": 66994, + "Directional": true + } + ] + }, + { + "ID": 15596, + "SourceStructureID": 67002, + "TargetStructureID": 66983, + "Label": "67002-66983 via Conventional from 67003 -> 67001", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67003, + "TargetID": 67001, + "Directional": true + } + ] + }, + { + "ID": 15597, + "SourceStructureID": 67007, + "TargetStructureID": 593, + "Label": "67007-593 via Conventional from 67014 -> 66622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67014, + "TargetID": 66622, + "Directional": true + } + ] + }, + { + "ID": 15598, + "SourceStructureID": 67007, + "TargetStructureID": 66952, + "Label": "67007-66952 via Conventional from 67008 -> 67009", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67008, + "TargetID": 67009, + "Directional": true + } + ] + }, + { + "ID": 15599, + "SourceStructureID": 67007, + "TargetStructureID": 67016, + "Label": "67007-67016 via Conventional from 67015 -> 67017", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67015, + "TargetID": 67017, + "Directional": true + } + ] + }, + { + "ID": 15600, + "SourceStructureID": 67010, + "TargetStructureID": 8588, + "Label": "67010-8588 via Conventional from 67011 -> 32710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67011, + "TargetID": 32710, + "Directional": true + } + ] + }, + { + "ID": 15601, + "SourceStructureID": 67016, + "TargetStructureID": 55403, + "Label": "67016-55403 via Conventional from 67023 -> 55465", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67023, + "TargetID": 55465, + "Directional": true + } + ] + }, + { + "ID": 15602, + "SourceStructureID": 67037, + "TargetStructureID": 66777, + "Label": "67037-66777 via Conventional from 71208 -> 67039", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71208, + "TargetID": 67039, + "Directional": true + } + ] + }, + { + "ID": 15603, + "SourceStructureID": 67042, + "TargetStructureID": 66958, + "Label": "67042-66958 via Conventional from 67043 -> 67041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67043, + "TargetID": 67041, + "Directional": true + } + ] + }, + { + "ID": 15604, + "SourceStructureID": 67045, + "TargetStructureID": 593, + "Label": "67045-593 via Conventional from 67047 -> 67046, 67218 -> 67215, 67676 -> 67674, 67680 -> 67681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67047, + "TargetID": 67046, + "Directional": true + }, + { + "SourceID": 67218, + "TargetID": 67215, + "Directional": true + }, + { + "SourceID": 67676, + "TargetID": 67674, + "Directional": true + }, + { + "SourceID": 67680, + "TargetID": 67681, + "Directional": true + } + ] + }, + { + "ID": 15605, + "SourceStructureID": 67045, + "TargetStructureID": 16026, + "Label": "67045-16026 via Conventional from 81542 -> 68700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81542, + "TargetID": 68700, + "Directional": true + } + ] + }, + { + "ID": 15606, + "SourceStructureID": 67045, + "TargetStructureID": 31161, + "Label": "67045-31161 via Conventional from 68699 -> 31234", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68699, + "TargetID": 31234, + "Directional": true + } + ] + }, + { + "ID": 15607, + "SourceStructureID": 67045, + "TargetStructureID": 67683, + "Label": "67045-67683 via Conventional from 67682 -> 67684", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67682, + "TargetID": 67684, + "Directional": true + } + ] + }, + { + "ID": 15608, + "SourceStructureID": 67045, + "TargetStructureID": 67731, + "Label": "67045-67731 via Conventional from 67734 -> 67735", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67734, + "TargetID": 67735, + "Directional": true + } + ] + }, + { + "ID": 15609, + "SourceStructureID": 67045, + "TargetStructureID": 67756, + "Label": "67045-67756 via Conventional from 67048 -> 75405, 68695 -> 75401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67048, + "TargetID": 75405, + "Directional": true + }, + { + "SourceID": 68695, + "TargetID": 75401, + "Directional": true + } + ] + }, + { + "ID": 15610, + "SourceStructureID": 67045, + "TargetStructureID": 81549, + "Label": "67045-81549 via Conventional from 81548 -> 81550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81548, + "TargetID": 81550, + "Directional": true + } + ] + }, + { + "ID": 15611, + "SourceStructureID": 67051, + "TargetStructureID": 66958, + "Label": "67051-66958 via Conventional from 67055 -> 67056", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67055, + "TargetID": 67056, + "Directional": true + } + ] + }, + { + "ID": 15612, + "SourceStructureID": 67057, + "TargetStructureID": 7594, + "Label": "67057-7594 via Conventional from 130847 -> 130848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130847, + "TargetID": 130848, + "Directional": true + } + ] + }, + { + "ID": 15613, + "SourceStructureID": 67057, + "TargetStructureID": 66958, + "Label": "67057-66958 via Conventional from 67058 -> 67059", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67058, + "TargetID": 67059, + "Directional": true + } + ] + }, + { + "ID": 15614, + "SourceStructureID": 67072, + "TargetStructureID": 22974, + "Label": "67072-22974 via Conventional from 67074 -> 67075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67074, + "TargetID": 67075, + "Directional": true + } + ] + }, + { + "ID": 15615, + "SourceStructureID": 67080, + "TargetStructureID": 16026, + "Label": "67080-16026 via Conventional from 67082 -> 25717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67082, + "TargetID": 25717, + "Directional": true + } + ] + }, + { + "ID": 15616, + "SourceStructureID": 67099, + "TargetStructureID": 593, + "Label": "67099-593 via Conventional from 67100 -> 7716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67100, + "TargetID": 7716, + "Directional": true + } + ] + }, + { + "ID": 15617, + "SourceStructureID": 67099, + "TargetStructureID": 7594, + "Label": "67099-7594 via Conventional from 83053 -> 83054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83053, + "TargetID": 83054, + "Directional": true + } + ] + }, + { + "ID": 15618, + "SourceStructureID": 67105, + "TargetStructureID": 67101, + "Label": "67105-67101 via Conventional from 67106 -> 67104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67106, + "TargetID": 67104, + "Directional": true + } + ] + }, + { + "ID": 15619, + "SourceStructureID": 67117, + "TargetStructureID": 593, + "Label": "67117-593 via Conventional from 67118 -> 66623", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67118, + "TargetID": 66623, + "Directional": true + } + ] + }, + { + "ID": 15620, + "SourceStructureID": 67121, + "TargetStructureID": 593, + "Label": "67121-593 via Conventional from 67122 -> 66627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67122, + "TargetID": 66627, + "Directional": true + } + ] + }, + { + "ID": 15621, + "SourceStructureID": 67123, + "TargetStructureID": 593, + "Label": "67123-593 via Conventional from 67124 -> 66628", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67124, + "TargetID": 66628, + "Directional": true + } + ] + }, + { + "ID": 15622, + "SourceStructureID": 67130, + "TargetStructureID": 33092, + "Label": "67130-33092 via Conventional from 67134 -> 39979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67134, + "TargetID": 39979, + "Directional": true + } + ] + }, + { + "ID": 15623, + "SourceStructureID": 67135, + "TargetStructureID": 7054, + "Label": "67135-7054 via Conventional from 67145 -> 10915", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67145, + "TargetID": 10915, + "Directional": true + } + ] + }, + { + "ID": 15624, + "SourceStructureID": 67137, + "TargetStructureID": 5283, + "Label": "67137-5283 via Conventional from 67149 -> 132129", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67149, + "TargetID": 132129, + "Directional": true + } + ] + }, + { + "ID": 15625, + "SourceStructureID": 67143, + "TargetStructureID": 67135, + "Label": "67143-67135 via Conventional from 67144 -> 67142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67144, + "TargetID": 67142, + "Directional": true + } + ] + }, + { + "ID": 15626, + "SourceStructureID": 67147, + "TargetStructureID": 67137, + "Label": "67147-67137 via Conventional from 67148 -> 67146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67148, + "TargetID": 67146, + "Directional": true + } + ] + }, + { + "ID": 15627, + "SourceStructureID": 67150, + "TargetStructureID": 593, + "Label": "67150-593 via Conventional from 67151 -> 49569, 68330 -> 7761, 90045 -> 90046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67151, + "TargetID": 49569, + "Directional": true + }, + { + "SourceID": 68330, + "TargetID": 7761, + "Directional": true + }, + { + "SourceID": 90045, + "TargetID": 90046, + "Directional": true + } + ] + }, + { + "ID": 15628, + "SourceStructureID": 67152, + "TargetStructureID": 593, + "Label": "67152-593 via Conventional from 67153 -> 67154", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67153, + "TargetID": 67154, + "Directional": true + } + ] + }, + { + "ID": 15629, + "SourceStructureID": 67157, + "TargetStructureID": 593, + "Label": "67157-593 via Conventional from 67158 -> 67156", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67158, + "TargetID": 67156, + "Directional": true + } + ] + }, + { + "ID": 15630, + "SourceStructureID": 67159, + "TargetStructureID": 593, + "Label": "67159-593 via Conventional from 67160 -> 62885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67160, + "TargetID": 62885, + "Directional": true + } + ] + }, + { + "ID": 15631, + "SourceStructureID": 67161, + "TargetStructureID": 67172, + "Label": "67161-67172 via Conventional from 67171 -> 67173", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67171, + "TargetID": 67173, + "Directional": true + } + ] + }, + { + "ID": 15632, + "SourceStructureID": 67161, + "TargetStructureID": 67175, + "Label": "67161-67175 via Conventional from 67174 -> 67176", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67174, + "TargetID": 67176, + "Directional": true + } + ] + }, + { + "ID": 15633, + "SourceStructureID": 67161, + "TargetStructureID": 69162, + "Label": "67161-69162 via Conventional from 67179 -> 69213", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67179, + "TargetID": 69213, + "Directional": true + } + ] + }, + { + "ID": 15634, + "SourceStructureID": 67180, + "TargetStructureID": 593, + "Label": "67180-593 via Conventional from 67181 -> 66632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67181, + "TargetID": 66632, + "Directional": true + } + ] + }, + { + "ID": 15635, + "SourceStructureID": 67182, + "TargetStructureID": 142, + "Label": "67182-142 via Conventional from 83313 -> 49728, 83317 -> 30684", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83313, + "TargetID": 49728, + "Directional": true + }, + { + "SourceID": 83317, + "TargetID": 30684, + "Directional": true + } + ] + }, + { + "ID": 15636, + "SourceStructureID": 67182, + "TargetStructureID": 168, + "Label": "67182-168 via Conventional from 83323 -> 4144", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83323, + "TargetID": 4144, + "Directional": true + } + ] + }, + { + "ID": 15637, + "SourceStructureID": 67182, + "TargetStructureID": 593, + "Label": "67182-593 via Conventional from 67184 -> 67183", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67184, + "TargetID": 67183, + "Directional": true + } + ] + }, + { + "ID": 15638, + "SourceStructureID": 67182, + "TargetStructureID": 5279, + "Label": "67182-5279 via Conventional from 82870 -> 97564, 83300 -> 83299, 97648 -> 25817, 98544 -> 49206, 98989 -> 98990", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82870, + "TargetID": 97564, + "Directional": true + }, + { + "SourceID": 83300, + "TargetID": 83299, + "Directional": true + }, + { + "SourceID": 97648, + "TargetID": 25817, + "Directional": true + }, + { + "SourceID": 98544, + "TargetID": 49206, + "Directional": true + }, + { + "SourceID": 98989, + "TargetID": 98990, + "Directional": true + } + ] + }, + { + "ID": 15639, + "SourceStructureID": 67182, + "TargetStructureID": 58816, + "Label": "67182-58816 via Conventional from 83301 -> 83304, 83305 -> 83306", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83301, + "TargetID": 83304, + "Directional": true + }, + { + "SourceID": 83305, + "TargetID": 83306, + "Directional": true + } + ] + }, + { + "ID": 15640, + "SourceStructureID": 67182, + "TargetStructureID": 61857, + "Label": "67182-61857 via Conventional from 82917 -> 69711", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82917, + "TargetID": 69711, + "Directional": true + } + ] + }, + { + "ID": 15641, + "SourceStructureID": 67190, + "TargetStructureID": 593, + "Label": "67190-593 via Conventional from 120225 -> 120224", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120225, + "TargetID": 120224, + "Directional": true + } + ] + }, + { + "ID": 15642, + "SourceStructureID": 67201, + "TargetStructureID": 593, + "Label": "67201-593 via Conventional from 67202 -> 67203", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67202, + "TargetID": 67203, + "Directional": true + } + ] + }, + { + "ID": 15643, + "SourceStructureID": 67206, + "TargetStructureID": 593, + "Label": "67206-593 via Conventional from 67207 -> 67205, 83237 -> 68625", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67207, + "TargetID": 67205, + "Directional": true + }, + { + "SourceID": 83237, + "TargetID": 68625, + "Directional": true + } + ] + }, + { + "ID": 15644, + "SourceStructureID": 67227, + "TargetStructureID": 593, + "Label": "67227-593 via Conventional from 67229 -> 67228", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67229, + "TargetID": 67228, + "Directional": true + } + ] + }, + { + "ID": 15645, + "SourceStructureID": 67234, + "TargetStructureID": 593, + "Label": "67234-593 via Conventional from 67235 -> 67233", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67235, + "TargetID": 67233, + "Directional": true + } + ] + }, + { + "ID": 15646, + "SourceStructureID": 67254, + "TargetStructureID": 593, + "Label": "67254-593 via Conventional from 67256 -> 67255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67256, + "TargetID": 67255, + "Directional": true + } + ] + }, + { + "ID": 15647, + "SourceStructureID": 67266, + "TargetStructureID": 593, + "Label": "67266-593 via Conventional from 67267 -> 67268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67267, + "TargetID": 67268, + "Directional": true + } + ] + }, + { + "ID": 15648, + "SourceStructureID": 67269, + "TargetStructureID": 593, + "Label": "67269-593 via Conventional from 67271 -> 67270", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67271, + "TargetID": 67270, + "Directional": true + } + ] + }, + { + "ID": 15649, + "SourceStructureID": 67269, + "TargetStructureID": 69637, + "Label": "67269-69637 via Conventional from 69638 -> 69639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69638, + "TargetID": 69639, + "Directional": true + } + ] + }, + { + "ID": 15650, + "SourceStructureID": 67274, + "TargetStructureID": 593, + "Label": "67274-593 via Conventional from 67277 -> 67278", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67277, + "TargetID": 67278, + "Directional": true + } + ] + }, + { + "ID": 15651, + "SourceStructureID": 67284, + "TargetStructureID": 593, + "Label": "67284-593 via Conventional from 86594 -> 86595", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86594, + "TargetID": 86595, + "Directional": true + } + ] + }, + { + "ID": 15652, + "SourceStructureID": 67284, + "TargetStructureID": 16026, + "Label": "67284-16026 via Conventional from 67288 -> 91154", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67288, + "TargetID": 91154, + "Directional": true + } + ] + }, + { + "ID": 15653, + "SourceStructureID": 67291, + "TargetStructureID": 179, + "Label": "67291-179 via Conventional from 69839 -> 69840", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69839, + "TargetID": 69840, + "Directional": true + } + ] + }, + { + "ID": 15654, + "SourceStructureID": 67298, + "TargetStructureID": 593, + "Label": "67298-593 via Conventional from 67299 -> 67300", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67299, + "TargetID": 67300, + "Directional": true + } + ] + }, + { + "ID": 15655, + "SourceStructureID": 67301, + "TargetStructureID": 593, + "Label": "67301-593 via Conventional from 67302 -> 67303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67302, + "TargetID": 67303, + "Directional": true + } + ] + }, + { + "ID": 15656, + "SourceStructureID": 67305, + "TargetStructureID": 593, + "Label": "67305-593 via Conventional from 67306 -> 67304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67306, + "TargetID": 67304, + "Directional": true + } + ] + }, + { + "ID": 15657, + "SourceStructureID": 67305, + "TargetStructureID": 82813, + "Label": "67305-82813 via Conventional from 82812 -> 82814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82812, + "TargetID": 82814, + "Directional": true + } + ] + }, + { + "ID": 15658, + "SourceStructureID": 67307, + "TargetStructureID": 67309, + "Label": "67307-67309 via Conventional from 67308 -> 67310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67308, + "TargetID": 67310, + "Directional": true + } + ] + }, + { + "ID": 15659, + "SourceStructureID": 67322, + "TargetStructureID": 593, + "Label": "67322-593 via Conventional from 67323 -> 7747", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67323, + "TargetID": 7747, + "Directional": true + } + ] + }, + { + "ID": 15660, + "SourceStructureID": 67328, + "TargetStructureID": 593, + "Label": "67328-593 via Conventional from 67329 -> 67327", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67329, + "TargetID": 67327, + "Directional": true + } + ] + }, + { + "ID": 15661, + "SourceStructureID": 67328, + "TargetStructureID": 65355, + "Label": "67328-65355 via Conventional from 82801 -> 82802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82801, + "TargetID": 82802, + "Directional": true + } + ] + }, + { + "ID": 15662, + "SourceStructureID": 67337, + "TargetStructureID": 593, + "Label": "67337-593 via Conventional from 67338 -> 7755", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67338, + "TargetID": 7755, + "Directional": true + } + ] + }, + { + "ID": 15663, + "SourceStructureID": 67337, + "TargetStructureID": 67322, + "Label": "67337-67322 via Conventional from 67339 -> 67340", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67339, + "TargetID": 67340, + "Directional": true + } + ] + }, + { + "ID": 15664, + "SourceStructureID": 67341, + "TargetStructureID": 24148, + "Label": "67341-24148 via Conventional from 67393 -> 24151", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67393, + "TargetID": 24151, + "Directional": true + } + ] + }, + { + "ID": 15665, + "SourceStructureID": 67343, + "TargetStructureID": 82806, + "Label": "67343-82806 via Conventional from 67348 -> 82807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67348, + "TargetID": 82807, + "Directional": true + } + ] + }, + { + "ID": 15666, + "SourceStructureID": 67350, + "TargetStructureID": 593, + "Label": "67350-593 via Conventional from 68317 -> 7762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68317, + "TargetID": 7762, + "Directional": true + } + ] + }, + { + "ID": 15667, + "SourceStructureID": 67354, + "TargetStructureID": 67361, + "Label": "67354-67361 via Conventional from 67360 -> 67362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67360, + "TargetID": 67362, + "Directional": true + } + ] + }, + { + "ID": 15668, + "SourceStructureID": 67354, + "TargetStructureID": 91531, + "Label": "67354-91531 via Conventional from 91530 -> 91532", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91530, + "TargetID": 91532, + "Directional": true + } + ] + }, + { + "ID": 15669, + "SourceStructureID": 67354, + "TargetStructureID": 91533, + "Label": "67354-91533 via Conventional from 91529 -> 91534", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91529, + "TargetID": 91534, + "Directional": true + } + ] + }, + { + "ID": 15670, + "SourceStructureID": 67364, + "TargetStructureID": 593, + "Label": "67364-593 via Conventional from 67365 -> 7746", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67365, + "TargetID": 7746, + "Directional": true + } + ] + }, + { + "ID": 15671, + "SourceStructureID": 67375, + "TargetStructureID": 593, + "Label": "67375-593 via Conventional from 67376 -> 67377, 84611 -> 84612", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67376, + "TargetID": 67377, + "Directional": true + }, + { + "SourceID": 84611, + "TargetID": 84612, + "Directional": true + } + ] + }, + { + "ID": 15672, + "SourceStructureID": 67375, + "TargetStructureID": 67379, + "Label": "67375-67379 via Conventional from 67378 -> 67380", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67378, + "TargetID": 67380, + "Directional": true + } + ] + }, + { + "ID": 15673, + "SourceStructureID": 67396, + "TargetStructureID": 24148, + "Label": "67396-24148 via Conventional from 67403 -> 24152", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67403, + "TargetID": 24152, + "Directional": true + } + ] + }, + { + "ID": 15674, + "SourceStructureID": 67396, + "TargetStructureID": 67341, + "Label": "67396-67341 via Conventional from 67397 -> 67392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67397, + "TargetID": 67392, + "Directional": true + } + ] + }, + { + "ID": 15675, + "SourceStructureID": 67410, + "TargetStructureID": 593, + "Label": "67410-593 via Conventional from 67411 -> 67409", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67411, + "TargetID": 67409, + "Directional": true + } + ] + }, + { + "ID": 15676, + "SourceStructureID": 67410, + "TargetStructureID": 5562, + "Label": "67410-5562 via Conventional from 67412 -> 63782, 82782 -> 63857", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67412, + "TargetID": 63782, + "Directional": true + }, + { + "SourceID": 82782, + "TargetID": 63857, + "Directional": true + } + ] + }, + { + "ID": 15677, + "SourceStructureID": 67423, + "TargetStructureID": 593, + "Label": "67423-593 via Conventional from 67424 -> 49576", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67424, + "TargetID": 49576, + "Directional": true + } + ] + }, + { + "ID": 15678, + "SourceStructureID": 67425, + "TargetStructureID": 67433, + "Label": "67425-67433 via Conventional from 67436 -> 67435", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67436, + "TargetID": 67435, + "Directional": true + } + ] + }, + { + "ID": 15679, + "SourceStructureID": 67438, + "TargetStructureID": 16026, + "Label": "67438-16026 via Conventional from 67439 -> 91046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67439, + "TargetID": 91046, + "Directional": true + } + ] + }, + { + "ID": 15680, + "SourceStructureID": 67444, + "TargetStructureID": 8580, + "Label": "67444-8580 via Conventional from 67446 -> 59652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67446, + "TargetID": 59652, + "Directional": true + } + ] + }, + { + "ID": 15681, + "SourceStructureID": 67452, + "TargetStructureID": 593, + "Label": "67452-593 via Conventional from 67453 -> 67454", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67453, + "TargetID": 67454, + "Directional": true + } + ] + }, + { + "ID": 15682, + "SourceStructureID": 67452, + "TargetStructureID": 67460, + "Label": "67452-67460 via Conventional from 69635 -> 69636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69635, + "TargetID": 69636, + "Directional": true + } + ] + }, + { + "ID": 15683, + "SourceStructureID": 67460, + "TargetStructureID": 593, + "Label": "67460-593 via Conventional from 67463 -> 67464", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67463, + "TargetID": 67464, + "Directional": true + } + ] + }, + { + "ID": 15684, + "SourceStructureID": 67469, + "TargetStructureID": 593, + "Label": "67469-593 via Conventional from 67471 -> 67472", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67471, + "TargetID": 67472, + "Directional": true + } + ] + }, + { + "ID": 15685, + "SourceStructureID": 67469, + "TargetStructureID": 5562, + "Label": "67469-5562 via Conventional from 69677 -> 63733", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69677, + "TargetID": 63733, + "Directional": true + } + ] + }, + { + "ID": 15686, + "SourceStructureID": 67469, + "TargetStructureID": 67460, + "Label": "67469-67460 via Conventional from 67470 -> 67468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67470, + "TargetID": 67468, + "Directional": true + } + ] + }, + { + "ID": 15687, + "SourceStructureID": 67469, + "TargetStructureID": 69679, + "Label": "67469-69679 via Conventional from 69678 -> 69680", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69678, + "TargetID": 69680, + "Directional": true + } + ] + }, + { + "ID": 15688, + "SourceStructureID": 67469, + "TargetStructureID": 69684, + "Label": "67469-69684 via Conventional from 69683 -> 69685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69683, + "TargetID": 69685, + "Directional": true + } + ] + }, + { + "ID": 15689, + "SourceStructureID": 67474, + "TargetStructureID": 593, + "Label": "67474-593 via Conventional from 67477 -> 67475", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67477, + "TargetID": 67475, + "Directional": true + } + ] + }, + { + "ID": 15690, + "SourceStructureID": 67478, + "TargetStructureID": 593, + "Label": "67478-593 via Conventional from 67479 -> 67480", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67479, + "TargetID": 67480, + "Directional": true + } + ] + }, + { + "ID": 15691, + "SourceStructureID": 67488, + "TargetStructureID": 593, + "Label": "67488-593 via Conventional from 67489 -> 7813", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67489, + "TargetID": 7813, + "Directional": true + } + ] + }, + { + "ID": 15692, + "SourceStructureID": 67491, + "TargetStructureID": 5283, + "Label": "67491-5283 via Conventional from 123766 -> 28007", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123766, + "TargetID": 28007, + "Directional": true + } + ] + }, + { + "ID": 15693, + "SourceStructureID": 67491, + "TargetStructureID": 67486, + "Label": "67491-67486 via Conventional from 67492 -> 67490", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67492, + "TargetID": 67490, + "Directional": true + } + ] + }, + { + "ID": 15694, + "SourceStructureID": 67500, + "TargetStructureID": 593, + "Label": "67500-593 via Conventional from 67501 -> 7899", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67501, + "TargetID": 7899, + "Directional": true + } + ] + }, + { + "ID": 15695, + "SourceStructureID": 67506, + "TargetStructureID": 593, + "Label": "67506-593 via Conventional from 67511 -> 67510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67511, + "TargetID": 67510, + "Directional": true + } + ] + }, + { + "ID": 15696, + "SourceStructureID": 67508, + "TargetStructureID": 593, + "Label": "67508-593 via Conventional from 88145 -> 7814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88145, + "TargetID": 7814, + "Directional": true + } + ] + }, + { + "ID": 15697, + "SourceStructureID": 67508, + "TargetStructureID": 8588, + "Label": "67508-8588 via Conventional from 68899 -> 32715", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68899, + "TargetID": 32715, + "Directional": true + } + ] + }, + { + "ID": 15698, + "SourceStructureID": 67508, + "TargetStructureID": 67522, + "Label": "67508-67522 via Conventional from 67524 -> 67525", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67524, + "TargetID": 67525, + "Directional": true + } + ] + }, + { + "ID": 15699, + "SourceStructureID": 67517, + "TargetStructureID": 61836, + "Label": "67517-61836 via Conventional from 67518 -> 67516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67518, + "TargetID": 67516, + "Directional": true + } + ] + }, + { + "ID": 15700, + "SourceStructureID": 67520, + "TargetStructureID": 61923, + "Label": "67520-61923 via Conventional from 68325 -> 61925", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68325, + "TargetID": 61925, + "Directional": true + } + ] + }, + { + "ID": 15701, + "SourceStructureID": 67520, + "TargetStructureID": 67508, + "Label": "67520-67508 via Conventional from 67521 -> 67519", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67521, + "TargetID": 67519, + "Directional": true + } + ] + }, + { + "ID": 15702, + "SourceStructureID": 67526, + "TargetStructureID": 61836, + "Label": "67526-61836 via Conventional from 67527 -> 67523", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67527, + "TargetID": 67523, + "Directional": true + } + ] + }, + { + "ID": 15703, + "SourceStructureID": 67529, + "TargetStructureID": 593, + "Label": "67529-593 via Conventional from 69357 -> 69359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69357, + "TargetID": 69359, + "Directional": true + } + ] + }, + { + "ID": 15704, + "SourceStructureID": 67529, + "TargetStructureID": 67508, + "Label": "67529-67508 via Conventional from 67530 -> 67528", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67530, + "TargetID": 67528, + "Directional": true + } + ] + }, + { + "ID": 15705, + "SourceStructureID": 67531, + "TargetStructureID": 593, + "Label": "67531-593 via Conventional from 67535 -> 7826", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67535, + "TargetID": 7826, + "Directional": true + } + ] + }, + { + "ID": 15706, + "SourceStructureID": 67548, + "TargetStructureID": 31161, + "Label": "67548-31161 via Conventional from 67550 -> 31247", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67550, + "TargetID": 31247, + "Directional": true + } + ] + }, + { + "ID": 15707, + "SourceStructureID": 67557, + "TargetStructureID": 593, + "Label": "67557-593 via Conventional from 67558 -> 7824", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67558, + "TargetID": 7824, + "Directional": true + } + ] + }, + { + "ID": 15708, + "SourceStructureID": 67572, + "TargetStructureID": 66768, + "Label": "67572-66768 via Conventional from 67573 -> 67571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67573, + "TargetID": 67571, + "Directional": true + } + ] + }, + { + "ID": 15709, + "SourceStructureID": 67575, + "TargetStructureID": 593, + "Label": "67575-593 via Conventional from 67583 -> 67584", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67583, + "TargetID": 67584, + "Directional": true + } + ] + }, + { + "ID": 15710, + "SourceStructureID": 67575, + "TargetStructureID": 1724, + "Label": "67575-1724 via Conventional from 68980 -> 4112", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68980, + "TargetID": 4112, + "Directional": true + } + ] + }, + { + "ID": 15711, + "SourceStructureID": 67575, + "TargetStructureID": 5279, + "Label": "67575-5279 via Conventional from 108361 -> 99111", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108361, + "TargetID": 99111, + "Directional": true + } + ] + }, + { + "ID": 15712, + "SourceStructureID": 67575, + "TargetStructureID": 5513, + "Label": "67575-5513 via Conventional from 68976 -> 46786", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68976, + "TargetID": 46786, + "Directional": true + } + ] + }, + { + "ID": 15713, + "SourceStructureID": 67575, + "TargetStructureID": 67580, + "Label": "67575-67580 via Conventional from 67579 -> 67581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67579, + "TargetID": 67581, + "Directional": true + } + ] + }, + { + "ID": 15714, + "SourceStructureID": 67575, + "TargetStructureID": 68974, + "Label": "67575-68974 via Conventional from 68973 -> 68975", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68973, + "TargetID": 68975, + "Directional": true + } + ] + }, + { + "ID": 15715, + "SourceStructureID": 67585, + "TargetStructureID": 593, + "Label": "67585-593 via Conventional from 67593 -> 67594, 67597 -> 67598", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67593, + "TargetID": 67594, + "Directional": true + }, + { + "SourceID": 67597, + "TargetID": 67598, + "Directional": true + } + ] + }, + { + "ID": 15716, + "SourceStructureID": 67585, + "TargetStructureID": 7024, + "Label": "67585-7024 via Conventional from 67613 -> 67612", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67613, + "TargetID": 67612, + "Directional": true + } + ] + }, + { + "ID": 15717, + "SourceStructureID": 67585, + "TargetStructureID": 67190, + "Label": "67585-67190 via Conventional from 67602 -> 67192, 67625 -> 67194", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67602, + "TargetID": 67192, + "Directional": true + }, + { + "SourceID": 67625, + "TargetID": 67194, + "Directional": true + } + ] + }, + { + "ID": 15718, + "SourceStructureID": 67585, + "TargetStructureID": 67606, + "Label": "67585-67606 via Conventional from 67605 -> 67607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67605, + "TargetID": 67607, + "Directional": true + } + ] + }, + { + "ID": 15719, + "SourceStructureID": 67585, + "TargetStructureID": 67610, + "Label": "67585-67610 via Conventional from 67609 -> 67611", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67609, + "TargetID": 67611, + "Directional": true + } + ] + }, + { + "ID": 15720, + "SourceStructureID": 67585, + "TargetStructureID": 67615, + "Label": "67585-67615 via Conventional from 67614 -> 67616", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67614, + "TargetID": 67616, + "Directional": true + } + ] + }, + { + "ID": 15721, + "SourceStructureID": 67589, + "TargetStructureID": 67585, + "Label": "67589-67585 via Conventional from 67590 -> 67588", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67590, + "TargetID": 67588, + "Directional": true + } + ] + }, + { + "ID": 15722, + "SourceStructureID": 67591, + "TargetStructureID": 593, + "Label": "67591-593 via Conventional from 67592 -> 7827", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67592, + "TargetID": 7827, + "Directional": true + } + ] + }, + { + "ID": 15723, + "SourceStructureID": 67595, + "TargetStructureID": 593, + "Label": "67595-593 via Conventional from 67596 -> 28445", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67596, + "TargetID": 28445, + "Directional": true + } + ] + }, + { + "ID": 15724, + "SourceStructureID": 67595, + "TargetStructureID": 16026, + "Label": "67595-16026 via Conventional from 67632 -> 67633", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67632, + "TargetID": 67633, + "Directional": true + } + ] + }, + { + "ID": 15725, + "SourceStructureID": 67600, + "TargetStructureID": 67585, + "Label": "67600-67585 via Conventional from 67601 -> 67599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67601, + "TargetID": 67599, + "Directional": true + } + ] + }, + { + "ID": 15726, + "SourceStructureID": 67610, + "TargetStructureID": 7594, + "Label": "67610-7594 via Conventional from 67620 -> 25109", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67620, + "TargetID": 25109, + "Directional": true + } + ] + }, + { + "ID": 15727, + "SourceStructureID": 67618, + "TargetStructureID": 67585, + "Label": "67618-67585 via Conventional from 67619 -> 67617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67619, + "TargetID": 67617, + "Directional": true + } + ] + }, + { + "ID": 15728, + "SourceStructureID": 67621, + "TargetStructureID": 67585, + "Label": "67621-67585 via Conventional from 67622 -> 67623", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67622, + "TargetID": 67623, + "Directional": true + } + ] + }, + { + "ID": 15729, + "SourceStructureID": 67626, + "TargetStructureID": 593, + "Label": "67626-593 via Conventional from 67627 -> 28446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67627, + "TargetID": 28446, + "Directional": true + } + ] + }, + { + "ID": 15730, + "SourceStructureID": 67644, + "TargetStructureID": 67595, + "Label": "67644-67595 via Conventional from 67645 -> 67643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67645, + "TargetID": 67643, + "Directional": true + } + ] + }, + { + "ID": 15731, + "SourceStructureID": 67652, + "TargetStructureID": 67595, + "Label": "67652-67595 via Conventional from 67653 -> 67651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67653, + "TargetID": 67651, + "Directional": true + } + ] + }, + { + "ID": 15732, + "SourceStructureID": 67654, + "TargetStructureID": 67595, + "Label": "67654-67595 via Conventional from 67655 -> 67656", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67655, + "TargetID": 67656, + "Directional": true + } + ] + }, + { + "ID": 15733, + "SourceStructureID": 67669, + "TargetStructureID": 67663, + "Label": "67669-67663 via Conventional from 67670 -> 67668", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67670, + "TargetID": 67668, + "Directional": true + } + ] + }, + { + "ID": 15734, + "SourceStructureID": 67671, + "TargetStructureID": 5645, + "Label": "67671-5645 via Conventional from 78069 -> 78070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78069, + "TargetID": 78070, + "Directional": true + } + ] + }, + { + "ID": 15735, + "SourceStructureID": 67671, + "TargetStructureID": 5649, + "Label": "67671-5649 via Conventional from 76882 -> 76883, 77384 -> 54036", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76882, + "TargetID": 76883, + "Directional": true + }, + { + "SourceID": 77384, + "TargetID": 54036, + "Directional": true + } + ] + }, + { + "ID": 15736, + "SourceStructureID": 67671, + "TargetStructureID": 6142, + "Label": "67671-6142 via Conventional from 78281 -> 78282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78281, + "TargetID": 78282, + "Directional": true + } + ] + }, + { + "ID": 15737, + "SourceStructureID": 67671, + "TargetStructureID": 16087, + "Label": "67671-16087 via Conventional from 77702 -> 16097, 78037 -> 16100", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77702, + "TargetID": 16097, + "Directional": true + }, + { + "SourceID": 78037, + "TargetID": 16100, + "Directional": true + } + ] + }, + { + "ID": 15738, + "SourceStructureID": 67671, + "TargetStructureID": 67663, + "Label": "67671-67663 via Conventional from 67672 -> 67673", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67672, + "TargetID": 67673, + "Directional": true + } + ] + }, + { + "ID": 15739, + "SourceStructureID": 67671, + "TargetStructureID": 67671, + "Label": "67671-67671 via Conventional from 78209 -> 78210", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78209, + "TargetID": 78210, + "Directional": true + } + ] + }, + { + "ID": 15740, + "SourceStructureID": 67671, + "TargetStructureID": 77359, + "Label": "67671-77359 via Conventional from 77360 -> 77361", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77360, + "TargetID": 77361, + "Directional": true + } + ] + }, + { + "ID": 15741, + "SourceStructureID": 67671, + "TargetStructureID": 77688, + "Label": "67671-77688 via Conventional from 77689 -> 77690", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77689, + "TargetID": 77690, + "Directional": true + } + ] + }, + { + "ID": 15742, + "SourceStructureID": 67671, + "TargetStructureID": 78083, + "Label": "67671-78083 via Conventional from 78082 -> 78085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78082, + "TargetID": 78085, + "Directional": true + } + ] + }, + { + "ID": 15743, + "SourceStructureID": 67671, + "TargetStructureID": 78214, + "Label": "67671-78214 via Conventional from 78215 -> 78216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78215, + "TargetID": 78216, + "Directional": true + } + ] + }, + { + "ID": 15744, + "SourceStructureID": 67683, + "TargetStructureID": 593, + "Label": "67683-593 via Conventional from 69384 -> 7734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69384, + "TargetID": 7734, + "Directional": true + } + ] + }, + { + "ID": 15745, + "SourceStructureID": 67683, + "TargetStructureID": 31161, + "Label": "67683-31161 via Conventional from 67688 -> 31237", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67688, + "TargetID": 31237, + "Directional": true + } + ] + }, + { + "ID": 15746, + "SourceStructureID": 67683, + "TargetStructureID": 67686, + "Label": "67683-67686 via Conventional from 67685 -> 67687", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67685, + "TargetID": 67687, + "Directional": true + } + ] + }, + { + "ID": 15747, + "SourceStructureID": 67701, + "TargetStructureID": 67705, + "Label": "67701-67705 via Conventional from 67704 -> 67706, 75717 -> 75718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67704, + "TargetID": 67706, + "Directional": true + }, + { + "SourceID": 75717, + "TargetID": 75718, + "Directional": true + } + ] + }, + { + "ID": 15748, + "SourceStructureID": 67705, + "TargetStructureID": 593, + "Label": "67705-593 via Conventional from 67707 -> 67708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67707, + "TargetID": 67708, + "Directional": true + } + ] + }, + { + "ID": 15749, + "SourceStructureID": 67705, + "TargetStructureID": 5562, + "Label": "67705-5562 via Conventional from 81793 -> 63253, 81798 -> 77544", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81793, + "TargetID": 63253, + "Directional": true + }, + { + "SourceID": 81798, + "TargetID": 77544, + "Directional": true + } + ] + }, + { + "ID": 15750, + "SourceStructureID": 67711, + "TargetStructureID": 593, + "Label": "67711-593 via Conventional from 67712 -> 67713", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67712, + "TargetID": 67713, + "Directional": true + } + ] + }, + { + "ID": 15751, + "SourceStructureID": 67711, + "TargetStructureID": 67715, + "Label": "67711-67715 via Conventional from 67714 -> 67716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67714, + "TargetID": 67716, + "Directional": true + } + ] + }, + { + "ID": 15752, + "SourceStructureID": 67720, + "TargetStructureID": 67711, + "Label": "67720-67711 via Conventional from 67721 -> 67719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67721, + "TargetID": 67719, + "Directional": true + } + ] + }, + { + "ID": 15753, + "SourceStructureID": 67736, + "TargetStructureID": 8580, + "Label": "67736-8580 via Conventional from 67741 -> 67742", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67741, + "TargetID": 67742, + "Directional": true + } + ] + }, + { + "ID": 15754, + "SourceStructureID": 67736, + "TargetStructureID": 66958, + "Label": "67736-66958 via Conventional from 67748 -> 70033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67748, + "TargetID": 70033, + "Directional": true + } + ] + }, + { + "ID": 15755, + "SourceStructureID": 67736, + "TargetStructureID": 67752, + "Label": "67736-67752 via Conventional from 67751 -> 67753", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67751, + "TargetID": 67753, + "Directional": true + } + ] + }, + { + "ID": 15756, + "SourceStructureID": 67736, + "TargetStructureID": 68202, + "Label": "67736-68202 via Conventional from 67748 -> 68204", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67748, + "TargetID": 68204, + "Directional": true + } + ] + }, + { + "ID": 15757, + "SourceStructureID": 67756, + "TargetStructureID": 593, + "Label": "67756-593 via Conventional from 67964 -> 7737", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67964, + "TargetID": 7737, + "Directional": true + } + ] + }, + { + "ID": 15758, + "SourceStructureID": 67756, + "TargetStructureID": 66958, + "Label": "67756-66958 via Conventional from 67757 -> 70024", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67757, + "TargetID": 70024, + "Directional": true + } + ] + }, + { + "ID": 15759, + "SourceStructureID": 67762, + "TargetStructureID": 66958, + "Label": "67762-66958 via Conventional from 67763 -> 70030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67763, + "TargetID": 70030, + "Directional": true + } + ] + }, + { + "ID": 15760, + "SourceStructureID": 67762, + "TargetStructureID": 67671, + "Label": "67762-67671 via Conventional from 67773 -> 78878", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67773, + "TargetID": 78878, + "Directional": true + } + ] + }, + { + "ID": 15761, + "SourceStructureID": 67762, + "TargetStructureID": 67765, + "Label": "67762-67765 via Conventional from 67764 -> 67766", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67764, + "TargetID": 67766, + "Directional": true + } + ] + }, + { + "ID": 15762, + "SourceStructureID": 67768, + "TargetStructureID": 67765, + "Label": "67768-67765 via Conventional from 67769 -> 67767", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67769, + "TargetID": 67767, + "Directional": true + } + ] + }, + { + "ID": 15763, + "SourceStructureID": 67784, + "TargetStructureID": 67789, + "Label": "67784-67789 via Conventional from 67790 -> 67791", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67790, + "TargetID": 67791, + "Directional": true + } + ] + }, + { + "ID": 15764, + "SourceStructureID": 67786, + "TargetStructureID": 67784, + "Label": "67786-67784 via Conventional from 67787 -> 67788", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67787, + "TargetID": 67788, + "Directional": true + } + ] + }, + { + "ID": 15765, + "SourceStructureID": 67806, + "TargetStructureID": 54078, + "Label": "67806-54078 via Conventional from 67807 -> 67808", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67807, + "TargetID": 67808, + "Directional": true + } + ] + }, + { + "ID": 15766, + "SourceStructureID": 67809, + "TargetStructureID": 593, + "Label": "67809-593 via Conventional from 67810 -> 7833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67810, + "TargetID": 7833, + "Directional": true + } + ] + }, + { + "ID": 15767, + "SourceStructureID": 67815, + "TargetStructureID": 593, + "Label": "67815-593 via Conventional from 67816 -> 7834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67816, + "TargetID": 7834, + "Directional": true + } + ] + }, + { + "ID": 15768, + "SourceStructureID": 67818, + "TargetStructureID": 593, + "Label": "67818-593 via Conventional from 67819 -> 67817", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67819, + "TargetID": 67817, + "Directional": true + } + ] + }, + { + "ID": 15769, + "SourceStructureID": 67818, + "TargetStructureID": 16026, + "Label": "67818-16026 via Conventional from 67909 -> 67910", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67909, + "TargetID": 67910, + "Directional": true + } + ] + }, + { + "ID": 15770, + "SourceStructureID": 67823, + "TargetStructureID": 593, + "Label": "67823-593 via Conventional from 67824 -> 28409", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67824, + "TargetID": 28409, + "Directional": true + } + ] + }, + { + "ID": 15771, + "SourceStructureID": 67827, + "TargetStructureID": 593, + "Label": "67827-593 via Conventional from 67828 -> 28410", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67828, + "TargetID": 28410, + "Directional": true + } + ] + }, + { + "ID": 15772, + "SourceStructureID": 67829, + "TargetStructureID": 593, + "Label": "67829-593 via Conventional from 67830 -> 62881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67830, + "TargetID": 62881, + "Directional": true + } + ] + }, + { + "ID": 15773, + "SourceStructureID": 67829, + "TargetStructureID": 67812, + "Label": "67829-67812 via Conventional from 67831 -> 67832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67831, + "TargetID": 67832, + "Directional": true + } + ] + }, + { + "ID": 15774, + "SourceStructureID": 67829, + "TargetStructureID": 82201, + "Label": "67829-82201 via Conventional from 82200 -> 82202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82200, + "TargetID": 82202, + "Directional": true + } + ] + }, + { + "ID": 15775, + "SourceStructureID": 67833, + "TargetStructureID": 593, + "Label": "67833-593 via Conventional from 67834 -> 28412", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67834, + "TargetID": 28412, + "Directional": true + } + ] + }, + { + "ID": 15776, + "SourceStructureID": 67833, + "TargetStructureID": 68009, + "Label": "67833-68009 via Conventional from 67838 -> 68012", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67838, + "TargetID": 68012, + "Directional": true + } + ] + }, + { + "ID": 15777, + "SourceStructureID": 67836, + "TargetStructureID": 67833, + "Label": "67836-67833 via Conventional from 67837 -> 67835", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67837, + "TargetID": 67835, + "Directional": true + } + ] + }, + { + "ID": 15778, + "SourceStructureID": 67846, + "TargetStructureID": 593, + "Label": "67846-593 via Conventional from 67847 -> 67845", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67847, + "TargetID": 67845, + "Directional": true + } + ] + }, + { + "ID": 15779, + "SourceStructureID": 67851, + "TargetStructureID": 8580, + "Label": "67851-8580 via Conventional from 67855 -> 59656", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67855, + "TargetID": 59656, + "Directional": true + } + ] + }, + { + "ID": 15780, + "SourceStructureID": 67851, + "TargetStructureID": 54078, + "Label": "67851-54078 via Conventional from 67852 -> 67850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67852, + "TargetID": 67850, + "Directional": true + } + ] + }, + { + "ID": 15781, + "SourceStructureID": 67854, + "TargetStructureID": 593, + "Label": "67854-593 via Conventional from 67856 -> 52489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67856, + "TargetID": 52489, + "Directional": true + } + ] + }, + { + "ID": 15782, + "SourceStructureID": 67868, + "TargetStructureID": 593, + "Label": "67868-593 via Conventional from 67869 -> 67870", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67869, + "TargetID": 67870, + "Directional": true + } + ] + }, + { + "ID": 15783, + "SourceStructureID": 67871, + "TargetStructureID": 593, + "Label": "67871-593 via Conventional from 67882 -> 7837", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67882, + "TargetID": 7837, + "Directional": true + } + ] + }, + { + "ID": 15784, + "SourceStructureID": 67883, + "TargetStructureID": 593, + "Label": "67883-593 via Conventional from 67884 -> 67885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67884, + "TargetID": 67885, + "Directional": true + } + ] + }, + { + "ID": 15785, + "SourceStructureID": 67886, + "TargetStructureID": 593, + "Label": "67886-593 via Conventional from 67889 -> 7839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67889, + "TargetID": 7839, + "Directional": true + } + ] + }, + { + "ID": 15786, + "SourceStructureID": 67890, + "TargetStructureID": 593, + "Label": "67890-593 via Conventional from 67891 -> 7841", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67891, + "TargetID": 7841, + "Directional": true + } + ] + }, + { + "ID": 15787, + "SourceStructureID": 67894, + "TargetStructureID": 593, + "Label": "67894-593 via Conventional from 67895 -> 67896", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67895, + "TargetID": 67896, + "Directional": true + } + ] + }, + { + "ID": 15788, + "SourceStructureID": 67894, + "TargetStructureID": 5649, + "Label": "67894-5649 via Conventional from 82236 -> 68110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82236, + "TargetID": 68110, + "Directional": true + } + ] + }, + { + "ID": 15789, + "SourceStructureID": 67915, + "TargetStructureID": 593, + "Label": "67915-593 via Conventional from 67928 -> 67929", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67928, + "TargetID": 67929, + "Directional": true + } + ] + }, + { + "ID": 15790, + "SourceStructureID": 67915, + "TargetStructureID": 67932, + "Label": "67915-67932 via Conventional from 67930 -> 67935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67930, + "TargetID": 67935, + "Directional": true + } + ] + }, + { + "ID": 15791, + "SourceStructureID": 67915, + "TargetStructureID": 82241, + "Label": "67915-82241 via Conventional from 82240 -> 82242", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82240, + "TargetID": 82242, + "Directional": true + } + ] + }, + { + "ID": 15792, + "SourceStructureID": 67918, + "TargetStructureID": 20136, + "Label": "67918-20136 via Conventional from 67949 -> 29143", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67949, + "TargetID": 29143, + "Directional": true + } + ] + }, + { + "ID": 15793, + "SourceStructureID": 67933, + "TargetStructureID": 67937, + "Label": "67933-67937 via Conventional from 67936 -> 67938", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67936, + "TargetID": 67938, + "Directional": true + } + ] + }, + { + "ID": 15794, + "SourceStructureID": 67947, + "TargetStructureID": 593, + "Label": "67947-593 via Conventional from 68086 -> 53821", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68086, + "TargetID": 53821, + "Directional": true + } + ] + }, + { + "ID": 15795, + "SourceStructureID": 67947, + "TargetStructureID": 16026, + "Label": "67947-16026 via Conventional from 68088 -> 25670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68088, + "TargetID": 25670, + "Directional": true + } + ] + }, + { + "ID": 15796, + "SourceStructureID": 67952, + "TargetStructureID": 593, + "Label": "67952-593 via Conventional from 67954 -> 7739", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67954, + "TargetID": 7739, + "Directional": true + } + ] + }, + { + "ID": 15797, + "SourceStructureID": 67970, + "TargetStructureID": 593, + "Label": "67970-593 via Conventional from 67971 -> 67972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67971, + "TargetID": 67972, + "Directional": true + } + ] + }, + { + "ID": 15798, + "SourceStructureID": 67973, + "TargetStructureID": 7054, + "Label": "67973-7054 via Conventional from 159608 -> 10894, 159623 -> 159453", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159608, + "TargetID": 10894, + "Directional": true + }, + { + "SourceID": 159623, + "TargetID": 159453, + "Directional": true + } + ] + }, + { + "ID": 15799, + "SourceStructureID": 67978, + "TargetStructureID": 593, + "Label": "67978-593 via Conventional from 67979 -> 67980", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67979, + "TargetID": 67980, + "Directional": true + } + ] + }, + { + "ID": 15800, + "SourceStructureID": 67983, + "TargetStructureID": 593, + "Label": "67983-593 via Conventional from 67984 -> 67985", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67984, + "TargetID": 67985, + "Directional": true + } + ] + }, + { + "ID": 15801, + "SourceStructureID": 67983, + "TargetStructureID": 67981, + "Label": "67983-67981 via Conventional from 67988 -> 67989", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67988, + "TargetID": 67989, + "Directional": true + } + ] + }, + { + "ID": 15802, + "SourceStructureID": 67996, + "TargetStructureID": 67999, + "Label": "67996-67999 via Conventional from 67998 -> 68000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 67998, + "TargetID": 68000, + "Directional": true + } + ] + }, + { + "ID": 15803, + "SourceStructureID": 67999, + "TargetStructureID": 87972, + "Label": "67999-87972 via Conventional from 68001 -> 88010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68001, + "TargetID": 88010, + "Directional": true + } + ] + }, + { + "ID": 15804, + "SourceStructureID": 68003, + "TargetStructureID": 593, + "Label": "68003-593 via Conventional from 68004 -> 52486", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68004, + "TargetID": 52486, + "Directional": true + } + ] + }, + { + "ID": 15805, + "SourceStructureID": 68003, + "TargetStructureID": 67829, + "Label": "68003-67829 via Conventional from 68005 -> 82199", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68005, + "TargetID": 82199, + "Directional": true + } + ] + }, + { + "ID": 15806, + "SourceStructureID": 68009, + "TargetStructureID": 593, + "Label": "68009-593 via Conventional from 68013 -> 52485", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68013, + "TargetID": 52485, + "Directional": true + } + ] + }, + { + "ID": 15807, + "SourceStructureID": 68009, + "TargetStructureID": 69003, + "Label": "68009-69003 via Conventional from 69004 -> 69005", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69004, + "TargetID": 69005, + "Directional": true + } + ] + }, + { + "ID": 15808, + "SourceStructureID": 68020, + "TargetStructureID": 593, + "Label": "68020-593 via Conventional from 68021 -> 68022", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68021, + "TargetID": 68022, + "Directional": true + } + ] + }, + { + "ID": 15809, + "SourceStructureID": 68023, + "TargetStructureID": 593, + "Label": "68023-593 via Conventional from 68024 -> 68025", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68024, + "TargetID": 68025, + "Directional": true + } + ] + }, + { + "ID": 15810, + "SourceStructureID": 68023, + "TargetStructureID": 68031, + "Label": "68023-68031 via Conventional from 68034 -> 68035", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68034, + "TargetID": 68035, + "Directional": true + } + ] + }, + { + "ID": 15811, + "SourceStructureID": 68031, + "TargetStructureID": 68037, + "Label": "68031-68037 via Conventional from 68036 -> 68038", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68036, + "TargetID": 68038, + "Directional": true + } + ] + }, + { + "ID": 15812, + "SourceStructureID": 68042, + "TargetStructureID": 6156, + "Label": "68042-6156 via Conventional from 68052 -> 68053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68052, + "TargetID": 68053, + "Directional": true + } + ] + }, + { + "ID": 15813, + "SourceStructureID": 68042, + "TargetStructureID": 10897, + "Label": "68042-10897 via Conventional from 68044 -> 68045, 68046 -> 68047", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68044, + "TargetID": 68045, + "Directional": true + }, + { + "SourceID": 68046, + "TargetID": 68047, + "Directional": true + } + ] + }, + { + "ID": 15814, + "SourceStructureID": 68056, + "TargetStructureID": 593, + "Label": "68056-593 via Conventional from 68057 -> 68058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68057, + "TargetID": 68058, + "Directional": true + } + ] + }, + { + "ID": 15815, + "SourceStructureID": 68068, + "TargetStructureID": 593, + "Label": "68068-593 via Conventional from 68069 -> 68070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68069, + "TargetID": 68070, + "Directional": true + } + ] + }, + { + "ID": 15816, + "SourceStructureID": 68072, + "TargetStructureID": 593, + "Label": "68072-593 via Conventional from 68076 -> 52480", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68076, + "TargetID": 52480, + "Directional": true + } + ] + }, + { + "ID": 15817, + "SourceStructureID": 68093, + "TargetStructureID": 5284, + "Label": "68093-5284 via Conventional from 68129 -> 68131", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68129, + "TargetID": 68131, + "Directional": true + } + ] + }, + { + "ID": 15818, + "SourceStructureID": 68096, + "TargetStructureID": 68093, + "Label": "68096-68093 via Conventional from 68097 -> 68095", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68097, + "TargetID": 68095, + "Directional": true + } + ] + }, + { + "ID": 15819, + "SourceStructureID": 68144, + "TargetStructureID": 593, + "Label": "68144-593 via Conventional from 68145 -> 68146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68145, + "TargetID": 68146, + "Directional": true + } + ] + }, + { + "ID": 15820, + "SourceStructureID": 68144, + "TargetStructureID": 68148, + "Label": "68144-68148 via Conventional from 68147 -> 68149", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68147, + "TargetID": 68149, + "Directional": true + } + ] + }, + { + "ID": 15821, + "SourceStructureID": 68161, + "TargetStructureID": 68153, + "Label": "68161-68153 via Conventional from 68165 -> 68166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68165, + "TargetID": 68166, + "Directional": true + } + ] + }, + { + "ID": 15822, + "SourceStructureID": 68183, + "TargetStructureID": 68153, + "Label": "68183-68153 via Conventional from 68184 -> 68182", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68184, + "TargetID": 68182, + "Directional": true + } + ] + }, + { + "ID": 15823, + "SourceStructureID": 68188, + "TargetStructureID": 68192, + "Label": "68188-68192 via Conventional from 68191 -> 68193", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68191, + "TargetID": 68193, + "Directional": true + } + ] + }, + { + "ID": 15824, + "SourceStructureID": 68195, + "TargetStructureID": 68188, + "Label": "68195-68188 via Conventional from 68196 -> 68194", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68196, + "TargetID": 68194, + "Directional": true + } + ] + }, + { + "ID": 15825, + "SourceStructureID": 68202, + "TargetStructureID": 593, + "Label": "68202-593 via Conventional from 68203 -> 53819", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68203, + "TargetID": 53819, + "Directional": true + } + ] + }, + { + "ID": 15826, + "SourceStructureID": 68210, + "TargetStructureID": 593, + "Label": "68210-593 via Conventional from 68211 -> 68212, 68216 -> 7765", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68211, + "TargetID": 68212, + "Directional": true + }, + { + "SourceID": 68216, + "TargetID": 7765, + "Directional": true + } + ] + }, + { + "ID": 15827, + "SourceStructureID": 68214, + "TargetStructureID": 68210, + "Label": "68214-68210 via Adherens from 68215 -> 68213", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 68215, + "TargetID": 68213, + "Directional": true + } + ] + }, + { + "ID": 15828, + "SourceStructureID": 68232, + "TargetStructureID": 593, + "Label": "68232-593 via Conventional from 68233 -> 68234", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68233, + "TargetID": 68234, + "Directional": true + } + ] + }, + { + "ID": 15829, + "SourceStructureID": 68232, + "TargetStructureID": 6156, + "Label": "68232-6156 via Conventional from 82304 -> 28687", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82304, + "TargetID": 28687, + "Directional": true + } + ] + }, + { + "ID": 15830, + "SourceStructureID": 68232, + "TargetStructureID": 68087, + "Label": "68232-68087 via Conventional from 68235 -> 68229", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68235, + "TargetID": 68229, + "Directional": true + } + ] + }, + { + "ID": 15831, + "SourceStructureID": 68232, + "TargetStructureID": 68655, + "Label": "68232-68655 via Conventional from 68654 -> 68656", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68654, + "TargetID": 68656, + "Directional": true + } + ] + }, + { + "ID": 15832, + "SourceStructureID": 68232, + "TargetStructureID": 82302, + "Label": "68232-82302 via Conventional from 82301 -> 82303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82301, + "TargetID": 82303, + "Directional": true + } + ] + }, + { + "ID": 15833, + "SourceStructureID": 68238, + "TargetStructureID": 593, + "Label": "68238-593 via Conventional from 68240 -> 52468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68240, + "TargetID": 52468, + "Directional": true + } + ] + }, + { + "ID": 15834, + "SourceStructureID": 68239, + "TargetStructureID": 5117, + "Label": "68239-5117 via Conventional from 68247 -> 61806", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68247, + "TargetID": 61806, + "Directional": true + } + ] + }, + { + "ID": 15835, + "SourceStructureID": 68249, + "TargetStructureID": 593, + "Label": "68249-593 via Conventional from 68250 -> 68251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68250, + "TargetID": 68251, + "Directional": true + } + ] + }, + { + "ID": 15836, + "SourceStructureID": 68249, + "TargetStructureID": 8588, + "Label": "68249-8588 via Conventional from 82284 -> 82285", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82284, + "TargetID": 82285, + "Directional": true + } + ] + }, + { + "ID": 15837, + "SourceStructureID": 68249, + "TargetStructureID": 82281, + "Label": "68249-82281 via Conventional from 82280 -> 82282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82280, + "TargetID": 82282, + "Directional": true + } + ] + }, + { + "ID": 15838, + "SourceStructureID": 68261, + "TargetStructureID": 593, + "Label": "68261-593 via Conventional from 68262 -> 68260", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68262, + "TargetID": 68260, + "Directional": true + } + ] + }, + { + "ID": 15839, + "SourceStructureID": 68263, + "TargetStructureID": 593, + "Label": "68263-593 via Conventional from 68264 -> 68265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68264, + "TargetID": 68265, + "Directional": true + } + ] + }, + { + "ID": 15840, + "SourceStructureID": 68266, + "TargetStructureID": 593, + "Label": "68266-593 via Conventional from 68267 -> 68268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68267, + "TargetID": 68268, + "Directional": true + } + ] + }, + { + "ID": 15841, + "SourceStructureID": 68266, + "TargetStructureID": 6156, + "Label": "68266-6156 via Conventional from 68270 -> 68271", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68270, + "TargetID": 68271, + "Directional": true + } + ] + }, + { + "ID": 15842, + "SourceStructureID": 68273, + "TargetStructureID": 593, + "Label": "68273-593 via Conventional from 68274 -> 68276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68274, + "TargetID": 68276, + "Directional": true + } + ] + }, + { + "ID": 15843, + "SourceStructureID": 68282, + "TargetStructureID": 593, + "Label": "68282-593 via Conventional from 68283 -> 52450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68283, + "TargetID": 52450, + "Directional": true + } + ] + }, + { + "ID": 15844, + "SourceStructureID": 68282, + "TargetStructureID": 6997, + "Label": "68282-6997 via Conventional from 82365 -> 28711", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82365, + "TargetID": 28711, + "Directional": true + } + ] + }, + { + "ID": 15845, + "SourceStructureID": 68286, + "TargetStructureID": 593, + "Label": "68286-593 via Conventional from 68287 -> 68288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68287, + "TargetID": 68288, + "Directional": true + } + ] + }, + { + "ID": 15846, + "SourceStructureID": 68286, + "TargetStructureID": 6997, + "Label": "68286-6997 via Conventional from 80649 -> 28709, 80668 -> 95489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80649, + "TargetID": 28709, + "Directional": true + }, + { + "SourceID": 80668, + "TargetID": 95489, + "Directional": true + } + ] + }, + { + "ID": 15847, + "SourceStructureID": 68286, + "TargetStructureID": 80663, + "Label": "68286-80663 via Conventional from 80662 -> 80664", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80662, + "TargetID": 80664, + "Directional": true + } + ] + }, + { + "ID": 15848, + "SourceStructureID": 68289, + "TargetStructureID": 593, + "Label": "68289-593 via Conventional from 68290 -> 68291", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68290, + "TargetID": 68291, + "Directional": true + } + ] + }, + { + "ID": 15849, + "SourceStructureID": 68292, + "TargetStructureID": 593, + "Label": "68292-593 via Conventional from 68294 -> 68295, 87617 -> 87618", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68294, + "TargetID": 68295, + "Directional": true + }, + { + "SourceID": 87617, + "TargetID": 87618, + "Directional": true + } + ] + }, + { + "ID": 15850, + "SourceStructureID": 68296, + "TargetStructureID": 593, + "Label": "68296-593 via Conventional from 68298 -> 68299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68298, + "TargetID": 68299, + "Directional": true + } + ] + }, + { + "ID": 15851, + "SourceStructureID": 68302, + "TargetStructureID": 593, + "Label": "68302-593 via Conventional from 68303 -> 68304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68303, + "TargetID": 68304, + "Directional": true + } + ] + }, + { + "ID": 15852, + "SourceStructureID": 68302, + "TargetStructureID": 6997, + "Label": "68302-6997 via Conventional from 80633 -> 61173, 82939 -> 22114, 136280 -> 136279", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80633, + "TargetID": 61173, + "Directional": true + }, + { + "SourceID": 82939, + "TargetID": 22114, + "Directional": true + }, + { + "SourceID": 136280, + "TargetID": 136279, + "Directional": true + } + ] + }, + { + "ID": 15853, + "SourceStructureID": 68302, + "TargetStructureID": 68306, + "Label": "68302-68306 via Conventional from 68305 -> 68307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68305, + "TargetID": 68307, + "Directional": true + } + ] + }, + { + "ID": 15854, + "SourceStructureID": 68302, + "TargetStructureID": 70868, + "Label": "68302-70868 via Conventional from 82937 -> 70884", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82937, + "TargetID": 70884, + "Directional": true + } + ] + }, + { + "ID": 15855, + "SourceStructureID": 68302, + "TargetStructureID": 78303, + "Label": "68302-78303 via Conventional from 82928 -> 78304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82928, + "TargetID": 78304, + "Directional": true + } + ] + }, + { + "ID": 15856, + "SourceStructureID": 68318, + "TargetStructureID": 31024, + "Label": "68318-31024 via Conventional from 68319 -> 31033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68319, + "TargetID": 31033, + "Directional": true + } + ] + }, + { + "ID": 15857, + "SourceStructureID": 68337, + "TargetStructureID": 61793, + "Label": "68337-61793 via Conventional from 68338 -> 61796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68338, + "TargetID": 61796, + "Directional": true + } + ] + }, + { + "ID": 15858, + "SourceStructureID": 68341, + "TargetStructureID": 593, + "Label": "68341-593 via Conventional from 68342 -> 7750", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68342, + "TargetID": 7750, + "Directional": true + } + ] + }, + { + "ID": 15859, + "SourceStructureID": 68341, + "TargetStructureID": 67430, + "Label": "68341-67430 via Conventional from 82732 -> 70031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82732, + "TargetID": 70031, + "Directional": true + } + ] + }, + { + "ID": 15860, + "SourceStructureID": 68341, + "TargetStructureID": 79586, + "Label": "68341-79586 via Conventional from 80625 -> 79599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80625, + "TargetID": 79599, + "Directional": true + } + ] + }, + { + "ID": 15861, + "SourceStructureID": 68350, + "TargetStructureID": 593, + "Label": "68350-593 via Conventional from 68351 -> 68349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68351, + "TargetID": 68349, + "Directional": true + } + ] + }, + { + "ID": 15862, + "SourceStructureID": 68350, + "TargetStructureID": 61791, + "Label": "68350-61791 via Conventional from 80614 -> 68884", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80614, + "TargetID": 68884, + "Directional": true + } + ] + }, + { + "ID": 15863, + "SourceStructureID": 68350, + "TargetStructureID": 80616, + "Label": "68350-80616 via Conventional from 80615 -> 80617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80615, + "TargetID": 80617, + "Directional": true + } + ] + }, + { + "ID": 15864, + "SourceStructureID": 68356, + "TargetStructureID": 67291, + "Label": "68356-67291 via Conventional from 68357 -> 68355", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68357, + "TargetID": 68355, + "Directional": true + } + ] + }, + { + "ID": 15865, + "SourceStructureID": 68359, + "TargetStructureID": 67291, + "Label": "68359-67291 via Conventional from 68360 -> 68358", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68360, + "TargetID": 68358, + "Directional": true + } + ] + }, + { + "ID": 15866, + "SourceStructureID": 68366, + "TargetStructureID": 67291, + "Label": "68366-67291 via Conventional from 68367 -> 68365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68367, + "TargetID": 68365, + "Directional": true + } + ] + }, + { + "ID": 15867, + "SourceStructureID": 68380, + "TargetStructureID": 66407, + "Label": "68380-66407 via Conventional from 68381 -> 68379", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68381, + "TargetID": 68379, + "Directional": true + } + ] + }, + { + "ID": 15868, + "SourceStructureID": 68391, + "TargetStructureID": 593, + "Label": "68391-593 via Conventional from 68392 -> 15898", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68392, + "TargetID": 15898, + "Directional": true + } + ] + }, + { + "ID": 15869, + "SourceStructureID": 68393, + "TargetStructureID": 593, + "Label": "68393-593 via Conventional from 68394 -> 28398", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68394, + "TargetID": 28398, + "Directional": true + } + ] + }, + { + "ID": 15870, + "SourceStructureID": 68393, + "TargetStructureID": 61868, + "Label": "68393-61868 via Conventional from 80543 -> 82187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80543, + "TargetID": 82187, + "Directional": true + } + ] + }, + { + "ID": 15871, + "SourceStructureID": 68393, + "TargetStructureID": 80548, + "Label": "68393-80548 via Conventional from 80547 -> 80549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80547, + "TargetID": 80549, + "Directional": true + } + ] + }, + { + "ID": 15872, + "SourceStructureID": 68395, + "TargetStructureID": 593, + "Label": "68395-593 via Conventional from 68396 -> 28397", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68396, + "TargetID": 28397, + "Directional": true + } + ] + }, + { + "ID": 15873, + "SourceStructureID": 68430, + "TargetStructureID": 593, + "Label": "68430-593 via Conventional from 68431 -> 50437", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68431, + "TargetID": 50437, + "Directional": true + } + ] + }, + { + "ID": 15874, + "SourceStructureID": 68444, + "TargetStructureID": 593, + "Label": "68444-593 via Conventional from 68447 -> 28435", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68447, + "TargetID": 28435, + "Directional": true + } + ] + }, + { + "ID": 15875, + "SourceStructureID": 68444, + "TargetStructureID": 5283, + "Label": "68444-5283 via Conventional from 80426 -> 80427, 80474 -> 28090, 80480 -> 28093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80426, + "TargetID": 80427, + "Directional": true + }, + { + "SourceID": 80474, + "TargetID": 28090, + "Directional": true + }, + { + "SourceID": 80480, + "TargetID": 28093, + "Directional": true + } + ] + }, + { + "ID": 15876, + "SourceStructureID": 68444, + "TargetStructureID": 16026, + "Label": "68444-16026 via Conventional from 80432 -> 24098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80432, + "TargetID": 24098, + "Directional": true + } + ] + }, + { + "ID": 15877, + "SourceStructureID": 68444, + "TargetStructureID": 43431, + "Label": "68444-43431 via Conventional from 80457 -> 43443", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80457, + "TargetID": 43443, + "Directional": true + } + ] + }, + { + "ID": 15878, + "SourceStructureID": 68444, + "TargetStructureID": 66111, + "Label": "68444-66111 via Conventional from 68467 -> 68468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68467, + "TargetID": 68468, + "Directional": true + } + ] + }, + { + "ID": 15879, + "SourceStructureID": 68444, + "TargetStructureID": 68214, + "Label": "68444-68214 via Conventional from 68445 -> 68446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68445, + "TargetID": 68446, + "Directional": true + } + ] + }, + { + "ID": 15880, + "SourceStructureID": 68444, + "TargetStructureID": 80453, + "Label": "68444-80453 via Conventional from 80452 -> 80454", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80452, + "TargetID": 80454, + "Directional": true + } + ] + }, + { + "ID": 15881, + "SourceStructureID": 68444, + "TargetStructureID": 80459, + "Label": "68444-80459 via Conventional from 80458 -> 80460", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80458, + "TargetID": 80460, + "Directional": true + } + ] + }, + { + "ID": 15882, + "SourceStructureID": 68456, + "TargetStructureID": 68453, + "Label": "68456-68453 via Conventional from 68457 -> 68455", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68457, + "TargetID": 68455, + "Directional": true + } + ] + }, + { + "ID": 15883, + "SourceStructureID": 68463, + "TargetStructureID": 593, + "Label": "68463-593 via Conventional from 68464 -> 63030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68464, + "TargetID": 63030, + "Directional": true + } + ] + }, + { + "ID": 15884, + "SourceStructureID": 68480, + "TargetStructureID": 593, + "Label": "68480-593 via Conventional from 68481 -> 63027, 84099 -> 63031, 84113 -> 49571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68481, + "TargetID": 63027, + "Directional": true + }, + { + "SourceID": 84099, + "TargetID": 63031, + "Directional": true + }, + { + "SourceID": 84113, + "TargetID": 49571, + "Directional": true + } + ] + }, + { + "ID": 15885, + "SourceStructureID": 68480, + "TargetStructureID": 5562, + "Label": "68480-5562 via Conventional from 79634 -> 77571, 84035 -> 31294, 84046 -> 77148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79634, + "TargetID": 77571, + "Directional": true + }, + { + "SourceID": 84035, + "TargetID": 31294, + "Directional": true + }, + { + "SourceID": 84046, + "TargetID": 77148, + "Directional": true + } + ] + }, + { + "ID": 15886, + "SourceStructureID": 68480, + "TargetStructureID": 5916, + "Label": "68480-5916 via Conventional from 83373 -> 83374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83373, + "TargetID": 83374, + "Directional": true + } + ] + }, + { + "ID": 15887, + "SourceStructureID": 68480, + "TargetStructureID": 16026, + "Label": "68480-16026 via Conventional from 79616 -> 79617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79616, + "TargetID": 79617, + "Directional": true + } + ] + }, + { + "ID": 15888, + "SourceStructureID": 68480, + "TargetStructureID": 63199, + "Label": "68480-63199 via Conventional from 83275 -> 83276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83275, + "TargetID": 83276, + "Directional": true + } + ] + }, + { + "ID": 15889, + "SourceStructureID": 68480, + "TargetStructureID": 77143, + "Label": "68480-77143 via Conventional from 84042 -> 84043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84042, + "TargetID": 84043, + "Directional": true + } + ] + }, + { + "ID": 15890, + "SourceStructureID": 68486, + "TargetStructureID": 593, + "Label": "68486-593 via Conventional from 68487 -> 7732", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68487, + "TargetID": 7732, + "Directional": true + } + ] + }, + { + "ID": 15891, + "SourceStructureID": 68486, + "TargetStructureID": 31161, + "Label": "68486-31161 via Conventional from 79605 -> 31238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79605, + "TargetID": 31238, + "Directional": true + } + ] + }, + { + "ID": 15892, + "SourceStructureID": 68486, + "TargetStructureID": 69537, + "Label": "68486-69537 via Conventional from 79612 -> 79615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79612, + "TargetID": 79615, + "Directional": true + } + ] + }, + { + "ID": 15893, + "SourceStructureID": 68488, + "TargetStructureID": 593, + "Label": "68488-593 via Conventional from 68489 -> 7730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68489, + "TargetID": 7730, + "Directional": true + } + ] + }, + { + "ID": 15894, + "SourceStructureID": 68492, + "TargetStructureID": 593, + "Label": "68492-593 via Conventional from 68493 -> 7729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68493, + "TargetID": 7729, + "Directional": true + } + ] + }, + { + "ID": 15895, + "SourceStructureID": 68497, + "TargetStructureID": 593, + "Label": "68497-593 via Conventional from 68498 -> 7728", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68498, + "TargetID": 7728, + "Directional": true + } + ] + }, + { + "ID": 15896, + "SourceStructureID": 68497, + "TargetStructureID": 5107, + "Label": "68497-5107 via Conventional from 81578 -> 43683", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81578, + "TargetID": 43683, + "Directional": true + } + ] + }, + { + "ID": 15897, + "SourceStructureID": 68497, + "TargetStructureID": 5649, + "Label": "68497-5649 via Conventional from 81583 -> 81585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81583, + "TargetID": 81585, + "Directional": true + } + ] + }, + { + "ID": 15898, + "SourceStructureID": 68497, + "TargetStructureID": 79319, + "Label": "68497-79319 via Conventional from 79318 -> 79320", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79318, + "TargetID": 79320, + "Directional": true + } + ] + }, + { + "ID": 15899, + "SourceStructureID": 68497, + "TargetStructureID": 79361, + "Label": "68497-79361 via Conventional from 79360 -> 79362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79360, + "TargetID": 79362, + "Directional": true + } + ] + }, + { + "ID": 15900, + "SourceStructureID": 68497, + "TargetStructureID": 79373, + "Label": "68497-79373 via Conventional from 79357 -> 81600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79357, + "TargetID": 81600, + "Directional": true + } + ] + }, + { + "ID": 15901, + "SourceStructureID": 68497, + "TargetStructureID": 79450, + "Label": "68497-79450 via Conventional from 79445 -> 79451", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79445, + "TargetID": 79451, + "Directional": true + } + ] + }, + { + "ID": 15902, + "SourceStructureID": 68497, + "TargetStructureID": 79453, + "Label": "68497-79453 via Conventional from 79452 -> 79454", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79452, + "TargetID": 79454, + "Directional": true + } + ] + }, + { + "ID": 15903, + "SourceStructureID": 68497, + "TargetStructureID": 79481, + "Label": "68497-79481 via Conventional from 79480 -> 79482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79480, + "TargetID": 79482, + "Directional": true + } + ] + }, + { + "ID": 15904, + "SourceStructureID": 68497, + "TargetStructureID": 79484, + "Label": "68497-79484 via Conventional from 79483 -> 79486", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79483, + "TargetID": 79486, + "Directional": true + } + ] + }, + { + "ID": 15905, + "SourceStructureID": 68501, + "TargetStructureID": 593, + "Label": "68501-593 via Conventional from 68502 -> 7742", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68502, + "TargetID": 7742, + "Directional": true + } + ] + }, + { + "ID": 15906, + "SourceStructureID": 68504, + "TargetStructureID": 593, + "Label": "68504-593 via Conventional from 68505 -> 7743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68505, + "TargetID": 7743, + "Directional": true + } + ] + }, + { + "ID": 15907, + "SourceStructureID": 68504, + "TargetStructureID": 16026, + "Label": "68504-16026 via Conventional from 79250 -> 79251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79250, + "TargetID": 79251, + "Directional": true + } + ] + }, + { + "ID": 15908, + "SourceStructureID": 68516, + "TargetStructureID": 68524, + "Label": "68516-68524 via Conventional from 68523 -> 68525", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68523, + "TargetID": 68525, + "Directional": true + } + ] + }, + { + "ID": 15909, + "SourceStructureID": 68531, + "TargetStructureID": 68537, + "Label": "68531-68537 via Conventional from 68536 -> 68538", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68536, + "TargetID": 68538, + "Directional": true + } + ] + }, + { + "ID": 15910, + "SourceStructureID": 68539, + "TargetStructureID": 35894, + "Label": "68539-35894 via Cistern Pre from 73057 -> 35924", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 73057, + "TargetID": 35924, + "Directional": true + } + ] + }, + { + "ID": 15911, + "SourceStructureID": 68548, + "TargetStructureID": 5107, + "Label": "68548-5107 via Conventional from 73165 -> 43679", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73165, + "TargetID": 43679, + "Directional": true + } + ] + }, + { + "ID": 15912, + "SourceStructureID": 68548, + "TargetStructureID": 6115, + "Label": "68548-6115 via Adherens from 75996 -> 75997", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 75996, + "TargetID": 75997, + "Directional": true + } + ] + }, + { + "ID": 15913, + "SourceStructureID": 68548, + "TargetStructureID": 7594, + "Label": "68548-7594 via Conventional from 73161 -> 25094", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73161, + "TargetID": 25094, + "Directional": true + } + ] + }, + { + "ID": 15914, + "SourceStructureID": 68548, + "TargetStructureID": 30130, + "Label": "68548-30130 via Conventional from 73478 -> 30279", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73478, + "TargetID": 30279, + "Directional": true + } + ] + }, + { + "ID": 15915, + "SourceStructureID": 68548, + "TargetStructureID": 43712, + "Label": "68548-43712 via Conventional from 68582 -> 68583", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68582, + "TargetID": 68583, + "Directional": true + } + ] + }, + { + "ID": 15916, + "SourceStructureID": 68548, + "TargetStructureID": 61823, + "Label": "68548-61823 via Conventional from 73559 -> 64615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73559, + "TargetID": 64615, + "Directional": true + } + ] + }, + { + "ID": 15917, + "SourceStructureID": 68548, + "TargetStructureID": 67701, + "Label": "68548-67701 via Conventional from 73566 -> 67702, 73567 -> 67703", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73566, + "TargetID": 67702, + "Directional": true + }, + { + "SourceID": 73567, + "TargetID": 67703, + "Directional": true + } + ] + }, + { + "ID": 15918, + "SourceStructureID": 68548, + "TargetStructureID": 68539, + "Label": "68548-68539 via Conventional from 68587 -> 68588, 73544 -> 73545", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68587, + "TargetID": 68588, + "Directional": true + }, + { + "SourceID": 73544, + "TargetID": 73545, + "Directional": true + } + ] + }, + { + "ID": 15919, + "SourceStructureID": 68548, + "TargetStructureID": 68555, + "Label": "68548-68555 via Conventional from 68554 -> 68556", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68554, + "TargetID": 68556, + "Directional": true + } + ] + }, + { + "ID": 15920, + "SourceStructureID": 68548, + "TargetStructureID": 73500, + "Label": "68548-73500 via Conventional from 73501 -> 73502", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73501, + "TargetID": 73502, + "Directional": true + } + ] + }, + { + "ID": 15921, + "SourceStructureID": 68548, + "TargetStructureID": 73506, + "Label": "68548-73506 via Conventional from 73507 -> 73508", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73507, + "TargetID": 73508, + "Directional": true + } + ] + }, + { + "ID": 15922, + "SourceStructureID": 68548, + "TargetStructureID": 73521, + "Label": "68548-73521 via Conventional from 73522 -> 73523", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73522, + "TargetID": 73523, + "Directional": true + } + ] + }, + { + "ID": 15923, + "SourceStructureID": 68548, + "TargetStructureID": 73528, + "Label": "68548-73528 via Conventional from 73527 -> 73529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73527, + "TargetID": 73529, + "Directional": true + } + ] + }, + { + "ID": 15924, + "SourceStructureID": 68548, + "TargetStructureID": 73546, + "Label": "68548-73546 via Conventional from 73547 -> 73548", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73547, + "TargetID": 73548, + "Directional": true + } + ] + }, + { + "ID": 15925, + "SourceStructureID": 68548, + "TargetStructureID": 73560, + "Label": "68548-73560 via Conventional from 73561 -> 73562", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73561, + "TargetID": 73562, + "Directional": true + } + ] + }, + { + "ID": 15926, + "SourceStructureID": 68548, + "TargetStructureID": 74902, + "Label": "68548-74902 via Conventional from 75775 -> 75774", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75775, + "TargetID": 75774, + "Directional": true + } + ] + }, + { + "ID": 15927, + "SourceStructureID": 68548, + "TargetStructureID": 75354, + "Label": "68548-75354 via Conventional from 75353 -> 75355", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75353, + "TargetID": 75355, + "Directional": true + } + ] + }, + { + "ID": 15928, + "SourceStructureID": 68548, + "TargetStructureID": 75359, + "Label": "68548-75359 via Conventional from 75358 -> 75360", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75358, + "TargetID": 75360, + "Directional": true + } + ] + }, + { + "ID": 15929, + "SourceStructureID": 68548, + "TargetStructureID": 75700, + "Label": "68548-75700 via Conventional from 75699 -> 75705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75699, + "TargetID": 75705, + "Directional": true + } + ] + }, + { + "ID": 15930, + "SourceStructureID": 68548, + "TargetStructureID": 75713, + "Label": "68548-75713 via Conventional from 75712 -> 75714", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75712, + "TargetID": 75714, + "Directional": true + } + ] + }, + { + "ID": 15931, + "SourceStructureID": 68548, + "TargetStructureID": 75728, + "Label": "68548-75728 via Conventional from 75729 -> 75730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75729, + "TargetID": 75730, + "Directional": true + } + ] + }, + { + "ID": 15932, + "SourceStructureID": 68548, + "TargetStructureID": 75739, + "Label": "68548-75739 via Conventional from 75744 -> 75745", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75744, + "TargetID": 75745, + "Directional": true + } + ] + }, + { + "ID": 15933, + "SourceStructureID": 68548, + "TargetStructureID": 75752, + "Label": "68548-75752 via Conventional from 75751 -> 75753", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75751, + "TargetID": 75753, + "Directional": true + } + ] + }, + { + "ID": 15934, + "SourceStructureID": 68566, + "TargetStructureID": 68539, + "Label": "68566-68539 via Conventional from 68567 -> 68565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68567, + "TargetID": 68565, + "Directional": true + } + ] + }, + { + "ID": 15935, + "SourceStructureID": 68572, + "TargetStructureID": 68539, + "Label": "68572-68539 via Conventional from 68573 -> 68571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68573, + "TargetID": 68571, + "Directional": true + } + ] + }, + { + "ID": 15936, + "SourceStructureID": 68577, + "TargetStructureID": 68539, + "Label": "68577-68539 via Conventional from 68578 -> 68579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68578, + "TargetID": 68579, + "Directional": true + } + ] + }, + { + "ID": 15937, + "SourceStructureID": 68594, + "TargetStructureID": 5297, + "Label": "68594-5297 via Conventional from 68595 -> 68596", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68595, + "TargetID": 68596, + "Directional": true + } + ] + }, + { + "ID": 15938, + "SourceStructureID": 68618, + "TargetStructureID": 59696, + "Label": "68618-59696 via Conventional from 68619 -> 68617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68619, + "TargetID": 68617, + "Directional": true + } + ] + }, + { + "ID": 15939, + "SourceStructureID": 68623, + "TargetStructureID": 593, + "Label": "68623-593 via Conventional from 68624 -> 68622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68624, + "TargetID": 68622, + "Directional": true + } + ] + }, + { + "ID": 15940, + "SourceStructureID": 68632, + "TargetStructureID": 55403, + "Label": "68632-55403 via Conventional from 68638 -> 55464", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68638, + "TargetID": 55464, + "Directional": true + } + ] + }, + { + "ID": 15941, + "SourceStructureID": 68632, + "TargetStructureID": 67019, + "Label": "68632-67019 via Conventional from 68633 -> 68634", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68633, + "TargetID": 68634, + "Directional": true + } + ] + }, + { + "ID": 15942, + "SourceStructureID": 68635, + "TargetStructureID": 68632, + "Label": "68635-68632 via Conventional from 68636 -> 68637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68636, + "TargetID": 68637, + "Directional": true + } + ] + }, + { + "ID": 15943, + "SourceStructureID": 68643, + "TargetStructureID": 6156, + "Label": "68643-6156 via Conventional from 68645 -> 68646", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68645, + "TargetID": 68646, + "Directional": true + } + ] + }, + { + "ID": 15944, + "SourceStructureID": 68643, + "TargetStructureID": 61933, + "Label": "68643-61933 via Conventional from 68644 -> 68642", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68644, + "TargetID": 68642, + "Directional": true + } + ] + }, + { + "ID": 15945, + "SourceStructureID": 68652, + "TargetStructureID": 68077, + "Label": "68652-68077 via Conventional from 68653 -> 68651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68653, + "TargetID": 68651, + "Directional": true + } + ] + }, + { + "ID": 15946, + "SourceStructureID": 68663, + "TargetStructureID": 593, + "Label": "68663-593 via Conventional from 68664 -> 62893", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68664, + "TargetID": 62893, + "Directional": true + } + ] + }, + { + "ID": 15947, + "SourceStructureID": 68663, + "TargetStructureID": 5279, + "Label": "68663-5279 via Conventional from 97258 -> 6345", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97258, + "TargetID": 6345, + "Directional": true + } + ] + }, + { + "ID": 15948, + "SourceStructureID": 68667, + "TargetStructureID": 593, + "Label": "68667-593 via Conventional from 74918 -> 68666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74918, + "TargetID": 68666, + "Directional": true + } + ] + }, + { + "ID": 15949, + "SourceStructureID": 68669, + "TargetStructureID": 593, + "Label": "68669-593 via Conventional from 68675 -> 68676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68675, + "TargetID": 68676, + "Directional": true + } + ] + }, + { + "ID": 15950, + "SourceStructureID": 68669, + "TargetStructureID": 67460, + "Label": "68669-67460 via Conventional from 82721 -> 82722", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82721, + "TargetID": 82722, + "Directional": true + } + ] + }, + { + "ID": 15951, + "SourceStructureID": 68669, + "TargetStructureID": 68486, + "Label": "68669-68486 via Conventional from 68670 -> 79609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68670, + "TargetID": 79609, + "Directional": true + } + ] + }, + { + "ID": 15952, + "SourceStructureID": 68678, + "TargetStructureID": 593, + "Label": "68678-593 via Conventional from 68682 -> 68683", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68682, + "TargetID": 68683, + "Directional": true + } + ] + }, + { + "ID": 15953, + "SourceStructureID": 68678, + "TargetStructureID": 5649, + "Label": "68678-5649 via Conventional from 78883 -> 78884", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78883, + "TargetID": 78884, + "Directional": true + } + ] + }, + { + "ID": 15954, + "SourceStructureID": 68686, + "TargetStructureID": 68669, + "Label": "68686-68669 via Conventional from 68687 -> 68688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68687, + "TargetID": 68688, + "Directional": true + } + ] + }, + { + "ID": 15955, + "SourceStructureID": 68728, + "TargetStructureID": 63628, + "Label": "68728-63628 via Conventional from 68729 -> 63632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68729, + "TargetID": 63632, + "Directional": true + } + ] + }, + { + "ID": 15956, + "SourceStructureID": 68734, + "TargetStructureID": 63628, + "Label": "68734-63628 via Conventional from 68735 -> 63633", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68735, + "TargetID": 63633, + "Directional": true + } + ] + }, + { + "ID": 15957, + "SourceStructureID": 68737, + "TargetStructureID": 8575, + "Label": "68737-8575 via Conventional from 68738 -> 21629", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68738, + "TargetID": 21629, + "Directional": true + } + ] + }, + { + "ID": 15958, + "SourceStructureID": 68748, + "TargetStructureID": 8575, + "Label": "68748-8575 via Conventional from 68749 -> 21632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68749, + "TargetID": 21632, + "Directional": true + } + ] + }, + { + "ID": 15959, + "SourceStructureID": 68766, + "TargetStructureID": 8575, + "Label": "68766-8575 via Ribbon Synapse from 68768 -> 21636, 68774 -> 21637", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68768, + "TargetID": 21636, + "Directional": true + }, + { + "SourceID": 68774, + "TargetID": 21637, + "Directional": true + } + ] + }, + { + "ID": 15960, + "SourceStructureID": 68771, + "TargetStructureID": 8575, + "Label": "68771-8575 via Conventional from 68772 -> 21638", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68772, + "TargetID": 21638, + "Directional": true + } + ] + }, + { + "ID": 15961, + "SourceStructureID": 68781, + "TargetStructureID": 8575, + "Label": "68781-8575 via BC Conventional Synapse from 68783 -> 62289", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 68783, + "TargetID": 62289, + "Directional": true + } + ] + }, + { + "ID": 15962, + "SourceStructureID": 68785, + "TargetStructureID": 5528, + "Label": "68785-5528 via Conventional from 68786 -> 68791", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68786, + "TargetID": 68791, + "Directional": true + } + ] + }, + { + "ID": 15963, + "SourceStructureID": 68799, + "TargetStructureID": 8575, + "Label": "68799-8575 via Conventional from 68800 -> 61536", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68800, + "TargetID": 61536, + "Directional": true + } + ] + }, + { + "ID": 15964, + "SourceStructureID": 68801, + "TargetStructureID": 8575, + "Label": "68801-8575 via Conventional from 68802 -> 65516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68802, + "TargetID": 65516, + "Directional": true + } + ] + }, + { + "ID": 15965, + "SourceStructureID": 68822, + "TargetStructureID": 22232, + "Label": "68822-22232 via Conventional from 68823 -> 68821", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68823, + "TargetID": 68821, + "Directional": true + } + ] + }, + { + "ID": 15966, + "SourceStructureID": 68836, + "TargetStructureID": 5922, + "Label": "68836-5922 via Conventional from 68837 -> 68838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68837, + "TargetID": 68838, + "Directional": true + } + ] + }, + { + "ID": 15967, + "SourceStructureID": 68879, + "TargetStructureID": 7594, + "Label": "68879-7594 via Conventional from 68882 -> 25099", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68882, + "TargetID": 25099, + "Directional": true + } + ] + }, + { + "ID": 15968, + "SourceStructureID": 68888, + "TargetStructureID": 1724, + "Label": "68888-1724 via Conventional from 68890 -> 1796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68890, + "TargetID": 1796, + "Directional": true + } + ] + }, + { + "ID": 15969, + "SourceStructureID": 68888, + "TargetStructureID": 61933, + "Label": "68888-61933 via Conventional from 68889 -> 68887", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68889, + "TargetID": 68887, + "Directional": true + } + ] + }, + { + "ID": 15970, + "SourceStructureID": 68894, + "TargetStructureID": 6156, + "Label": "68894-6156 via Conventional from 68895 -> 68897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68895, + "TargetID": 68897, + "Directional": true + } + ] + }, + { + "ID": 15971, + "SourceStructureID": 68901, + "TargetStructureID": 67508, + "Label": "68901-67508 via Conventional from 68902 -> 68903", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68902, + "TargetID": 68903, + "Directional": true + } + ] + }, + { + "ID": 15972, + "SourceStructureID": 68901, + "TargetStructureID": 68906, + "Label": "68901-68906 via Conventional from 68905 -> 68907", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68905, + "TargetID": 68907, + "Directional": true + } + ] + }, + { + "ID": 15973, + "SourceStructureID": 68914, + "TargetStructureID": 8588, + "Label": "68914-8588 via Conventional from 68915 -> 68916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68915, + "TargetID": 68916, + "Directional": true + } + ] + }, + { + "ID": 15974, + "SourceStructureID": 68926, + "TargetStructureID": 67508, + "Label": "68926-67508 via Conventional from 68927 -> 68928", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68927, + "TargetID": 68928, + "Directional": true + } + ] + }, + { + "ID": 15975, + "SourceStructureID": 68929, + "TargetStructureID": 68926, + "Label": "68929-68926 via Conventional from 68930 -> 68942", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68930, + "TargetID": 68942, + "Directional": true + } + ] + }, + { + "ID": 15976, + "SourceStructureID": 68940, + "TargetStructureID": 8038, + "Label": "68940-8038 via Conventional from 68941 -> 68937, 68950 -> 68969", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68941, + "TargetID": 68937, + "Directional": true + }, + { + "SourceID": 68950, + "TargetID": 68969, + "Directional": true + } + ] + }, + { + "ID": 15977, + "SourceStructureID": 68944, + "TargetStructureID": 68929, + "Label": "68944-68929 via Conventional from 68945 -> 68943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68945, + "TargetID": 68943, + "Directional": true + } + ] + }, + { + "ID": 15978, + "SourceStructureID": 68944, + "TargetStructureID": 68948, + "Label": "68944-68948 via Conventional from 68947 -> 68949", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68947, + "TargetID": 68949, + "Directional": true + } + ] + }, + { + "ID": 15979, + "SourceStructureID": 68948, + "TargetStructureID": 68955, + "Label": "68948-68955 via Conventional from 68954 -> 68956", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68954, + "TargetID": 68956, + "Directional": true + } + ] + }, + { + "ID": 15980, + "SourceStructureID": 68955, + "TargetStructureID": 68944, + "Label": "68955-68944 via Conventional from 68958 -> 68960", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68958, + "TargetID": 68960, + "Directional": true + } + ] + }, + { + "ID": 15981, + "SourceStructureID": 68978, + "TargetStructureID": 67575, + "Label": "68978-67575 via Conventional from 68979 -> 68977", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68979, + "TargetID": 68977, + "Directional": true + } + ] + }, + { + "ID": 15982, + "SourceStructureID": 68988, + "TargetStructureID": 67992, + "Label": "68988-67992 via Conventional from 68996 -> 68997", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 68996, + "TargetID": 68997, + "Directional": true + } + ] + }, + { + "ID": 15983, + "SourceStructureID": 69010, + "TargetStructureID": 68009, + "Label": "69010-68009 via Conventional from 69011 -> 69009", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69011, + "TargetID": 69009, + "Directional": true + } + ] + }, + { + "ID": 15984, + "SourceStructureID": 69019, + "TargetStructureID": 68009, + "Label": "69019-68009 via Conventional from 69020 -> 69021", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69020, + "TargetID": 69021, + "Directional": true + } + ] + }, + { + "ID": 15985, + "SourceStructureID": 69030, + "TargetStructureID": 5503, + "Label": "69030-5503 via Conventional from 107423 -> 60729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107423, + "TargetID": 60729, + "Directional": true + } + ] + }, + { + "ID": 15986, + "SourceStructureID": 69030, + "TargetStructureID": 8576, + "Label": "69030-8576 via Conventional from 69031 -> 20082", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69031, + "TargetID": 20082, + "Directional": true + } + ] + }, + { + "ID": 15987, + "SourceStructureID": 69049, + "TargetStructureID": 68539, + "Label": "69049-68539 via Conventional from 69062 -> 69066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69062, + "TargetID": 69066, + "Directional": true + } + ] + }, + { + "ID": 15988, + "SourceStructureID": 69115, + "TargetStructureID": 68539, + "Label": "69115-68539 via Conventional from 69116 -> 69110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69116, + "TargetID": 69110, + "Directional": true + } + ] + }, + { + "ID": 15989, + "SourceStructureID": 69118, + "TargetStructureID": 8579, + "Label": "69118-8579 via Conventional from 69122 -> 19794", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69122, + "TargetID": 19794, + "Directional": true + } + ] + }, + { + "ID": 15990, + "SourceStructureID": 69118, + "TargetStructureID": 68539, + "Label": "69118-68539 via Conventional from 69119 -> 69067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69119, + "TargetID": 69067, + "Directional": true + } + ] + }, + { + "ID": 15991, + "SourceStructureID": 69123, + "TargetStructureID": 68539, + "Label": "69123-68539 via Conventional from 69124 -> 69068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69124, + "TargetID": 69068, + "Directional": true + } + ] + }, + { + "ID": 15992, + "SourceStructureID": 69125, + "TargetStructureID": 68539, + "Label": "69125-68539 via Conventional from 69126 -> 69069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69126, + "TargetID": 69069, + "Directional": true + } + ] + }, + { + "ID": 15993, + "SourceStructureID": 69181, + "TargetStructureID": 69162, + "Label": "69181-69162 via Conventional from 69183 -> 69177", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69183, + "TargetID": 69177, + "Directional": true + } + ] + }, + { + "ID": 15994, + "SourceStructureID": 69181, + "TargetStructureID": 69184, + "Label": "69181-69184 via Conventional from 69182 -> 69186", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69182, + "TargetID": 69186, + "Directional": true + } + ] + }, + { + "ID": 15995, + "SourceStructureID": 69184, + "TargetStructureID": 69162, + "Label": "69184-69162 via Conventional from 69185 -> 69178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69185, + "TargetID": 69178, + "Directional": true + } + ] + }, + { + "ID": 15996, + "SourceStructureID": 69187, + "TargetStructureID": 69162, + "Label": "69187-69162 via Conventional from 69188 -> 69180", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69188, + "TargetID": 69180, + "Directional": true + } + ] + }, + { + "ID": 15997, + "SourceStructureID": 69190, + "TargetStructureID": 69162, + "Label": "69190-69162 via Conventional from 69192 -> 69193", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69192, + "TargetID": 69193, + "Directional": true + } + ] + }, + { + "ID": 15998, + "SourceStructureID": 69190, + "TargetStructureID": 69187, + "Label": "69190-69187 via Conventional from 69191 -> 69189", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69191, + "TargetID": 69189, + "Directional": true + } + ] + }, + { + "ID": 15999, + "SourceStructureID": 69200, + "TargetStructureID": 69162, + "Label": "69200-69162 via Conventional from 69201 -> 69199", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69201, + "TargetID": 69199, + "Directional": true + } + ] + }, + { + "ID": 16000, + "SourceStructureID": 69200, + "TargetStructureID": 82723, + "Label": "69200-82723 via Conventional from 69203 -> 82724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69203, + "TargetID": 82724, + "Directional": true + } + ] + }, + { + "ID": 16001, + "SourceStructureID": 69205, + "TargetStructureID": 69162, + "Label": "69205-69162 via Conventional from 69206 -> 69207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69206, + "TargetID": 69207, + "Directional": true + } + ] + }, + { + "ID": 16002, + "SourceStructureID": 69235, + "TargetStructureID": 22974, + "Label": "69235-22974 via Conventional from 69236 -> 69230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69236, + "TargetID": 69230, + "Directional": true + } + ] + }, + { + "ID": 16003, + "SourceStructureID": 69243, + "TargetStructureID": 22974, + "Label": "69243-22974 via Conventional from 69244 -> 68981", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69244, + "TargetID": 68981, + "Directional": true + } + ] + }, + { + "ID": 16004, + "SourceStructureID": 69245, + "TargetStructureID": 5284, + "Label": "69245-5284 via Conventional from 98231 -> 98230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98231, + "TargetID": 98230, + "Directional": true + } + ] + }, + { + "ID": 16005, + "SourceStructureID": 69245, + "TargetStructureID": 22974, + "Label": "69245-22974 via Conventional from 69246 -> 68984", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69246, + "TargetID": 68984, + "Directional": true + } + ] + }, + { + "ID": 16006, + "SourceStructureID": 69325, + "TargetStructureID": 5117, + "Label": "69325-5117 via Conventional from 69326 -> 69324", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69326, + "TargetID": 69324, + "Directional": true + } + ] + }, + { + "ID": 16007, + "SourceStructureID": 69332, + "TargetStructureID": 5117, + "Label": "69332-5117 via Conventional from 69333 -> 69331", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69333, + "TargetID": 69331, + "Directional": true + } + ] + }, + { + "ID": 16008, + "SourceStructureID": 69355, + "TargetStructureID": 66407, + "Label": "69355-66407 via Conventional from 69356 -> 69354", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69356, + "TargetID": 69354, + "Directional": true + } + ] + }, + { + "ID": 16009, + "SourceStructureID": 69361, + "TargetStructureID": 66958, + "Label": "69361-66958 via Conventional from 69362 -> 69906", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69362, + "TargetID": 69906, + "Directional": true + } + ] + }, + { + "ID": 16010, + "SourceStructureID": 69363, + "TargetStructureID": 5561, + "Label": "69363-5561 via Conventional from 75576 -> 75577", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75576, + "TargetID": 75577, + "Directional": true + } + ] + }, + { + "ID": 16011, + "SourceStructureID": 69363, + "TargetStructureID": 8580, + "Label": "69363-8580 via Conventional from 69364 -> 59649", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69364, + "TargetID": 59649, + "Directional": true + } + ] + }, + { + "ID": 16012, + "SourceStructureID": 69367, + "TargetStructureID": 67663, + "Label": "69367-67663 via Conventional from 69369 -> 69370", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69369, + "TargetID": 69370, + "Directional": true + } + ] + }, + { + "ID": 16013, + "SourceStructureID": 69371, + "TargetStructureID": 22974, + "Label": "69371-22974 via Conventional from 69372 -> 69368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69372, + "TargetID": 69368, + "Directional": true + } + ] + }, + { + "ID": 16014, + "SourceStructureID": 69380, + "TargetStructureID": 22974, + "Label": "69380-22974 via Conventional from 69381 -> 69379", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69381, + "TargetID": 69379, + "Directional": true + } + ] + }, + { + "ID": 16015, + "SourceStructureID": 69382, + "TargetStructureID": 67663, + "Label": "69382-67663 via Conventional from 69383 -> 69323", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69383, + "TargetID": 69323, + "Directional": true + } + ] + }, + { + "ID": 16016, + "SourceStructureID": 69385, + "TargetStructureID": 6857, + "Label": "69385-6857 via Conventional from 69386 -> 6883, 71721 -> 6889", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69386, + "TargetID": 6883, + "Directional": true + }, + { + "SourceID": 71721, + "TargetID": 6889, + "Directional": true + } + ] + }, + { + "ID": 16017, + "SourceStructureID": 69388, + "TargetStructureID": 66407, + "Label": "69388-66407 via Conventional from 69389 -> 69387", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69389, + "TargetID": 69387, + "Directional": true + } + ] + }, + { + "ID": 16018, + "SourceStructureID": 69393, + "TargetStructureID": 66407, + "Label": "69393-66407 via Conventional from 69394 -> 69392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69394, + "TargetID": 69392, + "Directional": true + } + ] + }, + { + "ID": 16019, + "SourceStructureID": 69402, + "TargetStructureID": 66407, + "Label": "69402-66407 via Conventional from 69403 -> 69401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69403, + "TargetID": 69401, + "Directional": true + } + ] + }, + { + "ID": 16020, + "SourceStructureID": 69405, + "TargetStructureID": 66407, + "Label": "69405-66407 via Conventional from 69406 -> 69404", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69406, + "TargetID": 69404, + "Directional": true + } + ] + }, + { + "ID": 16021, + "SourceStructureID": 69434, + "TargetStructureID": 64939, + "Label": "69434-64939 via Conventional from 69435 -> 69433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69435, + "TargetID": 69433, + "Directional": true + } + ] + }, + { + "ID": 16022, + "SourceStructureID": 69441, + "TargetStructureID": 6050, + "Label": "69441-6050 via Conventional from 127389 -> 113907", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127389, + "TargetID": 113907, + "Directional": true + } + ] + }, + { + "ID": 16023, + "SourceStructureID": 69450, + "TargetStructureID": 64939, + "Label": "69450-64939 via Conventional from 69451 -> 69448", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69451, + "TargetID": 69448, + "Directional": true + } + ] + }, + { + "ID": 16024, + "SourceStructureID": 69456, + "TargetStructureID": 64939, + "Label": "69456-64939 via Conventional from 69457 -> 69422", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69457, + "TargetID": 69422, + "Directional": true + } + ] + }, + { + "ID": 16025, + "SourceStructureID": 69458, + "TargetStructureID": 64939, + "Label": "69458-64939 via Conventional from 69460 -> 69459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69460, + "TargetID": 69459, + "Directional": true + } + ] + }, + { + "ID": 16026, + "SourceStructureID": 69461, + "TargetStructureID": 6115, + "Label": "69461-6115 via Conventional from 73919 -> 73920", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73919, + "TargetID": 73920, + "Directional": true + } + ] + }, + { + "ID": 16027, + "SourceStructureID": 69464, + "TargetStructureID": 6115, + "Label": "69464-6115 via Conventional from 69466 -> 55846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69466, + "TargetID": 55846, + "Directional": true + } + ] + }, + { + "ID": 16028, + "SourceStructureID": 69467, + "TargetStructureID": 6115, + "Label": "69467-6115 via Conventional from 69468 -> 59599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69468, + "TargetID": 59599, + "Directional": true + } + ] + }, + { + "ID": 16029, + "SourceStructureID": 69469, + "TargetStructureID": 6115, + "Label": "69469-6115 via Conventional from 69470 -> 55844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69470, + "TargetID": 55844, + "Directional": true + } + ] + }, + { + "ID": 16030, + "SourceStructureID": 69472, + "TargetStructureID": 6115, + "Label": "69472-6115 via Conventional from 69473 -> 59608", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69473, + "TargetID": 59608, + "Directional": true + } + ] + }, + { + "ID": 16031, + "SourceStructureID": 69475, + "TargetStructureID": 16087, + "Label": "69475-16087 via Conventional from 69476 -> 69477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69476, + "TargetID": 69477, + "Directional": true + } + ] + }, + { + "ID": 16032, + "SourceStructureID": 69478, + "TargetStructureID": 6115, + "Label": "69478-6115 via Conventional from 69479 -> 32978", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69479, + "TargetID": 32978, + "Directional": true + } + ] + }, + { + "ID": 16033, + "SourceStructureID": 69480, + "TargetStructureID": 6115, + "Label": "69480-6115 via Conventional from 69482 -> 69481", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69482, + "TargetID": 69481, + "Directional": true + } + ] + }, + { + "ID": 16034, + "SourceStructureID": 69489, + "TargetStructureID": 66407, + "Label": "69489-66407 via Conventional from 69490 -> 69491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69490, + "TargetID": 69491, + "Directional": true + } + ] + }, + { + "ID": 16035, + "SourceStructureID": 69493, + "TargetStructureID": 6115, + "Label": "69493-6115 via Conventional from 69494 -> 16050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69494, + "TargetID": 16050, + "Directional": true + } + ] + }, + { + "ID": 16036, + "SourceStructureID": 69496, + "TargetStructureID": 6115, + "Label": "69496-6115 via Conventional from 69497 -> 69498", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69497, + "TargetID": 69498, + "Directional": true + } + ] + }, + { + "ID": 16037, + "SourceStructureID": 69500, + "TargetStructureID": 6115, + "Label": "69500-6115 via Conventional from 69502 -> 16054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69502, + "TargetID": 16054, + "Directional": true + } + ] + }, + { + "ID": 16038, + "SourceStructureID": 69503, + "TargetStructureID": 6115, + "Label": "69503-6115 via Conventional from 69504 -> 16053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69504, + "TargetID": 16053, + "Directional": true + } + ] + }, + { + "ID": 16039, + "SourceStructureID": 69508, + "TargetStructureID": 5118, + "Label": "69508-5118 via Conventional from 69509 -> 52188", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69509, + "TargetID": 52188, + "Directional": true + } + ] + }, + { + "ID": 16040, + "SourceStructureID": 69512, + "TargetStructureID": 6115, + "Label": "69512-6115 via Conventional from 69513 -> 55794, 69514 -> 69515, 75810 -> 75811", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69513, + "TargetID": 55794, + "Directional": true + }, + { + "SourceID": 69514, + "TargetID": 69515, + "Directional": true + }, + { + "SourceID": 75810, + "TargetID": 75811, + "Directional": true + } + ] + }, + { + "ID": 16041, + "SourceStructureID": 69516, + "TargetStructureID": 6115, + "Label": "69516-6115 via Conventional from 69517 -> 69518", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69517, + "TargetID": 69518, + "Directional": true + } + ] + }, + { + "ID": 16042, + "SourceStructureID": 69524, + "TargetStructureID": 69162, + "Label": "69524-69162 via Conventional from 69525 -> 69219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69525, + "TargetID": 69219, + "Directional": true + } + ] + }, + { + "ID": 16043, + "SourceStructureID": 69527, + "TargetStructureID": 69162, + "Label": "69527-69162 via Conventional from 69528 -> 69307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69528, + "TargetID": 69307, + "Directional": true + } + ] + }, + { + "ID": 16044, + "SourceStructureID": 69532, + "TargetStructureID": 8485, + "Label": "69532-8485 via Conventional from 69533 -> 11663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69533, + "TargetID": 11663, + "Directional": true + } + ] + }, + { + "ID": 16045, + "SourceStructureID": 69543, + "TargetStructureID": 64939, + "Label": "69543-64939 via Conventional from 69544 -> 69542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69544, + "TargetID": 69542, + "Directional": true + } + ] + }, + { + "ID": 16046, + "SourceStructureID": 69546, + "TargetStructureID": 69543, + "Label": "69546-69543 via Conventional from 69547 -> 69545", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69547, + "TargetID": 69545, + "Directional": true + } + ] + }, + { + "ID": 16047, + "SourceStructureID": 69554, + "TargetStructureID": 8040, + "Label": "69554-8040 via Conventional from 69555 -> 39141, 69561 -> 69562", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69555, + "TargetID": 39141, + "Directional": true + }, + { + "SourceID": 69561, + "TargetID": 69562, + "Directional": true + } + ] + }, + { + "ID": 16048, + "SourceStructureID": 69642, + "TargetStructureID": 64939, + "Label": "69642-64939 via Conventional from 69643 -> 69416", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69643, + "TargetID": 69416, + "Directional": true + } + ] + }, + { + "ID": 16049, + "SourceStructureID": 69646, + "TargetStructureID": 64939, + "Label": "69646-64939 via Conventional from 69647 -> 69648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69647, + "TargetID": 69648, + "Directional": true + } + ] + }, + { + "ID": 16050, + "SourceStructureID": 69666, + "TargetStructureID": 5729, + "Label": "69666-5729 via Conventional from 111649 -> 111650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111649, + "TargetID": 111650, + "Directional": true + } + ] + }, + { + "ID": 16051, + "SourceStructureID": 69670, + "TargetStructureID": 69670, + "Label": "69670-69670 via Conventional from 69671 -> 69673", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69671, + "TargetID": 69673, + "Directional": true + } + ] + }, + { + "ID": 16052, + "SourceStructureID": 69689, + "TargetStructureID": 61853, + "Label": "69689-61853 via Conventional from 69690 -> 69688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69690, + "TargetID": 69688, + "Directional": true + } + ] + }, + { + "ID": 16053, + "SourceStructureID": 69691, + "TargetStructureID": 64939, + "Label": "69691-64939 via Conventional from 69692 -> 69693", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69692, + "TargetID": 69693, + "Directional": true + } + ] + }, + { + "ID": 16054, + "SourceStructureID": 69703, + "TargetStructureID": 64939, + "Label": "69703-64939 via Conventional from 69704 -> 69705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69704, + "TargetID": 69705, + "Directional": true + } + ] + }, + { + "ID": 16055, + "SourceStructureID": 69742, + "TargetStructureID": 64939, + "Label": "69742-64939 via Conventional from 69743 -> 69744, 69745 -> 69746", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69743, + "TargetID": 69744, + "Directional": true + }, + { + "SourceID": 69745, + "TargetID": 69746, + "Directional": true + } + ] + }, + { + "ID": 16056, + "SourceStructureID": 69783, + "TargetStructureID": 61836, + "Label": "69783-61836 via Conventional from 69785 -> 69786", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69785, + "TargetID": 69786, + "Directional": true + } + ] + }, + { + "ID": 16057, + "SourceStructureID": 69790, + "TargetStructureID": 61836, + "Label": "69790-61836 via Conventional from 69791 -> 69789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69791, + "TargetID": 69789, + "Directional": true + } + ] + }, + { + "ID": 16058, + "SourceStructureID": 69868, + "TargetStructureID": 596, + "Label": "69868-596 via Conventional from 69869 -> 69867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69869, + "TargetID": 69867, + "Directional": true + } + ] + }, + { + "ID": 16059, + "SourceStructureID": 69882, + "TargetStructureID": 596, + "Label": "69882-596 via Conventional from 69883 -> 69886, 69884 -> 69881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69883, + "TargetID": 69886, + "Directional": true + }, + { + "SourceID": 69884, + "TargetID": 69881, + "Directional": true + } + ] + }, + { + "ID": 16060, + "SourceStructureID": 69888, + "TargetStructureID": 69890, + "Label": "69888-69890 via Conventional from 69889 -> 69891", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69889, + "TargetID": 69891, + "Directional": true + } + ] + }, + { + "ID": 16061, + "SourceStructureID": 69895, + "TargetStructureID": 166, + "Label": "69895-166 via Conventional from 69896 -> 69897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69896, + "TargetID": 69897, + "Directional": true + } + ] + }, + { + "ID": 16062, + "SourceStructureID": 69902, + "TargetStructureID": 166, + "Label": "69902-166 via Conventional from 69904 -> 69905", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69904, + "TargetID": 69905, + "Directional": true + } + ] + }, + { + "ID": 16063, + "SourceStructureID": 69910, + "TargetStructureID": 66958, + "Label": "69910-66958 via Conventional from 69911 -> 69319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69911, + "TargetID": 69319, + "Directional": true + } + ] + }, + { + "ID": 16064, + "SourceStructureID": 69917, + "TargetStructureID": 66958, + "Label": "69917-66958 via Conventional from 69918 -> 69916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69918, + "TargetID": 69916, + "Directional": true + } + ] + }, + { + "ID": 16065, + "SourceStructureID": 69920, + "TargetStructureID": 65267, + "Label": "69920-65267 via Conventional from 69921 -> 69919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69921, + "TargetID": 69919, + "Directional": true + } + ] + }, + { + "ID": 16066, + "SourceStructureID": 69926, + "TargetStructureID": 5562, + "Label": "69926-5562 via Conventional from 69928 -> 63861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69928, + "TargetID": 63861, + "Directional": true + } + ] + }, + { + "ID": 16067, + "SourceStructureID": 69930, + "TargetStructureID": 69926, + "Label": "69930-69926 via Conventional from 69931 -> 69929", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69931, + "TargetID": 69929, + "Directional": true + } + ] + }, + { + "ID": 16068, + "SourceStructureID": 69934, + "TargetStructureID": 66958, + "Label": "69934-66958 via Conventional from 69935 -> 69932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69935, + "TargetID": 69932, + "Directional": true + } + ] + }, + { + "ID": 16069, + "SourceStructureID": 69951, + "TargetStructureID": 65267, + "Label": "69951-65267 via Conventional from 69952 -> 69950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69952, + "TargetID": 69950, + "Directional": true + } + ] + }, + { + "ID": 16070, + "SourceStructureID": 69955, + "TargetStructureID": 69953, + "Label": "69955-69953 via Conventional from 69956 -> 69954", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69956, + "TargetID": 69954, + "Directional": true + } + ] + }, + { + "ID": 16071, + "SourceStructureID": 69971, + "TargetStructureID": 64939, + "Label": "69971-64939 via Conventional from 69977 -> 69978", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69977, + "TargetID": 69978, + "Directional": true + } + ] + }, + { + "ID": 16072, + "SourceStructureID": 69979, + "TargetStructureID": 64939, + "Label": "69979-64939 via Conventional from 69980 -> 69981", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69980, + "TargetID": 69981, + "Directional": true + } + ] + }, + { + "ID": 16073, + "SourceStructureID": 69986, + "TargetStructureID": 64939, + "Label": "69986-64939 via Conventional from 69987 -> 69988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 69987, + "TargetID": 69988, + "Directional": true + } + ] + }, + { + "ID": 16074, + "SourceStructureID": 69998, + "TargetStructureID": 64939, + "Label": "69998-64939 via Conventional from 70000 -> 70001", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70000, + "TargetID": 70001, + "Directional": true + } + ] + }, + { + "ID": 16075, + "SourceStructureID": 70014, + "TargetStructureID": 6997, + "Label": "70014-6997 via Conventional from 70015 -> 70016", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70015, + "TargetID": 70016, + "Directional": true + } + ] + }, + { + "ID": 16076, + "SourceStructureID": 70046, + "TargetStructureID": 68153, + "Label": "70046-68153 via Conventional from 70047 -> 70045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70047, + "TargetID": 70045, + "Directional": true + } + ] + }, + { + "ID": 16077, + "SourceStructureID": 70046, + "TargetStructureID": 70050, + "Label": "70046-70050 via Conventional from 70052 -> 70053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70052, + "TargetID": 70053, + "Directional": true + } + ] + }, + { + "ID": 16078, + "SourceStructureID": 70065, + "TargetStructureID": 66958, + "Label": "70065-66958 via Conventional from 70066 -> 70064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70066, + "TargetID": 70064, + "Directional": true + } + ] + }, + { + "ID": 16079, + "SourceStructureID": 70073, + "TargetStructureID": 6997, + "Label": "70073-6997 via Conventional from 70076 -> 83021", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70076, + "TargetID": 83021, + "Directional": true + } + ] + }, + { + "ID": 16080, + "SourceStructureID": 70073, + "TargetStructureID": 66958, + "Label": "70073-66958 via Conventional from 70074 -> 70075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70074, + "TargetID": 70075, + "Directional": true + } + ] + }, + { + "ID": 16081, + "SourceStructureID": 70079, + "TargetStructureID": 66958, + "Label": "70079-66958 via Conventional from 70080 -> 70078", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70080, + "TargetID": 70078, + "Directional": true + } + ] + }, + { + "ID": 16082, + "SourceStructureID": 70084, + "TargetStructureID": 5729, + "Label": "70084-5729 via Conventional from 111651 -> 111652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111651, + "TargetID": 111652, + "Directional": true + } + ] + }, + { + "ID": 16083, + "SourceStructureID": 70092, + "TargetStructureID": 66958, + "Label": "70092-66958 via Conventional from 70094 -> 70091", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70094, + "TargetID": 70091, + "Directional": true + } + ] + }, + { + "ID": 16084, + "SourceStructureID": 70095, + "TargetStructureID": 34978, + "Label": "70095-34978 via Ribbon Synapse from 70097 -> 34981", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70097, + "TargetID": 34981, + "Directional": true + } + ] + }, + { + "ID": 16085, + "SourceStructureID": 70111, + "TargetStructureID": 66958, + "Label": "70111-66958 via Conventional from 70112 -> 70110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70112, + "TargetID": 70110, + "Directional": true + } + ] + }, + { + "ID": 16086, + "SourceStructureID": 70116, + "TargetStructureID": 70114, + "Label": "70116-70114 via Conventional from 70117 -> 70115", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70117, + "TargetID": 70115, + "Directional": true + } + ] + }, + { + "ID": 16087, + "SourceStructureID": 70120, + "TargetStructureID": 61823, + "Label": "70120-61823 via Conventional from 70121 -> 70122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70121, + "TargetID": 70122, + "Directional": true + } + ] + }, + { + "ID": 16088, + "SourceStructureID": 70124, + "TargetStructureID": 61823, + "Label": "70124-61823 via Conventional from 70125 -> 70123", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70125, + "TargetID": 70123, + "Directional": true + } + ] + }, + { + "ID": 16089, + "SourceStructureID": 70126, + "TargetStructureID": 5623, + "Label": "70126-5623 via Conventional from 131984 -> 131983", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131984, + "TargetID": 131983, + "Directional": true + } + ] + }, + { + "ID": 16090, + "SourceStructureID": 70130, + "TargetStructureID": 66958, + "Label": "70130-66958 via Conventional from 70131 -> 70129", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70131, + "TargetID": 70129, + "Directional": true + } + ] + }, + { + "ID": 16091, + "SourceStructureID": 70134, + "TargetStructureID": 66958, + "Label": "70134-66958 via Conventional from 70135 -> 70133", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70135, + "TargetID": 70133, + "Directional": true + } + ] + }, + { + "ID": 16092, + "SourceStructureID": 70139, + "TargetStructureID": 5623, + "Label": "70139-5623 via Conventional from 70142 -> 70143", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70142, + "TargetID": 70143, + "Directional": true + } + ] + }, + { + "ID": 16093, + "SourceStructureID": 70139, + "TargetStructureID": 66958, + "Label": "70139-66958 via Conventional from 70140 -> 70141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70140, + "TargetID": 70141, + "Directional": true + } + ] + }, + { + "ID": 16094, + "SourceStructureID": 70144, + "TargetStructureID": 68153, + "Label": "70144-68153 via Conventional from 70145 -> 70146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70145, + "TargetID": 70146, + "Directional": true + } + ] + }, + { + "ID": 16095, + "SourceStructureID": 70157, + "TargetStructureID": 68153, + "Label": "70157-68153 via Conventional from 70158 -> 70160", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70158, + "TargetID": 70160, + "Directional": true + } + ] + }, + { + "ID": 16096, + "SourceStructureID": 70165, + "TargetStructureID": 61823, + "Label": "70165-61823 via Conventional from 70166 -> 70164", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70166, + "TargetID": 70164, + "Directional": true + } + ] + }, + { + "ID": 16097, + "SourceStructureID": 70176, + "TargetStructureID": 68153, + "Label": "70176-68153 via Conventional from 70177 -> 70181", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70177, + "TargetID": 70181, + "Directional": true + } + ] + }, + { + "ID": 16098, + "SourceStructureID": 70182, + "TargetStructureID": 68153, + "Label": "70182-68153 via Conventional from 70183 -> 70184", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70183, + "TargetID": 70184, + "Directional": true + } + ] + }, + { + "ID": 16099, + "SourceStructureID": 70201, + "TargetStructureID": 68153, + "Label": "70201-68153 via Conventional from 70202 -> 70200", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70202, + "TargetID": 70200, + "Directional": true + } + ] + }, + { + "ID": 16100, + "SourceStructureID": 70205, + "TargetStructureID": 69537, + "Label": "70205-69537 via Conventional from 70206 -> 69569", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70206, + "TargetID": 69569, + "Directional": true + } + ] + }, + { + "ID": 16101, + "SourceStructureID": 70221, + "TargetStructureID": 5297, + "Label": "70221-5297 via Conventional from 116706 -> 116707", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116706, + "TargetID": 116707, + "Directional": true + } + ] + }, + { + "ID": 16102, + "SourceStructureID": 70224, + "TargetStructureID": 70225, + "Label": "70224-70225 via Conventional from 70226 -> 70227", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70226, + "TargetID": 70227, + "Directional": true + } + ] + }, + { + "ID": 16103, + "SourceStructureID": 70272, + "TargetStructureID": 68539, + "Label": "70272-68539 via Conventional from 70273 -> 70274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70273, + "TargetID": 70274, + "Directional": true + } + ] + }, + { + "ID": 16104, + "SourceStructureID": 70302, + "TargetStructureID": 68539, + "Label": "70302-68539 via Conventional from 70303 -> 70307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70303, + "TargetID": 70307, + "Directional": true + } + ] + }, + { + "ID": 16105, + "SourceStructureID": 70308, + "TargetStructureID": 68539, + "Label": "70308-68539 via Conventional from 70406 -> 70408", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70406, + "TargetID": 70408, + "Directional": true + } + ] + }, + { + "ID": 16106, + "SourceStructureID": 70317, + "TargetStructureID": 61823, + "Label": "70317-61823 via Conventional from 70318 -> 70319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70318, + "TargetID": 70319, + "Directional": true + } + ] + }, + { + "ID": 16107, + "SourceStructureID": 70321, + "TargetStructureID": 606, + "Label": "70321-606 via Conventional from 70322 -> 51319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70322, + "TargetID": 51319, + "Directional": true + } + ] + }, + { + "ID": 16108, + "SourceStructureID": 70323, + "TargetStructureID": 6117, + "Label": "70323-6117 via Conventional from 70324 -> 70325", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70324, + "TargetID": 70325, + "Directional": true + } + ] + }, + { + "ID": 16109, + "SourceStructureID": 70326, + "TargetStructureID": 6117, + "Label": "70326-6117 via Conventional from 70327 -> 70328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70327, + "TargetID": 70328, + "Directional": true + } + ] + }, + { + "ID": 16110, + "SourceStructureID": 70329, + "TargetStructureID": 5292, + "Label": "70329-5292 via Conventional from 70330 -> 51581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70330, + "TargetID": 51581, + "Directional": true + } + ] + }, + { + "ID": 16111, + "SourceStructureID": 70331, + "TargetStructureID": 5284, + "Label": "70331-5284 via Conventional from 113413 -> 113412", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113413, + "TargetID": 113412, + "Directional": true + } + ] + }, + { + "ID": 16112, + "SourceStructureID": 70331, + "TargetStructureID": 5292, + "Label": "70331-5292 via Conventional from 70332 -> 51583", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70332, + "TargetID": 51583, + "Directional": true + } + ] + }, + { + "ID": 16113, + "SourceStructureID": 70334, + "TargetStructureID": 5292, + "Label": "70334-5292 via Conventional from 70337 -> 51580", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70337, + "TargetID": 51580, + "Directional": true + } + ] + }, + { + "ID": 16114, + "SourceStructureID": 70335, + "TargetStructureID": 5292, + "Label": "70335-5292 via Conventional from 70338 -> 51582", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70338, + "TargetID": 51582, + "Directional": true + } + ] + }, + { + "ID": 16115, + "SourceStructureID": 70340, + "TargetStructureID": 5284, + "Label": "70340-5284 via Conventional from 84658 -> 84660", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84658, + "TargetID": 84660, + "Directional": true + } + ] + }, + { + "ID": 16116, + "SourceStructureID": 70340, + "TargetStructureID": 6117, + "Label": "70340-6117 via Conventional from 70341 -> 70342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70341, + "TargetID": 70342, + "Directional": true + } + ] + }, + { + "ID": 16117, + "SourceStructureID": 70346, + "TargetStructureID": 6050, + "Label": "70346-6050 via Conventional from 70348 -> 70349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70348, + "TargetID": 70349, + "Directional": true + } + ] + }, + { + "ID": 16118, + "SourceStructureID": 70346, + "TargetStructureID": 15796, + "Label": "70346-15796 via Conventional from 70347 -> 36000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70347, + "TargetID": 36000, + "Directional": true + } + ] + }, + { + "ID": 16119, + "SourceStructureID": 70352, + "TargetStructureID": 6050, + "Label": "70352-6050 via Conventional from 70353 -> 19307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70353, + "TargetID": 19307, + "Directional": true + } + ] + }, + { + "ID": 16120, + "SourceStructureID": 70357, + "TargetStructureID": 6050, + "Label": "70357-6050 via Conventional from 70358 -> 70359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70358, + "TargetID": 70359, + "Directional": true + } + ] + }, + { + "ID": 16121, + "SourceStructureID": 70360, + "TargetStructureID": 70362, + "Label": "70360-70362 via Conventional from 70361 -> 70363", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70361, + "TargetID": 70363, + "Directional": true + } + ] + }, + { + "ID": 16122, + "SourceStructureID": 70360, + "TargetStructureID": 70365, + "Label": "70360-70365 via Conventional from 70364 -> 70366", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70364, + "TargetID": 70366, + "Directional": true + } + ] + }, + { + "ID": 16123, + "SourceStructureID": 70367, + "TargetStructureID": 70369, + "Label": "70367-70369 via Conventional from 70368 -> 70370", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70368, + "TargetID": 70370, + "Directional": true + } + ] + }, + { + "ID": 16124, + "SourceStructureID": 70371, + "TargetStructureID": 61823, + "Label": "70371-61823 via Conventional from 70373 -> 70375", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70373, + "TargetID": 70375, + "Directional": true + } + ] + }, + { + "ID": 16125, + "SourceStructureID": 70372, + "TargetStructureID": 70374, + "Label": "70372-70374 via Conventional from 70376 -> 70377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70376, + "TargetID": 70377, + "Directional": true + } + ] + }, + { + "ID": 16126, + "SourceStructureID": 70381, + "TargetStructureID": 5284, + "Label": "70381-5284 via Conventional from 70382 -> 70383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70382, + "TargetID": 70383, + "Directional": true + } + ] + }, + { + "ID": 16127, + "SourceStructureID": 70384, + "TargetStructureID": 70374, + "Label": "70384-70374 via Conventional from 70386 -> 70385", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70386, + "TargetID": 70385, + "Directional": true + } + ] + }, + { + "ID": 16128, + "SourceStructureID": 70394, + "TargetStructureID": 8589, + "Label": "70394-8589 via Conventional from 70395 -> 70396", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70395, + "TargetID": 70396, + "Directional": true + } + ] + }, + { + "ID": 16129, + "SourceStructureID": 70403, + "TargetStructureID": 8589, + "Label": "70403-8589 via Ribbon Synapse from 70440 -> 70439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 70440, + "TargetID": 70439, + "Directional": true + } + ] + }, + { + "ID": 16130, + "SourceStructureID": 70415, + "TargetStructureID": 68539, + "Label": "70415-68539 via Conventional from 70416 -> 70414", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70416, + "TargetID": 70414, + "Directional": true + } + ] + }, + { + "ID": 16131, + "SourceStructureID": 70418, + "TargetStructureID": 58696, + "Label": "70418-58696 via Conventional from 70420 -> 86932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70420, + "TargetID": 86932, + "Directional": true + } + ] + }, + { + "ID": 16132, + "SourceStructureID": 70422, + "TargetStructureID": 68539, + "Label": "70422-68539 via Conventional from 70425 -> 76037", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70425, + "TargetID": 76037, + "Directional": true + } + ] + }, + { + "ID": 16133, + "SourceStructureID": 70427, + "TargetStructureID": 5439, + "Label": "70427-5439 via Conventional from 70428 -> 70429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70428, + "TargetID": 70429, + "Directional": true + } + ] + }, + { + "ID": 16134, + "SourceStructureID": 70432, + "TargetStructureID": 70427, + "Label": "70432-70427 via Conventional from 70434 -> 70431", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70434, + "TargetID": 70431, + "Directional": true + } + ] + }, + { + "ID": 16135, + "SourceStructureID": 70436, + "TargetStructureID": 5439, + "Label": "70436-5439 via Conventional from 70437 -> 66547", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70437, + "TargetID": 66547, + "Directional": true + } + ] + }, + { + "ID": 16136, + "SourceStructureID": 70449, + "TargetStructureID": 6117, + "Label": "70449-6117 via Conventional from 70450 -> 25098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70450, + "TargetID": 25098, + "Directional": true + } + ] + }, + { + "ID": 16137, + "SourceStructureID": 70449, + "TargetStructureID": 7594, + "Label": "70449-7594 via Conventional from 70451 -> 25097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70451, + "TargetID": 25097, + "Directional": true + } + ] + }, + { + "ID": 16138, + "SourceStructureID": 70454, + "TargetStructureID": 606, + "Label": "70454-606 via Conventional from 89559 -> 51538, 89560 -> 89561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89559, + "TargetID": 51538, + "Directional": true + }, + { + "SourceID": 89560, + "TargetID": 89561, + "Directional": true + } + ] + }, + { + "ID": 16139, + "SourceStructureID": 70454, + "TargetStructureID": 5279, + "Label": "70454-5279 via Conventional from 89564 -> 28313, 97334 -> 25813", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89564, + "TargetID": 28313, + "Directional": true + }, + { + "SourceID": 97334, + "TargetID": 25813, + "Directional": true + } + ] + }, + { + "ID": 16140, + "SourceStructureID": 70454, + "TargetStructureID": 5284, + "Label": "70454-5284 via Conventional from 113424 -> 113423", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113424, + "TargetID": 113423, + "Directional": true + } + ] + }, + { + "ID": 16141, + "SourceStructureID": 70454, + "TargetStructureID": 5292, + "Label": "70454-5292 via Conventional from 89566 -> 51548", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89566, + "TargetID": 51548, + "Directional": true + } + ] + }, + { + "ID": 16142, + "SourceStructureID": 70454, + "TargetStructureID": 6117, + "Label": "70454-6117 via Conventional from 70455 -> 51537", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70455, + "TargetID": 51537, + "Directional": true + } + ] + }, + { + "ID": 16143, + "SourceStructureID": 70454, + "TargetStructureID": 89554, + "Label": "70454-89554 via Conventional from 89553 -> 89558", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89553, + "TargetID": 89558, + "Directional": true + } + ] + }, + { + "ID": 16144, + "SourceStructureID": 70456, + "TargetStructureID": 5281, + "Label": "70456-5281 via Conventional from 86349 -> 86350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86349, + "TargetID": 86350, + "Directional": true + } + ] + }, + { + "ID": 16145, + "SourceStructureID": 70456, + "TargetStructureID": 6117, + "Label": "70456-6117 via Conventional from 70457 -> 10542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70457, + "TargetID": 10542, + "Directional": true + } + ] + }, + { + "ID": 16146, + "SourceStructureID": 70458, + "TargetStructureID": 606, + "Label": "70458-606 via Conventional from 83135 -> 10712", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83135, + "TargetID": 10712, + "Directional": true + } + ] + }, + { + "ID": 16147, + "SourceStructureID": 70458, + "TargetStructureID": 6117, + "Label": "70458-6117 via Conventional from 70459 -> 30886", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70459, + "TargetID": 30886, + "Directional": true + } + ] + }, + { + "ID": 16148, + "SourceStructureID": 70460, + "TargetStructureID": 6117, + "Label": "70460-6117 via Conventional from 70464 -> 70465", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70464, + "TargetID": 70465, + "Directional": true + } + ] + }, + { + "ID": 16149, + "SourceStructureID": 70466, + "TargetStructureID": 6117, + "Label": "70466-6117 via Conventional from 70468 -> 70467", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70468, + "TargetID": 70467, + "Directional": true + } + ] + }, + { + "ID": 16150, + "SourceStructureID": 70469, + "TargetStructureID": 606, + "Label": "70469-606 via Conventional from 70470 -> 10543", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70470, + "TargetID": 10543, + "Directional": true + } + ] + }, + { + "ID": 16151, + "SourceStructureID": 70471, + "TargetStructureID": 6117, + "Label": "70471-6117 via Conventional from 70472 -> 30935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70472, + "TargetID": 30935, + "Directional": true + } + ] + }, + { + "ID": 16152, + "SourceStructureID": 70476, + "TargetStructureID": 6117, + "Label": "70476-6117 via Conventional from 70479 -> 70480", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70479, + "TargetID": 70480, + "Directional": true + } + ] + }, + { + "ID": 16153, + "SourceStructureID": 70481, + "TargetStructureID": 6117, + "Label": "70481-6117 via Conventional from 70482 -> 70483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70482, + "TargetID": 70483, + "Directional": true + } + ] + }, + { + "ID": 16154, + "SourceStructureID": 70485, + "TargetStructureID": 606, + "Label": "70485-606 via Conventional from 70486 -> 10054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70486, + "TargetID": 10054, + "Directional": true + } + ] + }, + { + "ID": 16155, + "SourceStructureID": 70487, + "TargetStructureID": 6117, + "Label": "70487-6117 via Conventional from 70488 -> 70489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70488, + "TargetID": 70489, + "Directional": true + } + ] + }, + { + "ID": 16156, + "SourceStructureID": 70495, + "TargetStructureID": 606, + "Label": "70495-606 via Conventional from 70496 -> 48507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70496, + "TargetID": 48507, + "Directional": true + } + ] + }, + { + "ID": 16157, + "SourceStructureID": 70500, + "TargetStructureID": 5630, + "Label": "70500-5630 via Conventional from 129052 -> 129061", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129052, + "TargetID": 129061, + "Directional": true + } + ] + }, + { + "ID": 16158, + "SourceStructureID": 70514, + "TargetStructureID": 8589, + "Label": "70514-8589 via Conventional from 70516 -> 70517", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70516, + "TargetID": 70517, + "Directional": true + } + ] + }, + { + "ID": 16159, + "SourceStructureID": 70518, + "TargetStructureID": 419, + "Label": "70518-419 via Conventional from 132601 -> 132600, 133542 -> 133541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132601, + "TargetID": 132600, + "Directional": true + }, + { + "SourceID": 133542, + "TargetID": 133541, + "Directional": true + } + ] + }, + { + "ID": 16160, + "SourceStructureID": 70529, + "TargetStructureID": 68539, + "Label": "70529-68539 via Conventional from 70530 -> 70531", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70530, + "TargetID": 70531, + "Directional": true + } + ] + }, + { + "ID": 16161, + "SourceStructureID": 70533, + "TargetStructureID": 5439, + "Label": "70533-5439 via Conventional from 70534 -> 66550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70534, + "TargetID": 66550, + "Directional": true + } + ] + }, + { + "ID": 16162, + "SourceStructureID": 70535, + "TargetStructureID": 5439, + "Label": "70535-5439 via Conventional from 70537 -> 66585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70537, + "TargetID": 66585, + "Directional": true + } + ] + }, + { + "ID": 16163, + "SourceStructureID": 70540, + "TargetStructureID": 5439, + "Label": "70540-5439 via Conventional from 70541 -> 70542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70541, + "TargetID": 70542, + "Directional": true + } + ] + }, + { + "ID": 16164, + "SourceStructureID": 70544, + "TargetStructureID": 5439, + "Label": "70544-5439 via Conventional from 70546 -> 70543", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70546, + "TargetID": 70543, + "Directional": true + } + ] + }, + { + "ID": 16165, + "SourceStructureID": 70552, + "TargetStructureID": 5439, + "Label": "70552-5439 via Conventional from 70553 -> 70554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70553, + "TargetID": 70554, + "Directional": true + } + ] + }, + { + "ID": 16166, + "SourceStructureID": 70559, + "TargetStructureID": 5439, + "Label": "70559-5439 via Conventional from 70560 -> 66580", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70560, + "TargetID": 66580, + "Directional": true + } + ] + }, + { + "ID": 16167, + "SourceStructureID": 70566, + "TargetStructureID": 5439, + "Label": "70566-5439 via Conventional from 70567 -> 66566", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70567, + "TargetID": 66566, + "Directional": true + } + ] + }, + { + "ID": 16168, + "SourceStructureID": 70570, + "TargetStructureID": 5439, + "Label": "70570-5439 via Conventional from 70571 -> 66568", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70571, + "TargetID": 66568, + "Directional": true + } + ] + }, + { + "ID": 16169, + "SourceStructureID": 70572, + "TargetStructureID": 166, + "Label": "70572-166 via Conventional from 70573 -> 70575", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70573, + "TargetID": 70575, + "Directional": true + } + ] + }, + { + "ID": 16170, + "SourceStructureID": 70572, + "TargetStructureID": 29198, + "Label": "70572-29198 via Conventional from 70576 -> 29223", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70576, + "TargetID": 29223, + "Directional": true + } + ] + }, + { + "ID": 16171, + "SourceStructureID": 70581, + "TargetStructureID": 5439, + "Label": "70581-5439 via Conventional from 70582 -> 66571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70582, + "TargetID": 66571, + "Directional": true + } + ] + }, + { + "ID": 16172, + "SourceStructureID": 70581, + "TargetStructureID": 6857, + "Label": "70581-6857 via Conventional from 70583 -> 7491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70583, + "TargetID": 7491, + "Directional": true + } + ] + }, + { + "ID": 16173, + "SourceStructureID": 70588, + "TargetStructureID": 5439, + "Label": "70588-5439 via Conventional from 70590 -> 70591", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70590, + "TargetID": 70591, + "Directional": true + } + ] + }, + { + "ID": 16174, + "SourceStructureID": 70593, + "TargetStructureID": 318, + "Label": "70593-318 via Conventional from 70595 -> 70597", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70595, + "TargetID": 70597, + "Directional": true + } + ] + }, + { + "ID": 16175, + "SourceStructureID": 70593, + "TargetStructureID": 5439, + "Label": "70593-5439 via Conventional from 70607 -> 70608", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70607, + "TargetID": 70608, + "Directional": true + } + ] + }, + { + "ID": 16176, + "SourceStructureID": 70593, + "TargetStructureID": 70599, + "Label": "70593-70599 via Conventional from 70598 -> 70600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70598, + "TargetID": 70600, + "Directional": true + } + ] + }, + { + "ID": 16177, + "SourceStructureID": 70601, + "TargetStructureID": 69537, + "Label": "70601-69537 via Conventional from 70603 -> 69769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70603, + "TargetID": 69769, + "Directional": true + } + ] + }, + { + "ID": 16178, + "SourceStructureID": 70601, + "TargetStructureID": 70593, + "Label": "70601-70593 via Conventional from 70602 -> 70594", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70602, + "TargetID": 70594, + "Directional": true + } + ] + }, + { + "ID": 16179, + "SourceStructureID": 70605, + "TargetStructureID": 70593, + "Label": "70605-70593 via Conventional from 70606 -> 70604", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70606, + "TargetID": 70604, + "Directional": true + } + ] + }, + { + "ID": 16180, + "SourceStructureID": 70612, + "TargetStructureID": 483, + "Label": "70612-483 via Conventional from 70614 -> 6748", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70614, + "TargetID": 6748, + "Directional": true + } + ] + }, + { + "ID": 16181, + "SourceStructureID": 70618, + "TargetStructureID": 70623, + "Label": "70618-70623 via Conventional from 70620 -> 70625", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70620, + "TargetID": 70625, + "Directional": true + } + ] + }, + { + "ID": 16182, + "SourceStructureID": 70621, + "TargetStructureID": 70623, + "Label": "70621-70623 via Conventional from 70622 -> 70624", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70622, + "TargetID": 70624, + "Directional": true + } + ] + }, + { + "ID": 16183, + "SourceStructureID": 70628, + "TargetStructureID": 5439, + "Label": "70628-5439 via Conventional from 70629 -> 70627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70629, + "TargetID": 70627, + "Directional": true + } + ] + }, + { + "ID": 16184, + "SourceStructureID": 70632, + "TargetStructureID": 5439, + "Label": "70632-5439 via Conventional from 70634 -> 70635", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70634, + "TargetID": 70635, + "Directional": true + } + ] + }, + { + "ID": 16185, + "SourceStructureID": 70640, + "TargetStructureID": 5439, + "Label": "70640-5439 via Conventional from 70641 -> 70642", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70641, + "TargetID": 70642, + "Directional": true + } + ] + }, + { + "ID": 16186, + "SourceStructureID": 70646, + "TargetStructureID": 44346, + "Label": "70646-44346 via Conventional from 70647 -> 44349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70647, + "TargetID": 44349, + "Directional": true + } + ] + }, + { + "ID": 16187, + "SourceStructureID": 70648, + "TargetStructureID": 5439, + "Label": "70648-5439 via Conventional from 70649 -> 66599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70649, + "TargetID": 66599, + "Directional": true + } + ] + }, + { + "ID": 16188, + "SourceStructureID": 70651, + "TargetStructureID": 5439, + "Label": "70651-5439 via Conventional from 70652 -> 66598", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70652, + "TargetID": 66598, + "Directional": true + } + ] + }, + { + "ID": 16189, + "SourceStructureID": 70653, + "TargetStructureID": 5439, + "Label": "70653-5439 via Conventional from 70654 -> 66605", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70654, + "TargetID": 66605, + "Directional": true + } + ] + }, + { + "ID": 16190, + "SourceStructureID": 70655, + "TargetStructureID": 5439, + "Label": "70655-5439 via Conventional from 70656 -> 66602", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70656, + "TargetID": 66602, + "Directional": true + } + ] + }, + { + "ID": 16191, + "SourceStructureID": 70659, + "TargetStructureID": 70655, + "Label": "70659-70655 via Conventional from 70660 -> 70657", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70660, + "TargetID": 70657, + "Directional": true + } + ] + }, + { + "ID": 16192, + "SourceStructureID": 70663, + "TargetStructureID": 5439, + "Label": "70663-5439 via Conventional from 70666 -> 66601", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70666, + "TargetID": 66601, + "Directional": true + } + ] + }, + { + "ID": 16193, + "SourceStructureID": 70667, + "TargetStructureID": 5439, + "Label": "70667-5439 via Conventional from 70668 -> 66597", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70668, + "TargetID": 66597, + "Directional": true + } + ] + }, + { + "ID": 16194, + "SourceStructureID": 70674, + "TargetStructureID": 5439, + "Label": "70674-5439 via Conventional from 70675 -> 70676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70675, + "TargetID": 70676, + "Directional": true + } + ] + }, + { + "ID": 16195, + "SourceStructureID": 70677, + "TargetStructureID": 5439, + "Label": "70677-5439 via Conventional from 70678 -> 66615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70678, + "TargetID": 66615, + "Directional": true + } + ] + }, + { + "ID": 16196, + "SourceStructureID": 70682, + "TargetStructureID": 5439, + "Label": "70682-5439 via Conventional from 70683 -> 66619", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70683, + "TargetID": 66619, + "Directional": true + } + ] + }, + { + "ID": 16197, + "SourceStructureID": 70684, + "TargetStructureID": 5536, + "Label": "70684-5536 via Conventional from 70688 -> 70687, 70690 -> 33296", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70688, + "TargetID": 70687, + "Directional": true + }, + { + "SourceID": 70690, + "TargetID": 33296, + "Directional": true + } + ] + }, + { + "ID": 16198, + "SourceStructureID": 70684, + "TargetStructureID": 70709, + "Label": "70684-70709 via Conventional from 70708 -> 70710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70708, + "TargetID": 70710, + "Directional": true + } + ] + }, + { + "ID": 16199, + "SourceStructureID": 70684, + "TargetStructureID": 70721, + "Label": "70684-70721 via Conventional from 70720 -> 70722", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70720, + "TargetID": 70722, + "Directional": true + } + ] + }, + { + "ID": 16200, + "SourceStructureID": 70693, + "TargetStructureID": 70684, + "Label": "70693-70684 via Conventional from 70694 -> 70692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70694, + "TargetID": 70692, + "Directional": true + } + ] + }, + { + "ID": 16201, + "SourceStructureID": 70697, + "TargetStructureID": 70684, + "Label": "70697-70684 via Conventional from 70698 -> 70696", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70698, + "TargetID": 70696, + "Directional": true + } + ] + }, + { + "ID": 16202, + "SourceStructureID": 70699, + "TargetStructureID": 70684, + "Label": "70699-70684 via Conventional from 70700 -> 70701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70700, + "TargetID": 70701, + "Directional": true + } + ] + }, + { + "ID": 16203, + "SourceStructureID": 70699, + "TargetStructureID": 70703, + "Label": "70699-70703 via Conventional from 70702 -> 70704", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70702, + "TargetID": 70704, + "Directional": true + } + ] + }, + { + "ID": 16204, + "SourceStructureID": 70706, + "TargetStructureID": 70684, + "Label": "70706-70684 via Conventional from 70707 -> 70705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70707, + "TargetID": 70705, + "Directional": true + } + ] + }, + { + "ID": 16205, + "SourceStructureID": 70712, + "TargetStructureID": 70684, + "Label": "70712-70684 via Conventional from 70713 -> 70711, 70716 -> 70717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70713, + "TargetID": 70711, + "Directional": true + }, + { + "SourceID": 70716, + "TargetID": 70717, + "Directional": true + } + ] + }, + { + "ID": 16206, + "SourceStructureID": 70729, + "TargetStructureID": 70684, + "Label": "70729-70684 via Conventional from 70730 -> 70726", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70730, + "TargetID": 70726, + "Directional": true + } + ] + }, + { + "ID": 16207, + "SourceStructureID": 70732, + "TargetStructureID": 70684, + "Label": "70732-70684 via Conventional from 70733 -> 70731", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70733, + "TargetID": 70731, + "Directional": true + } + ] + }, + { + "ID": 16208, + "SourceStructureID": 70735, + "TargetStructureID": 70684, + "Label": "70735-70684 via Conventional from 70736 -> 70734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70736, + "TargetID": 70734, + "Directional": true + } + ] + }, + { + "ID": 16209, + "SourceStructureID": 70737, + "TargetStructureID": 70684, + "Label": "70737-70684 via Conventional from 70738 -> 70739", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70738, + "TargetID": 70739, + "Directional": true + } + ] + }, + { + "ID": 16210, + "SourceStructureID": 70740, + "TargetStructureID": 58696, + "Label": "70740-58696 via Conventional from 70741 -> 58698", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70741, + "TargetID": 58698, + "Directional": true + } + ] + }, + { + "ID": 16211, + "SourceStructureID": 70743, + "TargetStructureID": 5439, + "Label": "70743-5439 via Conventional from 70744 -> 66610", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70744, + "TargetID": 66610, + "Directional": true + } + ] + }, + { + "ID": 16212, + "SourceStructureID": 70745, + "TargetStructureID": 5439, + "Label": "70745-5439 via Conventional from 70746 -> 66609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70746, + "TargetID": 66609, + "Directional": true + } + ] + }, + { + "ID": 16213, + "SourceStructureID": 70747, + "TargetStructureID": 5439, + "Label": "70747-5439 via Conventional from 70748 -> 66608", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70748, + "TargetID": 66608, + "Directional": true + } + ] + }, + { + "ID": 16214, + "SourceStructureID": 70757, + "TargetStructureID": 5118, + "Label": "70757-5118 via Conventional from 70758 -> 70759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70758, + "TargetID": 70759, + "Directional": true + } + ] + }, + { + "ID": 16215, + "SourceStructureID": 70761, + "TargetStructureID": 15977, + "Label": "70761-15977 via Conventional from 70762 -> 70760", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70762, + "TargetID": 70760, + "Directional": true + } + ] + }, + { + "ID": 16216, + "SourceStructureID": 70770, + "TargetStructureID": 5439, + "Label": "70770-5439 via Conventional from 70771 -> 70772", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70771, + "TargetID": 70772, + "Directional": true + } + ] + }, + { + "ID": 16217, + "SourceStructureID": 70774, + "TargetStructureID": 70770, + "Label": "70774-70770 via Conventional from 70775 -> 70773", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70775, + "TargetID": 70773, + "Directional": true + } + ] + }, + { + "ID": 16218, + "SourceStructureID": 70778, + "TargetStructureID": 410, + "Label": "70778-410 via Conventional from 70779 -> 21373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70779, + "TargetID": 21373, + "Directional": true + } + ] + }, + { + "ID": 16219, + "SourceStructureID": 70785, + "TargetStructureID": 410, + "Label": "70785-410 via Conventional from 70786 -> 21551", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70786, + "TargetID": 21551, + "Directional": true + } + ] + }, + { + "ID": 16220, + "SourceStructureID": 70789, + "TargetStructureID": 70795, + "Label": "70789-70795 via Conventional from 70793 -> 70796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70793, + "TargetID": 70796, + "Directional": true + } + ] + }, + { + "ID": 16221, + "SourceStructureID": 70791, + "TargetStructureID": 410, + "Label": "70791-410 via Conventional from 70792 -> 22632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70792, + "TargetID": 22632, + "Directional": true + } + ] + }, + { + "ID": 16222, + "SourceStructureID": 70809, + "TargetStructureID": 65623, + "Label": "70809-65623 via Conventional from 70810 -> 70811", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70810, + "TargetID": 70811, + "Directional": true + } + ] + }, + { + "ID": 16223, + "SourceStructureID": 70814, + "TargetStructureID": 410, + "Label": "70814-410 via Conventional from 70815 -> 18280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70815, + "TargetID": 18280, + "Directional": true + } + ] + }, + { + "ID": 16224, + "SourceStructureID": 70820, + "TargetStructureID": 6589, + "Label": "70820-6589 via Conventional from 70829 -> 9601", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70829, + "TargetID": 9601, + "Directional": true + } + ] + }, + { + "ID": 16225, + "SourceStructureID": 70820, + "TargetStructureID": 13855, + "Label": "70820-13855 via Conventional from 70821 -> 70819, 70830 -> 70831", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70821, + "TargetID": 70819, + "Directional": true + }, + { + "SourceID": 70830, + "TargetID": 70831, + "Directional": true + } + ] + }, + { + "ID": 16226, + "SourceStructureID": 70820, + "TargetStructureID": 70833, + "Label": "70820-70833 via Conventional from 70832 -> 70834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70832, + "TargetID": 70834, + "Directional": true + } + ] + }, + { + "ID": 16227, + "SourceStructureID": 70820, + "TargetStructureID": 70868, + "Label": "70820-70868 via Conventional from 70867 -> 70872", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70867, + "TargetID": 70872, + "Directional": true + } + ] + }, + { + "ID": 16228, + "SourceStructureID": 70833, + "TargetStructureID": 410, + "Label": "70833-410 via Conventional from 70865 -> 8368, 70866 -> 17332", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70865, + "TargetID": 8368, + "Directional": true + }, + { + "SourceID": 70866, + "TargetID": 17332, + "Directional": true + } + ] + }, + { + "ID": 16229, + "SourceStructureID": 70840, + "TargetStructureID": 5439, + "Label": "70840-5439 via Conventional from 70841 -> 70842", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70841, + "TargetID": 70842, + "Directional": true + } + ] + }, + { + "ID": 16230, + "SourceStructureID": 70845, + "TargetStructureID": 5439, + "Label": "70845-5439 via Conventional from 70846 -> 70847", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70846, + "TargetID": 70847, + "Directional": true + } + ] + }, + { + "ID": 16231, + "SourceStructureID": 70851, + "TargetStructureID": 5439, + "Label": "70851-5439 via Conventional from 70852 -> 70850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70852, + "TargetID": 70850, + "Directional": true + } + ] + }, + { + "ID": 16232, + "SourceStructureID": 70868, + "TargetStructureID": 485, + "Label": "70868-485 via Conventional from 70882 -> 101272", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70882, + "TargetID": 101272, + "Directional": true + } + ] + }, + { + "ID": 16233, + "SourceStructureID": 70868, + "TargetStructureID": 66958, + "Label": "70868-66958 via Conventional from 70087 -> 70088", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70087, + "TargetID": 70088, + "Directional": true + } + ] + }, + { + "ID": 16234, + "SourceStructureID": 70868, + "TargetStructureID": 70878, + "Label": "70868-70878 via Conventional from 70873 -> 70881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70873, + "TargetID": 70881, + "Directional": true + } + ] + }, + { + "ID": 16235, + "SourceStructureID": 70878, + "TargetStructureID": 485, + "Label": "70878-485 via Conventional from 70879 -> 70875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70879, + "TargetID": 70875, + "Directional": true + } + ] + }, + { + "ID": 16236, + "SourceStructureID": 70901, + "TargetStructureID": 419, + "Label": "70901-419 via Conventional from 70902 -> 70900", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70902, + "TargetID": 70900, + "Directional": true + } + ] + }, + { + "ID": 16237, + "SourceStructureID": 70903, + "TargetStructureID": 13855, + "Label": "70903-13855 via Conventional from 70904 -> 36324", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70904, + "TargetID": 36324, + "Directional": true + } + ] + }, + { + "ID": 16238, + "SourceStructureID": 70906, + "TargetStructureID": 419, + "Label": "70906-419 via Conventional from 70907 -> 70905", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70907, + "TargetID": 70905, + "Directional": true + } + ] + }, + { + "ID": 16239, + "SourceStructureID": 70909, + "TargetStructureID": 13855, + "Label": "70909-13855 via Conventional from 70910 -> 70908", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70910, + "TargetID": 70908, + "Directional": true + } + ] + }, + { + "ID": 16240, + "SourceStructureID": 70912, + "TargetStructureID": 13855, + "Label": "70912-13855 via Conventional from 70913 -> 70911", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 70913, + "TargetID": 70911, + "Directional": true + } + ] + }, + { + "ID": 16241, + "SourceStructureID": 71041, + "TargetStructureID": 4890, + "Label": "71041-4890 via Conventional from 71042 -> 19990", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71042, + "TargetID": 19990, + "Directional": true + } + ] + }, + { + "ID": 16242, + "SourceStructureID": 71043, + "TargetStructureID": 397, + "Label": "71043-397 via Conventional from 71045 -> 71046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71045, + "TargetID": 71046, + "Directional": true + } + ] + }, + { + "ID": 16243, + "SourceStructureID": 71043, + "TargetStructureID": 4890, + "Label": "71043-4890 via Conventional from 71044 -> 19995", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71044, + "TargetID": 19995, + "Directional": true + } + ] + }, + { + "ID": 16244, + "SourceStructureID": 71057, + "TargetStructureID": 4890, + "Label": "71057-4890 via Conventional from 71058 -> 7919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71058, + "TargetID": 7919, + "Directional": true + } + ] + }, + { + "ID": 16245, + "SourceStructureID": 71063, + "TargetStructureID": 5631, + "Label": "71063-5631 via Conventional from 71064 -> 71062", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71064, + "TargetID": 71062, + "Directional": true + } + ] + }, + { + "ID": 16246, + "SourceStructureID": 71073, + "TargetStructureID": 166, + "Label": "71073-166 via Conventional from 71079 -> 71080", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71079, + "TargetID": 71080, + "Directional": true + } + ] + }, + { + "ID": 16247, + "SourceStructureID": 71091, + "TargetStructureID": 483, + "Label": "71091-483 via Conventional from 71093 -> 71092", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71093, + "TargetID": 71092, + "Directional": true + } + ] + }, + { + "ID": 16248, + "SourceStructureID": 71098, + "TargetStructureID": 483, + "Label": "71098-483 via Conventional from 71099 -> 71101", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71099, + "TargetID": 71101, + "Directional": true + } + ] + }, + { + "ID": 16249, + "SourceStructureID": 71118, + "TargetStructureID": 5711, + "Label": "71118-5711 via Conventional from 71147 -> 71148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71147, + "TargetID": 71148, + "Directional": true + } + ] + }, + { + "ID": 16250, + "SourceStructureID": 71118, + "TargetStructureID": 71125, + "Label": "71118-71125 via Conventional from 71121 -> 71127", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71121, + "TargetID": 71127, + "Directional": true + } + ] + }, + { + "ID": 16251, + "SourceStructureID": 71125, + "TargetStructureID": 71118, + "Label": "71125-71118 via Conventional from 71126 -> 71124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71126, + "TargetID": 71124, + "Directional": true + } + ] + }, + { + "ID": 16252, + "SourceStructureID": 71133, + "TargetStructureID": 483, + "Label": "71133-483 via Conventional from 71139 -> 71141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71139, + "TargetID": 71141, + "Directional": true + } + ] + }, + { + "ID": 16253, + "SourceStructureID": 71135, + "TargetStructureID": 71118, + "Label": "71135-71118 via Ribbon Synapse from 71140 -> 71132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71140, + "TargetID": 71132, + "Directional": true + } + ] + }, + { + "ID": 16254, + "SourceStructureID": 71152, + "TargetStructureID": 71118, + "Label": "71152-71118 via Conventional from 71156 -> 71150", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71156, + "TargetID": 71150, + "Directional": true + } + ] + }, + { + "ID": 16255, + "SourceStructureID": 71155, + "TargetStructureID": 483, + "Label": "71155-483 via Conventional from 71197 -> 71198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71197, + "TargetID": 71198, + "Directional": true + } + ] + }, + { + "ID": 16256, + "SourceStructureID": 71202, + "TargetStructureID": 483, + "Label": "71202-483 via Conventional from 71203 -> 71205", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71203, + "TargetID": 71205, + "Directional": true + } + ] + }, + { + "ID": 16257, + "SourceStructureID": 71202, + "TargetStructureID": 71202, + "Label": "71202-71202 via Conventional from 71253 -> 71254", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71253, + "TargetID": 71254, + "Directional": true + } + ] + }, + { + "ID": 16258, + "SourceStructureID": 71219, + "TargetStructureID": 483, + "Label": "71219-483 via Conventional from 71220 -> 71221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71220, + "TargetID": 71221, + "Directional": true + } + ] + }, + { + "ID": 16259, + "SourceStructureID": 71227, + "TargetStructureID": 911, + "Label": "71227-911 via Conventional from 71231 -> 943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71231, + "TargetID": 943, + "Directional": true + } + ] + }, + { + "ID": 16260, + "SourceStructureID": 71227, + "TargetStructureID": 2610, + "Label": "71227-2610 via Conventional from 71228 -> 2728", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71228, + "TargetID": 2728, + "Directional": true + } + ] + }, + { + "ID": 16261, + "SourceStructureID": 71240, + "TargetStructureID": 483, + "Label": "71240-483 via Conventional from 71353 -> 71354", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71353, + "TargetID": 71354, + "Directional": true + } + ] + }, + { + "ID": 16262, + "SourceStructureID": 71242, + "TargetStructureID": 70599, + "Label": "71242-70599 via Conventional from 71255 -> 71256", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71255, + "TargetID": 71256, + "Directional": true + } + ] + }, + { + "ID": 16263, + "SourceStructureID": 71281, + "TargetStructureID": 2610, + "Label": "71281-2610 via Conventional from 71282 -> 2620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71282, + "TargetID": 2620, + "Directional": true + } + ] + }, + { + "ID": 16264, + "SourceStructureID": 71288, + "TargetStructureID": 483, + "Label": "71288-483 via Conventional from 71290 -> 71291, 71294 -> 71295, 71387 -> 71388", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71290, + "TargetID": 71291, + "Directional": true + }, + { + "SourceID": 71294, + "TargetID": 71295, + "Directional": true + }, + { + "SourceID": 71387, + "TargetID": 71388, + "Directional": true + } + ] + }, + { + "ID": 16265, + "SourceStructureID": 71302, + "TargetStructureID": 308, + "Label": "71302-308 via Conventional from 71303 -> 42628", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71303, + "TargetID": 42628, + "Directional": true + } + ] + }, + { + "ID": 16266, + "SourceStructureID": 71322, + "TargetStructureID": 8589, + "Label": "71322-8589 via Conventional from 71323 -> 71324", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71323, + "TargetID": 71324, + "Directional": true + } + ] + }, + { + "ID": 16267, + "SourceStructureID": 71334, + "TargetStructureID": 66634, + "Label": "71334-66634 via Conventional from 71335 -> 71336", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71335, + "TargetID": 71336, + "Directional": true + } + ] + }, + { + "ID": 16268, + "SourceStructureID": 71351, + "TargetStructureID": 71895, + "Label": "71351-71895 via Conventional from 71896 -> 71897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71896, + "TargetID": 71897, + "Directional": true + } + ] + }, + { + "ID": 16269, + "SourceStructureID": 71362, + "TargetStructureID": 483, + "Label": "71362-483 via Conventional from 71363 -> 71364", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71363, + "TargetID": 71364, + "Directional": true + } + ] + }, + { + "ID": 16270, + "SourceStructureID": 71369, + "TargetStructureID": 483, + "Label": "71369-483 via Conventional from 71370 -> 71371", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71370, + "TargetID": 71371, + "Directional": true + } + ] + }, + { + "ID": 16271, + "SourceStructureID": 71377, + "TargetStructureID": 483, + "Label": "71377-483 via Conventional from 71378 -> 6745", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71378, + "TargetID": 6745, + "Directional": true + } + ] + }, + { + "ID": 16272, + "SourceStructureID": 71395, + "TargetStructureID": 8589, + "Label": "71395-8589 via Conventional from 71398 -> 71399", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71398, + "TargetID": 71399, + "Directional": true + } + ] + }, + { + "ID": 16273, + "SourceStructureID": 71402, + "TargetStructureID": 573, + "Label": "71402-573 via Conventional from 71403 -> 71401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71403, + "TargetID": 71401, + "Directional": true + } + ] + }, + { + "ID": 16274, + "SourceStructureID": 71419, + "TargetStructureID": 573, + "Label": "71419-573 via Conventional from 71420 -> 71418", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71420, + "TargetID": 71418, + "Directional": true + } + ] + }, + { + "ID": 16275, + "SourceStructureID": 71433, + "TargetStructureID": 166, + "Label": "71433-166 via Conventional from 71448 -> 71449", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71448, + "TargetID": 71449, + "Directional": true + } + ] + }, + { + "ID": 16276, + "SourceStructureID": 71435, + "TargetStructureID": 166, + "Label": "71435-166 via Conventional from 71436 -> 71437", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71436, + "TargetID": 71437, + "Directional": true + } + ] + }, + { + "ID": 16277, + "SourceStructureID": 71439, + "TargetStructureID": 166, + "Label": "71439-166 via Conventional from 71447 -> 71446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71447, + "TargetID": 71446, + "Directional": true + } + ] + }, + { + "ID": 16278, + "SourceStructureID": 71472, + "TargetStructureID": 166, + "Label": "71472-166 via Conventional from 71473 -> 71471", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71473, + "TargetID": 71471, + "Directional": true + } + ] + }, + { + "ID": 16279, + "SourceStructureID": 71481, + "TargetStructureID": 372, + "Label": "71481-372 via Conventional from 71482 -> 71483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71482, + "TargetID": 71483, + "Directional": true + } + ] + }, + { + "ID": 16280, + "SourceStructureID": 71491, + "TargetStructureID": 71517, + "Label": "71491-71517 via Conventional from 71492 -> 71490", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71492, + "TargetID": 71490, + "Directional": true + } + ] + }, + { + "ID": 16281, + "SourceStructureID": 71497, + "TargetStructureID": 71517, + "Label": "71497-71517 via Conventional from 71498 -> 71496", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71498, + "TargetID": 71496, + "Directional": true + } + ] + }, + { + "ID": 16282, + "SourceStructureID": 71507, + "TargetStructureID": 71517, + "Label": "71507-71517 via Conventional from 71508 -> 71506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71508, + "TargetID": 71506, + "Directional": true + } + ] + }, + { + "ID": 16283, + "SourceStructureID": 71511, + "TargetStructureID": 6115, + "Label": "71511-6115 via Conventional from 75018 -> 75019", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75018, + "TargetID": 75019, + "Directional": true + } + ] + }, + { + "ID": 16284, + "SourceStructureID": 71511, + "TargetStructureID": 71517, + "Label": "71511-71517 via Conventional from 71512 -> 71510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71512, + "TargetID": 71510, + "Directional": true + } + ] + }, + { + "ID": 16285, + "SourceStructureID": 71513, + "TargetStructureID": 6857, + "Label": "71513-6857 via Conventional from 71516 -> 6893", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71516, + "TargetID": 6893, + "Directional": true + } + ] + }, + { + "ID": 16286, + "SourceStructureID": 71517, + "TargetStructureID": 6857, + "Label": "71517-6857 via Conventional from 66677 -> 6884, 71499 -> 6890, 71524 -> 7551, 71525 -> 6897, 71527 -> 7554, 72118 -> 6882, 72121 -> 7550, 75166 -> 75167", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 66677, + "TargetID": 6884, + "Directional": true + }, + { + "SourceID": 71499, + "TargetID": 6890, + "Directional": true + }, + { + "SourceID": 71524, + "TargetID": 7551, + "Directional": true + }, + { + "SourceID": 71525, + "TargetID": 6897, + "Directional": true + }, + { + "SourceID": 71527, + "TargetID": 7554, + "Directional": true + }, + { + "SourceID": 72118, + "TargetID": 6882, + "Directional": true + }, + { + "SourceID": 72121, + "TargetID": 7550, + "Directional": true + }, + { + "SourceID": 75166, + "TargetID": 75167, + "Directional": true + } + ] + }, + { + "ID": 16287, + "SourceStructureID": 71517, + "TargetStructureID": 11030, + "Label": "71517-11030 via Conventional from 71500 -> 71636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71500, + "TargetID": 71636, + "Directional": true + } + ] + }, + { + "ID": 16288, + "SourceStructureID": 71517, + "TargetStructureID": 66323, + "Label": "71517-66323 via Conventional from 84422 -> 84421", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84422, + "TargetID": 84421, + "Directional": true + } + ] + }, + { + "ID": 16289, + "SourceStructureID": 71517, + "TargetStructureID": 71519, + "Label": "71517-71519 via Conventional from 71518 -> 71520", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71518, + "TargetID": 71520, + "Directional": true + } + ] + }, + { + "ID": 16290, + "SourceStructureID": 71538, + "TargetStructureID": 71517, + "Label": "71538-71517 via Conventional from 71539 -> 71537", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71539, + "TargetID": 71537, + "Directional": true + } + ] + }, + { + "ID": 16291, + "SourceStructureID": 71541, + "TargetStructureID": 372, + "Label": "71541-372 via Conventional from 71542 -> 71543", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71542, + "TargetID": 71543, + "Directional": true + } + ] + }, + { + "ID": 16292, + "SourceStructureID": 71545, + "TargetStructureID": 71517, + "Label": "71545-71517 via Conventional from 71546 -> 71544", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71546, + "TargetID": 71544, + "Directional": true + } + ] + }, + { + "ID": 16293, + "SourceStructureID": 71547, + "TargetStructureID": 372, + "Label": "71547-372 via Conventional from 71548 -> 71549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71548, + "TargetID": 71549, + "Directional": true + } + ] + }, + { + "ID": 16294, + "SourceStructureID": 71556, + "TargetStructureID": 372, + "Label": "71556-372 via Conventional from 71557 -> 71558", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71557, + "TargetID": 71558, + "Directional": true + } + ] + }, + { + "ID": 16295, + "SourceStructureID": 71569, + "TargetStructureID": 372, + "Label": "71569-372 via Conventional from 71570 -> 71571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71570, + "TargetID": 71571, + "Directional": true + } + ] + }, + { + "ID": 16296, + "SourceStructureID": 71574, + "TargetStructureID": 372, + "Label": "71574-372 via Conventional from 71575 -> 71573", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71575, + "TargetID": 71573, + "Directional": true + } + ] + }, + { + "ID": 16297, + "SourceStructureID": 71576, + "TargetStructureID": 372, + "Label": "71576-372 via Conventional from 71577 -> 71579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71577, + "TargetID": 71579, + "Directional": true + } + ] + }, + { + "ID": 16298, + "SourceStructureID": 71580, + "TargetStructureID": 372, + "Label": "71580-372 via Conventional from 71581 -> 71582", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71581, + "TargetID": 71582, + "Directional": true + } + ] + }, + { + "ID": 16299, + "SourceStructureID": 71583, + "TargetStructureID": 372, + "Label": "71583-372 via Conventional from 71584 -> 71585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71584, + "TargetID": 71585, + "Directional": true + } + ] + }, + { + "ID": 16300, + "SourceStructureID": 71588, + "TargetStructureID": 372, + "Label": "71588-372 via Conventional from 71589 -> 71590", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71589, + "TargetID": 71590, + "Directional": true + } + ] + }, + { + "ID": 16301, + "SourceStructureID": 71594, + "TargetStructureID": 71597, + "Label": "71594-71597 via Conventional from 71627 -> 71628", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71627, + "TargetID": 71628, + "Directional": true + } + ] + }, + { + "ID": 16302, + "SourceStructureID": 71597, + "TargetStructureID": 8589, + "Label": "71597-8589 via BC Conventional Synapse from 71784 -> 71748", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71784, + "TargetID": 71748, + "Directional": true + } + ] + }, + { + "ID": 16303, + "SourceStructureID": 71597, + "TargetStructureID": 8589, + "Label": "71597-8589 via Ribbon Synapse from 71780 -> 71748", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71780, + "TargetID": 71748, + "Directional": true + } + ] + }, + { + "ID": 16304, + "SourceStructureID": 71600, + "TargetStructureID": 71517, + "Label": "71600-71517 via Conventional from 71601 -> 71599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71601, + "TargetID": 71599, + "Directional": true + } + ] + }, + { + "ID": 16305, + "SourceStructureID": 71610, + "TargetStructureID": 66634, + "Label": "71610-66634 via Conventional from 71611 -> 71609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71611, + "TargetID": 71609, + "Directional": true + } + ] + }, + { + "ID": 16306, + "SourceStructureID": 71618, + "TargetStructureID": 66634, + "Label": "71618-66634 via Conventional from 71619 -> 71617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71619, + "TargetID": 71617, + "Directional": true + } + ] + }, + { + "ID": 16307, + "SourceStructureID": 71626, + "TargetStructureID": 166, + "Label": "71626-166 via Conventional from 71989 -> 71990, 71992 -> 71993", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71989, + "TargetID": 71990, + "Directional": true + }, + { + "SourceID": 71992, + "TargetID": 71993, + "Directional": true + } + ] + }, + { + "ID": 16308, + "SourceStructureID": 71626, + "TargetStructureID": 71995, + "Label": "71626-71995 via Conventional from 71994 -> 71996", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71994, + "TargetID": 71996, + "Directional": true + } + ] + }, + { + "ID": 16309, + "SourceStructureID": 71632, + "TargetStructureID": 71517, + "Label": "71632-71517 via Conventional from 71633 -> 71521", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71633, + "TargetID": 71521, + "Directional": true + } + ] + }, + { + "ID": 16310, + "SourceStructureID": 71634, + "TargetStructureID": 5649, + "Label": "71634-5649 via Conventional from 105698 -> 53938", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105698, + "TargetID": 53938, + "Directional": true + } + ] + }, + { + "ID": 16311, + "SourceStructureID": 71634, + "TargetStructureID": 71517, + "Label": "71634-71517 via Conventional from 71635 -> 71526", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71635, + "TargetID": 71526, + "Directional": true + } + ] + }, + { + "ID": 16312, + "SourceStructureID": 71640, + "TargetStructureID": 8589, + "Label": "71640-8589 via Conventional from 71647 -> 71664", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71647, + "TargetID": 71664, + "Directional": true + } + ] + }, + { + "ID": 16313, + "SourceStructureID": 71671, + "TargetStructureID": 71730, + "Label": "71671-71730 via Conventional from 71731 -> 71732, 71733 -> 71734, 71735 -> 71736", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71731, + "TargetID": 71732, + "Directional": true + }, + { + "SourceID": 71733, + "TargetID": 71734, + "Directional": true + }, + { + "SourceID": 71735, + "TargetID": 71736, + "Directional": true + } + ] + }, + { + "ID": 16314, + "SourceStructureID": 71675, + "TargetStructureID": 71351, + "Label": "71675-71351 via Conventional from 71676 -> 71674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71676, + "TargetID": 71674, + "Directional": true + } + ] + }, + { + "ID": 16315, + "SourceStructureID": 71678, + "TargetStructureID": 71351, + "Label": "71678-71351 via Conventional from 71679 -> 71677", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71679, + "TargetID": 71677, + "Directional": true + } + ] + }, + { + "ID": 16316, + "SourceStructureID": 71689, + "TargetStructureID": 6142, + "Label": "71689-6142 via Conventional from 71690 -> 71688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71690, + "TargetID": 71688, + "Directional": true + } + ] + }, + { + "ID": 16317, + "SourceStructureID": 71722, + "TargetStructureID": 6857, + "Label": "71722-6857 via Conventional from 71723 -> 71724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71723, + "TargetID": 71724, + "Directional": true + } + ] + }, + { + "ID": 16318, + "SourceStructureID": 71730, + "TargetStructureID": 71738, + "Label": "71730-71738 via Ribbon Synapse from 71737 -> 71740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71737, + "TargetID": 71740, + "Directional": true + } + ] + }, + { + "ID": 16319, + "SourceStructureID": 71730, + "TargetStructureID": 71739, + "Label": "71730-71739 via Ribbon Synapse from 71737 -> 71741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71737, + "TargetID": 71741, + "Directional": true + } + ] + }, + { + "ID": 16320, + "SourceStructureID": 71730, + "TargetStructureID": 71767, + "Label": "71730-71767 via Cistern Pre from 71818 -> 71819", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 71818, + "TargetID": 71819, + "Directional": true + } + ] + }, + { + "ID": 16321, + "SourceStructureID": 71730, + "TargetStructureID": 71767, + "Label": "71730-71767 via Ribbon Synapse from 71766 -> 71768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71766, + "TargetID": 71768, + "Directional": true + } + ] + }, + { + "ID": 16322, + "SourceStructureID": 71738, + "TargetStructureID": 71730, + "Label": "71738-71730 via Conventional from 71760 -> 71759, 71764 -> 71763", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71760, + "TargetID": 71759, + "Directional": true + }, + { + "SourceID": 71764, + "TargetID": 71763, + "Directional": true + } + ] + }, + { + "ID": 16323, + "SourceStructureID": 71754, + "TargetStructureID": 71730, + "Label": "71754-71730 via Conventional from 71757 -> 71756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71757, + "TargetID": 71756, + "Directional": true + } + ] + }, + { + "ID": 16324, + "SourceStructureID": 71767, + "TargetStructureID": 71730, + "Label": "71767-71730 via Conventional from 71770 -> 71769, 71807 -> 71806", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71770, + "TargetID": 71769, + "Directional": true + }, + { + "SourceID": 71807, + "TargetID": 71806, + "Directional": true + } + ] + }, + { + "ID": 16325, + "SourceStructureID": 71773, + "TargetStructureID": 8589, + "Label": "71773-8589 via Ribbon Synapse from 71775 -> 71776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71775, + "TargetID": 71776, + "Directional": true + } + ] + }, + { + "ID": 16326, + "SourceStructureID": 71781, + "TargetStructureID": 71730, + "Label": "71781-71730 via Cistern Pre from 71820 -> 71821", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 71820, + "TargetID": 71821, + "Directional": true + } + ] + }, + { + "ID": 16327, + "SourceStructureID": 71781, + "TargetStructureID": 71730, + "Label": "71781-71730 via Conventional from 71822 -> 71823, 71834 -> 71833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71822, + "TargetID": 71823, + "Directional": true + }, + { + "SourceID": 71834, + "TargetID": 71833, + "Directional": true + } + ] + }, + { + "ID": 16328, + "SourceStructureID": 71790, + "TargetStructureID": 71730, + "Label": "71790-71730 via Conventional from 71793 -> 71794, 71795 -> 71796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71793, + "TargetID": 71794, + "Directional": true + }, + { + "SourceID": 71795, + "TargetID": 71796, + "Directional": true + } + ] + }, + { + "ID": 16329, + "SourceStructureID": 71830, + "TargetStructureID": 321, + "Label": "71830-321 via Conventional from 122110 -> 122111", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122110, + "TargetID": 122111, + "Directional": true + } + ] + }, + { + "ID": 16330, + "SourceStructureID": 71830, + "TargetStructureID": 372, + "Label": "71830-372 via Conventional from 71831 -> 71832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71831, + "TargetID": 71832, + "Directional": true + } + ] + }, + { + "ID": 16331, + "SourceStructureID": 71843, + "TargetStructureID": 372, + "Label": "71843-372 via Conventional from 71844 -> 71845", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71844, + "TargetID": 71845, + "Directional": true + } + ] + }, + { + "ID": 16332, + "SourceStructureID": 71853, + "TargetStructureID": 372, + "Label": "71853-372 via Conventional from 71854 -> 71852", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71854, + "TargetID": 71852, + "Directional": true + } + ] + }, + { + "ID": 16333, + "SourceStructureID": 71891, + "TargetStructureID": 180, + "Label": "71891-180 via Conventional from 71892 -> 71893", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71892, + "TargetID": 71893, + "Directional": true + } + ] + }, + { + "ID": 16334, + "SourceStructureID": 71906, + "TargetStructureID": 71911, + "Label": "71906-71911 via Ribbon Synapse from 71907 -> 71912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71907, + "TargetID": 71912, + "Directional": true + } + ] + }, + { + "ID": 16335, + "SourceStructureID": 71906, + "TargetStructureID": 71919, + "Label": "71906-71919 via Ribbon Synapse from 71918 -> 71921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71918, + "TargetID": 71921, + "Directional": true + } + ] + }, + { + "ID": 16336, + "SourceStructureID": 71906, + "TargetStructureID": 71920, + "Label": "71906-71920 via Ribbon Synapse from 71918 -> 71922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71918, + "TargetID": 71922, + "Directional": true + } + ] + }, + { + "ID": 16337, + "SourceStructureID": 71908, + "TargetStructureID": 71351, + "Label": "71908-71351 via Conventional from 71909 -> 71910", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71909, + "TargetID": 71910, + "Directional": true + } + ] + }, + { + "ID": 16338, + "SourceStructureID": 71915, + "TargetStructureID": 71906, + "Label": "71915-71906 via Conventional from 71916 -> 71917", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71916, + "TargetID": 71917, + "Directional": true + } + ] + }, + { + "ID": 16339, + "SourceStructureID": 71923, + "TargetStructureID": 69162, + "Label": "71923-69162 via Conventional from 71924 -> 71925", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71924, + "TargetID": 71925, + "Directional": true + } + ] + }, + { + "ID": 16340, + "SourceStructureID": 71927, + "TargetStructureID": 5284, + "Label": "71927-5284 via Conventional from 71928 -> 98154", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71928, + "TargetID": 98154, + "Directional": true + } + ] + }, + { + "ID": 16341, + "SourceStructureID": 71927, + "TargetStructureID": 15796, + "Label": "71927-15796 via Conventional from 71929 -> 15820", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71929, + "TargetID": 15820, + "Directional": true + } + ] + }, + { + "ID": 16342, + "SourceStructureID": 71935, + "TargetStructureID": 476, + "Label": "71935-476 via Ribbon Synapse from 71942 -> 5721", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71942, + "TargetID": 5721, + "Directional": true + } + ] + }, + { + "ID": 16343, + "SourceStructureID": 71935, + "TargetStructureID": 20299, + "Label": "71935-20299 via Ribbon Synapse from 71941 -> 121510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 71941, + "TargetID": 121510, + "Directional": true + } + ] + }, + { + "ID": 16344, + "SourceStructureID": 71962, + "TargetStructureID": 71411, + "Label": "71962-71411 via Conventional from 71966 -> 71960", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71966, + "TargetID": 71960, + "Directional": true + } + ] + }, + { + "ID": 16345, + "SourceStructureID": 71985, + "TargetStructureID": 63487, + "Label": "71985-63487 via Conventional from 71986 -> 71988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71986, + "TargetID": 71988, + "Directional": true + } + ] + }, + { + "ID": 16346, + "SourceStructureID": 71997, + "TargetStructureID": 71517, + "Label": "71997-71517 via Conventional from 75005 -> 75004", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75005, + "TargetID": 75004, + "Directional": true + } + ] + }, + { + "ID": 16347, + "SourceStructureID": 71998, + "TargetStructureID": 8720, + "Label": "71998-8720 via Conventional from 71999 -> 64384", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 71999, + "TargetID": 64384, + "Directional": true + } + ] + }, + { + "ID": 16348, + "SourceStructureID": 72000, + "TargetStructureID": 8720, + "Label": "72000-8720 via Conventional from 72001 -> 63172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72001, + "TargetID": 63172, + "Directional": true + } + ] + }, + { + "ID": 16349, + "SourceStructureID": 72003, + "TargetStructureID": 6115, + "Label": "72003-6115 via Adherens from 75072 -> 75071", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 75072, + "TargetID": 75071, + "Directional": true + } + ] + }, + { + "ID": 16350, + "SourceStructureID": 72003, + "TargetStructureID": 6115, + "Label": "72003-6115 via Conventional from 72006 -> 72007", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72006, + "TargetID": 72007, + "Directional": true + } + ] + }, + { + "ID": 16351, + "SourceStructureID": 72031, + "TargetStructureID": 8589, + "Label": "72031-8589 via Conventional from 72032 -> 72030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72032, + "TargetID": 72030, + "Directional": true + } + ] + }, + { + "ID": 16352, + "SourceStructureID": 72043, + "TargetStructureID": 72036, + "Label": "72043-72036 via Conventional from 72044 -> 72042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72044, + "TargetID": 72042, + "Directional": true + } + ] + }, + { + "ID": 16353, + "SourceStructureID": 72074, + "TargetStructureID": 6115, + "Label": "72074-6115 via Conventional from 72078 -> 37630", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72078, + "TargetID": 37630, + "Directional": true + } + ] + }, + { + "ID": 16354, + "SourceStructureID": 72074, + "TargetStructureID": 72076, + "Label": "72074-72076 via Conventional from 72150 -> 72149", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72150, + "TargetID": 72149, + "Directional": true + } + ] + }, + { + "ID": 16355, + "SourceStructureID": 72087, + "TargetStructureID": 6115, + "Label": "72087-6115 via Conventional from 72088 -> 37634", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72088, + "TargetID": 37634, + "Directional": true + } + ] + }, + { + "ID": 16356, + "SourceStructureID": 72109, + "TargetStructureID": 8580, + "Label": "72109-8580 via Conventional from 72110 -> 72111", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72110, + "TargetID": 72111, + "Directional": true + } + ] + }, + { + "ID": 16357, + "SourceStructureID": 72124, + "TargetStructureID": 71517, + "Label": "72124-71517 via Conventional from 72125 -> 71529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72125, + "TargetID": 71529, + "Directional": true + } + ] + }, + { + "ID": 16358, + "SourceStructureID": 72154, + "TargetStructureID": 71517, + "Label": "72154-71517 via Conventional from 72156 -> 72155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72156, + "TargetID": 72155, + "Directional": true + } + ] + }, + { + "ID": 16359, + "SourceStructureID": 72162, + "TargetStructureID": 15796, + "Label": "72162-15796 via Conventional from 82708 -> 15822", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82708, + "TargetID": 15822, + "Directional": true + } + ] + }, + { + "ID": 16360, + "SourceStructureID": 72168, + "TargetStructureID": 5601, + "Label": "72168-5601 via Conventional from 82958 -> 57192", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82958, + "TargetID": 57192, + "Directional": true + } + ] + }, + { + "ID": 16361, + "SourceStructureID": 72168, + "TargetStructureID": 82950, + "Label": "72168-82950 via Conventional from 82952 -> 82951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82952, + "TargetID": 82951, + "Directional": true + } + ] + }, + { + "ID": 16362, + "SourceStructureID": 72168, + "TargetStructureID": 82954, + "Label": "72168-82954 via Conventional from 82953 -> 82957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82953, + "TargetID": 82957, + "Directional": true + } + ] + }, + { + "ID": 16363, + "SourceStructureID": 72168, + "TargetStructureID": 82965, + "Label": "72168-82965 via Conventional from 82964 -> 82966", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82964, + "TargetID": 82966, + "Directional": true + } + ] + }, + { + "ID": 16364, + "SourceStructureID": 72176, + "TargetStructureID": 6115, + "Label": "72176-6115 via Conventional from 72177 -> 72178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72177, + "TargetID": 72178, + "Directional": true + } + ] + }, + { + "ID": 16365, + "SourceStructureID": 72183, + "TargetStructureID": 6115, + "Label": "72183-6115 via Conventional from 72185 -> 20423", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72185, + "TargetID": 20423, + "Directional": true + } + ] + }, + { + "ID": 16366, + "SourceStructureID": 72188, + "TargetStructureID": 6115, + "Label": "72188-6115 via Conventional from 72190 -> 72191", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72190, + "TargetID": 72191, + "Directional": true + } + ] + }, + { + "ID": 16367, + "SourceStructureID": 72210, + "TargetStructureID": 6115, + "Label": "72210-6115 via Conventional from 72211 -> 55808", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72211, + "TargetID": 55808, + "Directional": true + } + ] + }, + { + "ID": 16368, + "SourceStructureID": 72215, + "TargetStructureID": 6115, + "Label": "72215-6115 via Conventional from 72216 -> 72217", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72216, + "TargetID": 72217, + "Directional": true + } + ] + }, + { + "ID": 16369, + "SourceStructureID": 72218, + "TargetStructureID": 6115, + "Label": "72218-6115 via Conventional from 72269 -> 72267", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72269, + "TargetID": 72267, + "Directional": true + } + ] + }, + { + "ID": 16370, + "SourceStructureID": 72226, + "TargetStructureID": 6115, + "Label": "72226-6115 via Conventional from 72230 -> 72231", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72230, + "TargetID": 72231, + "Directional": true + } + ] + }, + { + "ID": 16371, + "SourceStructureID": 72252, + "TargetStructureID": 7113, + "Label": "72252-7113 via Ribbon Synapse from 82982 -> 82983", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82982, + "TargetID": 82983, + "Directional": true + } + ] + }, + { + "ID": 16372, + "SourceStructureID": 72252, + "TargetStructureID": 82977, + "Label": "72252-82977 via Ribbon Synapse from 82982 -> 82984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82982, + "TargetID": 82984, + "Directional": true + } + ] + }, + { + "ID": 16373, + "SourceStructureID": 72252, + "TargetStructureID": 82978, + "Label": "72252-82978 via Ribbon Synapse from 82973 -> 82979", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82973, + "TargetID": 82979, + "Directional": true + } + ] + }, + { + "ID": 16374, + "SourceStructureID": 72271, + "TargetStructureID": 6115, + "Label": "72271-6115 via Conventional from 72277 -> 72278", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72277, + "TargetID": 72278, + "Directional": true + } + ] + }, + { + "ID": 16375, + "SourceStructureID": 72281, + "TargetStructureID": 6115, + "Label": "72281-6115 via Conventional from 72282 -> 72283", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72282, + "TargetID": 72283, + "Directional": true + } + ] + }, + { + "ID": 16376, + "SourceStructureID": 72291, + "TargetStructureID": 6115, + "Label": "72291-6115 via Conventional from 72292 -> 72293", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72292, + "TargetID": 72293, + "Directional": true + } + ] + }, + { + "ID": 16377, + "SourceStructureID": 72301, + "TargetStructureID": 6115, + "Label": "72301-6115 via Conventional from 72302 -> 72303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72302, + "TargetID": 72303, + "Directional": true + } + ] + }, + { + "ID": 16378, + "SourceStructureID": 72306, + "TargetStructureID": 6115, + "Label": "72306-6115 via Conventional from 72307 -> 72308", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72307, + "TargetID": 72308, + "Directional": true + } + ] + }, + { + "ID": 16379, + "SourceStructureID": 72309, + "TargetStructureID": 6115, + "Label": "72309-6115 via Conventional from 72317 -> 72318", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72317, + "TargetID": 72318, + "Directional": true + } + ] + }, + { + "ID": 16380, + "SourceStructureID": 72323, + "TargetStructureID": 6115, + "Label": "72323-6115 via Conventional from 72324 -> 72325", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72324, + "TargetID": 72325, + "Directional": true + } + ] + }, + { + "ID": 16381, + "SourceStructureID": 72335, + "TargetStructureID": 6115, + "Label": "72335-6115 via Conventional from 72336 -> 72337", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72336, + "TargetID": 72337, + "Directional": true + } + ] + }, + { + "ID": 16382, + "SourceStructureID": 72342, + "TargetStructureID": 6115, + "Label": "72342-6115 via Conventional from 72343 -> 20430", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72343, + "TargetID": 20430, + "Directional": true + } + ] + }, + { + "ID": 16383, + "SourceStructureID": 72344, + "TargetStructureID": 6115, + "Label": "72344-6115 via Conventional from 72346 -> 72345", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72346, + "TargetID": 72345, + "Directional": true + } + ] + }, + { + "ID": 16384, + "SourceStructureID": 72347, + "TargetStructureID": 6115, + "Label": "72347-6115 via Conventional from 72349 -> 72348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72349, + "TargetID": 72348, + "Directional": true + } + ] + }, + { + "ID": 16385, + "SourceStructureID": 72350, + "TargetStructureID": 6115, + "Label": "72350-6115 via Conventional from 72351 -> 72352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72351, + "TargetID": 72352, + "Directional": true + } + ] + }, + { + "ID": 16386, + "SourceStructureID": 72358, + "TargetStructureID": 6050, + "Label": "72358-6050 via Conventional from 72361 -> 72362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72361, + "TargetID": 72362, + "Directional": true + } + ] + }, + { + "ID": 16387, + "SourceStructureID": 72379, + "TargetStructureID": 6115, + "Label": "72379-6115 via Conventional from 72380 -> 72381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72380, + "TargetID": 72381, + "Directional": true + } + ] + }, + { + "ID": 16388, + "SourceStructureID": 72384, + "TargetStructureID": 68663, + "Label": "72384-68663 via Conventional from 79049 -> 79050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79049, + "TargetID": 79050, + "Directional": true + } + ] + }, + { + "ID": 16389, + "SourceStructureID": 72385, + "TargetStructureID": 6115, + "Label": "72385-6115 via Conventional from 72386 -> 55850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72386, + "TargetID": 55850, + "Directional": true + } + ] + }, + { + "ID": 16390, + "SourceStructureID": 72401, + "TargetStructureID": 6115, + "Label": "72401-6115 via Conventional from 72421 -> 72420", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72421, + "TargetID": 72420, + "Directional": true + } + ] + }, + { + "ID": 16391, + "SourceStructureID": 72402, + "TargetStructureID": 18282, + "Label": "72402-18282 via Ribbon Synapse from 72404 -> 18327", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 72404, + "TargetID": 18327, + "Directional": true + } + ] + }, + { + "ID": 16392, + "SourceStructureID": 72408, + "TargetStructureID": 8580, + "Label": "72408-8580 via Conventional from 72409 -> 72407", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72409, + "TargetID": 72407, + "Directional": true + } + ] + }, + { + "ID": 16393, + "SourceStructureID": 72427, + "TargetStructureID": 593, + "Label": "72427-593 via Conventional from 72428 -> 72429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72428, + "TargetID": 72429, + "Directional": true + } + ] + }, + { + "ID": 16394, + "SourceStructureID": 72441, + "TargetStructureID": 6115, + "Label": "72441-6115 via Conventional from 72442 -> 72443", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72442, + "TargetID": 72443, + "Directional": true + } + ] + }, + { + "ID": 16395, + "SourceStructureID": 72451, + "TargetStructureID": 6115, + "Label": "72451-6115 via Conventional from 72452 -> 16055", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72452, + "TargetID": 16055, + "Directional": true + } + ] + }, + { + "ID": 16396, + "SourceStructureID": 72453, + "TargetStructureID": 6115, + "Label": "72453-6115 via Conventional from 72454 -> 72455", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72454, + "TargetID": 72455, + "Directional": true + } + ] + }, + { + "ID": 16397, + "SourceStructureID": 72460, + "TargetStructureID": 6115, + "Label": "72460-6115 via Conventional from 72461 -> 55856", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72461, + "TargetID": 55856, + "Directional": true + } + ] + }, + { + "ID": 16398, + "SourceStructureID": 72463, + "TargetStructureID": 6115, + "Label": "72463-6115 via Conventional from 72464 -> 55857", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72464, + "TargetID": 55857, + "Directional": true + } + ] + }, + { + "ID": 16399, + "SourceStructureID": 72474, + "TargetStructureID": 8580, + "Label": "72474-8580 via Conventional from 72475 -> 72476", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72475, + "TargetID": 72476, + "Directional": true + } + ] + }, + { + "ID": 16400, + "SourceStructureID": 72477, + "TargetStructureID": 8580, + "Label": "72477-8580 via Conventional from 72478 -> 72479", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72478, + "TargetID": 72479, + "Directional": true + } + ] + }, + { + "ID": 16401, + "SourceStructureID": 72480, + "TargetStructureID": 8580, + "Label": "72480-8580 via Conventional from 72481 -> 72482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72481, + "TargetID": 72482, + "Directional": true + } + ] + }, + { + "ID": 16402, + "SourceStructureID": 72505, + "TargetStructureID": 6115, + "Label": "72505-6115 via Conventional from 72512 -> 55851", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72512, + "TargetID": 55851, + "Directional": true + } + ] + }, + { + "ID": 16403, + "SourceStructureID": 72523, + "TargetStructureID": 44970, + "Label": "72523-44970 via Conventional from 82431 -> 44980", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82431, + "TargetID": 44980, + "Directional": true + } + ] + }, + { + "ID": 16404, + "SourceStructureID": 72523, + "TargetStructureID": 82432, + "Label": "72523-82432 via Conventional from 82433 -> 82434", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82433, + "TargetID": 82434, + "Directional": true + } + ] + }, + { + "ID": 16405, + "SourceStructureID": 72526, + "TargetStructureID": 6115, + "Label": "72526-6115 via Conventional from 72527 -> 72528", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72527, + "TargetID": 72528, + "Directional": true + } + ] + }, + { + "ID": 16406, + "SourceStructureID": 72547, + "TargetStructureID": 6115, + "Label": "72547-6115 via Conventional from 72548 -> 72549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72548, + "TargetID": 72549, + "Directional": true + } + ] + }, + { + "ID": 16407, + "SourceStructureID": 72550, + "TargetStructureID": 6115, + "Label": "72550-6115 via Conventional from 72551 -> 72552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72551, + "TargetID": 72552, + "Directional": true + } + ] + }, + { + "ID": 16408, + "SourceStructureID": 72553, + "TargetStructureID": 6115, + "Label": "72553-6115 via Conventional from 72554 -> 72555", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72554, + "TargetID": 72555, + "Directional": true + } + ] + }, + { + "ID": 16409, + "SourceStructureID": 72563, + "TargetStructureID": 6115, + "Label": "72563-6115 via Conventional from 72564 -> 72565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72564, + "TargetID": 72565, + "Directional": true + } + ] + }, + { + "ID": 16410, + "SourceStructureID": 72566, + "TargetStructureID": 6115, + "Label": "72566-6115 via Conventional from 73157 -> 73158, 73159 -> 73160", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73157, + "TargetID": 73158, + "Directional": true + }, + { + "SourceID": 73159, + "TargetID": 73160, + "Directional": true + } + ] + }, + { + "ID": 16411, + "SourceStructureID": 72566, + "TargetStructureID": 72604, + "Label": "72566-72604 via Adherens from 81893 -> 81892", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 81893, + "TargetID": 81892, + "Directional": true + } + ] + }, + { + "ID": 16412, + "SourceStructureID": 72569, + "TargetStructureID": 6115, + "Label": "72569-6115 via Conventional from 72570 -> 72571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72570, + "TargetID": 72571, + "Directional": true + } + ] + }, + { + "ID": 16413, + "SourceStructureID": 72587, + "TargetStructureID": 6115, + "Label": "72587-6115 via Conventional from 72588 -> 59600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72588, + "TargetID": 59600, + "Directional": true + } + ] + }, + { + "ID": 16414, + "SourceStructureID": 72604, + "TargetStructureID": 82559, + "Label": "72604-82559 via Conventional from 82297 -> 82560", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82297, + "TargetID": 82560, + "Directional": true + } + ] + }, + { + "ID": 16415, + "SourceStructureID": 72609, + "TargetStructureID": 6115, + "Label": "72609-6115 via Conventional from 72610 -> 59603", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72610, + "TargetID": 59603, + "Directional": true + } + ] + }, + { + "ID": 16416, + "SourceStructureID": 72614, + "TargetStructureID": 6115, + "Label": "72614-6115 via Conventional from 72615 -> 59602", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72615, + "TargetID": 59602, + "Directional": true + } + ] + }, + { + "ID": 16417, + "SourceStructureID": 72616, + "TargetStructureID": 6115, + "Label": "72616-6115 via Conventional from 72617 -> 59601", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72617, + "TargetID": 59601, + "Directional": true + } + ] + }, + { + "ID": 16418, + "SourceStructureID": 72623, + "TargetStructureID": 6115, + "Label": "72623-6115 via Unknown from 72625 -> 72624", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 72625, + "TargetID": 72624, + "Directional": true + } + ] + }, + { + "ID": 16419, + "SourceStructureID": 72638, + "TargetStructureID": 180, + "Label": "72638-180 via Conventional from 133032 -> 132936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133032, + "TargetID": 132936, + "Directional": true + } + ] + }, + { + "ID": 16420, + "SourceStructureID": 72640, + "TargetStructureID": 6115, + "Label": "72640-6115 via Conventional from 72641 -> 72642", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72641, + "TargetID": 72642, + "Directional": true + } + ] + }, + { + "ID": 16421, + "SourceStructureID": 72688, + "TargetStructureID": 6115, + "Label": "72688-6115 via Conventional from 72689 -> 59598", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72689, + "TargetID": 59598, + "Directional": true + } + ] + }, + { + "ID": 16422, + "SourceStructureID": 72705, + "TargetStructureID": 6115, + "Label": "72705-6115 via Conventional from 72706 -> 72707", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72706, + "TargetID": 72707, + "Directional": true + } + ] + }, + { + "ID": 16423, + "SourceStructureID": 72713, + "TargetStructureID": 6115, + "Label": "72713-6115 via Conventional from 72714 -> 72715", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72714, + "TargetID": 72715, + "Directional": true + } + ] + }, + { + "ID": 16424, + "SourceStructureID": 72766, + "TargetStructureID": 6115, + "Label": "72766-6115 via Conventional from 82639 -> 82640", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82639, + "TargetID": 82640, + "Directional": true + } + ] + }, + { + "ID": 16425, + "SourceStructureID": 72778, + "TargetStructureID": 6115, + "Label": "72778-6115 via Conventional from 72779 -> 72780", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72779, + "TargetID": 72780, + "Directional": true + } + ] + }, + { + "ID": 16426, + "SourceStructureID": 72799, + "TargetStructureID": 6115, + "Label": "72799-6115 via Conventional from 72800 -> 55800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72800, + "TargetID": 55800, + "Directional": true + } + ] + }, + { + "ID": 16427, + "SourceStructureID": 72807, + "TargetStructureID": 6115, + "Label": "72807-6115 via Conventional from 72808 -> 72809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72808, + "TargetID": 72809, + "Directional": true + } + ] + }, + { + "ID": 16428, + "SourceStructureID": 72810, + "TargetStructureID": 6115, + "Label": "72810-6115 via Conventional from 72811 -> 72812", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72811, + "TargetID": 72812, + "Directional": true + } + ] + }, + { + "ID": 16429, + "SourceStructureID": 72815, + "TargetStructureID": 6115, + "Label": "72815-6115 via Conventional from 72816 -> 72817", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72816, + "TargetID": 72817, + "Directional": true + } + ] + }, + { + "ID": 16430, + "SourceStructureID": 72819, + "TargetStructureID": 6115, + "Label": "72819-6115 via Conventional from 72820 -> 55804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72820, + "TargetID": 55804, + "Directional": true + } + ] + }, + { + "ID": 16431, + "SourceStructureID": 72823, + "TargetStructureID": 6115, + "Label": "72823-6115 via Conventional from 72824 -> 72825", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72824, + "TargetID": 72825, + "Directional": true + } + ] + }, + { + "ID": 16432, + "SourceStructureID": 72834, + "TargetStructureID": 6115, + "Label": "72834-6115 via Conventional from 80967 -> 80968", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80967, + "TargetID": 80968, + "Directional": true + } + ] + }, + { + "ID": 16433, + "SourceStructureID": 72844, + "TargetStructureID": 6115, + "Label": "72844-6115 via Conventional from 72845 -> 72846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72845, + "TargetID": 72846, + "Directional": true + } + ] + }, + { + "ID": 16434, + "SourceStructureID": 72847, + "TargetStructureID": 6115, + "Label": "72847-6115 via Conventional from 72848 -> 72849", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72848, + "TargetID": 72849, + "Directional": true + } + ] + }, + { + "ID": 16435, + "SourceStructureID": 72855, + "TargetStructureID": 68539, + "Label": "72855-68539 via Conventional from 72856 -> 72854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72856, + "TargetID": 72854, + "Directional": true + } + ] + }, + { + "ID": 16436, + "SourceStructureID": 72858, + "TargetStructureID": 68539, + "Label": "72858-68539 via Conventional from 72859 -> 72862, 72860 -> 72861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72859, + "TargetID": 72862, + "Directional": true + }, + { + "SourceID": 72860, + "TargetID": 72861, + "Directional": true + } + ] + }, + { + "ID": 16437, + "SourceStructureID": 72865, + "TargetStructureID": 68539, + "Label": "72865-68539 via Conventional from 72866 -> 72867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72866, + "TargetID": 72867, + "Directional": true + } + ] + }, + { + "ID": 16438, + "SourceStructureID": 72873, + "TargetStructureID": 68539, + "Label": "72873-68539 via Conventional from 72874 -> 72886", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72874, + "TargetID": 72886, + "Directional": true + } + ] + }, + { + "ID": 16439, + "SourceStructureID": 72876, + "TargetStructureID": 68539, + "Label": "72876-68539 via Conventional from 72878 -> 72890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72878, + "TargetID": 72890, + "Directional": true + } + ] + }, + { + "ID": 16440, + "SourceStructureID": 72879, + "TargetStructureID": 68539, + "Label": "72879-68539 via Conventional from 72880 -> 72891", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72880, + "TargetID": 72891, + "Directional": true + } + ] + }, + { + "ID": 16441, + "SourceStructureID": 72882, + "TargetStructureID": 72876, + "Label": "72882-72876 via Conventional from 72883 -> 72877", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72883, + "TargetID": 72877, + "Directional": true + } + ] + }, + { + "ID": 16442, + "SourceStructureID": 72892, + "TargetStructureID": 142, + "Label": "72892-142 via Conventional from 72893 -> 49766", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72893, + "TargetID": 49766, + "Directional": true + } + ] + }, + { + "ID": 16443, + "SourceStructureID": 72907, + "TargetStructureID": 6115, + "Label": "72907-6115 via Conventional from 72908 -> 72909", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72908, + "TargetID": 72909, + "Directional": true + } + ] + }, + { + "ID": 16444, + "SourceStructureID": 72934, + "TargetStructureID": 6115, + "Label": "72934-6115 via Conventional from 72935 -> 72933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72935, + "TargetID": 72933, + "Directional": true + } + ] + }, + { + "ID": 16445, + "SourceStructureID": 72936, + "TargetStructureID": 6115, + "Label": "72936-6115 via Conventional from 72937 -> 55913, 72938 -> 55913", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72937, + "TargetID": 55913, + "Directional": true + }, + { + "SourceID": 72938, + "TargetID": 55913, + "Directional": true + } + ] + }, + { + "ID": 16446, + "SourceStructureID": 72939, + "TargetStructureID": 6115, + "Label": "72939-6115 via Conventional from 72940 -> 55912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72940, + "TargetID": 55912, + "Directional": true + } + ] + }, + { + "ID": 16447, + "SourceStructureID": 72949, + "TargetStructureID": 6115, + "Label": "72949-6115 via Conventional from 72950 -> 72951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72950, + "TargetID": 72951, + "Directional": true + } + ] + }, + { + "ID": 16448, + "SourceStructureID": 72964, + "TargetStructureID": 6115, + "Label": "72964-6115 via Conventional from 72966 -> 55777", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72966, + "TargetID": 55777, + "Directional": true + } + ] + }, + { + "ID": 16449, + "SourceStructureID": 72965, + "TargetStructureID": 6115, + "Label": "72965-6115 via Conventional from 72967 -> 72968", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72967, + "TargetID": 72968, + "Directional": true + } + ] + }, + { + "ID": 16450, + "SourceStructureID": 72965, + "TargetStructureID": 72969, + "Label": "72965-72969 via Conventional from 72967 -> 72970", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72967, + "TargetID": 72970, + "Directional": true + } + ] + }, + { + "ID": 16451, + "SourceStructureID": 72973, + "TargetStructureID": 6115, + "Label": "72973-6115 via Conventional from 72974 -> 55907", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72974, + "TargetID": 55907, + "Directional": true + } + ] + }, + { + "ID": 16452, + "SourceStructureID": 72975, + "TargetStructureID": 6115, + "Label": "72975-6115 via Conventional from 72976 -> 72977", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72976, + "TargetID": 72977, + "Directional": true + } + ] + }, + { + "ID": 16453, + "SourceStructureID": 72987, + "TargetStructureID": 6115, + "Label": "72987-6115 via Conventional from 72996 -> 72997, 73016 -> 55900", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72996, + "TargetID": 72997, + "Directional": true + }, + { + "SourceID": 73016, + "TargetID": 55900, + "Directional": true + } + ] + }, + { + "ID": 16454, + "SourceStructureID": 72989, + "TargetStructureID": 16026, + "Label": "72989-16026 via Conventional from 115224 -> 25647", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115224, + "TargetID": 25647, + "Directional": true + } + ] + }, + { + "ID": 16455, + "SourceStructureID": 72989, + "TargetStructureID": 72994, + "Label": "72989-72994 via Conventional from 72990 -> 72995", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72990, + "TargetID": 72995, + "Directional": true + } + ] + }, + { + "ID": 16456, + "SourceStructureID": 72992, + "TargetStructureID": 72989, + "Label": "72992-72989 via Conventional from 72993 -> 72991", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 72993, + "TargetID": 72991, + "Directional": true + } + ] + }, + { + "ID": 16457, + "SourceStructureID": 73004, + "TargetStructureID": 6115, + "Label": "73004-6115 via Conventional from 73012 -> 75995", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73012, + "TargetID": 75995, + "Directional": true + } + ] + }, + { + "ID": 16458, + "SourceStructureID": 73006, + "TargetStructureID": 6115, + "Label": "73006-6115 via Conventional from 73013 -> 73014", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73013, + "TargetID": 73014, + "Directional": true + } + ] + }, + { + "ID": 16459, + "SourceStructureID": 73018, + "TargetStructureID": 6115, + "Label": "73018-6115 via Conventional from 73019 -> 73020", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73019, + "TargetID": 73020, + "Directional": true + } + ] + }, + { + "ID": 16460, + "SourceStructureID": 73025, + "TargetStructureID": 6115, + "Label": "73025-6115 via Conventional from 73026 -> 55897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73026, + "TargetID": 55897, + "Directional": true + } + ] + }, + { + "ID": 16461, + "SourceStructureID": 73033, + "TargetStructureID": 6115, + "Label": "73033-6115 via Conventional from 73034 -> 73035", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73034, + "TargetID": 73035, + "Directional": true + } + ] + }, + { + "ID": 16462, + "SourceStructureID": 73072, + "TargetStructureID": 6115, + "Label": "73072-6115 via Conventional from 73073 -> 73074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73073, + "TargetID": 73074, + "Directional": true + } + ] + }, + { + "ID": 16463, + "SourceStructureID": 73075, + "TargetStructureID": 6115, + "Label": "73075-6115 via Conventional from 73076 -> 73077", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73076, + "TargetID": 73077, + "Directional": true + } + ] + }, + { + "ID": 16464, + "SourceStructureID": 73078, + "TargetStructureID": 6115, + "Label": "73078-6115 via Conventional from 73079 -> 73080", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73079, + "TargetID": 73080, + "Directional": true + } + ] + }, + { + "ID": 16465, + "SourceStructureID": 73086, + "TargetStructureID": 6115, + "Label": "73086-6115 via Conventional from 84274 -> 73085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84274, + "TargetID": 73085, + "Directional": true + } + ] + }, + { + "ID": 16466, + "SourceStructureID": 73099, + "TargetStructureID": 6115, + "Label": "73099-6115 via Conventional from 73100 -> 73101", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73100, + "TargetID": 73101, + "Directional": true + } + ] + }, + { + "ID": 16467, + "SourceStructureID": 73102, + "TargetStructureID": 6115, + "Label": "73102-6115 via Conventional from 73103 -> 73104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73103, + "TargetID": 73104, + "Directional": true + } + ] + }, + { + "ID": 16468, + "SourceStructureID": 73105, + "TargetStructureID": 6115, + "Label": "73105-6115 via Conventional from 73106 -> 73107", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73106, + "TargetID": 73107, + "Directional": true + } + ] + }, + { + "ID": 16469, + "SourceStructureID": 73133, + "TargetStructureID": 6115, + "Label": "73133-6115 via Conventional from 73134 -> 73135", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73134, + "TargetID": 73135, + "Directional": true + } + ] + }, + { + "ID": 16470, + "SourceStructureID": 73144, + "TargetStructureID": 6115, + "Label": "73144-6115 via Conventional from 73152 -> 73153", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73152, + "TargetID": 73153, + "Directional": true + } + ] + }, + { + "ID": 16471, + "SourceStructureID": 73146, + "TargetStructureID": 6115, + "Label": "73146-6115 via Conventional from 73148 -> 73147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73148, + "TargetID": 73147, + "Directional": true + } + ] + }, + { + "ID": 16472, + "SourceStructureID": 73163, + "TargetStructureID": 68548, + "Label": "73163-68548 via Conventional from 73164 -> 73162", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73164, + "TargetID": 73162, + "Directional": true + } + ] + }, + { + "ID": 16473, + "SourceStructureID": 73166, + "TargetStructureID": 68548, + "Label": "73166-68548 via Conventional from 73167 -> 73168", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73167, + "TargetID": 73168, + "Directional": true + } + ] + }, + { + "ID": 16474, + "SourceStructureID": 73185, + "TargetStructureID": 6115, + "Label": "73185-6115 via Conventional from 73186 -> 73187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73186, + "TargetID": 73187, + "Directional": true + } + ] + }, + { + "ID": 16475, + "SourceStructureID": 73190, + "TargetStructureID": 6115, + "Label": "73190-6115 via Conventional from 73191 -> 73192", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73191, + "TargetID": 73192, + "Directional": true + } + ] + }, + { + "ID": 16476, + "SourceStructureID": 73197, + "TargetStructureID": 6115, + "Label": "73197-6115 via Conventional from 73198 -> 73199", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73198, + "TargetID": 73199, + "Directional": true + } + ] + }, + { + "ID": 16477, + "SourceStructureID": 73200, + "TargetStructureID": 6115, + "Label": "73200-6115 via Conventional from 73201 -> 73202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73201, + "TargetID": 73202, + "Directional": true + } + ] + }, + { + "ID": 16478, + "SourceStructureID": 73211, + "TargetStructureID": 6115, + "Label": "73211-6115 via Conventional from 73265 -> 73266", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73265, + "TargetID": 73266, + "Directional": true + } + ] + }, + { + "ID": 16479, + "SourceStructureID": 73212, + "TargetStructureID": 6115, + "Label": "73212-6115 via Conventional from 73213 -> 73214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73213, + "TargetID": 73214, + "Directional": true + } + ] + }, + { + "ID": 16480, + "SourceStructureID": 73225, + "TargetStructureID": 6115, + "Label": "73225-6115 via Conventional from 73226 -> 73227", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73226, + "TargetID": 73227, + "Directional": true + } + ] + }, + { + "ID": 16481, + "SourceStructureID": 73290, + "TargetStructureID": 73273, + "Label": "73290-73273 via Conventional from 73291 -> 73292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73291, + "TargetID": 73292, + "Directional": true + } + ] + }, + { + "ID": 16482, + "SourceStructureID": 73299, + "TargetStructureID": 6115, + "Label": "73299-6115 via Conventional from 73300 -> 55880", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73300, + "TargetID": 55880, + "Directional": true + } + ] + }, + { + "ID": 16483, + "SourceStructureID": 73309, + "TargetStructureID": 6115, + "Label": "73309-6115 via Conventional from 73311 -> 73310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73311, + "TargetID": 73310, + "Directional": true + } + ] + }, + { + "ID": 16484, + "SourceStructureID": 73314, + "TargetStructureID": 68539, + "Label": "73314-68539 via Conventional from 73315 -> 73061", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73315, + "TargetID": 73061, + "Directional": true + } + ] + }, + { + "ID": 16485, + "SourceStructureID": 73322, + "TargetStructureID": 68539, + "Label": "73322-68539 via Conventional from 73326 -> 73327", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73326, + "TargetID": 73327, + "Directional": true + } + ] + }, + { + "ID": 16486, + "SourceStructureID": 73339, + "TargetStructureID": 82039, + "Label": "73339-82039 via Conventional from 82040 -> 82041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82040, + "TargetID": 82041, + "Directional": true + } + ] + }, + { + "ID": 16487, + "SourceStructureID": 73342, + "TargetStructureID": 68539, + "Label": "73342-68539 via Conventional from 73344 -> 73345", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73344, + "TargetID": 73345, + "Directional": true + } + ] + }, + { + "ID": 16488, + "SourceStructureID": 73348, + "TargetStructureID": 5598, + "Label": "73348-5598 via Conventional from 73349 -> 59064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73349, + "TargetID": 59064, + "Directional": true + } + ] + }, + { + "ID": 16489, + "SourceStructureID": 73353, + "TargetStructureID": 68539, + "Label": "73353-68539 via Conventional from 73354 -> 73355", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73354, + "TargetID": 73355, + "Directional": true + } + ] + }, + { + "ID": 16490, + "SourceStructureID": 73357, + "TargetStructureID": 68539, + "Label": "73357-68539 via Conventional from 73358 -> 73356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73358, + "TargetID": 73356, + "Directional": true + } + ] + }, + { + "ID": 16491, + "SourceStructureID": 73363, + "TargetStructureID": 68539, + "Label": "73363-68539 via Conventional from 73364 -> 73362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73364, + "TargetID": 73362, + "Directional": true + } + ] + }, + { + "ID": 16492, + "SourceStructureID": 73371, + "TargetStructureID": 68539, + "Label": "73371-68539 via Conventional from 73379 -> 73383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73379, + "TargetID": 73383, + "Directional": true + } + ] + }, + { + "ID": 16493, + "SourceStructureID": 73384, + "TargetStructureID": 68539, + "Label": "73384-68539 via Conventional from 73385 -> 73389", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73385, + "TargetID": 73389, + "Directional": true + } + ] + }, + { + "ID": 16494, + "SourceStructureID": 73394, + "TargetStructureID": 68539, + "Label": "73394-68539 via Conventional from 73420 -> 73421", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73420, + "TargetID": 73421, + "Directional": true + } + ] + }, + { + "ID": 16495, + "SourceStructureID": 73394, + "TargetStructureID": 73397, + "Label": "73394-73397 via Conventional from 73395 -> 73398", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73395, + "TargetID": 73398, + "Directional": true + } + ] + }, + { + "ID": 16496, + "SourceStructureID": 73397, + "TargetStructureID": 73416, + "Label": "73397-73416 via Conventional from 73410 -> 73417", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73410, + "TargetID": 73417, + "Directional": true + } + ] + }, + { + "ID": 16497, + "SourceStructureID": 73422, + "TargetStructureID": 6115, + "Label": "73422-6115 via Conventional from 73423 -> 73424", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73423, + "TargetID": 73424, + "Directional": true + } + ] + }, + { + "ID": 16498, + "SourceStructureID": 73426, + "TargetStructureID": 6115, + "Label": "73426-6115 via Conventional from 116709 -> 73459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116709, + "TargetID": 73459, + "Directional": true + } + ] + }, + { + "ID": 16499, + "SourceStructureID": 73430, + "TargetStructureID": 6115, + "Label": "73430-6115 via Conventional from 73431 -> 73432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73431, + "TargetID": 73432, + "Directional": true + } + ] + }, + { + "ID": 16500, + "SourceStructureID": 73443, + "TargetStructureID": 6115, + "Label": "73443-6115 via Conventional from 73454 -> 73456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73454, + "TargetID": 73456, + "Directional": true + } + ] + }, + { + "ID": 16501, + "SourceStructureID": 73453, + "TargetStructureID": 68539, + "Label": "73453-68539 via Conventional from 73455 -> 73452", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73455, + "TargetID": 73452, + "Directional": true + } + ] + }, + { + "ID": 16502, + "SourceStructureID": 73467, + "TargetStructureID": 5649, + "Label": "73467-5649 via Conventional from 75677 -> 53847", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75677, + "TargetID": 53847, + "Directional": true + } + ] + }, + { + "ID": 16503, + "SourceStructureID": 73467, + "TargetStructureID": 68548, + "Label": "73467-68548 via Conventional from 73468 -> 73469", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73468, + "TargetID": 73469, + "Directional": true + } + ] + }, + { + "ID": 16504, + "SourceStructureID": 73476, + "TargetStructureID": 6115, + "Label": "73476-6115 via Conventional from 134225 -> 134226", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134225, + "TargetID": 134226, + "Directional": true + } + ] + }, + { + "ID": 16505, + "SourceStructureID": 73488, + "TargetStructureID": 6115, + "Label": "73488-6115 via Conventional from 73498 -> 73499", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73498, + "TargetID": 73499, + "Directional": true + } + ] + }, + { + "ID": 16506, + "SourceStructureID": 73509, + "TargetStructureID": 6115, + "Label": "73509-6115 via Conventional from 73512 -> 73513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73512, + "TargetID": 73513, + "Directional": true + } + ] + }, + { + "ID": 16507, + "SourceStructureID": 73514, + "TargetStructureID": 6115, + "Label": "73514-6115 via Conventional from 73515 -> 73516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73515, + "TargetID": 73516, + "Directional": true + } + ] + }, + { + "ID": 16508, + "SourceStructureID": 73518, + "TargetStructureID": 6115, + "Label": "73518-6115 via Conventional from 73519 -> 73520", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73519, + "TargetID": 73520, + "Directional": true + } + ] + }, + { + "ID": 16509, + "SourceStructureID": 73524, + "TargetStructureID": 6115, + "Label": "73524-6115 via Conventional from 73530 -> 73531", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73530, + "TargetID": 73531, + "Directional": true + } + ] + }, + { + "ID": 16510, + "SourceStructureID": 73535, + "TargetStructureID": 6115, + "Label": "73535-6115 via Conventional from 134227 -> 134228", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134227, + "TargetID": 134228, + "Directional": true + } + ] + }, + { + "ID": 16511, + "SourceStructureID": 73542, + "TargetStructureID": 6115, + "Label": "73542-6115 via Conventional from 73549 -> 73550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73549, + "TargetID": 73550, + "Directional": true + } + ] + }, + { + "ID": 16512, + "SourceStructureID": 73573, + "TargetStructureID": 68548, + "Label": "73573-68548 via Conventional from 73575 -> 73576", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73575, + "TargetID": 73576, + "Directional": true + } + ] + }, + { + "ID": 16513, + "SourceStructureID": 73583, + "TargetStructureID": 5442, + "Label": "73583-5442 via Conventional from 73584 -> 73582", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73584, + "TargetID": 73582, + "Directional": true + } + ] + }, + { + "ID": 16514, + "SourceStructureID": 73601, + "TargetStructureID": 68539, + "Label": "73601-68539 via Conventional from 73602 -> 73600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73602, + "TargetID": 73600, + "Directional": true + } + ] + }, + { + "ID": 16515, + "SourceStructureID": 73605, + "TargetStructureID": 68539, + "Label": "73605-68539 via Conventional from 73608 -> 73604", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73608, + "TargetID": 73604, + "Directional": true + } + ] + }, + { + "ID": 16516, + "SourceStructureID": 73606, + "TargetStructureID": 8580, + "Label": "73606-8580 via Conventional from 73607 -> 73609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73607, + "TargetID": 73609, + "Directional": true + } + ] + }, + { + "ID": 16517, + "SourceStructureID": 73611, + "TargetStructureID": 68539, + "Label": "73611-68539 via Conventional from 73612 -> 73610", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73612, + "TargetID": 73610, + "Directional": true + } + ] + }, + { + "ID": 16518, + "SourceStructureID": 73613, + "TargetStructureID": 68539, + "Label": "73613-68539 via Conventional from 73614 -> 73615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73614, + "TargetID": 73615, + "Directional": true + } + ] + }, + { + "ID": 16519, + "SourceStructureID": 73619, + "TargetStructureID": 8580, + "Label": "73619-8580 via Conventional from 73622 -> 73626", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73622, + "TargetID": 73626, + "Directional": true + } + ] + }, + { + "ID": 16520, + "SourceStructureID": 73620, + "TargetStructureID": 68539, + "Label": "73620-68539 via Conventional from 73634 -> 73633", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73634, + "TargetID": 73633, + "Directional": true + } + ] + }, + { + "ID": 16521, + "SourceStructureID": 73621, + "TargetStructureID": 68539, + "Label": "73621-68539 via Conventional from 73630 -> 73632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73630, + "TargetID": 73632, + "Directional": true + } + ] + }, + { + "ID": 16522, + "SourceStructureID": 73628, + "TargetStructureID": 8580, + "Label": "73628-8580 via Conventional from 73629 -> 73627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73629, + "TargetID": 73627, + "Directional": true + } + ] + }, + { + "ID": 16523, + "SourceStructureID": 73635, + "TargetStructureID": 68539, + "Label": "73635-68539 via Conventional from 73636 -> 73637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73636, + "TargetID": 73637, + "Directional": true + } + ] + }, + { + "ID": 16524, + "SourceStructureID": 73639, + "TargetStructureID": 73635, + "Label": "73639-73635 via Conventional from 73640 -> 73638", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73640, + "TargetID": 73638, + "Directional": true + } + ] + }, + { + "ID": 16525, + "SourceStructureID": 73646, + "TargetStructureID": 68539, + "Label": "73646-68539 via Conventional from 73647 -> 73648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73647, + "TargetID": 73648, + "Directional": true + } + ] + }, + { + "ID": 16526, + "SourceStructureID": 73649, + "TargetStructureID": 68539, + "Label": "73649-68539 via Conventional from 73650 -> 73651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73650, + "TargetID": 73651, + "Directional": true + } + ] + }, + { + "ID": 16527, + "SourceStructureID": 73652, + "TargetStructureID": 68539, + "Label": "73652-68539 via Conventional from 73653 -> 73654", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73653, + "TargetID": 73654, + "Directional": true + } + ] + }, + { + "ID": 16528, + "SourceStructureID": 73658, + "TargetStructureID": 73655, + "Label": "73658-73655 via Conventional from 73659 -> 73656", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73659, + "TargetID": 73656, + "Directional": true + } + ] + }, + { + "ID": 16529, + "SourceStructureID": 73662, + "TargetStructureID": 73655, + "Label": "73662-73655 via Conventional from 73663 -> 73661", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73663, + "TargetID": 73661, + "Directional": true + } + ] + }, + { + "ID": 16530, + "SourceStructureID": 73671, + "TargetStructureID": 8580, + "Label": "73671-8580 via Conventional from 73672 -> 73670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73672, + "TargetID": 73670, + "Directional": true + } + ] + }, + { + "ID": 16531, + "SourceStructureID": 73683, + "TargetStructureID": 68539, + "Label": "73683-68539 via Conventional from 73684 -> 73685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73684, + "TargetID": 73685, + "Directional": true + } + ] + }, + { + "ID": 16532, + "SourceStructureID": 73687, + "TargetStructureID": 68539, + "Label": "73687-68539 via Conventional from 73688 -> 73689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73688, + "TargetID": 73689, + "Directional": true + } + ] + }, + { + "ID": 16533, + "SourceStructureID": 73690, + "TargetStructureID": 68539, + "Label": "73690-68539 via Conventional from 73691 -> 73695", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73691, + "TargetID": 73695, + "Directional": true + } + ] + }, + { + "ID": 16534, + "SourceStructureID": 73693, + "TargetStructureID": 73690, + "Label": "73693-73690 via Conventional from 73694 -> 73692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73694, + "TargetID": 73692, + "Directional": true + } + ] + }, + { + "ID": 16535, + "SourceStructureID": 73698, + "TargetStructureID": 68539, + "Label": "73698-68539 via Conventional from 73699 -> 73700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73699, + "TargetID": 73700, + "Directional": true + } + ] + }, + { + "ID": 16536, + "SourceStructureID": 73702, + "TargetStructureID": 68539, + "Label": "73702-68539 via Conventional from 73703 -> 73701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73703, + "TargetID": 73701, + "Directional": true + } + ] + }, + { + "ID": 16537, + "SourceStructureID": 73704, + "TargetStructureID": 5531, + "Label": "73704-5531 via Conventional from 105308 -> 105309", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105308, + "TargetID": 105309, + "Directional": true + } + ] + }, + { + "ID": 16538, + "SourceStructureID": 73704, + "TargetStructureID": 8580, + "Label": "73704-8580 via Conventional from 73706 -> 73705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73706, + "TargetID": 73705, + "Directional": true + } + ] + }, + { + "ID": 16539, + "SourceStructureID": 73707, + "TargetStructureID": 68539, + "Label": "73707-68539 via Conventional from 73708 -> 73709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73708, + "TargetID": 73709, + "Directional": true + } + ] + }, + { + "ID": 16540, + "SourceStructureID": 73710, + "TargetStructureID": 68539, + "Label": "73710-68539 via Conventional from 73711 -> 73712", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73711, + "TargetID": 73712, + "Directional": true + } + ] + }, + { + "ID": 16541, + "SourceStructureID": 73713, + "TargetStructureID": 8580, + "Label": "73713-8580 via Conventional from 73715 -> 73714", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73715, + "TargetID": 73714, + "Directional": true + } + ] + }, + { + "ID": 16542, + "SourceStructureID": 73720, + "TargetStructureID": 73710, + "Label": "73720-73710 via Conventional from 73721 -> 73717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73721, + "TargetID": 73717, + "Directional": true + } + ] + }, + { + "ID": 16543, + "SourceStructureID": 73722, + "TargetStructureID": 68539, + "Label": "73722-68539 via BC Conventional Synapse from 73723 -> 73724", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73723, + "TargetID": 73724, + "Directional": true + } + ] + }, + { + "ID": 16544, + "SourceStructureID": 73722, + "TargetStructureID": 68539, + "Label": "73722-68539 via Ribbon Synapse from 73726 -> 73727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73726, + "TargetID": 73727, + "Directional": true + } + ] + }, + { + "ID": 16545, + "SourceStructureID": 73722, + "TargetStructureID": 71351, + "Label": "73722-71351 via Ribbon Synapse from 73726 -> 73729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73726, + "TargetID": 73729, + "Directional": true + } + ] + }, + { + "ID": 16546, + "SourceStructureID": 73732, + "TargetStructureID": 8580, + "Label": "73732-8580 via Conventional from 73734 -> 73733", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73734, + "TargetID": 73733, + "Directional": true + } + ] + }, + { + "ID": 16547, + "SourceStructureID": 73735, + "TargetStructureID": 68539, + "Label": "73735-68539 via Conventional from 73736 -> 73737", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73736, + "TargetID": 73737, + "Directional": true + } + ] + }, + { + "ID": 16548, + "SourceStructureID": 73739, + "TargetStructureID": 68539, + "Label": "73739-68539 via Conventional from 73740 -> 73738", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73740, + "TargetID": 73738, + "Directional": true + } + ] + }, + { + "ID": 16549, + "SourceStructureID": 73742, + "TargetStructureID": 68539, + "Label": "73742-68539 via Conventional from 73743 -> 73741, 73744 -> 73745", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73743, + "TargetID": 73741, + "Directional": true + }, + { + "SourceID": 73744, + "TargetID": 73745, + "Directional": true + } + ] + }, + { + "ID": 16550, + "SourceStructureID": 73747, + "TargetStructureID": 68539, + "Label": "73747-68539 via Conventional from 73748 -> 73746", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73748, + "TargetID": 73746, + "Directional": true + } + ] + }, + { + "ID": 16551, + "SourceStructureID": 73750, + "TargetStructureID": 68539, + "Label": "73750-68539 via Conventional from 73751 -> 73752, 73755 -> 73754, 73756 -> 73758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73751, + "TargetID": 73752, + "Directional": true + }, + { + "SourceID": 73755, + "TargetID": 73754, + "Directional": true + }, + { + "SourceID": 73756, + "TargetID": 73758, + "Directional": true + } + ] + }, + { + "ID": 16552, + "SourceStructureID": 73759, + "TargetStructureID": 68539, + "Label": "73759-68539 via Unknown from 73760 -> 73761", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 73760, + "TargetID": 73761, + "Directional": true + } + ] + }, + { + "ID": 16553, + "SourceStructureID": 73764, + "TargetStructureID": 68539, + "Label": "73764-68539 via Conventional from 73765 -> 73763, 73766 -> 73762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73765, + "TargetID": 73763, + "Directional": true + }, + { + "SourceID": 73766, + "TargetID": 73762, + "Directional": true + } + ] + }, + { + "ID": 16554, + "SourceStructureID": 73781, + "TargetStructureID": 6115, + "Label": "73781-6115 via Conventional from 73782 -> 73783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73782, + "TargetID": 73783, + "Directional": true + } + ] + }, + { + "ID": 16555, + "SourceStructureID": 73790, + "TargetStructureID": 6115, + "Label": "73790-6115 via Conventional from 73791 -> 73789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73791, + "TargetID": 73789, + "Directional": true + } + ] + }, + { + "ID": 16556, + "SourceStructureID": 73800, + "TargetStructureID": 6115, + "Label": "73800-6115 via Conventional from 73802 -> 73801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73802, + "TargetID": 73801, + "Directional": true + } + ] + }, + { + "ID": 16557, + "SourceStructureID": 73807, + "TargetStructureID": 5650, + "Label": "73807-5650 via Conventional from 82109 -> 82110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82109, + "TargetID": 82110, + "Directional": true + } + ] + }, + { + "ID": 16558, + "SourceStructureID": 73807, + "TargetStructureID": 66523, + "Label": "73807-66523 via Conventional from 75330 -> 75331", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75330, + "TargetID": 75331, + "Directional": true + } + ] + }, + { + "ID": 16559, + "SourceStructureID": 73807, + "TargetStructureID": 82405, + "Label": "73807-82405 via Conventional from 82404 -> 82406", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82404, + "TargetID": 82406, + "Directional": true + } + ] + }, + { + "ID": 16560, + "SourceStructureID": 73810, + "TargetStructureID": 8580, + "Label": "73810-8580 via Conventional from 73811 -> 73812", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73811, + "TargetID": 73812, + "Directional": true + } + ] + }, + { + "ID": 16561, + "SourceStructureID": 73814, + "TargetStructureID": 6115, + "Label": "73814-6115 via Conventional from 73816 -> 73815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73816, + "TargetID": 73815, + "Directional": true + } + ] + }, + { + "ID": 16562, + "SourceStructureID": 73817, + "TargetStructureID": 6115, + "Label": "73817-6115 via Conventional from 73818 -> 73819", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73818, + "TargetID": 73819, + "Directional": true + } + ] + }, + { + "ID": 16563, + "SourceStructureID": 73830, + "TargetStructureID": 352, + "Label": "73830-352 via Conventional from 73831 -> 73829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73831, + "TargetID": 73829, + "Directional": true + } + ] + }, + { + "ID": 16564, + "SourceStructureID": 73833, + "TargetStructureID": 352, + "Label": "73833-352 via Conventional from 73834 -> 73832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73834, + "TargetID": 73832, + "Directional": true + } + ] + }, + { + "ID": 16565, + "SourceStructureID": 73844, + "TargetStructureID": 352, + "Label": "73844-352 via Conventional from 73845 -> 73841", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73845, + "TargetID": 73841, + "Directional": true + } + ] + }, + { + "ID": 16566, + "SourceStructureID": 73844, + "TargetStructureID": 73906, + "Label": "73844-73906 via Conventional from 73902 -> 73908", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73902, + "TargetID": 73908, + "Directional": true + } + ] + }, + { + "ID": 16567, + "SourceStructureID": 73846, + "TargetStructureID": 6115, + "Label": "73846-6115 via Conventional from 73847 -> 73848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73847, + "TargetID": 73848, + "Directional": true + } + ] + }, + { + "ID": 16568, + "SourceStructureID": 73855, + "TargetStructureID": 6115, + "Label": "73855-6115 via Conventional from 73857 -> 73856", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73857, + "TargetID": 73856, + "Directional": true + } + ] + }, + { + "ID": 16569, + "SourceStructureID": 73868, + "TargetStructureID": 6115, + "Label": "73868-6115 via Conventional from 73869 -> 73870", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73869, + "TargetID": 73870, + "Directional": true + } + ] + }, + { + "ID": 16570, + "SourceStructureID": 73881, + "TargetStructureID": 6115, + "Label": "73881-6115 via Conventional from 73882 -> 73883", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73882, + "TargetID": 73883, + "Directional": true + } + ] + }, + { + "ID": 16571, + "SourceStructureID": 73891, + "TargetStructureID": 6115, + "Label": "73891-6115 via Conventional from 73892 -> 73893", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73892, + "TargetID": 73893, + "Directional": true + } + ] + }, + { + "ID": 16572, + "SourceStructureID": 73904, + "TargetStructureID": 6115, + "Label": "73904-6115 via Conventional from 73905 -> 73903, 73912 -> 73913", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73905, + "TargetID": 73903, + "Directional": true + }, + { + "SourceID": 73912, + "TargetID": 73913, + "Directional": true + } + ] + }, + { + "ID": 16573, + "SourceStructureID": 73906, + "TargetStructureID": 73844, + "Label": "73906-73844 via Ribbon Synapse from 73907 -> 73901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 73907, + "TargetID": 73901, + "Directional": true + } + ] + }, + { + "ID": 16574, + "SourceStructureID": 73926, + "TargetStructureID": 6115, + "Label": "73926-6115 via Conventional from 73932 -> 73933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73932, + "TargetID": 73933, + "Directional": true + } + ] + }, + { + "ID": 16575, + "SourceStructureID": 73940, + "TargetStructureID": 6115, + "Label": "73940-6115 via Conventional from 73942 -> 73941, 73956 -> 73957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73942, + "TargetID": 73941, + "Directional": true + }, + { + "SourceID": 73956, + "TargetID": 73957, + "Directional": true + } + ] + }, + { + "ID": 16576, + "SourceStructureID": 73949, + "TargetStructureID": 6115, + "Label": "73949-6115 via Conventional from 73951 -> 73950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73951, + "TargetID": 73950, + "Directional": true + } + ] + }, + { + "ID": 16577, + "SourceStructureID": 73970, + "TargetStructureID": 6115, + "Label": "73970-6115 via Conventional from 73973 -> 56313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73973, + "TargetID": 56313, + "Directional": true + } + ] + }, + { + "ID": 16578, + "SourceStructureID": 73974, + "TargetStructureID": 606, + "Label": "73974-606 via Conventional from 73975 -> 48105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73975, + "TargetID": 48105, + "Directional": true + } + ] + }, + { + "ID": 16579, + "SourceStructureID": 73979, + "TargetStructureID": 6115, + "Label": "73979-6115 via Conventional from 73998 -> 73999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73998, + "TargetID": 73999, + "Directional": true + } + ] + }, + { + "ID": 16580, + "SourceStructureID": 73987, + "TargetStructureID": 5598, + "Label": "73987-5598 via Conventional from 73988 -> 73986", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73988, + "TargetID": 73986, + "Directional": true + } + ] + }, + { + "ID": 16581, + "SourceStructureID": 73991, + "TargetStructureID": 6115, + "Label": "73991-6115 via Conventional from 73992 -> 73993", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73992, + "TargetID": 73993, + "Directional": true + } + ] + }, + { + "ID": 16582, + "SourceStructureID": 73994, + "TargetStructureID": 6115, + "Label": "73994-6115 via Conventional from 73996 -> 73995", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 73996, + "TargetID": 73995, + "Directional": true + } + ] + }, + { + "ID": 16583, + "SourceStructureID": 74013, + "TargetStructureID": 6115, + "Label": "74013-6115 via Conventional from 74015 -> 74014", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74015, + "TargetID": 74014, + "Directional": true + } + ] + }, + { + "ID": 16584, + "SourceStructureID": 74018, + "TargetStructureID": 6115, + "Label": "74018-6115 via Conventional from 74019 -> 74020", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74019, + "TargetID": 74020, + "Directional": true + } + ] + }, + { + "ID": 16585, + "SourceStructureID": 74023, + "TargetStructureID": 5442, + "Label": "74023-5442 via Conventional from 74024 -> 74027", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74024, + "TargetID": 74027, + "Directional": true + } + ] + }, + { + "ID": 16586, + "SourceStructureID": 74035, + "TargetStructureID": 6115, + "Label": "74035-6115 via Conventional from 74037 -> 74036", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74037, + "TargetID": 74036, + "Directional": true + } + ] + }, + { + "ID": 16587, + "SourceStructureID": 74042, + "TargetStructureID": 6115, + "Label": "74042-6115 via Conventional from 74044 -> 74043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74044, + "TargetID": 74043, + "Directional": true + } + ] + }, + { + "ID": 16588, + "SourceStructureID": 74053, + "TargetStructureID": 6857, + "Label": "74053-6857 via Conventional from 74054 -> 7555", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74054, + "TargetID": 7555, + "Directional": true + } + ] + }, + { + "ID": 16589, + "SourceStructureID": 74058, + "TargetStructureID": 6857, + "Label": "74058-6857 via Conventional from 74059 -> 7560", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74059, + "TargetID": 7560, + "Directional": true + } + ] + }, + { + "ID": 16590, + "SourceStructureID": 74064, + "TargetStructureID": 6115, + "Label": "74064-6115 via Conventional from 74066 -> 74065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74066, + "TargetID": 74065, + "Directional": true + } + ] + }, + { + "ID": 16591, + "SourceStructureID": 74077, + "TargetStructureID": 6115, + "Label": "74077-6115 via Conventional from 74079 -> 56316, 74080 -> 56316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74079, + "TargetID": 56316, + "Directional": true + }, + { + "SourceID": 74080, + "TargetID": 56316, + "Directional": true + } + ] + }, + { + "ID": 16592, + "SourceStructureID": 74081, + "TargetStructureID": 5530, + "Label": "74081-5530 via Conventional from 74209 -> 74210", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74209, + "TargetID": 74210, + "Directional": true + } + ] + }, + { + "ID": 16593, + "SourceStructureID": 74082, + "TargetStructureID": 82094, + "Label": "74082-82094 via Conventional from 82096 -> 82095", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82096, + "TargetID": 82095, + "Directional": true + } + ] + }, + { + "ID": 16594, + "SourceStructureID": 74086, + "TargetStructureID": 6115, + "Label": "74086-6115 via Conventional from 74092 -> 74093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74092, + "TargetID": 74093, + "Directional": true + } + ] + }, + { + "ID": 16595, + "SourceStructureID": 74098, + "TargetStructureID": 6115, + "Label": "74098-6115 via Conventional from 74099 -> 74100", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74099, + "TargetID": 74100, + "Directional": true + } + ] + }, + { + "ID": 16596, + "SourceStructureID": 74135, + "TargetStructureID": 6857, + "Label": "74135-6857 via Conventional from 74136 -> 6876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74136, + "TargetID": 6876, + "Directional": true + } + ] + }, + { + "ID": 16597, + "SourceStructureID": 74211, + "TargetStructureID": 5530, + "Label": "74211-5530 via Conventional from 74212 -> 29866", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74212, + "TargetID": 29866, + "Directional": true + } + ] + }, + { + "ID": 16598, + "SourceStructureID": 74213, + "TargetStructureID": 5530, + "Label": "74213-5530 via Conventional from 74214 -> 74215", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74214, + "TargetID": 74215, + "Directional": true + } + ] + }, + { + "ID": 16599, + "SourceStructureID": 74216, + "TargetStructureID": 5530, + "Label": "74216-5530 via Conventional from 74578 -> 74580", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74578, + "TargetID": 74580, + "Directional": true + } + ] + }, + { + "ID": 16600, + "SourceStructureID": 74216, + "TargetStructureID": 54925, + "Label": "74216-54925 via Conventional from 81817 -> 54935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81817, + "TargetID": 54935, + "Directional": true + } + ] + }, + { + "ID": 16601, + "SourceStructureID": 74216, + "TargetStructureID": 74584, + "Label": "74216-74584 via Conventional from 81813 -> 81814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81813, + "TargetID": 81814, + "Directional": true + } + ] + }, + { + "ID": 16602, + "SourceStructureID": 74217, + "TargetStructureID": 5530, + "Label": "74217-5530 via Conventional from 74218 -> 74219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74218, + "TargetID": 74219, + "Directional": true + } + ] + }, + { + "ID": 16603, + "SourceStructureID": 74225, + "TargetStructureID": 5530, + "Label": "74225-5530 via Conventional from 75749 -> 75750", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75749, + "TargetID": 75750, + "Directional": true + } + ] + }, + { + "ID": 16604, + "SourceStructureID": 74228, + "TargetStructureID": 68539, + "Label": "74228-68539 via Conventional from 74229 -> 74230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74229, + "TargetID": 74230, + "Directional": true + } + ] + }, + { + "ID": 16605, + "SourceStructureID": 74231, + "TargetStructureID": 74233, + "Label": "74231-74233 via Conventional from 74232 -> 74235", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74232, + "TargetID": 74235, + "Directional": true + } + ] + }, + { + "ID": 16606, + "SourceStructureID": 74233, + "TargetStructureID": 68539, + "Label": "74233-68539 via Conventional from 74234 -> 74236", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74234, + "TargetID": 74236, + "Directional": true + } + ] + }, + { + "ID": 16607, + "SourceStructureID": 74237, + "TargetStructureID": 74239, + "Label": "74237-74239 via Conventional from 74264 -> 74265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74264, + "TargetID": 74265, + "Directional": true + } + ] + }, + { + "ID": 16608, + "SourceStructureID": 74239, + "TargetStructureID": 68539, + "Label": "74239-68539 via Conventional from 74247 -> 74248", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74247, + "TargetID": 74248, + "Directional": true + } + ] + }, + { + "ID": 16609, + "SourceStructureID": 74241, + "TargetStructureID": 74240, + "Label": "74241-74240 via Conventional from 74243 -> 74244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74243, + "TargetID": 74244, + "Directional": true + } + ] + }, + { + "ID": 16610, + "SourceStructureID": 74252, + "TargetStructureID": 68539, + "Label": "74252-68539 via Conventional from 74253 -> 74259", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74253, + "TargetID": 74259, + "Directional": true + } + ] + }, + { + "ID": 16611, + "SourceStructureID": 74269, + "TargetStructureID": 68539, + "Label": "74269-68539 via Conventional from 74270 -> 74271", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74270, + "TargetID": 74271, + "Directional": true + } + ] + }, + { + "ID": 16612, + "SourceStructureID": 74282, + "TargetStructureID": 68539, + "Label": "74282-68539 via Conventional from 74283 -> 74284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74283, + "TargetID": 74284, + "Directional": true + } + ] + }, + { + "ID": 16613, + "SourceStructureID": 74291, + "TargetStructureID": 6115, + "Label": "74291-6115 via Conventional from 74295 -> 55778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74295, + "TargetID": 55778, + "Directional": true + } + ] + }, + { + "ID": 16614, + "SourceStructureID": 74297, + "TargetStructureID": 68539, + "Label": "74297-68539 via Conventional from 74298 -> 74296", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74298, + "TargetID": 74296, + "Directional": true + } + ] + }, + { + "ID": 16615, + "SourceStructureID": 74303, + "TargetStructureID": 6115, + "Label": "74303-6115 via Conventional from 74304 -> 74305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74304, + "TargetID": 74305, + "Directional": true + } + ] + }, + { + "ID": 16616, + "SourceStructureID": 74308, + "TargetStructureID": 6115, + "Label": "74308-6115 via Conventional from 74309 -> 74310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74309, + "TargetID": 74310, + "Directional": true + } + ] + }, + { + "ID": 16617, + "SourceStructureID": 74317, + "TargetStructureID": 6115, + "Label": "74317-6115 via Conventional from 74318 -> 55781", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74318, + "TargetID": 55781, + "Directional": true + } + ] + }, + { + "ID": 16618, + "SourceStructureID": 74321, + "TargetStructureID": 6115, + "Label": "74321-6115 via Conventional from 74322 -> 55782", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74322, + "TargetID": 55782, + "Directional": true + } + ] + }, + { + "ID": 16619, + "SourceStructureID": 74341, + "TargetStructureID": 68539, + "Label": "74341-68539 via Conventional from 74347 -> 74348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74347, + "TargetID": 74348, + "Directional": true + } + ] + }, + { + "ID": 16620, + "SourceStructureID": 74350, + "TargetStructureID": 68539, + "Label": "74350-68539 via Conventional from 74353 -> 74352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74353, + "TargetID": 74352, + "Directional": true + } + ] + }, + { + "ID": 16621, + "SourceStructureID": 74369, + "TargetStructureID": 74047, + "Label": "74369-74047 via Conventional from 74371 -> 74373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74371, + "TargetID": 74373, + "Directional": true + } + ] + }, + { + "ID": 16622, + "SourceStructureID": 74377, + "TargetStructureID": 74047, + "Label": "74377-74047 via Conventional from 74378 -> 74376", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74378, + "TargetID": 74376, + "Directional": true + } + ] + }, + { + "ID": 16623, + "SourceStructureID": 74379, + "TargetStructureID": 68539, + "Label": "74379-68539 via Conventional from 74380 -> 74381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74380, + "TargetID": 74381, + "Directional": true + } + ] + }, + { + "ID": 16624, + "SourceStructureID": 74385, + "TargetStructureID": 6115, + "Label": "74385-6115 via Conventional from 74386 -> 74387", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74386, + "TargetID": 74387, + "Directional": true + } + ] + }, + { + "ID": 16625, + "SourceStructureID": 74388, + "TargetStructureID": 6115, + "Label": "74388-6115 via Conventional from 74391 -> 74392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74391, + "TargetID": 74392, + "Directional": true + } + ] + }, + { + "ID": 16626, + "SourceStructureID": 74399, + "TargetStructureID": 74047, + "Label": "74399-74047 via Conventional from 74400 -> 74398", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74400, + "TargetID": 74398, + "Directional": true + } + ] + }, + { + "ID": 16627, + "SourceStructureID": 74402, + "TargetStructureID": 6115, + "Label": "74402-6115 via Conventional from 74403 -> 74404", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74403, + "TargetID": 74404, + "Directional": true + } + ] + }, + { + "ID": 16628, + "SourceStructureID": 74407, + "TargetStructureID": 68539, + "Label": "74407-68539 via Conventional from 74408 -> 74409", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74408, + "TargetID": 74409, + "Directional": true + } + ] + }, + { + "ID": 16629, + "SourceStructureID": 74412, + "TargetStructureID": 68539, + "Label": "74412-68539 via Conventional from 74419 -> 74420", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74419, + "TargetID": 74420, + "Directional": true + } + ] + }, + { + "ID": 16630, + "SourceStructureID": 74424, + "TargetStructureID": 6115, + "Label": "74424-6115 via Conventional from 75963 -> 75962", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75963, + "TargetID": 75962, + "Directional": true + } + ] + }, + { + "ID": 16631, + "SourceStructureID": 74441, + "TargetStructureID": 6115, + "Label": "74441-6115 via Conventional from 74446 -> 74447", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74446, + "TargetID": 74447, + "Directional": true + } + ] + }, + { + "ID": 16632, + "SourceStructureID": 74448, + "TargetStructureID": 6115, + "Label": "74448-6115 via Conventional from 74449 -> 74450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74449, + "TargetID": 74450, + "Directional": true + } + ] + }, + { + "ID": 16633, + "SourceStructureID": 74456, + "TargetStructureID": 6115, + "Label": "74456-6115 via Conventional from 74457 -> 74458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74457, + "TargetID": 74458, + "Directional": true + } + ] + }, + { + "ID": 16634, + "SourceStructureID": 74460, + "TargetStructureID": 6115, + "Label": "74460-6115 via Conventional from 74464 -> 74465", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74464, + "TargetID": 74465, + "Directional": true + } + ] + }, + { + "ID": 16635, + "SourceStructureID": 74471, + "TargetStructureID": 6115, + "Label": "74471-6115 via Conventional from 74472 -> 74473", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74472, + "TargetID": 74473, + "Directional": true + } + ] + }, + { + "ID": 16636, + "SourceStructureID": 74482, + "TargetStructureID": 5442, + "Label": "74482-5442 via Conventional from 74483 -> 55129", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74483, + "TargetID": 55129, + "Directional": true + } + ] + }, + { + "ID": 16637, + "SourceStructureID": 74489, + "TargetStructureID": 6115, + "Label": "74489-6115 via Conventional from 74491 -> 74492", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74491, + "TargetID": 74492, + "Directional": true + } + ] + }, + { + "ID": 16638, + "SourceStructureID": 74493, + "TargetStructureID": 6115, + "Label": "74493-6115 via Conventional from 74494 -> 74495", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74494, + "TargetID": 74495, + "Directional": true + } + ] + }, + { + "ID": 16639, + "SourceStructureID": 74499, + "TargetStructureID": 6115, + "Label": "74499-6115 via Conventional from 74500 -> 74501", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74500, + "TargetID": 74501, + "Directional": true + } + ] + }, + { + "ID": 16640, + "SourceStructureID": 74505, + "TargetStructureID": 6115, + "Label": "74505-6115 via Conventional from 74506 -> 74507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74506, + "TargetID": 74507, + "Directional": true + } + ] + }, + { + "ID": 16641, + "SourceStructureID": 74511, + "TargetStructureID": 6115, + "Label": "74511-6115 via Conventional from 74512 -> 74513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74512, + "TargetID": 74513, + "Directional": true + } + ] + }, + { + "ID": 16642, + "SourceStructureID": 74527, + "TargetStructureID": 6115, + "Label": "74527-6115 via Conventional from 74528 -> 74529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74528, + "TargetID": 74529, + "Directional": true + } + ] + }, + { + "ID": 16643, + "SourceStructureID": 74548, + "TargetStructureID": 68539, + "Label": "74548-68539 via Conventional from 74549 -> 74547", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74549, + "TargetID": 74547, + "Directional": true + } + ] + }, + { + "ID": 16644, + "SourceStructureID": 74555, + "TargetStructureID": 68539, + "Label": "74555-68539 via Conventional from 74556 -> 74557", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74556, + "TargetID": 74557, + "Directional": true + } + ] + }, + { + "ID": 16645, + "SourceStructureID": 74558, + "TargetStructureID": 68539, + "Label": "74558-68539 via Conventional from 74559 -> 74562, 74560 -> 74561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74559, + "TargetID": 74562, + "Directional": true + }, + { + "SourceID": 74560, + "TargetID": 74561, + "Directional": true + } + ] + }, + { + "ID": 16646, + "SourceStructureID": 74563, + "TargetStructureID": 68539, + "Label": "74563-68539 via Conventional from 74564 -> 74565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74564, + "TargetID": 74565, + "Directional": true + } + ] + }, + { + "ID": 16647, + "SourceStructureID": 74567, + "TargetStructureID": 68539, + "Label": "74567-68539 via Conventional from 74568 -> 74566", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74568, + "TargetID": 74566, + "Directional": true + } + ] + }, + { + "ID": 16648, + "SourceStructureID": 74573, + "TargetStructureID": 68539, + "Label": "74573-68539 via Conventional from 74574 -> 74572", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74574, + "TargetID": 74572, + "Directional": true + } + ] + }, + { + "ID": 16649, + "SourceStructureID": 74576, + "TargetStructureID": 68539, + "Label": "74576-68539 via Conventional from 74577 -> 74579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74577, + "TargetID": 74579, + "Directional": true + } + ] + }, + { + "ID": 16650, + "SourceStructureID": 74584, + "TargetStructureID": 595, + "Label": "74584-595 via Conventional from 81796 -> 81795", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81796, + "TargetID": 81795, + "Directional": true + } + ] + }, + { + "ID": 16651, + "SourceStructureID": 74584, + "TargetStructureID": 5530, + "Label": "74584-5530 via Conventional from 74642 -> 30063, 81791 -> 81792", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74642, + "TargetID": 30063, + "Directional": true + }, + { + "SourceID": 81791, + "TargetID": 81792, + "Directional": true + } + ] + }, + { + "ID": 16652, + "SourceStructureID": 74590, + "TargetStructureID": 74593, + "Label": "74590-74593 via Conventional from 74592 -> 74594", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74592, + "TargetID": 74594, + "Directional": true + } + ] + }, + { + "ID": 16653, + "SourceStructureID": 74590, + "TargetStructureID": 74601, + "Label": "74590-74601 via Conventional from 74603 -> 74605", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74603, + "TargetID": 74605, + "Directional": true + } + ] + }, + { + "ID": 16654, + "SourceStructureID": 74610, + "TargetStructureID": 68539, + "Label": "74610-68539 via Conventional from 74611 -> 74609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74611, + "TargetID": 74609, + "Directional": true + } + ] + }, + { + "ID": 16655, + "SourceStructureID": 74618, + "TargetStructureID": 68539, + "Label": "74618-68539 via Conventional from 74619 -> 74617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74619, + "TargetID": 74617, + "Directional": true + } + ] + }, + { + "ID": 16656, + "SourceStructureID": 74625, + "TargetStructureID": 74624, + "Label": "74625-74624 via Conventional from 74626 -> 74628", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74626, + "TargetID": 74628, + "Directional": true + } + ] + }, + { + "ID": 16657, + "SourceStructureID": 74635, + "TargetStructureID": 68539, + "Label": "74635-68539 via Conventional from 74637 -> 74634", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74637, + "TargetID": 74634, + "Directional": true + } + ] + }, + { + "ID": 16658, + "SourceStructureID": 74639, + "TargetStructureID": 68539, + "Label": "74639-68539 via Ribbon Synapse from 74643 -> 74644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74643, + "TargetID": 74644, + "Directional": true + } + ] + }, + { + "ID": 16659, + "SourceStructureID": 74645, + "TargetStructureID": 68539, + "Label": "74645-68539 via Conventional from 74646 -> 74647", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74646, + "TargetID": 74647, + "Directional": true + } + ] + }, + { + "ID": 16660, + "SourceStructureID": 74648, + "TargetStructureID": 68539, + "Label": "74648-68539 via Conventional from 74649 -> 74650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74649, + "TargetID": 74650, + "Directional": true + } + ] + }, + { + "ID": 16661, + "SourceStructureID": 74658, + "TargetStructureID": 6115, + "Label": "74658-6115 via Conventional from 75880 -> 75879", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75880, + "TargetID": 75879, + "Directional": true + } + ] + }, + { + "ID": 16662, + "SourceStructureID": 74663, + "TargetStructureID": 68539, + "Label": "74663-68539 via Conventional from 74664 -> 74665", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74664, + "TargetID": 74665, + "Directional": true + } + ] + }, + { + "ID": 16663, + "SourceStructureID": 74667, + "TargetStructureID": 68539, + "Label": "74667-68539 via Conventional from 74679 -> 74685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74679, + "TargetID": 74685, + "Directional": true + } + ] + }, + { + "ID": 16664, + "SourceStructureID": 74670, + "TargetStructureID": 5530, + "Label": "74670-5530 via Conventional from 74672 -> 74673", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74672, + "TargetID": 74673, + "Directional": true + } + ] + }, + { + "ID": 16665, + "SourceStructureID": 74678, + "TargetStructureID": 5530, + "Label": "74678-5530 via Conventional from 74680 -> 74681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74680, + "TargetID": 74681, + "Directional": true + } + ] + }, + { + "ID": 16666, + "SourceStructureID": 74688, + "TargetStructureID": 6115, + "Label": "74688-6115 via Conventional from 74689 -> 74690, 74745 -> 74748", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74689, + "TargetID": 74690, + "Directional": true + }, + { + "SourceID": 74745, + "TargetID": 74748, + "Directional": true + } + ] + }, + { + "ID": 16667, + "SourceStructureID": 74694, + "TargetStructureID": 170, + "Label": "74694-170 via Conventional from 81845 -> 81846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81845, + "TargetID": 81846, + "Directional": true + } + ] + }, + { + "ID": 16668, + "SourceStructureID": 74694, + "TargetStructureID": 5530, + "Label": "74694-5530 via Conventional from 74696 -> 74697", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74696, + "TargetID": 74697, + "Directional": true + } + ] + }, + { + "ID": 16669, + "SourceStructureID": 74699, + "TargetStructureID": 6115, + "Label": "74699-6115 via Conventional from 74772 -> 74773", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74772, + "TargetID": 74773, + "Directional": true + } + ] + }, + { + "ID": 16670, + "SourceStructureID": 74724, + "TargetStructureID": 6156, + "Label": "74724-6156 via Conventional from 74730 -> 23245", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74730, + "TargetID": 23245, + "Directional": true + } + ] + }, + { + "ID": 16671, + "SourceStructureID": 74726, + "TargetStructureID": 6115, + "Label": "74726-6115 via Conventional from 74735 -> 74736", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74735, + "TargetID": 74736, + "Directional": true + } + ] + }, + { + "ID": 16672, + "SourceStructureID": 74727, + "TargetStructureID": 170, + "Label": "74727-170 via Conventional from 88763 -> 88764", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88763, + "TargetID": 88764, + "Directional": true + } + ] + }, + { + "ID": 16673, + "SourceStructureID": 74727, + "TargetStructureID": 5530, + "Label": "74727-5530 via Conventional from 74733 -> 74734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74733, + "TargetID": 74734, + "Directional": true + } + ] + }, + { + "ID": 16674, + "SourceStructureID": 74740, + "TargetStructureID": 5650, + "Label": "74740-5650 via Conventional from 82113 -> 82114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82113, + "TargetID": 82114, + "Directional": true + } + ] + }, + { + "ID": 16675, + "SourceStructureID": 74740, + "TargetStructureID": 72299, + "Label": "74740-72299 via Conventional from 82111 -> 82112", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82111, + "TargetID": 82112, + "Directional": true + } + ] + }, + { + "ID": 16676, + "SourceStructureID": 74769, + "TargetStructureID": 6115, + "Label": "74769-6115 via Conventional from 74770 -> 74771", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74770, + "TargetID": 74771, + "Directional": true + } + ] + }, + { + "ID": 16677, + "SourceStructureID": 74786, + "TargetStructureID": 6115, + "Label": "74786-6115 via Conventional from 74787 -> 74788", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74787, + "TargetID": 74788, + "Directional": true + } + ] + }, + { + "ID": 16678, + "SourceStructureID": 74801, + "TargetStructureID": 6115, + "Label": "74801-6115 via Conventional from 74803 -> 74802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74803, + "TargetID": 74802, + "Directional": true + } + ] + }, + { + "ID": 16679, + "SourceStructureID": 74804, + "TargetStructureID": 6115, + "Label": "74804-6115 via Conventional from 74805 -> 74806", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74805, + "TargetID": 74806, + "Directional": true + } + ] + }, + { + "ID": 16680, + "SourceStructureID": 74810, + "TargetStructureID": 6115, + "Label": "74810-6115 via Conventional from 74811 -> 55839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74811, + "TargetID": 55839, + "Directional": true + } + ] + }, + { + "ID": 16681, + "SourceStructureID": 74815, + "TargetStructureID": 6115, + "Label": "74815-6115 via Conventional from 74816 -> 74817", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74816, + "TargetID": 74817, + "Directional": true + } + ] + }, + { + "ID": 16682, + "SourceStructureID": 74830, + "TargetStructureID": 6115, + "Label": "74830-6115 via Conventional from 80915 -> 80916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80915, + "TargetID": 80916, + "Directional": true + } + ] + }, + { + "ID": 16683, + "SourceStructureID": 74834, + "TargetStructureID": 6115, + "Label": "74834-6115 via Conventional from 74836 -> 74835", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74836, + "TargetID": 74835, + "Directional": true + } + ] + }, + { + "ID": 16684, + "SourceStructureID": 74846, + "TargetStructureID": 6115, + "Label": "74846-6115 via Conventional from 74849 -> 74850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74849, + "TargetID": 74850, + "Directional": true + } + ] + }, + { + "ID": 16685, + "SourceStructureID": 74854, + "TargetStructureID": 68539, + "Label": "74854-68539 via Conventional from 74855 -> 74856", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74855, + "TargetID": 74856, + "Directional": true + } + ] + }, + { + "ID": 16686, + "SourceStructureID": 74859, + "TargetStructureID": 68539, + "Label": "74859-68539 via Conventional from 74860 -> 74861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74860, + "TargetID": 74861, + "Directional": true + } + ] + }, + { + "ID": 16687, + "SourceStructureID": 74863, + "TargetStructureID": 68539, + "Label": "74863-68539 via Conventional from 74864 -> 74865", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74864, + "TargetID": 74865, + "Directional": true + } + ] + }, + { + "ID": 16688, + "SourceStructureID": 74866, + "TargetStructureID": 68539, + "Label": "74866-68539 via Conventional from 74867 -> 74868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74867, + "TargetID": 74868, + "Directional": true + } + ] + }, + { + "ID": 16689, + "SourceStructureID": 74873, + "TargetStructureID": 68539, + "Label": "74873-68539 via Conventional from 74874 -> 74875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74874, + "TargetID": 74875, + "Directional": true + } + ] + }, + { + "ID": 16690, + "SourceStructureID": 74886, + "TargetStructureID": 68539, + "Label": "74886-68539 via Conventional from 74887 -> 74888", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74887, + "TargetID": 74888, + "Directional": true + } + ] + }, + { + "ID": 16691, + "SourceStructureID": 74890, + "TargetStructureID": 68539, + "Label": "74890-68539 via Conventional from 74891 -> 74889", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74891, + "TargetID": 74889, + "Directional": true + } + ] + }, + { + "ID": 16692, + "SourceStructureID": 74899, + "TargetStructureID": 68539, + "Label": "74899-68539 via Conventional from 74900 -> 74901", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74900, + "TargetID": 74901, + "Directional": true + } + ] + }, + { + "ID": 16693, + "SourceStructureID": 74904, + "TargetStructureID": 68539, + "Label": "74904-68539 via Conventional from 74905 -> 74906", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74905, + "TargetID": 74906, + "Directional": true + } + ] + }, + { + "ID": 16694, + "SourceStructureID": 74907, + "TargetStructureID": 83698, + "Label": "74907-83698 via Ribbon Synapse from 74908 -> 83711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74908, + "TargetID": 83711, + "Directional": true + } + ] + }, + { + "ID": 16695, + "SourceStructureID": 74907, + "TargetStructureID": 83715, + "Label": "74907-83715 via Ribbon Synapse from 74908 -> 83717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74908, + "TargetID": 83717, + "Directional": true + } + ] + }, + { + "ID": 16696, + "SourceStructureID": 74907, + "TargetStructureID": 83721, + "Label": "74907-83721 via Ribbon Synapse from 74908 -> 83727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 74908, + "TargetID": 83727, + "Directional": true + } + ] + }, + { + "ID": 16697, + "SourceStructureID": 74907, + "TargetStructureID": 83911, + "Label": "74907-83911 via Ribbon Synapse from 83910 -> 83912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83910, + "TargetID": 83912, + "Directional": true + } + ] + }, + { + "ID": 16698, + "SourceStructureID": 74907, + "TargetStructureID": 84280, + "Label": "74907-84280 via Ribbon Synapse from 84279 -> 84281", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84279, + "TargetID": 84281, + "Directional": true + } + ] + }, + { + "ID": 16699, + "SourceStructureID": 74907, + "TargetStructureID": 84283, + "Label": "74907-84283 via BC Conventional Synapse from 84466 -> 84467", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84466, + "TargetID": 84467, + "Directional": true + } + ] + }, + { + "ID": 16700, + "SourceStructureID": 74907, + "TargetStructureID": 84284, + "Label": "74907-84284 via Ribbon Synapse from 84279 -> 84286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84279, + "TargetID": 84286, + "Directional": true + } + ] + }, + { + "ID": 16701, + "SourceStructureID": 74907, + "TargetStructureID": 84290, + "Label": "74907-84290 via Ribbon Synapse from 84293 -> 84297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84293, + "TargetID": 84297, + "Directional": true + } + ] + }, + { + "ID": 16702, + "SourceStructureID": 74907, + "TargetStructureID": 84294, + "Label": "74907-84294 via Ribbon Synapse from 84293 -> 84296", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84293, + "TargetID": 84296, + "Directional": true + } + ] + }, + { + "ID": 16703, + "SourceStructureID": 74907, + "TargetStructureID": 84463, + "Label": "74907-84463 via BC Conventional Synapse from 84464 -> 84465", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84464, + "TargetID": 84465, + "Directional": true + } + ] + }, + { + "ID": 16704, + "SourceStructureID": 74907, + "TargetStructureID": 84500, + "Label": "74907-84500 via Ribbon Synapse from 84499 -> 84507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84499, + "TargetID": 84507, + "Directional": true + } + ] + }, + { + "ID": 16705, + "SourceStructureID": 74907, + "TargetStructureID": 84508, + "Label": "74907-84508 via Ribbon Synapse from 84499 -> 84509", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84499, + "TargetID": 84509, + "Directional": true + } + ] + }, + { + "ID": 16706, + "SourceStructureID": 74907, + "TargetStructureID": 84514, + "Label": "74907-84514 via Ribbon Synapse from 84498 -> 84515", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84498, + "TargetID": 84515, + "Directional": true + } + ] + }, + { + "ID": 16707, + "SourceStructureID": 74907, + "TargetStructureID": 84635, + "Label": "74907-84635 via Ribbon Synapse from 84631 -> 84737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84631, + "TargetID": 84737, + "Directional": true + } + ] + }, + { + "ID": 16708, + "SourceStructureID": 74907, + "TargetStructureID": 84636, + "Label": "74907-84636 via Ribbon Synapse from 84631 -> 84739", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84631, + "TargetID": 84739, + "Directional": true + } + ] + }, + { + "ID": 16709, + "SourceStructureID": 74907, + "TargetStructureID": 84740, + "Label": "74907-84740 via Ribbon Synapse from 84631 -> 84742, 84839 -> 84841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84631, + "TargetID": 84742, + "Directional": true + }, + { + "SourceID": 84839, + "TargetID": 84841, + "Directional": true + } + ] + }, + { + "ID": 16710, + "SourceStructureID": 74907, + "TargetStructureID": 84844, + "Label": "74907-84844 via Ribbon Synapse from 84839 -> 84849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84839, + "TargetID": 84849, + "Directional": true + } + ] + }, + { + "ID": 16711, + "SourceStructureID": 74920, + "TargetStructureID": 71517, + "Label": "74920-71517 via Conventional from 74921 -> 74922", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74921, + "TargetID": 74922, + "Directional": true + } + ] + }, + { + "ID": 16712, + "SourceStructureID": 74936, + "TargetStructureID": 71517, + "Label": "74936-71517 via Conventional from 74937 -> 74938", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74937, + "TargetID": 74938, + "Directional": true + } + ] + }, + { + "ID": 16713, + "SourceStructureID": 74939, + "TargetStructureID": 71517, + "Label": "74939-71517 via Conventional from 74940 -> 74941", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74940, + "TargetID": 74941, + "Directional": true + } + ] + }, + { + "ID": 16714, + "SourceStructureID": 74943, + "TargetStructureID": 74939, + "Label": "74943-74939 via Conventional from 74944 -> 74942", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74944, + "TargetID": 74942, + "Directional": true + } + ] + }, + { + "ID": 16715, + "SourceStructureID": 74957, + "TargetStructureID": 6123, + "Label": "74957-6123 via Conventional from 74961 -> 74962", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74961, + "TargetID": 74962, + "Directional": true + } + ] + }, + { + "ID": 16716, + "SourceStructureID": 74957, + "TargetStructureID": 71517, + "Label": "74957-71517 via Conventional from 74958 -> 74959", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74958, + "TargetID": 74959, + "Directional": true + } + ] + }, + { + "ID": 16717, + "SourceStructureID": 74969, + "TargetStructureID": 6857, + "Label": "74969-6857 via Conventional from 74970 -> 74972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74970, + "TargetID": 74972, + "Directional": true + } + ] + }, + { + "ID": 16718, + "SourceStructureID": 74978, + "TargetStructureID": 5530, + "Label": "74978-5530 via Conventional from 75408 -> 75409", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75408, + "TargetID": 75409, + "Directional": true + } + ] + }, + { + "ID": 16719, + "SourceStructureID": 74994, + "TargetStructureID": 6115, + "Label": "74994-6115 via Conventional from 74995 -> 74993", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74995, + "TargetID": 74993, + "Directional": true + } + ] + }, + { + "ID": 16720, + "SourceStructureID": 75001, + "TargetStructureID": 5528, + "Label": "75001-5528 via Conventional from 94149 -> 94150, 94394 -> 94395", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94149, + "TargetID": 94150, + "Directional": true + }, + { + "SourceID": 94394, + "TargetID": 94395, + "Directional": true + } + ] + }, + { + "ID": 16721, + "SourceStructureID": 75001, + "TargetStructureID": 5530, + "Label": "75001-5530 via Conventional from 75006 -> 75008", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75006, + "TargetID": 75008, + "Directional": true + } + ] + }, + { + "ID": 16722, + "SourceStructureID": 75012, + "TargetStructureID": 5530, + "Label": "75012-5530 via Conventional from 75013 -> 75014", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75013, + "TargetID": 75014, + "Directional": true + } + ] + }, + { + "ID": 16723, + "SourceStructureID": 75015, + "TargetStructureID": 71511, + "Label": "75015-71511 via Conventional from 75016 -> 75020", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75016, + "TargetID": 75020, + "Directional": true + } + ] + }, + { + "ID": 16724, + "SourceStructureID": 75017, + "TargetStructureID": 5530, + "Label": "75017-5530 via Conventional from 75025 -> 75026, 75025 -> 125897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75025, + "TargetID": 75026, + "Directional": true + }, + { + "SourceID": 75025, + "TargetID": 125897, + "Directional": true + } + ] + }, + { + "ID": 16725, + "SourceStructureID": 75021, + "TargetStructureID": 71517, + "Label": "75021-71517 via Conventional from 75023 -> 75024", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75023, + "TargetID": 75024, + "Directional": true + } + ] + }, + { + "ID": 16726, + "SourceStructureID": 75028, + "TargetStructureID": 75021, + "Label": "75028-75021 via Conventional from 75031 -> 75022", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75031, + "TargetID": 75022, + "Directional": true + } + ] + }, + { + "ID": 16727, + "SourceStructureID": 75033, + "TargetStructureID": 6115, + "Label": "75033-6115 via Conventional from 75034 -> 55769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75034, + "TargetID": 55769, + "Directional": true + } + ] + }, + { + "ID": 16728, + "SourceStructureID": 75040, + "TargetStructureID": 6115, + "Label": "75040-6115 via Conventional from 75044 -> 55768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75044, + "TargetID": 55768, + "Directional": true + } + ] + }, + { + "ID": 16729, + "SourceStructureID": 75052, + "TargetStructureID": 75056, + "Label": "75052-75056 via Conventional from 75055 -> 75057", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75055, + "TargetID": 75057, + "Directional": true + } + ] + }, + { + "ID": 16730, + "SourceStructureID": 75062, + "TargetStructureID": 6115, + "Label": "75062-6115 via Conventional from 75063 -> 75064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75063, + "TargetID": 75064, + "Directional": true + } + ] + }, + { + "ID": 16731, + "SourceStructureID": 75068, + "TargetStructureID": 6115, + "Label": "75068-6115 via Conventional from 75069 -> 75070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75069, + "TargetID": 75070, + "Directional": true + } + ] + }, + { + "ID": 16732, + "SourceStructureID": 75073, + "TargetStructureID": 6115, + "Label": "75073-6115 via Conventional from 75074 -> 75075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75074, + "TargetID": 75075, + "Directional": true + } + ] + }, + { + "ID": 16733, + "SourceStructureID": 75096, + "TargetStructureID": 6115, + "Label": "75096-6115 via Conventional from 75097 -> 75098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75097, + "TargetID": 75098, + "Directional": true + } + ] + }, + { + "ID": 16734, + "SourceStructureID": 75104, + "TargetStructureID": 6115, + "Label": "75104-6115 via Conventional from 75105 -> 75106", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75105, + "TargetID": 75106, + "Directional": true + } + ] + }, + { + "ID": 16735, + "SourceStructureID": 75112, + "TargetStructureID": 6115, + "Label": "75112-6115 via Conventional from 75113 -> 75114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75113, + "TargetID": 75114, + "Directional": true + } + ] + }, + { + "ID": 16736, + "SourceStructureID": 75124, + "TargetStructureID": 6115, + "Label": "75124-6115 via Conventional from 75125 -> 75126", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75125, + "TargetID": 75126, + "Directional": true + } + ] + }, + { + "ID": 16737, + "SourceStructureID": 75130, + "TargetStructureID": 6115, + "Label": "75130-6115 via Conventional from 74824 -> 55841, 75131 -> 75132, 90636 -> 90637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 74824, + "TargetID": 55841, + "Directional": true + }, + { + "SourceID": 75131, + "TargetID": 75132, + "Directional": true + }, + { + "SourceID": 90636, + "TargetID": 90637, + "Directional": true + } + ] + }, + { + "ID": 16738, + "SourceStructureID": 75130, + "TargetStructureID": 16087, + "Label": "75130-16087 via Conventional from 121973 -> 121974", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121973, + "TargetID": 121974, + "Directional": true + } + ] + }, + { + "ID": 16739, + "SourceStructureID": 75133, + "TargetStructureID": 6047, + "Label": "75133-6047 via Conventional from 112376 -> 112378", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112376, + "TargetID": 112378, + "Directional": true + } + ] + }, + { + "ID": 16740, + "SourceStructureID": 75133, + "TargetStructureID": 6115, + "Label": "75133-6115 via Conventional from 75134 -> 75135", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75134, + "TargetID": 75135, + "Directional": true + } + ] + }, + { + "ID": 16741, + "SourceStructureID": 75147, + "TargetStructureID": 6115, + "Label": "75147-6115 via Conventional from 75148 -> 75149", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75148, + "TargetID": 75149, + "Directional": true + } + ] + }, + { + "ID": 16742, + "SourceStructureID": 75168, + "TargetStructureID": 72012, + "Label": "75168-72012 via Conventional from 75169 -> 75170", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75169, + "TargetID": 75170, + "Directional": true + } + ] + }, + { + "ID": 16743, + "SourceStructureID": 75173, + "TargetStructureID": 72012, + "Label": "75173-72012 via Conventional from 75174 -> 75172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75174, + "TargetID": 75172, + "Directional": true + } + ] + }, + { + "ID": 16744, + "SourceStructureID": 75211, + "TargetStructureID": 6115, + "Label": "75211-6115 via Conventional from 75212 -> 75213", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75212, + "TargetID": 75213, + "Directional": true + } + ] + }, + { + "ID": 16745, + "SourceStructureID": 75219, + "TargetStructureID": 6115, + "Label": "75219-6115 via Conventional from 75220 -> 75221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75220, + "TargetID": 75221, + "Directional": true + } + ] + }, + { + "ID": 16746, + "SourceStructureID": 75232, + "TargetStructureID": 6115, + "Label": "75232-6115 via Conventional from 75234 -> 55862", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75234, + "TargetID": 55862, + "Directional": true + } + ] + }, + { + "ID": 16747, + "SourceStructureID": 75242, + "TargetStructureID": 6115, + "Label": "75242-6115 via Conventional from 75244 -> 75243", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75244, + "TargetID": 75243, + "Directional": true + } + ] + }, + { + "ID": 16748, + "SourceStructureID": 75248, + "TargetStructureID": 6115, + "Label": "75248-6115 via Conventional from 75249 -> 74998", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75249, + "TargetID": 74998, + "Directional": true + } + ] + }, + { + "ID": 16749, + "SourceStructureID": 75273, + "TargetStructureID": 6115, + "Label": "75273-6115 via Conventional from 75274 -> 75275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75274, + "TargetID": 75275, + "Directional": true + } + ] + }, + { + "ID": 16750, + "SourceStructureID": 75293, + "TargetStructureID": 6115, + "Label": "75293-6115 via Conventional from 75417 -> 75416", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75417, + "TargetID": 75416, + "Directional": true + } + ] + }, + { + "ID": 16751, + "SourceStructureID": 75311, + "TargetStructureID": 66523, + "Label": "75311-66523 via Conventional from 75312 -> 75313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75312, + "TargetID": 75313, + "Directional": true + } + ] + }, + { + "ID": 16752, + "SourceStructureID": 75317, + "TargetStructureID": 66523, + "Label": "75317-66523 via Conventional from 75318 -> 75319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75318, + "TargetID": 75319, + "Directional": true + } + ] + }, + { + "ID": 16753, + "SourceStructureID": 75320, + "TargetStructureID": 66523, + "Label": "75320-66523 via Conventional from 75321 -> 75322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75321, + "TargetID": 75322, + "Directional": true + } + ] + }, + { + "ID": 16754, + "SourceStructureID": 75350, + "TargetStructureID": 66523, + "Label": "75350-66523 via Conventional from 75351 -> 75352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75351, + "TargetID": 75352, + "Directional": true + } + ] + }, + { + "ID": 16755, + "SourceStructureID": 75359, + "TargetStructureID": 5107, + "Label": "75359-5107 via Conventional from 75363 -> 43678", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75363, + "TargetID": 43678, + "Directional": true + } + ] + }, + { + "ID": 16756, + "SourceStructureID": 75359, + "TargetStructureID": 81667, + "Label": "75359-81667 via Conventional from 75362 -> 81770", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75362, + "TargetID": 81770, + "Directional": true + } + ] + }, + { + "ID": 16757, + "SourceStructureID": 75371, + "TargetStructureID": 5530, + "Label": "75371-5530 via Conventional from 75372 -> 75373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75372, + "TargetID": 75373, + "Directional": true + } + ] + }, + { + "ID": 16758, + "SourceStructureID": 75374, + "TargetStructureID": 5530, + "Label": "75374-5530 via Conventional from 75375 -> 75376", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75375, + "TargetID": 75376, + "Directional": true + } + ] + }, + { + "ID": 16759, + "SourceStructureID": 75381, + "TargetStructureID": 5530, + "Label": "75381-5530 via Conventional from 75382 -> 75383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75382, + "TargetID": 75383, + "Directional": true + } + ] + }, + { + "ID": 16760, + "SourceStructureID": 75387, + "TargetStructureID": 5530, + "Label": "75387-5530 via Conventional from 75388 -> 75389", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75388, + "TargetID": 75389, + "Directional": true + } + ] + }, + { + "ID": 16761, + "SourceStructureID": 75390, + "TargetStructureID": 595, + "Label": "75390-595 via Conventional from 135567 -> 135566", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135567, + "TargetID": 135566, + "Directional": true + } + ] + }, + { + "ID": 16762, + "SourceStructureID": 75390, + "TargetStructureID": 5530, + "Label": "75390-5530 via Conventional from 75391 -> 75392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75391, + "TargetID": 75392, + "Directional": true + } + ] + }, + { + "ID": 16763, + "SourceStructureID": 75404, + "TargetStructureID": 168, + "Label": "75404-168 via Conventional from 82009 -> 4230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82009, + "TargetID": 4230, + "Directional": true + } + ] + }, + { + "ID": 16764, + "SourceStructureID": 75419, + "TargetStructureID": 6115, + "Label": "75419-6115 via Conventional from 147604 -> 147603", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147604, + "TargetID": 147603, + "Directional": true + } + ] + }, + { + "ID": 16765, + "SourceStructureID": 75426, + "TargetStructureID": 6115, + "Label": "75426-6115 via Conventional from 75427 -> 55762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75427, + "TargetID": 55762, + "Directional": true + } + ] + }, + { + "ID": 16766, + "SourceStructureID": 75429, + "TargetStructureID": 6115, + "Label": "75429-6115 via Conventional from 75432 -> 55764", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75432, + "TargetID": 55764, + "Directional": true + } + ] + }, + { + "ID": 16767, + "SourceStructureID": 75446, + "TargetStructureID": 6115, + "Label": "75446-6115 via Conventional from 75447 -> 75448", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75447, + "TargetID": 75448, + "Directional": true + } + ] + }, + { + "ID": 16768, + "SourceStructureID": 75454, + "TargetStructureID": 6115, + "Label": "75454-6115 via Conventional from 75455 -> 75456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75455, + "TargetID": 75456, + "Directional": true + } + ] + }, + { + "ID": 16769, + "SourceStructureID": 75457, + "TargetStructureID": 6115, + "Label": "75457-6115 via Conventional from 75458 -> 75459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75458, + "TargetID": 75459, + "Directional": true + } + ] + }, + { + "ID": 16770, + "SourceStructureID": 75485, + "TargetStructureID": 5530, + "Label": "75485-5530 via Conventional from 75486 -> 75487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75486, + "TargetID": 75487, + "Directional": true + } + ] + }, + { + "ID": 16771, + "SourceStructureID": 75488, + "TargetStructureID": 5530, + "Label": "75488-5530 via Conventional from 75489 -> 75490", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75489, + "TargetID": 75490, + "Directional": true + } + ] + }, + { + "ID": 16772, + "SourceStructureID": 75488, + "TargetStructureID": 83051, + "Label": "75488-83051 via Conventional from 83325 -> 83326", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83325, + "TargetID": 83326, + "Directional": true + } + ] + }, + { + "ID": 16773, + "SourceStructureID": 75498, + "TargetStructureID": 170, + "Label": "75498-170 via Conventional from 82530 -> 82531", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82530, + "TargetID": 82531, + "Directional": true + } + ] + }, + { + "ID": 16774, + "SourceStructureID": 75498, + "TargetStructureID": 5530, + "Label": "75498-5530 via Conventional from 82534 -> 75497", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82534, + "TargetID": 75497, + "Directional": true + } + ] + }, + { + "ID": 16775, + "SourceStructureID": 75525, + "TargetStructureID": 5530, + "Label": "75525-5530 via Conventional from 115790 -> 115789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115790, + "TargetID": 115789, + "Directional": true + } + ] + }, + { + "ID": 16776, + "SourceStructureID": 75530, + "TargetStructureID": 5530, + "Label": "75530-5530 via Conventional from 75531 -> 75532", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75531, + "TargetID": 75532, + "Directional": true + } + ] + }, + { + "ID": 16777, + "SourceStructureID": 75559, + "TargetStructureID": 6115, + "Label": "75559-6115 via Conventional from 75560 -> 75561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75560, + "TargetID": 75561, + "Directional": true + } + ] + }, + { + "ID": 16778, + "SourceStructureID": 75578, + "TargetStructureID": 5107, + "Label": "75578-5107 via Conventional from 75580 -> 75581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75580, + "TargetID": 75581, + "Directional": true + } + ] + }, + { + "ID": 16779, + "SourceStructureID": 75578, + "TargetStructureID": 75583, + "Label": "75578-75583 via Conventional from 75582 -> 75584", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75582, + "TargetID": 75584, + "Directional": true + } + ] + }, + { + "ID": 16780, + "SourceStructureID": 75583, + "TargetStructureID": 6117, + "Label": "75583-6117 via Conventional from 75590 -> 75591", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75590, + "TargetID": 75591, + "Directional": true + } + ] + }, + { + "ID": 16781, + "SourceStructureID": 75587, + "TargetStructureID": 75583, + "Label": "75587-75583 via Conventional from 75588 -> 75589", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75588, + "TargetID": 75589, + "Directional": true + } + ] + }, + { + "ID": 16782, + "SourceStructureID": 75625, + "TargetStructureID": 9787, + "Label": "75625-9787 via Ribbon Synapse from 75626 -> 75627, 75628 -> 12240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 75626, + "TargetID": 75627, + "Directional": true + }, + { + "SourceID": 75628, + "TargetID": 12240, + "Directional": true + } + ] + }, + { + "ID": 16783, + "SourceStructureID": 75630, + "TargetStructureID": 9787, + "Label": "75630-9787 via Conventional from 75631 -> 75629", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75631, + "TargetID": 75629, + "Directional": true + } + ] + }, + { + "ID": 16784, + "SourceStructureID": 75633, + "TargetStructureID": 9787, + "Label": "75633-9787 via Conventional from 75634 -> 75632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75634, + "TargetID": 75632, + "Directional": true + } + ] + }, + { + "ID": 16785, + "SourceStructureID": 75635, + "TargetStructureID": 9787, + "Label": "75635-9787 via Conventional from 75636 -> 56462", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75636, + "TargetID": 56462, + "Directional": true + } + ] + }, + { + "ID": 16786, + "SourceStructureID": 75637, + "TargetStructureID": 9787, + "Label": "75637-9787 via Conventional from 75638 -> 12241", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75638, + "TargetID": 12241, + "Directional": true + } + ] + }, + { + "ID": 16787, + "SourceStructureID": 75641, + "TargetStructureID": 9787, + "Label": "75641-9787 via Conventional from 75642 -> 12249", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75642, + "TargetID": 12249, + "Directional": true + } + ] + }, + { + "ID": 16788, + "SourceStructureID": 75678, + "TargetStructureID": 68548, + "Label": "75678-68548 via Conventional from 75679 -> 75682", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75679, + "TargetID": 75682, + "Directional": true + } + ] + }, + { + "ID": 16789, + "SourceStructureID": 75695, + "TargetStructureID": 10931, + "Label": "75695-10931 via Conventional from 159341 -> 159340", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159341, + "TargetID": 159340, + "Directional": true + } + ] + }, + { + "ID": 16790, + "SourceStructureID": 75695, + "TargetStructureID": 68548, + "Label": "75695-68548 via Conventional from 75696 -> 75694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75696, + "TargetID": 75694, + "Directional": true + } + ] + }, + { + "ID": 16791, + "SourceStructureID": 75721, + "TargetStructureID": 8580, + "Label": "75721-8580 via Conventional from 75722 -> 59654", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75722, + "TargetID": 59654, + "Directional": true + } + ] + }, + { + "ID": 16792, + "SourceStructureID": 75752, + "TargetStructureID": 73025, + "Label": "75752-73025 via Conventional from 75754 -> 75755", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75754, + "TargetID": 75755, + "Directional": true + } + ] + }, + { + "ID": 16793, + "SourceStructureID": 75760, + "TargetStructureID": 5530, + "Label": "75760-5530 via Conventional from 75766 -> 75767", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75766, + "TargetID": 75767, + "Directional": true + } + ] + }, + { + "ID": 16794, + "SourceStructureID": 75782, + "TargetStructureID": 5530, + "Label": "75782-5530 via Conventional from 75783 -> 75784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75783, + "TargetID": 75784, + "Directional": true + } + ] + }, + { + "ID": 16795, + "SourceStructureID": 75782, + "TargetStructureID": 75001, + "Label": "75782-75001 via Conventional from 82536 -> 82535", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82536, + "TargetID": 82535, + "Directional": true + } + ] + }, + { + "ID": 16796, + "SourceStructureID": 75792, + "TargetStructureID": 5530, + "Label": "75792-5530 via Conventional from 75793 -> 75794", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75793, + "TargetID": 75794, + "Directional": true + } + ] + }, + { + "ID": 16797, + "SourceStructureID": 75807, + "TargetStructureID": 68539, + "Label": "75807-68539 via Conventional from 75808 -> 69159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75808, + "TargetID": 69159, + "Directional": true + } + ] + }, + { + "ID": 16798, + "SourceStructureID": 75816, + "TargetStructureID": 68539, + "Label": "75816-68539 via Conventional from 75819 -> 75820, 75821 -> 75822, 75823 -> 75824", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75819, + "TargetID": 75820, + "Directional": true + }, + { + "SourceID": 75821, + "TargetID": 75822, + "Directional": true + }, + { + "SourceID": 75823, + "TargetID": 75824, + "Directional": true + } + ] + }, + { + "ID": 16799, + "SourceStructureID": 75825, + "TargetStructureID": 68539, + "Label": "75825-68539 via Conventional from 75826 -> 75827", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75826, + "TargetID": 75827, + "Directional": true + } + ] + }, + { + "ID": 16800, + "SourceStructureID": 75830, + "TargetStructureID": 68539, + "Label": "75830-68539 via Conventional from 75831 -> 75832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75831, + "TargetID": 75832, + "Directional": true + } + ] + }, + { + "ID": 16801, + "SourceStructureID": 75833, + "TargetStructureID": 68539, + "Label": "75833-68539 via Conventional from 75834 -> 69161, 75835 -> 75836", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75834, + "TargetID": 69161, + "Directional": true + }, + { + "SourceID": 75835, + "TargetID": 75836, + "Directional": true + } + ] + }, + { + "ID": 16802, + "SourceStructureID": 75893, + "TargetStructureID": 5530, + "Label": "75893-5530 via Conventional from 75894 -> 75892", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75894, + "TargetID": 75892, + "Directional": true + } + ] + }, + { + "ID": 16803, + "SourceStructureID": 75902, + "TargetStructureID": 5530, + "Label": "75902-5530 via Conventional from 75903 -> 75904", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75903, + "TargetID": 75904, + "Directional": true + } + ] + }, + { + "ID": 16804, + "SourceStructureID": 75902, + "TargetStructureID": 71882, + "Label": "75902-71882 via Conventional from 90453 -> 90452", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90453, + "TargetID": 90452, + "Directional": true + } + ] + }, + { + "ID": 16805, + "SourceStructureID": 75917, + "TargetStructureID": 5530, + "Label": "75917-5530 via Conventional from 75918 -> 75919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75918, + "TargetID": 75919, + "Directional": true + } + ] + }, + { + "ID": 16806, + "SourceStructureID": 75928, + "TargetStructureID": 68539, + "Label": "75928-68539 via Conventional from 75929 -> 75927", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75929, + "TargetID": 75927, + "Directional": true + } + ] + }, + { + "ID": 16807, + "SourceStructureID": 75933, + "TargetStructureID": 22994, + "Label": "75933-22994 via Conventional from 75935 -> 75936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 75935, + "TargetID": 75936, + "Directional": true + } + ] + }, + { + "ID": 16808, + "SourceStructureID": 76039, + "TargetStructureID": 68539, + "Label": "76039-68539 via Conventional from 76040 -> 76043, 76041 -> 76042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76040, + "TargetID": 76043, + "Directional": true + }, + { + "SourceID": 76041, + "TargetID": 76042, + "Directional": true + } + ] + }, + { + "ID": 16809, + "SourceStructureID": 76056, + "TargetStructureID": 76039, + "Label": "76056-76039 via Conventional from 76057 -> 76055", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76057, + "TargetID": 76055, + "Directional": true + } + ] + }, + { + "ID": 16810, + "SourceStructureID": 76060, + "TargetStructureID": 68539, + "Label": "76060-68539 via Conventional from 76062 -> 76063, 76064 -> 76065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76062, + "TargetID": 76063, + "Directional": true + }, + { + "SourceID": 76064, + "TargetID": 76065, + "Directional": true + } + ] + }, + { + "ID": 16811, + "SourceStructureID": 76066, + "TargetStructureID": 76067, + "Label": "76066-76067 via Conventional from 76068 -> 76070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76068, + "TargetID": 76070, + "Directional": true + } + ] + }, + { + "ID": 16812, + "SourceStructureID": 76071, + "TargetStructureID": 68539, + "Label": "76071-68539 via Conventional from 76072 -> 76073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76072, + "TargetID": 76073, + "Directional": true + } + ] + }, + { + "ID": 16813, + "SourceStructureID": 76075, + "TargetStructureID": 5530, + "Label": "76075-5530 via Conventional from 76080 -> 76081, 77400 -> 77401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76080, + "TargetID": 76081, + "Directional": true + }, + { + "SourceID": 77400, + "TargetID": 77401, + "Directional": true + } + ] + }, + { + "ID": 16814, + "SourceStructureID": 76086, + "TargetStructureID": 68539, + "Label": "76086-68539 via Conventional from 76087 -> 76085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76087, + "TargetID": 76085, + "Directional": true + } + ] + }, + { + "ID": 16815, + "SourceStructureID": 76088, + "TargetStructureID": 68539, + "Label": "76088-68539 via Conventional from 76089 -> 76084", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76089, + "TargetID": 76084, + "Directional": true + } + ] + }, + { + "ID": 16816, + "SourceStructureID": 76091, + "TargetStructureID": 5530, + "Label": "76091-5530 via Conventional from 76092 -> 76093, 76107 -> 76108", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76092, + "TargetID": 76093, + "Directional": true + }, + { + "SourceID": 76107, + "TargetID": 76108, + "Directional": true + } + ] + }, + { + "ID": 16817, + "SourceStructureID": 76103, + "TargetStructureID": 68539, + "Label": "76103-68539 via Conventional from 76105 -> 76101", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76105, + "TargetID": 76101, + "Directional": true + } + ] + }, + { + "ID": 16818, + "SourceStructureID": 76120, + "TargetStructureID": 68539, + "Label": "76120-68539 via Conventional from 76121 -> 76122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76121, + "TargetID": 76122, + "Directional": true + } + ] + }, + { + "ID": 16819, + "SourceStructureID": 76127, + "TargetStructureID": 284, + "Label": "76127-284 via Ribbon Synapse from 76128 -> 76126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76128, + "TargetID": 76126, + "Directional": true + } + ] + }, + { + "ID": 16820, + "SourceStructureID": 76127, + "TargetStructureID": 5117, + "Label": "76127-5117 via Ribbon Synapse from 76128 -> 15004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 76128, + "TargetID": 15004, + "Directional": true + } + ] + }, + { + "ID": 16821, + "SourceStructureID": 76141, + "TargetStructureID": 6115, + "Label": "76141-6115 via Conventional from 76144 -> 76142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76144, + "TargetID": 76142, + "Directional": true + } + ] + }, + { + "ID": 16822, + "SourceStructureID": 76164, + "TargetStructureID": 6115, + "Label": "76164-6115 via Conventional from 76165 -> 76166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76165, + "TargetID": 76166, + "Directional": true + } + ] + }, + { + "ID": 16823, + "SourceStructureID": 76173, + "TargetStructureID": 6115, + "Label": "76173-6115 via Conventional from 76174 -> 76175", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76174, + "TargetID": 76175, + "Directional": true + } + ] + }, + { + "ID": 16824, + "SourceStructureID": 76199, + "TargetStructureID": 67042, + "Label": "76199-67042 via Conventional from 76200 -> 76198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76200, + "TargetID": 76198, + "Directional": true + } + ] + }, + { + "ID": 16825, + "SourceStructureID": 76199, + "TargetStructureID": 76202, + "Label": "76199-76202 via Conventional from 76201 -> 76203", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76201, + "TargetID": 76203, + "Directional": true + } + ] + }, + { + "ID": 16826, + "SourceStructureID": 76211, + "TargetStructureID": 14615, + "Label": "76211-14615 via Conventional from 76212 -> 76210", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76212, + "TargetID": 76210, + "Directional": true + } + ] + }, + { + "ID": 16827, + "SourceStructureID": 76214, + "TargetStructureID": 14615, + "Label": "76214-14615 via Conventional from 76217 -> 76636, 76218 -> 76222, 76219 -> 76221, 76609 -> 76607, 76612 -> 76613", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76217, + "TargetID": 76636, + "Directional": true + }, + { + "SourceID": 76218, + "TargetID": 76222, + "Directional": true + }, + { + "SourceID": 76219, + "TargetID": 76221, + "Directional": true + }, + { + "SourceID": 76609, + "TargetID": 76607, + "Directional": true + }, + { + "SourceID": 76612, + "TargetID": 76613, + "Directional": true + } + ] + }, + { + "ID": 16828, + "SourceStructureID": 76247, + "TargetStructureID": 5562, + "Label": "76247-5562 via Conventional from 76249 -> 37648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76249, + "TargetID": 37648, + "Directional": true + } + ] + }, + { + "ID": 16829, + "SourceStructureID": 76269, + "TargetStructureID": 5562, + "Label": "76269-5562 via Conventional from 76270 -> 63063", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76270, + "TargetID": 63063, + "Directional": true + } + ] + }, + { + "ID": 16830, + "SourceStructureID": 76283, + "TargetStructureID": 5562, + "Label": "76283-5562 via Conventional from 76284 -> 40295", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76284, + "TargetID": 40295, + "Directional": true + } + ] + }, + { + "ID": 16831, + "SourceStructureID": 76291, + "TargetStructureID": 5562, + "Label": "76291-5562 via Conventional from 76292 -> 40288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76292, + "TargetID": 40288, + "Directional": true + } + ] + }, + { + "ID": 16832, + "SourceStructureID": 76298, + "TargetStructureID": 5562, + "Label": "76298-5562 via Conventional from 76299 -> 63073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76299, + "TargetID": 63073, + "Directional": true + } + ] + }, + { + "ID": 16833, + "SourceStructureID": 76300, + "TargetStructureID": 5562, + "Label": "76300-5562 via Conventional from 76301 -> 40284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76301, + "TargetID": 40284, + "Directional": true + } + ] + }, + { + "ID": 16834, + "SourceStructureID": 76328, + "TargetStructureID": 5562, + "Label": "76328-5562 via Conventional from 76329 -> 76330", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76329, + "TargetID": 76330, + "Directional": true + } + ] + }, + { + "ID": 16835, + "SourceStructureID": 76337, + "TargetStructureID": 5562, + "Label": "76337-5562 via Conventional from 76344 -> 40279", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76344, + "TargetID": 40279, + "Directional": true + } + ] + }, + { + "ID": 16836, + "SourceStructureID": 76349, + "TargetStructureID": 5562, + "Label": "76349-5562 via Conventional from 76350 -> 40277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76350, + "TargetID": 40277, + "Directional": true + } + ] + }, + { + "ID": 16837, + "SourceStructureID": 76362, + "TargetStructureID": 5562, + "Label": "76362-5562 via Conventional from 76363 -> 76364", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76363, + "TargetID": 76364, + "Directional": true + } + ] + }, + { + "ID": 16838, + "SourceStructureID": 76365, + "TargetStructureID": 5562, + "Label": "76365-5562 via Conventional from 76374 -> 76375", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76374, + "TargetID": 76375, + "Directional": true + } + ] + }, + { + "ID": 16839, + "SourceStructureID": 76378, + "TargetStructureID": 5562, + "Label": "76378-5562 via Conventional from 76383 -> 76382", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76383, + "TargetID": 76382, + "Directional": true + } + ] + }, + { + "ID": 16840, + "SourceStructureID": 76386, + "TargetStructureID": 5562, + "Label": "76386-5562 via Conventional from 76390 -> 40272", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76390, + "TargetID": 40272, + "Directional": true + } + ] + }, + { + "ID": 16841, + "SourceStructureID": 76391, + "TargetStructureID": 5562, + "Label": "76391-5562 via Conventional from 76392 -> 40274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76392, + "TargetID": 40274, + "Directional": true + } + ] + }, + { + "ID": 16842, + "SourceStructureID": 76396, + "TargetStructureID": 5562, + "Label": "76396-5562 via Conventional from 76397 -> 40273", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76397, + "TargetID": 40273, + "Directional": true + } + ] + }, + { + "ID": 16843, + "SourceStructureID": 76399, + "TargetStructureID": 5916, + "Label": "76399-5916 via Conventional from 109365 -> 109366", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109365, + "TargetID": 109366, + "Directional": true + } + ] + }, + { + "ID": 16844, + "SourceStructureID": 76399, + "TargetStructureID": 63199, + "Label": "76399-63199 via Conventional from 109367 -> 109368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109367, + "TargetID": 109368, + "Directional": true + } + ] + }, + { + "ID": 16845, + "SourceStructureID": 76401, + "TargetStructureID": 5562, + "Label": "76401-5562 via Conventional from 76402 -> 40271", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76402, + "TargetID": 40271, + "Directional": true + } + ] + }, + { + "ID": 16846, + "SourceStructureID": 76409, + "TargetStructureID": 5562, + "Label": "76409-5562 via Conventional from 76410 -> 40268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76410, + "TargetID": 40268, + "Directional": true + } + ] + }, + { + "ID": 16847, + "SourceStructureID": 76421, + "TargetStructureID": 5562, + "Label": "76421-5562 via Conventional from 78323 -> 78322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78323, + "TargetID": 78322, + "Directional": true + } + ] + }, + { + "ID": 16848, + "SourceStructureID": 76430, + "TargetStructureID": 5562, + "Label": "76430-5562 via Conventional from 76431 -> 63074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76431, + "TargetID": 63074, + "Directional": true + } + ] + }, + { + "ID": 16849, + "SourceStructureID": 76473, + "TargetStructureID": 5530, + "Label": "76473-5530 via Conventional from 76474 -> 76475", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76474, + "TargetID": 76475, + "Directional": true + } + ] + }, + { + "ID": 16850, + "SourceStructureID": 76476, + "TargetStructureID": 5530, + "Label": "76476-5530 via Conventional from 76477 -> 76478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76477, + "TargetID": 76478, + "Directional": true + } + ] + }, + { + "ID": 16851, + "SourceStructureID": 76479, + "TargetStructureID": 5530, + "Label": "76479-5530 via Conventional from 76480 -> 76481", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76480, + "TargetID": 76481, + "Directional": true + } + ] + }, + { + "ID": 16852, + "SourceStructureID": 76495, + "TargetStructureID": 5530, + "Label": "76495-5530 via Conventional from 76496 -> 76497", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76496, + "TargetID": 76497, + "Directional": true + } + ] + }, + { + "ID": 16853, + "SourceStructureID": 76498, + "TargetStructureID": 5562, + "Label": "76498-5562 via Conventional from 76499 -> 76500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76499, + "TargetID": 76500, + "Directional": true + } + ] + }, + { + "ID": 16854, + "SourceStructureID": 76505, + "TargetStructureID": 5562, + "Label": "76505-5562 via Conventional from 76506 -> 63078", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76506, + "TargetID": 63078, + "Directional": true + } + ] + }, + { + "ID": 16855, + "SourceStructureID": 76517, + "TargetStructureID": 33088, + "Label": "76517-33088 via Conventional from 76518 -> 33090", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76518, + "TargetID": 33090, + "Directional": true + } + ] + }, + { + "ID": 16856, + "SourceStructureID": 76520, + "TargetStructureID": 5562, + "Label": "76520-5562 via Conventional from 76521 -> 76522", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76521, + "TargetID": 76522, + "Directional": true + } + ] + }, + { + "ID": 16857, + "SourceStructureID": 76530, + "TargetStructureID": 5530, + "Label": "76530-5530 via Conventional from 76540 -> 76541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76540, + "TargetID": 76541, + "Directional": true + } + ] + }, + { + "ID": 16858, + "SourceStructureID": 76543, + "TargetStructureID": 5562, + "Label": "76543-5562 via Conventional from 76581 -> 76580", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76581, + "TargetID": 76580, + "Directional": true + } + ] + }, + { + "ID": 16859, + "SourceStructureID": 76553, + "TargetStructureID": 5562, + "Label": "76553-5562 via Conventional from 76555 -> 76554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76555, + "TargetID": 76554, + "Directional": true + } + ] + }, + { + "ID": 16860, + "SourceStructureID": 76566, + "TargetStructureID": 5562, + "Label": "76566-5562 via Conventional from 76567 -> 63213", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76567, + "TargetID": 63213, + "Directional": true + } + ] + }, + { + "ID": 16861, + "SourceStructureID": 76571, + "TargetStructureID": 5562, + "Label": "76571-5562 via Conventional from 76572 -> 63214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76572, + "TargetID": 63214, + "Directional": true + } + ] + }, + { + "ID": 16862, + "SourceStructureID": 76577, + "TargetStructureID": 5562, + "Label": "76577-5562 via Conventional from 76579 -> 76578", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76579, + "TargetID": 76578, + "Directional": true + } + ] + }, + { + "ID": 16863, + "SourceStructureID": 76582, + "TargetStructureID": 14615, + "Label": "76582-14615 via Conventional from 76583 -> 76586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76583, + "TargetID": 76586, + "Directional": true + } + ] + }, + { + "ID": 16864, + "SourceStructureID": 76591, + "TargetStructureID": 5562, + "Label": "76591-5562 via Conventional from 76592 -> 49394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76592, + "TargetID": 49394, + "Directional": true + } + ] + }, + { + "ID": 16865, + "SourceStructureID": 76616, + "TargetStructureID": 5562, + "Label": "76616-5562 via Conventional from 76618 -> 76617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76618, + "TargetID": 76617, + "Directional": true + } + ] + }, + { + "ID": 16866, + "SourceStructureID": 76628, + "TargetStructureID": 5562, + "Label": "76628-5562 via Conventional from 76629 -> 63217", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76629, + "TargetID": 63217, + "Directional": true + } + ] + }, + { + "ID": 16867, + "SourceStructureID": 76630, + "TargetStructureID": 5562, + "Label": "76630-5562 via Conventional from 76631 -> 63216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76631, + "TargetID": 63216, + "Directional": true + } + ] + }, + { + "ID": 16868, + "SourceStructureID": 76638, + "TargetStructureID": 5562, + "Label": "76638-5562 via Conventional from 76644 -> 76645", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76644, + "TargetID": 76645, + "Directional": true + } + ] + }, + { + "ID": 16869, + "SourceStructureID": 76655, + "TargetStructureID": 5562, + "Label": "76655-5562 via Conventional from 76662 -> 31298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76662, + "TargetID": 31298, + "Directional": true + } + ] + }, + { + "ID": 16870, + "SourceStructureID": 76656, + "TargetStructureID": 5562, + "Label": "76656-5562 via Conventional from 76659 -> 76660", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76659, + "TargetID": 76660, + "Directional": true + } + ] + }, + { + "ID": 16871, + "SourceStructureID": 76663, + "TargetStructureID": 5562, + "Label": "76663-5562 via Conventional from 76667 -> 31297, 76669 -> 76668", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76667, + "TargetID": 31297, + "Directional": true + }, + { + "SourceID": 76669, + "TargetID": 76668, + "Directional": true + } + ] + }, + { + "ID": 16872, + "SourceStructureID": 76707, + "TargetStructureID": 5562, + "Label": "76707-5562 via Conventional from 76708 -> 47312", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76708, + "TargetID": 47312, + "Directional": true + } + ] + }, + { + "ID": 16873, + "SourceStructureID": 76709, + "TargetStructureID": 5562, + "Label": "76709-5562 via Conventional from 76710 -> 63246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76710, + "TargetID": 63246, + "Directional": true + } + ] + }, + { + "ID": 16874, + "SourceStructureID": 76721, + "TargetStructureID": 5562, + "Label": "76721-5562 via Conventional from 76722 -> 76723", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76722, + "TargetID": 76723, + "Directional": true + } + ] + }, + { + "ID": 16875, + "SourceStructureID": 76742, + "TargetStructureID": 5530, + "Label": "76742-5530 via Conventional from 76743 -> 76744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76743, + "TargetID": 76744, + "Directional": true + } + ] + }, + { + "ID": 16876, + "SourceStructureID": 76749, + "TargetStructureID": 5530, + "Label": "76749-5530 via Conventional from 76750 -> 76751", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76750, + "TargetID": 76751, + "Directional": true + } + ] + }, + { + "ID": 16877, + "SourceStructureID": 76752, + "TargetStructureID": 5530, + "Label": "76752-5530 via Conventional from 76753 -> 76754", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76753, + "TargetID": 76754, + "Directional": true + } + ] + }, + { + "ID": 16878, + "SourceStructureID": 76756, + "TargetStructureID": 5530, + "Label": "76756-5530 via Conventional from 76757 -> 76758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76757, + "TargetID": 76758, + "Directional": true + } + ] + }, + { + "ID": 16879, + "SourceStructureID": 76766, + "TargetStructureID": 5530, + "Label": "76766-5530 via Conventional from 76767 -> 76768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76767, + "TargetID": 76768, + "Directional": true + } + ] + }, + { + "ID": 16880, + "SourceStructureID": 76775, + "TargetStructureID": 5530, + "Label": "76775-5530 via Conventional from 76776 -> 76777", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76776, + "TargetID": 76777, + "Directional": true + } + ] + }, + { + "ID": 16881, + "SourceStructureID": 76778, + "TargetStructureID": 5530, + "Label": "76778-5530 via Conventional from 76779 -> 76780", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76779, + "TargetID": 76780, + "Directional": true + } + ] + }, + { + "ID": 16882, + "SourceStructureID": 76781, + "TargetStructureID": 5530, + "Label": "76781-5530 via Conventional from 76782 -> 76783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76782, + "TargetID": 76783, + "Directional": true + } + ] + }, + { + "ID": 16883, + "SourceStructureID": 76785, + "TargetStructureID": 5530, + "Label": "76785-5530 via Conventional from 76787 -> 76788", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76787, + "TargetID": 76788, + "Directional": true + } + ] + }, + { + "ID": 16884, + "SourceStructureID": 76786, + "TargetStructureID": 5530, + "Label": "76786-5530 via Conventional from 76789 -> 76790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76789, + "TargetID": 76790, + "Directional": true + } + ] + }, + { + "ID": 16885, + "SourceStructureID": 76792, + "TargetStructureID": 14615, + "Label": "76792-14615 via Conventional from 76793 -> 76794, 76884 -> 76885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76793, + "TargetID": 76794, + "Directional": true + }, + { + "SourceID": 76884, + "TargetID": 76885, + "Directional": true + } + ] + }, + { + "ID": 16886, + "SourceStructureID": 76800, + "TargetStructureID": 5530, + "Label": "76800-5530 via Conventional from 76822 -> 76823", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76822, + "TargetID": 76823, + "Directional": true + } + ] + }, + { + "ID": 16887, + "SourceStructureID": 76808, + "TargetStructureID": 14615, + "Label": "76808-14615 via Conventional from 76809 -> 76807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76809, + "TargetID": 76807, + "Directional": true + } + ] + }, + { + "ID": 16888, + "SourceStructureID": 76811, + "TargetStructureID": 14615, + "Label": "76811-14615 via Conventional from 76812 -> 76813", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76812, + "TargetID": 76813, + "Directional": true + } + ] + }, + { + "ID": 16889, + "SourceStructureID": 76827, + "TargetStructureID": 14615, + "Label": "76827-14615 via Conventional from 76843 -> 76844, 76855 -> 76856", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76843, + "TargetID": 76844, + "Directional": true + }, + { + "SourceID": 76855, + "TargetID": 76856, + "Directional": true + } + ] + }, + { + "ID": 16890, + "SourceStructureID": 76837, + "TargetStructureID": 76829, + "Label": "76837-76829 via Conventional from 76838 -> 76836", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76838, + "TargetID": 76836, + "Directional": true + } + ] + }, + { + "ID": 16891, + "SourceStructureID": 76859, + "TargetStructureID": 14615, + "Label": "76859-14615 via Conventional from 76860 -> 76858", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76860, + "TargetID": 76858, + "Directional": true + } + ] + }, + { + "ID": 16892, + "SourceStructureID": 76862, + "TargetStructureID": 76859, + "Label": "76862-76859 via Conventional from 76863 -> 76861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76863, + "TargetID": 76861, + "Directional": true + } + ] + }, + { + "ID": 16893, + "SourceStructureID": 76867, + "TargetStructureID": 5530, + "Label": "76867-5530 via Conventional from 82572 -> 76755", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82572, + "TargetID": 76755, + "Directional": true + } + ] + }, + { + "ID": 16894, + "SourceStructureID": 76867, + "TargetStructureID": 76749, + "Label": "76867-76749 via Conventional from 82573 -> 82574", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82573, + "TargetID": 82574, + "Directional": true + } + ] + }, + { + "ID": 16895, + "SourceStructureID": 76871, + "TargetStructureID": 14615, + "Label": "76871-14615 via Conventional from 76872 -> 76870", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76872, + "TargetID": 76870, + "Directional": true + } + ] + }, + { + "ID": 16896, + "SourceStructureID": 76877, + "TargetStructureID": 76595, + "Label": "76877-76595 via Conventional from 76878 -> 76637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76878, + "TargetID": 76637, + "Directional": true + } + ] + }, + { + "ID": 16897, + "SourceStructureID": 76886, + "TargetStructureID": 67671, + "Label": "76886-67671 via Conventional from 76887 -> 76888", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76887, + "TargetID": 76888, + "Directional": true + } + ] + }, + { + "ID": 16898, + "SourceStructureID": 76912, + "TargetStructureID": 14615, + "Label": "76912-14615 via Conventional from 76913 -> 76914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76913, + "TargetID": 76914, + "Directional": true + } + ] + }, + { + "ID": 16899, + "SourceStructureID": 76947, + "TargetStructureID": 5562, + "Label": "76947-5562 via Conventional from 76948 -> 63222", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76948, + "TargetID": 63222, + "Directional": true + } + ] + }, + { + "ID": 16900, + "SourceStructureID": 76949, + "TargetStructureID": 5562, + "Label": "76949-5562 via Conventional from 76950 -> 63234", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76950, + "TargetID": 63234, + "Directional": true + } + ] + }, + { + "ID": 16901, + "SourceStructureID": 76951, + "TargetStructureID": 5562, + "Label": "76951-5562 via Conventional from 76952 -> 63232", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76952, + "TargetID": 63232, + "Directional": true + } + ] + }, + { + "ID": 16902, + "SourceStructureID": 76973, + "TargetStructureID": 10931, + "Label": "76973-10931 via Conventional from 76975 -> 76976, 77008 -> 77009, 77030 -> 77031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76975, + "TargetID": 76976, + "Directional": true + }, + { + "SourceID": 77008, + "TargetID": 77009, + "Directional": true + }, + { + "SourceID": 77030, + "TargetID": 77031, + "Directional": true + } + ] + }, + { + "ID": 16903, + "SourceStructureID": 76977, + "TargetStructureID": 71519, + "Label": "76977-71519 via Conventional from 76978 -> 76979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76978, + "TargetID": 76979, + "Directional": true + } + ] + }, + { + "ID": 16904, + "SourceStructureID": 76980, + "TargetStructureID": 71519, + "Label": "76980-71519 via Conventional from 76981 -> 71712", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76981, + "TargetID": 71712, + "Directional": true + } + ] + }, + { + "ID": 16905, + "SourceStructureID": 76980, + "TargetStructureID": 76986, + "Label": "76980-76986 via Conventional from 76985 -> 76988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76985, + "TargetID": 76988, + "Directional": true + } + ] + }, + { + "ID": 16906, + "SourceStructureID": 76983, + "TargetStructureID": 76980, + "Label": "76983-76980 via Conventional from 76984 -> 76982", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76984, + "TargetID": 76982, + "Directional": true + } + ] + }, + { + "ID": 16907, + "SourceStructureID": 76986, + "TargetStructureID": 71519, + "Label": "76986-71519 via Conventional from 76987 -> 71713", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76987, + "TargetID": 71713, + "Directional": true + } + ] + }, + { + "ID": 16908, + "SourceStructureID": 76990, + "TargetStructureID": 71519, + "Label": "76990-71519 via Conventional from 76991 -> 76989", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76991, + "TargetID": 76989, + "Directional": true + } + ] + }, + { + "ID": 16909, + "SourceStructureID": 76996, + "TargetStructureID": 71517, + "Label": "76996-71517 via Conventional from 76997 -> 76998", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 76997, + "TargetID": 76998, + "Directional": true + } + ] + }, + { + "ID": 16910, + "SourceStructureID": 77012, + "TargetStructureID": 10931, + "Label": "77012-10931 via Conventional from 77013 -> 77014, 77016 -> 77017", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77013, + "TargetID": 77014, + "Directional": true + }, + { + "SourceID": 77016, + "TargetID": 77017, + "Directional": true + } + ] + }, + { + "ID": 16911, + "SourceStructureID": 77019, + "TargetStructureID": 10931, + "Label": "77019-10931 via Conventional from 77025 -> 14220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77025, + "TargetID": 14220, + "Directional": true + } + ] + }, + { + "ID": 16912, + "SourceStructureID": 77023, + "TargetStructureID": 71519, + "Label": "77023-71519 via Conventional from 77024 -> 71703", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77024, + "TargetID": 71703, + "Directional": true + } + ] + }, + { + "ID": 16913, + "SourceStructureID": 77027, + "TargetStructureID": 71519, + "Label": "77027-71519 via Conventional from 77028 -> 71680", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77028, + "TargetID": 71680, + "Directional": true + } + ] + }, + { + "ID": 16914, + "SourceStructureID": 77033, + "TargetStructureID": 77027, + "Label": "77033-77027 via Conventional from 77034 -> 77032", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77034, + "TargetID": 77032, + "Directional": true + } + ] + }, + { + "ID": 16915, + "SourceStructureID": 77037, + "TargetStructureID": 71519, + "Label": "77037-71519 via Conventional from 77038 -> 77039", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77038, + "TargetID": 77039, + "Directional": true + } + ] + }, + { + "ID": 16916, + "SourceStructureID": 77040, + "TargetStructureID": 71519, + "Label": "77040-71519 via Conventional from 77041 -> 77042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77041, + "TargetID": 77042, + "Directional": true + } + ] + }, + { + "ID": 16917, + "SourceStructureID": 77043, + "TargetStructureID": 71519, + "Label": "77043-71519 via Conventional from 77044 -> 77045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77044, + "TargetID": 77045, + "Directional": true + } + ] + }, + { + "ID": 16918, + "SourceStructureID": 77046, + "TargetStructureID": 71519, + "Label": "77046-71519 via Conventional from 77047 -> 77049", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77047, + "TargetID": 77049, + "Directional": true + } + ] + }, + { + "ID": 16919, + "SourceStructureID": 77051, + "TargetStructureID": 71519, + "Label": "77051-71519 via Conventional from 77052 -> 77050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77052, + "TargetID": 77050, + "Directional": true + } + ] + }, + { + "ID": 16920, + "SourceStructureID": 77077, + "TargetStructureID": 5394, + "Label": "77077-5394 via Conventional from 77078 -> 77074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77078, + "TargetID": 77074, + "Directional": true + } + ] + }, + { + "ID": 16921, + "SourceStructureID": 77110, + "TargetStructureID": 5562, + "Label": "77110-5562 via Conventional from 77114 -> 77113", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77114, + "TargetID": 77113, + "Directional": true + } + ] + }, + { + "ID": 16922, + "SourceStructureID": 77116, + "TargetStructureID": 65351, + "Label": "77116-65351 via Conventional from 78980 -> 78979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78980, + "TargetID": 78979, + "Directional": true + } + ] + }, + { + "ID": 16923, + "SourceStructureID": 77118, + "TargetStructureID": 5562, + "Label": "77118-5562 via Conventional from 77119 -> 63227", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77119, + "TargetID": 63227, + "Directional": true + } + ] + }, + { + "ID": 16924, + "SourceStructureID": 77120, + "TargetStructureID": 5562, + "Label": "77120-5562 via Conventional from 77121 -> 63225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77121, + "TargetID": 63225, + "Directional": true + } + ] + }, + { + "ID": 16925, + "SourceStructureID": 77122, + "TargetStructureID": 5562, + "Label": "77122-5562 via Conventional from 77123 -> 63226", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77123, + "TargetID": 63226, + "Directional": true + } + ] + }, + { + "ID": 16926, + "SourceStructureID": 77137, + "TargetStructureID": 5562, + "Label": "77137-5562 via Conventional from 77139 -> 77138", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77139, + "TargetID": 77138, + "Directional": true + } + ] + }, + { + "ID": 16927, + "SourceStructureID": 77140, + "TargetStructureID": 5562, + "Label": "77140-5562 via Conventional from 77142 -> 77141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77142, + "TargetID": 77141, + "Directional": true + } + ] + }, + { + "ID": 16928, + "SourceStructureID": 77143, + "TargetStructureID": 5562, + "Label": "77143-5562 via Conventional from 77144 -> 77145", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77144, + "TargetID": 77145, + "Directional": true + } + ] + }, + { + "ID": 16929, + "SourceStructureID": 77172, + "TargetStructureID": 5562, + "Label": "77172-5562 via Conventional from 77173 -> 77174", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77173, + "TargetID": 77174, + "Directional": true + } + ] + }, + { + "ID": 16930, + "SourceStructureID": 77199, + "TargetStructureID": 5562, + "Label": "77199-5562 via Conventional from 77201 -> 77200", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77201, + "TargetID": 77200, + "Directional": true + } + ] + }, + { + "ID": 16931, + "SourceStructureID": 77215, + "TargetStructureID": 7024, + "Label": "77215-7024 via Conventional from 106603 -> 106602", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106603, + "TargetID": 106602, + "Directional": true + } + ] + }, + { + "ID": 16932, + "SourceStructureID": 77222, + "TargetStructureID": 5562, + "Label": "77222-5562 via Conventional from 77224 -> 77223", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77224, + "TargetID": 77223, + "Directional": true + } + ] + }, + { + "ID": 16933, + "SourceStructureID": 77225, + "TargetStructureID": 5562, + "Label": "77225-5562 via Conventional from 77227 -> 77226", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77227, + "TargetID": 77226, + "Directional": true + } + ] + }, + { + "ID": 16934, + "SourceStructureID": 77228, + "TargetStructureID": 5562, + "Label": "77228-5562 via Conventional from 77229 -> 77230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77229, + "TargetID": 77230, + "Directional": true + } + ] + }, + { + "ID": 16935, + "SourceStructureID": 77252, + "TargetStructureID": 5562, + "Label": "77252-5562 via Conventional from 77253 -> 77254", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77253, + "TargetID": 77254, + "Directional": true + } + ] + }, + { + "ID": 16936, + "SourceStructureID": 77280, + "TargetStructureID": 5562, + "Label": "77280-5562 via Conventional from 77281 -> 33097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77281, + "TargetID": 33097, + "Directional": true + } + ] + }, + { + "ID": 16937, + "SourceStructureID": 77292, + "TargetStructureID": 5562, + "Label": "77292-5562 via Conventional from 77293 -> 77294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77293, + "TargetID": 77294, + "Directional": true + } + ] + }, + { + "ID": 16938, + "SourceStructureID": 77296, + "TargetStructureID": 5562, + "Label": "77296-5562 via Conventional from 77426 -> 77427", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77426, + "TargetID": 77427, + "Directional": true + } + ] + }, + { + "ID": 16939, + "SourceStructureID": 77308, + "TargetStructureID": 5562, + "Label": "77308-5562 via Conventional from 77309 -> 49561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77309, + "TargetID": 49561, + "Directional": true + } + ] + }, + { + "ID": 16940, + "SourceStructureID": 77332, + "TargetStructureID": 5530, + "Label": "77332-5530 via Conventional from 77333 -> 77334, 82593 -> 82592", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77333, + "TargetID": 77334, + "Directional": true + }, + { + "SourceID": 82593, + "TargetID": 82592, + "Directional": true + } + ] + }, + { + "ID": 16941, + "SourceStructureID": 77342, + "TargetStructureID": 5530, + "Label": "77342-5530 via Conventional from 77343 -> 77344", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77343, + "TargetID": 77344, + "Directional": true + } + ] + }, + { + "ID": 16942, + "SourceStructureID": 77366, + "TargetStructureID": 67671, + "Label": "77366-67671 via Conventional from 77368 -> 77369", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77368, + "TargetID": 77369, + "Directional": true + } + ] + }, + { + "ID": 16943, + "SourceStructureID": 77367, + "TargetStructureID": 67671, + "Label": "77367-67671 via Conventional from 77373 -> 77374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77373, + "TargetID": 77374, + "Directional": true + } + ] + }, + { + "ID": 16944, + "SourceStructureID": 77370, + "TargetStructureID": 67671, + "Label": "77370-67671 via Conventional from 77371 -> 77372", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77371, + "TargetID": 77372, + "Directional": true + } + ] + }, + { + "ID": 16945, + "SourceStructureID": 77375, + "TargetStructureID": 67671, + "Label": "77375-67671 via Conventional from 77376 -> 77377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77376, + "TargetID": 77377, + "Directional": true + } + ] + }, + { + "ID": 16946, + "SourceStructureID": 77378, + "TargetStructureID": 67671, + "Label": "77378-67671 via Conventional from 77380 -> 77382", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77380, + "TargetID": 77382, + "Directional": true + } + ] + }, + { + "ID": 16947, + "SourceStructureID": 77379, + "TargetStructureID": 67671, + "Label": "77379-67671 via Conventional from 77381 -> 77383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77381, + "TargetID": 77383, + "Directional": true + } + ] + }, + { + "ID": 16948, + "SourceStructureID": 77388, + "TargetStructureID": 5530, + "Label": "77388-5530 via Conventional from 77389 -> 77390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77389, + "TargetID": 77390, + "Directional": true + } + ] + }, + { + "ID": 16949, + "SourceStructureID": 77393, + "TargetStructureID": 5530, + "Label": "77393-5530 via Conventional from 77394 -> 77395", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77394, + "TargetID": 77395, + "Directional": true + } + ] + }, + { + "ID": 16950, + "SourceStructureID": 77403, + "TargetStructureID": 5530, + "Label": "77403-5530 via Conventional from 77404 -> 77405", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77404, + "TargetID": 77405, + "Directional": true + } + ] + }, + { + "ID": 16951, + "SourceStructureID": 77403, + "TargetStructureID": 82677, + "Label": "77403-82677 via Conventional from 83655 -> 83654", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83655, + "TargetID": 83654, + "Directional": true + } + ] + }, + { + "ID": 16952, + "SourceStructureID": 77407, + "TargetStructureID": 5530, + "Label": "77407-5530 via Conventional from 77408 -> 77409", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77408, + "TargetID": 77409, + "Directional": true + } + ] + }, + { + "ID": 16953, + "SourceStructureID": 77412, + "TargetStructureID": 5530, + "Label": "77412-5530 via Conventional from 77414 -> 77415", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77414, + "TargetID": 77415, + "Directional": true + } + ] + }, + { + "ID": 16954, + "SourceStructureID": 77433, + "TargetStructureID": 5562, + "Label": "77433-5562 via Conventional from 77435 -> 77434", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77435, + "TargetID": 77434, + "Directional": true + } + ] + }, + { + "ID": 16955, + "SourceStructureID": 77436, + "TargetStructureID": 5562, + "Label": "77436-5562 via Conventional from 77439 -> 49564", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77439, + "TargetID": 49564, + "Directional": true + } + ] + }, + { + "ID": 16956, + "SourceStructureID": 77463, + "TargetStructureID": 5562, + "Label": "77463-5562 via Conventional from 77464 -> 77465", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77464, + "TargetID": 77465, + "Directional": true + } + ] + }, + { + "ID": 16957, + "SourceStructureID": 77476, + "TargetStructureID": 5562, + "Label": "77476-5562 via Conventional from 77477 -> 77478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77477, + "TargetID": 77478, + "Directional": true + } + ] + }, + { + "ID": 16958, + "SourceStructureID": 77484, + "TargetStructureID": 5562, + "Label": "77484-5562 via Conventional from 77485 -> 77486", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77485, + "TargetID": 77486, + "Directional": true + } + ] + }, + { + "ID": 16959, + "SourceStructureID": 77504, + "TargetStructureID": 5562, + "Label": "77504-5562 via Conventional from 77505 -> 77506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77505, + "TargetID": 77506, + "Directional": true + } + ] + }, + { + "ID": 16960, + "SourceStructureID": 77513, + "TargetStructureID": 5562, + "Label": "77513-5562 via Conventional from 77514 -> 77515", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77514, + "TargetID": 77515, + "Directional": true + } + ] + }, + { + "ID": 16961, + "SourceStructureID": 77529, + "TargetStructureID": 5562, + "Label": "77529-5562 via Conventional from 77530 -> 77531", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77530, + "TargetID": 77531, + "Directional": true + } + ] + }, + { + "ID": 16962, + "SourceStructureID": 77539, + "TargetStructureID": 5562, + "Label": "77539-5562 via Conventional from 77540 -> 77541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77540, + "TargetID": 77541, + "Directional": true + } + ] + }, + { + "ID": 16963, + "SourceStructureID": 77555, + "TargetStructureID": 5562, + "Label": "77555-5562 via Conventional from 77556 -> 77557", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77556, + "TargetID": 77557, + "Directional": true + } + ] + }, + { + "ID": 16964, + "SourceStructureID": 77563, + "TargetStructureID": 5562, + "Label": "77563-5562 via Conventional from 77564 -> 77565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77564, + "TargetID": 77565, + "Directional": true + } + ] + }, + { + "ID": 16965, + "SourceStructureID": 77575, + "TargetStructureID": 5562, + "Label": "77575-5562 via Conventional from 77577 -> 77576", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77577, + "TargetID": 77576, + "Directional": true + } + ] + }, + { + "ID": 16966, + "SourceStructureID": 77596, + "TargetStructureID": 5562, + "Label": "77596-5562 via Conventional from 77610 -> 77611", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77610, + "TargetID": 77611, + "Directional": true + } + ] + }, + { + "ID": 16967, + "SourceStructureID": 77598, + "TargetStructureID": 5562, + "Label": "77598-5562 via Unknown from 77599 -> 77597", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 77599, + "TargetID": 77597, + "Directional": true + } + ] + }, + { + "ID": 16968, + "SourceStructureID": 77603, + "TargetStructureID": 5284, + "Label": "77603-5284 via Conventional from 84535 -> 64598", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84535, + "TargetID": 64598, + "Directional": true + } + ] + }, + { + "ID": 16969, + "SourceStructureID": 77613, + "TargetStructureID": 5562, + "Label": "77613-5562 via Conventional from 77614 -> 77615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77614, + "TargetID": 77615, + "Directional": true + } + ] + }, + { + "ID": 16970, + "SourceStructureID": 77619, + "TargetStructureID": 5530, + "Label": "77619-5530 via Conventional from 77620 -> 77621", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77620, + "TargetID": 77621, + "Directional": true + } + ] + }, + { + "ID": 16971, + "SourceStructureID": 77623, + "TargetStructureID": 5530, + "Label": "77623-5530 via Conventional from 77624 -> 45400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77624, + "TargetID": 45400, + "Directional": true + } + ] + }, + { + "ID": 16972, + "SourceStructureID": 77625, + "TargetStructureID": 5530, + "Label": "77625-5530 via Conventional from 77626 -> 77627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77626, + "TargetID": 77627, + "Directional": true + } + ] + }, + { + "ID": 16973, + "SourceStructureID": 77637, + "TargetStructureID": 5530, + "Label": "77637-5530 via Conventional from 77638 -> 77639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77638, + "TargetID": 77639, + "Directional": true + } + ] + }, + { + "ID": 16974, + "SourceStructureID": 77642, + "TargetStructureID": 5530, + "Label": "77642-5530 via Conventional from 77646 -> 77647", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77646, + "TargetID": 77647, + "Directional": true + } + ] + }, + { + "ID": 16975, + "SourceStructureID": 77656, + "TargetStructureID": 77654, + "Label": "77656-77654 via Conventional from 77657 -> 77655", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77657, + "TargetID": 77655, + "Directional": true + } + ] + }, + { + "ID": 16976, + "SourceStructureID": 77658, + "TargetStructureID": 11030, + "Label": "77658-11030 via Conventional from 77659 -> 77660", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77659, + "TargetID": 77660, + "Directional": true + } + ] + }, + { + "ID": 16977, + "SourceStructureID": 77664, + "TargetStructureID": 5645, + "Label": "77664-5645 via Conventional from 77665 -> 77663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77665, + "TargetID": 77663, + "Directional": true + } + ] + }, + { + "ID": 16978, + "SourceStructureID": 77669, + "TargetStructureID": 5645, + "Label": "77669-5645 via Conventional from 77670 -> 77668", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77670, + "TargetID": 77668, + "Directional": true + } + ] + }, + { + "ID": 16979, + "SourceStructureID": 77674, + "TargetStructureID": 6115, + "Label": "77674-6115 via Conventional from 77675 -> 77673", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77675, + "TargetID": 77673, + "Directional": true + } + ] + }, + { + "ID": 16980, + "SourceStructureID": 77677, + "TargetStructureID": 6115, + "Label": "77677-6115 via Conventional from 93080 -> 77681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93080, + "TargetID": 77681, + "Directional": true + } + ] + }, + { + "ID": 16981, + "SourceStructureID": 77677, + "TargetStructureID": 16087, + "Label": "77677-16087 via Conventional from 77680 -> 16093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77680, + "TargetID": 16093, + "Directional": true + } + ] + }, + { + "ID": 16982, + "SourceStructureID": 77682, + "TargetStructureID": 67671, + "Label": "77682-67671 via Conventional from 77683 -> 77684", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77683, + "TargetID": 77684, + "Directional": true + } + ] + }, + { + "ID": 16983, + "SourceStructureID": 77691, + "TargetStructureID": 67671, + "Label": "77691-67671 via Conventional from 77692 -> 77693", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77692, + "TargetID": 77693, + "Directional": true + } + ] + }, + { + "ID": 16984, + "SourceStructureID": 77695, + "TargetStructureID": 6115, + "Label": "77695-6115 via Conventional from 77696 -> 77694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77696, + "TargetID": 77694, + "Directional": true + } + ] + }, + { + "ID": 16985, + "SourceStructureID": 77698, + "TargetStructureID": 67671, + "Label": "77698-67671 via Conventional from 77699 -> 77700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77699, + "TargetID": 77700, + "Directional": true + } + ] + }, + { + "ID": 16986, + "SourceStructureID": 77706, + "TargetStructureID": 5649, + "Label": "77706-5649 via Conventional from 78015 -> 53949", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78015, + "TargetID": 53949, + "Directional": true + } + ] + }, + { + "ID": 16987, + "SourceStructureID": 77706, + "TargetStructureID": 67671, + "Label": "77706-67671 via Conventional from 77707 -> 77705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77707, + "TargetID": 77705, + "Directional": true + } + ] + }, + { + "ID": 16988, + "SourceStructureID": 77708, + "TargetStructureID": 67671, + "Label": "77708-67671 via Conventional from 77709 -> 77710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77709, + "TargetID": 77710, + "Directional": true + } + ] + }, + { + "ID": 16989, + "SourceStructureID": 77712, + "TargetStructureID": 77708, + "Label": "77712-77708 via Conventional from 77713 -> 77711", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77713, + "TargetID": 77711, + "Directional": true + } + ] + }, + { + "ID": 16990, + "SourceStructureID": 77714, + "TargetStructureID": 67671, + "Label": "77714-67671 via Conventional from 77715 -> 77716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77715, + "TargetID": 77716, + "Directional": true + } + ] + }, + { + "ID": 16991, + "SourceStructureID": 77718, + "TargetStructureID": 6115, + "Label": "77718-6115 via Conventional from 77719 -> 77717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77719, + "TargetID": 77717, + "Directional": true + } + ] + }, + { + "ID": 16992, + "SourceStructureID": 77726, + "TargetStructureID": 5562, + "Label": "77726-5562 via Conventional from 77728 -> 77729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77728, + "TargetID": 77729, + "Directional": true + } + ] + }, + { + "ID": 16993, + "SourceStructureID": 77736, + "TargetStructureID": 5562, + "Label": "77736-5562 via Conventional from 77737 -> 77738", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77737, + "TargetID": 77738, + "Directional": true + } + ] + }, + { + "ID": 16994, + "SourceStructureID": 77741, + "TargetStructureID": 5562, + "Label": "77741-5562 via Conventional from 77742 -> 77743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77742, + "TargetID": 77743, + "Directional": true + } + ] + }, + { + "ID": 16995, + "SourceStructureID": 77750, + "TargetStructureID": 5562, + "Label": "77750-5562 via Conventional from 77751 -> 63625", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77751, + "TargetID": 63625, + "Directional": true + } + ] + }, + { + "ID": 16996, + "SourceStructureID": 77754, + "TargetStructureID": 5562, + "Label": "77754-5562 via Conventional from 77755 -> 63627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77755, + "TargetID": 63627, + "Directional": true + } + ] + }, + { + "ID": 16997, + "SourceStructureID": 77770, + "TargetStructureID": 5562, + "Label": "77770-5562 via Conventional from 77771 -> 77772", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77771, + "TargetID": 77772, + "Directional": true + } + ] + }, + { + "ID": 16998, + "SourceStructureID": 77773, + "TargetStructureID": 5562, + "Label": "77773-5562 via Conventional from 77774 -> 31054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77774, + "TargetID": 31054, + "Directional": true + } + ] + }, + { + "ID": 16999, + "SourceStructureID": 77775, + "TargetStructureID": 5562, + "Label": "77775-5562 via Conventional from 77776 -> 63257", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77776, + "TargetID": 63257, + "Directional": true + } + ] + }, + { + "ID": 17000, + "SourceStructureID": 77782, + "TargetStructureID": 5562, + "Label": "77782-5562 via Conventional from 77783 -> 63258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77783, + "TargetID": 63258, + "Directional": true + } + ] + }, + { + "ID": 17001, + "SourceStructureID": 77784, + "TargetStructureID": 5562, + "Label": "77784-5562 via Conventional from 77785 -> 63259", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77785, + "TargetID": 63259, + "Directional": true + } + ] + }, + { + "ID": 17002, + "SourceStructureID": 77796, + "TargetStructureID": 5562, + "Label": "77796-5562 via Conventional from 77797 -> 63265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77797, + "TargetID": 63265, + "Directional": true + } + ] + }, + { + "ID": 17003, + "SourceStructureID": 77800, + "TargetStructureID": 5562, + "Label": "77800-5562 via Conventional from 77801 -> 63263", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77801, + "TargetID": 63263, + "Directional": true + } + ] + }, + { + "ID": 17004, + "SourceStructureID": 77826, + "TargetStructureID": 5562, + "Label": "77826-5562 via Conventional from 77827 -> 63266", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77827, + "TargetID": 63266, + "Directional": true + } + ] + }, + { + "ID": 17005, + "SourceStructureID": 77831, + "TargetStructureID": 5562, + "Label": "77831-5562 via Conventional from 77832 -> 63269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77832, + "TargetID": 63269, + "Directional": true + } + ] + }, + { + "ID": 17006, + "SourceStructureID": 77840, + "TargetStructureID": 82426, + "Label": "77840-82426 via Conventional from 82428 -> 82429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82428, + "TargetID": 82429, + "Directional": true + } + ] + }, + { + "ID": 17007, + "SourceStructureID": 77842, + "TargetStructureID": 5562, + "Label": "77842-5562 via Conventional from 77843 -> 63268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77843, + "TargetID": 63268, + "Directional": true + } + ] + }, + { + "ID": 17008, + "SourceStructureID": 77851, + "TargetStructureID": 5562, + "Label": "77851-5562 via Conventional from 77852 -> 77853", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77852, + "TargetID": 77853, + "Directional": true + } + ] + }, + { + "ID": 17009, + "SourceStructureID": 77868, + "TargetStructureID": 5562, + "Label": "77868-5562 via Conventional from 77869 -> 63282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77869, + "TargetID": 63282, + "Directional": true + } + ] + }, + { + "ID": 17010, + "SourceStructureID": 77870, + "TargetStructureID": 5562, + "Label": "77870-5562 via Conventional from 77871 -> 63278", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77871, + "TargetID": 63278, + "Directional": true + } + ] + }, + { + "ID": 17011, + "SourceStructureID": 77883, + "TargetStructureID": 5562, + "Label": "77883-5562 via Conventional from 78411 -> 78412", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78411, + "TargetID": 78412, + "Directional": true + } + ] + }, + { + "ID": 17012, + "SourceStructureID": 77898, + "TargetStructureID": 5562, + "Label": "77898-5562 via Conventional from 77899 -> 63281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77899, + "TargetID": 63281, + "Directional": true + } + ] + }, + { + "ID": 17013, + "SourceStructureID": 77906, + "TargetStructureID": 66523, + "Label": "77906-66523 via Conventional from 77907 -> 77908", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77907, + "TargetID": 77908, + "Directional": true + } + ] + }, + { + "ID": 17014, + "SourceStructureID": 77932, + "TargetStructureID": 5530, + "Label": "77932-5530 via Conventional from 77933 -> 77934", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77933, + "TargetID": 77934, + "Directional": true + } + ] + }, + { + "ID": 17015, + "SourceStructureID": 77938, + "TargetStructureID": 5530, + "Label": "77938-5530 via Conventional from 77939 -> 77940", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77939, + "TargetID": 77940, + "Directional": true + } + ] + }, + { + "ID": 17016, + "SourceStructureID": 77959, + "TargetStructureID": 608, + "Label": "77959-608 via Conventional from 77960 -> 77958", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77960, + "TargetID": 77958, + "Directional": true + } + ] + }, + { + "ID": 17017, + "SourceStructureID": 77961, + "TargetStructureID": 77959, + "Label": "77961-77959 via Conventional from 77962 -> 77963", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77962, + "TargetID": 77963, + "Directional": true + } + ] + }, + { + "ID": 17018, + "SourceStructureID": 77970, + "TargetStructureID": 66523, + "Label": "77970-66523 via Conventional from 77971 -> 77972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77971, + "TargetID": 77972, + "Directional": true + } + ] + }, + { + "ID": 17019, + "SourceStructureID": 77973, + "TargetStructureID": 66523, + "Label": "77973-66523 via Conventional from 77974 -> 77975, 77978 -> 77979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77974, + "TargetID": 77975, + "Directional": true + }, + { + "SourceID": 77978, + "TargetID": 77979, + "Directional": true + } + ] + }, + { + "ID": 17020, + "SourceStructureID": 77981, + "TargetStructureID": 67671, + "Label": "77981-67671 via Conventional from 77982 -> 77983", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77982, + "TargetID": 77983, + "Directional": true + } + ] + }, + { + "ID": 17021, + "SourceStructureID": 77988, + "TargetStructureID": 67671, + "Label": "77988-67671 via Conventional from 77989 -> 77990", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77989, + "TargetID": 77990, + "Directional": true + } + ] + }, + { + "ID": 17022, + "SourceStructureID": 77992, + "TargetStructureID": 67671, + "Label": "77992-67671 via Conventional from 77993 -> 77994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 77993, + "TargetID": 77994, + "Directional": true + } + ] + }, + { + "ID": 17023, + "SourceStructureID": 78010, + "TargetStructureID": 77691, + "Label": "78010-77691 via Conventional from 78011 -> 78009", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78011, + "TargetID": 78009, + "Directional": true + } + ] + }, + { + "ID": 17024, + "SourceStructureID": 78021, + "TargetStructureID": 78290, + "Label": "78021-78290 via Conventional from 78291 -> 78292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78291, + "TargetID": 78292, + "Directional": true + } + ] + }, + { + "ID": 17025, + "SourceStructureID": 78028, + "TargetStructureID": 67671, + "Label": "78028-67671 via Conventional from 78029 -> 78030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78029, + "TargetID": 78030, + "Directional": true + } + ] + }, + { + "ID": 17026, + "SourceStructureID": 78032, + "TargetStructureID": 67671, + "Label": "78032-67671 via Adherens from 78035 -> 78034", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 78035, + "TargetID": 78034, + "Directional": true + } + ] + }, + { + "ID": 17027, + "SourceStructureID": 78032, + "TargetStructureID": 67671, + "Label": "78032-67671 via Conventional from 78033 -> 78031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78033, + "TargetID": 78031, + "Directional": true + } + ] + }, + { + "ID": 17028, + "SourceStructureID": 78038, + "TargetStructureID": 67671, + "Label": "78038-67671 via Conventional from 78039 -> 78040", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78039, + "TargetID": 78040, + "Directional": true + } + ] + }, + { + "ID": 17029, + "SourceStructureID": 78045, + "TargetStructureID": 5645, + "Label": "78045-5645 via Conventional from 78054 -> 78053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78054, + "TargetID": 78053, + "Directional": true + } + ] + }, + { + "ID": 17030, + "SourceStructureID": 78045, + "TargetStructureID": 67671, + "Label": "78045-67671 via Conventional from 78046 -> 78047", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78046, + "TargetID": 78047, + "Directional": true + } + ] + }, + { + "ID": 17031, + "SourceStructureID": 78057, + "TargetStructureID": 5645, + "Label": "78057-5645 via Conventional from 78064 -> 78065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78064, + "TargetID": 78065, + "Directional": true + } + ] + }, + { + "ID": 17032, + "SourceStructureID": 78057, + "TargetStructureID": 67671, + "Label": "78057-67671 via Conventional from 78058 -> 78059", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78058, + "TargetID": 78059, + "Directional": true + } + ] + }, + { + "ID": 17033, + "SourceStructureID": 78067, + "TargetStructureID": 67671, + "Label": "78067-67671 via Conventional from 78068 -> 78066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78068, + "TargetID": 78066, + "Directional": true + } + ] + }, + { + "ID": 17034, + "SourceStructureID": 78074, + "TargetStructureID": 67671, + "Label": "78074-67671 via Conventional from 78075 -> 78077", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78075, + "TargetID": 78077, + "Directional": true + } + ] + }, + { + "ID": 17035, + "SourceStructureID": 78080, + "TargetStructureID": 67671, + "Label": "78080-67671 via Conventional from 78277 -> 78278", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78277, + "TargetID": 78278, + "Directional": true + } + ] + }, + { + "ID": 17036, + "SourceStructureID": 78086, + "TargetStructureID": 5562, + "Label": "78086-5562 via Conventional from 78087 -> 63255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78087, + "TargetID": 63255, + "Directional": true + } + ] + }, + { + "ID": 17037, + "SourceStructureID": 78094, + "TargetStructureID": 5562, + "Label": "78094-5562 via Conventional from 78095 -> 78096", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78095, + "TargetID": 78096, + "Directional": true + } + ] + }, + { + "ID": 17038, + "SourceStructureID": 78107, + "TargetStructureID": 5562, + "Label": "78107-5562 via Conventional from 78108 -> 31058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78108, + "TargetID": 31058, + "Directional": true + } + ] + }, + { + "ID": 17039, + "SourceStructureID": 78109, + "TargetStructureID": 5562, + "Label": "78109-5562 via Conventional from 78114 -> 31061", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78114, + "TargetID": 31061, + "Directional": true + } + ] + }, + { + "ID": 17040, + "SourceStructureID": 78115, + "TargetStructureID": 5562, + "Label": "78115-5562 via Conventional from 78116 -> 63332", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78116, + "TargetID": 63332, + "Directional": true + } + ] + }, + { + "ID": 17041, + "SourceStructureID": 78118, + "TargetStructureID": 5562, + "Label": "78118-5562 via Conventional from 78119 -> 31059", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78119, + "TargetID": 31059, + "Directional": true + } + ] + }, + { + "ID": 17042, + "SourceStructureID": 78122, + "TargetStructureID": 5562, + "Label": "78122-5562 via Conventional from 78123 -> 63331", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78123, + "TargetID": 63331, + "Directional": true + } + ] + }, + { + "ID": 17043, + "SourceStructureID": 78126, + "TargetStructureID": 69537, + "Label": "78126-69537 via Conventional from 82452 -> 69620, 82453 -> 69621", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82452, + "TargetID": 69620, + "Directional": true + }, + { + "SourceID": 82453, + "TargetID": 69621, + "Directional": true + } + ] + }, + { + "ID": 17044, + "SourceStructureID": 78129, + "TargetStructureID": 5562, + "Label": "78129-5562 via Conventional from 78132 -> 63344", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78132, + "TargetID": 63344, + "Directional": true + } + ] + }, + { + "ID": 17045, + "SourceStructureID": 78141, + "TargetStructureID": 5562, + "Label": "78141-5562 via Conventional from 78142 -> 63342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78142, + "TargetID": 63342, + "Directional": true + } + ] + }, + { + "ID": 17046, + "SourceStructureID": 78163, + "TargetStructureID": 5562, + "Label": "78163-5562 via Conventional from 78164 -> 48471", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78164, + "TargetID": 48471, + "Directional": true + } + ] + }, + { + "ID": 17047, + "SourceStructureID": 78177, + "TargetStructureID": 5562, + "Label": "78177-5562 via Conventional from 78178 -> 63617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78178, + "TargetID": 63617, + "Directional": true + } + ] + }, + { + "ID": 17048, + "SourceStructureID": 78179, + "TargetStructureID": 5562, + "Label": "78179-5562 via Conventional from 78180 -> 48464", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78180, + "TargetID": 48464, + "Directional": true + } + ] + }, + { + "ID": 17049, + "SourceStructureID": 78191, + "TargetStructureID": 5562, + "Label": "78191-5562 via Conventional from 78192 -> 63351", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78192, + "TargetID": 63351, + "Directional": true + } + ] + }, + { + "ID": 17050, + "SourceStructureID": 78198, + "TargetStructureID": 5562, + "Label": "78198-5562 via Conventional from 78199 -> 63348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78199, + "TargetID": 63348, + "Directional": true + } + ] + }, + { + "ID": 17051, + "SourceStructureID": 78200, + "TargetStructureID": 5562, + "Label": "78200-5562 via Conventional from 78201 -> 63349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78201, + "TargetID": 63349, + "Directional": true + } + ] + }, + { + "ID": 17052, + "SourceStructureID": 78214, + "TargetStructureID": 78217, + "Label": "78214-78217 via Conventional from 78218 -> 78219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78218, + "TargetID": 78219, + "Directional": true + } + ] + }, + { + "ID": 17053, + "SourceStructureID": 78224, + "TargetStructureID": 67671, + "Label": "78224-67671 via Conventional from 78225 -> 78226", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78225, + "TargetID": 78226, + "Directional": true + } + ] + }, + { + "ID": 17054, + "SourceStructureID": 78228, + "TargetStructureID": 67671, + "Label": "78228-67671 via Conventional from 78229 -> 78230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78229, + "TargetID": 78230, + "Directional": true + } + ] + }, + { + "ID": 17055, + "SourceStructureID": 78232, + "TargetStructureID": 67671, + "Label": "78232-67671 via Conventional from 78233 -> 78235", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78233, + "TargetID": 78235, + "Directional": true + } + ] + }, + { + "ID": 17056, + "SourceStructureID": 78242, + "TargetStructureID": 5562, + "Label": "78242-5562 via Conventional from 78243 -> 63347", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78243, + "TargetID": 63347, + "Directional": true + } + ] + }, + { + "ID": 17057, + "SourceStructureID": 78244, + "TargetStructureID": 67671, + "Label": "78244-67671 via Conventional from 78245 -> 78246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78245, + "TargetID": 78246, + "Directional": true + } + ] + }, + { + "ID": 17058, + "SourceStructureID": 78249, + "TargetStructureID": 67671, + "Label": "78249-67671 via Ribbon Synapse from 78250 -> 78256, 78251 -> 78257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78250, + "TargetID": 78256, + "Directional": true + }, + { + "SourceID": 78251, + "TargetID": 78257, + "Directional": true + } + ] + }, + { + "ID": 17059, + "SourceStructureID": 78249, + "TargetStructureID": 78252, + "Label": "78249-78252 via Ribbon Synapse from 78250 -> 78258", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 78250, + "TargetID": 78258, + "Directional": true + } + ] + }, + { + "ID": 17060, + "SourceStructureID": 78252, + "TargetStructureID": 78249, + "Label": "78252-78249 via Conventional from 78254 -> 78255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78254, + "TargetID": 78255, + "Directional": true + } + ] + }, + { + "ID": 17061, + "SourceStructureID": 78272, + "TargetStructureID": 5562, + "Label": "78272-5562 via Conventional from 78273 -> 63527", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78273, + "TargetID": 63527, + "Directional": true + } + ] + }, + { + "ID": 17062, + "SourceStructureID": 78295, + "TargetStructureID": 68009, + "Label": "78295-68009 via Conventional from 78296 -> 78297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78296, + "TargetID": 78297, + "Directional": true + } + ] + }, + { + "ID": 17063, + "SourceStructureID": 78298, + "TargetStructureID": 68009, + "Label": "78298-68009 via Conventional from 78299 -> 78300", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78299, + "TargetID": 78300, + "Directional": true + } + ] + }, + { + "ID": 17064, + "SourceStructureID": 78303, + "TargetStructureID": 25392, + "Label": "78303-25392 via Conventional from 78305 -> 32294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78305, + "TargetID": 32294, + "Directional": true + } + ] + }, + { + "ID": 17065, + "SourceStructureID": 78316, + "TargetStructureID": 68009, + "Label": "78316-68009 via Conventional from 78317 -> 78318", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78317, + "TargetID": 78318, + "Directional": true + } + ] + }, + { + "ID": 17066, + "SourceStructureID": 78327, + "TargetStructureID": 78330, + "Label": "78327-78330 via Conventional from 78329 -> 78331", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78329, + "TargetID": 78331, + "Directional": true + } + ] + }, + { + "ID": 17067, + "SourceStructureID": 78330, + "TargetStructureID": 55403, + "Label": "78330-55403 via Conventional from 78332 -> 55504", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78332, + "TargetID": 55504, + "Directional": true + } + ] + }, + { + "ID": 17068, + "SourceStructureID": 78334, + "TargetStructureID": 5562, + "Label": "78334-5562 via Conventional from 78335 -> 63357", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78335, + "TargetID": 63357, + "Directional": true + } + ] + }, + { + "ID": 17069, + "SourceStructureID": 78351, + "TargetStructureID": 5562, + "Label": "78351-5562 via Conventional from 78352 -> 63360", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78352, + "TargetID": 63360, + "Directional": true + } + ] + }, + { + "ID": 17070, + "SourceStructureID": 78353, + "TargetStructureID": 5562, + "Label": "78353-5562 via Conventional from 78354 -> 63359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78354, + "TargetID": 63359, + "Directional": true + } + ] + }, + { + "ID": 17071, + "SourceStructureID": 78383, + "TargetStructureID": 5562, + "Label": "78383-5562 via Conventional from 78384 -> 63534, 78385 -> 63535", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78384, + "TargetID": 63534, + "Directional": true + }, + { + "SourceID": 78385, + "TargetID": 63535, + "Directional": true + } + ] + }, + { + "ID": 17072, + "SourceStructureID": 78393, + "TargetStructureID": 5562, + "Label": "78393-5562 via Conventional from 78394 -> 63626", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78394, + "TargetID": 63626, + "Directional": true + } + ] + }, + { + "ID": 17073, + "SourceStructureID": 78421, + "TargetStructureID": 67671, + "Label": "78421-67671 via Conventional from 78422 -> 78420", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78422, + "TargetID": 78420, + "Directional": true + } + ] + }, + { + "ID": 17074, + "SourceStructureID": 78423, + "TargetStructureID": 78426, + "Label": "78423-78426 via Conventional from 78425 -> 78427", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78425, + "TargetID": 78427, + "Directional": true + } + ] + }, + { + "ID": 17075, + "SourceStructureID": 78428, + "TargetStructureID": 78423, + "Label": "78428-78423 via Conventional from 78429 -> 78430", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78429, + "TargetID": 78430, + "Directional": true + } + ] + }, + { + "ID": 17076, + "SourceStructureID": 78431, + "TargetStructureID": 5649, + "Label": "78431-5649 via Conventional from 78434 -> 78435, 107186 -> 107188", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78434, + "TargetID": 78435, + "Directional": true + }, + { + "SourceID": 107186, + "TargetID": 107188, + "Directional": true + } + ] + }, + { + "ID": 17077, + "SourceStructureID": 78431, + "TargetStructureID": 78423, + "Label": "78431-78423 via Conventional from 78432 -> 78433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78432, + "TargetID": 78433, + "Directional": true + } + ] + }, + { + "ID": 17078, + "SourceStructureID": 78453, + "TargetStructureID": 5562, + "Label": "78453-5562 via Conventional from 78455 -> 78454", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78455, + "TargetID": 78454, + "Directional": true + } + ] + }, + { + "ID": 17079, + "SourceStructureID": 78465, + "TargetStructureID": 5562, + "Label": "78465-5562 via Conventional from 78466 -> 63644", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78466, + "TargetID": 63644, + "Directional": true + } + ] + }, + { + "ID": 17080, + "SourceStructureID": 78471, + "TargetStructureID": 5562, + "Label": "78471-5562 via Conventional from 78472 -> 63639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78472, + "TargetID": 63639, + "Directional": true + } + ] + }, + { + "ID": 17081, + "SourceStructureID": 78478, + "TargetStructureID": 5562, + "Label": "78478-5562 via Conventional from 78479 -> 63638", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78479, + "TargetID": 63638, + "Directional": true + } + ] + }, + { + "ID": 17082, + "SourceStructureID": 78484, + "TargetStructureID": 5562, + "Label": "78484-5562 via Conventional from 78485 -> 40300", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78485, + "TargetID": 40300, + "Directional": true + } + ] + }, + { + "ID": 17083, + "SourceStructureID": 78515, + "TargetStructureID": 5562, + "Label": "78515-5562 via Conventional from 79155 -> 63647", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79155, + "TargetID": 63647, + "Directional": true + } + ] + }, + { + "ID": 17084, + "SourceStructureID": 78520, + "TargetStructureID": 5562, + "Label": "78520-5562 via Conventional from 78522 -> 63649, 78537 -> 63660", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78522, + "TargetID": 63649, + "Directional": true + }, + { + "SourceID": 78537, + "TargetID": 63660, + "Directional": true + } + ] + }, + { + "ID": 17085, + "SourceStructureID": 78523, + "TargetStructureID": 5562, + "Label": "78523-5562 via Conventional from 78524 -> 63653", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78524, + "TargetID": 63653, + "Directional": true + } + ] + }, + { + "ID": 17086, + "SourceStructureID": 78540, + "TargetStructureID": 5562, + "Label": "78540-5562 via Conventional from 78541 -> 63656", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78541, + "TargetID": 63656, + "Directional": true + } + ] + }, + { + "ID": 17087, + "SourceStructureID": 78542, + "TargetStructureID": 5562, + "Label": "78542-5562 via Conventional from 78543 -> 63650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78543, + "TargetID": 63650, + "Directional": true + } + ] + }, + { + "ID": 17088, + "SourceStructureID": 78550, + "TargetStructureID": 5562, + "Label": "78550-5562 via Conventional from 78551 -> 40303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78551, + "TargetID": 40303, + "Directional": true + } + ] + }, + { + "ID": 17089, + "SourceStructureID": 78552, + "TargetStructureID": 5562, + "Label": "78552-5562 via Conventional from 78553 -> 40304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78553, + "TargetID": 40304, + "Directional": true + } + ] + }, + { + "ID": 17090, + "SourceStructureID": 78560, + "TargetStructureID": 5562, + "Label": "78560-5562 via Conventional from 78561 -> 63661", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78561, + "TargetID": 63661, + "Directional": true + } + ] + }, + { + "ID": 17091, + "SourceStructureID": 78570, + "TargetStructureID": 5562, + "Label": "78570-5562 via Conventional from 78571 -> 63662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78571, + "TargetID": 63662, + "Directional": true + } + ] + }, + { + "ID": 17092, + "SourceStructureID": 78573, + "TargetStructureID": 5562, + "Label": "78573-5562 via Conventional from 78574 -> 63663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78574, + "TargetID": 63663, + "Directional": true + } + ] + }, + { + "ID": 17093, + "SourceStructureID": 78578, + "TargetStructureID": 5562, + "Label": "78578-5562 via Conventional from 82876 -> 63667", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82876, + "TargetID": 63667, + "Directional": true + } + ] + }, + { + "ID": 17094, + "SourceStructureID": 78586, + "TargetStructureID": 5562, + "Label": "78586-5562 via Conventional from 78587 -> 63672", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78587, + "TargetID": 63672, + "Directional": true + } + ] + }, + { + "ID": 17095, + "SourceStructureID": 78588, + "TargetStructureID": 5562, + "Label": "78588-5562 via Conventional from 78589 -> 63671", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78589, + "TargetID": 63671, + "Directional": true + } + ] + }, + { + "ID": 17096, + "SourceStructureID": 78590, + "TargetStructureID": 5562, + "Label": "78590-5562 via Conventional from 78591 -> 63669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78591, + "TargetID": 63669, + "Directional": true + } + ] + }, + { + "ID": 17097, + "SourceStructureID": 78594, + "TargetStructureID": 5562, + "Label": "78594-5562 via Conventional from 78595 -> 63674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78595, + "TargetID": 63674, + "Directional": true + } + ] + }, + { + "ID": 17098, + "SourceStructureID": 78615, + "TargetStructureID": 5562, + "Label": "78615-5562 via Conventional from 78616 -> 40305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78616, + "TargetID": 40305, + "Directional": true + } + ] + }, + { + "ID": 17099, + "SourceStructureID": 78617, + "TargetStructureID": 5562, + "Label": "78617-5562 via Conventional from 78618 -> 40306", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78618, + "TargetID": 40306, + "Directional": true + } + ] + }, + { + "ID": 17100, + "SourceStructureID": 78647, + "TargetStructureID": 5562, + "Label": "78647-5562 via Conventional from 78648 -> 63689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78648, + "TargetID": 63689, + "Directional": true + } + ] + }, + { + "ID": 17101, + "SourceStructureID": 78650, + "TargetStructureID": 5562, + "Label": "78650-5562 via Conventional from 78651 -> 54203", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78651, + "TargetID": 54203, + "Directional": true + } + ] + }, + { + "ID": 17102, + "SourceStructureID": 78663, + "TargetStructureID": 5562, + "Label": "78663-5562 via Conventional from 78678 -> 63707", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78678, + "TargetID": 63707, + "Directional": true + } + ] + }, + { + "ID": 17103, + "SourceStructureID": 78663, + "TargetStructureID": 82872, + "Label": "78663-82872 via Conventional from 82873 -> 82874", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82873, + "TargetID": 82874, + "Directional": true + } + ] + }, + { + "ID": 17104, + "SourceStructureID": 78665, + "TargetStructureID": 5562, + "Label": "78665-5562 via Conventional from 78666 -> 54204", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78666, + "TargetID": 54204, + "Directional": true + } + ] + }, + { + "ID": 17105, + "SourceStructureID": 78667, + "TargetStructureID": 5562, + "Label": "78667-5562 via Conventional from 78668 -> 54209", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78668, + "TargetID": 54209, + "Directional": true + } + ] + }, + { + "ID": 17106, + "SourceStructureID": 78669, + "TargetStructureID": 5562, + "Label": "78669-5562 via Conventional from 78670 -> 54208", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78670, + "TargetID": 54208, + "Directional": true + } + ] + }, + { + "ID": 17107, + "SourceStructureID": 78673, + "TargetStructureID": 5562, + "Label": "78673-5562 via Conventional from 78674 -> 54207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78674, + "TargetID": 54207, + "Directional": true + } + ] + }, + { + "ID": 17108, + "SourceStructureID": 78686, + "TargetStructureID": 5562, + "Label": "78686-5562 via Conventional from 82871 -> 54205", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82871, + "TargetID": 54205, + "Directional": true + } + ] + }, + { + "ID": 17109, + "SourceStructureID": 78688, + "TargetStructureID": 5562, + "Label": "78688-5562 via Conventional from 78689 -> 63688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78689, + "TargetID": 63688, + "Directional": true + } + ] + }, + { + "ID": 17110, + "SourceStructureID": 78693, + "TargetStructureID": 5562, + "Label": "78693-5562 via Conventional from 78694 -> 63686", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78694, + "TargetID": 63686, + "Directional": true + } + ] + }, + { + "ID": 17111, + "SourceStructureID": 78695, + "TargetStructureID": 5562, + "Label": "78695-5562 via Conventional from 79156 -> 63687", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79156, + "TargetID": 63687, + "Directional": true + } + ] + }, + { + "ID": 17112, + "SourceStructureID": 78697, + "TargetStructureID": 5562, + "Label": "78697-5562 via Conventional from 78698 -> 63685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78698, + "TargetID": 63685, + "Directional": true + } + ] + }, + { + "ID": 17113, + "SourceStructureID": 78704, + "TargetStructureID": 5562, + "Label": "78704-5562 via Conventional from 78706 -> 54211", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78706, + "TargetID": 54211, + "Directional": true + } + ] + }, + { + "ID": 17114, + "SourceStructureID": 78709, + "TargetStructureID": 5561, + "Label": "78709-5561 via Conventional from 78737 -> 46042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78737, + "TargetID": 46042, + "Directional": true + } + ] + }, + { + "ID": 17115, + "SourceStructureID": 78709, + "TargetStructureID": 78730, + "Label": "78709-78730 via Conventional from 78729 -> 78731", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78729, + "TargetID": 78731, + "Directional": true + } + ] + }, + { + "ID": 17116, + "SourceStructureID": 78710, + "TargetStructureID": 78715, + "Label": "78710-78715 via Conventional from 78713 -> 78716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78713, + "TargetID": 78716, + "Directional": true + } + ] + }, + { + "ID": 17117, + "SourceStructureID": 78715, + "TargetStructureID": 78428, + "Label": "78715-78428 via Conventional from 78717 -> 78718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78717, + "TargetID": 78718, + "Directional": true + } + ] + }, + { + "ID": 17118, + "SourceStructureID": 78715, + "TargetStructureID": 78909, + "Label": "78715-78909 via Conventional from 87541 -> 87542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87541, + "TargetID": 87542, + "Directional": true + } + ] + }, + { + "ID": 17119, + "SourceStructureID": 78721, + "TargetStructureID": 78725, + "Label": "78721-78725 via Conventional from 78722 -> 78726", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78722, + "TargetID": 78726, + "Directional": true + } + ] + }, + { + "ID": 17120, + "SourceStructureID": 78727, + "TargetStructureID": 608, + "Label": "78727-608 via Conventional from 78728 -> 59075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78728, + "TargetID": 59075, + "Directional": true + } + ] + }, + { + "ID": 17121, + "SourceStructureID": 78727, + "TargetStructureID": 18693, + "Label": "78727-18693 via Conventional from 78733 -> 18818", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78733, + "TargetID": 18818, + "Directional": true + } + ] + }, + { + "ID": 17122, + "SourceStructureID": 78727, + "TargetStructureID": 57035, + "Label": "78727-57035 via Conventional from 78752 -> 78753", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78752, + "TargetID": 78753, + "Directional": true + } + ] + }, + { + "ID": 17123, + "SourceStructureID": 78730, + "TargetStructureID": 606, + "Label": "78730-606 via Conventional from 97669 -> 10700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97669, + "TargetID": 10700, + "Directional": true + } + ] + }, + { + "ID": 17124, + "SourceStructureID": 78760, + "TargetStructureID": 5562, + "Label": "78760-5562 via Conventional from 78762 -> 78765", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78762, + "TargetID": 78765, + "Directional": true + } + ] + }, + { + "ID": 17125, + "SourceStructureID": 78780, + "TargetStructureID": 5562, + "Label": "78780-5562 via Conventional from 78781 -> 63729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78781, + "TargetID": 63729, + "Directional": true + } + ] + }, + { + "ID": 17126, + "SourceStructureID": 78797, + "TargetStructureID": 78709, + "Label": "78797-78709 via Conventional from 78798 -> 78796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78798, + "TargetID": 78796, + "Directional": true + } + ] + }, + { + "ID": 17127, + "SourceStructureID": 78797, + "TargetStructureID": 78800, + "Label": "78797-78800 via Conventional from 78799 -> 78801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78799, + "TargetID": 78801, + "Directional": true + } + ] + }, + { + "ID": 17128, + "SourceStructureID": 78805, + "TargetStructureID": 5562, + "Label": "78805-5562 via Conventional from 78806 -> 63726, 78807 -> 63726", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78806, + "TargetID": 63726, + "Directional": true + }, + { + "SourceID": 78807, + "TargetID": 63726, + "Directional": true + } + ] + }, + { + "ID": 17129, + "SourceStructureID": 78820, + "TargetStructureID": 5562, + "Label": "78820-5562 via Conventional from 78821 -> 63735", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78821, + "TargetID": 63735, + "Directional": true + } + ] + }, + { + "ID": 17130, + "SourceStructureID": 78823, + "TargetStructureID": 5562, + "Label": "78823-5562 via Conventional from 78824 -> 63736", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78824, + "TargetID": 63736, + "Directional": true + } + ] + }, + { + "ID": 17131, + "SourceStructureID": 78840, + "TargetStructureID": 5562, + "Label": "78840-5562 via Conventional from 78845 -> 63743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78845, + "TargetID": 63743, + "Directional": true + } + ] + }, + { + "ID": 17132, + "SourceStructureID": 78860, + "TargetStructureID": 5562, + "Label": "78860-5562 via Conventional from 78863 -> 63749", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78863, + "TargetID": 63749, + "Directional": true + } + ] + }, + { + "ID": 17133, + "SourceStructureID": 78867, + "TargetStructureID": 5562, + "Label": "78867-5562 via Conventional from 78868 -> 63751", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78868, + "TargetID": 63751, + "Directional": true + } + ] + }, + { + "ID": 17134, + "SourceStructureID": 78872, + "TargetStructureID": 5562, + "Label": "78872-5562 via Unknown from 78890 -> 78891", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 78890, + "TargetID": 78891, + "Directional": true + } + ] + }, + { + "ID": 17135, + "SourceStructureID": 78876, + "TargetStructureID": 16026, + "Label": "78876-16026 via Conventional from 78877 -> 25780", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78877, + "TargetID": 25780, + "Directional": true + } + ] + }, + { + "ID": 17136, + "SourceStructureID": 78879, + "TargetStructureID": 67765, + "Label": "78879-67765 via Conventional from 78880 -> 78881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78880, + "TargetID": 78881, + "Directional": true + } + ] + }, + { + "ID": 17137, + "SourceStructureID": 78886, + "TargetStructureID": 5562, + "Label": "78886-5562 via Conventional from 78887 -> 49535, 78887 -> 63755", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78887, + "TargetID": 49535, + "Directional": true + }, + { + "SourceID": 78887, + "TargetID": 63755, + "Directional": true + } + ] + }, + { + "ID": 17138, + "SourceStructureID": 78892, + "TargetStructureID": 5562, + "Label": "78892-5562 via Conventional from 78893 -> 63753", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78893, + "TargetID": 63753, + "Directional": true + } + ] + }, + { + "ID": 17139, + "SourceStructureID": 78901, + "TargetStructureID": 5562, + "Label": "78901-5562 via Conventional from 78902 -> 63756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78902, + "TargetID": 63756, + "Directional": true + } + ] + }, + { + "ID": 17140, + "SourceStructureID": 78909, + "TargetStructureID": 5562, + "Label": "78909-5562 via Conventional from 87512 -> 49565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87512, + "TargetID": 49565, + "Directional": true + } + ] + }, + { + "ID": 17141, + "SourceStructureID": 78909, + "TargetStructureID": 5649, + "Label": "78909-5649 via Conventional from 87517 -> 87520, 107124 -> 54295", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87517, + "TargetID": 87520, + "Directional": true + }, + { + "SourceID": 107124, + "TargetID": 54295, + "Directional": true + } + ] + }, + { + "ID": 17142, + "SourceStructureID": 78909, + "TargetStructureID": 6142, + "Label": "78909-6142 via Conventional from 87550 -> 23585, 87601 -> 87602, 108669 -> 108668", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87550, + "TargetID": 23585, + "Directional": true + }, + { + "SourceID": 87601, + "TargetID": 87602, + "Directional": true + }, + { + "SourceID": 108669, + "TargetID": 108668, + "Directional": true + } + ] + }, + { + "ID": 17143, + "SourceStructureID": 78910, + "TargetStructureID": 5562, + "Label": "78910-5562 via Conventional from 78913 -> 63758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78913, + "TargetID": 63758, + "Directional": true + } + ] + }, + { + "ID": 17144, + "SourceStructureID": 78930, + "TargetStructureID": 5562, + "Label": "78930-5562 via Conventional from 78931 -> 63768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78931, + "TargetID": 63768, + "Directional": true + } + ] + }, + { + "ID": 17145, + "SourceStructureID": 78932, + "TargetStructureID": 5562, + "Label": "78932-5562 via Conventional from 78933 -> 63770", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78933, + "TargetID": 63770, + "Directional": true + } + ] + }, + { + "ID": 17146, + "SourceStructureID": 78940, + "TargetStructureID": 5562, + "Label": "78940-5562 via Conventional from 78941 -> 63775", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78941, + "TargetID": 63775, + "Directional": true + } + ] + }, + { + "ID": 17147, + "SourceStructureID": 78943, + "TargetStructureID": 5562, + "Label": "78943-5562 via Conventional from 78944 -> 63765", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78944, + "TargetID": 63765, + "Directional": true + } + ] + }, + { + "ID": 17148, + "SourceStructureID": 78946, + "TargetStructureID": 5562, + "Label": "78946-5562 via Conventional from 78949 -> 63766", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78949, + "TargetID": 63766, + "Directional": true + } + ] + }, + { + "ID": 17149, + "SourceStructureID": 78964, + "TargetStructureID": 31161, + "Label": "78964-31161 via Conventional from 78968 -> 31218", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78968, + "TargetID": 31218, + "Directional": true + } + ] + }, + { + "ID": 17150, + "SourceStructureID": 78966, + "TargetStructureID": 5562, + "Label": "78966-5562 via Conventional from 78967 -> 63778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 78967, + "TargetID": 63778, + "Directional": true + } + ] + }, + { + "ID": 17151, + "SourceStructureID": 79004, + "TargetStructureID": 5562, + "Label": "79004-5562 via Conventional from 79005 -> 63789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79005, + "TargetID": 63789, + "Directional": true + } + ] + }, + { + "ID": 17152, + "SourceStructureID": 79008, + "TargetStructureID": 5562, + "Label": "79008-5562 via Conventional from 79009 -> 63839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79009, + "TargetID": 63839, + "Directional": true + } + ] + }, + { + "ID": 17153, + "SourceStructureID": 79017, + "TargetStructureID": 5562, + "Label": "79017-5562 via Conventional from 79018 -> 63832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79018, + "TargetID": 63832, + "Directional": true + } + ] + }, + { + "ID": 17154, + "SourceStructureID": 79019, + "TargetStructureID": 5562, + "Label": "79019-5562 via Conventional from 79021 -> 63824", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79021, + "TargetID": 63824, + "Directional": true + } + ] + }, + { + "ID": 17155, + "SourceStructureID": 79022, + "TargetStructureID": 5562, + "Label": "79022-5562 via Conventional from 79023 -> 63827, 79025 -> 63827", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79023, + "TargetID": 63827, + "Directional": true + }, + { + "SourceID": 79025, + "TargetID": 63827, + "Directional": true + } + ] + }, + { + "ID": 17156, + "SourceStructureID": 79064, + "TargetStructureID": 5530, + "Label": "79064-5530 via Conventional from 79065 -> 79066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79065, + "TargetID": 79066, + "Directional": true + } + ] + }, + { + "ID": 17157, + "SourceStructureID": 79073, + "TargetStructureID": 5530, + "Label": "79073-5530 via Conventional from 82594 -> 134558", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82594, + "TargetID": 134558, + "Directional": true + } + ] + }, + { + "ID": 17158, + "SourceStructureID": 79123, + "TargetStructureID": 5530, + "Label": "79123-5530 via Conventional from 79144 -> 79147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79144, + "TargetID": 79147, + "Directional": true + } + ] + }, + { + "ID": 17159, + "SourceStructureID": 79159, + "TargetStructureID": 5530, + "Label": "79159-5530 via Conventional from 80627 -> 42136", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80627, + "TargetID": 42136, + "Directional": true + } + ] + }, + { + "ID": 17160, + "SourceStructureID": 79168, + "TargetStructureID": 5562, + "Label": "79168-5562 via Conventional from 79169 -> 63834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79169, + "TargetID": 63834, + "Directional": true + } + ] + }, + { + "ID": 17161, + "SourceStructureID": 79171, + "TargetStructureID": 5562, + "Label": "79171-5562 via Conventional from 79172 -> 63833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79172, + "TargetID": 63833, + "Directional": true + } + ] + }, + { + "ID": 17162, + "SourceStructureID": 79183, + "TargetStructureID": 5562, + "Label": "79183-5562 via Conventional from 79184 -> 63837", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79184, + "TargetID": 63837, + "Directional": true + } + ] + }, + { + "ID": 17163, + "SourceStructureID": 79189, + "TargetStructureID": 5562, + "Label": "79189-5562 via Conventional from 79190 -> 63841", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79190, + "TargetID": 63841, + "Directional": true + } + ] + }, + { + "ID": 17164, + "SourceStructureID": 79192, + "TargetStructureID": 5562, + "Label": "79192-5562 via Conventional from 79193 -> 63843", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79193, + "TargetID": 63843, + "Directional": true + } + ] + }, + { + "ID": 17165, + "SourceStructureID": 79207, + "TargetStructureID": 5562, + "Label": "79207-5562 via Conventional from 79208 -> 63849", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79208, + "TargetID": 63849, + "Directional": true + } + ] + }, + { + "ID": 17166, + "SourceStructureID": 79219, + "TargetStructureID": 5562, + "Label": "79219-5562 via Conventional from 79220 -> 63851", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79220, + "TargetID": 63851, + "Directional": true + } + ] + }, + { + "ID": 17167, + "SourceStructureID": 79227, + "TargetStructureID": 5562, + "Label": "79227-5562 via Conventional from 79228 -> 63854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79228, + "TargetID": 63854, + "Directional": true + } + ] + }, + { + "ID": 17168, + "SourceStructureID": 79229, + "TargetStructureID": 5562, + "Label": "79229-5562 via Conventional from 79230 -> 63863", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79230, + "TargetID": 63863, + "Directional": true + } + ] + }, + { + "ID": 17169, + "SourceStructureID": 79232, + "TargetStructureID": 5562, + "Label": "79232-5562 via Conventional from 79233 -> 63866", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79233, + "TargetID": 63866, + "Directional": true + } + ] + }, + { + "ID": 17170, + "SourceStructureID": 79239, + "TargetStructureID": 5562, + "Label": "79239-5562 via Conventional from 79240 -> 49105, 79241 -> 63865", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79240, + "TargetID": 49105, + "Directional": true + }, + { + "SourceID": 79241, + "TargetID": 63865, + "Directional": true + } + ] + }, + { + "ID": 17171, + "SourceStructureID": 79256, + "TargetStructureID": 5530, + "Label": "79256-5530 via Conventional from 79257 -> 42135", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79257, + "TargetID": 42135, + "Directional": true + } + ] + }, + { + "ID": 17172, + "SourceStructureID": 79259, + "TargetStructureID": 5528, + "Label": "79259-5528 via Conventional from 96276 -> 96277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96276, + "TargetID": 96277, + "Directional": true + } + ] + }, + { + "ID": 17173, + "SourceStructureID": 79259, + "TargetStructureID": 5530, + "Label": "79259-5530 via Conventional from 79260 -> 79261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79260, + "TargetID": 79261, + "Directional": true + } + ] + }, + { + "ID": 17174, + "SourceStructureID": 79309, + "TargetStructureID": 68497, + "Label": "79309-68497 via Conventional from 79310 -> 79308", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79310, + "TargetID": 79308, + "Directional": true + } + ] + }, + { + "ID": 17175, + "SourceStructureID": 79317, + "TargetStructureID": 31399, + "Label": "79317-31399 via Ribbon Synapse from 99014 -> 31406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99014, + "TargetID": 31406, + "Directional": true + } + ] + }, + { + "ID": 17176, + "SourceStructureID": 79408, + "TargetStructureID": 61773, + "Label": "79408-61773 via Conventional from 79409 -> 79407", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79409, + "TargetID": 79407, + "Directional": true + } + ] + }, + { + "ID": 17177, + "SourceStructureID": 79427, + "TargetStructureID": 61777, + "Label": "79427-61777 via Conventional from 79428 -> 79429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79428, + "TargetID": 79429, + "Directional": true + } + ] + }, + { + "ID": 17178, + "SourceStructureID": 79457, + "TargetStructureID": 68497, + "Label": "79457-68497 via Conventional from 79458 -> 79456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79458, + "TargetID": 79456, + "Directional": true + } + ] + }, + { + "ID": 17179, + "SourceStructureID": 79464, + "TargetStructureID": 61797, + "Label": "79464-61797 via Conventional from 79466 -> 79469", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79466, + "TargetID": 79469, + "Directional": true + } + ] + }, + { + "ID": 17180, + "SourceStructureID": 79465, + "TargetStructureID": 61797, + "Label": "79465-61797 via Conventional from 79467 -> 79468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79467, + "TargetID": 79468, + "Directional": true + } + ] + }, + { + "ID": 17181, + "SourceStructureID": 79470, + "TargetStructureID": 68497, + "Label": "79470-68497 via Conventional from 79471 -> 79472", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79471, + "TargetID": 79472, + "Directional": true + } + ] + }, + { + "ID": 17182, + "SourceStructureID": 79478, + "TargetStructureID": 68497, + "Label": "79478-68497 via Conventional from 79479 -> 79477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79479, + "TargetID": 79477, + "Directional": true + } + ] + }, + { + "ID": 17183, + "SourceStructureID": 79493, + "TargetStructureID": 79498, + "Label": "79493-79498 via Ribbon Synapse from 79496 -> 79499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79496, + "TargetID": 79499, + "Directional": true + } + ] + }, + { + "ID": 17184, + "SourceStructureID": 79493, + "TargetStructureID": 79559, + "Label": "79493-79559 via Ribbon Synapse from 79496 -> 79568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 79496, + "TargetID": 79568, + "Directional": true + } + ] + }, + { + "ID": 17185, + "SourceStructureID": 79502, + "TargetStructureID": 79559, + "Label": "79502-79559 via Conventional from 79503 -> 79577", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79503, + "TargetID": 79577, + "Directional": true + } + ] + }, + { + "ID": 17186, + "SourceStructureID": 79533, + "TargetStructureID": 79559, + "Label": "79533-79559 via Conventional from 79534 -> 79571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79534, + "TargetID": 79571, + "Directional": true + } + ] + }, + { + "ID": 17187, + "SourceStructureID": 79545, + "TargetStructureID": 5530, + "Label": "79545-5530 via Conventional from 79546 -> 42109", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79546, + "TargetID": 42109, + "Directional": true + } + ] + }, + { + "ID": 17188, + "SourceStructureID": 79553, + "TargetStructureID": 5530, + "Label": "79553-5530 via Conventional from 79554 -> 42100", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79554, + "TargetID": 42100, + "Directional": true + } + ] + }, + { + "ID": 17189, + "SourceStructureID": 79555, + "TargetStructureID": 5530, + "Label": "79555-5530 via Conventional from 79565 -> 30117", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79565, + "TargetID": 30117, + "Directional": true + } + ] + }, + { + "ID": 17190, + "SourceStructureID": 79558, + "TargetStructureID": 5530, + "Label": "79558-5530 via Conventional from 79560 -> 79561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79560, + "TargetID": 79561, + "Directional": true + } + ] + }, + { + "ID": 17191, + "SourceStructureID": 79559, + "TargetStructureID": 79491, + "Label": "79559-79491 via Conventional from 79576 -> 79572", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79576, + "TargetID": 79572, + "Directional": true + } + ] + }, + { + "ID": 17192, + "SourceStructureID": 79559, + "TargetStructureID": 79493, + "Label": "79559-79493 via Conventional from 79566 -> 79494", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79566, + "TargetID": 79494, + "Directional": true + } + ] + }, + { + "ID": 17193, + "SourceStructureID": 79559, + "TargetStructureID": 79509, + "Label": "79559-79509 via Conventional from 79570 -> 79510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79570, + "TargetID": 79510, + "Directional": true + } + ] + }, + { + "ID": 17194, + "SourceStructureID": 79563, + "TargetStructureID": 79559, + "Label": "79563-79559 via Conventional from 79564 -> 79562", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79564, + "TargetID": 79562, + "Directional": true + } + ] + }, + { + "ID": 17195, + "SourceStructureID": 79584, + "TargetStructureID": 68488, + "Label": "79584-68488 via Conventional from 79585 -> 79583", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79585, + "TargetID": 79583, + "Directional": true + } + ] + }, + { + "ID": 17196, + "SourceStructureID": 79586, + "TargetStructureID": 68516, + "Label": "79586-68516 via Conventional from 79590 -> 68519", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79590, + "TargetID": 68519, + "Directional": true + } + ] + }, + { + "ID": 17197, + "SourceStructureID": 79586, + "TargetStructureID": 79588, + "Label": "79586-79588 via Conventional from 79587 -> 79589", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79587, + "TargetID": 79589, + "Directional": true + } + ] + }, + { + "ID": 17198, + "SourceStructureID": 79601, + "TargetStructureID": 79586, + "Label": "79601-79586 via Conventional from 79602 -> 79600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79602, + "TargetID": 79600, + "Directional": true + } + ] + }, + { + "ID": 17199, + "SourceStructureID": 79620, + "TargetStructureID": 5562, + "Label": "79620-5562 via Conventional from 79621 -> 63858", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79621, + "TargetID": 63858, + "Directional": true + } + ] + }, + { + "ID": 17200, + "SourceStructureID": 79643, + "TargetStructureID": 5562, + "Label": "79643-5562 via Conventional from 79648 -> 63872", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79648, + "TargetID": 63872, + "Directional": true + } + ] + }, + { + "ID": 17201, + "SourceStructureID": 79651, + "TargetStructureID": 593, + "Label": "79651-593 via Conventional from 115732 -> 115733", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115732, + "TargetID": 115733, + "Directional": true + } + ] + }, + { + "ID": 17202, + "SourceStructureID": 79665, + "TargetStructureID": 5562, + "Label": "79665-5562 via Conventional from 79666 -> 63869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79666, + "TargetID": 63869, + "Directional": true + } + ] + }, + { + "ID": 17203, + "SourceStructureID": 79667, + "TargetStructureID": 5562, + "Label": "79667-5562 via Conventional from 79668 -> 48943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79668, + "TargetID": 48943, + "Directional": true + } + ] + }, + { + "ID": 17204, + "SourceStructureID": 79672, + "TargetStructureID": 5562, + "Label": "79672-5562 via Conventional from 79673 -> 48957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79673, + "TargetID": 48957, + "Directional": true + } + ] + }, + { + "ID": 17205, + "SourceStructureID": 79674, + "TargetStructureID": 5562, + "Label": "79674-5562 via Conventional from 79675 -> 48958", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79675, + "TargetID": 48958, + "Directional": true + } + ] + }, + { + "ID": 17206, + "SourceStructureID": 79676, + "TargetStructureID": 5562, + "Label": "79676-5562 via Conventional from 79677 -> 63877", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79677, + "TargetID": 63877, + "Directional": true + } + ] + }, + { + "ID": 17207, + "SourceStructureID": 79683, + "TargetStructureID": 5562, + "Label": "79683-5562 via Conventional from 79685 -> 63879", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79685, + "TargetID": 63879, + "Directional": true + } + ] + }, + { + "ID": 17208, + "SourceStructureID": 79686, + "TargetStructureID": 5562, + "Label": "79686-5562 via Conventional from 79687 -> 63880", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79687, + "TargetID": 63880, + "Directional": true + } + ] + }, + { + "ID": 17209, + "SourceStructureID": 79693, + "TargetStructureID": 5562, + "Label": "79693-5562 via Conventional from 79694 -> 63881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79694, + "TargetID": 63881, + "Directional": true + } + ] + }, + { + "ID": 17210, + "SourceStructureID": 79705, + "TargetStructureID": 5562, + "Label": "79705-5562 via Conventional from 79706 -> 63883", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79706, + "TargetID": 63883, + "Directional": true + } + ] + }, + { + "ID": 17211, + "SourceStructureID": 79720, + "TargetStructureID": 5562, + "Label": "79720-5562 via Conventional from 79721 -> 63897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79721, + "TargetID": 63897, + "Directional": true + } + ] + }, + { + "ID": 17212, + "SourceStructureID": 79722, + "TargetStructureID": 5562, + "Label": "79722-5562 via Conventional from 79723 -> 63887", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79723, + "TargetID": 63887, + "Directional": true + } + ] + }, + { + "ID": 17213, + "SourceStructureID": 79729, + "TargetStructureID": 5562, + "Label": "79729-5562 via Conventional from 79730 -> 63888", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79730, + "TargetID": 63888, + "Directional": true + } + ] + }, + { + "ID": 17214, + "SourceStructureID": 79741, + "TargetStructureID": 5562, + "Label": "79741-5562 via Conventional from 79742 -> 63889", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79742, + "TargetID": 63889, + "Directional": true + } + ] + }, + { + "ID": 17215, + "SourceStructureID": 79745, + "TargetStructureID": 5562, + "Label": "79745-5562 via Conventional from 79746 -> 63890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79746, + "TargetID": 63890, + "Directional": true + } + ] + }, + { + "ID": 17216, + "SourceStructureID": 79756, + "TargetStructureID": 5562, + "Label": "79756-5562 via Conventional from 79757 -> 63892", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79757, + "TargetID": 63892, + "Directional": true + } + ] + }, + { + "ID": 17217, + "SourceStructureID": 79772, + "TargetStructureID": 5562, + "Label": "79772-5562 via Conventional from 79773 -> 63912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79773, + "TargetID": 63912, + "Directional": true + } + ] + }, + { + "ID": 17218, + "SourceStructureID": 79779, + "TargetStructureID": 5562, + "Label": "79779-5562 via Conventional from 79780 -> 63914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79780, + "TargetID": 63914, + "Directional": true + } + ] + }, + { + "ID": 17219, + "SourceStructureID": 79781, + "TargetStructureID": 5562, + "Label": "79781-5562 via Conventional from 79782 -> 49003", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79782, + "TargetID": 49003, + "Directional": true + } + ] + }, + { + "ID": 17220, + "SourceStructureID": 79795, + "TargetStructureID": 5562, + "Label": "79795-5562 via Conventional from 79796 -> 49002", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79796, + "TargetID": 49002, + "Directional": true + } + ] + }, + { + "ID": 17221, + "SourceStructureID": 79797, + "TargetStructureID": 5562, + "Label": "79797-5562 via Conventional from 79798 -> 63917", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79798, + "TargetID": 63917, + "Directional": true + } + ] + }, + { + "ID": 17222, + "SourceStructureID": 79799, + "TargetStructureID": 5562, + "Label": "79799-5562 via Conventional from 79800 -> 63918", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79800, + "TargetID": 63918, + "Directional": true + } + ] + }, + { + "ID": 17223, + "SourceStructureID": 79808, + "TargetStructureID": 5562, + "Label": "79808-5562 via Conventional from 79809 -> 63908", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79809, + "TargetID": 63908, + "Directional": true + } + ] + }, + { + "ID": 17224, + "SourceStructureID": 79815, + "TargetStructureID": 5562, + "Label": "79815-5562 via Conventional from 79817 -> 63904", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79817, + "TargetID": 63904, + "Directional": true + } + ] + }, + { + "ID": 17225, + "SourceStructureID": 79834, + "TargetStructureID": 5562, + "Label": "79834-5562 via Conventional from 79835 -> 63910", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79835, + "TargetID": 63910, + "Directional": true + } + ] + }, + { + "ID": 17226, + "SourceStructureID": 79840, + "TargetStructureID": 5562, + "Label": "79840-5562 via Conventional from 79841 -> 63911", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79841, + "TargetID": 63911, + "Directional": true + } + ] + }, + { + "ID": 17227, + "SourceStructureID": 79845, + "TargetStructureID": 5562, + "Label": "79845-5562 via Conventional from 79846 -> 49001", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79846, + "TargetID": 49001, + "Directional": true + } + ] + }, + { + "ID": 17228, + "SourceStructureID": 79855, + "TargetStructureID": 5562, + "Label": "79855-5562 via Conventional from 92082 -> 92083", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92082, + "TargetID": 92083, + "Directional": true + } + ] + }, + { + "ID": 17229, + "SourceStructureID": 79858, + "TargetStructureID": 5562, + "Label": "79858-5562 via Conventional from 79859 -> 63920", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79859, + "TargetID": 63920, + "Directional": true + } + ] + }, + { + "ID": 17230, + "SourceStructureID": 79869, + "TargetStructureID": 5562, + "Label": "79869-5562 via Conventional from 79872 -> 63922", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79872, + "TargetID": 63922, + "Directional": true + } + ] + }, + { + "ID": 17231, + "SourceStructureID": 79873, + "TargetStructureID": 5562, + "Label": "79873-5562 via Conventional from 79874 -> 48979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79874, + "TargetID": 48979, + "Directional": true + } + ] + }, + { + "ID": 17232, + "SourceStructureID": 79875, + "TargetStructureID": 5562, + "Label": "79875-5562 via Conventional from 79876 -> 48972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79876, + "TargetID": 48972, + "Directional": true + } + ] + }, + { + "ID": 17233, + "SourceStructureID": 79914, + "TargetStructureID": 6997, + "Label": "79914-6997 via Conventional from 79915 -> 83117", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79915, + "TargetID": 83117, + "Directional": true + } + ] + }, + { + "ID": 17234, + "SourceStructureID": 79926, + "TargetStructureID": 6997, + "Label": "79926-6997 via Conventional from 79927 -> 83096", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79927, + "TargetID": 83096, + "Directional": true + } + ] + }, + { + "ID": 17235, + "SourceStructureID": 79928, + "TargetStructureID": 6997, + "Label": "79928-6997 via Conventional from 79929 -> 83095", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79929, + "TargetID": 83095, + "Directional": true + } + ] + }, + { + "ID": 17236, + "SourceStructureID": 79931, + "TargetStructureID": 6997, + "Label": "79931-6997 via Conventional from 79932 -> 83097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79932, + "TargetID": 83097, + "Directional": true + } + ] + }, + { + "ID": 17237, + "SourceStructureID": 79950, + "TargetStructureID": 69162, + "Label": "79950-69162 via Conventional from 136837 -> 136838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136837, + "TargetID": 136838, + "Directional": true + } + ] + }, + { + "ID": 17238, + "SourceStructureID": 79955, + "TargetStructureID": 6997, + "Label": "79955-6997 via Conventional from 79956 -> 83113", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79956, + "TargetID": 83113, + "Directional": true + } + ] + }, + { + "ID": 17239, + "SourceStructureID": 79970, + "TargetStructureID": 6997, + "Label": "79970-6997 via Conventional from 79971 -> 83073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79971, + "TargetID": 83073, + "Directional": true + } + ] + }, + { + "ID": 17240, + "SourceStructureID": 79975, + "TargetStructureID": 6997, + "Label": "79975-6997 via Conventional from 79977 -> 83080", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79977, + "TargetID": 83080, + "Directional": true + } + ] + }, + { + "ID": 17241, + "SourceStructureID": 79984, + "TargetStructureID": 6997, + "Label": "79984-6997 via Conventional from 79985 -> 83076", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79985, + "TargetID": 83076, + "Directional": true + } + ] + }, + { + "ID": 17242, + "SourceStructureID": 79986, + "TargetStructureID": 6997, + "Label": "79986-6997 via Conventional from 79987 -> 83079", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 79987, + "TargetID": 83079, + "Directional": true + } + ] + }, + { + "ID": 17243, + "SourceStructureID": 80000, + "TargetStructureID": 6997, + "Label": "80000-6997 via Conventional from 80001 -> 83085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80001, + "TargetID": 83085, + "Directional": true + } + ] + }, + { + "ID": 17244, + "SourceStructureID": 80016, + "TargetStructureID": 6997, + "Label": "80016-6997 via Conventional from 80017 -> 83069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80017, + "TargetID": 83069, + "Directional": true + } + ] + }, + { + "ID": 17245, + "SourceStructureID": 80019, + "TargetStructureID": 6997, + "Label": "80019-6997 via Conventional from 80020 -> 83067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80020, + "TargetID": 83067, + "Directional": true + } + ] + }, + { + "ID": 17246, + "SourceStructureID": 80023, + "TargetStructureID": 6997, + "Label": "80023-6997 via Conventional from 80024 -> 83026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80024, + "TargetID": 83026, + "Directional": true + } + ] + }, + { + "ID": 17247, + "SourceStructureID": 80028, + "TargetStructureID": 6997, + "Label": "80028-6997 via Conventional from 80029 -> 83023", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80029, + "TargetID": 83023, + "Directional": true + } + ] + }, + { + "ID": 17248, + "SourceStructureID": 80034, + "TargetStructureID": 6997, + "Label": "80034-6997 via Conventional from 80035 -> 83019, 80037 -> 83020", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80035, + "TargetID": 83019, + "Directional": true + }, + { + "SourceID": 80037, + "TargetID": 83020, + "Directional": true + } + ] + }, + { + "ID": 17249, + "SourceStructureID": 80060, + "TargetStructureID": 5283, + "Label": "80060-5283 via Conventional from 80061 -> 80056", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80061, + "TargetID": 80056, + "Directional": true + } + ] + }, + { + "ID": 17250, + "SourceStructureID": 80065, + "TargetStructureID": 5283, + "Label": "80065-5283 via Conventional from 80066 -> 80064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80066, + "TargetID": 80064, + "Directional": true + } + ] + }, + { + "ID": 17251, + "SourceStructureID": 80067, + "TargetStructureID": 5283, + "Label": "80067-5283 via Conventional from 80068 -> 80069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80068, + "TargetID": 80069, + "Directional": true + } + ] + }, + { + "ID": 17252, + "SourceStructureID": 80071, + "TargetStructureID": 5283, + "Label": "80071-5283 via Conventional from 80072 -> 80070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80072, + "TargetID": 80070, + "Directional": true + } + ] + }, + { + "ID": 17253, + "SourceStructureID": 80079, + "TargetStructureID": 5283, + "Label": "80079-5283 via Cistern Pre from 132189 -> 132190", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 132189, + "TargetID": 132190, + "Directional": true + } + ] + }, + { + "ID": 17254, + "SourceStructureID": 80088, + "TargetStructureID": 5283, + "Label": "80088-5283 via Conventional from 80089 -> 80062", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80089, + "TargetID": 80062, + "Directional": true + } + ] + }, + { + "ID": 17255, + "SourceStructureID": 80090, + "TargetStructureID": 5283, + "Label": "80090-5283 via Conventional from 80091 -> 80092", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80091, + "TargetID": 80092, + "Directional": true + } + ] + }, + { + "ID": 17256, + "SourceStructureID": 80094, + "TargetStructureID": 5283, + "Label": "80094-5283 via Conventional from 80096 -> 80093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80096, + "TargetID": 80093, + "Directional": true + } + ] + }, + { + "ID": 17257, + "SourceStructureID": 80115, + "TargetStructureID": 5283, + "Label": "80115-5283 via Conventional from 80116 -> 80114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80116, + "TargetID": 80114, + "Directional": true + } + ] + }, + { + "ID": 17258, + "SourceStructureID": 80133, + "TargetStructureID": 5283, + "Label": "80133-5283 via Conventional from 80134 -> 80135", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80134, + "TargetID": 80135, + "Directional": true + } + ] + }, + { + "ID": 17259, + "SourceStructureID": 80147, + "TargetStructureID": 5283, + "Label": "80147-5283 via Conventional from 80148 -> 80146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80148, + "TargetID": 80146, + "Directional": true + } + ] + }, + { + "ID": 17260, + "SourceStructureID": 80159, + "TargetStructureID": 5283, + "Label": "80159-5283 via Conventional from 80160 -> 80158", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80160, + "TargetID": 80158, + "Directional": true + } + ] + }, + { + "ID": 17261, + "SourceStructureID": 80167, + "TargetStructureID": 5283, + "Label": "80167-5283 via Conventional from 80168 -> 80166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80168, + "TargetID": 80166, + "Directional": true + } + ] + }, + { + "ID": 17262, + "SourceStructureID": 80174, + "TargetStructureID": 5530, + "Label": "80174-5530 via Conventional from 80175 -> 80176", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80175, + "TargetID": 80176, + "Directional": true + } + ] + }, + { + "ID": 17263, + "SourceStructureID": 80185, + "TargetStructureID": 176, + "Label": "80185-176 via Conventional from 124869 -> 54994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 124869, + "TargetID": 54994, + "Directional": true + } + ] + }, + { + "ID": 17264, + "SourceStructureID": 80185, + "TargetStructureID": 5530, + "Label": "80185-5530 via Conventional from 80187 -> 42098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80187, + "TargetID": 42098, + "Directional": true + } + ] + }, + { + "ID": 17265, + "SourceStructureID": 80190, + "TargetStructureID": 5530, + "Label": "80190-5530 via Conventional from 80191 -> 42105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80191, + "TargetID": 42105, + "Directional": true + } + ] + }, + { + "ID": 17266, + "SourceStructureID": 80197, + "TargetStructureID": 5530, + "Label": "80197-5530 via Conventional from 80198 -> 80199", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80198, + "TargetID": 80199, + "Directional": true + } + ] + }, + { + "ID": 17267, + "SourceStructureID": 80203, + "TargetStructureID": 5530, + "Label": "80203-5530 via Conventional from 80204 -> 42113", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80204, + "TargetID": 42113, + "Directional": true + } + ] + }, + { + "ID": 17268, + "SourceStructureID": 80213, + "TargetStructureID": 5562, + "Label": "80213-5562 via Conventional from 80214 -> 80215", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80214, + "TargetID": 80215, + "Directional": true + } + ] + }, + { + "ID": 17269, + "SourceStructureID": 80235, + "TargetStructureID": 5562, + "Label": "80235-5562 via Conventional from 134522 -> 134521", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134522, + "TargetID": 134521, + "Directional": true + } + ] + }, + { + "ID": 17270, + "SourceStructureID": 80245, + "TargetStructureID": 5283, + "Label": "80245-5283 via Cistern Pre from 131702 -> 131703", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 131702, + "TargetID": 131703, + "Directional": true + } + ] + }, + { + "ID": 17271, + "SourceStructureID": 80248, + "TargetStructureID": 5283, + "Label": "80248-5283 via Conventional from 80249 -> 80247", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80249, + "TargetID": 80247, + "Directional": true + } + ] + }, + { + "ID": 17272, + "SourceStructureID": 80262, + "TargetStructureID": 5562, + "Label": "80262-5562 via Conventional from 80264 -> 63086", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80264, + "TargetID": 63086, + "Directional": true + } + ] + }, + { + "ID": 17273, + "SourceStructureID": 80263, + "TargetStructureID": 5530, + "Label": "80263-5530 via Conventional from 80268 -> 42114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80268, + "TargetID": 42114, + "Directional": true + } + ] + }, + { + "ID": 17274, + "SourceStructureID": 80274, + "TargetStructureID": 68463, + "Label": "80274-68463 via Conventional from 80275 -> 80273", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80275, + "TargetID": 80273, + "Directional": true + } + ] + }, + { + "ID": 17275, + "SourceStructureID": 80276, + "TargetStructureID": 5530, + "Label": "80276-5530 via Conventional from 80279 -> 42115", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80279, + "TargetID": 42115, + "Directional": true + } + ] + }, + { + "ID": 17276, + "SourceStructureID": 80276, + "TargetStructureID": 80210, + "Label": "80276-80210 via Conventional from 84377 -> 84378", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84377, + "TargetID": 84378, + "Directional": true + } + ] + }, + { + "ID": 17277, + "SourceStructureID": 80286, + "TargetStructureID": 5562, + "Label": "80286-5562 via Conventional from 80287 -> 63239", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80287, + "TargetID": 63239, + "Directional": true + } + ] + }, + { + "ID": 17278, + "SourceStructureID": 80290, + "TargetStructureID": 5562, + "Label": "80290-5562 via Conventional from 80291 -> 63245", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80291, + "TargetID": 63245, + "Directional": true + } + ] + }, + { + "ID": 17279, + "SourceStructureID": 80292, + "TargetStructureID": 5530, + "Label": "80292-5530 via Conventional from 80297 -> 80299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80297, + "TargetID": 80299, + "Directional": true + } + ] + }, + { + "ID": 17280, + "SourceStructureID": 80293, + "TargetStructureID": 5649, + "Label": "80293-5649 via Conventional from 106546 -> 54105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106546, + "TargetID": 54105, + "Directional": true + } + ] + }, + { + "ID": 17281, + "SourceStructureID": 80304, + "TargetStructureID": 5562, + "Label": "80304-5562 via Conventional from 134627 -> 134626", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134627, + "TargetID": 134626, + "Directional": true + } + ] + }, + { + "ID": 17282, + "SourceStructureID": 80320, + "TargetStructureID": 5562, + "Label": "80320-5562 via Conventional from 147567 -> 147566", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147567, + "TargetID": 147566, + "Directional": true + } + ] + }, + { + "ID": 17283, + "SourceStructureID": 80324, + "TargetStructureID": 5562, + "Label": "80324-5562 via Conventional from 80325 -> 80326", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80325, + "TargetID": 80326, + "Directional": true + } + ] + }, + { + "ID": 17284, + "SourceStructureID": 80333, + "TargetStructureID": 5562, + "Label": "80333-5562 via Conventional from 147564 -> 147565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147564, + "TargetID": 147565, + "Directional": true + } + ] + }, + { + "ID": 17285, + "SourceStructureID": 80346, + "TargetStructureID": 5562, + "Label": "80346-5562 via Conventional from 80347 -> 63294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80347, + "TargetID": 63294, + "Directional": true + } + ] + }, + { + "ID": 17286, + "SourceStructureID": 80354, + "TargetStructureID": 5562, + "Label": "80354-5562 via Conventional from 80356 -> 63297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80356, + "TargetID": 63297, + "Directional": true + } + ] + }, + { + "ID": 17287, + "SourceStructureID": 80357, + "TargetStructureID": 5562, + "Label": "80357-5562 via Conventional from 80358 -> 63298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80358, + "TargetID": 63298, + "Directional": true + } + ] + }, + { + "ID": 17288, + "SourceStructureID": 80361, + "TargetStructureID": 5562, + "Label": "80361-5562 via Conventional from 80362 -> 63300", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80362, + "TargetID": 63300, + "Directional": true + } + ] + }, + { + "ID": 17289, + "SourceStructureID": 80378, + "TargetStructureID": 5562, + "Label": "80378-5562 via Conventional from 80380 -> 63305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80380, + "TargetID": 63305, + "Directional": true + } + ] + }, + { + "ID": 17290, + "SourceStructureID": 80382, + "TargetStructureID": 5562, + "Label": "80382-5562 via Conventional from 80392 -> 80393", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80392, + "TargetID": 80393, + "Directional": true + } + ] + }, + { + "ID": 17291, + "SourceStructureID": 80383, + "TargetStructureID": 5562, + "Label": "80383-5562 via Conventional from 80384 -> 63303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80384, + "TargetID": 63303, + "Directional": true + } + ] + }, + { + "ID": 17292, + "SourceStructureID": 80398, + "TargetStructureID": 5562, + "Label": "80398-5562 via Conventional from 80677 -> 63286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80677, + "TargetID": 63286, + "Directional": true + } + ] + }, + { + "ID": 17293, + "SourceStructureID": 80400, + "TargetStructureID": 5562, + "Label": "80400-5562 via Conventional from 80690 -> 63287", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80690, + "TargetID": 63287, + "Directional": true + } + ] + }, + { + "ID": 17294, + "SourceStructureID": 80401, + "TargetStructureID": 5562, + "Label": "80401-5562 via Conventional from 80402 -> 63288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80402, + "TargetID": 63288, + "Directional": true + } + ] + }, + { + "ID": 17295, + "SourceStructureID": 80425, + "TargetStructureID": 5530, + "Label": "80425-5530 via Conventional from 80439 -> 42118", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80439, + "TargetID": 42118, + "Directional": true + } + ] + }, + { + "ID": 17296, + "SourceStructureID": 80434, + "TargetStructureID": 5530, + "Label": "80434-5530 via Conventional from 80444 -> 42119", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80444, + "TargetID": 42119, + "Directional": true + } + ] + }, + { + "ID": 17297, + "SourceStructureID": 80440, + "TargetStructureID": 5530, + "Label": "80440-5530 via Conventional from 80441 -> 42120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80441, + "TargetID": 42120, + "Directional": true + } + ] + }, + { + "ID": 17298, + "SourceStructureID": 80447, + "TargetStructureID": 5530, + "Label": "80447-5530 via Conventional from 80450 -> 42122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80450, + "TargetID": 42122, + "Directional": true + } + ] + }, + { + "ID": 17299, + "SourceStructureID": 80448, + "TargetStructureID": 170, + "Label": "80448-170 via Conventional from 88530 -> 47933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88530, + "TargetID": 47933, + "Directional": true + } + ] + }, + { + "ID": 17300, + "SourceStructureID": 80448, + "TargetStructureID": 5530, + "Label": "80448-5530 via Conventional from 80451 -> 42123", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80451, + "TargetID": 42123, + "Directional": true + } + ] + }, + { + "ID": 17301, + "SourceStructureID": 80467, + "TargetStructureID": 5530, + "Label": "80467-5530 via Conventional from 80468 -> 42124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80468, + "TargetID": 42124, + "Directional": true + } + ] + }, + { + "ID": 17302, + "SourceStructureID": 80475, + "TargetStructureID": 5530, + "Label": "80475-5530 via Conventional from 80476 -> 80477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80476, + "TargetID": 80477, + "Directional": true + } + ] + }, + { + "ID": 17303, + "SourceStructureID": 80498, + "TargetStructureID": 5530, + "Label": "80498-5530 via Conventional from 80503 -> 42128", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80503, + "TargetID": 42128, + "Directional": true + } + ] + }, + { + "ID": 17304, + "SourceStructureID": 80506, + "TargetStructureID": 5530, + "Label": "80506-5530 via Conventional from 80507 -> 80505", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80507, + "TargetID": 80505, + "Directional": true + } + ] + }, + { + "ID": 17305, + "SourceStructureID": 80509, + "TargetStructureID": 5530, + "Label": "80509-5530 via Conventional from 80511 -> 80510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80511, + "TargetID": 80510, + "Directional": true + } + ] + }, + { + "ID": 17306, + "SourceStructureID": 80522, + "TargetStructureID": 62325, + "Label": "80522-62325 via Conventional from 80523 -> 80524", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80523, + "TargetID": 80524, + "Directional": true + } + ] + }, + { + "ID": 17307, + "SourceStructureID": 80532, + "TargetStructureID": 62325, + "Label": "80532-62325 via Conventional from 80793 -> 80794", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80793, + "TargetID": 80794, + "Directional": true + } + ] + }, + { + "ID": 17308, + "SourceStructureID": 80534, + "TargetStructureID": 62325, + "Label": "80534-62325 via Conventional from 80536 -> 80537", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80536, + "TargetID": 80537, + "Directional": true + } + ] + }, + { + "ID": 17309, + "SourceStructureID": 80555, + "TargetStructureID": 68393, + "Label": "80555-68393 via Conventional from 80556 -> 80554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80556, + "TargetID": 80554, + "Directional": true + } + ] + }, + { + "ID": 17310, + "SourceStructureID": 80555, + "TargetStructureID": 112995, + "Label": "80555-112995 via Conventional from 80558 -> 112996", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80558, + "TargetID": 112996, + "Directional": true + } + ] + }, + { + "ID": 17311, + "SourceStructureID": 80562, + "TargetStructureID": 5530, + "Label": "80562-5530 via Conventional from 80566 -> 42129", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80566, + "TargetID": 42129, + "Directional": true + } + ] + }, + { + "ID": 17312, + "SourceStructureID": 80572, + "TargetStructureID": 5530, + "Label": "80572-5530 via Conventional from 80573 -> 39714", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80573, + "TargetID": 39714, + "Directional": true + } + ] + }, + { + "ID": 17313, + "SourceStructureID": 80582, + "TargetStructureID": 5530, + "Label": "80582-5530 via Conventional from 80583 -> 80584", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80583, + "TargetID": 80584, + "Directional": true + } + ] + }, + { + "ID": 17314, + "SourceStructureID": 80588, + "TargetStructureID": 5530, + "Label": "80588-5530 via Conventional from 80589 -> 42132", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80589, + "TargetID": 42132, + "Directional": true + } + ] + }, + { + "ID": 17315, + "SourceStructureID": 80591, + "TargetStructureID": 68539, + "Label": "80591-68539 via Conventional from 80594 -> 80590", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80594, + "TargetID": 80590, + "Directional": true + } + ] + }, + { + "ID": 17316, + "SourceStructureID": 80596, + "TargetStructureID": 5530, + "Label": "80596-5530 via Conventional from 80597 -> 42133", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80597, + "TargetID": 42133, + "Directional": true + } + ] + }, + { + "ID": 17317, + "SourceStructureID": 80600, + "TargetStructureID": 89058, + "Label": "80600-89058 via Conventional from 89057 -> 89060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89057, + "TargetID": 89060, + "Directional": true + } + ] + }, + { + "ID": 17318, + "SourceStructureID": 80604, + "TargetStructureID": 9769, + "Label": "80604-9769 via Conventional from 80605 -> 29818", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80605, + "TargetID": 29818, + "Directional": true + } + ] + }, + { + "ID": 17319, + "SourceStructureID": 80607, + "TargetStructureID": 142, + "Label": "80607-142 via Conventional from 126237 -> 50238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126237, + "TargetID": 50238, + "Directional": true + } + ] + }, + { + "ID": 17320, + "SourceStructureID": 80607, + "TargetStructureID": 5530, + "Label": "80607-5530 via Conventional from 80608 -> 46334", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80608, + "TargetID": 46334, + "Directional": true + } + ] + }, + { + "ID": 17321, + "SourceStructureID": 80607, + "TargetStructureID": 80607, + "Label": "80607-80607 via Conventional from 126053 -> 126054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126053, + "TargetID": 126054, + "Directional": true + } + ] + }, + { + "ID": 17322, + "SourceStructureID": 80609, + "TargetStructureID": 180, + "Label": "80609-180 via Conventional from 133112 -> 133111", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133112, + "TargetID": 133111, + "Directional": true + } + ] + }, + { + "ID": 17323, + "SourceStructureID": 80609, + "TargetStructureID": 10720, + "Label": "80609-10720 via Conventional from 82470 -> 82469", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82470, + "TargetID": 82469, + "Directional": true + } + ] + }, + { + "ID": 17324, + "SourceStructureID": 80646, + "TargetStructureID": 68286, + "Label": "80646-68286 via Conventional from 80647 -> 68310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80647, + "TargetID": 68310, + "Directional": true + } + ] + }, + { + "ID": 17325, + "SourceStructureID": 80657, + "TargetStructureID": 68286, + "Label": "80657-68286 via Conventional from 80658 -> 80656", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80658, + "TargetID": 80656, + "Directional": true + } + ] + }, + { + "ID": 17326, + "SourceStructureID": 80665, + "TargetStructureID": 68286, + "Label": "80665-68286 via Conventional from 80666 -> 80661", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80666, + "TargetID": 80661, + "Directional": true + } + ] + }, + { + "ID": 17327, + "SourceStructureID": 80702, + "TargetStructureID": 5562, + "Label": "80702-5562 via Conventional from 80703 -> 63310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80703, + "TargetID": 63310, + "Directional": true + } + ] + }, + { + "ID": 17328, + "SourceStructureID": 80710, + "TargetStructureID": 5530, + "Label": "80710-5530 via Conventional from 80711 -> 80712", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80711, + "TargetID": 80712, + "Directional": true + } + ] + }, + { + "ID": 17329, + "SourceStructureID": 80721, + "TargetStructureID": 61816, + "Label": "80721-61816 via Conventional from 80722 -> 80723", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80722, + "TargetID": 80723, + "Directional": true + } + ] + }, + { + "ID": 17330, + "SourceStructureID": 80734, + "TargetStructureID": 61816, + "Label": "80734-61816 via Conventional from 80735 -> 80736", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80735, + "TargetID": 80736, + "Directional": true + } + ] + }, + { + "ID": 17331, + "SourceStructureID": 80738, + "TargetStructureID": 61816, + "Label": "80738-61816 via Conventional from 80739 -> 80740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80739, + "TargetID": 80740, + "Directional": true + } + ] + }, + { + "ID": 17332, + "SourceStructureID": 80741, + "TargetStructureID": 61816, + "Label": "80741-61816 via Conventional from 80742 -> 80743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80742, + "TargetID": 80743, + "Directional": true + } + ] + }, + { + "ID": 17333, + "SourceStructureID": 80755, + "TargetStructureID": 32804, + "Label": "80755-32804 via Ribbon Synapse from 80757 -> 80756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80757, + "TargetID": 80756, + "Directional": true + } + ] + }, + { + "ID": 17334, + "SourceStructureID": 80755, + "TargetStructureID": 80772, + "Label": "80755-80772 via Ribbon Synapse from 80771 -> 80773", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 80771, + "TargetID": 80773, + "Directional": true + } + ] + }, + { + "ID": 17335, + "SourceStructureID": 80764, + "TargetStructureID": 32654, + "Label": "80764-32654 via Conventional from 80765 -> 80766", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80765, + "TargetID": 80766, + "Directional": true + } + ] + }, + { + "ID": 17336, + "SourceStructureID": 80767, + "TargetStructureID": 32654, + "Label": "80767-32654 via Conventional from 80768 -> 80769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80768, + "TargetID": 80769, + "Directional": true + } + ] + }, + { + "ID": 17337, + "SourceStructureID": 80779, + "TargetStructureID": 32654, + "Label": "80779-32654 via Conventional from 80781 -> 80783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80781, + "TargetID": 80783, + "Directional": true + } + ] + }, + { + "ID": 17338, + "SourceStructureID": 80779, + "TargetStructureID": 80755, + "Label": "80779-80755 via Conventional from 80780 -> 80782", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80780, + "TargetID": 80782, + "Directional": true + } + ] + }, + { + "ID": 17339, + "SourceStructureID": 80784, + "TargetStructureID": 80755, + "Label": "80784-80755 via Conventional from 80788 -> 80791", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80788, + "TargetID": 80791, + "Directional": true + } + ] + }, + { + "ID": 17340, + "SourceStructureID": 80785, + "TargetStructureID": 80755, + "Label": "80785-80755 via Conventional from 80789 -> 80790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80789, + "TargetID": 80790, + "Directional": true + } + ] + }, + { + "ID": 17341, + "SourceStructureID": 80786, + "TargetStructureID": 80784, + "Label": "80786-80784 via Conventional from 80787 -> 80792", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80787, + "TargetID": 80792, + "Directional": true + } + ] + }, + { + "ID": 17342, + "SourceStructureID": 80797, + "TargetStructureID": 5562, + "Label": "80797-5562 via Conventional from 80798 -> 63318", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80798, + "TargetID": 63318, + "Directional": true + } + ] + }, + { + "ID": 17343, + "SourceStructureID": 80806, + "TargetStructureID": 62325, + "Label": "80806-62325 via Conventional from 80825 -> 80828, 80870 -> 80869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80825, + "TargetID": 80828, + "Directional": true + }, + { + "SourceID": 80870, + "TargetID": 80869, + "Directional": true + } + ] + }, + { + "ID": 17344, + "SourceStructureID": 80809, + "TargetStructureID": 5562, + "Label": "80809-5562 via Conventional from 80810 -> 63319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80810, + "TargetID": 63319, + "Directional": true + } + ] + }, + { + "ID": 17345, + "SourceStructureID": 80814, + "TargetStructureID": 5562, + "Label": "80814-5562 via Conventional from 80815 -> 63314", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80815, + "TargetID": 63314, + "Directional": true + } + ] + }, + { + "ID": 17346, + "SourceStructureID": 80816, + "TargetStructureID": 5562, + "Label": "80816-5562 via Conventional from 80817 -> 63313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80817, + "TargetID": 63313, + "Directional": true + } + ] + }, + { + "ID": 17347, + "SourceStructureID": 80833, + "TargetStructureID": 5562, + "Label": "80833-5562 via Conventional from 80834 -> 80835", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80834, + "TargetID": 80835, + "Directional": true + } + ] + }, + { + "ID": 17348, + "SourceStructureID": 80843, + "TargetStructureID": 5562, + "Label": "80843-5562 via Conventional from 80844 -> 80845", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80844, + "TargetID": 80845, + "Directional": true + } + ] + }, + { + "ID": 17349, + "SourceStructureID": 80853, + "TargetStructureID": 5562, + "Label": "80853-5562 via Conventional from 80854 -> 63322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80854, + "TargetID": 63322, + "Directional": true + } + ] + }, + { + "ID": 17350, + "SourceStructureID": 80867, + "TargetStructureID": 5562, + "Label": "80867-5562 via Conventional from 80868 -> 63326", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80868, + "TargetID": 63326, + "Directional": true + } + ] + }, + { + "ID": 17351, + "SourceStructureID": 80879, + "TargetStructureID": 62325, + "Label": "80879-62325 via Conventional from 80880 -> 80878", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80880, + "TargetID": 80878, + "Directional": true + } + ] + }, + { + "ID": 17352, + "SourceStructureID": 80879, + "TargetStructureID": 80896, + "Label": "80879-80896 via Conventional from 87117 -> 87119", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87117, + "TargetID": 87119, + "Directional": true + } + ] + }, + { + "ID": 17353, + "SourceStructureID": 80889, + "TargetStructureID": 5562, + "Label": "80889-5562 via Conventional from 80890 -> 63327", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80890, + "TargetID": 63327, + "Directional": true + } + ] + }, + { + "ID": 17354, + "SourceStructureID": 80897, + "TargetStructureID": 5562, + "Label": "80897-5562 via Conventional from 80898 -> 64193", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80898, + "TargetID": 64193, + "Directional": true + } + ] + }, + { + "ID": 17355, + "SourceStructureID": 80900, + "TargetStructureID": 80856, + "Label": "80900-80856 via Conventional from 82444 -> 82445", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82444, + "TargetID": 82445, + "Directional": true + } + ] + }, + { + "ID": 17356, + "SourceStructureID": 80900, + "TargetStructureID": 82449, + "Label": "80900-82449 via Conventional from 82448 -> 82450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82448, + "TargetID": 82450, + "Directional": true + } + ] + }, + { + "ID": 17357, + "SourceStructureID": 80904, + "TargetStructureID": 5562, + "Label": "80904-5562 via Conventional from 80905 -> 64195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80905, + "TargetID": 64195, + "Directional": true + } + ] + }, + { + "ID": 17358, + "SourceStructureID": 80974, + "TargetStructureID": 5530, + "Label": "80974-5530 via Conventional from 80976 -> 80975", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80976, + "TargetID": 80975, + "Directional": true + } + ] + }, + { + "ID": 17359, + "SourceStructureID": 80980, + "TargetStructureID": 5530, + "Label": "80980-5530 via Conventional from 80981 -> 42140", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80981, + "TargetID": 42140, + "Directional": true + } + ] + }, + { + "ID": 17360, + "SourceStructureID": 80983, + "TargetStructureID": 5530, + "Label": "80983-5530 via Conventional from 80986 -> 42142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80986, + "TargetID": 42142, + "Directional": true + } + ] + }, + { + "ID": 17361, + "SourceStructureID": 80989, + "TargetStructureID": 5530, + "Label": "80989-5530 via Conventional from 80996 -> 42143", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80996, + "TargetID": 42143, + "Directional": true + } + ] + }, + { + "ID": 17362, + "SourceStructureID": 80990, + "TargetStructureID": 5530, + "Label": "80990-5530 via Conventional from 80999 -> 42144", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 80999, + "TargetID": 42144, + "Directional": true + } + ] + }, + { + "ID": 17363, + "SourceStructureID": 81003, + "TargetStructureID": 5530, + "Label": "81003-5530 via Conventional from 81007 -> 42146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81007, + "TargetID": 42146, + "Directional": true + } + ] + }, + { + "ID": 17364, + "SourceStructureID": 81008, + "TargetStructureID": 5530, + "Label": "81008-5530 via Conventional from 81009 -> 42150", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81009, + "TargetID": 42150, + "Directional": true + } + ] + }, + { + "ID": 17365, + "SourceStructureID": 81017, + "TargetStructureID": 5530, + "Label": "81017-5530 via Conventional from 81019 -> 81018", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81019, + "TargetID": 81018, + "Directional": true + } + ] + }, + { + "ID": 17366, + "SourceStructureID": 81035, + "TargetStructureID": 32804, + "Label": "81035-32804 via Conventional from 81036 -> 81034", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81036, + "TargetID": 81034, + "Directional": true + } + ] + }, + { + "ID": 17367, + "SourceStructureID": 81042, + "TargetStructureID": 32654, + "Label": "81042-32654 via Conventional from 81043 -> 81045, 81044 -> 81065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81043, + "TargetID": 81045, + "Directional": true + }, + { + "SourceID": 81044, + "TargetID": 81065, + "Directional": true + } + ] + }, + { + "ID": 17368, + "SourceStructureID": 81048, + "TargetStructureID": 32654, + "Label": "81048-32654 via Conventional from 81049 -> 81050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81049, + "TargetID": 81050, + "Directional": true + } + ] + }, + { + "ID": 17369, + "SourceStructureID": 81051, + "TargetStructureID": 32654, + "Label": "81051-32654 via Conventional from 81052 -> 81053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81052, + "TargetID": 81053, + "Directional": true + } + ] + }, + { + "ID": 17370, + "SourceStructureID": 81066, + "TargetStructureID": 32654, + "Label": "81066-32654 via Conventional from 81067 -> 81068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81067, + "TargetID": 81068, + "Directional": true + } + ] + }, + { + "ID": 17371, + "SourceStructureID": 81069, + "TargetStructureID": 32654, + "Label": "81069-32654 via Conventional from 81070 -> 81071", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81070, + "TargetID": 81071, + "Directional": true + } + ] + }, + { + "ID": 17372, + "SourceStructureID": 81072, + "TargetStructureID": 32654, + "Label": "81072-32654 via Conventional from 81073 -> 81074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81073, + "TargetID": 81074, + "Directional": true + } + ] + }, + { + "ID": 17373, + "SourceStructureID": 81075, + "TargetStructureID": 32654, + "Label": "81075-32654 via Conventional from 81076 -> 81077", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81076, + "TargetID": 81077, + "Directional": true + } + ] + }, + { + "ID": 17374, + "SourceStructureID": 81081, + "TargetStructureID": 32654, + "Label": "81081-32654 via Conventional from 81082 -> 81083", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81082, + "TargetID": 81083, + "Directional": true + } + ] + }, + { + "ID": 17375, + "SourceStructureID": 81089, + "TargetStructureID": 32804, + "Label": "81089-32804 via Conventional from 81090 -> 32838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81090, + "TargetID": 32838, + "Directional": true + } + ] + }, + { + "ID": 17376, + "SourceStructureID": 81091, + "TargetStructureID": 32804, + "Label": "81091-32804 via Conventional from 81092 -> 81093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81092, + "TargetID": 81093, + "Directional": true + } + ] + }, + { + "ID": 17377, + "SourceStructureID": 81095, + "TargetStructureID": 32804, + "Label": "81095-32804 via Conventional from 81096 -> 81097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81096, + "TargetID": 81097, + "Directional": true + } + ] + }, + { + "ID": 17378, + "SourceStructureID": 81102, + "TargetStructureID": 9693, + "Label": "81102-9693 via Conventional from 81103 -> 28221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81103, + "TargetID": 28221, + "Directional": true + } + ] + }, + { + "ID": 17379, + "SourceStructureID": 81120, + "TargetStructureID": 32804, + "Label": "81120-32804 via Conventional from 81122 -> 32813", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81122, + "TargetID": 32813, + "Directional": true + } + ] + }, + { + "ID": 17380, + "SourceStructureID": 81124, + "TargetStructureID": 32804, + "Label": "81124-32804 via Conventional from 81125 -> 32812", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81125, + "TargetID": 32812, + "Directional": true + } + ] + }, + { + "ID": 17381, + "SourceStructureID": 81130, + "TargetStructureID": 5522, + "Label": "81130-5522 via Conventional from 81131 -> 64148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81131, + "TargetID": 64148, + "Directional": true + } + ] + }, + { + "ID": 17382, + "SourceStructureID": 81136, + "TargetStructureID": 5530, + "Label": "81136-5530 via Conventional from 81137 -> 81138", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81137, + "TargetID": 81138, + "Directional": true + } + ] + }, + { + "ID": 17383, + "SourceStructureID": 81146, + "TargetStructureID": 5562, + "Label": "81146-5562 via Conventional from 81147 -> 81148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81147, + "TargetID": 81148, + "Directional": true + } + ] + }, + { + "ID": 17384, + "SourceStructureID": 81180, + "TargetStructureID": 5530, + "Label": "81180-5530 via Conventional from 81181 -> 23860", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81181, + "TargetID": 23860, + "Directional": true + } + ] + }, + { + "ID": 17385, + "SourceStructureID": 81187, + "TargetStructureID": 5530, + "Label": "81187-5530 via Conventional from 81188 -> 81189", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81188, + "TargetID": 81189, + "Directional": true + } + ] + }, + { + "ID": 17386, + "SourceStructureID": 81193, + "TargetStructureID": 5530, + "Label": "81193-5530 via Conventional from 81194 -> 81195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81194, + "TargetID": 81195, + "Directional": true + } + ] + }, + { + "ID": 17387, + "SourceStructureID": 81196, + "TargetStructureID": 608, + "Label": "81196-608 via Conventional from 81197 -> 59074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81197, + "TargetID": 59074, + "Directional": true + } + ] + }, + { + "ID": 17388, + "SourceStructureID": 81196, + "TargetStructureID": 39862, + "Label": "81196-39862 via Conventional from 81198 -> 81199", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81198, + "TargetID": 81199, + "Directional": true + } + ] + }, + { + "ID": 17389, + "SourceStructureID": 81200, + "TargetStructureID": 5530, + "Label": "81200-5530 via Conventional from 81201 -> 81202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81201, + "TargetID": 81202, + "Directional": true + } + ] + }, + { + "ID": 17390, + "SourceStructureID": 81211, + "TargetStructureID": 5530, + "Label": "81211-5530 via Conventional from 81212 -> 81213", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81212, + "TargetID": 81213, + "Directional": true + } + ] + }, + { + "ID": 17391, + "SourceStructureID": 81223, + "TargetStructureID": 5530, + "Label": "81223-5530 via Conventional from 81224 -> 81225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81224, + "TargetID": 81225, + "Directional": true + } + ] + }, + { + "ID": 17392, + "SourceStructureID": 81228, + "TargetStructureID": 5530, + "Label": "81228-5530 via Conventional from 81229 -> 81230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81229, + "TargetID": 81230, + "Directional": true + } + ] + }, + { + "ID": 17393, + "SourceStructureID": 81234, + "TargetStructureID": 5530, + "Label": "81234-5530 via Conventional from 81237 -> 81238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81237, + "TargetID": 81238, + "Directional": true + } + ] + }, + { + "ID": 17394, + "SourceStructureID": 81236, + "TargetStructureID": 62325, + "Label": "81236-62325 via Conventional from 81242 -> 81245", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81242, + "TargetID": 81245, + "Directional": true + } + ] + }, + { + "ID": 17395, + "SourceStructureID": 81267, + "TargetStructureID": 62325, + "Label": "81267-62325 via Conventional from 81427 -> 81428", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81427, + "TargetID": 81428, + "Directional": true + } + ] + }, + { + "ID": 17396, + "SourceStructureID": 81270, + "TargetStructureID": 62325, + "Label": "81270-62325 via Conventional from 81271 -> 81272, 81414 -> 81415", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81271, + "TargetID": 81272, + "Directional": true + }, + { + "SourceID": 81414, + "TargetID": 81415, + "Directional": true + } + ] + }, + { + "ID": 17397, + "SourceStructureID": 81287, + "TargetStructureID": 62325, + "Label": "81287-62325 via Conventional from 81288 -> 81289", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81288, + "TargetID": 81289, + "Directional": true + } + ] + }, + { + "ID": 17398, + "SourceStructureID": 81301, + "TargetStructureID": 62325, + "Label": "81301-62325 via Conventional from 81329 -> 81330", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81329, + "TargetID": 81330, + "Directional": true + } + ] + }, + { + "ID": 17399, + "SourceStructureID": 81321, + "TargetStructureID": 62325, + "Label": "81321-62325 via Conventional from 81327 -> 81328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81327, + "TargetID": 81328, + "Directional": true + } + ] + }, + { + "ID": 17400, + "SourceStructureID": 81322, + "TargetStructureID": 62325, + "Label": "81322-62325 via Conventional from 81325 -> 81326", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81325, + "TargetID": 81326, + "Directional": true + } + ] + }, + { + "ID": 17401, + "SourceStructureID": 81331, + "TargetStructureID": 62325, + "Label": "81331-62325 via Conventional from 81332 -> 81333", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81332, + "TargetID": 81333, + "Directional": true + } + ] + }, + { + "ID": 17402, + "SourceStructureID": 81393, + "TargetStructureID": 61853, + "Label": "81393-61853 via Conventional from 81394 -> 81395", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81394, + "TargetID": 81395, + "Directional": true + } + ] + }, + { + "ID": 17403, + "SourceStructureID": 81399, + "TargetStructureID": 61853, + "Label": "81399-61853 via Conventional from 81400 -> 81401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81400, + "TargetID": 81401, + "Directional": true + } + ] + }, + { + "ID": 17404, + "SourceStructureID": 81402, + "TargetStructureID": 61853, + "Label": "81402-61853 via Conventional from 81403 -> 81404", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81403, + "TargetID": 81404, + "Directional": true + } + ] + }, + { + "ID": 17405, + "SourceStructureID": 81405, + "TargetStructureID": 62325, + "Label": "81405-62325 via Conventional from 81420 -> 81421", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81420, + "TargetID": 81421, + "Directional": true + } + ] + }, + { + "ID": 17406, + "SourceStructureID": 81407, + "TargetStructureID": 62325, + "Label": "81407-62325 via Conventional from 81410 -> 81411", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81410, + "TargetID": 81411, + "Directional": true + } + ] + }, + { + "ID": 17407, + "SourceStructureID": 81433, + "TargetStructureID": 81430, + "Label": "81433-81430 via Conventional from 81434 -> 81435", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81434, + "TargetID": 81435, + "Directional": true + } + ] + }, + { + "ID": 17408, + "SourceStructureID": 81437, + "TargetStructureID": 61853, + "Label": "81437-61853 via Conventional from 81438 -> 81439", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81438, + "TargetID": 81439, + "Directional": true + } + ] + }, + { + "ID": 17409, + "SourceStructureID": 81440, + "TargetStructureID": 61853, + "Label": "81440-61853 via Conventional from 81441 -> 81442", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81441, + "TargetID": 81442, + "Directional": true + } + ] + }, + { + "ID": 17410, + "SourceStructureID": 81454, + "TargetStructureID": 485, + "Label": "81454-485 via Conventional from 81456 -> 81458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81456, + "TargetID": 81458, + "Directional": true + } + ] + }, + { + "ID": 17411, + "SourceStructureID": 81454, + "TargetStructureID": 61960, + "Label": "81454-61960 via Conventional from 81455 -> 81457", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81455, + "TargetID": 81457, + "Directional": true + } + ] + }, + { + "ID": 17412, + "SourceStructureID": 81454, + "TargetStructureID": 81459, + "Label": "81454-81459 via Conventional from 81462 -> 81463", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81462, + "TargetID": 81463, + "Directional": true + } + ] + }, + { + "ID": 17413, + "SourceStructureID": 81459, + "TargetStructureID": 485, + "Label": "81459-485 via Conventional from 81460 -> 81461", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81460, + "TargetID": 81461, + "Directional": true + } + ] + }, + { + "ID": 17414, + "SourceStructureID": 81472, + "TargetStructureID": 61960, + "Label": "81472-61960 via Conventional from 81473 -> 81474", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81473, + "TargetID": 81474, + "Directional": true + } + ] + }, + { + "ID": 17415, + "SourceStructureID": 81476, + "TargetStructureID": 66768, + "Label": "81476-66768 via Conventional from 81477 -> 81475", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81477, + "TargetID": 81475, + "Directional": true + } + ] + }, + { + "ID": 17416, + "SourceStructureID": 81489, + "TargetStructureID": 483, + "Label": "81489-483 via Conventional from 81490 -> 81491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81490, + "TargetID": 81491, + "Directional": true + } + ] + }, + { + "ID": 17417, + "SourceStructureID": 81494, + "TargetStructureID": 483, + "Label": "81494-483 via Conventional from 81495 -> 81496", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81495, + "TargetID": 81496, + "Directional": true + } + ] + }, + { + "ID": 17418, + "SourceStructureID": 81510, + "TargetStructureID": 165, + "Label": "81510-165 via Conventional from 81511 -> 21710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81511, + "TargetID": 21710, + "Directional": true + } + ] + }, + { + "ID": 17419, + "SourceStructureID": 81528, + "TargetStructureID": 5284, + "Label": "81528-5284 via Conventional from 81529 -> 81527", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81529, + "TargetID": 81527, + "Directional": true + } + ] + }, + { + "ID": 17420, + "SourceStructureID": 81532, + "TargetStructureID": 909, + "Label": "81532-909 via Conventional from 81536 -> 53806", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81536, + "TargetID": 53806, + "Directional": true + } + ] + }, + { + "ID": 17421, + "SourceStructureID": 81532, + "TargetStructureID": 5284, + "Label": "81532-5284 via Conventional from 81535 -> 81531", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81535, + "TargetID": 81531, + "Directional": true + } + ] + }, + { + "ID": 17422, + "SourceStructureID": 81533, + "TargetStructureID": 5284, + "Label": "81533-5284 via Conventional from 81534 -> 81530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81534, + "TargetID": 81530, + "Directional": true + } + ] + }, + { + "ID": 17423, + "SourceStructureID": 81544, + "TargetStructureID": 16026, + "Label": "81544-16026 via Conventional from 81546 -> 25483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81546, + "TargetID": 25483, + "Directional": true + } + ] + }, + { + "ID": 17424, + "SourceStructureID": 81544, + "TargetStructureID": 67045, + "Label": "81544-67045 via Conventional from 81545 -> 81543", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81545, + "TargetID": 81543, + "Directional": true + } + ] + }, + { + "ID": 17425, + "SourceStructureID": 81552, + "TargetStructureID": 67045, + "Label": "81552-67045 via Conventional from 81553 -> 81551", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81553, + "TargetID": 81551, + "Directional": true + } + ] + }, + { + "ID": 17426, + "SourceStructureID": 81555, + "TargetStructureID": 67045, + "Label": "81555-67045 via Conventional from 81556 -> 81554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81556, + "TargetID": 81554, + "Directional": true + } + ] + }, + { + "ID": 17427, + "SourceStructureID": 81559, + "TargetStructureID": 5530, + "Label": "81559-5530 via Conventional from 81560 -> 81561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81560, + "TargetID": 81561, + "Directional": true + } + ] + }, + { + "ID": 17428, + "SourceStructureID": 81566, + "TargetStructureID": 5530, + "Label": "81566-5530 via Conventional from 81580 -> 54065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81580, + "TargetID": 54065, + "Directional": true + } + ] + }, + { + "ID": 17429, + "SourceStructureID": 81569, + "TargetStructureID": 5530, + "Label": "81569-5530 via Conventional from 81570 -> 54070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81570, + "TargetID": 54070, + "Directional": true + } + ] + }, + { + "ID": 17430, + "SourceStructureID": 81584, + "TargetStructureID": 5530, + "Label": "81584-5530 via Conventional from 81592 -> 54068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81592, + "TargetID": 54068, + "Directional": true + } + ] + }, + { + "ID": 17431, + "SourceStructureID": 81605, + "TargetStructureID": 81607, + "Label": "81605-81607 via Ribbon Synapse from 81606 -> 81608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81606, + "TargetID": 81608, + "Directional": true + } + ] + }, + { + "ID": 17432, + "SourceStructureID": 81612, + "TargetStructureID": 5530, + "Label": "81612-5530 via Conventional from 81613 -> 81614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81613, + "TargetID": 81614, + "Directional": true + } + ] + }, + { + "ID": 17433, + "SourceStructureID": 81615, + "TargetStructureID": 5530, + "Label": "81615-5530 via Conventional from 81616 -> 81617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81616, + "TargetID": 81617, + "Directional": true + } + ] + }, + { + "ID": 17434, + "SourceStructureID": 81615, + "TargetStructureID": 133891, + "Label": "81615-133891 via Conventional from 133901 -> 133900", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133901, + "TargetID": 133900, + "Directional": true + } + ] + }, + { + "ID": 17435, + "SourceStructureID": 81622, + "TargetStructureID": 5530, + "Label": "81622-5530 via Conventional from 81623 -> 81624", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81623, + "TargetID": 81624, + "Directional": true + } + ] + }, + { + "ID": 17436, + "SourceStructureID": 81629, + "TargetStructureID": 5530, + "Label": "81629-5530 via Conventional from 81630 -> 81631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81630, + "TargetID": 81631, + "Directional": true + } + ] + }, + { + "ID": 17437, + "SourceStructureID": 81633, + "TargetStructureID": 5530, + "Label": "81633-5530 via Conventional from 81634 -> 81635", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81634, + "TargetID": 81635, + "Directional": true + } + ] + }, + { + "ID": 17438, + "SourceStructureID": 81637, + "TargetStructureID": 5530, + "Label": "81637-5530 via Conventional from 81638 -> 81639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81638, + "TargetID": 81639, + "Directional": true + } + ] + }, + { + "ID": 17439, + "SourceStructureID": 81640, + "TargetStructureID": 5530, + "Label": "81640-5530 via Conventional from 81641 -> 52533", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81641, + "TargetID": 52533, + "Directional": true + } + ] + }, + { + "ID": 17440, + "SourceStructureID": 81649, + "TargetStructureID": 5530, + "Label": "81649-5530 via Conventional from 81654 -> 81655", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81654, + "TargetID": 81655, + "Directional": true + } + ] + }, + { + "ID": 17441, + "SourceStructureID": 81651, + "TargetStructureID": 61960, + "Label": "81651-61960 via Conventional from 81652 -> 81653", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81652, + "TargetID": 81653, + "Directional": true + } + ] + }, + { + "ID": 17442, + "SourceStructureID": 81661, + "TargetStructureID": 5530, + "Label": "81661-5530 via Conventional from 81668 -> 81669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81668, + "TargetID": 81669, + "Directional": true + } + ] + }, + { + "ID": 17443, + "SourceStructureID": 81667, + "TargetStructureID": 5649, + "Label": "81667-5649 via Conventional from 81694 -> 81696, 81719 -> 81729, 108138 -> 108139", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81694, + "TargetID": 81696, + "Directional": true + }, + { + "SourceID": 81719, + "TargetID": 81729, + "Directional": true + }, + { + "SourceID": 108138, + "TargetID": 108139, + "Directional": true + } + ] + }, + { + "ID": 17444, + "SourceStructureID": 81667, + "TargetStructureID": 81740, + "Label": "81667-81740 via Conventional from 81739 -> 81741", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81739, + "TargetID": 81741, + "Directional": true + } + ] + }, + { + "ID": 17445, + "SourceStructureID": 81667, + "TargetStructureID": 81753, + "Label": "81667-81753 via Conventional from 81779 -> 81781", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81779, + "TargetID": 81781, + "Directional": true + } + ] + }, + { + "ID": 17446, + "SourceStructureID": 81667, + "TargetStructureID": 104680, + "Label": "81667-104680 via Conventional from 104686 -> 104685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104686, + "TargetID": 104685, + "Directional": true + } + ] + }, + { + "ID": 17447, + "SourceStructureID": 81674, + "TargetStructureID": 400, + "Label": "81674-400 via Conventional from 81675 -> 81676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81675, + "TargetID": 81676, + "Directional": true + } + ] + }, + { + "ID": 17448, + "SourceStructureID": 81685, + "TargetStructureID": 61960, + "Label": "81685-61960 via Conventional from 81686 -> 81687", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81686, + "TargetID": 81687, + "Directional": true + } + ] + }, + { + "ID": 17449, + "SourceStructureID": 81690, + "TargetStructureID": 81667, + "Label": "81690-81667 via Conventional from 81693 -> 81689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81693, + "TargetID": 81689, + "Directional": true + } + ] + }, + { + "ID": 17450, + "SourceStructureID": 81691, + "TargetStructureID": 81667, + "Label": "81691-81667 via Conventional from 81692 -> 81688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81692, + "TargetID": 81688, + "Directional": true + } + ] + }, + { + "ID": 17451, + "SourceStructureID": 81701, + "TargetStructureID": 81667, + "Label": "81701-81667 via Conventional from 81702 -> 81700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81702, + "TargetID": 81700, + "Directional": true + } + ] + }, + { + "ID": 17452, + "SourceStructureID": 81704, + "TargetStructureID": 81667, + "Label": "81704-81667 via Conventional from 81705 -> 81703", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81705, + "TargetID": 81703, + "Directional": true + } + ] + }, + { + "ID": 17453, + "SourceStructureID": 81708, + "TargetStructureID": 81667, + "Label": "81708-81667 via Conventional from 81709 -> 81707", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81709, + "TargetID": 81707, + "Directional": true + } + ] + }, + { + "ID": 17454, + "SourceStructureID": 81731, + "TargetStructureID": 81667, + "Label": "81731-81667 via Conventional from 81732 -> 81730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81732, + "TargetID": 81730, + "Directional": true + } + ] + }, + { + "ID": 17455, + "SourceStructureID": 81735, + "TargetStructureID": 81667, + "Label": "81735-81667 via Conventional from 81736 -> 81733", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81736, + "TargetID": 81733, + "Directional": true + } + ] + }, + { + "ID": 17456, + "SourceStructureID": 81737, + "TargetStructureID": 81667, + "Label": "81737-81667 via Conventional from 81738 -> 81734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81738, + "TargetID": 81734, + "Directional": true + } + ] + }, + { + "ID": 17457, + "SourceStructureID": 81743, + "TargetStructureID": 81667, + "Label": "81743-81667 via Conventional from 81744 -> 81742", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81744, + "TargetID": 81742, + "Directional": true + } + ] + }, + { + "ID": 17458, + "SourceStructureID": 81753, + "TargetStructureID": 81667, + "Label": "81753-81667 via Ribbon Synapse from 81754 -> 81755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81754, + "TargetID": 81755, + "Directional": true + } + ] + }, + { + "ID": 17459, + "SourceStructureID": 81758, + "TargetStructureID": 81667, + "Label": "81758-81667 via Ribbon Synapse from 81759 -> 81757", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 81759, + "TargetID": 81757, + "Directional": true + } + ] + }, + { + "ID": 17460, + "SourceStructureID": 81763, + "TargetStructureID": 81667, + "Label": "81763-81667 via Conventional from 81764 -> 81762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81764, + "TargetID": 81762, + "Directional": true + } + ] + }, + { + "ID": 17461, + "SourceStructureID": 81768, + "TargetStructureID": 81667, + "Label": "81768-81667 via Conventional from 81769 -> 81767", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81769, + "TargetID": 81767, + "Directional": true + } + ] + }, + { + "ID": 17462, + "SourceStructureID": 81783, + "TargetStructureID": 81667, + "Label": "81783-81667 via Conventional from 81784 -> 81785", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81784, + "TargetID": 81785, + "Directional": true + } + ] + }, + { + "ID": 17463, + "SourceStructureID": 81788, + "TargetStructureID": 81667, + "Label": "81788-81667 via Conventional from 81789 -> 81787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81789, + "TargetID": 81787, + "Directional": true + } + ] + }, + { + "ID": 17464, + "SourceStructureID": 81799, + "TargetStructureID": 5562, + "Label": "81799-5562 via Conventional from 81816 -> 77218, 81837 -> 63066, 81842 -> 31063", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81816, + "TargetID": 77218, + "Directional": true + }, + { + "SourceID": 81837, + "TargetID": 63066, + "Directional": true + }, + { + "SourceID": 81842, + "TargetID": 31063, + "Directional": true + } + ] + }, + { + "ID": 17465, + "SourceStructureID": 81799, + "TargetStructureID": 81801, + "Label": "81799-81801 via Conventional from 81800 -> 81802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81800, + "TargetID": 81802, + "Directional": true + } + ] + }, + { + "ID": 17466, + "SourceStructureID": 81799, + "TargetStructureID": 81820, + "Label": "81799-81820 via Conventional from 81818 -> 81821", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81818, + "TargetID": 81821, + "Directional": true + } + ] + }, + { + "ID": 17467, + "SourceStructureID": 81799, + "TargetStructureID": 81822, + "Label": "81799-81822 via Conventional from 81819 -> 81823", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81819, + "TargetID": 81823, + "Directional": true + } + ] + }, + { + "ID": 17468, + "SourceStructureID": 81804, + "TargetStructureID": 81799, + "Label": "81804-81799 via Conventional from 81805 -> 81803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81805, + "TargetID": 81803, + "Directional": true + } + ] + }, + { + "ID": 17469, + "SourceStructureID": 81825, + "TargetStructureID": 81799, + "Label": "81825-81799 via Conventional from 81826 -> 81824", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81826, + "TargetID": 81824, + "Directional": true + } + ] + }, + { + "ID": 17470, + "SourceStructureID": 81831, + "TargetStructureID": 81799, + "Label": "81831-81799 via Conventional from 81833 -> 81829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81833, + "TargetID": 81829, + "Directional": true + } + ] + }, + { + "ID": 17471, + "SourceStructureID": 81834, + "TargetStructureID": 81799, + "Label": "81834-81799 via Conventional from 81836 -> 81835", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81836, + "TargetID": 81835, + "Directional": true + } + ] + }, + { + "ID": 17472, + "SourceStructureID": 81839, + "TargetStructureID": 81799, + "Label": "81839-81799 via Conventional from 81840 -> 81838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81840, + "TargetID": 81838, + "Directional": true + } + ] + }, + { + "ID": 17473, + "SourceStructureID": 81872, + "TargetStructureID": 5530, + "Label": "81872-5530 via Conventional from 81873 -> 81874", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81873, + "TargetID": 81874, + "Directional": true + } + ] + }, + { + "ID": 17474, + "SourceStructureID": 81882, + "TargetStructureID": 66401, + "Label": "81882-66401 via Conventional from 81883 -> 81881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81883, + "TargetID": 81881, + "Directional": true + } + ] + }, + { + "ID": 17475, + "SourceStructureID": 81887, + "TargetStructureID": 5530, + "Label": "81887-5530 via Conventional from 81888 -> 54072", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81888, + "TargetID": 54072, + "Directional": true + } + ] + }, + { + "ID": 17476, + "SourceStructureID": 81916, + "TargetStructureID": 168, + "Label": "81916-168 via Conventional from 81963 -> 81962", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81963, + "TargetID": 81962, + "Directional": true + } + ] + }, + { + "ID": 17477, + "SourceStructureID": 81951, + "TargetStructureID": 168, + "Label": "81951-168 via Conventional from 81954 -> 81955", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81954, + "TargetID": 81955, + "Directional": true + } + ] + }, + { + "ID": 17478, + "SourceStructureID": 81974, + "TargetStructureID": 81975, + "Label": "81974-81975 via Conventional from 81976 -> 81977", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81976, + "TargetID": 81977, + "Directional": true + } + ] + }, + { + "ID": 17479, + "SourceStructureID": 81985, + "TargetStructureID": 61868, + "Label": "81985-61868 via Conventional from 81986 -> 81987", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81986, + "TargetID": 81987, + "Directional": true + } + ] + }, + { + "ID": 17480, + "SourceStructureID": 81996, + "TargetStructureID": 168, + "Label": "81996-168 via Conventional from 81997 -> 4284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 81997, + "TargetID": 4284, + "Directional": true + } + ] + }, + { + "ID": 17481, + "SourceStructureID": 82006, + "TargetStructureID": 168, + "Label": "82006-168 via Conventional from 82007 -> 82008", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82007, + "TargetID": 82008, + "Directional": true + } + ] + }, + { + "ID": 17482, + "SourceStructureID": 82021, + "TargetStructureID": 168, + "Label": "82021-168 via Conventional from 82022 -> 33419", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82022, + "TargetID": 33419, + "Directional": true + } + ] + }, + { + "ID": 17483, + "SourceStructureID": 82025, + "TargetStructureID": 168, + "Label": "82025-168 via Conventional from 82026 -> 4238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82026, + "TargetID": 4238, + "Directional": true + } + ] + }, + { + "ID": 17484, + "SourceStructureID": 82029, + "TargetStructureID": 168, + "Label": "82029-168 via Conventional from 82030 -> 82033, 82031 -> 82032", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82030, + "TargetID": 82033, + "Directional": true + }, + { + "SourceID": 82031, + "TargetID": 82032, + "Directional": true + } + ] + }, + { + "ID": 17485, + "SourceStructureID": 82034, + "TargetStructureID": 168, + "Label": "82034-168 via Conventional from 82035 -> 4232, 112216 -> 4302", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82035, + "TargetID": 4232, + "Directional": true + }, + { + "SourceID": 112216, + "TargetID": 4302, + "Directional": true + } + ] + }, + { + "ID": 17486, + "SourceStructureID": 82034, + "TargetStructureID": 112211, + "Label": "82034-112211 via Conventional from 112214 -> 112215", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112214, + "TargetID": 112215, + "Directional": true + } + ] + }, + { + "ID": 17487, + "SourceStructureID": 82050, + "TargetStructureID": 5530, + "Label": "82050-5530 via Conventional from 82051 -> 82052", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82051, + "TargetID": 82052, + "Directional": true + } + ] + }, + { + "ID": 17488, + "SourceStructureID": 82057, + "TargetStructureID": 5530, + "Label": "82057-5530 via Conventional from 82058 -> 54061", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82058, + "TargetID": 54061, + "Directional": true + } + ] + }, + { + "ID": 17489, + "SourceStructureID": 82067, + "TargetStructureID": 5530, + "Label": "82067-5530 via Conventional from 82068 -> 82069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82068, + "TargetID": 82069, + "Directional": true + } + ] + }, + { + "ID": 17490, + "SourceStructureID": 82077, + "TargetStructureID": 5530, + "Label": "82077-5530 via Conventional from 82078 -> 82079", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82078, + "TargetID": 82079, + "Directional": true + } + ] + }, + { + "ID": 17491, + "SourceStructureID": 82097, + "TargetStructureID": 82098, + "Label": "82097-82098 via Conventional from 82099 -> 82100", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82099, + "TargetID": 82100, + "Directional": true + } + ] + }, + { + "ID": 17492, + "SourceStructureID": 82130, + "TargetStructureID": 5410, + "Label": "82130-5410 via Conventional from 82131 -> 82129", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82131, + "TargetID": 82129, + "Directional": true + } + ] + }, + { + "ID": 17493, + "SourceStructureID": 82143, + "TargetStructureID": 82149, + "Label": "82143-82149 via Conventional from 82148 -> 82150", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82148, + "TargetID": 82150, + "Directional": true + } + ] + }, + { + "ID": 17494, + "SourceStructureID": 82164, + "TargetStructureID": 5410, + "Label": "82164-5410 via Conventional from 82165 -> 82163", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82165, + "TargetID": 82163, + "Directional": true + } + ] + }, + { + "ID": 17495, + "SourceStructureID": 82172, + "TargetStructureID": 82177, + "Label": "82172-82177 via Conventional from 82175 -> 82179", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82175, + "TargetID": 82179, + "Directional": true + } + ] + }, + { + "ID": 17496, + "SourceStructureID": 82172, + "TargetStructureID": 82181, + "Label": "82172-82181 via Conventional from 82173 -> 82182", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82173, + "TargetID": 82182, + "Directional": true + } + ] + }, + { + "ID": 17497, + "SourceStructureID": 82229, + "TargetStructureID": 5017, + "Label": "82229-5017 via Conventional from 159686 -> 159685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159686, + "TargetID": 159685, + "Directional": true + } + ] + }, + { + "ID": 17498, + "SourceStructureID": 82252, + "TargetStructureID": 6047, + "Label": "82252-6047 via Conventional from 82253 -> 19627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82253, + "TargetID": 19627, + "Directional": true + } + ] + }, + { + "ID": 17499, + "SourceStructureID": 82271, + "TargetStructureID": 593, + "Label": "82271-593 via Conventional from 82279 -> 68066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82279, + "TargetID": 68066, + "Directional": true + } + ] + }, + { + "ID": 17500, + "SourceStructureID": 82271, + "TargetStructureID": 8588, + "Label": "82271-8588 via Conventional from 82274 -> 82275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82274, + "TargetID": 82275, + "Directional": true + } + ] + }, + { + "ID": 17501, + "SourceStructureID": 82271, + "TargetStructureID": 68393, + "Label": "82271-68393 via Conventional from 82273 -> 82220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82273, + "TargetID": 82220, + "Directional": true + } + ] + }, + { + "ID": 17502, + "SourceStructureID": 82271, + "TargetStructureID": 80563, + "Label": "82271-80563 via Conventional from 82272 -> 80565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82272, + "TargetID": 80565, + "Directional": true + } + ] + }, + { + "ID": 17503, + "SourceStructureID": 82289, + "TargetStructureID": 68238, + "Label": "82289-68238 via Conventional from 82290 -> 82288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82290, + "TargetID": 82288, + "Directional": true + } + ] + }, + { + "ID": 17504, + "SourceStructureID": 82305, + "TargetStructureID": 16026, + "Label": "82305-16026 via Conventional from 82328 -> 25663, 82332 -> 25492", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82328, + "TargetID": 25663, + "Directional": true + }, + { + "SourceID": 82332, + "TargetID": 25492, + "Directional": true + } + ] + }, + { + "ID": 17505, + "SourceStructureID": 82305, + "TargetStructureID": 31161, + "Label": "82305-31161 via Conventional from 82309 -> 31248", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82309, + "TargetID": 31248, + "Directional": true + } + ] + }, + { + "ID": 17506, + "SourceStructureID": 82305, + "TargetStructureID": 66888, + "Label": "82305-66888 via Conventional from 82320 -> 68221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82320, + "TargetID": 68221, + "Directional": true + } + ] + }, + { + "ID": 17507, + "SourceStructureID": 82305, + "TargetStructureID": 82318, + "Label": "82305-82318 via Conventional from 82317 -> 82319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82317, + "TargetID": 82319, + "Directional": true + } + ] + }, + { + "ID": 17508, + "SourceStructureID": 82307, + "TargetStructureID": 82305, + "Label": "82307-82305 via Conventional from 82308 -> 82306", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82308, + "TargetID": 82306, + "Directional": true + } + ] + }, + { + "ID": 17509, + "SourceStructureID": 82343, + "TargetStructureID": 593, + "Label": "82343-593 via Conventional from 82344 -> 82345", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82344, + "TargetID": 82345, + "Directional": true + } + ] + }, + { + "ID": 17510, + "SourceStructureID": 82353, + "TargetStructureID": 390, + "Label": "82353-390 via Ribbon Synapse from 121983 -> 121984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121983, + "TargetID": 121984, + "Directional": true + } + ] + }, + { + "ID": 17511, + "SourceStructureID": 82396, + "TargetStructureID": 65375, + "Label": "82396-65375 via Conventional from 82397 -> 82398", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82397, + "TargetID": 82398, + "Directional": true + } + ] + }, + { + "ID": 17512, + "SourceStructureID": 82430, + "TargetStructureID": 67182, + "Label": "82430-67182 via Ribbon Synapse from 82865 -> 82866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82865, + "TargetID": 82866, + "Directional": true + } + ] + }, + { + "ID": 17513, + "SourceStructureID": 82430, + "TargetStructureID": 67529, + "Label": "82430-67529 via Ribbon Synapse from 82865 -> 82867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82865, + "TargetID": 82867, + "Directional": true + } + ] + }, + { + "ID": 17514, + "SourceStructureID": 82430, + "TargetStructureID": 82868, + "Label": "82430-82868 via Ribbon Synapse from 82865 -> 82869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82865, + "TargetID": 82869, + "Directional": true + } + ] + }, + { + "ID": 17515, + "SourceStructureID": 82569, + "TargetStructureID": 5531, + "Label": "82569-5531 via Conventional from 105217 -> 105218", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105217, + "TargetID": 105218, + "Directional": true + } + ] + }, + { + "ID": 17516, + "SourceStructureID": 82622, + "TargetStructureID": 6115, + "Label": "82622-6115 via Conventional from 82623 -> 82624", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82623, + "TargetID": 82624, + "Directional": true + } + ] + }, + { + "ID": 17517, + "SourceStructureID": 82634, + "TargetStructureID": 5528, + "Label": "82634-5528 via Conventional from 94399 -> 94400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94399, + "TargetID": 94400, + "Directional": true + } + ] + }, + { + "ID": 17518, + "SourceStructureID": 82643, + "TargetStructureID": 5528, + "Label": "82643-5528 via Conventional from 94405 -> 94406", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94405, + "TargetID": 94406, + "Directional": true + } + ] + }, + { + "ID": 17519, + "SourceStructureID": 82644, + "TargetStructureID": 16087, + "Label": "82644-16087 via Conventional from 82649 -> 82650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82649, + "TargetID": 82650, + "Directional": true + } + ] + }, + { + "ID": 17520, + "SourceStructureID": 82653, + "TargetStructureID": 6115, + "Label": "82653-6115 via Conventional from 82654 -> 82655", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82654, + "TargetID": 82655, + "Directional": true + } + ] + }, + { + "ID": 17521, + "SourceStructureID": 82665, + "TargetStructureID": 6115, + "Label": "82665-6115 via Conventional from 82666 -> 82663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82666, + "TargetID": 82663, + "Directional": true + } + ] + }, + { + "ID": 17522, + "SourceStructureID": 82677, + "TargetStructureID": 83635, + "Label": "82677-83635 via Ribbon Synapse from 83634 -> 83658", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83634, + "TargetID": 83658, + "Directional": true + } + ] + }, + { + "ID": 17523, + "SourceStructureID": 82677, + "TargetStructureID": 83638, + "Label": "82677-83638 via Ribbon Synapse from 83642 -> 83641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83642, + "TargetID": 83641, + "Directional": true + } + ] + }, + { + "ID": 17524, + "SourceStructureID": 82677, + "TargetStructureID": 83659, + "Label": "82677-83659 via Ribbon Synapse from 83634 -> 83660", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83634, + "TargetID": 83660, + "Directional": true + } + ] + }, + { + "ID": 17525, + "SourceStructureID": 82677, + "TargetStructureID": 83668, + "Label": "82677-83668 via BC Conventional Synapse from 83671 -> 83669", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83671, + "TargetID": 83669, + "Directional": true + } + ] + }, + { + "ID": 17526, + "SourceStructureID": 82677, + "TargetStructureID": 83691, + "Label": "82677-83691 via Ribbon Synapse from 83677 -> 83692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83677, + "TargetID": 83692, + "Directional": true + } + ] + }, + { + "ID": 17527, + "SourceStructureID": 82677, + "TargetStructureID": 83712, + "Label": "82677-83712 via Ribbon Synapse from 83701 -> 83713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83701, + "TargetID": 83713, + "Directional": true + } + ] + }, + { + "ID": 17528, + "SourceStructureID": 82677, + "TargetStructureID": 83725, + "Label": "82677-83725 via Ribbon Synapse from 83724 -> 83726", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83724, + "TargetID": 83726, + "Directional": true + } + ] + }, + { + "ID": 17529, + "SourceStructureID": 82677, + "TargetStructureID": 83733, + "Label": "82677-83733 via Ribbon Synapse from 83732 -> 83737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83732, + "TargetID": 83737, + "Directional": true + } + ] + }, + { + "ID": 17530, + "SourceStructureID": 82677, + "TargetStructureID": 83735, + "Label": "82677-83735 via Ribbon Synapse from 83732 -> 83738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83732, + "TargetID": 83738, + "Directional": true + } + ] + }, + { + "ID": 17531, + "SourceStructureID": 82677, + "TargetStructureID": 83739, + "Label": "82677-83739 via Ribbon Synapse from 83732 -> 83740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83732, + "TargetID": 83740, + "Directional": true + } + ] + }, + { + "ID": 17532, + "SourceStructureID": 82677, + "TargetStructureID": 83746, + "Label": "82677-83746 via Ribbon Synapse from 83745 -> 83751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83745, + "TargetID": 83751, + "Directional": true + } + ] + }, + { + "ID": 17533, + "SourceStructureID": 82677, + "TargetStructureID": 83747, + "Label": "82677-83747 via Ribbon Synapse from 83745 -> 83750", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83745, + "TargetID": 83750, + "Directional": true + } + ] + }, + { + "ID": 17534, + "SourceStructureID": 82677, + "TargetStructureID": 83767, + "Label": "82677-83767 via Ribbon Synapse from 83766 -> 83770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83766, + "TargetID": 83770, + "Directional": true + } + ] + }, + { + "ID": 17535, + "SourceStructureID": 82677, + "TargetStructureID": 83793, + "Label": "82677-83793 via Ribbon Synapse from 83792 -> 83796", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83792, + "TargetID": 83796, + "Directional": true + } + ] + }, + { + "ID": 17536, + "SourceStructureID": 82677, + "TargetStructureID": 83798, + "Label": "82677-83798 via Ribbon Synapse from 83792 -> 83799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83792, + "TargetID": 83799, + "Directional": true + } + ] + }, + { + "ID": 17537, + "SourceStructureID": 82677, + "TargetStructureID": 83808, + "Label": "82677-83808 via Cistern Pre from 83813 -> 83814", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 83813, + "TargetID": 83814, + "Directional": true + } + ] + }, + { + "ID": 17538, + "SourceStructureID": 82677, + "TargetStructureID": 83819, + "Label": "82677-83819 via Ribbon Synapse from 83818 -> 83822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83818, + "TargetID": 83822, + "Directional": true + } + ] + }, + { + "ID": 17539, + "SourceStructureID": 82677, + "TargetStructureID": 83820, + "Label": "82677-83820 via Ribbon Synapse from 83818 -> 83821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83818, + "TargetID": 83821, + "Directional": true + } + ] + }, + { + "ID": 17540, + "SourceStructureID": 82677, + "TargetStructureID": 83828, + "Label": "82677-83828 via Ribbon Synapse from 83826 -> 83830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83826, + "TargetID": 83830, + "Directional": true + } + ] + }, + { + "ID": 17541, + "SourceStructureID": 82677, + "TargetStructureID": 83846, + "Label": "82677-83846 via Ribbon Synapse from 83841 -> 83851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83841, + "TargetID": 83851, + "Directional": true + } + ] + }, + { + "ID": 17542, + "SourceStructureID": 82677, + "TargetStructureID": 83852, + "Label": "82677-83852 via Ribbon Synapse from 83841 -> 83853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83841, + "TargetID": 83853, + "Directional": true + } + ] + }, + { + "ID": 17543, + "SourceStructureID": 82677, + "TargetStructureID": 83857, + "Label": "82677-83857 via Ribbon Synapse from 83856 -> 83858", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83856, + "TargetID": 83858, + "Directional": true + } + ] + }, + { + "ID": 17544, + "SourceStructureID": 82677, + "TargetStructureID": 83865, + "Label": "82677-83865 via Ribbon Synapse from 83868 -> 83867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83868, + "TargetID": 83867, + "Directional": true + } + ] + }, + { + "ID": 17545, + "SourceStructureID": 82677, + "TargetStructureID": 83866, + "Label": "82677-83866 via BC Conventional Synapse from 83877 -> 83872", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83877, + "TargetID": 83872, + "Directional": true + } + ] + }, + { + "ID": 17546, + "SourceStructureID": 82677, + "TargetStructureID": 83870, + "Label": "82677-83870 via Ribbon Synapse from 83864 -> 83871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83864, + "TargetID": 83871, + "Directional": true + } + ] + }, + { + "ID": 17547, + "SourceStructureID": 82677, + "TargetStructureID": 83873, + "Label": "82677-83873 via Ribbon Synapse from 83864 -> 83874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83864, + "TargetID": 83874, + "Directional": true + } + ] + }, + { + "ID": 17548, + "SourceStructureID": 82677, + "TargetStructureID": 83882, + "Label": "82677-83882 via Ribbon Synapse from 83885 -> 83888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83885, + "TargetID": 83888, + "Directional": true + } + ] + }, + { + "ID": 17549, + "SourceStructureID": 82677, + "TargetStructureID": 83988, + "Label": "82677-83988 via BC Conventional Synapse from 83987 -> 83989", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83987, + "TargetID": 83989, + "Directional": true + } + ] + }, + { + "ID": 17550, + "SourceStructureID": 82677, + "TargetStructureID": 83992, + "Label": "82677-83992 via Ribbon Synapse from 83991 -> 83994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83991, + "TargetID": 83994, + "Directional": true + } + ] + }, + { + "ID": 17551, + "SourceStructureID": 82677, + "TargetStructureID": 83995, + "Label": "82677-83995 via Ribbon Synapse from 83991 -> 83998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83991, + "TargetID": 83998, + "Directional": true + } + ] + }, + { + "ID": 17552, + "SourceStructureID": 82677, + "TargetStructureID": 83996, + "Label": "82677-83996 via Ribbon Synapse from 83990 -> 84007, 83991 -> 83997", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83990, + "TargetID": 84007, + "Directional": true + }, + { + "SourceID": 83991, + "TargetID": 83997, + "Directional": true + } + ] + }, + { + "ID": 17553, + "SourceStructureID": 82677, + "TargetStructureID": 83999, + "Label": "82677-83999 via Ribbon Synapse from 83990 -> 84005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83990, + "TargetID": 84005, + "Directional": true + } + ] + }, + { + "ID": 17554, + "SourceStructureID": 82677, + "TargetStructureID": 84004, + "Label": "82677-84004 via Ribbon Synapse from 83990 -> 84006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83990, + "TargetID": 84006, + "Directional": true + } + ] + }, + { + "ID": 17555, + "SourceStructureID": 82677, + "TargetStructureID": 84008, + "Label": "82677-84008 via Ribbon Synapse from 84014 -> 84011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84014, + "TargetID": 84011, + "Directional": true + } + ] + }, + { + "ID": 17556, + "SourceStructureID": 82677, + "TargetStructureID": 84012, + "Label": "82677-84012 via Ribbon Synapse from 84014 -> 84013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84014, + "TargetID": 84013, + "Directional": true + } + ] + }, + { + "ID": 17557, + "SourceStructureID": 82677, + "TargetStructureID": 84024, + "Label": "82677-84024 via Ribbon Synapse from 84015 -> 84025, 84015 -> 84026", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84015, + "TargetID": 84025, + "Directional": true + }, + { + "SourceID": 84015, + "TargetID": 84026, + "Directional": true + } + ] + }, + { + "ID": 17558, + "SourceStructureID": 82677, + "TargetStructureID": 84052, + "Label": "82677-84052 via BC Conventional Synapse from 84054 -> 84053", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84054, + "TargetID": 84053, + "Directional": true + } + ] + }, + { + "ID": 17559, + "SourceStructureID": 82677, + "TargetStructureID": 84083, + "Label": "82677-84083 via Ribbon Synapse from 84104 -> 84112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84104, + "TargetID": 84112, + "Directional": true + } + ] + }, + { + "ID": 17560, + "SourceStructureID": 82677, + "TargetStructureID": 84088, + "Label": "82677-84088 via Ribbon Synapse from 84056 -> 84092", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84056, + "TargetID": 84092, + "Directional": true + } + ] + }, + { + "ID": 17561, + "SourceStructureID": 82677, + "TargetStructureID": 84095, + "Label": "82677-84095 via BC Conventional Synapse from 84100 -> 84101", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84100, + "TargetID": 84101, + "Directional": true + } + ] + }, + { + "ID": 17562, + "SourceStructureID": 82677, + "TargetStructureID": 84108, + "Label": "82677-84108 via Ribbon Synapse from 84104 -> 84109", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84104, + "TargetID": 84109, + "Directional": true + } + ] + }, + { + "ID": 17563, + "SourceStructureID": 82677, + "TargetStructureID": 84110, + "Label": "82677-84110 via Ribbon Synapse from 84104 -> 84111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84104, + "TargetID": 84111, + "Directional": true + } + ] + }, + { + "ID": 17564, + "SourceStructureID": 82677, + "TargetStructureID": 84125, + "Label": "82677-84125 via Ribbon Synapse from 84124 -> 84126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84124, + "TargetID": 84126, + "Directional": true + } + ] + }, + { + "ID": 17565, + "SourceStructureID": 82678, + "TargetStructureID": 6115, + "Label": "82678-6115 via Conventional from 82679 -> 82681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82679, + "TargetID": 82681, + "Directional": true + } + ] + }, + { + "ID": 17566, + "SourceStructureID": 82692, + "TargetStructureID": 5530, + "Label": "82692-5530 via Conventional from 134549 -> 134550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134549, + "TargetID": 134550, + "Directional": true + } + ] + }, + { + "ID": 17567, + "SourceStructureID": 82692, + "TargetStructureID": 82677, + "Label": "82692-82677 via Conventional from 83694 -> 83693", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83694, + "TargetID": 83693, + "Directional": true + } + ] + }, + { + "ID": 17568, + "SourceStructureID": 82717, + "TargetStructureID": 67460, + "Label": "82717-67460 via Conventional from 82718 -> 82716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82718, + "TargetID": 82716, + "Directional": true + } + ] + }, + { + "ID": 17569, + "SourceStructureID": 82723, + "TargetStructureID": 67460, + "Label": "82723-67460 via Conventional from 82725 -> 82726", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82725, + "TargetID": 82726, + "Directional": true + } + ] + }, + { + "ID": 17570, + "SourceStructureID": 82737, + "TargetStructureID": 66828, + "Label": "82737-66828 via Conventional from 82738 -> 82739", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82738, + "TargetID": 82739, + "Directional": true + } + ] + }, + { + "ID": 17571, + "SourceStructureID": 82743, + "TargetStructureID": 82753, + "Label": "82743-82753 via Conventional from 82759 -> 82760", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82759, + "TargetID": 82760, + "Directional": true + } + ] + }, + { + "ID": 17572, + "SourceStructureID": 82743, + "TargetStructureID": 82761, + "Label": "82743-82761 via Conventional from 82762 -> 82763", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82762, + "TargetID": 82763, + "Directional": true + } + ] + }, + { + "ID": 17573, + "SourceStructureID": 82743, + "TargetStructureID": 82766, + "Label": "82743-82766 via Conventional from 82767 -> 82768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82767, + "TargetID": 82768, + "Directional": true + } + ] + }, + { + "ID": 17574, + "SourceStructureID": 82743, + "TargetStructureID": 82796, + "Label": "82743-82796 via Conventional from 82798 -> 82799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82798, + "TargetID": 82799, + "Directional": true + } + ] + }, + { + "ID": 17575, + "SourceStructureID": 82746, + "TargetStructureID": 82743, + "Label": "82746-82743 via Conventional from 82747 -> 82748", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82747, + "TargetID": 82748, + "Directional": true + } + ] + }, + { + "ID": 17576, + "SourceStructureID": 82753, + "TargetStructureID": 6050, + "Label": "82753-6050 via Conventional from 127058 -> 19300", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127058, + "TargetID": 19300, + "Directional": true + } + ] + }, + { + "ID": 17577, + "SourceStructureID": 82792, + "TargetStructureID": 82743, + "Label": "82792-82743 via Conventional from 82793 -> 82794", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82793, + "TargetID": 82794, + "Directional": true + } + ] + }, + { + "ID": 17578, + "SourceStructureID": 82804, + "TargetStructureID": 50449, + "Label": "82804-50449 via Conventional from 82805 -> 50510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82805, + "TargetID": 50510, + "Directional": true + } + ] + }, + { + "ID": 17579, + "SourceStructureID": 82806, + "TargetStructureID": 67305, + "Label": "82806-67305 via Conventional from 82808 -> 82809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82808, + "TargetID": 82809, + "Directional": true + } + ] + }, + { + "ID": 17580, + "SourceStructureID": 82813, + "TargetStructureID": 67305, + "Label": "82813-67305 via Ribbon Synapse from 82815 -> 82816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82815, + "TargetID": 82816, + "Directional": true + } + ] + }, + { + "ID": 17581, + "SourceStructureID": 82813, + "TargetStructureID": 82817, + "Label": "82813-82817 via Ribbon Synapse from 82815 -> 82818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82815, + "TargetID": 82818, + "Directional": true + } + ] + }, + { + "ID": 17582, + "SourceStructureID": 82813, + "TargetStructureID": 82819, + "Label": "82813-82819 via Ribbon Synapse from 82815 -> 82820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 82815, + "TargetID": 82820, + "Directional": true + } + ] + }, + { + "ID": 17583, + "SourceStructureID": 82877, + "TargetStructureID": 606, + "Label": "82877-606 via Conventional from 92432 -> 53561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92432, + "TargetID": 53561, + "Directional": true + } + ] + }, + { + "ID": 17584, + "SourceStructureID": 82887, + "TargetStructureID": 5528, + "Label": "82887-5528 via Conventional from 87134 -> 87135, 113997 -> 113996", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87134, + "TargetID": 87135, + "Directional": true + }, + { + "SourceID": 113997, + "TargetID": 113996, + "Directional": true + } + ] + }, + { + "ID": 17585, + "SourceStructureID": 82897, + "TargetStructureID": 5528, + "Label": "82897-5528 via Conventional from 94814 -> 94815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94814, + "TargetID": 94815, + "Directional": true + } + ] + }, + { + "ID": 17586, + "SourceStructureID": 82897, + "TargetStructureID": 5531, + "Label": "82897-5531 via Conventional from 114828 -> 114829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114828, + "TargetID": 114829, + "Directional": true + } + ] + }, + { + "ID": 17587, + "SourceStructureID": 82907, + "TargetStructureID": 11042, + "Label": "82907-11042 via Conventional from 82915 -> 82916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82915, + "TargetID": 82916, + "Directional": true + } + ] + }, + { + "ID": 17588, + "SourceStructureID": 82907, + "TargetStructureID": 82912, + "Label": "82907-82912 via Conventional from 82913 -> 82914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82913, + "TargetID": 82914, + "Directional": true + } + ] + }, + { + "ID": 17589, + "SourceStructureID": 82908, + "TargetStructureID": 82907, + "Label": "82908-82907 via Conventional from 82909 -> 82910", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82909, + "TargetID": 82910, + "Directional": true + } + ] + }, + { + "ID": 17590, + "SourceStructureID": 82919, + "TargetStructureID": 67182, + "Label": "82919-67182 via Conventional from 82920 -> 82918", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82920, + "TargetID": 82918, + "Directional": true + } + ] + }, + { + "ID": 17591, + "SourceStructureID": 82922, + "TargetStructureID": 82919, + "Label": "82922-82919 via Conventional from 82923 -> 82921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82923, + "TargetID": 82921, + "Directional": true + } + ] + }, + { + "ID": 17592, + "SourceStructureID": 82974, + "TargetStructureID": 72252, + "Label": "82974-72252 via Conventional from 82975 -> 82989", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82975, + "TargetID": 82989, + "Directional": true + } + ] + }, + { + "ID": 17593, + "SourceStructureID": 82977, + "TargetStructureID": 72252, + "Label": "82977-72252 via Conventional from 82980 -> 82981", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82980, + "TargetID": 82981, + "Directional": true + } + ] + }, + { + "ID": 17594, + "SourceStructureID": 82985, + "TargetStructureID": 39319, + "Label": "82985-39319 via Conventional from 82987 -> 39685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82987, + "TargetID": 39685, + "Directional": true + } + ] + }, + { + "ID": 17595, + "SourceStructureID": 82985, + "TargetStructureID": 72252, + "Label": "82985-72252 via Conventional from 82986 -> 82988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 82986, + "TargetID": 82988, + "Directional": true + } + ] + }, + { + "ID": 17596, + "SourceStructureID": 83056, + "TargetStructureID": 608, + "Label": "83056-608 via Conventional from 83312 -> 77007", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83312, + "TargetID": 77007, + "Directional": true + } + ] + }, + { + "ID": 17597, + "SourceStructureID": 83056, + "TargetStructureID": 67150, + "Label": "83056-67150 via Conventional from 83057 -> 83058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83057, + "TargetID": 83058, + "Directional": true + } + ] + }, + { + "ID": 17598, + "SourceStructureID": 83056, + "TargetStructureID": 83619, + "Label": "83056-83619 via Conventional from 83621 -> 83622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83621, + "TargetID": 83622, + "Directional": true + } + ] + }, + { + "ID": 17599, + "SourceStructureID": 83060, + "TargetStructureID": 5485, + "Label": "83060-5485 via Conventional from 83061 -> 9491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83061, + "TargetID": 9491, + "Directional": true + } + ] + }, + { + "ID": 17600, + "SourceStructureID": 83127, + "TargetStructureID": 6117, + "Label": "83127-6117 via Conventional from 83128 -> 30866", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83128, + "TargetID": 30866, + "Directional": true + } + ] + }, + { + "ID": 17601, + "SourceStructureID": 83147, + "TargetStructureID": 6117, + "Label": "83147-6117 via Conventional from 83151 -> 83152", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83151, + "TargetID": 83152, + "Directional": true + } + ] + }, + { + "ID": 17602, + "SourceStructureID": 83147, + "TargetStructureID": 70466, + "Label": "83147-70466 via Conventional from 83148 -> 83149", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83148, + "TargetID": 83149, + "Directional": true + } + ] + }, + { + "ID": 17603, + "SourceStructureID": 83157, + "TargetStructureID": 6117, + "Label": "83157-6117 via Conventional from 83158 -> 83159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83158, + "TargetID": 83159, + "Directional": true + } + ] + }, + { + "ID": 17604, + "SourceStructureID": 83163, + "TargetStructureID": 83190, + "Label": "83163-83190 via Conventional from 83189 -> 83191", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83189, + "TargetID": 83191, + "Directional": true + } + ] + }, + { + "ID": 17605, + "SourceStructureID": 83165, + "TargetStructureID": 5279, + "Label": "83165-5279 via Conventional from 96481 -> 6336", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96481, + "TargetID": 6336, + "Directional": true + } + ] + }, + { + "ID": 17606, + "SourceStructureID": 83165, + "TargetStructureID": 83194, + "Label": "83165-83194 via Conventional from 83193 -> 83195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83193, + "TargetID": 83195, + "Directional": true + } + ] + }, + { + "ID": 17607, + "SourceStructureID": 83179, + "TargetStructureID": 9769, + "Label": "83179-9769 via Ribbon Synapse from 83180 -> 83181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 83180, + "TargetID": 83181, + "Directional": true + } + ] + }, + { + "ID": 17608, + "SourceStructureID": 83222, + "TargetStructureID": 6117, + "Label": "83222-6117 via Conventional from 83223 -> 83224", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83223, + "TargetID": 83224, + "Directional": true + } + ] + }, + { + "ID": 17609, + "SourceStructureID": 83238, + "TargetStructureID": 6117, + "Label": "83238-6117 via Conventional from 83239 -> 83240", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83239, + "TargetID": 83240, + "Directional": true + } + ] + }, + { + "ID": 17610, + "SourceStructureID": 83241, + "TargetStructureID": 6117, + "Label": "83241-6117 via Conventional from 83242 -> 49181", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83242, + "TargetID": 49181, + "Directional": true + } + ] + }, + { + "ID": 17611, + "SourceStructureID": 83243, + "TargetStructureID": 6117, + "Label": "83243-6117 via Conventional from 83244 -> 30890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83244, + "TargetID": 30890, + "Directional": true + } + ] + }, + { + "ID": 17612, + "SourceStructureID": 83255, + "TargetStructureID": 6117, + "Label": "83255-6117 via Conventional from 86381 -> 30903", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86381, + "TargetID": 30903, + "Directional": true + } + ] + }, + { + "ID": 17613, + "SourceStructureID": 83257, + "TargetStructureID": 68480, + "Label": "83257-68480 via Conventional from 83258 -> 83259", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83258, + "TargetID": 83259, + "Directional": true + } + ] + }, + { + "ID": 17614, + "SourceStructureID": 83260, + "TargetStructureID": 68480, + "Label": "83260-68480 via Conventional from 83261 -> 83262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83261, + "TargetID": 83262, + "Directional": true + } + ] + }, + { + "ID": 17615, + "SourceStructureID": 83266, + "TargetStructureID": 6117, + "Label": "83266-6117 via Conventional from 83269 -> 70492", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83269, + "TargetID": 70492, + "Directional": true + } + ] + }, + { + "ID": 17616, + "SourceStructureID": 83270, + "TargetStructureID": 5279, + "Label": "83270-5279 via Conventional from 83274 -> 25798", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83274, + "TargetID": 25798, + "Directional": true + } + ] + }, + { + "ID": 17617, + "SourceStructureID": 83288, + "TargetStructureID": 6117, + "Label": "83288-6117 via Conventional from 83292 -> 30868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83292, + "TargetID": 30868, + "Directional": true + } + ] + }, + { + "ID": 17618, + "SourceStructureID": 83293, + "TargetStructureID": 6117, + "Label": "83293-6117 via Conventional from 83297 -> 83298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83297, + "TargetID": 83298, + "Directional": true + } + ] + }, + { + "ID": 17619, + "SourceStructureID": 83302, + "TargetStructureID": 5279, + "Label": "83302-5279 via Conventional from 83303 -> 35994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83303, + "TargetID": 35994, + "Directional": true + } + ] + }, + { + "ID": 17620, + "SourceStructureID": 83308, + "TargetStructureID": 5279, + "Label": "83308-5279 via Conventional from 98546 -> 49207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98546, + "TargetID": 49207, + "Directional": true + } + ] + }, + { + "ID": 17621, + "SourceStructureID": 83308, + "TargetStructureID": 67182, + "Label": "83308-67182 via Conventional from 83310 -> 83307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83310, + "TargetID": 83307, + "Directional": true + } + ] + }, + { + "ID": 17622, + "SourceStructureID": 83314, + "TargetStructureID": 67182, + "Label": "83314-67182 via Conventional from 83315 -> 83316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83315, + "TargetID": 83316, + "Directional": true + } + ] + }, + { + "ID": 17623, + "SourceStructureID": 83321, + "TargetStructureID": 67182, + "Label": "83321-67182 via Conventional from 83322 -> 83320", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83322, + "TargetID": 83320, + "Directional": true + } + ] + }, + { + "ID": 17624, + "SourceStructureID": 83360, + "TargetStructureID": 83370, + "Label": "83360-83370 via Conventional from 83366 -> 83371", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83366, + "TargetID": 83371, + "Directional": true + } + ] + }, + { + "ID": 17625, + "SourceStructureID": 83368, + "TargetStructureID": 83360, + "Label": "83368-83360 via Conventional from 83369 -> 83367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83369, + "TargetID": 83367, + "Directional": true + } + ] + }, + { + "ID": 17626, + "SourceStructureID": 83385, + "TargetStructureID": 324, + "Label": "83385-324 via Conventional from 83433 -> 83434", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83433, + "TargetID": 83434, + "Directional": true + } + ] + }, + { + "ID": 17627, + "SourceStructureID": 83386, + "TargetStructureID": 83406, + "Label": "83386-83406 via Conventional from 83407 -> 83408", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83407, + "TargetID": 83408, + "Directional": true + } + ] + }, + { + "ID": 17628, + "SourceStructureID": 83389, + "TargetStructureID": 83386, + "Label": "83389-83386 via Conventional from 83391 -> 83393", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83391, + "TargetID": 83393, + "Directional": true + } + ] + }, + { + "ID": 17629, + "SourceStructureID": 83389, + "TargetStructureID": 83390, + "Label": "83389-83390 via Conventional from 83392 -> 83394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83392, + "TargetID": 83394, + "Directional": true + } + ] + }, + { + "ID": 17630, + "SourceStructureID": 83395, + "TargetStructureID": 83386, + "Label": "83395-83386 via Conventional from 83396 -> 83397", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83396, + "TargetID": 83397, + "Directional": true + } + ] + }, + { + "ID": 17631, + "SourceStructureID": 83409, + "TargetStructureID": 324, + "Label": "83409-324 via Conventional from 83411 -> 83410", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83411, + "TargetID": 83410, + "Directional": true + } + ] + }, + { + "ID": 17632, + "SourceStructureID": 83412, + "TargetStructureID": 324, + "Label": "83412-324 via Conventional from 83414 -> 83413", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83414, + "TargetID": 83413, + "Directional": true + } + ] + }, + { + "ID": 17633, + "SourceStructureID": 83415, + "TargetStructureID": 83386, + "Label": "83415-83386 via Conventional from 83416 -> 83417", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83416, + "TargetID": 83417, + "Directional": true + } + ] + }, + { + "ID": 17634, + "SourceStructureID": 83428, + "TargetStructureID": 324, + "Label": "83428-324 via Conventional from 96949 -> 83427", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96949, + "TargetID": 83427, + "Directional": true + } + ] + }, + { + "ID": 17635, + "SourceStructureID": 83430, + "TargetStructureID": 324, + "Label": "83430-324 via Conventional from 96967 -> 96968", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96967, + "TargetID": 96968, + "Directional": true + } + ] + }, + { + "ID": 17636, + "SourceStructureID": 83449, + "TargetStructureID": 83448, + "Label": "83449-83448 via Conventional from 83450 -> 83451", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83450, + "TargetID": 83451, + "Directional": true + } + ] + }, + { + "ID": 17637, + "SourceStructureID": 83454, + "TargetStructureID": 16087, + "Label": "83454-16087 via Conventional from 83455 -> 83458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83455, + "TargetID": 83458, + "Directional": true + } + ] + }, + { + "ID": 17638, + "SourceStructureID": 83575, + "TargetStructureID": 324, + "Label": "83575-324 via Conventional from 83576 -> 83577", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83576, + "TargetID": 83577, + "Directional": true + } + ] + }, + { + "ID": 17639, + "SourceStructureID": 83580, + "TargetStructureID": 324, + "Label": "83580-324 via Conventional from 83581 -> 83582", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83581, + "TargetID": 83582, + "Directional": true + } + ] + }, + { + "ID": 17640, + "SourceStructureID": 83603, + "TargetStructureID": 66801, + "Label": "83603-66801 via Conventional from 83604 -> 83602", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83604, + "TargetID": 83602, + "Directional": true + } + ] + }, + { + "ID": 17641, + "SourceStructureID": 83625, + "TargetStructureID": 83056, + "Label": "83625-83056 via Conventional from 83626 -> 83624", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83626, + "TargetID": 83624, + "Directional": true + } + ] + }, + { + "ID": 17642, + "SourceStructureID": 83644, + "TargetStructureID": 82677, + "Label": "83644-82677 via Conventional from 83645 -> 83643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83645, + "TargetID": 83643, + "Directional": true + } + ] + }, + { + "ID": 17643, + "SourceStructureID": 83648, + "TargetStructureID": 82677, + "Label": "83648-82677 via Conventional from 83653 -> 83652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83653, + "TargetID": 83652, + "Directional": true + } + ] + }, + { + "ID": 17644, + "SourceStructureID": 83679, + "TargetStructureID": 82677, + "Label": "83679-82677 via Conventional from 83680 -> 83678", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83680, + "TargetID": 83678, + "Directional": true + } + ] + }, + { + "ID": 17645, + "SourceStructureID": 83697, + "TargetStructureID": 82677, + "Label": "83697-82677 via Conventional from 83699 -> 83700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83699, + "TargetID": 83700, + "Directional": true + } + ] + }, + { + "ID": 17646, + "SourceStructureID": 83703, + "TargetStructureID": 82677, + "Label": "83703-82677 via Conventional from 83704 -> 83702", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83704, + "TargetID": 83702, + "Directional": true + } + ] + }, + { + "ID": 17647, + "SourceStructureID": 83706, + "TargetStructureID": 82677, + "Label": "83706-82677 via Conventional from 83707 -> 83705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83707, + "TargetID": 83705, + "Directional": true + } + ] + }, + { + "ID": 17648, + "SourceStructureID": 83708, + "TargetStructureID": 82677, + "Label": "83708-82677 via Conventional from 83709 -> 83710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83709, + "TargetID": 83710, + "Directional": true + } + ] + }, + { + "ID": 17649, + "SourceStructureID": 83714, + "TargetStructureID": 82677, + "Label": "83714-82677 via Conventional from 83720 -> 83719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83720, + "TargetID": 83719, + "Directional": true + } + ] + }, + { + "ID": 17650, + "SourceStructureID": 83721, + "TargetStructureID": 74907, + "Label": "83721-74907 via Conventional from 83730 -> 83731", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83730, + "TargetID": 83731, + "Directional": true + } + ] + }, + { + "ID": 17651, + "SourceStructureID": 83733, + "TargetStructureID": 83735, + "Label": "83733-83735 via Conventional from 83734 -> 83736", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83734, + "TargetID": 83736, + "Directional": true + } + ] + }, + { + "ID": 17652, + "SourceStructureID": 83757, + "TargetStructureID": 74907, + "Label": "83757-74907 via Conventional from 83863 -> 83862, 84609 -> 84610", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83863, + "TargetID": 83862, + "Directional": true + }, + { + "SourceID": 84609, + "TargetID": 84610, + "Directional": true + } + ] + }, + { + "ID": 17653, + "SourceStructureID": 83761, + "TargetStructureID": 82677, + "Label": "83761-82677 via Conventional from 83762 -> 83760", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83762, + "TargetID": 83760, + "Directional": true + } + ] + }, + { + "ID": 17654, + "SourceStructureID": 83764, + "TargetStructureID": 82677, + "Label": "83764-82677 via Conventional from 83765 -> 83763", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83765, + "TargetID": 83763, + "Directional": true + } + ] + }, + { + "ID": 17655, + "SourceStructureID": 83767, + "TargetStructureID": 83772, + "Label": "83767-83772 via Conventional from 83771 -> 83773", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83771, + "TargetID": 83773, + "Directional": true + } + ] + }, + { + "ID": 17656, + "SourceStructureID": 83776, + "TargetStructureID": 82677, + "Label": "83776-82677 via Conventional from 83778 -> 83777", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83778, + "TargetID": 83777, + "Directional": true + } + ] + }, + { + "ID": 17657, + "SourceStructureID": 83785, + "TargetStructureID": 82677, + "Label": "83785-82677 via Conventional from 83786 -> 83784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83786, + "TargetID": 83784, + "Directional": true + } + ] + }, + { + "ID": 17658, + "SourceStructureID": 83788, + "TargetStructureID": 6165, + "Label": "83788-6165 via Conventional from 83789 -> 83787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83789, + "TargetID": 83787, + "Directional": true + } + ] + }, + { + "ID": 17659, + "SourceStructureID": 83807, + "TargetStructureID": 74907, + "Label": "83807-74907 via Conventional from 83811 -> 83806", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83811, + "TargetID": 83806, + "Directional": true + } + ] + }, + { + "ID": 17660, + "SourceStructureID": 83823, + "TargetStructureID": 82677, + "Label": "83823-82677 via Conventional from 83824 -> 83825", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83824, + "TargetID": 83825, + "Directional": true + } + ] + }, + { + "ID": 17661, + "SourceStructureID": 83831, + "TargetStructureID": 82677, + "Label": "83831-82677 via Conventional from 83832 -> 83833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83832, + "TargetID": 83833, + "Directional": true + } + ] + }, + { + "ID": 17662, + "SourceStructureID": 83838, + "TargetStructureID": 82677, + "Label": "83838-82677 via Conventional from 83839 -> 83837", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83839, + "TargetID": 83837, + "Directional": true + } + ] + }, + { + "ID": 17663, + "SourceStructureID": 83838, + "TargetStructureID": 83852, + "Label": "83838-83852 via Conventional from 83855 -> 83854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83855, + "TargetID": 83854, + "Directional": true + } + ] + }, + { + "ID": 17664, + "SourceStructureID": 83842, + "TargetStructureID": 82677, + "Label": "83842-82677 via Conventional from 83843 -> 83844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83843, + "TargetID": 83844, + "Directional": true + } + ] + }, + { + "ID": 17665, + "SourceStructureID": 83846, + "TargetStructureID": 82677, + "Label": "83846-82677 via Conventional from 83849 -> 83850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83849, + "TargetID": 83850, + "Directional": true + } + ] + }, + { + "ID": 17666, + "SourceStructureID": 83860, + "TargetStructureID": 82677, + "Label": "83860-82677 via Conventional from 83861 -> 83859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83861, + "TargetID": 83859, + "Directional": true + } + ] + }, + { + "ID": 17667, + "SourceStructureID": 83882, + "TargetStructureID": 82677, + "Label": "83882-82677 via Conventional from 83883 -> 83881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83883, + "TargetID": 83881, + "Directional": true + } + ] + }, + { + "ID": 17668, + "SourceStructureID": 83890, + "TargetStructureID": 82677, + "Label": "83890-82677 via Conventional from 83904 -> 83889", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83904, + "TargetID": 83889, + "Directional": true + } + ] + }, + { + "ID": 17669, + "SourceStructureID": 83892, + "TargetStructureID": 74907, + "Label": "83892-74907 via Conventional from 83893 -> 83891", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83893, + "TargetID": 83891, + "Directional": true + } + ] + }, + { + "ID": 17670, + "SourceStructureID": 83894, + "TargetStructureID": 74907, + "Label": "83894-74907 via Conventional from 83895 -> 83896, 84445 -> 84446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83895, + "TargetID": 83896, + "Directional": true + }, + { + "SourceID": 84445, + "TargetID": 84446, + "Directional": true + } + ] + }, + { + "ID": 17671, + "SourceStructureID": 83898, + "TargetStructureID": 74907, + "Label": "83898-74907 via Conventional from 83899 -> 83900", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83899, + "TargetID": 83900, + "Directional": true + } + ] + }, + { + "ID": 17672, + "SourceStructureID": 83901, + "TargetStructureID": 74907, + "Label": "83901-74907 via Conventional from 83902 -> 83903", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83902, + "TargetID": 83903, + "Directional": true + } + ] + }, + { + "ID": 17673, + "SourceStructureID": 83907, + "TargetStructureID": 82677, + "Label": "83907-82677 via Conventional from 83908 -> 83906", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83908, + "TargetID": 83906, + "Directional": true + } + ] + }, + { + "ID": 17674, + "SourceStructureID": 83916, + "TargetStructureID": 5279, + "Label": "83916-5279 via Conventional from 97064 -> 25986", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97064, + "TargetID": 25986, + "Directional": true + } + ] + }, + { + "ID": 17675, + "SourceStructureID": 83916, + "TargetStructureID": 6117, + "Label": "83916-6117 via Conventional from 83918 -> 83917", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83918, + "TargetID": 83917, + "Directional": true + } + ] + }, + { + "ID": 17676, + "SourceStructureID": 83921, + "TargetStructureID": 83916, + "Label": "83921-83916 via Conventional from 83923 -> 83924", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83923, + "TargetID": 83924, + "Directional": true + } + ] + }, + { + "ID": 17677, + "SourceStructureID": 83925, + "TargetStructureID": 6117, + "Label": "83925-6117 via Conventional from 83929 -> 83930", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83929, + "TargetID": 83930, + "Directional": true + } + ] + }, + { + "ID": 17678, + "SourceStructureID": 83931, + "TargetStructureID": 6117, + "Label": "83931-6117 via Conventional from 83932 -> 83933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83932, + "TargetID": 83933, + "Directional": true + } + ] + }, + { + "ID": 17679, + "SourceStructureID": 83941, + "TargetStructureID": 6117, + "Label": "83941-6117 via Conventional from 83942 -> 83943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83942, + "TargetID": 83943, + "Directional": true + } + ] + }, + { + "ID": 17680, + "SourceStructureID": 83949, + "TargetStructureID": 20136, + "Label": "83949-20136 via Conventional from 109035 -> 20144", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109035, + "TargetID": 20144, + "Directional": true + } + ] + }, + { + "ID": 17681, + "SourceStructureID": 83954, + "TargetStructureID": 6117, + "Label": "83954-6117 via Conventional from 83959 -> 83960", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83959, + "TargetID": 83960, + "Directional": true + } + ] + }, + { + "ID": 17682, + "SourceStructureID": 83954, + "TargetStructureID": 20136, + "Label": "83954-20136 via Conventional from 109111 -> 46007", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109111, + "TargetID": 46007, + "Directional": true + } + ] + }, + { + "ID": 17683, + "SourceStructureID": 83965, + "TargetStructureID": 6117, + "Label": "83965-6117 via Conventional from 83966 -> 83967", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83966, + "TargetID": 83967, + "Directional": true + } + ] + }, + { + "ID": 17684, + "SourceStructureID": 83975, + "TargetStructureID": 6117, + "Label": "83975-6117 via Conventional from 84179 -> 84180", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84179, + "TargetID": 84180, + "Directional": true + } + ] + }, + { + "ID": 17685, + "SourceStructureID": 83978, + "TargetStructureID": 6117, + "Label": "83978-6117 via Conventional from 83979 -> 83980", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83979, + "TargetID": 83980, + "Directional": true + } + ] + }, + { + "ID": 17686, + "SourceStructureID": 83981, + "TargetStructureID": 6117, + "Label": "83981-6117 via Conventional from 83982 -> 30872", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 83982, + "TargetID": 30872, + "Directional": true + } + ] + }, + { + "ID": 17687, + "SourceStructureID": 83985, + "TargetStructureID": 6117, + "Label": "83985-6117 via Conventional from 84140 -> 84141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84140, + "TargetID": 84141, + "Directional": true + } + ] + }, + { + "ID": 17688, + "SourceStructureID": 83999, + "TargetStructureID": 84001, + "Label": "83999-84001 via Conventional from 84000 -> 84002", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84000, + "TargetID": 84002, + "Directional": true + } + ] + }, + { + "ID": 17689, + "SourceStructureID": 84008, + "TargetStructureID": 82677, + "Label": "84008-82677 via Conventional from 84009 -> 84010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84009, + "TargetID": 84010, + "Directional": true + } + ] + }, + { + "ID": 17690, + "SourceStructureID": 84018, + "TargetStructureID": 82677, + "Label": "84018-82677 via Conventional from 84019 -> 84017", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84019, + "TargetID": 84017, + "Directional": true + } + ] + }, + { + "ID": 17691, + "SourceStructureID": 84029, + "TargetStructureID": 5534, + "Label": "84029-5534 via Conventional from 84030 -> 34624", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84030, + "TargetID": 34624, + "Directional": true + } + ] + }, + { + "ID": 17692, + "SourceStructureID": 84038, + "TargetStructureID": 82677, + "Label": "84038-82677 via Conventional from 84039 -> 84040", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84039, + "TargetID": 84040, + "Directional": true + } + ] + }, + { + "ID": 17693, + "SourceStructureID": 84041, + "TargetStructureID": 82677, + "Label": "84041-82677 via Conventional from 84044 -> 84045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84044, + "TargetID": 84045, + "Directional": true + } + ] + }, + { + "ID": 17694, + "SourceStructureID": 84058, + "TargetStructureID": 82677, + "Label": "84058-82677 via Conventional from 84059 -> 84057", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84059, + "TargetID": 84057, + "Directional": true + } + ] + }, + { + "ID": 17695, + "SourceStructureID": 84063, + "TargetStructureID": 84061, + "Label": "84063-84061 via Conventional from 84064 -> 84062", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84064, + "TargetID": 84062, + "Directional": true + } + ] + }, + { + "ID": 17696, + "SourceStructureID": 84063, + "TargetStructureID": 84077, + "Label": "84063-84077 via Conventional from 84065 -> 84080, 84066 -> 84081", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84065, + "TargetID": 84080, + "Directional": true + }, + { + "SourceID": 84066, + "TargetID": 84081, + "Directional": true + } + ] + }, + { + "ID": 17697, + "SourceStructureID": 84073, + "TargetStructureID": 82677, + "Label": "84073-82677 via Conventional from 84075 -> 84074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84075, + "TargetID": 84074, + "Directional": true + } + ] + }, + { + "ID": 17698, + "SourceStructureID": 84077, + "TargetStructureID": 82677, + "Label": "84077-82677 via Conventional from 84079 -> 84078", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84079, + "TargetID": 84078, + "Directional": true + } + ] + }, + { + "ID": 17699, + "SourceStructureID": 84082, + "TargetStructureID": 84083, + "Label": "84082-84083 via Conventional from 84085 -> 84086", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84085, + "TargetID": 84086, + "Directional": true + } + ] + }, + { + "ID": 17700, + "SourceStructureID": 84083, + "TargetStructureID": 82677, + "Label": "84083-82677 via Conventional from 84084 -> 84087", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84084, + "TargetID": 84087, + "Directional": true + } + ] + }, + { + "ID": 17701, + "SourceStructureID": 84088, + "TargetStructureID": 84090, + "Label": "84088-84090 via Conventional from 84089 -> 84091", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84089, + "TargetID": 84091, + "Directional": true + } + ] + }, + { + "ID": 17702, + "SourceStructureID": 84106, + "TargetStructureID": 82677, + "Label": "84106-82677 via Conventional from 84107 -> 84105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84107, + "TargetID": 84105, + "Directional": true + } + ] + }, + { + "ID": 17703, + "SourceStructureID": 84115, + "TargetStructureID": 82677, + "Label": "84115-82677 via Conventional from 84116 -> 84117", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84116, + "TargetID": 84117, + "Directional": true + } + ] + }, + { + "ID": 17704, + "SourceStructureID": 84118, + "TargetStructureID": 450, + "Label": "84118-450 via Conventional from 123599 -> 123600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123599, + "TargetID": 123600, + "Directional": true + } + ] + }, + { + "ID": 17705, + "SourceStructureID": 84118, + "TargetStructureID": 5468, + "Label": "84118-5468 via Conventional from 123665 -> 48273", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123665, + "TargetID": 48273, + "Directional": true + } + ] + }, + { + "ID": 17706, + "SourceStructureID": 84118, + "TargetStructureID": 5534, + "Label": "84118-5534 via Conventional from 123630 -> 123631, 123638 -> 123637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123630, + "TargetID": 123631, + "Directional": true + }, + { + "SourceID": 123638, + "TargetID": 123637, + "Directional": true + } + ] + }, + { + "ID": 17707, + "SourceStructureID": 84118, + "TargetStructureID": 5535, + "Label": "84118-5535 via Conventional from 123624 -> 42269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123624, + "TargetID": 42269, + "Directional": true + } + ] + }, + { + "ID": 17708, + "SourceStructureID": 84118, + "TargetStructureID": 5601, + "Label": "84118-5601 via Conventional from 123652 -> 57495", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123652, + "TargetID": 57495, + "Directional": true + } + ] + }, + { + "ID": 17709, + "SourceStructureID": 84118, + "TargetStructureID": 5637, + "Label": "84118-5637 via Conventional from 123633 -> 123634, 123640 -> 123641", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123633, + "TargetID": 123634, + "Directional": true + }, + { + "SourceID": 123640, + "TargetID": 123641, + "Directional": true + } + ] + }, + { + "ID": 17710, + "SourceStructureID": 84118, + "TargetStructureID": 6127, + "Label": "84118-6127 via Conventional from 123608 -> 123609, 123612 -> 123613", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123608, + "TargetID": 123609, + "Directional": true + }, + { + "SourceID": 123612, + "TargetID": 123613, + "Directional": true + } + ] + }, + { + "ID": 17711, + "SourceStructureID": 84118, + "TargetStructureID": 6165, + "Label": "84118-6165 via Conventional from 123602 -> 123603", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123602, + "TargetID": 123603, + "Directional": true + } + ] + }, + { + "ID": 17712, + "SourceStructureID": 84118, + "TargetStructureID": 8754, + "Label": "84118-8754 via Conventional from 123653 -> 123654, 123657 -> 123658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123653, + "TargetID": 123654, + "Directional": true + }, + { + "SourceID": 123657, + "TargetID": 123658, + "Directional": true + } + ] + }, + { + "ID": 17713, + "SourceStructureID": 84118, + "TargetStructureID": 15976, + "Label": "84118-15976 via Conventional from 123660 -> 123661, 123663 -> 123662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123660, + "TargetID": 123661, + "Directional": true + }, + { + "SourceID": 123663, + "TargetID": 123662, + "Directional": true + } + ] + }, + { + "ID": 17714, + "SourceStructureID": 84118, + "TargetStructureID": 32926, + "Label": "84118-32926 via Conventional from 123626 -> 123627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123626, + "TargetID": 123627, + "Directional": true + } + ] + }, + { + "ID": 17715, + "SourceStructureID": 84118, + "TargetStructureID": 43716, + "Label": "84118-43716 via Conventional from 123598 -> 123596, 123644 -> 123645", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123598, + "TargetID": 123596, + "Directional": true + }, + { + "SourceID": 123644, + "TargetID": 123645, + "Directional": true + } + ] + }, + { + "ID": 17716, + "SourceStructureID": 84118, + "TargetStructureID": 82677, + "Label": "84118-82677 via Conventional from 84119 -> 84120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84119, + "TargetID": 84120, + "Directional": true + } + ] + }, + { + "ID": 17717, + "SourceStructureID": 84121, + "TargetStructureID": 82677, + "Label": "84121-82677 via Conventional from 84122 -> 84123", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84122, + "TargetID": 84123, + "Directional": true + } + ] + }, + { + "ID": 17718, + "SourceStructureID": 84142, + "TargetStructureID": 6117, + "Label": "84142-6117 via Conventional from 84146 -> 84145", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84146, + "TargetID": 84145, + "Directional": true + } + ] + }, + { + "ID": 17719, + "SourceStructureID": 84142, + "TargetStructureID": 84136, + "Label": "84142-84136 via Conventional from 84143 -> 84144", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84143, + "TargetID": 84144, + "Directional": true + } + ] + }, + { + "ID": 17720, + "SourceStructureID": 84162, + "TargetStructureID": 7024, + "Label": "84162-7024 via Conventional from 135499 -> 135498", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135499, + "TargetID": 135498, + "Directional": true + } + ] + }, + { + "ID": 17721, + "SourceStructureID": 84181, + "TargetStructureID": 6117, + "Label": "84181-6117 via Conventional from 84182 -> 22387", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84182, + "TargetID": 22387, + "Directional": true + } + ] + }, + { + "ID": 17722, + "SourceStructureID": 84184, + "TargetStructureID": 6117, + "Label": "84184-6117 via Conventional from 84185 -> 22394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84185, + "TargetID": 22394, + "Directional": true + } + ] + }, + { + "ID": 17723, + "SourceStructureID": 84193, + "TargetStructureID": 5279, + "Label": "84193-5279 via Conventional from 97345 -> 28314", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97345, + "TargetID": 28314, + "Directional": true + } + ] + }, + { + "ID": 17724, + "SourceStructureID": 84193, + "TargetStructureID": 6117, + "Label": "84193-6117 via Conventional from 84194 -> 22388", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84194, + "TargetID": 22388, + "Directional": true + } + ] + }, + { + "ID": 17725, + "SourceStructureID": 84193, + "TargetStructureID": 20136, + "Label": "84193-20136 via Conventional from 84195 -> 46010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84195, + "TargetID": 46010, + "Directional": true + } + ] + }, + { + "ID": 17726, + "SourceStructureID": 84201, + "TargetStructureID": 5279, + "Label": "84201-5279 via Conventional from 97333 -> 6356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97333, + "TargetID": 6356, + "Directional": true + } + ] + }, + { + "ID": 17727, + "SourceStructureID": 84207, + "TargetStructureID": 6117, + "Label": "84207-6117 via Conventional from 84208 -> 30877", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84208, + "TargetID": 30877, + "Directional": true + } + ] + }, + { + "ID": 17728, + "SourceStructureID": 84209, + "TargetStructureID": 6117, + "Label": "84209-6117 via Conventional from 84227 -> 30878", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84227, + "TargetID": 30878, + "Directional": true + } + ] + }, + { + "ID": 17729, + "SourceStructureID": 84211, + "TargetStructureID": 6117, + "Label": "84211-6117 via Conventional from 84212 -> 30876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84212, + "TargetID": 30876, + "Directional": true + } + ] + }, + { + "ID": 17730, + "SourceStructureID": 84215, + "TargetStructureID": 6117, + "Label": "84215-6117 via Conventional from 84216 -> 30874", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84216, + "TargetID": 30874, + "Directional": true + } + ] + }, + { + "ID": 17731, + "SourceStructureID": 84218, + "TargetStructureID": 6117, + "Label": "84218-6117 via Conventional from 84219 -> 84220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84219, + "TargetID": 84220, + "Directional": true + } + ] + }, + { + "ID": 17732, + "SourceStructureID": 84224, + "TargetStructureID": 6117, + "Label": "84224-6117 via Conventional from 84225 -> 84226", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84225, + "TargetID": 84226, + "Directional": true + } + ] + }, + { + "ID": 17733, + "SourceStructureID": 84232, + "TargetStructureID": 6117, + "Label": "84232-6117 via Conventional from 84233 -> 30882", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84233, + "TargetID": 30882, + "Directional": true + } + ] + }, + { + "ID": 17734, + "SourceStructureID": 84240, + "TargetStructureID": 6117, + "Label": "84240-6117 via Conventional from 84248 -> 84239", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84248, + "TargetID": 84239, + "Directional": true + } + ] + }, + { + "ID": 17735, + "SourceStructureID": 84254, + "TargetStructureID": 5284, + "Label": "84254-5284 via Conventional from 113461 -> 113459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113461, + "TargetID": 113459, + "Directional": true + } + ] + }, + { + "ID": 17736, + "SourceStructureID": 84254, + "TargetStructureID": 6117, + "Label": "84254-6117 via Conventional from 84255 -> 51532", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84255, + "TargetID": 51532, + "Directional": true + } + ] + }, + { + "ID": 17737, + "SourceStructureID": 84287, + "TargetStructureID": 74907, + "Label": "84287-74907 via Conventional from 84288 -> 84289", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84288, + "TargetID": 84289, + "Directional": true + } + ] + }, + { + "ID": 17738, + "SourceStructureID": 84290, + "TargetStructureID": 74907, + "Label": "84290-74907 via Conventional from 84291 -> 84292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84291, + "TargetID": 84292, + "Directional": true + } + ] + }, + { + "ID": 17739, + "SourceStructureID": 84298, + "TargetStructureID": 74907, + "Label": "84298-74907 via Conventional from 84299 -> 84300", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84299, + "TargetID": 84300, + "Directional": true + } + ] + }, + { + "ID": 17740, + "SourceStructureID": 84304, + "TargetStructureID": 74907, + "Label": "84304-74907 via Conventional from 84305 -> 84306", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84305, + "TargetID": 84306, + "Directional": true + } + ] + }, + { + "ID": 17741, + "SourceStructureID": 84337, + "TargetStructureID": 6117, + "Label": "84337-6117 via Conventional from 84339 -> 84340", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84339, + "TargetID": 84340, + "Directional": true + } + ] + }, + { + "ID": 17742, + "SourceStructureID": 84347, + "TargetStructureID": 84342, + "Label": "84347-84342 via Conventional from 84348 -> 84346", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84348, + "TargetID": 84346, + "Directional": true + } + ] + }, + { + "ID": 17743, + "SourceStructureID": 84349, + "TargetStructureID": 6117, + "Label": "84349-6117 via Conventional from 84361 -> 84362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84361, + "TargetID": 84362, + "Directional": true + } + ] + }, + { + "ID": 17744, + "SourceStructureID": 84349, + "TargetStructureID": 84337, + "Label": "84349-84337 via Conventional from 84356 -> 84357", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84356, + "TargetID": 84357, + "Directional": true + } + ] + }, + { + "ID": 17745, + "SourceStructureID": 84369, + "TargetStructureID": 66323, + "Label": "84369-66323 via Conventional from 84370 -> 84368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84370, + "TargetID": 84368, + "Directional": true + } + ] + }, + { + "ID": 17746, + "SourceStructureID": 84374, + "TargetStructureID": 6117, + "Label": "84374-6117 via Conventional from 84376 -> 84375", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84376, + "TargetID": 84375, + "Directional": true + } + ] + }, + { + "ID": 17747, + "SourceStructureID": 84407, + "TargetStructureID": 73004, + "Label": "84407-73004 via Conventional from 84410 -> 84411", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84410, + "TargetID": 84411, + "Directional": true + } + ] + }, + { + "ID": 17748, + "SourceStructureID": 84418, + "TargetStructureID": 7594, + "Label": "84418-7594 via Conventional from 84420 -> 19281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84420, + "TargetID": 19281, + "Directional": true + } + ] + }, + { + "ID": 17749, + "SourceStructureID": 84457, + "TargetStructureID": 5282, + "Label": "84457-5282 via Conventional from 84458 -> 84462", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84458, + "TargetID": 84462, + "Directional": true + } + ] + }, + { + "ID": 17750, + "SourceStructureID": 84519, + "TargetStructureID": 74907, + "Label": "84519-74907 via Conventional from 84523 -> 84524", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84523, + "TargetID": 84524, + "Directional": true + } + ] + }, + { + "ID": 17751, + "SourceStructureID": 84561, + "TargetStructureID": 593, + "Label": "84561-593 via Conventional from 84563 -> 84562", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84563, + "TargetID": 84562, + "Directional": true + } + ] + }, + { + "ID": 17752, + "SourceStructureID": 84572, + "TargetStructureID": 10574, + "Label": "84572-10574 via Ribbon Synapse from 84573 -> 84569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 84573, + "TargetID": 84569, + "Directional": true + } + ] + }, + { + "ID": 17753, + "SourceStructureID": 84600, + "TargetStructureID": 74907, + "Label": "84600-74907 via Conventional from 84606 -> 84607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84606, + "TargetID": 84607, + "Directional": true + } + ] + }, + { + "ID": 17754, + "SourceStructureID": 84621, + "TargetStructureID": 84623, + "Label": "84621-84623 via Conventional from 84622 -> 84625", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84622, + "TargetID": 84625, + "Directional": true + } + ] + }, + { + "ID": 17755, + "SourceStructureID": 84639, + "TargetStructureID": 5283, + "Label": "84639-5283 via Conventional from 123767 -> 28006", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123767, + "TargetID": 28006, + "Directional": true + } + ] + }, + { + "ID": 17756, + "SourceStructureID": 84639, + "TargetStructureID": 5650, + "Label": "84639-5650 via Conventional from 84644 -> 23493", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84644, + "TargetID": 23493, + "Directional": true + } + ] + }, + { + "ID": 17757, + "SourceStructureID": 84639, + "TargetStructureID": 6117, + "Label": "84639-6117 via Conventional from 84640 -> 84641", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84640, + "TargetID": 84641, + "Directional": true + } + ] + }, + { + "ID": 17758, + "SourceStructureID": 84642, + "TargetStructureID": 6117, + "Label": "84642-6117 via Conventional from 84645 -> 84214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84645, + "TargetID": 84214, + "Directional": true + } + ] + }, + { + "ID": 17759, + "SourceStructureID": 84647, + "TargetStructureID": 6117, + "Label": "84647-6117 via Conventional from 84648 -> 84649", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84648, + "TargetID": 84649, + "Directional": true + } + ] + }, + { + "ID": 17760, + "SourceStructureID": 84670, + "TargetStructureID": 43507, + "Label": "84670-43507 via Conventional from 84672 -> 43519", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84672, + "TargetID": 43519, + "Directional": true + } + ] + }, + { + "ID": 17761, + "SourceStructureID": 84696, + "TargetStructureID": 11092, + "Label": "84696-11092 via Conventional from 84697 -> 109972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84697, + "TargetID": 109972, + "Directional": true + } + ] + }, + { + "ID": 17762, + "SourceStructureID": 84740, + "TargetStructureID": 74907, + "Label": "84740-74907 via Conventional from 84741 -> 84776", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84741, + "TargetID": 84776, + "Directional": true + } + ] + }, + { + "ID": 17763, + "SourceStructureID": 84745, + "TargetStructureID": 5599, + "Label": "84745-5599 via Conventional from 84746 -> 84744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84746, + "TargetID": 84744, + "Directional": true + } + ] + }, + { + "ID": 17764, + "SourceStructureID": 84759, + "TargetStructureID": 70540, + "Label": "84759-70540 via Conventional from 84760 -> 84762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84760, + "TargetID": 84762, + "Directional": true + } + ] + }, + { + "ID": 17765, + "SourceStructureID": 84773, + "TargetStructureID": 84771, + "Label": "84773-84771 via Conventional from 84774 -> 84775", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84774, + "TargetID": 84775, + "Directional": true + } + ] + }, + { + "ID": 17766, + "SourceStructureID": 84780, + "TargetStructureID": 166, + "Label": "84780-166 via Conventional from 84781 -> 84779", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84781, + "TargetID": 84779, + "Directional": true + } + ] + }, + { + "ID": 17767, + "SourceStructureID": 84790, + "TargetStructureID": 32035, + "Label": "84790-32035 via Conventional from 84857 -> 32042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84857, + "TargetID": 32042, + "Directional": true + } + ] + }, + { + "ID": 17768, + "SourceStructureID": 84822, + "TargetStructureID": 7859, + "Label": "84822-7859 via Conventional from 84823 -> 84821", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84823, + "TargetID": 84821, + "Directional": true + } + ] + }, + { + "ID": 17769, + "SourceStructureID": 84830, + "TargetStructureID": 5279, + "Label": "84830-5279 via Conventional from 84843 -> 25846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84843, + "TargetID": 25846, + "Directional": true + } + ] + }, + { + "ID": 17770, + "SourceStructureID": 84830, + "TargetStructureID": 6997, + "Label": "84830-6997 via Conventional from 84881 -> 21959, 84890 -> 21928, 84893 -> 84892", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84881, + "TargetID": 21959, + "Directional": true + }, + { + "SourceID": 84890, + "TargetID": 21928, + "Directional": true + }, + { + "SourceID": 84893, + "TargetID": 84892, + "Directional": true + } + ] + }, + { + "ID": 17771, + "SourceStructureID": 84830, + "TargetStructureID": 11401, + "Label": "84830-11401 via Conventional from 84896 -> 84897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84896, + "TargetID": 84897, + "Directional": true + } + ] + }, + { + "ID": 17772, + "SourceStructureID": 84830, + "TargetStructureID": 84876, + "Label": "84830-84876 via Conventional from 84875 -> 84877", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84875, + "TargetID": 84877, + "Directional": true + } + ] + }, + { + "ID": 17773, + "SourceStructureID": 84830, + "TargetStructureID": 84879, + "Label": "84830-84879 via Conventional from 84878 -> 84880", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84878, + "TargetID": 84880, + "Directional": true + } + ] + }, + { + "ID": 17774, + "SourceStructureID": 84830, + "TargetStructureID": 85455, + "Label": "84830-85455 via Conventional from 85457 -> 85456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85457, + "TargetID": 85456, + "Directional": true + } + ] + }, + { + "ID": 17775, + "SourceStructureID": 84830, + "TargetStructureID": 85463, + "Label": "84830-85463 via Conventional from 85462 -> 85464", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85462, + "TargetID": 85464, + "Directional": true + } + ] + }, + { + "ID": 17776, + "SourceStructureID": 84830, + "TargetStructureID": 85473, + "Label": "84830-85473 via Conventional from 85474 -> 85477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85474, + "TargetID": 85477, + "Directional": true + } + ] + }, + { + "ID": 17777, + "SourceStructureID": 84858, + "TargetStructureID": 142, + "Label": "84858-142 via Conventional from 84870 -> 49772", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84870, + "TargetID": 49772, + "Directional": true + } + ] + }, + { + "ID": 17778, + "SourceStructureID": 84876, + "TargetStructureID": 26079, + "Label": "84876-26079 via Conventional from 102917 -> 102915", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102917, + "TargetID": 102915, + "Directional": true + } + ] + }, + { + "ID": 17779, + "SourceStructureID": 84886, + "TargetStructureID": 84830, + "Label": "84886-84830 via Conventional from 84887 -> 84885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84887, + "TargetID": 84885, + "Directional": true + } + ] + }, + { + "ID": 17780, + "SourceStructureID": 84909, + "TargetStructureID": 84903, + "Label": "84909-84903 via Conventional from 84911 -> 84913", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84911, + "TargetID": 84913, + "Directional": true + } + ] + }, + { + "ID": 17781, + "SourceStructureID": 84914, + "TargetStructureID": 84909, + "Label": "84914-84909 via Conventional from 84915 -> 84912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84915, + "TargetID": 84912, + "Directional": true + } + ] + }, + { + "ID": 17782, + "SourceStructureID": 84919, + "TargetStructureID": 84830, + "Label": "84919-84830 via Conventional from 84921 -> 84920", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84921, + "TargetID": 84920, + "Directional": true + } + ] + }, + { + "ID": 17783, + "SourceStructureID": 84926, + "TargetStructureID": 84830, + "Label": "84926-84830 via BC Conventional Synapse from 85471 -> 84929", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85471, + "TargetID": 84929, + "Directional": true + } + ] + }, + { + "ID": 17784, + "SourceStructureID": 84942, + "TargetStructureID": 5278, + "Label": "84942-5278 via Conventional from 93467 -> 50309", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93467, + "TargetID": 50309, + "Directional": true + } + ] + }, + { + "ID": 17785, + "SourceStructureID": 84942, + "TargetStructureID": 6117, + "Label": "84942-6117 via Conventional from 84943 -> 84944", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84943, + "TargetID": 84944, + "Directional": true + } + ] + }, + { + "ID": 17786, + "SourceStructureID": 84942, + "TargetStructureID": 84946, + "Label": "84942-84946 via Conventional from 84945 -> 84947", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84945, + "TargetID": 84947, + "Directional": true + } + ] + }, + { + "ID": 17787, + "SourceStructureID": 84950, + "TargetStructureID": 6117, + "Label": "84950-6117 via Conventional from 84951 -> 84953", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84951, + "TargetID": 84953, + "Directional": true + } + ] + }, + { + "ID": 17788, + "SourceStructureID": 84965, + "TargetStructureID": 142, + "Label": "84965-142 via Conventional from 84998 -> 30709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84998, + "TargetID": 30709, + "Directional": true + } + ] + }, + { + "ID": 17789, + "SourceStructureID": 84965, + "TargetStructureID": 84957, + "Label": "84965-84957 via Conventional from 84968 -> 84969", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84968, + "TargetID": 84969, + "Directional": true + } + ] + }, + { + "ID": 17790, + "SourceStructureID": 84980, + "TargetStructureID": 142, + "Label": "84980-142 via Conventional from 84981 -> 49771", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84981, + "TargetID": 49771, + "Directional": true + } + ] + }, + { + "ID": 17791, + "SourceStructureID": 84980, + "TargetStructureID": 6117, + "Label": "84980-6117 via Conventional from 84993 -> 84994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84993, + "TargetID": 84994, + "Directional": true + } + ] + }, + { + "ID": 17792, + "SourceStructureID": 84983, + "TargetStructureID": 6117, + "Label": "84983-6117 via Conventional from 84984 -> 30894, 84985 -> 84986", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 84984, + "TargetID": 30894, + "Directional": true + }, + { + "SourceID": 84985, + "TargetID": 84986, + "Directional": true + } + ] + }, + { + "ID": 17793, + "SourceStructureID": 85004, + "TargetStructureID": 142, + "Label": "85004-142 via Conventional from 85007 -> 85008", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85007, + "TargetID": 85008, + "Directional": true + } + ] + }, + { + "ID": 17794, + "SourceStructureID": 85004, + "TargetStructureID": 6117, + "Label": "85004-6117 via Conventional from 85005 -> 85006", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85005, + "TargetID": 85006, + "Directional": true + } + ] + }, + { + "ID": 17795, + "SourceStructureID": 85015, + "TargetStructureID": 6117, + "Label": "85015-6117 via Conventional from 85016 -> 85017", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85016, + "TargetID": 85017, + "Directional": true + } + ] + }, + { + "ID": 17796, + "SourceStructureID": 85062, + "TargetStructureID": 59333, + "Label": "85062-59333 via Ribbon Synapse from 85065 -> 85061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85065, + "TargetID": 85061, + "Directional": true + } + ] + }, + { + "ID": 17797, + "SourceStructureID": 85068, + "TargetStructureID": 59333, + "Label": "85068-59333 via Conventional from 85069 -> 85067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85069, + "TargetID": 85067, + "Directional": true + } + ] + }, + { + "ID": 17798, + "SourceStructureID": 85072, + "TargetStructureID": 85068, + "Label": "85072-85068 via Conventional from 85074 -> 85075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85074, + "TargetID": 85075, + "Directional": true + } + ] + }, + { + "ID": 17799, + "SourceStructureID": 85082, + "TargetStructureID": 59333, + "Label": "85082-59333 via Conventional from 85083 -> 85084", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85083, + "TargetID": 85084, + "Directional": true + } + ] + }, + { + "ID": 17800, + "SourceStructureID": 85088, + "TargetStructureID": 59333, + "Label": "85088-59333 via Ribbon Synapse from 85090 -> 85087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85090, + "TargetID": 85087, + "Directional": true + } + ] + }, + { + "ID": 17801, + "SourceStructureID": 85094, + "TargetStructureID": 5405, + "Label": "85094-5405 via BC Conventional Synapse from 85139 -> 85140", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85139, + "TargetID": 85140, + "Directional": true + } + ] + }, + { + "ID": 17802, + "SourceStructureID": 85094, + "TargetStructureID": 59333, + "Label": "85094-59333 via Ribbon Synapse from 85107 -> 85108", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85107, + "TargetID": 85108, + "Directional": true + } + ] + }, + { + "ID": 17803, + "SourceStructureID": 85094, + "TargetStructureID": 85096, + "Label": "85094-85096 via Ribbon Synapse from 85095 -> 85103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85095, + "TargetID": 85103, + "Directional": true + } + ] + }, + { + "ID": 17804, + "SourceStructureID": 85094, + "TargetStructureID": 85097, + "Label": "85094-85097 via Ribbon Synapse from 85095 -> 85102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85095, + "TargetID": 85102, + "Directional": true + } + ] + }, + { + "ID": 17805, + "SourceStructureID": 85094, + "TargetStructureID": 85116, + "Label": "85094-85116 via Ribbon Synapse from 85115 -> 85117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85115, + "TargetID": 85117, + "Directional": true + } + ] + }, + { + "ID": 17806, + "SourceStructureID": 85100, + "TargetStructureID": 85096, + "Label": "85100-85096 via Conventional from 85101 -> 85098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85101, + "TargetID": 85098, + "Directional": true + } + ] + }, + { + "ID": 17807, + "SourceStructureID": 85104, + "TargetStructureID": 85094, + "Label": "85104-85094 via Conventional from 85105 -> 85106", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85105, + "TargetID": 85106, + "Directional": true + } + ] + }, + { + "ID": 17808, + "SourceStructureID": 85119, + "TargetStructureID": 5405, + "Label": "85119-5405 via Ribbon Synapse from 85132 -> 85138, 85133 -> 85134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85132, + "TargetID": 85138, + "Directional": true + }, + { + "SourceID": 85133, + "TargetID": 85134, + "Directional": true + } + ] + }, + { + "ID": 17809, + "SourceStructureID": 85119, + "TargetStructureID": 85121, + "Label": "85119-85121 via Ribbon Synapse from 85132 -> 85137", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85132, + "TargetID": 85137, + "Directional": true + } + ] + }, + { + "ID": 17810, + "SourceStructureID": 85119, + "TargetStructureID": 85124, + "Label": "85119-85124 via Ribbon Synapse from 85123 -> 85125", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85123, + "TargetID": 85125, + "Directional": true + } + ] + }, + { + "ID": 17811, + "SourceStructureID": 85128, + "TargetStructureID": 85121, + "Label": "85128-85121 via Conventional from 85129 -> 85127", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85129, + "TargetID": 85127, + "Directional": true + } + ] + }, + { + "ID": 17812, + "SourceStructureID": 85141, + "TargetStructureID": 85141, + "Label": "85141-85141 via Conventional from 85181 -> 85179", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85181, + "TargetID": 85179, + "Directional": true + } + ] + }, + { + "ID": 17813, + "SourceStructureID": 85141, + "TargetStructureID": 85144, + "Label": "85141-85144 via Ribbon Synapse from 85143 -> 85145", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85143, + "TargetID": 85145, + "Directional": true + } + ] + }, + { + "ID": 17814, + "SourceStructureID": 85141, + "TargetStructureID": 85149, + "Label": "85141-85149 via Ribbon Synapse from 85148 -> 85154, 85150 -> 85151", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85148, + "TargetID": 85154, + "Directional": true + }, + { + "SourceID": 85150, + "TargetID": 85151, + "Directional": true + } + ] + }, + { + "ID": 17815, + "SourceStructureID": 85141, + "TargetStructureID": 85170, + "Label": "85141-85170 via BC Conventional Synapse from 85169 -> 85171", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85169, + "TargetID": 85171, + "Directional": true + } + ] + }, + { + "ID": 17816, + "SourceStructureID": 85141, + "TargetStructureID": 85184, + "Label": "85141-85184 via Ribbon Synapse from 85182 -> 85191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85182, + "TargetID": 85191, + "Directional": true + } + ] + }, + { + "ID": 17817, + "SourceStructureID": 85141, + "TargetStructureID": 85185, + "Label": "85141-85185 via Ribbon Synapse from 85182 -> 85192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85182, + "TargetID": 85192, + "Directional": true + } + ] + }, + { + "ID": 17818, + "SourceStructureID": 85141, + "TargetStructureID": 85196, + "Label": "85141-85196 via Ribbon Synapse from 85195 -> 85203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85195, + "TargetID": 85203, + "Directional": true + } + ] + }, + { + "ID": 17819, + "SourceStructureID": 85141, + "TargetStructureID": 85197, + "Label": "85141-85197 via Ribbon Synapse from 85195 -> 85204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85195, + "TargetID": 85204, + "Directional": true + } + ] + }, + { + "ID": 17820, + "SourceStructureID": 85141, + "TargetStructureID": 85206, + "Label": "85141-85206 via BC Conventional Synapse from 85205 -> 85207", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85205, + "TargetID": 85207, + "Directional": true + } + ] + }, + { + "ID": 17821, + "SourceStructureID": 85141, + "TargetStructureID": 85214, + "Label": "85141-85214 via Ribbon Synapse from 85213 -> 85215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85213, + "TargetID": 85215, + "Directional": true + } + ] + }, + { + "ID": 17822, + "SourceStructureID": 85141, + "TargetStructureID": 85216, + "Label": "85141-85216 via Ribbon Synapse from 85213 -> 85217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85213, + "TargetID": 85217, + "Directional": true + } + ] + }, + { + "ID": 17823, + "SourceStructureID": 85141, + "TargetStructureID": 85233, + "Label": "85141-85233 via Ribbon Synapse from 85211 -> 85234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85211, + "TargetID": 85234, + "Directional": true + } + ] + }, + { + "ID": 17824, + "SourceStructureID": 85141, + "TargetStructureID": 85250, + "Label": "85141-85250 via BC Conventional Synapse from 85247 -> 85251", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85247, + "TargetID": 85251, + "Directional": true + } + ] + }, + { + "ID": 17825, + "SourceStructureID": 85141, + "TargetStructureID": 85258, + "Label": "85141-85258 via Ribbon Synapse from 85257 -> 85263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85257, + "TargetID": 85263, + "Directional": true + } + ] + }, + { + "ID": 17826, + "SourceStructureID": 85141, + "TargetStructureID": 85259, + "Label": "85141-85259 via Ribbon Synapse from 85257 -> 85261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85257, + "TargetID": 85261, + "Directional": true + } + ] + }, + { + "ID": 17827, + "SourceStructureID": 85141, + "TargetStructureID": 85289, + "Label": "85141-85289 via Ribbon Synapse from 85288 -> 85290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85288, + "TargetID": 85290, + "Directional": true + } + ] + }, + { + "ID": 17828, + "SourceStructureID": 85141, + "TargetStructureID": 85333, + "Label": "85141-85333 via Ribbon Synapse from 85332 -> 85335", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85332, + "TargetID": 85335, + "Directional": true + } + ] + }, + { + "ID": 17829, + "SourceStructureID": 85141, + "TargetStructureID": 85334, + "Label": "85141-85334 via Ribbon Synapse from 85332 -> 85336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85332, + "TargetID": 85336, + "Directional": true + } + ] + }, + { + "ID": 17830, + "SourceStructureID": 85141, + "TargetStructureID": 85346, + "Label": "85141-85346 via Ribbon Synapse from 85278 -> 85347", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85278, + "TargetID": 85347, + "Directional": true + } + ] + }, + { + "ID": 17831, + "SourceStructureID": 85141, + "TargetStructureID": 85357, + "Label": "85141-85357 via Ribbon Synapse from 85294 -> 85358", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85294, + "TargetID": 85358, + "Directional": true + } + ] + }, + { + "ID": 17832, + "SourceStructureID": 85141, + "TargetStructureID": 85372, + "Label": "85141-85372 via Ribbon Synapse from 85371 -> 85373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85371, + "TargetID": 85373, + "Directional": true + } + ] + }, + { + "ID": 17833, + "SourceStructureID": 85141, + "TargetStructureID": 85388, + "Label": "85141-85388 via Ribbon Synapse from 85246 -> 85389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85246, + "TargetID": 85389, + "Directional": true + } + ] + }, + { + "ID": 17834, + "SourceStructureID": 85141, + "TargetStructureID": 85391, + "Label": "85141-85391 via Ribbon Synapse from 85245 -> 85392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85245, + "TargetID": 85392, + "Directional": true + } + ] + }, + { + "ID": 17835, + "SourceStructureID": 85144, + "TargetStructureID": 85141, + "Label": "85144-85141 via Conventional from 85146 -> 85147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85146, + "TargetID": 85147, + "Directional": true + } + ] + }, + { + "ID": 17836, + "SourceStructureID": 85149, + "TargetStructureID": 85141, + "Label": "85149-85141 via Conventional from 85156 -> 85155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85156, + "TargetID": 85155, + "Directional": true + } + ] + }, + { + "ID": 17837, + "SourceStructureID": 85172, + "TargetStructureID": 85141, + "Label": "85172-85141 via Conventional from 85175 -> 85176", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85175, + "TargetID": 85176, + "Directional": true + } + ] + }, + { + "ID": 17838, + "SourceStructureID": 85184, + "TargetStructureID": 85141, + "Label": "85184-85141 via Conventional from 85188 -> 85183", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85188, + "TargetID": 85183, + "Directional": true + } + ] + }, + { + "ID": 17839, + "SourceStructureID": 85185, + "TargetStructureID": 85184, + "Label": "85185-85184 via Conventional from 85186 -> 85187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85186, + "TargetID": 85187, + "Directional": true + } + ] + }, + { + "ID": 17840, + "SourceStructureID": 85197, + "TargetStructureID": 85200, + "Label": "85197-85200 via Conventional from 85198 -> 85202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85198, + "TargetID": 85202, + "Directional": true + } + ] + }, + { + "ID": 17841, + "SourceStructureID": 85214, + "TargetStructureID": 85141, + "Label": "85214-85141 via Conventional from 85395 -> 85396", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85395, + "TargetID": 85396, + "Directional": true + } + ] + }, + { + "ID": 17842, + "SourceStructureID": 85231, + "TargetStructureID": 85141, + "Label": "85231-85141 via Conventional from 85232 -> 85230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85232, + "TargetID": 85230, + "Directional": true + } + ] + }, + { + "ID": 17843, + "SourceStructureID": 85259, + "TargetStructureID": 85141, + "Label": "85259-85141 via Conventional from 85260 -> 85262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85260, + "TargetID": 85262, + "Directional": true + } + ] + }, + { + "ID": 17844, + "SourceStructureID": 85266, + "TargetStructureID": 6117, + "Label": "85266-6117 via Conventional from 126354 -> 126355", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126354, + "TargetID": 126355, + "Directional": true + } + ] + }, + { + "ID": 17845, + "SourceStructureID": 85284, + "TargetStructureID": 6117, + "Label": "85284-6117 via Conventional from 85285 -> 85287", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85285, + "TargetID": 85287, + "Directional": true + } + ] + }, + { + "ID": 17846, + "SourceStructureID": 85307, + "TargetStructureID": 6117, + "Label": "85307-6117 via Conventional from 85309 -> 85304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85309, + "TargetID": 85304, + "Directional": true + } + ] + }, + { + "ID": 17847, + "SourceStructureID": 85311, + "TargetStructureID": 6117, + "Label": "85311-6117 via Conventional from 85253 -> 30898, 85312 -> 85313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85253, + "TargetID": 30898, + "Directional": true + }, + { + "SourceID": 85312, + "TargetID": 85313, + "Directional": true + } + ] + }, + { + "ID": 17848, + "SourceStructureID": 85311, + "TargetStructureID": 10931, + "Label": "85311-10931 via Conventional from 159500 -> 159321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159500, + "TargetID": 159321, + "Directional": true + } + ] + }, + { + "ID": 17849, + "SourceStructureID": 85314, + "TargetStructureID": 6117, + "Label": "85314-6117 via Conventional from 85315 -> 85316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85315, + "TargetID": 85316, + "Directional": true + } + ] + }, + { + "ID": 17850, + "SourceStructureID": 85334, + "TargetStructureID": 85141, + "Label": "85334-85141 via Conventional from 85340 -> 85341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85340, + "TargetID": 85341, + "Directional": true + } + ] + }, + { + "ID": 17851, + "SourceStructureID": 85338, + "TargetStructureID": 85334, + "Label": "85338-85334 via Conventional from 85339 -> 85337", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85339, + "TargetID": 85337, + "Directional": true + } + ] + }, + { + "ID": 17852, + "SourceStructureID": 85348, + "TargetStructureID": 85250, + "Label": "85348-85250 via Conventional from 85349 -> 85256", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85349, + "TargetID": 85256, + "Directional": true + } + ] + }, + { + "ID": 17853, + "SourceStructureID": 85369, + "TargetStructureID": 85141, + "Label": "85369-85141 via Conventional from 85370 -> 85368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85370, + "TargetID": 85368, + "Directional": true + } + ] + }, + { + "ID": 17854, + "SourceStructureID": 85377, + "TargetStructureID": 85141, + "Label": "85377-85141 via Conventional from 85378 -> 85376", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85378, + "TargetID": 85376, + "Directional": true + } + ] + }, + { + "ID": 17855, + "SourceStructureID": 85400, + "TargetStructureID": 85141, + "Label": "85400-85141 via Conventional from 85402 -> 85399", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85402, + "TargetID": 85399, + "Directional": true + } + ] + }, + { + "ID": 17856, + "SourceStructureID": 85404, + "TargetStructureID": 142, + "Label": "85404-142 via Conventional from 85409 -> 49778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85409, + "TargetID": 49778, + "Directional": true + } + ] + }, + { + "ID": 17857, + "SourceStructureID": 85421, + "TargetStructureID": 6117, + "Label": "85421-6117 via Conventional from 85422 -> 85423, 100920 -> 100919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85422, + "TargetID": 85423, + "Directional": true + }, + { + "SourceID": 100920, + "TargetID": 100919, + "Directional": true + } + ] + }, + { + "ID": 17858, + "SourceStructureID": 85421, + "TargetStructureID": 54287, + "Label": "85421-54287 via Conventional from 85424 -> 85425", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85424, + "TargetID": 85425, + "Directional": true + } + ] + }, + { + "ID": 17859, + "SourceStructureID": 85426, + "TargetStructureID": 6117, + "Label": "85426-6117 via Conventional from 85427 -> 85428", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85427, + "TargetID": 85428, + "Directional": true + } + ] + }, + { + "ID": 17860, + "SourceStructureID": 85429, + "TargetStructureID": 6117, + "Label": "85429-6117 via Conventional from 85430 -> 85431", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85430, + "TargetID": 85431, + "Directional": true + } + ] + }, + { + "ID": 17861, + "SourceStructureID": 85442, + "TargetStructureID": 6117, + "Label": "85442-6117 via Conventional from 85443 -> 85444", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85443, + "TargetID": 85444, + "Directional": true + } + ] + }, + { + "ID": 17862, + "SourceStructureID": 85445, + "TargetStructureID": 6997, + "Label": "85445-6997 via Conventional from 85446 -> 21960", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85446, + "TargetID": 21960, + "Directional": true + } + ] + }, + { + "ID": 17863, + "SourceStructureID": 85450, + "TargetStructureID": 84830, + "Label": "85450-84830 via Conventional from 85451 -> 85449", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85451, + "TargetID": 85449, + "Directional": true + } + ] + }, + { + "ID": 17864, + "SourceStructureID": 85455, + "TargetStructureID": 84830, + "Label": "85455-84830 via Conventional from 85458 -> 85459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85458, + "TargetID": 85459, + "Directional": true + } + ] + }, + { + "ID": 17865, + "SourceStructureID": 85473, + "TargetStructureID": 84830, + "Label": "85473-84830 via BC Conventional Synapse from 85476 -> 85475", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85476, + "TargetID": 85475, + "Directional": true + } + ] + }, + { + "ID": 17866, + "SourceStructureID": 85483, + "TargetStructureID": 84830, + "Label": "85483-84830 via Conventional from 85484 -> 85480", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85484, + "TargetID": 85480, + "Directional": true + } + ] + }, + { + "ID": 17867, + "SourceStructureID": 85496, + "TargetStructureID": 593, + "Label": "85496-593 via Conventional from 85499 -> 85500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85499, + "TargetID": 85500, + "Directional": true + } + ] + }, + { + "ID": 17868, + "SourceStructureID": 85510, + "TargetStructureID": 593, + "Label": "85510-593 via Conventional from 90043 -> 90044", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90043, + "TargetID": 90044, + "Directional": true + } + ] + }, + { + "ID": 17869, + "SourceStructureID": 85523, + "TargetStructureID": 593, + "Label": "85523-593 via Conventional from 85524 -> 85525", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85524, + "TargetID": 85525, + "Directional": true + } + ] + }, + { + "ID": 17870, + "SourceStructureID": 85526, + "TargetStructureID": 593, + "Label": "85526-593 via Conventional from 85527 -> 85528", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85527, + "TargetID": 85528, + "Directional": true + } + ] + }, + { + "ID": 17871, + "SourceStructureID": 85543, + "TargetStructureID": 5439, + "Label": "85543-5439 via Conventional from 85544 -> 85545", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85544, + "TargetID": 85545, + "Directional": true + } + ] + }, + { + "ID": 17872, + "SourceStructureID": 85546, + "TargetStructureID": 59229, + "Label": "85546-59229 via Ribbon Synapse from 85548 -> 85542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85548, + "TargetID": 85542, + "Directional": true + } + ] + }, + { + "ID": 17873, + "SourceStructureID": 85571, + "TargetStructureID": 593, + "Label": "85571-593 via Conventional from 85584 -> 85585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85584, + "TargetID": 85585, + "Directional": true + } + ] + }, + { + "ID": 17874, + "SourceStructureID": 85601, + "TargetStructureID": 5439, + "Label": "85601-5439 via Conventional from 85602 -> 85599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85602, + "TargetID": 85599, + "Directional": true + } + ] + }, + { + "ID": 17875, + "SourceStructureID": 85620, + "TargetStructureID": 5439, + "Label": "85620-5439 via Conventional from 85621 -> 85619", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85621, + "TargetID": 85619, + "Directional": true + } + ] + }, + { + "ID": 17876, + "SourceStructureID": 85622, + "TargetStructureID": 5439, + "Label": "85622-5439 via Conventional from 85625 -> 85626", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85625, + "TargetID": 85626, + "Directional": true + } + ] + }, + { + "ID": 17877, + "SourceStructureID": 85658, + "TargetStructureID": 6117, + "Label": "85658-6117 via Conventional from 85659 -> 85660", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85659, + "TargetID": 85660, + "Directional": true + } + ] + }, + { + "ID": 17878, + "SourceStructureID": 85666, + "TargetStructureID": 6117, + "Label": "85666-6117 via Conventional from 85883 -> 85884", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85883, + "TargetID": 85884, + "Directional": true + } + ] + }, + { + "ID": 17879, + "SourceStructureID": 85671, + "TargetStructureID": 5439, + "Label": "85671-5439 via Conventional from 85672 -> 85670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85672, + "TargetID": 85670, + "Directional": true + } + ] + }, + { + "ID": 17880, + "SourceStructureID": 85680, + "TargetStructureID": 5439, + "Label": "85680-5439 via Conventional from 85681 -> 85679", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85681, + "TargetID": 85679, + "Directional": true + } + ] + }, + { + "ID": 17881, + "SourceStructureID": 85683, + "TargetStructureID": 5439, + "Label": "85683-5439 via Conventional from 85684 -> 85682", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85684, + "TargetID": 85682, + "Directional": true + } + ] + }, + { + "ID": 17882, + "SourceStructureID": 85691, + "TargetStructureID": 5439, + "Label": "85691-5439 via Conventional from 85692 -> 85690", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85692, + "TargetID": 85690, + "Directional": true + } + ] + }, + { + "ID": 17883, + "SourceStructureID": 85695, + "TargetStructureID": 5439, + "Label": "85695-5439 via Conventional from 85696 -> 85694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85696, + "TargetID": 85694, + "Directional": true + } + ] + }, + { + "ID": 17884, + "SourceStructureID": 85698, + "TargetStructureID": 5439, + "Label": "85698-5439 via Conventional from 85699 -> 85697", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85699, + "TargetID": 85697, + "Directional": true + } + ] + }, + { + "ID": 17885, + "SourceStructureID": 85703, + "TargetStructureID": 5439, + "Label": "85703-5439 via Conventional from 85704 -> 85702", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85704, + "TargetID": 85702, + "Directional": true + } + ] + }, + { + "ID": 17886, + "SourceStructureID": 85730, + "TargetStructureID": 71519, + "Label": "85730-71519 via Conventional from 85744 -> 85745", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85744, + "TargetID": 85745, + "Directional": true + } + ] + }, + { + "ID": 17887, + "SourceStructureID": 85730, + "TargetStructureID": 85629, + "Label": "85730-85629 via Conventional from 85733 -> 85729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85733, + "TargetID": 85729, + "Directional": true + } + ] + }, + { + "ID": 17888, + "SourceStructureID": 85735, + "TargetStructureID": 5439, + "Label": "85735-5439 via Conventional from 85736 -> 85734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85736, + "TargetID": 85734, + "Directional": true + } + ] + }, + { + "ID": 17889, + "SourceStructureID": 85740, + "TargetStructureID": 85730, + "Label": "85740-85730 via Conventional from 85741 -> 85739", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85741, + "TargetID": 85739, + "Directional": true + } + ] + }, + { + "ID": 17890, + "SourceStructureID": 85748, + "TargetStructureID": 483, + "Label": "85748-483 via Conventional from 85761 -> 26825, 103536 -> 103537", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85761, + "TargetID": 26825, + "Directional": true + }, + { + "SourceID": 103536, + "TargetID": 103537, + "Directional": true + } + ] + }, + { + "ID": 17891, + "SourceStructureID": 85748, + "TargetStructureID": 485, + "Label": "85748-485 via Conventional from 85777 -> 85778, 85779 -> 85781, 85785 -> 100227", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85777, + "TargetID": 85778, + "Directional": true + }, + { + "SourceID": 85779, + "TargetID": 85781, + "Directional": true + }, + { + "SourceID": 85785, + "TargetID": 100227, + "Directional": true + } + ] + }, + { + "ID": 17892, + "SourceStructureID": 85748, + "TargetStructureID": 85775, + "Label": "85748-85775 via Conventional from 85774 -> 85776", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85774, + "TargetID": 85776, + "Directional": true + } + ] + }, + { + "ID": 17893, + "SourceStructureID": 85748, + "TargetStructureID": 85783, + "Label": "85748-85783 via Conventional from 85782 -> 85784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85782, + "TargetID": 85784, + "Directional": true + } + ] + }, + { + "ID": 17894, + "SourceStructureID": 85750, + "TargetStructureID": 85748, + "Label": "85750-85748 via Conventional from 85751 -> 85749", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85751, + "TargetID": 85749, + "Directional": true + } + ] + }, + { + "ID": 17895, + "SourceStructureID": 85755, + "TargetStructureID": 85748, + "Label": "85755-85748 via Conventional from 85756 -> 85754", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85756, + "TargetID": 85754, + "Directional": true + } + ] + }, + { + "ID": 17896, + "SourceStructureID": 85771, + "TargetStructureID": 85748, + "Label": "85771-85748 via Conventional from 85772 -> 85770", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85772, + "TargetID": 85770, + "Directional": true + } + ] + }, + { + "ID": 17897, + "SourceStructureID": 85792, + "TargetStructureID": 85730, + "Label": "85792-85730 via Ribbon Synapse from 85794 -> 85791, 85798 -> 85797", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 85794, + "TargetID": 85791, + "Directional": true + }, + { + "SourceID": 85798, + "TargetID": 85797, + "Directional": true + } + ] + }, + { + "ID": 17898, + "SourceStructureID": 85852, + "TargetStructureID": 85629, + "Label": "85852-85629 via Conventional from 85853 -> 85850, 85855 -> 85854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85853, + "TargetID": 85850, + "Directional": true + }, + { + "SourceID": 85855, + "TargetID": 85854, + "Directional": true + } + ] + }, + { + "ID": 17899, + "SourceStructureID": 85861, + "TargetStructureID": 85856, + "Label": "85861-85856 via Conventional from 85862 -> 85858", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85862, + "TargetID": 85858, + "Directional": true + } + ] + }, + { + "ID": 17900, + "SourceStructureID": 85906, + "TargetStructureID": 6117, + "Label": "85906-6117 via Conventional from 85908 -> 85918", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85908, + "TargetID": 85918, + "Directional": true + } + ] + }, + { + "ID": 17901, + "SourceStructureID": 85906, + "TargetStructureID": 85909, + "Label": "85906-85909 via Conventional from 85908 -> 85916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85908, + "TargetID": 85916, + "Directional": true + } + ] + }, + { + "ID": 17902, + "SourceStructureID": 85924, + "TargetStructureID": 6117, + "Label": "85924-6117 via Conventional from 85926 -> 85927", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85926, + "TargetID": 85927, + "Directional": true + } + ] + }, + { + "ID": 17903, + "SourceStructureID": 85958, + "TargetStructureID": 6117, + "Label": "85958-6117 via Conventional from 85963 -> 58807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85963, + "TargetID": 58807, + "Directional": true + } + ] + }, + { + "ID": 17904, + "SourceStructureID": 85979, + "TargetStructureID": 6117, + "Label": "85979-6117 via Conventional from 85980 -> 85981", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85980, + "TargetID": 85981, + "Directional": true + } + ] + }, + { + "ID": 17905, + "SourceStructureID": 85982, + "TargetStructureID": 6117, + "Label": "85982-6117 via Conventional from 85983 -> 58814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 85983, + "TargetID": 58814, + "Directional": true + } + ] + }, + { + "ID": 17906, + "SourceStructureID": 85997, + "TargetStructureID": 6117, + "Label": "85997-6117 via Conventional from 147479 -> 147478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147479, + "TargetID": 147478, + "Directional": true + } + ] + }, + { + "ID": 17907, + "SourceStructureID": 86001, + "TargetStructureID": 84790, + "Label": "86001-84790 via Conventional from 86002 -> 86003", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86002, + "TargetID": 86003, + "Directional": true + } + ] + }, + { + "ID": 17908, + "SourceStructureID": 86036, + "TargetStructureID": 6117, + "Label": "86036-6117 via Conventional from 86037 -> 10536, 86039 -> 10533", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86037, + "TargetID": 10536, + "Directional": true + }, + { + "SourceID": 86039, + "TargetID": 10533, + "Directional": true + } + ] + }, + { + "ID": 17909, + "SourceStructureID": 86045, + "TargetStructureID": 86047, + "Label": "86045-86047 via Conventional from 86046 -> 86048", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86046, + "TargetID": 86048, + "Directional": true + } + ] + }, + { + "ID": 17910, + "SourceStructureID": 86050, + "TargetStructureID": 6117, + "Label": "86050-6117 via Conventional from 86052 -> 10535, 86065 -> 86066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86052, + "TargetID": 10535, + "Directional": true + }, + { + "SourceID": 86065, + "TargetID": 86066, + "Directional": true + } + ] + }, + { + "ID": 17911, + "SourceStructureID": 86060, + "TargetStructureID": 6117, + "Label": "86060-6117 via Conventional from 86061 -> 86015", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86061, + "TargetID": 86015, + "Directional": true + } + ] + }, + { + "ID": 17912, + "SourceStructureID": 86068, + "TargetStructureID": 6117, + "Label": "86068-6117 via Conventional from 86069 -> 86067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86069, + "TargetID": 86067, + "Directional": true + } + ] + }, + { + "ID": 17913, + "SourceStructureID": 86098, + "TargetStructureID": 6117, + "Label": "86098-6117 via Conventional from 86100 -> 20567", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86100, + "TargetID": 20567, + "Directional": true + } + ] + }, + { + "ID": 17914, + "SourceStructureID": 86098, + "TargetStructureID": 86110, + "Label": "86098-86110 via Conventional from 86118 -> 86119", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86118, + "TargetID": 86119, + "Directional": true + } + ] + }, + { + "ID": 17915, + "SourceStructureID": 86114, + "TargetStructureID": 86110, + "Label": "86114-86110 via Conventional from 86115 -> 86116", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86115, + "TargetID": 86116, + "Directional": true + } + ] + }, + { + "ID": 17916, + "SourceStructureID": 86128, + "TargetStructureID": 6117, + "Label": "86128-6117 via Conventional from 86130 -> 86131", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86130, + "TargetID": 86131, + "Directional": true + } + ] + }, + { + "ID": 17917, + "SourceStructureID": 86128, + "TargetStructureID": 86110, + "Label": "86128-86110 via Conventional from 86129 -> 86132", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86129, + "TargetID": 86132, + "Directional": true + } + ] + }, + { + "ID": 17918, + "SourceStructureID": 86134, + "TargetStructureID": 58592, + "Label": "86134-58592 via Conventional from 86135 -> 58635", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86135, + "TargetID": 58635, + "Directional": true + } + ] + }, + { + "ID": 17919, + "SourceStructureID": 86134, + "TargetStructureID": 86110, + "Label": "86134-86110 via Conventional from 86136 -> 86137", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86136, + "TargetID": 86137, + "Directional": true + } + ] + }, + { + "ID": 17920, + "SourceStructureID": 86162, + "TargetStructureID": 6117, + "Label": "86162-6117 via Conventional from 86164 -> 20575, 86169 -> 86170", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86164, + "TargetID": 20575, + "Directional": true + }, + { + "SourceID": 86169, + "TargetID": 86170, + "Directional": true + } + ] + }, + { + "ID": 17921, + "SourceStructureID": 86165, + "TargetStructureID": 58714, + "Label": "86165-58714 via Conventional from 86166 -> 58721", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86166, + "TargetID": 58721, + "Directional": true + } + ] + }, + { + "ID": 17922, + "SourceStructureID": 86171, + "TargetStructureID": 86174, + "Label": "86171-86174 via Conventional from 86176 -> 86175", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86176, + "TargetID": 86175, + "Directional": true + } + ] + }, + { + "ID": 17923, + "SourceStructureID": 86192, + "TargetStructureID": 6117, + "Label": "86192-6117 via Conventional from 86193 -> 86200", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86193, + "TargetID": 86200, + "Directional": true + } + ] + }, + { + "ID": 17924, + "SourceStructureID": 86192, + "TargetStructureID": 32035, + "Label": "86192-32035 via Conventional from 86194 -> 86196", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86194, + "TargetID": 86196, + "Directional": true + } + ] + }, + { + "ID": 17925, + "SourceStructureID": 86201, + "TargetStructureID": 35894, + "Label": "86201-35894 via Conventional from 86207 -> 35932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86207, + "TargetID": 35932, + "Directional": true + } + ] + }, + { + "ID": 17926, + "SourceStructureID": 86205, + "TargetStructureID": 6117, + "Label": "86205-6117 via Conventional from 86206 -> 86204", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86206, + "TargetID": 86204, + "Directional": true + } + ] + }, + { + "ID": 17927, + "SourceStructureID": 86215, + "TargetStructureID": 86218, + "Label": "86215-86218 via Conventional from 86217 -> 86219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86217, + "TargetID": 86219, + "Directional": true + } + ] + }, + { + "ID": 17928, + "SourceStructureID": 86218, + "TargetStructureID": 6117, + "Label": "86218-6117 via Conventional from 86227 -> 86082", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86227, + "TargetID": 86082, + "Directional": true + } + ] + }, + { + "ID": 17929, + "SourceStructureID": 86218, + "TargetStructureID": 6300, + "Label": "86218-6300 via Conventional from 86220 -> 86221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86220, + "TargetID": 86221, + "Directional": true + } + ] + }, + { + "ID": 17930, + "SourceStructureID": 86224, + "TargetStructureID": 6117, + "Label": "86224-6117 via Conventional from 86226 -> 86225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86226, + "TargetID": 86225, + "Directional": true + } + ] + }, + { + "ID": 17931, + "SourceStructureID": 86228, + "TargetStructureID": 6117, + "Label": "86228-6117 via Conventional from 86229 -> 86230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86229, + "TargetID": 86230, + "Directional": true + } + ] + }, + { + "ID": 17932, + "SourceStructureID": 86231, + "TargetStructureID": 6117, + "Label": "86231-6117 via Conventional from 86232 -> 20586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86232, + "TargetID": 20586, + "Directional": true + } + ] + }, + { + "ID": 17933, + "SourceStructureID": 86231, + "TargetStructureID": 7594, + "Label": "86231-7594 via Conventional from 86233 -> 86236", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86233, + "TargetID": 86236, + "Directional": true + } + ] + }, + { + "ID": 17934, + "SourceStructureID": 86239, + "TargetStructureID": 4877, + "Label": "86239-4877 via Conventional from 86240 -> 46579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86240, + "TargetID": 46579, + "Directional": true + } + ] + }, + { + "ID": 17935, + "SourceStructureID": 86244, + "TargetStructureID": 6117, + "Label": "86244-6117 via Conventional from 86245 -> 20588", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86245, + "TargetID": 20588, + "Directional": true + } + ] + }, + { + "ID": 17936, + "SourceStructureID": 86256, + "TargetStructureID": 3756, + "Label": "86256-3756 via Conventional from 120455 -> 116216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120455, + "TargetID": 116216, + "Directional": true + } + ] + }, + { + "ID": 17937, + "SourceStructureID": 86256, + "TargetStructureID": 6117, + "Label": "86256-6117 via Conventional from 86257 -> 86258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86257, + "TargetID": 86258, + "Directional": true + } + ] + }, + { + "ID": 17938, + "SourceStructureID": 86260, + "TargetStructureID": 6117, + "Label": "86260-6117 via Conventional from 86261 -> 86259", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86261, + "TargetID": 86259, + "Directional": true + } + ] + }, + { + "ID": 17939, + "SourceStructureID": 86268, + "TargetStructureID": 6117, + "Label": "86268-6117 via Conventional from 86270 -> 86271", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86270, + "TargetID": 86271, + "Directional": true + } + ] + }, + { + "ID": 17940, + "SourceStructureID": 86276, + "TargetStructureID": 6117, + "Label": "86276-6117 via Conventional from 86277 -> 86278", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86277, + "TargetID": 86278, + "Directional": true + } + ] + }, + { + "ID": 17941, + "SourceStructureID": 86311, + "TargetStructureID": 142, + "Label": "86311-142 via Conventional from 126025 -> 126024", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126025, + "TargetID": 126024, + "Directional": true + } + ] + }, + { + "ID": 17942, + "SourceStructureID": 86315, + "TargetStructureID": 142, + "Label": "86315-142 via Conventional from 86318 -> 31800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86318, + "TargetID": 31800, + "Directional": true + } + ] + }, + { + "ID": 17943, + "SourceStructureID": 86315, + "TargetStructureID": 606, + "Label": "86315-606 via Conventional from 99409 -> 99410, 99411 -> 39887", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99409, + "TargetID": 99410, + "Directional": true + }, + { + "SourceID": 99411, + "TargetID": 39887, + "Directional": true + } + ] + }, + { + "ID": 17944, + "SourceStructureID": 86315, + "TargetStructureID": 6117, + "Label": "86315-6117 via Conventional from 86316 -> 86317", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86316, + "TargetID": 86317, + "Directional": true + } + ] + }, + { + "ID": 17945, + "SourceStructureID": 86327, + "TargetStructureID": 142, + "Label": "86327-142 via Conventional from 86328 -> 31798", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86328, + "TargetID": 31798, + "Directional": true + } + ] + }, + { + "ID": 17946, + "SourceStructureID": 86334, + "TargetStructureID": 142, + "Label": "86334-142 via Conventional from 86335 -> 31796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86335, + "TargetID": 31796, + "Directional": true + } + ] + }, + { + "ID": 17947, + "SourceStructureID": 86353, + "TargetStructureID": 6117, + "Label": "86353-6117 via Conventional from 86354 -> 86355", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86354, + "TargetID": 86355, + "Directional": true + } + ] + }, + { + "ID": 17948, + "SourceStructureID": 86356, + "TargetStructureID": 86624, + "Label": "86356-86624 via Conventional from 86623 -> 86625", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86623, + "TargetID": 86625, + "Directional": true + } + ] + }, + { + "ID": 17949, + "SourceStructureID": 86369, + "TargetStructureID": 6117, + "Label": "86369-6117 via Conventional from 86371 -> 86368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86371, + "TargetID": 86368, + "Directional": true + } + ] + }, + { + "ID": 17950, + "SourceStructureID": 86369, + "TargetStructureID": 58714, + "Label": "86369-58714 via Conventional from 86370 -> 58735", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86370, + "TargetID": 58735, + "Directional": true + } + ] + }, + { + "ID": 17951, + "SourceStructureID": 86389, + "TargetStructureID": 6117, + "Label": "86389-6117 via Conventional from 86390 -> 86393", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86390, + "TargetID": 86393, + "Directional": true + } + ] + }, + { + "ID": 17952, + "SourceStructureID": 86389, + "TargetStructureID": 86391, + "Label": "86389-86391 via Conventional from 86390 -> 86392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86390, + "TargetID": 86392, + "Directional": true + } + ] + }, + { + "ID": 17953, + "SourceStructureID": 86420, + "TargetStructureID": 6117, + "Label": "86420-6117 via Conventional from 86421 -> 30912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86421, + "TargetID": 30912, + "Directional": true + } + ] + }, + { + "ID": 17954, + "SourceStructureID": 86438, + "TargetStructureID": 40602, + "Label": "86438-40602 via Conventional from 86439 -> 41445, 86440 -> 41444", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86439, + "TargetID": 41445, + "Directional": true + }, + { + "SourceID": 86440, + "TargetID": 41444, + "Directional": true + } + ] + }, + { + "ID": 17955, + "SourceStructureID": 86466, + "TargetStructureID": 6117, + "Label": "86466-6117 via Conventional from 86468 -> 86469", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86468, + "TargetID": 86469, + "Directional": true + } + ] + }, + { + "ID": 17956, + "SourceStructureID": 86473, + "TargetStructureID": 5374, + "Label": "86473-5374 via Conventional from 86476 -> 69023", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86476, + "TargetID": 69023, + "Directional": true + } + ] + }, + { + "ID": 17957, + "SourceStructureID": 86473, + "TargetStructureID": 6117, + "Label": "86473-6117 via Conventional from 86474 -> 86091", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86474, + "TargetID": 86091, + "Directional": true + } + ] + }, + { + "ID": 17958, + "SourceStructureID": 86479, + "TargetStructureID": 86481, + "Label": "86479-86481 via Conventional from 86483 -> 86482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86483, + "TargetID": 86482, + "Directional": true + } + ] + }, + { + "ID": 17959, + "SourceStructureID": 86485, + "TargetStructureID": 6117, + "Label": "86485-6117 via Conventional from 86486 -> 86487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86486, + "TargetID": 86487, + "Directional": true + } + ] + }, + { + "ID": 17960, + "SourceStructureID": 86496, + "TargetStructureID": 6117, + "Label": "86496-6117 via Conventional from 86497 -> 86498", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86497, + "TargetID": 86498, + "Directional": true + } + ] + }, + { + "ID": 17961, + "SourceStructureID": 86512, + "TargetStructureID": 6117, + "Label": "86512-6117 via Conventional from 86513 -> 30918", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86513, + "TargetID": 30918, + "Directional": true + } + ] + }, + { + "ID": 17962, + "SourceStructureID": 86563, + "TargetStructureID": 6117, + "Label": "86563-6117 via Conventional from 86567 -> 86568", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86567, + "TargetID": 86568, + "Directional": true + } + ] + }, + { + "ID": 17963, + "SourceStructureID": 86580, + "TargetStructureID": 308, + "Label": "86580-308 via Conventional from 86581 -> 86578", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86581, + "TargetID": 86578, + "Directional": true + } + ] + }, + { + "ID": 17964, + "SourceStructureID": 86582, + "TargetStructureID": 7594, + "Label": "86582-7594 via Conventional from 86589 -> 86590", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86589, + "TargetID": 86590, + "Directional": true + } + ] + }, + { + "ID": 17965, + "SourceStructureID": 86607, + "TargetStructureID": 6117, + "Label": "86607-6117 via Conventional from 86608 -> 30919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86608, + "TargetID": 30919, + "Directional": true + } + ] + }, + { + "ID": 17966, + "SourceStructureID": 86609, + "TargetStructureID": 6117, + "Label": "86609-6117 via Conventional from 86611 -> 30920", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86611, + "TargetID": 30920, + "Directional": true + } + ] + }, + { + "ID": 17967, + "SourceStructureID": 86614, + "TargetStructureID": 6117, + "Label": "86614-6117 via Conventional from 86617 -> 30923", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86617, + "TargetID": 30923, + "Directional": true + } + ] + }, + { + "ID": 17968, + "SourceStructureID": 86615, + "TargetStructureID": 6117, + "Label": "86615-6117 via Conventional from 86616 -> 30921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86616, + "TargetID": 30921, + "Directional": true + } + ] + }, + { + "ID": 17969, + "SourceStructureID": 86626, + "TargetStructureID": 308, + "Label": "86626-308 via Conventional from 86627 -> 31861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86627, + "TargetID": 31861, + "Directional": true + } + ] + }, + { + "ID": 17970, + "SourceStructureID": 86628, + "TargetStructureID": 308, + "Label": "86628-308 via Conventional from 86629 -> 31863", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86629, + "TargetID": 31863, + "Directional": true + } + ] + }, + { + "ID": 17971, + "SourceStructureID": 86630, + "TargetStructureID": 308, + "Label": "86630-308 via Conventional from 86631 -> 31868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86631, + "TargetID": 31868, + "Directional": true + } + ] + }, + { + "ID": 17972, + "SourceStructureID": 86632, + "TargetStructureID": 308, + "Label": "86632-308 via Conventional from 86633 -> 31869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86633, + "TargetID": 31869, + "Directional": true + } + ] + }, + { + "ID": 17973, + "SourceStructureID": 86634, + "TargetStructureID": 483, + "Label": "86634-483 via Conventional from 102383 -> 102385", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102383, + "TargetID": 102385, + "Directional": true + } + ] + }, + { + "ID": 17974, + "SourceStructureID": 86634, + "TargetStructureID": 485, + "Label": "86634-485 via Conventional from 86687 -> 50885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86687, + "TargetID": 50885, + "Directional": true + } + ] + }, + { + "ID": 17975, + "SourceStructureID": 86634, + "TargetStructureID": 46823, + "Label": "86634-46823 via Conventional from 86688 -> 86689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86688, + "TargetID": 86689, + "Directional": true + } + ] + }, + { + "ID": 17976, + "SourceStructureID": 86634, + "TargetStructureID": 86662, + "Label": "86634-86662 via Conventional from 86661 -> 86663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86661, + "TargetID": 86663, + "Directional": true + } + ] + }, + { + "ID": 17977, + "SourceStructureID": 86634, + "TargetStructureID": 86685, + "Label": "86634-86685 via Conventional from 86684 -> 86686", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86684, + "TargetID": 86686, + "Directional": true + } + ] + }, + { + "ID": 17978, + "SourceStructureID": 86637, + "TargetStructureID": 308, + "Label": "86637-308 via Conventional from 86638 -> 43097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86638, + "TargetID": 43097, + "Directional": true + } + ] + }, + { + "ID": 17979, + "SourceStructureID": 86640, + "TargetStructureID": 86634, + "Label": "86640-86634 via Conventional from 86641 -> 86639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86641, + "TargetID": 86639, + "Directional": true + } + ] + }, + { + "ID": 17980, + "SourceStructureID": 86644, + "TargetStructureID": 308, + "Label": "86644-308 via Conventional from 86645 -> 43368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86645, + "TargetID": 43368, + "Directional": true + } + ] + }, + { + "ID": 17981, + "SourceStructureID": 86644, + "TargetStructureID": 71954, + "Label": "86644-71954 via Conventional from 86650 -> 86651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86650, + "TargetID": 86651, + "Directional": true + } + ] + }, + { + "ID": 17982, + "SourceStructureID": 86667, + "TargetStructureID": 86634, + "Label": "86667-86634 via Conventional from 86669 -> 86670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86669, + "TargetID": 86670, + "Directional": true + } + ] + }, + { + "ID": 17983, + "SourceStructureID": 86672, + "TargetStructureID": 86634, + "Label": "86672-86634 via Conventional from 86673 -> 86671", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86673, + "TargetID": 86671, + "Directional": true + } + ] + }, + { + "ID": 17984, + "SourceStructureID": 86675, + "TargetStructureID": 86634, + "Label": "86675-86634 via Conventional from 86678 -> 86674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86678, + "TargetID": 86674, + "Directional": true + } + ] + }, + { + "ID": 17985, + "SourceStructureID": 86691, + "TargetStructureID": 86634, + "Label": "86691-86634 via Conventional from 86692 -> 86690", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86692, + "TargetID": 86690, + "Directional": true + } + ] + }, + { + "ID": 17986, + "SourceStructureID": 86691, + "TargetStructureID": 101050, + "Label": "86691-101050 via Conventional from 101061 -> 101060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101061, + "TargetID": 101060, + "Directional": true + } + ] + }, + { + "ID": 17987, + "SourceStructureID": 86697, + "TargetStructureID": 10596, + "Label": "86697-10596 via Conventional from 86698 -> 86696", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86698, + "TargetID": 86696, + "Directional": true + } + ] + }, + { + "ID": 17988, + "SourceStructureID": 86712, + "TargetStructureID": 308, + "Label": "86712-308 via Conventional from 86713 -> 42631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86713, + "TargetID": 42631, + "Directional": true + } + ] + }, + { + "ID": 17989, + "SourceStructureID": 86741, + "TargetStructureID": 593, + "Label": "86741-593 via Conventional from 115737 -> 115736", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115737, + "TargetID": 115736, + "Directional": true + } + ] + }, + { + "ID": 17990, + "SourceStructureID": 86747, + "TargetStructureID": 10959, + "Label": "86747-10959 via Conventional from 86748 -> 16368, 86749 -> 16371", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86748, + "TargetID": 16368, + "Directional": true + }, + { + "SourceID": 86749, + "TargetID": 16371, + "Directional": true + } + ] + }, + { + "ID": 17991, + "SourceStructureID": 86761, + "TargetStructureID": 10959, + "Label": "86761-10959 via Conventional from 86762 -> 86760, 86765 -> 16376, 86766 -> 16377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86762, + "TargetID": 86760, + "Directional": true + }, + { + "SourceID": 86765, + "TargetID": 16376, + "Directional": true + }, + { + "SourceID": 86766, + "TargetID": 16377, + "Directional": true + } + ] + }, + { + "ID": 17992, + "SourceStructureID": 86767, + "TargetStructureID": 10959, + "Label": "86767-10959 via Conventional from 86768 -> 16375", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86768, + "TargetID": 16375, + "Directional": true + } + ] + }, + { + "ID": 17993, + "SourceStructureID": 86775, + "TargetStructureID": 10959, + "Label": "86775-10959 via Conventional from 86911 -> 86912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86911, + "TargetID": 86912, + "Directional": true + } + ] + }, + { + "ID": 17994, + "SourceStructureID": 86783, + "TargetStructureID": 10959, + "Label": "86783-10959 via Conventional from 86784 -> 86782, 86790 -> 86793, 86791 -> 86792, 86798 -> 16554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86784, + "TargetID": 86782, + "Directional": true + }, + { + "SourceID": 86790, + "TargetID": 86793, + "Directional": true + }, + { + "SourceID": 86791, + "TargetID": 86792, + "Directional": true + }, + { + "SourceID": 86798, + "TargetID": 16554, + "Directional": true + } + ] + }, + { + "ID": 17995, + "SourceStructureID": 86799, + "TargetStructureID": 10959, + "Label": "86799-10959 via Conventional from 86800 -> 16552, 86801 -> 16553, 86803 -> 86804, 87717 -> 87718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86800, + "TargetID": 16552, + "Directional": true + }, + { + "SourceID": 86801, + "TargetID": 16553, + "Directional": true + }, + { + "SourceID": 86803, + "TargetID": 86804, + "Directional": true + }, + { + "SourceID": 87717, + "TargetID": 87718, + "Directional": true + } + ] + }, + { + "ID": 17996, + "SourceStructureID": 86806, + "TargetStructureID": 10959, + "Label": "86806-10959 via Conventional from 86807 -> 16556", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86807, + "TargetID": 16556, + "Directional": true + } + ] + }, + { + "ID": 17997, + "SourceStructureID": 86812, + "TargetStructureID": 10959, + "Label": "86812-10959 via Conventional from 86813 -> 86811", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86813, + "TargetID": 86811, + "Directional": true + } + ] + }, + { + "ID": 17998, + "SourceStructureID": 86816, + "TargetStructureID": 10959, + "Label": "86816-10959 via Conventional from 86817 -> 86815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86817, + "TargetID": 86815, + "Directional": true + } + ] + }, + { + "ID": 17999, + "SourceStructureID": 86818, + "TargetStructureID": 10959, + "Label": "86818-10959 via Conventional from 86819 -> 86814, 86821 -> 86820", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86819, + "TargetID": 86814, + "Directional": true + }, + { + "SourceID": 86821, + "TargetID": 86820, + "Directional": true + } + ] + }, + { + "ID": 18000, + "SourceStructureID": 86822, + "TargetStructureID": 10959, + "Label": "86822-10959 via Conventional from 86831 -> 86832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86831, + "TargetID": 86832, + "Directional": true + } + ] + }, + { + "ID": 18001, + "SourceStructureID": 86838, + "TargetStructureID": 10959, + "Label": "86838-10959 via Conventional from 86840 -> 86841, 86842 -> 86843, 86844 -> 86845, 86846 -> 86847, 86848 -> 86849, 86851 -> 86852", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86840, + "TargetID": 86841, + "Directional": true + }, + { + "SourceID": 86842, + "TargetID": 86843, + "Directional": true + }, + { + "SourceID": 86844, + "TargetID": 86845, + "Directional": true + }, + { + "SourceID": 86846, + "TargetID": 86847, + "Directional": true + }, + { + "SourceID": 86848, + "TargetID": 86849, + "Directional": true + }, + { + "SourceID": 86851, + "TargetID": 86852, + "Directional": true + } + ] + }, + { + "ID": 18002, + "SourceStructureID": 86854, + "TargetStructureID": 10959, + "Label": "86854-10959 via Conventional from 86855 -> 86853", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86855, + "TargetID": 86853, + "Directional": true + } + ] + }, + { + "ID": 18003, + "SourceStructureID": 86857, + "TargetStructureID": 170, + "Label": "86857-170 via Conventional from 86959 -> 1112", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86959, + "TargetID": 1112, + "Directional": true + } + ] + }, + { + "ID": 18004, + "SourceStructureID": 86857, + "TargetStructureID": 23512, + "Label": "86857-23512 via Conventional from 86955 -> 23513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86955, + "TargetID": 23513, + "Directional": true + } + ] + }, + { + "ID": 18005, + "SourceStructureID": 86858, + "TargetStructureID": 10959, + "Label": "86858-10959 via Conventional from 86859 -> 16391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86859, + "TargetID": 16391, + "Directional": true + } + ] + }, + { + "ID": 18006, + "SourceStructureID": 86868, + "TargetStructureID": 10959, + "Label": "86868-10959 via Conventional from 86869 -> 86870", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86869, + "TargetID": 86870, + "Directional": true + } + ] + }, + { + "ID": 18007, + "SourceStructureID": 86871, + "TargetStructureID": 10959, + "Label": "86871-10959 via Conventional from 86874 -> 86875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86874, + "TargetID": 86875, + "Directional": true + } + ] + }, + { + "ID": 18008, + "SourceStructureID": 86876, + "TargetStructureID": 10959, + "Label": "86876-10959 via Conventional from 86878 -> 86879, 86885 -> 86886", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86878, + "TargetID": 86879, + "Directional": true + }, + { + "SourceID": 86885, + "TargetID": 86886, + "Directional": true + } + ] + }, + { + "ID": 18009, + "SourceStructureID": 86888, + "TargetStructureID": 10959, + "Label": "86888-10959 via Conventional from 86889 -> 86887", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86889, + "TargetID": 86887, + "Directional": true + } + ] + }, + { + "ID": 18010, + "SourceStructureID": 86891, + "TargetStructureID": 10959, + "Label": "86891-10959 via Conventional from 86894 -> 86895, 86896 -> 86897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86894, + "TargetID": 86895, + "Directional": true + }, + { + "SourceID": 86896, + "TargetID": 86897, + "Directional": true + } + ] + }, + { + "ID": 18011, + "SourceStructureID": 86898, + "TargetStructureID": 10959, + "Label": "86898-10959 via Conventional from 86899 -> 86900", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86899, + "TargetID": 86900, + "Directional": true + } + ] + }, + { + "ID": 18012, + "SourceStructureID": 86901, + "TargetStructureID": 10959, + "Label": "86901-10959 via Conventional from 86902 -> 86903", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86902, + "TargetID": 86903, + "Directional": true + } + ] + }, + { + "ID": 18013, + "SourceStructureID": 86904, + "TargetStructureID": 10959, + "Label": "86904-10959 via Conventional from 86905 -> 86907, 86906 -> 86908", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86905, + "TargetID": 86907, + "Directional": true + }, + { + "SourceID": 86906, + "TargetID": 86908, + "Directional": true + } + ] + }, + { + "ID": 18014, + "SourceStructureID": 86913, + "TargetStructureID": 10959, + "Label": "86913-10959 via Conventional from 86921 -> 16588, 86922 -> 86923, 86924 -> 86925", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86921, + "TargetID": 16588, + "Directional": true + }, + { + "SourceID": 86922, + "TargetID": 86923, + "Directional": true + }, + { + "SourceID": 86924, + "TargetID": 86925, + "Directional": true + } + ] + }, + { + "ID": 18015, + "SourceStructureID": 86915, + "TargetStructureID": 10959, + "Label": "86915-10959 via Conventional from 86916 -> 16585, 86919 -> 16598", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86916, + "TargetID": 16585, + "Directional": true + }, + { + "SourceID": 86919, + "TargetID": 16598, + "Directional": true + } + ] + }, + { + "ID": 18016, + "SourceStructureID": 86927, + "TargetStructureID": 58696, + "Label": "86927-58696 via Conventional from 86928 -> 58701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86928, + "TargetID": 58701, + "Directional": true + } + ] + }, + { + "ID": 18017, + "SourceStructureID": 86933, + "TargetStructureID": 58696, + "Label": "86933-58696 via Conventional from 86935 -> 58699", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86935, + "TargetID": 58699, + "Directional": true + } + ] + }, + { + "ID": 18018, + "SourceStructureID": 86934, + "TargetStructureID": 58696, + "Label": "86934-58696 via Conventional from 86936 -> 58700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86936, + "TargetID": 58700, + "Directional": true + } + ] + }, + { + "ID": 18019, + "SourceStructureID": 86940, + "TargetStructureID": 58696, + "Label": "86940-58696 via Conventional from 86941 -> 86939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86941, + "TargetID": 86939, + "Directional": true + } + ] + }, + { + "ID": 18020, + "SourceStructureID": 86945, + "TargetStructureID": 58696, + "Label": "86945-58696 via Conventional from 86946 -> 86947", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86946, + "TargetID": 86947, + "Directional": true + } + ] + }, + { + "ID": 18021, + "SourceStructureID": 86951, + "TargetStructureID": 86945, + "Label": "86951-86945 via Conventional from 86952 -> 86950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86952, + "TargetID": 86950, + "Directional": true + } + ] + }, + { + "ID": 18022, + "SourceStructureID": 86971, + "TargetStructureID": 58696, + "Label": "86971-58696 via Conventional from 86972 -> 86970", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86972, + "TargetID": 86970, + "Directional": true + } + ] + }, + { + "ID": 18023, + "SourceStructureID": 86980, + "TargetStructureID": 58696, + "Label": "86980-58696 via Conventional from 86981 -> 86982", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86981, + "TargetID": 86982, + "Directional": true + } + ] + }, + { + "ID": 18024, + "SourceStructureID": 86988, + "TargetStructureID": 86985, + "Label": "86988-86985 via Conventional from 86989 -> 86987", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86989, + "TargetID": 86987, + "Directional": true + } + ] + }, + { + "ID": 18025, + "SourceStructureID": 86997, + "TargetStructureID": 5377, + "Label": "86997-5377 via Conventional from 86998 -> 22733", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 86998, + "TargetID": 22733, + "Directional": true + } + ] + }, + { + "ID": 18026, + "SourceStructureID": 87002, + "TargetStructureID": 86997, + "Label": "87002-86997 via Conventional from 87003 -> 87001", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87003, + "TargetID": 87001, + "Directional": true + } + ] + }, + { + "ID": 18027, + "SourceStructureID": 87005, + "TargetStructureID": 5377, + "Label": "87005-5377 via Conventional from 87006 -> 22737", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87006, + "TargetID": 22737, + "Directional": true + } + ] + }, + { + "ID": 18028, + "SourceStructureID": 87057, + "TargetStructureID": 5292, + "Label": "87057-5292 via Conventional from 87058 -> 87056", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87058, + "TargetID": 87056, + "Directional": true + } + ] + }, + { + "ID": 18029, + "SourceStructureID": 87067, + "TargetStructureID": 173, + "Label": "87067-173 via Conventional from 87068 -> 87066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87068, + "TargetID": 87066, + "Directional": true + } + ] + }, + { + "ID": 18030, + "SourceStructureID": 87075, + "TargetStructureID": 173, + "Label": "87075-173 via Conventional from 87078 -> 87074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87078, + "TargetID": 87074, + "Directional": true + } + ] + }, + { + "ID": 18031, + "SourceStructureID": 87076, + "TargetStructureID": 173, + "Label": "87076-173 via Conventional from 87077 -> 87073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87077, + "TargetID": 87073, + "Directional": true + } + ] + }, + { + "ID": 18032, + "SourceStructureID": 87098, + "TargetStructureID": 5377, + "Label": "87098-5377 via Ribbon Synapse from 87101 -> 87102, 87105 -> 87106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87101, + "TargetID": 87102, + "Directional": true + }, + { + "SourceID": 87105, + "TargetID": 87106, + "Directional": true + } + ] + }, + { + "ID": 18033, + "SourceStructureID": 87098, + "TargetStructureID": 87095, + "Label": "87098-87095 via Ribbon Synapse from 87105 -> 87107", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87105, + "TargetID": 87107, + "Directional": true + } + ] + }, + { + "ID": 18034, + "SourceStructureID": 87103, + "TargetStructureID": 87098, + "Label": "87103-87098 via Conventional from 87104 -> 87100", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87104, + "TargetID": 87100, + "Directional": true + } + ] + }, + { + "ID": 18035, + "SourceStructureID": 87137, + "TargetStructureID": 82887, + "Label": "87137-82887 via Conventional from 87138 -> 87136", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87138, + "TargetID": 87136, + "Directional": true + } + ] + }, + { + "ID": 18036, + "SourceStructureID": 87145, + "TargetStructureID": 87158, + "Label": "87145-87158 via Conventional from 87157 -> 87159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87157, + "TargetID": 87159, + "Directional": true + } + ] + }, + { + "ID": 18037, + "SourceStructureID": 87149, + "TargetStructureID": 87145, + "Label": "87149-87145 via Conventional from 87150 -> 87148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87150, + "TargetID": 87148, + "Directional": true + } + ] + }, + { + "ID": 18038, + "SourceStructureID": 87189, + "TargetStructureID": 87183, + "Label": "87189-87183 via Conventional from 87190 -> 87185", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87190, + "TargetID": 87185, + "Directional": true + } + ] + }, + { + "ID": 18039, + "SourceStructureID": 87208, + "TargetStructureID": 87183, + "Label": "87208-87183 via Conventional from 87209 -> 87207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87209, + "TargetID": 87207, + "Directional": true + } + ] + }, + { + "ID": 18040, + "SourceStructureID": 87224, + "TargetStructureID": 87227, + "Label": "87224-87227 via Conventional from 87226 -> 87228", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87226, + "TargetID": 87228, + "Directional": true + } + ] + }, + { + "ID": 18041, + "SourceStructureID": 87277, + "TargetStructureID": 6162, + "Label": "87277-6162 via Conventional from 87288 -> 87289", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87288, + "TargetID": 87289, + "Directional": true + } + ] + }, + { + "ID": 18042, + "SourceStructureID": 87294, + "TargetStructureID": 5499, + "Label": "87294-5499 via Conventional from 87320 -> 87322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87320, + "TargetID": 87322, + "Directional": true + } + ] + }, + { + "ID": 18043, + "SourceStructureID": 87294, + "TargetStructureID": 6118, + "Label": "87294-6118 via Conventional from 87300 -> 65919, 87301 -> 87302", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87300, + "TargetID": 65919, + "Directional": true + }, + { + "SourceID": 87301, + "TargetID": 87302, + "Directional": true + } + ] + }, + { + "ID": 18044, + "SourceStructureID": 87294, + "TargetStructureID": 7024, + "Label": "87294-7024 via Conventional from 87323 -> 87332", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87323, + "TargetID": 87332, + "Directional": true + } + ] + }, + { + "ID": 18045, + "SourceStructureID": 87294, + "TargetStructureID": 87315, + "Label": "87294-87315 via Conventional from 87314 -> 87316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87314, + "TargetID": 87316, + "Directional": true + } + ] + }, + { + "ID": 18046, + "SourceStructureID": 87304, + "TargetStructureID": 87294, + "Label": "87304-87294 via Conventional from 87305 -> 87303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87305, + "TargetID": 87303, + "Directional": true + } + ] + }, + { + "ID": 18047, + "SourceStructureID": 87312, + "TargetStructureID": 87309, + "Label": "87312-87309 via Conventional from 87313 -> 87311", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87313, + "TargetID": 87311, + "Directional": true + } + ] + }, + { + "ID": 18048, + "SourceStructureID": 87337, + "TargetStructureID": 82677, + "Label": "87337-82677 via Conventional from 87338 -> 87336", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87338, + "TargetID": 87336, + "Directional": true + } + ] + }, + { + "ID": 18049, + "SourceStructureID": 87340, + "TargetStructureID": 82677, + "Label": "87340-82677 via Conventional from 87341 -> 87339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87341, + "TargetID": 87339, + "Directional": true + } + ] + }, + { + "ID": 18050, + "SourceStructureID": 87342, + "TargetStructureID": 87345, + "Label": "87342-87345 via Conventional from 87344 -> 87346", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87344, + "TargetID": 87346, + "Directional": true + } + ] + }, + { + "ID": 18051, + "SourceStructureID": 87342, + "TargetStructureID": 87361, + "Label": "87342-87361 via Conventional from 87360 -> 87362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87360, + "TargetID": 87362, + "Directional": true + } + ] + }, + { + "ID": 18052, + "SourceStructureID": 87342, + "TargetStructureID": 87377, + "Label": "87342-87377 via Conventional from 87376 -> 87381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87376, + "TargetID": 87381, + "Directional": true + } + ] + }, + { + "ID": 18053, + "SourceStructureID": 87345, + "TargetStructureID": 606, + "Label": "87345-606 via Conventional from 87358 -> 47380", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87358, + "TargetID": 47380, + "Directional": true + } + ] + }, + { + "ID": 18054, + "SourceStructureID": 87345, + "TargetStructureID": 87349, + "Label": "87345-87349 via Conventional from 87348 -> 87350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87348, + "TargetID": 87350, + "Directional": true + } + ] + }, + { + "ID": 18055, + "SourceStructureID": 87366, + "TargetStructureID": 87342, + "Label": "87366-87342 via Conventional from 87367 -> 87368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87367, + "TargetID": 87368, + "Directional": true + } + ] + }, + { + "ID": 18056, + "SourceStructureID": 87373, + "TargetStructureID": 87342, + "Label": "87373-87342 via Conventional from 87374 -> 87372", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87374, + "TargetID": 87372, + "Directional": true + } + ] + }, + { + "ID": 18057, + "SourceStructureID": 87379, + "TargetStructureID": 5150, + "Label": "87379-5150 via Ribbon Synapse from 131332 -> 5228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131332, + "TargetID": 5228, + "Directional": true + } + ] + }, + { + "ID": 18058, + "SourceStructureID": 87379, + "TargetStructureID": 87377, + "Label": "87379-87377 via Ribbon Synapse from 87380 -> 87378", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 87380, + "TargetID": 87378, + "Directional": true + } + ] + }, + { + "ID": 18059, + "SourceStructureID": 87387, + "TargetStructureID": 87385, + "Label": "87387-87385 via Conventional from 87388 -> 87386", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87388, + "TargetID": 87386, + "Directional": true + } + ] + }, + { + "ID": 18060, + "SourceStructureID": 87390, + "TargetStructureID": 87385, + "Label": "87390-87385 via Conventional from 87391 -> 87389", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87391, + "TargetID": 87389, + "Directional": true + } + ] + }, + { + "ID": 18061, + "SourceStructureID": 87403, + "TargetStructureID": 87342, + "Label": "87403-87342 via Conventional from 87404 -> 87402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87404, + "TargetID": 87402, + "Directional": true + } + ] + }, + { + "ID": 18062, + "SourceStructureID": 87419, + "TargetStructureID": 6047, + "Label": "87419-6047 via Conventional from 87431 -> 61329", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87431, + "TargetID": 61329, + "Directional": true + } + ] + }, + { + "ID": 18063, + "SourceStructureID": 87419, + "TargetStructureID": 6120, + "Label": "87419-6120 via Conventional from 87425 -> 87427, 111510 -> 61184", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87425, + "TargetID": 87427, + "Directional": true + }, + { + "SourceID": 111510, + "TargetID": 61184, + "Directional": true + } + ] + }, + { + "ID": 18064, + "SourceStructureID": 87419, + "TargetStructureID": 87428, + "Label": "87419-87428 via Conventional from 87426 -> 87429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87426, + "TargetID": 87429, + "Directional": true + } + ] + }, + { + "ID": 18065, + "SourceStructureID": 87432, + "TargetStructureID": 6118, + "Label": "87432-6118 via Conventional from 87443 -> 87444", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87443, + "TargetID": 87444, + "Directional": true + } + ] + }, + { + "ID": 18066, + "SourceStructureID": 87432, + "TargetStructureID": 6120, + "Label": "87432-6120 via Conventional from 87441 -> 61161, 87445 -> 87446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87441, + "TargetID": 61161, + "Directional": true + }, + { + "SourceID": 87445, + "TargetID": 87446, + "Directional": true + } + ] + }, + { + "ID": 18067, + "SourceStructureID": 87432, + "TargetStructureID": 87437, + "Label": "87432-87437 via Conventional from 87436 -> 87438", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87436, + "TargetID": 87438, + "Directional": true + } + ] + }, + { + "ID": 18068, + "SourceStructureID": 87447, + "TargetStructureID": 87454, + "Label": "87447-87454 via Conventional from 87453 -> 87455", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87453, + "TargetID": 87455, + "Directional": true + } + ] + }, + { + "ID": 18069, + "SourceStructureID": 87449, + "TargetStructureID": 5650, + "Label": "87449-5650 via Conventional from 87451 -> 87452", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87451, + "TargetID": 87452, + "Directional": true + } + ] + }, + { + "ID": 18070, + "SourceStructureID": 87449, + "TargetStructureID": 87447, + "Label": "87449-87447 via Conventional from 87450 -> 87448", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87450, + "TargetID": 87448, + "Directional": true + } + ] + }, + { + "ID": 18071, + "SourceStructureID": 87457, + "TargetStructureID": 87447, + "Label": "87457-87447 via Conventional from 87458 -> 87456", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87458, + "TargetID": 87456, + "Directional": true + } + ] + }, + { + "ID": 18072, + "SourceStructureID": 87487, + "TargetStructureID": 606, + "Label": "87487-606 via Conventional from 87491 -> 47463", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87491, + "TargetID": 47463, + "Directional": true + } + ] + }, + { + "ID": 18073, + "SourceStructureID": 87487, + "TargetStructureID": 6146, + "Label": "87487-6146 via Conventional from 87498 -> 87507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87498, + "TargetID": 87507, + "Directional": true + } + ] + }, + { + "ID": 18074, + "SourceStructureID": 87493, + "TargetStructureID": 179, + "Label": "87493-179 via Conventional from 87494 -> 87492, 87494 -> 128178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87494, + "TargetID": 87492, + "Directional": true + }, + { + "SourceID": 87494, + "TargetID": 128178, + "Directional": true + } + ] + }, + { + "ID": 18075, + "SourceStructureID": 87496, + "TargetStructureID": 173, + "Label": "87496-173 via Conventional from 128145 -> 128146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128145, + "TargetID": 128146, + "Directional": true + } + ] + }, + { + "ID": 18076, + "SourceStructureID": 87496, + "TargetStructureID": 179, + "Label": "87496-179 via Conventional from 87497 -> 87495", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87497, + "TargetID": 87495, + "Directional": true + } + ] + }, + { + "ID": 18077, + "SourceStructureID": 87503, + "TargetStructureID": 593, + "Label": "87503-593 via Conventional from 87505 -> 87506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87505, + "TargetID": 87506, + "Directional": true + } + ] + }, + { + "ID": 18078, + "SourceStructureID": 87531, + "TargetStructureID": 78909, + "Label": "87531-78909 via Conventional from 87532 -> 87530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87532, + "TargetID": 87530, + "Directional": true + } + ] + }, + { + "ID": 18079, + "SourceStructureID": 87534, + "TargetStructureID": 87531, + "Label": "87534-87531 via Conventional from 87535 -> 87533", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87535, + "TargetID": 87533, + "Directional": true + } + ] + }, + { + "ID": 18080, + "SourceStructureID": 87562, + "TargetStructureID": 14615, + "Label": "87562-14615 via Conventional from 87565 -> 87567, 87566 -> 87568", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87565, + "TargetID": 87567, + "Directional": true + }, + { + "SourceID": 87566, + "TargetID": 87568, + "Directional": true + } + ] + }, + { + "ID": 18081, + "SourceStructureID": 87569, + "TargetStructureID": 11043, + "Label": "87569-11043 via Conventional from 87570 -> 87571, 87575 -> 87578, 87576 -> 87577, 87579 -> 87580", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87570, + "TargetID": 87571, + "Directional": true + }, + { + "SourceID": 87575, + "TargetID": 87578, + "Directional": true + }, + { + "SourceID": 87576, + "TargetID": 87577, + "Directional": true + }, + { + "SourceID": 87579, + "TargetID": 87580, + "Directional": true + } + ] + }, + { + "ID": 18082, + "SourceStructureID": 87590, + "TargetStructureID": 78909, + "Label": "87590-78909 via Conventional from 87598 -> 87583", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87598, + "TargetID": 87583, + "Directional": true + } + ] + }, + { + "ID": 18083, + "SourceStructureID": 87590, + "TargetStructureID": 88473, + "Label": "87590-88473 via Conventional from 87595 -> 88475", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87595, + "TargetID": 88475, + "Directional": true + } + ] + }, + { + "ID": 18084, + "SourceStructureID": 87590, + "TargetStructureID": 88476, + "Label": "87590-88476 via Conventional from 87596 -> 88478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87596, + "TargetID": 88478, + "Directional": true + } + ] + }, + { + "ID": 18085, + "SourceStructureID": 87590, + "TargetStructureID": 88485, + "Label": "87590-88485 via Conventional from 88484 -> 88487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88484, + "TargetID": 88487, + "Directional": true + } + ] + }, + { + "ID": 18086, + "SourceStructureID": 87590, + "TargetStructureID": 88516, + "Label": "87590-88516 via Conventional from 88494 -> 88517", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88494, + "TargetID": 88517, + "Directional": true + } + ] + }, + { + "ID": 18087, + "SourceStructureID": 87590, + "TargetStructureID": 88554, + "Label": "87590-88554 via Conventional from 88547 -> 88555", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88547, + "TargetID": 88555, + "Directional": true + } + ] + }, + { + "ID": 18088, + "SourceStructureID": 87606, + "TargetStructureID": 5923, + "Label": "87606-5923 via Conventional from 87607 -> 9972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87607, + "TargetID": 9972, + "Directional": true + } + ] + }, + { + "ID": 18089, + "SourceStructureID": 87606, + "TargetStructureID": 11043, + "Label": "87606-11043 via Conventional from 87608 -> 87609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87608, + "TargetID": 87609, + "Directional": true + } + ] + }, + { + "ID": 18090, + "SourceStructureID": 87612, + "TargetStructureID": 78909, + "Label": "87612-78909 via Conventional from 87613 -> 87611", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87613, + "TargetID": 87611, + "Directional": true + } + ] + }, + { + "ID": 18091, + "SourceStructureID": 87647, + "TargetStructureID": 78909, + "Label": "87647-78909 via Conventional from 87648 -> 87646", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87648, + "TargetID": 87646, + "Directional": true + } + ] + }, + { + "ID": 18092, + "SourceStructureID": 87654, + "TargetStructureID": 78909, + "Label": "87654-78909 via Conventional from 87655 -> 87653", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87655, + "TargetID": 87653, + "Directional": true + } + ] + }, + { + "ID": 18093, + "SourceStructureID": 87678, + "TargetStructureID": 273, + "Label": "87678-273 via Conventional from 87680 -> 87681, 87682 -> 87683, 87684 -> 87685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87680, + "TargetID": 87681, + "Directional": true + }, + { + "SourceID": 87682, + "TargetID": 87683, + "Directional": true + }, + { + "SourceID": 87684, + "TargetID": 87685, + "Directional": true + } + ] + }, + { + "ID": 18094, + "SourceStructureID": 87721, + "TargetStructureID": 171, + "Label": "87721-171 via Conventional from 87722 -> 87720", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87722, + "TargetID": 87720, + "Directional": true + } + ] + }, + { + "ID": 18095, + "SourceStructureID": 87754, + "TargetStructureID": 5394, + "Label": "87754-5394 via Conventional from 87755 -> 77100", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87755, + "TargetID": 77100, + "Directional": true + } + ] + }, + { + "ID": 18096, + "SourceStructureID": 87808, + "TargetStructureID": 10961, + "Label": "87808-10961 via Conventional from 87809 -> 87807, 87810 -> 87811", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87809, + "TargetID": 87807, + "Directional": true + }, + { + "SourceID": 87810, + "TargetID": 87811, + "Directional": true + } + ] + }, + { + "ID": 18097, + "SourceStructureID": 87815, + "TargetStructureID": 177, + "Label": "87815-177 via Conventional from 87816 -> 27963", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87816, + "TargetID": 27963, + "Directional": true + } + ] + }, + { + "ID": 18098, + "SourceStructureID": 87929, + "TargetStructureID": 518, + "Label": "87929-518 via Conventional from 87930 -> 3524, 87931 -> 3521", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87930, + "TargetID": 3524, + "Directional": true + }, + { + "SourceID": 87931, + "TargetID": 3521, + "Directional": true + } + ] + }, + { + "ID": 18099, + "SourceStructureID": 87934, + "TargetStructureID": 476, + "Label": "87934-476 via Conventional from 87935 -> 87933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 87935, + "TargetID": 87933, + "Directional": true + } + ] + }, + { + "ID": 18100, + "SourceStructureID": 87972, + "TargetStructureID": 5107, + "Label": "87972-5107 via Adherens from 88029 -> 88030", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 88029, + "TargetID": 88030, + "Directional": true + } + ] + }, + { + "ID": 18101, + "SourceStructureID": 87972, + "TargetStructureID": 44346, + "Label": "87972-44346 via Adherens from 88043 -> 88044", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 88043, + "TargetID": 88044, + "Directional": true + } + ] + }, + { + "ID": 18102, + "SourceStructureID": 87972, + "TargetStructureID": 87972, + "Label": "87972-87972 via Ribbon Synapse from 88039 -> 88038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88039, + "TargetID": 88038, + "Directional": true + } + ] + }, + { + "ID": 18103, + "SourceStructureID": 88003, + "TargetStructureID": 87972, + "Label": "88003-87972 via Conventional from 88004 -> 88002", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88004, + "TargetID": 88002, + "Directional": true + } + ] + }, + { + "ID": 18104, + "SourceStructureID": 88005, + "TargetStructureID": 88003, + "Label": "88005-88003 via Conventional from 88006 -> 88007", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88006, + "TargetID": 88007, + "Directional": true + } + ] + }, + { + "ID": 18105, + "SourceStructureID": 88014, + "TargetStructureID": 87972, + "Label": "88014-87972 via Conventional from 88015 -> 88013", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88015, + "TargetID": 88013, + "Directional": true + } + ] + }, + { + "ID": 18106, + "SourceStructureID": 88017, + "TargetStructureID": 69162, + "Label": "88017-69162 via Conventional from 88019 -> 69234", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88019, + "TargetID": 69234, + "Directional": true + } + ] + }, + { + "ID": 18107, + "SourceStructureID": 88017, + "TargetStructureID": 88014, + "Label": "88017-88014 via Conventional from 88018 -> 88016", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88018, + "TargetID": 88016, + "Directional": true + } + ] + }, + { + "ID": 18108, + "SourceStructureID": 88036, + "TargetStructureID": 87972, + "Label": "88036-87972 via Ribbon Synapse from 88037 -> 88035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88037, + "TargetID": 88035, + "Directional": true + } + ] + }, + { + "ID": 18109, + "SourceStructureID": 88055, + "TargetStructureID": 44346, + "Label": "88055-44346 via Conventional from 88056 -> 44443", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88056, + "TargetID": 44443, + "Directional": true + } + ] + }, + { + "ID": 18110, + "SourceStructureID": 88125, + "TargetStructureID": 85856, + "Label": "88125-85856 via Conventional from 88126 -> 85888", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88126, + "TargetID": 85888, + "Directional": true + } + ] + }, + { + "ID": 18111, + "SourceStructureID": 88127, + "TargetStructureID": 85856, + "Label": "88127-85856 via Conventional from 88128 -> 11883", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88128, + "TargetID": 11883, + "Directional": true + } + ] + }, + { + "ID": 18112, + "SourceStructureID": 88129, + "TargetStructureID": 88127, + "Label": "88129-88127 via Conventional from 88130 -> 88131", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88130, + "TargetID": 88131, + "Directional": true + } + ] + }, + { + "ID": 18113, + "SourceStructureID": 88132, + "TargetStructureID": 85856, + "Label": "88132-85856 via Conventional from 88133 -> 11881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88133, + "TargetID": 11881, + "Directional": true + } + ] + }, + { + "ID": 18114, + "SourceStructureID": 88139, + "TargetStructureID": 7114, + "Label": "88139-7114 via Conventional from 88140 -> 88138", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88140, + "TargetID": 88138, + "Directional": true + } + ] + }, + { + "ID": 18115, + "SourceStructureID": 88159, + "TargetStructureID": 6169, + "Label": "88159-6169 via Ribbon Synapse from 88163 -> 88191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88163, + "TargetID": 88191, + "Directional": true + } + ] + }, + { + "ID": 18116, + "SourceStructureID": 88159, + "TargetStructureID": 88154, + "Label": "88159-88154 via Ribbon Synapse from 88161 -> 88158", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88161, + "TargetID": 88158, + "Directional": true + } + ] + }, + { + "ID": 18117, + "SourceStructureID": 88159, + "TargetStructureID": 88173, + "Label": "88159-88173 via Ribbon Synapse from 88176 -> 88175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88176, + "TargetID": 88175, + "Directional": true + } + ] + }, + { + "ID": 18118, + "SourceStructureID": 88199, + "TargetStructureID": 59482, + "Label": "88199-59482 via Conventional from 88241 -> 88242", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88241, + "TargetID": 88242, + "Directional": true + } + ] + }, + { + "ID": 18119, + "SourceStructureID": 88199, + "TargetStructureID": 61450, + "Label": "88199-61450 via Conventional from 88243 -> 61490", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88243, + "TargetID": 61490, + "Directional": true + } + ] + }, + { + "ID": 18120, + "SourceStructureID": 88199, + "TargetStructureID": 88205, + "Label": "88199-88205 via Conventional from 88203 -> 88207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88203, + "TargetID": 88207, + "Directional": true + } + ] + }, + { + "ID": 18121, + "SourceStructureID": 88199, + "TargetStructureID": 88215, + "Label": "88199-88215 via Conventional from 88214 -> 88216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88214, + "TargetID": 88216, + "Directional": true + } + ] + }, + { + "ID": 18122, + "SourceStructureID": 88199, + "TargetStructureID": 88223, + "Label": "88199-88223 via Conventional from 88222 -> 88224", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88222, + "TargetID": 88224, + "Directional": true + } + ] + }, + { + "ID": 18123, + "SourceStructureID": 88209, + "TargetStructureID": 88199, + "Label": "88209-88199 via Conventional from 88210 -> 88208", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88210, + "TargetID": 88208, + "Directional": true + } + ] + }, + { + "ID": 18124, + "SourceStructureID": 88212, + "TargetStructureID": 88199, + "Label": "88212-88199 via Conventional from 88213 -> 88211", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88213, + "TargetID": 88211, + "Directional": true + } + ] + }, + { + "ID": 18125, + "SourceStructureID": 88220, + "TargetStructureID": 88199, + "Label": "88220-88199 via Conventional from 88221 -> 88219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88221, + "TargetID": 88219, + "Directional": true + } + ] + }, + { + "ID": 18126, + "SourceStructureID": 88226, + "TargetStructureID": 88199, + "Label": "88226-88199 via Conventional from 88227 -> 88225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88227, + "TargetID": 88225, + "Directional": true + } + ] + }, + { + "ID": 18127, + "SourceStructureID": 88230, + "TargetStructureID": 88199, + "Label": "88230-88199 via Conventional from 88231 -> 88229", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88231, + "TargetID": 88229, + "Directional": true + } + ] + }, + { + "ID": 18128, + "SourceStructureID": 88239, + "TargetStructureID": 88199, + "Label": "88239-88199 via Conventional from 88240 -> 88238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88240, + "TargetID": 88238, + "Directional": true + } + ] + }, + { + "ID": 18129, + "SourceStructureID": 88246, + "TargetStructureID": 88257, + "Label": "88246-88257 via Conventional from 88256 -> 88258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88256, + "TargetID": 88258, + "Directional": true + } + ] + }, + { + "ID": 18130, + "SourceStructureID": 88247, + "TargetStructureID": 88252, + "Label": "88247-88252 via Ribbon Synapse from 88251 -> 88253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88251, + "TargetID": 88253, + "Directional": true + } + ] + }, + { + "ID": 18131, + "SourceStructureID": 88252, + "TargetStructureID": 88247, + "Label": "88252-88247 via Conventional from 88254 -> 88255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88254, + "TargetID": 88255, + "Directional": true + } + ] + }, + { + "ID": 18132, + "SourceStructureID": 88260, + "TargetStructureID": 176, + "Label": "88260-176 via Conventional from 88262 -> 5857, 88278 -> 5894, 88282 -> 88286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88262, + "TargetID": 5857, + "Directional": true + }, + { + "SourceID": 88278, + "TargetID": 5894, + "Directional": true + }, + { + "SourceID": 88282, + "TargetID": 88286, + "Directional": true + } + ] + }, + { + "ID": 18133, + "SourceStructureID": 88260, + "TargetStructureID": 43716, + "Label": "88260-43716 via Conventional from 88296 -> 43729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88296, + "TargetID": 43729, + "Directional": true + } + ] + }, + { + "ID": 18134, + "SourceStructureID": 88260, + "TargetStructureID": 88274, + "Label": "88260-88274 via Conventional from 88273 -> 88275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88273, + "TargetID": 88275, + "Directional": true + } + ] + }, + { + "ID": 18135, + "SourceStructureID": 88260, + "TargetStructureID": 88290, + "Label": "88260-88290 via Conventional from 88288 -> 88293", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88288, + "TargetID": 88293, + "Directional": true + } + ] + }, + { + "ID": 18136, + "SourceStructureID": 88260, + "TargetStructureID": 88305, + "Label": "88260-88305 via Conventional from 88304 -> 88306", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88304, + "TargetID": 88306, + "Directional": true + } + ] + }, + { + "ID": 18137, + "SourceStructureID": 88266, + "TargetStructureID": 88260, + "Label": "88266-88260 via Conventional from 88267 -> 88265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88267, + "TargetID": 88265, + "Directional": true + } + ] + }, + { + "ID": 18138, + "SourceStructureID": 88270, + "TargetStructureID": 10872, + "Label": "88270-10872 via Conventional from 88280 -> 88281, 88283 -> 88284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88280, + "TargetID": 88281, + "Directional": true + }, + { + "SourceID": 88283, + "TargetID": 88284, + "Directional": true + } + ] + }, + { + "ID": 18139, + "SourceStructureID": 88274, + "TargetStructureID": 595, + "Label": "88274-595 via Conventional from 88276 -> 46674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88276, + "TargetID": 46674, + "Directional": true + } + ] + }, + { + "ID": 18140, + "SourceStructureID": 88290, + "TargetStructureID": 5637, + "Label": "88290-5637 via Conventional from 88291 -> 88292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88291, + "TargetID": 88292, + "Directional": true + } + ] + }, + { + "ID": 18141, + "SourceStructureID": 88300, + "TargetStructureID": 88260, + "Label": "88300-88260 via Conventional from 88301 -> 88302", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88301, + "TargetID": 88302, + "Directional": true + } + ] + }, + { + "ID": 18142, + "SourceStructureID": 88313, + "TargetStructureID": 88260, + "Label": "88313-88260 via Conventional from 88314 -> 88312", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88314, + "TargetID": 88312, + "Directional": true + } + ] + }, + { + "ID": 18143, + "SourceStructureID": 88334, + "TargetStructureID": 170, + "Label": "88334-170 via Conventional from 88337 -> 1128", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88337, + "TargetID": 1128, + "Directional": true + } + ] + }, + { + "ID": 18144, + "SourceStructureID": 88344, + "TargetStructureID": 8580, + "Label": "88344-8580 via Conventional from 88345 -> 88346", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88345, + "TargetID": 88346, + "Directional": true + } + ] + }, + { + "ID": 18145, + "SourceStructureID": 88365, + "TargetStructureID": 606, + "Label": "88365-606 via Conventional from 88391 -> 51995", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88391, + "TargetID": 51995, + "Directional": true + } + ] + }, + { + "ID": 18146, + "SourceStructureID": 88370, + "TargetStructureID": 88365, + "Label": "88370-88365 via Conventional from 88373 -> 88374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88373, + "TargetID": 88374, + "Directional": true + } + ] + }, + { + "ID": 18147, + "SourceStructureID": 88375, + "TargetStructureID": 170, + "Label": "88375-170 via Conventional from 88376 -> 1200", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88376, + "TargetID": 1200, + "Directional": true + } + ] + }, + { + "ID": 18148, + "SourceStructureID": 88395, + "TargetStructureID": 6141, + "Label": "88395-6141 via Conventional from 88452 -> 61359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88452, + "TargetID": 61359, + "Directional": true + } + ] + }, + { + "ID": 18149, + "SourceStructureID": 88405, + "TargetStructureID": 170, + "Label": "88405-170 via Conventional from 88409 -> 1214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88409, + "TargetID": 1214, + "Directional": true + } + ] + }, + { + "ID": 18150, + "SourceStructureID": 88413, + "TargetStructureID": 170, + "Label": "88413-170 via Conventional from 88420 -> 1212", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88420, + "TargetID": 1212, + "Directional": true + } + ] + }, + { + "ID": 18151, + "SourceStructureID": 88450, + "TargetStructureID": 170, + "Label": "88450-170 via Conventional from 88451 -> 1220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88451, + "TargetID": 1220, + "Directional": true + } + ] + }, + { + "ID": 18152, + "SourceStructureID": 88453, + "TargetStructureID": 170, + "Label": "88453-170 via Conventional from 88454 -> 88455", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88454, + "TargetID": 88455, + "Directional": true + } + ] + }, + { + "ID": 18153, + "SourceStructureID": 88459, + "TargetStructureID": 88395, + "Label": "88459-88395 via Conventional from 88466 -> 88438", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88466, + "TargetID": 88438, + "Directional": true + } + ] + }, + { + "ID": 18154, + "SourceStructureID": 88459, + "TargetStructureID": 88468, + "Label": "88459-88468 via Conventional from 88467 -> 88469", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88467, + "TargetID": 88469, + "Directional": true + } + ] + }, + { + "ID": 18155, + "SourceStructureID": 88462, + "TargetStructureID": 170, + "Label": "88462-170 via Conventional from 88465 -> 1225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88465, + "TargetID": 1225, + "Directional": true + } + ] + }, + { + "ID": 18156, + "SourceStructureID": 88493, + "TargetStructureID": 170, + "Label": "88493-170 via Conventional from 88496 -> 51173", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88496, + "TargetID": 51173, + "Directional": true + } + ] + }, + { + "ID": 18157, + "SourceStructureID": 88513, + "TargetStructureID": 170, + "Label": "88513-170 via Conventional from 88514 -> 47931", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88514, + "TargetID": 47931, + "Directional": true + } + ] + }, + { + "ID": 18158, + "SourceStructureID": 88521, + "TargetStructureID": 170, + "Label": "88521-170 via Conventional from 88526 -> 47932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88526, + "TargetID": 47932, + "Directional": true + } + ] + }, + { + "ID": 18159, + "SourceStructureID": 88550, + "TargetStructureID": 170, + "Label": "88550-170 via Conventional from 88551 -> 88552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88551, + "TargetID": 88552, + "Directional": true + } + ] + }, + { + "ID": 18160, + "SourceStructureID": 88553, + "TargetStructureID": 170, + "Label": "88553-170 via Conventional from 88557 -> 1231", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88557, + "TargetID": 1231, + "Directional": true + } + ] + }, + { + "ID": 18161, + "SourceStructureID": 88594, + "TargetStructureID": 277, + "Label": "88594-277 via Conventional from 88605 -> 88607, 123546 -> 123545", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88605, + "TargetID": 88607, + "Directional": true + }, + { + "SourceID": 123546, + "TargetID": 123545, + "Directional": true + } + ] + }, + { + "ID": 18162, + "SourceStructureID": 88594, + "TargetStructureID": 88597, + "Label": "88594-88597 via Conventional from 88596 -> 88598", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88596, + "TargetID": 88598, + "Directional": true + } + ] + }, + { + "ID": 18163, + "SourceStructureID": 88594, + "TargetStructureID": 88618, + "Label": "88594-88618 via Conventional from 88617 -> 88619", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88617, + "TargetID": 88619, + "Directional": true + } + ] + }, + { + "ID": 18164, + "SourceStructureID": 88608, + "TargetStructureID": 277, + "Label": "88608-277 via Conventional from 88610 -> 88612", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88610, + "TargetID": 88612, + "Directional": true + } + ] + }, + { + "ID": 18165, + "SourceStructureID": 88614, + "TargetStructureID": 88608, + "Label": "88614-88608 via Conventional from 88616 -> 88613", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88616, + "TargetID": 88613, + "Directional": true + } + ] + }, + { + "ID": 18166, + "SourceStructureID": 88646, + "TargetStructureID": 5606, + "Label": "88646-5606 via Conventional from 88650 -> 53864", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88650, + "TargetID": 53864, + "Directional": true + } + ] + }, + { + "ID": 18167, + "SourceStructureID": 88666, + "TargetStructureID": 88675, + "Label": "88666-88675 via Conventional from 88674 -> 88676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88674, + "TargetID": 88676, + "Directional": true + } + ] + }, + { + "ID": 18168, + "SourceStructureID": 88666, + "TargetStructureID": 88726, + "Label": "88666-88726 via Conventional from 88725 -> 88727", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88725, + "TargetID": 88727, + "Directional": true + } + ] + }, + { + "ID": 18169, + "SourceStructureID": 88669, + "TargetStructureID": 88666, + "Label": "88669-88666 via Conventional from 88670 -> 88668", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88670, + "TargetID": 88668, + "Directional": true + } + ] + }, + { + "ID": 18170, + "SourceStructureID": 88678, + "TargetStructureID": 88666, + "Label": "88678-88666 via Conventional from 88679 -> 88677", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88679, + "TargetID": 88677, + "Directional": true + } + ] + }, + { + "ID": 18171, + "SourceStructureID": 88682, + "TargetStructureID": 170, + "Label": "88682-170 via Conventional from 88686 -> 88688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88686, + "TargetID": 88688, + "Directional": true + } + ] + }, + { + "ID": 18172, + "SourceStructureID": 88684, + "TargetStructureID": 11238, + "Label": "88684-11238 via Ribbon Synapse from 88685 -> 88683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 88685, + "TargetID": 88683, + "Directional": true + } + ] + }, + { + "ID": 18173, + "SourceStructureID": 88690, + "TargetStructureID": 170, + "Label": "88690-170 via Conventional from 88691 -> 28365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88691, + "TargetID": 28365, + "Directional": true + } + ] + }, + { + "ID": 18174, + "SourceStructureID": 88695, + "TargetStructureID": 88666, + "Label": "88695-88666 via Conventional from 88696 -> 88694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88696, + "TargetID": 88694, + "Directional": true + } + ] + }, + { + "ID": 18175, + "SourceStructureID": 88711, + "TargetStructureID": 170, + "Label": "88711-170 via Conventional from 88712 -> 1240", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88712, + "TargetID": 1240, + "Directional": true + } + ] + }, + { + "ID": 18176, + "SourceStructureID": 88715, + "TargetStructureID": 170, + "Label": "88715-170 via Conventional from 88716 -> 1241", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88716, + "TargetID": 1241, + "Directional": true + } + ] + }, + { + "ID": 18177, + "SourceStructureID": 88715, + "TargetStructureID": 606, + "Label": "88715-606 via Conventional from 99419 -> 52076", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99419, + "TargetID": 52076, + "Directional": true + } + ] + }, + { + "ID": 18178, + "SourceStructureID": 88723, + "TargetStructureID": 88666, + "Label": "88723-88666 via Conventional from 88724 -> 88722", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88724, + "TargetID": 88722, + "Directional": true + } + ] + }, + { + "ID": 18179, + "SourceStructureID": 88740, + "TargetStructureID": 606, + "Label": "88740-606 via Conventional from 88742 -> 54149", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88742, + "TargetID": 54149, + "Directional": true + } + ] + }, + { + "ID": 18180, + "SourceStructureID": 88740, + "TargetStructureID": 88737, + "Label": "88740-88737 via Conventional from 88741 -> 88739", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88741, + "TargetID": 88739, + "Directional": true + } + ] + }, + { + "ID": 18181, + "SourceStructureID": 88747, + "TargetStructureID": 170, + "Label": "88747-170 via Conventional from 88748 -> 88749", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88748, + "TargetID": 88749, + "Directional": true + } + ] + }, + { + "ID": 18182, + "SourceStructureID": 88761, + "TargetStructureID": 422, + "Label": "88761-422 via Conventional from 88791 -> 5690, 88796 -> 5691", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88791, + "TargetID": 5690, + "Directional": true + }, + { + "SourceID": 88796, + "TargetID": 5691, + "Directional": true + } + ] + }, + { + "ID": 18183, + "SourceStructureID": 88761, + "TargetStructureID": 464, + "Label": "88761-464 via Conventional from 88824 -> 87802, 88825 -> 87802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88824, + "TargetID": 87802, + "Directional": true + }, + { + "SourceID": 88825, + "TargetID": 87802, + "Directional": true + } + ] + }, + { + "ID": 18184, + "SourceStructureID": 88762, + "TargetStructureID": 88774, + "Label": "88762-88774 via Conventional from 88773 -> 88780", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88773, + "TargetID": 88780, + "Directional": true + } + ] + }, + { + "ID": 18185, + "SourceStructureID": 88781, + "TargetStructureID": 170, + "Label": "88781-170 via Conventional from 88786 -> 87284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88786, + "TargetID": 87284, + "Directional": true + } + ] + }, + { + "ID": 18186, + "SourceStructureID": 88790, + "TargetStructureID": 170, + "Label": "88790-170 via Conventional from 88792 -> 45396", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88792, + "TargetID": 45396, + "Directional": true + } + ] + }, + { + "ID": 18187, + "SourceStructureID": 88801, + "TargetStructureID": 170, + "Label": "88801-170 via Conventional from 88802 -> 88803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88802, + "TargetID": 88803, + "Directional": true + } + ] + }, + { + "ID": 18188, + "SourceStructureID": 88805, + "TargetStructureID": 170, + "Label": "88805-170 via Conventional from 88806 -> 87286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88806, + "TargetID": 87286, + "Directional": true + } + ] + }, + { + "ID": 18189, + "SourceStructureID": 88817, + "TargetStructureID": 170, + "Label": "88817-170 via Conventional from 88820 -> 1336", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88820, + "TargetID": 1336, + "Directional": true + } + ] + }, + { + "ID": 18190, + "SourceStructureID": 88822, + "TargetStructureID": 170, + "Label": "88822-170 via Conventional from 88944 -> 28376", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88944, + "TargetID": 28376, + "Directional": true + } + ] + }, + { + "ID": 18191, + "SourceStructureID": 88833, + "TargetStructureID": 517, + "Label": "88833-517 via Conventional from 88834 -> 88832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88834, + "TargetID": 88832, + "Directional": true + } + ] + }, + { + "ID": 18192, + "SourceStructureID": 88833, + "TargetStructureID": 61868, + "Label": "88833-61868 via Conventional from 123157 -> 81982", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123157, + "TargetID": 81982, + "Directional": true + } + ] + }, + { + "ID": 18193, + "SourceStructureID": 88841, + "TargetStructureID": 11250, + "Label": "88841-11250 via Conventional from 88842 -> 88840", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88842, + "TargetID": 88840, + "Directional": true + } + ] + }, + { + "ID": 18194, + "SourceStructureID": 88864, + "TargetStructureID": 579, + "Label": "88864-579 via Conventional from 88865 -> 88866, 88872 -> 88871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88865, + "TargetID": 88866, + "Directional": true + }, + { + "SourceID": 88872, + "TargetID": 88871, + "Directional": true + } + ] + }, + { + "ID": 18195, + "SourceStructureID": 88912, + "TargetStructureID": 5451, + "Label": "88912-5451 via Conventional from 88914 -> 44953", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88914, + "TargetID": 44953, + "Directional": true + } + ] + }, + { + "ID": 18196, + "SourceStructureID": 88915, + "TargetStructureID": 88912, + "Label": "88915-88912 via Conventional from 88916 -> 88913", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88916, + "TargetID": 88913, + "Directional": true + } + ] + }, + { + "ID": 18197, + "SourceStructureID": 88919, + "TargetStructureID": 88929, + "Label": "88919-88929 via Conventional from 88920 -> 88930", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88920, + "TargetID": 88930, + "Directional": true + } + ] + }, + { + "ID": 18198, + "SourceStructureID": 88919, + "TargetStructureID": 88936, + "Label": "88919-88936 via Conventional from 88938 -> 88937", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88938, + "TargetID": 88937, + "Directional": true + } + ] + }, + { + "ID": 18199, + "SourceStructureID": 88923, + "TargetStructureID": 88919, + "Label": "88923-88919 via Conventional from 88924 -> 88921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88924, + "TargetID": 88921, + "Directional": true + } + ] + }, + { + "ID": 18200, + "SourceStructureID": 88933, + "TargetStructureID": 88919, + "Label": "88933-88919 via Conventional from 88934 -> 88932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88934, + "TargetID": 88932, + "Directional": true + } + ] + }, + { + "ID": 18201, + "SourceStructureID": 88945, + "TargetStructureID": 170, + "Label": "88945-170 via Conventional from 88963 -> 88964", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88963, + "TargetID": 88964, + "Directional": true + } + ] + }, + { + "ID": 18202, + "SourceStructureID": 88947, + "TargetStructureID": 170, + "Label": "88947-170 via Conventional from 88961 -> 88962", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88961, + "TargetID": 88962, + "Directional": true + } + ] + }, + { + "ID": 18203, + "SourceStructureID": 88954, + "TargetStructureID": 170, + "Label": "88954-170 via Conventional from 88955 -> 88956", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88955, + "TargetID": 88956, + "Directional": true + } + ] + }, + { + "ID": 18204, + "SourceStructureID": 88957, + "TargetStructureID": 170, + "Label": "88957-170 via Conventional from 88958 -> 88959", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88958, + "TargetID": 88959, + "Directional": true + } + ] + }, + { + "ID": 18205, + "SourceStructureID": 88965, + "TargetStructureID": 170, + "Label": "88965-170 via Conventional from 88966 -> 88967", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88966, + "TargetID": 88967, + "Directional": true + } + ] + }, + { + "ID": 18206, + "SourceStructureID": 88984, + "TargetStructureID": 606, + "Label": "88984-606 via Conventional from 88989 -> 47417", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88989, + "TargetID": 47417, + "Directional": true + } + ] + }, + { + "ID": 18207, + "SourceStructureID": 88984, + "TargetStructureID": 5645, + "Label": "88984-5645 via Conventional from 88987 -> 39487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88987, + "TargetID": 39487, + "Directional": true + } + ] + }, + { + "ID": 18208, + "SourceStructureID": 88996, + "TargetStructureID": 170, + "Label": "88996-170 via Conventional from 88997 -> 88998", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88997, + "TargetID": 88998, + "Directional": true + } + ] + }, + { + "ID": 18209, + "SourceStructureID": 89000, + "TargetStructureID": 170, + "Label": "89000-170 via Conventional from 89001 -> 89002", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89001, + "TargetID": 89002, + "Directional": true + } + ] + }, + { + "ID": 18210, + "SourceStructureID": 89008, + "TargetStructureID": 4569, + "Label": "89008-4569 via Conventional from 99020 -> 47550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99020, + "TargetID": 47550, + "Directional": true + } + ] + }, + { + "ID": 18211, + "SourceStructureID": 89016, + "TargetStructureID": 170, + "Label": "89016-170 via Conventional from 133913 -> 133912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133913, + "TargetID": 133912, + "Directional": true + } + ] + }, + { + "ID": 18212, + "SourceStructureID": 89024, + "TargetStructureID": 170, + "Label": "89024-170 via Conventional from 89025 -> 89026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89025, + "TargetID": 89026, + "Directional": true + } + ] + }, + { + "ID": 18213, + "SourceStructureID": 89032, + "TargetStructureID": 49184, + "Label": "89032-49184 via Conventional from 118213 -> 49353", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118213, + "TargetID": 49353, + "Directional": true + } + ] + }, + { + "ID": 18214, + "SourceStructureID": 89032, + "TargetStructureID": 89029, + "Label": "89032-89029 via Conventional from 89033 -> 89031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89033, + "TargetID": 89031, + "Directional": true + } + ] + }, + { + "ID": 18215, + "SourceStructureID": 89039, + "TargetStructureID": 176, + "Label": "89039-176 via Conventional from 89053 -> 5847", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89053, + "TargetID": 5847, + "Directional": true + } + ] + }, + { + "ID": 18216, + "SourceStructureID": 89039, + "TargetStructureID": 595, + "Label": "89039-595 via Conventional from 89054 -> 46689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89054, + "TargetID": 46689, + "Directional": true + } + ] + }, + { + "ID": 18217, + "SourceStructureID": 89039, + "TargetStructureID": 89046, + "Label": "89039-89046 via Conventional from 89043 -> 89047", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89043, + "TargetID": 89047, + "Directional": true + } + ] + }, + { + "ID": 18218, + "SourceStructureID": 89042, + "TargetStructureID": 170, + "Label": "89042-170 via Conventional from 89044 -> 1350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89044, + "TargetID": 1350, + "Directional": true + } + ] + }, + { + "ID": 18219, + "SourceStructureID": 89066, + "TargetStructureID": 170, + "Label": "89066-170 via Conventional from 89067 -> 89065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89067, + "TargetID": 89065, + "Directional": true + } + ] + }, + { + "ID": 18220, + "SourceStructureID": 89066, + "TargetStructureID": 89063, + "Label": "89066-89063 via Conventional from 89067 -> 89068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89067, + "TargetID": 89068, + "Directional": true + } + ] + }, + { + "ID": 18221, + "SourceStructureID": 89073, + "TargetStructureID": 170, + "Label": "89073-170 via Conventional from 89076 -> 89069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89076, + "TargetID": 89069, + "Directional": true + } + ] + }, + { + "ID": 18222, + "SourceStructureID": 89085, + "TargetStructureID": 170, + "Label": "89085-170 via Conventional from 89515 -> 1248", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89515, + "TargetID": 1248, + "Directional": true + } + ] + }, + { + "ID": 18223, + "SourceStructureID": 89086, + "TargetStructureID": 89175, + "Label": "89086-89175 via Conventional from 89176 -> 89177", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89176, + "TargetID": 89177, + "Directional": true + } + ] + }, + { + "ID": 18224, + "SourceStructureID": 89097, + "TargetStructureID": 5284, + "Label": "89097-5284 via Conventional from 89099 -> 23495", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89099, + "TargetID": 23495, + "Directional": true + } + ] + }, + { + "ID": 18225, + "SourceStructureID": 89097, + "TargetStructureID": 53407, + "Label": "89097-53407 via Conventional from 89098 -> 53409", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89098, + "TargetID": 53409, + "Directional": true + } + ] + }, + { + "ID": 18226, + "SourceStructureID": 89106, + "TargetStructureID": 70500, + "Label": "89106-70500 via Conventional from 89109 -> 89103, 89110 -> 89104, 89111 -> 89105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89109, + "TargetID": 89103, + "Directional": true + }, + { + "SourceID": 89110, + "TargetID": 89104, + "Directional": true + }, + { + "SourceID": 89111, + "TargetID": 89105, + "Directional": true + } + ] + }, + { + "ID": 18227, + "SourceStructureID": 89120, + "TargetStructureID": 89133, + "Label": "89120-89133 via Ribbon Synapse from 89132 -> 89134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89132, + "TargetID": 89134, + "Directional": true + } + ] + }, + { + "ID": 18228, + "SourceStructureID": 89122, + "TargetStructureID": 89119, + "Label": "89122-89119 via Conventional from 89123 -> 89121", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89123, + "TargetID": 89121, + "Directional": true + } + ] + }, + { + "ID": 18229, + "SourceStructureID": 89124, + "TargetStructureID": 1021, + "Label": "89124-1021 via Conventional from 125651 -> 125652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125651, + "TargetID": 125652, + "Directional": true + } + ] + }, + { + "ID": 18230, + "SourceStructureID": 89124, + "TargetStructureID": 6120, + "Label": "89124-6120 via Conventional from 89339 -> 110556", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89339, + "TargetID": 110556, + "Directional": true + } + ] + }, + { + "ID": 18231, + "SourceStructureID": 89124, + "TargetStructureID": 22974, + "Label": "89124-22974 via Conventional from 89330 -> 89331", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89330, + "TargetID": 89331, + "Directional": true + } + ] + }, + { + "ID": 18232, + "SourceStructureID": 89124, + "TargetStructureID": 89355, + "Label": "89124-89355 via Conventional from 89353 -> 89357", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89353, + "TargetID": 89357, + "Directional": true + } + ] + }, + { + "ID": 18233, + "SourceStructureID": 89127, + "TargetStructureID": 89124, + "Label": "89127-89124 via Cistern Pre from 89131 -> 89130", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 89131, + "TargetID": 89130, + "Directional": true + } + ] + }, + { + "ID": 18234, + "SourceStructureID": 89127, + "TargetStructureID": 89124, + "Label": "89127-89124 via Conventional from 89128 -> 89126", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89128, + "TargetID": 89126, + "Directional": true + } + ] + }, + { + "ID": 18235, + "SourceStructureID": 89136, + "TargetStructureID": 87224, + "Label": "89136-87224 via Conventional from 89138 -> 89139", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89138, + "TargetID": 89139, + "Directional": true + } + ] + }, + { + "ID": 18236, + "SourceStructureID": 89136, + "TargetStructureID": 89133, + "Label": "89136-89133 via Conventional from 89137 -> 89135", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89137, + "TargetID": 89135, + "Directional": true + } + ] + }, + { + "ID": 18237, + "SourceStructureID": 89157, + "TargetStructureID": 168, + "Label": "89157-168 via Conventional from 89158 -> 89169", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89158, + "TargetID": 89169, + "Directional": true + } + ] + }, + { + "ID": 18238, + "SourceStructureID": 89160, + "TargetStructureID": 89120, + "Label": "89160-89120 via Conventional from 89162 -> 89159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89162, + "TargetID": 89159, + "Directional": true + } + ] + }, + { + "ID": 18239, + "SourceStructureID": 89175, + "TargetStructureID": 170, + "Label": "89175-170 via Conventional from 89178 -> 28367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89178, + "TargetID": 28367, + "Directional": true + } + ] + }, + { + "ID": 18240, + "SourceStructureID": 89181, + "TargetStructureID": 170, + "Label": "89181-170 via Conventional from 89184 -> 1358", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89184, + "TargetID": 1358, + "Directional": true + } + ] + }, + { + "ID": 18241, + "SourceStructureID": 89185, + "TargetStructureID": 170, + "Label": "89185-170 via Conventional from 89186 -> 28377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89186, + "TargetID": 28377, + "Directional": true + } + ] + }, + { + "ID": 18242, + "SourceStructureID": 89193, + "TargetStructureID": 170, + "Label": "89193-170 via Conventional from 89194 -> 89195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89194, + "TargetID": 89195, + "Directional": true + } + ] + }, + { + "ID": 18243, + "SourceStructureID": 89193, + "TargetStructureID": 71882, + "Label": "89193-71882 via Conventional from 90414 -> 90413", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90414, + "TargetID": 90413, + "Directional": true + } + ] + }, + { + "ID": 18244, + "SourceStructureID": 89199, + "TargetStructureID": 170, + "Label": "89199-170 via Conventional from 89200 -> 1356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89200, + "TargetID": 1356, + "Directional": true + } + ] + }, + { + "ID": 18245, + "SourceStructureID": 89222, + "TargetStructureID": 170, + "Label": "89222-170 via Conventional from 89223 -> 28378", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89223, + "TargetID": 28378, + "Directional": true + } + ] + }, + { + "ID": 18246, + "SourceStructureID": 89231, + "TargetStructureID": 170, + "Label": "89231-170 via Conventional from 89237 -> 28381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89237, + "TargetID": 28381, + "Directional": true + } + ] + }, + { + "ID": 18247, + "SourceStructureID": 89233, + "TargetStructureID": 419, + "Label": "89233-419 via Conventional from 89238 -> 89242", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89238, + "TargetID": 89242, + "Directional": true + } + ] + }, + { + "ID": 18248, + "SourceStructureID": 89233, + "TargetStructureID": 5118, + "Label": "89233-5118 via Conventional from 89241 -> 6541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89241, + "TargetID": 6541, + "Directional": true + } + ] + }, + { + "ID": 18249, + "SourceStructureID": 89240, + "TargetStructureID": 170, + "Label": "89240-170 via Conventional from 89245 -> 28380", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89245, + "TargetID": 28380, + "Directional": true + } + ] + }, + { + "ID": 18250, + "SourceStructureID": 89248, + "TargetStructureID": 170, + "Label": "89248-170 via Conventional from 89249 -> 1281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89249, + "TargetID": 1281, + "Directional": true + } + ] + }, + { + "ID": 18251, + "SourceStructureID": 89253, + "TargetStructureID": 591, + "Label": "89253-591 via Ribbon Synapse from 89254 -> 10298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89254, + "TargetID": 10298, + "Directional": true + } + ] + }, + { + "ID": 18252, + "SourceStructureID": 89285, + "TargetStructureID": 11246, + "Label": "89285-11246 via Conventional from 89286 -> 89281, 89287 -> 89282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89286, + "TargetID": 89281, + "Directional": true + }, + { + "SourceID": 89287, + "TargetID": 89282, + "Directional": true + } + ] + }, + { + "ID": 18253, + "SourceStructureID": 89305, + "TargetStructureID": 5514, + "Label": "89305-5514 via Conventional from 89308 -> 89309", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89308, + "TargetID": 89309, + "Directional": true + } + ] + }, + { + "ID": 18254, + "SourceStructureID": 89305, + "TargetStructureID": 10826, + "Label": "89305-10826 via Conventional from 89306 -> 89307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89306, + "TargetID": 89307, + "Directional": true + } + ] + }, + { + "ID": 18255, + "SourceStructureID": 89317, + "TargetStructureID": 89124, + "Label": "89317-89124 via Conventional from 89321 -> 89316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89321, + "TargetID": 89316, + "Directional": true + } + ] + }, + { + "ID": 18256, + "SourceStructureID": 89328, + "TargetStructureID": 89124, + "Label": "89328-89124 via Conventional from 89329 -> 89327", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89329, + "TargetID": 89327, + "Directional": true + } + ] + }, + { + "ID": 18257, + "SourceStructureID": 89347, + "TargetStructureID": 6120, + "Label": "89347-6120 via Conventional from 89348 -> 110551", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89348, + "TargetID": 110551, + "Directional": true + } + ] + }, + { + "ID": 18258, + "SourceStructureID": 89359, + "TargetStructureID": 170, + "Label": "89359-170 via Conventional from 89361 -> 89362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89361, + "TargetID": 89362, + "Directional": true + } + ] + }, + { + "ID": 18259, + "SourceStructureID": 89372, + "TargetStructureID": 170, + "Label": "89372-170 via Conventional from 89373 -> 89374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89373, + "TargetID": 89374, + "Directional": true + } + ] + }, + { + "ID": 18260, + "SourceStructureID": 89378, + "TargetStructureID": 4569, + "Label": "89378-4569 via Conventional from 98923 -> 30852", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98923, + "TargetID": 30852, + "Directional": true + } + ] + }, + { + "ID": 18261, + "SourceStructureID": 89388, + "TargetStructureID": 170, + "Label": "89388-170 via Conventional from 89389 -> 89390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89389, + "TargetID": 89390, + "Directional": true + } + ] + }, + { + "ID": 18262, + "SourceStructureID": 89388, + "TargetStructureID": 4569, + "Label": "89388-4569 via Conventional from 98957 -> 98956", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98957, + "TargetID": 98956, + "Directional": true + } + ] + }, + { + "ID": 18263, + "SourceStructureID": 89391, + "TargetStructureID": 170, + "Label": "89391-170 via Conventional from 89393 -> 89394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89393, + "TargetID": 89394, + "Directional": true + } + ] + }, + { + "ID": 18264, + "SourceStructureID": 89397, + "TargetStructureID": 170, + "Label": "89397-170 via Conventional from 89398 -> 89399", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89398, + "TargetID": 89399, + "Directional": true + } + ] + }, + { + "ID": 18265, + "SourceStructureID": 89407, + "TargetStructureID": 4569, + "Label": "89407-4569 via Conventional from 98673 -> 98672", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98673, + "TargetID": 98672, + "Directional": true + } + ] + }, + { + "ID": 18266, + "SourceStructureID": 89411, + "TargetStructureID": 170, + "Label": "89411-170 via Conventional from 89415 -> 89416", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89415, + "TargetID": 89416, + "Directional": true + } + ] + }, + { + "ID": 18267, + "SourceStructureID": 89413, + "TargetStructureID": 5396, + "Label": "89413-5396 via Conventional from 89414 -> 89412", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89414, + "TargetID": 89412, + "Directional": true + } + ] + }, + { + "ID": 18268, + "SourceStructureID": 89420, + "TargetStructureID": 518, + "Label": "89420-518 via Conventional from 89422 -> 89421, 89423 -> 3422, 89424 -> 3496", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89422, + "TargetID": 89421, + "Directional": true + }, + { + "SourceID": 89423, + "TargetID": 3422, + "Directional": true + }, + { + "SourceID": 89424, + "TargetID": 3496, + "Directional": true + } + ] + }, + { + "ID": 18269, + "SourceStructureID": 89427, + "TargetStructureID": 5396, + "Label": "89427-5396 via Conventional from 89428 -> 24587", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89428, + "TargetID": 24587, + "Directional": true + } + ] + }, + { + "ID": 18270, + "SourceStructureID": 89463, + "TargetStructureID": 170, + "Label": "89463-170 via Conventional from 89464 -> 89465", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89464, + "TargetID": 89465, + "Directional": true + } + ] + }, + { + "ID": 18271, + "SourceStructureID": 89478, + "TargetStructureID": 170, + "Label": "89478-170 via Conventional from 89487 -> 89488", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89487, + "TargetID": 89488, + "Directional": true + } + ] + }, + { + "ID": 18272, + "SourceStructureID": 89485, + "TargetStructureID": 170, + "Label": "89485-170 via Conventional from 89486 -> 1291", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89486, + "TargetID": 1291, + "Directional": true + } + ] + }, + { + "ID": 18273, + "SourceStructureID": 89501, + "TargetStructureID": 170, + "Label": "89501-170 via Conventional from 89506 -> 89507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89506, + "TargetID": 89507, + "Directional": true + } + ] + }, + { + "ID": 18274, + "SourceStructureID": 89503, + "TargetStructureID": 170, + "Label": "89503-170 via Conventional from 89505 -> 1246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89505, + "TargetID": 1246, + "Directional": true + } + ] + }, + { + "ID": 18275, + "SourceStructureID": 89511, + "TargetStructureID": 170, + "Label": "89511-170 via Conventional from 89514 -> 1256", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89514, + "TargetID": 1256, + "Directional": true + } + ] + }, + { + "ID": 18276, + "SourceStructureID": 89516, + "TargetStructureID": 6129, + "Label": "89516-6129 via Conventional from 91030 -> 91031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91030, + "TargetID": 91031, + "Directional": true + } + ] + }, + { + "ID": 18277, + "SourceStructureID": 89524, + "TargetStructureID": 89522, + "Label": "89524-89522 via Ribbon Synapse from 89526 -> 89529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89526, + "TargetID": 89529, + "Directional": true + } + ] + }, + { + "ID": 18278, + "SourceStructureID": 89536, + "TargetStructureID": 5396, + "Label": "89536-5396 via Ribbon Synapse from 89537 -> 89535", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89537, + "TargetID": 89535, + "Directional": true + } + ] + }, + { + "ID": 18279, + "SourceStructureID": 89536, + "TargetStructureID": 89538, + "Label": "89536-89538 via Ribbon Synapse from 89537 -> 89539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89537, + "TargetID": 89539, + "Directional": true + } + ] + }, + { + "ID": 18280, + "SourceStructureID": 89544, + "TargetStructureID": 89546, + "Label": "89544-89546 via Conventional from 89545 -> 89549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89545, + "TargetID": 89549, + "Directional": true + } + ] + }, + { + "ID": 18281, + "SourceStructureID": 89617, + "TargetStructureID": 64452, + "Label": "89617-64452 via Conventional from 89618 -> 89616", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89618, + "TargetID": 89616, + "Directional": true + } + ] + }, + { + "ID": 18282, + "SourceStructureID": 89631, + "TargetStructureID": 5729, + "Label": "89631-5729 via Conventional from 89633 -> 89629", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89633, + "TargetID": 89629, + "Directional": true + } + ] + }, + { + "ID": 18283, + "SourceStructureID": 89644, + "TargetStructureID": 89638, + "Label": "89644-89638 via Conventional from 89645 -> 89643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89645, + "TargetID": 89643, + "Directional": true + } + ] + }, + { + "ID": 18284, + "SourceStructureID": 89648, + "TargetStructureID": 89638, + "Label": "89648-89638 via Conventional from 89649 -> 89647", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89649, + "TargetID": 89647, + "Directional": true + } + ] + }, + { + "ID": 18285, + "SourceStructureID": 89652, + "TargetStructureID": 89638, + "Label": "89652-89638 via Conventional from 89653 -> 89651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89653, + "TargetID": 89651, + "Directional": true + } + ] + }, + { + "ID": 18286, + "SourceStructureID": 89654, + "TargetStructureID": 170, + "Label": "89654-170 via Conventional from 89657 -> 89658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89657, + "TargetID": 89658, + "Directional": true + } + ] + }, + { + "ID": 18287, + "SourceStructureID": 89660, + "TargetStructureID": 170, + "Label": "89660-170 via Conventional from 89661 -> 89662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89661, + "TargetID": 89662, + "Directional": true + } + ] + }, + { + "ID": 18288, + "SourceStructureID": 89664, + "TargetStructureID": 170, + "Label": "89664-170 via Conventional from 89665 -> 89666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89665, + "TargetID": 89666, + "Directional": true + } + ] + }, + { + "ID": 18289, + "SourceStructureID": 89670, + "TargetStructureID": 6203, + "Label": "89670-6203 via Conventional from 125779 -> 125778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125779, + "TargetID": 125778, + "Directional": true + } + ] + }, + { + "ID": 18290, + "SourceStructureID": 89676, + "TargetStructureID": 170, + "Label": "89676-170 via Conventional from 89678 -> 89679", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89678, + "TargetID": 89679, + "Directional": true + } + ] + }, + { + "ID": 18291, + "SourceStructureID": 89694, + "TargetStructureID": 6141, + "Label": "89694-6141 via Conventional from 89699 -> 61351", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89699, + "TargetID": 61351, + "Directional": true + } + ] + }, + { + "ID": 18292, + "SourceStructureID": 89701, + "TargetStructureID": 170, + "Label": "89701-170 via Conventional from 89702 -> 89703", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89702, + "TargetID": 89703, + "Directional": true + } + ] + }, + { + "ID": 18293, + "SourceStructureID": 89705, + "TargetStructureID": 170, + "Label": "89705-170 via Conventional from 89710 -> 89711", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89710, + "TargetID": 89711, + "Directional": true + } + ] + }, + { + "ID": 18294, + "SourceStructureID": 89707, + "TargetStructureID": 33272, + "Label": "89707-33272 via Conventional from 89708 -> 33275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89708, + "TargetID": 33275, + "Directional": true + } + ] + }, + { + "ID": 18295, + "SourceStructureID": 89720, + "TargetStructureID": 170, + "Label": "89720-170 via Conventional from 89725 -> 1254", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89725, + "TargetID": 1254, + "Directional": true + } + ] + }, + { + "ID": 18296, + "SourceStructureID": 89735, + "TargetStructureID": 170, + "Label": "89735-170 via Conventional from 89736 -> 1324", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89736, + "TargetID": 1324, + "Directional": true + } + ] + }, + { + "ID": 18297, + "SourceStructureID": 89756, + "TargetStructureID": 170, + "Label": "89756-170 via Conventional from 89758 -> 89759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89758, + "TargetID": 89759, + "Directional": true + } + ] + }, + { + "ID": 18298, + "SourceStructureID": 89757, + "TargetStructureID": 170, + "Label": "89757-170 via Conventional from 89767 -> 1267, 89767 -> 1268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89767, + "TargetID": 1267, + "Directional": true + }, + { + "SourceID": 89767, + "TargetID": 1268, + "Directional": true + } + ] + }, + { + "ID": 18299, + "SourceStructureID": 89760, + "TargetStructureID": 170, + "Label": "89760-170 via Conventional from 89766 -> 1265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89766, + "TargetID": 1265, + "Directional": true + } + ] + }, + { + "ID": 18300, + "SourceStructureID": 89775, + "TargetStructureID": 6142, + "Label": "89775-6142 via Conventional from 89783 -> 16114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89783, + "TargetID": 16114, + "Directional": true + } + ] + }, + { + "ID": 18301, + "SourceStructureID": 89775, + "TargetStructureID": 10412, + "Label": "89775-10412 via Conventional from 89806 -> 89807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89806, + "TargetID": 89807, + "Directional": true + } + ] + }, + { + "ID": 18302, + "SourceStructureID": 89775, + "TargetStructureID": 89788, + "Label": "89775-89788 via Conventional from 89787 -> 89789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89787, + "TargetID": 89789, + "Directional": true + } + ] + }, + { + "ID": 18303, + "SourceStructureID": 89775, + "TargetStructureID": 89809, + "Label": "89775-89809 via Conventional from 89808 -> 89810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89808, + "TargetID": 89810, + "Directional": true + } + ] + }, + { + "ID": 18304, + "SourceStructureID": 89780, + "TargetStructureID": 89775, + "Label": "89780-89775 via Conventional from 89781 -> 89779", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89781, + "TargetID": 89779, + "Directional": true + } + ] + }, + { + "ID": 18305, + "SourceStructureID": 89791, + "TargetStructureID": 89775, + "Label": "89791-89775 via Conventional from 89794 -> 89795", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89794, + "TargetID": 89795, + "Directional": true + } + ] + }, + { + "ID": 18306, + "SourceStructureID": 89804, + "TargetStructureID": 89775, + "Label": "89804-89775 via Conventional from 89805 -> 89803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89805, + "TargetID": 89803, + "Directional": true + } + ] + }, + { + "ID": 18307, + "SourceStructureID": 89811, + "TargetStructureID": 89814, + "Label": "89811-89814 via Conventional from 89813 -> 89817", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89813, + "TargetID": 89817, + "Directional": true + } + ] + }, + { + "ID": 18308, + "SourceStructureID": 89822, + "TargetStructureID": 89820, + "Label": "89822-89820 via Ribbon Synapse from 89823 -> 89824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89823, + "TargetID": 89824, + "Directional": true + } + ] + }, + { + "ID": 18309, + "SourceStructureID": 89833, + "TargetStructureID": 89831, + "Label": "89833-89831 via Conventional from 89834 -> 89832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89834, + "TargetID": 89832, + "Directional": true + } + ] + }, + { + "ID": 18310, + "SourceStructureID": 89836, + "TargetStructureID": 89831, + "Label": "89836-89831 via Conventional from 89843 -> 89842", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89843, + "TargetID": 89842, + "Directional": true + } + ] + }, + { + "ID": 18311, + "SourceStructureID": 89838, + "TargetStructureID": 89831, + "Label": "89838-89831 via Conventional from 89840 -> 89837", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89840, + "TargetID": 89837, + "Directional": true + } + ] + }, + { + "ID": 18312, + "SourceStructureID": 89851, + "TargetStructureID": 55319, + "Label": "89851-55319 via Conventional from 89982 -> 55322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89982, + "TargetID": 55322, + "Directional": true + } + ] + }, + { + "ID": 18313, + "SourceStructureID": 89851, + "TargetStructureID": 89938, + "Label": "89851-89938 via Conventional from 89937 -> 89939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89937, + "TargetID": 89939, + "Directional": true + } + ] + }, + { + "ID": 18314, + "SourceStructureID": 89855, + "TargetStructureID": 170, + "Label": "89855-170 via Conventional from 89870 -> 89871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89870, + "TargetID": 89871, + "Directional": true + } + ] + }, + { + "ID": 18315, + "SourceStructureID": 89860, + "TargetStructureID": 170, + "Label": "89860-170 via Conventional from 89875 -> 89876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89875, + "TargetID": 89876, + "Directional": true + } + ] + }, + { + "ID": 18316, + "SourceStructureID": 89868, + "TargetStructureID": 89851, + "Label": "89868-89851 via Conventional from 89869 -> 89867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89869, + "TargetID": 89867, + "Directional": true + } + ] + }, + { + "ID": 18317, + "SourceStructureID": 89872, + "TargetStructureID": 170, + "Label": "89872-170 via Conventional from 89873 -> 89874", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89873, + "TargetID": 89874, + "Directional": true + } + ] + }, + { + "ID": 18318, + "SourceStructureID": 89877, + "TargetStructureID": 170, + "Label": "89877-170 via Conventional from 89880 -> 89881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89880, + "TargetID": 89881, + "Directional": true + } + ] + }, + { + "ID": 18319, + "SourceStructureID": 89882, + "TargetStructureID": 170, + "Label": "89882-170 via Conventional from 89885 -> 89886", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89885, + "TargetID": 89886, + "Directional": true + } + ] + }, + { + "ID": 18320, + "SourceStructureID": 89887, + "TargetStructureID": 517, + "Label": "89887-517 via Conventional from 89891 -> 89892", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89891, + "TargetID": 89892, + "Directional": true + } + ] + }, + { + "ID": 18321, + "SourceStructureID": 89902, + "TargetStructureID": 170, + "Label": "89902-170 via Conventional from 89904 -> 89905", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89904, + "TargetID": 89905, + "Directional": true + } + ] + }, + { + "ID": 18322, + "SourceStructureID": 89907, + "TargetStructureID": 89851, + "Label": "89907-89851 via Conventional from 89908 -> 89906", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89908, + "TargetID": 89906, + "Directional": true + } + ] + }, + { + "ID": 18323, + "SourceStructureID": 89910, + "TargetStructureID": 89851, + "Label": "89910-89851 via Conventional from 89913 -> 89914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89913, + "TargetID": 89914, + "Directional": true + } + ] + }, + { + "ID": 18324, + "SourceStructureID": 89912, + "TargetStructureID": 3679, + "Label": "89912-3679 via Conventional from 89945 -> 4709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89945, + "TargetID": 4709, + "Directional": true + } + ] + }, + { + "ID": 18325, + "SourceStructureID": 89915, + "TargetStructureID": 170, + "Label": "89915-170 via Conventional from 89918 -> 89919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89918, + "TargetID": 89919, + "Directional": true + } + ] + }, + { + "ID": 18326, + "SourceStructureID": 89921, + "TargetStructureID": 170, + "Label": "89921-170 via Conventional from 89922 -> 89923", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89922, + "TargetID": 89923, + "Directional": true + } + ] + }, + { + "ID": 18327, + "SourceStructureID": 89928, + "TargetStructureID": 89851, + "Label": "89928-89851 via Ribbon Synapse from 89932 -> 89926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 89932, + "TargetID": 89926, + "Directional": true + } + ] + }, + { + "ID": 18328, + "SourceStructureID": 89941, + "TargetStructureID": 170, + "Label": "89941-170 via Conventional from 89942 -> 89943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89942, + "TargetID": 89943, + "Directional": true + } + ] + }, + { + "ID": 18329, + "SourceStructureID": 89944, + "TargetStructureID": 170, + "Label": "89944-170 via Conventional from 89946 -> 89947", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89946, + "TargetID": 89947, + "Directional": true + } + ] + }, + { + "ID": 18330, + "SourceStructureID": 89952, + "TargetStructureID": 170, + "Label": "89952-170 via Conventional from 89954 -> 89955", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89954, + "TargetID": 89955, + "Directional": true + } + ] + }, + { + "ID": 18331, + "SourceStructureID": 89965, + "TargetStructureID": 170, + "Label": "89965-170 via Conventional from 89967 -> 89968", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89967, + "TargetID": 89968, + "Directional": true + } + ] + }, + { + "ID": 18332, + "SourceStructureID": 89984, + "TargetStructureID": 471, + "Label": "89984-471 via Conventional from 90016 -> 90025, 90026 -> 90027, 90028 -> 90029, 90030 -> 8236, 90031 -> 90032", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90016, + "TargetID": 90025, + "Directional": true + }, + { + "SourceID": 90026, + "TargetID": 90027, + "Directional": true + }, + { + "SourceID": 90028, + "TargetID": 90029, + "Directional": true + }, + { + "SourceID": 90030, + "TargetID": 8236, + "Directional": true + }, + { + "SourceID": 90031, + "TargetID": 90032, + "Directional": true + } + ] + }, + { + "ID": 18333, + "SourceStructureID": 89988, + "TargetStructureID": 170, + "Label": "89988-170 via Conventional from 89995 -> 89996", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 89995, + "TargetID": 89996, + "Directional": true + } + ] + }, + { + "ID": 18334, + "SourceStructureID": 89989, + "TargetStructureID": 431, + "Label": "89989-431 via Conventional from 90042 -> 14376, 90087 -> 12672, 90099 -> 90104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90042, + "TargetID": 14376, + "Directional": true + }, + { + "SourceID": 90087, + "TargetID": 12672, + "Directional": true + }, + { + "SourceID": 90099, + "TargetID": 90104, + "Directional": true + } + ] + }, + { + "ID": 18335, + "SourceStructureID": 89989, + "TargetStructureID": 90040, + "Label": "89989-90040 via Conventional from 90039 -> 90041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90039, + "TargetID": 90041, + "Directional": true + } + ] + }, + { + "ID": 18336, + "SourceStructureID": 90004, + "TargetStructureID": 4569, + "Label": "90004-4569 via Conventional from 98482 -> 98483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98482, + "TargetID": 98483, + "Directional": true + } + ] + }, + { + "ID": 18337, + "SourceStructureID": 90013, + "TargetStructureID": 4569, + "Label": "90013-4569 via Conventional from 98549 -> 47496", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98549, + "TargetID": 47496, + "Directional": true + } + ] + }, + { + "ID": 18338, + "SourceStructureID": 90047, + "TargetStructureID": 170, + "Label": "90047-170 via Conventional from 90056 -> 1270", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90056, + "TargetID": 1270, + "Directional": true + } + ] + }, + { + "ID": 18339, + "SourceStructureID": 90049, + "TargetStructureID": 170, + "Label": "90049-170 via Conventional from 90050 -> 90051", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90050, + "TargetID": 90051, + "Directional": true + } + ] + }, + { + "ID": 18340, + "SourceStructureID": 90061, + "TargetStructureID": 595, + "Label": "90061-595 via Conventional from 90458 -> 90459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90458, + "TargetID": 90459, + "Directional": true + } + ] + }, + { + "ID": 18341, + "SourceStructureID": 90066, + "TargetStructureID": 170, + "Label": "90066-170 via Conventional from 90067 -> 90068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90067, + "TargetID": 90068, + "Directional": true + } + ] + }, + { + "ID": 18342, + "SourceStructureID": 90079, + "TargetStructureID": 170, + "Label": "90079-170 via Conventional from 90083 -> 28371", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90083, + "TargetID": 28371, + "Directional": true + } + ] + }, + { + "ID": 18343, + "SourceStructureID": 90102, + "TargetStructureID": 431, + "Label": "90102-431 via Conventional from 90103 -> 90101", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90103, + "TargetID": 90101, + "Directional": true + } + ] + }, + { + "ID": 18344, + "SourceStructureID": 90108, + "TargetStructureID": 89989, + "Label": "90108-89989 via Conventional from 90109 -> 90107", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90109, + "TargetID": 90107, + "Directional": true + } + ] + }, + { + "ID": 18345, + "SourceStructureID": 90111, + "TargetStructureID": 90118, + "Label": "90111-90118 via Conventional from 90117 -> 90119", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90117, + "TargetID": 90119, + "Directional": true + } + ] + }, + { + "ID": 18346, + "SourceStructureID": 90113, + "TargetStructureID": 90111, + "Label": "90113-90111 via Ribbon Synapse from 90114 -> 90112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90114, + "TargetID": 90112, + "Directional": true + } + ] + }, + { + "ID": 18347, + "SourceStructureID": 90118, + "TargetStructureID": 90149, + "Label": "90118-90149 via Conventional from 90147 -> 90150", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90147, + "TargetID": 90150, + "Directional": true + } + ] + }, + { + "ID": 18348, + "SourceStructureID": 90122, + "TargetStructureID": 90118, + "Label": "90122-90118 via Conventional from 90131 -> 90130", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90131, + "TargetID": 90130, + "Directional": true + } + ] + }, + { + "ID": 18349, + "SourceStructureID": 90134, + "TargetStructureID": 90118, + "Label": "90134-90118 via Conventional from 90135 -> 90133", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90135, + "TargetID": 90133, + "Directional": true + } + ] + }, + { + "ID": 18350, + "SourceStructureID": 90138, + "TargetStructureID": 90118, + "Label": "90138-90118 via Conventional from 90139 -> 90136", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90139, + "TargetID": 90136, + "Directional": true + } + ] + }, + { + "ID": 18351, + "SourceStructureID": 90140, + "TargetStructureID": 90118, + "Label": "90140-90118 via Conventional from 90141 -> 90137", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90141, + "TargetID": 90137, + "Directional": true + } + ] + }, + { + "ID": 18352, + "SourceStructureID": 90151, + "TargetStructureID": 328, + "Label": "90151-328 via Conventional from 90159 -> 90160", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90159, + "TargetID": 90160, + "Directional": true + } + ] + }, + { + "ID": 18353, + "SourceStructureID": 90151, + "TargetStructureID": 90156, + "Label": "90151-90156 via Conventional from 90155 -> 90157", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90155, + "TargetID": 90157, + "Directional": true + } + ] + }, + { + "ID": 18354, + "SourceStructureID": 90234, + "TargetStructureID": 71882, + "Label": "90234-71882 via Conventional from 90235 -> 90233", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90235, + "TargetID": 90233, + "Directional": true + } + ] + }, + { + "ID": 18355, + "SourceStructureID": 90243, + "TargetStructureID": 170, + "Label": "90243-170 via Conventional from 90244 -> 90245", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90244, + "TargetID": 90245, + "Directional": true + } + ] + }, + { + "ID": 18356, + "SourceStructureID": 90271, + "TargetStructureID": 170, + "Label": "90271-170 via Conventional from 90276 -> 1402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90276, + "TargetID": 1402, + "Directional": true + } + ] + }, + { + "ID": 18357, + "SourceStructureID": 90284, + "TargetStructureID": 4569, + "Label": "90284-4569 via Conventional from 98467 -> 52508", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98467, + "TargetID": 52508, + "Directional": true + } + ] + }, + { + "ID": 18358, + "SourceStructureID": 90296, + "TargetStructureID": 170, + "Label": "90296-170 via Conventional from 90297 -> 90298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90297, + "TargetID": 90298, + "Directional": true + } + ] + }, + { + "ID": 18359, + "SourceStructureID": 90303, + "TargetStructureID": 170, + "Label": "90303-170 via Conventional from 90306 -> 90305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90306, + "TargetID": 90305, + "Directional": true + } + ] + }, + { + "ID": 18360, + "SourceStructureID": 90311, + "TargetStructureID": 170, + "Label": "90311-170 via Conventional from 90313 -> 92477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90313, + "TargetID": 92477, + "Directional": true + } + ] + }, + { + "ID": 18361, + "SourceStructureID": 90328, + "TargetStructureID": 16026, + "Label": "90328-16026 via Conventional from 90412 -> 134808", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90412, + "TargetID": 134808, + "Directional": true + } + ] + }, + { + "ID": 18362, + "SourceStructureID": 90347, + "TargetStructureID": 170, + "Label": "90347-170 via Conventional from 90348 -> 90349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90348, + "TargetID": 90349, + "Directional": true + } + ] + }, + { + "ID": 18363, + "SourceStructureID": 90363, + "TargetStructureID": 170, + "Label": "90363-170 via Conventional from 90364 -> 90365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90364, + "TargetID": 90365, + "Directional": true + } + ] + }, + { + "ID": 18364, + "SourceStructureID": 90368, + "TargetStructureID": 170, + "Label": "90368-170 via Conventional from 90369 -> 1407", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90369, + "TargetID": 1407, + "Directional": true + } + ] + }, + { + "ID": 18365, + "SourceStructureID": 90381, + "TargetStructureID": 170, + "Label": "90381-170 via Conventional from 90382 -> 90385", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90382, + "TargetID": 90385, + "Directional": true + } + ] + }, + { + "ID": 18366, + "SourceStructureID": 90393, + "TargetStructureID": 170, + "Label": "90393-170 via Conventional from 90398 -> 90400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90398, + "TargetID": 90400, + "Directional": true + } + ] + }, + { + "ID": 18367, + "SourceStructureID": 90396, + "TargetStructureID": 71882, + "Label": "90396-71882 via Ribbon Synapse from 90397 -> 90395", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90397, + "TargetID": 90395, + "Directional": true + } + ] + }, + { + "ID": 18368, + "SourceStructureID": 90396, + "TargetStructureID": 90389, + "Label": "90396-90389 via Ribbon Synapse from 90397 -> 90392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 90397, + "TargetID": 90392, + "Directional": true + } + ] + }, + { + "ID": 18369, + "SourceStructureID": 90420, + "TargetStructureID": 170, + "Label": "90420-170 via Conventional from 92481 -> 92483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92481, + "TargetID": 92483, + "Directional": true + } + ] + }, + { + "ID": 18370, + "SourceStructureID": 90420, + "TargetStructureID": 324, + "Label": "90420-324 via Conventional from 92481 -> 92482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92481, + "TargetID": 92482, + "Directional": true + } + ] + }, + { + "ID": 18371, + "SourceStructureID": 90430, + "TargetStructureID": 71882, + "Label": "90430-71882 via Conventional from 90432 -> 90429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90432, + "TargetID": 90429, + "Directional": true + } + ] + }, + { + "ID": 18372, + "SourceStructureID": 90436, + "TargetStructureID": 170, + "Label": "90436-170 via Conventional from 90437 -> 90438", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90437, + "TargetID": 90438, + "Directional": true + } + ] + }, + { + "ID": 18373, + "SourceStructureID": 90440, + "TargetStructureID": 170, + "Label": "90440-170 via Conventional from 90442 -> 90443", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90442, + "TargetID": 90443, + "Directional": true + } + ] + }, + { + "ID": 18374, + "SourceStructureID": 90460, + "TargetStructureID": 4569, + "Label": "90460-4569 via Conventional from 98397 -> 30828", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98397, + "TargetID": 30828, + "Directional": true + } + ] + }, + { + "ID": 18375, + "SourceStructureID": 90468, + "TargetStructureID": 170, + "Label": "90468-170 via Conventional from 90469 -> 90470", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90469, + "TargetID": 90470, + "Directional": true + } + ] + }, + { + "ID": 18376, + "SourceStructureID": 90483, + "TargetStructureID": 372, + "Label": "90483-372 via Conventional from 90495 -> 90496, 90498 -> 45646", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90495, + "TargetID": 90496, + "Directional": true + }, + { + "SourceID": 90498, + "TargetID": 45646, + "Directional": true + } + ] + }, + { + "ID": 18377, + "SourceStructureID": 90483, + "TargetStructureID": 4569, + "Label": "90483-4569 via Conventional from 90484 -> 53683", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90484, + "TargetID": 53683, + "Directional": true + } + ] + }, + { + "ID": 18378, + "SourceStructureID": 90488, + "TargetStructureID": 90487, + "Label": "90488-90487 via Conventional from 90491 -> 90492", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90491, + "TargetID": 90492, + "Directional": true + } + ] + }, + { + "ID": 18379, + "SourceStructureID": 90526, + "TargetStructureID": 53115, + "Label": "90526-53115 via Conventional from 90527 -> 90524", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90527, + "TargetID": 90524, + "Directional": true + } + ] + }, + { + "ID": 18380, + "SourceStructureID": 90543, + "TargetStructureID": 170, + "Label": "90543-170 via Conventional from 90545 -> 90546", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90545, + "TargetID": 90546, + "Directional": true + } + ] + }, + { + "ID": 18381, + "SourceStructureID": 90544, + "TargetStructureID": 170, + "Label": "90544-170 via Conventional from 90548 -> 90547", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90548, + "TargetID": 90547, + "Directional": true + } + ] + }, + { + "ID": 18382, + "SourceStructureID": 90563, + "TargetStructureID": 170, + "Label": "90563-170 via Conventional from 90564 -> 1417", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90564, + "TargetID": 1417, + "Directional": true + } + ] + }, + { + "ID": 18383, + "SourceStructureID": 90568, + "TargetStructureID": 170, + "Label": "90568-170 via Conventional from 90569 -> 1429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90569, + "TargetID": 1429, + "Directional": true + } + ] + }, + { + "ID": 18384, + "SourceStructureID": 90585, + "TargetStructureID": 170, + "Label": "90585-170 via Conventional from 90586 -> 1421", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90586, + "TargetID": 1421, + "Directional": true + } + ] + }, + { + "ID": 18385, + "SourceStructureID": 90587, + "TargetStructureID": 170, + "Label": "90587-170 via Conventional from 90593 -> 90594", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90593, + "TargetID": 90594, + "Directional": true + } + ] + }, + { + "ID": 18386, + "SourceStructureID": 90588, + "TargetStructureID": 170, + "Label": "90588-170 via Conventional from 90589 -> 90590", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90589, + "TargetID": 90590, + "Directional": true + } + ] + }, + { + "ID": 18387, + "SourceStructureID": 90597, + "TargetStructureID": 170, + "Label": "90597-170 via Conventional from 90598 -> 90599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90598, + "TargetID": 90599, + "Directional": true + } + ] + }, + { + "ID": 18388, + "SourceStructureID": 90602, + "TargetStructureID": 90604, + "Label": "90602-90604 via Conventional from 90605 -> 90606", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90605, + "TargetID": 90606, + "Directional": true + } + ] + }, + { + "ID": 18389, + "SourceStructureID": 90607, + "TargetStructureID": 170, + "Label": "90607-170 via Conventional from 90608 -> 90609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90608, + "TargetID": 90609, + "Directional": true + } + ] + }, + { + "ID": 18390, + "SourceStructureID": 90615, + "TargetStructureID": 170, + "Label": "90615-170 via Conventional from 90616 -> 90617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90616, + "TargetID": 90617, + "Directional": true + } + ] + }, + { + "ID": 18391, + "SourceStructureID": 90618, + "TargetStructureID": 170, + "Label": "90618-170 via Conventional from 90619 -> 90620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90619, + "TargetID": 90620, + "Directional": true + } + ] + }, + { + "ID": 18392, + "SourceStructureID": 90642, + "TargetStructureID": 6115, + "Label": "90642-6115 via Conventional from 90643 -> 90641", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90643, + "TargetID": 90641, + "Directional": true + } + ] + }, + { + "ID": 18393, + "SourceStructureID": 90657, + "TargetStructureID": 352, + "Label": "90657-352 via Conventional from 90659 -> 90662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90659, + "TargetID": 90662, + "Directional": true + } + ] + }, + { + "ID": 18394, + "SourceStructureID": 90715, + "TargetStructureID": 452, + "Label": "90715-452 via Conventional from 90760 -> 43187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90760, + "TargetID": 43187, + "Directional": true + } + ] + }, + { + "ID": 18395, + "SourceStructureID": 90715, + "TargetStructureID": 4943, + "Label": "90715-4943 via Conventional from 91315 -> 8512", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91315, + "TargetID": 8512, + "Directional": true + } + ] + }, + { + "ID": 18396, + "SourceStructureID": 90761, + "TargetStructureID": 180, + "Label": "90761-180 via Conventional from 90762 -> 90758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90762, + "TargetID": 90758, + "Directional": true + } + ] + }, + { + "ID": 18397, + "SourceStructureID": 90769, + "TargetStructureID": 180, + "Label": "90769-180 via Conventional from 90770 -> 90768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90770, + "TargetID": 90768, + "Directional": true + } + ] + }, + { + "ID": 18398, + "SourceStructureID": 90772, + "TargetStructureID": 180, + "Label": "90772-180 via Conventional from 90773 -> 90771", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90773, + "TargetID": 90771, + "Directional": true + } + ] + }, + { + "ID": 18399, + "SourceStructureID": 90789, + "TargetStructureID": 180, + "Label": "90789-180 via Conventional from 90790 -> 90788", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90790, + "TargetID": 90788, + "Directional": true + } + ] + }, + { + "ID": 18400, + "SourceStructureID": 90800, + "TargetStructureID": 180, + "Label": "90800-180 via Conventional from 90802 -> 90799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90802, + "TargetID": 90799, + "Directional": true + } + ] + }, + { + "ID": 18401, + "SourceStructureID": 90806, + "TargetStructureID": 180, + "Label": "90806-180 via Conventional from 90807 -> 90805", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90807, + "TargetID": 90805, + "Directional": true + } + ] + }, + { + "ID": 18402, + "SourceStructureID": 90819, + "TargetStructureID": 180, + "Label": "90819-180 via Conventional from 90820 -> 6572", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90820, + "TargetID": 6572, + "Directional": true + } + ] + }, + { + "ID": 18403, + "SourceStructureID": 90819, + "TargetStructureID": 90822, + "Label": "90819-90822 via Conventional from 90821 -> 90826", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90821, + "TargetID": 90826, + "Directional": true + } + ] + }, + { + "ID": 18404, + "SourceStructureID": 90827, + "TargetStructureID": 180, + "Label": "90827-180 via Conventional from 90828 -> 6571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90828, + "TargetID": 6571, + "Directional": true + } + ] + }, + { + "ID": 18405, + "SourceStructureID": 90829, + "TargetStructureID": 166, + "Label": "90829-166 via Conventional from 90832 -> 39350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90832, + "TargetID": 39350, + "Directional": true + } + ] + }, + { + "ID": 18406, + "SourceStructureID": 90829, + "TargetStructureID": 180, + "Label": "90829-180 via Conventional from 90830 -> 6064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90830, + "TargetID": 6064, + "Directional": true + } + ] + }, + { + "ID": 18407, + "SourceStructureID": 90835, + "TargetStructureID": 180, + "Label": "90835-180 via Conventional from 90836 -> 90837", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90836, + "TargetID": 90837, + "Directional": true + } + ] + }, + { + "ID": 18408, + "SourceStructureID": 90839, + "TargetStructureID": 180, + "Label": "90839-180 via Conventional from 95876 -> 6570", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95876, + "TargetID": 6570, + "Directional": true + } + ] + }, + { + "ID": 18409, + "SourceStructureID": 90844, + "TargetStructureID": 180, + "Label": "90844-180 via Conventional from 95720 -> 95721", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95720, + "TargetID": 95721, + "Directional": true + } + ] + }, + { + "ID": 18410, + "SourceStructureID": 90877, + "TargetStructureID": 180, + "Label": "90877-180 via Conventional from 90878 -> 90876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90878, + "TargetID": 90876, + "Directional": true + } + ] + }, + { + "ID": 18411, + "SourceStructureID": 90919, + "TargetStructureID": 180, + "Label": "90919-180 via Conventional from 90920 -> 90918", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90920, + "TargetID": 90918, + "Directional": true + } + ] + }, + { + "ID": 18412, + "SourceStructureID": 90928, + "TargetStructureID": 6857, + "Label": "90928-6857 via Conventional from 90929 -> 7501", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90929, + "TargetID": 7501, + "Directional": true + } + ] + }, + { + "ID": 18413, + "SourceStructureID": 90932, + "TargetStructureID": 180, + "Label": "90932-180 via Conventional from 90933 -> 90931", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90933, + "TargetID": 90931, + "Directional": true + } + ] + }, + { + "ID": 18414, + "SourceStructureID": 90937, + "TargetStructureID": 180, + "Label": "90937-180 via Conventional from 90940 -> 90941", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90940, + "TargetID": 90941, + "Directional": true + } + ] + }, + { + "ID": 18415, + "SourceStructureID": 90943, + "TargetStructureID": 180, + "Label": "90943-180 via Conventional from 90944 -> 90942", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90944, + "TargetID": 90942, + "Directional": true + } + ] + }, + { + "ID": 18416, + "SourceStructureID": 90956, + "TargetStructureID": 90952, + "Label": "90956-90952 via Conventional from 90958 -> 90955", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90958, + "TargetID": 90955, + "Directional": true + } + ] + }, + { + "ID": 18417, + "SourceStructureID": 90961, + "TargetStructureID": 180, + "Label": "90961-180 via Conventional from 90962 -> 56871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90962, + "TargetID": 56871, + "Directional": true + } + ] + }, + { + "ID": 18418, + "SourceStructureID": 90969, + "TargetStructureID": 180, + "Label": "90969-180 via Conventional from 90970 -> 56875, 95508 -> 95509", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90970, + "TargetID": 56875, + "Directional": true + }, + { + "SourceID": 95508, + "TargetID": 95509, + "Directional": true + } + ] + }, + { + "ID": 18419, + "SourceStructureID": 90975, + "TargetStructureID": 180, + "Label": "90975-180 via Conventional from 90976 -> 56876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90976, + "TargetID": 56876, + "Directional": true + } + ] + }, + { + "ID": 18420, + "SourceStructureID": 90979, + "TargetStructureID": 180, + "Label": "90979-180 via Conventional from 90980 -> 90978", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90980, + "TargetID": 90978, + "Directional": true + } + ] + }, + { + "ID": 18421, + "SourceStructureID": 90981, + "TargetStructureID": 180, + "Label": "90981-180 via Conventional from 95514 -> 90977", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95514, + "TargetID": 90977, + "Directional": true + } + ] + }, + { + "ID": 18422, + "SourceStructureID": 90984, + "TargetStructureID": 180, + "Label": "90984-180 via Conventional from 90985 -> 90983", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90985, + "TargetID": 90983, + "Directional": true + } + ] + }, + { + "ID": 18423, + "SourceStructureID": 90989, + "TargetStructureID": 180, + "Label": "90989-180 via Conventional from 90990 -> 90988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90990, + "TargetID": 90988, + "Directional": true + } + ] + }, + { + "ID": 18424, + "SourceStructureID": 90991, + "TargetStructureID": 180, + "Label": "90991-180 via Conventional from 90992 -> 90987", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 90992, + "TargetID": 90987, + "Directional": true + } + ] + }, + { + "ID": 18425, + "SourceStructureID": 91000, + "TargetStructureID": 180, + "Label": "91000-180 via Conventional from 91001 -> 90999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91001, + "TargetID": 90999, + "Directional": true + } + ] + }, + { + "ID": 18426, + "SourceStructureID": 91032, + "TargetStructureID": 16026, + "Label": "91032-16026 via Conventional from 91033 -> 24097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91033, + "TargetID": 24097, + "Directional": true + } + ] + }, + { + "ID": 18427, + "SourceStructureID": 91036, + "TargetStructureID": 16026, + "Label": "91036-16026 via Conventional from 91040 -> 25735", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91040, + "TargetID": 25735, + "Directional": true + } + ] + }, + { + "ID": 18428, + "SourceStructureID": 91060, + "TargetStructureID": 91056, + "Label": "91060-91056 via Conventional from 91064 -> 91058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91064, + "TargetID": 91058, + "Directional": true + } + ] + }, + { + "ID": 18429, + "SourceStructureID": 91071, + "TargetStructureID": 16026, + "Label": "91071-16026 via Conventional from 91072 -> 91070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91072, + "TargetID": 91070, + "Directional": true + } + ] + }, + { + "ID": 18430, + "SourceStructureID": 91103, + "TargetStructureID": 16026, + "Label": "91103-16026 via Conventional from 91105 -> 25715", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91105, + "TargetID": 25715, + "Directional": true + } + ] + }, + { + "ID": 18431, + "SourceStructureID": 91114, + "TargetStructureID": 16026, + "Label": "91114-16026 via Conventional from 91115 -> 91113", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91115, + "TargetID": 91113, + "Directional": true + } + ] + }, + { + "ID": 18432, + "SourceStructureID": 91167, + "TargetStructureID": 16026, + "Label": "91167-16026 via Conventional from 91169 -> 91170", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91169, + "TargetID": 91170, + "Directional": true + } + ] + }, + { + "ID": 18433, + "SourceStructureID": 91176, + "TargetStructureID": 2610, + "Label": "91176-2610 via Conventional from 91177 -> 2933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91177, + "TargetID": 2933, + "Directional": true + } + ] + }, + { + "ID": 18434, + "SourceStructureID": 91220, + "TargetStructureID": 90715, + "Label": "91220-90715 via Ribbon Synapse from 91221 -> 91028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91221, + "TargetID": 91028, + "Directional": true + } + ] + }, + { + "ID": 18435, + "SourceStructureID": 91405, + "TargetStructureID": 6997, + "Label": "91405-6997 via Conventional from 91413 -> 70890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91413, + "TargetID": 70890, + "Directional": true + } + ] + }, + { + "ID": 18436, + "SourceStructureID": 91446, + "TargetStructureID": 5601, + "Label": "91446-5601 via Conventional from 91447 -> 91445", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91447, + "TargetID": 91445, + "Directional": true + } + ] + }, + { + "ID": 18437, + "SourceStructureID": 91459, + "TargetStructureID": 4876, + "Label": "91459-4876 via Conventional from 91461 -> 91458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91461, + "TargetID": 91458, + "Directional": true + } + ] + }, + { + "ID": 18438, + "SourceStructureID": 91507, + "TargetStructureID": 5601, + "Label": "91507-5601 via Conventional from 91509 -> 91350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91509, + "TargetID": 91350, + "Directional": true + } + ] + }, + { + "ID": 18439, + "SourceStructureID": 91537, + "TargetStructureID": 593, + "Label": "91537-593 via Conventional from 91538 -> 7744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91538, + "TargetID": 7744, + "Directional": true + } + ] + }, + { + "ID": 18440, + "SourceStructureID": 91542, + "TargetStructureID": 3116, + "Label": "91542-3116 via Conventional from 91543 -> 23809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91543, + "TargetID": 23809, + "Directional": true + } + ] + }, + { + "ID": 18441, + "SourceStructureID": 91551, + "TargetStructureID": 166, + "Label": "91551-166 via Conventional from 91552 -> 91553", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91552, + "TargetID": 91553, + "Directional": true + } + ] + }, + { + "ID": 18442, + "SourceStructureID": 91566, + "TargetStructureID": 21299, + "Label": "91566-21299 via Conventional from 91568 -> 91565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91568, + "TargetID": 91565, + "Directional": true + } + ] + }, + { + "ID": 18443, + "SourceStructureID": 91597, + "TargetStructureID": 1620, + "Label": "91597-1620 via Conventional from 91602 -> 16868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91602, + "TargetID": 16868, + "Directional": true + } + ] + }, + { + "ID": 18444, + "SourceStructureID": 91701, + "TargetStructureID": 21299, + "Label": "91701-21299 via Conventional from 92847 -> 48968", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92847, + "TargetID": 48968, + "Directional": true + } + ] + }, + { + "ID": 18445, + "SourceStructureID": 91730, + "TargetStructureID": 1620, + "Label": "91730-1620 via Ribbon Synapse from 91731 -> 16854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91731, + "TargetID": 16854, + "Directional": true + } + ] + }, + { + "ID": 18446, + "SourceStructureID": 91730, + "TargetStructureID": 41474, + "Label": "91730-41474 via Ribbon Synapse from 91731 -> 41516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 91731, + "TargetID": 41516, + "Directional": true + } + ] + }, + { + "ID": 18447, + "SourceStructureID": 91746, + "TargetStructureID": 21299, + "Label": "91746-21299 via Conventional from 91749 -> 48800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91749, + "TargetID": 48800, + "Directional": true + } + ] + }, + { + "ID": 18448, + "SourceStructureID": 91746, + "TargetStructureID": 91743, + "Label": "91746-91743 via Conventional from 91747 -> 91745", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 91747, + "TargetID": 91745, + "Directional": true + } + ] + }, + { + "ID": 18449, + "SourceStructureID": 91805, + "TargetStructureID": 5292, + "Label": "91805-5292 via Conventional from 92854 -> 51569", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92854, + "TargetID": 51569, + "Directional": true + } + ] + }, + { + "ID": 18450, + "SourceStructureID": 91812, + "TargetStructureID": 5650, + "Label": "91812-5650 via Conventional from 103887 -> 103888", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103887, + "TargetID": 103888, + "Directional": true + } + ] + }, + { + "ID": 18451, + "SourceStructureID": 91983, + "TargetStructureID": 176, + "Label": "91983-176 via Conventional from 128744 -> 128743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128744, + "TargetID": 128743, + "Directional": true + } + ] + }, + { + "ID": 18452, + "SourceStructureID": 92035, + "TargetStructureID": 6050, + "Label": "92035-6050 via Conventional from 92036 -> 56072", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92036, + "TargetID": 56072, + "Directional": true + } + ] + }, + { + "ID": 18453, + "SourceStructureID": 92091, + "TargetStructureID": 16026, + "Label": "92091-16026 via Conventional from 134452 -> 134451", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134452, + "TargetID": 134451, + "Directional": true + } + ] + }, + { + "ID": 18454, + "SourceStructureID": 92223, + "TargetStructureID": 16026, + "Label": "92223-16026 via Conventional from 92803 -> 92764", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92803, + "TargetID": 92764, + "Directional": true + } + ] + }, + { + "ID": 18455, + "SourceStructureID": 92239, + "TargetStructureID": 16026, + "Label": "92239-16026 via Conventional from 92811 -> 25541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92811, + "TargetID": 25541, + "Directional": true + } + ] + }, + { + "ID": 18456, + "SourceStructureID": 92245, + "TargetStructureID": 16026, + "Label": "92245-16026 via Conventional from 92819 -> 92820, 134417 -> 134416", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92819, + "TargetID": 92820, + "Directional": true + }, + { + "SourceID": 134417, + "TargetID": 134416, + "Directional": true + } + ] + }, + { + "ID": 18457, + "SourceStructureID": 92361, + "TargetStructureID": 16026, + "Label": "92361-16026 via Conventional from 92812 -> 92813", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92812, + "TargetID": 92813, + "Directional": true + } + ] + }, + { + "ID": 18458, + "SourceStructureID": 92380, + "TargetStructureID": 5283, + "Label": "92380-5283 via Conventional from 123948 -> 123947", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123948, + "TargetID": 123947, + "Directional": true + } + ] + }, + { + "ID": 18459, + "SourceStructureID": 92572, + "TargetStructureID": 16026, + "Label": "92572-16026 via Conventional from 134760 -> 134759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134760, + "TargetID": 134759, + "Directional": true + } + ] + }, + { + "ID": 18460, + "SourceStructureID": 92638, + "TargetStructureID": 5279, + "Label": "92638-5279 via Conventional from 92859 -> 92858", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92859, + "TargetID": 92858, + "Directional": true + } + ] + }, + { + "ID": 18461, + "SourceStructureID": 92785, + "TargetStructureID": 16026, + "Label": "92785-16026 via Conventional from 92786 -> 92787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92786, + "TargetID": 92787, + "Directional": true + } + ] + }, + { + "ID": 18462, + "SourceStructureID": 92865, + "TargetStructureID": 16026, + "Label": "92865-16026 via Conventional from 134709 -> 134708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134709, + "TargetID": 134708, + "Directional": true + } + ] + }, + { + "ID": 18463, + "SourceStructureID": 92942, + "TargetStructureID": 10943, + "Label": "92942-10943 via Conventional from 92945 -> 92946", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 92945, + "TargetID": 92946, + "Directional": true + } + ] + }, + { + "ID": 18464, + "SourceStructureID": 92954, + "TargetStructureID": 23870, + "Label": "92954-23870 via Ribbon Synapse from 92955 -> 92953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 92955, + "TargetID": 92953, + "Directional": true + } + ] + }, + { + "ID": 18465, + "SourceStructureID": 92970, + "TargetStructureID": 5294, + "Label": "92970-5294 via Cistern Pre from 93030 -> 93031", + "Type": "Cistern Pre", + "Directional": true, + "Links": [ + { + "SourceID": 93030, + "TargetID": 93031, + "Directional": true + } + ] + }, + { + "ID": 18466, + "SourceStructureID": 93069, + "TargetStructureID": 5592, + "Label": "93069-5592 via Conventional from 93070 -> 45968", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93070, + "TargetID": 45968, + "Directional": true + } + ] + }, + { + "ID": 18467, + "SourceStructureID": 93099, + "TargetStructureID": 400, + "Label": "93099-400 via Conventional from 93110 -> 1935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93110, + "TargetID": 1935, + "Directional": true + } + ] + }, + { + "ID": 18468, + "SourceStructureID": 93099, + "TargetStructureID": 6617, + "Label": "93099-6617 via Conventional from 93107 -> 93108", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93107, + "TargetID": 93108, + "Directional": true + } + ] + }, + { + "ID": 18469, + "SourceStructureID": 93099, + "TargetStructureID": 8749, + "Label": "93099-8749 via Conventional from 93100 -> 93101, 93102 -> 93103", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93100, + "TargetID": 93101, + "Directional": true + }, + { + "SourceID": 93102, + "TargetID": 93103, + "Directional": true + } + ] + }, + { + "ID": 18470, + "SourceStructureID": 93112, + "TargetStructureID": 5294, + "Label": "93112-5294 via Conventional from 93113 -> 32333", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93113, + "TargetID": 32333, + "Directional": true + } + ] + }, + { + "ID": 18471, + "SourceStructureID": 93139, + "TargetStructureID": 16026, + "Label": "93139-16026 via Conventional from 134836 -> 134835, 134839 -> 25565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134836, + "TargetID": 134835, + "Directional": true + }, + { + "SourceID": 134839, + "TargetID": 25565, + "Directional": true + } + ] + }, + { + "ID": 18472, + "SourceStructureID": 93172, + "TargetStructureID": 15976, + "Label": "93172-15976 via Conventional from 93173 -> 93171", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93173, + "TargetID": 93171, + "Directional": true + } + ] + }, + { + "ID": 18473, + "SourceStructureID": 93277, + "TargetStructureID": 3679, + "Label": "93277-3679 via Conventional from 93278 -> 14919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93278, + "TargetID": 14919, + "Directional": true + } + ] + }, + { + "ID": 18474, + "SourceStructureID": 93315, + "TargetStructureID": 5297, + "Label": "93315-5297 via Conventional from 93316 -> 53666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93316, + "TargetID": 53666, + "Directional": true + } + ] + }, + { + "ID": 18475, + "SourceStructureID": 93325, + "TargetStructureID": 5297, + "Label": "93325-5297 via Conventional from 93326 -> 50318", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93326, + "TargetID": 50318, + "Directional": true + } + ] + }, + { + "ID": 18476, + "SourceStructureID": 93336, + "TargetStructureID": 5297, + "Label": "93336-5297 via Conventional from 93338 -> 53695", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93338, + "TargetID": 53695, + "Directional": true + } + ] + }, + { + "ID": 18477, + "SourceStructureID": 93371, + "TargetStructureID": 5297, + "Label": "93371-5297 via Conventional from 93372 -> 53650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93372, + "TargetID": 53650, + "Directional": true + } + ] + }, + { + "ID": 18478, + "SourceStructureID": 93386, + "TargetStructureID": 5297, + "Label": "93386-5297 via Conventional from 93387 -> 53651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93387, + "TargetID": 53651, + "Directional": true + } + ] + }, + { + "ID": 18479, + "SourceStructureID": 93396, + "TargetStructureID": 5278, + "Label": "93396-5278 via Conventional from 93406 -> 50312", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93406, + "TargetID": 50312, + "Directional": true + } + ] + }, + { + "ID": 18480, + "SourceStructureID": 93403, + "TargetStructureID": 5278, + "Label": "93403-5278 via Conventional from 93405 -> 50311", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93405, + "TargetID": 50311, + "Directional": true + } + ] + }, + { + "ID": 18481, + "SourceStructureID": 93407, + "TargetStructureID": 5278, + "Label": "93407-5278 via Conventional from 93410 -> 50310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93410, + "TargetID": 50310, + "Directional": true + } + ] + }, + { + "ID": 18482, + "SourceStructureID": 93407, + "TargetStructureID": 93413, + "Label": "93407-93413 via Conventional from 147310 -> 147311", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147310, + "TargetID": 147311, + "Directional": true + } + ] + }, + { + "ID": 18483, + "SourceStructureID": 93456, + "TargetStructureID": 5711, + "Label": "93456-5711 via Conventional from 93457 -> 93458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93457, + "TargetID": 93458, + "Directional": true + } + ] + }, + { + "ID": 18484, + "SourceStructureID": 93465, + "TargetStructureID": 5278, + "Label": "93465-5278 via Conventional from 93466 -> 53599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93466, + "TargetID": 53599, + "Directional": true + } + ] + }, + { + "ID": 18485, + "SourceStructureID": 93489, + "TargetStructureID": 93486, + "Label": "93489-93486 via Ribbon Synapse from 93490 -> 93487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 93490, + "TargetID": 93487, + "Directional": true + } + ] + }, + { + "ID": 18486, + "SourceStructureID": 93494, + "TargetStructureID": 93486, + "Label": "93494-93486 via Conventional from 93500 -> 93501", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93500, + "TargetID": 93501, + "Directional": true + } + ] + }, + { + "ID": 18487, + "SourceStructureID": 93555, + "TargetStructureID": 5528, + "Label": "93555-5528 via Conventional from 93556 -> 36391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93556, + "TargetID": 36391, + "Directional": true + } + ] + }, + { + "ID": 18488, + "SourceStructureID": 93557, + "TargetStructureID": 5528, + "Label": "93557-5528 via Conventional from 93558 -> 36392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93558, + "TargetID": 36392, + "Directional": true + } + ] + }, + { + "ID": 18489, + "SourceStructureID": 93574, + "TargetStructureID": 5468, + "Label": "93574-5468 via Conventional from 93576 -> 45721", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93576, + "TargetID": 45721, + "Directional": true + } + ] + }, + { + "ID": 18490, + "SourceStructureID": 93634, + "TargetStructureID": 64939, + "Label": "93634-64939 via Conventional from 93635 -> 93632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93635, + "TargetID": 93632, + "Directional": true + } + ] + }, + { + "ID": 18491, + "SourceStructureID": 93685, + "TargetStructureID": 7040, + "Label": "93685-7040 via Conventional from 93689 -> 93683", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93689, + "TargetID": 93683, + "Directional": true + } + ] + }, + { + "ID": 18492, + "SourceStructureID": 93920, + "TargetStructureID": 5528, + "Label": "93920-5528 via Conventional from 93921 -> 93919", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93921, + "TargetID": 93919, + "Directional": true + } + ] + }, + { + "ID": 18493, + "SourceStructureID": 93923, + "TargetStructureID": 5528, + "Label": "93923-5528 via Conventional from 93930 -> 93599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93930, + "TargetID": 93599, + "Directional": true + } + ] + }, + { + "ID": 18494, + "SourceStructureID": 93928, + "TargetStructureID": 25402, + "Label": "93928-25402 via Conventional from 93929 -> 32277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93929, + "TargetID": 32277, + "Directional": true + } + ] + }, + { + "ID": 18495, + "SourceStructureID": 93931, + "TargetStructureID": 5528, + "Label": "93931-5528 via Conventional from 93934 -> 93596", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93934, + "TargetID": 93596, + "Directional": true + } + ] + }, + { + "ID": 18496, + "SourceStructureID": 93935, + "TargetStructureID": 5528, + "Label": "93935-5528 via Conventional from 93936 -> 93595", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93936, + "TargetID": 93595, + "Directional": true + } + ] + }, + { + "ID": 18497, + "SourceStructureID": 93938, + "TargetStructureID": 5528, + "Label": "93938-5528 via Conventional from 93939 -> 93597", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93939, + "TargetID": 93597, + "Directional": true + } + ] + }, + { + "ID": 18498, + "SourceStructureID": 93938, + "TargetStructureID": 5530, + "Label": "93938-5530 via Conventional from 126445 -> 126443", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126445, + "TargetID": 126443, + "Directional": true + } + ] + }, + { + "ID": 18499, + "SourceStructureID": 93964, + "TargetStructureID": 5528, + "Label": "93964-5528 via Conventional from 93965 -> 93955", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93965, + "TargetID": 93955, + "Directional": true + } + ] + }, + { + "ID": 18500, + "SourceStructureID": 93975, + "TargetStructureID": 5528, + "Label": "93975-5528 via Conventional from 93986 -> 93985", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93986, + "TargetID": 93985, + "Directional": true + } + ] + }, + { + "ID": 18501, + "SourceStructureID": 93979, + "TargetStructureID": 5528, + "Label": "93979-5528 via Conventional from 93980 -> 93981", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93980, + "TargetID": 93981, + "Directional": true + } + ] + }, + { + "ID": 18502, + "SourceStructureID": 93991, + "TargetStructureID": 5528, + "Label": "93991-5528 via Conventional from 93992 -> 93598", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93992, + "TargetID": 93598, + "Directional": true + } + ] + }, + { + "ID": 18503, + "SourceStructureID": 94005, + "TargetStructureID": 5528, + "Label": "94005-5528 via Conventional from 94006 -> 93594", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94006, + "TargetID": 93594, + "Directional": true + } + ] + }, + { + "ID": 18504, + "SourceStructureID": 94007, + "TargetStructureID": 5528, + "Label": "94007-5528 via Conventional from 94014 -> 93593", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94014, + "TargetID": 93593, + "Directional": true + } + ] + }, + { + "ID": 18505, + "SourceStructureID": 94008, + "TargetStructureID": 5528, + "Label": "94008-5528 via Conventional from 94009 -> 93590", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94009, + "TargetID": 93590, + "Directional": true + } + ] + }, + { + "ID": 18506, + "SourceStructureID": 94010, + "TargetStructureID": 5528, + "Label": "94010-5528 via Conventional from 94011 -> 93589", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94011, + "TargetID": 93589, + "Directional": true + } + ] + }, + { + "ID": 18507, + "SourceStructureID": 94023, + "TargetStructureID": 5528, + "Label": "94023-5528 via Conventional from 94024 -> 93581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94024, + "TargetID": 93581, + "Directional": true + } + ] + }, + { + "ID": 18508, + "SourceStructureID": 94031, + "TargetStructureID": 5528, + "Label": "94031-5528 via Conventional from 94032 -> 94033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94032, + "TargetID": 94033, + "Directional": true + } + ] + }, + { + "ID": 18509, + "SourceStructureID": 94035, + "TargetStructureID": 5528, + "Label": "94035-5528 via Conventional from 94036 -> 94037", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94036, + "TargetID": 94037, + "Directional": true + } + ] + }, + { + "ID": 18510, + "SourceStructureID": 94048, + "TargetStructureID": 5528, + "Label": "94048-5528 via Conventional from 94049 -> 94050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94049, + "TargetID": 94050, + "Directional": true + } + ] + }, + { + "ID": 18511, + "SourceStructureID": 94116, + "TargetStructureID": 5528, + "Label": "94116-5528 via Conventional from 94117 -> 93600", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94117, + "TargetID": 93600, + "Directional": true + } + ] + }, + { + "ID": 18512, + "SourceStructureID": 94118, + "TargetStructureID": 5528, + "Label": "94118-5528 via Conventional from 94119 -> 94120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94119, + "TargetID": 94120, + "Directional": true + } + ] + }, + { + "ID": 18513, + "SourceStructureID": 94130, + "TargetStructureID": 5528, + "Label": "94130-5528 via Conventional from 94132 -> 94133", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94132, + "TargetID": 94133, + "Directional": true + } + ] + }, + { + "ID": 18514, + "SourceStructureID": 94136, + "TargetStructureID": 5528, + "Label": "94136-5528 via Conventional from 94137 -> 94138", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94137, + "TargetID": 94138, + "Directional": true + } + ] + }, + { + "ID": 18515, + "SourceStructureID": 94139, + "TargetStructureID": 5528, + "Label": "94139-5528 via Conventional from 94140 -> 94141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94140, + "TargetID": 94141, + "Directional": true + } + ] + }, + { + "ID": 18516, + "SourceStructureID": 94153, + "TargetStructureID": 5528, + "Label": "94153-5528 via Conventional from 94175 -> 94176", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94175, + "TargetID": 94176, + "Directional": true + } + ] + }, + { + "ID": 18517, + "SourceStructureID": 94165, + "TargetStructureID": 5528, + "Label": "94165-5528 via Conventional from 94171 -> 94172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94171, + "TargetID": 94172, + "Directional": true + } + ] + }, + { + "ID": 18518, + "SourceStructureID": 94178, + "TargetStructureID": 5528, + "Label": "94178-5528 via Conventional from 94180 -> 94179", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94180, + "TargetID": 94179, + "Directional": true + } + ] + }, + { + "ID": 18519, + "SourceStructureID": 94252, + "TargetStructureID": 5528, + "Label": "94252-5528 via Conventional from 94278 -> 94280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94278, + "TargetID": 94280, + "Directional": true + } + ] + }, + { + "ID": 18520, + "SourceStructureID": 94255, + "TargetStructureID": 5528, + "Label": "94255-5528 via Conventional from 94259 -> 94260", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94259, + "TargetID": 94260, + "Directional": true + } + ] + }, + { + "ID": 18521, + "SourceStructureID": 94270, + "TargetStructureID": 5528, + "Label": "94270-5528 via Conventional from 94276 -> 94277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94276, + "TargetID": 94277, + "Directional": true + } + ] + }, + { + "ID": 18522, + "SourceStructureID": 94281, + "TargetStructureID": 5528, + "Label": "94281-5528 via Conventional from 94282 -> 94283", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94282, + "TargetID": 94283, + "Directional": true + } + ] + }, + { + "ID": 18523, + "SourceStructureID": 94288, + "TargetStructureID": 5528, + "Label": "94288-5528 via Conventional from 94289 -> 94290", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94289, + "TargetID": 94290, + "Directional": true + } + ] + }, + { + "ID": 18524, + "SourceStructureID": 94297, + "TargetStructureID": 5528, + "Label": "94297-5528 via Conventional from 94302 -> 94301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94302, + "TargetID": 94301, + "Directional": true + } + ] + }, + { + "ID": 18525, + "SourceStructureID": 94312, + "TargetStructureID": 5528, + "Label": "94312-5528 via Conventional from 94313 -> 94314", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94313, + "TargetID": 94314, + "Directional": true + } + ] + }, + { + "ID": 18526, + "SourceStructureID": 94320, + "TargetStructureID": 5528, + "Label": "94320-5528 via Conventional from 94321 -> 94322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94321, + "TargetID": 94322, + "Directional": true + } + ] + }, + { + "ID": 18527, + "SourceStructureID": 94331, + "TargetStructureID": 5528, + "Label": "94331-5528 via Conventional from 94332 -> 94333", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94332, + "TargetID": 94333, + "Directional": true + } + ] + }, + { + "ID": 18528, + "SourceStructureID": 94334, + "TargetStructureID": 5528, + "Label": "94334-5528 via Conventional from 94335 -> 94336", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94335, + "TargetID": 94336, + "Directional": true + } + ] + }, + { + "ID": 18529, + "SourceStructureID": 94337, + "TargetStructureID": 5528, + "Label": "94337-5528 via Conventional from 94338 -> 94339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94338, + "TargetID": 94339, + "Directional": true + } + ] + }, + { + "ID": 18530, + "SourceStructureID": 94340, + "TargetStructureID": 5528, + "Label": "94340-5528 via Conventional from 94341 -> 94342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94341, + "TargetID": 94342, + "Directional": true + } + ] + }, + { + "ID": 18531, + "SourceStructureID": 94346, + "TargetStructureID": 5528, + "Label": "94346-5528 via Conventional from 94347 -> 94348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94347, + "TargetID": 94348, + "Directional": true + } + ] + }, + { + "ID": 18532, + "SourceStructureID": 94365, + "TargetStructureID": 5528, + "Label": "94365-5528 via Conventional from 94367 -> 94366, 94368 -> 94369", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94367, + "TargetID": 94366, + "Directional": true + }, + { + "SourceID": 94368, + "TargetID": 94369, + "Directional": true + } + ] + }, + { + "ID": 18533, + "SourceStructureID": 94385, + "TargetStructureID": 5528, + "Label": "94385-5528 via Conventional from 94387 -> 91644", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94387, + "TargetID": 91644, + "Directional": true + } + ] + }, + { + "ID": 18534, + "SourceStructureID": 94385, + "TargetStructureID": 6129, + "Label": "94385-6129 via Conventional from 94386 -> 17859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94386, + "TargetID": 17859, + "Directional": true + } + ] + }, + { + "ID": 18535, + "SourceStructureID": 94388, + "TargetStructureID": 5528, + "Label": "94388-5528 via Conventional from 94389 -> 94390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94389, + "TargetID": 94390, + "Directional": true + } + ] + }, + { + "ID": 18536, + "SourceStructureID": 94391, + "TargetStructureID": 5528, + "Label": "94391-5528 via Conventional from 94392 -> 94393", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94392, + "TargetID": 94393, + "Directional": true + } + ] + }, + { + "ID": 18537, + "SourceStructureID": 94414, + "TargetStructureID": 5528, + "Label": "94414-5528 via Conventional from 94415 -> 94416", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94415, + "TargetID": 94416, + "Directional": true + } + ] + }, + { + "ID": 18538, + "SourceStructureID": 94417, + "TargetStructureID": 94417, + "Label": "94417-94417 via Conventional from 94420 -> 94419", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94420, + "TargetID": 94419, + "Directional": true + } + ] + }, + { + "ID": 18539, + "SourceStructureID": 94422, + "TargetStructureID": 5528, + "Label": "94422-5528 via Conventional from 94423 -> 94424", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94423, + "TargetID": 94424, + "Directional": true + } + ] + }, + { + "ID": 18540, + "SourceStructureID": 94425, + "TargetStructureID": 5528, + "Label": "94425-5528 via Conventional from 94426 -> 94427", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94426, + "TargetID": 94427, + "Directional": true + } + ] + }, + { + "ID": 18541, + "SourceStructureID": 94474, + "TargetStructureID": 5528, + "Label": "94474-5528 via Conventional from 94476 -> 94477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94476, + "TargetID": 94477, + "Directional": true + } + ] + }, + { + "ID": 18542, + "SourceStructureID": 94479, + "TargetStructureID": 5528, + "Label": "94479-5528 via Conventional from 94480 -> 94481", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94480, + "TargetID": 94481, + "Directional": true + } + ] + }, + { + "ID": 18543, + "SourceStructureID": 94490, + "TargetStructureID": 5528, + "Label": "94490-5528 via Conventional from 94492 -> 94491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94492, + "TargetID": 94491, + "Directional": true + } + ] + }, + { + "ID": 18544, + "SourceStructureID": 94500, + "TargetStructureID": 5528, + "Label": "94500-5528 via Conventional from 94505 -> 94506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94505, + "TargetID": 94506, + "Directional": true + } + ] + }, + { + "ID": 18545, + "SourceStructureID": 94507, + "TargetStructureID": 5528, + "Label": "94507-5528 via Conventional from 94508 -> 94509", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94508, + "TargetID": 94509, + "Directional": true + } + ] + }, + { + "ID": 18546, + "SourceStructureID": 94512, + "TargetStructureID": 5528, + "Label": "94512-5528 via Conventional from 94513 -> 94514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94513, + "TargetID": 94514, + "Directional": true + } + ] + }, + { + "ID": 18547, + "SourceStructureID": 94525, + "TargetStructureID": 5528, + "Label": "94525-5528 via Conventional from 94526 -> 94528", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94526, + "TargetID": 94528, + "Directional": true + } + ] + }, + { + "ID": 18548, + "SourceStructureID": 94536, + "TargetStructureID": 5528, + "Label": "94536-5528 via Conventional from 94537 -> 94538", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94537, + "TargetID": 94538, + "Directional": true + } + ] + }, + { + "ID": 18549, + "SourceStructureID": 94582, + "TargetStructureID": 180, + "Label": "94582-180 via Conventional from 94620 -> 843", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94620, + "TargetID": 843, + "Directional": true + } + ] + }, + { + "ID": 18550, + "SourceStructureID": 94583, + "TargetStructureID": 180, + "Label": "94583-180 via Conventional from 94621 -> 23645", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94621, + "TargetID": 23645, + "Directional": true + } + ] + }, + { + "ID": 18551, + "SourceStructureID": 94635, + "TargetStructureID": 5528, + "Label": "94635-5528 via Conventional from 94644 -> 94645", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94644, + "TargetID": 94645, + "Directional": true + } + ] + }, + { + "ID": 18552, + "SourceStructureID": 94641, + "TargetStructureID": 180, + "Label": "94641-180 via Conventional from 94642 -> 94643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94642, + "TargetID": 94643, + "Directional": true + } + ] + }, + { + "ID": 18553, + "SourceStructureID": 94649, + "TargetStructureID": 5528, + "Label": "94649-5528 via Conventional from 94650 -> 94651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94650, + "TargetID": 94651, + "Directional": true + } + ] + }, + { + "ID": 18554, + "SourceStructureID": 94652, + "TargetStructureID": 5528, + "Label": "94652-5528 via Conventional from 94657 -> 94658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94657, + "TargetID": 94658, + "Directional": true + } + ] + }, + { + "ID": 18555, + "SourceStructureID": 94660, + "TargetStructureID": 5528, + "Label": "94660-5528 via Conventional from 94661 -> 94662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94661, + "TargetID": 94662, + "Directional": true + } + ] + }, + { + "ID": 18556, + "SourceStructureID": 94663, + "TargetStructureID": 5528, + "Label": "94663-5528 via Conventional from 94665 -> 94666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94665, + "TargetID": 94666, + "Directional": true + } + ] + }, + { + "ID": 18557, + "SourceStructureID": 94664, + "TargetStructureID": 180, + "Label": "94664-180 via Conventional from 94706 -> 94707, 94896 -> 94897, 133042 -> 133041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94706, + "TargetID": 94707, + "Directional": true + }, + { + "SourceID": 94896, + "TargetID": 94897, + "Directional": true + }, + { + "SourceID": 133042, + "TargetID": 133041, + "Directional": true + } + ] + }, + { + "ID": 18558, + "SourceStructureID": 94670, + "TargetStructureID": 5528, + "Label": "94670-5528 via Conventional from 94671 -> 94672", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94671, + "TargetID": 94672, + "Directional": true + } + ] + }, + { + "ID": 18559, + "SourceStructureID": 94692, + "TargetStructureID": 180, + "Label": "94692-180 via Conventional from 94693 -> 94694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94693, + "TargetID": 94694, + "Directional": true + } + ] + }, + { + "ID": 18560, + "SourceStructureID": 94695, + "TargetStructureID": 180, + "Label": "94695-180 via Conventional from 94696 -> 94697", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94696, + "TargetID": 94697, + "Directional": true + } + ] + }, + { + "ID": 18561, + "SourceStructureID": 94698, + "TargetStructureID": 180, + "Label": "94698-180 via Conventional from 94699 -> 94700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94699, + "TargetID": 94700, + "Directional": true + } + ] + }, + { + "ID": 18562, + "SourceStructureID": 94705, + "TargetStructureID": 5528, + "Label": "94705-5528 via Conventional from 94711 -> 94712", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94711, + "TargetID": 94712, + "Directional": true + } + ] + }, + { + "ID": 18563, + "SourceStructureID": 94713, + "TargetStructureID": 5528, + "Label": "94713-5528 via Conventional from 94714 -> 94715", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94714, + "TargetID": 94715, + "Directional": true + } + ] + }, + { + "ID": 18564, + "SourceStructureID": 94735, + "TargetStructureID": 5528, + "Label": "94735-5528 via Conventional from 94736 -> 94737", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94736, + "TargetID": 94737, + "Directional": true + } + ] + }, + { + "ID": 18565, + "SourceStructureID": 94741, + "TargetStructureID": 5528, + "Label": "94741-5528 via Conventional from 94788 -> 94789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94788, + "TargetID": 94789, + "Directional": true + } + ] + }, + { + "ID": 18566, + "SourceStructureID": 94784, + "TargetStructureID": 5623, + "Label": "94784-5623 via Conventional from 94785 -> 94783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94785, + "TargetID": 94783, + "Directional": true + } + ] + }, + { + "ID": 18567, + "SourceStructureID": 94791, + "TargetStructureID": 5528, + "Label": "94791-5528 via Conventional from 94801 -> 94802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94801, + "TargetID": 94802, + "Directional": true + } + ] + }, + { + "ID": 18568, + "SourceStructureID": 94796, + "TargetStructureID": 5528, + "Label": "94796-5528 via Conventional from 94799 -> 94800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94799, + "TargetID": 94800, + "Directional": true + } + ] + }, + { + "ID": 18569, + "SourceStructureID": 94796, + "TargetStructureID": 94741, + "Label": "94796-94741 via Conventional from 94797 -> 94798", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94797, + "TargetID": 94798, + "Directional": true + } + ] + }, + { + "ID": 18570, + "SourceStructureID": 94803, + "TargetStructureID": 5528, + "Label": "94803-5528 via Conventional from 94804 -> 94805", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94804, + "TargetID": 94805, + "Directional": true + } + ] + }, + { + "ID": 18571, + "SourceStructureID": 94818, + "TargetStructureID": 5528, + "Label": "94818-5528 via Conventional from 94819 -> 94820", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94819, + "TargetID": 94820, + "Directional": true + } + ] + }, + { + "ID": 18572, + "SourceStructureID": 94821, + "TargetStructureID": 5528, + "Label": "94821-5528 via Conventional from 94822 -> 94823", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94822, + "TargetID": 94823, + "Directional": true + } + ] + }, + { + "ID": 18573, + "SourceStructureID": 94824, + "TargetStructureID": 5528, + "Label": "94824-5528 via Conventional from 94825 -> 94826", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94825, + "TargetID": 94826, + "Directional": true + } + ] + }, + { + "ID": 18574, + "SourceStructureID": 94831, + "TargetStructureID": 5528, + "Label": "94831-5528 via Conventional from 94832 -> 94833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94832, + "TargetID": 94833, + "Directional": true + } + ] + }, + { + "ID": 18575, + "SourceStructureID": 94865, + "TargetStructureID": 5528, + "Label": "94865-5528 via Conventional from 94866 -> 8251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94866, + "TargetID": 8251, + "Directional": true + } + ] + }, + { + "ID": 18576, + "SourceStructureID": 94867, + "TargetStructureID": 5528, + "Label": "94867-5528 via Conventional from 94868 -> 36395", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94868, + "TargetID": 36395, + "Directional": true + } + ] + }, + { + "ID": 18577, + "SourceStructureID": 94900, + "TargetStructureID": 180, + "Label": "94900-180 via Conventional from 94901 -> 94902", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94901, + "TargetID": 94902, + "Directional": true + } + ] + }, + { + "ID": 18578, + "SourceStructureID": 94903, + "TargetStructureID": 180, + "Label": "94903-180 via Conventional from 94906 -> 94907", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94906, + "TargetID": 94907, + "Directional": true + } + ] + }, + { + "ID": 18579, + "SourceStructureID": 94918, + "TargetStructureID": 180, + "Label": "94918-180 via Conventional from 94924 -> 94925", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94924, + "TargetID": 94925, + "Directional": true + } + ] + }, + { + "ID": 18580, + "SourceStructureID": 94930, + "TargetStructureID": 94930, + "Label": "94930-94930 via Conventional from 133103 -> 133102", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133103, + "TargetID": 133102, + "Directional": true + } + ] + }, + { + "ID": 18581, + "SourceStructureID": 94944, + "TargetStructureID": 180, + "Label": "94944-180 via Conventional from 94945 -> 91021", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94945, + "TargetID": 91021, + "Directional": true + } + ] + }, + { + "ID": 18582, + "SourceStructureID": 94948, + "TargetStructureID": 180, + "Label": "94948-180 via Conventional from 94949 -> 7546", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94949, + "TargetID": 7546, + "Directional": true + } + ] + }, + { + "ID": 18583, + "SourceStructureID": 94959, + "TargetStructureID": 180, + "Label": "94959-180 via Conventional from 94960 -> 94961", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94960, + "TargetID": 94961, + "Directional": true + } + ] + }, + { + "ID": 18584, + "SourceStructureID": 94962, + "TargetStructureID": 180, + "Label": "94962-180 via Conventional from 94963 -> 29255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94963, + "TargetID": 29255, + "Directional": true + } + ] + }, + { + "ID": 18585, + "SourceStructureID": 94968, + "TargetStructureID": 180, + "Label": "94968-180 via Conventional from 94969 -> 94970", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94969, + "TargetID": 94970, + "Directional": true + } + ] + }, + { + "ID": 18586, + "SourceStructureID": 94974, + "TargetStructureID": 180, + "Label": "94974-180 via Conventional from 94976 -> 29254", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94976, + "TargetID": 29254, + "Directional": true + } + ] + }, + { + "ID": 18587, + "SourceStructureID": 94978, + "TargetStructureID": 6169, + "Label": "94978-6169 via Conventional from 123358 -> 14939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123358, + "TargetID": 14939, + "Directional": true + } + ] + }, + { + "ID": 18588, + "SourceStructureID": 94983, + "TargetStructureID": 180, + "Label": "94983-180 via Conventional from 94984 -> 29265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94984, + "TargetID": 29265, + "Directional": true + } + ] + }, + { + "ID": 18589, + "SourceStructureID": 94983, + "TargetStructureID": 6169, + "Label": "94983-6169 via Conventional from 132929 -> 132930", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132929, + "TargetID": 132930, + "Directional": true + } + ] + }, + { + "ID": 18590, + "SourceStructureID": 94985, + "TargetStructureID": 180, + "Label": "94985-180 via Conventional from 94986 -> 94987", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94986, + "TargetID": 94987, + "Directional": true + } + ] + }, + { + "ID": 18591, + "SourceStructureID": 94988, + "TargetStructureID": 180, + "Label": "94988-180 via Conventional from 94989 -> 29256", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94989, + "TargetID": 29256, + "Directional": true + } + ] + }, + { + "ID": 18592, + "SourceStructureID": 94991, + "TargetStructureID": 180, + "Label": "94991-180 via Conventional from 94992 -> 29260", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 94992, + "TargetID": 29260, + "Directional": true + } + ] + }, + { + "ID": 18593, + "SourceStructureID": 94999, + "TargetStructureID": 180, + "Label": "94999-180 via Conventional from 95000 -> 59665", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95000, + "TargetID": 59665, + "Directional": true + } + ] + }, + { + "ID": 18594, + "SourceStructureID": 95001, + "TargetStructureID": 180, + "Label": "95001-180 via Conventional from 118490 -> 29264", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118490, + "TargetID": 29264, + "Directional": true + } + ] + }, + { + "ID": 18595, + "SourceStructureID": 95062, + "TargetStructureID": 5528, + "Label": "95062-5528 via Conventional from 95063 -> 25296", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95063, + "TargetID": 25296, + "Directional": true + } + ] + }, + { + "ID": 18596, + "SourceStructureID": 95097, + "TargetStructureID": 5528, + "Label": "95097-5528 via Conventional from 95100 -> 36396", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95100, + "TargetID": 36396, + "Directional": true + } + ] + }, + { + "ID": 18597, + "SourceStructureID": 95107, + "TargetStructureID": 5528, + "Label": "95107-5528 via Conventional from 95108 -> 25297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95108, + "TargetID": 25297, + "Directional": true + } + ] + }, + { + "ID": 18598, + "SourceStructureID": 95117, + "TargetStructureID": 5528, + "Label": "95117-5528 via Conventional from 95118 -> 95120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95118, + "TargetID": 95120, + "Directional": true + } + ] + }, + { + "ID": 18599, + "SourceStructureID": 95121, + "TargetStructureID": 5528, + "Label": "95121-5528 via Conventional from 95122 -> 95123, 95125 -> 95124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95122, + "TargetID": 95123, + "Directional": true + }, + { + "SourceID": 95125, + "TargetID": 95124, + "Directional": true + } + ] + }, + { + "ID": 18600, + "SourceStructureID": 95149, + "TargetStructureID": 5528, + "Label": "95149-5528 via Conventional from 95150 -> 68790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95150, + "TargetID": 68790, + "Directional": true + } + ] + }, + { + "ID": 18601, + "SourceStructureID": 95159, + "TargetStructureID": 95159, + "Label": "95159-95159 via Conventional from 95160 -> 95161", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95160, + "TargetID": 95161, + "Directional": true + } + ] + }, + { + "ID": 18602, + "SourceStructureID": 95162, + "TargetStructureID": 5528, + "Label": "95162-5528 via Conventional from 95164 -> 95163", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95164, + "TargetID": 95163, + "Directional": true + } + ] + }, + { + "ID": 18603, + "SourceStructureID": 95175, + "TargetStructureID": 5528, + "Label": "95175-5528 via Conventional from 95176 -> 95177", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95176, + "TargetID": 95177, + "Directional": true + } + ] + }, + { + "ID": 18604, + "SourceStructureID": 95190, + "TargetStructureID": 5528, + "Label": "95190-5528 via Conventional from 95193 -> 95194", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95193, + "TargetID": 95194, + "Directional": true + } + ] + }, + { + "ID": 18605, + "SourceStructureID": 95195, + "TargetStructureID": 5531, + "Label": "95195-5531 via Conventional from 147426 -> 147425", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147426, + "TargetID": 147425, + "Directional": true + } + ] + }, + { + "ID": 18606, + "SourceStructureID": 95197, + "TargetStructureID": 5528, + "Label": "95197-5528 via Conventional from 95198 -> 95199", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95198, + "TargetID": 95199, + "Directional": true + } + ] + }, + { + "ID": 18607, + "SourceStructureID": 95243, + "TargetStructureID": 180, + "Label": "95243-180 via Conventional from 95244 -> 29250", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95244, + "TargetID": 29250, + "Directional": true + } + ] + }, + { + "ID": 18608, + "SourceStructureID": 95260, + "TargetStructureID": 180, + "Label": "95260-180 via Conventional from 95261 -> 95262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95261, + "TargetID": 95262, + "Directional": true + } + ] + }, + { + "ID": 18609, + "SourceStructureID": 95266, + "TargetStructureID": 180, + "Label": "95266-180 via Conventional from 95267 -> 95268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95267, + "TargetID": 95268, + "Directional": true + } + ] + }, + { + "ID": 18610, + "SourceStructureID": 95269, + "TargetStructureID": 180, + "Label": "95269-180 via Conventional from 95271 -> 95272", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95271, + "TargetID": 95272, + "Directional": true + } + ] + }, + { + "ID": 18611, + "SourceStructureID": 95273, + "TargetStructureID": 180, + "Label": "95273-180 via Conventional from 95274 -> 95297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95274, + "TargetID": 95297, + "Directional": true + } + ] + }, + { + "ID": 18612, + "SourceStructureID": 95292, + "TargetStructureID": 180, + "Label": "95292-180 via Conventional from 95295 -> 95296", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95295, + "TargetID": 95296, + "Directional": true + } + ] + }, + { + "ID": 18613, + "SourceStructureID": 95299, + "TargetStructureID": 180, + "Label": "95299-180 via Conventional from 132855 -> 132856", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132855, + "TargetID": 132856, + "Directional": true + } + ] + }, + { + "ID": 18614, + "SourceStructureID": 95307, + "TargetStructureID": 180, + "Label": "95307-180 via Conventional from 95308 -> 95309", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95308, + "TargetID": 95309, + "Directional": true + } + ] + }, + { + "ID": 18615, + "SourceStructureID": 95310, + "TargetStructureID": 180, + "Label": "95310-180 via Conventional from 95316 -> 95317", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95316, + "TargetID": 95317, + "Directional": true + } + ] + }, + { + "ID": 18616, + "SourceStructureID": 95319, + "TargetStructureID": 180, + "Label": "95319-180 via Conventional from 95320 -> 59673", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95320, + "TargetID": 59673, + "Directional": true + } + ] + }, + { + "ID": 18617, + "SourceStructureID": 95323, + "TargetStructureID": 180, + "Label": "95323-180 via Conventional from 133110 -> 133109", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133110, + "TargetID": 133109, + "Directional": true + } + ] + }, + { + "ID": 18618, + "SourceStructureID": 95323, + "TargetStructureID": 95319, + "Label": "95323-95319 via Conventional from 133107 -> 133108", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133107, + "TargetID": 133108, + "Directional": true + } + ] + }, + { + "ID": 18619, + "SourceStructureID": 95326, + "TargetStructureID": 180, + "Label": "95326-180 via Conventional from 95327 -> 59675", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95327, + "TargetID": 59675, + "Directional": true + } + ] + }, + { + "ID": 18620, + "SourceStructureID": 95328, + "TargetStructureID": 180, + "Label": "95328-180 via Conventional from 95329 -> 59676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95329, + "TargetID": 59676, + "Directional": true + } + ] + }, + { + "ID": 18621, + "SourceStructureID": 95334, + "TargetStructureID": 180, + "Label": "95334-180 via Conventional from 95335 -> 95336", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95335, + "TargetID": 95336, + "Directional": true + } + ] + }, + { + "ID": 18622, + "SourceStructureID": 95387, + "TargetStructureID": 180, + "Label": "95387-180 via Conventional from 95388 -> 860", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95388, + "TargetID": 860, + "Directional": true + } + ] + }, + { + "ID": 18623, + "SourceStructureID": 95390, + "TargetStructureID": 180, + "Label": "95390-180 via Conventional from 95396 -> 95397", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95396, + "TargetID": 95397, + "Directional": true + } + ] + }, + { + "ID": 18624, + "SourceStructureID": 95391, + "TargetStructureID": 180, + "Label": "95391-180 via Conventional from 95392 -> 95393", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95392, + "TargetID": 95393, + "Directional": true + } + ] + }, + { + "ID": 18625, + "SourceStructureID": 95416, + "TargetStructureID": 180, + "Label": "95416-180 via Conventional from 95417 -> 873", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95417, + "TargetID": 873, + "Directional": true + } + ] + }, + { + "ID": 18626, + "SourceStructureID": 95429, + "TargetStructureID": 180, + "Label": "95429-180 via Conventional from 95430 -> 876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95430, + "TargetID": 876, + "Directional": true + } + ] + }, + { + "ID": 18627, + "SourceStructureID": 95431, + "TargetStructureID": 180, + "Label": "95431-180 via Conventional from 95432 -> 880", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95432, + "TargetID": 880, + "Directional": true + } + ] + }, + { + "ID": 18628, + "SourceStructureID": 95436, + "TargetStructureID": 180, + "Label": "95436-180 via Conventional from 95438 -> 886, 95439 -> 888", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95438, + "TargetID": 886, + "Directional": true + }, + { + "SourceID": 95439, + "TargetID": 888, + "Directional": true + } + ] + }, + { + "ID": 18629, + "SourceStructureID": 95440, + "TargetStructureID": 44346, + "Label": "95440-44346 via Conventional from 95450 -> 44407, 95451 -> 95452", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95450, + "TargetID": 44407, + "Directional": true + }, + { + "SourceID": 95451, + "TargetID": 95452, + "Directional": true + } + ] + }, + { + "ID": 18630, + "SourceStructureID": 95443, + "TargetStructureID": 180, + "Label": "95443-180 via Conventional from 95444 -> 893", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95444, + "TargetID": 893, + "Directional": true + } + ] + }, + { + "ID": 18631, + "SourceStructureID": 95457, + "TargetStructureID": 180, + "Label": "95457-180 via Conventional from 132898 -> 132897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132898, + "TargetID": 132897, + "Directional": true + } + ] + }, + { + "ID": 18632, + "SourceStructureID": 95465, + "TargetStructureID": 5528, + "Label": "95465-5528 via Conventional from 95466 -> 95467", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95466, + "TargetID": 95467, + "Directional": true + } + ] + }, + { + "ID": 18633, + "SourceStructureID": 95473, + "TargetStructureID": 5528, + "Label": "95473-5528 via Conventional from 95474 -> 95475", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95474, + "TargetID": 95475, + "Directional": true + } + ] + }, + { + "ID": 18634, + "SourceStructureID": 95476, + "TargetStructureID": 5528, + "Label": "95476-5528 via Conventional from 95477 -> 95478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95477, + "TargetID": 95478, + "Directional": true + } + ] + }, + { + "ID": 18635, + "SourceStructureID": 95479, + "TargetStructureID": 5528, + "Label": "95479-5528 via Conventional from 95480 -> 95631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95480, + "TargetID": 95631, + "Directional": true + } + ] + }, + { + "ID": 18636, + "SourceStructureID": 95482, + "TargetStructureID": 485, + "Label": "95482-485 via Conventional from 148063 -> 148064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148063, + "TargetID": 148064, + "Directional": true + } + ] + }, + { + "ID": 18637, + "SourceStructureID": 95482, + "TargetStructureID": 6997, + "Label": "95482-6997 via Conventional from 136658 -> 136277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136658, + "TargetID": 136277, + "Directional": true + } + ] + }, + { + "ID": 18638, + "SourceStructureID": 95485, + "TargetStructureID": 6997, + "Label": "95485-6997 via Conventional from 95486 -> 95484", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95486, + "TargetID": 95484, + "Directional": true + } + ] + }, + { + "ID": 18639, + "SourceStructureID": 95495, + "TargetStructureID": 180, + "Label": "95495-180 via Conventional from 95496 -> 56874", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95496, + "TargetID": 56874, + "Directional": true + } + ] + }, + { + "ID": 18640, + "SourceStructureID": 95502, + "TargetStructureID": 180, + "Label": "95502-180 via Conventional from 95503 -> 95504", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95503, + "TargetID": 95504, + "Directional": true + } + ] + }, + { + "ID": 18641, + "SourceStructureID": 95512, + "TargetStructureID": 180, + "Label": "95512-180 via Conventional from 132868 -> 132867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132868, + "TargetID": 132867, + "Directional": true + } + ] + }, + { + "ID": 18642, + "SourceStructureID": 95523, + "TargetStructureID": 180, + "Label": "95523-180 via Conventional from 95525 -> 95526", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95525, + "TargetID": 95526, + "Directional": true + } + ] + }, + { + "ID": 18643, + "SourceStructureID": 95540, + "TargetStructureID": 180, + "Label": "95540-180 via Conventional from 95541 -> 95542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95541, + "TargetID": 95542, + "Directional": true + } + ] + }, + { + "ID": 18644, + "SourceStructureID": 95548, + "TargetStructureID": 180, + "Label": "95548-180 via Conventional from 95549 -> 95550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95549, + "TargetID": 95550, + "Directional": true + } + ] + }, + { + "ID": 18645, + "SourceStructureID": 95551, + "TargetStructureID": 180, + "Label": "95551-180 via Conventional from 95552 -> 95553", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95552, + "TargetID": 95553, + "Directional": true + } + ] + }, + { + "ID": 18646, + "SourceStructureID": 95556, + "TargetStructureID": 180, + "Label": "95556-180 via Conventional from 95557 -> 95558", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95557, + "TargetID": 95558, + "Directional": true + } + ] + }, + { + "ID": 18647, + "SourceStructureID": 95566, + "TargetStructureID": 180, + "Label": "95566-180 via Conventional from 95567 -> 95569", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95567, + "TargetID": 95569, + "Directional": true + } + ] + }, + { + "ID": 18648, + "SourceStructureID": 95573, + "TargetStructureID": 180, + "Label": "95573-180 via Conventional from 95574 -> 95575", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95574, + "TargetID": 95575, + "Directional": true + } + ] + }, + { + "ID": 18649, + "SourceStructureID": 95578, + "TargetStructureID": 180, + "Label": "95578-180 via Conventional from 95582 -> 95583", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95582, + "TargetID": 95583, + "Directional": true + } + ] + }, + { + "ID": 18650, + "SourceStructureID": 95579, + "TargetStructureID": 180, + "Label": "95579-180 via Conventional from 95580 -> 95581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95580, + "TargetID": 95581, + "Directional": true + } + ] + }, + { + "ID": 18651, + "SourceStructureID": 95593, + "TargetStructureID": 180, + "Label": "95593-180 via Conventional from 95594 -> 4928", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95594, + "TargetID": 4928, + "Directional": true + } + ] + }, + { + "ID": 18652, + "SourceStructureID": 95597, + "TargetStructureID": 180, + "Label": "95597-180 via Conventional from 95598 -> 95599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95598, + "TargetID": 95599, + "Directional": true + } + ] + }, + { + "ID": 18653, + "SourceStructureID": 95600, + "TargetStructureID": 180, + "Label": "95600-180 via Unknown from 95602 -> 95601", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 95602, + "TargetID": 95601, + "Directional": true + } + ] + }, + { + "ID": 18654, + "SourceStructureID": 95609, + "TargetStructureID": 180, + "Label": "95609-180 via Conventional from 95610 -> 95611", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95610, + "TargetID": 95611, + "Directional": true + } + ] + }, + { + "ID": 18655, + "SourceStructureID": 95615, + "TargetStructureID": 180, + "Label": "95615-180 via Conventional from 95616 -> 95617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95616, + "TargetID": 95617, + "Directional": true + } + ] + }, + { + "ID": 18656, + "SourceStructureID": 95633, + "TargetStructureID": 5528, + "Label": "95633-5528 via Conventional from 95636 -> 95635", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95636, + "TargetID": 95635, + "Directional": true + } + ] + }, + { + "ID": 18657, + "SourceStructureID": 95648, + "TargetStructureID": 180, + "Label": "95648-180 via Conventional from 95649 -> 95650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95649, + "TargetID": 95650, + "Directional": true + } + ] + }, + { + "ID": 18658, + "SourceStructureID": 95651, + "TargetStructureID": 180, + "Label": "95651-180 via Conventional from 95653 -> 95654, 132992 -> 132993", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95653, + "TargetID": 95654, + "Directional": true + }, + { + "SourceID": 132992, + "TargetID": 132993, + "Directional": true + } + ] + }, + { + "ID": 18659, + "SourceStructureID": 95673, + "TargetStructureID": 5528, + "Label": "95673-5528 via Conventional from 95675 -> 8266", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95675, + "TargetID": 8266, + "Directional": true + } + ] + }, + { + "ID": 18660, + "SourceStructureID": 95676, + "TargetStructureID": 5528, + "Label": "95676-5528 via Conventional from 95680 -> 95681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95680, + "TargetID": 95681, + "Directional": true + } + ] + }, + { + "ID": 18661, + "SourceStructureID": 95683, + "TargetStructureID": 180, + "Label": "95683-180 via Conventional from 95686 -> 95687", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95686, + "TargetID": 95687, + "Directional": true + } + ] + }, + { + "ID": 18662, + "SourceStructureID": 95688, + "TargetStructureID": 5528, + "Label": "95688-5528 via Conventional from 95689 -> 8263", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95689, + "TargetID": 8263, + "Directional": true + } + ] + }, + { + "ID": 18663, + "SourceStructureID": 95690, + "TargetStructureID": 5528, + "Label": "95690-5528 via Conventional from 95691 -> 8262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95691, + "TargetID": 8262, + "Directional": true + } + ] + }, + { + "ID": 18664, + "SourceStructureID": 95698, + "TargetStructureID": 5528, + "Label": "95698-5528 via Conventional from 96166 -> 8259", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96166, + "TargetID": 8259, + "Directional": true + } + ] + }, + { + "ID": 18665, + "SourceStructureID": 95699, + "TargetStructureID": 5528, + "Label": "95699-5528 via Conventional from 96163 -> 8260", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96163, + "TargetID": 8260, + "Directional": true + } + ] + }, + { + "ID": 18666, + "SourceStructureID": 95699, + "TargetStructureID": 5531, + "Label": "95699-5531 via Conventional from 114687 -> 114688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114687, + "TargetID": 114688, + "Directional": true + } + ] + }, + { + "ID": 18667, + "SourceStructureID": 95700, + "TargetStructureID": 5528, + "Label": "95700-5528 via Conventional from 96162 -> 8268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96162, + "TargetID": 8268, + "Directional": true + } + ] + }, + { + "ID": 18668, + "SourceStructureID": 95708, + "TargetStructureID": 180, + "Label": "95708-180 via Conventional from 95709 -> 95710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95709, + "TargetID": 95710, + "Directional": true + } + ] + }, + { + "ID": 18669, + "SourceStructureID": 95711, + "TargetStructureID": 180, + "Label": "95711-180 via Conventional from 95712 -> 95713", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95712, + "TargetID": 95713, + "Directional": true + } + ] + }, + { + "ID": 18670, + "SourceStructureID": 95729, + "TargetStructureID": 180, + "Label": "95729-180 via Conventional from 95730 -> 95731", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95730, + "TargetID": 95731, + "Directional": true + } + ] + }, + { + "ID": 18671, + "SourceStructureID": 95746, + "TargetStructureID": 180, + "Label": "95746-180 via Conventional from 95748 -> 95749", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95748, + "TargetID": 95749, + "Directional": true + } + ] + }, + { + "ID": 18672, + "SourceStructureID": 95751, + "TargetStructureID": 180, + "Label": "95751-180 via Conventional from 95754 -> 95755", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95754, + "TargetID": 95755, + "Directional": true + } + ] + }, + { + "ID": 18673, + "SourceStructureID": 95807, + "TargetStructureID": 180, + "Label": "95807-180 via Conventional from 95808 -> 88068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95808, + "TargetID": 88068, + "Directional": true + } + ] + }, + { + "ID": 18674, + "SourceStructureID": 95815, + "TargetStructureID": 180, + "Label": "95815-180 via Conventional from 95816 -> 95817", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95816, + "TargetID": 95817, + "Directional": true + } + ] + }, + { + "ID": 18675, + "SourceStructureID": 95818, + "TargetStructureID": 180, + "Label": "95818-180 via Conventional from 95819 -> 88069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95819, + "TargetID": 88069, + "Directional": true + } + ] + }, + { + "ID": 18676, + "SourceStructureID": 95820, + "TargetStructureID": 180, + "Label": "95820-180 via Conventional from 95822 -> 95821", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95822, + "TargetID": 95821, + "Directional": true + } + ] + }, + { + "ID": 18677, + "SourceStructureID": 95823, + "TargetStructureID": 180, + "Label": "95823-180 via Conventional from 95826 -> 88074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95826, + "TargetID": 88074, + "Directional": true + } + ] + }, + { + "ID": 18678, + "SourceStructureID": 95824, + "TargetStructureID": 180, + "Label": "95824-180 via Conventional from 132960 -> 132959", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132960, + "TargetID": 132959, + "Directional": true + } + ] + }, + { + "ID": 18679, + "SourceStructureID": 95829, + "TargetStructureID": 180, + "Label": "95829-180 via Conventional from 95830 -> 88073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95830, + "TargetID": 88073, + "Directional": true + } + ] + }, + { + "ID": 18680, + "SourceStructureID": 95836, + "TargetStructureID": 180, + "Label": "95836-180 via Conventional from 95838 -> 95837", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95838, + "TargetID": 95837, + "Directional": true + } + ] + }, + { + "ID": 18681, + "SourceStructureID": 95846, + "TargetStructureID": 180, + "Label": "95846-180 via Conventional from 95847 -> 95848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95847, + "TargetID": 95848, + "Directional": true + } + ] + }, + { + "ID": 18682, + "SourceStructureID": 95851, + "TargetStructureID": 180, + "Label": "95851-180 via Conventional from 95853 -> 88075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95853, + "TargetID": 88075, + "Directional": true + } + ] + }, + { + "ID": 18683, + "SourceStructureID": 95866, + "TargetStructureID": 180, + "Label": "95866-180 via Conventional from 95867 -> 95869, 133007 -> 133006", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95867, + "TargetID": 95869, + "Directional": true + }, + { + "SourceID": 133007, + "TargetID": 133006, + "Directional": true + } + ] + }, + { + "ID": 18684, + "SourceStructureID": 95871, + "TargetStructureID": 180, + "Label": "95871-180 via Conventional from 95873 -> 6568", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95873, + "TargetID": 6568, + "Directional": true + } + ] + }, + { + "ID": 18685, + "SourceStructureID": 95874, + "TargetStructureID": 180, + "Label": "95874-180 via Conventional from 95875 -> 6569", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95875, + "TargetID": 6569, + "Directional": true + } + ] + }, + { + "ID": 18686, + "SourceStructureID": 95877, + "TargetStructureID": 180, + "Label": "95877-180 via Conventional from 95880 -> 95881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95880, + "TargetID": 95881, + "Directional": true + } + ] + }, + { + "ID": 18687, + "SourceStructureID": 95895, + "TargetStructureID": 180, + "Label": "95895-180 via Conventional from 95898 -> 95899", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95898, + "TargetID": 95899, + "Directional": true + } + ] + }, + { + "ID": 18688, + "SourceStructureID": 95900, + "TargetStructureID": 180, + "Label": "95900-180 via Conventional from 95901 -> 95902", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95901, + "TargetID": 95902, + "Directional": true + } + ] + }, + { + "ID": 18689, + "SourceStructureID": 95907, + "TargetStructureID": 180, + "Label": "95907-180 via Conventional from 95908 -> 95909", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95908, + "TargetID": 95909, + "Directional": true + } + ] + }, + { + "ID": 18690, + "SourceStructureID": 95910, + "TargetStructureID": 180, + "Label": "95910-180 via Conventional from 95913 -> 95914", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95913, + "TargetID": 95914, + "Directional": true + } + ] + }, + { + "ID": 18691, + "SourceStructureID": 95917, + "TargetStructureID": 180, + "Label": "95917-180 via Conventional from 95920 -> 95921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95920, + "TargetID": 95921, + "Directional": true + } + ] + }, + { + "ID": 18692, + "SourceStructureID": 95922, + "TargetStructureID": 166, + "Label": "95922-166 via Conventional from 132918 -> 132917", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132918, + "TargetID": 132917, + "Directional": true + } + ] + }, + { + "ID": 18693, + "SourceStructureID": 95922, + "TargetStructureID": 180, + "Label": "95922-180 via Conventional from 95925 -> 14141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95925, + "TargetID": 14141, + "Directional": true + } + ] + }, + { + "ID": 18694, + "SourceStructureID": 95930, + "TargetStructureID": 180, + "Label": "95930-180 via Conventional from 95937 -> 14138, 95957 -> 14146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95937, + "TargetID": 14138, + "Directional": true + }, + { + "SourceID": 95957, + "TargetID": 14146, + "Directional": true + } + ] + }, + { + "ID": 18695, + "SourceStructureID": 95945, + "TargetStructureID": 180, + "Label": "95945-180 via Conventional from 95946 -> 14140", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95946, + "TargetID": 14140, + "Directional": true + } + ] + }, + { + "ID": 18696, + "SourceStructureID": 95947, + "TargetStructureID": 180, + "Label": "95947-180 via Conventional from 95948 -> 14145", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95948, + "TargetID": 14145, + "Directional": true + } + ] + }, + { + "ID": 18697, + "SourceStructureID": 95959, + "TargetStructureID": 180, + "Label": "95959-180 via Conventional from 95961 -> 95962", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95961, + "TargetID": 95962, + "Directional": true + } + ] + }, + { + "ID": 18698, + "SourceStructureID": 95963, + "TargetStructureID": 180, + "Label": "95963-180 via Conventional from 95964 -> 95965", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95964, + "TargetID": 95965, + "Directional": true + } + ] + }, + { + "ID": 18699, + "SourceStructureID": 95966, + "TargetStructureID": 180, + "Label": "95966-180 via Conventional from 95968 -> 14159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95968, + "TargetID": 14159, + "Directional": true + } + ] + }, + { + "ID": 18700, + "SourceStructureID": 95971, + "TargetStructureID": 180, + "Label": "95971-180 via Conventional from 95972 -> 14158", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95972, + "TargetID": 14158, + "Directional": true + } + ] + }, + { + "ID": 18701, + "SourceStructureID": 95977, + "TargetStructureID": 180, + "Label": "95977-180 via Conventional from 96009 -> 96010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96009, + "TargetID": 96010, + "Directional": true + } + ] + }, + { + "ID": 18702, + "SourceStructureID": 95978, + "TargetStructureID": 180, + "Label": "95978-180 via Conventional from 95979 -> 14148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95979, + "TargetID": 14148, + "Directional": true + } + ] + }, + { + "ID": 18703, + "SourceStructureID": 95991, + "TargetStructureID": 180, + "Label": "95991-180 via Conventional from 95993 -> 95994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 95993, + "TargetID": 95994, + "Directional": true + } + ] + }, + { + "ID": 18704, + "SourceStructureID": 95997, + "TargetStructureID": 180, + "Label": "95997-180 via Conventional from 96001 -> 14160", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96001, + "TargetID": 14160, + "Directional": true + } + ] + }, + { + "ID": 18705, + "SourceStructureID": 95997, + "TargetStructureID": 6169, + "Label": "95997-6169 via Conventional from 132841 -> 132840", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132841, + "TargetID": 132840, + "Directional": true + } + ] + }, + { + "ID": 18706, + "SourceStructureID": 96011, + "TargetStructureID": 180, + "Label": "96011-180 via Conventional from 96012 -> 14153", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96012, + "TargetID": 14153, + "Directional": true + } + ] + }, + { + "ID": 18707, + "SourceStructureID": 96039, + "TargetStructureID": 180, + "Label": "96039-180 via Conventional from 96040 -> 96041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96040, + "TargetID": 96041, + "Directional": true + } + ] + }, + { + "ID": 18708, + "SourceStructureID": 96143, + "TargetStructureID": 5528, + "Label": "96143-5528 via Conventional from 96158 -> 8270", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96158, + "TargetID": 8270, + "Directional": true + } + ] + }, + { + "ID": 18709, + "SourceStructureID": 96152, + "TargetStructureID": 595, + "Label": "96152-595 via Conventional from 125162 -> 125161", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125162, + "TargetID": 125161, + "Directional": true + } + ] + }, + { + "ID": 18710, + "SourceStructureID": 96152, + "TargetStructureID": 5528, + "Label": "96152-5528 via Conventional from 96159 -> 8271", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96159, + "TargetID": 8271, + "Directional": true + } + ] + }, + { + "ID": 18711, + "SourceStructureID": 96164, + "TargetStructureID": 5528, + "Label": "96164-5528 via Conventional from 96165 -> 8261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96165, + "TargetID": 8261, + "Directional": true + } + ] + }, + { + "ID": 18712, + "SourceStructureID": 96164, + "TargetStructureID": 82832, + "Label": "96164-82832 via Conventional from 107187 -> 107185", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107187, + "TargetID": 107185, + "Directional": true + } + ] + }, + { + "ID": 18713, + "SourceStructureID": 96175, + "TargetStructureID": 5517, + "Label": "96175-5517 via Conventional from 96176 -> 96174", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96176, + "TargetID": 96174, + "Directional": true + } + ] + }, + { + "ID": 18714, + "SourceStructureID": 96184, + "TargetStructureID": 5528, + "Label": "96184-5528 via Conventional from 96186 -> 96187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96186, + "TargetID": 96187, + "Directional": true + } + ] + }, + { + "ID": 18715, + "SourceStructureID": 96199, + "TargetStructureID": 5517, + "Label": "96199-5517 via Conventional from 96200 -> 96197", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96200, + "TargetID": 96197, + "Directional": true + } + ] + }, + { + "ID": 18716, + "SourceStructureID": 96202, + "TargetStructureID": 5517, + "Label": "96202-5517 via Conventional from 96203 -> 96198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96203, + "TargetID": 96198, + "Directional": true + } + ] + }, + { + "ID": 18717, + "SourceStructureID": 96224, + "TargetStructureID": 5528, + "Label": "96224-5528 via Conventional from 96225 -> 96226", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96225, + "TargetID": 96226, + "Directional": true + } + ] + }, + { + "ID": 18718, + "SourceStructureID": 96224, + "TargetStructureID": 5531, + "Label": "96224-5531 via Conventional from 114542 -> 114543", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114542, + "TargetID": 114543, + "Directional": true + } + ] + }, + { + "ID": 18719, + "SourceStructureID": 96243, + "TargetStructureID": 5528, + "Label": "96243-5528 via Conventional from 96244 -> 96245", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96244, + "TargetID": 96245, + "Directional": true + } + ] + }, + { + "ID": 18720, + "SourceStructureID": 96246, + "TargetStructureID": 5528, + "Label": "96246-5528 via Conventional from 96247 -> 96248", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96247, + "TargetID": 96248, + "Directional": true + } + ] + }, + { + "ID": 18721, + "SourceStructureID": 96249, + "TargetStructureID": 5528, + "Label": "96249-5528 via Conventional from 96250 -> 96251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96250, + "TargetID": 96251, + "Directional": true + } + ] + }, + { + "ID": 18722, + "SourceStructureID": 96255, + "TargetStructureID": 5528, + "Label": "96255-5528 via Conventional from 96256 -> 96257", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96256, + "TargetID": 96257, + "Directional": true + } + ] + }, + { + "ID": 18723, + "SourceStructureID": 96266, + "TargetStructureID": 5528, + "Label": "96266-5528 via Conventional from 96267 -> 8274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96267, + "TargetID": 8274, + "Directional": true + } + ] + }, + { + "ID": 18724, + "SourceStructureID": 96266, + "TargetStructureID": 5531, + "Label": "96266-5531 via Conventional from 107150 -> 107149", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107150, + "TargetID": 107149, + "Directional": true + } + ] + }, + { + "ID": 18725, + "SourceStructureID": 96268, + "TargetStructureID": 5528, + "Label": "96268-5528 via Conventional from 96269 -> 8275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96269, + "TargetID": 8275, + "Directional": true + } + ] + }, + { + "ID": 18726, + "SourceStructureID": 96270, + "TargetStructureID": 5528, + "Label": "96270-5528 via Conventional from 96271 -> 8273", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96271, + "TargetID": 8273, + "Directional": true + } + ] + }, + { + "ID": 18727, + "SourceStructureID": 96272, + "TargetStructureID": 5528, + "Label": "96272-5528 via Conventional from 96273 -> 8281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96273, + "TargetID": 8281, + "Directional": true + } + ] + }, + { + "ID": 18728, + "SourceStructureID": 96285, + "TargetStructureID": 5528, + "Label": "96285-5528 via Conventional from 96286 -> 8277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96286, + "TargetID": 8277, + "Directional": true + } + ] + }, + { + "ID": 18729, + "SourceStructureID": 96287, + "TargetStructureID": 5528, + "Label": "96287-5528 via Conventional from 96289 -> 8276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96289, + "TargetID": 8276, + "Directional": true + } + ] + }, + { + "ID": 18730, + "SourceStructureID": 96293, + "TargetStructureID": 5528, + "Label": "96293-5528 via Conventional from 96294 -> 96295", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96294, + "TargetID": 96295, + "Directional": true + } + ] + }, + { + "ID": 18731, + "SourceStructureID": 96293, + "TargetStructureID": 5531, + "Label": "96293-5531 via Conventional from 107093 -> 107090", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107093, + "TargetID": 107090, + "Directional": true + } + ] + }, + { + "ID": 18732, + "SourceStructureID": 96296, + "TargetStructureID": 5528, + "Label": "96296-5528 via Conventional from 96297 -> 96298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96297, + "TargetID": 96298, + "Directional": true + } + ] + }, + { + "ID": 18733, + "SourceStructureID": 96308, + "TargetStructureID": 5517, + "Label": "96308-5517 via Conventional from 96309 -> 96307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96309, + "TargetID": 96307, + "Directional": true + } + ] + }, + { + "ID": 18734, + "SourceStructureID": 96310, + "TargetStructureID": 5517, + "Label": "96310-5517 via Conventional from 96313 -> 96215, 96327 -> 96110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96313, + "TargetID": 96215, + "Directional": true + }, + { + "SourceID": 96327, + "TargetID": 96110, + "Directional": true + } + ] + }, + { + "ID": 18735, + "SourceStructureID": 96311, + "TargetStructureID": 5517, + "Label": "96311-5517 via Conventional from 96312 -> 96216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96312, + "TargetID": 96216, + "Directional": true + } + ] + }, + { + "ID": 18736, + "SourceStructureID": 96315, + "TargetStructureID": 5517, + "Label": "96315-5517 via Conventional from 96316 -> 96314", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96316, + "TargetID": 96314, + "Directional": true + } + ] + }, + { + "ID": 18737, + "SourceStructureID": 96319, + "TargetStructureID": 5517, + "Label": "96319-5517 via Conventional from 96320 -> 96318", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96320, + "TargetID": 96318, + "Directional": true + } + ] + }, + { + "ID": 18738, + "SourceStructureID": 96321, + "TargetStructureID": 5517, + "Label": "96321-5517 via Conventional from 96322 -> 96111", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96322, + "TargetID": 96111, + "Directional": true + } + ] + }, + { + "ID": 18739, + "SourceStructureID": 96325, + "TargetStructureID": 5517, + "Label": "96325-5517 via Conventional from 96326 -> 96112", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96326, + "TargetID": 96112, + "Directional": true + } + ] + }, + { + "ID": 18740, + "SourceStructureID": 96337, + "TargetStructureID": 5517, + "Label": "96337-5517 via Conventional from 96339 -> 96059", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96339, + "TargetID": 96059, + "Directional": true + } + ] + }, + { + "ID": 18741, + "SourceStructureID": 96341, + "TargetStructureID": 5517, + "Label": "96341-5517 via Conventional from 96342 -> 96060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96342, + "TargetID": 96060, + "Directional": true + } + ] + }, + { + "ID": 18742, + "SourceStructureID": 96357, + "TargetStructureID": 5279, + "Label": "96357-5279 via Conventional from 96358 -> 6906", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96358, + "TargetID": 6906, + "Directional": true + } + ] + }, + { + "ID": 18743, + "SourceStructureID": 96373, + "TargetStructureID": 5279, + "Label": "96373-5279 via Conventional from 96402 -> 40191", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96402, + "TargetID": 40191, + "Directional": true + } + ] + }, + { + "ID": 18744, + "SourceStructureID": 96379, + "TargetStructureID": 5279, + "Label": "96379-5279 via Conventional from 96382 -> 49233", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96382, + "TargetID": 49233, + "Directional": true + } + ] + }, + { + "ID": 18745, + "SourceStructureID": 96383, + "TargetStructureID": 5279, + "Label": "96383-5279 via Conventional from 96384 -> 26006", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96384, + "TargetID": 26006, + "Directional": true + } + ] + }, + { + "ID": 18746, + "SourceStructureID": 96407, + "TargetStructureID": 5279, + "Label": "96407-5279 via Conventional from 96410 -> 49235, 96411 -> 49235", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96410, + "TargetID": 49235, + "Directional": true + }, + { + "SourceID": 96411, + "TargetID": 49235, + "Directional": true + } + ] + }, + { + "ID": 18747, + "SourceStructureID": 96421, + "TargetStructureID": 5279, + "Label": "96421-5279 via Conventional from 96422 -> 49237", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96422, + "TargetID": 49237, + "Directional": true + } + ] + }, + { + "ID": 18748, + "SourceStructureID": 96435, + "TargetStructureID": 5278, + "Label": "96435-5278 via Conventional from 114314 -> 114473", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114314, + "TargetID": 114473, + "Directional": true + } + ] + }, + { + "ID": 18749, + "SourceStructureID": 96435, + "TargetStructureID": 5279, + "Label": "96435-5279 via Conventional from 96436 -> 49240", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96436, + "TargetID": 49240, + "Directional": true + } + ] + }, + { + "ID": 18750, + "SourceStructureID": 96437, + "TargetStructureID": 5279, + "Label": "96437-5279 via Conventional from 96438 -> 49243", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96438, + "TargetID": 49243, + "Directional": true + } + ] + }, + { + "ID": 18751, + "SourceStructureID": 96442, + "TargetStructureID": 5279, + "Label": "96442-5279 via Conventional from 96443 -> 96444", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96443, + "TargetID": 96444, + "Directional": true + } + ] + }, + { + "ID": 18752, + "SourceStructureID": 96453, + "TargetStructureID": 5279, + "Label": "96453-5279 via Conventional from 96454 -> 49244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96454, + "TargetID": 49244, + "Directional": true + } + ] + }, + { + "ID": 18753, + "SourceStructureID": 96473, + "TargetStructureID": 5279, + "Label": "96473-5279 via Conventional from 96474 -> 6334", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96474, + "TargetID": 6334, + "Directional": true + } + ] + }, + { + "ID": 18754, + "SourceStructureID": 96485, + "TargetStructureID": 5279, + "Label": "96485-5279 via Conventional from 96486 -> 6337", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96486, + "TargetID": 6337, + "Directional": true + } + ] + }, + { + "ID": 18755, + "SourceStructureID": 96516, + "TargetStructureID": 332, + "Label": "96516-332 via Conventional from 96518 -> 96515", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96518, + "TargetID": 96515, + "Directional": true + } + ] + }, + { + "ID": 18756, + "SourceStructureID": 96519, + "TargetStructureID": 5279, + "Label": "96519-5279 via Conventional from 96998 -> 28311", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96998, + "TargetID": 28311, + "Directional": true + } + ] + }, + { + "ID": 18757, + "SourceStructureID": 96522, + "TargetStructureID": 332, + "Label": "96522-332 via Conventional from 96523 -> 96477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96523, + "TargetID": 96477, + "Directional": true + } + ] + }, + { + "ID": 18758, + "SourceStructureID": 96524, + "TargetStructureID": 324, + "Label": "96524-324 via Conventional from 96526 -> 96378", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96526, + "TargetID": 96378, + "Directional": true + } + ] + }, + { + "ID": 18759, + "SourceStructureID": 96534, + "TargetStructureID": 332, + "Label": "96534-332 via Conventional from 96535 -> 96536, 96540 -> 82186", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96535, + "TargetID": 96536, + "Directional": true + }, + { + "SourceID": 96540, + "TargetID": 82186, + "Directional": true + } + ] + }, + { + "ID": 18760, + "SourceStructureID": 96560, + "TargetStructureID": 332, + "Label": "96560-332 via Conventional from 96561 -> 96558", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96561, + "TargetID": 96558, + "Directional": true + } + ] + }, + { + "ID": 18761, + "SourceStructureID": 96562, + "TargetStructureID": 332, + "Label": "96562-332 via Conventional from 96563 -> 96559", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96563, + "TargetID": 96559, + "Directional": true + } + ] + }, + { + "ID": 18762, + "SourceStructureID": 96565, + "TargetStructureID": 332, + "Label": "96565-332 via Conventional from 97366 -> 97367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97366, + "TargetID": 97367, + "Directional": true + } + ] + }, + { + "ID": 18763, + "SourceStructureID": 96589, + "TargetStructureID": 332, + "Label": "96589-332 via Conventional from 96590 -> 96588", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96590, + "TargetID": 96588, + "Directional": true + } + ] + }, + { + "ID": 18764, + "SourceStructureID": 96589, + "TargetStructureID": 461, + "Label": "96589-461 via Conventional from 96591 -> 96592", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96591, + "TargetID": 96592, + "Directional": true + } + ] + }, + { + "ID": 18765, + "SourceStructureID": 96600, + "TargetStructureID": 483, + "Label": "96600-483 via Conventional from 96601 -> 96599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96601, + "TargetID": 96599, + "Directional": true + } + ] + }, + { + "ID": 18766, + "SourceStructureID": 96600, + "TargetStructureID": 6997, + "Label": "96600-6997 via Conventional from 96602 -> 96603", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96602, + "TargetID": 96603, + "Directional": true + } + ] + }, + { + "ID": 18767, + "SourceStructureID": 96610, + "TargetStructureID": 483, + "Label": "96610-483 via Conventional from 96612 -> 96606", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96612, + "TargetID": 96606, + "Directional": true + } + ] + }, + { + "ID": 18768, + "SourceStructureID": 96617, + "TargetStructureID": 483, + "Label": "96617-483 via Conventional from 96618 -> 96608", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96618, + "TargetID": 96608, + "Directional": true + } + ] + }, + { + "ID": 18769, + "SourceStructureID": 96619, + "TargetStructureID": 483, + "Label": "96619-483 via Conventional from 96620 -> 96607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96620, + "TargetID": 96607, + "Directional": true + } + ] + }, + { + "ID": 18770, + "SourceStructureID": 96621, + "TargetStructureID": 483, + "Label": "96621-483 via Conventional from 96622 -> 96623", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96622, + "TargetID": 96623, + "Directional": true + } + ] + }, + { + "ID": 18771, + "SourceStructureID": 96621, + "TargetStructureID": 525, + "Label": "96621-525 via Conventional from 96625 -> 6222", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96625, + "TargetID": 6222, + "Directional": true + } + ] + }, + { + "ID": 18772, + "SourceStructureID": 96629, + "TargetStructureID": 6857, + "Label": "96629-6857 via Conventional from 96631 -> 6873", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96631, + "TargetID": 6873, + "Directional": true + } + ] + }, + { + "ID": 18773, + "SourceStructureID": 96638, + "TargetStructureID": 483, + "Label": "96638-483 via Conventional from 96641 -> 96637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96641, + "TargetID": 96637, + "Directional": true + } + ] + }, + { + "ID": 18774, + "SourceStructureID": 96642, + "TargetStructureID": 483, + "Label": "96642-483 via Conventional from 96643 -> 92352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96643, + "TargetID": 92352, + "Directional": true + } + ] + }, + { + "ID": 18775, + "SourceStructureID": 96647, + "TargetStructureID": 483, + "Label": "96647-483 via Conventional from 96648 -> 96646", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96648, + "TargetID": 96646, + "Directional": true + } + ] + }, + { + "ID": 18776, + "SourceStructureID": 96649, + "TargetStructureID": 483, + "Label": "96649-483 via Conventional from 96650 -> 92348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96650, + "TargetID": 92348, + "Directional": true + } + ] + }, + { + "ID": 18777, + "SourceStructureID": 96657, + "TargetStructureID": 483, + "Label": "96657-483 via Conventional from 96658 -> 96659", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96658, + "TargetID": 96659, + "Directional": true + } + ] + }, + { + "ID": 18778, + "SourceStructureID": 96663, + "TargetStructureID": 483, + "Label": "96663-483 via Conventional from 96664 -> 96662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96664, + "TargetID": 96662, + "Directional": true + } + ] + }, + { + "ID": 18779, + "SourceStructureID": 96679, + "TargetStructureID": 5499, + "Label": "96679-5499 via Conventional from 96680 -> 96678", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96680, + "TargetID": 96678, + "Directional": true + } + ] + }, + { + "ID": 18780, + "SourceStructureID": 96699, + "TargetStructureID": 5499, + "Label": "96699-5499 via Conventional from 96700 -> 96698", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96700, + "TargetID": 96698, + "Directional": true + } + ] + }, + { + "ID": 18781, + "SourceStructureID": 96705, + "TargetStructureID": 96708, + "Label": "96705-96708 via Conventional from 96707 -> 96710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96707, + "TargetID": 96710, + "Directional": true + } + ] + }, + { + "ID": 18782, + "SourceStructureID": 96736, + "TargetStructureID": 5499, + "Label": "96736-5499 via Conventional from 96737 -> 96726", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96737, + "TargetID": 96726, + "Directional": true + } + ] + }, + { + "ID": 18783, + "SourceStructureID": 96768, + "TargetStructureID": 5561, + "Label": "96768-5561 via Conventional from 96770 -> 96771", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96770, + "TargetID": 96771, + "Directional": true + } + ] + }, + { + "ID": 18784, + "SourceStructureID": 96779, + "TargetStructureID": 5561, + "Label": "96779-5561 via Conventional from 96780 -> 29892", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96780, + "TargetID": 29892, + "Directional": true + } + ] + }, + { + "ID": 18785, + "SourceStructureID": 96786, + "TargetStructureID": 5561, + "Label": "96786-5561 via Conventional from 96787 -> 46156", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96787, + "TargetID": 46156, + "Directional": true + } + ] + }, + { + "ID": 18786, + "SourceStructureID": 96788, + "TargetStructureID": 10872, + "Label": "96788-10872 via Conventional from 96819 -> 15029, 96821 -> 15026, 96824 -> 96825", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96819, + "TargetID": 15029, + "Directional": true + }, + { + "SourceID": 96821, + "TargetID": 15026, + "Directional": true + }, + { + "SourceID": 96824, + "TargetID": 96825, + "Directional": true + } + ] + }, + { + "ID": 18787, + "SourceStructureID": 96788, + "TargetStructureID": 11248, + "Label": "96788-11248 via Conventional from 96859 -> 96860, 96861 -> 96862, 96863 -> 96864, 96865 -> 96867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96859, + "TargetID": 96860, + "Directional": true + }, + { + "SourceID": 96861, + "TargetID": 96862, + "Directional": true + }, + { + "SourceID": 96863, + "TargetID": 96864, + "Directional": true + }, + { + "SourceID": 96865, + "TargetID": 96867, + "Directional": true + } + ] + }, + { + "ID": 18788, + "SourceStructureID": 96799, + "TargetStructureID": 5561, + "Label": "96799-5561 via Conventional from 96800 -> 46262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96800, + "TargetID": 46262, + "Directional": true + } + ] + }, + { + "ID": 18789, + "SourceStructureID": 96801, + "TargetStructureID": 5561, + "Label": "96801-5561 via Conventional from 96802 -> 46265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96802, + "TargetID": 46265, + "Directional": true + } + ] + }, + { + "ID": 18790, + "SourceStructureID": 96805, + "TargetStructureID": 5561, + "Label": "96805-5561 via Conventional from 96806 -> 46283", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96806, + "TargetID": 46283, + "Directional": true + } + ] + }, + { + "ID": 18791, + "SourceStructureID": 96807, + "TargetStructureID": 5561, + "Label": "96807-5561 via Conventional from 96808 -> 29895", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96808, + "TargetID": 29895, + "Directional": true + } + ] + }, + { + "ID": 18792, + "SourceStructureID": 96810, + "TargetStructureID": 5561, + "Label": "96810-5561 via Conventional from 96811 -> 46291", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96811, + "TargetID": 46291, + "Directional": true + } + ] + }, + { + "ID": 18793, + "SourceStructureID": 96822, + "TargetStructureID": 5561, + "Label": "96822-5561 via Conventional from 96823 -> 46286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96823, + "TargetID": 46286, + "Directional": true + } + ] + }, + { + "ID": 18794, + "SourceStructureID": 96829, + "TargetStructureID": 5561, + "Label": "96829-5561 via Conventional from 96835 -> 46290", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96835, + "TargetID": 46290, + "Directional": true + } + ] + }, + { + "ID": 18795, + "SourceStructureID": 96848, + "TargetStructureID": 5528, + "Label": "96848-5528 via Conventional from 96849 -> 8286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96849, + "TargetID": 8286, + "Directional": true + } + ] + }, + { + "ID": 18796, + "SourceStructureID": 96852, + "TargetStructureID": 5528, + "Label": "96852-5528 via Conventional from 96866 -> 8287", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96866, + "TargetID": 8287, + "Directional": true + } + ] + }, + { + "ID": 18797, + "SourceStructureID": 96855, + "TargetStructureID": 5561, + "Label": "96855-5561 via Conventional from 96856 -> 46284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96856, + "TargetID": 46284, + "Directional": true + } + ] + }, + { + "ID": 18798, + "SourceStructureID": 96869, + "TargetStructureID": 5528, + "Label": "96869-5528 via Conventional from 96871 -> 8288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96871, + "TargetID": 8288, + "Directional": true + } + ] + }, + { + "ID": 18799, + "SourceStructureID": 96872, + "TargetStructureID": 5528, + "Label": "96872-5528 via Conventional from 96874 -> 8289", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96874, + "TargetID": 8289, + "Directional": true + } + ] + }, + { + "ID": 18800, + "SourceStructureID": 96872, + "TargetStructureID": 7576, + "Label": "96872-7576 via Conventional from 107174 -> 55052", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107174, + "TargetID": 55052, + "Directional": true + } + ] + }, + { + "ID": 18801, + "SourceStructureID": 96875, + "TargetStructureID": 5528, + "Label": "96875-5528 via Conventional from 96876 -> 8294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96876, + "TargetID": 8294, + "Directional": true + } + ] + }, + { + "ID": 18802, + "SourceStructureID": 96898, + "TargetStructureID": 5528, + "Label": "96898-5528 via Conventional from 96899 -> 96900", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96899, + "TargetID": 96900, + "Directional": true + } + ] + }, + { + "ID": 18803, + "SourceStructureID": 96919, + "TargetStructureID": 5565, + "Label": "96919-5565 via Conventional from 96920 -> 50279", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96920, + "TargetID": 50279, + "Directional": true + } + ] + }, + { + "ID": 18804, + "SourceStructureID": 96921, + "TargetStructureID": 5561, + "Label": "96921-5561 via Conventional from 96922 -> 48939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96922, + "TargetID": 48939, + "Directional": true + } + ] + }, + { + "ID": 18805, + "SourceStructureID": 96924, + "TargetStructureID": 5561, + "Label": "96924-5561 via Conventional from 96925 -> 96926", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96925, + "TargetID": 96926, + "Directional": true + } + ] + }, + { + "ID": 18806, + "SourceStructureID": 96930, + "TargetStructureID": 5561, + "Label": "96930-5561 via Conventional from 96931 -> 29897", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96931, + "TargetID": 29897, + "Directional": true + } + ] + }, + { + "ID": 18807, + "SourceStructureID": 96932, + "TargetStructureID": 5561, + "Label": "96932-5561 via Conventional from 96933 -> 48934", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96933, + "TargetID": 48934, + "Directional": true + } + ] + }, + { + "ID": 18808, + "SourceStructureID": 96941, + "TargetStructureID": 5561, + "Label": "96941-5561 via Conventional from 96942 -> 46264", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96942, + "TargetID": 46264, + "Directional": true + } + ] + }, + { + "ID": 18809, + "SourceStructureID": 96950, + "TargetStructureID": 5561, + "Label": "96950-5561 via Conventional from 96951 -> 46269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96951, + "TargetID": 46269, + "Directional": true + } + ] + }, + { + "ID": 18810, + "SourceStructureID": 96955, + "TargetStructureID": 5561, + "Label": "96955-5561 via Conventional from 148165 -> 148164", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148165, + "TargetID": 148164, + "Directional": true + } + ] + }, + { + "ID": 18811, + "SourceStructureID": 96955, + "TargetStructureID": 20136, + "Label": "96955-20136 via Conventional from 96957 -> 46036", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96957, + "TargetID": 46036, + "Directional": true + } + ] + }, + { + "ID": 18812, + "SourceStructureID": 96958, + "TargetStructureID": 5561, + "Label": "96958-5561 via Conventional from 96959 -> 46268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96959, + "TargetID": 46268, + "Directional": true + } + ] + }, + { + "ID": 18813, + "SourceStructureID": 96960, + "TargetStructureID": 5561, + "Label": "96960-5561 via Conventional from 96961 -> 46267", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96961, + "TargetID": 46267, + "Directional": true + } + ] + }, + { + "ID": 18814, + "SourceStructureID": 96964, + "TargetStructureID": 5561, + "Label": "96964-5561 via Conventional from 96965 -> 46270", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96965, + "TargetID": 46270, + "Directional": true + } + ] + }, + { + "ID": 18815, + "SourceStructureID": 96976, + "TargetStructureID": 5561, + "Label": "96976-5561 via Conventional from 96977 -> 46272", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96977, + "TargetID": 46272, + "Directional": true + } + ] + }, + { + "ID": 18816, + "SourceStructureID": 96980, + "TargetStructureID": 5561, + "Label": "96980-5561 via Conventional from 96982 -> 46274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96982, + "TargetID": 46274, + "Directional": true + } + ] + }, + { + "ID": 18817, + "SourceStructureID": 96984, + "TargetStructureID": 5561, + "Label": "96984-5561 via Conventional from 96985 -> 46275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96985, + "TargetID": 46275, + "Directional": true + } + ] + }, + { + "ID": 18818, + "SourceStructureID": 96986, + "TargetStructureID": 5561, + "Label": "96986-5561 via Conventional from 96987 -> 46276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96987, + "TargetID": 46276, + "Directional": true + } + ] + }, + { + "ID": 18819, + "SourceStructureID": 96995, + "TargetStructureID": 5561, + "Label": "96995-5561 via Conventional from 96996 -> 49479", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96996, + "TargetID": 49479, + "Directional": true + } + ] + }, + { + "ID": 18820, + "SourceStructureID": 96997, + "TargetStructureID": 5561, + "Label": "96997-5561 via Conventional from 96999 -> 49480", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96999, + "TargetID": 49480, + "Directional": true + } + ] + }, + { + "ID": 18821, + "SourceStructureID": 97003, + "TargetStructureID": 5279, + "Label": "97003-5279 via Conventional from 97004 -> 25797", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97004, + "TargetID": 25797, + "Directional": true + } + ] + }, + { + "ID": 18822, + "SourceStructureID": 97005, + "TargetStructureID": 5561, + "Label": "97005-5561 via Conventional from 97008 -> 46278, 97009 -> 46282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97008, + "TargetID": 46278, + "Directional": true + }, + { + "SourceID": 97009, + "TargetID": 46282, + "Directional": true + } + ] + }, + { + "ID": 18823, + "SourceStructureID": 97011, + "TargetStructureID": 5279, + "Label": "97011-5279 via Conventional from 97017 -> 25803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97017, + "TargetID": 25803, + "Directional": true + } + ] + }, + { + "ID": 18824, + "SourceStructureID": 97015, + "TargetStructureID": 5561, + "Label": "97015-5561 via Conventional from 97016 -> 46280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97016, + "TargetID": 46280, + "Directional": true + } + ] + }, + { + "ID": 18825, + "SourceStructureID": 97020, + "TargetStructureID": 5561, + "Label": "97020-5561 via Conventional from 97021 -> 46281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97021, + "TargetID": 46281, + "Directional": true + } + ] + }, + { + "ID": 18826, + "SourceStructureID": 97024, + "TargetStructureID": 471, + "Label": "97024-471 via Conventional from 97095 -> 97097, 97101 -> 97102, 97106 -> 16285, 97112 -> 16286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97095, + "TargetID": 97097, + "Directional": true + }, + { + "SourceID": 97101, + "TargetID": 97102, + "Directional": true + }, + { + "SourceID": 97106, + "TargetID": 16285, + "Directional": true + }, + { + "SourceID": 97112, + "TargetID": 16286, + "Directional": true + } + ] + }, + { + "ID": 18827, + "SourceStructureID": 97024, + "TargetStructureID": 476, + "Label": "97024-476 via Conventional from 97077 -> 97075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97077, + "TargetID": 97075, + "Directional": true + } + ] + }, + { + "ID": 18828, + "SourceStructureID": 97032, + "TargetStructureID": 5561, + "Label": "97032-5561 via Conventional from 97033 -> 48868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97033, + "TargetID": 48868, + "Directional": true + } + ] + }, + { + "ID": 18829, + "SourceStructureID": 97037, + "TargetStructureID": 5561, + "Label": "97037-5561 via Conventional from 97038 -> 49637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97038, + "TargetID": 49637, + "Directional": true + } + ] + }, + { + "ID": 18830, + "SourceStructureID": 97037, + "TargetStructureID": 5562, + "Label": "97037-5562 via Conventional from 97040 -> 63746", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97040, + "TargetID": 63746, + "Directional": true + } + ] + }, + { + "ID": 18831, + "SourceStructureID": 97041, + "TargetStructureID": 5279, + "Label": "97041-5279 via Conventional from 97044 -> 25800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97044, + "TargetID": 25800, + "Directional": true + } + ] + }, + { + "ID": 18832, + "SourceStructureID": 97046, + "TargetStructureID": 5561, + "Label": "97046-5561 via Conventional from 97047 -> 46158", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97047, + "TargetID": 46158, + "Directional": true + } + ] + }, + { + "ID": 18833, + "SourceStructureID": 97048, + "TargetStructureID": 5279, + "Label": "97048-5279 via Conventional from 97049 -> 25799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97049, + "TargetID": 25799, + "Directional": true + } + ] + }, + { + "ID": 18834, + "SourceStructureID": 97050, + "TargetStructureID": 5279, + "Label": "97050-5279 via Conventional from 97052 -> 97053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97052, + "TargetID": 97053, + "Directional": true + } + ] + }, + { + "ID": 18835, + "SourceStructureID": 97061, + "TargetStructureID": 5561, + "Label": "97061-5561 via Conventional from 97062 -> 46165", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97062, + "TargetID": 46165, + "Directional": true + } + ] + }, + { + "ID": 18836, + "SourceStructureID": 97068, + "TargetStructureID": 5561, + "Label": "97068-5561 via Conventional from 97080 -> 46197", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97080, + "TargetID": 46197, + "Directional": true + } + ] + }, + { + "ID": 18837, + "SourceStructureID": 97069, + "TargetStructureID": 5279, + "Label": "97069-5279 via Conventional from 97074 -> 25804, 97076 -> 97078", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97074, + "TargetID": 25804, + "Directional": true + }, + { + "SourceID": 97076, + "TargetID": 97078, + "Directional": true + } + ] + }, + { + "ID": 18838, + "SourceStructureID": 97079, + "TargetStructureID": 5279, + "Label": "97079-5279 via Conventional from 97081 -> 6339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97081, + "TargetID": 6339, + "Directional": true + } + ] + }, + { + "ID": 18839, + "SourceStructureID": 97086, + "TargetStructureID": 5279, + "Label": "97086-5279 via Conventional from 97088 -> 6338", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97088, + "TargetID": 6338, + "Directional": true + } + ] + }, + { + "ID": 18840, + "SourceStructureID": 97087, + "TargetStructureID": 5561, + "Label": "97087-5561 via Conventional from 97089 -> 97084", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97089, + "TargetID": 97084, + "Directional": true + } + ] + }, + { + "ID": 18841, + "SourceStructureID": 97099, + "TargetStructureID": 5279, + "Label": "97099-5279 via Conventional from 97104 -> 25839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97104, + "TargetID": 25839, + "Directional": true + } + ] + }, + { + "ID": 18842, + "SourceStructureID": 97105, + "TargetStructureID": 5279, + "Label": "97105-5279 via Conventional from 97109 -> 97108", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97109, + "TargetID": 97108, + "Directional": true + } + ] + }, + { + "ID": 18843, + "SourceStructureID": 97126, + "TargetStructureID": 5279, + "Label": "97126-5279 via Conventional from 97133 -> 25806", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97133, + "TargetID": 25806, + "Directional": true + } + ] + }, + { + "ID": 18844, + "SourceStructureID": 97131, + "TargetStructureID": 5561, + "Label": "97131-5561 via Conventional from 97134 -> 97135", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97134, + "TargetID": 97135, + "Directional": true + } + ] + }, + { + "ID": 18845, + "SourceStructureID": 97139, + "TargetStructureID": 5279, + "Label": "97139-5279 via Conventional from 97140 -> 25808", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97140, + "TargetID": 25808, + "Directional": true + } + ] + }, + { + "ID": 18846, + "SourceStructureID": 97143, + "TargetStructureID": 5279, + "Label": "97143-5279 via Conventional from 97149 -> 25810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97149, + "TargetID": 25810, + "Directional": true + } + ] + }, + { + "ID": 18847, + "SourceStructureID": 97146, + "TargetStructureID": 5561, + "Label": "97146-5561 via Conventional from 97147 -> 46190", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97147, + "TargetID": 46190, + "Directional": true + } + ] + }, + { + "ID": 18848, + "SourceStructureID": 97148, + "TargetStructureID": 5561, + "Label": "97148-5561 via Conventional from 97150 -> 97151", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97150, + "TargetID": 97151, + "Directional": true + } + ] + }, + { + "ID": 18849, + "SourceStructureID": 97155, + "TargetStructureID": 5561, + "Label": "97155-5561 via Conventional from 97157 -> 46191", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97157, + "TargetID": 46191, + "Directional": true + } + ] + }, + { + "ID": 18850, + "SourceStructureID": 97161, + "TargetStructureID": 5561, + "Label": "97161-5561 via Conventional from 97164 -> 46175", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97164, + "TargetID": 46175, + "Directional": true + } + ] + }, + { + "ID": 18851, + "SourceStructureID": 97175, + "TargetStructureID": 5279, + "Label": "97175-5279 via Conventional from 97183 -> 49252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97183, + "TargetID": 49252, + "Directional": true + } + ] + }, + { + "ID": 18852, + "SourceStructureID": 97188, + "TargetStructureID": 5561, + "Label": "97188-5561 via Conventional from 97189 -> 46171", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97189, + "TargetID": 46171, + "Directional": true + } + ] + }, + { + "ID": 18853, + "SourceStructureID": 97194, + "TargetStructureID": 5561, + "Label": "97194-5561 via Conventional from 97195 -> 46179", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97195, + "TargetID": 46179, + "Directional": true + } + ] + }, + { + "ID": 18854, + "SourceStructureID": 97198, + "TargetStructureID": 5561, + "Label": "97198-5561 via Conventional from 97199 -> 55345", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97199, + "TargetID": 55345, + "Directional": true + } + ] + }, + { + "ID": 18855, + "SourceStructureID": 97209, + "TargetStructureID": 5561, + "Label": "97209-5561 via Conventional from 97210 -> 97208", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97210, + "TargetID": 97208, + "Directional": true + } + ] + }, + { + "ID": 18856, + "SourceStructureID": 97212, + "TargetStructureID": 5561, + "Label": "97212-5561 via Conventional from 97213 -> 97211", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97213, + "TargetID": 97211, + "Directional": true + } + ] + }, + { + "ID": 18857, + "SourceStructureID": 97221, + "TargetStructureID": 5561, + "Label": "97221-5561 via Conventional from 97222 -> 46182", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97222, + "TargetID": 46182, + "Directional": true + } + ] + }, + { + "ID": 18858, + "SourceStructureID": 97227, + "TargetStructureID": 5561, + "Label": "97227-5561 via Conventional from 97230 -> 46183", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97230, + "TargetID": 46183, + "Directional": true + } + ] + }, + { + "ID": 18859, + "SourceStructureID": 97228, + "TargetStructureID": 5279, + "Label": "97228-5279 via Conventional from 97264 -> 6344", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97264, + "TargetID": 6344, + "Directional": true + } + ] + }, + { + "ID": 18860, + "SourceStructureID": 97232, + "TargetStructureID": 5561, + "Label": "97232-5561 via Conventional from 97259 -> 46184", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97259, + "TargetID": 46184, + "Directional": true + } + ] + }, + { + "ID": 18861, + "SourceStructureID": 97233, + "TargetStructureID": 5279, + "Label": "97233-5279 via Conventional from 97239 -> 6349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97239, + "TargetID": 6349, + "Directional": true + } + ] + }, + { + "ID": 18862, + "SourceStructureID": 97234, + "TargetStructureID": 5528, + "Label": "97234-5528 via Conventional from 97235 -> 97238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97235, + "TargetID": 97238, + "Directional": true + } + ] + }, + { + "ID": 18863, + "SourceStructureID": 97240, + "TargetStructureID": 5279, + "Label": "97240-5279 via Conventional from 97250 -> 6350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97250, + "TargetID": 6350, + "Directional": true + } + ] + }, + { + "ID": 18864, + "SourceStructureID": 97253, + "TargetStructureID": 5279, + "Label": "97253-5279 via Conventional from 97256 -> 6348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97256, + "TargetID": 6348, + "Directional": true + } + ] + }, + { + "ID": 18865, + "SourceStructureID": 97265, + "TargetStructureID": 5528, + "Label": "97265-5528 via Conventional from 97267 -> 97268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97267, + "TargetID": 97268, + "Directional": true + } + ] + }, + { + "ID": 18866, + "SourceStructureID": 97275, + "TargetStructureID": 5561, + "Label": "97275-5561 via Conventional from 97276 -> 46161", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97276, + "TargetID": 46161, + "Directional": true + } + ] + }, + { + "ID": 18867, + "SourceStructureID": 97278, + "TargetStructureID": 5561, + "Label": "97278-5561 via Conventional from 97279 -> 46160", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97279, + "TargetID": 46160, + "Directional": true + } + ] + }, + { + "ID": 18868, + "SourceStructureID": 97293, + "TargetStructureID": 5528, + "Label": "97293-5528 via Conventional from 97306 -> 97307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97306, + "TargetID": 97307, + "Directional": true + } + ] + }, + { + "ID": 18869, + "SourceStructureID": 97295, + "TargetStructureID": 5561, + "Label": "97295-5561 via Conventional from 97304 -> 49640", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97304, + "TargetID": 49640, + "Directional": true + } + ] + }, + { + "ID": 18870, + "SourceStructureID": 97295, + "TargetStructureID": 97381, + "Label": "97295-97381 via Conventional from 97380 -> 97382", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97380, + "TargetID": 97382, + "Directional": true + } + ] + }, + { + "ID": 18871, + "SourceStructureID": 97299, + "TargetStructureID": 5279, + "Label": "97299-5279 via Conventional from 97300 -> 6352, 97321 -> 6352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97300, + "TargetID": 6352, + "Directional": true + }, + { + "SourceID": 97321, + "TargetID": 6352, + "Directional": true + } + ] + }, + { + "ID": 18872, + "SourceStructureID": 97318, + "TargetStructureID": 5279, + "Label": "97318-5279 via Conventional from 97326 -> 25814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97326, + "TargetID": 25814, + "Directional": true + } + ] + }, + { + "ID": 18873, + "SourceStructureID": 97322, + "TargetStructureID": 5279, + "Label": "97322-5279 via Conventional from 97323 -> 25815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97323, + "TargetID": 25815, + "Directional": true + } + ] + }, + { + "ID": 18874, + "SourceStructureID": 97324, + "TargetStructureID": 5561, + "Label": "97324-5561 via Conventional from 97325 -> 46201", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97325, + "TargetID": 46201, + "Directional": true + } + ] + }, + { + "ID": 18875, + "SourceStructureID": 97343, + "TargetStructureID": 5561, + "Label": "97343-5561 via Conventional from 97344 -> 46125", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97344, + "TargetID": 46125, + "Directional": true + } + ] + }, + { + "ID": 18876, + "SourceStructureID": 97346, + "TargetStructureID": 5279, + "Label": "97346-5279 via Conventional from 97349 -> 49264", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97349, + "TargetID": 49264, + "Directional": true + } + ] + }, + { + "ID": 18877, + "SourceStructureID": 97352, + "TargetStructureID": 59362, + "Label": "97352-59362 via Conventional from 122453 -> 122454", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122453, + "TargetID": 122454, + "Directional": true + } + ] + }, + { + "ID": 18878, + "SourceStructureID": 97361, + "TargetStructureID": 5279, + "Label": "97361-5279 via Conventional from 97362 -> 49256", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97362, + "TargetID": 49256, + "Directional": true + } + ] + }, + { + "ID": 18879, + "SourceStructureID": 97370, + "TargetStructureID": 5279, + "Label": "97370-5279 via Conventional from 97371 -> 49259", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97371, + "TargetID": 49259, + "Directional": true + } + ] + }, + { + "ID": 18880, + "SourceStructureID": 97372, + "TargetStructureID": 5279, + "Label": "97372-5279 via Conventional from 97373 -> 49260", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97373, + "TargetID": 49260, + "Directional": true + } + ] + }, + { + "ID": 18881, + "SourceStructureID": 97386, + "TargetStructureID": 5279, + "Label": "97386-5279 via Conventional from 97387 -> 97572", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97387, + "TargetID": 97572, + "Directional": true + } + ] + }, + { + "ID": 18882, + "SourceStructureID": 97401, + "TargetStructureID": 5561, + "Label": "97401-5561 via Conventional from 97403 -> 48871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97403, + "TargetID": 48871, + "Directional": true + } + ] + }, + { + "ID": 18883, + "SourceStructureID": 97401, + "TargetStructureID": 5565, + "Label": "97401-5565 via Conventional from 97404 -> 53983", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97404, + "TargetID": 53983, + "Directional": true + } + ] + }, + { + "ID": 18884, + "SourceStructureID": 97407, + "TargetStructureID": 5561, + "Label": "97407-5561 via Conventional from 97408 -> 46203", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97408, + "TargetID": 46203, + "Directional": true + } + ] + }, + { + "ID": 18885, + "SourceStructureID": 97417, + "TargetStructureID": 5561, + "Label": "97417-5561 via Conventional from 97418 -> 46202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97418, + "TargetID": 46202, + "Directional": true + } + ] + }, + { + "ID": 18886, + "SourceStructureID": 97420, + "TargetStructureID": 5561, + "Label": "97420-5561 via Conventional from 97422 -> 97423", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97422, + "TargetID": 97423, + "Directional": true + } + ] + }, + { + "ID": 18887, + "SourceStructureID": 97420, + "TargetStructureID": 5565, + "Label": "97420-5565 via Conventional from 97421 -> 53979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97421, + "TargetID": 53979, + "Directional": true + } + ] + }, + { + "ID": 18888, + "SourceStructureID": 97439, + "TargetStructureID": 5561, + "Label": "97439-5561 via Conventional from 97440 -> 46206", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97440, + "TargetID": 46206, + "Directional": true + } + ] + }, + { + "ID": 18889, + "SourceStructureID": 97448, + "TargetStructureID": 5561, + "Label": "97448-5561 via Conventional from 97449 -> 46210", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97449, + "TargetID": 46210, + "Directional": true + } + ] + }, + { + "ID": 18890, + "SourceStructureID": 97461, + "TargetStructureID": 5561, + "Label": "97461-5561 via Conventional from 97462 -> 46209", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97462, + "TargetID": 46209, + "Directional": true + } + ] + }, + { + "ID": 18891, + "SourceStructureID": 97464, + "TargetStructureID": 5561, + "Label": "97464-5561 via Conventional from 97465 -> 46215", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97465, + "TargetID": 46215, + "Directional": true + } + ] + }, + { + "ID": 18892, + "SourceStructureID": 97466, + "TargetStructureID": 5561, + "Label": "97466-5561 via Conventional from 97468 -> 46216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97468, + "TargetID": 46216, + "Directional": true + } + ] + }, + { + "ID": 18893, + "SourceStructureID": 97475, + "TargetStructureID": 5561, + "Label": "97475-5561 via Conventional from 97476 -> 148255, 97478 -> 97474", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97476, + "TargetID": 148255, + "Directional": true + }, + { + "SourceID": 97478, + "TargetID": 97474, + "Directional": true + } + ] + }, + { + "ID": 18894, + "SourceStructureID": 97479, + "TargetStructureID": 5561, + "Label": "97479-5561 via Conventional from 97480 -> 97473", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97480, + "TargetID": 97473, + "Directional": true + } + ] + }, + { + "ID": 18895, + "SourceStructureID": 97479, + "TargetStructureID": 97475, + "Label": "97479-97475 via Conventional from 97481 -> 97477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97481, + "TargetID": 97477, + "Directional": true + } + ] + }, + { + "ID": 18896, + "SourceStructureID": 97482, + "TargetStructureID": 5561, + "Label": "97482-5561 via Conventional from 97483 -> 97471", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97483, + "TargetID": 97471, + "Directional": true + } + ] + }, + { + "ID": 18897, + "SourceStructureID": 97484, + "TargetStructureID": 5279, + "Label": "97484-5279 via Conventional from 97491 -> 97490", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97491, + "TargetID": 97490, + "Directional": true + } + ] + }, + { + "ID": 18898, + "SourceStructureID": 97485, + "TargetStructureID": 5561, + "Label": "97485-5561 via Conventional from 99342 -> 148253", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99342, + "TargetID": 148253, + "Directional": true + } + ] + }, + { + "ID": 18899, + "SourceStructureID": 97492, + "TargetStructureID": 5561, + "Label": "97492-5561 via Conventional from 97493 -> 97470", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97493, + "TargetID": 97470, + "Directional": true + } + ] + }, + { + "ID": 18900, + "SourceStructureID": 97494, + "TargetStructureID": 5279, + "Label": "97494-5279 via Conventional from 97511 -> 27446", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97511, + "TargetID": 27446, + "Directional": true + } + ] + }, + { + "ID": 18901, + "SourceStructureID": 97498, + "TargetStructureID": 5561, + "Label": "97498-5561 via Conventional from 97499 -> 46240", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97499, + "TargetID": 46240, + "Directional": true + } + ] + }, + { + "ID": 18902, + "SourceStructureID": 97500, + "TargetStructureID": 97503, + "Label": "97500-97503 via Conventional from 97501 -> 97504", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97501, + "TargetID": 97504, + "Directional": true + } + ] + }, + { + "ID": 18903, + "SourceStructureID": 97507, + "TargetStructureID": 5561, + "Label": "97507-5561 via Conventional from 97508 -> 46227", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97508, + "TargetID": 46227, + "Directional": true + } + ] + }, + { + "ID": 18904, + "SourceStructureID": 97509, + "TargetStructureID": 5561, + "Label": "97509-5561 via Conventional from 97510 -> 46229", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97510, + "TargetID": 46229, + "Directional": true + } + ] + }, + { + "ID": 18905, + "SourceStructureID": 97522, + "TargetStructureID": 5279, + "Label": "97522-5279 via Conventional from 97526 -> 97525", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97526, + "TargetID": 97525, + "Directional": true + } + ] + }, + { + "ID": 18906, + "SourceStructureID": 97528, + "TargetStructureID": 5279, + "Label": "97528-5279 via Conventional from 97529 -> 97530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97529, + "TargetID": 97530, + "Directional": true + } + ] + }, + { + "ID": 18907, + "SourceStructureID": 97532, + "TargetStructureID": 5279, + "Label": "97532-5279 via Conventional from 97534 -> 97535", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97534, + "TargetID": 97535, + "Directional": true + } + ] + }, + { + "ID": 18908, + "SourceStructureID": 97536, + "TargetStructureID": 5561, + "Label": "97536-5561 via Conventional from 97539 -> 46245", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97539, + "TargetID": 46245, + "Directional": true + } + ] + }, + { + "ID": 18909, + "SourceStructureID": 97543, + "TargetStructureID": 5561, + "Label": "97543-5561 via Conventional from 97544 -> 46247", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97544, + "TargetID": 46247, + "Directional": true + } + ] + }, + { + "ID": 18910, + "SourceStructureID": 97546, + "TargetStructureID": 5561, + "Label": "97546-5561 via Conventional from 97547 -> 46248", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97547, + "TargetID": 46248, + "Directional": true + } + ] + }, + { + "ID": 18911, + "SourceStructureID": 97554, + "TargetStructureID": 5561, + "Label": "97554-5561 via Conventional from 97555 -> 46242", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97555, + "TargetID": 46242, + "Directional": true + } + ] + }, + { + "ID": 18912, + "SourceStructureID": 97558, + "TargetStructureID": 5561, + "Label": "97558-5561 via Conventional from 97565 -> 46250, 97567 -> 46254", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97565, + "TargetID": 46250, + "Directional": true + }, + { + "SourceID": 97567, + "TargetID": 46254, + "Directional": true + } + ] + }, + { + "ID": 18913, + "SourceStructureID": 97568, + "TargetStructureID": 5499, + "Label": "97568-5499 via Conventional from 106547 -> 49666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106547, + "TargetID": 49666, + "Directional": true + } + ] + }, + { + "ID": 18914, + "SourceStructureID": 97568, + "TargetStructureID": 5561, + "Label": "97568-5561 via Conventional from 97569 -> 97570", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97569, + "TargetID": 97570, + "Directional": true + } + ] + }, + { + "ID": 18915, + "SourceStructureID": 97568, + "TargetStructureID": 7024, + "Label": "97568-7024 via Conventional from 106606 -> 106607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106606, + "TargetID": 106607, + "Directional": true + } + ] + }, + { + "ID": 18916, + "SourceStructureID": 97573, + "TargetStructureID": 97568, + "Label": "97573-97568 via Conventional from 97574 -> 97571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97574, + "TargetID": 97571, + "Directional": true + } + ] + }, + { + "ID": 18917, + "SourceStructureID": 97575, + "TargetStructureID": 5561, + "Label": "97575-5561 via Conventional from 97576 -> 46255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97576, + "TargetID": 46255, + "Directional": true + } + ] + }, + { + "ID": 18918, + "SourceStructureID": 97578, + "TargetStructureID": 5561, + "Label": "97578-5561 via Conventional from 97581 -> 46256", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97581, + "TargetID": 46256, + "Directional": true + } + ] + }, + { + "ID": 18919, + "SourceStructureID": 97582, + "TargetStructureID": 5561, + "Label": "97582-5561 via Conventional from 97583 -> 46252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97583, + "TargetID": 46252, + "Directional": true + } + ] + }, + { + "ID": 18920, + "SourceStructureID": 97597, + "TargetStructureID": 5279, + "Label": "97597-5279 via Conventional from 97598 -> 97599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97598, + "TargetID": 97599, + "Directional": true + } + ] + }, + { + "ID": 18921, + "SourceStructureID": 97605, + "TargetStructureID": 5279, + "Label": "97605-5279 via Conventional from 97606 -> 97607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97606, + "TargetID": 97607, + "Directional": true + } + ] + }, + { + "ID": 18922, + "SourceStructureID": 97615, + "TargetStructureID": 5279, + "Label": "97615-5279 via Conventional from 97616 -> 97617", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97616, + "TargetID": 97617, + "Directional": true + } + ] + }, + { + "ID": 18923, + "SourceStructureID": 97620, + "TargetStructureID": 5279, + "Label": "97620-5279 via Conventional from 97621 -> 97622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97621, + "TargetID": 97622, + "Directional": true + } + ] + }, + { + "ID": 18924, + "SourceStructureID": 97627, + "TargetStructureID": 5279, + "Label": "97627-5279 via BC Conventional Synapse from 97628 -> 97629", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 97628, + "TargetID": 97629, + "Directional": true + } + ] + }, + { + "ID": 18925, + "SourceStructureID": 97638, + "TargetStructureID": 5279, + "Label": "97638-5279 via Conventional from 97643 -> 49202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97643, + "TargetID": 49202, + "Directional": true + } + ] + }, + { + "ID": 18926, + "SourceStructureID": 97646, + "TargetStructureID": 5279, + "Label": "97646-5279 via Conventional from 97647 -> 49219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97647, + "TargetID": 49219, + "Directional": true + } + ] + }, + { + "ID": 18927, + "SourceStructureID": 97671, + "TargetStructureID": 5561, + "Label": "97671-5561 via Conventional from 97672 -> 46044", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97672, + "TargetID": 46044, + "Directional": true + } + ] + }, + { + "ID": 18928, + "SourceStructureID": 97676, + "TargetStructureID": 909, + "Label": "97676-909 via Conventional from 130893 -> 45895", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130893, + "TargetID": 45895, + "Directional": true + } + ] + }, + { + "ID": 18929, + "SourceStructureID": 97676, + "TargetStructureID": 5561, + "Label": "97676-5561 via Conventional from 97677 -> 46045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97677, + "TargetID": 46045, + "Directional": true + } + ] + }, + { + "ID": 18930, + "SourceStructureID": 97680, + "TargetStructureID": 5561, + "Label": "97680-5561 via Conventional from 97681 -> 46305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97681, + "TargetID": 46305, + "Directional": true + } + ] + }, + { + "ID": 18931, + "SourceStructureID": 97684, + "TargetStructureID": 5561, + "Label": "97684-5561 via Conventional from 97685 -> 48982", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97685, + "TargetID": 48982, + "Directional": true + } + ] + }, + { + "ID": 18932, + "SourceStructureID": 97691, + "TargetStructureID": 5561, + "Label": "97691-5561 via Conventional from 97692 -> 46300", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97692, + "TargetID": 46300, + "Directional": true + } + ] + }, + { + "ID": 18933, + "SourceStructureID": 97691, + "TargetStructureID": 20136, + "Label": "97691-20136 via Conventional from 97693 -> 97694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97693, + "TargetID": 97694, + "Directional": true + } + ] + }, + { + "ID": 18934, + "SourceStructureID": 97722, + "TargetStructureID": 5561, + "Label": "97722-5561 via Conventional from 97723 -> 97718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97723, + "TargetID": 97718, + "Directional": true + } + ] + }, + { + "ID": 18935, + "SourceStructureID": 97727, + "TargetStructureID": 5561, + "Label": "97727-5561 via Conventional from 97728 -> 97721", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97728, + "TargetID": 97721, + "Directional": true + } + ] + }, + { + "ID": 18936, + "SourceStructureID": 97730, + "TargetStructureID": 5561, + "Label": "97730-5561 via Conventional from 97733 -> 97719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97733, + "TargetID": 97719, + "Directional": true + } + ] + }, + { + "ID": 18937, + "SourceStructureID": 97730, + "TargetStructureID": 61450, + "Label": "97730-61450 via Conventional from 97739 -> 61491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97739, + "TargetID": 61491, + "Directional": true + } + ] + }, + { + "ID": 18938, + "SourceStructureID": 97743, + "TargetStructureID": 5561, + "Label": "97743-5561 via Conventional from 97744 -> 97742", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97744, + "TargetID": 97742, + "Directional": true + } + ] + }, + { + "ID": 18939, + "SourceStructureID": 97750, + "TargetStructureID": 5561, + "Label": "97750-5561 via Conventional from 97751 -> 46297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97751, + "TargetID": 46297, + "Directional": true + } + ] + }, + { + "ID": 18940, + "SourceStructureID": 97764, + "TargetStructureID": 5561, + "Label": "97764-5561 via Conventional from 97766 -> 97763", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97766, + "TargetID": 97763, + "Directional": true + } + ] + }, + { + "ID": 18941, + "SourceStructureID": 97774, + "TargetStructureID": 4569, + "Label": "97774-4569 via Conventional from 97775 -> 4746", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97775, + "TargetID": 4746, + "Directional": true + } + ] + }, + { + "ID": 18942, + "SourceStructureID": 97780, + "TargetStructureID": 4569, + "Label": "97780-4569 via Conventional from 97781 -> 14966", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97781, + "TargetID": 14966, + "Directional": true + } + ] + }, + { + "ID": 18943, + "SourceStructureID": 97786, + "TargetStructureID": 4569, + "Label": "97786-4569 via Conventional from 97787 -> 4740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97787, + "TargetID": 4740, + "Directional": true + } + ] + }, + { + "ID": 18944, + "SourceStructureID": 97790, + "TargetStructureID": 4569, + "Label": "97790-4569 via Conventional from 97791 -> 4743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97791, + "TargetID": 4743, + "Directional": true + } + ] + }, + { + "ID": 18945, + "SourceStructureID": 97792, + "TargetStructureID": 4569, + "Label": "97792-4569 via Conventional from 97793 -> 52452", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97793, + "TargetID": 52452, + "Directional": true + } + ] + }, + { + "ID": 18946, + "SourceStructureID": 97797, + "TargetStructureID": 4569, + "Label": "97797-4569 via Conventional from 97799 -> 52457", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97799, + "TargetID": 52457, + "Directional": true + } + ] + }, + { + "ID": 18947, + "SourceStructureID": 97803, + "TargetStructureID": 4569, + "Label": "97803-4569 via Conventional from 97804 -> 52463", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97804, + "TargetID": 52463, + "Directional": true + } + ] + }, + { + "ID": 18948, + "SourceStructureID": 97814, + "TargetStructureID": 4569, + "Label": "97814-4569 via Conventional from 97815 -> 52466", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97815, + "TargetID": 52466, + "Directional": true + } + ] + }, + { + "ID": 18949, + "SourceStructureID": 97853, + "TargetStructureID": 5278, + "Label": "97853-5278 via Conventional from 97857 -> 20023", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97857, + "TargetID": 20023, + "Directional": true + } + ] + }, + { + "ID": 18950, + "SourceStructureID": 97858, + "TargetStructureID": 4569, + "Label": "97858-4569 via Conventional from 97859 -> 97860, 97863 -> 4739", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97859, + "TargetID": 97860, + "Directional": true + }, + { + "SourceID": 97863, + "TargetID": 4739, + "Directional": true + } + ] + }, + { + "ID": 18951, + "SourceStructureID": 97913, + "TargetStructureID": 5278, + "Label": "97913-5278 via Conventional from 97919 -> 20016", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97919, + "TargetID": 20016, + "Directional": true + } + ] + }, + { + "ID": 18952, + "SourceStructureID": 97928, + "TargetStructureID": 5278, + "Label": "97928-5278 via Conventional from 97929 -> 11220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97929, + "TargetID": 11220, + "Directional": true + } + ] + }, + { + "ID": 18953, + "SourceStructureID": 97933, + "TargetStructureID": 5278, + "Label": "97933-5278 via Conventional from 97943 -> 11219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97943, + "TargetID": 11219, + "Directional": true + } + ] + }, + { + "ID": 18954, + "SourceStructureID": 97938, + "TargetStructureID": 5278, + "Label": "97938-5278 via Conventional from 97939 -> 97940", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97939, + "TargetID": 97940, + "Directional": true + } + ] + }, + { + "ID": 18955, + "SourceStructureID": 97951, + "TargetStructureID": 5278, + "Label": "97951-5278 via Conventional from 97954 -> 97955", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 97954, + "TargetID": 97955, + "Directional": true + } + ] + }, + { + "ID": 18956, + "SourceStructureID": 97956, + "TargetStructureID": 5278, + "Label": "97956-5278 via Conventional from 98809 -> 11228", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98809, + "TargetID": 11228, + "Directional": true + } + ] + }, + { + "ID": 18957, + "SourceStructureID": 98016, + "TargetStructureID": 5279, + "Label": "98016-5279 via Conventional from 98018 -> 25820", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98018, + "TargetID": 25820, + "Directional": true + } + ] + }, + { + "ID": 18958, + "SourceStructureID": 98035, + "TargetStructureID": 5279, + "Label": "98035-5279 via Conventional from 98036 -> 25824", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98036, + "TargetID": 25824, + "Directional": true + } + ] + }, + { + "ID": 18959, + "SourceStructureID": 98064, + "TargetStructureID": 5279, + "Label": "98064-5279 via Conventional from 98067 -> 25827", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98067, + "TargetID": 25827, + "Directional": true + } + ] + }, + { + "ID": 18960, + "SourceStructureID": 98068, + "TargetStructureID": 5279, + "Label": "98068-5279 via Conventional from 98070 -> 11480", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98070, + "TargetID": 11480, + "Directional": true + } + ] + }, + { + "ID": 18961, + "SourceStructureID": 98100, + "TargetStructureID": 5279, + "Label": "98100-5279 via Conventional from 98104 -> 11478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98104, + "TargetID": 11478, + "Directional": true + } + ] + }, + { + "ID": 18962, + "SourceStructureID": 98122, + "TargetStructureID": 5279, + "Label": "98122-5279 via Conventional from 98504 -> 11477", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98504, + "TargetID": 11477, + "Directional": true + } + ] + }, + { + "ID": 18963, + "SourceStructureID": 98127, + "TargetStructureID": 10957, + "Label": "98127-10957 via Conventional from 98885 -> 98886, 98887 -> 98888, 98889 -> 98890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98885, + "TargetID": 98886, + "Directional": true + }, + { + "SourceID": 98887, + "TargetID": 98888, + "Directional": true + }, + { + "SourceID": 98889, + "TargetID": 98890, + "Directional": true + } + ] + }, + { + "ID": 18964, + "SourceStructureID": 98147, + "TargetStructureID": 4569, + "Label": "98147-4569 via Conventional from 98149 -> 23790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98149, + "TargetID": 23790, + "Directional": true + } + ] + }, + { + "ID": 18965, + "SourceStructureID": 98151, + "TargetStructureID": 4569, + "Label": "98151-4569 via Conventional from 98152 -> 23789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98152, + "TargetID": 23789, + "Directional": true + } + ] + }, + { + "ID": 18966, + "SourceStructureID": 98163, + "TargetStructureID": 1620, + "Label": "98163-1620 via Conventional from 98166 -> 16848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98166, + "TargetID": 16848, + "Directional": true + } + ] + }, + { + "ID": 18967, + "SourceStructureID": 98171, + "TargetStructureID": 4569, + "Label": "98171-4569 via Conventional from 98172 -> 23785", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98172, + "TargetID": 23785, + "Directional": true + } + ] + }, + { + "ID": 18968, + "SourceStructureID": 98180, + "TargetStructureID": 4569, + "Label": "98180-4569 via Conventional from 98181 -> 47441", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98181, + "TargetID": 47441, + "Directional": true + } + ] + }, + { + "ID": 18969, + "SourceStructureID": 98186, + "TargetStructureID": 4569, + "Label": "98186-4569 via Conventional from 98187 -> 23799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98187, + "TargetID": 23799, + "Directional": true + } + ] + }, + { + "ID": 18970, + "SourceStructureID": 98188, + "TargetStructureID": 4569, + "Label": "98188-4569 via Conventional from 98189 -> 47487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98189, + "TargetID": 47487, + "Directional": true + } + ] + }, + { + "ID": 18971, + "SourceStructureID": 98190, + "TargetStructureID": 4569, + "Label": "98190-4569 via Conventional from 98191 -> 23800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98191, + "TargetID": 23800, + "Directional": true + } + ] + }, + { + "ID": 18972, + "SourceStructureID": 98193, + "TargetStructureID": 4569, + "Label": "98193-4569 via Conventional from 98194 -> 23803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98194, + "TargetID": 23803, + "Directional": true + } + ] + }, + { + "ID": 18973, + "SourceStructureID": 98203, + "TargetStructureID": 4569, + "Label": "98203-4569 via Conventional from 98204 -> 23801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98204, + "TargetID": 23801, + "Directional": true + } + ] + }, + { + "ID": 18974, + "SourceStructureID": 98216, + "TargetStructureID": 4569, + "Label": "98216-4569 via Conventional from 98218 -> 23806", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98218, + "TargetID": 23806, + "Directional": true + } + ] + }, + { + "ID": 18975, + "SourceStructureID": 98235, + "TargetStructureID": 4569, + "Label": "98235-4569 via Conventional from 98236 -> 23791", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98236, + "TargetID": 23791, + "Directional": true + } + ] + }, + { + "ID": 18976, + "SourceStructureID": 98238, + "TargetStructureID": 4569, + "Label": "98238-4569 via Conventional from 98239 -> 98237", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98239, + "TargetID": 98237, + "Directional": true + } + ] + }, + { + "ID": 18977, + "SourceStructureID": 98251, + "TargetStructureID": 4569, + "Label": "98251-4569 via Conventional from 98252 -> 23793", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98252, + "TargetID": 23793, + "Directional": true + } + ] + }, + { + "ID": 18978, + "SourceStructureID": 98258, + "TargetStructureID": 4569, + "Label": "98258-4569 via Conventional from 98260 -> 47415", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98260, + "TargetID": 47415, + "Directional": true + } + ] + }, + { + "ID": 18979, + "SourceStructureID": 98270, + "TargetStructureID": 4569, + "Label": "98270-4569 via Conventional from 98273 -> 52483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98273, + "TargetID": 52483, + "Directional": true + } + ] + }, + { + "ID": 18980, + "SourceStructureID": 98278, + "TargetStructureID": 4569, + "Label": "98278-4569 via Conventional from 98281 -> 47433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98281, + "TargetID": 47433, + "Directional": true + } + ] + }, + { + "ID": 18981, + "SourceStructureID": 98279, + "TargetStructureID": 4569, + "Label": "98279-4569 via Conventional from 98280 -> 47434", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98280, + "TargetID": 47434, + "Directional": true + } + ] + }, + { + "ID": 18982, + "SourceStructureID": 98289, + "TargetStructureID": 4569, + "Label": "98289-4569 via Conventional from 98295 -> 47437", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98295, + "TargetID": 47437, + "Directional": true + } + ] + }, + { + "ID": 18983, + "SourceStructureID": 98297, + "TargetStructureID": 4569, + "Label": "98297-4569 via Conventional from 98298 -> 47438", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98298, + "TargetID": 47438, + "Directional": true + } + ] + }, + { + "ID": 18984, + "SourceStructureID": 98329, + "TargetStructureID": 4569, + "Label": "98329-4569 via Conventional from 98330 -> 4748", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98330, + "TargetID": 4748, + "Directional": true + } + ] + }, + { + "ID": 18985, + "SourceStructureID": 98337, + "TargetStructureID": 4569, + "Label": "98337-4569 via Conventional from 98338 -> 30815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98338, + "TargetID": 30815, + "Directional": true + } + ] + }, + { + "ID": 18986, + "SourceStructureID": 98339, + "TargetStructureID": 4569, + "Label": "98339-4569 via Conventional from 98340 -> 98341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98340, + "TargetID": 98341, + "Directional": true + } + ] + }, + { + "ID": 18987, + "SourceStructureID": 98345, + "TargetStructureID": 4569, + "Label": "98345-4569 via Conventional from 98346 -> 47490", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98346, + "TargetID": 47490, + "Directional": true + } + ] + }, + { + "ID": 18988, + "SourceStructureID": 98348, + "TargetStructureID": 4569, + "Label": "98348-4569 via Conventional from 98349 -> 15993", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98349, + "TargetID": 15993, + "Directional": true + } + ] + }, + { + "ID": 18989, + "SourceStructureID": 98350, + "TargetStructureID": 4569, + "Label": "98350-4569 via Conventional from 98351 -> 47491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98351, + "TargetID": 47491, + "Directional": true + } + ] + }, + { + "ID": 18990, + "SourceStructureID": 98359, + "TargetStructureID": 4569, + "Label": "98359-4569 via Conventional from 98360 -> 52506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98360, + "TargetID": 52506, + "Directional": true + } + ] + }, + { + "ID": 18991, + "SourceStructureID": 98363, + "TargetStructureID": 4569, + "Label": "98363-4569 via Conventional from 98364 -> 30824", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98364, + "TargetID": 30824, + "Directional": true + } + ] + }, + { + "ID": 18992, + "SourceStructureID": 98365, + "TargetStructureID": 4569, + "Label": "98365-4569 via Conventional from 98366 -> 30823", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98366, + "TargetID": 30823, + "Directional": true + } + ] + }, + { + "ID": 18993, + "SourceStructureID": 98372, + "TargetStructureID": 4569, + "Label": "98372-4569 via Conventional from 98374 -> 30825", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98374, + "TargetID": 30825, + "Directional": true + } + ] + }, + { + "ID": 18994, + "SourceStructureID": 98395, + "TargetStructureID": 4569, + "Label": "98395-4569 via Conventional from 98396 -> 30826", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98396, + "TargetID": 30826, + "Directional": true + } + ] + }, + { + "ID": 18995, + "SourceStructureID": 98409, + "TargetStructureID": 4569, + "Label": "98409-4569 via Conventional from 98410 -> 30829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98410, + "TargetID": 30829, + "Directional": true + } + ] + }, + { + "ID": 18996, + "SourceStructureID": 98411, + "TargetStructureID": 4569, + "Label": "98411-4569 via Conventional from 98412 -> 47494", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98412, + "TargetID": 47494, + "Directional": true + } + ] + }, + { + "ID": 18997, + "SourceStructureID": 98413, + "TargetStructureID": 142, + "Label": "98413-142 via Conventional from 98414 -> 98416", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98414, + "TargetID": 98416, + "Directional": true + } + ] + }, + { + "ID": 18998, + "SourceStructureID": 98418, + "TargetStructureID": 4569, + "Label": "98418-4569 via Conventional from 98419 -> 30831", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98419, + "TargetID": 30831, + "Directional": true + } + ] + }, + { + "ID": 18999, + "SourceStructureID": 98434, + "TargetStructureID": 4569, + "Label": "98434-4569 via Conventional from 98435 -> 98433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98435, + "TargetID": 98433, + "Directional": true + } + ] + }, + { + "ID": 19000, + "SourceStructureID": 98438, + "TargetStructureID": 4569, + "Label": "98438-4569 via Conventional from 98439 -> 98440", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98439, + "TargetID": 98440, + "Directional": true + } + ] + }, + { + "ID": 19001, + "SourceStructureID": 98444, + "TargetStructureID": 4569, + "Label": "98444-4569 via Conventional from 98445 -> 92753", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98445, + "TargetID": 92753, + "Directional": true + } + ] + }, + { + "ID": 19002, + "SourceStructureID": 98459, + "TargetStructureID": 168, + "Label": "98459-168 via Conventional from 119055 -> 119054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119055, + "TargetID": 119054, + "Directional": true + } + ] + }, + { + "ID": 19003, + "SourceStructureID": 98459, + "TargetStructureID": 4569, + "Label": "98459-4569 via Conventional from 98460 -> 98457", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98460, + "TargetID": 98457, + "Directional": true + } + ] + }, + { + "ID": 19004, + "SourceStructureID": 98465, + "TargetStructureID": 4569, + "Label": "98465-4569 via Conventional from 98466 -> 52507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98466, + "TargetID": 52507, + "Directional": true + } + ] + }, + { + "ID": 19005, + "SourceStructureID": 98478, + "TargetStructureID": 4569, + "Label": "98478-4569 via Conventional from 98479 -> 30834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98479, + "TargetID": 30834, + "Directional": true + } + ] + }, + { + "ID": 19006, + "SourceStructureID": 98484, + "TargetStructureID": 4569, + "Label": "98484-4569 via Conventional from 98485 -> 65200", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98485, + "TargetID": 65200, + "Directional": true + } + ] + }, + { + "ID": 19007, + "SourceStructureID": 98486, + "TargetStructureID": 4569, + "Label": "98486-4569 via Conventional from 98487 -> 98488", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98487, + "TargetID": 98488, + "Directional": true + } + ] + }, + { + "ID": 19008, + "SourceStructureID": 98511, + "TargetStructureID": 4569, + "Label": "98511-4569 via Conventional from 98512 -> 98510", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98512, + "TargetID": 98510, + "Directional": true + } + ] + }, + { + "ID": 19009, + "SourceStructureID": 98524, + "TargetStructureID": 5279, + "Label": "98524-5279 via Conventional from 98532 -> 49208", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98532, + "TargetID": 49208, + "Directional": true + } + ] + }, + { + "ID": 19010, + "SourceStructureID": 98530, + "TargetStructureID": 4569, + "Label": "98530-4569 via Conventional from 98531 -> 98529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98531, + "TargetID": 98529, + "Directional": true + } + ] + }, + { + "ID": 19011, + "SourceStructureID": 98535, + "TargetStructureID": 4569, + "Label": "98535-4569 via Conventional from 98540 -> 98533", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98540, + "TargetID": 98533, + "Directional": true + } + ] + }, + { + "ID": 19012, + "SourceStructureID": 98535, + "TargetStructureID": 5118, + "Label": "98535-5118 via Conventional from 98541 -> 6520", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98541, + "TargetID": 6520, + "Directional": true + } + ] + }, + { + "ID": 19013, + "SourceStructureID": 98537, + "TargetStructureID": 5279, + "Label": "98537-5279 via Conventional from 98542 -> 49205", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98542, + "TargetID": 49205, + "Directional": true + } + ] + }, + { + "ID": 19014, + "SourceStructureID": 98550, + "TargetStructureID": 4569, + "Label": "98550-4569 via Conventional from 98551 -> 47497", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98551, + "TargetID": 47497, + "Directional": true + } + ] + }, + { + "ID": 19015, + "SourceStructureID": 98555, + "TargetStructureID": 4569, + "Label": "98555-4569 via Conventional from 98557 -> 98554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98557, + "TargetID": 98554, + "Directional": true + } + ] + }, + { + "ID": 19016, + "SourceStructureID": 98559, + "TargetStructureID": 4569, + "Label": "98559-4569 via Conventional from 98561 -> 47498", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98561, + "TargetID": 47498, + "Directional": true + } + ] + }, + { + "ID": 19017, + "SourceStructureID": 98565, + "TargetStructureID": 5279, + "Label": "98565-5279 via Conventional from 98567 -> 98566", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98567, + "TargetID": 98566, + "Directional": true + } + ] + }, + { + "ID": 19018, + "SourceStructureID": 98574, + "TargetStructureID": 4569, + "Label": "98574-4569 via Conventional from 98575 -> 47503", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98575, + "TargetID": 47503, + "Directional": true + } + ] + }, + { + "ID": 19019, + "SourceStructureID": 98584, + "TargetStructureID": 5279, + "Label": "98584-5279 via Conventional from 98588 -> 25844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98588, + "TargetID": 25844, + "Directional": true + } + ] + }, + { + "ID": 19020, + "SourceStructureID": 98585, + "TargetStructureID": 4569, + "Label": "98585-4569 via Conventional from 98596 -> 47502", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98596, + "TargetID": 47502, + "Directional": true + } + ] + }, + { + "ID": 19021, + "SourceStructureID": 98590, + "TargetStructureID": 13525, + "Label": "98590-13525 via Conventional from 98591 -> 84663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98591, + "TargetID": 84663, + "Directional": true + } + ] + }, + { + "ID": 19022, + "SourceStructureID": 98595, + "TargetStructureID": 5279, + "Label": "98595-5279 via Conventional from 98598 -> 25843", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98598, + "TargetID": 25843, + "Directional": true + } + ] + }, + { + "ID": 19023, + "SourceStructureID": 98599, + "TargetStructureID": 1724, + "Label": "98599-1724 via Conventional from 100287 -> 47400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100287, + "TargetID": 47400, + "Directional": true + } + ] + }, + { + "ID": 19024, + "SourceStructureID": 98604, + "TargetStructureID": 4569, + "Label": "98604-4569 via Conventional from 98615 -> 47499", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98615, + "TargetID": 47499, + "Directional": true + } + ] + }, + { + "ID": 19025, + "SourceStructureID": 98611, + "TargetStructureID": 4569, + "Label": "98611-4569 via Conventional from 98613 -> 47500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98613, + "TargetID": 47500, + "Directional": true + } + ] + }, + { + "ID": 19026, + "SourceStructureID": 98618, + "TargetStructureID": 4569, + "Label": "98618-4569 via Conventional from 98620 -> 47505", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98620, + "TargetID": 47505, + "Directional": true + } + ] + }, + { + "ID": 19027, + "SourceStructureID": 98622, + "TargetStructureID": 5279, + "Label": "98622-5279 via Conventional from 98623 -> 25988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98623, + "TargetID": 25988, + "Directional": true + } + ] + }, + { + "ID": 19028, + "SourceStructureID": 98624, + "TargetStructureID": 5279, + "Label": "98624-5279 via Conventional from 98625 -> 98626", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98625, + "TargetID": 98626, + "Directional": true + } + ] + }, + { + "ID": 19029, + "SourceStructureID": 98632, + "TargetStructureID": 1724, + "Label": "98632-1724 via Conventional from 100293 -> 100294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100293, + "TargetID": 100294, + "Directional": true + } + ] + }, + { + "ID": 19030, + "SourceStructureID": 98636, + "TargetStructureID": 5279, + "Label": "98636-5279 via Conventional from 98637 -> 25849", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98637, + "TargetID": 25849, + "Directional": true + } + ] + }, + { + "ID": 19031, + "SourceStructureID": 98641, + "TargetStructureID": 30477, + "Label": "98641-30477 via Conventional from 98642 -> 30485", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98642, + "TargetID": 30485, + "Directional": true + } + ] + }, + { + "ID": 19032, + "SourceStructureID": 98650, + "TargetStructureID": 4569, + "Label": "98650-4569 via Conventional from 98651 -> 98649", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98651, + "TargetID": 98649, + "Directional": true + } + ] + }, + { + "ID": 19033, + "SourceStructureID": 98655, + "TargetStructureID": 4569, + "Label": "98655-4569 via Conventional from 98656 -> 98654", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98656, + "TargetID": 98654, + "Directional": true + } + ] + }, + { + "ID": 19034, + "SourceStructureID": 98660, + "TargetStructureID": 5279, + "Label": "98660-5279 via Conventional from 98662 -> 25847", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98662, + "TargetID": 25847, + "Directional": true + } + ] + }, + { + "ID": 19035, + "SourceStructureID": 98674, + "TargetStructureID": 4569, + "Label": "98674-4569 via Conventional from 98677 -> 98669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98677, + "TargetID": 98669, + "Directional": true + } + ] + }, + { + "ID": 19036, + "SourceStructureID": 98676, + "TargetStructureID": 5279, + "Label": "98676-5279 via Conventional from 98702 -> 25993", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98702, + "TargetID": 25993, + "Directional": true + } + ] + }, + { + "ID": 19037, + "SourceStructureID": 98683, + "TargetStructureID": 4569, + "Label": "98683-4569 via Conventional from 98686 -> 98681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98686, + "TargetID": 98681, + "Directional": true + } + ] + }, + { + "ID": 19038, + "SourceStructureID": 98694, + "TargetStructureID": 4569, + "Label": "98694-4569 via Conventional from 98695 -> 98696", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98695, + "TargetID": 98696, + "Directional": true + } + ] + }, + { + "ID": 19039, + "SourceStructureID": 98703, + "TargetStructureID": 5645, + "Label": "98703-5645 via Adherens from 98711 -> 98712", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 98711, + "TargetID": 98712, + "Directional": true + } + ] + }, + { + "ID": 19040, + "SourceStructureID": 98703, + "TargetStructureID": 5645, + "Label": "98703-5645 via Conventional from 98704 -> 98705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98704, + "TargetID": 98705, + "Directional": true + } + ] + }, + { + "ID": 19041, + "SourceStructureID": 98707, + "TargetStructureID": 98703, + "Label": "98707-98703 via Conventional from 98708 -> 98709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98708, + "TargetID": 98709, + "Directional": true + } + ] + }, + { + "ID": 19042, + "SourceStructureID": 98720, + "TargetStructureID": 5279, + "Label": "98720-5279 via Conventional from 98721 -> 25996", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98721, + "TargetID": 25996, + "Directional": true + } + ] + }, + { + "ID": 19043, + "SourceStructureID": 98722, + "TargetStructureID": 5279, + "Label": "98722-5279 via Conventional from 98723 -> 25995", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98723, + "TargetID": 25995, + "Directional": true + } + ] + }, + { + "ID": 19044, + "SourceStructureID": 98725, + "TargetStructureID": 4569, + "Label": "98725-4569 via Conventional from 98726 -> 98724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98726, + "TargetID": 98724, + "Directional": true + } + ] + }, + { + "ID": 19045, + "SourceStructureID": 98735, + "TargetStructureID": 4569, + "Label": "98735-4569 via Conventional from 98736 -> 47509", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98736, + "TargetID": 47509, + "Directional": true + } + ] + }, + { + "ID": 19046, + "SourceStructureID": 98740, + "TargetStructureID": 364, + "Label": "98740-364 via Conventional from 98742 -> 14069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98742, + "TargetID": 14069, + "Directional": true + } + ] + }, + { + "ID": 19047, + "SourceStructureID": 98749, + "TargetStructureID": 4569, + "Label": "98749-4569 via Conventional from 98750 -> 47513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98750, + "TargetID": 47513, + "Directional": true + } + ] + }, + { + "ID": 19048, + "SourceStructureID": 98751, + "TargetStructureID": 431, + "Label": "98751-431 via Conventional from 98753 -> 119072", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98753, + "TargetID": 119072, + "Directional": true + } + ] + }, + { + "ID": 19049, + "SourceStructureID": 98756, + "TargetStructureID": 431, + "Label": "98756-431 via Conventional from 98757 -> 119068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98757, + "TargetID": 119068, + "Directional": true + } + ] + }, + { + "ID": 19050, + "SourceStructureID": 98758, + "TargetStructureID": 431, + "Label": "98758-431 via Conventional from 98760 -> 119066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98760, + "TargetID": 119066, + "Directional": true + } + ] + }, + { + "ID": 19051, + "SourceStructureID": 98759, + "TargetStructureID": 431, + "Label": "98759-431 via Conventional from 98761 -> 119067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98761, + "TargetID": 119067, + "Directional": true + } + ] + }, + { + "ID": 19052, + "SourceStructureID": 98762, + "TargetStructureID": 1724, + "Label": "98762-1724 via Conventional from 98764 -> 47386", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98764, + "TargetID": 47386, + "Directional": true + } + ] + }, + { + "ID": 19053, + "SourceStructureID": 98770, + "TargetStructureID": 431, + "Label": "98770-431 via Conventional from 98771 -> 119064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98771, + "TargetID": 119064, + "Directional": true + } + ] + }, + { + "ID": 19054, + "SourceStructureID": 98786, + "TargetStructureID": 431, + "Label": "98786-431 via Conventional from 98787 -> 98785", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98787, + "TargetID": 98785, + "Directional": true + } + ] + }, + { + "ID": 19055, + "SourceStructureID": 98800, + "TargetStructureID": 4569, + "Label": "98800-4569 via Conventional from 98801 -> 30863", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98801, + "TargetID": 30863, + "Directional": true + } + ] + }, + { + "ID": 19056, + "SourceStructureID": 98823, + "TargetStructureID": 1637, + "Label": "98823-1637 via Conventional from 98824 -> 4076", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98824, + "TargetID": 4076, + "Directional": true + } + ] + }, + { + "ID": 19057, + "SourceStructureID": 98823, + "TargetStructureID": 5278, + "Label": "98823-5278 via Conventional from 98826 -> 20034", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98826, + "TargetID": 20034, + "Directional": true + } + ] + }, + { + "ID": 19058, + "SourceStructureID": 98833, + "TargetStructureID": 5278, + "Label": "98833-5278 via Conventional from 98834 -> 20043, 98835 -> 98832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98834, + "TargetID": 20043, + "Directional": true + }, + { + "SourceID": 98835, + "TargetID": 98832, + "Directional": true + } + ] + }, + { + "ID": 19059, + "SourceStructureID": 98836, + "TargetStructureID": 4569, + "Label": "98836-4569 via Conventional from 98837 -> 47518", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98837, + "TargetID": 47518, + "Directional": true + } + ] + }, + { + "ID": 19060, + "SourceStructureID": 98838, + "TargetStructureID": 4569, + "Label": "98838-4569 via Unknown from 98841 -> 47519", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 98841, + "TargetID": 47519, + "Directional": true + } + ] + }, + { + "ID": 19061, + "SourceStructureID": 98843, + "TargetStructureID": 4569, + "Label": "98843-4569 via Conventional from 98844 -> 98842", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98844, + "TargetID": 98842, + "Directional": true + } + ] + }, + { + "ID": 19062, + "SourceStructureID": 98849, + "TargetStructureID": 13525, + "Label": "98849-13525 via Conventional from 98863 -> 13529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98863, + "TargetID": 13529, + "Directional": true + } + ] + }, + { + "ID": 19063, + "SourceStructureID": 98850, + "TargetStructureID": 4569, + "Label": "98850-4569 via Conventional from 98851 -> 52512", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98851, + "TargetID": 52512, + "Directional": true + } + ] + }, + { + "ID": 19064, + "SourceStructureID": 98858, + "TargetStructureID": 4569, + "Label": "98858-4569 via Conventional from 98859 -> 52514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98859, + "TargetID": 52514, + "Directional": true + } + ] + }, + { + "ID": 19065, + "SourceStructureID": 98864, + "TargetStructureID": 4569, + "Label": "98864-4569 via Conventional from 98865 -> 47540", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98865, + "TargetID": 47540, + "Directional": true + } + ] + }, + { + "ID": 19066, + "SourceStructureID": 98869, + "TargetStructureID": 4569, + "Label": "98869-4569 via Conventional from 98871 -> 47541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98871, + "TargetID": 47541, + "Directional": true + } + ] + }, + { + "ID": 19067, + "SourceStructureID": 98872, + "TargetStructureID": 4569, + "Label": "98872-4569 via Conventional from 98873 -> 30843", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98873, + "TargetID": 30843, + "Directional": true + } + ] + }, + { + "ID": 19068, + "SourceStructureID": 98891, + "TargetStructureID": 4569, + "Label": "98891-4569 via Conventional from 98893 -> 30849", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98893, + "TargetID": 30849, + "Directional": true + } + ] + }, + { + "ID": 19069, + "SourceStructureID": 98894, + "TargetStructureID": 4569, + "Label": "98894-4569 via Conventional from 98895 -> 30848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98895, + "TargetID": 30848, + "Directional": true + } + ] + }, + { + "ID": 19070, + "SourceStructureID": 98908, + "TargetStructureID": 4569, + "Label": "98908-4569 via Conventional from 98909 -> 30846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98909, + "TargetID": 30846, + "Directional": true + } + ] + }, + { + "ID": 19071, + "SourceStructureID": 98914, + "TargetStructureID": 4569, + "Label": "98914-4569 via Conventional from 98915 -> 52542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98915, + "TargetID": 52542, + "Directional": true + } + ] + }, + { + "ID": 19072, + "SourceStructureID": 98917, + "TargetStructureID": 4569, + "Label": "98917-4569 via Conventional from 98918 -> 30850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98918, + "TargetID": 30850, + "Directional": true + } + ] + }, + { + "ID": 19073, + "SourceStructureID": 98920, + "TargetStructureID": 4569, + "Label": "98920-4569 via Conventional from 98921 -> 30851", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98921, + "TargetID": 30851, + "Directional": true + } + ] + }, + { + "ID": 19074, + "SourceStructureID": 98924, + "TargetStructureID": 4569, + "Label": "98924-4569 via Conventional from 98925 -> 47552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98925, + "TargetID": 47552, + "Directional": true + } + ] + }, + { + "ID": 19075, + "SourceStructureID": 98929, + "TargetStructureID": 4569, + "Label": "98929-4569 via Conventional from 98930 -> 98931, 98938 -> 30856", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98930, + "TargetID": 98931, + "Directional": true + }, + { + "SourceID": 98938, + "TargetID": 30856, + "Directional": true + } + ] + }, + { + "ID": 19076, + "SourceStructureID": 98932, + "TargetStructureID": 4569, + "Label": "98932-4569 via Conventional from 98933 -> 98935, 98934 -> 52549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98933, + "TargetID": 98935, + "Directional": true + }, + { + "SourceID": 98934, + "TargetID": 52549, + "Directional": true + } + ] + }, + { + "ID": 19077, + "SourceStructureID": 98936, + "TargetStructureID": 4569, + "Label": "98936-4569 via Conventional from 98937 -> 30855", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98937, + "TargetID": 30855, + "Directional": true + } + ] + }, + { + "ID": 19078, + "SourceStructureID": 98958, + "TargetStructureID": 4569, + "Label": "98958-4569 via Conventional from 98959 -> 47548", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98959, + "TargetID": 47548, + "Directional": true + } + ] + }, + { + "ID": 19079, + "SourceStructureID": 98960, + "TargetStructureID": 4569, + "Label": "98960-4569 via Conventional from 98961 -> 30857", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98961, + "TargetID": 30857, + "Directional": true + } + ] + }, + { + "ID": 19080, + "SourceStructureID": 98962, + "TargetStructureID": 4569, + "Label": "98962-4569 via Conventional from 98963 -> 47549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98963, + "TargetID": 47549, + "Directional": true + } + ] + }, + { + "ID": 19081, + "SourceStructureID": 98980, + "TargetStructureID": 5279, + "Label": "98980-5279 via Conventional from 98981 -> 25998", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98981, + "TargetID": 25998, + "Directional": true + } + ] + }, + { + "ID": 19082, + "SourceStructureID": 98983, + "TargetStructureID": 5279, + "Label": "98983-5279 via Conventional from 98984 -> 25997", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98984, + "TargetID": 25997, + "Directional": true + } + ] + }, + { + "ID": 19083, + "SourceStructureID": 98987, + "TargetStructureID": 5279, + "Label": "98987-5279 via Conventional from 98988 -> 26000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98988, + "TargetID": 26000, + "Directional": true + } + ] + }, + { + "ID": 19084, + "SourceStructureID": 98991, + "TargetStructureID": 5279, + "Label": "98991-5279 via Conventional from 98992 -> 26001", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 98992, + "TargetID": 26001, + "Directional": true + } + ] + }, + { + "ID": 19085, + "SourceStructureID": 98997, + "TargetStructureID": 5279, + "Label": "98997-5279 via Conventional from 99035 -> 99036", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99035, + "TargetID": 99036, + "Directional": true + } + ] + }, + { + "ID": 19086, + "SourceStructureID": 99010, + "TargetStructureID": 4569, + "Label": "99010-4569 via Conventional from 99011 -> 30861", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99011, + "TargetID": 30861, + "Directional": true + } + ] + }, + { + "ID": 19087, + "SourceStructureID": 99012, + "TargetStructureID": 4569, + "Label": "99012-4569 via Conventional from 99013 -> 30862", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99013, + "TargetID": 30862, + "Directional": true + } + ] + }, + { + "ID": 19088, + "SourceStructureID": 99039, + "TargetStructureID": 5279, + "Label": "99039-5279 via Conventional from 99042 -> 99043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99042, + "TargetID": 99043, + "Directional": true + } + ] + }, + { + "ID": 19089, + "SourceStructureID": 99040, + "TargetStructureID": 4569, + "Label": "99040-4569 via Conventional from 99041 -> 30842", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99041, + "TargetID": 30842, + "Directional": true + } + ] + }, + { + "ID": 19090, + "SourceStructureID": 99047, + "TargetStructureID": 4569, + "Label": "99047-4569 via Conventional from 99049 -> 30865", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99049, + "TargetID": 30865, + "Directional": true + } + ] + }, + { + "ID": 19091, + "SourceStructureID": 99062, + "TargetStructureID": 5279, + "Label": "99062-5279 via Conventional from 99063 -> 99064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99063, + "TargetID": 99064, + "Directional": true + } + ] + }, + { + "ID": 19092, + "SourceStructureID": 99065, + "TargetStructureID": 5279, + "Label": "99065-5279 via Conventional from 99074 -> 49222", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99074, + "TargetID": 49222, + "Directional": true + } + ] + }, + { + "ID": 19093, + "SourceStructureID": 99069, + "TargetStructureID": 4569, + "Label": "99069-4569 via Conventional from 99070 -> 6299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99070, + "TargetID": 6299, + "Directional": true + } + ] + }, + { + "ID": 19094, + "SourceStructureID": 99072, + "TargetStructureID": 4569, + "Label": "99072-4569 via Conventional from 99073 -> 30817", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99073, + "TargetID": 30817, + "Directional": true + } + ] + }, + { + "ID": 19095, + "SourceStructureID": 99076, + "TargetStructureID": 5279, + "Label": "99076-5279 via Conventional from 99085 -> 49223", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99085, + "TargetID": 49223, + "Directional": true + } + ] + }, + { + "ID": 19096, + "SourceStructureID": 99077, + "TargetStructureID": 4569, + "Label": "99077-4569 via Conventional from 99079 -> 99078", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99079, + "TargetID": 99078, + "Directional": true + } + ] + }, + { + "ID": 19097, + "SourceStructureID": 99091, + "TargetStructureID": 5279, + "Label": "99091-5279 via Conventional from 99104 -> 99105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99104, + "TargetID": 99105, + "Directional": true + } + ] + }, + { + "ID": 19098, + "SourceStructureID": 99092, + "TargetStructureID": 4569, + "Label": "99092-4569 via Conventional from 99093 -> 30818", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99093, + "TargetID": 30818, + "Directional": true + } + ] + }, + { + "ID": 19099, + "SourceStructureID": 99092, + "TargetStructureID": 38949, + "Label": "99092-38949 via Conventional from 112743 -> 39031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112743, + "TargetID": 39031, + "Directional": true + } + ] + }, + { + "ID": 19100, + "SourceStructureID": 99094, + "TargetStructureID": 4569, + "Label": "99094-4569 via Conventional from 99095 -> 23563", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99095, + "TargetID": 23563, + "Directional": true + } + ] + }, + { + "ID": 19101, + "SourceStructureID": 99096, + "TargetStructureID": 4569, + "Label": "99096-4569 via Conventional from 99097 -> 23562", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99097, + "TargetID": 23562, + "Directional": true + } + ] + }, + { + "ID": 19102, + "SourceStructureID": 99098, + "TargetStructureID": 4569, + "Label": "99098-4569 via Conventional from 99099 -> 23571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99099, + "TargetID": 23571, + "Directional": true + } + ] + }, + { + "ID": 19103, + "SourceStructureID": 99102, + "TargetStructureID": 4569, + "Label": "99102-4569 via Conventional from 99103 -> 30819", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99103, + "TargetID": 30819, + "Directional": true + } + ] + }, + { + "ID": 19104, + "SourceStructureID": 99115, + "TargetStructureID": 5279, + "Label": "99115-5279 via Conventional from 99116 -> 49227", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99116, + "TargetID": 49227, + "Directional": true + } + ] + }, + { + "ID": 19105, + "SourceStructureID": 99117, + "TargetStructureID": 4569, + "Label": "99117-4569 via Conventional from 99119 -> 30820", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99119, + "TargetID": 30820, + "Directional": true + } + ] + }, + { + "ID": 19106, + "SourceStructureID": 99118, + "TargetStructureID": 5279, + "Label": "99118-5279 via Conventional from 99124 -> 49230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99124, + "TargetID": 49230, + "Directional": true + } + ] + }, + { + "ID": 19107, + "SourceStructureID": 99125, + "TargetStructureID": 5279, + "Label": "99125-5279 via Conventional from 99126 -> 49228", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99126, + "TargetID": 49228, + "Directional": true + } + ] + }, + { + "ID": 19108, + "SourceStructureID": 99132, + "TargetStructureID": 5279, + "Label": "99132-5279 via Conventional from 99133 -> 99134", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99133, + "TargetID": 99134, + "Directional": true + } + ] + }, + { + "ID": 19109, + "SourceStructureID": 99136, + "TargetStructureID": 5279, + "Label": "99136-5279 via Conventional from 99137 -> 49225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99137, + "TargetID": 49225, + "Directional": true + } + ] + }, + { + "ID": 19110, + "SourceStructureID": 99147, + "TargetStructureID": 5279, + "Label": "99147-5279 via Conventional from 99148 -> 99149", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99148, + "TargetID": 99149, + "Directional": true + } + ] + }, + { + "ID": 19111, + "SourceStructureID": 99225, + "TargetStructureID": 485, + "Label": "99225-485 via Conventional from 99226 -> 38781", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99226, + "TargetID": 38781, + "Directional": true + } + ] + }, + { + "ID": 19112, + "SourceStructureID": 99237, + "TargetStructureID": 5278, + "Label": "99237-5278 via Conventional from 99244 -> 20041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99244, + "TargetID": 20041, + "Directional": true + } + ] + }, + { + "ID": 19113, + "SourceStructureID": 99243, + "TargetStructureID": 1724, + "Label": "99243-1724 via Conventional from 99245 -> 1762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99245, + "TargetID": 1762, + "Directional": true + } + ] + }, + { + "ID": 19114, + "SourceStructureID": 99255, + "TargetStructureID": 5278, + "Label": "99255-5278 via Conventional from 99258 -> 20046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99258, + "TargetID": 20046, + "Directional": true + } + ] + }, + { + "ID": 19115, + "SourceStructureID": 99261, + "TargetStructureID": 1724, + "Label": "99261-1724 via Conventional from 99263 -> 1773", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99263, + "TargetID": 1773, + "Directional": true + } + ] + }, + { + "ID": 19116, + "SourceStructureID": 99266, + "TargetStructureID": 1724, + "Label": "99266-1724 via Conventional from 99267 -> 99269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99267, + "TargetID": 99269, + "Directional": true + } + ] + }, + { + "ID": 19117, + "SourceStructureID": 99278, + "TargetStructureID": 485, + "Label": "99278-485 via Conventional from 99279 -> 99277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99279, + "TargetID": 99277, + "Directional": true + } + ] + }, + { + "ID": 19118, + "SourceStructureID": 99307, + "TargetStructureID": 1724, + "Label": "99307-1724 via Conventional from 100560 -> 48480", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100560, + "TargetID": 48480, + "Directional": true + } + ] + }, + { + "ID": 19119, + "SourceStructureID": 99307, + "TargetStructureID": 5278, + "Label": "99307-5278 via Conventional from 99308 -> 20115", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99308, + "TargetID": 20115, + "Directional": true + } + ] + }, + { + "ID": 19120, + "SourceStructureID": 99316, + "TargetStructureID": 1724, + "Label": "99316-1724 via Conventional from 99317 -> 47375", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99317, + "TargetID": 47375, + "Directional": true + } + ] + }, + { + "ID": 19121, + "SourceStructureID": 99319, + "TargetStructureID": 1724, + "Label": "99319-1724 via Conventional from 99324 -> 55462", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99324, + "TargetID": 55462, + "Directional": true + } + ] + }, + { + "ID": 19122, + "SourceStructureID": 99320, + "TargetStructureID": 1724, + "Label": "99320-1724 via Conventional from 99321 -> 99322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99321, + "TargetID": 99322, + "Directional": true + } + ] + }, + { + "ID": 19123, + "SourceStructureID": 99325, + "TargetStructureID": 1724, + "Label": "99325-1724 via Conventional from 99326 -> 4040", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99326, + "TargetID": 4040, + "Directional": true + } + ] + }, + { + "ID": 19124, + "SourceStructureID": 99329, + "TargetStructureID": 1724, + "Label": "99329-1724 via Conventional from 99330 -> 99331", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99330, + "TargetID": 99331, + "Directional": true + } + ] + }, + { + "ID": 19125, + "SourceStructureID": 99332, + "TargetStructureID": 1724, + "Label": "99332-1724 via Conventional from 99333 -> 4048, 99518 -> 47945", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99333, + "TargetID": 4048, + "Directional": true + }, + { + "SourceID": 99518, + "TargetID": 47945, + "Directional": true + } + ] + }, + { + "ID": 19126, + "SourceStructureID": 99332, + "TargetStructureID": 6156, + "Label": "99332-6156 via Conventional from 133369 -> 133368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133369, + "TargetID": 133368, + "Directional": true + } + ] + }, + { + "ID": 19127, + "SourceStructureID": 99343, + "TargetStructureID": 33625, + "Label": "99343-33625 via Conventional from 99344 -> 33651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99344, + "TargetID": 33651, + "Directional": true + } + ] + }, + { + "ID": 19128, + "SourceStructureID": 99361, + "TargetStructureID": 1724, + "Label": "99361-1724 via Conventional from 99369 -> 47384", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99369, + "TargetID": 47384, + "Directional": true + } + ] + }, + { + "ID": 19129, + "SourceStructureID": 99364, + "TargetStructureID": 1724, + "Label": "99364-1724 via Conventional from 99420 -> 47387", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99420, + "TargetID": 47387, + "Directional": true + } + ] + }, + { + "ID": 19130, + "SourceStructureID": 99375, + "TargetStructureID": 485, + "Label": "99375-485 via Conventional from 99386 -> 99374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99386, + "TargetID": 99374, + "Directional": true + } + ] + }, + { + "ID": 19131, + "SourceStructureID": 99388, + "TargetStructureID": 485, + "Label": "99388-485 via Conventional from 99389 -> 99387", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99389, + "TargetID": 99387, + "Directional": true + } + ] + }, + { + "ID": 19132, + "SourceStructureID": 99395, + "TargetStructureID": 485, + "Label": "99395-485 via Conventional from 99396 -> 99393", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99396, + "TargetID": 99393, + "Directional": true + } + ] + }, + { + "ID": 19133, + "SourceStructureID": 99426, + "TargetStructureID": 1724, + "Label": "99426-1724 via Conventional from 99427 -> 99428", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99427, + "TargetID": 99428, + "Directional": true + } + ] + }, + { + "ID": 19134, + "SourceStructureID": 99435, + "TargetStructureID": 1724, + "Label": "99435-1724 via Conventional from 99436 -> 47389", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99436, + "TargetID": 47389, + "Directional": true + } + ] + }, + { + "ID": 19135, + "SourceStructureID": 99435, + "TargetStructureID": 6406, + "Label": "99435-6406 via Conventional from 101690 -> 101691", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101690, + "TargetID": 101691, + "Directional": true + } + ] + }, + { + "ID": 19136, + "SourceStructureID": 99443, + "TargetStructureID": 485, + "Label": "99443-485 via Conventional from 99444 -> 50863", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99444, + "TargetID": 50863, + "Directional": true + } + ] + }, + { + "ID": 19137, + "SourceStructureID": 99447, + "TargetStructureID": 485, + "Label": "99447-485 via Conventional from 99448 -> 50864", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99448, + "TargetID": 50864, + "Directional": true + } + ] + }, + { + "ID": 19138, + "SourceStructureID": 99453, + "TargetStructureID": 485, + "Label": "99453-485 via Conventional from 99455 -> 50862", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99455, + "TargetID": 50862, + "Directional": true + } + ] + }, + { + "ID": 19139, + "SourceStructureID": 99463, + "TargetStructureID": 485, + "Label": "99463-485 via Conventional from 99464 -> 50882", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99464, + "TargetID": 50882, + "Directional": true + } + ] + }, + { + "ID": 19140, + "SourceStructureID": 99465, + "TargetStructureID": 485, + "Label": "99465-485 via Conventional from 99466 -> 50881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99466, + "TargetID": 50881, + "Directional": true + } + ] + }, + { + "ID": 19141, + "SourceStructureID": 99468, + "TargetStructureID": 1724, + "Label": "99468-1724 via Conventional from 99469 -> 99470, 99503 -> 4069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99469, + "TargetID": 99470, + "Directional": true + }, + { + "SourceID": 99503, + "TargetID": 4069, + "Directional": true + } + ] + }, + { + "ID": 19142, + "SourceStructureID": 99480, + "TargetStructureID": 1724, + "Label": "99480-1724 via Conventional from 99486 -> 4066, 99487 -> 4066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99486, + "TargetID": 4066, + "Directional": true + }, + { + "SourceID": 99487, + "TargetID": 4066, + "Directional": true + } + ] + }, + { + "ID": 19143, + "SourceStructureID": 99482, + "TargetStructureID": 309, + "Label": "99482-309 via Conventional from 99483 -> 13393", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99483, + "TargetID": 13393, + "Directional": true + } + ] + }, + { + "ID": 19144, + "SourceStructureID": 99488, + "TargetStructureID": 1724, + "Label": "99488-1724 via Conventional from 99490 -> 4064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99490, + "TargetID": 4064, + "Directional": true + } + ] + }, + { + "ID": 19145, + "SourceStructureID": 99498, + "TargetStructureID": 6156, + "Label": "99498-6156 via Conventional from 133370 -> 23270", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133370, + "TargetID": 23270, + "Directional": true + } + ] + }, + { + "ID": 19146, + "SourceStructureID": 99501, + "TargetStructureID": 1724, + "Label": "99501-1724 via Conventional from 99502 -> 4068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99502, + "TargetID": 4068, + "Directional": true + } + ] + }, + { + "ID": 19147, + "SourceStructureID": 99504, + "TargetStructureID": 1724, + "Label": "99504-1724 via Conventional from 99505 -> 4072", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99505, + "TargetID": 4072, + "Directional": true + } + ] + }, + { + "ID": 19148, + "SourceStructureID": 99513, + "TargetStructureID": 142, + "Label": "99513-142 via Conventional from 129645 -> 92375", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129645, + "TargetID": 92375, + "Directional": true + } + ] + }, + { + "ID": 19149, + "SourceStructureID": 99513, + "TargetStructureID": 1724, + "Label": "99513-1724 via Conventional from 99514 -> 4050, 101986 -> 101987, 129620 -> 129621", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99514, + "TargetID": 4050, + "Directional": true + }, + { + "SourceID": 101986, + "TargetID": 101987, + "Directional": true + }, + { + "SourceID": 129620, + "TargetID": 129621, + "Directional": true + } + ] + }, + { + "ID": 19150, + "SourceStructureID": 99513, + "TargetStructureID": 5279, + "Label": "99513-5279 via Conventional from 96393 -> 96394, 129640 -> 98658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 96393, + "TargetID": 96394, + "Directional": true + }, + { + "SourceID": 129640, + "TargetID": 98658, + "Directional": true + } + ] + }, + { + "ID": 19151, + "SourceStructureID": 99513, + "TargetStructureID": 6117, + "Label": "99513-6117 via Conventional from 129641 -> 129642", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129641, + "TargetID": 129642, + "Directional": true + } + ] + }, + { + "ID": 19152, + "SourceStructureID": 99513, + "TargetStructureID": 6912, + "Label": "99513-6912 via Conventional from 129622 -> 51139, 129625 -> 48369, 129629 -> 51060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129622, + "TargetID": 51139, + "Directional": true + }, + { + "SourceID": 129625, + "TargetID": 48369, + "Directional": true + }, + { + "SourceID": 129629, + "TargetID": 51060, + "Directional": true + } + ] + }, + { + "ID": 19153, + "SourceStructureID": 99513, + "TargetStructureID": 28886, + "Label": "99513-28886 via Conventional from 129635 -> 129637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129635, + "TargetID": 129637, + "Directional": true + } + ] + }, + { + "ID": 19154, + "SourceStructureID": 99513, + "TargetStructureID": 37466, + "Label": "99513-37466 via Conventional from 129618 -> 37470", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129618, + "TargetID": 37470, + "Directional": true + } + ] + }, + { + "ID": 19155, + "SourceStructureID": 99513, + "TargetStructureID": 122484, + "Label": "99513-122484 via Conventional from 129633 -> 129634", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129633, + "TargetID": 129634, + "Directional": true + } + ] + }, + { + "ID": 19156, + "SourceStructureID": 99515, + "TargetStructureID": 1724, + "Label": "99515-1724 via Conventional from 99517 -> 4051", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99517, + "TargetID": 4051, + "Directional": true + } + ] + }, + { + "ID": 19157, + "SourceStructureID": 99523, + "TargetStructureID": 485, + "Label": "99523-485 via Conventional from 99524 -> 99521", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99524, + "TargetID": 99521, + "Directional": true + } + ] + }, + { + "ID": 19158, + "SourceStructureID": 99531, + "TargetStructureID": 1724, + "Label": "99531-1724 via Conventional from 99532 -> 4056", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99532, + "TargetID": 4056, + "Directional": true + } + ] + }, + { + "ID": 19159, + "SourceStructureID": 99536, + "TargetStructureID": 1724, + "Label": "99536-1724 via Conventional from 99537 -> 1801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99537, + "TargetID": 1801, + "Directional": true + } + ] + }, + { + "ID": 19160, + "SourceStructureID": 99541, + "TargetStructureID": 1724, + "Label": "99541-1724 via Conventional from 99542 -> 1777", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99542, + "TargetID": 1777, + "Directional": true + } + ] + }, + { + "ID": 19161, + "SourceStructureID": 99546, + "TargetStructureID": 1724, + "Label": "99546-1724 via Conventional from 99568 -> 1786", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99568, + "TargetID": 1786, + "Directional": true + } + ] + }, + { + "ID": 19162, + "SourceStructureID": 99560, + "TargetStructureID": 1724, + "Label": "99560-1724 via Conventional from 99561 -> 1794", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99561, + "TargetID": 1794, + "Directional": true + } + ] + }, + { + "ID": 19163, + "SourceStructureID": 99575, + "TargetStructureID": 1724, + "Label": "99575-1724 via Conventional from 99576 -> 1780, 99580 -> 99581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99576, + "TargetID": 1780, + "Directional": true + }, + { + "SourceID": 99580, + "TargetID": 99581, + "Directional": true + } + ] + }, + { + "ID": 19164, + "SourceStructureID": 99577, + "TargetStructureID": 1724, + "Label": "99577-1724 via Conventional from 99578 -> 99579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99578, + "TargetID": 99579, + "Directional": true + } + ] + }, + { + "ID": 19165, + "SourceStructureID": 99586, + "TargetStructureID": 1724, + "Label": "99586-1724 via Conventional from 99587 -> 3976", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99587, + "TargetID": 3976, + "Directional": true + } + ] + }, + { + "ID": 19166, + "SourceStructureID": 99589, + "TargetStructureID": 5278, + "Label": "99589-5278 via Conventional from 99591 -> 99590", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99591, + "TargetID": 99590, + "Directional": true + } + ] + }, + { + "ID": 19167, + "SourceStructureID": 99596, + "TargetStructureID": 5278, + "Label": "99596-5278 via Conventional from 99597 -> 92114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99597, + "TargetID": 92114, + "Directional": true + } + ] + }, + { + "ID": 19168, + "SourceStructureID": 99602, + "TargetStructureID": 5278, + "Label": "99602-5278 via Conventional from 99603 -> 99604", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99603, + "TargetID": 99604, + "Directional": true + } + ] + }, + { + "ID": 19169, + "SourceStructureID": 99614, + "TargetStructureID": 5278, + "Label": "99614-5278 via Conventional from 99615 -> 20074", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99615, + "TargetID": 20074, + "Directional": true + } + ] + }, + { + "ID": 19170, + "SourceStructureID": 99617, + "TargetStructureID": 485, + "Label": "99617-485 via Conventional from 99618 -> 99616", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99618, + "TargetID": 99616, + "Directional": true + } + ] + }, + { + "ID": 19171, + "SourceStructureID": 99617, + "TargetStructureID": 99621, + "Label": "99617-99621 via Conventional from 99620 -> 99622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99620, + "TargetID": 99622, + "Directional": true + } + ] + }, + { + "ID": 19172, + "SourceStructureID": 99628, + "TargetStructureID": 485, + "Label": "99628-485 via Conventional from 99629 -> 99630", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99629, + "TargetID": 99630, + "Directional": true + } + ] + }, + { + "ID": 19173, + "SourceStructureID": 99632, + "TargetStructureID": 408, + "Label": "99632-408 via Conventional from 99634 -> 35773", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99634, + "TargetID": 35773, + "Directional": true + } + ] + }, + { + "ID": 19174, + "SourceStructureID": 99632, + "TargetStructureID": 485, + "Label": "99632-485 via Conventional from 99633 -> 99636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99633, + "TargetID": 99636, + "Directional": true + } + ] + }, + { + "ID": 19175, + "SourceStructureID": 99642, + "TargetStructureID": 485, + "Label": "99642-485 via Conventional from 99643 -> 99637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99643, + "TargetID": 99637, + "Directional": true + } + ] + }, + { + "ID": 19176, + "SourceStructureID": 99644, + "TargetStructureID": 485, + "Label": "99644-485 via Conventional from 99645 -> 99640", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99645, + "TargetID": 99640, + "Directional": true + } + ] + }, + { + "ID": 19177, + "SourceStructureID": 99647, + "TargetStructureID": 485, + "Label": "99647-485 via Conventional from 99649 -> 99638", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99649, + "TargetID": 99638, + "Directional": true + } + ] + }, + { + "ID": 19178, + "SourceStructureID": 99701, + "TargetStructureID": 485, + "Label": "99701-485 via Conventional from 99702 -> 99686", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99702, + "TargetID": 99686, + "Directional": true + } + ] + }, + { + "ID": 19179, + "SourceStructureID": 99703, + "TargetStructureID": 485, + "Label": "99703-485 via Conventional from 99704 -> 99687", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99704, + "TargetID": 99687, + "Directional": true + } + ] + }, + { + "ID": 19180, + "SourceStructureID": 99719, + "TargetStructureID": 485, + "Label": "99719-485 via Conventional from 99720 -> 99689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99720, + "TargetID": 99689, + "Directional": true + } + ] + }, + { + "ID": 19181, + "SourceStructureID": 99722, + "TargetStructureID": 485, + "Label": "99722-485 via Conventional from 99723 -> 99721", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99723, + "TargetID": 99721, + "Directional": true + } + ] + }, + { + "ID": 19182, + "SourceStructureID": 99737, + "TargetStructureID": 485, + "Label": "99737-485 via Conventional from 99738 -> 99736", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99738, + "TargetID": 99736, + "Directional": true + } + ] + }, + { + "ID": 19183, + "SourceStructureID": 99741, + "TargetStructureID": 485, + "Label": "99741-485 via Conventional from 99745 -> 99740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99745, + "TargetID": 99740, + "Directional": true + } + ] + }, + { + "ID": 19184, + "SourceStructureID": 99741, + "TargetStructureID": 99737, + "Label": "99741-99737 via Conventional from 99743 -> 99744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99743, + "TargetID": 99744, + "Directional": true + } + ] + }, + { + "ID": 19185, + "SourceStructureID": 99742, + "TargetStructureID": 5278, + "Label": "99742-5278 via Conventional from 99746 -> 20078", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99746, + "TargetID": 20078, + "Directional": true + } + ] + }, + { + "ID": 19186, + "SourceStructureID": 99753, + "TargetStructureID": 485, + "Label": "99753-485 via Conventional from 99754 -> 99747", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99754, + "TargetID": 99747, + "Directional": true + } + ] + }, + { + "ID": 19187, + "SourceStructureID": 99769, + "TargetStructureID": 5278, + "Label": "99769-5278 via Conventional from 99770 -> 20084", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99770, + "TargetID": 20084, + "Directional": true + } + ] + }, + { + "ID": 19188, + "SourceStructureID": 99771, + "TargetStructureID": 5278, + "Label": "99771-5278 via Conventional from 99772 -> 20083", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99772, + "TargetID": 20083, + "Directional": true + } + ] + }, + { + "ID": 19189, + "SourceStructureID": 99783, + "TargetStructureID": 485, + "Label": "99783-485 via Conventional from 99833 -> 99834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99833, + "TargetID": 99834, + "Directional": true + } + ] + }, + { + "ID": 19190, + "SourceStructureID": 99801, + "TargetStructureID": 5278, + "Label": "99801-5278 via Conventional from 99814 -> 99815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99814, + "TargetID": 99815, + "Directional": true + } + ] + }, + { + "ID": 19191, + "SourceStructureID": 99801, + "TargetStructureID": 5279, + "Label": "99801-5279 via Conventional from 99802 -> 99803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99802, + "TargetID": 99803, + "Directional": true + } + ] + }, + { + "ID": 19192, + "SourceStructureID": 99804, + "TargetStructureID": 5279, + "Label": "99804-5279 via Conventional from 99805 -> 92677", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99805, + "TargetID": 92677, + "Directional": true + } + ] + }, + { + "ID": 19193, + "SourceStructureID": 99816, + "TargetStructureID": 5278, + "Label": "99816-5278 via Conventional from 99817 -> 20159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99817, + "TargetID": 20159, + "Directional": true + } + ] + }, + { + "ID": 19194, + "SourceStructureID": 99818, + "TargetStructureID": 5278, + "Label": "99818-5278 via Conventional from 99819 -> 20156", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99819, + "TargetID": 20156, + "Directional": true + } + ] + }, + { + "ID": 19195, + "SourceStructureID": 99829, + "TargetStructureID": 5278, + "Label": "99829-5278 via Conventional from 99830 -> 20167", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99830, + "TargetID": 20167, + "Directional": true + } + ] + }, + { + "ID": 19196, + "SourceStructureID": 99831, + "TargetStructureID": 5278, + "Label": "99831-5278 via Conventional from 100137 -> 20169", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100137, + "TargetID": 20169, + "Directional": true + } + ] + }, + { + "ID": 19197, + "SourceStructureID": 99835, + "TargetStructureID": 485, + "Label": "99835-485 via Conventional from 99836 -> 99778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99836, + "TargetID": 99778, + "Directional": true + } + ] + }, + { + "ID": 19198, + "SourceStructureID": 99844, + "TargetStructureID": 485, + "Label": "99844-485 via Conventional from 99845 -> 99843, 99846 -> 50684", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99845, + "TargetID": 99843, + "Directional": true + }, + { + "SourceID": 99846, + "TargetID": 50684, + "Directional": true + } + ] + }, + { + "ID": 19199, + "SourceStructureID": 99847, + "TargetStructureID": 485, + "Label": "99847-485 via Conventional from 148044 -> 148043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148044, + "TargetID": 148043, + "Directional": true + } + ] + }, + { + "ID": 19200, + "SourceStructureID": 99865, + "TargetStructureID": 485, + "Label": "99865-485 via Conventional from 99867 -> 99868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99867, + "TargetID": 99868, + "Directional": true + } + ] + }, + { + "ID": 19201, + "SourceStructureID": 99870, + "TargetStructureID": 485, + "Label": "99870-485 via Conventional from 99871 -> 99869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99871, + "TargetID": 99869, + "Directional": true + } + ] + }, + { + "ID": 19202, + "SourceStructureID": 99872, + "TargetStructureID": 485, + "Label": "99872-485 via Conventional from 99873 -> 99685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99873, + "TargetID": 99685, + "Directional": true + } + ] + }, + { + "ID": 19203, + "SourceStructureID": 99888, + "TargetStructureID": 485, + "Label": "99888-485 via Conventional from 99889 -> 99890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99889, + "TargetID": 99890, + "Directional": true + } + ] + }, + { + "ID": 19204, + "SourceStructureID": 99891, + "TargetStructureID": 485, + "Label": "99891-485 via Conventional from 99892 -> 99893", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99892, + "TargetID": 99893, + "Directional": true + } + ] + }, + { + "ID": 19205, + "SourceStructureID": 99898, + "TargetStructureID": 99898, + "Label": "99898-99898 via BC Conventional Synapse from 99899 -> 99900", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 99899, + "TargetID": 99900, + "Directional": true + } + ] + }, + { + "ID": 19206, + "SourceStructureID": 99901, + "TargetStructureID": 485, + "Label": "99901-485 via Conventional from 148023 -> 148022", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148023, + "TargetID": 148022, + "Directional": true + } + ] + }, + { + "ID": 19207, + "SourceStructureID": 99922, + "TargetStructureID": 485, + "Label": "99922-485 via Conventional from 99923 -> 99921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99923, + "TargetID": 99921, + "Directional": true + } + ] + }, + { + "ID": 19208, + "SourceStructureID": 99930, + "TargetStructureID": 485, + "Label": "99930-485 via Conventional from 99931 -> 99929", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99931, + "TargetID": 99929, + "Directional": true + } + ] + }, + { + "ID": 19209, + "SourceStructureID": 99941, + "TargetStructureID": 485, + "Label": "99941-485 via Conventional from 99942 -> 99940", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99942, + "TargetID": 99940, + "Directional": true + } + ] + }, + { + "ID": 19210, + "SourceStructureID": 99941, + "TargetStructureID": 46823, + "Label": "99941-46823 via Conventional from 99947 -> 46851", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99947, + "TargetID": 46851, + "Directional": true + } + ] + }, + { + "ID": 19211, + "SourceStructureID": 99948, + "TargetStructureID": 485, + "Label": "99948-485 via Conventional from 99949 -> 99950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99949, + "TargetID": 99950, + "Directional": true + } + ] + }, + { + "ID": 19212, + "SourceStructureID": 99960, + "TargetStructureID": 18576, + "Label": "99960-18576 via Conventional from 99962 -> 99964", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99962, + "TargetID": 99964, + "Directional": true + } + ] + }, + { + "ID": 19213, + "SourceStructureID": 99970, + "TargetStructureID": 485, + "Label": "99970-485 via Conventional from 99971 -> 99969", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99971, + "TargetID": 99969, + "Directional": true + } + ] + }, + { + "ID": 19214, + "SourceStructureID": 99981, + "TargetStructureID": 485, + "Label": "99981-485 via Conventional from 99982 -> 99980", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 99982, + "TargetID": 99980, + "Directional": true + } + ] + }, + { + "ID": 19215, + "SourceStructureID": 99984, + "TargetStructureID": 606, + "Label": "99984-606 via Conventional from 148019 -> 45518", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148019, + "TargetID": 45518, + "Directional": true + } + ] + }, + { + "ID": 19216, + "SourceStructureID": 99995, + "TargetStructureID": 485, + "Label": "99995-485 via Conventional from 134099 -> 134100", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134099, + "TargetID": 134100, + "Directional": true + } + ] + }, + { + "ID": 19217, + "SourceStructureID": 100006, + "TargetStructureID": 485, + "Label": "100006-485 via Conventional from 100008 -> 99904", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100008, + "TargetID": 99904, + "Directional": true + } + ] + }, + { + "ID": 19218, + "SourceStructureID": 100010, + "TargetStructureID": 485, + "Label": "100010-485 via Conventional from 100011 -> 100012", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100011, + "TargetID": 100012, + "Directional": true + } + ] + }, + { + "ID": 19219, + "SourceStructureID": 100014, + "TargetStructureID": 485, + "Label": "100014-485 via Conventional from 100015 -> 29182", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100015, + "TargetID": 29182, + "Directional": true + } + ] + }, + { + "ID": 19220, + "SourceStructureID": 100018, + "TargetStructureID": 485, + "Label": "100018-485 via Conventional from 100019 -> 29183", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100019, + "TargetID": 29183, + "Directional": true + } + ] + }, + { + "ID": 19221, + "SourceStructureID": 100020, + "TargetStructureID": 485, + "Label": "100020-485 via Conventional from 100021 -> 29185", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100021, + "TargetID": 29185, + "Directional": true + } + ] + }, + { + "ID": 19222, + "SourceStructureID": 100027, + "TargetStructureID": 485, + "Label": "100027-485 via Conventional from 100028 -> 100026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100028, + "TargetID": 100026, + "Directional": true + } + ] + }, + { + "ID": 19223, + "SourceStructureID": 100029, + "TargetStructureID": 485, + "Label": "100029-485 via Conventional from 100030 -> 100025", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100030, + "TargetID": 100025, + "Directional": true + } + ] + }, + { + "ID": 19224, + "SourceStructureID": 100035, + "TargetStructureID": 485, + "Label": "100035-485 via Conventional from 100036 -> 100031, 100037 -> 29188", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100036, + "TargetID": 100031, + "Directional": true + }, + { + "SourceID": 100037, + "TargetID": 29188, + "Directional": true + } + ] + }, + { + "ID": 19225, + "SourceStructureID": 100038, + "TargetStructureID": 485, + "Label": "100038-485 via Conventional from 100039 -> 29187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100039, + "TargetID": 29187, + "Directional": true + } + ] + }, + { + "ID": 19226, + "SourceStructureID": 100055, + "TargetStructureID": 485, + "Label": "100055-485 via Conventional from 100056 -> 100054", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100056, + "TargetID": 100054, + "Directional": true + } + ] + }, + { + "ID": 19227, + "SourceStructureID": 100067, + "TargetStructureID": 485, + "Label": "100067-485 via Conventional from 148033 -> 148032", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148033, + "TargetID": 148032, + "Directional": true + } + ] + }, + { + "ID": 19228, + "SourceStructureID": 100075, + "TargetStructureID": 309, + "Label": "100075-309 via Conventional from 100079 -> 13370", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100079, + "TargetID": 13370, + "Directional": true + } + ] + }, + { + "ID": 19229, + "SourceStructureID": 100075, + "TargetStructureID": 485, + "Label": "100075-485 via Conventional from 100080 -> 29191", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100080, + "TargetID": 29191, + "Directional": true + } + ] + }, + { + "ID": 19230, + "SourceStructureID": 100076, + "TargetStructureID": 330, + "Label": "100076-330 via Conventional from 100078 -> 25916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100078, + "TargetID": 25916, + "Directional": true + } + ] + }, + { + "ID": 19231, + "SourceStructureID": 100076, + "TargetStructureID": 45629, + "Label": "100076-45629 via Conventional from 100077 -> 45635", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100077, + "TargetID": 45635, + "Directional": true + } + ] + }, + { + "ID": 19232, + "SourceStructureID": 100084, + "TargetStructureID": 485, + "Label": "100084-485 via Conventional from 100085 -> 100086", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100085, + "TargetID": 100086, + "Directional": true + } + ] + }, + { + "ID": 19233, + "SourceStructureID": 100092, + "TargetStructureID": 485, + "Label": "100092-485 via Conventional from 100093 -> 100091", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100093, + "TargetID": 100091, + "Directional": true + } + ] + }, + { + "ID": 19234, + "SourceStructureID": 100102, + "TargetStructureID": 485, + "Label": "100102-485 via Conventional from 100103 -> 100101", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100103, + "TargetID": 100101, + "Directional": true + } + ] + }, + { + "ID": 19235, + "SourceStructureID": 100108, + "TargetStructureID": 485, + "Label": "100108-485 via Conventional from 100109 -> 51029", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100109, + "TargetID": 51029, + "Directional": true + } + ] + }, + { + "ID": 19236, + "SourceStructureID": 100110, + "TargetStructureID": 5278, + "Label": "100110-5278 via Conventional from 100120 -> 20175", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100120, + "TargetID": 20175, + "Directional": true + } + ] + }, + { + "ID": 19237, + "SourceStructureID": 100113, + "TargetStructureID": 485, + "Label": "100113-485 via Conventional from 100114 -> 51070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100114, + "TargetID": 51070, + "Directional": true + } + ] + }, + { + "ID": 19238, + "SourceStructureID": 100135, + "TargetStructureID": 485, + "Label": "100135-485 via Conventional from 100136 -> 100138", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100136, + "TargetID": 100138, + "Directional": true + } + ] + }, + { + "ID": 19239, + "SourceStructureID": 100146, + "TargetStructureID": 485, + "Label": "100146-485 via Conventional from 100150 -> 50922", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100150, + "TargetID": 50922, + "Directional": true + } + ] + }, + { + "ID": 19240, + "SourceStructureID": 100147, + "TargetStructureID": 485, + "Label": "100147-485 via Conventional from 100148 -> 50921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100148, + "TargetID": 50921, + "Directional": true + } + ] + }, + { + "ID": 19241, + "SourceStructureID": 100152, + "TargetStructureID": 5278, + "Label": "100152-5278 via Conventional from 100155 -> 20166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100155, + "TargetID": 20166, + "Directional": true + } + ] + }, + { + "ID": 19242, + "SourceStructureID": 100153, + "TargetStructureID": 485, + "Label": "100153-485 via Conventional from 100154 -> 51072", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100154, + "TargetID": 51072, + "Directional": true + } + ] + }, + { + "ID": 19243, + "SourceStructureID": 100173, + "TargetStructureID": 485, + "Label": "100173-485 via Conventional from 100185 -> 50691", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100185, + "TargetID": 50691, + "Directional": true + } + ] + }, + { + "ID": 19244, + "SourceStructureID": 100176, + "TargetStructureID": 485, + "Label": "100176-485 via Conventional from 100177 -> 50852, 100178 -> 50692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100177, + "TargetID": 50852, + "Directional": true + }, + { + "SourceID": 100178, + "TargetID": 50692, + "Directional": true + } + ] + }, + { + "ID": 19245, + "SourceStructureID": 100180, + "TargetStructureID": 485, + "Label": "100180-485 via Conventional from 100181 -> 50688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100181, + "TargetID": 50688, + "Directional": true + } + ] + }, + { + "ID": 19246, + "SourceStructureID": 100182, + "TargetStructureID": 42423, + "Label": "100182-42423 via Conventional from 100183 -> 42430", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100183, + "TargetID": 42430, + "Directional": true + } + ] + }, + { + "ID": 19247, + "SourceStructureID": 100187, + "TargetStructureID": 485, + "Label": "100187-485 via Conventional from 100188 -> 100190", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100188, + "TargetID": 100190, + "Directional": true + } + ] + }, + { + "ID": 19248, + "SourceStructureID": 100189, + "TargetStructureID": 42423, + "Label": "100189-42423 via Ribbon Synapse from 100191 -> 100184", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 100191, + "TargetID": 100184, + "Directional": true + } + ] + }, + { + "ID": 19249, + "SourceStructureID": 100217, + "TargetStructureID": 485, + "Label": "100217-485 via Conventional from 100219 -> 100220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100219, + "TargetID": 100220, + "Directional": true + } + ] + }, + { + "ID": 19250, + "SourceStructureID": 100239, + "TargetStructureID": 1724, + "Label": "100239-1724 via Conventional from 100240 -> 100241", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100240, + "TargetID": 100241, + "Directional": true + } + ] + }, + { + "ID": 19251, + "SourceStructureID": 100254, + "TargetStructureID": 1724, + "Label": "100254-1724 via Conventional from 100255 -> 43310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100255, + "TargetID": 43310, + "Directional": true + } + ] + }, + { + "ID": 19252, + "SourceStructureID": 100256, + "TargetStructureID": 1724, + "Label": "100256-1724 via Conventional from 100259 -> 47395", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100259, + "TargetID": 47395, + "Directional": true + } + ] + }, + { + "ID": 19253, + "SourceStructureID": 100264, + "TargetStructureID": 485, + "Label": "100264-485 via Conventional from 100265 -> 100224, 100267 -> 100268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100265, + "TargetID": 100224, + "Directional": true + }, + { + "SourceID": 100267, + "TargetID": 100268, + "Directional": true + } + ] + }, + { + "ID": 19254, + "SourceStructureID": 100266, + "TargetStructureID": 1724, + "Label": "100266-1724 via Conventional from 100269 -> 100270", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100269, + "TargetID": 100270, + "Directional": true + } + ] + }, + { + "ID": 19255, + "SourceStructureID": 100275, + "TargetStructureID": 1724, + "Label": "100275-1724 via Conventional from 100276 -> 43313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100276, + "TargetID": 43313, + "Directional": true + } + ] + }, + { + "ID": 19256, + "SourceStructureID": 100278, + "TargetStructureID": 1724, + "Label": "100278-1724 via Conventional from 100285 -> 100286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100285, + "TargetID": 100286, + "Directional": true + } + ] + }, + { + "ID": 19257, + "SourceStructureID": 100282, + "TargetStructureID": 485, + "Label": "100282-485 via Conventional from 100283 -> 100281", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100283, + "TargetID": 100281, + "Directional": true + } + ] + }, + { + "ID": 19258, + "SourceStructureID": 100296, + "TargetStructureID": 485, + "Label": "100296-485 via Conventional from 100297 -> 100298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100297, + "TargetID": 100298, + "Directional": true + } + ] + }, + { + "ID": 19259, + "SourceStructureID": 100302, + "TargetStructureID": 485, + "Label": "100302-485 via Conventional from 100303 -> 100301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100303, + "TargetID": 100301, + "Directional": true + } + ] + }, + { + "ID": 19260, + "SourceStructureID": 100304, + "TargetStructureID": 485, + "Label": "100304-485 via Conventional from 100306 -> 100307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100306, + "TargetID": 100307, + "Directional": true + } + ] + }, + { + "ID": 19261, + "SourceStructureID": 100308, + "TargetStructureID": 485, + "Label": "100308-485 via Conventional from 100309 -> 47650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100309, + "TargetID": 47650, + "Directional": true + } + ] + }, + { + "ID": 19262, + "SourceStructureID": 100310, + "TargetStructureID": 1724, + "Label": "100310-1724 via Conventional from 100319 -> 100320", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100319, + "TargetID": 100320, + "Directional": true + } + ] + }, + { + "ID": 19263, + "SourceStructureID": 100322, + "TargetStructureID": 485, + "Label": "100322-485 via Conventional from 100326 -> 51155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100326, + "TargetID": 51155, + "Directional": true + } + ] + }, + { + "ID": 19264, + "SourceStructureID": 100332, + "TargetStructureID": 485, + "Label": "100332-485 via Conventional from 100334 -> 100331", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100334, + "TargetID": 100331, + "Directional": true + } + ] + }, + { + "ID": 19265, + "SourceStructureID": 100335, + "TargetStructureID": 1724, + "Label": "100335-1724 via Conventional from 100336 -> 47366", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100336, + "TargetID": 47366, + "Directional": true + } + ] + }, + { + "ID": 19266, + "SourceStructureID": 100353, + "TargetStructureID": 1724, + "Label": "100353-1724 via Conventional from 100354 -> 3932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100354, + "TargetID": 3932, + "Directional": true + } + ] + }, + { + "ID": 19267, + "SourceStructureID": 100357, + "TargetStructureID": 485, + "Label": "100357-485 via Conventional from 100358 -> 100359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100358, + "TargetID": 100359, + "Directional": true + } + ] + }, + { + "ID": 19268, + "SourceStructureID": 100366, + "TargetStructureID": 1724, + "Label": "100366-1724 via Conventional from 100375 -> 100376", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100375, + "TargetID": 100376, + "Directional": true + } + ] + }, + { + "ID": 19269, + "SourceStructureID": 100371, + "TargetStructureID": 485, + "Label": "100371-485 via Conventional from 100373 -> 100367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100373, + "TargetID": 100367, + "Directional": true + } + ] + }, + { + "ID": 19270, + "SourceStructureID": 100374, + "TargetStructureID": 5278, + "Label": "100374-5278 via Conventional from 100377 -> 100378", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100377, + "TargetID": 100378, + "Directional": true + } + ] + }, + { + "ID": 19271, + "SourceStructureID": 100379, + "TargetStructureID": 1724, + "Label": "100379-1724 via Conventional from 100383 -> 47368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100383, + "TargetID": 47368, + "Directional": true + } + ] + }, + { + "ID": 19272, + "SourceStructureID": 100400, + "TargetStructureID": 5278, + "Label": "100400-5278 via Conventional from 100403 -> 8979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100403, + "TargetID": 8979, + "Directional": true + } + ] + }, + { + "ID": 19273, + "SourceStructureID": 100401, + "TargetStructureID": 485, + "Label": "100401-485 via Conventional from 100402 -> 51050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100402, + "TargetID": 51050, + "Directional": true + } + ] + }, + { + "ID": 19274, + "SourceStructureID": 100413, + "TargetStructureID": 1724, + "Label": "100413-1724 via Conventional from 100415 -> 4025", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100415, + "TargetID": 4025, + "Directional": true + } + ] + }, + { + "ID": 19275, + "SourceStructureID": 100414, + "TargetStructureID": 5278, + "Label": "100414-5278 via Conventional from 100434 -> 8978", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100434, + "TargetID": 8978, + "Directional": true + } + ] + }, + { + "ID": 19276, + "SourceStructureID": 100419, + "TargetStructureID": 1724, + "Label": "100419-1724 via Conventional from 100420 -> 100421", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100420, + "TargetID": 100421, + "Directional": true + } + ] + }, + { + "ID": 19277, + "SourceStructureID": 100426, + "TargetStructureID": 485, + "Label": "100426-485 via Conventional from 100431 -> 51154", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100431, + "TargetID": 51154, + "Directional": true + } + ] + }, + { + "ID": 19278, + "SourceStructureID": 100445, + "TargetStructureID": 5278, + "Label": "100445-5278 via Conventional from 100446 -> 100447", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100446, + "TargetID": 100447, + "Directional": true + } + ] + }, + { + "ID": 19279, + "SourceStructureID": 100448, + "TargetStructureID": 485, + "Label": "100448-485 via Conventional from 100449 -> 51151", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100449, + "TargetID": 51151, + "Directional": true + } + ] + }, + { + "ID": 19280, + "SourceStructureID": 100450, + "TargetStructureID": 5278, + "Label": "100450-5278 via Conventional from 100457 -> 100458", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100457, + "TargetID": 100458, + "Directional": true + } + ] + }, + { + "ID": 19281, + "SourceStructureID": 100467, + "TargetStructureID": 18576, + "Label": "100467-18576 via Conventional from 100468 -> 100466", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100468, + "TargetID": 100466, + "Directional": true + } + ] + }, + { + "ID": 19282, + "SourceStructureID": 100479, + "TargetStructureID": 485, + "Label": "100479-485 via Conventional from 100480 -> 100478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100480, + "TargetID": 100478, + "Directional": true + } + ] + }, + { + "ID": 19283, + "SourceStructureID": 100498, + "TargetStructureID": 485, + "Label": "100498-485 via Conventional from 100505 -> 100507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100505, + "TargetID": 100507, + "Directional": true + } + ] + }, + { + "ID": 19284, + "SourceStructureID": 100503, + "TargetStructureID": 5278, + "Label": "100503-5278 via Conventional from 100504 -> 92148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100504, + "TargetID": 92148, + "Directional": true + } + ] + }, + { + "ID": 19285, + "SourceStructureID": 100512, + "TargetStructureID": 485, + "Label": "100512-485 via Conventional from 100513 -> 100506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100513, + "TargetID": 100506, + "Directional": true + } + ] + }, + { + "ID": 19286, + "SourceStructureID": 100516, + "TargetStructureID": 1724, + "Label": "100516-1724 via Conventional from 100517 -> 4019", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100517, + "TargetID": 4019, + "Directional": true + } + ] + }, + { + "ID": 19287, + "SourceStructureID": 100524, + "TargetStructureID": 5278, + "Label": "100524-5278 via Conventional from 100525 -> 100526", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100525, + "TargetID": 100526, + "Directional": true + } + ] + }, + { + "ID": 19288, + "SourceStructureID": 100541, + "TargetStructureID": 485, + "Label": "100541-485 via Conventional from 100542 -> 100535", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100542, + "TargetID": 100535, + "Directional": true + } + ] + }, + { + "ID": 19289, + "SourceStructureID": 100546, + "TargetStructureID": 1724, + "Label": "100546-1724 via Conventional from 100549 -> 3978", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100549, + "TargetID": 3978, + "Directional": true + } + ] + }, + { + "ID": 19290, + "SourceStructureID": 100548, + "TargetStructureID": 5278, + "Label": "100548-5278 via Conventional from 100756 -> 100757", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100756, + "TargetID": 100757, + "Directional": true + } + ] + }, + { + "ID": 19291, + "SourceStructureID": 100557, + "TargetStructureID": 1724, + "Label": "100557-1724 via Conventional from 100558 -> 3980", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100558, + "TargetID": 3980, + "Directional": true + } + ] + }, + { + "ID": 19292, + "SourceStructureID": 100564, + "TargetStructureID": 1724, + "Label": "100564-1724 via Conventional from 100571 -> 3936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100571, + "TargetID": 3936, + "Directional": true + } + ] + }, + { + "ID": 19293, + "SourceStructureID": 100572, + "TargetStructureID": 1724, + "Label": "100572-1724 via Conventional from 100583 -> 100584", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100583, + "TargetID": 100584, + "Directional": true + } + ] + }, + { + "ID": 19294, + "SourceStructureID": 100578, + "TargetStructureID": 485, + "Label": "100578-485 via Conventional from 100579 -> 100532", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100579, + "TargetID": 100532, + "Directional": true + } + ] + }, + { + "ID": 19295, + "SourceStructureID": 100588, + "TargetStructureID": 100588, + "Label": "100588-100588 via Conventional from 148050 -> 100589", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148050, + "TargetID": 100589, + "Directional": true + } + ] + }, + { + "ID": 19296, + "SourceStructureID": 100593, + "TargetStructureID": 1724, + "Label": "100593-1724 via Conventional from 100598 -> 3942", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100598, + "TargetID": 3942, + "Directional": true + } + ] + }, + { + "ID": 19297, + "SourceStructureID": 100596, + "TargetStructureID": 485, + "Label": "100596-485 via Conventional from 100597 -> 100595", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100597, + "TargetID": 100595, + "Directional": true + } + ] + }, + { + "ID": 19298, + "SourceStructureID": 100644, + "TargetStructureID": 485, + "Label": "100644-485 via Conventional from 100645 -> 100643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100645, + "TargetID": 100643, + "Directional": true + } + ] + }, + { + "ID": 19299, + "SourceStructureID": 100648, + "TargetStructureID": 485, + "Label": "100648-485 via Conventional from 100649 -> 100650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100649, + "TargetID": 100650, + "Directional": true + } + ] + }, + { + "ID": 19300, + "SourceStructureID": 100651, + "TargetStructureID": 1724, + "Label": "100651-1724 via Conventional from 100660 -> 3950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100660, + "TargetID": 3950, + "Directional": true + } + ] + }, + { + "ID": 19301, + "SourceStructureID": 100654, + "TargetStructureID": 485, + "Label": "100654-485 via Conventional from 100656 -> 100670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100656, + "TargetID": 100670, + "Directional": true + } + ] + }, + { + "ID": 19302, + "SourceStructureID": 100664, + "TargetStructureID": 1724, + "Label": "100664-1724 via Conventional from 100665 -> 100666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100665, + "TargetID": 100666, + "Directional": true + } + ] + }, + { + "ID": 19303, + "SourceStructureID": 100667, + "TargetStructureID": 1724, + "Label": "100667-1724 via Conventional from 100668 -> 3953", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100668, + "TargetID": 3953, + "Directional": true + } + ] + }, + { + "ID": 19304, + "SourceStructureID": 100669, + "TargetStructureID": 1724, + "Label": "100669-1724 via Conventional from 100673 -> 3945", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100673, + "TargetID": 3945, + "Directional": true + } + ] + }, + { + "ID": 19305, + "SourceStructureID": 100674, + "TargetStructureID": 1724, + "Label": "100674-1724 via Conventional from 100675 -> 100676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100675, + "TargetID": 100676, + "Directional": true + } + ] + }, + { + "ID": 19306, + "SourceStructureID": 100677, + "TargetStructureID": 485, + "Label": "100677-485 via Conventional from 100678 -> 100652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100678, + "TargetID": 100652, + "Directional": true + } + ] + }, + { + "ID": 19307, + "SourceStructureID": 100692, + "TargetStructureID": 1724, + "Label": "100692-1724 via Conventional from 100694 -> 100696", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100694, + "TargetID": 100696, + "Directional": true + } + ] + }, + { + "ID": 19308, + "SourceStructureID": 100706, + "TargetStructureID": 485, + "Label": "100706-485 via Conventional from 100707 -> 51089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100707, + "TargetID": 51089, + "Directional": true + } + ] + }, + { + "ID": 19309, + "SourceStructureID": 100709, + "TargetStructureID": 485, + "Label": "100709-485 via Conventional from 100710 -> 100708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100710, + "TargetID": 100708, + "Directional": true + } + ] + }, + { + "ID": 19310, + "SourceStructureID": 100713, + "TargetStructureID": 485, + "Label": "100713-485 via Conventional from 100714 -> 51087", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100714, + "TargetID": 51087, + "Directional": true + } + ] + }, + { + "ID": 19311, + "SourceStructureID": 100729, + "TargetStructureID": 485, + "Label": "100729-485 via Conventional from 100730 -> 100728", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100730, + "TargetID": 100728, + "Directional": true + } + ] + }, + { + "ID": 19312, + "SourceStructureID": 100733, + "TargetStructureID": 100737, + "Label": "100733-100737 via Conventional from 100736 -> 100738", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100736, + "TargetID": 100738, + "Directional": true + } + ] + }, + { + "ID": 19313, + "SourceStructureID": 100741, + "TargetStructureID": 485, + "Label": "100741-485 via Conventional from 100742 -> 47524", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100742, + "TargetID": 47524, + "Directional": true + } + ] + }, + { + "ID": 19314, + "SourceStructureID": 100741, + "TargetStructureID": 24401, + "Label": "100741-24401 via Conventional from 100743 -> 34747", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100743, + "TargetID": 34747, + "Directional": true + } + ] + }, + { + "ID": 19315, + "SourceStructureID": 100744, + "TargetStructureID": 485, + "Label": "100744-485 via Conventional from 100755 -> 47527", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100755, + "TargetID": 47527, + "Directional": true + } + ] + }, + { + "ID": 19316, + "SourceStructureID": 100745, + "TargetStructureID": 485, + "Label": "100745-485 via Conventional from 100760 -> 47526", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100760, + "TargetID": 47526, + "Directional": true + } + ] + }, + { + "ID": 19317, + "SourceStructureID": 100763, + "TargetStructureID": 5278, + "Label": "100763-5278 via Conventional from 147291 -> 147292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147291, + "TargetID": 147292, + "Directional": true + } + ] + }, + { + "ID": 19318, + "SourceStructureID": 100765, + "TargetStructureID": 3116, + "Label": "100765-3116 via Conventional from 100766 -> 28000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100766, + "TargetID": 28000, + "Directional": true + } + ] + }, + { + "ID": 19319, + "SourceStructureID": 100771, + "TargetStructureID": 485, + "Label": "100771-485 via Conventional from 100772 -> 100770", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100772, + "TargetID": 100770, + "Directional": true + } + ] + }, + { + "ID": 19320, + "SourceStructureID": 100771, + "TargetStructureID": 100787, + "Label": "100771-100787 via Conventional from 100784 -> 100789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100784, + "TargetID": 100789, + "Directional": true + } + ] + }, + { + "ID": 19321, + "SourceStructureID": 100775, + "TargetStructureID": 5278, + "Label": "100775-5278 via Conventional from 147294 -> 147293", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147294, + "TargetID": 147293, + "Directional": true + } + ] + }, + { + "ID": 19322, + "SourceStructureID": 100780, + "TargetStructureID": 5279, + "Label": "100780-5279 via Conventional from 100783 -> 49214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100783, + "TargetID": 49214, + "Directional": true + } + ] + }, + { + "ID": 19323, + "SourceStructureID": 100808, + "TargetStructureID": 4568, + "Label": "100808-4568 via Conventional from 100809 -> 11579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100809, + "TargetID": 11579, + "Directional": true + } + ] + }, + { + "ID": 19324, + "SourceStructureID": 100816, + "TargetStructureID": 5278, + "Label": "100816-5278 via Conventional from 147302 -> 147301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147302, + "TargetID": 147301, + "Directional": true + } + ] + }, + { + "ID": 19325, + "SourceStructureID": 100819, + "TargetStructureID": 485, + "Label": "100819-485 via Conventional from 100821 -> 47620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100821, + "TargetID": 47620, + "Directional": true + } + ] + }, + { + "ID": 19326, + "SourceStructureID": 100820, + "TargetStructureID": 485, + "Label": "100820-485 via Conventional from 100823 -> 47619", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100823, + "TargetID": 47619, + "Directional": true + } + ] + }, + { + "ID": 19327, + "SourceStructureID": 100826, + "TargetStructureID": 485, + "Label": "100826-485 via Conventional from 100827 -> 100833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100827, + "TargetID": 100833, + "Directional": true + } + ] + }, + { + "ID": 19328, + "SourceStructureID": 100828, + "TargetStructureID": 5278, + "Label": "100828-5278 via Conventional from 103961 -> 103962", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103961, + "TargetID": 103962, + "Directional": true + } + ] + }, + { + "ID": 19329, + "SourceStructureID": 100834, + "TargetStructureID": 142, + "Label": "100834-142 via Conventional from 126139 -> 126138", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126139, + "TargetID": 126138, + "Directional": true + } + ] + }, + { + "ID": 19330, + "SourceStructureID": 100835, + "TargetStructureID": 485, + "Label": "100835-485 via Conventional from 100836 -> 47627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100836, + "TargetID": 47627, + "Directional": true + } + ] + }, + { + "ID": 19331, + "SourceStructureID": 100837, + "TargetStructureID": 485, + "Label": "100837-485 via Conventional from 100838 -> 47624, 100869 -> 100855", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100838, + "TargetID": 47624, + "Directional": true + }, + { + "SourceID": 100869, + "TargetID": 100855, + "Directional": true + } + ] + }, + { + "ID": 19332, + "SourceStructureID": 100846, + "TargetStructureID": 1724, + "Label": "100846-1724 via Conventional from 100849 -> 20184", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100849, + "TargetID": 20184, + "Directional": true + } + ] + }, + { + "ID": 19333, + "SourceStructureID": 100850, + "TargetStructureID": 485, + "Label": "100850-485 via Conventional from 100854 -> 100848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100854, + "TargetID": 100848, + "Directional": true + } + ] + }, + { + "ID": 19334, + "SourceStructureID": 100852, + "TargetStructureID": 1724, + "Label": "100852-1724 via Conventional from 100863 -> 100864", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100863, + "TargetID": 100864, + "Directional": true + } + ] + }, + { + "ID": 19335, + "SourceStructureID": 100853, + "TargetStructureID": 1724, + "Label": "100853-1724 via Conventional from 100858 -> 100859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100858, + "TargetID": 100859, + "Directional": true + } + ] + }, + { + "ID": 19336, + "SourceStructureID": 100865, + "TargetStructureID": 1724, + "Label": "100865-1724 via Conventional from 100866 -> 100867", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100866, + "TargetID": 100867, + "Directional": true + } + ] + }, + { + "ID": 19337, + "SourceStructureID": 100871, + "TargetStructureID": 1724, + "Label": "100871-1724 via Conventional from 100872 -> 20188", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100872, + "TargetID": 20188, + "Directional": true + } + ] + }, + { + "ID": 19338, + "SourceStructureID": 100874, + "TargetStructureID": 1724, + "Label": "100874-1724 via Conventional from 100875 -> 100876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100875, + "TargetID": 100876, + "Directional": true + } + ] + }, + { + "ID": 19339, + "SourceStructureID": 100882, + "TargetStructureID": 1724, + "Label": "100882-1724 via Conventional from 100886 -> 20190", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100886, + "TargetID": 20190, + "Directional": true + } + ] + }, + { + "ID": 19340, + "SourceStructureID": 100888, + "TargetStructureID": 1724, + "Label": "100888-1724 via Conventional from 100889 -> 100890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100889, + "TargetID": 100890, + "Directional": true + } + ] + }, + { + "ID": 19341, + "SourceStructureID": 100895, + "TargetStructureID": 485, + "Label": "100895-485 via Conventional from 100904 -> 100905", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100904, + "TargetID": 100905, + "Directional": true + } + ] + }, + { + "ID": 19342, + "SourceStructureID": 100896, + "TargetStructureID": 1724, + "Label": "100896-1724 via Conventional from 100897 -> 100898", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100897, + "TargetID": 100898, + "Directional": true + } + ] + }, + { + "ID": 19343, + "SourceStructureID": 100913, + "TargetStructureID": 485, + "Label": "100913-485 via Conventional from 100914 -> 100912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100914, + "TargetID": 100912, + "Directional": true + } + ] + }, + { + "ID": 19344, + "SourceStructureID": 100931, + "TargetStructureID": 485, + "Label": "100931-485 via Conventional from 100932 -> 100930", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100932, + "TargetID": 100930, + "Directional": true + } + ] + }, + { + "ID": 19345, + "SourceStructureID": 100934, + "TargetStructureID": 485, + "Label": "100934-485 via Conventional from 100935 -> 100933", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100935, + "TargetID": 100933, + "Directional": true + } + ] + }, + { + "ID": 19346, + "SourceStructureID": 100953, + "TargetStructureID": 485, + "Label": "100953-485 via Conventional from 100958 -> 100951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100958, + "TargetID": 100951, + "Directional": true + } + ] + }, + { + "ID": 19347, + "SourceStructureID": 100953, + "TargetStructureID": 101015, + "Label": "100953-101015 via Conventional from 101019 -> 101018", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101019, + "TargetID": 101018, + "Directional": true + } + ] + }, + { + "ID": 19348, + "SourceStructureID": 100972, + "TargetStructureID": 485, + "Label": "100972-485 via Conventional from 100973 -> 100970", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100973, + "TargetID": 100970, + "Directional": true + } + ] + }, + { + "ID": 19349, + "SourceStructureID": 100972, + "TargetStructureID": 100913, + "Label": "100972-100913 via Conventional from 100974 -> 100916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100974, + "TargetID": 100916, + "Directional": true + } + ] + }, + { + "ID": 19350, + "SourceStructureID": 100981, + "TargetStructureID": 485, + "Label": "100981-485 via Conventional from 100982 -> 100983", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 100982, + "TargetID": 100983, + "Directional": true + } + ] + }, + { + "ID": 19351, + "SourceStructureID": 101000, + "TargetStructureID": 485, + "Label": "101000-485 via Conventional from 101001 -> 101002", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101001, + "TargetID": 101002, + "Directional": true + } + ] + }, + { + "ID": 19352, + "SourceStructureID": 101004, + "TargetStructureID": 485, + "Label": "101004-485 via Conventional from 101005 -> 101003", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101005, + "TargetID": 101003, + "Directional": true + } + ] + }, + { + "ID": 19353, + "SourceStructureID": 101015, + "TargetStructureID": 485, + "Label": "101015-485 via Conventional from 101016 -> 101014", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101016, + "TargetID": 101014, + "Directional": true + } + ] + }, + { + "ID": 19354, + "SourceStructureID": 101034, + "TargetStructureID": 485, + "Label": "101034-485 via Conventional from 101035 -> 101036", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101035, + "TargetID": 101036, + "Directional": true + } + ] + }, + { + "ID": 19355, + "SourceStructureID": 101041, + "TargetStructureID": 485, + "Label": "101041-485 via Conventional from 101044 -> 101037", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101044, + "TargetID": 101037, + "Directional": true + } + ] + }, + { + "ID": 19356, + "SourceStructureID": 101045, + "TargetStructureID": 485, + "Label": "101045-485 via Conventional from 101046 -> 101038", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101046, + "TargetID": 101038, + "Directional": true + } + ] + }, + { + "ID": 19357, + "SourceStructureID": 101050, + "TargetStructureID": 485, + "Label": "101050-485 via Conventional from 101051 -> 101049, 101056 -> 101057", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101051, + "TargetID": 101049, + "Directional": true + }, + { + "SourceID": 101056, + "TargetID": 101057, + "Directional": true + } + ] + }, + { + "ID": 19358, + "SourceStructureID": 101075, + "TargetStructureID": 485, + "Label": "101075-485 via Conventional from 101076 -> 101077", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101076, + "TargetID": 101077, + "Directional": true + } + ] + }, + { + "ID": 19359, + "SourceStructureID": 101085, + "TargetStructureID": 485, + "Label": "101085-485 via Conventional from 101086 -> 101084", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101086, + "TargetID": 101084, + "Directional": true + } + ] + }, + { + "ID": 19360, + "SourceStructureID": 101090, + "TargetStructureID": 485, + "Label": "101090-485 via Conventional from 101091 -> 50886", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101091, + "TargetID": 50886, + "Directional": true + } + ] + }, + { + "ID": 19361, + "SourceStructureID": 101099, + "TargetStructureID": 485, + "Label": "101099-485 via Conventional from 101100 -> 101098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101100, + "TargetID": 101098, + "Directional": true + } + ] + }, + { + "ID": 19362, + "SourceStructureID": 101108, + "TargetStructureID": 485, + "Label": "101108-485 via Conventional from 101109 -> 101110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101109, + "TargetID": 101110, + "Directional": true + } + ] + }, + { + "ID": 19363, + "SourceStructureID": 101115, + "TargetStructureID": 485, + "Label": "101115-485 via Conventional from 101116 -> 35123", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101116, + "TargetID": 35123, + "Directional": true + } + ] + }, + { + "ID": 19364, + "SourceStructureID": 101117, + "TargetStructureID": 485, + "Label": "101117-485 via Conventional from 101118 -> 35125", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101118, + "TargetID": 35125, + "Directional": true + } + ] + }, + { + "ID": 19365, + "SourceStructureID": 101124, + "TargetStructureID": 485, + "Label": "101124-485 via Conventional from 101125 -> 101123", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101125, + "TargetID": 101123, + "Directional": true + } + ] + }, + { + "ID": 19366, + "SourceStructureID": 101129, + "TargetStructureID": 485, + "Label": "101129-485 via Conventional from 101131 -> 47542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101131, + "TargetID": 47542, + "Directional": true + } + ] + }, + { + "ID": 19367, + "SourceStructureID": 101142, + "TargetStructureID": 485, + "Label": "101142-485 via Conventional from 101143 -> 101141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101143, + "TargetID": 101141, + "Directional": true + } + ] + }, + { + "ID": 19368, + "SourceStructureID": 101161, + "TargetStructureID": 485, + "Label": "101161-485 via Conventional from 101167 -> 101160", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101167, + "TargetID": 101160, + "Directional": true + } + ] + }, + { + "ID": 19369, + "SourceStructureID": 101187, + "TargetStructureID": 483, + "Label": "101187-483 via Conventional from 101188 -> 92325", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101188, + "TargetID": 92325, + "Directional": true + } + ] + }, + { + "ID": 19370, + "SourceStructureID": 101190, + "TargetStructureID": 485, + "Label": "101190-485 via Conventional from 101192 -> 101193", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101192, + "TargetID": 101193, + "Directional": true + } + ] + }, + { + "ID": 19371, + "SourceStructureID": 101194, + "TargetStructureID": 485, + "Label": "101194-485 via Conventional from 101196 -> 101198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101196, + "TargetID": 101198, + "Directional": true + } + ] + }, + { + "ID": 19372, + "SourceStructureID": 101201, + "TargetStructureID": 485, + "Label": "101201-485 via Conventional from 101202 -> 101203", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101202, + "TargetID": 101203, + "Directional": true + } + ] + }, + { + "ID": 19373, + "SourceStructureID": 101213, + "TargetStructureID": 485, + "Label": "101213-485 via Conventional from 101214 -> 101215", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101214, + "TargetID": 101215, + "Directional": true + } + ] + }, + { + "ID": 19374, + "SourceStructureID": 101218, + "TargetStructureID": 485, + "Label": "101218-485 via Conventional from 101219 -> 101217", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101219, + "TargetID": 101217, + "Directional": true + } + ] + }, + { + "ID": 19375, + "SourceStructureID": 101230, + "TargetStructureID": 485, + "Label": "101230-485 via Conventional from 101231 -> 101232", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101231, + "TargetID": 101232, + "Directional": true + } + ] + }, + { + "ID": 19376, + "SourceStructureID": 101234, + "TargetStructureID": 419, + "Label": "101234-419 via Conventional from 133538 -> 133537", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133538, + "TargetID": 133537, + "Directional": true + } + ] + }, + { + "ID": 19377, + "SourceStructureID": 101234, + "TargetStructureID": 485, + "Label": "101234-485 via Conventional from 101235 -> 101233", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101235, + "TargetID": 101233, + "Directional": true + } + ] + }, + { + "ID": 19378, + "SourceStructureID": 101238, + "TargetStructureID": 101220, + "Label": "101238-101220 via Conventional from 101240 -> 101241", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101240, + "TargetID": 101241, + "Directional": true + } + ] + }, + { + "ID": 19379, + "SourceStructureID": 101243, + "TargetStructureID": 485, + "Label": "101243-485 via Conventional from 101244 -> 101242", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101244, + "TargetID": 101242, + "Directional": true + } + ] + }, + { + "ID": 19380, + "SourceStructureID": 101247, + "TargetStructureID": 5563, + "Label": "101247-5563 via Conventional from 101293 -> 101297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101293, + "TargetID": 101297, + "Directional": true + } + ] + }, + { + "ID": 19381, + "SourceStructureID": 101247, + "TargetStructureID": 5563, + "Label": "101247-5563 via Unknown from 101300 -> 101301", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 101300, + "TargetID": 101301, + "Directional": true + } + ] + }, + { + "ID": 19382, + "SourceStructureID": 101249, + "TargetStructureID": 485, + "Label": "101249-485 via Conventional from 101250 -> 101251", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101250, + "TargetID": 101251, + "Directional": true + } + ] + }, + { + "ID": 19383, + "SourceStructureID": 101257, + "TargetStructureID": 485, + "Label": "101257-485 via Conventional from 101260 -> 101256", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101260, + "TargetID": 101256, + "Directional": true + } + ] + }, + { + "ID": 19384, + "SourceStructureID": 101257, + "TargetStructureID": 101261, + "Label": "101257-101261 via Conventional from 101258 -> 101264", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101258, + "TargetID": 101264, + "Directional": true + } + ] + }, + { + "ID": 19385, + "SourceStructureID": 101277, + "TargetStructureID": 485, + "Label": "101277-485 via Conventional from 101278 -> 101276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101278, + "TargetID": 101276, + "Directional": true + } + ] + }, + { + "ID": 19386, + "SourceStructureID": 101287, + "TargetStructureID": 485, + "Label": "101287-485 via Conventional from 101288 -> 101286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101288, + "TargetID": 101286, + "Directional": true + } + ] + }, + { + "ID": 19387, + "SourceStructureID": 101314, + "TargetStructureID": 485, + "Label": "101314-485 via Conventional from 101316 -> 101317", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101316, + "TargetID": 101317, + "Directional": true + } + ] + }, + { + "ID": 19388, + "SourceStructureID": 101318, + "TargetStructureID": 485, + "Label": "101318-485 via Conventional from 101319 -> 47554", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101319, + "TargetID": 47554, + "Directional": true + } + ] + }, + { + "ID": 19389, + "SourceStructureID": 101324, + "TargetStructureID": 485, + "Label": "101324-485 via Conventional from 101329 -> 101323", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101329, + "TargetID": 101323, + "Directional": true + } + ] + }, + { + "ID": 19390, + "SourceStructureID": 101325, + "TargetStructureID": 6156, + "Label": "101325-6156 via Conventional from 101327 -> 101280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101327, + "TargetID": 101280, + "Directional": true + } + ] + }, + { + "ID": 19391, + "SourceStructureID": 101331, + "TargetStructureID": 485, + "Label": "101331-485 via Conventional from 101335 -> 47547", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101335, + "TargetID": 47547, + "Directional": true + } + ] + }, + { + "ID": 19392, + "SourceStructureID": 101332, + "TargetStructureID": 380, + "Label": "101332-380 via Conventional from 101333 -> 101334", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101333, + "TargetID": 101334, + "Directional": true + } + ] + }, + { + "ID": 19393, + "SourceStructureID": 101339, + "TargetStructureID": 17533, + "Label": "101339-17533 via Conventional from 101387 -> 101388", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101387, + "TargetID": 101388, + "Directional": true + } + ] + }, + { + "ID": 19394, + "SourceStructureID": 101341, + "TargetStructureID": 485, + "Label": "101341-485 via Conventional from 101342 -> 101340", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101342, + "TargetID": 101340, + "Directional": true + } + ] + }, + { + "ID": 19395, + "SourceStructureID": 101355, + "TargetStructureID": 485, + "Label": "101355-485 via Conventional from 101356 -> 101354", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101356, + "TargetID": 101354, + "Directional": true + } + ] + }, + { + "ID": 19396, + "SourceStructureID": 101360, + "TargetStructureID": 485, + "Label": "101360-485 via Conventional from 101361 -> 101359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101361, + "TargetID": 101359, + "Directional": true + } + ] + }, + { + "ID": 19397, + "SourceStructureID": 101368, + "TargetStructureID": 485, + "Label": "101368-485 via Conventional from 101372 -> 101367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101372, + "TargetID": 101367, + "Directional": true + } + ] + }, + { + "ID": 19398, + "SourceStructureID": 101378, + "TargetStructureID": 485, + "Label": "101378-485 via Conventional from 101379 -> 101377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101379, + "TargetID": 101377, + "Directional": true + } + ] + }, + { + "ID": 19399, + "SourceStructureID": 101384, + "TargetStructureID": 485, + "Label": "101384-485 via Conventional from 101385 -> 101386", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101385, + "TargetID": 101386, + "Directional": true + } + ] + }, + { + "ID": 19400, + "SourceStructureID": 101392, + "TargetStructureID": 485, + "Label": "101392-485 via Conventional from 101393 -> 101391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101393, + "TargetID": 101391, + "Directional": true + } + ] + }, + { + "ID": 19401, + "SourceStructureID": 101396, + "TargetStructureID": 485, + "Label": "101396-485 via Conventional from 101397 -> 101395", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101397, + "TargetID": 101395, + "Directional": true + } + ] + }, + { + "ID": 19402, + "SourceStructureID": 101401, + "TargetStructureID": 11401, + "Label": "101401-11401 via Conventional from 102104 -> 102106", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102104, + "TargetID": 102106, + "Directional": true + } + ] + }, + { + "ID": 19403, + "SourceStructureID": 101402, + "TargetStructureID": 2610, + "Label": "101402-2610 via Conventional from 101403 -> 2833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101403, + "TargetID": 2833, + "Directional": true + } + ] + }, + { + "ID": 19404, + "SourceStructureID": 101402, + "TargetStructureID": 10826, + "Label": "101402-10826 via Conventional from 102074 -> 102076, 102075 -> 102077", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102074, + "TargetID": 102076, + "Directional": true + }, + { + "SourceID": 102075, + "TargetID": 102077, + "Directional": true + } + ] + }, + { + "ID": 19405, + "SourceStructureID": 101428, + "TargetStructureID": 485, + "Label": "101428-485 via Conventional from 101429 -> 101427, 101432 -> 101433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101429, + "TargetID": 101427, + "Directional": true + }, + { + "SourceID": 101432, + "TargetID": 101433, + "Directional": true + } + ] + }, + { + "ID": 19406, + "SourceStructureID": 101439, + "TargetStructureID": 485, + "Label": "101439-485 via Conventional from 101451 -> 101450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101451, + "TargetID": 101450, + "Directional": true + } + ] + }, + { + "ID": 19407, + "SourceStructureID": 101439, + "TargetStructureID": 6997, + "Label": "101439-6997 via Conventional from 101444 -> 101445", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101444, + "TargetID": 101445, + "Directional": true + } + ] + }, + { + "ID": 19408, + "SourceStructureID": 101439, + "TargetStructureID": 9693, + "Label": "101439-9693 via Conventional from 101441 -> 9890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101441, + "TargetID": 9890, + "Directional": true + } + ] + }, + { + "ID": 19409, + "SourceStructureID": 101455, + "TargetStructureID": 485, + "Label": "101455-485 via Conventional from 101456 -> 101454", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101456, + "TargetID": 101454, + "Directional": true + } + ] + }, + { + "ID": 19410, + "SourceStructureID": 101458, + "TargetStructureID": 485, + "Label": "101458-485 via Conventional from 101459 -> 101457", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101459, + "TargetID": 101457, + "Directional": true + } + ] + }, + { + "ID": 19411, + "SourceStructureID": 101461, + "TargetStructureID": 485, + "Label": "101461-485 via Conventional from 101462 -> 101460", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101462, + "TargetID": 101460, + "Directional": true + } + ] + }, + { + "ID": 19412, + "SourceStructureID": 101464, + "TargetStructureID": 485, + "Label": "101464-485 via Conventional from 101465 -> 101463", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101465, + "TargetID": 101463, + "Directional": true + } + ] + }, + { + "ID": 19413, + "SourceStructureID": 101470, + "TargetStructureID": 485, + "Label": "101470-485 via Conventional from 101471 -> 101469", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101471, + "TargetID": 101469, + "Directional": true + } + ] + }, + { + "ID": 19414, + "SourceStructureID": 101489, + "TargetStructureID": 485, + "Label": "101489-485 via Conventional from 101490 -> 101491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101490, + "TargetID": 101491, + "Directional": true + } + ] + }, + { + "ID": 19415, + "SourceStructureID": 101507, + "TargetStructureID": 1724, + "Label": "101507-1724 via Conventional from 101508 -> 20192", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101508, + "TargetID": 20192, + "Directional": true + } + ] + }, + { + "ID": 19416, + "SourceStructureID": 101509, + "TargetStructureID": 1724, + "Label": "101509-1724 via Conventional from 101510 -> 20196", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101510, + "TargetID": 20196, + "Directional": true + } + ] + }, + { + "ID": 19417, + "SourceStructureID": 101513, + "TargetStructureID": 1724, + "Label": "101513-1724 via Conventional from 101514 -> 101515", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101514, + "TargetID": 101515, + "Directional": true + } + ] + }, + { + "ID": 19418, + "SourceStructureID": 101521, + "TargetStructureID": 1724, + "Label": "101521-1724 via Conventional from 101523 -> 20195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101523, + "TargetID": 20195, + "Directional": true + } + ] + }, + { + "ID": 19419, + "SourceStructureID": 101522, + "TargetStructureID": 1724, + "Label": "101522-1724 via Conventional from 101525 -> 20199", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101525, + "TargetID": 20199, + "Directional": true + } + ] + }, + { + "ID": 19420, + "SourceStructureID": 101527, + "TargetStructureID": 304, + "Label": "101527-304 via Conventional from 101534 -> 101535", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101534, + "TargetID": 101535, + "Directional": true + } + ] + }, + { + "ID": 19421, + "SourceStructureID": 101528, + "TargetStructureID": 1724, + "Label": "101528-1724 via Conventional from 101529 -> 101530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101529, + "TargetID": 101530, + "Directional": true + } + ] + }, + { + "ID": 19422, + "SourceStructureID": 101547, + "TargetStructureID": 1724, + "Label": "101547-1724 via Conventional from 101548 -> 47339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101548, + "TargetID": 47339, + "Directional": true + } + ] + }, + { + "ID": 19423, + "SourceStructureID": 101552, + "TargetStructureID": 1724, + "Label": "101552-1724 via Conventional from 101554 -> 1740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101554, + "TargetID": 1740, + "Directional": true + } + ] + }, + { + "ID": 19424, + "SourceStructureID": 101553, + "TargetStructureID": 10897, + "Label": "101553-10897 via Conventional from 101562 -> 101563, 101564 -> 101565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101562, + "TargetID": 101563, + "Directional": true + }, + { + "SourceID": 101564, + "TargetID": 101565, + "Directional": true + } + ] + }, + { + "ID": 19425, + "SourceStructureID": 101567, + "TargetStructureID": 1724, + "Label": "101567-1724 via Conventional from 101568 -> 1743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101568, + "TargetID": 1743, + "Directional": true + } + ] + }, + { + "ID": 19426, + "SourceStructureID": 101570, + "TargetStructureID": 1724, + "Label": "101570-1724 via Conventional from 101571 -> 3064", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101571, + "TargetID": 3064, + "Directional": true + } + ] + }, + { + "ID": 19427, + "SourceStructureID": 101574, + "TargetStructureID": 1724, + "Label": "101574-1724 via Conventional from 101575 -> 101576", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101575, + "TargetID": 101576, + "Directional": true + } + ] + }, + { + "ID": 19428, + "SourceStructureID": 101583, + "TargetStructureID": 1724, + "Label": "101583-1724 via Conventional from 101584 -> 101586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101584, + "TargetID": 101586, + "Directional": true + } + ] + }, + { + "ID": 19429, + "SourceStructureID": 101587, + "TargetStructureID": 1724, + "Label": "101587-1724 via Conventional from 101588 -> 101589", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101588, + "TargetID": 101589, + "Directional": true + } + ] + }, + { + "ID": 19430, + "SourceStructureID": 101590, + "TargetStructureID": 30477, + "Label": "101590-30477 via Conventional from 101591 -> 30482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101591, + "TargetID": 30482, + "Directional": true + } + ] + }, + { + "ID": 19431, + "SourceStructureID": 101596, + "TargetStructureID": 1724, + "Label": "101596-1724 via Conventional from 101597 -> 1754", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101597, + "TargetID": 1754, + "Directional": true + } + ] + }, + { + "ID": 19432, + "SourceStructureID": 101598, + "TargetStructureID": 1724, + "Label": "101598-1724 via Conventional from 101599 -> 1750", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101599, + "TargetID": 1750, + "Directional": true + } + ] + }, + { + "ID": 19433, + "SourceStructureID": 101600, + "TargetStructureID": 1724, + "Label": "101600-1724 via Conventional from 101601 -> 1752", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101601, + "TargetID": 1752, + "Directional": true + } + ] + }, + { + "ID": 19434, + "SourceStructureID": 101602, + "TargetStructureID": 1724, + "Label": "101602-1724 via Conventional from 101603 -> 1756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101603, + "TargetID": 1756, + "Directional": true + } + ] + }, + { + "ID": 19435, + "SourceStructureID": 101604, + "TargetStructureID": 1724, + "Label": "101604-1724 via Conventional from 101605 -> 47935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101605, + "TargetID": 47935, + "Directional": true + } + ] + }, + { + "ID": 19436, + "SourceStructureID": 101606, + "TargetStructureID": 1724, + "Label": "101606-1724 via Conventional from 101607 -> 47936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101607, + "TargetID": 47936, + "Directional": true + } + ] + }, + { + "ID": 19437, + "SourceStructureID": 101613, + "TargetStructureID": 1724, + "Label": "101613-1724 via Conventional from 101614 -> 47344", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101614, + "TargetID": 47344, + "Directional": true + } + ] + }, + { + "ID": 19438, + "SourceStructureID": 101615, + "TargetStructureID": 1724, + "Label": "101615-1724 via Conventional from 101616 -> 47343", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101616, + "TargetID": 47343, + "Directional": true + } + ] + }, + { + "ID": 19439, + "SourceStructureID": 101623, + "TargetStructureID": 1724, + "Label": "101623-1724 via Conventional from 101628 -> 48483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101628, + "TargetID": 48483, + "Directional": true + } + ] + }, + { + "ID": 19440, + "SourceStructureID": 101625, + "TargetStructureID": 13525, + "Label": "101625-13525 via Conventional from 101626 -> 13528", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101626, + "TargetID": 13528, + "Directional": true + } + ] + }, + { + "ID": 19441, + "SourceStructureID": 101632, + "TargetStructureID": 30477, + "Label": "101632-30477 via Conventional from 101633 -> 30483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101633, + "TargetID": 30483, + "Directional": true + } + ] + }, + { + "ID": 19442, + "SourceStructureID": 101640, + "TargetStructureID": 1724, + "Label": "101640-1724 via Conventional from 101641 -> 3987", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101641, + "TargetID": 3987, + "Directional": true + } + ] + }, + { + "ID": 19443, + "SourceStructureID": 101642, + "TargetStructureID": 1724, + "Label": "101642-1724 via Conventional from 101646 -> 47341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101646, + "TargetID": 47341, + "Directional": true + } + ] + }, + { + "ID": 19444, + "SourceStructureID": 101644, + "TargetStructureID": 31305, + "Label": "101644-31305 via Conventional from 101645 -> 101643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101645, + "TargetID": 101643, + "Directional": true + } + ] + }, + { + "ID": 19445, + "SourceStructureID": 101647, + "TargetStructureID": 1724, + "Label": "101647-1724 via Conventional from 101649 -> 3990", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101649, + "TargetID": 3990, + "Directional": true + } + ] + }, + { + "ID": 19446, + "SourceStructureID": 101657, + "TargetStructureID": 1724, + "Label": "101657-1724 via Conventional from 101660 -> 3994", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101660, + "TargetID": 3994, + "Directional": true + } + ] + }, + { + "ID": 19447, + "SourceStructureID": 101661, + "TargetStructureID": 1724, + "Label": "101661-1724 via Conventional from 101663 -> 4000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101663, + "TargetID": 4000, + "Directional": true + } + ] + }, + { + "ID": 19448, + "SourceStructureID": 101662, + "TargetStructureID": 1724, + "Label": "101662-1724 via Conventional from 101665 -> 3998", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101665, + "TargetID": 3998, + "Directional": true + } + ] + }, + { + "ID": 19449, + "SourceStructureID": 101668, + "TargetStructureID": 1724, + "Label": "101668-1724 via Conventional from 101671 -> 4002", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101671, + "TargetID": 4002, + "Directional": true + } + ] + }, + { + "ID": 19450, + "SourceStructureID": 101672, + "TargetStructureID": 1724, + "Label": "101672-1724 via Conventional from 101674 -> 4006", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101674, + "TargetID": 4006, + "Directional": true + } + ] + }, + { + "ID": 19451, + "SourceStructureID": 101677, + "TargetStructureID": 1724, + "Label": "101677-1724 via Conventional from 101678 -> 101679", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101678, + "TargetID": 101679, + "Directional": true + } + ] + }, + { + "ID": 19452, + "SourceStructureID": 101681, + "TargetStructureID": 1724, + "Label": "101681-1724 via Conventional from 101682 -> 4010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101682, + "TargetID": 4010, + "Directional": true + } + ] + }, + { + "ID": 19453, + "SourceStructureID": 101692, + "TargetStructureID": 1724, + "Label": "101692-1724 via Conventional from 101725 -> 47348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101725, + "TargetID": 47348, + "Directional": true + } + ] + }, + { + "ID": 19454, + "SourceStructureID": 101693, + "TargetStructureID": 1724, + "Label": "101693-1724 via Conventional from 101694 -> 23719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101694, + "TargetID": 23719, + "Directional": true + } + ] + }, + { + "ID": 19455, + "SourceStructureID": 101696, + "TargetStructureID": 1724, + "Label": "101696-1724 via Conventional from 101894 -> 101895", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101894, + "TargetID": 101895, + "Directional": true + } + ] + }, + { + "ID": 19456, + "SourceStructureID": 101697, + "TargetStructureID": 1724, + "Label": "101697-1724 via Conventional from 101838 -> 23720", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101838, + "TargetID": 23720, + "Directional": true + } + ] + }, + { + "ID": 19457, + "SourceStructureID": 101707, + "TargetStructureID": 18282, + "Label": "101707-18282 via Conventional from 101709 -> 18304", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101709, + "TargetID": 18304, + "Directional": true + } + ] + }, + { + "ID": 19458, + "SourceStructureID": 101711, + "TargetStructureID": 485, + "Label": "101711-485 via Conventional from 101712 -> 101710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101712, + "TargetID": 101710, + "Directional": true + } + ] + }, + { + "ID": 19459, + "SourceStructureID": 101744, + "TargetStructureID": 485, + "Label": "101744-485 via Conventional from 101745 -> 47557", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101745, + "TargetID": 47557, + "Directional": true + } + ] + }, + { + "ID": 19460, + "SourceStructureID": 101747, + "TargetStructureID": 485, + "Label": "101747-485 via Conventional from 101748 -> 47556", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101748, + "TargetID": 47556, + "Directional": true + } + ] + }, + { + "ID": 19461, + "SourceStructureID": 101757, + "TargetStructureID": 1724, + "Label": "101757-1724 via Conventional from 101760 -> 101759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101760, + "TargetID": 101759, + "Directional": true + } + ] + }, + { + "ID": 19462, + "SourceStructureID": 101765, + "TargetStructureID": 485, + "Label": "101765-485 via Conventional from 101766 -> 101764", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101766, + "TargetID": 101764, + "Directional": true + } + ] + }, + { + "ID": 19463, + "SourceStructureID": 101785, + "TargetStructureID": 485, + "Label": "101785-485 via Conventional from 101786 -> 101784, 101810 -> 47565", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101786, + "TargetID": 101784, + "Directional": true + }, + { + "SourceID": 101810, + "TargetID": 47565, + "Directional": true + } + ] + }, + { + "ID": 19464, + "SourceStructureID": 101789, + "TargetStructureID": 1724, + "Label": "101789-1724 via Conventional from 101792 -> 101794", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101792, + "TargetID": 101794, + "Directional": true + } + ] + }, + { + "ID": 19465, + "SourceStructureID": 101790, + "TargetStructureID": 485, + "Label": "101790-485 via Conventional from 101791 -> 101783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101791, + "TargetID": 101783, + "Directional": true + } + ] + }, + { + "ID": 19466, + "SourceStructureID": 101802, + "TargetStructureID": 1724, + "Label": "101802-1724 via Conventional from 101803 -> 4098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101803, + "TargetID": 4098, + "Directional": true + } + ] + }, + { + "ID": 19467, + "SourceStructureID": 101808, + "TargetStructureID": 1724, + "Label": "101808-1724 via Conventional from 101811 -> 101812", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101811, + "TargetID": 101812, + "Directional": true + } + ] + }, + { + "ID": 19468, + "SourceStructureID": 101815, + "TargetStructureID": 485, + "Label": "101815-485 via Conventional from 101816 -> 47566, 101911 -> 101912", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101816, + "TargetID": 47566, + "Directional": true + }, + { + "SourceID": 101911, + "TargetID": 101912, + "Directional": true + } + ] + }, + { + "ID": 19469, + "SourceStructureID": 101818, + "TargetStructureID": 1724, + "Label": "101818-1724 via Conventional from 101822 -> 101823", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101822, + "TargetID": 101823, + "Directional": true + } + ] + }, + { + "ID": 19470, + "SourceStructureID": 101819, + "TargetStructureID": 485, + "Label": "101819-485 via Conventional from 101820 -> 101813", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101820, + "TargetID": 101813, + "Directional": true + } + ] + }, + { + "ID": 19471, + "SourceStructureID": 101826, + "TargetStructureID": 1724, + "Label": "101826-1724 via Conventional from 101827 -> 47349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101827, + "TargetID": 47349, + "Directional": true + } + ] + }, + { + "ID": 19472, + "SourceStructureID": 101842, + "TargetStructureID": 1724, + "Label": "101842-1724 via Conventional from 101847 -> 101848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101847, + "TargetID": 101848, + "Directional": true + } + ] + }, + { + "ID": 19473, + "SourceStructureID": 101849, + "TargetStructureID": 1724, + "Label": "101849-1724 via Conventional from 101851 -> 101852", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101851, + "TargetID": 101852, + "Directional": true + } + ] + }, + { + "ID": 19474, + "SourceStructureID": 101850, + "TargetStructureID": 485, + "Label": "101850-485 via Conventional from 101858 -> 23147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101858, + "TargetID": 23147, + "Directional": true + } + ] + }, + { + "ID": 19475, + "SourceStructureID": 101855, + "TargetStructureID": 1724, + "Label": "101855-1724 via Conventional from 101857 -> 47374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101857, + "TargetID": 47374, + "Directional": true + } + ] + }, + { + "ID": 19476, + "SourceStructureID": 101873, + "TargetStructureID": 485, + "Label": "101873-485 via Conventional from 101874 -> 101871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101874, + "TargetID": 101871, + "Directional": true + } + ] + }, + { + "ID": 19477, + "SourceStructureID": 101876, + "TargetStructureID": 485, + "Label": "101876-485 via Conventional from 101877 -> 101878", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101877, + "TargetID": 101878, + "Directional": true + } + ] + }, + { + "ID": 19478, + "SourceStructureID": 101879, + "TargetStructureID": 1724, + "Label": "101879-1724 via Conventional from 101882 -> 47373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101882, + "TargetID": 47373, + "Directional": true + } + ] + }, + { + "ID": 19479, + "SourceStructureID": 101888, + "TargetStructureID": 1724, + "Label": "101888-1724 via Conventional from 101889 -> 32231, 101901 -> 101902", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101889, + "TargetID": 32231, + "Directional": true + }, + { + "SourceID": 101901, + "TargetID": 101902, + "Directional": true + } + ] + }, + { + "ID": 19480, + "SourceStructureID": 101913, + "TargetStructureID": 485, + "Label": "101913-485 via Conventional from 101914 -> 101915", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101914, + "TargetID": 101915, + "Directional": true + } + ] + }, + { + "ID": 19481, + "SourceStructureID": 101926, + "TargetStructureID": 485, + "Label": "101926-485 via Conventional from 101927 -> 101925", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101927, + "TargetID": 101925, + "Directional": true + } + ] + }, + { + "ID": 19482, + "SourceStructureID": 101935, + "TargetStructureID": 13525, + "Label": "101935-13525 via Conventional from 101943 -> 13530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101943, + "TargetID": 13530, + "Directional": true + } + ] + }, + { + "ID": 19483, + "SourceStructureID": 101936, + "TargetStructureID": 485, + "Label": "101936-485 via Conventional from 101937 -> 101939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101937, + "TargetID": 101939, + "Directional": true + } + ] + }, + { + "ID": 19484, + "SourceStructureID": 101938, + "TargetStructureID": 1724, + "Label": "101938-1724 via Conventional from 101949 -> 47352", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101949, + "TargetID": 47352, + "Directional": true + } + ] + }, + { + "ID": 19485, + "SourceStructureID": 101941, + "TargetStructureID": 485, + "Label": "101941-485 via Conventional from 101942 -> 101940", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101942, + "TargetID": 101940, + "Directional": true + } + ] + }, + { + "ID": 19486, + "SourceStructureID": 101946, + "TargetStructureID": 1724, + "Label": "101946-1724 via Conventional from 101947 -> 101948", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101947, + "TargetID": 101948, + "Directional": true + } + ] + }, + { + "ID": 19487, + "SourceStructureID": 101952, + "TargetStructureID": 485, + "Label": "101952-485 via Conventional from 101956 -> 101950", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101956, + "TargetID": 101950, + "Directional": true + } + ] + }, + { + "ID": 19488, + "SourceStructureID": 101958, + "TargetStructureID": 485, + "Label": "101958-485 via Conventional from 101959 -> 101957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101959, + "TargetID": 101957, + "Directional": true + } + ] + }, + { + "ID": 19489, + "SourceStructureID": 101961, + "TargetStructureID": 485, + "Label": "101961-485 via Conventional from 101962 -> 101960", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101962, + "TargetID": 101960, + "Directional": true + } + ] + }, + { + "ID": 19490, + "SourceStructureID": 101969, + "TargetStructureID": 1724, + "Label": "101969-1724 via Conventional from 101970 -> 101971", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101970, + "TargetID": 101971, + "Directional": true + } + ] + }, + { + "ID": 19491, + "SourceStructureID": 101978, + "TargetStructureID": 1724, + "Label": "101978-1724 via Conventional from 101979 -> 4114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101979, + "TargetID": 4114, + "Directional": true + } + ] + }, + { + "ID": 19492, + "SourceStructureID": 101982, + "TargetStructureID": 1724, + "Label": "101982-1724 via Conventional from 101988 -> 4108", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101988, + "TargetID": 4108, + "Directional": true + } + ] + }, + { + "ID": 19493, + "SourceStructureID": 101985, + "TargetStructureID": 485, + "Label": "101985-485 via Conventional from 101990 -> 101984", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101990, + "TargetID": 101984, + "Directional": true + } + ] + }, + { + "ID": 19494, + "SourceStructureID": 101989, + "TargetStructureID": 13525, + "Label": "101989-13525 via Conventional from 101991 -> 85365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101991, + "TargetID": 85365, + "Directional": true + } + ] + }, + { + "ID": 19495, + "SourceStructureID": 101993, + "TargetStructureID": 1724, + "Label": "101993-1724 via Conventional from 101994 -> 101995", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 101994, + "TargetID": 101995, + "Directional": true + } + ] + }, + { + "ID": 19496, + "SourceStructureID": 102011, + "TargetStructureID": 1724, + "Label": "102011-1724 via Conventional from 102012 -> 4118", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102012, + "TargetID": 4118, + "Directional": true + } + ] + }, + { + "ID": 19497, + "SourceStructureID": 102014, + "TargetStructureID": 485, + "Label": "102014-485 via Conventional from 102018 -> 102017", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102018, + "TargetID": 102017, + "Directional": true + } + ] + }, + { + "ID": 19498, + "SourceStructureID": 102020, + "TargetStructureID": 485, + "Label": "102020-485 via Conventional from 102021 -> 49910", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102021, + "TargetID": 49910, + "Directional": true + } + ] + }, + { + "ID": 19499, + "SourceStructureID": 102036, + "TargetStructureID": 1724, + "Label": "102036-1724 via Conventional from 102489 -> 47362, 102494 -> 30432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102489, + "TargetID": 47362, + "Directional": true + }, + { + "SourceID": 102494, + "TargetID": 30432, + "Directional": true + } + ] + }, + { + "ID": 19500, + "SourceStructureID": 102039, + "TargetStructureID": 483, + "Label": "102039-483 via Conventional from 102040 -> 6710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102040, + "TargetID": 6710, + "Directional": true + } + ] + }, + { + "ID": 19501, + "SourceStructureID": 102057, + "TargetStructureID": 483, + "Label": "102057-483 via Conventional from 102058 -> 6818", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102058, + "TargetID": 6818, + "Directional": true + } + ] + }, + { + "ID": 19502, + "SourceStructureID": 102065, + "TargetStructureID": 483, + "Label": "102065-483 via Conventional from 102066 -> 6823", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102066, + "TargetID": 6823, + "Directional": true + } + ] + }, + { + "ID": 19503, + "SourceStructureID": 102067, + "TargetStructureID": 483, + "Label": "102067-483 via Conventional from 102068 -> 6827", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102068, + "TargetID": 6827, + "Directional": true + } + ] + }, + { + "ID": 19504, + "SourceStructureID": 102092, + "TargetStructureID": 483, + "Label": "102092-483 via Conventional from 102093 -> 6829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102093, + "TargetID": 6829, + "Directional": true + } + ] + }, + { + "ID": 19505, + "SourceStructureID": 102099, + "TargetStructureID": 483, + "Label": "102099-483 via Conventional from 102100 -> 6844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102100, + "TargetID": 6844, + "Directional": true + } + ] + }, + { + "ID": 19506, + "SourceStructureID": 102101, + "TargetStructureID": 483, + "Label": "102101-483 via Conventional from 102105 -> 6843", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102105, + "TargetID": 6843, + "Directional": true + } + ] + }, + { + "ID": 19507, + "SourceStructureID": 102108, + "TargetStructureID": 483, + "Label": "102108-483 via Conventional from 102109 -> 6846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102109, + "TargetID": 6846, + "Directional": true + } + ] + }, + { + "ID": 19508, + "SourceStructureID": 102110, + "TargetStructureID": 483, + "Label": "102110-483 via Conventional from 102111 -> 6845", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102111, + "TargetID": 6845, + "Directional": true + } + ] + }, + { + "ID": 19509, + "SourceStructureID": 102116, + "TargetStructureID": 11043, + "Label": "102116-11043 via Conventional from 102144 -> 33709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102144, + "TargetID": 33709, + "Directional": true + } + ] + }, + { + "ID": 19510, + "SourceStructureID": 102118, + "TargetStructureID": 483, + "Label": "102118-483 via Conventional from 102121 -> 102117", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102121, + "TargetID": 102117, + "Directional": true + } + ] + }, + { + "ID": 19511, + "SourceStructureID": 102125, + "TargetStructureID": 483, + "Label": "102125-483 via Conventional from 102126 -> 102124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102126, + "TargetID": 102124, + "Directional": true + } + ] + }, + { + "ID": 19512, + "SourceStructureID": 102127, + "TargetStructureID": 483, + "Label": "102127-483 via Conventional from 102128 -> 58614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102128, + "TargetID": 58614, + "Directional": true + } + ] + }, + { + "ID": 19513, + "SourceStructureID": 102129, + "TargetStructureID": 483, + "Label": "102129-483 via Conventional from 102131 -> 102132", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102131, + "TargetID": 102132, + "Directional": true + } + ] + }, + { + "ID": 19514, + "SourceStructureID": 102140, + "TargetStructureID": 483, + "Label": "102140-483 via Conventional from 102141 -> 102139", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102141, + "TargetID": 102139, + "Directional": true + } + ] + }, + { + "ID": 19515, + "SourceStructureID": 102143, + "TargetStructureID": 483, + "Label": "102143-483 via Conventional from 102145 -> 102142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102145, + "TargetID": 102142, + "Directional": true + } + ] + }, + { + "ID": 19516, + "SourceStructureID": 102149, + "TargetStructureID": 13525, + "Label": "102149-13525 via Conventional from 102152 -> 85364", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102152, + "TargetID": 85364, + "Directional": true + } + ] + }, + { + "ID": 19517, + "SourceStructureID": 102150, + "TargetStructureID": 483, + "Label": "102150-483 via Conventional from 102161 -> 6831", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102161, + "TargetID": 6831, + "Directional": true + } + ] + }, + { + "ID": 19518, + "SourceStructureID": 102162, + "TargetStructureID": 483, + "Label": "102162-483 via Conventional from 102163 -> 6833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102163, + "TargetID": 6833, + "Directional": true + } + ] + }, + { + "ID": 19519, + "SourceStructureID": 102164, + "TargetStructureID": 483, + "Label": "102164-483 via Conventional from 102167 -> 6834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102167, + "TargetID": 6834, + "Directional": true + } + ] + }, + { + "ID": 19520, + "SourceStructureID": 102168, + "TargetStructureID": 13525, + "Label": "102168-13525 via Conventional from 102170 -> 84282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102170, + "TargetID": 84282, + "Directional": true + } + ] + }, + { + "ID": 19521, + "SourceStructureID": 102171, + "TargetStructureID": 13525, + "Label": "102171-13525 via Conventional from 102172 -> 95780", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102172, + "TargetID": 95780, + "Directional": true + } + ] + }, + { + "ID": 19522, + "SourceStructureID": 102175, + "TargetStructureID": 13525, + "Label": "102175-13525 via Conventional from 102176 -> 95791", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102176, + "TargetID": 95791, + "Directional": true + } + ] + }, + { + "ID": 19523, + "SourceStructureID": 102179, + "TargetStructureID": 483, + "Label": "102179-483 via Conventional from 102181 -> 6840", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102181, + "TargetID": 6840, + "Directional": true + } + ] + }, + { + "ID": 19524, + "SourceStructureID": 102191, + "TargetStructureID": 483, + "Label": "102191-483 via Conventional from 102192 -> 26798", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102192, + "TargetID": 26798, + "Directional": true + } + ] + }, + { + "ID": 19525, + "SourceStructureID": 102196, + "TargetStructureID": 483, + "Label": "102196-483 via Conventional from 102200 -> 102201", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102200, + "TargetID": 102201, + "Directional": true + } + ] + }, + { + "ID": 19526, + "SourceStructureID": 102202, + "TargetStructureID": 483, + "Label": "102202-483 via Conventional from 102204 -> 26791", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102204, + "TargetID": 26791, + "Directional": true + } + ] + }, + { + "ID": 19527, + "SourceStructureID": 102206, + "TargetStructureID": 483, + "Label": "102206-483 via Conventional from 102207 -> 102205", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102207, + "TargetID": 102205, + "Directional": true + } + ] + }, + { + "ID": 19528, + "SourceStructureID": 102209, + "TargetStructureID": 483, + "Label": "102209-483 via Conventional from 102210 -> 102208", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102210, + "TargetID": 102208, + "Directional": true + } + ] + }, + { + "ID": 19529, + "SourceStructureID": 102218, + "TargetStructureID": 483, + "Label": "102218-483 via Conventional from 102220 -> 26799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102220, + "TargetID": 26799, + "Directional": true + } + ] + }, + { + "ID": 19530, + "SourceStructureID": 102222, + "TargetStructureID": 483, + "Label": "102222-483 via Conventional from 102223 -> 102221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102223, + "TargetID": 102221, + "Directional": true + } + ] + }, + { + "ID": 19531, + "SourceStructureID": 102224, + "TargetStructureID": 483, + "Label": "102224-483 via Conventional from 102225 -> 26792", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102225, + "TargetID": 26792, + "Directional": true + } + ] + }, + { + "ID": 19532, + "SourceStructureID": 102230, + "TargetStructureID": 483, + "Label": "102230-483 via Conventional from 102231 -> 26789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102231, + "TargetID": 26789, + "Directional": true + } + ] + }, + { + "ID": 19533, + "SourceStructureID": 102235, + "TargetStructureID": 483, + "Label": "102235-483 via Conventional from 102236 -> 26788", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102236, + "TargetID": 26788, + "Directional": true + } + ] + }, + { + "ID": 19534, + "SourceStructureID": 102250, + "TargetStructureID": 483, + "Label": "102250-483 via Conventional from 102251 -> 102246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102251, + "TargetID": 102246, + "Directional": true + } + ] + }, + { + "ID": 19535, + "SourceStructureID": 102254, + "TargetStructureID": 483, + "Label": "102254-483 via Conventional from 102255 -> 26794", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102255, + "TargetID": 26794, + "Directional": true + } + ] + }, + { + "ID": 19536, + "SourceStructureID": 102272, + "TargetStructureID": 483, + "Label": "102272-483 via Conventional from 102273 -> 26805", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102273, + "TargetID": 26805, + "Directional": true + } + ] + }, + { + "ID": 19537, + "SourceStructureID": 102274, + "TargetStructureID": 483, + "Label": "102274-483 via Conventional from 102275 -> 26804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102275, + "TargetID": 26804, + "Directional": true + } + ] + }, + { + "ID": 19538, + "SourceStructureID": 102276, + "TargetStructureID": 483, + "Label": "102276-483 via Conventional from 102277 -> 26808", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102277, + "TargetID": 26808, + "Directional": true + } + ] + }, + { + "ID": 19539, + "SourceStructureID": 102278, + "TargetStructureID": 483, + "Label": "102278-483 via Conventional from 102284 -> 26800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102284, + "TargetID": 26800, + "Directional": true + } + ] + }, + { + "ID": 19540, + "SourceStructureID": 102282, + "TargetStructureID": 483, + "Label": "102282-483 via Conventional from 102292 -> 26809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102292, + "TargetID": 26809, + "Directional": true + } + ] + }, + { + "ID": 19541, + "SourceStructureID": 102286, + "TargetStructureID": 483, + "Label": "102286-483 via Conventional from 102287 -> 102285", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102287, + "TargetID": 102285, + "Directional": true + } + ] + }, + { + "ID": 19542, + "SourceStructureID": 102295, + "TargetStructureID": 483, + "Label": "102295-483 via Conventional from 102296 -> 102297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102296, + "TargetID": 102297, + "Directional": true + } + ] + }, + { + "ID": 19543, + "SourceStructureID": 102310, + "TargetStructureID": 483, + "Label": "102310-483 via Conventional from 102311 -> 26806", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102311, + "TargetID": 26806, + "Directional": true + } + ] + }, + { + "ID": 19544, + "SourceStructureID": 102314, + "TargetStructureID": 483, + "Label": "102314-483 via Conventional from 102315 -> 26814", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102315, + "TargetID": 26814, + "Directional": true + } + ] + }, + { + "ID": 19545, + "SourceStructureID": 102316, + "TargetStructureID": 483, + "Label": "102316-483 via Conventional from 102317 -> 26813", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102317, + "TargetID": 26813, + "Directional": true + } + ] + }, + { + "ID": 19546, + "SourceStructureID": 102321, + "TargetStructureID": 483, + "Label": "102321-483 via Conventional from 102322 -> 26816", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102322, + "TargetID": 26816, + "Directional": true + } + ] + }, + { + "ID": 19547, + "SourceStructureID": 102341, + "TargetStructureID": 483, + "Label": "102341-483 via Conventional from 102342 -> 6841", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102342, + "TargetID": 6841, + "Directional": true + } + ] + }, + { + "ID": 19548, + "SourceStructureID": 102354, + "TargetStructureID": 483, + "Label": "102354-483 via Conventional from 102355 -> 102356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102355, + "TargetID": 102356, + "Directional": true + } + ] + }, + { + "ID": 19549, + "SourceStructureID": 102361, + "TargetStructureID": 13525, + "Label": "102361-13525 via Conventional from 102367 -> 95924", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102367, + "TargetID": 95924, + "Directional": true + } + ] + }, + { + "ID": 19550, + "SourceStructureID": 102362, + "TargetStructureID": 483, + "Label": "102362-483 via Conventional from 102363 -> 26834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102363, + "TargetID": 26834, + "Directional": true + } + ] + }, + { + "ID": 19551, + "SourceStructureID": 102381, + "TargetStructureID": 483, + "Label": "102381-483 via Conventional from 102394 -> 20342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102394, + "TargetID": 20342, + "Directional": true + } + ] + }, + { + "ID": 19552, + "SourceStructureID": 102391, + "TargetStructureID": 102387, + "Label": "102391-102387 via Conventional from 102393 -> 102390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102393, + "TargetID": 102390, + "Directional": true + } + ] + }, + { + "ID": 19553, + "SourceStructureID": 102395, + "TargetStructureID": 483, + "Label": "102395-483 via Conventional from 102396 -> 20343", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102396, + "TargetID": 20343, + "Directional": true + } + ] + }, + { + "ID": 19554, + "SourceStructureID": 102397, + "TargetStructureID": 483, + "Label": "102397-483 via Conventional from 102398 -> 20344", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102398, + "TargetID": 20344, + "Directional": true + } + ] + }, + { + "ID": 19555, + "SourceStructureID": 102399, + "TargetStructureID": 419, + "Label": "102399-419 via Conventional from 102400 -> 10164", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102400, + "TargetID": 10164, + "Directional": true + } + ] + }, + { + "ID": 19556, + "SourceStructureID": 102405, + "TargetStructureID": 483, + "Label": "102405-483 via Conventional from 102406 -> 20348", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102406, + "TargetID": 20348, + "Directional": true + } + ] + }, + { + "ID": 19557, + "SourceStructureID": 102414, + "TargetStructureID": 483, + "Label": "102414-483 via Conventional from 102415 -> 20346", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102415, + "TargetID": 20346, + "Directional": true + } + ] + }, + { + "ID": 19558, + "SourceStructureID": 102416, + "TargetStructureID": 483, + "Label": "102416-483 via Conventional from 102419 -> 26838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102419, + "TargetID": 26838, + "Directional": true + } + ] + }, + { + "ID": 19559, + "SourceStructureID": 102417, + "TargetStructureID": 13525, + "Label": "102417-13525 via Conventional from 102418 -> 95923", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102418, + "TargetID": 95923, + "Directional": true + } + ] + }, + { + "ID": 19560, + "SourceStructureID": 102421, + "TargetStructureID": 483, + "Label": "102421-483 via Conventional from 102422 -> 102420", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102422, + "TargetID": 102420, + "Directional": true + } + ] + }, + { + "ID": 19561, + "SourceStructureID": 102425, + "TargetStructureID": 483, + "Label": "102425-483 via Conventional from 102427 -> 102428", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102427, + "TargetID": 102428, + "Directional": true + } + ] + }, + { + "ID": 19562, + "SourceStructureID": 102425, + "TargetStructureID": 102545, + "Label": "102425-102545 via Conventional from 102426 -> 102547", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102426, + "TargetID": 102547, + "Directional": true + } + ] + }, + { + "ID": 19563, + "SourceStructureID": 102429, + "TargetStructureID": 483, + "Label": "102429-483 via Conventional from 102430 -> 20347", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102430, + "TargetID": 20347, + "Directional": true + } + ] + }, + { + "ID": 19564, + "SourceStructureID": 102431, + "TargetStructureID": 483, + "Label": "102431-483 via Conventional from 102433 -> 20391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102433, + "TargetID": 20391, + "Directional": true + } + ] + }, + { + "ID": 19565, + "SourceStructureID": 102437, + "TargetStructureID": 483, + "Label": "102437-483 via Conventional from 102438 -> 102439", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102438, + "TargetID": 102439, + "Directional": true + } + ] + }, + { + "ID": 19566, + "SourceStructureID": 102451, + "TargetStructureID": 483, + "Label": "102451-483 via Conventional from 102452 -> 51182", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102452, + "TargetID": 51182, + "Directional": true + } + ] + }, + { + "ID": 19567, + "SourceStructureID": 102456, + "TargetStructureID": 483, + "Label": "102456-483 via Conventional from 102458 -> 102457", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102458, + "TargetID": 102457, + "Directional": true + } + ] + }, + { + "ID": 19568, + "SourceStructureID": 102461, + "TargetStructureID": 483, + "Label": "102461-483 via Conventional from 102462 -> 20351", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102462, + "TargetID": 20351, + "Directional": true + } + ] + }, + { + "ID": 19569, + "SourceStructureID": 102463, + "TargetStructureID": 483, + "Label": "102463-483 via Conventional from 102465 -> 26781, 102465 -> 26839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102465, + "TargetID": 26781, + "Directional": true + }, + { + "SourceID": 102465, + "TargetID": 26839, + "Directional": true + } + ] + }, + { + "ID": 19570, + "SourceStructureID": 102467, + "TargetStructureID": 1724, + "Label": "102467-1724 via Conventional from 102468 -> 47360", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102468, + "TargetID": 47360, + "Directional": true + } + ] + }, + { + "ID": 19571, + "SourceStructureID": 102476, + "TargetStructureID": 1724, + "Label": "102476-1724 via Conventional from 102486 -> 47363, 102490 -> 30431", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102486, + "TargetID": 47363, + "Directional": true + }, + { + "SourceID": 102490, + "TargetID": 30431, + "Directional": true + } + ] + }, + { + "ID": 19572, + "SourceStructureID": 102477, + "TargetStructureID": 483, + "Label": "102477-483 via Conventional from 102478 -> 20354", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102478, + "TargetID": 20354, + "Directional": true + } + ] + }, + { + "ID": 19573, + "SourceStructureID": 102479, + "TargetStructureID": 483, + "Label": "102479-483 via Conventional from 102480 -> 26840", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102480, + "TargetID": 26840, + "Directional": true + } + ] + }, + { + "ID": 19574, + "SourceStructureID": 102482, + "TargetStructureID": 483, + "Label": "102482-483 via Conventional from 102483 -> 20362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102483, + "TargetID": 20362, + "Directional": true + } + ] + }, + { + "ID": 19575, + "SourceStructureID": 102498, + "TargetStructureID": 1724, + "Label": "102498-1724 via Conventional from 102506 -> 102507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102506, + "TargetID": 102507, + "Directional": true + } + ] + }, + { + "ID": 19576, + "SourceStructureID": 102504, + "TargetStructureID": 483, + "Label": "102504-483 via Conventional from 102505 -> 20353", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102505, + "TargetID": 20353, + "Directional": true + } + ] + }, + { + "ID": 19577, + "SourceStructureID": 102513, + "TargetStructureID": 483, + "Label": "102513-483 via Conventional from 102519 -> 20356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102519, + "TargetID": 20356, + "Directional": true + } + ] + }, + { + "ID": 19578, + "SourceStructureID": 102534, + "TargetStructureID": 483, + "Label": "102534-483 via Conventional from 102535 -> 20359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102535, + "TargetID": 20359, + "Directional": true + } + ] + }, + { + "ID": 19579, + "SourceStructureID": 102543, + "TargetStructureID": 483, + "Label": "102543-483 via Conventional from 102544 -> 102542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102544, + "TargetID": 102542, + "Directional": true + } + ] + }, + { + "ID": 19580, + "SourceStructureID": 102552, + "TargetStructureID": 483, + "Label": "102552-483 via Conventional from 102553 -> 102551", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102553, + "TargetID": 102551, + "Directional": true + } + ] + }, + { + "ID": 19581, + "SourceStructureID": 102555, + "TargetStructureID": 8575, + "Label": "102555-8575 via Conventional from 102559 -> 61560", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102559, + "TargetID": 61560, + "Directional": true + } + ] + }, + { + "ID": 19582, + "SourceStructureID": 102577, + "TargetStructureID": 483, + "Label": "102577-483 via Conventional from 102578 -> 15167", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102578, + "TargetID": 15167, + "Directional": true + } + ] + }, + { + "ID": 19583, + "SourceStructureID": 102577, + "TargetStructureID": 5107, + "Label": "102577-5107 via Conventional from 102579 -> 23033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102579, + "TargetID": 23033, + "Directional": true + } + ] + }, + { + "ID": 19584, + "SourceStructureID": 102586, + "TargetStructureID": 483, + "Label": "102586-483 via Conventional from 102587 -> 6716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102587, + "TargetID": 6716, + "Directional": true + } + ] + }, + { + "ID": 19585, + "SourceStructureID": 102588, + "TargetStructureID": 483, + "Label": "102588-483 via Conventional from 102589 -> 6718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102589, + "TargetID": 6718, + "Directional": true + } + ] + }, + { + "ID": 19586, + "SourceStructureID": 102599, + "TargetStructureID": 517, + "Label": "102599-517 via Conventional from 102608 -> 102609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102608, + "TargetID": 102609, + "Directional": true + } + ] + }, + { + "ID": 19587, + "SourceStructureID": 102600, + "TargetStructureID": 483, + "Label": "102600-483 via Conventional from 102601 -> 6722", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102601, + "TargetID": 6722, + "Directional": true + } + ] + }, + { + "ID": 19588, + "SourceStructureID": 102603, + "TargetStructureID": 483, + "Label": "102603-483 via Conventional from 102605 -> 6723", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102605, + "TargetID": 6723, + "Directional": true + } + ] + }, + { + "ID": 19589, + "SourceStructureID": 102635, + "TargetStructureID": 483, + "Label": "102635-483 via Conventional from 102637 -> 102633", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102637, + "TargetID": 102633, + "Directional": true + } + ] + }, + { + "ID": 19590, + "SourceStructureID": 102639, + "TargetStructureID": 483, + "Label": "102639-483 via Conventional from 102640 -> 102638", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102640, + "TargetID": 102638, + "Directional": true + } + ] + }, + { + "ID": 19591, + "SourceStructureID": 102655, + "TargetStructureID": 483, + "Label": "102655-483 via Conventional from 102656 -> 6746", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102656, + "TargetID": 6746, + "Directional": true + } + ] + }, + { + "ID": 19592, + "SourceStructureID": 102658, + "TargetStructureID": 483, + "Label": "102658-483 via Conventional from 102660 -> 6747", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102660, + "TargetID": 6747, + "Directional": true + } + ] + }, + { + "ID": 19593, + "SourceStructureID": 102671, + "TargetStructureID": 5650, + "Label": "102671-5650 via Conventional from 102678 -> 102679, 102681 -> 102682", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102678, + "TargetID": 102679, + "Directional": true + }, + { + "SourceID": 102681, + "TargetID": 102682, + "Directional": true + } + ] + }, + { + "ID": 19594, + "SourceStructureID": 102683, + "TargetStructureID": 5650, + "Label": "102683-5650 via Conventional from 102684 -> 102685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102684, + "TargetID": 102685, + "Directional": true + } + ] + }, + { + "ID": 19595, + "SourceStructureID": 102687, + "TargetStructureID": 483, + "Label": "102687-483 via Conventional from 102688 -> 6758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102688, + "TargetID": 6758, + "Directional": true + } + ] + }, + { + "ID": 19596, + "SourceStructureID": 102703, + "TargetStructureID": 5650, + "Label": "102703-5650 via Conventional from 102707 -> 102708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102707, + "TargetID": 102708, + "Directional": true + } + ] + }, + { + "ID": 19597, + "SourceStructureID": 102704, + "TargetStructureID": 483, + "Label": "102704-483 via Conventional from 102705 -> 26785", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102705, + "TargetID": 26785, + "Directional": true + } + ] + }, + { + "ID": 19598, + "SourceStructureID": 102709, + "TargetStructureID": 483, + "Label": "102709-483 via Conventional from 102713 -> 6752", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102713, + "TargetID": 6752, + "Directional": true + } + ] + }, + { + "ID": 19599, + "SourceStructureID": 102710, + "TargetStructureID": 5650, + "Label": "102710-5650 via Conventional from 102714 -> 102715, 102716 -> 102717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102714, + "TargetID": 102715, + "Directional": true + }, + { + "SourceID": 102716, + "TargetID": 102717, + "Directional": true + } + ] + }, + { + "ID": 19600, + "SourceStructureID": 102724, + "TargetStructureID": 483, + "Label": "102724-483 via Conventional from 102725 -> 6749", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102725, + "TargetID": 6749, + "Directional": true + } + ] + }, + { + "ID": 19601, + "SourceStructureID": 102727, + "TargetStructureID": 5650, + "Label": "102727-5650 via Conventional from 102728 -> 102729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102728, + "TargetID": 102729, + "Directional": true + } + ] + }, + { + "ID": 19602, + "SourceStructureID": 102730, + "TargetStructureID": 5650, + "Label": "102730-5650 via Conventional from 102738 -> 102740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102738, + "TargetID": 102740, + "Directional": true + } + ] + }, + { + "ID": 19603, + "SourceStructureID": 102736, + "TargetStructureID": 483, + "Label": "102736-483 via Conventional from 102737 -> 6756", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102737, + "TargetID": 6756, + "Directional": true + } + ] + }, + { + "ID": 19604, + "SourceStructureID": 102741, + "TargetStructureID": 483, + "Label": "102741-483 via Conventional from 102742 -> 6759", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102742, + "TargetID": 6759, + "Directional": true + } + ] + }, + { + "ID": 19605, + "SourceStructureID": 102744, + "TargetStructureID": 483, + "Label": "102744-483 via Conventional from 102754 -> 6760", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102754, + "TargetID": 6760, + "Directional": true + } + ] + }, + { + "ID": 19606, + "SourceStructureID": 102748, + "TargetStructureID": 102748, + "Label": "102748-102748 via BC Conventional Synapse from 102770 -> 102772", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 102770, + "TargetID": 102772, + "Directional": true + } + ] + }, + { + "ID": 19607, + "SourceStructureID": 102756, + "TargetStructureID": 483, + "Label": "102756-483 via Conventional from 102758 -> 6765", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102758, + "TargetID": 6765, + "Directional": true + } + ] + }, + { + "ID": 19608, + "SourceStructureID": 102757, + "TargetStructureID": 5650, + "Label": "102757-5650 via Conventional from 102778 -> 102779", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102778, + "TargetID": 102779, + "Directional": true + } + ] + }, + { + "ID": 19609, + "SourceStructureID": 102759, + "TargetStructureID": 483, + "Label": "102759-483 via Conventional from 102760 -> 6766", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102760, + "TargetID": 6766, + "Directional": true + } + ] + }, + { + "ID": 19610, + "SourceStructureID": 102761, + "TargetStructureID": 5650, + "Label": "102761-5650 via Conventional from 102768 -> 102769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102768, + "TargetID": 102769, + "Directional": true + } + ] + }, + { + "ID": 19611, + "SourceStructureID": 102764, + "TargetStructureID": 5650, + "Label": "102764-5650 via Conventional from 102766 -> 102767", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102766, + "TargetID": 102767, + "Directional": true + } + ] + }, + { + "ID": 19612, + "SourceStructureID": 102775, + "TargetStructureID": 483, + "Label": "102775-483 via Conventional from 102777 -> 26787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102777, + "TargetID": 26787, + "Directional": true + } + ] + }, + { + "ID": 19613, + "SourceStructureID": 102785, + "TargetStructureID": 5650, + "Label": "102785-5650 via Conventional from 102800 -> 102801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102800, + "TargetID": 102801, + "Directional": true + } + ] + }, + { + "ID": 19614, + "SourceStructureID": 102787, + "TargetStructureID": 5650, + "Label": "102787-5650 via Conventional from 102815 -> 102816", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102815, + "TargetID": 102816, + "Directional": true + } + ] + }, + { + "ID": 19615, + "SourceStructureID": 102820, + "TargetStructureID": 483, + "Label": "102820-483 via Conventional from 102823 -> 102819", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102823, + "TargetID": 102819, + "Directional": true + } + ] + }, + { + "ID": 19616, + "SourceStructureID": 102838, + "TargetStructureID": 102838, + "Label": "102838-102838 via Conventional from 102839 -> 102840", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102839, + "TargetID": 102840, + "Directional": true + } + ] + }, + { + "ID": 19617, + "SourceStructureID": 102845, + "TargetStructureID": 483, + "Label": "102845-483 via Conventional from 102846 -> 102844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102846, + "TargetID": 102844, + "Directional": true + } + ] + }, + { + "ID": 19618, + "SourceStructureID": 102859, + "TargetStructureID": 483, + "Label": "102859-483 via Conventional from 102860 -> 102858", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102860, + "TargetID": 102858, + "Directional": true + } + ] + }, + { + "ID": 19619, + "SourceStructureID": 102863, + "TargetStructureID": 483, + "Label": "102863-483 via Conventional from 102865 -> 102862", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102865, + "TargetID": 102862, + "Directional": true + } + ] + }, + { + "ID": 19620, + "SourceStructureID": 102877, + "TargetStructureID": 483, + "Label": "102877-483 via Conventional from 102878 -> 102876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102878, + "TargetID": 102876, + "Directional": true + } + ] + }, + { + "ID": 19621, + "SourceStructureID": 102879, + "TargetStructureID": 483, + "Label": "102879-483 via Conventional from 102883 -> 102882", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102883, + "TargetID": 102882, + "Directional": true + } + ] + }, + { + "ID": 19622, + "SourceStructureID": 102879, + "TargetStructureID": 69537, + "Label": "102879-69537 via Conventional from 102896 -> 69764", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102896, + "TargetID": 69764, + "Directional": true + } + ] + }, + { + "ID": 19623, + "SourceStructureID": 102884, + "TargetStructureID": 483, + "Label": "102884-483 via Conventional from 102885 -> 102872", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102885, + "TargetID": 102872, + "Directional": true + } + ] + }, + { + "ID": 19624, + "SourceStructureID": 102890, + "TargetStructureID": 5650, + "Label": "102890-5650 via Conventional from 102904 -> 38284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102904, + "TargetID": 38284, + "Directional": true + } + ] + }, + { + "ID": 19625, + "SourceStructureID": 102897, + "TargetStructureID": 483, + "Label": "102897-483 via Conventional from 102902 -> 51181", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102902, + "TargetID": 51181, + "Directional": true + } + ] + }, + { + "ID": 19626, + "SourceStructureID": 102912, + "TargetStructureID": 5650, + "Label": "102912-5650 via Conventional from 102919 -> 102920", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102919, + "TargetID": 102920, + "Directional": true + } + ] + }, + { + "ID": 19627, + "SourceStructureID": 102932, + "TargetStructureID": 5513, + "Label": "102932-5513 via Conventional from 102934 -> 46784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102934, + "TargetID": 46784, + "Directional": true + } + ] + }, + { + "ID": 19628, + "SourceStructureID": 102932, + "TargetStructureID": 26079, + "Label": "102932-26079 via Conventional from 102933 -> 102924", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102933, + "TargetID": 102924, + "Directional": true + } + ] + }, + { + "ID": 19629, + "SourceStructureID": 102935, + "TargetStructureID": 5650, + "Label": "102935-5650 via Conventional from 102944 -> 102945", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102944, + "TargetID": 102945, + "Directional": true + } + ] + }, + { + "ID": 19630, + "SourceStructureID": 102946, + "TargetStructureID": 5650, + "Label": "102946-5650 via Conventional from 102947 -> 102948", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102947, + "TargetID": 102948, + "Directional": true + } + ] + }, + { + "ID": 19631, + "SourceStructureID": 102949, + "TargetStructureID": 5650, + "Label": "102949-5650 via Conventional from 102950 -> 102951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102950, + "TargetID": 102951, + "Directional": true + } + ] + }, + { + "ID": 19632, + "SourceStructureID": 102952, + "TargetStructureID": 5650, + "Label": "102952-5650 via Conventional from 102954 -> 102955", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102954, + "TargetID": 102955, + "Directional": true + } + ] + }, + { + "ID": 19633, + "SourceStructureID": 102953, + "TargetStructureID": 5650, + "Label": "102953-5650 via Conventional from 102973 -> 102974", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102973, + "TargetID": 102974, + "Directional": true + } + ] + }, + { + "ID": 19634, + "SourceStructureID": 102956, + "TargetStructureID": 5650, + "Label": "102956-5650 via Conventional from 102957 -> 102958", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102957, + "TargetID": 102958, + "Directional": true + } + ] + }, + { + "ID": 19635, + "SourceStructureID": 102975, + "TargetStructureID": 5650, + "Label": "102975-5650 via Conventional from 102980 -> 102981", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102980, + "TargetID": 102981, + "Directional": true + } + ] + }, + { + "ID": 19636, + "SourceStructureID": 102985, + "TargetStructureID": 5650, + "Label": "102985-5650 via Conventional from 102987 -> 102988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 102987, + "TargetID": 102988, + "Directional": true + } + ] + }, + { + "ID": 19637, + "SourceStructureID": 103001, + "TargetStructureID": 5650, + "Label": "103001-5650 via Conventional from 103004 -> 61076", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103004, + "TargetID": 61076, + "Directional": true + } + ] + }, + { + "ID": 19638, + "SourceStructureID": 103008, + "TargetStructureID": 103008, + "Label": "103008-103008 via Conventional from 103009 -> 103010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103009, + "TargetID": 103010, + "Directional": true + } + ] + }, + { + "ID": 19639, + "SourceStructureID": 103011, + "TargetStructureID": 5650, + "Label": "103011-5650 via Conventional from 103012 -> 103013", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103012, + "TargetID": 103013, + "Directional": true + } + ] + }, + { + "ID": 19640, + "SourceStructureID": 103014, + "TargetStructureID": 5650, + "Label": "103014-5650 via Conventional from 103015 -> 103016", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103015, + "TargetID": 103016, + "Directional": true + } + ] + }, + { + "ID": 19641, + "SourceStructureID": 103032, + "TargetStructureID": 5650, + "Label": "103032-5650 via Conventional from 103034 -> 103035", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103034, + "TargetID": 103035, + "Directional": true + } + ] + }, + { + "ID": 19642, + "SourceStructureID": 103037, + "TargetStructureID": 5650, + "Label": "103037-5650 via Conventional from 103040 -> 103041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103040, + "TargetID": 103041, + "Directional": true + } + ] + }, + { + "ID": 19643, + "SourceStructureID": 103047, + "TargetStructureID": 5650, + "Label": "103047-5650 via Conventional from 103048 -> 103049", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103048, + "TargetID": 103049, + "Directional": true + } + ] + }, + { + "ID": 19644, + "SourceStructureID": 103064, + "TargetStructureID": 483, + "Label": "103064-483 via Conventional from 103065 -> 103063", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103065, + "TargetID": 103063, + "Directional": true + } + ] + }, + { + "ID": 19645, + "SourceStructureID": 103070, + "TargetStructureID": 483, + "Label": "103070-483 via Conventional from 103071 -> 103069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103071, + "TargetID": 103069, + "Directional": true + } + ] + }, + { + "ID": 19646, + "SourceStructureID": 103076, + "TargetStructureID": 483, + "Label": "103076-483 via Conventional from 103077 -> 103075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103077, + "TargetID": 103075, + "Directional": true + } + ] + }, + { + "ID": 19647, + "SourceStructureID": 103076, + "TargetStructureID": 41042, + "Label": "103076-41042 via Conventional from 115809 -> 91422", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115809, + "TargetID": 91422, + "Directional": true + } + ] + }, + { + "ID": 19648, + "SourceStructureID": 103090, + "TargetStructureID": 483, + "Label": "103090-483 via Conventional from 103091 -> 6724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103091, + "TargetID": 6724, + "Directional": true + } + ] + }, + { + "ID": 19649, + "SourceStructureID": 103097, + "TargetStructureID": 46823, + "Label": "103097-46823 via Conventional from 103100 -> 103101", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103100, + "TargetID": 103101, + "Directional": true + } + ] + }, + { + "ID": 19650, + "SourceStructureID": 103102, + "TargetStructureID": 483, + "Label": "103102-483 via Conventional from 103103 -> 6730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103103, + "TargetID": 6730, + "Directional": true + } + ] + }, + { + "ID": 19651, + "SourceStructureID": 103105, + "TargetStructureID": 483, + "Label": "103105-483 via Conventional from 103106 -> 6740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103106, + "TargetID": 6740, + "Directional": true + } + ] + }, + { + "ID": 19652, + "SourceStructureID": 103122, + "TargetStructureID": 483, + "Label": "103122-483 via Conventional from 103124 -> 103125", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103124, + "TargetID": 103125, + "Directional": true + } + ] + }, + { + "ID": 19653, + "SourceStructureID": 103128, + "TargetStructureID": 483, + "Label": "103128-483 via Conventional from 103130 -> 6744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103130, + "TargetID": 6744, + "Directional": true + } + ] + }, + { + "ID": 19654, + "SourceStructureID": 103132, + "TargetStructureID": 483, + "Label": "103132-483 via Conventional from 103133 -> 103131", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103133, + "TargetID": 103131, + "Directional": true + } + ] + }, + { + "ID": 19655, + "SourceStructureID": 103182, + "TargetStructureID": 483, + "Label": "103182-483 via Conventional from 103184 -> 6732", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103184, + "TargetID": 6732, + "Directional": true + } + ] + }, + { + "ID": 19656, + "SourceStructureID": 103187, + "TargetStructureID": 483, + "Label": "103187-483 via Conventional from 103188 -> 6731", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103188, + "TargetID": 6731, + "Directional": true + } + ] + }, + { + "ID": 19657, + "SourceStructureID": 103203, + "TargetStructureID": 483, + "Label": "103203-483 via Conventional from 103207 -> 28766", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103207, + "TargetID": 28766, + "Directional": true + } + ] + }, + { + "ID": 19658, + "SourceStructureID": 103228, + "TargetStructureID": 483, + "Label": "103228-483 via Conventional from 103230 -> 28768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103230, + "TargetID": 28768, + "Directional": true + } + ] + }, + { + "ID": 19659, + "SourceStructureID": 103240, + "TargetStructureID": 483, + "Label": "103240-483 via Conventional from 103251 -> 103252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103251, + "TargetID": 103252, + "Directional": true + } + ] + }, + { + "ID": 19660, + "SourceStructureID": 103244, + "TargetStructureID": 483, + "Label": "103244-483 via Conventional from 103246 -> 103247", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103246, + "TargetID": 103247, + "Directional": true + } + ] + }, + { + "ID": 19661, + "SourceStructureID": 103244, + "TargetStructureID": 7568, + "Label": "103244-7568 via Conventional from 103245 -> 27088", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103245, + "TargetID": 27088, + "Directional": true + } + ] + }, + { + "ID": 19662, + "SourceStructureID": 103248, + "TargetStructureID": 483, + "Label": "103248-483 via Conventional from 134085 -> 134084", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 134085, + "TargetID": 134084, + "Directional": true + } + ] + }, + { + "ID": 19663, + "SourceStructureID": 103254, + "TargetStructureID": 483, + "Label": "103254-483 via Conventional from 103255 -> 28769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103255, + "TargetID": 28769, + "Directional": true + } + ] + }, + { + "ID": 19664, + "SourceStructureID": 103258, + "TargetStructureID": 606, + "Label": "103258-606 via Conventional from 103260 -> 53208", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103260, + "TargetID": 53208, + "Directional": true + } + ] + }, + { + "ID": 19665, + "SourceStructureID": 103265, + "TargetStructureID": 483, + "Label": "103265-483 via Conventional from 103266 -> 103267", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103266, + "TargetID": 103267, + "Directional": true + } + ] + }, + { + "ID": 19666, + "SourceStructureID": 103269, + "TargetStructureID": 483, + "Label": "103269-483 via Conventional from 103270 -> 103268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103270, + "TargetID": 103268, + "Directional": true + } + ] + }, + { + "ID": 19667, + "SourceStructureID": 103274, + "TargetStructureID": 483, + "Label": "103274-483 via Conventional from 103278 -> 103279", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103278, + "TargetID": 103279, + "Directional": true + } + ] + }, + { + "ID": 19668, + "SourceStructureID": 103281, + "TargetStructureID": 483, + "Label": "103281-483 via Conventional from 103282 -> 103280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103282, + "TargetID": 103280, + "Directional": true + } + ] + }, + { + "ID": 19669, + "SourceStructureID": 103287, + "TargetStructureID": 483, + "Label": "103287-483 via Conventional from 103289 -> 103286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103289, + "TargetID": 103286, + "Directional": true + } + ] + }, + { + "ID": 19670, + "SourceStructureID": 103313, + "TargetStructureID": 483, + "Label": "103313-483 via Conventional from 103315 -> 103312", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103315, + "TargetID": 103312, + "Directional": true + } + ] + }, + { + "ID": 19671, + "SourceStructureID": 103316, + "TargetStructureID": 483, + "Label": "103316-483 via Conventional from 103317 -> 103318", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103317, + "TargetID": 103318, + "Directional": true + } + ] + }, + { + "ID": 19672, + "SourceStructureID": 103331, + "TargetStructureID": 483, + "Label": "103331-483 via Conventional from 103332 -> 6093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103332, + "TargetID": 6093, + "Directional": true + } + ] + }, + { + "ID": 19673, + "SourceStructureID": 103339, + "TargetStructureID": 483, + "Label": "103339-483 via Conventional from 103340 -> 6089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103340, + "TargetID": 6089, + "Directional": true + } + ] + }, + { + "ID": 19674, + "SourceStructureID": 103352, + "TargetStructureID": 483, + "Label": "103352-483 via Conventional from 103353 -> 6769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103353, + "TargetID": 6769, + "Directional": true + } + ] + }, + { + "ID": 19675, + "SourceStructureID": 103358, + "TargetStructureID": 483, + "Label": "103358-483 via Conventional from 103361 -> 6085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103361, + "TargetID": 6085, + "Directional": true + } + ] + }, + { + "ID": 19676, + "SourceStructureID": 103362, + "TargetStructureID": 483, + "Label": "103362-483 via Conventional from 103366 -> 6084", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103366, + "TargetID": 6084, + "Directional": true + } + ] + }, + { + "ID": 19677, + "SourceStructureID": 103367, + "TargetStructureID": 483, + "Label": "103367-483 via Conventional from 103368 -> 6082", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103368, + "TargetID": 6082, + "Directional": true + } + ] + }, + { + "ID": 19678, + "SourceStructureID": 103381, + "TargetStructureID": 483, + "Label": "103381-483 via Conventional from 103382 -> 6775", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103382, + "TargetID": 6775, + "Directional": true + } + ] + }, + { + "ID": 19679, + "SourceStructureID": 103399, + "TargetStructureID": 483, + "Label": "103399-483 via Conventional from 103400 -> 6071", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103400, + "TargetID": 6071, + "Directional": true + } + ] + }, + { + "ID": 19680, + "SourceStructureID": 103411, + "TargetStructureID": 483, + "Label": "103411-483 via Conventional from 103414 -> 6772", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103414, + "TargetID": 6772, + "Directional": true + } + ] + }, + { + "ID": 19681, + "SourceStructureID": 103417, + "TargetStructureID": 483, + "Label": "103417-483 via Conventional from 103418 -> 6774", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103418, + "TargetID": 6774, + "Directional": true + } + ] + }, + { + "ID": 19682, + "SourceStructureID": 103440, + "TargetStructureID": 483, + "Label": "103440-483 via Conventional from 103441 -> 49799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103441, + "TargetID": 49799, + "Directional": true + } + ] + }, + { + "ID": 19683, + "SourceStructureID": 103458, + "TargetStructureID": 483, + "Label": "103458-483 via Conventional from 103459 -> 97736", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103459, + "TargetID": 97736, + "Directional": true + } + ] + }, + { + "ID": 19684, + "SourceStructureID": 103462, + "TargetStructureID": 483, + "Label": "103462-483 via Conventional from 103463 -> 97732", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103463, + "TargetID": 97732, + "Directional": true + } + ] + }, + { + "ID": 19685, + "SourceStructureID": 103475, + "TargetStructureID": 483, + "Label": "103475-483 via Conventional from 103476 -> 97769", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103476, + "TargetID": 97769, + "Directional": true + } + ] + }, + { + "ID": 19686, + "SourceStructureID": 103485, + "TargetStructureID": 483, + "Label": "103485-483 via Conventional from 103488 -> 92316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103488, + "TargetID": 92316, + "Directional": true + } + ] + }, + { + "ID": 19687, + "SourceStructureID": 103514, + "TargetStructureID": 483, + "Label": "103514-483 via Conventional from 103515 -> 97778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103515, + "TargetID": 97778, + "Directional": true + } + ] + }, + { + "ID": 19688, + "SourceStructureID": 103517, + "TargetStructureID": 483, + "Label": "103517-483 via Conventional from 103518 -> 103516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103518, + "TargetID": 103516, + "Directional": true + } + ] + }, + { + "ID": 19689, + "SourceStructureID": 103526, + "TargetStructureID": 483, + "Label": "103526-483 via Conventional from 103527 -> 97436", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103527, + "TargetID": 97436, + "Directional": true + } + ] + }, + { + "ID": 19690, + "SourceStructureID": 103532, + "TargetStructureID": 483, + "Label": "103532-483 via Conventional from 103533 -> 92338", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103533, + "TargetID": 92338, + "Directional": true + } + ] + }, + { + "ID": 19691, + "SourceStructureID": 103541, + "TargetStructureID": 483, + "Label": "103541-483 via Conventional from 103542 -> 97437", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103542, + "TargetID": 97437, + "Directional": true + } + ] + }, + { + "ID": 19692, + "SourceStructureID": 103557, + "TargetStructureID": 5649, + "Label": "103557-5649 via Conventional from 103765 -> 103763", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103765, + "TargetID": 103763, + "Directional": true + } + ] + }, + { + "ID": 19693, + "SourceStructureID": 103563, + "TargetStructureID": 5650, + "Label": "103563-5650 via Conventional from 103568 -> 103569", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103568, + "TargetID": 103569, + "Directional": true + } + ] + }, + { + "ID": 19694, + "SourceStructureID": 103595, + "TargetStructureID": 5650, + "Label": "103595-5650 via Conventional from 103596 -> 103597", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103596, + "TargetID": 103597, + "Directional": true + } + ] + }, + { + "ID": 19695, + "SourceStructureID": 103603, + "TargetStructureID": 5650, + "Label": "103603-5650 via Conventional from 103607 -> 103608", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103607, + "TargetID": 103608, + "Directional": true + } + ] + }, + { + "ID": 19696, + "SourceStructureID": 103613, + "TargetStructureID": 5650, + "Label": "103613-5650 via Conventional from 103633 -> 103634", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103633, + "TargetID": 103634, + "Directional": true + } + ] + }, + { + "ID": 19697, + "SourceStructureID": 103639, + "TargetStructureID": 5650, + "Label": "103639-5650 via Conventional from 103640 -> 103641", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103640, + "TargetID": 103641, + "Directional": true + } + ] + }, + { + "ID": 19698, + "SourceStructureID": 103642, + "TargetStructureID": 5650, + "Label": "103642-5650 via Conventional from 103643 -> 103644", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103643, + "TargetID": 103644, + "Directional": true + } + ] + }, + { + "ID": 19699, + "SourceStructureID": 103651, + "TargetStructureID": 5650, + "Label": "103651-5650 via Conventional from 103652 -> 103653", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103652, + "TargetID": 103653, + "Directional": true + } + ] + }, + { + "ID": 19700, + "SourceStructureID": 103669, + "TargetStructureID": 5650, + "Label": "103669-5650 via Conventional from 103670 -> 103672", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103670, + "TargetID": 103672, + "Directional": true + } + ] + }, + { + "ID": 19701, + "SourceStructureID": 103680, + "TargetStructureID": 5650, + "Label": "103680-5650 via Conventional from 103683 -> 103684", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103683, + "TargetID": 103684, + "Directional": true + } + ] + }, + { + "ID": 19702, + "SourceStructureID": 103680, + "TargetStructureID": 12897, + "Label": "103680-12897 via Ribbon Synapse from 103686 -> 103685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 103686, + "TargetID": 103685, + "Directional": true + } + ] + }, + { + "ID": 19703, + "SourceStructureID": 103687, + "TargetStructureID": 5650, + "Label": "103687-5650 via Conventional from 103696 -> 103697", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103696, + "TargetID": 103697, + "Directional": true + } + ] + }, + { + "ID": 19704, + "SourceStructureID": 103701, + "TargetStructureID": 5650, + "Label": "103701-5650 via Conventional from 103702 -> 103703", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103702, + "TargetID": 103703, + "Directional": true + } + ] + }, + { + "ID": 19705, + "SourceStructureID": 103707, + "TargetStructureID": 5650, + "Label": "103707-5650 via Conventional from 103708 -> 103709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103708, + "TargetID": 103709, + "Directional": true + } + ] + }, + { + "ID": 19706, + "SourceStructureID": 103728, + "TargetStructureID": 6857, + "Label": "103728-6857 via Conventional from 103729 -> 103730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103729, + "TargetID": 103730, + "Directional": true + } + ] + }, + { + "ID": 19707, + "SourceStructureID": 103734, + "TargetStructureID": 483, + "Label": "103734-483 via Conventional from 103735 -> 103733", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103735, + "TargetID": 103733, + "Directional": true + } + ] + }, + { + "ID": 19708, + "SourceStructureID": 103738, + "TargetStructureID": 483, + "Label": "103738-483 via Conventional from 103739 -> 103727", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103739, + "TargetID": 103727, + "Directional": true + } + ] + }, + { + "ID": 19709, + "SourceStructureID": 103750, + "TargetStructureID": 483, + "Label": "103750-483 via Conventional from 103751 -> 103752", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103751, + "TargetID": 103752, + "Directional": true + } + ] + }, + { + "ID": 19710, + "SourceStructureID": 103754, + "TargetStructureID": 483, + "Label": "103754-483 via Conventional from 103755 -> 103753", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103755, + "TargetID": 103753, + "Directional": true + } + ] + }, + { + "ID": 19711, + "SourceStructureID": 103771, + "TargetStructureID": 12897, + "Label": "103771-12897 via Ribbon Synapse from 135376 -> 135375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135376, + "TargetID": 135375, + "Directional": true + } + ] + }, + { + "ID": 19712, + "SourceStructureID": 103830, + "TargetStructureID": 5650, + "Label": "103830-5650 via Conventional from 103831 -> 103832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103831, + "TargetID": 103832, + "Directional": true + } + ] + }, + { + "ID": 19713, + "SourceStructureID": 103834, + "TargetStructureID": 5650, + "Label": "103834-5650 via Conventional from 103835 -> 103836", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103835, + "TargetID": 103836, + "Directional": true + } + ] + }, + { + "ID": 19714, + "SourceStructureID": 103841, + "TargetStructureID": 5650, + "Label": "103841-5650 via Conventional from 103842 -> 103843", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103842, + "TargetID": 103843, + "Directional": true + } + ] + }, + { + "ID": 19715, + "SourceStructureID": 103846, + "TargetStructureID": 5650, + "Label": "103846-5650 via Conventional from 103847 -> 103848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103847, + "TargetID": 103848, + "Directional": true + } + ] + }, + { + "ID": 19716, + "SourceStructureID": 103846, + "TargetStructureID": 112819, + "Label": "103846-112819 via Conventional from 112822 -> 112821", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112822, + "TargetID": 112821, + "Directional": true + } + ] + }, + { + "ID": 19717, + "SourceStructureID": 103853, + "TargetStructureID": 5650, + "Label": "103853-5650 via Conventional from 103854 -> 103855", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103854, + "TargetID": 103855, + "Directional": true + } + ] + }, + { + "ID": 19718, + "SourceStructureID": 103856, + "TargetStructureID": 5650, + "Label": "103856-5650 via Conventional from 103867 -> 103868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103867, + "TargetID": 103868, + "Directional": true + } + ] + }, + { + "ID": 19719, + "SourceStructureID": 103869, + "TargetStructureID": 5650, + "Label": "103869-5650 via Conventional from 103870 -> 103871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103870, + "TargetID": 103871, + "Directional": true + } + ] + }, + { + "ID": 19720, + "SourceStructureID": 103872, + "TargetStructureID": 5650, + "Label": "103872-5650 via Conventional from 103878 -> 103879", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103878, + "TargetID": 103879, + "Directional": true + } + ] + }, + { + "ID": 19721, + "SourceStructureID": 103875, + "TargetStructureID": 5650, + "Label": "103875-5650 via Conventional from 103876 -> 103877", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103876, + "TargetID": 103877, + "Directional": true + } + ] + }, + { + "ID": 19722, + "SourceStructureID": 103880, + "TargetStructureID": 5650, + "Label": "103880-5650 via Conventional from 103881 -> 103882", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103881, + "TargetID": 103882, + "Directional": true + } + ] + }, + { + "ID": 19723, + "SourceStructureID": 103896, + "TargetStructureID": 5650, + "Label": "103896-5650 via Conventional from 103904 -> 23487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103904, + "TargetID": 23487, + "Directional": true + } + ] + }, + { + "ID": 19724, + "SourceStructureID": 103907, + "TargetStructureID": 5650, + "Label": "103907-5650 via Conventional from 103908 -> 103909", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103908, + "TargetID": 103909, + "Directional": true + } + ] + }, + { + "ID": 19725, + "SourceStructureID": 103913, + "TargetStructureID": 5650, + "Label": "103913-5650 via Conventional from 103914 -> 23491", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103914, + "TargetID": 23491, + "Directional": true + } + ] + }, + { + "ID": 19726, + "SourceStructureID": 103915, + "TargetStructureID": 5650, + "Label": "103915-5650 via Conventional from 103916 -> 103917", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103916, + "TargetID": 103917, + "Directional": true + } + ] + }, + { + "ID": 19727, + "SourceStructureID": 103920, + "TargetStructureID": 5650, + "Label": "103920-5650 via Conventional from 103921 -> 23489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103921, + "TargetID": 23489, + "Directional": true + } + ] + }, + { + "ID": 19728, + "SourceStructureID": 103922, + "TargetStructureID": 5650, + "Label": "103922-5650 via Conventional from 103923 -> 23494", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103923, + "TargetID": 23494, + "Directional": true + } + ] + }, + { + "ID": 19729, + "SourceStructureID": 103951, + "TargetStructureID": 5650, + "Label": "103951-5650 via Conventional from 103953 -> 103954", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103953, + "TargetID": 103954, + "Directional": true + } + ] + }, + { + "ID": 19730, + "SourceStructureID": 103956, + "TargetStructureID": 5650, + "Label": "103956-5650 via Conventional from 103957 -> 23482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103957, + "TargetID": 23482, + "Directional": true + } + ] + }, + { + "ID": 19731, + "SourceStructureID": 103958, + "TargetStructureID": 5650, + "Label": "103958-5650 via Conventional from 103959 -> 103960", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103959, + "TargetID": 103960, + "Directional": true + } + ] + }, + { + "ID": 19732, + "SourceStructureID": 103969, + "TargetStructureID": 5650, + "Label": "103969-5650 via Conventional from 103970 -> 103971", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103970, + "TargetID": 103971, + "Directional": true + } + ] + }, + { + "ID": 19733, + "SourceStructureID": 103975, + "TargetStructureID": 5650, + "Label": "103975-5650 via Conventional from 103979 -> 103980", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 103979, + "TargetID": 103980, + "Directional": true + } + ] + }, + { + "ID": 19734, + "SourceStructureID": 103987, + "TargetStructureID": 5650, + "Label": "103987-5650 via Conventional from 104018 -> 104019", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104018, + "TargetID": 104019, + "Directional": true + } + ] + }, + { + "ID": 19735, + "SourceStructureID": 103992, + "TargetStructureID": 5278, + "Label": "103992-5278 via Conventional from 104000 -> 104001", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104000, + "TargetID": 104001, + "Directional": true + } + ] + }, + { + "ID": 19736, + "SourceStructureID": 103999, + "TargetStructureID": 5278, + "Label": "103999-5278 via Conventional from 104004 -> 11189", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104004, + "TargetID": 11189, + "Directional": true + } + ] + }, + { + "ID": 19737, + "SourceStructureID": 104013, + "TargetStructureID": 5650, + "Label": "104013-5650 via Conventional from 104016 -> 104017", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104016, + "TargetID": 104017, + "Directional": true + } + ] + }, + { + "ID": 19738, + "SourceStructureID": 104043, + "TargetStructureID": 5650, + "Label": "104043-5650 via Conventional from 104047 -> 104048", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104047, + "TargetID": 104048, + "Directional": true + } + ] + }, + { + "ID": 19739, + "SourceStructureID": 104049, + "TargetStructureID": 5278, + "Label": "104049-5278 via Conventional from 104065 -> 104067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104065, + "TargetID": 104067, + "Directional": true + } + ] + }, + { + "ID": 19740, + "SourceStructureID": 104056, + "TargetStructureID": 5650, + "Label": "104056-5650 via Conventional from 104058 -> 104061", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104058, + "TargetID": 104061, + "Directional": true + } + ] + }, + { + "ID": 19741, + "SourceStructureID": 104062, + "TargetStructureID": 5278, + "Label": "104062-5278 via Conventional from 104864 -> 104865", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104864, + "TargetID": 104865, + "Directional": true + } + ] + }, + { + "ID": 19742, + "SourceStructureID": 104063, + "TargetStructureID": 5650, + "Label": "104063-5650 via Conventional from 104077 -> 104078", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104077, + "TargetID": 104078, + "Directional": true + } + ] + }, + { + "ID": 19743, + "SourceStructureID": 104082, + "TargetStructureID": 5650, + "Label": "104082-5650 via Conventional from 104085 -> 104086", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104085, + "TargetID": 104086, + "Directional": true + } + ] + }, + { + "ID": 19744, + "SourceStructureID": 104084, + "TargetStructureID": 104079, + "Label": "104084-104079 via Conventional from 104087 -> 104088", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104087, + "TargetID": 104088, + "Directional": true + } + ] + }, + { + "ID": 19745, + "SourceStructureID": 104090, + "TargetStructureID": 104089, + "Label": "104090-104089 via Conventional from 104091 -> 104092", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104091, + "TargetID": 104092, + "Directional": true + } + ] + }, + { + "ID": 19746, + "SourceStructureID": 104097, + "TargetStructureID": 5650, + "Label": "104097-5650 via Conventional from 104102 -> 30146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104102, + "TargetID": 30146, + "Directional": true + } + ] + }, + { + "ID": 19747, + "SourceStructureID": 104103, + "TargetStructureID": 5650, + "Label": "104103-5650 via Conventional from 104104 -> 30147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104104, + "TargetID": 30147, + "Directional": true + } + ] + }, + { + "ID": 19748, + "SourceStructureID": 104109, + "TargetStructureID": 1021, + "Label": "104109-1021 via Conventional from 125238 -> 125237", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125238, + "TargetID": 125237, + "Directional": true + } + ] + }, + { + "ID": 19749, + "SourceStructureID": 104109, + "TargetStructureID": 5650, + "Label": "104109-5650 via Conventional from 104111 -> 30144", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104111, + "TargetID": 30144, + "Directional": true + } + ] + }, + { + "ID": 19750, + "SourceStructureID": 104117, + "TargetStructureID": 5278, + "Label": "104117-5278 via Conventional from 104150 -> 20127", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104150, + "TargetID": 20127, + "Directional": true + } + ] + }, + { + "ID": 19751, + "SourceStructureID": 104118, + "TargetStructureID": 5650, + "Label": "104118-5650 via Conventional from 104119 -> 30148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104119, + "TargetID": 30148, + "Directional": true + } + ] + }, + { + "ID": 19752, + "SourceStructureID": 104131, + "TargetStructureID": 5650, + "Label": "104131-5650 via Conventional from 104135 -> 104136", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104135, + "TargetID": 104136, + "Directional": true + } + ] + }, + { + "ID": 19753, + "SourceStructureID": 104140, + "TargetStructureID": 5650, + "Label": "104140-5650 via Conventional from 104145 -> 104147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104145, + "TargetID": 104147, + "Directional": true + } + ] + }, + { + "ID": 19754, + "SourceStructureID": 104143, + "TargetStructureID": 5278, + "Label": "104143-5278 via Conventional from 104148 -> 11209", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104148, + "TargetID": 11209, + "Directional": true + } + ] + }, + { + "ID": 19755, + "SourceStructureID": 104155, + "TargetStructureID": 6120, + "Label": "104155-6120 via Conventional from 111226 -> 111225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111226, + "TargetID": 111225, + "Directional": true + } + ] + }, + { + "ID": 19756, + "SourceStructureID": 104157, + "TargetStructureID": 5650, + "Label": "104157-5650 via Conventional from 104158 -> 104159, 104165 -> 30157", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104158, + "TargetID": 104159, + "Directional": true + }, + { + "SourceID": 104165, + "TargetID": 30157, + "Directional": true + } + ] + }, + { + "ID": 19757, + "SourceStructureID": 104160, + "TargetStructureID": 5650, + "Label": "104160-5650 via Conventional from 104161 -> 104162", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104161, + "TargetID": 104162, + "Directional": true + } + ] + }, + { + "ID": 19758, + "SourceStructureID": 104168, + "TargetStructureID": 5278, + "Label": "104168-5278 via Conventional from 104169 -> 11197", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104169, + "TargetID": 11197, + "Directional": true + } + ] + }, + { + "ID": 19759, + "SourceStructureID": 104170, + "TargetStructureID": 5278, + "Label": "104170-5278 via Conventional from 104173 -> 11198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104173, + "TargetID": 11198, + "Directional": true + } + ] + }, + { + "ID": 19760, + "SourceStructureID": 104180, + "TargetStructureID": 5278, + "Label": "104180-5278 via Conventional from 104181 -> 20130", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104181, + "TargetID": 20130, + "Directional": true + } + ] + }, + { + "ID": 19761, + "SourceStructureID": 104208, + "TargetStructureID": 5278, + "Label": "104208-5278 via Conventional from 104209 -> 104210", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104209, + "TargetID": 104210, + "Directional": true + } + ] + }, + { + "ID": 19762, + "SourceStructureID": 104211, + "TargetStructureID": 142, + "Label": "104211-142 via Conventional from 104862 -> 92451", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104862, + "TargetID": 92451, + "Directional": true + } + ] + }, + { + "ID": 19763, + "SourceStructureID": 104211, + "TargetStructureID": 5278, + "Label": "104211-5278 via Conventional from 104860 -> 11207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104860, + "TargetID": 11207, + "Directional": true + } + ] + }, + { + "ID": 19764, + "SourceStructureID": 104223, + "TargetStructureID": 5278, + "Label": "104223-5278 via Conventional from 104224 -> 11205", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104224, + "TargetID": 11205, + "Directional": true + } + ] + }, + { + "ID": 19765, + "SourceStructureID": 104266, + "TargetStructureID": 5650, + "Label": "104266-5650 via Conventional from 104267 -> 104268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104267, + "TargetID": 104268, + "Directional": true + } + ] + }, + { + "ID": 19766, + "SourceStructureID": 104273, + "TargetStructureID": 5650, + "Label": "104273-5650 via Conventional from 104274 -> 104275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104274, + "TargetID": 104275, + "Directional": true + } + ] + }, + { + "ID": 19767, + "SourceStructureID": 104276, + "TargetStructureID": 5278, + "Label": "104276-5278 via Conventional from 104279 -> 104280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104279, + "TargetID": 104280, + "Directional": true + } + ] + }, + { + "ID": 19768, + "SourceStructureID": 104285, + "TargetStructureID": 5650, + "Label": "104285-5650 via Conventional from 126391 -> 126390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126391, + "TargetID": 126390, + "Directional": true + } + ] + }, + { + "ID": 19769, + "SourceStructureID": 104289, + "TargetStructureID": 5650, + "Label": "104289-5650 via Conventional from 104291 -> 104293", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104291, + "TargetID": 104293, + "Directional": true + } + ] + }, + { + "ID": 19770, + "SourceStructureID": 104335, + "TargetStructureID": 5650, + "Label": "104335-5650 via Conventional from 104341 -> 104342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104341, + "TargetID": 104342, + "Directional": true + } + ] + }, + { + "ID": 19771, + "SourceStructureID": 104340, + "TargetStructureID": 5278, + "Label": "104340-5278 via Conventional from 104343 -> 92264", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104343, + "TargetID": 92264, + "Directional": true + } + ] + }, + { + "ID": 19772, + "SourceStructureID": 104346, + "TargetStructureID": 5278, + "Label": "104346-5278 via Conventional from 104349 -> 92265", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104349, + "TargetID": 92265, + "Directional": true + } + ] + }, + { + "ID": 19773, + "SourceStructureID": 104352, + "TargetStructureID": 5650, + "Label": "104352-5650 via Conventional from 104357 -> 104358", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104357, + "TargetID": 104358, + "Directional": true + } + ] + }, + { + "ID": 19774, + "SourceStructureID": 104359, + "TargetStructureID": 5650, + "Label": "104359-5650 via Conventional from 104360 -> 104361", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104360, + "TargetID": 104361, + "Directional": true + } + ] + }, + { + "ID": 19775, + "SourceStructureID": 104364, + "TargetStructureID": 5650, + "Label": "104364-5650 via Conventional from 104365 -> 104366", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104365, + "TargetID": 104366, + "Directional": true + } + ] + }, + { + "ID": 19776, + "SourceStructureID": 104368, + "TargetStructureID": 5650, + "Label": "104368-5650 via Conventional from 104369 -> 29903", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104369, + "TargetID": 29903, + "Directional": true + } + ] + }, + { + "ID": 19777, + "SourceStructureID": 104373, + "TargetStructureID": 5650, + "Label": "104373-5650 via Conventional from 104374 -> 29902", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104374, + "TargetID": 29902, + "Directional": true + } + ] + }, + { + "ID": 19778, + "SourceStructureID": 104388, + "TargetStructureID": 5278, + "Label": "104388-5278 via Conventional from 104389 -> 104390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104389, + "TargetID": 104390, + "Directional": true + } + ] + }, + { + "ID": 19779, + "SourceStructureID": 104399, + "TargetStructureID": 5278, + "Label": "104399-5278 via Conventional from 104400 -> 92195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104400, + "TargetID": 92195, + "Directional": true + } + ] + }, + { + "ID": 19780, + "SourceStructureID": 104410, + "TargetStructureID": 5278, + "Label": "104410-5278 via Conventional from 104413 -> 104415", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104413, + "TargetID": 104415, + "Directional": true + } + ] + }, + { + "ID": 19781, + "SourceStructureID": 104414, + "TargetStructureID": 5650, + "Label": "104414-5650 via Conventional from 104422 -> 104424", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104422, + "TargetID": 104424, + "Directional": true + } + ] + }, + { + "ID": 19782, + "SourceStructureID": 104430, + "TargetStructureID": 5278, + "Label": "104430-5278 via Conventional from 104431 -> 104432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104431, + "TargetID": 104432, + "Directional": true + } + ] + }, + { + "ID": 19783, + "SourceStructureID": 104434, + "TargetStructureID": 5278, + "Label": "104434-5278 via Conventional from 104436 -> 92167", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104436, + "TargetID": 92167, + "Directional": true + } + ] + }, + { + "ID": 19784, + "SourceStructureID": 104435, + "TargetStructureID": 5284, + "Label": "104435-5284 via Conventional from 113310 -> 113306", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113310, + "TargetID": 113306, + "Directional": true + } + ] + }, + { + "ID": 19785, + "SourceStructureID": 104444, + "TargetStructureID": 5278, + "Label": "104444-5278 via Conventional from 104447 -> 104528", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104447, + "TargetID": 104528, + "Directional": true + } + ] + }, + { + "ID": 19786, + "SourceStructureID": 104462, + "TargetStructureID": 5650, + "Label": "104462-5650 via Conventional from 104463 -> 104464", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104463, + "TargetID": 104464, + "Directional": true + } + ] + }, + { + "ID": 19787, + "SourceStructureID": 104468, + "TargetStructureID": 5650, + "Label": "104468-5650 via Conventional from 104470 -> 29905", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104470, + "TargetID": 29905, + "Directional": true + } + ] + }, + { + "ID": 19788, + "SourceStructureID": 104473, + "TargetStructureID": 5650, + "Label": "104473-5650 via Conventional from 104474 -> 29917", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104474, + "TargetID": 29917, + "Directional": true + } + ] + }, + { + "ID": 19789, + "SourceStructureID": 104477, + "TargetStructureID": 5649, + "Label": "104477-5649 via Conventional from 135452 -> 135451", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135452, + "TargetID": 135451, + "Directional": true + } + ] + }, + { + "ID": 19790, + "SourceStructureID": 104484, + "TargetStructureID": 5649, + "Label": "104484-5649 via Conventional from 104486 -> 104487", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104486, + "TargetID": 104487, + "Directional": true + } + ] + }, + { + "ID": 19791, + "SourceStructureID": 104505, + "TargetStructureID": 5649, + "Label": "104505-5649 via Conventional from 104506 -> 104504", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104506, + "TargetID": 104504, + "Directional": true + } + ] + }, + { + "ID": 19792, + "SourceStructureID": 104507, + "TargetStructureID": 5278, + "Label": "104507-5278 via Conventional from 104510 -> 92165", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104510, + "TargetID": 92165, + "Directional": true + } + ] + }, + { + "ID": 19793, + "SourceStructureID": 104509, + "TargetStructureID": 104523, + "Label": "104509-104523 via Conventional from 104522 -> 104524", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104522, + "TargetID": 104524, + "Directional": true + } + ] + }, + { + "ID": 19794, + "SourceStructureID": 104523, + "TargetStructureID": 5649, + "Label": "104523-5649 via Conventional from 104548 -> 104549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104548, + "TargetID": 104549, + "Directional": true + } + ] + }, + { + "ID": 19795, + "SourceStructureID": 104526, + "TargetStructureID": 5649, + "Label": "104526-5649 via Conventional from 104527 -> 104525", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104527, + "TargetID": 104525, + "Directional": true + } + ] + }, + { + "ID": 19796, + "SourceStructureID": 104534, + "TargetStructureID": 5649, + "Label": "104534-5649 via Conventional from 104535 -> 104533", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104535, + "TargetID": 104533, + "Directional": true + } + ] + }, + { + "ID": 19797, + "SourceStructureID": 104538, + "TargetStructureID": 104541, + "Label": "104538-104541 via Conventional from 104539 -> 104542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104539, + "TargetID": 104542, + "Directional": true + } + ] + }, + { + "ID": 19798, + "SourceStructureID": 104554, + "TargetStructureID": 5649, + "Label": "104554-5649 via Conventional from 104555 -> 104550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104555, + "TargetID": 104550, + "Directional": true + } + ] + }, + { + "ID": 19799, + "SourceStructureID": 104556, + "TargetStructureID": 5649, + "Label": "104556-5649 via Conventional from 104558 -> 104553", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104558, + "TargetID": 104553, + "Directional": true + } + ] + }, + { + "ID": 19800, + "SourceStructureID": 104559, + "TargetStructureID": 5649, + "Label": "104559-5649 via Conventional from 135454 -> 135453", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135454, + "TargetID": 135453, + "Directional": true + } + ] + }, + { + "ID": 19801, + "SourceStructureID": 104565, + "TargetStructureID": 5649, + "Label": "104565-5649 via Conventional from 104566 -> 104564", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104566, + "TargetID": 104564, + "Directional": true + } + ] + }, + { + "ID": 19802, + "SourceStructureID": 104572, + "TargetStructureID": 5649, + "Label": "104572-5649 via Conventional from 104574 -> 104552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104574, + "TargetID": 104552, + "Directional": true + } + ] + }, + { + "ID": 19803, + "SourceStructureID": 104580, + "TargetStructureID": 5649, + "Label": "104580-5649 via Conventional from 104581 -> 104579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104581, + "TargetID": 104579, + "Directional": true + } + ] + }, + { + "ID": 19804, + "SourceStructureID": 104587, + "TargetStructureID": 5278, + "Label": "104587-5278 via Conventional from 104590 -> 92220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104590, + "TargetID": 92220, + "Directional": true + } + ] + }, + { + "ID": 19805, + "SourceStructureID": 104591, + "TargetStructureID": 5278, + "Label": "104591-5278 via Conventional from 104592 -> 92221, 104597 -> 92221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104592, + "TargetID": 92221, + "Directional": true + }, + { + "SourceID": 104597, + "TargetID": 92221, + "Directional": true + } + ] + }, + { + "ID": 19806, + "SourceStructureID": 104593, + "TargetStructureID": 5278, + "Label": "104593-5278 via Conventional from 104594 -> 104595", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104594, + "TargetID": 104595, + "Directional": true + } + ] + }, + { + "ID": 19807, + "SourceStructureID": 104616, + "TargetStructureID": 5649, + "Label": "104616-5649 via Conventional from 104617 -> 104615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104617, + "TargetID": 104615, + "Directional": true + } + ] + }, + { + "ID": 19808, + "SourceStructureID": 104619, + "TargetStructureID": 5649, + "Label": "104619-5649 via Conventional from 104620 -> 104618, 136133 -> 136132", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104620, + "TargetID": 104618, + "Directional": true + }, + { + "SourceID": 136133, + "TargetID": 136132, + "Directional": true + } + ] + }, + { + "ID": 19809, + "SourceStructureID": 104633, + "TargetStructureID": 5649, + "Label": "104633-5649 via Conventional from 135413 -> 135412", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135413, + "TargetID": 135412, + "Directional": true + } + ] + }, + { + "ID": 19810, + "SourceStructureID": 104638, + "TargetStructureID": 5649, + "Label": "104638-5649 via Conventional from 104639 -> 53841", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104639, + "TargetID": 53841, + "Directional": true + } + ] + }, + { + "ID": 19811, + "SourceStructureID": 104648, + "TargetStructureID": 5649, + "Label": "104648-5649 via Conventional from 104650 -> 53840", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104650, + "TargetID": 53840, + "Directional": true + } + ] + }, + { + "ID": 19812, + "SourceStructureID": 104651, + "TargetStructureID": 5649, + "Label": "104651-5649 via Conventional from 104652 -> 53837", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104652, + "TargetID": 53837, + "Directional": true + } + ] + }, + { + "ID": 19813, + "SourceStructureID": 104669, + "TargetStructureID": 5649, + "Label": "104669-5649 via Conventional from 104670 -> 104668", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104670, + "TargetID": 104668, + "Directional": true + } + ] + }, + { + "ID": 19814, + "SourceStructureID": 104677, + "TargetStructureID": 13525, + "Label": "104677-13525 via Conventional from 104683 -> 85667", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104683, + "TargetID": 85667, + "Directional": true + } + ] + }, + { + "ID": 19815, + "SourceStructureID": 104690, + "TargetStructureID": 5649, + "Label": "104690-5649 via Conventional from 104697 -> 104698", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104697, + "TargetID": 104698, + "Directional": true + } + ] + }, + { + "ID": 19816, + "SourceStructureID": 104693, + "TargetStructureID": 13525, + "Label": "104693-13525 via Conventional from 104694 -> 85944", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104694, + "TargetID": 85944, + "Directional": true + } + ] + }, + { + "ID": 19817, + "SourceStructureID": 104706, + "TargetStructureID": 13525, + "Label": "104706-13525 via Conventional from 104708 -> 85367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104708, + "TargetID": 85367, + "Directional": true + } + ] + }, + { + "ID": 19818, + "SourceStructureID": 104715, + "TargetStructureID": 5649, + "Label": "104715-5649 via Conventional from 104716 -> 53890", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104716, + "TargetID": 53890, + "Directional": true + } + ] + }, + { + "ID": 19819, + "SourceStructureID": 104719, + "TargetStructureID": 13525, + "Label": "104719-13525 via Conventional from 104720 -> 13527", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104720, + "TargetID": 13527, + "Directional": true + } + ] + }, + { + "ID": 19820, + "SourceStructureID": 104726, + "TargetStructureID": 13525, + "Label": "104726-13525 via Conventional from 104727 -> 84665", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104727, + "TargetID": 84665, + "Directional": true + } + ] + }, + { + "ID": 19821, + "SourceStructureID": 104733, + "TargetStructureID": 5649, + "Label": "104733-5649 via Conventional from 104734 -> 53885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104734, + "TargetID": 53885, + "Directional": true + } + ] + }, + { + "ID": 19822, + "SourceStructureID": 104735, + "TargetStructureID": 15942, + "Label": "104735-15942 via Conventional from 104756 -> 16763, 104757 -> 16764", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104756, + "TargetID": 16763, + "Directional": true + }, + { + "SourceID": 104757, + "TargetID": 16764, + "Directional": true + } + ] + }, + { + "ID": 19823, + "SourceStructureID": 104739, + "TargetStructureID": 5649, + "Label": "104739-5649 via Conventional from 104741 -> 104743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104741, + "TargetID": 104743, + "Directional": true + } + ] + }, + { + "ID": 19824, + "SourceStructureID": 104740, + "TargetStructureID": 433, + "Label": "104740-433 via Conventional from 111132 -> 21589, 111206 -> 21549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111132, + "TargetID": 21589, + "Directional": true + }, + { + "SourceID": 111206, + "TargetID": 21549, + "Directional": true + } + ] + }, + { + "ID": 19825, + "SourceStructureID": 104740, + "TargetStructureID": 6128, + "Label": "104740-6128 via Conventional from 114830 -> 137121, 114836 -> 33753, 114841 -> 21102, 118100 -> 33754", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114830, + "TargetID": 137121, + "Directional": true + }, + { + "SourceID": 114836, + "TargetID": 33753, + "Directional": true + }, + { + "SourceID": 114841, + "TargetID": 21102, + "Directional": true + }, + { + "SourceID": 118100, + "TargetID": 33754, + "Directional": true + } + ] + }, + { + "ID": 19826, + "SourceStructureID": 104740, + "TargetStructureID": 9260, + "Label": "104740-9260 via Conventional from 111138 -> 88116", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111138, + "TargetID": 88116, + "Directional": true + } + ] + }, + { + "ID": 19827, + "SourceStructureID": 104740, + "TargetStructureID": 13525, + "Label": "104740-13525 via Conventional from 104742 -> 86080", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104742, + "TargetID": 86080, + "Directional": true + } + ] + }, + { + "ID": 19828, + "SourceStructureID": 104740, + "TargetStructureID": 46741, + "Label": "104740-46741 via Conventional from 114840 -> 137108", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114840, + "TargetID": 137108, + "Directional": true + } + ] + }, + { + "ID": 19829, + "SourceStructureID": 104744, + "TargetStructureID": 13525, + "Label": "104744-13525 via Conventional from 104745 -> 86730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104745, + "TargetID": 86730, + "Directional": true + } + ] + }, + { + "ID": 19830, + "SourceStructureID": 104749, + "TargetStructureID": 5649, + "Label": "104749-5649 via Conventional from 104750 -> 104748", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104750, + "TargetID": 104748, + "Directional": true + } + ] + }, + { + "ID": 19831, + "SourceStructureID": 104751, + "TargetStructureID": 458, + "Label": "104751-458 via Conventional from 111088 -> 36275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111088, + "TargetID": 36275, + "Directional": true + } + ] + }, + { + "ID": 19832, + "SourceStructureID": 104751, + "TargetStructureID": 5545, + "Label": "104751-5545 via Conventional from 104752 -> 87174", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104752, + "TargetID": 87174, + "Directional": true + } + ] + }, + { + "ID": 19833, + "SourceStructureID": 104751, + "TargetStructureID": 137122, + "Label": "104751-137122 via Conventional from 111086 -> 137135, 111087 -> 137134", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111086, + "TargetID": 137135, + "Directional": true + }, + { + "SourceID": 111087, + "TargetID": 137134, + "Directional": true + } + ] + }, + { + "ID": 19834, + "SourceStructureID": 104754, + "TargetStructureID": 13525, + "Label": "104754-13525 via Conventional from 104755 -> 94216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104755, + "TargetID": 94216, + "Directional": true + } + ] + }, + { + "ID": 19835, + "SourceStructureID": 104774, + "TargetStructureID": 5649, + "Label": "104774-5649 via Conventional from 104775 -> 104773", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104775, + "TargetID": 104773, + "Directional": true + } + ] + }, + { + "ID": 19836, + "SourceStructureID": 104804, + "TargetStructureID": 5649, + "Label": "104804-5649 via Conventional from 104805 -> 104803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104805, + "TargetID": 104803, + "Directional": true + } + ] + }, + { + "ID": 19837, + "SourceStructureID": 104808, + "TargetStructureID": 5278, + "Label": "104808-5278 via Conventional from 104809 -> 104810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104809, + "TargetID": 104810, + "Directional": true + } + ] + }, + { + "ID": 19838, + "SourceStructureID": 104823, + "TargetStructureID": 5278, + "Label": "104823-5278 via Conventional from 104824 -> 104825, 104826 -> 92276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104824, + "TargetID": 104825, + "Directional": true + }, + { + "SourceID": 104826, + "TargetID": 92276, + "Directional": true + } + ] + }, + { + "ID": 19839, + "SourceStructureID": 104834, + "TargetStructureID": 5278, + "Label": "104834-5278 via Conventional from 104835 -> 104836, 104837 -> 104838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104835, + "TargetID": 104836, + "Directional": true + }, + { + "SourceID": 104837, + "TargetID": 104838, + "Directional": true + } + ] + }, + { + "ID": 19840, + "SourceStructureID": 104842, + "TargetStructureID": 5278, + "Label": "104842-5278 via Conventional from 104843 -> 104844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104843, + "TargetID": 104844, + "Directional": true + } + ] + }, + { + "ID": 19841, + "SourceStructureID": 104869, + "TargetStructureID": 6155, + "Label": "104869-6155 via Conventional from 104871 -> 48258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104871, + "TargetID": 48258, + "Directional": true + } + ] + }, + { + "ID": 19842, + "SourceStructureID": 104879, + "TargetStructureID": 6155, + "Label": "104879-6155 via Conventional from 104880 -> 49058", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104880, + "TargetID": 49058, + "Directional": true + } + ] + }, + { + "ID": 19843, + "SourceStructureID": 104886, + "TargetStructureID": 6155, + "Label": "104886-6155 via Conventional from 104889 -> 15380", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104889, + "TargetID": 15380, + "Directional": true + } + ] + }, + { + "ID": 19844, + "SourceStructureID": 104900, + "TargetStructureID": 6155, + "Label": "104900-6155 via Conventional from 104901 -> 49084", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104901, + "TargetID": 49084, + "Directional": true + } + ] + }, + { + "ID": 19845, + "SourceStructureID": 104906, + "TargetStructureID": 6155, + "Label": "104906-6155 via Conventional from 104907 -> 104908", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104907, + "TargetID": 104908, + "Directional": true + } + ] + }, + { + "ID": 19846, + "SourceStructureID": 104912, + "TargetStructureID": 6155, + "Label": "104912-6155 via Conventional from 104913 -> 48321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104913, + "TargetID": 48321, + "Directional": true + } + ] + }, + { + "ID": 19847, + "SourceStructureID": 104926, + "TargetStructureID": 6155, + "Label": "104926-6155 via Conventional from 104927 -> 104928, 104929 -> 104930", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104927, + "TargetID": 104928, + "Directional": true + }, + { + "SourceID": 104929, + "TargetID": 104930, + "Directional": true + } + ] + }, + { + "ID": 19848, + "SourceStructureID": 104933, + "TargetStructureID": 6155, + "Label": "104933-6155 via Conventional from 104934 -> 15687", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104934, + "TargetID": 15687, + "Directional": true + } + ] + }, + { + "ID": 19849, + "SourceStructureID": 104949, + "TargetStructureID": 6155, + "Label": "104949-6155 via Conventional from 104950 -> 15815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104950, + "TargetID": 15815, + "Directional": true + } + ] + }, + { + "ID": 19850, + "SourceStructureID": 104970, + "TargetStructureID": 6155, + "Label": "104970-6155 via Conventional from 104973 -> 15613", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104973, + "TargetID": 15613, + "Directional": true + } + ] + }, + { + "ID": 19851, + "SourceStructureID": 104974, + "TargetStructureID": 6155, + "Label": "104974-6155 via Conventional from 104975 -> 48320", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104975, + "TargetID": 48320, + "Directional": true + } + ] + }, + { + "ID": 19852, + "SourceStructureID": 104990, + "TargetStructureID": 5650, + "Label": "104990-5650 via Conventional from 104991 -> 104992", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104991, + "TargetID": 104992, + "Directional": true + } + ] + }, + { + "ID": 19853, + "SourceStructureID": 104995, + "TargetStructureID": 5650, + "Label": "104995-5650 via Conventional from 104996 -> 104997", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104996, + "TargetID": 104997, + "Directional": true + } + ] + }, + { + "ID": 19854, + "SourceStructureID": 104998, + "TargetStructureID": 5284, + "Label": "104998-5284 via Conventional from 113277 -> 113276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113277, + "TargetID": 113276, + "Directional": true + } + ] + }, + { + "ID": 19855, + "SourceStructureID": 104998, + "TargetStructureID": 5650, + "Label": "104998-5650 via Conventional from 104999 -> 105000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 104999, + "TargetID": 105000, + "Directional": true + } + ] + }, + { + "ID": 19856, + "SourceStructureID": 105004, + "TargetStructureID": 5650, + "Label": "105004-5650 via Conventional from 105005 -> 105006", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105005, + "TargetID": 105006, + "Directional": true + } + ] + }, + { + "ID": 19857, + "SourceStructureID": 105007, + "TargetStructureID": 5650, + "Label": "105007-5650 via Conventional from 105008 -> 105009", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105008, + "TargetID": 105009, + "Directional": true + } + ] + }, + { + "ID": 19858, + "SourceStructureID": 105010, + "TargetStructureID": 5650, + "Label": "105010-5650 via Conventional from 105011 -> 105012", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105011, + "TargetID": 105012, + "Directional": true + } + ] + }, + { + "ID": 19859, + "SourceStructureID": 105016, + "TargetStructureID": 5650, + "Label": "105016-5650 via Conventional from 105017 -> 105018", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105017, + "TargetID": 105018, + "Directional": true + } + ] + }, + { + "ID": 19860, + "SourceStructureID": 105022, + "TargetStructureID": 5650, + "Label": "105022-5650 via Conventional from 105026 -> 105027, 105028 -> 105029", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105026, + "TargetID": 105027, + "Directional": true + }, + { + "SourceID": 105028, + "TargetID": 105029, + "Directional": true + } + ] + }, + { + "ID": 19861, + "SourceStructureID": 105030, + "TargetStructureID": 5650, + "Label": "105030-5650 via Conventional from 105032 -> 105033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105032, + "TargetID": 105033, + "Directional": true + } + ] + }, + { + "ID": 19862, + "SourceStructureID": 105036, + "TargetStructureID": 5650, + "Label": "105036-5650 via Conventional from 105037 -> 105038", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105037, + "TargetID": 105038, + "Directional": true + } + ] + }, + { + "ID": 19863, + "SourceStructureID": 105040, + "TargetStructureID": 5650, + "Label": "105040-5650 via Conventional from 105041 -> 105042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105041, + "TargetID": 105042, + "Directional": true + } + ] + }, + { + "ID": 19864, + "SourceStructureID": 105044, + "TargetStructureID": 5650, + "Label": "105044-5650 via Conventional from 105045 -> 105046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105045, + "TargetID": 105046, + "Directional": true + } + ] + }, + { + "ID": 19865, + "SourceStructureID": 105053, + "TargetStructureID": 5650, + "Label": "105053-5650 via Conventional from 105054 -> 105055", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105054, + "TargetID": 105055, + "Directional": true + } + ] + }, + { + "ID": 19866, + "SourceStructureID": 105058, + "TargetStructureID": 5650, + "Label": "105058-5650 via Conventional from 105059 -> 105060", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105059, + "TargetID": 105060, + "Directional": true + } + ] + }, + { + "ID": 19867, + "SourceStructureID": 105064, + "TargetStructureID": 5650, + "Label": "105064-5650 via Conventional from 118211 -> 118210", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118211, + "TargetID": 118210, + "Directional": true + } + ] + }, + { + "ID": 19868, + "SourceStructureID": 105067, + "TargetStructureID": 5650, + "Label": "105067-5650 via Conventional from 105068 -> 105069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105068, + "TargetID": 105069, + "Directional": true + } + ] + }, + { + "ID": 19869, + "SourceStructureID": 105075, + "TargetStructureID": 5650, + "Label": "105075-5650 via Conventional from 105076 -> 105077", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105076, + "TargetID": 105077, + "Directional": true + } + ] + }, + { + "ID": 19870, + "SourceStructureID": 105075, + "TargetStructureID": 128803, + "Label": "105075-128803 via Conventional from 128806 -> 128805", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128806, + "TargetID": 128805, + "Directional": true + } + ] + }, + { + "ID": 19871, + "SourceStructureID": 105078, + "TargetStructureID": 5650, + "Label": "105078-5650 via Conventional from 105079 -> 105080", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105079, + "TargetID": 105080, + "Directional": true + } + ] + }, + { + "ID": 19872, + "SourceStructureID": 105081, + "TargetStructureID": 5650, + "Label": "105081-5650 via Conventional from 105082 -> 105083", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105082, + "TargetID": 105083, + "Directional": true + } + ] + }, + { + "ID": 19873, + "SourceStructureID": 105087, + "TargetStructureID": 5650, + "Label": "105087-5650 via Conventional from 105088 -> 105089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105088, + "TargetID": 105089, + "Directional": true + } + ] + }, + { + "ID": 19874, + "SourceStructureID": 105090, + "TargetStructureID": 1021, + "Label": "105090-1021 via Conventional from 125084 -> 125082", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125084, + "TargetID": 125082, + "Directional": true + } + ] + }, + { + "ID": 19875, + "SourceStructureID": 105090, + "TargetStructureID": 5650, + "Label": "105090-5650 via Conventional from 105091 -> 105092", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105091, + "TargetID": 105092, + "Directional": true + } + ] + }, + { + "ID": 19876, + "SourceStructureID": 105095, + "TargetStructureID": 5650, + "Label": "105095-5650 via Conventional from 105096 -> 105097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105096, + "TargetID": 105097, + "Directional": true + } + ] + }, + { + "ID": 19877, + "SourceStructureID": 105095, + "TargetStructureID": 6047, + "Label": "105095-6047 via Conventional from 112338 -> 112336", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112338, + "TargetID": 112336, + "Directional": true + } + ] + }, + { + "ID": 19878, + "SourceStructureID": 105095, + "TargetStructureID": 112389, + "Label": "105095-112389 via Conventional from 126696 -> 126698", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126696, + "TargetID": 126698, + "Directional": true + } + ] + }, + { + "ID": 19879, + "SourceStructureID": 105102, + "TargetStructureID": 5650, + "Label": "105102-5650 via Conventional from 105103 -> 105104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105103, + "TargetID": 105104, + "Directional": true + } + ] + }, + { + "ID": 19880, + "SourceStructureID": 105108, + "TargetStructureID": 5650, + "Label": "105108-5650 via Conventional from 105109 -> 105110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105109, + "TargetID": 105110, + "Directional": true + } + ] + }, + { + "ID": 19881, + "SourceStructureID": 105119, + "TargetStructureID": 5650, + "Label": "105119-5650 via Conventional from 105120 -> 105121", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105120, + "TargetID": 105121, + "Directional": true + } + ] + }, + { + "ID": 19882, + "SourceStructureID": 105122, + "TargetStructureID": 5650, + "Label": "105122-5650 via Conventional from 120571 -> 105124", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120571, + "TargetID": 105124, + "Directional": true + } + ] + }, + { + "ID": 19883, + "SourceStructureID": 105128, + "TargetStructureID": 5650, + "Label": "105128-5650 via Conventional from 105129 -> 105130", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105129, + "TargetID": 105130, + "Directional": true + } + ] + }, + { + "ID": 19884, + "SourceStructureID": 105131, + "TargetStructureID": 5650, + "Label": "105131-5650 via Conventional from 105133 -> 105134", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105133, + "TargetID": 105134, + "Directional": true + } + ] + }, + { + "ID": 19885, + "SourceStructureID": 105135, + "TargetStructureID": 5650, + "Label": "105135-5650 via Conventional from 105136 -> 105137", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105136, + "TargetID": 105137, + "Directional": true + } + ] + }, + { + "ID": 19886, + "SourceStructureID": 105140, + "TargetStructureID": 5650, + "Label": "105140-5650 via Conventional from 105141 -> 105142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105141, + "TargetID": 105142, + "Directional": true + } + ] + }, + { + "ID": 19887, + "SourceStructureID": 105146, + "TargetStructureID": 6047, + "Label": "105146-6047 via Conventional from 112403 -> 19730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112403, + "TargetID": 19730, + "Directional": true + } + ] + }, + { + "ID": 19888, + "SourceStructureID": 105148, + "TargetStructureID": 6050, + "Label": "105148-6050 via Conventional from 114364 -> 114363", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114364, + "TargetID": 114363, + "Directional": true + } + ] + }, + { + "ID": 19889, + "SourceStructureID": 105153, + "TargetStructureID": 5650, + "Label": "105153-5650 via Conventional from 105154 -> 105155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105154, + "TargetID": 105155, + "Directional": true + } + ] + }, + { + "ID": 19890, + "SourceStructureID": 105161, + "TargetStructureID": 5650, + "Label": "105161-5650 via Conventional from 105162 -> 105163", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105162, + "TargetID": 105163, + "Directional": true + } + ] + }, + { + "ID": 19891, + "SourceStructureID": 105171, + "TargetStructureID": 5650, + "Label": "105171-5650 via Conventional from 105175 -> 105176", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105175, + "TargetID": 105176, + "Directional": true + } + ] + }, + { + "ID": 19892, + "SourceStructureID": 105177, + "TargetStructureID": 5650, + "Label": "105177-5650 via Conventional from 105178 -> 105179", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105178, + "TargetID": 105179, + "Directional": true + } + ] + }, + { + "ID": 19893, + "SourceStructureID": 105180, + "TargetStructureID": 5650, + "Label": "105180-5650 via Conventional from 105181 -> 105182", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105181, + "TargetID": 105182, + "Directional": true + } + ] + }, + { + "ID": 19894, + "SourceStructureID": 105188, + "TargetStructureID": 5650, + "Label": "105188-5650 via Conventional from 105194 -> 105195", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105194, + "TargetID": 105195, + "Directional": true + } + ] + }, + { + "ID": 19895, + "SourceStructureID": 105188, + "TargetStructureID": 6050, + "Label": "105188-6050 via Conventional from 114352 -> 114005", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114352, + "TargetID": 114005, + "Directional": true + } + ] + }, + { + "ID": 19896, + "SourceStructureID": 105210, + "TargetStructureID": 133891, + "Label": "105210-133891 via Conventional from 133897 -> 133896", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133897, + "TargetID": 133896, + "Directional": true + } + ] + }, + { + "ID": 19897, + "SourceStructureID": 105212, + "TargetStructureID": 469, + "Label": "105212-469 via Conventional from 105770 -> 105784, 106222 -> 106225, 106229 -> 106236", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105770, + "TargetID": 105784, + "Directional": true + }, + { + "SourceID": 106222, + "TargetID": 106225, + "Directional": true + }, + { + "SourceID": 106229, + "TargetID": 106236, + "Directional": true + } + ] + }, + { + "ID": 19898, + "SourceStructureID": 105212, + "TargetStructureID": 10957, + "Label": "105212-10957 via Conventional from 105708 -> 105709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105708, + "TargetID": 105709, + "Directional": true + } + ] + }, + { + "ID": 19899, + "SourceStructureID": 105219, + "TargetStructureID": 5531, + "Label": "105219-5531 via Conventional from 105220 -> 105221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105220, + "TargetID": 105221, + "Directional": true + } + ] + }, + { + "ID": 19900, + "SourceStructureID": 105228, + "TargetStructureID": 5531, + "Label": "105228-5531 via Conventional from 105229 -> 105231", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105229, + "TargetID": 105231, + "Directional": true + } + ] + }, + { + "ID": 19901, + "SourceStructureID": 105246, + "TargetStructureID": 5531, + "Label": "105246-5531 via Conventional from 105247 -> 105248", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105247, + "TargetID": 105248, + "Directional": true + } + ] + }, + { + "ID": 19902, + "SourceStructureID": 105250, + "TargetStructureID": 5531, + "Label": "105250-5531 via Conventional from 105251 -> 105252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105251, + "TargetID": 105252, + "Directional": true + } + ] + }, + { + "ID": 19903, + "SourceStructureID": 105279, + "TargetStructureID": 5531, + "Label": "105279-5531 via Conventional from 105282 -> 105284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105282, + "TargetID": 105284, + "Directional": true + } + ] + }, + { + "ID": 19904, + "SourceStructureID": 105280, + "TargetStructureID": 5531, + "Label": "105280-5531 via Conventional from 105281 -> 105283", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105281, + "TargetID": 105283, + "Directional": true + } + ] + }, + { + "ID": 19905, + "SourceStructureID": 105294, + "TargetStructureID": 5531, + "Label": "105294-5531 via Conventional from 105295 -> 105296", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105295, + "TargetID": 105296, + "Directional": true + } + ] + }, + { + "ID": 19906, + "SourceStructureID": 105297, + "TargetStructureID": 5531, + "Label": "105297-5531 via Conventional from 105298 -> 105299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105298, + "TargetID": 105299, + "Directional": true + } + ] + }, + { + "ID": 19907, + "SourceStructureID": 105300, + "TargetStructureID": 5531, + "Label": "105300-5531 via Conventional from 105301 -> 105302", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105301, + "TargetID": 105302, + "Directional": true + } + ] + }, + { + "ID": 19908, + "SourceStructureID": 105313, + "TargetStructureID": 5531, + "Label": "105313-5531 via Conventional from 106202 -> 106203", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106202, + "TargetID": 106203, + "Directional": true + } + ] + }, + { + "ID": 19909, + "SourceStructureID": 105322, + "TargetStructureID": 5649, + "Label": "105322-5649 via Conventional from 105323 -> 105321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105323, + "TargetID": 105321, + "Directional": true + } + ] + }, + { + "ID": 19910, + "SourceStructureID": 105326, + "TargetStructureID": 5649, + "Label": "105326-5649 via Conventional from 105328 -> 105318", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105328, + "TargetID": 105318, + "Directional": true + } + ] + }, + { + "ID": 19911, + "SourceStructureID": 105339, + "TargetStructureID": 5649, + "Label": "105339-5649 via Conventional from 105340 -> 105338", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105340, + "TargetID": 105338, + "Directional": true + } + ] + }, + { + "ID": 19912, + "SourceStructureID": 105341, + "TargetStructureID": 5531, + "Label": "105341-5531 via Conventional from 105344 -> 62922", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105344, + "TargetID": 62922, + "Directional": true + } + ] + }, + { + "ID": 19913, + "SourceStructureID": 105343, + "TargetStructureID": 5649, + "Label": "105343-5649 via Conventional from 105345 -> 105342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105345, + "TargetID": 105342, + "Directional": true + } + ] + }, + { + "ID": 19914, + "SourceStructureID": 105363, + "TargetStructureID": 5531, + "Label": "105363-5531 via Conventional from 105364 -> 105365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105364, + "TargetID": 105365, + "Directional": true + } + ] + }, + { + "ID": 19915, + "SourceStructureID": 105376, + "TargetStructureID": 5649, + "Label": "105376-5649 via Conventional from 105377 -> 105375", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105377, + "TargetID": 105375, + "Directional": true + } + ] + }, + { + "ID": 19916, + "SourceStructureID": 105382, + "TargetStructureID": 5649, + "Label": "105382-5649 via Conventional from 105383 -> 105381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105383, + "TargetID": 105381, + "Directional": true + } + ] + }, + { + "ID": 19917, + "SourceStructureID": 105421, + "TargetStructureID": 5649, + "Label": "105421-5649 via Conventional from 105422 -> 105420", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105422, + "TargetID": 105420, + "Directional": true + } + ] + }, + { + "ID": 19918, + "SourceStructureID": 105426, + "TargetStructureID": 5649, + "Label": "105426-5649 via Conventional from 105427 -> 55718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105427, + "TargetID": 55718, + "Directional": true + } + ] + }, + { + "ID": 19919, + "SourceStructureID": 105434, + "TargetStructureID": 5649, + "Label": "105434-5649 via Conventional from 105435 -> 105433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105435, + "TargetID": 105433, + "Directional": true + } + ] + }, + { + "ID": 19920, + "SourceStructureID": 105438, + "TargetStructureID": 5649, + "Label": "105438-5649 via Conventional from 105439 -> 55729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105439, + "TargetID": 55729, + "Directional": true + } + ] + }, + { + "ID": 19921, + "SourceStructureID": 105447, + "TargetStructureID": 5649, + "Label": "105447-5649 via Conventional from 105448 -> 105449", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105448, + "TargetID": 105449, + "Directional": true + } + ] + }, + { + "ID": 19922, + "SourceStructureID": 105450, + "TargetStructureID": 5649, + "Label": "105450-5649 via Conventional from 105451 -> 105453", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105451, + "TargetID": 105453, + "Directional": true + } + ] + }, + { + "ID": 19923, + "SourceStructureID": 105458, + "TargetStructureID": 5499, + "Label": "105458-5499 via Conventional from 105459 -> 105457", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105459, + "TargetID": 105457, + "Directional": true + } + ] + }, + { + "ID": 19924, + "SourceStructureID": 105464, + "TargetStructureID": 105467, + "Label": "105464-105467 via Ribbon Synapse from 105465 -> 105469", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105465, + "TargetID": 105469, + "Directional": true + } + ] + }, + { + "ID": 19925, + "SourceStructureID": 105464, + "TargetStructureID": 105474, + "Label": "105464-105474 via BC Conventional Synapse from 105473 -> 105475", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 105473, + "TargetID": 105475, + "Directional": true + } + ] + }, + { + "ID": 19926, + "SourceStructureID": 105467, + "TargetStructureID": 105464, + "Label": "105467-105464 via Conventional from 105468 -> 105466", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105468, + "TargetID": 105466, + "Directional": true + } + ] + }, + { + "ID": 19927, + "SourceStructureID": 105471, + "TargetStructureID": 105464, + "Label": "105471-105464 via Conventional from 105472 -> 105470", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105472, + "TargetID": 105470, + "Directional": true + } + ] + }, + { + "ID": 19928, + "SourceStructureID": 105477, + "TargetStructureID": 105464, + "Label": "105477-105464 via Conventional from 105478 -> 105476", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105478, + "TargetID": 105476, + "Directional": true + } + ] + }, + { + "ID": 19929, + "SourceStructureID": 105509, + "TargetStructureID": 105509, + "Label": "105509-105509 via Conventional from 105834 -> 105833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105834, + "TargetID": 105833, + "Directional": true + } + ] + }, + { + "ID": 19930, + "SourceStructureID": 105511, + "TargetStructureID": 5499, + "Label": "105511-5499 via Conventional from 105512 -> 105513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105512, + "TargetID": 105513, + "Directional": true + } + ] + }, + { + "ID": 19931, + "SourceStructureID": 105521, + "TargetStructureID": 5499, + "Label": "105521-5499 via Conventional from 105522 -> 105520", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105522, + "TargetID": 105520, + "Directional": true + } + ] + }, + { + "ID": 19932, + "SourceStructureID": 105526, + "TargetStructureID": 5499, + "Label": "105526-5499 via Conventional from 105527 -> 105519", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105527, + "TargetID": 105519, + "Directional": true + } + ] + }, + { + "ID": 19933, + "SourceStructureID": 105547, + "TargetStructureID": 5649, + "Label": "105547-5649 via Conventional from 105550 -> 105546", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105550, + "TargetID": 105546, + "Directional": true + } + ] + }, + { + "ID": 19934, + "SourceStructureID": 105548, + "TargetStructureID": 5649, + "Label": "105548-5649 via Conventional from 105549 -> 105545", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105549, + "TargetID": 105545, + "Directional": true + } + ] + }, + { + "ID": 19935, + "SourceStructureID": 105553, + "TargetStructureID": 5649, + "Label": "105553-5649 via Conventional from 105554 -> 105552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105554, + "TargetID": 105552, + "Directional": true + } + ] + }, + { + "ID": 19936, + "SourceStructureID": 105558, + "TargetStructureID": 5649, + "Label": "105558-5649 via Conventional from 105559 -> 105556", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105559, + "TargetID": 105556, + "Directional": true + } + ] + }, + { + "ID": 19937, + "SourceStructureID": 105580, + "TargetStructureID": 5649, + "Label": "105580-5649 via Conventional from 105581 -> 105579", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105581, + "TargetID": 105579, + "Directional": true + } + ] + }, + { + "ID": 19938, + "SourceStructureID": 105588, + "TargetStructureID": 5649, + "Label": "105588-5649 via Conventional from 105589 -> 105587", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105589, + "TargetID": 105587, + "Directional": true + } + ] + }, + { + "ID": 19939, + "SourceStructureID": 105604, + "TargetStructureID": 5649, + "Label": "105604-5649 via Conventional from 105607 -> 105593", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105607, + "TargetID": 105593, + "Directional": true + } + ] + }, + { + "ID": 19940, + "SourceStructureID": 105612, + "TargetStructureID": 5649, + "Label": "105612-5649 via Conventional from 105613 -> 105614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105613, + "TargetID": 105614, + "Directional": true + } + ] + }, + { + "ID": 19941, + "SourceStructureID": 105624, + "TargetStructureID": 5499, + "Label": "105624-5499 via Conventional from 105625 -> 105623", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105625, + "TargetID": 105623, + "Directional": true + } + ] + }, + { + "ID": 19942, + "SourceStructureID": 105633, + "TargetStructureID": 5649, + "Label": "105633-5649 via Conventional from 105654 -> 53903", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105654, + "TargetID": 53903, + "Directional": true + } + ] + }, + { + "ID": 19943, + "SourceStructureID": 105635, + "TargetStructureID": 5514, + "Label": "105635-5514 via Conventional from 105638 -> 50697", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105638, + "TargetID": 50697, + "Directional": true + } + ] + }, + { + "ID": 19944, + "SourceStructureID": 105635, + "TargetStructureID": 45672, + "Label": "105635-45672 via Conventional from 105636 -> 105634", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105636, + "TargetID": 105634, + "Directional": true + } + ] + }, + { + "ID": 19945, + "SourceStructureID": 105640, + "TargetStructureID": 5649, + "Label": "105640-5649 via Conventional from 105641 -> 105639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105641, + "TargetID": 105639, + "Directional": true + } + ] + }, + { + "ID": 19946, + "SourceStructureID": 105643, + "TargetStructureID": 5649, + "Label": "105643-5649 via Conventional from 105644 -> 105642", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105644, + "TargetID": 105642, + "Directional": true + } + ] + }, + { + "ID": 19947, + "SourceStructureID": 105663, + "TargetStructureID": 5649, + "Label": "105663-5649 via Conventional from 105664 -> 53906", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105664, + "TargetID": 53906, + "Directional": true + } + ] + }, + { + "ID": 19948, + "SourceStructureID": 105670, + "TargetStructureID": 5649, + "Label": "105670-5649 via Conventional from 105671 -> 55734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105671, + "TargetID": 55734, + "Directional": true + } + ] + }, + { + "ID": 19949, + "SourceStructureID": 105679, + "TargetStructureID": 5649, + "Label": "105679-5649 via Conventional from 105680 -> 105682", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105680, + "TargetID": 105682, + "Directional": true + } + ] + }, + { + "ID": 19950, + "SourceStructureID": 105694, + "TargetStructureID": 5649, + "Label": "105694-5649 via Conventional from 105695 -> 105693", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105695, + "TargetID": 105693, + "Directional": true + } + ] + }, + { + "ID": 19951, + "SourceStructureID": 105696, + "TargetStructureID": 5649, + "Label": "105696-5649 via Conventional from 105697 -> 53939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105697, + "TargetID": 53939, + "Directional": true + } + ] + }, + { + "ID": 19952, + "SourceStructureID": 105706, + "TargetStructureID": 5649, + "Label": "105706-5649 via Conventional from 105707 -> 53940", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105707, + "TargetID": 53940, + "Directional": true + } + ] + }, + { + "ID": 19953, + "SourceStructureID": 105719, + "TargetStructureID": 5649, + "Label": "105719-5649 via Conventional from 105720 -> 53944", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105720, + "TargetID": 53944, + "Directional": true + } + ] + }, + { + "ID": 19954, + "SourceStructureID": 105729, + "TargetStructureID": 5649, + "Label": "105729-5649 via Conventional from 105730 -> 105728", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105730, + "TargetID": 105728, + "Directional": true + } + ] + }, + { + "ID": 19955, + "SourceStructureID": 105739, + "TargetStructureID": 5649, + "Label": "105739-5649 via Conventional from 105858 -> 105738", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105858, + "TargetID": 105738, + "Directional": true + } + ] + }, + { + "ID": 19956, + "SourceStructureID": 105745, + "TargetStructureID": 5649, + "Label": "105745-5649 via Conventional from 105849 -> 105744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105849, + "TargetID": 105744, + "Directional": true + } + ] + }, + { + "ID": 19957, + "SourceStructureID": 105749, + "TargetStructureID": 5729, + "Label": "105749-5729 via Conventional from 105750 -> 105748", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105750, + "TargetID": 105748, + "Directional": true + } + ] + }, + { + "ID": 19958, + "SourceStructureID": 105780, + "TargetStructureID": 6857, + "Label": "105780-6857 via Ribbon Synapse from 108553 -> 108554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 108553, + "TargetID": 108554, + "Directional": true + } + ] + }, + { + "ID": 19959, + "SourceStructureID": 105788, + "TargetStructureID": 5649, + "Label": "105788-5649 via Conventional from 105800 -> 105787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105800, + "TargetID": 105787, + "Directional": true + } + ] + }, + { + "ID": 19960, + "SourceStructureID": 105838, + "TargetStructureID": 6155, + "Label": "105838-6155 via Conventional from 105839 -> 49086", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105839, + "TargetID": 49086, + "Directional": true + } + ] + }, + { + "ID": 19961, + "SourceStructureID": 105855, + "TargetStructureID": 6155, + "Label": "105855-6155 via Conventional from 105859 -> 30581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105859, + "TargetID": 30581, + "Directional": true + } + ] + }, + { + "ID": 19962, + "SourceStructureID": 105873, + "TargetStructureID": 6155, + "Label": "105873-6155 via Conventional from 105874 -> 49087", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105874, + "TargetID": 49087, + "Directional": true + } + ] + }, + { + "ID": 19963, + "SourceStructureID": 105875, + "TargetStructureID": 5649, + "Label": "105875-5649 via Conventional from 105876 -> 53956", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105876, + "TargetID": 53956, + "Directional": true + } + ] + }, + { + "ID": 19964, + "SourceStructureID": 105877, + "TargetStructureID": 6155, + "Label": "105877-6155 via Conventional from 105880 -> 16877", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105880, + "TargetID": 16877, + "Directional": true + } + ] + }, + { + "ID": 19965, + "SourceStructureID": 105878, + "TargetStructureID": 5649, + "Label": "105878-5649 via Conventional from 105879 -> 53951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105879, + "TargetID": 53951, + "Directional": true + } + ] + }, + { + "ID": 19966, + "SourceStructureID": 105881, + "TargetStructureID": 6155, + "Label": "105881-6155 via Conventional from 105882 -> 105883", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105882, + "TargetID": 105883, + "Directional": true + } + ] + }, + { + "ID": 19967, + "SourceStructureID": 105884, + "TargetStructureID": 5649, + "Label": "105884-5649 via Conventional from 105885 -> 53965", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105885, + "TargetID": 53965, + "Directional": true + } + ] + }, + { + "ID": 19968, + "SourceStructureID": 105893, + "TargetStructureID": 5649, + "Label": "105893-5649 via Conventional from 105894 -> 53963", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105894, + "TargetID": 53963, + "Directional": true + } + ] + }, + { + "ID": 19969, + "SourceStructureID": 105907, + "TargetStructureID": 5649, + "Label": "105907-5649 via Conventional from 105909 -> 105918", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105909, + "TargetID": 105918, + "Directional": true + } + ] + }, + { + "ID": 19970, + "SourceStructureID": 105924, + "TargetStructureID": 5649, + "Label": "105924-5649 via Conventional from 105925 -> 105923", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105925, + "TargetID": 105923, + "Directional": true + } + ] + }, + { + "ID": 19971, + "SourceStructureID": 105927, + "TargetStructureID": 5649, + "Label": "105927-5649 via Conventional from 105929 -> 105926", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105929, + "TargetID": 105926, + "Directional": true + } + ] + }, + { + "ID": 19972, + "SourceStructureID": 105927, + "TargetStructureID": 6047, + "Label": "105927-6047 via Conventional from 112178 -> 112179", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112178, + "TargetID": 112179, + "Directional": true + } + ] + }, + { + "ID": 19973, + "SourceStructureID": 105928, + "TargetStructureID": 6155, + "Label": "105928-6155 via Conventional from 106002 -> 15600, 106047 -> 48325", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106002, + "TargetID": 15600, + "Directional": true + }, + { + "SourceID": 106047, + "TargetID": 48325, + "Directional": true + } + ] + }, + { + "ID": 19974, + "SourceStructureID": 105936, + "TargetStructureID": 5649, + "Label": "105936-5649 via Conventional from 105937 -> 53975", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105937, + "TargetID": 53975, + "Directional": true + } + ] + }, + { + "ID": 19975, + "SourceStructureID": 105968, + "TargetStructureID": 5649, + "Label": "105968-5649 via Conventional from 105969 -> 105967", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105969, + "TargetID": 105967, + "Directional": true + } + ] + }, + { + "ID": 19976, + "SourceStructureID": 105970, + "TargetStructureID": 6155, + "Label": "105970-6155 via Conventional from 105984 -> 29759, 105987 -> 48317", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105984, + "TargetID": 29759, + "Directional": true + }, + { + "SourceID": 105987, + "TargetID": 48317, + "Directional": true + } + ] + }, + { + "ID": 19977, + "SourceStructureID": 105971, + "TargetStructureID": 6155, + "Label": "105971-6155 via Conventional from 105994 -> 48316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105994, + "TargetID": 48316, + "Directional": true + } + ] + }, + { + "ID": 19978, + "SourceStructureID": 105972, + "TargetStructureID": 6155, + "Label": "105972-6155 via Conventional from 105981 -> 15602", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105981, + "TargetID": 15602, + "Directional": true + } + ] + }, + { + "ID": 19979, + "SourceStructureID": 105982, + "TargetStructureID": 5649, + "Label": "105982-5649 via Conventional from 105983 -> 54000", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105983, + "TargetID": 54000, + "Directional": true + } + ] + }, + { + "ID": 19980, + "SourceStructureID": 105990, + "TargetStructureID": 5649, + "Label": "105990-5649 via Conventional from 105991 -> 105988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 105991, + "TargetID": 105988, + "Directional": true + } + ] + }, + { + "ID": 19981, + "SourceStructureID": 106000, + "TargetStructureID": 5649, + "Label": "106000-5649 via Conventional from 106001 -> 105999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106001, + "TargetID": 105999, + "Directional": true + } + ] + }, + { + "ID": 19982, + "SourceStructureID": 106007, + "TargetStructureID": 5649, + "Label": "106007-5649 via Conventional from 106009 -> 54001", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106009, + "TargetID": 54001, + "Directional": true + } + ] + }, + { + "ID": 19983, + "SourceStructureID": 106023, + "TargetStructureID": 6142, + "Label": "106023-6142 via Conventional from 106024 -> 23335", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106024, + "TargetID": 23335, + "Directional": true + } + ] + }, + { + "ID": 19984, + "SourceStructureID": 106027, + "TargetStructureID": 5649, + "Label": "106027-5649 via Conventional from 106028 -> 106026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106028, + "TargetID": 106026, + "Directional": true + } + ] + }, + { + "ID": 19985, + "SourceStructureID": 106041, + "TargetStructureID": 5649, + "Label": "106041-5649 via Conventional from 106042 -> 106040", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106042, + "TargetID": 106040, + "Directional": true + } + ] + }, + { + "ID": 19986, + "SourceStructureID": 106070, + "TargetStructureID": 6155, + "Label": "106070-6155 via Conventional from 106071 -> 29760", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106071, + "TargetID": 29760, + "Directional": true + } + ] + }, + { + "ID": 19987, + "SourceStructureID": 106075, + "TargetStructureID": 6155, + "Label": "106075-6155 via Conventional from 106076 -> 15758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106076, + "TargetID": 15758, + "Directional": true + } + ] + }, + { + "ID": 19988, + "SourceStructureID": 106087, + "TargetStructureID": 6155, + "Label": "106087-6155 via Conventional from 106088 -> 106089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106088, + "TargetID": 106089, + "Directional": true + } + ] + }, + { + "ID": 19989, + "SourceStructureID": 106090, + "TargetStructureID": 6155, + "Label": "106090-6155 via Conventional from 106091 -> 106092", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106091, + "TargetID": 106092, + "Directional": true + } + ] + }, + { + "ID": 19990, + "SourceStructureID": 106107, + "TargetStructureID": 5649, + "Label": "106107-5649 via Conventional from 106108 -> 31041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106108, + "TargetID": 31041, + "Directional": true + } + ] + }, + { + "ID": 19991, + "SourceStructureID": 106127, + "TargetStructureID": 32035, + "Label": "106127-32035 via Conventional from 106129 -> 41670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106129, + "TargetID": 41670, + "Directional": true + } + ] + }, + { + "ID": 19992, + "SourceStructureID": 106127, + "TargetStructureID": 32945, + "Label": "106127-32945 via Conventional from 106128 -> 106126", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106128, + "TargetID": 106126, + "Directional": true + } + ] + }, + { + "ID": 19993, + "SourceStructureID": 106131, + "TargetStructureID": 5649, + "Label": "106131-5649 via Conventional from 106132 -> 106130", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106132, + "TargetID": 106130, + "Directional": true + } + ] + }, + { + "ID": 19994, + "SourceStructureID": 106143, + "TargetStructureID": 5531, + "Label": "106143-5531 via Conventional from 106144 -> 62924", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106144, + "TargetID": 62924, + "Directional": true + } + ] + }, + { + "ID": 19995, + "SourceStructureID": 106153, + "TargetStructureID": 5531, + "Label": "106153-5531 via Conventional from 106154 -> 106155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106154, + "TargetID": 106155, + "Directional": true + } + ] + }, + { + "ID": 19996, + "SourceStructureID": 106158, + "TargetStructureID": 5531, + "Label": "106158-5531 via Conventional from 106159 -> 106160", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106159, + "TargetID": 106160, + "Directional": true + } + ] + }, + { + "ID": 19997, + "SourceStructureID": 106170, + "TargetStructureID": 5531, + "Label": "106170-5531 via Conventional from 106171 -> 62927", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106171, + "TargetID": 62927, + "Directional": true + } + ] + }, + { + "ID": 19998, + "SourceStructureID": 106218, + "TargetStructureID": 5531, + "Label": "106218-5531 via Conventional from 106219 -> 106220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106219, + "TargetID": 106220, + "Directional": true + } + ] + }, + { + "ID": 19999, + "SourceStructureID": 106230, + "TargetStructureID": 5531, + "Label": "106230-5531 via Conventional from 106231 -> 106232", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106231, + "TargetID": 106232, + "Directional": true + } + ] + }, + { + "ID": 20000, + "SourceStructureID": 106240, + "TargetStructureID": 5531, + "Label": "106240-5531 via Conventional from 106241 -> 106242", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106241, + "TargetID": 106242, + "Directional": true + } + ] + }, + { + "ID": 20001, + "SourceStructureID": 106240, + "TargetStructureID": 5637, + "Label": "106240-5637 via Conventional from 120205 -> 120204", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120205, + "TargetID": 120204, + "Directional": true + } + ] + }, + { + "ID": 20002, + "SourceStructureID": 106247, + "TargetStructureID": 5649, + "Label": "106247-5649 via Conventional from 106254 -> 106245", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106254, + "TargetID": 106245, + "Directional": true + } + ] + }, + { + "ID": 20003, + "SourceStructureID": 106256, + "TargetStructureID": 5531, + "Label": "106256-5531 via Conventional from 106259 -> 106260", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106259, + "TargetID": 106260, + "Directional": true + } + ] + }, + { + "ID": 20004, + "SourceStructureID": 106258, + "TargetStructureID": 5649, + "Label": "106258-5649 via Conventional from 106261 -> 54091", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106261, + "TargetID": 54091, + "Directional": true + } + ] + }, + { + "ID": 20005, + "SourceStructureID": 106291, + "TargetStructureID": 5649, + "Label": "106291-5649 via Conventional from 106292 -> 54184", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106292, + "TargetID": 54184, + "Directional": true + } + ] + }, + { + "ID": 20006, + "SourceStructureID": 106296, + "TargetStructureID": 5649, + "Label": "106296-5649 via Conventional from 106297 -> 106294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106297, + "TargetID": 106294, + "Directional": true + } + ] + }, + { + "ID": 20007, + "SourceStructureID": 106313, + "TargetStructureID": 5649, + "Label": "106313-5649 via Conventional from 106314 -> 54095", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106314, + "TargetID": 54095, + "Directional": true + } + ] + }, + { + "ID": 20008, + "SourceStructureID": 106326, + "TargetStructureID": 5649, + "Label": "106326-5649 via Conventional from 106327 -> 54182", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106327, + "TargetID": 54182, + "Directional": true + } + ] + }, + { + "ID": 20009, + "SourceStructureID": 106329, + "TargetStructureID": 5650, + "Label": "106329-5650 via Conventional from 106331 -> 106332", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106331, + "TargetID": 106332, + "Directional": true + } + ] + }, + { + "ID": 20010, + "SourceStructureID": 106333, + "TargetStructureID": 5649, + "Label": "106333-5649 via Conventional from 106334 -> 106322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106334, + "TargetID": 106322, + "Directional": true + } + ] + }, + { + "ID": 20011, + "SourceStructureID": 106336, + "TargetStructureID": 5650, + "Label": "106336-5650 via Conventional from 106338 -> 29937", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106338, + "TargetID": 29937, + "Directional": true + } + ] + }, + { + "ID": 20012, + "SourceStructureID": 106347, + "TargetStructureID": 5649, + "Label": "106347-5649 via Conventional from 106348 -> 54121", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106348, + "TargetID": 54121, + "Directional": true + } + ] + }, + { + "ID": 20013, + "SourceStructureID": 106350, + "TargetStructureID": 5649, + "Label": "106350-5649 via Conventional from 106351 -> 106349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106351, + "TargetID": 106349, + "Directional": true + } + ] + }, + { + "ID": 20014, + "SourceStructureID": 106355, + "TargetStructureID": 5650, + "Label": "106355-5650 via Conventional from 106358 -> 29929", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106358, + "TargetID": 29929, + "Directional": true + } + ] + }, + { + "ID": 20015, + "SourceStructureID": 106355, + "TargetStructureID": 6050, + "Label": "106355-6050 via Conventional from 127637 -> 54411", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127637, + "TargetID": 54411, + "Directional": true + } + ] + }, + { + "ID": 20016, + "SourceStructureID": 106369, + "TargetStructureID": 5650, + "Label": "106369-5650 via Conventional from 106373 -> 106374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106373, + "TargetID": 106374, + "Directional": true + } + ] + }, + { + "ID": 20017, + "SourceStructureID": 106370, + "TargetStructureID": 5650, + "Label": "106370-5650 via Conventional from 106371 -> 106372", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106371, + "TargetID": 106372, + "Directional": true + } + ] + }, + { + "ID": 20018, + "SourceStructureID": 106375, + "TargetStructureID": 1021, + "Label": "106375-1021 via Conventional from 126683 -> 126682", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126683, + "TargetID": 126682, + "Directional": true + } + ] + }, + { + "ID": 20019, + "SourceStructureID": 106375, + "TargetStructureID": 5650, + "Label": "106375-5650 via Conventional from 106376 -> 106377", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106376, + "TargetID": 106377, + "Directional": true + } + ] + }, + { + "ID": 20020, + "SourceStructureID": 106384, + "TargetStructureID": 106387, + "Label": "106384-106387 via Ribbon Synapse from 106386 -> 106388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 106386, + "TargetID": 106388, + "Directional": true + } + ] + }, + { + "ID": 20021, + "SourceStructureID": 106387, + "TargetStructureID": 6155, + "Label": "106387-6155 via Conventional from 106389 -> 106390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106389, + "TargetID": 106390, + "Directional": true + } + ] + }, + { + "ID": 20022, + "SourceStructureID": 106394, + "TargetStructureID": 6155, + "Label": "106394-6155 via Conventional from 106403 -> 106404", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106403, + "TargetID": 106404, + "Directional": true + } + ] + }, + { + "ID": 20023, + "SourceStructureID": 106397, + "TargetStructureID": 5649, + "Label": "106397-5649 via Conventional from 106409 -> 54113", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106409, + "TargetID": 54113, + "Directional": true + } + ] + }, + { + "ID": 20024, + "SourceStructureID": 106398, + "TargetStructureID": 6155, + "Label": "106398-6155 via Conventional from 106399 -> 106400", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106399, + "TargetID": 106400, + "Directional": true + } + ] + }, + { + "ID": 20025, + "SourceStructureID": 106413, + "TargetStructureID": 6155, + "Label": "106413-6155 via Conventional from 106414 -> 106415", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106414, + "TargetID": 106415, + "Directional": true + } + ] + }, + { + "ID": 20026, + "SourceStructureID": 106418, + "TargetStructureID": 6155, + "Label": "106418-6155 via Conventional from 106423 -> 15763", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106423, + "TargetID": 15763, + "Directional": true + } + ] + }, + { + "ID": 20027, + "SourceStructureID": 106421, + "TargetStructureID": 5649, + "Label": "106421-5649 via Conventional from 106422 -> 54110", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106422, + "TargetID": 54110, + "Directional": true + } + ] + }, + { + "ID": 20028, + "SourceStructureID": 106424, + "TargetStructureID": 6155, + "Label": "106424-6155 via Conventional from 106425 -> 106426", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106425, + "TargetID": 106426, + "Directional": true + } + ] + }, + { + "ID": 20029, + "SourceStructureID": 106427, + "TargetStructureID": 6155, + "Label": "106427-6155 via Conventional from 106429 -> 106430", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106429, + "TargetID": 106430, + "Directional": true + } + ] + }, + { + "ID": 20030, + "SourceStructureID": 106438, + "TargetStructureID": 4569, + "Label": "106438-4569 via Conventional from 106439 -> 131403", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106439, + "TargetID": 131403, + "Directional": true + } + ] + }, + { + "ID": 20031, + "SourceStructureID": 106446, + "TargetStructureID": 6155, + "Label": "106446-6155 via Conventional from 106447 -> 30582", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106447, + "TargetID": 30582, + "Directional": true + } + ] + }, + { + "ID": 20032, + "SourceStructureID": 106454, + "TargetStructureID": 6155, + "Label": "106454-6155 via Conventional from 106455 -> 15807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106455, + "TargetID": 15807, + "Directional": true + } + ] + }, + { + "ID": 20033, + "SourceStructureID": 106456, + "TargetStructureID": 6155, + "Label": "106456-6155 via Conventional from 106457 -> 15800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106457, + "TargetID": 15800, + "Directional": true + } + ] + }, + { + "ID": 20034, + "SourceStructureID": 106458, + "TargetStructureID": 6155, + "Label": "106458-6155 via Conventional from 106462 -> 15802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106462, + "TargetID": 15802, + "Directional": true + } + ] + }, + { + "ID": 20035, + "SourceStructureID": 106463, + "TargetStructureID": 6155, + "Label": "106463-6155 via Conventional from 106465 -> 15765", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106465, + "TargetID": 15765, + "Directional": true + } + ] + }, + { + "ID": 20036, + "SourceStructureID": 106466, + "TargetStructureID": 6155, + "Label": "106466-6155 via Conventional from 106467 -> 48329", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106467, + "TargetID": 48329, + "Directional": true + } + ] + }, + { + "ID": 20037, + "SourceStructureID": 106468, + "TargetStructureID": 6155, + "Label": "106468-6155 via Conventional from 106469 -> 29763", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106469, + "TargetID": 29763, + "Directional": true + } + ] + }, + { + "ID": 20038, + "SourceStructureID": 106470, + "TargetStructureID": 6155, + "Label": "106470-6155 via Conventional from 106471 -> 49045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106471, + "TargetID": 49045, + "Directional": true + } + ] + }, + { + "ID": 20039, + "SourceStructureID": 106472, + "TargetStructureID": 6155, + "Label": "106472-6155 via Conventional from 106475 -> 106476", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106475, + "TargetID": 106476, + "Directional": true + } + ] + }, + { + "ID": 20040, + "SourceStructureID": 106478, + "TargetStructureID": 6155, + "Label": "106478-6155 via Conventional from 106479 -> 15804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106479, + "TargetID": 15804, + "Directional": true + } + ] + }, + { + "ID": 20041, + "SourceStructureID": 106490, + "TargetStructureID": 5531, + "Label": "106490-5531 via Conventional from 106491 -> 106492", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106491, + "TargetID": 106492, + "Directional": true + } + ] + }, + { + "ID": 20042, + "SourceStructureID": 106541, + "TargetStructureID": 5649, + "Label": "106541-5649 via Conventional from 106542 -> 54104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106542, + "TargetID": 54104, + "Directional": true + } + ] + }, + { + "ID": 20043, + "SourceStructureID": 106577, + "TargetStructureID": 6155, + "Label": "106577-6155 via Conventional from 106578 -> 48328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106578, + "TargetID": 48328, + "Directional": true + } + ] + }, + { + "ID": 20044, + "SourceStructureID": 106580, + "TargetStructureID": 6155, + "Label": "106580-6155 via Conventional from 106582 -> 15801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106582, + "TargetID": 15801, + "Directional": true + } + ] + }, + { + "ID": 20045, + "SourceStructureID": 106597, + "TargetStructureID": 5531, + "Label": "106597-5531 via Conventional from 106598 -> 106599", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106598, + "TargetID": 106599, + "Directional": true + } + ] + }, + { + "ID": 20046, + "SourceStructureID": 106616, + "TargetStructureID": 5649, + "Label": "106616-5649 via Conventional from 106658 -> 106615", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106658, + "TargetID": 106615, + "Directional": true + } + ] + }, + { + "ID": 20047, + "SourceStructureID": 106619, + "TargetStructureID": 106617, + "Label": "106619-106617 via Conventional from 106620 -> 106621, 106622 -> 106623", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106620, + "TargetID": 106621, + "Directional": true + }, + { + "SourceID": 106622, + "TargetID": 106623, + "Directional": true + } + ] + }, + { + "ID": 20048, + "SourceStructureID": 106637, + "TargetStructureID": 5531, + "Label": "106637-5531 via Conventional from 106640 -> 106641", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106640, + "TargetID": 106641, + "Directional": true + } + ] + }, + { + "ID": 20049, + "SourceStructureID": 106659, + "TargetStructureID": 5531, + "Label": "106659-5531 via Conventional from 106660 -> 54563", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106660, + "TargetID": 54563, + "Directional": true + } + ] + }, + { + "ID": 20050, + "SourceStructureID": 106661, + "TargetStructureID": 5649, + "Label": "106661-5649 via Conventional from 106663 -> 106662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106663, + "TargetID": 106662, + "Directional": true + } + ] + }, + { + "ID": 20051, + "SourceStructureID": 106665, + "TargetStructureID": 5649, + "Label": "106665-5649 via Conventional from 106668 -> 106601", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106668, + "TargetID": 106601, + "Directional": true + } + ] + }, + { + "ID": 20052, + "SourceStructureID": 106675, + "TargetStructureID": 5649, + "Label": "106675-5649 via Conventional from 135456 -> 135455", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135456, + "TargetID": 135455, + "Directional": true + } + ] + }, + { + "ID": 20053, + "SourceStructureID": 106696, + "TargetStructureID": 5649, + "Label": "106696-5649 via Conventional from 106699 -> 106695", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106699, + "TargetID": 106695, + "Directional": true + } + ] + }, + { + "ID": 20054, + "SourceStructureID": 106711, + "TargetStructureID": 6155, + "Label": "106711-6155 via Conventional from 106714 -> 15516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106714, + "TargetID": 15516, + "Directional": true + } + ] + }, + { + "ID": 20055, + "SourceStructureID": 106712, + "TargetStructureID": 5649, + "Label": "106712-5649 via Conventional from 106713 -> 106614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106713, + "TargetID": 106614, + "Directional": true + } + ] + }, + { + "ID": 20056, + "SourceStructureID": 106715, + "TargetStructureID": 5531, + "Label": "106715-5531 via Conventional from 106724 -> 54544", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106724, + "TargetID": 54544, + "Directional": true + } + ] + }, + { + "ID": 20057, + "SourceStructureID": 106717, + "TargetStructureID": 6155, + "Label": "106717-6155 via Conventional from 106722 -> 48277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106722, + "TargetID": 48277, + "Directional": true + } + ] + }, + { + "ID": 20058, + "SourceStructureID": 106727, + "TargetStructureID": 6155, + "Label": "106727-6155 via Conventional from 106739 -> 15517", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106739, + "TargetID": 15517, + "Directional": true + } + ] + }, + { + "ID": 20059, + "SourceStructureID": 106727, + "TargetStructureID": 24401, + "Label": "106727-24401 via Conventional from 106740 -> 48042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106740, + "TargetID": 48042, + "Directional": true + } + ] + }, + { + "ID": 20060, + "SourceStructureID": 106775, + "TargetStructureID": 5531, + "Label": "106775-5531 via Conventional from 106796 -> 54533", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106796, + "TargetID": 54533, + "Directional": true + } + ] + }, + { + "ID": 20061, + "SourceStructureID": 106781, + "TargetStructureID": 5649, + "Label": "106781-5649 via Conventional from 106795 -> 106794", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106795, + "TargetID": 106794, + "Directional": true + } + ] + }, + { + "ID": 20062, + "SourceStructureID": 106792, + "TargetStructureID": 5531, + "Label": "106792-5531 via Conventional from 106793 -> 54534", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106793, + "TargetID": 54534, + "Directional": true + } + ] + }, + { + "ID": 20063, + "SourceStructureID": 106801, + "TargetStructureID": 5649, + "Label": "106801-5649 via Conventional from 106803 -> 106800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106803, + "TargetID": 106800, + "Directional": true + } + ] + }, + { + "ID": 20064, + "SourceStructureID": 106809, + "TargetStructureID": 6155, + "Label": "106809-6155 via Conventional from 106810 -> 16130", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106810, + "TargetID": 16130, + "Directional": true + } + ] + }, + { + "ID": 20065, + "SourceStructureID": 106813, + "TargetStructureID": 5531, + "Label": "106813-5531 via Conventional from 106825 -> 54530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106825, + "TargetID": 54530, + "Directional": true + } + ] + }, + { + "ID": 20066, + "SourceStructureID": 106835, + "TargetStructureID": 5531, + "Label": "106835-5531 via Conventional from 106844 -> 54543", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106844, + "TargetID": 54543, + "Directional": true + } + ] + }, + { + "ID": 20067, + "SourceStructureID": 106839, + "TargetStructureID": 5531, + "Label": "106839-5531 via Conventional from 106841 -> 54529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106841, + "TargetID": 54529, + "Directional": true + } + ] + }, + { + "ID": 20068, + "SourceStructureID": 106848, + "TargetStructureID": 6155, + "Label": "106848-6155 via Conventional from 106852 -> 16135", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106852, + "TargetID": 16135, + "Directional": true + } + ] + }, + { + "ID": 20069, + "SourceStructureID": 106855, + "TargetStructureID": 5531, + "Label": "106855-5531 via Conventional from 106857 -> 54541", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106857, + "TargetID": 54541, + "Directional": true + } + ] + }, + { + "ID": 20070, + "SourceStructureID": 106863, + "TargetStructureID": 5531, + "Label": "106863-5531 via Conventional from 106865 -> 54542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106865, + "TargetID": 54542, + "Directional": true + } + ] + }, + { + "ID": 20071, + "SourceStructureID": 106877, + "TargetStructureID": 6155, + "Label": "106877-6155 via Conventional from 106878 -> 106876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106878, + "TargetID": 106876, + "Directional": true + } + ] + }, + { + "ID": 20072, + "SourceStructureID": 106886, + "TargetStructureID": 5649, + "Label": "106886-5649 via Conventional from 106899 -> 106885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106899, + "TargetID": 106885, + "Directional": true + } + ] + }, + { + "ID": 20073, + "SourceStructureID": 106890, + "TargetStructureID": 176, + "Label": "106890-176 via Conventional from 128267 -> 128268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128267, + "TargetID": 128268, + "Directional": true + } + ] + }, + { + "ID": 20074, + "SourceStructureID": 106890, + "TargetStructureID": 5531, + "Label": "106890-5531 via Conventional from 106892 -> 54577, 106893 -> 54566", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106892, + "TargetID": 54577, + "Directional": true + }, + { + "SourceID": 106893, + "TargetID": 54566, + "Directional": true + } + ] + }, + { + "ID": 20075, + "SourceStructureID": 106896, + "TargetStructureID": 5531, + "Label": "106896-5531 via Conventional from 106897 -> 54570", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106897, + "TargetID": 54570, + "Directional": true + } + ] + }, + { + "ID": 20076, + "SourceStructureID": 106903, + "TargetStructureID": 5531, + "Label": "106903-5531 via Conventional from 106905 -> 106906", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106905, + "TargetID": 106906, + "Directional": true + } + ] + }, + { + "ID": 20077, + "SourceStructureID": 106909, + "TargetStructureID": 5531, + "Label": "106909-5531 via Conventional from 106910 -> 106911", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106910, + "TargetID": 106911, + "Directional": true + } + ] + }, + { + "ID": 20078, + "SourceStructureID": 106913, + "TargetStructureID": 5649, + "Label": "106913-5649 via Conventional from 106916 -> 106917", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106916, + "TargetID": 106917, + "Directional": true + } + ] + }, + { + "ID": 20079, + "SourceStructureID": 106924, + "TargetStructureID": 176, + "Label": "106924-176 via Conventional from 128261 -> 128260", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128261, + "TargetID": 128260, + "Directional": true + } + ] + }, + { + "ID": 20080, + "SourceStructureID": 106924, + "TargetStructureID": 5531, + "Label": "106924-5531 via Conventional from 106928 -> 106929", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106928, + "TargetID": 106929, + "Directional": true + } + ] + }, + { + "ID": 20081, + "SourceStructureID": 106926, + "TargetStructureID": 5649, + "Label": "106926-5649 via Conventional from 106927 -> 106925", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 106927, + "TargetID": 106925, + "Directional": true + } + ] + }, + { + "ID": 20082, + "SourceStructureID": 107045, + "TargetStructureID": 5649, + "Label": "107045-5649 via Conventional from 107048 -> 107049", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107048, + "TargetID": 107049, + "Directional": true + } + ] + }, + { + "ID": 20083, + "SourceStructureID": 107051, + "TargetStructureID": 5649, + "Label": "107051-5649 via Conventional from 107052 -> 107050", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107052, + "TargetID": 107050, + "Directional": true + } + ] + }, + { + "ID": 20084, + "SourceStructureID": 107061, + "TargetStructureID": 5649, + "Label": "107061-5649 via Conventional from 107068 -> 107065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107068, + "TargetID": 107065, + "Directional": true + } + ] + }, + { + "ID": 20085, + "SourceStructureID": 107071, + "TargetStructureID": 5649, + "Label": "107071-5649 via Conventional from 107072 -> 107070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107072, + "TargetID": 107070, + "Directional": true + } + ] + }, + { + "ID": 20086, + "SourceStructureID": 107074, + "TargetStructureID": 5649, + "Label": "107074-5649 via Conventional from 107075 -> 107073", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107075, + "TargetID": 107073, + "Directional": true + } + ] + }, + { + "ID": 20087, + "SourceStructureID": 107092, + "TargetStructureID": 5649, + "Label": "107092-5649 via Conventional from 107095 -> 107091", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107095, + "TargetID": 107091, + "Directional": true + } + ] + }, + { + "ID": 20088, + "SourceStructureID": 107099, + "TargetStructureID": 5649, + "Label": "107099-5649 via Conventional from 107113 -> 107112", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107113, + "TargetID": 107112, + "Directional": true + } + ] + }, + { + "ID": 20089, + "SourceStructureID": 107102, + "TargetStructureID": 5649, + "Label": "107102-5649 via Conventional from 107104 -> 107087", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107104, + "TargetID": 107087, + "Directional": true + } + ] + }, + { + "ID": 20090, + "SourceStructureID": 107108, + "TargetStructureID": 5649, + "Label": "107108-5649 via Conventional from 107109 -> 107088", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107109, + "TargetID": 107088, + "Directional": true + } + ] + }, + { + "ID": 20091, + "SourceStructureID": 107121, + "TargetStructureID": 5649, + "Label": "107121-5649 via Conventional from 135457 -> 107120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135457, + "TargetID": 107120, + "Directional": true + } + ] + }, + { + "ID": 20092, + "SourceStructureID": 107126, + "TargetStructureID": 5649, + "Label": "107126-5649 via Conventional from 107128 -> 107125", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107128, + "TargetID": 107125, + "Directional": true + } + ] + }, + { + "ID": 20093, + "SourceStructureID": 107132, + "TargetStructureID": 5649, + "Label": "107132-5649 via Conventional from 107138 -> 107131", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107138, + "TargetID": 107131, + "Directional": true + } + ] + }, + { + "ID": 20094, + "SourceStructureID": 107152, + "TargetStructureID": 5649, + "Label": "107152-5649 via Conventional from 107154 -> 107151", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107154, + "TargetID": 107151, + "Directional": true + } + ] + }, + { + "ID": 20095, + "SourceStructureID": 107156, + "TargetStructureID": 595, + "Label": "107156-595 via Conventional from 107158 -> 107155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107158, + "TargetID": 107155, + "Directional": true + } + ] + }, + { + "ID": 20096, + "SourceStructureID": 107162, + "TargetStructureID": 5649, + "Label": "107162-5649 via Conventional from 107163 -> 54302", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107163, + "TargetID": 54302, + "Directional": true + } + ] + }, + { + "ID": 20097, + "SourceStructureID": 107176, + "TargetStructureID": 5649, + "Label": "107176-5649 via Conventional from 107177 -> 107175", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107177, + "TargetID": 107175, + "Directional": true + } + ] + }, + { + "ID": 20098, + "SourceStructureID": 107179, + "TargetStructureID": 5649, + "Label": "107179-5649 via Conventional from 107180 -> 107178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107180, + "TargetID": 107178, + "Directional": true + } + ] + }, + { + "ID": 20099, + "SourceStructureID": 107195, + "TargetStructureID": 5649, + "Label": "107195-5649 via Conventional from 107197 -> 107181", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107197, + "TargetID": 107181, + "Directional": true + } + ] + }, + { + "ID": 20100, + "SourceStructureID": 107196, + "TargetStructureID": 5531, + "Label": "107196-5531 via Conventional from 107199 -> 107193", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107199, + "TargetID": 107193, + "Directional": true + } + ] + }, + { + "ID": 20101, + "SourceStructureID": 107222, + "TargetStructureID": 5649, + "Label": "107222-5649 via Conventional from 107224 -> 107225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107224, + "TargetID": 107225, + "Directional": true + } + ] + }, + { + "ID": 20102, + "SourceStructureID": 107248, + "TargetStructureID": 5649, + "Label": "107248-5649 via Conventional from 107249 -> 107243", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107249, + "TargetID": 107243, + "Directional": true + } + ] + }, + { + "ID": 20103, + "SourceStructureID": 107253, + "TargetStructureID": 5649, + "Label": "107253-5649 via Conventional from 107254 -> 107252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107254, + "TargetID": 107252, + "Directional": true + } + ] + }, + { + "ID": 20104, + "SourceStructureID": 107262, + "TargetStructureID": 5649, + "Label": "107262-5649 via Conventional from 107263 -> 107261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107263, + "TargetID": 107261, + "Directional": true + } + ] + }, + { + "ID": 20105, + "SourceStructureID": 107265, + "TargetStructureID": 5649, + "Label": "107265-5649 via Conventional from 107278 -> 107264", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107278, + "TargetID": 107264, + "Directional": true + } + ] + }, + { + "ID": 20106, + "SourceStructureID": 107267, + "TargetStructureID": 5649, + "Label": "107267-5649 via Conventional from 107268 -> 107266", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107268, + "TargetID": 107266, + "Directional": true + } + ] + }, + { + "ID": 20107, + "SourceStructureID": 107275, + "TargetStructureID": 5649, + "Label": "107275-5649 via Conventional from 107293 -> 107292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107293, + "TargetID": 107292, + "Directional": true + } + ] + }, + { + "ID": 20108, + "SourceStructureID": 107297, + "TargetStructureID": 5649, + "Label": "107297-5649 via Conventional from 107298 -> 107299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107298, + "TargetID": 107299, + "Directional": true + } + ] + }, + { + "ID": 20109, + "SourceStructureID": 107306, + "TargetStructureID": 5649, + "Label": "107306-5649 via Conventional from 107308 -> 107309", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107308, + "TargetID": 107309, + "Directional": true + } + ] + }, + { + "ID": 20110, + "SourceStructureID": 107314, + "TargetStructureID": 5649, + "Label": "107314-5649 via Conventional from 107315 -> 70013", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107315, + "TargetID": 70013, + "Directional": true + } + ] + }, + { + "ID": 20111, + "SourceStructureID": 107321, + "TargetStructureID": 5649, + "Label": "107321-5649 via Conventional from 107322 -> 107323", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107322, + "TargetID": 107323, + "Directional": true + } + ] + }, + { + "ID": 20112, + "SourceStructureID": 107324, + "TargetStructureID": 5649, + "Label": "107324-5649 via Conventional from 107325 -> 107326", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107325, + "TargetID": 107326, + "Directional": true + } + ] + }, + { + "ID": 20113, + "SourceStructureID": 107328, + "TargetStructureID": 5649, + "Label": "107328-5649 via Conventional from 107329 -> 70007", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107329, + "TargetID": 70007, + "Directional": true + } + ] + }, + { + "ID": 20114, + "SourceStructureID": 107330, + "TargetStructureID": 5649, + "Label": "107330-5649 via Conventional from 107331 -> 70006", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107331, + "TargetID": 70006, + "Directional": true + } + ] + }, + { + "ID": 20115, + "SourceStructureID": 107332, + "TargetStructureID": 5649, + "Label": "107332-5649 via Conventional from 107347 -> 70009", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107347, + "TargetID": 70009, + "Directional": true + } + ] + }, + { + "ID": 20116, + "SourceStructureID": 107337, + "TargetStructureID": 5649, + "Label": "107337-5649 via Conventional from 107338 -> 107318", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107338, + "TargetID": 107318, + "Directional": true + } + ] + }, + { + "ID": 20117, + "SourceStructureID": 107360, + "TargetStructureID": 5649, + "Label": "107360-5649 via Conventional from 107362 -> 70010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107362, + "TargetID": 70010, + "Directional": true + } + ] + }, + { + "ID": 20118, + "SourceStructureID": 107363, + "TargetStructureID": 5649, + "Label": "107363-5649 via Conventional from 107364 -> 70017", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107364, + "TargetID": 70017, + "Directional": true + } + ] + }, + { + "ID": 20119, + "SourceStructureID": 107367, + "TargetStructureID": 13525, + "Label": "107367-13525 via Ribbon Synapse from 107368 -> 86729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 107368, + "TargetID": 86729, + "Directional": true + } + ] + }, + { + "ID": 20120, + "SourceStructureID": 107377, + "TargetStructureID": 5531, + "Label": "107377-5531 via Conventional from 107380 -> 107381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107380, + "TargetID": 107381, + "Directional": true + } + ] + }, + { + "ID": 20121, + "SourceStructureID": 107378, + "TargetStructureID": 5503, + "Label": "107378-5503 via Conventional from 107379 -> 36627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107379, + "TargetID": 36627, + "Directional": true + } + ] + }, + { + "ID": 20122, + "SourceStructureID": 107383, + "TargetStructureID": 5503, + "Label": "107383-5503 via Conventional from 107384 -> 36631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107384, + "TargetID": 36631, + "Directional": true + } + ] + }, + { + "ID": 20123, + "SourceStructureID": 107397, + "TargetStructureID": 5531, + "Label": "107397-5531 via Conventional from 107398 -> 54585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107398, + "TargetID": 54585, + "Directional": true + } + ] + }, + { + "ID": 20124, + "SourceStructureID": 107399, + "TargetStructureID": 5531, + "Label": "107399-5531 via Conventional from 107400 -> 54586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107400, + "TargetID": 54586, + "Directional": true + } + ] + }, + { + "ID": 20125, + "SourceStructureID": 107401, + "TargetStructureID": 5531, + "Label": "107401-5531 via Conventional from 107402 -> 107403", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107402, + "TargetID": 107403, + "Directional": true + } + ] + }, + { + "ID": 20126, + "SourceStructureID": 107408, + "TargetStructureID": 5531, + "Label": "107408-5531 via Conventional from 107409 -> 54576", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107409, + "TargetID": 54576, + "Directional": true + } + ] + }, + { + "ID": 20127, + "SourceStructureID": 107418, + "TargetStructureID": 5531, + "Label": "107418-5531 via Conventional from 107419 -> 54581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107419, + "TargetID": 54581, + "Directional": true + } + ] + }, + { + "ID": 20128, + "SourceStructureID": 107429, + "TargetStructureID": 5531, + "Label": "107429-5531 via Conventional from 107430 -> 91681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107430, + "TargetID": 91681, + "Directional": true + } + ] + }, + { + "ID": 20129, + "SourceStructureID": 107431, + "TargetStructureID": 595, + "Label": "107431-595 via Conventional from 107435 -> 46696", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107435, + "TargetID": 46696, + "Directional": true + } + ] + }, + { + "ID": 20130, + "SourceStructureID": 107433, + "TargetStructureID": 5503, + "Label": "107433-5503 via Conventional from 107434 -> 60732", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107434, + "TargetID": 60732, + "Directional": true + } + ] + }, + { + "ID": 20131, + "SourceStructureID": 107444, + "TargetStructureID": 5503, + "Label": "107444-5503 via Conventional from 107488 -> 60735", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107488, + "TargetID": 60735, + "Directional": true + } + ] + }, + { + "ID": 20132, + "SourceStructureID": 107445, + "TargetStructureID": 5531, + "Label": "107445-5531 via Conventional from 107446 -> 107447", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107446, + "TargetID": 107447, + "Directional": true + } + ] + }, + { + "ID": 20133, + "SourceStructureID": 107455, + "TargetStructureID": 5503, + "Label": "107455-5503 via Conventional from 107457 -> 60731", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107457, + "TargetID": 60731, + "Directional": true + } + ] + }, + { + "ID": 20134, + "SourceStructureID": 107476, + "TargetStructureID": 5531, + "Label": "107476-5531 via Conventional from 107481 -> 107482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107481, + "TargetID": 107482, + "Directional": true + } + ] + }, + { + "ID": 20135, + "SourceStructureID": 107477, + "TargetStructureID": 5503, + "Label": "107477-5503 via Conventional from 107479 -> 60733, 107480 -> 60730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107479, + "TargetID": 60733, + "Directional": true + }, + { + "SourceID": 107480, + "TargetID": 60730, + "Directional": true + } + ] + }, + { + "ID": 20136, + "SourceStructureID": 107483, + "TargetStructureID": 176, + "Label": "107483-176 via Conventional from 107486 -> 5869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107486, + "TargetID": 5869, + "Directional": true + } + ] + }, + { + "ID": 20137, + "SourceStructureID": 107483, + "TargetStructureID": 5531, + "Label": "107483-5531 via Conventional from 107536 -> 107537", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107536, + "TargetID": 107537, + "Directional": true + } + ] + }, + { + "ID": 20138, + "SourceStructureID": 107487, + "TargetStructureID": 176, + "Label": "107487-176 via Conventional from 107492 -> 107493", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107492, + "TargetID": 107493, + "Directional": true + } + ] + }, + { + "ID": 20139, + "SourceStructureID": 107490, + "TargetStructureID": 5503, + "Label": "107490-5503 via Conventional from 107491 -> 107489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107491, + "TargetID": 107489, + "Directional": true + } + ] + }, + { + "ID": 20140, + "SourceStructureID": 107494, + "TargetStructureID": 5503, + "Label": "107494-5503 via Conventional from 107495 -> 60734", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107495, + "TargetID": 60734, + "Directional": true + } + ] + }, + { + "ID": 20141, + "SourceStructureID": 107512, + "TargetStructureID": 176, + "Label": "107512-176 via Conventional from 128664 -> 125434", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128664, + "TargetID": 125434, + "Directional": true + } + ] + }, + { + "ID": 20142, + "SourceStructureID": 107512, + "TargetStructureID": 5531, + "Label": "107512-5531 via Conventional from 107513 -> 107514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107513, + "TargetID": 107514, + "Directional": true + } + ] + }, + { + "ID": 20143, + "SourceStructureID": 107525, + "TargetStructureID": 5503, + "Label": "107525-5503 via Conventional from 107526 -> 60706", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107526, + "TargetID": 60706, + "Directional": true + } + ] + }, + { + "ID": 20144, + "SourceStructureID": 107530, + "TargetStructureID": 176, + "Label": "107530-176 via Conventional from 120263 -> 120262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120263, + "TargetID": 120262, + "Directional": true + } + ] + }, + { + "ID": 20145, + "SourceStructureID": 107530, + "TargetStructureID": 5531, + "Label": "107530-5531 via Conventional from 107531 -> 107532", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107531, + "TargetID": 107532, + "Directional": true + } + ] + }, + { + "ID": 20146, + "SourceStructureID": 107543, + "TargetStructureID": 176, + "Label": "107543-176 via Conventional from 128677 -> 125447", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128677, + "TargetID": 125447, + "Directional": true + } + ] + }, + { + "ID": 20147, + "SourceStructureID": 107543, + "TargetStructureID": 5531, + "Label": "107543-5531 via Conventional from 107544 -> 107545", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107544, + "TargetID": 107545, + "Directional": true + } + ] + }, + { + "ID": 20148, + "SourceStructureID": 107560, + "TargetStructureID": 5531, + "Label": "107560-5531 via Conventional from 107561 -> 107562", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107561, + "TargetID": 107562, + "Directional": true + } + ] + }, + { + "ID": 20149, + "SourceStructureID": 107583, + "TargetStructureID": 176, + "Label": "107583-176 via Conventional from 125440 -> 5877", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125440, + "TargetID": 5877, + "Directional": true + } + ] + }, + { + "ID": 20150, + "SourceStructureID": 107597, + "TargetStructureID": 6155, + "Label": "107597-6155 via Conventional from 107743 -> 48269", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107743, + "TargetID": 48269, + "Directional": true + } + ] + }, + { + "ID": 20151, + "SourceStructureID": 107612, + "TargetStructureID": 6155, + "Label": "107612-6155 via Conventional from 107613 -> 15391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107613, + "TargetID": 15391, + "Directional": true + } + ] + }, + { + "ID": 20152, + "SourceStructureID": 107628, + "TargetStructureID": 6155, + "Label": "107628-6155 via Conventional from 107629 -> 48268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107629, + "TargetID": 48268, + "Directional": true + } + ] + }, + { + "ID": 20153, + "SourceStructureID": 107641, + "TargetStructureID": 5531, + "Label": "107641-5531 via Conventional from 107642 -> 107643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107642, + "TargetID": 107643, + "Directional": true + } + ] + }, + { + "ID": 20154, + "SourceStructureID": 107649, + "TargetStructureID": 5531, + "Label": "107649-5531 via Conventional from 107650 -> 107651", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107650, + "TargetID": 107651, + "Directional": true + } + ] + }, + { + "ID": 20155, + "SourceStructureID": 107661, + "TargetStructureID": 5531, + "Label": "107661-5531 via Conventional from 107662 -> 107663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107662, + "TargetID": 107663, + "Directional": true + } + ] + }, + { + "ID": 20156, + "SourceStructureID": 107687, + "TargetStructureID": 5531, + "Label": "107687-5531 via Conventional from 107688 -> 107689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107688, + "TargetID": 107689, + "Directional": true + } + ] + }, + { + "ID": 20157, + "SourceStructureID": 107693, + "TargetStructureID": 5531, + "Label": "107693-5531 via Conventional from 107694 -> 107695", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107694, + "TargetID": 107695, + "Directional": true + } + ] + }, + { + "ID": 20158, + "SourceStructureID": 107706, + "TargetStructureID": 5531, + "Label": "107706-5531 via Conventional from 107707 -> 107708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107707, + "TargetID": 107708, + "Directional": true + } + ] + }, + { + "ID": 20159, + "SourceStructureID": 107712, + "TargetStructureID": 5531, + "Label": "107712-5531 via Conventional from 107713 -> 107714", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107713, + "TargetID": 107714, + "Directional": true + } + ] + }, + { + "ID": 20160, + "SourceStructureID": 107727, + "TargetStructureID": 5531, + "Label": "107727-5531 via Conventional from 107728 -> 107729", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107728, + "TargetID": 107729, + "Directional": true + } + ] + }, + { + "ID": 20161, + "SourceStructureID": 107736, + "TargetStructureID": 5531, + "Label": "107736-5531 via Conventional from 107737 -> 107738", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107737, + "TargetID": 107738, + "Directional": true + } + ] + }, + { + "ID": 20162, + "SourceStructureID": 107753, + "TargetStructureID": 6155, + "Label": "107753-6155 via Conventional from 107777 -> 107778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107777, + "TargetID": 107778, + "Directional": true + } + ] + }, + { + "ID": 20163, + "SourceStructureID": 107755, + "TargetStructureID": 6155, + "Label": "107755-6155 via Conventional from 107756 -> 48272", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107756, + "TargetID": 48272, + "Directional": true + } + ] + }, + { + "ID": 20164, + "SourceStructureID": 107757, + "TargetStructureID": 6155, + "Label": "107757-6155 via Conventional from 107761 -> 15396", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107761, + "TargetID": 15396, + "Directional": true + } + ] + }, + { + "ID": 20165, + "SourceStructureID": 107758, + "TargetStructureID": 6155, + "Label": "107758-6155 via Conventional from 107759 -> 107760", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107759, + "TargetID": 107760, + "Directional": true + } + ] + }, + { + "ID": 20166, + "SourceStructureID": 107762, + "TargetStructureID": 6155, + "Label": "107762-6155 via Conventional from 107763 -> 15434", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107763, + "TargetID": 15434, + "Directional": true + } + ] + }, + { + "ID": 20167, + "SourceStructureID": 107792, + "TargetStructureID": 6155, + "Label": "107792-6155 via Conventional from 107793 -> 15426", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107793, + "TargetID": 15426, + "Directional": true + } + ] + }, + { + "ID": 20168, + "SourceStructureID": 107794, + "TargetStructureID": 6155, + "Label": "107794-6155 via Conventional from 107795 -> 15428", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107795, + "TargetID": 15428, + "Directional": true + } + ] + }, + { + "ID": 20169, + "SourceStructureID": 107796, + "TargetStructureID": 6155, + "Label": "107796-6155 via Conventional from 107797 -> 15402", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107797, + "TargetID": 15402, + "Directional": true + } + ] + }, + { + "ID": 20170, + "SourceStructureID": 107815, + "TargetStructureID": 6155, + "Label": "107815-6155 via Conventional from 107816 -> 16131", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107816, + "TargetID": 16131, + "Directional": true + } + ] + }, + { + "ID": 20171, + "SourceStructureID": 107820, + "TargetStructureID": 6155, + "Label": "107820-6155 via Conventional from 107821 -> 49070", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107821, + "TargetID": 49070, + "Directional": true + } + ] + }, + { + "ID": 20172, + "SourceStructureID": 107822, + "TargetStructureID": 6155, + "Label": "107822-6155 via Conventional from 107823 -> 23086", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107823, + "TargetID": 23086, + "Directional": true + } + ] + }, + { + "ID": 20173, + "SourceStructureID": 107827, + "TargetStructureID": 6155, + "Label": "107827-6155 via Conventional from 107828 -> 107829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107828, + "TargetID": 107829, + "Directional": true + } + ] + }, + { + "ID": 20174, + "SourceStructureID": 107831, + "TargetStructureID": 6155, + "Label": "107831-6155 via Conventional from 107832 -> 48260", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107832, + "TargetID": 48260, + "Directional": true + } + ] + }, + { + "ID": 20175, + "SourceStructureID": 107833, + "TargetStructureID": 6155, + "Label": "107833-6155 via Conventional from 107835 -> 107830", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107835, + "TargetID": 107830, + "Directional": true + } + ] + }, + { + "ID": 20176, + "SourceStructureID": 107833, + "TargetStructureID": 9260, + "Label": "107833-9260 via Conventional from 107834 -> 9474", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107834, + "TargetID": 9474, + "Directional": true + } + ] + }, + { + "ID": 20177, + "SourceStructureID": 107836, + "TargetStructureID": 6155, + "Label": "107836-6155 via Conventional from 107837 -> 47940", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107837, + "TargetID": 47940, + "Directional": true + } + ] + }, + { + "ID": 20178, + "SourceStructureID": 107843, + "TargetStructureID": 6155, + "Label": "107843-6155 via Conventional from 107844 -> 15502", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107844, + "TargetID": 15502, + "Directional": true + } + ] + }, + { + "ID": 20179, + "SourceStructureID": 107845, + "TargetStructureID": 6155, + "Label": "107845-6155 via Conventional from 107846 -> 48262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107846, + "TargetID": 48262, + "Directional": true + } + ] + }, + { + "ID": 20180, + "SourceStructureID": 107849, + "TargetStructureID": 6155, + "Label": "107849-6155 via Conventional from 107851 -> 107852", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107851, + "TargetID": 107852, + "Directional": true + } + ] + }, + { + "ID": 20181, + "SourceStructureID": 107853, + "TargetStructureID": 6155, + "Label": "107853-6155 via Conventional from 107854 -> 15503", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107854, + "TargetID": 15503, + "Directional": true + } + ] + }, + { + "ID": 20182, + "SourceStructureID": 107855, + "TargetStructureID": 6155, + "Label": "107855-6155 via Conventional from 107856 -> 48261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107856, + "TargetID": 48261, + "Directional": true + } + ] + }, + { + "ID": 20183, + "SourceStructureID": 107865, + "TargetStructureID": 6155, + "Label": "107865-6155 via Conventional from 107866 -> 15500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107866, + "TargetID": 15500, + "Directional": true + } + ] + }, + { + "ID": 20184, + "SourceStructureID": 107865, + "TargetStructureID": 107845, + "Label": "107865-107845 via Conventional from 107867 -> 107868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107867, + "TargetID": 107868, + "Directional": true + } + ] + }, + { + "ID": 20185, + "SourceStructureID": 107875, + "TargetStructureID": 6155, + "Label": "107875-6155 via Conventional from 107876 -> 15514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107876, + "TargetID": 15514, + "Directional": true + } + ] + }, + { + "ID": 20186, + "SourceStructureID": 107879, + "TargetStructureID": 6155, + "Label": "107879-6155 via Conventional from 107880 -> 15504", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107880, + "TargetID": 15504, + "Directional": true + } + ] + }, + { + "ID": 20187, + "SourceStructureID": 107882, + "TargetStructureID": 6155, + "Label": "107882-6155 via Conventional from 107884 -> 107883", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107884, + "TargetID": 107883, + "Directional": true + } + ] + }, + { + "ID": 20188, + "SourceStructureID": 107887, + "TargetStructureID": 6155, + "Label": "107887-6155 via Conventional from 107888 -> 15513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107888, + "TargetID": 15513, + "Directional": true + } + ] + }, + { + "ID": 20189, + "SourceStructureID": 107908, + "TargetStructureID": 6155, + "Label": "107908-6155 via Conventional from 107909 -> 15505", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107909, + "TargetID": 15505, + "Directional": true + } + ] + }, + { + "ID": 20190, + "SourceStructureID": 107910, + "TargetStructureID": 6155, + "Label": "107910-6155 via Conventional from 107911 -> 15544, 107921 -> 30584", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107911, + "TargetID": 15544, + "Directional": true + }, + { + "SourceID": 107921, + "TargetID": 30584, + "Directional": true + } + ] + }, + { + "ID": 20191, + "SourceStructureID": 107922, + "TargetStructureID": 6155, + "Label": "107922-6155 via Conventional from 107923 -> 15506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107923, + "TargetID": 15506, + "Directional": true + } + ] + }, + { + "ID": 20192, + "SourceStructureID": 107926, + "TargetStructureID": 6155, + "Label": "107926-6155 via Conventional from 107927 -> 15515", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107927, + "TargetID": 15515, + "Directional": true + } + ] + }, + { + "ID": 20193, + "SourceStructureID": 107930, + "TargetStructureID": 6155, + "Label": "107930-6155 via Conventional from 107931 -> 107932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107931, + "TargetID": 107932, + "Directional": true + } + ] + }, + { + "ID": 20194, + "SourceStructureID": 107937, + "TargetStructureID": 6155, + "Label": "107937-6155 via Conventional from 107938 -> 15538", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107938, + "TargetID": 15538, + "Directional": true + } + ] + }, + { + "ID": 20195, + "SourceStructureID": 107939, + "TargetStructureID": 6155, + "Label": "107939-6155 via Conventional from 107940 -> 15582", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107940, + "TargetID": 15582, + "Directional": true + } + ] + }, + { + "ID": 20196, + "SourceStructureID": 107941, + "TargetStructureID": 6155, + "Label": "107941-6155 via Conventional from 107942 -> 107943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107942, + "TargetID": 107943, + "Directional": true + } + ] + }, + { + "ID": 20197, + "SourceStructureID": 107950, + "TargetStructureID": 6155, + "Label": "107950-6155 via Conventional from 107951 -> 48279", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107951, + "TargetID": 48279, + "Directional": true + } + ] + }, + { + "ID": 20198, + "SourceStructureID": 107955, + "TargetStructureID": 6155, + "Label": "107955-6155 via Conventional from 107956 -> 48280", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107956, + "TargetID": 48280, + "Directional": true + } + ] + }, + { + "ID": 20199, + "SourceStructureID": 107957, + "TargetStructureID": 5503, + "Label": "107957-5503 via Conventional from 107960 -> 60708", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107960, + "TargetID": 60708, + "Directional": true + } + ] + }, + { + "ID": 20200, + "SourceStructureID": 107961, + "TargetStructureID": 5503, + "Label": "107961-5503 via Conventional from 107962 -> 60709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107962, + "TargetID": 60709, + "Directional": true + } + ] + }, + { + "ID": 20201, + "SourceStructureID": 107973, + "TargetStructureID": 5503, + "Label": "107973-5503 via Conventional from 107975 -> 60719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107975, + "TargetID": 60719, + "Directional": true + } + ] + }, + { + "ID": 20202, + "SourceStructureID": 107974, + "TargetStructureID": 6155, + "Label": "107974-6155 via Conventional from 107976 -> 15542", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107976, + "TargetID": 15542, + "Directional": true + } + ] + }, + { + "ID": 20203, + "SourceStructureID": 107977, + "TargetStructureID": 5503, + "Label": "107977-5503 via Conventional from 107978 -> 60724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107978, + "TargetID": 60724, + "Directional": true + } + ] + }, + { + "ID": 20204, + "SourceStructureID": 107981, + "TargetStructureID": 5503, + "Label": "107981-5503 via Conventional from 107987 -> 60720", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107987, + "TargetID": 60720, + "Directional": true + } + ] + }, + { + "ID": 20205, + "SourceStructureID": 107982, + "TargetStructureID": 6155, + "Label": "107982-6155 via Conventional from 107985 -> 107986", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107985, + "TargetID": 107986, + "Directional": true + } + ] + }, + { + "ID": 20206, + "SourceStructureID": 107988, + "TargetStructureID": 5503, + "Label": "107988-5503 via Conventional from 107993 -> 60721", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 107993, + "TargetID": 60721, + "Directional": true + } + ] + }, + { + "ID": 20207, + "SourceStructureID": 108017, + "TargetStructureID": 5503, + "Label": "108017-5503 via Conventional from 108018 -> 108016", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108018, + "TargetID": 108016, + "Directional": true + } + ] + }, + { + "ID": 20208, + "SourceStructureID": 108038, + "TargetStructureID": 5531, + "Label": "108038-5531 via Conventional from 108042 -> 108037", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108042, + "TargetID": 108037, + "Directional": true + } + ] + }, + { + "ID": 20209, + "SourceStructureID": 108040, + "TargetStructureID": 6155, + "Label": "108040-6155 via Conventional from 108043 -> 49079", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108043, + "TargetID": 49079, + "Directional": true + } + ] + }, + { + "ID": 20210, + "SourceStructureID": 108041, + "TargetStructureID": 5503, + "Label": "108041-5503 via Conventional from 108082 -> 60718", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108082, + "TargetID": 60718, + "Directional": true + } + ] + }, + { + "ID": 20211, + "SourceStructureID": 108048, + "TargetStructureID": 6155, + "Label": "108048-6155 via Conventional from 108049 -> 48298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108049, + "TargetID": 48298, + "Directional": true + } + ] + }, + { + "ID": 20212, + "SourceStructureID": 108083, + "TargetStructureID": 5501, + "Label": "108083-5501 via Conventional from 110221 -> 110215", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110221, + "TargetID": 110215, + "Directional": true + } + ] + }, + { + "ID": 20213, + "SourceStructureID": 108083, + "TargetStructureID": 5503, + "Label": "108083-5503 via Conventional from 108086 -> 60717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108086, + "TargetID": 60717, + "Directional": true + } + ] + }, + { + "ID": 20214, + "SourceStructureID": 108089, + "TargetStructureID": 6155, + "Label": "108089-6155 via Conventional from 108090 -> 15545", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108090, + "TargetID": 15545, + "Directional": true + } + ] + }, + { + "ID": 20215, + "SourceStructureID": 108094, + "TargetStructureID": 6155, + "Label": "108094-6155 via Conventional from 108095 -> 30585", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108095, + "TargetID": 30585, + "Directional": true + } + ] + }, + { + "ID": 20216, + "SourceStructureID": 108097, + "TargetStructureID": 6155, + "Label": "108097-6155 via Conventional from 108104 -> 48287", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108104, + "TargetID": 48287, + "Directional": true + } + ] + }, + { + "ID": 20217, + "SourceStructureID": 108100, + "TargetStructureID": 5503, + "Label": "108100-5503 via Conventional from 108102 -> 108099", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108102, + "TargetID": 108099, + "Directional": true + } + ] + }, + { + "ID": 20218, + "SourceStructureID": 108108, + "TargetStructureID": 5503, + "Label": "108108-5503 via Conventional from 108127 -> 108105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108127, + "TargetID": 108105, + "Directional": true + } + ] + }, + { + "ID": 20219, + "SourceStructureID": 108109, + "TargetStructureID": 6155, + "Label": "108109-6155 via Conventional from 108110 -> 15547", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108110, + "TargetID": 15547, + "Directional": true + } + ] + }, + { + "ID": 20220, + "SourceStructureID": 108111, + "TargetStructureID": 6155, + "Label": "108111-6155 via Conventional from 108112 -> 48288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108112, + "TargetID": 48288, + "Directional": true + } + ] + }, + { + "ID": 20221, + "SourceStructureID": 108131, + "TargetStructureID": 6155, + "Label": "108131-6155 via Conventional from 119491 -> 49080", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119491, + "TargetID": 49080, + "Directional": true + } + ] + }, + { + "ID": 20222, + "SourceStructureID": 108143, + "TargetStructureID": 5649, + "Label": "108143-5649 via Conventional from 108144 -> 108141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108144, + "TargetID": 108141, + "Directional": true + } + ] + }, + { + "ID": 20223, + "SourceStructureID": 108147, + "TargetStructureID": 5503, + "Label": "108147-5503 via Conventional from 108148 -> 108146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108148, + "TargetID": 108146, + "Directional": true + } + ] + }, + { + "ID": 20224, + "SourceStructureID": 108151, + "TargetStructureID": 6155, + "Label": "108151-6155 via Conventional from 108152 -> 34793", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108152, + "TargetID": 34793, + "Directional": true + } + ] + }, + { + "ID": 20225, + "SourceStructureID": 108154, + "TargetStructureID": 5503, + "Label": "108154-5503 via Conventional from 108155 -> 108153", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108155, + "TargetID": 108153, + "Directional": true + } + ] + }, + { + "ID": 20226, + "SourceStructureID": 108157, + "TargetStructureID": 6155, + "Label": "108157-6155 via Conventional from 108159 -> 48297", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108159, + "TargetID": 48297, + "Directional": true + } + ] + }, + { + "ID": 20227, + "SourceStructureID": 108165, + "TargetStructureID": 5503, + "Label": "108165-5503 via Conventional from 108168 -> 108169", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108168, + "TargetID": 108169, + "Directional": true + } + ] + }, + { + "ID": 20228, + "SourceStructureID": 108166, + "TargetStructureID": 6155, + "Label": "108166-6155 via Conventional from 108167 -> 34790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108167, + "TargetID": 34790, + "Directional": true + } + ] + }, + { + "ID": 20229, + "SourceStructureID": 108170, + "TargetStructureID": 6155, + "Label": "108170-6155 via Conventional from 108175 -> 34792", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108175, + "TargetID": 34792, + "Directional": true + } + ] + }, + { + "ID": 20230, + "SourceStructureID": 108178, + "TargetStructureID": 6155, + "Label": "108178-6155 via Conventional from 108179 -> 34784, 108200 -> 34784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108179, + "TargetID": 34784, + "Directional": true + }, + { + "SourceID": 108200, + "TargetID": 34784, + "Directional": true + } + ] + }, + { + "ID": 20231, + "SourceStructureID": 108182, + "TargetStructureID": 5503, + "Label": "108182-5503 via Conventional from 108186 -> 108181", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108186, + "TargetID": 108181, + "Directional": true + } + ] + }, + { + "ID": 20232, + "SourceStructureID": 108194, + "TargetStructureID": 5503, + "Label": "108194-5503 via Conventional from 108199 -> 108193", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108199, + "TargetID": 108193, + "Directional": true + } + ] + }, + { + "ID": 20233, + "SourceStructureID": 108209, + "TargetStructureID": 6155, + "Label": "108209-6155 via Conventional from 108212 -> 48295", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108212, + "TargetID": 48295, + "Directional": true + } + ] + }, + { + "ID": 20234, + "SourceStructureID": 108215, + "TargetStructureID": 6155, + "Label": "108215-6155 via Conventional from 108223 -> 34783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108223, + "TargetID": 34783, + "Directional": true + } + ] + }, + { + "ID": 20235, + "SourceStructureID": 108225, + "TargetStructureID": 6155, + "Label": "108225-6155 via Conventional from 108227 -> 34788", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108227, + "TargetID": 34788, + "Directional": true + } + ] + }, + { + "ID": 20236, + "SourceStructureID": 108229, + "TargetStructureID": 6155, + "Label": "108229-6155 via Conventional from 108231 -> 34791", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108231, + "TargetID": 34791, + "Directional": true + } + ] + }, + { + "ID": 20237, + "SourceStructureID": 108248, + "TargetStructureID": 6155, + "Label": "108248-6155 via Conventional from 108250 -> 34789", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108250, + "TargetID": 34789, + "Directional": true + } + ] + }, + { + "ID": 20238, + "SourceStructureID": 108254, + "TargetStructureID": 6155, + "Label": "108254-6155 via Conventional from 108262 -> 32003", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108262, + "TargetID": 32003, + "Directional": true + } + ] + }, + { + "ID": 20239, + "SourceStructureID": 108273, + "TargetStructureID": 6155, + "Label": "108273-6155 via Conventional from 108280 -> 48307", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108280, + "TargetID": 48307, + "Directional": true + } + ] + }, + { + "ID": 20240, + "SourceStructureID": 108284, + "TargetStructureID": 6155, + "Label": "108284-6155 via Conventional from 108285 -> 48308", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108285, + "TargetID": 48308, + "Directional": true + } + ] + }, + { + "ID": 20241, + "SourceStructureID": 108294, + "TargetStructureID": 6155, + "Label": "108294-6155 via Conventional from 108295 -> 15529", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108295, + "TargetID": 15529, + "Directional": true + } + ] + }, + { + "ID": 20242, + "SourceStructureID": 108298, + "TargetStructureID": 6155, + "Label": "108298-6155 via Conventional from 108305 -> 15528", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108305, + "TargetID": 15528, + "Directional": true + } + ] + }, + { + "ID": 20243, + "SourceStructureID": 108306, + "TargetStructureID": 6155, + "Label": "108306-6155 via Conventional from 108307 -> 108308", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108307, + "TargetID": 108308, + "Directional": true + } + ] + }, + { + "ID": 20244, + "SourceStructureID": 108309, + "TargetStructureID": 6155, + "Label": "108309-6155 via Conventional from 108330 -> 29776", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108330, + "TargetID": 29776, + "Directional": true + } + ] + }, + { + "ID": 20245, + "SourceStructureID": 108317, + "TargetStructureID": 6155, + "Label": "108317-6155 via Conventional from 108322 -> 30583", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108322, + "TargetID": 30583, + "Directional": true + } + ] + }, + { + "ID": 20246, + "SourceStructureID": 108327, + "TargetStructureID": 6155, + "Label": "108327-6155 via Conventional from 108328 -> 29777", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108328, + "TargetID": 29777, + "Directional": true + } + ] + }, + { + "ID": 20247, + "SourceStructureID": 108331, + "TargetStructureID": 6155, + "Label": "108331-6155 via Conventional from 108334 -> 48313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108334, + "TargetID": 48313, + "Directional": true + } + ] + }, + { + "ID": 20248, + "SourceStructureID": 108336, + "TargetStructureID": 6155, + "Label": "108336-6155 via Conventional from 108337 -> 48310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108337, + "TargetID": 48310, + "Directional": true + } + ] + }, + { + "ID": 20249, + "SourceStructureID": 108357, + "TargetStructureID": 6155, + "Label": "108357-6155 via Conventional from 108359 -> 108358", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108359, + "TargetID": 108358, + "Directional": true + } + ] + }, + { + "ID": 20250, + "SourceStructureID": 108374, + "TargetStructureID": 5503, + "Label": "108374-5503 via Conventional from 108375 -> 108373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108375, + "TargetID": 108373, + "Directional": true + } + ] + }, + { + "ID": 20251, + "SourceStructureID": 108396, + "TargetStructureID": 5503, + "Label": "108396-5503 via Conventional from 108397 -> 108395", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108397, + "TargetID": 108395, + "Directional": true + } + ] + }, + { + "ID": 20252, + "SourceStructureID": 108398, + "TargetStructureID": 20136, + "Label": "108398-20136 via Conventional from 108402 -> 20139", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108402, + "TargetID": 20139, + "Directional": true + } + ] + }, + { + "ID": 20253, + "SourceStructureID": 108403, + "TargetStructureID": 20136, + "Label": "108403-20136 via Conventional from 108404 -> 20140", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108404, + "TargetID": 20140, + "Directional": true + } + ] + }, + { + "ID": 20254, + "SourceStructureID": 108415, + "TargetStructureID": 5503, + "Label": "108415-5503 via Conventional from 108416 -> 108414", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108416, + "TargetID": 108414, + "Directional": true + } + ] + }, + { + "ID": 20255, + "SourceStructureID": 108418, + "TargetStructureID": 5503, + "Label": "108418-5503 via Conventional from 108419 -> 108406", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108419, + "TargetID": 108406, + "Directional": true + } + ] + }, + { + "ID": 20256, + "SourceStructureID": 108429, + "TargetStructureID": 20136, + "Label": "108429-20136 via Conventional from 108430 -> 20142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108430, + "TargetID": 20142, + "Directional": true + } + ] + }, + { + "ID": 20257, + "SourceStructureID": 108437, + "TargetStructureID": 5503, + "Label": "108437-5503 via Conventional from 108439 -> 108436", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108439, + "TargetID": 108436, + "Directional": true + } + ] + }, + { + "ID": 20258, + "SourceStructureID": 108442, + "TargetStructureID": 5503, + "Label": "108442-5503 via Conventional from 108443 -> 108441", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108443, + "TargetID": 108441, + "Directional": true + } + ] + }, + { + "ID": 20259, + "SourceStructureID": 108485, + "TargetStructureID": 5503, + "Label": "108485-5503 via Conventional from 108491 -> 60634", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108491, + "TargetID": 60634, + "Directional": true + } + ] + }, + { + "ID": 20260, + "SourceStructureID": 108498, + "TargetStructureID": 5503, + "Label": "108498-5503 via Conventional from 108499 -> 108497", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108499, + "TargetID": 108497, + "Directional": true + } + ] + }, + { + "ID": 20261, + "SourceStructureID": 108522, + "TargetStructureID": 5503, + "Label": "108522-5503 via Conventional from 108567 -> 108463", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108567, + "TargetID": 108463, + "Directional": true + } + ] + }, + { + "ID": 20262, + "SourceStructureID": 108529, + "TargetStructureID": 5503, + "Label": "108529-5503 via Conventional from 108530 -> 60664", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108530, + "TargetID": 60664, + "Directional": true + } + ] + }, + { + "ID": 20263, + "SourceStructureID": 108531, + "TargetStructureID": 5503, + "Label": "108531-5503 via Conventional from 108532 -> 60631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108532, + "TargetID": 60631, + "Directional": true + } + ] + }, + { + "ID": 20264, + "SourceStructureID": 108533, + "TargetStructureID": 5503, + "Label": "108533-5503 via Conventional from 108535 -> 60630", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108535, + "TargetID": 60630, + "Directional": true + } + ] + }, + { + "ID": 20265, + "SourceStructureID": 108539, + "TargetStructureID": 5645, + "Label": "108539-5645 via Conventional from 108541 -> 108538", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108541, + "TargetID": 108538, + "Directional": true + } + ] + }, + { + "ID": 20266, + "SourceStructureID": 108616, + "TargetStructureID": 6857, + "Label": "108616-6857 via Conventional from 108617 -> 7558", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108617, + "TargetID": 7558, + "Directional": true + } + ] + }, + { + "ID": 20267, + "SourceStructureID": 108701, + "TargetStructureID": 5503, + "Label": "108701-5503 via Conventional from 108702 -> 108700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108702, + "TargetID": 108700, + "Directional": true + } + ] + }, + { + "ID": 20268, + "SourceStructureID": 108715, + "TargetStructureID": 5503, + "Label": "108715-5503 via Conventional from 108721 -> 108714", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108721, + "TargetID": 108714, + "Directional": true + } + ] + }, + { + "ID": 20269, + "SourceStructureID": 108724, + "TargetStructureID": 5499, + "Label": "108724-5499 via Conventional from 108725 -> 105786", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108725, + "TargetID": 105786, + "Directional": true + } + ] + }, + { + "ID": 20270, + "SourceStructureID": 108730, + "TargetStructureID": 5499, + "Label": "108730-5499 via Conventional from 108733 -> 105742", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108733, + "TargetID": 105742, + "Directional": true + } + ] + }, + { + "ID": 20271, + "SourceStructureID": 108745, + "TargetStructureID": 5916, + "Label": "108745-5916 via Conventional from 108746 -> 37976", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108746, + "TargetID": 37976, + "Directional": true + } + ] + }, + { + "ID": 20272, + "SourceStructureID": 108787, + "TargetStructureID": 5503, + "Label": "108787-5503 via Conventional from 108788 -> 36636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108788, + "TargetID": 36636, + "Directional": true + } + ] + }, + { + "ID": 20273, + "SourceStructureID": 108799, + "TargetStructureID": 5503, + "Label": "108799-5503 via Conventional from 108815 -> 36640", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108815, + "TargetID": 36640, + "Directional": true + } + ] + }, + { + "ID": 20274, + "SourceStructureID": 108800, + "TargetStructureID": 20136, + "Label": "108800-20136 via Conventional from 108801 -> 108802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108801, + "TargetID": 108802, + "Directional": true + } + ] + }, + { + "ID": 20275, + "SourceStructureID": 108804, + "TargetStructureID": 20136, + "Label": "108804-20136 via Conventional from 108807 -> 108808", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108807, + "TargetID": 108808, + "Directional": true + } + ] + }, + { + "ID": 20276, + "SourceStructureID": 108814, + "TargetStructureID": 20136, + "Label": "108814-20136 via Conventional from 108816 -> 108817", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108816, + "TargetID": 108817, + "Directional": true + } + ] + }, + { + "ID": 20277, + "SourceStructureID": 108822, + "TargetStructureID": 5503, + "Label": "108822-5503 via Conventional from 108823 -> 36642", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108823, + "TargetID": 36642, + "Directional": true + } + ] + }, + { + "ID": 20278, + "SourceStructureID": 108825, + "TargetStructureID": 20136, + "Label": "108825-20136 via Conventional from 108829 -> 108830", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108829, + "TargetID": 108830, + "Directional": true + } + ] + }, + { + "ID": 20279, + "SourceStructureID": 108865, + "TargetStructureID": 5503, + "Label": "108865-5503 via Conventional from 108868 -> 36643", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108868, + "TargetID": 36643, + "Directional": true + } + ] + }, + { + "ID": 20280, + "SourceStructureID": 108869, + "TargetStructureID": 20136, + "Label": "108869-20136 via Conventional from 108872 -> 108873", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108872, + "TargetID": 108873, + "Directional": true + } + ] + }, + { + "ID": 20281, + "SourceStructureID": 108871, + "TargetStructureID": 5503, + "Label": "108871-5503 via Conventional from 108874 -> 36647", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108874, + "TargetID": 36647, + "Directional": true + } + ] + }, + { + "ID": 20282, + "SourceStructureID": 108932, + "TargetStructureID": 5503, + "Label": "108932-5503 via Conventional from 108934 -> 108931", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108934, + "TargetID": 108931, + "Directional": true + } + ] + }, + { + "ID": 20283, + "SourceStructureID": 108936, + "TargetStructureID": 5503, + "Label": "108936-5503 via Conventional from 108940 -> 108935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108940, + "TargetID": 108935, + "Directional": true + } + ] + }, + { + "ID": 20284, + "SourceStructureID": 108937, + "TargetStructureID": 20136, + "Label": "108937-20136 via Conventional from 108938 -> 108939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108938, + "TargetID": 108939, + "Directional": true + } + ] + }, + { + "ID": 20285, + "SourceStructureID": 108941, + "TargetStructureID": 20136, + "Label": "108941-20136 via Conventional from 108942 -> 108943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108942, + "TargetID": 108943, + "Directional": true + } + ] + }, + { + "ID": 20286, + "SourceStructureID": 108944, + "TargetStructureID": 20136, + "Label": "108944-20136 via Conventional from 108957 -> 108958", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108957, + "TargetID": 108958, + "Directional": true + } + ] + }, + { + "ID": 20287, + "SourceStructureID": 108988, + "TargetStructureID": 20136, + "Label": "108988-20136 via Conventional from 108990 -> 45997", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108990, + "TargetID": 45997, + "Directional": true + } + ] + }, + { + "ID": 20288, + "SourceStructureID": 108993, + "TargetStructureID": 20136, + "Label": "108993-20136 via Conventional from 108995 -> 45999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108995, + "TargetID": 45999, + "Directional": true + } + ] + }, + { + "ID": 20289, + "SourceStructureID": 108996, + "TargetStructureID": 20136, + "Label": "108996-20136 via Conventional from 108997 -> 46002", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 108997, + "TargetID": 46002, + "Directional": true + } + ] + }, + { + "ID": 20290, + "SourceStructureID": 109001, + "TargetStructureID": 20136, + "Label": "109001-20136 via Conventional from 109002 -> 46001", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109002, + "TargetID": 46001, + "Directional": true + } + ] + }, + { + "ID": 20291, + "SourceStructureID": 109004, + "TargetStructureID": 20136, + "Label": "109004-20136 via Conventional from 109005 -> 45998", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109005, + "TargetID": 45998, + "Directional": true + } + ] + }, + { + "ID": 20292, + "SourceStructureID": 109029, + "TargetStructureID": 20136, + "Label": "109029-20136 via Conventional from 109093 -> 109095", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109093, + "TargetID": 109095, + "Directional": true + } + ] + }, + { + "ID": 20293, + "SourceStructureID": 109030, + "TargetStructureID": 20136, + "Label": "109030-20136 via Conventional from 109036 -> 20148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109036, + "TargetID": 20148, + "Directional": true + } + ] + }, + { + "ID": 20294, + "SourceStructureID": 109039, + "TargetStructureID": 5916, + "Label": "109039-5916 via Conventional from 109041 -> 108930", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109041, + "TargetID": 108930, + "Directional": true + } + ] + }, + { + "ID": 20295, + "SourceStructureID": 109068, + "TargetStructureID": 5916, + "Label": "109068-5916 via Conventional from 109069 -> 109067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109069, + "TargetID": 109067, + "Directional": true + } + ] + }, + { + "ID": 20296, + "SourceStructureID": 109079, + "TargetStructureID": 5916, + "Label": "109079-5916 via Conventional from 109082 -> 109081", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109082, + "TargetID": 109081, + "Directional": true + } + ] + }, + { + "ID": 20297, + "SourceStructureID": 109097, + "TargetStructureID": 20136, + "Label": "109097-20136 via Conventional from 109099 -> 46009", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109099, + "TargetID": 46009, + "Directional": true + } + ] + }, + { + "ID": 20298, + "SourceStructureID": 109147, + "TargetStructureID": 109149, + "Label": "109147-109149 via Ribbon Synapse from 109148 -> 109150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109148, + "TargetID": 109150, + "Directional": true + } + ] + }, + { + "ID": 20299, + "SourceStructureID": 109210, + "TargetStructureID": 20136, + "Label": "109210-20136 via Conventional from 109212 -> 46029, 109233 -> 109234", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109212, + "TargetID": 46029, + "Directional": true + }, + { + "SourceID": 109233, + "TargetID": 109234, + "Directional": true + } + ] + }, + { + "ID": 20300, + "SourceStructureID": 109216, + "TargetStructureID": 20136, + "Label": "109216-20136 via Conventional from 109217 -> 109219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109217, + "TargetID": 109219, + "Directional": true + } + ] + }, + { + "ID": 20301, + "SourceStructureID": 109239, + "TargetStructureID": 20136, + "Label": "109239-20136 via Conventional from 109241 -> 109242", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109241, + "TargetID": 109242, + "Directional": true + } + ] + }, + { + "ID": 20302, + "SourceStructureID": 109239, + "TargetStructureID": 38502, + "Label": "109239-38502 via Conventional from 109240 -> 38505", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109240, + "TargetID": 38505, + "Directional": true + } + ] + }, + { + "ID": 20303, + "SourceStructureID": 109245, + "TargetStructureID": 20136, + "Label": "109245-20136 via Conventional from 109246 -> 97821", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109246, + "TargetID": 97821, + "Directional": true + } + ] + }, + { + "ID": 20304, + "SourceStructureID": 109257, + "TargetStructureID": 606, + "Label": "109257-606 via Conventional from 109258 -> 51584", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109258, + "TargetID": 51584, + "Directional": true + } + ] + }, + { + "ID": 20305, + "SourceStructureID": 109267, + "TargetStructureID": 20136, + "Label": "109267-20136 via Conventional from 109272 -> 46033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109272, + "TargetID": 46033, + "Directional": true + } + ] + }, + { + "ID": 20306, + "SourceStructureID": 109271, + "TargetStructureID": 20136, + "Label": "109271-20136 via Conventional from 109273 -> 46035", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109273, + "TargetID": 46035, + "Directional": true + } + ] + }, + { + "ID": 20307, + "SourceStructureID": 109277, + "TargetStructureID": 5561, + "Label": "109277-5561 via Conventional from 109278 -> 97839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109278, + "TargetID": 97839, + "Directional": true + } + ] + }, + { + "ID": 20308, + "SourceStructureID": 109308, + "TargetStructureID": 5916, + "Label": "109308-5916 via Conventional from 109311 -> 109310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109311, + "TargetID": 109310, + "Directional": true + } + ] + }, + { + "ID": 20309, + "SourceStructureID": 109341, + "TargetStructureID": 20136, + "Label": "109341-20136 via Conventional from 109343 -> 109342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109343, + "TargetID": 109342, + "Directional": true + } + ] + }, + { + "ID": 20310, + "SourceStructureID": 109419, + "TargetStructureID": 20136, + "Label": "109419-20136 via Conventional from 109434 -> 109433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109434, + "TargetID": 109433, + "Directional": true + } + ] + }, + { + "ID": 20311, + "SourceStructureID": 109450, + "TargetStructureID": 20136, + "Label": "109450-20136 via Conventional from 109451 -> 46023", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109451, + "TargetID": 46023, + "Directional": true + } + ] + }, + { + "ID": 20312, + "SourceStructureID": 109458, + "TargetStructureID": 5517, + "Label": "109458-5517 via Conventional from 109460 -> 49453", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109460, + "TargetID": 49453, + "Directional": true + } + ] + }, + { + "ID": 20313, + "SourceStructureID": 109483, + "TargetStructureID": 20136, + "Label": "109483-20136 via Conventional from 109484 -> 109485", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109484, + "TargetID": 109485, + "Directional": true + } + ] + }, + { + "ID": 20314, + "SourceStructureID": 109488, + "TargetStructureID": 20136, + "Label": "109488-20136 via Conventional from 109495 -> 46022", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109495, + "TargetID": 46022, + "Directional": true + } + ] + }, + { + "ID": 20315, + "SourceStructureID": 109497, + "TargetStructureID": 20136, + "Label": "109497-20136 via Conventional from 109498 -> 109499", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109498, + "TargetID": 109499, + "Directional": true + } + ] + }, + { + "ID": 20316, + "SourceStructureID": 109534, + "TargetStructureID": 20136, + "Label": "109534-20136 via Conventional from 109537 -> 46019", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109537, + "TargetID": 46019, + "Directional": true + } + ] + }, + { + "ID": 20317, + "SourceStructureID": 109540, + "TargetStructureID": 20136, + "Label": "109540-20136 via Conventional from 109542 -> 109543", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109542, + "TargetID": 109543, + "Directional": true + } + ] + }, + { + "ID": 20318, + "SourceStructureID": 109559, + "TargetStructureID": 20136, + "Label": "109559-20136 via Conventional from 109560 -> 46018", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109560, + "TargetID": 46018, + "Directional": true + } + ] + }, + { + "ID": 20319, + "SourceStructureID": 109565, + "TargetStructureID": 20136, + "Label": "109565-20136 via Conventional from 109571 -> 109572", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109571, + "TargetID": 109572, + "Directional": true + } + ] + }, + { + "ID": 20320, + "SourceStructureID": 109565, + "TargetStructureID": 109559, + "Label": "109565-109559 via Ribbon Synapse from 109652 -> 109659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109652, + "TargetID": 109659, + "Directional": true + } + ] + }, + { + "ID": 20321, + "SourceStructureID": 109565, + "TargetStructureID": 109565, + "Label": "109565-109565 via Ribbon Synapse from 109652 -> 109653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109652, + "TargetID": 109653, + "Directional": true + } + ] + }, + { + "ID": 20322, + "SourceStructureID": 109565, + "TargetStructureID": 109597, + "Label": "109565-109597 via Ribbon Synapse from 109652 -> 109658", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 109652, + "TargetID": 109658, + "Directional": true + } + ] + }, + { + "ID": 20323, + "SourceStructureID": 109574, + "TargetStructureID": 20136, + "Label": "109574-20136 via Conventional from 109613 -> 109614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109613, + "TargetID": 109614, + "Directional": true + } + ] + }, + { + "ID": 20324, + "SourceStructureID": 109597, + "TargetStructureID": 20136, + "Label": "109597-20136 via Conventional from 109598 -> 109605", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109598, + "TargetID": 109605, + "Directional": true + } + ] + }, + { + "ID": 20325, + "SourceStructureID": 109608, + "TargetStructureID": 20136, + "Label": "109608-20136 via Conventional from 109670 -> 109671", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109670, + "TargetID": 109671, + "Directional": true + } + ] + }, + { + "ID": 20326, + "SourceStructureID": 109608, + "TargetStructureID": 109575, + "Label": "109608-109575 via Conventional from 109610 -> 109612", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109610, + "TargetID": 109612, + "Directional": true + } + ] + }, + { + "ID": 20327, + "SourceStructureID": 109660, + "TargetStructureID": 5517, + "Label": "109660-5517 via Conventional from 109663 -> 22922", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109663, + "TargetID": 22922, + "Directional": true + } + ] + }, + { + "ID": 20328, + "SourceStructureID": 109678, + "TargetStructureID": 5503, + "Label": "109678-5503 via Conventional from 109680 -> 109677", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109680, + "TargetID": 109677, + "Directional": true + } + ] + }, + { + "ID": 20329, + "SourceStructureID": 109681, + "TargetStructureID": 5503, + "Label": "109681-5503 via Conventional from 109685 -> 60692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109685, + "TargetID": 60692, + "Directional": true + } + ] + }, + { + "ID": 20330, + "SourceStructureID": 109696, + "TargetStructureID": 5916, + "Label": "109696-5916 via Conventional from 109699 -> 109698", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109699, + "TargetID": 109698, + "Directional": true + } + ] + }, + { + "ID": 20331, + "SourceStructureID": 109710, + "TargetStructureID": 5503, + "Label": "109710-5503 via Conventional from 109711 -> 109709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109711, + "TargetID": 109709, + "Directional": true + } + ] + }, + { + "ID": 20332, + "SourceStructureID": 109730, + "TargetStructureID": 5503, + "Label": "109730-5503 via Conventional from 109739 -> 60693", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109739, + "TargetID": 60693, + "Directional": true + } + ] + }, + { + "ID": 20333, + "SourceStructureID": 109742, + "TargetStructureID": 5503, + "Label": "109742-5503 via Conventional from 109743 -> 60694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109743, + "TargetID": 60694, + "Directional": true + } + ] + }, + { + "ID": 20334, + "SourceStructureID": 109750, + "TargetStructureID": 5503, + "Label": "109750-5503 via Conventional from 109757 -> 109748, 110027 -> 110026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109757, + "TargetID": 109748, + "Directional": true + }, + { + "SourceID": 110027, + "TargetID": 110026, + "Directional": true + } + ] + }, + { + "ID": 20335, + "SourceStructureID": 109762, + "TargetStructureID": 109305, + "Label": "109762-109305 via Conventional from 109763 -> 109764", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109763, + "TargetID": 109764, + "Directional": true + } + ] + }, + { + "ID": 20336, + "SourceStructureID": 109778, + "TargetStructureID": 20136, + "Label": "109778-20136 via Conventional from 109780 -> 109360", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109780, + "TargetID": 109360, + "Directional": true + } + ] + }, + { + "ID": 20337, + "SourceStructureID": 109781, + "TargetStructureID": 20136, + "Label": "109781-20136 via Conventional from 109782 -> 109783", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109782, + "TargetID": 109783, + "Directional": true + } + ] + }, + { + "ID": 20338, + "SourceStructureID": 109788, + "TargetStructureID": 20136, + "Label": "109788-20136 via Conventional from 109790 -> 109791", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109790, + "TargetID": 109791, + "Directional": true + } + ] + }, + { + "ID": 20339, + "SourceStructureID": 109793, + "TargetStructureID": 108831, + "Label": "109793-108831 via Conventional from 109794 -> 109795", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109794, + "TargetID": 109795, + "Directional": true + } + ] + }, + { + "ID": 20340, + "SourceStructureID": 109802, + "TargetStructureID": 20136, + "Label": "109802-20136 via Conventional from 109803 -> 109374, 109864 -> 29152", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109803, + "TargetID": 109374, + "Directional": true + }, + { + "SourceID": 109864, + "TargetID": 29152, + "Directional": true + } + ] + }, + { + "ID": 20341, + "SourceStructureID": 109804, + "TargetStructureID": 5503, + "Label": "109804-5503 via Conventional from 109806 -> 60666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109806, + "TargetID": 60666, + "Directional": true + } + ] + }, + { + "ID": 20342, + "SourceStructureID": 109809, + "TargetStructureID": 5503, + "Label": "109809-5503 via Conventional from 109811 -> 60671, 109849 -> 109840", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109811, + "TargetID": 60671, + "Directional": true + }, + { + "SourceID": 109849, + "TargetID": 109840, + "Directional": true + } + ] + }, + { + "ID": 20343, + "SourceStructureID": 109814, + "TargetStructureID": 5503, + "Label": "109814-5503 via Conventional from 109817 -> 60670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109817, + "TargetID": 60670, + "Directional": true + } + ] + }, + { + "ID": 20344, + "SourceStructureID": 109825, + "TargetStructureID": 5503, + "Label": "109825-5503 via Conventional from 109828 -> 60668", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109828, + "TargetID": 60668, + "Directional": true + } + ] + }, + { + "ID": 20345, + "SourceStructureID": 109831, + "TargetStructureID": 20136, + "Label": "109831-20136 via Conventional from 109832 -> 109833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109832, + "TargetID": 109833, + "Directional": true + } + ] + }, + { + "ID": 20346, + "SourceStructureID": 109834, + "TargetStructureID": 5503, + "Label": "109834-5503 via Conventional from 109836 -> 60669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109836, + "TargetID": 60669, + "Directional": true + } + ] + }, + { + "ID": 20347, + "SourceStructureID": 109881, + "TargetStructureID": 20136, + "Label": "109881-20136 via Conventional from 109882 -> 109883", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109882, + "TargetID": 109883, + "Directional": true + } + ] + }, + { + "ID": 20348, + "SourceStructureID": 109887, + "TargetStructureID": 20136, + "Label": "109887-20136 via Conventional from 109892 -> 46014", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109892, + "TargetID": 46014, + "Directional": true + } + ] + }, + { + "ID": 20349, + "SourceStructureID": 109893, + "TargetStructureID": 5503, + "Label": "109893-5503 via Conventional from 109918 -> 109916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109918, + "TargetID": 109916, + "Directional": true + } + ] + }, + { + "ID": 20350, + "SourceStructureID": 109900, + "TargetStructureID": 20136, + "Label": "109900-20136 via Conventional from 109901 -> 46015", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109901, + "TargetID": 46015, + "Directional": true + } + ] + }, + { + "ID": 20351, + "SourceStructureID": 109913, + "TargetStructureID": 5503, + "Label": "109913-5503 via Conventional from 109915 -> 60686", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109915, + "TargetID": 60686, + "Directional": true + } + ] + }, + { + "ID": 20352, + "SourceStructureID": 109922, + "TargetStructureID": 5503, + "Label": "109922-5503 via Conventional from 109923 -> 60676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109923, + "TargetID": 60676, + "Directional": true + } + ] + }, + { + "ID": 20353, + "SourceStructureID": 109924, + "TargetStructureID": 5503, + "Label": "109924-5503 via Conventional from 109925 -> 60681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109925, + "TargetID": 60681, + "Directional": true + } + ] + }, + { + "ID": 20354, + "SourceStructureID": 109926, + "TargetStructureID": 5503, + "Label": "109926-5503 via Conventional from 109928 -> 60677", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109928, + "TargetID": 60677, + "Directional": true + } + ] + }, + { + "ID": 20355, + "SourceStructureID": 109926, + "TargetStructureID": 5916, + "Label": "109926-5916 via Conventional from 109927 -> 109633", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109927, + "TargetID": 109633, + "Directional": true + } + ] + }, + { + "ID": 20356, + "SourceStructureID": 109932, + "TargetStructureID": 5503, + "Label": "109932-5503 via Conventional from 109933 -> 60685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109933, + "TargetID": 60685, + "Directional": true + } + ] + }, + { + "ID": 20357, + "SourceStructureID": 109932, + "TargetStructureID": 5916, + "Label": "109932-5916 via Conventional from 109934 -> 109632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109934, + "TargetID": 109632, + "Directional": true + } + ] + }, + { + "ID": 20358, + "SourceStructureID": 109936, + "TargetStructureID": 5503, + "Label": "109936-5503 via Conventional from 109937 -> 109935", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109937, + "TargetID": 109935, + "Directional": true + } + ] + }, + { + "ID": 20359, + "SourceStructureID": 109941, + "TargetStructureID": 5503, + "Label": "109941-5503 via Conventional from 109942 -> 60680", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109942, + "TargetID": 60680, + "Directional": true + } + ] + }, + { + "ID": 20360, + "SourceStructureID": 109943, + "TargetStructureID": 5503, + "Label": "109943-5503 via Conventional from 109944 -> 60679", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109944, + "TargetID": 60679, + "Directional": true + } + ] + }, + { + "ID": 20361, + "SourceStructureID": 109949, + "TargetStructureID": 5503, + "Label": "109949-5503 via Conventional from 109950 -> 109948", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109950, + "TargetID": 109948, + "Directional": true + } + ] + }, + { + "ID": 20362, + "SourceStructureID": 109949, + "TargetStructureID": 109952, + "Label": "109949-109952 via Conventional from 109955 -> 109953", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109955, + "TargetID": 109953, + "Directional": true + } + ] + }, + { + "ID": 20363, + "SourceStructureID": 109956, + "TargetStructureID": 5503, + "Label": "109956-5503 via Conventional from 109957 -> 36646", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109957, + "TargetID": 36646, + "Directional": true + } + ] + }, + { + "ID": 20364, + "SourceStructureID": 109980, + "TargetStructureID": 5503, + "Label": "109980-5503 via Conventional from 109981 -> 109979", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109981, + "TargetID": 109979, + "Directional": true + } + ] + }, + { + "ID": 20365, + "SourceStructureID": 109986, + "TargetStructureID": 109980, + "Label": "109986-109980 via Conventional from 109988 -> 109989", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 109988, + "TargetID": 109989, + "Directional": true + } + ] + }, + { + "ID": 20366, + "SourceStructureID": 109991, + "TargetStructureID": 5503, + "Label": "109991-5503 via Conventional from 114842 -> 109992", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114842, + "TargetID": 109992, + "Directional": true + } + ] + }, + { + "ID": 20367, + "SourceStructureID": 110010, + "TargetStructureID": 5503, + "Label": "110010-5503 via Conventional from 110011 -> 110009", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110011, + "TargetID": 110009, + "Directional": true + } + ] + }, + { + "ID": 20368, + "SourceStructureID": 110022, + "TargetStructureID": 5503, + "Label": "110022-5503 via Conventional from 110023 -> 61133", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110023, + "TargetID": 61133, + "Directional": true + } + ] + }, + { + "ID": 20369, + "SourceStructureID": 110024, + "TargetStructureID": 5503, + "Label": "110024-5503 via Conventional from 110025 -> 61132", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110025, + "TargetID": 61132, + "Directional": true + } + ] + }, + { + "ID": 20370, + "SourceStructureID": 110035, + "TargetStructureID": 5503, + "Label": "110035-5503 via Conventional from 110036 -> 110034", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110036, + "TargetID": 110034, + "Directional": true + } + ] + }, + { + "ID": 20371, + "SourceStructureID": 110037, + "TargetStructureID": 5503, + "Label": "110037-5503 via Conventional from 110038 -> 110033", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110038, + "TargetID": 110033, + "Directional": true + } + ] + }, + { + "ID": 20372, + "SourceStructureID": 110040, + "TargetStructureID": 5503, + "Label": "110040-5503 via Conventional from 110041 -> 110039", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110041, + "TargetID": 110039, + "Directional": true + } + ] + }, + { + "ID": 20373, + "SourceStructureID": 110054, + "TargetStructureID": 5503, + "Label": "110054-5503 via Conventional from 110055 -> 110053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110055, + "TargetID": 110053, + "Directional": true + } + ] + }, + { + "ID": 20374, + "SourceStructureID": 110064, + "TargetStructureID": 5503, + "Label": "110064-5503 via Conventional from 110291 -> 60695", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110291, + "TargetID": 60695, + "Directional": true + } + ] + }, + { + "ID": 20375, + "SourceStructureID": 110066, + "TargetStructureID": 5503, + "Label": "110066-5503 via Conventional from 110067 -> 36582", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110067, + "TargetID": 36582, + "Directional": true + } + ] + }, + { + "ID": 20376, + "SourceStructureID": 110069, + "TargetStructureID": 5503, + "Label": "110069-5503 via Conventional from 110070 -> 110068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110070, + "TargetID": 110068, + "Directional": true + } + ] + }, + { + "ID": 20377, + "SourceStructureID": 110072, + "TargetStructureID": 5503, + "Label": "110072-5503 via Conventional from 110073 -> 36589", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110073, + "TargetID": 36589, + "Directional": true + } + ] + }, + { + "ID": 20378, + "SourceStructureID": 110081, + "TargetStructureID": 5501, + "Label": "110081-5501 via Conventional from 110083 -> 36586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110083, + "TargetID": 36586, + "Directional": true + } + ] + }, + { + "ID": 20379, + "SourceStructureID": 110081, + "TargetStructureID": 5503, + "Label": "110081-5503 via Conventional from 110082 -> 110080", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110082, + "TargetID": 110080, + "Directional": true + } + ] + }, + { + "ID": 20380, + "SourceStructureID": 110095, + "TargetStructureID": 5503, + "Label": "110095-5503 via Conventional from 110096 -> 110094", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110096, + "TargetID": 110094, + "Directional": true + } + ] + }, + { + "ID": 20381, + "SourceStructureID": 110099, + "TargetStructureID": 5503, + "Label": "110099-5503 via Conventional from 110101 -> 110102", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110101, + "TargetID": 110102, + "Directional": true + } + ] + }, + { + "ID": 20382, + "SourceStructureID": 110104, + "TargetStructureID": 5503, + "Label": "110104-5503 via Conventional from 110105 -> 110103", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110105, + "TargetID": 110103, + "Directional": true + } + ] + }, + { + "ID": 20383, + "SourceStructureID": 110107, + "TargetStructureID": 5503, + "Label": "110107-5503 via Conventional from 110108 -> 110106", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110108, + "TargetID": 110106, + "Directional": true + } + ] + }, + { + "ID": 20384, + "SourceStructureID": 110112, + "TargetStructureID": 5503, + "Label": "110112-5503 via Conventional from 110118 -> 110119", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110118, + "TargetID": 110119, + "Directional": true + } + ] + }, + { + "ID": 20385, + "SourceStructureID": 110115, + "TargetStructureID": 5503, + "Label": "110115-5503 via Conventional from 110116 -> 110114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110116, + "TargetID": 110114, + "Directional": true + } + ] + }, + { + "ID": 20386, + "SourceStructureID": 110121, + "TargetStructureID": 5503, + "Label": "110121-5503 via Conventional from 110122 -> 110120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110122, + "TargetID": 110120, + "Directional": true + } + ] + }, + { + "ID": 20387, + "SourceStructureID": 110124, + "TargetStructureID": 5503, + "Label": "110124-5503 via Conventional from 110125 -> 110123", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110125, + "TargetID": 110123, + "Directional": true + } + ] + }, + { + "ID": 20388, + "SourceStructureID": 110127, + "TargetStructureID": 5503, + "Label": "110127-5503 via Conventional from 110128 -> 110126", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110128, + "TargetID": 110126, + "Directional": true + } + ] + }, + { + "ID": 20389, + "SourceStructureID": 110134, + "TargetStructureID": 5503, + "Label": "110134-5503 via Conventional from 110135 -> 110133", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110135, + "TargetID": 110133, + "Directional": true + } + ] + }, + { + "ID": 20390, + "SourceStructureID": 110137, + "TargetStructureID": 5503, + "Label": "110137-5503 via Conventional from 110138 -> 110136", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110138, + "TargetID": 110136, + "Directional": true + } + ] + }, + { + "ID": 20391, + "SourceStructureID": 110140, + "TargetStructureID": 5503, + "Label": "110140-5503 via Conventional from 110141 -> 110139", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110141, + "TargetID": 110139, + "Directional": true + } + ] + }, + { + "ID": 20392, + "SourceStructureID": 110151, + "TargetStructureID": 5503, + "Label": "110151-5503 via Conventional from 110152 -> 110150", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110152, + "TargetID": 110150, + "Directional": true + } + ] + }, + { + "ID": 20393, + "SourceStructureID": 110155, + "TargetStructureID": 5503, + "Label": "110155-5503 via Conventional from 110156 -> 110154", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110156, + "TargetID": 110154, + "Directional": true + } + ] + }, + { + "ID": 20394, + "SourceStructureID": 110169, + "TargetStructureID": 5503, + "Label": "110169-5503 via Conventional from 110171 -> 110168", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110171, + "TargetID": 110168, + "Directional": true + } + ] + }, + { + "ID": 20395, + "SourceStructureID": 110173, + "TargetStructureID": 20136, + "Label": "110173-20136 via Conventional from 110180 -> 110184", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110180, + "TargetID": 110184, + "Directional": true + } + ] + }, + { + "ID": 20396, + "SourceStructureID": 110175, + "TargetStructureID": 5503, + "Label": "110175-5503 via Conventional from 110178 -> 110174", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110178, + "TargetID": 110174, + "Directional": true + } + ] + }, + { + "ID": 20397, + "SourceStructureID": 110181, + "TargetStructureID": 5503, + "Label": "110181-5503 via Conventional from 110183 -> 110172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110183, + "TargetID": 110172, + "Directional": true + } + ] + }, + { + "ID": 20398, + "SourceStructureID": 110233, + "TargetStructureID": 20136, + "Label": "110233-20136 via Conventional from 110234 -> 110235", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110234, + "TargetID": 110235, + "Directional": true + } + ] + }, + { + "ID": 20399, + "SourceStructureID": 110259, + "TargetStructureID": 5503, + "Label": "110259-5503 via Conventional from 110261 -> 110258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110261, + "TargetID": 110258, + "Directional": true + } + ] + }, + { + "ID": 20400, + "SourceStructureID": 110271, + "TargetStructureID": 20136, + "Label": "110271-20136 via Conventional from 110283 -> 110284", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110283, + "TargetID": 110284, + "Directional": true + } + ] + }, + { + "ID": 20401, + "SourceStructureID": 110277, + "TargetStructureID": 5503, + "Label": "110277-5503 via Conventional from 110278 -> 110276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110278, + "TargetID": 110276, + "Directional": true + } + ] + }, + { + "ID": 20402, + "SourceStructureID": 110307, + "TargetStructureID": 5503, + "Label": "110307-5503 via Conventional from 110308 -> 20085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110308, + "TargetID": 20085, + "Directional": true + } + ] + }, + { + "ID": 20403, + "SourceStructureID": 110312, + "TargetStructureID": 909, + "Label": "110312-909 via Conventional from 130937 -> 130936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130937, + "TargetID": 130936, + "Directional": true + } + ] + }, + { + "ID": 20404, + "SourceStructureID": 110312, + "TargetStructureID": 20136, + "Label": "110312-20136 via Conventional from 110324 -> 110325", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110324, + "TargetID": 110325, + "Directional": true + } + ] + }, + { + "ID": 20405, + "SourceStructureID": 110313, + "TargetStructureID": 5503, + "Label": "110313-5503 via Conventional from 110314 -> 20089", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110314, + "TargetID": 20089, + "Directional": true + } + ] + }, + { + "ID": 20406, + "SourceStructureID": 110316, + "TargetStructureID": 20136, + "Label": "110316-20136 via Conventional from 110322 -> 110323", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110322, + "TargetID": 110323, + "Directional": true + } + ] + }, + { + "ID": 20407, + "SourceStructureID": 110331, + "TargetStructureID": 20136, + "Label": "110331-20136 via Conventional from 110332 -> 110334", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110332, + "TargetID": 110334, + "Directional": true + } + ] + }, + { + "ID": 20408, + "SourceStructureID": 110333, + "TargetStructureID": 5503, + "Label": "110333-5503 via Conventional from 110337 -> 60702", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110337, + "TargetID": 60702, + "Directional": true + } + ] + }, + { + "ID": 20409, + "SourceStructureID": 110356, + "TargetStructureID": 20136, + "Label": "110356-20136 via Conventional from 110361 -> 110362", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110361, + "TargetID": 110362, + "Directional": true + } + ] + }, + { + "ID": 20410, + "SourceStructureID": 110374, + "TargetStructureID": 20136, + "Label": "110374-20136 via Conventional from 110375 -> 110382", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110375, + "TargetID": 110382, + "Directional": true + } + ] + }, + { + "ID": 20411, + "SourceStructureID": 110378, + "TargetStructureID": 20136, + "Label": "110378-20136 via Conventional from 110383 -> 110384", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110383, + "TargetID": 110384, + "Directional": true + } + ] + }, + { + "ID": 20412, + "SourceStructureID": 110379, + "TargetStructureID": 5503, + "Label": "110379-5503 via Conventional from 110380 -> 60701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110380, + "TargetID": 60701, + "Directional": true + } + ] + }, + { + "ID": 20413, + "SourceStructureID": 110381, + "TargetStructureID": 5503, + "Label": "110381-5503 via Conventional from 110420 -> 60700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110420, + "TargetID": 60700, + "Directional": true + } + ] + }, + { + "ID": 20414, + "SourceStructureID": 110394, + "TargetStructureID": 20136, + "Label": "110394-20136 via Conventional from 110395 -> 110396", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110395, + "TargetID": 110396, + "Directional": true + } + ] + }, + { + "ID": 20415, + "SourceStructureID": 110422, + "TargetStructureID": 5503, + "Label": "110422-5503 via Conventional from 110423 -> 110421", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110423, + "TargetID": 110421, + "Directional": true + } + ] + }, + { + "ID": 20416, + "SourceStructureID": 110429, + "TargetStructureID": 20136, + "Label": "110429-20136 via Conventional from 110431 -> 110432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110431, + "TargetID": 110432, + "Directional": true + } + ] + }, + { + "ID": 20417, + "SourceStructureID": 110437, + "TargetStructureID": 5503, + "Label": "110437-5503 via Conventional from 110439 -> 110440", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110439, + "TargetID": 110440, + "Directional": true + } + ] + }, + { + "ID": 20418, + "SourceStructureID": 110441, + "TargetStructureID": 5503, + "Label": "110441-5503 via Conventional from 110442 -> 52807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110442, + "TargetID": 52807, + "Directional": true + } + ] + }, + { + "ID": 20419, + "SourceStructureID": 110451, + "TargetStructureID": 5503, + "Label": "110451-5503 via Conventional from 110452 -> 110450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110452, + "TargetID": 110450, + "Directional": true + } + ] + }, + { + "ID": 20420, + "SourceStructureID": 110466, + "TargetStructureID": 5501, + "Label": "110466-5501 via Conventional from 110467 -> 36561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110467, + "TargetID": 36561, + "Directional": true + } + ] + }, + { + "ID": 20421, + "SourceStructureID": 110472, + "TargetStructureID": 5503, + "Label": "110472-5503 via Conventional from 110473 -> 110471", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110473, + "TargetID": 110471, + "Directional": true + } + ] + }, + { + "ID": 20422, + "SourceStructureID": 110475, + "TargetStructureID": 5503, + "Label": "110475-5503 via Conventional from 110476 -> 110474", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110476, + "TargetID": 110474, + "Directional": true + } + ] + }, + { + "ID": 20423, + "SourceStructureID": 110484, + "TargetStructureID": 5503, + "Label": "110484-5503 via Conventional from 110485 -> 110483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110485, + "TargetID": 110483, + "Directional": true + } + ] + }, + { + "ID": 20424, + "SourceStructureID": 110493, + "TargetStructureID": 6120, + "Label": "110493-6120 via Conventional from 110494 -> 37230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110494, + "TargetID": 37230, + "Directional": true + } + ] + }, + { + "ID": 20425, + "SourceStructureID": 110496, + "TargetStructureID": 6120, + "Label": "110496-6120 via Conventional from 110498 -> 37232", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110498, + "TargetID": 37232, + "Directional": true + } + ] + }, + { + "ID": 20426, + "SourceStructureID": 110516, + "TargetStructureID": 6120, + "Label": "110516-6120 via Conventional from 111665 -> 111664", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111665, + "TargetID": 111664, + "Directional": true + } + ] + }, + { + "ID": 20427, + "SourceStructureID": 110521, + "TargetStructureID": 6120, + "Label": "110521-6120 via Conventional from 110522 -> 37241", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110522, + "TargetID": 37241, + "Directional": true + } + ] + }, + { + "ID": 20428, + "SourceStructureID": 110525, + "TargetStructureID": 6120, + "Label": "110525-6120 via Conventional from 110527 -> 110524", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110527, + "TargetID": 110524, + "Directional": true + } + ] + }, + { + "ID": 20429, + "SourceStructureID": 110544, + "TargetStructureID": 6120, + "Label": "110544-6120 via Conventional from 110545 -> 110530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110545, + "TargetID": 110530, + "Directional": true + } + ] + }, + { + "ID": 20430, + "SourceStructureID": 110554, + "TargetStructureID": 6120, + "Label": "110554-6120 via Conventional from 110555 -> 110550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110555, + "TargetID": 110550, + "Directional": true + } + ] + }, + { + "ID": 20431, + "SourceStructureID": 110559, + "TargetStructureID": 6120, + "Label": "110559-6120 via Conventional from 110560 -> 110552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110560, + "TargetID": 110552, + "Directional": true + } + ] + }, + { + "ID": 20432, + "SourceStructureID": 110562, + "TargetStructureID": 6120, + "Label": "110562-6120 via Conventional from 110563 -> 110561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110563, + "TargetID": 110561, + "Directional": true + } + ] + }, + { + "ID": 20433, + "SourceStructureID": 110580, + "TargetStructureID": 6120, + "Label": "110580-6120 via Conventional from 110582 -> 37249", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110582, + "TargetID": 37249, + "Directional": true + } + ] + }, + { + "ID": 20434, + "SourceStructureID": 110586, + "TargetStructureID": 110593, + "Label": "110586-110593 via Conventional from 110588 -> 110594", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110588, + "TargetID": 110594, + "Directional": true + } + ] + }, + { + "ID": 20435, + "SourceStructureID": 110600, + "TargetStructureID": 6120, + "Label": "110600-6120 via Conventional from 110601 -> 37252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110601, + "TargetID": 37252, + "Directional": true + } + ] + }, + { + "ID": 20436, + "SourceStructureID": 110610, + "TargetStructureID": 6120, + "Label": "110610-6120 via Conventional from 110611 -> 110609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110611, + "TargetID": 110609, + "Directional": true + } + ] + }, + { + "ID": 20437, + "SourceStructureID": 110617, + "TargetStructureID": 6120, + "Label": "110617-6120 via Conventional from 110618 -> 110616", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110618, + "TargetID": 110616, + "Directional": true + } + ] + }, + { + "ID": 20438, + "SourceStructureID": 110622, + "TargetStructureID": 6120, + "Label": "110622-6120 via Conventional from 110625 -> 110620", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110625, + "TargetID": 110620, + "Directional": true + } + ] + }, + { + "ID": 20439, + "SourceStructureID": 110623, + "TargetStructureID": 6120, + "Label": "110623-6120 via Conventional from 110624 -> 110621", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110624, + "TargetID": 110621, + "Directional": true + } + ] + }, + { + "ID": 20440, + "SourceStructureID": 110630, + "TargetStructureID": 6120, + "Label": "110630-6120 via Conventional from 110631 -> 110629", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110631, + "TargetID": 110629, + "Directional": true + } + ] + }, + { + "ID": 20441, + "SourceStructureID": 110638, + "TargetStructureID": 6120, + "Label": "110638-6120 via Conventional from 110640 -> 110637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110640, + "TargetID": 110637, + "Directional": true + } + ] + }, + { + "ID": 20442, + "SourceStructureID": 110646, + "TargetStructureID": 6120, + "Label": "110646-6120 via Conventional from 110647 -> 110636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110647, + "TargetID": 110636, + "Directional": true + } + ] + }, + { + "ID": 20443, + "SourceStructureID": 110648, + "TargetStructureID": 5531, + "Label": "110648-5531 via Conventional from 136318 -> 136317", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136318, + "TargetID": 136317, + "Directional": true + } + ] + }, + { + "ID": 20444, + "SourceStructureID": 110652, + "TargetStructureID": 5531, + "Label": "110652-5531 via Conventional from 110653 -> 110654", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110653, + "TargetID": 110654, + "Directional": true + } + ] + }, + { + "ID": 20445, + "SourceStructureID": 110668, + "TargetStructureID": 5531, + "Label": "110668-5531 via Conventional from 110669 -> 110670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110669, + "TargetID": 110670, + "Directional": true + } + ] + }, + { + "ID": 20446, + "SourceStructureID": 110686, + "TargetStructureID": 5531, + "Label": "110686-5531 via Conventional from 110687 -> 110688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110687, + "TargetID": 110688, + "Directional": true + } + ] + }, + { + "ID": 20447, + "SourceStructureID": 110703, + "TargetStructureID": 5531, + "Label": "110703-5531 via Conventional from 110704 -> 110705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110704, + "TargetID": 110705, + "Directional": true + } + ] + }, + { + "ID": 20448, + "SourceStructureID": 110709, + "TargetStructureID": 5531, + "Label": "110709-5531 via Conventional from 110710 -> 110711", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110710, + "TargetID": 110711, + "Directional": true + } + ] + }, + { + "ID": 20449, + "SourceStructureID": 110720, + "TargetStructureID": 6120, + "Label": "110720-6120 via Conventional from 110721 -> 40733", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110721, + "TargetID": 40733, + "Directional": true + } + ] + }, + { + "ID": 20450, + "SourceStructureID": 110722, + "TargetStructureID": 6120, + "Label": "110722-6120 via Conventional from 110723 -> 110724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110723, + "TargetID": 110724, + "Directional": true + } + ] + }, + { + "ID": 20451, + "SourceStructureID": 110726, + "TargetStructureID": 6120, + "Label": "110726-6120 via Conventional from 110727 -> 110725", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110727, + "TargetID": 110725, + "Directional": true + } + ] + }, + { + "ID": 20452, + "SourceStructureID": 110728, + "TargetStructureID": 6120, + "Label": "110728-6120 via Conventional from 110729 -> 110730", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110729, + "TargetID": 110730, + "Directional": true + } + ] + }, + { + "ID": 20453, + "SourceStructureID": 110736, + "TargetStructureID": 6120, + "Label": "110736-6120 via Conventional from 110737 -> 110735", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110737, + "TargetID": 110735, + "Directional": true + } + ] + }, + { + "ID": 20454, + "SourceStructureID": 110743, + "TargetStructureID": 606, + "Label": "110743-606 via Conventional from 110745 -> 51503", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110745, + "TargetID": 51503, + "Directional": true + } + ] + }, + { + "ID": 20455, + "SourceStructureID": 110743, + "TargetStructureID": 6120, + "Label": "110743-6120 via Conventional from 110744 -> 110740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110744, + "TargetID": 110740, + "Directional": true + } + ] + }, + { + "ID": 20456, + "SourceStructureID": 110755, + "TargetStructureID": 6120, + "Label": "110755-6120 via Conventional from 110756 -> 61157", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110756, + "TargetID": 61157, + "Directional": true + } + ] + }, + { + "ID": 20457, + "SourceStructureID": 110769, + "TargetStructureID": 6120, + "Label": "110769-6120 via Conventional from 110770 -> 110768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110770, + "TargetID": 110768, + "Directional": true + } + ] + }, + { + "ID": 20458, + "SourceStructureID": 110783, + "TargetStructureID": 6120, + "Label": "110783-6120 via Conventional from 110784 -> 110782", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110784, + "TargetID": 110782, + "Directional": true + } + ] + }, + { + "ID": 20459, + "SourceStructureID": 110791, + "TargetStructureID": 6120, + "Label": "110791-6120 via Conventional from 110792 -> 61162", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110792, + "TargetID": 61162, + "Directional": true + } + ] + }, + { + "ID": 20460, + "SourceStructureID": 110793, + "TargetStructureID": 69162, + "Label": "110793-69162 via Conventional from 110794 -> 69277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110794, + "TargetID": 69277, + "Directional": true + } + ] + }, + { + "ID": 20461, + "SourceStructureID": 110796, + "TargetStructureID": 6120, + "Label": "110796-6120 via Conventional from 110797 -> 61159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110797, + "TargetID": 61159, + "Directional": true + } + ] + }, + { + "ID": 20462, + "SourceStructureID": 110800, + "TargetStructureID": 69162, + "Label": "110800-69162 via Conventional from 110801 -> 69275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110801, + "TargetID": 69275, + "Directional": true + } + ] + }, + { + "ID": 20463, + "SourceStructureID": 110805, + "TargetStructureID": 6120, + "Label": "110805-6120 via Conventional from 110806 -> 110804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110806, + "TargetID": 110804, + "Directional": true + } + ] + }, + { + "ID": 20464, + "SourceStructureID": 110807, + "TargetStructureID": 6120, + "Label": "110807-6120 via Conventional from 110808 -> 61155", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110808, + "TargetID": 61155, + "Directional": true + } + ] + }, + { + "ID": 20465, + "SourceStructureID": 110809, + "TargetStructureID": 6120, + "Label": "110809-6120 via Conventional from 110844 -> 61152", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110844, + "TargetID": 61152, + "Directional": true + } + ] + }, + { + "ID": 20466, + "SourceStructureID": 110819, + "TargetStructureID": 6120, + "Label": "110819-6120 via Conventional from 110821 -> 110818", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110821, + "TargetID": 110818, + "Directional": true + } + ] + }, + { + "ID": 20467, + "SourceStructureID": 110824, + "TargetStructureID": 6120, + "Label": "110824-6120 via Conventional from 110825 -> 110826", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110825, + "TargetID": 110826, + "Directional": true + } + ] + }, + { + "ID": 20468, + "SourceStructureID": 110828, + "TargetStructureID": 5107, + "Label": "110828-5107 via Conventional from 110834 -> 65008", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110834, + "TargetID": 65008, + "Directional": true + } + ] + }, + { + "ID": 20469, + "SourceStructureID": 110830, + "TargetStructureID": 11092, + "Label": "110830-11092 via Conventional from 123695 -> 128600, 123696 -> 130357", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123695, + "TargetID": 128600, + "Directional": true + }, + { + "SourceID": 123696, + "TargetID": 130357, + "Directional": true + } + ] + }, + { + "ID": 20470, + "SourceStructureID": 110830, + "TargetStructureID": 13525, + "Label": "110830-13525 via Conventional from 110831 -> 84664", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110831, + "TargetID": 84664, + "Directional": true + } + ] + }, + { + "ID": 20471, + "SourceStructureID": 110851, + "TargetStructureID": 6120, + "Label": "110851-6120 via Conventional from 110852 -> 110850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110852, + "TargetID": 110850, + "Directional": true + } + ] + }, + { + "ID": 20472, + "SourceStructureID": 110857, + "TargetStructureID": 5729, + "Label": "110857-5729 via Conventional from 110861 -> 110862", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110861, + "TargetID": 110862, + "Directional": true + } + ] + }, + { + "ID": 20473, + "SourceStructureID": 110867, + "TargetStructureID": 5729, + "Label": "110867-5729 via Conventional from 110871 -> 37844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110871, + "TargetID": 37844, + "Directional": true + } + ] + }, + { + "ID": 20474, + "SourceStructureID": 110879, + "TargetStructureID": 5729, + "Label": "110879-5729 via Conventional from 110883 -> 110881", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110883, + "TargetID": 110881, + "Directional": true + } + ] + }, + { + "ID": 20475, + "SourceStructureID": 110880, + "TargetStructureID": 5729, + "Label": "110880-5729 via Conventional from 110884 -> 37839", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110884, + "TargetID": 37839, + "Directional": true + } + ] + }, + { + "ID": 20476, + "SourceStructureID": 110892, + "TargetStructureID": 110880, + "Label": "110892-110880 via Conventional from 110895 -> 110896", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110895, + "TargetID": 110896, + "Directional": true + } + ] + }, + { + "ID": 20477, + "SourceStructureID": 110899, + "TargetStructureID": 5729, + "Label": "110899-5729 via Conventional from 110902 -> 37845", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110902, + "TargetID": 37845, + "Directional": true + } + ] + }, + { + "ID": 20478, + "SourceStructureID": 110903, + "TargetStructureID": 5729, + "Label": "110903-5729 via Conventional from 110904 -> 37846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110904, + "TargetID": 37846, + "Directional": true + } + ] + }, + { + "ID": 20479, + "SourceStructureID": 110905, + "TargetStructureID": 5729, + "Label": "110905-5729 via Conventional from 110906 -> 110907", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110906, + "TargetID": 110907, + "Directional": true + } + ] + }, + { + "ID": 20480, + "SourceStructureID": 110908, + "TargetStructureID": 5729, + "Label": "110908-5729 via Conventional from 110909 -> 110910, 110915 -> 110916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110909, + "TargetID": 110910, + "Directional": true + }, + { + "SourceID": 110915, + "TargetID": 110916, + "Directional": true + } + ] + }, + { + "ID": 20481, + "SourceStructureID": 110934, + "TargetStructureID": 606, + "Label": "110934-606 via Conventional from 130671 -> 47250", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130671, + "TargetID": 47250, + "Directional": true + } + ] + }, + { + "ID": 20482, + "SourceStructureID": 110934, + "TargetStructureID": 5729, + "Label": "110934-5729 via Conventional from 110935 -> 110936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110935, + "TargetID": 110936, + "Directional": true + } + ] + }, + { + "ID": 20483, + "SourceStructureID": 110937, + "TargetStructureID": 5729, + "Label": "110937-5729 via Conventional from 110938 -> 110939", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110938, + "TargetID": 110939, + "Directional": true + } + ] + }, + { + "ID": 20484, + "SourceStructureID": 110940, + "TargetStructureID": 5729, + "Label": "110940-5729 via Conventional from 110941 -> 37855", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110941, + "TargetID": 37855, + "Directional": true + } + ] + }, + { + "ID": 20485, + "SourceStructureID": 110944, + "TargetStructureID": 5729, + "Label": "110944-5729 via Conventional from 110945 -> 37849", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110945, + "TargetID": 37849, + "Directional": true + } + ] + }, + { + "ID": 20486, + "SourceStructureID": 110961, + "TargetStructureID": 5729, + "Label": "110961-5729 via Conventional from 110962 -> 110963", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110962, + "TargetID": 110963, + "Directional": true + } + ] + }, + { + "ID": 20487, + "SourceStructureID": 110964, + "TargetStructureID": 5729, + "Label": "110964-5729 via Conventional from 110965 -> 110966", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110965, + "TargetID": 110966, + "Directional": true + } + ] + }, + { + "ID": 20488, + "SourceStructureID": 110967, + "TargetStructureID": 5729, + "Label": "110967-5729 via Conventional from 110968 -> 110969", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110968, + "TargetID": 110969, + "Directional": true + } + ] + }, + { + "ID": 20489, + "SourceStructureID": 110970, + "TargetStructureID": 5729, + "Label": "110970-5729 via Conventional from 110971 -> 110972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110971, + "TargetID": 110972, + "Directional": true + } + ] + }, + { + "ID": 20490, + "SourceStructureID": 110977, + "TargetStructureID": 6120, + "Label": "110977-6120 via Conventional from 110983 -> 110874", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110983, + "TargetID": 110874, + "Directional": true + } + ] + }, + { + "ID": 20491, + "SourceStructureID": 110977, + "TargetStructureID": 110979, + "Label": "110977-110979 via Conventional from 110978 -> 110980", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110978, + "TargetID": 110980, + "Directional": true + } + ] + }, + { + "ID": 20492, + "SourceStructureID": 110988, + "TargetStructureID": 6120, + "Label": "110988-6120 via Conventional from 110990 -> 110987", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 110990, + "TargetID": 110987, + "Directional": true + } + ] + }, + { + "ID": 20493, + "SourceStructureID": 111001, + "TargetStructureID": 6120, + "Label": "111001-6120 via Conventional from 111002 -> 61151, 111095 -> 111094", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111002, + "TargetID": 61151, + "Directional": true + }, + { + "SourceID": 111095, + "TargetID": 111094, + "Directional": true + } + ] + }, + { + "ID": 20494, + "SourceStructureID": 111006, + "TargetStructureID": 6120, + "Label": "111006-6120 via Conventional from 111007 -> 61149", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111007, + "TargetID": 61149, + "Directional": true + } + ] + }, + { + "ID": 20495, + "SourceStructureID": 111037, + "TargetStructureID": 6120, + "Label": "111037-6120 via Conventional from 111038 -> 61130", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111038, + "TargetID": 61130, + "Directional": true + } + ] + }, + { + "ID": 20496, + "SourceStructureID": 111054, + "TargetStructureID": 5729, + "Label": "111054-5729 via Conventional from 111056 -> 111053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111056, + "TargetID": 111053, + "Directional": true + } + ] + }, + { + "ID": 20497, + "SourceStructureID": 111054, + "TargetStructureID": 6162, + "Label": "111054-6162 via Conventional from 111055 -> 29109", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111055, + "TargetID": 29109, + "Directional": true + } + ] + }, + { + "ID": 20498, + "SourceStructureID": 111059, + "TargetStructureID": 5729, + "Label": "111059-5729 via Conventional from 111060 -> 47244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111060, + "TargetID": 47244, + "Directional": true + } + ] + }, + { + "ID": 20499, + "SourceStructureID": 111070, + "TargetStructureID": 5729, + "Label": "111070-5729 via Conventional from 111071 -> 47246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111071, + "TargetID": 47246, + "Directional": true + } + ] + }, + { + "ID": 20500, + "SourceStructureID": 111075, + "TargetStructureID": 5729, + "Label": "111075-5729 via Conventional from 111076 -> 111077", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111076, + "TargetID": 111077, + "Directional": true + } + ] + }, + { + "ID": 20501, + "SourceStructureID": 111084, + "TargetStructureID": 5729, + "Label": "111084-5729 via Conventional from 111144 -> 111145, 111153 -> 111154", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111144, + "TargetID": 111145, + "Directional": true + }, + { + "SourceID": 111153, + "TargetID": 111154, + "Directional": true + } + ] + }, + { + "ID": 20502, + "SourceStructureID": 111098, + "TargetStructureID": 6120, + "Label": "111098-6120 via Conventional from 111099 -> 61142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111099, + "TargetID": 61142, + "Directional": true + } + ] + }, + { + "ID": 20503, + "SourceStructureID": 111100, + "TargetStructureID": 6120, + "Label": "111100-6120 via Conventional from 111101 -> 61141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111101, + "TargetID": 61141, + "Directional": true + } + ] + }, + { + "ID": 20504, + "SourceStructureID": 111102, + "TargetStructureID": 6120, + "Label": "111102-6120 via Conventional from 111103 -> 61136", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111103, + "TargetID": 61136, + "Directional": true + } + ] + }, + { + "ID": 20505, + "SourceStructureID": 111130, + "TargetStructureID": 6120, + "Label": "111130-6120 via Conventional from 111131 -> 111129", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111131, + "TargetID": 111129, + "Directional": true + } + ] + }, + { + "ID": 20506, + "SourceStructureID": 111135, + "TargetStructureID": 6120, + "Label": "111135-6120 via Conventional from 111234 -> 111233, 111244 -> 57386", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111234, + "TargetID": 111233, + "Directional": true + }, + { + "SourceID": 111244, + "TargetID": 57386, + "Directional": true + } + ] + }, + { + "ID": 20507, + "SourceStructureID": 111142, + "TargetStructureID": 6120, + "Label": "111142-6120 via Conventional from 111143 -> 61178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111143, + "TargetID": 61178, + "Directional": true + } + ] + }, + { + "ID": 20508, + "SourceStructureID": 111146, + "TargetStructureID": 5729, + "Label": "111146-5729 via Conventional from 111147 -> 111148", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111147, + "TargetID": 111148, + "Directional": true + } + ] + }, + { + "ID": 20509, + "SourceStructureID": 111149, + "TargetStructureID": 5729, + "Label": "111149-5729 via Conventional from 111150 -> 111151", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111150, + "TargetID": 111151, + "Directional": true + } + ] + }, + { + "ID": 20510, + "SourceStructureID": 111165, + "TargetStructureID": 5729, + "Label": "111165-5729 via Conventional from 111173 -> 47247", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111173, + "TargetID": 47247, + "Directional": true + } + ] + }, + { + "ID": 20511, + "SourceStructureID": 111187, + "TargetStructureID": 5729, + "Label": "111187-5729 via Conventional from 111188 -> 111189", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111188, + "TargetID": 111189, + "Directional": true + } + ] + }, + { + "ID": 20512, + "SourceStructureID": 111198, + "TargetStructureID": 5729, + "Label": "111198-5729 via Conventional from 111199 -> 111197", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111199, + "TargetID": 111197, + "Directional": true + } + ] + }, + { + "ID": 20513, + "SourceStructureID": 111207, + "TargetStructureID": 13525, + "Label": "111207-13525 via Conventional from 125798 -> 118140", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125798, + "TargetID": 118140, + "Directional": true + } + ] + }, + { + "ID": 20514, + "SourceStructureID": 111212, + "TargetStructureID": 6120, + "Label": "111212-6120 via Conventional from 111213 -> 61183", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111213, + "TargetID": 61183, + "Directional": true + } + ] + }, + { + "ID": 20515, + "SourceStructureID": 111214, + "TargetStructureID": 6120, + "Label": "111214-6120 via Conventional from 111215 -> 61182", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111215, + "TargetID": 61182, + "Directional": true + } + ] + }, + { + "ID": 20516, + "SourceStructureID": 111218, + "TargetStructureID": 6120, + "Label": "111218-6120 via Conventional from 111219 -> 111220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111219, + "TargetID": 111220, + "Directional": true + } + ] + }, + { + "ID": 20517, + "SourceStructureID": 111223, + "TargetStructureID": 6120, + "Label": "111223-6120 via Conventional from 111224 -> 61181", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111224, + "TargetID": 61181, + "Directional": true + } + ] + }, + { + "ID": 20518, + "SourceStructureID": 111231, + "TargetStructureID": 6120, + "Label": "111231-6120 via Conventional from 111232 -> 61179", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111232, + "TargetID": 61179, + "Directional": true + } + ] + }, + { + "ID": 20519, + "SourceStructureID": 111238, + "TargetStructureID": 111135, + "Label": "111238-111135 via Conventional from 111241 -> 116727", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111241, + "TargetID": 116727, + "Directional": true + } + ] + }, + { + "ID": 20520, + "SourceStructureID": 111248, + "TargetStructureID": 6120, + "Label": "111248-6120 via Conventional from 111249 -> 111247", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111249, + "TargetID": 111247, + "Directional": true + } + ] + }, + { + "ID": 20521, + "SourceStructureID": 111256, + "TargetStructureID": 6120, + "Label": "111256-6120 via Conventional from 111257 -> 111255", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111257, + "TargetID": 111255, + "Directional": true + } + ] + }, + { + "ID": 20522, + "SourceStructureID": 111264, + "TargetStructureID": 6120, + "Label": "111264-6120 via Conventional from 111265 -> 111263", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111265, + "TargetID": 111263, + "Directional": true + } + ] + }, + { + "ID": 20523, + "SourceStructureID": 111269, + "TargetStructureID": 111356, + "Label": "111269-111356 via Conventional from 111275 -> 111357", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111275, + "TargetID": 111357, + "Directional": true + } + ] + }, + { + "ID": 20524, + "SourceStructureID": 111270, + "TargetStructureID": 6120, + "Label": "111270-6120 via Conventional from 111271 -> 111267", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111271, + "TargetID": 111267, + "Directional": true + } + ] + }, + { + "ID": 20525, + "SourceStructureID": 111276, + "TargetStructureID": 6120, + "Label": "111276-6120 via Conventional from 111277 -> 57392", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111277, + "TargetID": 57392, + "Directional": true + } + ] + }, + { + "ID": 20526, + "SourceStructureID": 111278, + "TargetStructureID": 6120, + "Label": "111278-6120 via Conventional from 111279 -> 57391", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111279, + "TargetID": 57391, + "Directional": true + } + ] + }, + { + "ID": 20527, + "SourceStructureID": 111294, + "TargetStructureID": 5729, + "Label": "111294-5729 via Conventional from 111295 -> 37812", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111295, + "TargetID": 37812, + "Directional": true + } + ] + }, + { + "ID": 20528, + "SourceStructureID": 111299, + "TargetStructureID": 5729, + "Label": "111299-5729 via Conventional from 111300 -> 111301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111300, + "TargetID": 111301, + "Directional": true + } + ] + }, + { + "ID": 20529, + "SourceStructureID": 111303, + "TargetStructureID": 5729, + "Label": "111303-5729 via Conventional from 111304 -> 111305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111304, + "TargetID": 111305, + "Directional": true + } + ] + }, + { + "ID": 20530, + "SourceStructureID": 111306, + "TargetStructureID": 5729, + "Label": "111306-5729 via Conventional from 111307 -> 37818", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111307, + "TargetID": 37818, + "Directional": true + } + ] + }, + { + "ID": 20531, + "SourceStructureID": 111314, + "TargetStructureID": 5729, + "Label": "111314-5729 via Conventional from 111315 -> 111316", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111315, + "TargetID": 111316, + "Directional": true + } + ] + }, + { + "ID": 20532, + "SourceStructureID": 111318, + "TargetStructureID": 111312, + "Label": "111318-111312 via Conventional from 111320 -> 111321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111320, + "TargetID": 111321, + "Directional": true + } + ] + }, + { + "ID": 20533, + "SourceStructureID": 111324, + "TargetStructureID": 5729, + "Label": "111324-5729 via Conventional from 111325 -> 37827", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111325, + "TargetID": 37827, + "Directional": true + } + ] + }, + { + "ID": 20534, + "SourceStructureID": 111328, + "TargetStructureID": 5729, + "Label": "111328-5729 via Conventional from 111338 -> 37826, 111434 -> 111435", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111338, + "TargetID": 37826, + "Directional": true + }, + { + "SourceID": 111434, + "TargetID": 111435, + "Directional": true + } + ] + }, + { + "ID": 20535, + "SourceStructureID": 111330, + "TargetStructureID": 5729, + "Label": "111330-5729 via Conventional from 111331 -> 37821", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111331, + "TargetID": 37821, + "Directional": true + } + ] + }, + { + "ID": 20536, + "SourceStructureID": 111342, + "TargetStructureID": 6120, + "Label": "111342-6120 via Conventional from 111343 -> 111341", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111343, + "TargetID": 111341, + "Directional": true + } + ] + }, + { + "ID": 20537, + "SourceStructureID": 111344, + "TargetStructureID": 6120, + "Label": "111344-6120 via Conventional from 111345 -> 57393", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111345, + "TargetID": 57393, + "Directional": true + } + ] + }, + { + "ID": 20538, + "SourceStructureID": 111356, + "TargetStructureID": 6120, + "Label": "111356-6120 via Conventional from 111366 -> 111365", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111366, + "TargetID": 111365, + "Directional": true + } + ] + }, + { + "ID": 20539, + "SourceStructureID": 111361, + "TargetStructureID": 6120, + "Label": "111361-6120 via Conventional from 111362 -> 111360", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111362, + "TargetID": 111360, + "Directional": true + } + ] + }, + { + "ID": 20540, + "SourceStructureID": 111369, + "TargetStructureID": 6120, + "Label": "111369-6120 via Conventional from 111370 -> 111368", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111370, + "TargetID": 111368, + "Directional": true + } + ] + }, + { + "ID": 20541, + "SourceStructureID": 111371, + "TargetStructureID": 6120, + "Label": "111371-6120 via Conventional from 111372 -> 111367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111372, + "TargetID": 111367, + "Directional": true + } + ] + }, + { + "ID": 20542, + "SourceStructureID": 111379, + "TargetStructureID": 6120, + "Label": "111379-6120 via Conventional from 111380 -> 111381", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111380, + "TargetID": 111381, + "Directional": true + } + ] + }, + { + "ID": 20543, + "SourceStructureID": 111382, + "TargetStructureID": 6120, + "Label": "111382-6120 via Conventional from 111383 -> 111384", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111383, + "TargetID": 111384, + "Directional": true + } + ] + }, + { + "ID": 20544, + "SourceStructureID": 111386, + "TargetStructureID": 6120, + "Label": "111386-6120 via Conventional from 111387 -> 111385", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111387, + "TargetID": 111385, + "Directional": true + } + ] + }, + { + "ID": 20545, + "SourceStructureID": 111394, + "TargetStructureID": 6120, + "Label": "111394-6120 via Conventional from 111395 -> 40735", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111395, + "TargetID": 40735, + "Directional": true + } + ] + }, + { + "ID": 20546, + "SourceStructureID": 111394, + "TargetStructureID": 52410, + "Label": "111394-52410 via Conventional from 125663 -> 125662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125663, + "TargetID": 125662, + "Directional": true + } + ] + }, + { + "ID": 20547, + "SourceStructureID": 111396, + "TargetStructureID": 6120, + "Label": "111396-6120 via Conventional from 111397 -> 61202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111397, + "TargetID": 61202, + "Directional": true + } + ] + }, + { + "ID": 20548, + "SourceStructureID": 111401, + "TargetStructureID": 6120, + "Label": "111401-6120 via Conventional from 111728 -> 111727", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111728, + "TargetID": 111727, + "Directional": true + } + ] + }, + { + "ID": 20549, + "SourceStructureID": 111410, + "TargetStructureID": 5729, + "Label": "111410-5729 via Conventional from 111425 -> 111426", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111425, + "TargetID": 111426, + "Directional": true + } + ] + }, + { + "ID": 20550, + "SourceStructureID": 111414, + "TargetStructureID": 5729, + "Label": "111414-5729 via Conventional from 111415 -> 37832", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111415, + "TargetID": 37832, + "Directional": true + } + ] + }, + { + "ID": 20551, + "SourceStructureID": 111421, + "TargetStructureID": 6120, + "Label": "111421-6120 via Conventional from 111422 -> 61194", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111422, + "TargetID": 61194, + "Directional": true + } + ] + }, + { + "ID": 20552, + "SourceStructureID": 111424, + "TargetStructureID": 6120, + "Label": "111424-6120 via Conventional from 111477 -> 111404", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111477, + "TargetID": 111404, + "Directional": true + } + ] + }, + { + "ID": 20553, + "SourceStructureID": 111424, + "TargetStructureID": 111479, + "Label": "111424-111479 via Conventional from 111478 -> 111480", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111478, + "TargetID": 111480, + "Directional": true + } + ] + }, + { + "ID": 20554, + "SourceStructureID": 111430, + "TargetStructureID": 5729, + "Label": "111430-5729 via Conventional from 111431 -> 111432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111431, + "TargetID": 111432, + "Directional": true + } + ] + }, + { + "ID": 20555, + "SourceStructureID": 111444, + "TargetStructureID": 5729, + "Label": "111444-5729 via Conventional from 111445 -> 47292", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111445, + "TargetID": 47292, + "Directional": true + } + ] + }, + { + "ID": 20556, + "SourceStructureID": 111448, + "TargetStructureID": 5499, + "Label": "111448-5499 via Conventional from 111449 -> 105530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111449, + "TargetID": 105530, + "Directional": true + } + ] + }, + { + "ID": 20557, + "SourceStructureID": 111448, + "TargetStructureID": 5729, + "Label": "111448-5729 via Conventional from 111450 -> 47294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111450, + "TargetID": 47294, + "Directional": true + } + ] + }, + { + "ID": 20558, + "SourceStructureID": 111452, + "TargetStructureID": 5729, + "Label": "111452-5729 via Conventional from 111453 -> 111454", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111453, + "TargetID": 111454, + "Directional": true + } + ] + }, + { + "ID": 20559, + "SourceStructureID": 111455, + "TargetStructureID": 5729, + "Label": "111455-5729 via Conventional from 111456 -> 111457", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111456, + "TargetID": 111457, + "Directional": true + } + ] + }, + { + "ID": 20560, + "SourceStructureID": 111455, + "TargetStructureID": 108426, + "Label": "111455-108426 via Conventional from 111458 -> 111459", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111458, + "TargetID": 111459, + "Directional": true + } + ] + }, + { + "ID": 20561, + "SourceStructureID": 111462, + "TargetStructureID": 606, + "Label": "111462-606 via Conventional from 111463 -> 47276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111463, + "TargetID": 47276, + "Directional": true + } + ] + }, + { + "ID": 20562, + "SourceStructureID": 111462, + "TargetStructureID": 5729, + "Label": "111462-5729 via Conventional from 111464 -> 37829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111464, + "TargetID": 37829, + "Directional": true + } + ] + }, + { + "ID": 20563, + "SourceStructureID": 111468, + "TargetStructureID": 5729, + "Label": "111468-5729 via Conventional from 111469 -> 37833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111469, + "TargetID": 37833, + "Directional": true + } + ] + }, + { + "ID": 20564, + "SourceStructureID": 111479, + "TargetStructureID": 6120, + "Label": "111479-6120 via Conventional from 111481 -> 111406", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111481, + "TargetID": 111406, + "Directional": true + } + ] + }, + { + "ID": 20565, + "SourceStructureID": 111482, + "TargetStructureID": 6120, + "Label": "111482-6120 via Conventional from 111483 -> 111405", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111483, + "TargetID": 111405, + "Directional": true + } + ] + }, + { + "ID": 20566, + "SourceStructureID": 111493, + "TargetStructureID": 6120, + "Label": "111493-6120 via Conventional from 111494 -> 111492", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111494, + "TargetID": 111492, + "Directional": true + } + ] + }, + { + "ID": 20567, + "SourceStructureID": 111496, + "TargetStructureID": 5643, + "Label": "111496-5643 via Conventional from 111505 -> 111507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111505, + "TargetID": 111507, + "Directional": true + } + ] + }, + { + "ID": 20568, + "SourceStructureID": 111496, + "TargetStructureID": 6120, + "Label": "111496-6120 via Conventional from 111499 -> 61200", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111499, + "TargetID": 61200, + "Directional": true + } + ] + }, + { + "ID": 20569, + "SourceStructureID": 111497, + "TargetStructureID": 6120, + "Label": "111497-6120 via Conventional from 111498 -> 111500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111498, + "TargetID": 111500, + "Directional": true + } + ] + }, + { + "ID": 20570, + "SourceStructureID": 111501, + "TargetStructureID": 6120, + "Label": "111501-6120 via Conventional from 111502 -> 61201", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111502, + "TargetID": 61201, + "Directional": true + } + ] + }, + { + "ID": 20571, + "SourceStructureID": 111511, + "TargetStructureID": 6120, + "Label": "111511-6120 via Conventional from 111512 -> 61187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111512, + "TargetID": 61187, + "Directional": true + } + ] + }, + { + "ID": 20572, + "SourceStructureID": 111528, + "TargetStructureID": 6120, + "Label": "111528-6120 via Conventional from 111529 -> 111527", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111529, + "TargetID": 111527, + "Directional": true + } + ] + }, + { + "ID": 20573, + "SourceStructureID": 111531, + "TargetStructureID": 6120, + "Label": "111531-6120 via Conventional from 111532 -> 111530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111532, + "TargetID": 111530, + "Directional": true + } + ] + }, + { + "ID": 20574, + "SourceStructureID": 111539, + "TargetStructureID": 6120, + "Label": "111539-6120 via Conventional from 111540 -> 61199", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111540, + "TargetID": 61199, + "Directional": true + } + ] + }, + { + "ID": 20575, + "SourceStructureID": 111539, + "TargetStructureID": 6121, + "Label": "111539-6121 via Conventional from 127709 -> 127710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127709, + "TargetID": 127710, + "Directional": true + } + ] + }, + { + "ID": 20576, + "SourceStructureID": 111539, + "TargetStructureID": 6146, + "Label": "111539-6146 via Conventional from 127711 -> 127712", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127711, + "TargetID": 127712, + "Directional": true + } + ] + }, + { + "ID": 20577, + "SourceStructureID": 111544, + "TargetStructureID": 6120, + "Label": "111544-6120 via Conventional from 111545 -> 111543", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111545, + "TargetID": 111543, + "Directional": true + } + ] + }, + { + "ID": 20578, + "SourceStructureID": 111546, + "TargetStructureID": 6120, + "Label": "111546-6120 via Conventional from 111548 -> 111549", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111548, + "TargetID": 111549, + "Directional": true + } + ] + }, + { + "ID": 20579, + "SourceStructureID": 111551, + "TargetStructureID": 6120, + "Label": "111551-6120 via Conventional from 111552 -> 111550", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111552, + "TargetID": 111550, + "Directional": true + } + ] + }, + { + "ID": 20580, + "SourceStructureID": 111560, + "TargetStructureID": 111557, + "Label": "111560-111557 via Conventional from 111562 -> 111559", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111562, + "TargetID": 111559, + "Directional": true + } + ] + }, + { + "ID": 20581, + "SourceStructureID": 111568, + "TargetStructureID": 6120, + "Label": "111568-6120 via Conventional from 111569 -> 51507", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111569, + "TargetID": 51507, + "Directional": true + } + ] + }, + { + "ID": 20582, + "SourceStructureID": 111572, + "TargetStructureID": 6120, + "Label": "111572-6120 via Conventional from 111573 -> 111571", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111573, + "TargetID": 111571, + "Directional": true + } + ] + }, + { + "ID": 20583, + "SourceStructureID": 111576, + "TargetStructureID": 6120, + "Label": "111576-6120 via Conventional from 111577 -> 111575", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111577, + "TargetID": 111575, + "Directional": true + } + ] + }, + { + "ID": 20584, + "SourceStructureID": 111584, + "TargetStructureID": 6120, + "Label": "111584-6120 via Conventional from 111585 -> 111583", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111585, + "TargetID": 111583, + "Directional": true + } + ] + }, + { + "ID": 20585, + "SourceStructureID": 111587, + "TargetStructureID": 6120, + "Label": "111587-6120 via Conventional from 111588 -> 111586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111588, + "TargetID": 111586, + "Directional": true + } + ] + }, + { + "ID": 20586, + "SourceStructureID": 111590, + "TargetStructureID": 6120, + "Label": "111590-6120 via Conventional from 111591 -> 111589", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111591, + "TargetID": 111589, + "Directional": true + } + ] + }, + { + "ID": 20587, + "SourceStructureID": 111595, + "TargetStructureID": 6120, + "Label": "111595-6120 via Conventional from 111596 -> 111594", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111596, + "TargetID": 111594, + "Directional": true + } + ] + }, + { + "ID": 20588, + "SourceStructureID": 111602, + "TargetStructureID": 6120, + "Label": "111602-6120 via Conventional from 111603 -> 111601", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111603, + "TargetID": 111601, + "Directional": true + } + ] + }, + { + "ID": 20589, + "SourceStructureID": 111604, + "TargetStructureID": 5729, + "Label": "111604-5729 via Conventional from 111610 -> 105755", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111610, + "TargetID": 105755, + "Directional": true + } + ] + }, + { + "ID": 20590, + "SourceStructureID": 111604, + "TargetStructureID": 6162, + "Label": "111604-6162 via Conventional from 116585 -> 116587", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116585, + "TargetID": 116587, + "Directional": true + } + ] + }, + { + "ID": 20591, + "SourceStructureID": 111611, + "TargetStructureID": 5729, + "Label": "111611-5729 via Conventional from 111612 -> 105754", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111612, + "TargetID": 105754, + "Directional": true + } + ] + }, + { + "ID": 20592, + "SourceStructureID": 111616, + "TargetStructureID": 5729, + "Label": "111616-5729 via Conventional from 111619 -> 105758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111619, + "TargetID": 105758, + "Directional": true + } + ] + }, + { + "ID": 20593, + "SourceStructureID": 111623, + "TargetStructureID": 6120, + "Label": "111623-6120 via Conventional from 111628 -> 111622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111628, + "TargetID": 111622, + "Directional": true + } + ] + }, + { + "ID": 20594, + "SourceStructureID": 111630, + "TargetStructureID": 6120, + "Label": "111630-6120 via Conventional from 111633 -> 111627", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111633, + "TargetID": 111627, + "Directional": true + } + ] + }, + { + "ID": 20595, + "SourceStructureID": 111638, + "TargetStructureID": 5729, + "Label": "111638-5729 via Conventional from 111639 -> 111640", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111639, + "TargetID": 111640, + "Directional": true + } + ] + }, + { + "ID": 20596, + "SourceStructureID": 111667, + "TargetStructureID": 6120, + "Label": "111667-6120 via Conventional from 111668 -> 111666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111668, + "TargetID": 111666, + "Directional": true + } + ] + }, + { + "ID": 20597, + "SourceStructureID": 111672, + "TargetStructureID": 31334, + "Label": "111672-31334 via Conventional from 111702 -> 111701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111702, + "TargetID": 111701, + "Directional": true + } + ] + }, + { + "ID": 20598, + "SourceStructureID": 111677, + "TargetStructureID": 6120, + "Label": "111677-6120 via Conventional from 111680 -> 111676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111680, + "TargetID": 111676, + "Directional": true + } + ] + }, + { + "ID": 20599, + "SourceStructureID": 111687, + "TargetStructureID": 6120, + "Label": "111687-6120 via Conventional from 111688 -> 111686", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111688, + "TargetID": 111686, + "Directional": true + } + ] + }, + { + "ID": 20600, + "SourceStructureID": 111693, + "TargetStructureID": 6120, + "Label": "111693-6120 via Conventional from 111695 -> 111689", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111695, + "TargetID": 111689, + "Directional": true + } + ] + }, + { + "ID": 20601, + "SourceStructureID": 111696, + "TargetStructureID": 6120, + "Label": "111696-6120 via Conventional from 111697 -> 111670", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111697, + "TargetID": 111670, + "Directional": true + } + ] + }, + { + "ID": 20602, + "SourceStructureID": 111698, + "TargetStructureID": 5107, + "Label": "111698-5107 via Conventional from 111699 -> 65066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111699, + "TargetID": 65066, + "Directional": true + } + ] + }, + { + "ID": 20603, + "SourceStructureID": 111708, + "TargetStructureID": 68539, + "Label": "111708-68539 via Conventional from 111709 -> 69147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111709, + "TargetID": 69147, + "Directional": true + } + ] + }, + { + "ID": 20604, + "SourceStructureID": 111717, + "TargetStructureID": 6120, + "Label": "111717-6120 via Conventional from 111721 -> 111716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111721, + "TargetID": 111716, + "Directional": true + } + ] + }, + { + "ID": 20605, + "SourceStructureID": 111734, + "TargetStructureID": 6120, + "Label": "111734-6120 via Conventional from 111863 -> 111864", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111863, + "TargetID": 111864, + "Directional": true + } + ] + }, + { + "ID": 20606, + "SourceStructureID": 111735, + "TargetStructureID": 5729, + "Label": "111735-5729 via Conventional from 111736 -> 111737", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111736, + "TargetID": 111737, + "Directional": true + } + ] + }, + { + "ID": 20607, + "SourceStructureID": 111740, + "TargetStructureID": 5729, + "Label": "111740-5729 via Conventional from 111742 -> 111745", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111742, + "TargetID": 111745, + "Directional": true + } + ] + }, + { + "ID": 20608, + "SourceStructureID": 111767, + "TargetStructureID": 5729, + "Label": "111767-5729 via Conventional from 111768 -> 111766", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111768, + "TargetID": 111766, + "Directional": true + } + ] + }, + { + "ID": 20609, + "SourceStructureID": 111769, + "TargetStructureID": 5729, + "Label": "111769-5729 via Conventional from 111770 -> 111771", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111770, + "TargetID": 111771, + "Directional": true + } + ] + }, + { + "ID": 20610, + "SourceStructureID": 111785, + "TargetStructureID": 5729, + "Label": "111785-5729 via Conventional from 111786 -> 111787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111786, + "TargetID": 111787, + "Directional": true + } + ] + }, + { + "ID": 20611, + "SourceStructureID": 111799, + "TargetStructureID": 5729, + "Label": "111799-5729 via Conventional from 111800 -> 111798", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111800, + "TargetID": 111798, + "Directional": true + } + ] + }, + { + "ID": 20612, + "SourceStructureID": 111803, + "TargetStructureID": 5531, + "Label": "111803-5531 via Conventional from 111804 -> 111805", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111804, + "TargetID": 111805, + "Directional": true + } + ] + }, + { + "ID": 20613, + "SourceStructureID": 111823, + "TargetStructureID": 5531, + "Label": "111823-5531 via Conventional from 111826 -> 111825", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111826, + "TargetID": 111825, + "Directional": true + } + ] + }, + { + "ID": 20614, + "SourceStructureID": 111827, + "TargetStructureID": 5531, + "Label": "111827-5531 via Conventional from 111828 -> 56798", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111828, + "TargetID": 56798, + "Directional": true + } + ] + }, + { + "ID": 20615, + "SourceStructureID": 111829, + "TargetStructureID": 5531, + "Label": "111829-5531 via Conventional from 111830 -> 111831, 111832 -> 111833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111830, + "TargetID": 111831, + "Directional": true + }, + { + "SourceID": 111832, + "TargetID": 111833, + "Directional": true + } + ] + }, + { + "ID": 20616, + "SourceStructureID": 111835, + "TargetStructureID": 5531, + "Label": "111835-5531 via Conventional from 111840 -> 111841", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111840, + "TargetID": 111841, + "Directional": true + } + ] + }, + { + "ID": 20617, + "SourceStructureID": 111842, + "TargetStructureID": 5531, + "Label": "111842-5531 via Conventional from 111843 -> 56800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111843, + "TargetID": 56800, + "Directional": true + } + ] + }, + { + "ID": 20618, + "SourceStructureID": 111848, + "TargetStructureID": 5531, + "Label": "111848-5531 via Conventional from 111849 -> 111850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111849, + "TargetID": 111850, + "Directional": true + } + ] + }, + { + "ID": 20619, + "SourceStructureID": 111856, + "TargetStructureID": 5531, + "Label": "111856-5531 via Conventional from 111858 -> 111859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111858, + "TargetID": 111859, + "Directional": true + } + ] + }, + { + "ID": 20620, + "SourceStructureID": 111869, + "TargetStructureID": 6120, + "Label": "111869-6120 via Conventional from 111870 -> 111868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111870, + "TargetID": 111868, + "Directional": true + } + ] + }, + { + "ID": 20621, + "SourceStructureID": 111872, + "TargetStructureID": 6120, + "Label": "111872-6120 via Conventional from 111873 -> 111871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111873, + "TargetID": 111871, + "Directional": true + } + ] + }, + { + "ID": 20622, + "SourceStructureID": 111876, + "TargetStructureID": 6120, + "Label": "111876-6120 via Conventional from 111877 -> 111875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111877, + "TargetID": 111875, + "Directional": true + } + ] + }, + { + "ID": 20623, + "SourceStructureID": 111883, + "TargetStructureID": 6120, + "Label": "111883-6120 via Conventional from 111884 -> 111882", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111884, + "TargetID": 111882, + "Directional": true + } + ] + }, + { + "ID": 20624, + "SourceStructureID": 111899, + "TargetStructureID": 6120, + "Label": "111899-6120 via Conventional from 111900 -> 111901", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111900, + "TargetID": 111901, + "Directional": true + } + ] + }, + { + "ID": 20625, + "SourceStructureID": 111899, + "TargetStructureID": 6121, + "Label": "111899-6121 via Conventional from 125224 -> 125222", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125224, + "TargetID": 125222, + "Directional": true + } + ] + }, + { + "ID": 20626, + "SourceStructureID": 111926, + "TargetStructureID": 6047, + "Label": "111926-6047 via Conventional from 111927 -> 19622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111927, + "TargetID": 19622, + "Directional": true + } + ] + }, + { + "ID": 20627, + "SourceStructureID": 111931, + "TargetStructureID": 6047, + "Label": "111931-6047 via Conventional from 111932 -> 111928", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111932, + "TargetID": 111928, + "Directional": true + } + ] + }, + { + "ID": 20628, + "SourceStructureID": 111937, + "TargetStructureID": 6047, + "Label": "111937-6047 via Conventional from 111938 -> 111936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111938, + "TargetID": 111936, + "Directional": true + } + ] + }, + { + "ID": 20629, + "SourceStructureID": 111939, + "TargetStructureID": 6047, + "Label": "111939-6047 via Conventional from 112015 -> 112016", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112015, + "TargetID": 112016, + "Directional": true + } + ] + }, + { + "ID": 20630, + "SourceStructureID": 111953, + "TargetStructureID": 5729, + "Label": "111953-5729 via Conventional from 111954 -> 111955", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111954, + "TargetID": 111955, + "Directional": true + } + ] + }, + { + "ID": 20631, + "SourceStructureID": 111963, + "TargetStructureID": 5729, + "Label": "111963-5729 via Conventional from 111966 -> 89607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111966, + "TargetID": 89607, + "Directional": true + } + ] + }, + { + "ID": 20632, + "SourceStructureID": 111968, + "TargetStructureID": 5729, + "Label": "111968-5729 via Conventional from 111969 -> 89613", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111969, + "TargetID": 89613, + "Directional": true + } + ] + }, + { + "ID": 20633, + "SourceStructureID": 111970, + "TargetStructureID": 5729, + "Label": "111970-5729 via Conventional from 111971 -> 111972, 112004 -> 112003", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111971, + "TargetID": 111972, + "Directional": true + }, + { + "SourceID": 112004, + "TargetID": 112003, + "Directional": true + } + ] + }, + { + "ID": 20634, + "SourceStructureID": 111994, + "TargetStructureID": 5729, + "Label": "111994-5729 via Conventional from 111995 -> 89614", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 111995, + "TargetID": 89614, + "Directional": true + } + ] + }, + { + "ID": 20635, + "SourceStructureID": 112005, + "TargetStructureID": 5520, + "Label": "112005-5520 via Conventional from 113802 -> 113801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113802, + "TargetID": 113801, + "Directional": true + } + ] + }, + { + "ID": 20636, + "SourceStructureID": 112005, + "TargetStructureID": 5729, + "Label": "112005-5729 via Conventional from 112006 -> 112007", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112006, + "TargetID": 112007, + "Directional": true + } + ] + }, + { + "ID": 20637, + "SourceStructureID": 112017, + "TargetStructureID": 6047, + "Label": "112017-6047 via Conventional from 112019 -> 19709", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112019, + "TargetID": 19709, + "Directional": true + } + ] + }, + { + "ID": 20638, + "SourceStructureID": 112028, + "TargetStructureID": 6047, + "Label": "112028-6047 via Conventional from 112029 -> 112027", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112029, + "TargetID": 112027, + "Directional": true + } + ] + }, + { + "ID": 20639, + "SourceStructureID": 112032, + "TargetStructureID": 6047, + "Label": "112032-6047 via Conventional from 112033 -> 112031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112033, + "TargetID": 112031, + "Directional": true + } + ] + }, + { + "ID": 20640, + "SourceStructureID": 112042, + "TargetStructureID": 6047, + "Label": "112042-6047 via Conventional from 112043 -> 112040", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112043, + "TargetID": 112040, + "Directional": true + } + ] + }, + { + "ID": 20641, + "SourceStructureID": 112045, + "TargetStructureID": 6047, + "Label": "112045-6047 via Conventional from 112048 -> 112039", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112048, + "TargetID": 112039, + "Directional": true + } + ] + }, + { + "ID": 20642, + "SourceStructureID": 112045, + "TargetStructureID": 112042, + "Label": "112045-112042 via Conventional from 112046 -> 112047", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112046, + "TargetID": 112047, + "Directional": true + } + ] + }, + { + "ID": 20643, + "SourceStructureID": 112057, + "TargetStructureID": 6047, + "Label": "112057-6047 via Conventional from 112059 -> 112056", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112059, + "TargetID": 112056, + "Directional": true + } + ] + }, + { + "ID": 20644, + "SourceStructureID": 112057, + "TargetStructureID": 6203, + "Label": "112057-6203 via Conventional from 112058 -> 112067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112058, + "TargetID": 112067, + "Directional": true + } + ] + }, + { + "ID": 20645, + "SourceStructureID": 112062, + "TargetStructureID": 6047, + "Label": "112062-6047 via Conventional from 112063 -> 112061", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112063, + "TargetID": 112061, + "Directional": true + } + ] + }, + { + "ID": 20646, + "SourceStructureID": 112071, + "TargetStructureID": 6047, + "Label": "112071-6047 via Conventional from 112072 -> 19696", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112072, + "TargetID": 19696, + "Directional": true + } + ] + }, + { + "ID": 20647, + "SourceStructureID": 112073, + "TargetStructureID": 6047, + "Label": "112073-6047 via Conventional from 112074 -> 19698", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112074, + "TargetID": 19698, + "Directional": true + } + ] + }, + { + "ID": 20648, + "SourceStructureID": 112077, + "TargetStructureID": 6047, + "Label": "112077-6047 via Conventional from 112079 -> 19699", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112079, + "TargetID": 19699, + "Directional": true + } + ] + }, + { + "ID": 20649, + "SourceStructureID": 112081, + "TargetStructureID": 6047, + "Label": "112081-6047 via Conventional from 112082 -> 19701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112082, + "TargetID": 19701, + "Directional": true + } + ] + }, + { + "ID": 20650, + "SourceStructureID": 112084, + "TargetStructureID": 6047, + "Label": "112084-6047 via Conventional from 112086 -> 19702", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112086, + "TargetID": 19702, + "Directional": true + } + ] + }, + { + "ID": 20651, + "SourceStructureID": 112087, + "TargetStructureID": 6047, + "Label": "112087-6047 via Conventional from 112088 -> 19704", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112088, + "TargetID": 19704, + "Directional": true + } + ] + }, + { + "ID": 20652, + "SourceStructureID": 112089, + "TargetStructureID": 6047, + "Label": "112089-6047 via Conventional from 112090 -> 19705", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112090, + "TargetID": 19705, + "Directional": true + } + ] + }, + { + "ID": 20653, + "SourceStructureID": 112094, + "TargetStructureID": 6047, + "Label": "112094-6047 via Conventional from 112095 -> 112093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112095, + "TargetID": 112093, + "Directional": true + } + ] + }, + { + "ID": 20654, + "SourceStructureID": 112096, + "TargetStructureID": 6047, + "Label": "112096-6047 via Conventional from 112097 -> 19700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112097, + "TargetID": 19700, + "Directional": true + } + ] + }, + { + "ID": 20655, + "SourceStructureID": 112099, + "TargetStructureID": 6047, + "Label": "112099-6047 via Conventional from 112100 -> 112098", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112100, + "TargetID": 112098, + "Directional": true + } + ] + }, + { + "ID": 20656, + "SourceStructureID": 112105, + "TargetStructureID": 6047, + "Label": "112105-6047 via Conventional from 112106 -> 19707", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112106, + "TargetID": 19707, + "Directional": true + } + ] + }, + { + "ID": 20657, + "SourceStructureID": 112108, + "TargetStructureID": 6047, + "Label": "112108-6047 via Conventional from 112109 -> 112107", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112109, + "TargetID": 112107, + "Directional": true + } + ] + }, + { + "ID": 20658, + "SourceStructureID": 112108, + "TargetStructureID": 22994, + "Label": "112108-22994 via Conventional from 112110 -> 75941", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112110, + "TargetID": 75941, + "Directional": true + } + ] + }, + { + "ID": 20659, + "SourceStructureID": 112111, + "TargetStructureID": 6047, + "Label": "112111-6047 via Conventional from 112112 -> 112114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112112, + "TargetID": 112114, + "Directional": true + } + ] + }, + { + "ID": 20660, + "SourceStructureID": 112111, + "TargetStructureID": 6141, + "Label": "112111-6141 via Conventional from 112113 -> 57399", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112113, + "TargetID": 57399, + "Directional": true + } + ] + }, + { + "ID": 20661, + "SourceStructureID": 112115, + "TargetStructureID": 6047, + "Label": "112115-6047 via Conventional from 112116 -> 19677", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112116, + "TargetID": 19677, + "Directional": true + } + ] + }, + { + "ID": 20662, + "SourceStructureID": 112128, + "TargetStructureID": 6047, + "Label": "112128-6047 via Conventional from 112129 -> 19678", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112129, + "TargetID": 19678, + "Directional": true + } + ] + }, + { + "ID": 20663, + "SourceStructureID": 112130, + "TargetStructureID": 6047, + "Label": "112130-6047 via Conventional from 112131 -> 19679", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112131, + "TargetID": 19679, + "Directional": true + } + ] + }, + { + "ID": 20664, + "SourceStructureID": 112133, + "TargetStructureID": 6047, + "Label": "112133-6047 via Conventional from 112134 -> 112132", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112134, + "TargetID": 112132, + "Directional": true + } + ] + }, + { + "ID": 20665, + "SourceStructureID": 112155, + "TargetStructureID": 6047, + "Label": "112155-6047 via Conventional from 112156 -> 112154", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112156, + "TargetID": 112154, + "Directional": true + } + ] + }, + { + "ID": 20666, + "SourceStructureID": 112160, + "TargetStructureID": 6047, + "Label": "112160-6047 via Conventional from 112161 -> 19682", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112161, + "TargetID": 19682, + "Directional": true + } + ] + }, + { + "ID": 20667, + "SourceStructureID": 112164, + "TargetStructureID": 6047, + "Label": "112164-6047 via Conventional from 112165 -> 19683", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112165, + "TargetID": 19683, + "Directional": true + } + ] + }, + { + "ID": 20668, + "SourceStructureID": 112166, + "TargetStructureID": 6047, + "Label": "112166-6047 via Conventional from 112167 -> 57404", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112167, + "TargetID": 57404, + "Directional": true + } + ] + }, + { + "ID": 20669, + "SourceStructureID": 112166, + "TargetStructureID": 112172, + "Label": "112166-112172 via Conventional from 112174 -> 112173", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112174, + "TargetID": 112173, + "Directional": true + } + ] + }, + { + "ID": 20670, + "SourceStructureID": 112168, + "TargetStructureID": 6047, + "Label": "112168-6047 via Conventional from 112169 -> 19685", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112169, + "TargetID": 19685, + "Directional": true + } + ] + }, + { + "ID": 20671, + "SourceStructureID": 112180, + "TargetStructureID": 6047, + "Label": "112180-6047 via Conventional from 112181 -> 19667", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112181, + "TargetID": 19667, + "Directional": true + } + ] + }, + { + "ID": 20672, + "SourceStructureID": 112182, + "TargetStructureID": 6047, + "Label": "112182-6047 via Cistern Post from 112183 -> 19668", + "Type": "Cistern Post", + "Directional": true, + "Links": [ + { + "SourceID": 112183, + "TargetID": 19668, + "Directional": true + } + ] + }, + { + "ID": 20673, + "SourceStructureID": 112184, + "TargetStructureID": 6047, + "Label": "112184-6047 via Conventional from 112185 -> 19674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112185, + "TargetID": 19674, + "Directional": true + } + ] + }, + { + "ID": 20674, + "SourceStructureID": 112186, + "TargetStructureID": 6047, + "Label": "112186-6047 via Conventional from 112187 -> 19672", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112187, + "TargetID": 19672, + "Directional": true + } + ] + }, + { + "ID": 20675, + "SourceStructureID": 112188, + "TargetStructureID": 6047, + "Label": "112188-6047 via Conventional from 112189 -> 19670, 112490 -> 112489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112189, + "TargetID": 19670, + "Directional": true + }, + { + "SourceID": 112490, + "TargetID": 112489, + "Directional": true + } + ] + }, + { + "ID": 20676, + "SourceStructureID": 112205, + "TargetStructureID": 3756, + "Label": "112205-3756 via Conventional from 120378 -> 116120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120378, + "TargetID": 116120, + "Directional": true + } + ] + }, + { + "ID": 20677, + "SourceStructureID": 112205, + "TargetStructureID": 6047, + "Label": "112205-6047 via Conventional from 112206 -> 19710", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112206, + "TargetID": 19710, + "Directional": true + } + ] + }, + { + "ID": 20678, + "SourceStructureID": 112207, + "TargetStructureID": 6047, + "Label": "112207-6047 via Conventional from 112208 -> 19712", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112208, + "TargetID": 19712, + "Directional": true + } + ] + }, + { + "ID": 20679, + "SourceStructureID": 112217, + "TargetStructureID": 6047, + "Label": "112217-6047 via Conventional from 112218 -> 19714, 112220 -> 61337", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112218, + "TargetID": 19714, + "Directional": true + }, + { + "SourceID": 112220, + "TargetID": 61337, + "Directional": true + } + ] + }, + { + "ID": 20680, + "SourceStructureID": 112221, + "TargetStructureID": 112217, + "Label": "112221-112217 via Conventional from 112222 -> 112223", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112222, + "TargetID": 112223, + "Directional": true + } + ] + }, + { + "ID": 20681, + "SourceStructureID": 112230, + "TargetStructureID": 6047, + "Label": "112230-6047 via Conventional from 112231 -> 61336", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112231, + "TargetID": 61336, + "Directional": true + } + ] + }, + { + "ID": 20682, + "SourceStructureID": 112233, + "TargetStructureID": 6047, + "Label": "112233-6047 via Unknown from 113692 -> 113691", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 113692, + "TargetID": 113691, + "Directional": true + } + ] + }, + { + "ID": 20683, + "SourceStructureID": 112241, + "TargetStructureID": 6047, + "Label": "112241-6047 via Conventional from 112242 -> 112240", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112242, + "TargetID": 112240, + "Directional": true + } + ] + }, + { + "ID": 20684, + "SourceStructureID": 112244, + "TargetStructureID": 6047, + "Label": "112244-6047 via Conventional from 112245 -> 61331", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112245, + "TargetID": 61331, + "Directional": true + } + ] + }, + { + "ID": 20685, + "SourceStructureID": 112246, + "TargetStructureID": 6047, + "Label": "112246-6047 via Conventional from 112247 -> 61325", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112247, + "TargetID": 61325, + "Directional": true + } + ] + }, + { + "ID": 20686, + "SourceStructureID": 112253, + "TargetStructureID": 6047, + "Label": "112253-6047 via Conventional from 112254 -> 61328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112254, + "TargetID": 61328, + "Directional": true + } + ] + }, + { + "ID": 20687, + "SourceStructureID": 112255, + "TargetStructureID": 6047, + "Label": "112255-6047 via Conventional from 112256 -> 61330", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112256, + "TargetID": 61330, + "Directional": true + } + ] + }, + { + "ID": 20688, + "SourceStructureID": 112271, + "TargetStructureID": 6047, + "Label": "112271-6047 via Conventional from 112272 -> 61334", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112272, + "TargetID": 61334, + "Directional": true + } + ] + }, + { + "ID": 20689, + "SourceStructureID": 112273, + "TargetStructureID": 6047, + "Label": "112273-6047 via Conventional from 112274 -> 61333", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112274, + "TargetID": 61333, + "Directional": true + } + ] + }, + { + "ID": 20690, + "SourceStructureID": 112282, + "TargetStructureID": 6047, + "Label": "112282-6047 via Conventional from 112283 -> 53631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112283, + "TargetID": 53631, + "Directional": true + } + ] + }, + { + "ID": 20691, + "SourceStructureID": 112284, + "TargetStructureID": 6047, + "Label": "112284-6047 via Conventional from 112285 -> 61324", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112285, + "TargetID": 61324, + "Directional": true + } + ] + }, + { + "ID": 20692, + "SourceStructureID": 112286, + "TargetStructureID": 6047, + "Label": "112286-6047 via Conventional from 112287 -> 112289", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112287, + "TargetID": 112289, + "Directional": true + } + ] + }, + { + "ID": 20693, + "SourceStructureID": 112290, + "TargetStructureID": 6047, + "Label": "112290-6047 via Conventional from 112291 -> 53632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112291, + "TargetID": 53632, + "Directional": true + } + ] + }, + { + "ID": 20694, + "SourceStructureID": 112297, + "TargetStructureID": 5729, + "Label": "112297-5729 via Conventional from 112298 -> 112299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112298, + "TargetID": 112299, + "Directional": true + } + ] + }, + { + "ID": 20695, + "SourceStructureID": 112319, + "TargetStructureID": 6047, + "Label": "112319-6047 via Conventional from 112320 -> 61323", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112320, + "TargetID": 61323, + "Directional": true + } + ] + }, + { + "ID": 20696, + "SourceStructureID": 112322, + "TargetStructureID": 6047, + "Label": "112322-6047 via Conventional from 112323 -> 112321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112323, + "TargetID": 112321, + "Directional": true + } + ] + }, + { + "ID": 20697, + "SourceStructureID": 112351, + "TargetStructureID": 6047, + "Label": "112351-6047 via Conventional from 112352 -> 112353", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112352, + "TargetID": 112353, + "Directional": true + } + ] + }, + { + "ID": 20698, + "SourceStructureID": 112355, + "TargetStructureID": 6047, + "Label": "112355-6047 via Conventional from 112356 -> 112354", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112356, + "TargetID": 112354, + "Directional": true + } + ] + }, + { + "ID": 20699, + "SourceStructureID": 112364, + "TargetStructureID": 6047, + "Label": "112364-6047 via Conventional from 112366 -> 19717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112366, + "TargetID": 19717, + "Directional": true + } + ] + }, + { + "ID": 20700, + "SourceStructureID": 112374, + "TargetStructureID": 6047, + "Label": "112374-6047 via Conventional from 112375 -> 112373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112375, + "TargetID": 112373, + "Directional": true + } + ] + }, + { + "ID": 20701, + "SourceStructureID": 112379, + "TargetStructureID": 6047, + "Label": "112379-6047 via Conventional from 112380 -> 19724", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112380, + "TargetID": 19724, + "Directional": true + } + ] + }, + { + "ID": 20702, + "SourceStructureID": 112384, + "TargetStructureID": 6047, + "Label": "112384-6047 via Conventional from 112385 -> 112383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112385, + "TargetID": 112383, + "Directional": true + } + ] + }, + { + "ID": 20703, + "SourceStructureID": 112386, + "TargetStructureID": 6047, + "Label": "112386-6047 via Conventional from 112387 -> 19725", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112387, + "TargetID": 19725, + "Directional": true + } + ] + }, + { + "ID": 20704, + "SourceStructureID": 112392, + "TargetStructureID": 6047, + "Label": "112392-6047 via Conventional from 112393 -> 19727", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112393, + "TargetID": 19727, + "Directional": true + } + ] + }, + { + "ID": 20705, + "SourceStructureID": 112402, + "TargetStructureID": 6047, + "Label": "112402-6047 via Conventional from 112406 -> 19740", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112406, + "TargetID": 19740, + "Directional": true + } + ] + }, + { + "ID": 20706, + "SourceStructureID": 112404, + "TargetStructureID": 6047, + "Label": "112404-6047 via Conventional from 112405 -> 19736", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112405, + "TargetID": 19736, + "Directional": true + } + ] + }, + { + "ID": 20707, + "SourceStructureID": 112407, + "TargetStructureID": 6047, + "Label": "112407-6047 via Conventional from 112408 -> 19735", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112408, + "TargetID": 19735, + "Directional": true + } + ] + }, + { + "ID": 20708, + "SourceStructureID": 112419, + "TargetStructureID": 6047, + "Label": "112419-6047 via Conventional from 112420 -> 19741", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112420, + "TargetID": 19741, + "Directional": true + } + ] + }, + { + "ID": 20709, + "SourceStructureID": 112447, + "TargetStructureID": 112447, + "Label": "112447-112447 via Postsynapse from 112448 -> 112452", + "Type": "Postsynapse", + "Directional": true, + "Links": [ + { + "SourceID": 112448, + "TargetID": 112452, + "Directional": true + } + ] + }, + { + "ID": 20710, + "SourceStructureID": 112468, + "TargetStructureID": 5531, + "Label": "112468-5531 via Conventional from 112469 -> 112470", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112469, + "TargetID": 112470, + "Directional": true + } + ] + }, + { + "ID": 20711, + "SourceStructureID": 112474, + "TargetStructureID": 6047, + "Label": "112474-6047 via Conventional from 112475 -> 19664", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112475, + "TargetID": 19664, + "Directional": true + } + ] + }, + { + "ID": 20712, + "SourceStructureID": 112476, + "TargetStructureID": 3756, + "Label": "112476-3756 via Conventional from 116112 -> 116111", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116112, + "TargetID": 116111, + "Directional": true + } + ] + }, + { + "ID": 20713, + "SourceStructureID": 112476, + "TargetStructureID": 6047, + "Label": "112476-6047 via Conventional from 112477 -> 19665, 129320 -> 129319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112477, + "TargetID": 19665, + "Directional": true + }, + { + "SourceID": 129320, + "TargetID": 129319, + "Directional": true + } + ] + }, + { + "ID": 20714, + "SourceStructureID": 112478, + "TargetStructureID": 6047, + "Label": "112478-6047 via Conventional from 112479 -> 19666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112479, + "TargetID": 19666, + "Directional": true + } + ] + }, + { + "ID": 20715, + "SourceStructureID": 112496, + "TargetStructureID": 6047, + "Label": "112496-6047 via Conventional from 112510 -> 112495", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112510, + "TargetID": 112495, + "Directional": true + } + ] + }, + { + "ID": 20716, + "SourceStructureID": 112515, + "TargetStructureID": 6047, + "Label": "112515-6047 via Conventional from 112517 -> 112516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112517, + "TargetID": 112516, + "Directional": true + } + ] + }, + { + "ID": 20717, + "SourceStructureID": 112525, + "TargetStructureID": 6047, + "Label": "112525-6047 via Conventional from 112527 -> 112526", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112527, + "TargetID": 112526, + "Directional": true + } + ] + }, + { + "ID": 20718, + "SourceStructureID": 112525, + "TargetStructureID": 43261, + "Label": "112525-43261 via Conventional from 122046 -> 122045", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122046, + "TargetID": 122045, + "Directional": true + } + ] + }, + { + "ID": 20719, + "SourceStructureID": 112545, + "TargetStructureID": 6047, + "Label": "112545-6047 via Conventional from 112546 -> 19662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112546, + "TargetID": 19662, + "Directional": true + } + ] + }, + { + "ID": 20720, + "SourceStructureID": 112560, + "TargetStructureID": 6047, + "Label": "112560-6047 via Conventional from 112561 -> 19658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112561, + "TargetID": 19658, + "Directional": true + } + ] + }, + { + "ID": 20721, + "SourceStructureID": 112577, + "TargetStructureID": 6047, + "Label": "112577-6047 via Conventional from 112578 -> 19663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112578, + "TargetID": 19663, + "Directional": true + } + ] + }, + { + "ID": 20722, + "SourceStructureID": 112584, + "TargetStructureID": 6047, + "Label": "112584-6047 via Conventional from 112585 -> 19657", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112585, + "TargetID": 19657, + "Directional": true + } + ] + }, + { + "ID": 20723, + "SourceStructureID": 112594, + "TargetStructureID": 5729, + "Label": "112594-5729 via Conventional from 112595 -> 64932", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112595, + "TargetID": 64932, + "Directional": true + } + ] + }, + { + "ID": 20724, + "SourceStructureID": 112607, + "TargetStructureID": 3116, + "Label": "112607-3116 via Conventional from 112608 -> 23813", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112608, + "TargetID": 23813, + "Directional": true + } + ] + }, + { + "ID": 20725, + "SourceStructureID": 112610, + "TargetStructureID": 168, + "Label": "112610-168 via Conventional from 112611 -> 4328, 112612 -> 4328, 112613 -> 49067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112611, + "TargetID": 4328, + "Directional": true + }, + { + "SourceID": 112612, + "TargetID": 4328, + "Directional": true + }, + { + "SourceID": 112613, + "TargetID": 49067, + "Directional": true + } + ] + }, + { + "ID": 20726, + "SourceStructureID": 112634, + "TargetStructureID": 5729, + "Label": "112634-5729 via Conventional from 112636 -> 112630", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112636, + "TargetID": 112630, + "Directional": true + } + ] + }, + { + "ID": 20727, + "SourceStructureID": 112638, + "TargetStructureID": 5729, + "Label": "112638-5729 via Conventional from 112640 -> 112621", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112640, + "TargetID": 112621, + "Directional": true + } + ] + }, + { + "ID": 20728, + "SourceStructureID": 112648, + "TargetStructureID": 5729, + "Label": "112648-5729 via Conventional from 112649 -> 112653", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112649, + "TargetID": 112653, + "Directional": true + } + ] + }, + { + "ID": 20729, + "SourceStructureID": 112650, + "TargetStructureID": 5729, + "Label": "112650-5729 via Conventional from 112651 -> 112652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112651, + "TargetID": 112652, + "Directional": true + } + ] + }, + { + "ID": 20730, + "SourceStructureID": 112661, + "TargetStructureID": 5729, + "Label": "112661-5729 via Conventional from 112663 -> 112660", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112663, + "TargetID": 112660, + "Directional": true + } + ] + }, + { + "ID": 20731, + "SourceStructureID": 112664, + "TargetStructureID": 5729, + "Label": "112664-5729 via Conventional from 112665 -> 112662", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112665, + "TargetID": 112662, + "Directional": true + } + ] + }, + { + "ID": 20732, + "SourceStructureID": 112677, + "TargetStructureID": 5729, + "Label": "112677-5729 via Conventional from 112680 -> 64512", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112680, + "TargetID": 64512, + "Directional": true + } + ] + }, + { + "ID": 20733, + "SourceStructureID": 112684, + "TargetStructureID": 5729, + "Label": "112684-5729 via Conventional from 112685 -> 64508", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112685, + "TargetID": 64508, + "Directional": true + } + ] + }, + { + "ID": 20734, + "SourceStructureID": 112684, + "TargetStructureID": 89586, + "Label": "112684-89586 via Conventional from 112687 -> 112688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112687, + "TargetID": 112688, + "Directional": true + } + ] + }, + { + "ID": 20735, + "SourceStructureID": 112689, + "TargetStructureID": 5729, + "Label": "112689-5729 via Conventional from 112691 -> 64526", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112691, + "TargetID": 64526, + "Directional": true + } + ] + }, + { + "ID": 20736, + "SourceStructureID": 112694, + "TargetStructureID": 5729, + "Label": "112694-5729 via Conventional from 112695 -> 64500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112695, + "TargetID": 64500, + "Directional": true + } + ] + }, + { + "ID": 20737, + "SourceStructureID": 112696, + "TargetStructureID": 5729, + "Label": "112696-5729 via Conventional from 112697 -> 64483", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112697, + "TargetID": 64483, + "Directional": true + } + ] + }, + { + "ID": 20738, + "SourceStructureID": 112700, + "TargetStructureID": 5729, + "Label": "112700-5729 via Conventional from 112701 -> 64485", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112701, + "TargetID": 64485, + "Directional": true + } + ] + }, + { + "ID": 20739, + "SourceStructureID": 112703, + "TargetStructureID": 112696, + "Label": "112703-112696 via Conventional from 112705 -> 112706", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112705, + "TargetID": 112706, + "Directional": true + } + ] + }, + { + "ID": 20740, + "SourceStructureID": 112709, + "TargetStructureID": 5729, + "Label": "112709-5729 via Conventional from 112710 -> 64481", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112710, + "TargetID": 64481, + "Directional": true + } + ] + }, + { + "ID": 20741, + "SourceStructureID": 112712, + "TargetStructureID": 5729, + "Label": "112712-5729 via Conventional from 112720 -> 64499", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112720, + "TargetID": 64499, + "Directional": true + } + ] + }, + { + "ID": 20742, + "SourceStructureID": 112718, + "TargetStructureID": 5729, + "Label": "112718-5729 via Conventional from 112719 -> 64525", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112719, + "TargetID": 64525, + "Directional": true + } + ] + }, + { + "ID": 20743, + "SourceStructureID": 112727, + "TargetStructureID": 5729, + "Label": "112727-5729 via Conventional from 112728 -> 64478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112728, + "TargetID": 64478, + "Directional": true + } + ] + }, + { + "ID": 20744, + "SourceStructureID": 112729, + "TargetStructureID": 5729, + "Label": "112729-5729 via Conventional from 112731 -> 64468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112731, + "TargetID": 64468, + "Directional": true + } + ] + }, + { + "ID": 20745, + "SourceStructureID": 112737, + "TargetStructureID": 5729, + "Label": "112737-5729 via Conventional from 112738 -> 64462", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112738, + "TargetID": 64462, + "Directional": true + } + ] + }, + { + "ID": 20746, + "SourceStructureID": 112739, + "TargetStructureID": 168, + "Label": "112739-168 via Conventional from 112740 -> 4332", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112740, + "TargetID": 4332, + "Directional": true + } + ] + }, + { + "ID": 20747, + "SourceStructureID": 112753, + "TargetStructureID": 6047, + "Label": "112753-6047 via Conventional from 112754 -> 61342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112754, + "TargetID": 61342, + "Directional": true + } + ] + }, + { + "ID": 20748, + "SourceStructureID": 112761, + "TargetStructureID": 6047, + "Label": "112761-6047 via Conventional from 112762 -> 61340", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112762, + "TargetID": 61340, + "Directional": true + } + ] + }, + { + "ID": 20749, + "SourceStructureID": 112766, + "TargetStructureID": 6047, + "Label": "112766-6047 via Conventional from 112767 -> 61346", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112767, + "TargetID": 61346, + "Directional": true + } + ] + }, + { + "ID": 20750, + "SourceStructureID": 112775, + "TargetStructureID": 6047, + "Label": "112775-6047 via Conventional from 112776 -> 19653", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112776, + "TargetID": 19653, + "Directional": true + } + ] + }, + { + "ID": 20751, + "SourceStructureID": 112777, + "TargetStructureID": 6047, + "Label": "112777-6047 via Conventional from 112778 -> 19652", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112778, + "TargetID": 19652, + "Directional": true + } + ] + }, + { + "ID": 20752, + "SourceStructureID": 112784, + "TargetStructureID": 6047, + "Label": "112784-6047 via Conventional from 112787 -> 19648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112787, + "TargetID": 19648, + "Directional": true + } + ] + }, + { + "ID": 20753, + "SourceStructureID": 112824, + "TargetStructureID": 6047, + "Label": "112824-6047 via Conventional from 112830 -> 19645", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112830, + "TargetID": 19645, + "Directional": true + } + ] + }, + { + "ID": 20754, + "SourceStructureID": 112843, + "TargetStructureID": 3756, + "Label": "112843-3756 via Conventional from 120368 -> 116097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120368, + "TargetID": 116097, + "Directional": true + } + ] + }, + { + "ID": 20755, + "SourceStructureID": 112843, + "TargetStructureID": 6047, + "Label": "112843-6047 via Conventional from 112844 -> 19642", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112844, + "TargetID": 19642, + "Directional": true + } + ] + }, + { + "ID": 20756, + "SourceStructureID": 112880, + "TargetStructureID": 5729, + "Label": "112880-5729 via Conventional from 112883 -> 64464", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112883, + "TargetID": 64464, + "Directional": true + } + ] + }, + { + "ID": 20757, + "SourceStructureID": 112903, + "TargetStructureID": 5729, + "Label": "112903-5729 via Conventional from 112905 -> 65014", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112905, + "TargetID": 65014, + "Directional": true + } + ] + }, + { + "ID": 20758, + "SourceStructureID": 112912, + "TargetStructureID": 5729, + "Label": "112912-5729 via Conventional from 112913 -> 64586", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112913, + "TargetID": 64586, + "Directional": true + } + ] + }, + { + "ID": 20759, + "SourceStructureID": 112938, + "TargetStructureID": 5729, + "Label": "112938-5729 via Conventional from 112940 -> 64533", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112940, + "TargetID": 64533, + "Directional": true + } + ] + }, + { + "ID": 20760, + "SourceStructureID": 112942, + "TargetStructureID": 5729, + "Label": "112942-5729 via Conventional from 112948 -> 64530", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112948, + "TargetID": 64530, + "Directional": true + } + ] + }, + { + "ID": 20761, + "SourceStructureID": 112964, + "TargetStructureID": 5729, + "Label": "112964-5729 via Conventional from 112965 -> 112963", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112965, + "TargetID": 112963, + "Directional": true + } + ] + }, + { + "ID": 20762, + "SourceStructureID": 112966, + "TargetStructureID": 5729, + "Label": "112966-5729 via Conventional from 112967 -> 112968", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112967, + "TargetID": 112968, + "Directional": true + } + ] + }, + { + "ID": 20763, + "SourceStructureID": 112969, + "TargetStructureID": 5729, + "Label": "112969-5729 via Conventional from 112970 -> 112971", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112970, + "TargetID": 112971, + "Directional": true + } + ] + }, + { + "ID": 20764, + "SourceStructureID": 112986, + "TargetStructureID": 5729, + "Label": "112986-5729 via Conventional from 112987 -> 112974", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112987, + "TargetID": 112974, + "Directional": true + } + ] + }, + { + "ID": 20765, + "SourceStructureID": 112989, + "TargetStructureID": 5729, + "Label": "112989-5729 via Conventional from 112990 -> 112988", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112990, + "TargetID": 112988, + "Directional": true + } + ] + }, + { + "ID": 20766, + "SourceStructureID": 112995, + "TargetStructureID": 61904, + "Label": "112995-61904 via Conventional from 112997 -> 82214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 112997, + "TargetID": 82214, + "Directional": true + } + ] + }, + { + "ID": 20767, + "SourceStructureID": 113068, + "TargetStructureID": 5284, + "Label": "113068-5284 via Conventional from 113069 -> 112871, 113073 -> 112875", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113069, + "TargetID": 112871, + "Directional": true + }, + { + "SourceID": 113073, + "TargetID": 112875, + "Directional": true + } + ] + }, + { + "ID": 20768, + "SourceStructureID": 113088, + "TargetStructureID": 5729, + "Label": "113088-5729 via Conventional from 113089 -> 113090", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113089, + "TargetID": 113090, + "Directional": true + } + ] + }, + { + "ID": 20769, + "SourceStructureID": 113091, + "TargetStructureID": 5729, + "Label": "113091-5729 via Conventional from 113102 -> 113101", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113102, + "TargetID": 113101, + "Directional": true + } + ] + }, + { + "ID": 20770, + "SourceStructureID": 113103, + "TargetStructureID": 5729, + "Label": "113103-5729 via Conventional from 113104 -> 113093", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113104, + "TargetID": 113093, + "Directional": true + } + ] + }, + { + "ID": 20771, + "SourceStructureID": 113120, + "TargetStructureID": 6047, + "Label": "113120-6047 via Conventional from 113121 -> 19640", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113121, + "TargetID": 19640, + "Directional": true + } + ] + }, + { + "ID": 20772, + "SourceStructureID": 113129, + "TargetStructureID": 6047, + "Label": "113129-6047 via Conventional from 113130 -> 19635", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113130, + "TargetID": 19635, + "Directional": true + } + ] + }, + { + "ID": 20773, + "SourceStructureID": 113131, + "TargetStructureID": 6047, + "Label": "113131-6047 via Conventional from 113132 -> 19629", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113132, + "TargetID": 19629, + "Directional": true + } + ] + }, + { + "ID": 20774, + "SourceStructureID": 113133, + "TargetStructureID": 6047, + "Label": "113133-6047 via Conventional from 113134 -> 19636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113134, + "TargetID": 19636, + "Directional": true + } + ] + }, + { + "ID": 20775, + "SourceStructureID": 113135, + "TargetStructureID": 6047, + "Label": "113135-6047 via Conventional from 113136 -> 19630", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113136, + "TargetID": 19630, + "Directional": true + } + ] + }, + { + "ID": 20776, + "SourceStructureID": 113147, + "TargetStructureID": 6047, + "Label": "113147-6047 via Conventional from 113148 -> 19639", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113148, + "TargetID": 19639, + "Directional": true + } + ] + }, + { + "ID": 20777, + "SourceStructureID": 113156, + "TargetStructureID": 6047, + "Label": "113156-6047 via Conventional from 113157 -> 19626, 113157 -> 113158", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113157, + "TargetID": 19626, + "Directional": true + }, + { + "SourceID": 113157, + "TargetID": 113158, + "Directional": true + } + ] + }, + { + "ID": 20778, + "SourceStructureID": 113159, + "TargetStructureID": 6047, + "Label": "113159-6047 via Conventional from 113161 -> 19625", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113161, + "TargetID": 19625, + "Directional": true + } + ] + }, + { + "ID": 20779, + "SourceStructureID": 113164, + "TargetStructureID": 6047, + "Label": "113164-6047 via Conventional from 113165 -> 27778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113165, + "TargetID": 27778, + "Directional": true + } + ] + }, + { + "ID": 20780, + "SourceStructureID": 113167, + "TargetStructureID": 6047, + "Label": "113167-6047 via Conventional from 113168 -> 113166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113168, + "TargetID": 113166, + "Directional": true + } + ] + }, + { + "ID": 20781, + "SourceStructureID": 113173, + "TargetStructureID": 6047, + "Label": "113173-6047 via Conventional from 113174 -> 113175", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113174, + "TargetID": 113175, + "Directional": true + } + ] + }, + { + "ID": 20782, + "SourceStructureID": 113179, + "TargetStructureID": 6047, + "Label": "113179-6047 via Conventional from 113181 -> 19632", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113181, + "TargetID": 19632, + "Directional": true + } + ] + }, + { + "ID": 20783, + "SourceStructureID": 113186, + "TargetStructureID": 3756, + "Label": "113186-3756 via Conventional from 129368 -> 129367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129368, + "TargetID": 129367, + "Directional": true + } + ] + }, + { + "ID": 20784, + "SourceStructureID": 113186, + "TargetStructureID": 6047, + "Label": "113186-6047 via Conventional from 113187 -> 19631", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113187, + "TargetID": 19631, + "Directional": true + } + ] + }, + { + "ID": 20785, + "SourceStructureID": 113228, + "TargetStructureID": 6047, + "Label": "113228-6047 via Conventional from 113229 -> 19692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113229, + "TargetID": 19692, + "Directional": true + } + ] + }, + { + "ID": 20786, + "SourceStructureID": 113242, + "TargetStructureID": 13525, + "Label": "113242-13525 via Conventional from 118475 -> 118476", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118475, + "TargetID": 118476, + "Directional": true + } + ] + }, + { + "ID": 20787, + "SourceStructureID": 113332, + "TargetStructureID": 5284, + "Label": "113332-5284 via Conventional from 113333 -> 65904, 113335 -> 113323, 113336 -> 49926", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113333, + "TargetID": 65904, + "Directional": true + }, + { + "SourceID": 113335, + "TargetID": 113323, + "Directional": true + }, + { + "SourceID": 113336, + "TargetID": 49926, + "Directional": true + } + ] + }, + { + "ID": 20788, + "SourceStructureID": 113342, + "TargetStructureID": 5284, + "Label": "113342-5284 via Conventional from 113343 -> 54354, 113348 -> 60786", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113343, + "TargetID": 54354, + "Directional": true + }, + { + "SourceID": 113348, + "TargetID": 60786, + "Directional": true + } + ] + }, + { + "ID": 20789, + "SourceStructureID": 113393, + "TargetStructureID": 5284, + "Label": "113393-5284 via Conventional from 113395 -> 113394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 113395, + "TargetID": 113394, + "Directional": true + } + ] + }, + { + "ID": 20790, + "SourceStructureID": 113547, + "TargetStructureID": 67291, + "Label": "113547-67291 via BC Conventional Synapse from 120526 -> 68362", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 120526, + "TargetID": 68362, + "Directional": true + } + ] + }, + { + "ID": 20791, + "SourceStructureID": 114564, + "TargetStructureID": 5531, + "Label": "114564-5531 via Conventional from 114565 -> 114566", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114565, + "TargetID": 114566, + "Directional": true + } + ] + }, + { + "ID": 20792, + "SourceStructureID": 114568, + "TargetStructureID": 5531, + "Label": "114568-5531 via Conventional from 114569 -> 114570", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114569, + "TargetID": 114570, + "Directional": true + } + ] + }, + { + "ID": 20793, + "SourceStructureID": 114576, + "TargetStructureID": 5531, + "Label": "114576-5531 via Conventional from 114577 -> 114578", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114577, + "TargetID": 114578, + "Directional": true + } + ] + }, + { + "ID": 20794, + "SourceStructureID": 114698, + "TargetStructureID": 5531, + "Label": "114698-5531 via Conventional from 114699 -> 114700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114699, + "TargetID": 114700, + "Directional": true + } + ] + }, + { + "ID": 20795, + "SourceStructureID": 114726, + "TargetStructureID": 5531, + "Label": "114726-5531 via Conventional from 114727 -> 114728, 114766 -> 114765", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114727, + "TargetID": 114728, + "Directional": true + }, + { + "SourceID": 114766, + "TargetID": 114765, + "Directional": true + } + ] + }, + { + "ID": 20796, + "SourceStructureID": 114729, + "TargetStructureID": 5531, + "Label": "114729-5531 via Conventional from 114730 -> 114731", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114730, + "TargetID": 114731, + "Directional": true + } + ] + }, + { + "ID": 20797, + "SourceStructureID": 114745, + "TargetStructureID": 5531, + "Label": "114745-5531 via Conventional from 114754 -> 114755", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114754, + "TargetID": 114755, + "Directional": true + } + ] + }, + { + "ID": 20798, + "SourceStructureID": 114747, + "TargetStructureID": 5531, + "Label": "114747-5531 via Conventional from 114750 -> 114751", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114750, + "TargetID": 114751, + "Directional": true + } + ] + }, + { + "ID": 20799, + "SourceStructureID": 114757, + "TargetStructureID": 5531, + "Label": "114757-5531 via Conventional from 114758 -> 54649", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114758, + "TargetID": 54649, + "Directional": true + } + ] + }, + { + "ID": 20800, + "SourceStructureID": 114925, + "TargetStructureID": 6164, + "Label": "114925-6164 via Conventional from 114926 -> 26861, 114929 -> 114930", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114926, + "TargetID": 26861, + "Directional": true + }, + { + "SourceID": 114929, + "TargetID": 114930, + "Directional": true + } + ] + }, + { + "ID": 20801, + "SourceStructureID": 114931, + "TargetStructureID": 6164, + "Label": "114931-6164 via Conventional from 114932 -> 26650", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 114932, + "TargetID": 26650, + "Directional": true + } + ] + }, + { + "ID": 20802, + "SourceStructureID": 115013, + "TargetStructureID": 6164, + "Label": "115013-6164 via Conventional from 115014 -> 114934, 115015 -> 26859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115014, + "TargetID": 114934, + "Directional": true + }, + { + "SourceID": 115015, + "TargetID": 26859, + "Directional": true + } + ] + }, + { + "ID": 20803, + "SourceStructureID": 115133, + "TargetStructureID": 5468, + "Label": "115133-5468 via Conventional from 124224 -> 48221", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 124224, + "TargetID": 48221, + "Directional": true + } + ] + }, + { + "ID": 20804, + "SourceStructureID": 115133, + "TargetStructureID": 5598, + "Label": "115133-5598 via Conventional from 124223 -> 57125", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 124223, + "TargetID": 57125, + "Directional": true + } + ] + }, + { + "ID": 20805, + "SourceStructureID": 115430, + "TargetStructureID": 115432, + "Label": "115430-115432 via Conventional from 115431 -> 115433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115431, + "TargetID": 115433, + "Directional": true + } + ] + }, + { + "ID": 20806, + "SourceStructureID": 115581, + "TargetStructureID": 13525, + "Label": "115581-13525 via Ribbon Synapse from 115582 -> 87165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 115582, + "TargetID": 87165, + "Directional": true + } + ] + }, + { + "ID": 20807, + "SourceStructureID": 115691, + "TargetStructureID": 5499, + "Label": "115691-5499 via Conventional from 115692 -> 98021", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115692, + "TargetID": 98021, + "Directional": true + } + ] + }, + { + "ID": 20808, + "SourceStructureID": 115801, + "TargetStructureID": 5599, + "Label": "115801-5599 via Conventional from 115802 -> 115803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115802, + "TargetID": 115803, + "Directional": true + } + ] + }, + { + "ID": 20809, + "SourceStructureID": 115810, + "TargetStructureID": 166, + "Label": "115810-166 via Conventional from 115811 -> 49166", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115811, + "TargetID": 49166, + "Directional": true + } + ] + }, + { + "ID": 20810, + "SourceStructureID": 115855, + "TargetStructureID": 909, + "Label": "115855-909 via Conventional from 115856 -> 115857", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115856, + "TargetID": 115857, + "Directional": true + } + ] + }, + { + "ID": 20811, + "SourceStructureID": 115870, + "TargetStructureID": 909, + "Label": "115870-909 via Conventional from 116377 -> 116375, 129491 -> 129492", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116377, + "TargetID": 116375, + "Directional": true + }, + { + "SourceID": 129491, + "TargetID": 129492, + "Directional": true + } + ] + }, + { + "ID": 20812, + "SourceStructureID": 115870, + "TargetStructureID": 115860, + "Label": "115870-115860 via Conventional from 129488 -> 129489", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129488, + "TargetID": 129489, + "Directional": true + } + ] + }, + { + "ID": 20813, + "SourceStructureID": 115878, + "TargetStructureID": 909, + "Label": "115878-909 via Conventional from 129501 -> 129500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129501, + "TargetID": 129500, + "Directional": true + } + ] + }, + { + "ID": 20814, + "SourceStructureID": 115888, + "TargetStructureID": 909, + "Label": "115888-909 via Conventional from 115889 -> 45838", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115889, + "TargetID": 45838, + "Directional": true + } + ] + }, + { + "ID": 20815, + "SourceStructureID": 115900, + "TargetStructureID": 909, + "Label": "115900-909 via Conventional from 115901 -> 40120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115901, + "TargetID": 40120, + "Directional": true + } + ] + }, + { + "ID": 20816, + "SourceStructureID": 115949, + "TargetStructureID": 909, + "Label": "115949-909 via Conventional from 115950 -> 45942", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115950, + "TargetID": 45942, + "Directional": true + } + ] + }, + { + "ID": 20817, + "SourceStructureID": 115953, + "TargetStructureID": 909, + "Label": "115953-909 via Conventional from 115954 -> 45943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115954, + "TargetID": 45943, + "Directional": true + } + ] + }, + { + "ID": 20818, + "SourceStructureID": 115953, + "TargetStructureID": 5279, + "Label": "115953-5279 via Conventional from 119110 -> 119109", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119110, + "TargetID": 119109, + "Directional": true + } + ] + }, + { + "ID": 20819, + "SourceStructureID": 115974, + "TargetStructureID": 909, + "Label": "115974-909 via Conventional from 115975 -> 115972", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115975, + "TargetID": 115972, + "Directional": true + } + ] + }, + { + "ID": 20820, + "SourceStructureID": 115977, + "TargetStructureID": 909, + "Label": "115977-909 via Conventional from 115980 -> 115976", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 115980, + "TargetID": 115976, + "Directional": true + } + ] + }, + { + "ID": 20821, + "SourceStructureID": 115983, + "TargetStructureID": 909, + "Label": "115983-909 via Conventional from 117245 -> 115981", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117245, + "TargetID": 115981, + "Directional": true + } + ] + }, + { + "ID": 20822, + "SourceStructureID": 116395, + "TargetStructureID": 909, + "Label": "116395-909 via Conventional from 116396 -> 116303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116396, + "TargetID": 116303, + "Directional": true + } + ] + }, + { + "ID": 20823, + "SourceStructureID": 116400, + "TargetStructureID": 909, + "Label": "116400-909 via Conventional from 116765 -> 116302", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116765, + "TargetID": 116302, + "Directional": true + } + ] + }, + { + "ID": 20824, + "SourceStructureID": 116403, + "TargetStructureID": 909, + "Label": "116403-909 via Conventional from 116404 -> 116401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116404, + "TargetID": 116401, + "Directional": true + } + ] + }, + { + "ID": 20825, + "SourceStructureID": 116451, + "TargetStructureID": 7167, + "Label": "116451-7167 via Conventional from 116452 -> 116450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116452, + "TargetID": 116450, + "Directional": true + } + ] + }, + { + "ID": 20826, + "SourceStructureID": 116729, + "TargetStructureID": 3116, + "Label": "116729-3116 via Conventional from 116730 -> 116728", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116730, + "TargetID": 116728, + "Directional": true + } + ] + }, + { + "ID": 20827, + "SourceStructureID": 116788, + "TargetStructureID": 909, + "Label": "116788-909 via Conventional from 116789 -> 116782", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116789, + "TargetID": 116782, + "Directional": true + } + ] + }, + { + "ID": 20828, + "SourceStructureID": 116791, + "TargetStructureID": 909, + "Label": "116791-909 via Conventional from 116792 -> 116790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116792, + "TargetID": 116790, + "Directional": true + } + ] + }, + { + "ID": 20829, + "SourceStructureID": 116919, + "TargetStructureID": 5551, + "Label": "116919-5551 via Conventional from 116920 -> 116921", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116920, + "TargetID": 116921, + "Directional": true + } + ] + }, + { + "ID": 20830, + "SourceStructureID": 116925, + "TargetStructureID": 5551, + "Label": "116925-5551 via Conventional from 116928 -> 116924", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 116928, + "TargetID": 116924, + "Directional": true + } + ] + }, + { + "ID": 20831, + "SourceStructureID": 117065, + "TargetStructureID": 5557, + "Label": "117065-5557 via Conventional from 117066 -> 117067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117066, + "TargetID": 117067, + "Directional": true + } + ] + }, + { + "ID": 20832, + "SourceStructureID": 117112, + "TargetStructureID": 8720, + "Label": "117112-8720 via Ribbon Synapse from 117183 -> 63467", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117183, + "TargetID": 63467, + "Directional": true + } + ] + }, + { + "ID": 20833, + "SourceStructureID": 117127, + "TargetStructureID": 63978, + "Label": "117127-63978 via Ribbon Synapse from 117146 -> 64000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117146, + "TargetID": 64000, + "Directional": true + } + ] + }, + { + "ID": 20834, + "SourceStructureID": 117214, + "TargetStructureID": 909, + "Label": "117214-909 via Conventional from 117215 -> 117216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117215, + "TargetID": 117216, + "Directional": true + } + ] + }, + { + "ID": 20835, + "SourceStructureID": 117218, + "TargetStructureID": 909, + "Label": "117218-909 via Conventional from 117219 -> 117220", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117219, + "TargetID": 117220, + "Directional": true + } + ] + }, + { + "ID": 20836, + "SourceStructureID": 117223, + "TargetStructureID": 909, + "Label": "117223-909 via Conventional from 117228 -> 117229, 131032 -> 118644", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117228, + "TargetID": 117229, + "Directional": true + }, + { + "SourceID": 131032, + "TargetID": 118644, + "Directional": true + } + ] + }, + { + "ID": 20837, + "SourceStructureID": 117239, + "TargetStructureID": 909, + "Label": "117239-909 via Conventional from 117240 -> 117238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117240, + "TargetID": 117238, + "Directional": true + } + ] + }, + { + "ID": 20838, + "SourceStructureID": 117242, + "TargetStructureID": 909, + "Label": "117242-909 via Conventional from 131066 -> 131065", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131066, + "TargetID": 131065, + "Directional": true + } + ] + }, + { + "ID": 20839, + "SourceStructureID": 117242, + "TargetStructureID": 117204, + "Label": "117242-117204 via Conventional from 117243 -> 117244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117243, + "TargetID": 117244, + "Directional": true + } + ] + }, + { + "ID": 20840, + "SourceStructureID": 117285, + "TargetStructureID": 909, + "Label": "117285-909 via Conventional from 117286 -> 117276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117286, + "TargetID": 117276, + "Directional": true + } + ] + }, + { + "ID": 20841, + "SourceStructureID": 117399, + "TargetStructureID": 909, + "Label": "117399-909 via Conventional from 117400 -> 117396", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117400, + "TargetID": 117396, + "Directional": true + } + ] + }, + { + "ID": 20842, + "SourceStructureID": 117401, + "TargetStructureID": 909, + "Label": "117401-909 via Conventional from 117403 -> 117397", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117403, + "TargetID": 117397, + "Directional": true + } + ] + }, + { + "ID": 20843, + "SourceStructureID": 117404, + "TargetStructureID": 909, + "Label": "117404-909 via Conventional from 117405 -> 117398", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117405, + "TargetID": 117398, + "Directional": true + } + ] + }, + { + "ID": 20844, + "SourceStructureID": 117406, + "TargetStructureID": 909, + "Label": "117406-909 via Conventional from 117407 -> 53732", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117407, + "TargetID": 53732, + "Directional": true + } + ] + }, + { + "ID": 20845, + "SourceStructureID": 117406, + "TargetStructureID": 117411, + "Label": "117406-117411 via Conventional from 130224 -> 130225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130224, + "TargetID": 130225, + "Directional": true + } + ] + }, + { + "ID": 20846, + "SourceStructureID": 117411, + "TargetStructureID": 909, + "Label": "117411-909 via Conventional from 117412 -> 117414", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117412, + "TargetID": 117414, + "Directional": true + } + ] + }, + { + "ID": 20847, + "SourceStructureID": 117429, + "TargetStructureID": 909, + "Label": "117429-909 via Conventional from 117430 -> 117428", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117430, + "TargetID": 117428, + "Directional": true + } + ] + }, + { + "ID": 20848, + "SourceStructureID": 117440, + "TargetStructureID": 909, + "Label": "117440-909 via Conventional from 117441 -> 117442", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117441, + "TargetID": 117442, + "Directional": true + } + ] + }, + { + "ID": 20849, + "SourceStructureID": 117463, + "TargetStructureID": 909, + "Label": "117463-909 via Conventional from 117464 -> 53743", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117464, + "TargetID": 53743, + "Directional": true + } + ] + }, + { + "ID": 20850, + "SourceStructureID": 117466, + "TargetStructureID": 909, + "Label": "117466-909 via Conventional from 117467 -> 53744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117467, + "TargetID": 53744, + "Directional": true + } + ] + }, + { + "ID": 20851, + "SourceStructureID": 117470, + "TargetStructureID": 909, + "Label": "117470-909 via Conventional from 117471 -> 53745, 130086 -> 130087", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117471, + "TargetID": 53745, + "Directional": true + }, + { + "SourceID": 130086, + "TargetID": 130087, + "Directional": true + } + ] + }, + { + "ID": 20852, + "SourceStructureID": 117476, + "TargetStructureID": 909, + "Label": "117476-909 via Conventional from 117477 -> 117478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117477, + "TargetID": 117478, + "Directional": true + } + ] + }, + { + "ID": 20853, + "SourceStructureID": 117659, + "TargetStructureID": 909, + "Label": "117659-909 via Conventional from 117660 -> 117661", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117660, + "TargetID": 117661, + "Directional": true + } + ] + }, + { + "ID": 20854, + "SourceStructureID": 117679, + "TargetStructureID": 909, + "Label": "117679-909 via Conventional from 117680 -> 117457", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117680, + "TargetID": 117457, + "Directional": true + } + ] + }, + { + "ID": 20855, + "SourceStructureID": 117689, + "TargetStructureID": 909, + "Label": "117689-909 via Conventional from 117690 -> 53754, 120173 -> 120172", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117690, + "TargetID": 53754, + "Directional": true + }, + { + "SourceID": 120173, + "TargetID": 120172, + "Directional": true + } + ] + }, + { + "ID": 20856, + "SourceStructureID": 117778, + "TargetStructureID": 28950, + "Label": "117778-28950 via Ribbon Synapse from 117788 -> 28992, 117789 -> 28992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117788, + "TargetID": 28992, + "Directional": true + }, + { + "SourceID": 117789, + "TargetID": 28992, + "Directional": true + } + ] + }, + { + "ID": 20857, + "SourceStructureID": 117803, + "TargetStructureID": 7129, + "Label": "117803-7129 via Conventional from 127741 -> 127742", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127741, + "TargetID": 127742, + "Directional": true + } + ] + }, + { + "ID": 20858, + "SourceStructureID": 117820, + "TargetStructureID": 909, + "Label": "117820-909 via Conventional from 117821 -> 117822", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117821, + "TargetID": 117822, + "Directional": true + } + ] + }, + { + "ID": 20859, + "SourceStructureID": 117851, + "TargetStructureID": 909, + "Label": "117851-909 via Conventional from 130282 -> 130283", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130282, + "TargetID": 130283, + "Directional": true + } + ] + }, + { + "ID": 20860, + "SourceStructureID": 117851, + "TargetStructureID": 5297, + "Label": "117851-5297 via Conventional from 121469 -> 61482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121469, + "TargetID": 61482, + "Directional": true + } + ] + }, + { + "ID": 20861, + "SourceStructureID": 117858, + "TargetStructureID": 909, + "Label": "117858-909 via Conventional from 117859 -> 117828", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117859, + "TargetID": 117828, + "Directional": true + } + ] + }, + { + "ID": 20862, + "SourceStructureID": 117860, + "TargetStructureID": 909, + "Label": "117860-909 via Conventional from 117861 -> 117850", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117861, + "TargetID": 117850, + "Directional": true + } + ] + }, + { + "ID": 20863, + "SourceStructureID": 117860, + "TargetStructureID": 5297, + "Label": "117860-5297 via Conventional from 121335 -> 116445", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121335, + "TargetID": 116445, + "Directional": true + } + ] + }, + { + "ID": 20864, + "SourceStructureID": 117876, + "TargetStructureID": 909, + "Label": "117876-909 via Conventional from 117877 -> 117870, 117886 -> 117885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117877, + "TargetID": 117870, + "Directional": true + }, + { + "SourceID": 117886, + "TargetID": 117885, + "Directional": true + } + ] + }, + { + "ID": 20865, + "SourceStructureID": 117887, + "TargetStructureID": 909, + "Label": "117887-909 via Conventional from 117888 -> 53795", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117888, + "TargetID": 53795, + "Directional": true + } + ] + }, + { + "ID": 20866, + "SourceStructureID": 117906, + "TargetStructureID": 909, + "Label": "117906-909 via Conventional from 117908 -> 117909", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117908, + "TargetID": 117909, + "Directional": true + } + ] + }, + { + "ID": 20867, + "SourceStructureID": 117919, + "TargetStructureID": 909, + "Label": "117919-909 via Conventional from 117920 -> 117918", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117920, + "TargetID": 117918, + "Directional": true + } + ] + }, + { + "ID": 20868, + "SourceStructureID": 117919, + "TargetStructureID": 5284, + "Label": "117919-5284 via Conventional from 117921 -> 64591", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 117921, + "TargetID": 64591, + "Directional": true + } + ] + }, + { + "ID": 20869, + "SourceStructureID": 117990, + "TargetStructureID": 7861, + "Label": "117990-7861 via Ribbon Synapse from 117994 -> 117995", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 117994, + "TargetID": 117995, + "Directional": true + } + ] + }, + { + "ID": 20870, + "SourceStructureID": 118258, + "TargetStructureID": 118258, + "Label": "118258-118258 via Conventional from 127800 -> 127801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127800, + "TargetID": 127801, + "Directional": true + } + ] + }, + { + "ID": 20871, + "SourceStructureID": 118258, + "TargetStructureID": 127796, + "Label": "118258-127796 via Ribbon Synapse from 127802 -> 127803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127802, + "TargetID": 127803, + "Directional": true + } + ] + }, + { + "ID": 20872, + "SourceStructureID": 118395, + "TargetStructureID": 909, + "Label": "118395-909 via Conventional from 118397 -> 53803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118397, + "TargetID": 53803, + "Directional": true + } + ] + }, + { + "ID": 20873, + "SourceStructureID": 118446, + "TargetStructureID": 909, + "Label": "118446-909 via Conventional from 118451 -> 118452", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118451, + "TargetID": 118452, + "Directional": true + } + ] + }, + { + "ID": 20874, + "SourceStructureID": 118949, + "TargetStructureID": 26079, + "Label": "118949-26079 via Conventional from 118950 -> 118948", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118950, + "TargetID": 118948, + "Directional": true + } + ] + }, + { + "ID": 20875, + "SourceStructureID": 118952, + "TargetStructureID": 5513, + "Label": "118952-5513 via Conventional from 118953 -> 29591", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118953, + "TargetID": 29591, + "Directional": true + } + ] + }, + { + "ID": 20876, + "SourceStructureID": 118997, + "TargetStructureID": 31700, + "Label": "118997-31700 via Conventional from 118998 -> 118996", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 118998, + "TargetID": 118996, + "Directional": true + } + ] + }, + { + "ID": 20877, + "SourceStructureID": 119000, + "TargetStructureID": 330, + "Label": "119000-330 via Conventional from 119003 -> 119004", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119003, + "TargetID": 119004, + "Directional": true + } + ] + }, + { + "ID": 20878, + "SourceStructureID": 119000, + "TargetStructureID": 606, + "Label": "119000-606 via Conventional from 119014 -> 9796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119014, + "TargetID": 9796, + "Directional": true + } + ] + }, + { + "ID": 20879, + "SourceStructureID": 119000, + "TargetStructureID": 6165, + "Label": "119000-6165 via Conventional from 119039 -> 119040", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119039, + "TargetID": 119040, + "Directional": true + } + ] + }, + { + "ID": 20880, + "SourceStructureID": 119000, + "TargetStructureID": 31700, + "Label": "119000-31700 via Conventional from 119001 -> 118999", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119001, + "TargetID": 118999, + "Directional": true + } + ] + }, + { + "ID": 20881, + "SourceStructureID": 119000, + "TargetStructureID": 119008, + "Label": "119000-119008 via Conventional from 119007 -> 119010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119007, + "TargetID": 119010, + "Directional": true + } + ] + }, + { + "ID": 20882, + "SourceStructureID": 119000, + "TargetStructureID": 119017, + "Label": "119000-119017 via Conventional from 119016 -> 119018", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119016, + "TargetID": 119018, + "Directional": true + } + ] + }, + { + "ID": 20883, + "SourceStructureID": 119000, + "TargetStructureID": 119020, + "Label": "119000-119020 via Conventional from 119019 -> 119021", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119019, + "TargetID": 119021, + "Directional": true + } + ] + }, + { + "ID": 20884, + "SourceStructureID": 119008, + "TargetStructureID": 330, + "Label": "119008-330 via Conventional from 119009 -> 119011", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119009, + "TargetID": 119011, + "Directional": true + } + ] + }, + { + "ID": 20885, + "SourceStructureID": 119154, + "TargetStructureID": 64673, + "Label": "119154-64673 via Conventional from 119168 -> 64681", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119168, + "TargetID": 64681, + "Directional": true + } + ] + }, + { + "ID": 20886, + "SourceStructureID": 119241, + "TargetStructureID": 52257, + "Label": "119241-52257 via Conventional from 119242 -> 119245, 119243 -> 119244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119242, + "TargetID": 119245, + "Directional": true + }, + { + "SourceID": 119243, + "TargetID": 119244, + "Directional": true + } + ] + }, + { + "ID": 20887, + "SourceStructureID": 119270, + "TargetStructureID": 5281, + "Label": "119270-5281 via Conventional from 119271 -> 36784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119271, + "TargetID": 36784, + "Directional": true + } + ] + }, + { + "ID": 20888, + "SourceStructureID": 119388, + "TargetStructureID": 13525, + "Label": "119388-13525 via Conventional from 119409 -> 119406", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119409, + "TargetID": 119406, + "Directional": true + } + ] + }, + { + "ID": 20889, + "SourceStructureID": 119517, + "TargetStructureID": 5487, + "Label": "119517-5487 via BC Conventional Synapse from 119526 -> 119525", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119526, + "TargetID": 119525, + "Directional": true + } + ] + }, + { + "ID": 20890, + "SourceStructureID": 119517, + "TargetStructureID": 6300, + "Label": "119517-6300 via Ribbon Synapse from 119520 -> 119516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119520, + "TargetID": 119516, + "Directional": true + } + ] + }, + { + "ID": 20891, + "SourceStructureID": 119517, + "TargetStructureID": 54969, + "Label": "119517-54969 via Ribbon Synapse from 119521 -> 54970", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119521, + "TargetID": 54970, + "Directional": true + } + ] + }, + { + "ID": 20892, + "SourceStructureID": 119547, + "TargetStructureID": 8035, + "Label": "119547-8035 via Ribbon Synapse from 119555 -> 25020", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 119555, + "TargetID": 25020, + "Directional": true + } + ] + }, + { + "ID": 20893, + "SourceStructureID": 119945, + "TargetStructureID": 119943, + "Label": "119945-119943 via Conventional from 119946 -> 119944", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119946, + "TargetID": 119944, + "Directional": true + } + ] + }, + { + "ID": 20894, + "SourceStructureID": 119971, + "TargetStructureID": 5281, + "Label": "119971-5281 via Conventional from 119972 -> 119970", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 119972, + "TargetID": 119970, + "Directional": true + } + ] + }, + { + "ID": 20895, + "SourceStructureID": 120194, + "TargetStructureID": 909, + "Label": "120194-909 via Conventional from 120195 -> 118423", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120195, + "TargetID": 118423, + "Directional": true + } + ] + }, + { + "ID": 20896, + "SourceStructureID": 120197, + "TargetStructureID": 909, + "Label": "120197-909 via Conventional from 120198 -> 120181", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120198, + "TargetID": 120181, + "Directional": true + } + ] + }, + { + "ID": 20897, + "SourceStructureID": 120253, + "TargetStructureID": 3756, + "Label": "120253-3756 via Conventional from 120254 -> 116038", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120254, + "TargetID": 116038, + "Directional": true + } + ] + }, + { + "ID": 20898, + "SourceStructureID": 120256, + "TargetStructureID": 5531, + "Label": "120256-5531 via Conventional from 120257 -> 107201", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120257, + "TargetID": 107201, + "Directional": true + } + ] + }, + { + "ID": 20899, + "SourceStructureID": 120270, + "TargetStructureID": 5531, + "Label": "120270-5531 via Conventional from 120272 -> 108023", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120272, + "TargetID": 108023, + "Directional": true + } + ] + }, + { + "ID": 20900, + "SourceStructureID": 120282, + "TargetStructureID": 3756, + "Label": "120282-3756 via Conventional from 120283 -> 116006, 120308 -> 116023", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120283, + "TargetID": 116006, + "Directional": true + }, + { + "SourceID": 120308, + "TargetID": 116023, + "Directional": true + } + ] + }, + { + "ID": 20901, + "SourceStructureID": 120285, + "TargetStructureID": 3756, + "Label": "120285-3756 via Conventional from 120287 -> 116010", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120287, + "TargetID": 116010, + "Directional": true + } + ] + }, + { + "ID": 20902, + "SourceStructureID": 120288, + "TargetStructureID": 3756, + "Label": "120288-3756 via Conventional from 120290 -> 116013", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120290, + "TargetID": 116013, + "Directional": true + } + ] + }, + { + "ID": 20903, + "SourceStructureID": 120291, + "TargetStructureID": 3756, + "Label": "120291-3756 via Conventional from 120294 -> 116014, 120298 -> 116016", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120294, + "TargetID": 116014, + "Directional": true + }, + { + "SourceID": 120298, + "TargetID": 116016, + "Directional": true + } + ] + }, + { + "ID": 20904, + "SourceStructureID": 120299, + "TargetStructureID": 3756, + "Label": "120299-3756 via Conventional from 120300 -> 116019", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120300, + "TargetID": 116019, + "Directional": true + } + ] + }, + { + "ID": 20905, + "SourceStructureID": 120299, + "TargetStructureID": 5297, + "Label": "120299-5297 via Conventional from 121361 -> 116513", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121361, + "TargetID": 116513, + "Directional": true + } + ] + }, + { + "ID": 20906, + "SourceStructureID": 120303, + "TargetStructureID": 3756, + "Label": "120303-3756 via Conventional from 120307 -> 116020", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120307, + "TargetID": 116020, + "Directional": true + } + ] + }, + { + "ID": 20907, + "SourceStructureID": 120309, + "TargetStructureID": 3756, + "Label": "120309-3756 via Conventional from 120310 -> 116028", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120310, + "TargetID": 116028, + "Directional": true + } + ] + }, + { + "ID": 20908, + "SourceStructureID": 120318, + "TargetStructureID": 3756, + "Label": "120318-3756 via Conventional from 120319 -> 116032", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120319, + "TargetID": 116032, + "Directional": true + } + ] + }, + { + "ID": 20909, + "SourceStructureID": 120321, + "TargetStructureID": 6050, + "Label": "120321-6050 via Conventional from 128794 -> 127649", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128794, + "TargetID": 127649, + "Directional": true + } + ] + }, + { + "ID": 20910, + "SourceStructureID": 120323, + "TargetStructureID": 3756, + "Label": "120323-3756 via Conventional from 120324 -> 116040, 120325 -> 116040", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120324, + "TargetID": 116040, + "Directional": true + }, + { + "SourceID": 120325, + "TargetID": 116040, + "Directional": true + } + ] + }, + { + "ID": 20911, + "SourceStructureID": 120329, + "TargetStructureID": 3756, + "Label": "120329-3756 via Conventional from 120330 -> 116049", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120330, + "TargetID": 116049, + "Directional": true + } + ] + }, + { + "ID": 20912, + "SourceStructureID": 120331, + "TargetStructureID": 3756, + "Label": "120331-3756 via Conventional from 120332 -> 116053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120332, + "TargetID": 116053, + "Directional": true + } + ] + }, + { + "ID": 20913, + "SourceStructureID": 120334, + "TargetStructureID": 3756, + "Label": "120334-3756 via Conventional from 120336 -> 116055", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120336, + "TargetID": 116055, + "Directional": true + } + ] + }, + { + "ID": 20914, + "SourceStructureID": 120334, + "TargetStructureID": 5598, + "Label": "120334-5598 via Conventional from 120335 -> 115254", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120335, + "TargetID": 115254, + "Directional": true + } + ] + }, + { + "ID": 20915, + "SourceStructureID": 120337, + "TargetStructureID": 3756, + "Label": "120337-3756 via Conventional from 120338 -> 116056", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120338, + "TargetID": 116056, + "Directional": true + } + ] + }, + { + "ID": 20916, + "SourceStructureID": 120339, + "TargetStructureID": 3756, + "Label": "120339-3756 via Conventional from 120340 -> 116057", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120340, + "TargetID": 116057, + "Directional": true + } + ] + }, + { + "ID": 20917, + "SourceStructureID": 120343, + "TargetStructureID": 3756, + "Label": "120343-3756 via Conventional from 120344 -> 116066", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120344, + "TargetID": 116066, + "Directional": true + } + ] + }, + { + "ID": 20918, + "SourceStructureID": 120343, + "TargetStructureID": 116142, + "Label": "120343-116142 via Conventional from 129180 -> 129178", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129180, + "TargetID": 129178, + "Directional": true + } + ] + }, + { + "ID": 20919, + "SourceStructureID": 120347, + "TargetStructureID": 3756, + "Label": "120347-3756 via Conventional from 120348 -> 116067", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120348, + "TargetID": 116067, + "Directional": true + } + ] + }, + { + "ID": 20920, + "SourceStructureID": 120355, + "TargetStructureID": 3756, + "Label": "120355-3756 via Conventional from 120356 -> 116081", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120356, + "TargetID": 116081, + "Directional": true + } + ] + }, + { + "ID": 20921, + "SourceStructureID": 120359, + "TargetStructureID": 3756, + "Label": "120359-3756 via Conventional from 120360 -> 116083", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120360, + "TargetID": 116083, + "Directional": true + } + ] + }, + { + "ID": 20922, + "SourceStructureID": 120361, + "TargetStructureID": 3756, + "Label": "120361-3756 via Conventional from 120362 -> 116096", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120362, + "TargetID": 116096, + "Directional": true + } + ] + }, + { + "ID": 20923, + "SourceStructureID": 120370, + "TargetStructureID": 3756, + "Label": "120370-3756 via Conventional from 120371 -> 116100", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120371, + "TargetID": 116100, + "Directional": true + } + ] + }, + { + "ID": 20924, + "SourceStructureID": 120372, + "TargetStructureID": 3756, + "Label": "120372-3756 via Conventional from 120373 -> 116109", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120373, + "TargetID": 116109, + "Directional": true + } + ] + }, + { + "ID": 20925, + "SourceStructureID": 120375, + "TargetStructureID": 3756, + "Label": "120375-3756 via Conventional from 120376 -> 116114", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120376, + "TargetID": 116114, + "Directional": true + } + ] + }, + { + "ID": 20926, + "SourceStructureID": 120379, + "TargetStructureID": 3756, + "Label": "120379-3756 via Conventional from 120380 -> 116130, 120384 -> 116139", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120380, + "TargetID": 116130, + "Directional": true + }, + { + "SourceID": 120384, + "TargetID": 116139, + "Directional": true + } + ] + }, + { + "ID": 20927, + "SourceStructureID": 120379, + "TargetStructureID": 116142, + "Label": "120379-116142 via Conventional from 120386 -> 120943", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120386, + "TargetID": 120943, + "Directional": true + } + ] + }, + { + "ID": 20928, + "SourceStructureID": 120389, + "TargetStructureID": 3756, + "Label": "120389-3756 via Conventional from 120390 -> 116141", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120390, + "TargetID": 116141, + "Directional": true + } + ] + }, + { + "ID": 20929, + "SourceStructureID": 120393, + "TargetStructureID": 3756, + "Label": "120393-3756 via Conventional from 120394 -> 116148, 129412 -> 129411", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120394, + "TargetID": 116148, + "Directional": true + }, + { + "SourceID": 129412, + "TargetID": 129411, + "Directional": true + } + ] + }, + { + "ID": 20930, + "SourceStructureID": 120393, + "TargetStructureID": 6047, + "Label": "120393-6047 via Conventional from 120395 -> 113351", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120395, + "TargetID": 113351, + "Directional": true + } + ] + }, + { + "ID": 20931, + "SourceStructureID": 120396, + "TargetStructureID": 3756, + "Label": "120396-3756 via Conventional from 120397 -> 116152", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120397, + "TargetID": 116152, + "Directional": true + } + ] + }, + { + "ID": 20932, + "SourceStructureID": 120398, + "TargetStructureID": 3756, + "Label": "120398-3756 via Conventional from 120399 -> 116157", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120399, + "TargetID": 116157, + "Directional": true + } + ] + }, + { + "ID": 20933, + "SourceStructureID": 120400, + "TargetStructureID": 3756, + "Label": "120400-3756 via Conventional from 120401 -> 116159", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120401, + "TargetID": 116159, + "Directional": true + } + ] + }, + { + "ID": 20934, + "SourceStructureID": 120403, + "TargetStructureID": 3756, + "Label": "120403-3756 via Conventional from 120404 -> 116161", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120404, + "TargetID": 116161, + "Directional": true + } + ] + }, + { + "ID": 20935, + "SourceStructureID": 120409, + "TargetStructureID": 3756, + "Label": "120409-3756 via Conventional from 120414 -> 116162", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120414, + "TargetID": 116162, + "Directional": true + } + ] + }, + { + "ID": 20936, + "SourceStructureID": 120416, + "TargetStructureID": 3756, + "Label": "120416-3756 via Conventional from 120418 -> 116165, 120558 -> 56909", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120418, + "TargetID": 116165, + "Directional": true + }, + { + "SourceID": 120558, + "TargetID": 56909, + "Directional": true + } + ] + }, + { + "ID": 20937, + "SourceStructureID": 120420, + "TargetStructureID": 3756, + "Label": "120420-3756 via Conventional from 120421 -> 116167", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120421, + "TargetID": 116167, + "Directional": true + } + ] + }, + { + "ID": 20938, + "SourceStructureID": 120423, + "TargetStructureID": 3756, + "Label": "120423-3756 via Conventional from 120424 -> 116175", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120424, + "TargetID": 116175, + "Directional": true + } + ] + }, + { + "ID": 20939, + "SourceStructureID": 120425, + "TargetStructureID": 3756, + "Label": "120425-3756 via Conventional from 120426 -> 116176", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120426, + "TargetID": 116176, + "Directional": true + } + ] + }, + { + "ID": 20940, + "SourceStructureID": 120431, + "TargetStructureID": 3756, + "Label": "120431-3756 via Conventional from 120434 -> 116188", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120434, + "TargetID": 116188, + "Directional": true + } + ] + }, + { + "ID": 20941, + "SourceStructureID": 120439, + "TargetStructureID": 3756, + "Label": "120439-3756 via Conventional from 120440 -> 116189", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120440, + "TargetID": 116189, + "Directional": true + } + ] + }, + { + "ID": 20942, + "SourceStructureID": 120445, + "TargetStructureID": 3756, + "Label": "120445-3756 via Conventional from 120446 -> 116205", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120446, + "TargetID": 116205, + "Directional": true + } + ] + }, + { + "ID": 20943, + "SourceStructureID": 120445, + "TargetStructureID": 6050, + "Label": "120445-6050 via Conventional from 120447 -> 113894", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120447, + "TargetID": 113894, + "Directional": true + } + ] + }, + { + "ID": 20944, + "SourceStructureID": 120448, + "TargetStructureID": 3756, + "Label": "120448-3756 via Conventional from 120449 -> 116207", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120449, + "TargetID": 116207, + "Directional": true + } + ] + }, + { + "ID": 20945, + "SourceStructureID": 120448, + "TargetStructureID": 6050, + "Label": "120448-6050 via Conventional from 127247 -> 127246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127247, + "TargetID": 127246, + "Directional": true + } + ] + }, + { + "ID": 20946, + "SourceStructureID": 120452, + "TargetStructureID": 3756, + "Label": "120452-3756 via Conventional from 128971 -> 116215", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128971, + "TargetID": 116215, + "Directional": true + } + ] + }, + { + "ID": 20947, + "SourceStructureID": 120452, + "TargetStructureID": 6050, + "Label": "120452-6050 via Conventional from 120453 -> 51665", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120453, + "TargetID": 51665, + "Directional": true + } + ] + }, + { + "ID": 20948, + "SourceStructureID": 120456, + "TargetStructureID": 3756, + "Label": "120456-3756 via Conventional from 120457 -> 116222", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120457, + "TargetID": 116222, + "Directional": true + } + ] + }, + { + "ID": 20949, + "SourceStructureID": 120458, + "TargetStructureID": 3756, + "Label": "120458-3756 via Conventional from 120459 -> 116227", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120459, + "TargetID": 116227, + "Directional": true + } + ] + }, + { + "ID": 20950, + "SourceStructureID": 120458, + "TargetStructureID": 6050, + "Label": "120458-6050 via Conventional from 120460 -> 114310", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120460, + "TargetID": 114310, + "Directional": true + } + ] + }, + { + "ID": 20951, + "SourceStructureID": 120461, + "TargetStructureID": 3756, + "Label": "120461-3756 via Conventional from 120462 -> 116230", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120462, + "TargetID": 116230, + "Directional": true + } + ] + }, + { + "ID": 20952, + "SourceStructureID": 120464, + "TargetStructureID": 3756, + "Label": "120464-3756 via Conventional from 120465 -> 116231", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120465, + "TargetID": 116231, + "Directional": true + } + ] + }, + { + "ID": 20953, + "SourceStructureID": 120466, + "TargetStructureID": 3756, + "Label": "120466-3756 via Conventional from 120467 -> 116232", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120467, + "TargetID": 116232, + "Directional": true + } + ] + }, + { + "ID": 20954, + "SourceStructureID": 120466, + "TargetStructureID": 6050, + "Label": "120466-6050 via Conventional from 127107 -> 127106", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127107, + "TargetID": 127106, + "Directional": true + } + ] + }, + { + "ID": 20955, + "SourceStructureID": 120470, + "TargetStructureID": 3756, + "Label": "120470-3756 via Conventional from 120471 -> 116241", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120471, + "TargetID": 116241, + "Directional": true + } + ] + }, + { + "ID": 20956, + "SourceStructureID": 120472, + "TargetStructureID": 3756, + "Label": "120472-3756 via Conventional from 120473 -> 116250", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120473, + "TargetID": 116250, + "Directional": true + } + ] + }, + { + "ID": 20957, + "SourceStructureID": 120474, + "TargetStructureID": 3756, + "Label": "120474-3756 via Conventional from 120475 -> 116252", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120475, + "TargetID": 116252, + "Directional": true + } + ] + }, + { + "ID": 20958, + "SourceStructureID": 120476, + "TargetStructureID": 3756, + "Label": "120476-3756 via Conventional from 120477 -> 116267", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120477, + "TargetID": 116267, + "Directional": true + } + ] + }, + { + "ID": 20959, + "SourceStructureID": 120478, + "TargetStructureID": 3756, + "Label": "120478-3756 via Conventional from 120479 -> 116268", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120479, + "TargetID": 116268, + "Directional": true + } + ] + }, + { + "ID": 20960, + "SourceStructureID": 120480, + "TargetStructureID": 3756, + "Label": "120480-3756 via Conventional from 120481 -> 116274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120481, + "TargetID": 116274, + "Directional": true + } + ] + }, + { + "ID": 20961, + "SourceStructureID": 120482, + "TargetStructureID": 3756, + "Label": "120482-3756 via Conventional from 120483 -> 116276", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120483, + "TargetID": 116276, + "Directional": true + } + ] + }, + { + "ID": 20962, + "SourceStructureID": 120484, + "TargetStructureID": 3756, + "Label": "120484-3756 via Conventional from 120485 -> 116282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120485, + "TargetID": 116282, + "Directional": true + } + ] + }, + { + "ID": 20963, + "SourceStructureID": 120489, + "TargetStructureID": 3756, + "Label": "120489-3756 via Conventional from 120490 -> 116285", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120490, + "TargetID": 116285, + "Directional": true + } + ] + }, + { + "ID": 20964, + "SourceStructureID": 120489, + "TargetStructureID": 24174, + "Label": "120489-24174 via Conventional from 129115 -> 129116, 129115 -> 129118", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129115, + "TargetID": 129116, + "Directional": true + }, + { + "SourceID": 129115, + "TargetID": 129118, + "Directional": true + } + ] + }, + { + "ID": 20965, + "SourceStructureID": 120489, + "TargetStructureID": 120497, + "Label": "120489-120497 via Conventional from 129121 -> 129122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129121, + "TargetID": 129122, + "Directional": true + } + ] + }, + { + "ID": 20966, + "SourceStructureID": 120494, + "TargetStructureID": 3756, + "Label": "120494-3756 via Conventional from 120496 -> 116288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120496, + "TargetID": 116288, + "Directional": true + } + ] + }, + { + "ID": 20967, + "SourceStructureID": 120494, + "TargetStructureID": 5598, + "Label": "120494-5598 via Conventional from 120495 -> 114607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120495, + "TargetID": 114607, + "Directional": true + } + ] + }, + { + "ID": 20968, + "SourceStructureID": 120497, + "TargetStructureID": 3756, + "Label": "120497-3756 via Conventional from 120498 -> 116291", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120498, + "TargetID": 116291, + "Directional": true + } + ] + }, + { + "ID": 20969, + "SourceStructureID": 120499, + "TargetStructureID": 3756, + "Label": "120499-3756 via Conventional from 120504 -> 116295", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120504, + "TargetID": 116295, + "Directional": true + } + ] + }, + { + "ID": 20970, + "SourceStructureID": 120499, + "TargetStructureID": 120523, + "Label": "120499-120523 via Conventional from 129163 -> 129164", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129163, + "TargetID": 129164, + "Directional": true + } + ] + }, + { + "ID": 20971, + "SourceStructureID": 120507, + "TargetStructureID": 3756, + "Label": "120507-3756 via Conventional from 120508 -> 116301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120508, + "TargetID": 116301, + "Directional": true + } + ] + }, + { + "ID": 20972, + "SourceStructureID": 120509, + "TargetStructureID": 3756, + "Label": "120509-3756 via Conventional from 120512 -> 119334", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120512, + "TargetID": 119334, + "Directional": true + } + ] + }, + { + "ID": 20973, + "SourceStructureID": 120513, + "TargetStructureID": 3756, + "Label": "120513-3756 via Conventional from 120515 -> 119337, 129241 -> 129240", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120515, + "TargetID": 119337, + "Directional": true + }, + { + "SourceID": 129241, + "TargetID": 129240, + "Directional": true + } + ] + }, + { + "ID": 20974, + "SourceStructureID": 120518, + "TargetStructureID": 3756, + "Label": "120518-3756 via Conventional from 120519 -> 119339, 129236 -> 129235", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120519, + "TargetID": 119339, + "Directional": true + }, + { + "SourceID": 129236, + "TargetID": 129235, + "Directional": true + } + ] + }, + { + "ID": 20975, + "SourceStructureID": 120521, + "TargetStructureID": 3756, + "Label": "120521-3756 via Conventional from 120522 -> 120295", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120522, + "TargetID": 120295, + "Directional": true + } + ] + }, + { + "ID": 20976, + "SourceStructureID": 120523, + "TargetStructureID": 3756, + "Label": "120523-3756 via Conventional from 120524 -> 35856", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120524, + "TargetID": 35856, + "Directional": true + } + ] + }, + { + "ID": 20977, + "SourceStructureID": 120534, + "TargetStructureID": 3756, + "Label": "120534-3756 via Conventional from 120535 -> 37804", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120535, + "TargetID": 37804, + "Directional": true + } + ] + }, + { + "ID": 20978, + "SourceStructureID": 120538, + "TargetStructureID": 3756, + "Label": "120538-3756 via Conventional from 120541 -> 54432", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120541, + "TargetID": 54432, + "Directional": true + } + ] + }, + { + "ID": 20979, + "SourceStructureID": 120542, + "TargetStructureID": 3756, + "Label": "120542-3756 via Conventional from 120543 -> 54433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120543, + "TargetID": 54433, + "Directional": true + } + ] + }, + { + "ID": 20980, + "SourceStructureID": 120544, + "TargetStructureID": 3756, + "Label": "120544-3756 via Conventional from 120545 -> 54435", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120545, + "TargetID": 54435, + "Directional": true + } + ] + }, + { + "ID": 20981, + "SourceStructureID": 120546, + "TargetStructureID": 3756, + "Label": "120546-3756 via Conventional from 120547 -> 54436", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120547, + "TargetID": 54436, + "Directional": true + } + ] + }, + { + "ID": 20982, + "SourceStructureID": 120548, + "TargetStructureID": 3756, + "Label": "120548-3756 via Conventional from 120549 -> 54447", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120549, + "TargetID": 54447, + "Directional": true + } + ] + }, + { + "ID": 20983, + "SourceStructureID": 120552, + "TargetStructureID": 3756, + "Label": "120552-3756 via Conventional from 120553 -> 56889", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120553, + "TargetID": 56889, + "Directional": true + } + ] + }, + { + "ID": 20984, + "SourceStructureID": 120552, + "TargetStructureID": 6050, + "Label": "120552-6050 via Conventional from 127434 -> 113930", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127434, + "TargetID": 113930, + "Directional": true + } + ] + }, + { + "ID": 20985, + "SourceStructureID": 120554, + "TargetStructureID": 3756, + "Label": "120554-3756 via Conventional from 120555 -> 56900", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120555, + "TargetID": 56900, + "Directional": true + } + ] + }, + { + "ID": 20986, + "SourceStructureID": 120556, + "TargetStructureID": 3756, + "Label": "120556-3756 via Conventional from 120557 -> 56903, 129372 -> 129371", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120557, + "TargetID": 56903, + "Directional": true + }, + { + "SourceID": 129372, + "TargetID": 129371, + "Directional": true + } + ] + }, + { + "ID": 20987, + "SourceStructureID": 120559, + "TargetStructureID": 3756, + "Label": "120559-3756 via Conventional from 120560 -> 56911", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120560, + "TargetID": 56911, + "Directional": true + } + ] + }, + { + "ID": 20988, + "SourceStructureID": 120561, + "TargetStructureID": 3756, + "Label": "120561-3756 via Conventional from 120562 -> 56916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120562, + "TargetID": 56916, + "Directional": true + } + ] + }, + { + "ID": 20989, + "SourceStructureID": 120563, + "TargetStructureID": 3756, + "Label": "120563-3756 via Conventional from 120564 -> 56917", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120564, + "TargetID": 56917, + "Directional": true + } + ] + }, + { + "ID": 20990, + "SourceStructureID": 120565, + "TargetStructureID": 3756, + "Label": "120565-3756 via Conventional from 120566 -> 98367", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120566, + "TargetID": 98367, + "Directional": true + } + ] + }, + { + "ID": 20991, + "SourceStructureID": 120630, + "TargetStructureID": 5531, + "Label": "120630-5531 via Conventional from 120631 -> 113844", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120631, + "TargetID": 113844, + "Directional": true + } + ] + }, + { + "ID": 20992, + "SourceStructureID": 120632, + "TargetStructureID": 5531, + "Label": "120632-5531 via Conventional from 120633 -> 113852", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120633, + "TargetID": 113852, + "Directional": true + } + ] + }, + { + "ID": 20993, + "SourceStructureID": 120634, + "TargetStructureID": 5531, + "Label": "120634-5531 via Conventional from 120635 -> 113854", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120635, + "TargetID": 113854, + "Directional": true + } + ] + }, + { + "ID": 20994, + "SourceStructureID": 120639, + "TargetStructureID": 5531, + "Label": "120639-5531 via Conventional from 120640 -> 45216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120640, + "TargetID": 45216, + "Directional": true + } + ] + }, + { + "ID": 20995, + "SourceStructureID": 120674, + "TargetStructureID": 5531, + "Label": "120674-5531 via Conventional from 120675 -> 54589", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120675, + "TargetID": 54589, + "Directional": true + } + ] + }, + { + "ID": 20996, + "SourceStructureID": 120777, + "TargetStructureID": 5278, + "Label": "120777-5278 via Conventional from 120778 -> 114167", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120778, + "TargetID": 114167, + "Directional": true + } + ] + }, + { + "ID": 20997, + "SourceStructureID": 120779, + "TargetStructureID": 5278, + "Label": "120779-5278 via Conventional from 120780 -> 114170", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120780, + "TargetID": 114170, + "Directional": true + } + ] + }, + { + "ID": 20998, + "SourceStructureID": 120783, + "TargetStructureID": 5278, + "Label": "120783-5278 via Conventional from 120887 -> 114183, 120927 -> 92305", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120887, + "TargetID": 114183, + "Directional": true + }, + { + "SourceID": 120927, + "TargetID": 92305, + "Directional": true + } + ] + }, + { + "ID": 20999, + "SourceStructureID": 120885, + "TargetStructureID": 5278, + "Label": "120885-5278 via Conventional from 120886 -> 114184", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120886, + "TargetID": 114184, + "Directional": true + } + ] + }, + { + "ID": 21000, + "SourceStructureID": 120888, + "TargetStructureID": 5278, + "Label": "120888-5278 via Conventional from 120889 -> 114192", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120889, + "TargetID": 114192, + "Directional": true + } + ] + }, + { + "ID": 21001, + "SourceStructureID": 120890, + "TargetStructureID": 5278, + "Label": "120890-5278 via Conventional from 120891 -> 114200", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120891, + "TargetID": 114200, + "Directional": true + } + ] + }, + { + "ID": 21002, + "SourceStructureID": 120892, + "TargetStructureID": 5278, + "Label": "120892-5278 via Conventional from 120893 -> 114514", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120893, + "TargetID": 114514, + "Directional": true + } + ] + }, + { + "ID": 21003, + "SourceStructureID": 120894, + "TargetStructureID": 5278, + "Label": "120894-5278 via Conventional from 120895 -> 114515", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120895, + "TargetID": 114515, + "Directional": true + } + ] + }, + { + "ID": 21004, + "SourceStructureID": 120896, + "TargetStructureID": 5278, + "Label": "120896-5278 via Conventional from 120897 -> 114519", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120897, + "TargetID": 114519, + "Directional": true + } + ] + }, + { + "ID": 21005, + "SourceStructureID": 120898, + "TargetStructureID": 5278, + "Label": "120898-5278 via Conventional from 120900 -> 114522", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120900, + "TargetID": 114522, + "Directional": true + } + ] + }, + { + "ID": 21006, + "SourceStructureID": 120901, + "TargetStructureID": 5278, + "Label": "120901-5278 via Conventional from 120902 -> 114523", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120902, + "TargetID": 114523, + "Directional": true + } + ] + }, + { + "ID": 21007, + "SourceStructureID": 120903, + "TargetStructureID": 5278, + "Label": "120903-5278 via Conventional from 120904 -> 114528", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120904, + "TargetID": 114528, + "Directional": true + } + ] + }, + { + "ID": 21008, + "SourceStructureID": 120906, + "TargetStructureID": 5278, + "Label": "120906-5278 via Conventional from 120907 -> 50286, 120908 -> 50286", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120907, + "TargetID": 50286, + "Directional": true + }, + { + "SourceID": 120908, + "TargetID": 50286, + "Directional": true + } + ] + }, + { + "ID": 21009, + "SourceStructureID": 120909, + "TargetStructureID": 5278, + "Label": "120909-5278 via Conventional from 120910 -> 50288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120910, + "TargetID": 50288, + "Directional": true + } + ] + }, + { + "ID": 21010, + "SourceStructureID": 120911, + "TargetStructureID": 5278, + "Label": "120911-5278 via Conventional from 120912 -> 50289, 120912 -> 92397", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120912, + "TargetID": 50289, + "Directional": true + }, + { + "SourceID": 120912, + "TargetID": 92397, + "Directional": true + } + ] + }, + { + "ID": 21011, + "SourceStructureID": 120913, + "TargetStructureID": 5278, + "Label": "120913-5278 via Conventional from 120914 -> 50290", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120914, + "TargetID": 50290, + "Directional": true + } + ] + }, + { + "ID": 21012, + "SourceStructureID": 120915, + "TargetStructureID": 5278, + "Label": "120915-5278 via Conventional from 120916 -> 50291", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120916, + "TargetID": 50291, + "Directional": true + } + ] + }, + { + "ID": 21013, + "SourceStructureID": 120917, + "TargetStructureID": 5278, + "Label": "120917-5278 via Conventional from 120919 -> 53692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120919, + "TargetID": 53692, + "Directional": true + } + ] + }, + { + "ID": 21014, + "SourceStructureID": 120920, + "TargetStructureID": 5278, + "Label": "120920-5278 via Conventional from 120921 -> 92020", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120921, + "TargetID": 92020, + "Directional": true + } + ] + }, + { + "ID": 21015, + "SourceStructureID": 120923, + "TargetStructureID": 5278, + "Label": "120923-5278 via Conventional from 120924 -> 92298", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120924, + "TargetID": 92298, + "Directional": true + } + ] + }, + { + "ID": 21016, + "SourceStructureID": 120925, + "TargetStructureID": 5278, + "Label": "120925-5278 via Conventional from 120926 -> 92299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 120926, + "TargetID": 92299, + "Directional": true + } + ] + }, + { + "ID": 21017, + "SourceStructureID": 121009, + "TargetStructureID": 906, + "Label": "121009-906 via Conventional from 121010 -> 121008", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121010, + "TargetID": 121008, + "Directional": true + } + ] + }, + { + "ID": 21018, + "SourceStructureID": 121082, + "TargetStructureID": 6050, + "Label": "121082-6050 via Conventional from 121084 -> 98388", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121084, + "TargetID": 98388, + "Directional": true + } + ] + }, + { + "ID": 21019, + "SourceStructureID": 121111, + "TargetStructureID": 5297, + "Label": "121111-5297 via Conventional from 121112 -> 103212", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121112, + "TargetID": 103212, + "Directional": true + } + ] + }, + { + "ID": 21020, + "SourceStructureID": 121113, + "TargetStructureID": 5297, + "Label": "121113-5297 via Conventional from 121114 -> 103213", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121114, + "TargetID": 103213, + "Directional": true + } + ] + }, + { + "ID": 21021, + "SourceStructureID": 121117, + "TargetStructureID": 5297, + "Label": "121117-5297 via Conventional from 121118 -> 113611", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121118, + "TargetID": 113611, + "Directional": true + } + ] + }, + { + "ID": 21022, + "SourceStructureID": 121121, + "TargetStructureID": 5297, + "Label": "121121-5297 via Conventional from 121122 -> 116321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121122, + "TargetID": 116321, + "Directional": true + } + ] + }, + { + "ID": 21023, + "SourceStructureID": 121123, + "TargetStructureID": 5297, + "Label": "121123-5297 via Conventional from 121125 -> 116322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121125, + "TargetID": 116322, + "Directional": true + } + ] + }, + { + "ID": 21024, + "SourceStructureID": 121265, + "TargetStructureID": 121265, + "Label": "121265-121265 via Ribbon Synapse from 121267 -> 121268", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121267, + "TargetID": 121268, + "Directional": true + } + ] + }, + { + "ID": 21025, + "SourceStructureID": 121282, + "TargetStructureID": 5284, + "Label": "121282-5284 via Conventional from 121284 -> 113421", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121284, + "TargetID": 113421, + "Directional": true + } + ] + }, + { + "ID": 21026, + "SourceStructureID": 121286, + "TargetStructureID": 5297, + "Label": "121286-5297 via Conventional from 121287 -> 116335", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121287, + "TargetID": 116335, + "Directional": true + } + ] + }, + { + "ID": 21027, + "SourceStructureID": 121288, + "TargetStructureID": 5297, + "Label": "121288-5297 via Conventional from 121289 -> 116344", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121289, + "TargetID": 116344, + "Directional": true + } + ] + }, + { + "ID": 21028, + "SourceStructureID": 121288, + "TargetStructureID": 5405, + "Label": "121288-5405 via Conventional from 121291 -> 11185", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121291, + "TargetID": 11185, + "Directional": true + } + ] + }, + { + "ID": 21029, + "SourceStructureID": 121292, + "TargetStructureID": 5297, + "Label": "121292-5297 via Conventional from 121293 -> 116345", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121293, + "TargetID": 116345, + "Directional": true + } + ] + }, + { + "ID": 21030, + "SourceStructureID": 121294, + "TargetStructureID": 5297, + "Label": "121294-5297 via Conventional from 121295 -> 116349", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121295, + "TargetID": 116349, + "Directional": true + } + ] + }, + { + "ID": 21031, + "SourceStructureID": 121303, + "TargetStructureID": 5297, + "Label": "121303-5297 via Conventional from 121304 -> 116350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121304, + "TargetID": 116350, + "Directional": true + } + ] + }, + { + "ID": 21032, + "SourceStructureID": 121305, + "TargetStructureID": 5283, + "Label": "121305-5283 via Conventional from 123765 -> 22383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123765, + "TargetID": 22383, + "Directional": true + } + ] + }, + { + "ID": 21033, + "SourceStructureID": 121305, + "TargetStructureID": 5297, + "Label": "121305-5297 via Conventional from 121306 -> 116357", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121306, + "TargetID": 116357, + "Directional": true + } + ] + }, + { + "ID": 21034, + "SourceStructureID": 121307, + "TargetStructureID": 5297, + "Label": "121307-5297 via Conventional from 121308 -> 116359", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121308, + "TargetID": 116359, + "Directional": true + } + ] + }, + { + "ID": 21035, + "SourceStructureID": 121309, + "TargetStructureID": 5297, + "Label": "121309-5297 via Conventional from 121310 -> 116419", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121310, + "TargetID": 116419, + "Directional": true + } + ] + }, + { + "ID": 21036, + "SourceStructureID": 121313, + "TargetStructureID": 5297, + "Label": "121313-5297 via Conventional from 121314 -> 116421", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121314, + "TargetID": 116421, + "Directional": true + } + ] + }, + { + "ID": 21037, + "SourceStructureID": 121315, + "TargetStructureID": 5297, + "Label": "121315-5297 via Conventional from 121319 -> 116426", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121319, + "TargetID": 116426, + "Directional": true + } + ] + }, + { + "ID": 21038, + "SourceStructureID": 121321, + "TargetStructureID": 5297, + "Label": "121321-5297 via Conventional from 121322 -> 116428", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121322, + "TargetID": 116428, + "Directional": true + } + ] + }, + { + "ID": 21039, + "SourceStructureID": 121323, + "TargetStructureID": 5297, + "Label": "121323-5297 via Conventional from 121324 -> 116438", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121324, + "TargetID": 116438, + "Directional": true + } + ] + }, + { + "ID": 21040, + "SourceStructureID": 121325, + "TargetStructureID": 5297, + "Label": "121325-5297 via Conventional from 121326 -> 116440", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121326, + "TargetID": 116440, + "Directional": true + } + ] + }, + { + "ID": 21041, + "SourceStructureID": 121331, + "TargetStructureID": 5297, + "Label": "121331-5297 via Conventional from 121332 -> 116442", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121332, + "TargetID": 116442, + "Directional": true + } + ] + }, + { + "ID": 21042, + "SourceStructureID": 121336, + "TargetStructureID": 5297, + "Label": "121336-5297 via Conventional from 121338 -> 116449", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121338, + "TargetID": 116449, + "Directional": true + } + ] + }, + { + "ID": 21043, + "SourceStructureID": 121339, + "TargetStructureID": 5297, + "Label": "121339-5297 via Conventional from 121340 -> 116468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121340, + "TargetID": 116468, + "Directional": true + } + ] + }, + { + "ID": 21044, + "SourceStructureID": 121343, + "TargetStructureID": 5297, + "Label": "121343-5297 via Conventional from 121344 -> 116469", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121344, + "TargetID": 116469, + "Directional": true + } + ] + }, + { + "ID": 21045, + "SourceStructureID": 121345, + "TargetStructureID": 5297, + "Label": "121345-5297 via Conventional from 121346 -> 116471", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121346, + "TargetID": 116471, + "Directional": true + } + ] + }, + { + "ID": 21046, + "SourceStructureID": 121348, + "TargetStructureID": 5297, + "Label": "121348-5297 via Conventional from 121352 -> 116482", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121352, + "TargetID": 116482, + "Directional": true + } + ] + }, + { + "ID": 21047, + "SourceStructureID": 121353, + "TargetStructureID": 5297, + "Label": "121353-5297 via Conventional from 121354 -> 116484", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121354, + "TargetID": 116484, + "Directional": true + } + ] + }, + { + "ID": 21048, + "SourceStructureID": 121356, + "TargetStructureID": 5297, + "Label": "121356-5297 via Conventional from 121357 -> 116500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121357, + "TargetID": 116500, + "Directional": true + } + ] + }, + { + "ID": 21049, + "SourceStructureID": 121362, + "TargetStructureID": 5297, + "Label": "121362-5297 via Conventional from 121364 -> 116516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121364, + "TargetID": 116516, + "Directional": true + } + ] + }, + { + "ID": 21050, + "SourceStructureID": 121362, + "TargetStructureID": 6050, + "Label": "121362-6050 via Conventional from 121363 -> 114244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121363, + "TargetID": 114244, + "Directional": true + } + ] + }, + { + "ID": 21051, + "SourceStructureID": 121365, + "TargetStructureID": 5297, + "Label": "121365-5297 via Conventional from 121366 -> 116596", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121366, + "TargetID": 116596, + "Directional": true + } + ] + }, + { + "ID": 21052, + "SourceStructureID": 121367, + "TargetStructureID": 5297, + "Label": "121367-5297 via Conventional from 121368 -> 116606", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121368, + "TargetID": 116606, + "Directional": true + } + ] + }, + { + "ID": 21053, + "SourceStructureID": 121369, + "TargetStructureID": 142, + "Label": "121369-142 via Conventional from 121370 -> 30719", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121370, + "TargetID": 30719, + "Directional": true + } + ] + }, + { + "ID": 21054, + "SourceStructureID": 121369, + "TargetStructureID": 5297, + "Label": "121369-5297 via Conventional from 121371 -> 116607", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121371, + "TargetID": 116607, + "Directional": true + } + ] + }, + { + "ID": 21055, + "SourceStructureID": 121372, + "TargetStructureID": 5297, + "Label": "121372-5297 via Conventional from 121373 -> 116609", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121373, + "TargetID": 116609, + "Directional": true + } + ] + }, + { + "ID": 21056, + "SourceStructureID": 121375, + "TargetStructureID": 5297, + "Label": "121375-5297 via Conventional from 121377 -> 116611", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121377, + "TargetID": 116611, + "Directional": true + } + ] + }, + { + "ID": 21057, + "SourceStructureID": 121380, + "TargetStructureID": 5297, + "Label": "121380-5297 via Conventional from 121381 -> 116640", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121381, + "TargetID": 116640, + "Directional": true + } + ] + }, + { + "ID": 21058, + "SourceStructureID": 121382, + "TargetStructureID": 5297, + "Label": "121382-5297 via Conventional from 121384 -> 116642", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121384, + "TargetID": 116642, + "Directional": true + } + ] + }, + { + "ID": 21059, + "SourceStructureID": 121387, + "TargetStructureID": 5297, + "Label": "121387-5297 via Conventional from 121390 -> 116655", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121390, + "TargetID": 116655, + "Directional": true + } + ] + }, + { + "ID": 21060, + "SourceStructureID": 121394, + "TargetStructureID": 5297, + "Label": "121394-5297 via Conventional from 121396 -> 116666, 121410 -> 116695", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121396, + "TargetID": 116666, + "Directional": true + }, + { + "SourceID": 121410, + "TargetID": 116695, + "Directional": true + } + ] + }, + { + "ID": 21061, + "SourceStructureID": 121397, + "TargetStructureID": 5297, + "Label": "121397-5297 via Conventional from 121400 -> 116669", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121400, + "TargetID": 116669, + "Directional": true + } + ] + }, + { + "ID": 21062, + "SourceStructureID": 121404, + "TargetStructureID": 5297, + "Label": "121404-5297 via Conventional from 121406 -> 116674", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121406, + "TargetID": 116674, + "Directional": true + } + ] + }, + { + "ID": 21063, + "SourceStructureID": 121407, + "TargetStructureID": 5297, + "Label": "121407-5297 via Conventional from 121408 -> 116694", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121408, + "TargetID": 116694, + "Directional": true + } + ] + }, + { + "ID": 21064, + "SourceStructureID": 121411, + "TargetStructureID": 5297, + "Label": "121411-5297 via Conventional from 121412 -> 37622", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121412, + "TargetID": 37622, + "Directional": true + } + ] + }, + { + "ID": 21065, + "SourceStructureID": 121413, + "TargetStructureID": 5297, + "Label": "121413-5297 via Conventional from 121414 -> 37623", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121414, + "TargetID": 37623, + "Directional": true + } + ] + }, + { + "ID": 21066, + "SourceStructureID": 121415, + "TargetStructureID": 5297, + "Label": "121415-5297 via Conventional from 121418 -> 37666", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121418, + "TargetID": 37666, + "Directional": true + } + ] + }, + { + "ID": 21067, + "SourceStructureID": 121420, + "TargetStructureID": 5297, + "Label": "121420-5297 via Conventional from 121421 -> 39414", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121421, + "TargetID": 39414, + "Directional": true + } + ] + }, + { + "ID": 21068, + "SourceStructureID": 121422, + "TargetStructureID": 5292, + "Label": "121422-5292 via Conventional from 121424 -> 54394", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121424, + "TargetID": 54394, + "Directional": true + } + ] + }, + { + "ID": 21069, + "SourceStructureID": 121422, + "TargetStructureID": 5297, + "Label": "121422-5297 via Conventional from 121423 -> 39418", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121423, + "TargetID": 39418, + "Directional": true + } + ] + }, + { + "ID": 21070, + "SourceStructureID": 121432, + "TargetStructureID": 5297, + "Label": "121432-5297 via Conventional from 121435 -> 39434", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121435, + "TargetID": 39434, + "Directional": true + } + ] + }, + { + "ID": 21071, + "SourceStructureID": 121437, + "TargetStructureID": 5297, + "Label": "121437-5297 via Conventional from 121439 -> 40174", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121439, + "TargetID": 40174, + "Directional": true + } + ] + }, + { + "ID": 21072, + "SourceStructureID": 121444, + "TargetStructureID": 5297, + "Label": "121444-5297 via Conventional from 121446 -> 42720", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121446, + "TargetID": 42720, + "Directional": true + } + ] + }, + { + "ID": 21073, + "SourceStructureID": 121448, + "TargetStructureID": 5297, + "Label": "121448-5297 via Conventional from 121451 -> 42722", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121451, + "TargetID": 42722, + "Directional": true + } + ] + }, + { + "ID": 21074, + "SourceStructureID": 121452, + "TargetStructureID": 5297, + "Label": "121452-5297 via Conventional from 121453 -> 50321", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121453, + "TargetID": 50321, + "Directional": true + } + ] + }, + { + "ID": 21075, + "SourceStructureID": 121454, + "TargetStructureID": 5297, + "Label": "121454-5297 via Conventional from 121456 -> 50322", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121456, + "TargetID": 50322, + "Directional": true + } + ] + }, + { + "ID": 21076, + "SourceStructureID": 121457, + "TargetStructureID": 5297, + "Label": "121457-5297 via Conventional from 121458 -> 50323", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121458, + "TargetID": 50323, + "Directional": true + } + ] + }, + { + "ID": 21077, + "SourceStructureID": 121459, + "TargetStructureID": 5297, + "Label": "121459-5297 via Conventional from 121460 -> 53700", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121460, + "TargetID": 53700, + "Directional": true + } + ] + }, + { + "ID": 21078, + "SourceStructureID": 121461, + "TargetStructureID": 5297, + "Label": "121461-5297 via Conventional from 121462 -> 53701", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121462, + "TargetID": 53701, + "Directional": true + } + ] + }, + { + "ID": 21079, + "SourceStructureID": 121463, + "TargetStructureID": 5297, + "Label": "121463-5297 via Conventional from 121464 -> 56808", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121464, + "TargetID": 56808, + "Directional": true + } + ] + }, + { + "ID": 21080, + "SourceStructureID": 121465, + "TargetStructureID": 5297, + "Label": "121465-5297 via Conventional from 121466 -> 56809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121466, + "TargetID": 56809, + "Directional": true + } + ] + }, + { + "ID": 21081, + "SourceStructureID": 121467, + "TargetStructureID": 5297, + "Label": "121467-5297 via Conventional from 121468 -> 56811", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121468, + "TargetID": 56811, + "Directional": true + } + ] + }, + { + "ID": 21082, + "SourceStructureID": 121470, + "TargetStructureID": 5297, + "Label": "121470-5297 via Conventional from 121471 -> 92303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121471, + "TargetID": 92303, + "Directional": true + } + ] + }, + { + "ID": 21083, + "SourceStructureID": 121472, + "TargetStructureID": 5297, + "Label": "121472-5297 via Conventional from 121476 -> 93239", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121476, + "TargetID": 93239, + "Directional": true + } + ] + }, + { + "ID": 21084, + "SourceStructureID": 121477, + "TargetStructureID": 5297, + "Label": "121477-5297 via Conventional from 121483 -> 93240", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121483, + "TargetID": 93240, + "Directional": true + } + ] + }, + { + "ID": 21085, + "SourceStructureID": 121484, + "TargetStructureID": 5297, + "Label": "121484-5297 via Conventional from 121485 -> 93244", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121485, + "TargetID": 93244, + "Directional": true + } + ] + }, + { + "ID": 21086, + "SourceStructureID": 121486, + "TargetStructureID": 5297, + "Label": "121486-5297 via Conventional from 121487 -> 93245, 121535 -> 98344", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121487, + "TargetID": 93245, + "Directional": true + }, + { + "SourceID": 121535, + "TargetID": 98344, + "Directional": true + } + ] + }, + { + "ID": 21087, + "SourceStructureID": 121488, + "TargetStructureID": 5297, + "Label": "121488-5297 via Conventional from 121489 -> 93254", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121489, + "TargetID": 93254, + "Directional": true + } + ] + }, + { + "ID": 21088, + "SourceStructureID": 121490, + "TargetStructureID": 5297, + "Label": "121490-5297 via Conventional from 121492 -> 98255, 121503 -> 98282", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121492, + "TargetID": 98255, + "Directional": true + }, + { + "SourceID": 121503, + "TargetID": 98282, + "Directional": true + } + ] + }, + { + "ID": 21089, + "SourceStructureID": 121499, + "TargetStructureID": 5297, + "Label": "121499-5297 via Conventional from 121500 -> 98274", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121500, + "TargetID": 98274, + "Directional": true + } + ] + }, + { + "ID": 21090, + "SourceStructureID": 121501, + "TargetStructureID": 5297, + "Label": "121501-5297 via Conventional from 121502 -> 98275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121502, + "TargetID": 98275, + "Directional": true + } + ] + }, + { + "ID": 21091, + "SourceStructureID": 121511, + "TargetStructureID": 5297, + "Label": "121511-5297 via Conventional from 121514 -> 98294, 121515 -> 98294", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121514, + "TargetID": 98294, + "Directional": true + }, + { + "SourceID": 121515, + "TargetID": 98294, + "Directional": true + } + ] + }, + { + "ID": 21092, + "SourceStructureID": 121516, + "TargetStructureID": 5297, + "Label": "121516-5297 via Conventional from 121518 -> 98296", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121518, + "TargetID": 98296, + "Directional": true + } + ] + }, + { + "ID": 21093, + "SourceStructureID": 121519, + "TargetStructureID": 5297, + "Label": "121519-5297 via Conventional from 121521 -> 98299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121521, + "TargetID": 98299, + "Directional": true + } + ] + }, + { + "ID": 21094, + "SourceStructureID": 121522, + "TargetStructureID": 5297, + "Label": "121522-5297 via Conventional from 121523 -> 98301", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121523, + "TargetID": 98301, + "Directional": true + } + ] + }, + { + "ID": 21095, + "SourceStructureID": 121524, + "TargetStructureID": 5297, + "Label": "121524-5297 via Conventional from 121525 -> 98313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121525, + "TargetID": 98313, + "Directional": true + } + ] + }, + { + "ID": 21096, + "SourceStructureID": 121526, + "TargetStructureID": 5297, + "Label": "121526-5297 via Conventional from 121527 -> 98332", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121527, + "TargetID": 98332, + "Directional": true + } + ] + }, + { + "ID": 21097, + "SourceStructureID": 121530, + "TargetStructureID": 5297, + "Label": "121530-5297 via Conventional from 121531 -> 98342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121531, + "TargetID": 98342, + "Directional": true + } + ] + }, + { + "ID": 21098, + "SourceStructureID": 121536, + "TargetStructureID": 5297, + "Label": "121536-5297 via Conventional from 121537 -> 98472", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121537, + "TargetID": 98472, + "Directional": true + } + ] + }, + { + "ID": 21099, + "SourceStructureID": 121663, + "TargetStructureID": 598, + "Label": "121663-598 via Ribbon Synapse from 121665 -> 38790", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 121665, + "TargetID": 38790, + "Directional": true + } + ] + }, + { + "ID": 21100, + "SourceStructureID": 121946, + "TargetStructureID": 121948, + "Label": "121946-121948 via Conventional from 121947 -> 121949", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121947, + "TargetID": 121949, + "Directional": true + } + ] + }, + { + "ID": 21101, + "SourceStructureID": 121952, + "TargetStructureID": 75130, + "Label": "121952-75130 via Conventional from 121953 -> 121951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121953, + "TargetID": 121951, + "Directional": true + } + ] + }, + { + "ID": 21102, + "SourceStructureID": 121955, + "TargetStructureID": 75130, + "Label": "121955-75130 via Conventional from 121956 -> 121954", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121956, + "TargetID": 121954, + "Directional": true + } + ] + }, + { + "ID": 21103, + "SourceStructureID": 121958, + "TargetStructureID": 75130, + "Label": "121958-75130 via Conventional from 121959 -> 121957", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121959, + "TargetID": 121957, + "Directional": true + } + ] + }, + { + "ID": 21104, + "SourceStructureID": 121961, + "TargetStructureID": 75130, + "Label": "121961-75130 via Conventional from 121962 -> 121960", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121962, + "TargetID": 121960, + "Directional": true + } + ] + }, + { + "ID": 21105, + "SourceStructureID": 121967, + "TargetStructureID": 75130, + "Label": "121967-75130 via Conventional from 121968 -> 121966", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121968, + "TargetID": 121966, + "Directional": true + } + ] + }, + { + "ID": 21106, + "SourceStructureID": 121975, + "TargetStructureID": 35164, + "Label": "121975-35164 via Conventional from 121976 -> 45636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 121976, + "TargetID": 45636, + "Directional": true + } + ] + }, + { + "ID": 21107, + "SourceStructureID": 122073, + "TargetStructureID": 13525, + "Label": "122073-13525 via Conventional from 122074 -> 122075", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122074, + "TargetID": 122075, + "Directional": true + } + ] + }, + { + "ID": 21108, + "SourceStructureID": 122081, + "TargetStructureID": 43205, + "Label": "122081-43205 via Ribbon Synapse from 122082 -> 122080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122082, + "TargetID": 122080, + "Directional": true + } + ] + }, + { + "ID": 21109, + "SourceStructureID": 122091, + "TargetStructureID": 42966, + "Label": "122091-42966 via Ribbon Synapse from 122100 -> 122099", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122100, + "TargetID": 122099, + "Directional": true + } + ] + }, + { + "ID": 21110, + "SourceStructureID": 122091, + "TargetStructureID": 42971, + "Label": "122091-42971 via Ribbon Synapse from 122092 -> 122090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122092, + "TargetID": 122090, + "Directional": true + } + ] + }, + { + "ID": 21111, + "SourceStructureID": 122104, + "TargetStructureID": 13159, + "Label": "122104-13159 via Ribbon Synapse from 122105 -> 20788", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122105, + "TargetID": 20788, + "Directional": true + } + ] + }, + { + "ID": 21112, + "SourceStructureID": 122207, + "TargetStructureID": 7134, + "Label": "122207-7134 via Ribbon Synapse from 122208 -> 122209", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122208, + "TargetID": 122209, + "Directional": true + } + ] + }, + { + "ID": 21113, + "SourceStructureID": 122242, + "TargetStructureID": 7134, + "Label": "122242-7134 via Ribbon Synapse from 122243 -> 122241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122243, + "TargetID": 122241, + "Directional": true + } + ] + }, + { + "ID": 21114, + "SourceStructureID": 122459, + "TargetStructureID": 3257, + "Label": "122459-3257 via Conventional from 122462 -> 8238", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122462, + "TargetID": 8238, + "Directional": true + } + ] + }, + { + "ID": 21115, + "SourceStructureID": 122459, + "TargetStructureID": 4570, + "Label": "122459-4570 via Conventional from 122460 -> 10671", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122460, + "TargetID": 10671, + "Directional": true + } + ] + }, + { + "ID": 21116, + "SourceStructureID": 122463, + "TargetStructureID": 906, + "Label": "122463-906 via Ribbon Synapse from 122464 -> 24115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122464, + "TargetID": 24115, + "Directional": true + } + ] + }, + { + "ID": 21117, + "SourceStructureID": 122469, + "TargetStructureID": 4850, + "Label": "122469-4850 via Conventional from 122473 -> 14538", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122473, + "TargetID": 14538, + "Directional": true + } + ] + }, + { + "ID": 21118, + "SourceStructureID": 122488, + "TargetStructureID": 18693, + "Label": "122488-18693 via Ribbon Synapse from 122491 -> 18823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122491, + "TargetID": 18823, + "Directional": true + } + ] + }, + { + "ID": 21119, + "SourceStructureID": 122705, + "TargetStructureID": 179, + "Label": "122705-179 via Conventional from 122706 -> 103809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122706, + "TargetID": 103809, + "Directional": true + } + ] + }, + { + "ID": 21120, + "SourceStructureID": 122707, + "TargetStructureID": 179, + "Label": "122707-179 via Conventional from 122708 -> 103810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122708, + "TargetID": 103810, + "Directional": true + } + ] + }, + { + "ID": 21121, + "SourceStructureID": 122707, + "TargetStructureID": 122711, + "Label": "122707-122711 via Conventional from 122709 -> 122713", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122709, + "TargetID": 122713, + "Directional": true + } + ] + }, + { + "ID": 21122, + "SourceStructureID": 122707, + "TargetStructureID": 122716, + "Label": "122707-122716 via Conventional from 122719 -> 122720", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122719, + "TargetID": 122720, + "Directional": true + } + ] + }, + { + "ID": 21123, + "SourceStructureID": 122711, + "TargetStructureID": 122707, + "Label": "122711-122707 via Ribbon Synapse from 122712 -> 122710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122712, + "TargetID": 122710, + "Directional": true + } + ] + }, + { + "ID": 21124, + "SourceStructureID": 122716, + "TargetStructureID": 122707, + "Label": "122716-122707 via Ribbon Synapse from 122717 -> 122715", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122717, + "TargetID": 122715, + "Directional": true + } + ] + }, + { + "ID": 21125, + "SourceStructureID": 122750, + "TargetStructureID": 8720, + "Label": "122750-8720 via Ribbon Synapse from 63458 -> 63456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 63458, + "TargetID": 63456, + "Directional": true + } + ] + }, + { + "ID": 21126, + "SourceStructureID": 122756, + "TargetStructureID": 5600, + "Label": "122756-5600 via Conventional from 122757 -> 122755", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122757, + "TargetID": 122755, + "Directional": true + } + ] + }, + { + "ID": 21127, + "SourceStructureID": 122760, + "TargetStructureID": 5600, + "Label": "122760-5600 via Conventional from 122766 -> 122767", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122766, + "TargetID": 122767, + "Directional": true + } + ] + }, + { + "ID": 21128, + "SourceStructureID": 122768, + "TargetStructureID": 10412, + "Label": "122768-10412 via Conventional from 122773 -> 122774", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122773, + "TargetID": 122774, + "Directional": true + } + ] + }, + { + "ID": 21129, + "SourceStructureID": 122777, + "TargetStructureID": 122768, + "Label": "122777-122768 via Conventional from 122778 -> 122779", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122778, + "TargetID": 122779, + "Directional": true + } + ] + }, + { + "ID": 21130, + "SourceStructureID": 122801, + "TargetStructureID": 122768, + "Label": "122801-122768 via Conventional from 122802 -> 122800", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122802, + "TargetID": 122800, + "Directional": true + } + ] + }, + { + "ID": 21131, + "SourceStructureID": 122803, + "TargetStructureID": 122801, + "Label": "122803-122801 via Conventional from 122804 -> 122805", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122804, + "TargetID": 122805, + "Directional": true + } + ] + }, + { + "ID": 21132, + "SourceStructureID": 122849, + "TargetStructureID": 5374, + "Label": "122849-5374 via Ribbon Synapse from 130523 -> 130522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130523, + "TargetID": 130522, + "Directional": true + } + ] + }, + { + "ID": 21133, + "SourceStructureID": 122849, + "TargetStructureID": 7147, + "Label": "122849-7147 via Ribbon Synapse from 130523 -> 130521", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130523, + "TargetID": 130521, + "Directional": true + } + ] + }, + { + "ID": 21134, + "SourceStructureID": 122849, + "TargetStructureID": 122829, + "Label": "122849-122829 via Ribbon Synapse from 122850 -> 122845, 122855 -> 122854, 122857 -> 122858", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122850, + "TargetID": 122845, + "Directional": true + }, + { + "SourceID": 122855, + "TargetID": 122854, + "Directional": true + }, + { + "SourceID": 122857, + "TargetID": 122858, + "Directional": true + } + ] + }, + { + "ID": 21135, + "SourceStructureID": 122868, + "TargetStructureID": 122829, + "Label": "122868-122829 via Ribbon Synapse from 132408 -> 132407, 132411 -> 132412, 132413 -> 132414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132408, + "TargetID": 132407, + "Directional": true + }, + { + "SourceID": 132411, + "TargetID": 132412, + "Directional": true + }, + { + "SourceID": 132413, + "TargetID": 132414, + "Directional": true + } + ] + }, + { + "ID": 21136, + "SourceStructureID": 122893, + "TargetStructureID": 7114, + "Label": "122893-7114 via Ribbon Synapse from 122894 -> 122896, 122895 -> 122897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 122894, + "TargetID": 122896, + "Directional": true + }, + { + "SourceID": 122895, + "TargetID": 122897, + "Directional": true + } + ] + }, + { + "ID": 21137, + "SourceStructureID": 122930, + "TargetStructureID": 5394, + "Label": "122930-5394 via Conventional from 122931 -> 77081", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122931, + "TargetID": 77081, + "Directional": true + } + ] + }, + { + "ID": 21138, + "SourceStructureID": 122930, + "TargetStructureID": 6122, + "Label": "122930-6122 via Conventional from 122935 -> 122936", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122935, + "TargetID": 122936, + "Directional": true + } + ] + }, + { + "ID": 21139, + "SourceStructureID": 122930, + "TargetStructureID": 122933, + "Label": "122930-122933 via Conventional from 122932 -> 122934", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 122932, + "TargetID": 122934, + "Directional": true + } + ] + }, + { + "ID": 21140, + "SourceStructureID": 123146, + "TargetStructureID": 519, + "Label": "123146-519 via Conventional from 123147 -> 26764", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123147, + "TargetID": 26764, + "Directional": true + } + ] + }, + { + "ID": 21141, + "SourceStructureID": 123181, + "TargetStructureID": 8749, + "Label": "123181-8749 via Conventional from 123182 -> 8799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123182, + "TargetID": 8799, + "Directional": true + } + ] + }, + { + "ID": 21142, + "SourceStructureID": 123183, + "TargetStructureID": 8749, + "Label": "123183-8749 via Conventional from 123184 -> 8800, 159784 -> 159785", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123184, + "TargetID": 8800, + "Directional": true + }, + { + "SourceID": 159784, + "TargetID": 159785, + "Directional": true + } + ] + }, + { + "ID": 21143, + "SourceStructureID": 123186, + "TargetStructureID": 8749, + "Label": "123186-8749 via Conventional from 123187 -> 8802", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123187, + "TargetID": 8802, + "Directional": true + } + ] + }, + { + "ID": 21144, + "SourceStructureID": 123189, + "TargetStructureID": 514, + "Label": "123189-514 via Conventional from 123190 -> 123191", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123190, + "TargetID": 123191, + "Directional": true + } + ] + }, + { + "ID": 21145, + "SourceStructureID": 123192, + "TargetStructureID": 8749, + "Label": "123192-8749 via Conventional from 123193 -> 8846", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123193, + "TargetID": 8846, + "Directional": true + } + ] + }, + { + "ID": 21146, + "SourceStructureID": 123194, + "TargetStructureID": 8749, + "Label": "123194-8749 via Conventional from 123195 -> 123196", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123195, + "TargetID": 123196, + "Directional": true + } + ] + }, + { + "ID": 21147, + "SourceStructureID": 123197, + "TargetStructureID": 8749, + "Label": "123197-8749 via Conventional from 123198 -> 8859, 159841 -> 8860, 159843 -> 8867, 159847 -> 8871", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123198, + "TargetID": 8859, + "Directional": true + }, + { + "SourceID": 159841, + "TargetID": 8860, + "Directional": true + }, + { + "SourceID": 159843, + "TargetID": 8867, + "Directional": true + }, + { + "SourceID": 159847, + "TargetID": 8871, + "Directional": true + } + ] + }, + { + "ID": 21148, + "SourceStructureID": 123199, + "TargetStructureID": 8749, + "Label": "123199-8749 via Conventional from 123200 -> 8868", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123200, + "TargetID": 8868, + "Directional": true + } + ] + }, + { + "ID": 21149, + "SourceStructureID": 123201, + "TargetStructureID": 8749, + "Label": "123201-8749 via Conventional from 123203 -> 123204, 159832 -> 159831", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123203, + "TargetID": 123204, + "Directional": true + }, + { + "SourceID": 159832, + "TargetID": 159831, + "Directional": true + } + ] + }, + { + "ID": 21150, + "SourceStructureID": 123209, + "TargetStructureID": 8749, + "Label": "123209-8749 via Conventional from 123210 -> 8848", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123210, + "TargetID": 8848, + "Directional": true + } + ] + }, + { + "ID": 21151, + "SourceStructureID": 123212, + "TargetStructureID": 8749, + "Label": "123212-8749 via Conventional from 123213 -> 123214", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123213, + "TargetID": 123214, + "Directional": true + } + ] + }, + { + "ID": 21152, + "SourceStructureID": 123215, + "TargetStructureID": 8749, + "Label": "123215-8749 via Conventional from 123216 -> 8826", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123216, + "TargetID": 8826, + "Directional": true + } + ] + }, + { + "ID": 21153, + "SourceStructureID": 123217, + "TargetStructureID": 8749, + "Label": "123217-8749 via Conventional from 123218 -> 123219", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123218, + "TargetID": 123219, + "Directional": true + } + ] + }, + { + "ID": 21154, + "SourceStructureID": 123217, + "TargetStructureID": 38395, + "Label": "123217-38395 via Adherens from 123221 -> 123220", + "Type": "Adherens", + "Directional": true, + "Links": [ + { + "SourceID": 123221, + "TargetID": 123220, + "Directional": true + } + ] + }, + { + "ID": 21155, + "SourceStructureID": 123222, + "TargetStructureID": 8749, + "Label": "123222-8749 via Conventional from 159792 -> 8833", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159792, + "TargetID": 8833, + "Directional": true + } + ] + }, + { + "ID": 21156, + "SourceStructureID": 123223, + "TargetStructureID": 2610, + "Label": "123223-2610 via Conventional from 123226 -> 2781", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123226, + "TargetID": 2781, + "Directional": true + } + ] + }, + { + "ID": 21157, + "SourceStructureID": 123223, + "TargetStructureID": 8749, + "Label": "123223-8749 via Conventional from 123224 -> 123225", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123224, + "TargetID": 123225, + "Directional": true + } + ] + }, + { + "ID": 21158, + "SourceStructureID": 123227, + "TargetStructureID": 8749, + "Label": "123227-8749 via Conventional from 123229 -> 123230, 159805 -> 17160, 159806 -> 159804, 159807 -> 159803, 159808 -> 159800, 159810 -> 159809", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123229, + "TargetID": 123230, + "Directional": true + }, + { + "SourceID": 159805, + "TargetID": 17160, + "Directional": true + }, + { + "SourceID": 159806, + "TargetID": 159804, + "Directional": true + }, + { + "SourceID": 159807, + "TargetID": 159803, + "Directional": true + }, + { + "SourceID": 159808, + "TargetID": 159800, + "Directional": true + }, + { + "SourceID": 159810, + "TargetID": 159809, + "Directional": true + } + ] + }, + { + "ID": 21159, + "SourceStructureID": 123317, + "TargetStructureID": 171, + "Label": "123317-171 via Conventional from 123318 -> 123319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123318, + "TargetID": 123319, + "Directional": true + } + ] + }, + { + "ID": 21160, + "SourceStructureID": 123573, + "TargetStructureID": 15977, + "Label": "123573-15977 via Conventional from 123574 -> 123575", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123574, + "TargetID": 123575, + "Directional": true + } + ] + }, + { + "ID": 21161, + "SourceStructureID": 123576, + "TargetStructureID": 15977, + "Label": "123576-15977 via Conventional from 123577 -> 123578", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123577, + "TargetID": 123578, + "Directional": true + } + ] + }, + { + "ID": 21162, + "SourceStructureID": 123579, + "TargetStructureID": 15977, + "Label": "123579-15977 via Conventional from 123580 -> 123581", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123580, + "TargetID": 123581, + "Directional": true + } + ] + }, + { + "ID": 21163, + "SourceStructureID": 123582, + "TargetStructureID": 15977, + "Label": "123582-15977 via Conventional from 123583 -> 123584", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123583, + "TargetID": 123584, + "Directional": true + } + ] + }, + { + "ID": 21164, + "SourceStructureID": 123675, + "TargetStructureID": 43716, + "Label": "123675-43716 via Conventional from 123677 -> 123672", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 123677, + "TargetID": 123672, + "Directional": true + } + ] + }, + { + "ID": 21165, + "SourceStructureID": 124069, + "TargetStructureID": 5595, + "Label": "124069-5595 via Conventional from 126915 -> 15287", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126915, + "TargetID": 15287, + "Directional": true + } + ] + }, + { + "ID": 21166, + "SourceStructureID": 124486, + "TargetStructureID": 5598, + "Label": "124486-5598 via Conventional from 124487 -> 115069", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 124487, + "TargetID": 115069, + "Directional": true + } + ] + }, + { + "ID": 21167, + "SourceStructureID": 124547, + "TargetStructureID": 176, + "Label": "124547-176 via Conventional from 124548 -> 5815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 124548, + "TargetID": 5815, + "Directional": true + } + ] + }, + { + "ID": 21168, + "SourceStructureID": 124780, + "TargetStructureID": 16026, + "Label": "124780-16026 via Conventional from 124781 -> 25762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 124781, + "TargetID": 25762, + "Directional": true + } + ] + }, + { + "ID": 21169, + "SourceStructureID": 125157, + "TargetStructureID": 6128, + "Label": "125157-6128 via Conventional from 125269 -> 33739", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125269, + "TargetID": 33739, + "Directional": true + } + ] + }, + { + "ID": 21170, + "SourceStructureID": 125157, + "TargetStructureID": 6132, + "Label": "125157-6132 via Conventional from 125478 -> 88419", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125478, + "TargetID": 88419, + "Directional": true + } + ] + }, + { + "ID": 21171, + "SourceStructureID": 125157, + "TargetStructureID": 7346, + "Label": "125157-7346 via Conventional from 125250 -> 44113, 125268 -> 44052", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125250, + "TargetID": 44113, + "Directional": true + }, + { + "SourceID": 125268, + "TargetID": 44052, + "Directional": true + } + ] + }, + { + "ID": 21172, + "SourceStructureID": 125157, + "TargetStructureID": 13525, + "Label": "125157-13525 via Conventional from 125158 -> 84295", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125158, + "TargetID": 84295, + "Directional": true + } + ] + }, + { + "ID": 21173, + "SourceStructureID": 125157, + "TargetStructureID": 44117, + "Label": "125157-44117 via Conventional from 125249 -> 44120", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125249, + "TargetID": 44120, + "Directional": true + } + ] + }, + { + "ID": 21174, + "SourceStructureID": 125389, + "TargetStructureID": 6047, + "Label": "125389-6047 via Conventional from 125391 -> 125390", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125391, + "TargetID": 125390, + "Directional": true + } + ] + }, + { + "ID": 21175, + "SourceStructureID": 125685, + "TargetStructureID": 1021, + "Label": "125685-1021 via Conventional from 125687 -> 125688", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125687, + "TargetID": 125688, + "Directional": true + } + ] + }, + { + "ID": 21176, + "SourceStructureID": 125767, + "TargetStructureID": 6203, + "Label": "125767-6203 via Conventional from 125769 -> 125770", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 125769, + "TargetID": 125770, + "Directional": true + } + ] + }, + { + "ID": 21177, + "SourceStructureID": 125981, + "TargetStructureID": 166, + "Label": "125981-166 via Conventional from 93091 -> 4450", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 93091, + "TargetID": 4450, + "Directional": true + } + ] + }, + { + "ID": 21178, + "SourceStructureID": 125981, + "TargetStructureID": 606, + "Label": "125981-606 via Conventional from 52174 -> 10051", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 52174, + "TargetID": 10051, + "Directional": true + } + ] + }, + { + "ID": 21179, + "SourceStructureID": 126012, + "TargetStructureID": 142, + "Label": "126012-142 via Conventional from 126014 -> 126011", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126014, + "TargetID": 126011, + "Directional": true + } + ] + }, + { + "ID": 21180, + "SourceStructureID": 126012, + "TargetStructureID": 595, + "Label": "126012-595 via Conventional from 126013 -> 125266", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126013, + "TargetID": 125266, + "Directional": true + } + ] + }, + { + "ID": 21181, + "SourceStructureID": 126047, + "TargetStructureID": 142, + "Label": "126047-142 via Conventional from 126049 -> 31782", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126049, + "TargetID": 31782, + "Directional": true + } + ] + }, + { + "ID": 21182, + "SourceStructureID": 126646, + "TargetStructureID": 56710, + "Label": "126646-56710 via Conventional from 136507 -> 136506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136507, + "TargetID": 136506, + "Directional": true + } + ] + }, + { + "ID": 21183, + "SourceStructureID": 126901, + "TargetStructureID": 5600, + "Label": "126901-5600 via Conventional from 126904 -> 126905, 126906 -> 124235", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 126904, + "TargetID": 126905, + "Directional": true + }, + { + "SourceID": 126906, + "TargetID": 124235, + "Directional": true + } + ] + }, + { + "ID": 21184, + "SourceStructureID": 127070, + "TargetStructureID": 6050, + "Label": "127070-6050 via Conventional from 127071 -> 127072", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127071, + "TargetID": 127072, + "Directional": true + } + ] + }, + { + "ID": 21185, + "SourceStructureID": 127240, + "TargetStructureID": 5601, + "Label": "127240-5601 via Conventional from 127241 -> 127205", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127241, + "TargetID": 127205, + "Directional": true + } + ] + }, + { + "ID": 21186, + "SourceStructureID": 127253, + "TargetStructureID": 6050, + "Label": "127253-6050 via Conventional from 127254 -> 51663", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127254, + "TargetID": 51663, + "Directional": true + } + ] + }, + { + "ID": 21187, + "SourceStructureID": 127256, + "TargetStructureID": 176, + "Label": "127256-176 via Conventional from 127257 -> 5807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127257, + "TargetID": 5807, + "Directional": true + } + ] + }, + { + "ID": 21188, + "SourceStructureID": 127262, + "TargetStructureID": 170, + "Label": "127262-170 via Conventional from 127264 -> 127261", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127264, + "TargetID": 127261, + "Directional": true + } + ] + }, + { + "ID": 21189, + "SourceStructureID": 127277, + "TargetStructureID": 6050, + "Label": "127277-6050 via Conventional from 127278 -> 113580", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127278, + "TargetID": 113580, + "Directional": true + } + ] + }, + { + "ID": 21190, + "SourceStructureID": 127302, + "TargetStructureID": 78409, + "Label": "127302-78409 via Conventional from 127303 -> 106785", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127303, + "TargetID": 106785, + "Directional": true + } + ] + }, + { + "ID": 21191, + "SourceStructureID": 127304, + "TargetStructureID": 6050, + "Label": "127304-6050 via Conventional from 127305 -> 126984", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127305, + "TargetID": 126984, + "Directional": true + } + ] + }, + { + "ID": 21192, + "SourceStructureID": 127306, + "TargetStructureID": 176, + "Label": "127306-176 via Conventional from 127307 -> 5863", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127307, + "TargetID": 5863, + "Directional": true + } + ] + }, + { + "ID": 21193, + "SourceStructureID": 127417, + "TargetStructureID": 6050, + "Label": "127417-6050 via Conventional from 127418 -> 113916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127418, + "TargetID": 113916, + "Directional": true + } + ] + }, + { + "ID": 21194, + "SourceStructureID": 127650, + "TargetStructureID": 6050, + "Label": "127650-6050 via Conventional from 127651 -> 114262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127651, + "TargetID": 114262, + "Directional": true + } + ] + }, + { + "ID": 21195, + "SourceStructureID": 127653, + "TargetStructureID": 6050, + "Label": "127653-6050 via Conventional from 127654 -> 114262", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127654, + "TargetID": 114262, + "Directional": true + } + ] + }, + { + "ID": 21196, + "SourceStructureID": 127719, + "TargetStructureID": 45672, + "Label": "127719-45672 via Ribbon Synapse from 127720 -> 127734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127720, + "TargetID": 127734, + "Directional": true + } + ] + }, + { + "ID": 21197, + "SourceStructureID": 127749, + "TargetStructureID": 45672, + "Label": "127749-45672 via Ribbon Synapse from 127750 -> 127748", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127750, + "TargetID": 127748, + "Directional": true + } + ] + }, + { + "ID": 21198, + "SourceStructureID": 127764, + "TargetStructureID": 3756, + "Label": "127764-3756 via Conventional from 128957 -> 128958", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128957, + "TargetID": 128958, + "Directional": true + } + ] + }, + { + "ID": 21199, + "SourceStructureID": 127764, + "TargetStructureID": 5601, + "Label": "127764-5601 via Conventional from 129274 -> 127157", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129274, + "TargetID": 127157, + "Directional": true + } + ] + }, + { + "ID": 21200, + "SourceStructureID": 127764, + "TargetStructureID": 9376, + "Label": "127764-9376 via Conventional from 127765 -> 62747, 127766 -> 62746", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127765, + "TargetID": 62747, + "Directional": true + }, + { + "SourceID": 127766, + "TargetID": 62746, + "Directional": true + } + ] + }, + { + "ID": 21201, + "SourceStructureID": 127776, + "TargetStructureID": 469, + "Label": "127776-469 via Conventional from 127777 -> 127778", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127777, + "TargetID": 127778, + "Directional": true + } + ] + }, + { + "ID": 21202, + "SourceStructureID": 127781, + "TargetStructureID": 15979, + "Label": "127781-15979 via Conventional from 127782 -> 33790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127782, + "TargetID": 33790, + "Directional": true + } + ] + }, + { + "ID": 21203, + "SourceStructureID": 127783, + "TargetStructureID": 6164, + "Label": "127783-6164 via Conventional from 127784 -> 26862", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127784, + "TargetID": 26862, + "Directional": true + } + ] + }, + { + "ID": 21204, + "SourceStructureID": 127796, + "TargetStructureID": 579, + "Label": "127796-579 via Conventional from 127797 -> 127798, 127811 -> 127812", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127797, + "TargetID": 127798, + "Directional": true + }, + { + "SourceID": 127811, + "TargetID": 127812, + "Directional": true + } + ] + }, + { + "ID": 21205, + "SourceStructureID": 127796, + "TargetStructureID": 46388, + "Label": "127796-46388 via Conventional from 127809 -> 127810", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127809, + "TargetID": 127810, + "Directional": true + } + ] + }, + { + "ID": 21206, + "SourceStructureID": 127813, + "TargetStructureID": 579, + "Label": "127813-579 via Conventional from 127814 -> 127815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127814, + "TargetID": 127815, + "Directional": true + } + ] + }, + { + "ID": 21207, + "SourceStructureID": 127813, + "TargetStructureID": 5623, + "Label": "127813-5623 via Conventional from 127819 -> 127820", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127819, + "TargetID": 127820, + "Directional": true + } + ] + }, + { + "ID": 21208, + "SourceStructureID": 127832, + "TargetStructureID": 2610, + "Label": "127832-2610 via Conventional from 127837 -> 17226", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127837, + "TargetID": 17226, + "Directional": true + } + ] + }, + { + "ID": 21209, + "SourceStructureID": 127832, + "TargetStructureID": 15100, + "Label": "127832-15100 via Conventional from 127833 -> 127834", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127833, + "TargetID": 127834, + "Directional": true + } + ] + }, + { + "ID": 21210, + "SourceStructureID": 127841, + "TargetStructureID": 6997, + "Label": "127841-6997 via Conventional from 127844 -> 22253", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127844, + "TargetID": 22253, + "Directional": true + } + ] + }, + { + "ID": 21211, + "SourceStructureID": 127841, + "TargetStructureID": 15100, + "Label": "127841-15100 via Conventional from 127842 -> 17105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127842, + "TargetID": 17105, + "Directional": true + } + ] + }, + { + "ID": 21212, + "SourceStructureID": 127846, + "TargetStructureID": 485, + "Label": "127846-485 via Conventional from 127871 -> 101870", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127871, + "TargetID": 101870, + "Directional": true + } + ] + }, + { + "ID": 21213, + "SourceStructureID": 127846, + "TargetStructureID": 6589, + "Label": "127846-6589 via Conventional from 127860 -> 9582", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127860, + "TargetID": 9582, + "Directional": true + } + ] + }, + { + "ID": 21214, + "SourceStructureID": 127846, + "TargetStructureID": 8749, + "Label": "127846-8749 via Conventional from 127868 -> 127869", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127868, + "TargetID": 127869, + "Directional": true + } + ] + }, + { + "ID": 21215, + "SourceStructureID": 127846, + "TargetStructureID": 15100, + "Label": "127846-15100 via Conventional from 127847 -> 15105", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127847, + "TargetID": 15105, + "Directional": true + } + ] + }, + { + "ID": 21216, + "SourceStructureID": 127846, + "TargetStructureID": 17183, + "Label": "127846-17183 via Conventional from 127853 -> 127859", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 127853, + "TargetID": 127859, + "Directional": true + } + ] + }, + { + "ID": 21217, + "SourceStructureID": 127946, + "TargetStructureID": 46514, + "Label": "127946-46514 via Ribbon Synapse from 127948 -> 127951, 127949 -> 127950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127948, + "TargetID": 127951, + "Directional": true + }, + { + "SourceID": 127949, + "TargetID": 127950, + "Directional": true + } + ] + }, + { + "ID": 21218, + "SourceStructureID": 127953, + "TargetStructureID": 46517, + "Label": "127953-46517 via Ribbon Synapse from 127954 -> 127952", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127954, + "TargetID": 127952, + "Directional": true + } + ] + }, + { + "ID": 21219, + "SourceStructureID": 127964, + "TargetStructureID": 46379, + "Label": "127964-46379 via Ribbon Synapse from 127965 -> 127963", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 127965, + "TargetID": 127963, + "Directional": true + } + ] + }, + { + "ID": 21220, + "SourceStructureID": 127999, + "TargetStructureID": 179, + "Label": "127999-179 via Conventional from 128000 -> 11676", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128000, + "TargetID": 11676, + "Directional": true + } + ] + }, + { + "ID": 21221, + "SourceStructureID": 128006, + "TargetStructureID": 179, + "Label": "128006-179 via Conventional from 128007 -> 103807", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128007, + "TargetID": 103807, + "Directional": true + } + ] + }, + { + "ID": 21222, + "SourceStructureID": 128015, + "TargetStructureID": 478, + "Label": "128015-478 via Conventional from 128040 -> 19426", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128040, + "TargetID": 19426, + "Directional": true + } + ] + }, + { + "ID": 21223, + "SourceStructureID": 128060, + "TargetStructureID": 179, + "Label": "128060-179 via Conventional from 128061 -> 103815", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128061, + "TargetID": 103815, + "Directional": true + } + ] + }, + { + "ID": 21224, + "SourceStructureID": 128060, + "TargetStructureID": 9787, + "Label": "128060-9787 via Conventional from 128096 -> 18053", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128096, + "TargetID": 18053, + "Directional": true + } + ] + }, + { + "ID": 21225, + "SourceStructureID": 128060, + "TargetStructureID": 128082, + "Label": "128060-128082 via Conventional from 128081 -> 128085", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128081, + "TargetID": 128085, + "Directional": true + } + ] + }, + { + "ID": 21226, + "SourceStructureID": 128097, + "TargetStructureID": 179, + "Label": "128097-179 via Conventional from 128098 -> 128099", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128098, + "TargetID": 128099, + "Directional": true + } + ] + }, + { + "ID": 21227, + "SourceStructureID": 128101, + "TargetStructureID": 173, + "Label": "128101-173 via Conventional from 128103 -> 128104", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128103, + "TargetID": 128104, + "Directional": true + } + ] + }, + { + "ID": 21228, + "SourceStructureID": 128101, + "TargetStructureID": 179, + "Label": "128101-179 via Conventional from 128102 -> 87472", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128102, + "TargetID": 87472, + "Directional": true + } + ] + }, + { + "ID": 21229, + "SourceStructureID": 128107, + "TargetStructureID": 179, + "Label": "128107-179 via Conventional from 128108 -> 87467", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128108, + "TargetID": 87467, + "Directional": true + } + ] + }, + { + "ID": 21230, + "SourceStructureID": 128122, + "TargetStructureID": 179, + "Label": "128122-179 via Conventional from 128124 -> 87466", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128124, + "TargetID": 87466, + "Directional": true + } + ] + }, + { + "ID": 21231, + "SourceStructureID": 128150, + "TargetStructureID": 179, + "Label": "128150-179 via Conventional from 128151 -> 87501", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128151, + "TargetID": 87501, + "Directional": true + } + ] + }, + { + "ID": 21232, + "SourceStructureID": 128152, + "TargetStructureID": 173, + "Label": "128152-173 via Conventional from 128159 -> 12123, 128162 -> 128163", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128159, + "TargetID": 12123, + "Directional": true + }, + { + "SourceID": 128162, + "TargetID": 128163, + "Directional": true + } + ] + }, + { + "ID": 21233, + "SourceStructureID": 128152, + "TargetStructureID": 175, + "Label": "128152-175 via Conventional from 128166 -> 128170", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128166, + "TargetID": 128170, + "Directional": true + } + ] + }, + { + "ID": 21234, + "SourceStructureID": 128152, + "TargetStructureID": 179, + "Label": "128152-179 via Conventional from 128153 -> 87502", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128153, + "TargetID": 87502, + "Directional": true + } + ] + }, + { + "ID": 21235, + "SourceStructureID": 128171, + "TargetStructureID": 591, + "Label": "128171-591 via Conventional from 128172 -> 10216", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128172, + "TargetID": 10216, + "Directional": true + } + ] + }, + { + "ID": 21236, + "SourceStructureID": 128184, + "TargetStructureID": 173, + "Label": "128184-173 via Conventional from 128186 -> 128187", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128186, + "TargetID": 128187, + "Directional": true + } + ] + }, + { + "ID": 21237, + "SourceStructureID": 128184, + "TargetStructureID": 179, + "Label": "128184-179 via Conventional from 128185 -> 87504", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128185, + "TargetID": 87504, + "Directional": true + } + ] + }, + { + "ID": 21238, + "SourceStructureID": 128189, + "TargetStructureID": 179, + "Label": "128189-179 via Conventional from 128190 -> 11679", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128190, + "TargetID": 11679, + "Directional": true + } + ] + }, + { + "ID": 21239, + "SourceStructureID": 128191, + "TargetStructureID": 179, + "Label": "128191-179 via Conventional from 128192 -> 104768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128192, + "TargetID": 104768, + "Directional": true + } + ] + }, + { + "ID": 21240, + "SourceStructureID": 128685, + "TargetStructureID": 176, + "Label": "128685-176 via Conventional from 128687 -> 125453", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128687, + "TargetID": 125453, + "Directional": true + } + ] + }, + { + "ID": 21241, + "SourceStructureID": 128685, + "TargetStructureID": 4877, + "Label": "128685-4877 via Conventional from 128686 -> 33372", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128686, + "TargetID": 33372, + "Directional": true + } + ] + }, + { + "ID": 21242, + "SourceStructureID": 128800, + "TargetStructureID": 3756, + "Label": "128800-3756 via Conventional from 128801 -> 128799", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 128801, + "TargetID": 128799, + "Directional": true + } + ] + }, + { + "ID": 21243, + "SourceStructureID": 129144, + "TargetStructureID": 579, + "Label": "129144-579 via Conventional from 129145 -> 129146, 129147 -> 129149, 129148 -> 129150", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129145, + "TargetID": 129146, + "Directional": true + }, + { + "SourceID": 129147, + "TargetID": 129149, + "Directional": true + }, + { + "SourceID": 129148, + "TargetID": 129150, + "Directional": true + } + ] + }, + { + "ID": 21244, + "SourceStructureID": 129154, + "TargetStructureID": 514, + "Label": "129154-514 via Conventional from 129157 -> 3248", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129157, + "TargetID": 3248, + "Directional": true + } + ] + }, + { + "ID": 21245, + "SourceStructureID": 129154, + "TargetStructureID": 2610, + "Label": "129154-2610 via Conventional from 129156 -> 13803", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129156, + "TargetID": 13803, + "Directional": true + } + ] + }, + { + "ID": 21246, + "SourceStructureID": 129154, + "TargetStructureID": 8749, + "Label": "129154-8749 via Conventional from 159787 -> 8831", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159787, + "TargetID": 8831, + "Directional": true + } + ] + }, + { + "ID": 21247, + "SourceStructureID": 129192, + "TargetStructureID": 30477, + "Label": "129192-30477 via Conventional from 129193 -> 30492", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129193, + "TargetID": 30492, + "Directional": true + } + ] + }, + { + "ID": 21248, + "SourceStructureID": 129199, + "TargetStructureID": 34159, + "Label": "129199-34159 via Conventional from 129200 -> 34161", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129200, + "TargetID": 34161, + "Directional": true + } + ] + }, + { + "ID": 21249, + "SourceStructureID": 129201, + "TargetStructureID": 34159, + "Label": "129201-34159 via Conventional from 129202 -> 34162", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129202, + "TargetID": 34162, + "Directional": true + } + ] + }, + { + "ID": 21250, + "SourceStructureID": 129292, + "TargetStructureID": 13525, + "Label": "129292-13525 via Ribbon Synapse from 130091 -> 129291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130091, + "TargetID": 129291, + "Directional": true + } + ] + }, + { + "ID": 21251, + "SourceStructureID": 129292, + "TargetStructureID": 130237, + "Label": "129292-130237 via Ribbon Synapse from 130093 -> 130397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130093, + "TargetID": 130397, + "Directional": true + } + ] + }, + { + "ID": 21252, + "SourceStructureID": 129466, + "TargetStructureID": 3756, + "Label": "129466-3756 via Conventional from 129467 -> 129464", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129467, + "TargetID": 129464, + "Directional": true + } + ] + }, + { + "ID": 21253, + "SourceStructureID": 129563, + "TargetStructureID": 13525, + "Label": "129563-13525 via Conventional from 130051 -> 129562", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130051, + "TargetID": 129562, + "Directional": true + } + ] + }, + { + "ID": 21254, + "SourceStructureID": 129648, + "TargetStructureID": 181, + "Label": "129648-181 via Conventional from 129650 -> 10319, 129655 -> 10319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129650, + "TargetID": 10319, + "Directional": true + }, + { + "SourceID": 129655, + "TargetID": 10319, + "Directional": true + } + ] + }, + { + "ID": 21255, + "SourceStructureID": 129648, + "TargetStructureID": 968, + "Label": "129648-968 via Conventional from 129657 -> 129658", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129657, + "TargetID": 129658, + "Directional": true + } + ] + }, + { + "ID": 21256, + "SourceStructureID": 129648, + "TargetStructureID": 3865, + "Label": "129648-3865 via Conventional from 129651 -> 36122", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129651, + "TargetID": 36122, + "Directional": true + } + ] + }, + { + "ID": 21257, + "SourceStructureID": 129648, + "TargetStructureID": 129721, + "Label": "129648-129721 via Conventional from 129719 -> 129724, 129729 -> 129726", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129719, + "TargetID": 129724, + "Directional": true + }, + { + "SourceID": 129729, + "TargetID": 129726, + "Directional": true + } + ] + }, + { + "ID": 21258, + "SourceStructureID": 129648, + "TargetStructureID": 129738, + "Label": "129648-129738 via Conventional from 129743 -> 129744", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129743, + "TargetID": 129744, + "Directional": true + } + ] + }, + { + "ID": 21259, + "SourceStructureID": 129648, + "TargetStructureID": 129746, + "Label": "129648-129746 via Conventional from 129751 -> 129752", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129751, + "TargetID": 129752, + "Directional": true + } + ] + }, + { + "ID": 21260, + "SourceStructureID": 129648, + "TargetStructureID": 129755, + "Label": "129648-129755 via Conventional from 129754 -> 129757", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129754, + "TargetID": 129757, + "Directional": true + } + ] + }, + { + "ID": 21261, + "SourceStructureID": 129648, + "TargetStructureID": 129762, + "Label": "129648-129762 via Conventional from 129761 -> 129766", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129761, + "TargetID": 129766, + "Directional": true + } + ] + }, + { + "ID": 21262, + "SourceStructureID": 129660, + "TargetStructureID": 129648, + "Label": "129660-129648 via Conventional from 129661 -> 129659", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129661, + "TargetID": 129659, + "Directional": true + } + ] + }, + { + "ID": 21263, + "SourceStructureID": 129666, + "TargetStructureID": 129648, + "Label": "129666-129648 via Conventional from 129667 -> 129665", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129667, + "TargetID": 129665, + "Directional": true + } + ] + }, + { + "ID": 21264, + "SourceStructureID": 129676, + "TargetStructureID": 40604, + "Label": "129676-40604 via Ribbon Synapse from 129677 -> 129678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129677, + "TargetID": 129678, + "Directional": true + } + ] + }, + { + "ID": 21265, + "SourceStructureID": 129676, + "TargetStructureID": 129648, + "Label": "129676-129648 via Ribbon Synapse from 129679 -> 129675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129679, + "TargetID": 129675, + "Directional": true + } + ] + }, + { + "ID": 21266, + "SourceStructureID": 129696, + "TargetStructureID": 129648, + "Label": "129696-129648 via Ribbon Synapse from 129697 -> 129695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129697, + "TargetID": 129695, + "Directional": true + } + ] + }, + { + "ID": 21267, + "SourceStructureID": 129721, + "TargetStructureID": 16073, + "Label": "129721-16073 via BC Conventional Synapse from 129723 -> 24191", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129723, + "TargetID": 24191, + "Directional": true + } + ] + }, + { + "ID": 21268, + "SourceStructureID": 129721, + "TargetStructureID": 129648, + "Label": "129721-129648 via Ribbon Synapse from 129722 -> 129720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129722, + "TargetID": 129720, + "Directional": true + } + ] + }, + { + "ID": 21269, + "SourceStructureID": 129738, + "TargetStructureID": 129648, + "Label": "129738-129648 via Conventional from 129742 -> 129737", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129742, + "TargetID": 129737, + "Directional": true + } + ] + }, + { + "ID": 21270, + "SourceStructureID": 129740, + "TargetStructureID": 129738, + "Label": "129740-129738 via Conventional from 129741 -> 129739", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129741, + "TargetID": 129739, + "Directional": true + } + ] + }, + { + "ID": 21271, + "SourceStructureID": 129746, + "TargetStructureID": 129648, + "Label": "129746-129648 via Ribbon Synapse from 129747 -> 129745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129747, + "TargetID": 129745, + "Directional": true + } + ] + }, + { + "ID": 21272, + "SourceStructureID": 129755, + "TargetStructureID": 129648, + "Label": "129755-129648 via Conventional from 129756 -> 129753", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129756, + "TargetID": 129753, + "Directional": true + } + ] + }, + { + "ID": 21273, + "SourceStructureID": 129762, + "TargetStructureID": 129755, + "Label": "129762-129755 via Ribbon Synapse from 129764 -> 129759", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129764, + "TargetID": 129759, + "Directional": true + } + ] + }, + { + "ID": 21274, + "SourceStructureID": 129775, + "TargetStructureID": 173, + "Label": "129775-173 via Conventional from 129779 -> 129780", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129779, + "TargetID": 129780, + "Directional": true + } + ] + }, + { + "ID": 21275, + "SourceStructureID": 129775, + "TargetStructureID": 181, + "Label": "129775-181 via Conventional from 129776 -> 20466", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129776, + "TargetID": 20466, + "Directional": true + } + ] + }, + { + "ID": 21276, + "SourceStructureID": 129781, + "TargetStructureID": 175, + "Label": "129781-175 via Conventional from 129782 -> 21887", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129782, + "TargetID": 21887, + "Directional": true + } + ] + }, + { + "ID": 21277, + "SourceStructureID": 129781, + "TargetStructureID": 129788, + "Label": "129781-129788 via Conventional from 129787 -> 129790", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129787, + "TargetID": 129790, + "Directional": true + } + ] + }, + { + "ID": 21278, + "SourceStructureID": 129798, + "TargetStructureID": 138, + "Label": "129798-138 via Conventional from 129846 -> 129845", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129846, + "TargetID": 129845, + "Directional": true + } + ] + }, + { + "ID": 21279, + "SourceStructureID": 129798, + "TargetStructureID": 5585, + "Label": "129798-5585 via Conventional from 129810 -> 129811", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129810, + "TargetID": 129811, + "Directional": true + } + ] + }, + { + "ID": 21280, + "SourceStructureID": 129798, + "TargetStructureID": 129800, + "Label": "129798-129800 via Conventional from 129799 -> 129801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129799, + "TargetID": 129801, + "Directional": true + } + ] + }, + { + "ID": 21281, + "SourceStructureID": 129798, + "TargetStructureID": 129827, + "Label": "129798-129827 via Conventional from 129825 -> 129829", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129825, + "TargetID": 129829, + "Directional": true + } + ] + }, + { + "ID": 21282, + "SourceStructureID": 129800, + "TargetStructureID": 129798, + "Label": "129800-129798 via Ribbon Synapse from 129802 -> 129803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129802, + "TargetID": 129803, + "Directional": true + } + ] + }, + { + "ID": 21283, + "SourceStructureID": 129840, + "TargetStructureID": 129798, + "Label": "129840-129798 via Ribbon Synapse from 129842 -> 129843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 129842, + "TargetID": 129843, + "Directional": true + } + ] + }, + { + "ID": 21284, + "SourceStructureID": 129851, + "TargetStructureID": 129927, + "Label": "129851-129927 via Conventional from 129852 -> 129853", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129852, + "TargetID": 129853, + "Directional": true + } + ] + }, + { + "ID": 21285, + "SourceStructureID": 129877, + "TargetStructureID": 129875, + "Label": "129877-129875 via Conventional from 129878 -> 129876", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129878, + "TargetID": 129876, + "Directional": true + } + ] + }, + { + "ID": 21286, + "SourceStructureID": 129924, + "TargetStructureID": 5499, + "Label": "129924-5499 via Conventional from 129925 -> 97184", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129925, + "TargetID": 97184, + "Directional": true + } + ] + }, + { + "ID": 21287, + "SourceStructureID": 129927, + "TargetStructureID": 138, + "Label": "129927-138 via Conventional from 129934 -> 11468", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129934, + "TargetID": 11468, + "Directional": true + } + ] + }, + { + "ID": 21288, + "SourceStructureID": 129927, + "TargetStructureID": 173, + "Label": "129927-173 via Conventional from 129936 -> 12142", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129936, + "TargetID": 12142, + "Directional": true + } + ] + }, + { + "ID": 21289, + "SourceStructureID": 129927, + "TargetStructureID": 5499, + "Label": "129927-5499 via Conventional from 129928 -> 97180, 129941 -> 129942, 129943 -> 106898", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129928, + "TargetID": 97180, + "Directional": true + }, + { + "SourceID": 129941, + "TargetID": 129942, + "Directional": true + }, + { + "SourceID": 129943, + "TargetID": 106898, + "Directional": true + } + ] + }, + { + "ID": 21290, + "SourceStructureID": 129952, + "TargetStructureID": 13525, + "Label": "129952-13525 via Conventional from 130052 -> 129951", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130052, + "TargetID": 129951, + "Directional": true + } + ] + }, + { + "ID": 21291, + "SourceStructureID": 129954, + "TargetStructureID": 13525, + "Label": "129954-13525 via Ribbon Synapse from 130155 -> 133803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130155, + "TargetID": 133803, + "Directional": true + } + ] + }, + { + "ID": 21292, + "SourceStructureID": 129956, + "TargetStructureID": 5421, + "Label": "129956-5421 via Conventional from 130145 -> 130942", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130145, + "TargetID": 130942, + "Directional": true + } + ] + }, + { + "ID": 21293, + "SourceStructureID": 129956, + "TargetStructureID": 13525, + "Label": "129956-13525 via Conventional from 130056 -> 129955", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130056, + "TargetID": 129955, + "Directional": true + } + ] + }, + { + "ID": 21294, + "SourceStructureID": 129961, + "TargetStructureID": 13525, + "Label": "129961-13525 via Conventional from 130058 -> 129960", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130058, + "TargetID": 129960, + "Directional": true + } + ] + }, + { + "ID": 21295, + "SourceStructureID": 129967, + "TargetStructureID": 13525, + "Label": "129967-13525 via Conventional from 129968 -> 129966", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129968, + "TargetID": 129966, + "Directional": true + } + ] + }, + { + "ID": 21296, + "SourceStructureID": 129995, + "TargetStructureID": 129994, + "Label": "129995-129994 via Conventional from 129996 -> 129997", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 129996, + "TargetID": 129997, + "Directional": true + } + ] + }, + { + "ID": 21297, + "SourceStructureID": 130006, + "TargetStructureID": 13525, + "Label": "130006-13525 via Conventional from 130147 -> 130005", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130147, + "TargetID": 130005, + "Directional": true + } + ] + }, + { + "ID": 21298, + "SourceStructureID": 130006, + "TargetStructureID": 130371, + "Label": "130006-130371 via Conventional from 130148 -> 130374", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130148, + "TargetID": 130374, + "Directional": true + } + ] + }, + { + "ID": 21299, + "SourceStructureID": 130038, + "TargetStructureID": 130039, + "Label": "130038-130039 via Conventional from 130040 -> 130041", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130040, + "TargetID": 130041, + "Directional": true + } + ] + }, + { + "ID": 21300, + "SourceStructureID": 130125, + "TargetStructureID": 179, + "Label": "130125-179 via Conventional from 6369 -> 105202", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 6369, + "TargetID": 105202, + "Directional": true + } + ] + }, + { + "ID": 21301, + "SourceStructureID": 130150, + "TargetStructureID": 13525, + "Label": "130150-13525 via Conventional from 130151 -> 129288", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130151, + "TargetID": 129288, + "Directional": true + } + ] + }, + { + "ID": 21302, + "SourceStructureID": 130152, + "TargetStructureID": 13525, + "Label": "130152-13525 via Conventional from 130153 -> 129026", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130153, + "TargetID": 129026, + "Directional": true + } + ] + }, + { + "ID": 21303, + "SourceStructureID": 130200, + "TargetStructureID": 166, + "Label": "130200-166 via Conventional from 130201 -> 4552", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130201, + "TargetID": 4552, + "Directional": true + } + ] + }, + { + "ID": 21304, + "SourceStructureID": 130200, + "TargetStructureID": 56822, + "Label": "130200-56822 via Conventional from 130202 -> 56824", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130202, + "TargetID": 56824, + "Directional": true + } + ] + }, + { + "ID": 21305, + "SourceStructureID": 130203, + "TargetStructureID": 5117, + "Label": "130203-5117 via Conventional from 130204 -> 28796", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130204, + "TargetID": 28796, + "Directional": true + } + ] + }, + { + "ID": 21306, + "SourceStructureID": 130205, + "TargetStructureID": 273, + "Label": "130205-273 via Conventional from 130207 -> 130206", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130207, + "TargetID": 130206, + "Directional": true + } + ] + }, + { + "ID": 21307, + "SourceStructureID": 130208, + "TargetStructureID": 5551, + "Label": "130208-5551 via Conventional from 130209 -> 130210", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130209, + "TargetID": 130210, + "Directional": true + } + ] + }, + { + "ID": 21308, + "SourceStructureID": 130228, + "TargetStructureID": 5282, + "Label": "130228-5282 via Conventional from 130229 -> 87560", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130229, + "TargetID": 87560, + "Directional": true + } + ] + }, + { + "ID": 21309, + "SourceStructureID": 130237, + "TargetStructureID": 7577, + "Label": "130237-7577 via Conventional from 130309 -> 130692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130309, + "TargetID": 130692, + "Directional": true + } + ] + }, + { + "ID": 21310, + "SourceStructureID": 130237, + "TargetStructureID": 13525, + "Label": "130237-13525 via Conventional from 130308 -> 130236", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130308, + "TargetID": 130236, + "Directional": true + } + ] + }, + { + "ID": 21311, + "SourceStructureID": 130239, + "TargetStructureID": 7568, + "Label": "130239-7568 via Conventional from 130359 -> 41761, 130360 -> 41762", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130359, + "TargetID": 41761, + "Directional": true + }, + { + "SourceID": 130360, + "TargetID": 41762, + "Directional": true + } + ] + }, + { + "ID": 21312, + "SourceStructureID": 130239, + "TargetStructureID": 13525, + "Label": "130239-13525 via Conventional from 130311 -> 129545", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130311, + "TargetID": 129545, + "Directional": true + } + ] + }, + { + "ID": 21313, + "SourceStructureID": 130255, + "TargetStructureID": 13525, + "Label": "130255-13525 via Conventional from 130314 -> 129559", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130314, + "TargetID": 129559, + "Directional": true + } + ] + }, + { + "ID": 21314, + "SourceStructureID": 130256, + "TargetStructureID": 13525, + "Label": "130256-13525 via Ribbon Synapse from 130655 -> 129560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130655, + "TargetID": 129560, + "Directional": true + } + ] + }, + { + "ID": 21315, + "SourceStructureID": 130389, + "TargetStructureID": 11092, + "Label": "130389-11092 via Conventional from 130392 -> 130393", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 130392, + "TargetID": 130393, + "Directional": true + } + ] + }, + { + "ID": 21316, + "SourceStructureID": 130472, + "TargetStructureID": 130256, + "Label": "130472-130256 via Ribbon Synapse from 130485 -> 130331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130485, + "TargetID": 130331, + "Directional": true + } + ] + }, + { + "ID": 21317, + "SourceStructureID": 130644, + "TargetStructureID": 22554, + "Label": "130644-22554 via Ribbon Synapse from 130645 -> 130646", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 130645, + "TargetID": 130646, + "Directional": true + } + ] + }, + { + "ID": 21318, + "SourceStructureID": 130941, + "TargetStructureID": 35188, + "Label": "130941-35188 via Conventional from 131048 -> 35190", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131048, + "TargetID": 35190, + "Directional": true + } + ] + }, + { + "ID": 21319, + "SourceStructureID": 131244, + "TargetStructureID": 9787, + "Label": "131244-9787 via Conventional from 131252 -> 18133", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131252, + "TargetID": 18133, + "Directional": true + } + ] + }, + { + "ID": 21320, + "SourceStructureID": 131246, + "TargetStructureID": 36130, + "Label": "131246-36130 via Conventional from 131254 -> 36146", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131254, + "TargetID": 36146, + "Directional": true + } + ] + }, + { + "ID": 21321, + "SourceStructureID": 131284, + "TargetStructureID": 131286, + "Label": "131284-131286 via Conventional from 131285 -> 131289", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131285, + "TargetID": 131289, + "Directional": true + } + ] + }, + { + "ID": 21322, + "SourceStructureID": 131364, + "TargetStructureID": 608, + "Label": "131364-608 via Conventional from 131365 -> 131363", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131365, + "TargetID": 131363, + "Directional": true + } + ] + }, + { + "ID": 21323, + "SourceStructureID": 131496, + "TargetStructureID": 7568, + "Label": "131496-7568 via Ribbon Synapse from 131500 -> 27079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131500, + "TargetID": 27079, + "Directional": true + } + ] + }, + { + "ID": 21324, + "SourceStructureID": 131516, + "TargetStructureID": 5285, + "Label": "131516-5285 via Ribbon Synapse from 131528 -> 5302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131528, + "TargetID": 5302, + "Directional": true + } + ] + }, + { + "ID": 21325, + "SourceStructureID": 131516, + "TargetStructureID": 9787, + "Label": "131516-9787 via Ribbon Synapse from 131518 -> 18035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131518, + "TargetID": 18035, + "Directional": true + } + ] + }, + { + "ID": 21326, + "SourceStructureID": 131516, + "TargetStructureID": 10574, + "Label": "131516-10574 via Ribbon Synapse from 131528 -> 84555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131528, + "TargetID": 84555, + "Directional": true + } + ] + }, + { + "ID": 21327, + "SourceStructureID": 131568, + "TargetStructureID": 41778, + "Label": "131568-41778 via Ribbon Synapse from 131588 -> 41779", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 131588, + "TargetID": 41779, + "Directional": true + } + ] + }, + { + "ID": 21328, + "SourceStructureID": 131642, + "TargetStructureID": 5283, + "Label": "131642-5283 via Conventional from 131647 -> 131646", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131647, + "TargetID": 131646, + "Directional": true + } + ] + }, + { + "ID": 21329, + "SourceStructureID": 131642, + "TargetStructureID": 67361, + "Label": "131642-67361 via Conventional from 131644 -> 131645", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 131644, + "TargetID": 131645, + "Directional": true + } + ] + }, + { + "ID": 21330, + "SourceStructureID": 132158, + "TargetStructureID": 5283, + "Label": "132158-5283 via Conventional from 132161 -> 132160", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132161, + "TargetID": 132160, + "Directional": true + } + ] + }, + { + "ID": 21331, + "SourceStructureID": 132202, + "TargetStructureID": 165, + "Label": "132202-165 via Conventional from 132203 -> 12538", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 132203, + "TargetID": 12538, + "Directional": true + } + ] + }, + { + "ID": 21332, + "SourceStructureID": 132220, + "TargetStructureID": 3865, + "Label": "132220-3865 via Ribbon Synapse from 132221 -> 132222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 132221, + "TargetID": 132222, + "Directional": true + } + ] + }, + { + "ID": 21333, + "SourceStructureID": 133264, + "TargetStructureID": 6156, + "Label": "133264-6156 via Conventional from 133266 -> 23185", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133266, + "TargetID": 23185, + "Directional": true + } + ] + }, + { + "ID": 21334, + "SourceStructureID": 133304, + "TargetStructureID": 6156, + "Label": "133304-6156 via Conventional from 133305 -> 133303", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133305, + "TargetID": 133303, + "Directional": true + } + ] + }, + { + "ID": 21335, + "SourceStructureID": 133755, + "TargetStructureID": 133757, + "Label": "133755-133757 via Conventional from 133756 -> 133758", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133756, + "TargetID": 133758, + "Directional": true + } + ] + }, + { + "ID": 21336, + "SourceStructureID": 133779, + "TargetStructureID": 13525, + "Label": "133779-13525 via Conventional from 133781 -> 129031", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133781, + "TargetID": 129031, + "Directional": true + } + ] + }, + { + "ID": 21337, + "SourceStructureID": 133782, + "TargetStructureID": 13525, + "Label": "133782-13525 via Conventional from 133783 -> 129043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133783, + "TargetID": 129043, + "Directional": true + } + ] + }, + { + "ID": 21338, + "SourceStructureID": 133784, + "TargetStructureID": 13525, + "Label": "133784-13525 via Conventional from 133785 -> 129130", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133785, + "TargetID": 129130, + "Directional": true + } + ] + }, + { + "ID": 21339, + "SourceStructureID": 133786, + "TargetStructureID": 13525, + "Label": "133786-13525 via Conventional from 133787 -> 130233", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133787, + "TargetID": 130233, + "Directional": true + } + ] + }, + { + "ID": 21340, + "SourceStructureID": 133804, + "TargetStructureID": 13525, + "Label": "133804-13525 via Conventional from 133805 -> 129027", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 133805, + "TargetID": 129027, + "Directional": true + } + ] + }, + { + "ID": 21341, + "SourceStructureID": 134553, + "TargetStructureID": 7129, + "Label": "134553-7129 via Conventional from 3695 -> 54019, 3758 -> 54029", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 3695, + "TargetID": 54019, + "Directional": true + }, + { + "SourceID": 3758, + "TargetID": 54029, + "Directional": true + } + ] + }, + { + "ID": 21342, + "SourceStructureID": 134553, + "TargetStructureID": 16026, + "Label": "134553-16026 via Conventional from 3697 -> 22328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 3697, + "TargetID": 22328, + "Directional": true + } + ] + }, + { + "ID": 21343, + "SourceStructureID": 135183, + "TargetStructureID": 70987, + "Label": "135183-70987 via Conventional from 135184 -> 71022", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135184, + "TargetID": 71022, + "Directional": true + } + ] + }, + { + "ID": 21344, + "SourceStructureID": 135186, + "TargetStructureID": 135183, + "Label": "135186-135183 via Conventional from 135187 -> 135185", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135187, + "TargetID": 135185, + "Directional": true + } + ] + }, + { + "ID": 21345, + "SourceStructureID": 135196, + "TargetStructureID": 334, + "Label": "135196-334 via Conventional from 135197 -> 135198", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135197, + "TargetID": 135198, + "Directional": true + } + ] + }, + { + "ID": 21346, + "SourceStructureID": 135208, + "TargetStructureID": 5117, + "Label": "135208-5117 via Conventional from 135209 -> 135206", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135209, + "TargetID": 135206, + "Directional": true + } + ] + }, + { + "ID": 21347, + "SourceStructureID": 135213, + "TargetStructureID": 5117, + "Label": "135213-5117 via Ribbon Synapse from 135217 -> 135218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135217, + "TargetID": 135218, + "Directional": true + } + ] + }, + { + "ID": 21348, + "SourceStructureID": 135225, + "TargetStructureID": 135862, + "Label": "135225-135862 via Conventional from 135864 -> 135863", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135864, + "TargetID": 135863, + "Directional": true + } + ] + }, + { + "ID": 21349, + "SourceStructureID": 135225, + "TargetStructureID": 135884, + "Label": "135225-135884 via Conventional from 135883 -> 135885", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135883, + "TargetID": 135885, + "Directional": true + } + ] + }, + { + "ID": 21350, + "SourceStructureID": 135225, + "TargetStructureID": 135909, + "Label": "135225-135909 via Conventional from 135234 -> 135910", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135234, + "TargetID": 135910, + "Directional": true + } + ] + }, + { + "ID": 21351, + "SourceStructureID": 135225, + "TargetStructureID": 135924, + "Label": "135225-135924 via Conventional from 135235 -> 135925", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135235, + "TargetID": 135925, + "Directional": true + } + ] + }, + { + "ID": 21352, + "SourceStructureID": 135225, + "TargetStructureID": 135982, + "Label": "135225-135982 via Conventional from 135828 -> 135983", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135828, + "TargetID": 135983, + "Directional": true + } + ] + }, + { + "ID": 21353, + "SourceStructureID": 135225, + "TargetStructureID": 136005, + "Label": "135225-136005 via Conventional from 136004 -> 136006", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136004, + "TargetID": 136006, + "Directional": true + } + ] + }, + { + "ID": 21354, + "SourceStructureID": 135225, + "TargetStructureID": 136042, + "Label": "135225-136042 via Conventional from 135252 -> 136043", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135252, + "TargetID": 136043, + "Directional": true + } + ] + }, + { + "ID": 21355, + "SourceStructureID": 135225, + "TargetStructureID": 136046, + "Label": "135225-136046 via Conventional from 135251 -> 136048", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135251, + "TargetID": 136048, + "Directional": true + } + ] + }, + { + "ID": 21356, + "SourceStructureID": 135229, + "TargetStructureID": 135225, + "Label": "135229-135225 via Conventional from 135230 -> 135228", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135230, + "TargetID": 135228, + "Directional": true + } + ] + }, + { + "ID": 21357, + "SourceStructureID": 135258, + "TargetStructureID": 135225, + "Label": "135258-135225 via Conventional from 135259 -> 135257", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135259, + "TargetID": 135257, + "Directional": true + } + ] + }, + { + "ID": 21358, + "SourceStructureID": 135281, + "TargetStructureID": 135225, + "Label": "135281-135225 via Conventional from 135283 -> 135279", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135283, + "TargetID": 135279, + "Directional": true + } + ] + }, + { + "ID": 21359, + "SourceStructureID": 135563, + "TargetStructureID": 5530, + "Label": "135563-5530 via Conventional from 135565 -> 135564", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135565, + "TargetID": 135564, + "Directional": true + } + ] + }, + { + "ID": 21360, + "SourceStructureID": 135877, + "TargetStructureID": 135225, + "Label": "135877-135225 via Ribbon Synapse from 135881 -> 135882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135881, + "TargetID": 135882, + "Directional": true + } + ] + }, + { + "ID": 21361, + "SourceStructureID": 135877, + "TargetStructureID": 135876, + "Label": "135877-135876 via Ribbon Synapse from 135879 -> 135880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 135879, + "TargetID": 135880, + "Directional": true + } + ] + }, + { + "ID": 21362, + "SourceStructureID": 135941, + "TargetStructureID": 135225, + "Label": "135941-135225 via Conventional from 135945 -> 135946", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135945, + "TargetID": 135946, + "Directional": true + } + ] + }, + { + "ID": 21363, + "SourceStructureID": 135994, + "TargetStructureID": 135225, + "Label": "135994-135225 via Conventional from 135996 -> 135997", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 135996, + "TargetID": 135997, + "Directional": true + } + ] + }, + { + "ID": 21364, + "SourceStructureID": 136026, + "TargetStructureID": 135225, + "Label": "136026-135225 via Conventional from 136027 -> 135246", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136027, + "TargetID": 135246, + "Directional": true + } + ] + }, + { + "ID": 21365, + "SourceStructureID": 136033, + "TargetStructureID": 135225, + "Label": "136033-135225 via Ribbon Synapse from 136034 -> 136035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136034, + "TargetID": 136035, + "Directional": true + } + ] + }, + { + "ID": 21366, + "SourceStructureID": 136037, + "TargetStructureID": 135225, + "Label": "136037-135225 via Conventional from 136038 -> 135249", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136038, + "TargetID": 135249, + "Directional": true + } + ] + }, + { + "ID": 21367, + "SourceStructureID": 136075, + "TargetStructureID": 135225, + "Label": "136075-135225 via Conventional from 136076 -> 135277", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136076, + "TargetID": 135277, + "Directional": true + } + ] + }, + { + "ID": 21368, + "SourceStructureID": 136127, + "TargetStructureID": 11238, + "Label": "136127-11238 via Ribbon Synapse from 136129 -> 136124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136129, + "TargetID": 136124, + "Directional": true + } + ] + }, + { + "ID": 21369, + "SourceStructureID": 136140, + "TargetStructureID": 11238, + "Label": "136140-11238 via Ribbon Synapse from 136141 -> 136139", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136141, + "TargetID": 136139, + "Directional": true + } + ] + }, + { + "ID": 21370, + "SourceStructureID": 136256, + "TargetStructureID": 7361, + "Label": "136256-7361 via Conventional from 136257 -> 136255, 136259 -> 136258", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136257, + "TargetID": 136255, + "Directional": true + }, + { + "SourceID": 136259, + "TargetID": 136258, + "Directional": true + } + ] + }, + { + "ID": 21371, + "SourceStructureID": 136291, + "TargetStructureID": 11238, + "Label": "136291-11238 via Ribbon Synapse from 136292 -> 136293", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136292, + "TargetID": 136293, + "Directional": true + } + ] + }, + { + "ID": 21372, + "SourceStructureID": 136362, + "TargetStructureID": 28950, + "Label": "136362-28950 via Conventional from 136363 -> 136360", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136363, + "TargetID": 136360, + "Directional": true + } + ] + }, + { + "ID": 21373, + "SourceStructureID": 136381, + "TargetStructureID": 5582, + "Label": "136381-5582 via Conventional from 136382 -> 136380", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136382, + "TargetID": 136380, + "Directional": true + } + ] + }, + { + "ID": 21374, + "SourceStructureID": 136513, + "TargetStructureID": 136432, + "Label": "136513-136432 via Ribbon Synapse from 136514 -> 136512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136514, + "TargetID": 136512, + "Directional": true + } + ] + }, + { + "ID": 21375, + "SourceStructureID": 136529, + "TargetStructureID": 136432, + "Label": "136529-136432 via Ribbon Synapse from 136530 -> 136528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136530, + "TargetID": 136528, + "Directional": true + } + ] + }, + { + "ID": 21376, + "SourceStructureID": 136674, + "TargetStructureID": 525, + "Label": "136674-525 via Conventional from 136675 -> 6236", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136675, + "TargetID": 6236, + "Directional": true + } + ] + }, + { + "ID": 21377, + "SourceStructureID": 136674, + "TargetStructureID": 6997, + "Label": "136674-6997 via Unknown from 136676 -> 136562", + "Type": "Unknown", + "Directional": true, + "Links": [ + { + "SourceID": 136676, + "TargetID": 136562, + "Directional": true + } + ] + }, + { + "ID": 21378, + "SourceStructureID": 136796, + "TargetStructureID": 5515, + "Label": "136796-5515 via Conventional from 136811 -> 119383", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136811, + "TargetID": 119383, + "Directional": true + } + ] + }, + { + "ID": 21379, + "SourceStructureID": 136843, + "TargetStructureID": 138, + "Label": "136843-138 via Conventional from 136844 -> 136842", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136844, + "TargetID": 136842, + "Directional": true + } + ] + }, + { + "ID": 21380, + "SourceStructureID": 136884, + "TargetStructureID": 8575, + "Label": "136884-8575 via Ribbon Synapse from 136885 -> 62261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136885, + "TargetID": 62261, + "Directional": true + } + ] + }, + { + "ID": 21381, + "SourceStructureID": 136913, + "TargetStructureID": 10963, + "Label": "136913-10963 via Conventional from 136915 -> 136911", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136915, + "TargetID": 136911, + "Directional": true + } + ] + }, + { + "ID": 21382, + "SourceStructureID": 136917, + "TargetStructureID": 10963, + "Label": "136917-10963 via Conventional from 136918 -> 136916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136918, + "TargetID": 136916, + "Directional": true + } + ] + }, + { + "ID": 21383, + "SourceStructureID": 136927, + "TargetStructureID": 136931, + "Label": "136927-136931 via Ribbon Synapse from 136929 -> 136935", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136929, + "TargetID": 136935, + "Directional": true + } + ] + }, + { + "ID": 21384, + "SourceStructureID": 136936, + "TargetStructureID": 136931, + "Label": "136936-136931 via Ribbon Synapse from 136937 -> 136938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136937, + "TargetID": 136938, + "Directional": true + } + ] + }, + { + "ID": 21385, + "SourceStructureID": 136947, + "TargetStructureID": 46741, + "Label": "136947-46741 via Ribbon Synapse from 136948 -> 136946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136948, + "TargetID": 136946, + "Directional": true + } + ] + }, + { + "ID": 21386, + "SourceStructureID": 136952, + "TargetStructureID": 46741, + "Label": "136952-46741 via Ribbon Synapse from 136953 -> 136951, 136960 -> 136961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 136953, + "TargetID": 136951, + "Directional": true + }, + { + "SourceID": 136960, + "TargetID": 136961, + "Directional": true + } + ] + }, + { + "ID": 21387, + "SourceStructureID": 136956, + "TargetStructureID": 165, + "Label": "136956-165 via Conventional from 136957 -> 21667", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136957, + "TargetID": 21667, + "Directional": true + } + ] + }, + { + "ID": 21388, + "SourceStructureID": 136970, + "TargetStructureID": 165, + "Label": "136970-165 via Conventional from 136971 -> 21665", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136971, + "TargetID": 21665, + "Directional": true + } + ] + }, + { + "ID": 21389, + "SourceStructureID": 136970, + "TargetStructureID": 5543, + "Label": "136970-5543 via Conventional from 136991 -> 17079", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136991, + "TargetID": 17079, + "Directional": true + } + ] + }, + { + "ID": 21390, + "SourceStructureID": 136970, + "TargetStructureID": 11092, + "Label": "136970-11092 via Conventional from 136992 -> 128637", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136992, + "TargetID": 128637, + "Directional": true + } + ] + }, + { + "ID": 21391, + "SourceStructureID": 136970, + "TargetStructureID": 46741, + "Label": "136970-46741 via Conventional from 136972 -> 136959", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136972, + "TargetID": 136959, + "Directional": true + } + ] + }, + { + "ID": 21392, + "SourceStructureID": 136970, + "TargetStructureID": 98127, + "Label": "136970-98127 via Conventional from 136975 -> 98916", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136975, + "TargetID": 98916, + "Directional": true + } + ] + }, + { + "ID": 21393, + "SourceStructureID": 136970, + "TargetStructureID": 158774, + "Label": "136970-158774 via Conventional from 136973 -> 158775", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 136973, + "TargetID": 158775, + "Directional": true + } + ] + }, + { + "ID": 21394, + "SourceStructureID": 137002, + "TargetStructureID": 46741, + "Label": "137002-46741 via Ribbon Synapse from 137003 -> 137001", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137003, + "TargetID": 137001, + "Directional": true + } + ] + }, + { + "ID": 21395, + "SourceStructureID": 137007, + "TargetStructureID": 28950, + "Label": "137007-28950 via Conventional from 137008 -> 29042", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137008, + "TargetID": 29042, + "Directional": true + } + ] + }, + { + "ID": 21396, + "SourceStructureID": 137009, + "TargetStructureID": 6128, + "Label": "137009-6128 via Conventional from 137011 -> 33749", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137011, + "TargetID": 33749, + "Directional": true + } + ] + }, + { + "ID": 21397, + "SourceStructureID": 137009, + "TargetStructureID": 28950, + "Label": "137009-28950 via Conventional from 137010 -> 29040", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137010, + "TargetID": 29040, + "Directional": true + } + ] + }, + { + "ID": 21398, + "SourceStructureID": 137012, + "TargetStructureID": 11092, + "Label": "137012-11092 via Conventional from 137014 -> 128646", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137014, + "TargetID": 128646, + "Directional": true + } + ] + }, + { + "ID": 21399, + "SourceStructureID": 137040, + "TargetStructureID": 137024, + "Label": "137040-137024 via Ribbon Synapse from 137041 -> 137039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137041, + "TargetID": 137039, + "Directional": true + } + ] + }, + { + "ID": 21400, + "SourceStructureID": 137070, + "TargetStructureID": 7861, + "Label": "137070-7861 via Ribbon Synapse from 137082 -> 137083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137082, + "TargetID": 137083, + "Directional": true + } + ] + }, + { + "ID": 21401, + "SourceStructureID": 137070, + "TargetStructureID": 137084, + "Label": "137070-137084 via Ribbon Synapse from 137086 -> 137087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137086, + "TargetID": 137087, + "Directional": true + } + ] + }, + { + "ID": 21402, + "SourceStructureID": 137084, + "TargetStructureID": 137070, + "Label": "137084-137070 via Conventional from 137085 -> 137081", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137085, + "TargetID": 137081, + "Directional": true + } + ] + }, + { + "ID": 21403, + "SourceStructureID": 137099, + "TargetStructureID": 46741, + "Label": "137099-46741 via Conventional from 137100 -> 137097", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137100, + "TargetID": 137097, + "Directional": true + } + ] + }, + { + "ID": 21404, + "SourceStructureID": 137113, + "TargetStructureID": 341, + "Label": "137113-341 via Conventional from 137114 -> 30055", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137114, + "TargetID": 30055, + "Directional": true + } + ] + }, + { + "ID": 21405, + "SourceStructureID": 137147, + "TargetStructureID": 137122, + "Label": "137147-137122 via Conventional from 137148 -> 137149", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137148, + "TargetID": 137149, + "Directional": true + } + ] + }, + { + "ID": 21406, + "SourceStructureID": 137155, + "TargetStructureID": 137122, + "Label": "137155-137122 via Ribbon Synapse from 137156 -> 137153", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137156, + "TargetID": 137153, + "Directional": true + } + ] + }, + { + "ID": 21407, + "SourceStructureID": 137159, + "TargetStructureID": 968, + "Label": "137159-968 via Conventional from 31350 -> 12181", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 31350, + "TargetID": 12181, + "Directional": true + } + ] + }, + { + "ID": 21408, + "SourceStructureID": 137159, + "TargetStructureID": 137122, + "Label": "137159-137122 via Conventional from 137160 -> 137158", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137160, + "TargetID": 137158, + "Directional": true + } + ] + }, + { + "ID": 21409, + "SourceStructureID": 137159, + "TargetStructureID": 147217, + "Label": "137159-147217 via Conventional from 147216 -> 147218", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147216, + "TargetID": 147218, + "Directional": true + } + ] + }, + { + "ID": 21410, + "SourceStructureID": 137162, + "TargetStructureID": 137159, + "Label": "137162-137159 via Ribbon Synapse from 137163 -> 137161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137163, + "TargetID": 137161, + "Directional": true + } + ] + }, + { + "ID": 21411, + "SourceStructureID": 137168, + "TargetStructureID": 137122, + "Label": "137168-137122 via Ribbon Synapse from 137169 -> 137167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137169, + "TargetID": 137167, + "Directional": true + } + ] + }, + { + "ID": 21412, + "SourceStructureID": 137189, + "TargetStructureID": 38810, + "Label": "137189-38810 via BC Conventional Synapse from 137195 -> 137188", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137195, + "TargetID": 137188, + "Directional": true + } + ] + }, + { + "ID": 21413, + "SourceStructureID": 137189, + "TargetStructureID": 137192, + "Label": "137189-137192 via Ribbon Synapse from 137191 -> 137193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 137191, + "TargetID": 137193, + "Directional": true + } + ] + }, + { + "ID": 21414, + "SourceStructureID": 137192, + "TargetStructureID": 137189, + "Label": "137192-137189 via Conventional from 137194 -> 137190", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 137194, + "TargetID": 137190, + "Directional": true + } + ] + }, + { + "ID": 21415, + "SourceStructureID": 147203, + "TargetStructureID": 38810, + "Label": "147203-38810 via Conventional from 147204 -> 137186", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147204, + "TargetID": 137186, + "Directional": true + } + ] + }, + { + "ID": 21416, + "SourceStructureID": 147213, + "TargetStructureID": 115, + "Label": "147213-115 via Ribbon Synapse from 147215 -> 42778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147215, + "TargetID": 42778, + "Directional": true + } + ] + }, + { + "ID": 21417, + "SourceStructureID": 147213, + "TargetStructureID": 137159, + "Label": "147213-137159 via Ribbon Synapse from 147214 -> 147212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147214, + "TargetID": 147212, + "Directional": true + } + ] + }, + { + "ID": 21418, + "SourceStructureID": 147220, + "TargetStructureID": 8575, + "Label": "147220-8575 via BC Conventional Synapse from 147223 -> 147219", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147223, + "TargetID": 147219, + "Directional": true + } + ] + }, + { + "ID": 21419, + "SourceStructureID": 147696, + "TargetStructureID": 168, + "Label": "147696-168 via Conventional from 147736 -> 147737, 147738 -> 4224", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147736, + "TargetID": 147737, + "Directional": true + }, + { + "SourceID": 147738, + "TargetID": 4224, + "Directional": true + } + ] + }, + { + "ID": 21420, + "SourceStructureID": 147696, + "TargetStructureID": 170, + "Label": "147696-170 via Conventional from 88972 -> 88973, 147743 -> 1333", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 88972, + "TargetID": 88973, + "Directional": true + }, + { + "SourceID": 147743, + "TargetID": 1333, + "Directional": true + } + ] + }, + { + "ID": 21421, + "SourceStructureID": 147696, + "TargetStructureID": 176, + "Label": "147696-176 via Conventional from 147707 -> 125825, 147710 -> 5887, 147715 -> 5882, 147732 -> 20030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147707, + "TargetID": 125825, + "Directional": true + }, + { + "SourceID": 147710, + "TargetID": 5887, + "Directional": true + }, + { + "SourceID": 147715, + "TargetID": 5882, + "Directional": true + }, + { + "SourceID": 147732, + "TargetID": 20030, + "Directional": true + } + ] + }, + { + "ID": 21422, + "SourceStructureID": 147696, + "TargetStructureID": 464, + "Label": "147696-464 via Conventional from 147754 -> 8068", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147754, + "TargetID": 8068, + "Directional": true + } + ] + }, + { + "ID": 21423, + "SourceStructureID": 147696, + "TargetStructureID": 595, + "Label": "147696-595 via Conventional from 147741 -> 46636", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147741, + "TargetID": 46636, + "Directional": true + } + ] + }, + { + "ID": 21424, + "SourceStructureID": 147696, + "TargetStructureID": 5530, + "Label": "147696-5530 via Conventional from 147728 -> 42147", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147728, + "TargetID": 42147, + "Directional": true + } + ] + }, + { + "ID": 21425, + "SourceStructureID": 147696, + "TargetStructureID": 5601, + "Label": "147696-5601 via Conventional from 147700 -> 127429", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147700, + "TargetID": 127429, + "Directional": true + } + ] + }, + { + "ID": 21426, + "SourceStructureID": 147696, + "TargetStructureID": 8580, + "Label": "147696-8580 via Conventional from 147705 -> 147706", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147705, + "TargetID": 147706, + "Directional": true + } + ] + }, + { + "ID": 21427, + "SourceStructureID": 147696, + "TargetStructureID": 43716, + "Label": "147696-43716 via Conventional from 147697 -> 147695", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147697, + "TargetID": 147695, + "Directional": true + } + ] + }, + { + "ID": 21428, + "SourceStructureID": 147696, + "TargetStructureID": 81014, + "Label": "147696-81014 via Conventional from 147726 -> 147727", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147726, + "TargetID": 147727, + "Directional": true + } + ] + }, + { + "ID": 21429, + "SourceStructureID": 147696, + "TargetStructureID": 88954, + "Label": "147696-88954 via Conventional from 147744 -> 147745", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147744, + "TargetID": 147745, + "Directional": true + } + ] + }, + { + "ID": 21430, + "SourceStructureID": 147696, + "TargetStructureID": 127764, + "Label": "147696-127764 via Conventional from 147711 -> 129275", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147711, + "TargetID": 129275, + "Directional": true + } + ] + }, + { + "ID": 21431, + "SourceStructureID": 147696, + "TargetStructureID": 147713, + "Label": "147696-147713 via Conventional from 147712 -> 147716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147712, + "TargetID": 147716, + "Directional": true + } + ] + }, + { + "ID": 21432, + "SourceStructureID": 147696, + "TargetStructureID": 147750, + "Label": "147696-147750 via Conventional from 147749 -> 147752", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147749, + "TargetID": 147752, + "Directional": true + } + ] + }, + { + "ID": 21433, + "SourceStructureID": 147698, + "TargetStructureID": 5601, + "Label": "147698-5601 via Conventional from 147699 -> 23970", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147699, + "TargetID": 23970, + "Directional": true + } + ] + }, + { + "ID": 21434, + "SourceStructureID": 147718, + "TargetStructureID": 147696, + "Label": "147718-147696 via Conventional from 147719 -> 147717", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147719, + "TargetID": 147717, + "Directional": true + } + ] + }, + { + "ID": 21435, + "SourceStructureID": 147734, + "TargetStructureID": 147696, + "Label": "147734-147696 via Conventional from 147735 -> 147733", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147735, + "TargetID": 147733, + "Directional": true + } + ] + }, + { + "ID": 21436, + "SourceStructureID": 147750, + "TargetStructureID": 41905, + "Label": "147750-41905 via Conventional from 147751 -> 41907", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147751, + "TargetID": 41907, + "Directional": true + } + ] + }, + { + "ID": 21437, + "SourceStructureID": 147765, + "TargetStructureID": 15796, + "Label": "147765-15796 via Conventional from 147766 -> 147764", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147766, + "TargetID": 147764, + "Directional": true + } + ] + }, + { + "ID": 21438, + "SourceStructureID": 147769, + "TargetStructureID": 15796, + "Label": "147769-15796 via Conventional from 147770 -> 147768", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147770, + "TargetID": 147768, + "Directional": true + } + ] + }, + { + "ID": 21439, + "SourceStructureID": 147776, + "TargetStructureID": 15796, + "Label": "147776-15796 via Conventional from 147777 -> 147775", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147777, + "TargetID": 147775, + "Directional": true + } + ] + }, + { + "ID": 21440, + "SourceStructureID": 147781, + "TargetStructureID": 15796, + "Label": "147781-15796 via Conventional from 147782 -> 147780", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147782, + "TargetID": 147780, + "Directional": true + } + ] + }, + { + "ID": 21441, + "SourceStructureID": 147781, + "TargetStructureID": 120347, + "Label": "147781-120347 via Conventional from 147783 -> 147784", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147783, + "TargetID": 147784, + "Directional": true + } + ] + }, + { + "ID": 21442, + "SourceStructureID": 147788, + "TargetStructureID": 15796, + "Label": "147788-15796 via Conventional from 147789 -> 147787", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147789, + "TargetID": 147787, + "Directional": true + } + ] + }, + { + "ID": 21443, + "SourceStructureID": 147793, + "TargetStructureID": 5107, + "Label": "147793-5107 via Conventional from 147794 -> 5143", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147794, + "TargetID": 5143, + "Directional": true + } + ] + }, + { + "ID": 21444, + "SourceStructureID": 147796, + "TargetStructureID": 5107, + "Label": "147796-5107 via Ribbon Synapse from 147797 -> 147795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147797, + "TargetID": 147795, + "Directional": true + } + ] + }, + { + "ID": 21445, + "SourceStructureID": 147805, + "TargetStructureID": 5107, + "Label": "147805-5107 via Conventional from 147806 -> 64968", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 147806, + "TargetID": 64968, + "Directional": true + } + ] + }, + { + "ID": 21446, + "SourceStructureID": 147809, + "TargetStructureID": 476, + "Label": "147809-476 via Ribbon Synapse from 147811 -> 147812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147811, + "TargetID": 147812, + "Directional": true + } + ] + }, + { + "ID": 21447, + "SourceStructureID": 147809, + "TargetStructureID": 5107, + "Label": "147809-5107 via Ribbon Synapse from 147810 -> 147808", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147810, + "TargetID": 147808, + "Directional": true + } + ] + }, + { + "ID": 21448, + "SourceStructureID": 147809, + "TargetStructureID": 5421, + "Label": "147809-5421 via Ribbon Synapse from 147810 -> 130890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 147810, + "TargetID": 130890, + "Directional": true + } + ] + }, + { + "ID": 21449, + "SourceStructureID": 148302, + "TargetStructureID": 6123, + "Label": "148302-6123 via Conventional from 148305 -> 148299", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148305, + "TargetID": 148299, + "Directional": true + } + ] + }, + { + "ID": 21450, + "SourceStructureID": 148314, + "TargetStructureID": 5107, + "Label": "148314-5107 via Conventional from 148315 -> 148313", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148315, + "TargetID": 148313, + "Directional": true + } + ] + }, + { + "ID": 21451, + "SourceStructureID": 148317, + "TargetStructureID": 5107, + "Label": "148317-5107 via Conventional from 148318 -> 148319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148318, + "TargetID": 148319, + "Directional": true + } + ] + }, + { + "ID": 21452, + "SourceStructureID": 148330, + "TargetStructureID": 5107, + "Label": "148330-5107 via Conventional from 148331 -> 148329", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148331, + "TargetID": 148329, + "Directional": true + } + ] + }, + { + "ID": 21453, + "SourceStructureID": 148332, + "TargetStructureID": 5107, + "Label": "148332-5107 via Conventional from 148333 -> 148328", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148333, + "TargetID": 148328, + "Directional": true + } + ] + }, + { + "ID": 21454, + "SourceStructureID": 148335, + "TargetStructureID": 5107, + "Label": "148335-5107 via Conventional from 148336 -> 148334", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148336, + "TargetID": 148334, + "Directional": true + } + ] + }, + { + "ID": 21455, + "SourceStructureID": 148337, + "TargetStructureID": 5107, + "Label": "148337-5107 via Conventional from 148338 -> 148339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148338, + "TargetID": 148339, + "Directional": true + } + ] + }, + { + "ID": 21456, + "SourceStructureID": 148343, + "TargetStructureID": 148335, + "Label": "148343-148335 via Conventional from 148344 -> 148342", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148344, + "TargetID": 148342, + "Directional": true + } + ] + }, + { + "ID": 21457, + "SourceStructureID": 148346, + "TargetStructureID": 5107, + "Label": "148346-5107 via Conventional from 148347 -> 148345", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148347, + "TargetID": 148345, + "Directional": true + } + ] + }, + { + "ID": 21458, + "SourceStructureID": 148351, + "TargetStructureID": 5107, + "Label": "148351-5107 via Conventional from 148352 -> 148350", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148352, + "TargetID": 148350, + "Directional": true + } + ] + }, + { + "ID": 21459, + "SourceStructureID": 148354, + "TargetStructureID": 5107, + "Label": "148354-5107 via Conventional from 148355 -> 148356", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148355, + "TargetID": 148356, + "Directional": true + } + ] + }, + { + "ID": 21460, + "SourceStructureID": 148358, + "TargetStructureID": 5107, + "Label": "148358-5107 via Conventional from 148359 -> 148357", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148359, + "TargetID": 148357, + "Directional": true + } + ] + }, + { + "ID": 21461, + "SourceStructureID": 148361, + "TargetStructureID": 5107, + "Label": "148361-5107 via Conventional from 148362 -> 148360", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148362, + "TargetID": 148360, + "Directional": true + } + ] + }, + { + "ID": 21462, + "SourceStructureID": 148364, + "TargetStructureID": 5107, + "Label": "148364-5107 via Conventional from 148365 -> 148363", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148365, + "TargetID": 148363, + "Directional": true + } + ] + }, + { + "ID": 21463, + "SourceStructureID": 148367, + "TargetStructureID": 5107, + "Label": "148367-5107 via Conventional from 148368 -> 148366", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148368, + "TargetID": 148366, + "Directional": true + } + ] + }, + { + "ID": 21464, + "SourceStructureID": 148371, + "TargetStructureID": 5107, + "Label": "148371-5107 via Conventional from 148372 -> 148370", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148372, + "TargetID": 148370, + "Directional": true + } + ] + }, + { + "ID": 21465, + "SourceStructureID": 148374, + "TargetStructureID": 148371, + "Label": "148374-148371 via Conventional from 148375 -> 148373", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148375, + "TargetID": 148373, + "Directional": true + } + ] + }, + { + "ID": 21466, + "SourceStructureID": 148377, + "TargetStructureID": 148374, + "Label": "148377-148374 via Ribbon Synapse from 148378 -> 148376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148378, + "TargetID": 148376, + "Directional": true + } + ] + }, + { + "ID": 21467, + "SourceStructureID": 148381, + "TargetStructureID": 148374, + "Label": "148381-148374 via Conventional from 148382 -> 148380", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148382, + "TargetID": 148380, + "Directional": true + } + ] + }, + { + "ID": 21468, + "SourceStructureID": 148384, + "TargetStructureID": 148374, + "Label": "148384-148374 via Ribbon Synapse from 148385 -> 148383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148385, + "TargetID": 148383, + "Directional": true + } + ] + }, + { + "ID": 21469, + "SourceStructureID": 148389, + "TargetStructureID": 85629, + "Label": "148389-85629 via Ribbon Synapse from 148390 -> 85840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148390, + "TargetID": 85840, + "Directional": true + } + ] + }, + { + "ID": 21470, + "SourceStructureID": 148397, + "TargetStructureID": 148374, + "Label": "148397-148374 via Ribbon Synapse from 148398 -> 148399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 148398, + "TargetID": 148399, + "Directional": true + } + ] + }, + { + "ID": 21471, + "SourceStructureID": 148402, + "TargetStructureID": 148374, + "Label": "148402-148374 via Conventional from 148403 -> 148401", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 148403, + "TargetID": 148401, + "Directional": true + } + ] + }, + { + "ID": 21472, + "SourceStructureID": 158498, + "TargetStructureID": 13525, + "Label": "158498-13525 via Conventional from 158499 -> 158500", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 158499, + "TargetID": 158500, + "Directional": true + } + ] + }, + { + "ID": 21473, + "SourceStructureID": 158503, + "TargetStructureID": 158472, + "Label": "158503-158472 via Conventional from 158504 -> 158502", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 158504, + "TargetID": 158502, + "Directional": true + } + ] + }, + { + "ID": 21474, + "SourceStructureID": 158507, + "TargetStructureID": 158472, + "Label": "158507-158472 via Conventional from 158508 -> 158506", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 158508, + "TargetID": 158506, + "Directional": true + } + ] + }, + { + "ID": 21475, + "SourceStructureID": 158518, + "TargetStructureID": 13525, + "Label": "158518-13525 via Ribbon Synapse from 158519 -> 158501, 158533 -> 158534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 158519, + "TargetID": 158501, + "Directional": true + }, + { + "SourceID": 158533, + "TargetID": 158534, + "Directional": true + } + ] + }, + { + "ID": 21476, + "SourceStructureID": 158846, + "TargetStructureID": 7157, + "Label": "158846-7157 via Ribbon Synapse from 158849 -> 8211, 158851 -> 8209, 158852 -> 8208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 158849, + "TargetID": 8211, + "Directional": true + }, + { + "SourceID": 158851, + "TargetID": 8209, + "Directional": true + }, + { + "SourceID": 158852, + "TargetID": 8208, + "Directional": true + } + ] + }, + { + "ID": 21477, + "SourceStructureID": 158878, + "TargetStructureID": 30015, + "Label": "158878-30015 via Ribbon Synapse from 158882 -> 30030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 158882, + "TargetID": 30030, + "Directional": true + } + ] + }, + { + "ID": 21478, + "SourceStructureID": 158899, + "TargetStructureID": 5435, + "Label": "158899-5435 via Ribbon Synapse from 158903 -> 41816, 158964 -> 41818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 158903, + "TargetID": 41816, + "Directional": true + }, + { + "SourceID": 158964, + "TargetID": 41818, + "Directional": true + } + ] + }, + { + "ID": 21479, + "SourceStructureID": 159028, + "TargetStructureID": 61270, + "Label": "159028-61270 via Ribbon Synapse from 159029 -> 68864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159029, + "TargetID": 68864, + "Directional": true + } + ] + }, + { + "ID": 21480, + "SourceStructureID": 159045, + "TargetStructureID": 115, + "Label": "159045-115 via Ribbon Synapse from 159071 -> 8113, 159074 -> 8111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159071, + "TargetID": 8113, + "Directional": true + }, + { + "SourceID": 159074, + "TargetID": 8111, + "Directional": true + } + ] + }, + { + "ID": 21481, + "SourceStructureID": 159118, + "TargetStructureID": 158477, + "Label": "159118-158477 via Conventional from 159119 -> 158478", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159119, + "TargetID": 158478, + "Directional": true + } + ] + }, + { + "ID": 21482, + "SourceStructureID": 159123, + "TargetStructureID": 158477, + "Label": "159123-158477 via Conventional from 159124 -> 158509", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159124, + "TargetID": 158509, + "Directional": true + } + ] + }, + { + "ID": 21483, + "SourceStructureID": 159125, + "TargetStructureID": 158473, + "Label": "159125-158473 via Ribbon Synapse from 159126 -> 158511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159126, + "TargetID": 158511, + "Directional": true + } + ] + }, + { + "ID": 21484, + "SourceStructureID": 159146, + "TargetStructureID": 158515, + "Label": "159146-158515 via Conventional from 159147 -> 158516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159147, + "TargetID": 158516, + "Directional": true + } + ] + }, + { + "ID": 21485, + "SourceStructureID": 159150, + "TargetStructureID": 13525, + "Label": "159150-13525 via Ribbon Synapse from 159151 -> 158474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [ + { + "SourceID": 159151, + "TargetID": 158474, + "Directional": true + } + ] + }, + { + "ID": 21486, + "SourceStructureID": 159467, + "TargetStructureID": 9787, + "Label": "159467-9787 via Conventional from 159468 -> 18046", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159468, + "TargetID": 18046, + "Directional": true + } + ] + }, + { + "ID": 21487, + "SourceStructureID": 159497, + "TargetStructureID": 10931, + "Label": "159497-10931 via Conventional from 159498 -> 159319", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159498, + "TargetID": 159319, + "Directional": true + } + ] + }, + { + "ID": 21488, + "SourceStructureID": 159506, + "TargetStructureID": 5283, + "Label": "159506-5283 via Conventional from 159509 -> 28079, 159510 -> 124039", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159509, + "TargetID": 28079, + "Directional": true + }, + { + "SourceID": 159510, + "TargetID": 124039, + "Directional": true + } + ] + }, + { + "ID": 21489, + "SourceStructureID": 159506, + "TargetStructureID": 10931, + "Label": "159506-10931 via Conventional from 159507 -> 159339", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159507, + "TargetID": 159339, + "Directional": true + } + ] + }, + { + "ID": 21490, + "SourceStructureID": 159518, + "TargetStructureID": 10931, + "Label": "159518-10931 via Conventional from 159525 -> 159516", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159525, + "TargetID": 159516, + "Directional": true + } + ] + }, + { + "ID": 21491, + "SourceStructureID": 159551, + "TargetStructureID": 7054, + "Label": "159551-7054 via Conventional from 159552 -> 159553", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159552, + "TargetID": 159553, + "Directional": true + } + ] + }, + { + "ID": 21492, + "SourceStructureID": 159554, + "TargetStructureID": 7054, + "Label": "159554-7054 via Conventional from 159562 -> 159561", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159562, + "TargetID": 159561, + "Directional": true + } + ] + }, + { + "ID": 21493, + "SourceStructureID": 159592, + "TargetStructureID": 7054, + "Label": "159592-7054 via Conventional from 159594 -> 159595", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159594, + "TargetID": 159595, + "Directional": true + } + ] + }, + { + "ID": 21494, + "SourceStructureID": 159611, + "TargetStructureID": 7054, + "Label": "159611-7054 via Conventional from 159612 -> 159540, 159614 -> 159560", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159612, + "TargetID": 159540, + "Directional": true + }, + { + "SourceID": 159614, + "TargetID": 159560, + "Directional": true + } + ] + }, + { + "ID": 21495, + "SourceStructureID": 159638, + "TargetStructureID": 5283, + "Label": "159638-5283 via Conventional from 159640 -> 22433", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159640, + "TargetID": 22433, + "Directional": true + } + ] + }, + { + "ID": 21496, + "SourceStructureID": 159638, + "TargetStructureID": 7054, + "Label": "159638-7054 via Conventional from 159639 -> 159454", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159639, + "TargetID": 159454, + "Directional": true + } + ] + }, + { + "ID": 21497, + "SourceStructureID": 159643, + "TargetStructureID": 7054, + "Label": "159643-7054 via Conventional from 159644 -> 159642", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159644, + "TargetID": 159642, + "Directional": true + } + ] + }, + { + "ID": 21498, + "SourceStructureID": 159650, + "TargetStructureID": 7054, + "Label": "159650-7054 via Conventional from 159651 -> 159648", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159651, + "TargetID": 159648, + "Directional": true + } + ] + }, + { + "ID": 21499, + "SourceStructureID": 159654, + "TargetStructureID": 5017, + "Label": "159654-5017 via Conventional from 159655 -> 5024", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159655, + "TargetID": 5024, + "Directional": true + } + ] + }, + { + "ID": 21500, + "SourceStructureID": 159656, + "TargetStructureID": 5017, + "Label": "159656-5017 via Conventional from 159657 -> 5023, 159658 -> 5030", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159657, + "TargetID": 5023, + "Directional": true + }, + { + "SourceID": 159658, + "TargetID": 5030, + "Directional": true + } + ] + }, + { + "ID": 21501, + "SourceStructureID": 159660, + "TargetStructureID": 5017, + "Label": "159660-5017 via Conventional from 159661 -> 5018", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159661, + "TargetID": 5018, + "Directional": true + } + ] + }, + { + "ID": 21502, + "SourceStructureID": 159663, + "TargetStructureID": 5017, + "Label": "159663-5017 via Conventional from 159664 -> 158800, 159665 -> 158801, 159666 -> 5034, 159667 -> 158797", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159664, + "TargetID": 158800, + "Directional": true + }, + { + "SourceID": 159665, + "TargetID": 158801, + "Directional": true + }, + { + "SourceID": 159666, + "TargetID": 5034, + "Directional": true + }, + { + "SourceID": 159667, + "TargetID": 158797, + "Directional": true + } + ] + }, + { + "ID": 21503, + "SourceStructureID": 159688, + "TargetStructureID": 5017, + "Label": "159688-5017 via Conventional from 159690 -> 17052, 159691 -> 159687", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159690, + "TargetID": 17052, + "Directional": true + }, + { + "SourceID": 159691, + "TargetID": 159687, + "Directional": true + } + ] + }, + { + "ID": 21504, + "SourceStructureID": 159693, + "TargetStructureID": 5017, + "Label": "159693-5017 via Conventional from 159694 -> 159692", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159694, + "TargetID": 159692, + "Directional": true + } + ] + }, + { + "ID": 21505, + "SourceStructureID": 159699, + "TargetStructureID": 5017, + "Label": "159699-5017 via Conventional from 159702 -> 13825", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159702, + "TargetID": 13825, + "Directional": true + } + ] + }, + { + "ID": 21506, + "SourceStructureID": 159700, + "TargetStructureID": 5017, + "Label": "159700-5017 via Conventional from 159701 -> 13824, 159725 -> 159696", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159701, + "TargetID": 13824, + "Directional": true + }, + { + "SourceID": 159725, + "TargetID": 159696, + "Directional": true + } + ] + }, + { + "ID": 21507, + "SourceStructureID": 159703, + "TargetStructureID": 5017, + "Label": "159703-5017 via Conventional from 159704 -> 17059", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159704, + "TargetID": 17059, + "Directional": true + } + ] + }, + { + "ID": 21508, + "SourceStructureID": 159714, + "TargetStructureID": 5017, + "Label": "159714-5017 via Conventional from 159715 -> 159713", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159715, + "TargetID": 159713, + "Directional": true + } + ] + }, + { + "ID": 21509, + "SourceStructureID": 159727, + "TargetStructureID": 5017, + "Label": "159727-5017 via Conventional from 159728 -> 158804, 159729 -> 158805", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159728, + "TargetID": 158804, + "Directional": true + }, + { + "SourceID": 159729, + "TargetID": 158805, + "Directional": true + } + ] + }, + { + "ID": 21510, + "SourceStructureID": 159736, + "TargetStructureID": 5017, + "Label": "159736-5017 via Conventional from 159738 -> 159717, 159739 -> 159716", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159738, + "TargetID": 159717, + "Directional": true + }, + { + "SourceID": 159739, + "TargetID": 159716, + "Directional": true + } + ] + }, + { + "ID": 21511, + "SourceStructureID": 159818, + "TargetStructureID": 8749, + "Label": "159818-8749 via Conventional from 159821 -> 17153", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159821, + "TargetID": 17153, + "Directional": true + } + ] + }, + { + "ID": 21512, + "SourceStructureID": 159822, + "TargetStructureID": 8749, + "Label": "159822-8749 via Conventional from 159823 -> 17150, 159824 -> 17151, 159825 -> 17152", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159823, + "TargetID": 17150, + "Directional": true + }, + { + "SourceID": 159824, + "TargetID": 17151, + "Directional": true + }, + { + "SourceID": 159825, + "TargetID": 17152, + "Directional": true + } + ] + }, + { + "ID": 21513, + "SourceStructureID": 159856, + "TargetStructureID": 8749, + "Label": "159856-8749 via Conventional from 159857 -> 159801", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159857, + "TargetID": 159801, + "Directional": true + } + ] + }, + { + "ID": 21514, + "SourceStructureID": 159858, + "TargetStructureID": 6050, + "Label": "159858-6050 via Conventional from 159859 -> 113883", + "Type": "Conventional", + "Directional": true, + "Links": [ + { + "SourceID": 159859, + "TargetID": 113883, + "Directional": true + } + ] + } + ] +} \ No newline at end of file diff --git a/src/assets/mock/defaultMarclab.json b/src/assets/mock/defaultMarclab.json index 4612704..d40de5b 100644 --- a/src/assets/mock/defaultMarclab.json +++ b/src/assets/mock/defaultMarclab.json @@ -1 +1,347866 @@ -{"query":{"availableNumHops":[1,2,3],"selectedNumHops":2,"nodes":["CBb.*","AC","CBb.*"],"edges":["*","*"]},"matrix":{"source_ids":[6153,2610,410,324,321,309,307,299,284,223,276,286,332,4835,7157,30102],"matrix":[[[[6153,795,223]],[[6153,866,284]]],[[[2610,794,223]],[]],[[[410,792,223]],[]],[[[324,787,223]],[[324,857,284]]],[[[321,786,223]],[[321,854,284]]],[[[309,784,223]],[[309,853,284]]],[[[307,782,223]],[]],[[[299,779,223]],[]],[[[284,778,223]],[]],[[],[[223,777,284]]],[[],[[276,809,284]]],[[],[[286,850,284]]],[[],[[332,860,284]]],[[],[[4835,862,284]]],[[],[[7157,871,284]]],[[],[[30102,872,284]]]],"target_ids":[223,284]},"graph":{"nodes":[{"HullArea":576074887.998755,"StructureID":284,"ID":284,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(284L)","Label":"GAC Aii"},{"HullArea":18405197.9158806,"StructureID":30102,"ID":30102,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(30102L)","Label":"CBb4w"},{"HullArea":271322411.380455,"StructureID":276,"ID":276,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(276L)","Label":"CBb6"},{"HullArea":463507549.086105,"StructureID":332,"ID":332,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(332L)","Label":"CBb5"},{"HullArea":727909185.079524,"StructureID":410,"ID":410,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(410L)","Label":"GAC Aii"},{"HullArea":127564659.372802,"StructureID":299,"ID":299,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(299L)","Label":"CBb3n"},{"HullArea":744336029.285149,"StructureID":6153,"ID":6153,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(6153L)","Label":"GAC Aii"},{"HullArea":256364716.284775,"StructureID":307,"ID":307,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(307L)","Label":"CBb4w"},{"HullArea":735293612.358319,"StructureID":7157,"ID":7157,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(7157L)","Label":"GAC Aii"},{"HullArea":244061675.180231,"StructureID":309,"ID":309,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(309L)","Label":"CBb6"},{"HullArea":400934415.859849,"StructureID":324,"ID":324,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(324L)","Label":"CBb4w"},{"HullArea":285587564.527793,"StructureID":286,"ID":286,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(286L)","Label":"CBb5"},{"HullArea":321651156.940365,"StructureID":223,"ID":223,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(223L)","Label":"GAC Aii"},{"HullArea":867692614.832515,"StructureID":4835,"ID":4835,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(4835L)","Label":"GAC Aii"},{"HullArea":823912058.921718,"StructureID":2610,"ID":2610,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(2610L)","Label":"GAC Aii"},{"HullArea":228148237.674384,"StructureID":321,"ID":321,"Structure":"http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(321L)","Label":"CBb3n"}],"edges":[{"TargetSizes":[31308.9451626985],"SourceID":4835,"Type":"Gap Junction","SourceSizes":[26064.3596520369],"LinkedStructures":" 29608 -> 29607\r","SourceStructureID":4835,"TargetID":284,"TargetStructureID":284,"ID":862},{"TargetSizes":[92714.5787032651,94778.8895688309],"SourceID":332,"Type":"Gap Junction","SourceSizes":[102694.599118224,94778.6885692744],"LinkedStructures":" 29526 -> 29525\r 95191 -> 95192\r","SourceStructureID":332,"TargetID":284,"TargetStructureID":284,"ID":860},{"TargetSizes":[21385.7201776529,46696.3391731195,34330.6867499462,34811.0494588163],"SourceID":223,"Type":"Gap Junction","SourceSizes":[21385.7258684296,46696.3433984048,17845.0476349797,31968.7669197468],"LinkedStructures":" 17519 -> 17518\r 17520 -> 14350\r 17521 -> 17419\r 131778 -> 131779\r","SourceStructureID":223,"TargetID":284,"TargetStructureID":284,"ID":777},{"TargetSizes":[30546.5523795957],"SourceID":321,"Type":"Gap Junction","SourceSizes":[30546.5471076884],"LinkedStructures":" 115571 -> 115570\r","SourceStructureID":321,"TargetID":223,"TargetStructureID":223,"ID":786},{"TargetSizes":[52312.3204382367],"SourceID":309,"Type":"Gap Junction","SourceSizes":[52312.3134450583],"LinkedStructures":" 122310 -> 122309\r","SourceStructureID":309,"TargetID":223,"TargetStructureID":223,"ID":784},{"TargetSizes":[172098.42643885,17366.1563281033,98779.588232117],"SourceID":276,"Type":"Gap Junction","SourceSizes":[172098.424497736,17366.1454550044,98779.5319400795],"LinkedStructures":" 29537 -> 29536\r 122164 -> 122165\r 122166 -> 29530\r","SourceStructureID":276,"TargetID":284,"TargetStructureID":284,"ID":809},{"TargetSizes":[57413.7025226681,85659.3280315424,176580.900808767,138523.448468204,145646.142329139,216392.996071871],"SourceID":6153,"Type":"Gap Junction","SourceSizes":[57413.869834994,85659.3459911782,176580.830122334,106698.829172662,159160.355322978,174244.84155422],"LinkedStructures":" 17455 -> 17454\r 17463 -> 17462\r 17509 -> 14371\r 17510 -> 14369\r 29498 -> 29479\r 29542 -> 29520\r","SourceStructureID":6153,"TargetID":284,"TargetStructureID":284,"ID":866},{"TargetSizes":[177809.420896753],"SourceID":299,"Type":"Gap Junction","SourceSizes":[175167.507818716],"LinkedStructures":" 47093 -> 17659\r","SourceStructureID":299,"TargetID":223,"TargetStructureID":223,"ID":779},{"TargetSizes":[48426.7433090414,506800.470705722,197795.733557926,92457.3147050307,21053.4513018711,46564.8591139168],"SourceID":410,"Type":"Gap Junction","SourceSizes":[40201.2606670532,506800.219079308,197795.71473937,25213.6773722743,21053.4434689604,46564.8848077924],"LinkedStructures":" 14347 -> 14346\r 17661 -> 17660\r 17665 -> 9225\r 18373 -> 17818\r 18378 -> 18377\r 18543 -> 18542\r","SourceStructureID":410,"TargetID":223,"TargetStructureID":223,"ID":792},{"TargetSizes":[21385.7201776529,46696.3391731195,34330.6867499462,34811.0494588163],"SourceID":284,"Type":"Gap Junction","SourceSizes":[21385.7258684296,46696.3433984048,17845.0476349797,31968.7669197468],"LinkedStructures":" 17519 -> 17518\r 17520 -> 14350\r 17521 -> 17419\r 131778 -> 131779\r","SourceStructureID":284,"TargetID":223,"TargetStructureID":223,"ID":778},{"TargetSizes":[102804.745571566,53885.3353329905,241808.298311656,52113.5622390643,49766.6113637178],"SourceID":286,"Type":"Gap Junction","SourceSizes":[84133.4605517574,53885.3630258788,241808.306921479,27978.1444015911,49766.6023176137],"LinkedStructures":" 29486 -> 29483\r 58621 -> 58620\r 95220 -> 26281\r 95376 -> 95369\r 95380 -> 95381\r","SourceStructureID":286,"TargetID":284,"TargetStructureID":284,"ID":850},{"TargetSizes":[91316.5396448786],"SourceID":309,"Type":"Gap Junction","SourceSizes":[91316.536002277],"LinkedStructures":" 17467 -> 13484\r","SourceStructureID":309,"TargetID":284,"TargetStructureID":284,"ID":853},{"TargetSizes":[58035.3673775968],"SourceID":324,"Type":"Gap Junction","SourceSizes":[58035.3687401047],"LinkedStructures":" 29482 -> 93910\r","SourceStructureID":324,"TargetID":284,"TargetStructureID":284,"ID":857},{"TargetSizes":[111098.009027458],"SourceID":2610,"Type":"Gap Junction","SourceSizes":[111097.974797885],"LinkedStructures":" 17673 -> 17674\r","SourceStructureID":2610,"TargetID":223,"TargetStructureID":223,"ID":794},{"TargetSizes":[53394.0123299946,36449.9981726498,42489.8980697741],"SourceID":324,"Type":"Gap Junction","SourceSizes":[53394.3894053365,36449.9870514561,42489.9040974349],"LinkedStructures":" 94219 -> 94218\r 96133 -> 96134\r 96137 -> 96136\r","SourceStructureID":324,"TargetID":223,"TargetStructureID":223,"ID":787},{"TargetSizes":[101037.155281357,127030.538626532,33135.5919843235,32428.808886887,125548.829837634,58135.6623254742,51612.4157077199,36517.8726774617,145588.257144997,16217.4536420433],"SourceID":321,"Type":"Gap Junction","SourceSizes":[101037.294459029,73485.9811481792,33135.5726649258,32428.8033198595,125548.831063086,58135.6534635232,51612.4337057643,36517.976022135,145588.025054431,16217.4465762744],"LinkedStructures":" 23038 -> 17434\r 55211 -> 29481\r 115553 -> 115552\r 115568 -> 115569\r 115572 -> 17433\r 122181 -> 122180\r 122187 -> 122184\r 122201 -> 122202\r 122213 -> 17430\r 122215 -> 122214\r","SourceStructureID":321,"TargetID":284,"TargetStructureID":284,"ID":854},{"TargetSizes":[28571.182224771],"SourceID":30102,"Type":"Gap Junction","SourceSizes":[24393.8453463491],"LinkedStructures":" 30107 -> 30106\r","SourceStructureID":30102,"TargetID":284,"TargetStructureID":284,"ID":872},{"TargetSizes":[46932.6020570212],"SourceID":307,"Type":"Gap Junction","SourceSizes":[46932.6034370312],"LinkedStructures":" 96375 -> 96374\r","SourceStructureID":307,"TargetID":223,"TargetStructureID":223,"ID":782},{"TargetSizes":[254414.758444589,29058.9834974194,27734.8741667085,41264.5754621723],"SourceID":7157,"Type":"Gap Junction","SourceSizes":[78197.6346337507,29058.9819189716,25751.0074932212,41289.3424581906],"LinkedStructures":" 29580 -> 26271\r 29586 -> 29585\r 29610 -> 29611\r 131781 -> 131780\r","SourceStructureID":7157,"TargetID":284,"TargetStructureID":284,"ID":871},{"TargetSizes":[71844.6659179404,91058.9677753185,44052.5291620448,27017.2343524332],"SourceID":6153,"Type":"Gap Junction","SourceSizes":[71844.5621025662,91058.7023309178,44052.7170467478,27017.2343524331],"LinkedStructures":" 17489 -> 17488\r 17837 -> 16621\r 29593 -> 29592\r 29599 -> 29598\r","SourceStructureID":6153,"TargetID":223,"TargetStructureID":223,"ID":795}],"edge_attributes":[{"DataType":"index","Type":"int","Unique":"true","DisplayName":"id","Name":"ID"},{"DataType":"source-index","Type":"int","Unique":"false","DisplayName":"source id","Name":"SourceID"},{"DataType":"target-index","Type":"int","Unique":"true","DisplayName":"target id","Name":"TargetID"},{"DataType":"target-index","Type":"int","Unique":"true","DisplayName":"target id","Name":"TargetID"},{"DataType":"categorical","Type":"string","Unique":"false","DisplayName":"edge type","Name":"type"},{"DataType":"string","Type":"string","Unique":"false","DisplayName":"structures","Name":"LinkedStructures"}],"node_attributes":[{"DisplayName":"id","Name":"ID","DataType":"index","DatabaseName":"id","Unique":"true","Type":"int"},{"DisplayName":"label","Name":"Label","DataType":"categorical","DatabaseName":"label","Unique":"false","Type":"string"},{"DisplayName":"structure uri","Name":"Structure","DataType":"id","DatabaseName":"structure","Unique":"true","Type":"string"},{"DisplayName":"id","Name":"StructureID","DataType":"id","DatabaseName":"id","Unique":"true","Type":"int"},{"DisplayName":"area","Name":"HullArea","DataType":"quantitative","DatabaseName":"hull","Unique":"false","Type":"float"}]},"data":{"name":"/assets/mock/2018.01.23-network-all-hops.json","nodes":[{"StructureID":115,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":138,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":142,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":146,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":153,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":161,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":162,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":165,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":166,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":168,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":170,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":171,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":172,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":173,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":174,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":175,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":176,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":177,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":178,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":179,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":180,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":181,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":184,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":222,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":223,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":250,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":260,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":268,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":269,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":273,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":276,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":277,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":278,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":280,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":284,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":285,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":286,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":288,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":289,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":293,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":294,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":298,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":299,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":304,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":307,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":308,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":309,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":310,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":311,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":314,"TypeID":1,"Label":"GC diving","Tags":""},{"StructureID":318,"TypeID":1,"Label":"YAC ON","Tags":""},{"StructureID":321,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":324,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":325,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":327,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":328,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":330,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":332,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":334,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":335,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":341,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":342,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":344,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":345,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":350,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":352,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":353,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":354,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":359,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":360,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":364,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":365,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":366,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":369,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":372,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":373,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":375,"TypeID":1,"Label":"YAC ON/OFF","Tags":""},{"StructureID":380,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":382,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":389,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":390,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":391,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":397,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":398,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":399,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":400,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":405,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":407,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":408,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":410,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":412,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":415,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":418,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":419,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":421,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":422,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":424,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":425,"TypeID":1,"Label":"CBa2-3","Tags":""},{"StructureID":426,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":428,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":431,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":432,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":433,"TypeID":1,"Label":"CBab2-3w","Tags":""},{"StructureID":434,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":437,"TypeID":1,"Label":"CBab2-4","Tags":""},{"StructureID":440,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":441,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":443,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":445,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":446,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":447,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":450,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":452,"TypeID":1,"Label":"CBab2-4w","Tags":""},{"StructureID":453,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":455,"TypeID":1,"Label":"CBab2-3","Tags":""},{"StructureID":456,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":458,"TypeID":1,"Label":"CBab2-5","Tags":""},{"StructureID":460,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":461,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":463,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":464,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":468,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":469,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":471,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":473,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":475,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":476,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":478,"TypeID":1,"Label":"CBabw","Tags":""},{"StructureID":479,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":483,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":485,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":488,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":492,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":514,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":516,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":517,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":518,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":519,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":525,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":545,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":572,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":573,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":579,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":582,"TypeID":1,"Label":"","Tags":""},{"StructureID":590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":591,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":592,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":593,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":595,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":596,"TypeID":1,"Label":"","Tags":""},{"StructureID":597,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":598,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":605,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":606,"TypeID":1,"Label":"GC ON","Tags":""},{"StructureID":608,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":611,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":906,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":907,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":909,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":911,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":968,"TypeID":1,"Label":"CBab2-4","Tags":""},{"StructureID":989,"TypeID":1,"Label":"CBabw","Tags":""},{"StructureID":992,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":999,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":1021,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":1610,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":1620,"TypeID":1,"Label":"YAC ON/OFF","Tags":""},{"StructureID":1637,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":1724,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":2063,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":2064,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":2065,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":2610,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":3116,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":3257,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":3679,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":3756,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":3865,"TypeID":1,"Label":"GAC/YAC","Tags":""},{"StructureID":3881,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":3928,"TypeID":1,"Label":"CBab2-4","Tags":""},{"StructureID":4567,"TypeID":1,"Label":"CBa1w","Tags":""},{"StructureID":4568,"TypeID":1,"Label":"CBab2-4","Tags":""},{"StructureID":4569,"TypeID":1,"Label":"CBb3n ","Tags":""},{"StructureID":4570,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":4835,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":4849,"TypeID":1,"Label":"CBa1-2","Tags":""},{"StructureID":4850,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":4876,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":4877,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":4890,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":4941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":4942,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":4943,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5006,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":5017,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":5057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":5107,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":5117,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":5118,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":5150,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":5278,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5279,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5280,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5281,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5282,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5283,"TypeID":1,"Label":"CBbwf","Tags":""},{"StructureID":5284,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5285,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":5292,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":5294,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5295,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":5297,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5303,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":5315,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5325,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5331,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5338,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5345,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":5350,"TypeID":1,"Label":"YAC ON","Tags":""},{"StructureID":5351,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5352,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":5372,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5374,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5377,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":5382,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5388,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5390,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5394,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5396,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5402,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5405,"TypeID":1,"Label":"YAC ON/OFF","Tags":""},{"StructureID":5410,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5411,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5413,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5421,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5422,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":5423,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5427,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5435,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5436,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5437,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5439,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5441,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5442,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5450,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5451,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5452,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5453,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5454,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5456,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":5457,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":5458,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5464,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":5468,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5470,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5473,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":5480,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5481,"TypeID":1,"Label":"YAC ON","Tags":""},{"StructureID":5482,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":5485,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5486,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5487,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5489,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5491,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5496,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5497,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5498,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":5499,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":5500,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5501,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5502,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5503,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5504,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5506,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5507,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5509,"TypeID":1,"Label":"","Tags":""},{"StructureID":5511,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5513,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5514,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5515,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":5516,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":5517,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5519,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":5520,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5522,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5528,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5530,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5531,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5532,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5534,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5535,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5536,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5537,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":5538,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5539,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5541,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":5542,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5543,"TypeID":1,"Label":"CBab2-5","Tags":""},{"StructureID":5544,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":5545,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5551,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5556,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":5557,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5561,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5562,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5563,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":5565,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5566,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5568,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5575,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5579,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":5582,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5584,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5585,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5587,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":5592,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5595,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":5596,"TypeID":1,"Label":"CBa1-2","Tags":""},{"StructureID":5598,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5599,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5600,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":5601,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5602,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5604,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5606,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":5607,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5608,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5609,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5611,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":5614,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":5618,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5622,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5623,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5630,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5631,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5634,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":5635,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5636,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5637,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":5638,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":5639,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5640,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":5641,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5643,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":5645,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5648,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5649,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5650,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5671,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5711,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5729,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":5737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":5775,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":5794,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":5838,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":5860,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":5909,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":5916,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":5919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":5922,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":5923,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6011,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":6046,"TypeID":1,"Label":"CBa2-3","Tags":""},{"StructureID":6047,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6048,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6050,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":6115,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":6117,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":6118,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6120,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6121,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":6122,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6123,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":6125,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":6127,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6128,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":6129,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":6131,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6132,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6133,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6134,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":6135,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6136,"TypeID":1,"Label":"CBab2-3","Tags":""},{"StructureID":6138,"TypeID":1,"Label":"CBa1-2","Tags":""},{"StructureID":6140,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":6141,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6142,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":6146,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6150,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":6153,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":6155,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6156,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":6158,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6160,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":6162,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":6163,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6164,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6165,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":6166,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":6169,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":6203,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6204,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":6300,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":6406,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":6561,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6589,"TypeID":1,"Label":"CBbwf","Tags":""},{"StructureID":6617,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6618,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6656,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":6850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":6857,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":6909,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6910,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":6911,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":6912,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":6957,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":6958,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":6961,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":6964,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":6965,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":6997,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":7024,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":7040,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":7043,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":7050,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7054,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":7073,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7075,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":7111,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7112,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7113,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7114,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7122,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7129,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7134,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7139,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7144,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":7145,"TypeID":1,"Label":"GAC Aii -doubtful","Tags":""},{"StructureID":7147,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7149,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":7157,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7167,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7174,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":7188,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7203,"TypeID":1,"Label":null,"Tags":""},{"StructureID":7204,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":7215,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7225,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7231,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":7274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":7279,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":7344,"TypeID":1,"Label":null,"Tags":""},{"StructureID":7345,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7346,"TypeID":1,"Label":"CBa2w","Tags":""},{"StructureID":7361,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":7362,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":7446,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":7461,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7464,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7468,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7561,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":7564,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7565,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7568,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":7577,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7587,"TypeID":1,"Label":"","Tags":""},{"StructureID":7594,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":7688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":7691,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7693,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7703,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":7858,"TypeID":1,"Label":"GAC ON/OFF","Tags":""},{"StructureID":7859,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":7860,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7861,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":7897,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":7904,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":7951,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":8027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":8032,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":8033,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":8035,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":8037,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":8038,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":8040,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":8045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":8059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":8080,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":8212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":8218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":8485,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":8504,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":8551,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":8575,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8576,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":8577,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":8578,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8579,"TypeID":1,"Label":"YAC Starburst ","Tags":""},{"StructureID":8580,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8586,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":8588,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8589,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8720,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":8749,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":8754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":8990,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":9023,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":9124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":9129,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":9183,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":9226,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":9228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":9260,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":9347,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":9376,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":9492,"TypeID":1,"Label":"","Tags":""},{"StructureID":9504,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":9604,"TypeID":1,"Label":"","Tags":""},{"StructureID":9606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":9614,"TypeID":1,"Label":"","Tags":""},{"StructureID":9643,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":9693,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":9769,"TypeID":1,"Label":"YAC IAC","Tags":""},{"StructureID":9787,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":9810,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":10142,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10146,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10335,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":10371,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":10412,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10559,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":10565,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":10574,"TypeID":1,"Label":"YAC IAC","Tags":""},{"StructureID":10590,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10596,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":10625,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10632,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10720,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":10815,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10826,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10840,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10872,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10897,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10931,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10943,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10945,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":10950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":10953,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10954,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":10956,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10957,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10959,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10960,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10961,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10962,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10963,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":10964,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10966,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":10969,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":10970,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":11011,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":11015,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":11017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11020,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11021,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11022,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11023,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":11024,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":11030,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11031,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11033,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11037,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11038,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11042,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11043,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11044,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11049,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11063,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11066,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":11071,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":11072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":11074,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":11085,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11089,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11092,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":11172,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11222,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":11229,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":11234,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11235,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11238,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":11244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11246,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11248,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11250,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11321,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11401,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":11408,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":11485,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":11531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":11645,"TypeID":1,"Label":"","Tags":""},{"StructureID":11650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11651,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":11657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":11696,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":11803,"TypeID":1,"Label":"","Tags":""},{"StructureID":12072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":12099,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":12113,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":12192,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12203,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":12208,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":12210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":12298,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12408,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":12461,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12492,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":12563,"TypeID":1,"Label":"HC","Tags":""},{"StructureID":12564,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":12696,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12804,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":12897,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":13000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13130,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13134,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":13150,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13154,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13159,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":13180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":13313,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":13444,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":13448,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":13469,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":13485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13492,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":13499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":13525,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":13624,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":13855,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":13858,"TypeID":1,"Label":"GC OFF","Tags":""},{"StructureID":14034,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":14291,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":14293,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":14607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":14615,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":14725,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":14894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":15100,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":15130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":15377,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":15394,"TypeID":1,"Label":"GC ON","Tags":""},{"StructureID":15412,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":15475,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":15614,"TypeID":1,"Label":null,"Tags":""},{"StructureID":15653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":15779,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":15796,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":15942,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":15969,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":15976,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":15977,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":15979,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":16002,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":16026,"TypeID":1,"Label":"CBb6","Tags":""},{"StructureID":16073,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":16087,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":16446,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":16940,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":17183,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":17228,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":17527,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":17533,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":18150,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":18282,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":18471,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":18472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":18576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":18693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":19203,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":19351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":19362,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":19383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":19571,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":19572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":20136,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":20299,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":20311,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":20327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":20413,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":20537,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":20608,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":20614,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":20681,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":20728,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":21094,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":21155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21299,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":21314,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21384,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":21386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21778,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":21779,"TypeID":1,"Label":"GC ON/OFF","Tags":""},{"StructureID":21817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":21874,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":22210,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":22225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":22349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22358,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22368,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":22374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22554,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":22590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22634,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":22760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":22974,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":22994,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":23323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":23512,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":23566,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":23836,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":23870,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":24148,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":24174,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":24241,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":24303,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":24366,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":24381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":24401,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":24898,"TypeID":1,"Label":"GC OFF","Tags":""},{"StructureID":24909,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":24947,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":25155,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":25182,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25293,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25327,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25342,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":25352,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25355,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":25359,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25364,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":25367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25382,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":25385,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25392,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25402,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":25405,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":25410,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25429,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25529,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25551,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25561,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25575,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25669,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":25688,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":25858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25861,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":25879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":26079,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":26304,"TypeID":1,"Label":"CBa2","Tags":""},{"StructureID":26497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":26971,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":27288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":27304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":28382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":28886,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":28913,"TypeID":1,"Label":"GC Delta L1","Tags":""},{"StructureID":28950,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":29198,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":29277,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":29340,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":29702,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":29783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":29791,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":29805,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":29827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30015,"TypeID":1,"Label":"YAC WF ON/OFF","Tags":""},{"StructureID":30102,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":30130,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":30177,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":30332,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30370,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":30379,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":30477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30495,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30499,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":30513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30518,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":30526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":30567,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31024,"TypeID":1,"Label":"GC ON","Tags":""},{"StructureID":31157,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":31161,"TypeID":1,"Label":"YAC Starburst","Tags":""},{"StructureID":31256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31305,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31356,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31389,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":31471,"TypeID":1,"Label":null,"Tags":""},{"StructureID":31483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":31486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31603,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31605,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31665,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31679,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31694,"TypeID":1,"Label":null,"Tags":""},{"StructureID":31700,"TypeID":1,"Label":"","Tags":""},{"StructureID":31702,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31710,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":31804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31874,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":31915,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31944,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":31960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":31969,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":31994,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32046,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32141,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32144,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":32147,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":32160,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32172,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":32187,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32227,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32258,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":32273,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32312,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":32354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32359,"TypeID":1,"Label":"CBab2-3","Tags":""},{"StructureID":32371,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":32379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32383,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32405,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32409,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32422,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32445,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32451,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32547,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32581,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32608,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32643,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32654,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":32660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32666,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32668,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32681,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":32719,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":32726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32734,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32739,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32773,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32787,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32795,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32802,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32848,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":32853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32862,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32871,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32874,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32892,"TypeID":1,"Label":"AC OFF","Tags":""},{"StructureID":32900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32911,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32916,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32926,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32938,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32945,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32959,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":32970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":32987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":32994,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33003,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33088,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33127,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":33148,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33161,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":33198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33217,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33272,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33333,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":33588,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":33615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":33625,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":33675,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33714,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33873,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":33881,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34028,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34034,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":34036,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34055,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34138,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34148,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34159,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34164,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":34165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34253,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34300,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34306,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34311,"TypeID":1,"Label":"","Tags":""},{"StructureID":34315,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34336,"TypeID":1,"Label":"GC ON/OFF","Tags":""},{"StructureID":34337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34452,"TypeID":1,"Label":"","Tags":""},{"StructureID":34494,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34509,"TypeID":1,"Label":"","Tags":""},{"StructureID":34527,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34601,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34621,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34756,"TypeID":1,"Label":"","Tags":""},{"StructureID":34761,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":34847,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34868,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":34882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34893,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34899,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34914,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":34919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34940,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":34978,"TypeID":1,"Label":null,"Tags":""},{"StructureID":34982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35046,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":35064,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35068,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35076,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35084,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35138,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35142,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35145,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":35149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35176,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35188,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35193,"TypeID":1,"Label":"YAC ON","Tags":""},{"StructureID":35208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35212,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35240,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":35283,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35305,"TypeID":1,"Label":"","Tags":""},{"StructureID":35308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35335,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35348,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35392,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":35395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35400,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35418,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35428,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35510,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35513,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35526,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35534,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35550,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":35555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35576,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":35597,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":35653,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35681,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":35696,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":35751,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35775,"TypeID":1,"Label":"","Tags":""},{"StructureID":35811,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35887,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35894,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":35966,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":35969,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":35972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":35975,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":36130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36151,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":36153,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":36158,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36162,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36170,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":36228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":36234,"TypeID":1,"Label":null,"Tags":""},{"StructureID":36276,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36293,"TypeID":1,"Label":"YAC A1","Tags":""},{"StructureID":36299,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36419,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36421,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":36481,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36501,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36508,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36512,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36650,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36661,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36664,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":36688,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":36700,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":36714,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36724,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":36746,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":37012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":37021,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":37042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":37127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":37135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":37183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":37192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":37286,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":37288,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":37295,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":37309,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":37440,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":37461,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":37466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38200,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38231,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38236,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38245,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":38302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38345,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38357,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38404,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38483,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38502,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":38600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38605,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38632,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38698,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":38703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38727,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":38735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38799,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":38810,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":38848,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":38906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":38911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":38949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39168,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39192,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39196,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39201,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39208,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39216,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":39226,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39244,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39252,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39285,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39319,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":39324,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39331,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39342,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39345,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":39516,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39520,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39523,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39528,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39530,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39560,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39575,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39581,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39590,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39596,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39602,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39610,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39615,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39688,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39696,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":39706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39717,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39724,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39737,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39745,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39748,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39752,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39759,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39764,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39774,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39787,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39790,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39794,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":39798,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39802,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39807,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39811,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39816,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39824,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39830,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39835,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39838,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":39841,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39862,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":39867,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39915,"TypeID":1,"Label":"","Tags":""},{"StructureID":39917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39922,"TypeID":1,"Label":"","Tags":""},{"StructureID":39931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39939,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":39957,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":39963,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39968,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39973,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39982,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":39998,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40018,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40033,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40041,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40044,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40051,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40053,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40059,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40439,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40444,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40455,"TypeID":1,"Label":"","Tags":""},{"StructureID":40469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40480,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":40482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40495,"TypeID":1,"Label":"","Tags":""},{"StructureID":40498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40602,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40604,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":40606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40631,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40640,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40844,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40851,"TypeID":1,"Label":"YAC Ai ","Tags":""},{"StructureID":40856,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40863,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":40880,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40884,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40896,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40901,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40911,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40917,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":40919,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40927,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40934,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40947,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40951,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40956,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":40965,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40973,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":40988,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":40991,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":41003,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":41009,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41031,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":41039,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":41042,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":41058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41126,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":41159,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":41474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":41583,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41608,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":41636,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":41778,"TypeID":1,"Label":"","Tags":""},{"StructureID":41882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":41905,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":41999,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":42001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42094,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42387,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42404,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42416,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42423,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":42432,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":42450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42527,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42576,"TypeID":1,"Label":"","Tags":""},{"StructureID":42586,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42711,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":42715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42770,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":42776,"TypeID":1,"Label":"AC OFF","Tags":""},{"StructureID":42795,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42846,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":42866,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42871,"TypeID":1,"Label":"","Tags":""},{"StructureID":42873,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42877,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42890,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42927,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42948,"TypeID":1,"Label":"","Tags":""},{"StructureID":42951,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42953,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":42966,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42968,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42971,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42977,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42980,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":42985,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43114,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43130,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43132,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43134,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43142,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43198,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43201,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43205,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43207,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43259,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43297,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43314,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43327,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43404,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":43601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43631,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":43700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43716,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":43747,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":43770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":43874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44117,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":44205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44222,"TypeID":1,"Label":"","Tags":""},{"StructureID":44229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44237,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44256,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":44329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":44338,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":44346,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":44893,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44895,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44912,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44965,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":44970,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":45007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45220,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45336,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45358,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":45406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45551,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45568,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45574,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":45617,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":45680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45731,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":45847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":45894,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":46050,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46052,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46054,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46057,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46059,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46062,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":46070,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46074,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46090,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46093,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46098,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46105,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":46107,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46116,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46118,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46121,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46186,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46261,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46351,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46359,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46373,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46384,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46386,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46388,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":46389,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46391,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46443,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46449,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46461,"TypeID":1,"Label":"","Tags":""},{"StructureID":46468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46498,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46502,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46504,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46508,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46512,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46514,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46517,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46527,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":46530,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46589,"TypeID":1,"Label":"AC ON","Tags":""},{"StructureID":46670,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46682,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46693,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":46741,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":46797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46801,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":46804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46817,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46933,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":46943,"TypeID":1,"Label":"CBa1","Tags":""},{"StructureID":46955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46979,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46982,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":46984,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":46998,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47004,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":47007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47013,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":47095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47104,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":47109,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47195,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":47204,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":47445,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":47593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47833,"TypeID":1,"Label":null,"Tags":""},{"StructureID":47908,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":48416,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":48455,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":48516,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":48573,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":48612,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":49184,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":49185,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":49186,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":49487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":49489,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":49554,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":49600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":50240,"TypeID":1,"Label":"","Tags":""},{"StructureID":50449,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":50894,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":50982,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":51100,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":51617,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":51667,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":51700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":51711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":51715,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":51808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":51812,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":51923,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":52147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52152,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":52247,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":52257,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":52262,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52410,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52921,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52929,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":52960,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":52991,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53000,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53166,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53169,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53173,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53178,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53182,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":53186,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53195,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53202,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":53218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53224,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53229,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53235,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53241,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53250,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53252,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53257,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53259,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53263,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53330,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53344,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53399,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":53403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53416,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53436,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":53439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53441,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53443,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":53768,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53778,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53828,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":53872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":53987,"TypeID":1,"Label":"","Tags":""},{"StructureID":53991,"TypeID":1,"Label":"","Tags":""},{"StructureID":54006,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":54074,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54078,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":54245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54252,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54264,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54356,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54428,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54469,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54482,"TypeID":1,"Label":"","Tags":""},{"StructureID":54492,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54622,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54681,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54695,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":54698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54744,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":54776,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54778,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54813,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":54818,"TypeID":1,"Label":"","Tags":""},{"StructureID":54850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54859,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54862,"TypeID":1,"Label":"","Tags":""},{"StructureID":54874,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":54877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54881,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54895,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54904,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54908,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54913,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":54925,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":54958,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54967,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":54969,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":55034,"TypeID":1,"Label":"","Tags":""},{"StructureID":55098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":55108,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":55132,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55154,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":55166,"TypeID":1,"Label":"","Tags":""},{"StructureID":55176,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55185,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55191,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":55197,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55201,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55208,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55212,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55218,"TypeID":1,"Label":"","Tags":""},{"StructureID":55221,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55223,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":55232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":55279,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55308,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55311,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55317,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55319,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55330,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55347,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":55359,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":55366,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55517,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55610,"TypeID":1,"Label":"","Tags":""},{"StructureID":55686,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":55697,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55830,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":55837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":55933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56078,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56084,"TypeID":1,"Label":"","Tags":""},{"StructureID":56086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56093,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":56108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56148,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":56191,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":56211,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":56328,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56583,"TypeID":1,"Label":"","Tags":""},{"StructureID":56598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56600,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":56631,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":56643,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":56653,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56710,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":56712,"TypeID":1,"Label":"","Tags":""},{"StructureID":56714,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56802,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56841,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":56955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56973,"TypeID":1,"Label":null,"Tags":""},{"StructureID":56975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57027,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":57034,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":57035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57063,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":57064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57133,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57148,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57169,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":57178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57226,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57353,"TypeID":1,"Label":"CBb3","Tags":""},{"StructureID":57360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":57487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":58441,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":58592,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58642,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":58682,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":58687,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58709,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58714,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58723,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58741,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":58745,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58773,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":58775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":58777,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58782,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58784,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58825,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":58827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":58829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59008,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":59012,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":59096,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59121,"TypeID":1,"Label":"","Tags":""},{"StructureID":59125,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59130,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59139,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":59145,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":59147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59163,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59208,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59211,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59223,"TypeID":1,"Label":"","Tags":""},{"StructureID":59225,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":59229,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59247,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59251,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59262,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59278,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59289,"TypeID":1,"Label":"","Tags":""},{"StructureID":59294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59333,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":59340,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59362,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59377,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":59389,"TypeID":1,"Label":"","Tags":""},{"StructureID":59392,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59419,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59422,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":59429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59432,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59439,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59455,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59471,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59474,"TypeID":1,"Label":"","Tags":""},{"StructureID":59477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59491,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59499,"TypeID":1,"Label":"","Tags":""},{"StructureID":59507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59510,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59518,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59524,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":59531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59535,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59629,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59638,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":59696,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59726,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59751,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":59756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59796,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59801,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59811,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59813,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59825,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59841,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59862,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":59890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59910,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59916,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":59919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59929,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59932,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":59966,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":59974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60074,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60083,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60088,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60100,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60104,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60191,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60193,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60200,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60221,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60225,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60236,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60306,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60319,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60344,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60346,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60348,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60350,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60354,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60358,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60363,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60386,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60432,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60434,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60440,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60463,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":60466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60487,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":60491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60494,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60523,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":60535,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60547,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60558,"TypeID":1,"Label":"","Tags":""},{"StructureID":60572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60645,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60657,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":60798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60863,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":60873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60967,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":60976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":60989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61214,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":61227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61231,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":61270,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61439,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61450,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61500,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61530,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":61583,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61598,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61627,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61630,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":61632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61638,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61642,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61656,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61666,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61672,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61703,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61709,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":61716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61719,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61752,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61758,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":61763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61765,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61773,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61775,"TypeID":1,"Label":"","Tags":""},{"StructureID":61777,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61779,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61793,"TypeID":1,"Label":"","Tags":""},{"StructureID":61797,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61809,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61811,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61813,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61817,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61823,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61836,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61840,"TypeID":1,"Label":"","Tags":""},{"StructureID":61842,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61845,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61847,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61849,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61853,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61862,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61864,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":61868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61878,"TypeID":1,"Label":"","Tags":""},{"StructureID":61880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61886,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61897,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61898,"TypeID":1,"Label":"","Tags":""},{"StructureID":61904,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61908,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61914,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61926,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61930,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61940,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61942,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61951,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61954,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61960,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61972,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":61982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":61989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62019,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62035,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62038,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62049,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62052,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62120,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62150,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62169,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62325,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62344,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62420,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62433,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62456,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62458,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62464,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62478,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62492,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62500,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":62511,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62515,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62531,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62540,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62574,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62578,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":62599,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62617,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62627,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":62632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62655,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62659,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62704,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":62707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62764,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":62777,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62786,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":62807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62842,"TypeID":1,"Label":"GC direction selective-like","Tags":""},{"StructureID":62896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62956,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":62964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":62992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63016,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63060,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":63199,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":63274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63371,"TypeID":1,"Label":"","Tags":""},{"StructureID":63423,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":63440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":63445,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":63451,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63460,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63465,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63473,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63485,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63487,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63513,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63521,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":63542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63573,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63592,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":63594,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":63612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":63628,"TypeID":1,"Label":"AC ON/OFF","Tags":""},{"StructureID":63799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":63806,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":63956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":63978,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":63991,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":64196,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":64268,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64362,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64371,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":64387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64409,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64414,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":64417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64492,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":64520,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64547,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":64549,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64626,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64654,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64670,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64673,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":64690,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":64698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64777,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":64787,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":64795,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":64841,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":64887,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":64920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":64923,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":64939,"TypeID":1,"Label":"CBb4","Tags":""},{"StructureID":65002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65047,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65134,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":65138,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65156,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65172,"TypeID":1,"Label":"","Tags":""},{"StructureID":65181,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65218,"TypeID":1,"Label":"","Tags":""},{"StructureID":65245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65247,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65250,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65267,"TypeID":1,"Label":"","Tags":""},{"StructureID":65271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65276,"TypeID":1,"Label":"","Tags":""},{"StructureID":65278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65284,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":65287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65309,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65320,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65338,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65351,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65358,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65376,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65398,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65404,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65408,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65411,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65464,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65484,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65514,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65519,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":65522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65532,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65555,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65569,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65579,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65591,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65594,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65612,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65616,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65623,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65648,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65742,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":65751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65768,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65816,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":65819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65826,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65835,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":65849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65866,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65883,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65890,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65893,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65899,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65910,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":65920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65963,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":65971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66024,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66031,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66044,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66053,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66075,"TypeID":1,"Label":"","Tags":""},{"StructureID":66079,"TypeID":1,"Label":"YAC ","Tags":""},{"StructureID":66085,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66089,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66096,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66100,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66104,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66114,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66138,"TypeID":1,"Label":"","Tags":""},{"StructureID":66165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66184,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":66193,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66199,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":66214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66303,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66323,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66425,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66464,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66473,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66487,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66493,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66503,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66510,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66513,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66516,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":66520,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66535,"TypeID":1,"Label":"","Tags":""},{"StructureID":66539,"TypeID":1,"Label":"","Tags":""},{"StructureID":66542,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66634,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":66640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66647,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66660,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66665,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66682,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66685,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66699,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66702,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66710,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66713,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66723,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66731,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66756,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":66760,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66768,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66779,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66785,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":66788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66795,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66801,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66809,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66828,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66840,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66852,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66871,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66888,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":66896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66905,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":66910,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66927,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66930,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":66933,"TypeID":1,"Label":"","Tags":""},{"StructureID":66937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66942,"TypeID":1,"Label":"","Tags":""},{"StructureID":66946,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66952,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66955,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66958,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":66962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66983,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":66988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":66992,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67007,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67016,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67019,"TypeID":1,"Label":"","Tags":""},{"StructureID":67037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67042,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67051,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67080,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67101,"TypeID":1,"Label":"","Tags":""},{"StructureID":67105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67109,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67119,"TypeID":1,"Label":"","Tags":""},{"StructureID":67121,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67123,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67128,"TypeID":1,"Label":"","Tags":""},{"StructureID":67130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67131,"TypeID":1,"Label":"","Tags":""},{"StructureID":67135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67137,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67150,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67152,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67157,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67159,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67161,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67182,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67187,"TypeID":1,"Label":"","Tags":""},{"StructureID":67190,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67201,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67206,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67219,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67227,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67234,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67246,"TypeID":1,"Label":"","Tags":""},{"StructureID":67252,"TypeID":1,"Label":"","Tags":""},{"StructureID":67254,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67258,"TypeID":1,"Label":"","Tags":""},{"StructureID":67262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67266,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67269,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67284,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67298,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67301,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67305,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67328,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67350,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67352,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67354,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67361,"TypeID":1,"Label":"","Tags":""},{"StructureID":67364,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67404,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67410,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67423,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67425,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67433,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67438,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67452,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67455,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67458,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67469,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67491,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67494,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67500,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67502,"TypeID":1,"Label":"","Tags":""},{"StructureID":67504,"TypeID":1,"Label":"","Tags":""},{"StructureID":67506,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67508,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67520,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67529,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67546,"TypeID":1,"Label":"","Tags":""},{"StructureID":67548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67551,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67557,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67575,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67585,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67586,"TypeID":1,"Label":"","Tags":""},{"StructureID":67589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67591,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67595,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67626,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67663,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":67666,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67671,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67683,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67686,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67705,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67711,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67736,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67752,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67762,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67765,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67768,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67784,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67786,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67789,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67806,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67809,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67815,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67818,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67823,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67833,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67839,"TypeID":1,"Label":"","Tags":""},{"StructureID":67846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67854,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67871,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67883,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67886,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67890,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67892,"TypeID":1,"Label":"","Tags":""},{"StructureID":67894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67915,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67918,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67920,"TypeID":1,"Label":"","Tags":""},{"StructureID":67932,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67947,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67952,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67959,"TypeID":1,"Label":"","Tags":""},{"StructureID":67967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67970,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":67973,"TypeID":1,"Label":null,"Tags":""},{"StructureID":67978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67981,"TypeID":1,"Label":"","Tags":""},{"StructureID":67983,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67992,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67996,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":67999,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68003,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68009,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":68014,"TypeID":1,"Label":"","Tags":""},{"StructureID":68020,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68023,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68031,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68042,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68056,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68068,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68087,"TypeID":1,"Label":"","Tags":""},{"StructureID":68093,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68101,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68135,"TypeID":1,"Label":"","Tags":""},{"StructureID":68140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68144,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68148,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68150,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68153,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":68161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68188,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68202,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68210,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68214,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68238,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68249,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68263,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68266,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68273,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68277,"TypeID":1,"Label":"","Tags":""},{"StructureID":68282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68286,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68289,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68292,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68296,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68300,"TypeID":1,"Label":"","Tags":""},{"StructureID":68302,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68306,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68335,"TypeID":1,"Label":"","Tags":""},{"StructureID":68337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68350,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":68353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68359,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68366,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68380,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68391,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68393,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68399,"TypeID":1,"Label":"","Tags":""},{"StructureID":68401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68433,"TypeID":1,"Label":"","Tags":""},{"StructureID":68435,"TypeID":1,"Label":"","Tags":""},{"StructureID":68444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68453,"TypeID":1,"Label":"","Tags":""},{"StructureID":68456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68461,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68492,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68497,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68501,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68504,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68511,"TypeID":1,"Label":"","Tags":""},{"StructureID":68516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68527,"TypeID":1,"Label":"","Tags":""},{"StructureID":68531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68537,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68539,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":68543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68550,"TypeID":1,"Label":"","Tags":""},{"StructureID":68555,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68566,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68585,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68594,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68618,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68623,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":68632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68667,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68669,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68678,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68679,"TypeID":1,"Label":"","Tags":""},{"StructureID":68686,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68728,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68734,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68748,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68761,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":68766,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":68771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68781,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":68785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68793,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":68799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68888,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":68891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68914,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68929,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68944,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68948,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68955,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":68974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":68978,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":68988,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":69003,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69019,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69030,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69049,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69162,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":69181,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69235,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69325,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69332,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69355,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69382,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69385,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69428,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":69431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69434,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69436,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69443,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69446,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69450,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69454,"TypeID":1,"Label":"","Tags":""},{"StructureID":69456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69461,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69464,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69467,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69469,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69478,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69480,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69503,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69508,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69532,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69534,"TypeID":1,"Label":"YAC OFF","Tags":""},{"StructureID":69537,"TypeID":1,"Label":"GC OFF","Tags":""},{"StructureID":69543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69666,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69695,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69697,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69708,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69710,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69720,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69721,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69728,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69733,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69742,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69783,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69895,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69899,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69902,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69910,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69917,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69930,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69934,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69955,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69966,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69967,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":69972,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69973,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69979,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69986,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":69998,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70003,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70046,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70065,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70079,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70084,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70095,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":70111,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70114,"TypeID":1,"Label":"","Tags":""},{"StructureID":70116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70120,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70134,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70139,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70171,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70176,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70182,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70205,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":70219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70221,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70302,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70308,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70323,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70335,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70340,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70346,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70352,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70357,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70372,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70398,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70403,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":70415,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70418,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70422,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70427,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70432,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70436,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70449,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70462,"TypeID":1,"Label":"","Tags":""},{"StructureID":70466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70469,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70471,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70481,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70487,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70500,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":70501,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":70514,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70529,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70533,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70535,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70540,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70552,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70562,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70566,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70570,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70581,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70593,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70599,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70601,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70605,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70612,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70615,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70621,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70628,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70632,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70646,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70651,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70653,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70655,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70674,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70682,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70684,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70697,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70699,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70712,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70732,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70743,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70745,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70768,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70770,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70774,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70778,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70780,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70789,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70820,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70833,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70840,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70845,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70878,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":70901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70906,"TypeID":1,"Label":"","Tags":""},{"StructureID":70909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":70924,"TypeID":1,"Label":"GC ON/OFF","Tags":""},{"StructureID":70987,"TypeID":1,"Label":"GC fragment ","Tags":""},{"StructureID":71041,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71063,"TypeID":1,"Label":"YAC WF","Tags":""},{"StructureID":71073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71091,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71108,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71135,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":71145,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71153,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71155,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71202,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71213,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71219,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71227,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71241,"TypeID":1,"Label":"","Tags":""},{"StructureID":71242,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71281,"TypeID":1,"Label":"TH1","Tags":""},{"StructureID":71284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71351,"TypeID":1,"Label":"","Tags":""},{"StructureID":71357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71362,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71369,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71377,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71411,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71435,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71491,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71497,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71513,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71517,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71535,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71538,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71541,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71545,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71574,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71583,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71594,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71597,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":71600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71610,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71618,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71625,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71626,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71632,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71634,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71640,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71671,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71686,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71730,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":71738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71825,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":71830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71877,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71882,"TypeID":1,"Label":"","Tags":""},{"StructureID":71891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71906,"TypeID":1,"Label":"","Tags":""},{"StructureID":71908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71927,"TypeID":1,"Label":"","Tags":""},{"StructureID":71935,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":71953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71985,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":71997,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":71998,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72003,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72031,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72036,"TypeID":1,"Label":"","Tags":""},{"StructureID":72043,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72074,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72076,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72082,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72087,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72109,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72124,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72142,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72154,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72162,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72168,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72173,"TypeID":1,"Label":"","Tags":""},{"StructureID":72176,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72188,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72210,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72226,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72252,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":72259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72271,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72281,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72306,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72326,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72335,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72342,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72344,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72350,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72358,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72363,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72384,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72385,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72402,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":72408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72427,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72458,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72492,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72518,"TypeID":1,"Label":"","Tags":""},{"StructureID":72523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72529,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72592,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72594,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72612,"TypeID":1,"Label":"","Tags":""},{"StructureID":72614,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72640,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72647,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72694,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72724,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72742,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72765,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72778,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72787,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72799,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72821,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72834,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72841,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72873,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72934,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72939,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72941,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":72949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72964,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72965,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72973,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72975,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":72989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72992,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":72994,"TypeID":1,"Label":"","Tags":""},{"StructureID":73004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73006,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73025,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73030,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73086,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73099,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73133,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73146,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73163,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73250,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73270,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73276,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73342,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73348,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73416,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73443,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73453,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73467,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73488,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73494,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73509,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73514,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73573,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73580,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73583,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73594,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73605,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73611,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73613,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73617,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":73619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73620,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73621,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73635,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73639,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73646,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73649,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73658,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73662,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73676,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73687,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73702,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73704,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73710,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73713,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73722,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":73732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73739,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73742,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73759,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73764,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":73810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73825,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73833,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73838,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73906,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":73909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73926,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73979,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":73994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74023,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74047,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":74049,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74081,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74082,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74088,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74104,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74135,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74141,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":74165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74203,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74211,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74213,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74216,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74225,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74231,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74233,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74237,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74238,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74241,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74276,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74279,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74412,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74416,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74471,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74480,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74493,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74499,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74508,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74511,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74536,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74558,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74567,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74573,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74584,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74593,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74614,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74618,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74624,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74625,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74635,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74639,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":74645,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74670,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74694,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74699,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74701,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74706,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74714,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74724,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74726,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74815,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74825,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74828,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74854,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74859,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74863,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74866,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74886,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74890,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74899,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74902,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74904,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74907,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":74909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74939,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74943,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":74957,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74969,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":74994,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75001,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75012,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75015,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75017,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75021,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75028,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75052,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75062,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75065,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75082,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75085,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75099,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75104,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75120,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75130,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":75133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75150,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75158,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75168,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75173,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75179,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75196,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75199,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75214,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75268,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75272,"TypeID":1,"Label":"","Tags":""},{"StructureID":75273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75300,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75307,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75320,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75326,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75350,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75359,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75387,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75390,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75395,"TypeID":1,"Label":"","Tags":""},{"StructureID":75400,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75404,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75440,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75442,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75467,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75485,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75515,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75517,"TypeID":1,"Label":"","Tags":""},{"StructureID":75519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75525,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75530,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75578,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75583,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75603,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75625,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":75630,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75648,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75695,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75700,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75713,"TypeID":1,"Label":"","Tags":""},{"StructureID":75721,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75739,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75742,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75752,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75760,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75782,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75792,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75825,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75830,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75833,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75841,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75893,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75902,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75911,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75917,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":75939,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":75988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76024,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76056,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76060,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76066,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76071,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76086,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76088,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76091,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76103,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76120,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76127,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":76137,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":76141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76211,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76245,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76251,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76277,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76291,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76294,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76298,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76300,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76319,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76336,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76378,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76394,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76409,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76432,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76473,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76489,"TypeID":1,"Label":"","Tags":""},{"StructureID":76492,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76495,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76505,"TypeID":1,"Label":"","Tags":""},{"StructureID":76510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76517,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76520,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76530,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76574,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76582,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76591,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76677,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76724,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76742,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76749,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76752,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76766,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76778,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76786,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76808,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76811,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76837,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76859,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76862,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76867,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76886,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":76895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76956,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76958,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76973,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":76977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76980,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76983,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":76996,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77023,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77068,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":77077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77109,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77116,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77120,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77130,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77132,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77134,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77179,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77199,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77270,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77276,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77332,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77342,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77370,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77378,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77393,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77456,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77488,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77504,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77507,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77513,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77529,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77536,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77555,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77578,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77603,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77619,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77623,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77625,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77637,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77642,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77656,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77658,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77664,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77669,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77674,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77682,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77695,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77708,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77712,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77714,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77718,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77747,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77765,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77790,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77816,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77836,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77840,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77914,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77918,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77973,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77981,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":77988,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":77992,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78021,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78028,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78038,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78067,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78074,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78080,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78083,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78088,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78098,"TypeID":1,"Label":"","Tags":""},{"StructureID":78102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78109,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78126,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78134,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78146,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78179,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78191,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78196,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78224,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78244,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78249,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":78252,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78261,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78283,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78295,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78298,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78303,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78316,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78327,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78330,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78336,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78355,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78378,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78400,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78409,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78415,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78423,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78428,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78444,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78467,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78471,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78478,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78506,"TypeID":1,"Label":"","Tags":""},{"StructureID":78507,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78514,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78520,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78529,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78532,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78552,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78578,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78594,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78617,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78647,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78681,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78686,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78699,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78701,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78709,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78710,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":78715,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78725,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78749,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78787,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78797,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78825,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78839,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78899,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78909,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78910,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78926,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78932,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78964,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":78966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":78997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79004,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79008,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79022,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79061,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79064,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79068,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79069,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79071,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79072,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79074,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79091,"TypeID":1,"Label":"MG","Tags":""},{"StructureID":79106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79159,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79171,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79196,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79209,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79245,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79259,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79309,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79319,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79370,"TypeID":1,"Label":"","Tags":""},{"StructureID":79373,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":79382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79427,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79431,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79433,"TypeID":1,"Label":"","Tags":""},{"StructureID":79450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79457,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79461,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79464,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79470,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79493,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":79498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79502,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79509,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79545,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79551,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79553,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79558,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79584,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79601,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79631,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79645,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79686,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79725,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79726,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79747,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79799,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79802,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79813,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79863,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79869,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79914,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79955,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":79958,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79984,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":79993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80016,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80034,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80049,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80060,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80065,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80067,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80071,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80074,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80083,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80088,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80090,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80094,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80101,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80153,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80154,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80167,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80174,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80185,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80190,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80197,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80209,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80213,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80245,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80248,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80263,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80276,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80293,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80294,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80338,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80348,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80378,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80399,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":80400,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80417,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80425,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80434,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80467,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80509,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80532,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80534,"TypeID":1,"Label":"","Tags":""},{"StructureID":80548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80562,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80582,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80591,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80592,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80596,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80604,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80607,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80609,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80646,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80657,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80665,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80755,"TypeID":1,"Label":"CBb5","Tags":""},{"StructureID":80764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80799,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80816,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80833,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80836,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80839,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80859,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80896,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":80897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80935,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80974,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":80980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80983,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80990,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":80997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81003,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81008,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81017,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81038,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81048,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81051,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81066,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81081,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81085,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81091,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81095,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81120,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81136,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81142,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81146,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81153,"TypeID":1,"Label":"","Tags":""},{"StructureID":81160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81169,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81187,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81193,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81196,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81200,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81211,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81234,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81250,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81300,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81304,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":81308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81348,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81393,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81402,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81429,"TypeID":1,"Label":"","Tags":""},{"StructureID":81430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81433,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81489,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81494,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81528,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81532,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81533,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81566,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81569,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81584,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81605,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81612,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81615,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81622,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81629,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81637,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81649,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81661,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81667,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81685,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81690,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81704,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81708,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81731,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81743,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81753,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":81758,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":81763,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81768,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81825,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81834,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81839,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81862,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81887,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":81894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81925,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":81996,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82006,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82025,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82050,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82060,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82061,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82143,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82172,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82181,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82188,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82216,"TypeID":1,"Label":"","Tags":""},{"StructureID":82217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82229,"TypeID":1,"Label":"","Tags":""},{"StructureID":82241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82252,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82281,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82289,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82305,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82353,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":82362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82430,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":82432,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82442,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82569,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82643,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82644,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82653,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82677,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":82678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82692,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82717,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82723,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82789,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82803,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82806,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82813,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":82817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82887,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82897,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82977,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":82978,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":82999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83049,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83056,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83060,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83133,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83157,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83163,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83179,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":83186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83214,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83222,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83226,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83234,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83238,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83241,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83248,"TypeID":1,"Label":"","Tags":""},{"StructureID":83253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83255,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83266,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83293,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83302,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83329,"TypeID":1,"Label":"","Tags":""},{"StructureID":83331,"TypeID":1,"Label":"","Tags":""},{"StructureID":83352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83360,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83375,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83386,"TypeID":1,"Label":"","Tags":""},{"StructureID":83389,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83409,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83412,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83415,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83449,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83461,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":83470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83514,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":83535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83591,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83603,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83625,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83644,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83668,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83679,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83697,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83708,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83714,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83721,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83725,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83733,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83747,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83764,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83767,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83776,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83788,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83803,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83823,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83828,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83842,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83860,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83890,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83892,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83898,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83907,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83911,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83916,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83921,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83925,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83954,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83975,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83978,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83981,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83992,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":83995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83996,"TypeID":1,"Label":null,"Tags":""},{"StructureID":83999,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84008,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84018,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84024,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84029,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84038,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84041,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84052,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84058,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84061,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84063,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84077,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84082,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84083,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84088,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84106,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84108,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84136,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84142,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84148,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84162,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84181,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84184,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84188,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84193,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84203,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84238,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84254,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84260,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84280,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84283,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84290,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84298,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84316,"TypeID":1,"Label":"","Tags":""},{"StructureID":84335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84369,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84394,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84418,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84427,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84457,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84508,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84514,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84519,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84520,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84572,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":84579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84621,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84639,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84696,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84745,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84759,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84773,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84780,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84790,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84802,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84825,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":84828,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84830,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84886,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84909,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84914,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84926,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":84937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84942,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84965,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84983,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":84988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":84995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85004,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85009,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85015,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85062,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":85068,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85082,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85088,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":85094,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":85096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85100,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85104,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85116,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85119,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":85121,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85128,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85141,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":85144,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85149,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85172,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85184,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85185,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85196,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85197,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85216,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85231,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85250,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85259,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85279,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85284,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85298,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85311,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85338,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85348,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85369,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85377,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85400,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85404,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85426,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85442,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85445,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85450,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85455,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85473,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":85483,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85508,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85510,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85534,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85546,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":85549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85551,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85604,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85620,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85629,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":85634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85666,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85671,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85680,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85683,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85730,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":85735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85740,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":85748,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85755,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85771,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85792,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":85831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85852,"TypeID":1,"Label":"SAC","Tags":""},{"StructureID":85856,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":85861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85924,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85932,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85946,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":85955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85958,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85979,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85982,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":85991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":85997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86001,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86036,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86047,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86050,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86060,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86114,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86128,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86134,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86145,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86162,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86171,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86192,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86201,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86209,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86224,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86231,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86244,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86260,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86268,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86276,"TypeID":1,"Label":"","Tags":""},{"StructureID":86282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86315,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86327,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86345,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86353,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86356,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86369,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86418,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86420,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86438,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86444,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86464,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86473,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86485,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86496,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86512,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86582,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86607,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86609,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86614,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86634,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86662,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86667,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86672,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86685,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86744,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86767,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86783,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86799,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":86806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86812,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86818,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86854,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86862,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86871,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86888,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86891,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86898,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86904,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86915,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86927,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86934,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86940,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86945,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86951,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86971,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":86985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":86997,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87002,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87005,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87052,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87067,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87076,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87098,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":87103,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87130,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87137,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87145,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87149,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87158,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87176,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87189,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87208,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87231,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87238,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87249,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87268,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87277,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87312,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87340,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87342,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87345,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87366,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87373,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87379,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":87385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87390,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87413,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87419,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87432,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87437,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87447,"TypeID":1,"Label":"","Tags":""},{"StructureID":87449,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87457,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87487,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87496,"TypeID":1,"Label":"","Tags":""},{"StructureID":87503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87562,"TypeID":1,"Label":"AI-like","Tags":""},{"StructureID":87569,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87589,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87612,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87626,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87635,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87654,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87667,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":87678,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87721,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87808,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87815,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":87929,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":87934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87972,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":87979,"TypeID":1,"Label":null,"Tags":""},{"StructureID":87999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88003,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88036,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88055,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88082,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88132,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88139,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88154,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":88159,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":88173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88226,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88230,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88247,"TypeID":1,"Label":"","Tags":""},{"StructureID":88252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88260,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88266,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88270,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88290,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88300,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88313,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88344,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88365,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88370,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88375,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88413,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88485,"TypeID":1,"Label":"","Tags":""},{"StructureID":88493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88513,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88594,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88608,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88614,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88642,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88666,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88669,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88682,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88684,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":88689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88690,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88692,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88695,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88711,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88715,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88717,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88723,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88726,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88759,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88762,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88790,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88817,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88833,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88841,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":88864,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":88905,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":88912,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88923,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88929,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88945,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88984,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":88986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":88996,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89008,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89016,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89024,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89058,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89066,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89085,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89086,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89113,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89119,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89120,"TypeID":1,"Label":"CBb3n","Tags":""},{"StructureID":89122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89124,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89133,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89136,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89157,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89181,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89193,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89231,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89248,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89279,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":89285,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":89292,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":89305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89312,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":89317,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89328,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89336,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89355,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":89359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89378,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89400,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89411,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89413,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89420,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":89427,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89447,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89478,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89501,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89503,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89516,"TypeID":1,"Label":"","Tags":""},{"StructureID":89522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89524,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":89533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89536,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":89538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89567,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89599,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89617,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89631,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89644,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89652,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89654,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89677,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89694,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89720,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89760,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89780,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89788,"TypeID":1,"Label":"","Tags":""},{"StructureID":89791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89822,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":89827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89833,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89868,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89887,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89902,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89907,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89910,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89915,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89921,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89928,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":89935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89984,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":89988,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":89993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90004,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90013,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90047,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90049,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90061,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90066,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90077,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90079,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90111,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90113,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":90118,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90134,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90138,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90140,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90151,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90177,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90217,"TypeID":1,"Label":"GC?","Tags":""},{"StructureID":90234,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90278,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90284,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90363,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90366,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90396,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":90409,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90420,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90440,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90471,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90475,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90483,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90526,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90558,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90568,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90585,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90587,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90591,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90597,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90602,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90604,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90615,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90618,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90631,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90642,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90645,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90715,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":90739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90744,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90769,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90772,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90789,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90800,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90806,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90835,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90839,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90859,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90877,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90891,"TypeID":1,"Label":"","Tags":""},{"StructureID":90905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90917,"TypeID":1,"Label":"","Tags":""},{"StructureID":90919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90937,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90943,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90956,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90961,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90969,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90973,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90975,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90979,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":90984,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":90991,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91036,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91060,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91080,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91085,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91103,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91114,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91132,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91138,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91145,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91150,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91156,"TypeID":1,"Label":"","Tags":""},{"StructureID":91167,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91176,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91178,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91188,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91191,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91207,"TypeID":1,"Label":"GAC Aii?","Tags":""},{"StructureID":91213,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91232,"TypeID":1,"Label":"","Tags":""},{"StructureID":91240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91280,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":91376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91446,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91537,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91544,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91551,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91578,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91585,"TypeID":1,"Label":"","Tags":""},{"StructureID":91588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91597,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91653,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91692,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91694,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91727,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91730,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":91737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91742,"TypeID":1,"Label":"","Tags":""},{"StructureID":91743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91746,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91754,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91768,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91805,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91832,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91867,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":91870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91913,"TypeID":1,"Label":"","Tags":""},{"StructureID":91918,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91959,"TypeID":1,"Label":"","Tags":""},{"StructureID":91964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91979,"TypeID":1,"Label":"","Tags":""},{"StructureID":91983,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":91994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92031,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92100,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92149,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92169,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92186,"TypeID":1,"Label":"","Tags":""},{"StructureID":92193,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92226,"TypeID":1,"Label":"GAC Aii?","Tags":""},{"StructureID":92233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92250,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92295,"TypeID":1,"Label":"","Tags":""},{"StructureID":92313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92353,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92372,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92380,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92400,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92427,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92434,"TypeID":1,"Label":"","Tags":""},{"StructureID":92445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92542,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92631,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92789,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92899,"TypeID":1,"Label":"AC extension 91150","Tags":""},{"StructureID":92908,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":92926,"TypeID":1,"Label":"AC 92899 extension","Tags":""},{"StructureID":92935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92942,"TypeID":1,"Label":null,"Tags":""},{"StructureID":92954,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":92970,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":93053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93065,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93074,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93076,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93099,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":93112,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93139,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93172,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93248,"TypeID":1,"Label":"","Tags":""},{"StructureID":93277,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93281,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93315,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93325,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93336,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93355,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93386,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93392,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93407,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93413,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93416,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93420,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93431,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93456,"TypeID":1,"Label":"Aii","Tags":""},{"StructureID":93463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93489,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":93494,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93514,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":93523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93544,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93555,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93557,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93574,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93634,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93685,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93779,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93881,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":93915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93923,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93927,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93935,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93945,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93957,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93975,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93979,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":93991,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":93993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94003,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94005,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94007,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94018,"TypeID":1,"Label":"","Tags":""},{"StructureID":94021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94031,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94038,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94048,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94082,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94136,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94153,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94220,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94231,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94234,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94251,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94252,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94279,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94281,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94297,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94320,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94326,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94344,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94365,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94391,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94409,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94414,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94417,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94462,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94500,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94507,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94525,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94536,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94583,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94649,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94652,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94660,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94664,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94692,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94705,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94741,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94784,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94794,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94796,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94803,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94824,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94838,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94867,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94878,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94918,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94926,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94939,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94956,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94962,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":94981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94983,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":94999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95062,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95066,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95072,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":95097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95134,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95238,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95250,"TypeID":1,"Label":"GAC Aii?","Tags":""},{"StructureID":95256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95260,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95307,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95319,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95323,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95343,"TypeID":1,"Label":"","Tags":""},{"StructureID":95349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95411,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95416,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95551,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95556,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95562,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95578,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95603,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95605,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95640,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95662,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95670,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95673,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95676,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95688,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95690,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95696,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95699,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95700,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95701,"TypeID":1,"Label":"","Tags":""},{"StructureID":95703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95708,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95717,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95759,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95863,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95877,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95895,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95910,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95911,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95922,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95927,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95945,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95959,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95983,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":95997,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":95999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96011,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96036,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96083,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96143,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96152,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96202,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96212,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96234,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96238,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96249,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96268,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96270,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96293,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96308,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96310,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96311,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96315,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96319,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96325,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96341,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96357,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96407,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96413,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96435,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96442,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96494,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96506,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96519,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96522,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96555,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96562,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96589,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96617,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96619,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96621,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96629,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96638,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96649,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96657,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96668,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96679,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96688,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96699,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96705,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96708,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96711,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96736,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96738,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96768,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96779,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96786,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96788,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96794,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96801,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96805,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96807,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96812,"TypeID":1,"Label":"","Tags":""},{"StructureID":96822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96848,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96852,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96914,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96921,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96927,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96930,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96943,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96955,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96958,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96976,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96984,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96986,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":96995,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":96997,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97003,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97005,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97011,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97015,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97020,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97024,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97025,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97041,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97046,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97048,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97054,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97061,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97065,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97068,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97086,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97087,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97105,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97113,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97139,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97146,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97148,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97155,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97171,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97188,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97193,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97194,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97198,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97212,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97221,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97227,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97232,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97234,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97261,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97265,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97275,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97294,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97295,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97352,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":97355,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97358,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97363,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97417,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97420,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97439,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97464,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97475,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97485,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97492,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97494,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97500,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97509,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97514,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97532,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97546,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97548,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97558,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97568,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97575,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97578,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97597,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97605,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97627,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97671,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97676,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97684,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97722,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97730,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97743,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97764,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97774,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97780,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97786,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97790,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97792,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97794,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97797,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97803,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97814,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97828,"TypeID":1,"Label":"BCx","Tags":""},{"StructureID":97853,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97925,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97927,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97938,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":97951,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":97959,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98016,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98030,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98041,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98074,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98100,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98151,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98171,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98186,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98188,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98190,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98193,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98216,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98235,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98238,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98251,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98258,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98262,"TypeID":1,"Label":"","Tags":""},{"StructureID":98270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98279,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98289,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98314,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98321,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98345,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98348,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98365,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98372,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98375,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98409,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98411,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98413,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98418,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98434,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98438,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98456,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98471,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98484,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98530,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98534,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98535,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98537,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98550,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98574,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98585,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98589,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98599,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98611,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98618,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98627,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98655,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98663,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98694,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98714,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98725,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98749,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98751,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98754,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98758,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98759,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98762,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":98766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98786,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98800,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98823,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98833,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98843,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98849,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98864,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98878,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98891,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98914,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98917,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98924,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98927,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98929,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98958,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98960,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98962,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":98983,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":98999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99004,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99012,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99016,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99025,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99040,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99047,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99048,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99054,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99062,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99065,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99076,"TypeID":1,"Label":"","Tags":""},{"StructureID":99077,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99080,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99088,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99094,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99096,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99100,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99106,"TypeID":1,"Label":"","Tags":""},{"StructureID":99112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99125,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99132,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99136,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99142,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99225,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99237,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99240,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99249,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99255,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99261,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99268,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99314,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99316,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99319,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99325,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99338,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99356,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":99361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99370,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":99375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99435,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99443,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99453,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99461,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99468,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99482,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99501,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99504,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99513,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":99515,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99546,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99551,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99575,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99584,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99586,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99589,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99600,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99614,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99617,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99621,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99628,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99632,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99639,"TypeID":1,"Label":"","Tags":""},{"StructureID":99642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99644,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99719,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99722,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99741,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99742,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99753,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99769,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99771,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99773,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99783,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99789,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99792,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99799,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99801,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99818,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99824,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99831,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99835,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99841,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99844,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99847,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99850,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99862,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99870,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99891,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99922,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99930,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99938,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99948,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99958,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99960,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99984,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":99987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":99995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100006,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100014,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100018,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100029,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100038,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100041,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100047,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100055,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100062,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100076,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100084,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100110,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100113,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100128,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100146,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100152,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100153,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100173,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100176,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100187,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100189,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":100195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100205,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100207,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100209,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100210,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100217,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100231,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100250,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100254,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100261,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100264,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100266,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100275,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100278,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100279,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100282,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":100289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100296,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100302,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100308,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100310,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100332,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100338,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100355,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100357,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100366,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100396,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100400,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100413,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100414,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100419,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100426,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100441,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100445,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100450,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100455,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100460,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100467,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100503,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100512,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100524,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100536,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100541,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100546,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100557,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100562,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100574,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100578,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100591,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100593,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100596,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100605,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100614,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100634,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100644,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100651,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100654,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":100664,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100667,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100669,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100679,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100685,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100692,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100709,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100713,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100717,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100729,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100733,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100737,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100741,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100744,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100752,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100765,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100771,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100787,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100788,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100803,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100808,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100816,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100820,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100826,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100828,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100834,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100835,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100837,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100874,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100877,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100878,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100882,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100888,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100895,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100901,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100911,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100918,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100934,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100942,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100953,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100972,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100981,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":100987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":100994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101000,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101004,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101015,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101031,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101041,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101050,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101085,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101090,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101124,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101129,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101138,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101142,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101145,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101161,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101187,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101190,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101194,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101201,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101206,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101213,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101228,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101230,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101234,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101238,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101243,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101249,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101257,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101261,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101277,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101294,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101360,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101368,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101369,"TypeID":1,"Label":"GCX","Tags":""},{"StructureID":101375,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101378,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101384,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101392,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101394,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101401,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101428,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101437,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101439,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101455,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101464,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101470,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101489,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101509,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101536,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101544,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101552,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101553,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":101558,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101567,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101570,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101574,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101578,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101581,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101583,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101592,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101594,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101596,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101598,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101602,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101606,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101613,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101615,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101617,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101623,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101625,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101644,"TypeID":1,"Label":"","Tags":""},{"StructureID":101647,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101651,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101657,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101661,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101662,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101668,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101681,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101686,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101692,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101697,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101711,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101742,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101744,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101751,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101765,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101789,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101790,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101802,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101808,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101815,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101818,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101826,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101830,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101833,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101837,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101849,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101850,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101888,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101896,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101935,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101938,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101951,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101952,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101958,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101961,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101978,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101982,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":101989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":101993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102011,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102034,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102036,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102039,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102055,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102065,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102085,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102101,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102110,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102113,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102129,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102135,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102136,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102149,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102150,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102153,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102162,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102168,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102171,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102179,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102191,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102196,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102202,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102206,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102216,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102222,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102224,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102226,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102230,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102235,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102250,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102254,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102276,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102286,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102290,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102295,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102298,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102307,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102310,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102314,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102323,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102343,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102354,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102358,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102391,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102405,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102414,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102416,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102417,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102423,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102425,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102429,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102437,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102440,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102451,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102459,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":102461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102467,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102504,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102509,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102524,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102527,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102529,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102545,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102555,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102565,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102586,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102596,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102599,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102600,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102603,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102607,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102631,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102635,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102639,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102650,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102655,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102658,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102671,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102683,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102687,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102704,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102709,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102710,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102724,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102726,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102730,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102736,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102741,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102744,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102759,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102764,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102785,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102787,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102795,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102813,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102820,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102825,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102828,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102845,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102859,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102863,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102867,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102869,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102912,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102932,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102946,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102985,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":102990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102993,"TypeID":1,"Label":null,"Tags":""},{"StructureID":102999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103001,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103008,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103011,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103047,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103054,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103058,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103060,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103064,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103070,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103076,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103084,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103090,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103105,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103108,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103128,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103132,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103136,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103158,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103179,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103182,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103185,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103240,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103244,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103254,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103265,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103274,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103281,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103287,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103291,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103307,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103313,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103316,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103319,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103326,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103334,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103352,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103358,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103362,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103392,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103411,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103417,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103427,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103437,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103444,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103462,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103508,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103514,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103517,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103532,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103534,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103541,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103543,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103557,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103592,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103595,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103601,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103603,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103613,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103648,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103675,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103690,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103699,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103725,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103728,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103734,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103738,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103743,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103754,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103820,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103823,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103830,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103834,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103841,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103869,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103880,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103907,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103951,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103958,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103969,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":103975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":103999,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104009,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104013,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104038,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104043,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104049,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104056,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104062,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104063,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104082,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104084,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104109,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104120,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104130,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104140,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104143,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104155,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104157,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104160,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104168,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104170,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104208,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104211,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104216,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104244,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104250,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104266,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104273,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104276,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104285,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104289,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104299,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104340,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104346,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104352,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104368,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104410,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104411,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104430,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104434,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104435,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104452,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104462,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104468,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104473,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104480,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104484,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104489,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104505,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104509,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104526,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104538,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104541,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104556,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104565,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104571,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104572,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104580,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104587,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104591,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104593,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104616,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104619,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104633,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104636,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104638,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104651,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104655,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104662,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104669,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104690,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104717,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104719,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104721,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104724,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104733,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104735,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104739,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104744,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104751,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104754,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104774,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104788,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104794,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104808,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104823,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104834,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104842,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104850,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104914,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104933,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104979,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104981,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104985,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104990,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":104995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":104998,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105007,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105016,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105022,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105023,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105030,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105036,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105040,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105044,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105048,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105058,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105062,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105067,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105078,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105081,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105090,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105095,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105100,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105119,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105128,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105131,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105140,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105146,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105148,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105153,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105161,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105167,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105171,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105177,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105188,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105210,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105212,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":105219,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105226,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105234,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105239,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105241,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105250,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105265,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105279,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105280,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105294,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105297,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105300,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105320,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105324,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105341,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105346,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105349,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105359,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105376,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105418,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105426,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105429,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105434,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105443,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105447,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105450,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105464,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":105467,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105471,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105509,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105511,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105526,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105547,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105553,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105558,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105580,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105585,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105588,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105609,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105612,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105624,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105633,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105635,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105640,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105643,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105666,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105670,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105679,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105694,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105729,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105739,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105745,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105773,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105780,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":105788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105838,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105862,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105871,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105873,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105875,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105878,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105881,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105884,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105906,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105907,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105927,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105928,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105942,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105968,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105971,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105972,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105982,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105990,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":105992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":105996,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106000,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106007,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106023,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106041,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106048,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106056,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106059,"TypeID":1,"Label":"GAC?","Tags":""},{"StructureID":106060,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106067,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106070,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106075,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106080,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106083,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106087,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106090,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106098,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106105,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106107,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106112,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106119,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106131,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106134,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106143,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106153,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106158,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106161,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106165,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106168,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106170,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106175,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106177,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106179,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106213,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106224,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106240,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106247,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106249,"TypeID":1,"Label":"","Tags":""},{"StructureID":106253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106256,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106258,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106273,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106277,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106285,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106291,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106296,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106298,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106303,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106308,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106313,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106315,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106326,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106329,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106333,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106336,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106345,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106370,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106375,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106378,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106384,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106387,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106413,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106418,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106424,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106427,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106435,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106438,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106446,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106454,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106456,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106458,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106466,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106468,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106480,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106490,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106493,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106495,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106528,"TypeID":1,"Label":"CBax","Tags":""},{"StructureID":106531,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106532,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106541,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106562,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106571,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106574,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106580,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106586,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106597,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106604,"TypeID":1,"Label":" AC","Tags":""},{"StructureID":106612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106616,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106617,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106619,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106637,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106651,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106659,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106661,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106665,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106675,"TypeID":1,"Label":"","Tags":""},{"StructureID":106689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106711,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106712,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106715,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106717,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106720,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106742,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106744,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106752,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106761,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106778,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106792,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106801,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106809,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106813,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106835,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106836,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106839,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106848,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106859,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106863,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106877,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106886,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106887,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106890,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106903,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106924,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":106931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":106941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107051,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107054,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107059,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107061,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107063,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107071,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107074,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107078,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107085,"TypeID":1,"Label":"","Tags":""},{"StructureID":107092,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107102,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107121,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107126,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107132,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107134,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107156,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107176,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107179,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107196,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107213,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107222,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107246,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107248,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107253,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107262,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107265,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107267,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107275,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107280,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107306,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107328,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107330,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107344,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107360,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107363,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107367,"TypeID":1,"Label":"BC","Tags":""},{"StructureID":107370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107377,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107378,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107383,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107408,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107418,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107420,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107429,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107431,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107433,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107438,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107442,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107445,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107455,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107460,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107490,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107494,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107502,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107504,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107508,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107512,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107525,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107530,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107543,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107551,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107567,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107583,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107587,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107597,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107612,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107619,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107622,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107661,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107665,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107686,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107687,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107699,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107706,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107712,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107719,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107725,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107736,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107747,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107753,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107755,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107758,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107762,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107789,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107792,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107794,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107796,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107802,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107815,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107820,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107833,"TypeID":1,"Label":" AC","Tags":""},{"StructureID":107836,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107838,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107840,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107843,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107845,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107853,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107855,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107875,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107882,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107887,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107900,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107908,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107910,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107915,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107918,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107930,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107933,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107937,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107939,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107950,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107957,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107961,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107966,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107968,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107973,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107974,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107979,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107981,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107982,"TypeID":1,"Label":"AC ","Tags":""},{"StructureID":107988,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":107989,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":107999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108010,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108011,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108031,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108032,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108038,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108040,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108041,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108048,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108061,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108066,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108072,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108076,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108079,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108083,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108089,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108094,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108100,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108108,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108109,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108111,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108114,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108119,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108143,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108151,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108154,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108170,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108178,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108194,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108196,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108209,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108215,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108225,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108229,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108254,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108273,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108284,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108298,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108300,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108306,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108309,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108317,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108325,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108327,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108336,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108357,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108374,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108398,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108408,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108415,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108418,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108426,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108429,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108434,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108442,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108448,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108464,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108469,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108485,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108498,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108522,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108529,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108533,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108539,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108569,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108616,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108701,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108715,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108724,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108727,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108730,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108745,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108749,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108766,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108768,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108770,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108771,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108787,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108800,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108814,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108818,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108822,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108825,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108826,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108835,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108839,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108845,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108849,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108861,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108865,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108871,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108899,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108937,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108944,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108963,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108988,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":108993,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108996,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":108999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109004,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109016,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109021,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109029,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109030,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109053,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109065,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109068,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109079,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109084,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109097,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109116,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109119,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109135,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109147,"TypeID":1,"Label":"","Tags":""},{"StructureID":109149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109163,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109166,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109190,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109210,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109214,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109216,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109220,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109223,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109225,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109226,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109237,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109245,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109251,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109252,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109257,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109271,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109274,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109277,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109291,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109293,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109305,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109308,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109316,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109318,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109341,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109347,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109350,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109419,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109420,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109424,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109445,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109450,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109456,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109468,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109483,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109488,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109491,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109504,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109528,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109530,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109540,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109554,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109559,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109565,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109574,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109575,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109597,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109608,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109678,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109681,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109696,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109706,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109710,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109716,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109730,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109742,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109750,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109762,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109778,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109781,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109793,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109797,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109799,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109802,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109804,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109809,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109814,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109816,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109825,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109831,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109834,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109839,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109851,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109858,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109865,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109872,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109879,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109887,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109893,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109895,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109922,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109924,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109932,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109936,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109943,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109952,"TypeID":1,"Label":"","Tags":""},{"StructureID":109956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109980,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109986,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":109991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":109997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110013,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110019,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110022,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110024,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110035,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110040,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110050,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110054,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110062,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110066,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110072,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110081,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110087,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110095,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110104,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110107,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110112,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110115,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110121,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110124,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110127,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110129,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110134,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110137,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110140,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110142,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110151,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110155,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110159,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110169,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110175,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110181,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110247,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110248,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110259,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110265,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110271,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110277,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110281,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110289,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110295,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110301,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110312,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110313,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110316,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110327,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110352,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110354,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110356,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110378,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110385,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110392,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110403,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110406,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110416,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110418,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110422,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110429,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110441,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110444,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110451,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110457,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110459,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110463,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110475,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110479,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110484,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110488,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110490,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110493,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110496,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110499,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110501,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110506,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110512,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110535,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110562,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110566,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110567,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110570,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110580,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110583,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110586,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110595,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110600,"TypeID":1,"Label":"Ac","Tags":""},{"StructureID":110607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110610,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110614,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110617,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110622,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110623,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110630,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110638,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110646,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110648,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110649,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110652,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110666,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110668,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110676,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110686,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110694,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110697,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110714,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110720,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110722,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110728,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110736,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110743,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110747,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110755,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110769,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110783,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110793,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110796,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110798,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110800,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110805,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110807,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110809,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110816,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110819,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110824,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110828,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110830,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110835,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110842,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110857,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110867,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110869,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110879,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110880,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110899,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110903,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110905,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110908,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110940,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110944,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110959,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110964,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110970,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110977,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":110979,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":110999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111001,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111006,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111029,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111035,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111037,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111043,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111049,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111054,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111057,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111059,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111070,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111078,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111080,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111084,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111092,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111098,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111100,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111110,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111111,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111117,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111139,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111142,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111146,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111149,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111160,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111164,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111165,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111171,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111174,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111178,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111180,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111183,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":111187,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111207,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111212,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111216,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111218,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111231,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111235,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111238,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111248,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111251,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111260,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111264,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111269,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111276,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111278,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111286,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111288,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111296,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111298,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111299,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111303,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111306,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111311,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111312,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111324,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111328,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111330,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111335,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111339,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111344,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111356,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111369,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111371,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111377,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111379,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111382,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111386,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111399,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111414,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111421,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111424,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111428,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111452,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111455,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111462,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111468,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111470,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111474,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111479,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111485,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111493,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111496,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111497,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111501,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111521,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111528,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111531,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111533,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111539,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111546,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111551,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111564,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111568,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111572,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111580,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111584,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111587,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111590,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111595,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111598,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111602,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111604,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111611,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111615,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111616,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111620,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111623,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111629,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111630,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111638,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111662,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111672,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111684,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111687,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111708,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111717,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111734,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111735,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111740,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111746,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111751,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111753,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111755,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111767,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111788,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111791,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111799,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111803,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111806,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111808,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111812,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111813,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111814,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111821,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111827,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111829,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111835,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111838,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111842,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111848,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111852,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111856,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111866,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111869,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111872,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111883,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111887,"TypeID":1,"Label":"","Tags":""},{"StructureID":111890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111894,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111899,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111908,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111912,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111914,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111920,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111926,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111929,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111931,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111937,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111939,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111953,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111957,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111963,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111968,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":111974,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111976,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111980,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111986,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":111997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112005,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112010,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112017,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112020,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112024,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112028,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112032,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112036,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112042,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112045,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112049,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112057,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112062,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112069,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112071,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112077,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112081,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112084,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112087,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112089,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112094,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112096,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112102,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112105,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112108,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112111,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112115,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112120,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112122,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112126,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112128,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112130,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112142,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112144,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112151,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112155,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112157,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112160,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112166,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112168,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112170,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112172,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112176,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112180,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112182,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112184,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112186,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112188,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112197,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112199,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112203,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112205,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112207,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112209,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112211,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112217,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112221,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112230,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112232,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112241,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112244,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112253,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112255,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112267,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112271,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112273,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112275,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112284,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112286,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112290,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112292,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112297,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112310,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112313,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112319,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112322,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112328,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112333,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112340,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112342,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112351,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112358,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112360,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112362,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112370,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112374,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112384,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112386,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112392,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112395,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112402,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112404,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112409,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112411,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112415,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112419,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112425,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112427,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112436,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112447,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112455,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112458,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112468,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112480,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112481,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112496,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112500,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112505,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112507,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112518,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112523,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112525,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112545,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112549,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112560,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112577,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112584,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112593,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112594,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112607,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112625,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112628,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112632,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112634,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112638,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112648,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112656,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112661,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112666,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112677,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112684,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112689,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112692,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112694,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112700,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112703,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112712,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112727,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112729,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112737,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112748,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":112753,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112756,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112761,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112764,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112766,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112777,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112784,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112824,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112835,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112841,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112843,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112859,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112880,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112887,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112898,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112903,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112912,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112925,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112937,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112938,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112942,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112964,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112966,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112969,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112978,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112984,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112986,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112989,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":112991,"TypeID":1,"Label":null,"Tags":""},{"StructureID":112995,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113068,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113086,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113088,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113091,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113095,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113099,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113103,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113120,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113122,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113129,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113131,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113135,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113140,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113147,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113149,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113153,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113156,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113159,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113164,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113167,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113170,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113173,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113176,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113179,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113186,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113242,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113332,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113342,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113541,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":113547,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":113689,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113693,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":113810,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":113841,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113939,"TypeID":1,"Label":null,"Tags":""},{"StructureID":113965,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114221,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114230,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114242,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114540,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114547,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114556,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114558,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114560,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114564,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114568,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114576,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114618,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114692,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114695,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114698,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114702,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114705,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114709,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114721,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114724,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114726,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114729,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114732,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114741,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114745,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114747,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114757,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":114760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114925,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":114931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":114996,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115013,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":115118,"TypeID":1,"Label":"GAC AII","Tags":""},{"StructureID":115133,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115195,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115206,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115424,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":115430,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115432,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115487,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115504,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":115510,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115525,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115529,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115537,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115574,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115577,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115581,"TypeID":1,"Label":"BC","Tags":""},{"StructureID":115602,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115605,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115613,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115626,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115641,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115647,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115658,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115691,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115701,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115810,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115853,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115855,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115860,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115870,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115875,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115878,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115880,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115888,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115890,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115895,"TypeID":1,"Label":"","Tags":""},{"StructureID":115897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115900,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115919,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115921,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115922,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115923,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115928,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115935,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115940,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115942,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115944,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115946,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115949,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115953,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115969,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115974,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115977,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115983,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":115984,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115990,"TypeID":1,"Label":null,"Tags":""},{"StructureID":115992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116142,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116279,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116368,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116373,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116378,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116381,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116387,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116400,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116451,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116475,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":116504,"TypeID":1,"Label":"","Tags":""},{"StructureID":116581,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116729,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116769,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116775,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116778,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116785,"TypeID":1,"Label":null,"Tags":""},{"StructureID":116788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116791,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116835,"TypeID":1,"Label":"Aii extension","Tags":""},{"StructureID":116919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":116925,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":117065,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117091,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117093,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117112,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":117127,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":117132,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":117200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117202,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117204,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117214,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117218,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117233,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117242,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117248,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117263,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117269,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117272,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117285,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117287,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117390,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117394,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117399,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117404,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117406,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117408,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117411,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117421,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117429,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117433,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117440,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117450,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117461,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117470,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117476,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117637,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117639,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117643,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117645,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117659,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117662,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117668,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117670,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117672,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117678,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117679,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117683,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117689,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117774,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":117778,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":117780,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117803,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117805,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117811,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117813,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117820,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117835,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117851,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117854,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117858,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117860,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117863,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117868,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117873,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117876,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117883,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117887,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117892,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117904,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":117919,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":117990,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":117999,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":118014,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118058,"TypeID":1,"Label":"CBb4w","Tags":""},{"StructureID":118087,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":118258,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":118301,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":118315,"TypeID":1,"Label":"","Tags":""},{"StructureID":118372,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118380,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118388,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118391,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118395,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":118398,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118405,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118410,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118414,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118446,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118449,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118453,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118588,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118590,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118654,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":118682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118949,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":118997,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":119000,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119008,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119017,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119020,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119028,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":119154,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119241,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":119270,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119388,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":119517,"TypeID":1,"Label":"","Tags":""},{"StructureID":119547,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":119943,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119945,"TypeID":1,"Label":null,"Tags":""},{"StructureID":119971,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120194,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120197,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120253,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120270,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120285,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120291,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120299,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120303,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120309,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120311,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120318,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120323,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120329,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120334,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120337,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120347,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120355,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120359,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120361,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120370,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120372,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120379,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120389,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120393,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120396,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120398,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120400,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120403,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120409,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120416,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120420,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120423,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120425,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120439,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120445,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120452,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120456,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120458,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120464,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120466,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120470,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120474,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120476,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120478,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120480,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120482,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120484,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120489,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120494,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120497,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120499,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120507,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120509,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120513,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120518,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120521,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120523,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120534,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120538,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120542,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120544,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120546,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120548,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120552,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120554,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120556,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120559,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120561,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120565,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120630,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120632,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120634,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120639,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120674,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120777,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120779,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120783,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120885,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120888,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120890,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120892,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120894,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120896,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120898,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120903,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120906,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120909,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120911,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120913,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120915,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120917,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120920,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120923,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120925,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120945,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120948,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120956,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120960,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120963,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":120987,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120997,"TypeID":1,"Label":null,"Tags":""},{"StructureID":120999,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121001,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121006,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121009,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121048,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121051,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121064,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121066,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121073,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121075,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":121082,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121101,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121103,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121106,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121111,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121113,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121117,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121121,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121123,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121135,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121141,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121155,"TypeID":1,"Label":"","Tags":""},{"StructureID":121177,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":121258,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121265,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121282,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121286,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121288,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121292,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121294,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121303,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121305,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121307,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121309,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121313,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121315,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121321,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121323,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121325,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121331,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121336,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121339,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121345,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121348,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121353,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121356,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121362,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121365,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121367,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121369,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121372,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121375,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121380,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121382,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121387,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121394,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121397,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121404,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121407,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121411,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121413,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121415,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121420,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121422,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121432,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121437,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121444,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121448,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121452,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121454,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121457,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121461,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121463,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121465,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121467,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121470,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121472,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121477,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121484,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121486,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121488,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121490,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121499,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121501,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121511,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121516,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121519,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121522,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121524,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121526,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121530,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121536,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":121541,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":121635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121647,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121660,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":121663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121714,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121723,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121727,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121757,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121823,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121827,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121864,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121866,"TypeID":1,"Label":"","Tags":""},{"StructureID":121881,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121889,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121893,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121899,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":121913,"TypeID":1,"Label":"","Tags":""},{"StructureID":121916,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121946,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":121948,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":121952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121955,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121958,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121967,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":121978,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122018,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122073,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122081,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122091,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":122104,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":122173,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122207,"TypeID":1,"Label":"CB","Tags":""},{"StructureID":122242,"TypeID":1,"Label":"CBab","Tags":""},{"StructureID":122353,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122415,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":122420,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":122424,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":122431,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122459,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122463,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":122467,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":122469,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122484,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":122488,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":122564,"TypeID":1,"Label":"","Tags":""},{"StructureID":122595,"TypeID":1,"Label":"","Tags":""},{"StructureID":122663,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122705,"TypeID":1,"Label":"XAC","Tags":""},{"StructureID":122707,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122711,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":122716,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":122750,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":122756,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":122760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122768,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":122777,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122801,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122803,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122829,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":122849,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":122868,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":122893,"TypeID":1,"Label":"Rod BC","Tags":""},{"StructureID":122930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":122933,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":123146,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":123181,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":123183,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":123186,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":123189,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":123192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123194,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123197,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":123199,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123209,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":123212,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":123215,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123223,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":123227,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123243,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123317,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123322,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123499,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":123551,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":123552,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123573,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123576,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123579,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":123675,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":124069,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":124198,"TypeID":1,"Label":null,"Tags":""},{"StructureID":124282,"TypeID":1,"Label":null,"Tags":""},{"StructureID":124301,"TypeID":1,"Label":"","Tags":""},{"StructureID":124313,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":124402,"TypeID":1,"Label":null,"Tags":""},{"StructureID":124486,"TypeID":1,"Label":null,"Tags":""},{"StructureID":124547,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":124780,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":125157,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":125389,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":125397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":125685,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":125767,"TypeID":1,"Label":null,"Tags":""},{"StructureID":125857,"TypeID":1,"Label":null,"Tags":""},{"StructureID":125934,"TypeID":1,"Label":null,"Tags":""},{"StructureID":125981,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":126012,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126047,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126536,"TypeID":1,"Label":"CBax","Tags":""},{"StructureID":126582,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126585,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126646,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126763,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126886,"TypeID":1,"Label":null,"Tags":""},{"StructureID":126901,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127070,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127148,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127240,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127253,"TypeID":1,"Label":"","Tags":""},{"StructureID":127256,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127262,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127277,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127302,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127304,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127306,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127417,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127650,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127653,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127719,"TypeID":1,"Label":"CBx 127719","Tags":""},{"StructureID":127749,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127764,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":127776,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127781,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127783,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127796,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127813,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127832,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127841,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127846,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":127897,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127930,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":127940,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":127946,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":127953,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127964,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":127972,"TypeID":1,"Label":null,"Tags":""},{"StructureID":127999,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":128006,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128015,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":128044,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128060,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128082,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":128097,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128101,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128107,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128122,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":128150,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":128152,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128171,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":128184,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128191,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128193,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128205,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":128278,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128682,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128685,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":128696,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128758,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128800,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128803,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128816,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":128843,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128961,"TypeID":1,"Label":null,"Tags":""},{"StructureID":128992,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129048,"TypeID":1,"Label":"CBb","Tags":""},{"StructureID":129144,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":129154,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129181,"TypeID":1,"Label":"CBax","Tags":""},{"StructureID":129192,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129199,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129201,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129292,"TypeID":1,"Label":"BC","Tags":""},{"StructureID":129340,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":129465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129466,"TypeID":35,"Label":null,"Tags":""},{"StructureID":129484,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129563,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129610,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129648,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129660,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129666,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129676,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129696,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129721,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129738,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129746,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129755,"TypeID":1,"Label":null,"Tags":""},{"StructureID":129762,"TypeID":1,"Label":"CB","Tags":""},{"StructureID":129775,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129781,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129788,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129798,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129800,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129827,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129840,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":129851,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":129875,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":129877,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129924,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129927,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":129952,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129954,"TypeID":1,"Label":"BC","Tags":""},{"StructureID":129956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129961,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129967,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":129994,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":129995,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":130006,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130012,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130038,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130039,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130125,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130150,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130152,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130189,"TypeID":1,"Label":"","Tags":""},{"StructureID":130200,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130205,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130208,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130228,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130237,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130239,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130255,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130256,"TypeID":1,"Label":"BC","Tags":""},{"StructureID":130365,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130371,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":130383,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130389,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130408,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130472,"TypeID":1,"Label":"","Tags":""},{"StructureID":130644,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130710,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130755,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130760,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130762,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130772,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130885,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130930,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130941,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":130964,"TypeID":1,"Label":null,"Tags":""},{"StructureID":130975,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131156,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131177,"TypeID":1,"Label":"","Tags":""},{"StructureID":131244,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131246,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131284,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":131286,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":131364,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131496,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131516,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131568,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131630,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131635,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131638,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131642,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131664,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":131704,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131708,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":131740,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":131886,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":131988,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132009,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":132021,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":132038,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":132081,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":132123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132135,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132158,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":132162,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132202,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":132220,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":132255,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132257,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132259,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132712,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132722,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132740,"TypeID":1,"Label":null,"Tags":""},{"StructureID":132773,"TypeID":1,"Label":"GAC AII?","Tags":""},{"StructureID":133015,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133027,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133192,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133260,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133264,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133304,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133451,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":133550,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133553,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133557,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133744,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133755,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":133757,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":133779,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133782,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133784,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133786,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133804,"TypeID":1,"Label":null,"Tags":""},{"StructureID":133891,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134553,"TypeID":1,"Label":"","Tags":""},{"StructureID":134654,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134657,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134659,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134662,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134664,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134667,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134669,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134671,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134674,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134677,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134681,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134687,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134691,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134693,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134701,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134703,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134706,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134713,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134715,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134718,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134950,"TypeID":1,"Label":null,"Tags":""},{"StructureID":134952,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":134954,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135039,"TypeID":1,"Label":"GAC AII?","Tags":""},{"StructureID":135052,"TypeID":1,"Label":"GAC AII?","Tags":""},{"StructureID":135183,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135186,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135196,"TypeID":1,"Label":"YAC Ai","Tags":""},{"StructureID":135208,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135213,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135219,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":135225,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":135229,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":135258,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":135281,"TypeID":1,"Label":"GAC","Tags":""},{"StructureID":135295,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":135401,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":135563,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135829,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135862,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135876,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135877,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":135884,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135909,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135924,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135941,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135956,"TypeID":1,"Label":"GAC?","Tags":""},{"StructureID":135982,"TypeID":1,"Label":null,"Tags":""},{"StructureID":135994,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136005,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136026,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136033,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136037,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136042,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136046,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136075,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136127,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136140,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":136169,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136177,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136236,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136256,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":136291,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136331,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136351,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":136362,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":136381,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":136393,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136418,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":136427,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":136432,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":136465,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136486,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":136513,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":136529,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":136531,"TypeID":1,"Label":"AC?","Tags":""},{"StructureID":136659,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136667,"TypeID":1,"Label":"","Tags":""},{"StructureID":136674,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136677,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136680,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136688,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136700,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136707,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136711,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136728,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136731,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136733,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136736,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136739,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136742,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136748,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136759,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136766,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136786,"TypeID":1,"Label":"","Tags":""},{"StructureID":136790,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136796,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136817,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136819,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136822,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136824,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136826,"TypeID":1,"Label":"","Tags":""},{"StructureID":136843,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136884,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":136913,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136917,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136927,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136931,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136936,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136947,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136952,"TypeID":1,"Label":null,"Tags":""},{"StructureID":136956,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":136970,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":137002,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137007,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137009,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":137012,"TypeID":1,"Label":"GAC Aii","Tags":""},{"StructureID":137024,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":137040,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137070,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":137084,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":137099,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":137113,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":137122,"TypeID":1,"Label":"GC","Tags":""},{"StructureID":137147,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137155,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137159,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":137162,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":137168,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":137189,"TypeID":1,"Label":null,"Tags":""},{"StructureID":137192,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147203,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147213,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":147217,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147220,"TypeID":1,"Label":"CBx","Tags":""},{"StructureID":147412,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147696,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147698,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147713,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147718,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147734,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147750,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147765,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":147769,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147776,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147781,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147788,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147793,"TypeID":1,"Label":null,"Tags":""},{"StructureID":147796,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":147805,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":147809,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":147818,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148300,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148302,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148314,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148317,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148330,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148332,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148335,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148337,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148343,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148346,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148351,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148354,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148358,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148361,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148364,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148367,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148371,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148374,"TypeID":1,"Label":"YAC","Tags":""},{"StructureID":148377,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":148381,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":148384,"TypeID":1,"Label":"","Tags":""},{"StructureID":148389,"TypeID":1,"Label":"CBa","Tags":""},{"StructureID":148397,"TypeID":1,"Label":null,"Tags":""},{"StructureID":148402,"TypeID":1,"Label":"AC","Tags":""},{"StructureID":158472,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158473,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158477,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158498,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158503,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158507,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158515,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158518,"TypeID":1,"Label":"BC ASB","Tags":""},{"StructureID":158538,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158673,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158774,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158844,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158846,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158859,"TypeID":1,"Label":"","Tags":""},{"StructureID":158878,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158899,"TypeID":1,"Label":null,"Tags":""},{"StructureID":158907,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159028,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159045,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159084,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159118,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159123,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159125,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159146,"TypeID":1,"Label":null,"Tags":""},{"StructureID":159150,"TypeID":1,"Label":null,"Tags":""}],"edges":[{"ID":0,"SourceStructureID":8551,"TargetStructureID":115,"Label":"8551-115 via Gap Junction from 43755 -> 43754","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43755,"TargetID":43754,"Directional":false}]},{"ID":1,"SourceStructureID":138,"TargetStructureID":138,"Label":"138-138 via Gap Junction from 60162 -> 60163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60162,"TargetID":60163,"Directional":false}]},{"ID":2,"SourceStructureID":173,"TargetStructureID":138,"Label":"173-138 via Gap Junction from 46416 -> 46415","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46416,"TargetID":46415,"Directional":false}]},{"ID":3,"SourceStructureID":181,"TargetStructureID":138,"Label":"181-138 via Gap Junction from 20559 -> 20560","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20559,"TargetID":20560,"Directional":false}]},{"ID":4,"SourceStructureID":138,"TargetStructureID":11803,"Label":"138-11803 via Gap Junction from 11474 -> 11804","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":11474,"TargetID":11804,"Directional":false}]},{"ID":5,"SourceStructureID":142,"TargetStructureID":142,"Label":"142-142 via Gap Junction from 125969 -> 125970","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125969,"TargetID":125970,"Directional":false}]},{"ID":6,"SourceStructureID":142,"TargetStructureID":3116,"Label":"142-3116 via Gap Junction from 92141 -> 126379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92141,"TargetID":126379,"Directional":false}]},{"ID":7,"SourceStructureID":142,"TargetStructureID":3257,"Label":"142-3257 via Adherens from 125956 -> 125955, 125958 -> 125959","Type":"Adherens","Directional":false,"Links":[{"SourceID":125956,"TargetID":125955,"Directional":false},{"SourceID":125958,"TargetID":125959,"Directional":false}]},{"ID":8,"SourceStructureID":3257,"TargetStructureID":142,"Label":"3257-142 via Gap Junction from 9132 -> 119596, 119589 -> 88058, 126034 -> 126033, 126035 -> 126036","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9132,"TargetID":119596,"Directional":false},{"SourceID":119589,"TargetID":88058,"Directional":false},{"SourceID":126034,"TargetID":126033,"Directional":false},{"SourceID":126035,"TargetID":126036,"Directional":false}]},{"ID":9,"SourceStructureID":142,"TargetStructureID":3679,"Label":"142-3679 via Gap Junction from 33028 -> 33027","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":33028,"TargetID":33027,"Directional":false}]},{"ID":10,"SourceStructureID":5278,"TargetStructureID":142,"Label":"5278-142 via Adherens from 114532 -> 114533","Type":"Adherens","Directional":false,"Links":[{"SourceID":114532,"TargetID":114533,"Directional":false}]},{"ID":11,"SourceStructureID":142,"TargetStructureID":5278,"Label":"142-5278 via Gap Junction from 49731 -> 20124, 50308 -> 49773, 92394 -> 49740, 92395 -> 92396, 92934 -> 92933, 98430 -> 98431, 104867 -> 104868, 114493 -> 114492, 125976 -> 125977, 126121 -> 126122","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49731,"TargetID":20124,"Directional":false},{"SourceID":50308,"TargetID":49773,"Directional":false},{"SourceID":92394,"TargetID":49740,"Directional":false},{"SourceID":92395,"TargetID":92396,"Directional":false},{"SourceID":92934,"TargetID":92933,"Directional":false},{"SourceID":98430,"TargetID":98431,"Directional":false},{"SourceID":104867,"TargetID":104868,"Directional":false},{"SourceID":114493,"TargetID":114492,"Directional":false},{"SourceID":125976,"TargetID":125977,"Directional":false},{"SourceID":126121,"TargetID":126122,"Directional":false}]},{"ID":12,"SourceStructureID":5279,"TargetStructureID":142,"Label":"5279-142 via Gap Junction from 147688 -> 147689","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":147688,"TargetID":147689,"Directional":false}]},{"ID":13,"SourceStructureID":5284,"TargetStructureID":142,"Label":"5284-142 via Gap Junction from 92382 -> 49782","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92382,"TargetID":49782,"Directional":false}]},{"ID":14,"SourceStructureID":142,"TargetStructureID":5292,"Label":"142-5292 via Adherens from 126364 -> 126365","Type":"Adherens","Directional":false,"Links":[{"SourceID":126364,"TargetID":126365,"Directional":false}]},{"ID":15,"SourceStructureID":5292,"TargetStructureID":142,"Label":"5292-142 via Gap Junction from 49790 -> 49786, 92051 -> 92050","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49790,"TargetID":49786,"Directional":false},{"SourceID":92051,"TargetID":92050,"Directional":false}]},{"ID":16,"SourceStructureID":5297,"TargetStructureID":142,"Label":"5297-142 via Adherens from 126348 -> 126347, 126669 -> 126670","Type":"Adherens","Directional":false,"Links":[{"SourceID":126348,"TargetID":126347,"Directional":false},{"SourceID":126669,"TargetID":126670,"Directional":false}]},{"ID":17,"SourceStructureID":5297,"TargetStructureID":142,"Label":"5297-142 via Gap Junction from 50315 -> 49774, 50320 -> 49776, 53605 -> 53604, 56813 -> 49755, 65989 -> 65990, 92328 -> 92329, 126234 -> 126235","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50315,"TargetID":49774,"Directional":false},{"SourceID":50320,"TargetID":49776,"Directional":false},{"SourceID":53605,"TargetID":53604,"Directional":false},{"SourceID":56813,"TargetID":49755,"Directional":false},{"SourceID":65989,"TargetID":65990,"Directional":false},{"SourceID":92328,"TargetID":92329,"Directional":false},{"SourceID":126234,"TargetID":126235,"Directional":false}]},{"ID":18,"SourceStructureID":5487,"TargetStructureID":142,"Label":"5487-142 via Gap Junction from 91673 -> 50126","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91673,"TargetID":50126,"Directional":false}]},{"ID":19,"SourceStructureID":6117,"TargetStructureID":142,"Label":"6117-142 via Gap Junction from 125921 -> 125920, 126023 -> 126022","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125921,"TargetID":125920,"Directional":false},{"SourceID":126023,"TargetID":126022,"Directional":false}]},{"ID":20,"SourceStructureID":142,"TargetStructureID":6169,"Label":"142-6169 via Adherens from 126242 -> 126243, 147685 -> 147686","Type":"Adherens","Directional":false,"Links":[{"SourceID":126242,"TargetID":126243,"Directional":false},{"SourceID":147685,"TargetID":147686,"Directional":false}]},{"ID":21,"SourceStructureID":6169,"TargetStructureID":142,"Label":"6169-142 via Gap Junction from 16159 -> 11190, 20020 -> 20019, 31777 -> 16240, 32086 -> 24646, 35929 -> 11950, 49702 -> 49703, 49714 -> 16172, 49720 -> 49721, 49738 -> 18390, 56833 -> 56832, 88053 -> 16174, 126103 -> 9468, 126224 -> 126223, 126228 -> 126226","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16159,"TargetID":11190,"Directional":false},{"SourceID":20020,"TargetID":20019,"Directional":false},{"SourceID":31777,"TargetID":16240,"Directional":false},{"SourceID":32086,"TargetID":24646,"Directional":false},{"SourceID":35929,"TargetID":11950,"Directional":false},{"SourceID":49702,"TargetID":49703,"Directional":false},{"SourceID":49714,"TargetID":16172,"Directional":false},{"SourceID":49720,"TargetID":49721,"Directional":false},{"SourceID":49738,"TargetID":18390,"Directional":false},{"SourceID":56833,"TargetID":56832,"Directional":false},{"SourceID":88053,"TargetID":16174,"Directional":false},{"SourceID":126103,"TargetID":9468,"Directional":false},{"SourceID":126224,"TargetID":126223,"Directional":false},{"SourceID":126228,"TargetID":126226,"Directional":false}]},{"ID":22,"SourceStructureID":142,"TargetStructureID":9347,"Label":"142-9347 via Unknown from 126313 -> 126312, 126317 -> 126309","Type":"Unknown","Directional":false,"Links":[{"SourceID":126313,"TargetID":126312,"Directional":false},{"SourceID":126317,"TargetID":126309,"Directional":false}]},{"ID":23,"SourceStructureID":142,"TargetStructureID":18693,"Label":"142-18693 via Adherens from 126218 -> 27331","Type":"Adherens","Directional":false,"Links":[{"SourceID":126218,"TargetID":27331,"Directional":false}]},{"ID":24,"SourceStructureID":21299,"TargetStructureID":142,"Label":"21299-142 via Adherens from 125928 -> 125927, 126368 -> 126367, 147690 -> 147691","Type":"Adherens","Directional":false,"Links":[{"SourceID":125928,"TargetID":125927,"Directional":false},{"SourceID":126368,"TargetID":126367,"Directional":false},{"SourceID":147690,"TargetID":147691,"Directional":false}]},{"ID":25,"SourceStructureID":142,"TargetStructureID":21299,"Label":"142-21299 via Gap Junction from 44447 -> 44446, 49712 -> 49713, 50125 -> 48925, 91659 -> 91657, 92441 -> 92440, 125945 -> 125946, 125947 -> 125948, 125953 -> 125952, 126009 -> 126010, 126154 -> 126155, 126157 -> 126158","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44447,"TargetID":44446,"Directional":false},{"SourceID":49712,"TargetID":49713,"Directional":false},{"SourceID":50125,"TargetID":48925,"Directional":false},{"SourceID":91659,"TargetID":91657,"Directional":false},{"SourceID":92441,"TargetID":92440,"Directional":false},{"SourceID":125945,"TargetID":125946,"Directional":false},{"SourceID":125947,"TargetID":125948,"Directional":false},{"SourceID":125953,"TargetID":125952,"Directional":false},{"SourceID":126009,"TargetID":126010,"Directional":false},{"SourceID":126154,"TargetID":126155,"Directional":false},{"SourceID":126157,"TargetID":126158,"Directional":false}]},{"ID":26,"SourceStructureID":142,"TargetStructureID":21299,"Label":"142-21299 via Touch from 125936 -> 125937","Type":"Touch","Directional":false,"Links":[{"SourceID":125936,"TargetID":125937,"Directional":false}]},{"ID":27,"SourceStructureID":142,"TargetStructureID":30513,"Label":"142-30513 via Unknown from 125916 -> 125917","Type":"Unknown","Directional":false,"Links":[{"SourceID":125916,"TargetID":125917,"Directional":false}]},{"ID":28,"SourceStructureID":142,"TargetStructureID":39192,"Label":"142-39192 via Unknown from 125963 -> 125964","Type":"Unknown","Directional":false,"Links":[{"SourceID":125963,"TargetID":125964,"Directional":false}]},{"ID":29,"SourceStructureID":142,"TargetStructureID":66743,"Label":"142-66743 via Unknown from 126334 -> 126335","Type":"Unknown","Directional":false,"Links":[{"SourceID":126334,"TargetID":126335,"Directional":false}]},{"ID":30,"SourceStructureID":86334,"TargetStructureID":142,"Label":"86334-142 via Adherens from 126028 -> 126027","Type":"Adherens","Directional":false,"Links":[{"SourceID":126028,"TargetID":126027,"Directional":false}]},{"ID":31,"SourceStructureID":91613,"TargetStructureID":142,"Label":"91613-142 via Unknown from 98421 -> 98422","Type":"Unknown","Directional":false,"Links":[{"SourceID":98421,"TargetID":98422,"Directional":false}]},{"ID":32,"SourceStructureID":92295,"TargetStructureID":142,"Label":"92295-142 via Gap Junction from 127679 -> 126086","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":127679,"TargetID":126086,"Directional":false}]},{"ID":33,"SourceStructureID":142,"TargetStructureID":92295,"Label":"142-92295 via Unknown from 126095 -> 126096","Type":"Unknown","Directional":false,"Links":[{"SourceID":126095,"TargetID":126096,"Directional":false}]},{"ID":34,"SourceStructureID":142,"TargetStructureID":92434,"Label":"142-92434 via Adherens from 126463 -> 126464","Type":"Adherens","Directional":false,"Links":[{"SourceID":126463,"TargetID":126464,"Directional":false}]},{"ID":35,"SourceStructureID":92434,"TargetStructureID":142,"Label":"92434-142 via Gap Junction from 92435 -> 92436","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92435,"TargetID":92436,"Directional":false}]},{"ID":36,"SourceStructureID":142,"TargetStructureID":93355,"Label":"142-93355 via Unknown from 126642 -> 126643","Type":"Unknown","Directional":false,"Links":[{"SourceID":126642,"TargetID":126643,"Directional":false}]},{"ID":37,"SourceStructureID":104053,"TargetStructureID":142,"Label":"104053-142 via Unknown from 126147 -> 126148","Type":"Unknown","Directional":false,"Links":[{"SourceID":126147,"TargetID":126148,"Directional":false}]},{"ID":38,"SourceStructureID":142,"TargetStructureID":127667,"Label":"142-127667 via Adherens from 127670 -> 127669, 127673 -> 127672","Type":"Adherens","Directional":false,"Links":[{"SourceID":127670,"TargetID":127669,"Directional":false},{"SourceID":127673,"TargetID":127672,"Directional":false}]},{"ID":39,"SourceStructureID":142,"TargetStructureID":127667,"Label":"142-127667 via Gap Junction from 53597 -> 127674","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53597,"TargetID":127674,"Directional":false}]},{"ID":40,"SourceStructureID":142,"TargetStructureID":131177,"Label":"142-131177 via Unknown from 126006 -> 131179, 131184 -> 126040","Type":"Unknown","Directional":false,"Links":[{"SourceID":126006,"TargetID":131179,"Directional":false},{"SourceID":131184,"TargetID":126040,"Directional":false}]},{"ID":41,"SourceStructureID":153,"TargetStructureID":79068,"Label":"153-79068 via Adherens from 79120 -> 79121, 79122 -> 79124, 79143 -> 79142, 79145 -> 79146, 79267 -> 79268, 79288 -> 79287, 79290 -> 79291, 79335 -> 79336","Type":"Adherens","Directional":false,"Links":[{"SourceID":79120,"TargetID":79121,"Directional":false},{"SourceID":79122,"TargetID":79124,"Directional":false},{"SourceID":79143,"TargetID":79142,"Directional":false},{"SourceID":79145,"TargetID":79146,"Directional":false},{"SourceID":79267,"TargetID":79268,"Directional":false},{"SourceID":79288,"TargetID":79287,"Directional":false},{"SourceID":79290,"TargetID":79291,"Directional":false},{"SourceID":79335,"TargetID":79336,"Directional":false}]},{"ID":42,"SourceStructureID":79069,"TargetStructureID":153,"Label":"79069-153 via Adherens from 79078 -> 79077, 79119 -> 79118, 79289 -> 79288","Type":"Adherens","Directional":false,"Links":[{"SourceID":79078,"TargetID":79077,"Directional":false},{"SourceID":79119,"TargetID":79118,"Directional":false},{"SourceID":79289,"TargetID":79288,"Directional":false}]},{"ID":43,"SourceStructureID":79071,"TargetStructureID":153,"Label":"79071-153 via Adherens from 79085 -> 79086, 79087 -> 79088, 79089 -> 79090, 79128 -> 79127, 79130 -> 79129, 79131 -> 79132, 79301 -> 79300, 79307 -> 79305","Type":"Adherens","Directional":false,"Links":[{"SourceID":79085,"TargetID":79086,"Directional":false},{"SourceID":79087,"TargetID":79088,"Directional":false},{"SourceID":79089,"TargetID":79090,"Directional":false},{"SourceID":79128,"TargetID":79127,"Directional":false},{"SourceID":79130,"TargetID":79129,"Directional":false},{"SourceID":79131,"TargetID":79132,"Directional":false},{"SourceID":79301,"TargetID":79300,"Directional":false},{"SourceID":79307,"TargetID":79305,"Directional":false}]},{"ID":44,"SourceStructureID":153,"TargetStructureID":79072,"Label":"153-79072 via Adherens from 79307 -> 79306","Type":"Adherens","Directional":false,"Links":[{"SourceID":79307,"TargetID":79306,"Directional":false}]},{"ID":45,"SourceStructureID":153,"TargetStructureID":79091,"Label":"153-79091 via Adherens from 79096 -> 79095, 79108 -> 79107, 79125 -> 79126, 79268 -> 79266, 79299 -> 79298, 79334 -> 79333","Type":"Adherens","Directional":false,"Links":[{"SourceID":79096,"TargetID":79095,"Directional":false},{"SourceID":79108,"TargetID":79107,"Directional":false},{"SourceID":79125,"TargetID":79126,"Directional":false},{"SourceID":79268,"TargetID":79266,"Directional":false},{"SourceID":79299,"TargetID":79298,"Directional":false},{"SourceID":79334,"TargetID":79333,"Directional":false}]},{"ID":46,"SourceStructureID":161,"TargetStructureID":5502,"Label":"161-5502 via Gap Junction from 27223 -> 27257","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":27223,"TargetID":27257,"Directional":false}]},{"ID":47,"SourceStructureID":161,"TargetStructureID":11803,"Label":"161-11803 via Gap Junction from 39074 -> 39073","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39074,"TargetID":39073,"Directional":false}]},{"ID":48,"SourceStructureID":598,"TargetStructureID":162,"Label":"598-162 via Adherens from 70260 -> 70259","Type":"Adherens","Directional":false,"Links":[{"SourceID":70260,"TargetID":70259,"Directional":false}]},{"ID":49,"SourceStructureID":606,"TargetStructureID":162,"Label":"606-162 via Adherens from 51960 -> 51961","Type":"Adherens","Directional":false,"Links":[{"SourceID":51960,"TargetID":51961,"Directional":false}]},{"ID":50,"SourceStructureID":162,"TargetStructureID":5292,"Label":"162-5292 via Unknown from 133975 -> 126332","Type":"Unknown","Directional":false,"Links":[{"SourceID":133975,"TargetID":126332,"Directional":false}]},{"ID":51,"SourceStructureID":6203,"TargetStructureID":162,"Label":"6203-162 via Unknown from 125787 -> 125788","Type":"Unknown","Directional":false,"Links":[{"SourceID":125787,"TargetID":125788,"Directional":false}]},{"ID":52,"SourceStructureID":162,"TargetStructureID":20136,"Label":"162-20136 via Adherens from 109344 -> 109345","Type":"Adherens","Directional":false,"Links":[{"SourceID":109344,"TargetID":109345,"Directional":false}]},{"ID":53,"SourceStructureID":162,"TargetStructureID":20136,"Label":"162-20136 via Unknown from 109353 -> 109352, 109357 -> 109358","Type":"Unknown","Directional":false,"Links":[{"SourceID":109353,"TargetID":109352,"Directional":false},{"SourceID":109357,"TargetID":109358,"Directional":false}]},{"ID":54,"SourceStructureID":175,"TargetStructureID":165,"Label":"175-165 via Gap Junction from 21725 -> 21717","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":21725,"TargetID":21717,"Directional":false}]},{"ID":55,"SourceStructureID":478,"TargetStructureID":165,"Label":"478-165 via Gap Junction from 19425 -> 21714","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19425,"TargetID":21714,"Directional":false}]},{"ID":56,"SourceStructureID":4567,"TargetStructureID":165,"Label":"4567-165 via Gap Junction from 60859 -> 12550","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60859,"TargetID":12550,"Directional":false}]},{"ID":57,"SourceStructureID":5544,"TargetStructureID":165,"Label":"5544-165 via Gap Junction from 136926 -> 20845","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136926,"TargetID":20845,"Directional":false}]},{"ID":58,"SourceStructureID":64690,"TargetStructureID":165,"Label":"64690-165 via Gap Junction from 64694 -> 12592","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64694,"TargetID":12592,"Directional":false}]},{"ID":59,"SourceStructureID":166,"TargetStructureID":166,"Label":"166-166 via Gap Junction from 60037 -> 60039, 84786 -> 62878","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60037,"TargetID":60039,"Directional":false},{"SourceID":84786,"TargetID":62878,"Directional":false}]},{"ID":60,"SourceStructureID":166,"TargetStructureID":461,"Label":"166-461 via Gap Junction from 49829 -> 49828, 120406 -> 120405","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49829,"TargetID":49828,"Directional":false},{"SourceID":120406,"TargetID":120405,"Directional":false}]},{"ID":61,"SourceStructureID":166,"TargetStructureID":461,"Label":"166-461 via Touch from 99164 -> 99163","Type":"Touch","Directional":false,"Links":[{"SourceID":99164,"TargetID":99163,"Directional":false}]},{"ID":62,"SourceStructureID":483,"TargetStructureID":166,"Label":"483-166 via Gap Junction from 49148 -> 49149, 70964 -> 70962","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49148,"TargetID":49149,"Directional":false},{"SourceID":70964,"TargetID":70962,"Directional":false}]},{"ID":63,"SourceStructureID":593,"TargetStructureID":166,"Label":"593-166 via Gap Junction from 59690 -> 60010, 60047 -> 60046","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59690,"TargetID":60010,"Directional":false},{"SourceID":60047,"TargetID":60046,"Directional":false}]},{"ID":64,"SourceStructureID":166,"TargetStructureID":3257,"Label":"166-3257 via Gap Junction from 15455 -> 15454, 59879 -> 59880, 71485 -> 71484, 71931 -> 71930","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15455,"TargetID":15454,"Directional":false},{"SourceID":59879,"TargetID":59880,"Directional":false},{"SourceID":71485,"TargetID":71484,"Directional":false},{"SourceID":71931,"TargetID":71930,"Directional":false}]},{"ID":65,"SourceStructureID":166,"TargetStructureID":4570,"Label":"166-4570 via Gap Junction from 131394 -> 158463","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131394,"TargetID":158463,"Directional":false}]},{"ID":66,"SourceStructureID":5437,"TargetStructureID":166,"Label":"5437-166 via Unknown from 120349 -> 120350","Type":"Unknown","Directional":false,"Links":[{"SourceID":120349,"TargetID":120350,"Directional":false}]},{"ID":67,"SourceStructureID":5635,"TargetStructureID":166,"Label":"5635-166 via Adherens from 131174 -> 131173","Type":"Adherens","Directional":false,"Links":[{"SourceID":131174,"TargetID":131173,"Directional":false}]},{"ID":68,"SourceStructureID":5635,"TargetStructureID":166,"Label":"5635-166 via Gap Junction from 55950 -> 55949, 59899 -> 59900","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55950,"TargetID":55949,"Directional":false},{"SourceID":59899,"TargetID":59900,"Directional":false}]},{"ID":69,"SourceStructureID":6115,"TargetStructureID":166,"Label":"6115-166 via Gap Junction from 59987 -> 59986","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59987,"TargetID":59986,"Directional":false}]},{"ID":70,"SourceStructureID":166,"TargetStructureID":6169,"Label":"166-6169 via Gap Junction from 16163 -> 16160, 16245 -> 16246, 59969 -> 59967, 59981 -> 59982, 59990 -> 59989, 60001 -> 60002, 60041 -> 60040, 60044 -> 60043","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16163,"TargetID":16160,"Directional":false},{"SourceID":16245,"TargetID":16246,"Directional":false},{"SourceID":59969,"TargetID":59967,"Directional":false},{"SourceID":59981,"TargetID":59982,"Directional":false},{"SourceID":59990,"TargetID":59989,"Directional":false},{"SourceID":60001,"TargetID":60002,"Directional":false},{"SourceID":60041,"TargetID":60040,"Directional":false},{"SourceID":60044,"TargetID":60043,"Directional":false}]},{"ID":71,"SourceStructureID":8579,"TargetStructureID":166,"Label":"8579-166 via Adherens from 132997 -> 132998","Type":"Adherens","Directional":false,"Links":[{"SourceID":132997,"TargetID":132998,"Directional":false}]},{"ID":72,"SourceStructureID":166,"TargetStructureID":29198,"Label":"166-29198 via Unknown from 94756 -> 94757","Type":"Unknown","Directional":false,"Links":[{"SourceID":94756,"TargetID":94757,"Directional":false}]},{"ID":73,"SourceStructureID":39596,"TargetStructureID":166,"Label":"39596-166 via Unknown from 120351 -> 120352","Type":"Unknown","Directional":false,"Links":[{"SourceID":120351,"TargetID":120352,"Directional":false}]},{"ID":74,"SourceStructureID":66278,"TargetStructureID":166,"Label":"66278-166 via Adherens from 81898 -> 81899, 81901 -> 81900","Type":"Adherens","Directional":false,"Links":[{"SourceID":81898,"TargetID":81899,"Directional":false},{"SourceID":81901,"TargetID":81900,"Directional":false}]},{"ID":75,"SourceStructureID":66731,"TargetStructureID":166,"Label":"66731-166 via Adherens from 66738 -> 66739","Type":"Adherens","Directional":false,"Links":[{"SourceID":66738,"TargetID":66739,"Directional":false}]},{"ID":76,"SourceStructureID":166,"TargetStructureID":71426,"Label":"166-71426 via Unknown from 120345 -> 120346","Type":"Unknown","Directional":false,"Links":[{"SourceID":120345,"TargetID":120346,"Directional":false}]},{"ID":77,"SourceStructureID":71438,"TargetStructureID":166,"Label":"71438-166 via Adherens from 71451 -> 71450","Type":"Adherens","Directional":false,"Links":[{"SourceID":71451,"TargetID":71450,"Directional":false}]},{"ID":78,"SourceStructureID":71445,"TargetStructureID":166,"Label":"71445-166 via Adherens from 71459 -> 71460","Type":"Adherens","Directional":false,"Links":[{"SourceID":71459,"TargetID":71460,"Directional":false}]},{"ID":79,"SourceStructureID":71825,"TargetStructureID":166,"Label":"71825-166 via Gap Junction from 71826 -> 71824","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71826,"TargetID":71824,"Directional":false}]},{"ID":80,"SourceStructureID":90829,"TargetStructureID":166,"Label":"90829-166 via Adherens from 90833 -> 90834","Type":"Adherens","Directional":false,"Links":[{"SourceID":90833,"TargetID":90834,"Directional":false}]},{"ID":81,"SourceStructureID":166,"TargetStructureID":135052,"Label":"166-135052 via Gap Junction from 132042 -> 135053","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132042,"TargetID":135053,"Directional":false}]},{"ID":82,"SourceStructureID":168,"TargetStructureID":168,"Label":"168-168 via Gap Junction from 93063 -> 93062","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93063,"TargetID":93062,"Directional":false}]},{"ID":83,"SourceStructureID":168,"TargetStructureID":170,"Label":"168-170 via Gap Junction from 88340 -> 88339","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88340,"TargetID":88339,"Directional":false}]},{"ID":84,"SourceStructureID":168,"TargetStructureID":176,"Label":"168-176 via Gap Junction from 119633 -> 119632","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119633,"TargetID":119632,"Directional":false}]},{"ID":85,"SourceStructureID":595,"TargetStructureID":168,"Label":"595-168 via Adherens from 81950 -> 81949, 82491 -> 82492, 91198 -> 91197, 135697 -> 135696","Type":"Adherens","Directional":false,"Links":[{"SourceID":81950,"TargetID":81949,"Directional":false},{"SourceID":82491,"TargetID":82492,"Directional":false},{"SourceID":91198,"TargetID":91197,"Directional":false},{"SourceID":135697,"TargetID":135696,"Directional":false}]},{"ID":86,"SourceStructureID":168,"TargetStructureID":595,"Label":"168-595 via Gap Junction from 50954 -> 50955, 81947 -> 81948, 82489 -> 82490, 90915 -> 90914, 91135 -> 91136, 91200 -> 91199, 91238 -> 91239, 91752 -> 91753, 92613 -> 92612, 92769 -> 92770, 92821 -> 92822, 94436 -> 91248, 125198 -> 125199, 125725 -> 125724","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50954,"TargetID":50955,"Directional":false},{"SourceID":81947,"TargetID":81948,"Directional":false},{"SourceID":82489,"TargetID":82490,"Directional":false},{"SourceID":90915,"TargetID":90914,"Directional":false},{"SourceID":91135,"TargetID":91136,"Directional":false},{"SourceID":91200,"TargetID":91199,"Directional":false},{"SourceID":91238,"TargetID":91239,"Directional":false},{"SourceID":91752,"TargetID":91753,"Directional":false},{"SourceID":92613,"TargetID":92612,"Directional":false},{"SourceID":92769,"TargetID":92770,"Directional":false},{"SourceID":92821,"TargetID":92822,"Directional":false},{"SourceID":94436,"TargetID":91248,"Directional":false},{"SourceID":125198,"TargetID":125199,"Directional":false},{"SourceID":125725,"TargetID":125724,"Directional":false}]},{"ID":87,"SourceStructureID":168,"TargetStructureID":3116,"Label":"168-3116 via Gap Junction from 92532 -> 92533","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92532,"TargetID":92533,"Directional":false}]},{"ID":88,"SourceStructureID":168,"TargetStructureID":3257,"Label":"168-3257 via Gap Junction from 4172 -> 14932, 4210 -> 14931, 4334 -> 92504, 6701 -> 6702, 9123 -> 4202, 34080 -> 34081, 39016 -> 39015, 49161 -> 49162, 50963 -> 49164, 56980 -> 4288, 56982 -> 56981, 92505 -> 92506, 92537 -> 92538, 92746 -> 92747, 92756 -> 92755, 92792 -> 92791","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":4172,"TargetID":14932,"Directional":false},{"SourceID":4210,"TargetID":14931,"Directional":false},{"SourceID":4334,"TargetID":92504,"Directional":false},{"SourceID":6701,"TargetID":6702,"Directional":false},{"SourceID":9123,"TargetID":4202,"Directional":false},{"SourceID":34080,"TargetID":34081,"Directional":false},{"SourceID":39016,"TargetID":39015,"Directional":false},{"SourceID":49161,"TargetID":49162,"Directional":false},{"SourceID":50963,"TargetID":49164,"Directional":false},{"SourceID":56980,"TargetID":4288,"Directional":false},{"SourceID":56982,"TargetID":56981,"Directional":false},{"SourceID":92505,"TargetID":92506,"Directional":false},{"SourceID":92537,"TargetID":92538,"Directional":false},{"SourceID":92746,"TargetID":92747,"Directional":false},{"SourceID":92756,"TargetID":92755,"Directional":false},{"SourceID":92792,"TargetID":92791,"Directional":false}]},{"ID":89,"SourceStructureID":168,"TargetStructureID":4569,"Label":"168-4569 via Gap Junction from 119045 -> 119046, 119056 -> 119057","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119045,"TargetID":119046,"Directional":false},{"SourceID":119056,"TargetID":119057,"Directional":false}]},{"ID":90,"SourceStructureID":168,"TargetStructureID":4835,"Label":"168-4835 via Gap Junction from 92767 -> 92766","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92767,"TargetID":92766,"Directional":false}]},{"ID":91,"SourceStructureID":5487,"TargetStructureID":168,"Label":"5487-168 via Adherens from 92758 -> 50117, 119053 -> 119052","Type":"Adherens","Directional":false,"Links":[{"SourceID":92758,"TargetID":50117,"Directional":false},{"SourceID":119053,"TargetID":119052,"Directional":false}]},{"ID":92,"SourceStructureID":5530,"TargetStructureID":168,"Label":"5530-168 via Adherens from 82010 -> 82011","Type":"Adherens","Directional":false,"Links":[{"SourceID":82010,"TargetID":82011,"Directional":false}]},{"ID":93,"SourceStructureID":168,"TargetStructureID":5860,"Label":"168-5860 via Gap Junction from 50947 -> 29862","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50947,"TargetID":29862,"Directional":false}]},{"ID":94,"SourceStructureID":7564,"TargetStructureID":168,"Label":"7564-168 via Gap Junction from 29685 -> 4252, 50939 -> 50938, 125723 -> 29686","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29685,"TargetID":4252,"Directional":false},{"SourceID":50939,"TargetID":50938,"Directional":false},{"SourceID":125723,"TargetID":29686,"Directional":false}]},{"ID":95,"SourceStructureID":168,"TargetStructureID":7576,"Label":"168-7576 via Adherens from 54837 -> 54836, 55931 -> 55932","Type":"Adherens","Directional":false,"Links":[{"SourceID":54837,"TargetID":54836,"Directional":false},{"SourceID":55931,"TargetID":55932,"Directional":false}]},{"ID":96,"SourceStructureID":7576,"TargetStructureID":168,"Label":"7576-168 via Gap Junction from 55004 -> 55005","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55004,"TargetID":55005,"Directional":false}]},{"ID":97,"SourceStructureID":7576,"TargetStructureID":168,"Label":"7576-168 via Unknown from 54975 -> 54976","Type":"Unknown","Directional":false,"Links":[{"SourceID":54975,"TargetID":54976,"Directional":false}]},{"ID":98,"SourceStructureID":168,"TargetStructureID":8720,"Label":"168-8720 via Unknown from 82014 -> 82015, 92894 -> 92896","Type":"Unknown","Directional":false,"Links":[{"SourceID":82014,"TargetID":82015,"Directional":false},{"SourceID":92894,"TargetID":92896,"Directional":false}]},{"ID":99,"SourceStructureID":168,"TargetStructureID":21299,"Label":"168-21299 via Gap Junction from 30062 -> 30061, 35829 -> 35828, 48831 -> 48830, 49062 -> 48872, 50940 -> 50941, 56969 -> 56970, 91584 -> 91583, 91626 -> 91625, 91636 -> 91635","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30062,"TargetID":30061,"Directional":false},{"SourceID":35829,"TargetID":35828,"Directional":false},{"SourceID":48831,"TargetID":48830,"Directional":false},{"SourceID":49062,"TargetID":48872,"Directional":false},{"SourceID":50940,"TargetID":50941,"Directional":false},{"SourceID":56969,"TargetID":56970,"Directional":false},{"SourceID":91584,"TargetID":91583,"Directional":false},{"SourceID":91626,"TargetID":91625,"Directional":false},{"SourceID":91636,"TargetID":91635,"Directional":false}]},{"ID":100,"SourceStructureID":21299,"TargetStructureID":168,"Label":"21299-168 via Touch from 91664 -> 91663","Type":"Touch","Directional":false,"Links":[{"SourceID":91664,"TargetID":91663,"Directional":false}]},{"ID":101,"SourceStructureID":34055,"TargetStructureID":168,"Label":"34055-168 via Adherens from 82001 -> 82000","Type":"Adherens","Directional":false,"Links":[{"SourceID":82001,"TargetID":82000,"Directional":false}]},{"ID":102,"SourceStructureID":54021,"TargetStructureID":168,"Label":"54021-168 via Gap Junction from 115666 -> 54020","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115666,"TargetID":54020,"Directional":false}]},{"ID":103,"SourceStructureID":168,"TargetStructureID":81917,"Label":"168-81917 via Adherens from 81938 -> 81937","Type":"Adherens","Directional":false,"Links":[{"SourceID":81938,"TargetID":81937,"Directional":false}]},{"ID":104,"SourceStructureID":168,"TargetStructureID":81917,"Label":"168-81917 via Gap Junction from 81933 -> 81934, 81936 -> 81935","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81933,"TargetID":81934,"Directional":false},{"SourceID":81936,"TargetID":81935,"Directional":false}]},{"ID":105,"SourceStructureID":168,"TargetStructureID":81924,"Label":"168-81924 via Unknown from 81959 -> 81960","Type":"Unknown","Directional":false,"Links":[{"SourceID":81959,"TargetID":81960,"Directional":false}]},{"ID":106,"SourceStructureID":168,"TargetStructureID":82018,"Label":"168-82018 via Adherens from 82020 -> 82019","Type":"Adherens","Directional":false,"Links":[{"SourceID":82020,"TargetID":82019,"Directional":false}]},{"ID":107,"SourceStructureID":91178,"TargetStructureID":168,"Label":"91178-168 via Adherens from 92608 -> 92609","Type":"Adherens","Directional":false,"Links":[{"SourceID":92608,"TargetID":92609,"Directional":false}]},{"ID":108,"SourceStructureID":168,"TargetStructureID":91593,"Label":"168-91593 via Adherens from 92592 -> 92591","Type":"Adherens","Directional":false,"Links":[{"SourceID":92592,"TargetID":92591,"Directional":false}]},{"ID":109,"SourceStructureID":91742,"TargetStructureID":168,"Label":"91742-168 via Adherens from 92772 -> 92771","Type":"Adherens","Directional":false,"Links":[{"SourceID":92772,"TargetID":92771,"Directional":false}]},{"ID":110,"SourceStructureID":168,"TargetStructureID":92530,"Label":"168-92530 via Unknown from 92529 -> 92531","Type":"Unknown","Directional":false,"Links":[{"SourceID":92529,"TargetID":92531,"Directional":false}]},{"ID":111,"SourceStructureID":92734,"TargetStructureID":168,"Label":"92734-168 via Adherens from 92735 -> 92733","Type":"Adherens","Directional":false,"Links":[{"SourceID":92735,"TargetID":92733,"Directional":false}]},{"ID":112,"SourceStructureID":92780,"TargetStructureID":168,"Label":"92780-168 via Unknown from 92781 -> 92779","Type":"Unknown","Directional":false,"Links":[{"SourceID":92781,"TargetID":92779,"Directional":false}]},{"ID":113,"SourceStructureID":92789,"TargetStructureID":168,"Label":"92789-168 via Gap Junction from 92790 -> 92788","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92790,"TargetID":92788,"Directional":false}]},{"ID":114,"SourceStructureID":168,"TargetStructureID":93065,"Label":"168-93065 via Unknown from 93064 -> 93066","Type":"Unknown","Directional":false,"Links":[{"SourceID":93064,"TargetID":93066,"Directional":false}]},{"ID":115,"SourceStructureID":170,"TargetStructureID":170,"Label":"170-170 via Adherens from 92499 -> 92500","Type":"Adherens","Directional":false,"Links":[{"SourceID":92499,"TargetID":92500,"Directional":false}]},{"ID":116,"SourceStructureID":170,"TargetStructureID":170,"Label":"170-170 via Gap Junction from 1306 -> 89715, 89214 -> 1354, 90300 -> 90301, 90321 -> 90320, 90611 -> 90612, 134000 -> 134001","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":1306,"TargetID":89715,"Directional":false},{"SourceID":89214,"TargetID":1354,"Directional":false},{"SourceID":90300,"TargetID":90301,"Directional":false},{"SourceID":90321,"TargetID":90320,"Directional":false},{"SourceID":90611,"TargetID":90612,"Directional":false},{"SourceID":134000,"TargetID":134001,"Directional":false}]},{"ID":117,"SourceStructureID":170,"TargetStructureID":324,"Label":"170-324 via Adherens from 135518 -> 135517","Type":"Adherens","Directional":false,"Links":[{"SourceID":135518,"TargetID":135517,"Directional":false}]},{"ID":118,"SourceStructureID":324,"TargetStructureID":170,"Label":"324-170 via Gap Junction from 16014 -> 15994, 30752 -> 10789, 43318 -> 43317","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16014,"TargetID":15994,"Directional":false},{"SourceID":30752,"TargetID":10789,"Directional":false},{"SourceID":43318,"TargetID":43317,"Directional":false}]},{"ID":119,"SourceStructureID":330,"TargetStructureID":170,"Label":"330-170 via Gap Junction from 38575 -> 89027, 89211 -> 89212","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38575,"TargetID":89027,"Directional":false},{"SourceID":89211,"TargetID":89212,"Directional":false}]},{"ID":120,"SourceStructureID":364,"TargetStructureID":170,"Label":"364-170 via Gap Junction from 89189 -> 89188, 90541 -> 90542, 92473 -> 89395, 133998 -> 133999","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89189,"TargetID":89188,"Directional":false},{"SourceID":90541,"TargetID":90542,"Directional":false},{"SourceID":92473,"TargetID":89395,"Directional":false},{"SourceID":133998,"TargetID":133999,"Directional":false}]},{"ID":121,"SourceStructureID":366,"TargetStructureID":170,"Label":"366-170 via Touch from 135522 -> 135521","Type":"Touch","Directional":false,"Links":[{"SourceID":135522,"TargetID":135521,"Directional":false}]},{"ID":122,"SourceStructureID":170,"TargetStructureID":428,"Label":"170-428 via Touch from 90456 -> 90457","Type":"Touch","Directional":false,"Links":[{"SourceID":90456,"TargetID":90457,"Directional":false}]},{"ID":123,"SourceStructureID":476,"TargetStructureID":170,"Label":"476-170 via Gap Junction from 14970 -> 15998, 15996 -> 14972","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14970,"TargetID":15998,"Directional":false},{"SourceID":15996,"TargetID":14972,"Directional":false}]},{"ID":124,"SourceStructureID":170,"TargetStructureID":595,"Label":"170-595 via Adherens from 88342 -> 88341, 88509 -> 88508, 88531 -> 88532","Type":"Adherens","Directional":false,"Links":[{"SourceID":88342,"TargetID":88341,"Directional":false},{"SourceID":88509,"TargetID":88508,"Directional":false},{"SourceID":88531,"TargetID":88532,"Directional":false}]},{"ID":125,"SourceStructureID":595,"TargetStructureID":170,"Label":"595-170 via Gap Junction from 46640 -> 1195, 47919 -> 47804, 89084 -> 1249, 92687 -> 92688, 133939 -> 133940, 133942 -> 133941","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46640,"TargetID":1195,"Directional":false},{"SourceID":47919,"TargetID":47804,"Directional":false},{"SourceID":89084,"TargetID":1249,"Directional":false},{"SourceID":92687,"TargetID":92688,"Directional":false},{"SourceID":133939,"TargetID":133940,"Directional":false},{"SourceID":133942,"TargetID":133941,"Directional":false}]},{"ID":126,"SourceStructureID":606,"TargetStructureID":170,"Label":"606-170 via Adherens from 47809 -> 47808, 53196 -> 53197, 53363 -> 90268, 53367 -> 53368","Type":"Adherens","Directional":false,"Links":[{"SourceID":47809,"TargetID":47808,"Directional":false},{"SourceID":53196,"TargetID":53197,"Directional":false},{"SourceID":53363,"TargetID":90268,"Directional":false},{"SourceID":53367,"TargetID":53368,"Directional":false}]},{"ID":127,"SourceStructureID":170,"TargetStructureID":606,"Label":"170-606 via Unknown from 133908 -> 133909","Type":"Unknown","Directional":false,"Links":[{"SourceID":133908,"TargetID":133909,"Directional":false}]},{"ID":128,"SourceStructureID":170,"TargetStructureID":3116,"Label":"170-3116 via Adherens from 83178 -> 46568, 89673 -> 89674, 90267 -> 90266, 90293 -> 90291, 90295 -> 90294, 90434 -> 90433","Type":"Adherens","Directional":false,"Links":[{"SourceID":83178,"TargetID":46568,"Directional":false},{"SourceID":89673,"TargetID":89674,"Directional":false},{"SourceID":90267,"TargetID":90266,"Directional":false},{"SourceID":90293,"TargetID":90291,"Directional":false},{"SourceID":90295,"TargetID":90294,"Directional":false},{"SourceID":90434,"TargetID":90433,"Directional":false}]},{"ID":129,"SourceStructureID":3116,"TargetStructureID":170,"Label":"3116-170 via Gap Junction from 43553 -> 43551, 43558 -> 1307, 46553 -> 1387, 89722 -> 89723, 90264 -> 90263, 90265 -> 90262, 90405 -> 90406, 134002 -> 134003","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43553,"TargetID":43551,"Directional":false},{"SourceID":43558,"TargetID":1307,"Directional":false},{"SourceID":46553,"TargetID":1387,"Directional":false},{"SourceID":89722,"TargetID":89723,"Directional":false},{"SourceID":90264,"TargetID":90263,"Directional":false},{"SourceID":90265,"TargetID":90262,"Directional":false},{"SourceID":90405,"TargetID":90406,"Directional":false},{"SourceID":134002,"TargetID":134003,"Directional":false}]},{"ID":130,"SourceStructureID":3257,"TargetStructureID":170,"Label":"3257-170 via Gap Junction from 86963 -> 1114","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":86963,"TargetID":1114,"Directional":false}]},{"ID":131,"SourceStructureID":170,"TargetStructureID":4569,"Label":"170-4569 via Gap Junction from 43552 -> 52519, 90486 -> 90485","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43552,"TargetID":52519,"Directional":false},{"SourceID":90486,"TargetID":90485,"Directional":false}]},{"ID":132,"SourceStructureID":170,"TargetStructureID":5481,"Label":"170-5481 via Adherens from 90624 -> 90625","Type":"Adherens","Directional":false,"Links":[{"SourceID":90624,"TargetID":90625,"Directional":false}]},{"ID":133,"SourceStructureID":170,"TargetStructureID":5530,"Label":"170-5530 via Adherens from 135540 -> 135539, 135542 -> 135541","Type":"Adherens","Directional":false,"Links":[{"SourceID":135540,"TargetID":135539,"Directional":false},{"SourceID":135542,"TargetID":135541,"Directional":false}]},{"ID":134,"SourceStructureID":5530,"TargetStructureID":170,"Label":"5530-170 via Gap Junction from 45398 -> 45397, 47934 -> 47256, 74897 -> 74754, 75496 -> 82529, 76746 -> 76745, 82374 -> 75528, 82484 -> 82485","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45398,"TargetID":45397,"Directional":false},{"SourceID":47934,"TargetID":47256,"Directional":false},{"SourceID":74897,"TargetID":74754,"Directional":false},{"SourceID":75496,"TargetID":82529,"Directional":false},{"SourceID":76746,"TargetID":76745,"Directional":false},{"SourceID":82374,"TargetID":75528,"Directional":false},{"SourceID":82484,"TargetID":82485,"Directional":false}]},{"ID":135,"SourceStructureID":7564,"TargetStructureID":170,"Label":"7564-170 via Adherens from 135544 -> 135545","Type":"Adherens","Directional":false,"Links":[{"SourceID":135544,"TargetID":135545,"Directional":false}]},{"ID":136,"SourceStructureID":7564,"TargetStructureID":170,"Label":"7564-170 via Gap Junction from 82482 -> 82483, 89208 -> 89209, 89751 -> 89752, 90072 -> 90073, 92488 -> 92487, 92491 -> 92490","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":82482,"TargetID":82483,"Directional":false},{"SourceID":89208,"TargetID":89209,"Directional":false},{"SourceID":89751,"TargetID":89752,"Directional":false},{"SourceID":90072,"TargetID":90073,"Directional":false},{"SourceID":92488,"TargetID":92487,"Directional":false},{"SourceID":92491,"TargetID":92490,"Directional":false}]},{"ID":137,"SourceStructureID":9769,"TargetStructureID":170,"Label":"9769-170 via Unknown from 88483 -> 88482, 88755 -> 88754, 89731 -> 89732, 89733 -> 89734","Type":"Unknown","Directional":false,"Links":[{"SourceID":88483,"TargetID":88482,"Directional":false},{"SourceID":88755,"TargetID":88754,"Directional":false},{"SourceID":89731,"TargetID":89732,"Directional":false},{"SourceID":89733,"TargetID":89734,"Directional":false}]},{"ID":138,"SourceStructureID":32920,"TargetStructureID":170,"Label":"32920-170 via Adherens from 88456 -> 87127","Type":"Adherens","Directional":false,"Links":[{"SourceID":88456,"TargetID":87127,"Directional":false}]},{"ID":139,"SourceStructureID":170,"TargetStructureID":35653,"Label":"170-35653 via Adherens from 88363 -> 88364","Type":"Adherens","Directional":false,"Links":[{"SourceID":88363,"TargetID":88364,"Directional":false}]},{"ID":140,"SourceStructureID":38605,"TargetStructureID":170,"Label":"38605-170 via Unknown from 89468 -> 89467","Type":"Unknown","Directional":false,"Links":[{"SourceID":89468,"TargetID":89467,"Directional":false}]},{"ID":141,"SourceStructureID":40439,"TargetStructureID":170,"Label":"40439-170 via Unknown from 88389 -> 88387","Type":"Unknown","Directional":false,"Links":[{"SourceID":88389,"TargetID":88387,"Directional":false}]},{"ID":142,"SourceStructureID":71882,"TargetStructureID":170,"Label":"71882-170 via Unknown from 90417 -> 89197","Type":"Unknown","Directional":false,"Links":[{"SourceID":90417,"TargetID":89197,"Directional":false}]},{"ID":143,"SourceStructureID":86315,"TargetStructureID":170,"Label":"86315-170 via Adherens from 116720 -> 88520","Type":"Adherens","Directional":false,"Links":[{"SourceID":116720,"TargetID":88520,"Directional":false}]},{"ID":144,"SourceStructureID":88329,"TargetStructureID":170,"Label":"88329-170 via Adherens from 88330 -> 88331","Type":"Adherens","Directional":false,"Links":[{"SourceID":88330,"TargetID":88331,"Directional":false}]},{"ID":145,"SourceStructureID":170,"TargetStructureID":88343,"Label":"170-88343 via Unknown from 88357 -> 88358","Type":"Unknown","Directional":false,"Links":[{"SourceID":88357,"TargetID":88358,"Directional":false}]},{"ID":146,"SourceStructureID":170,"TargetStructureID":88424,"Label":"170-88424 via Adherens from 88441 -> 88442","Type":"Adherens","Directional":false,"Links":[{"SourceID":88441,"TargetID":88442,"Directional":false}]},{"ID":147,"SourceStructureID":170,"TargetStructureID":88446,"Label":"170-88446 via Unknown from 88448 -> 88449","Type":"Unknown","Directional":false,"Links":[{"SourceID":88448,"TargetID":88449,"Directional":false}]},{"ID":148,"SourceStructureID":88470,"TargetStructureID":170,"Label":"88470-170 via Unknown from 88471 -> 88472","Type":"Unknown","Directional":false,"Links":[{"SourceID":88471,"TargetID":88472,"Directional":false}]},{"ID":149,"SourceStructureID":88546,"TargetStructureID":170,"Label":"88546-170 via Adherens from 88548 -> 88549","Type":"Adherens","Directional":false,"Links":[{"SourceID":88548,"TargetID":88549,"Directional":false}]},{"ID":150,"SourceStructureID":170,"TargetStructureID":88550,"Label":"170-88550 via Unknown from 88772 -> 88771","Type":"Unknown","Directional":false,"Links":[{"SourceID":88772,"TargetID":88771,"Directional":false}]},{"ID":151,"SourceStructureID":88689,"TargetStructureID":170,"Label":"88689-170 via Unknown from 88701 -> 88700","Type":"Unknown","Directional":false,"Links":[{"SourceID":88701,"TargetID":88700,"Directional":false}]},{"ID":152,"SourceStructureID":170,"TargetStructureID":88692,"Label":"170-88692 via Adherens from 88699 -> 88698","Type":"Adherens","Directional":false,"Links":[{"SourceID":88699,"TargetID":88698,"Directional":false}]},{"ID":153,"SourceStructureID":170,"TargetStructureID":88709,"Label":"170-88709 via Adherens from 88708 -> 88710","Type":"Adherens","Directional":false,"Links":[{"SourceID":88708,"TargetID":88710,"Directional":false}]},{"ID":154,"SourceStructureID":170,"TargetStructureID":88711,"Label":"170-88711 via Adherens from 88713 -> 88714","Type":"Adherens","Directional":false,"Links":[{"SourceID":88713,"TargetID":88714,"Directional":false}]},{"ID":155,"SourceStructureID":88733,"TargetStructureID":170,"Label":"88733-170 via Adherens from 88734 -> 88735","Type":"Adherens","Directional":false,"Links":[{"SourceID":88734,"TargetID":88735,"Directional":false}]},{"ID":156,"SourceStructureID":170,"TargetStructureID":88736,"Label":"170-88736 via Unknown from 88746 -> 88745","Type":"Unknown","Directional":false,"Links":[{"SourceID":88746,"TargetID":88745,"Directional":false}]},{"ID":157,"SourceStructureID":170,"TargetStructureID":88947,"Label":"170-88947 via Unknown from 88953 -> 88952","Type":"Unknown","Directional":false,"Links":[{"SourceID":88953,"TargetID":88952,"Directional":false}]},{"ID":158,"SourceStructureID":88986,"TargetStructureID":170,"Label":"88986-170 via Unknown from 88994 -> 88995","Type":"Unknown","Directional":false,"Links":[{"SourceID":88994,"TargetID":88995,"Directional":false}]},{"ID":159,"SourceStructureID":88996,"TargetStructureID":170,"Label":"88996-170 via Adherens from 89003 -> 89004","Type":"Adherens","Directional":false,"Links":[{"SourceID":89003,"TargetID":89004,"Directional":false}]},{"ID":160,"SourceStructureID":89012,"TargetStructureID":170,"Label":"89012-170 via Adherens from 89014 -> 89013","Type":"Adherens","Directional":false,"Links":[{"SourceID":89014,"TargetID":89013,"Directional":false}]},{"ID":161,"SourceStructureID":89018,"TargetStructureID":170,"Label":"89018-170 via Unknown from 89023 -> 89022","Type":"Unknown","Directional":false,"Links":[{"SourceID":89023,"TargetID":89022,"Directional":false}]},{"ID":162,"SourceStructureID":170,"TargetStructureID":89073,"Label":"170-89073 via Unknown from 89070 -> 89077, 89080 -> 89081","Type":"Unknown","Directional":false,"Links":[{"SourceID":89070,"TargetID":89077,"Directional":false},{"SourceID":89080,"TargetID":89081,"Directional":false}]},{"ID":163,"SourceStructureID":89086,"TargetStructureID":170,"Label":"89086-170 via Unknown from 89174 -> 89172","Type":"Unknown","Directional":false,"Links":[{"SourceID":89174,"TargetID":89172,"Directional":false}]},{"ID":164,"SourceStructureID":170,"TargetStructureID":89181,"Label":"170-89181 via Adherens from 89183 -> 89182","Type":"Adherens","Directional":false,"Links":[{"SourceID":89183,"TargetID":89182,"Directional":false}]},{"ID":165,"SourceStructureID":170,"TargetStructureID":89190,"Label":"170-89190 via Adherens from 89192 -> 89191","Type":"Adherens","Directional":false,"Links":[{"SourceID":89192,"TargetID":89191,"Directional":false}]},{"ID":166,"SourceStructureID":89199,"TargetStructureID":170,"Label":"89199-170 via Adherens from 135537 -> 135536","Type":"Adherens","Directional":false,"Links":[{"SourceID":135537,"TargetID":135536,"Directional":false}]},{"ID":167,"SourceStructureID":170,"TargetStructureID":89225,"Label":"170-89225 via Postsynapse from 89226 -> 89227","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":89226,"TargetID":89227,"Directional":false}]},{"ID":168,"SourceStructureID":170,"TargetStructureID":89228,"Label":"170-89228 via Unknown from 89230 -> 89229","Type":"Unknown","Directional":false,"Links":[{"SourceID":89230,"TargetID":89229,"Directional":false}]},{"ID":169,"SourceStructureID":89232,"TargetStructureID":170,"Label":"89232-170 via Unknown from 89234 -> 89235","Type":"Unknown","Directional":false,"Links":[{"SourceID":89234,"TargetID":89235,"Directional":false}]},{"ID":170,"SourceStructureID":170,"TargetStructureID":89359,"Label":"170-89359 via Adherens from 89364 -> 89363, 89365 -> 89366","Type":"Adherens","Directional":false,"Links":[{"SourceID":89364,"TargetID":89363,"Directional":false},{"SourceID":89365,"TargetID":89366,"Directional":false}]},{"ID":171,"SourceStructureID":170,"TargetStructureID":89377,"Label":"170-89377 via Adherens from 89380 -> 89381","Type":"Adherens","Directional":false,"Links":[{"SourceID":89380,"TargetID":89381,"Directional":false}]},{"ID":172,"SourceStructureID":170,"TargetStructureID":89457,"Label":"170-89457 via Adherens from 89458 -> 89459","Type":"Adherens","Directional":false,"Links":[{"SourceID":89458,"TargetID":89459,"Directional":false}]},{"ID":173,"SourceStructureID":89460,"TargetStructureID":170,"Label":"89460-170 via Adherens from 89461 -> 89462","Type":"Adherens","Directional":false,"Links":[{"SourceID":89461,"TargetID":89462,"Directional":false}]},{"ID":174,"SourceStructureID":170,"TargetStructureID":89501,"Label":"170-89501 via Adherens from 89500 -> 89502, 89510 -> 89509","Type":"Adherens","Directional":false,"Links":[{"SourceID":89500,"TargetID":89502,"Directional":false},{"SourceID":89510,"TargetID":89509,"Directional":false}]},{"ID":175,"SourceStructureID":89503,"TargetStructureID":170,"Label":"89503-170 via Adherens from 89504 -> 88718","Type":"Adherens","Directional":false,"Links":[{"SourceID":89504,"TargetID":88718,"Directional":false}]},{"ID":176,"SourceStructureID":170,"TargetStructureID":89511,"Label":"170-89511 via Adherens from 89512 -> 89513","Type":"Adherens","Directional":false,"Links":[{"SourceID":89512,"TargetID":89513,"Directional":false}]},{"ID":177,"SourceStructureID":89516,"TargetStructureID":170,"Label":"89516-170 via Unknown from 89517 -> 1258","Type":"Unknown","Directional":false,"Links":[{"SourceID":89517,"TargetID":1258,"Directional":false}]},{"ID":178,"SourceStructureID":89682,"TargetStructureID":170,"Label":"89682-170 via Unknown from 89684 -> 89685","Type":"Unknown","Directional":false,"Links":[{"SourceID":89684,"TargetID":89685,"Directional":false}]},{"ID":179,"SourceStructureID":170,"TargetStructureID":89713,"Label":"170-89713 via Unknown from 92474 -> 92475","Type":"Unknown","Directional":false,"Links":[{"SourceID":92474,"TargetID":92475,"Directional":false}]},{"ID":180,"SourceStructureID":170,"TargetStructureID":89760,"Label":"170-89760 via Unknown from 90063 -> 90064","Type":"Unknown","Directional":false,"Links":[{"SourceID":90063,"TargetID":90064,"Directional":false}]},{"ID":181,"SourceStructureID":170,"TargetStructureID":89877,"Label":"170-89877 via Adherens from 89878 -> 89879","Type":"Adherens","Directional":false,"Links":[{"SourceID":89878,"TargetID":89879,"Directional":false}]},{"ID":182,"SourceStructureID":170,"TargetStructureID":89915,"Label":"170-89915 via Unknown from 89916 -> 89917","Type":"Unknown","Directional":false,"Links":[{"SourceID":89916,"TargetID":89917,"Directional":false}]},{"ID":183,"SourceStructureID":89962,"TargetStructureID":170,"Label":"89962-170 via Unknown from 89963 -> 89964","Type":"Unknown","Directional":false,"Links":[{"SourceID":89963,"TargetID":89964,"Directional":false}]},{"ID":184,"SourceStructureID":89970,"TargetStructureID":170,"Label":"89970-170 via Unknown from 89971 -> 89972","Type":"Unknown","Directional":false,"Links":[{"SourceID":89971,"TargetID":89972,"Directional":false}]},{"ID":185,"SourceStructureID":170,"TargetStructureID":89985,"Label":"170-89985 via Adherens from 90001 -> 90002","Type":"Adherens","Directional":false,"Links":[{"SourceID":90001,"TargetID":90002,"Directional":false}]},{"ID":186,"SourceStructureID":170,"TargetStructureID":90004,"Label":"170-90004 via Adherens from 90003 -> 90010","Type":"Adherens","Directional":false,"Links":[{"SourceID":90003,"TargetID":90010,"Directional":false}]},{"ID":187,"SourceStructureID":90013,"TargetStructureID":170,"Label":"90013-170 via Unknown from 90015 -> 90014","Type":"Unknown","Directional":false,"Links":[{"SourceID":90015,"TargetID":90014,"Directional":false}]},{"ID":188,"SourceStructureID":170,"TargetStructureID":90047,"Label":"170-90047 via Adherens from 90069 -> 90070","Type":"Adherens","Directional":false,"Links":[{"SourceID":90069,"TargetID":90070,"Directional":false}]},{"ID":189,"SourceStructureID":170,"TargetStructureID":90053,"Label":"170-90053 via Unknown from 90054 -> 90055","Type":"Unknown","Directional":false,"Links":[{"SourceID":90054,"TargetID":90055,"Directional":false}]},{"ID":190,"SourceStructureID":170,"TargetStructureID":90075,"Label":"170-90075 via Unknown from 90074 -> 90076","Type":"Unknown","Directional":false,"Links":[{"SourceID":90074,"TargetID":90076,"Directional":false}]},{"ID":191,"SourceStructureID":170,"TargetStructureID":90248,"Label":"170-90248 via Adherens from 90250 -> 90252","Type":"Adherens","Directional":false,"Links":[{"SourceID":90250,"TargetID":90252,"Directional":false}]},{"ID":192,"SourceStructureID":170,"TargetStructureID":90254,"Label":"170-90254 via Unknown from 90256 -> 90255","Type":"Unknown","Directional":false,"Links":[{"SourceID":90256,"TargetID":90255,"Directional":false}]},{"ID":193,"SourceStructureID":90280,"TargetStructureID":170,"Label":"90280-170 via Unknown from 90281 -> 90282","Type":"Unknown","Directional":false,"Links":[{"SourceID":90281,"TargetID":90282,"Directional":false}]},{"ID":194,"SourceStructureID":170,"TargetStructureID":90312,"Label":"170-90312 via BC Conventional Synapse from 92476 -> 90316","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":92476,"TargetID":90316,"Directional":false}]},{"ID":195,"SourceStructureID":170,"TargetStructureID":90339,"Label":"170-90339 via Adherens from 90338 -> 90344","Type":"Adherens","Directional":false,"Links":[{"SourceID":90338,"TargetID":90344,"Directional":false}]},{"ID":196,"SourceStructureID":170,"TargetStructureID":90373,"Label":"170-90373 via Unknown from 90377 -> 90375","Type":"Unknown","Directional":false,"Links":[{"SourceID":90377,"TargetID":90375,"Directional":false}]},{"ID":197,"SourceStructureID":90381,"TargetStructureID":170,"Label":"90381-170 via Adherens from 90386 -> 90387","Type":"Adherens","Directional":false,"Links":[{"SourceID":90386,"TargetID":90387,"Directional":false}]},{"ID":198,"SourceStructureID":90463,"TargetStructureID":170,"Label":"90463-170 via Adherens from 90465 -> 90464","Type":"Adherens","Directional":false,"Links":[{"SourceID":90465,"TargetID":90464,"Directional":false}]},{"ID":199,"SourceStructureID":170,"TargetStructureID":90471,"Label":"170-90471 via Unknown from 90472 -> 90473","Type":"Unknown","Directional":false,"Links":[{"SourceID":90472,"TargetID":90473,"Directional":false}]},{"ID":200,"SourceStructureID":90474,"TargetStructureID":170,"Label":"90474-170 via Adherens from 90476 -> 90477","Type":"Adherens","Directional":false,"Links":[{"SourceID":90476,"TargetID":90477,"Directional":false}]},{"ID":201,"SourceStructureID":90487,"TargetStructureID":170,"Label":"90487-170 via Unknown from 90493 -> 90494","Type":"Unknown","Directional":false,"Links":[{"SourceID":90493,"TargetID":90494,"Directional":false}]},{"ID":202,"SourceStructureID":170,"TargetStructureID":90488,"Label":"170-90488 via Unknown from 90538 -> 90539","Type":"Unknown","Directional":false,"Links":[{"SourceID":90538,"TargetID":90539,"Directional":false}]},{"ID":203,"SourceStructureID":90561,"TargetStructureID":170,"Label":"90561-170 via Adherens from 90562 -> 90560","Type":"Adherens","Directional":false,"Links":[{"SourceID":90562,"TargetID":90560,"Directional":false}]},{"ID":204,"SourceStructureID":170,"TargetStructureID":90568,"Label":"170-90568 via Unknown from 90574 -> 90575","Type":"Unknown","Directional":false,"Links":[{"SourceID":90574,"TargetID":90575,"Directional":false}]},{"ID":205,"SourceStructureID":170,"TargetStructureID":90582,"Label":"170-90582 via Adherens from 90581 -> 90583","Type":"Adherens","Directional":false,"Links":[{"SourceID":90581,"TargetID":90583,"Directional":false}]},{"ID":206,"SourceStructureID":90585,"TargetStructureID":170,"Label":"90585-170 via Unknown from 90595 -> 90596","Type":"Unknown","Directional":false,"Links":[{"SourceID":90595,"TargetID":90596,"Directional":false}]},{"ID":207,"SourceStructureID":92568,"TargetStructureID":170,"Label":"92568-170 via Unknown from 92569 -> 92567","Type":"Unknown","Directional":false,"Links":[{"SourceID":92569,"TargetID":92567,"Directional":false}]},{"ID":208,"SourceStructureID":171,"TargetStructureID":171,"Label":"171-171 via Gap Junction from 94458 -> 94459","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94458,"TargetID":94459,"Directional":false}]},{"ID":209,"SourceStructureID":171,"TargetStructureID":171,"Label":"171-171 via Unknown from 94449 -> 94448","Type":"Unknown","Directional":false,"Links":[{"SourceID":94449,"TargetID":94448,"Directional":false}]},{"ID":210,"SourceStructureID":172,"TargetStructureID":172,"Label":"172-172 via Gap Junction from 84542 -> 84543","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84542,"TargetID":84543,"Directional":false}]},{"ID":211,"SourceStructureID":173,"TargetStructureID":176,"Label":"173-176 via Unknown from 128239 -> 128240","Type":"Unknown","Directional":false,"Links":[{"SourceID":128239,"TargetID":128240,"Directional":false}]},{"ID":212,"SourceStructureID":173,"TargetStructureID":12099,"Label":"173-12099 via Gap Junction from 12097 -> 12100","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12097,"TargetID":12100,"Directional":false}]},{"ID":213,"SourceStructureID":41159,"TargetStructureID":173,"Label":"41159-173 via Gap Junction from 41165 -> 12006","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":41165,"TargetID":12006,"Directional":false}]},{"ID":214,"SourceStructureID":60071,"TargetStructureID":173,"Label":"60071-173 via Adherens from 60073 -> 60070","Type":"Adherens","Directional":false,"Links":[{"SourceID":60073,"TargetID":60070,"Directional":false}]},{"ID":215,"SourceStructureID":60071,"TargetStructureID":173,"Label":"60071-173 via Gap Junction from 60072 -> 60069","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60072,"TargetID":60069,"Directional":false}]},{"ID":216,"SourceStructureID":173,"TargetStructureID":88159,"Label":"173-88159 via Gap Junction from 88168 -> 88167, 88182 -> 88181","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88168,"TargetID":88167,"Directional":false},{"SourceID":88182,"TargetID":88181,"Directional":false}]},{"ID":217,"SourceStructureID":116475,"TargetStructureID":173,"Label":"116475-173 via Gap Junction from 116480 -> 12003","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116480,"TargetID":12003,"Directional":false}]},{"ID":218,"SourceStructureID":122242,"TargetStructureID":173,"Label":"122242-173 via Gap Junction from 122246 -> 122245","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122246,"TargetID":122245,"Directional":false}]},{"ID":219,"SourceStructureID":595,"TargetStructureID":176,"Label":"595-176 via Gap Junction from 46663 -> 46664, 119651 -> 119652, 128286 -> 128287","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46663,"TargetID":46664,"Directional":false},{"SourceID":119651,"TargetID":119652,"Directional":false},{"SourceID":128286,"TargetID":128287,"Directional":false}]},{"ID":220,"SourceStructureID":176,"TargetStructureID":4877,"Label":"176-4877 via Adherens from 91306 -> 91305, 128071 -> 128072, 128670 -> 128669, 128737 -> 128736","Type":"Adherens","Directional":false,"Links":[{"SourceID":91306,"TargetID":91305,"Directional":false},{"SourceID":128071,"TargetID":128072,"Directional":false},{"SourceID":128670,"TargetID":128669,"Directional":false},{"SourceID":128737,"TargetID":128736,"Directional":false}]},{"ID":221,"SourceStructureID":176,"TargetStructureID":4877,"Label":"176-4877 via Gap Junction from 62753 -> 62752, 91294 -> 91295, 91298 -> 91296, 91337 -> 91336, 124694 -> 124693, 125451 -> 125450","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":62753,"TargetID":62752,"Directional":false},{"SourceID":91294,"TargetID":91295,"Directional":false},{"SourceID":91298,"TargetID":91296,"Directional":false},{"SourceID":91337,"TargetID":91336,"Directional":false},{"SourceID":124694,"TargetID":124693,"Directional":false},{"SourceID":125451,"TargetID":125450,"Directional":false}]},{"ID":222,"SourceStructureID":176,"TargetStructureID":5442,"Label":"176-5442 via Adherens from 124631 -> 124632","Type":"Adherens","Directional":false,"Links":[{"SourceID":124631,"TargetID":124632,"Directional":false}]},{"ID":223,"SourceStructureID":5442,"TargetStructureID":176,"Label":"5442-176 via Unknown from 128231 -> 128230","Type":"Unknown","Directional":false,"Links":[{"SourceID":128231,"TargetID":128230,"Directional":false}]},{"ID":224,"SourceStructureID":176,"TargetStructureID":5481,"Label":"176-5481 via Adherens from 125367 -> 125368, 125411 -> 125410","Type":"Adherens","Directional":false,"Links":[{"SourceID":125367,"TargetID":125368,"Directional":false},{"SourceID":125411,"TargetID":125410,"Directional":false}]},{"ID":225,"SourceStructureID":176,"TargetStructureID":5482,"Label":"176-5482 via Unknown from 128005 -> 128004","Type":"Unknown","Directional":false,"Links":[{"SourceID":128005,"TargetID":128004,"Directional":false}]},{"ID":226,"SourceStructureID":176,"TargetStructureID":5530,"Label":"176-5530 via Gap Junction from 119655 -> 119654, 124562 -> 124563, 124870 -> 124871, 124892 -> 124891, 128281 -> 128280, 135583 -> 135582","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119655,"TargetID":119654,"Directional":false},{"SourceID":124562,"TargetID":124563,"Directional":false},{"SourceID":124870,"TargetID":124871,"Directional":false},{"SourceID":124892,"TargetID":124891,"Directional":false},{"SourceID":128281,"TargetID":128280,"Directional":false},{"SourceID":135583,"TargetID":135582,"Directional":false}]},{"ID":227,"SourceStructureID":176,"TargetStructureID":5531,"Label":"176-5531 via Adherens from 125430 -> 125431, 125441 -> 125442, 128262 -> 128263, 128667 -> 128668, 128707 -> 128706, 128726 -> 128727, 147468 -> 147469","Type":"Adherens","Directional":false,"Links":[{"SourceID":125430,"TargetID":125431,"Directional":false},{"SourceID":125441,"TargetID":125442,"Directional":false},{"SourceID":128262,"TargetID":128263,"Directional":false},{"SourceID":128667,"TargetID":128668,"Directional":false},{"SourceID":128707,"TargetID":128706,"Directional":false},{"SourceID":128726,"TargetID":128727,"Directional":false},{"SourceID":147468,"TargetID":147469,"Directional":false}]},{"ID":228,"SourceStructureID":176,"TargetStructureID":5531,"Label":"176-5531 via Gap Junction from 56488 -> 54567, 62930 -> 62931, 91661 -> 91660, 91672 -> 91670, 91686 -> 91688, 91697 -> 91696, 91706 -> 91707, 91717 -> 91718, 91877 -> 91876, 91911 -> 91909, 93441 -> 93440, 106919 -> 106920, 119678 -> 119679, 125388 -> 125387, 125818 -> 125817, 128333 -> 128334, 128438 -> 128437, 128445 -> 128444, 128665 -> 128666, 128678 -> 128679, 147467 -> 147466, 147471 -> 147470","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56488,"TargetID":54567,"Directional":false},{"SourceID":62930,"TargetID":62931,"Directional":false},{"SourceID":91661,"TargetID":91660,"Directional":false},{"SourceID":91672,"TargetID":91670,"Directional":false},{"SourceID":91686,"TargetID":91688,"Directional":false},{"SourceID":91697,"TargetID":91696,"Directional":false},{"SourceID":91706,"TargetID":91707,"Directional":false},{"SourceID":91717,"TargetID":91718,"Directional":false},{"SourceID":91877,"TargetID":91876,"Directional":false},{"SourceID":91911,"TargetID":91909,"Directional":false},{"SourceID":93441,"TargetID":93440,"Directional":false},{"SourceID":106919,"TargetID":106920,"Directional":false},{"SourceID":119678,"TargetID":119679,"Directional":false},{"SourceID":125388,"TargetID":125387,"Directional":false},{"SourceID":125818,"TargetID":125817,"Directional":false},{"SourceID":128333,"TargetID":128334,"Directional":false},{"SourceID":128438,"TargetID":128437,"Directional":false},{"SourceID":128445,"TargetID":128444,"Directional":false},{"SourceID":128665,"TargetID":128666,"Directional":false},{"SourceID":128678,"TargetID":128679,"Directional":false},{"SourceID":147467,"TargetID":147466,"Directional":false},{"SourceID":147471,"TargetID":147470,"Directional":false}]},{"ID":229,"SourceStructureID":5531,"TargetStructureID":176,"Label":"5531-176 via Touch from 147945 -> 147946","Type":"Touch","Directional":false,"Links":[{"SourceID":147945,"TargetID":147946,"Directional":false}]},{"ID":230,"SourceStructureID":5601,"TargetStructureID":176,"Label":"5601-176 via Gap Junction from 128738 -> 125849, 135585 -> 135584","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":128738,"TargetID":125849,"Directional":false},{"SourceID":135585,"TargetID":135584,"Directional":false}]},{"ID":231,"SourceStructureID":176,"TargetStructureID":5601,"Label":"176-5601 via Touch from 128740 -> 128741","Type":"Touch","Directional":false,"Links":[{"SourceID":128740,"TargetID":128741,"Directional":false}]},{"ID":232,"SourceStructureID":5641,"TargetStructureID":176,"Label":"5641-176 via Adherens from 124097 -> 124136","Type":"Adherens","Directional":false,"Links":[{"SourceID":124097,"TargetID":124136,"Directional":false}]},{"ID":233,"SourceStructureID":5641,"TargetStructureID":176,"Label":"5641-176 via Gap Junction from 124098 -> 124134","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124098,"TargetID":124134,"Directional":false}]},{"ID":234,"SourceStructureID":176,"TargetStructureID":5860,"Label":"176-5860 via Adherens from 92002 -> 92001, 124388 -> 124389, 128251 -> 128250, 128316 -> 128320","Type":"Adherens","Directional":false,"Links":[{"SourceID":92002,"TargetID":92001,"Directional":false},{"SourceID":124388,"TargetID":124389,"Directional":false},{"SourceID":128251,"TargetID":128250,"Directional":false},{"SourceID":128316,"TargetID":128320,"Directional":false}]},{"ID":235,"SourceStructureID":5860,"TargetStructureID":176,"Label":"5860-176 via Gap Junction from 20029 -> 20028, 24729 -> 5859, 54989 -> 54991, 77002 -> 6197, 91777 -> 91776, 91886 -> 91885, 92000 -> 54726, 119644 -> 119645, 119657 -> 119656, 119661 -> 6969, 128247 -> 128246, 128299 -> 128300","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20029,"TargetID":20028,"Directional":false},{"SourceID":24729,"TargetID":5859,"Directional":false},{"SourceID":54989,"TargetID":54991,"Directional":false},{"SourceID":77002,"TargetID":6197,"Directional":false},{"SourceID":91777,"TargetID":91776,"Directional":false},{"SourceID":91886,"TargetID":91885,"Directional":false},{"SourceID":92000,"TargetID":54726,"Directional":false},{"SourceID":119644,"TargetID":119645,"Directional":false},{"SourceID":119657,"TargetID":119656,"Directional":false},{"SourceID":119661,"TargetID":6969,"Directional":false},{"SourceID":128247,"TargetID":128246,"Directional":false},{"SourceID":128299,"TargetID":128300,"Directional":false}]},{"ID":236,"SourceStructureID":176,"TargetStructureID":6117,"Label":"176-6117 via Gap Junction from 58716 -> 58717, 135550 -> 135549","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58716,"TargetID":58717,"Directional":false},{"SourceID":135550,"TargetID":135549,"Directional":false}]},{"ID":237,"SourceStructureID":176,"TargetStructureID":6117,"Label":"176-6117 via Touch from 91854 -> 91853","Type":"Touch","Directional":false,"Links":[{"SourceID":91854,"TargetID":91853,"Directional":false}]},{"ID":238,"SourceStructureID":6169,"TargetStructureID":176,"Label":"6169-176 via Gap Junction from 35845 -> 35844","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35845,"TargetID":35844,"Directional":false}]},{"ID":239,"SourceStructureID":176,"TargetStructureID":7113,"Label":"176-7113 via Adherens from 128095 -> 128094","Type":"Adherens","Directional":false,"Links":[{"SourceID":128095,"TargetID":128094,"Directional":false}]},{"ID":240,"SourceStructureID":7113,"TargetStructureID":176,"Label":"7113-176 via Gap Junction from 58657 -> 58656, 58802 -> 58801, 91927 -> 91926, 91977 -> 91975","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58657,"TargetID":58656,"Directional":false},{"SourceID":58802,"TargetID":58801,"Directional":false},{"SourceID":91927,"TargetID":91926,"Directional":false},{"SourceID":91977,"TargetID":91975,"Directional":false}]},{"ID":241,"SourceStructureID":11229,"TargetStructureID":176,"Label":"11229-176 via Gap Junction from 15635 -> 128724","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15635,"TargetID":128724,"Directional":false}]},{"ID":242,"SourceStructureID":21299,"TargetStructureID":176,"Label":"21299-176 via Adherens from 128292 -> 128291","Type":"Adherens","Directional":false,"Links":[{"SourceID":128292,"TargetID":128291,"Directional":false}]},{"ID":243,"SourceStructureID":21299,"TargetStructureID":176,"Label":"21299-176 via Gap Junction from 54956 -> 54955, 91570 -> 91569","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54956,"TargetID":54955,"Directional":false},{"SourceID":91570,"TargetID":91569,"Directional":false}]},{"ID":244,"SourceStructureID":176,"TargetStructureID":38949,"Label":"176-38949 via Adherens from 128265 -> 128266","Type":"Adherens","Directional":false,"Links":[{"SourceID":128265,"TargetID":128266,"Directional":false}]},{"ID":245,"SourceStructureID":176,"TargetStructureID":38949,"Label":"176-38949 via Unknown from 128272 -> 128273","Type":"Unknown","Directional":false,"Links":[{"SourceID":128272,"TargetID":128273,"Directional":false}]},{"ID":246,"SourceStructureID":176,"TargetStructureID":44970,"Label":"176-44970 via Unknown from 124536 -> 128223","Type":"Unknown","Directional":false,"Links":[{"SourceID":124536,"TargetID":128223,"Directional":false}]},{"ID":247,"SourceStructureID":54895,"TargetStructureID":176,"Label":"54895-176 via Adherens from 124769 -> 124768","Type":"Adherens","Directional":false,"Links":[{"SourceID":124769,"TargetID":124768,"Directional":false}]},{"ID":248,"SourceStructureID":54948,"TargetStructureID":176,"Label":"54948-176 via Adherens from 128290 -> 128289","Type":"Adherens","Directional":false,"Links":[{"SourceID":128290,"TargetID":128289,"Directional":false}]},{"ID":249,"SourceStructureID":56802,"TargetStructureID":176,"Label":"56802-176 via Adherens from 128031 -> 128030","Type":"Adherens","Directional":false,"Links":[{"SourceID":128031,"TargetID":128030,"Directional":false}]},{"ID":250,"SourceStructureID":56802,"TargetStructureID":176,"Label":"56802-176 via Unknown from 119621 -> 119622, 119623 -> 119624","Type":"Unknown","Directional":false,"Links":[{"SourceID":119621,"TargetID":119622,"Directional":false},{"SourceID":119623,"TargetID":119624,"Directional":false}]},{"ID":251,"SourceStructureID":176,"TargetStructureID":58642,"Label":"176-58642 via Unknown from 128232 -> 128233","Type":"Unknown","Directional":false,"Links":[{"SourceID":128232,"TargetID":128233,"Directional":false}]},{"ID":252,"SourceStructureID":58709,"TargetStructureID":176,"Label":"58709-176 via Adherens from 128221 -> 124551","Type":"Adherens","Directional":false,"Links":[{"SourceID":128221,"TargetID":124551,"Directional":false}]},{"ID":253,"SourceStructureID":176,"TargetStructureID":80609,"Label":"176-80609 via Adherens from 124580 -> 124581","Type":"Adherens","Directional":false,"Links":[{"SourceID":124580,"TargetID":124581,"Directional":false}]},{"ID":254,"SourceStructureID":82577,"TargetStructureID":176,"Label":"82577-176 via Conventional from 82579 -> 82578","Type":"Conventional","Directional":false,"Links":[{"SourceID":82579,"TargetID":82578,"Directional":false}]},{"ID":255,"SourceStructureID":176,"TargetStructureID":82877,"Label":"176-82877 via Unknown from 128423 -> 128424","Type":"Unknown","Directional":false,"Links":[{"SourceID":128423,"TargetID":128424,"Directional":false}]},{"ID":256,"SourceStructureID":176,"TargetStructureID":86565,"Label":"176-86565 via Unknown from 124697 -> 124698","Type":"Unknown","Directional":false,"Links":[{"SourceID":124697,"TargetID":124698,"Directional":false}]},{"ID":257,"SourceStructureID":91793,"TargetStructureID":176,"Label":"91793-176 via Unknown from 91794 -> 91792","Type":"Unknown","Directional":false,"Links":[{"SourceID":91794,"TargetID":91792,"Directional":false}]},{"ID":258,"SourceStructureID":91832,"TargetStructureID":176,"Label":"91832-176 via Unknown from 91833 -> 91831","Type":"Unknown","Directional":false,"Links":[{"SourceID":91833,"TargetID":91831,"Directional":false}]},{"ID":259,"SourceStructureID":176,"TargetStructureID":91843,"Label":"176-91843 via Adherens from 128093 -> 128092","Type":"Adherens","Directional":false,"Links":[{"SourceID":128093,"TargetID":128092,"Directional":false}]},{"ID":260,"SourceStructureID":91843,"TargetStructureID":176,"Label":"91843-176 via Unknown from 91844 -> 91842","Type":"Unknown","Directional":false,"Links":[{"SourceID":91844,"TargetID":91842,"Directional":false}]},{"ID":261,"SourceStructureID":176,"TargetStructureID":91846,"Label":"176-91846 via Unknown from 91845 -> 91847","Type":"Unknown","Directional":false,"Links":[{"SourceID":91845,"TargetID":91847,"Directional":false}]},{"ID":262,"SourceStructureID":176,"TargetStructureID":91856,"Label":"176-91856 via Unknown from 91863 -> 91862, 124718 -> 124719","Type":"Unknown","Directional":false,"Links":[{"SourceID":91863,"TargetID":91862,"Directional":false},{"SourceID":124718,"TargetID":124719,"Directional":false}]},{"ID":263,"SourceStructureID":91867,"TargetStructureID":176,"Label":"91867-176 via Unknown from 128215 -> 128214","Type":"Unknown","Directional":false,"Links":[{"SourceID":128215,"TargetID":128214,"Directional":false}]},{"ID":264,"SourceStructureID":91871,"TargetStructureID":176,"Label":"91871-176 via Unknown from 91874 -> 5897","Type":"Unknown","Directional":false,"Links":[{"SourceID":91874,"TargetID":5897,"Directional":false}]},{"ID":265,"SourceStructureID":91888,"TargetStructureID":176,"Label":"91888-176 via Unknown from 91889 -> 91887, 124954 -> 124953","Type":"Unknown","Directional":false,"Links":[{"SourceID":91889,"TargetID":91887,"Directional":false},{"SourceID":124954,"TargetID":124953,"Directional":false}]},{"ID":266,"SourceStructureID":91918,"TargetStructureID":176,"Label":"91918-176 via Unknown from 125806 -> 125805","Type":"Unknown","Directional":false,"Links":[{"SourceID":125806,"TargetID":125805,"Directional":false}]},{"ID":267,"SourceStructureID":91921,"TargetStructureID":176,"Label":"91921-176 via Unknown from 91922 -> 91736, 128458 -> 128459","Type":"Unknown","Directional":false,"Links":[{"SourceID":91922,"TargetID":91736,"Directional":false},{"SourceID":128458,"TargetID":128459,"Directional":false}]},{"ID":268,"SourceStructureID":91924,"TargetStructureID":176,"Label":"91924-176 via Unknown from 91925 -> 91923","Type":"Unknown","Directional":false,"Links":[{"SourceID":91925,"TargetID":91923,"Directional":false}]},{"ID":269,"SourceStructureID":91930,"TargetStructureID":176,"Label":"91930-176 via Adherens from 128676 -> 128675","Type":"Adherens","Directional":false,"Links":[{"SourceID":128676,"TargetID":128675,"Directional":false}]},{"ID":270,"SourceStructureID":91930,"TargetStructureID":176,"Label":"91930-176 via Unknown from 91931 -> 91929","Type":"Unknown","Directional":false,"Links":[{"SourceID":91931,"TargetID":91929,"Directional":false}]},{"ID":271,"SourceStructureID":91959,"TargetStructureID":176,"Label":"91959-176 via Adherens from 125810 -> 125811","Type":"Adherens","Directional":false,"Links":[{"SourceID":125810,"TargetID":125811,"Directional":false}]},{"ID":272,"SourceStructureID":91990,"TargetStructureID":176,"Label":"91990-176 via Unknown from 91991 -> 91989","Type":"Unknown","Directional":false,"Links":[{"SourceID":91991,"TargetID":91989,"Directional":false}]},{"ID":273,"SourceStructureID":91994,"TargetStructureID":176,"Label":"91994-176 via Unknown from 91995 -> 91993","Type":"Unknown","Directional":false,"Links":[{"SourceID":91995,"TargetID":91993,"Directional":false}]},{"ID":274,"SourceStructureID":93437,"TargetStructureID":176,"Label":"93437-176 via Unknown from 124938 -> 124937","Type":"Unknown","Directional":false,"Links":[{"SourceID":124938,"TargetID":124937,"Directional":false}]},{"ID":275,"SourceStructureID":107476,"TargetStructureID":176,"Label":"107476-176 via Adherens from 128454 -> 128453","Type":"Adherens","Directional":false,"Links":[{"SourceID":128454,"TargetID":128453,"Directional":false}]},{"ID":276,"SourceStructureID":107483,"TargetStructureID":176,"Label":"107483-176 via Adherens from 125395 -> 125394","Type":"Adherens","Directional":false,"Links":[{"SourceID":125395,"TargetID":125394,"Directional":false}]},{"ID":277,"SourceStructureID":176,"TargetStructureID":107587,"Label":"176-107587 via Adherens from 125416 -> 125444","Type":"Adherens","Directional":false,"Links":[{"SourceID":125416,"TargetID":125444,"Directional":false}]},{"ID":278,"SourceStructureID":176,"TargetStructureID":107587,"Label":"176-107587 via Unknown from 125437 -> 125438","Type":"Unknown","Directional":false,"Links":[{"SourceID":125437,"TargetID":125438,"Directional":false}]},{"ID":279,"SourceStructureID":176,"TargetStructureID":107672,"Label":"176-107672 via Adherens from 91903 -> 125346","Type":"Adherens","Directional":false,"Links":[{"SourceID":91903,"TargetID":125346,"Directional":false}]},{"ID":280,"SourceStructureID":128685,"TargetStructureID":176,"Label":"128685-176 via Adherens from 128688 -> 125452","Type":"Adherens","Directional":false,"Links":[{"SourceID":128688,"TargetID":125452,"Directional":false}]},{"ID":281,"SourceStructureID":136680,"TargetStructureID":176,"Label":"136680-176 via Adherens from 136681 -> 124559","Type":"Adherens","Directional":false,"Links":[{"SourceID":136681,"TargetID":124559,"Directional":false}]},{"ID":282,"SourceStructureID":136680,"TargetStructureID":176,"Label":"136680-176 via Gap Junction from 136683 -> 128243","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136683,"TargetID":128243,"Directional":false}]},{"ID":283,"SourceStructureID":176,"TargetStructureID":147412,"Label":"176-147412 via Unknown from 125386 -> 147417, 147414 -> 128455","Type":"Unknown","Directional":false,"Links":[{"SourceID":125386,"TargetID":147417,"Directional":false},{"SourceID":147414,"TargetID":128455,"Directional":false}]},{"ID":284,"SourceStructureID":177,"TargetStructureID":177,"Label":"177-177 via Gap Junction from 117761 -> 117757","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117761,"TargetID":117757,"Directional":false}]},{"ID":285,"SourceStructureID":177,"TargetStructureID":5860,"Label":"177-5860 via Gap Junction from 5731 -> 54996, 5938 -> 8809, 117763 -> 117762","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":5731,"TargetID":54996,"Directional":false},{"SourceID":5938,"TargetID":8809,"Directional":false},{"SourceID":117763,"TargetID":117762,"Directional":false}]},{"ID":286,"SourceStructureID":7113,"TargetStructureID":177,"Label":"7113-177 via Gap Junction from 101841 -> 5964, 117755 -> 117754, 131420 -> 131419","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":101841,"TargetID":5964,"Directional":false},{"SourceID":117755,"TargetID":117754,"Directional":false},{"SourceID":131420,"TargetID":131419,"Directional":false}]},{"ID":287,"SourceStructureID":514,"TargetStructureID":179,"Label":"514-179 via Adherens from 103814 -> 103813","Type":"Adherens","Directional":false,"Links":[{"SourceID":103814,"TargetID":103813,"Directional":false}]},{"ID":288,"SourceStructureID":5303,"TargetStructureID":179,"Label":"5303-179 via Gap Junction from 101399 -> 104984","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":101399,"TargetID":104984,"Directional":false}]},{"ID":289,"SourceStructureID":179,"TargetStructureID":5860,"Label":"179-5860 via Adherens from 87475 -> 87476","Type":"Adherens","Directional":false,"Links":[{"SourceID":87475,"TargetID":87476,"Directional":false}]},{"ID":290,"SourceStructureID":6169,"TargetStructureID":179,"Label":"6169-179 via Adherens from 87474 -> 87473","Type":"Adherens","Directional":false,"Links":[{"SourceID":87474,"TargetID":87473,"Directional":false}]},{"ID":291,"SourceStructureID":10897,"TargetStructureID":179,"Label":"10897-179 via Unknown from 104878 -> 104877","Type":"Unknown","Directional":false,"Links":[{"SourceID":104878,"TargetID":104877,"Directional":false}]},{"ID":292,"SourceStructureID":16446,"TargetStructureID":179,"Label":"16446-179 via Unknown from 103860 -> 103859, 103864 -> 103863","Type":"Unknown","Directional":false,"Links":[{"SourceID":103860,"TargetID":103859,"Directional":false},{"SourceID":103864,"TargetID":103863,"Directional":false}]},{"ID":293,"SourceStructureID":46062,"TargetStructureID":179,"Label":"46062-179 via Adherens from 104654 -> 104653","Type":"Adherens","Directional":false,"Links":[{"SourceID":104654,"TargetID":104653,"Directional":false}]},{"ID":294,"SourceStructureID":130125,"TargetStructureID":179,"Label":"130125-179 via Adherens from 105205 -> 105204","Type":"Adherens","Directional":false,"Links":[{"SourceID":105205,"TargetID":105204,"Directional":false}]},{"ID":295,"SourceStructureID":180,"TargetStructureID":180,"Label":"180-180 via Gap Junction from 132865 -> 132866","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132865,"TargetID":132866,"Directional":false}]},{"ID":296,"SourceStructureID":180,"TargetStructureID":318,"Label":"180-318 via Adherens from 90896 -> 90895, 90897 -> 90894","Type":"Adherens","Directional":false,"Links":[{"SourceID":90896,"TargetID":90895,"Directional":false},{"SourceID":90897,"TargetID":90894,"Directional":false}]},{"ID":297,"SourceStructureID":593,"TargetStructureID":180,"Label":"593-180 via Gap Junction from 59789 -> 59790","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59789,"TargetID":59790,"Directional":false}]},{"ID":298,"SourceStructureID":180,"TargetStructureID":3257,"Label":"180-3257 via Gap Junction from 56880 -> 15453, 90864 -> 90863","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56880,"TargetID":15453,"Directional":false},{"SourceID":90864,"TargetID":90863,"Directional":false}]},{"ID":299,"SourceStructureID":180,"TargetStructureID":3679,"Label":"180-3679 via Adherens from 133136 -> 133135","Type":"Adherens","Directional":false,"Links":[{"SourceID":133136,"TargetID":133135,"Directional":false}]},{"ID":300,"SourceStructureID":180,"TargetStructureID":3679,"Label":"180-3679 via Gap Junction from 14925 -> 14924, 65608 -> 65609, 90964 -> 90963, 90998 -> 90997, 132920 -> 132919","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14925,"TargetID":14924,"Directional":false},{"SourceID":65608,"TargetID":65609,"Directional":false},{"SourceID":90964,"TargetID":90963,"Directional":false},{"SourceID":90998,"TargetID":90997,"Directional":false},{"SourceID":132920,"TargetID":132919,"Directional":false}]},{"ID":301,"SourceStructureID":180,"TargetStructureID":4570,"Label":"180-4570 via Adherens from 90858 -> 14419","Type":"Adherens","Directional":false,"Links":[{"SourceID":90858,"TargetID":14419,"Directional":false}]},{"ID":302,"SourceStructureID":4850,"TargetStructureID":180,"Label":"4850-180 via Unknown from 132923 -> 132922, 132981 -> 132980","Type":"Unknown","Directional":false,"Links":[{"SourceID":132923,"TargetID":132922,"Directional":false},{"SourceID":132981,"TargetID":132980,"Directional":false}]},{"ID":303,"SourceStructureID":5283,"TargetStructureID":180,"Label":"5283-180 via Adherens from 66309 -> 66308","Type":"Adherens","Directional":false,"Links":[{"SourceID":66309,"TargetID":66308,"Directional":false}]},{"ID":304,"SourceStructureID":180,"TargetStructureID":5303,"Label":"180-5303 via Unknown from 133124 -> 133125","Type":"Unknown","Directional":false,"Links":[{"SourceID":133124,"TargetID":133125,"Directional":false}]},{"ID":305,"SourceStructureID":180,"TargetStructureID":5618,"Label":"180-5618 via Adherens from 65981 -> 65980","Type":"Adherens","Directional":false,"Links":[{"SourceID":65981,"TargetID":65980,"Directional":false}]},{"ID":306,"SourceStructureID":180,"TargetStructureID":5618,"Label":"180-5618 via Unknown from 94654 -> 94653, 94690 -> 94691","Type":"Unknown","Directional":false,"Links":[{"SourceID":94654,"TargetID":94653,"Directional":false},{"SourceID":94690,"TargetID":94691,"Directional":false}]},{"ID":307,"SourceStructureID":6169,"TargetStructureID":180,"Label":"6169-180 via Adherens from 29259 -> 29258, 95289 -> 95288, 95345 -> 95346, 133133 -> 133134, 135068 -> 135067","Type":"Adherens","Directional":false,"Links":[{"SourceID":29259,"TargetID":29258,"Directional":false},{"SourceID":95289,"TargetID":95288,"Directional":false},{"SourceID":95345,"TargetID":95346,"Directional":false},{"SourceID":133133,"TargetID":133134,"Directional":false},{"SourceID":135068,"TargetID":135067,"Directional":false}]},{"ID":308,"SourceStructureID":180,"TargetStructureID":6169,"Label":"180-6169 via Gap Junction from 11942 -> 11949, 16167 -> 16166, 29257 -> 14940, 31102 -> 18393, 59670 -> 59671, 59678 -> 59677, 92724 -> 92725, 95555 -> 95554, 95974 -> 95973, 132843 -> 132842, 133066 -> 132900, 133116 -> 133117","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":11942,"TargetID":11949,"Directional":false},{"SourceID":16167,"TargetID":16166,"Directional":false},{"SourceID":29257,"TargetID":14940,"Directional":false},{"SourceID":31102,"TargetID":18393,"Directional":false},{"SourceID":59670,"TargetID":59671,"Directional":false},{"SourceID":59678,"TargetID":59677,"Directional":false},{"SourceID":92724,"TargetID":92725,"Directional":false},{"SourceID":95555,"TargetID":95554,"Directional":false},{"SourceID":95974,"TargetID":95973,"Directional":false},{"SourceID":132843,"TargetID":132842,"Directional":false},{"SourceID":133066,"TargetID":132900,"Directional":false},{"SourceID":133116,"TargetID":133117,"Directional":false}]},{"ID":309,"SourceStructureID":8579,"TargetStructureID":180,"Label":"8579-180 via Adherens from 90888 -> 90887","Type":"Adherens","Directional":false,"Links":[{"SourceID":90888,"TargetID":90887,"Directional":false}]},{"ID":310,"SourceStructureID":180,"TargetStructureID":9347,"Label":"180-9347 via Adherens from 90731 -> 90733, 90752 -> 90750","Type":"Adherens","Directional":false,"Links":[{"SourceID":90731,"TargetID":90733,"Directional":false},{"SourceID":90752,"TargetID":90750,"Directional":false}]},{"ID":311,"SourceStructureID":9347,"TargetStructureID":180,"Label":"9347-180 via Unknown from 90742 -> 90741, 90767 -> 90766","Type":"Unknown","Directional":false,"Links":[{"SourceID":90742,"TargetID":90741,"Directional":false},{"SourceID":90767,"TargetID":90766,"Directional":false}]},{"ID":312,"SourceStructureID":13492,"TargetStructureID":180,"Label":"13492-180 via Unknown from 94617 -> 94616","Type":"Unknown","Directional":false,"Links":[{"SourceID":94617,"TargetID":94616,"Directional":false}]},{"ID":313,"SourceStructureID":29277,"TargetStructureID":180,"Label":"29277-180 via Adherens from 132932 -> 132933","Type":"Adherens","Directional":false,"Links":[{"SourceID":132932,"TargetID":132933,"Directional":false}]},{"ID":314,"SourceStructureID":29277,"TargetStructureID":180,"Label":"29277-180 via Unknown from 132877 -> 132876","Type":"Unknown","Directional":false,"Links":[{"SourceID":132877,"TargetID":132876,"Directional":false}]},{"ID":315,"SourceStructureID":180,"TargetStructureID":30518,"Label":"180-30518 via Adherens from 90846 -> 90847","Type":"Adherens","Directional":false,"Links":[{"SourceID":90846,"TargetID":90847,"Directional":false}]},{"ID":316,"SourceStructureID":34601,"TargetStructureID":180,"Label":"34601-180 via Adherens from 95753 -> 95752","Type":"Adherens","Directional":false,"Links":[{"SourceID":95753,"TargetID":95752,"Directional":false}]},{"ID":317,"SourceStructureID":41042,"TargetStructureID":180,"Label":"41042-180 via Unknown from 133121 -> 95814","Type":"Unknown","Directional":false,"Links":[{"SourceID":133121,"TargetID":95814,"Directional":false}]},{"ID":318,"SourceStructureID":59422,"TargetStructureID":180,"Label":"59422-180 via Unknown from 95855 -> 95854","Type":"Unknown","Directional":false,"Links":[{"SourceID":95855,"TargetID":95854,"Directional":false}]},{"ID":319,"SourceStructureID":60535,"TargetStructureID":180,"Label":"60535-180 via Unknown from 95666 -> 95665","Type":"Unknown","Directional":false,"Links":[{"SourceID":95666,"TargetID":95665,"Directional":false}]},{"ID":320,"SourceStructureID":180,"TargetStructureID":64492,"Label":"180-64492 via Adherens from 133044 -> 133043","Type":"Adherens","Directional":false,"Links":[{"SourceID":133044,"TargetID":133043,"Directional":false}]},{"ID":321,"SourceStructureID":65963,"TargetStructureID":180,"Label":"65963-180 via Adherens from 65967 -> 65968","Type":"Adherens","Directional":false,"Links":[{"SourceID":65967,"TargetID":65968,"Directional":false}]},{"ID":322,"SourceStructureID":65963,"TargetStructureID":180,"Label":"65963-180 via Unknown from 94689 -> 94688","Type":"Unknown","Directional":false,"Links":[{"SourceID":94689,"TargetID":94688,"Directional":false}]},{"ID":323,"SourceStructureID":65971,"TargetStructureID":180,"Label":"65971-180 via Adherens from 133040 -> 133039","Type":"Adherens","Directional":false,"Links":[{"SourceID":133040,"TargetID":133039,"Directional":false}]},{"ID":324,"SourceStructureID":66535,"TargetStructureID":180,"Label":"66535-180 via Unknown from 66536 -> 59666","Type":"Unknown","Directional":false,"Links":[{"SourceID":66536,"TargetID":59666,"Directional":false}]},{"ID":325,"SourceStructureID":180,"TargetStructureID":71517,"Label":"180-71517 via Adherens from 75051 -> 75050","Type":"Adherens","Directional":false,"Links":[{"SourceID":75051,"TargetID":75050,"Directional":false}]},{"ID":326,"SourceStructureID":180,"TargetStructureID":75339,"Label":"180-75339 via Adherens from 95233 -> 95232","Type":"Adherens","Directional":false,"Links":[{"SourceID":95233,"TargetID":95232,"Directional":false}]},{"ID":327,"SourceStructureID":180,"TargetStructureID":84802,"Label":"180-84802 via Unknown from 132874 -> 132873","Type":"Unknown","Directional":false,"Links":[{"SourceID":132874,"TargetID":132873,"Directional":false}]},{"ID":328,"SourceStructureID":180,"TargetStructureID":90800,"Label":"180-90800 via Adherens from 90804 -> 90803","Type":"Adherens","Directional":false,"Links":[{"SourceID":90804,"TargetID":90803,"Directional":false}]},{"ID":329,"SourceStructureID":90809,"TargetStructureID":180,"Label":"90809-180 via Unknown from 90810 -> 90808","Type":"Unknown","Directional":false,"Links":[{"SourceID":90810,"TargetID":90808,"Directional":false}]},{"ID":330,"SourceStructureID":90844,"TargetStructureID":180,"Label":"90844-180 via Adherens from 132994 -> 132995","Type":"Adherens","Directional":false,"Links":[{"SourceID":132994,"TargetID":132995,"Directional":false}]},{"ID":331,"SourceStructureID":90883,"TargetStructureID":180,"Label":"90883-180 via Adherens from 90885 -> 90882","Type":"Adherens","Directional":false,"Links":[{"SourceID":90885,"TargetID":90882,"Directional":false}]},{"ID":332,"SourceStructureID":180,"TargetStructureID":90937,"Label":"180-90937 via Adherens from 90939 -> 90938","Type":"Adherens","Directional":false,"Links":[{"SourceID":90939,"TargetID":90938,"Directional":false}]},{"ID":333,"SourceStructureID":94613,"TargetStructureID":180,"Label":"94613-180 via Unknown from 94614 -> 94615","Type":"Unknown","Directional":false,"Links":[{"SourceID":94614,"TargetID":94615,"Directional":false}]},{"ID":334,"SourceStructureID":94637,"TargetStructureID":180,"Label":"94637-180 via Unknown from 94639 -> 94638","Type":"Unknown","Directional":false,"Links":[{"SourceID":94639,"TargetID":94638,"Directional":false}]},{"ID":335,"SourceStructureID":180,"TargetStructureID":94664,"Label":"180-94664 via Unknown from 132893 -> 132892","Type":"Unknown","Directional":false,"Links":[{"SourceID":132893,"TargetID":132892,"Directional":false}]},{"ID":336,"SourceStructureID":180,"TargetStructureID":94698,"Label":"180-94698 via Adherens from 132978 -> 132979","Type":"Adherens","Directional":false,"Links":[{"SourceID":132978,"TargetID":132979,"Directional":false}]},{"ID":337,"SourceStructureID":94702,"TargetStructureID":180,"Label":"94702-180 via Adherens from 94885 -> 94884","Type":"Adherens","Directional":false,"Links":[{"SourceID":94885,"TargetID":94884,"Directional":false}]},{"ID":338,"SourceStructureID":94702,"TargetStructureID":180,"Label":"94702-180 via Unknown from 94703 -> 94704","Type":"Unknown","Directional":false,"Links":[{"SourceID":94703,"TargetID":94704,"Directional":false}]},{"ID":339,"SourceStructureID":180,"TargetStructureID":94926,"Label":"180-94926 via Unknown from 59661 -> 94929","Type":"Unknown","Directional":false,"Links":[{"SourceID":59661,"TargetID":94929,"Directional":false}]},{"ID":340,"SourceStructureID":180,"TargetStructureID":94935,"Label":"180-94935 via Adherens from 91020 -> 94937","Type":"Adherens","Directional":false,"Links":[{"SourceID":91020,"TargetID":94937,"Directional":false}]},{"ID":341,"SourceStructureID":94952,"TargetStructureID":180,"Label":"94952-180 via Adherens from 94955 -> 94954","Type":"Adherens","Directional":false,"Links":[{"SourceID":94955,"TargetID":94954,"Directional":false}]},{"ID":342,"SourceStructureID":180,"TargetStructureID":94956,"Label":"180-94956 via Unknown from 94958 -> 94957","Type":"Unknown","Directional":false,"Links":[{"SourceID":94958,"TargetID":94957,"Directional":false}]},{"ID":343,"SourceStructureID":94962,"TargetStructureID":180,"Label":"94962-180 via Adherens from 132925 -> 132924","Type":"Adherens","Directional":false,"Links":[{"SourceID":132925,"TargetID":132924,"Directional":false}]},{"ID":344,"SourceStructureID":94978,"TargetStructureID":180,"Label":"94978-180 via Unknown from 132854 -> 132853","Type":"Unknown","Directional":false,"Links":[{"SourceID":132854,"TargetID":132853,"Directional":false}]},{"ID":345,"SourceStructureID":180,"TargetStructureID":94991,"Label":"180-94991 via Adherens from 132926 -> 132927","Type":"Adherens","Directional":false,"Links":[{"SourceID":132926,"TargetID":132927,"Directional":false}]},{"ID":346,"SourceStructureID":94993,"TargetStructureID":180,"Label":"94993-180 via Adherens from 94994 -> 29261","Type":"Adherens","Directional":false,"Links":[{"SourceID":94994,"TargetID":29261,"Directional":false}]},{"ID":347,"SourceStructureID":95241,"TargetStructureID":180,"Label":"95241-180 via Unknown from 95242 -> 95240","Type":"Unknown","Directional":false,"Links":[{"SourceID":95242,"TargetID":95240,"Directional":false}]},{"ID":348,"SourceStructureID":180,"TargetStructureID":95250,"Label":"180-95250 via Gap Junction from 133105 -> 133106","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133105,"TargetID":133106,"Directional":false}]},{"ID":349,"SourceStructureID":95299,"TargetStructureID":180,"Label":"95299-180 via Adherens from 95301 -> 95300","Type":"Adherens","Directional":false,"Links":[{"SourceID":95301,"TargetID":95300,"Directional":false}]},{"ID":350,"SourceStructureID":95299,"TargetStructureID":180,"Label":"95299-180 via Unknown from 132857 -> 132858","Type":"Unknown","Directional":false,"Links":[{"SourceID":132857,"TargetID":132858,"Directional":false}]},{"ID":351,"SourceStructureID":180,"TargetStructureID":95311,"Label":"180-95311 via Unknown from 95312 -> 95313, 132859 -> 132858","Type":"Unknown","Directional":false,"Links":[{"SourceID":95312,"TargetID":95313,"Directional":false},{"SourceID":132859,"TargetID":132858,"Directional":false}]},{"ID":352,"SourceStructureID":180,"TargetStructureID":95334,"Label":"180-95334 via Unknown from 95338 -> 95339, 95340 -> 95341, 132861 -> 132860","Type":"Unknown","Directional":false,"Links":[{"SourceID":95338,"TargetID":95339,"Directional":false},{"SourceID":95340,"TargetID":95341,"Directional":false},{"SourceID":132861,"TargetID":132860,"Directional":false}]},{"ID":353,"SourceStructureID":95349,"TargetStructureID":180,"Label":"95349-180 via Adherens from 132895 -> 132894","Type":"Adherens","Directional":false,"Links":[{"SourceID":132895,"TargetID":132894,"Directional":false}]},{"ID":354,"SourceStructureID":180,"TargetStructureID":95390,"Label":"180-95390 via Adherens from 95395 -> 95394, 132982 -> 132983","Type":"Adherens","Directional":false,"Links":[{"SourceID":95395,"TargetID":95394,"Directional":false},{"SourceID":132982,"TargetID":132983,"Directional":false}]},{"ID":355,"SourceStructureID":180,"TargetStructureID":95419,"Label":"180-95419 via Adherens from 95423 -> 95422","Type":"Adherens","Directional":false,"Links":[{"SourceID":95423,"TargetID":95422,"Directional":false}]},{"ID":356,"SourceStructureID":180,"TargetStructureID":95431,"Label":"180-95431 via Adherens from 95434 -> 95433","Type":"Adherens","Directional":false,"Links":[{"SourceID":95434,"TargetID":95433,"Directional":false}]},{"ID":357,"SourceStructureID":95457,"TargetStructureID":180,"Label":"95457-180 via Unknown from 95459 -> 95458","Type":"Unknown","Directional":false,"Links":[{"SourceID":95459,"TargetID":95458,"Directional":false}]},{"ID":358,"SourceStructureID":180,"TargetStructureID":95490,"Label":"180-95490 via Unknown from 95492 -> 95491","Type":"Unknown","Directional":false,"Links":[{"SourceID":95492,"TargetID":95491,"Directional":false}]},{"ID":359,"SourceStructureID":180,"TargetStructureID":95500,"Label":"180-95500 via Unknown from 95506 -> 95507","Type":"Unknown","Directional":false,"Links":[{"SourceID":95506,"TargetID":95507,"Directional":false}]},{"ID":360,"SourceStructureID":180,"TargetStructureID":95512,"Label":"180-95512 via Adherens from 95511 -> 95513","Type":"Adherens","Directional":false,"Links":[{"SourceID":95511,"TargetID":95513,"Directional":false}]},{"ID":361,"SourceStructureID":95530,"TargetStructureID":180,"Label":"95530-180 via Unknown from 95532 -> 95531","Type":"Unknown","Directional":false,"Links":[{"SourceID":95532,"TargetID":95531,"Directional":false}]},{"ID":362,"SourceStructureID":180,"TargetStructureID":95540,"Label":"180-95540 via Adherens from 132985 -> 132986","Type":"Adherens","Directional":false,"Links":[{"SourceID":132985,"TargetID":132986,"Directional":false}]},{"ID":363,"SourceStructureID":180,"TargetStructureID":95573,"Label":"180-95573 via Adherens from 132988 -> 132989","Type":"Adherens","Directional":false,"Links":[{"SourceID":132988,"TargetID":132989,"Directional":false}]},{"ID":364,"SourceStructureID":95612,"TargetStructureID":180,"Label":"95612-180 via Unknown from 95614 -> 95613","Type":"Unknown","Directional":false,"Links":[{"SourceID":95614,"TargetID":95613,"Directional":false}]},{"ID":365,"SourceStructureID":95626,"TargetStructureID":180,"Label":"95626-180 via Conventional from 95630 -> 95632","Type":"Conventional","Directional":false,"Links":[{"SourceID":95630,"TargetID":95632,"Directional":false}]},{"ID":366,"SourceStructureID":180,"TargetStructureID":95634,"Label":"180-95634 via Unknown from 132990 -> 132991","Type":"Unknown","Directional":false,"Links":[{"SourceID":132990,"TargetID":132991,"Directional":false}]},{"ID":367,"SourceStructureID":180,"TargetStructureID":95643,"Label":"180-95643 via Unknown from 95645 -> 95644","Type":"Unknown","Directional":false,"Links":[{"SourceID":95645,"TargetID":95644,"Directional":false}]},{"ID":368,"SourceStructureID":180,"TargetStructureID":95703,"Label":"180-95703 via Adherens from 95707 -> 95706","Type":"Adherens","Directional":false,"Links":[{"SourceID":95707,"TargetID":95706,"Directional":false}]},{"ID":369,"SourceStructureID":180,"TargetStructureID":95717,"Label":"180-95717 via Unknown from 132906 -> 132907","Type":"Unknown","Directional":false,"Links":[{"SourceID":132906,"TargetID":132907,"Directional":false}]},{"ID":370,"SourceStructureID":95723,"TargetStructureID":180,"Label":"95723-180 via Unknown from 95725 -> 95724","Type":"Unknown","Directional":false,"Links":[{"SourceID":95725,"TargetID":95724,"Directional":false}]},{"ID":371,"SourceStructureID":95751,"TargetStructureID":180,"Label":"95751-180 via Adherens from 132908 -> 132909","Type":"Adherens","Directional":false,"Links":[{"SourceID":132908,"TargetID":132909,"Directional":false}]},{"ID":372,"SourceStructureID":95804,"TargetStructureID":180,"Label":"95804-180 via Unknown from 95805 -> 95806","Type":"Unknown","Directional":false,"Links":[{"SourceID":95805,"TargetID":95806,"Directional":false}]},{"ID":373,"SourceStructureID":95807,"TargetStructureID":180,"Label":"95807-180 via Adherens from 132955 -> 132954","Type":"Adherens","Directional":false,"Links":[{"SourceID":132955,"TargetID":132954,"Directional":false}]},{"ID":374,"SourceStructureID":180,"TargetStructureID":95810,"Label":"180-95810 via Unknown from 133019 -> 133020","Type":"Unknown","Directional":false,"Links":[{"SourceID":133019,"TargetID":133020,"Directional":false}]},{"ID":375,"SourceStructureID":180,"TargetStructureID":95829,"Label":"180-95829 via Adherens from 132962 -> 132963","Type":"Adherens","Directional":false,"Links":[{"SourceID":132962,"TargetID":132963,"Directional":false}]},{"ID":376,"SourceStructureID":95840,"TargetStructureID":180,"Label":"95840-180 via Unknown from 132872 -> 132871","Type":"Unknown","Directional":false,"Links":[{"SourceID":132872,"TargetID":132871,"Directional":false}]},{"ID":377,"SourceStructureID":95863,"TargetStructureID":180,"Label":"95863-180 via Unknown from 95865 -> 95864","Type":"Unknown","Directional":false,"Links":[{"SourceID":95865,"TargetID":95864,"Directional":false}]},{"ID":378,"SourceStructureID":180,"TargetStructureID":95866,"Label":"180-95866 via Adherens from 133002 -> 133001, 133003 -> 133004","Type":"Adherens","Directional":false,"Links":[{"SourceID":133002,"TargetID":133001,"Directional":false},{"SourceID":133003,"TargetID":133004,"Directional":false}]},{"ID":379,"SourceStructureID":95883,"TargetStructureID":180,"Label":"95883-180 via Unknown from 95885 -> 95884","Type":"Unknown","Directional":false,"Links":[{"SourceID":95885,"TargetID":95884,"Directional":false}]},{"ID":380,"SourceStructureID":180,"TargetStructureID":95910,"Label":"180-95910 via Unknown from 95918 -> 95919","Type":"Unknown","Directional":false,"Links":[{"SourceID":95918,"TargetID":95919,"Directional":false}]},{"ID":381,"SourceStructureID":95911,"TargetStructureID":180,"Label":"95911-180 via Unknown from 95912 -> 90890","Type":"Unknown","Directional":false,"Links":[{"SourceID":95912,"TargetID":90890,"Directional":false}]},{"ID":382,"SourceStructureID":180,"TargetStructureID":95915,"Label":"180-95915 via Unknown from 114317 -> 114316","Type":"Unknown","Directional":false,"Links":[{"SourceID":114317,"TargetID":114316,"Directional":false}]},{"ID":383,"SourceStructureID":95917,"TargetStructureID":180,"Label":"95917-180 via Adherens from 132848 -> 90886","Type":"Adherens","Directional":false,"Links":[{"SourceID":132848,"TargetID":90886,"Directional":false}]},{"ID":384,"SourceStructureID":95951,"TargetStructureID":180,"Label":"95951-180 via Unknown from 95955 -> 95956","Type":"Unknown","Directional":false,"Links":[{"SourceID":95955,"TargetID":95956,"Directional":false}]},{"ID":385,"SourceStructureID":180,"TargetStructureID":95978,"Label":"180-95978 via Unknown from 133137 -> 133138","Type":"Unknown","Directional":false,"Links":[{"SourceID":133137,"TargetID":133138,"Directional":false}]},{"ID":386,"SourceStructureID":95986,"TargetStructureID":180,"Label":"95986-180 via Unknown from 95988 -> 95989","Type":"Unknown","Directional":false,"Links":[{"SourceID":95988,"TargetID":95989,"Directional":false}]},{"ID":387,"SourceStructureID":180,"TargetStructureID":95990,"Label":"180-95990 via Unknown from 95996 -> 95995","Type":"Unknown","Directional":false,"Links":[{"SourceID":95996,"TargetID":95995,"Directional":false}]},{"ID":388,"SourceStructureID":180,"TargetStructureID":95997,"Label":"180-95997 via Adherens from 96007 -> 96008, 116600 -> 116599","Type":"Adherens","Directional":false,"Links":[{"SourceID":96007,"TargetID":96008,"Directional":false},{"SourceID":116600,"TargetID":116599,"Directional":false}]},{"ID":389,"SourceStructureID":180,"TargetStructureID":96011,"Label":"180-96011 via Unknown from 96032 -> 96031","Type":"Unknown","Directional":false,"Links":[{"SourceID":96032,"TargetID":96031,"Directional":false}]},{"ID":390,"SourceStructureID":96023,"TargetStructureID":180,"Label":"96023-180 via Adherens from 96024 -> 96025","Type":"Adherens","Directional":false,"Links":[{"SourceID":96024,"TargetID":96025,"Directional":false}]},{"ID":391,"SourceStructureID":5278,"TargetStructureID":181,"Label":"5278-181 via Touch from 120264 -> 120265","Type":"Touch","Directional":false,"Links":[{"SourceID":120264,"TargetID":120265,"Directional":false}]},{"ID":392,"SourceStructureID":181,"TargetStructureID":92169,"Label":"181-92169 via Touch from 92172 -> 92171","Type":"Touch","Directional":false,"Links":[{"SourceID":92172,"TargetID":92171,"Directional":false}]},{"ID":393,"SourceStructureID":92175,"TargetStructureID":181,"Label":"92175-181 via Gap Junction from 92179 -> 92180","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92179,"TargetID":92180,"Directional":false}]},{"ID":394,"SourceStructureID":223,"TargetStructureID":284,"Label":"223-284 via Gap Junction from 17519 -> 17518, 17520 -> 14350, 17521 -> 17419, 131778 -> 131779","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17519,"TargetID":17518,"Directional":false},{"SourceID":17520,"TargetID":14350,"Directional":false},{"SourceID":17521,"TargetID":17419,"Directional":false},{"SourceID":131778,"TargetID":131779,"Directional":false}]},{"ID":395,"SourceStructureID":299,"TargetStructureID":223,"Label":"299-223 via Gap Junction from 47093 -> 17659","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47093,"TargetID":17659,"Directional":false}]},{"ID":396,"SourceStructureID":223,"TargetStructureID":307,"Label":"223-307 via Gap Junction from 96375 -> 96374","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96375,"TargetID":96374,"Directional":false}]},{"ID":397,"SourceStructureID":223,"TargetStructureID":309,"Label":"223-309 via Gap Junction from 122310 -> 122309","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122310,"TargetID":122309,"Directional":false}]},{"ID":398,"SourceStructureID":223,"TargetStructureID":321,"Label":"223-321 via Gap Junction from 115571 -> 115570","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115571,"TargetID":115570,"Directional":false}]},{"ID":399,"SourceStructureID":324,"TargetStructureID":223,"Label":"324-223 via Gap Junction from 94219 -> 94218, 96133 -> 96134, 96137 -> 96136","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94219,"TargetID":94218,"Directional":false},{"SourceID":96133,"TargetID":96134,"Directional":false},{"SourceID":96137,"TargetID":96136,"Directional":false}]},{"ID":400,"SourceStructureID":223,"TargetStructureID":410,"Label":"223-410 via Adherens from 17663 -> 17664","Type":"Adherens","Directional":false,"Links":[{"SourceID":17663,"TargetID":17664,"Directional":false}]},{"ID":401,"SourceStructureID":223,"TargetStructureID":410,"Label":"223-410 via Gap Junction from 14347 -> 14346, 17661 -> 17660, 17665 -> 9225, 18373 -> 17818, 18378 -> 18377, 18543 -> 18542","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14347,"TargetID":14346,"Directional":false},{"SourceID":17661,"TargetID":17660,"Directional":false},{"SourceID":17665,"TargetID":9225,"Directional":false},{"SourceID":18373,"TargetID":17818,"Directional":false},{"SourceID":18378,"TargetID":18377,"Directional":false},{"SourceID":18543,"TargetID":18542,"Directional":false}]},{"ID":402,"SourceStructureID":223,"TargetStructureID":2610,"Label":"223-2610 via Gap Junction from 17673 -> 17674","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17673,"TargetID":17674,"Directional":false}]},{"ID":403,"SourceStructureID":6153,"TargetStructureID":223,"Label":"6153-223 via Gap Junction from 17489 -> 17488, 17837 -> 16621, 29593 -> 29592, 29599 -> 29598","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17489,"TargetID":17488,"Directional":false},{"SourceID":17837,"TargetID":16621,"Directional":false},{"SourceID":29593,"TargetID":29592,"Directional":false},{"SourceID":29599,"TargetID":29598,"Directional":false}]},{"ID":404,"SourceStructureID":47195,"TargetStructureID":223,"Label":"47195-223 via Gap Junction from 47197 -> 47194, 47198 -> 58750","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47197,"TargetID":47194,"Directional":false},{"SourceID":47198,"TargetID":58750,"Directional":false}]},{"ID":405,"SourceStructureID":332,"TargetStructureID":268,"Label":"332-268 via Gap Junction from 94947 -> 43466","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94947,"TargetID":43466,"Directional":false}]},{"ID":406,"SourceStructureID":353,"TargetStructureID":268,"Label":"353-268 via Gap Junction from 122636 -> 122160","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122636,"TargetID":122160,"Directional":false}]},{"ID":407,"SourceStructureID":268,"TargetStructureID":7157,"Label":"268-7157 via Gap Junction from 122162 -> 122161","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122162,"TargetID":122161,"Directional":false}]},{"ID":408,"SourceStructureID":352,"TargetStructureID":273,"Label":"352-273 via Gap Junction from 94520 -> 94519","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94520,"TargetID":94519,"Directional":false}]},{"ID":409,"SourceStructureID":276,"TargetStructureID":284,"Label":"276-284 via Adherens from 29539 -> 29538","Type":"Adherens","Directional":false,"Links":[{"SourceID":29539,"TargetID":29538,"Directional":false}]},{"ID":410,"SourceStructureID":276,"TargetStructureID":284,"Label":"276-284 via Gap Junction from 29537 -> 29536, 122164 -> 122165, 122166 -> 29530","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29537,"TargetID":29536,"Directional":false},{"SourceID":122164,"TargetID":122165,"Directional":false},{"SourceID":122166,"TargetID":29530,"Directional":false}]},{"ID":411,"SourceStructureID":276,"TargetStructureID":332,"Label":"276-332 via Touch from 122170 -> 122169","Type":"Touch","Directional":false,"Links":[{"SourceID":122170,"TargetID":122169,"Directional":false}]},{"ID":412,"SourceStructureID":276,"TargetStructureID":6153,"Label":"276-6153 via Gap Junction from 122163 -> 29473","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122163,"TargetID":29473,"Directional":false}]},{"ID":413,"SourceStructureID":7157,"TargetStructureID":276,"Label":"7157-276 via Gap Junction from 31642 -> 31644, 31670 -> 31669","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":31642,"TargetID":31644,"Directional":false},{"SourceID":31670,"TargetID":31669,"Directional":false}]},{"ID":414,"SourceStructureID":277,"TargetStructureID":277,"Label":"277-277 via Gap Junction from 115500 -> 115499","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115500,"TargetID":115499,"Directional":false}]},{"ID":415,"SourceStructureID":277,"TargetStructureID":278,"Label":"277-278 via Adherens from 39019 -> 39018","Type":"Adherens","Directional":false,"Links":[{"SourceID":39019,"TargetID":39018,"Directional":false}]},{"ID":416,"SourceStructureID":327,"TargetStructureID":277,"Label":"327-277 via Adherens from 115507 -> 115506","Type":"Adherens","Directional":false,"Links":[{"SourceID":115507,"TargetID":115506,"Directional":false}]},{"ID":417,"SourceStructureID":277,"TargetStructureID":327,"Label":"277-327 via Gap Junction from 23396 -> 23397, 58591 -> 58590, 115502 -> 115501, 115518 -> 115517, 115541 -> 115539, 115551 -> 115546, 122135 -> 122133, 122136 -> 122137","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23396,"TargetID":23397,"Directional":false},{"SourceID":58591,"TargetID":58590,"Directional":false},{"SourceID":115502,"TargetID":115501,"Directional":false},{"SourceID":115518,"TargetID":115517,"Directional":false},{"SourceID":115541,"TargetID":115539,"Directional":false},{"SourceID":115551,"TargetID":115546,"Directional":false},{"SourceID":122135,"TargetID":122133,"Directional":false},{"SourceID":122136,"TargetID":122137,"Directional":false}]},{"ID":418,"SourceStructureID":327,"TargetStructureID":277,"Label":"327-277 via Unknown from 115498 -> 115497","Type":"Unknown","Directional":false,"Links":[{"SourceID":115498,"TargetID":115497,"Directional":false}]},{"ID":419,"SourceStructureID":277,"TargetStructureID":335,"Label":"277-335 via Gap Junction from 115492 -> 115491, 122132 -> 122131","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115492,"TargetID":115491,"Directional":false},{"SourceID":122132,"TargetID":122131,"Directional":false}]},{"ID":420,"SourceStructureID":277,"TargetStructureID":366,"Label":"277-366 via Gap Junction from 56520 -> 13609, 56521 -> 13609","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56520,"TargetID":13609,"Directional":false},{"SourceID":56521,"TargetID":13609,"Directional":false}]},{"ID":421,"SourceStructureID":431,"TargetStructureID":277,"Label":"431-277 via Gap Junction from 115544 -> 115543","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115544,"TargetID":115543,"Directional":false}]},{"ID":422,"SourceStructureID":7157,"TargetStructureID":277,"Label":"7157-277 via Gap Junction from 26194 -> 26032, 26248 -> 26247, 29972 -> 29971, 115490 -> 115489, 115545 -> 115542, 130658 -> 26067","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":26194,"TargetID":26032,"Directional":false},{"SourceID":26248,"TargetID":26247,"Directional":false},{"SourceID":29972,"TargetID":29971,"Directional":false},{"SourceID":115490,"TargetID":115489,"Directional":false},{"SourceID":115545,"TargetID":115542,"Directional":false},{"SourceID":130658,"TargetID":26067,"Directional":false}]},{"ID":423,"SourceStructureID":115504,"TargetStructureID":277,"Label":"115504-277 via Gap Junction from 115505 -> 115503","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115505,"TargetID":115503,"Directional":false}]},{"ID":424,"SourceStructureID":115519,"TargetStructureID":277,"Label":"115519-277 via Gap Junction from 115521 -> 115520","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115521,"TargetID":115520,"Directional":false}]},{"ID":425,"SourceStructureID":115525,"TargetStructureID":277,"Label":"115525-277 via Gap Junction from 115527 -> 115524","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115527,"TargetID":115524,"Directional":false}]},{"ID":426,"SourceStructureID":115529,"TargetStructureID":277,"Label":"115529-277 via Gap Junction from 115530 -> 115528","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115530,"TargetID":115528,"Directional":false}]},{"ID":427,"SourceStructureID":115537,"TargetStructureID":277,"Label":"115537-277 via Gap Junction from 115538 -> 115536","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115538,"TargetID":115536,"Directional":false}]},{"ID":428,"SourceStructureID":327,"TargetStructureID":278,"Label":"327-278 via Unknown from 122130 -> 122127","Type":"Unknown","Directional":false,"Links":[{"SourceID":122130,"TargetID":122127,"Directional":false}]},{"ID":429,"SourceStructureID":5439,"TargetStructureID":280,"Label":"5439-280 via Adherens from 85708 -> 85709","Type":"Adherens","Directional":false,"Links":[{"SourceID":85708,"TargetID":85709,"Directional":false}]},{"ID":430,"SourceStructureID":32566,"TargetStructureID":280,"Label":"32566-280 via Adherens from 64562 -> 64561, 64564 -> 64563, 64566 -> 64565","Type":"Adherens","Directional":false,"Links":[{"SourceID":64562,"TargetID":64561,"Directional":false},{"SourceID":64564,"TargetID":64563,"Directional":false},{"SourceID":64566,"TargetID":64565,"Directional":false}]},{"ID":431,"SourceStructureID":286,"TargetStructureID":284,"Label":"286-284 via Gap Junction from 29486 -> 29483, 58621 -> 58620, 95220 -> 26281, 95376 -> 95369, 95380 -> 95381","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29486,"TargetID":29483,"Directional":false},{"SourceID":58621,"TargetID":58620,"Directional":false},{"SourceID":95220,"TargetID":26281,"Directional":false},{"SourceID":95376,"TargetID":95369,"Directional":false},{"SourceID":95380,"TargetID":95381,"Directional":false}]},{"ID":432,"SourceStructureID":284,"TargetStructureID":309,"Label":"284-309 via Gap Junction from 17467 -> 13484","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17467,"TargetID":13484,"Directional":false}]},{"ID":433,"SourceStructureID":321,"TargetStructureID":284,"Label":"321-284 via Gap Junction from 23038 -> 17434, 55211 -> 29481, 115553 -> 115552, 115568 -> 115569, 115572 -> 17433, 122181 -> 122180, 122187 -> 122184, 122201 -> 122202, 122213 -> 17430, 122215 -> 122214","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23038,"TargetID":17434,"Directional":false},{"SourceID":55211,"TargetID":29481,"Directional":false},{"SourceID":115553,"TargetID":115552,"Directional":false},{"SourceID":115568,"TargetID":115569,"Directional":false},{"SourceID":115572,"TargetID":17433,"Directional":false},{"SourceID":122181,"TargetID":122180,"Directional":false},{"SourceID":122187,"TargetID":122184,"Directional":false},{"SourceID":122201,"TargetID":122202,"Directional":false},{"SourceID":122213,"TargetID":17430,"Directional":false},{"SourceID":122215,"TargetID":122214,"Directional":false}]},{"ID":434,"SourceStructureID":284,"TargetStructureID":324,"Label":"284-324 via Gap Junction from 29482 -> 93910","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29482,"TargetID":93910,"Directional":false}]},{"ID":435,"SourceStructureID":332,"TargetStructureID":284,"Label":"332-284 via Adherens from 29528 -> 29527","Type":"Adherens","Directional":false,"Links":[{"SourceID":29528,"TargetID":29527,"Directional":false}]},{"ID":436,"SourceStructureID":332,"TargetStructureID":284,"Label":"332-284 via Gap Junction from 29526 -> 29525, 95191 -> 95192","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29526,"TargetID":29525,"Directional":false},{"SourceID":95191,"TargetID":95192,"Directional":false}]},{"ID":437,"SourceStructureID":4835,"TargetStructureID":284,"Label":"4835-284 via Gap Junction from 29608 -> 29607","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29608,"TargetID":29607,"Directional":false}]},{"ID":438,"SourceStructureID":284,"TargetStructureID":6153,"Label":"284-6153 via Adherens from 29544 -> 29543","Type":"Adherens","Directional":false,"Links":[{"SourceID":29544,"TargetID":29543,"Directional":false}]},{"ID":439,"SourceStructureID":6153,"TargetStructureID":284,"Label":"6153-284 via Gap Junction from 17455 -> 17454, 17463 -> 17462, 17509 -> 14371, 17510 -> 14369, 29498 -> 29479, 29542 -> 29520","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17455,"TargetID":17454,"Directional":false},{"SourceID":17463,"TargetID":17462,"Directional":false},{"SourceID":17509,"TargetID":14371,"Directional":false},{"SourceID":17510,"TargetID":14369,"Directional":false},{"SourceID":29498,"TargetID":29479,"Directional":false},{"SourceID":29542,"TargetID":29520,"Directional":false}]},{"ID":440,"SourceStructureID":7157,"TargetStructureID":284,"Label":"7157-284 via Adherens from 26298 -> 26297, 26300 -> 26299","Type":"Adherens","Directional":false,"Links":[{"SourceID":26298,"TargetID":26297,"Directional":false},{"SourceID":26300,"TargetID":26299,"Directional":false}]},{"ID":441,"SourceStructureID":284,"TargetStructureID":7157,"Label":"284-7157 via Gap Junction from 29580 -> 26271, 29586 -> 29585, 29610 -> 29611, 131781 -> 131780","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29580,"TargetID":26271,"Directional":false},{"SourceID":29586,"TargetID":29585,"Directional":false},{"SourceID":29610,"TargetID":29611,"Directional":false},{"SourceID":131781,"TargetID":131780,"Directional":false}]},{"ID":442,"SourceStructureID":30102,"TargetStructureID":284,"Label":"30102-284 via Gap Junction from 30107 -> 30106","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30107,"TargetID":30106,"Directional":false}]},{"ID":443,"SourceStructureID":284,"TargetStructureID":71870,"Label":"284-71870 via Adherens from 71869 -> 71871","Type":"Adherens","Directional":false,"Links":[{"SourceID":71869,"TargetID":71871,"Directional":false}]},{"ID":444,"SourceStructureID":76127,"TargetStructureID":284,"Label":"76127-284 via Adherens from 76131 -> 76130","Type":"Adherens","Directional":false,"Links":[{"SourceID":76131,"TargetID":76130,"Directional":false}]},{"ID":445,"SourceStructureID":76127,"TargetStructureID":284,"Label":"76127-284 via Gap Junction from 76129 -> 76125","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":76129,"TargetID":76125,"Directional":false}]},{"ID":446,"SourceStructureID":286,"TargetStructureID":286,"Label":"286-286 via Gap Junction from 95347 -> 95348","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95347,"TargetID":95348,"Directional":false}]},{"ID":447,"SourceStructureID":327,"TargetStructureID":286,"Label":"327-286 via Unknown from 58607 -> 58606","Type":"Unknown","Directional":false,"Links":[{"SourceID":58607,"TargetID":58606,"Directional":false}]},{"ID":448,"SourceStructureID":286,"TargetStructureID":332,"Label":"286-332 via Gap Junction from 58600 -> 58602, 58619 -> 58618, 95286 -> 95287, 95291 -> 94916","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58600,"TargetID":58602,"Directional":false},{"SourceID":58619,"TargetID":58618,"Directional":false},{"SourceID":95286,"TargetID":95287,"Directional":false},{"SourceID":95291,"TargetID":94916,"Directional":false}]},{"ID":449,"SourceStructureID":286,"TargetStructureID":419,"Label":"286-419 via Adherens from 133490 -> 131776, 133494 -> 133493","Type":"Adherens","Directional":false,"Links":[{"SourceID":133490,"TargetID":131776,"Directional":false},{"SourceID":133494,"TargetID":133493,"Directional":false}]},{"ID":450,"SourceStructureID":419,"TargetStructureID":286,"Label":"419-286 via Gap Junction from 133491 -> 133492","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133491,"TargetID":133492,"Directional":false}]},{"ID":451,"SourceStructureID":483,"TargetStructureID":286,"Label":"483-286 via Gap Junction from 58615 -> 58608","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58615,"TargetID":58608,"Directional":false}]},{"ID":452,"SourceStructureID":5439,"TargetStructureID":286,"Label":"5439-286 via Adherens from 85712 -> 85714","Type":"Adherens","Directional":false,"Links":[{"SourceID":85712,"TargetID":85714,"Directional":false}]},{"ID":453,"SourceStructureID":6153,"TargetStructureID":286,"Label":"6153-286 via Gap Junction from 121621 -> 121620","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121621,"TargetID":121620,"Directional":false}]},{"ID":454,"SourceStructureID":95246,"TargetStructureID":286,"Label":"95246-286 via Unknown from 95247 -> 95245","Type":"Unknown","Directional":false,"Links":[{"SourceID":95247,"TargetID":95245,"Directional":false}]},{"ID":455,"SourceStructureID":95282,"TargetStructureID":286,"Label":"95282-286 via Unknown from 95285 -> 95281","Type":"Unknown","Directional":false,"Links":[{"SourceID":95285,"TargetID":95281,"Directional":false}]},{"ID":456,"SourceStructureID":286,"TargetStructureID":95304,"Label":"286-95304 via Unknown from 120358 -> 120357","Type":"Unknown","Directional":false,"Links":[{"SourceID":120358,"TargetID":120357,"Directional":false}]},{"ID":457,"SourceStructureID":95343,"TargetStructureID":286,"Label":"95343-286 via Unknown from 120364 -> 120363","Type":"Unknown","Directional":false,"Links":[{"SourceID":120364,"TargetID":120363,"Directional":false}]},{"ID":458,"SourceStructureID":294,"TargetStructureID":25440,"Label":"294-25440 via Touch from 25465 -> 25464","Type":"Touch","Directional":false,"Links":[{"SourceID":25465,"TargetID":25464,"Directional":false}]},{"ID":459,"SourceStructureID":298,"TargetStructureID":299,"Label":"298-299 via Gap Junction from 122733 -> 122734, 122739 -> 122738, 122776 -> 122775","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122733,"TargetID":122734,"Directional":false},{"SourceID":122739,"TargetID":122738,"Directional":false},{"SourceID":122776,"TargetID":122775,"Directional":false}]},{"ID":460,"SourceStructureID":298,"TargetStructureID":47095,"Label":"298-47095 via Gap Junction from 122759 -> 122758","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122759,"TargetID":122758,"Directional":false}]},{"ID":461,"SourceStructureID":304,"TargetStructureID":299,"Label":"304-299 via Gap Junction from 16572 -> 16576, 16574 -> 7224","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16572,"TargetID":16576,"Directional":false},{"SourceID":16574,"TargetID":7224,"Directional":false}]},{"ID":462,"SourceStructureID":299,"TargetStructureID":397,"Label":"299-397 via Gap Junction from 55353 -> 55352, 122704 -> 122703","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55353,"TargetID":55352,"Directional":false},{"SourceID":122704,"TargetID":122703,"Directional":false}]},{"ID":463,"SourceStructureID":299,"TargetStructureID":410,"Label":"299-410 via Gap Junction from 21402 -> 9285","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":21402,"TargetID":9285,"Directional":false}]},{"ID":464,"SourceStructureID":307,"TargetStructureID":304,"Label":"307-304 via Gap Junction from 16367 -> 16474, 16570 -> 16573","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16367,"TargetID":16474,"Directional":false},{"SourceID":16570,"TargetID":16573,"Directional":false}]},{"ID":465,"SourceStructureID":304,"TargetStructureID":397,"Label":"304-397 via Gap Junction from 46882 -> 46881, 46895 -> 17276, 71051 -> 71050, 122394 -> 122395, 122653 -> 122654, 122670 -> 122671, 122675 -> 122674, 122699 -> 122698, 122702 -> 122701","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46882,"TargetID":46881,"Directional":false},{"SourceID":46895,"TargetID":17276,"Directional":false},{"SourceID":71051,"TargetID":71050,"Directional":false},{"SourceID":122394,"TargetID":122395,"Directional":false},{"SourceID":122653,"TargetID":122654,"Directional":false},{"SourceID":122670,"TargetID":122671,"Directional":false},{"SourceID":122675,"TargetID":122674,"Directional":false},{"SourceID":122699,"TargetID":122698,"Directional":false},{"SourceID":122702,"TargetID":122701,"Directional":false}]},{"ID":466,"SourceStructureID":304,"TargetStructureID":400,"Label":"304-400 via Gap Junction from 17187 -> 18766, 17278 -> 17277, 130579 -> 130578, 130603 -> 130602, 132753 -> 132754","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17187,"TargetID":18766,"Directional":false},{"SourceID":17278,"TargetID":17277,"Directional":false},{"SourceID":130579,"TargetID":130578,"Directional":false},{"SourceID":130603,"TargetID":130602,"Directional":false},{"SourceID":132753,"TargetID":132754,"Directional":false}]},{"ID":467,"SourceStructureID":410,"TargetStructureID":304,"Label":"410-304 via Gap Junction from 17576 -> 17575, 17658 -> 17657, 17691 -> 17690, 17721 -> 17720, 17726 -> 17712, 17728 -> 17729, 17746 -> 17745, 18333 -> 18332, 18338 -> 18329, 18342 -> 18341, 18345 -> 18344, 18522 -> 18521, 19142 -> 19141, 22492 -> 22493, 22496 -> 22495, 22504 -> 22503","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17576,"TargetID":17575,"Directional":false},{"SourceID":17658,"TargetID":17657,"Directional":false},{"SourceID":17691,"TargetID":17690,"Directional":false},{"SourceID":17721,"TargetID":17720,"Directional":false},{"SourceID":17726,"TargetID":17712,"Directional":false},{"SourceID":17728,"TargetID":17729,"Directional":false},{"SourceID":17746,"TargetID":17745,"Directional":false},{"SourceID":18333,"TargetID":18332,"Directional":false},{"SourceID":18338,"TargetID":18329,"Directional":false},{"SourceID":18342,"TargetID":18341,"Directional":false},{"SourceID":18345,"TargetID":18344,"Directional":false},{"SourceID":18522,"TargetID":18521,"Directional":false},{"SourceID":19142,"TargetID":19141,"Directional":false},{"SourceID":22492,"TargetID":22493,"Directional":false},{"SourceID":22496,"TargetID":22495,"Directional":false},{"SourceID":22504,"TargetID":22503,"Directional":false}]},{"ID":468,"SourceStructureID":304,"TargetStructureID":419,"Label":"304-419 via Adherens from 133532 -> 132581","Type":"Adherens","Directional":false,"Links":[{"SourceID":133532,"TargetID":132581,"Directional":false}]},{"ID":469,"SourceStructureID":304,"TargetStructureID":419,"Label":"304-419 via Gap Junction from 131790 -> 131789, 133534 -> 133533","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131790,"TargetID":131789,"Directional":false},{"SourceID":133534,"TargetID":133533,"Directional":false}]},{"ID":470,"SourceStructureID":304,"TargetStructureID":573,"Label":"304-573 via Gap Junction from 18358 -> 18357, 20758 -> 18350, 135016 -> 135015","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":18358,"TargetID":18357,"Directional":false},{"SourceID":20758,"TargetID":18350,"Directional":false},{"SourceID":135016,"TargetID":135015,"Directional":false}]},{"ID":471,"SourceStructureID":2610,"TargetStructureID":304,"Label":"2610-304 via Gap Junction from 2992 -> 17913, 17200 -> 17199, 17208 -> 17209, 17211 -> 17210, 17646 -> 3008, 17957 -> 2949, 17961 -> 2958, 18220 -> 18219, 18234 -> 18233, 18879 -> 18878","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":2992,"TargetID":17913,"Directional":false},{"SourceID":17200,"TargetID":17199,"Directional":false},{"SourceID":17208,"TargetID":17209,"Directional":false},{"SourceID":17211,"TargetID":17210,"Directional":false},{"SourceID":17646,"TargetID":3008,"Directional":false},{"SourceID":17957,"TargetID":2949,"Directional":false},{"SourceID":17961,"TargetID":2958,"Directional":false},{"SourceID":18220,"TargetID":18219,"Directional":false},{"SourceID":18234,"TargetID":18233,"Directional":false},{"SourceID":18879,"TargetID":18878,"Directional":false}]},{"ID":472,"SourceStructureID":304,"TargetStructureID":6589,"Label":"304-6589 via Gap Junction from 123722 -> 123721, 130588 -> 130587, 130596 -> 130595, 132757 -> 132756, 132772 -> 132771","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123722,"TargetID":123721,"Directional":false},{"SourceID":130588,"TargetID":130587,"Directional":false},{"SourceID":130596,"TargetID":130595,"Directional":false},{"SourceID":132757,"TargetID":132756,"Directional":false},{"SourceID":132772,"TargetID":132771,"Directional":false}]},{"ID":473,"SourceStructureID":304,"TargetStructureID":9693,"Label":"304-9693 via Adherens from 135026 -> 135027","Type":"Adherens","Directional":false,"Links":[{"SourceID":135026,"TargetID":135027,"Directional":false}]},{"ID":474,"SourceStructureID":9693,"TargetStructureID":304,"Label":"9693-304 via Gap Junction from 39224 -> 39223, 59563 -> 59564, 134725 -> 119902","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39224,"TargetID":39223,"Directional":false},{"SourceID":59563,"TargetID":59564,"Directional":false},{"SourceID":134725,"TargetID":119902,"Directional":false}]},{"ID":475,"SourceStructureID":304,"TargetStructureID":15394,"Label":"304-15394 via Adherens from 135017 -> 135018","Type":"Adherens","Directional":false,"Links":[{"SourceID":135017,"TargetID":135018,"Directional":false}]},{"ID":476,"SourceStructureID":17527,"TargetStructureID":304,"Label":"17527-304 via Gap Junction from 17748 -> 17747","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17748,"TargetID":17747,"Directional":false}]},{"ID":477,"SourceStructureID":32654,"TargetStructureID":304,"Label":"32654-304 via Gap Junction from 32656 -> 32655, 116365 -> 16469","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32656,"TargetID":32655,"Directional":false},{"SourceID":116365,"TargetID":16469,"Directional":false}]},{"ID":478,"SourceStructureID":40919,"TargetStructureID":304,"Label":"40919-304 via Adherens from 60517 -> 60516","Type":"Adherens","Directional":false,"Links":[{"SourceID":60517,"TargetID":60516,"Directional":false}]},{"ID":479,"SourceStructureID":91176,"TargetStructureID":304,"Label":"91176-304 via Gap Junction from 91184 -> 91185","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91184,"TargetID":91185,"Directional":false}]},{"ID":480,"SourceStructureID":324,"TargetStructureID":307,"Label":"324-307 via Gap Junction from 32640 -> 32639, 83334 -> 83185","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32640,"TargetID":32639,"Directional":false},{"SourceID":83334,"TargetID":83185,"Directional":false}]},{"ID":481,"SourceStructureID":408,"TargetStructureID":307,"Label":"408-307 via Gap Junction from 35766 -> 35767","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35766,"TargetID":35767,"Directional":false}]},{"ID":482,"SourceStructureID":307,"TargetStructureID":410,"Label":"307-410 via Gap Junction from 17693 -> 17692","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17693,"TargetID":17692,"Directional":false}]},{"ID":483,"SourceStructureID":606,"TargetStructureID":307,"Label":"606-307 via Adherens from 45532 -> 45533","Type":"Adherens","Directional":false,"Links":[{"SourceID":45532,"TargetID":45533,"Directional":false}]},{"ID":484,"SourceStructureID":307,"TargetStructureID":5513,"Label":"307-5513 via Gap Junction from 16021 -> 12344, 16789 -> 60663","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16021,"TargetID":12344,"Directional":false},{"SourceID":16789,"TargetID":60663,"Directional":false}]},{"ID":485,"SourceStructureID":307,"TargetStructureID":9769,"Label":"307-9769 via Adherens from 15956 -> 15957","Type":"Adherens","Directional":false,"Links":[{"SourceID":15956,"TargetID":15957,"Directional":false}]},{"ID":486,"SourceStructureID":307,"TargetStructureID":24303,"Label":"307-24303 via Gap Junction from 121669 -> 121668, 122479 -> 122478, 122482 -> 122481","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121669,"TargetID":121668,"Directional":false},{"SourceID":122479,"TargetID":122478,"Directional":false},{"SourceID":122482,"TargetID":122481,"Directional":false}]},{"ID":487,"SourceStructureID":308,"TargetStructureID":308,"Label":"308-308 via Adherens from 42581 -> 42582","Type":"Adherens","Directional":false,"Links":[{"SourceID":42581,"TargetID":42582,"Directional":false}]},{"ID":488,"SourceStructureID":422,"TargetStructureID":308,"Label":"422-308 via Adherens from 43100 -> 43099, 64542 -> 64541","Type":"Adherens","Directional":false,"Links":[{"SourceID":43100,"TargetID":43099,"Directional":false},{"SourceID":64542,"TargetID":64541,"Directional":false}]},{"ID":489,"SourceStructureID":308,"TargetStructureID":514,"Label":"308-514 via Adherens from 42534 -> 13815, 43448 -> 43449, 43452 -> 43453, 43455 -> 43454, 43740 -> 43741, 86717 -> 42537","Type":"Adherens","Directional":false,"Links":[{"SourceID":42534,"TargetID":13815,"Directional":false},{"SourceID":43448,"TargetID":43449,"Directional":false},{"SourceID":43452,"TargetID":43453,"Directional":false},{"SourceID":43455,"TargetID":43454,"Directional":false},{"SourceID":43740,"TargetID":43741,"Directional":false},{"SourceID":86717,"TargetID":42537,"Directional":false}]},{"ID":490,"SourceStructureID":308,"TargetStructureID":573,"Label":"308-573 via Adherens from 43530 -> 43531, 43532 -> 43533, 43549 -> 43539","Type":"Adherens","Directional":false,"Links":[{"SourceID":43530,"TargetID":43531,"Directional":false},{"SourceID":43532,"TargetID":43533,"Directional":false},{"SourceID":43549,"TargetID":43539,"Directional":false}]},{"ID":491,"SourceStructureID":606,"TargetStructureID":308,"Label":"606-308 via Touch from 86694 -> 86695","Type":"Touch","Directional":false,"Links":[{"SourceID":86694,"TargetID":86695,"Directional":false}]},{"ID":492,"SourceStructureID":2610,"TargetStructureID":308,"Label":"2610-308 via Adherens from 43773 -> 43772, 43778 -> 43777","Type":"Adherens","Directional":false,"Links":[{"SourceID":43773,"TargetID":43772,"Directional":false},{"SourceID":43778,"TargetID":43777,"Directional":false}]},{"ID":493,"SourceStructureID":308,"TargetStructureID":3257,"Label":"308-3257 via Adherens from 107207 -> 107208, 107210 -> 107209","Type":"Adherens","Directional":false,"Links":[{"SourceID":107207,"TargetID":107208,"Directional":false},{"SourceID":107210,"TargetID":107209,"Directional":false}]},{"ID":494,"SourceStructureID":308,"TargetStructureID":5017,"Label":"308-5017 via Adherens from 42562 -> 42563","Type":"Adherens","Directional":false,"Links":[{"SourceID":42562,"TargetID":42563,"Directional":false}]},{"ID":495,"SourceStructureID":308,"TargetStructureID":6153,"Label":"308-6153 via Adherens from 43106 -> 43107, 43108 -> 43109","Type":"Adherens","Directional":false,"Links":[{"SourceID":43106,"TargetID":43107,"Directional":false},{"SourceID":43108,"TargetID":43109,"Directional":false}]},{"ID":496,"SourceStructureID":308,"TargetStructureID":8749,"Label":"308-8749 via Adherens from 42574 -> 42575, 42579 -> 42578, 43734 -> 43735","Type":"Adherens","Directional":false,"Links":[{"SourceID":42574,"TargetID":42575,"Directional":false},{"SourceID":42579,"TargetID":42578,"Directional":false},{"SourceID":43734,"TargetID":43735,"Directional":false}]},{"ID":497,"SourceStructureID":17228,"TargetStructureID":308,"Label":"17228-308 via Adherens from 43593 -> 43592, 43595 -> 43594","Type":"Adherens","Directional":false,"Links":[{"SourceID":43593,"TargetID":43592,"Directional":false},{"SourceID":43595,"TargetID":43594,"Directional":false}]},{"ID":498,"SourceStructureID":308,"TargetStructureID":18282,"Label":"308-18282 via Touch from 86643 -> 86642","Type":"Touch","Directional":false,"Links":[{"SourceID":86643,"TargetID":86642,"Directional":false}]},{"ID":499,"SourceStructureID":25688,"TargetStructureID":308,"Label":"25688-308 via Adherens from 42544 -> 42543","Type":"Adherens","Directional":false,"Links":[{"SourceID":42544,"TargetID":42543,"Directional":false}]},{"ID":500,"SourceStructureID":308,"TargetStructureID":90409,"Label":"308-90409 via Adherens from 107205 -> 107206","Type":"Adherens","Directional":false,"Links":[{"SourceID":107205,"TargetID":107206,"Directional":false}]},{"ID":501,"SourceStructureID":309,"TargetStructureID":309,"Label":"309-309 via Adherens from 122368 -> 122367","Type":"Adherens","Directional":false,"Links":[{"SourceID":122368,"TargetID":122367,"Directional":false}]},{"ID":502,"SourceStructureID":400,"TargetStructureID":309,"Label":"400-309 via Adherens from 122373 -> 13267","Type":"Adherens","Directional":false,"Links":[{"SourceID":122373,"TargetID":13267,"Directional":false}]},{"ID":503,"SourceStructureID":309,"TargetStructureID":410,"Label":"309-410 via Gap Junction from 121624 -> 121625, 122293 -> 122294","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121624,"TargetID":121625,"Directional":false},{"SourceID":122293,"TargetID":122294,"Directional":false}]},{"ID":504,"SourceStructureID":483,"TargetStructureID":309,"Label":"483-309 via Touch from 122372 -> 122371","Type":"Touch","Directional":false,"Links":[{"SourceID":122372,"TargetID":122371,"Directional":false}]},{"ID":505,"SourceStructureID":309,"TargetStructureID":485,"Label":"309-485 via Touch from 100045 -> 100044, 148007 -> 148006","Type":"Touch","Directional":false,"Links":[{"SourceID":100045,"TargetID":100044,"Directional":false},{"SourceID":148007,"TargetID":148006,"Directional":false}]},{"ID":506,"SourceStructureID":309,"TargetStructureID":6153,"Label":"309-6153 via Gap Junction from 13371 -> 14365, 121622 -> 13408","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":13371,"TargetID":14365,"Directional":false},{"SourceID":121622,"TargetID":13408,"Directional":false}]},{"ID":507,"SourceStructureID":122353,"TargetStructureID":309,"Label":"122353-309 via Gap Junction from 122354 -> 13388","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122354,"TargetID":13388,"Directional":false}]},{"ID":508,"SourceStructureID":318,"TargetStructureID":483,"Label":"318-483 via Unknown from 135080 -> 135079","Type":"Unknown","Directional":false,"Links":[{"SourceID":135080,"TargetID":135079,"Directional":false}]},{"ID":509,"SourceStructureID":321,"TargetStructureID":324,"Label":"321-324 via Gap Junction from 93940 -> 93941","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93940,"TargetID":93941,"Directional":false}]},{"ID":510,"SourceStructureID":324,"TargetStructureID":321,"Label":"324-321 via Unknown from 96340 -> 96338","Type":"Unknown","Directional":false,"Links":[{"SourceID":96340,"TargetID":96338,"Directional":false}]},{"ID":511,"SourceStructureID":321,"TargetStructureID":327,"Label":"321-327 via Adherens from 66264 -> 66263","Type":"Adherens","Directional":false,"Links":[{"SourceID":66264,"TargetID":66263,"Directional":false}]},{"ID":512,"SourceStructureID":327,"TargetStructureID":321,"Label":"327-321 via Gap Junction from 66262 -> 65955, 115555 -> 115554, 122189 -> 122188","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66262,"TargetID":65955,"Directional":false},{"SourceID":115555,"TargetID":115554,"Directional":false},{"SourceID":122189,"TargetID":122188,"Directional":false}]},{"ID":513,"SourceStructureID":327,"TargetStructureID":321,"Label":"327-321 via Unknown from 115562 -> 115561","Type":"Unknown","Directional":false,"Links":[{"SourceID":115562,"TargetID":115561,"Directional":false}]},{"ID":514,"SourceStructureID":321,"TargetStructureID":366,"Label":"321-366 via Gap Junction from 115564 -> 115563","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115564,"TargetID":115563,"Directional":false}]},{"ID":515,"SourceStructureID":479,"TargetStructureID":321,"Label":"479-321 via Gap Junction from 38512 -> 38511, 56547 -> 56546","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38512,"TargetID":38511,"Directional":false},{"SourceID":56547,"TargetID":56546,"Directional":false}]},{"ID":516,"SourceStructureID":321,"TargetStructureID":6153,"Label":"321-6153 via Gap Junction from 115565 -> 17441, 115567 -> 115566","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115565,"TargetID":17441,"Directional":false},{"SourceID":115567,"TargetID":115566,"Directional":false}]},{"ID":517,"SourceStructureID":32566,"TargetStructureID":321,"Label":"32566-321 via Gap Junction from 122200 -> 122199","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122200,"TargetID":122199,"Directional":false}]},{"ID":518,"SourceStructureID":115557,"TargetStructureID":321,"Label":"115557-321 via Gap Junction from 115558 -> 115556","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115558,"TargetID":115556,"Directional":false}]},{"ID":519,"SourceStructureID":115574,"TargetStructureID":321,"Label":"115574-321 via Gap Junction from 115575 -> 115573","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115575,"TargetID":115573,"Directional":false}]},{"ID":520,"SourceStructureID":115577,"TargetStructureID":321,"Label":"115577-321 via Unknown from 115578 -> 115576","Type":"Unknown","Directional":false,"Links":[{"SourceID":115578,"TargetID":115576,"Directional":false}]},{"ID":521,"SourceStructureID":324,"TargetStructureID":324,"Label":"324-324 via Gap Junction from 12382 -> 93943, 55179 -> 53295, 93925 -> 93926, 96364 -> 96363","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12382,"TargetID":93943,"Directional":false},{"SourceID":55179,"TargetID":53295,"Directional":false},{"SourceID":93925,"TargetID":93926,"Directional":false},{"SourceID":96364,"TargetID":96363,"Directional":false}]},{"ID":522,"SourceStructureID":330,"TargetStructureID":324,"Label":"330-324 via Gap Junction from 93778 -> 93777, 94056 -> 94055, 100805 -> 100804","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93778,"TargetID":93777,"Directional":false},{"SourceID":94056,"TargetID":94055,"Directional":false},{"SourceID":100805,"TargetID":100804,"Directional":false}]},{"ID":523,"SourceStructureID":330,"TargetStructureID":324,"Label":"330-324 via Unknown from 94058 -> 94057","Type":"Unknown","Directional":false,"Links":[{"SourceID":94058,"TargetID":94057,"Directional":false}]},{"ID":524,"SourceStructureID":324,"TargetStructureID":364,"Label":"324-364 via Adherens from 90351 -> 12817","Type":"Adherens","Directional":false,"Links":[{"SourceID":90351,"TargetID":12817,"Directional":false}]},{"ID":525,"SourceStructureID":364,"TargetStructureID":324,"Label":"364-324 via Gap Junction from 90353 -> 90352, 93551 -> 93552","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90353,"TargetID":90352,"Directional":false},{"SourceID":93551,"TargetID":93552,"Directional":false}]},{"ID":526,"SourceStructureID":324,"TargetStructureID":364,"Label":"324-364 via Unknown from 94247 -> 94246","Type":"Unknown","Directional":false,"Links":[{"SourceID":94247,"TargetID":94246,"Directional":false}]},{"ID":527,"SourceStructureID":366,"TargetStructureID":324,"Label":"366-324 via Gap Junction from 94078 -> 94079, 122251 -> 122252","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94078,"TargetID":94079,"Directional":false},{"SourceID":122251,"TargetID":122252,"Directional":false}]},{"ID":528,"SourceStructureID":366,"TargetStructureID":324,"Label":"366-324 via Touch from 135524 -> 135523","Type":"Touch","Directional":false,"Links":[{"SourceID":135524,"TargetID":135523,"Directional":false}]},{"ID":529,"SourceStructureID":372,"TargetStructureID":324,"Label":"372-324 via Adherens from 94544 -> 94543","Type":"Adherens","Directional":false,"Links":[{"SourceID":94544,"TargetID":94543,"Directional":false}]},{"ID":530,"SourceStructureID":372,"TargetStructureID":324,"Label":"372-324 via Unknown from 93541 -> 93540, 94103 -> 94102, 94455 -> 122343, 96381 -> 96380, 96391 -> 96392","Type":"Unknown","Directional":false,"Links":[{"SourceID":93541,"TargetID":93540,"Directional":false},{"SourceID":94103,"TargetID":94102,"Directional":false},{"SourceID":94455,"TargetID":122343,"Directional":false},{"SourceID":96381,"TargetID":96380,"Directional":false},{"SourceID":96391,"TargetID":96392,"Directional":false}]},{"ID":531,"SourceStructureID":324,"TargetStructureID":428,"Label":"324-428 via Unknown from 94071 -> 94070","Type":"Unknown","Directional":false,"Links":[{"SourceID":94071,"TargetID":94070,"Directional":false}]},{"ID":532,"SourceStructureID":324,"TargetStructureID":476,"Label":"324-476 via Gap Junction from 43559 -> 43560","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43559,"TargetID":43560,"Directional":false}]},{"ID":533,"SourceStructureID":324,"TargetStructureID":476,"Label":"324-476 via Unknown from 96947 -> 96948","Type":"Unknown","Directional":false,"Links":[{"SourceID":96947,"TargetID":96948,"Directional":false}]},{"ID":534,"SourceStructureID":324,"TargetStructureID":606,"Label":"324-606 via Adherens from 53310 -> 53309, 53311 -> 53304","Type":"Adherens","Directional":false,"Links":[{"SourceID":53310,"TargetID":53309,"Directional":false},{"SourceID":53311,"TargetID":53304,"Directional":false}]},{"ID":535,"SourceStructureID":3116,"TargetStructureID":324,"Label":"3116-324 via Gap Junction from 93704 -> 93703, 94450 -> 94451, 122347 -> 122348, 122349 -> 122350, 122352 -> 122351","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93704,"TargetID":93703,"Directional":false},{"SourceID":94450,"TargetID":94451,"Directional":false},{"SourceID":122347,"TargetID":122348,"Directional":false},{"SourceID":122349,"TargetID":122350,"Directional":false},{"SourceID":122352,"TargetID":122351,"Directional":false}]},{"ID":536,"SourceStructureID":4569,"TargetStructureID":324,"Label":"4569-324 via Unknown from 94504 -> 94503","Type":"Unknown","Directional":false,"Links":[{"SourceID":94504,"TargetID":94503,"Directional":false}]},{"ID":537,"SourceStructureID":324,"TargetStructureID":4835,"Label":"324-4835 via Gap Junction from 93554 -> 93553","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93554,"TargetID":93553,"Directional":false}]},{"ID":538,"SourceStructureID":324,"TargetStructureID":4835,"Label":"324-4835 via Unknown from 94257 -> 94256","Type":"Unknown","Directional":false,"Links":[{"SourceID":94257,"TargetID":94256,"Directional":false}]},{"ID":539,"SourceStructureID":324,"TargetStructureID":6153,"Label":"324-6153 via Gap Junction from 94096 -> 94095, 120592 -> 120591, 122331 -> 122330","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94096,"TargetID":94095,"Directional":false},{"SourceID":120592,"TargetID":120591,"Directional":false},{"SourceID":122331,"TargetID":122330,"Directional":false}]},{"ID":540,"SourceStructureID":324,"TargetStructureID":6153,"Label":"324-6153 via Unknown from 93543 -> 93542","Type":"Unknown","Directional":false,"Links":[{"SourceID":93543,"TargetID":93542,"Directional":false}]},{"ID":541,"SourceStructureID":324,"TargetStructureID":9769,"Label":"324-9769 via Adherens from 120596 -> 120597","Type":"Adherens","Directional":false,"Links":[{"SourceID":120596,"TargetID":120597,"Directional":false}]},{"ID":542,"SourceStructureID":9769,"TargetStructureID":324,"Label":"9769-324 via Unknown from 94113 -> 94112","Type":"Unknown","Directional":false,"Links":[{"SourceID":94113,"TargetID":94112,"Directional":false}]},{"ID":543,"SourceStructureID":30102,"TargetStructureID":324,"Label":"30102-324 via Gap Junction from 30756 -> 30755","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30756,"TargetID":30755,"Directional":false}]},{"ID":544,"SourceStructureID":32566,"TargetStructureID":324,"Label":"32566-324 via Unknown from 93913 -> 93912","Type":"Unknown","Directional":false,"Links":[{"SourceID":93913,"TargetID":93912,"Directional":false}]},{"ID":545,"SourceStructureID":32608,"TargetStructureID":324,"Label":"32608-324 via Unknown from 94067 -> 94066","Type":"Unknown","Directional":false,"Links":[{"SourceID":94067,"TargetID":94066,"Directional":false}]},{"ID":546,"SourceStructureID":324,"TargetStructureID":34263,"Label":"324-34263 via Adherens from 94087 -> 94088","Type":"Adherens","Directional":false,"Links":[{"SourceID":94087,"TargetID":94088,"Directional":false}]},{"ID":547,"SourceStructureID":324,"TargetStructureID":34263,"Label":"324-34263 via Unknown from 94086 -> 94085","Type":"Unknown","Directional":false,"Links":[{"SourceID":94086,"TargetID":94085,"Directional":false}]},{"ID":548,"SourceStructureID":324,"TargetStructureID":38632,"Label":"324-38632 via Unknown from 93620 -> 93619, 94230 -> 94229","Type":"Unknown","Directional":false,"Links":[{"SourceID":93620,"TargetID":93619,"Directional":false},{"SourceID":94230,"TargetID":94229,"Directional":false}]},{"ID":549,"SourceStructureID":324,"TargetStructureID":55517,"Label":"324-55517 via Unknown from 122115 -> 122114","Type":"Unknown","Directional":false,"Links":[{"SourceID":122115,"TargetID":122114,"Directional":false}]},{"ID":550,"SourceStructureID":66193,"TargetStructureID":324,"Label":"66193-324 via Adherens from 94075 -> 94074","Type":"Adherens","Directional":false,"Links":[{"SourceID":94075,"TargetID":94074,"Directional":false}]},{"ID":551,"SourceStructureID":66193,"TargetStructureID":324,"Label":"66193-324 via Unknown from 94077 -> 94076, 122117 -> 122116","Type":"Unknown","Directional":false,"Links":[{"SourceID":94077,"TargetID":94076,"Directional":false},{"SourceID":122117,"TargetID":122116,"Directional":false}]},{"ID":552,"SourceStructureID":83375,"TargetStructureID":324,"Label":"83375-324 via Unknown from 83377 -> 83376","Type":"Unknown","Directional":false,"Links":[{"SourceID":83377,"TargetID":83376,"Directional":false}]},{"ID":553,"SourceStructureID":324,"TargetStructureID":83382,"Label":"324-83382 via Unknown from 96936 -> 96937","Type":"Unknown","Directional":false,"Links":[{"SourceID":96936,"TargetID":96937,"Directional":false}]},{"ID":554,"SourceStructureID":324,"TargetStructureID":83385,"Label":"324-83385 via Adherens from 83403 -> 83404, 83436 -> 83437","Type":"Adherens","Directional":false,"Links":[{"SourceID":83403,"TargetID":83404,"Directional":false},{"SourceID":83436,"TargetID":83437,"Directional":false}]},{"ID":555,"SourceStructureID":324,"TargetStructureID":83399,"Label":"324-83399 via Adherens from 83400 -> 83401","Type":"Adherens","Directional":false,"Links":[{"SourceID":83400,"TargetID":83401,"Directional":false}]},{"ID":556,"SourceStructureID":83487,"TargetStructureID":324,"Label":"83487-324 via Unknown from 83488 -> 83486","Type":"Unknown","Directional":false,"Links":[{"SourceID":83488,"TargetID":83486,"Directional":false}]},{"ID":557,"SourceStructureID":324,"TargetStructureID":83489,"Label":"324-83489 via Unknown from 96969 -> 96970","Type":"Unknown","Directional":false,"Links":[{"SourceID":96969,"TargetID":96970,"Directional":false}]},{"ID":558,"SourceStructureID":324,"TargetStructureID":83541,"Label":"324-83541 via Unknown from 83588 -> 83589, 96544 -> 96542","Type":"Unknown","Directional":false,"Links":[{"SourceID":83588,"TargetID":83589,"Directional":false},{"SourceID":96544,"TargetID":96542,"Directional":false}]},{"ID":559,"SourceStructureID":83554,"TargetStructureID":324,"Label":"83554-324 via Unknown from 83557 -> 83556","Type":"Unknown","Directional":false,"Links":[{"SourceID":83557,"TargetID":83556,"Directional":false}]},{"ID":560,"SourceStructureID":324,"TargetStructureID":83569,"Label":"324-83569 via Adherens from 83570 -> 83571","Type":"Adherens","Directional":false,"Links":[{"SourceID":83570,"TargetID":83571,"Directional":false}]},{"ID":561,"SourceStructureID":324,"TargetStructureID":83572,"Label":"324-83572 via Adherens from 83573 -> 83574","Type":"Adherens","Directional":false,"Links":[{"SourceID":83573,"TargetID":83574,"Directional":false}]},{"ID":562,"SourceStructureID":324,"TargetStructureID":90463,"Label":"324-90463 via Unknown from 94486 -> 94487","Type":"Unknown","Directional":false,"Links":[{"SourceID":94486,"TargetID":94487,"Directional":false}]},{"ID":563,"SourceStructureID":93544,"TargetStructureID":324,"Label":"93544-324 via Unknown from 93546 -> 93545","Type":"Unknown","Directional":false,"Links":[{"SourceID":93546,"TargetID":93545,"Directional":false}]},{"ID":564,"SourceStructureID":93621,"TargetStructureID":324,"Label":"93621-324 via Unknown from 93622 -> 93623","Type":"Unknown","Directional":false,"Links":[{"SourceID":93622,"TargetID":93623,"Directional":false}]},{"ID":565,"SourceStructureID":324,"TargetStructureID":93915,"Label":"324-93915 via Unknown from 93917 -> 93916","Type":"Unknown","Directional":false,"Links":[{"SourceID":93917,"TargetID":93916,"Directional":false}]},{"ID":566,"SourceStructureID":324,"TargetStructureID":93927,"Label":"324-93927 via Unknown from 93933 -> 93932","Type":"Unknown","Directional":false,"Links":[{"SourceID":93933,"TargetID":93932,"Directional":false}]},{"ID":567,"SourceStructureID":93957,"TargetStructureID":324,"Label":"93957-324 via Unknown from 93959 -> 93958","Type":"Unknown","Directional":false,"Links":[{"SourceID":93959,"TargetID":93958,"Directional":false}]},{"ID":568,"SourceStructureID":324,"TargetStructureID":94059,"Label":"324-94059 via Unknown from 94062 -> 94061","Type":"Unknown","Directional":false,"Links":[{"SourceID":94062,"TargetID":94061,"Directional":false}]},{"ID":569,"SourceStructureID":94063,"TargetStructureID":324,"Label":"94063-324 via Adherens from 94069 -> 94068","Type":"Adherens","Directional":false,"Links":[{"SourceID":94069,"TargetID":94068,"Directional":false}]},{"ID":570,"SourceStructureID":324,"TargetStructureID":94063,"Label":"324-94063 via Unknown from 94064 -> 94065","Type":"Unknown","Directional":false,"Links":[{"SourceID":94064,"TargetID":94065,"Directional":false}]},{"ID":571,"SourceStructureID":94082,"TargetStructureID":324,"Label":"94082-324 via Adherens from 94083 -> 94080","Type":"Adherens","Directional":false,"Links":[{"SourceID":94083,"TargetID":94080,"Directional":false}]},{"ID":572,"SourceStructureID":94090,"TargetStructureID":324,"Label":"94090-324 via Unknown from 94091 -> 94089","Type":"Unknown","Directional":false,"Links":[{"SourceID":94091,"TargetID":94089,"Directional":false}]},{"ID":573,"SourceStructureID":324,"TargetStructureID":94097,"Label":"324-94097 via Unknown from 94098 -> 94099","Type":"Unknown","Directional":false,"Links":[{"SourceID":94098,"TargetID":94099,"Directional":false}]},{"ID":574,"SourceStructureID":324,"TargetStructureID":94105,"Label":"324-94105 via Unknown from 94107 -> 94106","Type":"Unknown","Directional":false,"Links":[{"SourceID":94107,"TargetID":94106,"Directional":false}]},{"ID":575,"SourceStructureID":324,"TargetStructureID":94220,"Label":"324-94220 via Unknown from 94225 -> 94224","Type":"Unknown","Directional":false,"Links":[{"SourceID":94225,"TargetID":94224,"Directional":false}]},{"ID":576,"SourceStructureID":324,"TargetStructureID":94221,"Label":"324-94221 via Unknown from 94222 -> 94223","Type":"Unknown","Directional":false,"Links":[{"SourceID":94222,"TargetID":94223,"Directional":false}]},{"ID":577,"SourceStructureID":94231,"TargetStructureID":324,"Label":"94231-324 via Unknown from 94233 -> 94232, 94240 -> 94239","Type":"Unknown","Directional":false,"Links":[{"SourceID":94233,"TargetID":94232,"Directional":false},{"SourceID":94240,"TargetID":94239,"Directional":false}]},{"ID":578,"SourceStructureID":94234,"TargetStructureID":324,"Label":"94234-324 via Adherens from 94236 -> 94235","Type":"Adherens","Directional":false,"Links":[{"SourceID":94236,"TargetID":94235,"Directional":false}]},{"ID":579,"SourceStructureID":94234,"TargetStructureID":324,"Label":"94234-324 via Unknown from 94238 -> 94237","Type":"Unknown","Directional":false,"Links":[{"SourceID":94238,"TargetID":94237,"Directional":false}]},{"ID":580,"SourceStructureID":94248,"TargetStructureID":324,"Label":"94248-324 via Unknown from 94250 -> 94249","Type":"Unknown","Directional":false,"Links":[{"SourceID":94250,"TargetID":94249,"Directional":false}]},{"ID":581,"SourceStructureID":94279,"TargetStructureID":324,"Label":"94279-324 via Unknown from 94287 -> 94286","Type":"Unknown","Directional":false,"Links":[{"SourceID":94287,"TargetID":94286,"Directional":false}]},{"ID":582,"SourceStructureID":94296,"TargetStructureID":324,"Label":"94296-324 via Unknown from 94298 -> 94299","Type":"Unknown","Directional":false,"Links":[{"SourceID":94298,"TargetID":94299,"Directional":false}]},{"ID":583,"SourceStructureID":94453,"TargetStructureID":324,"Label":"94453-324 via Unknown from 94454 -> 94452","Type":"Unknown","Directional":false,"Links":[{"SourceID":94454,"TargetID":94452,"Directional":false}]},{"ID":584,"SourceStructureID":324,"TargetStructureID":94462,"Label":"324-94462 via Unknown from 94464 -> 94463","Type":"Unknown","Directional":false,"Links":[{"SourceID":94464,"TargetID":94463,"Directional":false}]},{"ID":585,"SourceStructureID":324,"TargetStructureID":94465,"Label":"324-94465 via Unknown from 94467 -> 94466","Type":"Unknown","Directional":false,"Links":[{"SourceID":94467,"TargetID":94466,"Directional":false}]},{"ID":586,"SourceStructureID":327,"TargetStructureID":330,"Label":"327-330 via Adherens from 25969 -> 25968","Type":"Adherens","Directional":false,"Links":[{"SourceID":25969,"TargetID":25968,"Directional":false}]},{"ID":587,"SourceStructureID":327,"TargetStructureID":335,"Label":"327-335 via Gap Junction from 122151 -> 122152","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122151,"TargetID":122152,"Directional":false}]},{"ID":588,"SourceStructureID":327,"TargetStructureID":335,"Label":"327-335 via Unknown from 115618 -> 115619","Type":"Unknown","Directional":false,"Links":[{"SourceID":115618,"TargetID":115619,"Directional":false}]},{"ID":589,"SourceStructureID":327,"TargetStructureID":366,"Label":"327-366 via Adherens from 115624 -> 115623","Type":"Adherens","Directional":false,"Links":[{"SourceID":115624,"TargetID":115623,"Directional":false}]},{"ID":590,"SourceStructureID":327,"TargetStructureID":366,"Label":"327-366 via Gap Junction from 115622 -> 115616","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115622,"TargetID":115616,"Directional":false}]},{"ID":591,"SourceStructureID":431,"TargetStructureID":327,"Label":"431-327 via Gap Junction from 14185 -> 14184, 115549 -> 115548","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14185,"TargetID":14184,"Directional":false},{"SourceID":115549,"TargetID":115548,"Directional":false}]},{"ID":592,"SourceStructureID":327,"TargetStructureID":90007,"Label":"327-90007 via Adherens from 122150 -> 90008","Type":"Adherens","Directional":false,"Links":[{"SourceID":122150,"TargetID":90008,"Directional":false}]},{"ID":593,"SourceStructureID":327,"TargetStructureID":90007,"Label":"327-90007 via Gap Junction from 122149 -> 90009","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122149,"TargetID":90009,"Directional":false}]},{"ID":594,"SourceStructureID":330,"TargetStructureID":330,"Label":"330-330 via Gap Junction from 25910 -> 25909, 117832 -> 117831, 122140 -> 12353","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":25910,"TargetID":25909,"Directional":false},{"SourceID":117832,"TargetID":117831,"Directional":false},{"SourceID":122140,"TargetID":12353,"Directional":false}]},{"ID":595,"SourceStructureID":335,"TargetStructureID":330,"Label":"335-330 via Adherens from 26138 -> 26137","Type":"Adherens","Directional":false,"Links":[{"SourceID":26138,"TargetID":26137,"Directional":false}]},{"ID":596,"SourceStructureID":335,"TargetStructureID":330,"Label":"335-330 via Gap Junction from 14170 -> 14171, 26136 -> 1042, 30088 -> 30087, 38710 -> 38709, 60054 -> 60055, 117815 -> 117816, 122118 -> 122119, 122121 -> 122120","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14170,"TargetID":14171,"Directional":false},{"SourceID":26136,"TargetID":1042,"Directional":false},{"SourceID":30088,"TargetID":30087,"Directional":false},{"SourceID":38710,"TargetID":38709,"Directional":false},{"SourceID":60054,"TargetID":60055,"Directional":false},{"SourceID":117815,"TargetID":117816,"Directional":false},{"SourceID":122118,"TargetID":122119,"Directional":false},{"SourceID":122121,"TargetID":122120,"Directional":false}]},{"ID":597,"SourceStructureID":364,"TargetStructureID":330,"Label":"364-330 via Adherens from 12868 -> 12869","Type":"Adherens","Directional":false,"Links":[{"SourceID":12868,"TargetID":12869,"Directional":false}]},{"ID":598,"SourceStructureID":364,"TargetStructureID":330,"Label":"364-330 via Gap Junction from 38681 -> 26199, 122825 -> 122826, 122827 -> 122828, 122843 -> 26182","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38681,"TargetID":26199,"Directional":false},{"SourceID":122825,"TargetID":122826,"Directional":false},{"SourceID":122827,"TargetID":122828,"Directional":false},{"SourceID":122843,"TargetID":26182,"Directional":false}]},{"ID":599,"SourceStructureID":606,"TargetStructureID":330,"Label":"606-330 via Adherens from 52981 -> 52982","Type":"Adherens","Directional":false,"Links":[{"SourceID":52981,"TargetID":52982,"Directional":false}]},{"ID":600,"SourceStructureID":330,"TargetStructureID":6165,"Label":"330-6165 via Gap Junction from 118055 -> 118054","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118055,"TargetID":118054,"Directional":false}]},{"ID":601,"SourceStructureID":330,"TargetStructureID":7157,"Label":"330-7157 via Gap Junction from 25967 -> 21440, 26195 -> 26116, 122142 -> 122141","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":25967,"TargetID":21440,"Directional":false},{"SourceID":26195,"TargetID":26116,"Directional":false},{"SourceID":122142,"TargetID":122141,"Directional":false}]},{"ID":602,"SourceStructureID":38632,"TargetStructureID":330,"Label":"38632-330 via Adherens from 38668 -> 26160, 38669 -> 26159","Type":"Adherens","Directional":false,"Links":[{"SourceID":38668,"TargetID":26160,"Directional":false},{"SourceID":38669,"TargetID":26159,"Directional":false}]},{"ID":603,"SourceStructureID":330,"TargetStructureID":118058,"Label":"330-118058 via Gap Junction from 38692 -> 118059, 118063 -> 118061","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38692,"TargetID":118059,"Directional":false},{"SourceID":118063,"TargetID":118061,"Directional":false}]},{"ID":604,"SourceStructureID":332,"TargetStructureID":461,"Label":"332-461 via Adherens from 94872 -> 14884","Type":"Adherens","Directional":false,"Links":[{"SourceID":94872,"TargetID":14884,"Directional":false}]},{"ID":605,"SourceStructureID":461,"TargetStructureID":332,"Label":"461-332 via Gap Junction from 60147 -> 60146","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60147,"TargetID":60146,"Directional":false}]},{"ID":606,"SourceStructureID":461,"TargetStructureID":332,"Label":"461-332 via Unknown from 94875 -> 94874","Type":"Unknown","Directional":false,"Links":[{"SourceID":94875,"TargetID":94874,"Directional":false}]},{"ID":607,"SourceStructureID":332,"TargetStructureID":483,"Label":"332-483 via Gap Junction from 60149 -> 60150","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60149,"TargetID":60150,"Directional":false}]},{"ID":608,"SourceStructureID":4835,"TargetStructureID":332,"Label":"4835-332 via Gap Junction from 35170 -> 35169","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35170,"TargetID":35169,"Directional":false}]},{"ID":609,"SourceStructureID":6153,"TargetStructureID":332,"Label":"6153-332 via Gap Junction from 95005 -> 25138","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95005,"TargetID":25138,"Directional":false}]},{"ID":610,"SourceStructureID":332,"TargetStructureID":7157,"Label":"332-7157 via Gap Junction from 24535 -> 24534, 26257 -> 26256, 33183 -> 33182, 94893 -> 94892, 94928 -> 94927, 95031 -> 95032, 95202 -> 95201","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24535,"TargetID":24534,"Directional":false},{"SourceID":26257,"TargetID":26256,"Directional":false},{"SourceID":33183,"TargetID":33182,"Directional":false},{"SourceID":94893,"TargetID":94892,"Directional":false},{"SourceID":94928,"TargetID":94927,"Directional":false},{"SourceID":95031,"TargetID":95032,"Directional":false},{"SourceID":95202,"TargetID":95201,"Directional":false}]},{"ID":611,"SourceStructureID":332,"TargetStructureID":7468,"Label":"332-7468 via Gap Junction from 95111 -> 31744","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95111,"TargetID":31744,"Directional":false}]},{"ID":612,"SourceStructureID":48416,"TargetStructureID":332,"Label":"48416-332 via Gap Junction from 48417 -> 48415","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48417,"TargetID":48415,"Directional":false}]},{"ID":613,"SourceStructureID":332,"TargetStructureID":95019,"Label":"332-95019 via Unknown from 95018 -> 95026","Type":"Unknown","Directional":false,"Links":[{"SourceID":95018,"TargetID":95026,"Directional":false}]},{"ID":614,"SourceStructureID":95205,"TargetStructureID":332,"Label":"95205-332 via Gap Junction from 95206 -> 95204","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95206,"TargetID":95204,"Directional":false}]},{"ID":615,"SourceStructureID":332,"TargetStructureID":95207,"Label":"332-95207 via Unknown from 95209 -> 95208","Type":"Unknown","Directional":false,"Links":[{"SourceID":95209,"TargetID":95208,"Directional":false}]},{"ID":616,"SourceStructureID":96487,"TargetStructureID":332,"Label":"96487-332 via Adherens from 96490 -> 94877","Type":"Adherens","Directional":false,"Links":[{"SourceID":96490,"TargetID":94877,"Directional":false}]},{"ID":617,"SourceStructureID":332,"TargetStructureID":96487,"Label":"332-96487 via Gap Junction from 96496 -> 96495","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96496,"TargetID":96495,"Directional":false}]},{"ID":618,"SourceStructureID":96506,"TargetStructureID":332,"Label":"96506-332 via Unknown from 96510 -> 96511","Type":"Unknown","Directional":false,"Links":[{"SourceID":96510,"TargetID":96511,"Directional":false}]},{"ID":619,"SourceStructureID":96528,"TargetStructureID":332,"Label":"96528-332 via Unknown from 96529 -> 96527","Type":"Unknown","Directional":false,"Links":[{"SourceID":96529,"TargetID":96527,"Directional":false}]},{"ID":620,"SourceStructureID":96565,"TargetStructureID":332,"Label":"96565-332 via Adherens from 96566 -> 96564","Type":"Adherens","Directional":false,"Links":[{"SourceID":96566,"TargetID":96564,"Directional":false}]},{"ID":621,"SourceStructureID":332,"TargetStructureID":96584,"Label":"332-96584 via Gap Junction from 96586 -> 96585","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96586,"TargetID":96585,"Directional":false}]},{"ID":622,"SourceStructureID":32681,"TargetStructureID":334,"Label":"32681-334 via Adherens from 64578 -> 64579","Type":"Adherens","Directional":false,"Links":[{"SourceID":64578,"TargetID":64579,"Directional":false}]},{"ID":623,"SourceStructureID":335,"TargetStructureID":344,"Label":"335-344 via Gap Junction from 117833 -> 117827","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117833,"TargetID":117827,"Directional":false}]},{"ID":624,"SourceStructureID":366,"TargetStructureID":335,"Label":"366-335 via Adherens from 13617 -> 13640","Type":"Adherens","Directional":false,"Links":[{"SourceID":13617,"TargetID":13640,"Directional":false}]},{"ID":625,"SourceStructureID":24366,"TargetStructureID":335,"Label":"24366-335 via Gap Junction from 122154 -> 122153","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122154,"TargetID":122153,"Directional":false}]},{"ID":626,"SourceStructureID":31710,"TargetStructureID":335,"Label":"31710-335 via Gap Junction from 52672 -> 52673","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52672,"TargetID":52673,"Directional":false}]},{"ID":627,"SourceStructureID":440,"TargetStructureID":344,"Label":"440-344 via Gap Junction from 117829 -> 117830","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117829,"TargetID":117830,"Directional":false}]},{"ID":628,"SourceStructureID":344,"TargetStructureID":7157,"Label":"344-7157 via Gap Junction from 119037 -> 122641","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119037,"TargetID":122641,"Directional":false}]},{"ID":629,"SourceStructureID":344,"TargetStructureID":7468,"Label":"344-7468 via Gap Junction from 31740 -> 31739, 31742 -> 31741, 47853 -> 31736, 117819 -> 117818","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":31740,"TargetID":31739,"Directional":false},{"SourceID":31742,"TargetID":31741,"Directional":false},{"SourceID":47853,"TargetID":31736,"Directional":false},{"SourceID":117819,"TargetID":117818,"Directional":false}]},{"ID":630,"SourceStructureID":344,"TargetStructureID":118058,"Label":"344-118058 via Gap Junction from 122610 -> 118065","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122610,"TargetID":118065,"Directional":false}]},{"ID":631,"SourceStructureID":119028,"TargetStructureID":344,"Label":"119028-344 via Gap Junction from 119030 -> 119027","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119030,"TargetID":119027,"Directional":false}]},{"ID":632,"SourceStructureID":5860,"TargetStructureID":352,"Label":"5860-352 via Adherens from 90689 -> 90688, 90691 -> 90690, 90693 -> 90692","Type":"Adherens","Directional":false,"Links":[{"SourceID":90689,"TargetID":90688,"Directional":false},{"SourceID":90691,"TargetID":90690,"Directional":false},{"SourceID":90693,"TargetID":90692,"Directional":false}]},{"ID":633,"SourceStructureID":9260,"TargetStructureID":352,"Label":"9260-352 via Adherens from 90687 -> 90686","Type":"Adherens","Directional":false,"Links":[{"SourceID":90687,"TargetID":90686,"Directional":false}]},{"ID":634,"SourceStructureID":11238,"TargetStructureID":353,"Label":"11238-353 via Adherens from 136121 -> 136122","Type":"Adherens","Directional":false,"Links":[{"SourceID":136121,"TargetID":136122,"Directional":false}]},{"ID":635,"SourceStructureID":135225,"TargetStructureID":354,"Label":"135225-354 via Touch from 135913 -> 135912","Type":"Touch","Directional":false,"Links":[{"SourceID":135913,"TargetID":135912,"Directional":false}]},{"ID":636,"SourceStructureID":364,"TargetStructureID":364,"Label":"364-364 via Unknown from 92580 -> 92581","Type":"Unknown","Directional":false,"Links":[{"SourceID":92580,"TargetID":92581,"Directional":false}]},{"ID":637,"SourceStructureID":364,"TargetStructureID":366,"Label":"364-366 via Gap Junction from 14073 -> 14057, 115637 -> 115638","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14073,"TargetID":14057,"Directional":false},{"SourceID":115637,"TargetID":115638,"Directional":false}]},{"ID":638,"SourceStructureID":364,"TargetStructureID":366,"Label":"364-366 via Unknown from 115640 -> 115639","Type":"Unknown","Directional":false,"Links":[{"SourceID":115640,"TargetID":115639,"Directional":false}]},{"ID":639,"SourceStructureID":364,"TargetStructureID":431,"Label":"364-431 via Adherens from 12870 -> 12790","Type":"Adherens","Directional":false,"Links":[{"SourceID":12870,"TargetID":12790,"Directional":false}]},{"ID":640,"SourceStructureID":431,"TargetStructureID":364,"Label":"431-364 via Gap Junction from 38580 -> 12893, 55262 -> 12896, 120609 -> 120606, 120610 -> 120611, 122814 -> 122813, 122837 -> 122836, 122864 -> 122863","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38580,"TargetID":12893,"Directional":false},{"SourceID":55262,"TargetID":12896,"Directional":false},{"SourceID":120609,"TargetID":120606,"Directional":false},{"SourceID":120610,"TargetID":120611,"Directional":false},{"SourceID":122814,"TargetID":122813,"Directional":false},{"SourceID":122837,"TargetID":122836,"Directional":false},{"SourceID":122864,"TargetID":122863,"Directional":false}]},{"ID":641,"SourceStructureID":364,"TargetStructureID":3116,"Label":"364-3116 via Gap Junction from 92472 -> 46562","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92472,"TargetID":46562,"Directional":false}]},{"ID":642,"SourceStructureID":4569,"TargetStructureID":364,"Label":"4569-364 via Gap Junction from 98737 -> 98738","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98737,"TargetID":98738,"Directional":false}]},{"ID":643,"SourceStructureID":364,"TargetStructureID":4569,"Label":"364-4569 via Unknown from 98948 -> 98947","Type":"Unknown","Directional":false,"Links":[{"SourceID":98948,"TargetID":98947,"Directional":false}]},{"ID":644,"SourceStructureID":364,"TargetStructureID":20299,"Label":"364-20299 via Adherens from 55260 -> 55259","Type":"Adherens","Directional":false,"Links":[{"SourceID":55260,"TargetID":55259,"Directional":false}]},{"ID":645,"SourceStructureID":372,"TargetStructureID":366,"Label":"372-366 via Gap Junction from 71880 -> 71879, 122296 -> 122290, 122305 -> 122306","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71880,"TargetID":71879,"Directional":false},{"SourceID":122296,"TargetID":122290,"Directional":false},{"SourceID":122305,"TargetID":122306,"Directional":false}]},{"ID":646,"SourceStructureID":419,"TargetStructureID":366,"Label":"419-366 via Touch from 131762 -> 131763, 131764 -> 131765","Type":"Touch","Directional":false,"Links":[{"SourceID":131762,"TargetID":131763,"Directional":false},{"SourceID":131764,"TargetID":131765,"Directional":false}]},{"ID":647,"SourceStructureID":366,"TargetStructureID":428,"Label":"366-428 via Adherens from 13650 -> 13651, 13968 -> 13969","Type":"Adherens","Directional":false,"Links":[{"SourceID":13650,"TargetID":13651,"Directional":false},{"SourceID":13968,"TargetID":13969,"Directional":false}]},{"ID":648,"SourceStructureID":428,"TargetStructureID":366,"Label":"428-366 via Gap Junction from 114672 -> 114671, 115612 -> 115611, 115646 -> 115645","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":114672,"TargetID":114671,"Directional":false},{"SourceID":115612,"TargetID":115611,"Directional":false},{"SourceID":115646,"TargetID":115645,"Directional":false}]},{"ID":649,"SourceStructureID":428,"TargetStructureID":366,"Label":"428-366 via Unknown from 115650 -> 115649","Type":"Unknown","Directional":false,"Links":[{"SourceID":115650,"TargetID":115649,"Directional":false}]},{"ID":650,"SourceStructureID":479,"TargetStructureID":366,"Label":"479-366 via Gap Junction from 115653 -> 115651","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115653,"TargetID":115651,"Directional":false}]},{"ID":651,"SourceStructureID":366,"TargetStructureID":6153,"Label":"366-6153 via Gap Junction from 13665 -> 17472, 17444 -> 13981, 122250 -> 122249, 122303 -> 122304","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":13665,"TargetID":17472,"Directional":false},{"SourceID":17444,"TargetID":13981,"Directional":false},{"SourceID":122250,"TargetID":122249,"Directional":false},{"SourceID":122303,"TargetID":122304,"Directional":false}]},{"ID":652,"SourceStructureID":7157,"TargetStructureID":366,"Label":"7157-366 via Gap Junction from 18168 -> 18169","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":18168,"TargetID":18169,"Directional":false}]},{"ID":653,"SourceStructureID":20299,"TargetStructureID":366,"Label":"20299-366 via Adherens from 55261 -> 14103","Type":"Adherens","Directional":false,"Links":[{"SourceID":55261,"TargetID":14103,"Directional":false}]},{"ID":654,"SourceStructureID":366,"TargetStructureID":33148,"Label":"366-33148 via Unknown from 115609 -> 115610","Type":"Unknown","Directional":false,"Links":[{"SourceID":115609,"TargetID":115610,"Directional":false}]},{"ID":655,"SourceStructureID":366,"TargetStructureID":66138,"Label":"366-66138 via Gap Junction from 66187 -> 66188","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66187,"TargetID":66188,"Directional":false}]},{"ID":656,"SourceStructureID":115602,"TargetStructureID":366,"Label":"115602-366 via Gap Junction from 115603 -> 115601, 115608 -> 115607","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115603,"TargetID":115601,"Directional":false},{"SourceID":115608,"TargetID":115607,"Directional":false}]},{"ID":657,"SourceStructureID":115605,"TargetStructureID":366,"Label":"115605-366 via Gap Junction from 115606 -> 115604","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115606,"TargetID":115604,"Directional":false}]},{"ID":658,"SourceStructureID":366,"TargetStructureID":115613,"Label":"366-115613 via Unknown from 115615 -> 115614","Type":"Unknown","Directional":false,"Links":[{"SourceID":115615,"TargetID":115614,"Directional":false}]},{"ID":659,"SourceStructureID":115626,"TargetStructureID":366,"Label":"115626-366 via Gap Junction from 115627 -> 115625","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115627,"TargetID":115625,"Directional":false}]},{"ID":660,"SourceStructureID":115641,"TargetStructureID":366,"Label":"115641-366 via Gap Junction from 115643 -> 13947","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115643,"TargetID":13947,"Directional":false}]},{"ID":661,"SourceStructureID":366,"TargetStructureID":115647,"Label":"366-115647 via Gap Junction from 14104 -> 115648","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14104,"TargetID":115648,"Directional":false}]},{"ID":662,"SourceStructureID":115658,"TargetStructureID":366,"Label":"115658-366 via Unknown from 115659 -> 115657","Type":"Unknown","Directional":false,"Links":[{"SourceID":115659,"TargetID":115657,"Directional":false}]},{"ID":663,"SourceStructureID":115660,"TargetStructureID":366,"Label":"115660-366 via Gap Junction from 115661 -> 13623","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115661,"TargetID":13623,"Directional":false}]},{"ID":664,"SourceStructureID":372,"TargetStructureID":410,"Label":"372-410 via Gap Junction from 21365 -> 17300","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":21365,"TargetID":17300,"Directional":false}]},{"ID":665,"SourceStructureID":372,"TargetStructureID":412,"Label":"372-412 via Unknown from 122389 -> 122388","Type":"Unknown","Directional":false,"Links":[{"SourceID":122389,"TargetID":122388,"Directional":false}]},{"ID":666,"SourceStructureID":372,"TargetStructureID":428,"Label":"372-428 via Gap Junction from 122297 -> 122291, 122342 -> 122341","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122297,"TargetID":122291,"Directional":false},{"SourceID":122342,"TargetID":122341,"Directional":false}]},{"ID":667,"SourceStructureID":479,"TargetStructureID":372,"Label":"479-372 via Gap Junction from 58760 -> 58759, 58791 -> 58792, 71860 -> 71859, 121783 -> 121784, 122320 -> 122319","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58760,"TargetID":58759,"Directional":false},{"SourceID":58791,"TargetID":58792,"Directional":false},{"SourceID":71860,"TargetID":71859,"Directional":false},{"SourceID":121783,"TargetID":121784,"Directional":false},{"SourceID":122320,"TargetID":122319,"Directional":false}]},{"ID":668,"SourceStructureID":372,"TargetStructureID":3116,"Label":"372-3116 via Gap Junction from 55066 -> 122362, 122334 -> 122333","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55066,"TargetID":122362,"Directional":false},{"SourceID":122334,"TargetID":122333,"Directional":false}]},{"ID":669,"SourceStructureID":372,"TargetStructureID":6153,"Label":"372-6153 via Gap Junction from 30978 -> 8404, 30983 -> 13785, 46909 -> 55341, 115631 -> 8405, 122327 -> 8403, 131410 -> 131409","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30978,"TargetID":8404,"Directional":false},{"SourceID":30983,"TargetID":13785,"Directional":false},{"SourceID":46909,"TargetID":55341,"Directional":false},{"SourceID":115631,"TargetID":8405,"Directional":false},{"SourceID":122327,"TargetID":8403,"Directional":false},{"SourceID":131410,"TargetID":131409,"Directional":false}]},{"ID":670,"SourceStructureID":24401,"TargetStructureID":372,"Label":"24401-372 via Gap Junction from 121696 -> 121693","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121696,"TargetID":121693,"Directional":false}]},{"ID":671,"SourceStructureID":372,"TargetStructureID":32577,"Label":"372-32577 via Adherens from 71840 -> 71839","Type":"Adherens","Directional":false,"Links":[{"SourceID":71840,"TargetID":71839,"Directional":false}]},{"ID":672,"SourceStructureID":372,"TargetStructureID":71531,"Label":"372-71531 via Adherens from 71532 -> 71533","Type":"Adherens","Directional":false,"Links":[{"SourceID":71532,"TargetID":71533,"Directional":false}]},{"ID":673,"SourceStructureID":372,"TargetStructureID":71541,"Label":"372-71541 via Adherens from 71864 -> 71863","Type":"Adherens","Directional":false,"Links":[{"SourceID":71864,"TargetID":71863,"Directional":false}]},{"ID":674,"SourceStructureID":372,"TargetStructureID":71556,"Label":"372-71556 via Adherens from 71858 -> 71857","Type":"Adherens","Directional":false,"Links":[{"SourceID":71858,"TargetID":71857,"Directional":false}]},{"ID":675,"SourceStructureID":372,"TargetStructureID":71566,"Label":"372-71566 via Adherens from 71875 -> 71876","Type":"Adherens","Directional":false,"Links":[{"SourceID":71875,"TargetID":71876,"Directional":false}]},{"ID":676,"SourceStructureID":380,"TargetStructureID":410,"Label":"380-410 via Adherens from 23132 -> 23131","Type":"Adherens","Directional":false,"Links":[{"SourceID":23132,"TargetID":23131,"Directional":false}]},{"ID":677,"SourceStructureID":8575,"TargetStructureID":389,"Label":"8575-389 via Adherens from 62130 -> 62131, 62143 -> 62142","Type":"Adherens","Directional":false,"Links":[{"SourceID":62130,"TargetID":62131,"Directional":false},{"SourceID":62143,"TargetID":62142,"Directional":false}]},{"ID":678,"SourceStructureID":390,"TargetStructureID":483,"Label":"390-483 via Unknown from 134075 -> 134076","Type":"Unknown","Directional":false,"Links":[{"SourceID":134075,"TargetID":134076,"Directional":false}]},{"ID":679,"SourceStructureID":6156,"TargetStructureID":390,"Label":"6156-390 via Adherens from 133428 -> 133429","Type":"Adherens","Directional":false,"Links":[{"SourceID":133428,"TargetID":133429,"Directional":false}]},{"ID":680,"SourceStructureID":390,"TargetStructureID":6156,"Label":"390-6156 via Unknown from 133166 -> 133167","Type":"Unknown","Directional":false,"Links":[{"SourceID":133166,"TargetID":133167,"Directional":false}]},{"ID":681,"SourceStructureID":9693,"TargetStructureID":390,"Label":"9693-390 via Adherens from 119706 -> 119707","Type":"Adherens","Directional":false,"Links":[{"SourceID":119706,"TargetID":119707,"Directional":false}]},{"ID":682,"SourceStructureID":390,"TargetStructureID":9693,"Label":"390-9693 via Unknown from 134743 -> 119831","Type":"Unknown","Directional":false,"Links":[{"SourceID":134743,"TargetID":119831,"Directional":false}]},{"ID":683,"SourceStructureID":391,"TargetStructureID":2610,"Label":"391-2610 via Adherens from 108206 -> 108207","Type":"Adherens","Directional":false,"Links":[{"SourceID":108206,"TargetID":108207,"Directional":false}]},{"ID":684,"SourceStructureID":391,"TargetStructureID":2610,"Label":"391-2610 via Unknown from 108313 -> 108314","Type":"Unknown","Directional":false,"Links":[{"SourceID":108313,"TargetID":108314,"Directional":false}]},{"ID":685,"SourceStructureID":5345,"TargetStructureID":391,"Label":"5345-391 via Adherens from 108202 -> 108201, 108203 -> 108204, 108537 -> 108536","Type":"Adherens","Directional":false,"Links":[{"SourceID":108202,"TargetID":108201,"Directional":false},{"SourceID":108203,"TargetID":108204,"Directional":false},{"SourceID":108537,"TargetID":108536,"Directional":false}]},{"ID":686,"SourceStructureID":391,"TargetStructureID":10897,"Label":"391-10897 via Adherens from 108376 -> 108377","Type":"Adherens","Directional":false,"Links":[{"SourceID":108376,"TargetID":108377,"Directional":false}]},{"ID":687,"SourceStructureID":391,"TargetStructureID":10897,"Label":"391-10897 via Unknown from 108366 -> 108367, 108391 -> 108392","Type":"Unknown","Directional":false,"Links":[{"SourceID":108366,"TargetID":108367,"Directional":false},{"SourceID":108391,"TargetID":108392,"Directional":false}]},{"ID":688,"SourceStructureID":391,"TargetStructureID":20728,"Label":"391-20728 via Unknown from 108176 -> 108177","Type":"Unknown","Directional":false,"Links":[{"SourceID":108176,"TargetID":108177,"Directional":false}]},{"ID":689,"SourceStructureID":391,"TargetStructureID":89305,"Label":"391-89305 via Unknown from 108509 -> 108510","Type":"Unknown","Directional":false,"Links":[{"SourceID":108509,"TargetID":108510,"Directional":false}]},{"ID":690,"SourceStructureID":398,"TargetStructureID":397,"Label":"398-397 via Gap Junction from 122656 -> 122655, 122667 -> 122666, 122680 -> 122679, 122684 -> 122683, 122694 -> 122695","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122656,"TargetID":122655,"Directional":false},{"SourceID":122667,"TargetID":122666,"Directional":false},{"SourceID":122680,"TargetID":122679,"Directional":false},{"SourceID":122684,"TargetID":122683,"Directional":false},{"SourceID":122694,"TargetID":122695,"Directional":false}]},{"ID":691,"SourceStructureID":397,"TargetStructureID":24303,"Label":"397-24303 via Gap Junction from 55335 -> 122393, 55348 -> 55338","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55335,"TargetID":122393,"Directional":false},{"SourceID":55348,"TargetID":55338,"Directional":false}]},{"ID":692,"SourceStructureID":398,"TargetStructureID":398,"Label":"398-398 via Gap Junction from 122691 -> 122692","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122691,"TargetID":122692,"Directional":false}]},{"ID":693,"SourceStructureID":398,"TargetStructureID":45731,"Label":"398-45731 via Gap Junction from 122696 -> 122697","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122696,"TargetID":122697,"Directional":false}]},{"ID":694,"SourceStructureID":6589,"TargetStructureID":400,"Label":"6589-400 via Adherens from 130599 -> 130604","Type":"Adherens","Directional":false,"Links":[{"SourceID":130599,"TargetID":130604,"Directional":false}]},{"ID":695,"SourceStructureID":400,"TargetStructureID":9693,"Label":"400-9693 via Adherens from 59566 -> 59565, 130580 -> 130581, 131733 -> 120120","Type":"Adherens","Directional":false,"Links":[{"SourceID":59566,"TargetID":59565,"Directional":false},{"SourceID":130580,"TargetID":130581,"Directional":false},{"SourceID":131733,"TargetID":120120,"Directional":false}]},{"ID":696,"SourceStructureID":405,"TargetStructureID":408,"Label":"405-408 via Adherens from 37589 -> 37590","Type":"Adherens","Directional":false,"Links":[{"SourceID":37589,"TargetID":37590,"Directional":false}]},{"ID":697,"SourceStructureID":410,"TargetStructureID":408,"Label":"410-408 via Gap Junction from 8355 -> 22509, 25883 -> 8357, 35795 -> 8356, 35808 -> 8350, 35898 -> 17694, 47120 -> 9364","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8355,"TargetID":22509,"Directional":false},{"SourceID":25883,"TargetID":8357,"Directional":false},{"SourceID":35795,"TargetID":8356,"Directional":false},{"SourceID":35808,"TargetID":8350,"Directional":false},{"SourceID":35898,"TargetID":17694,"Directional":false},{"SourceID":47120,"TargetID":9364,"Directional":false}]},{"ID":698,"SourceStructureID":408,"TargetStructureID":479,"Label":"408-479 via Gap Junction from 121738 -> 121737","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121738,"TargetID":121737,"Directional":false}]},{"ID":699,"SourceStructureID":408,"TargetStructureID":6155,"Label":"408-6155 via Gap Junction from 49029 -> 48312, 121222 -> 52878","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49029,"TargetID":48312,"Directional":false},{"SourceID":121222,"TargetID":52878,"Directional":false}]},{"ID":700,"SourceStructureID":24303,"TargetStructureID":408,"Label":"24303-408 via Gap Junction from 35794 -> 35793, 122397 -> 122396, 122474 -> 122475, 122476 -> 122477","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35794,"TargetID":35793,"Directional":false},{"SourceID":122397,"TargetID":122396,"Directional":false},{"SourceID":122474,"TargetID":122475,"Directional":false},{"SourceID":122476,"TargetID":122477,"Directional":false}]},{"ID":701,"SourceStructureID":24401,"TargetStructureID":408,"Label":"24401-408 via Gap Junction from 34805 -> 34806, 34813 -> 121161, 35804 -> 35803, 48142 -> 48141, 52864 -> 52865, 121186 -> 52870, 121204 -> 121205, 121716 -> 121717","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":34805,"TargetID":34806,"Directional":false},{"SourceID":34813,"TargetID":121161,"Directional":false},{"SourceID":35804,"TargetID":35803,"Directional":false},{"SourceID":48142,"TargetID":48141,"Directional":false},{"SourceID":52864,"TargetID":52865,"Directional":false},{"SourceID":121186,"TargetID":52870,"Directional":false},{"SourceID":121204,"TargetID":121205,"Directional":false},{"SourceID":121716,"TargetID":121717,"Directional":false}]},{"ID":702,"SourceStructureID":408,"TargetStructureID":28886,"Label":"408-28886 via Gap Junction from 51630 -> 45766","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51630,"TargetID":45766,"Directional":false}]},{"ID":703,"SourceStructureID":408,"TargetStructureID":39862,"Label":"408-39862 via Gap Junction from 29276 -> 51253, 53034 -> 51245","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29276,"TargetID":51253,"Directional":false},{"SourceID":53034,"TargetID":51245,"Directional":false}]},{"ID":704,"SourceStructureID":121155,"TargetStructureID":408,"Label":"121155-408 via Gap Junction from 121695 -> 121694","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121695,"TargetID":121694,"Directional":false}]},{"ID":705,"SourceStructureID":408,"TargetStructureID":121663,"Label":"408-121663 via Gap Junction from 121667 -> 121666, 121670 -> 29272","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121667,"TargetID":121666,"Directional":false},{"SourceID":121670,"TargetID":29272,"Directional":false}]},{"ID":706,"SourceStructureID":410,"TargetStructureID":419,"Label":"410-419 via Adherens from 10136 -> 10135, 133706 -> 133707, 135091 -> 133711","Type":"Adherens","Directional":false,"Links":[{"SourceID":10136,"TargetID":10135,"Directional":false},{"SourceID":133706,"TargetID":133707,"Directional":false},{"SourceID":135091,"TargetID":133711,"Directional":false}]},{"ID":707,"SourceStructureID":419,"TargetStructureID":410,"Label":"419-410 via Gap Junction from 10131 -> 10132, 14602 -> 8366, 131492 -> 131491, 131797 -> 131796, 132589 -> 132590, 133539 -> 133540","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10131,"TargetID":10132,"Directional":false},{"SourceID":14602,"TargetID":8366,"Directional":false},{"SourceID":131492,"TargetID":131491,"Directional":false},{"SourceID":131797,"TargetID":131796,"Directional":false},{"SourceID":132589,"TargetID":132590,"Directional":false},{"SourceID":133539,"TargetID":133540,"Directional":false}]},{"ID":708,"SourceStructureID":410,"TargetStructureID":476,"Label":"410-476 via Gap Junction from 8370 -> 17490, 8380 -> 8347, 10439 -> 10440, 16480 -> 8376, 16502 -> 8354, 16515 -> 16514, 17347 -> 17346, 19117 -> 19116, 32738 -> 32736","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8370,"TargetID":17490,"Directional":false},{"SourceID":8380,"TargetID":8347,"Directional":false},{"SourceID":10439,"TargetID":10440,"Directional":false},{"SourceID":16480,"TargetID":8376,"Directional":false},{"SourceID":16502,"TargetID":8354,"Directional":false},{"SourceID":16515,"TargetID":16514,"Directional":false},{"SourceID":17347,"TargetID":17346,"Directional":false},{"SourceID":19117,"TargetID":19116,"Directional":false},{"SourceID":32738,"TargetID":32736,"Directional":false}]},{"ID":709,"SourceStructureID":410,"TargetStructureID":483,"Label":"410-483 via Gap Junction from 94746 -> 94747","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94746,"TargetID":94747,"Directional":false}]},{"ID":710,"SourceStructureID":410,"TargetStructureID":485,"Label":"410-485 via Gap Junction from 8362 -> 8348, 8363 -> 50880, 94053 -> 94052, 148013 -> 148014, 148077 -> 148078, 148426 -> 148427, 148429 -> 148430, 148435 -> 148436","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8362,"TargetID":8348,"Directional":false},{"SourceID":8363,"TargetID":50880,"Directional":false},{"SourceID":94053,"TargetID":94052,"Directional":false},{"SourceID":148013,"TargetID":148014,"Directional":false},{"SourceID":148077,"TargetID":148078,"Directional":false},{"SourceID":148426,"TargetID":148427,"Directional":false},{"SourceID":148429,"TargetID":148430,"Directional":false},{"SourceID":148435,"TargetID":148436,"Directional":false}]},{"ID":711,"SourceStructureID":514,"TargetStructureID":410,"Label":"514-410 via Adherens from 15088 -> 15087","Type":"Adherens","Directional":false,"Links":[{"SourceID":15088,"TargetID":15087,"Directional":false}]},{"ID":712,"SourceStructureID":514,"TargetStructureID":410,"Label":"514-410 via Gap Junction from 15098 -> 15097","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15098,"TargetID":15097,"Directional":false}]},{"ID":713,"SourceStructureID":410,"TargetStructureID":2610,"Label":"410-2610 via Gap Junction from 17501 -> 17500, 22675 -> 22676","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17501,"TargetID":17500,"Directional":false},{"SourceID":22675,"TargetID":22676,"Directional":false}]},{"ID":714,"SourceStructureID":410,"TargetStructureID":4850,"Label":"410-4850 via Gap Junction from 97993 -> 97992","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97993,"TargetID":97992,"Directional":false}]},{"ID":715,"SourceStructureID":410,"TargetStructureID":6153,"Label":"410-6153 via Gap Junction from 9189 -> 8410, 16671 -> 16670, 16701 -> 16700, 17352 -> 17351, 17830 -> 17829","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9189,"TargetID":8410,"Directional":false},{"SourceID":16671,"TargetID":16670,"Directional":false},{"SourceID":16701,"TargetID":16700,"Directional":false},{"SourceID":17352,"TargetID":17351,"Directional":false},{"SourceID":17830,"TargetID":17829,"Directional":false}]},{"ID":716,"SourceStructureID":410,"TargetStructureID":6589,"Label":"410-6589 via Gap Junction from 132734 -> 132733","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132734,"TargetID":132733,"Directional":false}]},{"ID":717,"SourceStructureID":410,"TargetStructureID":9693,"Label":"410-9693 via Adherens from 131490 -> 131489","Type":"Adherens","Directional":false,"Links":[{"SourceID":131490,"TargetID":131489,"Directional":false}]},{"ID":718,"SourceStructureID":410,"TargetStructureID":9693,"Label":"410-9693 via Gap Junction from 131488 -> 119862","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131488,"TargetID":119862,"Directional":false}]},{"ID":719,"SourceStructureID":17527,"TargetStructureID":410,"Label":"17527-410 via Gap Junction from 17535 -> 17534, 17792 -> 17791, 17890 -> 17889, 18366 -> 18365","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17535,"TargetID":17534,"Directional":false},{"SourceID":17792,"TargetID":17791,"Directional":false},{"SourceID":17890,"TargetID":17889,"Directional":false},{"SourceID":18366,"TargetID":18365,"Directional":false}]},{"ID":720,"SourceStructureID":410,"TargetStructureID":25688,"Label":"410-25688 via Adherens from 25700 -> 25699","Type":"Adherens","Directional":false,"Links":[{"SourceID":25700,"TargetID":25699,"Directional":false}]},{"ID":721,"SourceStructureID":101332,"TargetStructureID":410,"Label":"101332-410 via Unknown from 101336 -> 101337","Type":"Unknown","Directional":false,"Links":[{"SourceID":101336,"TargetID":101337,"Directional":false}]},{"ID":722,"SourceStructureID":121177,"TargetStructureID":410,"Label":"121177-410 via Gap Junction from 121179 -> 9528","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121179,"TargetID":9528,"Directional":false}]},{"ID":723,"SourceStructureID":419,"TargetStructureID":412,"Label":"419-412 via Unknown from 132512 -> 133693","Type":"Unknown","Directional":false,"Links":[{"SourceID":132512,"TargetID":133693,"Directional":false}]},{"ID":724,"SourceStructureID":479,"TargetStructureID":412,"Label":"479-412 via Unknown from 122390 -> 122391","Type":"Unknown","Directional":false,"Links":[{"SourceID":122390,"TargetID":122391,"Directional":false}]},{"ID":725,"SourceStructureID":412,"TargetStructureID":24401,"Label":"412-24401 via Gap Junction from 133690 -> 133691","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133690,"TargetID":133691,"Directional":false}]},{"ID":726,"SourceStructureID":121155,"TargetStructureID":412,"Label":"121155-412 via Gap Junction from 133689 -> 133692","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133689,"TargetID":133692,"Directional":false}]},{"ID":727,"SourceStructureID":419,"TargetStructureID":419,"Label":"419-419 via Gap Junction from 131773 -> 131774, 131792 -> 131791","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131773,"TargetID":131774,"Directional":false},{"SourceID":131792,"TargetID":131791,"Directional":false}]},{"ID":728,"SourceStructureID":476,"TargetStructureID":419,"Label":"476-419 via Adherens from 133683 -> 132385, 133709 -> 133708","Type":"Adherens","Directional":false,"Links":[{"SourceID":133683,"TargetID":132385,"Directional":false},{"SourceID":133709,"TargetID":133708,"Directional":false}]},{"ID":729,"SourceStructureID":476,"TargetStructureID":419,"Label":"476-419 via Gap Junction from 10123 -> 10122, 10459 -> 14594, 14599 -> 2293, 20365 -> 8396, 32135 -> 32136, 65186 -> 10463, 131466 -> 131465, 131832 -> 131833, 132384 -> 133682, 133581 -> 133582, 133705 -> 131853","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10123,"TargetID":10122,"Directional":false},{"SourceID":10459,"TargetID":14594,"Directional":false},{"SourceID":14599,"TargetID":2293,"Directional":false},{"SourceID":20365,"TargetID":8396,"Directional":false},{"SourceID":32135,"TargetID":32136,"Directional":false},{"SourceID":65186,"TargetID":10463,"Directional":false},{"SourceID":131466,"TargetID":131465,"Directional":false},{"SourceID":131832,"TargetID":131833,"Directional":false},{"SourceID":132384,"TargetID":133682,"Directional":false},{"SourceID":133581,"TargetID":133582,"Directional":false},{"SourceID":133705,"TargetID":131853,"Directional":false}]},{"ID":730,"SourceStructureID":483,"TargetStructureID":419,"Label":"483-419 via Gap Junction from 131756 -> 131757","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131756,"TargetID":131757,"Directional":false}]},{"ID":731,"SourceStructureID":485,"TargetStructureID":419,"Label":"485-419 via Adherens from 131494 -> 131495","Type":"Adherens","Directional":false,"Links":[{"SourceID":131494,"TargetID":131495,"Directional":false}]},{"ID":732,"SourceStructureID":419,"TargetStructureID":485,"Label":"419-485 via Touch from 133677 -> 133678","Type":"Touch","Directional":false,"Links":[{"SourceID":133677,"TargetID":133678,"Directional":false}]},{"ID":733,"SourceStructureID":419,"TargetStructureID":2610,"Label":"419-2610 via Gap Junction from 70525 -> 70526, 131798 -> 131799, 133725 -> 133726","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70525,"TargetID":70526,"Directional":false},{"SourceID":131798,"TargetID":131799,"Directional":false},{"SourceID":133725,"TargetID":133726,"Directional":false}]},{"ID":734,"SourceStructureID":419,"TargetStructureID":4890,"Label":"419-4890 via Unknown from 133543 -> 133544","Type":"Unknown","Directional":false,"Links":[{"SourceID":133543,"TargetID":133544,"Directional":false}]},{"ID":735,"SourceStructureID":419,"TargetStructureID":5118,"Label":"419-5118 via Unknown from 131843 -> 131844","Type":"Unknown","Directional":false,"Links":[{"SourceID":131843,"TargetID":131844,"Directional":false}]},{"ID":736,"SourceStructureID":419,"TargetStructureID":6153,"Label":"419-6153 via Adherens from 133701 -> 133702, 133714 -> 133713, 133715 -> 133716","Type":"Adherens","Directional":false,"Links":[{"SourceID":133701,"TargetID":133702,"Directional":false},{"SourceID":133714,"TargetID":133713,"Directional":false},{"SourceID":133715,"TargetID":133716,"Directional":false}]},{"ID":737,"SourceStructureID":419,"TargetStructureID":6153,"Label":"419-6153 via Gap Junction from 10161 -> 10162, 20389 -> 17474, 131750 -> 131749, 131761 -> 131759, 131785 -> 131786, 133600 -> 133601","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10161,"TargetID":10162,"Directional":false},{"SourceID":20389,"TargetID":17474,"Directional":false},{"SourceID":131750,"TargetID":131749,"Directional":false},{"SourceID":131761,"TargetID":131759,"Directional":false},{"SourceID":131785,"TargetID":131786,"Directional":false},{"SourceID":133600,"TargetID":133601,"Directional":false}]},{"ID":738,"SourceStructureID":6156,"TargetStructureID":419,"Label":"6156-419 via Adherens from 115066 -> 115067","Type":"Adherens","Directional":false,"Links":[{"SourceID":115066,"TargetID":115067,"Directional":false}]},{"ID":739,"SourceStructureID":6156,"TargetStructureID":419,"Label":"6156-419 via Gap Junction from 131464 -> 131463","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131464,"TargetID":131463,"Directional":false}]},{"ID":740,"SourceStructureID":6589,"TargetStructureID":419,"Label":"6589-419 via Touch from 133559 -> 133560","Type":"Touch","Directional":false,"Links":[{"SourceID":133559,"TargetID":133560,"Directional":false}]},{"ID":741,"SourceStructureID":7157,"TargetStructureID":419,"Label":"7157-419 via Gap Junction from 131769 -> 131768","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131769,"TargetID":131768,"Directional":false}]},{"ID":742,"SourceStructureID":419,"TargetStructureID":13855,"Label":"419-13855 via Adherens from 14902 -> 14903, 133521 -> 132514","Type":"Adherens","Directional":false,"Links":[{"SourceID":14902,"TargetID":14903,"Directional":false},{"SourceID":133521,"TargetID":132514,"Directional":false}]},{"ID":743,"SourceStructureID":419,"TargetStructureID":18576,"Label":"419-18576 via Unknown from 132269 -> 133674, 133681 -> 132380","Type":"Unknown","Directional":false,"Links":[{"SourceID":132269,"TargetID":133674,"Directional":false},{"SourceID":133681,"TargetID":132380,"Directional":false}]},{"ID":744,"SourceStructureID":419,"TargetStructureID":25869,"Label":"419-25869 via Unknown from 133526 -> 133525","Type":"Unknown","Directional":false,"Links":[{"SourceID":133526,"TargetID":133525,"Directional":false}]},{"ID":745,"SourceStructureID":419,"TargetStructureID":32172,"Label":"419-32172 via Adherens from 132477 -> 132478","Type":"Adherens","Directional":false,"Links":[{"SourceID":132477,"TargetID":132478,"Directional":false}]},{"ID":746,"SourceStructureID":419,"TargetStructureID":36421,"Label":"419-36421 via Unknown from 133516 -> 133517","Type":"Unknown","Directional":false,"Links":[{"SourceID":133516,"TargetID":133517,"Directional":false}]},{"ID":747,"SourceStructureID":37286,"TargetStructureID":419,"Label":"37286-419 via Unknown from 132362 -> 132361","Type":"Unknown","Directional":false,"Links":[{"SourceID":132362,"TargetID":132361,"Directional":false}]},{"ID":748,"SourceStructureID":419,"TargetStructureID":60185,"Label":"419-60185 via Adherens from 60190 -> 60189","Type":"Adherens","Directional":false,"Links":[{"SourceID":60190,"TargetID":60189,"Directional":false}]},{"ID":749,"SourceStructureID":70518,"TargetStructureID":419,"Label":"70518-419 via Adherens from 132647 -> 132646","Type":"Adherens","Directional":false,"Links":[{"SourceID":132647,"TargetID":132646,"Directional":false}]},{"ID":750,"SourceStructureID":419,"TargetStructureID":70518,"Label":"419-70518 via Unknown from 132594 -> 132595","Type":"Unknown","Directional":false,"Links":[{"SourceID":132594,"TargetID":132595,"Directional":false}]},{"ID":751,"SourceStructureID":70833,"TargetStructureID":419,"Label":"70833-419 via Adherens from 133653 -> 133654","Type":"Adherens","Directional":false,"Links":[{"SourceID":133653,"TargetID":133654,"Directional":false}]},{"ID":752,"SourceStructureID":70901,"TargetStructureID":419,"Label":"70901-419 via Adherens from 132480 -> 132479","Type":"Adherens","Directional":false,"Links":[{"SourceID":132480,"TargetID":132479,"Directional":false}]},{"ID":753,"SourceStructureID":71041,"TargetStructureID":419,"Label":"71041-419 via Unknown from 131483 -> 131482, 133638 -> 133639","Type":"Unknown","Directional":false,"Links":[{"SourceID":131483,"TargetID":131482,"Directional":false},{"SourceID":133638,"TargetID":133639,"Directional":false}]},{"ID":754,"SourceStructureID":419,"TargetStructureID":89233,"Label":"419-89233 via Unknown from 89244 -> 89243","Type":"Unknown","Directional":false,"Links":[{"SourceID":89244,"TargetID":89243,"Directional":false}]},{"ID":755,"SourceStructureID":419,"TargetStructureID":101234,"Label":"419-101234 via Adherens from 132644 -> 132645","Type":"Adherens","Directional":false,"Links":[{"SourceID":132644,"TargetID":132645,"Directional":false}]},{"ID":756,"SourceStructureID":102524,"TargetStructureID":419,"Label":"102524-419 via Unknown from 133604 -> 133603","Type":"Unknown","Directional":false,"Links":[{"SourceID":133604,"TargetID":133603,"Directional":false}]},{"ID":757,"SourceStructureID":133553,"TargetStructureID":419,"Label":"133553-419 via Adherens from 133555 -> 132505, 133580 -> 133579","Type":"Adherens","Directional":false,"Links":[{"SourceID":133555,"TargetID":132505,"Directional":false},{"SourceID":133580,"TargetID":133579,"Directional":false}]},{"ID":758,"SourceStructureID":422,"TargetStructureID":422,"Label":"422-422 via Adherens from 107067 -> 107066","Type":"Adherens","Directional":false,"Links":[{"SourceID":107067,"TargetID":107066,"Directional":false}]},{"ID":759,"SourceStructureID":488,"TargetStructureID":422,"Label":"488-422 via Conventional from 87793 -> 87794","Type":"Conventional","Directional":false,"Links":[{"SourceID":87793,"TargetID":87794,"Directional":false}]},{"ID":760,"SourceStructureID":463,"TargetStructureID":425,"Label":"463-425 via Adherens from 12979 -> 12980","Type":"Adherens","Directional":false,"Links":[{"SourceID":12979,"TargetID":12980,"Directional":false}]},{"ID":761,"SourceStructureID":463,"TargetStructureID":425,"Label":"463-425 via Gap Junction from 74162 -> 74163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":74162,"TargetID":74163,"Directional":false}]},{"ID":762,"SourceStructureID":431,"TargetStructureID":428,"Label":"431-428 via Adherens from 12624 -> 12625","Type":"Adherens","Directional":false,"Links":[{"SourceID":12624,"TargetID":12625,"Directional":false}]},{"ID":763,"SourceStructureID":431,"TargetStructureID":428,"Label":"431-428 via Gap Junction from 12595 -> 12596, 52737 -> 52736","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12595,"TargetID":12596,"Directional":false},{"SourceID":52737,"TargetID":52736,"Directional":false}]},{"ID":764,"SourceStructureID":606,"TargetStructureID":428,"Label":"606-428 via Adherens from 53150 -> 53151","Type":"Adherens","Directional":false,"Links":[{"SourceID":53150,"TargetID":53151,"Directional":false}]},{"ID":765,"SourceStructureID":428,"TargetStructureID":4569,"Label":"428-4569 via Gap Junction from 52682 -> 52550, 58598 -> 58599, 98371 -> 98370","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52682,"TargetID":52550,"Directional":false},{"SourceID":58598,"TargetID":58599,"Directional":false},{"SourceID":98371,"TargetID":98370,"Directional":false}]},{"ID":766,"SourceStructureID":428,"TargetStructureID":59497,"Label":"428-59497 via Adherens from 59504 -> 59503","Type":"Adherens","Directional":false,"Links":[{"SourceID":59504,"TargetID":59503,"Directional":false}]},{"ID":767,"SourceStructureID":59497,"TargetStructureID":428,"Label":"59497-428 via Gap Junction from 59498 -> 52793","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59498,"TargetID":52793,"Directional":false}]},{"ID":768,"SourceStructureID":66138,"TargetStructureID":428,"Label":"66138-428 via Adherens from 66192 -> 66182","Type":"Adherens","Directional":false,"Links":[{"SourceID":66192,"TargetID":66182,"Directional":false}]},{"ID":769,"SourceStructureID":428,"TargetStructureID":66138,"Label":"428-66138 via Gap Junction from 66181 -> 66189","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66181,"TargetID":66189,"Directional":false}]},{"ID":770,"SourceStructureID":428,"TargetStructureID":66214,"Label":"428-66214 via Gap Junction from 66216 -> 66215","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66216,"TargetID":66215,"Directional":false}]},{"ID":771,"SourceStructureID":431,"TargetStructureID":440,"Label":"431-440 via Gap Junction from 12676 -> 60299, 18604 -> 122817, 38595 -> 18613, 60300 -> 12678, 60301 -> 12677, 60324 -> 60325, 122852 -> 122853, 122869 -> 122870","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12676,"TargetID":60299,"Directional":false},{"SourceID":18604,"TargetID":122817,"Directional":false},{"SourceID":38595,"TargetID":18613,"Directional":false},{"SourceID":60300,"TargetID":12678,"Directional":false},{"SourceID":60301,"TargetID":12677,"Directional":false},{"SourceID":60324,"TargetID":60325,"Directional":false},{"SourceID":122852,"TargetID":122853,"Directional":false},{"SourceID":122869,"TargetID":122870,"Directional":false}]},{"ID":772,"SourceStructureID":431,"TargetStructureID":4835,"Label":"431-4835 via Gap Junction from 12633 -> 12634, 12740 -> 8387, 12759 -> 12760, 12773 -> 8381, 12796 -> 8382, 38587 -> 38586, 122816 -> 122815","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12633,"TargetID":12634,"Directional":false},{"SourceID":12740,"TargetID":8387,"Directional":false},{"SourceID":12759,"TargetID":12760,"Directional":false},{"SourceID":12773,"TargetID":8381,"Directional":false},{"SourceID":12796,"TargetID":8382,"Directional":false},{"SourceID":38587,"TargetID":38586,"Directional":false},{"SourceID":122816,"TargetID":122815,"Directional":false}]},{"ID":773,"SourceStructureID":431,"TargetStructureID":7157,"Label":"431-7157 via Gap Junction from 12703 -> 12704, 12709 -> 12710","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12703,"TargetID":12704,"Directional":false},{"SourceID":12709,"TargetID":12710,"Directional":false}]},{"ID":774,"SourceStructureID":431,"TargetStructureID":8720,"Label":"431-8720 via Adherens from 60269 -> 60268","Type":"Adherens","Directional":false,"Links":[{"SourceID":60269,"TargetID":60268,"Directional":false}]},{"ID":775,"SourceStructureID":71882,"TargetStructureID":431,"Label":"71882-431 via Adherens from 90361 -> 90362","Type":"Adherens","Directional":false,"Links":[{"SourceID":90361,"TargetID":90362,"Directional":false}]},{"ID":776,"SourceStructureID":115641,"TargetStructureID":431,"Label":"115641-431 via Gap Junction from 115642 -> 12724","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115642,"TargetID":12724,"Directional":false}]},{"ID":777,"SourceStructureID":440,"TargetStructureID":440,"Label":"440-440 via Gap Junction from 122601 -> 122600","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122601,"TargetID":122600,"Directional":false}]},{"ID":778,"SourceStructureID":450,"TargetStructureID":440,"Label":"450-440 via Gap Junction from 118072 -> 118075, 118080 -> 118077, 122536 -> 122514","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118072,"TargetID":118075,"Directional":false},{"SourceID":118080,"TargetID":118077,"Directional":false},{"SourceID":122536,"TargetID":122514,"Directional":false}]},{"ID":779,"SourceStructureID":458,"TargetStructureID":440,"Label":"458-440 via Adherens from 64824 -> 64825","Type":"Adherens","Directional":false,"Links":[{"SourceID":64824,"TargetID":64825,"Directional":false}]},{"ID":780,"SourceStructureID":7215,"TargetStructureID":440,"Label":"7215-440 via Gap Junction from 118079 -> 118078","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118079,"TargetID":118078,"Directional":false}]},{"ID":781,"SourceStructureID":8720,"TargetStructureID":440,"Label":"8720-440 via Adherens from 60296 -> 60295","Type":"Adherens","Directional":false,"Links":[{"SourceID":60296,"TargetID":60295,"Directional":false}]},{"ID":782,"SourceStructureID":440,"TargetStructureID":61752,"Label":"440-61752 via Unknown from 122518 -> 122517","Type":"Unknown","Directional":false,"Links":[{"SourceID":122518,"TargetID":122517,"Directional":false}]},{"ID":783,"SourceStructureID":446,"TargetStructureID":7860,"Label":"446-7860 via Gap Junction from 47915 -> 29659, 118019 -> 118018, 118025 -> 118027, 118028 -> 118023","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47915,"TargetID":29659,"Directional":false},{"SourceID":118019,"TargetID":118018,"Directional":false},{"SourceID":118025,"TargetID":118027,"Directional":false},{"SourceID":118028,"TargetID":118023,"Directional":false}]},{"ID":784,"SourceStructureID":118014,"TargetStructureID":446,"Label":"118014-446 via Gap Junction from 118015 -> 118013, 118017 -> 118016","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118015,"TargetID":118013,"Directional":false},{"SourceID":118017,"TargetID":118016,"Directional":false}]},{"ID":785,"SourceStructureID":32273,"TargetStructureID":447,"Label":"32273-447 via Adherens from 32280 -> 32281","Type":"Adherens","Directional":false,"Links":[{"SourceID":32280,"TargetID":32281,"Directional":false}]},{"ID":786,"SourceStructureID":450,"TargetStructureID":450,"Label":"450-450 via Gap Junction from 118074 -> 118073","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118074,"TargetID":118073,"Directional":false}]},{"ID":787,"SourceStructureID":6129,"TargetStructureID":450,"Label":"6129-450 via Gap Junction from 117977 -> 117976","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117977,"TargetID":117976,"Directional":false}]},{"ID":788,"SourceStructureID":6165,"TargetStructureID":450,"Label":"6165-450 via Gap Junction from 118049 -> 118048, 122568 -> 122569","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118049,"TargetID":118048,"Directional":false},{"SourceID":122568,"TargetID":122569,"Directional":false}]},{"ID":789,"SourceStructureID":7861,"TargetStructureID":450,"Label":"7861-450 via Gap Junction from 10553 -> 10552, 20404 -> 20403, 122583 -> 122581","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10553,"TargetID":10552,"Directional":false},{"SourceID":20404,"TargetID":20403,"Directional":false},{"SourceID":122583,"TargetID":122581,"Directional":false}]},{"ID":790,"SourceStructureID":450,"TargetStructureID":82677,"Label":"450-82677 via Gap Junction from 122579 -> 122580","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122579,"TargetID":122580,"Directional":false}]},{"ID":791,"SourceStructureID":450,"TargetStructureID":117990,"Label":"450-117990 via Gap Junction from 122572 -> 122571","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122572,"TargetID":122571,"Directional":false}]},{"ID":792,"SourceStructureID":450,"TargetStructureID":122564,"Label":"450-122564 via Gap Junction from 118076 -> 122640, 122565 -> 122566","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118076,"TargetID":122640,"Directional":false},{"SourceID":122565,"TargetID":122566,"Directional":false}]},{"ID":793,"SourceStructureID":6128,"TargetStructureID":452,"Label":"6128-452 via Gap Junction from 20955 -> 21245, 21249 -> 21248, 21251 -> 21250","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20955,"TargetID":21245,"Directional":false},{"SourceID":21249,"TargetID":21248,"Directional":false},{"SourceID":21251,"TargetID":21250,"Directional":false}]},{"ID":794,"SourceStructureID":455,"TargetStructureID":458,"Label":"455-458 via Gap Junction from 14563 -> 14535","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14563,"TargetID":14535,"Directional":false}]},{"ID":795,"SourceStructureID":5545,"TargetStructureID":455,"Label":"5545-455 via Gap Junction from 123783 -> 123784","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123783,"TargetID":123784,"Directional":false}]},{"ID":796,"SourceStructureID":455,"TargetStructureID":130256,"Label":"455-130256 via Gap Junction from 158485 -> 158484","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":158485,"TargetID":158484,"Directional":false}]},{"ID":797,"SourceStructureID":456,"TargetStructureID":9787,"Label":"456-9787 via Adherens from 12047 -> 12046","Type":"Adherens","Directional":false,"Links":[{"SourceID":12047,"TargetID":12046,"Directional":false}]},{"ID":798,"SourceStructureID":458,"TargetStructureID":460,"Label":"458-460 via Adherens from 37518 -> 27151","Type":"Adherens","Directional":false,"Links":[{"SourceID":37518,"TargetID":27151,"Directional":false}]},{"ID":799,"SourceStructureID":458,"TargetStructureID":460,"Label":"458-460 via Gap Junction from 46324 -> 46317, 46329 -> 46328","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46324,"TargetID":46317,"Directional":false},{"SourceID":46329,"TargetID":46328,"Directional":false}]},{"ID":800,"SourceStructureID":968,"TargetStructureID":458,"Label":"968-458 via Adherens from 37519 -> 37520","Type":"Adherens","Directional":false,"Links":[{"SourceID":37519,"TargetID":37520,"Directional":false}]},{"ID":801,"SourceStructureID":131503,"TargetStructureID":458,"Label":"131503-458 via Adherens from 131609 -> 14501","Type":"Adherens","Directional":false,"Links":[{"SourceID":131609,"TargetID":14501,"Directional":false}]},{"ID":802,"SourceStructureID":968,"TargetStructureID":460,"Label":"968-460 via Gap Junction from 59860 -> 59859","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59860,"TargetID":59859,"Directional":false}]},{"ID":803,"SourceStructureID":461,"TargetStructureID":483,"Label":"461-483 via Gap Junction from 49767 -> 49797","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49767,"TargetID":49797,"Directional":false}]},{"ID":804,"SourceStructureID":461,"TargetStructureID":4835,"Label":"461-4835 via Gap Junction from 14685 -> 14686, 14880 -> 9042, 94774 -> 94773, 114684 -> 114683, 114782 -> 114686, 120415 -> 60131, 120417 -> 60127","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14685,"TargetID":14686,"Directional":false},{"SourceID":14880,"TargetID":9042,"Directional":false},{"SourceID":94774,"TargetID":94773,"Directional":false},{"SourceID":114684,"TargetID":114683,"Directional":false},{"SourceID":114782,"TargetID":114686,"Directional":false},{"SourceID":120415,"TargetID":60131,"Directional":false},{"SourceID":120417,"TargetID":60127,"Directional":false}]},{"ID":805,"SourceStructureID":7564,"TargetStructureID":461,"Label":"7564-461 via Gap Junction from 94853 -> 14847","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94853,"TargetID":14847,"Directional":false}]},{"ID":806,"SourceStructureID":461,"TargetStructureID":71935,"Label":"461-71935 via Unknown from 94778 -> 94779","Type":"Unknown","Directional":false,"Links":[{"SourceID":94778,"TargetID":94779,"Directional":false}]},{"ID":807,"SourceStructureID":88082,"TargetStructureID":461,"Label":"88082-461 via Unknown from 95155 -> 95154","Type":"Unknown","Directional":false,"Links":[{"SourceID":95155,"TargetID":95154,"Directional":false}]},{"ID":808,"SourceStructureID":86799,"TargetStructureID":469,"Label":"86799-469 via Touch from 87716 -> 87715","Type":"Touch","Directional":false,"Links":[{"SourceID":87716,"TargetID":87715,"Directional":false}]},{"ID":809,"SourceStructureID":469,"TargetStructureID":105212,"Label":"469-105212 via Unknown from 106217 -> 106215","Type":"Unknown","Directional":false,"Links":[{"SourceID":106217,"TargetID":106215,"Directional":false}]},{"ID":810,"SourceStructureID":471,"TargetStructureID":9643,"Label":"471-9643 via Unknown from 96047 -> 96046","Type":"Unknown","Directional":false,"Links":[{"SourceID":96047,"TargetID":96046,"Directional":false}]},{"ID":811,"SourceStructureID":39530,"TargetStructureID":471,"Label":"39530-471 via Adherens from 83499 -> 83500","Type":"Adherens","Directional":false,"Links":[{"SourceID":83499,"TargetID":83500,"Directional":false}]},{"ID":812,"SourceStructureID":473,"TargetStructureID":9260,"Label":"473-9260 via Neuroglial adherens from 79543 -> 79544","Type":"Neuroglial adherens","Directional":false,"Links":[{"SourceID":79543,"TargetID":79544,"Directional":false}]},{"ID":813,"SourceStructureID":475,"TargetStructureID":4567,"Label":"475-4567 via Unknown from 133743 -> 133742","Type":"Unknown","Directional":false,"Links":[{"SourceID":133743,"TargetID":133742,"Directional":false}]},{"ID":814,"SourceStructureID":476,"TargetStructureID":476,"Label":"476-476 via Adherens from 133712 -> 8397","Type":"Adherens","Directional":false,"Links":[{"SourceID":133712,"TargetID":8397,"Directional":false}]},{"ID":815,"SourceStructureID":476,"TargetStructureID":476,"Label":"476-476 via Gap Junction from 10473 -> 10445","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10473,"TargetID":10445,"Directional":false}]},{"ID":816,"SourceStructureID":476,"TargetStructureID":476,"Label":"476-476 via Postsynapse from 2336 -> 2337","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":2336,"TargetID":2337,"Directional":false}]},{"ID":817,"SourceStructureID":476,"TargetStructureID":483,"Label":"476-483 via Adherens from 135082 -> 135081","Type":"Adherens","Directional":false,"Links":[{"SourceID":135082,"TargetID":135081,"Directional":false}]},{"ID":818,"SourceStructureID":476,"TargetStructureID":483,"Label":"476-483 via Gap Junction from 5728 -> 6726, 6733 -> 5667, 65196 -> 14974, 65204 -> 5707, 92335 -> 92336, 131479 -> 131480, 133741 -> 133740, 136295 -> 136296","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":5728,"TargetID":6726,"Directional":false},{"SourceID":6733,"TargetID":5667,"Directional":false},{"SourceID":65196,"TargetID":14974,"Directional":false},{"SourceID":65204,"TargetID":5707,"Directional":false},{"SourceID":92335,"TargetID":92336,"Directional":false},{"SourceID":131479,"TargetID":131480,"Directional":false},{"SourceID":133741,"TargetID":133740,"Directional":false},{"SourceID":136295,"TargetID":136296,"Directional":false}]},{"ID":819,"SourceStructureID":485,"TargetStructureID":476,"Label":"485-476 via Adherens from 148003 -> 148002","Type":"Adherens","Directional":false,"Links":[{"SourceID":148003,"TargetID":148002,"Directional":false}]},{"ID":820,"SourceStructureID":485,"TargetStructureID":476,"Label":"485-476 via Gap Junction from 65188 -> 2287, 134217 -> 134218","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65188,"TargetID":2287,"Directional":false},{"SourceID":134217,"TargetID":134218,"Directional":false}]},{"ID":821,"SourceStructureID":476,"TargetStructureID":514,"Label":"476-514 via Adherens from 16545 -> 16544","Type":"Adherens","Directional":false,"Links":[{"SourceID":16545,"TargetID":16544,"Directional":false}]},{"ID":822,"SourceStructureID":476,"TargetStructureID":514,"Label":"476-514 via Gap Junction from 2397 -> 515, 2439 -> 5755, 2472 -> 5047, 3219 -> 2463, 3279 -> 3320, 3344 -> 5786, 5724 -> 2239, 5754 -> 3568, 5760 -> 3546, 6170 -> 3528, 9233 -> 3331, 10628 -> 10629, 15069 -> 15068, 16543 -> 16542","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":2397,"TargetID":515,"Directional":false},{"SourceID":2439,"TargetID":5755,"Directional":false},{"SourceID":2472,"TargetID":5047,"Directional":false},{"SourceID":3219,"TargetID":2463,"Directional":false},{"SourceID":3279,"TargetID":3320,"Directional":false},{"SourceID":3344,"TargetID":5786,"Directional":false},{"SourceID":5724,"TargetID":2239,"Directional":false},{"SourceID":5754,"TargetID":3568,"Directional":false},{"SourceID":5760,"TargetID":3546,"Directional":false},{"SourceID":6170,"TargetID":3528,"Directional":false},{"SourceID":9233,"TargetID":3331,"Directional":false},{"SourceID":10628,"TargetID":10629,"Directional":false},{"SourceID":15069,"TargetID":15068,"Directional":false},{"SourceID":16543,"TargetID":16542,"Directional":false}]},{"ID":823,"SourceStructureID":476,"TargetStructureID":591,"Label":"476-591 via Adherens from 24131 -> 24130, 133685 -> 133686","Type":"Adherens","Directional":false,"Links":[{"SourceID":24131,"TargetID":24130,"Directional":false},{"SourceID":133685,"TargetID":133686,"Directional":false}]},{"ID":824,"SourceStructureID":476,"TargetStructureID":2610,"Label":"476-2610 via Gap Junction from 7025 -> 2757, 17912 -> 17911","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":7025,"TargetID":2757,"Directional":false},{"SourceID":17912,"TargetID":17911,"Directional":false}]},{"ID":825,"SourceStructureID":476,"TargetStructureID":3257,"Label":"476-3257 via Gap Junction from 3201 -> 18387, 8231 -> 8230, 8232 -> 3180, 8500 -> 4798, 14345 -> 14344, 16578 -> 3200, 16578 -> 3526, 18386 -> 18385, 65184 -> 3168","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":3201,"TargetID":18387,"Directional":false},{"SourceID":8231,"TargetID":8230,"Directional":false},{"SourceID":8232,"TargetID":3180,"Directional":false},{"SourceID":8500,"TargetID":4798,"Directional":false},{"SourceID":14345,"TargetID":14344,"Directional":false},{"SourceID":16578,"TargetID":3200,"Directional":false},{"SourceID":16578,"TargetID":3526,"Directional":false},{"SourceID":18386,"TargetID":18385,"Directional":false},{"SourceID":65184,"TargetID":3168,"Directional":false}]},{"ID":826,"SourceStructureID":3679,"TargetStructureID":476,"Label":"3679-476 via Gap Junction from 5051 -> 2470","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":5051,"TargetID":2470,"Directional":false}]},{"ID":827,"SourceStructureID":4569,"TargetStructureID":476,"Label":"4569-476 via Gap Junction from 4747 -> 3158, 4749 -> 3160, 14963 -> 14968, 15992 -> 14971, 47501 -> 5666, 52503 -> 2209, 65203 -> 5708","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":4747,"TargetID":3158,"Directional":false},{"SourceID":4749,"TargetID":3160,"Directional":false},{"SourceID":14963,"TargetID":14968,"Directional":false},{"SourceID":15992,"TargetID":14971,"Directional":false},{"SourceID":47501,"TargetID":5666,"Directional":false},{"SourceID":52503,"TargetID":2209,"Directional":false},{"SourceID":65203,"TargetID":5708,"Directional":false}]},{"ID":828,"SourceStructureID":4570,"TargetStructureID":476,"Label":"4570-476 via Gap Junction from 65185 -> 3170, 123176 -> 5712, 131478 -> 14984","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65185,"TargetID":3170,"Directional":false},{"SourceID":123176,"TargetID":5712,"Directional":false},{"SourceID":131478,"TargetID":14984,"Directional":false}]},{"ID":829,"SourceStructureID":476,"TargetStructureID":4835,"Label":"476-4835 via Gap Junction from 8395 -> 8394, 36737 -> 36736, 36740 -> 36739, 36744 -> 14962","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8395,"TargetID":8394,"Directional":false},{"SourceID":36737,"TargetID":36736,"Directional":false},{"SourceID":36740,"TargetID":36739,"Directional":false},{"SourceID":36744,"TargetID":14962,"Directional":false}]},{"ID":830,"SourceStructureID":5281,"TargetStructureID":476,"Label":"5281-476 via Adherens from 65195 -> 2228","Type":"Adherens","Directional":false,"Links":[{"SourceID":65195,"TargetID":2228,"Directional":false}]},{"ID":831,"SourceStructureID":476,"TargetStructureID":5394,"Label":"476-5394 via Adherens from 87747 -> 87746, 87749 -> 3205","Type":"Adherens","Directional":false,"Links":[{"SourceID":87747,"TargetID":87746,"Directional":false},{"SourceID":87749,"TargetID":3205,"Directional":false}]},{"ID":832,"SourceStructureID":6153,"TargetStructureID":476,"Label":"6153-476 via Gap Junction from 8433 -> 5684, 16483 -> 8420, 17355 -> 17354, 31959 -> 5676, 65198 -> 8398","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8433,"TargetID":5684,"Directional":false},{"SourceID":16483,"TargetID":8420,"Directional":false},{"SourceID":17355,"TargetID":17354,"Directional":false},{"SourceID":31959,"TargetID":5676,"Directional":false},{"SourceID":65198,"TargetID":8398,"Directional":false}]},{"ID":833,"SourceStructureID":6155,"TargetStructureID":476,"Label":"6155-476 via Gap Junction from 15608 -> 2281, 16577 -> 2279, 48315 -> 2285, 49085 -> 2283, 108247 -> 108246","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15608,"TargetID":2281,"Directional":false},{"SourceID":16577,"TargetID":2279,"Directional":false},{"SourceID":48315,"TargetID":2285,"Directional":false},{"SourceID":49085,"TargetID":2283,"Directional":false},{"SourceID":108247,"TargetID":108246,"Directional":false}]},{"ID":834,"SourceStructureID":476,"TargetStructureID":6156,"Label":"476-6156 via Adherens from 133434 -> 133435, 133482 -> 15060, 135151 -> 135150","Type":"Adherens","Directional":false,"Links":[{"SourceID":133434,"TargetID":133435,"Directional":false},{"SourceID":133482,"TargetID":15060,"Directional":false},{"SourceID":135151,"TargetID":135150,"Directional":false}]},{"ID":835,"SourceStructureID":6156,"TargetStructureID":476,"Label":"6156-476 via Gap Junction from 18011 -> 3314, 65194 -> 5726, 117560 -> 117559, 117586 -> 117587, 133202 -> 133201, 133218 -> 133217, 133220 -> 133219","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":18011,"TargetID":3314,"Directional":false},{"SourceID":65194,"TargetID":5726,"Directional":false},{"SourceID":117560,"TargetID":117559,"Directional":false},{"SourceID":117586,"TargetID":117587,"Directional":false},{"SourceID":133202,"TargetID":133201,"Directional":false},{"SourceID":133218,"TargetID":133217,"Directional":false},{"SourceID":133220,"TargetID":133219,"Directional":false}]},{"ID":836,"SourceStructureID":476,"TargetStructureID":9643,"Label":"476-9643 via Adherens from 9666 -> 9665","Type":"Adherens","Directional":false,"Links":[{"SourceID":9666,"TargetID":9665,"Directional":false}]},{"ID":837,"SourceStructureID":31960,"TargetStructureID":476,"Label":"31960-476 via Adherens from 31964 -> 5682, 31965 -> 5681","Type":"Adherens","Directional":false,"Links":[{"SourceID":31964,"TargetID":5682,"Directional":false},{"SourceID":31965,"TargetID":5681,"Directional":false}]},{"ID":838,"SourceStructureID":36276,"TargetStructureID":476,"Label":"36276-476 via Adherens from 36279 -> 2299","Type":"Adherens","Directional":false,"Links":[{"SourceID":36279,"TargetID":2299,"Directional":false}]},{"ID":839,"SourceStructureID":476,"TargetStructureID":36293,"Label":"476-36293 via Adherens from 135092 -> 135093","Type":"Adherens","Directional":false,"Links":[{"SourceID":135092,"TargetID":135093,"Directional":false}]},{"ID":840,"SourceStructureID":36512,"TargetStructureID":476,"Label":"36512-476 via Adherens from 36515 -> 2392","Type":"Adherens","Directional":false,"Links":[{"SourceID":36515,"TargetID":2392,"Directional":false}]},{"ID":841,"SourceStructureID":36650,"TargetStructureID":476,"Label":"36650-476 via Adherens from 93021 -> 93022","Type":"Adherens","Directional":false,"Links":[{"SourceID":93021,"TargetID":93022,"Directional":false}]},{"ID":842,"SourceStructureID":476,"TargetStructureID":46741,"Label":"476-46741 via Touch from 90194 -> 90193","Type":"Touch","Directional":false,"Links":[{"SourceID":90194,"TargetID":90193,"Directional":false}]},{"ID":843,"SourceStructureID":71935,"TargetStructureID":476,"Label":"71935-476 via Gap Junction from 71940 -> 71939","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71940,"TargetID":71939,"Directional":false}]},{"ID":844,"SourceStructureID":89420,"TargetStructureID":476,"Label":"89420-476 via Unknown from 89435 -> 89436","Type":"Unknown","Directional":false,"Links":[{"SourceID":89435,"TargetID":89436,"Directional":false}]},{"ID":845,"SourceStructureID":89984,"TargetStructureID":476,"Label":"89984-476 via Adherens from 90095 -> 90096","Type":"Adherens","Directional":false,"Links":[{"SourceID":90095,"TargetID":90096,"Directional":false}]},{"ID":846,"SourceStructureID":89984,"TargetStructureID":476,"Label":"89984-476 via Unknown from 90018 -> 90017, 90020 -> 90019, 90021 -> 90022, 90023 -> 90024","Type":"Unknown","Directional":false,"Links":[{"SourceID":90018,"TargetID":90017,"Directional":false},{"SourceID":90020,"TargetID":90019,"Directional":false},{"SourceID":90021,"TargetID":90022,"Directional":false},{"SourceID":90023,"TargetID":90024,"Directional":false}]},{"ID":847,"SourceStructureID":476,"TargetStructureID":97024,"Label":"476-97024 via Adherens from 97070 -> 97067, 97120 -> 97121, 97122 -> 97123","Type":"Adherens","Directional":false,"Links":[{"SourceID":97070,"TargetID":97067,"Directional":false},{"SourceID":97120,"TargetID":97121,"Directional":false},{"SourceID":97122,"TargetID":97123,"Directional":false}]},{"ID":848,"SourceStructureID":98127,"TargetStructureID":476,"Label":"98127-476 via Adherens from 98135 -> 5662","Type":"Adherens","Directional":false,"Links":[{"SourceID":98135,"TargetID":5662,"Directional":false}]},{"ID":849,"SourceStructureID":4568,"TargetStructureID":478,"Label":"4568-478 via Gap Junction from 21695 -> 21696","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":21695,"TargetID":21696,"Directional":false}]},{"ID":850,"SourceStructureID":83461,"TargetStructureID":478,"Label":"83461-478 via Gap Junction from 83468 -> 83469","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83468,"TargetID":83469,"Directional":false}]},{"ID":851,"SourceStructureID":97828,"TargetStructureID":478,"Label":"97828-478 via Unknown from 97842 -> 97843","Type":"Unknown","Directional":false,"Links":[{"SourceID":97842,"TargetID":97843,"Directional":false}]},{"ID":852,"SourceStructureID":479,"TargetStructureID":6155,"Label":"479-6155 via Unknown from 121707 -> 121706","Type":"Unknown","Directional":false,"Links":[{"SourceID":121707,"TargetID":121706,"Directional":false}]},{"ID":853,"SourceStructureID":479,"TargetStructureID":47195,"Label":"479-47195 via Gap Junction from 58753 -> 58752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58753,"TargetID":58752,"Directional":false}]},{"ID":854,"SourceStructureID":479,"TargetStructureID":121714,"Label":"479-121714 via Gap Junction from 56497 -> 121715","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56497,"TargetID":121715,"Directional":false}]},{"ID":855,"SourceStructureID":121723,"TargetStructureID":479,"Label":"121723-479 via Unknown from 121724 -> 121722","Type":"Unknown","Directional":false,"Links":[{"SourceID":121724,"TargetID":121722,"Directional":false}]},{"ID":856,"SourceStructureID":121727,"TargetStructureID":479,"Label":"121727-479 via Unknown from 121728 -> 121729","Type":"Unknown","Directional":false,"Links":[{"SourceID":121728,"TargetID":121729,"Directional":false}]},{"ID":857,"SourceStructureID":121749,"TargetStructureID":479,"Label":"121749-479 via Gap Junction from 121750 -> 121748","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121750,"TargetID":121748,"Directional":false}]},{"ID":858,"SourceStructureID":121757,"TargetStructureID":479,"Label":"121757-479 via Gap Junction from 121758 -> 115655","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121758,"TargetID":115655,"Directional":false}]},{"ID":859,"SourceStructureID":479,"TargetStructureID":121763,"Label":"479-121763 via Unknown from 121762 -> 121764","Type":"Unknown","Directional":false,"Links":[{"SourceID":121762,"TargetID":121764,"Directional":false}]},{"ID":860,"SourceStructureID":121779,"TargetStructureID":479,"Label":"121779-479 via Gap Junction from 121780 -> 121778","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121780,"TargetID":121778,"Directional":false}]},{"ID":861,"SourceStructureID":483,"TargetStructureID":483,"Label":"483-483 via Gap Junction from 134091 -> 134090","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134091,"TargetID":134090,"Directional":false}]},{"ID":862,"SourceStructureID":485,"TargetStructureID":483,"Label":"485-483 via Adherens from 101726 -> 101727","Type":"Adherens","Directional":false,"Links":[{"SourceID":101726,"TargetID":101727,"Directional":false}]},{"ID":863,"SourceStructureID":483,"TargetStructureID":485,"Label":"483-485 via Gap Junction from 50436 -> 50435, 99195 -> 99196, 101720 -> 101719","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50436,"TargetID":50435,"Directional":false},{"SourceID":99195,"TargetID":99196,"Directional":false},{"SourceID":101720,"TargetID":101719,"Directional":false}]},{"ID":864,"SourceStructureID":483,"TargetStructureID":514,"Label":"483-514 via Gap Junction from 6806 -> 3342","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":6806,"TargetID":3342,"Directional":false}]},{"ID":865,"SourceStructureID":483,"TargetStructureID":525,"Label":"483-525 via BC Conventional Synapse from 97783 -> 97782","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":97783,"TargetID":97782,"Directional":false}]},{"ID":866,"SourceStructureID":483,"TargetStructureID":1724,"Label":"483-1724 via Adherens from 101900 -> 101899","Type":"Adherens","Directional":false,"Links":[{"SourceID":101900,"TargetID":101899,"Directional":false}]},{"ID":867,"SourceStructureID":4570,"TargetStructureID":483,"Label":"4570-483 via Adherens from 136301 -> 136300","Type":"Adherens","Directional":false,"Links":[{"SourceID":136301,"TargetID":136300,"Directional":false}]},{"ID":868,"SourceStructureID":4570,"TargetStructureID":483,"Label":"4570-483 via Gap Junction from 94573 -> 94572","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94573,"TargetID":94572,"Directional":false}]},{"ID":869,"SourceStructureID":4570,"TargetStructureID":483,"Label":"4570-483 via Touch from 94588 -> 94587","Type":"Touch","Directional":false,"Links":[{"SourceID":94588,"TargetID":94587,"Directional":false}]},{"ID":870,"SourceStructureID":483,"TargetStructureID":4890,"Label":"483-4890 via Adherens from 134020 -> 134021, 134044 -> 134043","Type":"Adherens","Directional":false,"Links":[{"SourceID":134020,"TargetID":134021,"Directional":false},{"SourceID":134044,"TargetID":134043,"Directional":false}]},{"ID":871,"SourceStructureID":483,"TargetStructureID":4890,"Label":"483-4890 via Unknown from 134072 -> 134073","Type":"Unknown","Directional":false,"Links":[{"SourceID":134072,"TargetID":134073,"Directional":false}]},{"ID":872,"SourceStructureID":483,"TargetStructureID":5117,"Label":"483-5117 via Adherens from 71280 -> 71278","Type":"Adherens","Directional":false,"Links":[{"SourceID":71280,"TargetID":71278,"Directional":false}]},{"ID":873,"SourceStructureID":5487,"TargetStructureID":483,"Label":"5487-483 via Unknown from 134070 -> 134071","Type":"Unknown","Directional":false,"Links":[{"SourceID":134070,"TargetID":134071,"Directional":false}]},{"ID":874,"SourceStructureID":483,"TargetStructureID":6073,"Label":"483-6073 via Adherens from 103380 -> 103379","Type":"Adherens","Directional":false,"Links":[{"SourceID":103380,"TargetID":103379,"Directional":false}]},{"ID":875,"SourceStructureID":483,"TargetStructureID":6153,"Label":"483-6153 via Gap Junction from 8426 -> 8425, 20338 -> 20339, 94708 -> 94709, 94742 -> 94743","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8426,"TargetID":8425,"Directional":false},{"SourceID":20338,"TargetID":20339,"Directional":false},{"SourceID":94708,"TargetID":94709,"Directional":false},{"SourceID":94742,"TargetID":94743,"Directional":false}]},{"ID":876,"SourceStructureID":6997,"TargetStructureID":483,"Label":"6997-483 via Adherens from 22142 -> 81486","Type":"Adherens","Directional":false,"Links":[{"SourceID":22142,"TargetID":81486,"Directional":false}]},{"ID":877,"SourceStructureID":6997,"TargetStructureID":483,"Label":"6997-483 via Gap Junction from 97784 -> 97785","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97784,"TargetID":97785,"Directional":false}]},{"ID":878,"SourceStructureID":18282,"TargetStructureID":483,"Label":"18282-483 via Adherens from 102475 -> 20352","Type":"Adherens","Directional":false,"Links":[{"SourceID":102475,"TargetID":20352,"Directional":false}]},{"ID":879,"SourceStructureID":483,"TargetStructureID":34601,"Label":"483-34601 via Gap Junction from 60640 -> 60639","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60640,"TargetID":60639,"Directional":false}]},{"ID":880,"SourceStructureID":40010,"TargetStructureID":483,"Label":"40010-483 via Adherens from 71350 -> 71349","Type":"Adherens","Directional":false,"Links":[{"SourceID":71350,"TargetID":71349,"Directional":false}]},{"ID":881,"SourceStructureID":49489,"TargetStructureID":483,"Label":"49489-483 via Adherens from 103714 -> 60198","Type":"Adherens","Directional":false,"Links":[{"SourceID":103714,"TargetID":60198,"Directional":false}]},{"ID":882,"SourceStructureID":59285,"TargetStructureID":483,"Label":"59285-483 via Adherens from 59288 -> 59287","Type":"Adherens","Directional":false,"Links":[{"SourceID":59288,"TargetID":59287,"Directional":false}]},{"ID":883,"SourceStructureID":59422,"TargetStructureID":483,"Label":"59422-483 via Adherens from 134089 -> 134088","Type":"Adherens","Directional":false,"Links":[{"SourceID":134089,"TargetID":134088,"Directional":false}]},{"ID":884,"SourceStructureID":59429,"TargetStructureID":483,"Label":"59429-483 via Postsynapse from 59430 -> 59428","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":59430,"TargetID":59428,"Directional":false}]},{"ID":885,"SourceStructureID":59455,"TargetStructureID":483,"Label":"59455-483 via Adherens from 59456 -> 59454","Type":"Adherens","Directional":false,"Links":[{"SourceID":59456,"TargetID":59454,"Directional":false}]},{"ID":886,"SourceStructureID":59629,"TargetStructureID":483,"Label":"59629-483 via Adherens from 134095 -> 134094","Type":"Adherens","Directional":false,"Links":[{"SourceID":134095,"TargetID":134094,"Directional":false}]},{"ID":887,"SourceStructureID":60215,"TargetStructureID":483,"Label":"60215-483 via Adherens from 60216 -> 60214","Type":"Adherens","Directional":false,"Links":[{"SourceID":60216,"TargetID":60214,"Directional":false}]},{"ID":888,"SourceStructureID":60218,"TargetStructureID":483,"Label":"60218-483 via Adherens from 148237 -> 148238","Type":"Adherens","Directional":false,"Links":[{"SourceID":148237,"TargetID":148238,"Directional":false}]},{"ID":889,"SourceStructureID":60334,"TargetStructureID":483,"Label":"60334-483 via Adherens from 60335 -> 60333","Type":"Adherens","Directional":false,"Links":[{"SourceID":60335,"TargetID":60333,"Directional":false}]},{"ID":890,"SourceStructureID":483,"TargetStructureID":60368,"Label":"483-60368 via Adherens from 60367 -> 60369","Type":"Adherens","Directional":false,"Links":[{"SourceID":60367,"TargetID":60369,"Directional":false}]},{"ID":891,"SourceStructureID":483,"TargetStructureID":61960,"Label":"483-61960 via Adherens from 96604 -> 96605","Type":"Adherens","Directional":false,"Links":[{"SourceID":96604,"TargetID":96605,"Directional":false}]},{"ID":892,"SourceStructureID":65267,"TargetStructureID":483,"Label":"65267-483 via Unknown from 134053 -> 134052, 134068 -> 134069, 148234 -> 148235","Type":"Unknown","Directional":false,"Links":[{"SourceID":134053,"TargetID":134052,"Directional":false},{"SourceID":134068,"TargetID":134069,"Directional":false},{"SourceID":148234,"TargetID":148235,"Directional":false}]},{"ID":893,"SourceStructureID":483,"TargetStructureID":70599,"Label":"483-70599 via Unknown from 134057 -> 134056","Type":"Unknown","Directional":false,"Links":[{"SourceID":134057,"TargetID":134056,"Directional":false}]},{"ID":894,"SourceStructureID":483,"TargetStructureID":71133,"Label":"483-71133 via Adherens from 71131 -> 71134","Type":"Adherens","Directional":false,"Links":[{"SourceID":71131,"TargetID":71134,"Directional":false}]},{"ID":895,"SourceStructureID":71215,"TargetStructureID":483,"Label":"71215-483 via Unknown from 134096 -> 134097","Type":"Unknown","Directional":false,"Links":[{"SourceID":134096,"TargetID":134097,"Directional":false}]},{"ID":896,"SourceStructureID":71288,"TargetStructureID":483,"Label":"71288-483 via Adherens from 71289 -> 71287, 71292 -> 71293","Type":"Adherens","Directional":false,"Links":[{"SourceID":71289,"TargetID":71287,"Directional":false},{"SourceID":71292,"TargetID":71293,"Directional":false}]},{"ID":897,"SourceStructureID":483,"TargetStructureID":71357,"Label":"483-71357 via Unknown from 71356 -> 71358","Type":"Unknown","Directional":false,"Links":[{"SourceID":71356,"TargetID":71358,"Directional":false}]},{"ID":898,"SourceStructureID":71379,"TargetStructureID":483,"Label":"71379-483 via Gap Junction from 71380 -> 71381","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71380,"TargetID":71381,"Directional":false}]},{"ID":899,"SourceStructureID":483,"TargetStructureID":85748,"Label":"483-85748 via Adherens from 85762 -> 85763","Type":"Adherens","Directional":false,"Links":[{"SourceID":85762,"TargetID":85763,"Directional":false}]},{"ID":900,"SourceStructureID":92313,"TargetStructureID":483,"Label":"92313-483 via Gap Junction from 92314 -> 92312","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92314,"TargetID":92312,"Directional":false}]},{"ID":901,"SourceStructureID":483,"TargetStructureID":92313,"Label":"483-92313 via Unknown from 92318 -> 92317","Type":"Unknown","Directional":false,"Links":[{"SourceID":92318,"TargetID":92317,"Directional":false}]},{"ID":902,"SourceStructureID":92320,"TargetStructureID":483,"Label":"92320-483 via Unknown from 92321 -> 92319","Type":"Unknown","Directional":false,"Links":[{"SourceID":92321,"TargetID":92319,"Directional":false}]},{"ID":903,"SourceStructureID":483,"TargetStructureID":92331,"Label":"483-92331 via Gap Junction from 92330 -> 92333","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92330,"TargetID":92333,"Directional":false}]},{"ID":904,"SourceStructureID":483,"TargetStructureID":94601,"Label":"483-94601 via Unknown from 134037 -> 134038","Type":"Unknown","Directional":false,"Links":[{"SourceID":134037,"TargetID":134038,"Directional":false}]},{"ID":905,"SourceStructureID":483,"TargetStructureID":94607,"Label":"483-94607 via Gap Junction from 94606 -> 94608, 94609 -> 94605","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94606,"TargetID":94608,"Directional":false},{"SourceID":94609,"TargetID":94605,"Directional":false}]},{"ID":906,"SourceStructureID":96610,"TargetStructureID":483,"Label":"96610-483 via Adherens from 96611 -> 96609","Type":"Adherens","Directional":false,"Links":[{"SourceID":96611,"TargetID":96609,"Directional":false}]},{"ID":907,"SourceStructureID":483,"TargetStructureID":97753,"Label":"483-97753 via Unknown from 97752 -> 97756","Type":"Unknown","Directional":false,"Links":[{"SourceID":97752,"TargetID":97756,"Directional":false}]},{"ID":908,"SourceStructureID":483,"TargetStructureID":102042,"Label":"483-102042 via Adherens from 102044 -> 102043","Type":"Adherens","Directional":false,"Links":[{"SourceID":102044,"TargetID":102043,"Directional":false}]},{"ID":909,"SourceStructureID":102042,"TargetStructureID":483,"Label":"102042-483 via Gap Junction from 102047 -> 94563, 102049 -> 102048","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":102047,"TargetID":94563,"Directional":false},{"SourceID":102049,"TargetID":102048,"Directional":false}]},{"ID":910,"SourceStructureID":483,"TargetStructureID":102194,"Label":"483-102194 via Unknown from 134004 -> 134005","Type":"Unknown","Directional":false,"Links":[{"SourceID":134004,"TargetID":134005,"Directional":false}]},{"ID":911,"SourceStructureID":483,"TargetStructureID":102269,"Label":"483-102269 via Unknown from 102271 -> 102270","Type":"Unknown","Directional":false,"Links":[{"SourceID":102271,"TargetID":102270,"Directional":false}]},{"ID":912,"SourceStructureID":483,"TargetStructureID":102307,"Label":"483-102307 via Unknown from 102309 -> 102308","Type":"Unknown","Directional":false,"Links":[{"SourceID":102309,"TargetID":102308,"Directional":false}]},{"ID":913,"SourceStructureID":483,"TargetStructureID":102318,"Label":"483-102318 via Adherens from 134006 -> 134007","Type":"Adherens","Directional":false,"Links":[{"SourceID":134006,"TargetID":134007,"Directional":false}]},{"ID":914,"SourceStructureID":483,"TargetStructureID":102399,"Label":"483-102399 via Unknown from 102401 -> 102402","Type":"Unknown","Directional":false,"Links":[{"SourceID":102401,"TargetID":102402,"Directional":false}]},{"ID":915,"SourceStructureID":102412,"TargetStructureID":483,"Label":"102412-483 via Unknown from 134077 -> 134078","Type":"Unknown","Directional":false,"Links":[{"SourceID":134077,"TargetID":134078,"Directional":false}]},{"ID":916,"SourceStructureID":483,"TargetStructureID":102440,"Label":"483-102440 via Unknown from 102448 -> 102447, 134081 -> 134080","Type":"Unknown","Directional":false,"Links":[{"SourceID":102448,"TargetID":102447,"Directional":false},{"SourceID":134081,"TargetID":134080,"Directional":false}]},{"ID":917,"SourceStructureID":102531,"TargetStructureID":483,"Label":"102531-483 via Unknown from 102537 -> 102536","Type":"Unknown","Directional":false,"Links":[{"SourceID":102537,"TargetID":102536,"Directional":false}]},{"ID":918,"SourceStructureID":102565,"TargetStructureID":483,"Label":"102565-483 via Adherens from 102566 -> 6712","Type":"Adherens","Directional":false,"Links":[{"SourceID":102566,"TargetID":6712,"Directional":false}]},{"ID":919,"SourceStructureID":102615,"TargetStructureID":483,"Label":"102615-483 via Adherens from 102624 -> 94565","Type":"Adherens","Directional":false,"Links":[{"SourceID":102624,"TargetID":94565,"Directional":false}]},{"ID":920,"SourceStructureID":483,"TargetStructureID":102618,"Label":"483-102618 via Unknown from 102620 -> 102619","Type":"Unknown","Directional":false,"Links":[{"SourceID":102620,"TargetID":102619,"Directional":false}]},{"ID":921,"SourceStructureID":102629,"TargetStructureID":483,"Label":"102629-483 via Unknown from 134010 -> 134009","Type":"Unknown","Directional":false,"Links":[{"SourceID":134010,"TargetID":134009,"Directional":false}]},{"ID":922,"SourceStructureID":483,"TargetStructureID":102720,"Label":"483-102720 via Unknown from 134011 -> 134012","Type":"Unknown","Directional":false,"Links":[{"SourceID":134011,"TargetID":134012,"Directional":false}]},{"ID":923,"SourceStructureID":102773,"TargetStructureID":483,"Label":"102773-483 via Adherens from 134014 -> 134013","Type":"Adherens","Directional":false,"Links":[{"SourceID":134014,"TargetID":134013,"Directional":false}]},{"ID":924,"SourceStructureID":483,"TargetStructureID":102782,"Label":"483-102782 via Unknown from 102784 -> 102783","Type":"Unknown","Directional":false,"Links":[{"SourceID":102784,"TargetID":102783,"Directional":false}]},{"ID":925,"SourceStructureID":102828,"TargetStructureID":483,"Label":"102828-483 via Unknown from 102831 -> 102830","Type":"Unknown","Directional":false,"Links":[{"SourceID":102831,"TargetID":102830,"Directional":false}]},{"ID":926,"SourceStructureID":102832,"TargetStructureID":483,"Label":"102832-483 via Adherens from 102837 -> 102836","Type":"Adherens","Directional":false,"Links":[{"SourceID":102837,"TargetID":102836,"Directional":false}]},{"ID":927,"SourceStructureID":102832,"TargetStructureID":483,"Label":"102832-483 via Unknown from 102834 -> 102835","Type":"Unknown","Directional":false,"Links":[{"SourceID":102834,"TargetID":102835,"Directional":false}]},{"ID":928,"SourceStructureID":102848,"TargetStructureID":483,"Label":"102848-483 via Adherens from 102852 -> 94569","Type":"Adherens","Directional":false,"Links":[{"SourceID":102852,"TargetID":94569,"Directional":false}]},{"ID":929,"SourceStructureID":102848,"TargetStructureID":483,"Label":"102848-483 via Unknown from 134059 -> 134058","Type":"Unknown","Directional":false,"Links":[{"SourceID":134059,"TargetID":134058,"Directional":false}]},{"ID":930,"SourceStructureID":483,"TargetStructureID":102873,"Label":"483-102873 via Unknown from 102875 -> 102874","Type":"Unknown","Directional":false,"Links":[{"SourceID":102875,"TargetID":102874,"Directional":false}]},{"ID":931,"SourceStructureID":483,"TargetStructureID":103050,"Label":"483-103050 via Unknown from 103052 -> 103051","Type":"Unknown","Directional":false,"Links":[{"SourceID":103052,"TargetID":103051,"Directional":false}]},{"ID":932,"SourceStructureID":103054,"TargetStructureID":483,"Label":"103054-483 via Adherens from 134018 -> 134017","Type":"Adherens","Directional":false,"Links":[{"SourceID":134018,"TargetID":134017,"Directional":false}]},{"ID":933,"SourceStructureID":103084,"TargetStructureID":483,"Label":"103084-483 via Adherens from 134019 -> 94585","Type":"Adherens","Directional":false,"Links":[{"SourceID":134019,"TargetID":94585,"Directional":false}]},{"ID":934,"SourceStructureID":483,"TargetStructureID":103185,"Label":"483-103185 via Unknown from 134062 -> 134063","Type":"Unknown","Directional":false,"Links":[{"SourceID":134062,"TargetID":134063,"Directional":false}]},{"ID":935,"SourceStructureID":103195,"TargetStructureID":483,"Label":"103195-483 via Adherens from 103199 -> 103198","Type":"Adherens","Directional":false,"Links":[{"SourceID":103199,"TargetID":103198,"Directional":false}]},{"ID":936,"SourceStructureID":483,"TargetStructureID":103258,"Label":"483-103258 via Adherens from 134025 -> 134026","Type":"Adherens","Directional":false,"Links":[{"SourceID":134025,"TargetID":134026,"Directional":false}]},{"ID":937,"SourceStructureID":103284,"TargetStructureID":483,"Label":"103284-483 via Gap Junction from 103285 -> 103283","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":103285,"TargetID":103283,"Directional":false}]},{"ID":938,"SourceStructureID":483,"TargetStructureID":103293,"Label":"483-103293 via Unknown from 134027 -> 134028","Type":"Unknown","Directional":false,"Links":[{"SourceID":134027,"TargetID":134028,"Directional":false}]},{"ID":939,"SourceStructureID":483,"TargetStructureID":103319,"Label":"483-103319 via Unknown from 134065 -> 134064, 148240 -> 148239","Type":"Unknown","Directional":false,"Links":[{"SourceID":134065,"TargetID":134064,"Directional":false},{"SourceID":148240,"TargetID":148239,"Directional":false}]},{"ID":940,"SourceStructureID":103324,"TargetStructureID":483,"Label":"103324-483 via Unknown from 103325 -> 103323","Type":"Unknown","Directional":false,"Links":[{"SourceID":103325,"TargetID":103323,"Directional":false}]},{"ID":941,"SourceStructureID":483,"TargetStructureID":103342,"Label":"483-103342 via Unknown from 134031 -> 134032","Type":"Unknown","Directional":false,"Links":[{"SourceID":134031,"TargetID":134032,"Directional":false}]},{"ID":942,"SourceStructureID":103356,"TargetStructureID":483,"Label":"103356-483 via Unknown from 134034 -> 134033","Type":"Unknown","Directional":false,"Links":[{"SourceID":134034,"TargetID":134033,"Directional":false}]},{"ID":943,"SourceStructureID":483,"TargetStructureID":103376,"Label":"483-103376 via Unknown from 134036 -> 134035","Type":"Unknown","Directional":false,"Links":[{"SourceID":134036,"TargetID":134035,"Directional":false}]},{"ID":944,"SourceStructureID":483,"TargetStructureID":103402,"Label":"483-103402 via Adherens from 134086 -> 134087","Type":"Adherens","Directional":false,"Links":[{"SourceID":134086,"TargetID":134087,"Directional":false}]},{"ID":945,"SourceStructureID":483,"TargetStructureID":103452,"Label":"483-103452 via Unknown from 134066 -> 134067","Type":"Unknown","Directional":false,"Links":[{"SourceID":134066,"TargetID":134067,"Directional":false}]},{"ID":946,"SourceStructureID":103498,"TargetStructureID":483,"Label":"103498-483 via Unknown from 103499 -> 97454","Type":"Unknown","Directional":false,"Links":[{"SourceID":103499,"TargetID":97454,"Directional":false}]},{"ID":947,"SourceStructureID":103534,"TargetStructureID":483,"Label":"103534-483 via Unknown from 103535 -> 97434","Type":"Unknown","Directional":false,"Links":[{"SourceID":103535,"TargetID":97434,"Directional":false}]},{"ID":948,"SourceStructureID":483,"TargetStructureID":103720,"Label":"483-103720 via Unknown from 134047 -> 134046","Type":"Unknown","Directional":false,"Links":[{"SourceID":134047,"TargetID":134046,"Directional":false}]},{"ID":949,"SourceStructureID":483,"TargetStructureID":103732,"Label":"483-103732 via Unknown from 134051 -> 134050","Type":"Unknown","Directional":false,"Links":[{"SourceID":134051,"TargetID":134050,"Directional":false}]},{"ID":950,"SourceStructureID":483,"TargetStructureID":103745,"Label":"483-103745 via Adherens from 134048 -> 134049","Type":"Adherens","Directional":false,"Links":[{"SourceID":134048,"TargetID":134049,"Directional":false}]},{"ID":951,"SourceStructureID":136790,"TargetStructureID":483,"Label":"136790-483 via Gap Junction from 136791 -> 94567","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136791,"TargetID":94567,"Directional":false}]},{"ID":952,"SourceStructureID":485,"TargetStructureID":485,"Label":"485-485 via Gap Junction from 51073 -> 51076, 94094 -> 94093, 99953 -> 46848, 100612 -> 100613, 148414 -> 148413, 148417 -> 148416","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51073,"TargetID":51076,"Directional":false},{"SourceID":94094,"TargetID":94093,"Directional":false},{"SourceID":99953,"TargetID":46848,"Directional":false},{"SourceID":100612,"TargetID":100613,"Directional":false},{"SourceID":148414,"TargetID":148413,"Directional":false},{"SourceID":148417,"TargetID":148416,"Directional":false}]},{"ID":953,"SourceStructureID":485,"TargetStructureID":514,"Label":"485-514 via Gap Junction from 49905 -> 49906, 148412 -> 148411","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49905,"TargetID":49906,"Directional":false},{"SourceID":148412,"TargetID":148411,"Directional":false}]},{"ID":954,"SourceStructureID":2610,"TargetStructureID":485,"Label":"2610-485 via Gap Junction from 94242 -> 94241, 94264 -> 94263, 148061 -> 148060","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94242,"TargetID":94241,"Directional":false},{"SourceID":94264,"TargetID":94263,"Directional":false},{"SourceID":148061,"TargetID":148060,"Directional":false}]},{"ID":955,"SourceStructureID":485,"TargetStructureID":4890,"Label":"485-4890 via Adherens from 148247 -> 148246, 148249 -> 148248","Type":"Adherens","Directional":false,"Links":[{"SourceID":148247,"TargetID":148246,"Directional":false},{"SourceID":148249,"TargetID":148248,"Directional":false}]},{"ID":956,"SourceStructureID":485,"TargetStructureID":4890,"Label":"485-4890 via Unknown from 134171 -> 134172","Type":"Unknown","Directional":false,"Links":[{"SourceID":134171,"TargetID":134172,"Directional":false}]},{"ID":957,"SourceStructureID":485,"TargetStructureID":5117,"Label":"485-5117 via Adherens from 99894 -> 99895","Type":"Adherens","Directional":false,"Links":[{"SourceID":99894,"TargetID":99895,"Directional":false}]},{"ID":958,"SourceStructureID":5575,"TargetStructureID":485,"Label":"5575-485 via Unknown from 134117 -> 134118","Type":"Unknown","Directional":false,"Links":[{"SourceID":134117,"TargetID":134118,"Directional":false}]},{"ID":959,"SourceStructureID":485,"TargetStructureID":6153,"Label":"485-6153 via Adherens from 148010 -> 148009","Type":"Adherens","Directional":false,"Links":[{"SourceID":148010,"TargetID":148009,"Directional":false}]},{"ID":960,"SourceStructureID":6153,"TargetStructureID":485,"Label":"6153-485 via Gap Junction from 94203 -> 94202, 94205 -> 94204","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94203,"TargetID":94202,"Directional":false},{"SourceID":94205,"TargetID":94204,"Directional":false}]},{"ID":961,"SourceStructureID":485,"TargetStructureID":6155,"Label":"485-6155 via Touch from 121216 -> 121217","Type":"Touch","Directional":false,"Links":[{"SourceID":121216,"TargetID":121217,"Directional":false}]},{"ID":962,"SourceStructureID":485,"TargetStructureID":6997,"Label":"485-6997 via Adherens from 136830 -> 136831","Type":"Adherens","Directional":false,"Links":[{"SourceID":136830,"TargetID":136831,"Directional":false}]},{"ID":963,"SourceStructureID":6997,"TargetStructureID":485,"Label":"6997-485 via Gap Junction from 94253 -> 94267, 148054 -> 148053","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94253,"TargetID":94267,"Directional":false},{"SourceID":148054,"TargetID":148053,"Directional":false}]},{"ID":964,"SourceStructureID":485,"TargetStructureID":18282,"Label":"485-18282 via Adherens from 120436 -> 120435, 134213 -> 134214","Type":"Adherens","Directional":false,"Links":[{"SourceID":120436,"TargetID":120435,"Directional":false},{"SourceID":134213,"TargetID":134214,"Directional":false}]},{"ID":965,"SourceStructureID":18282,"TargetStructureID":485,"Label":"18282-485 via Unknown from 134194 -> 134195","Type":"Unknown","Directional":false,"Links":[{"SourceID":134194,"TargetID":134195,"Directional":false}]},{"ID":966,"SourceStructureID":22554,"TargetStructureID":485,"Label":"22554-485 via Adherens from 99751 -> 99750","Type":"Adherens","Directional":false,"Links":[{"SourceID":99751,"TargetID":99750,"Directional":false}]},{"ID":967,"SourceStructureID":22554,"TargetStructureID":485,"Label":"22554-485 via Unknown from 94209 -> 94208","Type":"Unknown","Directional":false,"Links":[{"SourceID":94209,"TargetID":94208,"Directional":false}]},{"ID":968,"SourceStructureID":32654,"TargetStructureID":485,"Label":"32654-485 via Gap Junction from 100603 -> 100602","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":100603,"TargetID":100602,"Directional":false}]},{"ID":969,"SourceStructureID":485,"TargetStructureID":85748,"Label":"485-85748 via Unknown from 134197 -> 134198","Type":"Unknown","Directional":false,"Links":[{"SourceID":134197,"TargetID":134198,"Directional":false}]},{"ID":970,"SourceStructureID":95482,"TargetStructureID":485,"Label":"95482-485 via Adherens from 101435 -> 101436","Type":"Adherens","Directional":false,"Links":[{"SourceID":101435,"TargetID":101436,"Directional":false}]},{"ID":971,"SourceStructureID":99401,"TargetStructureID":485,"Label":"99401-485 via Adherens from 148017 -> 148016","Type":"Adherens","Directional":false,"Links":[{"SourceID":148017,"TargetID":148016,"Directional":false}]},{"ID":972,"SourceStructureID":99401,"TargetStructureID":485,"Label":"99401-485 via Gap Junction from 99402 -> 99400","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99402,"TargetID":99400,"Directional":false}]},{"ID":973,"SourceStructureID":99438,"TargetStructureID":485,"Label":"99438-485 via Adherens from 99439 -> 99437","Type":"Adherens","Directional":false,"Links":[{"SourceID":99439,"TargetID":99437,"Directional":false}]},{"ID":974,"SourceStructureID":99489,"TargetStructureID":485,"Label":"99489-485 via Unknown from 99497 -> 50883","Type":"Unknown","Directional":false,"Links":[{"SourceID":99497,"TargetID":50883,"Directional":false}]},{"ID":975,"SourceStructureID":99763,"TargetStructureID":485,"Label":"99763-485 via Unknown from 134200 -> 134199","Type":"Unknown","Directional":false,"Links":[{"SourceID":134200,"TargetID":134199,"Directional":false}]},{"ID":976,"SourceStructureID":99783,"TargetStructureID":485,"Label":"99783-485 via Adherens from 134201 -> 134202","Type":"Adherens","Directional":false,"Links":[{"SourceID":134201,"TargetID":134202,"Directional":false}]},{"ID":977,"SourceStructureID":99850,"TargetStructureID":485,"Label":"99850-485 via Adherens from 99855 -> 99856","Type":"Adherens","Directional":false,"Links":[{"SourceID":99855,"TargetID":99856,"Directional":false}]},{"ID":978,"SourceStructureID":99882,"TargetStructureID":485,"Label":"99882-485 via Adherens from 99883 -> 99881","Type":"Adherens","Directional":false,"Links":[{"SourceID":99883,"TargetID":99881,"Directional":false}]},{"ID":979,"SourceStructureID":485,"TargetStructureID":99884,"Label":"485-99884 via Unknown from 99887 -> 99886","Type":"Unknown","Directional":false,"Links":[{"SourceID":99887,"TargetID":99886,"Directional":false}]},{"ID":980,"SourceStructureID":485,"TargetStructureID":99901,"Label":"485-99901 via Unknown from 99903 -> 99902","Type":"Unknown","Directional":false,"Links":[{"SourceID":99903,"TargetID":99902,"Directional":false}]},{"ID":981,"SourceStructureID":485,"TargetStructureID":99909,"Label":"485-99909 via Adherens from 134219 -> 134220","Type":"Adherens","Directional":false,"Links":[{"SourceID":134219,"TargetID":134220,"Directional":false}]},{"ID":982,"SourceStructureID":485,"TargetStructureID":99916,"Label":"485-99916 via Unknown from 134210 -> 134209","Type":"Unknown","Directional":false,"Links":[{"SourceID":134210,"TargetID":134209,"Directional":false}]},{"ID":983,"SourceStructureID":99967,"TargetStructureID":485,"Label":"99967-485 via Unknown from 99968 -> 99966","Type":"Unknown","Directional":false,"Links":[{"SourceID":99968,"TargetID":99966,"Directional":false}]},{"ID":984,"SourceStructureID":99984,"TargetStructureID":485,"Label":"99984-485 via Gap Junction from 136792 -> 99986","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136792,"TargetID":99986,"Directional":false}]},{"ID":985,"SourceStructureID":485,"TargetStructureID":100059,"Label":"485-100059 via Unknown from 100061 -> 100060","Type":"Unknown","Directional":false,"Links":[{"SourceID":100061,"TargetID":100060,"Directional":false}]},{"ID":986,"SourceStructureID":485,"TargetStructureID":100198,"Label":"485-100198 via Adherens from 147997 -> 147998","Type":"Adherens","Directional":false,"Links":[{"SourceID":147997,"TargetID":147998,"Directional":false}]},{"ID":987,"SourceStructureID":100198,"TargetStructureID":485,"Label":"100198-485 via Gap Junction from 100204 -> 100203","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":100204,"TargetID":100203,"Directional":false}]},{"ID":988,"SourceStructureID":100205,"TargetStructureID":485,"Label":"100205-485 via Unknown from 100206 -> 50687","Type":"Unknown","Directional":false,"Links":[{"SourceID":100206,"TargetID":50687,"Directional":false}]},{"ID":989,"SourceStructureID":485,"TargetStructureID":100261,"Label":"485-100261 via Adherens from 100263 -> 100262","Type":"Adherens","Directional":false,"Links":[{"SourceID":100263,"TargetID":100262,"Directional":false}]},{"ID":990,"SourceStructureID":100345,"TargetStructureID":485,"Label":"100345-485 via Adherens from 100347 -> 51160","Type":"Adherens","Directional":false,"Links":[{"SourceID":100347,"TargetID":51160,"Directional":false}]},{"ID":991,"SourceStructureID":485,"TargetStructureID":100596,"Label":"485-100596 via Unknown from 134103 -> 134104","Type":"Unknown","Directional":false,"Links":[{"SourceID":134103,"TargetID":134104,"Directional":false}]},{"ID":992,"SourceStructureID":100733,"TargetStructureID":485,"Label":"100733-485 via Gap Junction from 100734 -> 94002","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":100734,"TargetID":94002,"Directional":false}]},{"ID":993,"SourceStructureID":485,"TargetStructureID":100895,"Label":"485-100895 via Adherens from 134115 -> 134116","Type":"Adherens","Directional":false,"Links":[{"SourceID":134115,"TargetID":134116,"Directional":false}]},{"ID":994,"SourceStructureID":100907,"TargetStructureID":485,"Label":"100907-485 via Unknown from 100908 -> 100909","Type":"Unknown","Directional":false,"Links":[{"SourceID":100908,"TargetID":100909,"Directional":false}]},{"ID":995,"SourceStructureID":485,"TargetStructureID":100942,"Label":"485-100942 via Unknown from 100944 -> 100943","Type":"Unknown","Directional":false,"Links":[{"SourceID":100944,"TargetID":100943,"Directional":false}]},{"ID":996,"SourceStructureID":100946,"TargetStructureID":485,"Label":"100946-485 via Unknown from 134106 -> 134105","Type":"Unknown","Directional":false,"Links":[{"SourceID":134106,"TargetID":134105,"Directional":false}]},{"ID":997,"SourceStructureID":485,"TargetStructureID":100960,"Label":"485-100960 via Adherens from 134108 -> 134107","Type":"Adherens","Directional":false,"Links":[{"SourceID":134108,"TargetID":134107,"Directional":false}]},{"ID":998,"SourceStructureID":485,"TargetStructureID":100987,"Label":"485-100987 via Unknown from 100989 -> 100988","Type":"Unknown","Directional":false,"Links":[{"SourceID":100989,"TargetID":100988,"Directional":false}]},{"ID":999,"SourceStructureID":485,"TargetStructureID":100990,"Label":"485-100990 via Unknown from 134109 -> 134110","Type":"Unknown","Directional":false,"Links":[{"SourceID":134109,"TargetID":134110,"Directional":false}]},{"ID":1000,"SourceStructureID":485,"TargetStructureID":101007,"Label":"485-101007 via Unknown from 134112 -> 134111","Type":"Unknown","Directional":false,"Links":[{"SourceID":134112,"TargetID":134111,"Directional":false}]},{"ID":1001,"SourceStructureID":101102,"TargetStructureID":485,"Label":"101102-485 via Unknown from 101104 -> 101106","Type":"Unknown","Directional":false,"Links":[{"SourceID":101104,"TargetID":101106,"Directional":false}]},{"ID":1002,"SourceStructureID":485,"TargetStructureID":101145,"Label":"485-101145 via Adherens from 148000 -> 147999","Type":"Adherens","Directional":false,"Links":[{"SourceID":148000,"TargetID":147999,"Directional":false}]},{"ID":1003,"SourceStructureID":485,"TargetStructureID":101180,"Label":"485-101180 via Unknown from 134215 -> 134216","Type":"Unknown","Directional":false,"Links":[{"SourceID":134215,"TargetID":134216,"Directional":false}]},{"ID":1004,"SourceStructureID":485,"TargetStructureID":101220,"Label":"485-101220 via Gap Junction from 101224 -> 101223","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":101224,"TargetID":101223,"Directional":false}]},{"ID":1005,"SourceStructureID":485,"TargetStructureID":101220,"Label":"485-101220 via Unknown from 101226 -> 101225","Type":"Unknown","Directional":false,"Links":[{"SourceID":101226,"TargetID":101225,"Directional":false}]},{"ID":1006,"SourceStructureID":101238,"TargetStructureID":485,"Label":"101238-485 via Unknown from 101245 -> 101246","Type":"Unknown","Directional":false,"Links":[{"SourceID":101245,"TargetID":101246,"Directional":false}]},{"ID":1007,"SourceStructureID":485,"TargetStructureID":101253,"Label":"485-101253 via Unknown from 101255 -> 101254","Type":"Unknown","Directional":false,"Links":[{"SourceID":101255,"TargetID":101254,"Directional":false}]},{"ID":1008,"SourceStructureID":101314,"TargetStructureID":485,"Label":"101314-485 via Adherens from 148059 -> 148058","Type":"Adherens","Directional":false,"Links":[{"SourceID":148059,"TargetID":148058,"Directional":false}]},{"ID":1009,"SourceStructureID":101423,"TargetStructureID":485,"Label":"101423-485 via Unknown from 101425 -> 101424","Type":"Unknown","Directional":false,"Links":[{"SourceID":101425,"TargetID":101424,"Directional":false}]},{"ID":1010,"SourceStructureID":485,"TargetStructureID":101486,"Label":"485-101486 via Adherens from 134174 -> 134175","Type":"Adherens","Directional":false,"Links":[{"SourceID":134174,"TargetID":134175,"Directional":false}]},{"ID":1011,"SourceStructureID":101498,"TargetStructureID":485,"Label":"101498-485 via Unknown from 134176 -> 134177","Type":"Unknown","Directional":false,"Links":[{"SourceID":134176,"TargetID":134177,"Directional":false}]},{"ID":1012,"SourceStructureID":485,"TargetStructureID":101728,"Label":"485-101728 via Gap Junction from 94361 -> 101729","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94361,"TargetID":101729,"Directional":false}]},{"ID":1013,"SourceStructureID":485,"TargetStructureID":101728,"Label":"485-101728 via Unknown from 134178 -> 134179, 134181 -> 134180","Type":"Unknown","Directional":false,"Links":[{"SourceID":134178,"TargetID":134179,"Directional":false},{"SourceID":134181,"TargetID":134180,"Directional":false}]},{"ID":1014,"SourceStructureID":485,"TargetStructureID":101751,"Label":"485-101751 via Unknown from 101763 -> 101762, 134182 -> 134183","Type":"Unknown","Directional":false,"Links":[{"SourceID":101763,"TargetID":101762,"Directional":false},{"SourceID":134182,"TargetID":134183,"Directional":false}]},{"ID":1015,"SourceStructureID":485,"TargetStructureID":101798,"Label":"485-101798 via Unknown from 134184 -> 134185","Type":"Unknown","Directional":false,"Links":[{"SourceID":134184,"TargetID":134185,"Directional":false}]},{"ID":1016,"SourceStructureID":101801,"TargetStructureID":485,"Label":"101801-485 via Unknown from 134187 -> 134186","Type":"Unknown","Directional":false,"Links":[{"SourceID":134187,"TargetID":134186,"Directional":false}]},{"ID":1017,"SourceStructureID":101845,"TargetStructureID":485,"Label":"101845-485 via Adherens from 101846 -> 101844","Type":"Adherens","Directional":false,"Links":[{"SourceID":101846,"TargetID":101844,"Directional":false}]},{"ID":1018,"SourceStructureID":101868,"TargetStructureID":485,"Label":"101868-485 via Unknown from 101869 -> 49917","Type":"Unknown","Directional":false,"Links":[{"SourceID":101869,"TargetID":49917,"Directional":false}]},{"ID":1019,"SourceStructureID":485,"TargetStructureID":101881,"Label":"485-101881 via Unknown from 101883 -> 101884","Type":"Unknown","Directional":false,"Links":[{"SourceID":101883,"TargetID":101884,"Directional":false}]},{"ID":1020,"SourceStructureID":101886,"TargetStructureID":485,"Label":"101886-485 via Unknown from 134190 -> 134191","Type":"Unknown","Directional":false,"Links":[{"SourceID":134190,"TargetID":134191,"Directional":false}]},{"ID":1021,"SourceStructureID":485,"TargetStructureID":101906,"Label":"485-101906 via Unknown from 101909 -> 101908","Type":"Unknown","Directional":false,"Links":[{"SourceID":101909,"TargetID":101908,"Directional":false}]},{"ID":1022,"SourceStructureID":485,"TargetStructureID":101920,"Label":"485-101920 via Unknown from 134193 -> 134192","Type":"Unknown","Directional":false,"Links":[{"SourceID":134193,"TargetID":134192,"Directional":false}]},{"ID":1023,"SourceStructureID":488,"TargetStructureID":488,"Label":"488-488 via Adherens from 87799 -> 87798","Type":"Adherens","Directional":false,"Links":[{"SourceID":87799,"TargetID":87798,"Directional":false}]},{"ID":1024,"SourceStructureID":488,"TargetStructureID":4850,"Label":"488-4850 via Unknown from 97816 -> 97817","Type":"Unknown","Directional":false,"Links":[{"SourceID":97816,"TargetID":97817,"Directional":false}]},{"ID":1025,"SourceStructureID":6153,"TargetStructureID":488,"Label":"6153-488 via Adherens from 87791 -> 87790","Type":"Adherens","Directional":false,"Links":[{"SourceID":87791,"TargetID":87790,"Directional":false}]},{"ID":1026,"SourceStructureID":514,"TargetStructureID":593,"Label":"514-593 via Gap Junction from 2559 -> 52461, 15894 -> 3077, 115747 -> 115746","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":2559,"TargetID":52461,"Directional":false},{"SourceID":15894,"TargetID":3077,"Directional":false},{"SourceID":115747,"TargetID":115746,"Directional":false}]},{"ID":1027,"SourceStructureID":514,"TargetStructureID":1724,"Label":"514-1724 via Gap Junction from 1004 -> 43309, 1806 -> 1803, 4016 -> 4018, 4034 -> 4035, 4122 -> 1009, 20014 -> 3972, 22606 -> 3242, 47345 -> 1447, 47377 -> 1442, 47401 -> 3072, 48675 -> 48674, 100237 -> 100238","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":1004,"TargetID":43309,"Directional":false},{"SourceID":1806,"TargetID":1803,"Directional":false},{"SourceID":4016,"TargetID":4018,"Directional":false},{"SourceID":4034,"TargetID":4035,"Directional":false},{"SourceID":4122,"TargetID":1009,"Directional":false},{"SourceID":20014,"TargetID":3972,"Directional":false},{"SourceID":22606,"TargetID":3242,"Directional":false},{"SourceID":47345,"TargetID":1447,"Directional":false},{"SourceID":47377,"TargetID":1442,"Directional":false},{"SourceID":47401,"TargetID":3072,"Directional":false},{"SourceID":48675,"TargetID":48674,"Directional":false},{"SourceID":100237,"TargetID":100238,"Directional":false}]},{"ID":1028,"SourceStructureID":514,"TargetStructureID":2610,"Label":"514-2610 via Gap Junction from 1452 -> 13805, 2511 -> 135028, 15093 -> 2793, 16540 -> 16539, 17039 -> 13793, 17051 -> 17050, 17101 -> 17072, 17102 -> 17085, 17170 -> 17169, 17223 -> 17222, 17939 -> 2885, 17976 -> 17975, 18000 -> 18001, 19055 -> 19056, 29762 -> 29761, 134993 -> 134992","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":1452,"TargetID":13805,"Directional":false},{"SourceID":2511,"TargetID":135028,"Directional":false},{"SourceID":15093,"TargetID":2793,"Directional":false},{"SourceID":16540,"TargetID":16539,"Directional":false},{"SourceID":17039,"TargetID":13793,"Directional":false},{"SourceID":17051,"TargetID":17050,"Directional":false},{"SourceID":17101,"TargetID":17072,"Directional":false},{"SourceID":17102,"TargetID":17085,"Directional":false},{"SourceID":17170,"TargetID":17169,"Directional":false},{"SourceID":17223,"TargetID":17222,"Directional":false},{"SourceID":17939,"TargetID":2885,"Directional":false},{"SourceID":17976,"TargetID":17975,"Directional":false},{"SourceID":18000,"TargetID":18001,"Directional":false},{"SourceID":19055,"TargetID":19056,"Directional":false},{"SourceID":29762,"TargetID":29761,"Directional":false},{"SourceID":134993,"TargetID":134992,"Directional":false}]},{"ID":1029,"SourceStructureID":3257,"TargetStructureID":514,"Label":"3257-514 via Gap Junction from 10860 -> 10850, 16199 -> 10844","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10860,"TargetID":10850,"Directional":false},{"SourceID":16199,"TargetID":10844,"Directional":false}]},{"ID":1030,"SourceStructureID":3679,"TargetStructureID":514,"Label":"3679-514 via Adherens from 16344 -> 16343","Type":"Adherens","Directional":false,"Links":[{"SourceID":16344,"TargetID":16343,"Directional":false}]},{"ID":1031,"SourceStructureID":3679,"TargetStructureID":514,"Label":"3679-514 via Gap Junction from 5050 -> 3253, 8005 -> 3094, 10926 -> 3802, 10941 -> 5225, 11595 -> 4704, 11596 -> 4705, 13832 -> 13831, 16436 -> 16435, 16439 -> 5013, 18425 -> 10920","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":5050,"TargetID":3253,"Directional":false},{"SourceID":8005,"TargetID":3094,"Directional":false},{"SourceID":10926,"TargetID":3802,"Directional":false},{"SourceID":10941,"TargetID":5225,"Directional":false},{"SourceID":11595,"TargetID":4704,"Directional":false},{"SourceID":11596,"TargetID":4705,"Directional":false},{"SourceID":13832,"TargetID":13831,"Directional":false},{"SourceID":16436,"TargetID":16435,"Directional":false},{"SourceID":16439,"TargetID":5013,"Directional":false},{"SourceID":18425,"TargetID":10920,"Directional":false}]},{"ID":1032,"SourceStructureID":4835,"TargetStructureID":514,"Label":"4835-514 via Gap Junction from 36741 -> 14961","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36741,"TargetID":14961,"Directional":false}]},{"ID":1033,"SourceStructureID":5017,"TargetStructureID":514,"Label":"5017-514 via Adherens from 61240 -> 61239, 158799 -> 158790","Type":"Adherens","Directional":false,"Links":[{"SourceID":61240,"TargetID":61239,"Directional":false},{"SourceID":158799,"TargetID":158790,"Directional":false}]},{"ID":1034,"SourceStructureID":514,"TargetStructureID":5150,"Label":"514-5150 via Adherens from 15406 -> 15405","Type":"Adherens","Directional":false,"Links":[{"SourceID":15406,"TargetID":15405,"Directional":false}]},{"ID":1035,"SourceStructureID":514,"TargetStructureID":5279,"Label":"514-5279 via Adherens from 147957 -> 147958","Type":"Adherens","Directional":false,"Links":[{"SourceID":147957,"TargetID":147958,"Directional":false}]},{"ID":1036,"SourceStructureID":5279,"TargetStructureID":514,"Label":"5279-514 via Gap Junction from 6171 -> 1008, 92617 -> 3075","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":6171,"TargetID":1008,"Directional":false},{"SourceID":92617,"TargetID":3075,"Directional":false}]},{"ID":1037,"SourceStructureID":514,"TargetStructureID":5279,"Label":"514-5279 via Touch from 33857 -> 33856","Type":"Touch","Directional":false,"Links":[{"SourceID":33857,"TargetID":33856,"Directional":false}]},{"ID":1038,"SourceStructureID":5283,"TargetStructureID":514,"Label":"5283-514 via Gap Junction from 132182 -> 132184","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132182,"TargetID":132184,"Directional":false}]},{"ID":1039,"SourceStructureID":5303,"TargetStructureID":514,"Label":"5303-514 via Adherens from 35630 -> 35631","Type":"Adherens","Directional":false,"Links":[{"SourceID":35630,"TargetID":35631,"Directional":false}]},{"ID":1040,"SourceStructureID":5345,"TargetStructureID":514,"Label":"5345-514 via Gap Junction from 8057 -> 2599","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8057,"TargetID":2599,"Directional":false}]},{"ID":1041,"SourceStructureID":514,"TargetStructureID":5517,"Label":"514-5517 via Gap Junction from 1014 -> 49362, 24400 -> 24399, 96078 -> 96077","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":1014,"TargetID":49362,"Directional":false},{"SourceID":24400,"TargetID":24399,"Directional":false},{"SourceID":96078,"TargetID":96077,"Directional":false}]},{"ID":1042,"SourceStructureID":5609,"TargetStructureID":514,"Label":"5609-514 via Adherens from 115745 -> 115744","Type":"Adherens","Directional":false,"Links":[{"SourceID":115745,"TargetID":115744,"Directional":false}]},{"ID":1043,"SourceStructureID":514,"TargetStructureID":6117,"Label":"514-6117 via Gap Junction from 83251 -> 49180","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83251,"TargetID":49180,"Directional":false}]},{"ID":1044,"SourceStructureID":514,"TargetStructureID":6156,"Label":"514-6156 via Adherens from 133282 -> 133283, 133332 -> 133331, 133457 -> 133458, 133486 -> 133487","Type":"Adherens","Directional":false,"Links":[{"SourceID":133282,"TargetID":133283,"Directional":false},{"SourceID":133332,"TargetID":133331,"Directional":false},{"SourceID":133457,"TargetID":133458,"Directional":false},{"SourceID":133486,"TargetID":133487,"Directional":false}]},{"ID":1045,"SourceStructureID":6156,"TargetStructureID":514,"Label":"6156-514 via Gap Junction from 16403 -> 15305, 22575 -> 8874, 22598 -> 2561, 23157 -> 23156, 23159 -> 2541, 23172 -> 23171, 23249 -> 23248, 23266 -> 23267, 117530 -> 117531, 117563 -> 117564, 117610 -> 117611, 133163 -> 117347, 133243 -> 133244, 133346 -> 133345, 133382 -> 133383","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16403,"TargetID":15305,"Directional":false},{"SourceID":22575,"TargetID":8874,"Directional":false},{"SourceID":22598,"TargetID":2561,"Directional":false},{"SourceID":23157,"TargetID":23156,"Directional":false},{"SourceID":23159,"TargetID":2541,"Directional":false},{"SourceID":23172,"TargetID":23171,"Directional":false},{"SourceID":23249,"TargetID":23248,"Directional":false},{"SourceID":23266,"TargetID":23267,"Directional":false},{"SourceID":117530,"TargetID":117531,"Directional":false},{"SourceID":117563,"TargetID":117564,"Directional":false},{"SourceID":117610,"TargetID":117611,"Directional":false},{"SourceID":133163,"TargetID":117347,"Directional":false},{"SourceID":133243,"TargetID":133244,"Directional":false},{"SourceID":133346,"TargetID":133345,"Directional":false},{"SourceID":133382,"TargetID":133383,"Directional":false}]},{"ID":1046,"SourceStructureID":6169,"TargetStructureID":514,"Label":"6169-514 via Gap Junction from 9456 -> 1002, 10838 -> 1583, 11625 -> 1117, 16331 -> 549, 18161 -> 3090, 31071 -> 31069","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9456,"TargetID":1002,"Directional":false},{"SourceID":10838,"TargetID":1583,"Directional":false},{"SourceID":11625,"TargetID":1117,"Directional":false},{"SourceID":16331,"TargetID":549,"Directional":false},{"SourceID":18161,"TargetID":3090,"Directional":false},{"SourceID":31071,"TargetID":31069,"Directional":false}]},{"ID":1047,"SourceStructureID":514,"TargetStructureID":6997,"Label":"514-6997 via Gap Junction from 133247 -> 133250, 135076 -> 135077","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133247,"TargetID":133250,"Directional":false},{"SourceID":135076,"TargetID":135077,"Directional":false}]},{"ID":1048,"SourceStructureID":8037,"TargetStructureID":514,"Label":"8037-514 via Gap Junction from 10871 -> 2529, 29757 -> 29756","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10871,"TargetID":2529,"Directional":false},{"SourceID":29757,"TargetID":29756,"Directional":false}]},{"ID":1049,"SourceStructureID":8749,"TargetStructureID":514,"Label":"8749-514 via Adherens from 43457 -> 43456","Type":"Adherens","Directional":false,"Links":[{"SourceID":43457,"TargetID":43456,"Directional":false}]},{"ID":1050,"SourceStructureID":8990,"TargetStructureID":514,"Label":"8990-514 via Adherens from 32011 -> 32010","Type":"Adherens","Directional":false,"Links":[{"SourceID":32011,"TargetID":32010,"Directional":false}]},{"ID":1051,"SourceStructureID":9023,"TargetStructureID":514,"Label":"9023-514 via Adherens from 36675 -> 36674","Type":"Adherens","Directional":false,"Links":[{"SourceID":36675,"TargetID":36674,"Directional":false}]},{"ID":1052,"SourceStructureID":514,"TargetStructureID":9226,"Label":"514-9226 via Adherens from 9661 -> 9662","Type":"Adherens","Directional":false,"Links":[{"SourceID":9661,"TargetID":9662,"Directional":false}]},{"ID":1053,"SourceStructureID":514,"TargetStructureID":9693,"Label":"514-9693 via Gap Junction from 134722 -> 119837, 134994 -> 134995","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134722,"TargetID":119837,"Directional":false},{"SourceID":134994,"TargetID":134995,"Directional":false}]},{"ID":1054,"SourceStructureID":514,"TargetStructureID":25392,"Label":"514-25392 via Adherens from 25398 -> 25397","Type":"Adherens","Directional":false,"Links":[{"SourceID":25398,"TargetID":25397,"Directional":false}]},{"ID":1055,"SourceStructureID":514,"TargetStructureID":25529,"Label":"514-25529 via Adherens from 25537 -> 25536","Type":"Adherens","Directional":false,"Links":[{"SourceID":25537,"TargetID":25536,"Directional":false}]},{"ID":1056,"SourceStructureID":32371,"TargetStructureID":514,"Label":"32371-514 via Adherens from 32376 -> 1585","Type":"Adherens","Directional":false,"Links":[{"SourceID":32376,"TargetID":1585,"Directional":false}]},{"ID":1057,"SourceStructureID":514,"TargetStructureID":32719,"Label":"514-32719 via Adherens from 32723 -> 32722","Type":"Adherens","Directional":false,"Links":[{"SourceID":32723,"TargetID":32722,"Directional":false}]},{"ID":1058,"SourceStructureID":514,"TargetStructureID":40863,"Label":"514-40863 via Gap Junction from 40873 -> 40872","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40873,"TargetID":40872,"Directional":false}]},{"ID":1059,"SourceStructureID":514,"TargetStructureID":40988,"Label":"514-40988 via Adherens from 91261 -> 91262","Type":"Adherens","Directional":false,"Links":[{"SourceID":91261,"TargetID":91262,"Directional":false}]},{"ID":1060,"SourceStructureID":514,"TargetStructureID":61231,"Label":"514-61231 via Adherens from 61239 -> 61238","Type":"Adherens","Directional":false,"Links":[{"SourceID":61239,"TargetID":61238,"Directional":false}]},{"ID":1061,"SourceStructureID":68031,"TargetStructureID":514,"Label":"68031-514 via Adherens from 135100 -> 135099","Type":"Adherens","Directional":false,"Links":[{"SourceID":135100,"TargetID":135099,"Directional":false}]},{"ID":1062,"SourceStructureID":514,"TargetStructureID":77019,"Label":"514-77019 via Adherens from 77022 -> 77021","Type":"Adherens","Directional":false,"Links":[{"SourceID":77022,"TargetID":77021,"Directional":false}]},{"ID":1063,"SourceStructureID":514,"TargetStructureID":123146,"Label":"514-123146 via Adherens from 123149 -> 123148","Type":"Adherens","Directional":false,"Links":[{"SourceID":123149,"TargetID":123148,"Directional":false}]},{"ID":1064,"SourceStructureID":5303,"TargetStructureID":517,"Label":"5303-517 via Adherens from 60499 -> 60498","Type":"Adherens","Directional":false,"Links":[{"SourceID":60499,"TargetID":60498,"Directional":false}]},{"ID":1065,"SourceStructureID":25440,"TargetStructureID":517,"Label":"25440-517 via Touch from 25455 -> 25457","Type":"Touch","Directional":false,"Links":[{"SourceID":25455,"TargetID":25457,"Directional":false}]},{"ID":1066,"SourceStructureID":40951,"TargetStructureID":517,"Label":"40951-517 via Adherens from 60533 -> 60532","Type":"Adherens","Directional":false,"Links":[{"SourceID":60533,"TargetID":60532,"Directional":false}]},{"ID":1067,"SourceStructureID":518,"TargetStructureID":13855,"Label":"518-13855 via Touch from 36323 -> 36322","Type":"Touch","Directional":false,"Links":[{"SourceID":36323,"TargetID":36322,"Directional":false}]},{"ID":1068,"SourceStructureID":518,"TargetStructureID":36650,"Label":"518-36650 via Adherens from 64555 -> 64556","Type":"Adherens","Directional":false,"Links":[{"SourceID":64555,"TargetID":64556,"Directional":false}]},{"ID":1069,"SourceStructureID":25359,"TargetStructureID":519,"Label":"25359-519 via Adherens from 64489 -> 64490","Type":"Adherens","Directional":false,"Links":[{"SourceID":64489,"TargetID":64490,"Directional":false}]},{"ID":1070,"SourceStructureID":25865,"TargetStructureID":519,"Label":"25865-519 via Adherens from 64510 -> 64509","Type":"Adherens","Directional":false,"Links":[{"SourceID":64510,"TargetID":64509,"Directional":false}]},{"ID":1071,"SourceStructureID":525,"TargetStructureID":6589,"Label":"525-6589 via Unknown from 132624 -> 132623, 132705 -> 132706","Type":"Unknown","Directional":false,"Links":[{"SourceID":132624,"TargetID":132623,"Directional":false},{"SourceID":132705,"TargetID":132706,"Directional":false}]},{"ID":1072,"SourceStructureID":2610,"TargetStructureID":573,"Label":"2610-573 via Gap Junction from 2995 -> 19095, 17920 -> 17919, 17933 -> 17932, 17936 -> 17935","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":2995,"TargetID":19095,"Directional":false},{"SourceID":17920,"TargetID":17919,"Directional":false},{"SourceID":17933,"TargetID":17932,"Directional":false},{"SourceID":17936,"TargetID":17935,"Directional":false}]},{"ID":1073,"SourceStructureID":573,"TargetStructureID":5345,"Label":"573-5345 via Gap Junction from 8476 -> 8475, 11431 -> 11432","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8476,"TargetID":8475,"Directional":false},{"SourceID":11431,"TargetID":11432,"Directional":false}]},{"ID":1074,"SourceStructureID":573,"TargetStructureID":5515,"Label":"573-5515 via Gap Junction from 60113 -> 60112","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60113,"TargetID":60112,"Directional":false}]},{"ID":1075,"SourceStructureID":573,"TargetStructureID":6589,"Label":"573-6589 via Gap Junction from 132822 -> 132821","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132822,"TargetID":132821,"Directional":false}]},{"ID":1076,"SourceStructureID":9693,"TargetStructureID":573,"Label":"9693-573 via Gap Junction from 134765 -> 134766","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134765,"TargetID":134766,"Directional":false}]},{"ID":1077,"SourceStructureID":28886,"TargetStructureID":573,"Label":"28886-573 via Gap Junction from 51450 -> 47761","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51450,"TargetID":47761,"Directional":false}]},{"ID":1078,"SourceStructureID":96788,"TargetStructureID":573,"Label":"96788-573 via Unknown from 96815 -> 96814","Type":"Unknown","Directional":false,"Links":[{"SourceID":96815,"TargetID":96814,"Directional":false}]},{"ID":1079,"SourceStructureID":593,"TargetStructureID":593,"Label":"593-593 via Adherens from 135108 -> 135109","Type":"Adherens","Directional":false,"Links":[{"SourceID":135108,"TargetID":135109,"Directional":false}]},{"ID":1080,"SourceStructureID":593,"TargetStructureID":593,"Label":"593-593 via Gap Junction from 63044 -> 63043","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63044,"TargetID":63043,"Directional":false}]},{"ID":1081,"SourceStructureID":3679,"TargetStructureID":593,"Label":"3679-593 via Adherens from 135103 -> 135104","Type":"Adherens","Directional":false,"Links":[{"SourceID":135103,"TargetID":135104,"Directional":false}]},{"ID":1082,"SourceStructureID":593,"TargetStructureID":3679,"Label":"593-3679 via Gap Junction from 7715 -> 6360, 7723 -> 5187, 52475 -> 52474, 52476 -> 52473, 59594 -> 59593, 61831 -> 61832, 67238 -> 3770, 83349 -> 83348","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":7715,"TargetID":6360,"Directional":false},{"SourceID":7723,"TargetID":5187,"Directional":false},{"SourceID":52475,"TargetID":52474,"Directional":false},{"SourceID":52476,"TargetID":52473,"Directional":false},{"SourceID":59594,"TargetID":59593,"Directional":false},{"SourceID":61831,"TargetID":61832,"Directional":false},{"SourceID":67238,"TargetID":3770,"Directional":false},{"SourceID":83349,"TargetID":83348,"Directional":false}]},{"ID":1083,"SourceStructureID":593,"TargetStructureID":5279,"Label":"593-5279 via Gap Junction from 92636 -> 92635","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92636,"TargetID":92635,"Directional":false}]},{"ID":1084,"SourceStructureID":593,"TargetStructureID":5562,"Label":"593-5562 via Adherens from 133746 -> 133747","Type":"Adherens","Directional":false,"Links":[{"SourceID":133746,"TargetID":133747,"Directional":false}]},{"ID":1085,"SourceStructureID":593,"TargetStructureID":5562,"Label":"593-5562 via Gap Junction from 49434 -> 49433, 79658 -> 79659","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49434,"TargetID":49433,"Directional":false},{"SourceID":79658,"TargetID":79659,"Directional":false}]},{"ID":1086,"SourceStructureID":593,"TargetStructureID":5575,"Label":"593-5575 via Unknown from 62879 -> 62880","Type":"Unknown","Directional":false,"Links":[{"SourceID":62879,"TargetID":62880,"Directional":false}]},{"ID":1087,"SourceStructureID":593,"TargetStructureID":5649,"Label":"593-5649 via Gap Junction from 53818 -> 53826","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53818,"TargetID":53826,"Directional":false}]},{"ID":1088,"SourceStructureID":6115,"TargetStructureID":593,"Label":"6115-593 via Adherens from 131170 -> 131171","Type":"Adherens","Directional":false,"Links":[{"SourceID":131170,"TargetID":131171,"Directional":false}]},{"ID":1089,"SourceStructureID":6115,"TargetStructureID":593,"Label":"6115-593 via Gap Junction from 55890 -> 59799, 72656 -> 72657","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55890,"TargetID":59799,"Directional":false},{"SourceID":72656,"TargetID":72657,"Directional":false}]},{"ID":1090,"SourceStructureID":6997,"TargetStructureID":593,"Label":"6997-593 via Adherens from 135105 -> 135106","Type":"Adherens","Directional":false,"Links":[{"SourceID":135105,"TargetID":135106,"Directional":false}]},{"ID":1091,"SourceStructureID":6997,"TargetStructureID":593,"Label":"6997-593 via Gap Junction from 52442 -> 52441, 59747 -> 59749","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52442,"TargetID":52441,"Directional":false},{"SourceID":59747,"TargetID":59749,"Directional":false}]},{"ID":1092,"SourceStructureID":8588,"TargetStructureID":593,"Label":"8588-593 via Unknown from 83345 -> 83344","Type":"Unknown","Directional":false,"Links":[{"SourceID":83345,"TargetID":83344,"Directional":false}]},{"ID":1093,"SourceStructureID":16026,"TargetStructureID":593,"Label":"16026-593 via Adherens from 68605 -> 68603","Type":"Adherens","Directional":false,"Links":[{"SourceID":68605,"TargetID":68603,"Directional":false}]},{"ID":1094,"SourceStructureID":18282,"TargetStructureID":593,"Label":"18282-593 via Unknown from 115788 -> 115787","Type":"Unknown","Directional":false,"Links":[{"SourceID":115788,"TargetID":115787,"Directional":false}]},{"ID":1095,"SourceStructureID":593,"TargetStructureID":30477,"Label":"593-30477 via Adherens from 50448 -> 61959","Type":"Adherens","Directional":false,"Links":[{"SourceID":50448,"TargetID":61959,"Directional":false}]},{"ID":1096,"SourceStructureID":36516,"TargetStructureID":593,"Label":"36516-593 via Adherens from 67369 -> 67368","Type":"Adherens","Directional":false,"Links":[{"SourceID":67369,"TargetID":67368,"Directional":false}]},{"ID":1097,"SourceStructureID":593,"TargetStructureID":49489,"Label":"593-49489 via Adherens from 61948 -> 61947","Type":"Adherens","Directional":false,"Links":[{"SourceID":61948,"TargetID":61947,"Directional":false}]},{"ID":1098,"SourceStructureID":59096,"TargetStructureID":593,"Label":"59096-593 via Touch from 59555 -> 59554","Type":"Touch","Directional":false,"Links":[{"SourceID":59555,"TargetID":59554,"Directional":false}]},{"ID":1099,"SourceStructureID":59097,"TargetStructureID":593,"Label":"59097-593 via Touch from 59119 -> 59118","Type":"Touch","Directional":false,"Links":[{"SourceID":59119,"TargetID":59118,"Directional":false}]},{"ID":1100,"SourceStructureID":59121,"TargetStructureID":593,"Label":"59121-593 via Adherens from 59123 -> 59120","Type":"Adherens","Directional":false,"Links":[{"SourceID":59123,"TargetID":59120,"Directional":false}]},{"ID":1101,"SourceStructureID":59139,"TargetStructureID":593,"Label":"59139-593 via Adherens from 59143 -> 59142","Type":"Adherens","Directional":false,"Links":[{"SourceID":59143,"TargetID":59142,"Directional":false}]},{"ID":1102,"SourceStructureID":593,"TargetStructureID":59333,"Label":"593-59333 via Adherens from 59335 -> 59334","Type":"Adherens","Directional":false,"Links":[{"SourceID":59335,"TargetID":59334,"Directional":false}]},{"ID":1103,"SourceStructureID":593,"TargetStructureID":59333,"Label":"593-59333 via Touch from 59545 -> 59546","Type":"Touch","Directional":false,"Links":[{"SourceID":59545,"TargetID":59546,"Directional":false}]},{"ID":1104,"SourceStructureID":593,"TargetStructureID":59422,"Label":"593-59422 via Unknown from 85578 -> 85580","Type":"Unknown","Directional":false,"Links":[{"SourceID":85578,"TargetID":85580,"Directional":false}]},{"ID":1105,"SourceStructureID":61777,"TargetStructureID":593,"Label":"61777-593 via Unknown from 79442 -> 79443","Type":"Unknown","Directional":false,"Links":[{"SourceID":79442,"TargetID":79443,"Directional":false}]},{"ID":1106,"SourceStructureID":593,"TargetStructureID":61816,"Label":"593-61816 via Adherens from 68390 -> 68389, 86763 -> 86764","Type":"Adherens","Directional":false,"Links":[{"SourceID":68390,"TargetID":68389,"Directional":false},{"SourceID":86763,"TargetID":86764,"Directional":false}]},{"ID":1107,"SourceStructureID":593,"TargetStructureID":61849,"Label":"593-61849 via Unknown from 83356 -> 83355","Type":"Unknown","Directional":false,"Links":[{"SourceID":83356,"TargetID":83355,"Directional":false}]},{"ID":1108,"SourceStructureID":593,"TargetStructureID":61860,"Label":"593-61860 via Unknown from 61859 -> 61861","Type":"Unknown","Directional":false,"Links":[{"SourceID":61859,"TargetID":61861,"Directional":false}]},{"ID":1109,"SourceStructureID":61882,"TargetStructureID":593,"Label":"61882-593 via Unknown from 61884 -> 52433","Type":"Unknown","Directional":false,"Links":[{"SourceID":61884,"TargetID":52433,"Directional":false}]},{"ID":1110,"SourceStructureID":61926,"TargetStructureID":593,"Label":"61926-593 via Unknown from 115740 -> 115741","Type":"Unknown","Directional":false,"Links":[{"SourceID":115740,"TargetID":115741,"Directional":false}]},{"ID":1111,"SourceStructureID":61933,"TargetStructureID":593,"Label":"61933-593 via Adherens from 68079 -> 68080, 115700 -> 115699","Type":"Adherens","Directional":false,"Links":[{"SourceID":68079,"TargetID":68080,"Directional":false},{"SourceID":115700,"TargetID":115699,"Directional":false}]},{"ID":1112,"SourceStructureID":593,"TargetStructureID":61940,"Label":"593-61940 via Adherens from 61945 -> 61946","Type":"Adherens","Directional":false,"Links":[{"SourceID":61945,"TargetID":61946,"Directional":false}]},{"ID":1113,"SourceStructureID":593,"TargetStructureID":61965,"Label":"593-61965 via Adherens from 68417 -> 68418","Type":"Adherens","Directional":false,"Links":[{"SourceID":68417,"TargetID":68418,"Directional":false}]},{"ID":1114,"SourceStructureID":61975,"TargetStructureID":593,"Label":"61975-593 via Adherens from 61977 -> 61974","Type":"Adherens","Directional":false,"Links":[{"SourceID":61977,"TargetID":61974,"Directional":false}]},{"ID":1115,"SourceStructureID":593,"TargetStructureID":61978,"Label":"593-61978 via Adherens from 75344 -> 75343","Type":"Adherens","Directional":false,"Links":[{"SourceID":75344,"TargetID":75343,"Directional":false}]},{"ID":1116,"SourceStructureID":61982,"TargetStructureID":593,"Label":"61982-593 via Unknown from 61983 -> 61981","Type":"Unknown","Directional":false,"Links":[{"SourceID":61983,"TargetID":61981,"Directional":false}]},{"ID":1117,"SourceStructureID":593,"TargetStructureID":62896,"Label":"593-62896 via Unknown from 115759 -> 115760","Type":"Unknown","Directional":false,"Links":[{"SourceID":115759,"TargetID":115760,"Directional":false}]},{"ID":1118,"SourceStructureID":65134,"TargetStructureID":593,"Label":"65134-593 via Unknown from 65149 -> 65146","Type":"Unknown","Directional":false,"Links":[{"SourceID":65149,"TargetID":65146,"Directional":false}]},{"ID":1119,"SourceStructureID":65320,"TargetStructureID":593,"Label":"65320-593 via Adherens from 65345 -> 65344","Type":"Adherens","Directional":false,"Links":[{"SourceID":65345,"TargetID":65344,"Directional":false}]},{"ID":1120,"SourceStructureID":593,"TargetStructureID":65324,"Label":"593-65324 via Adherens from 65327 -> 65326","Type":"Adherens","Directional":false,"Links":[{"SourceID":65327,"TargetID":65326,"Directional":false}]},{"ID":1121,"SourceStructureID":65398,"TargetStructureID":593,"Label":"65398-593 via Unknown from 83579 -> 83578","Type":"Unknown","Directional":false,"Links":[{"SourceID":83579,"TargetID":83578,"Directional":false}]},{"ID":1122,"SourceStructureID":65461,"TargetStructureID":593,"Label":"65461-593 via Adherens from 69858 -> 65400","Type":"Adherens","Directional":false,"Links":[{"SourceID":69858,"TargetID":65400,"Directional":false}]},{"ID":1123,"SourceStructureID":593,"TargetStructureID":65464,"Label":"593-65464 via Adherens from 65466 -> 65465, 65574 -> 65573, 82122 -> 82121, 83586 -> 65568","Type":"Adherens","Directional":false,"Links":[{"SourceID":65466,"TargetID":65465,"Directional":false},{"SourceID":65574,"TargetID":65573,"Directional":false},{"SourceID":82122,"TargetID":82121,"Directional":false},{"SourceID":83586,"TargetID":65568,"Directional":false}]},{"ID":1124,"SourceStructureID":65536,"TargetStructureID":593,"Label":"65536-593 via Unknown from 67083 -> 67084","Type":"Unknown","Directional":false,"Links":[{"SourceID":67083,"TargetID":67084,"Directional":false}]},{"ID":1125,"SourceStructureID":65576,"TargetStructureID":593,"Label":"65576-593 via Unknown from 84269 -> 84270","Type":"Unknown","Directional":false,"Links":[{"SourceID":84269,"TargetID":84270,"Directional":false}]},{"ID":1126,"SourceStructureID":593,"TargetStructureID":66089,"Label":"593-66089 via Unknown from 115782 -> 115783, 115785 -> 115784","Type":"Unknown","Directional":false,"Links":[{"SourceID":115782,"TargetID":115783,"Directional":false},{"SourceID":115785,"TargetID":115784,"Directional":false}]},{"ID":1127,"SourceStructureID":593,"TargetStructureID":66096,"Label":"593-66096 via Adherens from 67027 -> 67026, 67029 -> 67028, 67030 -> 67031","Type":"Adherens","Directional":false,"Links":[{"SourceID":67027,"TargetID":67026,"Directional":false},{"SourceID":67029,"TargetID":67028,"Directional":false},{"SourceID":67030,"TargetID":67031,"Directional":false}]},{"ID":1128,"SourceStructureID":66096,"TargetStructureID":593,"Label":"66096-593 via Unknown from 115763 -> 115764, 135101 -> 135102","Type":"Unknown","Directional":false,"Links":[{"SourceID":115763,"TargetID":115764,"Directional":false},{"SourceID":135101,"TargetID":135102,"Directional":false}]},{"ID":1129,"SourceStructureID":593,"TargetStructureID":66299,"Label":"593-66299 via Adherens from 66326 -> 66327","Type":"Adherens","Directional":false,"Links":[{"SourceID":66326,"TargetID":66327,"Directional":false}]},{"ID":1130,"SourceStructureID":66303,"TargetStructureID":593,"Label":"66303-593 via Unknown from 84307 -> 59791","Type":"Unknown","Directional":false,"Links":[{"SourceID":84307,"TargetID":59791,"Directional":false}]},{"ID":1131,"SourceStructureID":593,"TargetStructureID":66316,"Label":"593-66316 via Adherens from 66319 -> 66318","Type":"Adherens","Directional":false,"Links":[{"SourceID":66319,"TargetID":66318,"Directional":false}]},{"ID":1132,"SourceStructureID":66401,"TargetStructureID":593,"Label":"66401-593 via Adherens from 68370 -> 68372","Type":"Adherens","Directional":false,"Links":[{"SourceID":68370,"TargetID":68372,"Directional":false}]},{"ID":1133,"SourceStructureID":66407,"TargetStructureID":593,"Label":"66407-593 via Adherens from 68378 -> 68376","Type":"Adherens","Directional":false,"Links":[{"SourceID":68378,"TargetID":68376,"Directional":false}]},{"ID":1134,"SourceStructureID":66510,"TargetStructureID":593,"Label":"66510-593 via Unknown from 84321 -> 84322","Type":"Unknown","Directional":false,"Links":[{"SourceID":84321,"TargetID":84322,"Directional":false}]},{"ID":1135,"SourceStructureID":593,"TargetStructureID":66513,"Label":"593-66513 via Unknown from 84329 -> 84328","Type":"Unknown","Directional":false,"Links":[{"SourceID":84329,"TargetID":84328,"Directional":false}]},{"ID":1136,"SourceStructureID":593,"TargetStructureID":66743,"Label":"593-66743 via Adherens from 84354 -> 84353","Type":"Adherens","Directional":false,"Links":[{"SourceID":84354,"TargetID":84353,"Directional":false}]},{"ID":1137,"SourceStructureID":593,"TargetStructureID":66754,"Label":"593-66754 via Unknown from 115753 -> 115752, 115757 -> 115756","Type":"Unknown","Directional":false,"Links":[{"SourceID":115753,"TargetID":115752,"Directional":false},{"SourceID":115757,"TargetID":115756,"Directional":false}]},{"ID":1138,"SourceStructureID":593,"TargetStructureID":66756,"Label":"593-66756 via Unknown from 115755 -> 115754","Type":"Unknown","Directional":false,"Links":[{"SourceID":115755,"TargetID":115754,"Directional":false}]},{"ID":1139,"SourceStructureID":593,"TargetStructureID":66764,"Label":"593-66764 via Adherens from 66763 -> 66765","Type":"Adherens","Directional":false,"Links":[{"SourceID":66763,"TargetID":66765,"Directional":false}]},{"ID":1140,"SourceStructureID":66768,"TargetStructureID":593,"Label":"66768-593 via Adherens from 67540 -> 67541, 67570 -> 67569, 68425 -> 68426","Type":"Adherens","Directional":false,"Links":[{"SourceID":67540,"TargetID":67541,"Directional":false},{"SourceID":67570,"TargetID":67569,"Directional":false},{"SourceID":68425,"TargetID":68426,"Directional":false}]},{"ID":1141,"SourceStructureID":66779,"TargetStructureID":593,"Label":"66779-593 via Unknown from 115770 -> 115769","Type":"Unknown","Directional":false,"Links":[{"SourceID":115770,"TargetID":115769,"Directional":false}]},{"ID":1142,"SourceStructureID":593,"TargetStructureID":66828,"Label":"593-66828 via Unknown from 83338 -> 83339","Type":"Unknown","Directional":false,"Links":[{"SourceID":83338,"TargetID":83339,"Directional":false}]},{"ID":1143,"SourceStructureID":593,"TargetStructureID":66848,"Label":"593-66848 via Adherens from 66851 -> 66850","Type":"Adherens","Directional":false,"Links":[{"SourceID":66851,"TargetID":66850,"Directional":false}]},{"ID":1144,"SourceStructureID":66852,"TargetStructureID":593,"Label":"66852-593 via Adherens from 66856 -> 66855","Type":"Adherens","Directional":false,"Links":[{"SourceID":66856,"TargetID":66855,"Directional":false}]},{"ID":1145,"SourceStructureID":593,"TargetStructureID":66888,"Label":"593-66888 via Unknown from 66892 -> 66890, 115777 -> 115776","Type":"Unknown","Directional":false,"Links":[{"SourceID":66892,"TargetID":66890,"Directional":false},{"SourceID":115777,"TargetID":115776,"Directional":false}]},{"ID":1146,"SourceStructureID":66905,"TargetStructureID":593,"Label":"66905-593 via Adherens from 82123 -> 82124","Type":"Adherens","Directional":false,"Links":[{"SourceID":82123,"TargetID":82124,"Directional":false}]},{"ID":1147,"SourceStructureID":66933,"TargetStructureID":593,"Label":"66933-593 via Unknown from 83342 -> 83343","Type":"Unknown","Directional":false,"Links":[{"SourceID":83342,"TargetID":83343,"Directional":false}]},{"ID":1148,"SourceStructureID":593,"TargetStructureID":66942,"Label":"593-66942 via BC Conventional Synapse from 66945 -> 66944","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":66945,"TargetID":66944,"Directional":false}]},{"ID":1149,"SourceStructureID":66958,"TargetStructureID":593,"Label":"66958-593 via Adherens from 70023 -> 66960","Type":"Adherens","Directional":false,"Links":[{"SourceID":70023,"TargetID":66960,"Directional":false}]},{"ID":1150,"SourceStructureID":593,"TargetStructureID":66976,"Label":"593-66976 via Unknown from 66982 -> 66981, 115714 -> 115715","Type":"Unknown","Directional":false,"Links":[{"SourceID":66982,"TargetID":66981,"Directional":false},{"SourceID":115714,"TargetID":115715,"Directional":false}]},{"ID":1151,"SourceStructureID":593,"TargetStructureID":67016,"Label":"593-67016 via Adherens from 67021 -> 67022","Type":"Adherens","Directional":false,"Links":[{"SourceID":67021,"TargetID":67022,"Directional":false}]},{"ID":1152,"SourceStructureID":67042,"TargetStructureID":593,"Label":"67042-593 via Adherens from 76196 -> 76197, 76465 -> 68496","Type":"Adherens","Directional":false,"Links":[{"SourceID":76196,"TargetID":76197,"Directional":false},{"SourceID":76465,"TargetID":68496,"Directional":false}]},{"ID":1153,"SourceStructureID":593,"TargetStructureID":67042,"Label":"593-67042 via Unknown from 76468 -> 76467","Type":"Unknown","Directional":false,"Links":[{"SourceID":76468,"TargetID":76467,"Directional":false}]},{"ID":1154,"SourceStructureID":593,"TargetStructureID":67090,"Label":"593-67090 via Unknown from 115766 -> 115765","Type":"Unknown","Directional":false,"Links":[{"SourceID":115766,"TargetID":115765,"Directional":false}]},{"ID":1155,"SourceStructureID":593,"TargetStructureID":67093,"Label":"593-67093 via Unknown from 83340 -> 83341","Type":"Unknown","Directional":false,"Links":[{"SourceID":83340,"TargetID":83341,"Directional":false}]},{"ID":1156,"SourceStructureID":67112,"TargetStructureID":593,"Label":"67112-593 via Unknown from 67115 -> 67116","Type":"Unknown","Directional":false,"Links":[{"SourceID":67115,"TargetID":67116,"Directional":false}]},{"ID":1157,"SourceStructureID":67121,"TargetStructureID":593,"Label":"67121-593 via Adherens from 85520 -> 85519","Type":"Adherens","Directional":false,"Links":[{"SourceID":85520,"TargetID":85519,"Directional":false}]},{"ID":1158,"SourceStructureID":593,"TargetStructureID":67161,"Label":"593-67161 via Adherens from 67170 -> 67169, 67451 -> 67450","Type":"Adherens","Directional":false,"Links":[{"SourceID":67170,"TargetID":67169,"Directional":false},{"SourceID":67451,"TargetID":67450,"Directional":false}]},{"ID":1159,"SourceStructureID":67161,"TargetStructureID":593,"Label":"67161-593 via Unknown from 67162 -> 67163","Type":"Unknown","Directional":false,"Links":[{"SourceID":67162,"TargetID":67163,"Directional":false}]},{"ID":1160,"SourceStructureID":593,"TargetStructureID":67182,"Label":"593-67182 via Adherens from 67186 -> 67185","Type":"Adherens","Directional":false,"Links":[{"SourceID":67186,"TargetID":67185,"Directional":false}]},{"ID":1161,"SourceStructureID":67190,"TargetStructureID":593,"Label":"67190-593 via Unknown from 67191 -> 67189","Type":"Unknown","Directional":false,"Links":[{"SourceID":67191,"TargetID":67189,"Directional":false}]},{"ID":1162,"SourceStructureID":593,"TargetStructureID":67230,"Label":"593-67230 via Unknown from 90675 -> 90674","Type":"Unknown","Directional":false,"Links":[{"SourceID":90675,"TargetID":90674,"Directional":false}]},{"ID":1163,"SourceStructureID":593,"TargetStructureID":67274,"Label":"593-67274 via Adherens from 67276 -> 67275","Type":"Adherens","Directional":false,"Links":[{"SourceID":67276,"TargetID":67275,"Directional":false}]},{"ID":1164,"SourceStructureID":67331,"TargetStructureID":593,"Label":"67331-593 via Postsynapse from 67332 -> 67333","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":67332,"TargetID":67333,"Directional":false}]},{"ID":1165,"SourceStructureID":593,"TargetStructureID":67337,"Label":"593-67337 via Adherens from 68376 -> 68375","Type":"Adherens","Directional":false,"Links":[{"SourceID":68376,"TargetID":68375,"Directional":false}]},{"ID":1166,"SourceStructureID":67337,"TargetStructureID":593,"Label":"67337-593 via Unknown from 115781 -> 115780","Type":"Unknown","Directional":false,"Links":[{"SourceID":115781,"TargetID":115780,"Directional":false}]},{"ID":1167,"SourceStructureID":67354,"TargetStructureID":593,"Label":"67354-593 via Unknown from 67355 -> 63026, 85189 -> 85190","Type":"Unknown","Directional":false,"Links":[{"SourceID":67355,"TargetID":63026,"Directional":false},{"SourceID":85189,"TargetID":85190,"Directional":false}]},{"ID":1168,"SourceStructureID":593,"TargetStructureID":67364,"Label":"593-67364 via Unknown from 115768 -> 115767","Type":"Unknown","Directional":false,"Links":[{"SourceID":115768,"TargetID":115767,"Directional":false}]},{"ID":1169,"SourceStructureID":593,"TargetStructureID":67404,"Label":"593-67404 via Unknown from 83346 -> 83347","Type":"Unknown","Directional":false,"Links":[{"SourceID":83346,"TargetID":83347,"Directional":false}]},{"ID":1170,"SourceStructureID":593,"TargetStructureID":67406,"Label":"593-67406 via Adherens from 135097 -> 135098","Type":"Adherens","Directional":false,"Links":[{"SourceID":135097,"TargetID":135098,"Directional":false}]},{"ID":1171,"SourceStructureID":67423,"TargetStructureID":593,"Label":"67423-593 via Adherens from 115735 -> 115734","Type":"Adherens","Directional":false,"Links":[{"SourceID":115735,"TargetID":115734,"Directional":false}]},{"ID":1172,"SourceStructureID":67425,"TargetStructureID":593,"Label":"67425-593 via Adherens from 67426 -> 67427","Type":"Adherens","Directional":false,"Links":[{"SourceID":67426,"TargetID":67427,"Directional":false}]},{"ID":1173,"SourceStructureID":67444,"TargetStructureID":593,"Label":"67444-593 via Unknown from 86530 -> 86529","Type":"Unknown","Directional":false,"Links":[{"SourceID":86530,"TargetID":86529,"Directional":false}]},{"ID":1174,"SourceStructureID":67502,"TargetStructureID":593,"Label":"67502-593 via Unknown from 86740 -> 86739","Type":"Unknown","Directional":false,"Links":[{"SourceID":86740,"TargetID":86739,"Directional":false}]},{"ID":1175,"SourceStructureID":593,"TargetStructureID":67504,"Label":"593-67504 via Unknown from 63036 -> 67505","Type":"Unknown","Directional":false,"Links":[{"SourceID":63036,"TargetID":67505,"Directional":false}]},{"ID":1176,"SourceStructureID":67572,"TargetStructureID":593,"Label":"67572-593 via Unknown from 85225 -> 85224","Type":"Unknown","Directional":false,"Links":[{"SourceID":85225,"TargetID":85224,"Directional":false}]},{"ID":1177,"SourceStructureID":67661,"TargetStructureID":593,"Label":"67661-593 via Unknown from 67662 -> 63037","Type":"Unknown","Directional":false,"Links":[{"SourceID":67662,"TargetID":63037,"Directional":false}]},{"ID":1178,"SourceStructureID":593,"TargetStructureID":67756,"Label":"593-67756 via Adherens from 67966 -> 67965, 68510 -> 68509","Type":"Adherens","Directional":false,"Links":[{"SourceID":67966,"TargetID":67965,"Directional":false},{"SourceID":68510,"TargetID":68509,"Directional":false}]},{"ID":1179,"SourceStructureID":593,"TargetStructureID":67796,"Label":"593-67796 via Unknown from 115771 -> 115772","Type":"Unknown","Directional":false,"Links":[{"SourceID":115771,"TargetID":115772,"Directional":false}]},{"ID":1180,"SourceStructureID":67815,"TargetStructureID":593,"Label":"67815-593 via Adherens from 67825 -> 67826","Type":"Adherens","Directional":false,"Links":[{"SourceID":67825,"TargetID":67826,"Directional":false}]},{"ID":1181,"SourceStructureID":593,"TargetStructureID":67815,"Label":"593-67815 via Unknown from 87251 -> 87252","Type":"Unknown","Directional":false,"Links":[{"SourceID":87251,"TargetID":87252,"Directional":false}]},{"ID":1182,"SourceStructureID":67823,"TargetStructureID":593,"Label":"67823-593 via Adherens from 82395 -> 82394","Type":"Adherens","Directional":false,"Links":[{"SourceID":82395,"TargetID":82394,"Directional":false}]},{"ID":1183,"SourceStructureID":67871,"TargetStructureID":593,"Label":"67871-593 via Postsynapse from 68019 -> 68018","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":68019,"TargetID":68018,"Directional":false}]},{"ID":1184,"SourceStructureID":593,"TargetStructureID":67886,"Label":"593-67886 via Adherens from 67888 -> 67887","Type":"Adherens","Directional":false,"Links":[{"SourceID":67888,"TargetID":67887,"Directional":false}]},{"ID":1185,"SourceStructureID":67894,"TargetStructureID":593,"Label":"67894-593 via Adherens from 67898 -> 67899","Type":"Adherens","Directional":false,"Links":[{"SourceID":67898,"TargetID":67899,"Directional":false}]},{"ID":1186,"SourceStructureID":67932,"TargetStructureID":593,"Label":"67932-593 via Adherens from 87281 -> 87282","Type":"Adherens","Directional":false,"Links":[{"SourceID":87281,"TargetID":87282,"Directional":false}]},{"ID":1187,"SourceStructureID":67952,"TargetStructureID":593,"Label":"67952-593 via Adherens from 67953 -> 67951","Type":"Adherens","Directional":false,"Links":[{"SourceID":67953,"TargetID":67951,"Directional":false}]},{"ID":1188,"SourceStructureID":593,"TargetStructureID":67973,"Label":"593-67973 via Unknown from 67974 -> 67975","Type":"Unknown","Directional":false,"Links":[{"SourceID":67974,"TargetID":67975,"Directional":false}]},{"ID":1189,"SourceStructureID":593,"TargetStructureID":68009,"Label":"593-68009 via Adherens from 68011 -> 68010","Type":"Adherens","Directional":false,"Links":[{"SourceID":68011,"TargetID":68010,"Directional":false}]},{"ID":1190,"SourceStructureID":68059,"TargetStructureID":593,"Label":"68059-593 via Unknown from 68060 -> 68061","Type":"Unknown","Directional":false,"Links":[{"SourceID":68060,"TargetID":68061,"Directional":false}]},{"ID":1191,"SourceStructureID":593,"TargetStructureID":68072,"Label":"593-68072 via Unknown from 82256 -> 82255","Type":"Unknown","Directional":false,"Links":[{"SourceID":82256,"TargetID":82255,"Directional":false}]},{"ID":1192,"SourceStructureID":593,"TargetStructureID":68150,"Label":"593-68150 via BC Conventional Synapse from 68152 -> 68151","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":68152,"TargetID":68151,"Directional":false}]},{"ID":1193,"SourceStructureID":593,"TargetStructureID":68198,"Label":"593-68198 via Adherens from 68197 -> 68199","Type":"Adherens","Directional":false,"Links":[{"SourceID":68197,"TargetID":68199,"Directional":false}]},{"ID":1194,"SourceStructureID":68206,"TargetStructureID":593,"Label":"68206-593 via Unknown from 115775 -> 115774","Type":"Unknown","Directional":false,"Links":[{"SourceID":115775,"TargetID":115774,"Directional":false}]},{"ID":1195,"SourceStructureID":593,"TargetStructureID":68255,"Label":"593-68255 via Unknown from 52454 -> 68256","Type":"Unknown","Directional":false,"Links":[{"SourceID":52454,"TargetID":68256,"Directional":false}]},{"ID":1196,"SourceStructureID":68282,"TargetStructureID":593,"Label":"68282-593 via Adherens from 68285 -> 52447","Type":"Adherens","Directional":false,"Links":[{"SourceID":68285,"TargetID":52447,"Directional":false}]},{"ID":1197,"SourceStructureID":68353,"TargetStructureID":593,"Label":"68353-593 via Unknown from 68354 -> 68352","Type":"Unknown","Directional":false,"Links":[{"SourceID":68354,"TargetID":68352,"Directional":false}]},{"ID":1198,"SourceStructureID":68461,"TargetStructureID":593,"Label":"68461-593 via Unknown from 68462 -> 63029","Type":"Unknown","Directional":false,"Links":[{"SourceID":68462,"TargetID":63029,"Directional":false}]},{"ID":1199,"SourceStructureID":68497,"TargetStructureID":593,"Label":"68497-593 via Adherens from 79303 -> 79304","Type":"Adherens","Directional":false,"Links":[{"SourceID":79303,"TargetID":79304,"Directional":false}]},{"ID":1200,"SourceStructureID":593,"TargetStructureID":68506,"Label":"593-68506 via Unknown from 68508 -> 68507","Type":"Unknown","Directional":false,"Links":[{"SourceID":68508,"TargetID":68507,"Directional":false}]},{"ID":1201,"SourceStructureID":593,"TargetStructureID":68531,"Label":"593-68531 via BC Conventional Synapse from 63045 -> 68532","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":63045,"TargetID":68532,"Directional":false}]},{"ID":1202,"SourceStructureID":593,"TargetStructureID":68548,"Label":"593-68548 via Adherens from 67699 -> 73569","Type":"Adherens","Directional":false,"Links":[{"SourceID":67699,"TargetID":73569,"Directional":false}]},{"ID":1203,"SourceStructureID":593,"TargetStructureID":68550,"Label":"593-68550 via Unknown from 63046 -> 68551","Type":"Unknown","Directional":false,"Links":[{"SourceID":63046,"TargetID":68551,"Directional":false}]},{"ID":1204,"SourceStructureID":593,"TargetStructureID":68667,"Label":"593-68667 via Unknown from 86534 -> 86533","Type":"Unknown","Directional":false,"Links":[{"SourceID":86534,"TargetID":86533,"Directional":false}]},{"ID":1205,"SourceStructureID":69200,"TargetStructureID":593,"Label":"69200-593 via Unknown from 86557 -> 86556","Type":"Unknown","Directional":false,"Links":[{"SourceID":86557,"TargetID":86556,"Directional":false}]},{"ID":1206,"SourceStructureID":69382,"TargetStructureID":593,"Label":"69382-593 via Unknown from 85226 -> 85228","Type":"Unknown","Directional":false,"Links":[{"SourceID":85226,"TargetID":85228,"Directional":false}]},{"ID":1207,"SourceStructureID":83352,"TargetStructureID":593,"Label":"83352-593 via Unknown from 83353 -> 83354","Type":"Unknown","Directional":false,"Links":[{"SourceID":83353,"TargetID":83354,"Directional":false}]},{"ID":1208,"SourceStructureID":593,"TargetStructureID":83362,"Label":"593-83362 via Unknown from 83363 -> 83364","Type":"Unknown","Directional":false,"Links":[{"SourceID":83363,"TargetID":83364,"Directional":false}]},{"ID":1209,"SourceStructureID":83443,"TargetStructureID":593,"Label":"83443-593 via Adherens from 86378 -> 67236","Type":"Adherens","Directional":false,"Links":[{"SourceID":86378,"TargetID":67236,"Directional":false}]},{"ID":1210,"SourceStructureID":593,"TargetStructureID":83470,"Label":"593-83470 via Unknown from 83472 -> 83471","Type":"Unknown","Directional":false,"Links":[{"SourceID":83472,"TargetID":83471,"Directional":false}]},{"ID":1211,"SourceStructureID":593,"TargetStructureID":83476,"Label":"593-83476 via Unknown from 83479 -> 83480","Type":"Unknown","Directional":false,"Links":[{"SourceID":83479,"TargetID":83480,"Directional":false}]},{"ID":1212,"SourceStructureID":593,"TargetStructureID":83547,"Label":"593-83547 via Unknown from 83548 -> 83549","Type":"Unknown","Directional":false,"Links":[{"SourceID":83548,"TargetID":83549,"Directional":false}]},{"ID":1213,"SourceStructureID":84127,"TargetStructureID":593,"Label":"84127-593 via Unknown from 84584 -> 84583","Type":"Unknown","Directional":false,"Links":[{"SourceID":84584,"TargetID":84583,"Directional":false}]},{"ID":1214,"SourceStructureID":84260,"TargetStructureID":593,"Label":"84260-593 via Unknown from 84264 -> 52746","Type":"Unknown","Directional":false,"Links":[{"SourceID":84264,"TargetID":52746,"Directional":false}]},{"ID":1215,"SourceStructureID":84301,"TargetStructureID":593,"Label":"84301-593 via Adherens from 84302 -> 84303","Type":"Adherens","Directional":false,"Links":[{"SourceID":84302,"TargetID":84303,"Directional":false}]},{"ID":1216,"SourceStructureID":593,"TargetStructureID":84335,"Label":"593-84335 via Unknown from 84334 -> 84338","Type":"Unknown","Directional":false,"Links":[{"SourceID":84334,"TargetID":84338,"Directional":false}]},{"ID":1217,"SourceStructureID":593,"TargetStructureID":84579,"Label":"593-84579 via Unknown from 84578 -> 84580","Type":"Unknown","Directional":false,"Links":[{"SourceID":84578,"TargetID":84580,"Directional":false}]},{"ID":1218,"SourceStructureID":593,"TargetStructureID":84587,"Label":"593-84587 via Unknown from 84588 -> 84589","Type":"Unknown","Directional":false,"Links":[{"SourceID":84588,"TargetID":84589,"Directional":false}]},{"ID":1219,"SourceStructureID":593,"TargetStructureID":84624,"Label":"593-84624 via Unknown from 84626 -> 84627","Type":"Unknown","Directional":false,"Links":[{"SourceID":84626,"TargetID":84627,"Directional":false}]},{"ID":1220,"SourceStructureID":593,"TargetStructureID":85210,"Label":"593-85210 via Unknown from 85209 -> 85218","Type":"Unknown","Directional":false,"Links":[{"SourceID":85209,"TargetID":85218,"Directional":false}]},{"ID":1221,"SourceStructureID":85359,"TargetStructureID":593,"Label":"85359-593 via Unknown from 85360 -> 85361","Type":"Unknown","Directional":false,"Links":[{"SourceID":85360,"TargetID":85361,"Directional":false}]},{"ID":1222,"SourceStructureID":85501,"TargetStructureID":593,"Label":"85501-593 via Unknown from 85502 -> 85503","Type":"Unknown","Directional":false,"Links":[{"SourceID":85502,"TargetID":85503,"Directional":false}]},{"ID":1223,"SourceStructureID":85510,"TargetStructureID":593,"Label":"85510-593 via Unknown from 85532 -> 85531","Type":"Unknown","Directional":false,"Links":[{"SourceID":85532,"TargetID":85531,"Directional":false}]},{"ID":1224,"SourceStructureID":85565,"TargetStructureID":593,"Label":"85565-593 via Unknown from 85567 -> 85568","Type":"Unknown","Directional":false,"Links":[{"SourceID":85567,"TargetID":85568,"Directional":false}]},{"ID":1225,"SourceStructureID":593,"TargetStructureID":85571,"Label":"593-85571 via Adherens from 85573 -> 85574","Type":"Adherens","Directional":false,"Links":[{"SourceID":85573,"TargetID":85574,"Directional":false}]},{"ID":1226,"SourceStructureID":593,"TargetStructureID":86535,"Label":"593-86535 via Unknown from 86536 -> 86537","Type":"Unknown","Directional":false,"Links":[{"SourceID":86536,"TargetID":86537,"Directional":false}]},{"ID":1227,"SourceStructureID":86538,"TargetStructureID":593,"Label":"86538-593 via Unknown from 86542 -> 86543","Type":"Unknown","Directional":false,"Links":[{"SourceID":86542,"TargetID":86543,"Directional":false}]},{"ID":1228,"SourceStructureID":86539,"TargetStructureID":593,"Label":"86539-593 via Unknown from 86540 -> 86541","Type":"Unknown","Directional":false,"Links":[{"SourceID":86540,"TargetID":86541,"Directional":false}]},{"ID":1229,"SourceStructureID":86736,"TargetStructureID":593,"Label":"86736-593 via Adherens from 86737 -> 86735","Type":"Adherens","Directional":false,"Links":[{"SourceID":86737,"TargetID":86735,"Directional":false}]},{"ID":1230,"SourceStructureID":593,"TargetStructureID":86744,"Label":"593-86744 via Unknown from 86746 -> 86745","Type":"Unknown","Directional":false,"Links":[{"SourceID":86746,"TargetID":86745,"Directional":false}]},{"ID":1231,"SourceStructureID":86757,"TargetStructureID":593,"Label":"86757-593 via Unknown from 86758 -> 86759","Type":"Unknown","Directional":false,"Links":[{"SourceID":86758,"TargetID":86759,"Directional":false}]},{"ID":1232,"SourceStructureID":87217,"TargetStructureID":593,"Label":"87217-593 via Unknown from 87218 -> 87219","Type":"Unknown","Directional":false,"Links":[{"SourceID":87218,"TargetID":87219,"Directional":false}]},{"ID":1233,"SourceStructureID":87274,"TargetStructureID":593,"Label":"87274-593 via Unknown from 87276 -> 87275","Type":"Unknown","Directional":false,"Links":[{"SourceID":87276,"TargetID":87275,"Directional":false}]},{"ID":1234,"SourceStructureID":593,"TargetStructureID":115992,"Label":"593-115992 via Unknown from 120240 -> 120241","Type":"Unknown","Directional":false,"Links":[{"SourceID":120240,"TargetID":120241,"Directional":false}]},{"ID":1235,"SourceStructureID":595,"TargetStructureID":595,"Label":"595-595 via Adherens from 91257 -> 91258, 92829 -> 92830","Type":"Adherens","Directional":false,"Links":[{"SourceID":91257,"TargetID":91258,"Directional":false},{"SourceID":92829,"TargetID":92830,"Directional":false}]},{"ID":1236,"SourceStructureID":595,"TargetStructureID":595,"Label":"595-595 via Gap Junction from 125576 -> 125577, 135531 -> 135530","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125576,"TargetID":125577,"Directional":false},{"SourceID":135531,"TargetID":135530,"Directional":false}]},{"ID":1237,"SourceStructureID":606,"TargetStructureID":595,"Label":"606-595 via Unknown from 125096 -> 125095","Type":"Unknown","Directional":false,"Links":[{"SourceID":125096,"TargetID":125095,"Directional":false}]},{"ID":1238,"SourceStructureID":5528,"TargetStructureID":595,"Label":"5528-595 via Adherens from 8283 -> 8282, 91360 -> 91359, 135741 -> 135740, 135743 -> 135744, 135745 -> 135746","Type":"Adherens","Directional":false,"Links":[{"SourceID":8283,"TargetID":8282,"Directional":false},{"SourceID":91360,"TargetID":91359,"Directional":false},{"SourceID":135741,"TargetID":135740,"Directional":false},{"SourceID":135743,"TargetID":135744,"Directional":false},{"SourceID":135745,"TargetID":135746,"Directional":false}]},{"ID":1239,"SourceStructureID":595,"TargetStructureID":5528,"Label":"595-5528 via Gap Junction from 46704 -> 55016, 54872 -> 54643, 91273 -> 91272, 91361 -> 91362, 91375 -> 91520, 94739 -> 94740, 113993 -> 113992, 133948 -> 133949, 135713 -> 135712","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46704,"TargetID":55016,"Directional":false},{"SourceID":54872,"TargetID":54643,"Directional":false},{"SourceID":91273,"TargetID":91272,"Directional":false},{"SourceID":91361,"TargetID":91362,"Directional":false},{"SourceID":91375,"TargetID":91520,"Directional":false},{"SourceID":94739,"TargetID":94740,"Directional":false},{"SourceID":113993,"TargetID":113992,"Directional":false},{"SourceID":133948,"TargetID":133949,"Directional":false},{"SourceID":135713,"TargetID":135712,"Directional":false}]},{"ID":1240,"SourceStructureID":5530,"TargetStructureID":595,"Label":"5530-595 via Adherens from 74852 -> 74853, 75907 -> 75906, 80469 -> 80470, 80621 -> 80620, 81025 -> 81024, 81032 -> 81031, 82340 -> 82341, 125900 -> 125899, 135554 -> 135553, 135560 -> 135559, 135593 -> 135594","Type":"Adherens","Directional":false,"Links":[{"SourceID":74852,"TargetID":74853,"Directional":false},{"SourceID":75907,"TargetID":75906,"Directional":false},{"SourceID":80469,"TargetID":80470,"Directional":false},{"SourceID":80621,"TargetID":80620,"Directional":false},{"SourceID":81025,"TargetID":81024,"Directional":false},{"SourceID":81032,"TargetID":81031,"Directional":false},{"SourceID":82340,"TargetID":82341,"Directional":false},{"SourceID":125900,"TargetID":125899,"Directional":false},{"SourceID":135554,"TargetID":135553,"Directional":false},{"SourceID":135560,"TargetID":135559,"Directional":false},{"SourceID":135593,"TargetID":135594,"Directional":false}]},{"ID":1241,"SourceStructureID":595,"TargetStructureID":5530,"Label":"595-5530 via Gap Junction from 40652 -> 40551, 46668 -> 46667, 47212 -> 47211, 74746 -> 74747, 75038 -> 75036, 76835 -> 76834, 80239 -> 80238, 80619 -> 80618, 81023 -> 81021, 81029 -> 81030, 82339 -> 75412, 125890 -> 125889, 128283 -> 128282, 133932 -> 133931, 133934 -> 133933, 133936 -> 133935, 133937 -> 133938, 133943 -> 133944, 133951 -> 133950, 133953 -> 133952, 133954 -> 133955, 133957 -> 133956, 133959 -> 133958, 133961 -> 133960, 133963 -> 133962, 133965 -> 133964, 135723 -> 135722","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40652,"TargetID":40551,"Directional":false},{"SourceID":46668,"TargetID":46667,"Directional":false},{"SourceID":47212,"TargetID":47211,"Directional":false},{"SourceID":74746,"TargetID":74747,"Directional":false},{"SourceID":75038,"TargetID":75036,"Directional":false},{"SourceID":76835,"TargetID":76834,"Directional":false},{"SourceID":80239,"TargetID":80238,"Directional":false},{"SourceID":80619,"TargetID":80618,"Directional":false},{"SourceID":81023,"TargetID":81021,"Directional":false},{"SourceID":81029,"TargetID":81030,"Directional":false},{"SourceID":82339,"TargetID":75412,"Directional":false},{"SourceID":125890,"TargetID":125889,"Directional":false},{"SourceID":128283,"TargetID":128282,"Directional":false},{"SourceID":133932,"TargetID":133931,"Directional":false},{"SourceID":133934,"TargetID":133933,"Directional":false},{"SourceID":133936,"TargetID":133935,"Directional":false},{"SourceID":133937,"TargetID":133938,"Directional":false},{"SourceID":133943,"TargetID":133944,"Directional":false},{"SourceID":133951,"TargetID":133950,"Directional":false},{"SourceID":133953,"TargetID":133952,"Directional":false},{"SourceID":133954,"TargetID":133955,"Directional":false},{"SourceID":133957,"TargetID":133956,"Directional":false},{"SourceID":133959,"TargetID":133958,"Directional":false},{"SourceID":133961,"TargetID":133960,"Directional":false},{"SourceID":133963,"TargetID":133962,"Directional":false},{"SourceID":133965,"TargetID":133964,"Directional":false},{"SourceID":135723,"TargetID":135722,"Directional":false}]},{"ID":1242,"SourceStructureID":5531,"TargetStructureID":595,"Label":"5531-595 via Gap Junction from 91490 -> 91489","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91490,"TargetID":91489,"Directional":false}]},{"ID":1243,"SourceStructureID":6117,"TargetStructureID":595,"Label":"6117-595 via Adherens from 86348 -> 47258","Type":"Adherens","Directional":false,"Links":[{"SourceID":86348,"TargetID":47258,"Directional":false}]},{"ID":1244,"SourceStructureID":6117,"TargetStructureID":595,"Label":"6117-595 via Gap Junction from 86347 -> 47259","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":86347,"TargetID":47259,"Directional":false}]},{"ID":1245,"SourceStructureID":6129,"TargetStructureID":595,"Label":"6129-595 via Adherens from 125180 -> 125179","Type":"Adherens","Directional":false,"Links":[{"SourceID":125180,"TargetID":125179,"Directional":false}]},{"ID":1246,"SourceStructureID":7576,"TargetStructureID":595,"Label":"7576-595 via Adherens from 91399 -> 91398, 125164 -> 125163, 135728 -> 135729","Type":"Adherens","Directional":false,"Links":[{"SourceID":91399,"TargetID":91398,"Directional":false},{"SourceID":125164,"TargetID":125163,"Directional":false},{"SourceID":135728,"TargetID":135729,"Directional":false}]},{"ID":1247,"SourceStructureID":595,"TargetStructureID":7576,"Label":"595-7576 via Gap Junction from 54868 -> 54869, 54883 -> 54884, 55020 -> 55019, 133946 -> 133945, 135727 -> 135726","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54868,"TargetID":54869,"Directional":false},{"SourceID":54883,"TargetID":54884,"Directional":false},{"SourceID":55020,"TargetID":55019,"Directional":false},{"SourceID":133946,"TargetID":133945,"Directional":false},{"SourceID":135727,"TargetID":135726,"Directional":false}]},{"ID":1248,"SourceStructureID":9769,"TargetStructureID":595,"Label":"9769-595 via Unknown from 135558 -> 135557","Type":"Unknown","Directional":false,"Links":[{"SourceID":135558,"TargetID":135557,"Directional":false}]},{"ID":1249,"SourceStructureID":15796,"TargetStructureID":595,"Label":"15796-595 via Unknown from 91407 -> 91408","Type":"Unknown","Directional":false,"Links":[{"SourceID":91407,"TargetID":91408,"Directional":false}]},{"ID":1250,"SourceStructureID":21299,"TargetStructureID":595,"Label":"21299-595 via Gap Junction from 91650 -> 91649","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91650,"TargetID":91649,"Directional":false}]},{"ID":1251,"SourceStructureID":595,"TargetStructureID":51617,"Label":"595-51617 via Unknown from 125306 -> 125307","Type":"Unknown","Directional":false,"Links":[{"SourceID":125306,"TargetID":125307,"Directional":false}]},{"ID":1252,"SourceStructureID":90061,"TargetStructureID":595,"Label":"90061-595 via Adherens from 135591 -> 135592","Type":"Adherens","Directional":false,"Links":[{"SourceID":135591,"TargetID":135592,"Directional":false}]},{"ID":1253,"SourceStructureID":90891,"TargetStructureID":595,"Label":"90891-595 via Unknown from 90892 -> 90893","Type":"Unknown","Directional":false,"Links":[{"SourceID":90892,"TargetID":90893,"Directional":false}]},{"ID":1254,"SourceStructureID":90905,"TargetStructureID":595,"Label":"90905-595 via Unknown from 90907 -> 90908","Type":"Unknown","Directional":false,"Links":[{"SourceID":90907,"TargetID":90908,"Directional":false}]},{"ID":1255,"SourceStructureID":90917,"TargetStructureID":595,"Label":"90917-595 via Adherens from 91127 -> 91126","Type":"Adherens","Directional":false,"Links":[{"SourceID":91127,"TargetID":91126,"Directional":false}]},{"ID":1256,"SourceStructureID":90917,"TargetStructureID":595,"Label":"90917-595 via Gap Junction from 91124 -> 91125","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91124,"TargetID":91125,"Directional":false}]},{"ID":1257,"SourceStructureID":91132,"TargetStructureID":595,"Label":"91132-595 via Unknown from 91134 -> 91133","Type":"Unknown","Directional":false,"Links":[{"SourceID":91134,"TargetID":91133,"Directional":false}]},{"ID":1258,"SourceStructureID":595,"TargetStructureID":91138,"Label":"595-91138 via Adherens from 135735 -> 135736","Type":"Adherens","Directional":false,"Links":[{"SourceID":135735,"TargetID":135736,"Directional":false}]},{"ID":1259,"SourceStructureID":595,"TargetStructureID":91138,"Label":"595-91138 via Gap Junction from 91139 -> 91140","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91139,"TargetID":91140,"Directional":false}]},{"ID":1260,"SourceStructureID":595,"TargetStructureID":91156,"Label":"595-91156 via Unknown from 91157 -> 91158","Type":"Unknown","Directional":false,"Links":[{"SourceID":91157,"TargetID":91158,"Directional":false}]},{"ID":1261,"SourceStructureID":91178,"TargetStructureID":595,"Label":"91178-595 via Adherens from 135525 -> 135526","Type":"Adherens","Directional":false,"Links":[{"SourceID":135525,"TargetID":135526,"Directional":false}]},{"ID":1262,"SourceStructureID":595,"TargetStructureID":91178,"Label":"595-91178 via Gap Junction from 46644 -> 91179, 135527 -> 135528","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46644,"TargetID":91179,"Directional":false},{"SourceID":135527,"TargetID":135528,"Directional":false}]},{"ID":1263,"SourceStructureID":91188,"TargetStructureID":595,"Label":"91188-595 via Unknown from 91189 -> 91190","Type":"Unknown","Directional":false,"Links":[{"SourceID":91189,"TargetID":91190,"Directional":false}]},{"ID":1264,"SourceStructureID":91191,"TargetStructureID":595,"Label":"91191-595 via Gap Junction from 91193 -> 91192","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91193,"TargetID":91192,"Directional":false}]},{"ID":1265,"SourceStructureID":595,"TargetStructureID":91232,"Label":"595-91232 via Unknown from 91234 -> 91233, 92604 -> 92603","Type":"Unknown","Directional":false,"Links":[{"SourceID":91234,"TargetID":91233,"Directional":false},{"SourceID":92604,"TargetID":92603,"Directional":false}]},{"ID":1266,"SourceStructureID":91376,"TargetStructureID":595,"Label":"91376-595 via Unknown from 91377 -> 91378","Type":"Unknown","Directional":false,"Links":[{"SourceID":91377,"TargetID":91378,"Directional":false}]},{"ID":1267,"SourceStructureID":91414,"TargetStructureID":595,"Label":"91414-595 via Unknown from 91416 -> 91415","Type":"Unknown","Directional":false,"Links":[{"SourceID":91416,"TargetID":91415,"Directional":false}]},{"ID":1268,"SourceStructureID":91497,"TargetStructureID":595,"Label":"91497-595 via Unknown from 91498 -> 91499","Type":"Unknown","Directional":false,"Links":[{"SourceID":91498,"TargetID":91499,"Directional":false}]},{"ID":1269,"SourceStructureID":595,"TargetStructureID":91521,"Label":"595-91521 via Gap Junction from 91522 -> 91523","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91522,"TargetID":91523,"Directional":false}]},{"ID":1270,"SourceStructureID":96290,"TargetStructureID":595,"Label":"96290-595 via Unknown from 147408 -> 147407","Type":"Unknown","Directional":false,"Links":[{"SourceID":147408,"TargetID":147407,"Directional":false}]},{"ID":1271,"SourceStructureID":106778,"TargetStructureID":595,"Label":"106778-595 via Unknown from 125072 -> 125071","Type":"Unknown","Directional":false,"Links":[{"SourceID":125072,"TargetID":125071,"Directional":false}]},{"ID":1272,"SourceStructureID":598,"TargetStructureID":606,"Label":"598-606 via Adherens from 131144 -> 131143","Type":"Adherens","Directional":false,"Links":[{"SourceID":131144,"TargetID":131143,"Directional":false}]},{"ID":1273,"SourceStructureID":598,"TargetStructureID":606,"Label":"598-606 via Gap Junction from 50909 -> 50908","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50909,"TargetID":50908,"Directional":false}]},{"ID":1274,"SourceStructureID":598,"TargetStructureID":5396,"Label":"598-5396 via Adherens from 89483 -> 89482","Type":"Adherens","Directional":false,"Links":[{"SourceID":89483,"TargetID":89482,"Directional":false}]},{"ID":1275,"SourceStructureID":606,"TargetStructureID":5292,"Label":"606-5292 via Adherens from 51389 -> 51390","Type":"Adherens","Directional":false,"Links":[{"SourceID":51389,"TargetID":51390,"Directional":false}]},{"ID":1276,"SourceStructureID":5442,"TargetStructureID":606,"Label":"5442-606 via Adherens from 55117 -> 55116, 73982 -> 73983","Type":"Adherens","Directional":false,"Links":[{"SourceID":55117,"TargetID":55116,"Directional":false},{"SourceID":73982,"TargetID":73983,"Directional":false}]},{"ID":1277,"SourceStructureID":606,"TargetStructureID":5442,"Label":"606-5442 via Gap Junction from 48006 -> 55113, 48007 -> 55114, 48098 -> 55126","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48006,"TargetID":55113,"Directional":false},{"SourceID":48007,"TargetID":55114,"Directional":false},{"SourceID":48098,"TargetID":55126,"Directional":false}]},{"ID":1278,"SourceStructureID":5450,"TargetStructureID":606,"Label":"5450-606 via Adherens from 53877 -> 53876","Type":"Adherens","Directional":false,"Links":[{"SourceID":53877,"TargetID":53876,"Directional":false}]},{"ID":1279,"SourceStructureID":5451,"TargetStructureID":606,"Label":"5451-606 via Adherens from 54332 -> 54331, 88729 -> 88728","Type":"Adherens","Directional":false,"Links":[{"SourceID":54332,"TargetID":54331,"Directional":false},{"SourceID":88729,"TargetID":88728,"Directional":false}]},{"ID":1280,"SourceStructureID":606,"TargetStructureID":5451,"Label":"606-5451 via Gap Junction from 44310 -> 44312, 44956 -> 44960, 45214 -> 55152, 54319 -> 54318, 54329 -> 49808, 55173 -> 49621","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44310,"TargetID":44312,"Directional":false},{"SourceID":44956,"TargetID":44960,"Directional":false},{"SourceID":45214,"TargetID":55152,"Directional":false},{"SourceID":54319,"TargetID":54318,"Directional":false},{"SourceID":54329,"TargetID":49808,"Directional":false},{"SourceID":55173,"TargetID":49621,"Directional":false}]},{"ID":1281,"SourceStructureID":606,"TargetStructureID":5468,"Label":"606-5468 via Adherens from 51772 -> 51773, 51848 -> 51847","Type":"Adherens","Directional":false,"Links":[{"SourceID":51772,"TargetID":51773,"Directional":false},{"SourceID":51848,"TargetID":51847,"Directional":false}]},{"ID":1282,"SourceStructureID":606,"TargetStructureID":5481,"Label":"606-5481 via Adherens from 53380 -> 53381, 53419 -> 53420","Type":"Adherens","Directional":false,"Links":[{"SourceID":53380,"TargetID":53381,"Directional":false},{"SourceID":53419,"TargetID":53420,"Directional":false}]},{"ID":1283,"SourceStructureID":606,"TargetStructureID":5481,"Label":"606-5481 via Gap Junction from 52403 -> 52516, 52404 -> 52518, 52527 -> 52528, 53064 -> 90173, 53360 -> 53359, 53365 -> 53364, 53371 -> 53372","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52403,"TargetID":52516,"Directional":false},{"SourceID":52404,"TargetID":52518,"Directional":false},{"SourceID":52527,"TargetID":52528,"Directional":false},{"SourceID":53064,"TargetID":90173,"Directional":false},{"SourceID":53360,"TargetID":53359,"Directional":false},{"SourceID":53365,"TargetID":53364,"Directional":false},{"SourceID":53371,"TargetID":53372,"Directional":false}]},{"ID":1284,"SourceStructureID":5530,"TargetStructureID":606,"Label":"5530-606 via Adherens from 52525 -> 52524, 52529 -> 52531, 53483 -> 53482, 53525 -> 53524, 53526 -> 53527, 54030 -> 54031, 54048 -> 54049, 54050 -> 54051","Type":"Adherens","Directional":false,"Links":[{"SourceID":52525,"TargetID":52524,"Directional":false},{"SourceID":52529,"TargetID":52531,"Directional":false},{"SourceID":53483,"TargetID":53482,"Directional":false},{"SourceID":53525,"TargetID":53524,"Directional":false},{"SourceID":53526,"TargetID":53527,"Directional":false},{"SourceID":54030,"TargetID":54031,"Directional":false},{"SourceID":54048,"TargetID":54049,"Directional":false},{"SourceID":54050,"TargetID":54051,"Directional":false}]},{"ID":1285,"SourceStructureID":606,"TargetStructureID":5530,"Label":"606-5530 via Unknown from 82555 -> 80970, 82684 -> 77469, 82882 -> 81107, 82885 -> 81135, 125893 -> 125892","Type":"Unknown","Directional":false,"Links":[{"SourceID":82555,"TargetID":80970,"Directional":false},{"SourceID":82684,"TargetID":77469,"Directional":false},{"SourceID":82882,"TargetID":81107,"Directional":false},{"SourceID":82885,"TargetID":81135,"Directional":false},{"SourceID":125893,"TargetID":125892,"Directional":false}]},{"ID":1286,"SourceStructureID":606,"TargetStructureID":5541,"Label":"606-5541 via Adherens from 53711 -> 53712, 53713 -> 53714","Type":"Adherens","Directional":false,"Links":[{"SourceID":53711,"TargetID":53712,"Directional":false},{"SourceID":53713,"TargetID":53714,"Directional":false}]},{"ID":1287,"SourceStructureID":5601,"TargetStructureID":606,"Label":"5601-606 via Adherens from 54552 -> 54551, 54600 -> 54599","Type":"Adherens","Directional":false,"Links":[{"SourceID":54552,"TargetID":54551,"Directional":false},{"SourceID":54600,"TargetID":54599,"Directional":false}]},{"ID":1288,"SourceStructureID":606,"TargetStructureID":5601,"Label":"606-5601 via Unknown from 134827 -> 127147","Type":"Unknown","Directional":false,"Links":[{"SourceID":134827,"TargetID":127147,"Directional":false}]},{"ID":1289,"SourceStructureID":606,"TargetStructureID":5650,"Label":"606-5650 via Adherens from 51463 -> 51464","Type":"Adherens","Directional":false,"Links":[{"SourceID":51463,"TargetID":51464,"Directional":false}]},{"ID":1290,"SourceStructureID":606,"TargetStructureID":5729,"Label":"606-5729 via Adherens from 47225 -> 47230","Type":"Adherens","Directional":false,"Links":[{"SourceID":47225,"TargetID":47230,"Directional":false}]},{"ID":1291,"SourceStructureID":606,"TargetStructureID":5729,"Label":"606-5729 via Unknown from 111447 -> 111446","Type":"Unknown","Directional":false,"Links":[{"SourceID":111447,"TargetID":111446,"Directional":false}]},{"ID":1292,"SourceStructureID":606,"TargetStructureID":6117,"Label":"606-6117 via Adherens from 12320 -> 86263, 51203 -> 51204, 51295 -> 51294","Type":"Adherens","Directional":false,"Links":[{"SourceID":12320,"TargetID":86263,"Directional":false},{"SourceID":51203,"TargetID":51204,"Directional":false},{"SourceID":51295,"TargetID":51294,"Directional":false}]},{"ID":1293,"SourceStructureID":606,"TargetStructureID":6117,"Label":"606-6117 via Unknown from 84161 -> 84160","Type":"Unknown","Directional":false,"Links":[{"SourceID":84161,"TargetID":84160,"Directional":false}]},{"ID":1294,"SourceStructureID":6120,"TargetStructureID":606,"Label":"6120-606 via Adherens from 51498 -> 51499, 51509 -> 51508","Type":"Adherens","Directional":false,"Links":[{"SourceID":51498,"TargetID":51499,"Directional":false},{"SourceID":51509,"TargetID":51508,"Directional":false}]},{"ID":1295,"SourceStructureID":6204,"TargetStructureID":606,"Label":"6204-606 via Adherens from 51975 -> 51976","Type":"Adherens","Directional":false,"Links":[{"SourceID":51975,"TargetID":51976,"Directional":false}]},{"ID":1296,"SourceStructureID":606,"TargetStructureID":7024,"Label":"606-7024 via Adherens from 47474 -> 47473","Type":"Adherens","Directional":false,"Links":[{"SourceID":47474,"TargetID":47473,"Directional":false}]},{"ID":1297,"SourceStructureID":606,"TargetStructureID":7576,"Label":"606-7576 via Adherens from 54840 -> 54841","Type":"Adherens","Directional":false,"Links":[{"SourceID":54840,"TargetID":54841,"Directional":false}]},{"ID":1298,"SourceStructureID":7594,"TargetStructureID":606,"Label":"7594-606 via Adherens from 47611 -> 47612, 51097 -> 51098, 51421 -> 51422, 51745 -> 51746, 51800 -> 51799, 52500 -> 52501, 53560 -> 53548, 54445 -> 54446","Type":"Adherens","Directional":false,"Links":[{"SourceID":47611,"TargetID":47612,"Directional":false},{"SourceID":51097,"TargetID":51098,"Directional":false},{"SourceID":51421,"TargetID":51422,"Directional":false},{"SourceID":51745,"TargetID":51746,"Directional":false},{"SourceID":51800,"TargetID":51799,"Directional":false},{"SourceID":52500,"TargetID":52501,"Directional":false},{"SourceID":53560,"TargetID":53548,"Directional":false},{"SourceID":54445,"TargetID":54446,"Directional":false}]},{"ID":1299,"SourceStructureID":9769,"TargetStructureID":606,"Label":"9769-606 via Adherens from 12397 -> 12398, 48505 -> 48506, 49123 -> 49124, 51235 -> 51236, 51303 -> 51302, 51307 -> 51306, 51432 -> 51433, 51785 -> 51786, 53047 -> 53046, 53048 -> 53045, 53049 -> 53044, 53059 -> 53060, 53076 -> 53075, 53079 -> 53078, 53088 -> 53089","Type":"Adherens","Directional":false,"Links":[{"SourceID":12397,"TargetID":12398,"Directional":false},{"SourceID":48505,"TargetID":48506,"Directional":false},{"SourceID":49123,"TargetID":49124,"Directional":false},{"SourceID":51235,"TargetID":51236,"Directional":false},{"SourceID":51303,"TargetID":51302,"Directional":false},{"SourceID":51307,"TargetID":51306,"Directional":false},{"SourceID":51432,"TargetID":51433,"Directional":false},{"SourceID":51785,"TargetID":51786,"Directional":false},{"SourceID":53047,"TargetID":53046,"Directional":false},{"SourceID":53048,"TargetID":53045,"Directional":false},{"SourceID":53049,"TargetID":53044,"Directional":false},{"SourceID":53059,"TargetID":53060,"Directional":false},{"SourceID":53076,"TargetID":53075,"Directional":false},{"SourceID":53079,"TargetID":53078,"Directional":false},{"SourceID":53088,"TargetID":53089,"Directional":false}]},{"ID":1300,"SourceStructureID":9769,"TargetStructureID":606,"Label":"9769-606 via Gap Junction from 12396 -> 12348, 12399 -> 12323, 44269 -> 44268, 45318 -> 45316, 48503 -> 48504, 49118 -> 49119, 49183 -> 49182, 50695 -> 50694, 50919 -> 50971, 51312 -> 51313, 51330 -> 51329, 51425 -> 51426, 51474 -> 51473, 51487 -> 51488, 51489 -> 51490, 51588 -> 51589, 51595 -> 51594, 51596 -> 51597, 51788 -> 51789, 51792 -> 89637, 51863 -> 51864, 52393 -> 52394, 52759 -> 49023, 52886 -> 56077, 53004 -> 49179, 53051 -> 53050, 53073 -> 53074, 53511 -> 53510, 53533 -> 53530, 53932 -> 53933, 54489 -> 54490","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12396,"TargetID":12348,"Directional":false},{"SourceID":12399,"TargetID":12323,"Directional":false},{"SourceID":44269,"TargetID":44268,"Directional":false},{"SourceID":45318,"TargetID":45316,"Directional":false},{"SourceID":48503,"TargetID":48504,"Directional":false},{"SourceID":49118,"TargetID":49119,"Directional":false},{"SourceID":49183,"TargetID":49182,"Directional":false},{"SourceID":50695,"TargetID":50694,"Directional":false},{"SourceID":50919,"TargetID":50971,"Directional":false},{"SourceID":51312,"TargetID":51313,"Directional":false},{"SourceID":51330,"TargetID":51329,"Directional":false},{"SourceID":51425,"TargetID":51426,"Directional":false},{"SourceID":51474,"TargetID":51473,"Directional":false},{"SourceID":51487,"TargetID":51488,"Directional":false},{"SourceID":51489,"TargetID":51490,"Directional":false},{"SourceID":51588,"TargetID":51589,"Directional":false},{"SourceID":51595,"TargetID":51594,"Directional":false},{"SourceID":51596,"TargetID":51597,"Directional":false},{"SourceID":51788,"TargetID":51789,"Directional":false},{"SourceID":51792,"TargetID":89637,"Directional":false},{"SourceID":51863,"TargetID":51864,"Directional":false},{"SourceID":52393,"TargetID":52394,"Directional":false},{"SourceID":52759,"TargetID":49023,"Directional":false},{"SourceID":52886,"TargetID":56077,"Directional":false},{"SourceID":53004,"TargetID":49179,"Directional":false},{"SourceID":53051,"TargetID":53050,"Directional":false},{"SourceID":53073,"TargetID":53074,"Directional":false},{"SourceID":53511,"TargetID":53510,"Directional":false},{"SourceID":53533,"TargetID":53530,"Directional":false},{"SourceID":53932,"TargetID":53933,"Directional":false},{"SourceID":54489,"TargetID":54490,"Directional":false}]},{"ID":1301,"SourceStructureID":10559,"TargetStructureID":606,"Label":"10559-606 via Adherens from 54370 -> 54371","Type":"Adherens","Directional":false,"Links":[{"SourceID":54370,"TargetID":54371,"Directional":false}]},{"ID":1302,"SourceStructureID":10559,"TargetStructureID":606,"Label":"10559-606 via Gap Junction from 44315 -> 44313, 54278 -> 54281, 54383 -> 54384","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44315,"TargetID":44313,"Directional":false},{"SourceID":54278,"TargetID":54281,"Directional":false},{"SourceID":54383,"TargetID":54384,"Directional":false}]},{"ID":1303,"SourceStructureID":606,"TargetStructureID":12408,"Label":"606-12408 via Adherens from 52813 -> 52814, 52816 -> 52815","Type":"Adherens","Directional":false,"Links":[{"SourceID":52813,"TargetID":52814,"Directional":false},{"SourceID":52816,"TargetID":52815,"Directional":false}]},{"ID":1304,"SourceStructureID":606,"TargetStructureID":12564,"Label":"606-12564 via Gap Junction from 49606 -> 88665, 50892 -> 53254, 53247 -> 53213","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49606,"TargetID":88665,"Directional":false},{"SourceID":50892,"TargetID":53254,"Directional":false},{"SourceID":53247,"TargetID":53213,"Directional":false}]},{"ID":1305,"SourceStructureID":22974,"TargetStructureID":606,"Label":"22974-606 via Adherens from 51478 -> 51477","Type":"Adherens","Directional":false,"Links":[{"SourceID":51478,"TargetID":51477,"Directional":false}]},{"ID":1306,"SourceStructureID":30130,"TargetStructureID":606,"Label":"30130-606 via Adherens from 52209 -> 52208","Type":"Adherens","Directional":false,"Links":[{"SourceID":52209,"TargetID":52208,"Directional":false}]},{"ID":1307,"SourceStructureID":606,"TargetStructureID":34302,"Label":"606-34302 via Adherens from 52607 -> 52608","Type":"Adherens","Directional":false,"Links":[{"SourceID":52607,"TargetID":52608,"Directional":false}]},{"ID":1308,"SourceStructureID":34315,"TargetStructureID":606,"Label":"34315-606 via Adherens from 52381 -> 52380","Type":"Adherens","Directional":false,"Links":[{"SourceID":52381,"TargetID":52380,"Directional":false}]},{"ID":1309,"SourceStructureID":38632,"TargetStructureID":606,"Label":"38632-606 via Adherens from 52620 -> 52619, 53119 -> 53118, 90534 -> 90533","Type":"Adherens","Directional":false,"Links":[{"SourceID":52620,"TargetID":52619,"Directional":false},{"SourceID":53119,"TargetID":53118,"Directional":false},{"SourceID":90534,"TargetID":90533,"Directional":false}]},{"ID":1310,"SourceStructureID":606,"TargetStructureID":38632,"Label":"606-38632 via Gap Junction from 53112 -> 53111","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53112,"TargetID":53111,"Directional":false}]},{"ID":1311,"SourceStructureID":606,"TargetStructureID":39900,"Label":"606-39900 via Adherens from 54144 -> 54145","Type":"Adherens","Directional":false,"Links":[{"SourceID":54144,"TargetID":54145,"Directional":false}]},{"ID":1312,"SourceStructureID":606,"TargetStructureID":40051,"Label":"606-40051 via Adherens from 128560 -> 128561","Type":"Adherens","Directional":false,"Links":[{"SourceID":128560,"TargetID":128561,"Directional":false}]},{"ID":1313,"SourceStructureID":40057,"TargetStructureID":606,"Label":"40057-606 via Adherens from 45485 -> 45484","Type":"Adherens","Directional":false,"Links":[{"SourceID":45485,"TargetID":45484,"Directional":false}]},{"ID":1314,"SourceStructureID":44222,"TargetStructureID":606,"Label":"44222-606 via Adherens from 44226 -> 45016, 53921 -> 53922","Type":"Adherens","Directional":false,"Links":[{"SourceID":44226,"TargetID":45016,"Directional":false},{"SourceID":53921,"TargetID":53922,"Directional":false}]},{"ID":1315,"SourceStructureID":44222,"TargetStructureID":606,"Label":"44222-606 via Gap Junction from 44218 -> 44216, 44223 -> 44221, 44225 -> 44224","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44218,"TargetID":44216,"Directional":false},{"SourceID":44223,"TargetID":44221,"Directional":false},{"SourceID":44225,"TargetID":44224,"Directional":false}]},{"ID":1316,"SourceStructureID":606,"TargetStructureID":44329,"Label":"606-44329 via Adherens from 44327 -> 44331","Type":"Adherens","Directional":false,"Links":[{"SourceID":44327,"TargetID":44331,"Directional":false}]},{"ID":1317,"SourceStructureID":44329,"TargetStructureID":606,"Label":"44329-606 via Gap Junction from 44330 -> 44328","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44330,"TargetID":44328,"Directional":false}]},{"ID":1318,"SourceStructureID":44970,"TargetStructureID":606,"Label":"44970-606 via Gap Junction from 51174 -> 51175","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51174,"TargetID":51175,"Directional":false}]},{"ID":1319,"SourceStructureID":606,"TargetStructureID":45220,"Label":"606-45220 via Gap Junction from 49624 -> 54058, 52405 -> 52406, 54046 -> 54045, 55181 -> 54037","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49624,"TargetID":54058,"Directional":false},{"SourceID":52405,"TargetID":52406,"Directional":false},{"SourceID":54046,"TargetID":54045,"Directional":false},{"SourceID":55181,"TargetID":54037,"Directional":false}]},{"ID":1320,"SourceStructureID":45406,"TargetStructureID":606,"Label":"45406-606 via Gap Junction from 45407 -> 10516","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45407,"TargetID":10516,"Directional":false}]},{"ID":1321,"SourceStructureID":46105,"TargetStructureID":606,"Label":"46105-606 via Adherens from 46244 -> 46243","Type":"Adherens","Directional":false,"Links":[{"SourceID":46244,"TargetID":46243,"Directional":false}]},{"ID":1322,"SourceStructureID":606,"TargetStructureID":46589,"Label":"606-46589 via Gap Junction from 46586 -> 56003, 46591 -> 46584","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46586,"TargetID":56003,"Directional":false},{"SourceID":46591,"TargetID":46584,"Directional":false}]},{"ID":1323,"SourceStructureID":47013,"TargetStructureID":606,"Label":"47013-606 via Gap Junction from 88245 -> 47583","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88245,"TargetID":47583,"Directional":false}]},{"ID":1324,"SourceStructureID":606,"TargetStructureID":47445,"Label":"606-47445 via Adherens from 47452 -> 47453","Type":"Adherens","Directional":false,"Links":[{"SourceID":47452,"TargetID":47453,"Directional":false}]},{"ID":1325,"SourceStructureID":606,"TargetStructureID":51923,"Label":"606-51923 via Adherens from 51928 -> 51929","Type":"Adherens","Directional":false,"Links":[{"SourceID":51928,"TargetID":51929,"Directional":false}]},{"ID":1326,"SourceStructureID":606,"TargetStructureID":51923,"Label":"606-51923 via Gap Junction from 48296 -> 51924, 51932 -> 51931","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48296,"TargetID":51924,"Directional":false},{"SourceID":51932,"TargetID":51931,"Directional":false}]},{"ID":1327,"SourceStructureID":606,"TargetStructureID":53115,"Label":"606-53115 via Gap Junction from 53114 -> 53139, 53145 -> 53146, 90523 -> 53165","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53114,"TargetID":53139,"Directional":false},{"SourceID":53145,"TargetID":53146,"Directional":false},{"SourceID":90523,"TargetID":53165,"Directional":false}]},{"ID":1328,"SourceStructureID":606,"TargetStructureID":55098,"Label":"606-55098 via Gap Junction from 50907 -> 55099","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50907,"TargetID":55099,"Directional":false}]},{"ID":1329,"SourceStructureID":606,"TargetStructureID":55232,"Label":"606-55232 via Adherens from 47224 -> 55240, 55246 -> 55247","Type":"Adherens","Directional":false,"Links":[{"SourceID":47224,"TargetID":55240,"Directional":false},{"SourceID":55246,"TargetID":55247,"Directional":false}]},{"ID":1330,"SourceStructureID":606,"TargetStructureID":55232,"Label":"606-55232 via Gap Junction from 47213 -> 55233, 47219 -> 55236, 55251 -> 47234","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47213,"TargetID":55233,"Directional":false},{"SourceID":47219,"TargetID":55236,"Directional":false},{"SourceID":55251,"TargetID":47234,"Directional":false}]},{"ID":1331,"SourceStructureID":606,"TargetStructureID":55403,"Label":"606-55403 via Adherens from 53268 -> 55409, 53276 -> 55408","Type":"Adherens","Directional":false,"Links":[{"SourceID":53268,"TargetID":55409,"Directional":false},{"SourceID":53276,"TargetID":55408,"Directional":false}]},{"ID":1332,"SourceStructureID":606,"TargetStructureID":55403,"Label":"606-55403 via Gap Junction from 53273 -> 55404","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53273,"TargetID":55404,"Directional":false}]},{"ID":1333,"SourceStructureID":606,"TargetStructureID":55517,"Label":"606-55517 via Gap Junction from 53312 -> 55521, 55518 -> 53308","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53312,"TargetID":55521,"Directional":false},{"SourceID":55518,"TargetID":53308,"Directional":false}]},{"ID":1334,"SourceStructureID":55610,"TargetStructureID":606,"Label":"55610-606 via Gap Junction from 55614 -> 49676, 55615 -> 49675, 55616 -> 54164, 55867 -> 54170","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55614,"TargetID":49676,"Directional":false},{"SourceID":55615,"TargetID":49675,"Directional":false},{"SourceID":55616,"TargetID":54164,"Directional":false},{"SourceID":55867,"TargetID":54170,"Directional":false}]},{"ID":1335,"SourceStructureID":59471,"TargetStructureID":606,"Label":"59471-606 via Gap Junction from 89095 -> 51316","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89095,"TargetID":51316,"Directional":false}]},{"ID":1336,"SourceStructureID":59482,"TargetStructureID":606,"Label":"59482-606 via Gap Junction from 59485 -> 51385, 89116 -> 51380, 89117 -> 51381","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59485,"TargetID":51385,"Directional":false},{"SourceID":89116,"TargetID":51380,"Directional":false},{"SourceID":89117,"TargetID":51381,"Directional":false}]},{"ID":1337,"SourceStructureID":59499,"TargetStructureID":606,"Label":"59499-606 via Gap Junction from 59500 -> 53306, 90557 -> 53286","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59500,"TargetID":53306,"Directional":false},{"SourceID":90557,"TargetID":53286,"Directional":false}]},{"ID":1338,"SourceStructureID":606,"TargetStructureID":65358,"Label":"606-65358 via Adherens from 47477 -> 65361","Type":"Adherens","Directional":false,"Links":[{"SourceID":47477,"TargetID":65361,"Directional":false}]},{"ID":1339,"SourceStructureID":606,"TargetStructureID":66665,"Label":"606-66665 via Adherens from 53383 -> 66666","Type":"Adherens","Directional":false,"Links":[{"SourceID":53383,"TargetID":66666,"Directional":false}]},{"ID":1340,"SourceStructureID":606,"TargetStructureID":70454,"Label":"606-70454 via Gap Junction from 51539 -> 89552","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51539,"TargetID":89552,"Directional":false}]},{"ID":1341,"SourceStructureID":78909,"TargetStructureID":606,"Label":"78909-606 via Gap Junction from 87508 -> 47478","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87508,"TargetID":47478,"Directional":false}]},{"ID":1342,"SourceStructureID":80182,"TargetStructureID":606,"Label":"80182-606 via Gap Junction from 88940 -> 50900","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88940,"TargetID":50900,"Directional":false}]},{"ID":1343,"SourceStructureID":80600,"TargetStructureID":606,"Label":"80600-606 via Gap Junction from 89061 -> 51721","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89061,"TargetID":51721,"Directional":false}]},{"ID":1344,"SourceStructureID":82887,"TargetStructureID":606,"Label":"82887-606 via Gap Junction from 87133 -> 45165","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87133,"TargetID":45165,"Directional":false}]},{"ID":1345,"SourceStructureID":87130,"TargetStructureID":606,"Label":"87130-606 via Gap Junction from 87131 -> 10698","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87131,"TargetID":10698,"Directional":false}]},{"ID":1346,"SourceStructureID":87141,"TargetStructureID":606,"Label":"87141-606 via Gap Junction from 87142 -> 45500","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87142,"TargetID":45500,"Directional":false}]},{"ID":1347,"SourceStructureID":606,"TargetStructureID":87143,"Label":"606-87143 via Gap Junction from 45546 -> 87144","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45546,"TargetID":87144,"Directional":false}]},{"ID":1348,"SourceStructureID":87145,"TargetStructureID":606,"Label":"87145-606 via Gap Junction from 87146 -> 45592","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87146,"TargetID":45592,"Directional":false}]},{"ID":1349,"SourceStructureID":606,"TargetStructureID":87162,"Label":"606-87162 via Gap Junction from 45692 -> 87163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45692,"TargetID":87163,"Directional":false}]},{"ID":1350,"SourceStructureID":87172,"TargetStructureID":606,"Label":"87172-606 via Gap Junction from 87175 -> 45745","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87175,"TargetID":45745,"Directional":false}]},{"ID":1351,"SourceStructureID":87176,"TargetStructureID":606,"Label":"87176-606 via Gap Junction from 87177 -> 45746","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87177,"TargetID":45746,"Directional":false}]},{"ID":1352,"SourceStructureID":606,"TargetStructureID":87178,"Label":"606-87178 via Gap Junction from 46028 -> 87181, 87180 -> 46027, 87182 -> 46601","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46028,"TargetID":87181,"Directional":false},{"SourceID":87180,"TargetID":46027,"Directional":false},{"SourceID":87182,"TargetID":46601,"Directional":false}]},{"ID":1353,"SourceStructureID":87183,"TargetStructureID":606,"Label":"87183-606 via Gap Junction from 87184 -> 46406","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87184,"TargetID":46406,"Directional":false}]},{"ID":1354,"SourceStructureID":87224,"TargetStructureID":606,"Label":"87224-606 via Gap Junction from 87225 -> 46470, 87241 -> 46587","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87225,"TargetID":46470,"Directional":false},{"SourceID":87241,"TargetID":46587,"Directional":false}]},{"ID":1355,"SourceStructureID":606,"TargetStructureID":87231,"Label":"606-87231 via Gap Junction from 46485 -> 87232","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46485,"TargetID":87232,"Directional":false}]},{"ID":1356,"SourceStructureID":87247,"TargetStructureID":606,"Label":"87247-606 via Gap Junction from 87248 -> 46614","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87248,"TargetID":46614,"Directional":false}]},{"ID":1357,"SourceStructureID":606,"TargetStructureID":87249,"Label":"606-87249 via Adherens from 87257 -> 87256","Type":"Adherens","Directional":false,"Links":[{"SourceID":87257,"TargetID":87256,"Directional":false}]},{"ID":1358,"SourceStructureID":87249,"TargetStructureID":606,"Label":"87249-606 via Gap Junction from 87250 -> 46635","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87250,"TargetID":46635,"Directional":false}]},{"ID":1359,"SourceStructureID":87268,"TargetStructureID":606,"Label":"87268-606 via Gap Junction from 87269 -> 47249","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87269,"TargetID":47249,"Directional":false}]},{"ID":1360,"SourceStructureID":87277,"TargetStructureID":606,"Label":"87277-606 via Gap Junction from 87278 -> 47300","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87278,"TargetID":47300,"Directional":false}]},{"ID":1361,"SourceStructureID":87294,"TargetStructureID":606,"Label":"87294-606 via Gap Junction from 87295 -> 47306","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87295,"TargetID":47306,"Directional":false}]},{"ID":1362,"SourceStructureID":87342,"TargetStructureID":606,"Label":"87342-606 via Gap Junction from 87343 -> 47372","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87343,"TargetID":47372,"Directional":false}]},{"ID":1363,"SourceStructureID":87408,"TargetStructureID":606,"Label":"87408-606 via Adherens from 87410 -> 87411","Type":"Adherens","Directional":false,"Links":[{"SourceID":87410,"TargetID":87411,"Directional":false}]},{"ID":1364,"SourceStructureID":87408,"TargetStructureID":606,"Label":"87408-606 via Gap Junction from 87409 -> 47429","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87409,"TargetID":47429,"Directional":false}]},{"ID":1365,"SourceStructureID":606,"TargetStructureID":87413,"Label":"606-87413 via Gap Junction from 47454 -> 87416","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47454,"TargetID":87416,"Directional":false}]},{"ID":1366,"SourceStructureID":606,"TargetStructureID":87432,"Label":"606-87432 via Gap Junction from 47462 -> 87434","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47462,"TargetID":87434,"Directional":false}]},{"ID":1367,"SourceStructureID":87487,"TargetStructureID":606,"Label":"87487-606 via Gap Junction from 87489 -> 47469","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87489,"TargetID":47469,"Directional":false}]},{"ID":1368,"SourceStructureID":88246,"TargetStructureID":606,"Label":"88246-606 via Adherens from 88249 -> 47877","Type":"Adherens","Directional":false,"Links":[{"SourceID":88249,"TargetID":47877,"Directional":false}]},{"ID":1369,"SourceStructureID":88246,"TargetStructureID":606,"Label":"88246-606 via Gap Junction from 88248 -> 47625","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88248,"TargetID":47625,"Directional":false}]},{"ID":1370,"SourceStructureID":88260,"TargetStructureID":606,"Label":"88260-606 via Gap Junction from 88264 -> 47749","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88264,"TargetID":47749,"Directional":false}]},{"ID":1371,"SourceStructureID":88327,"TargetStructureID":606,"Label":"88327-606 via Gap Junction from 88328 -> 47995","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88328,"TargetID":47995,"Directional":false}]},{"ID":1372,"SourceStructureID":88344,"TargetStructureID":606,"Label":"88344-606 via Adherens from 88347 -> 88348","Type":"Adherens","Directional":false,"Links":[{"SourceID":88347,"TargetID":88348,"Directional":false}]},{"ID":1373,"SourceStructureID":88344,"TargetStructureID":606,"Label":"88344-606 via Gap Junction from 88350 -> 48314","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88350,"TargetID":48314,"Directional":false}]},{"ID":1374,"SourceStructureID":88354,"TargetStructureID":606,"Label":"88354-606 via Gap Junction from 88355 -> 48322","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88355,"TargetID":48322,"Directional":false}]},{"ID":1375,"SourceStructureID":606,"TargetStructureID":88365,"Label":"606-88365 via Gap Junction from 51981 -> 88385, 88381 -> 48323, 88388 -> 51993","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51981,"TargetID":88385,"Directional":false},{"SourceID":88381,"TargetID":48323,"Directional":false},{"SourceID":88388,"TargetID":51993,"Directional":false}]},{"ID":1376,"SourceStructureID":88395,"TargetStructureID":606,"Label":"88395-606 via Gap Junction from 88422 -> 48324","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88422,"TargetID":48324,"Directional":false}]},{"ID":1377,"SourceStructureID":88459,"TargetStructureID":606,"Label":"88459-606 via Gap Junction from 88460 -> 48330","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88460,"TargetID":48330,"Directional":false}]},{"ID":1378,"SourceStructureID":88565,"TargetStructureID":606,"Label":"88565-606 via Gap Junction from 88567 -> 48508","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88567,"TargetID":48508,"Directional":false}]},{"ID":1379,"SourceStructureID":88594,"TargetStructureID":606,"Label":"88594-606 via Gap Junction from 88595 -> 48797","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88595,"TargetID":48797,"Directional":false}]},{"ID":1380,"SourceStructureID":88621,"TargetStructureID":606,"Label":"88621-606 via Adherens from 88622 -> 88620","Type":"Adherens","Directional":false,"Links":[{"SourceID":88622,"TargetID":88620,"Directional":false}]},{"ID":1381,"SourceStructureID":88621,"TargetStructureID":606,"Label":"88621-606 via Gap Junction from 88623 -> 48955","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88623,"TargetID":48955,"Directional":false}]},{"ID":1382,"SourceStructureID":88628,"TargetStructureID":606,"Label":"88628-606 via Gap Junction from 88629 -> 49024","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88629,"TargetID":49024,"Directional":false}]},{"ID":1383,"SourceStructureID":606,"TargetStructureID":88630,"Label":"606-88630 via Adherens from 88633 -> 88632","Type":"Adherens","Directional":false,"Links":[{"SourceID":88633,"TargetID":88632,"Directional":false}]},{"ID":1384,"SourceStructureID":88630,"TargetStructureID":606,"Label":"88630-606 via Gap Junction from 88631 -> 49026","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88631,"TargetID":49026,"Directional":false}]},{"ID":1385,"SourceStructureID":88642,"TargetStructureID":606,"Label":"88642-606 via Gap Junction from 88643 -> 49556","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88643,"TargetID":49556,"Directional":false}]},{"ID":1386,"SourceStructureID":88646,"TargetStructureID":606,"Label":"88646-606 via Adherens from 88649 -> 53851, 88652 -> 53862, 88653 -> 53863","Type":"Adherens","Directional":false,"Links":[{"SourceID":88649,"TargetID":53851,"Directional":false},{"SourceID":88652,"TargetID":53862,"Directional":false},{"SourceID":88653,"TargetID":53863,"Directional":false}]},{"ID":1387,"SourceStructureID":88646,"TargetStructureID":606,"Label":"88646-606 via Gap Junction from 88647 -> 53850, 88648 -> 49592","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88647,"TargetID":53850,"Directional":false},{"SourceID":88648,"TargetID":49592,"Directional":false}]},{"ID":1388,"SourceStructureID":88661,"TargetStructureID":606,"Label":"88661-606 via Adherens from 88663 -> 49593","Type":"Adherens","Directional":false,"Links":[{"SourceID":88663,"TargetID":49593,"Directional":false}]},{"ID":1389,"SourceStructureID":88661,"TargetStructureID":606,"Label":"88661-606 via Gap Junction from 88662 -> 49594","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88662,"TargetID":49594,"Directional":false}]},{"ID":1390,"SourceStructureID":606,"TargetStructureID":88666,"Label":"606-88666 via Gap Junction from 49609 -> 88667","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49609,"TargetID":88667,"Directional":false}]},{"ID":1391,"SourceStructureID":88730,"TargetStructureID":606,"Label":"88730-606 via Gap Junction from 88732 -> 49622","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88732,"TargetID":49622,"Directional":false}]},{"ID":1392,"SourceStructureID":606,"TargetStructureID":88737,"Label":"606-88737 via Gap Junction from 54159 -> 88750, 88738 -> 49625, 88744 -> 54158","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54159,"TargetID":88750,"Directional":false},{"SourceID":88738,"TargetID":49625,"Directional":false},{"SourceID":88744,"TargetID":54158,"Directional":false}]},{"ID":1393,"SourceStructureID":606,"TargetStructureID":88762,"Label":"606-88762 via Adherens from 54216 -> 88768","Type":"Adherens","Directional":false,"Links":[{"SourceID":54216,"TargetID":88768,"Directional":false}]},{"ID":1394,"SourceStructureID":88762,"TargetStructureID":606,"Label":"88762-606 via Gap Junction from 88765 -> 49684, 88807 -> 54217","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88765,"TargetID":49684,"Directional":false},{"SourceID":88807,"TargetID":54217,"Directional":false}]},{"ID":1395,"SourceStructureID":88808,"TargetStructureID":606,"Label":"88808-606 via Gap Junction from 88809 -> 49794","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88809,"TargetID":49794,"Directional":false}]},{"ID":1396,"SourceStructureID":88941,"TargetStructureID":606,"Label":"88941-606 via Adherens from 88943 -> 53540","Type":"Adherens","Directional":false,"Links":[{"SourceID":88943,"TargetID":53540,"Directional":false}]},{"ID":1397,"SourceStructureID":88941,"TargetStructureID":606,"Label":"88941-606 via Gap Junction from 88942 -> 50904","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88942,"TargetID":50904,"Directional":false}]},{"ID":1398,"SourceStructureID":88981,"TargetStructureID":606,"Label":"88981-606 via Gap Junction from 88983 -> 51018","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88983,"TargetID":51018,"Directional":false}]},{"ID":1399,"SourceStructureID":88984,"TargetStructureID":606,"Label":"88984-606 via Gap Junction from 88990 -> 51074","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88990,"TargetID":51074,"Directional":false}]},{"ID":1400,"SourceStructureID":606,"TargetStructureID":89039,"Label":"606-89039 via Gap Junction from 51189 -> 89040","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51189,"TargetID":89040,"Directional":false}]},{"ID":1401,"SourceStructureID":89071,"TargetStructureID":606,"Label":"89071-606 via Gap Junction from 89074 -> 51225","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89074,"TargetID":51225,"Directional":false}]},{"ID":1402,"SourceStructureID":89093,"TargetStructureID":606,"Label":"89093-606 via Gap Junction from 89094 -> 51243","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89094,"TargetID":51243,"Directional":false}]},{"ID":1403,"SourceStructureID":89107,"TargetStructureID":606,"Label":"89107-606 via Gap Junction from 89108 -> 51354","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89108,"TargetID":51354,"Directional":false}]},{"ID":1404,"SourceStructureID":89113,"TargetStructureID":606,"Label":"89113-606 via Gap Junction from 89114 -> 51344","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89114,"TargetID":51344,"Directional":false}]},{"ID":1405,"SourceStructureID":89124,"TargetStructureID":606,"Label":"89124-606 via Gap Junction from 89125 -> 51494, 89542 -> 51497","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89125,"TargetID":51494,"Directional":false},{"SourceID":89542,"TargetID":51497,"Directional":false}]},{"ID":1406,"SourceStructureID":89543,"TargetStructureID":606,"Label":"89543-606 via Gap Junction from 89551 -> 51515","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89551,"TargetID":51515,"Directional":false}]},{"ID":1407,"SourceStructureID":606,"TargetStructureID":89567,"Label":"606-89567 via Gap Junction from 51586 -> 89568","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51586,"TargetID":89568,"Directional":false}]},{"ID":1408,"SourceStructureID":89569,"TargetStructureID":606,"Label":"89569-606 via Gap Junction from 89570 -> 51601","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89570,"TargetID":51601,"Directional":false}]},{"ID":1409,"SourceStructureID":89571,"TargetStructureID":606,"Label":"89571-606 via Gap Junction from 89576 -> 51620","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89576,"TargetID":51620,"Directional":false}]},{"ID":1410,"SourceStructureID":89577,"TargetStructureID":606,"Label":"89577-606 via Gap Junction from 89578 -> 51638","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89578,"TargetID":51638,"Directional":false}]},{"ID":1411,"SourceStructureID":89582,"TargetStructureID":606,"Label":"89582-606 via Adherens from 89584 -> 89585","Type":"Adherens","Directional":false,"Links":[{"SourceID":89584,"TargetID":89585,"Directional":false}]},{"ID":1412,"SourceStructureID":89582,"TargetStructureID":606,"Label":"89582-606 via Gap Junction from 89583 -> 51664","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89583,"TargetID":51664,"Directional":false}]},{"ID":1413,"SourceStructureID":606,"TargetStructureID":89586,"Label":"606-89586 via Gap Junction from 51698 -> 89588","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51698,"TargetID":89588,"Directional":false}]},{"ID":1414,"SourceStructureID":89638,"TargetStructureID":606,"Label":"89638-606 via Gap Junction from 89639 -> 51798","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89639,"TargetID":51798,"Directional":false}]},{"ID":1415,"SourceStructureID":89677,"TargetStructureID":606,"Label":"89677-606 via Adherens from 89683 -> 51971","Type":"Adherens","Directional":false,"Links":[{"SourceID":89683,"TargetID":51971,"Directional":false}]},{"ID":1416,"SourceStructureID":89677,"TargetStructureID":606,"Label":"89677-606 via Gap Junction from 89680 -> 51962, 89681 -> 51969","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89680,"TargetID":51962,"Directional":false},{"SourceID":89681,"TargetID":51969,"Directional":false}]},{"ID":1417,"SourceStructureID":89775,"TargetStructureID":606,"Label":"89775-606 via Adherens from 89777 -> 89778","Type":"Adherens","Directional":false,"Links":[{"SourceID":89777,"TargetID":89778,"Directional":false}]},{"ID":1418,"SourceStructureID":89775,"TargetStructureID":606,"Label":"89775-606 via Gap Junction from 89776 -> 51973","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89776,"TargetID":51973,"Directional":false}]},{"ID":1419,"SourceStructureID":89811,"TargetStructureID":606,"Label":"89811-606 via Gap Junction from 89812 -> 52338","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89812,"TargetID":52338,"Directional":false}]},{"ID":1420,"SourceStructureID":89820,"TargetStructureID":606,"Label":"89820-606 via Gap Junction from 89821 -> 52345","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89821,"TargetID":52345,"Directional":false}]},{"ID":1421,"SourceStructureID":89827,"TargetStructureID":606,"Label":"89827-606 via Gap Junction from 89828 -> 52372","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89828,"TargetID":52372,"Directional":false}]},{"ID":1422,"SourceStructureID":89831,"TargetStructureID":606,"Label":"89831-606 via Gap Junction from 89844 -> 52574","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89844,"TargetID":52574,"Directional":false}]},{"ID":1423,"SourceStructureID":89845,"TargetStructureID":606,"Label":"89845-606 via Gap Junction from 89847 -> 52610","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89847,"TargetID":52610,"Directional":false}]},{"ID":1424,"SourceStructureID":89848,"TargetStructureID":606,"Label":"89848-606 via Gap Junction from 89849 -> 52617","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89849,"TargetID":52617,"Directional":false}]},{"ID":1425,"SourceStructureID":89851,"TargetStructureID":606,"Label":"89851-606 via Gap Junction from 89852 -> 52671","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89852,"TargetID":52671,"Directional":false}]},{"ID":1426,"SourceStructureID":89989,"TargetStructureID":606,"Label":"89989-606 via Gap Junction from 89990 -> 52720","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89990,"TargetID":52720,"Directional":false}]},{"ID":1427,"SourceStructureID":90111,"TargetStructureID":606,"Label":"90111-606 via Gap Junction from 90116 -> 52819","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90116,"TargetID":52819,"Directional":false}]},{"ID":1428,"SourceStructureID":90118,"TargetStructureID":606,"Label":"90118-606 via Gap Junction from 90128 -> 52844","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90128,"TargetID":52844,"Directional":false}]},{"ID":1429,"SourceStructureID":90151,"TargetStructureID":606,"Label":"90151-606 via Adherens from 90153 -> 52916","Type":"Adherens","Directional":false,"Links":[{"SourceID":90153,"TargetID":52916,"Directional":false}]},{"ID":1430,"SourceStructureID":90151,"TargetStructureID":606,"Label":"90151-606 via Gap Junction from 90152 -> 52954","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90152,"TargetID":52954,"Directional":false}]},{"ID":1431,"SourceStructureID":90466,"TargetStructureID":606,"Label":"90466-606 via Gap Junction from 90467 -> 53093","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90467,"TargetID":53093,"Directional":false}]},{"ID":1432,"SourceStructureID":90475,"TargetStructureID":606,"Label":"90475-606 via Gap Junction from 90479 -> 53098","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90479,"TargetID":53098,"Directional":false}]},{"ID":1433,"SourceStructureID":90519,"TargetStructureID":606,"Label":"90519-606 via Gap Junction from 90520 -> 53099","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90520,"TargetID":53099,"Directional":false}]},{"ID":1434,"SourceStructureID":90528,"TargetStructureID":606,"Label":"90528-606 via Gap Junction from 90529 -> 53109","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90529,"TargetID":53109,"Directional":false}]},{"ID":1435,"SourceStructureID":606,"TargetStructureID":90530,"Label":"606-90530 via Adherens from 90534 -> 90532","Type":"Adherens","Directional":false,"Links":[{"SourceID":90534,"TargetID":90532,"Directional":false}]},{"ID":1436,"SourceStructureID":90530,"TargetStructureID":606,"Label":"90530-606 via Gap Junction from 90531 -> 53113","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90531,"TargetID":53113,"Directional":false}]},{"ID":1437,"SourceStructureID":90535,"TargetStructureID":606,"Label":"90535-606 via Gap Junction from 90536 -> 53277","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90536,"TargetID":53277,"Directional":false}]},{"ID":1438,"SourceStructureID":91507,"TargetStructureID":606,"Label":"91507-606 via Adherens from 91508 -> 51737","Type":"Adherens","Directional":false,"Links":[{"SourceID":91508,"TargetID":51737,"Directional":false}]},{"ID":1439,"SourceStructureID":608,"TargetStructureID":7054,"Label":"608-7054 via Touch from 43248 -> 43247","Type":"Touch","Directional":false,"Links":[{"SourceID":43248,"TargetID":43247,"Directional":false}]},{"ID":1440,"SourceStructureID":906,"TargetStructureID":7568,"Label":"906-7568 via Adherens from 27038 -> 27037","Type":"Adherens","Directional":false,"Links":[{"SourceID":27038,"TargetID":27037,"Directional":false}]},{"ID":1441,"SourceStructureID":909,"TargetStructureID":909,"Label":"909-909 via Gap Junction from 131057 -> 131059","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131057,"TargetID":131059,"Directional":false}]},{"ID":1442,"SourceStructureID":909,"TargetStructureID":909,"Label":"909-909 via Touch from 117455 -> 130134","Type":"Touch","Directional":false,"Links":[{"SourceID":117455,"TargetID":130134,"Directional":false}]},{"ID":1443,"SourceStructureID":909,"TargetStructureID":1637,"Label":"909-1637 via Gap Junction from 115903 -> 129571, 129580 -> 129581, 129583 -> 129582","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115903,"TargetID":129571,"Directional":false},{"SourceID":129580,"TargetID":129581,"Directional":false},{"SourceID":129583,"TargetID":129582,"Directional":false}]},{"ID":1444,"SourceStructureID":3679,"TargetStructureID":909,"Label":"3679-909 via Touch from 135798 -> 135797","Type":"Touch","Directional":false,"Links":[{"SourceID":135798,"TargetID":135797,"Directional":false}]},{"ID":1445,"SourceStructureID":5279,"TargetStructureID":909,"Label":"5279-909 via Adherens from 115910 -> 115909","Type":"Adherens","Directional":false,"Links":[{"SourceID":115910,"TargetID":115909,"Directional":false}]},{"ID":1446,"SourceStructureID":909,"TargetStructureID":5279,"Label":"909-5279 via Gap Junction from 92559 -> 92558, 129578 -> 129577, 129614 -> 147694, 129971 -> 129972","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92559,"TargetID":92558,"Directional":false},{"SourceID":129578,"TargetID":129577,"Directional":false},{"SourceID":129614,"TargetID":147694,"Directional":false},{"SourceID":129971,"TargetID":129972,"Directional":false}]},{"ID":1447,"SourceStructureID":909,"TargetStructureID":5282,"Label":"909-5282 via Adherens from 117265 -> 117266, 118620 -> 131088, 130222 -> 130221, 136339 -> 118495","Type":"Adherens","Directional":false,"Links":[{"SourceID":117265,"TargetID":117266,"Directional":false},{"SourceID":118620,"TargetID":131088,"Directional":false},{"SourceID":130222,"TargetID":130221,"Directional":false},{"SourceID":136339,"TargetID":118495,"Directional":false}]},{"ID":1448,"SourceStructureID":5282,"TargetStructureID":909,"Label":"5282-909 via Gap Junction from 87559 -> 87558, 131086 -> 131087, 136338 -> 130894, 136349 -> 136350","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87559,"TargetID":87558,"Directional":false},{"SourceID":131086,"TargetID":131087,"Directional":false},{"SourceID":136338,"TargetID":130894,"Directional":false},{"SourceID":136349,"TargetID":136350,"Directional":false}]},{"ID":1449,"SourceStructureID":5282,"TargetStructureID":909,"Label":"5282-909 via Unknown from 124663 -> 124664, 130293 -> 117695, 131073 -> 131074","Type":"Unknown","Directional":false,"Links":[{"SourceID":124663,"TargetID":124664,"Directional":false},{"SourceID":130293,"TargetID":117695,"Directional":false},{"SourceID":131073,"TargetID":131074,"Directional":false}]},{"ID":1450,"SourceStructureID":909,"TargetStructureID":5284,"Label":"909-5284 via Adherens from 127891 -> 127892","Type":"Adherens","Directional":false,"Links":[{"SourceID":127891,"TargetID":127892,"Directional":false}]},{"ID":1451,"SourceStructureID":909,"TargetStructureID":5284,"Label":"909-5284 via Gap Junction from 53737 -> 64336, 53784 -> 53785, 64601 -> 64602, 113603 -> 113602, 113640 -> 113639, 113645 -> 113644","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53737,"TargetID":64336,"Directional":false},{"SourceID":53784,"TargetID":53785,"Directional":false},{"SourceID":64601,"TargetID":64602,"Directional":false},{"SourceID":113603,"TargetID":113602,"Directional":false},{"SourceID":113640,"TargetID":113639,"Directional":false},{"SourceID":113645,"TargetID":113644,"Directional":false}]},{"ID":1452,"SourceStructureID":5292,"TargetStructureID":909,"Label":"5292-909 via Gap Junction from 130247 -> 130248","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130247,"TargetID":130248,"Directional":false}]},{"ID":1453,"SourceStructureID":5297,"TargetStructureID":909,"Label":"5297-909 via Adherens from 116443 -> 117847","Type":"Adherens","Directional":false,"Links":[{"SourceID":116443,"TargetID":117847,"Directional":false}]},{"ID":1454,"SourceStructureID":5297,"TargetStructureID":909,"Label":"5297-909 via Gap Junction from 121062 -> 121063, 130288 -> 130289","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121062,"TargetID":121063,"Directional":false},{"SourceID":130288,"TargetID":130289,"Directional":false}]},{"ID":1455,"SourceStructureID":5405,"TargetStructureID":909,"Label":"5405-909 via Unknown from 130138 -> 130137","Type":"Unknown","Directional":false,"Links":[{"SourceID":130138,"TargetID":130137,"Directional":false}]},{"ID":1456,"SourceStructureID":909,"TargetStructureID":5515,"Label":"909-5515 via Touch from 136325 -> 136326","Type":"Touch","Directional":false,"Links":[{"SourceID":136325,"TargetID":136326,"Directional":false}]},{"ID":1457,"SourceStructureID":909,"TargetStructureID":5517,"Label":"909-5517 via Adherens from 130968 -> 130969","Type":"Adherens","Directional":false,"Links":[{"SourceID":130968,"TargetID":130969,"Directional":false}]},{"ID":1458,"SourceStructureID":5517,"TargetStructureID":909,"Label":"5517-909 via Gap Junction from 49484 -> 49485, 59117 -> 59115, 130856 -> 130857","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49484,"TargetID":49485,"Directional":false},{"SourceID":59117,"TargetID":59115,"Directional":false},{"SourceID":130856,"TargetID":130857,"Directional":false}]},{"ID":1459,"SourceStructureID":909,"TargetStructureID":5561,"Label":"909-5561 via Adherens from 130082 -> 130083, 131003 -> 131004, 131075 -> 131076, 131094 -> 118629","Type":"Adherens","Directional":false,"Links":[{"SourceID":130082,"TargetID":130083,"Directional":false},{"SourceID":131003,"TargetID":131004,"Directional":false},{"SourceID":131075,"TargetID":131076,"Directional":false},{"SourceID":131094,"TargetID":118629,"Directional":false}]},{"ID":1460,"SourceStructureID":909,"TargetStructureID":5561,"Label":"909-5561 via Gap Junction from 53747 -> 97760, 53767 -> 117649, 96433 -> 96434, 97058 -> 97057, 97138 -> 97136, 97651 -> 97650, 97713 -> 97712, 113680 -> 113681, 119279 -> 119280, 130896 -> 130898, 130907 -> 130908, 130922 -> 130923, 131002 -> 131001, 131009 -> 131008, 131020 -> 131019, 131093 -> 131092","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53747,"TargetID":97760,"Directional":false},{"SourceID":53767,"TargetID":117649,"Directional":false},{"SourceID":96433,"TargetID":96434,"Directional":false},{"SourceID":97058,"TargetID":97057,"Directional":false},{"SourceID":97138,"TargetID":97136,"Directional":false},{"SourceID":97651,"TargetID":97650,"Directional":false},{"SourceID":97713,"TargetID":97712,"Directional":false},{"SourceID":113680,"TargetID":113681,"Directional":false},{"SourceID":119279,"TargetID":119280,"Directional":false},{"SourceID":130896,"TargetID":130898,"Directional":false},{"SourceID":130907,"TargetID":130908,"Directional":false},{"SourceID":130922,"TargetID":130923,"Directional":false},{"SourceID":131002,"TargetID":131001,"Directional":false},{"SourceID":131009,"TargetID":131008,"Directional":false},{"SourceID":131020,"TargetID":131019,"Directional":false},{"SourceID":131093,"TargetID":131092,"Directional":false}]},{"ID":1461,"SourceStructureID":909,"TargetStructureID":7129,"Label":"909-7129 via Unknown from 130297 -> 130296","Type":"Unknown","Directional":false,"Links":[{"SourceID":130297,"TargetID":130296,"Directional":false}]},{"ID":1462,"SourceStructureID":909,"TargetStructureID":14293,"Label":"909-14293 via Touch from 130999 -> 131000","Type":"Touch","Directional":false,"Links":[{"SourceID":130999,"TargetID":131000,"Directional":false}]},{"ID":1463,"SourceStructureID":909,"TargetStructureID":16073,"Label":"909-16073 via Unknown from 118400 -> 118401","Type":"Unknown","Directional":false,"Links":[{"SourceID":118400,"TargetID":118401,"Directional":false}]},{"ID":1464,"SourceStructureID":20136,"TargetStructureID":909,"Label":"20136-909 via Adherens from 128750 -> 128751","Type":"Adherens","Directional":false,"Links":[{"SourceID":128750,"TargetID":128751,"Directional":false}]},{"ID":1465,"SourceStructureID":909,"TargetStructureID":20136,"Label":"909-20136 via Gap Junction from 110149 -> 110148, 115851 -> 115849, 130466 -> 130465","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":110149,"TargetID":110148,"Directional":false},{"SourceID":115851,"TargetID":115849,"Directional":false},{"SourceID":130466,"TargetID":130465,"Directional":false}]},{"ID":1466,"SourceStructureID":909,"TargetStructureID":20136,"Label":"909-20136 via Touch from 130852 -> 130851","Type":"Touch","Directional":false,"Links":[{"SourceID":130852,"TargetID":130851,"Directional":false}]},{"ID":1467,"SourceStructureID":909,"TargetStructureID":32911,"Label":"909-32911 via Unknown from 135775 -> 135774","Type":"Unknown","Directional":false,"Links":[{"SourceID":135775,"TargetID":135774,"Directional":false}]},{"ID":1468,"SourceStructureID":909,"TargetStructureID":55347,"Label":"909-55347 via Adherens from 129964 -> 129963","Type":"Adherens","Directional":false,"Links":[{"SourceID":129964,"TargetID":129963,"Directional":false}]},{"ID":1469,"SourceStructureID":55347,"TargetStructureID":909,"Label":"55347-909 via Gap Junction from 115957 -> 115955","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115957,"TargetID":115955,"Directional":false}]},{"ID":1470,"SourceStructureID":909,"TargetStructureID":59147,"Label":"909-59147 via Adherens from 115848 -> 115847","Type":"Adherens","Directional":false,"Links":[{"SourceID":115848,"TargetID":115847,"Directional":false}]},{"ID":1471,"SourceStructureID":909,"TargetStructureID":61439,"Label":"909-61439 via Unknown from 120086 -> 120087","Type":"Unknown","Directional":false,"Links":[{"SourceID":120086,"TargetID":120087,"Directional":false}]},{"ID":1472,"SourceStructureID":909,"TargetStructureID":62578,"Label":"909-62578 via Unknown from 117654 -> 117655","Type":"Unknown","Directional":false,"Links":[{"SourceID":117654,"TargetID":117655,"Directional":false}]},{"ID":1473,"SourceStructureID":66942,"TargetStructureID":909,"Label":"66942-909 via Unknown from 117254 -> 117253","Type":"Unknown","Directional":false,"Links":[{"SourceID":117254,"TargetID":117253,"Directional":false}]},{"ID":1474,"SourceStructureID":67057,"TargetStructureID":909,"Label":"67057-909 via Unknown from 130850 -> 118470","Type":"Unknown","Directional":false,"Links":[{"SourceID":130850,"TargetID":118470,"Directional":false}]},{"ID":1475,"SourceStructureID":67112,"TargetStructureID":909,"Label":"67112-909 via Adherens from 130836 -> 130835","Type":"Adherens","Directional":false,"Links":[{"SourceID":130836,"TargetID":130835,"Directional":false}]},{"ID":1476,"SourceStructureID":909,"TargetStructureID":67291,"Label":"909-67291 via Unknown from 130029 -> 130028","Type":"Unknown","Directional":false,"Links":[{"SourceID":130029,"TargetID":130028,"Directional":false}]},{"ID":1477,"SourceStructureID":67777,"TargetStructureID":909,"Label":"67777-909 via Unknown from 117808 -> 117807","Type":"Unknown","Directional":false,"Links":[{"SourceID":117808,"TargetID":117807,"Directional":false}]},{"ID":1478,"SourceStructureID":909,"TargetStructureID":68198,"Label":"909-68198 via Unknown from 117922 -> 117923","Type":"Unknown","Directional":false,"Links":[{"SourceID":117922,"TargetID":117923,"Directional":false}]},{"ID":1479,"SourceStructureID":83925,"TargetStructureID":909,"Label":"83925-909 via Adherens from 115960 -> 115959","Type":"Adherens","Directional":false,"Links":[{"SourceID":115960,"TargetID":115959,"Directional":false}]},{"ID":1480,"SourceStructureID":84624,"TargetStructureID":909,"Label":"84624-909 via Unknown from 130027 -> 130026","Type":"Unknown","Directional":false,"Links":[{"SourceID":130027,"TargetID":130026,"Directional":false}]},{"ID":1481,"SourceStructureID":85551,"TargetStructureID":909,"Label":"85551-909 via Adherens from 130845 -> 118468","Type":"Adherens","Directional":false,"Links":[{"SourceID":130845,"TargetID":118468,"Directional":false}]},{"ID":1482,"SourceStructureID":89119,"TargetStructureID":909,"Label":"89119-909 via Unknown from 120163 -> 120162","Type":"Unknown","Directional":false,"Links":[{"SourceID":120163,"TargetID":120162,"Directional":false}]},{"ID":1483,"SourceStructureID":909,"TargetStructureID":96489,"Label":"909-96489 via Adherens from 115951 -> 115961","Type":"Adherens","Directional":false,"Links":[{"SourceID":115951,"TargetID":115961,"Directional":false}]},{"ID":1484,"SourceStructureID":96943,"TargetStructureID":909,"Label":"96943-909 via Adherens from 136343 -> 118506","Type":"Adherens","Directional":false,"Links":[{"SourceID":136343,"TargetID":118506,"Directional":false}]},{"ID":1485,"SourceStructureID":96943,"TargetStructureID":909,"Label":"96943-909 via Gap Junction from 131007 -> 131006","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131007,"TargetID":131006,"Directional":false}]},{"ID":1486,"SourceStructureID":97113,"TargetStructureID":909,"Label":"97113-909 via Unknown from 115963 -> 115962","Type":"Unknown","Directional":false,"Links":[{"SourceID":115963,"TargetID":115962,"Directional":false}]},{"ID":1487,"SourceStructureID":909,"TargetStructureID":97124,"Label":"909-97124 via Unknown from 115964 -> 115965","Type":"Unknown","Directional":false,"Links":[{"SourceID":115964,"TargetID":115965,"Directional":false}]},{"ID":1488,"SourceStructureID":909,"TargetStructureID":97636,"Label":"909-97636 via Adherens from 97640 -> 97639, 97642 -> 97641","Type":"Adherens","Directional":false,"Links":[{"SourceID":97640,"TargetID":97639,"Directional":false},{"SourceID":97642,"TargetID":97641,"Directional":false}]},{"ID":1489,"SourceStructureID":99106,"TargetStructureID":909,"Label":"99106-909 via Adherens from 115912 -> 115911, 129575 -> 129576","Type":"Adherens","Directional":false,"Links":[{"SourceID":115912,"TargetID":115911,"Directional":false},{"SourceID":129575,"TargetID":129576,"Directional":false}]},{"ID":1490,"SourceStructureID":99106,"TargetStructureID":909,"Label":"99106-909 via Gap Junction from 136369 -> 57020","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136369,"TargetID":57020,"Directional":false}]},{"ID":1491,"SourceStructureID":99440,"TargetStructureID":909,"Label":"99440-909 via Adherens from 136329 -> 136328","Type":"Adherens","Directional":false,"Links":[{"SourceID":136329,"TargetID":136328,"Directional":false}]},{"ID":1492,"SourceStructureID":99440,"TargetStructureID":909,"Label":"99440-909 via Gap Junction from 115906 -> 115904","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115906,"TargetID":115904,"Directional":false}]},{"ID":1493,"SourceStructureID":909,"TargetStructureID":113086,"Label":"909-113086 via Unknown from 118384 -> 118386, 118387 -> 113108, 118393 -> 118394","Type":"Unknown","Directional":false,"Links":[{"SourceID":118384,"TargetID":118386,"Directional":false},{"SourceID":118387,"TargetID":113108,"Directional":false},{"SourceID":118393,"TargetID":118394,"Directional":false}]},{"ID":1494,"SourceStructureID":115206,"TargetStructureID":909,"Label":"115206-909 via Adherens from 117648 -> 117647","Type":"Adherens","Directional":false,"Links":[{"SourceID":117648,"TargetID":117647,"Directional":false}]},{"ID":1495,"SourceStructureID":115206,"TargetStructureID":909,"Label":"115206-909 via Unknown from 117666 -> 117665, 130085 -> 130084","Type":"Unknown","Directional":false,"Links":[{"SourceID":117666,"TargetID":117665,"Directional":false},{"SourceID":130085,"TargetID":130084,"Directional":false}]},{"ID":1496,"SourceStructureID":115860,"TargetStructureID":909,"Label":"115860-909 via Adherens from 130463 -> 130464","Type":"Adherens","Directional":false,"Links":[{"SourceID":130463,"TargetID":130464,"Directional":false}]},{"ID":1497,"SourceStructureID":115870,"TargetStructureID":909,"Label":"115870-909 via Adherens from 129490 -> 115869","Type":"Adherens","Directional":false,"Links":[{"SourceID":129490,"TargetID":115869,"Directional":false}]},{"ID":1498,"SourceStructureID":115870,"TargetStructureID":909,"Label":"115870-909 via Unknown from 130844 -> 130843","Type":"Unknown","Directional":false,"Links":[{"SourceID":130844,"TargetID":130843,"Directional":false}]},{"ID":1499,"SourceStructureID":115875,"TargetStructureID":909,"Label":"115875-909 via Adherens from 115876 -> 115874","Type":"Adherens","Directional":false,"Links":[{"SourceID":115876,"TargetID":115874,"Directional":false}]},{"ID":1500,"SourceStructureID":115890,"TargetStructureID":909,"Label":"115890-909 via Adherens from 115891 -> 115892","Type":"Adherens","Directional":false,"Links":[{"SourceID":115891,"TargetID":115892,"Directional":false}]},{"ID":1501,"SourceStructureID":909,"TargetStructureID":115919,"Label":"909-115919 via Unknown from 115918 -> 129579","Type":"Unknown","Directional":false,"Links":[{"SourceID":115918,"TargetID":129579,"Directional":false}]},{"ID":1502,"SourceStructureID":115935,"TargetStructureID":909,"Label":"115935-909 via Adherens from 115936 -> 115934","Type":"Adherens","Directional":false,"Links":[{"SourceID":115936,"TargetID":115934,"Directional":false}]},{"ID":1503,"SourceStructureID":909,"TargetStructureID":115940,"Label":"909-115940 via Unknown from 129612 -> 129613","Type":"Unknown","Directional":false,"Links":[{"SourceID":129612,"TargetID":129613,"Directional":false}]},{"ID":1504,"SourceStructureID":909,"TargetStructureID":115942,"Label":"909-115942 via Adherens from 115938 -> 115943","Type":"Adherens","Directional":false,"Links":[{"SourceID":115938,"TargetID":115943,"Directional":false}]},{"ID":1505,"SourceStructureID":115946,"TargetStructureID":909,"Label":"115946-909 via Unknown from 115948 -> 115947","Type":"Unknown","Directional":false,"Links":[{"SourceID":115948,"TargetID":115947,"Directional":false}]},{"ID":1506,"SourceStructureID":909,"TargetStructureID":115953,"Label":"909-115953 via Adherens from 115952 -> 115958","Type":"Adherens","Directional":false,"Links":[{"SourceID":115952,"TargetID":115958,"Directional":false}]},{"ID":1507,"SourceStructureID":909,"TargetStructureID":115992,"Label":"909-115992 via Adherens from 115993 -> 115994, 115995 -> 115996","Type":"Adherens","Directional":false,"Links":[{"SourceID":115993,"TargetID":115994,"Directional":false},{"SourceID":115995,"TargetID":115996,"Directional":false}]},{"ID":1508,"SourceStructureID":909,"TargetStructureID":116368,"Label":"909-116368 via Unknown from 116367 -> 130007","Type":"Unknown","Directional":false,"Links":[{"SourceID":116367,"TargetID":130007,"Directional":false}]},{"ID":1509,"SourceStructureID":116381,"TargetStructureID":909,"Label":"116381-909 via Adherens from 116389 -> 116384","Type":"Adherens","Directional":false,"Links":[{"SourceID":116389,"TargetID":116384,"Directional":false}]},{"ID":1510,"SourceStructureID":116381,"TargetStructureID":909,"Label":"116381-909 via Unknown from 116382 -> 116383","Type":"Unknown","Directional":false,"Links":[{"SourceID":116382,"TargetID":116383,"Directional":false}]},{"ID":1511,"SourceStructureID":909,"TargetStructureID":116762,"Label":"909-116762 via Unknown from 116763 -> 116764","Type":"Unknown","Directional":false,"Links":[{"SourceID":116763,"TargetID":116764,"Directional":false}]},{"ID":1512,"SourceStructureID":909,"TargetStructureID":116778,"Label":"909-116778 via Unknown from 116777 -> 116779","Type":"Unknown","Directional":false,"Links":[{"SourceID":116777,"TargetID":116779,"Directional":false}]},{"ID":1513,"SourceStructureID":117204,"TargetStructureID":909,"Label":"117204-909 via Adherens from 117205 -> 117206, 131028 -> 118641","Type":"Adherens","Directional":false,"Links":[{"SourceID":117205,"TargetID":117206,"Directional":false},{"SourceID":131028,"TargetID":118641,"Directional":false}]},{"ID":1514,"SourceStructureID":909,"TargetStructureID":117223,"Label":"909-117223 via Adherens from 131068 -> 131069","Type":"Adherens","Directional":false,"Links":[{"SourceID":131068,"TargetID":131069,"Directional":false}]},{"ID":1515,"SourceStructureID":909,"TargetStructureID":117223,"Label":"909-117223 via Unknown from 117222 -> 117230, 131030 -> 131029","Type":"Unknown","Directional":false,"Links":[{"SourceID":117222,"TargetID":117230,"Directional":false},{"SourceID":131030,"TargetID":131029,"Directional":false}]},{"ID":1516,"SourceStructureID":909,"TargetStructureID":117236,"Label":"909-117236 via Unknown from 117235 -> 117237","Type":"Unknown","Directional":false,"Links":[{"SourceID":117235,"TargetID":117237,"Directional":false}]},{"ID":1517,"SourceStructureID":117248,"TargetStructureID":909,"Label":"117248-909 via Unknown from 117249 -> 117250","Type":"Unknown","Directional":false,"Links":[{"SourceID":117249,"TargetID":117250,"Directional":false}]},{"ID":1518,"SourceStructureID":909,"TargetStructureID":117287,"Label":"909-117287 via Unknown from 117436 -> 117437","Type":"Unknown","Directional":false,"Links":[{"SourceID":117436,"TargetID":117437,"Directional":false}]},{"ID":1519,"SourceStructureID":117408,"TargetStructureID":909,"Label":"117408-909 via Unknown from 117410 -> 117409, 117416 -> 117417","Type":"Unknown","Directional":false,"Links":[{"SourceID":117410,"TargetID":117409,"Directional":false},{"SourceID":117416,"TargetID":117417,"Directional":false}]},{"ID":1520,"SourceStructureID":909,"TargetStructureID":117421,"Label":"909-117421 via Adherens from 117420 -> 117423","Type":"Adherens","Directional":false,"Links":[{"SourceID":117420,"TargetID":117423,"Directional":false}]},{"ID":1521,"SourceStructureID":117431,"TargetStructureID":909,"Label":"117431-909 via Unknown from 130238 -> 120165","Type":"Unknown","Directional":false,"Links":[{"SourceID":130238,"TargetID":120165,"Directional":false}]},{"ID":1522,"SourceStructureID":909,"TargetStructureID":117470,"Label":"909-117470 via Adherens from 117474 -> 117475","Type":"Adherens","Directional":false,"Links":[{"SourceID":117474,"TargetID":117475,"Directional":false}]},{"ID":1523,"SourceStructureID":909,"TargetStructureID":117662,"Label":"909-117662 via Unknown from 130127 -> 130128","Type":"Unknown","Directional":false,"Links":[{"SourceID":130127,"TargetID":130128,"Directional":false}]},{"ID":1524,"SourceStructureID":117673,"TargetStructureID":909,"Label":"117673-909 via Unknown from 117674 -> 117675","Type":"Unknown","Directional":false,"Links":[{"SourceID":117674,"TargetID":117675,"Directional":false}]},{"ID":1525,"SourceStructureID":117678,"TargetStructureID":909,"Label":"117678-909 via Unknown from 117688 -> 117687","Type":"Unknown","Directional":false,"Links":[{"SourceID":117688,"TargetID":117687,"Directional":false}]},{"ID":1526,"SourceStructureID":909,"TargetStructureID":117679,"Label":"909-117679 via Adherens from 117681 -> 117682","Type":"Adherens","Directional":false,"Links":[{"SourceID":117681,"TargetID":117682,"Directional":false}]},{"ID":1527,"SourceStructureID":117683,"TargetStructureID":909,"Label":"117683-909 via Adherens from 117684 -> 117458","Type":"Adherens","Directional":false,"Links":[{"SourceID":117684,"TargetID":117458,"Directional":false}]},{"ID":1528,"SourceStructureID":117800,"TargetStructureID":909,"Label":"117800-909 via Adherens from 117801 -> 117799","Type":"Adherens","Directional":false,"Links":[{"SourceID":117801,"TargetID":117799,"Directional":false}]},{"ID":1529,"SourceStructureID":117803,"TargetStructureID":909,"Label":"117803-909 via Adherens from 117804 -> 117802","Type":"Adherens","Directional":false,"Links":[{"SourceID":117804,"TargetID":117802,"Directional":false}]},{"ID":1530,"SourceStructureID":909,"TargetStructureID":117805,"Label":"909-117805 via Adherens from 117790 -> 117806","Type":"Adherens","Directional":false,"Links":[{"SourceID":117790,"TargetID":117806,"Directional":false}]},{"ID":1531,"SourceStructureID":117813,"TargetStructureID":909,"Label":"117813-909 via Unknown from 117814 -> 117810","Type":"Unknown","Directional":false,"Links":[{"SourceID":117814,"TargetID":117810,"Directional":false}]},{"ID":1532,"SourceStructureID":909,"TargetStructureID":117843,"Label":"909-117843 via Unknown from 130286 -> 130287, 130290 -> 130291","Type":"Unknown","Directional":false,"Links":[{"SourceID":130286,"TargetID":130287,"Directional":false},{"SourceID":130290,"TargetID":130291,"Directional":false}]},{"ID":1533,"SourceStructureID":117851,"TargetStructureID":909,"Label":"117851-909 via Adherens from 130284 -> 130285","Type":"Adherens","Directional":false,"Links":[{"SourceID":130284,"TargetID":130285,"Directional":false}]},{"ID":1534,"SourceStructureID":909,"TargetStructureID":117854,"Label":"909-117854 via Unknown from 130281 -> 130280","Type":"Unknown","Directional":false,"Links":[{"SourceID":130281,"TargetID":130280,"Directional":false}]},{"ID":1535,"SourceStructureID":117863,"TargetStructureID":909,"Label":"117863-909 via Unknown from 117864 -> 117862","Type":"Unknown","Directional":false,"Links":[{"SourceID":117864,"TargetID":117862,"Directional":false}]},{"ID":1536,"SourceStructureID":117873,"TargetStructureID":909,"Label":"117873-909 via Adherens from 117874 -> 53792","Type":"Adherens","Directional":false,"Links":[{"SourceID":117874,"TargetID":53792,"Directional":false}]},{"ID":1537,"SourceStructureID":909,"TargetStructureID":117876,"Label":"909-117876 via Unknown from 117871 -> 117878","Type":"Unknown","Directional":false,"Links":[{"SourceID":117871,"TargetID":117878,"Directional":false}]},{"ID":1538,"SourceStructureID":909,"TargetStructureID":117892,"Label":"909-117892 via Adherens from 117891 -> 117893","Type":"Adherens","Directional":false,"Links":[{"SourceID":117891,"TargetID":117893,"Directional":false}]},{"ID":1539,"SourceStructureID":117892,"TargetStructureID":909,"Label":"117892-909 via Unknown from 117903 -> 117825, 130264 -> 130263","Type":"Unknown","Directional":false,"Links":[{"SourceID":117903,"TargetID":117825,"Directional":false},{"SourceID":130264,"TargetID":130263,"Directional":false}]},{"ID":1540,"SourceStructureID":117904,"TargetStructureID":909,"Label":"117904-909 via Unknown from 130258 -> 130257","Type":"Unknown","Directional":false,"Links":[{"SourceID":130258,"TargetID":130257,"Directional":false}]},{"ID":1541,"SourceStructureID":909,"TargetStructureID":117906,"Label":"909-117906 via Adherens from 117823 -> 117907","Type":"Adherens","Directional":false,"Links":[{"SourceID":117823,"TargetID":117907,"Directional":false}]},{"ID":1542,"SourceStructureID":909,"TargetStructureID":118405,"Label":"909-118405 via Adherens from 130303 -> 130304","Type":"Adherens","Directional":false,"Links":[{"SourceID":130303,"TargetID":130304,"Directional":false}]},{"ID":1543,"SourceStructureID":118405,"TargetStructureID":909,"Label":"118405-909 via Unknown from 130301 -> 130300","Type":"Unknown","Directional":false,"Links":[{"SourceID":130301,"TargetID":130300,"Directional":false}]},{"ID":1544,"SourceStructureID":909,"TargetStructureID":118414,"Label":"909-118414 via Unknown from 118408 -> 118415","Type":"Unknown","Directional":false,"Links":[{"SourceID":118408,"TargetID":118415,"Directional":false}]},{"ID":1545,"SourceStructureID":909,"TargetStructureID":118449,"Label":"909-118449 via Unknown from 118445 -> 118450","Type":"Unknown","Directional":false,"Links":[{"SourceID":118445,"TargetID":118450,"Directional":false}]},{"ID":1546,"SourceStructureID":129610,"TargetStructureID":909,"Label":"129610-909 via Unknown from 129611 -> 129609","Type":"Unknown","Directional":false,"Links":[{"SourceID":129611,"TargetID":129609,"Directional":false}]},{"ID":1547,"SourceStructureID":909,"TargetStructureID":130228,"Label":"909-130228 via Unknown from 117392 -> 130230","Type":"Unknown","Directional":false,"Links":[{"SourceID":117392,"TargetID":130230,"Directional":false}]},{"ID":1548,"SourceStructureID":909,"TargetStructureID":136331,"Label":"909-136331 via Gap Junction from 120188 -> 136332","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120188,"TargetID":136332,"Directional":false}]},{"ID":1549,"SourceStructureID":136331,"TargetStructureID":909,"Label":"136331-909 via Unknown from 136336 -> 136335","Type":"Unknown","Directional":false,"Links":[{"SourceID":136336,"TargetID":136335,"Directional":false}]},{"ID":1550,"SourceStructureID":136884,"TargetStructureID":992,"Label":"136884-992 via Gap Junction from 136890 -> 136889","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136890,"TargetID":136889,"Directional":false}]},{"ID":1551,"SourceStructureID":1021,"TargetStructureID":1021,"Label":"1021-1021 via Adherens from 125245 -> 125244, 125315 -> 125316, 125412 -> 125413, 125516 -> 125517, 135754 -> 135753","Type":"Adherens","Directional":false,"Links":[{"SourceID":125245,"TargetID":125244,"Directional":false},{"SourceID":125315,"TargetID":125316,"Directional":false},{"SourceID":125412,"TargetID":125413,"Directional":false},{"SourceID":125516,"TargetID":125517,"Directional":false},{"SourceID":135754,"TargetID":135753,"Directional":false}]},{"ID":1552,"SourceStructureID":1021,"TargetStructureID":1021,"Label":"1021-1021 via Gap Junction from 19759 -> 115346, 115350 -> 115344, 118162 -> 118163, 124939 -> 124940, 125081 -> 19780, 125110 -> 125111, 125153 -> 125154, 125252 -> 125251, 125345 -> 125339, 125360 -> 125364, 125514 -> 125515, 125690 -> 125689, 125753 -> 125752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19759,"TargetID":115346,"Directional":false},{"SourceID":115350,"TargetID":115344,"Directional":false},{"SourceID":118162,"TargetID":118163,"Directional":false},{"SourceID":124939,"TargetID":124940,"Directional":false},{"SourceID":125081,"TargetID":19780,"Directional":false},{"SourceID":125110,"TargetID":125111,"Directional":false},{"SourceID":125153,"TargetID":125154,"Directional":false},{"SourceID":125252,"TargetID":125251,"Directional":false},{"SourceID":125345,"TargetID":125339,"Directional":false},{"SourceID":125360,"TargetID":125364,"Directional":false},{"SourceID":125514,"TargetID":125515,"Directional":false},{"SourceID":125690,"TargetID":125689,"Directional":false},{"SourceID":125753,"TargetID":125752,"Directional":false}]},{"ID":1553,"SourceStructureID":1021,"TargetStructureID":3756,"Label":"1021-3756 via Gap Junction from 19783 -> 56518, 124934 -> 124935, 128797 -> 128796","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19783,"TargetID":56518,"Directional":false},{"SourceID":124934,"TargetID":124935,"Directional":false},{"SourceID":128797,"TargetID":128796,"Directional":false}]},{"ID":1554,"SourceStructureID":5650,"TargetStructureID":1021,"Label":"5650-1021 via Adherens from 61079 -> 61078, 124876 -> 124875, 126791 -> 126790, 126792 -> 126793, 126794 -> 126795, 126848 -> 103030","Type":"Adherens","Directional":false,"Links":[{"SourceID":61079,"TargetID":61078,"Directional":false},{"SourceID":124876,"TargetID":124875,"Directional":false},{"SourceID":126791,"TargetID":126790,"Directional":false},{"SourceID":126792,"TargetID":126793,"Directional":false},{"SourceID":126794,"TargetID":126795,"Directional":false},{"SourceID":126848,"TargetID":103030,"Directional":false}]},{"ID":1555,"SourceStructureID":5650,"TargetStructureID":1021,"Label":"5650-1021 via Gap Junction from 39022 -> 39021, 52604 -> 52603, 61072 -> 61071, 61075 -> 28363, 61106 -> 61105, 103027 -> 103028, 104076 -> 104075, 105057 -> 105056, 105066 -> 105065, 105085 -> 105086, 106368 -> 29930, 118191 -> 118190, 124975 -> 124976, 125086 -> 125087","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39022,"TargetID":39021,"Directional":false},{"SourceID":52604,"TargetID":52603,"Directional":false},{"SourceID":61072,"TargetID":61071,"Directional":false},{"SourceID":61075,"TargetID":28363,"Directional":false},{"SourceID":61106,"TargetID":61105,"Directional":false},{"SourceID":103027,"TargetID":103028,"Directional":false},{"SourceID":104076,"TargetID":104075,"Directional":false},{"SourceID":105057,"TargetID":105056,"Directional":false},{"SourceID":105066,"TargetID":105065,"Directional":false},{"SourceID":105085,"TargetID":105086,"Directional":false},{"SourceID":106368,"TargetID":29930,"Directional":false},{"SourceID":118191,"TargetID":118190,"Directional":false},{"SourceID":124975,"TargetID":124976,"Directional":false},{"SourceID":125086,"TargetID":125087,"Directional":false}]},{"ID":1556,"SourceStructureID":6047,"TargetStructureID":1021,"Label":"6047-1021 via Adherens from 125529 -> 125530, 135750 -> 135749","Type":"Adherens","Directional":false,"Links":[{"SourceID":125529,"TargetID":125530,"Directional":false},{"SourceID":135750,"TargetID":135749,"Directional":false}]},{"ID":1557,"SourceStructureID":1021,"TargetStructureID":6047,"Label":"1021-6047 via Gap Junction from 19747 -> 19703, 112119 -> 112118, 113143 -> 113146, 113239 -> 113232, 124994 -> 124993","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19747,"TargetID":19703,"Directional":false},{"SourceID":112119,"TargetID":112118,"Directional":false},{"SourceID":113143,"TargetID":113146,"Directional":false},{"SourceID":113239,"TargetID":113232,"Directional":false},{"SourceID":124994,"TargetID":124993,"Directional":false}]},{"ID":1558,"SourceStructureID":6050,"TargetStructureID":1021,"Label":"6050-1021 via Adherens from 124968 -> 124967, 126797 -> 126796, 127479 -> 127478, 135751 -> 127479","Type":"Adherens","Directional":false,"Links":[{"SourceID":124968,"TargetID":124967,"Directional":false},{"SourceID":126797,"TargetID":126796,"Directional":false},{"SourceID":127479,"TargetID":127478,"Directional":false},{"SourceID":135751,"TargetID":127479,"Directional":false}]},{"ID":1559,"SourceStructureID":6050,"TargetStructureID":1021,"Label":"6050-1021 via Gap Junction from 51644 -> 51645, 113990 -> 113988, 114037 -> 114036, 114361 -> 114360, 114435 -> 114434, 124887 -> 124888","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51644,"TargetID":51645,"Directional":false},{"SourceID":113990,"TargetID":113988,"Directional":false},{"SourceID":114037,"TargetID":114036,"Directional":false},{"SourceID":114361,"TargetID":114360,"Directional":false},{"SourceID":114435,"TargetID":114434,"Directional":false},{"SourceID":124887,"TargetID":124888,"Directional":false}]},{"ID":1560,"SourceStructureID":1021,"TargetStructureID":6120,"Label":"1021-6120 via Adherens from 125497 -> 125498, 125499 -> 125500, 125649 -> 125650, 125716 -> 125714, 135748 -> 135747","Type":"Adherens","Directional":false,"Links":[{"SourceID":125497,"TargetID":125498,"Directional":false},{"SourceID":125499,"TargetID":125500,"Directional":false},{"SourceID":125649,"TargetID":125650,"Directional":false},{"SourceID":125716,"TargetID":125714,"Directional":false},{"SourceID":135748,"TargetID":135747,"Directional":false}]},{"ID":1561,"SourceStructureID":1021,"TargetStructureID":6120,"Label":"1021-6120 via Gap Junction from 19768 -> 56517, 30185 -> 30186, 56516 -> 19745, 57384 -> 57385, 58794 -> 58793, 61081 -> 61082, 110742 -> 110741, 111016 -> 111015, 111227 -> 111228, 115314 -> 119478, 125523 -> 125524, 125631 -> 125632, 125664 -> 125665","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19768,"TargetID":56517,"Directional":false},{"SourceID":30185,"TargetID":30186,"Directional":false},{"SourceID":56516,"TargetID":19745,"Directional":false},{"SourceID":57384,"TargetID":57385,"Directional":false},{"SourceID":58794,"TargetID":58793,"Directional":false},{"SourceID":61081,"TargetID":61082,"Directional":false},{"SourceID":110742,"TargetID":110741,"Directional":false},{"SourceID":111016,"TargetID":111015,"Directional":false},{"SourceID":111227,"TargetID":111228,"Directional":false},{"SourceID":115314,"TargetID":119478,"Directional":false},{"SourceID":125523,"TargetID":125524,"Directional":false},{"SourceID":125631,"TargetID":125632,"Directional":false},{"SourceID":125664,"TargetID":125665,"Directional":false}]},{"ID":1562,"SourceStructureID":1021,"TargetStructureID":6120,"Label":"1021-6120 via Touch from 111730 -> 111729","Type":"Touch","Directional":false,"Links":[{"SourceID":111730,"TargetID":111729,"Directional":false}]},{"ID":1563,"SourceStructureID":6121,"TargetStructureID":1021,"Label":"6121-1021 via Gap Junction from 125232 -> 125233, 125275 -> 125276, 125304 -> 125305, 125745 -> 125746","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125232,"TargetID":125233,"Directional":false},{"SourceID":125275,"TargetID":125276,"Directional":false},{"SourceID":125304,"TargetID":125305,"Directional":false},{"SourceID":125745,"TargetID":125746,"Directional":false}]},{"ID":1564,"SourceStructureID":6121,"TargetStructureID":1021,"Label":"6121-1021 via Touch from 125718 -> 125719","Type":"Touch","Directional":false,"Links":[{"SourceID":125718,"TargetID":125719,"Directional":false}]},{"ID":1565,"SourceStructureID":1021,"TargetStructureID":6203,"Label":"1021-6203 via Gap Junction from 125427 -> 125426","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125427,"TargetID":125426,"Directional":false}]},{"ID":1566,"SourceStructureID":6204,"TargetStructureID":1021,"Label":"6204-1021 via Adherens from 125419 -> 125420","Type":"Adherens","Directional":false,"Links":[{"SourceID":125419,"TargetID":125420,"Directional":false}]},{"ID":1567,"SourceStructureID":6204,"TargetStructureID":1021,"Label":"6204-1021 via Gap Junction from 118161 -> 115390","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118161,"TargetID":115390,"Directional":false}]},{"ID":1568,"SourceStructureID":7134,"TargetStructureID":1021,"Label":"7134-1021 via Unknown from 125113 -> 125114","Type":"Unknown","Directional":false,"Links":[{"SourceID":125113,"TargetID":125114,"Directional":false}]},{"ID":1569,"SourceStructureID":9769,"TargetStructureID":1021,"Label":"9769-1021 via Adherens from 126889 -> 126888","Type":"Adherens","Directional":false,"Links":[{"SourceID":126889,"TargetID":126888,"Directional":false}]},{"ID":1570,"SourceStructureID":16073,"TargetStructureID":1021,"Label":"16073-1021 via Unknown from 125764 -> 125507","Type":"Unknown","Directional":false,"Links":[{"SourceID":125764,"TargetID":125507,"Directional":false}]},{"ID":1571,"SourceStructureID":22994,"TargetStructureID":1021,"Label":"22994-1021 via Adherens from 126820 -> 126821","Type":"Adherens","Directional":false,"Links":[{"SourceID":126820,"TargetID":126821,"Directional":false}]},{"ID":1572,"SourceStructureID":1021,"TargetStructureID":22994,"Label":"1021-22994 via Gap Junction from 61125 -> 118121","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61125,"TargetID":118121,"Directional":false}]},{"ID":1573,"SourceStructureID":43716,"TargetStructureID":1021,"Label":"43716-1021 via Adherens from 125538 -> 125537","Type":"Adherens","Directional":false,"Links":[{"SourceID":125538,"TargetID":125537,"Directional":false}]},{"ID":1574,"SourceStructureID":1021,"TargetStructureID":53182,"Label":"1021-53182 via Adherens from 124974 -> 124973","Type":"Adherens","Directional":false,"Links":[{"SourceID":124974,"TargetID":124973,"Directional":false}]},{"ID":1575,"SourceStructureID":1021,"TargetStructureID":71351,"Label":"1021-71351 via Unknown from 125123 -> 125124","Type":"Unknown","Directional":false,"Links":[{"SourceID":125123,"TargetID":125124,"Directional":false}]},{"ID":1576,"SourceStructureID":1021,"TargetStructureID":103029,"Label":"1021-103029 via Adherens from 126848 -> 103031","Type":"Adherens","Directional":false,"Links":[{"SourceID":126848,"TargetID":103031,"Directional":false}]},{"ID":1577,"SourceStructureID":1021,"TargetStructureID":103029,"Label":"1021-103029 via Unknown from 115317 -> 115318","Type":"Unknown","Directional":false,"Links":[{"SourceID":115317,"TargetID":115318,"Directional":false}]},{"ID":1578,"SourceStructureID":1021,"TargetStructureID":105048,"Label":"1021-105048 via Adherens from 125138 -> 125139","Type":"Adherens","Directional":false,"Links":[{"SourceID":125138,"TargetID":125139,"Directional":false}]},{"ID":1579,"SourceStructureID":1021,"TargetStructureID":105048,"Label":"1021-105048 via Unknown from 125134 -> 125135","Type":"Unknown","Directional":false,"Links":[{"SourceID":125134,"TargetID":125135,"Directional":false}]},{"ID":1580,"SourceStructureID":105070,"TargetStructureID":1021,"Label":"105070-1021 via Adherens from 125129 -> 125128","Type":"Adherens","Directional":false,"Links":[{"SourceID":125129,"TargetID":125128,"Directional":false}]},{"ID":1581,"SourceStructureID":105095,"TargetStructureID":1021,"Label":"105095-1021 via Unknown from 126697 -> 124992","Type":"Unknown","Directional":false,"Links":[{"SourceID":126697,"TargetID":124992,"Directional":false}]},{"ID":1582,"SourceStructureID":110607,"TargetStructureID":1021,"Label":"110607-1021 via Unknown from 125630 -> 125629","Type":"Unknown","Directional":false,"Links":[{"SourceID":125630,"TargetID":125629,"Directional":false}]},{"ID":1583,"SourceStructureID":1021,"TargetStructureID":110997,"Label":"1021-110997 via Adherens from 125287 -> 125286","Type":"Adherens","Directional":false,"Links":[{"SourceID":125287,"TargetID":125286,"Directional":false}]},{"ID":1584,"SourceStructureID":110997,"TargetStructureID":1021,"Label":"110997-1021 via Gap Junction from 125284 -> 125285","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":125284,"TargetID":125285,"Directional":false}]},{"ID":1585,"SourceStructureID":1021,"TargetStructureID":111012,"Label":"1021-111012 via Adherens from 125264 -> 125265","Type":"Adherens","Directional":false,"Links":[{"SourceID":125264,"TargetID":125265,"Directional":false}]},{"ID":1586,"SourceStructureID":1021,"TargetStructureID":112182,"Label":"1021-112182 via Adherens from 125373 -> 125374","Type":"Adherens","Directional":false,"Links":[{"SourceID":125373,"TargetID":125374,"Directional":false}]},{"ID":1587,"SourceStructureID":112284,"TargetStructureID":1021,"Label":"112284-1021 via Adherens from 124997 -> 124996","Type":"Adherens","Directional":false,"Links":[{"SourceID":124997,"TargetID":124996,"Directional":false}]},{"ID":1588,"SourceStructureID":112389,"TargetStructureID":1021,"Label":"112389-1021 via Unknown from 126699 -> 124995","Type":"Unknown","Directional":false,"Links":[{"SourceID":126699,"TargetID":124995,"Directional":false}]},{"ID":1589,"SourceStructureID":113140,"TargetStructureID":1021,"Label":"113140-1021 via Unknown from 124924 -> 124923","Type":"Unknown","Directional":false,"Links":[{"SourceID":124924,"TargetID":124923,"Directional":false}]},{"ID":1590,"SourceStructureID":1637,"TargetStructureID":1637,"Label":"1637-1637 via Adherens from 117326 -> 117327","Type":"Adherens","Directional":false,"Links":[{"SourceID":117326,"TargetID":117327,"Directional":false}]},{"ID":1591,"SourceStructureID":1637,"TargetStructureID":1637,"Label":"1637-1637 via Gap Junction from 116898 -> 116897","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116898,"TargetID":116897,"Directional":false}]},{"ID":1592,"SourceStructureID":1637,"TargetStructureID":1637,"Label":"1637-1637 via Unknown from 117300 -> 117299","Type":"Unknown","Directional":false,"Links":[{"SourceID":117300,"TargetID":117299,"Directional":false}]},{"ID":1593,"SourceStructureID":1637,"TargetStructureID":1724,"Label":"1637-1724 via Gap Junction from 23707 -> 23708, 23718 -> 23722, 23732 -> 23733, 28625 -> 28626, 30416 -> 30417, 30419 -> 30420, 30429 -> 30433, 99327 -> 99328, 99432 -> 99433, 100274 -> 100273, 116751 -> 116750, 116753 -> 116752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23707,"TargetID":23708,"Directional":false},{"SourceID":23718,"TargetID":23722,"Directional":false},{"SourceID":23732,"TargetID":23733,"Directional":false},{"SourceID":28625,"TargetID":28626,"Directional":false},{"SourceID":30416,"TargetID":30417,"Directional":false},{"SourceID":30419,"TargetID":30420,"Directional":false},{"SourceID":30429,"TargetID":30433,"Directional":false},{"SourceID":99327,"TargetID":99328,"Directional":false},{"SourceID":99432,"TargetID":99433,"Directional":false},{"SourceID":100274,"TargetID":100273,"Directional":false},{"SourceID":116751,"TargetID":116750,"Directional":false},{"SourceID":116753,"TargetID":116752,"Directional":false}]},{"ID":1594,"SourceStructureID":5278,"TargetStructureID":1637,"Label":"5278-1637 via Adherens from 117323 -> 117322, 147317 -> 147318","Type":"Adherens","Directional":false,"Links":[{"SourceID":117323,"TargetID":117322,"Directional":false},{"SourceID":147317,"TargetID":147318,"Directional":false}]},{"ID":1595,"SourceStructureID":5278,"TargetStructureID":1637,"Label":"5278-1637 via Touch from 147312 -> 147313","Type":"Touch","Directional":false,"Links":[{"SourceID":147312,"TargetID":147313,"Directional":false}]},{"ID":1596,"SourceStructureID":5279,"TargetStructureID":1637,"Label":"5279-1637 via Gap Junction from 98653 -> 98652, 133850 -> 133851, 133863 -> 133862, 148026 -> 148025","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98653,"TargetID":98652,"Directional":false},{"SourceID":133850,"TargetID":133851,"Directional":false},{"SourceID":133863,"TargetID":133862,"Directional":false},{"SourceID":148026,"TargetID":148025,"Directional":false}]},{"ID":1597,"SourceStructureID":5517,"TargetStructureID":1637,"Label":"5517-1637 via Gap Junction from 49508 -> 49630, 49634 -> 49268, 116861 -> 116860","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49508,"TargetID":49630,"Directional":false},{"SourceID":49634,"TargetID":49268,"Directional":false},{"SourceID":116861,"TargetID":116860,"Directional":false}]},{"ID":1598,"SourceStructureID":5517,"TargetStructureID":1637,"Label":"5517-1637 via Unknown from 116814 -> 116813, 116854 -> 116853","Type":"Unknown","Directional":false,"Links":[{"SourceID":116814,"TargetID":116813,"Directional":false},{"SourceID":116854,"TargetID":116853,"Directional":false}]},{"ID":1599,"SourceStructureID":1637,"TargetStructureID":6155,"Label":"1637-6155 via Gap Junction from 30421 -> 30422","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30421,"TargetID":30422,"Directional":false}]},{"ID":1600,"SourceStructureID":20136,"TargetStructureID":1637,"Label":"20136-1637 via Adherens from 109770 -> 109771","Type":"Adherens","Directional":false,"Links":[{"SourceID":109770,"TargetID":109771,"Directional":false}]},{"ID":1601,"SourceStructureID":1637,"TargetStructureID":26079,"Label":"1637-26079 via Unknown from 116803 -> 116802","Type":"Unknown","Directional":false,"Links":[{"SourceID":116803,"TargetID":116802,"Directional":false}]},{"ID":1602,"SourceStructureID":1637,"TargetStructureID":48455,"Label":"1637-48455 via Unknown from 119544 -> 119543","Type":"Unknown","Directional":false,"Links":[{"SourceID":119544,"TargetID":119543,"Directional":false}]},{"ID":1603,"SourceStructureID":61933,"TargetStructureID":1637,"Label":"61933-1637 via Unknown from 117318 -> 117317","Type":"Unknown","Directional":false,"Links":[{"SourceID":117318,"TargetID":117317,"Directional":false}]},{"ID":1604,"SourceStructureID":1637,"TargetStructureID":99440,"Label":"1637-99440 via Unknown from 136322 -> 136321","Type":"Unknown","Directional":false,"Links":[{"SourceID":136322,"TargetID":136321,"Directional":false}]},{"ID":1605,"SourceStructureID":1724,"TargetStructureID":1724,"Label":"1724-1724 via Gap Junction from 20015 -> 3968, 47944 -> 48454, 48679 -> 48678","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20015,"TargetID":3968,"Directional":false},{"SourceID":47944,"TargetID":48454,"Directional":false},{"SourceID":48679,"TargetID":48678,"Directional":false}]},{"ID":1606,"SourceStructureID":3116,"TargetStructureID":1724,"Label":"3116-1724 via Gap Junction from 30353 -> 23757, 119084 -> 119083","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30353,"TargetID":23757,"Directional":false},{"SourceID":119084,"TargetID":119083,"Directional":false}]},{"ID":1607,"SourceStructureID":1724,"TargetStructureID":5278,"Label":"1724-5278 via Adherens from 147270 -> 147269, 147275 -> 147276","Type":"Adherens","Directional":false,"Links":[{"SourceID":147270,"TargetID":147269,"Directional":false},{"SourceID":147275,"TargetID":147276,"Directional":false}]},{"ID":1608,"SourceStructureID":5278,"TargetStructureID":1724,"Label":"5278-1724 via Gap Junction from 48476 -> 48475, 69857 -> 69856, 92135 -> 92134","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48476,"TargetID":48475,"Directional":false},{"SourceID":69857,"TargetID":69856,"Directional":false},{"SourceID":92135,"TargetID":92134,"Directional":false}]},{"ID":1609,"SourceStructureID":1724,"TargetStructureID":5279,"Label":"1724-5279 via Gap Junction from 48677 -> 48676","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48677,"TargetID":48676,"Directional":false}]},{"ID":1610,"SourceStructureID":5579,"TargetStructureID":1724,"Label":"5579-1724 via Adherens from 36806 -> 36807","Type":"Adherens","Directional":false,"Links":[{"SourceID":36806,"TargetID":36807,"Directional":false}]},{"ID":1611,"SourceStructureID":5579,"TargetStructureID":1724,"Label":"5579-1724 via Unknown from 100363 -> 100362, 114173 -> 114174, 119152 -> 119151","Type":"Unknown","Directional":false,"Links":[{"SourceID":100363,"TargetID":100362,"Directional":false},{"SourceID":114173,"TargetID":114174,"Directional":false},{"SourceID":119152,"TargetID":119151,"Directional":false}]},{"ID":1612,"SourceStructureID":6155,"TargetStructureID":1724,"Label":"6155-1724 via Gap Junction from 15689 -> 49046, 47939 -> 47938","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15689,"TargetID":49046,"Directional":false},{"SourceID":47939,"TargetID":47938,"Directional":false}]},{"ID":1613,"SourceStructureID":1724,"TargetStructureID":21299,"Label":"1724-21299 via Gap Junction from 48682 -> 48681","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48682,"TargetID":48681,"Directional":false}]},{"ID":1614,"SourceStructureID":1724,"TargetStructureID":26079,"Label":"1724-26079 via Gap Junction from 47361 -> 102030, 102004 -> 102003, 102008 -> 102009, 102930 -> 102929","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47361,"TargetID":102030,"Directional":false},{"SourceID":102004,"TargetID":102003,"Directional":false},{"SourceID":102008,"TargetID":102009,"Directional":false},{"SourceID":102930,"TargetID":102929,"Directional":false}]},{"ID":1615,"SourceStructureID":42527,"TargetStructureID":1724,"Label":"42527-1724 via Adherens from 42528 -> 42526","Type":"Adherens","Directional":false,"Links":[{"SourceID":42528,"TargetID":42526,"Directional":false}]},{"ID":1616,"SourceStructureID":1724,"TargetStructureID":43314,"Label":"1724-43314 via Unknown from 100252 -> 100253","Type":"Unknown","Directional":false,"Links":[{"SourceID":100252,"TargetID":100253,"Directional":false}]},{"ID":1617,"SourceStructureID":1724,"TargetStructureID":99106,"Label":"1724-99106 via Adherens from 99522 -> 99520","Type":"Adherens","Directional":false,"Links":[{"SourceID":99522,"TargetID":99520,"Directional":false}]},{"ID":1618,"SourceStructureID":1724,"TargetStructureID":99106,"Label":"1724-99106 via Gap Junction from 48474 -> 119133","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48474,"TargetID":119133,"Directional":false}]},{"ID":1619,"SourceStructureID":1724,"TargetStructureID":99106,"Label":"1724-99106 via Unknown from 99535 -> 99534","Type":"Unknown","Directional":false,"Links":[{"SourceID":99535,"TargetID":99534,"Directional":false}]},{"ID":1620,"SourceStructureID":1724,"TargetStructureID":99233,"Label":"1724-99233 via Unknown from 99235 -> 99234","Type":"Unknown","Directional":false,"Links":[{"SourceID":99235,"TargetID":99234,"Directional":false}]},{"ID":1621,"SourceStructureID":99236,"TargetStructureID":1724,"Label":"99236-1724 via Adherens from 99239 -> 99238","Type":"Adherens","Directional":false,"Links":[{"SourceID":99239,"TargetID":99238,"Directional":false}]},{"ID":1622,"SourceStructureID":99240,"TargetStructureID":1724,"Label":"99240-1724 via Unknown from 99242 -> 99241, 100325 -> 100324","Type":"Unknown","Directional":false,"Links":[{"SourceID":99242,"TargetID":99241,"Directional":false},{"SourceID":100325,"TargetID":100324,"Directional":false}]},{"ID":1623,"SourceStructureID":99325,"TargetStructureID":1724,"Label":"99325-1724 via Adherens from 99337 -> 99336","Type":"Adherens","Directional":false,"Links":[{"SourceID":99337,"TargetID":99336,"Directional":false}]},{"ID":1624,"SourceStructureID":99346,"TargetStructureID":1724,"Label":"99346-1724 via Unknown from 99353 -> 99352","Type":"Unknown","Directional":false,"Links":[{"SourceID":99353,"TargetID":99352,"Directional":false}]},{"ID":1625,"SourceStructureID":1724,"TargetStructureID":99538,"Label":"1724-99538 via Unknown from 99539 -> 99540","Type":"Unknown","Directional":false,"Links":[{"SourceID":99539,"TargetID":99540,"Directional":false}]},{"ID":1626,"SourceStructureID":99543,"TargetStructureID":1724,"Label":"99543-1724 via Gap Junction from 99545 -> 99544","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99545,"TargetID":99544,"Directional":false}]},{"ID":1627,"SourceStructureID":1724,"TargetStructureID":99543,"Label":"1724-99543 via Unknown from 99562 -> 99563","Type":"Unknown","Directional":false,"Links":[{"SourceID":99562,"TargetID":99563,"Directional":false}]},{"ID":1628,"SourceStructureID":99551,"TargetStructureID":1724,"Label":"99551-1724 via Unknown from 99553 -> 99552","Type":"Unknown","Directional":false,"Links":[{"SourceID":99553,"TargetID":99552,"Directional":false}]},{"ID":1629,"SourceStructureID":99557,"TargetStructureID":1724,"Label":"99557-1724 via Unknown from 99558 -> 99559","Type":"Unknown","Directional":false,"Links":[{"SourceID":99558,"TargetID":99559,"Directional":false}]},{"ID":1630,"SourceStructureID":1724,"TargetStructureID":99571,"Label":"1724-99571 via Adherens from 99572 -> 99573","Type":"Adherens","Directional":false,"Links":[{"SourceID":99572,"TargetID":99573,"Directional":false}]},{"ID":1631,"SourceStructureID":1724,"TargetStructureID":100242,"Label":"1724-100242 via Unknown from 100246 -> 100247","Type":"Unknown","Directional":false,"Links":[{"SourceID":100246,"TargetID":100247,"Directional":false}]},{"ID":1632,"SourceStructureID":1724,"TargetStructureID":100243,"Label":"1724-100243 via Unknown from 100244 -> 100245","Type":"Unknown","Directional":false,"Links":[{"SourceID":100244,"TargetID":100245,"Directional":false}]},{"ID":1633,"SourceStructureID":100327,"TargetStructureID":1724,"Label":"100327-1724 via Unknown from 100329 -> 100328","Type":"Unknown","Directional":false,"Links":[{"SourceID":100329,"TargetID":100328,"Directional":false}]},{"ID":1634,"SourceStructureID":100477,"TargetStructureID":1724,"Label":"100477-1724 via BC Conventional Synapse from 100482 -> 100481","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":100482,"TargetID":100481,"Directional":false}]},{"ID":1635,"SourceStructureID":1724,"TargetStructureID":100486,"Label":"1724-100486 via Unknown from 100514 -> 100515","Type":"Unknown","Directional":false,"Links":[{"SourceID":100514,"TargetID":100515,"Directional":false}]},{"ID":1636,"SourceStructureID":1724,"TargetStructureID":100528,"Label":"1724-100528 via Unknown from 119155 -> 119156","Type":"Unknown","Directional":false,"Links":[{"SourceID":119155,"TargetID":119156,"Directional":false}]},{"ID":1637,"SourceStructureID":1724,"TargetStructureID":100679,"Label":"1724-100679 via Unknown from 100681 -> 100680","Type":"Unknown","Directional":false,"Links":[{"SourceID":100681,"TargetID":100680,"Directional":false}]},{"ID":1638,"SourceStructureID":1724,"TargetStructureID":100752,"Label":"1724-100752 via Unknown from 100753 -> 100754","Type":"Unknown","Directional":false,"Links":[{"SourceID":100753,"TargetID":100754,"Directional":false}]},{"ID":1639,"SourceStructureID":100860,"TargetStructureID":1724,"Label":"100860-1724 via Adherens from 100861 -> 100862","Type":"Adherens","Directional":false,"Links":[{"SourceID":100861,"TargetID":100862,"Directional":false}]},{"ID":1640,"SourceStructureID":100868,"TargetStructureID":1724,"Label":"100868-1724 via Gap Junction from 100870 -> 20186","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":100870,"TargetID":20186,"Directional":false}]},{"ID":1641,"SourceStructureID":1724,"TargetStructureID":101501,"Label":"1724-101501 via Unknown from 101503 -> 101502","Type":"Unknown","Directional":false,"Links":[{"SourceID":101503,"TargetID":101502,"Directional":false}]},{"ID":1642,"SourceStructureID":1724,"TargetStructureID":101531,"Label":"1724-101531 via Unknown from 101533 -> 101532","Type":"Unknown","Directional":false,"Links":[{"SourceID":101533,"TargetID":101532,"Directional":false}]},{"ID":1643,"SourceStructureID":1724,"TargetStructureID":101536,"Label":"1724-101536 via Adherens from 101539 -> 101538","Type":"Adherens","Directional":false,"Links":[{"SourceID":101539,"TargetID":101538,"Directional":false}]},{"ID":1644,"SourceStructureID":1724,"TargetStructureID":101541,"Label":"1724-101541 via Unknown from 101542 -> 101543","Type":"Unknown","Directional":false,"Links":[{"SourceID":101542,"TargetID":101543,"Directional":false}]},{"ID":1645,"SourceStructureID":101544,"TargetStructureID":1724,"Label":"101544-1724 via Unknown from 101546 -> 101545","Type":"Unknown","Directional":false,"Links":[{"SourceID":101546,"TargetID":101545,"Directional":false}]},{"ID":1646,"SourceStructureID":101578,"TargetStructureID":1724,"Label":"101578-1724 via Adherens from 101580 -> 101579","Type":"Adherens","Directional":false,"Links":[{"SourceID":101580,"TargetID":101579,"Directional":false}]},{"ID":1647,"SourceStructureID":1724,"TargetStructureID":101592,"Label":"1724-101592 via Adherens from 47937 -> 101593","Type":"Adherens","Directional":false,"Links":[{"SourceID":47937,"TargetID":101593,"Directional":false}]},{"ID":1648,"SourceStructureID":101617,"TargetStructureID":1724,"Label":"101617-1724 via Adherens from 101619 -> 101618","Type":"Adherens","Directional":false,"Links":[{"SourceID":101619,"TargetID":101618,"Directional":false}]},{"ID":1649,"SourceStructureID":101620,"TargetStructureID":1724,"Label":"101620-1724 via Adherens from 101622 -> 101621","Type":"Adherens","Directional":false,"Links":[{"SourceID":101622,"TargetID":101621,"Directional":false}]},{"ID":1650,"SourceStructureID":1724,"TargetStructureID":101654,"Label":"1724-101654 via Unknown from 101655 -> 101656","Type":"Unknown","Directional":false,"Links":[{"SourceID":101655,"TargetID":101656,"Directional":false}]},{"ID":1651,"SourceStructureID":101683,"TargetStructureID":1724,"Label":"101683-1724 via Unknown from 101685 -> 101684","Type":"Unknown","Directional":false,"Links":[{"SourceID":101685,"TargetID":101684,"Directional":false}]},{"ID":1652,"SourceStructureID":1724,"TargetStructureID":101896,"Label":"1724-101896 via Adherens from 101898 -> 101897","Type":"Adherens","Directional":false,"Links":[{"SourceID":101898,"TargetID":101897,"Directional":false}]},{"ID":1653,"SourceStructureID":102517,"TargetStructureID":1724,"Label":"102517-1724 via Adherens from 102521 -> 102520, 102523 -> 47941","Type":"Adherens","Directional":false,"Links":[{"SourceID":102521,"TargetID":102520,"Directional":false},{"SourceID":102523,"TargetID":47941,"Directional":false}]},{"ID":1654,"SourceStructureID":2064,"TargetStructureID":6155,"Label":"2064-6155 via Unknown from 108354 -> 108356","Type":"Unknown","Directional":false,"Links":[{"SourceID":108354,"TargetID":108356,"Directional":false}]},{"ID":1655,"SourceStructureID":9504,"TargetStructureID":2065,"Label":"9504-2065 via Gap Junction from 36356 -> 36355","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36356,"TargetID":36355,"Directional":false}]},{"ID":1656,"SourceStructureID":2610,"TargetStructureID":3679,"Label":"2610-3679 via Gap Junction from 17968 -> 17967, 17969 -> 3862","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":17968,"TargetID":17967,"Directional":false},{"SourceID":17969,"TargetID":3862,"Directional":false}]},{"ID":1657,"SourceStructureID":5345,"TargetStructureID":2610,"Label":"5345-2610 via Gap Junction from 15673 -> 15669, 15680 -> 15670, 16811 -> 2843, 16820 -> 2829, 19040 -> 19039","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15673,"TargetID":15669,"Directional":false},{"SourceID":15680,"TargetID":15670,"Directional":false},{"SourceID":16811,"TargetID":2843,"Directional":false},{"SourceID":16820,"TargetID":2829,"Directional":false},{"SourceID":19040,"TargetID":19039,"Directional":false}]},{"ID":1658,"SourceStructureID":2610,"TargetStructureID":5513,"Label":"2610-5513 via Gap Junction from 2767 -> 15016, 15018 -> 2773","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":2767,"TargetID":15016,"Directional":false},{"SourceID":15018,"TargetID":2773,"Directional":false}]},{"ID":1659,"SourceStructureID":2610,"TargetStructureID":5517,"Label":"2610-5517 via Gap Junction from 15015 -> 96058, 96502 -> 96501","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15015,"TargetID":96058,"Directional":false},{"SourceID":96502,"TargetID":96501,"Directional":false}]},{"ID":1660,"SourceStructureID":6589,"TargetStructureID":2610,"Label":"6589-2610 via Gap Junction from 6592 -> 6588, 9550 -> 9549, 17173 -> 6597, 130607 -> 130606, 132636 -> 132635, 132694 -> 132695","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":6592,"TargetID":6588,"Directional":false},{"SourceID":9550,"TargetID":9549,"Directional":false},{"SourceID":17173,"TargetID":6597,"Directional":false},{"SourceID":130607,"TargetID":130606,"Directional":false},{"SourceID":132636,"TargetID":132635,"Directional":false},{"SourceID":132694,"TargetID":132695,"Directional":false}]},{"ID":1661,"SourceStructureID":6912,"TargetStructureID":2610,"Label":"6912-2610 via Gap Junction from 6938 -> 2735, 32378 -> 2923, 33145 -> 2771, 48353 -> 2768, 48366 -> 2776, 51077 -> 18216, 94439 -> 51135, 120870 -> 120869, 135037 -> 135035","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":6938,"TargetID":2735,"Directional":false},{"SourceID":32378,"TargetID":2923,"Directional":false},{"SourceID":33145,"TargetID":2771,"Directional":false},{"SourceID":48353,"TargetID":2768,"Directional":false},{"SourceID":48366,"TargetID":2776,"Directional":false},{"SourceID":51077,"TargetID":18216,"Directional":false},{"SourceID":94439,"TargetID":51135,"Directional":false},{"SourceID":120870,"TargetID":120869,"Directional":false},{"SourceID":135037,"TargetID":135035,"Directional":false}]},{"ID":1662,"SourceStructureID":6997,"TargetStructureID":2610,"Label":"6997-2610 via Adherens from 136835 -> 136836","Type":"Adherens","Directional":false,"Links":[{"SourceID":136835,"TargetID":136836,"Directional":false}]},{"ID":1663,"SourceStructureID":2610,"TargetStructureID":6997,"Label":"2610-6997 via Gap Junction from 9396 -> 31420, 22019 -> 22018, 22280 -> 22279, 22851 -> 21923, 56986 -> 56985, 56993 -> 56992, 95585 -> 95584, 99172 -> 99171, 135004 -> 135009, 135034 -> 135033","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9396,"TargetID":31420,"Directional":false},{"SourceID":22019,"TargetID":22018,"Directional":false},{"SourceID":22280,"TargetID":22279,"Directional":false},{"SourceID":22851,"TargetID":21923,"Directional":false},{"SourceID":56986,"TargetID":56985,"Directional":false},{"SourceID":56993,"TargetID":56992,"Directional":false},{"SourceID":95585,"TargetID":95584,"Directional":false},{"SourceID":99172,"TargetID":99171,"Directional":false},{"SourceID":135004,"TargetID":135009,"Directional":false},{"SourceID":135034,"TargetID":135033,"Directional":false}]},{"ID":1664,"SourceStructureID":8037,"TargetStructureID":2610,"Label":"8037-2610 via Gap Junction from 11384 -> 2847, 15668 -> 15667, 17903 -> 17902","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":11384,"TargetID":2847,"Directional":false},{"SourceID":15668,"TargetID":15667,"Directional":false},{"SourceID":17903,"TargetID":17902,"Directional":false}]},{"ID":1665,"SourceStructureID":2610,"TargetStructureID":8990,"Label":"2610-8990 via Adherens from 95939 -> 95938, 95943 -> 95942, 95944 -> 17958","Type":"Adherens","Directional":false,"Links":[{"SourceID":95939,"TargetID":95938,"Directional":false},{"SourceID":95943,"TargetID":95942,"Directional":false},{"SourceID":95944,"TargetID":17958,"Directional":false}]},{"ID":1666,"SourceStructureID":2610,"TargetStructureID":8990,"Label":"2610-8990 via Unknown from 95941 -> 95940","Type":"Unknown","Directional":false,"Links":[{"SourceID":95941,"TargetID":95940,"Directional":false}]},{"ID":1667,"SourceStructureID":9693,"TargetStructureID":2610,"Label":"9693-2610 via Adherens from 120074 -> 120079, 134728 -> 134729, 135023 -> 135024","Type":"Adherens","Directional":false,"Links":[{"SourceID":120074,"TargetID":120079,"Directional":false},{"SourceID":134728,"TargetID":134729,"Directional":false},{"SourceID":135023,"TargetID":135024,"Directional":false}]},{"ID":1668,"SourceStructureID":9693,"TargetStructureID":2610,"Label":"9693-2610 via Gap Junction from 9760 -> 9761, 15012 -> 2861, 18732 -> 18733, 101442 -> 101443, 119819 -> 17221, 120073 -> 120078, 120076 -> 120077, 134723 -> 119839, 134727 -> 120088, 134731 -> 95761, 134990 -> 134991","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9760,"TargetID":9761,"Directional":false},{"SourceID":15012,"TargetID":2861,"Directional":false},{"SourceID":18732,"TargetID":18733,"Directional":false},{"SourceID":101442,"TargetID":101443,"Directional":false},{"SourceID":119819,"TargetID":17221,"Directional":false},{"SourceID":120073,"TargetID":120078,"Directional":false},{"SourceID":120076,"TargetID":120077,"Directional":false},{"SourceID":134723,"TargetID":119839,"Directional":false},{"SourceID":134727,"TargetID":120088,"Directional":false},{"SourceID":134731,"TargetID":95761,"Directional":false},{"SourceID":134990,"TargetID":134991,"Directional":false}]},{"ID":1669,"SourceStructureID":2610,"TargetStructureID":25405,"Label":"2610-25405 via Adherens from 25409 -> 25408","Type":"Adherens","Directional":false,"Links":[{"SourceID":25409,"TargetID":25408,"Directional":false}]},{"ID":1670,"SourceStructureID":2610,"TargetStructureID":25466,"Label":"2610-25466 via Adherens from 25472 -> 25471","Type":"Adherens","Directional":false,"Links":[{"SourceID":25472,"TargetID":25471,"Directional":false}]},{"ID":1671,"SourceStructureID":25669,"TargetStructureID":2610,"Label":"25669-2610 via Adherens from 25684 -> 17982","Type":"Adherens","Directional":false,"Links":[{"SourceID":25684,"TargetID":17982,"Directional":false}]},{"ID":1672,"SourceStructureID":2610,"TargetStructureID":28886,"Label":"2610-28886 via Adherens from 135006 -> 135007","Type":"Adherens","Directional":false,"Links":[{"SourceID":135006,"TargetID":135007,"Directional":false}]},{"ID":1673,"SourceStructureID":28886,"TargetStructureID":2610,"Label":"28886-2610 via Gap Junction from 51296 -> 51297, 51324 -> 51323, 51370 -> 2924, 135008 -> 135005","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51296,"TargetID":51297,"Directional":false},{"SourceID":51324,"TargetID":51323,"Directional":false},{"SourceID":51370,"TargetID":2924,"Directional":false},{"SourceID":135008,"TargetID":135005,"Directional":false}]},{"ID":1674,"SourceStructureID":39530,"TargetStructureID":2610,"Label":"39530-2610 via Adherens from 39554 -> 39546","Type":"Adherens","Directional":false,"Links":[{"SourceID":39554,"TargetID":39546,"Directional":false}]},{"ID":1675,"SourceStructureID":45894,"TargetStructureID":2610,"Label":"45894-2610 via Gap Junction from 46929 -> 2971","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46929,"TargetID":2971,"Directional":false}]},{"ID":1676,"SourceStructureID":3116,"TargetStructureID":3116,"Label":"3116-3116 via Gap Junction from 123280 -> 123281","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123280,"TargetID":123281,"Directional":false}]},{"ID":1677,"SourceStructureID":4569,"TargetStructureID":3116,"Label":"4569-3116 via Gap Junction from 23807 -> 23821, 23827 -> 23828, 23830 -> 23831, 46762 -> 46761, 47842 -> 23787, 52504 -> 52505, 52538 -> 52540","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23807,"TargetID":23821,"Directional":false},{"SourceID":23827,"TargetID":23828,"Directional":false},{"SourceID":23830,"TargetID":23831,"Directional":false},{"SourceID":46762,"TargetID":46761,"Directional":false},{"SourceID":47842,"TargetID":23787,"Directional":false},{"SourceID":52504,"TargetID":52505,"Directional":false},{"SourceID":52538,"TargetID":52540,"Directional":false}]},{"ID":1678,"SourceStructureID":3116,"TargetStructureID":5278,"Label":"3116-5278 via Touch from 92154 -> 92153","Type":"Touch","Directional":false,"Links":[{"SourceID":92154,"TargetID":92153,"Directional":false}]},{"ID":1679,"SourceStructureID":3116,"TargetStructureID":6155,"Label":"3116-6155 via Gap Junction from 122365 -> 122364","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122365,"TargetID":122364,"Directional":false}]},{"ID":1680,"SourceStructureID":3116,"TargetStructureID":6155,"Label":"3116-6155 via Touch from 106444 -> 106445","Type":"Touch","Directional":false,"Links":[{"SourceID":106444,"TargetID":106445,"Directional":false}]},{"ID":1681,"SourceStructureID":29827,"TargetStructureID":3116,"Label":"29827-3116 via Unknown from 135534 -> 135533","Type":"Unknown","Directional":false,"Links":[{"SourceID":135534,"TargetID":135533,"Directional":false}]},{"ID":1682,"SourceStructureID":83179,"TargetStructureID":3116,"Label":"83179-3116 via Unknown from 92479 -> 92480","Type":"Unknown","Directional":false,"Links":[{"SourceID":92479,"TargetID":92480,"Directional":false}]},{"ID":1683,"SourceStructureID":91449,"TargetStructureID":3116,"Label":"91449-3116 via Adherens from 91450 -> 91451","Type":"Adherens","Directional":false,"Links":[{"SourceID":91450,"TargetID":91451,"Directional":false}]},{"ID":1684,"SourceStructureID":91544,"TargetStructureID":3116,"Label":"91544-3116 via Adherens from 91546 -> 91545","Type":"Adherens","Directional":false,"Links":[{"SourceID":91546,"TargetID":91545,"Directional":false}]},{"ID":1685,"SourceStructureID":98898,"TargetStructureID":3116,"Label":"98898-3116 via Gap Junction from 98903 -> 98904","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98903,"TargetID":98904,"Directional":false}]},{"ID":1686,"SourceStructureID":3116,"TargetStructureID":99025,"Label":"3116-99025 via Gap Junction from 99027 -> 99026","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99027,"TargetID":99026,"Directional":false}]},{"ID":1687,"SourceStructureID":3257,"TargetStructureID":4569,"Label":"3257-4569 via Gap Junction from 16373 -> 52526, 47488 -> 47489, 98447 -> 98446, 99087 -> 99086","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16373,"TargetID":52526,"Directional":false},{"SourceID":47488,"TargetID":47489,"Directional":false},{"SourceID":98447,"TargetID":98446,"Directional":false},{"SourceID":99087,"TargetID":99086,"Directional":false}]},{"ID":1688,"SourceStructureID":4570,"TargetStructureID":3257,"Label":"4570-3257 via Gap Junction from 10669 -> 8239, 10868 -> 10852, 14407 -> 14406","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10669,"TargetID":8239,"Directional":false},{"SourceID":10868,"TargetID":10852,"Directional":false},{"SourceID":14407,"TargetID":14406,"Directional":false}]},{"ID":1689,"SourceStructureID":3257,"TargetStructureID":4850,"Label":"3257-4850 via Adherens from 97990 -> 14565","Type":"Adherens","Directional":false,"Links":[{"SourceID":97990,"TargetID":14565,"Directional":false}]},{"ID":1690,"SourceStructureID":5635,"TargetStructureID":3257,"Label":"5635-3257 via Gap Junction from 55981 -> 55980","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55981,"TargetID":55980,"Directional":false}]},{"ID":1691,"SourceStructureID":3257,"TargetStructureID":5860,"Label":"3257-5860 via Gap Junction from 29681 -> 6198, 29682 -> 29683","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29681,"TargetID":6198,"Directional":false},{"SourceID":29682,"TargetID":29683,"Directional":false}]},{"ID":1692,"SourceStructureID":6117,"TargetStructureID":3257,"Label":"6117-3257 via Gap Junction from 59088 -> 59083","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59088,"TargetID":59083,"Directional":false}]},{"ID":1693,"SourceStructureID":6169,"TargetStructureID":3257,"Label":"6169-3257 via Gap Junction from 16193 -> 16203, 16225 -> 16214, 18413 -> 18412, 23058 -> 11912, 29696 -> 29695, 39559 -> 16213, 92700 -> 92699, 133080 -> 9142","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16193,"TargetID":16203,"Directional":false},{"SourceID":16225,"TargetID":16214,"Directional":false},{"SourceID":18413,"TargetID":18412,"Directional":false},{"SourceID":23058,"TargetID":11912,"Directional":false},{"SourceID":29696,"TargetID":29695,"Directional":false},{"SourceID":39559,"TargetID":16213,"Directional":false},{"SourceID":92700,"TargetID":92699,"Directional":false},{"SourceID":133080,"TargetID":9142,"Directional":false}]},{"ID":1694,"SourceStructureID":7564,"TargetStructureID":3257,"Label":"7564-3257 via Gap Junction from 29691 -> 29690","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29691,"TargetID":29690,"Directional":false}]},{"ID":1695,"SourceStructureID":3257,"TargetStructureID":10959,"Label":"3257-10959 via Adherens from 86796 -> 86795","Type":"Adherens","Directional":false,"Links":[{"SourceID":86796,"TargetID":86795,"Directional":false}]},{"ID":1696,"SourceStructureID":3257,"TargetStructureID":42432,"Label":"3257-42432 via Adherens from 42436 -> 42435, 42441 -> 42440","Type":"Adherens","Directional":false,"Links":[{"SourceID":42436,"TargetID":42435,"Directional":false},{"SourceID":42441,"TargetID":42440,"Directional":false}]},{"ID":1697,"SourceStructureID":79317,"TargetStructureID":3257,"Label":"79317-3257 via Gap Junction from 98985 -> 98986","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98985,"TargetID":98986,"Directional":false}]},{"ID":1698,"SourceStructureID":86305,"TargetStructureID":3257,"Label":"86305-3257 via Adherens from 86306 -> 86307","Type":"Adherens","Directional":false,"Links":[{"SourceID":86306,"TargetID":86307,"Directional":false}]},{"ID":1699,"SourceStructureID":86751,"TargetStructureID":3257,"Label":"86751-3257 via Adherens from 86752 -> 16372","Type":"Adherens","Directional":false,"Links":[{"SourceID":86752,"TargetID":16372,"Directional":false}]},{"ID":1700,"SourceStructureID":86761,"TargetStructureID":3257,"Label":"86761-3257 via Adherens from 86772 -> 9174","Type":"Adherens","Directional":false,"Links":[{"SourceID":86772,"TargetID":9174,"Directional":false}]},{"ID":1701,"SourceStructureID":86822,"TargetStructureID":3257,"Label":"86822-3257 via Adherens from 86823 -> 86825, 86824 -> 86826, 86827 -> 86828, 86830 -> 86829","Type":"Adherens","Directional":false,"Links":[{"SourceID":86823,"TargetID":86825,"Directional":false},{"SourceID":86824,"TargetID":86826,"Directional":false},{"SourceID":86827,"TargetID":86828,"Directional":false},{"SourceID":86830,"TargetID":86829,"Directional":false}]},{"ID":1702,"SourceStructureID":86876,"TargetStructureID":3257,"Label":"86876-3257 via Adherens from 86880 -> 86881, 86882 -> 9173, 86884 -> 86883","Type":"Adherens","Directional":false,"Links":[{"SourceID":86880,"TargetID":86881,"Directional":false},{"SourceID":86882,"TargetID":9173,"Directional":false},{"SourceID":86884,"TargetID":86883,"Directional":false}]},{"ID":1703,"SourceStructureID":3257,"TargetStructureID":98127,"Label":"3257-98127 via Adherens from 98900 -> 98899","Type":"Adherens","Directional":false,"Links":[{"SourceID":98900,"TargetID":98899,"Directional":false}]},{"ID":1704,"SourceStructureID":135052,"TargetStructureID":3257,"Label":"135052-3257 via Gap Junction from 135057 -> 15461","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135057,"TargetID":15461,"Directional":false}]},{"ID":1705,"SourceStructureID":3679,"TargetStructureID":3679,"Label":"3679-3679 via Adherens from 13461 -> 130120","Type":"Adherens","Directional":false,"Links":[{"SourceID":13461,"TargetID":130120,"Directional":false}]},{"ID":1706,"SourceStructureID":3679,"TargetStructureID":3679,"Label":"3679-3679 via Gap Junction from 33033 -> 14922, 33035 -> 33034, 33037 -> 33036, 62877 -> 33029","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":33033,"TargetID":14922,"Directional":false},{"SourceID":33035,"TargetID":33034,"Directional":false},{"SourceID":33037,"TargetID":33036,"Directional":false},{"SourceID":62877,"TargetID":33029,"Directional":false}]},{"ID":1707,"SourceStructureID":3679,"TargetStructureID":3679,"Label":"3679-3679 via Unknown from 92720 -> 92721","Type":"Unknown","Directional":false,"Links":[{"SourceID":92720,"TargetID":92721,"Directional":false}]},{"ID":1708,"SourceStructureID":4850,"TargetStructureID":3679,"Label":"4850-3679 via Adherens from 14212 -> 8016","Type":"Adherens","Directional":false,"Links":[{"SourceID":14212,"TargetID":8016,"Directional":false}]},{"ID":1709,"SourceStructureID":3679,"TargetStructureID":5017,"Label":"3679-5017 via Adherens from 115709 -> 115708","Type":"Adherens","Directional":false,"Links":[{"SourceID":115709,"TargetID":115708,"Directional":false}]},{"ID":1710,"SourceStructureID":3679,"TargetStructureID":5150,"Label":"3679-5150 via Adherens from 131324 -> 131325","Type":"Adherens","Directional":false,"Links":[{"SourceID":131324,"TargetID":131325,"Directional":false}]},{"ID":1711,"SourceStructureID":5279,"TargetStructureID":3679,"Label":"5279-3679 via Gap Junction from 6340 -> 3709, 6359 -> 6355, 49258 -> 3784, 92540 -> 92539, 97206 -> 97207, 97531 -> 3779, 97577 -> 27431, 133860 -> 133861, 147965 -> 3782","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":6340,"TargetID":3709,"Directional":false},{"SourceID":6359,"TargetID":6355,"Directional":false},{"SourceID":49258,"TargetID":3784,"Directional":false},{"SourceID":92540,"TargetID":92539,"Directional":false},{"SourceID":97206,"TargetID":97207,"Directional":false},{"SourceID":97531,"TargetID":3779,"Directional":false},{"SourceID":97577,"TargetID":27431,"Directional":false},{"SourceID":133860,"TargetID":133861,"Directional":false},{"SourceID":147965,"TargetID":3782,"Directional":false}]},{"ID":1712,"SourceStructureID":5283,"TargetStructureID":3679,"Label":"5283-3679 via Adherens from 124154 -> 135063, 132179 -> 132178","Type":"Adherens","Directional":false,"Links":[{"SourceID":124154,"TargetID":135063,"Directional":false},{"SourceID":132179,"TargetID":132178,"Directional":false}]},{"ID":1713,"SourceStructureID":5283,"TargetStructureID":3679,"Label":"5283-3679 via Gap Junction from 22413 -> 22412, 130542 -> 130541, 131659 -> 131658, 131696 -> 131697, 132090 -> 66991, 132176 -> 132177, 132193 -> 132192, 132293 -> 132292, 132308 -> 132307, 132310 -> 132309","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":22413,"TargetID":22412,"Directional":false},{"SourceID":130542,"TargetID":130541,"Directional":false},{"SourceID":131659,"TargetID":131658,"Directional":false},{"SourceID":131696,"TargetID":131697,"Directional":false},{"SourceID":132090,"TargetID":66991,"Directional":false},{"SourceID":132176,"TargetID":132177,"Directional":false},{"SourceID":132193,"TargetID":132192,"Directional":false},{"SourceID":132293,"TargetID":132292,"Directional":false},{"SourceID":132308,"TargetID":132307,"Directional":false},{"SourceID":132310,"TargetID":132309,"Directional":false}]},{"ID":1714,"SourceStructureID":3679,"TargetStructureID":5284,"Label":"3679-5284 via Gap Junction from 7952 -> 113470, 23458 -> 5186, 61065 -> 7953, 113408 -> 113407, 113630 -> 113629, 113647 -> 113646","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":7952,"TargetID":113470,"Directional":false},{"SourceID":23458,"TargetID":5186,"Directional":false},{"SourceID":61065,"TargetID":7953,"Directional":false},{"SourceID":113408,"TargetID":113407,"Directional":false},{"SourceID":113630,"TargetID":113629,"Directional":false},{"SourceID":113647,"TargetID":113646,"Directional":false}]},{"ID":1715,"SourceStructureID":5303,"TargetStructureID":3679,"Label":"5303-3679 via Adherens from 102641 -> 102642","Type":"Adherens","Directional":false,"Links":[{"SourceID":102641,"TargetID":102642,"Directional":false}]},{"ID":1716,"SourceStructureID":3679,"TargetStructureID":5394,"Label":"3679-5394 via Adherens from 7961 -> 77065, 77066 -> 7963, 87954 -> 87953","Type":"Adherens","Directional":false,"Links":[{"SourceID":7961,"TargetID":77065,"Directional":false},{"SourceID":77066,"TargetID":7963,"Directional":false},{"SourceID":87954,"TargetID":87953,"Directional":false}]},{"ID":1717,"SourceStructureID":5561,"TargetStructureID":3679,"Label":"5561-3679 via Gap Junction from 97096 -> 97103","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97096,"TargetID":97103,"Directional":false}]},{"ID":1718,"SourceStructureID":3679,"TargetStructureID":6117,"Label":"3679-6117 via Gap Junction from 22393 -> 22392, 30881 -> 7955, 83145 -> 83144, 83947 -> 83946, 134148 -> 134147","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":22393,"TargetID":22392,"Directional":false},{"SourceID":30881,"TargetID":7955,"Directional":false},{"SourceID":83145,"TargetID":83144,"Directional":false},{"SourceID":83947,"TargetID":83946,"Directional":false},{"SourceID":134148,"TargetID":134147,"Directional":false}]},{"ID":1719,"SourceStructureID":6169,"TargetStructureID":3679,"Label":"6169-3679 via Gap Junction from 10839 -> 3729, 14913 -> 3719, 14927 -> 9697, 14942 -> 9699, 16326 -> 8023, 16438 -> 16437, 16761 -> 16760, 18159 -> 18157, 18404 -> 18403, 24657 -> 9695, 29706 -> 29705, 41036 -> 3725, 87743 -> 3752, 87744 -> 3755, 133064 -> 132902","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10839,"TargetID":3729,"Directional":false},{"SourceID":14913,"TargetID":3719,"Directional":false},{"SourceID":14927,"TargetID":9697,"Directional":false},{"SourceID":14942,"TargetID":9699,"Directional":false},{"SourceID":16326,"TargetID":8023,"Directional":false},{"SourceID":16438,"TargetID":16437,"Directional":false},{"SourceID":16761,"TargetID":16760,"Directional":false},{"SourceID":18159,"TargetID":18157,"Directional":false},{"SourceID":18404,"TargetID":18403,"Directional":false},{"SourceID":24657,"TargetID":9695,"Directional":false},{"SourceID":29706,"TargetID":29705,"Directional":false},{"SourceID":41036,"TargetID":3725,"Directional":false},{"SourceID":87743,"TargetID":3752,"Directional":false},{"SourceID":87744,"TargetID":3755,"Directional":false},{"SourceID":133064,"TargetID":132902,"Directional":false}]},{"ID":1720,"SourceStructureID":3679,"TargetStructureID":7050,"Label":"3679-7050 via Gap Junction from 7998 -> 24612","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":7998,"TargetID":24612,"Directional":false}]},{"ID":1721,"SourceStructureID":3679,"TargetStructureID":8037,"Label":"3679-8037 via Gap Junction from 148174 -> 148173","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":148174,"TargetID":148173,"Directional":false}]},{"ID":1722,"SourceStructureID":3679,"TargetStructureID":9643,"Label":"3679-9643 via Adherens from 9656 -> 9655","Type":"Adherens","Directional":false,"Links":[{"SourceID":9656,"TargetID":9655,"Directional":false}]},{"ID":1723,"SourceStructureID":12897,"TargetStructureID":3679,"Label":"12897-3679 via Gap Junction from 24625 -> 24624, 24746 -> 5208, 24751 -> 24750, 24755 -> 24754, 132303 -> 132304, 132312 -> 132313","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24625,"TargetID":24624,"Directional":false},{"SourceID":24746,"TargetID":5208,"Directional":false},{"SourceID":24751,"TargetID":24750,"Directional":false},{"SourceID":24755,"TargetID":24754,"Directional":false},{"SourceID":132303,"TargetID":132304,"Directional":false},{"SourceID":132312,"TargetID":132313,"Directional":false}]},{"ID":1724,"SourceStructureID":16026,"TargetStructureID":3679,"Label":"16026-3679 via Adherens from 91106 -> 134570, 92902 -> 92903, 134570 -> 91107, 134686 -> 134685","Type":"Adherens","Directional":false,"Links":[{"SourceID":91106,"TargetID":134570,"Directional":false},{"SourceID":92902,"TargetID":92903,"Directional":false},{"SourceID":134570,"TargetID":91107,"Directional":false},{"SourceID":134686,"TargetID":134685,"Directional":false}]},{"ID":1725,"SourceStructureID":16026,"TargetStructureID":3679,"Label":"16026-3679 via Gap Junction from 24594 -> 5189, 66411 -> 66410, 91052 -> 91051, 91054 -> 91053, 91108 -> 91109, 91131 -> 91141, 91259 -> 91250, 91325 -> 91174, 92566 -> 92565, 92761 -> 92760, 124831 -> 124832, 134441 -> 134440","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24594,"TargetID":5189,"Directional":false},{"SourceID":66411,"TargetID":66410,"Directional":false},{"SourceID":91052,"TargetID":91051,"Directional":false},{"SourceID":91054,"TargetID":91053,"Directional":false},{"SourceID":91108,"TargetID":91109,"Directional":false},{"SourceID":91131,"TargetID":91141,"Directional":false},{"SourceID":91259,"TargetID":91250,"Directional":false},{"SourceID":91325,"TargetID":91174,"Directional":false},{"SourceID":92566,"TargetID":92565,"Directional":false},{"SourceID":92761,"TargetID":92760,"Directional":false},{"SourceID":124831,"TargetID":124832,"Directional":false},{"SourceID":134441,"TargetID":134440,"Directional":false}]},{"ID":1726,"SourceStructureID":20136,"TargetStructureID":3679,"Label":"20136-3679 via Gap Junction from 120517 -> 120516","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120517,"TargetID":120516,"Directional":false}]},{"ID":1727,"SourceStructureID":3679,"TargetStructureID":39331,"Label":"3679-39331 via Adherens from 39334 -> 39333","Type":"Adherens","Directional":false,"Links":[{"SourceID":39334,"TargetID":39333,"Directional":false}]},{"ID":1728,"SourceStructureID":3679,"TargetStructureID":40931,"Label":"3679-40931 via Adherens from 123159 -> 123158","Type":"Adherens","Directional":false,"Links":[{"SourceID":123159,"TargetID":123158,"Directional":false}]},{"ID":1729,"SourceStructureID":3679,"TargetStructureID":40965,"Label":"3679-40965 via Adherens from 40972 -> 40971","Type":"Adherens","Directional":false,"Links":[{"SourceID":40972,"TargetID":40971,"Directional":false}]},{"ID":1730,"SourceStructureID":3679,"TargetStructureID":79382,"Label":"3679-79382 via Adherens from 79381 -> 79383","Type":"Adherens","Directional":false,"Links":[{"SourceID":79381,"TargetID":79383,"Directional":false}]},{"ID":1731,"SourceStructureID":83603,"TargetStructureID":3679,"Label":"83603-3679 via Adherens from 134923 -> 134922","Type":"Adherens","Directional":false,"Links":[{"SourceID":134923,"TargetID":134922,"Directional":false}]},{"ID":1732,"SourceStructureID":3679,"TargetStructureID":97683,"Label":"3679-97683 via Adherens from 97697 -> 97696","Type":"Adherens","Directional":false,"Links":[{"SourceID":97697,"TargetID":97696,"Directional":false}]},{"ID":1733,"SourceStructureID":3679,"TargetStructureID":101553,"Label":"3679-101553 via Unknown from 101573 -> 101572","Type":"Unknown","Directional":false,"Links":[{"SourceID":101573,"TargetID":101572,"Directional":false}]},{"ID":1734,"SourceStructureID":102599,"TargetStructureID":3679,"Label":"102599-3679 via Adherens from 123152 -> 123153","Type":"Adherens","Directional":false,"Links":[{"SourceID":123152,"TargetID":123153,"Directional":false}]},{"ID":1735,"SourceStructureID":3756,"TargetStructureID":3756,"Label":"3756-3756 via Gap Junction from 128841 -> 128842, 129197 -> 129198","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":128841,"TargetID":128842,"Directional":false},{"SourceID":129197,"TargetID":129198,"Directional":false}]},{"ID":1736,"SourceStructureID":4877,"TargetStructureID":3756,"Label":"4877-3756 via Gap Junction from 128983 -> 128984","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":128983,"TargetID":128984,"Directional":false}]},{"ID":1737,"SourceStructureID":3756,"TargetStructureID":5297,"Label":"3756-5297 via Gap Junction from 120974 -> 120973","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120974,"TargetID":120973,"Directional":false}]},{"ID":1738,"SourceStructureID":3756,"TargetStructureID":5297,"Label":"3756-5297 via Touch from 120972 -> 120971","Type":"Touch","Directional":false,"Links":[{"SourceID":120972,"TargetID":120971,"Directional":false}]},{"ID":1739,"SourceStructureID":5442,"TargetStructureID":3756,"Label":"5442-3756 via Unknown from 129078 -> 129079","Type":"Unknown","Directional":false,"Links":[{"SourceID":129078,"TargetID":129079,"Directional":false}]},{"ID":1740,"SourceStructureID":3756,"TargetStructureID":5598,"Label":"3756-5598 via Adherens from 126952 -> 127665","Type":"Adherens","Directional":false,"Links":[{"SourceID":126952,"TargetID":127665,"Directional":false}]},{"ID":1741,"SourceStructureID":5598,"TargetStructureID":3756,"Label":"5598-3756 via Gap Junction from 56921 -> 56920, 116059 -> 120935, 119328 -> 119327, 120966 -> 120967, 120968 -> 120969, 123880 -> 123881, 124481 -> 124480","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56921,"TargetID":56920,"Directional":false},{"SourceID":116059,"TargetID":120935,"Directional":false},{"SourceID":119328,"TargetID":119327,"Directional":false},{"SourceID":120966,"TargetID":120967,"Directional":false},{"SourceID":120968,"TargetID":120969,"Directional":false},{"SourceID":123880,"TargetID":123881,"Directional":false},{"SourceID":124481,"TargetID":124480,"Directional":false}]},{"ID":1742,"SourceStructureID":5598,"TargetStructureID":3756,"Label":"5598-3756 via Touch from 116061 -> 116060","Type":"Touch","Directional":false,"Links":[{"SourceID":116061,"TargetID":116060,"Directional":false}]},{"ID":1743,"SourceStructureID":5599,"TargetStructureID":3756,"Label":"5599-3756 via Touch from 129089 -> 129088","Type":"Touch","Directional":false,"Links":[{"SourceID":129089,"TargetID":129088,"Directional":false}]},{"ID":1744,"SourceStructureID":3756,"TargetStructureID":6047,"Label":"3756-6047 via Adherens from 113241 -> 113240, 129270 -> 129271, 129362 -> 129363, 129391 -> 129390","Type":"Adherens","Directional":false,"Links":[{"SourceID":113241,"TargetID":113240,"Directional":false},{"SourceID":129270,"TargetID":129271,"Directional":false},{"SourceID":129362,"TargetID":129363,"Directional":false},{"SourceID":129391,"TargetID":129390,"Directional":false}]},{"ID":1745,"SourceStructureID":3756,"TargetStructureID":6047,"Label":"3756-6047 via Gap Junction from 53625 -> 53634, 57306 -> 57340, 112532 -> 112533, 112833 -> 112832, 113189 -> 113188, 116147 -> 116146, 120982 -> 120983, 129304 -> 129305, 129351 -> 129350, 129353 -> 129354, 129376 -> 56902, 129386 -> 129387, 129450 -> 129451","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53625,"TargetID":53634,"Directional":false},{"SourceID":57306,"TargetID":57340,"Directional":false},{"SourceID":112532,"TargetID":112533,"Directional":false},{"SourceID":112833,"TargetID":112832,"Directional":false},{"SourceID":113189,"TargetID":113188,"Directional":false},{"SourceID":116147,"TargetID":116146,"Directional":false},{"SourceID":120982,"TargetID":120983,"Directional":false},{"SourceID":129304,"TargetID":129305,"Directional":false},{"SourceID":129351,"TargetID":129350,"Directional":false},{"SourceID":129353,"TargetID":129354,"Directional":false},{"SourceID":129376,"TargetID":56902,"Directional":false},{"SourceID":129386,"TargetID":129387,"Directional":false},{"SourceID":129450,"TargetID":129451,"Directional":false}]},{"ID":1746,"SourceStructureID":3756,"TargetStructureID":6050,"Label":"3756-6050 via Adherens from 56075 -> 56074, 113566 -> 127287, 127050 -> 127049, 127060 -> 127059, 127179 -> 127178, 127227 -> 127226, 127471 -> 127472, 127484 -> 127483, 127504 -> 127503, 127635 -> 127636, 127640 -> 127641, 127644 -> 127645, 128888 -> 128889","Type":"Adherens","Directional":false,"Links":[{"SourceID":56075,"TargetID":56074,"Directional":false},{"SourceID":113566,"TargetID":127287,"Directional":false},{"SourceID":127050,"TargetID":127049,"Directional":false},{"SourceID":127060,"TargetID":127059,"Directional":false},{"SourceID":127179,"TargetID":127178,"Directional":false},{"SourceID":127227,"TargetID":127226,"Directional":false},{"SourceID":127471,"TargetID":127472,"Directional":false},{"SourceID":127484,"TargetID":127483,"Directional":false},{"SourceID":127504,"TargetID":127503,"Directional":false},{"SourceID":127635,"TargetID":127636,"Directional":false},{"SourceID":127640,"TargetID":127641,"Directional":false},{"SourceID":127644,"TargetID":127645,"Directional":false},{"SourceID":128888,"TargetID":128889,"Directional":false}]},{"ID":1747,"SourceStructureID":6050,"TargetStructureID":3756,"Label":"6050-3756 via Gap Junction from 54413 -> 54453, 54449 -> 54450, 54454 -> 54455, 56044 -> 56042, 56070 -> 56071, 56722 -> 56052, 69843 -> 69841, 69851 -> 69850, 113879 -> 113878, 113888 -> 113887, 113893 -> 113892, 113912 -> 113911, 114002 -> 114001, 114019 -> 114016, 114042 -> 114040, 114249 -> 54443, 114252 -> 114251, 114263 -> 93261, 115758 -> 113970, 119690 -> 119689, 127101 -> 127100, 127118 -> 127119, 127535 -> 127533, 128955 -> 128956","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54413,"TargetID":54453,"Directional":false},{"SourceID":54449,"TargetID":54450,"Directional":false},{"SourceID":54454,"TargetID":54455,"Directional":false},{"SourceID":56044,"TargetID":56042,"Directional":false},{"SourceID":56070,"TargetID":56071,"Directional":false},{"SourceID":56722,"TargetID":56052,"Directional":false},{"SourceID":69843,"TargetID":69841,"Directional":false},{"SourceID":69851,"TargetID":69850,"Directional":false},{"SourceID":113879,"TargetID":113878,"Directional":false},{"SourceID":113888,"TargetID":113887,"Directional":false},{"SourceID":113893,"TargetID":113892,"Directional":false},{"SourceID":113912,"TargetID":113911,"Directional":false},{"SourceID":114002,"TargetID":114001,"Directional":false},{"SourceID":114019,"TargetID":114016,"Directional":false},{"SourceID":114042,"TargetID":114040,"Directional":false},{"SourceID":114249,"TargetID":54443,"Directional":false},{"SourceID":114252,"TargetID":114251,"Directional":false},{"SourceID":114263,"TargetID":93261,"Directional":false},{"SourceID":115758,"TargetID":113970,"Directional":false},{"SourceID":119690,"TargetID":119689,"Directional":false},{"SourceID":127101,"TargetID":127100,"Directional":false},{"SourceID":127118,"TargetID":127119,"Directional":false},{"SourceID":127535,"TargetID":127533,"Directional":false},{"SourceID":128955,"TargetID":128956,"Directional":false}]},{"ID":1748,"SourceStructureID":3756,"TargetStructureID":6050,"Label":"3756-6050 via Touch from 128931 -> 128932","Type":"Touch","Directional":false,"Links":[{"SourceID":128931,"TargetID":128932,"Directional":false}]},{"ID":1749,"SourceStructureID":3756,"TargetStructureID":6115,"Label":"3756-6115 via Touch from 128950 -> 128951, 135159 -> 135158","Type":"Touch","Directional":false,"Links":[{"SourceID":128950,"TargetID":128951,"Directional":false},{"SourceID":135159,"TargetID":135158,"Directional":false}]},{"ID":1750,"SourceStructureID":6203,"TargetStructureID":3756,"Label":"6203-3756 via Gap Junction from 116195 -> 116194, 125383 -> 56915","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116195,"TargetID":116194,"Directional":false},{"SourceID":125383,"TargetID":56915,"Directional":false}]},{"ID":1751,"SourceStructureID":7113,"TargetStructureID":3756,"Label":"7113-3756 via Touch from 131386 -> 131387","Type":"Touch","Directional":false,"Links":[{"SourceID":131386,"TargetID":131387,"Directional":false}]},{"ID":1752,"SourceStructureID":3756,"TargetStructureID":7147,"Label":"3756-7147 via Touch from 136498 -> 136499","Type":"Touch","Directional":false,"Links":[{"SourceID":136498,"TargetID":136499,"Directional":false}]},{"ID":1753,"SourceStructureID":56710,"TargetStructureID":3756,"Label":"56710-3756 via Adherens from 120985 -> 120986","Type":"Adherens","Directional":false,"Links":[{"SourceID":120985,"TargetID":120986,"Directional":false}]},{"ID":1754,"SourceStructureID":56710,"TargetStructureID":3756,"Label":"56710-3756 via Unknown from 135966 -> 135967","Type":"Unknown","Directional":false,"Links":[{"SourceID":135966,"TargetID":135967,"Directional":false}]},{"ID":1755,"SourceStructureID":57034,"TargetStructureID":3756,"Label":"57034-3756 via Unknown from 128809 -> 128808","Type":"Unknown","Directional":false,"Links":[{"SourceID":128809,"TargetID":128808,"Directional":false}]},{"ID":1756,"SourceStructureID":3756,"TargetStructureID":57063,"Label":"3756-57063 via Adherens from 129067 -> 129068, 129080 -> 129081","Type":"Adherens","Directional":false,"Links":[{"SourceID":129067,"TargetID":129068,"Directional":false},{"SourceID":129080,"TargetID":129081,"Directional":false}]},{"ID":1757,"SourceStructureID":3756,"TargetStructureID":57063,"Label":"3756-57063 via Gap Junction from 116265 -> 116266","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116265,"TargetID":116266,"Directional":false}]},{"ID":1758,"SourceStructureID":3756,"TargetStructureID":57063,"Label":"3756-57063 via Unknown from 129085 -> 129084","Type":"Unknown","Directional":false,"Links":[{"SourceID":129085,"TargetID":129084,"Directional":false}]},{"ID":1759,"SourceStructureID":3756,"TargetStructureID":57064,"Label":"3756-57064 via Adherens from 128923 -> 128925, 128953 -> 128954","Type":"Adherens","Directional":false,"Links":[{"SourceID":128923,"TargetID":128925,"Directional":false},{"SourceID":128953,"TargetID":128954,"Directional":false}]},{"ID":1760,"SourceStructureID":3756,"TargetStructureID":57064,"Label":"3756-57064 via Gap Junction from 69852 -> 69853","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":69852,"TargetID":69853,"Directional":false}]},{"ID":1761,"SourceStructureID":3756,"TargetStructureID":57064,"Label":"3756-57064 via Unknown from 127368 -> 128929, 128948 -> 128949, 136480 -> 127103, 136536 -> 136537","Type":"Unknown","Directional":false,"Links":[{"SourceID":127368,"TargetID":128929,"Directional":false},{"SourceID":128948,"TargetID":128949,"Directional":false},{"SourceID":136480,"TargetID":127103,"Directional":false},{"SourceID":136536,"TargetID":136537,"Directional":false}]},{"ID":1762,"SourceStructureID":68539,"TargetStructureID":3756,"Label":"68539-3756 via Adherens from 129284 -> 129283","Type":"Adherens","Directional":false,"Links":[{"SourceID":129284,"TargetID":129283,"Directional":false}]},{"ID":1763,"SourceStructureID":91578,"TargetStructureID":3756,"Label":"91578-3756 via Adherens from 129195 -> 129194","Type":"Adherens","Directional":false,"Links":[{"SourceID":129195,"TargetID":129194,"Directional":false}]},{"ID":1764,"SourceStructureID":91867,"TargetStructureID":3756,"Label":"91867-3756 via Unknown from 91868 -> 91869, 128966 -> 128967, 128974 -> 128975","Type":"Unknown","Directional":false,"Links":[{"SourceID":91868,"TargetID":91869,"Directional":false},{"SourceID":128966,"TargetID":128967,"Directional":false},{"SourceID":128974,"TargetID":128975,"Directional":false}]},{"ID":1765,"SourceStructureID":3756,"TargetStructureID":112756,"Label":"3756-112756 via Unknown from 112759 -> 112758","Type":"Unknown","Directional":false,"Links":[{"SourceID":112759,"TargetID":112758,"Directional":false}]},{"ID":1766,"SourceStructureID":3756,"TargetStructureID":113140,"Label":"3756-113140 via Adherens from 129388 -> 129389","Type":"Adherens","Directional":false,"Links":[{"SourceID":129388,"TargetID":129389,"Directional":false}]},{"ID":1767,"SourceStructureID":113153,"TargetStructureID":3756,"Label":"113153-3756 via Adherens from 120978 -> 120977","Type":"Adherens","Directional":false,"Links":[{"SourceID":120978,"TargetID":120977,"Directional":false}]},{"ID":1768,"SourceStructureID":113153,"TargetStructureID":3756,"Label":"113153-3756 via Unknown from 129260 -> 129259","Type":"Unknown","Directional":false,"Links":[{"SourceID":129260,"TargetID":129259,"Directional":false}]},{"ID":1769,"SourceStructureID":3756,"TargetStructureID":114221,"Label":"3756-114221 via Unknown from 136493 -> 136494","Type":"Unknown","Directional":false,"Links":[{"SourceID":136493,"TargetID":136494,"Directional":false}]},{"ID":1770,"SourceStructureID":3756,"TargetStructureID":116142,"Label":"3756-116142 via Adherens from 116135 -> 129356, 116143 -> 116144, 129187 -> 129188, 129243 -> 129244, 129269 -> 129268, 129369 -> 129370","Type":"Adherens","Directional":false,"Links":[{"SourceID":116135,"TargetID":129356,"Directional":false},{"SourceID":116143,"TargetID":116144,"Directional":false},{"SourceID":129187,"TargetID":129188,"Directional":false},{"SourceID":129243,"TargetID":129244,"Directional":false},{"SourceID":129269,"TargetID":129268,"Directional":false},{"SourceID":129369,"TargetID":129370,"Directional":false}]},{"ID":1771,"SourceStructureID":3756,"TargetStructureID":116142,"Label":"3756-116142 via Gap Junction from 56893 -> 129357, 56919 -> 129186, 129267 -> 56891","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56893,"TargetID":129357,"Directional":false},{"SourceID":56919,"TargetID":129186,"Directional":false},{"SourceID":129267,"TargetID":56891,"Directional":false}]},{"ID":1772,"SourceStructureID":3756,"TargetStructureID":116142,"Label":"3756-116142 via Unknown from 126911 -> 126912, 129230 -> 129231, 129250 -> 129245, 129279 -> 129281, 129402 -> 129401, 129408 -> 129407, 129427 -> 129428","Type":"Unknown","Directional":false,"Links":[{"SourceID":126911,"TargetID":126912,"Directional":false},{"SourceID":129230,"TargetID":129231,"Directional":false},{"SourceID":129250,"TargetID":129245,"Directional":false},{"SourceID":129279,"TargetID":129281,"Directional":false},{"SourceID":129402,"TargetID":129401,"Directional":false},{"SourceID":129408,"TargetID":129407,"Directional":false},{"SourceID":129427,"TargetID":129428,"Directional":false}]},{"ID":1773,"SourceStructureID":116279,"TargetStructureID":3756,"Label":"116279-3756 via Adherens from 129103 -> 129102","Type":"Adherens","Directional":false,"Links":[{"SourceID":129103,"TargetID":129102,"Directional":false}]},{"ID":1774,"SourceStructureID":116279,"TargetStructureID":3756,"Label":"116279-3756 via Gap Junction from 116280 -> 116278","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116280,"TargetID":116278,"Directional":false}]},{"ID":1775,"SourceStructureID":3756,"TargetStructureID":120303,"Label":"3756-120303 via Unknown from 128898 -> 128899","Type":"Unknown","Directional":false,"Links":[{"SourceID":128898,"TargetID":128899,"Directional":false}]},{"ID":1776,"SourceStructureID":3756,"TargetStructureID":120311,"Label":"3756-120311 via Unknown from 128787 -> 128788","Type":"Unknown","Directional":false,"Links":[{"SourceID":128787,"TargetID":128788,"Directional":false}]},{"ID":1777,"SourceStructureID":120339,"TargetStructureID":3756,"Label":"120339-3756 via Unknown from 120342 -> 120341","Type":"Unknown","Directional":false,"Links":[{"SourceID":120342,"TargetID":120341,"Directional":false}]},{"ID":1778,"SourceStructureID":120359,"TargetStructureID":3756,"Label":"120359-3756 via Adherens from 129220 -> 129219, 129225 -> 129226","Type":"Adherens","Directional":false,"Links":[{"SourceID":129220,"TargetID":129219,"Directional":false},{"SourceID":129225,"TargetID":129226,"Directional":false}]},{"ID":1779,"SourceStructureID":3756,"TargetStructureID":120452,"Label":"3756-120452 via Adherens from 128972 -> 128973","Type":"Adherens","Directional":false,"Links":[{"SourceID":128972,"TargetID":128973,"Directional":false}]},{"ID":1780,"SourceStructureID":120482,"TargetStructureID":3756,"Label":"120482-3756 via Unknown from 129108 -> 129107","Type":"Unknown","Directional":false,"Links":[{"SourceID":129108,"TargetID":129107,"Directional":false}]},{"ID":1781,"SourceStructureID":3756,"TargetStructureID":120556,"Label":"3756-120556 via Adherens from 129377 -> 129378","Type":"Adherens","Directional":false,"Links":[{"SourceID":129377,"TargetID":129378,"Directional":false}]},{"ID":1782,"SourceStructureID":3756,"TargetStructureID":120559,"Label":"3756-120559 via Adherens from 129438 -> 129437","Type":"Adherens","Directional":false,"Links":[{"SourceID":129438,"TargetID":129437,"Directional":false}]},{"ID":1783,"SourceStructureID":3756,"TargetStructureID":120931,"Label":"3756-120931 via Adherens from 128774 -> 128773","Type":"Adherens","Directional":false,"Links":[{"SourceID":128774,"TargetID":128773,"Directional":false}]},{"ID":1784,"SourceStructureID":3756,"TargetStructureID":120931,"Label":"3756-120931 via Gap Junction from 116001 -> 120932","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116001,"TargetID":120932,"Directional":false}]},{"ID":1785,"SourceStructureID":120936,"TargetStructureID":3756,"Label":"120936-3756 via Adherens from 129266 -> 129265","Type":"Adherens","Directional":false,"Links":[{"SourceID":129266,"TargetID":129265,"Directional":false}]},{"ID":1786,"SourceStructureID":120936,"TargetStructureID":3756,"Label":"120936-3756 via Unknown from 129299 -> 129298","Type":"Unknown","Directional":false,"Links":[{"SourceID":129299,"TargetID":129298,"Directional":false}]},{"ID":1787,"SourceStructureID":3756,"TargetStructureID":120945,"Label":"3756-120945 via Unknown from 129444 -> 129445","Type":"Unknown","Directional":false,"Links":[{"SourceID":129444,"TargetID":129445,"Directional":false}]},{"ID":1788,"SourceStructureID":3756,"TargetStructureID":120948,"Label":"3756-120948 via Unknown from 120950 -> 120951","Type":"Unknown","Directional":false,"Links":[{"SourceID":120950,"TargetID":120951,"Directional":false}]},{"ID":1789,"SourceStructureID":3756,"TargetStructureID":120953,"Label":"3756-120953 via Adherens from 116234 -> 128936, 128935 -> 128934","Type":"Adherens","Directional":false,"Links":[{"SourceID":116234,"TargetID":128936,"Directional":false},{"SourceID":128935,"TargetID":128934,"Directional":false}]},{"ID":1790,"SourceStructureID":3756,"TargetStructureID":120953,"Label":"3756-120953 via Gap Junction from 116235 -> 120954","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116235,"TargetID":120954,"Directional":false}]},{"ID":1791,"SourceStructureID":120956,"TargetStructureID":3756,"Label":"120956-3756 via Adherens from 128938 -> 57030","Type":"Adherens","Directional":false,"Links":[{"SourceID":128938,"TargetID":57030,"Directional":false}]},{"ID":1792,"SourceStructureID":120956,"TargetStructureID":3756,"Label":"120956-3756 via Gap Junction from 120958 -> 116236","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120958,"TargetID":116236,"Directional":false}]},{"ID":1793,"SourceStructureID":120956,"TargetStructureID":3756,"Label":"120956-3756 via Unknown from 128988 -> 128987","Type":"Unknown","Directional":false,"Links":[{"SourceID":128988,"TargetID":128987,"Directional":false}]},{"ID":1794,"SourceStructureID":120960,"TargetStructureID":3756,"Label":"120960-3756 via Unknown from 129073 -> 129072","Type":"Unknown","Directional":false,"Links":[{"SourceID":129073,"TargetID":129072,"Directional":false}]},{"ID":1795,"SourceStructureID":3756,"TargetStructureID":124198,"Label":"3756-124198 via Unknown from 116287 -> 124203, 127286 -> 116277, 129109 -> 129110","Type":"Unknown","Directional":false,"Links":[{"SourceID":116287,"TargetID":124203,"Directional":false},{"SourceID":127286,"TargetID":116277,"Directional":false},{"SourceID":129109,"TargetID":129110,"Directional":false}]},{"ID":1796,"SourceStructureID":128961,"TargetStructureID":3756,"Label":"128961-3756 via Unknown from 128963 -> 120952, 128964 -> 128965","Type":"Unknown","Directional":false,"Links":[{"SourceID":128963,"TargetID":120952,"Directional":false},{"SourceID":128964,"TargetID":128965,"Directional":false}]},{"ID":1797,"SourceStructureID":136486,"TargetStructureID":3756,"Label":"136486-3756 via Adherens from 136488 -> 120970","Type":"Adherens","Directional":false,"Links":[{"SourceID":136488,"TargetID":120970,"Directional":false}]},{"ID":1798,"SourceStructureID":136486,"TargetStructureID":3756,"Label":"136486-3756 via Gap Junction from 136487 -> 128772","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136487,"TargetID":128772,"Directional":false}]},{"ID":1799,"SourceStructureID":3756,"TargetStructureID":136531,"Label":"3756-136531 via Gap Junction from 56914 -> 136532","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56914,"TargetID":136532,"Directional":false}]},{"ID":1800,"SourceStructureID":3881,"TargetStructureID":5609,"Label":"3881-5609 via Adherens from 64537 -> 64538","Type":"Adherens","Directional":false,"Links":[{"SourceID":64537,"TargetID":64538,"Directional":false}]},{"ID":1801,"SourceStructureID":8580,"TargetStructureID":3881,"Label":"8580-3881 via Touch from 59832 -> 59833","Type":"Touch","Directional":false,"Links":[{"SourceID":59832,"TargetID":59833,"Directional":false}]},{"ID":1802,"SourceStructureID":88666,"TargetStructureID":3928,"Label":"88666-3928 via Adherens from 88672 -> 41256","Type":"Adherens","Directional":false,"Links":[{"SourceID":88672,"TargetID":41256,"Directional":false}]},{"ID":1803,"SourceStructureID":117778,"TargetStructureID":3928,"Label":"117778-3928 via Gap Junction from 117782 -> 57008, 117785 -> 117786","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117782,"TargetID":57008,"Directional":false},{"SourceID":117785,"TargetID":117786,"Directional":false}]},{"ID":1804,"SourceStructureID":97828,"TargetStructureID":4568,"Label":"97828-4568 via Gap Junction from 97832 -> 97831","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97832,"TargetID":97831,"Directional":false}]},{"ID":1805,"SourceStructureID":4569,"TargetStructureID":4569,"Label":"4569-4569 via Adherens from 97777 -> 97776","Type":"Adherens","Directional":false,"Links":[{"SourceID":97777,"TargetID":97776,"Directional":false}]},{"ID":1806,"SourceStructureID":4835,"TargetStructureID":4569,"Label":"4835-4569 via Gap Junction from 98688 -> 98687, 98965 -> 98964","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98688,"TargetID":98687,"Directional":false},{"SourceID":98965,"TargetID":98964,"Directional":false}]},{"ID":1807,"SourceStructureID":4569,"TargetStructureID":6155,"Label":"4569-6155 via Unknown from 131404 -> 131405","Type":"Unknown","Directional":false,"Links":[{"SourceID":131404,"TargetID":131405,"Directional":false}]},{"ID":1808,"SourceStructureID":6300,"TargetStructureID":4569,"Label":"6300-4569 via Adherens from 99068 -> 6298","Type":"Adherens","Directional":false,"Links":[{"SourceID":99068,"TargetID":6298,"Directional":false}]},{"ID":1809,"SourceStructureID":4569,"TargetStructureID":21299,"Label":"4569-21299 via Gap Junction from 23795 -> 48486, 46343 -> 46342, 48491 -> 48492, 48869 -> 91770, 91761 -> 91762, 91763 -> 91764","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23795,"TargetID":48486,"Directional":false},{"SourceID":46343,"TargetID":46342,"Directional":false},{"SourceID":48491,"TargetID":48492,"Directional":false},{"SourceID":48869,"TargetID":91770,"Directional":false},{"SourceID":91761,"TargetID":91762,"Directional":false},{"SourceID":91763,"TargetID":91764,"Directional":false}]},{"ID":1810,"SourceStructureID":4569,"TargetStructureID":21299,"Label":"4569-21299 via Unknown from 92842 -> 92843","Type":"Unknown","Directional":false,"Links":[{"SourceID":92842,"TargetID":92843,"Directional":false}]},{"ID":1811,"SourceStructureID":97800,"TargetStructureID":4569,"Label":"97800-4569 via Unknown from 97802 -> 97801","Type":"Unknown","Directional":false,"Links":[{"SourceID":97802,"TargetID":97801,"Directional":false}]},{"ID":1812,"SourceStructureID":97828,"TargetStructureID":4569,"Label":"97828-4569 via Adherens from 97829 -> 97827","Type":"Adherens","Directional":false,"Links":[{"SourceID":97829,"TargetID":97827,"Directional":false}]},{"ID":1813,"SourceStructureID":4569,"TargetStructureID":98161,"Label":"4569-98161 via Gap Junction from 52490 -> 98162","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52490,"TargetID":98162,"Directional":false}]},{"ID":1814,"SourceStructureID":4569,"TargetStructureID":98167,"Label":"4569-98167 via Adherens from 98170 -> 98169","Type":"Adherens","Directional":false,"Links":[{"SourceID":98170,"TargetID":98169,"Directional":false}]},{"ID":1815,"SourceStructureID":4569,"TargetStructureID":98314,"Label":"4569-98314 via Unknown from 98316 -> 98315","Type":"Unknown","Directional":false,"Links":[{"SourceID":98316,"TargetID":98315,"Directional":false}]},{"ID":1816,"SourceStructureID":98317,"TargetStructureID":4569,"Label":"98317-4569 via Unknown from 98318 -> 98319","Type":"Unknown","Directional":false,"Links":[{"SourceID":98318,"TargetID":98319,"Directional":false}]},{"ID":1817,"SourceStructureID":4569,"TargetStructureID":98321,"Label":"4569-98321 via Unknown from 98320 -> 98322","Type":"Unknown","Directional":false,"Links":[{"SourceID":98320,"TargetID":98322,"Directional":false}]},{"ID":1818,"SourceStructureID":98505,"TargetStructureID":4569,"Label":"98505-4569 via Gap Junction from 98506 -> 65201","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98506,"TargetID":65201,"Directional":false}]},{"ID":1819,"SourceStructureID":4569,"TargetStructureID":98663,"Label":"4569-98663 via Adherens from 98666 -> 98665","Type":"Adherens","Directional":false,"Links":[{"SourceID":98666,"TargetID":98665,"Directional":false}]},{"ID":1820,"SourceStructureID":4569,"TargetStructureID":98679,"Label":"4569-98679 via Gap Junction from 98678 -> 98680","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98678,"TargetID":98680,"Directional":false}]},{"ID":1821,"SourceStructureID":98949,"TargetStructureID":4569,"Label":"98949-4569 via Gap Junction from 98952 -> 52545","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98952,"TargetID":52545,"Directional":false}]},{"ID":1822,"SourceStructureID":99016,"TargetStructureID":4569,"Label":"99016-4569 via Adherens from 99017 -> 99015","Type":"Adherens","Directional":false,"Links":[{"SourceID":99017,"TargetID":99015,"Directional":false}]},{"ID":1823,"SourceStructureID":99025,"TargetStructureID":4569,"Label":"99025-4569 via Adherens from 99028 -> 99024","Type":"Adherens","Directional":false,"Links":[{"SourceID":99028,"TargetID":99024,"Directional":false}]},{"ID":1824,"SourceStructureID":4569,"TargetStructureID":99032,"Label":"4569-99032 via Adherens from 99038 -> 99037","Type":"Adherens","Directional":false,"Links":[{"SourceID":99038,"TargetID":99037,"Directional":false}]},{"ID":1825,"SourceStructureID":4569,"TargetStructureID":106438,"Label":"4569-106438 via Adherens from 131401 -> 106440","Type":"Adherens","Directional":false,"Links":[{"SourceID":131401,"TargetID":106440,"Directional":false}]},{"ID":1826,"SourceStructureID":4570,"TargetStructureID":29277,"Label":"4570-29277 via Adherens from 29299 -> 29298","Type":"Adherens","Directional":false,"Links":[{"SourceID":29299,"TargetID":29298,"Directional":false}]},{"ID":1827,"SourceStructureID":60798,"TargetStructureID":4570,"Label":"60798-4570 via Touch from 60800 -> 60801","Type":"Touch","Directional":false,"Links":[{"SourceID":60800,"TargetID":60801,"Directional":false}]},{"ID":1828,"SourceStructureID":4835,"TargetStructureID":4835,"Label":"4835-4835 via Gap Junction from 12777 -> 8394","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12777,"TargetID":8394,"Directional":false}]},{"ID":1829,"SourceStructureID":5457,"TargetStructureID":4835,"Label":"5457-4835 via Adherens from 87844 -> 87843, 87852 -> 87851","Type":"Adherens","Directional":false,"Links":[{"SourceID":87844,"TargetID":87843,"Directional":false},{"SourceID":87852,"TargetID":87851,"Directional":false}]},{"ID":1830,"SourceStructureID":4835,"TargetStructureID":6153,"Label":"4835-6153 via Gap Junction from 29515 -> 17476, 29606 -> 17479","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29515,"TargetID":17476,"Directional":false},{"SourceID":29606,"TargetID":17479,"Directional":false}]},{"ID":1831,"SourceStructureID":7157,"TargetStructureID":4835,"Label":"7157-4835 via Gap Junction from 24539 -> 24538","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24539,"TargetID":24538,"Directional":false}]},{"ID":1832,"SourceStructureID":4835,"TargetStructureID":7564,"Label":"4835-7564 via Gap Junction from 29642 -> 29641, 29673 -> 29671","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29642,"TargetID":29641,"Directional":false},{"SourceID":29673,"TargetID":29671,"Directional":false}]},{"ID":1833,"SourceStructureID":7860,"TargetStructureID":4835,"Label":"7860-4835 via Gap Junction from 29668 -> 29667","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29668,"TargetID":29667,"Directional":false}]},{"ID":1834,"SourceStructureID":7861,"TargetStructureID":4835,"Label":"7861-4835 via Gap Junction from 29646 -> 29645","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29646,"TargetID":29645,"Directional":false}]},{"ID":1835,"SourceStructureID":71935,"TargetStructureID":4835,"Label":"71935-4835 via Gap Junction from 71944 -> 71945, 95218 -> 8392, 120387 -> 120388, 120391 -> 120392","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71944,"TargetID":71945,"Directional":false},{"SourceID":95218,"TargetID":8392,"Directional":false},{"SourceID":120387,"TargetID":120388,"Directional":false},{"SourceID":120391,"TargetID":120392,"Directional":false}]},{"ID":1836,"SourceStructureID":105212,"TargetStructureID":4835,"Label":"105212-4835 via Unknown from 105760 -> 105761","Type":"Unknown","Directional":false,"Links":[{"SourceID":105760,"TargetID":105761,"Directional":false}]},{"ID":1837,"SourceStructureID":122595,"TargetStructureID":4835,"Label":"122595-4835 via Gap Junction from 122597 -> 122596, 122599 -> 122598","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122597,"TargetID":122596,"Directional":false},{"SourceID":122599,"TargetID":122598,"Directional":false}]},{"ID":1838,"SourceStructureID":4835,"TargetStructureID":135225,"Label":"4835-135225 via Touch from 135238 -> 135237","Type":"Touch","Directional":false,"Links":[{"SourceID":135238,"TargetID":135237,"Directional":false}]},{"ID":1839,"SourceStructureID":4850,"TargetStructureID":6169,"Label":"4850-6169 via Adherens from 14197 -> 14198, 33897 -> 33896, 98115 -> 9467, 98117 -> 9463","Type":"Adherens","Directional":false,"Links":[{"SourceID":14197,"TargetID":14198,"Directional":false},{"SourceID":33897,"TargetID":33896,"Directional":false},{"SourceID":98115,"TargetID":9467,"Directional":false},{"SourceID":98117,"TargetID":9463,"Directional":false}]},{"ID":1840,"SourceStructureID":40896,"TargetStructureID":4850,"Label":"40896-4850 via Gap Junction from 89980 -> 89981","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89980,"TargetID":89981,"Directional":false}]},{"ID":1841,"SourceStructureID":40896,"TargetStructureID":4850,"Label":"40896-4850 via Unknown from 98124 -> 98123","Type":"Unknown","Directional":false,"Links":[{"SourceID":98124,"TargetID":98123,"Directional":false}]},{"ID":1842,"SourceStructureID":4877,"TargetStructureID":4877,"Label":"4877-4877 via Adherens from 135639 -> 135640","Type":"Adherens","Directional":false,"Links":[{"SourceID":135639,"TargetID":135640,"Directional":false}]},{"ID":1843,"SourceStructureID":4877,"TargetStructureID":4877,"Label":"4877-4877 via Gap Junction from 126623 -> 126622, 126755 -> 126756, 126869 -> 126868, 134129 -> 134128, 135637 -> 135638","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":126623,"TargetID":126622,"Directional":false},{"SourceID":126755,"TargetID":126756,"Directional":false},{"SourceID":126869,"TargetID":126868,"Directional":false},{"SourceID":134129,"TargetID":134128,"Directional":false},{"SourceID":135637,"TargetID":135638,"Directional":false}]},{"ID":1844,"SourceStructureID":5107,"TargetStructureID":4877,"Label":"5107-4877 via Adherens from 91355 -> 91354","Type":"Adherens","Directional":false,"Links":[{"SourceID":91355,"TargetID":91354,"Directional":false}]},{"ID":1845,"SourceStructureID":4877,"TargetStructureID":5442,"Label":"4877-5442 via Unknown from 126637 -> 126638","Type":"Unknown","Directional":false,"Links":[{"SourceID":126637,"TargetID":126638,"Directional":false}]},{"ID":1846,"SourceStructureID":5468,"TargetStructureID":4877,"Label":"5468-4877 via Adherens from 135969 -> 135968","Type":"Adherens","Directional":false,"Links":[{"SourceID":135969,"TargetID":135968,"Directional":false}]},{"ID":1847,"SourceStructureID":5468,"TargetStructureID":4877,"Label":"5468-4877 via Gap Junction from 54712 -> 54711","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54712,"TargetID":54711,"Directional":false}]},{"ID":1848,"SourceStructureID":4877,"TargetStructureID":5598,"Label":"4877-5598 via Adherens from 126734 -> 126735, 126942 -> 126943, 126949 -> 126950, 135949 -> 135948, 135970 -> 135971, 135974 -> 135973","Type":"Adherens","Directional":false,"Links":[{"SourceID":126734,"TargetID":126735,"Directional":false},{"SourceID":126942,"TargetID":126943,"Directional":false},{"SourceID":126949,"TargetID":126950,"Directional":false},{"SourceID":135949,"TargetID":135948,"Directional":false},{"SourceID":135970,"TargetID":135971,"Directional":false},{"SourceID":135974,"TargetID":135973,"Directional":false}]},{"ID":1849,"SourceStructureID":4877,"TargetStructureID":5598,"Label":"4877-5598 via Gap Junction from 56784 -> 56782, 57080 -> 56792, 59063 -> 59062, 91383 -> 91382, 91394 -> 91393, 114980 -> 114979, 114993 -> 114992, 115163 -> 115164, 123794 -> 123793, 124259 -> 124258, 126740 -> 126739","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56784,"TargetID":56782,"Directional":false},{"SourceID":57080,"TargetID":56792,"Directional":false},{"SourceID":59063,"TargetID":59062,"Directional":false},{"SourceID":91383,"TargetID":91382,"Directional":false},{"SourceID":91394,"TargetID":91393,"Directional":false},{"SourceID":114980,"TargetID":114979,"Directional":false},{"SourceID":114993,"TargetID":114992,"Directional":false},{"SourceID":115163,"TargetID":115164,"Directional":false},{"SourceID":123794,"TargetID":123793,"Directional":false},{"SourceID":124259,"TargetID":124258,"Directional":false},{"SourceID":126740,"TargetID":126739,"Directional":false}]},{"ID":1850,"SourceStructureID":4877,"TargetStructureID":5601,"Label":"4877-5601 via Adherens from 91402 -> 91403, 135621 -> 135622, 135649 -> 135650, 135656 -> 135657, 135661 -> 135660, 135664 -> 135663, 135665 -> 135666, 135668 -> 135667, 135669 -> 135670, 135672 -> 135673","Type":"Adherens","Directional":false,"Links":[{"SourceID":91402,"TargetID":91403,"Directional":false},{"SourceID":135621,"TargetID":135622,"Directional":false},{"SourceID":135649,"TargetID":135650,"Directional":false},{"SourceID":135656,"TargetID":135657,"Directional":false},{"SourceID":135661,"TargetID":135660,"Directional":false},{"SourceID":135664,"TargetID":135663,"Directional":false},{"SourceID":135665,"TargetID":135666,"Directional":false},{"SourceID":135668,"TargetID":135667,"Directional":false},{"SourceID":135669,"TargetID":135670,"Directional":false},{"SourceID":135672,"TargetID":135673,"Directional":false}]},{"ID":1851,"SourceStructureID":5601,"TargetStructureID":4877,"Label":"5601-4877 via Gap Junction from 24363 -> 23962, 56637 -> 56597, 57189 -> 57188, 59060 -> 59059, 91309 -> 91308, 91330 -> 91329, 91333 -> 91332, 91335 -> 91334, 91347 -> 91299, 91389 -> 91387, 91411 -> 91410, 91421 -> 91420, 91437 -> 126483, 91438 -> 91439, 91525 -> 91526, 92510 -> 92511, 92513 -> 92512, 126512 -> 126513, 126529 -> 126530, 126579 -> 126580, 126690 -> 126691, 126803 -> 126804, 126825 -> 126826, 134124 -> 134125, 134136 -> 134137","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24363,"TargetID":23962,"Directional":false},{"SourceID":56637,"TargetID":56597,"Directional":false},{"SourceID":57189,"TargetID":57188,"Directional":false},{"SourceID":59060,"TargetID":59059,"Directional":false},{"SourceID":91309,"TargetID":91308,"Directional":false},{"SourceID":91330,"TargetID":91329,"Directional":false},{"SourceID":91333,"TargetID":91332,"Directional":false},{"SourceID":91335,"TargetID":91334,"Directional":false},{"SourceID":91347,"TargetID":91299,"Directional":false},{"SourceID":91389,"TargetID":91387,"Directional":false},{"SourceID":91411,"TargetID":91410,"Directional":false},{"SourceID":91421,"TargetID":91420,"Directional":false},{"SourceID":91437,"TargetID":126483,"Directional":false},{"SourceID":91438,"TargetID":91439,"Directional":false},{"SourceID":91525,"TargetID":91526,"Directional":false},{"SourceID":92510,"TargetID":92511,"Directional":false},{"SourceID":92513,"TargetID":92512,"Directional":false},{"SourceID":126512,"TargetID":126513,"Directional":false},{"SourceID":126529,"TargetID":126530,"Directional":false},{"SourceID":126579,"TargetID":126580,"Directional":false},{"SourceID":126690,"TargetID":126691,"Directional":false},{"SourceID":126803,"TargetID":126804,"Directional":false},{"SourceID":126825,"TargetID":126826,"Directional":false},{"SourceID":134124,"TargetID":134125,"Directional":false},{"SourceID":134136,"TargetID":134137,"Directional":false}]},{"ID":1852,"SourceStructureID":5601,"TargetStructureID":4877,"Label":"5601-4877 via Touch from 126523 -> 126522","Type":"Touch","Directional":false,"Links":[{"SourceID":126523,"TargetID":126522,"Directional":false}]},{"ID":1853,"SourceStructureID":5637,"TargetStructureID":4877,"Label":"5637-4877 via Gap Junction from 134134 -> 134135, 135632 -> 135633","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134134,"TargetID":134135,"Directional":false},{"SourceID":135632,"TargetID":135633,"Directional":false}]},{"ID":1854,"SourceStructureID":4877,"TargetStructureID":6117,"Label":"4877-6117 via Adherens from 131113 -> 131114, 134131 -> 134130","Type":"Adherens","Directional":false,"Links":[{"SourceID":131113,"TargetID":131114,"Directional":false},{"SourceID":134131,"TargetID":134130,"Directional":false}]},{"ID":1855,"SourceStructureID":4877,"TargetStructureID":6117,"Label":"4877-6117 via Gap Junction from 46602 -> 46408, 56788 -> 56787, 134133 -> 134132","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46602,"TargetID":46408,"Directional":false},{"SourceID":56788,"TargetID":56787,"Directional":false},{"SourceID":134133,"TargetID":134132,"Directional":false}]},{"ID":1856,"SourceStructureID":6117,"TargetStructureID":4877,"Label":"6117-4877 via Touch from 134144 -> 134143","Type":"Touch","Directional":false,"Links":[{"SourceID":134144,"TargetID":134143,"Directional":false}]},{"ID":1857,"SourceStructureID":7113,"TargetStructureID":4877,"Label":"7113-4877 via Gap Junction from 91366 -> 91365","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91366,"TargetID":91365,"Directional":false}]},{"ID":1858,"SourceStructureID":7114,"TargetStructureID":4877,"Label":"7114-4877 via Gap Junction from 91563 -> 91564, 135965 -> 135644","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91563,"TargetID":91564,"Directional":false},{"SourceID":135965,"TargetID":135644,"Directional":false}]},{"ID":1859,"SourceStructureID":4877,"TargetStructureID":7114,"Label":"4877-7114 via Touch from 126832 -> 126833","Type":"Touch","Directional":false,"Links":[{"SourceID":126832,"TargetID":126833,"Directional":false}]},{"ID":1860,"SourceStructureID":15796,"TargetStructureID":4877,"Label":"15796-4877 via Postsynapse from 46583 -> 46582","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":46583,"TargetID":46582,"Directional":false}]},{"ID":1861,"SourceStructureID":15976,"TargetStructureID":4877,"Label":"15976-4877 via Gap Junction from 54718 -> 54719","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54718,"TargetID":54719,"Directional":false}]},{"ID":1862,"SourceStructureID":4877,"TargetStructureID":23836,"Label":"4877-23836 via Unknown from 126806 -> 126807","Type":"Unknown","Directional":false,"Links":[{"SourceID":126806,"TargetID":126807,"Directional":false}]},{"ID":1863,"SourceStructureID":4877,"TargetStructureID":35212,"Label":"4877-35212 via Unknown from 126554 -> 126555","Type":"Unknown","Directional":false,"Links":[{"SourceID":126554,"TargetID":126555,"Directional":false}]},{"ID":1864,"SourceStructureID":54776,"TargetStructureID":4877,"Label":"54776-4877 via Unknown from 126831 -> 126830","Type":"Unknown","Directional":false,"Links":[{"SourceID":126831,"TargetID":126830,"Directional":false}]},{"ID":1865,"SourceStructureID":4877,"TargetStructureID":56710,"Label":"4877-56710 via Gap Junction from 46580 -> 56711","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46580,"TargetID":56711,"Directional":false}]},{"ID":1866,"SourceStructureID":56712,"TargetStructureID":4877,"Label":"56712-4877 via Gap Junction from 56713 -> 46599","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56713,"TargetID":46599,"Directional":false}]},{"ID":1867,"SourceStructureID":4877,"TargetStructureID":56712,"Label":"4877-56712 via Unknown from 91418 -> 91417","Type":"Unknown","Directional":false,"Links":[{"SourceID":91418,"TargetID":91417,"Directional":false}]},{"ID":1868,"SourceStructureID":4877,"TargetStructureID":58714,"Label":"4877-58714 via Adherens from 126617 -> 126618","Type":"Adherens","Directional":false,"Links":[{"SourceID":126617,"TargetID":126618,"Directional":false}]},{"ID":1869,"SourceStructureID":60590,"TargetStructureID":4877,"Label":"60590-4877 via Unknown from 91386 -> 91385","Type":"Unknown","Directional":false,"Links":[{"SourceID":91386,"TargetID":91385,"Directional":false}]},{"ID":1870,"SourceStructureID":4877,"TargetStructureID":91380,"Label":"4877-91380 via Unknown from 91379 -> 91381","Type":"Unknown","Directional":false,"Links":[{"SourceID":91379,"TargetID":91381,"Directional":false}]},{"ID":1871,"SourceStructureID":124069,"TargetStructureID":4877,"Label":"124069-4877 via Adherens from 126665 -> 126664","Type":"Adherens","Directional":false,"Links":[{"SourceID":126665,"TargetID":126664,"Directional":false}]},{"ID":1872,"SourceStructureID":126536,"TargetStructureID":4877,"Label":"126536-4877 via Adherens from 126539 -> 126535","Type":"Adherens","Directional":false,"Links":[{"SourceID":126539,"TargetID":126535,"Directional":false}]},{"ID":1873,"SourceStructureID":4877,"TargetStructureID":126585,"Label":"4877-126585 via Unknown from 126584 -> 126587","Type":"Unknown","Directional":false,"Links":[{"SourceID":126584,"TargetID":126587,"Directional":false}]},{"ID":1874,"SourceStructureID":126646,"TargetStructureID":4877,"Label":"126646-4877 via Adherens from 135954 -> 135953","Type":"Adherens","Directional":false,"Links":[{"SourceID":135954,"TargetID":135953,"Directional":false}]},{"ID":1875,"SourceStructureID":126763,"TargetStructureID":4877,"Label":"126763-4877 via Postsynapse from 126764 -> 126762","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":126764,"TargetID":126762,"Directional":false}]},{"ID":1876,"SourceStructureID":135956,"TargetStructureID":4877,"Label":"135956-4877 via Adherens from 135957 -> 135635","Type":"Adherens","Directional":false,"Links":[{"SourceID":135957,"TargetID":135635,"Directional":false}]},{"ID":1877,"SourceStructureID":135956,"TargetStructureID":4877,"Label":"135956-4877 via Gap Junction from 135958 -> 135634","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135958,"TargetID":135634,"Directional":false}]},{"ID":1878,"SourceStructureID":4890,"TargetStructureID":5117,"Label":"4890-5117 via Adherens from 28783 -> 28782, 28786 -> 28785, 28789 -> 4899, 28791 -> 28790, 28792 -> 4901, 28794 -> 4902, 28795 -> 4903","Type":"Adherens","Directional":false,"Links":[{"SourceID":28783,"TargetID":28782,"Directional":false},{"SourceID":28786,"TargetID":28785,"Directional":false},{"SourceID":28789,"TargetID":4899,"Directional":false},{"SourceID":28791,"TargetID":28790,"Directional":false},{"SourceID":28792,"TargetID":4901,"Directional":false},{"SourceID":28794,"TargetID":4902,"Directional":false},{"SourceID":28795,"TargetID":4903,"Directional":false}]},{"ID":1879,"SourceStructureID":6156,"TargetStructureID":4890,"Label":"6156-4890 via Unknown from 133441 -> 133442, 133468 -> 133467","Type":"Unknown","Directional":false,"Links":[{"SourceID":133441,"TargetID":133442,"Directional":false},{"SourceID":133468,"TargetID":133467,"Directional":false}]},{"ID":1880,"SourceStructureID":8576,"TargetStructureID":4890,"Label":"8576-4890 via Adherens from 20064 -> 20065","Type":"Adherens","Directional":false,"Links":[{"SourceID":20064,"TargetID":20065,"Directional":false}]},{"ID":1881,"SourceStructureID":4890,"TargetStructureID":8577,"Label":"4890-8577 via Adherens from 31019 -> 31018, 71060 -> 7922","Type":"Adherens","Directional":false,"Links":[{"SourceID":31019,"TargetID":31018,"Directional":false},{"SourceID":71060,"TargetID":7922,"Directional":false}]},{"ID":1882,"SourceStructureID":4943,"TargetStructureID":5634,"Label":"4943-5634 via Adherens from 8722 -> 8721","Type":"Adherens","Directional":false,"Links":[{"SourceID":8722,"TargetID":8721,"Directional":false}]},{"ID":1883,"SourceStructureID":42968,"TargetStructureID":4943,"Label":"42968-4943 via Adherens from 60813 -> 60812","Type":"Adherens","Directional":false,"Links":[{"SourceID":60813,"TargetID":60812,"Directional":false}]},{"ID":1884,"SourceStructureID":5017,"TargetStructureID":5017,"Label":"5017-5017 via Adherens from 92258 -> 92259","Type":"Adherens","Directional":false,"Links":[{"SourceID":92258,"TargetID":92259,"Directional":false}]},{"ID":1885,"SourceStructureID":35176,"TargetStructureID":5017,"Label":"35176-5017 via Adherens from 158798 -> 158788","Type":"Adherens","Directional":false,"Links":[{"SourceID":158798,"TargetID":158788,"Directional":false}]},{"ID":1886,"SourceStructureID":5017,"TargetStructureID":61214,"Label":"5017-61214 via Adherens from 61218 -> 61217","Type":"Adherens","Directional":false,"Links":[{"SourceID":61218,"TargetID":61217,"Directional":false}]},{"ID":1887,"SourceStructureID":5017,"TargetStructureID":61231,"Label":"5017-61231 via Adherens from 61240 -> 61238","Type":"Adherens","Directional":false,"Links":[{"SourceID":61240,"TargetID":61238,"Directional":false}]},{"ID":1888,"SourceStructureID":5107,"TargetStructureID":61836,"Label":"5107-61836 via Adherens from 67515 -> 67514","Type":"Adherens","Directional":false,"Links":[{"SourceID":67515,"TargetID":67514,"Directional":false}]},{"ID":1889,"SourceStructureID":5107,"TargetStructureID":68023,"Label":"5107-68023 via Adherens from 68659 -> 68658","Type":"Adherens","Directional":false,"Links":[{"SourceID":68659,"TargetID":68658,"Directional":false}]},{"ID":1890,"SourceStructureID":68548,"TargetStructureID":5107,"Label":"68548-5107 via Adherens from 75692 -> 75693","Type":"Adherens","Directional":false,"Links":[{"SourceID":75692,"TargetID":75693,"Directional":false}]},{"ID":1891,"SourceStructureID":5107,"TargetStructureID":87972,"Label":"5107-87972 via Adherens from 88026 -> 88025","Type":"Adherens","Directional":false,"Links":[{"SourceID":88026,"TargetID":88025,"Directional":false}]},{"ID":1892,"SourceStructureID":5107,"TargetStructureID":112937,"Label":"5107-112937 via Adherens from 112932 -> 112939","Type":"Adherens","Directional":false,"Links":[{"SourceID":112932,"TargetID":112939,"Directional":false}]},{"ID":1893,"SourceStructureID":5107,"TargetStructureID":148337,"Label":"5107-148337 via Adherens from 148341 -> 148340","Type":"Adherens","Directional":false,"Links":[{"SourceID":148341,"TargetID":148340,"Directional":false}]},{"ID":1894,"SourceStructureID":5117,"TargetStructureID":5117,"Label":"5117-5117 via Unknown from 131397 -> 131398","Type":"Unknown","Directional":false,"Links":[{"SourceID":131397,"TargetID":131398,"Directional":false}]},{"ID":1895,"SourceStructureID":5118,"TargetStructureID":5117,"Label":"5118-5117 via Gap Junction from 133235 -> 133236","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133235,"TargetID":133236,"Directional":false}]},{"ID":1896,"SourceStructureID":7157,"TargetStructureID":5117,"Label":"7157-5117 via Touch from 135195 -> 135194","Type":"Touch","Directional":false,"Links":[{"SourceID":135195,"TargetID":135194,"Directional":false}]},{"ID":1897,"SourceStructureID":5117,"TargetStructureID":8579,"Label":"5117-8579 via Adherens from 66344 -> 66345, 66346 -> 66347, 66350 -> 66351","Type":"Adherens","Directional":false,"Links":[{"SourceID":66344,"TargetID":66345,"Directional":false},{"SourceID":66346,"TargetID":66347,"Directional":false},{"SourceID":66350,"TargetID":66351,"Directional":false}]},{"ID":1898,"SourceStructureID":5117,"TargetStructureID":16026,"Label":"5117-16026 via Unknown from 114666 -> 114665","Type":"Unknown","Directional":false,"Links":[{"SourceID":114666,"TargetID":114665,"Directional":false}]},{"ID":1899,"SourceStructureID":5117,"TargetStructureID":61864,"Label":"5117-61864 via Adherens from 69336 -> 69339, 69337 -> 69340, 69338 -> 69341","Type":"Adherens","Directional":false,"Links":[{"SourceID":69336,"TargetID":69339,"Directional":false},{"SourceID":69337,"TargetID":69340,"Directional":false},{"SourceID":69338,"TargetID":69341,"Directional":false}]},{"ID":1900,"SourceStructureID":68548,"TargetStructureID":5117,"Label":"68548-5117 via Adherens from 73581 -> 65507","Type":"Adherens","Directional":false,"Links":[{"SourceID":73581,"TargetID":65507,"Directional":false}]},{"ID":1901,"SourceStructureID":5117,"TargetStructureID":135196,"Label":"5117-135196 via Touch from 135201 -> 135200","Type":"Touch","Directional":false,"Links":[{"SourceID":135201,"TargetID":135200,"Directional":false}]},{"ID":1902,"SourceStructureID":135208,"TargetStructureID":5117,"Label":"135208-5117 via Adherens from 135210 -> 135207","Type":"Adherens","Directional":false,"Links":[{"SourceID":135210,"TargetID":135207,"Directional":false}]},{"ID":1903,"SourceStructureID":5439,"TargetStructureID":5118,"Label":"5439-5118 via Adherens from 85506 -> 85507","Type":"Adherens","Directional":false,"Links":[{"SourceID":85506,"TargetID":85507,"Directional":false}]},{"ID":1904,"SourceStructureID":5118,"TargetStructureID":5531,"Label":"5118-5531 via Adherens from 133886 -> 133885","Type":"Adherens","Directional":false,"Links":[{"SourceID":133886,"TargetID":133885,"Directional":false}]},{"ID":1905,"SourceStructureID":6115,"TargetStructureID":5118,"Label":"6115-5118 via Adherens from 74793 -> 74794","Type":"Adherens","Directional":false,"Links":[{"SourceID":74793,"TargetID":74794,"Directional":false}]},{"ID":1906,"SourceStructureID":6115,"TargetStructureID":5118,"Label":"6115-5118 via Unknown from 73258 -> 73259","Type":"Unknown","Directional":false,"Links":[{"SourceID":73258,"TargetID":73259,"Directional":false}]},{"ID":1907,"SourceStructureID":7147,"TargetStructureID":5118,"Label":"7147-5118 via Touch from 52235 -> 52234","Type":"Touch","Directional":false,"Links":[{"SourceID":52235,"TargetID":52234,"Directional":false}]},{"ID":1908,"SourceStructureID":5118,"TargetStructureID":8579,"Label":"5118-8579 via Adherens from 62682 -> 62681","Type":"Adherens","Directional":false,"Links":[{"SourceID":62682,"TargetID":62681,"Directional":false}]},{"ID":1909,"SourceStructureID":5118,"TargetStructureID":9769,"Label":"5118-9769 via Touch from 52625 -> 52624","Type":"Touch","Directional":false,"Links":[{"SourceID":52625,"TargetID":52624,"Directional":false}]},{"ID":1910,"SourceStructureID":65134,"TargetStructureID":5118,"Label":"65134-5118 via Gap Junction from 65135 -> 65136","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65135,"TargetID":65136,"Directional":false}]},{"ID":1911,"SourceStructureID":5150,"TargetStructureID":5150,"Label":"5150-5150 via Postsynapse from 5240 -> 5241","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":5240,"TargetID":5241,"Directional":false}]},{"ID":1912,"SourceStructureID":22590,"TargetStructureID":5150,"Label":"22590-5150 via Gap Junction from 56183 -> 56181","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56183,"TargetID":56181,"Directional":false}]},{"ID":1913,"SourceStructureID":56211,"TargetStructureID":5150,"Label":"56211-5150 via Gap Junction from 56212 -> 56210, 56213 -> 56214, 56218 -> 56219, 56221 -> 56220, 56252 -> 56251","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56212,"TargetID":56210,"Directional":false},{"SourceID":56213,"TargetID":56214,"Directional":false},{"SourceID":56218,"TargetID":56219,"Directional":false},{"SourceID":56221,"TargetID":56220,"Directional":false},{"SourceID":56252,"TargetID":56251,"Directional":false}]},{"ID":1914,"SourceStructureID":5278,"TargetStructureID":5278,"Label":"5278-5278 via Gap Junction from 92279 -> 92278","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92279,"TargetID":92278,"Directional":false}]},{"ID":1915,"SourceStructureID":5278,"TargetStructureID":5279,"Label":"5278-5279 via Gap Junction from 20153 -> 92674, 92710 -> 92712, 133801 -> 133800, 133848 -> 133849, 133852 -> 133853, 133855 -> 133854, 133857 -> 133856, 133859 -> 133858, 147296 -> 147297","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20153,"TargetID":92674,"Directional":false},{"SourceID":92710,"TargetID":92712,"Directional":false},{"SourceID":133801,"TargetID":133800,"Directional":false},{"SourceID":133848,"TargetID":133849,"Directional":false},{"SourceID":133852,"TargetID":133853,"Directional":false},{"SourceID":133855,"TargetID":133854,"Directional":false},{"SourceID":133857,"TargetID":133856,"Directional":false},{"SourceID":133859,"TargetID":133858,"Directional":false},{"SourceID":147296,"TargetID":147297,"Directional":false}]},{"ID":1916,"SourceStructureID":5278,"TargetStructureID":5279,"Label":"5278-5279 via Touch from 147909 -> 147908","Type":"Touch","Directional":false,"Links":[{"SourceID":147909,"TargetID":147908,"Directional":false}]},{"ID":1917,"SourceStructureID":5278,"TargetStructureID":5579,"Label":"5278-5579 via Adherens from 92157 -> 92158, 92159 -> 92160, 114175 -> 36805","Type":"Adherens","Directional":false,"Links":[{"SourceID":92157,"TargetID":92158,"Directional":false},{"SourceID":92159,"TargetID":92160,"Directional":false},{"SourceID":114175,"TargetID":36805,"Directional":false}]},{"ID":1918,"SourceStructureID":5278,"TargetStructureID":5579,"Label":"5278-5579 via Unknown from 114176 -> 147249","Type":"Unknown","Directional":false,"Links":[{"SourceID":114176,"TargetID":147249,"Directional":false}]},{"ID":1919,"SourceStructureID":8575,"TargetStructureID":5278,"Label":"8575-5278 via Unknown from 100167 -> 100168","Type":"Unknown","Directional":false,"Links":[{"SourceID":100167,"TargetID":100168,"Directional":false}]},{"ID":1920,"SourceStructureID":5278,"TargetStructureID":9347,"Label":"5278-9347 via Unknown from 92268 -> 92267, 104394 -> 104395, 114182 -> 114181, 114481 -> 114482, 126310 -> 126320, 133902 -> 133903","Type":"Unknown","Directional":false,"Links":[{"SourceID":92268,"TargetID":92267,"Directional":false},{"SourceID":104394,"TargetID":104395,"Directional":false},{"SourceID":114182,"TargetID":114181,"Directional":false},{"SourceID":114481,"TargetID":114482,"Directional":false},{"SourceID":126310,"TargetID":126320,"Directional":false},{"SourceID":133902,"TargetID":133903,"Directional":false}]},{"ID":1921,"SourceStructureID":5278,"TargetStructureID":15796,"Label":"5278-15796 via Unknown from 97941 -> 97942","Type":"Unknown","Directional":false,"Links":[{"SourceID":97941,"TargetID":97942,"Directional":false}]},{"ID":1922,"SourceStructureID":16073,"TargetStructureID":5278,"Label":"16073-5278 via Unknown from 99593 -> 99594, 133879 -> 133878","Type":"Unknown","Directional":false,"Links":[{"SourceID":99593,"TargetID":99594,"Directional":false},{"SourceID":133879,"TargetID":133878,"Directional":false}]},{"ID":1923,"SourceStructureID":21299,"TargetStructureID":5278,"Label":"21299-5278 via Adherens from 48827 -> 48828","Type":"Adherens","Directional":false,"Links":[{"SourceID":48827,"TargetID":48828,"Directional":false}]},{"ID":1924,"SourceStructureID":5278,"TargetStructureID":35894,"Label":"5278-35894 via Unknown from 100461 -> 100462","Type":"Unknown","Directional":false,"Links":[{"SourceID":100461,"TargetID":100462,"Directional":false}]},{"ID":1925,"SourceStructureID":39192,"TargetStructureID":5278,"Label":"39192-5278 via Unknown from 104200 -> 104198","Type":"Unknown","Directional":false,"Links":[{"SourceID":104200,"TargetID":104198,"Directional":false}]},{"ID":1926,"SourceStructureID":5278,"TargetStructureID":73363,"Label":"5278-73363 via Unknown from 91633 -> 91632","Type":"Unknown","Directional":false,"Links":[{"SourceID":91633,"TargetID":91632,"Directional":false}]},{"ID":1927,"SourceStructureID":5278,"TargetStructureID":73380,"Label":"5278-73380 via Unknown from 92283 -> 92286","Type":"Unknown","Directional":false,"Links":[{"SourceID":92283,"TargetID":92286,"Directional":false}]},{"ID":1928,"SourceStructureID":86042,"TargetStructureID":5278,"Label":"86042-5278 via Unknown from 104226 -> 104225","Type":"Unknown","Directional":false,"Links":[{"SourceID":104226,"TargetID":104225,"Directional":false}]},{"ID":1929,"SourceStructureID":90217,"TargetStructureID":5278,"Label":"90217-5278 via Unknown from 104230 -> 104231","Type":"Unknown","Directional":false,"Links":[{"SourceID":104230,"TargetID":104231,"Directional":false}]},{"ID":1930,"SourceStructureID":91613,"TargetStructureID":5278,"Label":"91613-5278 via Adherens from 91615 -> 91616","Type":"Adherens","Directional":false,"Links":[{"SourceID":91615,"TargetID":91616,"Directional":false}]},{"ID":1931,"SourceStructureID":91634,"TargetStructureID":5278,"Label":"91634-5278 via Adherens from 91637 -> 91638","Type":"Adherens","Directional":false,"Links":[{"SourceID":91637,"TargetID":91638,"Directional":false}]},{"ID":1932,"SourceStructureID":5278,"TargetStructureID":91639,"Label":"5278-91639 via Gap Junction from 91640 -> 91641","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91640,"TargetID":91641,"Directional":false}]},{"ID":1933,"SourceStructureID":5278,"TargetStructureID":92008,"Label":"5278-92008 via Unknown from 92010 -> 92009","Type":"Unknown","Directional":false,"Links":[{"SourceID":92010,"TargetID":92009,"Directional":false}]},{"ID":1934,"SourceStructureID":92098,"TargetStructureID":5278,"Label":"92098-5278 via Unknown from 92099 -> 92097","Type":"Unknown","Directional":false,"Links":[{"SourceID":92099,"TargetID":92097,"Directional":false}]},{"ID":1935,"SourceStructureID":5278,"TargetStructureID":92100,"Label":"5278-92100 via Adherens from 20033 -> 92101","Type":"Adherens","Directional":false,"Links":[{"SourceID":20033,"TargetID":92101,"Directional":false}]},{"ID":1936,"SourceStructureID":92103,"TargetStructureID":5278,"Label":"92103-5278 via Unknown from 92104 -> 92102","Type":"Unknown","Directional":false,"Links":[{"SourceID":92104,"TargetID":92102,"Directional":false}]},{"ID":1937,"SourceStructureID":5278,"TargetStructureID":92116,"Label":"5278-92116 via Adherens from 92119 -> 92118","Type":"Adherens","Directional":false,"Links":[{"SourceID":92119,"TargetID":92118,"Directional":false}]},{"ID":1938,"SourceStructureID":5278,"TargetStructureID":92116,"Label":"5278-92116 via Gap Junction from 20111 -> 92117","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20111,"TargetID":92117,"Directional":false}]},{"ID":1939,"SourceStructureID":92121,"TargetStructureID":5278,"Label":"92121-5278 via Unknown from 92122 -> 92120","Type":"Unknown","Directional":false,"Links":[{"SourceID":92122,"TargetID":92120,"Directional":false}]},{"ID":1940,"SourceStructureID":92149,"TargetStructureID":5278,"Label":"92149-5278 via Unknown from 147278 -> 147277","Type":"Unknown","Directional":false,"Links":[{"SourceID":147278,"TargetID":147277,"Directional":false}]},{"ID":1941,"SourceStructureID":92169,"TargetStructureID":5278,"Label":"92169-5278 via Unknown from 92170 -> 92168, 92281 -> 92282","Type":"Unknown","Directional":false,"Links":[{"SourceID":92170,"TargetID":92168,"Directional":false},{"SourceID":92281,"TargetID":92282,"Directional":false}]},{"ID":1942,"SourceStructureID":5278,"TargetStructureID":92175,"Label":"5278-92175 via Unknown from 92174 -> 92176","Type":"Unknown","Directional":false,"Links":[{"SourceID":92174,"TargetID":92176,"Directional":false}]},{"ID":1943,"SourceStructureID":92183,"TargetStructureID":5278,"Label":"92183-5278 via Unknown from 92184 -> 92182","Type":"Unknown","Directional":false,"Links":[{"SourceID":92184,"TargetID":92182,"Directional":false}]},{"ID":1944,"SourceStructureID":92186,"TargetStructureID":5278,"Label":"92186-5278 via Unknown from 92187 -> 92185, 92189 -> 92188","Type":"Unknown","Directional":false,"Links":[{"SourceID":92187,"TargetID":92185,"Directional":false},{"SourceID":92189,"TargetID":92188,"Directional":false}]},{"ID":1945,"SourceStructureID":92207,"TargetStructureID":5278,"Label":"92207-5278 via Unknown from 92208 -> 92202","Type":"Unknown","Directional":false,"Links":[{"SourceID":92208,"TargetID":92202,"Directional":false}]},{"ID":1946,"SourceStructureID":92272,"TargetStructureID":5278,"Label":"92272-5278 via Adherens from 104813 -> 104814, 104831 -> 104832, 133906 -> 133907","Type":"Adherens","Directional":false,"Links":[{"SourceID":104813,"TargetID":104814,"Directional":false},{"SourceID":104831,"TargetID":104832,"Directional":false},{"SourceID":133906,"TargetID":133907,"Directional":false}]},{"ID":1947,"SourceStructureID":5278,"TargetStructureID":92272,"Label":"5278-92272 via Gap Junction from 147279 -> 147280","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":147279,"TargetID":147280,"Directional":false}]},{"ID":1948,"SourceStructureID":92280,"TargetStructureID":5278,"Label":"92280-5278 via Adherens from 104846 -> 104847","Type":"Adherens","Directional":false,"Links":[{"SourceID":104846,"TargetID":104847,"Directional":false}]},{"ID":1949,"SourceStructureID":92295,"TargetStructureID":5278,"Label":"92295-5278 via Adherens from 127677 -> 127676, 147321 -> 147322","Type":"Adherens","Directional":false,"Links":[{"SourceID":127677,"TargetID":127676,"Directional":false},{"SourceID":147321,"TargetID":147322,"Directional":false}]},{"ID":1950,"SourceStructureID":92295,"TargetStructureID":5278,"Label":"92295-5278 via Gap Junction from 147263 -> 147264","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":147263,"TargetID":147264,"Directional":false}]},{"ID":1951,"SourceStructureID":92295,"TargetStructureID":5278,"Label":"92295-5278 via Unknown from 114291 -> 114290","Type":"Unknown","Directional":false,"Links":[{"SourceID":114291,"TargetID":114290,"Directional":false}]},{"ID":1952,"SourceStructureID":93413,"TargetStructureID":5278,"Label":"93413-5278 via Unknown from 114506 -> 114507","Type":"Unknown","Directional":false,"Links":[{"SourceID":114506,"TargetID":114507,"Directional":false}]},{"ID":1953,"SourceStructureID":5278,"TargetStructureID":95824,"Label":"5278-95824 via Adherens from 100464 -> 100473","Type":"Adherens","Directional":false,"Links":[{"SourceID":100464,"TargetID":100473,"Directional":false}]},{"ID":1954,"SourceStructureID":5278,"TargetStructureID":95824,"Label":"5278-95824 via Unknown from 100529 -> 100530","Type":"Unknown","Directional":false,"Links":[{"SourceID":100529,"TargetID":100530,"Directional":false}]},{"ID":1955,"SourceStructureID":5278,"TargetStructureID":96446,"Label":"5278-96446 via Unknown from 104419 -> 104418","Type":"Unknown","Directional":false,"Links":[{"SourceID":104419,"TargetID":104418,"Directional":false}]},{"ID":1956,"SourceStructureID":5278,"TargetStructureID":97853,"Label":"5278-97853 via Adherens from 97861 -> 97862","Type":"Adherens","Directional":false,"Links":[{"SourceID":97861,"TargetID":97862,"Directional":false}]},{"ID":1957,"SourceStructureID":5278,"TargetStructureID":97947,"Label":"5278-97947 via Unknown from 97949 -> 97948","Type":"Unknown","Directional":false,"Links":[{"SourceID":97949,"TargetID":97948,"Directional":false}]},{"ID":1958,"SourceStructureID":5278,"TargetStructureID":97951,"Label":"5278-97951 via Adherens from 133880 -> 133881","Type":"Adherens","Directional":false,"Links":[{"SourceID":133880,"TargetID":133881,"Directional":false}]},{"ID":1959,"SourceStructureID":5278,"TargetStructureID":98821,"Label":"5278-98821 via Unknown from 98820 -> 98822","Type":"Unknown","Directional":false,"Links":[{"SourceID":98820,"TargetID":98822,"Directional":false}]},{"ID":1960,"SourceStructureID":5278,"TargetStructureID":98823,"Label":"5278-98823 via Unknown from 98829 -> 98828","Type":"Unknown","Directional":false,"Links":[{"SourceID":98829,"TargetID":98828,"Directional":false}]},{"ID":1961,"SourceStructureID":5278,"TargetStructureID":98830,"Label":"5278-98830 via Adherens from 20044 -> 98831","Type":"Adherens","Directional":false,"Links":[{"SourceID":20044,"TargetID":98831,"Directional":false}]},{"ID":1962,"SourceStructureID":5278,"TargetStructureID":98830,"Label":"5278-98830 via Gap Junction from 99251 -> 99252","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99251,"TargetID":99252,"Directional":false}]},{"ID":1963,"SourceStructureID":5278,"TargetStructureID":98833,"Label":"5278-98833 via Adherens from 99280 -> 99281","Type":"Adherens","Directional":false,"Links":[{"SourceID":99280,"TargetID":99281,"Directional":false}]},{"ID":1964,"SourceStructureID":5278,"TargetStructureID":99262,"Label":"5278-99262 via Unknown from 92713 -> 99272","Type":"Unknown","Directional":false,"Links":[{"SourceID":92713,"TargetID":99272,"Directional":false}]},{"ID":1965,"SourceStructureID":99274,"TargetStructureID":5278,"Label":"99274-5278 via Unknown from 99275 -> 99276","Type":"Unknown","Directional":false,"Links":[{"SourceID":99275,"TargetID":99276,"Directional":false}]},{"ID":1966,"SourceStructureID":99290,"TargetStructureID":5278,"Label":"99290-5278 via Unknown from 99291 -> 92109","Type":"Unknown","Directional":false,"Links":[{"SourceID":99291,"TargetID":92109,"Directional":false}]},{"ID":1967,"SourceStructureID":5278,"TargetStructureID":99293,"Label":"5278-99293 via Unknown from 99292 -> 99294","Type":"Unknown","Directional":false,"Links":[{"SourceID":99292,"TargetID":99294,"Directional":false}]},{"ID":1968,"SourceStructureID":5278,"TargetStructureID":99305,"Label":"5278-99305 via Unknown from 99304 -> 99306","Type":"Unknown","Directional":false,"Links":[{"SourceID":99304,"TargetID":99306,"Directional":false}]},{"ID":1969,"SourceStructureID":99596,"TargetStructureID":5278,"Label":"99596-5278 via Unknown from 99599 -> 99598","Type":"Unknown","Directional":false,"Links":[{"SourceID":99599,"TargetID":99598,"Directional":false}]},{"ID":1970,"SourceStructureID":5278,"TargetStructureID":99749,"Label":"5278-99749 via Adherens from 20090 -> 104863, 99752 -> 99748, 99767 -> 99768","Type":"Adherens","Directional":false,"Links":[{"SourceID":20090,"TargetID":104863,"Directional":false},{"SourceID":99752,"TargetID":99748,"Directional":false},{"SourceID":99767,"TargetID":99768,"Directional":false}]},{"ID":1971,"SourceStructureID":99771,"TargetStructureID":5278,"Label":"99771-5278 via Adherens from 99775 -> 20087, 99780 -> 99782","Type":"Adherens","Directional":false,"Links":[{"SourceID":99775,"TargetID":20087,"Directional":false},{"SourceID":99780,"TargetID":99782,"Directional":false}]},{"ID":1972,"SourceStructureID":99789,"TargetStructureID":5278,"Label":"99789-5278 via Unknown from 99790 -> 99791","Type":"Unknown","Directional":false,"Links":[{"SourceID":99790,"TargetID":99791,"Directional":false}]},{"ID":1973,"SourceStructureID":5278,"TargetStructureID":99795,"Label":"5278-99795 via Gap Junction from 20154 -> 115403","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20154,"TargetID":115403,"Directional":false}]},{"ID":1974,"SourceStructureID":5278,"TargetStructureID":100124,"Label":"5278-100124 via Adherens from 100126 -> 100125","Type":"Adherens","Directional":false,"Links":[{"SourceID":100126,"TargetID":100125,"Directional":false}]},{"ID":1975,"SourceStructureID":100210,"TargetStructureID":5278,"Label":"100210-5278 via Gap Junction from 100216 -> 100215","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":100216,"TargetID":100215,"Directional":false}]},{"ID":1976,"SourceStructureID":100210,"TargetStructureID":5278,"Label":"100210-5278 via Unknown from 147268 -> 147267","Type":"Unknown","Directional":false,"Links":[{"SourceID":147268,"TargetID":147267,"Directional":false}]},{"ID":1977,"SourceStructureID":5278,"TargetStructureID":100231,"Label":"5278-100231 via Unknown from 100232 -> 100233","Type":"Unknown","Directional":false,"Links":[{"SourceID":100232,"TargetID":100233,"Directional":false}]},{"ID":1978,"SourceStructureID":5278,"TargetStructureID":100360,"Label":"5278-100360 via Adherens from 20205 -> 100361","Type":"Adherens","Directional":false,"Links":[{"SourceID":20205,"TargetID":100361,"Directional":false}]},{"ID":1979,"SourceStructureID":5278,"TargetStructureID":100414,"Label":"5278-100414 via Adherens from 20131 -> 100430","Type":"Adherens","Directional":false,"Links":[{"SourceID":20131,"TargetID":100430,"Directional":false}]},{"ID":1980,"SourceStructureID":100476,"TargetStructureID":5278,"Label":"100476-5278 via Adherens from 100483 -> 100484","Type":"Adherens","Directional":false,"Links":[{"SourceID":100483,"TargetID":100484,"Directional":false}]},{"ID":1981,"SourceStructureID":5278,"TargetStructureID":100496,"Label":"5278-100496 via Unknown from 147253 -> 147254","Type":"Unknown","Directional":false,"Links":[{"SourceID":147253,"TargetID":147254,"Directional":false}]},{"ID":1982,"SourceStructureID":100788,"TargetStructureID":5278,"Label":"100788-5278 via Adherens from 100800 -> 100801","Type":"Adherens","Directional":false,"Links":[{"SourceID":100800,"TargetID":100801,"Directional":false}]},{"ID":1983,"SourceStructureID":5278,"TargetStructureID":100797,"Label":"5278-100797 via Unknown from 100799 -> 100798","Type":"Unknown","Directional":false,"Links":[{"SourceID":100799,"TargetID":100798,"Directional":false}]},{"ID":1984,"SourceStructureID":5278,"TargetStructureID":100803,"Label":"5278-100803 via Adherens from 100812 -> 100814","Type":"Adherens","Directional":false,"Links":[{"SourceID":100812,"TargetID":100814,"Directional":false}]},{"ID":1985,"SourceStructureID":5278,"TargetStructureID":100807,"Label":"5278-100807 via Unknown from 100811 -> 100810","Type":"Unknown","Directional":false,"Links":[{"SourceID":100811,"TargetID":100810,"Directional":false}]},{"ID":1986,"SourceStructureID":5278,"TargetStructureID":103964,"Label":"5278-103964 via Unknown from 103966 -> 103967","Type":"Unknown","Directional":false,"Links":[{"SourceID":103966,"TargetID":103967,"Directional":false}]},{"ID":1987,"SourceStructureID":5278,"TargetStructureID":103992,"Label":"5278-103992 via Adherens from 103995 -> 103994, 103997 -> 103998","Type":"Adherens","Directional":false,"Links":[{"SourceID":103995,"TargetID":103994,"Directional":false},{"SourceID":103997,"TargetID":103998,"Directional":false}]},{"ID":1988,"SourceStructureID":5278,"TargetStructureID":104032,"Label":"5278-104032 via Unknown from 104031 -> 104033","Type":"Unknown","Directional":false,"Links":[{"SourceID":104031,"TargetID":104033,"Directional":false}]},{"ID":1989,"SourceStructureID":5278,"TargetStructureID":104053,"Label":"5278-104053 via Adherens from 104052 -> 104054","Type":"Adherens","Directional":false,"Links":[{"SourceID":104052,"TargetID":104054,"Directional":false}]},{"ID":1990,"SourceStructureID":104057,"TargetStructureID":5278,"Label":"104057-5278 via Unknown from 104059 -> 104060","Type":"Unknown","Directional":false,"Links":[{"SourceID":104059,"TargetID":104060,"Directional":false}]},{"ID":1991,"SourceStructureID":104062,"TargetStructureID":5278,"Label":"104062-5278 via Adherens from 104866 -> 92161","Type":"Adherens","Directional":false,"Links":[{"SourceID":104866,"TargetID":92161,"Directional":false}]},{"ID":1992,"SourceStructureID":104072,"TargetStructureID":5278,"Label":"104072-5278 via Unknown from 104073 -> 104071","Type":"Unknown","Directional":false,"Links":[{"SourceID":104073,"TargetID":104071,"Directional":false}]},{"ID":1993,"SourceStructureID":104139,"TargetStructureID":5278,"Label":"104139-5278 via Unknown from 104141 -> 104142","Type":"Unknown","Directional":false,"Links":[{"SourceID":104141,"TargetID":104142,"Directional":false}]},{"ID":1994,"SourceStructureID":104143,"TargetStructureID":5278,"Label":"104143-5278 via Adherens from 104144 -> 104146","Type":"Adherens","Directional":false,"Links":[{"SourceID":104144,"TargetID":104146,"Directional":false}]},{"ID":1995,"SourceStructureID":104151,"TargetStructureID":5278,"Label":"104151-5278 via Adherens from 104163 -> 104164","Type":"Adherens","Directional":false,"Links":[{"SourceID":104163,"TargetID":104164,"Directional":false}]},{"ID":1996,"SourceStructureID":104170,"TargetStructureID":5278,"Label":"104170-5278 via Adherens from 104171 -> 104172","Type":"Adherens","Directional":false,"Links":[{"SourceID":104171,"TargetID":104172,"Directional":false}]},{"ID":1997,"SourceStructureID":104190,"TargetStructureID":5278,"Label":"104190-5278 via Unknown from 104191 -> 104192","Type":"Unknown","Directional":false,"Links":[{"SourceID":104191,"TargetID":104192,"Directional":false}]},{"ID":1998,"SourceStructureID":5278,"TargetStructureID":104232,"Label":"5278-104232 via Unknown from 104234 -> 104233","Type":"Unknown","Directional":false,"Links":[{"SourceID":104234,"TargetID":104233,"Directional":false}]},{"ID":1999,"SourceStructureID":5278,"TargetStructureID":104236,"Label":"5278-104236 via Unknown from 104238 -> 104237","Type":"Unknown","Directional":false,"Links":[{"SourceID":104238,"TargetID":104237,"Directional":false}]},{"ID":2000,"SourceStructureID":5278,"TargetStructureID":104292,"Label":"5278-104292 via Unknown from 104290 -> 104294","Type":"Unknown","Directional":false,"Links":[{"SourceID":104290,"TargetID":104294,"Directional":false}]},{"ID":2001,"SourceStructureID":5278,"TargetStructureID":104295,"Label":"5278-104295 via Adherens from 104296 -> 104297","Type":"Adherens","Directional":false,"Links":[{"SourceID":104296,"TargetID":104297,"Directional":false}]},{"ID":2002,"SourceStructureID":5278,"TargetStructureID":104324,"Label":"5278-104324 via Unknown from 92261 -> 104356, 147256 -> 147255","Type":"Unknown","Directional":false,"Links":[{"SourceID":92261,"TargetID":104356,"Directional":false},{"SourceID":147256,"TargetID":147255,"Directional":false}]},{"ID":2003,"SourceStructureID":104327,"TargetStructureID":5278,"Label":"104327-5278 via Adherens from 104328 -> 104329","Type":"Adherens","Directional":false,"Links":[{"SourceID":104328,"TargetID":104329,"Directional":false}]},{"ID":2004,"SourceStructureID":5278,"TargetStructureID":104337,"Label":"5278-104337 via Adherens from 104338 -> 104339","Type":"Adherens","Directional":false,"Links":[{"SourceID":104338,"TargetID":104339,"Directional":false}]},{"ID":2005,"SourceStructureID":5278,"TargetStructureID":104377,"Label":"5278-104377 via Adherens from 104378 -> 104379","Type":"Adherens","Directional":false,"Links":[{"SourceID":104378,"TargetID":104379,"Directional":false}]},{"ID":2006,"SourceStructureID":104391,"TargetStructureID":5278,"Label":"104391-5278 via Unknown from 104392 -> 104393","Type":"Unknown","Directional":false,"Links":[{"SourceID":104392,"TargetID":104393,"Directional":false}]},{"ID":2007,"SourceStructureID":5278,"TargetStructureID":104512,"Label":"5278-104512 via Adherens from 104511 -> 104513","Type":"Adherens","Directional":false,"Links":[{"SourceID":104511,"TargetID":104513,"Directional":false}]},{"ID":2008,"SourceStructureID":5278,"TargetStructureID":104530,"Label":"5278-104530 via Adherens from 104537 -> 104536","Type":"Adherens","Directional":false,"Links":[{"SourceID":104537,"TargetID":104536,"Directional":false}]},{"ID":2009,"SourceStructureID":5278,"TargetStructureID":104587,"Label":"5278-104587 via Adherens from 104588 -> 104589","Type":"Adherens","Directional":false,"Links":[{"SourceID":104588,"TargetID":104589,"Directional":false}]},{"ID":2010,"SourceStructureID":5278,"TargetStructureID":104815,"Label":"5278-104815 via Unknown from 104818 -> 104819","Type":"Unknown","Directional":false,"Links":[{"SourceID":104818,"TargetID":104819,"Directional":false}]},{"ID":2011,"SourceStructureID":5278,"TargetStructureID":120898,"Label":"5278-120898 via Unknown from 114525 -> 120899","Type":"Unknown","Directional":false,"Links":[{"SourceID":114525,"TargetID":120899,"Directional":false}]},{"ID":2012,"SourceStructureID":136728,"TargetStructureID":5278,"Label":"136728-5278 via Adherens from 147271 -> 147272","Type":"Adherens","Directional":false,"Links":[{"SourceID":147271,"TargetID":147272,"Directional":false}]},{"ID":2013,"SourceStructureID":136731,"TargetStructureID":5278,"Label":"136731-5278 via Adherens from 147273 -> 114531","Type":"Adherens","Directional":false,"Links":[{"SourceID":147273,"TargetID":114531,"Directional":false}]},{"ID":2014,"SourceStructureID":136731,"TargetStructureID":5278,"Label":"136731-5278 via Gap Junction from 136732 -> 56585","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136732,"TargetID":56585,"Directional":false}]},{"ID":2015,"SourceStructureID":136733,"TargetStructureID":5278,"Label":"136733-5278 via Adherens from 147259 -> 114205","Type":"Adherens","Directional":false,"Links":[{"SourceID":147259,"TargetID":114205,"Directional":false}]},{"ID":2016,"SourceStructureID":136733,"TargetStructureID":5278,"Label":"136733-5278 via Unknown from 147258 -> 147257","Type":"Unknown","Directional":false,"Links":[{"SourceID":147258,"TargetID":147257,"Directional":false}]},{"ID":2017,"SourceStructureID":5279,"TargetStructureID":5279,"Label":"5279-5279 via Adherens from 49262 -> 49249","Type":"Adherens","Directional":false,"Links":[{"SourceID":49262,"TargetID":49249,"Directional":false}]},{"ID":2018,"SourceStructureID":5279,"TargetStructureID":5280,"Label":"5279-5280 via Adherens from 96388 -> 96389","Type":"Adherens","Directional":false,"Links":[{"SourceID":96388,"TargetID":96389,"Directional":false}]},{"ID":2019,"SourceStructureID":5279,"TargetStructureID":5280,"Label":"5279-5280 via Unknown from 96401 -> 96400","Type":"Unknown","Directional":false,"Links":[{"SourceID":96401,"TargetID":96400,"Directional":false}]},{"ID":2020,"SourceStructureID":5292,"TargetStructureID":5279,"Label":"5292-5279 via Adherens from 131185 -> 131186","Type":"Adherens","Directional":false,"Links":[{"SourceID":131185,"TargetID":131186,"Directional":false}]},{"ID":2021,"SourceStructureID":5292,"TargetStructureID":5279,"Label":"5292-5279 via Gap Junction from 51550 -> 49266","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51550,"TargetID":49266,"Directional":false}]},{"ID":2022,"SourceStructureID":5297,"TargetStructureID":5279,"Label":"5297-5279 via Gap Junction from 92308 -> 92292","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92308,"TargetID":92292,"Directional":false}]},{"ID":2023,"SourceStructureID":5279,"TargetStructureID":5517,"Label":"5279-5517 via Gap Junction from 49267 -> 49275","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49267,"TargetID":49275,"Directional":false}]},{"ID":2024,"SourceStructureID":6117,"TargetStructureID":5279,"Label":"6117-5279 via Gap Junction from 97142 -> 97141, 98034 -> 98033, 133845 -> 133844, 133847 -> 133846","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97142,"TargetID":97141,"Directional":false},{"SourceID":98034,"TargetID":98033,"Directional":false},{"SourceID":133845,"TargetID":133844,"Directional":false},{"SourceID":133847,"TargetID":133846,"Directional":false}]},{"ID":2025,"SourceStructureID":6169,"TargetStructureID":5279,"Label":"6169-5279 via Gap Junction from 9469 -> 92670, 49239 -> 47143, 49241 -> 49242, 92667 -> 9470","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":9469,"TargetID":92670,"Directional":false},{"SourceID":49239,"TargetID":47143,"Directional":false},{"SourceID":49241,"TargetID":49242,"Directional":false},{"SourceID":92667,"TargetID":9470,"Directional":false}]},{"ID":2026,"SourceStructureID":5279,"TargetStructureID":9347,"Label":"5279-9347 via Unknown from 96458 -> 96457","Type":"Unknown","Directional":false,"Links":[{"SourceID":96458,"TargetID":96457,"Directional":false}]},{"ID":2027,"SourceStructureID":5279,"TargetStructureID":20136,"Label":"5279-20136 via Gap Junction from 49514 -> 49515, 147952 -> 49263","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49514,"TargetID":49515,"Directional":false},{"SourceID":147952,"TargetID":49263,"Directional":false}]},{"ID":2028,"SourceStructureID":5279,"TargetStructureID":39957,"Label":"5279-39957 via Adherens from 97626 -> 97625, 133769 -> 133770","Type":"Adherens","Directional":false,"Links":[{"SourceID":97626,"TargetID":97625,"Directional":false},{"SourceID":133769,"TargetID":133770,"Directional":false}]},{"ID":2029,"SourceStructureID":5279,"TargetStructureID":39957,"Label":"5279-39957 via Unknown from 133771 -> 133772","Type":"Unknown","Directional":false,"Links":[{"SourceID":133771,"TargetID":133772,"Directional":false}]},{"ID":2030,"SourceStructureID":41009,"TargetStructureID":5279,"Label":"41009-5279 via Adherens from 96479 -> 96478","Type":"Adherens","Directional":false,"Links":[{"SourceID":96479,"TargetID":96478,"Directional":false}]},{"ID":2031,"SourceStructureID":55347,"TargetStructureID":5279,"Label":"55347-5279 via Adherens from 97595 -> 97594","Type":"Adherens","Directional":false,"Links":[{"SourceID":97595,"TargetID":97594,"Directional":false}]},{"ID":2032,"SourceStructureID":55347,"TargetStructureID":5279,"Label":"55347-5279 via Unknown from 97593 -> 97592","Type":"Unknown","Directional":false,"Links":[{"SourceID":97593,"TargetID":97592,"Directional":false}]},{"ID":2033,"SourceStructureID":56841,"TargetStructureID":5279,"Label":"56841-5279 via Unknown from 99219 -> 99220","Type":"Unknown","Directional":false,"Links":[{"SourceID":99219,"TargetID":99220,"Directional":false}]},{"ID":2034,"SourceStructureID":5279,"TargetStructureID":57027,"Label":"5279-57027 via Unknown from 99130 -> 99131","Type":"Unknown","Directional":false,"Links":[{"SourceID":99130,"TargetID":99131,"Directional":false}]},{"ID":2035,"SourceStructureID":5279,"TargetStructureID":59012,"Label":"5279-59012 via Adherens from 92698 -> 92697","Type":"Adherens","Directional":false,"Links":[{"SourceID":92698,"TargetID":92697,"Directional":false}]},{"ID":2036,"SourceStructureID":5279,"TargetStructureID":61836,"Label":"5279-61836 via Unknown from 133773 -> 133774","Type":"Unknown","Directional":false,"Links":[{"SourceID":133773,"TargetID":133774,"Directional":false}]},{"ID":2037,"SourceStructureID":68663,"TargetStructureID":5279,"Label":"68663-5279 via Conventional from 97281 -> 97282","Type":"Conventional","Directional":false,"Links":[{"SourceID":97281,"TargetID":97282,"Directional":false}]},{"ID":2038,"SourceStructureID":5279,"TargetStructureID":85974,"Label":"5279-85974 via Adherens from 85976 -> 85975","Type":"Adherens","Directional":false,"Links":[{"SourceID":85976,"TargetID":85975,"Directional":false}]},{"ID":2039,"SourceStructureID":91634,"TargetStructureID":5279,"Label":"91634-5279 via Adherens from 92656 -> 92655","Type":"Adherens","Directional":false,"Links":[{"SourceID":92656,"TargetID":92655,"Directional":false}]},{"ID":2040,"SourceStructureID":5279,"TargetStructureID":92183,"Label":"5279-92183 via Unknown from 96455 -> 96456","Type":"Unknown","Directional":false,"Links":[{"SourceID":96455,"TargetID":96456,"Directional":false}]},{"ID":2041,"SourceStructureID":92207,"TargetStructureID":5279,"Label":"92207-5279 via Unknown from 126098 -> 126097","Type":"Unknown","Directional":false,"Links":[{"SourceID":126098,"TargetID":126097,"Directional":false}]},{"ID":2042,"SourceStructureID":5279,"TargetStructureID":92295,"Label":"5279-92295 via Adherens from 126427 -> 127680","Type":"Adherens","Directional":false,"Links":[{"SourceID":126427,"TargetID":127680,"Directional":false}]},{"ID":2043,"SourceStructureID":5279,"TargetStructureID":92535,"Label":"5279-92535 via Adherens from 133833 -> 133834","Type":"Adherens","Directional":false,"Links":[{"SourceID":133833,"TargetID":133834,"Directional":false}]},{"ID":2044,"SourceStructureID":92542,"TargetStructureID":5279,"Label":"92542-5279 via Unknown from 92543 -> 92541","Type":"Unknown","Directional":false,"Links":[{"SourceID":92543,"TargetID":92541,"Directional":false}]},{"ID":2045,"SourceStructureID":92553,"TargetStructureID":5279,"Label":"92553-5279 via Unknown from 92554 -> 92552","Type":"Unknown","Directional":false,"Links":[{"SourceID":92554,"TargetID":92552,"Directional":false}]},{"ID":2046,"SourceStructureID":5279,"TargetStructureID":92631,"Label":"5279-92631 via Unknown from 92630 -> 92632","Type":"Unknown","Directional":false,"Links":[{"SourceID":92630,"TargetID":92632,"Directional":false}]},{"ID":2047,"SourceStructureID":92681,"TargetStructureID":5279,"Label":"92681-5279 via Adherens from 92686 -> 92678","Type":"Adherens","Directional":false,"Links":[{"SourceID":92686,"TargetID":92678,"Directional":false}]},{"ID":2048,"SourceStructureID":92681,"TargetStructureID":5279,"Label":"92681-5279 via Unknown from 92685 -> 92679","Type":"Unknown","Directional":false,"Links":[{"SourceID":92685,"TargetID":92679,"Directional":false}]},{"ID":2049,"SourceStructureID":5279,"TargetStructureID":92695,"Label":"5279-92695 via Unknown from 92694 -> 92696","Type":"Unknown","Directional":false,"Links":[{"SourceID":92694,"TargetID":92696,"Directional":false}]},{"ID":2050,"SourceStructureID":92705,"TargetStructureID":5279,"Label":"92705-5279 via Unknown from 92706 -> 92707","Type":"Unknown","Directional":false,"Links":[{"SourceID":92706,"TargetID":92707,"Directional":false}]},{"ID":2051,"SourceStructureID":5279,"TargetStructureID":92715,"Label":"5279-92715 via Unknown from 133796 -> 133797","Type":"Unknown","Directional":false,"Links":[{"SourceID":133796,"TargetID":133797,"Directional":false}]},{"ID":2052,"SourceStructureID":5279,"TargetStructureID":96370,"Label":"5279-96370 via Adherens from 96372 -> 96371","Type":"Adherens","Directional":false,"Links":[{"SourceID":96372,"TargetID":96371,"Directional":false}]},{"ID":2053,"SourceStructureID":5279,"TargetStructureID":96385,"Label":"5279-96385 via Unknown from 96387 -> 96386","Type":"Unknown","Directional":false,"Links":[{"SourceID":96387,"TargetID":96386,"Directional":false}]},{"ID":2054,"SourceStructureID":5279,"TargetStructureID":96403,"Label":"5279-96403 via Adherens from 96406 -> 96405","Type":"Adherens","Directional":false,"Links":[{"SourceID":96406,"TargetID":96405,"Directional":false}]},{"ID":2055,"SourceStructureID":96407,"TargetStructureID":5279,"Label":"96407-5279 via Adherens from 96409 -> 96408","Type":"Adherens","Directional":false,"Links":[{"SourceID":96409,"TargetID":96408,"Directional":false}]},{"ID":2056,"SourceStructureID":5279,"TargetStructureID":96429,"Label":"5279-96429 via Adherens from 96432 -> 96430","Type":"Adherens","Directional":false,"Links":[{"SourceID":96432,"TargetID":96430,"Directional":false}]},{"ID":2057,"SourceStructureID":96446,"TargetStructureID":5279,"Label":"96446-5279 via Adherens from 147960 -> 147961","Type":"Adherens","Directional":false,"Links":[{"SourceID":147960,"TargetID":147961,"Directional":false}]},{"ID":2058,"SourceStructureID":5279,"TargetStructureID":96450,"Label":"5279-96450 via Unknown from 96451 -> 96452","Type":"Unknown","Directional":false,"Links":[{"SourceID":96451,"TargetID":96452,"Directional":false}]},{"ID":2059,"SourceStructureID":5279,"TargetStructureID":96459,"Label":"5279-96459 via Unknown from 96461 -> 96460","Type":"Unknown","Directional":false,"Links":[{"SourceID":96461,"TargetID":96460,"Directional":false}]},{"ID":2060,"SourceStructureID":5279,"TargetStructureID":96489,"Label":"5279-96489 via Unknown from 96492 -> 96491","Type":"Unknown","Directional":false,"Links":[{"SourceID":96492,"TargetID":96491,"Directional":false}]},{"ID":2061,"SourceStructureID":5279,"TargetStructureID":97054,"Label":"5279-97054 via Unknown from 97055 -> 97056","Type":"Unknown","Directional":false,"Links":[{"SourceID":97055,"TargetID":97056,"Directional":false}]},{"ID":2062,"SourceStructureID":5279,"TargetStructureID":97113,"Label":"5279-97113 via Unknown from 97115 -> 97114, 97117 -> 97118","Type":"Unknown","Directional":false,"Links":[{"SourceID":97115,"TargetID":97114,"Directional":false},{"SourceID":97117,"TargetID":97118,"Directional":false}]},{"ID":2063,"SourceStructureID":5279,"TargetStructureID":97190,"Label":"5279-97190 via Unknown from 97192 -> 97191","Type":"Unknown","Directional":false,"Links":[{"SourceID":97192,"TargetID":97191,"Directional":false}]},{"ID":2064,"SourceStructureID":5279,"TargetStructureID":97193,"Label":"5279-97193 via Unknown from 97197 -> 97196","Type":"Unknown","Directional":false,"Links":[{"SourceID":97197,"TargetID":97196,"Directional":false}]},{"ID":2065,"SourceStructureID":97269,"TargetStructureID":5279,"Label":"97269-5279 via Unknown from 97273 -> 97274","Type":"Unknown","Directional":false,"Links":[{"SourceID":97273,"TargetID":97274,"Directional":false}]},{"ID":2066,"SourceStructureID":97286,"TargetStructureID":5279,"Label":"97286-5279 via Unknown from 97289 -> 97288","Type":"Unknown","Directional":false,"Links":[{"SourceID":97289,"TargetID":97288,"Directional":false}]},{"ID":2067,"SourceStructureID":97311,"TargetStructureID":5279,"Label":"97311-5279 via Unknown from 133776 -> 133775","Type":"Unknown","Directional":false,"Links":[{"SourceID":133776,"TargetID":133775,"Directional":false}]},{"ID":2068,"SourceStructureID":97358,"TargetStructureID":5279,"Label":"97358-5279 via Adherens from 133777 -> 133791","Type":"Adherens","Directional":false,"Links":[{"SourceID":133777,"TargetID":133791,"Directional":false}]},{"ID":2069,"SourceStructureID":97363,"TargetStructureID":5279,"Label":"97363-5279 via Unknown from 97365 -> 97364","Type":"Unknown","Directional":false,"Links":[{"SourceID":97365,"TargetID":97364,"Directional":false}]},{"ID":2070,"SourceStructureID":5279,"TargetStructureID":97600,"Label":"5279-97600 via Adherens from 97602 -> 97601","Type":"Adherens","Directional":false,"Links":[{"SourceID":97602,"TargetID":97601,"Directional":false}]},{"ID":2071,"SourceStructureID":5279,"TargetStructureID":97600,"Label":"5279-97600 via Unknown from 133792 -> 133793","Type":"Unknown","Directional":false,"Links":[{"SourceID":133792,"TargetID":133793,"Directional":false}]},{"ID":2072,"SourceStructureID":97646,"TargetStructureID":5279,"Label":"97646-5279 via Adherens from 98012 -> 98011","Type":"Adherens","Directional":false,"Links":[{"SourceID":98012,"TargetID":98011,"Directional":false}]},{"ID":2073,"SourceStructureID":98008,"TargetStructureID":5279,"Label":"98008-5279 via Unknown from 98010 -> 98009","Type":"Unknown","Directional":false,"Links":[{"SourceID":98010,"TargetID":98009,"Directional":false}]},{"ID":2074,"SourceStructureID":5279,"TargetStructureID":98041,"Label":"5279-98041 via Adherens from 98055 -> 98052","Type":"Adherens","Directional":false,"Links":[{"SourceID":98055,"TargetID":98052,"Directional":false}]},{"ID":2075,"SourceStructureID":5279,"TargetStructureID":98100,"Label":"5279-98100 via Adherens from 133841 -> 133842","Type":"Adherens","Directional":false,"Links":[{"SourceID":133841,"TargetID":133842,"Directional":false}]},{"ID":2076,"SourceStructureID":5279,"TargetStructureID":98106,"Label":"5279-98106 via Adherens from 133840 -> 133839","Type":"Adherens","Directional":false,"Links":[{"SourceID":133840,"TargetID":133839,"Directional":false}]},{"ID":2077,"SourceStructureID":5279,"TargetStructureID":98111,"Label":"5279-98111 via Unknown from 133795 -> 133794","Type":"Unknown","Directional":false,"Links":[{"SourceID":133795,"TargetID":133794,"Directional":false}]},{"ID":2078,"SourceStructureID":5279,"TargetStructureID":98122,"Label":"5279-98122 via Adherens from 98126 -> 98125","Type":"Adherens","Directional":false,"Links":[{"SourceID":98126,"TargetID":98125,"Directional":false}]},{"ID":2079,"SourceStructureID":5279,"TargetStructureID":98573,"Label":"5279-98573 via Adherens from 98577 -> 98576","Type":"Adherens","Directional":false,"Links":[{"SourceID":98577,"TargetID":98576,"Directional":false}]},{"ID":2080,"SourceStructureID":98627,"TargetStructureID":5279,"Label":"98627-5279 via Unknown from 98629 -> 98628","Type":"Unknown","Directional":false,"Links":[{"SourceID":98629,"TargetID":98628,"Directional":false}]},{"ID":2081,"SourceStructureID":98667,"TargetStructureID":5279,"Label":"98667-5279 via Unknown from 98670 -> 98668","Type":"Unknown","Directional":false,"Links":[{"SourceID":98670,"TargetID":98668,"Directional":false}]},{"ID":2082,"SourceStructureID":98976,"TargetStructureID":5279,"Label":"98976-5279 via Unknown from 98977 -> 98978","Type":"Unknown","Directional":false,"Links":[{"SourceID":98977,"TargetID":98978,"Directional":false}]},{"ID":2083,"SourceStructureID":5279,"TargetStructureID":99048,"Label":"5279-99048 via Unknown from 99050 -> 99051","Type":"Unknown","Directional":false,"Links":[{"SourceID":99050,"TargetID":99051,"Directional":false}]},{"ID":2084,"SourceStructureID":5279,"TargetStructureID":99056,"Label":"5279-99056 via Unknown from 99046 -> 133843","Type":"Unknown","Directional":false,"Links":[{"SourceID":99046,"TargetID":133843,"Directional":false}]},{"ID":2085,"SourceStructureID":5279,"TargetStructureID":99080,"Label":"5279-99080 via Unknown from 99082 -> 99083","Type":"Unknown","Directional":false,"Links":[{"SourceID":99082,"TargetID":99083,"Directional":false}]},{"ID":2086,"SourceStructureID":99106,"TargetStructureID":5279,"Label":"99106-5279 via Unknown from 129573 -> 129572","Type":"Unknown","Directional":false,"Links":[{"SourceID":129573,"TargetID":129572,"Directional":false}]},{"ID":2087,"SourceStructureID":99112,"TargetStructureID":5279,"Label":"99112-5279 via Unknown from 99114 -> 99113","Type":"Unknown","Directional":false,"Links":[{"SourceID":99114,"TargetID":99113,"Directional":false}]},{"ID":2088,"SourceStructureID":99144,"TargetStructureID":5279,"Label":"99144-5279 via Unknown from 99146 -> 99145","Type":"Unknown","Directional":false,"Links":[{"SourceID":99146,"TargetID":99145,"Directional":false}]},{"ID":2089,"SourceStructureID":99795,"TargetStructureID":5279,"Label":"99795-5279 via Adherens from 99810 -> 99811","Type":"Adherens","Directional":false,"Links":[{"SourceID":99810,"TargetID":99811,"Directional":false}]},{"ID":2090,"SourceStructureID":100780,"TargetStructureID":5279,"Label":"100780-5279 via Adherens from 100785 -> 92665","Type":"Adherens","Directional":false,"Links":[{"SourceID":100785,"TargetID":92665,"Directional":false}]},{"ID":2091,"SourceStructureID":136667,"TargetStructureID":5279,"Label":"136667-5279 via Gap Junction from 136668 -> 126473","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136668,"TargetID":126473,"Directional":false}]},{"ID":2092,"SourceStructureID":5281,"TargetStructureID":6117,"Label":"5281-6117 via Adherens from 83168 -> 83167","Type":"Adherens","Directional":false,"Links":[{"SourceID":83168,"TargetID":83167,"Directional":false}]},{"ID":2093,"SourceStructureID":5281,"TargetStructureID":6117,"Label":"5281-6117 via Unknown from 83203 -> 83202","Type":"Unknown","Directional":false,"Links":[{"SourceID":83203,"TargetID":83202,"Directional":false}]},{"ID":2094,"SourceStructureID":5281,"TargetStructureID":25402,"Label":"5281-25402 via Adherens from 98587 -> 98586","Type":"Adherens","Directional":false,"Links":[{"SourceID":98587,"TargetID":98586,"Directional":false}]},{"ID":2095,"SourceStructureID":5282,"TargetStructureID":5284,"Label":"5282-5284 via Unknown from 124720 -> 112914","Type":"Unknown","Directional":false,"Links":[{"SourceID":124720,"TargetID":112914,"Directional":false}]},{"ID":2096,"SourceStructureID":5561,"TargetStructureID":5282,"Label":"5561-5282 via Adherens from 148146 -> 148147","Type":"Adherens","Directional":false,"Links":[{"SourceID":148146,"TargetID":148147,"Directional":false}]},{"ID":2097,"SourceStructureID":5282,"TargetStructureID":5561,"Label":"5282-5561 via Gap Junction from 136727 -> 135827","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136727,"TargetID":135827,"Directional":false}]},{"ID":2098,"SourceStructureID":5282,"TargetStructureID":5561,"Label":"5282-5561 via Unknown from 136340 -> 130899","Type":"Unknown","Directional":false,"Links":[{"SourceID":136340,"TargetID":130899,"Directional":false}]},{"ID":2099,"SourceStructureID":8037,"TargetStructureID":5282,"Label":"8037-5282 via Adherens from 148178 -> 148179","Type":"Adherens","Directional":false,"Links":[{"SourceID":148178,"TargetID":148179,"Directional":false}]},{"ID":2100,"SourceStructureID":5282,"TargetStructureID":20136,"Label":"5282-20136 via Adherens from 109280 -> 109281","Type":"Adherens","Directional":false,"Links":[{"SourceID":109280,"TargetID":109281,"Directional":false}]},{"ID":2101,"SourceStructureID":5282,"TargetStructureID":20136,"Label":"5282-20136 via Gap Junction from 108858 -> 108859","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108858,"TargetID":108859,"Directional":false}]},{"ID":2102,"SourceStructureID":5282,"TargetStructureID":20136,"Label":"5282-20136 via Unknown from 136348 -> 136347","Type":"Unknown","Directional":false,"Links":[{"SourceID":136348,"TargetID":136347,"Directional":false}]},{"ID":2103,"SourceStructureID":5283,"TargetStructureID":5283,"Label":"5283-5283 via Adherens from 123933 -> 131662, 130539 -> 130538","Type":"Adherens","Directional":false,"Links":[{"SourceID":123933,"TargetID":131662,"Directional":false},{"SourceID":130539,"TargetID":130538,"Directional":false}]},{"ID":2104,"SourceStructureID":5374,"TargetStructureID":5283,"Label":"5374-5283 via Adherens from 123991 -> 123990, 123997 -> 123996","Type":"Adherens","Directional":false,"Links":[{"SourceID":123991,"TargetID":123990,"Directional":false},{"SourceID":123997,"TargetID":123996,"Directional":false}]},{"ID":2105,"SourceStructureID":5374,"TargetStructureID":5283,"Label":"5374-5283 via Unknown from 123985 -> 123984","Type":"Unknown","Directional":false,"Links":[{"SourceID":123985,"TargetID":123984,"Directional":false}]},{"ID":2106,"SourceStructureID":5515,"TargetStructureID":5283,"Label":"5515-5283 via Adherens from 22458 -> 22457, 132170 -> 132171, 132244 -> 132245","Type":"Adherens","Directional":false,"Links":[{"SourceID":22458,"TargetID":22457,"Directional":false},{"SourceID":132170,"TargetID":132171,"Directional":false},{"SourceID":132244,"TargetID":132245,"Directional":false}]},{"ID":2107,"SourceStructureID":5515,"TargetStructureID":5283,"Label":"5515-5283 via Gap Junction from 132172 -> 132173","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132172,"TargetID":132173,"Directional":false}]},{"ID":2108,"SourceStructureID":5283,"TargetStructureID":5562,"Label":"5283-5562 via Gap Junction from 132076 -> 132075","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132076,"TargetID":132075,"Directional":false}]},{"ID":2109,"SourceStructureID":5283,"TargetStructureID":5860,"Label":"5283-5860 via Gap Junction from 124352 -> 124353, 131715 -> 131716","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124352,"TargetID":124353,"Directional":false},{"SourceID":131715,"TargetID":131716,"Directional":false}]},{"ID":2110,"SourceStructureID":5283,"TargetStructureID":6156,"Label":"5283-6156 via Adherens from 123894 -> 123895","Type":"Adherens","Directional":false,"Links":[{"SourceID":123894,"TargetID":123895,"Directional":false}]},{"ID":2111,"SourceStructureID":5283,"TargetStructureID":6156,"Label":"5283-6156 via Gap Junction from 132207 -> 132206","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132207,"TargetID":132206,"Directional":false}]},{"ID":2112,"SourceStructureID":5283,"TargetStructureID":6589,"Label":"5283-6589 via Adherens from 123847 -> 123848","Type":"Adherens","Directional":false,"Links":[{"SourceID":123847,"TargetID":123848,"Directional":false}]},{"ID":2113,"SourceStructureID":7043,"TargetStructureID":5283,"Label":"7043-5283 via Adherens from 118744 -> 118745","Type":"Adherens","Directional":false,"Links":[{"SourceID":118744,"TargetID":118745,"Directional":false}]},{"ID":2114,"SourceStructureID":5283,"TargetStructureID":7043,"Label":"5283-7043 via Touch from 131648 -> 131649","Type":"Touch","Directional":false,"Links":[{"SourceID":131648,"TargetID":131649,"Directional":false}]},{"ID":2115,"SourceStructureID":8033,"TargetStructureID":5283,"Label":"8033-5283 via Adherens from 132111 -> 132144","Type":"Adherens","Directional":false,"Links":[{"SourceID":132111,"TargetID":132144,"Directional":false}]},{"ID":2116,"SourceStructureID":8037,"TargetStructureID":5283,"Label":"8037-5283 via Gap Junction from 131684 -> 131685","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131684,"TargetID":131685,"Directional":false}]},{"ID":2117,"SourceStructureID":5283,"TargetStructureID":9693,"Label":"5283-9693 via Adherens from 135014 -> 135013","Type":"Adherens","Directional":false,"Links":[{"SourceID":135014,"TargetID":135013,"Directional":false}]},{"ID":2118,"SourceStructureID":5283,"TargetStructureID":12897,"Label":"5283-12897 via Gap Junction from 108236 -> 108237, 132086 -> 132087, 132197 -> 132196","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108236,"TargetID":108237,"Directional":false},{"SourceID":132086,"TargetID":132087,"Directional":false},{"SourceID":132197,"TargetID":132196,"Directional":false}]},{"ID":2119,"SourceStructureID":16026,"TargetStructureID":5283,"Label":"16026-5283 via Adherens from 65548 -> 65547, 123763 -> 123762, 131661 -> 131660","Type":"Adherens","Directional":false,"Links":[{"SourceID":65548,"TargetID":65547,"Directional":false},{"SourceID":123763,"TargetID":123762,"Directional":false},{"SourceID":131661,"TargetID":131660,"Directional":false}]},{"ID":2120,"SourceStructureID":16026,"TargetStructureID":5283,"Label":"16026-5283 via Gap Junction from 131656 -> 131657, 134526 -> 134527, 134842 -> 134843","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131656,"TargetID":131657,"Directional":false},{"SourceID":134526,"TargetID":134527,"Directional":false},{"SourceID":134842,"TargetID":134843,"Directional":false}]},{"ID":2121,"SourceStructureID":5283,"TargetStructureID":16026,"Label":"5283-16026 via Touch from 132092 -> 132093","Type":"Touch","Directional":false,"Links":[{"SourceID":132092,"TargetID":132093,"Directional":false}]},{"ID":2122,"SourceStructureID":5283,"TargetStructureID":22554,"Label":"5283-22554 via Unknown from 131687 -> 131688, 132180 -> 123903","Type":"Unknown","Directional":false,"Links":[{"SourceID":131687,"TargetID":131688,"Directional":false},{"SourceID":132180,"TargetID":123903,"Directional":false}]},{"ID":2123,"SourceStructureID":5283,"TargetStructureID":64371,"Label":"5283-64371 via Adherens from 124033 -> 131675, 131676 -> 131677","Type":"Adherens","Directional":false,"Links":[{"SourceID":124033,"TargetID":131675,"Directional":false},{"SourceID":131676,"TargetID":131677,"Directional":false}]},{"ID":2124,"SourceStructureID":5283,"TargetStructureID":64371,"Label":"5283-64371 via Unknown from 123932 -> 135062","Type":"Unknown","Directional":false,"Links":[{"SourceID":123932,"TargetID":135062,"Directional":false}]},{"ID":2125,"SourceStructureID":5283,"TargetStructureID":65555,"Label":"5283-65555 via Unknown from 132133 -> 132134","Type":"Unknown","Directional":false,"Links":[{"SourceID":132133,"TargetID":132134,"Directional":false}]},{"ID":2126,"SourceStructureID":5283,"TargetStructureID":66303,"Label":"5283-66303 via Adherens from 66314 -> 66313","Type":"Adherens","Directional":false,"Links":[{"SourceID":66314,"TargetID":66313,"Directional":false}]},{"ID":2127,"SourceStructureID":67361,"TargetStructureID":5283,"Label":"67361-5283 via Adherens from 130545 -> 124163","Type":"Adherens","Directional":false,"Links":[{"SourceID":130545,"TargetID":124163,"Directional":false}]},{"ID":2128,"SourceStructureID":5283,"TargetStructureID":67361,"Label":"5283-67361 via Unknown from 130547 -> 130546, 132198 -> 124188, 132199 -> 124196","Type":"Unknown","Directional":false,"Links":[{"SourceID":130547,"TargetID":130546,"Directional":false},{"SourceID":132198,"TargetID":124188,"Directional":false},{"SourceID":132199,"TargetID":124196,"Directional":false}]},{"ID":2129,"SourceStructureID":68087,"TargetStructureID":5283,"Label":"68087-5283 via Adherens from 80145 -> 80144","Type":"Adherens","Directional":false,"Links":[{"SourceID":80145,"TargetID":80144,"Directional":false}]},{"ID":2130,"SourceStructureID":5283,"TargetStructureID":68087,"Label":"5283-68087 via Unknown from 132119 -> 132120","Type":"Unknown","Directional":false,"Links":[{"SourceID":132119,"TargetID":132120,"Directional":false}]},{"ID":2131,"SourceStructureID":5283,"TargetStructureID":68435,"Label":"5283-68435 via Adherens from 79879 -> 68452","Type":"Adherens","Directional":false,"Links":[{"SourceID":79879,"TargetID":68452,"Directional":false}]},{"ID":2132,"SourceStructureID":5283,"TargetStructureID":68435,"Label":"5283-68435 via Unknown from 80058 -> 80059","Type":"Unknown","Directional":false,"Links":[{"SourceID":80058,"TargetID":80059,"Directional":false}]},{"ID":2133,"SourceStructureID":68463,"TargetStructureID":5283,"Label":"68463-5283 via Unknown from 132209 -> 79891","Type":"Unknown","Directional":false,"Links":[{"SourceID":132209,"TargetID":79891,"Directional":false}]},{"ID":2134,"SourceStructureID":5283,"TargetStructureID":80079,"Label":"5283-80079 via Adherens from 80078 -> 80080","Type":"Adherens","Directional":false,"Links":[{"SourceID":80078,"TargetID":80080,"Directional":false}]},{"ID":2135,"SourceStructureID":5283,"TargetStructureID":80079,"Label":"5283-80079 via Unknown from 131654 -> 131655","Type":"Unknown","Directional":false,"Links":[{"SourceID":131654,"TargetID":131655,"Directional":false}]},{"ID":2136,"SourceStructureID":80098,"TargetStructureID":5283,"Label":"80098-5283 via Adherens from 131718 -> 131717","Type":"Adherens","Directional":false,"Links":[{"SourceID":131718,"TargetID":131717,"Directional":false}]},{"ID":2137,"SourceStructureID":80101,"TargetStructureID":5283,"Label":"80101-5283 via Adherens from 80102 -> 80100","Type":"Adherens","Directional":false,"Links":[{"SourceID":80102,"TargetID":80100,"Directional":false}]},{"ID":2138,"SourceStructureID":80115,"TargetStructureID":5283,"Label":"80115-5283 via Adherens from 80117 -> 80118","Type":"Adherens","Directional":false,"Links":[{"SourceID":80117,"TargetID":80118,"Directional":false}]},{"ID":2139,"SourceStructureID":5283,"TargetStructureID":80123,"Label":"5283-80123 via Adherens from 80127 -> 80128","Type":"Adherens","Directional":false,"Links":[{"SourceID":80127,"TargetID":80128,"Directional":false}]},{"ID":2140,"SourceStructureID":80137,"TargetStructureID":5283,"Label":"80137-5283 via Unknown from 132118 -> 132117","Type":"Unknown","Directional":false,"Links":[{"SourceID":132118,"TargetID":132117,"Directional":false}]},{"ID":2141,"SourceStructureID":5283,"TargetStructureID":80153,"Label":"5283-80153 via Adherens from 80152 -> 80156","Type":"Adherens","Directional":false,"Links":[{"SourceID":80152,"TargetID":80156,"Directional":false}]},{"ID":2142,"SourceStructureID":80154,"TargetStructureID":5283,"Label":"80154-5283 via Adherens from 80155 -> 80151","Type":"Adherens","Directional":false,"Links":[{"SourceID":80155,"TargetID":80151,"Directional":false}]},{"ID":2143,"SourceStructureID":5283,"TargetStructureID":80167,"Label":"5283-80167 via Unknown from 131700 -> 131701","Type":"Unknown","Directional":false,"Links":[{"SourceID":131700,"TargetID":131701,"Directional":false}]},{"ID":2144,"SourceStructureID":5283,"TargetStructureID":80412,"Label":"5283-80412 via Unknown from 124178 -> 124177","Type":"Unknown","Directional":false,"Links":[{"SourceID":124178,"TargetID":124177,"Directional":false}]},{"ID":2145,"SourceStructureID":5283,"TargetStructureID":85551,"Label":"5283-85551 via Adherens from 123777 -> 123778","Type":"Adherens","Directional":false,"Links":[{"SourceID":123777,"TargetID":123778,"Directional":false}]},{"ID":2146,"SourceStructureID":5283,"TargetStructureID":94935,"Label":"5283-94935 via Adherens from 124337 -> 124338, 131690 -> 124233","Type":"Adherens","Directional":false,"Links":[{"SourceID":124337,"TargetID":124338,"Directional":false},{"SourceID":131690,"TargetID":124233,"Directional":false}]},{"ID":2147,"SourceStructureID":5283,"TargetStructureID":122829,"Label":"5283-122829 via Unknown from 123980 -> 123981, 131672 -> 131671","Type":"Unknown","Directional":false,"Links":[{"SourceID":123980,"TargetID":123981,"Directional":false},{"SourceID":131672,"TargetID":131671,"Directional":false}]},{"ID":2148,"SourceStructureID":5283,"TargetStructureID":131630,"Label":"5283-131630 via Unknown from 131629 -> 131634","Type":"Unknown","Directional":false,"Links":[{"SourceID":131629,"TargetID":131634,"Directional":false}]},{"ID":2149,"SourceStructureID":131664,"TargetStructureID":5283,"Label":"131664-5283 via Adherens from 131667 -> 123959","Type":"Adherens","Directional":false,"Links":[{"SourceID":131667,"TargetID":123959,"Directional":false}]},{"ID":2150,"SourceStructureID":5283,"TargetStructureID":131664,"Label":"5283-131664 via Unknown from 131663 -> 131666","Type":"Unknown","Directional":false,"Links":[{"SourceID":131663,"TargetID":131666,"Directional":false}]},{"ID":2151,"SourceStructureID":131708,"TargetStructureID":5283,"Label":"131708-5283 via Adherens from 131710 -> 131709","Type":"Adherens","Directional":false,"Links":[{"SourceID":131710,"TargetID":131709,"Directional":false}]},{"ID":2152,"SourceStructureID":5283,"TargetStructureID":132081,"Label":"5283-132081 via Gap Junction from 132080 -> 132082","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132080,"TargetID":132082,"Directional":false}]},{"ID":2153,"SourceStructureID":132158,"TargetStructureID":5283,"Label":"132158-5283 via Unknown from 132159 -> 123804","Type":"Unknown","Directional":false,"Links":[{"SourceID":132159,"TargetID":123804,"Directional":false}]},{"ID":2154,"SourceStructureID":5283,"TargetStructureID":135039,"Label":"5283-135039 via Gap Junction from 135038 -> 135041","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135038,"TargetID":135041,"Directional":false}]},{"ID":2155,"SourceStructureID":135052,"TargetStructureID":5283,"Label":"135052-5283 via Gap Junction from 135054 -> 131695","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135054,"TargetID":131695,"Directional":false}]},{"ID":2156,"SourceStructureID":5284,"TargetStructureID":5284,"Label":"5284-5284 via Adherens from 124692 -> 124691","Type":"Adherens","Directional":false,"Links":[{"SourceID":124692,"TargetID":124691,"Directional":false}]},{"ID":2157,"SourceStructureID":5284,"TargetStructureID":5284,"Label":"5284-5284 via Gap Junction from 53431 -> 53430","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53431,"TargetID":53430,"Directional":false}]},{"ID":2158,"SourceStructureID":5284,"TargetStructureID":5292,"Label":"5284-5292 via Adherens from 39425 -> 51576, 91803 -> 91804, 124684 -> 124685, 124706 -> 124705, 127703 -> 127702, 127850 -> 127851, 127881 -> 127882, 127885 -> 127884, 135763 -> 135764, 135768 -> 135767","Type":"Adherens","Directional":false,"Links":[{"SourceID":39425,"TargetID":51576,"Directional":false},{"SourceID":91803,"TargetID":91804,"Directional":false},{"SourceID":124684,"TargetID":124685,"Directional":false},{"SourceID":124706,"TargetID":124705,"Directional":false},{"SourceID":127703,"TargetID":127702,"Directional":false},{"SourceID":127850,"TargetID":127851,"Directional":false},{"SourceID":127881,"TargetID":127882,"Directional":false},{"SourceID":127885,"TargetID":127884,"Directional":false},{"SourceID":135763,"TargetID":135764,"Directional":false},{"SourceID":135768,"TargetID":135767,"Directional":false}]},{"ID":2159,"SourceStructureID":5284,"TargetStructureID":5292,"Label":"5284-5292 via Gap Junction from 49823 -> 49822, 49851 -> 49846, 49861 -> 49928, 49933 -> 49836, 51575 -> 39424, 54349 -> 49895, 54390 -> 91948, 60816 -> 98225, 91596 -> 91594, 91802 -> 51566, 91810 -> 91811, 91881 -> 91882, 91884 -> 91883, 98153 -> 49880, 112877 -> 112878, 113223 -> 49897, 113371 -> 113372, 113619 -> 113620, 124715 -> 124716, 127732 -> 127733","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49823,"TargetID":49822,"Directional":false},{"SourceID":49851,"TargetID":49846,"Directional":false},{"SourceID":49861,"TargetID":49928,"Directional":false},{"SourceID":49933,"TargetID":49836,"Directional":false},{"SourceID":51575,"TargetID":39424,"Directional":false},{"SourceID":54349,"TargetID":49895,"Directional":false},{"SourceID":54390,"TargetID":91948,"Directional":false},{"SourceID":60816,"TargetID":98225,"Directional":false},{"SourceID":91596,"TargetID":91594,"Directional":false},{"SourceID":91802,"TargetID":51566,"Directional":false},{"SourceID":91810,"TargetID":91811,"Directional":false},{"SourceID":91881,"TargetID":91882,"Directional":false},{"SourceID":91884,"TargetID":91883,"Directional":false},{"SourceID":98153,"TargetID":49880,"Directional":false},{"SourceID":112877,"TargetID":112878,"Directional":false},{"SourceID":113223,"TargetID":49897,"Directional":false},{"SourceID":113371,"TargetID":113372,"Directional":false},{"SourceID":113619,"TargetID":113620,"Directional":false},{"SourceID":124715,"TargetID":124716,"Directional":false},{"SourceID":127732,"TargetID":127733,"Directional":false}]},{"ID":2160,"SourceStructureID":5284,"TargetStructureID":5297,"Label":"5284-5297 via Adherens from 127726 -> 127727, 127736 -> 127735","Type":"Adherens","Directional":false,"Links":[{"SourceID":127726,"TargetID":127727,"Directional":false},{"SourceID":127736,"TargetID":127735,"Directional":false}]},{"ID":2161,"SourceStructureID":5284,"TargetStructureID":5297,"Label":"5284-5297 via Gap Junction from 39428 -> 39427, 68601 -> 68599, 92300 -> 92302, 98142 -> 98143, 98150 -> 60839, 112541 -> 112542, 112850 -> 112851, 112910 -> 112909, 113217 -> 113216, 113366 -> 113365, 113378 -> 113377, 113401 -> 113400, 113436 -> 113437, 113522 -> 113521, 113613 -> 113612, 116316 -> 116315, 121068 -> 121069, 124676 -> 121058, 127785 -> 127786","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39428,"TargetID":39427,"Directional":false},{"SourceID":68601,"TargetID":68599,"Directional":false},{"SourceID":92300,"TargetID":92302,"Directional":false},{"SourceID":98142,"TargetID":98143,"Directional":false},{"SourceID":98150,"TargetID":60839,"Directional":false},{"SourceID":112541,"TargetID":112542,"Directional":false},{"SourceID":112850,"TargetID":112851,"Directional":false},{"SourceID":112910,"TargetID":112909,"Directional":false},{"SourceID":113217,"TargetID":113216,"Directional":false},{"SourceID":113366,"TargetID":113365,"Directional":false},{"SourceID":113378,"TargetID":113377,"Directional":false},{"SourceID":113401,"TargetID":113400,"Directional":false},{"SourceID":113436,"TargetID":113437,"Directional":false},{"SourceID":113522,"TargetID":113521,"Directional":false},{"SourceID":113613,"TargetID":113612,"Directional":false},{"SourceID":116316,"TargetID":116315,"Directional":false},{"SourceID":121068,"TargetID":121069,"Directional":false},{"SourceID":124676,"TargetID":121058,"Directional":false},{"SourceID":127785,"TargetID":127786,"Directional":false}]},{"ID":2162,"SourceStructureID":5284,"TargetStructureID":5297,"Label":"5284-5297 via Touch from 127874 -> 127875","Type":"Touch","Directional":false,"Links":[{"SourceID":127874,"TargetID":127875,"Directional":false}]},{"ID":2163,"SourceStructureID":5501,"TargetStructureID":5284,"Label":"5501-5284 via Gap Junction from 113022 -> 113021, 127936 -> 127935","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113022,"TargetID":113021,"Directional":false},{"SourceID":127936,"TargetID":127935,"Directional":false}]},{"ID":2164,"SourceStructureID":5284,"TargetStructureID":5503,"Label":"5284-5503 via Adherens from 127938 -> 127939","Type":"Adherens","Directional":false,"Links":[{"SourceID":127938,"TargetID":127939,"Directional":false}]},{"ID":2165,"SourceStructureID":5284,"TargetStructureID":5503,"Label":"5284-5503 via Gap Junction from 60783 -> 52801","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60783,"TargetID":52801,"Directional":false}]},{"ID":2166,"SourceStructureID":5284,"TargetStructureID":5562,"Label":"5284-5562 via Touch from 77601 -> 77600","Type":"Touch","Directional":false,"Links":[{"SourceID":77601,"TargetID":77600,"Directional":false}]},{"ID":2167,"SourceStructureID":6050,"TargetStructureID":5284,"Label":"6050-5284 via Adherens from 127079 -> 127080","Type":"Adherens","Directional":false,"Links":[{"SourceID":127079,"TargetID":127080,"Directional":false}]},{"ID":2168,"SourceStructureID":6050,"TargetStructureID":5284,"Label":"6050-5284 via Gap Junction from 57065 -> 60795, 92876 -> 98221, 92879 -> 92878, 92888 -> 57071, 113221 -> 113220","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57065,"TargetID":60795,"Directional":false},{"SourceID":92876,"TargetID":98221,"Directional":false},{"SourceID":92879,"TargetID":92878,"Directional":false},{"SourceID":92888,"TargetID":57071,"Directional":false},{"SourceID":113221,"TargetID":113220,"Directional":false}]},{"ID":2169,"SourceStructureID":5284,"TargetStructureID":8720,"Label":"5284-8720 via Unknown from 127824 -> 127825","Type":"Unknown","Directional":false,"Links":[{"SourceID":127824,"TargetID":127825,"Directional":false}]},{"ID":2170,"SourceStructureID":12897,"TargetStructureID":5284,"Label":"12897-5284 via Gap Junction from 12905 -> 112902, 24615 -> 112812","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12905,"TargetID":112902,"Directional":false},{"SourceID":24615,"TargetID":112812,"Directional":false}]},{"ID":2171,"SourceStructureID":15796,"TargetStructureID":5284,"Label":"15796-5284 via Unknown from 124727 -> 113052","Type":"Unknown","Directional":false,"Links":[{"SourceID":124727,"TargetID":113052,"Directional":false}]},{"ID":2172,"SourceStructureID":16026,"TargetStructureID":5284,"Label":"16026-5284 via Adherens from 133823 -> 133822","Type":"Adherens","Directional":false,"Links":[{"SourceID":133823,"TargetID":133822,"Directional":false}]},{"ID":2173,"SourceStructureID":16026,"TargetStructureID":5284,"Label":"16026-5284 via Gap Junction from 113384 -> 113383","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113384,"TargetID":113383,"Directional":false}]},{"ID":2174,"SourceStructureID":5284,"TargetStructureID":16073,"Label":"5284-16073 via Unknown from 113076 -> 113075","Type":"Unknown","Directional":false,"Links":[{"SourceID":113076,"TargetID":113075,"Directional":false}]},{"ID":2175,"SourceStructureID":5284,"TargetStructureID":20136,"Label":"5284-20136 via Gap Junction from 127751 -> 127752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":127751,"TargetID":127752,"Directional":false}]},{"ID":2176,"SourceStructureID":38379,"TargetStructureID":5284,"Label":"38379-5284 via Adherens from 127790 -> 127789","Type":"Adherens","Directional":false,"Links":[{"SourceID":127790,"TargetID":127789,"Directional":false}]},{"ID":2177,"SourceStructureID":5284,"TargetStructureID":38379,"Label":"5284-38379 via Unknown from 124737 -> 124738","Type":"Unknown","Directional":false,"Links":[{"SourceID":124737,"TargetID":124738,"Directional":false}]},{"ID":2178,"SourceStructureID":53218,"TargetStructureID":5284,"Label":"53218-5284 via Unknown from 113084 -> 113083","Type":"Unknown","Directional":false,"Links":[{"SourceID":113084,"TargetID":113083,"Directional":false}]},{"ID":2179,"SourceStructureID":5284,"TargetStructureID":54074,"Label":"5284-54074 via Adherens from 113426 -> 113427","Type":"Adherens","Directional":false,"Links":[{"SourceID":113426,"TargetID":113427,"Directional":false}]},{"ID":2180,"SourceStructureID":54252,"TargetStructureID":5284,"Label":"54252-5284 via Unknown from 113535 -> 113534","Type":"Unknown","Directional":false,"Links":[{"SourceID":113535,"TargetID":113534,"Directional":false}]},{"ID":2181,"SourceStructureID":5284,"TargetStructureID":60843,"Label":"5284-60843 via Unknown from 113212 -> 113211","Type":"Unknown","Directional":false,"Links":[{"SourceID":113212,"TargetID":113211,"Directional":false}]},{"ID":2182,"SourceStructureID":5284,"TargetStructureID":67818,"Label":"5284-67818 via Gap Junction from 127730 -> 127731","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":127730,"TargetID":127731,"Directional":false}]},{"ID":2183,"SourceStructureID":68093,"TargetStructureID":5284,"Label":"68093-5284 via Unknown from 124609 -> 124608","Type":"Unknown","Directional":false,"Links":[{"SourceID":124609,"TargetID":124608,"Directional":false}]},{"ID":2184,"SourceStructureID":68135,"TargetStructureID":5284,"Label":"68135-5284 via Adherens from 113589 -> 113588","Type":"Adherens","Directional":false,"Links":[{"SourceID":113589,"TargetID":113588,"Directional":false}]},{"ID":2185,"SourceStructureID":5284,"TargetStructureID":68135,"Label":"5284-68135 via Gap Junction from 113587 -> 113586","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113587,"TargetID":113586,"Directional":false}]},{"ID":2186,"SourceStructureID":5284,"TargetStructureID":68198,"Label":"5284-68198 via Adherens from 68201 -> 68200","Type":"Adherens","Directional":false,"Links":[{"SourceID":68201,"TargetID":68200,"Directional":false}]},{"ID":2187,"SourceStructureID":70379,"TargetStructureID":5284,"Label":"70379-5284 via Adherens from 113397 -> 113396, 127684 -> 127685","Type":"Adherens","Directional":false,"Links":[{"SourceID":113397,"TargetID":113396,"Directional":false},{"SourceID":127684,"TargetID":127685,"Directional":false}]},{"ID":2188,"SourceStructureID":5284,"TargetStructureID":77603,"Label":"5284-77603 via Adherens from 64649 -> 113111","Type":"Adherens","Directional":false,"Links":[{"SourceID":64649,"TargetID":113111,"Directional":false}]},{"ID":2189,"SourceStructureID":5284,"TargetStructureID":85311,"Label":"5284-85311 via Unknown from 113200 -> 113202","Type":"Unknown","Directional":false,"Links":[{"SourceID":113200,"TargetID":113202,"Directional":false}]},{"ID":2190,"SourceStructureID":5284,"TargetStructureID":92092,"Label":"5284-92092 via Adherens from 113064 -> 113065, 127861 -> 127862","Type":"Adherens","Directional":false,"Links":[{"SourceID":113064,"TargetID":113065,"Directional":false},{"SourceID":127861,"TargetID":127862,"Directional":false}]},{"ID":2191,"SourceStructureID":5284,"TargetStructureID":92092,"Label":"5284-92092 via Unknown from 112802 -> 112804, 113062 -> 113061, 113316 -> 113315","Type":"Unknown","Directional":false,"Links":[{"SourceID":112802,"TargetID":112804,"Directional":false},{"SourceID":113062,"TargetID":113061,"Directional":false},{"SourceID":113316,"TargetID":113315,"Directional":false}]},{"ID":2192,"SourceStructureID":92872,"TargetStructureID":5284,"Label":"92872-5284 via Unknown from 92873 -> 98179, 127700 -> 98185","Type":"Unknown","Directional":false,"Links":[{"SourceID":92873,"TargetID":98179,"Directional":false},{"SourceID":127700,"TargetID":98185,"Directional":false}]},{"ID":2193,"SourceStructureID":113086,"TargetStructureID":5284,"Label":"113086-5284 via Adherens from 113117 -> 64609","Type":"Adherens","Directional":false,"Links":[{"SourceID":113117,"TargetID":64609,"Directional":false}]},{"ID":2194,"SourceStructureID":5284,"TargetStructureID":113086,"Label":"5284-113086 via Unknown from 127894 -> 127893","Type":"Unknown","Directional":false,"Links":[{"SourceID":127894,"TargetID":127893,"Directional":false}]},{"ID":2195,"SourceStructureID":5284,"TargetStructureID":113332,"Label":"5284-113332 via Adherens from 113327 -> 113334","Type":"Adherens","Directional":false,"Links":[{"SourceID":113327,"TargetID":113334,"Directional":false}]},{"ID":2196,"SourceStructureID":113541,"TargetStructureID":5284,"Label":"113541-5284 via Adherens from 127690 -> 127689","Type":"Adherens","Directional":false,"Links":[{"SourceID":127690,"TargetID":127689,"Directional":false}]},{"ID":2197,"SourceStructureID":5284,"TargetStructureID":113541,"Label":"5284-113541 via Gap Junction from 56720 -> 113542","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56720,"TargetID":113542,"Directional":false}]},{"ID":2198,"SourceStructureID":113547,"TargetStructureID":5284,"Label":"113547-5284 via Gap Junction from 113553 -> 113552","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113553,"TargetID":113552,"Directional":false}]},{"ID":2199,"SourceStructureID":117803,"TargetStructureID":5284,"Label":"117803-5284 via Unknown from 124757 -> 113643, 124758 -> 113641","Type":"Unknown","Directional":false,"Links":[{"SourceID":124757,"TargetID":113643,"Directional":false},{"SourceID":124758,"TargetID":113641,"Directional":false}]},{"ID":2200,"SourceStructureID":5284,"TargetStructureID":117892,"Label":"5284-117892 via Unknown from 113081 -> 130260","Type":"Unknown","Directional":false,"Links":[{"SourceID":113081,"TargetID":130260,"Directional":false}]},{"ID":2201,"SourceStructureID":121006,"TargetStructureID":5284,"Label":"121006-5284 via Unknown from 124751 -> 113392","Type":"Unknown","Directional":false,"Links":[{"SourceID":124751,"TargetID":113392,"Directional":false}]},{"ID":2202,"SourceStructureID":5284,"TargetStructureID":121044,"Label":"5284-121044 via Adherens from 124615 -> 124616, 124618 -> 98177","Type":"Adherens","Directional":false,"Links":[{"SourceID":124615,"TargetID":124616,"Directional":false},{"SourceID":124618,"TargetID":98177,"Directional":false}]},{"ID":2203,"SourceStructureID":134553,"TargetStructureID":5284,"Label":"134553-5284 via Unknown from 147972 -> 147973","Type":"Unknown","Directional":false,"Links":[{"SourceID":147972,"TargetID":147973,"Directional":false}]},{"ID":2204,"SourceStructureID":136736,"TargetStructureID":5284,"Label":"136736-5284 via Unknown from 136737 -> 112555","Type":"Unknown","Directional":false,"Links":[{"SourceID":136737,"TargetID":112555,"Directional":false}]},{"ID":2205,"SourceStructureID":5292,"TargetStructureID":5292,"Label":"5292-5292 via Adherens from 49793 -> 49792, 92062 -> 92063","Type":"Adherens","Directional":false,"Links":[{"SourceID":49793,"TargetID":49792,"Directional":false},{"SourceID":92062,"TargetID":92063,"Directional":false}]},{"ID":2206,"SourceStructureID":5292,"TargetStructureID":5292,"Label":"5292-5292 via Gap Junction from 51544 -> 51545, 92359 -> 92360","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51544,"TargetID":51545,"Directional":false},{"SourceID":92359,"TargetID":92360,"Directional":false}]},{"ID":2207,"SourceStructureID":5297,"TargetStructureID":5292,"Label":"5297-5292 via Gap Junction from 56838 -> 56837, 68598 -> 68597, 121089 -> 121090, 121093 -> 121094, 133983 -> 133982","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56838,"TargetID":56837,"Directional":false},{"SourceID":68598,"TargetID":68597,"Directional":false},{"SourceID":121089,"TargetID":121090,"Directional":false},{"SourceID":121093,"TargetID":121094,"Directional":false},{"SourceID":133983,"TargetID":133982,"Directional":false}]},{"ID":2208,"SourceStructureID":5485,"TargetStructureID":5292,"Label":"5485-5292 via Unknown from 91850 -> 91849","Type":"Unknown","Directional":false,"Links":[{"SourceID":91850,"TargetID":91849,"Directional":false}]},{"ID":2209,"SourceStructureID":5292,"TargetStructureID":5650,"Label":"5292-5650 via Adherens from 91905 -> 91904, 103884 -> 103883, 135612 -> 135611, 135615 -> 135614, 135616 -> 135617, 135618 -> 135619, 135762 -> 135761","Type":"Adherens","Directional":false,"Links":[{"SourceID":91905,"TargetID":91904,"Directional":false},{"SourceID":103884,"TargetID":103883,"Directional":false},{"SourceID":135612,"TargetID":135611,"Directional":false},{"SourceID":135615,"TargetID":135614,"Directional":false},{"SourceID":135616,"TargetID":135617,"Directional":false},{"SourceID":135618,"TargetID":135619,"Directional":false},{"SourceID":135762,"TargetID":135761,"Directional":false}]},{"ID":2210,"SourceStructureID":5650,"TargetStructureID":5292,"Label":"5650-5292 via Gap Junction from 29919 -> 29918, 49830 -> 49831, 49868 -> 49867, 54334 -> 54335, 56724 -> 56723, 56836 -> 91939, 133969 -> 133968, 133970 -> 133971, 133973 -> 133974, 135759 -> 135760","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29919,"TargetID":29918,"Directional":false},{"SourceID":49830,"TargetID":49831,"Directional":false},{"SourceID":49868,"TargetID":49867,"Directional":false},{"SourceID":54334,"TargetID":54335,"Directional":false},{"SourceID":56724,"TargetID":56723,"Directional":false},{"SourceID":56836,"TargetID":91939,"Directional":false},{"SourceID":133969,"TargetID":133968,"Directional":false},{"SourceID":133970,"TargetID":133971,"Directional":false},{"SourceID":133973,"TargetID":133974,"Directional":false},{"SourceID":135759,"TargetID":135760,"Directional":false}]},{"ID":2211,"SourceStructureID":6050,"TargetStructureID":5292,"Label":"6050-5292 via Adherens from 70298 -> 15322, 127077 -> 127078, 127081 -> 127082, 127542 -> 127541, 127624 -> 127625, 135770 -> 135769, 135772 -> 135771","Type":"Adherens","Directional":false,"Links":[{"SourceID":70298,"TargetID":15322,"Directional":false},{"SourceID":127077,"TargetID":127078,"Directional":false},{"SourceID":127081,"TargetID":127082,"Directional":false},{"SourceID":127542,"TargetID":127541,"Directional":false},{"SourceID":127624,"TargetID":127625,"Directional":false},{"SourceID":135770,"TargetID":135769,"Directional":false},{"SourceID":135772,"TargetID":135771,"Directional":false}]},{"ID":2212,"SourceStructureID":5292,"TargetStructureID":6050,"Label":"5292-6050 via Gap Junction from 45545 -> 45544, 51896 -> 51897, 54393 -> 91940, 66163 -> 66161, 66361 -> 66360, 91962 -> 91963, 92029 -> 92030, 92043 -> 92044, 92057 -> 92056, 92367 -> 92368, 114278 -> 114279, 133986 -> 133987","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45545,"TargetID":45544,"Directional":false},{"SourceID":51896,"TargetID":51897,"Directional":false},{"SourceID":54393,"TargetID":91940,"Directional":false},{"SourceID":66163,"TargetID":66161,"Directional":false},{"SourceID":66361,"TargetID":66360,"Directional":false},{"SourceID":91962,"TargetID":91963,"Directional":false},{"SourceID":92029,"TargetID":92030,"Directional":false},{"SourceID":92043,"TargetID":92044,"Directional":false},{"SourceID":92057,"TargetID":92056,"Directional":false},{"SourceID":92367,"TargetID":92368,"Directional":false},{"SourceID":114278,"TargetID":114279,"Directional":false},{"SourceID":133986,"TargetID":133987,"Directional":false}]},{"ID":2213,"SourceStructureID":5292,"TargetStructureID":6117,"Label":"5292-6117 via Adherens from 84387 -> 84388, 135493 -> 135492","Type":"Adherens","Directional":false,"Links":[{"SourceID":84387,"TargetID":84388,"Directional":false},{"SourceID":135493,"TargetID":135492,"Directional":false}]},{"ID":2214,"SourceStructureID":5292,"TargetStructureID":6117,"Label":"5292-6117 via Gap Junction from 49884 -> 47287, 51345 -> 51346, 51361 -> 51531, 91857 -> 85420, 133976 -> 133977, 133979 -> 133978, 133980 -> 133981, 133985 -> 133984, 147852 -> 147851","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49884,"TargetID":47287,"Directional":false},{"SourceID":51345,"TargetID":51346,"Directional":false},{"SourceID":51361,"TargetID":51531,"Directional":false},{"SourceID":91857,"TargetID":85420,"Directional":false},{"SourceID":133976,"TargetID":133977,"Directional":false},{"SourceID":133979,"TargetID":133978,"Directional":false},{"SourceID":133980,"TargetID":133981,"Directional":false},{"SourceID":133985,"TargetID":133984,"Directional":false},{"SourceID":147852,"TargetID":147851,"Directional":false}]},{"ID":2215,"SourceStructureID":5292,"TargetStructureID":6117,"Label":"5292-6117 via Touch from 92409 -> 92410","Type":"Touch","Directional":false,"Links":[{"SourceID":92409,"TargetID":92410,"Directional":false}]},{"ID":2216,"SourceStructureID":5292,"TargetStructureID":7073,"Label":"5292-7073 via Unknown from 91590 -> 113182","Type":"Unknown","Directional":false,"Links":[{"SourceID":91590,"TargetID":113182,"Directional":false}]},{"ID":2217,"SourceStructureID":30130,"TargetStructureID":5292,"Label":"30130-5292 via Unknown from 91591 -> 91592","Type":"Unknown","Directional":false,"Links":[{"SourceID":91591,"TargetID":91592,"Directional":false}]},{"ID":2218,"SourceStructureID":5292,"TargetStructureID":55132,"Label":"5292-55132 via Adherens from 91899 -> 91897","Type":"Adherens","Directional":false,"Links":[{"SourceID":91899,"TargetID":91897,"Directional":false}]},{"ID":2219,"SourceStructureID":55132,"TargetStructureID":5292,"Label":"55132-5292 via Gap Junction from 55141 -> 49864","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55141,"TargetID":49864,"Directional":false}]},{"ID":2220,"SourceStructureID":5292,"TargetStructureID":59482,"Label":"5292-59482 via Adherens from 89118 -> 59493","Type":"Adherens","Directional":false,"Links":[{"SourceID":89118,"TargetID":59493,"Directional":false}]},{"ID":2221,"SourceStructureID":67818,"TargetStructureID":5292,"Label":"67818-5292 via Unknown from 91608 -> 91607","Type":"Unknown","Directional":false,"Links":[{"SourceID":91608,"TargetID":91607,"Directional":false}]},{"ID":2222,"SourceStructureID":5292,"TargetStructureID":68531,"Label":"5292-68531 via Unknown from 68535 -> 68534","Type":"Unknown","Directional":false,"Links":[{"SourceID":68535,"TargetID":68534,"Directional":false}]},{"ID":2223,"SourceStructureID":76811,"TargetStructureID":5292,"Label":"76811-5292 via Unknown from 133972 -> 124687","Type":"Unknown","Directional":false,"Links":[{"SourceID":133972,"TargetID":124687,"Directional":false}]},{"ID":2224,"SourceStructureID":91805,"TargetStructureID":5292,"Label":"91805-5292 via Unknown from 91807 -> 91806","Type":"Unknown","Directional":false,"Links":[{"SourceID":91807,"TargetID":91806,"Directional":false}]},{"ID":2225,"SourceStructureID":91812,"TargetStructureID":5292,"Label":"91812-5292 via Unknown from 91816 -> 91815","Type":"Unknown","Directional":false,"Links":[{"SourceID":91816,"TargetID":91815,"Directional":false}]},{"ID":2226,"SourceStructureID":91817,"TargetStructureID":5292,"Label":"91817-5292 via Unknown from 91819 -> 91818","Type":"Unknown","Directional":false,"Links":[{"SourceID":91819,"TargetID":91818,"Directional":false}]},{"ID":2227,"SourceStructureID":5292,"TargetStructureID":91823,"Label":"5292-91823 via Unknown from 91824 -> 91825","Type":"Unknown","Directional":false,"Links":[{"SourceID":91824,"TargetID":91825,"Directional":false}]},{"ID":2228,"SourceStructureID":5292,"TargetStructureID":91870,"Label":"5292-91870 via Gap Junction from 91873 -> 91872","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91873,"TargetID":91872,"Directional":false}]},{"ID":2229,"SourceStructureID":91890,"TargetStructureID":5292,"Label":"91890-5292 via Unknown from 91894 -> 91895","Type":"Unknown","Directional":false,"Links":[{"SourceID":91894,"TargetID":91895,"Directional":false}]},{"ID":2230,"SourceStructureID":91891,"TargetStructureID":5292,"Label":"91891-5292 via Unknown from 91893 -> 91896","Type":"Unknown","Directional":false,"Links":[{"SourceID":91893,"TargetID":91896,"Directional":false}]},{"ID":2231,"SourceStructureID":91933,"TargetStructureID":5292,"Label":"91933-5292 via Unknown from 91937 -> 91936","Type":"Unknown","Directional":false,"Links":[{"SourceID":91937,"TargetID":91936,"Directional":false}]},{"ID":2232,"SourceStructureID":91964,"TargetStructureID":5292,"Label":"91964-5292 via Unknown from 91965 -> 91966","Type":"Unknown","Directional":false,"Links":[{"SourceID":91965,"TargetID":91966,"Directional":false}]},{"ID":2233,"SourceStructureID":5292,"TargetStructureID":91967,"Label":"5292-91967 via Adherens from 91971 -> 91970","Type":"Adherens","Directional":false,"Links":[{"SourceID":91971,"TargetID":91970,"Directional":false}]},{"ID":2234,"SourceStructureID":5292,"TargetStructureID":91967,"Label":"5292-91967 via Gap Junction from 91969 -> 91968","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91969,"TargetID":91968,"Directional":false}]},{"ID":2235,"SourceStructureID":5292,"TargetStructureID":92031,"Label":"5292-92031 via Adherens from 92033 -> 92032","Type":"Adherens","Directional":false,"Links":[{"SourceID":92033,"TargetID":92032,"Directional":false}]},{"ID":2236,"SourceStructureID":92058,"TargetStructureID":5292,"Label":"92058-5292 via Unknown from 92060 -> 92059","Type":"Unknown","Directional":false,"Links":[{"SourceID":92060,"TargetID":92059,"Directional":false}]},{"ID":2237,"SourceStructureID":5292,"TargetStructureID":92064,"Label":"5292-92064 via Unknown from 92065 -> 92066","Type":"Unknown","Directional":false,"Links":[{"SourceID":92065,"TargetID":92066,"Directional":false}]},{"ID":2238,"SourceStructureID":92073,"TargetStructureID":5292,"Label":"92073-5292 via Adherens from 127662 -> 127661","Type":"Adherens","Directional":false,"Links":[{"SourceID":127662,"TargetID":127661,"Directional":false}]},{"ID":2239,"SourceStructureID":92073,"TargetStructureID":5292,"Label":"92073-5292 via Unknown from 127659 -> 127660","Type":"Unknown","Directional":false,"Links":[{"SourceID":127659,"TargetID":127660,"Directional":false}]},{"ID":2240,"SourceStructureID":97358,"TargetStructureID":5292,"Label":"97358-5292 via Adherens from 131187 -> 131188","Type":"Adherens","Directional":false,"Links":[{"SourceID":131187,"TargetID":131188,"Directional":false}]},{"ID":2241,"SourceStructureID":97358,"TargetStructureID":5292,"Label":"97358-5292 via Gap Junction from 131183 -> 131182","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131183,"TargetID":131182,"Directional":false}]},{"ID":2242,"SourceStructureID":113541,"TargetStructureID":5292,"Label":"113541-5292 via Gap Junction from 113544 -> 60809","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113544,"TargetID":60809,"Directional":false}]},{"ID":2243,"SourceStructureID":5295,"TargetStructureID":5519,"Label":"5295-5519 via Gap Junction from 59182 -> 59157","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59182,"TargetID":59157,"Directional":false}]},{"ID":2244,"SourceStructureID":59145,"TargetStructureID":5295,"Label":"59145-5295 via Touch from 59178 -> 59177","Type":"Touch","Directional":false,"Links":[{"SourceID":59178,"TargetID":59177,"Directional":false}]},{"ID":2245,"SourceStructureID":59163,"TargetStructureID":5295,"Label":"59163-5295 via Gap Junction from 59165 -> 59181","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59165,"TargetID":59181,"Directional":false}]},{"ID":2246,"SourceStructureID":59793,"TargetStructureID":5295,"Label":"59793-5295 via Gap Junction from 59794 -> 59792","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59794,"TargetID":59792,"Directional":false}]},{"ID":2247,"SourceStructureID":5297,"TargetStructureID":5297,"Label":"5297-5297 via Adherens from 98136 -> 98137","Type":"Adherens","Directional":false,"Links":[{"SourceID":98136,"TargetID":98137,"Directional":false}]},{"ID":2248,"SourceStructureID":5297,"TargetStructureID":5297,"Label":"5297-5297 via Gap Junction from 116424 -> 116423, 147335 -> 147334","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116424,"TargetID":116423,"Directional":false},{"SourceID":147335,"TargetID":147334,"Directional":false}]},{"ID":2249,"SourceStructureID":5297,"TargetStructureID":5297,"Label":"5297-5297 via Touch from 147351 -> 147352","Type":"Touch","Directional":false,"Links":[{"SourceID":147351,"TargetID":147352,"Directional":false}]},{"ID":2250,"SourceStructureID":5618,"TargetStructureID":5297,"Label":"5618-5297 via Unknown from 147356 -> 147355","Type":"Unknown","Directional":false,"Links":[{"SourceID":147356,"TargetID":147355,"Directional":false}]},{"ID":2251,"SourceStructureID":5297,"TargetStructureID":6050,"Label":"5297-6050 via Gap Junction from 98392 -> 98389, 121109 -> 121110","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98392,"TargetID":98389,"Directional":false},{"SourceID":121109,"TargetID":121110,"Directional":false}]},{"ID":2252,"SourceStructureID":5297,"TargetStructureID":6117,"Label":"5297-6117 via Gap Junction from 121056 -> 121055","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121056,"TargetID":121055,"Directional":false}]},{"ID":2253,"SourceStructureID":5297,"TargetStructureID":9347,"Label":"5297-9347 via Gap Junction from 116499 -> 120996","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116499,"TargetID":120996,"Directional":false}]},{"ID":2254,"SourceStructureID":16026,"TargetStructureID":5297,"Label":"16026-5297 via Touch from 134515 -> 134516, 134523 -> 134524","Type":"Touch","Directional":false,"Links":[{"SourceID":134515,"TargetID":134516,"Directional":false},{"SourceID":134523,"TargetID":134524,"Directional":false}]},{"ID":2255,"SourceStructureID":5297,"TargetStructureID":61450,"Label":"5297-61450 via Unknown from 134290 -> 134289","Type":"Unknown","Directional":false,"Links":[{"SourceID":134290,"TargetID":134289,"Directional":false}]},{"ID":2256,"SourceStructureID":66111,"TargetStructureID":5297,"Label":"66111-5297 via Unknown from 116494 -> 116493","Type":"Unknown","Directional":false,"Links":[{"SourceID":116494,"TargetID":116493,"Directional":false}]},{"ID":2257,"SourceStructureID":67818,"TargetStructureID":5297,"Label":"67818-5297 via Unknown from 147358 -> 147357","Type":"Unknown","Directional":false,"Links":[{"SourceID":147358,"TargetID":147357,"Directional":false}]},{"ID":2258,"SourceStructureID":92193,"TargetStructureID":5297,"Label":"92193-5297 via Adherens from 147377 -> 147376","Type":"Adherens","Directional":false,"Links":[{"SourceID":147377,"TargetID":147376,"Directional":false}]},{"ID":2259,"SourceStructureID":92935,"TargetStructureID":5297,"Label":"92935-5297 via Unknown from 147373 -> 147372","Type":"Unknown","Directional":false,"Links":[{"SourceID":147373,"TargetID":147372,"Directional":false}]},{"ID":2260,"SourceStructureID":93248,"TargetStructureID":5297,"Label":"93248-5297 via Unknown from 147359 -> 147360, 147381 -> 147380","Type":"Unknown","Directional":false,"Links":[{"SourceID":147359,"TargetID":147360,"Directional":false},{"SourceID":147381,"TargetID":147380,"Directional":false}]},{"ID":2261,"SourceStructureID":93301,"TargetStructureID":5297,"Label":"93301-5297 via Unknown from 93304 -> 93300, 147382 -> 147383","Type":"Unknown","Directional":false,"Links":[{"SourceID":93304,"TargetID":93300,"Directional":false},{"SourceID":147382,"TargetID":147383,"Directional":false}]},{"ID":2262,"SourceStructureID":93312,"TargetStructureID":5297,"Label":"93312-5297 via Unknown from 93314 -> 93310","Type":"Unknown","Directional":false,"Links":[{"SourceID":93314,"TargetID":93310,"Directional":false}]},{"ID":2263,"SourceStructureID":93321,"TargetStructureID":5297,"Label":"93321-5297 via Unknown from 93322 -> 93320","Type":"Unknown","Directional":false,"Links":[{"SourceID":93322,"TargetID":93320,"Directional":false}]},{"ID":2264,"SourceStructureID":93329,"TargetStructureID":5297,"Label":"93329-5297 via Adherens from 147374 -> 147375","Type":"Adherens","Directional":false,"Links":[{"SourceID":147374,"TargetID":147375,"Directional":false}]},{"ID":2265,"SourceStructureID":5297,"TargetStructureID":93329,"Label":"5297-93329 via Gap Junction from 53663 -> 93332","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53663,"TargetID":93332,"Directional":false}]},{"ID":2266,"SourceStructureID":5297,"TargetStructureID":93333,"Label":"5297-93333 via Unknown from 134292 -> 134291","Type":"Unknown","Directional":false,"Links":[{"SourceID":134292,"TargetID":134291,"Directional":false}]},{"ID":2267,"SourceStructureID":5297,"TargetStructureID":93355,"Label":"5297-93355 via Unknown from 134298 -> 134299","Type":"Unknown","Directional":false,"Links":[{"SourceID":134298,"TargetID":134299,"Directional":false}]},{"ID":2268,"SourceStructureID":5297,"TargetStructureID":97358,"Label":"5297-97358 via Unknown from 134275 -> 134276","Type":"Unknown","Directional":false,"Links":[{"SourceID":134275,"TargetID":134276,"Directional":false}]},{"ID":2269,"SourceStructureID":5297,"TargetStructureID":116504,"Label":"5297-116504 via Unknown from 120275 -> 120276","Type":"Unknown","Directional":false,"Links":[{"SourceID":120275,"TargetID":120276,"Directional":false}]},{"ID":2270,"SourceStructureID":120987,"TargetStructureID":5297,"Label":"120987-5297 via Unknown from 134301 -> 134300","Type":"Unknown","Directional":false,"Links":[{"SourceID":134301,"TargetID":134300,"Directional":false}]},{"ID":2271,"SourceStructureID":120992,"TargetStructureID":5297,"Label":"120992-5297 via Unknown from 147338 -> 147339","Type":"Unknown","Directional":false,"Links":[{"SourceID":147338,"TargetID":147339,"Directional":false}]},{"ID":2272,"SourceStructureID":5297,"TargetStructureID":120997,"Label":"5297-120997 via Adherens from 147341 -> 147342","Type":"Adherens","Directional":false,"Links":[{"SourceID":147341,"TargetID":147342,"Directional":false}]},{"ID":2273,"SourceStructureID":120997,"TargetStructureID":5297,"Label":"120997-5297 via Gap Junction from 120998 -> 116515","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120998,"TargetID":116515,"Directional":false}]},{"ID":2274,"SourceStructureID":120999,"TargetStructureID":5297,"Label":"120999-5297 via Unknown from 147346 -> 147345","Type":"Unknown","Directional":false,"Links":[{"SourceID":147346,"TargetID":147345,"Directional":false}]},{"ID":2275,"SourceStructureID":5297,"TargetStructureID":121001,"Label":"5297-121001 via Unknown from 121002 -> 121003","Type":"Unknown","Directional":false,"Links":[{"SourceID":121002,"TargetID":121003,"Directional":false}]},{"ID":2276,"SourceStructureID":5297,"TargetStructureID":121006,"Label":"5297-121006 via Adherens from 127725 -> 127724, 147366 -> 147365","Type":"Adherens","Directional":false,"Links":[{"SourceID":127725,"TargetID":127724,"Directional":false},{"SourceID":147366,"TargetID":147365,"Directional":false}]},{"ID":2277,"SourceStructureID":121006,"TargetStructureID":5297,"Label":"121006-5297 via Unknown from 127722 -> 127723","Type":"Unknown","Directional":false,"Links":[{"SourceID":127722,"TargetID":127723,"Directional":false}]},{"ID":2278,"SourceStructureID":121044,"TargetStructureID":5297,"Label":"121044-5297 via Unknown from 147368 -> 147367","Type":"Unknown","Directional":false,"Links":[{"SourceID":147368,"TargetID":147367,"Directional":false}]},{"ID":2279,"SourceStructureID":5297,"TargetStructureID":121046,"Label":"5297-121046 via Unknown from 147370 -> 147371","Type":"Unknown","Directional":false,"Links":[{"SourceID":147370,"TargetID":147371,"Directional":false}]},{"ID":2280,"SourceStructureID":121048,"TargetStructureID":5297,"Label":"121048-5297 via Adherens from 147379 -> 147378","Type":"Adherens","Directional":false,"Links":[{"SourceID":147379,"TargetID":147378,"Directional":false}]},{"ID":2281,"SourceStructureID":5297,"TargetStructureID":121048,"Label":"5297-121048 via Gap Junction from 92307 -> 121049","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92307,"TargetID":121049,"Directional":false}]},{"ID":2282,"SourceStructureID":5297,"TargetStructureID":121051,"Label":"5297-121051 via Adherens from 147384 -> 147385","Type":"Adherens","Directional":false,"Links":[{"SourceID":147384,"TargetID":147385,"Directional":false}]},{"ID":2283,"SourceStructureID":5297,"TargetStructureID":121051,"Label":"5297-121051 via Gap Junction from 98141 -> 121052","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98141,"TargetID":121052,"Directional":false}]},{"ID":2284,"SourceStructureID":5297,"TargetStructureID":121064,"Label":"5297-121064 via Unknown from 116497 -> 121065","Type":"Unknown","Directional":false,"Links":[{"SourceID":116497,"TargetID":121065,"Directional":false}]},{"ID":2285,"SourceStructureID":5297,"TargetStructureID":121066,"Label":"5297-121066 via Unknown from 116501 -> 121067","Type":"Unknown","Directional":false,"Links":[{"SourceID":116501,"TargetID":121067,"Directional":false}]},{"ID":2286,"SourceStructureID":5297,"TargetStructureID":121070,"Label":"5297-121070 via Adherens from 121071 -> 121072","Type":"Adherens","Directional":false,"Links":[{"SourceID":121071,"TargetID":121072,"Directional":false}]},{"ID":2287,"SourceStructureID":121073,"TargetStructureID":5297,"Label":"121073-5297 via Unknown from 121108 -> 98305","Type":"Unknown","Directional":false,"Links":[{"SourceID":121108,"TargetID":98305,"Directional":false}]},{"ID":2288,"SourceStructureID":121075,"TargetStructureID":5297,"Label":"121075-5297 via Touch from 147354 -> 147353","Type":"Touch","Directional":false,"Links":[{"SourceID":147354,"TargetID":147353,"Directional":false}]},{"ID":2289,"SourceStructureID":5297,"TargetStructureID":121082,"Label":"5297-121082 via Unknown from 116520 -> 121083","Type":"Unknown","Directional":false,"Links":[{"SourceID":116520,"TargetID":121083,"Directional":false}]},{"ID":2290,"SourceStructureID":5297,"TargetStructureID":121097,"Label":"5297-121097 via Unknown from 147363 -> 147364","Type":"Unknown","Directional":false,"Links":[{"SourceID":147363,"TargetID":147364,"Directional":false}]},{"ID":2291,"SourceStructureID":5297,"TargetStructureID":121101,"Label":"5297-121101 via Unknown from 98261 -> 121102","Type":"Unknown","Directional":false,"Links":[{"SourceID":98261,"TargetID":121102,"Directional":false}]},{"ID":2292,"SourceStructureID":121103,"TargetStructureID":5297,"Label":"121103-5297 via Unknown from 121105 -> 98277","Type":"Unknown","Directional":false,"Links":[{"SourceID":121105,"TargetID":98277,"Directional":false}]},{"ID":2293,"SourceStructureID":121106,"TargetStructureID":5297,"Label":"121106-5297 via Unknown from 121107 -> 98293","Type":"Unknown","Directional":false,"Links":[{"SourceID":121107,"TargetID":98293,"Directional":false}]},{"ID":2294,"SourceStructureID":5297,"TargetStructureID":121111,"Label":"5297-121111 via Unknown from 103215 -> 134302","Type":"Unknown","Directional":false,"Links":[{"SourceID":103215,"TargetID":134302,"Directional":false}]},{"ID":2295,"SourceStructureID":134553,"TargetStructureID":5297,"Label":"134553-5297 via Adherens from 116432 -> 116431","Type":"Adherens","Directional":false,"Links":[{"SourceID":116432,"TargetID":116431,"Directional":false}]},{"ID":2296,"SourceStructureID":5297,"TargetStructureID":136736,"Label":"5297-136736 via Unknown from 147336 -> 147337","Type":"Unknown","Directional":false,"Links":[{"SourceID":147336,"TargetID":147337,"Directional":false}]},{"ID":2297,"SourceStructureID":7147,"TargetStructureID":5303,"Label":"7147-5303 via Unknown from 100702 -> 100703","Type":"Unknown","Directional":false,"Links":[{"SourceID":100702,"TargetID":100703,"Directional":false}]},{"ID":2298,"SourceStructureID":5325,"TargetStructureID":68761,"Label":"5325-68761 via Gap Junction from 68765 -> 68764","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68765,"TargetID":68764,"Directional":false}]},{"ID":2299,"SourceStructureID":63020,"TargetStructureID":5338,"Label":"63020-5338 via Gap Junction from 63021 -> 63005","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63021,"TargetID":63005,"Directional":false}]},{"ID":2300,"SourceStructureID":5345,"TargetStructureID":5345,"Label":"5345-5345 via Gap Junction from 88854 -> 8484","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":88854,"TargetID":8484,"Directional":false}]},{"ID":2301,"SourceStructureID":5345,"TargetStructureID":5513,"Label":"5345-5513 via Gap Junction from 30674 -> 30673","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30674,"TargetID":30673,"Directional":false}]},{"ID":2302,"SourceStructureID":5514,"TargetStructureID":5345,"Label":"5514-5345 via Gap Junction from 38764 -> 14579, 94552 -> 38766, 94553 -> 94554, 120847 -> 120846, 121561 -> 33783, 121649 -> 14580","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38764,"TargetID":14579,"Directional":false},{"SourceID":94552,"TargetID":38766,"Directional":false},{"SourceID":94553,"TargetID":94554,"Directional":false},{"SourceID":120847,"TargetID":120846,"Directional":false},{"SourceID":121561,"TargetID":33783,"Directional":false},{"SourceID":121649,"TargetID":14580,"Directional":false}]},{"ID":2303,"SourceStructureID":5345,"TargetStructureID":5515,"Label":"5345-5515 via Gap Junction from 119166 -> 119165, 119183 -> 119182, 119221 -> 119219, 119348 -> 119347, 119351 -> 119350, 119434 -> 119433","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119166,"TargetID":119165,"Directional":false},{"SourceID":119183,"TargetID":119182,"Directional":false},{"SourceID":119221,"TargetID":119219,"Directional":false},{"SourceID":119348,"TargetID":119347,"Directional":false},{"SourceID":119351,"TargetID":119350,"Directional":false},{"SourceID":119434,"TargetID":119433,"Directional":false}]},{"ID":2304,"SourceStructureID":5345,"TargetStructureID":5517,"Label":"5345-5517 via Gap Junction from 96100 -> 96099","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96100,"TargetID":96099,"Directional":false}]},{"ID":2305,"SourceStructureID":5623,"TargetStructureID":5345,"Label":"5623-5345 via Gap Junction from 32819 -> 8488, 88883 -> 40387, 94782 -> 123706, 123700 -> 123701","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32819,"TargetID":8488,"Directional":false},{"SourceID":88883,"TargetID":40387,"Directional":false},{"SourceID":94782,"TargetID":123706,"Directional":false},{"SourceID":123700,"TargetID":123701,"Directional":false}]},{"ID":2306,"SourceStructureID":6589,"TargetStructureID":5345,"Label":"6589-5345 via Gap Junction from 14574 -> 14591, 120044 -> 120043","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14574,"TargetID":14591,"Directional":false},{"SourceID":120044,"TargetID":120043,"Directional":false}]},{"ID":2307,"SourceStructureID":5345,"TargetStructureID":6997,"Label":"5345-6997 via Gap Junction from 22158 -> 22157, 57002 -> 57003","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":22158,"TargetID":22157,"Directional":false},{"SourceID":57002,"TargetID":57003,"Directional":false}]},{"ID":2308,"SourceStructureID":6997,"TargetStructureID":5345,"Label":"6997-5345 via Unknown from 83072 -> 79980","Type":"Unknown","Directional":false,"Links":[{"SourceID":83072,"TargetID":79980,"Directional":false}]},{"ID":2309,"SourceStructureID":8037,"TargetStructureID":5345,"Label":"8037-5345 via Adherens from 88898 -> 88892","Type":"Adherens","Directional":false,"Links":[{"SourceID":88898,"TargetID":88892,"Directional":false}]},{"ID":2310,"SourceStructureID":8037,"TargetStructureID":5345,"Label":"8037-5345 via Gap Junction from 15683 -> 15682, 19229 -> 7569, 88896 -> 88891, 130639 -> 130638","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15683,"TargetID":15682,"Directional":false},{"SourceID":19229,"TargetID":7569,"Directional":false},{"SourceID":88896,"TargetID":88891,"Directional":false},{"SourceID":130639,"TargetID":130638,"Directional":false}]},{"ID":2311,"SourceStructureID":9693,"TargetStructureID":5345,"Label":"9693-5345 via Gap Junction from 119785 -> 119786, 132765 -> 132764, 135000 -> 134999","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119785,"TargetID":119786,"Directional":false},{"SourceID":132765,"TargetID":132764,"Directional":false},{"SourceID":135000,"TargetID":134999,"Directional":false}]},{"ID":2312,"SourceStructureID":28886,"TargetStructureID":5345,"Label":"28886-5345 via Gap Junction from 51299 -> 52347","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51299,"TargetID":52347,"Directional":false}]},{"ID":2313,"SourceStructureID":46801,"TargetStructureID":5345,"Label":"46801-5345 via Gap Junction from 118256 -> 118255","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118256,"TargetID":118255,"Directional":false}]},{"ID":2314,"SourceStructureID":88864,"TargetStructureID":5345,"Label":"88864-5345 via Adherens from 88867 -> 88862, 88868 -> 88863","Type":"Adherens","Directional":false,"Links":[{"SourceID":88867,"TargetID":88862,"Directional":false},{"SourceID":88868,"TargetID":88863,"Directional":false}]},{"ID":2315,"SourceStructureID":5345,"TargetStructureID":132773,"Label":"5345-132773 via Gap Junction from 132783 -> 132782","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132783,"TargetID":132782,"Directional":false}]},{"ID":2316,"SourceStructureID":6117,"TargetStructureID":5377,"Label":"6117-5377 via Unknown from 134139 -> 83233","Type":"Unknown","Directional":false,"Links":[{"SourceID":134139,"TargetID":83233,"Directional":false}]},{"ID":2317,"SourceStructureID":83234,"TargetStructureID":5377,"Label":"83234-5377 via Unknown from 83235 -> 83233","Type":"Unknown","Directional":false,"Links":[{"SourceID":83235,"TargetID":83233,"Directional":false}]},{"ID":2318,"SourceStructureID":86997,"TargetStructureID":5377,"Label":"86997-5377 via Adherens from 86999 -> 87000","Type":"Adherens","Directional":false,"Links":[{"SourceID":86999,"TargetID":87000,"Directional":false}]},{"ID":2319,"SourceStructureID":87008,"TargetStructureID":5377,"Label":"87008-5377 via Adherens from 87009 -> 87007","Type":"Adherens","Directional":false,"Links":[{"SourceID":87009,"TargetID":87007,"Directional":false}]},{"ID":2320,"SourceStructureID":5377,"TargetStructureID":87020,"Label":"5377-87020 via Adherens from 87022 -> 87023","Type":"Adherens","Directional":false,"Links":[{"SourceID":87022,"TargetID":87023,"Directional":false}]},{"ID":2321,"SourceStructureID":5916,"TargetStructureID":5390,"Label":"5916-5390 via Adherens from 108762 -> 108763","Type":"Adherens","Directional":false,"Links":[{"SourceID":108762,"TargetID":108763,"Directional":false}]},{"ID":2322,"SourceStructureID":7951,"TargetStructureID":5394,"Label":"7951-5394 via Adherens from 77093 -> 77092, 77095 -> 77094","Type":"Adherens","Directional":false,"Links":[{"SourceID":77093,"TargetID":77092,"Directional":false},{"SourceID":77095,"TargetID":77094,"Directional":false}]},{"ID":2323,"SourceStructureID":7594,"TargetStructureID":5396,"Label":"7594-5396 via Adherens from 89453 -> 89452","Type":"Adherens","Directional":false,"Links":[{"SourceID":89453,"TargetID":89452,"Directional":false}]},{"ID":2324,"SourceStructureID":5396,"TargetStructureID":89433,"Label":"5396-89433 via Unknown from 89432 -> 89434","Type":"Unknown","Directional":false,"Links":[{"SourceID":89432,"TargetID":89434,"Directional":false}]},{"ID":2325,"SourceStructureID":5396,"TargetStructureID":89438,"Label":"5396-89438 via Adherens from 89437 -> 89439","Type":"Adherens","Directional":false,"Links":[{"SourceID":89437,"TargetID":89439,"Directional":false}]},{"ID":2326,"SourceStructureID":89443,"TargetStructureID":5396,"Label":"89443-5396 via Adherens from 89444 -> 89442","Type":"Adherens","Directional":false,"Links":[{"SourceID":89444,"TargetID":89442,"Directional":false}]},{"ID":2327,"SourceStructureID":89447,"TargetStructureID":5396,"Label":"89447-5396 via Adherens from 89448 -> 89445","Type":"Adherens","Directional":false,"Links":[{"SourceID":89448,"TargetID":89445,"Directional":false}]},{"ID":2328,"SourceStructureID":89449,"TargetStructureID":5396,"Label":"89449-5396 via Adherens from 89450 -> 89446","Type":"Adherens","Directional":false,"Links":[{"SourceID":89450,"TargetID":89446,"Directional":false}]},{"ID":2329,"SourceStructureID":89522,"TargetStructureID":5396,"Label":"89522-5396 via Adherens from 89523 -> 89521","Type":"Adherens","Directional":false,"Links":[{"SourceID":89523,"TargetID":89521,"Directional":false}]},{"ID":2330,"SourceStructureID":89533,"TargetStructureID":5396,"Label":"89533-5396 via Adherens from 89534 -> 89532","Type":"Adherens","Directional":false,"Links":[{"SourceID":89534,"TargetID":89532,"Directional":false}]},{"ID":2331,"SourceStructureID":5402,"TargetStructureID":14615,"Label":"5402-14615 via Adherens from 76603 -> 76604","Type":"Adherens","Directional":false,"Links":[{"SourceID":76603,"TargetID":76604,"Directional":false}]},{"ID":2332,"SourceStructureID":5405,"TargetStructureID":5405,"Label":"5405-5405 via Adherens from 120202 -> 120203","Type":"Adherens","Directional":false,"Links":[{"SourceID":120202,"TargetID":120203,"Directional":false}]},{"ID":2333,"SourceStructureID":5405,"TargetStructureID":8575,"Label":"5405-8575 via Adherens from 62802 -> 62801","Type":"Adherens","Directional":false,"Links":[{"SourceID":62802,"TargetID":62801,"Directional":false}]},{"ID":2334,"SourceStructureID":82130,"TargetStructureID":5410,"Label":"82130-5410 via Adherens from 82132 -> 82133","Type":"Adherens","Directional":false,"Links":[{"SourceID":82132,"TargetID":82133,"Directional":false}]},{"ID":2335,"SourceStructureID":82143,"TargetStructureID":5410,"Label":"82143-5410 via Adherens from 82144 -> 82142","Type":"Adherens","Directional":false,"Links":[{"SourceID":82144,"TargetID":82142,"Directional":false}]},{"ID":2336,"SourceStructureID":5410,"TargetStructureID":82159,"Label":"5410-82159 via Adherens from 82158 -> 82160","Type":"Adherens","Directional":false,"Links":[{"SourceID":82158,"TargetID":82160,"Directional":false}]},{"ID":2337,"SourceStructureID":5410,"TargetStructureID":82170,"Label":"5410-82170 via Adherens from 82169 -> 82171","Type":"Adherens","Directional":false,"Links":[{"SourceID":82169,"TargetID":82171,"Directional":false}]},{"ID":2338,"SourceStructureID":5410,"TargetStructureID":82181,"Label":"5410-82181 via Adherens from 82180 -> 82183","Type":"Adherens","Directional":false,"Links":[{"SourceID":82180,"TargetID":82183,"Directional":false}]},{"ID":2339,"SourceStructureID":5530,"TargetStructureID":5423,"Label":"5530-5423 via Unknown from 80494 -> 126454","Type":"Unknown","Directional":false,"Links":[{"SourceID":80494,"TargetID":126454,"Directional":false}]},{"ID":2340,"SourceStructureID":5530,"TargetStructureID":5435,"Label":"5530-5435 via Unknown from 81646 -> 82993","Type":"Unknown","Directional":false,"Links":[{"SourceID":81646,"TargetID":82993,"Directional":false}]},{"ID":2341,"SourceStructureID":29340,"TargetStructureID":5435,"Label":"29340-5435 via Gap Junction from 41220 -> 41219","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":41220,"TargetID":41219,"Directional":false}]},{"ID":2342,"SourceStructureID":5528,"TargetStructureID":5436,"Label":"5528-5436 via Adherens from 94284 -> 94285","Type":"Adherens","Directional":false,"Links":[{"SourceID":94284,"TargetID":94285,"Directional":false}]},{"ID":2343,"SourceStructureID":7568,"TargetStructureID":5439,"Label":"7568-5439 via Adherens from 85513 -> 85514","Type":"Adherens","Directional":false,"Links":[{"SourceID":85513,"TargetID":85514,"Directional":false}]},{"ID":2344,"SourceStructureID":70535,"TargetStructureID":5439,"Label":"70535-5439 via Adherens from 70539 -> 70538","Type":"Adherens","Directional":false,"Links":[{"SourceID":70539,"TargetID":70538,"Directional":false}]},{"ID":2345,"SourceStructureID":70547,"TargetStructureID":5439,"Label":"70547-5439 via Adherens from 70548 -> 70549","Type":"Adherens","Directional":false,"Links":[{"SourceID":70548,"TargetID":70549,"Directional":false}]},{"ID":2346,"SourceStructureID":70547,"TargetStructureID":5439,"Label":"70547-5439 via Gap Junction from 70550 -> 70551","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70550,"TargetID":70551,"Directional":false}]},{"ID":2347,"SourceStructureID":70552,"TargetStructureID":5439,"Label":"70552-5439 via Adherens from 70555 -> 70556","Type":"Adherens","Directional":false,"Links":[{"SourceID":70555,"TargetID":70556,"Directional":false}]},{"ID":2348,"SourceStructureID":70586,"TargetStructureID":5439,"Label":"70586-5439 via Gap Junction from 70587 -> 66577","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70587,"TargetID":66577,"Directional":false}]},{"ID":2349,"SourceStructureID":5439,"TargetStructureID":70628,"Label":"5439-70628 via Adherens from 70630 -> 70631","Type":"Adherens","Directional":false,"Links":[{"SourceID":70630,"TargetID":70631,"Directional":false}]},{"ID":2350,"SourceStructureID":5439,"TargetStructureID":70663,"Label":"5439-70663 via Adherens from 70665 -> 70664","Type":"Adherens","Directional":false,"Links":[{"SourceID":70665,"TargetID":70664,"Directional":false}]},{"ID":2351,"SourceStructureID":70671,"TargetStructureID":5439,"Label":"70671-5439 via Adherens from 70672 -> 70670","Type":"Adherens","Directional":false,"Links":[{"SourceID":70672,"TargetID":70670,"Directional":false}]},{"ID":2352,"SourceStructureID":70801,"TargetStructureID":5439,"Label":"70801-5439 via Adherens from 70802 -> 70803, 70806 -> 70805","Type":"Adherens","Directional":false,"Links":[{"SourceID":70802,"TargetID":70803,"Directional":false},{"SourceID":70806,"TargetID":70805,"Directional":false}]},{"ID":2353,"SourceStructureID":5439,"TargetStructureID":70822,"Label":"5439-70822 via Adherens from 70824 -> 70823","Type":"Adherens","Directional":false,"Links":[{"SourceID":70824,"TargetID":70823,"Directional":false}]},{"ID":2354,"SourceStructureID":70837,"TargetStructureID":5439,"Label":"70837-5439 via Adherens from 70838 -> 70839","Type":"Adherens","Directional":false,"Links":[{"SourceID":70838,"TargetID":70839,"Directional":false}]},{"ID":2355,"SourceStructureID":70840,"TargetStructureID":5439,"Label":"70840-5439 via Adherens from 70844 -> 70843","Type":"Adherens","Directional":false,"Links":[{"SourceID":70844,"TargetID":70843,"Directional":false}]},{"ID":2356,"SourceStructureID":70845,"TargetStructureID":5439,"Label":"70845-5439 via Adherens from 70848 -> 70849","Type":"Adherens","Directional":false,"Links":[{"SourceID":70848,"TargetID":70849,"Directional":false}]},{"ID":2357,"SourceStructureID":85601,"TargetStructureID":5439,"Label":"85601-5439 via Adherens from 85610 -> 85611","Type":"Adherens","Directional":false,"Links":[{"SourceID":85610,"TargetID":85611,"Directional":false}]},{"ID":2358,"SourceStructureID":85735,"TargetStructureID":5439,"Label":"85735-5439 via Adherens from 85737 -> 85731","Type":"Adherens","Directional":false,"Links":[{"SourceID":85737,"TargetID":85731,"Directional":false}]},{"ID":2359,"SourceStructureID":5439,"TargetStructureID":96652,"Label":"5439-96652 via Adherens from 96656 -> 96655","Type":"Adherens","Directional":false,"Links":[{"SourceID":96656,"TargetID":96655,"Directional":false}]},{"ID":2360,"SourceStructureID":5468,"TargetStructureID":5442,"Label":"5468-5442 via Adherens from 55140 -> 55139","Type":"Adherens","Directional":false,"Links":[{"SourceID":55140,"TargetID":55139,"Directional":false}]},{"ID":2361,"SourceStructureID":5442,"TargetStructureID":5598,"Label":"5442-5598 via Adherens from 126961 -> 115190","Type":"Adherens","Directional":false,"Links":[{"SourceID":126961,"TargetID":115190,"Directional":false}]},{"ID":2362,"SourceStructureID":6050,"TargetStructureID":5442,"Label":"6050-5442 via Unknown from 127109 -> 127110, 127458 -> 127459, 127524 -> 127523","Type":"Unknown","Directional":false,"Links":[{"SourceID":127109,"TargetID":127110,"Directional":false},{"SourceID":127458,"TargetID":127459,"Directional":false},{"SourceID":127524,"TargetID":127523,"Directional":false}]},{"ID":2363,"SourceStructureID":5442,"TargetStructureID":15796,"Label":"5442-15796 via Adherens from 56692 -> 56693","Type":"Adherens","Directional":false,"Links":[{"SourceID":56692,"TargetID":56693,"Directional":false}]},{"ID":2364,"SourceStructureID":5442,"TargetStructureID":23870,"Label":"5442-23870 via Adherens from 55136 -> 55137, 55920 -> 55921, 56672 -> 56671, 56673 -> 56674","Type":"Adherens","Directional":false,"Links":[{"SourceID":55136,"TargetID":55137,"Directional":false},{"SourceID":55920,"TargetID":55921,"Directional":false},{"SourceID":56672,"TargetID":56671,"Directional":false},{"SourceID":56673,"TargetID":56674,"Directional":false}]},{"ID":2365,"SourceStructureID":5442,"TargetStructureID":23870,"Label":"5442-23870 via Gap Junction from 55150 -> 55149, 56676 -> 56675, 66273 -> 66270, 66274 -> 66275","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55150,"TargetID":55149,"Directional":false},{"SourceID":56676,"TargetID":56675,"Directional":false},{"SourceID":66273,"TargetID":66270,"Directional":false},{"SourceID":66274,"TargetID":66275,"Directional":false}]},{"ID":2366,"SourceStructureID":5442,"TargetStructureID":23870,"Label":"5442-23870 via Unknown from 74435 -> 74437, 74445 -> 74443","Type":"Unknown","Directional":false,"Links":[{"SourceID":74435,"TargetID":74437,"Directional":false},{"SourceID":74445,"TargetID":74443,"Directional":false}]},{"ID":2367,"SourceStructureID":35811,"TargetStructureID":5442,"Label":"35811-5442 via Adherens from 55120 -> 55119, 73964 -> 73963, 73990 -> 73989","Type":"Adherens","Directional":false,"Links":[{"SourceID":55120,"TargetID":55119,"Directional":false},{"SourceID":73964,"TargetID":73963,"Directional":false},{"SourceID":73990,"TargetID":73989,"Directional":false}]},{"ID":2368,"SourceStructureID":5442,"TargetStructureID":35894,"Label":"5442-35894 via Adherens from 56684 -> 56685, 56686 -> 56687, 56689 -> 56690","Type":"Adherens","Directional":false,"Links":[{"SourceID":56684,"TargetID":56685,"Directional":false},{"SourceID":56686,"TargetID":56687,"Directional":false},{"SourceID":56689,"TargetID":56690,"Directional":false}]},{"ID":2369,"SourceStructureID":62396,"TargetStructureID":5442,"Label":"62396-5442 via Adherens from 62399 -> 56660, 62400 -> 62401","Type":"Adherens","Directional":false,"Links":[{"SourceID":62399,"TargetID":56660,"Directional":false},{"SourceID":62400,"TargetID":62401,"Directional":false}]},{"ID":2370,"SourceStructureID":5442,"TargetStructureID":73580,"Label":"5442-73580 via Adherens from 73585 -> 73586, 73587 -> 73588","Type":"Adherens","Directional":false,"Links":[{"SourceID":73585,"TargetID":73586,"Directional":false},{"SourceID":73587,"TargetID":73588,"Directional":false}]},{"ID":2371,"SourceStructureID":74047,"TargetStructureID":5442,"Label":"74047-5442 via Unknown from 74048 -> 74038, 74355 -> 74354","Type":"Unknown","Directional":false,"Links":[{"SourceID":74048,"TargetID":74038,"Directional":false},{"SourceID":74355,"TargetID":74354,"Directional":false}]},{"ID":2372,"SourceStructureID":5451,"TargetStructureID":7122,"Label":"5451-7122 via Gap Junction from 45105 -> 45106","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45105,"TargetID":45106,"Directional":false}]},{"ID":2373,"SourceStructureID":5451,"TargetStructureID":28950,"Label":"5451-28950 via Adherens from 55922 -> 55923","Type":"Adherens","Directional":false,"Links":[{"SourceID":55922,"TargetID":55923,"Directional":false}]},{"ID":2374,"SourceStructureID":28950,"TargetStructureID":5451,"Label":"28950-5451 via Touch from 55938 -> 131110","Type":"Touch","Directional":false,"Links":[{"SourceID":55938,"TargetID":131110,"Directional":false}]},{"ID":2375,"SourceStructureID":5531,"TargetStructureID":5453,"Label":"5531-5453 via Unknown from 105367 -> 105368","Type":"Unknown","Directional":false,"Links":[{"SourceID":105367,"TargetID":105368,"Directional":false}]},{"ID":2376,"SourceStructureID":5453,"TargetStructureID":5543,"Label":"5453-5543 via Adherens from 18658 -> 18673","Type":"Adherens","Directional":false,"Links":[{"SourceID":18658,"TargetID":18673,"Directional":false}]},{"ID":2377,"SourceStructureID":5531,"TargetStructureID":5454,"Label":"5531-5454 via Unknown from 106655 -> 106654","Type":"Unknown","Directional":false,"Links":[{"SourceID":106655,"TargetID":106654,"Directional":false}]},{"ID":2378,"SourceStructureID":7345,"TargetStructureID":5456,"Label":"7345-5456 via Gap Junction from 122790 -> 122780","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122790,"TargetID":122780,"Directional":false}]},{"ID":2379,"SourceStructureID":7564,"TargetStructureID":5457,"Label":"7564-5457 via Adherens from 29159 -> 103141","Type":"Adherens","Directional":false,"Links":[{"SourceID":29159,"TargetID":103141,"Directional":false}]},{"ID":2380,"SourceStructureID":5464,"TargetStructureID":5464,"Label":"5464-5464 via Gap Junction from 116615 -> 116616","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116615,"TargetID":116616,"Directional":false}]},{"ID":2381,"SourceStructureID":5464,"TargetStructureID":5592,"Label":"5464-5592 via Gap Junction from 121815 -> 121814, 121817 -> 121816","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121815,"TargetID":121814,"Directional":false},{"SourceID":121817,"TargetID":121816,"Directional":false}]},{"ID":2382,"SourceStructureID":6047,"TargetStructureID":5464,"Label":"6047-5464 via Gap Junction from 113268 -> 129331, 115796 -> 113247, 129339 -> 117225","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113268,"TargetID":129331,"Directional":false},{"SourceID":115796,"TargetID":113247,"Directional":false},{"SourceID":129339,"TargetID":117225,"Directional":false}]},{"ID":2383,"SourceStructureID":5464,"TargetStructureID":6141,"Label":"5464-6141 via Gap Junction from 118159 -> 61415","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118159,"TargetID":61415,"Directional":false}]},{"ID":2384,"SourceStructureID":5464,"TargetStructureID":6203,"Label":"5464-6203 via Gap Junction from 47827 -> 11969, 57254 -> 57242, 57270 -> 57264, 116622 -> 116621, 116623 -> 116624, 116627 -> 116628, 118158 -> 118157, 121821 -> 121820, 131400 -> 131399","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47827,"TargetID":11969,"Directional":false},{"SourceID":57254,"TargetID":57242,"Directional":false},{"SourceID":57270,"TargetID":57264,"Directional":false},{"SourceID":116622,"TargetID":116621,"Directional":false},{"SourceID":116623,"TargetID":116624,"Directional":false},{"SourceID":116627,"TargetID":116628,"Directional":false},{"SourceID":118158,"TargetID":118157,"Directional":false},{"SourceID":121821,"TargetID":121820,"Directional":false},{"SourceID":131400,"TargetID":131399,"Directional":false}]},{"ID":2385,"SourceStructureID":6204,"TargetStructureID":5464,"Label":"6204-5464 via Adherens from 132033 -> 132034","Type":"Adherens","Directional":false,"Links":[{"SourceID":132033,"TargetID":132034,"Directional":false}]},{"ID":2386,"SourceStructureID":5464,"TargetStructureID":6204,"Label":"5464-6204 via Gap Junction from 52638 -> 52635, 116625 -> 116626, 118083 -> 118082, 118112 -> 118111, 118160 -> 118156, 121818 -> 121819","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52638,"TargetID":52635,"Directional":false},{"SourceID":116625,"TargetID":116626,"Directional":false},{"SourceID":118083,"TargetID":118082,"Directional":false},{"SourceID":118112,"TargetID":118111,"Directional":false},{"SourceID":118160,"TargetID":118156,"Directional":false},{"SourceID":121818,"TargetID":121819,"Directional":false}]},{"ID":2387,"SourceStructureID":5464,"TargetStructureID":6958,"Label":"5464-6958 via Gap Junction from 116632 -> 116631","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116632,"TargetID":116631,"Directional":false}]},{"ID":2388,"SourceStructureID":5464,"TargetStructureID":7147,"Label":"5464-7147 via Gap Junction from 129335 -> 117226","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129335,"TargetID":117226,"Directional":false}]},{"ID":2389,"SourceStructureID":57353,"TargetStructureID":5464,"Label":"57353-5464 via Touch from 124062 -> 124063","Type":"Touch","Directional":false,"Links":[{"SourceID":124062,"TargetID":124063,"Directional":false}]},{"ID":2390,"SourceStructureID":5464,"TargetStructureID":57353,"Label":"5464-57353 via Unknown from 124300 -> 124299","Type":"Unknown","Directional":false,"Links":[{"SourceID":124300,"TargetID":124299,"Directional":false}]},{"ID":2391,"SourceStructureID":5468,"TargetStructureID":5468,"Label":"5468-5468 via Gap Junction from 57456 -> 57455","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57456,"TargetID":57455,"Directional":false}]},{"ID":2392,"SourceStructureID":5473,"TargetStructureID":5468,"Label":"5473-5468 via Gap Junction from 23883 -> 23882, 57147 -> 48271","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23883,"TargetID":23882,"Directional":false},{"SourceID":57147,"TargetID":48271,"Directional":false}]},{"ID":2393,"SourceStructureID":5584,"TargetStructureID":5468,"Label":"5584-5468 via Touch from 93534 -> 93532","Type":"Touch","Directional":false,"Links":[{"SourceID":93534,"TargetID":93532,"Directional":false}]},{"ID":2394,"SourceStructureID":5592,"TargetStructureID":5468,"Label":"5592-5468 via Gap Junction from 36843 -> 36844, 118106 -> 118105, 121791 -> 121790","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36843,"TargetID":36844,"Directional":false},{"SourceID":118106,"TargetID":118105,"Directional":false},{"SourceID":121791,"TargetID":121790,"Directional":false}]},{"ID":2395,"SourceStructureID":5598,"TargetStructureID":5468,"Label":"5598-5468 via Gap Junction from 52983 -> 48220","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52983,"TargetID":48220,"Directional":false}]},{"ID":2396,"SourceStructureID":5601,"TargetStructureID":5468,"Label":"5601-5468 via Adherens from 135658 -> 135659, 135676 -> 135675","Type":"Adherens","Directional":false,"Links":[{"SourceID":135658,"TargetID":135659,"Directional":false},{"SourceID":135676,"TargetID":135675,"Directional":false}]},{"ID":2397,"SourceStructureID":5468,"TargetStructureID":5601,"Label":"5468-5601 via Gap Junction from 57440 -> 57442, 57466 -> 57465, 123284 -> 91465","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57440,"TargetID":57442,"Directional":false},{"SourceID":57466,"TargetID":57465,"Directional":false},{"SourceID":123284,"TargetID":91465,"Directional":false}]},{"ID":2398,"SourceStructureID":5468,"TargetStructureID":5601,"Label":"5468-5601 via Touch from 91467 -> 91466","Type":"Touch","Directional":false,"Links":[{"SourceID":91467,"TargetID":91466,"Directional":false}]},{"ID":2399,"SourceStructureID":6203,"TargetStructureID":5468,"Label":"6203-5468 via Gap Junction from 118109 -> 118108","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118109,"TargetID":118108,"Directional":false}]},{"ID":2400,"SourceStructureID":6204,"TargetStructureID":5468,"Label":"6204-5468 via Gap Junction from 118168 -> 23878, 118169 -> 118110","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118168,"TargetID":23878,"Directional":false},{"SourceID":118169,"TargetID":118110,"Directional":false}]},{"ID":2401,"SourceStructureID":7114,"TargetStructureID":5468,"Label":"7114-5468 via Gap Junction from 48215 -> 48214, 51774 -> 48129, 93531 -> 93530, 118114 -> 118115, 121812 -> 121811","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48215,"TargetID":48214,"Directional":false},{"SourceID":51774,"TargetID":48129,"Directional":false},{"SourceID":93531,"TargetID":93530,"Directional":false},{"SourceID":118114,"TargetID":118115,"Directional":false},{"SourceID":121812,"TargetID":121811,"Directional":false}]},{"ID":2402,"SourceStructureID":15976,"TargetStructureID":5468,"Label":"15976-5468 via Gap Junction from 54714 -> 54713","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54714,"TargetID":54713,"Directional":false}]},{"ID":2403,"SourceStructureID":5468,"TargetStructureID":33057,"Label":"5468-33057 via Adherens from 48225 -> 48226","Type":"Adherens","Directional":false,"Links":[{"SourceID":48225,"TargetID":48226,"Directional":false}]},{"ID":2404,"SourceStructureID":57148,"TargetStructureID":5468,"Label":"57148-5468 via Gap Junction from 57149 -> 48289","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57149,"TargetID":48289,"Directional":false}]},{"ID":2405,"SourceStructureID":5468,"TargetStructureID":74047,"Label":"5468-74047 via Adherens from 74394 -> 74393","Type":"Adherens","Directional":false,"Links":[{"SourceID":74394,"TargetID":74393,"Directional":false}]},{"ID":2406,"SourceStructureID":89638,"TargetStructureID":5468,"Label":"89638-5468 via Adherens from 89640 -> 89641","Type":"Adherens","Directional":false,"Links":[{"SourceID":89640,"TargetID":89641,"Directional":false}]},{"ID":2407,"SourceStructureID":5468,"TargetStructureID":93574,"Label":"5468-93574 via Adherens from 48238 -> 93577","Type":"Adherens","Directional":false,"Links":[{"SourceID":48238,"TargetID":93577,"Directional":false}]},{"ID":2408,"SourceStructureID":5468,"TargetStructureID":93574,"Label":"5468-93574 via Gap Junction from 48266 -> 93575","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48266,"TargetID":93575,"Directional":false}]},{"ID":2409,"SourceStructureID":5473,"TargetStructureID":5592,"Label":"5473-5592 via Gap Junction from 23895 -> 23891","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23895,"TargetID":23891,"Directional":false}]},{"ID":2410,"SourceStructureID":5473,"TargetStructureID":5638,"Label":"5473-5638 via Gap Junction from 116863 -> 56467, 117099 -> 117098","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116863,"TargetID":56467,"Directional":false},{"SourceID":117099,"TargetID":117098,"Directional":false}]},{"ID":2411,"SourceStructureID":5473,"TargetStructureID":6958,"Label":"5473-6958 via Gap Junction from 27460 -> 27461, 116540 -> 116539","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":27460,"TargetID":27461,"Directional":false},{"SourceID":116540,"TargetID":116539,"Directional":false}]},{"ID":2412,"SourceStructureID":15976,"TargetStructureID":5473,"Label":"15976-5473 via Gap Junction from 23888 -> 23887, 57152 -> 23886, 93195 -> 57146, 93309 -> 57412, 121834 -> 121833","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":23888,"TargetID":23887,"Directional":false},{"SourceID":57152,"TargetID":23886,"Directional":false},{"SourceID":93195,"TargetID":57146,"Directional":false},{"SourceID":93309,"TargetID":57412,"Directional":false},{"SourceID":121834,"TargetID":121833,"Directional":false}]},{"ID":2413,"SourceStructureID":5473,"TargetStructureID":15977,"Label":"5473-15977 via Gap Junction from 117175 -> 117174","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117175,"TargetID":117174,"Directional":false}]},{"ID":2414,"SourceStructureID":5473,"TargetStructureID":57143,"Label":"5473-57143 via Gap Junction from 57145 -> 57144","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57145,"TargetID":57144,"Directional":false}]},{"ID":2415,"SourceStructureID":117127,"TargetStructureID":5473,"Label":"117127-5473 via Gap Junction from 117140 -> 117141","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117140,"TargetID":117141,"Directional":false}]},{"ID":2416,"SourceStructureID":66663,"TargetStructureID":5481,"Label":"66663-5481 via Adherens from 66664 -> 66662","Type":"Adherens","Directional":false,"Links":[{"SourceID":66664,"TargetID":66662,"Directional":false}]},{"ID":2417,"SourceStructureID":71882,"TargetStructureID":5481,"Label":"71882-5481 via Adherens from 71887 -> 71886, 90318 -> 90200","Type":"Adherens","Directional":false,"Links":[{"SourceID":71887,"TargetID":71886,"Directional":false},{"SourceID":90318,"TargetID":90200,"Directional":false}]},{"ID":2418,"SourceStructureID":71882,"TargetStructureID":5481,"Label":"71882-5481 via Gap Junction from 71885 -> 71884","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71885,"TargetID":71884,"Directional":false}]},{"ID":2419,"SourceStructureID":82071,"TargetStructureID":5481,"Label":"82071-5481 via Unknown from 82499 -> 82500","Type":"Unknown","Directional":false,"Links":[{"SourceID":82499,"TargetID":82500,"Directional":false}]},{"ID":2420,"SourceStructureID":5485,"TargetStructureID":8575,"Label":"5485-8575 via Adherens from 62293 -> 62292","Type":"Adherens","Directional":false,"Links":[{"SourceID":62293,"TargetID":62292,"Directional":false}]},{"ID":2421,"SourceStructureID":34336,"TargetStructureID":5485,"Label":"34336-5485 via Adherens from 34368 -> 34367","Type":"Adherens","Directional":false,"Links":[{"SourceID":34368,"TargetID":34367,"Directional":false}]},{"ID":2422,"SourceStructureID":40604,"TargetStructureID":5485,"Label":"40604-5485 via Adherens from 43820 -> 43821","Type":"Adherens","Directional":false,"Links":[{"SourceID":43820,"TargetID":43821,"Directional":false}]},{"ID":2423,"SourceStructureID":5487,"TargetStructureID":21299,"Label":"5487-21299 via Adherens from 91667 -> 48900, 91674 -> 91675, 91677 -> 91676","Type":"Adherens","Directional":false,"Links":[{"SourceID":91667,"TargetID":48900,"Directional":false},{"SourceID":91674,"TargetID":91675,"Directional":false},{"SourceID":91677,"TargetID":91676,"Directional":false}]},{"ID":2424,"SourceStructureID":5487,"TargetStructureID":21299,"Label":"5487-21299 via Gap Junction from 91620 -> 91617, 91671 -> 48924, 126385 -> 48829","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91620,"TargetID":91617,"Directional":false},{"SourceID":91671,"TargetID":48924,"Directional":false},{"SourceID":126385,"TargetID":48829,"Directional":false}]},{"ID":2425,"SourceStructureID":68497,"TargetStructureID":5489,"Label":"68497-5489 via Adherens from 81597 -> 81596","Type":"Adherens","Directional":false,"Links":[{"SourceID":81597,"TargetID":81596,"Directional":false}]},{"ID":2426,"SourceStructureID":5531,"TargetStructureID":5491,"Label":"5531-5491 via Unknown from 113839 -> 113838","Type":"Unknown","Directional":false,"Links":[{"SourceID":113839,"TargetID":113838,"Directional":false}]},{"ID":2427,"SourceStructureID":5499,"TargetStructureID":5496,"Label":"5499-5496 via BC Conventional Synapse from 96686 -> 96687","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":96686,"TargetID":96687,"Directional":false}]},{"ID":2428,"SourceStructureID":5497,"TargetStructureID":62500,"Label":"5497-62500 via Adherens from 62503 -> 62502","Type":"Adherens","Directional":false,"Links":[{"SourceID":62503,"TargetID":62502,"Directional":false}]},{"ID":2429,"SourceStructureID":5497,"TargetStructureID":85044,"Label":"5497-85044 via Adherens from 85046 -> 85045","Type":"Adherens","Directional":false,"Links":[{"SourceID":85046,"TargetID":85045,"Directional":false}]},{"ID":2430,"SourceStructureID":5499,"TargetStructureID":5499,"Label":"5499-5499 via Adherens from 136221 -> 136220","Type":"Adherens","Directional":false,"Links":[{"SourceID":136221,"TargetID":136220,"Directional":false}]},{"ID":2431,"SourceStructureID":5499,"TargetStructureID":5499,"Label":"5499-5499 via Gap Junction from 96743 -> 98072, 97868 -> 97867, 106633 -> 106632","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96743,"TargetID":98072,"Directional":false},{"SourceID":97868,"TargetID":97867,"Directional":false},{"SourceID":106633,"TargetID":106632,"Directional":false}]},{"ID":2432,"SourceStructureID":5499,"TargetStructureID":5501,"Label":"5499-5501 via Adherens from 136151 -> 136150","Type":"Adherens","Directional":false,"Links":[{"SourceID":136151,"TargetID":136150,"Directional":false}]},{"ID":2433,"SourceStructureID":5499,"TargetStructureID":5501,"Label":"5499-5501 via Gap Junction from 105503 -> 105504","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":105503,"TargetID":105504,"Directional":false}]},{"ID":2434,"SourceStructureID":5499,"TargetStructureID":5503,"Label":"5499-5503 via Adherens from 105606 -> 105605, 136193 -> 136192, 136209 -> 136208","Type":"Adherens","Directional":false,"Links":[{"SourceID":105606,"TargetID":105605,"Directional":false},{"SourceID":136193,"TargetID":136192,"Directional":false},{"SourceID":136209,"TargetID":136208,"Directional":false}]},{"ID":2435,"SourceStructureID":5503,"TargetStructureID":5499,"Label":"5503-5499 via Gap Junction from 52805 -> 49674, 60620 -> 60619, 60628 -> 60625, 105489 -> 105490","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52805,"TargetID":49674,"Directional":false},{"SourceID":60620,"TargetID":60619,"Directional":false},{"SourceID":60628,"TargetID":60625,"Directional":false},{"SourceID":105489,"TargetID":105490,"Directional":false}]},{"ID":2436,"SourceStructureID":5520,"TargetStructureID":5499,"Label":"5520-5499 via Adherens from 136146 -> 136145, 136148 -> 136149, 136153 -> 136152","Type":"Adherens","Directional":false,"Links":[{"SourceID":136146,"TargetID":136145,"Directional":false},{"SourceID":136148,"TargetID":136149,"Directional":false},{"SourceID":136153,"TargetID":136152,"Directional":false}]},{"ID":2437,"SourceStructureID":5520,"TargetStructureID":5499,"Label":"5520-5499 via Gap Junction from 40147 -> 40146, 61019 -> 61018, 97894 -> 115689, 97904 -> 97905, 98013 -> 96749, 105455 -> 105456, 105484 -> 105485, 105487 -> 105486, 105603 -> 105601, 105829 -> 105828","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40147,"TargetID":40146,"Directional":false},{"SourceID":61019,"TargetID":61018,"Directional":false},{"SourceID":97894,"TargetID":115689,"Directional":false},{"SourceID":97904,"TargetID":97905,"Directional":false},{"SourceID":98013,"TargetID":96749,"Directional":false},{"SourceID":105455,"TargetID":105456,"Directional":false},{"SourceID":105484,"TargetID":105485,"Directional":false},{"SourceID":105487,"TargetID":105486,"Directional":false},{"SourceID":105603,"TargetID":105601,"Directional":false},{"SourceID":105829,"TargetID":105828,"Directional":false}]},{"ID":2438,"SourceStructureID":5499,"TargetStructureID":5561,"Label":"5499-5561 via Adherens from 136190 -> 136191","Type":"Adherens","Directional":false,"Links":[{"SourceID":136190,"TargetID":136191,"Directional":false}]},{"ID":2439,"SourceStructureID":5499,"TargetStructureID":5561,"Label":"5499-5561 via Gap Junction from 49668 -> 49641, 96742 -> 96741, 97524 -> 97523, 106536 -> 106535, 119258 -> 97177","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49668,"TargetID":49641,"Directional":false},{"SourceID":96742,"TargetID":96741,"Directional":false},{"SourceID":97524,"TargetID":97523,"Directional":false},{"SourceID":106536,"TargetID":106535,"Directional":false},{"SourceID":119258,"TargetID":97177,"Directional":false}]},{"ID":2440,"SourceStructureID":5565,"TargetStructureID":5499,"Label":"5565-5499 via Gap Junction from 50815 -> 50816, 50843 -> 50844, 50981 -> 107009, 106799 -> 106798, 106936 -> 106937, 106954 -> 106955, 106957 -> 106956, 106971 -> 106972, 106974 -> 106973, 107008 -> 107007","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50815,"TargetID":50816,"Directional":false},{"SourceID":50843,"TargetID":50844,"Directional":false},{"SourceID":50981,"TargetID":107009,"Directional":false},{"SourceID":106799,"TargetID":106798,"Directional":false},{"SourceID":106936,"TargetID":106937,"Directional":false},{"SourceID":106954,"TargetID":106955,"Directional":false},{"SourceID":106957,"TargetID":106956,"Directional":false},{"SourceID":106971,"TargetID":106972,"Directional":false},{"SourceID":106974,"TargetID":106973,"Directional":false},{"SourceID":107008,"TargetID":107007,"Directional":false}]},{"ID":2441,"SourceStructureID":5499,"TargetStructureID":5565,"Label":"5499-5565 via Touch from 98102 -> 98103","Type":"Touch","Directional":false,"Links":[{"SourceID":98102,"TargetID":98103,"Directional":false}]},{"ID":2442,"SourceStructureID":5499,"TargetStructureID":5568,"Label":"5499-5568 via Gap Junction from 121312 -> 121311","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121312,"TargetID":121311,"Directional":false}]},{"ID":2443,"SourceStructureID":5729,"TargetStructureID":5499,"Label":"5729-5499 via Adherens from 136205 -> 136206","Type":"Adherens","Directional":false,"Links":[{"SourceID":136205,"TargetID":136206,"Directional":false}]},{"ID":2444,"SourceStructureID":5499,"TargetStructureID":5729,"Label":"5499-5729 via Gap Junction from 60621 -> 60623","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60621,"TargetID":60623,"Directional":false}]},{"ID":2445,"SourceStructureID":7024,"TargetStructureID":5499,"Label":"7024-5499 via Adherens from 113489 -> 113490, 113506 -> 113507, 135692 -> 135693, 136188 -> 136189, 136211 -> 136210, 136217 -> 136216","Type":"Adherens","Directional":false,"Links":[{"SourceID":113489,"TargetID":113490,"Directional":false},{"SourceID":113506,"TargetID":113507,"Directional":false},{"SourceID":135692,"TargetID":135693,"Directional":false},{"SourceID":136188,"TargetID":136189,"Directional":false},{"SourceID":136211,"TargetID":136210,"Directional":false},{"SourceID":136217,"TargetID":136216,"Directional":false}]},{"ID":2446,"SourceStructureID":5499,"TargetStructureID":7024,"Label":"5499-7024 via Gap Junction from 40161 -> 40160, 47337 -> 47336, 54972 -> 40163, 93823 -> 93822, 93825 -> 93824, 93865 -> 93864, 93866 -> 93867, 93997 -> 93996, 93998 -> 97869, 106609 -> 106544, 106610 -> 49667, 106755 -> 106754, 106829 -> 106828, 106959 -> 106958, 106966 -> 106965, 113717 -> 113718","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40161,"TargetID":40160,"Directional":false},{"SourceID":47337,"TargetID":47336,"Directional":false},{"SourceID":54972,"TargetID":40163,"Directional":false},{"SourceID":93823,"TargetID":93822,"Directional":false},{"SourceID":93825,"TargetID":93824,"Directional":false},{"SourceID":93865,"TargetID":93864,"Directional":false},{"SourceID":93866,"TargetID":93867,"Directional":false},{"SourceID":93997,"TargetID":93996,"Directional":false},{"SourceID":93998,"TargetID":97869,"Directional":false},{"SourceID":106609,"TargetID":106544,"Directional":false},{"SourceID":106610,"TargetID":49667,"Directional":false},{"SourceID":106755,"TargetID":106754,"Directional":false},{"SourceID":106829,"TargetID":106828,"Directional":false},{"SourceID":106959,"TargetID":106958,"Directional":false},{"SourceID":106966,"TargetID":106965,"Directional":false},{"SourceID":113717,"TargetID":113718,"Directional":false}]},{"ID":2447,"SourceStructureID":5499,"TargetStructureID":7040,"Label":"5499-7040 via Gap Junction from 136161 -> 136159","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136161,"TargetID":136159,"Directional":false}]},{"ID":2448,"SourceStructureID":7050,"TargetStructureID":5499,"Label":"7050-5499 via Adherens from 136183 -> 136184, 136187 -> 136186","Type":"Adherens","Directional":false,"Links":[{"SourceID":136183,"TargetID":136184,"Directional":false},{"SourceID":136187,"TargetID":136186,"Directional":false}]},{"ID":2449,"SourceStructureID":5499,"TargetStructureID":7050,"Label":"5499-7050 via Gap Junction from 40145 -> 24576, 40148 -> 40149, 97988 -> 97987","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40145,"TargetID":24576,"Directional":false},{"SourceID":40148,"TargetID":40149,"Directional":false},{"SourceID":97988,"TargetID":97987,"Directional":false}]},{"ID":2450,"SourceStructureID":5499,"TargetStructureID":20136,"Label":"5499-20136 via Adherens from 158466 -> 158465","Type":"Adherens","Directional":false,"Links":[{"SourceID":158466,"TargetID":158465,"Directional":false}]},{"ID":2451,"SourceStructureID":5499,"TargetStructureID":20136,"Label":"5499-20136 via Gap Junction from 96715 -> 96717","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96715,"TargetID":96717,"Directional":false}]},{"ID":2452,"SourceStructureID":48516,"TargetStructureID":5499,"Label":"48516-5499 via Adherens from 136232 -> 136231","Type":"Adherens","Directional":false,"Links":[{"SourceID":136232,"TargetID":136231,"Directional":false}]},{"ID":2453,"SourceStructureID":48516,"TargetStructureID":5499,"Label":"48516-5499 via Gap Junction from 93786 -> 93788, 136230 -> 97873, 136233 -> 136234","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93786,"TargetID":93788,"Directional":false},{"SourceID":136230,"TargetID":97873,"Directional":false},{"SourceID":136233,"TargetID":136234,"Directional":false}]},{"ID":2454,"SourceStructureID":5499,"TargetStructureID":87294,"Label":"5499-87294 via Adherens from 87329 -> 87328","Type":"Adherens","Directional":false,"Links":[{"SourceID":87329,"TargetID":87328,"Directional":false}]},{"ID":2455,"SourceStructureID":5499,"TargetStructureID":96730,"Label":"5499-96730 via Adherens from 96725 -> 96731","Type":"Adherens","Directional":false,"Links":[{"SourceID":96725,"TargetID":96731,"Directional":false}]},{"ID":2456,"SourceStructureID":5499,"TargetStructureID":105790,"Label":"5499-105790 via Unknown from 105789 -> 105791","Type":"Unknown","Directional":false,"Links":[{"SourceID":105789,"TargetID":105791,"Directional":false}]},{"ID":2457,"SourceStructureID":5499,"TargetStructureID":110463,"Label":"5499-110463 via Gap Junction from 106736 -> 136154","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":106736,"TargetID":136154,"Directional":false}]},{"ID":2458,"SourceStructureID":136169,"TargetStructureID":5499,"Label":"136169-5499 via Adherens from 136170 -> 136168","Type":"Adherens","Directional":false,"Links":[{"SourceID":136170,"TargetID":136168,"Directional":false}]},{"ID":2459,"SourceStructureID":5499,"TargetStructureID":136169,"Label":"5499-136169 via Gap Junction from 106953 -> 136171","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":106953,"TargetID":136171,"Directional":false}]},{"ID":2460,"SourceStructureID":136177,"TargetStructureID":5499,"Label":"136177-5499 via Gap Junction from 136180 -> 106975","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136180,"TargetID":106975,"Directional":false}]},{"ID":2461,"SourceStructureID":5499,"TargetStructureID":136236,"Label":"5499-136236 via Gap Junction from 97914 -> 136238","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97914,"TargetID":136238,"Directional":false}]},{"ID":2462,"SourceStructureID":5500,"TargetStructureID":59362,"Label":"5500-59362 via Adherens from 59367 -> 59366, 59405 -> 59404","Type":"Adherens","Directional":false,"Links":[{"SourceID":59367,"TargetID":59366,"Directional":false},{"SourceID":59405,"TargetID":59404,"Directional":false}]},{"ID":2463,"SourceStructureID":5500,"TargetStructureID":59362,"Label":"5500-59362 via Gap Junction from 59365 -> 59364, 59368 -> 59369, 59406 -> 59407","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59365,"TargetID":59364,"Directional":false},{"SourceID":59368,"TargetID":59369,"Directional":false},{"SourceID":59406,"TargetID":59407,"Directional":false}]},{"ID":2464,"SourceStructureID":5500,"TargetStructureID":59377,"Label":"5500-59377 via Gap Junction from 59378 -> 59379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59378,"TargetID":59379,"Directional":false}]},{"ID":2465,"SourceStructureID":59392,"TargetStructureID":5500,"Label":"59392-5500 via Gap Junction from 59393 -> 59391, 59400 -> 59399","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59393,"TargetID":59391,"Directional":false},{"SourceID":59400,"TargetID":59399,"Directional":false}]},{"ID":2466,"SourceStructureID":59419,"TargetStructureID":5500,"Label":"59419-5500 via Gap Junction from 59420 -> 59421","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59420,"TargetID":59421,"Directional":false}]},{"ID":2467,"SourceStructureID":85032,"TargetStructureID":5500,"Label":"85032-5500 via Adherens from 85033 -> 85031","Type":"Adherens","Directional":false,"Links":[{"SourceID":85033,"TargetID":85031,"Directional":false}]},{"ID":2468,"SourceStructureID":5503,"TargetStructureID":5501,"Label":"5503-5501 via Adherens from 36562 -> 36563, 36565 -> 36566, 36611 -> 60689, 114052 -> 114053","Type":"Adherens","Directional":false,"Links":[{"SourceID":36562,"TargetID":36563,"Directional":false},{"SourceID":36565,"TargetID":36566,"Directional":false},{"SourceID":36611,"TargetID":60689,"Directional":false},{"SourceID":114052,"TargetID":114053,"Directional":false}]},{"ID":2469,"SourceStructureID":5501,"TargetStructureID":5503,"Label":"5501-5503 via Gap Junction from 36580 -> 36581, 36587 -> 36588, 108134 -> 108133, 108220 -> 108218, 108224 -> 108222, 109970 -> 109969, 110001 -> 109999, 110003 -> 110002, 110176 -> 110177, 110201 -> 110161, 110273 -> 110272, 110275 -> 110274, 110448 -> 110447, 131429 -> 131425, 131438 -> 131439","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36580,"TargetID":36581,"Directional":false},{"SourceID":36587,"TargetID":36588,"Directional":false},{"SourceID":108134,"TargetID":108133,"Directional":false},{"SourceID":108220,"TargetID":108218,"Directional":false},{"SourceID":108224,"TargetID":108222,"Directional":false},{"SourceID":109970,"TargetID":109969,"Directional":false},{"SourceID":110001,"TargetID":109999,"Directional":false},{"SourceID":110003,"TargetID":110002,"Directional":false},{"SourceID":110176,"TargetID":110177,"Directional":false},{"SourceID":110201,"TargetID":110161,"Directional":false},{"SourceID":110273,"TargetID":110272,"Directional":false},{"SourceID":110275,"TargetID":110274,"Directional":false},{"SourceID":110448,"TargetID":110447,"Directional":false},{"SourceID":131429,"TargetID":131425,"Directional":false},{"SourceID":131438,"TargetID":131439,"Directional":false}]},{"ID":2470,"SourceStructureID":5501,"TargetStructureID":5503,"Label":"5501-5503 via Touch from 131441 -> 131442","Type":"Touch","Directional":false,"Links":[{"SourceID":131441,"TargetID":131442,"Directional":false}]},{"ID":2471,"SourceStructureID":5501,"TargetStructureID":5503,"Label":"5501-5503 via Unknown from 108698 -> 108697, 109676 -> 109675, 109940 -> 109939, 110346 -> 110345, 110469 -> 110470","Type":"Unknown","Directional":false,"Links":[{"SourceID":108698,"TargetID":108697,"Directional":false},{"SourceID":109676,"TargetID":109675,"Directional":false},{"SourceID":109940,"TargetID":109939,"Directional":false},{"SourceID":110346,"TargetID":110345,"Directional":false},{"SourceID":110469,"TargetID":110470,"Directional":false}]},{"ID":2472,"SourceStructureID":5501,"TargetStructureID":5520,"Label":"5501-5520 via Adherens from 60410 -> 60401","Type":"Adherens","Directional":false,"Links":[{"SourceID":60410,"TargetID":60401,"Directional":false}]},{"ID":2473,"SourceStructureID":5501,"TargetStructureID":5520,"Label":"5501-5520 via Gap Junction from 60411 -> 60400, 60414 -> 60405, 60613 -> 60612, 60775 -> 60761, 110206 -> 105551, 119753 -> 119752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60411,"TargetID":60400,"Directional":false},{"SourceID":60414,"TargetID":60405,"Directional":false},{"SourceID":60613,"TargetID":60612,"Directional":false},{"SourceID":60775,"TargetID":60761,"Directional":false},{"SourceID":110206,"TargetID":105551,"Directional":false},{"SourceID":119753,"TargetID":119752,"Directional":false}]},{"ID":2474,"SourceStructureID":5520,"TargetStructureID":5501,"Label":"5520-5501 via Unknown from 105823 -> 105822","Type":"Unknown","Directional":false,"Links":[{"SourceID":105823,"TargetID":105822,"Directional":false}]},{"ID":2475,"SourceStructureID":5561,"TargetStructureID":5501,"Label":"5561-5501 via Adherens from 148183 -> 148182","Type":"Adherens","Directional":false,"Links":[{"SourceID":148183,"TargetID":148182,"Directional":false}]},{"ID":2476,"SourceStructureID":5501,"TargetStructureID":5561,"Label":"5501-5561 via Gap Junction from 97187 -> 97145, 97328 -> 48870, 97591 -> 97590, 148153 -> 148152, 148154 -> 148155","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97187,"TargetID":97145,"Directional":false},{"SourceID":97328,"TargetID":48870,"Directional":false},{"SourceID":97591,"TargetID":97590,"Directional":false},{"SourceID":148153,"TargetID":148152,"Directional":false},{"SourceID":148154,"TargetID":148155,"Directional":false}]},{"ID":2477,"SourceStructureID":5501,"TargetStructureID":5650,"Label":"5501-5650 via Touch from 131434 -> 131433","Type":"Touch","Directional":false,"Links":[{"SourceID":131434,"TargetID":131433,"Directional":false}]},{"ID":2478,"SourceStructureID":5501,"TargetStructureID":6120,"Label":"5501-6120 via Gap Junction from 111109 -> 61138","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111109,"TargetID":61138,"Directional":false}]},{"ID":2479,"SourceStructureID":108032,"TargetStructureID":5501,"Label":"108032-5501 via Adherens from 110226 -> 110225","Type":"Adherens","Directional":false,"Links":[{"SourceID":110226,"TargetID":110225,"Directional":false}]},{"ID":2480,"SourceStructureID":5503,"TargetStructureID":5503,"Label":"5503-5503 via Gap Junction from 108695 -> 108694, 110005 -> 110004","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108695,"TargetID":108694,"Directional":false},{"SourceID":110005,"TargetID":110004,"Directional":false}]},{"ID":2481,"SourceStructureID":5503,"TargetStructureID":5503,"Label":"5503-5503 via Unknown from 110060 -> 110059","Type":"Unknown","Directional":false,"Links":[{"SourceID":110060,"TargetID":110059,"Directional":false}]},{"ID":2482,"SourceStructureID":5520,"TargetStructureID":5503,"Label":"5520-5503 via Gap Junction from 38987 -> 37959, 60726 -> 105482, 105544 -> 105543","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38987,"TargetID":37959,"Directional":false},{"SourceID":60726,"TargetID":105482,"Directional":false},{"SourceID":105544,"TargetID":105543,"Directional":false}]},{"ID":2483,"SourceStructureID":5650,"TargetStructureID":5503,"Label":"5650-5503 via Gap Junction from 38549 -> 60675, 102690 -> 102689, 102942 -> 102943","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38549,"TargetID":60675,"Directional":false},{"SourceID":102690,"TargetID":102689,"Directional":false},{"SourceID":102942,"TargetID":102943,"Directional":false}]},{"ID":2484,"SourceStructureID":5503,"TargetStructureID":5729,"Label":"5503-5729 via Gap Junction from 105747 -> 105746, 108424 -> 108423","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":105747,"TargetID":105746,"Directional":false},{"SourceID":108424,"TargetID":108423,"Directional":false}]},{"ID":2485,"SourceStructureID":6118,"TargetStructureID":5503,"Label":"6118-5503 via Gap Junction from 108560 -> 108555","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108560,"TargetID":108555,"Directional":false}]},{"ID":2486,"SourceStructureID":6120,"TargetStructureID":5503,"Label":"6120-5503 via Gap Junction from 61135 -> 61134, 131424 -> 61139","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61135,"TargetID":61134,"Directional":false},{"SourceID":131424,"TargetID":61139,"Directional":false}]},{"ID":2487,"SourceStructureID":5503,"TargetStructureID":7951,"Label":"5503-7951 via BC Conventional Synapse from 108704 -> 108705","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":108704,"TargetID":108705,"Directional":false}]},{"ID":2488,"SourceStructureID":12897,"TargetStructureID":5503,"Label":"12897-5503 via Gap Junction from 24665 -> 52803, 24668 -> 20088, 24721 -> 24667, 24835 -> 20211, 24853 -> 24736, 24859 -> 24858, 61316 -> 61318, 108137 -> 24854, 110045 -> 54100, 110047 -> 110046, 110166 -> 110167, 113660 -> 113659, 113662 -> 113661","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24665,"TargetID":52803,"Directional":false},{"SourceID":24668,"TargetID":20088,"Directional":false},{"SourceID":24721,"TargetID":24667,"Directional":false},{"SourceID":24835,"TargetID":20211,"Directional":false},{"SourceID":24853,"TargetID":24736,"Directional":false},{"SourceID":24859,"TargetID":24858,"Directional":false},{"SourceID":61316,"TargetID":61318,"Directional":false},{"SourceID":108137,"TargetID":24854,"Directional":false},{"SourceID":110045,"TargetID":54100,"Directional":false},{"SourceID":110047,"TargetID":110046,"Directional":false},{"SourceID":110166,"TargetID":110167,"Directional":false},{"SourceID":113660,"TargetID":113659,"Directional":false},{"SourceID":113662,"TargetID":113661,"Directional":false}]},{"ID":2489,"SourceStructureID":87294,"TargetStructureID":5503,"Label":"87294-5503 via Adherens from 87296 -> 87297","Type":"Adherens","Directional":false,"Links":[{"SourceID":87296,"TargetID":87297,"Directional":false}]},{"ID":2490,"SourceStructureID":5503,"TargetStructureID":102795,"Label":"5503-102795 via Unknown from 110018 -> 110017","Type":"Unknown","Directional":false,"Links":[{"SourceID":110018,"TargetID":110017,"Directional":false}]},{"ID":2491,"SourceStructureID":5503,"TargetStructureID":107414,"Label":"5503-107414 via Adherens from 107428 -> 107427","Type":"Adherens","Directional":false,"Links":[{"SourceID":107428,"TargetID":107427,"Directional":false}]},{"ID":2492,"SourceStructureID":5503,"TargetStructureID":107508,"Label":"5503-107508 via Adherens from 60705 -> 107511","Type":"Adherens","Directional":false,"Links":[{"SourceID":60705,"TargetID":107511,"Directional":false}]},{"ID":2493,"SourceStructureID":107508,"TargetStructureID":5503,"Label":"107508-5503 via Unknown from 107524 -> 107523","Type":"Unknown","Directional":false,"Links":[{"SourceID":107524,"TargetID":107523,"Directional":false}]},{"ID":2494,"SourceStructureID":5503,"TargetStructureID":109693,"Label":"5503-109693 via Unknown from 109695 -> 109694","Type":"Unknown","Directional":false,"Links":[{"SourceID":109695,"TargetID":109694,"Directional":false}]},{"ID":2495,"SourceStructureID":5503,"TargetStructureID":109793,"Label":"5503-109793 via Unknown from 109792 -> 109796","Type":"Unknown","Directional":false,"Links":[{"SourceID":109792,"TargetID":109796,"Directional":false}]},{"ID":2496,"SourceStructureID":109858,"TargetStructureID":5503,"Label":"109858-5503 via Adherens from 109861 -> 109856","Type":"Adherens","Directional":false,"Links":[{"SourceID":109861,"TargetID":109856,"Directional":false}]},{"ID":2497,"SourceStructureID":109952,"TargetStructureID":5503,"Label":"109952-5503 via Gap Junction from 109954 -> 60683","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109954,"TargetID":60683,"Directional":false}]},{"ID":2498,"SourceStructureID":109997,"TargetStructureID":5503,"Label":"109997-5503 via Unknown from 109998 -> 109996","Type":"Unknown","Directional":false,"Links":[{"SourceID":109998,"TargetID":109996,"Directional":false}]},{"ID":2499,"SourceStructureID":110142,"TargetStructureID":5503,"Label":"110142-5503 via Unknown from 113667 -> 113666","Type":"Unknown","Directional":false,"Links":[{"SourceID":113667,"TargetID":113666,"Directional":false}]},{"ID":2500,"SourceStructureID":5503,"TargetStructureID":110232,"Label":"5503-110232 via Unknown from 110240 -> 110239","Type":"Unknown","Directional":false,"Links":[{"SourceID":110240,"TargetID":110239,"Directional":false}]},{"ID":2501,"SourceStructureID":110313,"TargetStructureID":5503,"Label":"110313-5503 via Gap Junction from 115798 -> 60704","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115798,"TargetID":60704,"Directional":false}]},{"ID":2502,"SourceStructureID":5503,"TargetStructureID":110477,"Label":"5503-110477 via Adherens from 110482 -> 110481","Type":"Adherens","Directional":false,"Links":[{"SourceID":110482,"TargetID":110481,"Directional":false}]},{"ID":2503,"SourceStructureID":5504,"TargetStructureID":87366,"Label":"5504-87366 via Adherens from 87370 -> 87369","Type":"Adherens","Directional":false,"Links":[{"SourceID":87370,"TargetID":87369,"Directional":false}]},{"ID":2504,"SourceStructureID":5504,"TargetStructureID":93514,"Label":"5504-93514 via Gap Junction from 93516 -> 93515","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93516,"TargetID":93515,"Directional":false}]},{"ID":2505,"SourceStructureID":5506,"TargetStructureID":28886,"Label":"5506-28886 via Gap Junction from 52343 -> 51403","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52343,"TargetID":51403,"Directional":false}]},{"ID":2506,"SourceStructureID":5515,"TargetStructureID":5507,"Label":"5515-5507 via Unknown from 119059 -> 119060","Type":"Unknown","Directional":false,"Links":[{"SourceID":119059,"TargetID":119060,"Directional":false}]},{"ID":2507,"SourceStructureID":6997,"TargetStructureID":5507,"Label":"6997-5507 via Adherens from 28386 -> 28385","Type":"Adherens","Directional":false,"Links":[{"SourceID":28386,"TargetID":28385,"Directional":false}]},{"ID":2508,"SourceStructureID":5516,"TargetStructureID":5509,"Label":"5516-5509 via Gap Junction from 120865 -> 120866","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120865,"TargetID":120866,"Directional":false}]},{"ID":2509,"SourceStructureID":5509,"TargetStructureID":5517,"Label":"5509-5517 via Adherens from 37526 -> 37525","Type":"Adherens","Directional":false,"Links":[{"SourceID":37526,"TargetID":37525,"Directional":false}]},{"ID":2510,"SourceStructureID":19203,"TargetStructureID":5509,"Label":"19203-5509 via Adherens from 135814 -> 135813","Type":"Adherens","Directional":false,"Links":[{"SourceID":135814,"TargetID":135813,"Directional":false}]},{"ID":2511,"SourceStructureID":5509,"TargetStructureID":19203,"Label":"5509-19203 via Unknown from 135812 -> 135811","Type":"Unknown","Directional":false,"Links":[{"SourceID":135812,"TargetID":135811,"Directional":false}]},{"ID":2512,"SourceStructureID":5922,"TargetStructureID":5511,"Label":"5922-5511 via Adherens from 37159 -> 37160","Type":"Adherens","Directional":false,"Links":[{"SourceID":37159,"TargetID":37160,"Directional":false}]},{"ID":2513,"SourceStructureID":5513,"TargetStructureID":5516,"Label":"5513-5516 via Gap Junction from 118224 -> 120867, 118249 -> 50072, 120868 -> 118245","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118224,"TargetID":120867,"Directional":false},{"SourceID":118249,"TargetID":50072,"Directional":false},{"SourceID":120868,"TargetID":118245,"Directional":false}]},{"ID":2514,"SourceStructureID":5513,"TargetStructureID":5517,"Label":"5513-5517 via Gap Junction from 118228 -> 118227","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118228,"TargetID":118227,"Directional":false}]},{"ID":2515,"SourceStructureID":5517,"TargetStructureID":5513,"Label":"5517-5513 via Unknown from 96063 -> 96064","Type":"Unknown","Directional":false,"Links":[{"SourceID":96063,"TargetID":96064,"Directional":false}]},{"ID":2516,"SourceStructureID":7024,"TargetStructureID":5513,"Label":"7024-5513 via Gap Junction from 40165 -> 40169","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40165,"TargetID":40169,"Directional":false}]},{"ID":2517,"SourceStructureID":20136,"TargetStructureID":5513,"Label":"20136-5513 via Gap Junction from 109412 -> 109413","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109412,"TargetID":109413,"Directional":false}]},{"ID":2518,"SourceStructureID":5513,"TargetStructureID":24303,"Label":"5513-24303 via Gap Junction from 38777 -> 38776","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38777,"TargetID":38776,"Directional":false}]},{"ID":2519,"SourceStructureID":5513,"TargetStructureID":26079,"Label":"5513-26079 via Gap Junction from 102966 -> 102965, 120627 -> 120628, 121199 -> 121198","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":102966,"TargetID":102965,"Directional":false},{"SourceID":120627,"TargetID":120628,"Directional":false},{"SourceID":121199,"TargetID":121198,"Directional":false}]},{"ID":2520,"SourceStructureID":5513,"TargetStructureID":26079,"Label":"5513-26079 via Unknown from 121232 -> 121231","Type":"Unknown","Directional":false,"Links":[{"SourceID":121232,"TargetID":121231,"Directional":false}]},{"ID":2521,"SourceStructureID":28886,"TargetStructureID":5513,"Label":"28886-5513 via Gap Junction from 118235 -> 118234","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118235,"TargetID":118234,"Directional":false}]},{"ID":2522,"SourceStructureID":5513,"TargetStructureID":46801,"Label":"5513-46801 via Gap Junction from 118252 -> 118254, 119747 -> 118247","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118252,"TargetID":118254,"Directional":false},{"SourceID":119747,"TargetID":118247,"Directional":false}]},{"ID":2523,"SourceStructureID":96069,"TargetStructureID":5513,"Label":"96069-5513 via Unknown from 96070 -> 96068","Type":"Unknown","Directional":false,"Links":[{"SourceID":96070,"TargetID":96068,"Directional":false}]},{"ID":2524,"SourceStructureID":5516,"TargetStructureID":5514,"Label":"5516-5514 via Gap Junction from 50037 -> 119724, 50790 -> 50789, 89300 -> 89299, 119719 -> 119714, 119722 -> 119721, 119727 -> 119726, 119745 -> 119743, 120863 -> 120864","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50037,"TargetID":119724,"Directional":false},{"SourceID":50790,"TargetID":50789,"Directional":false},{"SourceID":89300,"TargetID":89299,"Directional":false},{"SourceID":119719,"TargetID":119714,"Directional":false},{"SourceID":119722,"TargetID":119721,"Directional":false},{"SourceID":119727,"TargetID":119726,"Directional":false},{"SourceID":119745,"TargetID":119743,"Directional":false},{"SourceID":120863,"TargetID":120864,"Directional":false}]},{"ID":2525,"SourceStructureID":5514,"TargetStructureID":5568,"Label":"5514-5568 via Gap Junction from 50421 -> 49941, 50671 -> 49995, 50866 -> 49992, 62137 -> 62138, 62379 -> 62378, 121547 -> 121548, 121570 -> 121569, 121578 -> 121579","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50421,"TargetID":49941,"Directional":false},{"SourceID":50671,"TargetID":49995,"Directional":false},{"SourceID":50866,"TargetID":49992,"Directional":false},{"SourceID":62137,"TargetID":62138,"Directional":false},{"SourceID":62379,"TargetID":62378,"Directional":false},{"SourceID":121547,"TargetID":121548,"Directional":false},{"SourceID":121570,"TargetID":121569,"Directional":false},{"SourceID":121578,"TargetID":121579,"Directional":false}]},{"ID":2526,"SourceStructureID":19203,"TargetStructureID":5514,"Label":"19203-5514 via Gap Junction from 119699 -> 119691, 119712 -> 119711, 121566 -> 121565, 121601 -> 121609, 121639 -> 121640","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119699,"TargetID":119691,"Directional":false},{"SourceID":119712,"TargetID":119711,"Directional":false},{"SourceID":121566,"TargetID":121565,"Directional":false},{"SourceID":121601,"TargetID":121609,"Directional":false},{"SourceID":121639,"TargetID":121640,"Directional":false}]},{"ID":2527,"SourceStructureID":5515,"TargetStructureID":5515,"Label":"5515-5515 via Adherens from 119287 -> 119288, 119308 -> 119307","Type":"Adherens","Directional":false,"Links":[{"SourceID":119287,"TargetID":119288,"Directional":false},{"SourceID":119308,"TargetID":119307,"Directional":false}]},{"ID":2528,"SourceStructureID":5515,"TargetStructureID":5623,"Label":"5515-5623 via Gap Junction from 119263 -> 119264","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119263,"TargetID":119264,"Directional":false}]},{"ID":2529,"SourceStructureID":5515,"TargetStructureID":5623,"Label":"5515-5623 via Unknown from 119423 -> 119424","Type":"Unknown","Directional":false,"Links":[{"SourceID":119423,"TargetID":119424,"Directional":false}]},{"ID":2530,"SourceStructureID":5515,"TargetStructureID":6589,"Label":"5515-6589 via Adherens from 119273 -> 119272, 130627 -> 130626","Type":"Adherens","Directional":false,"Links":[{"SourceID":119273,"TargetID":119272,"Directional":false},{"SourceID":130627,"TargetID":130626,"Directional":false}]},{"ID":2531,"SourceStructureID":5515,"TargetStructureID":8037,"Label":"5515-8037 via Adherens from 130642 -> 130643","Type":"Adherens","Directional":false,"Links":[{"SourceID":130642,"TargetID":130643,"Directional":false}]},{"ID":2532,"SourceStructureID":8037,"TargetStructureID":5515,"Label":"8037-5515 via Gap Junction from 11370 -> 11366, 56515 -> 56506, 130640 -> 130641","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":11370,"TargetID":11366,"Directional":false},{"SourceID":56515,"TargetID":56506,"Directional":false},{"SourceID":130640,"TargetID":130641,"Directional":false}]},{"ID":2533,"SourceStructureID":8038,"TargetStructureID":5515,"Label":"8038-5515 via Gap Junction from 119666 -> 119665","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119666,"TargetID":119665,"Directional":false}]},{"ID":2534,"SourceStructureID":136786,"TargetStructureID":5515,"Label":"136786-5515 via Gap Junction from 136799 -> 136798","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136799,"TargetID":136798,"Directional":false}]},{"ID":2535,"SourceStructureID":136796,"TargetStructureID":5515,"Label":"136796-5515 via Gap Junction from 136797 -> 56504","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136797,"TargetID":56504,"Directional":false}]},{"ID":2536,"SourceStructureID":5515,"TargetStructureID":136817,"Label":"5515-136817 via Gap Junction from 56509 -> 136818","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56509,"TargetID":136818,"Directional":false}]},{"ID":2537,"SourceStructureID":136819,"TargetStructureID":5515,"Label":"136819-5515 via Gap Junction from 136820 -> 56511","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136820,"TargetID":56511,"Directional":false}]},{"ID":2538,"SourceStructureID":5515,"TargetStructureID":136824,"Label":"5515-136824 via Gap Junction from 119419 -> 136825","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119419,"TargetID":136825,"Directional":false}]},{"ID":2539,"SourceStructureID":136826,"TargetStructureID":5515,"Label":"136826-5515 via Gap Junction from 136829 -> 119448","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136829,"TargetID":119448,"Directional":false}]},{"ID":2540,"SourceStructureID":5516,"TargetStructureID":5516,"Label":"5516-5516 via Gap Junction from 148199 -> 148198","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":148199,"TargetID":148198,"Directional":false}]},{"ID":2541,"SourceStructureID":5517,"TargetStructureID":5516,"Label":"5517-5516 via Gap Junction from 96114 -> 96115","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96114,"TargetID":96115,"Directional":false}]},{"ID":2542,"SourceStructureID":5516,"TargetStructureID":7024,"Label":"5516-7024 via Adherens from 93838 -> 93837, 113763 -> 113762, 148208 -> 148207","Type":"Adherens","Directional":false,"Links":[{"SourceID":93838,"TargetID":93837,"Directional":false},{"SourceID":113763,"TargetID":113762,"Directional":false},{"SourceID":148208,"TargetID":148207,"Directional":false}]},{"ID":2543,"SourceStructureID":7024,"TargetStructureID":5516,"Label":"7024-5516 via Gap Junction from 63394 -> 50097, 93828 -> 93829, 93830 -> 93831, 93840 -> 93839, 93843 -> 93842, 93877 -> 93876, 114156 -> 120862, 114195 -> 114196, 120845 -> 115085, 148201 -> 114105, 148220 -> 148219, 148230 -> 148229","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63394,"TargetID":50097,"Directional":false},{"SourceID":93828,"TargetID":93829,"Directional":false},{"SourceID":93830,"TargetID":93831,"Directional":false},{"SourceID":93840,"TargetID":93839,"Directional":false},{"SourceID":93843,"TargetID":93842,"Directional":false},{"SourceID":93877,"TargetID":93876,"Directional":false},{"SourceID":114156,"TargetID":120862,"Directional":false},{"SourceID":114195,"TargetID":114196,"Directional":false},{"SourceID":120845,"TargetID":115085,"Directional":false},{"SourceID":148201,"TargetID":114105,"Directional":false},{"SourceID":148220,"TargetID":148219,"Directional":false},{"SourceID":148230,"TargetID":148229,"Directional":false}]},{"ID":2544,"SourceStructureID":20136,"TargetStructureID":5516,"Label":"20136-5516 via Adherens from 135780 -> 135781","Type":"Adherens","Directional":false,"Links":[{"SourceID":135780,"TargetID":135781,"Directional":false}]},{"ID":2545,"SourceStructureID":20136,"TargetStructureID":5516,"Label":"20136-5516 via Gap Junction from 110146 -> 110434","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":110146,"TargetID":110434,"Directional":false}]},{"ID":2546,"SourceStructureID":5516,"TargetStructureID":46388,"Label":"5516-46388 via Gap Junction from 121441 -> 121440","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121441,"TargetID":121440,"Directional":false}]},{"ID":2547,"SourceStructureID":50449,"TargetStructureID":5516,"Label":"50449-5516 via Gap Junction from 50638 -> 50639","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50638,"TargetID":50639,"Directional":false}]},{"ID":2548,"SourceStructureID":5516,"TargetStructureID":96217,"Label":"5516-96217 via Unknown from 120487 -> 120488","Type":"Unknown","Directional":false,"Links":[{"SourceID":120487,"TargetID":120488,"Directional":false}]},{"ID":2549,"SourceStructureID":5517,"TargetStructureID":5561,"Label":"5517-5561 via Gap Junction from 49476 -> 49477, 49478 -> 49483, 49499 -> 49498","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49476,"TargetID":49477,"Directional":false},{"SourceID":49478,"TargetID":49483,"Directional":false},{"SourceID":49499,"TargetID":49498,"Directional":false}]},{"ID":2550,"SourceStructureID":6912,"TargetStructureID":5517,"Label":"6912-5517 via Unknown from 96067 -> 96066","Type":"Unknown","Directional":false,"Links":[{"SourceID":96067,"TargetID":96066,"Directional":false}]},{"ID":2551,"SourceStructureID":8037,"TargetStructureID":5517,"Label":"8037-5517 via Gap Junction from 10870 -> 96119, 96120 -> 96118","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10870,"TargetID":96119,"Directional":false},{"SourceID":96120,"TargetID":96118,"Directional":false}]},{"ID":2552,"SourceStructureID":5517,"TargetStructureID":18693,"Label":"5517-18693 via Gap Junction from 49502 -> 49635","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49502,"TargetID":49635,"Directional":false}]},{"ID":2553,"SourceStructureID":19203,"TargetStructureID":5517,"Label":"19203-5517 via Gap Junction from 38537 -> 38536, 49427 -> 49633, 120872 -> 120873, 121626 -> 121627, 135808 -> 135807","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38537,"TargetID":38536,"Directional":false},{"SourceID":49427,"TargetID":49633,"Directional":false},{"SourceID":120872,"TargetID":120873,"Directional":false},{"SourceID":121626,"TargetID":121627,"Directional":false},{"SourceID":135808,"TargetID":135807,"Directional":false}]},{"ID":2554,"SourceStructureID":19203,"TargetStructureID":5517,"Label":"19203-5517 via Unknown from 96097 -> 96096","Type":"Unknown","Directional":false,"Links":[{"SourceID":96097,"TargetID":96096,"Directional":false}]},{"ID":2555,"SourceStructureID":20136,"TargetStructureID":5517,"Label":"20136-5517 via Adherens from 133994 -> 133993, 135803 -> 135804","Type":"Adherens","Directional":false,"Links":[{"SourceID":133994,"TargetID":133993,"Directional":false},{"SourceID":135803,"TargetID":135804,"Directional":false}]},{"ID":2556,"SourceStructureID":20136,"TargetStructureID":5517,"Label":"20136-5517 via Gap Junction from 29147 -> 29148, 109361 -> 109362, 109720 -> 109721, 109786 -> 109787, 133991 -> 133992, 135786 -> 135784","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29147,"TargetID":29148,"Directional":false},{"SourceID":109361,"TargetID":109362,"Directional":false},{"SourceID":109720,"TargetID":109721,"Directional":false},{"SourceID":109786,"TargetID":109787,"Directional":false},{"SourceID":133991,"TargetID":133992,"Directional":false},{"SourceID":135786,"TargetID":135784,"Directional":false}]},{"ID":2557,"SourceStructureID":5517,"TargetStructureID":26079,"Label":"5517-26079 via Gap Junction from 49298 -> 49299, 96056 -> 96055","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49298,"TargetID":49299,"Directional":false},{"SourceID":96056,"TargetID":96055,"Directional":false}]},{"ID":2558,"SourceStructureID":26079,"TargetStructureID":5517,"Label":"26079-5517 via Unknown from 96062 -> 96061","Type":"Unknown","Directional":false,"Links":[{"SourceID":96062,"TargetID":96061,"Directional":false}]},{"ID":2559,"SourceStructureID":96072,"TargetStructureID":5517,"Label":"96072-5517 via Adherens from 96073 -> 96071","Type":"Adherens","Directional":false,"Links":[{"SourceID":96073,"TargetID":96071,"Directional":false}]},{"ID":2560,"SourceStructureID":96083,"TargetStructureID":5517,"Label":"96083-5517 via Gap Junction from 96084 -> 96082","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96084,"TargetID":96082,"Directional":false}]},{"ID":2561,"SourceStructureID":96093,"TargetStructureID":5517,"Label":"96093-5517 via Unknown from 96094 -> 96092","Type":"Unknown","Directional":false,"Links":[{"SourceID":96094,"TargetID":96092,"Directional":false}]},{"ID":2562,"SourceStructureID":5517,"TargetStructureID":96102,"Label":"5517-96102 via Gap Junction from 96108 -> 96107, 96173 -> 96172, 96191 -> 96190, 135783 -> 135782","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96108,"TargetID":96107,"Directional":false},{"SourceID":96173,"TargetID":96172,"Directional":false},{"SourceID":96191,"TargetID":96190,"Directional":false},{"SourceID":135783,"TargetID":135782,"Directional":false}]},{"ID":2563,"SourceStructureID":5517,"TargetStructureID":96102,"Label":"5517-96102 via Unknown from 96101 -> 96103, 135791 -> 135790","Type":"Unknown","Directional":false,"Links":[{"SourceID":96101,"TargetID":96103,"Directional":false},{"SourceID":135791,"TargetID":135790,"Directional":false}]},{"ID":2564,"SourceStructureID":96122,"TargetStructureID":5517,"Label":"96122-5517 via Gap Junction from 96123 -> 96121","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96123,"TargetID":96121,"Directional":false}]},{"ID":2565,"SourceStructureID":96347,"TargetStructureID":5517,"Label":"96347-5517 via Gap Junction from 96348 -> 96346","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96348,"TargetID":96346,"Directional":false}]},{"ID":2566,"SourceStructureID":96351,"TargetStructureID":5517,"Label":"96351-5517 via Unknown from 96352 -> 96350","Type":"Unknown","Directional":false,"Links":[{"SourceID":96352,"TargetID":96350,"Directional":false}]},{"ID":2567,"SourceStructureID":5519,"TargetStructureID":5566,"Label":"5519-5566 via Adherens from 59197 -> 59198","Type":"Adherens","Directional":false,"Links":[{"SourceID":59197,"TargetID":59198,"Directional":false}]},{"ID":2568,"SourceStructureID":5566,"TargetStructureID":5519,"Label":"5566-5519 via Gap Junction from 33670 -> 33671, 59203 -> 59202, 59319 -> 59320","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":33670,"TargetID":33671,"Directional":false},{"SourceID":59203,"TargetID":59202,"Directional":false},{"SourceID":59319,"TargetID":59320,"Directional":false}]},{"ID":2569,"SourceStructureID":59163,"TargetStructureID":5519,"Label":"59163-5519 via Gap Junction from 59164 -> 59162","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59164,"TargetID":59162,"Directional":false}]},{"ID":2570,"SourceStructureID":5519,"TargetStructureID":59208,"Label":"5519-59208 via Gap Junction from 59207 -> 59209","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59207,"TargetID":59209,"Directional":false}]},{"ID":2571,"SourceStructureID":5519,"TargetStructureID":59211,"Label":"5519-59211 via Gap Junction from 59210 -> 59212","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59210,"TargetID":59212,"Directional":false}]},{"ID":2572,"SourceStructureID":5729,"TargetStructureID":5520,"Label":"5729-5520 via Gap Junction from 60391 -> 60383, 93223 -> 93221","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60391,"TargetID":60383,"Directional":false},{"SourceID":93223,"TargetID":93221,"Directional":false}]},{"ID":2573,"SourceStructureID":7040,"TargetStructureID":5520,"Label":"7040-5520 via Gap Junction from 93708 -> 61048, 93711 -> 93714, 97909 -> 97910, 115360 -> 93232, 119748 -> 119749","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93708,"TargetID":61048,"Directional":false},{"SourceID":93711,"TargetID":93714,"Directional":false},{"SourceID":97909,"TargetID":97910,"Directional":false},{"SourceID":115360,"TargetID":93232,"Directional":false},{"SourceID":119748,"TargetID":119749,"Directional":false}]},{"ID":2574,"SourceStructureID":7040,"TargetStructureID":5520,"Label":"7040-5520 via Unknown from 93729 -> 37951","Type":"Unknown","Directional":false,"Links":[{"SourceID":93729,"TargetID":37951,"Directional":false}]},{"ID":2575,"SourceStructureID":7050,"TargetStructureID":5520,"Label":"7050-5520 via Gap Junction from 24879 -> 97908, 24892 -> 24891, 60373 -> 60374, 60757 -> 24582, 61008 -> 10067, 61028 -> 61027, 105806 -> 105804, 120822 -> 24876","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24879,"TargetID":97908,"Directional":false},{"SourceID":24892,"TargetID":24891,"Directional":false},{"SourceID":60373,"TargetID":60374,"Directional":false},{"SourceID":60757,"TargetID":24582,"Directional":false},{"SourceID":61008,"TargetID":10067,"Directional":false},{"SourceID":61028,"TargetID":61027,"Directional":false},{"SourceID":105806,"TargetID":105804,"Directional":false},{"SourceID":120822,"TargetID":24876,"Directional":false}]},{"ID":2576,"SourceStructureID":5520,"TargetStructureID":12897,"Label":"5520-12897 via Gap Junction from 60606 -> 24723, 119754 -> 60607","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60606,"TargetID":24723,"Directional":false},{"SourceID":119754,"TargetID":60607,"Directional":false}]},{"ID":2577,"SourceStructureID":60370,"TargetStructureID":5520,"Label":"60370-5520 via Gap Junction from 60371 -> 37937","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60371,"TargetID":37937,"Directional":false}]},{"ID":2578,"SourceStructureID":60397,"TargetStructureID":5520,"Label":"60397-5520 via Gap Junction from 60398 -> 60396","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60398,"TargetID":60396,"Directional":false}]},{"ID":2579,"SourceStructureID":64939,"TargetStructureID":5520,"Label":"64939-5520 via Gap Junction from 93226 -> 93225, 93713 -> 93712","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93226,"TargetID":93225,"Directional":false},{"SourceID":93713,"TargetID":93712,"Directional":false}]},{"ID":2580,"SourceStructureID":5522,"TargetStructureID":5562,"Label":"5522-5562 via Adherens from 63127 -> 63126, 80269 -> 80270, 84527 -> 84528","Type":"Adherens","Directional":false,"Links":[{"SourceID":63127,"TargetID":63126,"Directional":false},{"SourceID":80269,"TargetID":80270,"Directional":false},{"SourceID":84527,"TargetID":84528,"Directional":false}]},{"ID":2581,"SourceStructureID":5562,"TargetStructureID":5522,"Label":"5562-5522 via Gap Junction from 40266 -> 63131, 63124 -> 63087, 63321 -> 43496, 134643 -> 134642","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40266,"TargetID":63131,"Directional":false},{"SourceID":63124,"TargetID":63087,"Directional":false},{"SourceID":63321,"TargetID":43496,"Directional":false},{"SourceID":134643,"TargetID":134642,"Directional":false}]},{"ID":2582,"SourceStructureID":7050,"TargetStructureID":5522,"Label":"7050-5522 via Gap Junction from 63163 -> 63162","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63163,"TargetID":63162,"Directional":false}]},{"ID":2583,"SourceStructureID":8038,"TargetStructureID":5522,"Label":"8038-5522 via Gap Junction from 113050 -> 64180","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113050,"TargetID":64180,"Directional":false}]},{"ID":2584,"SourceStructureID":18282,"TargetStructureID":5522,"Label":"18282-5522 via Adherens from 63111 -> 63110","Type":"Adherens","Directional":false,"Links":[{"SourceID":63111,"TargetID":63110,"Directional":false}]},{"ID":2585,"SourceStructureID":5522,"TargetStructureID":32804,"Label":"5522-32804 via Adherens from 64132 -> 64133, 64225 -> 64226, 64260 -> 64261, 64262 -> 64265, 64264 -> 64263, 64306 -> 64305, 64307 -> 64308","Type":"Adherens","Directional":false,"Links":[{"SourceID":64132,"TargetID":64133,"Directional":false},{"SourceID":64225,"TargetID":64226,"Directional":false},{"SourceID":64260,"TargetID":64261,"Directional":false},{"SourceID":64262,"TargetID":64265,"Directional":false},{"SourceID":64264,"TargetID":64263,"Directional":false},{"SourceID":64306,"TargetID":64305,"Directional":false},{"SourceID":64307,"TargetID":64308,"Directional":false}]},{"ID":2586,"SourceStructureID":5528,"TargetStructureID":5528,"Label":"5528-5528 via Gap Junction from 135710 -> 135709","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135710,"TargetID":135709,"Directional":false}]},{"ID":2587,"SourceStructureID":5528,"TargetStructureID":5528,"Label":"5528-5528 via Unknown from 94025 -> 94026","Type":"Unknown","Directional":false,"Links":[{"SourceID":94025,"TargetID":94026,"Directional":false}]},{"ID":2588,"SourceStructureID":5530,"TargetStructureID":5528,"Label":"5530-5528 via Gap Junction from 75888 -> 82614, 81192 -> 81191","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":75888,"TargetID":82614,"Directional":false},{"SourceID":81192,"TargetID":81191,"Directional":false}]},{"ID":2589,"SourceStructureID":5531,"TargetStructureID":5528,"Label":"5531-5528 via Adherens from 96154 -> 96155, 97241 -> 97242, 147406 -> 147405, 147443 -> 147444","Type":"Adherens","Directional":false,"Links":[{"SourceID":96154,"TargetID":96155,"Directional":false},{"SourceID":97241,"TargetID":97242,"Directional":false},{"SourceID":147406,"TargetID":147405,"Directional":false},{"SourceID":147443,"TargetID":147444,"Directional":false}]},{"ID":2590,"SourceStructureID":5531,"TargetStructureID":5528,"Label":"5531-5528 via Gap Junction from 54650 -> 8257, 54683 -> 54682, 54720 -> 54721, 54768 -> 54769, 94845 -> 94846, 95110 -> 95109, 107143 -> 107144, 108006 -> 108005, 112471 -> 93732, 113954 -> 113953, 119238 -> 119237, 131262 -> 131261, 131274 -> 131273, 133923 -> 133922, 133924 -> 133925, 133926 -> 133927, 147473 -> 147472","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54650,"TargetID":8257,"Directional":false},{"SourceID":54683,"TargetID":54682,"Directional":false},{"SourceID":54720,"TargetID":54721,"Directional":false},{"SourceID":54768,"TargetID":54769,"Directional":false},{"SourceID":94845,"TargetID":94846,"Directional":false},{"SourceID":95110,"TargetID":95109,"Directional":false},{"SourceID":107143,"TargetID":107144,"Directional":false},{"SourceID":108006,"TargetID":108005,"Directional":false},{"SourceID":112471,"TargetID":93732,"Directional":false},{"SourceID":113954,"TargetID":113953,"Directional":false},{"SourceID":119238,"TargetID":119237,"Directional":false},{"SourceID":131262,"TargetID":131261,"Directional":false},{"SourceID":131274,"TargetID":131273,"Directional":false},{"SourceID":133923,"TargetID":133922,"Directional":false},{"SourceID":133924,"TargetID":133925,"Directional":false},{"SourceID":133926,"TargetID":133927,"Directional":false},{"SourceID":147473,"TargetID":147472,"Directional":false}]},{"ID":2591,"SourceStructureID":5534,"TargetStructureID":5528,"Label":"5534-5528 via Gap Junction from 54418 -> 94655","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54418,"TargetID":94655,"Directional":false}]},{"ID":2592,"SourceStructureID":5537,"TargetStructureID":5528,"Label":"5537-5528 via Gap Junction from 94701 -> 94682","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94701,"TargetID":94682,"Directional":false}]},{"ID":2593,"SourceStructureID":5528,"TargetStructureID":5860,"Label":"5528-5860 via Adherens from 97287 -> 97285","Type":"Adherens","Directional":false,"Links":[{"SourceID":97287,"TargetID":97285,"Directional":false}]},{"ID":2594,"SourceStructureID":5528,"TargetStructureID":5860,"Label":"5528-5860 via Gap Junction from 8290 -> 8249, 8778 -> 135718, 54725 -> 54724, 94830 -> 93722","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":8290,"TargetID":8249,"Directional":false},{"SourceID":8778,"TargetID":135718,"Directional":false},{"SourceID":54725,"TargetID":54724,"Directional":false},{"SourceID":94830,"TargetID":93722,"Directional":false}]},{"ID":2595,"SourceStructureID":5528,"TargetStructureID":5860,"Label":"5528-5860 via Unknown from 97316 -> 97317","Type":"Unknown","Directional":false,"Links":[{"SourceID":97316,"TargetID":97317,"Directional":false}]},{"ID":2596,"SourceStructureID":5528,"TargetStructureID":6129,"Label":"5528-6129 via Adherens from 94294 -> 94295, 94411 -> 94412","Type":"Adherens","Directional":false,"Links":[{"SourceID":94294,"TargetID":94295,"Directional":false},{"SourceID":94411,"TargetID":94412,"Directional":false}]},{"ID":2597,"SourceStructureID":5528,"TargetStructureID":6129,"Label":"5528-6129 via Unknown from 93591 -> 93592, 93954 -> 93953, 94143 -> 94144, 94146 -> 94145, 94292 -> 94293, 94329 -> 94330, 94378 -> 94379, 95146 -> 95147, 95181 -> 95182","Type":"Unknown","Directional":false,"Links":[{"SourceID":93591,"TargetID":93592,"Directional":false},{"SourceID":93954,"TargetID":93953,"Directional":false},{"SourceID":94143,"TargetID":94144,"Directional":false},{"SourceID":94146,"TargetID":94145,"Directional":false},{"SourceID":94292,"TargetID":94293,"Directional":false},{"SourceID":94329,"TargetID":94330,"Directional":false},{"SourceID":94378,"TargetID":94379,"Directional":false},{"SourceID":95146,"TargetID":95147,"Directional":false},{"SourceID":95181,"TargetID":95182,"Directional":false}]},{"ID":2598,"SourceStructureID":7225,"TargetStructureID":5528,"Label":"7225-5528 via Gap Junction from 10026 -> 55031, 34318 -> 10028, 94494 -> 94493","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10026,"TargetID":55031,"Directional":false},{"SourceID":34318,"TargetID":10028,"Directional":false},{"SourceID":94494,"TargetID":94493,"Directional":false}]},{"ID":2599,"SourceStructureID":7564,"TargetStructureID":5528,"Label":"7564-5528 via Gap Junction from 84673 -> 84671","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84673,"TargetID":84671,"Directional":false}]},{"ID":2600,"SourceStructureID":5528,"TargetStructureID":7576,"Label":"5528-7576 via Adherens from 54885 -> 54886, 55029 -> 55028, 55046 -> 55045, 55095 -> 55096, 55929 -> 55928, 96847 -> 96846","Type":"Adherens","Directional":false,"Links":[{"SourceID":54885,"TargetID":54886,"Directional":false},{"SourceID":55029,"TargetID":55028,"Directional":false},{"SourceID":55046,"TargetID":55045,"Directional":false},{"SourceID":55095,"TargetID":55096,"Directional":false},{"SourceID":55929,"TargetID":55928,"Directional":false},{"SourceID":96847,"TargetID":96846,"Directional":false}]},{"ID":2601,"SourceStructureID":7576,"TargetStructureID":5528,"Label":"7576-5528 via Gap Junction from 54742 -> 54743, 54750 -> 54751, 54854 -> 54853, 55018 -> 55017, 55027 -> 55026, 55032 -> 55033, 55067 -> 55068, 92623 -> 92622","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54742,"TargetID":54743,"Directional":false},{"SourceID":54750,"TargetID":54751,"Directional":false},{"SourceID":54854,"TargetID":54853,"Directional":false},{"SourceID":55018,"TargetID":55017,"Directional":false},{"SourceID":55027,"TargetID":55026,"Directional":false},{"SourceID":55032,"TargetID":55033,"Directional":false},{"SourceID":55067,"TargetID":55068,"Directional":false},{"SourceID":92623,"TargetID":92622,"Directional":false}]},{"ID":2602,"SourceStructureID":5528,"TargetStructureID":7576,"Label":"5528-7576 via Unknown from 94407 -> 94408, 94535 -> 94534, 95057 -> 95056, 95461 -> 95460","Type":"Unknown","Directional":false,"Links":[{"SourceID":94407,"TargetID":94408,"Directional":false},{"SourceID":94535,"TargetID":94534,"Directional":false},{"SourceID":95057,"TargetID":95056,"Directional":false},{"SourceID":95461,"TargetID":95460,"Directional":false}]},{"ID":2603,"SourceStructureID":5528,"TargetStructureID":7594,"Label":"5528-7594 via Unknown from 95185 -> 95186","Type":"Unknown","Directional":false,"Links":[{"SourceID":95185,"TargetID":95186,"Directional":false}]},{"ID":2604,"SourceStructureID":25293,"TargetStructureID":5528,"Label":"25293-5528 via Adherens from 95656 -> 95655","Type":"Adherens","Directional":false,"Links":[{"SourceID":95656,"TargetID":95655,"Directional":false}]},{"ID":2605,"SourceStructureID":5528,"TargetStructureID":33217,"Label":"5528-33217 via Unknown from 94192 -> 94193","Type":"Unknown","Directional":false,"Links":[{"SourceID":94192,"TargetID":94193,"Directional":false}]},{"ID":2606,"SourceStructureID":5528,"TargetStructureID":43716,"Label":"5528-43716 via Adherens from 95170 -> 95180","Type":"Adherens","Directional":false,"Links":[{"SourceID":95170,"TargetID":95180,"Directional":false}]},{"ID":2607,"SourceStructureID":64414,"TargetStructureID":5528,"Label":"64414-5528 via Unknown from 93973 -> 93974","Type":"Unknown","Directional":false,"Links":[{"SourceID":93973,"TargetID":93974,"Directional":false}]},{"ID":2608,"SourceStructureID":68785,"TargetStructureID":5528,"Label":"68785-5528 via Adherens from 95129 -> 95130","Type":"Adherens","Directional":false,"Links":[{"SourceID":95129,"TargetID":95130,"Directional":false}]},{"ID":2609,"SourceStructureID":5528,"TargetStructureID":68793,"Label":"5528-68793 via Unknown from 95088 -> 95089","Type":"Unknown","Directional":false,"Links":[{"SourceID":95088,"TargetID":95089,"Directional":false}]},{"ID":2610,"SourceStructureID":82832,"TargetStructureID":5528,"Label":"82832-5528 via Adherens from 96264 -> 96265","Type":"Adherens","Directional":false,"Links":[{"SourceID":96264,"TargetID":96265,"Directional":false}]},{"ID":2611,"SourceStructureID":91376,"TargetStructureID":5528,"Label":"91376-5528 via Unknown from 133947 -> 95646","Type":"Unknown","Directional":false,"Links":[{"SourceID":133947,"TargetID":95646,"Directional":false}]},{"ID":2612,"SourceStructureID":5528,"TargetStructureID":93557,"Label":"5528-93557 via Unknown from 93560 -> 93561","Type":"Unknown","Directional":false,"Links":[{"SourceID":93560,"TargetID":93561,"Directional":false}]},{"ID":2613,"SourceStructureID":93563,"TargetStructureID":5528,"Label":"93563-5528 via Adherens from 93564 -> 93562","Type":"Adherens","Directional":false,"Links":[{"SourceID":93564,"TargetID":93562,"Directional":false}]},{"ID":2614,"SourceStructureID":5528,"TargetStructureID":93961,"Label":"5528-93961 via Unknown from 93960 -> 93963","Type":"Unknown","Directional":false,"Links":[{"SourceID":93960,"TargetID":93963,"Directional":false}]},{"ID":2615,"SourceStructureID":93966,"TargetStructureID":5528,"Label":"93966-5528 via Adherens from 93971 -> 93972","Type":"Adherens","Directional":false,"Links":[{"SourceID":93971,"TargetID":93972,"Directional":false}]},{"ID":2616,"SourceStructureID":5528,"TargetStructureID":93987,"Label":"5528-93987 via Gap Junction from 93584 -> 94016, 93989 -> 93990, 94151 -> 94152, 94174 -> 94173","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93584,"TargetID":94016,"Directional":false},{"SourceID":93989,"TargetID":93990,"Directional":false},{"SourceID":94151,"TargetID":94152,"Directional":false},{"SourceID":94174,"TargetID":94173,"Directional":false}]},{"ID":2617,"SourceStructureID":5528,"TargetStructureID":94012,"Label":"5528-94012 via Unknown from 93588 -> 94013","Type":"Unknown","Directional":false,"Links":[{"SourceID":93588,"TargetID":94013,"Directional":false}]},{"ID":2618,"SourceStructureID":5528,"TargetStructureID":94018,"Label":"5528-94018 via Adherens from 93586 -> 94019","Type":"Adherens","Directional":false,"Links":[{"SourceID":93586,"TargetID":94019,"Directional":false}]},{"ID":2619,"SourceStructureID":94027,"TargetStructureID":5528,"Label":"94027-5528 via Adherens from 94028 -> 93602","Type":"Adherens","Directional":false,"Links":[{"SourceID":94028,"TargetID":93602,"Directional":false}]},{"ID":2620,"SourceStructureID":5528,"TargetStructureID":94046,"Label":"5528-94046 via Unknown from 94121 -> 94122","Type":"Unknown","Directional":false,"Links":[{"SourceID":94121,"TargetID":94122,"Directional":false}]},{"ID":2621,"SourceStructureID":94130,"TargetStructureID":5528,"Label":"94130-5528 via Unknown from 94131 -> 94129","Type":"Unknown","Directional":false,"Links":[{"SourceID":94131,"TargetID":94129,"Directional":false}]},{"ID":2622,"SourceStructureID":5528,"TargetStructureID":94164,"Label":"5528-94164 via Unknown from 94163 -> 94364","Type":"Unknown","Directional":false,"Links":[{"SourceID":94163,"TargetID":94364,"Directional":false}]},{"ID":2623,"SourceStructureID":94165,"TargetStructureID":5528,"Label":"94165-5528 via Adherens from 94166 -> 94167","Type":"Adherens","Directional":false,"Links":[{"SourceID":94166,"TargetID":94167,"Directional":false}]},{"ID":2624,"SourceStructureID":94168,"TargetStructureID":5528,"Label":"94168-5528 via Unknown from 94170 -> 94169","Type":"Unknown","Directional":false,"Links":[{"SourceID":94170,"TargetID":94169,"Directional":false}]},{"ID":2625,"SourceStructureID":5528,"TargetStructureID":94178,"Label":"5528-94178 via Adherens from 94181 -> 94183","Type":"Adherens","Directional":false,"Links":[{"SourceID":94181,"TargetID":94183,"Directional":false}]},{"ID":2626,"SourceStructureID":94184,"TargetStructureID":5528,"Label":"94184-5528 via Adherens from 94185 -> 94186","Type":"Adherens","Directional":false,"Links":[{"SourceID":94185,"TargetID":94186,"Directional":false}]},{"ID":2627,"SourceStructureID":5528,"TargetStructureID":94184,"Label":"5528-94184 via Unknown from 94187 -> 94188","Type":"Unknown","Directional":false,"Links":[{"SourceID":94187,"TargetID":94188,"Directional":false}]},{"ID":2628,"SourceStructureID":5528,"TargetStructureID":94189,"Label":"5528-94189 via Unknown from 94190 -> 94191","Type":"Unknown","Directional":false,"Links":[{"SourceID":94190,"TargetID":94191,"Directional":false}]},{"ID":2629,"SourceStructureID":94194,"TargetStructureID":5528,"Label":"94194-5528 via Unknown from 94197 -> 94196","Type":"Unknown","Directional":false,"Links":[{"SourceID":94197,"TargetID":94196,"Directional":false}]},{"ID":2630,"SourceStructureID":94251,"TargetStructureID":5528,"Label":"94251-5528 via Unknown from 94254 -> 94196","Type":"Unknown","Directional":false,"Links":[{"SourceID":94254,"TargetID":94196,"Directional":false}]},{"ID":2631,"SourceStructureID":5528,"TargetStructureID":94270,"Label":"5528-94270 via Adherens from 94272 -> 94271","Type":"Adherens","Directional":false,"Links":[{"SourceID":94272,"TargetID":94271,"Directional":false}]},{"ID":2632,"SourceStructureID":94303,"TargetStructureID":5528,"Label":"94303-5528 via Adherens from 94306 -> 94307","Type":"Adherens","Directional":false,"Links":[{"SourceID":94306,"TargetID":94307,"Directional":false}]},{"ID":2633,"SourceStructureID":94312,"TargetStructureID":5528,"Label":"94312-5528 via Adherens from 94317 -> 94316, 94318 -> 94319","Type":"Adherens","Directional":false,"Links":[{"SourceID":94317,"TargetID":94316,"Directional":false},{"SourceID":94318,"TargetID":94319,"Directional":false}]},{"ID":2634,"SourceStructureID":94323,"TargetStructureID":5528,"Label":"94323-5528 via Gap Junction from 94324 -> 94325","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":94324,"TargetID":94325,"Directional":false}]},{"ID":2635,"SourceStructureID":94326,"TargetStructureID":5528,"Label":"94326-5528 via Adherens from 94327 -> 94328","Type":"Adherens","Directional":false,"Links":[{"SourceID":94327,"TargetID":94328,"Directional":false}]},{"ID":2636,"SourceStructureID":5528,"TargetStructureID":94344,"Label":"5528-94344 via Adherens from 94343 -> 94345, 94383 -> 94384","Type":"Adherens","Directional":false,"Links":[{"SourceID":94343,"TargetID":94345,"Directional":false},{"SourceID":94383,"TargetID":94384,"Directional":false}]},{"ID":2637,"SourceStructureID":94349,"TargetStructureID":5528,"Label":"94349-5528 via Adherens from 94350 -> 94351","Type":"Adherens","Directional":false,"Links":[{"SourceID":94350,"TargetID":94351,"Directional":false}]},{"ID":2638,"SourceStructureID":94396,"TargetStructureID":5528,"Label":"94396-5528 via Unknown from 94397 -> 94398","Type":"Unknown","Directional":false,"Links":[{"SourceID":94397,"TargetID":94398,"Directional":false}]},{"ID":2639,"SourceStructureID":94482,"TargetStructureID":5528,"Label":"94482-5528 via Adherens from 94488 -> 94489","Type":"Adherens","Directional":false,"Links":[{"SourceID":94488,"TargetID":94489,"Directional":false}]},{"ID":2640,"SourceStructureID":5528,"TargetStructureID":94497,"Label":"5528-94497 via Adherens from 94498 -> 94499","Type":"Adherens","Directional":false,"Links":[{"SourceID":94498,"TargetID":94499,"Directional":false}]},{"ID":2641,"SourceStructureID":5528,"TargetStructureID":94531,"Label":"5528-94531 via Unknown from 94532 -> 94533","Type":"Unknown","Directional":false,"Links":[{"SourceID":94532,"TargetID":94533,"Directional":false}]},{"ID":2642,"SourceStructureID":94646,"TargetStructureID":5528,"Label":"94646-5528 via Unknown from 94647 -> 94648","Type":"Unknown","Directional":false,"Links":[{"SourceID":94647,"TargetID":94648,"Directional":false}]},{"ID":2643,"SourceStructureID":5528,"TargetStructureID":94675,"Label":"5528-94675 via Unknown from 94676 -> 94678","Type":"Unknown","Directional":false,"Links":[{"SourceID":94676,"TargetID":94678,"Directional":false}]},{"ID":2644,"SourceStructureID":94713,"TargetStructureID":5528,"Label":"94713-5528 via Adherens from 94716 -> 94717","Type":"Adherens","Directional":false,"Links":[{"SourceID":94716,"TargetID":94717,"Directional":false}]},{"ID":2645,"SourceStructureID":5528,"TargetStructureID":94722,"Label":"5528-94722 via Unknown from 94725 -> 94726","Type":"Unknown","Directional":false,"Links":[{"SourceID":94725,"TargetID":94726,"Directional":false}]},{"ID":2646,"SourceStructureID":94794,"TargetStructureID":5528,"Label":"94794-5528 via Unknown from 94809 -> 94810","Type":"Unknown","Directional":false,"Links":[{"SourceID":94809,"TargetID":94810,"Directional":false}]},{"ID":2647,"SourceStructureID":94806,"TargetStructureID":5528,"Label":"94806-5528 via Unknown from 94807 -> 94808","Type":"Unknown","Directional":false,"Links":[{"SourceID":94807,"TargetID":94808,"Directional":false}]},{"ID":2648,"SourceStructureID":94811,"TargetStructureID":5528,"Label":"94811-5528 via Unknown from 94812 -> 94813","Type":"Unknown","Directional":false,"Links":[{"SourceID":94812,"TargetID":94813,"Directional":false}]},{"ID":2649,"SourceStructureID":94834,"TargetStructureID":5528,"Label":"94834-5528 via Unknown from 94835 -> 94836","Type":"Unknown","Directional":false,"Links":[{"SourceID":94835,"TargetID":94836,"Directional":false}]},{"ID":2650,"SourceStructureID":94838,"TargetStructureID":5528,"Label":"94838-5528 via Adherens from 94840 -> 94841, 94863 -> 94864","Type":"Adherens","Directional":false,"Links":[{"SourceID":94840,"TargetID":94841,"Directional":false},{"SourceID":94863,"TargetID":94864,"Directional":false}]},{"ID":2651,"SourceStructureID":94838,"TargetStructureID":5528,"Label":"94838-5528 via Unknown from 94842 -> 94843","Type":"Unknown","Directional":false,"Links":[{"SourceID":94842,"TargetID":94843,"Directional":false}]},{"ID":2652,"SourceStructureID":5528,"TargetStructureID":94848,"Label":"5528-94848 via Unknown from 94860 -> 94861","Type":"Unknown","Directional":false,"Links":[{"SourceID":94860,"TargetID":94861,"Directional":false}]},{"ID":2653,"SourceStructureID":95062,"TargetStructureID":5528,"Label":"95062-5528 via Adherens from 95064 -> 95065","Type":"Adherens","Directional":false,"Links":[{"SourceID":95064,"TargetID":95065,"Directional":false}]},{"ID":2654,"SourceStructureID":5528,"TargetStructureID":95066,"Label":"5528-95066 via Adherens from 95067 -> 95068","Type":"Adherens","Directional":false,"Links":[{"SourceID":95067,"TargetID":95068,"Directional":false}]},{"ID":2655,"SourceStructureID":95070,"TargetStructureID":5528,"Label":"95070-5528 via Unknown from 95077 -> 95079","Type":"Unknown","Directional":false,"Links":[{"SourceID":95077,"TargetID":95079,"Directional":false}]},{"ID":2656,"SourceStructureID":5528,"TargetStructureID":95131,"Label":"5528-95131 via Adherens from 68789 -> 95143, 95145 -> 68788","Type":"Adherens","Directional":false,"Links":[{"SourceID":68789,"TargetID":95143,"Directional":false},{"SourceID":95145,"TargetID":68788,"Directional":false}]},{"ID":2657,"SourceStructureID":5528,"TargetStructureID":95131,"Label":"5528-95131 via Unknown from 95146 -> 95148","Type":"Unknown","Directional":false,"Links":[{"SourceID":95146,"TargetID":95148,"Directional":false}]},{"ID":2658,"SourceStructureID":95157,"TargetStructureID":5528,"Label":"95157-5528 via Unknown from 95158 -> 95156","Type":"Unknown","Directional":false,"Links":[{"SourceID":95158,"TargetID":95156,"Directional":false}]},{"ID":2659,"SourceStructureID":95195,"TargetStructureID":5528,"Label":"95195-5528 via Adherens from 95471 -> 95472","Type":"Adherens","Directional":false,"Links":[{"SourceID":95471,"TargetID":95472,"Directional":false}]},{"ID":2660,"SourceStructureID":5528,"TargetStructureID":95623,"Label":"5528-95623 via Adherens from 95628 -> 95629","Type":"Adherens","Directional":false,"Links":[{"SourceID":95628,"TargetID":95629,"Directional":false}]},{"ID":2661,"SourceStructureID":5528,"TargetStructureID":95623,"Label":"5528-95623 via Gap Junction from 95624 -> 95625","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95624,"TargetID":95625,"Directional":false}]},{"ID":2662,"SourceStructureID":95640,"TargetStructureID":5528,"Label":"95640-5528 via Unknown from 95642 -> 95641","Type":"Unknown","Directional":false,"Links":[{"SourceID":95642,"TargetID":95641,"Directional":false}]},{"ID":2663,"SourceStructureID":95693,"TargetStructureID":5528,"Label":"95693-5528 via Unknown from 95694 -> 95692","Type":"Unknown","Directional":false,"Links":[{"SourceID":95694,"TargetID":95692,"Directional":false}]},{"ID":2664,"SourceStructureID":5528,"TargetStructureID":96143,"Label":"5528-96143 via Unknown from 96160 -> 96161","Type":"Unknown","Directional":false,"Links":[{"SourceID":96160,"TargetID":96161,"Directional":false}]},{"ID":2665,"SourceStructureID":96170,"TargetStructureID":5528,"Label":"96170-5528 via Adherens from 96171 -> 96169","Type":"Adherens","Directional":false,"Links":[{"SourceID":96171,"TargetID":96169,"Directional":false}]},{"ID":2666,"SourceStructureID":5528,"TargetStructureID":96189,"Label":"5528-96189 via Adherens from 96192 -> 96193","Type":"Adherens","Directional":false,"Links":[{"SourceID":96192,"TargetID":96193,"Directional":false}]},{"ID":2667,"SourceStructureID":96194,"TargetStructureID":5528,"Label":"96194-5528 via Unknown from 96195 -> 96196","Type":"Unknown","Directional":false,"Links":[{"SourceID":96195,"TargetID":96196,"Directional":false}]},{"ID":2668,"SourceStructureID":5528,"TargetStructureID":96201,"Label":"5528-96201 via Gap Junction from 96205 -> 96204","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96205,"TargetID":96204,"Directional":false}]},{"ID":2669,"SourceStructureID":96210,"TargetStructureID":5528,"Label":"96210-5528 via Unknown from 96211 -> 96209","Type":"Unknown","Directional":false,"Links":[{"SourceID":96211,"TargetID":96209,"Directional":false}]},{"ID":2670,"SourceStructureID":5528,"TargetStructureID":96220,"Label":"5528-96220 via Unknown from 96219 -> 96223","Type":"Unknown","Directional":false,"Links":[{"SourceID":96219,"TargetID":96223,"Directional":false}]},{"ID":2671,"SourceStructureID":5528,"TargetStructureID":96240,"Label":"5528-96240 via Unknown from 96260 -> 96261, 96262 -> 96263","Type":"Unknown","Directional":false,"Links":[{"SourceID":96260,"TargetID":96261,"Directional":false},{"SourceID":96262,"TargetID":96263,"Directional":false}]},{"ID":2672,"SourceStructureID":96270,"TargetStructureID":5528,"Label":"96270-5528 via Adherens from 96275 -> 96274","Type":"Adherens","Directional":false,"Links":[{"SourceID":96275,"TargetID":96274,"Directional":false}]},{"ID":2673,"SourceStructureID":5528,"TargetStructureID":96290,"Label":"5528-96290 via Adherens from 96842 -> 96843","Type":"Adherens","Directional":false,"Links":[{"SourceID":96842,"TargetID":96843,"Directional":false}]},{"ID":2674,"SourceStructureID":5528,"TargetStructureID":96290,"Label":"5528-96290 via Gap Junction from 96845 -> 96844","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96845,"TargetID":96844,"Directional":false}]},{"ID":2675,"SourceStructureID":96303,"TargetStructureID":5528,"Label":"96303-5528 via Adherens from 96840 -> 96841","Type":"Adherens","Directional":false,"Links":[{"SourceID":96840,"TargetID":96841,"Directional":false}]},{"ID":2676,"SourceStructureID":96883,"TargetStructureID":5528,"Label":"96883-5528 via Adherens from 96888 -> 96889, 96890 -> 96887","Type":"Adherens","Directional":false,"Links":[{"SourceID":96888,"TargetID":96889,"Directional":false},{"SourceID":96890,"TargetID":96887,"Directional":false}]},{"ID":2677,"SourceStructureID":96893,"TargetStructureID":5528,"Label":"96893-5528 via Adherens from 96917 -> 96916","Type":"Adherens","Directional":false,"Links":[{"SourceID":96917,"TargetID":96916,"Directional":false}]},{"ID":2678,"SourceStructureID":96898,"TargetStructureID":5528,"Label":"96898-5528 via Gap Junction from 96901 -> 96902","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96901,"TargetID":96902,"Directional":false}]},{"ID":2679,"SourceStructureID":96914,"TargetStructureID":5528,"Label":"96914-5528 via Adherens from 96915 -> 8293","Type":"Adherens","Directional":false,"Links":[{"SourceID":96915,"TargetID":8293,"Directional":false}]},{"ID":2680,"SourceStructureID":97290,"TargetStructureID":5528,"Label":"97290-5528 via Adherens from 97291 -> 97292","Type":"Adherens","Directional":false,"Links":[{"SourceID":97291,"TargetID":97292,"Directional":false}]},{"ID":2681,"SourceStructureID":5528,"TargetStructureID":97310,"Label":"5528-97310 via Adherens from 97312 -> 97313","Type":"Adherens","Directional":false,"Links":[{"SourceID":97312,"TargetID":97313,"Directional":false}]},{"ID":2682,"SourceStructureID":5530,"TargetStructureID":5530,"Label":"5530-5530 via Adherens from 125895 -> 125896, 135588 -> 135587, 135603 -> 135604","Type":"Adherens","Directional":false,"Links":[{"SourceID":125895,"TargetID":125896,"Directional":false},{"SourceID":135588,"TargetID":135587,"Directional":false},{"SourceID":135603,"TargetID":135604,"Directional":false}]},{"ID":2683,"SourceStructureID":5530,"TargetStructureID":5530,"Label":"5530-5530 via Gap Junction from 44246 -> 44245, 74588 -> 74587, 80973 -> 50905, 81253 -> 81254, 81568 -> 54071, 81865 -> 81870","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44246,"TargetID":44245,"Directional":false},{"SourceID":74588,"TargetID":74587,"Directional":false},{"SourceID":80973,"TargetID":50905,"Directional":false},{"SourceID":81253,"TargetID":81254,"Directional":false},{"SourceID":81568,"TargetID":54071,"Directional":false},{"SourceID":81865,"TargetID":81870,"Directional":false}]},{"ID":2684,"SourceStructureID":5531,"TargetStructureID":5530,"Label":"5531-5530 via Adherens from 82571 -> 81621","Type":"Adherens","Directional":false,"Links":[{"SourceID":82571,"TargetID":81621,"Directional":false}]},{"ID":2685,"SourceStructureID":5534,"TargetStructureID":5530,"Label":"5534-5530 via Adherens from 135581 -> 135580","Type":"Adherens","Directional":false,"Links":[{"SourceID":135581,"TargetID":135580,"Directional":false}]},{"ID":2686,"SourceStructureID":5530,"TargetStructureID":5534,"Label":"5530-5534 via Gap Junction from 38271 -> 77931, 45323 -> 45322, 76798 -> 76797, 82053 -> 82054, 82056 -> 82055, 134307 -> 134308","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38271,"TargetID":77931,"Directional":false},{"SourceID":45323,"TargetID":45322,"Directional":false},{"SourceID":76798,"TargetID":76797,"Directional":false},{"SourceID":82053,"TargetID":82054,"Directional":false},{"SourceID":82056,"TargetID":82055,"Directional":false},{"SourceID":134307,"TargetID":134308,"Directional":false}]},{"ID":2687,"SourceStructureID":5530,"TargetStructureID":5537,"Label":"5530-5537 via Adherens from 81221 -> 81222, 135574 -> 135573","Type":"Adherens","Directional":false,"Links":[{"SourceID":81221,"TargetID":81222,"Directional":false},{"SourceID":135574,"TargetID":135573,"Directional":false}]},{"ID":2688,"SourceStructureID":5530,"TargetStructureID":5537,"Label":"5530-5537 via Gap Junction from 81219 -> 81220, 81261 -> 81260, 134568 -> 134569","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81219,"TargetID":81220,"Directional":false},{"SourceID":81261,"TargetID":81260,"Directional":false},{"SourceID":134568,"TargetID":134569,"Directional":false}]},{"ID":2689,"SourceStructureID":5530,"TargetStructureID":5601,"Label":"5530-5601 via Gap Junction from 45399 -> 38527, 54097 -> 54096, 81266 -> 81265","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45399,"TargetID":38527,"Directional":false},{"SourceID":54097,"TargetID":54096,"Directional":false},{"SourceID":81266,"TargetID":81265,"Directional":false}]},{"ID":2690,"SourceStructureID":5530,"TargetStructureID":5860,"Label":"5530-5860 via Adherens from 126466 -> 126467","Type":"Adherens","Directional":false,"Links":[{"SourceID":126466,"TargetID":126467,"Directional":false}]},{"ID":2691,"SourceStructureID":5530,"TargetStructureID":5860,"Label":"5530-5860 via Gap Junction from 29865 -> 29864, 30115 -> 30116, 79573 -> 79574, 80188 -> 82437, 80707 -> 80706, 82881 -> 81028","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29865,"TargetID":29864,"Directional":false},{"SourceID":30115,"TargetID":30116,"Directional":false},{"SourceID":79573,"TargetID":79574,"Directional":false},{"SourceID":80188,"TargetID":82437,"Directional":false},{"SourceID":80707,"TargetID":80706,"Directional":false},{"SourceID":82881,"TargetID":81028,"Directional":false}]},{"ID":2692,"SourceStructureID":5530,"TargetStructureID":6117,"Label":"5530-6117 via Gap Junction from 46332 -> 30905, 80449 -> 82856","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46332,"TargetID":30905,"Directional":false},{"SourceID":80449,"TargetID":82856,"Directional":false}]},{"ID":2693,"SourceStructureID":5530,"TargetStructureID":7564,"Label":"5530-7564 via Adherens from 75895 -> 75896","Type":"Adherens","Directional":false,"Links":[{"SourceID":75895,"TargetID":75896,"Directional":false}]},{"ID":2694,"SourceStructureID":5530,"TargetStructureID":7564,"Label":"5530-7564 via Gap Junction from 29174 -> 29173, 76741 -> 76740, 77648 -> 77649","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29174,"TargetID":29173,"Directional":false},{"SourceID":76741,"TargetID":76740,"Directional":false},{"SourceID":77648,"TargetID":77649,"Directional":false}]},{"ID":2695,"SourceStructureID":5530,"TargetStructureID":9769,"Label":"5530-9769 via Adherens from 74661 -> 74660, 126447 -> 126448","Type":"Adherens","Directional":false,"Links":[{"SourceID":74661,"TargetID":74660,"Directional":false},{"SourceID":126447,"TargetID":126448,"Directional":false}]},{"ID":2696,"SourceStructureID":9769,"TargetStructureID":5530,"Label":"9769-5530 via Unknown from 74607 -> 74606, 82886 -> 81144","Type":"Unknown","Directional":false,"Links":[{"SourceID":74607,"TargetID":74606,"Directional":false},{"SourceID":82886,"TargetID":81144,"Directional":false}]},{"ID":2697,"SourceStructureID":5530,"TargetStructureID":10596,"Label":"5530-10596 via Adherens from 76525 -> 82375","Type":"Adherens","Directional":false,"Links":[{"SourceID":76525,"TargetID":82375,"Directional":false}]},{"ID":2698,"SourceStructureID":10596,"TargetStructureID":5530,"Label":"10596-5530 via Unknown from 82621 -> 76547","Type":"Unknown","Directional":false,"Links":[{"SourceID":82621,"TargetID":76547,"Directional":false}]},{"ID":2699,"SourceStructureID":12564,"TargetStructureID":5530,"Label":"12564-5530 via Adherens from 76825 -> 76826","Type":"Adherens","Directional":false,"Links":[{"SourceID":76825,"TargetID":76826,"Directional":false}]},{"ID":2700,"SourceStructureID":5530,"TargetStructureID":18693,"Label":"5530-18693 via Unknown from 77628 -> 77629","Type":"Unknown","Directional":false,"Links":[{"SourceID":77628,"TargetID":77629,"Directional":false}]},{"ID":2701,"SourceStructureID":23512,"TargetStructureID":5530,"Label":"23512-5530 via Unknown from 82618 -> 76524","Type":"Unknown","Directional":false,"Links":[{"SourceID":82618,"TargetID":76524,"Directional":false}]},{"ID":2702,"SourceStructureID":5530,"TargetStructureID":23836,"Label":"5530-23836 via Adherens from 81177 -> 81176, 81178 -> 81179, 81185 -> 81184","Type":"Adherens","Directional":false,"Links":[{"SourceID":81177,"TargetID":81176,"Directional":false},{"SourceID":81178,"TargetID":81179,"Directional":false},{"SourceID":81185,"TargetID":81184,"Directional":false}]},{"ID":2703,"SourceStructureID":23836,"TargetStructureID":5530,"Label":"23836-5530 via Unknown from 83002 -> 82049","Type":"Unknown","Directional":false,"Links":[{"SourceID":83002,"TargetID":82049,"Directional":false}]},{"ID":2704,"SourceStructureID":5530,"TargetStructureID":25293,"Label":"5530-25293 via Unknown from 81118 -> 82883","Type":"Unknown","Directional":false,"Links":[{"SourceID":81118,"TargetID":82883,"Directional":false}]},{"ID":2705,"SourceStructureID":5530,"TargetStructureID":34315,"Label":"5530-34315 via Adherens from 81205 -> 81204","Type":"Adherens","Directional":false,"Links":[{"SourceID":81205,"TargetID":81204,"Directional":false}]},{"ID":2706,"SourceStructureID":35240,"TargetStructureID":5530,"Label":"35240-5530 via Adherens from 126441 -> 126442","Type":"Adherens","Directional":false,"Links":[{"SourceID":126441,"TargetID":126442,"Directional":false}]},{"ID":2707,"SourceStructureID":5530,"TargetStructureID":35240,"Label":"5530-35240 via Unknown from 80177 -> 82838, 82425 -> 79271, 82836 -> 79547, 82837 -> 79548","Type":"Unknown","Directional":false,"Links":[{"SourceID":80177,"TargetID":82838,"Directional":false},{"SourceID":82425,"TargetID":79271,"Directional":false},{"SourceID":82836,"TargetID":79547,"Directional":false},{"SourceID":82837,"TargetID":79548,"Directional":false}]},{"ID":2708,"SourceStructureID":35539,"TargetStructureID":5530,"Label":"35539-5530 via Unknown from 82823 -> 79054","Type":"Unknown","Directional":false,"Links":[{"SourceID":82823,"TargetID":79054,"Directional":false}]},{"ID":2709,"SourceStructureID":5530,"TargetStructureID":40039,"Label":"5530-40039 via Adherens from 82524 -> 82525, 84360 -> 84359","Type":"Adherens","Directional":false,"Links":[{"SourceID":82524,"TargetID":82525,"Directional":false},{"SourceID":84360,"TargetID":84359,"Directional":false}]},{"ID":2710,"SourceStructureID":40039,"TargetStructureID":5530,"Label":"40039-5530 via Conventional from 82610 -> 75773","Type":"Conventional","Directional":false,"Links":[{"SourceID":82610,"TargetID":75773,"Directional":false}]},{"ID":2711,"SourceStructureID":40039,"TargetStructureID":5530,"Label":"40039-5530 via Unknown from 82379 -> 80508, 82511 -> 80567, 82673 -> 82674, 82844 -> 80200","Type":"Unknown","Directional":false,"Links":[{"SourceID":82379,"TargetID":80508,"Directional":false},{"SourceID":82511,"TargetID":80567,"Directional":false},{"SourceID":82673,"TargetID":82674,"Directional":false},{"SourceID":82844,"TargetID":80200,"Directional":false}]},{"ID":2712,"SourceStructureID":44237,"TargetStructureID":5530,"Label":"44237-5530 via Adherens from 77354 -> 77355","Type":"Adherens","Directional":false,"Links":[{"SourceID":77354,"TargetID":77355,"Directional":false}]},{"ID":2713,"SourceStructureID":5530,"TargetStructureID":45220,"Label":"5530-45220 via Unknown from 81214 -> 82896, 82900 -> 81611","Type":"Unknown","Directional":false,"Links":[{"SourceID":81214,"TargetID":82896,"Directional":false},{"SourceID":82900,"TargetID":81611,"Directional":false}]},{"ID":2714,"SourceStructureID":69953,"TargetStructureID":5530,"Label":"69953-5530 via Unknown from 82850 -> 80405, 126462 -> 126461","Type":"Unknown","Directional":false,"Links":[{"SourceID":82850,"TargetID":80405,"Directional":false},{"SourceID":126462,"TargetID":126461,"Directional":false}]},{"ID":2715,"SourceStructureID":74056,"TargetStructureID":5530,"Label":"74056-5530 via Adherens from 81710 -> 81711","Type":"Adherens","Directional":false,"Links":[{"SourceID":81710,"TargetID":81711,"Directional":false}]},{"ID":2716,"SourceStructureID":5530,"TargetStructureID":74213,"Label":"5530-74213 via Unknown from 74612 -> 74613","Type":"Unknown","Directional":false,"Links":[{"SourceID":74612,"TargetID":74613,"Directional":false}]},{"ID":2717,"SourceStructureID":74225,"TargetStructureID":5530,"Label":"74225-5530 via Unknown from 74227 -> 74226","Type":"Unknown","Directional":false,"Links":[{"SourceID":74227,"TargetID":74226,"Directional":false}]},{"ID":2718,"SourceStructureID":5530,"TargetStructureID":74584,"Label":"5530-74584 via Adherens from 82316 -> 74585","Type":"Adherens","Directional":false,"Links":[{"SourceID":82316,"TargetID":74585,"Directional":false}]},{"ID":2719,"SourceStructureID":74694,"TargetStructureID":5530,"Label":"74694-5530 via Unknown from 74715 -> 74718","Type":"Unknown","Directional":false,"Links":[{"SourceID":74715,"TargetID":74718,"Directional":false}]},{"ID":2720,"SourceStructureID":5530,"TargetStructureID":75001,"Label":"5530-75001 via Unknown from 77325 -> 82641, 82424 -> 75778","Type":"Unknown","Directional":false,"Links":[{"SourceID":77325,"TargetID":82641,"Directional":false},{"SourceID":82424,"TargetID":75778,"Directional":false}]},{"ID":2721,"SourceStructureID":75488,"TargetStructureID":5530,"Label":"75488-5530 via Unknown from 82601 -> 75495","Type":"Unknown","Directional":false,"Links":[{"SourceID":82601,"TargetID":75495,"Directional":false}]},{"ID":2722,"SourceStructureID":5530,"TargetStructureID":75512,"Label":"5530-75512 via Adherens from 75514 -> 75513","Type":"Adherens","Directional":false,"Links":[{"SourceID":75514,"TargetID":75513,"Directional":false}]},{"ID":2723,"SourceStructureID":5530,"TargetStructureID":75515,"Label":"5530-75515 via Unknown from 75516 -> 82602","Type":"Unknown","Directional":false,"Links":[{"SourceID":75516,"TargetID":82602,"Directional":false}]},{"ID":2724,"SourceStructureID":75796,"TargetStructureID":5530,"Label":"75796-5530 via Adherens from 125904 -> 125903, 125906 -> 125907","Type":"Adherens","Directional":false,"Links":[{"SourceID":125904,"TargetID":125903,"Directional":false},{"SourceID":125906,"TargetID":125907,"Directional":false}]},{"ID":2725,"SourceStructureID":75796,"TargetStructureID":5530,"Label":"75796-5530 via Unknown from 82611 -> 75809","Type":"Unknown","Directional":false,"Links":[{"SourceID":82611,"TargetID":75809,"Directional":false}]},{"ID":2726,"SourceStructureID":75915,"TargetStructureID":5530,"Label":"75915-5530 via Unknown from 115791 -> 75916","Type":"Unknown","Directional":false,"Links":[{"SourceID":115791,"TargetID":75916,"Directional":false}]},{"ID":2727,"SourceStructureID":5530,"TargetStructureID":76530,"Label":"5530-76530 via Unknown from 76551 -> 82627","Type":"Unknown","Directional":false,"Links":[{"SourceID":76551,"TargetID":82627,"Directional":false}]},{"ID":2728,"SourceStructureID":76771,"TargetStructureID":5530,"Label":"76771-5530 via Unknown from 82537 -> 76774","Type":"Unknown","Directional":false,"Links":[{"SourceID":82537,"TargetID":76774,"Directional":false}]},{"ID":2729,"SourceStructureID":77329,"TargetStructureID":5530,"Label":"77329-5530 via Adherens from 77330 -> 77331","Type":"Adherens","Directional":false,"Links":[{"SourceID":77330,"TargetID":77331,"Directional":false}]},{"ID":2730,"SourceStructureID":77329,"TargetStructureID":5530,"Label":"77329-5530 via Unknown from 82651 -> 77327","Type":"Unknown","Directional":false,"Links":[{"SourceID":82651,"TargetID":77327,"Directional":false}]},{"ID":2731,"SourceStructureID":77332,"TargetStructureID":5530,"Label":"77332-5530 via Adherens from 77335 -> 77336","Type":"Adherens","Directional":false,"Links":[{"SourceID":77335,"TargetID":77336,"Directional":false}]},{"ID":2732,"SourceStructureID":5530,"TargetStructureID":77332,"Label":"5530-77332 via Unknown from 77353 -> 82652","Type":"Unknown","Directional":false,"Links":[{"SourceID":77353,"TargetID":82652,"Directional":false}]},{"ID":2733,"SourceStructureID":5530,"TargetStructureID":77393,"Label":"5530-77393 via Unknown from 77396 -> 82661","Type":"Unknown","Directional":false,"Links":[{"SourceID":77396,"TargetID":82661,"Directional":false}]},{"ID":2734,"SourceStructureID":77407,"TargetStructureID":5530,"Label":"77407-5530 via Unknown from 82675 -> 77410","Type":"Unknown","Directional":false,"Links":[{"SourceID":82675,"TargetID":77410,"Directional":false}]},{"ID":2735,"SourceStructureID":5530,"TargetStructureID":77412,"Label":"5530-77412 via Unknown from 77618 -> 82689","Type":"Unknown","Directional":false,"Links":[{"SourceID":77618,"TargetID":82689,"Directional":false}]},{"ID":2736,"SourceStructureID":5530,"TargetStructureID":77632,"Label":"5530-77632 via Unknown from 77636 -> 82697","Type":"Unknown","Directional":false,"Links":[{"SourceID":77636,"TargetID":82697,"Directional":false}]},{"ID":2737,"SourceStructureID":77914,"TargetStructureID":5530,"Label":"77914-5530 via Adherens from 77915 -> 77913","Type":"Adherens","Directional":false,"Links":[{"SourceID":77915,"TargetID":77913,"Directional":false}]},{"ID":2738,"SourceStructureID":5530,"TargetStructureID":77932,"Label":"5530-77932 via Adherens from 77935 -> 77936","Type":"Adherens","Directional":false,"Links":[{"SourceID":77935,"TargetID":77936,"Directional":false}]},{"ID":2739,"SourceStructureID":5530,"TargetStructureID":79073,"Label":"5530-79073 via Unknown from 79098 -> 82829","Type":"Unknown","Directional":false,"Links":[{"SourceID":79098,"TargetID":82829,"Directional":false}]},{"ID":2740,"SourceStructureID":5530,"TargetStructureID":79106,"Label":"5530-79106 via Unknown from 79117 -> 82377","Type":"Unknown","Directional":false,"Links":[{"SourceID":79117,"TargetID":82377,"Directional":false}]},{"ID":2741,"SourceStructureID":5530,"TargetStructureID":79152,"Label":"5530-79152 via Adherens from 79153 -> 79154","Type":"Adherens","Directional":false,"Links":[{"SourceID":79153,"TargetID":79154,"Directional":false}]},{"ID":2742,"SourceStructureID":79159,"TargetStructureID":5530,"Label":"79159-5530 via Adherens from 79162 -> 79163","Type":"Adherens","Directional":false,"Links":[{"SourceID":79162,"TargetID":79163,"Directional":false}]},{"ID":2743,"SourceStructureID":79159,"TargetStructureID":5530,"Label":"79159-5530 via Unknown from 82857 -> 80623","Type":"Unknown","Directional":false,"Links":[{"SourceID":82857,"TargetID":80623,"Directional":false}]},{"ID":2744,"SourceStructureID":79256,"TargetStructureID":5530,"Label":"79256-5530 via Adherens from 79262 -> 79263","Type":"Adherens","Directional":false,"Links":[{"SourceID":79262,"TargetID":79263,"Directional":false}]},{"ID":2745,"SourceStructureID":79256,"TargetStructureID":5530,"Label":"79256-5530 via Unknown from 134559 -> 79258","Type":"Unknown","Directional":false,"Links":[{"SourceID":134559,"TargetID":79258,"Directional":false}]},{"ID":2746,"SourceStructureID":5530,"TargetStructureID":79551,"Label":"5530-79551 via Adherens from 126451 -> 126452","Type":"Adherens","Directional":false,"Links":[{"SourceID":126451,"TargetID":126452,"Directional":false}]},{"ID":2747,"SourceStructureID":80180,"TargetStructureID":5530,"Label":"80180-5530 via Unknown from 82841 -> 80181","Type":"Unknown","Directional":false,"Links":[{"SourceID":82841,"TargetID":80181,"Directional":false}]},{"ID":2748,"SourceStructureID":80276,"TargetStructureID":5530,"Label":"80276-5530 via Unknown from 82847 -> 80314","Type":"Unknown","Directional":false,"Links":[{"SourceID":82847,"TargetID":80314,"Directional":false}]},{"ID":2749,"SourceStructureID":80422,"TargetStructureID":5530,"Label":"80422-5530 via Adherens from 80423 -> 80424","Type":"Adherens","Directional":false,"Links":[{"SourceID":80423,"TargetID":80424,"Directional":false}]},{"ID":2750,"SourceStructureID":5530,"TargetStructureID":80495,"Label":"5530-80495 via Adherens from 126455 -> 126456","Type":"Adherens","Directional":false,"Links":[{"SourceID":126455,"TargetID":126456,"Directional":false}]},{"ID":2751,"SourceStructureID":5530,"TargetStructureID":80602,"Label":"5530-80602 via Unknown from 46335 -> 80603","Type":"Unknown","Directional":false,"Links":[{"SourceID":46335,"TargetID":80603,"Directional":false}]},{"ID":2752,"SourceStructureID":80607,"TargetStructureID":5530,"Label":"80607-5530 via Unknown from 82438 -> 80598","Type":"Unknown","Directional":false,"Links":[{"SourceID":82438,"TargetID":80598,"Directional":false}]},{"ID":2753,"SourceStructureID":5530,"TargetStructureID":80609,"Label":"5530-80609 via Unknown from 46338 -> 80610","Type":"Unknown","Directional":false,"Links":[{"SourceID":46338,"TargetID":80610,"Directional":false}]},{"ID":2754,"SourceStructureID":80977,"TargetStructureID":5530,"Label":"80977-5530 via Adherens from 80978 -> 80979","Type":"Adherens","Directional":false,"Links":[{"SourceID":80978,"TargetID":80979,"Directional":false}]},{"ID":2755,"SourceStructureID":80983,"TargetStructureID":5530,"Label":"80983-5530 via Adherens from 80984 -> 80985","Type":"Adherens","Directional":false,"Links":[{"SourceID":80984,"TargetID":80985,"Directional":false}]},{"ID":2756,"SourceStructureID":5530,"TargetStructureID":80997,"Label":"5530-80997 via Unknown from 80998 -> 82879","Type":"Unknown","Directional":false,"Links":[{"SourceID":80998,"TargetID":82879,"Directional":false}]},{"ID":2757,"SourceStructureID":81008,"TargetStructureID":5530,"Label":"81008-5530 via Unknown from 82880 -> 81016","Type":"Unknown","Directional":false,"Links":[{"SourceID":82880,"TargetID":81016,"Directional":false}]},{"ID":2758,"SourceStructureID":5530,"TargetStructureID":81142,"Label":"5530-81142 via Unknown from 81143 -> 82526","Type":"Unknown","Directional":false,"Links":[{"SourceID":81143,"TargetID":82526,"Directional":false}]},{"ID":2759,"SourceStructureID":5530,"TargetStructureID":81566,"Label":"5530-81566 via Adherens from 126470 -> 126471","Type":"Adherens","Directional":false,"Links":[{"SourceID":126470,"TargetID":126471,"Directional":false}]},{"ID":2760,"SourceStructureID":81566,"TargetStructureID":5530,"Label":"81566-5530 via Unknown from 82899 -> 81579","Type":"Unknown","Directional":false,"Links":[{"SourceID":82899,"TargetID":81579,"Directional":false}]},{"ID":2761,"SourceStructureID":81618,"TargetStructureID":5530,"Label":"81618-5530 via Adherens from 81619 -> 81620","Type":"Adherens","Directional":false,"Links":[{"SourceID":81619,"TargetID":81620,"Directional":false}]},{"ID":2762,"SourceStructureID":5530,"TargetStructureID":81622,"Label":"5530-81622 via Unknown from 81627 -> 82990","Type":"Unknown","Directional":false,"Links":[{"SourceID":81627,"TargetID":82990,"Directional":false}]},{"ID":2763,"SourceStructureID":5530,"TargetStructureID":81629,"Label":"5530-81629 via Unknown from 81628 -> 82991","Type":"Unknown","Directional":false,"Links":[{"SourceID":81628,"TargetID":82991,"Directional":false}]},{"ID":2764,"SourceStructureID":82046,"TargetStructureID":5530,"Label":"82046-5530 via Adherens from 82047 -> 82048","Type":"Adherens","Directional":false,"Links":[{"SourceID":82047,"TargetID":82048,"Directional":false}]},{"ID":2765,"SourceStructureID":82046,"TargetStructureID":5530,"Label":"82046-5530 via Unknown from 83001 -> 81884","Type":"Unknown","Directional":false,"Links":[{"SourceID":83001,"TargetID":81884,"Directional":false}]},{"ID":2766,"SourceStructureID":5530,"TargetStructureID":82070,"Label":"5530-82070 via Unknown from 82066 -> 82507, 82082 -> 82083","Type":"Unknown","Directional":false,"Links":[{"SourceID":82066,"TargetID":82507,"Directional":false},{"SourceID":82082,"TargetID":82083,"Directional":false}]},{"ID":2767,"SourceStructureID":82071,"TargetStructureID":5530,"Label":"82071-5530 via Unknown from 82073 -> 82074","Type":"Unknown","Directional":false,"Links":[{"SourceID":82073,"TargetID":82074,"Directional":false}]},{"ID":2768,"SourceStructureID":82442,"TargetStructureID":5530,"Label":"82442-5530 via Unknown from 82552 -> 78874","Type":"Unknown","Directional":false,"Links":[{"SourceID":82552,"TargetID":78874,"Directional":false}]},{"ID":2769,"SourceStructureID":5530,"TargetStructureID":82577,"Label":"5530-82577 via Unknown from 80487 -> 82581","Type":"Unknown","Directional":false,"Links":[{"SourceID":80487,"TargetID":82581,"Directional":false}]},{"ID":2770,"SourceStructureID":5530,"TargetStructureID":82595,"Label":"5530-82595 via Unknown from 81885 -> 82596","Type":"Unknown","Directional":false,"Links":[{"SourceID":81885,"TargetID":82596,"Directional":false}]},{"ID":2771,"SourceStructureID":82598,"TargetStructureID":5530,"Label":"82598-5530 via Unknown from 82599 -> 74869","Type":"Unknown","Directional":false,"Links":[{"SourceID":82599,"TargetID":74869,"Directional":false}]},{"ID":2772,"SourceStructureID":5530,"TargetStructureID":82619,"Label":"5530-82619 via Unknown from 76529 -> 82620","Type":"Unknown","Directional":false,"Links":[{"SourceID":76529,"TargetID":82620,"Directional":false}]},{"ID":2773,"SourceStructureID":82625,"TargetStructureID":5530,"Label":"82625-5530 via Unknown from 82626 -> 76550","Type":"Unknown","Directional":false,"Links":[{"SourceID":82626,"TargetID":76550,"Directional":false}]},{"ID":2774,"SourceStructureID":82628,"TargetStructureID":5530,"Label":"82628-5530 via Unknown from 82629 -> 76748","Type":"Unknown","Directional":false,"Links":[{"SourceID":82629,"TargetID":76748,"Directional":false}]},{"ID":2775,"SourceStructureID":5530,"TargetStructureID":82630,"Label":"5530-82630 via Unknown from 76784 -> 82631","Type":"Unknown","Directional":false,"Links":[{"SourceID":76784,"TargetID":82631,"Directional":false}]},{"ID":2776,"SourceStructureID":5530,"TargetStructureID":82632,"Label":"5530-82632 via Unknown from 76791 -> 82633","Type":"Unknown","Directional":false,"Links":[{"SourceID":76791,"TargetID":82633,"Directional":false}]},{"ID":2777,"SourceStructureID":5530,"TargetStructureID":82636,"Label":"5530-82636 via Unknown from 77324 -> 82638","Type":"Unknown","Directional":false,"Links":[{"SourceID":77324,"TargetID":82638,"Directional":false}]},{"ID":2778,"SourceStructureID":82643,"TargetStructureID":5530,"Label":"82643-5530 via Unknown from 82648 -> 77326","Type":"Unknown","Directional":false,"Links":[{"SourceID":82648,"TargetID":77326,"Directional":false}]},{"ID":2779,"SourceStructureID":82656,"TargetStructureID":5530,"Label":"82656-5530 via Unknown from 82657 -> 77392","Type":"Unknown","Directional":false,"Links":[{"SourceID":82657,"TargetID":77392,"Directional":false}]},{"ID":2780,"SourceStructureID":5530,"TargetStructureID":82664,"Label":"5530-82664 via Unknown from 77402 -> 82672","Type":"Unknown","Directional":false,"Links":[{"SourceID":77402,"TargetID":82672,"Directional":false}]},{"ID":2781,"SourceStructureID":5530,"TargetStructureID":82677,"Label":"5530-82677 via Gap Junction from 77466 -> 82680","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":77466,"TargetID":82680,"Directional":false}]},{"ID":2782,"SourceStructureID":82695,"TargetStructureID":5530,"Label":"82695-5530 via Unknown from 82696 -> 77630","Type":"Unknown","Directional":false,"Links":[{"SourceID":82696,"TargetID":77630,"Directional":false}]},{"ID":2783,"SourceStructureID":5530,"TargetStructureID":82827,"Label":"5530-82827 via Unknown from 79060 -> 82828","Type":"Unknown","Directional":false,"Links":[{"SourceID":79060,"TargetID":82828,"Directional":false}]},{"ID":2784,"SourceStructureID":82830,"TargetStructureID":5530,"Label":"82830-5530 via Unknown from 82831 -> 79137","Type":"Unknown","Directional":false,"Links":[{"SourceID":82831,"TargetID":79137,"Directional":false}]},{"ID":2785,"SourceStructureID":82832,"TargetStructureID":5530,"Label":"82832-5530 via Unknown from 82833 -> 79157","Type":"Unknown","Directional":false,"Links":[{"SourceID":82833,"TargetID":79157,"Directional":false}]},{"ID":2786,"SourceStructureID":82834,"TargetStructureID":5530,"Label":"82834-5530 via Unknown from 82835 -> 79270","Type":"Unknown","Directional":false,"Links":[{"SourceID":82835,"TargetID":79270,"Directional":false}]},{"ID":2787,"SourceStructureID":5530,"TargetStructureID":82848,"Label":"5530-82848 via Unknown from 80404 -> 82849","Type":"Unknown","Directional":false,"Links":[{"SourceID":80404,"TargetID":82849,"Directional":false}]},{"ID":2788,"SourceStructureID":82858,"TargetStructureID":5530,"Label":"82858-5530 via Unknown from 82859 -> 80708","Type":"Unknown","Directional":false,"Links":[{"SourceID":82859,"TargetID":80708,"Directional":false}]},{"ID":2789,"SourceStructureID":5530,"TargetStructureID":82887,"Label":"5530-82887 via Unknown from 81186 -> 82888","Type":"Unknown","Directional":false,"Links":[{"SourceID":81186,"TargetID":82888,"Directional":false}]},{"ID":2790,"SourceStructureID":82889,"TargetStructureID":5530,"Label":"82889-5530 via Unknown from 82892 -> 81209","Type":"Unknown","Directional":false,"Links":[{"SourceID":82892,"TargetID":81209,"Directional":false}]},{"ID":2791,"SourceStructureID":5530,"TargetStructureID":82894,"Label":"5530-82894 via Unknown from 81210 -> 82895","Type":"Unknown","Directional":false,"Links":[{"SourceID":81210,"TargetID":82895,"Directional":false}]},{"ID":2792,"SourceStructureID":5530,"TargetStructureID":82897,"Label":"5530-82897 via Unknown from 81217 -> 82898","Type":"Unknown","Directional":false,"Links":[{"SourceID":81217,"TargetID":82898,"Directional":false}]},{"ID":2793,"SourceStructureID":82901,"TargetStructureID":5530,"Label":"82901-5530 via Unknown from 82902 -> 81626","Type":"Unknown","Directional":false,"Links":[{"SourceID":82902,"TargetID":81626,"Directional":false}]},{"ID":2794,"SourceStructureID":82995,"TargetStructureID":5530,"Label":"82995-5530 via Unknown from 82996 -> 81871","Type":"Unknown","Directional":false,"Links":[{"SourceID":82996,"TargetID":81871,"Directional":false}]},{"ID":2795,"SourceStructureID":5530,"TargetStructureID":82997,"Label":"5530-82997 via Unknown from 81879 -> 82998","Type":"Unknown","Directional":false,"Links":[{"SourceID":81879,"TargetID":82998,"Directional":false}]},{"ID":2796,"SourceStructureID":5530,"TargetStructureID":82999,"Label":"5530-82999 via Unknown from 81880 -> 83000","Type":"Unknown","Directional":false,"Links":[{"SourceID":81880,"TargetID":83000,"Directional":false}]},{"ID":2797,"SourceStructureID":83045,"TargetStructureID":5530,"Label":"83045-5530 via Unknown from 83046 -> 81203","Type":"Unknown","Directional":false,"Links":[{"SourceID":83046,"TargetID":81203,"Directional":false}]},{"ID":2798,"SourceStructureID":5531,"TargetStructureID":5531,"Label":"5531-5531 via Adherens from 54538 -> 54539, 147464 -> 147465","Type":"Adherens","Directional":false,"Links":[{"SourceID":54538,"TargetID":54539,"Directional":false},{"SourceID":147464,"TargetID":147465,"Directional":false}]},{"ID":2799,"SourceStructureID":5531,"TargetStructureID":5535,"Label":"5531-5535 via Gap Junction from 107705 -> 32352","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":107705,"TargetID":32352,"Directional":false}]},{"ID":2800,"SourceStructureID":5601,"TargetStructureID":5531,"Label":"5601-5531 via Adherens from 127133 -> 127134","Type":"Adherens","Directional":false,"Links":[{"SourceID":127133,"TargetID":127134,"Directional":false}]},{"ID":2801,"SourceStructureID":5531,"TargetStructureID":5637,"Label":"5531-5637 via Adherens from 147446 -> 147445","Type":"Adherens","Directional":false,"Links":[{"SourceID":147446,"TargetID":147445,"Directional":false}]},{"ID":2802,"SourceStructureID":5637,"TargetStructureID":5531,"Label":"5637-5531 via Gap Junction from 59571 -> 59570","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59571,"TargetID":59570,"Directional":false}]},{"ID":2803,"SourceStructureID":5531,"TargetStructureID":7274,"Label":"5531-7274 via Unknown from 107200 -> 107202","Type":"Unknown","Directional":false,"Links":[{"SourceID":107200,"TargetID":107202,"Directional":false}]},{"ID":2804,"SourceStructureID":7576,"TargetStructureID":5531,"Label":"7576-5531 via Adherens from 133920 -> 133919, 147459 -> 55055","Type":"Adherens","Directional":false,"Links":[{"SourceID":133920,"TargetID":133919,"Directional":false},{"SourceID":147459,"TargetID":55055,"Directional":false}]},{"ID":2805,"SourceStructureID":7576,"TargetStructureID":5531,"Label":"7576-5531 via Gap Junction from 54807 -> 54732, 54880 -> 54876, 55050 -> 55049, 133917 -> 133918","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54807,"TargetID":54732,"Directional":false},{"SourceID":54880,"TargetID":54876,"Directional":false},{"SourceID":55050,"TargetID":55049,"Directional":false},{"SourceID":133917,"TargetID":133918,"Directional":false}]},{"ID":2806,"SourceStructureID":5531,"TargetStructureID":32405,"Label":"5531-32405 via Adherens from 147430 -> 147431","Type":"Adherens","Directional":false,"Links":[{"SourceID":147430,"TargetID":147431,"Directional":false}]},{"ID":2807,"SourceStructureID":32405,"TargetStructureID":5531,"Label":"32405-5531 via Gap Junction from 91880 -> 91879","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91880,"TargetID":91879,"Directional":false}]},{"ID":2808,"SourceStructureID":56802,"TargetStructureID":5531,"Label":"56802-5531 via Adherens from 106900 -> 106901, 147439 -> 147440, 147442 -> 147441","Type":"Adherens","Directional":false,"Links":[{"SourceID":106900,"TargetID":106901,"Directional":false},{"SourceID":147439,"TargetID":147440,"Directional":false},{"SourceID":147442,"TargetID":147441,"Directional":false}]},{"ID":2809,"SourceStructureID":5531,"TargetStructureID":56802,"Label":"5531-56802 via Gap Junction from 54578 -> 107416, 107425 -> 54579","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54578,"TargetID":107416,"Directional":false},{"SourceID":107425,"TargetID":54579,"Directional":false}]},{"ID":2810,"SourceStructureID":56802,"TargetStructureID":5531,"Label":"56802-5531 via Unknown from 119620 -> 119619","Type":"Unknown","Directional":false,"Links":[{"SourceID":119620,"TargetID":119619,"Directional":false}]},{"ID":2811,"SourceStructureID":5531,"TargetStructureID":82897,"Label":"5531-82897 via Adherens from 114827 -> 114826","Type":"Adherens","Directional":false,"Links":[{"SourceID":114827,"TargetID":114826,"Directional":false}]},{"ID":2812,"SourceStructureID":91913,"TargetStructureID":5531,"Label":"91913-5531 via Adherens from 147452 -> 147453","Type":"Adherens","Directional":false,"Links":[{"SourceID":147452,"TargetID":147453,"Directional":false}]},{"ID":2813,"SourceStructureID":91913,"TargetStructureID":5531,"Label":"91913-5531 via Gap Junction from 93447 -> 91912","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93447,"TargetID":91912,"Directional":false}]},{"ID":2814,"SourceStructureID":91918,"TargetStructureID":5531,"Label":"91918-5531 via Unknown from 107578 -> 107577","Type":"Unknown","Directional":false,"Links":[{"SourceID":107578,"TargetID":107577,"Directional":false}]},{"ID":2815,"SourceStructureID":5531,"TargetStructureID":91921,"Label":"5531-91921 via Adherens from 107549 -> 107548","Type":"Adherens","Directional":false,"Links":[{"SourceID":107549,"TargetID":107548,"Directional":false}]},{"ID":2816,"SourceStructureID":5531,"TargetStructureID":91959,"Label":"5531-91959 via Adherens from 106146 -> 106145, 106147 -> 106148","Type":"Adherens","Directional":false,"Links":[{"SourceID":106146,"TargetID":106145,"Directional":false},{"SourceID":106147,"TargetID":106148,"Directional":false}]},{"ID":2817,"SourceStructureID":5531,"TargetStructureID":91959,"Label":"5531-91959 via Unknown from 128710 -> 128711, 147448 -> 147449","Type":"Unknown","Directional":false,"Links":[{"SourceID":128710,"TargetID":128711,"Directional":false},{"SourceID":147448,"TargetID":147449,"Directional":false}]},{"ID":2818,"SourceStructureID":5531,"TargetStructureID":91994,"Label":"5531-91994 via Unknown from 147435 -> 147436","Type":"Unknown","Directional":false,"Links":[{"SourceID":147435,"TargetID":147436,"Directional":false}]},{"ID":2819,"SourceStructureID":93431,"TargetStructureID":5531,"Label":"93431-5531 via Unknown from 147458 -> 147457","Type":"Unknown","Directional":false,"Links":[{"SourceID":147458,"TargetID":147457,"Directional":false}]},{"ID":2820,"SourceStructureID":93437,"TargetStructureID":5531,"Label":"93437-5531 via Adherens from 93438 -> 93436","Type":"Adherens","Directional":false,"Links":[{"SourceID":93438,"TargetID":93436,"Directional":false}]},{"ID":2821,"SourceStructureID":95195,"TargetStructureID":5531,"Label":"95195-5531 via Unknown from 114552 -> 114551","Type":"Unknown","Directional":false,"Links":[{"SourceID":114552,"TargetID":114551,"Directional":false}]},{"ID":2822,"SourceStructureID":96240,"TargetStructureID":5531,"Label":"96240-5531 via Unknown from 114555 -> 114554","Type":"Unknown","Directional":false,"Links":[{"SourceID":114555,"TargetID":114554,"Directional":false}]},{"ID":2823,"SourceStructureID":5531,"TargetStructureID":96290,"Label":"5531-96290 via Unknown from 147410 -> 147409","Type":"Unknown","Directional":false,"Links":[{"SourceID":147410,"TargetID":147409,"Directional":false}]},{"ID":2824,"SourceStructureID":96895,"TargetStructureID":5531,"Label":"96895-5531 via Adherens from 147422 -> 147421","Type":"Adherens","Directional":false,"Links":[{"SourceID":147422,"TargetID":147421,"Directional":false}]},{"ID":2825,"SourceStructureID":5531,"TargetStructureID":96914,"Label":"5531-96914 via Unknown from 133904 -> 107165","Type":"Unknown","Directional":false,"Links":[{"SourceID":133904,"TargetID":107165,"Directional":false}]},{"ID":2826,"SourceStructureID":5531,"TargetStructureID":105258,"Label":"5531-105258 via Unknown from 105261 -> 105260","Type":"Unknown","Directional":false,"Links":[{"SourceID":105261,"TargetID":105260,"Directional":false}]},{"ID":2827,"SourceStructureID":106161,"TargetStructureID":5531,"Label":"106161-5531 via Postsynapse from 106162 -> 106163","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":106162,"TargetID":106163,"Directional":false}]},{"ID":2828,"SourceStructureID":106164,"TargetStructureID":5531,"Label":"106164-5531 via Adherens from 106188 -> 106187","Type":"Adherens","Directional":false,"Links":[{"SourceID":106188,"TargetID":106187,"Directional":false}]},{"ID":2829,"SourceStructureID":5531,"TargetStructureID":106172,"Label":"5531-106172 via Unknown from 106173 -> 106174","Type":"Unknown","Directional":false,"Links":[{"SourceID":106173,"TargetID":106174,"Directional":false}]},{"ID":2830,"SourceStructureID":106237,"TargetStructureID":5531,"Label":"106237-5531 via Adherens from 147387 -> 147386","Type":"Adherens","Directional":false,"Links":[{"SourceID":147387,"TargetID":147386,"Directional":false}]},{"ID":2831,"SourceStructureID":5531,"TargetStructureID":106237,"Label":"5531-106237 via Unknown from 147389 -> 147388","Type":"Unknown","Directional":false,"Links":[{"SourceID":147389,"TargetID":147388,"Directional":false}]},{"ID":2832,"SourceStructureID":5531,"TargetStructureID":106249,"Label":"5531-106249 via Unknown from 147393 -> 147394","Type":"Unknown","Directional":false,"Links":[{"SourceID":147393,"TargetID":147394,"Directional":false}]},{"ID":2833,"SourceStructureID":106502,"TargetStructureID":5531,"Label":"106502-5531 via Adherens from 106504 -> 106503","Type":"Adherens","Directional":false,"Links":[{"SourceID":106504,"TargetID":106503,"Directional":false}]},{"ID":2834,"SourceStructureID":106588,"TargetStructureID":5531,"Label":"106588-5531 via Unknown from 147395 -> 147396","Type":"Unknown","Directional":false,"Links":[{"SourceID":147395,"TargetID":147396,"Directional":false}]},{"ID":2835,"SourceStructureID":5531,"TargetStructureID":106651,"Label":"5531-106651 via Unknown from 125868 -> 125869","Type":"Unknown","Directional":false,"Links":[{"SourceID":125868,"TargetID":125869,"Directional":false}]},{"ID":2836,"SourceStructureID":5531,"TargetStructureID":106715,"Label":"5531-106715 via Unknown from 106728 -> 106729, 106735 -> 106734","Type":"Unknown","Directional":false,"Links":[{"SourceID":106728,"TargetID":106729,"Directional":false},{"SourceID":106735,"TargetID":106734,"Directional":false}]},{"ID":2837,"SourceStructureID":5531,"TargetStructureID":106922,"Label":"5531-106922 via Unknown from 106948 -> 106947","Type":"Unknown","Directional":false,"Links":[{"SourceID":106948,"TargetID":106947,"Directional":false}]},{"ID":2838,"SourceStructureID":106931,"TargetStructureID":5531,"Label":"106931-5531 via Unknown from 106933 -> 106932","Type":"Unknown","Directional":false,"Links":[{"SourceID":106933,"TargetID":106932,"Directional":false}]},{"ID":2839,"SourceStructureID":106935,"TargetStructureID":5531,"Label":"106935-5531 via Unknown from 106938 -> 106939","Type":"Unknown","Directional":false,"Links":[{"SourceID":106938,"TargetID":106939,"Directional":false}]},{"ID":2840,"SourceStructureID":5531,"TargetStructureID":107388,"Label":"5531-107388 via Gap Junction from 107389 -> 107390","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":107389,"TargetID":107390,"Directional":false}]},{"ID":2841,"SourceStructureID":5531,"TargetStructureID":107391,"Label":"5531-107391 via Unknown from 107392 -> 107394","Type":"Unknown","Directional":false,"Links":[{"SourceID":107392,"TargetID":107394,"Directional":false}]},{"ID":2842,"SourceStructureID":107420,"TargetStructureID":5531,"Label":"107420-5531 via Adherens from 107421 -> 107422","Type":"Adherens","Directional":false,"Links":[{"SourceID":107421,"TargetID":107422,"Directional":false}]},{"ID":2843,"SourceStructureID":107438,"TargetStructureID":5531,"Label":"107438-5531 via Unknown from 107441 -> 107440","Type":"Unknown","Directional":false,"Links":[{"SourceID":107441,"TargetID":107440,"Directional":false}]},{"ID":2844,"SourceStructureID":107570,"TargetStructureID":5531,"Label":"107570-5531 via Unknown from 107572 -> 107571","Type":"Unknown","Directional":false,"Links":[{"SourceID":107572,"TargetID":107571,"Directional":false}]},{"ID":2845,"SourceStructureID":5531,"TargetStructureID":107582,"Label":"5531-107582 via Unknown from 107586 -> 107585","Type":"Unknown","Directional":false,"Links":[{"SourceID":107586,"TargetID":107585,"Directional":false}]},{"ID":2846,"SourceStructureID":107587,"TargetStructureID":5531,"Label":"107587-5531 via Unknown from 107590 -> 107589","Type":"Unknown","Directional":false,"Links":[{"SourceID":107590,"TargetID":107589,"Directional":false}]},{"ID":2847,"SourceStructureID":5531,"TargetStructureID":107672,"Label":"5531-107672 via Unknown from 107673 -> 107674","Type":"Unknown","Directional":false,"Links":[{"SourceID":107673,"TargetID":107674,"Directional":false}]},{"ID":2848,"SourceStructureID":5531,"TargetStructureID":107683,"Label":"5531-107683 via Unknown from 107685 -> 107684","Type":"Unknown","Directional":false,"Links":[{"SourceID":107685,"TargetID":107684,"Directional":false}]},{"ID":2849,"SourceStructureID":107693,"TargetStructureID":5531,"Label":"107693-5531 via Unknown from 147420 -> 147419","Type":"Unknown","Directional":false,"Links":[{"SourceID":147420,"TargetID":147419,"Directional":false}]},{"ID":2850,"SourceStructureID":107699,"TargetStructureID":5531,"Label":"107699-5531 via Adherens from 107702 -> 107701","Type":"Adherens","Directional":false,"Links":[{"SourceID":107702,"TargetID":107701,"Directional":false}]},{"ID":2851,"SourceStructureID":5531,"TargetStructureID":107699,"Label":"5531-107699 via Unknown from 107703 -> 107704","Type":"Unknown","Directional":false,"Links":[{"SourceID":107703,"TargetID":107704,"Directional":false}]},{"ID":2852,"SourceStructureID":5531,"TargetStructureID":108045,"Label":"5531-108045 via Unknown from 108058 -> 108055","Type":"Unknown","Directional":false,"Links":[{"SourceID":108058,"TargetID":108055,"Directional":false}]},{"ID":2853,"SourceStructureID":110648,"TargetStructureID":5531,"Label":"110648-5531 via Unknown from 110655 -> 110656","Type":"Unknown","Directional":false,"Links":[{"SourceID":110655,"TargetID":110656,"Directional":false}]},{"ID":2854,"SourceStructureID":110649,"TargetStructureID":5531,"Label":"110649-5531 via Unknown from 110651 -> 110650","Type":"Unknown","Directional":false,"Links":[{"SourceID":110651,"TargetID":110650,"Directional":false}]},{"ID":2855,"SourceStructureID":110671,"TargetStructureID":5531,"Label":"110671-5531 via Unknown from 110673 -> 110672","Type":"Unknown","Directional":false,"Links":[{"SourceID":110673,"TargetID":110672,"Directional":false}]},{"ID":2856,"SourceStructureID":110676,"TargetStructureID":5531,"Label":"110676-5531 via Unknown from 110677 -> 110678","Type":"Unknown","Directional":false,"Links":[{"SourceID":110677,"TargetID":110678,"Directional":false}]},{"ID":2857,"SourceStructureID":5531,"TargetStructureID":110691,"Label":"5531-110691 via Unknown from 110692 -> 110693","Type":"Unknown","Directional":false,"Links":[{"SourceID":110692,"TargetID":110693,"Directional":false}]},{"ID":2858,"SourceStructureID":110694,"TargetStructureID":5531,"Label":"110694-5531 via Unknown from 110695 -> 110696","Type":"Unknown","Directional":false,"Links":[{"SourceID":110695,"TargetID":110696,"Directional":false}]},{"ID":2859,"SourceStructureID":110697,"TargetStructureID":5531,"Label":"110697-5531 via Unknown from 110698 -> 110699","Type":"Unknown","Directional":false,"Links":[{"SourceID":110698,"TargetID":110699,"Directional":false}]},{"ID":2860,"SourceStructureID":5531,"TargetStructureID":110700,"Label":"5531-110700 via Unknown from 110702 -> 110701","Type":"Unknown","Directional":false,"Links":[{"SourceID":110702,"TargetID":110701,"Directional":false}]},{"ID":2861,"SourceStructureID":110707,"TargetStructureID":5531,"Label":"110707-5531 via Unknown from 110713 -> 110712","Type":"Unknown","Directional":false,"Links":[{"SourceID":110713,"TargetID":110712,"Directional":false}]},{"ID":2862,"SourceStructureID":5531,"TargetStructureID":110714,"Label":"5531-110714 via Unknown from 110719 -> 110718","Type":"Unknown","Directional":false,"Links":[{"SourceID":110719,"TargetID":110718,"Directional":false}]},{"ID":2863,"SourceStructureID":5531,"TargetStructureID":110715,"Label":"5531-110715 via Unknown from 110717 -> 110716","Type":"Unknown","Directional":false,"Links":[{"SourceID":110717,"TargetID":110716,"Directional":false}]},{"ID":2864,"SourceStructureID":5531,"TargetStructureID":111842,"Label":"5531-111842 via Unknown from 111844 -> 111845","Type":"Unknown","Directional":false,"Links":[{"SourceID":111844,"TargetID":111845,"Directional":false}]},{"ID":2865,"SourceStructureID":5531,"TargetStructureID":111860,"Label":"5531-111860 via Unknown from 111861 -> 111862","Type":"Unknown","Directional":false,"Links":[{"SourceID":111861,"TargetID":111862,"Directional":false}]},{"ID":2866,"SourceStructureID":5531,"TargetStructureID":113841,"Label":"5531-113841 via Unknown from 113840 -> 113842","Type":"Unknown","Directional":false,"Links":[{"SourceID":113840,"TargetID":113842,"Directional":false}]},{"ID":2867,"SourceStructureID":114547,"TargetStructureID":5531,"Label":"114547-5531 via Unknown from 114548 -> 114546","Type":"Unknown","Directional":false,"Links":[{"SourceID":114548,"TargetID":114546,"Directional":false}]},{"ID":2868,"SourceStructureID":5531,"TargetStructureID":114692,"Label":"5531-114692 via Unknown from 114694 -> 114693","Type":"Unknown","Directional":false,"Links":[{"SourceID":114694,"TargetID":114693,"Directional":false}]},{"ID":2869,"SourceStructureID":5531,"TargetStructureID":114713,"Label":"5531-114713 via Unknown from 114714 -> 114715, 114716 -> 114717","Type":"Unknown","Directional":false,"Links":[{"SourceID":114714,"TargetID":114715,"Directional":false},{"SourceID":114716,"TargetID":114717,"Directional":false}]},{"ID":2870,"SourceStructureID":5531,"TargetStructureID":114734,"Label":"5531-114734 via Unknown from 147428 -> 147427","Type":"Unknown","Directional":false,"Links":[{"SourceID":147428,"TargetID":147427,"Directional":false}]},{"ID":2871,"SourceStructureID":5531,"TargetStructureID":114741,"Label":"5531-114741 via Unknown from 114742 -> 114743","Type":"Unknown","Directional":false,"Links":[{"SourceID":114742,"TargetID":114743,"Directional":false}]},{"ID":2872,"SourceStructureID":5531,"TargetStructureID":114760,"Label":"5531-114760 via Unknown from 114759 -> 114762","Type":"Unknown","Directional":false,"Links":[{"SourceID":114759,"TargetID":114762,"Directional":false}]},{"ID":2873,"SourceStructureID":120256,"TargetStructureID":5531,"Label":"120256-5531 via Unknown from 133911 -> 107203","Type":"Unknown","Directional":false,"Links":[{"SourceID":133911,"TargetID":107203,"Directional":false}]},{"ID":2874,"SourceStructureID":5531,"TargetStructureID":133891,"Label":"5531-133891 via Unknown from 147433 -> 147434","Type":"Unknown","Directional":false,"Links":[{"SourceID":147433,"TargetID":147434,"Directional":false}]},{"ID":2875,"SourceStructureID":5531,"TargetStructureID":147412,"Label":"5531-147412 via Unknown from 147411 -> 147418, 147415 -> 147416","Type":"Unknown","Directional":false,"Links":[{"SourceID":147411,"TargetID":147418,"Directional":false},{"SourceID":147415,"TargetID":147416,"Directional":false}]},{"ID":2876,"SourceStructureID":5535,"TargetStructureID":5534,"Label":"5535-5534 via Gap Junction from 55255 -> 55254","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55255,"TargetID":55254,"Directional":false}]},{"ID":2877,"SourceStructureID":5534,"TargetStructureID":5537,"Label":"5534-5537 via Adherens from 118319 -> 118318","Type":"Adherens","Directional":false,"Links":[{"SourceID":118319,"TargetID":118318,"Directional":false}]},{"ID":2878,"SourceStructureID":5534,"TargetStructureID":5537,"Label":"5534-5537 via Gap Junction from 117971 -> 117970, 117973 -> 117972, 118273 -> 118272, 118321 -> 118320, 118326 -> 118325, 118331 -> 118330, 118333 -> 118332","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117971,"TargetID":117970,"Directional":false},{"SourceID":117973,"TargetID":117972,"Directional":false},{"SourceID":118273,"TargetID":118272,"Directional":false},{"SourceID":118321,"TargetID":118320,"Directional":false},{"SourceID":118326,"TargetID":118325,"Directional":false},{"SourceID":118331,"TargetID":118330,"Directional":false},{"SourceID":118333,"TargetID":118332,"Directional":false}]},{"ID":2879,"SourceStructureID":5601,"TargetStructureID":5534,"Label":"5601-5534 via Adherens from 92992 -> 92991","Type":"Adherens","Directional":false,"Links":[{"SourceID":92992,"TargetID":92991,"Directional":false}]},{"ID":2880,"SourceStructureID":5601,"TargetStructureID":5534,"Label":"5601-5534 via Gap Junction from 57499 -> 54623, 58586 -> 54680","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57499,"TargetID":54623,"Directional":false},{"SourceID":58586,"TargetID":54680,"Directional":false}]},{"ID":2881,"SourceStructureID":5606,"TargetStructureID":5534,"Label":"5606-5534 via Gap Junction from 36932 -> 34674, 56519 -> 38945, 118347 -> 118346, 118349 -> 118348","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36932,"TargetID":34674,"Directional":false},{"SourceID":56519,"TargetID":38945,"Directional":false},{"SourceID":118347,"TargetID":118346,"Directional":false},{"SourceID":118349,"TargetID":118348,"Directional":false}]},{"ID":2882,"SourceStructureID":6127,"TargetStructureID":5534,"Label":"6127-5534 via Gap Junction from 118297 -> 118296, 122616 -> 122615","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118297,"TargetID":118296,"Directional":false},{"SourceID":122616,"TargetID":122615,"Directional":false}]},{"ID":2883,"SourceStructureID":7225,"TargetStructureID":5534,"Label":"7225-5534 via Gap Junction from 118276 -> 118277, 118285 -> 118284","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118276,"TargetID":118277,"Directional":false},{"SourceID":118285,"TargetID":118284,"Directional":false}]},{"ID":2884,"SourceStructureID":5534,"TargetStructureID":7279,"Label":"5534-7279 via Gap Junction from 34673 -> 34739","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":34673,"TargetID":34739,"Directional":false}]},{"ID":2885,"SourceStructureID":5534,"TargetStructureID":11229,"Label":"5534-11229 via Gap Junction from 118323 -> 118324","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118323,"TargetID":118324,"Directional":false}]},{"ID":2886,"SourceStructureID":5534,"TargetStructureID":25155,"Label":"5534-25155 via Gap Junction from 34643 -> 34642, 118278 -> 118279, 118282 -> 118280","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":34643,"TargetID":34642,"Directional":false},{"SourceID":118278,"TargetID":118279,"Directional":false},{"SourceID":118282,"TargetID":118280,"Directional":false}]},{"ID":2887,"SourceStructureID":44256,"TargetStructureID":5534,"Label":"44256-5534 via Gap Junction from 118337 -> 118336, 118338 -> 118339, 118340 -> 118341, 123115 -> 123116","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118337,"TargetID":118336,"Directional":false},{"SourceID":118338,"TargetID":118339,"Directional":false},{"SourceID":118340,"TargetID":118341,"Directional":false},{"SourceID":123115,"TargetID":123116,"Directional":false}]},{"ID":2888,"SourceStructureID":53828,"TargetStructureID":5534,"Label":"53828-5534 via Gap Junction from 118345 -> 118344","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118345,"TargetID":118344,"Directional":false}]},{"ID":2889,"SourceStructureID":77625,"TargetStructureID":5534,"Label":"77625-5534 via Adherens from 135572 -> 135571","Type":"Adherens","Directional":false,"Links":[{"SourceID":135572,"TargetID":135571,"Directional":false}]},{"ID":2890,"SourceStructureID":5534,"TargetStructureID":118301,"Label":"5534-118301 via Gap Junction from 118299 -> 118305, 118304 -> 118300","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118299,"TargetID":118305,"Directional":false},{"SourceID":118304,"TargetID":118300,"Directional":false}]},{"ID":2891,"SourceStructureID":5535,"TargetStructureID":5537,"Label":"5535-5537 via Gap Junction from 38183 -> 38184, 59580 -> 59575, 82497 -> 82498, 118269 -> 118268, 122946 -> 122947, 122959 -> 122960, 122985 -> 122986, 122988 -> 122987","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38183,"TargetID":38184,"Directional":false},{"SourceID":59580,"TargetID":59575,"Directional":false},{"SourceID":82497,"TargetID":82498,"Directional":false},{"SourceID":118269,"TargetID":118268,"Directional":false},{"SourceID":122946,"TargetID":122947,"Directional":false},{"SourceID":122959,"TargetID":122960,"Directional":false},{"SourceID":122985,"TargetID":122986,"Directional":false},{"SourceID":122988,"TargetID":122987,"Directional":false}]},{"ID":2892,"SourceStructureID":5535,"TargetStructureID":5608,"Label":"5535-5608 via Gap Junction from 121845 -> 121844","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121845,"TargetID":121844,"Directional":false}]},{"ID":2893,"SourceStructureID":5637,"TargetStructureID":5535,"Label":"5637-5535 via Gap Junction from 56006 -> 59574","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56006,"TargetID":59574,"Directional":false}]},{"ID":2894,"SourceStructureID":5535,"TargetStructureID":6909,"Label":"5535-6909 via Gap Junction from 122689 -> 122687, 122953 -> 122952","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122689,"TargetID":122687,"Directional":false},{"SourceID":122953,"TargetID":122952,"Directional":false}]},{"ID":2895,"SourceStructureID":6964,"TargetStructureID":5535,"Label":"6964-5535 via Gap Junction from 122951 -> 122950","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122951,"TargetID":122950,"Directional":false}]},{"ID":2896,"SourceStructureID":6965,"TargetStructureID":5535,"Label":"6965-5535 via Gap Junction from 122998 -> 122982, 123004 -> 122992, 123006 -> 123007","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122998,"TargetID":122982,"Directional":false},{"SourceID":123004,"TargetID":122992,"Directional":false},{"SourceID":123006,"TargetID":123007,"Directional":false}]},{"ID":2897,"SourceStructureID":5535,"TargetStructureID":7225,"Label":"5535-7225 via Gap Junction from 38440 -> 38441, 122980 -> 122981","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38440,"TargetID":38441,"Directional":false},{"SourceID":122980,"TargetID":122981,"Directional":false}]},{"ID":2898,"SourceStructureID":7345,"TargetStructureID":5535,"Label":"7345-5535 via Gap Junction from 47840 -> 122954","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47840,"TargetID":122954,"Directional":false}]},{"ID":2899,"SourceStructureID":5535,"TargetStructureID":11229,"Label":"5535-11229 via Gap Junction from 32349 -> 28977","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32349,"TargetID":28977,"Directional":false}]},{"ID":2900,"SourceStructureID":25155,"TargetStructureID":5535,"Label":"25155-5535 via Gap Junction from 122983 -> 122984, 122990 -> 122991","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122983,"TargetID":122984,"Directional":false},{"SourceID":122990,"TargetID":122991,"Directional":false}]},{"ID":2901,"SourceStructureID":5536,"TargetStructureID":5536,"Label":"5536-5536 via Gap Junction from 121918 -> 121920","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121918,"TargetID":121920,"Directional":false}]},{"ID":2902,"SourceStructureID":7225,"TargetStructureID":5536,"Label":"7225-5536 via Gap Junction from 158865 -> 122501","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":158865,"TargetID":122501,"Directional":false}]},{"ID":2903,"SourceStructureID":19571,"TargetStructureID":5536,"Label":"19571-5536 via Adherens from 22710 -> 22703","Type":"Adherens","Directional":false,"Links":[{"SourceID":22710,"TargetID":22703,"Directional":false}]},{"ID":2904,"SourceStructureID":121913,"TargetStructureID":5536,"Label":"121913-5536 via Gap Junction from 121914 -> 116945","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121914,"TargetID":116945,"Directional":false}]},{"ID":2905,"SourceStructureID":121916,"TargetStructureID":5536,"Label":"121916-5536 via Gap Junction from 121917 -> 121915","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121917,"TargetID":121915,"Directional":false}]},{"ID":2906,"SourceStructureID":25155,"TargetStructureID":5537,"Label":"25155-5537 via Adherens from 38194 -> 38193","Type":"Adherens","Directional":false,"Links":[{"SourceID":38194,"TargetID":38193,"Directional":false}]},{"ID":2907,"SourceStructureID":25155,"TargetStructureID":5537,"Label":"25155-5537 via Gap Junction from 38186 -> 38185, 38191 -> 38192, 38196 -> 38197","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38186,"TargetID":38185,"Directional":false},{"SourceID":38191,"TargetID":38192,"Directional":false},{"SourceID":38196,"TargetID":38197,"Directional":false}]},{"ID":2908,"SourceStructureID":5537,"TargetStructureID":44256,"Label":"5537-44256 via Gap Junction from 120584 -> 44264","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120584,"TargetID":44264,"Directional":false}]},{"ID":2909,"SourceStructureID":7564,"TargetStructureID":5541,"Label":"7564-5541 via Gap Junction from 118940 -> 118939, 118942 -> 118941","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118940,"TargetID":118939,"Directional":false},{"SourceID":118942,"TargetID":118941,"Directional":false}]},{"ID":2910,"SourceStructureID":19383,"TargetStructureID":5541,"Label":"19383-5541 via Adherens from 38831 -> 38830","Type":"Adherens","Directional":false,"Links":[{"SourceID":38831,"TargetID":38830,"Directional":false}]},{"ID":2911,"SourceStructureID":130365,"TargetStructureID":5542,"Label":"130365-5542 via Adherens from 130366 -> 130364","Type":"Adherens","Directional":false,"Links":[{"SourceID":130366,"TargetID":130364,"Directional":false}]},{"ID":2912,"SourceStructureID":11092,"TargetStructureID":5543,"Label":"11092-5543 via Gap Junction from 129520 -> 123343, 136324 -> 136323","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129520,"TargetID":123343,"Directional":false},{"SourceID":136324,"TargetID":136323,"Directional":false}]},{"ID":2913,"SourceStructureID":5544,"TargetStructureID":7564,"Label":"5544-7564 via Unknown from 123788 -> 123787","Type":"Unknown","Directional":false,"Links":[{"SourceID":123788,"TargetID":123787,"Directional":false}]},{"ID":2914,"SourceStructureID":13525,"TargetStructureID":5544,"Label":"13525-5544 via Unknown from 158493 -> 158492","Type":"Unknown","Directional":false,"Links":[{"SourceID":158493,"TargetID":158492,"Directional":false}]},{"ID":2915,"SourceStructureID":5545,"TargetStructureID":10963,"Label":"5545-10963 via Gap Junction from 158489 -> 158490","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":158489,"TargetID":158490,"Directional":false}]},{"ID":2916,"SourceStructureID":5551,"TargetStructureID":5636,"Label":"5551-5636 via Gap Junction from 116934 -> 116935","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116934,"TargetID":116935,"Directional":false}]},{"ID":2917,"SourceStructureID":5551,"TargetStructureID":7279,"Label":"5551-7279 via Cistern Pre from 116917 -> 116918","Type":"Cistern Pre","Directional":false,"Links":[{"SourceID":116917,"TargetID":116918,"Directional":false}]},{"ID":2918,"SourceStructureID":5556,"TargetStructureID":34888,"Label":"5556-34888 via Touch from 34891 -> 34890","Type":"Touch","Directional":false,"Links":[{"SourceID":34891,"TargetID":34890,"Directional":false}]},{"ID":2919,"SourceStructureID":5561,"TargetStructureID":5561,"Label":"5561-5561 via Gap Junction from 148189 -> 148190","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":148189,"TargetID":148190,"Directional":false}]},{"ID":2920,"SourceStructureID":5562,"TargetStructureID":5561,"Label":"5562-5561 via Touch from 148272 -> 148273","Type":"Touch","Directional":false,"Links":[{"SourceID":148272,"TargetID":148273,"Directional":false}]},{"ID":2921,"SourceStructureID":5565,"TargetStructureID":5561,"Label":"5565-5561 via Adherens from 148158 -> 148159","Type":"Adherens","Directional":false,"Links":[{"SourceID":148158,"TargetID":148159,"Directional":false}]},{"ID":2922,"SourceStructureID":5565,"TargetStructureID":5561,"Label":"5565-5561 via Gap Junction from 50283 -> 50282, 54005 -> 54004, 97426 -> 97424, 97430 -> 97429, 97442 -> 97441, 119256 -> 119255, 148188 -> 148187, 148202 -> 148203, 148267 -> 148268","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50283,"TargetID":50282,"Directional":false},{"SourceID":54005,"TargetID":54004,"Directional":false},{"SourceID":97426,"TargetID":97424,"Directional":false},{"SourceID":97430,"TargetID":97429,"Directional":false},{"SourceID":97442,"TargetID":97441,"Directional":false},{"SourceID":119256,"TargetID":119255,"Directional":false},{"SourceID":148188,"TargetID":148187,"Directional":false},{"SourceID":148202,"TargetID":148203,"Directional":false},{"SourceID":148267,"TargetID":148268,"Directional":false}]},{"ID":2923,"SourceStructureID":5568,"TargetStructureID":5561,"Label":"5568-5561 via Gap Junction from 96753 -> 96752, 121247 -> 121246","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96753,"TargetID":96752,"Directional":false},{"SourceID":121247,"TargetID":121246,"Directional":false}]},{"ID":2924,"SourceStructureID":5561,"TargetStructureID":6117,"Label":"5561-6117 via Touch from 147482 -> 147483","Type":"Touch","Directional":false,"Links":[{"SourceID":147482,"TargetID":147483,"Directional":false}]},{"ID":2925,"SourceStructureID":7024,"TargetStructureID":5561,"Label":"7024-5561 via Adherens from 114366 -> 114367","Type":"Adherens","Directional":false,"Links":[{"SourceID":114366,"TargetID":114367,"Directional":false}]},{"ID":2926,"SourceStructureID":7024,"TargetStructureID":5561,"Label":"7024-5561 via Gap Junction from 45178 -> 45177, 93898 -> 93896","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45178,"TargetID":45177,"Directional":false},{"SourceID":93898,"TargetID":93896,"Directional":false}]},{"ID":2927,"SourceStructureID":7024,"TargetStructureID":5561,"Label":"7024-5561 via Touch from 148217 -> 148216","Type":"Touch","Directional":false,"Links":[{"SourceID":148217,"TargetID":148216,"Directional":false}]},{"ID":2928,"SourceStructureID":7050,"TargetStructureID":5561,"Label":"7050-5561 via Adherens from 148261 -> 148260","Type":"Adherens","Directional":false,"Links":[{"SourceID":148261,"TargetID":148260,"Directional":false}]},{"ID":2929,"SourceStructureID":5561,"TargetStructureID":7050,"Label":"5561-7050 via Gap Junction from 148262 -> 14313","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":148262,"TargetID":14313,"Directional":false}]},{"ID":2930,"SourceStructureID":8037,"TargetStructureID":5561,"Label":"8037-5561 via Adherens from 148149 -> 148148","Type":"Adherens","Directional":false,"Links":[{"SourceID":148149,"TargetID":148148,"Directional":false}]},{"ID":2931,"SourceStructureID":8037,"TargetStructureID":5561,"Label":"8037-5561 via Gap Junction from 29899 -> 29898, 48966 -> 48965, 49481 -> 49482, 148177 -> 148176","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29899,"TargetID":29898,"Directional":false},{"SourceID":48966,"TargetID":48965,"Directional":false},{"SourceID":49481,"TargetID":49482,"Directional":false},{"SourceID":148177,"TargetID":148176,"Directional":false}]},{"ID":2932,"SourceStructureID":5561,"TargetStructureID":12897,"Label":"5561-12897 via Gap Junction from 46185 -> 49636","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46185,"TargetID":49636,"Directional":false}]},{"ID":2933,"SourceStructureID":20136,"TargetStructureID":5561,"Label":"20136-5561 via Adherens from 119291 -> 119290, 135794 -> 135793, 135801 -> 135802","Type":"Adherens","Directional":false,"Links":[{"SourceID":119291,"TargetID":119290,"Directional":false},{"SourceID":135794,"TargetID":135793,"Directional":false},{"SourceID":135801,"TargetID":135802,"Directional":false}]},{"ID":2934,"SourceStructureID":5561,"TargetStructureID":20136,"Label":"5561-20136 via Gap Junction from 46046 -> 29124, 96953 -> 96952, 97689 -> 97688, 115380 -> 115378, 119285 -> 119286","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46046,"TargetID":29124,"Directional":false},{"SourceID":96953,"TargetID":96952,"Directional":false},{"SourceID":97689,"TargetID":97688,"Directional":false},{"SourceID":115380,"TargetID":115378,"Directional":false},{"SourceID":119285,"TargetID":119286,"Directional":false}]},{"ID":2935,"SourceStructureID":5561,"TargetStructureID":96855,"Label":"5561-96855 via Adherens from 115215 -> 115216","Type":"Adherens","Directional":false,"Links":[{"SourceID":115215,"TargetID":115216,"Directional":false}]},{"ID":2936,"SourceStructureID":96964,"TargetStructureID":5561,"Label":"96964-5561 via Adherens from 96966 -> 96963","Type":"Adherens","Directional":false,"Links":[{"SourceID":96966,"TargetID":96963,"Directional":false}]},{"ID":2937,"SourceStructureID":96976,"TargetStructureID":5561,"Label":"96976-5561 via Adherens from 96979 -> 96978","Type":"Adherens","Directional":false,"Links":[{"SourceID":96979,"TargetID":96978,"Directional":false}]},{"ID":2938,"SourceStructureID":96993,"TargetStructureID":5561,"Label":"96993-5561 via Gap Junction from 96994 -> 96992","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96994,"TargetID":96992,"Directional":false}]},{"ID":2939,"SourceStructureID":5561,"TargetStructureID":97012,"Label":"5561-97012 via Adherens from 97010 -> 97013","Type":"Adherens","Directional":false,"Links":[{"SourceID":97010,"TargetID":97013,"Directional":false}]},{"ID":2940,"SourceStructureID":97025,"TargetStructureID":5561,"Label":"97025-5561 via Unknown from 97028 -> 97027","Type":"Unknown","Directional":false,"Links":[{"SourceID":97028,"TargetID":97027,"Directional":false}]},{"ID":2941,"SourceStructureID":97029,"TargetStructureID":5561,"Label":"97029-5561 via Unknown from 97030 -> 97027","Type":"Unknown","Directional":false,"Links":[{"SourceID":97030,"TargetID":97027,"Directional":false}]},{"ID":2942,"SourceStructureID":97159,"TargetStructureID":5561,"Label":"97159-5561 via Gap Junction from 97160 -> 97144","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97160,"TargetID":97144,"Directional":false}]},{"ID":2943,"SourceStructureID":5561,"TargetStructureID":97308,"Label":"5561-97308 via Unknown from 97320 -> 97319","Type":"Unknown","Directional":false,"Links":[{"SourceID":97320,"TargetID":97319,"Directional":false}]},{"ID":2944,"SourceStructureID":5561,"TargetStructureID":97352,"Label":"5561-97352 via Gap Junction from 46120 -> 97353","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46120,"TargetID":97353,"Directional":false}]},{"ID":2945,"SourceStructureID":97407,"TargetStructureID":5561,"Label":"97407-5561 via Adherens from 97412 -> 97410","Type":"Adherens","Directional":false,"Links":[{"SourceID":97412,"TargetID":97410,"Directional":false}]},{"ID":2946,"SourceStructureID":5561,"TargetStructureID":97457,"Label":"5561-97457 via Unknown from 97460 -> 97459","Type":"Unknown","Directional":false,"Links":[{"SourceID":97460,"TargetID":97459,"Directional":false}]},{"ID":2947,"SourceStructureID":5561,"TargetStructureID":97486,"Label":"5561-97486 via Adherens from 115209 -> 115210","Type":"Adherens","Directional":false,"Links":[{"SourceID":115209,"TargetID":115210,"Directional":false}]},{"ID":2948,"SourceStructureID":97657,"TargetStructureID":5561,"Label":"97657-5561 via Unknown from 97658 -> 97656","Type":"Unknown","Directional":false,"Links":[{"SourceID":97658,"TargetID":97656,"Directional":false}]},{"ID":2949,"SourceStructureID":115206,"TargetStructureID":5561,"Label":"115206-5561 via Unknown from 130130 -> 130129","Type":"Unknown","Directional":false,"Links":[{"SourceID":130130,"TargetID":130129,"Directional":false}]},{"ID":2950,"SourceStructureID":5562,"TargetStructureID":5562,"Label":"5562-5562 via Gap Junction from 134645 -> 134644","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134645,"TargetID":134644,"Directional":false}]},{"ID":2951,"SourceStructureID":5562,"TargetStructureID":5623,"Label":"5562-5623 via Gap Junction from 48462 -> 40359, 63537 -> 63540","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48462,"TargetID":40359,"Directional":false},{"SourceID":63537,"TargetID":63540,"Directional":false}]},{"ID":2952,"SourceStructureID":5649,"TargetStructureID":5562,"Label":"5649-5562 via Adherens from 80301 -> 80302, 80337 -> 80336","Type":"Adherens","Directional":false,"Links":[{"SourceID":80301,"TargetID":80302,"Directional":false},{"SourceID":80337,"TargetID":80336,"Directional":false}]},{"ID":2953,"SourceStructureID":5562,"TargetStructureID":5649,"Label":"5562-5649 via Gap Junction from 63241 -> 63240, 100704 -> 100705","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63241,"TargetID":63240,"Directional":false},{"SourceID":100704,"TargetID":100705,"Directional":false}]},{"ID":2954,"SourceStructureID":5916,"TargetStructureID":5562,"Label":"5916-5562 via Gap Junction from 54190 -> 54188, 63136 -> 63137","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54190,"TargetID":54188,"Directional":false},{"SourceID":63136,"TargetID":63137,"Directional":false}]},{"ID":2955,"SourceStructureID":5562,"TargetStructureID":6997,"Label":"5562-6997 via Adherens from 135119 -> 135118","Type":"Adherens","Directional":false,"Links":[{"SourceID":135119,"TargetID":135118,"Directional":false}]},{"ID":2956,"SourceStructureID":6997,"TargetStructureID":5562,"Label":"6997-5562 via Gap Junction from 63939 -> 48974, 99170 -> 99169","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63939,"TargetID":48974,"Directional":false},{"SourceID":99170,"TargetID":99169,"Directional":false}]},{"ID":2957,"SourceStructureID":5562,"TargetStructureID":7050,"Label":"5562-7050 via Gap Junction from 80243 -> 80242, 80257 -> 80258, 134641 -> 134640, 134653 -> 134652","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":80243,"TargetID":80242,"Directional":false},{"SourceID":80257,"TargetID":80258,"Directional":false},{"SourceID":134641,"TargetID":134640,"Directional":false},{"SourceID":134653,"TargetID":134652,"Directional":false}]},{"ID":2958,"SourceStructureID":5562,"TargetStructureID":8037,"Label":"5562-8037 via Adherens from 78642 -> 78643, 135126 -> 135125, 135141 -> 135140","Type":"Adherens","Directional":false,"Links":[{"SourceID":78642,"TargetID":78643,"Directional":false},{"SourceID":135126,"TargetID":135125,"Directional":false},{"SourceID":135141,"TargetID":135140,"Directional":false}]},{"ID":2959,"SourceStructureID":5562,"TargetStructureID":8037,"Label":"5562-8037 via Gap Junction from 31056 -> 24601, 48941 -> 48940, 49538 -> 49007, 63670 -> 14326, 63864 -> 49104, 78640 -> 78641, 134466 -> 134465, 134498 -> 134499","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":31056,"TargetID":24601,"Directional":false},{"SourceID":48941,"TargetID":48940,"Directional":false},{"SourceID":49538,"TargetID":49007,"Directional":false},{"SourceID":63670,"TargetID":14326,"Directional":false},{"SourceID":63864,"TargetID":49104,"Directional":false},{"SourceID":78640,"TargetID":78641,"Directional":false},{"SourceID":134466,"TargetID":134465,"Directional":false},{"SourceID":134498,"TargetID":134499,"Directional":false}]},{"ID":2960,"SourceStructureID":5562,"TargetStructureID":8576,"Label":"5562-8576 via Unknown from 77752 -> 77753, 77902 -> 77903","Type":"Unknown","Directional":false,"Links":[{"SourceID":77752,"TargetID":77753,"Directional":false},{"SourceID":77902,"TargetID":77903,"Directional":false}]},{"ID":2961,"SourceStructureID":5562,"TargetStructureID":11531,"Label":"5562-11531 via Unknown from 78160 -> 78161","Type":"Unknown","Directional":false,"Links":[{"SourceID":78160,"TargetID":78161,"Directional":false}]},{"ID":2962,"SourceStructureID":5562,"TargetStructureID":12897,"Label":"5562-12897 via Adherens from 135133 -> 135132","Type":"Adherens","Directional":false,"Links":[{"SourceID":135133,"TargetID":135132,"Directional":false}]},{"ID":2963,"SourceStructureID":12897,"TargetStructureID":5562,"Label":"12897-5562 via Gap Junction from 24675 -> 47290, 25323 -> 25322, 63248 -> 63247","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24675,"TargetID":47290,"Directional":false},{"SourceID":25323,"TargetID":25322,"Directional":false},{"SourceID":63248,"TargetID":63247,"Directional":false}]},{"ID":2964,"SourceStructureID":5562,"TargetStructureID":31024,"Label":"5562-31024 via Adherens from 76376 -> 76377, 76412 -> 76411, 78451 -> 78452","Type":"Adherens","Directional":false,"Links":[{"SourceID":76376,"TargetID":76377,"Directional":false},{"SourceID":76412,"TargetID":76411,"Directional":false},{"SourceID":78451,"TargetID":78452,"Directional":false}]},{"ID":2965,"SourceStructureID":31024,"TargetStructureID":5562,"Label":"31024-5562 via Unknown from 77818 -> 77819, 78447 -> 78448","Type":"Unknown","Directional":false,"Links":[{"SourceID":77818,"TargetID":77819,"Directional":false},{"SourceID":78447,"TargetID":78448,"Directional":false}]},{"ID":2966,"SourceStructureID":5562,"TargetStructureID":36516,"Label":"5562-36516 via Unknown from 79663 -> 79664","Type":"Unknown","Directional":false,"Links":[{"SourceID":79663,"TargetID":79664,"Directional":false}]},{"ID":2967,"SourceStructureID":58696,"TargetStructureID":5562,"Label":"58696-5562 via Unknown from 134484 -> 79215","Type":"Unknown","Directional":false,"Links":[{"SourceID":134484,"TargetID":79215,"Directional":false}]},{"ID":2968,"SourceStructureID":61816,"TargetStructureID":5562,"Label":"61816-5562 via Adherens from 80726 -> 77195, 80728 -> 76441","Type":"Adherens","Directional":false,"Links":[{"SourceID":80726,"TargetID":77195,"Directional":false},{"SourceID":80728,"TargetID":76441,"Directional":false}]},{"ID":2969,"SourceStructureID":5562,"TargetStructureID":61816,"Label":"5562-61816 via Unknown from 80732 -> 80733","Type":"Unknown","Directional":false,"Links":[{"SourceID":80732,"TargetID":80733,"Directional":false}]},{"ID":2970,"SourceStructureID":63371,"TargetStructureID":5562,"Label":"63371-5562 via Adherens from 63739 -> 63738, 63903 -> 63902","Type":"Adherens","Directional":false,"Links":[{"SourceID":63739,"TargetID":63738,"Directional":false},{"SourceID":63903,"TargetID":63902,"Directional":false}]},{"ID":2971,"SourceStructureID":65369,"TargetStructureID":5562,"Label":"65369-5562 via Unknown from 78914 -> 78915","Type":"Unknown","Directional":false,"Links":[{"SourceID":78914,"TargetID":78915,"Directional":false}]},{"ID":2972,"SourceStructureID":5562,"TargetStructureID":67269,"Label":"5562-67269 via Adherens from 80289 -> 80288","Type":"Adherens","Directional":false,"Links":[{"SourceID":80289,"TargetID":80288,"Directional":false}]},{"ID":2973,"SourceStructureID":5562,"TargetStructureID":67269,"Label":"5562-67269 via Unknown from 80277 -> 80278","Type":"Unknown","Directional":false,"Links":[{"SourceID":80277,"TargetID":80278,"Directional":false}]},{"ID":2974,"SourceStructureID":67469,"TargetStructureID":5562,"Label":"67469-5562 via Unknown from 78795 -> 78794","Type":"Unknown","Directional":false,"Links":[{"SourceID":78795,"TargetID":78794,"Directional":false}]},{"ID":2975,"SourceStructureID":67705,"TargetStructureID":5562,"Label":"67705-5562 via Adherens from 81797 -> 77558","Type":"Adherens","Directional":false,"Links":[{"SourceID":81797,"TargetID":77558,"Directional":false}]},{"ID":2976,"SourceStructureID":68188,"TargetStructureID":5562,"Label":"68188-5562 via Adherens from 77585 -> 77586","Type":"Adherens","Directional":false,"Links":[{"SourceID":77585,"TargetID":77586,"Directional":false}]},{"ID":2977,"SourceStructureID":5562,"TargetStructureID":68188,"Label":"5562-68188 via Unknown from 77587 -> 77588","Type":"Unknown","Directional":false,"Links":[{"SourceID":77587,"TargetID":77588,"Directional":false}]},{"ID":2978,"SourceStructureID":68480,"TargetStructureID":5562,"Label":"68480-5562 via Adherens from 84036 -> 76685, 84047 -> 77155","Type":"Adherens","Directional":false,"Links":[{"SourceID":84036,"TargetID":76685,"Directional":false},{"SourceID":84047,"TargetID":77155,"Directional":false}]},{"ID":2979,"SourceStructureID":68480,"TargetStructureID":5562,"Label":"68480-5562 via Unknown from 84037 -> 76692, 116711 -> 76926, 134314 -> 76686","Type":"Unknown","Directional":false,"Links":[{"SourceID":84037,"TargetID":76692,"Directional":false},{"SourceID":116711,"TargetID":76926,"Directional":false},{"SourceID":134314,"TargetID":76686,"Directional":false}]},{"ID":2980,"SourceStructureID":69537,"TargetStructureID":5562,"Label":"69537-5562 via Touch from 69617 -> 69618","Type":"Touch","Directional":false,"Links":[{"SourceID":69617,"TargetID":69618,"Directional":false}]},{"ID":2981,"SourceStructureID":76255,"TargetStructureID":5562,"Label":"76255-5562 via Unknown from 135129 -> 135128","Type":"Unknown","Directional":false,"Links":[{"SourceID":135129,"TargetID":135128,"Directional":false}]},{"ID":2982,"SourceStructureID":76257,"TargetStructureID":5562,"Label":"76257-5562 via Adherens from 76258 -> 76259","Type":"Adherens","Directional":false,"Links":[{"SourceID":76258,"TargetID":76259,"Directional":false}]},{"ID":2983,"SourceStructureID":5562,"TargetStructureID":76286,"Label":"5562-76286 via Unknown from 76285 -> 76287","Type":"Unknown","Directional":false,"Links":[{"SourceID":76285,"TargetID":76287,"Directional":false}]},{"ID":2984,"SourceStructureID":76288,"TargetStructureID":5562,"Label":"76288-5562 via Unknown from 76289 -> 76290","Type":"Unknown","Directional":false,"Links":[{"SourceID":76289,"TargetID":76290,"Directional":false}]},{"ID":2985,"SourceStructureID":76302,"TargetStructureID":5562,"Label":"76302-5562 via Adherens from 76303 -> 76304","Type":"Adherens","Directional":false,"Links":[{"SourceID":76303,"TargetID":76304,"Directional":false}]},{"ID":2986,"SourceStructureID":76315,"TargetStructureID":5562,"Label":"76315-5562 via Unknown from 76316 -> 76314","Type":"Unknown","Directional":false,"Links":[{"SourceID":76316,"TargetID":76314,"Directional":false}]},{"ID":2987,"SourceStructureID":76332,"TargetStructureID":5562,"Label":"76332-5562 via Unknown from 76333 -> 76331","Type":"Unknown","Directional":false,"Links":[{"SourceID":76333,"TargetID":76331,"Directional":false}]},{"ID":2988,"SourceStructureID":5562,"TargetStructureID":76334,"Label":"5562-76334 via Adherens from 54193 -> 76335","Type":"Adherens","Directional":false,"Links":[{"SourceID":54193,"TargetID":76335,"Directional":false}]},{"ID":2989,"SourceStructureID":76340,"TargetStructureID":5562,"Label":"76340-5562 via Unknown from 76342 -> 76343","Type":"Unknown","Directional":false,"Links":[{"SourceID":76342,"TargetID":76343,"Directional":false}]},{"ID":2990,"SourceStructureID":5562,"TargetStructureID":76349,"Label":"5562-76349 via Unknown from 76354 -> 76355","Type":"Unknown","Directional":false,"Links":[{"SourceID":76354,"TargetID":76355,"Directional":false}]},{"ID":2991,"SourceStructureID":76351,"TargetStructureID":5562,"Label":"76351-5562 via Adherens from 76353 -> 76352","Type":"Adherens","Directional":false,"Links":[{"SourceID":76353,"TargetID":76352,"Directional":false}]},{"ID":2992,"SourceStructureID":76356,"TargetStructureID":5562,"Label":"76356-5562 via Unknown from 76361 -> 76360","Type":"Unknown","Directional":false,"Links":[{"SourceID":76361,"TargetID":76360,"Directional":false}]},{"ID":2993,"SourceStructureID":76357,"TargetStructureID":5562,"Label":"76357-5562 via Unknown from 76359 -> 76358","Type":"Unknown","Directional":false,"Links":[{"SourceID":76359,"TargetID":76358,"Directional":false}]},{"ID":2994,"SourceStructureID":5562,"TargetStructureID":76379,"Label":"5562-76379 via Unknown from 76380 -> 76381","Type":"Unknown","Directional":false,"Links":[{"SourceID":76380,"TargetID":76381,"Directional":false}]},{"ID":2995,"SourceStructureID":76386,"TargetStructureID":5562,"Label":"76386-5562 via Adherens from 76388 -> 76389","Type":"Adherens","Directional":false,"Links":[{"SourceID":76388,"TargetID":76389,"Directional":false}]},{"ID":2996,"SourceStructureID":76399,"TargetStructureID":5562,"Label":"76399-5562 via Unknown from 76400 -> 76398","Type":"Unknown","Directional":false,"Links":[{"SourceID":76400,"TargetID":76398,"Directional":false}]},{"ID":2997,"SourceStructureID":5562,"TargetStructureID":76414,"Label":"5562-76414 via Adherens from 76417 -> 76418","Type":"Adherens","Directional":false,"Links":[{"SourceID":76417,"TargetID":76418,"Directional":false}]},{"ID":2998,"SourceStructureID":5562,"TargetStructureID":76426,"Label":"5562-76426 via Adherens from 76428 -> 76429","Type":"Adherens","Directional":false,"Links":[{"SourceID":76428,"TargetID":76429,"Directional":false}]},{"ID":2999,"SourceStructureID":5562,"TargetStructureID":76448,"Label":"5562-76448 via Adherens from 76447 -> 76449","Type":"Adherens","Directional":false,"Links":[{"SourceID":76447,"TargetID":76449,"Directional":false}]},{"ID":3000,"SourceStructureID":5562,"TargetStructureID":76503,"Label":"5562-76503 via Unknown from 76501 -> 76504","Type":"Unknown","Directional":false,"Links":[{"SourceID":76501,"TargetID":76504,"Directional":false}]},{"ID":3001,"SourceStructureID":5562,"TargetStructureID":76533,"Label":"5562-76533 via Adherens from 76535 -> 76534, 76536 -> 76537, 76538 -> 76539","Type":"Adherens","Directional":false,"Links":[{"SourceID":76535,"TargetID":76534,"Directional":false},{"SourceID":76536,"TargetID":76537,"Directional":false},{"SourceID":76538,"TargetID":76539,"Directional":false}]},{"ID":3002,"SourceStructureID":5562,"TargetStructureID":76543,"Label":"5562-76543 via Adherens from 76587 -> 76588, 76589 -> 76590","Type":"Adherens","Directional":false,"Links":[{"SourceID":76587,"TargetID":76588,"Directional":false},{"SourceID":76589,"TargetID":76590,"Directional":false}]},{"ID":3003,"SourceStructureID":5562,"TargetStructureID":76543,"Label":"5562-76543 via Unknown from 76542 -> 76544","Type":"Unknown","Directional":false,"Links":[{"SourceID":76542,"TargetID":76544,"Directional":false}]},{"ID":3004,"SourceStructureID":5562,"TargetStructureID":76552,"Label":"5562-76552 via Unknown from 76559 -> 76585","Type":"Unknown","Directional":false,"Links":[{"SourceID":76559,"TargetID":76585,"Directional":false}]},{"ID":3005,"SourceStructureID":5562,"TargetStructureID":76556,"Label":"5562-76556 via Unknown from 76558 -> 76557","Type":"Unknown","Directional":false,"Links":[{"SourceID":76558,"TargetID":76557,"Directional":false}]},{"ID":3006,"SourceStructureID":76561,"TargetStructureID":5562,"Label":"76561-5562 via Adherens from 76564 -> 76565","Type":"Adherens","Directional":false,"Links":[{"SourceID":76564,"TargetID":76565,"Directional":false}]},{"ID":3007,"SourceStructureID":5562,"TargetStructureID":76638,"Label":"5562-76638 via Unknown from 76642 -> 76641","Type":"Unknown","Directional":false,"Links":[{"SourceID":76642,"TargetID":76641,"Directional":false}]},{"ID":3008,"SourceStructureID":5562,"TargetStructureID":76670,"Label":"5562-76670 via Gap Junction from 63219 -> 76674","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63219,"TargetID":76674,"Directional":false}]},{"ID":3009,"SourceStructureID":76671,"TargetStructureID":5562,"Label":"76671-5562 via Adherens from 76694 -> 76695","Type":"Adherens","Directional":false,"Links":[{"SourceID":76694,"TargetID":76695,"Directional":false}]},{"ID":3010,"SourceStructureID":76671,"TargetStructureID":5562,"Label":"76671-5562 via Unknown from 76696 -> 76697","Type":"Unknown","Directional":false,"Links":[{"SourceID":76696,"TargetID":76697,"Directional":false}]},{"ID":3011,"SourceStructureID":5562,"TargetStructureID":76688,"Label":"5562-76688 via Unknown from 76690 -> 76691","Type":"Unknown","Directional":false,"Links":[{"SourceID":76690,"TargetID":76691,"Directional":false}]},{"ID":3012,"SourceStructureID":76698,"TargetStructureID":5562,"Label":"76698-5562 via Unknown from 76700 -> 76699","Type":"Unknown","Directional":false,"Links":[{"SourceID":76700,"TargetID":76699,"Directional":false}]},{"ID":3013,"SourceStructureID":5562,"TargetStructureID":76711,"Label":"5562-76711 via Adherens from 76714 -> 76713","Type":"Adherens","Directional":false,"Links":[{"SourceID":76714,"TargetID":76713,"Directional":false}]},{"ID":3014,"SourceStructureID":5562,"TargetStructureID":76719,"Label":"5562-76719 via Adherens from 76892 -> 76893","Type":"Adherens","Directional":false,"Links":[{"SourceID":76892,"TargetID":76893,"Directional":false}]},{"ID":3015,"SourceStructureID":5562,"TargetStructureID":76724,"Label":"5562-76724 via Unknown from 76726 -> 76725","Type":"Unknown","Directional":false,"Links":[{"SourceID":76726,"TargetID":76725,"Directional":false}]},{"ID":3016,"SourceStructureID":76728,"TargetStructureID":5562,"Label":"76728-5562 via Unknown from 76729 -> 76727, 76907 -> 76906","Type":"Unknown","Directional":false,"Links":[{"SourceID":76729,"TargetID":76727,"Directional":false},{"SourceID":76907,"TargetID":76906,"Directional":false}]},{"ID":3017,"SourceStructureID":76730,"TargetStructureID":5562,"Label":"76730-5562 via Adherens from 76909 -> 76908","Type":"Adherens","Directional":false,"Links":[{"SourceID":76909,"TargetID":76908,"Directional":false}]},{"ID":3018,"SourceStructureID":5562,"TargetStructureID":76735,"Label":"5562-76735 via Unknown from 76897 -> 76898","Type":"Unknown","Directional":false,"Links":[{"SourceID":76897,"TargetID":76898,"Directional":false}]},{"ID":3019,"SourceStructureID":76895,"TargetStructureID":5562,"Label":"76895-5562 via Unknown from 76896 -> 76894","Type":"Unknown","Directional":false,"Links":[{"SourceID":76896,"TargetID":76894,"Directional":false}]},{"ID":3020,"SourceStructureID":76919,"TargetStructureID":5562,"Label":"76919-5562 via Adherens from 76921 -> 76920, 76922 -> 76923","Type":"Adherens","Directional":false,"Links":[{"SourceID":76921,"TargetID":76920,"Directional":false},{"SourceID":76922,"TargetID":76923,"Directional":false}]},{"ID":3021,"SourceStructureID":5562,"TargetStructureID":76931,"Label":"5562-76931 via Adherens from 76930 -> 76932","Type":"Adherens","Directional":false,"Links":[{"SourceID":76930,"TargetID":76932,"Directional":false}]},{"ID":3022,"SourceStructureID":5562,"TargetStructureID":76931,"Label":"5562-76931 via BC Conventional Synapse from 134315 -> 134316","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":134315,"TargetID":134316,"Directional":false}]},{"ID":3023,"SourceStructureID":5562,"TargetStructureID":76938,"Label":"5562-76938 via Unknown from 76937 -> 76939","Type":"Unknown","Directional":false,"Links":[{"SourceID":76937,"TargetID":76939,"Directional":false}]},{"ID":3024,"SourceStructureID":5562,"TargetStructureID":76944,"Label":"5562-76944 via Unknown from 135300 -> 134317","Type":"Unknown","Directional":false,"Links":[{"SourceID":135300,"TargetID":134317,"Directional":false}]},{"ID":3025,"SourceStructureID":76953,"TargetStructureID":5562,"Label":"76953-5562 via Adherens from 76954 -> 76955","Type":"Adherens","Directional":false,"Links":[{"SourceID":76954,"TargetID":76955,"Directional":false}]},{"ID":3026,"SourceStructureID":5562,"TargetStructureID":76958,"Label":"5562-76958 via Unknown from 76960 -> 76959","Type":"Unknown","Directional":false,"Links":[{"SourceID":76960,"TargetID":76959,"Directional":false}]},{"ID":3027,"SourceStructureID":5562,"TargetStructureID":77116,"Label":"5562-77116 via Unknown from 77115 -> 77117","Type":"Unknown","Directional":false,"Links":[{"SourceID":77115,"TargetID":77117,"Directional":false}]},{"ID":3028,"SourceStructureID":5562,"TargetStructureID":77124,"Label":"5562-77124 via Adherens from 63228 -> 77125","Type":"Adherens","Directional":false,"Links":[{"SourceID":63228,"TargetID":77125,"Directional":false}]},{"ID":3029,"SourceStructureID":5562,"TargetStructureID":77126,"Label":"5562-77126 via Unknown from 77127 -> 81504","Type":"Unknown","Directional":false,"Links":[{"SourceID":77127,"TargetID":81504,"Directional":false}]},{"ID":3030,"SourceStructureID":5562,"TargetStructureID":77156,"Label":"5562-77156 via Unknown from 77158 -> 77157","Type":"Unknown","Directional":false,"Links":[{"SourceID":77158,"TargetID":77157,"Directional":false}]},{"ID":3031,"SourceStructureID":77160,"TargetStructureID":5562,"Label":"77160-5562 via Unknown from 77161 -> 77159, 77193 -> 77194, 77198 -> 77192","Type":"Unknown","Directional":false,"Links":[{"SourceID":77161,"TargetID":77159,"Directional":false},{"SourceID":77193,"TargetID":77194,"Directional":false},{"SourceID":77198,"TargetID":77192,"Directional":false}]},{"ID":3032,"SourceStructureID":77163,"TargetStructureID":5562,"Label":"77163-5562 via Unknown from 77164 -> 77162","Type":"Unknown","Directional":false,"Links":[{"SourceID":77164,"TargetID":77162,"Directional":false}]},{"ID":3033,"SourceStructureID":5562,"TargetStructureID":77179,"Label":"5562-77179 via Adherens from 77178 -> 77180","Type":"Adherens","Directional":false,"Links":[{"SourceID":77178,"TargetID":77180,"Directional":false}]},{"ID":3034,"SourceStructureID":5562,"TargetStructureID":77179,"Label":"5562-77179 via Gap Junction from 77181 -> 77182","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":77181,"TargetID":77182,"Directional":false}]},{"ID":3035,"SourceStructureID":5562,"TargetStructureID":77202,"Label":"5562-77202 via Unknown from 77203 -> 77204","Type":"Unknown","Directional":false,"Links":[{"SourceID":77203,"TargetID":77204,"Directional":false}]},{"ID":3036,"SourceStructureID":5562,"TargetStructureID":77236,"Label":"5562-77236 via Adherens from 77235 -> 77237","Type":"Adherens","Directional":false,"Links":[{"SourceID":77235,"TargetID":77237,"Directional":false}]},{"ID":3037,"SourceStructureID":5562,"TargetStructureID":77236,"Label":"5562-77236 via Unknown from 77251 -> 134321","Type":"Unknown","Directional":false,"Links":[{"SourceID":77251,"TargetID":134321,"Directional":false}]},{"ID":3038,"SourceStructureID":77262,"TargetStructureID":5562,"Label":"77262-5562 via Adherens from 77263 -> 77261","Type":"Adherens","Directional":false,"Links":[{"SourceID":77263,"TargetID":77261,"Directional":false}]},{"ID":3039,"SourceStructureID":5562,"TargetStructureID":77266,"Label":"5562-77266 via Unknown from 77265 -> 77267","Type":"Unknown","Directional":false,"Links":[{"SourceID":77265,"TargetID":77267,"Directional":false}]},{"ID":3040,"SourceStructureID":5562,"TargetStructureID":77270,"Label":"5562-77270 via Adherens from 77282 -> 77283","Type":"Adherens","Directional":false,"Links":[{"SourceID":77282,"TargetID":77283,"Directional":false}]},{"ID":3041,"SourceStructureID":5562,"TargetStructureID":77286,"Label":"5562-77286 via Adherens from 77288 -> 77287","Type":"Adherens","Directional":false,"Links":[{"SourceID":77288,"TargetID":77287,"Directional":false}]},{"ID":3042,"SourceStructureID":5562,"TargetStructureID":77289,"Label":"5562-77289 via Unknown from 77290 -> 77291","Type":"Unknown","Directional":false,"Links":[{"SourceID":77290,"TargetID":77291,"Directional":false}]},{"ID":3043,"SourceStructureID":5562,"TargetStructureID":77296,"Label":"5562-77296 via Unknown from 77429 -> 77430","Type":"Unknown","Directional":false,"Links":[{"SourceID":77429,"TargetID":77430,"Directional":false}]},{"ID":3044,"SourceStructureID":5562,"TargetStructureID":77299,"Label":"5562-77299 via Unknown from 77301 -> 77302","Type":"Unknown","Directional":false,"Links":[{"SourceID":77301,"TargetID":77302,"Directional":false}]},{"ID":3045,"SourceStructureID":5562,"TargetStructureID":77310,"Label":"5562-77310 via Unknown from 77311 -> 77312","Type":"Unknown","Directional":false,"Links":[{"SourceID":77311,"TargetID":77312,"Directional":false}]},{"ID":3046,"SourceStructureID":77321,"TargetStructureID":5562,"Label":"77321-5562 via Unknown from 134322 -> 77319","Type":"Unknown","Directional":false,"Links":[{"SourceID":134322,"TargetID":77319,"Directional":false}]},{"ID":3047,"SourceStructureID":5562,"TargetStructureID":77417,"Label":"5562-77417 via Unknown from 77416 -> 77418","Type":"Unknown","Directional":false,"Links":[{"SourceID":77416,"TargetID":77418,"Directional":false}]},{"ID":3048,"SourceStructureID":77423,"TargetStructureID":5562,"Label":"77423-5562 via Unknown from 77424 -> 77425","Type":"Unknown","Directional":false,"Links":[{"SourceID":77424,"TargetID":77425,"Directional":false}]},{"ID":3049,"SourceStructureID":77446,"TargetStructureID":5562,"Label":"77446-5562 via Unknown from 77447 -> 77445","Type":"Unknown","Directional":false,"Links":[{"SourceID":77447,"TargetID":77445,"Directional":false}]},{"ID":3050,"SourceStructureID":5562,"TargetStructureID":77450,"Label":"5562-77450 via Adherens from 77449 -> 77451","Type":"Adherens","Directional":false,"Links":[{"SourceID":77449,"TargetID":77451,"Directional":false}]},{"ID":3051,"SourceStructureID":5562,"TargetStructureID":77456,"Label":"5562-77456 via Unknown from 77452 -> 77457","Type":"Unknown","Directional":false,"Links":[{"SourceID":77452,"TargetID":77457,"Directional":false}]},{"ID":3052,"SourceStructureID":77473,"TargetStructureID":5562,"Label":"77473-5562 via Unknown from 77474 -> 77472","Type":"Unknown","Directional":false,"Links":[{"SourceID":77474,"TargetID":77472,"Directional":false}]},{"ID":3053,"SourceStructureID":77507,"TargetStructureID":5562,"Label":"77507-5562 via Unknown from 77508 -> 77509","Type":"Unknown","Directional":false,"Links":[{"SourceID":77508,"TargetID":77509,"Directional":false}]},{"ID":3054,"SourceStructureID":5562,"TargetStructureID":77510,"Label":"5562-77510 via Unknown from 134577 -> 134578","Type":"Unknown","Directional":false,"Links":[{"SourceID":134577,"TargetID":134578,"Directional":false}]},{"ID":3055,"SourceStructureID":5562,"TargetStructureID":77516,"Label":"5562-77516 via Adherens from 77517 -> 77518","Type":"Adherens","Directional":false,"Links":[{"SourceID":77517,"TargetID":77518,"Directional":false}]},{"ID":3056,"SourceStructureID":5562,"TargetStructureID":77519,"Label":"5562-77519 via Unknown from 77520 -> 77521","Type":"Unknown","Directional":false,"Links":[{"SourceID":77520,"TargetID":77521,"Directional":false}]},{"ID":3057,"SourceStructureID":5562,"TargetStructureID":77522,"Label":"5562-77522 via Unknown from 77524 -> 77523","Type":"Unknown","Directional":false,"Links":[{"SourceID":77524,"TargetID":77523,"Directional":false}]},{"ID":3058,"SourceStructureID":77533,"TargetStructureID":5562,"Label":"77533-5562 via Unknown from 77584 -> 77583","Type":"Unknown","Directional":false,"Links":[{"SourceID":77584,"TargetID":77583,"Directional":false}]},{"ID":3059,"SourceStructureID":5562,"TargetStructureID":77536,"Label":"5562-77536 via Unknown from 77538 -> 77537","Type":"Unknown","Directional":false,"Links":[{"SourceID":77538,"TargetID":77537,"Directional":false}]},{"ID":3060,"SourceStructureID":5562,"TargetStructureID":77550,"Label":"5562-77550 via Unknown from 77554 -> 77553","Type":"Unknown","Directional":false,"Links":[{"SourceID":77554,"TargetID":77553,"Directional":false}]},{"ID":3061,"SourceStructureID":5562,"TargetStructureID":77561,"Label":"5562-77561 via Adherens from 77560 -> 77562, 77581 -> 77582","Type":"Adherens","Directional":false,"Links":[{"SourceID":77560,"TargetID":77562,"Directional":false},{"SourceID":77581,"TargetID":77582,"Directional":false}]},{"ID":3062,"SourceStructureID":5562,"TargetStructureID":77572,"Label":"5562-77572 via Unknown from 77573 -> 77574","Type":"Unknown","Directional":false,"Links":[{"SourceID":77573,"TargetID":77574,"Directional":false}]},{"ID":3063,"SourceStructureID":5562,"TargetStructureID":77578,"Label":"5562-77578 via Unknown from 77580 -> 77579","Type":"Unknown","Directional":false,"Links":[{"SourceID":77580,"TargetID":77579,"Directional":false}]},{"ID":3064,"SourceStructureID":5562,"TargetStructureID":77612,"Label":"5562-77612 via Unknown from 77616 -> 77617","Type":"Unknown","Directional":false,"Links":[{"SourceID":77616,"TargetID":77617,"Directional":false}]},{"ID":3065,"SourceStructureID":5562,"TargetStructureID":77726,"Label":"5562-77726 via Unknown from 77725 -> 77727","Type":"Unknown","Directional":false,"Links":[{"SourceID":77725,"TargetID":77727,"Directional":false}]},{"ID":3066,"SourceStructureID":5562,"TargetStructureID":77731,"Label":"5562-77731 via Unknown from 77730 -> 77732","Type":"Unknown","Directional":false,"Links":[{"SourceID":77730,"TargetID":77732,"Directional":false}]},{"ID":3067,"SourceStructureID":77733,"TargetStructureID":5562,"Label":"77733-5562 via Unknown from 77735 -> 77734","Type":"Unknown","Directional":false,"Links":[{"SourceID":77735,"TargetID":77734,"Directional":false}]},{"ID":3068,"SourceStructureID":5562,"TargetStructureID":77736,"Label":"5562-77736 via Unknown from 77739 -> 77740","Type":"Unknown","Directional":false,"Links":[{"SourceID":77739,"TargetID":77740,"Directional":false}]},{"ID":3069,"SourceStructureID":77745,"TargetStructureID":5562,"Label":"77745-5562 via Unknown from 77746 -> 77744","Type":"Unknown","Directional":false,"Links":[{"SourceID":77746,"TargetID":77744,"Directional":false}]},{"ID":3070,"SourceStructureID":5562,"TargetStructureID":77765,"Label":"5562-77765 via Unknown from 77768 -> 77769","Type":"Unknown","Directional":false,"Links":[{"SourceID":77768,"TargetID":77769,"Directional":false}]},{"ID":3071,"SourceStructureID":77786,"TargetStructureID":5562,"Label":"77786-5562 via Unknown from 77787 -> 77788","Type":"Unknown","Directional":false,"Links":[{"SourceID":77787,"TargetID":77788,"Directional":false}]},{"ID":3072,"SourceStructureID":5562,"TargetStructureID":77790,"Label":"5562-77790 via Unknown from 77789 -> 77791","Type":"Unknown","Directional":false,"Links":[{"SourceID":77789,"TargetID":77791,"Directional":false}]},{"ID":3073,"SourceStructureID":5562,"TargetStructureID":77811,"Label":"5562-77811 via Unknown from 77813 -> 77814","Type":"Unknown","Directional":false,"Links":[{"SourceID":77813,"TargetID":77814,"Directional":false}]},{"ID":3074,"SourceStructureID":5562,"TargetStructureID":77816,"Label":"5562-77816 via Adherens from 77815 -> 77817","Type":"Adherens","Directional":false,"Links":[{"SourceID":77815,"TargetID":77817,"Directional":false}]},{"ID":3075,"SourceStructureID":5562,"TargetStructureID":77826,"Label":"5562-77826 via Adherens from 77829 -> 77830","Type":"Adherens","Directional":false,"Links":[{"SourceID":77829,"TargetID":77830,"Directional":false}]},{"ID":3076,"SourceStructureID":5562,"TargetStructureID":77840,"Label":"5562-77840 via Adherens from 63277 -> 82417, 77880 -> 82416","Type":"Adherens","Directional":false,"Links":[{"SourceID":63277,"TargetID":82417,"Directional":false},{"SourceID":77880,"TargetID":82416,"Directional":false}]},{"ID":3077,"SourceStructureID":5562,"TargetStructureID":77840,"Label":"5562-77840 via Gap Junction from 63067 -> 76282, 77863 -> 82415","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63067,"TargetID":76282,"Directional":false},{"SourceID":77863,"TargetID":82415,"Directional":false}]},{"ID":3078,"SourceStructureID":5562,"TargetStructureID":77846,"Label":"5562-77846 via Unknown from 77845 -> 77847","Type":"Unknown","Directional":false,"Links":[{"SourceID":77845,"TargetID":77847,"Directional":false}]},{"ID":3079,"SourceStructureID":77848,"TargetStructureID":5562,"Label":"77848-5562 via Adherens from 134427 -> 134426","Type":"Adherens","Directional":false,"Links":[{"SourceID":134427,"TargetID":134426,"Directional":false}]},{"ID":3080,"SourceStructureID":77855,"TargetStructureID":5562,"Label":"77855-5562 via Unknown from 77856 -> 77854","Type":"Unknown","Directional":false,"Links":[{"SourceID":77856,"TargetID":77854,"Directional":false}]},{"ID":3081,"SourceStructureID":5562,"TargetStructureID":77858,"Label":"5562-77858 via Unknown from 77857 -> 77859","Type":"Unknown","Directional":false,"Links":[{"SourceID":77857,"TargetID":77859,"Directional":false}]},{"ID":3082,"SourceStructureID":5562,"TargetStructureID":77865,"Label":"5562-77865 via Adherens from 77866 -> 77867","Type":"Adherens","Directional":false,"Links":[{"SourceID":77866,"TargetID":77867,"Directional":false}]},{"ID":3083,"SourceStructureID":5562,"TargetStructureID":77872,"Label":"5562-77872 via Unknown from 77874 -> 77873","Type":"Unknown","Directional":false,"Links":[{"SourceID":77874,"TargetID":77873,"Directional":false}]},{"ID":3084,"SourceStructureID":5562,"TargetStructureID":77885,"Label":"5562-77885 via Adherens from 77886 -> 77887","Type":"Adherens","Directional":false,"Links":[{"SourceID":77886,"TargetID":77887,"Directional":false}]},{"ID":3085,"SourceStructureID":5562,"TargetStructureID":77889,"Label":"5562-77889 via Unknown from 77891 -> 77890","Type":"Unknown","Directional":false,"Links":[{"SourceID":77891,"TargetID":77890,"Directional":false}]},{"ID":3086,"SourceStructureID":5562,"TargetStructureID":77893,"Label":"5562-77893 via Adherens from 77895 -> 77894","Type":"Adherens","Directional":false,"Links":[{"SourceID":77895,"TargetID":77894,"Directional":false}]},{"ID":3087,"SourceStructureID":5562,"TargetStructureID":78098,"Label":"5562-78098 via Gap Junction from 78101 -> 78100","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":78101,"TargetID":78100,"Directional":false}]},{"ID":3088,"SourceStructureID":5562,"TargetStructureID":78098,"Label":"5562-78098 via Unknown from 78097 -> 78099","Type":"Unknown","Directional":false,"Links":[{"SourceID":78097,"TargetID":78099,"Directional":false}]},{"ID":3089,"SourceStructureID":5562,"TargetStructureID":78102,"Label":"5562-78102 via Unknown from 78104 -> 78103","Type":"Unknown","Directional":false,"Links":[{"SourceID":78104,"TargetID":78103,"Directional":false}]},{"ID":3090,"SourceStructureID":78107,"TargetStructureID":5562,"Label":"78107-5562 via Unknown from 78121 -> 78120","Type":"Unknown","Directional":false,"Links":[{"SourceID":78121,"TargetID":78120,"Directional":false}]},{"ID":3091,"SourceStructureID":5562,"TargetStructureID":78109,"Label":"5562-78109 via Adherens from 78111 -> 78110","Type":"Adherens","Directional":false,"Links":[{"SourceID":78111,"TargetID":78110,"Directional":false}]},{"ID":3092,"SourceStructureID":5562,"TargetStructureID":78124,"Label":"5562-78124 via Adherens from 63338 -> 78125, 78138 -> 78137","Type":"Adherens","Directional":false,"Links":[{"SourceID":63338,"TargetID":78125,"Directional":false},{"SourceID":78138,"TargetID":78137,"Directional":false}]},{"ID":3093,"SourceStructureID":5562,"TargetStructureID":78126,"Label":"5562-78126 via Adherens from 49536 -> 78846, 63658 -> 78546","Type":"Adherens","Directional":false,"Links":[{"SourceID":49536,"TargetID":78846,"Directional":false},{"SourceID":63658,"TargetID":78546,"Directional":false}]},{"ID":3094,"SourceStructureID":78126,"TargetStructureID":5562,"Label":"78126-5562 via Gap Junction from 78547 -> 63657, 135139 -> 135138","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":78547,"TargetID":63657,"Directional":false},{"SourceID":135139,"TargetID":135138,"Directional":false}]},{"ID":3095,"SourceStructureID":5562,"TargetStructureID":78126,"Label":"5562-78126 via Unknown from 78127 -> 78128, 78577 -> 78576, 135137 -> 78504","Type":"Unknown","Directional":false,"Links":[{"SourceID":78127,"TargetID":78128,"Directional":false},{"SourceID":78577,"TargetID":78576,"Directional":false},{"SourceID":135137,"TargetID":78504,"Directional":false}]},{"ID":3096,"SourceStructureID":78129,"TargetStructureID":5562,"Label":"78129-5562 via Adherens from 78130 -> 78131","Type":"Adherens","Directional":false,"Links":[{"SourceID":78130,"TargetID":78131,"Directional":false}]},{"ID":3097,"SourceStructureID":5562,"TargetStructureID":78143,"Label":"5562-78143 via Unknown from 78144 -> 78145","Type":"Unknown","Directional":false,"Links":[{"SourceID":78144,"TargetID":78145,"Directional":false}]},{"ID":3098,"SourceStructureID":78146,"TargetStructureID":5562,"Label":"78146-5562 via Adherens from 78148 -> 78147","Type":"Adherens","Directional":false,"Links":[{"SourceID":78148,"TargetID":78147,"Directional":false}]},{"ID":3099,"SourceStructureID":5562,"TargetStructureID":78149,"Label":"5562-78149 via Unknown from 78150 -> 78151","Type":"Unknown","Directional":false,"Links":[{"SourceID":78150,"TargetID":78151,"Directional":false}]},{"ID":3100,"SourceStructureID":5562,"TargetStructureID":78152,"Label":"5562-78152 via Unknown from 78154 -> 78153","Type":"Unknown","Directional":false,"Links":[{"SourceID":78154,"TargetID":78153,"Directional":false}]},{"ID":3101,"SourceStructureID":5562,"TargetStructureID":78157,"Label":"5562-78157 via Adherens from 78159 -> 78158","Type":"Adherens","Directional":false,"Links":[{"SourceID":78159,"TargetID":78158,"Directional":false}]},{"ID":3102,"SourceStructureID":5562,"TargetStructureID":78183,"Label":"5562-78183 via Unknown from 78184 -> 78185","Type":"Unknown","Directional":false,"Links":[{"SourceID":78184,"TargetID":78185,"Directional":false}]},{"ID":3103,"SourceStructureID":5562,"TargetStructureID":78200,"Label":"5562-78200 via Adherens from 78237 -> 78238","Type":"Adherens","Directional":false,"Links":[{"SourceID":78237,"TargetID":78238,"Directional":false}]},{"ID":3104,"SourceStructureID":78220,"TargetStructureID":5562,"Label":"78220-5562 via Unknown from 78221 -> 78213","Type":"Unknown","Directional":false,"Links":[{"SourceID":78221,"TargetID":78213,"Directional":false}]},{"ID":3105,"SourceStructureID":5562,"TargetStructureID":78222,"Label":"5562-78222 via Unknown from 63353 -> 78231","Type":"Unknown","Directional":false,"Links":[{"SourceID":63353,"TargetID":78231,"Directional":false}]},{"ID":3106,"SourceStructureID":78239,"TargetStructureID":5562,"Label":"78239-5562 via Unknown from 78241 -> 78240","Type":"Unknown","Directional":false,"Links":[{"SourceID":78241,"TargetID":78240,"Directional":false}]},{"ID":3107,"SourceStructureID":5562,"TargetStructureID":78248,"Label":"5562-78248 via Unknown from 78259 -> 78260","Type":"Unknown","Directional":false,"Links":[{"SourceID":78259,"TargetID":78260,"Directional":false}]},{"ID":3108,"SourceStructureID":78261,"TargetStructureID":5562,"Label":"78261-5562 via Unknown from 78269 -> 78270","Type":"Unknown","Directional":false,"Links":[{"SourceID":78269,"TargetID":78270,"Directional":false}]},{"ID":3109,"SourceStructureID":5562,"TargetStructureID":78262,"Label":"5562-78262 via Adherens from 78606 -> 78605","Type":"Adherens","Directional":false,"Links":[{"SourceID":78606,"TargetID":78605,"Directional":false}]},{"ID":3110,"SourceStructureID":78262,"TargetStructureID":5562,"Label":"78262-5562 via Unknown from 78268 -> 78267, 79901 -> 79902","Type":"Unknown","Directional":false,"Links":[{"SourceID":78268,"TargetID":78267,"Directional":false},{"SourceID":79901,"TargetID":79902,"Directional":false}]},{"ID":3111,"SourceStructureID":78263,"TargetStructureID":5562,"Label":"78263-5562 via Unknown from 78264 -> 78266","Type":"Unknown","Directional":false,"Links":[{"SourceID":78264,"TargetID":78266,"Directional":false}]},{"ID":3112,"SourceStructureID":5562,"TargetStructureID":78275,"Label":"5562-78275 via Adherens from 78274 -> 78276","Type":"Adherens","Directional":false,"Links":[{"SourceID":78274,"TargetID":78276,"Directional":false}]},{"ID":3113,"SourceStructureID":5562,"TargetStructureID":78275,"Label":"5562-78275 via Unknown from 78279 -> 78280","Type":"Unknown","Directional":false,"Links":[{"SourceID":78279,"TargetID":78280,"Directional":false}]},{"ID":3114,"SourceStructureID":5562,"TargetStructureID":78334,"Label":"5562-78334 via Adherens from 78287 -> 78341, 78340 -> 78342","Type":"Adherens","Directional":false,"Links":[{"SourceID":78287,"TargetID":78341,"Directional":false},{"SourceID":78340,"TargetID":78342,"Directional":false}]},{"ID":3115,"SourceStructureID":78336,"TargetStructureID":5562,"Label":"78336-5562 via Unknown from 78337 -> 78339","Type":"Unknown","Directional":false,"Links":[{"SourceID":78337,"TargetID":78339,"Directional":false}]},{"ID":3116,"SourceStructureID":5562,"TargetStructureID":78355,"Label":"5562-78355 via Unknown from 78356 -> 78357","Type":"Unknown","Directional":false,"Links":[{"SourceID":78356,"TargetID":78357,"Directional":false}]},{"ID":3117,"SourceStructureID":5562,"TargetStructureID":78359,"Label":"5562-78359 via Unknown from 78358 -> 78360, 78361 -> 78362","Type":"Unknown","Directional":false,"Links":[{"SourceID":78358,"TargetID":78360,"Directional":false},{"SourceID":78361,"TargetID":78362,"Directional":false}]},{"ID":3118,"SourceStructureID":5562,"TargetStructureID":78364,"Label":"5562-78364 via Adherens from 78363 -> 78365","Type":"Adherens","Directional":false,"Links":[{"SourceID":78363,"TargetID":78365,"Directional":false}]},{"ID":3119,"SourceStructureID":78377,"TargetStructureID":5562,"Label":"78377-5562 via Unknown from 78382 -> 78381","Type":"Unknown","Directional":false,"Links":[{"SourceID":78382,"TargetID":78381,"Directional":false}]},{"ID":3120,"SourceStructureID":5562,"TargetStructureID":78378,"Label":"5562-78378 via Unknown from 78379 -> 78380","Type":"Unknown","Directional":false,"Links":[{"SourceID":78379,"TargetID":78380,"Directional":false}]},{"ID":3121,"SourceStructureID":5562,"TargetStructureID":78387,"Label":"5562-78387 via Adherens from 78386 -> 78388","Type":"Adherens","Directional":false,"Links":[{"SourceID":78386,"TargetID":78388,"Directional":false}]},{"ID":3122,"SourceStructureID":78387,"TargetStructureID":5562,"Label":"78387-5562 via Unknown from 78390 -> 78389","Type":"Unknown","Directional":false,"Links":[{"SourceID":78390,"TargetID":78389,"Directional":false}]},{"ID":3123,"SourceStructureID":5562,"TargetStructureID":78391,"Label":"5562-78391 via BC Conventional Synapse from 63538 -> 78392","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":63538,"TargetID":78392,"Directional":false}]},{"ID":3124,"SourceStructureID":5562,"TargetStructureID":78398,"Label":"5562-78398 via Unknown from 78441 -> 78442","Type":"Unknown","Directional":false,"Links":[{"SourceID":78441,"TargetID":78442,"Directional":false}]},{"ID":3125,"SourceStructureID":5562,"TargetStructureID":78400,"Label":"5562-78400 via Unknown from 78403 -> 78402","Type":"Unknown","Directional":false,"Links":[{"SourceID":78403,"TargetID":78402,"Directional":false}]},{"ID":3126,"SourceStructureID":5562,"TargetStructureID":78409,"Label":"5562-78409 via Unknown from 49398 -> 78410","Type":"Unknown","Directional":false,"Links":[{"SourceID":49398,"TargetID":78410,"Directional":false}]},{"ID":3127,"SourceStructureID":5562,"TargetStructureID":78444,"Label":"5562-78444 via Unknown from 78443 -> 78445","Type":"Unknown","Directional":false,"Links":[{"SourceID":78443,"TargetID":78445,"Directional":false}]},{"ID":3128,"SourceStructureID":78457,"TargetStructureID":5562,"Label":"78457-5562 via Unknown from 78458 -> 78456","Type":"Unknown","Directional":false,"Links":[{"SourceID":78458,"TargetID":78456,"Directional":false}]},{"ID":3129,"SourceStructureID":78459,"TargetStructureID":5562,"Label":"78459-5562 via Adherens from 78460 -> 78461","Type":"Adherens","Directional":false,"Links":[{"SourceID":78460,"TargetID":78461,"Directional":false}]},{"ID":3130,"SourceStructureID":78462,"TargetStructureID":5562,"Label":"78462-5562 via Unknown from 78464 -> 78463","Type":"Unknown","Directional":false,"Links":[{"SourceID":78464,"TargetID":78463,"Directional":false}]},{"ID":3131,"SourceStructureID":5562,"TargetStructureID":78467,"Label":"5562-78467 via Adherens from 63645 -> 78468","Type":"Adherens","Directional":false,"Links":[{"SourceID":63645,"TargetID":78468,"Directional":false}]},{"ID":3132,"SourceStructureID":5562,"TargetStructureID":78478,"Label":"5562-78478 via Unknown from 78480 -> 78481","Type":"Unknown","Directional":false,"Links":[{"SourceID":78480,"TargetID":78481,"Directional":false}]},{"ID":3133,"SourceStructureID":5562,"TargetStructureID":78506,"Label":"5562-78506 via Unknown from 78834 -> 78835","Type":"Unknown","Directional":false,"Links":[{"SourceID":78834,"TargetID":78835,"Directional":false}]},{"ID":3134,"SourceStructureID":5562,"TargetStructureID":78507,"Label":"5562-78507 via Unknown from 78508 -> 78509","Type":"Unknown","Directional":false,"Links":[{"SourceID":78508,"TargetID":78509,"Directional":false}]},{"ID":3135,"SourceStructureID":78510,"TargetStructureID":5562,"Label":"78510-5562 via Adherens from 78511 -> 78512","Type":"Adherens","Directional":false,"Links":[{"SourceID":78511,"TargetID":78512,"Directional":false}]},{"ID":3136,"SourceStructureID":78520,"TargetStructureID":5562,"Label":"78520-5562 via Unknown from 78538 -> 78539","Type":"Unknown","Directional":false,"Links":[{"SourceID":78538,"TargetID":78539,"Directional":false}]},{"ID":3137,"SourceStructureID":5562,"TargetStructureID":78526,"Label":"5562-78526 via Unknown from 78527 -> 78528","Type":"Unknown","Directional":false,"Links":[{"SourceID":78527,"TargetID":78528,"Directional":false}]},{"ID":3138,"SourceStructureID":5562,"TargetStructureID":78529,"Label":"5562-78529 via Unknown from 78530 -> 78531","Type":"Unknown","Directional":false,"Links":[{"SourceID":78530,"TargetID":78531,"Directional":false}]},{"ID":3139,"SourceStructureID":5562,"TargetStructureID":78532,"Label":"5562-78532 via Unknown from 78534 -> 78533","Type":"Unknown","Directional":false,"Links":[{"SourceID":78534,"TargetID":78533,"Directional":false}]},{"ID":3140,"SourceStructureID":78552,"TargetStructureID":5562,"Label":"78552-5562 via Unknown from 78563 -> 78562","Type":"Unknown","Directional":false,"Links":[{"SourceID":78563,"TargetID":78562,"Directional":false}]},{"ID":3141,"SourceStructureID":5562,"TargetStructureID":78568,"Label":"5562-78568 via Adherens from 78567 -> 78569","Type":"Adherens","Directional":false,"Links":[{"SourceID":78567,"TargetID":78569,"Directional":false}]},{"ID":3142,"SourceStructureID":5562,"TargetStructureID":78578,"Label":"5562-78578 via Adherens from 63665 -> 78579","Type":"Adherens","Directional":false,"Links":[{"SourceID":63665,"TargetID":78579,"Directional":false}]},{"ID":3143,"SourceStructureID":5562,"TargetStructureID":78582,"Label":"5562-78582 via Adherens from 63668 -> 78583","Type":"Adherens","Directional":false,"Links":[{"SourceID":63668,"TargetID":78583,"Directional":false}]},{"ID":3144,"SourceStructureID":78588,"TargetStructureID":5562,"Label":"78588-5562 via Unknown from 78592 -> 78593","Type":"Unknown","Directional":false,"Links":[{"SourceID":78592,"TargetID":78593,"Directional":false}]},{"ID":3145,"SourceStructureID":78607,"TargetStructureID":5562,"Label":"78607-5562 via Adherens from 78608 -> 78609","Type":"Adherens","Directional":false,"Links":[{"SourceID":78608,"TargetID":78609,"Directional":false}]},{"ID":3146,"SourceStructureID":78610,"TargetStructureID":5562,"Label":"78610-5562 via Adherens from 132074 -> 132073","Type":"Adherens","Directional":false,"Links":[{"SourceID":132074,"TargetID":132073,"Directional":false}]},{"ID":3147,"SourceStructureID":5562,"TargetStructureID":78617,"Label":"5562-78617 via Unknown from 78619 -> 78620","Type":"Unknown","Directional":false,"Links":[{"SourceID":78619,"TargetID":78620,"Directional":false}]},{"ID":3148,"SourceStructureID":5562,"TargetStructureID":78638,"Label":"5562-78638 via Unknown from 78637 -> 78639","Type":"Unknown","Directional":false,"Links":[{"SourceID":78637,"TargetID":78639,"Directional":false}]},{"ID":3149,"SourceStructureID":78644,"TargetStructureID":5562,"Label":"78644-5562 via Unknown from 78646 -> 78645","Type":"Unknown","Directional":false,"Links":[{"SourceID":78646,"TargetID":78645,"Directional":false}]},{"ID":3150,"SourceStructureID":5562,"TargetStructureID":78660,"Label":"5562-78660 via Unknown from 78661 -> 78662","Type":"Unknown","Directional":false,"Links":[{"SourceID":78661,"TargetID":78662,"Directional":false}]},{"ID":3151,"SourceStructureID":5562,"TargetStructureID":78679,"Label":"5562-78679 via Adherens from 63711 -> 78680","Type":"Adherens","Directional":false,"Links":[{"SourceID":63711,"TargetID":78680,"Directional":false}]},{"ID":3152,"SourceStructureID":78681,"TargetStructureID":5562,"Label":"78681-5562 via Unknown from 78682 -> 78683","Type":"Unknown","Directional":false,"Links":[{"SourceID":78682,"TargetID":78683,"Directional":false}]},{"ID":3153,"SourceStructureID":5562,"TargetStructureID":78686,"Label":"5562-78686 via Unknown from 78690 -> 78687, 78691 -> 78692","Type":"Unknown","Directional":false,"Links":[{"SourceID":78690,"TargetID":78687,"Directional":false},{"SourceID":78691,"TargetID":78692,"Directional":false}]},{"ID":3154,"SourceStructureID":5562,"TargetStructureID":78701,"Label":"5562-78701 via Unknown from 78702 -> 78703","Type":"Unknown","Directional":false,"Links":[{"SourceID":78702,"TargetID":78703,"Directional":false}]},{"ID":3155,"SourceStructureID":5562,"TargetStructureID":78704,"Label":"5562-78704 via Adherens from 63723 -> 78705","Type":"Adherens","Directional":false,"Links":[{"SourceID":63723,"TargetID":78705,"Directional":false}]},{"ID":3156,"SourceStructureID":5562,"TargetStructureID":78735,"Label":"5562-78735 via Unknown from 78745 -> 78743, 78758 -> 78756","Type":"Unknown","Directional":false,"Links":[{"SourceID":78745,"TargetID":78743,"Directional":false},{"SourceID":78758,"TargetID":78756,"Directional":false}]},{"ID":3157,"SourceStructureID":78749,"TargetStructureID":5562,"Label":"78749-5562 via Unknown from 78750 -> 63722","Type":"Unknown","Directional":false,"Links":[{"SourceID":78750,"TargetID":63722,"Directional":false}]},{"ID":3158,"SourceStructureID":5562,"TargetStructureID":78766,"Label":"5562-78766 via Unknown from 78767 -> 78768, 78772 -> 78771","Type":"Unknown","Directional":false,"Links":[{"SourceID":78767,"TargetID":78768,"Directional":false},{"SourceID":78772,"TargetID":78771,"Directional":false}]},{"ID":3159,"SourceStructureID":5562,"TargetStructureID":78775,"Label":"5562-78775 via Adherens from 78778 -> 78779","Type":"Adherens","Directional":false,"Links":[{"SourceID":78778,"TargetID":78779,"Directional":false}]},{"ID":3160,"SourceStructureID":5562,"TargetStructureID":78785,"Label":"5562-78785 via Unknown from 78817 -> 78818","Type":"Unknown","Directional":false,"Links":[{"SourceID":78817,"TargetID":78818,"Directional":false}]},{"ID":3161,"SourceStructureID":78787,"TargetStructureID":5562,"Label":"78787-5562 via Unknown from 78789 -> 78788","Type":"Unknown","Directional":false,"Links":[{"SourceID":78789,"TargetID":78788,"Directional":false}]},{"ID":3162,"SourceStructureID":5562,"TargetStructureID":78790,"Label":"5562-78790 via Unknown from 78802 -> 78803","Type":"Unknown","Directional":false,"Links":[{"SourceID":78802,"TargetID":78803,"Directional":false}]},{"ID":3163,"SourceStructureID":78791,"TargetStructureID":5562,"Label":"78791-5562 via Unknown from 78793 -> 78792","Type":"Unknown","Directional":false,"Links":[{"SourceID":78793,"TargetID":78792,"Directional":false}]},{"ID":3164,"SourceStructureID":5562,"TargetStructureID":78804,"Label":"5562-78804 via Unknown from 78808 -> 78809","Type":"Unknown","Directional":false,"Links":[{"SourceID":78808,"TargetID":78809,"Directional":false}]},{"ID":3165,"SourceStructureID":5562,"TargetStructureID":78822,"Label":"5562-78822 via Unknown from 78832 -> 78833","Type":"Unknown","Directional":false,"Links":[{"SourceID":78832,"TargetID":78833,"Directional":false}]},{"ID":3166,"SourceStructureID":78829,"TargetStructureID":5562,"Label":"78829-5562 via Unknown from 78831 -> 78830","Type":"Unknown","Directional":false,"Links":[{"SourceID":78831,"TargetID":78830,"Directional":false}]},{"ID":3167,"SourceStructureID":5562,"TargetStructureID":78837,"Label":"5562-78837 via BC Conventional Synapse from 78836 -> 78838","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":78836,"TargetID":78838,"Directional":false}]},{"ID":3168,"SourceStructureID":5562,"TargetStructureID":78839,"Label":"5562-78839 via Unknown from 135302 -> 134468","Type":"Unknown","Directional":false,"Links":[{"SourceID":135302,"TargetID":134468,"Directional":false}]},{"ID":3169,"SourceStructureID":78840,"TargetStructureID":5562,"Label":"78840-5562 via Unknown from 134467 -> 78841","Type":"Unknown","Directional":false,"Links":[{"SourceID":134467,"TargetID":78841,"Directional":false}]},{"ID":3170,"SourceStructureID":5562,"TargetStructureID":78852,"Label":"5562-78852 via Unknown from 78854 -> 78853","Type":"Unknown","Directional":false,"Links":[{"SourceID":78854,"TargetID":78853,"Directional":false}]},{"ID":3171,"SourceStructureID":78856,"TargetStructureID":5562,"Label":"78856-5562 via Unknown from 78857 -> 78855","Type":"Unknown","Directional":false,"Links":[{"SourceID":78857,"TargetID":78855,"Directional":false}]},{"ID":3172,"SourceStructureID":5562,"TargetStructureID":78860,"Label":"5562-78860 via Adherens from 78861 -> 78862","Type":"Adherens","Directional":false,"Links":[{"SourceID":78861,"TargetID":78862,"Directional":false}]},{"ID":3173,"SourceStructureID":78894,"TargetStructureID":5562,"Label":"78894-5562 via Adherens from 78895 -> 63757","Type":"Adherens","Directional":false,"Links":[{"SourceID":78895,"TargetID":63757,"Directional":false}]},{"ID":3174,"SourceStructureID":78894,"TargetStructureID":5562,"Label":"78894-5562 via Unknown from 78904 -> 78903","Type":"Unknown","Directional":false,"Links":[{"SourceID":78904,"TargetID":78903,"Directional":false}]},{"ID":3175,"SourceStructureID":5562,"TargetStructureID":78909,"Label":"5562-78909 via Unknown from 77255 -> 87509, 87515 -> 77462","Type":"Unknown","Directional":false,"Links":[{"SourceID":77255,"TargetID":87509,"Directional":false},{"SourceID":87515,"TargetID":77462,"Directional":false}]},{"ID":3176,"SourceStructureID":5562,"TargetStructureID":78917,"Label":"5562-78917 via Adherens from 78916 -> 78918","Type":"Adherens","Directional":false,"Links":[{"SourceID":78916,"TargetID":78918,"Directional":false}]},{"ID":3177,"SourceStructureID":78924,"TargetStructureID":5562,"Label":"78924-5562 via Adherens from 78925 -> 63772","Type":"Adherens","Directional":false,"Links":[{"SourceID":78925,"TargetID":63772,"Directional":false}]},{"ID":3178,"SourceStructureID":5562,"TargetStructureID":78930,"Label":"5562-78930 via Adherens from 63773 -> 78934","Type":"Adherens","Directional":false,"Links":[{"SourceID":63773,"TargetID":78934,"Directional":false}]},{"ID":3179,"SourceStructureID":78938,"TargetStructureID":5562,"Label":"78938-5562 via Adherens from 78994 -> 78995","Type":"Adherens","Directional":false,"Links":[{"SourceID":78994,"TargetID":78995,"Directional":false}]},{"ID":3180,"SourceStructureID":78946,"TargetStructureID":5562,"Label":"78946-5562 via Unknown from 78960 -> 78958","Type":"Unknown","Directional":false,"Links":[{"SourceID":78960,"TargetID":78958,"Directional":false}]},{"ID":3181,"SourceStructureID":78969,"TargetStructureID":5562,"Label":"78969-5562 via Unknown from 78971 -> 78970","Type":"Unknown","Directional":false,"Links":[{"SourceID":78971,"TargetID":78970,"Directional":false}]},{"ID":3182,"SourceStructureID":5562,"TargetStructureID":78988,"Label":"5562-78988 via Unknown from 78989 -> 78990","Type":"Unknown","Directional":false,"Links":[{"SourceID":78989,"TargetID":78990,"Directional":false}]},{"ID":3183,"SourceStructureID":5562,"TargetStructureID":78991,"Label":"5562-78991 via BC Conventional Synapse from 63781 -> 78992","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":63781,"TargetID":78992,"Directional":false}]},{"ID":3184,"SourceStructureID":5562,"TargetStructureID":79017,"Label":"5562-79017 via Adherens from 79164 -> 79165","Type":"Adherens","Directional":false,"Links":[{"SourceID":79164,"TargetID":79165,"Directional":false}]},{"ID":3185,"SourceStructureID":5562,"TargetStructureID":79026,"Label":"5562-79026 via Unknown from 134583 -> 134584","Type":"Unknown","Directional":false,"Links":[{"SourceID":134583,"TargetID":134584,"Directional":false}]},{"ID":3186,"SourceStructureID":5562,"TargetStructureID":79170,"Label":"5562-79170 via Adherens from 79174 -> 79173","Type":"Adherens","Directional":false,"Links":[{"SourceID":79174,"TargetID":79173,"Directional":false}]},{"ID":3187,"SourceStructureID":79175,"TargetStructureID":5562,"Label":"79175-5562 via Adherens from 93088 -> 63836","Type":"Adherens","Directional":false,"Links":[{"SourceID":93088,"TargetID":63836,"Directional":false}]},{"ID":3188,"SourceStructureID":5562,"TargetStructureID":79189,"Label":"5562-79189 via Adherens from 63842 -> 79191","Type":"Adherens","Directional":false,"Links":[{"SourceID":63842,"TargetID":79191,"Directional":false}]},{"ID":3189,"SourceStructureID":5562,"TargetStructureID":79196,"Label":"5562-79196 via Adherens from 79199 -> 79198","Type":"Adherens","Directional":false,"Links":[{"SourceID":79199,"TargetID":79198,"Directional":false}]},{"ID":3190,"SourceStructureID":5562,"TargetStructureID":79196,"Label":"5562-79196 via Unknown from 63845 -> 79197","Type":"Unknown","Directional":false,"Links":[{"SourceID":63845,"TargetID":79197,"Directional":false}]},{"ID":3191,"SourceStructureID":5562,"TargetStructureID":79209,"Label":"5562-79209 via Adherens from 79214 -> 79213","Type":"Adherens","Directional":false,"Links":[{"SourceID":79214,"TargetID":79213,"Directional":false}]},{"ID":3192,"SourceStructureID":5562,"TargetStructureID":79222,"Label":"5562-79222 via Adherens from 79221 -> 79223","Type":"Adherens","Directional":false,"Links":[{"SourceID":79221,"TargetID":79223,"Directional":false}]},{"ID":3193,"SourceStructureID":5562,"TargetStructureID":79224,"Label":"5562-79224 via Unknown from 79225 -> 79226","Type":"Unknown","Directional":false,"Links":[{"SourceID":79225,"TargetID":79226,"Directional":false}]},{"ID":3194,"SourceStructureID":79227,"TargetStructureID":5562,"Label":"79227-5562 via Adherens from 79231 -> 63855","Type":"Adherens","Directional":false,"Links":[{"SourceID":79231,"TargetID":63855,"Directional":false}]},{"ID":3195,"SourceStructureID":79623,"TargetStructureID":5562,"Label":"79623-5562 via Adherens from 79624 -> 79622","Type":"Adherens","Directional":false,"Links":[{"SourceID":79624,"TargetID":79622,"Directional":false}]},{"ID":3196,"SourceStructureID":79643,"TargetStructureID":5562,"Label":"79643-5562 via Adherens from 79644 -> 63873","Type":"Adherens","Directional":false,"Links":[{"SourceID":79644,"TargetID":63873,"Directional":false}]},{"ID":3197,"SourceStructureID":79695,"TargetStructureID":5562,"Label":"79695-5562 via Adherens from 79696 -> 79697","Type":"Adherens","Directional":false,"Links":[{"SourceID":79696,"TargetID":79697,"Directional":false}]},{"ID":3198,"SourceStructureID":79735,"TargetStructureID":5562,"Label":"79735-5562 via Adherens from 79736 -> 79737","Type":"Adherens","Directional":false,"Links":[{"SourceID":79736,"TargetID":79737,"Directional":false}]},{"ID":3199,"SourceStructureID":79738,"TargetStructureID":5562,"Label":"79738-5562 via Adherens from 79739 -> 79740","Type":"Adherens","Directional":false,"Links":[{"SourceID":79739,"TargetID":79740,"Directional":false}]},{"ID":3200,"SourceStructureID":5562,"TargetStructureID":79741,"Label":"5562-79741 via Adherens from 81867 -> 81868","Type":"Adherens","Directional":false,"Links":[{"SourceID":81867,"TargetID":81868,"Directional":false}]},{"ID":3201,"SourceStructureID":5562,"TargetStructureID":79747,"Label":"5562-79747 via Adherens from 63891 -> 79748","Type":"Adherens","Directional":false,"Links":[{"SourceID":63891,"TargetID":79748,"Directional":false}]},{"ID":3202,"SourceStructureID":5562,"TargetStructureID":79758,"Label":"5562-79758 via Unknown from 79759 -> 79760","Type":"Unknown","Directional":false,"Links":[{"SourceID":79759,"TargetID":79760,"Directional":false}]},{"ID":3203,"SourceStructureID":79761,"TargetStructureID":5562,"Label":"79761-5562 via Adherens from 79762 -> 79763","Type":"Adherens","Directional":false,"Links":[{"SourceID":79762,"TargetID":79763,"Directional":false}]},{"ID":3204,"SourceStructureID":5562,"TargetStructureID":79770,"Label":"5562-79770 via Unknown from 79769 -> 79771","Type":"Unknown","Directional":false,"Links":[{"SourceID":79769,"TargetID":79771,"Directional":false}]},{"ID":3205,"SourceStructureID":79772,"TargetStructureID":5562,"Label":"79772-5562 via Adherens from 79774 -> 79775","Type":"Adherens","Directional":false,"Links":[{"SourceID":79774,"TargetID":79775,"Directional":false}]},{"ID":3206,"SourceStructureID":5562,"TargetStructureID":79776,"Label":"5562-79776 via Unknown from 79777 -> 79778","Type":"Unknown","Directional":false,"Links":[{"SourceID":79777,"TargetID":79778,"Directional":false}]},{"ID":3207,"SourceStructureID":5562,"TargetStructureID":79791,"Label":"5562-79791 via Unknown from 79789 -> 79792","Type":"Unknown","Directional":false,"Links":[{"SourceID":79789,"TargetID":79792,"Directional":false}]},{"ID":3208,"SourceStructureID":5562,"TargetStructureID":79797,"Label":"5562-79797 via Adherens from 63916 -> 79801","Type":"Adherens","Directional":false,"Links":[{"SourceID":63916,"TargetID":79801,"Directional":false}]},{"ID":3209,"SourceStructureID":79805,"TargetStructureID":5562,"Label":"79805-5562 via Unknown from 79806 -> 79807","Type":"Unknown","Directional":false,"Links":[{"SourceID":79806,"TargetID":79807,"Directional":false}]},{"ID":3210,"SourceStructureID":79808,"TargetStructureID":5562,"Label":"79808-5562 via Unknown from 79831 -> 79812","Type":"Unknown","Directional":false,"Links":[{"SourceID":79831,"TargetID":79812,"Directional":false}]},{"ID":3211,"SourceStructureID":5562,"TargetStructureID":79818,"Label":"5562-79818 via Unknown from 79819 -> 79820","Type":"Unknown","Directional":false,"Links":[{"SourceID":79819,"TargetID":79820,"Directional":false}]},{"ID":3212,"SourceStructureID":79837,"TargetStructureID":5562,"Label":"79837-5562 via Unknown from 79839 -> 79838","Type":"Unknown","Directional":false,"Links":[{"SourceID":79839,"TargetID":79838,"Directional":false}]},{"ID":3213,"SourceStructureID":5562,"TargetStructureID":79898,"Label":"5562-79898 via Unknown from 79897 -> 79899","Type":"Unknown","Directional":false,"Links":[{"SourceID":79897,"TargetID":79899,"Directional":false}]},{"ID":3214,"SourceStructureID":5562,"TargetStructureID":80209,"Label":"5562-80209 via Adherens from 80225 -> 80226","Type":"Adherens","Directional":false,"Links":[{"SourceID":80225,"TargetID":80226,"Directional":false}]},{"ID":3215,"SourceStructureID":5562,"TargetStructureID":80213,"Label":"5562-80213 via Unknown from 80216 -> 80217","Type":"Unknown","Directional":false,"Links":[{"SourceID":80216,"TargetID":80217,"Directional":false}]},{"ID":3216,"SourceStructureID":80229,"TargetStructureID":5562,"Label":"80229-5562 via Unknown from 80230 -> 80227","Type":"Unknown","Directional":false,"Links":[{"SourceID":80230,"TargetID":80227,"Directional":false}]},{"ID":3217,"SourceStructureID":80232,"TargetStructureID":5562,"Label":"80232-5562 via Adherens from 80234 -> 80233","Type":"Adherens","Directional":false,"Links":[{"SourceID":80234,"TargetID":80233,"Directional":false}]},{"ID":3218,"SourceStructureID":80253,"TargetStructureID":5562,"Label":"80253-5562 via Unknown from 80271 -> 80272","Type":"Unknown","Directional":false,"Links":[{"SourceID":80271,"TargetID":80272,"Directional":false}]},{"ID":3219,"SourceStructureID":5562,"TargetStructureID":80296,"Label":"5562-80296 via Unknown from 80298 -> 80300","Type":"Unknown","Directional":false,"Links":[{"SourceID":80298,"TargetID":80300,"Directional":false}]},{"ID":3220,"SourceStructureID":80331,"TargetStructureID":5562,"Label":"80331-5562 via Adherens from 80332 -> 80330","Type":"Adherens","Directional":false,"Links":[{"SourceID":80332,"TargetID":80330,"Directional":false}]},{"ID":3221,"SourceStructureID":80338,"TargetStructureID":5562,"Label":"80338-5562 via Adherens from 80339 -> 80340","Type":"Adherens","Directional":false,"Links":[{"SourceID":80339,"TargetID":80340,"Directional":false}]},{"ID":3222,"SourceStructureID":80350,"TargetStructureID":5562,"Label":"80350-5562 via Adherens from 80351 -> 80352","Type":"Adherens","Directional":false,"Links":[{"SourceID":80351,"TargetID":80352,"Directional":false}]},{"ID":3223,"SourceStructureID":5562,"TargetStructureID":80359,"Label":"5562-80359 via Unknown from 63296 -> 80360","Type":"Unknown","Directional":false,"Links":[{"SourceID":63296,"TargetID":80360,"Directional":false}]},{"ID":3224,"SourceStructureID":5562,"TargetStructureID":80364,"Label":"5562-80364 via Unknown from 80370 -> 80371","Type":"Unknown","Directional":false,"Links":[{"SourceID":80370,"TargetID":80371,"Directional":false}]},{"ID":3225,"SourceStructureID":5562,"TargetStructureID":80368,"Label":"5562-80368 via Unknown from 80367 -> 80369","Type":"Unknown","Directional":false,"Links":[{"SourceID":80367,"TargetID":80369,"Directional":false}]},{"ID":3226,"SourceStructureID":5562,"TargetStructureID":80374,"Label":"5562-80374 via Unknown from 80375 -> 80376","Type":"Unknown","Directional":false,"Links":[{"SourceID":80375,"TargetID":80376,"Directional":false}]},{"ID":3227,"SourceStructureID":80378,"TargetStructureID":5562,"Label":"80378-5562 via Adherens from 93087 -> 80377","Type":"Adherens","Directional":false,"Links":[{"SourceID":93087,"TargetID":80377,"Directional":false}]},{"ID":3228,"SourceStructureID":5562,"TargetStructureID":80399,"Label":"5562-80399 via Gap Junction from 63284 -> 80676","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63284,"TargetID":80676,"Directional":false}]},{"ID":3229,"SourceStructureID":80401,"TargetStructureID":5562,"Label":"80401-5562 via Unknown from 80694 -> 80695","Type":"Unknown","Directional":false,"Links":[{"SourceID":80694,"TargetID":80695,"Directional":false}]},{"ID":3230,"SourceStructureID":80697,"TargetStructureID":5562,"Label":"80697-5562 via Unknown from 80698 -> 80699","Type":"Unknown","Directional":false,"Links":[{"SourceID":80698,"TargetID":80699,"Directional":false}]},{"ID":3231,"SourceStructureID":80702,"TargetStructureID":5562,"Label":"80702-5562 via Unknown from 80704 -> 80705","Type":"Unknown","Directional":false,"Links":[{"SourceID":80704,"TargetID":80705,"Directional":false}]},{"ID":3232,"SourceStructureID":80795,"TargetStructureID":5562,"Label":"80795-5562 via Adherens from 80796 -> 63312","Type":"Adherens","Directional":false,"Links":[{"SourceID":80796,"TargetID":63312,"Directional":false}]},{"ID":3233,"SourceStructureID":80811,"TargetStructureID":5562,"Label":"80811-5562 via Adherens from 80812 -> 80813","Type":"Adherens","Directional":false,"Links":[{"SourceID":80812,"TargetID":80813,"Directional":false}]},{"ID":3234,"SourceStructureID":5562,"TargetStructureID":80823,"Label":"5562-80823 via Adherens from 80822 -> 80824","Type":"Adherens","Directional":false,"Links":[{"SourceID":80822,"TargetID":80824,"Directional":false}]},{"ID":3235,"SourceStructureID":5562,"TargetStructureID":80836,"Label":"5562-80836 via Unknown from 80837 -> 80838","Type":"Unknown","Directional":false,"Links":[{"SourceID":80837,"TargetID":80838,"Directional":false}]},{"ID":3236,"SourceStructureID":5562,"TargetStructureID":80839,"Label":"5562-80839 via Unknown from 80840 -> 80841","Type":"Unknown","Directional":false,"Links":[{"SourceID":80840,"TargetID":80841,"Directional":false}]},{"ID":3237,"SourceStructureID":5562,"TargetStructureID":80876,"Label":"5562-80876 via Adherens from 80888 -> 80887","Type":"Adherens","Directional":false,"Links":[{"SourceID":80888,"TargetID":80887,"Directional":false}]},{"ID":3238,"SourceStructureID":5562,"TargetStructureID":80885,"Label":"5562-80885 via Unknown from 126890 -> 126891","Type":"Unknown","Directional":false,"Links":[{"SourceID":126890,"TargetID":126891,"Directional":false}]},{"ID":3239,"SourceStructureID":80900,"TargetStructureID":5562,"Label":"80900-5562 via Adherens from 134633 -> 134632","Type":"Adherens","Directional":false,"Links":[{"SourceID":134633,"TargetID":134632,"Directional":false}]},{"ID":3240,"SourceStructureID":80900,"TargetStructureID":5562,"Label":"80900-5562 via Unknown from 80901 -> 64194","Type":"Unknown","Directional":false,"Links":[{"SourceID":80901,"TargetID":64194,"Directional":false}]},{"ID":3241,"SourceStructureID":5562,"TargetStructureID":81712,"Label":"5562-81712 via Unknown from 78544 -> 81713","Type":"Unknown","Directional":false,"Links":[{"SourceID":78544,"TargetID":81713,"Directional":false}]},{"ID":3242,"SourceStructureID":81799,"TargetStructureID":5562,"Label":"81799-5562 via Unknown from 81843 -> 81841","Type":"Unknown","Directional":false,"Links":[{"SourceID":81843,"TargetID":81841,"Directional":false}]},{"ID":3243,"SourceStructureID":5562,"TargetStructureID":81810,"Label":"5562-81810 via Adherens from 77243 -> 81812","Type":"Adherens","Directional":false,"Links":[{"SourceID":77243,"TargetID":81812,"Directional":false}]},{"ID":3244,"SourceStructureID":84530,"TargetStructureID":5562,"Label":"84530-5562 via Unknown from 134651 -> 134650","Type":"Unknown","Directional":false,"Links":[{"SourceID":134651,"TargetID":134650,"Directional":false}]},{"ID":3245,"SourceStructureID":89312,"TargetStructureID":5562,"Label":"89312-5562 via Unknown from 116713 -> 78189","Type":"Unknown","Directional":false,"Links":[{"SourceID":116713,"TargetID":78189,"Directional":false}]},{"ID":3246,"SourceStructureID":5563,"TargetStructureID":8037,"Label":"5563-8037 via Adherens from 32392 -> 32391","Type":"Adherens","Directional":false,"Links":[{"SourceID":32392,"TargetID":32391,"Directional":false}]},{"ID":3247,"SourceStructureID":5565,"TargetStructureID":5568,"Label":"5565-5568 via Gap Junction from 50174 -> 50374, 50847 -> 50364, 121318 -> 121317","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50174,"TargetID":50374,"Directional":false},{"SourceID":50847,"TargetID":50364,"Directional":false},{"SourceID":121318,"TargetID":121317,"Directional":false}]},{"ID":3248,"SourceStructureID":7024,"TargetStructureID":5565,"Label":"7024-5565 via Gap Junction from 114150 -> 115305","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":114150,"TargetID":115305,"Directional":false}]},{"ID":3249,"SourceStructureID":5565,"TargetStructureID":7040,"Label":"5565-7040 via Gap Junction from 37692 -> 50890, 50191 -> 50316, 136157 -> 50192, 136164 -> 136163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37692,"TargetID":50890,"Directional":false},{"SourceID":50191,"TargetID":50316,"Directional":false},{"SourceID":136157,"TargetID":50192,"Directional":false},{"SourceID":136164,"TargetID":136163,"Directional":false}]},{"ID":3250,"SourceStructureID":5565,"TargetStructureID":7050,"Label":"5565-7050 via Gap Junction from 32484 -> 14312","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32484,"TargetID":14312,"Directional":false}]},{"ID":3251,"SourceStructureID":5565,"TargetStructureID":8037,"Label":"5565-8037 via Gap Junction from 50235 -> 50236, 50814 -> 136198, 50823 -> 50822, 50827 -> 24600, 50839 -> 50838, 136194 -> 136197, 136196 -> 136195, 148264 -> 148265","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50235,"TargetID":50236,"Directional":false},{"SourceID":50814,"TargetID":136198,"Directional":false},{"SourceID":50823,"TargetID":50822,"Directional":false},{"SourceID":50827,"TargetID":24600,"Directional":false},{"SourceID":50839,"TargetID":50838,"Directional":false},{"SourceID":136194,"TargetID":136197,"Directional":false},{"SourceID":136196,"TargetID":136195,"Directional":false},{"SourceID":148264,"TargetID":148265,"Directional":false}]},{"ID":3252,"SourceStructureID":5565,"TargetStructureID":8038,"Label":"5565-8038 via Gap Junction from 37694 -> 50330, 37708 -> 37709, 37710 -> 37711, 50169 -> 50980, 68923 -> 68922","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37694,"TargetID":50330,"Directional":false},{"SourceID":37708,"TargetID":37709,"Directional":false},{"SourceID":37710,"TargetID":37711,"Directional":false},{"SourceID":50169,"TargetID":50980,"Directional":false},{"SourceID":68923,"TargetID":68922,"Directional":false}]},{"ID":3253,"SourceStructureID":5566,"TargetStructureID":59262,"Label":"5566-59262 via Gap Junction from 59266 -> 59264, 59324 -> 59322","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59266,"TargetID":59264,"Directional":false},{"SourceID":59324,"TargetID":59322,"Directional":false}]},{"ID":3254,"SourceStructureID":5566,"TargetStructureID":59278,"Label":"5566-59278 via Gap Junction from 59269 -> 59279","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59269,"TargetID":59279,"Directional":false}]},{"ID":3255,"SourceStructureID":59280,"TargetStructureID":5566,"Label":"59280-5566 via Gap Junction from 59281 -> 59267","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59281,"TargetID":59267,"Directional":false}]},{"ID":3256,"SourceStructureID":59310,"TargetStructureID":5566,"Label":"59310-5566 via Gap Junction from 59311 -> 59309","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59311,"TargetID":59309,"Directional":false}]},{"ID":3257,"SourceStructureID":8037,"TargetStructureID":5568,"Label":"8037-5568 via Touch from 148214 -> 148213","Type":"Touch","Directional":false,"Links":[{"SourceID":148214,"TargetID":148213,"Directional":false}]},{"ID":3258,"SourceStructureID":5568,"TargetStructureID":46388,"Label":"5568-46388 via Gap Junction from 121399 -> 121398, 121429 -> 121428, 121475 -> 121474, 121482 -> 121481","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121399,"TargetID":121398,"Directional":false},{"SourceID":121429,"TargetID":121428,"Directional":false},{"SourceID":121475,"TargetID":121474,"Directional":false},{"SourceID":121482,"TargetID":121481,"Directional":false}]},{"ID":3259,"SourceStructureID":5568,"TargetStructureID":50449,"Label":"5568-50449 via Gap Junction from 49971 -> 50487, 50389 -> 50659, 99185 -> 50622, 120841 -> 120840, 120850 -> 99176, 120853 -> 120852, 121342 -> 121341, 121360 -> 121358, 121417 -> 121416, 121479 -> 121478, 121512 -> 121513, 121532 -> 121533","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49971,"TargetID":50487,"Directional":false},{"SourceID":50389,"TargetID":50659,"Directional":false},{"SourceID":99185,"TargetID":50622,"Directional":false},{"SourceID":120841,"TargetID":120840,"Directional":false},{"SourceID":120850,"TargetID":99176,"Directional":false},{"SourceID":120853,"TargetID":120852,"Directional":false},{"SourceID":121342,"TargetID":121341,"Directional":false},{"SourceID":121360,"TargetID":121358,"Directional":false},{"SourceID":121417,"TargetID":121416,"Directional":false},{"SourceID":121479,"TargetID":121478,"Directional":false},{"SourceID":121512,"TargetID":121513,"Directional":false},{"SourceID":121532,"TargetID":121533,"Directional":false}]},{"ID":3260,"SourceStructureID":5568,"TargetStructureID":56714,"Label":"5568-56714 via Unknown from 121225 -> 121226","Type":"Unknown","Directional":false,"Links":[{"SourceID":121225,"TargetID":121226,"Directional":false}]},{"ID":3261,"SourceStructureID":5575,"TargetStructureID":5575,"Label":"5575-5575 via Adherens from 22963 -> 22962","Type":"Adherens","Directional":false,"Links":[{"SourceID":22963,"TargetID":22962,"Directional":false}]},{"ID":3262,"SourceStructureID":6156,"TargetStructureID":5575,"Label":"6156-5575 via Unknown from 133149 -> 133150","Type":"Unknown","Directional":false,"Links":[{"SourceID":133149,"TargetID":133150,"Directional":false}]},{"ID":3263,"SourceStructureID":5575,"TargetStructureID":7568,"Label":"5575-7568 via Adherens from 27063 -> 27062, 27065 -> 27064","Type":"Adherens","Directional":false,"Links":[{"SourceID":27063,"TargetID":27062,"Directional":false},{"SourceID":27065,"TargetID":27064,"Directional":false}]},{"ID":3264,"SourceStructureID":5584,"TargetStructureID":5584,"Label":"5584-5584 via Gap Junction from 126922 -> 126923","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":126922,"TargetID":126923,"Directional":false}]},{"ID":3265,"SourceStructureID":5584,"TargetStructureID":5592,"Label":"5584-5592 via Gap Junction from 38964 -> 36845, 121801 -> 121800, 121802 -> 57409, 121804 -> 121803, 121807 -> 121806","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38964,"TargetID":36845,"Directional":false},{"SourceID":121801,"TargetID":121800,"Directional":false},{"SourceID":121802,"TargetID":57409,"Directional":false},{"SourceID":121804,"TargetID":121803,"Directional":false},{"SourceID":121807,"TargetID":121806,"Directional":false}]},{"ID":3266,"SourceStructureID":5598,"TargetStructureID":5584,"Label":"5598-5584 via Adherens from 123871 -> 123870, 124473 -> 124474, 126934 -> 126935, 126953 -> 126954","Type":"Adherens","Directional":false,"Links":[{"SourceID":123871,"TargetID":123870,"Directional":false},{"SourceID":124473,"TargetID":124474,"Directional":false},{"SourceID":126934,"TargetID":126935,"Directional":false},{"SourceID":126953,"TargetID":126954,"Directional":false}]},{"ID":3267,"SourceStructureID":5584,"TargetStructureID":5598,"Label":"5584-5598 via Gap Junction from 37927 -> 37926, 57124 -> 57123, 114469 -> 114468, 114472 -> 114471, 114479 -> 114476, 114585 -> 114584, 115077 -> 115076, 115131 -> 57183, 123820 -> 123821, 124250 -> 124251, 126920 -> 126921, 147989 -> 147990","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37927,"TargetID":37926,"Directional":false},{"SourceID":57124,"TargetID":57123,"Directional":false},{"SourceID":114469,"TargetID":114468,"Directional":false},{"SourceID":114472,"TargetID":114471,"Directional":false},{"SourceID":114479,"TargetID":114476,"Directional":false},{"SourceID":114585,"TargetID":114584,"Directional":false},{"SourceID":115077,"TargetID":115076,"Directional":false},{"SourceID":115131,"TargetID":57183,"Directional":false},{"SourceID":123820,"TargetID":123821,"Directional":false},{"SourceID":124250,"TargetID":124251,"Directional":false},{"SourceID":126920,"TargetID":126921,"Directional":false},{"SourceID":147989,"TargetID":147990,"Directional":false}]},{"ID":3268,"SourceStructureID":5584,"TargetStructureID":5598,"Label":"5584-5598 via Touch from 123875 -> 123876","Type":"Touch","Directional":false,"Links":[{"SourceID":123875,"TargetID":123876,"Directional":false}]},{"ID":3269,"SourceStructureID":6047,"TargetStructureID":5584,"Label":"6047-5584 via Gap Junction from 113320 -> 113321","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113320,"TargetID":113321,"Directional":false}]},{"ID":3270,"SourceStructureID":6203,"TargetStructureID":5584,"Label":"6203-5584 via Gap Junction from 57221 -> 57220","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57221,"TargetID":57220,"Directional":false}]},{"ID":3271,"SourceStructureID":7114,"TargetStructureID":5584,"Label":"7114-5584 via Adherens from 124464 -> 124465","Type":"Adherens","Directional":false,"Links":[{"SourceID":124464,"TargetID":124465,"Directional":false}]},{"ID":3272,"SourceStructureID":15976,"TargetStructureID":5584,"Label":"15976-5584 via Gap Junction from 57357 -> 57356","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57357,"TargetID":57356,"Directional":false}]},{"ID":3273,"SourceStructureID":57178,"TargetStructureID":5584,"Label":"57178-5584 via Unknown from 124248 -> 124249","Type":"Unknown","Directional":false,"Links":[{"SourceID":124248,"TargetID":124249,"Directional":false}]},{"ID":3274,"SourceStructureID":57218,"TargetStructureID":5584,"Label":"57218-5584 via Gap Junction from 57219 -> 57217","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57219,"TargetID":57217,"Directional":false}]},{"ID":3275,"SourceStructureID":57360,"TargetStructureID":5584,"Label":"57360-5584 via Gap Junction from 57361 -> 57359, 57363 -> 57362","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57361,"TargetID":57359,"Directional":false},{"SourceID":57363,"TargetID":57362,"Directional":false}]},{"ID":3276,"SourceStructureID":57487,"TargetStructureID":5584,"Label":"57487-5584 via Gap Junction from 57488 -> 57406","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57488,"TargetID":57406,"Directional":false}]},{"ID":3277,"SourceStructureID":126901,"TargetStructureID":5584,"Label":"126901-5584 via Adherens from 126929 -> 126930","Type":"Adherens","Directional":false,"Links":[{"SourceID":126929,"TargetID":126930,"Directional":false}]},{"ID":3278,"SourceStructureID":5584,"TargetStructureID":126901,"Label":"5584-126901 via Unknown from 126908 -> 126909","Type":"Unknown","Directional":false,"Links":[{"SourceID":126908,"TargetID":126909,"Directional":false}]},{"ID":3279,"SourceStructureID":136465,"TargetStructureID":5587,"Label":"136465-5587 via Gap Junction from 136468 -> 136464","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136468,"TargetID":136464,"Directional":false}]},{"ID":3280,"SourceStructureID":5592,"TargetStructureID":5592,"Label":"5592-5592 via Gap Junction from 121797 -> 121798","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121797,"TargetID":121798,"Directional":false}]},{"ID":3281,"SourceStructureID":5592,"TargetStructureID":15976,"Label":"5592-15976 via Gap Junction from 57490 -> 57493","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57490,"TargetID":57493,"Directional":false}]},{"ID":3282,"SourceStructureID":92954,"TargetStructureID":5592,"Label":"92954-5592 via Gap Junction from 92958 -> 92961, 121756 -> 121755","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92958,"TargetID":92961,"Directional":false},{"SourceID":121756,"TargetID":121755,"Directional":false}]},{"ID":3283,"SourceStructureID":122018,"TargetStructureID":5596,"Label":"122018-5596 via Gap Junction from 122019 -> 122017","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122019,"TargetID":122017,"Directional":false}]},{"ID":3284,"SourceStructureID":5598,"TargetStructureID":5598,"Label":"5598-5598 via Gap Junction from 115287 -> 45199, 124164 -> 124165","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115287,"TargetID":45199,"Directional":false},{"SourceID":124164,"TargetID":124165,"Directional":false}]},{"ID":3285,"SourceStructureID":5598,"TargetStructureID":5601,"Label":"5598-5601 via Gap Junction from 123806 -> 123805","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123806,"TargetID":123805,"Directional":false}]},{"ID":3286,"SourceStructureID":5598,"TargetStructureID":5641,"Label":"5598-5641 via Adherens from 124052 -> 124053, 126939 -> 126940, 147995 -> 147996","Type":"Adherens","Directional":false,"Links":[{"SourceID":124052,"TargetID":124053,"Directional":false},{"SourceID":126939,"TargetID":126940,"Directional":false},{"SourceID":147995,"TargetID":147996,"Directional":false}]},{"ID":3287,"SourceStructureID":5641,"TargetStructureID":5598,"Label":"5641-5598 via Gap Junction from 57507 -> 57484, 114964 -> 114966, 114971 -> 114970, 114985 -> 114986, 114999 -> 114998, 115011 -> 115010, 115030 -> 115028, 115047 -> 115046, 123810 -> 114962, 123816 -> 114967, 124229 -> 124228, 124230 -> 124231, 124241 -> 124242, 124438 -> 124437, 124443 -> 124444, 124478 -> 124479","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57507,"TargetID":57484,"Directional":false},{"SourceID":114964,"TargetID":114966,"Directional":false},{"SourceID":114971,"TargetID":114970,"Directional":false},{"SourceID":114985,"TargetID":114986,"Directional":false},{"SourceID":114999,"TargetID":114998,"Directional":false},{"SourceID":115011,"TargetID":115010,"Directional":false},{"SourceID":115030,"TargetID":115028,"Directional":false},{"SourceID":115047,"TargetID":115046,"Directional":false},{"SourceID":123810,"TargetID":114962,"Directional":false},{"SourceID":123816,"TargetID":114967,"Directional":false},{"SourceID":124229,"TargetID":124228,"Directional":false},{"SourceID":124230,"TargetID":124231,"Directional":false},{"SourceID":124241,"TargetID":124242,"Directional":false},{"SourceID":124438,"TargetID":124437,"Directional":false},{"SourceID":124443,"TargetID":124444,"Directional":false},{"SourceID":124478,"TargetID":124479,"Directional":false}]},{"ID":3288,"SourceStructureID":5598,"TargetStructureID":6047,"Label":"5598-6047 via Gap Junction from 45200 -> 30637, 113319 -> 113318, 113793 -> 113792","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45200,"TargetID":30637,"Directional":false},{"SourceID":113319,"TargetID":113318,"Directional":false},{"SourceID":113793,"TargetID":113792,"Directional":false}]},{"ID":3289,"SourceStructureID":5598,"TargetStructureID":6203,"Label":"5598-6203 via Gap Junction from 124470 -> 124469","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124470,"TargetID":124469,"Directional":false}]},{"ID":3290,"SourceStructureID":7113,"TargetStructureID":5598,"Label":"7113-5598 via Adherens from 126938 -> 126937, 126958 -> 126957, 126959 -> 126960","Type":"Adherens","Directional":false,"Links":[{"SourceID":126938,"TargetID":126937,"Directional":false},{"SourceID":126958,"TargetID":126957,"Directional":false},{"SourceID":126959,"TargetID":126960,"Directional":false}]},{"ID":3291,"SourceStructureID":7113,"TargetStructureID":5598,"Label":"7113-5598 via Gap Junction from 24311 -> 115032, 32417 -> 27344, 32418 -> 27343, 36023 -> 27342, 36024 -> 36025, 57082 -> 27353, 82080 -> 82081, 91506 -> 91505, 114600 -> 27345, 115005 -> 115004, 115017 -> 115016, 115036 -> 115035, 124078 -> 124077, 124083 -> 124082, 124092 -> 124091, 124247 -> 124246","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24311,"TargetID":115032,"Directional":false},{"SourceID":32417,"TargetID":27344,"Directional":false},{"SourceID":32418,"TargetID":27343,"Directional":false},{"SourceID":36023,"TargetID":27342,"Directional":false},{"SourceID":36024,"TargetID":36025,"Directional":false},{"SourceID":57082,"TargetID":27353,"Directional":false},{"SourceID":82080,"TargetID":82081,"Directional":false},{"SourceID":91506,"TargetID":91505,"Directional":false},{"SourceID":114600,"TargetID":27345,"Directional":false},{"SourceID":115005,"TargetID":115004,"Directional":false},{"SourceID":115017,"TargetID":115016,"Directional":false},{"SourceID":115036,"TargetID":115035,"Directional":false},{"SourceID":124078,"TargetID":124077,"Directional":false},{"SourceID":124083,"TargetID":124082,"Directional":false},{"SourceID":124092,"TargetID":124091,"Directional":false},{"SourceID":124247,"TargetID":124246,"Directional":false}]},{"ID":3292,"SourceStructureID":5598,"TargetStructureID":7114,"Label":"5598-7114 via Gap Junction from 12557 -> 12522, 52987 -> 52986, 57186 -> 115116, 59068 -> 59067, 115153 -> 115152, 124186 -> 26610, 124208 -> 124209, 124446 -> 124447, 124467 -> 124466","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":12557,"TargetID":12522,"Directional":false},{"SourceID":52987,"TargetID":52986,"Directional":false},{"SourceID":57186,"TargetID":115116,"Directional":false},{"SourceID":59068,"TargetID":59067,"Directional":false},{"SourceID":115153,"TargetID":115152,"Directional":false},{"SourceID":124186,"TargetID":26610,"Directional":false},{"SourceID":124208,"TargetID":124209,"Directional":false},{"SourceID":124446,"TargetID":124447,"Directional":false},{"SourceID":124467,"TargetID":124466,"Directional":false}]},{"ID":3293,"SourceStructureID":5598,"TargetStructureID":15977,"Label":"5598-15977 via Touch from 126945 -> 126946","Type":"Touch","Directional":false,"Links":[{"SourceID":126945,"TargetID":126946,"Directional":false}]},{"ID":3294,"SourceStructureID":5598,"TargetStructureID":35811,"Label":"5598-35811 via Unknown from 124484 -> 126918","Type":"Unknown","Directional":false,"Links":[{"SourceID":124484,"TargetID":126918,"Directional":false}]},{"ID":3295,"SourceStructureID":38949,"TargetStructureID":5598,"Label":"38949-5598 via Adherens from 124476 -> 124475","Type":"Adherens","Directional":false,"Links":[{"SourceID":124476,"TargetID":124475,"Directional":false}]},{"ID":3296,"SourceStructureID":5598,"TargetStructureID":54698,"Label":"5598-54698 via Unknown from 115172 -> 115173","Type":"Unknown","Directional":false,"Links":[{"SourceID":115172,"TargetID":115173,"Directional":false}]},{"ID":3297,"SourceStructureID":5598,"TargetStructureID":57178,"Label":"5598-57178 via Unknown from 57177 -> 57181","Type":"Unknown","Directional":false,"Links":[{"SourceID":57177,"TargetID":57181,"Directional":false}]},{"ID":3298,"SourceStructureID":57299,"TargetStructureID":5598,"Label":"57299-5598 via Adherens from 123855 -> 123856","Type":"Adherens","Directional":false,"Links":[{"SourceID":123855,"TargetID":123856,"Directional":false}]},{"ID":3299,"SourceStructureID":73348,"TargetStructureID":5598,"Label":"73348-5598 via Adherens from 124603 -> 124602","Type":"Adherens","Directional":false,"Links":[{"SourceID":124603,"TargetID":124602,"Directional":false}]},{"ID":3300,"SourceStructureID":91578,"TargetStructureID":5598,"Label":"91578-5598 via Adherens from 114939 -> 114938","Type":"Adherens","Directional":false,"Links":[{"SourceID":114939,"TargetID":114938,"Directional":false}]},{"ID":3301,"SourceStructureID":5598,"TargetStructureID":114618,"Label":"5598-114618 via Unknown from 57104 -> 114619","Type":"Unknown","Directional":false,"Links":[{"SourceID":57104,"TargetID":114619,"Directional":false}]},{"ID":3302,"SourceStructureID":5598,"TargetStructureID":114996,"Label":"5598-114996 via Adherens from 115034 -> 123790","Type":"Adherens","Directional":false,"Links":[{"SourceID":115034,"TargetID":123790,"Directional":false}]},{"ID":3303,"SourceStructureID":114996,"TargetStructureID":5598,"Label":"114996-5598 via Unknown from 124049 -> 124048, 124051 -> 124050","Type":"Unknown","Directional":false,"Links":[{"SourceID":124049,"TargetID":124048,"Directional":false},{"SourceID":124051,"TargetID":124050,"Directional":false}]},{"ID":3304,"SourceStructureID":5598,"TargetStructureID":115007,"Label":"5598-115007 via Adherens from 115009 -> 115008","Type":"Adherens","Directional":false,"Links":[{"SourceID":115009,"TargetID":115008,"Directional":false}]},{"ID":3305,"SourceStructureID":5598,"TargetStructureID":115118,"Label":"5598-115118 via Gap Junction from 148028 -> 148029, 148031 -> 148030","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":148028,"TargetID":148029,"Directional":false},{"SourceID":148031,"TargetID":148030,"Directional":false}]},{"ID":3306,"SourceStructureID":115291,"TargetStructureID":5598,"Label":"115291-5598 via Unknown from 124193 -> 124192","Type":"Unknown","Directional":false,"Links":[{"SourceID":124193,"TargetID":124192,"Directional":false}]},{"ID":3307,"SourceStructureID":116142,"TargetStructureID":5598,"Label":"116142-5598 via Unknown from 115281 -> 115279, 124194 -> 124195","Type":"Unknown","Directional":false,"Links":[{"SourceID":115281,"TargetID":115279,"Directional":false},{"SourceID":124194,"TargetID":124195,"Directional":false}]},{"ID":3308,"SourceStructureID":5598,"TargetStructureID":124069,"Label":"5598-124069 via Unknown from 124072 -> 124073, 124090 -> 126916, 126913 -> 124081, 147987 -> 147988","Type":"Unknown","Directional":false,"Links":[{"SourceID":124072,"TargetID":124073,"Directional":false},{"SourceID":124090,"TargetID":126916,"Directional":false},{"SourceID":126913,"TargetID":124081,"Directional":false},{"SourceID":147987,"TargetID":147988,"Directional":false}]},{"ID":3309,"SourceStructureID":5598,"TargetStructureID":126901,"Label":"5598-126901 via Unknown from 124605 -> 126932, 126907 -> 114453, 126910 -> 114583","Type":"Unknown","Directional":false,"Links":[{"SourceID":124605,"TargetID":126932,"Directional":false},{"SourceID":126907,"TargetID":114453,"Directional":false},{"SourceID":126910,"TargetID":114583,"Directional":false}]},{"ID":3310,"SourceStructureID":5601,"TargetStructureID":5599,"Label":"5601-5599 via Gap Junction from 92521 -> 92522","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92521,"TargetID":92522,"Directional":false}]},{"ID":3311,"SourceStructureID":5599,"TargetStructureID":5635,"Label":"5599-5635 via Gap Junction from 55948 -> 55947, 66592 -> 66593, 117765 -> 117764, 117766 -> 56138, 117772 -> 117769","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55948,"TargetID":55947,"Directional":false},{"SourceID":66592,"TargetID":66593,"Directional":false},{"SourceID":117765,"TargetID":117764,"Directional":false},{"SourceID":117766,"TargetID":56138,"Directional":false},{"SourceID":117772,"TargetID":117769,"Directional":false}]},{"ID":3312,"SourceStructureID":5638,"TargetStructureID":5599,"Label":"5638-5599 via Gap Junction from 117195 -> 117194","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117195,"TargetID":117194,"Directional":false}]},{"ID":3313,"SourceStructureID":5860,"TargetStructureID":5599,"Label":"5860-5599 via Gap Junction from 38332 -> 38331, 118432 -> 118431","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38332,"TargetID":38331,"Directional":false},{"SourceID":118432,"TargetID":118431,"Directional":false}]},{"ID":3314,"SourceStructureID":5599,"TargetStructureID":6115,"Label":"5599-6115 via Adherens from 72333 -> 72334, 73231 -> 73232, 73954 -> 73955, 75846 -> 75847, 135178 -> 135179","Type":"Adherens","Directional":false,"Links":[{"SourceID":72333,"TargetID":72334,"Directional":false},{"SourceID":73231,"TargetID":73232,"Directional":false},{"SourceID":73954,"TargetID":73955,"Directional":false},{"SourceID":75846,"TargetID":75847,"Directional":false},{"SourceID":135178,"TargetID":135179,"Directional":false}]},{"ID":3315,"SourceStructureID":6115,"TargetStructureID":5599,"Label":"6115-5599 via Gap Junction from 56158 -> 56157, 56258 -> 74006, 56308 -> 73944, 73234 -> 73233, 75511 -> 75510, 116741 -> 116742, 116745 -> 116746","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56158,"TargetID":56157,"Directional":false},{"SourceID":56258,"TargetID":74006,"Directional":false},{"SourceID":56308,"TargetID":73944,"Directional":false},{"SourceID":73234,"TargetID":73233,"Directional":false},{"SourceID":75511,"TargetID":75510,"Directional":false},{"SourceID":116741,"TargetID":116742,"Directional":false},{"SourceID":116745,"TargetID":116746,"Directional":false}]},{"ID":3316,"SourceStructureID":5599,"TargetStructureID":7113,"Label":"5599-7113 via Gap Junction from 27352 -> 27351, 37913 -> 37912, 118424 -> 118425, 118430 -> 118429, 128734 -> 128735","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":27352,"TargetID":27351,"Directional":false},{"SourceID":37913,"TargetID":37912,"Directional":false},{"SourceID":118424,"TargetID":118425,"Directional":false},{"SourceID":118430,"TargetID":118429,"Directional":false},{"SourceID":128734,"TargetID":128735,"Directional":false}]},{"ID":3317,"SourceStructureID":7114,"TargetStructureID":5599,"Label":"7114-5599 via Gap Junction from 116822 -> 116821","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116822,"TargetID":116821,"Directional":false}]},{"ID":3318,"SourceStructureID":5599,"TargetStructureID":7231,"Label":"5599-7231 via Adherens from 117017 -> 117016","Type":"Adherens","Directional":false,"Links":[{"SourceID":117017,"TargetID":117016,"Directional":false}]},{"ID":3319,"SourceStructureID":15977,"TargetStructureID":5599,"Label":"15977-5599 via Adherens from 116938 -> 116937, 117192 -> 117191","Type":"Adherens","Directional":false,"Links":[{"SourceID":116938,"TargetID":116937,"Directional":false},{"SourceID":117192,"TargetID":117191,"Directional":false}]},{"ID":3320,"SourceStructureID":15977,"TargetStructureID":5599,"Label":"15977-5599 via Gap Junction from 33955 -> 115585, 56319 -> 56321, 117193 -> 117189","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":33955,"TargetID":115585,"Directional":false},{"SourceID":56319,"TargetID":56321,"Directional":false},{"SourceID":117193,"TargetID":117189,"Directional":false}]},{"ID":3321,"SourceStructureID":5599,"TargetStructureID":72299,"Label":"5599-72299 via Gap Junction from 56154 -> 82116","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56154,"TargetID":82116,"Directional":false}]},{"ID":3322,"SourceStructureID":5599,"TargetStructureID":131156,"Label":"5599-131156 via Gap Junction from 56126 -> 133802","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56126,"TargetID":133802,"Directional":false}]},{"ID":3323,"SourceStructureID":5600,"TargetStructureID":6958,"Label":"5600-6958 via Adherens from 116668 -> 116636, 116687 -> 116686","Type":"Adherens","Directional":false,"Links":[{"SourceID":116668,"TargetID":116636,"Directional":false},{"SourceID":116687,"TargetID":116686,"Directional":false}]},{"ID":3324,"SourceStructureID":5600,"TargetStructureID":7113,"Label":"5600-7113 via Gap Junction from 117246 -> 27356","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117246,"TargetID":27356,"Directional":false}]},{"ID":3325,"SourceStructureID":7114,"TargetStructureID":5600,"Label":"7114-5600 via Gap Junction from 26617 -> 26623, 71355 -> 26616, 116685 -> 122902, 116826 -> 116825, 116830 -> 116824, 124449 -> 124450, 124451 -> 124452","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":26617,"TargetID":26623,"Directional":false},{"SourceID":71355,"TargetID":26616,"Directional":false},{"SourceID":116685,"TargetID":122902,"Directional":false},{"SourceID":116826,"TargetID":116825,"Directional":false},{"SourceID":116830,"TargetID":116824,"Directional":false},{"SourceID":124449,"TargetID":124450,"Directional":false},{"SourceID":124451,"TargetID":124452,"Directional":false}]},{"ID":3326,"SourceStructureID":7231,"TargetStructureID":5600,"Label":"7231-5600 via Unknown from 116998 -> 116997","Type":"Unknown","Directional":false,"Links":[{"SourceID":116998,"TargetID":116997,"Directional":false}]},{"ID":3327,"SourceStructureID":39319,"TargetStructureID":5600,"Label":"39319-5600 via Adherens from 121945 -> 121944","Type":"Adherens","Directional":false,"Links":[{"SourceID":121945,"TargetID":121944,"Directional":false}]},{"ID":3328,"SourceStructureID":5601,"TargetStructureID":5601,"Label":"5601-5601 via Gap Junction from 127568 -> 135646","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":127568,"TargetID":135646,"Directional":false}]},{"ID":3329,"SourceStructureID":5601,"TargetStructureID":5637,"Label":"5601-5637 via Gap Junction from 56029 -> 56028, 127622 -> 127623","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56029,"TargetID":56028,"Directional":false},{"SourceID":127622,"TargetID":127623,"Directional":false}]},{"ID":3330,"SourceStructureID":5637,"TargetStructureID":5601,"Label":"5637-5601 via Touch from 91482 -> 91481, 135630 -> 135631","Type":"Touch","Directional":false,"Links":[{"SourceID":91482,"TargetID":91481,"Directional":false},{"SourceID":135630,"TargetID":135631,"Directional":false}]},{"ID":3331,"SourceStructureID":5650,"TargetStructureID":5601,"Label":"5650-5601 via Gap Junction from 56107 -> 56106","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56107,"TargetID":56106,"Directional":false}]},{"ID":3332,"SourceStructureID":5601,"TargetStructureID":6117,"Label":"5601-6117 via Gap Junction from 45391 -> 30915, 60117 -> 60056","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45391,"TargetID":30915,"Directional":false},{"SourceID":60117,"TargetID":60056,"Directional":false}]},{"ID":3333,"SourceStructureID":5601,"TargetStructureID":7113,"Label":"5601-7113 via Gap Junction from 15250 -> 15246, 29944 -> 29946, 29945 -> 29942, 54474 -> 54473, 54801 -> 54800, 91431 -> 91430, 92106 -> 127187, 124059 -> 124058","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15250,"TargetID":15246,"Directional":false},{"SourceID":29944,"TargetID":29946,"Directional":false},{"SourceID":29945,"TargetID":29942,"Directional":false},{"SourceID":54474,"TargetID":54473,"Directional":false},{"SourceID":54801,"TargetID":54800,"Directional":false},{"SourceID":91431,"TargetID":91430,"Directional":false},{"SourceID":92106,"TargetID":127187,"Directional":false},{"SourceID":124059,"TargetID":124058,"Directional":false}]},{"ID":3334,"SourceStructureID":5601,"TargetStructureID":7114,"Label":"5601-7114 via Gap Junction from 36037 -> 122807, 57372 -> 57371, 134797 -> 127519","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36037,"TargetID":122807,"Directional":false},{"SourceID":57372,"TargetID":57371,"Directional":false},{"SourceID":134797,"TargetID":127519,"Directional":false}]},{"ID":3335,"SourceStructureID":7114,"TargetStructureID":5601,"Label":"7114-5601 via Touch from 135628 -> 135629","Type":"Touch","Directional":false,"Links":[{"SourceID":135628,"TargetID":135629,"Directional":false}]},{"ID":3336,"SourceStructureID":9769,"TargetStructureID":5601,"Label":"9769-5601 via Adherens from 127377 -> 127376, 127561 -> 127562","Type":"Adherens","Directional":false,"Links":[{"SourceID":127377,"TargetID":127376,"Directional":false},{"SourceID":127561,"TargetID":127562,"Directional":false}]},{"ID":3337,"SourceStructureID":9769,"TargetStructureID":5601,"Label":"9769-5601 via Unknown from 127211 -> 127210, 127566 -> 127567","Type":"Unknown","Directional":false,"Links":[{"SourceID":127211,"TargetID":127210,"Directional":false},{"SourceID":127566,"TargetID":127567,"Directional":false}]},{"ID":3338,"SourceStructureID":5601,"TargetStructureID":11229,"Label":"5601-11229 via Gap Junction from 58588 -> 58587, 91444 -> 15633, 91480 -> 135680","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58588,"TargetID":58587,"Directional":false},{"SourceID":91444,"TargetID":15633,"Directional":false},{"SourceID":91480,"TargetID":135680,"Directional":false}]},{"ID":3339,"SourceStructureID":5601,"TargetStructureID":23836,"Label":"5601-23836 via Adherens from 127427 -> 127431","Type":"Adherens","Directional":false,"Links":[{"SourceID":127427,"TargetID":127431,"Directional":false}]},{"ID":3340,"SourceStructureID":33057,"TargetStructureID":5601,"Label":"33057-5601 via Unknown from 127564 -> 127563","Type":"Unknown","Directional":false,"Links":[{"SourceID":127564,"TargetID":127563,"Directional":false}]},{"ID":3341,"SourceStructureID":34055,"TargetStructureID":5601,"Label":"34055-5601 via Unknown from 127166 -> 127165","Type":"Unknown","Directional":false,"Links":[{"SourceID":127166,"TargetID":127165,"Directional":false}]},{"ID":3342,"SourceStructureID":5601,"TargetStructureID":35180,"Label":"5601-35180 via Unknown from 127576 -> 127577","Type":"Unknown","Directional":false,"Links":[{"SourceID":127576,"TargetID":127577,"Directional":false}]},{"ID":3343,"SourceStructureID":56108,"TargetStructureID":5601,"Label":"56108-5601 via Unknown from 56109 -> 56105","Type":"Unknown","Directional":false,"Links":[{"SourceID":56109,"TargetID":56105,"Directional":false}]},{"ID":3344,"SourceStructureID":5601,"TargetStructureID":58757,"Label":"5601-58757 via Adherens from 127416 -> 127420","Type":"Adherens","Directional":false,"Links":[{"SourceID":127416,"TargetID":127420,"Directional":false}]},{"ID":3345,"SourceStructureID":5601,"TargetStructureID":84118,"Label":"5601-84118 via Adherens from 127617 -> 127618","Type":"Adherens","Directional":false,"Links":[{"SourceID":127617,"TargetID":127618,"Directional":false}]},{"ID":3346,"SourceStructureID":5601,"TargetStructureID":158859,"Label":"5601-158859 via Unknown from 126894 -> 158860","Type":"Unknown","Directional":false,"Links":[{"SourceID":126894,"TargetID":158860,"Directional":false}]},{"ID":3347,"SourceStructureID":5606,"TargetStructureID":5607,"Label":"5606-5607 via Adherens from 36905 -> 38962","Type":"Adherens","Directional":false,"Links":[{"SourceID":36905,"TargetID":38962,"Directional":false}]},{"ID":3348,"SourceStructureID":5606,"TargetStructureID":5607,"Label":"5606-5607 via Gap Junction from 36907 -> 38963, 38946 -> 38944, 43051 -> 43050, 121851 -> 121850","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":36907,"TargetID":38963,"Directional":false},{"SourceID":38946,"TargetID":38944,"Directional":false},{"SourceID":43051,"TargetID":43050,"Directional":false},{"SourceID":121851,"TargetID":121850,"Directional":false}]},{"ID":3349,"SourceStructureID":5606,"TargetStructureID":5608,"Label":"5606-5608 via Gap Junction from 42843 -> 42842, 120880 -> 120879","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":42843,"TargetID":42842,"Directional":false},{"SourceID":120880,"TargetID":120879,"Directional":false}]},{"ID":3350,"SourceStructureID":5637,"TargetStructureID":5606,"Label":"5637-5606 via Gap Junction from 92987 -> 92988","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92987,"TargetID":92988,"Directional":false}]},{"ID":3351,"SourceStructureID":5607,"TargetStructureID":5637,"Label":"5607-5637 via Gap Junction from 121841 -> 121840","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121841,"TargetID":121840,"Directional":false}]},{"ID":3352,"SourceStructureID":5607,"TargetStructureID":7149,"Label":"5607-7149 via Gap Junction from 121831 -> 121829","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121831,"TargetID":121829,"Directional":false}]},{"ID":3353,"SourceStructureID":7279,"TargetStructureID":5607,"Label":"7279-5607 via Gap Junction from 38943 -> 38942, 121847 -> 121846, 121849 -> 121848, 123519 -> 123518","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38943,"TargetID":38942,"Directional":false},{"SourceID":121847,"TargetID":121846,"Directional":false},{"SourceID":121849,"TargetID":121848,"Directional":false},{"SourceID":123519,"TargetID":123518,"Directional":false}]},{"ID":3354,"SourceStructureID":58682,"TargetStructureID":5607,"Label":"58682-5607 via Gap Junction from 58683 -> 54865","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58683,"TargetID":54865,"Directional":false}]},{"ID":3355,"SourceStructureID":5637,"TargetStructureID":5608,"Label":"5637-5608 via Gap Junction from 56013 -> 147523, 121837 -> 121836, 121842 -> 121843, 147525 -> 147524, 147527 -> 147526","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56013,"TargetID":147523,"Directional":false},{"SourceID":121837,"TargetID":121836,"Directional":false},{"SourceID":121842,"TargetID":121843,"Directional":false},{"SourceID":147525,"TargetID":147524,"Directional":false},{"SourceID":147527,"TargetID":147526,"Directional":false}]},{"ID":3356,"SourceStructureID":5608,"TargetStructureID":44256,"Label":"5608-44256 via Gap Junction from 118335 -> 120572, 123110 -> 123108, 123111 -> 123112, 123113 -> 123114","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118335,"TargetID":120572,"Directional":false},{"SourceID":123110,"TargetID":123108,"Directional":false},{"SourceID":123111,"TargetID":123112,"Directional":false},{"SourceID":123113,"TargetID":123114,"Directional":false}]},{"ID":3357,"SourceStructureID":7113,"TargetStructureID":5609,"Label":"7113-5609 via Adherens from 54796 -> 54797","Type":"Adherens","Directional":false,"Links":[{"SourceID":54796,"TargetID":54797,"Directional":false}]},{"ID":3358,"SourceStructureID":30332,"TargetStructureID":5618,"Label":"30332-5618 via Gap Junction from 66008 -> 66007","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66008,"TargetID":66007,"Directional":false}]},{"ID":3359,"SourceStructureID":5618,"TargetStructureID":66004,"Label":"5618-66004 via Adherens from 66003 -> 66005","Type":"Adherens","Directional":false,"Links":[{"SourceID":66003,"TargetID":66005,"Directional":false}]},{"ID":3360,"SourceStructureID":5623,"TargetStructureID":5623,"Label":"5623-5623 via Gap Junction from 123704 -> 123702","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123704,"TargetID":123702,"Directional":false}]},{"ID":3361,"SourceStructureID":5623,"TargetStructureID":6589,"Label":"5623-6589 via Gap Junction from 130631 -> 130630","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130631,"TargetID":130630,"Directional":false}]},{"ID":3362,"SourceStructureID":5623,"TargetStructureID":6997,"Label":"5623-6997 via Adherens from 136653 -> 136652, 136768 -> 136769","Type":"Adherens","Directional":false,"Links":[{"SourceID":136653,"TargetID":136652,"Directional":false},{"SourceID":136768,"TargetID":136769,"Directional":false}]},{"ID":3363,"SourceStructureID":6997,"TargetStructureID":5623,"Label":"6997-5623 via Gap Junction from 40384 -> 40383, 52738 -> 52739","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":40384,"TargetID":40383,"Directional":false},{"SourceID":52738,"TargetID":52739,"Directional":false}]},{"ID":3364,"SourceStructureID":5623,"TargetStructureID":94784,"Label":"5623-94784 via Adherens from 94786 -> 94787","Type":"Adherens","Directional":false,"Links":[{"SourceID":94786,"TargetID":94787,"Directional":false}]},{"ID":3365,"SourceStructureID":5631,"TargetStructureID":69537,"Label":"5631-69537 via Adherens from 69594 -> 69593","Type":"Adherens","Directional":false,"Links":[{"SourceID":69594,"TargetID":69593,"Directional":false}]},{"ID":3366,"SourceStructureID":5860,"TargetStructureID":5635,"Label":"5860-5635 via Gap Junction from 28806 -> 28805, 55960 -> 55959, 135577 -> 135578, 147677 -> 24728","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":28806,"TargetID":28805,"Directional":false},{"SourceID":55960,"TargetID":55959,"Directional":false},{"SourceID":135577,"TargetID":135578,"Directional":false},{"SourceID":147677,"TargetID":24728,"Directional":false}]},{"ID":3367,"SourceStructureID":5637,"TargetStructureID":5641,"Label":"5637-5641 via Gap Junction from 54787 -> 39054, 54789 -> 54788, 55820 -> 55819, 58566 -> 58565","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54787,"TargetID":39054,"Directional":false},{"SourceID":54789,"TargetID":54788,"Directional":false},{"SourceID":55820,"TargetID":55819,"Directional":false},{"SourceID":58566,"TargetID":58565,"Directional":false}]},{"ID":3368,"SourceStructureID":7113,"TargetStructureID":5637,"Label":"7113-5637 via Gap Junction from 54799 -> 54794","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54799,"TargetID":54794,"Directional":false}]},{"ID":3369,"SourceStructureID":5637,"TargetStructureID":7114,"Label":"5637-7114 via Gap Junction from 31387 -> 31386, 135627 -> 56056","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":31387,"TargetID":31386,"Directional":false},{"SourceID":135627,"TargetID":56056,"Directional":false}]},{"ID":3370,"SourceStructureID":5637,"TargetStructureID":11229,"Label":"5637-11229 via Gap Junction from 39082 -> 39083, 58575 -> 58574, 135679 -> 56047, 135681 -> 56040","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39082,"TargetID":39083,"Directional":false},{"SourceID":58575,"TargetID":58574,"Directional":false},{"SourceID":135679,"TargetID":56047,"Directional":false},{"SourceID":135681,"TargetID":56040,"Directional":false}]},{"ID":3371,"SourceStructureID":5638,"TargetStructureID":7279,"Label":"5638-7279 via Gap Junction from 117181 -> 118943","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117181,"TargetID":118943,"Directional":false}]},{"ID":3372,"SourceStructureID":15977,"TargetStructureID":5638,"Label":"15977-5638 via Adherens from 33976 -> 33975","Type":"Adherens","Directional":false,"Links":[{"SourceID":33976,"TargetID":33975,"Directional":false}]},{"ID":3373,"SourceStructureID":5638,"TargetStructureID":15977,"Label":"5638-15977 via Gap Junction from 56419 -> 56418, 60603 -> 60602, 117089 -> 117088, 117103 -> 117102, 117177 -> 117176","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56419,"TargetID":56418,"Directional":false},{"SourceID":60603,"TargetID":60602,"Directional":false},{"SourceID":117089,"TargetID":117088,"Directional":false},{"SourceID":117103,"TargetID":117102,"Directional":false},{"SourceID":117177,"TargetID":117176,"Directional":false}]},{"ID":3374,"SourceStructureID":25182,"TargetStructureID":5638,"Label":"25182-5638 via Adherens from 25187 -> 66242","Type":"Adherens","Directional":false,"Links":[{"SourceID":25187,"TargetID":66242,"Directional":false}]},{"ID":3375,"SourceStructureID":71411,"TargetStructureID":5638,"Label":"71411-5638 via Gap Junction from 71959 -> 71404","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71959,"TargetID":71404,"Directional":false}]},{"ID":3376,"SourceStructureID":117112,"TargetStructureID":5638,"Label":"117112-5638 via Gap Junction from 117114 -> 117111, 117116 -> 117115","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117114,"TargetID":117111,"Directional":false},{"SourceID":117116,"TargetID":117115,"Directional":false}]},{"ID":3377,"SourceStructureID":117127,"TargetStructureID":5638,"Label":"117127-5638 via Gap Junction from 117128 -> 117126","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117128,"TargetID":117126,"Directional":false}]},{"ID":3378,"SourceStructureID":5640,"TargetStructureID":5640,"Label":"5640-5640 via Gap Junction from 136431 -> 136430","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136431,"TargetID":136430,"Directional":false}]},{"ID":3379,"SourceStructureID":136427,"TargetStructureID":5640,"Label":"136427-5640 via Gap Junction from 136428 -> 136426","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136428,"TargetID":136426,"Directional":false}]},{"ID":3380,"SourceStructureID":7113,"TargetStructureID":5641,"Label":"7113-5641 via Postsynapse from 124054 -> 124055","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":124054,"TargetID":124055,"Directional":false}]},{"ID":3381,"SourceStructureID":15976,"TargetStructureID":5641,"Label":"15976-5641 via Gap Junction from 57520 -> 57519, 58564 -> 57516","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57520,"TargetID":57519,"Directional":false},{"SourceID":58564,"TargetID":57516,"Directional":false}]},{"ID":3382,"SourceStructureID":124069,"TargetStructureID":5641,"Label":"124069-5641 via Unknown from 147985 -> 147986","Type":"Unknown","Directional":false,"Links":[{"SourceID":147985,"TargetID":147986,"Directional":false}]},{"ID":3383,"SourceStructureID":30177,"TargetStructureID":5643,"Label":"30177-5643 via Gap Junction from 131968 -> 131969","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131968,"TargetID":131969,"Directional":false}]},{"ID":3384,"SourceStructureID":5645,"TargetStructureID":5645,"Label":"5645-5645 via Gap Junction from 47100 -> 47099, 135383 -> 135382","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47100,"TargetID":47099,"Directional":false},{"SourceID":135383,"TargetID":135382,"Directional":false}]},{"ID":3385,"SourceStructureID":5645,"TargetStructureID":5649,"Label":"5645-5649 via Adherens from 135434 -> 135433","Type":"Adherens","Directional":false,"Links":[{"SourceID":135434,"TargetID":135433,"Directional":false}]},{"ID":3386,"SourceStructureID":5645,"TargetStructureID":5649,"Label":"5645-5649 via Gap Junction from 54526 -> 54297, 108495 -> 108484, 108496 -> 108486","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54526,"TargetID":54297,"Directional":false},{"SourceID":108495,"TargetID":108484,"Directional":false},{"SourceID":108496,"TargetID":108486,"Directional":false}]},{"ID":3387,"SourceStructureID":5645,"TargetStructureID":5916,"Label":"5645-5916 via Gap Junction from 109476 -> 109473","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109476,"TargetID":109473,"Directional":false}]},{"ID":3388,"SourceStructureID":6121,"TargetStructureID":5645,"Label":"6121-5645 via Touch from 147839 -> 147838","Type":"Touch","Directional":false,"Links":[{"SourceID":147839,"TargetID":147838,"Directional":false}]},{"ID":3389,"SourceStructureID":6142,"TargetStructureID":5645,"Label":"6142-5645 via Gap Junction from 108667 -> 108647","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108667,"TargetID":108647,"Directional":false}]},{"ID":3390,"SourceStructureID":7904,"TargetStructureID":5645,"Label":"7904-5645 via Gap Junction from 54315 -> 54314, 105842 -> 105841, 108583 -> 108581, 108591 -> 108588, 122376 -> 122377, 130621 -> 130620","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54315,"TargetID":54314,"Directional":false},{"SourceID":105842,"TargetID":105841,"Directional":false},{"SourceID":108583,"TargetID":108581,"Directional":false},{"SourceID":108591,"TargetID":108588,"Directional":false},{"SourceID":122376,"TargetID":122377,"Directional":false},{"SourceID":130621,"TargetID":130620,"Directional":false}]},{"ID":3391,"SourceStructureID":5645,"TargetStructureID":7951,"Label":"5645-7951 via Gap Junction from 47695 -> 118977, 118976 -> 118975, 118978 -> 47719, 118987 -> 47750","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47695,"TargetID":118977,"Directional":false},{"SourceID":118976,"TargetID":118975,"Directional":false},{"SourceID":118978,"TargetID":47719,"Directional":false},{"SourceID":118987,"TargetID":47750,"Directional":false}]},{"ID":3392,"SourceStructureID":8032,"TargetStructureID":5645,"Label":"8032-5645 via Gap Junction from 147836 -> 147835","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":147836,"TargetID":147835,"Directional":false}]},{"ID":3393,"SourceStructureID":31334,"TargetStructureID":5645,"Label":"31334-5645 via Gap Junction from 47409 -> 31333","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47409,"TargetID":31333,"Directional":false}]},{"ID":3394,"SourceStructureID":77664,"TargetStructureID":5645,"Label":"77664-5645 via Adherens from 77666 -> 77667","Type":"Adherens","Directional":false,"Links":[{"SourceID":77666,"TargetID":77667,"Directional":false}]},{"ID":3395,"SourceStructureID":105780,"TargetStructureID":5645,"Label":"105780-5645 via Gap Junction from 108552 -> 108551","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108552,"TargetID":108551,"Directional":false}]},{"ID":3396,"SourceStructureID":5648,"TargetStructureID":13469,"Label":"5648-13469 via Adherens from 130122 -> 130121","Type":"Adherens","Directional":false,"Links":[{"SourceID":130122,"TargetID":130121,"Directional":false}]},{"ID":3397,"SourceStructureID":13469,"TargetStructureID":5648,"Label":"13469-5648 via Gap Junction from 130123 -> 130124","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130123,"TargetID":130124,"Directional":false}]},{"ID":3398,"SourceStructureID":5649,"TargetStructureID":5649,"Label":"5649-5649 via Adherens from 104603 -> 104604","Type":"Adherens","Directional":false,"Links":[{"SourceID":104603,"TargetID":104604,"Directional":false}]},{"ID":3399,"SourceStructureID":5649,"TargetStructureID":5649,"Label":"5649-5649 via Gap Junction from 108489 -> 108488, 134965 -> 134966","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108489,"TargetID":108488,"Directional":false},{"SourceID":134965,"TargetID":134966,"Directional":false}]},{"ID":3400,"SourceStructureID":5649,"TargetStructureID":5916,"Label":"5649-5916 via Adherens from 134978 -> 134977","Type":"Adherens","Directional":false,"Links":[{"SourceID":134978,"TargetID":134977,"Directional":false}]},{"ID":3401,"SourceStructureID":5649,"TargetStructureID":5916,"Label":"5649-5916 via Gap Junction from 54116 -> 71971, 71973 -> 71972","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54116,"TargetID":71971,"Directional":false},{"SourceID":71973,"TargetID":71972,"Directional":false}]},{"ID":3402,"SourceStructureID":6115,"TargetStructureID":5649,"Label":"6115-5649 via Adherens from 131168 -> 131169","Type":"Adherens","Directional":false,"Links":[{"SourceID":131168,"TargetID":131169,"Directional":false}]},{"ID":3403,"SourceStructureID":6115,"TargetStructureID":5649,"Label":"6115-5649 via Gap Junction from 55753 -> 55752, 55888 -> 55886, 60057 -> 76140, 75439 -> 105395, 134958 -> 134957","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55753,"TargetID":55752,"Directional":false},{"SourceID":55888,"TargetID":55886,"Directional":false},{"SourceID":60057,"TargetID":76140,"Directional":false},{"SourceID":75439,"TargetID":105395,"Directional":false},{"SourceID":134958,"TargetID":134957,"Directional":false}]},{"ID":3404,"SourceStructureID":5649,"TargetStructureID":6120,"Label":"5649-6120 via Gap Junction from 111023 -> 114843","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111023,"TargetID":114843,"Directional":false}]},{"ID":3405,"SourceStructureID":5649,"TargetStructureID":6142,"Label":"5649-6142 via Gap Junction from 38492 -> 38491, 106031 -> 106030","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38492,"TargetID":38491,"Directional":false},{"SourceID":106031,"TargetID":106030,"Directional":false}]},{"ID":3406,"SourceStructureID":7147,"TargetStructureID":5649,"Label":"7147-5649 via Gap Junction from 30302 -> 55750, 134960 -> 134959","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30302,"TargetID":55750,"Directional":false},{"SourceID":134960,"TargetID":134959,"Directional":false}]},{"ID":3407,"SourceStructureID":5649,"TargetStructureID":12897,"Label":"5649-12897 via Gap Junction from 54101 -> 54099, 107217 -> 107216, 107366 -> 107365, 134407 -> 134406, 134967 -> 134968","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54101,"TargetID":54099,"Directional":false},{"SourceID":107217,"TargetID":107216,"Directional":false},{"SourceID":107366,"TargetID":107365,"Directional":false},{"SourceID":134407,"TargetID":134406,"Directional":false},{"SourceID":134967,"TargetID":134968,"Directional":false}]},{"ID":3408,"SourceStructureID":5649,"TargetStructureID":16026,"Label":"5649-16026 via Adherens from 124801 -> 124800","Type":"Adherens","Directional":false,"Links":[{"SourceID":124801,"TargetID":124800,"Directional":false}]},{"ID":3409,"SourceStructureID":16026,"TargetStructureID":5649,"Label":"16026-5649 via Touch from 134438 -> 134439","Type":"Touch","Directional":false,"Links":[{"SourceID":134438,"TargetID":134439,"Directional":false}]},{"ID":3410,"SourceStructureID":35064,"TargetStructureID":5649,"Label":"35064-5649 via Unknown from 53902 -> 53901","Type":"Unknown","Directional":false,"Links":[{"SourceID":53902,"TargetID":53901,"Directional":false}]},{"ID":3411,"SourceStructureID":5649,"TargetStructureID":65172,"Label":"5649-65172 via Unknown from 111025 -> 111024","Type":"Unknown","Directional":false,"Links":[{"SourceID":111025,"TargetID":111024,"Directional":false}]},{"ID":3412,"SourceStructureID":67671,"TargetStructureID":5649,"Label":"67671-5649 via Adherens from 78002 -> 78003","Type":"Adherens","Directional":false,"Links":[{"SourceID":78002,"TargetID":78003,"Directional":false}]},{"ID":3413,"SourceStructureID":68153,"TargetStructureID":5649,"Label":"68153-5649 via Adherens from 68175 -> 68176","Type":"Adherens","Directional":false,"Links":[{"SourceID":68175,"TargetID":68176,"Directional":false}]},{"ID":3414,"SourceStructureID":5649,"TargetStructureID":68497,"Label":"5649-68497 via Adherens from 81591 -> 81590","Type":"Adherens","Directional":false,"Links":[{"SourceID":81591,"TargetID":81590,"Directional":false}]},{"ID":3415,"SourceStructureID":5649,"TargetStructureID":73313,"Label":"5649-73313 via Adherens from 135174 -> 135175","Type":"Adherens","Directional":false,"Links":[{"SourceID":135174,"TargetID":135175,"Directional":false}]},{"ID":3416,"SourceStructureID":5649,"TargetStructureID":78909,"Label":"5649-78909 via Adherens from 87519 -> 87518","Type":"Adherens","Directional":false,"Links":[{"SourceID":87519,"TargetID":87518,"Directional":false}]},{"ID":3417,"SourceStructureID":5649,"TargetStructureID":92926,"Label":"5649-92926 via Adherens from 75686 -> 75685","Type":"Adherens","Directional":false,"Links":[{"SourceID":75686,"TargetID":75685,"Directional":false}]},{"ID":3418,"SourceStructureID":5649,"TargetStructureID":92926,"Label":"5649-92926 via Unknown from 53835 -> 75684","Type":"Unknown","Directional":false,"Links":[{"SourceID":53835,"TargetID":75684,"Directional":false}]},{"ID":3419,"SourceStructureID":103774,"TargetStructureID":5649,"Label":"103774-5649 via Unknown from 134837 -> 134838","Type":"Unknown","Directional":false,"Links":[{"SourceID":134837,"TargetID":134838,"Directional":false}]},{"ID":3420,"SourceStructureID":5649,"TargetStructureID":104480,"Label":"5649-104480 via Unknown from 104482 -> 104481","Type":"Unknown","Directional":false,"Links":[{"SourceID":104482,"TargetID":104481,"Directional":false}]},{"ID":3421,"SourceStructureID":5649,"TargetStructureID":104484,"Label":"5649-104484 via Adherens from 104483 -> 104485","Type":"Adherens","Directional":false,"Links":[{"SourceID":104483,"TargetID":104485,"Directional":false}]},{"ID":3422,"SourceStructureID":104559,"TargetStructureID":5649,"Label":"104559-5649 via Unknown from 104562 -> 104563","Type":"Unknown","Directional":false,"Links":[{"SourceID":104562,"TargetID":104563,"Directional":false}]},{"ID":3423,"SourceStructureID":104616,"TargetStructureID":5649,"Label":"104616-5649 via Adherens from 136135 -> 136134","Type":"Adherens","Directional":false,"Links":[{"SourceID":136135,"TargetID":136134,"Directional":false}]},{"ID":3424,"SourceStructureID":104633,"TargetStructureID":5649,"Label":"104633-5649 via Unknown from 104635 -> 53842","Type":"Unknown","Directional":false,"Links":[{"SourceID":104635,"TargetID":53842,"Directional":false}]},{"ID":3425,"SourceStructureID":5649,"TargetStructureID":104721,"Label":"5649-104721 via Adherens from 135419 -> 135418","Type":"Adherens","Directional":false,"Links":[{"SourceID":135419,"TargetID":135418,"Directional":false}]},{"ID":3426,"SourceStructureID":104721,"TargetStructureID":5649,"Label":"104721-5649 via Gap Junction from 104722 -> 53889","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":104722,"TargetID":53889,"Directional":false}]},{"ID":3427,"SourceStructureID":104791,"TargetStructureID":5649,"Label":"104791-5649 via Adherens from 134848 -> 134847","Type":"Adherens","Directional":false,"Links":[{"SourceID":134848,"TargetID":134847,"Directional":false}]},{"ID":3428,"SourceStructureID":104794,"TargetStructureID":5649,"Label":"104794-5649 via Unknown from 104795 -> 104793","Type":"Unknown","Directional":false,"Links":[{"SourceID":104795,"TargetID":104793,"Directional":false}]},{"ID":3429,"SourceStructureID":5649,"TargetStructureID":104796,"Label":"5649-104796 via Unknown from 104798 -> 104797","Type":"Unknown","Directional":false,"Links":[{"SourceID":104798,"TargetID":104797,"Directional":false}]},{"ID":3430,"SourceStructureID":5649,"TargetStructureID":105333,"Label":"5649-105333 via Unknown from 134861 -> 134860","Type":"Unknown","Directional":false,"Links":[{"SourceID":134861,"TargetID":134860,"Directional":false}]},{"ID":3431,"SourceStructureID":5649,"TargetStructureID":105393,"Label":"5649-105393 via Unknown from 134872 -> 134871","Type":"Unknown","Directional":false,"Links":[{"SourceID":134872,"TargetID":134871,"Directional":false}]},{"ID":3432,"SourceStructureID":5649,"TargetStructureID":105426,"Label":"5649-105426 via Unknown from 135156 -> 135157","Type":"Unknown","Directional":false,"Links":[{"SourceID":135156,"TargetID":135157,"Directional":false}]},{"ID":3433,"SourceStructureID":105547,"TargetStructureID":5649,"Label":"105547-5649 via Adherens from 134893 -> 134892","Type":"Adherens","Directional":false,"Links":[{"SourceID":134893,"TargetID":134892,"Directional":false}]},{"ID":3434,"SourceStructureID":105580,"TargetStructureID":5649,"Label":"105580-5649 via Conventional from 105582 -> 105583","Type":"Conventional","Directional":false,"Links":[{"SourceID":105582,"TargetID":105583,"Directional":false}]},{"ID":3435,"SourceStructureID":105673,"TargetStructureID":5649,"Label":"105673-5649 via Adherens from 105691 -> 53905","Type":"Adherens","Directional":false,"Links":[{"SourceID":105691,"TargetID":53905,"Directional":false}]},{"ID":3436,"SourceStructureID":5649,"TargetStructureID":105676,"Label":"5649-105676 via Unknown from 134899 -> 134900","Type":"Unknown","Directional":false,"Links":[{"SourceID":134899,"TargetID":134900,"Directional":false}]},{"ID":3437,"SourceStructureID":105704,"TargetStructureID":5649,"Label":"105704-5649 via Unknown from 134903 -> 134902","Type":"Unknown","Directional":false,"Links":[{"SourceID":134903,"TargetID":134902,"Directional":false}]},{"ID":3438,"SourceStructureID":105706,"TargetStructureID":5649,"Label":"105706-5649 via Adherens from 105732 -> 105731","Type":"Adherens","Directional":false,"Links":[{"SourceID":105732,"TargetID":105731,"Directional":false}]},{"ID":3439,"SourceStructureID":105735,"TargetStructureID":5649,"Label":"105735-5649 via Adherens from 135422 -> 135421","Type":"Adherens","Directional":false,"Links":[{"SourceID":135422,"TargetID":135421,"Directional":false}]},{"ID":3440,"SourceStructureID":5649,"TargetStructureID":105735,"Label":"5649-105735 via Gap Junction from 53950 -> 105736","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":53950,"TargetID":105736,"Directional":false}]},{"ID":3441,"SourceStructureID":5649,"TargetStructureID":105906,"Label":"5649-105906 via Unknown from 105911 -> 105910","Type":"Unknown","Directional":false,"Links":[{"SourceID":105911,"TargetID":105910,"Directional":false}]},{"ID":3442,"SourceStructureID":105908,"TargetStructureID":5649,"Label":"105908-5649 via Unknown from 134910 -> 134909","Type":"Unknown","Directional":false,"Links":[{"SourceID":134910,"TargetID":134909,"Directional":false}]},{"ID":3443,"SourceStructureID":5649,"TargetStructureID":106005,"Label":"5649-106005 via Adherens from 106004 -> 106006","Type":"Adherens","Directional":false,"Links":[{"SourceID":106004,"TargetID":106006,"Directional":false}]},{"ID":3444,"SourceStructureID":5649,"TargetStructureID":106013,"Label":"5649-106013 via Unknown from 134961 -> 134962","Type":"Unknown","Directional":false,"Links":[{"SourceID":134961,"TargetID":134962,"Directional":false}]},{"ID":3445,"SourceStructureID":106059,"TargetStructureID":5649,"Label":"106059-5649 via Adherens from 135388 -> 131925","Type":"Adherens","Directional":false,"Links":[{"SourceID":135388,"TargetID":131925,"Directional":false}]},{"ID":3446,"SourceStructureID":106059,"TargetStructureID":5649,"Label":"106059-5649 via Gap Junction from 135387 -> 131926","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135387,"TargetID":131926,"Directional":false}]},{"ID":3447,"SourceStructureID":5649,"TargetStructureID":106105,"Label":"5649-106105 via Unknown from 134916 -> 134915","Type":"Unknown","Directional":false,"Links":[{"SourceID":134916,"TargetID":134915,"Directional":false}]},{"ID":3448,"SourceStructureID":106258,"TargetStructureID":5649,"Label":"106258-5649 via Adherens from 106267 -> 106266","Type":"Adherens","Directional":false,"Links":[{"SourceID":106267,"TargetID":106266,"Directional":false}]},{"ID":3449,"SourceStructureID":5649,"TargetStructureID":106280,"Label":"5649-106280 via Unknown from 134918 -> 134917","Type":"Unknown","Directional":false,"Links":[{"SourceID":134918,"TargetID":134917,"Directional":false}]},{"ID":3450,"SourceStructureID":5649,"TargetStructureID":106285,"Label":"5649-106285 via Adherens from 106284 -> 106286","Type":"Adherens","Directional":false,"Links":[{"SourceID":106284,"TargetID":106286,"Directional":false}]},{"ID":3451,"SourceStructureID":106303,"TargetStructureID":5649,"Label":"106303-5649 via Adherens from 106305 -> 54186","Type":"Adherens","Directional":false,"Links":[{"SourceID":106305,"TargetID":54186,"Directional":false}]},{"ID":3452,"SourceStructureID":106552,"TargetStructureID":5649,"Label":"106552-5649 via Adherens from 106593 -> 106592","Type":"Adherens","Directional":false,"Links":[{"SourceID":106593,"TargetID":106592,"Directional":false}]},{"ID":3453,"SourceStructureID":106703,"TargetStructureID":5649,"Label":"106703-5649 via Adherens from 106704 -> 106702","Type":"Adherens","Directional":false,"Links":[{"SourceID":106704,"TargetID":106702,"Directional":false}]},{"ID":3454,"SourceStructureID":106720,"TargetStructureID":5649,"Label":"106720-5649 via Unknown from 106721 -> 106719","Type":"Unknown","Directional":false,"Links":[{"SourceID":106721,"TargetID":106719,"Directional":false}]},{"ID":3455,"SourceStructureID":106913,"TargetStructureID":5649,"Label":"106913-5649 via Adherens from 106914 -> 106912","Type":"Adherens","Directional":false,"Links":[{"SourceID":106914,"TargetID":106912,"Directional":false}]},{"ID":3456,"SourceStructureID":107054,"TargetStructureID":5649,"Label":"107054-5649 via Adherens from 107057 -> 107053","Type":"Adherens","Directional":false,"Links":[{"SourceID":107057,"TargetID":107053,"Directional":false}]},{"ID":3457,"SourceStructureID":5649,"TargetStructureID":107078,"Label":"5649-107078 via Adherens from 107081 -> 107080","Type":"Adherens","Directional":false,"Links":[{"SourceID":107081,"TargetID":107080,"Directional":false}]},{"ID":3458,"SourceStructureID":107078,"TargetStructureID":5649,"Label":"107078-5649 via Gap Junction from 131915 -> 131914","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131915,"TargetID":131914,"Directional":false}]},{"ID":3459,"SourceStructureID":107110,"TargetStructureID":5649,"Label":"107110-5649 via Unknown from 134921 -> 134920","Type":"Unknown","Directional":false,"Links":[{"SourceID":134921,"TargetID":134920,"Directional":false}]},{"ID":3460,"SourceStructureID":107117,"TargetStructureID":5649,"Label":"107117-5649 via Unknown from 131917 -> 131916","Type":"Unknown","Directional":false,"Links":[{"SourceID":131917,"TargetID":131916,"Directional":false}]},{"ID":3461,"SourceStructureID":5649,"TargetStructureID":107134,"Label":"5649-107134 via Unknown from 134924 -> 134925","Type":"Unknown","Directional":false,"Links":[{"SourceID":134924,"TargetID":134925,"Directional":false}]},{"ID":3462,"SourceStructureID":5649,"TargetStructureID":107140,"Label":"5649-107140 via Unknown from 134927 -> 134926","Type":"Unknown","Directional":false,"Links":[{"SourceID":134927,"TargetID":134926,"Directional":false}]},{"ID":3463,"SourceStructureID":107182,"TargetStructureID":5649,"Label":"107182-5649 via Postsynapse from 107183 -> 54307","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":107183,"TargetID":54307,"Directional":false}]},{"ID":3464,"SourceStructureID":107213,"TargetStructureID":5649,"Label":"107213-5649 via Unknown from 131923 -> 131922","Type":"Unknown","Directional":false,"Links":[{"SourceID":131923,"TargetID":131922,"Directional":false}]},{"ID":3465,"SourceStructureID":107335,"TargetStructureID":5649,"Label":"107335-5649 via Adherens from 107336 -> 107334","Type":"Adherens","Directional":false,"Links":[{"SourceID":107336,"TargetID":107334,"Directional":false}]},{"ID":3466,"SourceStructureID":107339,"TargetStructureID":5649,"Label":"107339-5649 via Adherens from 135369 -> 135370","Type":"Adherens","Directional":false,"Links":[{"SourceID":135369,"TargetID":135370,"Directional":false}]},{"ID":3467,"SourceStructureID":5649,"TargetStructureID":107339,"Label":"5649-107339 via Gap Junction from 107317 -> 107341","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":107317,"TargetID":107341,"Directional":false}]},{"ID":3468,"SourceStructureID":107360,"TargetStructureID":5649,"Label":"107360-5649 via Adherens from 107361 -> 70019","Type":"Adherens","Directional":false,"Links":[{"SourceID":107361,"TargetID":70019,"Directional":false}]},{"ID":3469,"SourceStructureID":134950,"TargetStructureID":5649,"Label":"134950-5649 via Unknown from 134951 -> 53966","Type":"Unknown","Directional":false,"Links":[{"SourceID":134951,"TargetID":53966,"Directional":false}]},{"ID":3470,"SourceStructureID":134952,"TargetStructureID":5649,"Label":"134952-5649 via Unknown from 134953 -> 54123","Type":"Unknown","Directional":false,"Links":[{"SourceID":134953,"TargetID":54123,"Directional":false}]},{"ID":3471,"SourceStructureID":134954,"TargetStructureID":5649,"Label":"134954-5649 via Unknown from 134955 -> 54300","Type":"Unknown","Directional":false,"Links":[{"SourceID":134955,"TargetID":54300,"Directional":false}]},{"ID":3472,"SourceStructureID":135401,"TargetStructureID":5649,"Label":"135401-5649 via Adherens from 135403 -> 108184","Type":"Adherens","Directional":false,"Links":[{"SourceID":135403,"TargetID":108184,"Directional":false}]},{"ID":3473,"SourceStructureID":135401,"TargetStructureID":5649,"Label":"135401-5649 via Unknown from 135402 -> 134969","Type":"Unknown","Directional":false,"Links":[{"SourceID":135402,"TargetID":134969,"Directional":false}]},{"ID":3474,"SourceStructureID":5650,"TargetStructureID":5650,"Label":"5650-5650 via Gap Junction from 103852 -> 103851, 103973 -> 103974, 104166 -> 104167, 104319 -> 104320, 104323 -> 104322, 104472 -> 104471, 105158 -> 105157, 118209 -> 118208, 126400 -> 126401","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":103852,"TargetID":103851,"Directional":false},{"SourceID":103973,"TargetID":103974,"Directional":false},{"SourceID":104166,"TargetID":104167,"Directional":false},{"SourceID":104319,"TargetID":104320,"Directional":false},{"SourceID":104323,"TargetID":104322,"Directional":false},{"SourceID":104472,"TargetID":104471,"Directional":false},{"SourceID":105158,"TargetID":105157,"Directional":false},{"SourceID":118209,"TargetID":118208,"Directional":false},{"SourceID":126400,"TargetID":126401,"Directional":false}]},{"ID":3475,"SourceStructureID":5650,"TargetStructureID":5729,"Label":"5650-5729 via Gap Junction from 102921 -> 102928","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":102921,"TargetID":102928,"Directional":false}]},{"ID":3476,"SourceStructureID":6047,"TargetStructureID":5650,"Label":"6047-5650 via Gap Junction from 19726 -> 105098","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":19726,"TargetID":105098,"Directional":false}]},{"ID":3477,"SourceStructureID":5650,"TargetStructureID":6117,"Label":"5650-6117 via Gap Junction from 54324 -> 54325, 60118 -> 23474, 106295 -> 106293, 113293 -> 54317","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54324,"TargetID":54325,"Directional":false},{"SourceID":60118,"TargetID":23474,"Directional":false},{"SourceID":106295,"TargetID":106293,"Directional":false},{"SourceID":113293,"TargetID":54317,"Directional":false}]},{"ID":3478,"SourceStructureID":5650,"TargetStructureID":6118,"Label":"5650-6118 via Gap Junction from 118196 -> 118195","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118196,"TargetID":118195,"Directional":false}]},{"ID":3479,"SourceStructureID":6120,"TargetStructureID":5650,"Label":"6120-5650 via Gap Junction from 104272 -> 104271","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":104272,"TargetID":104271,"Directional":false}]},{"ID":3480,"SourceStructureID":5650,"TargetStructureID":7024,"Label":"5650-7024 via Gap Junction from 93905 -> 93901","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93905,"TargetID":93901,"Directional":false}]},{"ID":3481,"SourceStructureID":7073,"TargetStructureID":5650,"Label":"7073-5650 via Unknown from 135608 -> 135609","Type":"Unknown","Directional":false,"Links":[{"SourceID":135608,"TargetID":135609,"Directional":false}]},{"ID":3482,"SourceStructureID":7147,"TargetStructureID":5650,"Label":"7147-5650 via Gap Junction from 52599 -> 52600, 134984 -> 134983","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52599,"TargetID":52600,"Directional":false},{"SourceID":134984,"TargetID":134983,"Directional":false}]},{"ID":3483,"SourceStructureID":9769,"TargetStructureID":5650,"Label":"9769-5650 via Adherens from 104125 -> 104126, 104270 -> 104269, 105051 -> 105052, 106321 -> 106320, 126343 -> 126342, 127300 -> 127301","Type":"Adherens","Directional":false,"Links":[{"SourceID":104125,"TargetID":104126,"Directional":false},{"SourceID":104270,"TargetID":104269,"Directional":false},{"SourceID":105051,"TargetID":105052,"Directional":false},{"SourceID":106321,"TargetID":106320,"Directional":false},{"SourceID":126343,"TargetID":126342,"Directional":false},{"SourceID":127300,"TargetID":127301,"Directional":false}]},{"ID":3484,"SourceStructureID":12897,"TargetStructureID":5650,"Label":"12897-5650 via Gap Junction from 103664 -> 103665, 103679 -> 103678, 103682 -> 103681, 103829 -> 103828, 134981 -> 134980, 135373 -> 135374","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":103664,"TargetID":103665,"Directional":false},{"SourceID":103679,"TargetID":103678,"Directional":false},{"SourceID":103682,"TargetID":103681,"Directional":false},{"SourceID":103829,"TargetID":103828,"Directional":false},{"SourceID":134981,"TargetID":134980,"Directional":false},{"SourceID":135373,"TargetID":135374,"Directional":false}]},{"ID":3485,"SourceStructureID":5650,"TargetStructureID":15796,"Label":"5650-15796 via Unknown from 124723 -> 134985","Type":"Unknown","Directional":false,"Links":[{"SourceID":124723,"TargetID":134985,"Directional":false}]},{"ID":3486,"SourceStructureID":16073,"TargetStructureID":5650,"Label":"16073-5650 via Unknown from 103903 -> 103902","Type":"Unknown","Directional":false,"Links":[{"SourceID":103903,"TargetID":103902,"Directional":false}]},{"ID":3487,"SourceStructureID":5650,"TargetStructureID":20136,"Label":"5650-20136 via Gap Junction from 127754 -> 127753","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":127754,"TargetID":127753,"Directional":false}]},{"ID":3488,"SourceStructureID":5650,"TargetStructureID":30130,"Label":"5650-30130 via Adherens from 103858 -> 103857","Type":"Adherens","Directional":false,"Links":[{"SourceID":103858,"TargetID":103857,"Directional":false}]},{"ID":3489,"SourceStructureID":35240,"TargetStructureID":5650,"Label":"35240-5650 via Adherens from 104457 -> 104458","Type":"Adherens","Directional":false,"Links":[{"SourceID":104457,"TargetID":104458,"Directional":false}]},{"ID":3490,"SourceStructureID":5650,"TargetStructureID":53202,"Label":"5650-53202 via Unknown from 103849 -> 103850","Type":"Unknown","Directional":false,"Links":[{"SourceID":103849,"TargetID":103850,"Directional":false}]},{"ID":3491,"SourceStructureID":5650,"TargetStructureID":53407,"Label":"5650-53407 via Adherens from 103886 -> 103885","Type":"Adherens","Directional":false,"Links":[{"SourceID":103886,"TargetID":103885,"Directional":false}]},{"ID":3492,"SourceStructureID":53987,"TargetStructureID":5650,"Label":"53987-5650 via Adherens from 103630 -> 103629","Type":"Adherens","Directional":false,"Links":[{"SourceID":103630,"TargetID":103629,"Directional":false}]},{"ID":3493,"SourceStructureID":5650,"TargetStructureID":68511,"Label":"5650-68511 via Unknown from 68515 -> 68514","Type":"Unknown","Directional":false,"Links":[{"SourceID":68515,"TargetID":68514,"Directional":false}]},{"ID":3494,"SourceStructureID":5650,"TargetStructureID":102643,"Label":"5650-102643 via Unknown from 102645 -> 102644","Type":"Unknown","Directional":false,"Links":[{"SourceID":102645,"TargetID":102644,"Directional":false}]},{"ID":3495,"SourceStructureID":5650,"TargetStructureID":102661,"Label":"5650-102661 via Unknown from 102663 -> 102662","Type":"Unknown","Directional":false,"Links":[{"SourceID":102663,"TargetID":102662,"Directional":false}]},{"ID":3496,"SourceStructureID":5650,"TargetStructureID":102757,"Label":"5650-102757 via Unknown from 102781 -> 102780","Type":"Unknown","Directional":false,"Links":[{"SourceID":102781,"TargetID":102780,"Directional":false}]},{"ID":3497,"SourceStructureID":102793,"TargetStructureID":5650,"Label":"102793-5650 via Unknown from 102822 -> 102821","Type":"Unknown","Directional":false,"Links":[{"SourceID":102822,"TargetID":102821,"Directional":false}]},{"ID":3498,"SourceStructureID":5650,"TargetStructureID":102795,"Label":"5650-102795 via Unknown from 102797 -> 102796","Type":"Unknown","Directional":false,"Links":[{"SourceID":102797,"TargetID":102796,"Directional":false}]},{"ID":3499,"SourceStructureID":102953,"TargetStructureID":5650,"Label":"102953-5650 via Adherens from 102996 -> 102995","Type":"Adherens","Directional":false,"Links":[{"SourceID":102996,"TargetID":102995,"Directional":false}]},{"ID":3500,"SourceStructureID":5650,"TargetStructureID":103001,"Label":"5650-103001 via Adherens from 103002 -> 103003","Type":"Adherens","Directional":false,"Links":[{"SourceID":103002,"TargetID":103003,"Directional":false}]},{"ID":3501,"SourceStructureID":103029,"TargetStructureID":5650,"Label":"103029-5650 via Adherens from 103031 -> 103030","Type":"Adherens","Directional":false,"Links":[{"SourceID":103031,"TargetID":103030,"Directional":false}]},{"ID":3502,"SourceStructureID":5650,"TargetStructureID":103037,"Label":"5650-103037 via Adherens from 103038 -> 103039","Type":"Adherens","Directional":false,"Links":[{"SourceID":103038,"TargetID":103039,"Directional":false}]},{"ID":3503,"SourceStructureID":5650,"TargetStructureID":103557,"Label":"5650-103557 via Adherens from 103559 -> 103558","Type":"Adherens","Directional":false,"Links":[{"SourceID":103559,"TargetID":103558,"Directional":false}]},{"ID":3504,"SourceStructureID":103572,"TargetStructureID":5650,"Label":"103572-5650 via Adherens from 103577 -> 103576","Type":"Adherens","Directional":false,"Links":[{"SourceID":103577,"TargetID":103576,"Directional":false}]},{"ID":3505,"SourceStructureID":103579,"TargetStructureID":5650,"Label":"103579-5650 via Unknown from 103581 -> 103580","Type":"Unknown","Directional":false,"Links":[{"SourceID":103581,"TargetID":103580,"Directional":false}]},{"ID":3506,"SourceStructureID":5650,"TargetStructureID":103595,"Label":"5650-103595 via Adherens from 103599 -> 103600","Type":"Adherens","Directional":false,"Links":[{"SourceID":103599,"TargetID":103600,"Directional":false}]},{"ID":3507,"SourceStructureID":103636,"TargetStructureID":5650,"Label":"103636-5650 via Unknown from 103638 -> 103637","Type":"Unknown","Directional":false,"Links":[{"SourceID":103638,"TargetID":103637,"Directional":false}]},{"ID":3508,"SourceStructureID":103654,"TargetStructureID":5650,"Label":"103654-5650 via Adherens from 103656 -> 103655","Type":"Adherens","Directional":false,"Links":[{"SourceID":103656,"TargetID":103655,"Directional":false}]},{"ID":3509,"SourceStructureID":5650,"TargetStructureID":103657,"Label":"5650-103657 via Adherens from 103659 -> 103658","Type":"Adherens","Directional":false,"Links":[{"SourceID":103659,"TargetID":103658,"Directional":false}]},{"ID":3510,"SourceStructureID":5650,"TargetStructureID":103675,"Label":"5650-103675 via Unknown from 103676 -> 103677","Type":"Unknown","Directional":false,"Links":[{"SourceID":103676,"TargetID":103677,"Directional":false}]},{"ID":3511,"SourceStructureID":5650,"TargetStructureID":103693,"Label":"5650-103693 via Adherens from 103695 -> 103694","Type":"Adherens","Directional":false,"Links":[{"SourceID":103695,"TargetID":103694,"Directional":false}]},{"ID":3512,"SourceStructureID":103710,"TargetStructureID":5650,"Label":"103710-5650 via Unknown from 103712 -> 103711","Type":"Unknown","Directional":false,"Links":[{"SourceID":103712,"TargetID":103711,"Directional":false}]},{"ID":3513,"SourceStructureID":5650,"TargetStructureID":103820,"Label":"5650-103820 via Adherens from 103822 -> 103821","Type":"Adherens","Directional":false,"Links":[{"SourceID":103822,"TargetID":103821,"Directional":false}]},{"ID":3514,"SourceStructureID":104089,"TargetStructureID":5650,"Label":"104089-5650 via Adherens from 104094 -> 104093","Type":"Adherens","Directional":false,"Links":[{"SourceID":104094,"TargetID":104093,"Directional":false}]},{"ID":3515,"SourceStructureID":5650,"TargetStructureID":104120,"Label":"5650-104120 via Unknown from 104121 -> 104122","Type":"Unknown","Directional":false,"Links":[{"SourceID":104121,"TargetID":104122,"Directional":false}]},{"ID":3516,"SourceStructureID":5650,"TargetStructureID":104304,"Label":"5650-104304 via Unknown from 104310 -> 104308","Type":"Unknown","Directional":false,"Links":[{"SourceID":104310,"TargetID":104308,"Directional":false}]},{"ID":3517,"SourceStructureID":104330,"TargetStructureID":5650,"Label":"104330-5650 via Unknown from 104334 -> 104332","Type":"Unknown","Directional":false,"Links":[{"SourceID":104334,"TargetID":104332,"Directional":false}]},{"ID":3518,"SourceStructureID":104370,"TargetStructureID":5650,"Label":"104370-5650 via Unknown from 104372 -> 104371","Type":"Unknown","Directional":false,"Links":[{"SourceID":104372,"TargetID":104371,"Directional":false}]},{"ID":3519,"SourceStructureID":5650,"TargetStructureID":104459,"Label":"5650-104459 via Adherens from 104461 -> 104460","Type":"Adherens","Directional":false,"Links":[{"SourceID":104461,"TargetID":104460,"Directional":false}]},{"ID":3520,"SourceStructureID":5650,"TargetStructureID":104465,"Label":"5650-104465 via Adherens from 104466 -> 104467","Type":"Adherens","Directional":false,"Links":[{"SourceID":104466,"TargetID":104467,"Directional":false}]},{"ID":3521,"SourceStructureID":104987,"TargetStructureID":5650,"Label":"104987-5650 via Adherens from 104989 -> 104988","Type":"Adherens","Directional":false,"Links":[{"SourceID":104989,"TargetID":104988,"Directional":false}]},{"ID":3522,"SourceStructureID":105070,"TargetStructureID":5650,"Label":"105070-5650 via Adherens from 105072 -> 105071","Type":"Adherens","Directional":false,"Links":[{"SourceID":105072,"TargetID":105071,"Directional":false}]},{"ID":3523,"SourceStructureID":105106,"TargetStructureID":5650,"Label":"105106-5650 via Unknown from 105107 -> 105105","Type":"Unknown","Directional":false,"Links":[{"SourceID":105107,"TargetID":105105,"Directional":false}]},{"ID":3524,"SourceStructureID":105131,"TargetStructureID":5650,"Label":"105131-5650 via Adherens from 105139 -> 105138","Type":"Adherens","Directional":false,"Links":[{"SourceID":105139,"TargetID":105138,"Directional":false}]},{"ID":3525,"SourceStructureID":105167,"TargetStructureID":5650,"Label":"105167-5650 via Unknown from 105169 -> 105168","Type":"Unknown","Directional":false,"Links":[{"SourceID":105169,"TargetID":105168,"Directional":false}]},{"ID":3526,"SourceStructureID":105199,"TargetStructureID":5650,"Label":"105199-5650 via Adherens from 126406 -> 126407","Type":"Adherens","Directional":false,"Links":[{"SourceID":126406,"TargetID":126407,"Directional":false}]},{"ID":3527,"SourceStructureID":106325,"TargetStructureID":5650,"Label":"106325-5650 via Adherens from 106328 -> 106324","Type":"Adherens","Directional":false,"Links":[{"SourceID":106328,"TargetID":106324,"Directional":false}]},{"ID":3528,"SourceStructureID":106336,"TargetStructureID":5650,"Label":"106336-5650 via Unknown from 106343 -> 106342","Type":"Unknown","Directional":false,"Links":[{"SourceID":106343,"TargetID":106342,"Directional":false}]},{"ID":3529,"SourceStructureID":5729,"TargetStructureID":5729,"Label":"5729-5729 via Adherens from 112683 -> 64523","Type":"Adherens","Directional":false,"Links":[{"SourceID":112683,"TargetID":64523,"Directional":false}]},{"ID":3530,"SourceStructureID":5729,"TargetStructureID":5729,"Label":"5729-5729 via Gap Junction from 64474 -> 64473, 105778 -> 105779","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64474,"TargetID":64473,"Directional":false},{"SourceID":105778,"TargetID":105779,"Directional":false}]},{"ID":3531,"SourceStructureID":6158,"TargetStructureID":5729,"Label":"6158-5729 via Gap Junction from 47218 -> 47217, 111940 -> 111941, 113087 -> 111943","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":47218,"TargetID":47217,"Directional":false},{"SourceID":111940,"TargetID":111941,"Directional":false},{"SourceID":113087,"TargetID":111943,"Directional":false}]},{"ID":3532,"SourceStructureID":5729,"TargetStructureID":6158,"Label":"5729-6158 via Touch from 120654 -> 120655","Type":"Touch","Directional":false,"Links":[{"SourceID":120654,"TargetID":120655,"Directional":false}]},{"ID":3533,"SourceStructureID":6162,"TargetStructureID":5729,"Label":"6162-5729 via Adherens from 37852 -> 37853, 105759 -> 123359","Type":"Adherens","Directional":false,"Links":[{"SourceID":37852,"TargetID":37853,"Directional":false},{"SourceID":105759,"TargetID":123359,"Directional":false}]},{"ID":3534,"SourceStructureID":6162,"TargetStructureID":5729,"Label":"6162-5729 via Gap Junction from 37848 -> 37847, 37851 -> 37850, 47223 -> 29108, 55252 -> 47235, 110912 -> 110913, 118170 -> 118171","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37848,"TargetID":37847,"Directional":false},{"SourceID":37851,"TargetID":37850,"Directional":false},{"SourceID":47223,"TargetID":29108,"Directional":false},{"SourceID":55252,"TargetID":47235,"Directional":false},{"SourceID":110912,"TargetID":110913,"Directional":false},{"SourceID":118170,"TargetID":118171,"Directional":false}]},{"ID":3535,"SourceStructureID":5729,"TargetStructureID":7050,"Label":"5729-7050 via Gap Junction from 37816 -> 37815, 64587 -> 24877","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37816,"TargetID":37815,"Directional":false},{"SourceID":64587,"TargetID":24877,"Directional":false}]},{"ID":3536,"SourceStructureID":7897,"TargetStructureID":5729,"Label":"7897-5729 via Adherens from 112012 -> 112013","Type":"Adherens","Directional":false,"Links":[{"SourceID":112012,"TargetID":112013,"Directional":false}]},{"ID":3537,"SourceStructureID":8040,"TargetStructureID":5729,"Label":"8040-5729 via Adherens from 112671 -> 112672","Type":"Adherens","Directional":false,"Links":[{"SourceID":112671,"TargetID":112672,"Directional":false}]},{"ID":3538,"SourceStructureID":8040,"TargetStructureID":5729,"Label":"8040-5729 via Gap Junction from 111797 -> 111796","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111797,"TargetID":111796,"Directional":false}]},{"ID":3539,"SourceStructureID":11408,"TargetStructureID":5729,"Label":"11408-5729 via Gap Junction from 112645 -> 112620","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112645,"TargetID":112620,"Directional":false}]},{"ID":3540,"SourceStructureID":35240,"TargetStructureID":5729,"Label":"35240-5729 via Adherens from 111778 -> 111779","Type":"Adherens","Directional":false,"Links":[{"SourceID":111778,"TargetID":111779,"Directional":false}]},{"ID":3541,"SourceStructureID":35428,"TargetStructureID":5729,"Label":"35428-5729 via Unknown from 111952 -> 111951","Type":"Unknown","Directional":false,"Links":[{"SourceID":111952,"TargetID":111951,"Directional":false}]},{"ID":3542,"SourceStructureID":35555,"TargetStructureID":5729,"Label":"35555-5729 via Adherens from 112726 -> 112725","Type":"Adherens","Directional":false,"Links":[{"SourceID":112726,"TargetID":112725,"Directional":false}]},{"ID":3543,"SourceStructureID":47445,"TargetStructureID":5729,"Label":"47445-5729 via Gap Junction from 118183 -> 118178","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118183,"TargetID":118178,"Directional":false}]},{"ID":3544,"SourceStructureID":5729,"TargetStructureID":48516,"Label":"5729-48516 via Gap Junction from 123287 -> 123297","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123287,"TargetID":123297,"Directional":false}]},{"ID":3545,"SourceStructureID":55232,"TargetStructureID":5729,"Label":"55232-5729 via Adherens from 111155 -> 111156, 111195 -> 111194","Type":"Adherens","Directional":false,"Links":[{"SourceID":111155,"TargetID":111156,"Directional":false},{"SourceID":111195,"TargetID":111194,"Directional":false}]},{"ID":3546,"SourceStructureID":5729,"TargetStructureID":64452,"Label":"5729-64452 via Adherens from 111959 -> 89622, 111962 -> 111948, 111983 -> 111985","Type":"Adherens","Directional":false,"Links":[{"SourceID":111959,"TargetID":89622,"Directional":false},{"SourceID":111962,"TargetID":111948,"Directional":false},{"SourceID":111983,"TargetID":111985,"Directional":false}]},{"ID":3547,"SourceStructureID":64452,"TargetStructureID":5729,"Label":"64452-5729 via Unknown from 111979 -> 111978","Type":"Unknown","Directional":false,"Links":[{"SourceID":111979,"TargetID":111978,"Directional":false}]},{"ID":3548,"SourceStructureID":5729,"TargetStructureID":64939,"Label":"5729-64939 via Adherens from 64529 -> 112949, 112445 -> 112444","Type":"Adherens","Directional":false,"Links":[{"SourceID":64529,"TargetID":112949,"Directional":false},{"SourceID":112445,"TargetID":112444,"Directional":false}]},{"ID":3549,"SourceStructureID":64939,"TargetStructureID":5729,"Label":"64939-5729 via Gap Junction from 64941 -> 64466, 69661 -> 69659, 69717 -> 69718, 70022 -> 70021, 93219 -> 93218, 93606 -> 64528, 111646 -> 111647, 111960 -> 111961, 112600 -> 112601, 113797 -> 113796, 123288 -> 123289","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64941,"TargetID":64466,"Directional":false},{"SourceID":69661,"TargetID":69659,"Directional":false},{"SourceID":69717,"TargetID":69718,"Directional":false},{"SourceID":70022,"TargetID":70021,"Directional":false},{"SourceID":93219,"TargetID":93218,"Directional":false},{"SourceID":93606,"TargetID":64528,"Directional":false},{"SourceID":111646,"TargetID":111647,"Directional":false},{"SourceID":111960,"TargetID":111961,"Directional":false},{"SourceID":112600,"TargetID":112601,"Directional":false},{"SourceID":113797,"TargetID":113796,"Directional":false},{"SourceID":123288,"TargetID":123289,"Directional":false}]},{"ID":3550,"SourceStructureID":69691,"TargetStructureID":5729,"Label":"69691-5729 via Unknown from 136309 -> 136308","Type":"Unknown","Directional":false,"Links":[{"SourceID":136309,"TargetID":136308,"Directional":false}]},{"ID":3551,"SourceStructureID":5729,"TargetStructureID":89124,"Label":"5729-89124 via Adherens from 111438 -> 111439","Type":"Adherens","Directional":false,"Links":[{"SourceID":111438,"TargetID":111439,"Directional":false}]},{"ID":3552,"SourceStructureID":89631,"TargetStructureID":5729,"Label":"89631-5729 via Adherens from 89632 -> 89630","Type":"Adherens","Directional":false,"Links":[{"SourceID":89632,"TargetID":89630,"Directional":false}]},{"ID":3553,"SourceStructureID":100017,"TargetStructureID":5729,"Label":"100017-5729 via Unknown from 100594 -> 112605","Type":"Unknown","Directional":false,"Links":[{"SourceID":100594,"TargetID":112605,"Directional":false}]},{"ID":3554,"SourceStructureID":110842,"TargetStructureID":5729,"Label":"110842-5729 via Adherens from 110846 -> 110847","Type":"Adherens","Directional":false,"Links":[{"SourceID":110846,"TargetID":110847,"Directional":false}]},{"ID":3555,"SourceStructureID":5729,"TargetStructureID":110899,"Label":"5729-110899 via Adherens from 110900 -> 110901","Type":"Adherens","Directional":false,"Links":[{"SourceID":110900,"TargetID":110901,"Directional":false}]},{"ID":3556,"SourceStructureID":110903,"TargetStructureID":5729,"Label":"110903-5729 via Adherens from 110917 -> 110918","Type":"Adherens","Directional":false,"Links":[{"SourceID":110917,"TargetID":110918,"Directional":false}]},{"ID":3557,"SourceStructureID":5729,"TargetStructureID":110924,"Label":"5729-110924 via Adherens from 110925 -> 110926","Type":"Adherens","Directional":false,"Links":[{"SourceID":110925,"TargetID":110926,"Directional":false}]},{"ID":3558,"SourceStructureID":110928,"TargetStructureID":5729,"Label":"110928-5729 via Unknown from 110929 -> 110927","Type":"Unknown","Directional":false,"Links":[{"SourceID":110929,"TargetID":110927,"Directional":false}]},{"ID":3559,"SourceStructureID":110952,"TargetStructureID":5729,"Label":"110952-5729 via Unknown from 110954 -> 110953","Type":"Unknown","Directional":false,"Links":[{"SourceID":110954,"TargetID":110953,"Directional":false}]},{"ID":3560,"SourceStructureID":5729,"TargetStructureID":110959,"Label":"5729-110959 via Unknown from 110958 -> 110960","Type":"Unknown","Directional":false,"Links":[{"SourceID":110958,"TargetID":110960,"Directional":false}]},{"ID":3561,"SourceStructureID":5729,"TargetStructureID":111040,"Label":"5729-111040 via Adherens from 111042 -> 111041","Type":"Adherens","Directional":false,"Links":[{"SourceID":111042,"TargetID":111041,"Directional":false}]},{"ID":3562,"SourceStructureID":5729,"TargetStructureID":111057,"Label":"5729-111057 via Adherens from 111063 -> 111062","Type":"Adherens","Directional":false,"Links":[{"SourceID":111063,"TargetID":111062,"Directional":false}]},{"ID":3563,"SourceStructureID":5729,"TargetStructureID":111059,"Label":"5729-111059 via Adherens from 111068 -> 111069","Type":"Adherens","Directional":false,"Links":[{"SourceID":111068,"TargetID":111069,"Directional":false}]},{"ID":3564,"SourceStructureID":111064,"TargetStructureID":5729,"Label":"111064-5729 via Adherens from 111066 -> 111067","Type":"Adherens","Directional":false,"Links":[{"SourceID":111066,"TargetID":111067,"Directional":false}]},{"ID":3565,"SourceStructureID":5729,"TargetStructureID":111078,"Label":"5729-111078 via Adherens from 111158 -> 111159","Type":"Adherens","Directional":false,"Links":[{"SourceID":111158,"TargetID":111159,"Directional":false}]},{"ID":3566,"SourceStructureID":111160,"TargetStructureID":5729,"Label":"111160-5729 via Unknown from 111161 -> 111162","Type":"Unknown","Directional":false,"Links":[{"SourceID":111161,"TargetID":111162,"Directional":false}]},{"ID":3567,"SourceStructureID":5729,"TargetStructureID":111165,"Label":"5729-111165 via Adherens from 111168 -> 111169","Type":"Adherens","Directional":false,"Links":[{"SourceID":111168,"TargetID":111169,"Directional":false}]},{"ID":3568,"SourceStructureID":5729,"TargetStructureID":111165,"Label":"5729-111165 via Gap Junction from 111166 -> 111167","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111166,"TargetID":111167,"Directional":false}]},{"ID":3569,"SourceStructureID":5729,"TargetStructureID":111174,"Label":"5729-111174 via Unknown from 111176 -> 111175","Type":"Unknown","Directional":false,"Links":[{"SourceID":111176,"TargetID":111175,"Directional":false}]},{"ID":3570,"SourceStructureID":111180,"TargetStructureID":5729,"Label":"111180-5729 via Gap Junction from 111181 -> 111182","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111181,"TargetID":111182,"Directional":false}]},{"ID":3571,"SourceStructureID":111183,"TargetStructureID":5729,"Label":"111183-5729 via Gap Junction from 111185 -> 111186","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111185,"TargetID":111186,"Directional":false}]},{"ID":3572,"SourceStructureID":111288,"TargetStructureID":5729,"Label":"111288-5729 via Unknown from 111290 -> 111289","Type":"Unknown","Directional":false,"Links":[{"SourceID":111290,"TargetID":111289,"Directional":false}]},{"ID":3573,"SourceStructureID":5729,"TargetStructureID":111298,"Label":"5729-111298 via Adherens from 37814 -> 111302","Type":"Adherens","Directional":false,"Links":[{"SourceID":37814,"TargetID":111302,"Directional":false}]},{"ID":3574,"SourceStructureID":111306,"TargetStructureID":5729,"Label":"111306-5729 via Adherens from 111308 -> 37819","Type":"Adherens","Directional":false,"Links":[{"SourceID":111308,"TargetID":37819,"Directional":false}]},{"ID":3575,"SourceStructureID":111311,"TargetStructureID":5729,"Label":"111311-5729 via Adherens from 111326 -> 111327","Type":"Adherens","Directional":false,"Links":[{"SourceID":111326,"TargetID":111327,"Directional":false}]},{"ID":3576,"SourceStructureID":5729,"TargetStructureID":111312,"Label":"5729-111312 via Adherens from 37825 -> 111323","Type":"Adherens","Directional":false,"Links":[{"SourceID":37825,"TargetID":111323,"Directional":false}]},{"ID":3577,"SourceStructureID":5729,"TargetStructureID":111417,"Label":"5729-111417 via Unknown from 111465 -> 111466","Type":"Unknown","Directional":false,"Links":[{"SourceID":111465,"TargetID":111466,"Directional":false}]},{"ID":3578,"SourceStructureID":111448,"TargetStructureID":5729,"Label":"111448-5729 via Adherens from 111461 -> 111460","Type":"Adherens","Directional":false,"Links":[{"SourceID":111461,"TargetID":111460,"Directional":false}]},{"ID":3579,"SourceStructureID":111611,"TargetStructureID":5729,"Label":"111611-5729 via Adherens from 111634 -> 111635","Type":"Adherens","Directional":false,"Links":[{"SourceID":111634,"TargetID":111635,"Directional":false}]},{"ID":3580,"SourceStructureID":5729,"TargetStructureID":111740,"Label":"5729-111740 via Unknown from 111743 -> 111744","Type":"Unknown","Directional":false,"Links":[{"SourceID":111743,"TargetID":111744,"Directional":false}]},{"ID":3581,"SourceStructureID":111751,"TargetStructureID":5729,"Label":"111751-5729 via Unknown from 111752 -> 111750","Type":"Unknown","Directional":false,"Links":[{"SourceID":111752,"TargetID":111750,"Directional":false}]},{"ID":3582,"SourceStructureID":111758,"TargetStructureID":5729,"Label":"111758-5729 via Unknown from 111759 -> 111757","Type":"Unknown","Directional":false,"Links":[{"SourceID":111759,"TargetID":111757,"Directional":false}]},{"ID":3583,"SourceStructureID":111774,"TargetStructureID":5729,"Label":"111774-5729 via Gap Junction from 111775 -> 111763","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111775,"TargetID":111763,"Directional":false}]},{"ID":3584,"SourceStructureID":111788,"TargetStructureID":5729,"Label":"111788-5729 via Adherens from 111789 -> 111790","Type":"Adherens","Directional":false,"Links":[{"SourceID":111789,"TargetID":111790,"Directional":false}]},{"ID":3585,"SourceStructureID":111791,"TargetStructureID":5729,"Label":"111791-5729 via Unknown from 111792 -> 111794","Type":"Unknown","Directional":false,"Links":[{"SourceID":111792,"TargetID":111794,"Directional":false}]},{"ID":3586,"SourceStructureID":111963,"TargetStructureID":5729,"Label":"111963-5729 via Adherens from 111967 -> 89612","Type":"Adherens","Directional":false,"Links":[{"SourceID":111967,"TargetID":89612,"Directional":false}]},{"ID":3587,"SourceStructureID":5729,"TargetStructureID":111991,"Label":"5729-111991 via Adherens from 93224 -> 111992","Type":"Adherens","Directional":false,"Links":[{"SourceID":93224,"TargetID":111992,"Directional":false}]},{"ID":3588,"SourceStructureID":111997,"TargetStructureID":5729,"Label":"111997-5729 via Unknown from 111998 -> 111999","Type":"Unknown","Directional":false,"Links":[{"SourceID":111998,"TargetID":111999,"Directional":false}]},{"ID":3589,"SourceStructureID":112000,"TargetStructureID":5729,"Label":"112000-5729 via Unknown from 112001 -> 112002","Type":"Unknown","Directional":false,"Links":[{"SourceID":112001,"TargetID":112002,"Directional":false}]},{"ID":3590,"SourceStructureID":5729,"TargetStructureID":112310,"Label":"5729-112310 via Adherens from 112312 -> 112311","Type":"Adherens","Directional":false,"Links":[{"SourceID":112312,"TargetID":112311,"Directional":false}]},{"ID":3591,"SourceStructureID":112313,"TargetStructureID":5729,"Label":"112313-5729 via Adherens from 112314 -> 112316","Type":"Adherens","Directional":false,"Links":[{"SourceID":112314,"TargetID":112316,"Directional":false}]},{"ID":3592,"SourceStructureID":112455,"TargetStructureID":5729,"Label":"112455-5729 via Adherens from 112596 -> 112597","Type":"Adherens","Directional":false,"Links":[{"SourceID":112596,"TargetID":112597,"Directional":false}]},{"ID":3593,"SourceStructureID":112632,"TargetStructureID":5729,"Label":"112632-5729 via Unknown from 112633 -> 112631","Type":"Unknown","Directional":false,"Links":[{"SourceID":112633,"TargetID":112631,"Directional":false}]},{"ID":3594,"SourceStructureID":5729,"TargetStructureID":112641,"Label":"5729-112641 via Adherens from 112615 -> 112643, 112618 -> 112644","Type":"Adherens","Directional":false,"Links":[{"SourceID":112615,"TargetID":112643,"Directional":false},{"SourceID":112618,"TargetID":112644,"Directional":false}]},{"ID":3595,"SourceStructureID":5729,"TargetStructureID":112656,"Label":"5729-112656 via Adherens from 112655 -> 112657","Type":"Adherens","Directional":false,"Links":[{"SourceID":112655,"TargetID":112657,"Directional":false}]},{"ID":3596,"SourceStructureID":112666,"TargetStructureID":5729,"Label":"112666-5729 via Unknown from 112668 -> 112667","Type":"Unknown","Directional":false,"Links":[{"SourceID":112668,"TargetID":112667,"Directional":false}]},{"ID":3597,"SourceStructureID":112669,"TargetStructureID":5729,"Label":"112669-5729 via Adherens from 112673 -> 112674, 112675 -> 112676","Type":"Adherens","Directional":false,"Links":[{"SourceID":112673,"TargetID":112674,"Directional":false},{"SourceID":112675,"TargetID":112676,"Directional":false}]},{"ID":3598,"SourceStructureID":5729,"TargetStructureID":112696,"Label":"5729-112696 via Unknown from 112698 -> 112699","Type":"Unknown","Directional":false,"Links":[{"SourceID":112698,"TargetID":112699,"Directional":false}]},{"ID":3599,"SourceStructureID":5729,"TargetStructureID":112703,"Label":"5729-112703 via Unknown from 112707 -> 112708, 112735 -> 112736","Type":"Unknown","Directional":false,"Links":[{"SourceID":112707,"TargetID":112708,"Directional":false},{"SourceID":112735,"TargetID":112736,"Directional":false}]},{"ID":3600,"SourceStructureID":112715,"TargetStructureID":5729,"Label":"112715-5729 via Adherens from 112717 -> 64472","Type":"Adherens","Directional":false,"Links":[{"SourceID":112717,"TargetID":64472,"Directional":false}]},{"ID":3601,"SourceStructureID":5729,"TargetStructureID":112721,"Label":"5729-112721 via Gap Junction from 64477 -> 112722","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64477,"TargetID":112722,"Directional":false}]},{"ID":3602,"SourceStructureID":112884,"TargetStructureID":5729,"Label":"112884-5729 via Adherens from 112885 -> 64463","Type":"Adherens","Directional":false,"Links":[{"SourceID":112885,"TargetID":64463,"Directional":false}]},{"ID":3603,"SourceStructureID":112916,"TargetStructureID":5729,"Label":"112916-5729 via Unknown from 112922 -> 112923","Type":"Unknown","Directional":false,"Links":[{"SourceID":112922,"TargetID":112923,"Directional":false}]},{"ID":3604,"SourceStructureID":5729,"TargetStructureID":112925,"Label":"5729-112925 via Adherens from 112929 -> 112930","Type":"Adherens","Directional":false,"Links":[{"SourceID":112929,"TargetID":112930,"Directional":false}]},{"ID":3605,"SourceStructureID":112934,"TargetStructureID":5729,"Label":"112934-5729 via Unknown from 112946 -> 112947","Type":"Unknown","Directional":false,"Links":[{"SourceID":112946,"TargetID":112947,"Directional":false}]},{"ID":3606,"SourceStructureID":5729,"TargetStructureID":112942,"Label":"5729-112942 via Adherens from 64535 -> 112960","Type":"Adherens","Directional":false,"Links":[{"SourceID":64535,"TargetID":112960,"Directional":false}]},{"ID":3607,"SourceStructureID":5729,"TargetStructureID":113810,"Label":"5729-113810 via Gap Junction from 113812 -> 113811","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113812,"TargetID":113811,"Directional":false}]},{"ID":3608,"SourceStructureID":115424,"TargetStructureID":5729,"Label":"115424-5729 via Gap Junction from 115426 -> 113819","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115426,"TargetID":113819,"Directional":false}]},{"ID":3609,"SourceStructureID":136739,"TargetStructureID":5729,"Label":"136739-5729 via Gap Junction from 136740 -> 112647","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136740,"TargetID":112647,"Directional":false}]},{"ID":3610,"SourceStructureID":5775,"TargetStructureID":5775,"Label":"5775-5775 via Gap Junction from 120838 -> 120839","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120838,"TargetID":120839,"Directional":false}]},{"ID":3611,"SourceStructureID":5775,"TargetStructureID":5775,"Label":"5775-5775 via Touch from 93768 -> 93767","Type":"Touch","Directional":false,"Links":[{"SourceID":93768,"TargetID":93767,"Directional":false}]},{"ID":3612,"SourceStructureID":8040,"TargetStructureID":5775,"Label":"8040-5775 via Gap Junction from 48694 -> 48751, 48713 -> 49144, 48716 -> 48696, 52069 -> 48746, 93755 -> 49109, 93766 -> 48911, 120831 -> 120830, 120833 -> 120832, 120836 -> 48782","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48694,"TargetID":48751,"Directional":false},{"SourceID":48713,"TargetID":49144,"Directional":false},{"SourceID":48716,"TargetID":48696,"Directional":false},{"SourceID":52069,"TargetID":48746,"Directional":false},{"SourceID":93755,"TargetID":49109,"Directional":false},{"SourceID":93766,"TargetID":48911,"Directional":false},{"SourceID":120831,"TargetID":120830,"Directional":false},{"SourceID":120833,"TargetID":120832,"Directional":false},{"SourceID":120836,"TargetID":48782,"Directional":false}]},{"ID":3613,"SourceStructureID":5838,"TargetStructureID":5916,"Label":"5838-5916 via Gap Junction from 109052 -> 109051","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109052,"TargetID":109051,"Directional":false}]},{"ID":3614,"SourceStructureID":5916,"TargetStructureID":5838,"Label":"5916-5838 via Unknown from 109101 -> 109102","Type":"Unknown","Directional":false,"Links":[{"SourceID":109101,"TargetID":109102,"Directional":false}]},{"ID":3615,"SourceStructureID":7951,"TargetStructureID":5838,"Label":"7951-5838 via Gap Junction from 120669 -> 38029, 120670 -> 38030","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120669,"TargetID":38029,"Directional":false},{"SourceID":120670,"TargetID":38030,"Directional":false}]},{"ID":3616,"SourceStructureID":102554,"TargetStructureID":5838,"Label":"102554-5838 via Adherens from 102556 -> 102558","Type":"Adherens","Directional":false,"Links":[{"SourceID":102556,"TargetID":102558,"Directional":false}]},{"ID":3617,"SourceStructureID":6169,"TargetStructureID":5860,"Label":"6169-5860 via Gap Junction from 133082 -> 133083, 133085 -> 24733","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133082,"TargetID":133083,"Directional":false},{"SourceID":133085,"TargetID":24733,"Directional":false}]},{"ID":3618,"SourceStructureID":7113,"TargetStructureID":5860,"Label":"7113-5860 via Gap Junction from 131417 -> 131416","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131417,"TargetID":131416,"Directional":false}]},{"ID":3619,"SourceStructureID":5860,"TargetStructureID":7174,"Label":"5860-7174 via Gap Junction from 7173 -> 7175","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":7173,"TargetID":7175,"Directional":false}]},{"ID":3620,"SourceStructureID":5860,"TargetStructureID":40863,"Label":"5860-40863 via Gap Junction from 14739 -> 40866","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":14739,"TargetID":40866,"Directional":false}]},{"ID":3621,"SourceStructureID":51715,"TargetStructureID":5860,"Label":"51715-5860 via Gap Junction from 52097 -> 52099, 131166 -> 131165","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52097,"TargetID":52099,"Directional":false},{"SourceID":131166,"TargetID":131165,"Directional":false}]},{"ID":3622,"SourceStructureID":98572,"TargetStructureID":5860,"Label":"98572-5860 via Gap Junction from 98610 -> 98612, 98616 -> 98617","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98610,"TargetID":98612,"Directional":false},{"SourceID":98616,"TargetID":98617,"Directional":false}]},{"ID":3623,"SourceStructureID":5916,"TargetStructureID":7050,"Label":"5916-7050 via Gap Junction from 63205 -> 63204, 63969 -> 63968, 109206 -> 109207","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63205,"TargetID":63204,"Directional":false},{"SourceID":63969,"TargetID":63968,"Directional":false},{"SourceID":109206,"TargetID":109207,"Directional":false}]},{"ID":3624,"SourceStructureID":12897,"TargetStructureID":5916,"Label":"12897-5916 via Gap Junction from 109380 -> 109379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109380,"TargetID":109379,"Directional":false}]},{"ID":3625,"SourceStructureID":5916,"TargetStructureID":63199,"Label":"5916-63199 via Gap Junction from 147550 -> 147549","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":147550,"TargetID":147549,"Directional":false}]},{"ID":3626,"SourceStructureID":69049,"TargetStructureID":5916,"Label":"69049-5916 via Unknown from 109194 -> 109193","Type":"Unknown","Directional":false,"Links":[{"SourceID":109194,"TargetID":109193,"Directional":false}]},{"ID":3627,"SourceStructureID":5916,"TargetStructureID":106339,"Label":"5916-106339 via Adherens from 134977 -> 134975","Type":"Adherens","Directional":false,"Links":[{"SourceID":134977,"TargetID":134975,"Directional":false}]},{"ID":3628,"SourceStructureID":5916,"TargetStructureID":106345,"Label":"5916-106345 via Unknown from 135446 -> 135447","Type":"Unknown","Directional":false,"Links":[{"SourceID":135446,"TargetID":135447,"Directional":false}]},{"ID":3629,"SourceStructureID":108731,"TargetStructureID":5916,"Label":"108731-5916 via Unknown from 158861 -> 158862","Type":"Unknown","Directional":false,"Links":[{"SourceID":158861,"TargetID":158862,"Directional":false}]},{"ID":3630,"SourceStructureID":109308,"TargetStructureID":5916,"Label":"109308-5916 via Unknown from 109321 -> 109320","Type":"Unknown","Directional":false,"Links":[{"SourceID":109321,"TargetID":109320,"Directional":false}]},{"ID":3631,"SourceStructureID":5916,"TargetStructureID":109731,"Label":"5916-109731 via Unknown from 109686 -> 109737, 109733 -> 109734, 109735 -> 109736","Type":"Unknown","Directional":false,"Links":[{"SourceID":109686,"TargetID":109737,"Directional":false},{"SourceID":109733,"TargetID":109734,"Directional":false},{"SourceID":109735,"TargetID":109736,"Directional":false}]},{"ID":3632,"SourceStructureID":5923,"TargetStructureID":33625,"Label":"5923-33625 via Touch from 33644 -> 33643","Type":"Touch","Directional":false,"Links":[{"SourceID":33644,"TargetID":33643,"Directional":false}]},{"ID":3633,"SourceStructureID":6047,"TargetStructureID":6120,"Label":"6047-6120 via Gap Junction from 61771 -> 57394, 110605 -> 110604, 111898 -> 111896","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61771,"TargetID":57394,"Directional":false},{"SourceID":110605,"TargetID":110604,"Directional":false},{"SourceID":111898,"TargetID":111896,"Directional":false}]},{"ID":3634,"SourceStructureID":6141,"TargetStructureID":6047,"Label":"6141-6047 via Gap Junction from 57397 -> 112030, 57398 -> 57395","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57397,"TargetID":112030,"Directional":false},{"SourceID":57398,"TargetID":57395,"Directional":false}]},{"ID":3635,"SourceStructureID":6203,"TargetStructureID":6047,"Label":"6203-6047 via Unknown from 112054 -> 112055","Type":"Unknown","Directional":false,"Links":[{"SourceID":112054,"TargetID":112055,"Directional":false}]},{"ID":3636,"SourceStructureID":6047,"TargetStructureID":7147,"Label":"6047-7147 via Adherens from 129300 -> 129301","Type":"Adherens","Directional":false,"Links":[{"SourceID":129300,"TargetID":129301,"Directional":false}]},{"ID":3637,"SourceStructureID":7147,"TargetStructureID":6047,"Label":"7147-6047 via Gap Junction from 16066 -> 19650, 19721 -> 19720, 19723 -> 19722, 19732 -> 19731, 61327 -> 61326, 61344 -> 61343, 117227 -> 129329, 129295 -> 129296","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16066,"TargetID":19650,"Directional":false},{"SourceID":19721,"TargetID":19720,"Directional":false},{"SourceID":19723,"TargetID":19722,"Directional":false},{"SourceID":19732,"TargetID":19731,"Directional":false},{"SourceID":61327,"TargetID":61326,"Directional":false},{"SourceID":61344,"TargetID":61343,"Directional":false},{"SourceID":117227,"TargetID":129329,"Directional":false},{"SourceID":129295,"TargetID":129296,"Directional":false}]},{"ID":3638,"SourceStructureID":16073,"TargetStructureID":6047,"Label":"16073-6047 via Unknown from 112229 -> 112227","Type":"Unknown","Directional":false,"Links":[{"SourceID":112229,"TargetID":112227,"Directional":false}]},{"ID":3639,"SourceStructureID":35343,"TargetStructureID":6047,"Label":"35343-6047 via Unknown from 113264 -> 113263","Type":"Unknown","Directional":false,"Links":[{"SourceID":113264,"TargetID":113263,"Directional":false}]},{"ID":3640,"SourceStructureID":6047,"TargetStructureID":111351,"Label":"6047-111351 via Unknown from 125494 -> 125493","Type":"Unknown","Directional":false,"Links":[{"SourceID":125494,"TargetID":125493,"Directional":false}]},{"ID":3641,"SourceStructureID":111912,"TargetStructureID":6047,"Label":"111912-6047 via Unknown from 111913 -> 111911","Type":"Unknown","Directional":false,"Links":[{"SourceID":111913,"TargetID":111911,"Directional":false}]},{"ID":3642,"SourceStructureID":111920,"TargetStructureID":6047,"Label":"111920-6047 via Adherens from 111921 -> 19621","Type":"Adherens","Directional":false,"Links":[{"SourceID":111921,"TargetID":19621,"Directional":false}]},{"ID":3643,"SourceStructureID":6047,"TargetStructureID":112064,"Label":"6047-112064 via Unknown from 112065 -> 112066","Type":"Unknown","Directional":false,"Links":[{"SourceID":112065,"TargetID":112066,"Directional":false}]},{"ID":3644,"SourceStructureID":112069,"TargetStructureID":6047,"Label":"112069-6047 via Adherens from 112070 -> 112068","Type":"Adherens","Directional":false,"Links":[{"SourceID":112070,"TargetID":112068,"Directional":false}]},{"ID":3645,"SourceStructureID":6047,"TargetStructureID":112081,"Label":"6047-112081 via Gap Junction from 112080 -> 112083","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112080,"TargetID":112083,"Directional":false}]},{"ID":3646,"SourceStructureID":112102,"TargetStructureID":6047,"Label":"112102-6047 via Adherens from 112103 -> 112101","Type":"Adherens","Directional":false,"Links":[{"SourceID":112103,"TargetID":112101,"Directional":false}]},{"ID":3647,"SourceStructureID":112126,"TargetStructureID":6047,"Label":"112126-6047 via Gap Junction from 112136 -> 112135, 112138 -> 112137, 112140 -> 112139","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112136,"TargetID":112135,"Directional":false},{"SourceID":112138,"TargetID":112137,"Directional":false},{"SourceID":112140,"TargetID":112139,"Directional":false}]},{"ID":3648,"SourceStructureID":6047,"TargetStructureID":112199,"Label":"6047-112199 via Gap Junction from 112201 -> 112200","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112201,"TargetID":112200,"Directional":false}]},{"ID":3649,"SourceStructureID":112233,"TargetStructureID":6047,"Label":"112233-6047 via Gap Junction from 112237 -> 112236, 112238 -> 112239","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112237,"TargetID":112236,"Directional":false},{"SourceID":112238,"TargetID":112239,"Directional":false}]},{"ID":3650,"SourceStructureID":6047,"TargetStructureID":112275,"Label":"6047-112275 via Unknown from 112276 -> 112277","Type":"Unknown","Directional":false,"Links":[{"SourceID":112276,"TargetID":112277,"Directional":false}]},{"ID":3651,"SourceStructureID":112292,"TargetStructureID":6047,"Label":"112292-6047 via Adherens from 112293 -> 56886","Type":"Adherens","Directional":false,"Links":[{"SourceID":112293,"TargetID":56886,"Directional":false}]},{"ID":3652,"SourceStructureID":6047,"TargetStructureID":112342,"Label":"6047-112342 via Adherens from 112344 -> 112345","Type":"Adherens","Directional":false,"Links":[{"SourceID":112344,"TargetID":112345,"Directional":false}]},{"ID":3653,"SourceStructureID":112358,"TargetStructureID":6047,"Label":"112358-6047 via Adherens from 112359 -> 112357","Type":"Adherens","Directional":false,"Links":[{"SourceID":112359,"TargetID":112357,"Directional":false}]},{"ID":3654,"SourceStructureID":6047,"TargetStructureID":112395,"Label":"6047-112395 via Adherens from 112399 -> 112398","Type":"Adherens","Directional":false,"Links":[{"SourceID":112399,"TargetID":112398,"Directional":false}]},{"ID":3655,"SourceStructureID":112411,"TargetStructureID":6047,"Label":"112411-6047 via Adherens from 112413 -> 112414","Type":"Adherens","Directional":false,"Links":[{"SourceID":112413,"TargetID":112414,"Directional":false}]},{"ID":3656,"SourceStructureID":112415,"TargetStructureID":6047,"Label":"112415-6047 via Gap Junction from 112416 -> 112417","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112416,"TargetID":112417,"Directional":false}]},{"ID":3657,"SourceStructureID":112425,"TargetStructureID":6047,"Label":"112425-6047 via Adherens from 112426 -> 19738","Type":"Adherens","Directional":false,"Links":[{"SourceID":112426,"TargetID":19738,"Directional":false}]},{"ID":3658,"SourceStructureID":112427,"TargetStructureID":6047,"Label":"112427-6047 via Adherens from 112429 -> 19673","Type":"Adherens","Directional":false,"Links":[{"SourceID":112429,"TargetID":19673,"Directional":false}]},{"ID":3659,"SourceStructureID":112436,"TargetStructureID":6047,"Label":"112436-6047 via Gap Junction from 112437 -> 112435","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112437,"TargetID":112435,"Directional":false}]},{"ID":3660,"SourceStructureID":6047,"TargetStructureID":112480,"Label":"6047-112480 via Unknown from 112485 -> 112484","Type":"Unknown","Directional":false,"Links":[{"SourceID":112485,"TargetID":112484,"Directional":false}]},{"ID":3661,"SourceStructureID":6047,"TargetStructureID":112481,"Label":"6047-112481 via Unknown from 112483 -> 112482","Type":"Unknown","Directional":false,"Links":[{"SourceID":112483,"TargetID":112482,"Directional":false}]},{"ID":3662,"SourceStructureID":112540,"TargetStructureID":6047,"Label":"112540-6047 via Unknown from 129322 -> 129321","Type":"Unknown","Directional":false,"Links":[{"SourceID":129322,"TargetID":129321,"Directional":false}]},{"ID":3663,"SourceStructureID":6047,"TargetStructureID":112549,"Label":"6047-112549 via Adherens from 19661 -> 112553","Type":"Adherens","Directional":false,"Links":[{"SourceID":19661,"TargetID":112553,"Directional":false}]},{"ID":3664,"SourceStructureID":112772,"TargetStructureID":6047,"Label":"112772-6047 via Gap Junction from 112773 -> 112771","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112773,"TargetID":112771,"Directional":false}]},{"ID":3665,"SourceStructureID":112786,"TargetStructureID":6047,"Label":"112786-6047 via Adherens from 112792 -> 112785","Type":"Adherens","Directional":false,"Links":[{"SourceID":112792,"TargetID":112785,"Directional":false}]},{"ID":3666,"SourceStructureID":6047,"TargetStructureID":113170,"Label":"6047-113170 via Adherens from 113169 -> 113172","Type":"Adherens","Directional":false,"Links":[{"SourceID":113169,"TargetID":113172,"Directional":false}]},{"ID":3667,"SourceStructureID":113179,"TargetStructureID":6047,"Label":"113179-6047 via Adherens from 113180 -> 19633","Type":"Adherens","Directional":false,"Links":[{"SourceID":113180,"TargetID":19633,"Directional":false}]},{"ID":3668,"SourceStructureID":113689,"TargetStructureID":6047,"Label":"113689-6047 via Unknown from 113690 -> 113688","Type":"Unknown","Directional":false,"Links":[{"SourceID":113690,"TargetID":113688,"Directional":false}]},{"ID":3669,"SourceStructureID":6047,"TargetStructureID":120936,"Label":"6047-120936 via Unknown from 120939 -> 120938","Type":"Unknown","Directional":false,"Links":[{"SourceID":120939,"TargetID":120938,"Directional":false}]},{"ID":3670,"SourceStructureID":6047,"TargetStructureID":129340,"Label":"6047-129340 via Gap Junction from 129318 -> 129342","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129318,"TargetID":129342,"Directional":false}]},{"ID":3671,"SourceStructureID":6050,"TargetStructureID":6050,"Label":"6050-6050 via Touch from 147979 -> 147978","Type":"Touch","Directional":false,"Links":[{"SourceID":147979,"TargetID":147978,"Directional":false}]},{"ID":3672,"SourceStructureID":6050,"TargetStructureID":6115,"Label":"6050-6115 via Touch from 127055 -> 127056","Type":"Touch","Directional":false,"Links":[{"SourceID":127055,"TargetID":127056,"Directional":false}]},{"ID":3673,"SourceStructureID":6050,"TargetStructureID":6169,"Label":"6050-6169 via Adherens from 127012 -> 127013, 127061 -> 127062, 127065 -> 127064","Type":"Adherens","Directional":false,"Links":[{"SourceID":127012,"TargetID":127013,"Directional":false},{"SourceID":127061,"TargetID":127062,"Directional":false},{"SourceID":127065,"TargetID":127064,"Directional":false}]},{"ID":3674,"SourceStructureID":6050,"TargetStructureID":6169,"Label":"6050-6169 via Gap Junction from 29709 -> 29708, 101828 -> 24647, 114326 -> 114325","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29709,"TargetID":29708,"Directional":false},{"SourceID":101828,"TargetID":24647,"Directional":false},{"SourceID":114326,"TargetID":114325,"Directional":false}]},{"ID":3675,"SourceStructureID":6300,"TargetStructureID":6050,"Label":"6300-6050 via Adherens from 127096 -> 127097, 127098 -> 127099","Type":"Adherens","Directional":false,"Links":[{"SourceID":127096,"TargetID":127097,"Directional":false},{"SourceID":127098,"TargetID":127099,"Directional":false}]},{"ID":3676,"SourceStructureID":7113,"TargetStructureID":6050,"Label":"7113-6050 via Adherens from 127191 -> 127190, 127245 -> 127244","Type":"Adherens","Directional":false,"Links":[{"SourceID":127191,"TargetID":127190,"Directional":false},{"SourceID":127245,"TargetID":127244,"Directional":false}]},{"ID":3677,"SourceStructureID":7113,"TargetStructureID":6050,"Label":"7113-6050 via Gap Junction from 35953 -> 35952, 35954 -> 29716, 51680 -> 51681, 113574 -> 113573, 113875 -> 113874","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35953,"TargetID":35952,"Directional":false},{"SourceID":35954,"TargetID":29716,"Directional":false},{"SourceID":51680,"TargetID":51681,"Directional":false},{"SourceID":113574,"TargetID":113573,"Directional":false},{"SourceID":113875,"TargetID":113874,"Directional":false}]},{"ID":3678,"SourceStructureID":7147,"TargetStructureID":6050,"Label":"7147-6050 via Adherens from 127658 -> 127657","Type":"Adherens","Directional":false,"Links":[{"SourceID":127658,"TargetID":127657,"Directional":false}]},{"ID":3679,"SourceStructureID":7147,"TargetStructureID":6050,"Label":"7147-6050 via Gap Junction from 51917 -> 51916, 114007 -> 114008, 114375 -> 114376","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51917,"TargetID":51916,"Directional":false},{"SourceID":114007,"TargetID":114008,"Directional":false},{"SourceID":114375,"TargetID":114376,"Directional":false}]},{"ID":3680,"SourceStructureID":9769,"TargetStructureID":6050,"Label":"9769-6050 via Unknown from 126971 -> 126970, 127630 -> 127631","Type":"Unknown","Directional":false,"Links":[{"SourceID":126971,"TargetID":126970,"Directional":false},{"SourceID":127630,"TargetID":127631,"Directional":false}]},{"ID":3681,"SourceStructureID":6050,"TargetStructureID":22974,"Label":"6050-22974 via Adherens from 127638 -> 127639","Type":"Adherens","Directional":false,"Links":[{"SourceID":127638,"TargetID":127639,"Directional":false}]},{"ID":3682,"SourceStructureID":6050,"TargetStructureID":32945,"Label":"6050-32945 via Unknown from 127027 -> 127028","Type":"Unknown","Directional":false,"Links":[{"SourceID":127027,"TargetID":127028,"Directional":false}]},{"ID":3683,"SourceStructureID":6050,"TargetStructureID":38302,"Label":"6050-38302 via Adherens from 127349 -> 127350","Type":"Adherens","Directional":false,"Links":[{"SourceID":127349,"TargetID":127350,"Directional":false}]},{"ID":3684,"SourceStructureID":38307,"TargetStructureID":6050,"Label":"38307-6050 via Adherens from 127282 -> 127281","Type":"Adherens","Directional":false,"Links":[{"SourceID":127282,"TargetID":127281,"Directional":false}]},{"ID":3685,"SourceStructureID":56841,"TargetStructureID":6050,"Label":"56841-6050 via Unknown from 127595 -> 127594","Type":"Unknown","Directional":false,"Links":[{"SourceID":127595,"TargetID":127594,"Directional":false}]},{"ID":3686,"SourceStructureID":6050,"TargetStructureID":57063,"Label":"6050-57063 via Unknown from 51657 -> 113871","Type":"Unknown","Directional":false,"Links":[{"SourceID":51657,"TargetID":113871,"Directional":false}]},{"ID":3687,"SourceStructureID":6050,"TargetStructureID":57064,"Label":"6050-57064 via Unknown from 119688 -> 128924, 127128 -> 127129, 127219 -> 113872, 127221 -> 127220, 127436 -> 127435, 128928 -> 128927, 136478 -> 127102","Type":"Unknown","Directional":false,"Links":[{"SourceID":119688,"TargetID":128924,"Directional":false},{"SourceID":127128,"TargetID":127129,"Directional":false},{"SourceID":127219,"TargetID":113872,"Directional":false},{"SourceID":127221,"TargetID":127220,"Directional":false},{"SourceID":127436,"TargetID":127435,"Directional":false},{"SourceID":128928,"TargetID":128927,"Directional":false},{"SourceID":136478,"TargetID":127102,"Directional":false}]},{"ID":3688,"SourceStructureID":6050,"TargetStructureID":70219,"Label":"6050-70219 via Unknown from 127040 -> 127041","Type":"Unknown","Directional":false,"Links":[{"SourceID":127040,"TargetID":127041,"Directional":false}]},{"ID":3689,"SourceStructureID":6050,"TargetStructureID":77658,"Label":"6050-77658 via Unknown from 126989 -> 126988","Type":"Unknown","Directional":false,"Links":[{"SourceID":126989,"TargetID":126988,"Directional":false}]},{"ID":3690,"SourceStructureID":82091,"TargetStructureID":6050,"Label":"82091-6050 via Unknown from 126997 -> 126996","Type":"Unknown","Directional":false,"Links":[{"SourceID":126997,"TargetID":126996,"Directional":false}]},{"ID":3691,"SourceStructureID":91867,"TargetStructureID":6050,"Label":"91867-6050 via Adherens from 127230 -> 127231, 127233 -> 127234","Type":"Adherens","Directional":false,"Links":[{"SourceID":127230,"TargetID":127231,"Directional":false},{"SourceID":127233,"TargetID":127234,"Directional":false}]},{"ID":3692,"SourceStructureID":6050,"TargetStructureID":91867,"Label":"6050-91867 via Unknown from 113537 -> 128989, 113561 -> 113559","Type":"Unknown","Directional":false,"Links":[{"SourceID":113537,"TargetID":128989,"Directional":false},{"SourceID":113561,"TargetID":113559,"Directional":false}]},{"ID":3693,"SourceStructureID":6050,"TargetStructureID":105188,"Label":"6050-105188 via Unknown from 127481 -> 127482","Type":"Unknown","Directional":false,"Links":[{"SourceID":127481,"TargetID":127482,"Directional":false}]},{"ID":3694,"SourceStructureID":6050,"TargetStructureID":113939,"Label":"6050-113939 via Adherens from 119464 -> 119463, 127462 -> 127463","Type":"Adherens","Directional":false,"Links":[{"SourceID":119464,"TargetID":119463,"Directional":false},{"SourceID":127462,"TargetID":127463,"Directional":false}]},{"ID":3695,"SourceStructureID":113939,"TargetStructureID":6050,"Label":"113939-6050 via Unknown from 119462 -> 119460","Type":"Unknown","Directional":false,"Links":[{"SourceID":119462,"TargetID":119460,"Directional":false}]},{"ID":3696,"SourceStructureID":6050,"TargetStructureID":113965,"Label":"6050-113965 via Unknown from 119465 -> 119466","Type":"Unknown","Directional":false,"Links":[{"SourceID":119465,"TargetID":119466,"Directional":false}]},{"ID":3697,"SourceStructureID":114230,"TargetStructureID":6050,"Label":"114230-6050 via Unknown from 114231 -> 56067, 127544 -> 127545","Type":"Unknown","Directional":false,"Links":[{"SourceID":114231,"TargetID":56067,"Directional":false},{"SourceID":127544,"TargetID":127545,"Directional":false}]},{"ID":3698,"SourceStructureID":6050,"TargetStructureID":114242,"Label":"6050-114242 via Unknown from 119468 -> 119467","Type":"Unknown","Directional":false,"Links":[{"SourceID":119468,"TargetID":119467,"Directional":false}]},{"ID":3699,"SourceStructureID":6050,"TargetStructureID":114259,"Label":"6050-114259 via Unknown from 127655 -> 127656","Type":"Unknown","Directional":false,"Links":[{"SourceID":127655,"TargetID":127656,"Directional":false}]},{"ID":3700,"SourceStructureID":120956,"TargetStructureID":6050,"Label":"120956-6050 via Unknown from 127252 -> 127251","Type":"Unknown","Directional":false,"Links":[{"SourceID":127252,"TargetID":127251,"Directional":false}]},{"ID":3701,"SourceStructureID":6050,"TargetStructureID":124198,"Label":"6050-124198 via Unknown from 127288 -> 127289","Type":"Unknown","Directional":false,"Links":[{"SourceID":127288,"TargetID":127289,"Directional":false}]},{"ID":3702,"SourceStructureID":6050,"TargetStructureID":127148,"Label":"6050-127148 via Unknown from 127150 -> 127151","Type":"Unknown","Directional":false,"Links":[{"SourceID":127150,"TargetID":127151,"Directional":false}]},{"ID":3703,"SourceStructureID":128961,"TargetStructureID":6050,"Label":"128961-6050 via Unknown from 128962 -> 128960","Type":"Unknown","Directional":false,"Links":[{"SourceID":128962,"TargetID":128960,"Directional":false}]},{"ID":3704,"SourceStructureID":6115,"TargetStructureID":6115,"Label":"6115-6115 via Gap Junction from 16063 -> 55784, 72770 -> 72769","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16063,"TargetID":55784,"Directional":false},{"SourceID":72770,"TargetID":72769,"Directional":false}]},{"ID":3705,"SourceStructureID":6115,"TargetStructureID":6169,"Label":"6115-6169 via Gap Junction from 24649 -> 24648, 55853 -> 55852, 72533 -> 72532, 72675 -> 72676, 73194 -> 73193, 135173 -> 135172","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24649,"TargetID":24648,"Directional":false},{"SourceID":55853,"TargetID":55852,"Directional":false},{"SourceID":72533,"TargetID":72532,"Directional":false},{"SourceID":72675,"TargetID":72676,"Directional":false},{"SourceID":73194,"TargetID":73193,"Directional":false},{"SourceID":135173,"TargetID":135172,"Directional":false}]},{"ID":3706,"SourceStructureID":7113,"TargetStructureID":6115,"Label":"7113-6115 via Adherens from 135307 -> 135306","Type":"Adherens","Directional":false,"Links":[{"SourceID":135307,"TargetID":135306,"Directional":false}]},{"ID":3707,"SourceStructureID":6115,"TargetStructureID":7113,"Label":"6115-7113 via Gap Junction from 72214 -> 72213, 73879 -> 73880, 73935 -> 80966, 74172 -> 81891","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":72214,"TargetID":72213,"Directional":false},{"SourceID":73879,"TargetID":73880,"Directional":false},{"SourceID":73935,"TargetID":80966,"Directional":false},{"SourceID":74172,"TargetID":81891,"Directional":false}]},{"ID":3708,"SourceStructureID":7147,"TargetStructureID":6115,"Label":"7147-6115 via Gap Junction from 52194 -> 52193, 134239 -> 134240, 134252 -> 134253, 134255 -> 134254, 134256 -> 134257","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52194,"TargetID":52193,"Directional":false},{"SourceID":134239,"TargetID":134240,"Directional":false},{"SourceID":134252,"TargetID":134253,"Directional":false},{"SourceID":134255,"TargetID":134254,"Directional":false},{"SourceID":134256,"TargetID":134257,"Directional":false}]},{"ID":3709,"SourceStructureID":6115,"TargetStructureID":8577,"Label":"6115-8577 via Unknown from 73403 -> 73405","Type":"Unknown","Directional":false,"Links":[{"SourceID":73403,"TargetID":73405,"Directional":false}]},{"ID":3710,"SourceStructureID":6115,"TargetStructureID":8579,"Label":"6115-8579 via Adherens from 81173 -> 81174","Type":"Adherens","Directional":false,"Links":[{"SourceID":81173,"TargetID":81174,"Directional":false}]},{"ID":3711,"SourceStructureID":8579,"TargetStructureID":6115,"Label":"8579-6115 via Unknown from 72504 -> 72502, 72534 -> 72536, 72601 -> 72602, 73554 -> 134229","Type":"Unknown","Directional":false,"Links":[{"SourceID":72504,"TargetID":72502,"Directional":false},{"SourceID":72534,"TargetID":72536,"Directional":false},{"SourceID":72601,"TargetID":72602,"Directional":false},{"SourceID":73554,"TargetID":134229,"Directional":false}]},{"ID":3712,"SourceStructureID":6115,"TargetStructureID":8720,"Label":"6115-8720 via Unknown from 72944 -> 72945, 127791 -> 73209","Type":"Unknown","Directional":false,"Links":[{"SourceID":72944,"TargetID":72945,"Directional":false},{"SourceID":127791,"TargetID":73209,"Directional":false}]},{"ID":3713,"SourceStructureID":16087,"TargetStructureID":6115,"Label":"16087-6115 via Adherens from 72686 -> 72685, 75422 -> 75421","Type":"Adherens","Directional":false,"Links":[{"SourceID":72686,"TargetID":72685,"Directional":false},{"SourceID":75422,"TargetID":75421,"Directional":false}]},{"ID":3714,"SourceStructureID":6115,"TargetStructureID":18282,"Label":"6115-18282 via Unknown from 73239 -> 73240","Type":"Unknown","Directional":false,"Links":[{"SourceID":73239,"TargetID":73240,"Directional":false}]},{"ID":3715,"SourceStructureID":6115,"TargetStructureID":29702,"Label":"6115-29702 via Adherens from 75477 -> 75476, 75542 -> 75543, 75544 -> 75545","Type":"Adherens","Directional":false,"Links":[{"SourceID":75477,"TargetID":75476,"Directional":false},{"SourceID":75542,"TargetID":75543,"Directional":false},{"SourceID":75544,"TargetID":75545,"Directional":false}]},{"ID":3716,"SourceStructureID":6115,"TargetStructureID":29702,"Label":"6115-29702 via Unknown from 73247 -> 73248, 74102 -> 74103","Type":"Unknown","Directional":false,"Links":[{"SourceID":73247,"TargetID":73248,"Directional":false},{"SourceID":74102,"TargetID":74103,"Directional":false}]},{"ID":3717,"SourceStructureID":6115,"TargetStructureID":32970,"Label":"6115-32970 via Unknown from 80944 -> 80943","Type":"Unknown","Directional":false,"Links":[{"SourceID":80944,"TargetID":80943,"Directional":false}]},{"ID":3718,"SourceStructureID":6115,"TargetStructureID":41608,"Label":"6115-41608 via Unknown from 72279 -> 72280, 72806 -> 72805","Type":"Unknown","Directional":false,"Links":[{"SourceID":72279,"TargetID":72280,"Directional":false},{"SourceID":72806,"TargetID":72805,"Directional":false}]},{"ID":3719,"SourceStructureID":61853,"TargetStructureID":6115,"Label":"61853-6115 via Adherens from 81426 -> 73776","Type":"Adherens","Directional":false,"Links":[{"SourceID":81426,"TargetID":73776,"Directional":false}]},{"ID":3720,"SourceStructureID":6115,"TargetStructureID":66323,"Label":"6115-66323 via Adherens from 73129 -> 84324","Type":"Adherens","Directional":false,"Links":[{"SourceID":73129,"TargetID":84324,"Directional":false}]},{"ID":3721,"SourceStructureID":66323,"TargetStructureID":6115,"Label":"66323-6115 via Unknown from 84400 -> 74274","Type":"Unknown","Directional":false,"Links":[{"SourceID":84400,"TargetID":74274,"Directional":false}]},{"ID":3722,"SourceStructureID":6115,"TargetStructureID":66339,"Label":"6115-66339 via Adherens from 84272 -> 84271","Type":"Adherens","Directional":false,"Links":[{"SourceID":84272,"TargetID":84271,"Directional":false}]},{"ID":3723,"SourceStructureID":6115,"TargetStructureID":66339,"Label":"6115-66339 via Unknown from 73131 -> 73132, 76008 -> 76009","Type":"Unknown","Directional":false,"Links":[{"SourceID":73131,"TargetID":73132,"Directional":false},{"SourceID":76008,"TargetID":76009,"Directional":false}]},{"ID":3724,"SourceStructureID":6115,"TargetStructureID":66634,"Label":"6115-66634 via Adherens from 74411 -> 74410","Type":"Adherens","Directional":false,"Links":[{"SourceID":74411,"TargetID":74410,"Directional":false}]},{"ID":3725,"SourceStructureID":6115,"TargetStructureID":66696,"Label":"6115-66696 via Unknown from 72636 -> 72637","Type":"Unknown","Directional":false,"Links":[{"SourceID":72636,"TargetID":72637,"Directional":false}]},{"ID":3726,"SourceStructureID":68548,"TargetStructureID":6115,"Label":"68548-6115 via Unknown from 73563 -> 73046","Type":"Unknown","Directional":false,"Links":[{"SourceID":73563,"TargetID":73046,"Directional":false}]},{"ID":3727,"SourceStructureID":6115,"TargetStructureID":69500,"Label":"6115-69500 via Adherens from 81172 -> 81171","Type":"Adherens","Directional":false,"Links":[{"SourceID":81172,"TargetID":81171,"Directional":false}]},{"ID":3728,"SourceStructureID":69500,"TargetStructureID":6115,"Label":"69500-6115 via Unknown from 72434 -> 72433","Type":"Unknown","Directional":false,"Links":[{"SourceID":72434,"TargetID":72433,"Directional":false}]},{"ID":3729,"SourceStructureID":6115,"TargetStructureID":69503,"Label":"6115-69503 via Adherens from 72416 -> 116708","Type":"Adherens","Directional":false,"Links":[{"SourceID":72416,"TargetID":116708,"Directional":false}]},{"ID":3730,"SourceStructureID":6115,"TargetStructureID":69503,"Label":"6115-69503 via Unknown from 72435 -> 72437","Type":"Unknown","Directional":false,"Links":[{"SourceID":72435,"TargetID":72437,"Directional":false}]},{"ID":3731,"SourceStructureID":6115,"TargetStructureID":71351,"Label":"6115-71351 via Unknown from 74421 -> 74422, 134262 -> 75527","Type":"Unknown","Directional":false,"Links":[{"SourceID":74421,"TargetID":74422,"Directional":false},{"SourceID":134262,"TargetID":75527,"Directional":false}]},{"ID":3732,"SourceStructureID":6115,"TargetStructureID":71615,"Label":"6115-71615 via Unknown from 72918 -> 72919, 75983 -> 81334","Type":"Unknown","Directional":false,"Links":[{"SourceID":72918,"TargetID":72919,"Directional":false},{"SourceID":75983,"TargetID":81334,"Directional":false}]},{"ID":3733,"SourceStructureID":6115,"TargetStructureID":72072,"Label":"6115-72072 via Unknown from 72073 -> 134155","Type":"Unknown","Directional":false,"Links":[{"SourceID":72073,"TargetID":134155,"Directional":false}]},{"ID":3734,"SourceStructureID":6115,"TargetStructureID":72082,"Label":"6115-72082 via Adherens from 72083 -> 72084","Type":"Adherens","Directional":false,"Links":[{"SourceID":72083,"TargetID":72084,"Directional":false}]},{"ID":3735,"SourceStructureID":6115,"TargetStructureID":72162,"Label":"6115-72162 via Adherens from 37633 -> 82093","Type":"Adherens","Directional":false,"Links":[{"SourceID":37633,"TargetID":82093,"Directional":false}]},{"ID":3736,"SourceStructureID":72166,"TargetStructureID":6115,"Label":"72166-6115 via Adherens from 134159 -> 134158","Type":"Adherens","Directional":false,"Links":[{"SourceID":134159,"TargetID":134158,"Directional":false}]},{"ID":3737,"SourceStructureID":72176,"TargetStructureID":6115,"Label":"72176-6115 via Unknown from 81157 -> 75533","Type":"Unknown","Directional":false,"Links":[{"SourceID":81157,"TargetID":75533,"Directional":false}]},{"ID":3738,"SourceStructureID":6115,"TargetStructureID":72180,"Label":"6115-72180 via Adherens from 81152 -> 81151","Type":"Adherens","Directional":false,"Links":[{"SourceID":81152,"TargetID":81151,"Directional":false}]},{"ID":3739,"SourceStructureID":6115,"TargetStructureID":72188,"Label":"6115-72188 via Adherens from 127273 -> 127274","Type":"Adherens","Directional":false,"Links":[{"SourceID":127273,"TargetID":127274,"Directional":false}]},{"ID":3740,"SourceStructureID":6115,"TargetStructureID":72218,"Label":"6115-72218 via Adherens from 72219 -> 72220","Type":"Adherens","Directional":false,"Links":[{"SourceID":72219,"TargetID":72220,"Directional":false}]},{"ID":3741,"SourceStructureID":72223,"TargetStructureID":6115,"Label":"72223-6115 via Unknown from 80930 -> 80931","Type":"Unknown","Directional":false,"Links":[{"SourceID":80930,"TargetID":80931,"Directional":false}]},{"ID":3742,"SourceStructureID":6115,"TargetStructureID":72227,"Label":"6115-72227 via Unknown from 80939 -> 80940","Type":"Unknown","Directional":false,"Links":[{"SourceID":80939,"TargetID":80940,"Directional":false}]},{"ID":3743,"SourceStructureID":6115,"TargetStructureID":72252,"Label":"6115-72252 via Unknown from 72253 -> 72254","Type":"Unknown","Directional":false,"Links":[{"SourceID":72253,"TargetID":72254,"Directional":false}]},{"ID":3744,"SourceStructureID":6115,"TargetStructureID":72299,"Label":"6115-72299 via Unknown from 74743 -> 74744, 134162 -> 134163","Type":"Unknown","Directional":false,"Links":[{"SourceID":74743,"TargetID":74744,"Directional":false},{"SourceID":134162,"TargetID":134163,"Directional":false}]},{"ID":3745,"SourceStructureID":6115,"TargetStructureID":72326,"Label":"6115-72326 via Unknown from 82370 -> 82373","Type":"Unknown","Directional":false,"Links":[{"SourceID":82370,"TargetID":82373,"Directional":false}]},{"ID":3746,"SourceStructureID":6115,"TargetStructureID":72331,"Label":"6115-72331 via Adherens from 73236 -> 73235","Type":"Adherens","Directional":false,"Links":[{"SourceID":73236,"TargetID":73235,"Directional":false}]},{"ID":3747,"SourceStructureID":6115,"TargetStructureID":72363,"Label":"6115-72363 via Unknown from 72374 -> 82038, 73256 -> 73257","Type":"Unknown","Directional":false,"Links":[{"SourceID":72374,"TargetID":82038,"Directional":false},{"SourceID":73256,"TargetID":73257,"Directional":false}]},{"ID":3748,"SourceStructureID":72376,"TargetStructureID":6115,"Label":"72376-6115 via Adherens from 75601 -> 75600","Type":"Adherens","Directional":false,"Links":[{"SourceID":75601,"TargetID":75600,"Directional":false}]},{"ID":3749,"SourceStructureID":72402,"TargetStructureID":6115,"Label":"72402-6115 via Adherens from 80946 -> 80947","Type":"Adherens","Directional":false,"Links":[{"SourceID":80946,"TargetID":80947,"Directional":false}]},{"ID":3750,"SourceStructureID":72438,"TargetStructureID":6115,"Label":"72438-6115 via Unknown from 72439 -> 72440","Type":"Unknown","Directional":false,"Links":[{"SourceID":72439,"TargetID":72440,"Directional":false}]},{"ID":3751,"SourceStructureID":72445,"TargetStructureID":6115,"Label":"72445-6115 via Unknown from 72447 -> 72446","Type":"Unknown","Directional":false,"Links":[{"SourceID":72447,"TargetID":72446,"Directional":false}]},{"ID":3752,"SourceStructureID":72486,"TargetStructureID":6115,"Label":"72486-6115 via Unknown from 72487 -> 72488","Type":"Unknown","Directional":false,"Links":[{"SourceID":72487,"TargetID":72488,"Directional":false}]},{"ID":3753,"SourceStructureID":6115,"TargetStructureID":72496,"Label":"6115-72496 via Unknown from 72499 -> 72500","Type":"Unknown","Directional":false,"Links":[{"SourceID":72499,"TargetID":72500,"Directional":false}]},{"ID":3754,"SourceStructureID":6115,"TargetStructureID":72505,"Label":"6115-72505 via Adherens from 72498 -> 72509, 72508 -> 72507","Type":"Adherens","Directional":false,"Links":[{"SourceID":72498,"TargetID":72509,"Directional":false},{"SourceID":72508,"TargetID":72507,"Directional":false}]},{"ID":3755,"SourceStructureID":72518,"TargetStructureID":6115,"Label":"72518-6115 via Unknown from 82311 -> 135176, 82313 -> 82312","Type":"Unknown","Directional":false,"Links":[{"SourceID":82311,"TargetID":135176,"Directional":false},{"SourceID":82313,"TargetID":82312,"Directional":false}]},{"ID":3756,"SourceStructureID":72523,"TargetStructureID":6115,"Label":"72523-6115 via Unknown from 75606 -> 75605","Type":"Unknown","Directional":false,"Links":[{"SourceID":75606,"TargetID":75605,"Directional":false}]},{"ID":3757,"SourceStructureID":6115,"TargetStructureID":72526,"Label":"6115-72526 via Adherens from 72537 -> 72538","Type":"Adherens","Directional":false,"Links":[{"SourceID":72537,"TargetID":72538,"Directional":false}]},{"ID":3758,"SourceStructureID":6115,"TargetStructureID":72539,"Label":"6115-72539 via BC Conventional Synapse from 72541 -> 72540","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":72541,"TargetID":72540,"Directional":false}]},{"ID":3759,"SourceStructureID":6115,"TargetStructureID":72542,"Label":"6115-72542 via Unknown from 75613 -> 75614","Type":"Unknown","Directional":false,"Links":[{"SourceID":75613,"TargetID":75614,"Directional":false}]},{"ID":3760,"SourceStructureID":6115,"TargetStructureID":72556,"Label":"6115-72556 via Unknown from 72558 -> 72557","Type":"Unknown","Directional":false,"Links":[{"SourceID":72558,"TargetID":72557,"Directional":false}]},{"ID":3761,"SourceStructureID":6115,"TargetStructureID":72569,"Label":"6115-72569 via Adherens from 72579 -> 72581","Type":"Adherens","Directional":false,"Links":[{"SourceID":72579,"TargetID":72581,"Directional":false}]},{"ID":3762,"SourceStructureID":72584,"TargetStructureID":6115,"Label":"72584-6115 via Unknown from 72585 -> 72586","Type":"Unknown","Directional":false,"Links":[{"SourceID":72585,"TargetID":72586,"Directional":false}]},{"ID":3763,"SourceStructureID":72592,"TargetStructureID":6115,"Label":"72592-6115 via Unknown from 72597 -> 72596, 72598 -> 72599, 75656 -> 75657","Type":"Unknown","Directional":false,"Links":[{"SourceID":72597,"TargetID":72596,"Directional":false},{"SourceID":72598,"TargetID":72599,"Directional":false},{"SourceID":75656,"TargetID":75657,"Directional":false}]},{"ID":3764,"SourceStructureID":6115,"TargetStructureID":72604,"Label":"6115-72604 via Adherens from 72603 -> 72605, 75659 -> 75660","Type":"Adherens","Directional":false,"Links":[{"SourceID":72603,"TargetID":72605,"Directional":false},{"SourceID":75659,"TargetID":75660,"Directional":false}]},{"ID":3765,"SourceStructureID":72604,"TargetStructureID":6115,"Label":"72604-6115 via Unknown from 72667 -> 72666, 72674 -> 72673, 75669 -> 75670","Type":"Unknown","Directional":false,"Links":[{"SourceID":72667,"TargetID":72666,"Directional":false},{"SourceID":72674,"TargetID":72673,"Directional":false},{"SourceID":75669,"TargetID":75670,"Directional":false}]},{"ID":3766,"SourceStructureID":6115,"TargetStructureID":72612,"Label":"6115-72612 via Unknown from 72611 -> 72613","Type":"Unknown","Directional":false,"Links":[{"SourceID":72611,"TargetID":72613,"Directional":false}]},{"ID":3767,"SourceStructureID":72633,"TargetStructureID":6115,"Label":"72633-6115 via Unknown from 72634 -> 72635","Type":"Unknown","Directional":false,"Links":[{"SourceID":72634,"TargetID":72635,"Directional":false}]},{"ID":3768,"SourceStructureID":6115,"TargetStructureID":72643,"Label":"6115-72643 via Unknown from 73262 -> 73263","Type":"Unknown","Directional":false,"Links":[{"SourceID":73262,"TargetID":73263,"Directional":false}]},{"ID":3769,"SourceStructureID":6115,"TargetStructureID":72658,"Label":"6115-72658 via Unknown from 72663 -> 72662","Type":"Unknown","Directional":false,"Links":[{"SourceID":72663,"TargetID":72662,"Directional":false}]},{"ID":3770,"SourceStructureID":72687,"TargetStructureID":6115,"Label":"72687-6115 via Adherens from 72700 -> 72699","Type":"Adherens","Directional":false,"Links":[{"SourceID":72700,"TargetID":72699,"Directional":false}]},{"ID":3771,"SourceStructureID":6115,"TargetStructureID":72687,"Label":"6115-72687 via Unknown from 72703 -> 72704","Type":"Unknown","Directional":false,"Links":[{"SourceID":72703,"TargetID":72704,"Directional":false}]},{"ID":3772,"SourceStructureID":6115,"TargetStructureID":72690,"Label":"6115-72690 via Unknown from 81914 -> 81915","Type":"Unknown","Directional":false,"Links":[{"SourceID":81914,"TargetID":81915,"Directional":false}]},{"ID":3773,"SourceStructureID":6115,"TargetStructureID":72697,"Label":"6115-72697 via Unknown from 72701 -> 72702","Type":"Unknown","Directional":false,"Links":[{"SourceID":72701,"TargetID":72702,"Directional":false}]},{"ID":3774,"SourceStructureID":6115,"TargetStructureID":72712,"Label":"6115-72712 via Unknown from 72720 -> 72721","Type":"Unknown","Directional":false,"Links":[{"SourceID":72720,"TargetID":72721,"Directional":false}]},{"ID":3775,"SourceStructureID":6115,"TargetStructureID":72730,"Label":"6115-72730 via Unknown from 72733 -> 72734","Type":"Unknown","Directional":false,"Links":[{"SourceID":72733,"TargetID":72734,"Directional":false}]},{"ID":3776,"SourceStructureID":72749,"TargetStructureID":6115,"Label":"72749-6115 via Adherens from 72750 -> 72748","Type":"Adherens","Directional":false,"Links":[{"SourceID":72750,"TargetID":72748,"Directional":false}]},{"ID":3777,"SourceStructureID":72751,"TargetStructureID":6115,"Label":"72751-6115 via Unknown from 72752 -> 72753","Type":"Unknown","Directional":false,"Links":[{"SourceID":72752,"TargetID":72753,"Directional":false}]},{"ID":3778,"SourceStructureID":6115,"TargetStructureID":72754,"Label":"6115-72754 via Unknown from 72761 -> 72762","Type":"Unknown","Directional":false,"Links":[{"SourceID":72761,"TargetID":72762,"Directional":false}]},{"ID":3779,"SourceStructureID":6115,"TargetStructureID":72756,"Label":"6115-72756 via Unknown from 72759 -> 72760","Type":"Unknown","Directional":false,"Links":[{"SourceID":72759,"TargetID":72760,"Directional":false}]},{"ID":3780,"SourceStructureID":6115,"TargetStructureID":72765,"Label":"6115-72765 via Unknown from 72764 -> 72767","Type":"Unknown","Directional":false,"Links":[{"SourceID":72764,"TargetID":72767,"Directional":false}]},{"ID":3781,"SourceStructureID":6115,"TargetStructureID":72772,"Label":"6115-72772 via Adherens from 72802 -> 72801","Type":"Adherens","Directional":false,"Links":[{"SourceID":72802,"TargetID":72801,"Directional":false}]},{"ID":3782,"SourceStructureID":6115,"TargetStructureID":72778,"Label":"6115-72778 via Adherens from 72783 -> 72782","Type":"Adherens","Directional":false,"Links":[{"SourceID":72783,"TargetID":72782,"Directional":false}]},{"ID":3783,"SourceStructureID":6115,"TargetStructureID":72784,"Label":"6115-72784 via Unknown from 72790 -> 72791","Type":"Unknown","Directional":false,"Links":[{"SourceID":72790,"TargetID":72791,"Directional":false}]},{"ID":3784,"SourceStructureID":72818,"TargetStructureID":6115,"Label":"72818-6115 via Unknown from 134265 -> 75837","Type":"Unknown","Directional":false,"Links":[{"SourceID":134265,"TargetID":75837,"Directional":false}]},{"ID":3785,"SourceStructureID":72821,"TargetStructureID":6115,"Label":"72821-6115 via Gap Junction from 72822 -> 55805","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":72822,"TargetID":55805,"Directional":false}]},{"ID":3786,"SourceStructureID":6115,"TargetStructureID":72837,"Label":"6115-72837 via Unknown from 72838 -> 72839","Type":"Unknown","Directional":false,"Links":[{"SourceID":72838,"TargetID":72839,"Directional":false}]},{"ID":3787,"SourceStructureID":6115,"TargetStructureID":72844,"Label":"6115-72844 via Unknown from 75980 -> 75981","Type":"Unknown","Directional":false,"Links":[{"SourceID":75980,"TargetID":75981,"Directional":false}]},{"ID":3788,"SourceStructureID":72847,"TargetStructureID":6115,"Label":"72847-6115 via Adherens from 72911 -> 72910","Type":"Adherens","Directional":false,"Links":[{"SourceID":72911,"TargetID":72910,"Directional":false}]},{"ID":3789,"SourceStructureID":6115,"TargetStructureID":72901,"Label":"6115-72901 via Unknown from 75978 -> 75979","Type":"Unknown","Directional":false,"Links":[{"SourceID":75978,"TargetID":75979,"Directional":false}]},{"ID":3790,"SourceStructureID":6115,"TargetStructureID":72915,"Label":"6115-72915 via Unknown from 80941 -> 80942","Type":"Unknown","Directional":false,"Links":[{"SourceID":80941,"TargetID":80942,"Directional":false}]},{"ID":3791,"SourceStructureID":72920,"TargetStructureID":6115,"Label":"72920-6115 via Unknown from 82300 -> 75984","Type":"Unknown","Directional":false,"Links":[{"SourceID":82300,"TargetID":75984,"Directional":false}]},{"ID":3792,"SourceStructureID":6115,"TargetStructureID":72930,"Label":"6115-72930 via Unknown from 73039 -> 82410, 81345 -> 81346","Type":"Unknown","Directional":false,"Links":[{"SourceID":73039,"TargetID":82410,"Directional":false},{"SourceID":81345,"TargetID":81346,"Directional":false}]},{"ID":3793,"SourceStructureID":6115,"TargetStructureID":72936,"Label":"6115-72936 via Adherens from 76021 -> 76022","Type":"Adherens","Directional":false,"Links":[{"SourceID":76021,"TargetID":76022,"Directional":false}]},{"ID":3794,"SourceStructureID":72939,"TargetStructureID":6115,"Label":"72939-6115 via Adherens from 76020 -> 76019","Type":"Adherens","Directional":false,"Links":[{"SourceID":76020,"TargetID":76019,"Directional":false}]},{"ID":3795,"SourceStructureID":72941,"TargetStructureID":6115,"Label":"72941-6115 via Gap Junction from 72942 -> 72943","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":72942,"TargetID":72943,"Directional":false}]},{"ID":3796,"SourceStructureID":72964,"TargetStructureID":6115,"Label":"72964-6115 via Adherens from 72971 -> 72972","Type":"Adherens","Directional":false,"Links":[{"SourceID":72971,"TargetID":72972,"Directional":false}]},{"ID":3797,"SourceStructureID":6115,"TargetStructureID":72964,"Label":"6115-72964 via Unknown from 74306 -> 74307","Type":"Unknown","Directional":false,"Links":[{"SourceID":74306,"TargetID":74307,"Directional":false}]},{"ID":3798,"SourceStructureID":6115,"TargetStructureID":72969,"Label":"6115-72969 via Unknown from 73041 -> 73042","Type":"Unknown","Directional":false,"Links":[{"SourceID":73041,"TargetID":73042,"Directional":false}]},{"ID":3799,"SourceStructureID":6115,"TargetStructureID":72985,"Label":"6115-72985 via Unknown from 134269 -> 134270","Type":"Unknown","Directional":false,"Links":[{"SourceID":134269,"TargetID":134270,"Directional":false}]},{"ID":3800,"SourceStructureID":6115,"TargetStructureID":72987,"Label":"6115-72987 via Unknown from 73002 -> 73003, 73049 -> 73050, 75992 -> 75993","Type":"Unknown","Directional":false,"Links":[{"SourceID":73002,"TargetID":73003,"Directional":false},{"SourceID":73049,"TargetID":73050,"Directional":false},{"SourceID":75992,"TargetID":75993,"Directional":false}]},{"ID":3801,"SourceStructureID":6115,"TargetStructureID":73010,"Label":"6115-73010 via Unknown from 73009 -> 73011","Type":"Unknown","Directional":false,"Links":[{"SourceID":73009,"TargetID":73011,"Directional":false}]},{"ID":3802,"SourceStructureID":6115,"TargetStructureID":73069,"Label":"6115-73069 via Unknown from 73070 -> 73071","Type":"Unknown","Directional":false,"Links":[{"SourceID":73070,"TargetID":73071,"Directional":false}]},{"ID":3803,"SourceStructureID":6115,"TargetStructureID":73086,"Label":"6115-73086 via Unknown from 75998 -> 75999","Type":"Unknown","Directional":false,"Links":[{"SourceID":75998,"TargetID":75999,"Directional":false}]},{"ID":3804,"SourceStructureID":6115,"TargetStructureID":73096,"Label":"6115-73096 via Adherens from 134221 -> 134222","Type":"Adherens","Directional":false,"Links":[{"SourceID":134221,"TargetID":134222,"Directional":false}]},{"ID":3805,"SourceStructureID":6115,"TargetStructureID":73096,"Label":"6115-73096 via Unknown from 73097 -> 73098","Type":"Unknown","Directional":false,"Links":[{"SourceID":73097,"TargetID":73098,"Directional":false}]},{"ID":3806,"SourceStructureID":73118,"TargetStructureID":6115,"Label":"73118-6115 via Adherens from 76006 -> 76005","Type":"Adherens","Directional":false,"Links":[{"SourceID":76006,"TargetID":76005,"Directional":false}]},{"ID":3807,"SourceStructureID":73144,"TargetStructureID":6115,"Label":"73144-6115 via Adherens from 73154 -> 73155, 116698 -> 73413","Type":"Adherens","Directional":false,"Links":[{"SourceID":73154,"TargetID":73155,"Directional":false},{"SourceID":116698,"TargetID":73413,"Directional":false}]},{"ID":3808,"SourceStructureID":6115,"TargetStructureID":73173,"Label":"6115-73173 via Unknown from 73172 -> 73174","Type":"Unknown","Directional":false,"Links":[{"SourceID":73172,"TargetID":73174,"Directional":false}]},{"ID":3809,"SourceStructureID":6115,"TargetStructureID":73197,"Label":"6115-73197 via Unknown from 73206 -> 73207","Type":"Unknown","Directional":false,"Links":[{"SourceID":73206,"TargetID":73207,"Directional":false}]},{"ID":3810,"SourceStructureID":73212,"TargetStructureID":6115,"Label":"73212-6115 via Adherens from 80911 -> 80910","Type":"Adherens","Directional":false,"Links":[{"SourceID":80911,"TargetID":80910,"Directional":false}]},{"ID":3811,"SourceStructureID":6115,"TargetStructureID":73270,"Label":"6115-73270 via Unknown from 73269 -> 73271","Type":"Unknown","Directional":false,"Links":[{"SourceID":73269,"TargetID":73271,"Directional":false}]},{"ID":3812,"SourceStructureID":73273,"TargetStructureID":6115,"Label":"73273-6115 via Adherens from 73288 -> 73286","Type":"Adherens","Directional":false,"Links":[{"SourceID":73288,"TargetID":73286,"Directional":false}]},{"ID":3813,"SourceStructureID":73273,"TargetStructureID":6115,"Label":"73273-6115 via Unknown from 73287 -> 73285","Type":"Unknown","Directional":false,"Links":[{"SourceID":73287,"TargetID":73285,"Directional":false}]},{"ID":3814,"SourceStructureID":73275,"TargetStructureID":6115,"Label":"73275-6115 via Unknown from 82045 -> 73284","Type":"Unknown","Directional":false,"Links":[{"SourceID":82045,"TargetID":73284,"Directional":false}]},{"ID":3815,"SourceStructureID":6115,"TargetStructureID":73280,"Label":"6115-73280 via Unknown from 73281 -> 73282","Type":"Unknown","Directional":false,"Links":[{"SourceID":73281,"TargetID":73282,"Directional":false}]},{"ID":3816,"SourceStructureID":6115,"TargetStructureID":73293,"Label":"6115-73293 via Unknown from 73296 -> 73298","Type":"Unknown","Directional":false,"Links":[{"SourceID":73296,"TargetID":73298,"Directional":false}]},{"ID":3817,"SourceStructureID":6115,"TargetStructureID":73313,"Label":"6115-73313 via Adherens from 73318 -> 73319","Type":"Adherens","Directional":false,"Links":[{"SourceID":73318,"TargetID":73319,"Directional":false}]},{"ID":3818,"SourceStructureID":6115,"TargetStructureID":73339,"Label":"6115-73339 via Unknown from 73340 -> 73341","Type":"Unknown","Directional":false,"Links":[{"SourceID":73340,"TargetID":73341,"Directional":false}]},{"ID":3819,"SourceStructureID":73343,"TargetStructureID":6115,"Label":"73343-6115 via Unknown from 73346 -> 73347","Type":"Unknown","Directional":false,"Links":[{"SourceID":73346,"TargetID":73347,"Directional":false}]},{"ID":3820,"SourceStructureID":73368,"TargetStructureID":6115,"Label":"73368-6115 via Unknown from 73370 -> 73369","Type":"Unknown","Directional":false,"Links":[{"SourceID":73370,"TargetID":73369,"Directional":false}]},{"ID":3821,"SourceStructureID":6115,"TargetStructureID":73439,"Label":"6115-73439 via Unknown from 73441 -> 73442","Type":"Unknown","Directional":false,"Links":[{"SourceID":73441,"TargetID":73442,"Directional":false}]},{"ID":3822,"SourceStructureID":6115,"TargetStructureID":73488,"Label":"6115-73488 via Unknown from 73489 -> 73490","Type":"Unknown","Directional":false,"Links":[{"SourceID":73489,"TargetID":73490,"Directional":false}]},{"ID":3823,"SourceStructureID":73503,"TargetStructureID":6115,"Label":"73503-6115 via Unknown from 73504 -> 73505","Type":"Unknown","Directional":false,"Links":[{"SourceID":73504,"TargetID":73505,"Directional":false}]},{"ID":3824,"SourceStructureID":6115,"TargetStructureID":73524,"Label":"6115-73524 via Adherens from 73526 -> 73525","Type":"Adherens","Directional":false,"Links":[{"SourceID":73526,"TargetID":73525,"Directional":false}]},{"ID":3825,"SourceStructureID":6115,"TargetStructureID":73524,"Label":"6115-73524 via Unknown from 73536 -> 73537","Type":"Unknown","Directional":false,"Links":[{"SourceID":73536,"TargetID":73537,"Directional":false}]},{"ID":3826,"SourceStructureID":73564,"TargetStructureID":6115,"Label":"73564-6115 via Unknown from 74180 -> 74181, 74183 -> 74184","Type":"Unknown","Directional":false,"Links":[{"SourceID":74180,"TargetID":74181,"Directional":false},{"SourceID":74183,"TargetID":74184,"Directional":false}]},{"ID":3827,"SourceStructureID":6115,"TargetStructureID":73772,"Label":"6115-73772 via Unknown from 73778 -> 73779","Type":"Unknown","Directional":false,"Links":[{"SourceID":73778,"TargetID":73779,"Directional":false}]},{"ID":3828,"SourceStructureID":6115,"TargetStructureID":73796,"Label":"6115-73796 via Unknown from 73798 -> 73799","Type":"Unknown","Directional":false,"Links":[{"SourceID":73798,"TargetID":73799,"Directional":false}]},{"ID":3829,"SourceStructureID":73804,"TargetStructureID":6115,"Label":"73804-6115 via Unknown from 74201 -> 74200","Type":"Unknown","Directional":false,"Links":[{"SourceID":74201,"TargetID":74200,"Directional":false}]},{"ID":3830,"SourceStructureID":6115,"TargetStructureID":73807,"Label":"6115-73807 via Unknown from 74707 -> 82108","Type":"Unknown","Directional":false,"Links":[{"SourceID":74707,"TargetID":82108,"Directional":false}]},{"ID":3831,"SourceStructureID":73825,"TargetStructureID":6115,"Label":"73825-6115 via Unknown from 75844 -> 75843","Type":"Unknown","Directional":false,"Links":[{"SourceID":75844,"TargetID":75843,"Directional":false}]},{"ID":3832,"SourceStructureID":6115,"TargetStructureID":73846,"Label":"6115-73846 via Adherens from 73850 -> 73849","Type":"Adherens","Directional":false,"Links":[{"SourceID":73850,"TargetID":73849,"Directional":false}]},{"ID":3833,"SourceStructureID":73864,"TargetStructureID":6115,"Label":"73864-6115 via Unknown from 81335 -> 73865","Type":"Unknown","Directional":false,"Links":[{"SourceID":81335,"TargetID":73865,"Directional":false}]},{"ID":3834,"SourceStructureID":6115,"TargetStructureID":73868,"Label":"6115-73868 via Unknown from 73960 -> 134235","Type":"Unknown","Directional":false,"Links":[{"SourceID":73960,"TargetID":134235,"Directional":false}]},{"ID":3835,"SourceStructureID":6115,"TargetStructureID":73871,"Label":"6115-73871 via Unknown from 73876 -> 134230","Type":"Unknown","Directional":false,"Links":[{"SourceID":73876,"TargetID":134230,"Directional":false}]},{"ID":3836,"SourceStructureID":73921,"TargetStructureID":6115,"Label":"73921-6115 via Unknown from 134234 -> 73922","Type":"Unknown","Directional":false,"Links":[{"SourceID":134234,"TargetID":73922,"Directional":false}]},{"ID":3837,"SourceStructureID":6115,"TargetStructureID":73937,"Label":"6115-73937 via Adherens from 73936 -> 73938","Type":"Adherens","Directional":false,"Links":[{"SourceID":73936,"TargetID":73938,"Directional":false}]},{"ID":3838,"SourceStructureID":73979,"TargetStructureID":6115,"Label":"73979-6115 via Adherens from 73980 -> 73981","Type":"Adherens","Directional":false,"Links":[{"SourceID":73980,"TargetID":73981,"Directional":false}]},{"ID":3839,"SourceStructureID":6115,"TargetStructureID":74007,"Label":"6115-74007 via Adherens from 80937 -> 80938","Type":"Adherens","Directional":false,"Links":[{"SourceID":80937,"TargetID":80938,"Directional":false}]},{"ID":3840,"SourceStructureID":74008,"TargetStructureID":6115,"Label":"74008-6115 via Unknown from 134236 -> 74011","Type":"Unknown","Directional":false,"Links":[{"SourceID":134236,"TargetID":74011,"Directional":false}]},{"ID":3841,"SourceStructureID":6115,"TargetStructureID":74039,"Label":"6115-74039 via Unknown from 74040 -> 134237","Type":"Unknown","Directional":false,"Links":[{"SourceID":74040,"TargetID":134237,"Directional":false}]},{"ID":3842,"SourceStructureID":74064,"TargetStructureID":6115,"Label":"74064-6115 via Adherens from 74112 -> 74111","Type":"Adherens","Directional":false,"Links":[{"SourceID":74112,"TargetID":74111,"Directional":false}]},{"ID":3843,"SourceStructureID":74082,"TargetStructureID":6115,"Label":"74082-6115 via Adherens from 74108 -> 74109","Type":"Adherens","Directional":false,"Links":[{"SourceID":74108,"TargetID":74109,"Directional":false}]},{"ID":3844,"SourceStructureID":6115,"TargetStructureID":74082,"Label":"6115-74082 via Unknown from 74084 -> 74085","Type":"Unknown","Directional":false,"Links":[{"SourceID":74084,"TargetID":74085,"Directional":false}]},{"ID":3845,"SourceStructureID":6115,"TargetStructureID":74094,"Label":"6115-74094 via Unknown from 74095 -> 74096","Type":"Unknown","Directional":false,"Links":[{"SourceID":74095,"TargetID":74096,"Directional":false}]},{"ID":3846,"SourceStructureID":6115,"TargetStructureID":74104,"Label":"6115-74104 via Unknown from 74105 -> 74106","Type":"Unknown","Directional":false,"Links":[{"SourceID":74105,"TargetID":74106,"Directional":false}]},{"ID":3847,"SourceStructureID":6115,"TargetStructureID":74279,"Label":"6115-74279 via Adherens from 80948 -> 80949","Type":"Adherens","Directional":false,"Links":[{"SourceID":80948,"TargetID":80949,"Directional":false}]},{"ID":3848,"SourceStructureID":74308,"TargetStructureID":6115,"Label":"74308-6115 via Unknown from 134238 -> 74311","Type":"Unknown","Directional":false,"Links":[{"SourceID":134238,"TargetID":74311,"Directional":false}]},{"ID":3849,"SourceStructureID":74313,"TargetStructureID":6115,"Label":"74313-6115 via Adherens from 74314 -> 74312","Type":"Adherens","Directional":false,"Links":[{"SourceID":74314,"TargetID":74312,"Directional":false}]},{"ID":3850,"SourceStructureID":6115,"TargetStructureID":74328,"Label":"6115-74328 via Unknown from 74329 -> 74330","Type":"Unknown","Directional":false,"Links":[{"SourceID":74329,"TargetID":74330,"Directional":false}]},{"ID":3851,"SourceStructureID":74402,"TargetStructureID":6115,"Label":"74402-6115 via Adherens from 74405 -> 74406","Type":"Adherens","Directional":false,"Links":[{"SourceID":74405,"TargetID":74406,"Directional":false}]},{"ID":3852,"SourceStructureID":74469,"TargetStructureID":6115,"Label":"74469-6115 via Adherens from 134245 -> 134244","Type":"Adherens","Directional":false,"Links":[{"SourceID":134245,"TargetID":134244,"Directional":false}]},{"ID":3853,"SourceStructureID":6115,"TargetStructureID":74471,"Label":"6115-74471 via Unknown from 75871 -> 75872","Type":"Unknown","Directional":false,"Links":[{"SourceID":75871,"TargetID":75872,"Directional":false}]},{"ID":3854,"SourceStructureID":74485,"TargetStructureID":6115,"Label":"74485-6115 via Unknown from 134267 -> 75875","Type":"Unknown","Directional":false,"Links":[{"SourceID":134267,"TargetID":75875,"Directional":false}]},{"ID":3855,"SourceStructureID":6115,"TargetStructureID":74489,"Label":"6115-74489 via Unknown from 75876 -> 75877","Type":"Unknown","Directional":false,"Links":[{"SourceID":75876,"TargetID":75877,"Directional":false}]},{"ID":3856,"SourceStructureID":6115,"TargetStructureID":74502,"Label":"6115-74502 via Adherens from 74504 -> 74503","Type":"Adherens","Directional":false,"Links":[{"SourceID":74504,"TargetID":74503,"Directional":false}]},{"ID":3857,"SourceStructureID":74508,"TargetStructureID":6115,"Label":"74508-6115 via Adherens from 74510 -> 74509","Type":"Adherens","Directional":false,"Links":[{"SourceID":74510,"TargetID":74509,"Directional":false}]},{"ID":3858,"SourceStructureID":74511,"TargetStructureID":6115,"Label":"74511-6115 via Adherens from 74541 -> 74542","Type":"Adherens","Directional":false,"Links":[{"SourceID":74541,"TargetID":74542,"Directional":false}]},{"ID":3859,"SourceStructureID":6115,"TargetStructureID":74545,"Label":"6115-74545 via Unknown from 74544 -> 74546","Type":"Unknown","Directional":false,"Links":[{"SourceID":74544,"TargetID":74546,"Directional":false}]},{"ID":3860,"SourceStructureID":74655,"TargetStructureID":6115,"Label":"74655-6115 via Adherens from 74656 -> 74657","Type":"Adherens","Directional":false,"Links":[{"SourceID":74656,"TargetID":74657,"Directional":false}]},{"ID":3861,"SourceStructureID":74687,"TargetStructureID":6115,"Label":"74687-6115 via Unknown from 74692 -> 74693, 74758 -> 74757","Type":"Unknown","Directional":false,"Links":[{"SourceID":74692,"TargetID":74693,"Directional":false},{"SourceID":74758,"TargetID":74757,"Directional":false}]},{"ID":3862,"SourceStructureID":6115,"TargetStructureID":74699,"Label":"6115-74699 via Unknown from 74789 -> 76190","Type":"Unknown","Directional":false,"Links":[{"SourceID":74789,"TargetID":76190,"Directional":false}]},{"ID":3863,"SourceStructureID":6115,"TargetStructureID":74706,"Label":"6115-74706 via Unknown from 74709 -> 74710","Type":"Unknown","Directional":false,"Links":[{"SourceID":74709,"TargetID":74710,"Directional":false}]},{"ID":3864,"SourceStructureID":6115,"TargetStructureID":74714,"Label":"6115-74714 via Adherens from 74716 -> 74717","Type":"Adherens","Directional":false,"Links":[{"SourceID":74716,"TargetID":74717,"Directional":false}]},{"ID":3865,"SourceStructureID":6115,"TargetStructureID":74749,"Label":"6115-74749 via Adherens from 74752 -> 74753","Type":"Adherens","Directional":false,"Links":[{"SourceID":74752,"TargetID":74753,"Directional":false}]},{"ID":3866,"SourceStructureID":6115,"TargetStructureID":74756,"Label":"6115-74756 via Unknown from 74759 -> 74760","Type":"Unknown","Directional":false,"Links":[{"SourceID":74759,"TargetID":74760,"Directional":false}]},{"ID":3867,"SourceStructureID":6115,"TargetStructureID":74775,"Label":"6115-74775 via Unknown from 134248 -> 134247","Type":"Unknown","Directional":false,"Links":[{"SourceID":134248,"TargetID":134247,"Directional":false}]},{"ID":3868,"SourceStructureID":6115,"TargetStructureID":74783,"Label":"6115-74783 via Unknown from 74782 -> 74784","Type":"Unknown","Directional":false,"Links":[{"SourceID":74782,"TargetID":74784,"Directional":false}]},{"ID":3869,"SourceStructureID":6115,"TargetStructureID":74797,"Label":"6115-74797 via Unknown from 74796 -> 134249","Type":"Unknown","Directional":false,"Links":[{"SourceID":74796,"TargetID":134249,"Directional":false}]},{"ID":3870,"SourceStructureID":6115,"TargetStructureID":74807,"Label":"6115-74807 via Unknown from 74808 -> 74809","Type":"Unknown","Directional":false,"Links":[{"SourceID":74808,"TargetID":74809,"Directional":false}]},{"ID":3871,"SourceStructureID":6115,"TargetStructureID":74812,"Label":"6115-74812 via Unknown from 74813 -> 74814","Type":"Unknown","Directional":false,"Links":[{"SourceID":74813,"TargetID":74814,"Directional":false}]},{"ID":3872,"SourceStructureID":74830,"TargetStructureID":6115,"Label":"74830-6115 via Adherens from 80917 -> 80918","Type":"Adherens","Directional":false,"Links":[{"SourceID":80917,"TargetID":80918,"Directional":false}]},{"ID":3873,"SourceStructureID":74834,"TargetStructureID":6115,"Label":"74834-6115 via Adherens from 135170 -> 135169","Type":"Adherens","Directional":false,"Links":[{"SourceID":135170,"TargetID":135169,"Directional":false}]},{"ID":3874,"SourceStructureID":74846,"TargetStructureID":6115,"Label":"74846-6115 via Adherens from 74847 -> 74848","Type":"Adherens","Directional":false,"Links":[{"SourceID":74847,"TargetID":74848,"Directional":false}]},{"ID":3875,"SourceStructureID":6115,"TargetStructureID":74994,"Label":"6115-74994 via Adherens from 74996 -> 74997","Type":"Adherens","Directional":false,"Links":[{"SourceID":74996,"TargetID":74997,"Directional":false}]},{"ID":3876,"SourceStructureID":75078,"TargetStructureID":6115,"Label":"75078-6115 via Unknown from 135308 -> 134250","Type":"Unknown","Directional":false,"Links":[{"SourceID":135308,"TargetID":134250,"Directional":false}]},{"ID":3877,"SourceStructureID":6115,"TargetStructureID":75099,"Label":"6115-75099 via Unknown from 75100 -> 80954","Type":"Unknown","Directional":false,"Links":[{"SourceID":75100,"TargetID":80954,"Directional":false}]},{"ID":3878,"SourceStructureID":6115,"TargetStructureID":75141,"Label":"6115-75141 via Unknown from 75142 -> 80955","Type":"Unknown","Directional":false,"Links":[{"SourceID":75142,"TargetID":80955,"Directional":false}]},{"ID":3879,"SourceStructureID":75144,"TargetStructureID":6115,"Label":"75144-6115 via Adherens from 75145 -> 75143","Type":"Adherens","Directional":false,"Links":[{"SourceID":75145,"TargetID":75143,"Directional":false}]},{"ID":3880,"SourceStructureID":75150,"TargetStructureID":6115,"Label":"75150-6115 via Adherens from 75151 -> 75152","Type":"Adherens","Directional":false,"Links":[{"SourceID":75151,"TargetID":75152,"Directional":false}]},{"ID":3881,"SourceStructureID":6115,"TargetStructureID":75189,"Label":"6115-75189 via Unknown from 75203 -> 75204","Type":"Unknown","Directional":false,"Links":[{"SourceID":75203,"TargetID":75204,"Directional":false}]},{"ID":3882,"SourceStructureID":6115,"TargetStructureID":75199,"Label":"6115-75199 via Adherens from 75198 -> 75200","Type":"Adherens","Directional":false,"Links":[{"SourceID":75198,"TargetID":75200,"Directional":false}]},{"ID":3883,"SourceStructureID":75205,"TargetStructureID":6115,"Label":"75205-6115 via Adherens from 116714 -> 80929","Type":"Adherens","Directional":false,"Links":[{"SourceID":116714,"TargetID":80929,"Directional":false}]},{"ID":3884,"SourceStructureID":6115,"TargetStructureID":75223,"Label":"6115-75223 via Adherens from 75222 -> 75224","Type":"Adherens","Directional":false,"Links":[{"SourceID":75222,"TargetID":75224,"Directional":false}]},{"ID":3885,"SourceStructureID":6115,"TargetStructureID":75257,"Label":"6115-75257 via Unknown from 75258 -> 75259","Type":"Unknown","Directional":false,"Links":[{"SourceID":75258,"TargetID":75259,"Directional":false}]},{"ID":3886,"SourceStructureID":6115,"TargetStructureID":75263,"Label":"6115-75263 via Adherens from 75265 -> 75264","Type":"Adherens","Directional":false,"Links":[{"SourceID":75265,"TargetID":75264,"Directional":false}]},{"ID":3887,"SourceStructureID":75429,"TargetStructureID":6115,"Label":"75429-6115 via Adherens from 75430 -> 75431","Type":"Adherens","Directional":false,"Links":[{"SourceID":75430,"TargetID":75431,"Directional":false}]},{"ID":3888,"SourceStructureID":6115,"TargetStructureID":75442,"Label":"6115-75442 via Adherens from 75443 -> 75444","Type":"Adherens","Directional":false,"Links":[{"SourceID":75443,"TargetID":75444,"Directional":false}]},{"ID":3889,"SourceStructureID":6115,"TargetStructureID":75474,"Label":"6115-75474 via Adherens from 134260 -> 134261","Type":"Adherens","Directional":false,"Links":[{"SourceID":134260,"TargetID":134261,"Directional":false}]},{"ID":3890,"SourceStructureID":75564,"TargetStructureID":6115,"Label":"75564-6115 via Adherens from 75565 -> 75566","Type":"Adherens","Directional":false,"Links":[{"SourceID":75565,"TargetID":75566,"Directional":false}]},{"ID":3891,"SourceStructureID":6115,"TargetStructureID":75603,"Label":"6115-75603 via Unknown from 75602 -> 75604","Type":"Unknown","Directional":false,"Links":[{"SourceID":75602,"TargetID":75604,"Directional":false}]},{"ID":3892,"SourceStructureID":75615,"TargetStructureID":6115,"Label":"75615-6115 via Adherens from 75616 -> 75617, 75618 -> 75619","Type":"Adherens","Directional":false,"Links":[{"SourceID":75616,"TargetID":75617,"Directional":false},{"SourceID":75618,"TargetID":75619,"Directional":false}]},{"ID":3893,"SourceStructureID":75848,"TargetStructureID":6115,"Label":"75848-6115 via Adherens from 75849 -> 75850","Type":"Adherens","Directional":false,"Links":[{"SourceID":75849,"TargetID":75850,"Directional":false}]},{"ID":3894,"SourceStructureID":75885,"TargetStructureID":6115,"Label":"75885-6115 via Adherens from 75886 -> 75884","Type":"Adherens","Directional":false,"Links":[{"SourceID":75886,"TargetID":75884,"Directional":false}]},{"ID":3895,"SourceStructureID":6115,"TargetStructureID":75953,"Label":"6115-75953 via Adherens from 75952 -> 75954","Type":"Adherens","Directional":false,"Links":[{"SourceID":75952,"TargetID":75954,"Directional":false}]},{"ID":3896,"SourceStructureID":6115,"TargetStructureID":75965,"Label":"6115-75965 via Adherens from 75964 -> 75966","Type":"Adherens","Directional":false,"Links":[{"SourceID":75964,"TargetID":75966,"Directional":false}]},{"ID":3897,"SourceStructureID":6115,"TargetStructureID":75968,"Label":"6115-75968 via Unknown from 75967 -> 75969","Type":"Unknown","Directional":false,"Links":[{"SourceID":75967,"TargetID":75969,"Directional":false}]},{"ID":3898,"SourceStructureID":6115,"TargetStructureID":75976,"Label":"6115-75976 via Unknown from 75975 -> 75977","Type":"Unknown","Directional":false,"Links":[{"SourceID":75975,"TargetID":75977,"Directional":false}]},{"ID":3899,"SourceStructureID":6115,"TargetStructureID":75988,"Label":"6115-75988 via Unknown from 75987 -> 75989","Type":"Unknown","Directional":false,"Links":[{"SourceID":75987,"TargetID":75989,"Directional":false}]},{"ID":3900,"SourceStructureID":6115,"TargetStructureID":76029,"Label":"6115-76029 via Adherens from 76028 -> 76030","Type":"Adherens","Directional":false,"Links":[{"SourceID":76028,"TargetID":76030,"Directional":false}]},{"ID":3901,"SourceStructureID":76034,"TargetStructureID":6115,"Label":"76034-6115 via Unknown from 76035 -> 76033","Type":"Unknown","Directional":false,"Links":[{"SourceID":76035,"TargetID":76033,"Directional":false}]},{"ID":3902,"SourceStructureID":76095,"TargetStructureID":6115,"Label":"76095-6115 via Unknown from 76100 -> 76099","Type":"Unknown","Directional":false,"Links":[{"SourceID":76100,"TargetID":76099,"Directional":false}]},{"ID":3903,"SourceStructureID":76137,"TargetStructureID":6115,"Label":"76137-6115 via Gap Junction from 76167 -> 76168","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":76167,"TargetID":76168,"Directional":false}]},{"ID":3904,"SourceStructureID":6115,"TargetStructureID":76161,"Label":"6115-76161 via Adherens from 76163 -> 76162","Type":"Adherens","Directional":false,"Links":[{"SourceID":76163,"TargetID":76162,"Directional":false}]},{"ID":3905,"SourceStructureID":6115,"TargetStructureID":77674,"Label":"6115-77674 via Adherens from 90647 -> 90649","Type":"Adherens","Directional":false,"Links":[{"SourceID":90647,"TargetID":90649,"Directional":false}]},{"ID":3906,"SourceStructureID":6115,"TargetStructureID":80912,"Label":"6115-80912 via Adherens from 80913 -> 80914","Type":"Adherens","Directional":false,"Links":[{"SourceID":80913,"TargetID":80914,"Directional":false}]},{"ID":3907,"SourceStructureID":6115,"TargetStructureID":80919,"Label":"6115-80919 via Adherens from 80921 -> 80920","Type":"Adherens","Directional":false,"Links":[{"SourceID":80921,"TargetID":80920,"Directional":false}]},{"ID":3908,"SourceStructureID":6115,"TargetStructureID":80935,"Label":"6115-80935 via Unknown from 73780 -> 80936","Type":"Unknown","Directional":false,"Links":[{"SourceID":73780,"TargetID":80936,"Directional":false}]},{"ID":3909,"SourceStructureID":6115,"TargetStructureID":80957,"Label":"6115-80957 via Adherens from 80956 -> 80958","Type":"Adherens","Directional":false,"Links":[{"SourceID":80956,"TargetID":80958,"Directional":false}]},{"ID":3910,"SourceStructureID":6115,"TargetStructureID":80957,"Label":"6115-80957 via Unknown from 75208 -> 80959","Type":"Unknown","Directional":false,"Links":[{"SourceID":75208,"TargetID":80959,"Directional":false}]},{"ID":3911,"SourceStructureID":6115,"TargetStructureID":80962,"Label":"6115-80962 via Unknown from 75556 -> 80963","Type":"Unknown","Directional":false,"Links":[{"SourceID":75556,"TargetID":80963,"Directional":false}]},{"ID":3912,"SourceStructureID":6115,"TargetStructureID":81153,"Label":"6115-81153 via Unknown from 75077 -> 81154","Type":"Unknown","Directional":false,"Links":[{"SourceID":75077,"TargetID":81154,"Directional":false}]},{"ID":3913,"SourceStructureID":6115,"TargetStructureID":81160,"Label":"6115-81160 via Unknown from 76023 -> 81161","Type":"Unknown","Directional":false,"Links":[{"SourceID":76023,"TargetID":81161,"Directional":false}]},{"ID":3914,"SourceStructureID":81165,"TargetStructureID":6115,"Label":"81165-6115 via Unknown from 81166 -> 75154","Type":"Unknown","Directional":false,"Links":[{"SourceID":81166,"TargetID":75154,"Directional":false}]},{"ID":3915,"SourceStructureID":6115,"TargetStructureID":81167,"Label":"6115-81167 via Unknown from 74533 -> 81168","Type":"Unknown","Directional":false,"Links":[{"SourceID":74533,"TargetID":81168,"Directional":false}]},{"ID":3916,"SourceStructureID":81169,"TargetStructureID":6115,"Label":"81169-6115 via Unknown from 81170 -> 75093, 135163 -> 135164","Type":"Unknown","Directional":false,"Links":[{"SourceID":81170,"TargetID":75093,"Directional":false},{"SourceID":135163,"TargetID":135164,"Directional":false}]},{"ID":3917,"SourceStructureID":81350,"TargetStructureID":6115,"Label":"81350-6115 via Unknown from 82371 -> 81351","Type":"Unknown","Directional":false,"Links":[{"SourceID":82371,"TargetID":81351,"Directional":false}]},{"ID":3918,"SourceStructureID":82566,"TargetStructureID":6115,"Label":"82566-6115 via Unknown from 82567 -> 74477","Type":"Unknown","Directional":false,"Links":[{"SourceID":82567,"TargetID":74477,"Directional":false}]},{"ID":3919,"SourceStructureID":6115,"TargetStructureID":82644,"Label":"6115-82644 via Unknown from 90632 -> 90633","Type":"Unknown","Directional":false,"Links":[{"SourceID":90632,"TargetID":90633,"Directional":false}]},{"ID":3920,"SourceStructureID":6115,"TargetStructureID":82653,"Label":"6115-82653 via Adherens from 90628 -> 90629","Type":"Adherens","Directional":false,"Links":[{"SourceID":90628,"TargetID":90629,"Directional":false}]},{"ID":3921,"SourceStructureID":6115,"TargetStructureID":82969,"Label":"6115-82969 via Unknown from 72242 -> 82970","Type":"Unknown","Directional":false,"Links":[{"SourceID":72242,"TargetID":82970,"Directional":false}]},{"ID":3922,"SourceStructureID":90631,"TargetStructureID":6115,"Label":"90631-6115 via Unknown from 90639 -> 90640","Type":"Unknown","Directional":false,"Links":[{"SourceID":90639,"TargetID":90640,"Directional":false}]},{"ID":3923,"SourceStructureID":90645,"TargetStructureID":6115,"Label":"90645-6115 via Adherens from 90646 -> 90644","Type":"Adherens","Directional":false,"Links":[{"SourceID":90646,"TargetID":90644,"Directional":false}]},{"ID":3924,"SourceStructureID":6117,"TargetStructureID":6117,"Label":"6117-6117 via Gap Junction from 134146 -> 134145","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":134146,"TargetID":134145,"Directional":false}]},{"ID":3925,"SourceStructureID":6169,"TargetStructureID":6117,"Label":"6169-6117 via Gap Junction from 20565 -> 20566, 24645 -> 20580, 59087 -> 59084, 86222 -> 86223, 92385 -> 92386","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":20565,"TargetID":20566,"Directional":false},{"SourceID":24645,"TargetID":20580,"Directional":false},{"SourceID":59087,"TargetID":59084,"Directional":false},{"SourceID":86222,"TargetID":86223,"Directional":false},{"SourceID":92385,"TargetID":92386,"Directional":false}]},{"ID":3926,"SourceStructureID":7024,"TargetStructureID":6117,"Label":"7024-6117 via Gap Junction from 45119 -> 30873","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45119,"TargetID":30873,"Directional":false}]},{"ID":3927,"SourceStructureID":7113,"TargetStructureID":6117,"Label":"7113-6117 via Gap Junction from 58790 -> 58789","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58790,"TargetID":58789,"Directional":false}]},{"ID":3928,"SourceStructureID":6117,"TargetStructureID":7594,"Label":"6117-7594 via Adherens from 83914 -> 83915","Type":"Adherens","Directional":false,"Links":[{"SourceID":83914,"TargetID":83915,"Directional":false}]},{"ID":3929,"SourceStructureID":9769,"TargetStructureID":6117,"Label":"9769-6117 via Adherens from 84243 -> 84242","Type":"Adherens","Directional":false,"Links":[{"SourceID":84243,"TargetID":84242,"Directional":false}]},{"ID":3930,"SourceStructureID":9769,"TargetStructureID":6117,"Label":"9769-6117 via Unknown from 83143 -> 83142, 84172 -> 84168, 84386 -> 84385, 84638 -> 84637","Type":"Unknown","Directional":false,"Links":[{"SourceID":83143,"TargetID":83142,"Directional":false},{"SourceID":84172,"TargetID":84168,"Directional":false},{"SourceID":84386,"TargetID":84385,"Directional":false},{"SourceID":84638,"TargetID":84637,"Directional":false}]},{"ID":3931,"SourceStructureID":6117,"TargetStructureID":20136,"Label":"6117-20136 via Adherens from 86095 -> 86096","Type":"Adherens","Directional":false,"Links":[{"SourceID":86095,"TargetID":86096,"Directional":false}]},{"ID":3932,"SourceStructureID":6117,"TargetStructureID":20136,"Label":"6117-20136 via Gap Junction from 83961 -> 83962, 83969 -> 83970, 83983 -> 83984, 134141 -> 134142","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83961,"TargetID":83962,"Directional":false},{"SourceID":83969,"TargetID":83970,"Directional":false},{"SourceID":83983,"TargetID":83984,"Directional":false},{"SourceID":134141,"TargetID":134142,"Directional":false}]},{"ID":3933,"SourceStructureID":32035,"TargetStructureID":6117,"Label":"32035-6117 via Adherens from 32039 -> 10531, 86085 -> 86351, 86266 -> 86267","Type":"Adherens","Directional":false,"Links":[{"SourceID":32039,"TargetID":10531,"Directional":false},{"SourceID":86085,"TargetID":86351,"Directional":false},{"SourceID":86266,"TargetID":86267,"Directional":false}]},{"ID":3934,"SourceStructureID":6117,"TargetStructureID":32035,"Label":"6117-32035 via Unknown from 86019 -> 86020","Type":"Unknown","Directional":false,"Links":[{"SourceID":86019,"TargetID":86020,"Directional":false}]},{"ID":3935,"SourceStructureID":6117,"TargetStructureID":35240,"Label":"6117-35240 via Adherens from 86471 -> 86472","Type":"Adherens","Directional":false,"Links":[{"SourceID":86471,"TargetID":86472,"Directional":false}]},{"ID":3936,"SourceStructureID":35240,"TargetStructureID":6117,"Label":"35240-6117 via Unknown from 86460 -> 86461, 86478 -> 86477","Type":"Unknown","Directional":false,"Links":[{"SourceID":86460,"TargetID":86461,"Directional":false},{"SourceID":86478,"TargetID":86477,"Directional":false}]},{"ID":3937,"SourceStructureID":6117,"TargetStructureID":35975,"Label":"6117-35975 via Unknown from 84977 -> 84979","Type":"Unknown","Directional":false,"Links":[{"SourceID":84977,"TargetID":84979,"Directional":false}]},{"ID":3938,"SourceStructureID":6117,"TargetStructureID":39957,"Label":"6117-39957 via Unknown from 86104 -> 86103","Type":"Unknown","Directional":false,"Links":[{"SourceID":86104,"TargetID":86103,"Directional":false}]},{"ID":3939,"SourceStructureID":40037,"TargetStructureID":6117,"Label":"40037-6117 via Unknown from 86021 -> 86022","Type":"Unknown","Directional":false,"Links":[{"SourceID":86021,"TargetID":86022,"Directional":false}]},{"ID":3940,"SourceStructureID":6117,"TargetStructureID":40039,"Label":"6117-40039 via Adherens from 86379 -> 86380","Type":"Adherens","Directional":false,"Links":[{"SourceID":86379,"TargetID":86380,"Directional":false}]},{"ID":3941,"SourceStructureID":40602,"TargetStructureID":6117,"Label":"40602-6117 via Adherens from 86417 -> 86416","Type":"Adherens","Directional":false,"Links":[{"SourceID":86417,"TargetID":86416,"Directional":false}]},{"ID":3942,"SourceStructureID":40602,"TargetStructureID":6117,"Label":"40602-6117 via Unknown from 86433 -> 86434","Type":"Unknown","Directional":false,"Links":[{"SourceID":86433,"TargetID":86434,"Directional":false}]},{"ID":3943,"SourceStructureID":6117,"TargetStructureID":45220,"Label":"6117-45220 via Adherens from 86507 -> 86508","Type":"Adherens","Directional":false,"Links":[{"SourceID":86507,"TargetID":86508,"Directional":false}]},{"ID":3944,"SourceStructureID":6117,"TargetStructureID":54881,"Label":"6117-54881 via Adherens from 86297 -> 86296","Type":"Adherens","Directional":false,"Links":[{"SourceID":86297,"TargetID":86296,"Directional":false}]},{"ID":3945,"SourceStructureID":6117,"TargetStructureID":58592,"Label":"6117-58592 via Unknown from 84941 -> 84939, 86491 -> 86492","Type":"Unknown","Directional":false,"Links":[{"SourceID":84941,"TargetID":84939,"Directional":false},{"SourceID":86491,"TargetID":86492,"Directional":false}]},{"ID":3946,"SourceStructureID":58691,"TargetStructureID":6117,"Label":"58691-6117 via Adherens from 84933 -> 84934, 84954 -> 84955","Type":"Adherens","Directional":false,"Links":[{"SourceID":84933,"TargetID":84934,"Directional":false},{"SourceID":84954,"TargetID":84955,"Directional":false}]},{"ID":3947,"SourceStructureID":6117,"TargetStructureID":58691,"Label":"6117-58691 via Unknown from 84872 -> 84871","Type":"Unknown","Directional":false,"Links":[{"SourceID":84872,"TargetID":84871,"Directional":false}]},{"ID":3948,"SourceStructureID":6117,"TargetStructureID":58714,"Label":"6117-58714 via Adherens from 86109 -> 86108, 86184 -> 86185, 86188 -> 86187, 86190 -> 86191, 86411 -> 86410","Type":"Adherens","Directional":false,"Links":[{"SourceID":86109,"TargetID":86108,"Directional":false},{"SourceID":86184,"TargetID":86185,"Directional":false},{"SourceID":86188,"TargetID":86187,"Directional":false},{"SourceID":86190,"TargetID":86191,"Directional":false},{"SourceID":86411,"TargetID":86410,"Directional":false}]},{"ID":3949,"SourceStructureID":6117,"TargetStructureID":58714,"Label":"6117-58714 via Unknown from 86156 -> 86157, 86160 -> 86161","Type":"Unknown","Directional":false,"Links":[{"SourceID":86156,"TargetID":86157,"Directional":false},{"SourceID":86160,"TargetID":86161,"Directional":false}]},{"ID":3950,"SourceStructureID":6117,"TargetStructureID":58757,"Label":"6117-58757 via Adherens from 86500 -> 86501","Type":"Adherens","Directional":false,"Links":[{"SourceID":86500,"TargetID":86501,"Directional":false}]},{"ID":3951,"SourceStructureID":6117,"TargetStructureID":58777,"Label":"6117-58777 via Adherens from 86510 -> 86509, 86522 -> 86523, 86560 -> 86561","Type":"Adherens","Directional":false,"Links":[{"SourceID":86510,"TargetID":86509,"Directional":false},{"SourceID":86522,"TargetID":86523,"Directional":false},{"SourceID":86560,"TargetID":86561,"Directional":false}]},{"ID":3952,"SourceStructureID":6117,"TargetStructureID":58777,"Label":"6117-58777 via Unknown from 86520 -> 86521","Type":"Unknown","Directional":false,"Links":[{"SourceID":86520,"TargetID":86521,"Directional":false}]},{"ID":3953,"SourceStructureID":61897,"TargetStructureID":6117,"Label":"61897-6117 via Unknown from 83221 -> 83220","Type":"Unknown","Directional":false,"Links":[{"SourceID":83221,"TargetID":83220,"Directional":false}]},{"ID":3954,"SourceStructureID":68691,"TargetStructureID":6117,"Label":"68691-6117 via Unknown from 84159 -> 84157","Type":"Unknown","Directional":false,"Links":[{"SourceID":84159,"TargetID":84157,"Directional":false}]},{"ID":3955,"SourceStructureID":6117,"TargetStructureID":70469,"Label":"6117-70469 via Adherens from 83138 -> 83141","Type":"Adherens","Directional":false,"Links":[{"SourceID":83138,"TargetID":83141,"Directional":false}]},{"ID":3956,"SourceStructureID":70653,"TargetStructureID":6117,"Label":"70653-6117 via Unknown from 86363 -> 86364","Type":"Unknown","Directional":false,"Links":[{"SourceID":86363,"TargetID":86364,"Directional":false}]},{"ID":3957,"SourceStructureID":75578,"TargetStructureID":6117,"Label":"75578-6117 via Unknown from 75585 -> 83187","Type":"Unknown","Directional":false,"Links":[{"SourceID":75585,"TargetID":83187,"Directional":false}]},{"ID":3958,"SourceStructureID":6117,"TargetStructureID":83133,"Label":"6117-83133 via Unknown from 83132 -> 83134, 83136 -> 83137","Type":"Unknown","Directional":false,"Links":[{"SourceID":83132,"TargetID":83134,"Directional":false},{"SourceID":83136,"TargetID":83137,"Directional":false}]},{"ID":3959,"SourceStructureID":83155,"TargetStructureID":6117,"Label":"83155-6117 via Unknown from 83156 -> 83154","Type":"Unknown","Directional":false,"Links":[{"SourceID":83156,"TargetID":83154,"Directional":false}]},{"ID":3960,"SourceStructureID":6117,"TargetStructureID":83226,"Label":"6117-83226 via Unknown from 83225 -> 83227","Type":"Unknown","Directional":false,"Links":[{"SourceID":83225,"TargetID":83227,"Directional":false}]},{"ID":3961,"SourceStructureID":6117,"TargetStructureID":83229,"Label":"6117-83229 via Unknown from 83230 -> 83231","Type":"Unknown","Directional":false,"Links":[{"SourceID":83230,"TargetID":83231,"Directional":false}]},{"ID":3962,"SourceStructureID":6117,"TargetStructureID":83234,"Label":"6117-83234 via Unknown from 134139 -> 83235","Type":"Unknown","Directional":false,"Links":[{"SourceID":134139,"TargetID":83235,"Directional":false}]},{"ID":3963,"SourceStructureID":83264,"TargetStructureID":6117,"Label":"83264-6117 via Unknown from 83265 -> 83263","Type":"Unknown","Directional":false,"Links":[{"SourceID":83265,"TargetID":83263,"Directional":false}]},{"ID":3964,"SourceStructureID":83921,"TargetStructureID":6117,"Label":"83921-6117 via Unknown from 83926 -> 83927","Type":"Unknown","Directional":false,"Links":[{"SourceID":83926,"TargetID":83927,"Directional":false}]},{"ID":3965,"SourceStructureID":6117,"TargetStructureID":83954,"Label":"6117-83954 via Adherens from 83953 -> 83955","Type":"Adherens","Directional":false,"Links":[{"SourceID":83953,"TargetID":83955,"Directional":false}]},{"ID":3966,"SourceStructureID":84170,"TargetStructureID":6117,"Label":"84170-6117 via Unknown from 84171 -> 84169","Type":"Unknown","Directional":false,"Links":[{"SourceID":84171,"TargetID":84169,"Directional":false}]},{"ID":3967,"SourceStructureID":6117,"TargetStructureID":84181,"Label":"6117-84181 via Unknown from 84191 -> 84192","Type":"Unknown","Directional":false,"Links":[{"SourceID":84191,"TargetID":84192,"Directional":false}]},{"ID":3968,"SourceStructureID":6117,"TargetStructureID":84193,"Label":"6117-84193 via Adherens from 84196 -> 84197","Type":"Adherens","Directional":false,"Links":[{"SourceID":84196,"TargetID":84197,"Directional":false}]},{"ID":3969,"SourceStructureID":6117,"TargetStructureID":84235,"Label":"6117-84235 via Adherens from 84234 -> 84236","Type":"Adherens","Directional":false,"Links":[{"SourceID":84234,"TargetID":84236,"Directional":false}]},{"ID":3970,"SourceStructureID":6117,"TargetStructureID":84656,"Label":"6117-84656 via Unknown from 84655 -> 84657","Type":"Unknown","Directional":false,"Links":[{"SourceID":84655,"TargetID":84657,"Directional":false}]},{"ID":3971,"SourceStructureID":84782,"TargetStructureID":6117,"Label":"84782-6117 via Unknown from 84785 -> 84784","Type":"Unknown","Directional":false,"Links":[{"SourceID":84785,"TargetID":84784,"Directional":false}]},{"ID":3972,"SourceStructureID":84790,"TargetStructureID":6117,"Label":"84790-6117 via Adherens from 84850 -> 84851, 84854 -> 84855, 86008 -> 86009","Type":"Adherens","Directional":false,"Links":[{"SourceID":84850,"TargetID":84851,"Directional":false},{"SourceID":84854,"TargetID":84855,"Directional":false},{"SourceID":86008,"TargetID":86009,"Directional":false}]},{"ID":3973,"SourceStructureID":84790,"TargetStructureID":6117,"Label":"84790-6117 via Unknown from 84852 -> 84853","Type":"Unknown","Directional":false,"Links":[{"SourceID":84852,"TargetID":84853,"Directional":false}]},{"ID":3974,"SourceStructureID":6117,"TargetStructureID":84858,"Label":"6117-84858 via Unknown from 84869 -> 84868","Type":"Unknown","Directional":false,"Links":[{"SourceID":84869,"TargetID":84868,"Directional":false}]},{"ID":3975,"SourceStructureID":6117,"TargetStructureID":84937,"Label":"6117-84937 via Adherens from 84936 -> 84938","Type":"Adherens","Directional":false,"Links":[{"SourceID":84936,"TargetID":84938,"Directional":false}]},{"ID":3976,"SourceStructureID":6117,"TargetStructureID":84957,"Label":"6117-84957 via Adherens from 84956 -> 84958","Type":"Adherens","Directional":false,"Links":[{"SourceID":84956,"TargetID":84958,"Directional":false}]},{"ID":3977,"SourceStructureID":6117,"TargetStructureID":84971,"Label":"6117-84971 via Adherens from 84970 -> 84972","Type":"Adherens","Directional":false,"Links":[{"SourceID":84970,"TargetID":84972,"Directional":false}]},{"ID":3978,"SourceStructureID":84983,"TargetStructureID":6117,"Label":"84983-6117 via Unknown from 84990 -> 84991","Type":"Unknown","Directional":false,"Links":[{"SourceID":84990,"TargetID":84991,"Directional":false}]},{"ID":3979,"SourceStructureID":84988,"TargetStructureID":6117,"Label":"84988-6117 via Unknown from 84989 -> 84987","Type":"Unknown","Directional":false,"Links":[{"SourceID":84989,"TargetID":84987,"Directional":false}]},{"ID":3980,"SourceStructureID":6117,"TargetStructureID":84995,"Label":"6117-84995 via Unknown from 84996 -> 84997","Type":"Unknown","Directional":false,"Links":[{"SourceID":84996,"TargetID":84997,"Directional":false}]},{"ID":3981,"SourceStructureID":6117,"TargetStructureID":85002,"Label":"6117-85002 via Adherens from 85001 -> 85003","Type":"Adherens","Directional":false,"Links":[{"SourceID":85001,"TargetID":85003,"Directional":false}]},{"ID":3982,"SourceStructureID":85009,"TargetStructureID":6117,"Label":"85009-6117 via Unknown from 85010 -> 85011","Type":"Unknown","Directional":false,"Links":[{"SourceID":85010,"TargetID":85011,"Directional":false}]},{"ID":3983,"SourceStructureID":85018,"TargetStructureID":6117,"Label":"85018-6117 via Unknown from 85020 -> 85021","Type":"Unknown","Directional":false,"Links":[{"SourceID":85020,"TargetID":85021,"Directional":false}]},{"ID":3984,"SourceStructureID":6117,"TargetStructureID":85219,"Label":"6117-85219 via Unknown from 85229 -> 85227","Type":"Unknown","Directional":false,"Links":[{"SourceID":85229,"TargetID":85227,"Directional":false}]},{"ID":3985,"SourceStructureID":6117,"TargetStructureID":85235,"Label":"6117-85235 via Adherens from 85237 -> 85236","Type":"Adherens","Directional":false,"Links":[{"SourceID":85237,"TargetID":85236,"Directional":false}]},{"ID":3986,"SourceStructureID":6117,"TargetStructureID":85266,"Label":"6117-85266 via Unknown from 85291 -> 85292","Type":"Unknown","Directional":false,"Links":[{"SourceID":85291,"TargetID":85292,"Directional":false}]},{"ID":3987,"SourceStructureID":6117,"TargetStructureID":85293,"Label":"6117-85293 via Unknown from 85296 -> 85295","Type":"Unknown","Directional":false,"Links":[{"SourceID":85296,"TargetID":85295,"Directional":false}]},{"ID":3988,"SourceStructureID":85298,"TargetStructureID":6117,"Label":"85298-6117 via Unknown from 85300 -> 85299","Type":"Unknown","Directional":false,"Links":[{"SourceID":85300,"TargetID":85299,"Directional":false}]},{"ID":3989,"SourceStructureID":6117,"TargetStructureID":85307,"Label":"6117-85307 via Unknown from 85306 -> 85308","Type":"Unknown","Directional":false,"Links":[{"SourceID":85306,"TargetID":85308,"Directional":false}]},{"ID":3990,"SourceStructureID":6117,"TargetStructureID":85435,"Label":"6117-85435 via Adherens from 85432 -> 85437","Type":"Adherens","Directional":false,"Links":[{"SourceID":85432,"TargetID":85437,"Directional":false}]},{"ID":3991,"SourceStructureID":6117,"TargetStructureID":85661,"Label":"6117-85661 via Adherens from 85871 -> 85872","Type":"Adherens","Directional":false,"Links":[{"SourceID":85871,"TargetID":85872,"Directional":false}]},{"ID":3992,"SourceStructureID":6117,"TargetStructureID":85661,"Label":"6117-85661 via Unknown from 85664 -> 85665","Type":"Unknown","Directional":false,"Links":[{"SourceID":85664,"TargetID":85665,"Directional":false}]},{"ID":3993,"SourceStructureID":85831,"TargetStructureID":6117,"Label":"85831-6117 via Unknown from 85832 -> 85833","Type":"Unknown","Directional":false,"Links":[{"SourceID":85832,"TargetID":85833,"Directional":false}]},{"ID":3994,"SourceStructureID":6117,"TargetStructureID":85906,"Label":"6117-85906 via Unknown from 85950 -> 85951","Type":"Unknown","Directional":false,"Links":[{"SourceID":85950,"TargetID":85951,"Directional":false}]},{"ID":3995,"SourceStructureID":6117,"TargetStructureID":85928,"Label":"6117-85928 via Adherens from 85930 -> 85929","Type":"Adherens","Directional":false,"Links":[{"SourceID":85930,"TargetID":85929,"Directional":false}]},{"ID":3996,"SourceStructureID":85932,"TargetStructureID":6117,"Label":"85932-6117 via Unknown from 85936 -> 85935","Type":"Unknown","Directional":false,"Links":[{"SourceID":85936,"TargetID":85935,"Directional":false}]},{"ID":3997,"SourceStructureID":6117,"TargetStructureID":85937,"Label":"6117-85937 via Adherens from 85939 -> 85938","Type":"Adherens","Directional":false,"Links":[{"SourceID":85939,"TargetID":85938,"Directional":false}]},{"ID":3998,"SourceStructureID":85941,"TargetStructureID":6117,"Label":"85941-6117 via Unknown from 85942 -> 85940","Type":"Unknown","Directional":false,"Links":[{"SourceID":85942,"TargetID":85940,"Directional":false}]},{"ID":3999,"SourceStructureID":6117,"TargetStructureID":85958,"Label":"6117-85958 via Unknown from 85968 -> 85969","Type":"Unknown","Directional":false,"Links":[{"SourceID":85968,"TargetID":85969,"Directional":false}]},{"ID":4000,"SourceStructureID":6117,"TargetStructureID":85974,"Label":"6117-85974 via Unknown from 85977 -> 85978","Type":"Unknown","Directional":false,"Links":[{"SourceID":85977,"TargetID":85978,"Directional":false}]},{"ID":4001,"SourceStructureID":6117,"TargetStructureID":85991,"Label":"6117-85991 via Unknown from 85993 -> 85992, 86056 -> 86057","Type":"Unknown","Directional":false,"Links":[{"SourceID":85993,"TargetID":85992,"Directional":false},{"SourceID":86056,"TargetID":86057,"Directional":false}]},{"ID":4002,"SourceStructureID":6117,"TargetStructureID":86001,"Label":"6117-86001 via Unknown from 86000 -> 86007","Type":"Unknown","Directional":false,"Links":[{"SourceID":86000,"TargetID":86007,"Directional":false}]},{"ID":4003,"SourceStructureID":6117,"TargetStructureID":86026,"Label":"6117-86026 via Unknown from 86025 -> 86027, 86029 -> 86028","Type":"Unknown","Directional":false,"Links":[{"SourceID":86025,"TargetID":86027,"Directional":false},{"SourceID":86029,"TargetID":86028,"Directional":false}]},{"ID":4004,"SourceStructureID":6117,"TargetStructureID":86032,"Label":"6117-86032 via Unknown from 86031 -> 86033","Type":"Unknown","Directional":false,"Links":[{"SourceID":86031,"TargetID":86033,"Directional":false}]},{"ID":4005,"SourceStructureID":86036,"TargetStructureID":6117,"Label":"86036-6117 via Adherens from 86040 -> 86041","Type":"Adherens","Directional":false,"Links":[{"SourceID":86040,"TargetID":86041,"Directional":false}]},{"ID":4006,"SourceStructureID":6117,"TargetStructureID":86045,"Label":"6117-86045 via Unknown from 86044 -> 86049","Type":"Unknown","Directional":false,"Links":[{"SourceID":86044,"TargetID":86049,"Directional":false}]},{"ID":4007,"SourceStructureID":6117,"TargetStructureID":86050,"Label":"6117-86050 via Unknown from 86053 -> 86054","Type":"Unknown","Directional":false,"Links":[{"SourceID":86053,"TargetID":86054,"Directional":false}]},{"ID":4008,"SourceStructureID":86063,"TargetStructureID":6117,"Label":"86063-6117 via Unknown from 86064 -> 86062","Type":"Unknown","Directional":false,"Links":[{"SourceID":86064,"TargetID":86062,"Directional":false}]},{"ID":4009,"SourceStructureID":86098,"TargetStructureID":6117,"Label":"86098-6117 via Adherens from 86101 -> 86102","Type":"Adherens","Directional":false,"Links":[{"SourceID":86101,"TargetID":86102,"Directional":false}]},{"ID":4010,"SourceStructureID":6117,"TargetStructureID":86098,"Label":"6117-86098 via Unknown from 86097 -> 86099","Type":"Unknown","Directional":false,"Links":[{"SourceID":86097,"TargetID":86099,"Directional":false}]},{"ID":4011,"SourceStructureID":86106,"TargetStructureID":6117,"Label":"86106-6117 via Adherens from 86107 -> 86105","Type":"Adherens","Directional":false,"Links":[{"SourceID":86107,"TargetID":86105,"Directional":false}]},{"ID":4012,"SourceStructureID":6117,"TargetStructureID":86110,"Label":"6117-86110 via Adherens from 86154 -> 86155, 86159 -> 86158","Type":"Adherens","Directional":false,"Links":[{"SourceID":86154,"TargetID":86155,"Directional":false},{"SourceID":86159,"TargetID":86158,"Directional":false}]},{"ID":4013,"SourceStructureID":6117,"TargetStructureID":86110,"Label":"6117-86110 via Unknown from 86124 -> 86125","Type":"Unknown","Directional":false,"Links":[{"SourceID":86124,"TargetID":86125,"Directional":false}]},{"ID":4014,"SourceStructureID":6117,"TargetStructureID":86134,"Label":"6117-86134 via Unknown from 86133 -> 86138","Type":"Unknown","Directional":false,"Links":[{"SourceID":86133,"TargetID":86138,"Directional":false}]},{"ID":4015,"SourceStructureID":6117,"TargetStructureID":86145,"Label":"6117-86145 via Unknown from 86152 -> 86153","Type":"Unknown","Directional":false,"Links":[{"SourceID":86152,"TargetID":86153,"Directional":false}]},{"ID":4016,"SourceStructureID":86171,"TargetStructureID":6117,"Label":"86171-6117 via Unknown from 86173 -> 86172","Type":"Unknown","Directional":false,"Links":[{"SourceID":86173,"TargetID":86172,"Directional":false}]},{"ID":4017,"SourceStructureID":6117,"TargetStructureID":86237,"Label":"6117-86237 via Adherens from 86242 -> 86243","Type":"Adherens","Directional":false,"Links":[{"SourceID":86242,"TargetID":86243,"Directional":false}]},{"ID":4018,"SourceStructureID":6117,"TargetStructureID":86293,"Label":"6117-86293 via Unknown from 86292 -> 86294","Type":"Unknown","Directional":false,"Links":[{"SourceID":86292,"TargetID":86294,"Directional":false}]},{"ID":4019,"SourceStructureID":6117,"TargetStructureID":86305,"Label":"6117-86305 via Unknown from 86304 -> 86308","Type":"Unknown","Directional":false,"Links":[{"SourceID":86304,"TargetID":86308,"Directional":false}]},{"ID":4020,"SourceStructureID":86323,"TargetStructureID":6117,"Label":"86323-6117 via Unknown from 86324 -> 86325","Type":"Unknown","Directional":false,"Links":[{"SourceID":86324,"TargetID":86325,"Directional":false}]},{"ID":4021,"SourceStructureID":6117,"TargetStructureID":86327,"Label":"6117-86327 via Unknown from 86326 -> 86329","Type":"Unknown","Directional":false,"Links":[{"SourceID":86326,"TargetID":86329,"Directional":false}]},{"ID":4022,"SourceStructureID":86330,"TargetStructureID":6117,"Label":"86330-6117 via Unknown from 86339 -> 86338","Type":"Unknown","Directional":false,"Links":[{"SourceID":86339,"TargetID":86338,"Directional":false}]},{"ID":4023,"SourceStructureID":6117,"TargetStructureID":86340,"Label":"6117-86340 via Unknown from 86341 -> 86342","Type":"Unknown","Directional":false,"Links":[{"SourceID":86341,"TargetID":86342,"Directional":false}]},{"ID":4024,"SourceStructureID":86359,"TargetStructureID":6117,"Label":"86359-6117 via Adherens from 86360 -> 86362","Type":"Adherens","Directional":false,"Links":[{"SourceID":86360,"TargetID":86362,"Directional":false}]},{"ID":4025,"SourceStructureID":86385,"TargetStructureID":6117,"Label":"86385-6117 via Unknown from 86387 -> 86388","Type":"Unknown","Directional":false,"Links":[{"SourceID":86387,"TargetID":86388,"Directional":false}]},{"ID":4026,"SourceStructureID":6117,"TargetStructureID":86489,"Label":"6117-86489 via Unknown from 86488 -> 86490","Type":"Unknown","Directional":false,"Links":[{"SourceID":86488,"TargetID":86490,"Directional":false}]},{"ID":4027,"SourceStructureID":6117,"TargetStructureID":86505,"Label":"6117-86505 via Unknown from 86504 -> 86506","Type":"Unknown","Directional":false,"Links":[{"SourceID":86504,"TargetID":86506,"Directional":false}]},{"ID":4028,"SourceStructureID":6117,"TargetStructureID":86512,"Label":"6117-86512 via Unknown from 86514 -> 86515","Type":"Unknown","Directional":false,"Links":[{"SourceID":86514,"TargetID":86515,"Directional":false}]},{"ID":4029,"SourceStructureID":86524,"TargetStructureID":6117,"Label":"86524-6117 via Unknown from 86546 -> 86547","Type":"Unknown","Directional":false,"Links":[{"SourceID":86546,"TargetID":86547,"Directional":false}]},{"ID":4030,"SourceStructureID":6117,"TargetStructureID":86569,"Label":"6117-86569 via Unknown from 86573 -> 86575","Type":"Unknown","Directional":false,"Links":[{"SourceID":86573,"TargetID":86575,"Directional":false}]},{"ID":4031,"SourceStructureID":6117,"TargetStructureID":86582,"Label":"6117-86582 via Unknown from 86591 -> 86592","Type":"Unknown","Directional":false,"Links":[{"SourceID":86591,"TargetID":86592,"Directional":false}]},{"ID":4032,"SourceStructureID":86609,"TargetStructureID":6117,"Label":"86609-6117 via Unknown from 86613 -> 86612","Type":"Unknown","Directional":false,"Links":[{"SourceID":86613,"TargetID":86612,"Directional":false}]},{"ID":4033,"SourceStructureID":6120,"TargetStructureID":6118,"Label":"6120-6118 via Gap Junction from 65051 -> 65050, 65170 -> 65168, 119471 -> 119470","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65051,"TargetID":65050,"Directional":false},{"SourceID":65170,"TargetID":65168,"Directional":false},{"SourceID":119471,"TargetID":119470,"Directional":false}]},{"ID":4034,"SourceStructureID":6120,"TargetStructureID":6118,"Label":"6120-6118 via Unknown from 120789 -> 120788","Type":"Unknown","Directional":false,"Links":[{"SourceID":120789,"TargetID":120788,"Directional":false}]},{"ID":4035,"SourceStructureID":6121,"TargetStructureID":6118,"Label":"6121-6118 via Gap Junction from 120695 -> 120677, 120700 -> 120699, 120781 -> 120782, 120791 -> 120792, 120794 -> 120793, 125293 -> 125294","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120695,"TargetID":120677,"Directional":false},{"SourceID":120700,"TargetID":120699,"Directional":false},{"SourceID":120781,"TargetID":120782,"Directional":false},{"SourceID":120791,"TargetID":120792,"Directional":false},{"SourceID":120794,"TargetID":120793,"Directional":false},{"SourceID":125293,"TargetID":125294,"Directional":false}]},{"ID":4036,"SourceStructureID":6118,"TargetStructureID":6121,"Label":"6118-6121 via Unknown from 120685 -> 120686","Type":"Unknown","Directional":false,"Links":[{"SourceID":120685,"TargetID":120686,"Directional":false}]},{"ID":4037,"SourceStructureID":6158,"TargetStructureID":6118,"Label":"6158-6118 via Unknown from 115484 -> 115485","Type":"Unknown","Directional":false,"Links":[{"SourceID":115484,"TargetID":115485,"Directional":false}]},{"ID":4038,"SourceStructureID":6118,"TargetStructureID":6162,"Label":"6118-6162 via Gap Junction from 120730 -> 120731, 120733 -> 120732, 120752 -> 120751, 120758 -> 120757, 120768 -> 120769, 120784 -> 120785","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120730,"TargetID":120731,"Directional":false},{"SourceID":120733,"TargetID":120732,"Directional":false},{"SourceID":120752,"TargetID":120751,"Directional":false},{"SourceID":120758,"TargetID":120757,"Directional":false},{"SourceID":120768,"TargetID":120769,"Directional":false},{"SourceID":120784,"TargetID":120785,"Directional":false}]},{"ID":4039,"SourceStructureID":7904,"TargetStructureID":6118,"Label":"7904-6118 via Gap Junction from 119475 -> 119474, 120800 -> 120797, 120815 -> 120814, 122374 -> 122375","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119475,"TargetID":119474,"Directional":false},{"SourceID":120800,"TargetID":120797,"Directional":false},{"SourceID":120815,"TargetID":120814,"Directional":false},{"SourceID":122374,"TargetID":122375,"Directional":false}]},{"ID":4040,"SourceStructureID":6118,"TargetStructureID":7951,"Label":"6118-7951 via Gap Junction from 32496 -> 32495, 40002 -> 40003, 40005 -> 40004, 120642 -> 115364, 120761 -> 120760, 120763 -> 120762, 120766 -> 120765, 120776 -> 120775","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32496,"TargetID":32495,"Directional":false},{"SourceID":40002,"TargetID":40003,"Directional":false},{"SourceID":40005,"TargetID":40004,"Directional":false},{"SourceID":120642,"TargetID":115364,"Directional":false},{"SourceID":120761,"TargetID":120760,"Directional":false},{"SourceID":120763,"TargetID":120762,"Directional":false},{"SourceID":120766,"TargetID":120765,"Directional":false},{"SourceID":120776,"TargetID":120775,"Directional":false}]},{"ID":4041,"SourceStructureID":8032,"TargetStructureID":6118,"Label":"8032-6118 via Gap Junction from 56502 -> 56501","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56502,"TargetID":56501,"Directional":false}]},{"ID":4042,"SourceStructureID":65037,"TargetStructureID":6118,"Label":"65037-6118 via Adherens from 65039 -> 65038, 65040 -> 65041, 65043 -> 65042, 65044 -> 65045","Type":"Adherens","Directional":false,"Links":[{"SourceID":65039,"TargetID":65038,"Directional":false},{"SourceID":65040,"TargetID":65041,"Directional":false},{"SourceID":65043,"TargetID":65042,"Directional":false},{"SourceID":65044,"TargetID":65045,"Directional":false}]},{"ID":4043,"SourceStructureID":6118,"TargetStructureID":136707,"Label":"6118-136707 via Gap Junction from 115393 -> 136708","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115393,"TargetID":136708,"Directional":false}]},{"ID":4044,"SourceStructureID":136711,"TargetStructureID":6118,"Label":"136711-6118 via Gap Junction from 136712 -> 120702","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136712,"TargetID":120702,"Directional":false}]},{"ID":4045,"SourceStructureID":6121,"TargetStructureID":6120,"Label":"6121-6120 via Adherens from 111660 -> 111658, 126716 -> 126715","Type":"Adherens","Directional":false,"Links":[{"SourceID":111660,"TargetID":111658,"Directional":false},{"SourceID":126716,"TargetID":126715,"Directional":false}]},{"ID":4046,"SourceStructureID":6120,"TargetStructureID":6121,"Label":"6120-6121 via Gap Junction from 38106 -> 38120, 65064 -> 64353, 65166 -> 125300, 110573 -> 110572, 110776 -> 110775, 110788 -> 110787, 110822 -> 110823, 110840 -> 110839, 110872 -> 110873, 111211 -> 111210, 111392 -> 111393, 111486 -> 111487, 125230 -> 125231, 125674 -> 125673","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38106,"TargetID":38120,"Directional":false},{"SourceID":65064,"TargetID":64353,"Directional":false},{"SourceID":65166,"TargetID":125300,"Directional":false},{"SourceID":110573,"TargetID":110572,"Directional":false},{"SourceID":110776,"TargetID":110775,"Directional":false},{"SourceID":110788,"TargetID":110787,"Directional":false},{"SourceID":110822,"TargetID":110823,"Directional":false},{"SourceID":110840,"TargetID":110839,"Directional":false},{"SourceID":110872,"TargetID":110873,"Directional":false},{"SourceID":111211,"TargetID":111210,"Directional":false},{"SourceID":111392,"TargetID":111393,"Directional":false},{"SourceID":111486,"TargetID":111487,"Directional":false},{"SourceID":125230,"TargetID":125231,"Directional":false},{"SourceID":125674,"TargetID":125673,"Directional":false}]},{"ID":4047,"SourceStructureID":6141,"TargetStructureID":6120,"Label":"6141-6120 via Gap Junction from 110628 -> 64354","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":110628,"TargetID":64354,"Directional":false}]},{"ID":4048,"SourceStructureID":7904,"TargetStructureID":6120,"Label":"7904-6120 via Gap Junction from 52426 -> 52427, 111574 -> 52425, 111593 -> 111592","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52426,"TargetID":52427,"Directional":false},{"SourceID":111574,"TargetID":52425,"Directional":false},{"SourceID":111593,"TargetID":111592,"Directional":false}]},{"ID":4049,"SourceStructureID":6120,"TargetStructureID":8032,"Label":"6120-8032 via Adherens from 111538 -> 111537","Type":"Adherens","Directional":false,"Links":[{"SourceID":111538,"TargetID":111537,"Directional":false}]},{"ID":4050,"SourceStructureID":8032,"TargetStructureID":6120,"Label":"8032-6120 via Gap Junction from 30181 -> 30182, 32509 -> 32507","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":30181,"TargetID":30182,"Directional":false},{"SourceID":32509,"TargetID":32507,"Directional":false}]},{"ID":4051,"SourceStructureID":8032,"TargetStructureID":6120,"Label":"8032-6120 via Unknown from 111542 -> 111541","Type":"Unknown","Directional":false,"Links":[{"SourceID":111542,"TargetID":111541,"Directional":false}]},{"ID":4052,"SourceStructureID":22994,"TargetStructureID":6120,"Label":"22994-6120 via Gap Junction from 118144 -> 118148","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118144,"TargetID":118148,"Directional":false}]},{"ID":4053,"SourceStructureID":31334,"TargetStructureID":6120,"Label":"31334-6120 via Unknown from 111704 -> 111703","Type":"Unknown","Directional":false,"Links":[{"SourceID":111704,"TargetID":111703,"Directional":false}]},{"ID":4054,"SourceStructureID":60491,"TargetStructureID":6120,"Label":"60491-6120 via Adherens from 60492 -> 60490","Type":"Adherens","Directional":false,"Links":[{"SourceID":60492,"TargetID":60490,"Directional":false}]},{"ID":4055,"SourceStructureID":65172,"TargetStructureID":6120,"Label":"65172-6120 via Gap Junction from 65174 -> 65171","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65174,"TargetID":65171,"Directional":false}]},{"ID":4056,"SourceStructureID":6120,"TargetStructureID":89124,"Label":"6120-89124 via Adherens from 110553 -> 89344","Type":"Adherens","Directional":false,"Links":[{"SourceID":110553,"TargetID":89344,"Directional":false}]},{"ID":4057,"SourceStructureID":110566,"TargetStructureID":6120,"Label":"110566-6120 via Gap Junction from 110579 -> 110578","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":110579,"TargetID":110578,"Directional":false}]},{"ID":4058,"SourceStructureID":110607,"TargetStructureID":6120,"Label":"110607-6120 via Adherens from 110608 -> 110606","Type":"Adherens","Directional":false,"Links":[{"SourceID":110608,"TargetID":110606,"Directional":false}]},{"ID":4059,"SourceStructureID":110747,"TargetStructureID":6120,"Label":"110747-6120 via Adherens from 110774 -> 110773","Type":"Adherens","Directional":false,"Links":[{"SourceID":110774,"TargetID":110773,"Directional":false}]},{"ID":4060,"SourceStructureID":110779,"TargetStructureID":6120,"Label":"110779-6120 via Adherens from 110780 -> 110778","Type":"Adherens","Directional":false,"Links":[{"SourceID":110780,"TargetID":110778,"Directional":false}]},{"ID":4061,"SourceStructureID":110866,"TargetStructureID":6120,"Label":"110866-6120 via Adherens from 110868 -> 110865","Type":"Adherens","Directional":false,"Links":[{"SourceID":110868,"TargetID":110865,"Directional":false}]},{"ID":4062,"SourceStructureID":111269,"TargetStructureID":6120,"Label":"111269-6120 via Adherens from 111364 -> 111363","Type":"Adherens","Directional":false,"Links":[{"SourceID":111364,"TargetID":111363,"Directional":false}]},{"ID":4063,"SourceStructureID":6120,"TargetStructureID":111351,"Label":"6120-111351 via Unknown from 111348 -> 111347","Type":"Unknown","Directional":false,"Links":[{"SourceID":111348,"TargetID":111347,"Directional":false}]},{"ID":4064,"SourceStructureID":111374,"TargetStructureID":6120,"Label":"111374-6120 via Gap Junction from 111375 -> 111373","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111375,"TargetID":111373,"Directional":false}]},{"ID":4065,"SourceStructureID":6120,"TargetStructureID":111421,"Label":"6120-111421 via Adherens from 111490 -> 111491","Type":"Adherens","Directional":false,"Links":[{"SourceID":111490,"TargetID":111491,"Directional":false}]},{"ID":4066,"SourceStructureID":6120,"TargetStructureID":111553,"Label":"6120-111553 via Adherens from 111555 -> 111556","Type":"Adherens","Directional":false,"Links":[{"SourceID":111555,"TargetID":111556,"Directional":false}]},{"ID":4067,"SourceStructureID":6120,"TargetStructureID":111598,"Label":"6120-111598 via Unknown from 111600 -> 111599","Type":"Unknown","Directional":false,"Links":[{"SourceID":111600,"TargetID":111599,"Directional":false}]},{"ID":4068,"SourceStructureID":6120,"TargetStructureID":111607,"Label":"6120-111607 via Unknown from 111606 -> 111608","Type":"Unknown","Directional":false,"Links":[{"SourceID":111606,"TargetID":111608,"Directional":false}]},{"ID":4069,"SourceStructureID":111615,"TargetStructureID":6120,"Label":"111615-6120 via Adherens from 111617 -> 111597","Type":"Adherens","Directional":false,"Links":[{"SourceID":111617,"TargetID":111597,"Directional":false}]},{"ID":4070,"SourceStructureID":6120,"TargetStructureID":111887,"Label":"6120-111887 via Gap Junction from 111886 -> 111888","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":111886,"TargetID":111888,"Directional":false}]},{"ID":4071,"SourceStructureID":6121,"TargetStructureID":6141,"Label":"6121-6141 via Gap Junction from 122920 -> 61386, 122922 -> 61369","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122920,"TargetID":61386,"Directional":false},{"SourceID":122922,"TargetID":61369,"Directional":false}]},{"ID":4072,"SourceStructureID":6146,"TargetStructureID":6121,"Label":"6146-6121 via Adherens from 38107 -> 131951","Type":"Adherens","Directional":false,"Links":[{"SourceID":38107,"TargetID":131951,"Directional":false}]},{"ID":4073,"SourceStructureID":6146,"TargetStructureID":6121,"Label":"6146-6121 via Gap Junction from 38108 -> 38113, 38118 -> 38100, 120804 -> 121872, 131955 -> 131954","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38108,"TargetID":38113,"Directional":false},{"SourceID":38118,"TargetID":38100,"Directional":false},{"SourceID":120804,"TargetID":121872,"Directional":false},{"SourceID":131955,"TargetID":131954,"Directional":false}]},{"ID":4074,"SourceStructureID":6146,"TargetStructureID":6121,"Label":"6146-6121 via Unknown from 121860 -> 121861","Type":"Unknown","Directional":false,"Links":[{"SourceID":121860,"TargetID":121861,"Directional":false}]},{"ID":4075,"SourceStructureID":6121,"TargetStructureID":6158,"Label":"6121-6158 via Gap Junction from 120717 -> 120647, 120725 -> 120645, 120753 -> 120754, 120756 -> 120755","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120717,"TargetID":120647,"Directional":false},{"SourceID":120725,"TargetID":120645,"Directional":false},{"SourceID":120753,"TargetID":120754,"Directional":false},{"SourceID":120756,"TargetID":120755,"Directional":false}]},{"ID":4076,"SourceStructureID":22994,"TargetStructureID":6121,"Label":"22994-6121 via Gap Junction from 118141 -> 118142","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118141,"TargetID":118142,"Directional":false}]},{"ID":4077,"SourceStructureID":110607,"TargetStructureID":6121,"Label":"110607-6121 via Unknown from 126895 -> 126896","Type":"Unknown","Directional":false,"Links":[{"SourceID":126895,"TargetID":126896,"Directional":false}]},{"ID":4078,"SourceStructureID":7904,"TargetStructureID":6123,"Label":"7904-6123 via Gap Junction from 130622 -> 130616","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130622,"TargetID":130616,"Directional":false}]},{"ID":4079,"SourceStructureID":6123,"TargetStructureID":7951,"Label":"6123-7951 via Gap Junction from 37208 -> 37209, 48019 -> 132456, 118986 -> 38075, 132457 -> 48038","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37208,"TargetID":37209,"Directional":false},{"SourceID":48019,"TargetID":132456,"Directional":false},{"SourceID":118986,"TargetID":38075,"Directional":false},{"SourceID":132457,"TargetID":48038,"Directional":false}]},{"ID":4080,"SourceStructureID":6123,"TargetStructureID":34893,"Label":"6123-34893 via Adherens from 34897 -> 34896","Type":"Adherens","Directional":false,"Links":[{"SourceID":34897,"TargetID":34896,"Directional":false}]},{"ID":4081,"SourceStructureID":71517,"TargetStructureID":6123,"Label":"71517-6123 via Adherens from 74925 -> 74926, 74930 -> 47991","Type":"Adherens","Directional":false,"Links":[{"SourceID":74925,"TargetID":74926,"Directional":false},{"SourceID":74930,"TargetID":47991,"Directional":false}]},{"ID":4082,"SourceStructureID":74957,"TargetStructureID":6123,"Label":"74957-6123 via Adherens from 74960 -> 48065","Type":"Adherens","Directional":false,"Links":[{"SourceID":74960,"TargetID":48065,"Directional":false}]},{"ID":4083,"SourceStructureID":122868,"TargetStructureID":6123,"Label":"122868-6123 via Adherens from 130530 -> 130531, 132436 -> 132437","Type":"Adherens","Directional":false,"Links":[{"SourceID":130530,"TargetID":130531,"Directional":false},{"SourceID":132436,"TargetID":132437,"Directional":false}]},{"ID":4084,"SourceStructureID":122868,"TargetStructureID":6123,"Label":"122868-6123 via Gap Junction from 130527 -> 130528","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130527,"TargetID":130528,"Directional":false}]},{"ID":4085,"SourceStructureID":6127,"TargetStructureID":6129,"Label":"6127-6129 via Gap Junction from 118289 -> 118288, 122525 -> 122524, 122535 -> 122534","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118289,"TargetID":118288,"Directional":false},{"SourceID":122525,"TargetID":122524,"Directional":false},{"SourceID":122535,"TargetID":122534,"Directional":false}]},{"ID":4086,"SourceStructureID":7225,"TargetStructureID":6127,"Label":"7225-6127 via Gap Junction from 118286 -> 118287, 118291 -> 118292, 118293 -> 118294, 122632 -> 122634","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118286,"TargetID":118287,"Directional":false},{"SourceID":118291,"TargetID":118292,"Directional":false},{"SourceID":118293,"TargetID":118294,"Directional":false},{"SourceID":122632,"TargetID":122634,"Directional":false}]},{"ID":4087,"SourceStructureID":7446,"TargetStructureID":6127,"Label":"7446-6127 via Gap Junction from 35670 -> 35669, 122642 -> 123057","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35670,"TargetID":35669,"Directional":false},{"SourceID":122642,"TargetID":123057,"Directional":false}]},{"ID":4088,"SourceStructureID":7564,"TargetStructureID":6127,"Label":"7564-6127 via Gap Junction from 122540 -> 122539, 122603 -> 122604, 122606 -> 88490","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122540,"TargetID":122539,"Directional":false},{"SourceID":122603,"TargetID":122604,"Directional":false},{"SourceID":122606,"TargetID":88490,"Directional":false}]},{"ID":4089,"SourceStructureID":6127,"TargetStructureID":7861,"Label":"6127-7861 via Gap Junction from 122585 -> 122586","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122585,"TargetID":122586,"Directional":false}]},{"ID":4090,"SourceStructureID":6127,"TargetStructureID":82677,"Label":"6127-82677 via Gap Junction from 114631 -> 114630","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":114631,"TargetID":114630,"Directional":false}]},{"ID":4091,"SourceStructureID":94189,"TargetStructureID":6127,"Label":"94189-6127 via Gap Junction from 122614 -> 122613","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122614,"TargetID":122613,"Directional":false}]},{"ID":4092,"SourceStructureID":7346,"TargetStructureID":6128,"Label":"7346-6128 via Adherens from 45429 -> 45430","Type":"Adherens","Directional":false,"Links":[{"SourceID":45429,"TargetID":45430,"Directional":false}]},{"ID":4093,"SourceStructureID":7346,"TargetStructureID":6128,"Label":"7346-6128 via Gap Junction from 43851 -> 20869, 44028 -> 20882, 44067 -> 20890, 45230 -> 45229, 45416 -> 45418","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43851,"TargetID":20869,"Directional":false},{"SourceID":44028,"TargetID":20882,"Directional":false},{"SourceID":44067,"TargetID":20890,"Directional":false},{"SourceID":45230,"TargetID":45229,"Directional":false},{"SourceID":45416,"TargetID":45418,"Directional":false}]},{"ID":4094,"SourceStructureID":32359,"TargetStructureID":6128,"Label":"32359-6128 via Gap Junction from 41681 -> 21096","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":41681,"TargetID":21096,"Directional":false}]},{"ID":4095,"SourceStructureID":6128,"TargetStructureID":43207,"Label":"6128-43207 via Adherens from 60743 -> 60742","Type":"Adherens","Directional":false,"Links":[{"SourceID":60743,"TargetID":60742,"Directional":false}]},{"ID":4096,"SourceStructureID":6129,"TargetStructureID":7576,"Label":"6129-7576 via Gap Junction from 54773 -> 54774","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54773,"TargetID":54774,"Directional":false}]},{"ID":4097,"SourceStructureID":7576,"TargetStructureID":6129,"Label":"7576-6129 via Unknown from 92621 -> 92620","Type":"Unknown","Directional":false,"Links":[{"SourceID":92621,"TargetID":92620,"Directional":false}]},{"ID":4098,"SourceStructureID":6129,"TargetStructureID":82677,"Label":"6129-82677 via Adherens from 83664 -> 83663","Type":"Adherens","Directional":false,"Links":[{"SourceID":83664,"TargetID":83663,"Directional":false}]},{"ID":4099,"SourceStructureID":6129,"TargetStructureID":82677,"Label":"6129-82677 via Gap Junction from 83666 -> 83665, 114632 -> 114634","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83666,"TargetID":83665,"Directional":false},{"SourceID":114632,"TargetID":114634,"Directional":false}]},{"ID":4100,"SourceStructureID":6131,"TargetStructureID":13525,"Label":"6131-13525 via Adherens from 158491 -> 130231","Type":"Adherens","Directional":false,"Links":[{"SourceID":158491,"TargetID":130231,"Directional":false}]},{"ID":4101,"SourceStructureID":6131,"TargetStructureID":32359,"Label":"6131-32359 via Gap Junction from 43673 -> 41324","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43673,"TargetID":41324,"Directional":false}]},{"ID":4102,"SourceStructureID":6133,"TargetStructureID":65438,"Label":"6133-65438 via Gap Junction from 37393 -> 65442","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37393,"TargetID":65442,"Directional":false}]},{"ID":4103,"SourceStructureID":6134,"TargetStructureID":32465,"Label":"6134-32465 via Adherens from 32475 -> 32474","Type":"Adherens","Directional":false,"Links":[{"SourceID":32475,"TargetID":32474,"Directional":false}]},{"ID":4104,"SourceStructureID":6138,"TargetStructureID":57353,"Label":"6138-57353 via Unknown from 124274 -> 124273","Type":"Unknown","Directional":false,"Links":[{"SourceID":124274,"TargetID":124273,"Directional":false}]},{"ID":4105,"SourceStructureID":8032,"TargetStructureID":6141,"Label":"8032-6141 via Gap Junction from 26703 -> 61367, 26712 -> 61362, 32522 -> 32518, 61363 -> 26713, 61390 -> 26702","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":26703,"TargetID":61367,"Directional":false},{"SourceID":26712,"TargetID":61362,"Directional":false},{"SourceID":32522,"TargetID":32518,"Directional":false},{"SourceID":61363,"TargetID":26713,"Directional":false},{"SourceID":61390,"TargetID":26702,"Directional":false}]},{"ID":4106,"SourceStructureID":22994,"TargetStructureID":6141,"Label":"22994-6141 via Adherens from 56753 -> 56754","Type":"Adherens","Directional":false,"Links":[{"SourceID":56753,"TargetID":56754,"Directional":false}]},{"ID":4107,"SourceStructureID":6141,"TargetStructureID":22994,"Label":"6141-22994 via Gap Junction from 56752 -> 56751, 118123 -> 118124, 118138 -> 118137","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56752,"TargetID":56751,"Directional":false},{"SourceID":118123,"TargetID":118124,"Directional":false},{"SourceID":118138,"TargetID":118137,"Directional":false}]},{"ID":4108,"SourceStructureID":6141,"TargetStructureID":57353,"Label":"6141-57353 via Gap Junction from 61408 -> 124291, 122938 -> 122937, 124330 -> 124331, 124397 -> 124396, 124410 -> 124409","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61408,"TargetID":124291,"Directional":false},{"SourceID":122938,"TargetID":122937,"Directional":false},{"SourceID":124330,"TargetID":124331,"Directional":false},{"SourceID":124397,"TargetID":124396,"Directional":false},{"SourceID":124410,"TargetID":124409,"Directional":false}]},{"ID":4109,"SourceStructureID":6141,"TargetStructureID":57353,"Label":"6141-57353 via Touch from 124424 -> 124423","Type":"Touch","Directional":false,"Links":[{"SourceID":124424,"TargetID":124423,"Directional":false}]},{"ID":4110,"SourceStructureID":61397,"TargetStructureID":6141,"Label":"61397-6141 via Gap Junction from 61398 -> 61396","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61398,"TargetID":61396,"Directional":false}]},{"ID":4111,"SourceStructureID":6142,"TargetStructureID":6142,"Label":"6142-6142 via Gap Junction from 117158 -> 117154, 117161 -> 117157, 117162 -> 117152, 117169 -> 117167","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117158,"TargetID":117154,"Directional":false},{"SourceID":117161,"TargetID":117157,"Directional":false},{"SourceID":117162,"TargetID":117152,"Directional":false},{"SourceID":117169,"TargetID":117167,"Directional":false}]},{"ID":4112,"SourceStructureID":6142,"TargetStructureID":6958,"Label":"6142-6958 via Gap Junction from 27532 -> 27526","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":27532,"TargetID":27526,"Directional":false}]},{"ID":4113,"SourceStructureID":8032,"TargetStructureID":6142,"Label":"8032-6142 via Gap Junction from 32523 -> 16118, 32525 -> 32524","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32523,"TargetID":16118,"Directional":false},{"SourceID":32525,"TargetID":32524,"Directional":false}]},{"ID":4114,"SourceStructureID":6142,"TargetStructureID":57353,"Label":"6142-57353 via Unknown from 124420 -> 124419","Type":"Unknown","Directional":false,"Links":[{"SourceID":124420,"TargetID":124419,"Directional":false}]},{"ID":4115,"SourceStructureID":89775,"TargetStructureID":6142,"Label":"89775-6142 via Adherens from 89784 -> 16115, 89785 -> 89786","Type":"Adherens","Directional":false,"Links":[{"SourceID":89784,"TargetID":16115,"Directional":false},{"SourceID":89785,"TargetID":89786,"Directional":false}]},{"ID":4116,"SourceStructureID":6162,"TargetStructureID":6146,"Label":"6162-6146 via Gap Junction from 120811 -> 120810, 121879 -> 120805, 131999 -> 132000","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120811,"TargetID":120810,"Directional":false},{"SourceID":121879,"TargetID":120805,"Directional":false},{"SourceID":131999,"TargetID":132000,"Directional":false}]},{"ID":4117,"SourceStructureID":7904,"TargetStructureID":6146,"Label":"7904-6146 via Gap Junction from 120813 -> 120812, 121887 -> 120806, 131928 -> 121888","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120813,"TargetID":120812,"Directional":false},{"SourceID":121887,"TargetID":120806,"Directional":false},{"SourceID":131928,"TargetID":121888,"Directional":false}]},{"ID":4118,"SourceStructureID":8032,"TargetStructureID":6146,"Label":"8032-6146 via Gap Junction from 32508 -> 56734","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32508,"TargetID":56734,"Directional":false}]},{"ID":4119,"SourceStructureID":9769,"TargetStructureID":6146,"Label":"9769-6146 via Adherens from 38104 -> 38103","Type":"Adherens","Directional":false,"Links":[{"SourceID":38104,"TargetID":38103,"Directional":false}]},{"ID":4120,"SourceStructureID":22994,"TargetStructureID":6146,"Label":"22994-6146 via Gap Junction from 56742 -> 56736, 56746 -> 56747","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56742,"TargetID":56736,"Directional":false},{"SourceID":56746,"TargetID":56747,"Directional":false}]},{"ID":4121,"SourceStructureID":30177,"TargetStructureID":6146,"Label":"30177-6146 via Gap Junction from 131963 -> 131964, 131970 -> 131971","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131963,"TargetID":131964,"Directional":false},{"SourceID":131970,"TargetID":131971,"Directional":false}]},{"ID":4122,"SourceStructureID":6146,"TargetStructureID":87419,"Label":"6146-87419 via Adherens from 87423 -> 87422","Type":"Adherens","Directional":false,"Links":[{"SourceID":87423,"TargetID":87422,"Directional":false}]},{"ID":4123,"SourceStructureID":6146,"TargetStructureID":121864,"Label":"6146-121864 via Gap Junction from 121863 -> 121865","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121863,"TargetID":121865,"Directional":false}]},{"ID":4124,"SourceStructureID":6146,"TargetStructureID":121866,"Label":"6146-121866 via Gap Junction from 131960 -> 131959","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131960,"TargetID":131959,"Directional":false}]},{"ID":4125,"SourceStructureID":6146,"TargetStructureID":121881,"Label":"6146-121881 via Gap Junction from 121877 -> 121882","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121877,"TargetID":121882,"Directional":false}]},{"ID":4126,"SourceStructureID":121889,"TargetStructureID":6146,"Label":"121889-6146 via Gap Junction from 121890 -> 120807","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121890,"TargetID":120807,"Directional":false}]},{"ID":4127,"SourceStructureID":6146,"TargetStructureID":121893,"Label":"6146-121893 via Gap Junction from 121892 -> 121894","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121892,"TargetID":121894,"Directional":false}]},{"ID":4128,"SourceStructureID":6146,"TargetStructureID":121899,"Label":"6146-121899 via Gap Junction from 120809 -> 121901","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120809,"TargetID":121901,"Directional":false}]},{"ID":4129,"SourceStructureID":6146,"TargetStructureID":131988,"Label":"6146-131988 via Gap Junction from 131989 -> 131990, 131991 -> 131992","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131989,"TargetID":131990,"Directional":false},{"SourceID":131991,"TargetID":131992,"Directional":false}]},{"ID":4130,"SourceStructureID":6153,"TargetStructureID":6153,"Label":"6153-6153 via Gap Junction from 71559 -> 17468","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71559,"TargetID":17468,"Directional":false}]},{"ID":4131,"SourceStructureID":6153,"TargetStructureID":7157,"Label":"6153-7157 via Adherens from 26520 -> 26519","Type":"Adherens","Directional":false,"Links":[{"SourceID":26520,"TargetID":26519,"Directional":false}]},{"ID":4132,"SourceStructureID":7157,"TargetStructureID":6153,"Label":"7157-6153 via Gap Junction from 24531 -> 24528, 29500 -> 29499","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24531,"TargetID":24528,"Directional":false},{"SourceID":29500,"TargetID":29499,"Directional":false}]},{"ID":4133,"SourceStructureID":6153,"TargetStructureID":15412,"Label":"6153-15412 via Adherens from 15415 -> 15414","Type":"Adherens","Directional":false,"Links":[{"SourceID":15415,"TargetID":15414,"Directional":false}]},{"ID":4134,"SourceStructureID":6153,"TargetStructureID":37295,"Label":"6153-37295 via Gap Junction from 24533 -> 130520, 39164 -> 39163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24533,"TargetID":130520,"Directional":false},{"SourceID":39164,"TargetID":39163,"Directional":false}]},{"ID":4135,"SourceStructureID":100055,"TargetStructureID":6153,"Label":"100055-6153 via Adherens from 100057 -> 100058","Type":"Adherens","Directional":false,"Links":[{"SourceID":100057,"TargetID":100058,"Directional":false}]},{"ID":4136,"SourceStructureID":6153,"TargetStructureID":114925,"Label":"6153-114925 via Adherens from 114928 -> 114927","Type":"Adherens","Directional":false,"Links":[{"SourceID":114928,"TargetID":114927,"Directional":false}]},{"ID":4137,"SourceStructureID":6155,"TargetStructureID":6155,"Label":"6155-6155 via Gap Junction from 108283 -> 108282","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108283,"TargetID":108282,"Directional":false}]},{"ID":4138,"SourceStructureID":6300,"TargetStructureID":6155,"Label":"6300-6155 via Adherens from 104890 -> 104891","Type":"Adherens","Directional":false,"Links":[{"SourceID":104890,"TargetID":104891,"Directional":false}]},{"ID":4139,"SourceStructureID":8720,"TargetStructureID":6155,"Label":"8720-6155 via Unknown from 104924 -> 104925","Type":"Unknown","Directional":false,"Links":[{"SourceID":104924,"TargetID":104925,"Directional":false}]},{"ID":4140,"SourceStructureID":6155,"TargetStructureID":9260,"Label":"6155-9260 via Unknown from 107825 -> 107826","Type":"Unknown","Directional":false,"Links":[{"SourceID":107825,"TargetID":107826,"Directional":false}]},{"ID":4141,"SourceStructureID":9769,"TargetStructureID":6155,"Label":"9769-6155 via Unknown from 106039 -> 105989","Type":"Unknown","Directional":false,"Links":[{"SourceID":106039,"TargetID":105989,"Directional":false}]},{"ID":4142,"SourceStructureID":18693,"TargetStructureID":6155,"Label":"18693-6155 via Adherens from 106121 -> 106122","Type":"Adherens","Directional":false,"Links":[{"SourceID":106121,"TargetID":106122,"Directional":false}]},{"ID":4143,"SourceStructureID":6155,"TargetStructureID":24401,"Label":"6155-24401 via Gap Junction from 15553 -> 34748, 34786 -> 34782, 48035 -> 48036, 104939 -> 104938, 104944 -> 104946, 107924 -> 107925, 121132 -> 121131, 121133 -> 121134","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":15553,"TargetID":34748,"Directional":false},{"SourceID":34786,"TargetID":34782,"Directional":false},{"SourceID":48035,"TargetID":48036,"Directional":false},{"SourceID":104939,"TargetID":104938,"Directional":false},{"SourceID":104944,"TargetID":104946,"Directional":false},{"SourceID":107924,"TargetID":107925,"Directional":false},{"SourceID":121132,"TargetID":121131,"Directional":false},{"SourceID":121133,"TargetID":121134,"Directional":false}]},{"ID":4144,"SourceStructureID":26079,"TargetStructureID":6155,"Label":"26079-6155 via Adherens from 106359 -> 106360, 106405 -> 106406, 106407 -> 106408","Type":"Adherens","Directional":false,"Links":[{"SourceID":106359,"TargetID":106360,"Directional":false},{"SourceID":106405,"TargetID":106406,"Directional":false},{"SourceID":106407,"TargetID":106408,"Directional":false}]},{"ID":4145,"SourceStructureID":6155,"TargetStructureID":26079,"Label":"6155-26079 via Gap Junction from 35911 -> 35910, 48264 -> 106869, 106052 -> 106053, 106073 -> 106074, 106401 -> 106402, 106433 -> 106434, 121240 -> 121239","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35911,"TargetID":35910,"Directional":false},{"SourceID":48264,"TargetID":106869,"Directional":false},{"SourceID":106052,"TargetID":106053,"Directional":false},{"SourceID":106073,"TargetID":106074,"Directional":false},{"SourceID":106401,"TargetID":106402,"Directional":false},{"SourceID":106433,"TargetID":106434,"Directional":false},{"SourceID":121240,"TargetID":121239,"Directional":false}]},{"ID":4146,"SourceStructureID":26079,"TargetStructureID":6155,"Label":"26079-6155 via Unknown from 106017 -> 106014, 106054 -> 106055, 107873 -> 107874, 108044 -> 108046, 121252 -> 121253","Type":"Unknown","Directional":false,"Links":[{"SourceID":106017,"TargetID":106014,"Directional":false},{"SourceID":106054,"TargetID":106055,"Directional":false},{"SourceID":107873,"TargetID":107874,"Directional":false},{"SourceID":108044,"TargetID":108046,"Directional":false},{"SourceID":121252,"TargetID":121253,"Directional":false}]},{"ID":4147,"SourceStructureID":36421,"TargetStructureID":6155,"Label":"36421-6155 via Gap Junction from 108128 -> 108129","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":108128,"TargetID":108129,"Directional":false}]},{"ID":4148,"SourceStructureID":36421,"TargetStructureID":6155,"Label":"36421-6155 via Unknown from 108135 -> 108136, 108213 -> 108214","Type":"Unknown","Directional":false,"Links":[{"SourceID":108135,"TargetID":108136,"Directional":false},{"SourceID":108213,"TargetID":108214,"Directional":false}]},{"ID":4149,"SourceStructureID":6155,"TargetStructureID":39867,"Label":"6155-39867 via Gap Junction from 49074 -> 49075","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49074,"TargetID":49075,"Directional":false}]},{"ID":4150,"SourceStructureID":101620,"TargetStructureID":6155,"Label":"101620-6155 via Adherens from 107771 -> 107772","Type":"Adherens","Directional":false,"Links":[{"SourceID":107771,"TargetID":107772,"Directional":false}]},{"ID":4151,"SourceStructureID":6155,"TargetStructureID":104879,"Label":"6155-104879 via Unknown from 104884 -> 104885","Type":"Unknown","Directional":false,"Links":[{"SourceID":104884,"TargetID":104885,"Directional":false}]},{"ID":4152,"SourceStructureID":6155,"TargetStructureID":104895,"Label":"6155-104895 via Unknown from 104896 -> 104897","Type":"Unknown","Directional":false,"Links":[{"SourceID":104896,"TargetID":104897,"Directional":false}]},{"ID":4153,"SourceStructureID":104909,"TargetStructureID":6155,"Label":"104909-6155 via Unknown from 104910 -> 104911","Type":"Unknown","Directional":false,"Links":[{"SourceID":104910,"TargetID":104911,"Directional":false}]},{"ID":4154,"SourceStructureID":6155,"TargetStructureID":104914,"Label":"6155-104914 via Unknown from 104915 -> 104916","Type":"Unknown","Directional":false,"Links":[{"SourceID":104915,"TargetID":104916,"Directional":false}]},{"ID":4155,"SourceStructureID":6155,"TargetStructureID":104940,"Label":"6155-104940 via Unknown from 104941 -> 104942","Type":"Unknown","Directional":false,"Links":[{"SourceID":104941,"TargetID":104942,"Directional":false}]},{"ID":4156,"SourceStructureID":104954,"TargetStructureID":6155,"Label":"104954-6155 via Adherens from 104955 -> 104956","Type":"Adherens","Directional":false,"Links":[{"SourceID":104955,"TargetID":104956,"Directional":false}]},{"ID":4157,"SourceStructureID":6155,"TargetStructureID":104968,"Label":"6155-104968 via Unknown from 104967 -> 104969","Type":"Unknown","Directional":false,"Links":[{"SourceID":104967,"TargetID":104969,"Directional":false}]},{"ID":4158,"SourceStructureID":104976,"TargetStructureID":6155,"Label":"104976-6155 via Unknown from 104977 -> 104978","Type":"Unknown","Directional":false,"Links":[{"SourceID":104977,"TargetID":104978,"Directional":false}]},{"ID":4159,"SourceStructureID":6155,"TargetStructureID":105844,"Label":"6155-105844 via Adherens from 16875 -> 105850","Type":"Adherens","Directional":false,"Links":[{"SourceID":16875,"TargetID":105850,"Directional":false}]},{"ID":4160,"SourceStructureID":6155,"TargetStructureID":105865,"Label":"6155-105865 via Unknown from 105864 -> 105866","Type":"Unknown","Directional":false,"Links":[{"SourceID":105864,"TargetID":105866,"Directional":false}]},{"ID":4161,"SourceStructureID":6155,"TargetStructureID":105881,"Label":"6155-105881 via Unknown from 105887 -> 105901","Type":"Unknown","Directional":false,"Links":[{"SourceID":105887,"TargetID":105901,"Directional":false}]},{"ID":4162,"SourceStructureID":6155,"TargetStructureID":105904,"Label":"6155-105904 via Adherens from 16873 -> 105905","Type":"Adherens","Directional":false,"Links":[{"SourceID":16873,"TargetID":105905,"Directional":false}]},{"ID":4163,"SourceStructureID":6155,"TargetStructureID":105904,"Label":"6155-105904 via Unknown from 105922 -> 105921","Type":"Unknown","Directional":false,"Links":[{"SourceID":105922,"TargetID":105921,"Directional":false}]},{"ID":4164,"SourceStructureID":6155,"TargetStructureID":105928,"Label":"6155-105928 via Adherens from 105955 -> 105956","Type":"Adherens","Directional":false,"Links":[{"SourceID":105955,"TargetID":105956,"Directional":false}]},{"ID":4165,"SourceStructureID":105928,"TargetStructureID":6155,"Label":"105928-6155 via Unknown from 105958 -> 105957","Type":"Unknown","Directional":false,"Links":[{"SourceID":105958,"TargetID":105957,"Directional":false}]},{"ID":4166,"SourceStructureID":6155,"TargetStructureID":105992,"Label":"6155-105992 via Adherens from 16878 -> 106044","Type":"Adherens","Directional":false,"Links":[{"SourceID":16878,"TargetID":106044,"Directional":false}]},{"ID":4167,"SourceStructureID":106008,"TargetStructureID":6155,"Label":"106008-6155 via Unknown from 106010 -> 106011","Type":"Unknown","Directional":false,"Links":[{"SourceID":106010,"TargetID":106011,"Directional":false}]},{"ID":4168,"SourceStructureID":106056,"TargetStructureID":6155,"Label":"106056-6155 via Unknown from 106057 -> 106058","Type":"Unknown","Directional":false,"Links":[{"SourceID":106057,"TargetID":106058,"Directional":false}]},{"ID":4169,"SourceStructureID":6155,"TargetStructureID":106064,"Label":"6155-106064 via Adherens from 15759 -> 106066","Type":"Adherens","Directional":false,"Links":[{"SourceID":15759,"TargetID":106066,"Directional":false}]},{"ID":4170,"SourceStructureID":6155,"TargetStructureID":106080,"Label":"6155-106080 via Adherens from 106081 -> 106082","Type":"Adherens","Directional":false,"Links":[{"SourceID":106081,"TargetID":106082,"Directional":false}]},{"ID":4171,"SourceStructureID":6155,"TargetStructureID":106083,"Label":"6155-106083 via Unknown from 106086 -> 106085","Type":"Unknown","Directional":false,"Links":[{"SourceID":106086,"TargetID":106085,"Directional":false}]},{"ID":4172,"SourceStructureID":6155,"TargetStructureID":106095,"Label":"6155-106095 via Adherens from 106117 -> 106118","Type":"Adherens","Directional":false,"Links":[{"SourceID":106117,"TargetID":106118,"Directional":false}]},{"ID":4173,"SourceStructureID":6155,"TargetStructureID":106110,"Label":"6155-106110 via Adherens from 106366 -> 106367","Type":"Adherens","Directional":false,"Links":[{"SourceID":106366,"TargetID":106367,"Directional":false}]},{"ID":4174,"SourceStructureID":6155,"TargetStructureID":106384,"Label":"6155-106384 via Adherens from 106392 -> 106393","Type":"Adherens","Directional":false,"Links":[{"SourceID":106392,"TargetID":106393,"Directional":false}]},{"ID":4175,"SourceStructureID":106384,"TargetStructureID":6155,"Label":"106384-6155 via Unknown from 106385 -> 106383","Type":"Unknown","Directional":false,"Links":[{"SourceID":106385,"TargetID":106383,"Directional":false}]},{"ID":4176,"SourceStructureID":6155,"TargetStructureID":106410,"Label":"6155-106410 via Adherens from 106411 -> 106412","Type":"Adherens","Directional":false,"Links":[{"SourceID":106411,"TargetID":106412,"Directional":false}]},{"ID":4177,"SourceStructureID":6155,"TargetStructureID":106448,"Label":"6155-106448 via Adherens from 106449 -> 106450","Type":"Adherens","Directional":false,"Links":[{"SourceID":106449,"TargetID":106450,"Directional":false}]},{"ID":4178,"SourceStructureID":6155,"TargetStructureID":106451,"Label":"6155-106451 via Gap Junction from 106452 -> 106453","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":106452,"TargetID":106453,"Directional":false}]},{"ID":4179,"SourceStructureID":6155,"TargetStructureID":106480,"Label":"6155-106480 via Adherens from 15811 -> 106481","Type":"Adherens","Directional":false,"Links":[{"SourceID":15811,"TargetID":106481,"Directional":false}]},{"ID":4180,"SourceStructureID":6155,"TargetStructureID":106571,"Label":"6155-106571 via Unknown from 106570 -> 106572","Type":"Unknown","Directional":false,"Links":[{"SourceID":106570,"TargetID":106572,"Directional":false}]},{"ID":4181,"SourceStructureID":6155,"TargetStructureID":106574,"Label":"6155-106574 via Adherens from 106575 -> 106576","Type":"Adherens","Directional":false,"Links":[{"SourceID":106575,"TargetID":106576,"Directional":false}]},{"ID":4182,"SourceStructureID":106629,"TargetStructureID":6155,"Label":"106629-6155 via Adherens from 106630 -> 106631","Type":"Adherens","Directional":false,"Links":[{"SourceID":106630,"TargetID":106631,"Directional":false}]},{"ID":4183,"SourceStructureID":6155,"TargetStructureID":106705,"Label":"6155-106705 via Adherens from 106707 -> 106708","Type":"Adherens","Directional":false,"Links":[{"SourceID":106707,"TargetID":106708,"Directional":false}]},{"ID":4184,"SourceStructureID":6155,"TargetStructureID":106744,"Label":"6155-106744 via Unknown from 106743 -> 106745","Type":"Unknown","Directional":false,"Links":[{"SourceID":106743,"TargetID":106745,"Directional":false}]},{"ID":4185,"SourceStructureID":6155,"TargetStructureID":106776,"Label":"6155-106776 via Adherens from 108272 -> 108271","Type":"Adherens","Directional":false,"Links":[{"SourceID":108272,"TargetID":108271,"Directional":false}]},{"ID":4186,"SourceStructureID":106776,"TargetStructureID":6155,"Label":"106776-6155 via Unknown from 106787 -> 106788","Type":"Unknown","Directional":false,"Links":[{"SourceID":106787,"TargetID":106788,"Directional":false}]},{"ID":4187,"SourceStructureID":106805,"TargetStructureID":6155,"Label":"106805-6155 via Unknown from 106806 -> 106808","Type":"Unknown","Directional":false,"Links":[{"SourceID":106806,"TargetID":106808,"Directional":false}]},{"ID":4188,"SourceStructureID":6155,"TargetStructureID":106836,"Label":"6155-106836 via Adherens from 106837 -> 106838","Type":"Adherens","Directional":false,"Links":[{"SourceID":106837,"TargetID":106838,"Directional":false}]},{"ID":4189,"SourceStructureID":106842,"TargetStructureID":6155,"Label":"106842-6155 via Unknown from 106843 -> 106840","Type":"Unknown","Directional":false,"Links":[{"SourceID":106843,"TargetID":106840,"Directional":false}]},{"ID":4190,"SourceStructureID":6155,"TargetStructureID":107619,"Label":"6155-107619 via Adherens from 107620 -> 107621","Type":"Adherens","Directional":false,"Links":[{"SourceID":107620,"TargetID":107621,"Directional":false}]},{"ID":4191,"SourceStructureID":6155,"TargetStructureID":107753,"Label":"6155-107753 via Adherens from 107775 -> 107776","Type":"Adherens","Directional":false,"Links":[{"SourceID":107775,"TargetID":107776,"Directional":false}]},{"ID":4192,"SourceStructureID":107769,"TargetStructureID":6155,"Label":"107769-6155 via Unknown from 107773 -> 107774","Type":"Unknown","Directional":false,"Links":[{"SourceID":107773,"TargetID":107774,"Directional":false}]},{"ID":4193,"SourceStructureID":107781,"TargetStructureID":6155,"Label":"107781-6155 via Adherens from 107783 -> 107782","Type":"Adherens","Directional":false,"Links":[{"SourceID":107783,"TargetID":107782,"Directional":false}]},{"ID":4194,"SourceStructureID":6155,"TargetStructureID":107794,"Label":"6155-107794 via Adherens from 107813 -> 107814","Type":"Adherens","Directional":false,"Links":[{"SourceID":107813,"TargetID":107814,"Directional":false}]},{"ID":4195,"SourceStructureID":6155,"TargetStructureID":107802,"Label":"6155-107802 via Adherens from 107804 -> 107803","Type":"Adherens","Directional":false,"Links":[{"SourceID":107804,"TargetID":107803,"Directional":false}]},{"ID":4196,"SourceStructureID":6155,"TargetStructureID":107805,"Label":"6155-107805 via Adherens from 16132 -> 107806","Type":"Adherens","Directional":false,"Links":[{"SourceID":16132,"TargetID":107806,"Directional":false}]},{"ID":4197,"SourceStructureID":107845,"TargetStructureID":6155,"Label":"107845-6155 via Adherens from 107847 -> 107848","Type":"Adherens","Directional":false,"Links":[{"SourceID":107847,"TargetID":107848,"Directional":false}]},{"ID":4198,"SourceStructureID":6155,"TargetStructureID":107857,"Label":"6155-107857 via Adherens from 107858 -> 107859","Type":"Adherens","Directional":false,"Links":[{"SourceID":107858,"TargetID":107859,"Directional":false}]},{"ID":4199,"SourceStructureID":107860,"TargetStructureID":6155,"Label":"107860-6155 via Adherens from 107861 -> 107862","Type":"Adherens","Directional":false,"Links":[{"SourceID":107861,"TargetID":107862,"Directional":false}]},{"ID":4200,"SourceStructureID":6155,"TargetStructureID":107887,"Label":"6155-107887 via Adherens from 107886 -> 107892","Type":"Adherens","Directional":false,"Links":[{"SourceID":107886,"TargetID":107892,"Directional":false}]},{"ID":4201,"SourceStructureID":107889,"TargetStructureID":6155,"Label":"107889-6155 via Unknown from 107890 -> 107891","Type":"Unknown","Directional":false,"Links":[{"SourceID":107890,"TargetID":107891,"Directional":false}]},{"ID":4202,"SourceStructureID":6155,"TargetStructureID":107894,"Label":"6155-107894 via Adherens from 107895 -> 107896","Type":"Adherens","Directional":false,"Links":[{"SourceID":107895,"TargetID":107896,"Directional":false}]},{"ID":4203,"SourceStructureID":6155,"TargetStructureID":107897,"Label":"6155-107897 via Adherens from 107898 -> 107899","Type":"Adherens","Directional":false,"Links":[{"SourceID":107898,"TargetID":107899,"Directional":false}]},{"ID":4204,"SourceStructureID":107900,"TargetStructureID":6155,"Label":"107900-6155 via Unknown from 107901 -> 107902","Type":"Unknown","Directional":false,"Links":[{"SourceID":107901,"TargetID":107902,"Directional":false}]},{"ID":4205,"SourceStructureID":6155,"TargetStructureID":107928,"Label":"6155-107928 via Adherens from 15539 -> 107929","Type":"Adherens","Directional":false,"Links":[{"SourceID":15539,"TargetID":107929,"Directional":false}]},{"ID":4206,"SourceStructureID":6155,"TargetStructureID":107933,"Label":"6155-107933 via Adherens from 107934 -> 107936","Type":"Adherens","Directional":false,"Links":[{"SourceID":107934,"TargetID":107936,"Directional":false}]},{"ID":4207,"SourceStructureID":107944,"TargetStructureID":6155,"Label":"107944-6155 via Adherens from 107945 -> 107946","Type":"Adherens","Directional":false,"Links":[{"SourceID":107945,"TargetID":107946,"Directional":false}]},{"ID":4208,"SourceStructureID":6155,"TargetStructureID":107979,"Label":"6155-107979 via Adherens from 15543 -> 107980","Type":"Adherens","Directional":false,"Links":[{"SourceID":15543,"TargetID":107980,"Directional":false}]},{"ID":4209,"SourceStructureID":6155,"TargetStructureID":107989,"Label":"6155-107989 via Adherens from 107990 -> 107991","Type":"Adherens","Directional":false,"Links":[{"SourceID":107990,"TargetID":107991,"Directional":false}]},{"ID":4210,"SourceStructureID":6155,"TargetStructureID":107992,"Label":"6155-107992 via Adherens from 15570 -> 108003","Type":"Adherens","Directional":false,"Links":[{"SourceID":15570,"TargetID":108003,"Directional":false}]},{"ID":4211,"SourceStructureID":107999,"TargetStructureID":6155,"Label":"107999-6155 via Adherens from 108002 -> 108001","Type":"Adherens","Directional":false,"Links":[{"SourceID":108002,"TargetID":108001,"Directional":false}]},{"ID":4212,"SourceStructureID":108031,"TargetStructureID":6155,"Label":"108031-6155 via Adherens from 108035 -> 108036","Type":"Adherens","Directional":false,"Links":[{"SourceID":108035,"TargetID":108036,"Directional":false}]},{"ID":4213,"SourceStructureID":108053,"TargetStructureID":6155,"Label":"108053-6155 via Adherens from 108054 -> 108056","Type":"Adherens","Directional":false,"Links":[{"SourceID":108054,"TargetID":108056,"Directional":false}]},{"ID":4214,"SourceStructureID":6155,"TargetStructureID":108064,"Label":"6155-108064 via Gap Junction from 48306 -> 108065","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48306,"TargetID":108065,"Directional":false}]},{"ID":4215,"SourceStructureID":108066,"TargetStructureID":6155,"Label":"108066-6155 via Adherens from 108067 -> 108068, 108071 -> 108070","Type":"Adherens","Directional":false,"Links":[{"SourceID":108067,"TargetID":108068,"Directional":false},{"SourceID":108071,"TargetID":108070,"Directional":false}]},{"ID":4216,"SourceStructureID":108072,"TargetStructureID":6155,"Label":"108072-6155 via Adherens from 108074 -> 108075","Type":"Adherens","Directional":false,"Links":[{"SourceID":108074,"TargetID":108075,"Directional":false}]},{"ID":4217,"SourceStructureID":6155,"TargetStructureID":108072,"Label":"6155-108072 via Gap Junction from 48302 -> 108073","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48302,"TargetID":108073,"Directional":false}]},{"ID":4218,"SourceStructureID":6155,"TargetStructureID":108076,"Label":"6155-108076 via Adherens from 49081 -> 108077","Type":"Adherens","Directional":false,"Links":[{"SourceID":49081,"TargetID":108077,"Directional":false}]},{"ID":4219,"SourceStructureID":6155,"TargetStructureID":108114,"Label":"6155-108114 via Unknown from 108116 -> 108115","Type":"Unknown","Directional":false,"Links":[{"SourceID":108116,"TargetID":108115,"Directional":false}]},{"ID":4220,"SourceStructureID":108162,"TargetStructureID":6155,"Label":"108162-6155 via Unknown from 108163 -> 108161","Type":"Unknown","Directional":false,"Links":[{"SourceID":108163,"TargetID":108161,"Directional":false}]},{"ID":4221,"SourceStructureID":6155,"TargetStructureID":108235,"Label":"6155-108235 via Adherens from 108245 -> 108244","Type":"Adherens","Directional":false,"Links":[{"SourceID":108245,"TargetID":108244,"Directional":false}]},{"ID":4222,"SourceStructureID":108289,"TargetStructureID":6155,"Label":"108289-6155 via Adherens from 108291 -> 108290","Type":"Adherens","Directional":false,"Links":[{"SourceID":108291,"TargetID":108290,"Directional":false}]},{"ID":4223,"SourceStructureID":6155,"TargetStructureID":108300,"Label":"6155-108300 via Unknown from 108303 -> 108304","Type":"Unknown","Directional":false,"Links":[{"SourceID":108303,"TargetID":108304,"Directional":false}]},{"ID":4224,"SourceStructureID":108351,"TargetStructureID":6155,"Label":"108351-6155 via Unknown from 108352 -> 108350","Type":"Unknown","Directional":false,"Links":[{"SourceID":108352,"TargetID":108350,"Directional":false}]},{"ID":4225,"SourceStructureID":6857,"TargetStructureID":6156,"Label":"6857-6156 via Unknown from 133425 -> 133426","Type":"Unknown","Directional":false,"Links":[{"SourceID":133425,"TargetID":133426,"Directional":false}]},{"ID":4226,"SourceStructureID":6997,"TargetStructureID":6156,"Label":"6997-6156 via Gap Junction from 135075 -> 135074","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135075,"TargetID":135074,"Directional":false}]},{"ID":4227,"SourceStructureID":6156,"TargetStructureID":6997,"Label":"6156-6997 via Touch from 136724 -> 136725","Type":"Touch","Directional":false,"Links":[{"SourceID":136724,"TargetID":136725,"Directional":false}]},{"ID":4228,"SourceStructureID":6156,"TargetStructureID":8037,"Label":"6156-8037 via Adherens from 133323 -> 133322","Type":"Adherens","Directional":false,"Links":[{"SourceID":133323,"TargetID":133322,"Directional":false}]},{"ID":4229,"SourceStructureID":8037,"TargetStructureID":6156,"Label":"8037-6156 via Gap Junction from 117528 -> 117527","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117528,"TargetID":117527,"Directional":false}]},{"ID":4230,"SourceStructureID":6156,"TargetStructureID":12208,"Label":"6156-12208 via Adherens from 22345 -> 22344","Type":"Adherens","Directional":false,"Links":[{"SourceID":22345,"TargetID":22344,"Directional":false}]},{"ID":4231,"SourceStructureID":18576,"TargetStructureID":6156,"Label":"18576-6156 via Adherens from 133215 -> 133214","Type":"Adherens","Directional":false,"Links":[{"SourceID":133215,"TargetID":133214,"Directional":false}]},{"ID":4232,"SourceStructureID":6156,"TargetStructureID":39530,"Label":"6156-39530 via Unknown from 133376 -> 133377","Type":"Unknown","Directional":false,"Links":[{"SourceID":133376,"TargetID":133377,"Directional":false}]},{"ID":4233,"SourceStructureID":6156,"TargetStructureID":47104,"Label":"6156-47104 via Unknown from 133394 -> 133395","Type":"Unknown","Directional":false,"Links":[{"SourceID":133394,"TargetID":133395,"Directional":false}]},{"ID":4234,"SourceStructureID":48612,"TargetStructureID":6156,"Label":"48612-6156 via Adherens from 133340 -> 117607","Type":"Adherens","Directional":false,"Links":[{"SourceID":133340,"TargetID":117607,"Directional":false}]},{"ID":4235,"SourceStructureID":6156,"TargetStructureID":49600,"Label":"6156-49600 via Adherens from 133358 -> 133359","Type":"Adherens","Directional":false,"Links":[{"SourceID":133358,"TargetID":133359,"Directional":false}]},{"ID":4236,"SourceStructureID":6156,"TargetStructureID":54744,"Label":"6156-54744 via Adherens from 133373 -> 133374","Type":"Adherens","Directional":false,"Links":[{"SourceID":133373,"TargetID":133374,"Directional":false}]},{"ID":4237,"SourceStructureID":59422,"TargetStructureID":6156,"Label":"59422-6156 via Adherens from 59435 -> 59436","Type":"Adherens","Directional":false,"Links":[{"SourceID":59435,"TargetID":59436,"Directional":false}]},{"ID":4238,"SourceStructureID":60201,"TargetStructureID":6156,"Label":"60201-6156 via Unknown from 133231 -> 133232","Type":"Unknown","Directional":false,"Links":[{"SourceID":133231,"TargetID":133232,"Directional":false}]},{"ID":4239,"SourceStructureID":60645,"TargetStructureID":6156,"Label":"60645-6156 via Adherens from 133180 -> 133179","Type":"Adherens","Directional":false,"Links":[{"SourceID":133180,"TargetID":133179,"Directional":false}]},{"ID":4240,"SourceStructureID":60657,"TargetStructureID":6156,"Label":"60657-6156 via Adherens from 133174 -> 133175","Type":"Adherens","Directional":false,"Links":[{"SourceID":133174,"TargetID":133175,"Directional":false}]},{"ID":4241,"SourceStructureID":6156,"TargetStructureID":68042,"Label":"6156-68042 via Unknown from 133327 -> 133326","Type":"Unknown","Directional":false,"Links":[{"SourceID":133327,"TargetID":133326,"Directional":false}]},{"ID":4242,"SourceStructureID":91267,"TargetStructureID":6156,"Label":"91267-6156 via Unknown from 133444 -> 133443","Type":"Unknown","Directional":false,"Links":[{"SourceID":133444,"TargetID":133443,"Directional":false}]},{"ID":4243,"SourceStructureID":101686,"TargetStructureID":6156,"Label":"101686-6156 via Adherens from 133397 -> 133396","Type":"Adherens","Directional":false,"Links":[{"SourceID":133397,"TargetID":133396,"Directional":false}]},{"ID":4244,"SourceStructureID":101707,"TargetStructureID":6156,"Label":"101707-6156 via Unknown from 133199 -> 133198","Type":"Unknown","Directional":false,"Links":[{"SourceID":133199,"TargetID":133198,"Directional":false}]},{"ID":4245,"SourceStructureID":6158,"TargetStructureID":6162,"Label":"6158-6162 via Gap Junction from 115480 -> 115481","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115480,"TargetID":115481,"Directional":false}]},{"ID":4246,"SourceStructureID":6158,"TargetStructureID":6162,"Label":"6158-6162 via Unknown from 115475 -> 115476","Type":"Unknown","Directional":false,"Links":[{"SourceID":115475,"TargetID":115476,"Directional":false}]},{"ID":4247,"SourceStructureID":7951,"TargetStructureID":6158,"Label":"7951-6158 via Gap Junction from 115479 -> 38074, 120644 -> 120643, 120667 -> 120666, 132454 -> 132453","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115479,"TargetID":38074,"Directional":false},{"SourceID":120644,"TargetID":120643,"Directional":false},{"SourceID":120667,"TargetID":120666,"Directional":false},{"SourceID":132454,"TargetID":132453,"Directional":false}]},{"ID":4248,"SourceStructureID":69428,"TargetStructureID":6158,"Label":"69428-6158 via Gap Junction from 120827 -> 120826","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120827,"TargetID":120826,"Directional":false}]},{"ID":4249,"SourceStructureID":115424,"TargetStructureID":6158,"Label":"115424-6158 via Gap Junction from 120817 -> 120816","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120817,"TargetID":120816,"Directional":false}]},{"ID":4250,"SourceStructureID":115487,"TargetStructureID":6158,"Label":"115487-6158 via Gap Junction from 115488 -> 115486","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115488,"TargetID":115486,"Directional":false}]},{"ID":4251,"SourceStructureID":6162,"TargetStructureID":6162,"Label":"6162-6162 via Gap Junction from 120749 -> 120750","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120749,"TargetID":120750,"Directional":false}]},{"ID":4252,"SourceStructureID":6162,"TargetStructureID":47445,"Label":"6162-47445 via Gap Junction from 131995 -> 131996, 132003 -> 132004, 132005 -> 132006, 132031 -> 47448","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131995,"TargetID":131996,"Directional":false},{"SourceID":132003,"TargetID":132004,"Directional":false},{"SourceID":132005,"TargetID":132006,"Directional":false},{"SourceID":132031,"TargetID":47448,"Directional":false}]},{"ID":4253,"SourceStructureID":121889,"TargetStructureID":6162,"Label":"121889-6162 via Gap Junction from 132001 -> 132002","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132001,"TargetID":132002,"Directional":false}]},{"ID":4254,"SourceStructureID":6162,"TargetStructureID":121899,"Label":"6162-121899 via Gap Junction from 122378 -> 122379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122378,"TargetID":122379,"Directional":false}]},{"ID":4255,"SourceStructureID":131886,"TargetStructureID":6162,"Label":"131886-6162 via Gap Junction from 131887 -> 29107","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131887,"TargetID":29107,"Directional":false}]},{"ID":4256,"SourceStructureID":61270,"TargetStructureID":6163,"Label":"61270-6163 via Touch from 61299 -> 61298","Type":"Touch","Directional":false,"Links":[{"SourceID":61299,"TargetID":61298,"Directional":false}]},{"ID":4257,"SourceStructureID":6165,"TargetStructureID":6165,"Label":"6165-6165 via Gap Junction from 118057 -> 118056","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118057,"TargetID":118056,"Directional":false}]},{"ID":4258,"SourceStructureID":6169,"TargetStructureID":7113,"Label":"6169-7113 via Gap Junction from 29711 -> 29710","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29711,"TargetID":29710,"Directional":false}]},{"ID":4259,"SourceStructureID":6169,"TargetStructureID":7147,"Label":"6169-7147 via Gap Junction from 29707 -> 29697, 29714 -> 29713","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29707,"TargetID":29697,"Directional":false},{"SourceID":29714,"TargetID":29713,"Directional":false}]},{"ID":4260,"SourceStructureID":7859,"TargetStructureID":6169,"Label":"7859-6169 via Touch from 64686 -> 64687","Type":"Touch","Directional":false,"Links":[{"SourceID":64686,"TargetID":64687,"Directional":false}]},{"ID":4261,"SourceStructureID":6169,"TargetStructureID":39201,"Label":"6169-39201 via Adherens from 16168 -> 89479","Type":"Adherens","Directional":false,"Links":[{"SourceID":16168,"TargetID":89479,"Directional":false}]},{"ID":4262,"SourceStructureID":6169,"TargetStructureID":39787,"Label":"6169-39787 via Adherens from 87739 -> 87736","Type":"Adherens","Directional":false,"Links":[{"SourceID":87739,"TargetID":87736,"Directional":false}]},{"ID":4263,"SourceStructureID":39816,"TargetStructureID":6169,"Label":"39816-6169 via Unknown from 89973 -> 89974","Type":"Unknown","Directional":false,"Links":[{"SourceID":89973,"TargetID":89974,"Directional":false}]},{"ID":4264,"SourceStructureID":40896,"TargetStructureID":6169,"Label":"40896-6169 via Adherens from 40900 -> 14162","Type":"Adherens","Directional":false,"Links":[{"SourceID":40900,"TargetID":14162,"Directional":false}]},{"ID":4265,"SourceStructureID":6169,"TargetStructureID":60863,"Label":"6169-60863 via Adherens from 75233 -> 75231","Type":"Adherens","Directional":false,"Links":[{"SourceID":75233,"TargetID":75231,"Directional":false}]},{"ID":4266,"SourceStructureID":6169,"TargetStructureID":136432,"Label":"6169-136432 via Touch from 136541 -> 136540","Type":"Touch","Directional":false,"Links":[{"SourceID":136541,"TargetID":136540,"Directional":false}]},{"ID":4267,"SourceStructureID":7114,"TargetStructureID":6203,"Label":"7114-6203 via Gap Junction from 57229 -> 57213","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57229,"TargetID":57213,"Directional":false}]},{"ID":4268,"SourceStructureID":57226,"TargetStructureID":6203,"Label":"57226-6203 via Gap Junction from 57227 -> 57225","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57227,"TargetID":57225,"Directional":false}]},{"ID":4269,"SourceStructureID":57248,"TargetStructureID":6203,"Label":"57248-6203 via Gap Junction from 57249 -> 57247","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57249,"TargetID":57247,"Directional":false}]},{"ID":4270,"SourceStructureID":6203,"TargetStructureID":57273,"Label":"6203-57273 via Gap Junction from 57272 -> 57286","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57272,"TargetID":57286,"Directional":false}]},{"ID":4271,"SourceStructureID":6203,"TargetStructureID":57353,"Label":"6203-57353 via Gap Junction from 52117 -> 57354, 115323 -> 115322, 124296 -> 124297","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52117,"TargetID":57354,"Directional":false},{"SourceID":115323,"TargetID":115322,"Directional":false},{"SourceID":124296,"TargetID":124297,"Directional":false}]},{"ID":4272,"SourceStructureID":6203,"TargetStructureID":57353,"Label":"6203-57353 via Unknown from 124413 -> 124414","Type":"Unknown","Directional":false,"Links":[{"SourceID":124413,"TargetID":124414,"Directional":false}]},{"ID":4273,"SourceStructureID":89670,"TargetStructureID":6203,"Label":"89670-6203 via Unknown from 125781 -> 125780","Type":"Unknown","Directional":false,"Links":[{"SourceID":125781,"TargetID":125780,"Directional":false}]},{"ID":4274,"SourceStructureID":6204,"TargetStructureID":6204,"Label":"6204-6204 via Gap Junction from 118085 -> 57293, 118154 -> 118153","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118085,"TargetID":57293,"Directional":false},{"SourceID":118154,"TargetID":118153,"Directional":false}]},{"ID":4275,"SourceStructureID":8032,"TargetStructureID":6204,"Label":"8032-6204 via Gap Junction from 32521 -> 118116","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":32521,"TargetID":118116,"Directional":false}]},{"ID":4276,"SourceStructureID":22994,"TargetStructureID":6204,"Label":"22994-6204 via Gap Junction from 118120 -> 118118, 118128 -> 118129, 118131 -> 118132, 118134 -> 118133","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118120,"TargetID":118118,"Directional":false},{"SourceID":118128,"TargetID":118129,"Directional":false},{"SourceID":118131,"TargetID":118132,"Directional":false},{"SourceID":118134,"TargetID":118133,"Directional":false}]},{"ID":4277,"SourceStructureID":6204,"TargetStructureID":33039,"Label":"6204-33039 via Gap Junction from 52633 -> 52634","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52633,"TargetID":52634,"Directional":false}]},{"ID":4278,"SourceStructureID":6204,"TargetStructureID":57353,"Label":"6204-57353 via Touch from 124327 -> 124326","Type":"Touch","Directional":false,"Links":[{"SourceID":124327,"TargetID":124326,"Directional":false}]},{"ID":4279,"SourceStructureID":6204,"TargetStructureID":132009,"Label":"6204-132009 via Gap Junction from 132008 -> 132010","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132008,"TargetID":132010,"Directional":false}]},{"ID":4280,"SourceStructureID":86634,"TargetStructureID":6561,"Label":"86634-6561 via Adherens from 86706 -> 8304","Type":"Adherens","Directional":false,"Links":[{"SourceID":86706,"TargetID":8304,"Directional":false}]},{"ID":4281,"SourceStructureID":6589,"TargetStructureID":6589,"Label":"6589-6589 via Adherens from 119941 -> 119940","Type":"Adherens","Directional":false,"Links":[{"SourceID":119941,"TargetID":119940,"Directional":false}]},{"ID":4282,"SourceStructureID":6997,"TargetStructureID":6589,"Label":"6997-6589 via Adherens from 130563 -> 130562","Type":"Adherens","Directional":false,"Links":[{"SourceID":130563,"TargetID":130562,"Directional":false}]},{"ID":4283,"SourceStructureID":6997,"TargetStructureID":6589,"Label":"6997-6589 via Gap Junction from 130565 -> 130564, 132620 -> 132619","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130565,"TargetID":130564,"Directional":false},{"SourceID":132620,"TargetID":132619,"Directional":false}]},{"ID":4284,"SourceStructureID":6589,"TargetStructureID":8037,"Label":"6589-8037 via Adherens from 130636 -> 132615","Type":"Adherens","Directional":false,"Links":[{"SourceID":130636,"TargetID":132615,"Directional":false}]},{"ID":4285,"SourceStructureID":6589,"TargetStructureID":8037,"Label":"6589-8037 via Gap Junction from 130637 -> 132616","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130637,"TargetID":132616,"Directional":false}]},{"ID":4286,"SourceStructureID":9693,"TargetStructureID":6589,"Label":"9693-6589 via Adherens from 130583 -> 130582","Type":"Adherens","Directional":false,"Links":[{"SourceID":130583,"TargetID":130582,"Directional":false}]},{"ID":4287,"SourceStructureID":13855,"TargetStructureID":6589,"Label":"13855-6589 via Unknown from 132691 -> 132690, 132708 -> 132709, 132762 -> 132763","Type":"Unknown","Directional":false,"Links":[{"SourceID":132691,"TargetID":132690,"Directional":false},{"SourceID":132708,"TargetID":132709,"Directional":false},{"SourceID":132762,"TargetID":132763,"Directional":false}]},{"ID":4288,"SourceStructureID":6589,"TargetStructureID":22554,"Label":"6589-22554 via Unknown from 132682 -> 132683","Type":"Unknown","Directional":false,"Links":[{"SourceID":132682,"TargetID":132683,"Directional":false}]},{"ID":4289,"SourceStructureID":40469,"TargetStructureID":6589,"Label":"40469-6589 via Unknown from 132701 -> 132700","Type":"Unknown","Directional":false,"Links":[{"SourceID":132701,"TargetID":132700,"Directional":false}]},{"ID":4290,"SourceStructureID":6589,"TargetStructureID":87158,"Label":"6589-87158 via Unknown from 130557 -> 130558","Type":"Unknown","Directional":false,"Links":[{"SourceID":130557,"TargetID":130558,"Directional":false}]},{"ID":4291,"SourceStructureID":6589,"TargetStructureID":95701,"Label":"6589-95701 via Unknown from 132702 -> 132703","Type":"Unknown","Directional":false,"Links":[{"SourceID":132702,"TargetID":132703,"Directional":false}]},{"ID":4292,"SourceStructureID":132773,"TargetStructureID":6589,"Label":"132773-6589 via Gap Junction from 132780 -> 130629","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132780,"TargetID":130629,"Directional":false}]},{"ID":4293,"SourceStructureID":6617,"TargetStructureID":8033,"Label":"6617-8033 via Touch from 61253 -> 61254","Type":"Touch","Directional":false,"Links":[{"SourceID":61253,"TargetID":61254,"Directional":false}]},{"ID":4294,"SourceStructureID":6618,"TargetStructureID":40919,"Label":"6618-40919 via Touch from 60506 -> 60505","Type":"Touch","Directional":false,"Links":[{"SourceID":60506,"TargetID":60505,"Directional":false}]},{"ID":4295,"SourceStructureID":8586,"TargetStructureID":6857,"Label":"8586-6857 via Touch from 32688 -> 32687","Type":"Touch","Directional":false,"Links":[{"SourceID":32688,"TargetID":32687,"Directional":false}]},{"ID":4296,"SourceStructureID":6857,"TargetStructureID":18576,"Label":"6857-18576 via Adherens from 100534 -> 100533","Type":"Adherens","Directional":false,"Links":[{"SourceID":100534,"TargetID":100533,"Directional":false}]},{"ID":4297,"SourceStructureID":6857,"TargetStructureID":71513,"Label":"6857-71513 via Adherens from 77722 -> 77721","Type":"Adherens","Directional":false,"Links":[{"SourceID":77722,"TargetID":77721,"Directional":false}]},{"ID":4298,"SourceStructureID":6857,"TargetStructureID":71517,"Label":"6857-71517 via Adherens from 66680 -> 66681, 72123 -> 72122, 74985 -> 74984, 74986 -> 74987, 75165 -> 75164","Type":"Adherens","Directional":false,"Links":[{"SourceID":66680,"TargetID":66681,"Directional":false},{"SourceID":72123,"TargetID":72122,"Directional":false},{"SourceID":74985,"TargetID":74984,"Directional":false},{"SourceID":74986,"TargetID":74987,"Directional":false},{"SourceID":75165,"TargetID":75164,"Directional":false}]},{"ID":4299,"SourceStructureID":6909,"TargetStructureID":6909,"Label":"6909-6909 via Gap Junction from 122782 -> 122789","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122782,"TargetID":122789,"Directional":false}]},{"ID":4300,"SourceStructureID":6909,"TargetStructureID":6964,"Label":"6909-6964 via Gap Junction from 122965 -> 122966, 122968 -> 122969, 122972 -> 122971, 122973 -> 122974, 122975 -> 122976, 122977 -> 121677, 123104 -> 123105","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122965,"TargetID":122966,"Directional":false},{"SourceID":122968,"TargetID":122969,"Directional":false},{"SourceID":122972,"TargetID":122971,"Directional":false},{"SourceID":122973,"TargetID":122974,"Directional":false},{"SourceID":122975,"TargetID":122976,"Directional":false},{"SourceID":122977,"TargetID":121677,"Directional":false},{"SourceID":123104,"TargetID":123105,"Directional":false}]},{"ID":4301,"SourceStructureID":6909,"TargetStructureID":6965,"Label":"6909-6965 via Gap Junction from 123009 -> 123008, 123011 -> 123010, 123013 -> 123012, 123016 -> 123015, 123019 -> 123018, 123020 -> 123021, 123022 -> 123023, 123024 -> 123025","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123009,"TargetID":123008,"Directional":false},{"SourceID":123011,"TargetID":123010,"Directional":false},{"SourceID":123013,"TargetID":123012,"Directional":false},{"SourceID":123016,"TargetID":123015,"Directional":false},{"SourceID":123019,"TargetID":123018,"Directional":false},{"SourceID":123020,"TargetID":123021,"Directional":false},{"SourceID":123022,"TargetID":123023,"Directional":false},{"SourceID":123024,"TargetID":123025,"Directional":false}]},{"ID":4302,"SourceStructureID":6909,"TargetStructureID":7345,"Label":"6909-7345 via Gap Junction from 121675 -> 56577, 122645 -> 39139, 122788 -> 122787","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121675,"TargetID":56577,"Directional":false},{"SourceID":122645,"TargetID":39139,"Directional":false},{"SourceID":122788,"TargetID":122787,"Directional":false}]},{"ID":4303,"SourceStructureID":44256,"TargetStructureID":6909,"Label":"44256-6909 via Gap Junction from 121683 -> 121682, 121687 -> 121686, 123103 -> 123107","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121683,"TargetID":121682,"Directional":false},{"SourceID":121687,"TargetID":121686,"Directional":false},{"SourceID":123103,"TargetID":123107,"Directional":false}]},{"ID":4304,"SourceStructureID":44256,"TargetStructureID":6909,"Label":"44256-6909 via Unknown from 122651 -> 122650","Type":"Unknown","Directional":false,"Links":[{"SourceID":122651,"TargetID":122650,"Directional":false}]},{"ID":4305,"SourceStructureID":44338,"TargetStructureID":6909,"Label":"44338-6909 via Gap Junction from 122978 -> 122661","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122978,"TargetID":122661,"Directional":false}]},{"ID":4306,"SourceStructureID":122663,"TargetStructureID":6909,"Label":"122663-6909 via Gap Junction from 122664 -> 122662","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122664,"TargetID":122662,"Directional":false}]},{"ID":4307,"SourceStructureID":24401,"TargetStructureID":6912,"Label":"24401-6912 via Gap Junction from 48016 -> 48018","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48016,"TargetID":48018,"Directional":false}]},{"ID":4308,"SourceStructureID":26079,"TargetStructureID":6912,"Label":"26079-6912 via Gap Junction from 48666 -> 48350, 48672 -> 121215, 121210 -> 51034","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48666,"TargetID":48350,"Directional":false},{"SourceID":48672,"TargetID":121215,"Directional":false},{"SourceID":121210,"TargetID":51034,"Directional":false}]},{"ID":4309,"SourceStructureID":6912,"TargetStructureID":39862,"Label":"6912-39862 via Gap Junction from 51026 -> 51210, 51133 -> 51178, 51209 -> 51027","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51026,"TargetID":51210,"Directional":false},{"SourceID":51133,"TargetID":51178,"Directional":false},{"SourceID":51209,"TargetID":51027,"Directional":false}]},{"ID":4310,"SourceStructureID":6912,"TargetStructureID":51100,"Label":"6912-51100 via Gap Junction from 51080 -> 51101","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51080,"TargetID":51101,"Directional":false}]},{"ID":4311,"SourceStructureID":7114,"TargetStructureID":6958,"Label":"7114-6958 via Gap Junction from 116682 -> 116677, 117151 -> 117150, 122901 -> 116838","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116682,"TargetID":116677,"Directional":false},{"SourceID":117151,"TargetID":117150,"Directional":false},{"SourceID":122901,"TargetID":116838,"Directional":false}]},{"ID":4312,"SourceStructureID":8589,"TargetStructureID":6958,"Label":"8589-6958 via Adherens from 70473 -> 70474, 71316 -> 71317","Type":"Adherens","Directional":false,"Links":[{"SourceID":70473,"TargetID":70474,"Directional":false},{"SourceID":71316,"TargetID":71317,"Directional":false}]},{"ID":4313,"SourceStructureID":57169,"TargetStructureID":6958,"Label":"57169-6958 via Gap Junction from 57173 -> 57175, 117083 -> 117082","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57173,"TargetID":57175,"Directional":false},{"SourceID":117083,"TargetID":117082,"Directional":false}]},{"ID":4314,"SourceStructureID":116835,"TargetStructureID":6958,"Label":"116835-6958 via Gap Junction from 116836 -> 116683","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116836,"TargetID":116683,"Directional":false}]},{"ID":4315,"SourceStructureID":6958,"TargetStructureID":118087,"Label":"6958-118087 via Unknown from 118089 -> 118090","Type":"Unknown","Directional":false,"Links":[{"SourceID":118089,"TargetID":118090,"Directional":false}]},{"ID":4316,"SourceStructureID":6961,"TargetStructureID":7279,"Label":"6961-7279 via Gap Junction from 34731 -> 34730","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":34731,"TargetID":34730,"Directional":false}]},{"ID":4317,"SourceStructureID":6965,"TargetStructureID":6965,"Label":"6965-6965 via Gap Junction from 123029 -> 123030","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123029,"TargetID":123030,"Directional":false}]},{"ID":4318,"SourceStructureID":7446,"TargetStructureID":6965,"Label":"7446-6965 via Gap Junction from 64766 -> 121941, 118312 -> 121935, 118313 -> 121936, 122413 -> 122412, 123047 -> 123046, 123123 -> 123124","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64766,"TargetID":121941,"Directional":false},{"SourceID":118312,"TargetID":121935,"Directional":false},{"SourceID":118313,"TargetID":121936,"Directional":false},{"SourceID":122413,"TargetID":122412,"Directional":false},{"SourceID":123047,"TargetID":123046,"Directional":false},{"SourceID":123123,"TargetID":123124,"Directional":false}]},{"ID":4319,"SourceStructureID":6997,"TargetStructureID":8720,"Label":"6997-8720 via Unknown from 136746 -> 136745","Type":"Unknown","Directional":false,"Links":[{"SourceID":136746,"TargetID":136745,"Directional":false}]},{"ID":4320,"SourceStructureID":6997,"TargetStructureID":9693,"Label":"6997-9693 via Touch from 136665 -> 136666","Type":"Touch","Directional":false,"Links":[{"SourceID":136665,"TargetID":136666,"Directional":false}]},{"ID":4321,"SourceStructureID":6997,"TargetStructureID":19203,"Label":"6997-19203 via Touch from 135818 -> 135819","Type":"Touch","Directional":false,"Links":[{"SourceID":135818,"TargetID":135819,"Directional":false}]},{"ID":4322,"SourceStructureID":32654,"TargetStructureID":6997,"Label":"32654-6997 via Gap Junction from 49278 -> 22249","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49278,"TargetID":22249,"Directional":false}]},{"ID":4323,"SourceStructureID":32804,"TargetStructureID":6997,"Label":"32804-6997 via Adherens from 136558 -> 136557","Type":"Adherens","Directional":false,"Links":[{"SourceID":136558,"TargetID":136557,"Directional":false}]},{"ID":4324,"SourceStructureID":6997,"TargetStructureID":56486,"Label":"6997-56486 via Unknown from 49246 -> 56487, 136765 -> 136242","Type":"Unknown","Directional":false,"Links":[{"SourceID":49246,"TargetID":56487,"Directional":false},{"SourceID":136765,"TargetID":136242,"Directional":false}]},{"ID":4325,"SourceStructureID":6997,"TargetStructureID":66958,"Label":"6997-66958 via Adherens from 83029 -> 70071","Type":"Adherens","Directional":false,"Links":[{"SourceID":83029,"TargetID":70071,"Directional":false}]},{"ID":4326,"SourceStructureID":6997,"TargetStructureID":66958,"Label":"6997-66958 via Unknown from 136718 -> 136717","Type":"Unknown","Directional":false,"Links":[{"SourceID":136718,"TargetID":136717,"Directional":false}]},{"ID":4327,"SourceStructureID":68286,"TargetStructureID":6997,"Label":"68286-6997 via Adherens from 80651 -> 80650","Type":"Adherens","Directional":false,"Links":[{"SourceID":80651,"TargetID":80650,"Directional":false}]},{"ID":4328,"SourceStructureID":6997,"TargetStructureID":68289,"Label":"6997-68289 via Adherens from 80643 -> 80642","Type":"Adherens","Directional":false,"Links":[{"SourceID":80643,"TargetID":80642,"Directional":false}]},{"ID":4329,"SourceStructureID":6997,"TargetStructureID":70014,"Label":"6997-70014 via Unknown from 96052 -> 96051","Type":"Unknown","Directional":false,"Links":[{"SourceID":96052,"TargetID":96051,"Directional":false}]},{"ID":4330,"SourceStructureID":6997,"TargetStructureID":70069,"Label":"6997-70069 via Gap Junction from 83070 -> 83071","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83070,"TargetID":83071,"Directional":false}]},{"ID":4331,"SourceStructureID":78303,"TargetStructureID":6997,"Label":"78303-6997 via Adherens from 136272 -> 136271","Type":"Adherens","Directional":false,"Links":[{"SourceID":136272,"TargetID":136271,"Directional":false}]},{"ID":4332,"SourceStructureID":6997,"TargetStructureID":79916,"Label":"6997-79916 via Adherens from 83116 -> 79919","Type":"Adherens","Directional":false,"Links":[{"SourceID":83116,"TargetID":79919,"Directional":false}]},{"ID":4333,"SourceStructureID":79928,"TargetStructureID":6997,"Label":"79928-6997 via Unknown from 83101 -> 83102","Type":"Unknown","Directional":false,"Links":[{"SourceID":83101,"TargetID":83102,"Directional":false}]},{"ID":4334,"SourceStructureID":79937,"TargetStructureID":6997,"Label":"79937-6997 via Adherens from 79938 -> 83103","Type":"Adherens","Directional":false,"Links":[{"SourceID":79938,"TargetID":83103,"Directional":false}]},{"ID":4335,"SourceStructureID":6997,"TargetStructureID":79950,"Label":"6997-79950 via Unknown from 83110 -> 79953","Type":"Unknown","Directional":false,"Links":[{"SourceID":83110,"TargetID":79953,"Directional":false}]},{"ID":4336,"SourceStructureID":79962,"TargetStructureID":6997,"Label":"79962-6997 via Adherens from 79963 -> 83092","Type":"Adherens","Directional":false,"Links":[{"SourceID":79963,"TargetID":83092,"Directional":false}]},{"ID":4337,"SourceStructureID":6997,"TargetStructureID":79970,"Label":"6997-79970 via Adherens from 83075 -> 79972","Type":"Adherens","Directional":false,"Links":[{"SourceID":83075,"TargetID":79972,"Directional":false}]},{"ID":4338,"SourceStructureID":79981,"TargetStructureID":6997,"Label":"79981-6997 via Unknown from 79982 -> 83074","Type":"Unknown","Directional":false,"Links":[{"SourceID":79982,"TargetID":83074,"Directional":false}]},{"ID":4339,"SourceStructureID":79986,"TargetStructureID":6997,"Label":"79986-6997 via Unknown from 80012 -> 83087","Type":"Unknown","Directional":false,"Links":[{"SourceID":80012,"TargetID":83087,"Directional":false}]},{"ID":4340,"SourceStructureID":6997,"TargetStructureID":79988,"Label":"6997-79988 via Unknown from 83077 -> 79989","Type":"Unknown","Directional":false,"Links":[{"SourceID":83077,"TargetID":79989,"Directional":false}]},{"ID":4341,"SourceStructureID":6997,"TargetStructureID":79993,"Label":"6997-79993 via Unknown from 83083 -> 80005, 83084 -> 83093","Type":"Unknown","Directional":false,"Links":[{"SourceID":83083,"TargetID":80005,"Directional":false},{"SourceID":83084,"TargetID":83093,"Directional":false}]},{"ID":4342,"SourceStructureID":6997,"TargetStructureID":80007,"Label":"6997-80007 via Unknown from 83090 -> 80010","Type":"Unknown","Directional":false,"Links":[{"SourceID":83090,"TargetID":80010,"Directional":false}]},{"ID":4343,"SourceStructureID":6997,"TargetStructureID":80008,"Label":"6997-80008 via Unknown from 83090 -> 80009","Type":"Unknown","Directional":false,"Links":[{"SourceID":83090,"TargetID":80009,"Directional":false}]},{"ID":4344,"SourceStructureID":6997,"TargetStructureID":80013,"Label":"6997-80013 via Unknown from 83086 -> 80015","Type":"Unknown","Directional":false,"Links":[{"SourceID":83086,"TargetID":80015,"Directional":false}]},{"ID":4345,"SourceStructureID":6997,"TargetStructureID":80039,"Label":"6997-80039 via Unknown from 83028 -> 80040","Type":"Unknown","Directional":false,"Links":[{"SourceID":83028,"TargetID":80040,"Directional":false}]},{"ID":4346,"SourceStructureID":6997,"TargetStructureID":80046,"Label":"6997-80046 via Adherens from 83068 -> 80047","Type":"Adherens","Directional":false,"Links":[{"SourceID":83068,"TargetID":80047,"Directional":false}]},{"ID":4347,"SourceStructureID":80049,"TargetStructureID":6997,"Label":"80049-6997 via Unknown from 80050 -> 83022","Type":"Unknown","Directional":false,"Links":[{"SourceID":80050,"TargetID":83022,"Directional":false}]},{"ID":4348,"SourceStructureID":6997,"TargetStructureID":80051,"Label":"6997-80051 via Unknown from 83018 -> 80052","Type":"Unknown","Directional":false,"Links":[{"SourceID":83018,"TargetID":80052,"Directional":false}]},{"ID":4349,"SourceStructureID":92331,"TargetStructureID":6997,"Label":"92331-6997 via Unknown from 92332 -> 22273","Type":"Unknown","Directional":false,"Links":[{"SourceID":92332,"TargetID":22273,"Directional":false}]},{"ID":4350,"SourceStructureID":6997,"TargetStructureID":95482,"Label":"6997-95482 via Adherens from 95481 -> 95483","Type":"Adherens","Directional":false,"Links":[{"SourceID":95481,"TargetID":95483,"Directional":false}]},{"ID":4351,"SourceStructureID":6997,"TargetStructureID":95772,"Label":"6997-95772 via Gap Junction from 95771 -> 95775","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95771,"TargetID":95775,"Directional":false}]},{"ID":4352,"SourceStructureID":6997,"TargetStructureID":95999,"Label":"6997-95999 via Adherens from 136693 -> 136694","Type":"Adherens","Directional":false,"Links":[{"SourceID":136693,"TargetID":136694,"Directional":false}]},{"ID":4353,"SourceStructureID":95999,"TargetStructureID":6997,"Label":"95999-6997 via Gap Junction from 136638 -> 136639","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136638,"TargetID":136639,"Directional":false}]},{"ID":4354,"SourceStructureID":6997,"TargetStructureID":95999,"Label":"6997-95999 via Unknown from 136695 -> 136696, 136697 -> 136698","Type":"Unknown","Directional":false,"Links":[{"SourceID":136695,"TargetID":136696,"Directional":false},{"SourceID":136697,"TargetID":136698,"Directional":false}]},{"ID":4355,"SourceStructureID":96015,"TargetStructureID":6997,"Label":"96015-6997 via Unknown from 96016 -> 96014","Type":"Unknown","Directional":false,"Links":[{"SourceID":96016,"TargetID":96014,"Directional":false}]},{"ID":4356,"SourceStructureID":96036,"TargetStructureID":6997,"Label":"96036-6997 via Unknown from 96038 -> 96035","Type":"Unknown","Directional":false,"Links":[{"SourceID":96038,"TargetID":96035,"Directional":false}]},{"ID":4357,"SourceStructureID":6997,"TargetStructureID":101437,"Label":"6997-101437 via Unknown from 136281 -> 136282","Type":"Unknown","Directional":false,"Links":[{"SourceID":136281,"TargetID":136282,"Directional":false}]},{"ID":4358,"SourceStructureID":136659,"TargetStructureID":6997,"Label":"136659-6997 via Gap Junction from 136660 -> 133251","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136660,"TargetID":133251,"Directional":false}]},{"ID":4359,"SourceStructureID":6997,"TargetStructureID":136674,"Label":"6997-136674 via Adherens from 136780 -> 136779","Type":"Adherens","Directional":false,"Links":[{"SourceID":136780,"TargetID":136779,"Directional":false}]},{"ID":4360,"SourceStructureID":136674,"TargetStructureID":6997,"Label":"136674-6997 via Gap Junction from 136778 -> 56995","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136778,"TargetID":56995,"Directional":false}]},{"ID":4361,"SourceStructureID":136677,"TargetStructureID":6997,"Label":"136677-6997 via Adherens from 136686 -> 136685","Type":"Adherens","Directional":false,"Links":[{"SourceID":136686,"TargetID":136685,"Directional":false}]},{"ID":4362,"SourceStructureID":136677,"TargetStructureID":6997,"Label":"136677-6997 via Gap Junction from 136684 -> 136595","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136684,"TargetID":136595,"Directional":false}]},{"ID":4363,"SourceStructureID":6997,"TargetStructureID":136688,"Label":"6997-136688 via Unknown from 136623 -> 136793","Type":"Unknown","Directional":false,"Links":[{"SourceID":136623,"TargetID":136793,"Directional":false}]},{"ID":4364,"SourceStructureID":136742,"TargetStructureID":6997,"Label":"136742-6997 via Unknown from 136840 -> 22189","Type":"Unknown","Directional":false,"Links":[{"SourceID":136840,"TargetID":22189,"Directional":false}]},{"ID":4365,"SourceStructureID":136748,"TargetStructureID":6997,"Label":"136748-6997 via Unknown from 136749 -> 22287","Type":"Unknown","Directional":false,"Links":[{"SourceID":136749,"TargetID":22287,"Directional":false}]},{"ID":4366,"SourceStructureID":136759,"TargetStructureID":6997,"Label":"136759-6997 via Unknown from 136761 -> 57004","Type":"Unknown","Directional":false,"Links":[{"SourceID":136761,"TargetID":57004,"Directional":false}]},{"ID":4367,"SourceStructureID":136766,"TargetStructureID":6997,"Label":"136766-6997 via Unknown from 136767 -> 63928","Type":"Unknown","Directional":false,"Links":[{"SourceID":136767,"TargetID":63928,"Directional":false}]},{"ID":4368,"SourceStructureID":6997,"TargetStructureID":136822,"Label":"6997-136822 via Gap Junction from 63927 -> 136827","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63927,"TargetID":136827,"Directional":false}]},{"ID":4369,"SourceStructureID":7024,"TargetStructureID":7024,"Label":"7024-7024 via Gap Junction from 54971 -> 40162, 93878 -> 93874, 114897 -> 114898, 136215 -> 136214","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54971,"TargetID":40162,"Directional":false},{"SourceID":93878,"TargetID":93874,"Directional":false},{"SourceID":114897,"TargetID":114898,"Directional":false},{"SourceID":136215,"TargetID":136214,"Directional":false}]},{"ID":4370,"SourceStructureID":8037,"TargetStructureID":7024,"Label":"8037-7024 via Gap Junction from 10907 -> 10906, 20235 -> 20234, 43563 -> 43564, 43566 -> 43565, 47338 -> 47335, 113487 -> 113486, 136199 -> 106964","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":10907,"TargetID":10906,"Directional":false},{"SourceID":20235,"TargetID":20234,"Directional":false},{"SourceID":43563,"TargetID":43564,"Directional":false},{"SourceID":43566,"TargetID":43565,"Directional":false},{"SourceID":47338,"TargetID":47335,"Directional":false},{"SourceID":113487,"TargetID":113486,"Directional":false},{"SourceID":136199,"TargetID":106964,"Directional":false}]},{"ID":4371,"SourceStructureID":8037,"TargetStructureID":7024,"Label":"8037-7024 via Postsynapse from 114159 -> 114158","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":114159,"TargetID":114158,"Directional":false}]},{"ID":4372,"SourceStructureID":9769,"TargetStructureID":7024,"Label":"9769-7024 via Adherens from 20239 -> 20238, 20241 -> 20240, 63404 -> 63405, 93900 -> 93899, 113728 -> 113729, 113730 -> 113731, 113738 -> 113739, 113741 -> 113742, 114133 -> 114135, 114330 -> 114329, 114333 -> 114332, 114338 -> 114337, 114369 -> 114368","Type":"Adherens","Directional":false,"Links":[{"SourceID":20239,"TargetID":20238,"Directional":false},{"SourceID":20241,"TargetID":20240,"Directional":false},{"SourceID":63404,"TargetID":63405,"Directional":false},{"SourceID":93900,"TargetID":93899,"Directional":false},{"SourceID":113728,"TargetID":113729,"Directional":false},{"SourceID":113730,"TargetID":113731,"Directional":false},{"SourceID":113738,"TargetID":113739,"Directional":false},{"SourceID":113741,"TargetID":113742,"Directional":false},{"SourceID":114133,"TargetID":114135,"Directional":false},{"SourceID":114330,"TargetID":114329,"Directional":false},{"SourceID":114333,"TargetID":114332,"Directional":false},{"SourceID":114338,"TargetID":114337,"Directional":false},{"SourceID":114369,"TargetID":114368,"Directional":false}]},{"ID":4373,"SourceStructureID":7024,"TargetStructureID":9769,"Label":"7024-9769 via Unknown from 113732 -> 113733","Type":"Unknown","Directional":false,"Links":[{"SourceID":113732,"TargetID":113733,"Directional":false}]},{"ID":4374,"SourceStructureID":20136,"TargetStructureID":7024,"Label":"20136-7024 via Gap Junction from 93849 -> 93848, 93854 -> 93850","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93849,"TargetID":93848,"Directional":false},{"SourceID":93854,"TargetID":93850,"Directional":false}]},{"ID":4375,"SourceStructureID":31161,"TargetStructureID":7024,"Label":"31161-7024 via Unknown from 106566 -> 106567","Type":"Unknown","Directional":false,"Links":[{"SourceID":106566,"TargetID":106567,"Directional":false}]},{"ID":4376,"SourceStructureID":46388,"TargetStructureID":7024,"Label":"46388-7024 via Adherens from 148227 -> 148226","Type":"Adherens","Directional":false,"Links":[{"SourceID":148227,"TargetID":148226,"Directional":false}]},{"ID":4377,"SourceStructureID":46388,"TargetStructureID":7024,"Label":"46388-7024 via Gap Junction from 46428 -> 46427, 46466 -> 46465, 46610 -> 46622, 121379 -> 121378, 121426 -> 121425, 148228 -> 93884","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46428,"TargetID":46427,"Directional":false},{"SourceID":46466,"TargetID":46465,"Directional":false},{"SourceID":46610,"TargetID":46622,"Directional":false},{"SourceID":121379,"TargetID":121378,"Directional":false},{"SourceID":121426,"TargetID":121425,"Directional":false},{"SourceID":148228,"TargetID":93884,"Directional":false}]},{"ID":4378,"SourceStructureID":7024,"TargetStructureID":48516,"Label":"7024-48516 via Gap Junction from 48576 -> 48569, 93999 -> 136225","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48576,"TargetID":48569,"Directional":false},{"SourceID":93999,"TargetID":136225,"Directional":false}]},{"ID":4379,"SourceStructureID":7024,"TargetStructureID":87294,"Label":"7024-87294 via Adherens from 114152 -> 114153","Type":"Adherens","Directional":false,"Links":[{"SourceID":114152,"TargetID":114153,"Directional":false}]},{"ID":4380,"SourceStructureID":93881,"TargetStructureID":7024,"Label":"93881-7024 via Gap Junction from 93882 -> 93880","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93882,"TargetID":93880,"Directional":false}]},{"ID":4381,"SourceStructureID":118258,"TargetStructureID":7024,"Label":"118258-7024 via Gap Junction from 118259 -> 118257","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118259,"TargetID":118257,"Directional":false}]},{"ID":4382,"SourceStructureID":8037,"TargetStructureID":7040,"Label":"8037-7040 via Touch from 136166 -> 136165","Type":"Touch","Directional":false,"Links":[{"SourceID":136166,"TargetID":136165,"Directional":false}]},{"ID":4383,"SourceStructureID":8040,"TargetStructureID":7040,"Label":"8040-7040 via Gap Junction from 93736 -> 93735, 93739 -> 93738, 93747 -> 93742, 120820 -> 93741","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93736,"TargetID":93735,"Directional":false},{"SourceID":93739,"TargetID":93738,"Directional":false},{"SourceID":93747,"TargetID":93742,"Directional":false},{"SourceID":120820,"TargetID":93741,"Directional":false}]},{"ID":4384,"SourceStructureID":8040,"TargetStructureID":7040,"Label":"8040-7040 via Unknown from 93677 -> 93676","Type":"Unknown","Directional":false,"Links":[{"SourceID":93677,"TargetID":93676,"Directional":false}]},{"ID":4385,"SourceStructureID":64939,"TargetStructureID":7040,"Label":"64939-7040 via Gap Junction from 93653 -> 93652","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93653,"TargetID":93652,"Directional":false}]},{"ID":4386,"SourceStructureID":64939,"TargetStructureID":7040,"Label":"64939-7040 via Touch from 93659 -> 93660","Type":"Touch","Directional":false,"Links":[{"SourceID":93659,"TargetID":93660,"Directional":false}]},{"ID":4387,"SourceStructureID":7040,"TargetStructureID":93647,"Label":"7040-93647 via Adherens from 93651 -> 93650","Type":"Adherens","Directional":false,"Links":[{"SourceID":93651,"TargetID":93650,"Directional":false}]},{"ID":4388,"SourceStructureID":93665,"TargetStructureID":7040,"Label":"93665-7040 via Adherens from 93669 -> 93668","Type":"Adherens","Directional":false,"Links":[{"SourceID":93669,"TargetID":93668,"Directional":false}]},{"ID":4389,"SourceStructureID":93673,"TargetStructureID":7040,"Label":"93673-7040 via Adherens from 93674 -> 93672","Type":"Adherens","Directional":false,"Links":[{"SourceID":93674,"TargetID":93672,"Directional":false}]},{"ID":4390,"SourceStructureID":93679,"TargetStructureID":7040,"Label":"93679-7040 via Gap Junction from 93680 -> 93678","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93680,"TargetID":93678,"Directional":false}]},{"ID":4391,"SourceStructureID":93685,"TargetStructureID":7040,"Label":"93685-7040 via Unknown from 93686 -> 93684","Type":"Unknown","Directional":false,"Links":[{"SourceID":93686,"TargetID":93684,"Directional":false}]},{"ID":4392,"SourceStructureID":7040,"TargetStructureID":93719,"Label":"7040-93719 via Gap Junction from 93718 -> 93720","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93718,"TargetID":93720,"Directional":false}]},{"ID":4393,"SourceStructureID":7050,"TargetStructureID":7043,"Label":"7050-7043 via Gap Junction from 24883 -> 81869, 118857 -> 118856, 131446 -> 118882","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24883,"TargetID":81869,"Directional":false},{"SourceID":118857,"TargetID":118856,"Directional":false},{"SourceID":131446,"TargetID":118882,"Directional":false}]},{"ID":4394,"SourceStructureID":7043,"TargetStructureID":8037,"Label":"7043-8037 via Gap Junction from 37729 -> 37730, 118753 -> 118752, 118790 -> 118789, 118812 -> 118809","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37729,"TargetID":37730,"Directional":false},{"SourceID":118753,"TargetID":118752,"Directional":false},{"SourceID":118790,"TargetID":118789,"Directional":false},{"SourceID":118812,"TargetID":118809,"Directional":false}]},{"ID":4395,"SourceStructureID":7043,"TargetStructureID":8038,"Label":"7043-8038 via Gap Junction from 89290 -> 68951","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89290,"TargetID":68951,"Directional":false}]},{"ID":4396,"SourceStructureID":7043,"TargetStructureID":12897,"Label":"7043-12897 via Gap Junction from 131458 -> 131459","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131458,"TargetID":131459,"Directional":false}]},{"ID":4397,"SourceStructureID":7043,"TargetStructureID":56653,"Label":"7043-56653 via Gap Junction from 118860 -> 118861","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118860,"TargetID":118861,"Directional":false}]},{"ID":4398,"SourceStructureID":89279,"TargetStructureID":7043,"Label":"89279-7043 via Gap Junction from 89288 -> 89277","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89288,"TargetID":89277,"Directional":false}]},{"ID":4399,"SourceStructureID":118682,"TargetStructureID":7043,"Label":"118682-7043 via Gap Junction from 118684 -> 118572","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118684,"TargetID":118572,"Directional":false}]},{"ID":4400,"SourceStructureID":7043,"TargetStructureID":118736,"Label":"7043-118736 via Gap Junction from 118725 -> 118737, 118738 -> 118728","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118725,"TargetID":118737,"Directional":false},{"SourceID":118738,"TargetID":118728,"Directional":false}]},{"ID":4401,"SourceStructureID":7050,"TargetStructureID":8037,"Label":"7050-8037 via Gap Junction from 29778 -> 29779, 32398 -> 32390, 68909 -> 14324, 68911 -> 68910","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29778,"TargetID":29779,"Directional":false},{"SourceID":32398,"TargetID":32390,"Directional":false},{"SourceID":68909,"TargetID":14324,"Directional":false},{"SourceID":68911,"TargetID":68910,"Directional":false}]},{"ID":4402,"SourceStructureID":8038,"TargetStructureID":7050,"Label":"8038-7050 via Gap Junction from 68939 -> 68904, 113059 -> 113056","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68939,"TargetID":68904,"Directional":false},{"SourceID":113059,"TargetID":113056,"Directional":false}]},{"ID":4403,"SourceStructureID":8040,"TargetStructureID":7050,"Label":"8040-7050 via Gap Junction from 35465 -> 24878","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":35465,"TargetID":24878,"Directional":false}]},{"ID":4404,"SourceStructureID":12897,"TargetStructureID":7050,"Label":"12897-7050 via Gap Junction from 24679 -> 19501, 24727 -> 24580, 24745 -> 24713, 24845 -> 24844, 24846 -> 24843, 24875 -> 24874, 29658 -> 29657","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24679,"TargetID":19501,"Directional":false},{"SourceID":24727,"TargetID":24580,"Directional":false},{"SourceID":24745,"TargetID":24713,"Directional":false},{"SourceID":24845,"TargetID":24844,"Directional":false},{"SourceID":24846,"TargetID":24843,"Directional":false},{"SourceID":24875,"TargetID":24874,"Directional":false},{"SourceID":29658,"TargetID":29657,"Directional":false}]},{"ID":4405,"SourceStructureID":15796,"TargetStructureID":7050,"Label":"15796-7050 via Touch from 55669 -> 55670","Type":"Touch","Directional":false,"Links":[{"SourceID":55669,"TargetID":55670,"Directional":false}]},{"ID":4406,"SourceStructureID":48516,"TargetStructureID":7050,"Label":"48516-7050 via Gap Junction from 93789 -> 24880","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93789,"TargetID":24880,"Directional":false}]},{"ID":4407,"SourceStructureID":7050,"TargetStructureID":63089,"Label":"7050-63089 via Gap Junction from 63092 -> 63093","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":63092,"TargetID":63093,"Directional":false}]},{"ID":4408,"SourceStructureID":7147,"TargetStructureID":7113,"Label":"7147-7113 via Gap Junction from 29720 -> 29719, 29724 -> 29718","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":29720,"TargetID":29719,"Directional":false},{"SourceID":29724,"TargetID":29718,"Directional":false}]},{"ID":4409,"SourceStructureID":12203,"TargetStructureID":7113,"Label":"12203-7113 via Touch from 31369 -> 31370","Type":"Touch","Directional":false,"Links":[{"SourceID":31369,"TargetID":31370,"Directional":false}]},{"ID":4410,"SourceStructureID":15977,"TargetStructureID":7114,"Label":"15977-7114 via Gap Junction from 33950 -> 20437, 33954 -> 26611, 135959 -> 135960, 135962 -> 135963","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":33950,"TargetID":20437,"Directional":false},{"SourceID":33954,"TargetID":26611,"Directional":false},{"SourceID":135959,"TargetID":135960,"Directional":false},{"SourceID":135962,"TargetID":135963,"Directional":false}]},{"ID":4411,"SourceStructureID":7114,"TargetStructureID":88139,"Label":"7114-88139 via Adherens from 88142 -> 88141","Type":"Adherens","Directional":false,"Links":[{"SourceID":88142,"TargetID":88141,"Directional":false}]},{"ID":4412,"SourceStructureID":7114,"TargetStructureID":115118,"Label":"7114-115118 via Gap Junction from 124174 -> 124225","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124174,"TargetID":124225,"Directional":false}]},{"ID":4413,"SourceStructureID":12897,"TargetStructureID":7139,"Label":"12897-7139 via Touch from 24851 -> 24850","Type":"Touch","Directional":false,"Links":[{"SourceID":24851,"TargetID":24850,"Directional":false}]},{"ID":4414,"SourceStructureID":7147,"TargetStructureID":9769,"Label":"7147-9769 via Touch from 52594 -> 52593","Type":"Touch","Directional":false,"Links":[{"SourceID":52594,"TargetID":52593,"Directional":false}]},{"ID":4415,"SourceStructureID":7147,"TargetStructureID":12897,"Label":"7147-12897 via Gap Junction from 24636 -> 24635, 24639 -> 24638, 92806 -> 92808, 134415 -> 134412","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24636,"TargetID":24635,"Directional":false},{"SourceID":24639,"TargetID":24638,"Directional":false},{"SourceID":92806,"TargetID":92808,"Directional":false},{"SourceID":134415,"TargetID":134412,"Directional":false}]},{"ID":4416,"SourceStructureID":7147,"TargetStructureID":16026,"Label":"7147-16026 via Gap Junction from 91211 -> 91209, 91246 -> 91245","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91211,"TargetID":91209,"Directional":false},{"SourceID":91246,"TargetID":91245,"Directional":false}]},{"ID":4417,"SourceStructureID":73722,"TargetStructureID":7147,"Label":"73722-7147 via Gap Junction from 112281 -> 16067","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":112281,"TargetID":16067,"Directional":false}]},{"ID":4418,"SourceStructureID":91207,"TargetStructureID":7147,"Label":"91207-7147 via Gap Junction from 91229 -> 91228","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91229,"TargetID":91228,"Directional":false}]},{"ID":4419,"SourceStructureID":7147,"TargetStructureID":122849,"Label":"7147-122849 via Gap Junction from 130525 -> 130524","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130525,"TargetID":130524,"Directional":false}]},{"ID":4420,"SourceStructureID":7149,"TargetStructureID":15976,"Label":"7149-15976 via Gap Junction from 57151 -> 36042, 93346 -> 93345, 93363 -> 93361, 121767 -> 93302","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57151,"TargetID":36042,"Directional":false},{"SourceID":93346,"TargetID":93345,"Directional":false},{"SourceID":93363,"TargetID":93361,"Directional":false},{"SourceID":121767,"TargetID":93302,"Directional":false}]},{"ID":4421,"SourceStructureID":7149,"TargetStructureID":15976,"Label":"7149-15976 via Unknown from 93349 -> 93348, 93612 -> 93611","Type":"Unknown","Directional":false,"Links":[{"SourceID":93349,"TargetID":93348,"Directional":false},{"SourceID":93612,"TargetID":93611,"Directional":false}]},{"ID":4422,"SourceStructureID":7149,"TargetStructureID":121823,"Label":"7149-121823 via Gap Junction from 121822 -> 121824","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121822,"TargetID":121824,"Directional":false}]},{"ID":4423,"SourceStructureID":121827,"TargetStructureID":7149,"Label":"121827-7149 via Gap Junction from 121828 -> 121826","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121828,"TargetID":121826,"Directional":false}]},{"ID":4424,"SourceStructureID":7468,"TargetStructureID":7157,"Label":"7468-7157 via Adherens from 31751 -> 31750","Type":"Adherens","Directional":false,"Links":[{"SourceID":31751,"TargetID":31750,"Directional":false}]},{"ID":4425,"SourceStructureID":7468,"TargetStructureID":7157,"Label":"7468-7157 via Gap Junction from 31753 -> 31752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":31753,"TargetID":31752,"Directional":false}]},{"ID":4426,"SourceStructureID":7157,"TargetStructureID":33588,"Label":"7157-33588 via Adherens from 33596 -> 33595","Type":"Adherens","Directional":false,"Links":[{"SourceID":33596,"TargetID":33595,"Directional":false}]},{"ID":4427,"SourceStructureID":37295,"TargetStructureID":7157,"Label":"37295-7157 via Gap Junction from 37301 -> 37302","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":37301,"TargetID":37302,"Directional":false}]},{"ID":4428,"SourceStructureID":7157,"TargetStructureID":55403,"Label":"7157-55403 via Adherens from 55442 -> 55441","Type":"Adherens","Directional":false,"Links":[{"SourceID":55442,"TargetID":55441,"Directional":false}]},{"ID":4429,"SourceStructureID":87667,"TargetStructureID":7157,"Label":"87667-7157 via Gap Junction from 87676 -> 87675","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":87676,"TargetID":87675,"Directional":false}]},{"ID":4430,"SourceStructureID":7188,"TargetStructureID":19571,"Label":"7188-19571 via Adherens from 8522 -> 22717, 22719 -> 8529, 22722 -> 22721","Type":"Adherens","Directional":false,"Links":[{"SourceID":8522,"TargetID":22717,"Directional":false},{"SourceID":22719,"TargetID":8529,"Directional":false},{"SourceID":22722,"TargetID":22721,"Directional":false}]},{"ID":4431,"SourceStructureID":25155,"TargetStructureID":7225,"Label":"25155-7225 via Gap Junction from 25177 -> 25176","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":25177,"TargetID":25176,"Directional":false}]},{"ID":4432,"SourceStructureID":38245,"TargetStructureID":7225,"Label":"38245-7225 via Gap Junction from 39165 -> 39167","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":39165,"TargetID":39167,"Directional":false}]},{"ID":4433,"SourceStructureID":7231,"TargetStructureID":7231,"Label":"7231-7231 via Adherens from 117033 -> 117032","Type":"Adherens","Directional":false,"Links":[{"SourceID":117033,"TargetID":117032,"Directional":false}]},{"ID":4434,"SourceStructureID":7231,"TargetStructureID":15977,"Label":"7231-15977 via Adherens from 116989 -> 116988","Type":"Adherens","Directional":false,"Links":[{"SourceID":116989,"TargetID":116988,"Directional":false}]},{"ID":4435,"SourceStructureID":7231,"TargetStructureID":15977,"Label":"7231-15977 via Gap Junction from 116965 -> 116987","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116965,"TargetID":116987,"Directional":false}]},{"ID":4436,"SourceStructureID":7231,"TargetStructureID":15977,"Label":"7231-15977 via Unknown from 117022 -> 117021","Type":"Unknown","Directional":false,"Links":[{"SourceID":117022,"TargetID":117021,"Directional":false}]},{"ID":4437,"SourceStructureID":7279,"TargetStructureID":117112,"Label":"7279-117112 via Gap Junction from 123521 -> 123520","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123521,"TargetID":123520,"Directional":false}]},{"ID":4438,"SourceStructureID":7346,"TargetStructureID":7346,"Label":"7346-7346 via Gap Junction from 43864 -> 43866, 44122 -> 43882, 45423 -> 45422","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43864,"TargetID":43866,"Directional":false},{"SourceID":44122,"TargetID":43882,"Directional":false},{"SourceID":45423,"TargetID":45422,"Directional":false}]},{"ID":4439,"SourceStructureID":7880,"TargetStructureID":7346,"Label":"7880-7346 via Gap Junction from 45190 -> 45139, 45307 -> 45308","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45190,"TargetID":45139,"Directional":false},{"SourceID":45307,"TargetID":45308,"Directional":false}]},{"ID":4440,"SourceStructureID":11066,"TargetStructureID":7346,"Label":"11066-7346 via Gap Junction from 43951 -> 43950","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":43951,"TargetID":43950,"Directional":false}]},{"ID":4441,"SourceStructureID":7346,"TargetStructureID":44095,"Label":"7346-44095 via Gap Junction from 45415 -> 44097","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45415,"TargetID":44097,"Directional":false}]},{"ID":4442,"SourceStructureID":7346,"TargetStructureID":44117,"Label":"7346-44117 via Gap Junction from 44116 -> 44118","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":44116,"TargetID":44118,"Directional":false}]},{"ID":4443,"SourceStructureID":158538,"TargetStructureID":7362,"Label":"158538-7362 via Adherens from 158539 -> 117294","Type":"Adherens","Directional":false,"Links":[{"SourceID":158539,"TargetID":117294,"Directional":false}]},{"ID":4444,"SourceStructureID":31710,"TargetStructureID":7468,"Label":"31710-7468 via Gap Junction from 121299 -> 121298, 121302 -> 121301","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121299,"TargetID":121298,"Directional":false},{"SourceID":121302,"TargetID":121301,"Directional":false}]},{"ID":4445,"SourceStructureID":82677,"TargetStructureID":7564,"Label":"82677-7564 via Gap Junction from 114626 -> 29639","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":114626,"TargetID":29639,"Directional":false}]},{"ID":4446,"SourceStructureID":7568,"TargetStructureID":10945,"Label":"7568-10945 via Adherens from 27045 -> 27046","Type":"Adherens","Directional":false,"Links":[{"SourceID":27045,"TargetID":27046,"Directional":false}]},{"ID":4447,"SourceStructureID":137159,"TargetStructureID":7568,"Label":"137159-7568 via Adherens from 147206 -> 27082","Type":"Adherens","Directional":false,"Links":[{"SourceID":147206,"TargetID":27082,"Directional":false}]},{"ID":4448,"SourceStructureID":7576,"TargetStructureID":7576,"Label":"7576-7576 via Adherens from 54974 -> 54973, 55002 -> 55001, 55089 -> 55090","Type":"Adherens","Directional":false,"Links":[{"SourceID":54974,"TargetID":54973,"Directional":false},{"SourceID":55002,"TargetID":55001,"Directional":false},{"SourceID":55089,"TargetID":55090,"Directional":false}]},{"ID":4449,"SourceStructureID":7576,"TargetStructureID":54913,"Label":"7576-54913 via Gap Junction from 55059 -> 55060","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":55059,"TargetID":55060,"Directional":false}]},{"ID":4450,"SourceStructureID":135295,"TargetStructureID":7587,"Label":"135295-7587 via Gap Junction from 135296 -> 135294","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135296,"TargetID":135294,"Directional":false}]},{"ID":4451,"SourceStructureID":9769,"TargetStructureID":7594,"Label":"9769-7594 via Adherens from 46856 -> 46855","Type":"Adherens","Directional":false,"Links":[{"SourceID":46856,"TargetID":46855,"Directional":false}]},{"ID":4452,"SourceStructureID":7594,"TargetStructureID":9769,"Label":"7594-9769 via Touch from 52408 -> 52407","Type":"Touch","Directional":false,"Links":[{"SourceID":52408,"TargetID":52407,"Directional":false}]},{"ID":4453,"SourceStructureID":7850,"TargetStructureID":68153,"Label":"7850-68153 via Adherens from 70037 -> 70036","Type":"Adherens","Directional":false,"Links":[{"SourceID":70037,"TargetID":70036,"Directional":false}]},{"ID":4454,"SourceStructureID":7859,"TargetStructureID":9787,"Label":"7859-9787 via Gap Junction from 84682 -> 84683, 84684 -> 56330, 84685 -> 56330","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84682,"TargetID":84683,"Directional":false},{"SourceID":84684,"TargetID":56330,"Directional":false},{"SourceID":84685,"TargetID":56330,"Directional":false}]},{"ID":4455,"SourceStructureID":28950,"TargetStructureID":7859,"Label":"28950-7859 via Gap Junction from 84729 -> 84728","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84729,"TargetID":84728,"Directional":false}]},{"ID":4456,"SourceStructureID":64665,"TargetStructureID":7859,"Label":"64665-7859 via Adherens from 64666 -> 64663","Type":"Adherens","Directional":false,"Links":[{"SourceID":64666,"TargetID":64663,"Directional":false}]},{"ID":4457,"SourceStructureID":84825,"TargetStructureID":7859,"Label":"84825-7859 via Touch from 84826 -> 84824","Type":"Touch","Directional":false,"Links":[{"SourceID":84826,"TargetID":84824,"Directional":false}]},{"ID":4458,"SourceStructureID":7861,"TargetStructureID":52152,"Label":"7861-52152 via Gap Junction from 52153 -> 52154","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":52153,"TargetID":52154,"Directional":false}]},{"ID":4459,"SourceStructureID":7861,"TargetStructureID":82677,"Label":"7861-82677 via Adherens from 84070 -> 84076","Type":"Adherens","Directional":false,"Links":[{"SourceID":84070,"TargetID":84076,"Directional":false}]},{"ID":4460,"SourceStructureID":7861,"TargetStructureID":82677,"Label":"7861-82677 via Gap Junction from 61750 -> 114622, 84016 -> 61749, 84072 -> 84071, 114624 -> 114623, 114638 -> 114637, 118006 -> 91495","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61750,"TargetID":114622,"Directional":false},{"SourceID":84016,"TargetID":61749,"Directional":false},{"SourceID":84072,"TargetID":84071,"Directional":false},{"SourceID":114624,"TargetID":114623,"Directional":false},{"SourceID":114638,"TargetID":114637,"Directional":false},{"SourceID":118006,"TargetID":91495,"Directional":false}]},{"ID":4461,"SourceStructureID":7861,"TargetStructureID":99639,"Label":"7861-99639 via Gap Junction from 121015 -> 101273","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121015,"TargetID":101273,"Directional":false}]},{"ID":4462,"SourceStructureID":7861,"TargetStructureID":117990,"Label":"7861-117990 via Gap Junction from 117997 -> 117996","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117997,"TargetID":117996,"Directional":false}]},{"ID":4463,"SourceStructureID":122415,"TargetStructureID":7861,"Label":"122415-7861 via Gap Junction from 122416 -> 122414","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122416,"TargetID":122414,"Directional":false}]},{"ID":4464,"SourceStructureID":7861,"TargetStructureID":122420,"Label":"7861-122420 via Gap Junction from 122419 -> 122421","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122419,"TargetID":122421,"Directional":false}]},{"ID":4465,"SourceStructureID":122424,"TargetStructureID":7861,"Label":"122424-7861 via Gap Junction from 122425 -> 122423","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122425,"TargetID":122423,"Directional":false}]},{"ID":4466,"SourceStructureID":7861,"TargetStructureID":137070,"Label":"7861-137070 via Adherens from 137072 -> 137071","Type":"Adherens","Directional":false,"Links":[{"SourceID":137072,"TargetID":137071,"Directional":false}]},{"ID":4467,"SourceStructureID":8033,"TargetStructureID":9769,"Label":"8033-9769 via Touch from 29922 -> 29921","Type":"Touch","Directional":false,"Links":[{"SourceID":29922,"TargetID":29921,"Directional":false}]},{"ID":4468,"SourceStructureID":66111,"TargetStructureID":8033,"Label":"66111-8033 via Adherens from 68590 -> 68591","Type":"Adherens","Directional":false,"Links":[{"SourceID":68590,"TargetID":68591,"Directional":false}]},{"ID":4469,"SourceStructureID":8038,"TargetStructureID":8037,"Label":"8038-8037 via Gap Junction from 68971 -> 68970, 136200 -> 68925","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68971,"TargetID":68970,"Directional":false},{"SourceID":136200,"TargetID":68925,"Directional":false}]},{"ID":4470,"SourceStructureID":9693,"TargetStructureID":8037,"Label":"9693-8037 via Adherens from 119773 -> 119774","Type":"Adherens","Directional":false,"Links":[{"SourceID":119773,"TargetID":119774,"Directional":false}]},{"ID":4471,"SourceStructureID":9769,"TargetStructureID":8037,"Label":"9769-8037 via Touch from 29891 -> 29890","Type":"Touch","Directional":false,"Links":[{"SourceID":29891,"TargetID":29890,"Directional":false}]},{"ID":4472,"SourceStructureID":8037,"TargetStructureID":12897,"Label":"8037-12897 via Gap Junction from 16408 -> 24707, 24694 -> 24606, 24699 -> 24598, 24716 -> 24607, 24744 -> 15732","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":16408,"TargetID":24707,"Directional":false},{"SourceID":24694,"TargetID":24606,"Directional":false},{"SourceID":24699,"TargetID":24598,"Directional":false},{"SourceID":24716,"TargetID":24607,"Directional":false},{"SourceID":24744,"TargetID":15732,"Directional":false}]},{"ID":4473,"SourceStructureID":8037,"TargetStructureID":25410,"Label":"8037-25410 via Adherens from 25427 -> 25419","Type":"Adherens","Directional":false,"Links":[{"SourceID":25427,"TargetID":25419,"Directional":false}]},{"ID":4474,"SourceStructureID":50449,"TargetStructureID":8037,"Label":"50449-8037 via Gap Junction from 50520 -> 120858, 120855 -> 120854, 120857 -> 120856, 148212 -> 148215","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50520,"TargetID":120858,"Directional":false},{"SourceID":120855,"TargetID":120854,"Directional":false},{"SourceID":120857,"TargetID":120856,"Directional":false},{"SourceID":148212,"TargetID":148215,"Directional":false}]},{"ID":4475,"SourceStructureID":132773,"TargetStructureID":8037,"Label":"132773-8037 via Adherens from 132777 -> 88897","Type":"Adherens","Directional":false,"Links":[{"SourceID":132777,"TargetID":88897,"Directional":false}]},{"ID":4476,"SourceStructureID":132773,"TargetStructureID":8037,"Label":"132773-8037 via Gap Junction from 132778 -> 130628","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132778,"TargetID":130628,"Directional":false}]},{"ID":4477,"SourceStructureID":8038,"TargetStructureID":8040,"Label":"8038-8040 via Gap Junction from 48598 -> 48596, 113049 -> 48628","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48598,"TargetID":48596,"Directional":false},{"SourceID":113049,"TargetID":48628,"Directional":false}]},{"ID":4478,"SourceStructureID":11246,"TargetStructureID":8038,"Label":"11246-8038 via Adherens from 68963 -> 68962","Type":"Adherens","Directional":false,"Links":[{"SourceID":68963,"TargetID":68962,"Directional":false}]},{"ID":4479,"SourceStructureID":32804,"TargetStructureID":8038,"Label":"32804-8038 via Touch from 32814 -> 32815","Type":"Touch","Directional":false,"Links":[{"SourceID":32814,"TargetID":32815,"Directional":false}]},{"ID":4480,"SourceStructureID":50449,"TargetStructureID":8038,"Label":"50449-8038 via Gap Junction from 50477 -> 50478","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":50477,"TargetID":50478,"Directional":false}]},{"ID":4481,"SourceStructureID":70500,"TargetStructureID":8038,"Label":"70500-8038 via Adherens from 129063 -> 129064, 129065 -> 129066","Type":"Adherens","Directional":false,"Links":[{"SourceID":129063,"TargetID":129064,"Directional":false},{"SourceID":129065,"TargetID":129066,"Directional":false}]},{"ID":4482,"SourceStructureID":8038,"TargetStructureID":70500,"Label":"8038-70500 via Gap Junction from 129062 -> 129051","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129062,"TargetID":129051,"Directional":false}]},{"ID":4483,"SourceStructureID":8038,"TargetStructureID":118654,"Label":"8038-118654 via Gap Junction from 118676 -> 118657","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118676,"TargetID":118657,"Directional":false}]},{"ID":4484,"SourceStructureID":8040,"TargetStructureID":8040,"Label":"8040-8040 via Gap Junction from 120818 -> 120819","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120818,"TargetID":120819,"Directional":false}]},{"ID":4485,"SourceStructureID":8040,"TargetStructureID":64939,"Label":"8040-64939 via Adherens from 48657 -> 65452","Type":"Adherens","Directional":false,"Links":[{"SourceID":48657,"TargetID":65452,"Directional":false}]},{"ID":4486,"SourceStructureID":8040,"TargetStructureID":64939,"Label":"8040-64939 via Gap Junction from 93631 -> 93630, 120823 -> 120824","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93631,"TargetID":93630,"Directional":false},{"SourceID":120823,"TargetID":120824,"Directional":false}]},{"ID":4487,"SourceStructureID":102459,"TargetStructureID":8080,"Label":"102459-8080 via Adherens from 129544 -> 129543","Type":"Adherens","Directional":false,"Links":[{"SourceID":129544,"TargetID":129543,"Directional":false}]},{"ID":4488,"SourceStructureID":61672,"TargetStructureID":8575,"Label":"61672-8575 via Gap Junction from 61674 -> 61671","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61674,"TargetID":61671,"Directional":false}]},{"ID":4489,"SourceStructureID":61752,"TargetStructureID":8575,"Label":"61752-8575 via Gap Junction from 61753 -> 61751","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61753,"TargetID":61751,"Directional":false}]},{"ID":4490,"SourceStructureID":62842,"TargetStructureID":8575,"Label":"62842-8575 via Adherens from 62843 -> 62841","Type":"Adherens","Directional":false,"Links":[{"SourceID":62843,"TargetID":62841,"Directional":false}]},{"ID":4491,"SourceStructureID":8576,"TargetStructureID":8576,"Label":"8576-8576 via Postsynapse from 20050 -> 37725","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":20050,"TargetID":37725,"Directional":false}]},{"ID":4492,"SourceStructureID":8579,"TargetStructureID":8577,"Label":"8579-8577 via Adherens from 62905 -> 62904","Type":"Adherens","Directional":false,"Links":[{"SourceID":62905,"TargetID":62904,"Directional":false}]},{"ID":4493,"SourceStructureID":8579,"TargetStructureID":8577,"Label":"8579-8577 via Unknown from 132850 -> 132849","Type":"Unknown","Directional":false,"Links":[{"SourceID":132850,"TargetID":132849,"Directional":false}]},{"ID":4494,"SourceStructureID":79071,"TargetStructureID":8577,"Label":"79071-8577 via Neuroglial adherens from 79331 -> 79332","Type":"Neuroglial adherens","Directional":false,"Links":[{"SourceID":79331,"TargetID":79332,"Directional":false}]},{"ID":4495,"SourceStructureID":8577,"TargetStructureID":79091,"Label":"8577-79091 via Neuroglial adherens from 79404 -> 79403","Type":"Neuroglial adherens","Directional":false,"Links":[{"SourceID":79404,"TargetID":79403,"Directional":false}]},{"ID":4496,"SourceStructureID":8579,"TargetStructureID":8580,"Label":"8579-8580 via Gap Junction from 72104 -> 72103","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":72104,"TargetID":72103,"Directional":false}]},{"ID":4497,"SourceStructureID":8579,"TargetStructureID":16026,"Label":"8579-16026 via Adherens from 134329 -> 134328, 134331 -> 134330","Type":"Adherens","Directional":false,"Links":[{"SourceID":134329,"TargetID":134328,"Directional":false},{"SourceID":134331,"TargetID":134330,"Directional":false}]},{"ID":4498,"SourceStructureID":8579,"TargetStructureID":16026,"Label":"8579-16026 via Unknown from 134586 -> 134585, 134587 -> 134588","Type":"Unknown","Directional":false,"Links":[{"SourceID":134586,"TargetID":134585,"Directional":false},{"SourceID":134587,"TargetID":134588,"Directional":false}]},{"ID":4499,"SourceStructureID":20136,"TargetStructureID":8579,"Label":"20136-8579 via Unknown from 109077 -> 109078","Type":"Unknown","Directional":false,"Links":[{"SourceID":109077,"TargetID":109078,"Directional":false}]},{"ID":4500,"SourceStructureID":8579,"TargetStructureID":29702,"Label":"8579-29702 via Adherens from 76076 -> 76077","Type":"Adherens","Directional":false,"Links":[{"SourceID":76076,"TargetID":76077,"Directional":false}]},{"ID":4501,"SourceStructureID":8579,"TargetStructureID":61864,"Label":"8579-61864 via Adherens from 19803 -> 66331, 65490 -> 19804","Type":"Adherens","Directional":false,"Links":[{"SourceID":19803,"TargetID":66331,"Directional":false},{"SourceID":65490,"TargetID":19804,"Directional":false}]},{"ID":4502,"SourceStructureID":62933,"TargetStructureID":8579,"Label":"62933-8579 via Adherens from 62936 -> 62937","Type":"Adherens","Directional":false,"Links":[{"SourceID":62936,"TargetID":62937,"Directional":false}]},{"ID":4503,"SourceStructureID":11030,"TargetStructureID":8580,"Label":"11030-8580 via Touch from 59882 -> 59881","Type":"Touch","Directional":false,"Links":[{"SourceID":59882,"TargetID":59881,"Directional":false}]},{"ID":4504,"SourceStructureID":11043,"TargetStructureID":8580,"Label":"11043-8580 via Touch from 59893 -> 59892","Type":"Touch","Directional":false,"Links":[{"SourceID":59893,"TargetID":59892,"Directional":false}]},{"ID":4505,"SourceStructureID":72395,"TargetStructureID":8580,"Label":"72395-8580 via Unknown from 72412 -> 72413","Type":"Unknown","Directional":false,"Links":[{"SourceID":72412,"TargetID":72413,"Directional":false}]},{"ID":4506,"SourceStructureID":72483,"TargetStructureID":8580,"Label":"72483-8580 via Adherens from 72485 -> 72484","Type":"Adherens","Directional":false,"Links":[{"SourceID":72485,"TargetID":72484,"Directional":false}]},{"ID":4507,"SourceStructureID":73678,"TargetStructureID":8580,"Label":"73678-8580 via Adherens from 73679 -> 73677","Type":"Adherens","Directional":false,"Links":[{"SourceID":73679,"TargetID":73677,"Directional":false}]},{"ID":4508,"SourceStructureID":75721,"TargetStructureID":8580,"Label":"75721-8580 via Adherens from 75723 -> 75720, 75725 -> 75724","Type":"Adherens","Directional":false,"Links":[{"SourceID":75723,"TargetID":75720,"Directional":false},{"SourceID":75725,"TargetID":75724,"Directional":false}]},{"ID":4509,"SourceStructureID":31161,"TargetStructureID":8588,"Label":"31161-8588 via Touch from 32712 -> 32711","Type":"Touch","Directional":false,"Links":[{"SourceID":32712,"TargetID":32711,"Directional":false}]},{"ID":4510,"SourceStructureID":66946,"TargetStructureID":8588,"Label":"66946-8588 via Adherens from 83324 -> 67415","Type":"Adherens","Directional":false,"Links":[{"SourceID":83324,"TargetID":67415,"Directional":false}]},{"ID":4511,"SourceStructureID":82271,"TargetStructureID":8588,"Label":"82271-8588 via Adherens from 82276 -> 80587","Type":"Adherens","Directional":false,"Links":[{"SourceID":82276,"TargetID":80587,"Directional":false}]},{"ID":4512,"SourceStructureID":8589,"TargetStructureID":8589,"Label":"8589-8589 via Gap Junction from 70453 -> 70452, 71975 -> 71974","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70453,"TargetID":70452,"Directional":false},{"SourceID":71975,"TargetID":71974,"Directional":false}]},{"ID":4513,"SourceStructureID":70398,"TargetStructureID":8589,"Label":"70398-8589 via Adherens from 70399 -> 70397","Type":"Adherens","Directional":false,"Links":[{"SourceID":70399,"TargetID":70397,"Directional":false}]},{"ID":4514,"SourceStructureID":8589,"TargetStructureID":70403,"Label":"8589-70403 via Adherens from 70405 -> 70404","Type":"Adherens","Directional":false,"Links":[{"SourceID":70405,"TargetID":70404,"Directional":false}]},{"ID":4515,"SourceStructureID":8589,"TargetStructureID":70444,"Label":"8589-70444 via Adherens from 71313 -> 71312, 71314 -> 71315","Type":"Adherens","Directional":false,"Links":[{"SourceID":71313,"TargetID":71312,"Directional":false},{"SourceID":71314,"TargetID":71315,"Directional":false}]},{"ID":4516,"SourceStructureID":8589,"TargetStructureID":70444,"Label":"8589-70444 via Gap Junction from 70447 -> 70448","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70447,"TargetID":70448,"Directional":false}]},{"ID":4517,"SourceStructureID":8589,"TargetStructureID":70462,"Label":"8589-70462 via Adherens from 70392 -> 70463","Type":"Adherens","Directional":false,"Links":[{"SourceID":70392,"TargetID":70463,"Directional":false}]},{"ID":4518,"SourceStructureID":8589,"TargetStructureID":71318,"Label":"8589-71318 via Adherens from 71320 -> 71319","Type":"Adherens","Directional":false,"Links":[{"SourceID":71320,"TargetID":71319,"Directional":false}]},{"ID":4519,"SourceStructureID":8589,"TargetStructureID":71322,"Label":"8589-71322 via Adherens from 71390 -> 71391","Type":"Adherens","Directional":false,"Links":[{"SourceID":71390,"TargetID":71391,"Directional":false}]},{"ID":4520,"SourceStructureID":71411,"TargetStructureID":8589,"Label":"71411-8589 via Gap Junction from 71412 -> 71409","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71412,"TargetID":71409,"Directional":false}]},{"ID":4521,"SourceStructureID":71597,"TargetStructureID":8589,"Label":"71597-8589 via Adherens from 71750 -> 71749","Type":"Adherens","Directional":false,"Links":[{"SourceID":71750,"TargetID":71749,"Directional":false}]},{"ID":4522,"SourceStructureID":8589,"TargetStructureID":71625,"Label":"8589-71625 via Adherens from 71745 -> 71746","Type":"Adherens","Directional":false,"Links":[{"SourceID":71745,"TargetID":71746,"Directional":false}]},{"ID":4523,"SourceStructureID":16026,"TargetStructureID":8720,"Label":"16026-8720 via Unknown from 114652 -> 134419","Type":"Unknown","Directional":false,"Links":[{"SourceID":114652,"TargetID":134419,"Directional":false}]},{"ID":4524,"SourceStructureID":59974,"TargetStructureID":8720,"Label":"59974-8720 via Adherens from 59975 -> 59973","Type":"Adherens","Directional":false,"Links":[{"SourceID":59975,"TargetID":59973,"Directional":false}]},{"ID":4525,"SourceStructureID":9129,"TargetStructureID":35526,"Label":"9129-35526 via Adherens from 64332 -> 64333","Type":"Adherens","Directional":false,"Links":[{"SourceID":64332,"TargetID":64333,"Directional":false}]},{"ID":4526,"SourceStructureID":9129,"TargetStructureID":74205,"Label":"9129-74205 via Adherens from 74207 -> 74208","Type":"Adherens","Directional":false,"Links":[{"SourceID":74207,"TargetID":74208,"Directional":false}]},{"ID":4527,"SourceStructureID":122829,"TargetStructureID":9129,"Label":"122829-9129 via Touch from 122847 -> 122846","Type":"Touch","Directional":false,"Links":[{"SourceID":122847,"TargetID":122846,"Directional":false}]},{"ID":4528,"SourceStructureID":9260,"TargetStructureID":9260,"Label":"9260-9260 via Adherens from 39676 -> 39675","Type":"Adherens","Directional":false,"Links":[{"SourceID":39676,"TargetID":39675,"Directional":false}]},{"ID":4529,"SourceStructureID":9260,"TargetStructureID":39285,"Label":"9260-39285 via Unknown from 93093 -> 93092","Type":"Unknown","Directional":false,"Links":[{"SourceID":93093,"TargetID":93092,"Directional":false}]},{"ID":4530,"SourceStructureID":15394,"TargetStructureID":9693,"Label":"15394-9693 via Adherens from 47699 -> 47698","Type":"Adherens","Directional":false,"Links":[{"SourceID":47699,"TargetID":47698,"Directional":false}]},{"ID":4531,"SourceStructureID":9693,"TargetStructureID":15394,"Label":"9693-15394 via Unknown from 120115 -> 120116","Type":"Unknown","Directional":false,"Links":[{"SourceID":120115,"TargetID":120116,"Directional":false}]},{"ID":4532,"SourceStructureID":9693,"TargetStructureID":32739,"Label":"9693-32739 via Adherens from 119829 -> 119833","Type":"Adherens","Directional":false,"Links":[{"SourceID":119829,"TargetID":119833,"Directional":false}]},{"ID":4533,"SourceStructureID":134659,"TargetStructureID":9693,"Label":"134659-9693 via Adherens from 134661 -> 119783","Type":"Adherens","Directional":false,"Links":[{"SourceID":134661,"TargetID":119783,"Directional":false}]},{"ID":4534,"SourceStructureID":9693,"TargetStructureID":134674,"Label":"9693-134674 via Adherens from 134673 -> 134675","Type":"Adherens","Directional":false,"Links":[{"SourceID":134673,"TargetID":134675,"Directional":false}]},{"ID":4535,"SourceStructureID":134687,"TargetStructureID":9693,"Label":"134687-9693 via Adherens from 134689 -> 134683","Type":"Adherens","Directional":false,"Links":[{"SourceID":134689,"TargetID":134683,"Directional":false}]},{"ID":4536,"SourceStructureID":9693,"TargetStructureID":134718,"Label":"9693-134718 via Unknown from 134998 -> 134997","Type":"Unknown","Directional":false,"Links":[{"SourceID":134998,"TargetID":134997,"Directional":false}]},{"ID":4537,"SourceStructureID":45220,"TargetStructureID":9769,"Label":"45220-9769 via Gap Junction from 45327 -> 45219","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45327,"TargetID":45219,"Directional":false}]},{"ID":4538,"SourceStructureID":9769,"TargetStructureID":45326,"Label":"9769-45326 via Gap Junction from 45325 -> 45329","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45325,"TargetID":45329,"Directional":false}]},{"ID":4539,"SourceStructureID":45358,"TargetStructureID":9769,"Label":"45358-9769 via Gap Junction from 45359 -> 45357","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":45359,"TargetID":45357,"Directional":false}]},{"ID":4540,"SourceStructureID":9769,"TargetStructureID":50982,"Label":"9769-50982 via Adherens from 52387 -> 52388","Type":"Adherens","Directional":false,"Links":[{"SourceID":52387,"TargetID":52388,"Directional":false}]},{"ID":4541,"SourceStructureID":9769,"TargetStructureID":53421,"Label":"9769-53421 via Adherens from 53424 -> 53423","Type":"Adherens","Directional":false,"Links":[{"SourceID":53424,"TargetID":53423,"Directional":false}]},{"ID":4542,"SourceStructureID":54264,"TargetStructureID":9769,"Label":"54264-9769 via Adherens from 54265 -> 23928","Type":"Adherens","Directional":false,"Links":[{"SourceID":54265,"TargetID":23928,"Directional":false}]},{"ID":4543,"SourceStructureID":74047,"TargetStructureID":9769,"Label":"74047-9769 via Adherens from 74339 -> 74340, 74342 -> 74343","Type":"Adherens","Directional":false,"Links":[{"SourceID":74339,"TargetID":74340,"Directional":false},{"SourceID":74342,"TargetID":74343,"Directional":false}]},{"ID":4544,"SourceStructureID":9769,"TargetStructureID":74047,"Label":"9769-74047 via Unknown from 74332 -> 74327","Type":"Unknown","Directional":false,"Links":[{"SourceID":74332,"TargetID":74327,"Directional":false}]},{"ID":4545,"SourceStructureID":9769,"TargetStructureID":84401,"Label":"9769-84401 via Adherens from 84404 -> 84403","Type":"Adherens","Directional":false,"Links":[{"SourceID":84404,"TargetID":84403,"Directional":false}]},{"ID":4546,"SourceStructureID":56211,"TargetStructureID":9787,"Label":"56211-9787 via Gap Junction from 56238 -> 56239, 85606 -> 56381","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56238,"TargetID":56239,"Directional":false},{"SourceID":85606,"TargetID":56381,"Directional":false}]},{"ID":4547,"SourceStructureID":56328,"TargetStructureID":9787,"Label":"56328-9787 via Gap Junction from 56329 -> 56327","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56329,"TargetID":56327,"Directional":false}]},{"ID":4548,"SourceStructureID":56598,"TargetStructureID":9787,"Label":"56598-9787 via Gap Junction from 75640 -> 75639","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":75640,"TargetID":75639,"Directional":false}]},{"ID":4549,"SourceStructureID":59229,"TargetStructureID":9787,"Label":"59229-9787 via Gap Junction from 85537 -> 56379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85537,"TargetID":56379,"Directional":false}]},{"ID":4550,"SourceStructureID":85508,"TargetStructureID":9787,"Label":"85508-9787 via Gap Junction from 85509 -> 56376","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85509,"TargetID":56376,"Directional":false}]},{"ID":4551,"SourceStructureID":85517,"TargetStructureID":9787,"Label":"85517-9787 via Gap Junction from 85518 -> 56377","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85518,"TargetID":56377,"Directional":false}]},{"ID":4552,"SourceStructureID":85604,"TargetStructureID":9787,"Label":"85604-9787 via Gap Junction from 85605 -> 56380","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85605,"TargetID":56380,"Directional":false}]},{"ID":4553,"SourceStructureID":85607,"TargetStructureID":9787,"Label":"85607-9787 via Gap Junction from 85608 -> 56382","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85608,"TargetID":56382,"Directional":false}]},{"ID":4554,"SourceStructureID":49185,"TargetStructureID":10559,"Label":"49185-10559 via Adherens from 49189 -> 49190, 49191 -> 49192","Type":"Adherens","Directional":false,"Links":[{"SourceID":49189,"TargetID":49190,"Directional":false},{"SourceID":49191,"TargetID":49192,"Directional":false}]},{"ID":4555,"SourceStructureID":39602,"TargetStructureID":10625,"Label":"39602-10625 via Adherens from 64338 -> 64337","Type":"Adherens","Directional":false,"Links":[{"SourceID":64338,"TargetID":64337,"Directional":false}]},{"ID":4556,"SourceStructureID":96788,"TargetStructureID":10872,"Label":"96788-10872 via Unknown from 96803 -> 96804","Type":"Unknown","Directional":false,"Links":[{"SourceID":96803,"TargetID":96804,"Directional":false}]},{"ID":4557,"SourceStructureID":98127,"TargetStructureID":10957,"Label":"98127-10957 via Unknown from 98876 -> 98877","Type":"Unknown","Directional":false,"Links":[{"SourceID":98876,"TargetID":98877,"Directional":false}]},{"ID":4558,"SourceStructureID":10959,"TargetStructureID":10959,"Label":"10959-10959 via Unknown from 94441 -> 94440","Type":"Unknown","Directional":false,"Links":[{"SourceID":94441,"TargetID":94440,"Directional":false}]},{"ID":4559,"SourceStructureID":10959,"TargetStructureID":86751,"Label":"10959-86751 via Unknown from 86754 -> 86753","Type":"Unknown","Directional":false,"Links":[{"SourceID":86754,"TargetID":86753,"Directional":false}]},{"ID":4560,"SourceStructureID":86775,"TargetStructureID":10959,"Label":"86775-10959 via Adherens from 86776 -> 86774","Type":"Adherens","Directional":false,"Links":[{"SourceID":86776,"TargetID":86774,"Directional":false}]},{"ID":4561,"SourceStructureID":86783,"TargetStructureID":10959,"Label":"86783-10959 via Adherens from 86785 -> 86781","Type":"Adherens","Directional":false,"Links":[{"SourceID":86785,"TargetID":86781,"Directional":false}]},{"ID":4562,"SourceStructureID":10959,"TargetStructureID":86816,"Label":"10959-86816 via Adherens from 86835 -> 86836","Type":"Adherens","Directional":false,"Links":[{"SourceID":86835,"TargetID":86836,"Directional":false}]},{"ID":4563,"SourceStructureID":86838,"TargetStructureID":10959,"Label":"86838-10959 via Adherens from 86839 -> 86837","Type":"Adherens","Directional":false,"Links":[{"SourceID":86839,"TargetID":86837,"Directional":false}]},{"ID":4564,"SourceStructureID":86891,"TargetStructureID":10959,"Label":"86891-10959 via Adherens from 86892 -> 86893","Type":"Adherens","Directional":false,"Links":[{"SourceID":86892,"TargetID":86893,"Directional":false}]},{"ID":4565,"SourceStructureID":15394,"TargetStructureID":10960,"Label":"15394-10960 via Touch from 41017 -> 41018","Type":"Touch","Directional":false,"Links":[{"SourceID":41017,"TargetID":41018,"Directional":false}]},{"ID":4566,"SourceStructureID":10963,"TargetStructureID":64777,"Label":"10963-64777 via Touch from 64810 -> 64809","Type":"Touch","Directional":false,"Links":[{"SourceID":64810,"TargetID":64809,"Directional":false}]},{"ID":4567,"SourceStructureID":99650,"TargetStructureID":11037,"Label":"99650-11037 via Unknown from 99660 -> 99661","Type":"Unknown","Directional":false,"Links":[{"SourceID":99660,"TargetID":99661,"Directional":false}]},{"ID":4568,"SourceStructureID":11044,"TargetStructureID":15796,"Label":"11044-15796 via Touch from 32764 -> 32765","Type":"Touch","Directional":false,"Links":[{"SourceID":32764,"TargetID":32765,"Directional":false}]},{"ID":4569,"SourceStructureID":11074,"TargetStructureID":98618,"Label":"11074-98618 via Gap Junction from 98647 -> 98646","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98647,"TargetID":98646,"Directional":false}]},{"ID":4570,"SourceStructureID":11092,"TargetStructureID":95072,"Label":"11092-95072 via Gap Junction from 95075 -> 95076","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":95075,"TargetID":95076,"Directional":false}]},{"ID":4571,"SourceStructureID":11092,"TargetStructureID":123499,"Label":"11092-123499 via Gap Junction from 123505 -> 123506","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123505,"TargetID":123506,"Directional":false}]},{"ID":4572,"SourceStructureID":11229,"TargetStructureID":13624,"Label":"11229-13624 via Adherens from 15327 -> 15326","Type":"Adherens","Directional":false,"Links":[{"SourceID":15327,"TargetID":15326,"Directional":false}]},{"ID":4573,"SourceStructureID":11229,"TargetStructureID":15977,"Label":"11229-15977 via Gap Junction from 135683 -> 135682, 135684 -> 135685","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135683,"TargetID":135682,"Directional":false},{"SourceID":135684,"TargetID":135685,"Directional":false}]},{"ID":4574,"SourceStructureID":35418,"TargetStructureID":11234,"Label":"35418-11234 via Adherens from 64610 -> 64611","Type":"Adherens","Directional":false,"Links":[{"SourceID":64610,"TargetID":64611,"Directional":false}]},{"ID":4575,"SourceStructureID":24401,"TargetStructureID":11485,"Label":"24401-11485 via Adherens from 48127 -> 48128","Type":"Adherens","Directional":false,"Links":[{"SourceID":48127,"TargetID":48128,"Directional":false}]},{"ID":4576,"SourceStructureID":38698,"TargetStructureID":12564,"Label":"38698-12564 via Adherens from 55638 -> 55639","Type":"Adherens","Directional":false,"Links":[{"SourceID":55638,"TargetID":55639,"Directional":false}]},{"ID":4577,"SourceStructureID":12897,"TargetStructureID":16026,"Label":"12897-16026 via Adherens from 134422 -> 134421, 134886 -> 134885","Type":"Adherens","Directional":false,"Links":[{"SourceID":134422,"TargetID":134421,"Directional":false},{"SourceID":134886,"TargetID":134885,"Directional":false}]},{"ID":4578,"SourceStructureID":16026,"TargetStructureID":12897,"Label":"16026-12897 via Gap Junction from 24753 -> 24752, 91195 -> 91194, 91244 -> 24634, 92079 -> 92078, 92232 -> 92230, 92575 -> 92576, 92898 -> 92897","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24753,"TargetID":24752,"Directional":false},{"SourceID":91195,"TargetID":91194,"Directional":false},{"SourceID":91244,"TargetID":24634,"Directional":false},{"SourceID":92079,"TargetID":92078,"Directional":false},{"SourceID":92232,"TargetID":92230,"Directional":false},{"SourceID":92575,"TargetID":92576,"Directional":false},{"SourceID":92898,"TargetID":92897,"Directional":false}]},{"ID":4579,"SourceStructureID":87569,"TargetStructureID":12897,"Label":"87569-12897 via Adherens from 87574 -> 24841","Type":"Adherens","Directional":false,"Links":[{"SourceID":87574,"TargetID":24841,"Directional":false}]},{"ID":4580,"SourceStructureID":12897,"TargetStructureID":104764,"Label":"12897-104764 via Unknown from 134409 -> 134410","Type":"Unknown","Directional":false,"Links":[{"SourceID":134409,"TargetID":134410,"Directional":false}]},{"ID":4581,"SourceStructureID":12897,"TargetStructureID":122868,"Label":"12897-122868 via Adherens from 130536 -> 130535","Type":"Adherens","Directional":false,"Links":[{"SourceID":130536,"TargetID":130535,"Directional":false}]},{"ID":4582,"SourceStructureID":12897,"TargetStructureID":122868,"Label":"12897-122868 via Gap Junction from 130534 -> 130533, 132417 -> 132419, 132421 -> 132422","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130534,"TargetID":130533,"Directional":false},{"SourceID":132417,"TargetID":132419,"Directional":false},{"SourceID":132421,"TargetID":132422,"Directional":false}]},{"ID":4583,"SourceStructureID":135039,"TargetStructureID":12897,"Label":"135039-12897 via Gap Junction from 135040 -> 108243, 135043 -> 135044","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":135040,"TargetID":108243,"Directional":false},{"SourceID":135043,"TargetID":135044,"Directional":false}]},{"ID":4584,"SourceStructureID":135039,"TargetStructureID":12897,"Label":"135039-12897 via Unknown from 135049 -> 135050","Type":"Unknown","Directional":false,"Links":[{"SourceID":135049,"TargetID":135050,"Directional":false}]},{"ID":4585,"SourceStructureID":13130,"TargetStructureID":59737,"Label":"13130-59737 via Adherens from 59741 -> 59742","Type":"Adherens","Directional":false,"Links":[{"SourceID":59741,"TargetID":59742,"Directional":false}]},{"ID":4586,"SourceStructureID":101625,"TargetStructureID":13525,"Label":"101625-13525 via Adherens from 104701 -> 101624","Type":"Adherens","Directional":false,"Links":[{"SourceID":104701,"TargetID":101624,"Directional":false}]},{"ID":4587,"SourceStructureID":104677,"TargetStructureID":13525,"Label":"104677-13525 via Adherens from 104679 -> 85668","Type":"Adherens","Directional":false,"Links":[{"SourceID":104679,"TargetID":85668,"Directional":false}]},{"ID":4588,"SourceStructureID":104691,"TargetStructureID":13525,"Label":"104691-13525 via Adherens from 104692 -> 86728","Type":"Adherens","Directional":false,"Links":[{"SourceID":104692,"TargetID":86728,"Directional":false}]},{"ID":4589,"SourceStructureID":104693,"TargetStructureID":13525,"Label":"104693-13525 via Adherens from 104695 -> 94562","Type":"Adherens","Directional":false,"Links":[{"SourceID":104695,"TargetID":94562,"Directional":false}]},{"ID":4590,"SourceStructureID":104726,"TargetStructureID":13525,"Label":"104726-13525 via Adherens from 104730 -> 94557","Type":"Adherens","Directional":false,"Links":[{"SourceID":104730,"TargetID":94557,"Directional":false}]},{"ID":4591,"SourceStructureID":130371,"TargetStructureID":13525,"Label":"130371-13525 via Gap Junction from 130372 -> 130370","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130372,"TargetID":130370,"Directional":false}]},{"ID":4592,"SourceStructureID":13525,"TargetStructureID":130383,"Label":"13525-130383 via Gap Junction from 130382 -> 130384","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":130382,"TargetID":130384,"Directional":false}]},{"ID":4593,"SourceStructureID":13855,"TargetStructureID":17183,"Label":"13855-17183 via Touch from 70918 -> 70919","Type":"Touch","Directional":false,"Links":[{"SourceID":70918,"TargetID":70919,"Directional":false}]},{"ID":4594,"SourceStructureID":14615,"TargetStructureID":14615,"Label":"14615-14615 via Adherens from 92256 -> 92257","Type":"Adherens","Directional":false,"Links":[{"SourceID":92256,"TargetID":92257,"Directional":false}]},{"ID":4595,"SourceStructureID":14615,"TargetStructureID":76864,"Label":"14615-76864 via Adherens from 76866 -> 76865","Type":"Adherens","Directional":false,"Links":[{"SourceID":76866,"TargetID":76865,"Directional":false}]},{"ID":4596,"SourceStructureID":76912,"TargetStructureID":14615,"Label":"76912-14615 via Adherens from 76915 -> 76916","Type":"Adherens","Directional":false,"Links":[{"SourceID":76915,"TargetID":76916,"Directional":false}]},{"ID":4597,"SourceStructureID":33117,"TargetStructureID":15100,"Label":"33117-15100 via Adherens from 64581 -> 64580","Type":"Adherens","Directional":false,"Links":[{"SourceID":64581,"TargetID":64580,"Directional":false}]},{"ID":4598,"SourceStructureID":72252,"TargetStructureID":15796,"Label":"72252-15796 via Touch from 147791 -> 147792","Type":"Touch","Directional":false,"Links":[{"SourceID":147791,"TargetID":147792,"Directional":false}]},{"ID":4599,"SourceStructureID":15796,"TargetStructureID":83935,"Label":"15796-83935 via Gap Junction from 83940 -> 83939","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83940,"TargetID":83939,"Directional":false}]},{"ID":4600,"SourceStructureID":40965,"TargetStructureID":15942,"Label":"40965-15942 via Unknown from 91186 -> 91187","Type":"Unknown","Directional":false,"Links":[{"SourceID":91186,"TargetID":91187,"Directional":false}]},{"ID":4601,"SourceStructureID":104735,"TargetStructureID":15942,"Label":"104735-15942 via Unknown from 104759 -> 104760","Type":"Unknown","Directional":false,"Links":[{"SourceID":104759,"TargetID":104760,"Directional":false}]},{"ID":4602,"SourceStructureID":57161,"TargetStructureID":15976,"Label":"57161-15976 via Gap Junction from 57162 -> 57160","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57162,"TargetID":57160,"Directional":false}]},{"ID":4603,"SourceStructureID":57169,"TargetStructureID":15976,"Label":"57169-15976 via Gap Junction from 57170 -> 57168, 57171 -> 57172, 117085 -> 117084","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57170,"TargetID":57168,"Directional":false},{"SourceID":57171,"TargetID":57172,"Directional":false},{"SourceID":117085,"TargetID":117084,"Directional":false}]},{"ID":4604,"SourceStructureID":15976,"TargetStructureID":92954,"Label":"15976-92954 via Gap Junction from 92963 -> 92962","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92963,"TargetID":92962,"Directional":false}]},{"ID":4605,"SourceStructureID":15976,"TargetStructureID":93168,"Label":"15976-93168 via Adherens from 93167 -> 93170","Type":"Adherens","Directional":false,"Links":[{"SourceID":93167,"TargetID":93170,"Directional":false}]},{"ID":4606,"SourceStructureID":15976,"TargetStructureID":93175,"Label":"15976-93175 via Adherens from 93177 -> 93178","Type":"Adherens","Directional":false,"Links":[{"SourceID":93177,"TargetID":93178,"Directional":false}]},{"ID":4607,"SourceStructureID":15976,"TargetStructureID":93175,"Label":"15976-93175 via Gap Junction from 93174 -> 93176, 93204 -> 93203","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93174,"TargetID":93176,"Directional":false},{"SourceID":93204,"TargetID":93203,"Directional":false}]},{"ID":4608,"SourceStructureID":15976,"TargetStructureID":93281,"Label":"15976-93281 via Adherens from 93285 -> 93284","Type":"Adherens","Directional":false,"Links":[{"SourceID":93285,"TargetID":93284,"Directional":false}]},{"ID":4609,"SourceStructureID":93281,"TargetStructureID":15976,"Label":"93281-15976 via Gap Junction from 93283 -> 57436","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93283,"TargetID":57436,"Directional":false}]},{"ID":4610,"SourceStructureID":93287,"TargetStructureID":15976,"Label":"93287-15976 via Gap Junction from 93288 -> 93286","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93288,"TargetID":93286,"Directional":false}]},{"ID":4611,"SourceStructureID":15976,"TargetStructureID":93290,"Label":"15976-93290 via Gap Junction from 57163 -> 93292","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57163,"TargetID":93292,"Directional":false}]},{"ID":4612,"SourceStructureID":93297,"TargetStructureID":15976,"Label":"93297-15976 via Gap Junction from 93299 -> 57410","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93299,"TargetID":57410,"Directional":false}]},{"ID":4613,"SourceStructureID":93352,"TargetStructureID":15976,"Label":"93352-15976 via Gap Junction from 93353 -> 93351","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93353,"TargetID":93351,"Directional":false}]},{"ID":4614,"SourceStructureID":93579,"TargetStructureID":15976,"Label":"93579-15976 via Unknown from 93580 -> 93578","Type":"Unknown","Directional":false,"Links":[{"SourceID":93580,"TargetID":93578,"Directional":false}]},{"ID":4615,"SourceStructureID":15977,"TargetStructureID":15977,"Label":"15977-15977 via Gap Junction from 116816 -> 116817, 116939 -> 116940","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":116816,"TargetID":116817,"Directional":false},{"SourceID":116939,"TargetID":116940,"Directional":false}]},{"ID":4616,"SourceStructureID":15977,"TargetStructureID":70761,"Label":"15977-70761 via Adherens from 70764 -> 70763","Type":"Adherens","Directional":false,"Links":[{"SourceID":70764,"TargetID":70763,"Directional":false}]},{"ID":4617,"SourceStructureID":16026,"TargetStructureID":16026,"Label":"16026-16026 via Adherens from 91101 -> 91100, 91107 -> 91106, 91148 -> 91147","Type":"Adherens","Directional":false,"Links":[{"SourceID":91101,"TargetID":91100,"Directional":false},{"SourceID":91107,"TargetID":91106,"Directional":false},{"SourceID":91148,"TargetID":91147,"Directional":false}]},{"ID":4618,"SourceStructureID":16026,"TargetStructureID":16026,"Label":"16026-16026 via Gap Junction from 91162 -> 91161","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91162,"TargetID":91161,"Directional":false}]},{"ID":4619,"SourceStructureID":38373,"TargetStructureID":16026,"Label":"38373-16026 via Unknown from 134486 -> 134485","Type":"Unknown","Directional":false,"Links":[{"SourceID":134486,"TargetID":134485,"Directional":false}]},{"ID":4620,"SourceStructureID":16026,"TargetStructureID":54078,"Label":"16026-54078 via Adherens from 67860 -> 67859, 134514 -> 134513, 134694 -> 134696","Type":"Adherens","Directional":false,"Links":[{"SourceID":67860,"TargetID":67859,"Directional":false},{"SourceID":134514,"TargetID":134513,"Directional":false},{"SourceID":134694,"TargetID":134696,"Directional":false}]},{"ID":4621,"SourceStructureID":54078,"TargetStructureID":16026,"Label":"54078-16026 via Unknown from 92919 -> 92918, 124776 -> 124777","Type":"Unknown","Directional":false,"Links":[{"SourceID":92919,"TargetID":92918,"Directional":false},{"SourceID":124776,"TargetID":124777,"Directional":false}]},{"ID":4622,"SourceStructureID":56841,"TargetStructureID":16026,"Label":"56841-16026 via Adherens from 134541 -> 134539","Type":"Adherens","Directional":false,"Links":[{"SourceID":134541,"TargetID":134539,"Directional":false}]},{"ID":4623,"SourceStructureID":16026,"TargetStructureID":61836,"Label":"16026-61836 via Adherens from 134783 -> 134784","Type":"Adherens","Directional":false,"Links":[{"SourceID":134783,"TargetID":134784,"Directional":false}]},{"ID":4624,"SourceStructureID":16026,"TargetStructureID":65864,"Label":"16026-65864 via Unknown from 134556 -> 134557","Type":"Unknown","Directional":false,"Links":[{"SourceID":134556,"TargetID":134557,"Directional":false}]},{"ID":4625,"SourceStructureID":66111,"TargetStructureID":16026,"Label":"66111-16026 via Adherens from 134754 -> 134755","Type":"Adherens","Directional":false,"Links":[{"SourceID":134754,"TargetID":134755,"Directional":false}]},{"ID":4626,"SourceStructureID":66111,"TargetStructureID":16026,"Label":"66111-16026 via Unknown from 92571 -> 92570","Type":"Unknown","Directional":false,"Links":[{"SourceID":92571,"TargetID":92570,"Directional":false}]},{"ID":4627,"SourceStructureID":16026,"TargetStructureID":66477,"Label":"16026-66477 via Unknown from 134710 -> 134711","Type":"Unknown","Directional":false,"Links":[{"SourceID":134710,"TargetID":134711,"Directional":false}]},{"ID":4628,"SourceStructureID":16026,"TargetStructureID":66828,"Label":"16026-66828 via Adherens from 66835 -> 66834, 134793 -> 134794","Type":"Adherens","Directional":false,"Links":[{"SourceID":66835,"TargetID":66834,"Directional":false},{"SourceID":134793,"TargetID":134794,"Directional":false}]},{"ID":4629,"SourceStructureID":66962,"TargetStructureID":16026,"Label":"66962-16026 via Adherens from 134605 -> 134604","Type":"Adherens","Directional":false,"Links":[{"SourceID":134605,"TargetID":134604,"Directional":false}]},{"ID":4630,"SourceStructureID":67354,"TargetStructureID":16026,"Label":"67354-16026 via Adherens from 67358 -> 67359","Type":"Adherens","Directional":false,"Links":[{"SourceID":67358,"TargetID":67359,"Directional":false}]},{"ID":4631,"SourceStructureID":67361,"TargetStructureID":16026,"Label":"67361-16026 via Adherens from 91130 -> 91129","Type":"Adherens","Directional":false,"Links":[{"SourceID":91130,"TargetID":91129,"Directional":false}]},{"ID":4632,"SourceStructureID":67595,"TargetStructureID":16026,"Label":"67595-16026 via Adherens from 67637 -> 67638, 67639 -> 67640, 67650 -> 67649, 134392 -> 134393","Type":"Adherens","Directional":false,"Links":[{"SourceID":67637,"TargetID":67638,"Directional":false},{"SourceID":67639,"TargetID":67640,"Directional":false},{"SourceID":67650,"TargetID":67649,"Directional":false},{"SourceID":134392,"TargetID":134393,"Directional":false}]},{"ID":4633,"SourceStructureID":67818,"TargetStructureID":16026,"Label":"67818-16026 via Unknown from 134779 -> 134778","Type":"Unknown","Directional":false,"Links":[{"SourceID":134779,"TargetID":134778,"Directional":false}]},{"ID":4634,"SourceStructureID":16026,"TargetStructureID":67933,"Label":"16026-67933 via Unknown from 134787 -> 134788","Type":"Unknown","Directional":false,"Links":[{"SourceID":134787,"TargetID":134788,"Directional":false}]},{"ID":4635,"SourceStructureID":78876,"TargetStructureID":16026,"Label":"78876-16026 via Unknown from 134802 -> 134801","Type":"Unknown","Directional":false,"Links":[{"SourceID":134802,"TargetID":134801,"Directional":false}]},{"ID":4636,"SourceStructureID":80721,"TargetStructureID":16026,"Label":"80721-16026 via Unknown from 125040 -> 125039","Type":"Unknown","Directional":false,"Links":[{"SourceID":125040,"TargetID":125039,"Directional":false}]},{"ID":4637,"SourceStructureID":16026,"TargetStructureID":81396,"Label":"16026-81396 via Unknown from 134756 -> 134757","Type":"Unknown","Directional":false,"Links":[{"SourceID":134756,"TargetID":134757,"Directional":false}]},{"ID":4638,"SourceStructureID":16026,"TargetStructureID":82305,"Label":"16026-82305 via Adherens from 82335 -> 82334","Type":"Adherens","Directional":false,"Links":[{"SourceID":82335,"TargetID":82334,"Directional":false}]},{"ID":4639,"SourceStructureID":16026,"TargetStructureID":83616,"Label":"16026-83616 via Unknown from 134619 -> 134620","Type":"Unknown","Directional":false,"Links":[{"SourceID":134619,"TargetID":134620,"Directional":false}]},{"ID":4640,"SourceStructureID":84260,"TargetStructureID":16026,"Label":"84260-16026 via Adherens from 91122 -> 91121","Type":"Adherens","Directional":false,"Links":[{"SourceID":91122,"TargetID":91121,"Directional":false}]},{"ID":4641,"SourceStructureID":16026,"TargetStructureID":84656,"Label":"16026-84656 via Adherens from 134503 -> 134502","Type":"Adherens","Directional":false,"Links":[{"SourceID":134503,"TargetID":134502,"Directional":false}]},{"ID":4642,"SourceStructureID":91036,"TargetStructureID":16026,"Label":"91036-16026 via Adherens from 91039 -> 91035","Type":"Adherens","Directional":false,"Links":[{"SourceID":91039,"TargetID":91035,"Directional":false}]},{"ID":4643,"SourceStructureID":91042,"TargetStructureID":16026,"Label":"91042-16026 via Adherens from 91045 -> 91041","Type":"Adherens","Directional":false,"Links":[{"SourceID":91045,"TargetID":91041,"Directional":false}]},{"ID":4644,"SourceStructureID":91043,"TargetStructureID":16026,"Label":"91043-16026 via Adherens from 91044 -> 91041","Type":"Adherens","Directional":false,"Links":[{"SourceID":91044,"TargetID":91041,"Directional":false}]},{"ID":4645,"SourceStructureID":91060,"TargetStructureID":16026,"Label":"91060-16026 via Adherens from 91061 -> 91059","Type":"Adherens","Directional":false,"Links":[{"SourceID":91061,"TargetID":91059,"Directional":false}]},{"ID":4646,"SourceStructureID":91073,"TargetStructureID":16026,"Label":"91073-16026 via Adherens from 92815 -> 91075","Type":"Adherens","Directional":false,"Links":[{"SourceID":92815,"TargetID":91075,"Directional":false}]},{"ID":4647,"SourceStructureID":16026,"TargetStructureID":91098,"Label":"16026-91098 via Adherens from 91097 -> 91099","Type":"Adherens","Directional":false,"Links":[{"SourceID":91097,"TargetID":91099,"Directional":false}]},{"ID":4648,"SourceStructureID":91103,"TargetStructureID":16026,"Label":"91103-16026 via Adherens from 91104 -> 91102","Type":"Adherens","Directional":false,"Links":[{"SourceID":91104,"TargetID":91102,"Directional":false}]},{"ID":4649,"SourceStructureID":91207,"TargetStructureID":16026,"Label":"91207-16026 via Gap Junction from 91208 -> 91205","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91208,"TargetID":91205,"Directional":false}]},{"ID":4650,"SourceStructureID":91213,"TargetStructureID":16026,"Label":"91213-16026 via Unknown from 134364 -> 134363","Type":"Unknown","Directional":false,"Links":[{"SourceID":134364,"TargetID":134363,"Directional":false}]},{"ID":4651,"SourceStructureID":16026,"TargetStructureID":92086,"Label":"16026-92086 via Unknown from 134450 -> 134449","Type":"Unknown","Directional":false,"Links":[{"SourceID":134450,"TargetID":134449,"Directional":false}]},{"ID":4652,"SourceStructureID":92092,"TargetStructureID":16026,"Label":"92092-16026 via Adherens from 134488 -> 134487","Type":"Adherens","Directional":false,"Links":[{"SourceID":134488,"TargetID":134487,"Directional":false}]},{"ID":4653,"SourceStructureID":92092,"TargetStructureID":16026,"Label":"92092-16026 via Postsynapse from 92192 -> 92191","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":92192,"TargetID":92191,"Directional":false}]},{"ID":4654,"SourceStructureID":92092,"TargetStructureID":16026,"Label":"92092-16026 via Unknown from 134436 -> 134435","Type":"Unknown","Directional":false,"Links":[{"SourceID":134436,"TargetID":134435,"Directional":false}]},{"ID":4655,"SourceStructureID":16026,"TargetStructureID":92200,"Label":"16026-92200 via Unknown from 92204 -> 92203, 92206 -> 92205","Type":"Unknown","Directional":false,"Links":[{"SourceID":92204,"TargetID":92203,"Directional":false},{"SourceID":92206,"TargetID":92205,"Directional":false}]},{"ID":4656,"SourceStructureID":16026,"TargetStructureID":92222,"Label":"16026-92222 via Unknown from 134543 -> 134544","Type":"Unknown","Directional":false,"Links":[{"SourceID":134543,"TargetID":134544,"Directional":false}]},{"ID":4657,"SourceStructureID":16026,"TargetStructureID":92226,"Label":"16026-92226 via Gap Junction from 92228 -> 92227","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92228,"TargetID":92227,"Directional":false}]},{"ID":4658,"SourceStructureID":16026,"TargetStructureID":92233,"Label":"16026-92233 via Unknown from 92235 -> 92234","Type":"Unknown","Directional":false,"Links":[{"SourceID":92235,"TargetID":92234,"Directional":false}]},{"ID":4659,"SourceStructureID":16026,"TargetStructureID":92239,"Label":"16026-92239 via Unknown from 114662 -> 114663","Type":"Unknown","Directional":false,"Links":[{"SourceID":114662,"TargetID":114663,"Directional":false}]},{"ID":4660,"SourceStructureID":16026,"TargetStructureID":92250,"Label":"16026-92250 via Unknown from 92251 -> 92252","Type":"Unknown","Directional":false,"Links":[{"SourceID":92251,"TargetID":92252,"Directional":false}]},{"ID":4661,"SourceStructureID":16026,"TargetStructureID":92253,"Label":"16026-92253 via Unknown from 92254 -> 92255","Type":"Unknown","Directional":false,"Links":[{"SourceID":92254,"TargetID":92255,"Directional":false}]},{"ID":4662,"SourceStructureID":92353,"TargetStructureID":16026,"Label":"92353-16026 via Unknown from 134383 -> 134382","Type":"Unknown","Directional":false,"Links":[{"SourceID":134383,"TargetID":134382,"Directional":false}]},{"ID":4663,"SourceStructureID":92356,"TargetStructureID":16026,"Label":"92356-16026 via Unknown from 134384 -> 134385","Type":"Unknown","Directional":false,"Links":[{"SourceID":134384,"TargetID":134385,"Directional":false}]},{"ID":4664,"SourceStructureID":92361,"TargetStructureID":16026,"Label":"92361-16026 via Adherens from 134349 -> 134350, 134353 -> 134352","Type":"Adherens","Directional":false,"Links":[{"SourceID":134349,"TargetID":134350,"Directional":false},{"SourceID":134353,"TargetID":134352,"Directional":false}]},{"ID":4665,"SourceStructureID":16026,"TargetStructureID":92361,"Label":"16026-92361 via Unknown from 134373 -> 134372","Type":"Unknown","Directional":false,"Links":[{"SourceID":134373,"TargetID":134372,"Directional":false}]},{"ID":4666,"SourceStructureID":92369,"TargetStructureID":16026,"Label":"92369-16026 via Unknown from 92371 -> 92370","Type":"Unknown","Directional":false,"Links":[{"SourceID":92371,"TargetID":92370,"Directional":false}]},{"ID":4667,"SourceStructureID":16026,"TargetStructureID":92376,"Label":"16026-92376 via Unknown from 92378 -> 92377","Type":"Unknown","Directional":false,"Links":[{"SourceID":92378,"TargetID":92377,"Directional":false}]},{"ID":4668,"SourceStructureID":16026,"TargetStructureID":92406,"Label":"16026-92406 via Unknown from 92407 -> 92408","Type":"Unknown","Directional":false,"Links":[{"SourceID":92407,"TargetID":92408,"Directional":false}]},{"ID":4669,"SourceStructureID":16026,"TargetStructureID":92417,"Label":"16026-92417 via Unknown from 92419 -> 92418","Type":"Unknown","Directional":false,"Links":[{"SourceID":92419,"TargetID":92418,"Directional":false}]},{"ID":4670,"SourceStructureID":16026,"TargetStructureID":92424,"Label":"16026-92424 via Unknown from 92426 -> 92425","Type":"Unknown","Directional":false,"Links":[{"SourceID":92426,"TargetID":92425,"Directional":false}]},{"ID":4671,"SourceStructureID":92427,"TargetStructureID":16026,"Label":"92427-16026 via Unknown from 134600 -> 134601","Type":"Unknown","Directional":false,"Links":[{"SourceID":134600,"TargetID":134601,"Directional":false}]},{"ID":4672,"SourceStructureID":92560,"TargetStructureID":16026,"Label":"92560-16026 via Postsynapse from 92564 -> 92563","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":92564,"TargetID":92563,"Directional":false}]},{"ID":4673,"SourceStructureID":92577,"TargetStructureID":16026,"Label":"92577-16026 via Unknown from 134895 -> 134894","Type":"Unknown","Directional":false,"Links":[{"SourceID":134895,"TargetID":134894,"Directional":false}]},{"ID":4674,"SourceStructureID":92582,"TargetStructureID":16026,"Label":"92582-16026 via Unknown from 92586 -> 92585","Type":"Unknown","Directional":false,"Links":[{"SourceID":92586,"TargetID":92585,"Directional":false}]},{"ID":4675,"SourceStructureID":92587,"TargetStructureID":16026,"Label":"92587-16026 via Unknown from 92589 -> 92588","Type":"Unknown","Directional":false,"Links":[{"SourceID":92589,"TargetID":92588,"Directional":false}]},{"ID":4676,"SourceStructureID":16026,"TargetStructureID":92595,"Label":"16026-92595 via Unknown from 134883 -> 134884","Type":"Unknown","Directional":false,"Links":[{"SourceID":134883,"TargetID":134884,"Directional":false}]},{"ID":4677,"SourceStructureID":92899,"TargetStructureID":16026,"Label":"92899-16026 via Unknown from 134829 -> 134828","Type":"Unknown","Directional":false,"Links":[{"SourceID":134829,"TargetID":134828,"Directional":false}]},{"ID":4678,"SourceStructureID":16026,"TargetStructureID":92908,"Label":"16026-92908 via Unknown from 92911 -> 92910, 134649 -> 124841","Type":"Unknown","Directional":false,"Links":[{"SourceID":92911,"TargetID":92910,"Directional":false},{"SourceID":134649,"TargetID":124841,"Directional":false}]},{"ID":4679,"SourceStructureID":92913,"TargetStructureID":16026,"Label":"92913-16026 via Unknown from 92914 -> 92912","Type":"Unknown","Directional":false,"Links":[{"SourceID":92914,"TargetID":92912,"Directional":false}]},{"ID":4680,"SourceStructureID":16026,"TargetStructureID":92915,"Label":"16026-92915 via Unknown from 92917 -> 92916","Type":"Unknown","Directional":false,"Links":[{"SourceID":92917,"TargetID":92916,"Directional":false}]},{"ID":4681,"SourceStructureID":92920,"TargetStructureID":16026,"Label":"92920-16026 via Unknown from 92922 -> 92921","Type":"Unknown","Directional":false,"Links":[{"SourceID":92922,"TargetID":92921,"Directional":false}]},{"ID":4682,"SourceStructureID":16026,"TargetStructureID":93139,"Label":"16026-93139 via Unknown from 125005 -> 125006","Type":"Unknown","Directional":false,"Links":[{"SourceID":125005,"TargetID":125006,"Directional":false}]},{"ID":4683,"SourceStructureID":16026,"TargetStructureID":104641,"Label":"16026-104641 via Adherens from 104643 -> 104642","Type":"Adherens","Directional":false,"Links":[{"SourceID":104643,"TargetID":104642,"Directional":false}]},{"ID":4684,"SourceStructureID":16026,"TargetStructureID":122829,"Label":"16026-122829 via Adherens from 114655 -> 134420","Type":"Adherens","Directional":false,"Links":[{"SourceID":114655,"TargetID":134420,"Directional":false}]},{"ID":4685,"SourceStructureID":122829,"TargetStructureID":16026,"Label":"122829-16026 via Unknown from 123360 -> 114658","Type":"Unknown","Directional":false,"Links":[{"SourceID":123360,"TargetID":114658,"Directional":false}]},{"ID":4686,"SourceStructureID":16087,"TargetStructureID":67671,"Label":"16087-67671 via Adherens from 78019 -> 78018","Type":"Adherens","Directional":false,"Links":[{"SourceID":78019,"TargetID":78018,"Directional":false}]},{"ID":4687,"SourceStructureID":16087,"TargetStructureID":67671,"Label":"16087-67671 via Gap Junction from 78017 -> 78016","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":78017,"TargetID":78016,"Directional":false}]},{"ID":4688,"SourceStructureID":17527,"TargetStructureID":70095,"Label":"17527-70095 via Gap Junction from 129046 -> 129045","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129046,"TargetID":129045,"Directional":false}]},{"ID":4689,"SourceStructureID":129048,"TargetStructureID":17527,"Label":"129048-17527 via Gap Junction from 129049 -> 129047","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":129049,"TargetID":129047,"Directional":false}]},{"ID":4690,"SourceStructureID":18693,"TargetStructureID":88702,"Label":"18693-88702 via Gap Junction from 64739 -> 88705","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":64739,"TargetID":88705,"Directional":false}]},{"ID":4691,"SourceStructureID":19203,"TargetStructureID":19203,"Label":"19203-19203 via Gap Junction from 121653 -> 121654","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121653,"TargetID":121654,"Directional":false}]},{"ID":4692,"SourceStructureID":19203,"TargetStructureID":28886,"Label":"19203-28886 via Gap Junction from 51416 -> 51415, 51619 -> 51618, 51955 -> 51445, 120875 -> 51428, 121659 -> 121656","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51416,"TargetID":51415,"Directional":false},{"SourceID":51619,"TargetID":51618,"Directional":false},{"SourceID":51955,"TargetID":51445,"Directional":false},{"SourceID":120875,"TargetID":51428,"Directional":false},{"SourceID":121659,"TargetID":121656,"Directional":false}]},{"ID":4693,"SourceStructureID":96102,"TargetStructureID":19203,"Label":"96102-19203 via Adherens from 135824 -> 135823","Type":"Adherens","Directional":false,"Links":[{"SourceID":135824,"TargetID":135823,"Directional":false}]},{"ID":4694,"SourceStructureID":121635,"TargetStructureID":19203,"Label":"121635-19203 via Gap Junction from 121636 -> 121634","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121636,"TargetID":121634,"Directional":false}]},{"ID":4695,"SourceStructureID":19203,"TargetStructureID":121644,"Label":"19203-121644 via Gap Junction from 121643 -> 121645","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121643,"TargetID":121645,"Directional":false}]},{"ID":4696,"SourceStructureID":19203,"TargetStructureID":121647,"Label":"19203-121647 via Gap Junction from 121646 -> 121648","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121646,"TargetID":121648,"Directional":false}]},{"ID":4697,"SourceStructureID":121660,"TargetStructureID":19203,"Label":"121660-19203 via Gap Junction from 121662 -> 51953","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121662,"TargetID":51953,"Directional":false}]},{"ID":4698,"SourceStructureID":20136,"TargetStructureID":20136,"Label":"20136-20136 via Adherens from 135800 -> 135799","Type":"Adherens","Directional":false,"Links":[{"SourceID":135800,"TargetID":135799,"Directional":false}]},{"ID":4699,"SourceStructureID":20136,"TargetStructureID":20136,"Label":"20136-20136 via Gap Junction from 92412 -> 92413, 130800 -> 130801","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":92412,"TargetID":92413,"Directional":false},{"SourceID":130800,"TargetID":130801,"Directional":false}]},{"ID":4700,"SourceStructureID":20136,"TargetStructureID":32911,"Label":"20136-32911 via Adherens from 135776 -> 135777","Type":"Adherens","Directional":false,"Links":[{"SourceID":135776,"TargetID":135777,"Directional":false}]},{"ID":4701,"SourceStructureID":32911,"TargetStructureID":20136,"Label":"32911-20136 via Gap Junction from 109157 -> 109158","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109157,"TargetID":109158,"Directional":false}]},{"ID":4702,"SourceStructureID":20136,"TargetStructureID":68277,"Label":"20136-68277 via Adherens from 109898 -> 109899","Type":"Adherens","Directional":false,"Links":[{"SourceID":109898,"TargetID":109899,"Directional":false}]},{"ID":4703,"SourceStructureID":20136,"TargetStructureID":83954,"Label":"20136-83954 via Adherens from 109114 -> 109115","Type":"Adherens","Directional":false,"Links":[{"SourceID":109114,"TargetID":109115,"Directional":false}]},{"ID":4704,"SourceStructureID":83981,"TargetStructureID":20136,"Label":"83981-20136 via Unknown from 109024 -> 109025","Type":"Unknown","Directional":false,"Links":[{"SourceID":109024,"TargetID":109025,"Directional":false}]},{"ID":4705,"SourceStructureID":96102,"TargetStructureID":20136,"Label":"96102-20136 via Gap Junction from 96185 -> 110430","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":96185,"TargetID":110430,"Directional":false}]},{"ID":4706,"SourceStructureID":98762,"TargetStructureID":20136,"Label":"98762-20136 via Adherens from 109904 -> 109903","Type":"Adherens","Directional":false,"Links":[{"SourceID":109904,"TargetID":109903,"Directional":false}]},{"ID":4707,"SourceStructureID":20136,"TargetStructureID":108408,"Label":"20136-108408 via BC Conventional Synapse from 108409 -> 108410","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":108409,"TargetID":108410,"Directional":false}]},{"ID":4708,"SourceStructureID":20136,"TargetStructureID":108429,"Label":"20136-108429 via Adherens from 108432 -> 108431","Type":"Adherens","Directional":false,"Links":[{"SourceID":108432,"TargetID":108431,"Directional":false}]},{"ID":4709,"SourceStructureID":108434,"TargetStructureID":20136,"Label":"108434-20136 via Unknown from 108435 -> 108438","Type":"Unknown","Directional":false,"Links":[{"SourceID":108435,"TargetID":108438,"Directional":false}]},{"ID":4710,"SourceStructureID":108506,"TargetStructureID":20136,"Label":"108506-20136 via Unknown from 108507 -> 108508","Type":"Unknown","Directional":false,"Links":[{"SourceID":108507,"TargetID":108508,"Directional":false}]},{"ID":4711,"SourceStructureID":20136,"TargetStructureID":108512,"Label":"20136-108512 via Adherens from 108516 -> 108515","Type":"Adherens","Directional":false,"Links":[{"SourceID":108516,"TargetID":108515,"Directional":false}]},{"ID":4712,"SourceStructureID":20136,"TargetStructureID":108766,"Label":"20136-108766 via Unknown from 108778 -> 108779","Type":"Unknown","Directional":false,"Links":[{"SourceID":108778,"TargetID":108779,"Directional":false}]},{"ID":4713,"SourceStructureID":20136,"TargetStructureID":108770,"Label":"20136-108770 via Adherens from 108773 -> 108774","Type":"Adherens","Directional":false,"Links":[{"SourceID":108773,"TargetID":108774,"Directional":false}]},{"ID":4714,"SourceStructureID":20136,"TargetStructureID":108800,"Label":"20136-108800 via Adherens from 108813 -> 108812","Type":"Adherens","Directional":false,"Links":[{"SourceID":108813,"TargetID":108812,"Directional":false}]},{"ID":4715,"SourceStructureID":20136,"TargetStructureID":108804,"Label":"20136-108804 via Adherens from 108811 -> 108810","Type":"Adherens","Directional":false,"Links":[{"SourceID":108811,"TargetID":108810,"Directional":false}]},{"ID":4716,"SourceStructureID":20136,"TargetStructureID":108849,"Label":"20136-108849 via Unknown from 108850 -> 108851","Type":"Unknown","Directional":false,"Links":[{"SourceID":108850,"TargetID":108851,"Directional":false}]},{"ID":4717,"SourceStructureID":20136,"TargetStructureID":108853,"Label":"20136-108853 via Unknown from 108854 -> 108855","Type":"Unknown","Directional":false,"Links":[{"SourceID":108854,"TargetID":108855,"Directional":false}]},{"ID":4718,"SourceStructureID":20136,"TargetStructureID":108899,"Label":"20136-108899 via Unknown from 108902 -> 108901","Type":"Unknown","Directional":false,"Links":[{"SourceID":108902,"TargetID":108901,"Directional":false}]},{"ID":4719,"SourceStructureID":20136,"TargetStructureID":108903,"Label":"20136-108903 via Unknown from 108909 -> 108908","Type":"Unknown","Directional":false,"Links":[{"SourceID":108909,"TargetID":108908,"Directional":false}]},{"ID":4720,"SourceStructureID":108944,"TargetStructureID":20136,"Label":"108944-20136 via Adherens from 108947 -> 108948","Type":"Adherens","Directional":false,"Links":[{"SourceID":108947,"TargetID":108948,"Directional":false}]},{"ID":4721,"SourceStructureID":20136,"TargetStructureID":108963,"Label":"20136-108963 via Unknown from 108965 -> 108964","Type":"Unknown","Directional":false,"Links":[{"SourceID":108965,"TargetID":108964,"Directional":false}]},{"ID":4722,"SourceStructureID":20136,"TargetStructureID":108975,"Label":"20136-108975 via Adherens from 108977 -> 108976","Type":"Adherens","Directional":false,"Links":[{"SourceID":108977,"TargetID":108976,"Directional":false}]},{"ID":4723,"SourceStructureID":20136,"TargetStructureID":109097,"Label":"20136-109097 via Adherens from 109100 -> 109103","Type":"Adherens","Directional":false,"Links":[{"SourceID":109100,"TargetID":109103,"Directional":false}]},{"ID":4724,"SourceStructureID":20136,"TargetStructureID":109116,"Label":"20136-109116 via Adherens from 109170 -> 109171","Type":"Adherens","Directional":false,"Links":[{"SourceID":109170,"TargetID":109171,"Directional":false}]},{"ID":4725,"SourceStructureID":20136,"TargetStructureID":109124,"Label":"20136-109124 via Adherens from 109174 -> 109175","Type":"Adherens","Directional":false,"Links":[{"SourceID":109174,"TargetID":109175,"Directional":false}]},{"ID":4726,"SourceStructureID":20136,"TargetStructureID":109190,"Label":"20136-109190 via Unknown from 109192 -> 109191","Type":"Unknown","Directional":false,"Links":[{"SourceID":109192,"TargetID":109191,"Directional":false}]},{"ID":4727,"SourceStructureID":20136,"TargetStructureID":109220,"Label":"20136-109220 via Unknown from 109222 -> 109221","Type":"Unknown","Directional":false,"Links":[{"SourceID":109222,"TargetID":109221,"Directional":false}]},{"ID":4728,"SourceStructureID":20136,"TargetStructureID":109223,"Label":"20136-109223 via Unknown from 97826 -> 109224","Type":"Unknown","Directional":false,"Links":[{"SourceID":97826,"TargetID":109224,"Directional":false}]},{"ID":4729,"SourceStructureID":109225,"TargetStructureID":20136,"Label":"109225-20136 via Unknown from 109250 -> 109249","Type":"Unknown","Directional":false,"Links":[{"SourceID":109250,"TargetID":109249,"Directional":false}]},{"ID":4730,"SourceStructureID":109257,"TargetStructureID":20136,"Label":"109257-20136 via Adherens from 109265 -> 109266","Type":"Adherens","Directional":false,"Links":[{"SourceID":109265,"TargetID":109266,"Directional":false}]},{"ID":4731,"SourceStructureID":20136,"TargetStructureID":109262,"Label":"20136-109262 via Gap Junction from 109263 -> 109264","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":109263,"TargetID":109264,"Directional":false}]},{"ID":4732,"SourceStructureID":20136,"TargetStructureID":109305,"Label":"20136-109305 via Adherens from 109355 -> 109356","Type":"Adherens","Directional":false,"Links":[{"SourceID":109355,"TargetID":109356,"Directional":false}]},{"ID":4733,"SourceStructureID":109350,"TargetStructureID":20136,"Label":"109350-20136 via Unknown from 109351 -> 109349","Type":"Unknown","Directional":false,"Links":[{"SourceID":109351,"TargetID":109349,"Directional":false}]},{"ID":4734,"SourceStructureID":20136,"TargetStructureID":109500,"Label":"20136-109500 via Unknown from 109501 -> 109502","Type":"Unknown","Directional":false,"Links":[{"SourceID":109501,"TargetID":109502,"Directional":false}]},{"ID":4735,"SourceStructureID":20136,"TargetStructureID":109540,"Label":"20136-109540 via Unknown from 109682 -> 109684, 133989 -> 109684","Type":"Unknown","Directional":false,"Links":[{"SourceID":109682,"TargetID":109684,"Directional":false},{"SourceID":133989,"TargetID":109684,"Directional":false}]},{"ID":4736,"SourceStructureID":20136,"TargetStructureID":109552,"Label":"20136-109552 via Unknown from 109556 -> 109557","Type":"Unknown","Directional":false,"Links":[{"SourceID":109556,"TargetID":109557,"Directional":false}]},{"ID":4737,"SourceStructureID":109582,"TargetStructureID":20136,"Label":"109582-20136 via Unknown from 109583 -> 109584","Type":"Unknown","Directional":false,"Links":[{"SourceID":109583,"TargetID":109584,"Directional":false}]},{"ID":4738,"SourceStructureID":109588,"TargetStructureID":20136,"Label":"109588-20136 via Unknown from 109592 -> 109593","Type":"Unknown","Directional":false,"Links":[{"SourceID":109592,"TargetID":109593,"Directional":false}]},{"ID":4739,"SourceStructureID":20136,"TargetStructureID":109674,"Label":"20136-109674 via Unknown from 109682 -> 109683","Type":"Unknown","Directional":false,"Links":[{"SourceID":109682,"TargetID":109683,"Directional":false}]},{"ID":4740,"SourceStructureID":20136,"TargetStructureID":109722,"Label":"20136-109722 via Unknown from 109725 -> 109726, 109752 -> 109751","Type":"Unknown","Directional":false,"Links":[{"SourceID":109725,"TargetID":109726,"Directional":false},{"SourceID":109752,"TargetID":109751,"Directional":false}]},{"ID":4741,"SourceStructureID":109753,"TargetStructureID":20136,"Label":"109753-20136 via Unknown from 109754 -> 109755","Type":"Unknown","Directional":false,"Links":[{"SourceID":109754,"TargetID":109755,"Directional":false}]},{"ID":4742,"SourceStructureID":109756,"TargetStructureID":20136,"Label":"109756-20136 via Unknown from 109784 -> 109785","Type":"Unknown","Directional":false,"Links":[{"SourceID":109784,"TargetID":109785,"Directional":false}]},{"ID":4743,"SourceStructureID":20136,"TargetStructureID":109774,"Label":"20136-109774 via Unknown from 109359 -> 109775","Type":"Unknown","Directional":false,"Links":[{"SourceID":109359,"TargetID":109775,"Directional":false}]},{"ID":4744,"SourceStructureID":20136,"TargetStructureID":109821,"Label":"20136-109821 via Adherens from 109823 -> 109822","Type":"Adherens","Directional":false,"Links":[{"SourceID":109823,"TargetID":109822,"Directional":false}]},{"ID":4745,"SourceStructureID":109853,"TargetStructureID":20136,"Label":"109853-20136 via Adherens from 109854 -> 109855, 109867 -> 109868","Type":"Adherens","Directional":false,"Links":[{"SourceID":109854,"TargetID":109855,"Directional":false},{"SourceID":109867,"TargetID":109868,"Directional":false}]},{"ID":4746,"SourceStructureID":20136,"TargetStructureID":109873,"Label":"20136-109873 via Unknown from 109874 -> 109875","Type":"Unknown","Directional":false,"Links":[{"SourceID":109874,"TargetID":109875,"Directional":false}]},{"ID":4747,"SourceStructureID":109884,"TargetStructureID":20136,"Label":"109884-20136 via Unknown from 109886 -> 109885","Type":"Unknown","Directional":false,"Links":[{"SourceID":109886,"TargetID":109885,"Directional":false}]},{"ID":4748,"SourceStructureID":20136,"TargetStructureID":109908,"Label":"20136-109908 via Unknown from 109909 -> 109910","Type":"Unknown","Directional":false,"Links":[{"SourceID":109909,"TargetID":109910,"Directional":false}]},{"ID":4749,"SourceStructureID":20136,"TargetStructureID":110227,"Label":"20136-110227 via Unknown from 110229 -> 110230","Type":"Unknown","Directional":false,"Links":[{"SourceID":110229,"TargetID":110230,"Directional":false}]},{"ID":4750,"SourceStructureID":110233,"TargetStructureID":20136,"Label":"110233-20136 via Unknown from 110268 -> 110269","Type":"Unknown","Directional":false,"Links":[{"SourceID":110268,"TargetID":110269,"Directional":false}]},{"ID":4751,"SourceStructureID":110265,"TargetStructureID":20136,"Label":"110265-20136 via Unknown from 110266 -> 110267","Type":"Unknown","Directional":false,"Links":[{"SourceID":110266,"TargetID":110267,"Directional":false}]},{"ID":4752,"SourceStructureID":110271,"TargetStructureID":20136,"Label":"110271-20136 via Adherens from 110279 -> 110280","Type":"Adherens","Directional":false,"Links":[{"SourceID":110279,"TargetID":110280,"Directional":false}]},{"ID":4753,"SourceStructureID":110292,"TargetStructureID":20136,"Label":"110292-20136 via Adherens from 110344 -> 110264","Type":"Adherens","Directional":false,"Links":[{"SourceID":110344,"TargetID":110264,"Directional":false}]},{"ID":4754,"SourceStructureID":110309,"TargetStructureID":20136,"Label":"110309-20136 via Unknown from 110310 -> 110311","Type":"Unknown","Directional":false,"Links":[{"SourceID":110310,"TargetID":110311,"Directional":false}]},{"ID":4755,"SourceStructureID":20136,"TargetStructureID":110327,"Label":"20136-110327 via Adherens from 110328 -> 110329","Type":"Adherens","Directional":false,"Links":[{"SourceID":110328,"TargetID":110329,"Directional":false}]},{"ID":4756,"SourceStructureID":110335,"TargetStructureID":20136,"Label":"110335-20136 via Unknown from 110336 -> 110338","Type":"Unknown","Directional":false,"Links":[{"SourceID":110336,"TargetID":110338,"Directional":false}]},{"ID":4757,"SourceStructureID":110340,"TargetStructureID":20136,"Label":"110340-20136 via Adherens from 110341 -> 110342","Type":"Adherens","Directional":false,"Links":[{"SourceID":110341,"TargetID":110342,"Directional":false}]},{"ID":4758,"SourceStructureID":110356,"TargetStructureID":20136,"Label":"110356-20136 via Adherens from 110397 -> 110398","Type":"Adherens","Directional":false,"Links":[{"SourceID":110397,"TargetID":110398,"Directional":false}]},{"ID":4759,"SourceStructureID":110367,"TargetStructureID":20136,"Label":"110367-20136 via Gap Junction from 110369 -> 93852","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":110369,"TargetID":93852,"Directional":false}]},{"ID":4760,"SourceStructureID":20136,"TargetStructureID":110394,"Label":"20136-110394 via Unknown from 110409 -> 133990","Type":"Unknown","Directional":false,"Links":[{"SourceID":110409,"TargetID":133990,"Directional":false}]},{"ID":4761,"SourceStructureID":20136,"TargetStructureID":110399,"Label":"20136-110399 via Adherens from 110401 -> 110402","Type":"Adherens","Directional":false,"Links":[{"SourceID":110401,"TargetID":110402,"Directional":false}]},{"ID":4762,"SourceStructureID":20136,"TargetStructureID":110412,"Label":"20136-110412 via Unknown from 110413 -> 110414","Type":"Unknown","Directional":false,"Links":[{"SourceID":110413,"TargetID":110414,"Directional":false}]},{"ID":4763,"SourceStructureID":110416,"TargetStructureID":20136,"Label":"110416-20136 via Adherens from 110427 -> 110428","Type":"Adherens","Directional":false,"Links":[{"SourceID":110427,"TargetID":110428,"Directional":false}]},{"ID":4764,"SourceStructureID":21299,"TargetStructureID":21299,"Label":"21299-21299 via Unknown from 91629 -> 91628","Type":"Unknown","Directional":false,"Links":[{"SourceID":91629,"TargetID":91628,"Directional":false}]},{"ID":4765,"SourceStructureID":21299,"TargetStructureID":56583,"Label":"21299-56583 via Unknown from 92833 -> 91739","Type":"Unknown","Directional":false,"Links":[{"SourceID":92833,"TargetID":91739,"Directional":false}]},{"ID":4766,"SourceStructureID":21299,"TargetStructureID":59422,"Label":"21299-59422 via Touch from 59460 -> 59461","Type":"Touch","Directional":false,"Links":[{"SourceID":59460,"TargetID":59461,"Directional":false}]},{"ID":4767,"SourceStructureID":21299,"TargetStructureID":88790,"Label":"21299-88790 via Gap Junction from 48990 -> 91631","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48990,"TargetID":91631,"Directional":false}]},{"ID":4768,"SourceStructureID":21299,"TargetStructureID":91585,"Label":"21299-91585 via Gap Junction from 48875 -> 91586","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48875,"TargetID":91586,"Directional":false}]},{"ID":4769,"SourceStructureID":91588,"TargetStructureID":21299,"Label":"91588-21299 via Unknown from 91589 -> 91587","Type":"Unknown","Directional":false,"Links":[{"SourceID":91589,"TargetID":91587,"Directional":false}]},{"ID":4770,"SourceStructureID":21299,"TargetStructureID":91593,"Label":"21299-91593 via Gap Junction from 49005 -> 92590","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":49005,"TargetID":92590,"Directional":false}]},{"ID":4771,"SourceStructureID":21299,"TargetStructureID":91593,"Label":"21299-91593 via Unknown from 91600 -> 91599","Type":"Unknown","Directional":false,"Links":[{"SourceID":91600,"TargetID":91599,"Directional":false}]},{"ID":4772,"SourceStructureID":91651,"TargetStructureID":21299,"Label":"91651-21299 via Gap Junction from 91652 -> 49019","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91652,"TargetID":49019,"Directional":false}]},{"ID":4773,"SourceStructureID":21299,"TargetStructureID":91653,"Label":"21299-91653 via Unknown from 91656 -> 91655","Type":"Unknown","Directional":false,"Links":[{"SourceID":91656,"TargetID":91655,"Directional":false}]},{"ID":4774,"SourceStructureID":91692,"TargetStructureID":21299,"Label":"91692-21299 via Unknown from 91693 -> 91684","Type":"Unknown","Directional":false,"Links":[{"SourceID":91693,"TargetID":91684,"Directional":false}]},{"ID":4775,"SourceStructureID":91694,"TargetStructureID":21299,"Label":"91694-21299 via Unknown from 91695 -> 91685","Type":"Unknown","Directional":false,"Links":[{"SourceID":91695,"TargetID":91685,"Directional":false}]},{"ID":4776,"SourceStructureID":91701,"TargetStructureID":21299,"Label":"91701-21299 via Unknown from 91702 -> 48964","Type":"Unknown","Directional":false,"Links":[{"SourceID":91702,"TargetID":48964,"Directional":false}]},{"ID":4777,"SourceStructureID":21299,"TargetStructureID":91709,"Label":"21299-91709 via Adherens from 91714 -> 91713","Type":"Adherens","Directional":false,"Links":[{"SourceID":91714,"TargetID":91713,"Directional":false}]},{"ID":4778,"SourceStructureID":91709,"TargetStructureID":21299,"Label":"91709-21299 via Gap Junction from 91710 -> 91708","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91710,"TargetID":91708,"Directional":false}]},{"ID":4779,"SourceStructureID":21299,"TargetStructureID":91723,"Label":"21299-91723 via Gap Junction from 48841 -> 91724","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":48841,"TargetID":91724,"Directional":false}]},{"ID":4780,"SourceStructureID":91727,"TargetStructureID":21299,"Label":"91727-21299 via Gap Junction from 91728 -> 48810","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91728,"TargetID":48810,"Directional":false}]},{"ID":4781,"SourceStructureID":91740,"TargetStructureID":21299,"Label":"91740-21299 via Gap Junction from 91741 -> 48799","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91741,"TargetID":48799,"Directional":false}]},{"ID":4782,"SourceStructureID":91743,"TargetStructureID":21299,"Label":"91743-21299 via Gap Junction from 91744 -> 48802","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91744,"TargetID":48802,"Directional":false}]},{"ID":4783,"SourceStructureID":91754,"TargetStructureID":21299,"Label":"91754-21299 via Gap Junction from 91755 -> 48848","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":91755,"TargetID":48848,"Directional":false}]},{"ID":4784,"SourceStructureID":91768,"TargetStructureID":21299,"Label":"91768-21299 via Unknown from 91769 -> 91767","Type":"Unknown","Directional":false,"Links":[{"SourceID":91769,"TargetID":91767,"Directional":false}]},{"ID":4785,"SourceStructureID":98262,"TargetStructureID":21299,"Label":"98262-21299 via Gap Junction from 98264 -> 48502","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":98264,"TargetID":48502,"Directional":false}]},{"ID":4786,"SourceStructureID":119517,"TargetStructureID":21299,"Label":"119517-21299 via Gap Junction from 119530 -> 119529","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":119530,"TargetID":119529,"Directional":false}]},{"ID":4787,"SourceStructureID":131177,"TargetStructureID":21299,"Label":"131177-21299 via Gap Junction from 131178 -> 131176","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":131178,"TargetID":131176,"Directional":false}]},{"ID":4788,"SourceStructureID":131177,"TargetStructureID":21299,"Label":"131177-21299 via Unknown from 133798 -> 133799","Type":"Unknown","Directional":false,"Links":[{"SourceID":133798,"TargetID":133799,"Directional":false}]},{"ID":4789,"SourceStructureID":21779,"TargetStructureID":22210,"Label":"21779-22210 via Adherens from 32133 -> 32040","Type":"Adherens","Directional":false,"Links":[{"SourceID":32133,"TargetID":32040,"Directional":false}]},{"ID":4790,"SourceStructureID":32273,"TargetStructureID":21779,"Label":"32273-21779 via Adherens from 32275 -> 32106","Type":"Adherens","Directional":false,"Links":[{"SourceID":32275,"TargetID":32106,"Directional":false}]},{"ID":4791,"SourceStructureID":68539,"TargetStructureID":22974,"Label":"68539-22974 via Adherens from 70271 -> 68983","Type":"Adherens","Directional":false,"Links":[{"SourceID":70271,"TargetID":68983,"Directional":false}]},{"ID":4792,"SourceStructureID":22974,"TargetStructureID":68563,"Label":"22974-68563 via Adherens from 68562 -> 68564","Type":"Adherens","Directional":false,"Links":[{"SourceID":68562,"TargetID":68564,"Directional":false}]},{"ID":4793,"SourceStructureID":68539,"TargetStructureID":22994,"Label":"68539-22994 via Adherens from 75943 -> 75942","Type":"Adherens","Directional":false,"Links":[{"SourceID":75943,"TargetID":75942,"Directional":false}]},{"ID":4794,"SourceStructureID":22994,"TargetStructureID":75933,"Label":"22994-75933 via Adherens from 75938 -> 75937","Type":"Adherens","Directional":false,"Links":[{"SourceID":75938,"TargetID":75937,"Directional":false}]},{"ID":4795,"SourceStructureID":23870,"TargetStructureID":73460,"Label":"23870-73460 via Unknown from 73462 -> 73461","Type":"Unknown","Directional":false,"Links":[{"SourceID":73462,"TargetID":73461,"Directional":false}]},{"ID":4796,"SourceStructureID":24303,"TargetStructureID":24303,"Label":"24303-24303 via Unknown from 122496 -> 122495","Type":"Unknown","Directional":false,"Links":[{"SourceID":122496,"TargetID":122495,"Directional":false}]},{"ID":4797,"SourceStructureID":24303,"TargetStructureID":28886,"Label":"24303-28886 via Gap Junction from 51373 -> 51372, 122498 -> 122497","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51373,"TargetID":51372,"Directional":false},{"SourceID":122498,"TargetID":122497,"Directional":false}]},{"ID":4798,"SourceStructureID":122484,"TargetStructureID":24303,"Label":"122484-24303 via Gap Junction from 122485 -> 122483","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122485,"TargetID":122483,"Directional":false}]},{"ID":4799,"SourceStructureID":24303,"TargetStructureID":122488,"Label":"24303-122488 via Gap Junction from 122487 -> 122489","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122487,"TargetID":122489,"Directional":false}]},{"ID":4800,"SourceStructureID":24366,"TargetStructureID":24366,"Label":"24366-24366 via Gap Junction from 24380 -> 24379","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":24380,"TargetID":24379,"Directional":false}]},{"ID":4801,"SourceStructureID":105844,"TargetStructureID":24401,"Label":"105844-24401 via Gap Junction from 105845 -> 105846","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":105845,"TargetID":105846,"Directional":false}]},{"ID":4802,"SourceStructureID":121135,"TargetStructureID":24401,"Label":"121135-24401 via Gap Junction from 121136 -> 48093","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121136,"TargetID":48093,"Directional":false}]},{"ID":4803,"SourceStructureID":121141,"TargetStructureID":24401,"Label":"121141-24401 via Gap Junction from 121142 -> 121140","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121142,"TargetID":121140,"Directional":false}]},{"ID":4804,"SourceStructureID":24401,"TargetStructureID":121177,"Label":"24401-121177 via Gap Junction from 121175 -> 121178","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121175,"TargetID":121178,"Directional":false}]},{"ID":4805,"SourceStructureID":25155,"TargetStructureID":25155,"Label":"25155-25155 via Gap Junction from 38210 -> 38211","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":38210,"TargetID":38211,"Directional":false}]},{"ID":4806,"SourceStructureID":25359,"TargetStructureID":25342,"Label":"25359-25342 via Unknown from 88461 -> 88463","Type":"Unknown","Directional":false,"Links":[{"SourceID":88461,"TargetID":88463,"Directional":false}]},{"ID":4807,"SourceStructureID":25367,"TargetStructureID":68023,"Label":"25367-68023 via Adherens from 82355 -> 68660","Type":"Adherens","Directional":false,"Links":[{"SourceID":82355,"TargetID":68660,"Directional":false}]},{"ID":4808,"SourceStructureID":82362,"TargetStructureID":25367,"Label":"82362-25367 via Unknown from 82363 -> 82361","Type":"Unknown","Directional":false,"Links":[{"SourceID":82363,"TargetID":82361,"Directional":false}]},{"ID":4809,"SourceStructureID":25440,"TargetStructureID":54744,"Label":"25440-54744 via Adherens from 91008 -> 91009, 91010 -> 91011","Type":"Adherens","Directional":false,"Links":[{"SourceID":91008,"TargetID":91009,"Directional":false},{"SourceID":91010,"TargetID":91011,"Directional":false}]},{"ID":4810,"SourceStructureID":25869,"TargetStructureID":36419,"Label":"25869-36419 via Adherens from 118361 -> 118360, 118365 -> 118364, 118369 -> 98606, 118370 -> 98607","Type":"Adherens","Directional":false,"Links":[{"SourceID":118361,"TargetID":118360,"Directional":false},{"SourceID":118365,"TargetID":118364,"Directional":false},{"SourceID":118369,"TargetID":98606,"Directional":false},{"SourceID":118370,"TargetID":98607,"Directional":false}]},{"ID":4811,"SourceStructureID":26079,"TargetStructureID":26079,"Label":"26079-26079 via Gap Junction from 120871 -> 47043","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":120871,"TargetID":47043,"Directional":false}]},{"ID":4812,"SourceStructureID":26079,"TargetStructureID":102007,"Label":"26079-102007 via Unknown from 121243 -> 121244","Type":"Unknown","Directional":false,"Links":[{"SourceID":121243,"TargetID":121244,"Directional":false}]},{"ID":4813,"SourceStructureID":102517,"TargetStructureID":26079,"Label":"102517-26079 via Unknown from 102938 -> 102937","Type":"Unknown","Directional":false,"Links":[{"SourceID":102938,"TargetID":102937,"Directional":false}]},{"ID":4814,"SourceStructureID":121258,"TargetStructureID":26079,"Label":"121258-26079 via Gap Junction from 121259 -> 121257","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121259,"TargetID":121257,"Directional":false}]},{"ID":4815,"SourceStructureID":26079,"TargetStructureID":121265,"Label":"26079-121265 via Gap Junction from 121263 -> 121266","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121263,"TargetID":121266,"Directional":false}]},{"ID":4816,"SourceStructureID":39862,"TargetStructureID":28886,"Label":"39862-28886 via Gap Junction from 51357 -> 51356, 51386 -> 52365, 52317 -> 51336, 52368 -> 51400","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":51357,"TargetID":51356,"Directional":false},{"SourceID":51386,"TargetID":52365,"Directional":false},{"SourceID":52317,"TargetID":51336,"Directional":false},{"SourceID":52368,"TargetID":51400,"Directional":false}]},{"ID":4817,"SourceStructureID":56973,"TargetStructureID":28886,"Label":"56973-28886 via Gap Junction from 56974 -> 51418","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56974,"TargetID":51418,"Directional":false}]},{"ID":4818,"SourceStructureID":56975,"TargetStructureID":28886,"Label":"56975-28886 via Gap Junction from 56976 -> 51452","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":56976,"TargetID":51452,"Directional":false}]},{"ID":4819,"SourceStructureID":30130,"TargetStructureID":68548,"Label":"30130-68548 via Adherens from 75365 -> 75364","Type":"Adherens","Directional":false,"Links":[{"SourceID":75365,"TargetID":75364,"Directional":false}]},{"ID":4820,"SourceStructureID":31161,"TargetStructureID":31024,"Label":"31161-31024 via Adherens from 31175 -> 31113","Type":"Adherens","Directional":false,"Links":[{"SourceID":31175,"TargetID":31113,"Directional":false}]},{"ID":4821,"SourceStructureID":31024,"TargetStructureID":75272,"Label":"31024-75272 via Adherens from 75278 -> 75277","Type":"Adherens","Directional":false,"Links":[{"SourceID":75278,"TargetID":75277,"Directional":false}]},{"ID":4822,"SourceStructureID":68486,"TargetStructureID":31161,"Label":"68486-31161 via Adherens from 79607 -> 79606","Type":"Adherens","Directional":false,"Links":[{"SourceID":79607,"TargetID":79606,"Directional":false}]},{"ID":4823,"SourceStructureID":31702,"TargetStructureID":39998,"Label":"31702-39998 via Adherens from 40001 -> 40000","Type":"Adherens","Directional":false,"Links":[{"SourceID":40001,"TargetID":40000,"Directional":false}]},{"ID":4824,"SourceStructureID":40844,"TargetStructureID":32035,"Label":"40844-32035 via Adherens from 40847 -> 32041","Type":"Adherens","Directional":false,"Links":[{"SourceID":40847,"TargetID":32041,"Directional":false}]},{"ID":4825,"SourceStructureID":61114,"TargetStructureID":32383,"Label":"61114-32383 via Gap Junction from 61115 -> 61113","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":61115,"TargetID":61113,"Directional":false}]},{"ID":4826,"SourceStructureID":80755,"TargetStructureID":32654,"Label":"80755-32654 via Gap Junction from 80778 -> 80777","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":80778,"TargetID":80777,"Directional":false}]},{"ID":4827,"SourceStructureID":32804,"TargetStructureID":64196,"Label":"32804-64196 via Adherens from 64212 -> 64213","Type":"Adherens","Directional":false,"Links":[{"SourceID":64212,"TargetID":64213,"Directional":false}]},{"ID":4828,"SourceStructureID":32959,"TargetStructureID":60535,"Label":"32959-60535 via Adherens from 60539 -> 60538","Type":"Adherens","Directional":false,"Links":[{"SourceID":60539,"TargetID":60538,"Directional":false}]},{"ID":4829,"SourceStructureID":68277,"TargetStructureID":35176,"Label":"68277-35176 via Adherens from 82248 -> 82249","Type":"Adherens","Directional":false,"Links":[{"SourceID":82248,"TargetID":82249,"Directional":false}]},{"ID":4830,"SourceStructureID":86201,"TargetStructureID":35894,"Label":"86201-35894 via Adherens from 86208 -> 35933","Type":"Adherens","Directional":false,"Links":[{"SourceID":86208,"TargetID":35933,"Directional":false}]},{"ID":4831,"SourceStructureID":82743,"TargetStructureID":36130,"Label":"82743-36130 via Adherens from 82785 -> 82786","Type":"Adherens","Directional":false,"Links":[{"SourceID":82785,"TargetID":82786,"Directional":false}]},{"ID":4832,"SourceStructureID":36516,"TargetStructureID":67331,"Label":"36516-67331 via Gap Junction from 67335 -> 67334","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":67335,"TargetID":67334,"Directional":false}]},{"ID":4833,"SourceStructureID":36516,"TargetStructureID":67410,"Label":"36516-67410 via Adherens from 82771 -> 82770","Type":"Adherens","Directional":false,"Links":[{"SourceID":82771,"TargetID":82770,"Directional":false}]},{"ID":4834,"SourceStructureID":90530,"TargetStructureID":38632,"Label":"90530-38632 via Adherens from 90532 -> 90533","Type":"Adherens","Directional":false,"Links":[{"SourceID":90532,"TargetID":90533,"Directional":false}]},{"ID":4835,"SourceStructureID":40934,"TargetStructureID":39216,"Label":"40934-39216 via Unknown from 90144 -> 90146","Type":"Unknown","Directional":false,"Links":[{"SourceID":90144,"TargetID":90146,"Directional":false}]},{"ID":4836,"SourceStructureID":39530,"TargetStructureID":97024,"Label":"39530-97024 via Unknown from 97083 -> 97082","Type":"Unknown","Directional":false,"Links":[{"SourceID":97083,"TargetID":97082,"Directional":false}]},{"ID":4837,"SourceStructureID":116581,"TargetStructureID":39615,"Label":"116581-39615 via Adherens from 116583 -> 116580","Type":"Adherens","Directional":false,"Links":[{"SourceID":116583,"TargetID":116580,"Directional":false}]},{"ID":4838,"SourceStructureID":39787,"TargetStructureID":39790,"Label":"39787-39790 via Gap Junction from 93135 -> 93136","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93135,"TargetID":93136,"Directional":false}]},{"ID":4839,"SourceStructureID":39807,"TargetStructureID":39816,"Label":"39807-39816 via Gap Junction from 89977 -> 89976","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89977,"TargetID":89976,"Directional":false}]},{"ID":4840,"SourceStructureID":39816,"TargetStructureID":39824,"Label":"39816-39824 via Unknown from 89973 -> 89975","Type":"Unknown","Directional":false,"Links":[{"SourceID":89973,"TargetID":89975,"Directional":false}]},{"ID":4841,"SourceStructureID":40039,"TargetStructureID":80210,"Label":"40039-80210 via Adherens from 84382 -> 84383","Type":"Adherens","Directional":false,"Links":[{"SourceID":84382,"TargetID":84383,"Directional":false}]},{"ID":4842,"SourceStructureID":40039,"TargetStructureID":82704,"Label":"40039-82704 via Adherens from 82705 -> 82706","Type":"Adherens","Directional":false,"Links":[{"SourceID":82705,"TargetID":82706,"Directional":false}]},{"ID":4843,"SourceStructureID":40039,"TargetStructureID":86162,"Label":"40039-86162 via Gap Junction from 82701 -> 86163","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":82701,"TargetID":86163,"Directional":false}]},{"ID":4844,"SourceStructureID":40469,"TargetStructureID":40469,"Label":"40469-40469 via Adherens from 40492 -> 40491","Type":"Adherens","Directional":false,"Links":[{"SourceID":40492,"TargetID":40491,"Directional":false}]},{"ID":4845,"SourceStructureID":40911,"TargetStructureID":40917,"Label":"40911-40917 via Unknown from 93294 -> 93293","Type":"Unknown","Directional":false,"Links":[{"SourceID":93294,"TargetID":93293,"Directional":false}]},{"ID":4846,"SourceStructureID":90328,"TargetStructureID":40951,"Label":"90328-40951 via Unknown from 90342 -> 90343","Type":"Unknown","Directional":false,"Links":[{"SourceID":90342,"TargetID":90343,"Directional":false}]},{"ID":4847,"SourceStructureID":41474,"TargetStructureID":41474,"Label":"41474-41474 via Gap Junction from 103300 -> 103299","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":103300,"TargetID":103299,"Directional":false}]},{"ID":4848,"SourceStructureID":41608,"TargetStructureID":66523,"Label":"41608-66523 via Adherens from 77955 -> 77954","Type":"Adherens","Directional":false,"Links":[{"SourceID":77955,"TargetID":77954,"Directional":false}]},{"ID":4849,"SourceStructureID":68497,"TargetStructureID":41608,"Label":"68497-41608 via Adherens from 81598 -> 81599","Type":"Adherens","Directional":false,"Links":[{"SourceID":81598,"TargetID":81599,"Directional":false}]},{"ID":4850,"SourceStructureID":41636,"TargetStructureID":85946,"Label":"41636-85946 via Gap Junction from 85949 -> 85948","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85949,"TargetID":85948,"Directional":false}]},{"ID":4851,"SourceStructureID":68444,"TargetStructureID":43431,"Label":"68444-43431 via Adherens from 80455 -> 80456","Type":"Adherens","Directional":false,"Links":[{"SourceID":80455,"TargetID":80456,"Directional":false}]},{"ID":4852,"SourceStructureID":68585,"TargetStructureID":43712,"Label":"68585-43712 via Adherens from 68586 -> 68584","Type":"Adherens","Directional":false,"Links":[{"SourceID":68586,"TargetID":68584,"Directional":false}]},{"ID":4853,"SourceStructureID":43716,"TargetStructureID":88260,"Label":"43716-88260 via Adherens from 88298 -> 88297","Type":"Adherens","Directional":false,"Links":[{"SourceID":88298,"TargetID":88297,"Directional":false}]},{"ID":4854,"SourceStructureID":53828,"TargetStructureID":44256,"Label":"53828-44256 via Gap Junction from 54664 -> 54663, 121672 -> 121673","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54664,"TargetID":54663,"Directional":false},{"SourceID":121672,"TargetID":121673,"Directional":false}]},{"ID":4855,"SourceStructureID":44970,"TargetStructureID":44346,"Label":"44970-44346 via Adherens from 44976 -> 44347","Type":"Adherens","Directional":false,"Links":[{"SourceID":44976,"TargetID":44347,"Directional":false}]},{"ID":4856,"SourceStructureID":44346,"TargetStructureID":87972,"Label":"44346-87972 via Adherens from 44367 -> 88042, 87976 -> 87977, 87984 -> 87985, 87986 -> 87987, 88041 -> 88040","Type":"Adherens","Directional":false,"Links":[{"SourceID":44367,"TargetID":88042,"Directional":false},{"SourceID":87976,"TargetID":87977,"Directional":false},{"SourceID":87984,"TargetID":87985,"Directional":false},{"SourceID":87986,"TargetID":87987,"Directional":false},{"SourceID":88041,"TargetID":88040,"Directional":false}]},{"ID":4857,"SourceStructureID":68539,"TargetStructureID":45555,"Label":"68539-45555 via Adherens from 70278 -> 70277","Type":"Adherens","Directional":false,"Links":[{"SourceID":70278,"TargetID":70277,"Directional":false}]},{"ID":4858,"SourceStructureID":68539,"TargetStructureID":45571,"Label":"68539-45571 via Adherens from 76036 -> 70282","Type":"Adherens","Directional":false,"Links":[{"SourceID":76036,"TargetID":70282,"Directional":false}]},{"ID":4859,"SourceStructureID":61836,"TargetStructureID":45574,"Label":"61836-45574 via Adherens from 69787 -> 69788","Type":"Adherens","Directional":false,"Links":[{"SourceID":69787,"TargetID":69788,"Directional":false}]},{"ID":4860,"SourceStructureID":46801,"TargetStructureID":45894,"Label":"46801-45894 via Gap Junction from 46802 -> 45905","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46802,"TargetID":45905,"Directional":false}]},{"ID":4861,"SourceStructureID":46388,"TargetStructureID":46105,"Label":"46388-46105 via Gap Junction from 46397 -> 46233","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":46397,"TargetID":46233,"Directional":false}]},{"ID":4862,"SourceStructureID":46388,"TargetStructureID":50449,"Label":"46388-50449 via Gap Junction from 121433 -> 121434, 121436 -> 120843, 121442 -> 121443","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121433,"TargetID":121434,"Directional":false},{"SourceID":121436,"TargetID":120843,"Directional":false},{"SourceID":121442,"TargetID":121443,"Directional":false}]},{"ID":4863,"SourceStructureID":89120,"TargetStructureID":46388,"Label":"89120-46388 via Gap Junction from 89147 -> 46588, 122403 -> 122402","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89147,"TargetID":46588,"Directional":false},{"SourceID":122403,"TargetID":122402,"Directional":false}]},{"ID":4864,"SourceStructureID":118258,"TargetStructureID":46388,"Label":"118258-46388 via Gap Junction from 118260 -> 148231, 118261 -> 148232","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118260,"TargetID":148231,"Directional":false},{"SourceID":118261,"TargetID":148232,"Directional":false}]},{"ID":4865,"SourceStructureID":46498,"TargetStructureID":136884,"Label":"46498-136884 via Conventional from 127915 -> 136888","Type":"Conventional","Directional":false,"Links":[{"SourceID":127915,"TargetID":136888,"Directional":false}]},{"ID":4866,"SourceStructureID":69162,"TargetStructureID":47013,"Label":"69162-47013 via Adherens from 69256 -> 47027","Type":"Adherens","Directional":false,"Links":[{"SourceID":69256,"TargetID":47027,"Directional":false}]},{"ID":4867,"SourceStructureID":47445,"TargetStructureID":47445,"Label":"47445-47445 via Gap Junction from 118185 -> 118184","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118185,"TargetID":118184,"Directional":false}]},{"ID":4868,"SourceStructureID":121889,"TargetStructureID":47445,"Label":"121889-47445 via Gap Junction from 121891 -> 118187","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121891,"TargetID":118187,"Directional":false}]},{"ID":4869,"SourceStructureID":132009,"TargetStructureID":47445,"Label":"132009-47445 via Gap Junction from 132024 -> 132026","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132024,"TargetID":132026,"Directional":false}]},{"ID":4870,"SourceStructureID":48516,"TargetStructureID":48516,"Label":"48516-48516 via Adherens from 93796 -> 93798","Type":"Adherens","Directional":false,"Links":[{"SourceID":93796,"TargetID":93798,"Directional":false}]},{"ID":4871,"SourceStructureID":48516,"TargetStructureID":48516,"Label":"48516-48516 via Gap Junction from 93795 -> 51691, 93800 -> 52027, 93803 -> 93802","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93795,"TargetID":51691,"Directional":false},{"SourceID":93800,"TargetID":52027,"Directional":false},{"SourceID":93803,"TargetID":93802,"Directional":false}]},{"ID":4872,"SourceStructureID":48516,"TargetStructureID":64939,"Label":"48516-64939 via Gap Junction from 93818 -> 93819, 123298 -> 123299","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93818,"TargetID":93819,"Directional":false},{"SourceID":123298,"TargetID":123299,"Directional":false}]},{"ID":4873,"SourceStructureID":93790,"TargetStructureID":48516,"Label":"93790-48516 via Gap Junction from 93791 -> 93783","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":93791,"TargetID":93783,"Directional":false}]},{"ID":4874,"SourceStructureID":89020,"TargetStructureID":49184,"Label":"89020-49184 via Gap Junction from 89021 -> 49356","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89021,"TargetID":49356,"Directional":false}]},{"ID":4875,"SourceStructureID":89029,"TargetStructureID":49184,"Label":"89029-49184 via Gap Junction from 89030 -> 49344","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89030,"TargetID":49344,"Directional":false}]},{"ID":4876,"SourceStructureID":50449,"TargetStructureID":89120,"Label":"50449-89120 via Gap Junction from 122407 -> 122406","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":122407,"TargetID":122406,"Directional":false}]},{"ID":4877,"SourceStructureID":89829,"TargetStructureID":50894,"Label":"89829-50894 via Gap Junction from 89830 -> 52399","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89830,"TargetID":52399,"Directional":false}]},{"ID":4878,"SourceStructureID":88733,"TargetStructureID":51617,"Label":"88733-51617 via Unknown from 115464 -> 115463","Type":"Unknown","Directional":false,"Links":[{"SourceID":115464,"TargetID":115463,"Directional":false}]},{"ID":4879,"SourceStructureID":52410,"TargetStructureID":87294,"Label":"52410-87294 via Adherens from 87299 -> 87298","Type":"Adherens","Directional":false,"Links":[{"SourceID":87299,"TargetID":87298,"Directional":false}]},{"ID":4880,"SourceStructureID":53828,"TargetStructureID":53778,"Label":"53828-53778 via Gap Junction from 54666 -> 54665","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":54666,"TargetID":54665,"Directional":false}]},{"ID":4881,"SourceStructureID":53828,"TargetStructureID":53828,"Label":"53828-53828 via Gap Junction from 123118 -> 123117","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":123118,"TargetID":123117,"Directional":false}]},{"ID":4882,"SourceStructureID":67864,"TargetStructureID":54078,"Label":"67864-54078 via Adherens from 67865 -> 67863","Type":"Adherens","Directional":false,"Links":[{"SourceID":67865,"TargetID":67863,"Directional":false}]},{"ID":4883,"SourceStructureID":88975,"TargetStructureID":55098,"Label":"88975-55098 via Adherens from 88976 -> 88974","Type":"Adherens","Directional":false,"Links":[{"SourceID":88976,"TargetID":88974,"Directional":false}]},{"ID":4884,"SourceStructureID":57133,"TargetStructureID":117127,"Label":"57133-117127 via Gap Junction from 57138 -> 117144","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":57138,"TargetID":117144,"Directional":false}]},{"ID":4885,"SourceStructureID":57353,"TargetStructureID":57353,"Label":"57353-57353 via Unknown from 124425 -> 124426","Type":"Unknown","Directional":false,"Links":[{"SourceID":124425,"TargetID":124426,"Directional":false}]},{"ID":4886,"SourceStructureID":61397,"TargetStructureID":57353,"Label":"61397-57353 via Gap Junction from 124398 -> 124395","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124398,"TargetID":124395,"Directional":false}]},{"ID":4887,"SourceStructureID":124282,"TargetStructureID":57353,"Label":"124282-57353 via Gap Junction from 124283 -> 124276, 124284 -> 124285","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124283,"TargetID":124276,"Directional":false},{"SourceID":124284,"TargetID":124285,"Directional":false}]},{"ID":4888,"SourceStructureID":57353,"TargetStructureID":124301,"Label":"57353-124301 via Adherens from 124428 -> 124429","Type":"Adherens","Directional":false,"Links":[{"SourceID":124428,"TargetID":124429,"Directional":false}]},{"ID":4889,"SourceStructureID":124313,"TargetStructureID":57353,"Label":"124313-57353 via Gap Junction from 124316 -> 124311","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124316,"TargetID":124311,"Directional":false}]},{"ID":4890,"SourceStructureID":124402,"TargetStructureID":57353,"Label":"124402-57353 via Gap Junction from 124403 -> 124401","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":124403,"TargetID":124401,"Directional":false}]},{"ID":4891,"SourceStructureID":86620,"TargetStructureID":58696,"Label":"86620-58696 via Adherens from 86621 -> 86619","Type":"Adherens","Directional":false,"Links":[{"SourceID":86621,"TargetID":86619,"Directional":false}]},{"ID":4892,"SourceStructureID":86927,"TargetStructureID":58696,"Label":"86927-58696 via Adherens from 86930 -> 86929","Type":"Adherens","Directional":false,"Links":[{"SourceID":86930,"TargetID":86929,"Directional":false}]},{"ID":4893,"SourceStructureID":86945,"TargetStructureID":58696,"Label":"86945-58696 via Adherens from 86949 -> 86948","Type":"Adherens","Directional":false,"Links":[{"SourceID":86949,"TargetID":86948,"Directional":false}]},{"ID":4894,"SourceStructureID":86971,"TargetStructureID":58696,"Label":"86971-58696 via Adherens from 86973 -> 86974, 86978 -> 86977","Type":"Adherens","Directional":false,"Links":[{"SourceID":86973,"TargetID":86974,"Directional":false},{"SourceID":86978,"TargetID":86977,"Directional":false}]},{"ID":4895,"SourceStructureID":58723,"TargetStructureID":58714,"Label":"58723-58714 via Adherens from 86140 -> 86139","Type":"Adherens","Directional":false,"Links":[{"SourceID":86140,"TargetID":86139,"Directional":false}]},{"ID":4896,"SourceStructureID":58784,"TargetStructureID":58782,"Label":"58784-58782 via Gap Junction from 58788 -> 58787","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":58788,"TargetID":58787,"Directional":false}]},{"ID":4897,"SourceStructureID":59211,"TargetStructureID":59208,"Label":"59211-59208 via Gap Junction from 59213 -> 59214","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59213,"TargetID":59214,"Directional":false}]},{"ID":4898,"SourceStructureID":59211,"TargetStructureID":59219,"Label":"59211-59219 via Gap Junction from 59218 -> 59220","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59218,"TargetID":59220,"Directional":false}]},{"ID":4899,"SourceStructureID":59225,"TargetStructureID":59223,"Label":"59225-59223 via Gap Junction from 59226 -> 59224","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59226,"TargetID":59224,"Directional":false}]},{"ID":4900,"SourceStructureID":59229,"TargetStructureID":59223,"Label":"59229-59223 via Gap Junction from 59230 -> 59231, 59235 -> 59237, 59238 -> 59239, 59241 -> 59240","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59230,"TargetID":59231,"Directional":false},{"SourceID":59235,"TargetID":59237,"Directional":false},{"SourceID":59238,"TargetID":59239,"Directional":false},{"SourceID":59241,"TargetID":59240,"Directional":false}]},{"ID":4901,"SourceStructureID":59294,"TargetStructureID":59262,"Label":"59294-59262 via Unknown from 59295 -> 59293","Type":"Unknown","Directional":false,"Links":[{"SourceID":59295,"TargetID":59293,"Directional":false}]},{"ID":4902,"SourceStructureID":59262,"TargetStructureID":59301,"Label":"59262-59301 via Gap Junction from 59299 -> 59302","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59299,"TargetID":59302,"Directional":false}]},{"ID":4903,"SourceStructureID":59262,"TargetStructureID":59304,"Label":"59262-59304 via Gap Junction from 59306 -> 59307","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59306,"TargetID":59307,"Directional":false}]},{"ID":4904,"SourceStructureID":59340,"TargetStructureID":59333,"Label":"59340-59333 via Gap Junction from 59341 -> 59339","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59341,"TargetID":59339,"Directional":false}]},{"ID":4905,"SourceStructureID":85050,"TargetStructureID":59333,"Label":"85050-59333 via Adherens from 85051 -> 85049","Type":"Adherens","Directional":false,"Links":[{"SourceID":85051,"TargetID":85049,"Directional":false}]},{"ID":4906,"SourceStructureID":85056,"TargetStructureID":59333,"Label":"85056-59333 via Adherens from 85057 -> 85055","Type":"Adherens","Directional":false,"Links":[{"SourceID":85057,"TargetID":85055,"Directional":false}]},{"ID":4907,"SourceStructureID":59333,"TargetStructureID":85062,"Label":"59333-85062 via Adherens from 85064 -> 85063","Type":"Adherens","Directional":false,"Links":[{"SourceID":85064,"TargetID":85063,"Directional":false}]},{"ID":4908,"SourceStructureID":59392,"TargetStructureID":59362,"Label":"59392-59362 via Gap Junction from 59401 -> 59403, 59414 -> 59415","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59401,"TargetID":59403,"Directional":false},{"SourceID":59414,"TargetID":59415,"Directional":false}]},{"ID":4909,"SourceStructureID":59419,"TargetStructureID":85141,"Label":"59419-85141 via Adherens from 85272 -> 85271","Type":"Adherens","Directional":false,"Links":[{"SourceID":85272,"TargetID":85271,"Directional":false}]},{"ID":4910,"SourceStructureID":59419,"TargetStructureID":85141,"Label":"59419-85141 via Gap Junction from 85273 -> 85267, 85384 -> 85383","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85273,"TargetID":85267,"Directional":false},{"SourceID":85384,"TargetID":85383,"Directional":false}]},{"ID":4911,"SourceStructureID":59419,"TargetStructureID":85352,"Label":"59419-85352 via Adherens from 85355 -> 85354","Type":"Adherens","Directional":false,"Links":[{"SourceID":85355,"TargetID":85354,"Directional":false}]},{"ID":4912,"SourceStructureID":59422,"TargetStructureID":59469,"Label":"59422-59469 via Gap Junction from 59472 -> 59470","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59472,"TargetID":59470,"Directional":false}]},{"ID":4913,"SourceStructureID":65267,"TargetStructureID":59455,"Label":"65267-59455 via Gap Junction from 69949 -> 59457","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":69949,"TargetID":59457,"Directional":false}]},{"ID":4914,"SourceStructureID":59474,"TargetStructureID":59469,"Label":"59474-59469 via Gap Junction from 59475 -> 59473","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59475,"TargetID":59473,"Directional":false}]},{"ID":4915,"SourceStructureID":59477,"TargetStructureID":59474,"Label":"59477-59474 via Gap Junction from 59478 -> 59476, 59479 -> 59481","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59478,"TargetID":59476,"Directional":false},{"SourceID":59479,"TargetID":59481,"Directional":false}]},{"ID":4916,"SourceStructureID":59474,"TargetStructureID":59491,"Label":"59474-59491 via Gap Junction from 59496 -> 59495","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59496,"TargetID":59495,"Directional":false}]},{"ID":4917,"SourceStructureID":59524,"TargetStructureID":59523,"Label":"59524-59523 via Gap Junction from 59527 -> 59528","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":59527,"TargetID":59528,"Directional":false}]},{"ID":4918,"SourceStructureID":60989,"TargetStructureID":60976,"Label":"60989-60976 via Gap Junction from 60993 -> 60987","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":60993,"TargetID":60987,"Directional":false}]},{"ID":4919,"SourceStructureID":61108,"TargetStructureID":79350,"Label":"61108-79350 via Unknown from 117738 -> 79352","Type":"Unknown","Directional":false,"Links":[{"SourceID":117738,"TargetID":79352,"Directional":false}]},{"ID":4920,"SourceStructureID":61809,"TargetStructureID":61807,"Label":"61809-61807 via Adherens from 68383 -> 68385","Type":"Adherens","Directional":false,"Links":[{"SourceID":68383,"TargetID":68385,"Directional":false}]},{"ID":4921,"SourceStructureID":61809,"TargetStructureID":80491,"Label":"61809-80491 via Adherens from 80490 -> 80492","Type":"Adherens","Directional":false,"Links":[{"SourceID":80490,"TargetID":80492,"Directional":false}]},{"ID":4922,"SourceStructureID":68548,"TargetStructureID":61823,"Label":"68548-61823 via Gap Junction from 73558 -> 64616","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":73558,"TargetID":64616,"Directional":false}]},{"ID":4923,"SourceStructureID":70317,"TargetStructureID":61823,"Label":"70317-61823 via Adherens from 70320 -> 70316","Type":"Adherens","Directional":false,"Links":[{"SourceID":70320,"TargetID":70316,"Directional":false}]},{"ID":4924,"SourceStructureID":61823,"TargetStructureID":70343,"Label":"61823-70343 via Adherens from 70345 -> 70344","Type":"Adherens","Directional":false,"Links":[{"SourceID":70345,"TargetID":70344,"Directional":false}]},{"ID":4925,"SourceStructureID":61864,"TargetStructureID":68901,"Label":"61864-68901 via Adherens from 68913 -> 68912","Type":"Adherens","Directional":false,"Links":[{"SourceID":68913,"TargetID":68912,"Directional":false}]},{"ID":4926,"SourceStructureID":62325,"TargetStructureID":80516,"Label":"62325-80516 via Adherens from 80515 -> 80517","Type":"Adherens","Directional":false,"Links":[{"SourceID":80515,"TargetID":80517,"Directional":false}]},{"ID":4927,"SourceStructureID":62325,"TargetStructureID":80534,"Label":"62325-80534 via Adherens from 80909 -> 80908","Type":"Adherens","Directional":false,"Links":[{"SourceID":80909,"TargetID":80908,"Directional":false}]},{"ID":4928,"SourceStructureID":80684,"TargetStructureID":62325,"Label":"80684-62325 via Unknown from 80688 -> 80687","Type":"Unknown","Directional":false,"Links":[{"SourceID":80688,"TargetID":80687,"Directional":false}]},{"ID":4929,"SourceStructureID":62325,"TargetStructureID":80751,"Label":"62325-80751 via Gap Junction from 62331 -> 80752","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":62331,"TargetID":80752,"Directional":false}]},{"ID":4930,"SourceStructureID":62325,"TargetStructureID":80849,"Label":"62325-80849 via Unknown from 80850 -> 80851","Type":"Unknown","Directional":false,"Links":[{"SourceID":80850,"TargetID":80851,"Directional":false}]},{"ID":4931,"SourceStructureID":62325,"TargetStructureID":80871,"Label":"62325-80871 via Adherens from 80994 -> 80995","Type":"Adherens","Directional":false,"Links":[{"SourceID":80994,"TargetID":80995,"Directional":false}]},{"ID":4932,"SourceStructureID":80896,"TargetStructureID":62325,"Label":"80896-62325 via Adherens from 80903 -> 80902","Type":"Adherens","Directional":false,"Links":[{"SourceID":80903,"TargetID":80902,"Directional":false}]},{"ID":4933,"SourceStructureID":62325,"TargetStructureID":80896,"Label":"62325-80896 via Unknown from 80906 -> 80907","Type":"Unknown","Directional":false,"Links":[{"SourceID":80906,"TargetID":80907,"Directional":false}]},{"ID":4934,"SourceStructureID":81267,"TargetStructureID":62325,"Label":"81267-62325 via Adherens from 81268 -> 81269","Type":"Adherens","Directional":false,"Links":[{"SourceID":81268,"TargetID":81269,"Directional":false}]},{"ID":4935,"SourceStructureID":62325,"TargetStructureID":81282,"Label":"62325-81282 via Gap Junction from 81284 -> 81283","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81284,"TargetID":81283,"Directional":false}]},{"ID":4936,"SourceStructureID":62325,"TargetStructureID":81304,"Label":"62325-81304 via Adherens from 81307 -> 81306, 81312 -> 81280, 81314 -> 81313","Type":"Adherens","Directional":false,"Links":[{"SourceID":81307,"TargetID":81306,"Directional":false},{"SourceID":81312,"TargetID":81280,"Directional":false},{"SourceID":81314,"TargetID":81313,"Directional":false}]},{"ID":4937,"SourceStructureID":81304,"TargetStructureID":62325,"Label":"81304-62325 via Gap Junction from 81383 -> 81382, 81390 -> 81389","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81383,"TargetID":81382,"Directional":false},{"SourceID":81390,"TargetID":81389,"Directional":false}]},{"ID":4938,"SourceStructureID":81308,"TargetStructureID":62325,"Label":"81308-62325 via Adherens from 81310 -> 81309","Type":"Adherens","Directional":false,"Links":[{"SourceID":81310,"TargetID":81309,"Directional":false}]},{"ID":4939,"SourceStructureID":81308,"TargetStructureID":62325,"Label":"81308-62325 via Unknown from 81385 -> 81384","Type":"Unknown","Directional":false,"Links":[{"SourceID":81385,"TargetID":81384,"Directional":false}]},{"ID":4940,"SourceStructureID":62325,"TargetStructureID":81316,"Label":"62325-81316 via Unknown from 81318 -> 81320","Type":"Unknown","Directional":false,"Links":[{"SourceID":81318,"TargetID":81320,"Directional":false}]},{"ID":4941,"SourceStructureID":81361,"TargetStructureID":62325,"Label":"81361-62325 via Adherens from 81364 -> 81365","Type":"Adherens","Directional":false,"Links":[{"SourceID":81364,"TargetID":81365,"Directional":false}]},{"ID":4942,"SourceStructureID":62325,"TargetStructureID":81361,"Label":"62325-81361 via Gap Junction from 81362 -> 81363","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81362,"TargetID":81363,"Directional":false}]},{"ID":4943,"SourceStructureID":81366,"TargetStructureID":62325,"Label":"81366-62325 via Gap Junction from 81369 -> 81368","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81369,"TargetID":81368,"Directional":false}]},{"ID":4944,"SourceStructureID":62325,"TargetStructureID":81367,"Label":"62325-81367 via Gap Junction from 81370 -> 81371","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":81370,"TargetID":81371,"Directional":false}]},{"ID":4945,"SourceStructureID":62325,"TargetStructureID":81373,"Label":"62325-81373 via Adherens from 81376 -> 81374","Type":"Adherens","Directional":false,"Links":[{"SourceID":81376,"TargetID":81374,"Directional":false}]},{"ID":4946,"SourceStructureID":62325,"TargetStructureID":81422,"Label":"62325-81422 via Unknown from 81424 -> 81423","Type":"Unknown","Directional":false,"Links":[{"SourceID":81424,"TargetID":81423,"Directional":false}]},{"ID":4947,"SourceStructureID":65351,"TargetStructureID":63371,"Label":"65351-63371 via Adherens from 79032 -> 79031","Type":"Adherens","Directional":false,"Links":[{"SourceID":79032,"TargetID":79031,"Directional":false}]},{"ID":4948,"SourceStructureID":64417,"TargetStructureID":64414,"Label":"64417-64414 via Adherens from 64419 -> 64416","Type":"Adherens","Directional":false,"Links":[{"SourceID":64419,"TargetID":64416,"Directional":false}]},{"ID":4949,"SourceStructureID":89599,"TargetStructureID":64452,"Label":"89599-64452 via Adherens from 89600 -> 89598","Type":"Adherens","Directional":false,"Links":[{"SourceID":89600,"TargetID":89598,"Directional":false}]},{"ID":4950,"SourceStructureID":89599,"TargetStructureID":64452,"Label":"89599-64452 via Gap Junction from 89601 -> 89597","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89601,"TargetID":89597,"Directional":false}]},{"ID":4951,"SourceStructureID":64452,"TargetStructureID":89617,"Label":"64452-89617 via Adherens from 89615 -> 89619","Type":"Adherens","Directional":false,"Links":[{"SourceID":89615,"TargetID":89619,"Directional":false}]},{"ID":4952,"SourceStructureID":111986,"TargetStructureID":64452,"Label":"111986-64452 via Adherens from 111988 -> 111989","Type":"Adherens","Directional":false,"Links":[{"SourceID":111988,"TargetID":111989,"Directional":false}]},{"ID":4953,"SourceStructureID":65576,"TargetStructureID":64492,"Label":"65576-64492 via Adherens from 65583 -> 65582","Type":"Adherens","Directional":false,"Links":[{"SourceID":65583,"TargetID":65582,"Directional":false}]},{"ID":4954,"SourceStructureID":64492,"TargetStructureID":65963,"Label":"64492-65963 via Adherens from 65975 -> 65976","Type":"Adherens","Directional":false,"Links":[{"SourceID":65975,"TargetID":65976,"Directional":false}]},{"ID":4955,"SourceStructureID":69428,"TargetStructureID":64939,"Label":"69428-64939 via Gap Junction from 69429 -> 69420","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":69429,"TargetID":69420,"Directional":false}]},{"ID":4956,"SourceStructureID":69431,"TargetStructureID":64939,"Label":"69431-64939 via Adherens from 69432 -> 69430","Type":"Adherens","Directional":false,"Links":[{"SourceID":69432,"TargetID":69430,"Directional":false}]},{"ID":4957,"SourceStructureID":64939,"TargetStructureID":70084,"Label":"64939-70084 via Gap Junction from 69724 -> 70085","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":69724,"TargetID":70085,"Directional":false}]},{"ID":4958,"SourceStructureID":74907,"TargetStructureID":64939,"Label":"74907-64939 via Adherens from 83779 -> 83780","Type":"Adherens","Directional":false,"Links":[{"SourceID":83779,"TargetID":83780,"Directional":false}]},{"ID":4959,"SourceStructureID":64939,"TargetStructureID":74907,"Label":"64939-74907 via Unknown from 83840 -> 83835","Type":"Unknown","Directional":false,"Links":[{"SourceID":83840,"TargetID":83835,"Directional":false}]},{"ID":4960,"SourceStructureID":66523,"TargetStructureID":65318,"Label":"66523-65318 via Adherens from 77925 -> 77924","Type":"Adherens","Directional":false,"Links":[{"SourceID":77925,"TargetID":77924,"Directional":false}]},{"ID":4961,"SourceStructureID":65320,"TargetStructureID":67423,"Label":"65320-67423 via Adherens from 81356 -> 81357","Type":"Adherens","Directional":false,"Links":[{"SourceID":81356,"TargetID":81357,"Directional":false}]},{"ID":4962,"SourceStructureID":67291,"TargetStructureID":65324,"Label":"67291-65324 via Adherens from 67296 -> 67295","Type":"Adherens","Directional":false,"Links":[{"SourceID":67296,"TargetID":67295,"Directional":false}]},{"ID":4963,"SourceStructureID":76947,"TargetStructureID":65351,"Label":"76947-65351 via Adherens from 79007 -> 79006","Type":"Adherens","Directional":false,"Links":[{"SourceID":79007,"TargetID":79006,"Directional":false}]},{"ID":4964,"SourceStructureID":78950,"TargetStructureID":65351,"Label":"78950-65351 via Adherens from 78951 -> 78952","Type":"Adherens","Directional":false,"Links":[{"SourceID":78951,"TargetID":78952,"Directional":false}]},{"ID":4965,"SourceStructureID":78964,"TargetStructureID":65351,"Label":"78964-65351 via Adherens from 78973 -> 78972","Type":"Adherens","Directional":false,"Links":[{"SourceID":78973,"TargetID":78972,"Directional":false}]},{"ID":4966,"SourceStructureID":78964,"TargetStructureID":65351,"Label":"78964-65351 via Unknown from 78965 -> 78963","Type":"Unknown","Directional":false,"Links":[{"SourceID":78965,"TargetID":78963,"Directional":false}]},{"ID":4967,"SourceStructureID":65351,"TargetStructureID":78977,"Label":"65351-78977 via Adherens from 78976 -> 78978","Type":"Adherens","Directional":false,"Links":[{"SourceID":78976,"TargetID":78978,"Directional":false}]},{"ID":4968,"SourceStructureID":65351,"TargetStructureID":79034,"Label":"65351-79034 via Adherens from 79040 -> 79036","Type":"Adherens","Directional":false,"Links":[{"SourceID":79040,"TargetID":79036,"Directional":false}]},{"ID":4969,"SourceStructureID":79045,"TargetStructureID":65351,"Label":"79045-65351 via Adherens from 79046 -> 79044","Type":"Adherens","Directional":false,"Links":[{"SourceID":79046,"TargetID":79044,"Directional":false}]},{"ID":4970,"SourceStructureID":65358,"TargetStructureID":65369,"Label":"65358-65369 via Adherens from 65370 -> 65371","Type":"Adherens","Directional":false,"Links":[{"SourceID":65370,"TargetID":65371,"Directional":false}]},{"ID":4971,"SourceStructureID":65470,"TargetStructureID":65464,"Label":"65470-65464 via Gap Junction from 65471 -> 65469","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":65471,"TargetID":65469,"Directional":false}]},{"ID":4972,"SourceStructureID":116703,"TargetStructureID":65536,"Label":"116703-65536 via Adherens from 116704 -> 67069","Type":"Adherens","Directional":false,"Links":[{"SourceID":116704,"TargetID":67069,"Directional":false}]},{"ID":4973,"SourceStructureID":65623,"TargetStructureID":65569,"Label":"65623-65569 via Adherens from 81391 -> 81392","Type":"Adherens","Directional":false,"Links":[{"SourceID":81391,"TargetID":81392,"Directional":false}]},{"ID":4974,"SourceStructureID":83461,"TargetStructureID":65835,"Label":"83461-65835 via Gap Junction from 83462 -> 83460, 83463 -> 83464","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83462,"TargetID":83460,"Directional":false},{"SourceID":83463,"TargetID":83464,"Directional":false}]},{"ID":4975,"SourceStructureID":67322,"TargetStructureID":65864,"Label":"67322-65864 via Postsynapse from 67363 -> 65879","Type":"Postsynapse","Directional":false,"Links":[{"SourceID":67363,"TargetID":65879,"Directional":false}]},{"ID":4976,"SourceStructureID":65893,"TargetStructureID":66053,"Label":"65893-66053 via Adherens from 84437 -> 84436","Type":"Adherens","Directional":false,"Links":[{"SourceID":84437,"TargetID":84436,"Directional":false}]},{"ID":4977,"SourceStructureID":66809,"TargetStructureID":66031,"Label":"66809-66031 via Adherens from 66042 -> 66043","Type":"Adherens","Directional":false,"Links":[{"SourceID":66042,"TargetID":66043,"Directional":false}]},{"ID":4978,"SourceStructureID":68214,"TargetStructureID":66096,"Label":"68214-66096 via Adherens from 68449 -> 68448","Type":"Adherens","Directional":false,"Links":[{"SourceID":68449,"TargetID":68448,"Directional":false}]},{"ID":4979,"SourceStructureID":66096,"TargetStructureID":68292,"Label":"66096-68292 via Adherens from 70005 -> 68293","Type":"Adherens","Directional":false,"Links":[{"SourceID":70005,"TargetID":68293,"Directional":false}]},{"ID":4980,"SourceStructureID":66102,"TargetStructureID":66339,"Label":"66102-66339 via Adherens from 84259 -> 84258","Type":"Adherens","Directional":false,"Links":[{"SourceID":84259,"TargetID":84258,"Directional":false}]},{"ID":4981,"SourceStructureID":66102,"TargetStructureID":67350,"Label":"66102-67350 via Adherens from 68323 -> 68322","Type":"Adherens","Directional":false,"Links":[{"SourceID":68323,"TargetID":68322,"Directional":false}]},{"ID":4982,"SourceStructureID":66114,"TargetStructureID":66111,"Label":"66114-66111 via Gap Junction from 66115 -> 66113","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":66115,"TargetID":66113,"Directional":false}]},{"ID":4983,"SourceStructureID":66111,"TargetStructureID":68444,"Label":"66111-68444 via Adherens from 68466 -> 68465, 68472 -> 68471","Type":"Adherens","Directional":false,"Links":[{"SourceID":68466,"TargetID":68465,"Directional":false},{"SourceID":68472,"TargetID":68471,"Directional":false}]},{"ID":4984,"SourceStructureID":66278,"TargetStructureID":66295,"Label":"66278-66295 via Adherens from 66294 -> 66296","Type":"Adherens","Directional":false,"Links":[{"SourceID":66294,"TargetID":66296,"Directional":false}]},{"ID":4985,"SourceStructureID":66323,"TargetStructureID":84342,"Label":"66323-84342 via Adherens from 84345 -> 84344","Type":"Adherens","Directional":false,"Links":[{"SourceID":84345,"TargetID":84344,"Directional":false}]},{"ID":4986,"SourceStructureID":84407,"TargetStructureID":66323,"Label":"84407-66323 via Adherens from 84409 -> 84406, 84414 -> 84415","Type":"Adherens","Directional":false,"Links":[{"SourceID":84409,"TargetID":84406,"Directional":false},{"SourceID":84414,"TargetID":84415,"Directional":false}]},{"ID":4987,"SourceStructureID":84427,"TargetStructureID":66323,"Label":"84427-66323 via Unknown from 84428 -> 84426","Type":"Unknown","Directional":false,"Links":[{"SourceID":84428,"TargetID":84426,"Directional":false}]},{"ID":4988,"SourceStructureID":84429,"TargetStructureID":66323,"Label":"84429-66323 via Unknown from 84431 -> 84430","Type":"Unknown","Directional":false,"Links":[{"SourceID":84431,"TargetID":84430,"Directional":false}]},{"ID":4989,"SourceStructureID":66477,"TargetStructureID":66487,"Label":"66477-66487 via Adherens from 66491 -> 66490","Type":"Adherens","Directional":false,"Links":[{"SourceID":66491,"TargetID":66490,"Directional":false}]},{"ID":4990,"SourceStructureID":84127,"TargetStructureID":66477,"Label":"84127-66477 via Adherens from 84128 -> 66491, 84133 -> 84132","Type":"Adherens","Directional":false,"Links":[{"SourceID":84128,"TargetID":66491,"Directional":false},{"SourceID":84133,"TargetID":84132,"Directional":false}]},{"ID":4991,"SourceStructureID":66487,"TargetStructureID":66493,"Label":"66487-66493 via Adherens from 84134 -> 84135","Type":"Adherens","Directional":false,"Links":[{"SourceID":84134,"TargetID":84135,"Directional":false}]},{"ID":4992,"SourceStructureID":84127,"TargetStructureID":66487,"Label":"84127-66487 via Adherens from 84128 -> 66490, 84130 -> 84131","Type":"Adherens","Directional":false,"Links":[{"SourceID":84128,"TargetID":66490,"Directional":false},{"SourceID":84130,"TargetID":84131,"Directional":false}]},{"ID":4993,"SourceStructureID":66523,"TargetStructureID":66520,"Label":"66523-66520 via Adherens from 66524 -> 66525","Type":"Adherens","Directional":false,"Links":[{"SourceID":66524,"TargetID":66525,"Directional":false}]},{"ID":4994,"SourceStructureID":66523,"TargetStructureID":70415,"Label":"66523-70415 via Adherens from 74884 -> 74885","Type":"Adherens","Directional":false,"Links":[{"SourceID":74884,"TargetID":74885,"Directional":false}]},{"ID":4995,"SourceStructureID":66523,"TargetStructureID":75307,"Label":"66523-75307 via Adherens from 75305 -> 75308","Type":"Adherens","Directional":false,"Links":[{"SourceID":75305,"TargetID":75308,"Directional":false}]},{"ID":4996,"SourceStructureID":77965,"TargetStructureID":66523,"Label":"77965-66523 via Adherens from 77969 -> 77968","Type":"Adherens","Directional":false,"Links":[{"SourceID":77969,"TargetID":77968,"Directional":false}]},{"ID":4997,"SourceStructureID":66634,"TargetStructureID":71345,"Label":"66634-71345 via Adherens from 75177 -> 75176","Type":"Adherens","Directional":false,"Links":[{"SourceID":75177,"TargetID":75176,"Directional":false}]},{"ID":4998,"SourceStructureID":71351,"TargetStructureID":66634,"Label":"71351-66634 via Adherens from 71914 -> 71913","Type":"Adherens","Directional":false,"Links":[{"SourceID":71914,"TargetID":71913,"Directional":false}]},{"ID":4999,"SourceStructureID":66634,"TargetStructureID":71517,"Label":"66634-71517 via Adherens from 66679 -> 66678, 72117 -> 72116","Type":"Adherens","Directional":false,"Links":[{"SourceID":66679,"TargetID":66678,"Directional":false},{"SourceID":72117,"TargetID":72116,"Directional":false}]},{"ID":5000,"SourceStructureID":75179,"TargetStructureID":66634,"Label":"75179-66634 via Adherens from 75180 -> 75178","Type":"Adherens","Directional":false,"Links":[{"SourceID":75180,"TargetID":75178,"Directional":false}]},{"ID":5001,"SourceStructureID":66685,"TargetStructureID":66688,"Label":"66685-66688 via Adherens from 83337 -> 83336","Type":"Adherens","Directional":false,"Links":[{"SourceID":83337,"TargetID":83336,"Directional":false}]},{"ID":5002,"SourceStructureID":66731,"TargetStructureID":66734,"Label":"66731-66734 via Adherens from 66736 -> 66737","Type":"Adherens","Directional":false,"Links":[{"SourceID":66736,"TargetID":66737,"Directional":false}]},{"ID":5003,"SourceStructureID":66734,"TargetStructureID":66743,"Label":"66734-66743 via Adherens from 66745 -> 66744","Type":"Adherens","Directional":false,"Links":[{"SourceID":66745,"TargetID":66744,"Directional":false}]},{"ID":5004,"SourceStructureID":66768,"TargetStructureID":68214,"Label":"66768-68214 via Adherens from 68484 -> 68483","Type":"Adherens","Directional":false,"Links":[{"SourceID":68484,"TargetID":68483,"Directional":false}]},{"ID":5005,"SourceStructureID":66777,"TargetStructureID":66848,"Label":"66777-66848 via Adherens from 66859 -> 66857","Type":"Adherens","Directional":false,"Links":[{"SourceID":66859,"TargetID":66857,"Directional":false}]},{"ID":5006,"SourceStructureID":67626,"TargetStructureID":66779,"Label":"67626-66779 via Adherens from 67628 -> 67629","Type":"Adherens","Directional":false,"Links":[{"SourceID":67628,"TargetID":67629,"Directional":false}]},{"ID":5007,"SourceStructureID":66785,"TargetStructureID":66788,"Label":"66785-66788 via Adherens from 66787 -> 66789","Type":"Adherens","Directional":false,"Links":[{"SourceID":66787,"TargetID":66789,"Directional":false}]},{"ID":5008,"SourceStructureID":66809,"TargetStructureID":66804,"Label":"66809-66804 via Adherens from 66868 -> 66869","Type":"Adherens","Directional":false,"Links":[{"SourceID":66868,"TargetID":66869,"Directional":false}]},{"ID":5009,"SourceStructureID":66871,"TargetStructureID":66804,"Label":"66871-66804 via Adherens from 66872 -> 66870, 66876 -> 66877","Type":"Adherens","Directional":false,"Links":[{"SourceID":66872,"TargetID":66870,"Directional":false},{"SourceID":66876,"TargetID":66877,"Directional":false}]},{"ID":5010,"SourceStructureID":66952,"TargetStructureID":66809,"Label":"66952-66809 via Unknown from 83042 -> 83043","Type":"Unknown","Directional":false,"Links":[{"SourceID":83042,"TargetID":83043,"Directional":false}]},{"ID":5011,"SourceStructureID":68444,"TargetStructureID":66888,"Label":"68444-66888 via Adherens from 68473 -> 68474","Type":"Adherens","Directional":false,"Links":[{"SourceID":68473,"TargetID":68474,"Directional":false}]},{"ID":5012,"SourceStructureID":82305,"TargetStructureID":66888,"Label":"82305-66888 via Adherens from 82321 -> 82322","Type":"Adherens","Directional":false,"Links":[{"SourceID":82321,"TargetID":82322,"Directional":false}]},{"ID":5013,"SourceStructureID":66910,"TargetStructureID":66905,"Label":"66910-66905 via Adherens from 66911 -> 66909","Type":"Adherens","Directional":false,"Links":[{"SourceID":66911,"TargetID":66909,"Directional":false}]},{"ID":5014,"SourceStructureID":66946,"TargetStructureID":68548,"Label":"66946-68548 via Adherens from 82893 -> 75710","Type":"Adherens","Directional":false,"Links":[{"SourceID":82893,"TargetID":75710,"Directional":false}]},{"ID":5015,"SourceStructureID":67736,"TargetStructureID":66958,"Label":"67736-66958 via Adherens from 67746 -> 70029","Type":"Adherens","Directional":false,"Links":[{"SourceID":67746,"TargetID":70029,"Directional":false}]},{"ID":5016,"SourceStructureID":68153,"TargetStructureID":66958,"Label":"68153-66958 via Adherens from 70147 -> 70148","Type":"Adherens","Directional":false,"Links":[{"SourceID":70147,"TargetID":70148,"Directional":false}]},{"ID":5017,"SourceStructureID":69908,"TargetStructureID":66958,"Label":"69908-66958 via Adherens from 69909 -> 69318","Type":"Adherens","Directional":false,"Links":[{"SourceID":69909,"TargetID":69318,"Directional":false}]},{"ID":5018,"SourceStructureID":66958,"TargetStructureID":70126,"Label":"66958-70126 via Adherens from 70128 -> 70127","Type":"Adherens","Directional":false,"Links":[{"SourceID":70128,"TargetID":70127,"Directional":false}]},{"ID":5019,"SourceStructureID":66958,"TargetStructureID":70134,"Label":"66958-70134 via Adherens from 70137 -> 70136","Type":"Adherens","Directional":false,"Links":[{"SourceID":70137,"TargetID":70136,"Directional":false}]},{"ID":5020,"SourceStructureID":67042,"TargetStructureID":76463,"Label":"67042-76463 via Adherens from 76462 -> 76464","Type":"Adherens","Directional":false,"Links":[{"SourceID":76462,"TargetID":76464,"Directional":false}]},{"ID":5021,"SourceStructureID":67756,"TargetStructureID":67045,"Label":"67756-67045 via Adherens from 75402 -> 68698","Type":"Adherens","Directional":false,"Links":[{"SourceID":75402,"TargetID":68698,"Directional":false}]},{"ID":5022,"SourceStructureID":67140,"TargetStructureID":67135,"Label":"67140-67135 via Adherens from 67141 -> 67139","Type":"Adherens","Directional":false,"Links":[{"SourceID":67141,"TargetID":67139,"Directional":false}]},{"ID":5023,"SourceStructureID":67190,"TargetStructureID":67585,"Label":"67190-67585 via Adherens from 67604 -> 67603","Type":"Adherens","Directional":false,"Links":[{"SourceID":67604,"TargetID":67603,"Directional":false}]},{"ID":5024,"SourceStructureID":67266,"TargetStructureID":79254,"Label":"67266-79254 via Adherens from 79253 -> 79255","Type":"Adherens","Directional":false,"Links":[{"SourceID":79253,"TargetID":79255,"Directional":false}]},{"ID":5025,"SourceStructureID":82806,"TargetStructureID":67305,"Label":"82806-67305 via Adherens from 82811 -> 82810","Type":"Adherens","Directional":false,"Links":[{"SourceID":82811,"TargetID":82810,"Directional":false}]},{"ID":5026,"SourceStructureID":67350,"TargetStructureID":67337,"Label":"67350-67337 via Gap Junction from 67351 -> 67349","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":67351,"TargetID":67349,"Directional":false}]},{"ID":5027,"SourceStructureID":84260,"TargetStructureID":67350,"Label":"84260-67350 via Adherens from 84263 -> 68320","Type":"Adherens","Directional":false,"Links":[{"SourceID":84263,"TargetID":68320,"Directional":false}]},{"ID":5028,"SourceStructureID":67372,"TargetStructureID":67364,"Label":"67372-67364 via Gap Junction from 67374 -> 67373","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":67374,"TargetID":67373,"Directional":false}]},{"ID":5029,"SourceStructureID":82717,"TargetStructureID":67460,"Label":"82717-67460 via Adherens from 82719 -> 82720","Type":"Adherens","Directional":false,"Links":[{"SourceID":82719,"TargetID":82720,"Directional":false}]},{"ID":5030,"SourceStructureID":67520,"TargetStructureID":67508,"Label":"67520-67508 via Adherens from 68919 -> 68918","Type":"Adherens","Directional":false,"Links":[{"SourceID":68919,"TargetID":68918,"Directional":false}]},{"ID":5031,"SourceStructureID":67666,"TargetStructureID":67663,"Label":"67666-67663 via Adherens from 67667 -> 67665","Type":"Adherens","Directional":false,"Links":[{"SourceID":67667,"TargetID":67665,"Directional":false}]},{"ID":5032,"SourceStructureID":68497,"TargetStructureID":67671,"Label":"68497-67671 via Adherens from 81581 -> 77356","Type":"Adherens","Directional":false,"Links":[{"SourceID":81581,"TargetID":77356,"Directional":false}]},{"ID":5033,"SourceStructureID":67671,"TargetStructureID":77375,"Label":"67671-77375 via Adherens from 77997 -> 77996","Type":"Adherens","Directional":false,"Links":[{"SourceID":77997,"TargetID":77996,"Directional":false}]},{"ID":5034,"SourceStructureID":67671,"TargetStructureID":77378,"Label":"67671-77378 via Adherens from 77999 -> 77998","Type":"Adherens","Directional":false,"Links":[{"SourceID":77999,"TargetID":77998,"Directional":false}]},{"ID":5035,"SourceStructureID":67671,"TargetStructureID":77682,"Label":"67671-77682 via Adherens from 78001 -> 78000","Type":"Adherens","Directional":false,"Links":[{"SourceID":78001,"TargetID":78000,"Directional":false}]},{"ID":5036,"SourceStructureID":77985,"TargetStructureID":67671,"Label":"77985-67671 via Adherens from 77986 -> 77987","Type":"Adherens","Directional":false,"Links":[{"SourceID":77986,"TargetID":77987,"Directional":false}]},{"ID":5037,"SourceStructureID":78005,"TargetStructureID":67671,"Label":"78005-67671 via Adherens from 78006 -> 78004","Type":"Adherens","Directional":false,"Links":[{"SourceID":78006,"TargetID":78004,"Directional":false}]},{"ID":5038,"SourceStructureID":67671,"TargetStructureID":78021,"Label":"67671-78021 via Adherens from 78020 -> 78022","Type":"Adherens","Directional":false,"Links":[{"SourceID":78020,"TargetID":78022,"Directional":false}]},{"ID":5039,"SourceStructureID":67671,"TargetStructureID":78023,"Label":"67671-78023 via Adherens from 78027 -> 78026","Type":"Adherens","Directional":false,"Links":[{"SourceID":78027,"TargetID":78026,"Directional":false}]},{"ID":5040,"SourceStructureID":67671,"TargetStructureID":78042,"Label":"67671-78042 via Adherens from 78041 -> 78044","Type":"Adherens","Directional":false,"Links":[{"SourceID":78041,"TargetID":78044,"Directional":false}]},{"ID":5041,"SourceStructureID":67671,"TargetStructureID":78045,"Label":"67671-78045 via Adherens from 78056 -> 78055","Type":"Adherens","Directional":false,"Links":[{"SourceID":78056,"TargetID":78055,"Directional":false}]},{"ID":5042,"SourceStructureID":67671,"TargetStructureID":78074,"Label":"67671-78074 via Adherens from 78073 -> 78076","Type":"Adherens","Directional":false,"Links":[{"SourceID":78073,"TargetID":78076,"Directional":false}]},{"ID":5043,"SourceStructureID":78080,"TargetStructureID":67671,"Label":"78080-67671 via Adherens from 78081 -> 78079","Type":"Adherens","Directional":false,"Links":[{"SourceID":78081,"TargetID":78079,"Directional":false}]},{"ID":5044,"SourceStructureID":67671,"TargetStructureID":78228,"Label":"67671-78228 via Adherens from 78407 -> 78408","Type":"Adherens","Directional":false,"Links":[{"SourceID":78407,"TargetID":78408,"Directional":false}]},{"ID":5045,"SourceStructureID":78415,"TargetStructureID":67671,"Label":"78415-67671 via Adherens from 78416 -> 78414","Type":"Adherens","Directional":false,"Links":[{"SourceID":78416,"TargetID":78414,"Directional":false}]},{"ID":5046,"SourceStructureID":67689,"TargetStructureID":68548,"Label":"67689-68548 via Adherens from 67691 -> 73570, 73571 -> 67691","Type":"Adherens","Directional":false,"Links":[{"SourceID":67691,"TargetID":73570,"Directional":false},{"SourceID":73571,"TargetID":67691,"Directional":false}]},{"ID":5047,"SourceStructureID":68486,"TargetStructureID":67756,"Label":"68486-67756 via Adherens from 79603 -> 79604","Type":"Adherens","Directional":false,"Links":[{"SourceID":79603,"TargetID":79604,"Directional":false}]},{"ID":5048,"SourceStructureID":67796,"TargetStructureID":67796,"Label":"67796-67796 via Adherens from 67798 -> 67799","Type":"Adherens","Directional":false,"Links":[{"SourceID":67798,"TargetID":67799,"Directional":false}]},{"ID":5049,"SourceStructureID":67874,"TargetStructureID":67871,"Label":"67874-67871 via Adherens from 67875 -> 67873","Type":"Adherens","Directional":false,"Links":[{"SourceID":67875,"TargetID":67873,"Directional":false}]},{"ID":5050,"SourceStructureID":67894,"TargetStructureID":68096,"Label":"67894-68096 via Adherens from 82234 -> 68108","Type":"Adherens","Directional":false,"Links":[{"SourceID":82234,"TargetID":68108,"Directional":false}]},{"ID":5051,"SourceStructureID":67952,"TargetStructureID":67947,"Label":"67952-67947 via Adherens from 68092 -> 68084","Type":"Adherens","Directional":false,"Links":[{"SourceID":68092,"TargetID":68084,"Directional":false}]},{"ID":5052,"SourceStructureID":68232,"TargetStructureID":68087,"Label":"68232-68087 via Adherens from 68236 -> 68237","Type":"Adherens","Directional":false,"Links":[{"SourceID":68236,"TargetID":68237,"Directional":false}]},{"ID":5053,"SourceStructureID":68093,"TargetStructureID":68153,"Label":"68093-68153 via Adherens from 68174 -> 68173","Type":"Adherens","Directional":false,"Links":[{"SourceID":68174,"TargetID":68173,"Directional":false}]},{"ID":5054,"SourceStructureID":68096,"TargetStructureID":68101,"Label":"68096-68101 via Gap Junction from 68103 -> 68102","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68103,"TargetID":68102,"Directional":false}]},{"ID":5055,"SourceStructureID":68153,"TargetStructureID":68161,"Label":"68153-68161 via Adherens from 68160 -> 68162, 68164 -> 68163","Type":"Adherens","Directional":false,"Links":[{"SourceID":68160,"TargetID":68162,"Directional":false},{"SourceID":68164,"TargetID":68163,"Directional":false}]},{"ID":5056,"SourceStructureID":68168,"TargetStructureID":68153,"Label":"68168-68153 via Adherens from 91164 -> 91163","Type":"Adherens","Directional":false,"Links":[{"SourceID":91164,"TargetID":91163,"Directional":false}]},{"ID":5057,"SourceStructureID":68180,"TargetStructureID":68153,"Label":"68180-68153 via Adherens from 68181 -> 68179","Type":"Adherens","Directional":false,"Links":[{"SourceID":68181,"TargetID":68179,"Directional":false}]},{"ID":5058,"SourceStructureID":68153,"TargetStructureID":70058,"Label":"68153-70058 via Adherens from 70056 -> 70059","Type":"Adherens","Directional":false,"Links":[{"SourceID":70056,"TargetID":70059,"Directional":false}]},{"ID":5059,"SourceStructureID":70149,"TargetStructureID":68153,"Label":"70149-68153 via Adherens from 70152 -> 70151","Type":"Adherens","Directional":false,"Links":[{"SourceID":70152,"TargetID":70151,"Directional":false}]},{"ID":5060,"SourceStructureID":68153,"TargetStructureID":70171,"Label":"68153-70171 via Adherens from 70168 -> 70174, 70169 -> 70173, 70170 -> 70172","Type":"Adherens","Directional":false,"Links":[{"SourceID":70168,"TargetID":70174,"Directional":false},{"SourceID":70169,"TargetID":70173,"Directional":false},{"SourceID":70170,"TargetID":70172,"Directional":false}]},{"ID":5061,"SourceStructureID":68153,"TargetStructureID":70176,"Label":"68153-70176 via Adherens from 70180 -> 70179","Type":"Adherens","Directional":false,"Links":[{"SourceID":70180,"TargetID":70179,"Directional":false}]},{"ID":5062,"SourceStructureID":88050,"TargetStructureID":68153,"Label":"88050-68153 via Adherens from 88051 -> 88048","Type":"Adherens","Directional":false,"Links":[{"SourceID":88051,"TargetID":88048,"Directional":false}]},{"ID":5063,"SourceStructureID":68238,"TargetStructureID":68239,"Label":"68238-68239 via Gap Junction from 68244 -> 68245","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68244,"TargetID":68245,"Directional":false}]},{"ID":5064,"SourceStructureID":68286,"TargetStructureID":80657,"Label":"68286-80657 via Adherens from 80659 -> 80660","Type":"Adherens","Directional":false,"Links":[{"SourceID":80659,"TargetID":80660,"Directional":false}]},{"ID":5065,"SourceStructureID":69162,"TargetStructureID":68289,"Label":"69162-68289 via Adherens from 80645 -> 80644","Type":"Adherens","Directional":false,"Links":[{"SourceID":80645,"TargetID":80644,"Directional":false}]},{"ID":5066,"SourceStructureID":68341,"TargetStructureID":79586,"Label":"68341-79586 via Adherens from 80626 -> 79597","Type":"Adherens","Directional":false,"Links":[{"SourceID":80626,"TargetID":79597,"Directional":false}]},{"ID":5067,"SourceStructureID":68444,"TargetStructureID":80459,"Label":"68444-80459 via Adherens from 80461 -> 80462","Type":"Adherens","Directional":false,"Links":[{"SourceID":80461,"TargetID":80462,"Directional":false}]},{"ID":5068,"SourceStructureID":80412,"TargetStructureID":68463,"Label":"80412-68463 via Adherens from 80413 -> 80411","Type":"Adherens","Directional":false,"Links":[{"SourceID":80413,"TargetID":80411,"Directional":false}]},{"ID":5069,"SourceStructureID":80419,"TargetStructureID":68463,"Label":"80419-68463 via Adherens from 80420 -> 80418","Type":"Adherens","Directional":false,"Links":[{"SourceID":80420,"TargetID":80418,"Directional":false}]},{"ID":5070,"SourceStructureID":68486,"TargetStructureID":68669,"Label":"68486-68669 via Adherens from 79610 -> 68674","Type":"Adherens","Directional":false,"Links":[{"SourceID":79610,"TargetID":68674,"Directional":false}]},{"ID":5071,"SourceStructureID":79370,"TargetStructureID":68497,"Label":"79370-68497 via Adherens from 81602 -> 81603","Type":"Adherens","Directional":false,"Links":[{"SourceID":81602,"TargetID":81603,"Directional":false}]},{"ID":5072,"SourceStructureID":79474,"TargetStructureID":68497,"Label":"79474-68497 via Adherens from 79475 -> 79473","Type":"Adherens","Directional":false,"Links":[{"SourceID":79475,"TargetID":79473,"Directional":false}]},{"ID":5073,"SourceStructureID":68497,"TargetStructureID":79487,"Label":"68497-79487 via Gap Junction from 79488 -> 79489","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":79488,"TargetID":79489,"Directional":false}]},{"ID":5074,"SourceStructureID":68539,"TargetStructureID":68569,"Label":"68539-68569 via Adherens from 68568 -> 68570","Type":"Adherens","Directional":false,"Links":[{"SourceID":68568,"TargetID":68570,"Directional":false}]},{"ID":5075,"SourceStructureID":69162,"TargetStructureID":68539,"Label":"69162-68539 via Adherens from 69163 -> 69131, 69164 -> 69132","Type":"Adherens","Directional":false,"Links":[{"SourceID":69163,"TargetID":69131,"Directional":false},{"SourceID":69164,"TargetID":69132,"Directional":false}]},{"ID":5076,"SourceStructureID":68539,"TargetStructureID":70267,"Label":"68539-70267 via Adherens from 70269 -> 70268","Type":"Adherens","Directional":false,"Links":[{"SourceID":70269,"TargetID":70268,"Directional":false}]},{"ID":5077,"SourceStructureID":68539,"TargetStructureID":70302,"Label":"68539-70302 via Adherens from 70306 -> 70305","Type":"Adherens","Directional":false,"Links":[{"SourceID":70306,"TargetID":70305,"Directional":false}]},{"ID":5078,"SourceStructureID":68539,"TargetStructureID":70422,"Label":"68539-70422 via Adherens from 76038 -> 70423","Type":"Adherens","Directional":false,"Links":[{"SourceID":76038,"TargetID":70423,"Directional":false}]},{"ID":5079,"SourceStructureID":68539,"TargetStructureID":73314,"Label":"68539-73314 via Adherens from 73321 -> 73320","Type":"Adherens","Directional":false,"Links":[{"SourceID":73321,"TargetID":73320,"Directional":false}]},{"ID":5080,"SourceStructureID":68539,"TargetStructureID":73322,"Label":"68539-73322 via Adherens from 73331 -> 73330","Type":"Adherens","Directional":false,"Links":[{"SourceID":73331,"TargetID":73330,"Directional":false}]},{"ID":5081,"SourceStructureID":68539,"TargetStructureID":73350,"Label":"68539-73350 via Adherens from 73591 -> 73592","Type":"Adherens","Directional":false,"Links":[{"SourceID":73591,"TargetID":73592,"Directional":false}]},{"ID":5082,"SourceStructureID":73380,"TargetStructureID":68539,"Label":"73380-68539 via Unknown from 73381 -> 73382","Type":"Unknown","Directional":false,"Links":[{"SourceID":73381,"TargetID":73382,"Directional":false}]},{"ID":5083,"SourceStructureID":73390,"TargetStructureID":68539,"Label":"73390-68539 via Adherens from 73392 -> 73393","Type":"Adherens","Directional":false,"Links":[{"SourceID":73392,"TargetID":73393,"Directional":false}]},{"ID":5084,"SourceStructureID":73593,"TargetStructureID":68539,"Label":"73593-68539 via Unknown from 73596 -> 73352","Type":"Unknown","Directional":false,"Links":[{"SourceID":73596,"TargetID":73352,"Directional":false}]},{"ID":5085,"SourceStructureID":73594,"TargetStructureID":68539,"Label":"73594-68539 via Unknown from 73595 -> 73352","Type":"Unknown","Directional":false,"Links":[{"SourceID":73595,"TargetID":73352,"Directional":false}]},{"ID":5086,"SourceStructureID":73621,"TargetStructureID":68539,"Label":"73621-68539 via Adherens from 73624 -> 73623","Type":"Adherens","Directional":false,"Links":[{"SourceID":73624,"TargetID":73623,"Directional":false}]},{"ID":5087,"SourceStructureID":73644,"TargetStructureID":68539,"Label":"73644-68539 via Adherens from 73645 -> 73643","Type":"Adherens","Directional":false,"Links":[{"SourceID":73645,"TargetID":73643,"Directional":false}]},{"ID":5088,"SourceStructureID":73690,"TargetStructureID":68539,"Label":"73690-68539 via Adherens from 73697 -> 73696","Type":"Adherens","Directional":false,"Links":[{"SourceID":73697,"TargetID":73696,"Directional":false}]},{"ID":5089,"SourceStructureID":68539,"TargetStructureID":74237,"Label":"68539-74237 via Adherens from 74250 -> 74249","Type":"Adherens","Directional":false,"Links":[{"SourceID":74250,"TargetID":74249,"Directional":false}]},{"ID":5090,"SourceStructureID":74548,"TargetStructureID":68539,"Label":"74548-68539 via Adherens from 74553 -> 74554","Type":"Adherens","Directional":false,"Links":[{"SourceID":74553,"TargetID":74554,"Directional":false}]},{"ID":5091,"SourceStructureID":68539,"TargetStructureID":74576,"Label":"68539-74576 via Adherens from 74581 -> 74582","Type":"Adherens","Directional":false,"Links":[{"SourceID":74581,"TargetID":74582,"Directional":false}]},{"ID":5092,"SourceStructureID":68539,"TargetStructureID":74624,"Label":"68539-74624 via Adherens from 74632 -> 74631","Type":"Adherens","Directional":false,"Links":[{"SourceID":74632,"TargetID":74631,"Directional":false}]},{"ID":5093,"SourceStructureID":74645,"TargetStructureID":68539,"Label":"74645-68539 via Adherens from 74652 -> 74651","Type":"Adherens","Directional":false,"Links":[{"SourceID":74652,"TargetID":74651,"Directional":false}]},{"ID":5094,"SourceStructureID":74667,"TargetStructureID":68539,"Label":"74667-68539 via Adherens from 74668 -> 74669","Type":"Adherens","Directional":false,"Links":[{"SourceID":74668,"TargetID":74669,"Directional":false}]},{"ID":5095,"SourceStructureID":68539,"TargetStructureID":74902,"Label":"68539-74902 via Unknown from 75769 -> 75770","Type":"Unknown","Directional":false,"Links":[{"SourceID":75769,"TargetID":75770,"Directional":false}]},{"ID":5096,"SourceStructureID":75816,"TargetStructureID":68539,"Label":"75816-68539 via Adherens from 75818 -> 75817","Type":"Adherens","Directional":false,"Links":[{"SourceID":75818,"TargetID":75817,"Directional":false}]},{"ID":5097,"SourceStructureID":75825,"TargetStructureID":68539,"Label":"75825-68539 via Adherens from 75829 -> 75828","Type":"Adherens","Directional":false,"Links":[{"SourceID":75829,"TargetID":75828,"Directional":false}]},{"ID":5098,"SourceStructureID":76039,"TargetStructureID":68539,"Label":"76039-68539 via Adherens from 76044 -> 76045, 76046 -> 76047, 76048 -> 76049, 76050 -> 76051, 76053 -> 76054","Type":"Adherens","Directional":false,"Links":[{"SourceID":76044,"TargetID":76045,"Directional":false},{"SourceID":76046,"TargetID":76047,"Directional":false},{"SourceID":76048,"TargetID":76049,"Directional":false},{"SourceID":76050,"TargetID":76051,"Directional":false},{"SourceID":76053,"TargetID":76054,"Directional":false}]},{"ID":5099,"SourceStructureID":76103,"TargetStructureID":68539,"Label":"76103-68539 via Adherens from 76104 -> 76102","Type":"Adherens","Directional":false,"Links":[{"SourceID":76104,"TargetID":76102,"Directional":false}]},{"ID":5100,"SourceStructureID":68548,"TargetStructureID":73528,"Label":"68548-73528 via Adherens from 75727 -> 75726","Type":"Adherens","Directional":false,"Links":[{"SourceID":75727,"TargetID":75726,"Directional":false}]},{"ID":5101,"SourceStructureID":68548,"TargetStructureID":74902,"Label":"68548-74902 via Adherens from 76191 -> 76192","Type":"Adherens","Directional":false,"Links":[{"SourceID":76191,"TargetID":76192,"Directional":false}]},{"ID":5102,"SourceStructureID":68548,"TargetStructureID":75359,"Label":"68548-75359 via Adherens from 75715 -> 75716","Type":"Adherens","Directional":false,"Links":[{"SourceID":75715,"TargetID":75716,"Directional":false}]},{"ID":5103,"SourceStructureID":68548,"TargetStructureID":75367,"Label":"68548-75367 via Adherens from 75366 -> 75368","Type":"Adherens","Directional":false,"Links":[{"SourceID":75366,"TargetID":75368,"Directional":false}]},{"ID":5104,"SourceStructureID":75678,"TargetStructureID":68548,"Label":"75678-68548 via Adherens from 75680 -> 75681","Type":"Adherens","Directional":false,"Links":[{"SourceID":75680,"TargetID":75681,"Directional":false}]},{"ID":5105,"SourceStructureID":68548,"TargetStructureID":75689,"Label":"68548-75689 via Adherens from 75691 -> 75690","Type":"Adherens","Directional":false,"Links":[{"SourceID":75691,"TargetID":75690,"Directional":false}]},{"ID":5106,"SourceStructureID":75695,"TargetStructureID":68548,"Label":"75695-68548 via Adherens from 75698 -> 75697","Type":"Adherens","Directional":false,"Links":[{"SourceID":75698,"TargetID":75697,"Directional":false}]},{"ID":5107,"SourceStructureID":68548,"TargetStructureID":75700,"Label":"68548-75700 via Adherens from 75706 -> 75707","Type":"Adherens","Directional":false,"Links":[{"SourceID":75706,"TargetID":75707,"Directional":false}]},{"ID":5108,"SourceStructureID":68548,"TargetStructureID":75728,"Label":"68548-75728 via Adherens from 75732 -> 75731","Type":"Adherens","Directional":false,"Links":[{"SourceID":75732,"TargetID":75731,"Directional":false}]},{"ID":5109,"SourceStructureID":75739,"TargetStructureID":68548,"Label":"75739-68548 via Adherens from 75747 -> 75748","Type":"Adherens","Directional":false,"Links":[{"SourceID":75747,"TargetID":75748,"Directional":false}]},{"ID":5110,"SourceStructureID":75761,"TargetStructureID":68548,"Label":"75761-68548 via Adherens from 75762 -> 75763","Type":"Adherens","Directional":false,"Links":[{"SourceID":75762,"TargetID":75763,"Directional":false}]},{"ID":5111,"SourceStructureID":68548,"TargetStructureID":75764,"Label":"68548-75764 via Adherens from 75763 -> 75765","Type":"Adherens","Directional":false,"Links":[{"SourceID":75763,"TargetID":75765,"Directional":false}]},{"ID":5112,"SourceStructureID":92926,"TargetStructureID":68548,"Label":"92926-68548 via Adherens from 75687 -> 75688","Type":"Adherens","Directional":false,"Links":[{"SourceID":75687,"TargetID":75688,"Directional":false}]},{"ID":5113,"SourceStructureID":68691,"TargetStructureID":68686,"Label":"68691-68686 via Gap Junction from 68692 -> 68690","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":68692,"TargetID":68690,"Directional":false}]},{"ID":5114,"SourceStructureID":68707,"TargetStructureID":68705,"Label":"68707-68705 via Adherens from 68709 -> 68708, 68711 -> 68710","Type":"Adherens","Directional":false,"Links":[{"SourceID":68709,"TargetID":68708,"Directional":false},{"SourceID":68711,"TargetID":68710,"Directional":false}]},{"ID":5115,"SourceStructureID":69030,"TargetStructureID":69030,"Label":"69030-69030 via Adherens from 110297 -> 110293","Type":"Adherens","Directional":false,"Links":[{"SourceID":110297,"TargetID":110293,"Directional":false}]},{"ID":5116,"SourceStructureID":69030,"TargetStructureID":87345,"Label":"69030-87345 via Adherens from 87353 -> 87354","Type":"Adherens","Directional":false,"Links":[{"SourceID":87353,"TargetID":87354,"Directional":false}]},{"ID":5117,"SourceStructureID":78262,"TargetStructureID":69049,"Label":"78262-69049 via Adherens from 82556 -> 82557","Type":"Adherens","Directional":false,"Links":[{"SourceID":82556,"TargetID":82557,"Directional":false}]},{"ID":5118,"SourceStructureID":69363,"TargetStructureID":72384,"Label":"69363-72384 via Adherens from 78707 -> 78708","Type":"Adherens","Directional":false,"Links":[{"SourceID":78707,"TargetID":78708,"Directional":false}]},{"ID":5119,"SourceStructureID":72975,"TargetStructureID":69385,"Label":"72975-69385 via Adherens from 72979 -> 72978, 72984 -> 72983","Type":"Adherens","Directional":false,"Links":[{"SourceID":72979,"TargetID":72978,"Directional":false},{"SourceID":72984,"TargetID":72983,"Directional":false}]},{"ID":5120,"SourceStructureID":72975,"TargetStructureID":69385,"Label":"72975-69385 via Gap Junction from 72982 -> 72981","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":72982,"TargetID":72981,"Directional":false}]},{"ID":5121,"SourceStructureID":70050,"TargetStructureID":70046,"Label":"70050-70046 via Adherens from 70051 -> 70049","Type":"Adherens","Directional":false,"Links":[{"SourceID":70051,"TargetID":70049,"Directional":false}]},{"ID":5122,"SourceStructureID":70418,"TargetStructureID":70415,"Label":"70418-70415 via Adherens from 70419 -> 70417","Type":"Adherens","Directional":false,"Links":[{"SourceID":70419,"TargetID":70417,"Directional":false}]},{"ID":5123,"SourceStructureID":70454,"TargetStructureID":89554,"Label":"70454-89554 via Adherens from 89557 -> 89556","Type":"Adherens","Directional":false,"Links":[{"SourceID":89557,"TargetID":89556,"Directional":false}]},{"ID":5124,"SourceStructureID":89120,"TargetStructureID":70500,"Label":"89120-70500 via Gap Junction from 89145 -> 89115, 122404 -> 122410, 122409 -> 122408, 122411 -> 122405","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89145,"TargetID":89115,"Directional":false},{"SourceID":122404,"TargetID":122410,"Directional":false},{"SourceID":122409,"TargetID":122408,"Directional":false},{"SourceID":122411,"TargetID":122405,"Directional":false}]},{"ID":5125,"SourceStructureID":70659,"TargetStructureID":70655,"Label":"70659-70655 via Adherens from 70661 -> 70662","Type":"Adherens","Directional":false,"Links":[{"SourceID":70661,"TargetID":70662,"Directional":false}]},{"ID":5126,"SourceStructureID":70684,"TargetStructureID":70712,"Label":"70684-70712 via Adherens from 70715 -> 70714","Type":"Adherens","Directional":false,"Links":[{"SourceID":70715,"TargetID":70714,"Directional":false}]},{"ID":5127,"SourceStructureID":70684,"TargetStructureID":70712,"Label":"70684-70712 via Gap Junction from 70719 -> 70718","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":70719,"TargetID":70718,"Directional":false}]},{"ID":5128,"SourceStructureID":70743,"TargetStructureID":70745,"Label":"70743-70745 via Adherens from 70754 -> 70753","Type":"Adherens","Directional":false,"Links":[{"SourceID":70754,"TargetID":70753,"Directional":false}]},{"ID":5129,"SourceStructureID":70789,"TargetStructureID":70795,"Label":"70789-70795 via Adherens from 70794 -> 70797","Type":"Adherens","Directional":false,"Links":[{"SourceID":70794,"TargetID":70797,"Directional":false}]},{"ID":5130,"SourceStructureID":70987,"TargetStructureID":70924,"Label":"70987-70924 via Adherens from 70988 -> 70929, 71002 -> 71000, 71030 -> 71029, 71039 -> 71040","Type":"Adherens","Directional":false,"Links":[{"SourceID":70988,"TargetID":70929,"Directional":false},{"SourceID":71002,"TargetID":71000,"Directional":false},{"SourceID":71030,"TargetID":71029,"Directional":false},{"SourceID":71039,"TargetID":71040,"Directional":false}]},{"ID":5131,"SourceStructureID":71118,"TargetStructureID":71063,"Label":"71118-71063 via Gap Junction from 71120 -> 71078","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71120,"TargetID":71078,"Directional":false}]},{"ID":5132,"SourceStructureID":71538,"TargetStructureID":71517,"Label":"71538-71517 via Adherens from 74950 -> 74949","Type":"Adherens","Directional":false,"Links":[{"SourceID":74950,"TargetID":74949,"Directional":false}]},{"ID":5133,"SourceStructureID":71517,"TargetStructureID":71545,"Label":"71517-71545 via Adherens from 72119 -> 72120","Type":"Adherens","Directional":false,"Links":[{"SourceID":72119,"TargetID":72120,"Directional":false}]},{"ID":5134,"SourceStructureID":74388,"TargetStructureID":71517,"Label":"74388-71517 via Adherens from 75011 -> 75010","Type":"Adherens","Directional":false,"Links":[{"SourceID":75011,"TargetID":75010,"Directional":false}]},{"ID":5135,"SourceStructureID":71517,"TargetStructureID":74931,"Label":"71517-74931 via Adherens from 74932 -> 74933","Type":"Adherens","Directional":false,"Links":[{"SourceID":74932,"TargetID":74933,"Directional":false}]},{"ID":5136,"SourceStructureID":74952,"TargetStructureID":71517,"Label":"74952-71517 via Gap Junction from 74954 -> 74953","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":74954,"TargetID":74953,"Directional":false}]},{"ID":5137,"SourceStructureID":74969,"TargetStructureID":71517,"Label":"74969-71517 via Adherens from 74975 -> 74976","Type":"Adherens","Directional":false,"Links":[{"SourceID":74975,"TargetID":74976,"Directional":false}]},{"ID":5138,"SourceStructureID":75052,"TargetStructureID":71517,"Label":"75052-71517 via Adherens from 75054 -> 75053","Type":"Adherens","Directional":false,"Links":[{"SourceID":75054,"TargetID":75053,"Directional":false}]},{"ID":5139,"SourceStructureID":71671,"TargetStructureID":71715,"Label":"71671-71715 via Adherens from 71718 -> 71719, 71727 -> 71728","Type":"Adherens","Directional":false,"Links":[{"SourceID":71718,"TargetID":71719,"Directional":false},{"SourceID":71727,"TargetID":71728,"Directional":false}]},{"ID":5140,"SourceStructureID":71771,"TargetStructureID":71781,"Label":"71771-71781 via Adherens from 71813 -> 71814","Type":"Adherens","Directional":false,"Links":[{"SourceID":71813,"TargetID":71814,"Directional":false}]},{"ID":5141,"SourceStructureID":90324,"TargetStructureID":71882,"Label":"90324-71882 via Adherens from 90325 -> 90323","Type":"Adherens","Directional":false,"Links":[{"SourceID":90325,"TargetID":90323,"Directional":false}]},{"ID":5142,"SourceStructureID":90334,"TargetStructureID":71882,"Label":"90334-71882 via Adherens from 90337 -> 90333","Type":"Adherens","Directional":false,"Links":[{"SourceID":90337,"TargetID":90333,"Directional":false}]},{"ID":5143,"SourceStructureID":90334,"TargetStructureID":71882,"Label":"90334-71882 via Gap Junction from 90336 -> 90335","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90336,"TargetID":90335,"Directional":false}]},{"ID":5144,"SourceStructureID":90376,"TargetStructureID":71882,"Label":"90376-71882 via Adherens from 90380 -> 90379","Type":"Adherens","Directional":false,"Links":[{"SourceID":90380,"TargetID":90379,"Directional":false}]},{"ID":5145,"SourceStructureID":90376,"TargetStructureID":71882,"Label":"90376-71882 via Gap Junction from 90378 -> 90374","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90378,"TargetID":90374,"Directional":false}]},{"ID":5146,"SourceStructureID":90389,"TargetStructureID":71882,"Label":"90389-71882 via Unknown from 90391 -> 90388","Type":"Unknown","Directional":false,"Links":[{"SourceID":90391,"TargetID":90388,"Directional":false}]},{"ID":5147,"SourceStructureID":90446,"TargetStructureID":71882,"Label":"90446-71882 via Adherens from 90447 -> 90445","Type":"Adherens","Directional":false,"Links":[{"SourceID":90447,"TargetID":90445,"Directional":false}]},{"ID":5148,"SourceStructureID":90446,"TargetStructureID":71882,"Label":"90446-71882 via Gap Junction from 90448 -> 90444","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90448,"TargetID":90444,"Directional":false}]},{"ID":5149,"SourceStructureID":71954,"TargetStructureID":71953,"Label":"71954-71953 via Gap Junction from 71956 -> 71955","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":71956,"TargetID":71955,"Directional":false}]},{"ID":5150,"SourceStructureID":72168,"TargetStructureID":82961,"Label":"72168-82961 via Adherens from 82960 -> 82962, 82967 -> 82968","Type":"Adherens","Directional":false,"Links":[{"SourceID":82960,"TargetID":82962,"Directional":false},{"SourceID":82967,"TargetID":82968,"Directional":false}]},{"ID":5151,"SourceStructureID":72994,"TargetStructureID":72989,"Label":"72994-72989 via Adherens from 72999 -> 73000","Type":"Adherens","Directional":false,"Links":[{"SourceID":72999,"TargetID":73000,"Directional":false}]},{"ID":5152,"SourceStructureID":75752,"TargetStructureID":73025,"Label":"75752-73025 via Adherens from 75756 -> 75757","Type":"Adherens","Directional":false,"Links":[{"SourceID":75756,"TargetID":75757,"Directional":false}]},{"ID":5153,"SourceStructureID":73394,"TargetStructureID":73397,"Label":"73394-73397 via Adherens from 73401 -> 73402","Type":"Adherens","Directional":false,"Links":[{"SourceID":73401,"TargetID":73402,"Directional":false}]},{"ID":5154,"SourceStructureID":73465,"TargetStructureID":73460,"Label":"73465-73460 via Adherens from 73471 -> 73470","Type":"Adherens","Directional":false,"Links":[{"SourceID":73471,"TargetID":73470,"Directional":false}]},{"ID":5155,"SourceStructureID":73594,"TargetStructureID":73593,"Label":"73594-73593 via Unknown from 73595 -> 73596","Type":"Unknown","Directional":false,"Links":[{"SourceID":73595,"TargetID":73596,"Directional":false}]},{"ID":5156,"SourceStructureID":73655,"TargetStructureID":73658,"Label":"73655-73658 via Adherens from 73657 -> 73660","Type":"Adherens","Directional":false,"Links":[{"SourceID":73657,"TargetID":73660,"Directional":false}]},{"ID":5157,"SourceStructureID":73665,"TargetStructureID":73662,"Label":"73665-73662 via Adherens from 73666 -> 73664","Type":"Adherens","Directional":false,"Links":[{"SourceID":73666,"TargetID":73664,"Directional":false}]},{"ID":5158,"SourceStructureID":73681,"TargetStructureID":73676,"Label":"73681-73676 via Adherens from 73682 -> 73680","Type":"Adherens","Directional":false,"Links":[{"SourceID":73682,"TargetID":73680,"Directional":false}]},{"ID":5159,"SourceStructureID":74069,"TargetStructureID":74069,"Label":"74069-74069 via Unknown from 74070 -> 74072","Type":"Unknown","Directional":false,"Links":[{"SourceID":74070,"TargetID":74072,"Directional":false}]},{"ID":5160,"SourceStructureID":74238,"TargetStructureID":74237,"Label":"74238-74237 via Adherens from 74263 -> 74262","Type":"Adherens","Directional":false,"Links":[{"SourceID":74263,"TargetID":74262,"Directional":false}]},{"ID":5161,"SourceStructureID":74238,"TargetStructureID":74240,"Label":"74238-74240 via Adherens from 74260 -> 74261","Type":"Adherens","Directional":false,"Links":[{"SourceID":74260,"TargetID":74261,"Directional":false}]},{"ID":5162,"SourceStructureID":74292,"TargetStructureID":74282,"Label":"74292-74282 via Adherens from 74293 -> 74294","Type":"Adherens","Directional":false,"Links":[{"SourceID":74293,"TargetID":74294,"Directional":false}]},{"ID":5163,"SourceStructureID":75130,"TargetStructureID":74321,"Label":"75130-74321 via Gap Junction from 121969 -> 121970","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":121969,"TargetID":121970,"Directional":false}]},{"ID":5164,"SourceStructureID":74601,"TargetStructureID":74590,"Label":"74601-74590 via Adherens from 74602 -> 74600","Type":"Adherens","Directional":false,"Links":[{"SourceID":74602,"TargetID":74600,"Directional":false}]},{"ID":5165,"SourceStructureID":74610,"TargetStructureID":74614,"Label":"74610-74614 via Adherens from 74615 -> 74616","Type":"Adherens","Directional":false,"Links":[{"SourceID":74615,"TargetID":74616,"Directional":false}]},{"ID":5166,"SourceStructureID":74907,"TargetStructureID":83698,"Label":"74907-83698 via Adherens from 83741 -> 83742","Type":"Adherens","Directional":false,"Links":[{"SourceID":83741,"TargetID":83742,"Directional":false}]},{"ID":5167,"SourceStructureID":74907,"TargetStructureID":83749,"Label":"74907-83749 via Unknown from 83755 -> 83756","Type":"Unknown","Directional":false,"Links":[{"SourceID":83755,"TargetID":83756,"Directional":false}]},{"ID":5168,"SourceStructureID":74907,"TargetStructureID":83757,"Label":"74907-83757 via Adherens from 84614 -> 84615","Type":"Adherens","Directional":false,"Links":[{"SourceID":84614,"TargetID":84615,"Directional":false}]},{"ID":5169,"SourceStructureID":74907,"TargetStructureID":83757,"Label":"74907-83757 via Unknown from 84617 -> 84618","Type":"Unknown","Directional":false,"Links":[{"SourceID":84617,"TargetID":84618,"Directional":false}]},{"ID":5170,"SourceStructureID":74907,"TargetStructureID":83790,"Label":"74907-83790 via Adherens from 83794 -> 83795","Type":"Adherens","Directional":false,"Links":[{"SourceID":83794,"TargetID":83795,"Directional":false}]},{"ID":5171,"SourceStructureID":74907,"TargetStructureID":83790,"Label":"74907-83790 via Gap Junction from 115439 -> 115440","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":115439,"TargetID":115440,"Directional":false}]},{"ID":5172,"SourceStructureID":83834,"TargetStructureID":74907,"Label":"83834-74907 via Unknown from 83836 -> 83835","Type":"Unknown","Directional":false,"Links":[{"SourceID":83836,"TargetID":83835,"Directional":false}]},{"ID":5173,"SourceStructureID":74907,"TargetStructureID":83845,"Label":"74907-83845 via Unknown from 83847 -> 83848","Type":"Unknown","Directional":false,"Links":[{"SourceID":83847,"TargetID":83848,"Directional":false}]},{"ID":5174,"SourceStructureID":74907,"TargetStructureID":83894,"Label":"74907-83894 via Adherens from 84448 -> 84447","Type":"Adherens","Directional":false,"Links":[{"SourceID":84448,"TargetID":84447,"Directional":false}]},{"ID":5175,"SourceStructureID":83894,"TargetStructureID":74907,"Label":"83894-74907 via Unknown from 84476 -> 84475","Type":"Unknown","Directional":false,"Links":[{"SourceID":84476,"TargetID":84475,"Directional":false}]},{"ID":5176,"SourceStructureID":74907,"TargetStructureID":83898,"Label":"74907-83898 via Unknown from 84452 -> 84453","Type":"Unknown","Directional":false,"Links":[{"SourceID":84452,"TargetID":84453,"Directional":false}]},{"ID":5177,"SourceStructureID":74907,"TargetStructureID":83911,"Label":"74907-83911 via Unknown from 84468 -> 84469","Type":"Unknown","Directional":false,"Links":[{"SourceID":84468,"TargetID":84469,"Directional":false}]},{"ID":5178,"SourceStructureID":74907,"TargetStructureID":84280,"Label":"74907-84280 via Unknown from 84470 -> 84471","Type":"Unknown","Directional":false,"Links":[{"SourceID":84470,"TargetID":84471,"Directional":false}]},{"ID":5179,"SourceStructureID":84294,"TargetStructureID":74907,"Label":"84294-74907 via Adherens from 84479 -> 84480","Type":"Adherens","Directional":false,"Links":[{"SourceID":84479,"TargetID":84480,"Directional":false}]},{"ID":5180,"SourceStructureID":74907,"TargetStructureID":84308,"Label":"74907-84308 via Adherens from 84315 -> 84314","Type":"Adherens","Directional":false,"Links":[{"SourceID":84315,"TargetID":84314,"Directional":false}]},{"ID":5181,"SourceStructureID":74907,"TargetStructureID":84308,"Label":"74907-84308 via Gap Junction from 84312 -> 84313","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84312,"TargetID":84313,"Directional":false}]},{"ID":5182,"SourceStructureID":74907,"TargetStructureID":84316,"Label":"74907-84316 via Gap Junction from 84319 -> 84320, 84333 -> 84332","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":84319,"TargetID":84320,"Directional":false},{"SourceID":84333,"TargetID":84332,"Directional":false}]},{"ID":5183,"SourceStructureID":74907,"TargetStructureID":84316,"Label":"74907-84316 via Unknown from 84326 -> 84327","Type":"Unknown","Directional":false,"Links":[{"SourceID":84326,"TargetID":84327,"Directional":false}]},{"ID":5184,"SourceStructureID":74907,"TargetStructureID":84449,"Label":"74907-84449 via Unknown from 84454 -> 84455","Type":"Unknown","Directional":false,"Links":[{"SourceID":84454,"TargetID":84455,"Directional":false}]},{"ID":5185,"SourceStructureID":74907,"TargetStructureID":84514,"Label":"74907-84514 via Unknown from 84595 -> 84594","Type":"Unknown","Directional":false,"Links":[{"SourceID":84595,"TargetID":84594,"Directional":false}]},{"ID":5186,"SourceStructureID":74907,"TargetStructureID":84570,"Label":"74907-84570 via Unknown from 84474 -> 84571","Type":"Unknown","Directional":false,"Links":[{"SourceID":84474,"TargetID":84571,"Directional":false}]},{"ID":5187,"SourceStructureID":74907,"TargetStructureID":84586,"Label":"74907-84586 via Unknown from 84772 -> 84608","Type":"Unknown","Directional":false,"Links":[{"SourceID":84772,"TargetID":84608,"Directional":false}]},{"ID":5188,"SourceStructureID":74907,"TargetStructureID":84621,"Label":"74907-84621 via Unknown from 84628 -> 84629","Type":"Unknown","Directional":false,"Links":[{"SourceID":84628,"TargetID":84629,"Directional":false}]},{"ID":5189,"SourceStructureID":74907,"TargetStructureID":84636,"Label":"74907-84636 via Unknown from 83816 -> 84736","Type":"Unknown","Directional":false,"Links":[{"SourceID":83816,"TargetID":84736,"Directional":false}]},{"ID":5190,"SourceStructureID":84831,"TargetStructureID":74907,"Label":"84831-74907 via Unknown from 84835 -> 84834","Type":"Unknown","Directional":false,"Links":[{"SourceID":84835,"TargetID":84834,"Directional":false}]},{"ID":5191,"SourceStructureID":75021,"TargetStructureID":75028,"Label":"75021-75028 via Adherens from 75029 -> 75030","Type":"Adherens","Directional":false,"Links":[{"SourceID":75029,"TargetID":75030,"Directional":false}]},{"ID":5192,"SourceStructureID":75073,"TargetStructureID":81153,"Label":"75073-81153 via Adherens from 82231 -> 82232","Type":"Adherens","Directional":false,"Links":[{"SourceID":82231,"TargetID":82232,"Directional":false}]},{"ID":5193,"SourceStructureID":75130,"TargetStructureID":77677,"Label":"75130-77677 via Adherens from 77687 -> 77685","Type":"Adherens","Directional":false,"Links":[{"SourceID":77687,"TargetID":77685,"Directional":false}]},{"ID":5194,"SourceStructureID":75395,"TargetStructureID":75400,"Label":"75395-75400 via Adherens from 82527 -> 82528","Type":"Adherens","Directional":false,"Links":[{"SourceID":82527,"TargetID":82528,"Directional":false}]},{"ID":5195,"SourceStructureID":75622,"TargetStructureID":75621,"Label":"75622-75621 via Gap Junction from 75624 -> 75623","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":75624,"TargetID":75623,"Directional":false}]},{"ID":5196,"SourceStructureID":75742,"TargetStructureID":75739,"Label":"75742-75739 via Adherens from 75743 -> 75740","Type":"Adherens","Directional":false,"Links":[{"SourceID":75743,"TargetID":75740,"Directional":false}]},{"ID":5197,"SourceStructureID":75764,"TargetStructureID":75761,"Label":"75764-75761 via Adherens from 75765 -> 75762","Type":"Adherens","Directional":false,"Links":[{"SourceID":75765,"TargetID":75762,"Directional":false}]},{"ID":5198,"SourceStructureID":76877,"TargetStructureID":76595,"Label":"76877-76595 via Adherens from 76879 -> 76876","Type":"Adherens","Directional":false,"Links":[{"SourceID":76879,"TargetID":76876,"Directional":false}]},{"ID":5199,"SourceStructureID":76867,"TargetStructureID":76752,"Label":"76867-76752 via Unknown from 82575 -> 82576","Type":"Unknown","Directional":false,"Links":[{"SourceID":82575,"TargetID":82576,"Directional":false}]},{"ID":5200,"SourceStructureID":76829,"TargetStructureID":76827,"Label":"76829-76827 via Adherens from 76830 -> 76828","Type":"Adherens","Directional":false,"Links":[{"SourceID":76830,"TargetID":76828,"Directional":false}]},{"ID":5201,"SourceStructureID":76829,"TargetStructureID":76832,"Label":"76829-76832 via Adherens from 76839 -> 76840","Type":"Adherens","Directional":false,"Links":[{"SourceID":76839,"TargetID":76840,"Directional":false}]},{"ID":5202,"SourceStructureID":76832,"TargetStructureID":76829,"Label":"76832-76829 via Gap Junction from 76833 -> 76831","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":76833,"TargetID":76831,"Directional":false}]},{"ID":5203,"SourceStructureID":82677,"TargetStructureID":77403,"Label":"82677-77403 via Adherens from 83672 -> 83673","Type":"Adherens","Directional":false,"Links":[{"SourceID":83672,"TargetID":83673,"Directional":false}]},{"ID":5204,"SourceStructureID":78367,"TargetStructureID":78367,"Label":"78367-78367 via Unknown from 78368 -> 78369","Type":"Unknown","Directional":false,"Links":[{"SourceID":78368,"TargetID":78369,"Directional":false}]},{"ID":5205,"SourceStructureID":78423,"TargetStructureID":78710,"Label":"78423-78710 via Adherens from 78712 -> 78711","Type":"Adherens","Directional":false,"Links":[{"SourceID":78712,"TargetID":78711,"Directional":false}]},{"ID":5206,"SourceStructureID":78761,"TargetStructureID":78709,"Label":"78761-78709 via Adherens from 78764 -> 78763","Type":"Adherens","Directional":false,"Links":[{"SourceID":78764,"TargetID":78763,"Directional":false}]},{"ID":5207,"SourceStructureID":87545,"TargetStructureID":78909,"Label":"87545-78909 via Adherens from 87546 -> 87544","Type":"Adherens","Directional":false,"Links":[{"SourceID":87546,"TargetID":87544,"Directional":false}]},{"ID":5208,"SourceStructureID":87604,"TargetStructureID":78909,"Label":"87604-78909 via Adherens from 87605 -> 87603","Type":"Adherens","Directional":false,"Links":[{"SourceID":87605,"TargetID":87603,"Directional":false}]},{"ID":5209,"SourceStructureID":79069,"TargetStructureID":79068,"Label":"79069-79068 via Adherens from 79076 -> 79075, 79289 -> 79287","Type":"Adherens","Directional":false,"Links":[{"SourceID":79076,"TargetID":79075,"Directional":false},{"SourceID":79289,"TargetID":79287,"Directional":false}]},{"ID":5210,"SourceStructureID":79068,"TargetStructureID":79091,"Label":"79068-79091 via Adherens from 79139 -> 79138, 79140 -> 79141, 79266 -> 79267, 79293 -> 79292","Type":"Adherens","Directional":false,"Links":[{"SourceID":79139,"TargetID":79138,"Directional":false},{"SourceID":79140,"TargetID":79141,"Directional":false},{"SourceID":79266,"TargetID":79267,"Directional":false},{"SourceID":79293,"TargetID":79292,"Directional":false}]},{"ID":5211,"SourceStructureID":79072,"TargetStructureID":79069,"Label":"79072-79069 via Adherens from 79100 -> 79099, 79133 -> 79134, 79272 -> 79273, 79390 -> 79392","Type":"Adherens","Directional":false,"Links":[{"SourceID":79100,"TargetID":79099,"Directional":false},{"SourceID":79133,"TargetID":79134,"Directional":false},{"SourceID":79272,"TargetID":79273,"Directional":false},{"SourceID":79390,"TargetID":79392,"Directional":false}]},{"ID":5212,"SourceStructureID":79074,"TargetStructureID":79069,"Label":"79074-79069 via Adherens from 79113 -> 79114, 79115 -> 79116, 79275 -> 79274, 79391 -> 79392, 79393 -> 79394, 79395 -> 79396","Type":"Adherens","Directional":false,"Links":[{"SourceID":79113,"TargetID":79114,"Directional":false},{"SourceID":79115,"TargetID":79116,"Directional":false},{"SourceID":79275,"TargetID":79274,"Directional":false},{"SourceID":79391,"TargetID":79392,"Directional":false},{"SourceID":79393,"TargetID":79394,"Directional":false},{"SourceID":79395,"TargetID":79396,"Directional":false}]},{"ID":5213,"SourceStructureID":79072,"TargetStructureID":79071,"Label":"79072-79071 via Adherens from 79306 -> 79305, 79387 -> 79386, 79388 -> 79389","Type":"Adherens","Directional":false,"Links":[{"SourceID":79306,"TargetID":79305,"Directional":false},{"SourceID":79387,"TargetID":79386,"Directional":false},{"SourceID":79388,"TargetID":79389,"Directional":false}]},{"ID":5214,"SourceStructureID":79074,"TargetStructureID":79072,"Label":"79074-79072 via Adherens from 79079 -> 79080, 79082 -> 79081, 79084 -> 79083, 79103 -> 79101, 79104 -> 79102, 79110 -> 79109, 79136 -> 79135, 79312 -> 79314, 79313 -> 79314, 79327 -> 79328, 79344 -> 79343, 79391 -> 79390","Type":"Adherens","Directional":false,"Links":[{"SourceID":79079,"TargetID":79080,"Directional":false},{"SourceID":79082,"TargetID":79081,"Directional":false},{"SourceID":79084,"TargetID":79083,"Directional":false},{"SourceID":79103,"TargetID":79101,"Directional":false},{"SourceID":79104,"TargetID":79102,"Directional":false},{"SourceID":79110,"TargetID":79109,"Directional":false},{"SourceID":79136,"TargetID":79135,"Directional":false},{"SourceID":79312,"TargetID":79314,"Directional":false},{"SourceID":79313,"TargetID":79314,"Directional":false},{"SourceID":79327,"TargetID":79328,"Directional":false},{"SourceID":79344,"TargetID":79343,"Directional":false},{"SourceID":79391,"TargetID":79390,"Directional":false}]},{"ID":5215,"SourceStructureID":81917,"TargetStructureID":79317,"Label":"81917-79317 via Gap Junction from 99034 -> 99033","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99034,"TargetID":99033,"Directional":false}]},{"ID":5216,"SourceStructureID":79559,"TargetStructureID":79512,"Label":"79559-79512 via Adherens from 79569 -> 79529","Type":"Adherens","Directional":false,"Links":[{"SourceID":79569,"TargetID":79529,"Directional":false}]},{"ID":5217,"SourceStructureID":82305,"TargetStructureID":79586,"Label":"82305-79586 via Adherens from 116718 -> 79593","Type":"Adherens","Directional":false,"Links":[{"SourceID":116718,"TargetID":79593,"Directional":false}]},{"ID":5218,"SourceStructureID":79908,"TargetStructureID":83121,"Label":"79908-83121 via BC Conventional Synapse from 83120 -> 83122","Type":"BC Conventional Synapse","Directional":false,"Links":[{"SourceID":83120,"TargetID":83122,"Directional":false}]},{"ID":5219,"SourceStructureID":80139,"TargetStructureID":82271,"Label":"80139-82271 via Adherens from 83629 -> 83630","Type":"Adherens","Directional":false,"Links":[{"SourceID":83629,"TargetID":83630,"Directional":false}]},{"ID":5220,"SourceStructureID":81304,"TargetStructureID":81316,"Label":"81304-81316 via Unknown from 81317 -> 81319","Type":"Unknown","Directional":false,"Links":[{"SourceID":81317,"TargetID":81319,"Directional":false}]},{"ID":5221,"SourceStructureID":131704,"TargetStructureID":81429,"Label":"131704-81429 via Adherens from 131705 -> 81443","Type":"Adherens","Directional":false,"Links":[{"SourceID":131705,"TargetID":81443,"Directional":false}]},{"ID":5222,"SourceStructureID":81615,"TargetStructureID":133891,"Label":"81615-133891 via Adherens from 133899 -> 133898","Type":"Adherens","Directional":false,"Links":[{"SourceID":133899,"TargetID":133898,"Directional":false}]},{"ID":5223,"SourceStructureID":81771,"TargetStructureID":81667,"Label":"81771-81667 via Adherens from 81772 -> 81773","Type":"Adherens","Directional":false,"Links":[{"SourceID":81772,"TargetID":81773,"Directional":false}]},{"ID":5224,"SourceStructureID":81776,"TargetStructureID":81667,"Label":"81776-81667 via Adherens from 81777 -> 81778","Type":"Adherens","Directional":false,"Links":[{"SourceID":81777,"TargetID":81778,"Directional":false}]},{"ID":5225,"SourceStructureID":81748,"TargetStructureID":81743,"Label":"81748-81743 via Adherens from 81749 -> 81747, 81750 -> 81746","Type":"Adherens","Directional":false,"Links":[{"SourceID":81749,"TargetID":81747,"Directional":false},{"SourceID":81750,"TargetID":81746,"Directional":false}]},{"ID":5226,"SourceStructureID":81808,"TargetStructureID":81799,"Label":"81808-81799 via Adherens from 81809 -> 81807","Type":"Adherens","Directional":false,"Links":[{"SourceID":81809,"TargetID":81807,"Directional":false}]},{"ID":5227,"SourceStructureID":81799,"TargetStructureID":81831,"Label":"81799-81831 via Adherens from 81830 -> 81832","Type":"Adherens","Directional":false,"Links":[{"SourceID":81830,"TargetID":81832,"Directional":false}]},{"ID":5228,"SourceStructureID":82172,"TargetStructureID":82177,"Label":"82172-82177 via Adherens from 82176 -> 82178","Type":"Adherens","Directional":false,"Links":[{"SourceID":82176,"TargetID":82178,"Directional":false}]},{"ID":5229,"SourceStructureID":82330,"TargetStructureID":82305,"Label":"82330-82305 via Adherens from 82331 -> 82329","Type":"Adherens","Directional":false,"Links":[{"SourceID":82331,"TargetID":82329,"Directional":false}]},{"ID":5230,"SourceStructureID":82412,"TargetStructureID":82773,"Label":"82412-82773 via Adherens from 82775 -> 82774","Type":"Adherens","Directional":false,"Links":[{"SourceID":82775,"TargetID":82774,"Directional":false}]},{"ID":5231,"SourceStructureID":83638,"TargetStructureID":82677,"Label":"83638-82677 via Adherens from 83639 -> 83640","Type":"Adherens","Directional":false,"Links":[{"SourceID":83639,"TargetID":83640,"Directional":false}]},{"ID":5232,"SourceStructureID":82677,"TargetStructureID":83674,"Label":"82677-83674 via Adherens from 83675 -> 83676","Type":"Adherens","Directional":false,"Links":[{"SourceID":83675,"TargetID":83676,"Directional":false}]},{"ID":5233,"SourceStructureID":82677,"TargetStructureID":83679,"Label":"82677-83679 via Adherens from 83695 -> 83696","Type":"Adherens","Directional":false,"Links":[{"SourceID":83695,"TargetID":83696,"Directional":false}]},{"ID":5234,"SourceStructureID":82677,"TargetStructureID":83714,"Label":"82677-83714 via Adherens from 83723 -> 83722","Type":"Adherens","Directional":false,"Links":[{"SourceID":83723,"TargetID":83722,"Directional":false}]},{"ID":5235,"SourceStructureID":83725,"TargetStructureID":82677,"Label":"83725-82677 via Adherens from 83728 -> 83729","Type":"Adherens","Directional":false,"Links":[{"SourceID":83728,"TargetID":83729,"Directional":false}]},{"ID":5236,"SourceStructureID":82677,"TargetStructureID":83767,"Label":"82677-83767 via Adherens from 83769 -> 83768, 83775 -> 83774","Type":"Adherens","Directional":false,"Links":[{"SourceID":83769,"TargetID":83768,"Directional":false},{"SourceID":83775,"TargetID":83774,"Directional":false}]},{"ID":5237,"SourceStructureID":83782,"TargetStructureID":82677,"Label":"83782-82677 via Adherens from 83783 -> 83781","Type":"Adherens","Directional":false,"Links":[{"SourceID":83783,"TargetID":83781,"Directional":false}]},{"ID":5238,"SourceStructureID":83828,"TargetStructureID":82677,"Label":"83828-82677 via Adherens from 83829 -> 83827","Type":"Adherens","Directional":false,"Links":[{"SourceID":83829,"TargetID":83827,"Directional":false}]},{"ID":5239,"SourceStructureID":82677,"TargetStructureID":83866,"Label":"82677-83866 via Adherens from 83880 -> 83879","Type":"Adherens","Directional":false,"Links":[{"SourceID":83880,"TargetID":83879,"Directional":false}]},{"ID":5240,"SourceStructureID":84021,"TargetStructureID":82677,"Label":"84021-82677 via Adherens from 84022 -> 84020","Type":"Adherens","Directional":false,"Links":[{"SourceID":84022,"TargetID":84020,"Directional":false}]},{"ID":5241,"SourceStructureID":84050,"TargetStructureID":82677,"Label":"84050-82677 via Adherens from 84051 -> 84049","Type":"Adherens","Directional":false,"Links":[{"SourceID":84051,"TargetID":84049,"Directional":false}]},{"ID":5242,"SourceStructureID":82677,"TargetStructureID":117990,"Label":"82677-117990 via Gap Junction from 118005 -> 118002","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118005,"TargetID":118002,"Directional":false}]},{"ID":5243,"SourceStructureID":82743,"TargetStructureID":82777,"Label":"82743-82777 via Unknown from 82776 -> 82778","Type":"Unknown","Directional":false,"Links":[{"SourceID":82776,"TargetID":82778,"Directional":false}]},{"ID":5244,"SourceStructureID":82743,"TargetStructureID":82789,"Label":"82743-82789 via Unknown from 82788 -> 82790","Type":"Unknown","Directional":false,"Links":[{"SourceID":82788,"TargetID":82790,"Directional":false}]},{"ID":5245,"SourceStructureID":83008,"TargetStructureID":82743,"Label":"83008-82743 via Unknown from 83009 -> 83007","Type":"Unknown","Directional":false,"Links":[{"SourceID":83009,"TargetID":83007,"Directional":false}]},{"ID":5246,"SourceStructureID":82743,"TargetStructureID":83010,"Label":"82743-83010 via Unknown from 83006 -> 83011","Type":"Unknown","Directional":false,"Links":[{"SourceID":83006,"TargetID":83011,"Directional":false}]},{"ID":5247,"SourceStructureID":82743,"TargetStructureID":83012,"Label":"82743-83012 via Unknown from 83013 -> 83014","Type":"Unknown","Directional":false,"Links":[{"SourceID":83013,"TargetID":83014,"Directional":false}]},{"ID":5248,"SourceStructureID":83619,"TargetStructureID":83056,"Label":"83619-83056 via Adherens from 83620 -> 83618","Type":"Adherens","Directional":false,"Links":[{"SourceID":83620,"TargetID":83618,"Directional":false}]},{"ID":5249,"SourceStructureID":83200,"TargetStructureID":83161,"Label":"83200-83161 via Gap Junction from 83201 -> 83199","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83201,"TargetID":83199,"Directional":false}]},{"ID":5250,"SourceStructureID":83329,"TargetStructureID":83331,"Label":"83329-83331 via Gap Junction from 83330 -> 83332","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":83330,"TargetID":83332,"Directional":false}]},{"ID":5251,"SourceStructureID":83449,"TargetStructureID":83448,"Label":"83449-83448 via Adherens from 83453 -> 83452","Type":"Adherens","Directional":false,"Links":[{"SourceID":83453,"TargetID":83452,"Directional":false}]},{"ID":5252,"SourceStructureID":83650,"TargetStructureID":83648,"Label":"83650-83648 via Adherens from 83651 -> 83649","Type":"Adherens","Directional":false,"Links":[{"SourceID":83651,"TargetID":83649,"Directional":false}]},{"ID":5253,"SourceStructureID":83807,"TargetStructureID":84636,"Label":"83807-84636 via Unknown from 84735 -> 84734","Type":"Unknown","Directional":false,"Links":[{"SourceID":84735,"TargetID":84734,"Directional":false}]},{"ID":5254,"SourceStructureID":84082,"TargetStructureID":84088,"Label":"84082-84088 via Adherens from 84094 -> 84093","Type":"Adherens","Directional":false,"Links":[{"SourceID":84094,"TargetID":84093,"Directional":false}]},{"ID":5255,"SourceStructureID":84177,"TargetStructureID":84165,"Label":"84177-84165 via Adherens from 84178 -> 84176","Type":"Adherens","Directional":false,"Links":[{"SourceID":84178,"TargetID":84176,"Directional":false}]},{"ID":5256,"SourceStructureID":84751,"TargetStructureID":84748,"Label":"84751-84748 via Adherens from 84752 -> 84750","Type":"Adherens","Directional":false,"Links":[{"SourceID":84752,"TargetID":84750,"Directional":false}]},{"ID":5257,"SourceStructureID":84830,"TargetStructureID":84847,"Label":"84830-84847 via Adherens from 84846 -> 84848","Type":"Adherens","Directional":false,"Links":[{"SourceID":84846,"TargetID":84848,"Directional":false}]},{"ID":5258,"SourceStructureID":84900,"TargetStructureID":84830,"Label":"84900-84830 via Adherens from 84901 -> 84899","Type":"Adherens","Directional":false,"Links":[{"SourceID":84901,"TargetID":84899,"Directional":false}]},{"ID":5259,"SourceStructureID":84919,"TargetStructureID":84830,"Label":"84919-84830 via Adherens from 85470 -> 85469","Type":"Adherens","Directional":false,"Links":[{"SourceID":85470,"TargetID":85469,"Directional":false}]},{"ID":5260,"SourceStructureID":84924,"TargetStructureID":84830,"Label":"84924-84830 via Unknown from 84925 -> 84923","Type":"Unknown","Directional":false,"Links":[{"SourceID":84925,"TargetID":84923,"Directional":false}]},{"ID":5261,"SourceStructureID":84909,"TargetStructureID":84900,"Label":"84909-84900 via Adherens from 84910 -> 84908","Type":"Adherens","Directional":false,"Links":[{"SourceID":84910,"TargetID":84908,"Directional":false}]},{"ID":5262,"SourceStructureID":84903,"TargetStructureID":84905,"Label":"84903-84905 via Adherens from 84904 -> 84906","Type":"Adherens","Directional":false,"Links":[{"SourceID":84904,"TargetID":84906,"Directional":false}]},{"ID":5263,"SourceStructureID":85053,"TargetStructureID":85094,"Label":"85053-85094 via Adherens from 85111 -> 85110","Type":"Adherens","Directional":false,"Links":[{"SourceID":85111,"TargetID":85110,"Directional":false}]},{"ID":5264,"SourceStructureID":85072,"TargetStructureID":85068,"Label":"85072-85068 via Adherens from 85073 -> 85071","Type":"Adherens","Directional":false,"Links":[{"SourceID":85073,"TargetID":85071,"Directional":false}]},{"ID":5265,"SourceStructureID":85079,"TargetStructureID":85082,"Label":"85079-85082 via Adherens from 85086 -> 85085","Type":"Adherens","Directional":false,"Links":[{"SourceID":85086,"TargetID":85085,"Directional":false}]},{"ID":5266,"SourceStructureID":85121,"TargetStructureID":85119,"Label":"85121-85119 via Adherens from 85126 -> 85120, 85130 -> 85131","Type":"Adherens","Directional":false,"Links":[{"SourceID":85126,"TargetID":85120,"Directional":false},{"SourceID":85130,"TargetID":85131,"Directional":false}]},{"ID":5267,"SourceStructureID":85141,"TargetStructureID":85149,"Label":"85141-85149 via Adherens from 85152 -> 85153","Type":"Adherens","Directional":false,"Links":[{"SourceID":85152,"TargetID":85153,"Directional":false}]},{"ID":5268,"SourceStructureID":85159,"TargetStructureID":85141,"Label":"85159-85141 via Adherens from 85160 -> 85158","Type":"Adherens","Directional":false,"Links":[{"SourceID":85160,"TargetID":85158,"Directional":false}]},{"ID":5269,"SourceStructureID":85162,"TargetStructureID":85141,"Label":"85162-85141 via Adherens from 85163 -> 85161","Type":"Adherens","Directional":false,"Links":[{"SourceID":85163,"TargetID":85161,"Directional":false}]},{"ID":5270,"SourceStructureID":85172,"TargetStructureID":85141,"Label":"85172-85141 via Adherens from 85177 -> 85178","Type":"Adherens","Directional":false,"Links":[{"SourceID":85177,"TargetID":85178,"Directional":false}]},{"ID":5271,"SourceStructureID":85141,"TargetStructureID":85214,"Label":"85141-85214 via Unknown from 85393 -> 85394","Type":"Unknown","Directional":false,"Links":[{"SourceID":85393,"TargetID":85394,"Directional":false}]},{"ID":5272,"SourceStructureID":85233,"TargetStructureID":85141,"Label":"85233-85141 via Adherens from 85398 -> 85397","Type":"Adherens","Directional":false,"Links":[{"SourceID":85398,"TargetID":85397,"Directional":false}]},{"ID":5273,"SourceStructureID":85352,"TargetStructureID":85141,"Label":"85352-85141 via Adherens from 85353 -> 85351","Type":"Adherens","Directional":false,"Links":[{"SourceID":85353,"TargetID":85351,"Directional":false}]},{"ID":5274,"SourceStructureID":85141,"TargetStructureID":85386,"Label":"85141-85386 via Adherens from 85385 -> 85387","Type":"Adherens","Directional":false,"Links":[{"SourceID":85385,"TargetID":85387,"Directional":false}]},{"ID":5275,"SourceStructureID":85750,"TargetStructureID":85748,"Label":"85750-85748 via Adherens from 85753 -> 85752","Type":"Adherens","Directional":false,"Links":[{"SourceID":85753,"TargetID":85752,"Directional":false}]},{"ID":5276,"SourceStructureID":85748,"TargetStructureID":85766,"Label":"85748-85766 via Adherens from 85764 -> 85767","Type":"Adherens","Directional":false,"Links":[{"SourceID":85764,"TargetID":85767,"Directional":false}]},{"ID":5277,"SourceStructureID":85771,"TargetStructureID":85748,"Label":"85771-85748 via Adherens from 85773 -> 85769","Type":"Adherens","Directional":false,"Links":[{"SourceID":85773,"TargetID":85769,"Directional":false}]},{"ID":5278,"SourceStructureID":85900,"TargetStructureID":85856,"Label":"85900-85856 via Gap Junction from 85901 -> 85899","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":85901,"TargetID":85899,"Directional":false}]},{"ID":5279,"SourceStructureID":85856,"TargetStructureID":136970,"Label":"85856-136970 via Gap Junction from 136982 -> 136981","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136982,"TargetID":136981,"Directional":false}]},{"ID":5280,"SourceStructureID":85924,"TargetStructureID":85928,"Label":"85924-85928 via Adherens from 85952 -> 85953","Type":"Adherens","Directional":false,"Links":[{"SourceID":85952,"TargetID":85953,"Directional":false}]},{"ID":5281,"SourceStructureID":86050,"TargetStructureID":86036,"Label":"86050-86036 via Adherens from 86058 -> 86051","Type":"Adherens","Directional":false,"Links":[{"SourceID":86058,"TargetID":86051,"Directional":false}]},{"ID":5282,"SourceStructureID":86634,"TargetStructureID":86662,"Label":"86634-86662 via Adherens from 86664 -> 86665","Type":"Adherens","Directional":false,"Links":[{"SourceID":86664,"TargetID":86665,"Directional":false}]},{"ID":5283,"SourceStructureID":86667,"TargetStructureID":86634,"Label":"86667-86634 via Adherens from 86668 -> 86666","Type":"Adherens","Directional":false,"Links":[{"SourceID":86668,"TargetID":86666,"Directional":false}]},{"ID":5284,"SourceStructureID":86672,"TargetStructureID":86634,"Label":"86672-86634 via Adherens from 86682 -> 86681","Type":"Adherens","Directional":false,"Links":[{"SourceID":86682,"TargetID":86681,"Directional":false}]},{"ID":5285,"SourceStructureID":86634,"TargetStructureID":86675,"Label":"86634-86675 via Adherens from 86679 -> 86680","Type":"Adherens","Directional":false,"Links":[{"SourceID":86679,"TargetID":86680,"Directional":false}]},{"ID":5286,"SourceStructureID":86702,"TargetStructureID":86634,"Label":"86702-86634 via Unknown from 86703 -> 86701","Type":"Unknown","Directional":false,"Links":[{"SourceID":86703,"TargetID":86701,"Directional":false}]},{"ID":5287,"SourceStructureID":86675,"TargetStructureID":86672,"Label":"86675-86672 via Adherens from 86677 -> 86676","Type":"Adherens","Directional":false,"Links":[{"SourceID":86677,"TargetID":86676,"Directional":false}]},{"ID":5288,"SourceStructureID":86933,"TargetStructureID":86934,"Label":"86933-86934 via Adherens from 86937 -> 86938","Type":"Adherens","Directional":false,"Links":[{"SourceID":86937,"TargetID":86938,"Directional":false}]},{"ID":5289,"SourceStructureID":86991,"TargetStructureID":86985,"Label":"86991-86985 via Adherens from 86993 -> 86994","Type":"Adherens","Directional":false,"Links":[{"SourceID":86993,"TargetID":86994,"Directional":false}]},{"ID":5290,"SourceStructureID":87145,"TargetStructureID":87149,"Label":"87145-87149 via Adherens from 87153 -> 87152","Type":"Adherens","Directional":false,"Links":[{"SourceID":87153,"TargetID":87152,"Directional":false}]},{"ID":5291,"SourceStructureID":87189,"TargetStructureID":87183,"Label":"87189-87183 via Adherens from 87191 -> 87188","Type":"Adherens","Directional":false,"Links":[{"SourceID":87191,"TargetID":87188,"Directional":false}]},{"ID":5292,"SourceStructureID":87304,"TargetStructureID":87294,"Label":"87304-87294 via Adherens from 87306 -> 87307","Type":"Adherens","Directional":false,"Links":[{"SourceID":87306,"TargetID":87307,"Directional":false}]},{"ID":5293,"SourceStructureID":87309,"TargetStructureID":87294,"Label":"87309-87294 via Adherens from 87310 -> 87308","Type":"Adherens","Directional":false,"Links":[{"SourceID":87310,"TargetID":87308,"Directional":false}]},{"ID":5294,"SourceStructureID":87294,"TargetStructureID":87318,"Label":"87294-87318 via Unknown from 87317 -> 87319","Type":"Unknown","Directional":false,"Links":[{"SourceID":87317,"TargetID":87319,"Directional":false}]},{"ID":5295,"SourceStructureID":89124,"TargetStructureID":87294,"Label":"89124-87294 via Adherens from 89154 -> 89155","Type":"Adherens","Directional":false,"Links":[{"SourceID":89154,"TargetID":89155,"Directional":false}]},{"ID":5296,"SourceStructureID":87396,"TargetStructureID":87342,"Label":"87396-87342 via Adherens from 87397 -> 87395","Type":"Adherens","Directional":false,"Links":[{"SourceID":87397,"TargetID":87395,"Directional":false}]},{"ID":5297,"SourceStructureID":87349,"TargetStructureID":87345,"Label":"87349-87345 via Adherens from 87351 -> 87352","Type":"Adherens","Directional":false,"Links":[{"SourceID":87351,"TargetID":87352,"Directional":false}]},{"ID":5298,"SourceStructureID":88199,"TargetStructureID":88205,"Label":"88199-88205 via Adherens from 88204 -> 88206","Type":"Adherens","Directional":false,"Links":[{"SourceID":88204,"TargetID":88206,"Directional":false}]},{"ID":5299,"SourceStructureID":88199,"TargetStructureID":88215,"Label":"88199-88215 via Adherens from 88217 -> 88218","Type":"Adherens","Directional":false,"Links":[{"SourceID":88217,"TargetID":88218,"Directional":false}]},{"ID":5300,"SourceStructureID":88230,"TargetStructureID":88199,"Label":"88230-88199 via Adherens from 88233 -> 88232","Type":"Adherens","Directional":false,"Links":[{"SourceID":88233,"TargetID":88232,"Directional":false}]},{"ID":5301,"SourceStructureID":88300,"TargetStructureID":88260,"Label":"88300-88260 via Adherens from 88303 -> 88295","Type":"Adherens","Directional":false,"Links":[{"SourceID":88303,"TargetID":88295,"Directional":false}]},{"ID":5302,"SourceStructureID":88305,"TargetStructureID":88260,"Label":"88305-88260 via Adherens from 88307 -> 88308, 88311 -> 88310","Type":"Adherens","Directional":false,"Links":[{"SourceID":88307,"TargetID":88308,"Directional":false},{"SourceID":88311,"TargetID":88310,"Directional":false}]},{"ID":5303,"SourceStructureID":88320,"TargetStructureID":88260,"Label":"88320-88260 via Unknown from 88321 -> 88319","Type":"Unknown","Directional":false,"Links":[{"SourceID":88321,"TargetID":88319,"Directional":false}]},{"ID":5304,"SourceStructureID":88323,"TargetStructureID":88260,"Label":"88323-88260 via Adherens from 88324 -> 88322","Type":"Adherens","Directional":false,"Links":[{"SourceID":88324,"TargetID":88322,"Directional":false}]},{"ID":5305,"SourceStructureID":88325,"TargetStructureID":88323,"Label":"88325-88323 via Adherens from 88326 -> 88324","Type":"Adherens","Directional":false,"Links":[{"SourceID":88326,"TargetID":88324,"Directional":false}]},{"ID":5306,"SourceStructureID":88600,"TargetStructureID":88594,"Label":"88600-88594 via Adherens from 88601 -> 88599","Type":"Adherens","Directional":false,"Links":[{"SourceID":88601,"TargetID":88599,"Directional":false}]},{"ID":5307,"SourceStructureID":88923,"TargetStructureID":88919,"Label":"88923-88919 via Adherens from 88925 -> 88922","Type":"Adherens","Directional":false,"Links":[{"SourceID":88925,"TargetID":88922,"Directional":false}]},{"ID":5308,"SourceStructureID":89039,"TargetStructureID":89046,"Label":"89039-89046 via Adherens from 89048 -> 89049","Type":"Adherens","Directional":false,"Links":[{"SourceID":89048,"TargetID":89049,"Directional":false}]},{"ID":5309,"SourceStructureID":89160,"TargetStructureID":89120,"Label":"89160-89120 via Adherens from 89164 -> 89163","Type":"Adherens","Directional":false,"Links":[{"SourceID":89164,"TargetID":89163,"Directional":false}]},{"ID":5310,"SourceStructureID":89323,"TargetStructureID":89124,"Label":"89323-89124 via Adherens from 89326 -> 89325","Type":"Adherens","Directional":false,"Links":[{"SourceID":89326,"TargetID":89325,"Directional":false}]},{"ID":5311,"SourceStructureID":89323,"TargetStructureID":89124,"Label":"89323-89124 via Gap Junction from 89324 -> 89322","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89324,"TargetID":89322,"Directional":false}]},{"ID":5312,"SourceStructureID":89336,"TargetStructureID":89124,"Label":"89336-89124 via Unknown from 89337 -> 89335","Type":"Unknown","Directional":false,"Links":[{"SourceID":89337,"TargetID":89335,"Directional":false}]},{"ID":5313,"SourceStructureID":89355,"TargetStructureID":89124,"Label":"89355-89124 via Adherens from 89358 -> 89354","Type":"Adherens","Directional":false,"Links":[{"SourceID":89358,"TargetID":89354,"Directional":false}]},{"ID":5314,"SourceStructureID":89133,"TargetStructureID":89133,"Label":"89133-89133 via Gap Junction from 89203 -> 89202","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":89203,"TargetID":89202,"Directional":false}]},{"ID":5315,"SourceStructureID":97959,"TargetStructureID":89433,"Label":"97959-89433 via Gap Junction from 97960 -> 97958","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":97960,"TargetID":97958,"Directional":false}]},{"ID":5316,"SourceStructureID":89694,"TargetStructureID":89677,"Label":"89694-89677 via Adherens from 89697 -> 89692","Type":"Adherens","Directional":false,"Links":[{"SourceID":89697,"TargetID":89692,"Directional":false}]},{"ID":5317,"SourceStructureID":89677,"TargetStructureID":89694,"Label":"89677-89694 via Unknown from 89693 -> 89696, 89695 -> 89691","Type":"Unknown","Directional":false,"Links":[{"SourceID":89693,"TargetID":89696,"Directional":false},{"SourceID":89695,"TargetID":89691,"Directional":false}]},{"ID":5318,"SourceStructureID":89798,"TargetStructureID":89775,"Label":"89798-89775 via Adherens from 89799 -> 89797","Type":"Adherens","Directional":false,"Links":[{"SourceID":89799,"TargetID":89797,"Directional":false}]},{"ID":5319,"SourceStructureID":89801,"TargetStructureID":89775,"Label":"89801-89775 via Adherens from 89802 -> 89800","Type":"Adherens","Directional":false,"Links":[{"SourceID":89802,"TargetID":89800,"Directional":false}]},{"ID":5320,"SourceStructureID":89814,"TargetStructureID":89811,"Label":"89814-89811 via Adherens from 89819 -> 89818","Type":"Adherens","Directional":false,"Links":[{"SourceID":89819,"TargetID":89818,"Directional":false}]},{"ID":5321,"SourceStructureID":89836,"TargetStructureID":89831,"Label":"89836-89831 via Adherens from 89841 -> 89835","Type":"Adherens","Directional":false,"Links":[{"SourceID":89841,"TargetID":89835,"Directional":false}]},{"ID":5322,"SourceStructureID":89910,"TargetStructureID":89851,"Label":"89910-89851 via Adherens from 89911 -> 89909","Type":"Adherens","Directional":false,"Links":[{"SourceID":89911,"TargetID":89909,"Directional":false}]},{"ID":5323,"SourceStructureID":89928,"TargetStructureID":89851,"Label":"89928-89851 via Adherens from 89929 -> 89925, 89930 -> 89927","Type":"Adherens","Directional":false,"Links":[{"SourceID":89929,"TargetID":89925,"Directional":false},{"SourceID":89930,"TargetID":89927,"Directional":false}]},{"ID":5324,"SourceStructureID":89993,"TargetStructureID":89989,"Label":"89993-89989 via Adherens from 89994 -> 89992","Type":"Adherens","Directional":false,"Links":[{"SourceID":89994,"TargetID":89992,"Directional":false}]},{"ID":5325,"SourceStructureID":90035,"TargetStructureID":89989,"Label":"90035-89989 via Adherens from 90036 -> 90034","Type":"Adherens","Directional":false,"Links":[{"SourceID":90036,"TargetID":90034,"Directional":false}]},{"ID":5326,"SourceStructureID":90089,"TargetStructureID":89989,"Label":"90089-89989 via Adherens from 90090 -> 90088","Type":"Adherens","Directional":false,"Links":[{"SourceID":90090,"TargetID":90088,"Directional":false}]},{"ID":5327,"SourceStructureID":90092,"TargetStructureID":89989,"Label":"90092-89989 via Adherens from 90093 -> 90091","Type":"Adherens","Directional":false,"Links":[{"SourceID":90093,"TargetID":90091,"Directional":false}]},{"ID":5328,"SourceStructureID":90795,"TargetStructureID":90791,"Label":"90795-90791 via Adherens from 90797 -> 90794","Type":"Adherens","Directional":false,"Links":[{"SourceID":90797,"TargetID":90794,"Directional":false}]},{"ID":5329,"SourceStructureID":90795,"TargetStructureID":90791,"Label":"90795-90791 via Gap Junction from 90798 -> 90793","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":90798,"TargetID":90793,"Directional":false}]},{"ID":5330,"SourceStructureID":90956,"TargetStructureID":90952,"Label":"90956-90952 via Adherens from 90957 -> 90954","Type":"Adherens","Directional":false,"Links":[{"SourceID":90957,"TargetID":90954,"Directional":false}]},{"ID":5331,"SourceStructureID":91042,"TargetStructureID":91043,"Label":"91042-91043 via Adherens from 91045 -> 91044","Type":"Adherens","Directional":false,"Links":[{"SourceID":91045,"TargetID":91044,"Directional":false}]},{"ID":5332,"SourceStructureID":91073,"TargetStructureID":91080,"Label":"91073-91080 via Adherens from 91083 -> 91082","Type":"Adherens","Directional":false,"Links":[{"SourceID":91083,"TargetID":91082,"Directional":false}]},{"ID":5333,"SourceStructureID":91240,"TargetStructureID":91240,"Label":"91240-91240 via Adherens from 91242 -> 91241","Type":"Adherens","Directional":false,"Links":[{"SourceID":91242,"TargetID":91241,"Directional":false}]},{"ID":5334,"SourceStructureID":92092,"TargetStructureID":92092,"Label":"92092-92092 via Adherens from 92798 -> 92797","Type":"Adherens","Directional":false,"Links":[{"SourceID":92798,"TargetID":92797,"Directional":false}]},{"ID":5335,"SourceStructureID":113541,"TargetStructureID":92865,"Label":"113541-92865 via Gap Junction from 113543 -> 92866","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":113543,"TargetID":92866,"Directional":false}]},{"ID":5336,"SourceStructureID":93494,"TargetStructureID":93486,"Label":"93494-93486 via Adherens from 93495 -> 93493","Type":"Adherens","Directional":false,"Links":[{"SourceID":93495,"TargetID":93493,"Directional":false}]},{"ID":5337,"SourceStructureID":94579,"TargetStructureID":94579,"Label":"94579-94579 via Unknown from 94580 -> 94581","Type":"Unknown","Directional":false,"Links":[{"SourceID":94580,"TargetID":94581,"Directional":false}]},{"ID":5338,"SourceStructureID":95299,"TargetStructureID":95311,"Label":"95299-95311 via Unknown from 132857 -> 132859","Type":"Unknown","Directional":false,"Links":[{"SourceID":132857,"TargetID":132859,"Directional":false}]},{"ID":5339,"SourceStructureID":95607,"TargetStructureID":95605,"Label":"95607-95605 via Adherens from 133054 -> 133055","Type":"Adherens","Directional":false,"Links":[{"SourceID":133054,"TargetID":133055,"Directional":false}]},{"ID":5340,"SourceStructureID":96189,"TargetStructureID":96212,"Label":"96189-96212 via Unknown from 96214 -> 96213","Type":"Unknown","Directional":false,"Links":[{"SourceID":96214,"TargetID":96213,"Directional":false}]},{"ID":5341,"SourceStructureID":108026,"TargetStructureID":96898,"Label":"108026-96898 via Unknown from 108027 -> 108028","Type":"Unknown","Directional":false,"Links":[{"SourceID":108027,"TargetID":108028,"Directional":false}]},{"ID":5342,"SourceStructureID":97352,"TargetStructureID":97355,"Label":"97352-97355 via Unknown from 131106 -> 131105","Type":"Unknown","Directional":false,"Links":[{"SourceID":131106,"TargetID":131105,"Directional":false}]},{"ID":5343,"SourceStructureID":97376,"TargetStructureID":97541,"Label":"97376-97541 via Adherens from 97433 -> 97542","Type":"Adherens","Directional":false,"Links":[{"SourceID":97433,"TargetID":97542,"Directional":false}]},{"ID":5344,"SourceStructureID":98127,"TargetStructureID":98556,"Label":"98127-98556 via Unknown from 98783 -> 98568","Type":"Unknown","Directional":false,"Links":[{"SourceID":98783,"TargetID":98568,"Directional":false}]},{"ID":5345,"SourceStructureID":98505,"TargetStructureID":98505,"Label":"98505-98505 via Adherens from 98508 -> 98507","Type":"Adherens","Directional":false,"Links":[{"SourceID":98508,"TargetID":98507,"Directional":false}]},{"ID":5346,"SourceStructureID":99365,"TargetStructureID":99356,"Label":"99365-99356 via Gap Junction from 99367 -> 99360","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":99367,"TargetID":99360,"Directional":false}]},{"ID":5347,"SourceStructureID":99831,"TargetStructureID":100129,"Label":"99831-100129 via Adherens from 100133 -> 100134","Type":"Adherens","Directional":false,"Links":[{"SourceID":100133,"TargetID":100134,"Directional":false}]},{"ID":5348,"SourceStructureID":99981,"TargetStructureID":99981,"Label":"99981-99981 via Adherens from 134212 -> 134211","Type":"Adherens","Directional":false,"Links":[{"SourceID":134212,"TargetID":134211,"Directional":false}]},{"ID":5349,"SourceStructureID":100709,"TargetStructureID":100147,"Label":"100709-100147 via Adherens from 100711 -> 100712","Type":"Adherens","Directional":false,"Links":[{"SourceID":100711,"TargetID":100712,"Directional":false}]},{"ID":5350,"SourceStructureID":103084,"TargetStructureID":102607,"Label":"103084-102607 via Unknown from 134061 -> 134060","Type":"Unknown","Directional":false,"Links":[{"SourceID":134061,"TargetID":134060,"Directional":false}]},{"ID":5351,"SourceStructureID":103572,"TargetStructureID":103572,"Label":"103572-103572 via Unknown from 103583 -> 103582","Type":"Unknown","Directional":false,"Links":[{"SourceID":103583,"TargetID":103582,"Directional":false}]},{"ID":5352,"SourceStructureID":133891,"TargetStructureID":105210,"Label":"133891-105210 via Gap Junction from 133892 -> 133893","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":133892,"TargetID":133893,"Directional":false}]},{"ID":5353,"SourceStructureID":108539,"TargetStructureID":108539,"Label":"108539-108539 via Unknown from 108544 -> 108543","Type":"Unknown","Directional":false,"Links":[{"SourceID":108544,"TargetID":108543,"Directional":false}]},{"ID":5354,"SourceStructureID":110880,"TargetStructureID":110879,"Label":"110880-110879 via Adherens from 110897 -> 110898","Type":"Adherens","Directional":false,"Links":[{"SourceID":110897,"TargetID":110898,"Directional":false}]},{"ID":5355,"SourceStructureID":112264,"TargetStructureID":112260,"Label":"112264-112260 via Adherens from 112265 -> 112262","Type":"Adherens","Directional":false,"Links":[{"SourceID":112265,"TargetID":112262,"Directional":false}]},{"ID":5356,"SourceStructureID":117093,"TargetStructureID":117091,"Label":"117093-117091 via Gap Junction from 117094 -> 117092","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117094,"TargetID":117092,"Directional":false}]},{"ID":5357,"SourceStructureID":117132,"TargetStructureID":117127,"Label":"117132-117127 via Gap Junction from 117133 -> 117131","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117133,"TargetID":117131,"Directional":false}]},{"ID":5358,"SourceStructureID":117778,"TargetStructureID":117774,"Label":"117778-117774 via Gap Junction from 117779 -> 117777","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":117779,"TargetID":117777,"Directional":false}]},{"ID":5359,"SourceStructureID":117999,"TargetStructureID":117990,"Label":"117999-117990 via Gap Junction from 118000 -> 117998","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118000,"TargetID":117998,"Directional":false}]},{"ID":5360,"SourceStructureID":118058,"TargetStructureID":118058,"Label":"118058-118058 via Gap Junction from 118067 -> 118060","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":118067,"TargetID":118060,"Directional":false}]},{"ID":5361,"SourceStructureID":128907,"TargetStructureID":120291,"Label":"128907-120291 via Unknown from 128909 -> 128910","Type":"Unknown","Directional":false,"Links":[{"SourceID":128909,"TargetID":128910,"Directional":false}]},{"ID":5362,"SourceStructureID":136418,"TargetStructureID":122091,"Label":"136418-122091 via Gap Junction from 136420 -> 136419","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":136420,"TargetID":136419,"Directional":false}]},{"ID":5363,"SourceStructureID":131740,"TargetStructureID":122868,"Label":"131740-122868 via Adherens from 131741 -> 131739","Type":"Adherens","Directional":false,"Links":[{"SourceID":131741,"TargetID":131739,"Directional":false}]},{"ID":5364,"SourceStructureID":123552,"TargetStructureID":123551,"Label":"123552-123551 via Adherens from 123555 -> 123554","Type":"Adherens","Directional":false,"Links":[{"SourceID":123555,"TargetID":123554,"Directional":false}]},{"ID":5365,"SourceStructureID":124301,"TargetStructureID":124301,"Label":"124301-124301 via Unknown from 124435 -> 124434","Type":"Unknown","Directional":false,"Links":[{"SourceID":124435,"TargetID":124434,"Directional":false}]},{"ID":5366,"SourceStructureID":132009,"TargetStructureID":132009,"Label":"132009-132009 via Gap Junction from 132015 -> 132016","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132015,"TargetID":132016,"Directional":false}]},{"ID":5367,"SourceStructureID":132009,"TargetStructureID":132021,"Label":"132009-132021 via Gap Junction from 132020 -> 132022","Type":"Gap Junction","Directional":false,"Links":[{"SourceID":132020,"TargetID":132022,"Directional":false}]},{"ID":5368,"SourceStructureID":135829,"TargetStructureID":135225,"Label":"135829-135225 via Touch from 135831 -> 135830","Type":"Touch","Directional":false,"Links":[{"SourceID":135831,"TargetID":135830,"Directional":false}]},{"ID":5369,"SourceStructureID":148300,"TargetStructureID":148300,"Label":"148300-148300 via Adherens from 148309 -> 148308","Type":"Adherens","Directional":false,"Links":[{"SourceID":148309,"TargetID":148308,"Directional":false}]},{"ID":5370,"SourceStructureID":115,"TargetStructureID":165,"Label":"115-165 via Conventional from 8072 -> 21678","Type":"Conventional","Directional":true,"Links":[{"SourceID":8072,"TargetID":21678,"Directional":true}]},{"ID":5371,"SourceStructureID":115,"TargetStructureID":359,"Label":"115-359 via Conventional from 8127 -> 21462","Type":"Conventional","Directional":true,"Links":[{"SourceID":8127,"TargetID":21462,"Directional":true}]},{"ID":5372,"SourceStructureID":115,"TargetStructureID":373,"Label":"115-373 via Conventional from 8170 -> 55275","Type":"Conventional","Directional":true,"Links":[{"SourceID":8170,"TargetID":55275,"Directional":true}]},{"ID":5373,"SourceStructureID":115,"TargetStructureID":425,"Label":"115-425 via Conventional from 8168 -> 87462","Type":"Conventional","Directional":true,"Links":[{"SourceID":8168,"TargetID":87462,"Directional":true}]},{"ID":5374,"SourceStructureID":115,"TargetStructureID":458,"Label":"115-458 via Conventional from 8156 -> 8157","Type":"Conventional","Directional":true,"Links":[{"SourceID":8156,"TargetID":8157,"Directional":true}]},{"ID":5375,"SourceStructureID":115,"TargetStructureID":3928,"Label":"115-3928 via Conventional from 8081 -> 39952","Type":"Conventional","Directional":true,"Links":[{"SourceID":8081,"TargetID":39952,"Directional":true}]},{"ID":5376,"SourceStructureID":115,"TargetStructureID":13469,"Label":"115-13469 via Conventional from 10810 -> 13478","Type":"Conventional","Directional":true,"Links":[{"SourceID":10810,"TargetID":13478,"Directional":true}]},{"ID":5377,"SourceStructureID":115,"TargetStructureID":130472,"Label":"115-130472 via Conventional from 8115 -> 130497","Type":"Conventional","Directional":true,"Links":[{"SourceID":8115,"TargetID":130497,"Directional":true}]},{"ID":5378,"SourceStructureID":115,"TargetStructureID":159045,"Label":"115-159045 via Conventional from 8112 -> 159073","Type":"Conventional","Directional":true,"Links":[{"SourceID":8112,"TargetID":159073,"Directional":true}]},{"ID":5379,"SourceStructureID":138,"TargetStructureID":3679,"Label":"138-3679 via Ribbon Synapse from 2213 -> 65999, 2214 -> 66001, 2403 -> 22732, 11466 -> 11868, 11472 -> 11692, 11857 -> 29405, 46421 -> 22708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2213,"TargetID":65999,"Directional":true},{"SourceID":2214,"TargetID":66001,"Directional":true},{"SourceID":2403,"TargetID":22732,"Directional":true},{"SourceID":11466,"TargetID":11868,"Directional":true},{"SourceID":11472,"TargetID":11692,"Directional":true},{"SourceID":11857,"TargetID":29405,"Directional":true},{"SourceID":46421,"TargetID":22708,"Directional":true}]},{"ID":5380,"SourceStructureID":138,"TargetStructureID":7073,"Label":"138-7073 via Ribbon Synapse from 2197 -> 11856","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2197,"TargetID":11856,"Directional":true}]},{"ID":5381,"SourceStructureID":138,"TargetStructureID":7897,"Label":"138-7897 via Ribbon Synapse from 46479 -> 46480, 46483 -> 46484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46479,"TargetID":46480,"Directional":true},{"SourceID":46483,"TargetID":46484,"Directional":true}]},{"ID":5382,"SourceStructureID":138,"TargetStructureID":12203,"Label":"138-12203 via Ribbon Synapse from 2187 -> 12204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2187,"TargetID":12204,"Directional":true}]},{"ID":5383,"SourceStructureID":138,"TargetStructureID":20681,"Label":"138-20681 via BC Conventional Synapse from 123274 -> 123275","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123274,"TargetID":123275,"Directional":true}]},{"ID":5384,"SourceStructureID":138,"TargetStructureID":29340,"Label":"138-29340 via Ribbon Synapse from 2197 -> 29398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2197,"TargetID":29398,"Directional":true}]},{"ID":5385,"SourceStructureID":138,"TargetStructureID":31486,"Label":"138-31486 via Ribbon Synapse from 19565 -> 31653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19565,"TargetID":31653,"Directional":true}]},{"ID":5386,"SourceStructureID":138,"TargetStructureID":32874,"Label":"138-32874 via Ribbon Synapse from 32887 -> 32886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32887,"TargetID":32886,"Directional":true}]},{"ID":5387,"SourceStructureID":138,"TargetStructureID":32892,"Label":"138-32892 via Ribbon Synapse from 32887 -> 32895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32887,"TargetID":32895,"Directional":true}]},{"ID":5388,"SourceStructureID":138,"TargetStructureID":43404,"Label":"138-43404 via Ribbon Synapse from 33284 -> 43413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33284,"TargetID":43413,"Directional":true}]},{"ID":5389,"SourceStructureID":138,"TargetStructureID":46449,"Label":"138-46449 via Ribbon Synapse from 46460 -> 46459, 60788 -> 60789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46460,"TargetID":46459,"Directional":true},{"SourceID":60788,"TargetID":60789,"Directional":true}]},{"ID":5390,"SourceStructureID":138,"TargetStructureID":54264,"Label":"138-54264 via Ribbon Synapse from 54273 -> 54272, 54274 -> 54275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54273,"TargetID":54272,"Directional":true},{"SourceID":54274,"TargetID":54275,"Directional":true}]},{"ID":5391,"SourceStructureID":138,"TargetStructureID":54622,"Label":"138-54622 via BC Conventional Synapse from 55939 -> 55940","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55939,"TargetID":55940,"Directional":true}]},{"ID":5392,"SourceStructureID":138,"TargetStructureID":70205,"Label":"138-70205 via Ribbon Synapse from 11449 -> 70217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11449,"TargetID":70217,"Directional":true}]},{"ID":5393,"SourceStructureID":138,"TargetStructureID":136432,"Label":"138-136432 via Ribbon Synapse from 11857 -> 136501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11857,"TargetID":136501,"Directional":true}]},{"ID":5394,"SourceStructureID":142,"TargetStructureID":5107,"Label":"142-5107 via Ribbon Synapse from 92448 -> 125962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92448,"TargetID":125962,"Directional":true}]},{"ID":5395,"SourceStructureID":142,"TargetStructureID":5435,"Label":"142-5435 via BC Conventional Synapse from 125938 -> 125939","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125938,"TargetID":125939,"Directional":true}]},{"ID":5396,"SourceStructureID":142,"TargetStructureID":5485,"Label":"142-5485 via Ribbon Synapse from 49747 -> 126181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49747,"TargetID":126181,"Directional":true}]},{"ID":5397,"SourceStructureID":142,"TargetStructureID":5487,"Label":"142-5487 via Ribbon Synapse from 91678 -> 91680","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91678,"TargetID":91680,"Directional":true}]},{"ID":5398,"SourceStructureID":142,"TargetStructureID":5618,"Label":"142-5618 via Ribbon Synapse from 65988 -> 65986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65988,"TargetID":65986,"Directional":true}]},{"ID":5399,"SourceStructureID":142,"TargetStructureID":6300,"Label":"142-6300 via Ribbon Synapse from 32016 -> 125931, 50128 -> 126052, 126051 -> 126052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32016,"TargetID":125931,"Directional":true},{"SourceID":50128,"TargetID":126052,"Directional":true},{"SourceID":126051,"TargetID":126052,"Directional":true}]},{"ID":5400,"SourceStructureID":142,"TargetStructureID":9347,"Label":"142-9347 via Cistern Pre from 126307 -> 126318","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":126307,"TargetID":126318,"Directional":true}]},{"ID":5401,"SourceStructureID":142,"TargetStructureID":9347,"Label":"142-9347 via Ribbon Synapse from 30700 -> 126321, 30704 -> 126249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30700,"TargetID":126321,"Directional":true},{"SourceID":30704,"TargetID":126249,"Directional":true}]},{"ID":5402,"SourceStructureID":142,"TargetStructureID":18693,"Label":"142-18693 via BC Conventional Synapse from 126217 -> 27332","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":126217,"TargetID":27332,"Directional":true}]},{"ID":5403,"SourceStructureID":142,"TargetStructureID":18693,"Label":"142-18693 via Ribbon Synapse from 126136 -> 126135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126136,"TargetID":126135,"Directional":true}]},{"ID":5404,"SourceStructureID":142,"TargetStructureID":30513,"Label":"142-30513 via Cistern Pre from 49704 -> 125974, 126169 -> 126170","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":49704,"TargetID":125974,"Directional":true},{"SourceID":126169,"TargetID":126170,"Directional":true}]},{"ID":5405,"SourceStructureID":142,"TargetStructureID":30513,"Label":"142-30513 via Ribbon Synapse from 10321 -> 30515","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10321,"TargetID":30515,"Directional":true}]},{"ID":5406,"SourceStructureID":142,"TargetStructureID":30567,"Label":"142-30567 via Ribbon Synapse from 32084 -> 32083, 126239 -> 126240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32084,"TargetID":32083,"Directional":true},{"SourceID":126239,"TargetID":126240,"Directional":true}]},{"ID":5407,"SourceStructureID":142,"TargetStructureID":34036,"Label":"142-34036 via Ribbon Synapse from 31793 -> 34041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31793,"TargetID":34041,"Directional":true}]},{"ID":5408,"SourceStructureID":142,"TargetStructureID":39968,"Label":"142-39968 via Ribbon Synapse from 125980 -> 125996","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125980,"TargetID":125996,"Directional":true}]},{"ID":5409,"SourceStructureID":142,"TargetStructureID":44346,"Label":"142-44346 via Ribbon Synapse from 44448 -> 44445, 87994 -> 44449, 87995 -> 44449, 87995 -> 87990, 87996 -> 87998, 119585 -> 44444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44448,"TargetID":44445,"Directional":true},{"SourceID":87994,"TargetID":44449,"Directional":true},{"SourceID":87995,"TargetID":44449,"Directional":true},{"SourceID":87995,"TargetID":87990,"Directional":true},{"SourceID":87996,"TargetID":87998,"Directional":true},{"SourceID":119585,"TargetID":44444,"Directional":true}]},{"ID":5410,"SourceStructureID":142,"TargetStructureID":64774,"Label":"142-64774 via Ribbon Synapse from 126132 -> 64776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126132,"TargetID":64776,"Directional":true}]},{"ID":5411,"SourceStructureID":142,"TargetStructureID":72879,"Label":"142-72879 via Ribbon Synapse from 35931 -> 72881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35931,"TargetID":72881,"Directional":true}]},{"ID":5412,"SourceStructureID":142,"TargetStructureID":82543,"Label":"142-82543 via Ribbon Synapse from 49753 -> 126241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49753,"TargetID":126241,"Directional":true}]},{"ID":5413,"SourceStructureID":142,"TargetStructureID":84946,"Label":"142-84946 via Ribbon Synapse from 30694 -> 126286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30694,"TargetID":126286,"Directional":true}]},{"ID":5414,"SourceStructureID":142,"TargetStructureID":86106,"Label":"142-86106 via Ribbon Synapse from 49746 -> 126182","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49746,"TargetID":126182,"Directional":true}]},{"ID":5415,"SourceStructureID":142,"TargetStructureID":86110,"Label":"142-86110 via Ribbon Synapse from 49762 -> 86126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49762,"TargetID":86126,"Directional":true}]},{"ID":5416,"SourceStructureID":142,"TargetStructureID":87972,"Label":"142-87972 via Ribbon Synapse from 44448 -> 87983, 87994 -> 87992, 119585 -> 125954","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44448,"TargetID":87983,"Directional":true},{"SourceID":87994,"TargetID":87992,"Directional":true},{"SourceID":119585,"TargetID":125954,"Directional":true}]},{"ID":5417,"SourceStructureID":142,"TargetStructureID":87999,"Label":"142-87999 via Ribbon Synapse from 87997 -> 88000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87997,"TargetID":88000,"Directional":true}]},{"ID":5418,"SourceStructureID":142,"TargetStructureID":88055,"Label":"142-88055 via Ribbon Synapse from 50124 -> 88057","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50124,"TargetID":88057,"Directional":true}]},{"ID":5419,"SourceStructureID":142,"TargetStructureID":92295,"Label":"142-92295 via Ribbon Synapse from 49692 -> 127678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49692,"TargetID":127678,"Directional":true}]},{"ID":5420,"SourceStructureID":142,"TargetStructureID":92434,"Label":"142-92434 via BC Conventional Synapse from 119572 -> 119570, 126167 -> 126369","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119572,"TargetID":119570,"Directional":true},{"SourceID":126167,"TargetID":126369,"Directional":true}]},{"ID":5421,"SourceStructureID":142,"TargetStructureID":92434,"Label":"142-92434 via Ribbon Synapse from 92442 -> 126370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92442,"TargetID":126370,"Directional":true}]},{"ID":5422,"SourceStructureID":142,"TargetStructureID":92445,"Label":"142-92445 via Unknown from 126160 -> 126159","Type":"Unknown","Directional":true,"Links":[{"SourceID":126160,"TargetID":126159,"Directional":true}]},{"ID":5423,"SourceStructureID":142,"TargetStructureID":92935,"Label":"142-92935 via Ribbon Synapse from 30704 -> 116793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30704,"TargetID":116793,"Directional":true}]},{"ID":5424,"SourceStructureID":142,"TargetStructureID":103964,"Label":"142-103964 via Ribbon Synapse from 126140 -> 126142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126140,"TargetID":126142,"Directional":true}]},{"ID":5425,"SourceStructureID":142,"TargetStructureID":104053,"Label":"142-104053 via Ribbon Synapse from 119568 -> 119567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119568,"TargetID":119567,"Directional":true}]},{"ID":5426,"SourceStructureID":142,"TargetStructureID":115195,"Label":"142-115195 via Ribbon Synapse from 31803 -> 115198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31803,"TargetID":115198,"Directional":true}]},{"ID":5427,"SourceStructureID":142,"TargetStructureID":125934,"Label":"142-125934 via Ribbon Synapse from 32016 -> 125935","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32016,"TargetID":125935,"Directional":true}]},{"ID":5428,"SourceStructureID":142,"TargetStructureID":127667,"Label":"142-127667 via Ribbon Synapse from 31775 -> 127668, 125980 -> 127671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31775,"TargetID":127668,"Directional":true},{"SourceID":125980,"TargetID":127671,"Directional":true}]},{"ID":5429,"SourceStructureID":142,"TargetStructureID":136728,"Label":"142-136728 via Ribbon Synapse from 92929 -> 136729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92929,"TargetID":136729,"Directional":true}]},{"ID":5430,"SourceStructureID":146,"TargetStructureID":425,"Label":"146-425 via Conventional from 22094 -> 22095","Type":"Conventional","Directional":true,"Links":[{"SourceID":22094,"TargetID":22095,"Directional":true}]},{"ID":5431,"SourceStructureID":161,"TargetStructureID":5377,"Label":"161-5377 via Ribbon Synapse from 22736 -> 22734, 87016 -> 87014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22736,"TargetID":22734,"Directional":true},{"SourceID":87016,"TargetID":87014,"Directional":true}]},{"ID":5432,"SourceStructureID":161,"TargetStructureID":7147,"Label":"161-7147 via Ribbon Synapse from 11766 -> 11769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11766,"TargetID":11769,"Directional":true}]},{"ID":5433,"SourceStructureID":161,"TargetStructureID":12897,"Label":"161-12897 via Ribbon Synapse from 22868 -> 22867, 35586 -> 22862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22868,"TargetID":22867,"Directional":true},{"SourceID":35586,"TargetID":22862,"Directional":true}]},{"ID":5434,"SourceStructureID":161,"TargetStructureID":43784,"Label":"161-43784 via Ribbon Synapse from 11780 -> 43788","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11780,"TargetID":43788,"Directional":true}]},{"ID":5435,"SourceStructureID":161,"TargetStructureID":77068,"Label":"161-77068 via Ribbon Synapse from 77072 -> 77071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77072,"TargetID":77071,"Directional":true}]},{"ID":5436,"SourceStructureID":162,"TargetStructureID":5118,"Label":"162-5118 via Conventional from 6435 -> 6434","Type":"Conventional","Directional":true,"Links":[{"SourceID":6435,"TargetID":6434,"Directional":true}]},{"ID":5437,"SourceStructureID":162,"TargetStructureID":6203,"Label":"162-6203 via Conventional from 52645 -> 125784","Type":"Conventional","Directional":true,"Links":[{"SourceID":52645,"TargetID":125784,"Directional":true}]},{"ID":5438,"SourceStructureID":162,"TargetStructureID":8580,"Label":"162-8580 via Conventional from 11865 -> 59777","Type":"Conventional","Directional":true,"Links":[{"SourceID":11865,"TargetID":59777,"Directional":true}]},{"ID":5439,"SourceStructureID":165,"TargetStructureID":5351,"Label":"165-5351 via Ribbon Synapse from 12544 -> 24067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12544,"TargetID":24067,"Directional":true}]},{"ID":5440,"SourceStructureID":165,"TargetStructureID":6169,"Label":"165-6169 via Ribbon Synapse from 12559 -> 20775","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12559,"TargetID":20775,"Directional":true}]},{"ID":5441,"SourceStructureID":165,"TargetStructureID":9787,"Label":"165-9787 via Ribbon Synapse from 12506 -> 12068, 12507 -> 12068, 12586 -> 18052, 21681 -> 21682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12506,"TargetID":12068,"Directional":true},{"SourceID":12507,"TargetID":12068,"Directional":true},{"SourceID":12586,"TargetID":18052,"Directional":true},{"SourceID":21681,"TargetID":21682,"Directional":true}]},{"ID":5442,"SourceStructureID":165,"TargetStructureID":12210,"Label":"165-12210 via Ribbon Synapse from 12209 -> 12211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12209,"TargetID":12211,"Directional":true}]},{"ID":5443,"SourceStructureID":165,"TargetStructureID":12492,"Label":"165-12492 via Ribbon Synapse from 7095 -> 12499, 12489 -> 12499, 12490 -> 12499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7095,"TargetID":12499,"Directional":true},{"SourceID":12489,"TargetID":12499,"Directional":true},{"SourceID":12490,"TargetID":12499,"Directional":true}]},{"ID":5444,"SourceStructureID":165,"TargetStructureID":34336,"Label":"165-34336 via Ribbon Synapse from 12503 -> 34382, 12530 -> 34381, 12531 -> 34381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12503,"TargetID":34382,"Directional":true},{"SourceID":12530,"TargetID":34381,"Directional":true},{"SourceID":12531,"TargetID":34381,"Directional":true}]},{"ID":5445,"SourceStructureID":165,"TargetStructureID":46741,"Label":"165-46741 via Ribbon Synapse from 20863 -> 136949, 21664 -> 136958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20863,"TargetID":136949,"Directional":true},{"SourceID":21664,"TargetID":136958,"Directional":true}]},{"ID":5446,"SourceStructureID":165,"TargetStructureID":132202,"Label":"165-132202 via Ribbon Synapse from 12554 -> 132204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12554,"TargetID":132204,"Directional":true}]},{"ID":5447,"SourceStructureID":166,"TargetStructureID":390,"Label":"166-390 via Ribbon Synapse from 65224 -> 65223, 94748 -> 65220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65224,"TargetID":65223,"Directional":true},{"SourceID":94748,"TargetID":65220,"Directional":true}]},{"ID":5448,"SourceStructureID":166,"TargetStructureID":1620,"Label":"166-1620 via Ribbon Synapse from 4366 -> 16859, 4374 -> 101155, 16863 -> 16862, 20626 -> 16887, 20627 -> 16870","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4366,"TargetID":16859,"Directional":true},{"SourceID":4374,"TargetID":101155,"Directional":true},{"SourceID":16863,"TargetID":16862,"Directional":true},{"SourceID":20626,"TargetID":16887,"Directional":true},{"SourceID":20627,"TargetID":16870,"Directional":true}]},{"ID":5449,"SourceStructureID":166,"TargetStructureID":4890,"Label":"166-4890 via Ribbon Synapse from 4431 -> 5329, 5792 -> 5793, 5839 -> 4920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4431,"TargetID":5329,"Directional":true},{"SourceID":5792,"TargetID":5793,"Directional":true},{"SourceID":5839,"TargetID":4920,"Directional":true}]},{"ID":5450,"SourceStructureID":166,"TargetStructureID":5437,"Label":"166-5437 via Ribbon Synapse from 4434 -> 88062, 4439 -> 88064, 101163 -> 101162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4434,"TargetID":88062,"Directional":true},{"SourceID":4439,"TargetID":88064,"Directional":true},{"SourceID":101163,"TargetID":101162,"Directional":true}]},{"ID":5451,"SourceStructureID":166,"TargetStructureID":5439,"Label":"166-5439 via Ribbon Synapse from 39360 -> 70799, 70812 -> 70813, 71452 -> 71443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39360,"TargetID":70799,"Directional":true},{"SourceID":70812,"TargetID":70813,"Directional":true},{"SourceID":71452,"TargetID":71443,"Directional":true}]},{"ID":5452,"SourceStructureID":166,"TargetStructureID":5794,"Label":"166-5794 via Ribbon Synapse from 5766 -> 5809, 5791 -> 5795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5766,"TargetID":5809,"Directional":true},{"SourceID":5791,"TargetID":5795,"Directional":true}]},{"ID":5453,"SourceStructureID":166,"TargetStructureID":5919,"Label":"166-5919 via Ribbon Synapse from 4126 -> 5921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4126,"TargetID":5921,"Directional":true}]},{"ID":5454,"SourceStructureID":166,"TargetStructureID":6857,"Label":"166-6857 via BC Conventional Synapse from 71342 -> 71343","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71342,"TargetID":71343,"Directional":true}]},{"ID":5455,"SourceStructureID":166,"TargetStructureID":6857,"Label":"166-6857 via Ribbon Synapse from 39006 -> 39007","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39006,"TargetID":39007,"Directional":true}]},{"ID":5456,"SourceStructureID":166,"TargetStructureID":8579,"Label":"166-8579 via Ribbon Synapse from 19814 -> 19812, 19817 -> 19815, 19826 -> 19823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19814,"TargetID":19812,"Directional":true},{"SourceID":19817,"TargetID":19815,"Directional":true},{"SourceID":19826,"TargetID":19823,"Directional":true}]},{"ID":5457,"SourceStructureID":166,"TargetStructureID":8720,"Label":"166-8720 via Ribbon Synapse from 4498 -> 59976","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4498,"TargetID":59976,"Directional":true}]},{"ID":5458,"SourceStructureID":166,"TargetStructureID":16087,"Label":"166-16087 via Ribbon Synapse from 4378 -> 23106, 4409 -> 23107, 5797 -> 16088, 59886 -> 59885, 59895 -> 59894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4378,"TargetID":23106,"Directional":true},{"SourceID":4409,"TargetID":23107,"Directional":true},{"SourceID":5797,"TargetID":16088,"Directional":true},{"SourceID":59886,"TargetID":59885,"Directional":true},{"SourceID":59895,"TargetID":59894,"Directional":true}]},{"ID":5459,"SourceStructureID":166,"TargetStructureID":29198,"Label":"166-29198 via Ribbon Synapse from 71486 -> 29218, 71851 -> 29216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71486,"TargetID":29218,"Directional":true},{"SourceID":71851,"TargetID":29216,"Directional":true}]},{"ID":5460,"SourceStructureID":166,"TargetStructureID":29702,"Label":"166-29702 via Ribbon Synapse from 72573 -> 72572, 72621 -> 72619","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72573,"TargetID":72572,"Directional":true},{"SourceID":72621,"TargetID":72619,"Directional":true}]},{"ID":5461,"SourceStructureID":166,"TargetStructureID":30518,"Label":"166-30518 via Ribbon Synapse from 30522 -> 30520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30522,"TargetID":30520,"Directional":true}]},{"ID":5462,"SourceStructureID":166,"TargetStructureID":30526,"Label":"166-30526 via Ribbon Synapse from 4126 -> 30536, 23622 -> 30536, 23624 -> 30536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4126,"TargetID":30536,"Directional":true},{"SourceID":23622,"TargetID":30536,"Directional":true},{"SourceID":23624,"TargetID":30536,"Directional":true}]},{"ID":5463,"SourceStructureID":166,"TargetStructureID":32970,"Label":"166-32970 via Ribbon Synapse from 4421 -> 32986, 4423 -> 32985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4421,"TargetID":32986,"Directional":true},{"SourceID":4423,"TargetID":32985,"Directional":true}]},{"ID":5464,"SourceStructureID":166,"TargetStructureID":35222,"Label":"166-35222 via Ribbon Synapse from 35231 -> 35226","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35231,"TargetID":35226,"Directional":true}]},{"ID":5465,"SourceStructureID":166,"TargetStructureID":39345,"Label":"166-39345 via Ribbon Synapse from 4470 -> 39347, 4530 -> 66718, 39010 -> 39356, 39351 -> 39349, 39355 -> 39354, 39360 -> 39359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4470,"TargetID":39347,"Directional":true},{"SourceID":4530,"TargetID":66718,"Directional":true},{"SourceID":39010,"TargetID":39356,"Directional":true},{"SourceID":39351,"TargetID":39349,"Directional":true},{"SourceID":39355,"TargetID":39354,"Directional":true},{"SourceID":39360,"TargetID":39359,"Directional":true}]},{"ID":5466,"SourceStructureID":166,"TargetStructureID":39596,"Label":"166-39596 via Ribbon Synapse from 4427 -> 39599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4427,"TargetID":39599,"Directional":true}]},{"ID":5467,"SourceStructureID":166,"TargetStructureID":39602,"Label":"166-39602 via Ribbon Synapse from 39606 -> 39604","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39606,"TargetID":39604,"Directional":true}]},{"ID":5468,"SourceStructureID":166,"TargetStructureID":39615,"Label":"166-39615 via Ribbon Synapse from 4376 -> 39646, 4454 -> 39630, 4521 -> 39635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4376,"TargetID":39646,"Directional":true},{"SourceID":4454,"TargetID":39630,"Directional":true},{"SourceID":4521,"TargetID":39635,"Directional":true}]},{"ID":5469,"SourceStructureID":166,"TargetStructureID":39717,"Label":"166-39717 via Ribbon Synapse from 39723 -> 39722","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39723,"TargetID":39722,"Directional":true}]},{"ID":5470,"SourceStructureID":166,"TargetStructureID":56822,"Label":"166-56822 via Ribbon Synapse from 4554 -> 56823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4554,"TargetID":56823,"Directional":true}]},{"ID":5471,"SourceStructureID":166,"TargetStructureID":58696,"Label":"166-58696 via BC Conventional Synapse from 84810 -> 84811","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84810,"TargetID":84811,"Directional":true}]},{"ID":5472,"SourceStructureID":166,"TargetStructureID":58696,"Label":"166-58696 via Ribbon Synapse from 4494 -> 66721, 58707 -> 58706, 60006 -> 66711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4494,"TargetID":66721,"Directional":true},{"SourceID":58707,"TargetID":58706,"Directional":true},{"SourceID":60006,"TargetID":66711,"Directional":true}]},{"ID":5473,"SourceStructureID":166,"TargetStructureID":66278,"Label":"166-66278 via Ribbon Synapse from 28580 -> 81897, 60028 -> 66293, 81907 -> 81908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28580,"TargetID":81897,"Directional":true},{"SourceID":60028,"TargetID":66293,"Directional":true},{"SourceID":81907,"TargetID":81908,"Directional":true}]},{"ID":5474,"SourceStructureID":166,"TargetStructureID":66634,"Label":"166-66634 via Ribbon Synapse from 71339 -> 71340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71339,"TargetID":71340,"Directional":true}]},{"ID":5475,"SourceStructureID":166,"TargetStructureID":66713,"Label":"166-66713 via Ribbon Synapse from 60006 -> 66714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60006,"TargetID":66714,"Directional":true}]},{"ID":5476,"SourceStructureID":166,"TargetStructureID":69899,"Label":"166-69899 via Ribbon Synapse from 69898 -> 69900","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69898,"TargetID":69900,"Directional":true}]},{"ID":5477,"SourceStructureID":166,"TargetStructureID":69902,"Label":"166-69902 via Ribbon Synapse from 69901 -> 69903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69901,"TargetID":69903,"Directional":true}]},{"ID":5478,"SourceStructureID":166,"TargetStructureID":70572,"Label":"166-70572 via Ribbon Synapse from 39006 -> 70788","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39006,"TargetID":70788,"Directional":true}]},{"ID":5479,"SourceStructureID":166,"TargetStructureID":70577,"Label":"166-70577 via Ribbon Synapse from 70579 -> 70580","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70579,"TargetID":70580,"Directional":true}]},{"ID":5480,"SourceStructureID":166,"TargetStructureID":71351,"Label":"166-71351 via Ribbon Synapse from 4460 -> 71903, 60013 -> 71901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4460,"TargetID":71903,"Directional":true},{"SourceID":60013,"TargetID":71901,"Directional":true}]},{"ID":5481,"SourceStructureID":166,"TargetStructureID":71429,"Label":"166-71429 via BC Conventional Synapse from 71440 -> 71441","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71440,"TargetID":71441,"Directional":true}]},{"ID":5482,"SourceStructureID":166,"TargetStructureID":71445,"Label":"166-71445 via Ribbon Synapse from 71452 -> 71453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71452,"TargetID":71453,"Directional":true}]},{"ID":5483,"SourceStructureID":166,"TargetStructureID":71454,"Label":"166-71454 via Ribbon Synapse from 71452 -> 71455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71452,"TargetID":71455,"Directional":true}]},{"ID":5484,"SourceStructureID":166,"TargetStructureID":75939,"Label":"166-75939 via Ribbon Synapse from 72620 -> 75940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72620,"TargetID":75940,"Directional":true}]},{"ID":5485,"SourceStructureID":166,"TargetStructureID":88082,"Label":"166-88082 via Ribbon Synapse from 88099 -> 88098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88099,"TargetID":88098,"Directional":true}]},{"ID":5486,"SourceStructureID":166,"TargetStructureID":101156,"Label":"166-101156 via Ribbon Synapse from 4374 -> 101157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4374,"TargetID":101157,"Directional":true}]},{"ID":5487,"SourceStructureID":166,"TargetStructureID":116581,"Label":"166-116581 via Ribbon Synapse from 4454 -> 116582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4454,"TargetID":116582,"Directional":true}]},{"ID":5488,"SourceStructureID":166,"TargetStructureID":123322,"Label":"166-123322 via BC Conventional Synapse from 123321 -> 123323","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123321,"TargetID":123323,"Directional":true}]},{"ID":5489,"SourceStructureID":166,"TargetStructureID":125981,"Label":"166-125981 via Ribbon Synapse from 4448 -> 39969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4448,"TargetID":39969,"Directional":true}]},{"ID":5490,"SourceStructureID":168,"TargetStructureID":606,"Label":"168-606 via Ribbon Synapse from 4185 -> 53384, 33417 -> 53382, 44415 -> 53517, 53388 -> 53389, 53484 -> 53485","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4185,"TargetID":53384,"Directional":true},{"SourceID":33417,"TargetID":53382,"Directional":true},{"SourceID":44415,"TargetID":53517,"Directional":true},{"SourceID":53388,"TargetID":53389,"Directional":true},{"SourceID":53484,"TargetID":53485,"Directional":true}]},{"ID":5491,"SourceStructureID":168,"TargetStructureID":906,"Label":"168-906 via Cistern Pre from 12453 -> 27449","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":12453,"TargetID":27449,"Directional":true}]},{"ID":5492,"SourceStructureID":168,"TargetStructureID":3257,"Label":"168-3257 via BC Conventional Synapse from 119580 -> 119579","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119580,"TargetID":119579,"Directional":true}]},{"ID":5493,"SourceStructureID":168,"TargetStructureID":3257,"Label":"168-3257 via Cistern Pre from 39084 -> 39085","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":39084,"TargetID":39085,"Directional":true}]},{"ID":5494,"SourceStructureID":168,"TargetStructureID":5487,"Label":"168-5487 via BC Conventional Synapse from 126387 -> 126386","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":126387,"TargetID":126386,"Directional":true}]},{"ID":5495,"SourceStructureID":168,"TargetStructureID":5487,"Label":"168-5487 via Ribbon Synapse from 4148 -> 126388, 4185 -> 34597, 4196 -> 34596, 4206 -> 34598, 29842 -> 29843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4148,"TargetID":126388,"Directional":true},{"SourceID":4185,"TargetID":34597,"Directional":true},{"SourceID":4196,"TargetID":34596,"Directional":true},{"SourceID":4206,"TargetID":34598,"Directional":true},{"SourceID":29842,"TargetID":29843,"Directional":true}]},{"ID":5496,"SourceStructureID":168,"TargetStructureID":5489,"Label":"168-5489 via BC Conventional Synapse from 119043 -> 119042","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119043,"TargetID":119042,"Directional":true}]},{"ID":5497,"SourceStructureID":168,"TargetStructureID":7576,"Label":"168-7576 via Ribbon Synapse from 4304 -> 54842, 50946 -> 54834, 55007 -> 55006, 55011 -> 55009","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4304,"TargetID":54842,"Directional":true},{"SourceID":50946,"TargetID":54834,"Directional":true},{"SourceID":55007,"TargetID":55006,"Directional":true},{"SourceID":55011,"TargetID":55009,"Directional":true}]},{"ID":5498,"SourceStructureID":168,"TargetStructureID":34055,"Label":"168-34055 via Ribbon Synapse from 4228 -> 34086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4228,"TargetID":34086,"Directional":true}]},{"ID":5499,"SourceStructureID":168,"TargetStructureID":40444,"Label":"168-40444 via Ribbon Synapse from 40443 -> 40445","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40443,"TargetID":40445,"Directional":true}]},{"ID":5500,"SourceStructureID":168,"TargetStructureID":44346,"Label":"168-44346 via Ribbon Synapse from 44415 -> 44413, 44426 -> 44425","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44415,"TargetID":44413,"Directional":true},{"SourceID":44426,"TargetID":44425,"Directional":true}]},{"ID":5501,"SourceStructureID":168,"TargetStructureID":54958,"Label":"168-54958 via Ribbon Synapse from 29841 -> 54960","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29841,"TargetID":54960,"Directional":true}]},{"ID":5502,"SourceStructureID":168,"TargetStructureID":81916,"Label":"168-81916 via Ribbon Synapse from 81918 -> 81961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81918,"TargetID":81961,"Directional":true}]},{"ID":5503,"SourceStructureID":168,"TargetStructureID":81919,"Label":"168-81919 via Ribbon Synapse from 81918 -> 81920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81918,"TargetID":81920,"Directional":true}]},{"ID":5504,"SourceStructureID":168,"TargetStructureID":81921,"Label":"168-81921 via Ribbon Synapse from 81918 -> 81958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81918,"TargetID":81958,"Directional":true}]},{"ID":5505,"SourceStructureID":168,"TargetStructureID":81925,"Label":"168-81925 via BC Conventional Synapse from 81971 -> 81972","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81971,"TargetID":81972,"Directional":true}]},{"ID":5506,"SourceStructureID":168,"TargetStructureID":81925,"Label":"168-81925 via Ribbon Synapse from 81967 -> 81970","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81967,"TargetID":81970,"Directional":true}]},{"ID":5507,"SourceStructureID":168,"TargetStructureID":81946,"Label":"168-81946 via BC Conventional Synapse from 82221 -> 82222","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":82221,"TargetID":82222,"Directional":true}]},{"ID":5508,"SourceStructureID":168,"TargetStructureID":81968,"Label":"168-81968 via Ribbon Synapse from 81967 -> 81969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81967,"TargetID":81969,"Directional":true}]},{"ID":5509,"SourceStructureID":168,"TargetStructureID":81989,"Label":"168-81989 via Ribbon Synapse from 4294 -> 81994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4294,"TargetID":81994,"Directional":true}]},{"ID":5510,"SourceStructureID":168,"TargetStructureID":81990,"Label":"168-81990 via Ribbon Synapse from 4294 -> 81993","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4294,"TargetID":81993,"Directional":true}]},{"ID":5511,"SourceStructureID":168,"TargetStructureID":81991,"Label":"168-81991 via Ribbon Synapse from 4289 -> 82225, 4294 -> 81992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4289,"TargetID":82225,"Directional":true},{"SourceID":4294,"TargetID":81992,"Directional":true}]},{"ID":5512,"SourceStructureID":168,"TargetStructureID":82217,"Label":"168-82217 via Ribbon Synapse from 82215 -> 82218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82215,"TargetID":82218,"Directional":true}]},{"ID":5513,"SourceStructureID":168,"TargetStructureID":91178,"Label":"168-91178 via BC Conventional Synapse from 91751 -> 91750","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91751,"TargetID":91750,"Directional":true}]},{"ID":5514,"SourceStructureID":168,"TargetStructureID":91593,"Label":"168-91593 via Ribbon Synapse from 4270 -> 91598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4270,"TargetID":91598,"Directional":true}]},{"ID":5515,"SourceStructureID":168,"TargetStructureID":91742,"Label":"168-91742 via Ribbon Synapse from 92773 -> 92774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92773,"TargetID":92774,"Directional":true}]},{"ID":5516,"SourceStructureID":168,"TargetStructureID":112211,"Label":"168-112211 via Ribbon Synapse from 4306 -> 112212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4306,"TargetID":112212,"Directional":true}]},{"ID":5517,"SourceStructureID":170,"TargetStructureID":606,"Label":"170-606 via Ribbon Synapse from 1411 -> 53327, 1422 -> 53201, 47805 -> 47806, 53348 -> 53347, 53354 -> 53347, 53358 -> 53357","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1411,"TargetID":53327,"Directional":true},{"SourceID":1422,"TargetID":53201,"Directional":true},{"SourceID":47805,"TargetID":47806,"Directional":true},{"SourceID":53348,"TargetID":53347,"Directional":true},{"SourceID":53354,"TargetID":53347,"Directional":true},{"SourceID":53358,"TargetID":53357,"Directional":true}]},{"ID":5518,"SourceStructureID":170,"TargetStructureID":5481,"Label":"170-5481 via Ribbon Synapse from 39515 -> 90247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39515,"TargetID":90247,"Directional":true}]},{"ID":5519,"SourceStructureID":170,"TargetStructureID":9769,"Label":"170-9769 via Ribbon Synapse from 1222 -> 29844, 1224 -> 54957, 1228 -> 29845, 1314 -> 29825, 1315 -> 89730, 88757 -> 88758","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1222,"TargetID":29844,"Directional":true},{"SourceID":1224,"TargetID":54957,"Directional":true},{"SourceID":1228,"TargetID":29845,"Directional":true},{"SourceID":1314,"TargetID":29825,"Directional":true},{"SourceID":1315,"TargetID":89730,"Directional":true},{"SourceID":88757,"TargetID":88758,"Directional":true}]},{"ID":5520,"SourceStructureID":170,"TargetStructureID":18693,"Label":"170-18693 via Ribbon Synapse from 1244 -> 89744, 1252 -> 89745, 89490 -> 89491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1244,"TargetID":89744,"Directional":true},{"SourceID":1252,"TargetID":89745,"Directional":true},{"SourceID":89490,"TargetID":89491,"Directional":true}]},{"ID":5521,"SourceStructureID":170,"TargetStructureID":23512,"Label":"170-23512 via Ribbon Synapse from 1290 -> 23533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1290,"TargetID":23533,"Directional":true}]},{"ID":5522,"SourceStructureID":170,"TargetStructureID":29827,"Label":"170-29827 via Ribbon Synapse from 1294 -> 29828, 1315 -> 89724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1294,"TargetID":29828,"Directional":true},{"SourceID":1315,"TargetID":89724,"Directional":true}]},{"ID":5523,"SourceStructureID":170,"TargetStructureID":32920,"Label":"170-32920 via Ribbon Synapse from 1224 -> 32922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1224,"TargetID":32922,"Directional":true}]},{"ID":5524,"SourceStructureID":170,"TargetStructureID":33675,"Label":"170-33675 via Ribbon Synapse from 28368 -> 33678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28368,"TargetID":33678,"Directional":true}]},{"ID":5525,"SourceStructureID":170,"TargetStructureID":38949,"Label":"170-38949 via Ribbon Synapse from 1331 -> 39032","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1331,"TargetID":39032,"Directional":true}]},{"ID":5526,"SourceStructureID":170,"TargetStructureID":51617,"Label":"170-51617 via Ribbon Synapse from 89205 -> 89862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89205,"TargetID":89862,"Directional":true}]},{"ID":5527,"SourceStructureID":170,"TargetStructureID":71882,"Label":"170-71882 via Ribbon Synapse from 1272 -> 90439, 1359 -> 90410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1272,"TargetID":90439,"Directional":true},{"SourceID":1359,"TargetID":90410,"Directional":true}]},{"ID":5528,"SourceStructureID":170,"TargetStructureID":74727,"Label":"170-74727 via Ribbon Synapse from 147492 -> 147493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147492,"TargetID":147493,"Directional":true}]},{"ID":5529,"SourceStructureID":170,"TargetStructureID":88367,"Label":"170-88367 via Ribbon Synapse from 1144 -> 88369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1144,"TargetID":88369,"Directional":true}]},{"ID":5530,"SourceStructureID":170,"TargetStructureID":88424,"Label":"170-88424 via Ribbon Synapse from 1215 -> 88428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1215,"TargetID":88428,"Directional":true}]},{"ID":5531,"SourceStructureID":170,"TargetStructureID":88457,"Label":"170-88457 via Ribbon Synapse from 1222 -> 88458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1222,"TargetID":88458,"Directional":true}]},{"ID":5532,"SourceStructureID":170,"TargetStructureID":88479,"Label":"170-88479 via Ribbon Synapse from 1228 -> 88481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1228,"TargetID":88481,"Directional":true}]},{"ID":5533,"SourceStructureID":170,"TargetStructureID":88559,"Label":"170-88559 via Ribbon Synapse from 1230 -> 88560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1230,"TargetID":88560,"Directional":true}]},{"ID":5534,"SourceStructureID":170,"TargetStructureID":88584,"Label":"170-88584 via BC Conventional Synapse from 88592 -> 88593","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":88592,"TargetID":88593,"Directional":true}]},{"ID":5535,"SourceStructureID":170,"TargetStructureID":88689,"Label":"170-88689 via Ribbon Synapse from 1237 -> 88707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1237,"TargetID":88707,"Directional":true}]},{"ID":5536,"SourceStructureID":170,"TargetStructureID":88692,"Label":"170-88692 via Ribbon Synapse from 28364 -> 88697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28364,"TargetID":88697,"Directional":true}]},{"ID":5537,"SourceStructureID":170,"TargetStructureID":88702,"Label":"170-88702 via Ribbon Synapse from 1234 -> 88704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1234,"TargetID":88704,"Directional":true}]},{"ID":5538,"SourceStructureID":170,"TargetStructureID":88717,"Label":"170-88717 via Ribbon Synapse from 1244 -> 89518, 1252 -> 89519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1244,"TargetID":89518,"Directional":true},{"SourceID":1252,"TargetID":89519,"Directional":true}]},{"ID":5539,"SourceStructureID":170,"TargetStructureID":88747,"Label":"170-88747 via Ribbon Synapse from 88751 -> 88752","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88751,"TargetID":88752,"Directional":true}]},{"ID":5540,"SourceStructureID":170,"TargetStructureID":88759,"Label":"170-88759 via Ribbon Synapse from 88757 -> 88760","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88757,"TargetID":88760,"Directional":true}]},{"ID":5541,"SourceStructureID":170,"TargetStructureID":88775,"Label":"170-88775 via BC Conventional Synapse from 88779 -> 88776","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":88779,"TargetID":88776,"Directional":true}]},{"ID":5542,"SourceStructureID":170,"TargetStructureID":88793,"Label":"170-88793 via Ribbon Synapse from 88794 -> 88795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88794,"TargetID":88795,"Directional":true}]},{"ID":5543,"SourceStructureID":170,"TargetStructureID":88797,"Label":"170-88797 via Ribbon Synapse from 88794 -> 88798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88794,"TargetID":88798,"Directional":true}]},{"ID":5544,"SourceStructureID":170,"TargetStructureID":88810,"Label":"170-88810 via Ribbon Synapse from 1365 -> 88811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1365,"TargetID":88811,"Directional":true}]},{"ID":5545,"SourceStructureID":170,"TargetStructureID":88817,"Label":"170-88817 via Ribbon Synapse from 1338 -> 88821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1338,"TargetID":88821,"Directional":true}]},{"ID":5546,"SourceStructureID":170,"TargetStructureID":88945,"Label":"170-88945 via Ribbon Synapse from 1345 -> 88949, 28374 -> 88946, 28375 -> 88949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1345,"TargetID":88949,"Directional":true},{"SourceID":28374,"TargetID":88946,"Directional":true},{"SourceID":28375,"TargetID":88949,"Directional":true}]},{"ID":5547,"SourceStructureID":170,"TargetStructureID":88947,"Label":"170-88947 via Ribbon Synapse from 1344 -> 88960, 28375 -> 88948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1344,"TargetID":88960,"Directional":true},{"SourceID":28375,"TargetID":88948,"Directional":true}]},{"ID":5548,"SourceStructureID":170,"TargetStructureID":88986,"Label":"170-88986 via Ribbon Synapse from 1342 -> 88991","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1342,"TargetID":88991,"Directional":true}]},{"ID":5549,"SourceStructureID":170,"TargetStructureID":88988,"Label":"170-88988 via Ribbon Synapse from 1342 -> 88992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1342,"TargetID":88992,"Directional":true}]},{"ID":5550,"SourceStructureID":170,"TargetStructureID":89008,"Label":"170-89008 via Ribbon Synapse from 89007 -> 89010","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89007,"TargetID":89010,"Directional":true}]},{"ID":5551,"SourceStructureID":170,"TargetStructureID":89034,"Label":"170-89034 via Ribbon Synapse from 1347 -> 89035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1347,"TargetID":89035,"Directional":true}]},{"ID":5552,"SourceStructureID":170,"TargetStructureID":89078,"Label":"170-89078 via Ribbon Synapse from 985 -> 89079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":985,"TargetID":89079,"Directional":true}]},{"ID":5553,"SourceStructureID":170,"TargetStructureID":89086,"Label":"170-89086 via Ribbon Synapse from 28368 -> 89156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28368,"TargetID":89156,"Directional":true}]},{"ID":5554,"SourceStructureID":170,"TargetStructureID":89175,"Label":"170-89175 via Ribbon Synapse from 1263 -> 89495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1263,"TargetID":89495,"Directional":true}]},{"ID":5555,"SourceStructureID":170,"TargetStructureID":89217,"Label":"170-89217 via Ribbon Synapse from 1351 -> 89218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1351,"TargetID":89218,"Directional":true}]},{"ID":5556,"SourceStructureID":170,"TargetStructureID":89246,"Label":"170-89246 via Ribbon Synapse from 1278 -> 89247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1278,"TargetID":89247,"Directional":true}]},{"ID":5557,"SourceStructureID":170,"TargetStructureID":89359,"Label":"170-89359 via Ribbon Synapse from 1279 -> 89360","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1279,"TargetID":89360,"Directional":true}]},{"ID":5558,"SourceStructureID":170,"TargetStructureID":89367,"Label":"170-89367 via Ribbon Synapse from 89371 -> 89368","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89371,"TargetID":89368,"Directional":true}]},{"ID":5559,"SourceStructureID":170,"TargetStructureID":89377,"Label":"170-89377 via Ribbon Synapse from 89376 -> 89379, 89382 -> 89383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89376,"TargetID":89379,"Directional":true},{"SourceID":89382,"TargetID":89383,"Directional":true}]},{"ID":5560,"SourceStructureID":170,"TargetStructureID":89400,"Label":"170-89400 via Ribbon Synapse from 89401 -> 89403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89401,"TargetID":89403,"Directional":true}]},{"ID":5561,"SourceStructureID":170,"TargetStructureID":89402,"Label":"170-89402 via Ribbon Synapse from 89401 -> 89404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89401,"TargetID":89404,"Directional":true}]},{"ID":5562,"SourceStructureID":170,"TargetStructureID":89407,"Label":"170-89407 via Ribbon Synapse from 89406 -> 89408","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89406,"TargetID":89408,"Directional":true}]},{"ID":5563,"SourceStructureID":170,"TargetStructureID":89417,"Label":"170-89417 via Ribbon Synapse from 1283 -> 89418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1283,"TargetID":89418,"Directional":true}]},{"ID":5564,"SourceStructureID":170,"TargetStructureID":89472,"Label":"170-89472 via Ribbon Synapse from 1285 -> 89473, 1288 -> 89474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1285,"TargetID":89473,"Directional":true},{"SourceID":1288,"TargetID":89474,"Directional":true}]},{"ID":5565,"SourceStructureID":170,"TargetStructureID":89475,"Label":"170-89475 via Ribbon Synapse from 1288 -> 89476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1288,"TargetID":89476,"Directional":true}]},{"ID":5566,"SourceStructureID":170,"TargetStructureID":89496,"Label":"170-89496 via Ribbon Synapse from 1263 -> 89497, 1275 -> 90052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1263,"TargetID":89497,"Directional":true},{"SourceID":1275,"TargetID":90052,"Directional":true}]},{"ID":5567,"SourceStructureID":170,"TargetStructureID":89669,"Label":"170-89669 via Ribbon Synapse from 1298 -> 89671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1298,"TargetID":89671,"Directional":true}]},{"ID":5568,"SourceStructureID":170,"TargetStructureID":89687,"Label":"170-89687 via Ribbon Synapse from 1301 -> 89689, 89686 -> 89688","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1301,"TargetID":89689,"Directional":true},{"SourceID":89686,"TargetID":89688,"Directional":true}]},{"ID":5569,"SourceStructureID":170,"TargetStructureID":89698,"Label":"170-89698 via Ribbon Synapse from 1301 -> 89700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1301,"TargetID":89700,"Directional":true}]},{"ID":5570,"SourceStructureID":170,"TargetStructureID":89739,"Label":"170-89739 via BC Conventional Synapse from 89740 -> 89741","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":89740,"TargetID":89741,"Directional":true}]},{"ID":5571,"SourceStructureID":170,"TargetStructureID":89855,"Label":"170-89855 via Ribbon Synapse from 89205 -> 89861","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89205,"TargetID":89861,"Directional":true}]},{"ID":5572,"SourceStructureID":170,"TargetStructureID":89888,"Label":"170-89888 via Ribbon Synapse from 89206 -> 89889","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89206,"TargetID":89889,"Directional":true}]},{"ID":5573,"SourceStructureID":170,"TargetStructureID":89935,"Label":"170-89935 via Ribbon Synapse from 89933 -> 89940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89933,"TargetID":89940,"Directional":true}]},{"ID":5574,"SourceStructureID":170,"TargetStructureID":89985,"Label":"170-89985 via Ribbon Synapse from 89986 -> 89987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89986,"TargetID":89987,"Directional":true}]},{"ID":5575,"SourceStructureID":170,"TargetStructureID":90047,"Label":"170-90047 via Ribbon Synapse from 28370 -> 90060, 28373 -> 90085","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28370,"TargetID":90060,"Directional":true},{"SourceID":28373,"TargetID":90085,"Directional":true}]},{"ID":5576,"SourceStructureID":170,"TargetStructureID":90053,"Label":"170-90053 via Ribbon Synapse from 1272 -> 90058, 1275 -> 90057, 28373 -> 90086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1272,"TargetID":90058,"Directional":true},{"SourceID":1275,"TargetID":90057,"Directional":true},{"SourceID":28373,"TargetID":90086,"Directional":true}]},{"ID":5577,"SourceStructureID":170,"TargetStructureID":90061,"Label":"170-90061 via Ribbon Synapse from 28370 -> 90062","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28370,"TargetID":90062,"Directional":true}]},{"ID":5578,"SourceStructureID":170,"TargetStructureID":90077,"Label":"170-90077 via Ribbon Synapse from 28372 -> 90081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28372,"TargetID":90081,"Directional":true}]},{"ID":5579,"SourceStructureID":170,"TargetStructureID":90078,"Label":"170-90078 via Ribbon Synapse from 28372 -> 90082","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28372,"TargetID":90082,"Directional":true}]},{"ID":5580,"SourceStructureID":170,"TargetStructureID":90079,"Label":"170-90079 via Ribbon Synapse from 28372 -> 90080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28372,"TargetID":90080,"Directional":true}]},{"ID":5581,"SourceStructureID":170,"TargetStructureID":90241,"Label":"170-90241 via Ribbon Synapse from 39515 -> 90242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39515,"TargetID":90242,"Directional":true}]},{"ID":5582,"SourceStructureID":170,"TargetStructureID":90248,"Label":"170-90248 via Ribbon Synapse from 1278 -> 90249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1278,"TargetID":90249,"Directional":true}]},{"ID":5583,"SourceStructureID":170,"TargetStructureID":90258,"Label":"170-90258 via Ribbon Synapse from 90257 -> 90259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90257,"TargetID":90259,"Directional":true}]},{"ID":5584,"SourceStructureID":170,"TargetStructureID":90260,"Label":"170-90260 via Ribbon Synapse from 90257 -> 90261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90257,"TargetID":90261,"Directional":true}]},{"ID":5585,"SourceStructureID":170,"TargetStructureID":90269,"Label":"170-90269 via Ribbon Synapse from 53354 -> 90270","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53354,"TargetID":90270,"Directional":true}]},{"ID":5586,"SourceStructureID":170,"TargetStructureID":90273,"Label":"170-90273 via Ribbon Synapse from 90272 -> 90277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90272,"TargetID":90277,"Directional":true}]},{"ID":5587,"SourceStructureID":170,"TargetStructureID":90278,"Label":"170-90278 via Ribbon Synapse from 90272 -> 90279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90272,"TargetID":90279,"Directional":true}]},{"ID":5588,"SourceStructureID":170,"TargetStructureID":90287,"Label":"170-90287 via Ribbon Synapse from 90286 -> 90288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90286,"TargetID":90288,"Directional":true}]},{"ID":5589,"SourceStructureID":170,"TargetStructureID":90296,"Label":"170-90296 via Ribbon Synapse from 90307 -> 90308","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90307,"TargetID":90308,"Directional":true}]},{"ID":5590,"SourceStructureID":170,"TargetStructureID":90309,"Label":"170-90309 via Ribbon Synapse from 90307 -> 90310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90307,"TargetID":90310,"Directional":true}]},{"ID":5591,"SourceStructureID":170,"TargetStructureID":90327,"Label":"170-90327 via Ribbon Synapse from 53358 -> 90329","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53358,"TargetID":90329,"Directional":true}]},{"ID":5592,"SourceStructureID":170,"TargetStructureID":90330,"Label":"170-90330 via Ribbon Synapse from 53358 -> 90331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53358,"TargetID":90331,"Directional":true}]},{"ID":5593,"SourceStructureID":170,"TargetStructureID":90366,"Label":"170-90366 via Ribbon Synapse from 1404 -> 90367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1404,"TargetID":90367,"Directional":true}]},{"ID":5594,"SourceStructureID":170,"TargetStructureID":90368,"Label":"170-90368 via Ribbon Synapse from 1411 -> 90370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1411,"TargetID":90370,"Directional":true}]},{"ID":5595,"SourceStructureID":170,"TargetStructureID":90409,"Label":"170-90409 via Ribbon Synapse from 90407 -> 90411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90407,"TargetID":90411,"Directional":true}]},{"ID":5596,"SourceStructureID":170,"TargetStructureID":90421,"Label":"170-90421 via Ribbon Synapse from 15995 -> 90422","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15995,"TargetID":90422,"Directional":true}]},{"ID":5597,"SourceStructureID":170,"TargetStructureID":90423,"Label":"170-90423 via Ribbon Synapse from 90425 -> 90426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90425,"TargetID":90426,"Directional":true}]},{"ID":5598,"SourceStructureID":170,"TargetStructureID":90428,"Label":"170-90428 via Ribbon Synapse from 90427 -> 90431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90427,"TargetID":90431,"Directional":true}]},{"ID":5599,"SourceStructureID":170,"TargetStructureID":90460,"Label":"170-90460 via Ribbon Synapse from 15997 -> 90462","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15997,"TargetID":90462,"Directional":true}]},{"ID":5600,"SourceStructureID":170,"TargetStructureID":90550,"Label":"170-90550 via Ribbon Synapse from 90549 -> 90556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90549,"TargetID":90556,"Directional":true}]},{"ID":5601,"SourceStructureID":170,"TargetStructureID":90558,"Label":"170-90558 via Ribbon Synapse from 90549 -> 90559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90549,"TargetID":90559,"Directional":true}]},{"ID":5602,"SourceStructureID":170,"TargetStructureID":90563,"Label":"170-90563 via Ribbon Synapse from 1413 -> 90565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1413,"TargetID":90565,"Directional":true}]},{"ID":5603,"SourceStructureID":170,"TargetStructureID":90566,"Label":"170-90566 via Ribbon Synapse from 1413 -> 90567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1413,"TargetID":90567,"Directional":true}]},{"ID":5604,"SourceStructureID":170,"TargetStructureID":90570,"Label":"170-90570 via Ribbon Synapse from 1426 -> 90571, 133996 -> 133997","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1426,"TargetID":90571,"Directional":true},{"SourceID":133996,"TargetID":133997,"Directional":true}]},{"ID":5605,"SourceStructureID":170,"TargetStructureID":90572,"Label":"170-90572 via Ribbon Synapse from 1426 -> 90573","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1426,"TargetID":90573,"Directional":true}]},{"ID":5606,"SourceStructureID":170,"TargetStructureID":90577,"Label":"170-90577 via Ribbon Synapse from 90576 -> 90578","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90576,"TargetID":90578,"Directional":true}]},{"ID":5607,"SourceStructureID":170,"TargetStructureID":90579,"Label":"170-90579 via Ribbon Synapse from 90576 -> 90580","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90576,"TargetID":90580,"Directional":true}]},{"ID":5608,"SourceStructureID":170,"TargetStructureID":90591,"Label":"170-90591 via Ribbon Synapse from 1422 -> 90592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1422,"TargetID":90592,"Directional":true}]},{"ID":5609,"SourceStructureID":170,"TargetStructureID":90600,"Label":"170-90600 via Ribbon Synapse from 1434 -> 90601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1434,"TargetID":90601,"Directional":true}]},{"ID":5610,"SourceStructureID":170,"TargetStructureID":90602,"Label":"170-90602 via Ribbon Synapse from 1434 -> 90603","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1434,"TargetID":90603,"Directional":true}]},{"ID":5611,"SourceStructureID":170,"TargetStructureID":90622,"Label":"170-90622 via Ribbon Synapse from 90621 -> 90623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90621,"TargetID":90623,"Directional":true}]},{"ID":5612,"SourceStructureID":170,"TargetStructureID":90626,"Label":"170-90626 via Ribbon Synapse from 90621 -> 90627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90621,"TargetID":90627,"Directional":true}]},{"ID":5613,"SourceStructureID":171,"TargetStructureID":591,"Label":"171-591 via Ribbon Synapse from 15443 -> 15445","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15443,"TargetID":15445,"Directional":true}]},{"ID":5614,"SourceStructureID":171,"TargetStructureID":3257,"Label":"171-3257 via Ribbon Synapse from 15447 -> 15446, 15448 -> 15449, 15460 -> 15459, 22911 -> 22909","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15447,"TargetID":15446,"Directional":true},{"SourceID":15448,"TargetID":15449,"Directional":true},{"SourceID":15460,"TargetID":15459,"Directional":true},{"SourceID":22911,"TargetID":22909,"Directional":true}]},{"ID":5615,"SourceStructureID":171,"TargetStructureID":5860,"Label":"171-5860 via Ribbon Synapse from 14737 -> 14738, 87730 -> 87731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14737,"TargetID":14738,"Directional":true},{"SourceID":87730,"TargetID":87731,"Directional":true}]},{"ID":5616,"SourceStructureID":171,"TargetStructureID":6169,"Label":"171-6169 via Ribbon Synapse from 6001 -> 16244, 9713 -> 133073, 15450 -> 16241, 29467 -> 29466, 29470 -> 29469, 29471 -> 29472, 133088 -> 133087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6001,"TargetID":16244,"Directional":true},{"SourceID":9713,"TargetID":133073,"Directional":true},{"SourceID":15450,"TargetID":16241,"Directional":true},{"SourceID":29467,"TargetID":29466,"Directional":true},{"SourceID":29470,"TargetID":29469,"Directional":true},{"SourceID":29471,"TargetID":29472,"Directional":true},{"SourceID":133088,"TargetID":133087,"Directional":true}]},{"ID":5617,"SourceStructureID":172,"TargetStructureID":3257,"Label":"172-3257 via Ribbon Synapse from 128138 -> 18067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128138,"TargetID":18067,"Directional":true}]},{"ID":5618,"SourceStructureID":172,"TargetStructureID":5860,"Label":"172-5860 via Ribbon Synapse from 29464 -> 29465, 119985 -> 119986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29464,"TargetID":29465,"Directional":true},{"SourceID":119985,"TargetID":119986,"Directional":true}]},{"ID":5619,"SourceStructureID":172,"TargetStructureID":6169,"Label":"172-6169 via Ribbon Synapse from 12219 -> 12226, 46369 -> 46370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12219,"TargetID":12226,"Directional":true},{"SourceID":46369,"TargetID":46370,"Directional":true}]},{"ID":5620,"SourceStructureID":172,"TargetStructureID":10574,"Label":"172-10574 via Ribbon Synapse from 84546 -> 10598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84546,"TargetID":10598,"Directional":true}]},{"ID":5621,"SourceStructureID":172,"TargetStructureID":12203,"Label":"172-12203 via Ribbon Synapse from 12232 -> 12205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12232,"TargetID":12205,"Directional":true}]},{"ID":5622,"SourceStructureID":172,"TargetStructureID":13448,"Label":"172-13448 via Ribbon Synapse from 119992 -> 24298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119992,"TargetID":24298,"Directional":true}]},{"ID":5623,"SourceStructureID":172,"TargetStructureID":31486,"Label":"172-31486 via Ribbon Synapse from 31633 -> 31534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31633,"TargetID":31534,"Directional":true}]},{"ID":5624,"SourceStructureID":172,"TargetStructureID":46359,"Label":"172-46359 via Ribbon Synapse from 44637 -> 46365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44637,"TargetID":46365,"Directional":true}]},{"ID":5625,"SourceStructureID":172,"TargetStructureID":128122,"Label":"172-128122 via Ribbon Synapse from 128134 -> 128132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128134,"TargetID":128132,"Directional":true}]},{"ID":5626,"SourceStructureID":172,"TargetStructureID":136432,"Label":"172-136432 via Ribbon Synapse from 136545 -> 136544","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136545,"TargetID":136544,"Directional":true}]},{"ID":5627,"SourceStructureID":173,"TargetStructureID":5377,"Label":"173-5377 via Ribbon Synapse from 11998 -> 87082, 12018 -> 87064, 87071 -> 87081, 128180 -> 128182","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11998,"TargetID":87082,"Directional":true},{"SourceID":12018,"TargetID":87064,"Directional":true},{"SourceID":87071,"TargetID":87081,"Directional":true},{"SourceID":128180,"TargetID":128182,"Directional":true}]},{"ID":5628,"SourceStructureID":173,"TargetStructureID":5435,"Label":"173-5435 via Ribbon Synapse from 12038 -> 24349, 60064 -> 60065","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12038,"TargetID":24349,"Directional":true},{"SourceID":60064,"TargetID":60065,"Directional":true}]},{"ID":5629,"SourceStructureID":173,"TargetStructureID":6169,"Label":"173-6169 via Ribbon Synapse from 5911 -> 88190, 11986 -> 60924, 12002 -> 60928","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5911,"TargetID":88190,"Directional":true},{"SourceID":11986,"TargetID":60924,"Directional":true},{"SourceID":12002,"TargetID":60928,"Directional":true}]},{"ID":5630,"SourceStructureID":173,"TargetStructureID":7073,"Label":"173-7073 via Ribbon Synapse from 19588 -> 19586","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19588,"TargetID":19586,"Directional":true}]},{"ID":5631,"SourceStructureID":173,"TargetStructureID":7113,"Label":"173-7113 via Ribbon Synapse from 12028 -> 18103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12028,"TargetID":18103,"Directional":true}]},{"ID":5632,"SourceStructureID":173,"TargetStructureID":7145,"Label":"173-7145 via Ribbon Synapse from 12127 -> 15828","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12127,"TargetID":15828,"Directional":true}]},{"ID":5633,"SourceStructureID":173,"TargetStructureID":9787,"Label":"173-9787 via Ribbon Synapse from 11984 -> 18085, 12028 -> 24350, 24293 -> 24292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11984,"TargetID":18085,"Directional":true},{"SourceID":12028,"TargetID":24350,"Directional":true},{"SourceID":24293,"TargetID":24292,"Directional":true}]},{"ID":5634,"SourceStructureID":173,"TargetStructureID":12203,"Label":"173-12203 via Ribbon Synapse from 12035 -> 12251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12035,"TargetID":12251,"Directional":true}]},{"ID":5635,"SourceStructureID":173,"TargetStructureID":20681,"Label":"173-20681 via BC Conventional Synapse from 12032 -> 20751","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":12032,"TargetID":20751,"Directional":true}]},{"ID":5636,"SourceStructureID":173,"TargetStructureID":31486,"Label":"173-31486 via Ribbon Synapse from 11891 -> 31643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11891,"TargetID":31643,"Directional":true}]},{"ID":5637,"SourceStructureID":173,"TargetStructureID":46389,"Label":"173-46389 via Ribbon Synapse from 12098 -> 60744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12098,"TargetID":60744,"Directional":true}]},{"ID":5638,"SourceStructureID":173,"TargetStructureID":50240,"Label":"173-50240 via Ribbon Synapse from 11986 -> 60925","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11986,"TargetID":60925,"Directional":true}]},{"ID":5639,"SourceStructureID":173,"TargetStructureID":54264,"Label":"173-54264 via Ribbon Synapse from 13042 -> 54279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13042,"TargetID":54279,"Directional":true}]},{"ID":5640,"SourceStructureID":173,"TargetStructureID":85856,"Label":"173-85856 via Ribbon Synapse from 7053 -> 11887, 11873 -> 11886, 12011 -> 32006, 32008 -> 32007, 88148 -> 88147, 136867 -> 136868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7053,"TargetID":11887,"Directional":true},{"SourceID":11873,"TargetID":11886,"Directional":true},{"SourceID":12011,"TargetID":32006,"Directional":true},{"SourceID":32008,"TargetID":32007,"Directional":true},{"SourceID":88148,"TargetID":88147,"Directional":true},{"SourceID":136867,"TargetID":136868,"Directional":true}]},{"ID":5641,"SourceStructureID":173,"TargetStructureID":87076,"Label":"173-87076 via BC Conventional Synapse from 87080 -> 87079","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87080,"TargetID":87079,"Directional":true}]},{"ID":5642,"SourceStructureID":173,"TargetStructureID":103094,"Label":"173-103094 via Ribbon Synapse from 11925 -> 103096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11925,"TargetID":103096,"Directional":true}]},{"ID":5643,"SourceStructureID":173,"TargetStructureID":128101,"Label":"173-128101 via Ribbon Synapse from 12013 -> 128105","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12013,"TargetID":128105,"Directional":true}]},{"ID":5644,"SourceStructureID":173,"TargetStructureID":128152,"Label":"173-128152 via Ribbon Synapse from 12118 -> 128157, 128154 -> 128155","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12118,"TargetID":128157,"Directional":true},{"SourceID":128154,"TargetID":128155,"Directional":true}]},{"ID":5645,"SourceStructureID":173,"TargetStructureID":128184,"Label":"173-128184 via Ribbon Synapse from 11995 -> 128188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11995,"TargetID":128188,"Directional":true}]},{"ID":5646,"SourceStructureID":173,"TargetStructureID":129927,"Label":"173-129927 via Ribbon Synapse from 12139 -> 129937","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12139,"TargetID":129937,"Directional":true}]},{"ID":5647,"SourceStructureID":175,"TargetStructureID":174,"Label":"175-174 via Ribbon Synapse from 18811 -> 18799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18811,"TargetID":18799,"Directional":true}]},{"ID":5648,"SourceStructureID":175,"TargetStructureID":178,"Label":"175-178 via Ribbon Synapse from 24291 -> 3271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24291,"TargetID":3271,"Directional":true}]},{"ID":5649,"SourceStructureID":175,"TargetStructureID":5351,"Label":"175-5351 via Ribbon Synapse from 21894 -> 24073, 24072 -> 24070, 24077 -> 24076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21894,"TargetID":24073,"Directional":true},{"SourceID":24072,"TargetID":24070,"Directional":true},{"SourceID":24077,"TargetID":24076,"Directional":true}]},{"ID":5650,"SourceStructureID":175,"TargetStructureID":7113,"Label":"175-7113 via Ribbon Synapse from 21886 -> 21888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21886,"TargetID":21888,"Directional":true}]},{"ID":5651,"SourceStructureID":175,"TargetStructureID":9787,"Label":"175-9787 via Ribbon Synapse from 7070 -> 18137, 29375 -> 18141, 29379 -> 18142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7070,"TargetID":18137,"Directional":true},{"SourceID":29375,"TargetID":18141,"Directional":true},{"SourceID":29379,"TargetID":18142,"Directional":true}]},{"ID":5652,"SourceStructureID":175,"TargetStructureID":29340,"Label":"175-29340 via Conventional from 33553 -> 29373","Type":"Conventional","Directional":true,"Links":[{"SourceID":33553,"TargetID":29373,"Directional":true}]},{"ID":5653,"SourceStructureID":175,"TargetStructureID":29340,"Label":"175-29340 via Ribbon Synapse from 19791 -> 29397, 29380 -> 29374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19791,"TargetID":29397,"Directional":true},{"SourceID":29380,"TargetID":29374,"Directional":true}]},{"ID":5654,"SourceStructureID":175,"TargetStructureID":46443,"Label":"175-46443 via Ribbon Synapse from 46448 -> 46447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46448,"TargetID":46447,"Directional":true}]},{"ID":5655,"SourceStructureID":175,"TargetStructureID":85856,"Label":"175-85856 via Ribbon Synapse from 21718 -> 24507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21718,"TargetID":24507,"Directional":true}]},{"ID":5656,"SourceStructureID":176,"TargetStructureID":545,"Label":"176-545 via Cistern Pre from 128013 -> 128012","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":128013,"TargetID":128012,"Directional":true}]},{"ID":5657,"SourceStructureID":176,"TargetStructureID":582,"Label":"176-582 via Cistern Pre from 11704 -> 587","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":11704,"TargetID":587,"Directional":true}]},{"ID":5658,"SourceStructureID":176,"TargetStructureID":606,"Label":"176-606 via Ribbon Synapse from 53563 -> 53564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53563,"TargetID":53564,"Directional":true}]},{"ID":5659,"SourceStructureID":176,"TargetStructureID":5481,"Label":"176-5481 via Cistern Pre from 128327 -> 128328","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":128327,"TargetID":128328,"Directional":true}]},{"ID":5660,"SourceStructureID":176,"TargetStructureID":5481,"Label":"176-5481 via Ribbon Synapse from 5870 -> 128452","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5870,"TargetID":128452,"Directional":true}]},{"ID":5661,"SourceStructureID":176,"TargetStructureID":7576,"Label":"176-7576 via BC Conventional Synapse from 55927 -> 55926","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55927,"TargetID":55926,"Directional":true}]},{"ID":5662,"SourceStructureID":176,"TargetStructureID":20327,"Label":"176-20327 via Ribbon Synapse from 58651 -> 58652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58651,"TargetID":58652,"Directional":true}]},{"ID":5663,"SourceStructureID":176,"TargetStructureID":20537,"Label":"176-20537 via Cistern Pre from 5836 -> 23509","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":5836,"TargetID":23509,"Directional":true}]},{"ID":5664,"SourceStructureID":176,"TargetStructureID":30567,"Label":"176-30567 via Ribbon Synapse from 32099 -> 32090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32099,"TargetID":32090,"Directional":true}]},{"ID":5665,"SourceStructureID":176,"TargetStructureID":32405,"Label":"176-32405 via Ribbon Synapse from 5899 -> 38528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5899,"TargetID":38528,"Directional":true}]},{"ID":5666,"SourceStructureID":176,"TargetStructureID":35212,"Label":"176-35212 via Ribbon Synapse from 35220 -> 35219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35220,"TargetID":35219,"Directional":true}]},{"ID":5667,"SourceStructureID":176,"TargetStructureID":38949,"Label":"176-38949 via Ribbon Synapse from 38986 -> 38985, 38992 -> 38991","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38986,"TargetID":38985,"Directional":true},{"SourceID":38992,"TargetID":38991,"Directional":true}]},{"ID":5668,"SourceStructureID":176,"TargetStructureID":44893,"Label":"176-44893 via Ribbon Synapse from 5858 -> 123328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5858,"TargetID":123328,"Directional":true}]},{"ID":5669,"SourceStructureID":176,"TargetStructureID":44912,"Label":"176-44912 via Ribbon Synapse from 5858 -> 44914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5858,"TargetID":44914,"Directional":true}]},{"ID":5670,"SourceStructureID":176,"TargetStructureID":44970,"Label":"176-44970 via Ribbon Synapse from 5856 -> 44975, 45005 -> 45004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5856,"TargetID":44975,"Directional":true},{"SourceID":45005,"TargetID":45004,"Directional":true}]},{"ID":5671,"SourceStructureID":176,"TargetStructureID":45220,"Label":"176-45220 via Ribbon Synapse from 91900 -> 45228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91900,"TargetID":45228,"Directional":true}]},{"ID":5672,"SourceStructureID":176,"TargetStructureID":54948,"Label":"176-54948 via Ribbon Synapse from 54954 -> 54953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54954,"TargetID":54953,"Directional":true}]},{"ID":5673,"SourceStructureID":176,"TargetStructureID":56802,"Label":"176-56802 via Cistern Pre from 91790 -> 128032","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":91790,"TargetID":128032,"Directional":true}]},{"ID":5674,"SourceStructureID":176,"TargetStructureID":58592,"Label":"176-58592 via Ribbon Synapse from 34108 -> 58649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34108,"TargetID":58649,"Directional":true}]},{"ID":5675,"SourceStructureID":176,"TargetStructureID":69893,"Label":"176-69893 via Ribbon Synapse from 69892 -> 69894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69892,"TargetID":69894,"Directional":true}]},{"ID":5676,"SourceStructureID":176,"TargetStructureID":70648,"Label":"176-70648 via Ribbon Synapse from 128244 -> 128245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128244,"TargetID":128245,"Directional":true}]},{"ID":5677,"SourceStructureID":176,"TargetStructureID":72299,"Label":"176-72299 via BC Conventional Synapse from 126437 -> 126438","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":126437,"TargetID":126438,"Directional":true}]},{"ID":5678,"SourceStructureID":176,"TargetStructureID":80609,"Label":"176-80609 via Ribbon Synapse from 5868 -> 82477, 82460 -> 82461, 82464 -> 82463","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5868,"TargetID":82477,"Directional":true},{"SourceID":82460,"TargetID":82461,"Directional":true},{"SourceID":82464,"TargetID":82463,"Directional":true}]},{"ID":5679,"SourceStructureID":176,"TargetStructureID":88260,"Label":"176-88260 via Ribbon Synapse from 5896 -> 88277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5896,"TargetID":88277,"Directional":true}]},{"ID":5680,"SourceStructureID":176,"TargetStructureID":89039,"Label":"176-89039 via Ribbon Synapse from 124556 -> 128241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124556,"TargetID":128241,"Directional":true}]},{"ID":5681,"SourceStructureID":176,"TargetStructureID":91780,"Label":"176-91780 via Ribbon Synapse from 38998 -> 93039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38998,"TargetID":93039,"Directional":true}]},{"ID":5682,"SourceStructureID":176,"TargetStructureID":91832,"Label":"176-91832 via Adherens from 124679 -> 124680","Type":"Adherens","Directional":true,"Links":[{"SourceID":124679,"TargetID":124680,"Directional":true}]},{"ID":5683,"SourceStructureID":176,"TargetStructureID":91832,"Label":"176-91832 via Ribbon Synapse from 91829 -> 91835","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91829,"TargetID":91835,"Directional":true}]},{"ID":5684,"SourceStructureID":176,"TargetStructureID":91856,"Label":"176-91856 via BC Conventional Synapse from 91861 -> 91860, 91861 -> 124752","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91861,"TargetID":91860,"Directional":true},{"SourceID":91861,"TargetID":124752,"Directional":true}]},{"ID":5685,"SourceStructureID":176,"TargetStructureID":91913,"Label":"176-91913 via BC Conventional Synapse from 128432 -> 147451","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":128432,"TargetID":147451,"Directional":true}]},{"ID":5686,"SourceStructureID":176,"TargetStructureID":91918,"Label":"176-91918 via Ribbon Synapse from 93037 -> 93036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93037,"TargetID":93036,"Directional":true}]},{"ID":5687,"SourceStructureID":176,"TargetStructureID":91930,"Label":"176-91930 via BC Conventional Synapse from 91951 -> 91950","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91951,"TargetID":91950,"Directional":true}]},{"ID":5688,"SourceStructureID":176,"TargetStructureID":91959,"Label":"176-91959 via Cistern Pre from 91957 -> 128704","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":91957,"TargetID":128704,"Directional":true}]},{"ID":5689,"SourceStructureID":176,"TargetStructureID":91994,"Label":"176-91994 via Ribbon Synapse from 91906 -> 128443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91906,"TargetID":128443,"Directional":true}]},{"ID":5690,"SourceStructureID":176,"TargetStructureID":97272,"Label":"176-97272 via Ribbon Synapse from 91999 -> 128442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91999,"TargetID":128442,"Directional":true}]},{"ID":5691,"SourceStructureID":176,"TargetStructureID":97280,"Label":"176-97280 via Ribbon Synapse from 91999 -> 128441","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91999,"TargetID":128441,"Directional":true}]},{"ID":5692,"SourceStructureID":176,"TargetStructureID":106922,"Label":"176-106922 via Ribbon Synapse from 128258 -> 128259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128258,"TargetID":128259,"Directional":true}]},{"ID":5693,"SourceStructureID":176,"TargetStructureID":107438,"Label":"176-107438 via Cistern Pre from 124930 -> 124931","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":124930,"TargetID":124931,"Directional":true}]},{"ID":5694,"SourceStructureID":176,"TargetStructureID":107639,"Label":"176-107639 via Ribbon Synapse from 5876 -> 128672","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5876,"TargetID":128672,"Directional":true}]},{"ID":5695,"SourceStructureID":176,"TargetStructureID":107672,"Label":"176-107672 via Ribbon Synapse from 91900 -> 128447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91900,"TargetID":128447,"Directional":true}]},{"ID":5696,"SourceStructureID":176,"TargetStructureID":125857,"Label":"176-125857 via BC Conventional Synapse from 125858 -> 125859","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125858,"TargetID":125859,"Directional":true}]},{"ID":5697,"SourceStructureID":176,"TargetStructureID":125857,"Label":"176-125857 via Ribbon Synapse from 124129 -> 128742","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124129,"TargetID":128742,"Directional":true}]},{"ID":5698,"SourceStructureID":176,"TargetStructureID":126585,"Label":"176-126585 via BC Conventional Synapse from 125429 -> 126586","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125429,"TargetID":126586,"Directional":true}]},{"ID":5699,"SourceStructureID":176,"TargetStructureID":128278,"Label":"176-128278 via Ribbon Synapse from 128277 -> 128279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128277,"TargetID":128279,"Directional":true}]},{"ID":5700,"SourceStructureID":176,"TargetStructureID":128682,"Label":"176-128682 via Ribbon Synapse from 34108 -> 128684","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34108,"TargetID":128684,"Directional":true}]},{"ID":5701,"SourceStructureID":176,"TargetStructureID":128696,"Label":"176-128696 via Ribbon Synapse from 125799 -> 128697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125799,"TargetID":128697,"Directional":true}]},{"ID":5702,"SourceStructureID":176,"TargetStructureID":136680,"Label":"176-136680 via BC Conventional Synapse from 124558 -> 136682","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124558,"TargetID":136682,"Directional":true}]},{"ID":5703,"SourceStructureID":176,"TargetStructureID":147412,"Label":"176-147412 via Ribbon Synapse from 5870 -> 147413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5870,"TargetID":147413,"Directional":true}]},{"ID":5704,"SourceStructureID":176,"TargetStructureID":147696,"Label":"176-147696 via Ribbon Synapse from 54992 -> 147731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54992,"TargetID":147731,"Directional":true}]},{"ID":5705,"SourceStructureID":176,"TargetStructureID":147713,"Label":"176-147713 via Ribbon Synapse from 125807 -> 147714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125807,"TargetID":147714,"Directional":true}]},{"ID":5706,"SourceStructureID":177,"TargetStructureID":606,"Label":"177-606 via Ribbon Synapse from 5925 -> 51731, 27983 -> 51731, 47946 -> 51731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5925,"TargetID":51731,"Directional":true},{"SourceID":27983,"TargetID":51731,"Directional":true},{"SourceID":47946,"TargetID":51731,"Directional":true}]},{"ID":5707,"SourceStructureID":177,"TargetStructureID":7576,"Label":"177-7576 via Ribbon Synapse from 27945 -> 55013, 27951 -> 55930, 27955 -> 54984, 27965 -> 54998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27945,"TargetID":55013,"Directional":true},{"SourceID":27951,"TargetID":55930,"Directional":true},{"SourceID":27955,"TargetID":54984,"Directional":true},{"SourceID":27965,"TargetID":54998,"Directional":true}]},{"ID":5708,"SourceStructureID":177,"TargetStructureID":30526,"Label":"177-30526 via Ribbon Synapse from 23642 -> 30527","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23642,"TargetID":30527,"Directional":true}]},{"ID":5709,"SourceStructureID":177,"TargetStructureID":34914,"Label":"177-34914 via Ribbon Synapse from 5945 -> 34918, 5954 -> 34916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5945,"TargetID":34918,"Directional":true},{"SourceID":5954,"TargetID":34916,"Directional":true}]},{"ID":5710,"SourceStructureID":177,"TargetStructureID":56802,"Label":"177-56802 via BC Conventional Synapse from 119615 -> 119614","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119615,"TargetID":119614,"Directional":true}]},{"ID":5711,"SourceStructureID":179,"TargetStructureID":410,"Label":"179-410 via Conventional from 103833 -> 23276","Type":"Conventional","Directional":true,"Links":[{"SourceID":103833,"TargetID":23276,"Directional":true}]},{"ID":5712,"SourceStructureID":179,"TargetStructureID":517,"Label":"179-517 via Conventional from 41026 -> 16427","Type":"Conventional","Directional":true,"Links":[{"SourceID":41026,"TargetID":16427,"Directional":true}]},{"ID":5713,"SourceStructureID":179,"TargetStructureID":518,"Label":"179-518 via Conventional from 25301 -> 25304, 36506 -> 3376, 36507 -> 3508","Type":"Conventional","Directional":true,"Links":[{"SourceID":25301,"TargetID":25304,"Directional":true},{"SourceID":36506,"TargetID":3376,"Directional":true},{"SourceID":36507,"TargetID":3508,"Directional":true}]},{"ID":5714,"SourceStructureID":179,"TargetStructureID":519,"Label":"179-519 via Conventional from 9332 -> 9305, 9333 -> 9307, 25363 -> 9238, 25786 -> 25787","Type":"Conventional","Directional":true,"Links":[{"SourceID":9332,"TargetID":9305,"Directional":true},{"SourceID":9333,"TargetID":9307,"Directional":true},{"SourceID":25363,"TargetID":9238,"Directional":true},{"SourceID":25786,"TargetID":25787,"Directional":true}]},{"ID":5715,"SourceStructureID":179,"TargetStructureID":6561,"Label":"179-6561 via Conventional from 103873 -> 17306, 103874 -> 17305","Type":"Conventional","Directional":true,"Links":[{"SourceID":103873,"TargetID":17306,"Directional":true},{"SourceID":103874,"TargetID":17305,"Directional":true}]},{"ID":5716,"SourceStructureID":179,"TargetStructureID":10897,"Label":"179-10897 via Conventional from 104881 -> 104883","Type":"Conventional","Directional":true,"Links":[{"SourceID":104881,"TargetID":104883,"Directional":true}]},{"ID":5717,"SourceStructureID":179,"TargetStructureID":10931,"Label":"179-10931 via Conventional from 87469 -> 87470","Type":"Conventional","Directional":true,"Links":[{"SourceID":87469,"TargetID":87470,"Directional":true}]},{"ID":5718,"SourceStructureID":179,"TargetStructureID":10943,"Label":"179-10943 via Conventional from 105528 -> 10944","Type":"Conventional","Directional":true,"Links":[{"SourceID":105528,"TargetID":10944,"Directional":true}]},{"ID":5719,"SourceStructureID":179,"TargetStructureID":10953,"Label":"179-10953 via Conventional from 87482 -> 87483","Type":"Conventional","Directional":true,"Links":[{"SourceID":87482,"TargetID":87483,"Directional":true}]},{"ID":5720,"SourceStructureID":179,"TargetStructureID":14615,"Label":"179-14615 via Conventional from 25314 -> 25318, 33084 -> 25315","Type":"Conventional","Directional":true,"Links":[{"SourceID":25314,"TargetID":25318,"Directional":true},{"SourceID":33084,"TargetID":25315,"Directional":true}]},{"ID":5721,"SourceStructureID":179,"TargetStructureID":15100,"Label":"179-15100 via Conventional from 33112 -> 17995","Type":"Conventional","Directional":true,"Links":[{"SourceID":33112,"TargetID":17995,"Directional":true}]},{"ID":5722,"SourceStructureID":179,"TargetStructureID":15942,"Label":"179-15942 via Conventional from 103840 -> 103839","Type":"Conventional","Directional":true,"Links":[{"SourceID":103840,"TargetID":103839,"Directional":true}]},{"ID":5723,"SourceStructureID":179,"TargetStructureID":16446,"Label":"179-16446 via Conventional from 103861 -> 16459","Type":"Conventional","Directional":true,"Links":[{"SourceID":103861,"TargetID":16459,"Directional":true}]},{"ID":5724,"SourceStructureID":179,"TargetStructureID":17228,"Label":"179-17228 via Conventional from 104932 -> 104936","Type":"Conventional","Directional":true,"Links":[{"SourceID":104932,"TargetID":104936,"Directional":true}]},{"ID":5725,"SourceStructureID":179,"TargetStructureID":117272,"Label":"179-117272 via Postsynapse from 130219 -> 130220","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":130219,"TargetID":130220,"Directional":true}]},{"ID":5726,"SourceStructureID":180,"TargetStructureID":318,"Label":"180-318 via Ribbon Synapse from 14151 -> 14152, 14156 -> 14118, 84487 -> 133008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14151,"TargetID":14152,"Directional":true},{"SourceID":14156,"TargetID":14118,"Directional":true},{"SourceID":84487,"TargetID":133008,"Directional":true}]},{"ID":5727,"SourceStructureID":180,"TargetStructureID":606,"Label":"180-606 via Ribbon Synapse from 51239 -> 51242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51239,"TargetID":51242,"Directional":true}]},{"ID":5728,"SourceStructureID":180,"TargetStructureID":3679,"Label":"180-3679 via Ribbon Synapse from 56870 -> 9708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56870,"TargetID":9708,"Directional":true}]},{"ID":5729,"SourceStructureID":180,"TargetStructureID":4890,"Label":"180-4890 via Ribbon Synapse from 4925 -> 4924, 6097 -> 6098, 14149 -> 6100, 56879 -> 6000, 95519 -> 95520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4925,"TargetID":4924,"Directional":true},{"SourceID":6097,"TargetID":6098,"Directional":true},{"SourceID":14149,"TargetID":6100,"Directional":true},{"SourceID":56879,"TargetID":6000,"Directional":true},{"SourceID":95519,"TargetID":95520,"Directional":true}]},{"ID":5730,"SourceStructureID":180,"TargetStructureID":5303,"Label":"180-5303 via Ribbon Synapse from 847 -> 133052, 133051 -> 133052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":847,"TargetID":133052,"Directional":true},{"SourceID":133051,"TargetID":133052,"Directional":true}]},{"ID":5731,"SourceStructureID":180,"TargetStructureID":5618,"Label":"180-5618 via Ribbon Synapse from 6056 -> 65979, 65983 -> 65982, 65984 -> 65982","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6056,"TargetID":65979,"Directional":true},{"SourceID":65983,"TargetID":65982,"Directional":true},{"SourceID":65984,"TargetID":65982,"Directional":true}]},{"ID":5732,"SourceStructureID":180,"TargetStructureID":6169,"Label":"180-6169 via Ribbon Synapse from 24656 -> 24653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24656,"TargetID":24653,"Directional":true}]},{"ID":5733,"SourceStructureID":180,"TargetStructureID":8577,"Label":"180-8577 via BC Conventional Synapse from 15883 -> 15881","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":15883,"TargetID":15881,"Directional":true}]},{"ID":5734,"SourceStructureID":180,"TargetStructureID":8577,"Label":"180-8577 via Ribbon Synapse from 15885 -> 15884, 56873 -> 15876, 126090 -> 133014, 132883 -> 15879, 133126 -> 133127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15885,"TargetID":15884,"Directional":true},{"SourceID":56873,"TargetID":15876,"Directional":true},{"SourceID":126090,"TargetID":133014,"Directional":true},{"SourceID":132883,"TargetID":15879,"Directional":true},{"SourceID":133126,"TargetID":133127,"Directional":true}]},{"ID":5735,"SourceStructureID":180,"TargetStructureID":8579,"Label":"180-8579 via Ribbon Synapse from 6055 -> 94668, 6059 -> 94891, 16128 -> 19805, 19807 -> 66082, 19810 -> 19811, 19821 -> 19820, 133100 -> 133101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6055,"TargetID":94668,"Directional":true},{"SourceID":6059,"TargetID":94891,"Directional":true},{"SourceID":16128,"TargetID":19805,"Directional":true},{"SourceID":19807,"TargetID":66082,"Directional":true},{"SourceID":19810,"TargetID":19811,"Directional":true},{"SourceID":19821,"TargetID":19820,"Directional":true},{"SourceID":133100,"TargetID":133101,"Directional":true}]},{"ID":5736,"SourceStructureID":180,"TargetStructureID":8720,"Label":"180-8720 via Ribbon Synapse from 853 -> 133049, 868 -> 15292, 65604 -> 133050, 133057 -> 15292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":853,"TargetID":133049,"Directional":true},{"SourceID":868,"TargetID":15292,"Directional":true},{"SourceID":65604,"TargetID":133050,"Directional":true},{"SourceID":133057,"TargetID":15292,"Directional":true}]},{"ID":5737,"SourceStructureID":180,"TargetStructureID":9347,"Label":"180-9347 via Ribbon Synapse from 95404 -> 95406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95404,"TargetID":95406,"Directional":true}]},{"ID":5738,"SourceStructureID":180,"TargetStructureID":16087,"Label":"180-16087 via Ribbon Synapse from 126090 -> 133013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126090,"TargetID":133013,"Directional":true}]},{"ID":5739,"SourceStructureID":180,"TargetStructureID":18282,"Label":"180-18282 via Ribbon Synapse from 890 -> 18322, 133009 -> 135147","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":890,"TargetID":18322,"Directional":true},{"SourceID":133009,"TargetID":135147,"Directional":true}]},{"ID":5740,"SourceStructureID":180,"TargetStructureID":25440,"Label":"180-25440 via BC Conventional Synapse from 133113 -> 133114","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133113,"TargetID":133114,"Directional":true}]},{"ID":5741,"SourceStructureID":180,"TargetStructureID":25440,"Label":"180-25440 via Ribbon Synapse from 91004 -> 91006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91004,"TargetID":91006,"Directional":true}]},{"ID":5742,"SourceStructureID":180,"TargetStructureID":29277,"Label":"180-29277 via Ribbon Synapse from 29266 -> 132928, 31106 -> 29279, 90906 -> 123161, 95251 -> 115583, 95252 -> 115583, 95253 -> 115583","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29266,"TargetID":132928,"Directional":true},{"SourceID":31106,"TargetID":29279,"Directional":true},{"SourceID":90906,"TargetID":123161,"Directional":true},{"SourceID":95251,"TargetID":115583,"Directional":true},{"SourceID":95252,"TargetID":115583,"Directional":true},{"SourceID":95253,"TargetID":115583,"Directional":true}]},{"ID":5743,"SourceStructureID":180,"TargetStructureID":30518,"Label":"180-30518 via Ribbon Synapse from 6566 -> 32783","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6566,"TargetID":32783,"Directional":true}]},{"ID":5744,"SourceStructureID":180,"TargetStructureID":31024,"Label":"180-31024 via Ribbon Synapse from 6060 -> 31066, 15885 -> 133023, 31100 -> 31072","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6060,"TargetID":31066,"Directional":true},{"SourceID":15885,"TargetID":133023,"Directional":true},{"SourceID":31100,"TargetID":31072,"Directional":true}]},{"ID":5745,"SourceStructureID":180,"TargetStructureID":33330,"Label":"180-33330 via Ribbon Synapse from 33329 -> 33331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33329,"TargetID":33331,"Directional":true}]},{"ID":5746,"SourceStructureID":180,"TargetStructureID":38363,"Label":"180-38363 via Ribbon Synapse from 31277 -> 133031","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31277,"TargetID":133031,"Directional":true}]},{"ID":5747,"SourceStructureID":180,"TargetStructureID":39345,"Label":"180-39345 via Ribbon Synapse from 6566 -> 39348, 31283 -> 39363, 39365 -> 39364","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6566,"TargetID":39348,"Directional":true},{"SourceID":31283,"TargetID":39363,"Directional":true},{"SourceID":39365,"TargetID":39364,"Directional":true}]},{"ID":5748,"SourceStructureID":180,"TargetStructureID":54744,"Label":"180-54744 via Ribbon Synapse from 91004 -> 91007","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91004,"TargetID":91007,"Directional":true}]},{"ID":5749,"SourceStructureID":180,"TargetStructureID":64492,"Label":"180-64492 via Ribbon Synapse from 6058 -> 64498, 65586 -> 65587, 91002 -> 91003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6058,"TargetID":64498,"Directional":true},{"SourceID":65586,"TargetID":65587,"Directional":true},{"SourceID":91002,"TargetID":91003,"Directional":true}]},{"ID":5750,"SourceStructureID":180,"TargetStructureID":65591,"Label":"180-65591 via Ribbon Synapse from 65590 -> 65592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65590,"TargetID":65592,"Directional":true}]},{"ID":5751,"SourceStructureID":180,"TargetStructureID":65594,"Label":"180-65594 via Ribbon Synapse from 65593 -> 130253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65593,"TargetID":130253,"Directional":true}]},{"ID":5752,"SourceStructureID":180,"TargetStructureID":65596,"Label":"180-65596 via Ribbon Synapse from 65593 -> 65597","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65593,"TargetID":65597,"Directional":true}]},{"ID":5753,"SourceStructureID":180,"TargetStructureID":65602,"Label":"180-65602 via Ribbon Synapse from 133047 -> 65603","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133047,"TargetID":65603,"Directional":true}]},{"ID":5754,"SourceStructureID":180,"TargetStructureID":65864,"Label":"180-65864 via Ribbon Synapse from 19807 -> 133024, 91024 -> 94882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19807,"TargetID":133024,"Directional":true},{"SourceID":91024,"TargetID":94882,"Directional":true}]},{"ID":5755,"SourceStructureID":180,"TargetStructureID":65971,"Label":"180-65971 via Ribbon Synapse from 59681 -> 65972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59681,"TargetID":65972,"Directional":true}]},{"ID":5756,"SourceStructureID":180,"TargetStructureID":66510,"Label":"180-66510 via Ribbon Synapse from 91016 -> 91019","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91016,"TargetID":91019,"Directional":true}]},{"ID":5757,"SourceStructureID":180,"TargetStructureID":66634,"Label":"180-66634 via Ribbon Synapse from 59663 -> 94943","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59663,"TargetID":94943,"Directional":true}]},{"ID":5758,"SourceStructureID":180,"TargetStructureID":70315,"Label":"180-70315 via Ribbon Synapse from 6059 -> 94890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6059,"TargetID":94890,"Directional":true}]},{"ID":5759,"SourceStructureID":180,"TargetStructureID":71351,"Label":"180-71351 via Ribbon Synapse from 875 -> 71902, 31270 -> 71889, 71890 -> 71894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":875,"TargetID":71902,"Directional":true},{"SourceID":31270,"TargetID":71889,"Directional":true},{"SourceID":71890,"TargetID":71894,"Directional":true}]},{"ID":5760,"SourceStructureID":180,"TargetStructureID":71351,"Label":"180-71351 via Unknown from 133092 -> 95235","Type":"Unknown","Directional":true,"Links":[{"SourceID":133092,"TargetID":95235,"Directional":true}]},{"ID":5761,"SourceStructureID":180,"TargetStructureID":71517,"Label":"180-71517 via Ribbon Synapse from 31277 -> 75161, 71494 -> 71495, 72010 -> 72011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31277,"TargetID":75161,"Directional":true},{"SourceID":71494,"TargetID":71495,"Directional":true},{"SourceID":72010,"TargetID":72011,"Directional":true}]},{"ID":5762,"SourceStructureID":180,"TargetStructureID":72012,"Label":"180-72012 via Ribbon Synapse from 31101 -> 132885, 132883 -> 132885","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31101,"TargetID":132885,"Directional":true},{"SourceID":132883,"TargetID":132885,"Directional":true}]},{"ID":5763,"SourceStructureID":180,"TargetStructureID":72638,"Label":"180-72638 via Ribbon Synapse from 31284 -> 133033","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31284,"TargetID":133033,"Directional":true}]},{"ID":5764,"SourceStructureID":180,"TargetStructureID":75130,"Label":"180-75130 via Ribbon Synapse from 31277 -> 133030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31277,"TargetID":133030,"Directional":true}]},{"ID":5765,"SourceStructureID":180,"TargetStructureID":75339,"Label":"180-75339 via Ribbon Synapse from 31274 -> 95231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31274,"TargetID":95231,"Directional":true}]},{"ID":5766,"SourceStructureID":180,"TargetStructureID":80609,"Label":"180-80609 via Ribbon Synapse from 56879 -> 95510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56879,"TargetID":95510,"Directional":true}]},{"ID":5767,"SourceStructureID":180,"TargetStructureID":84335,"Label":"180-84335 via Ribbon Synapse from 59664 -> 94936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59664,"TargetID":94936,"Directional":true}]},{"ID":5768,"SourceStructureID":180,"TargetStructureID":84806,"Label":"180-84806 via Ribbon Synapse from 84809 -> 95904","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84809,"TargetID":95904,"Directional":true}]},{"ID":5769,"SourceStructureID":180,"TargetStructureID":90217,"Label":"180-90217 via BC Conventional Synapse from 90505 -> 90504","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90505,"TargetID":90504,"Directional":true}]},{"ID":5770,"SourceStructureID":180,"TargetStructureID":90217,"Label":"180-90217 via Ribbon Synapse from 59669 -> 95255, 132882 -> 90506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59669,"TargetID":95255,"Directional":true},{"SourceID":132882,"TargetID":90506,"Directional":true}]},{"ID":5771,"SourceStructureID":180,"TargetStructureID":90739,"Label":"180-90739 via Ribbon Synapse from 6053 -> 90740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6053,"TargetID":90740,"Directional":true}]},{"ID":5772,"SourceStructureID":180,"TargetStructureID":90743,"Label":"180-90743 via Ribbon Synapse from 29446 -> 90745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29446,"TargetID":90745,"Directional":true}]},{"ID":5773,"SourceStructureID":180,"TargetStructureID":90744,"Label":"180-90744 via Ribbon Synapse from 29445 -> 90747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29445,"TargetID":90747,"Directional":true}]},{"ID":5774,"SourceStructureID":180,"TargetStructureID":90753,"Label":"180-90753 via Ribbon Synapse from 6060 -> 133045, 90749 -> 90754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6060,"TargetID":133045,"Directional":true},{"SourceID":90749,"TargetID":90754,"Directional":true}]},{"ID":5775,"SourceStructureID":180,"TargetStructureID":90764,"Label":"180-90764 via BC Conventional Synapse from 90763 -> 90765","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90763,"TargetID":90765,"Directional":true}]},{"ID":5776,"SourceStructureID":180,"TargetStructureID":90775,"Label":"180-90775 via Ribbon Synapse from 31101 -> 90776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31101,"TargetID":90776,"Directional":true}]},{"ID":5777,"SourceStructureID":180,"TargetStructureID":90779,"Label":"180-90779 via Ribbon Synapse from 6062 -> 90780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6062,"TargetID":90780,"Directional":true}]},{"ID":5778,"SourceStructureID":180,"TargetStructureID":90781,"Label":"180-90781 via Ribbon Synapse from 6061 -> 90782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6061,"TargetID":90782,"Directional":true}]},{"ID":5779,"SourceStructureID":180,"TargetStructureID":90783,"Label":"180-90783 via BC Conventional Synapse from 90785 -> 90786","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90785,"TargetID":90786,"Directional":true}]},{"ID":5780,"SourceStructureID":180,"TargetStructureID":90791,"Label":"180-90791 via Ribbon Synapse from 81903 -> 90792, 81904 -> 90792","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81903,"TargetID":90792,"Directional":true},{"SourceID":81904,"TargetID":90792,"Directional":true}]},{"ID":5781,"SourceStructureID":180,"TargetStructureID":90795,"Label":"180-90795 via Ribbon Synapse from 81902 -> 90796","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81902,"TargetID":90796,"Directional":true}]},{"ID":5782,"SourceStructureID":180,"TargetStructureID":90811,"Label":"180-90811 via Ribbon Synapse from 132888 -> 133018, 133119 -> 133118, 133120 -> 90812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132888,"TargetID":133018,"Directional":true},{"SourceID":133119,"TargetID":133118,"Directional":true},{"SourceID":133120,"TargetID":90812,"Directional":true}]},{"ID":5783,"SourceStructureID":180,"TargetStructureID":90814,"Label":"180-90814 via Ribbon Synapse from 6065 -> 90815, 133010 -> 90815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6065,"TargetID":90815,"Directional":true},{"SourceID":133010,"TargetID":90815,"Directional":true}]},{"ID":5784,"SourceStructureID":180,"TargetStructureID":90817,"Label":"180-90817 via BC Conventional Synapse from 90816 -> 90818","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90816,"TargetID":90818,"Directional":true}]},{"ID":5785,"SourceStructureID":180,"TargetStructureID":90822,"Label":"180-90822 via Ribbon Synapse from 5049 -> 90825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5049,"TargetID":90825,"Directional":true}]},{"ID":5786,"SourceStructureID":180,"TargetStructureID":90840,"Label":"180-90840 via Ribbon Synapse from 90784 -> 90841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90784,"TargetID":90841,"Directional":true}]},{"ID":5787,"SourceStructureID":180,"TargetStructureID":90842,"Label":"180-90842 via Ribbon Synapse from 6063 -> 90843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6063,"TargetID":90843,"Directional":true}]},{"ID":5788,"SourceStructureID":180,"TargetStructureID":90844,"Label":"180-90844 via Ribbon Synapse from 6063 -> 95722","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6063,"TargetID":95722,"Directional":true}]},{"ID":5789,"SourceStructureID":180,"TargetStructureID":90851,"Label":"180-90851 via Ribbon Synapse from 90850 -> 90852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90850,"TargetID":90852,"Directional":true}]},{"ID":5790,"SourceStructureID":180,"TargetStructureID":90853,"Label":"180-90853 via Ribbon Synapse from 90850 -> 90854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90850,"TargetID":90854,"Directional":true}]},{"ID":5791,"SourceStructureID":180,"TargetStructureID":90856,"Label":"180-90856 via BC Conventional Synapse from 90855 -> 90857","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90855,"TargetID":90857,"Directional":true}]},{"ID":5792,"SourceStructureID":180,"TargetStructureID":90859,"Label":"180-90859 via BC Conventional Synapse from 90862 -> 90861","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90862,"TargetID":90861,"Directional":true}]},{"ID":5793,"SourceStructureID":180,"TargetStructureID":90867,"Label":"180-90867 via BC Conventional Synapse from 90866 -> 90868","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90866,"TargetID":90868,"Directional":true}]},{"ID":5794,"SourceStructureID":180,"TargetStructureID":90872,"Label":"180-90872 via Ribbon Synapse from 90870 -> 90873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90870,"TargetID":90873,"Directional":true}]},{"ID":5795,"SourceStructureID":180,"TargetStructureID":90874,"Label":"180-90874 via Ribbon Synapse from 90870 -> 90875","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90870,"TargetID":90875,"Directional":true}]},{"ID":5796,"SourceStructureID":180,"TargetStructureID":90880,"Label":"180-90880 via BC Conventional Synapse from 90879 -> 90881","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":90879,"TargetID":90881,"Directional":true}]},{"ID":5797,"SourceStructureID":180,"TargetStructureID":90883,"Label":"180-90883 via Ribbon Synapse from 84809 -> 90884","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84809,"TargetID":90884,"Directional":true}]},{"ID":5798,"SourceStructureID":180,"TargetStructureID":90922,"Label":"180-90922 via Ribbon Synapse from 90921 -> 90923","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90921,"TargetID":90923,"Directional":true}]},{"ID":5799,"SourceStructureID":180,"TargetStructureID":90924,"Label":"180-90924 via Ribbon Synapse from 4925 -> 90927, 90921 -> 90925","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4925,"TargetID":90927,"Directional":true},{"SourceID":90921,"TargetID":90925,"Directional":true}]},{"ID":5800,"SourceStructureID":180,"TargetStructureID":90928,"Label":"180-90928 via Ribbon Synapse from 4925 -> 90930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4925,"TargetID":90930,"Directional":true}]},{"ID":5801,"SourceStructureID":180,"TargetStructureID":90935,"Label":"180-90935 via Ribbon Synapse from 132890 -> 90936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132890,"TargetID":90936,"Directional":true}]},{"ID":5802,"SourceStructureID":180,"TargetStructureID":90949,"Label":"180-90949 via Ribbon Synapse from 902 -> 90950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":902,"TargetID":90950,"Directional":true}]},{"ID":5803,"SourceStructureID":180,"TargetStructureID":90952,"Label":"180-90952 via Ribbon Synapse from 898 -> 90953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":898,"TargetID":90953,"Directional":true}]},{"ID":5804,"SourceStructureID":180,"TargetStructureID":90956,"Label":"180-90956 via Ribbon Synapse from 90959 -> 92723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90959,"TargetID":92723,"Directional":true}]},{"ID":5805,"SourceStructureID":180,"TargetStructureID":90967,"Label":"180-90967 via Ribbon Synapse from 90965 -> 90968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90965,"TargetID":90968,"Directional":true}]},{"ID":5806,"SourceStructureID":180,"TargetStructureID":90971,"Label":"180-90971 via Ribbon Synapse from 90966 -> 90972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90966,"TargetID":90972,"Directional":true}]},{"ID":5807,"SourceStructureID":180,"TargetStructureID":90973,"Label":"180-90973 via Ribbon Synapse from 90966 -> 90974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90966,"TargetID":90974,"Directional":true}]},{"ID":5808,"SourceStructureID":180,"TargetStructureID":90979,"Label":"180-90979 via Ribbon Synapse from 132971 -> 132972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132971,"TargetID":132972,"Directional":true}]},{"ID":5809,"SourceStructureID":180,"TargetStructureID":91014,"Label":"180-91014 via BC Conventional Synapse from 91013 -> 91015, 94888 -> 94889","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91013,"TargetID":91015,"Directional":true},{"SourceID":94888,"TargetID":94889,"Directional":true}]},{"ID":5810,"SourceStructureID":180,"TargetStructureID":94575,"Label":"180-94575 via Ribbon Synapse from 36173 -> 94576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36173,"TargetID":94576,"Directional":true}]},{"ID":5811,"SourceStructureID":180,"TargetStructureID":94577,"Label":"180-94577 via Ribbon Synapse from 36175 -> 133035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36175,"TargetID":133035,"Directional":true}]},{"ID":5812,"SourceStructureID":180,"TargetStructureID":94622,"Label":"180-94622 via Ribbon Synapse from 847 -> 94623, 133051 -> 94623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":847,"TargetID":94623,"Directional":true},{"SourceID":133051,"TargetID":94623,"Directional":true}]},{"ID":5813,"SourceStructureID":180,"TargetStructureID":94633,"Label":"180-94633 via BC Conventional Synapse from 92737 -> 94634","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92737,"TargetID":94634,"Directional":true}]},{"ID":5814,"SourceStructureID":180,"TargetStructureID":94656,"Label":"180-94656 via Ribbon Synapse from 6056 -> 94659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6056,"TargetID":94659,"Directional":true}]},{"ID":5815,"SourceStructureID":180,"TargetStructureID":94664,"Label":"180-94664 via Ribbon Synapse from 6055 -> 94669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6055,"TargetID":94669,"Directional":true}]},{"ID":5816,"SourceStructureID":180,"TargetStructureID":94878,"Label":"180-94878 via Ribbon Synapse from 91024 -> 94879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91024,"TargetID":94879,"Directional":true}]},{"ID":5817,"SourceStructureID":180,"TargetStructureID":94935,"Label":"180-94935 via Ribbon Synapse from 59662 -> 94941","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59662,"TargetID":94941,"Directional":true}]},{"ID":5818,"SourceStructureID":180,"TargetStructureID":94939,"Label":"180-94939 via Ribbon Synapse from 59662 -> 94940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59662,"TargetID":94940,"Directional":true}]},{"ID":5819,"SourceStructureID":180,"TargetStructureID":94950,"Label":"180-94950 via BC Conventional Synapse from 133029 -> 94951","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133029,"TargetID":94951,"Directional":true}]},{"ID":5820,"SourceStructureID":180,"TargetStructureID":94952,"Label":"180-94952 via Ribbon Synapse from 31272 -> 94953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31272,"TargetID":94953,"Directional":true}]},{"ID":5821,"SourceStructureID":180,"TargetStructureID":94964,"Label":"180-94964 via Ribbon Synapse from 29252 -> 94966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29252,"TargetID":94966,"Directional":true}]},{"ID":5822,"SourceStructureID":180,"TargetStructureID":94965,"Label":"180-94965 via Ribbon Synapse from 29253 -> 94967, 133025 -> 94967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29253,"TargetID":94967,"Directional":true},{"SourceID":133025,"TargetID":94967,"Directional":true}]},{"ID":5823,"SourceStructureID":180,"TargetStructureID":94981,"Label":"180-94981 via Ribbon Synapse from 29266 -> 94982","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29266,"TargetID":94982,"Directional":true}]},{"ID":5824,"SourceStructureID":180,"TargetStructureID":94993,"Label":"180-94993 via Ribbon Synapse from 29263 -> 94996","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29263,"TargetID":94996,"Directional":true}]},{"ID":5825,"SourceStructureID":180,"TargetStructureID":94997,"Label":"180-94997 via BC Conventional Synapse from 126085 -> 132878","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":126085,"TargetID":132878,"Directional":true}]},{"ID":5826,"SourceStructureID":180,"TargetStructureID":94997,"Label":"180-94997 via Ribbon Synapse from 29262 -> 94998, 95259 -> 132875, 95264 -> 95265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29262,"TargetID":94998,"Directional":true},{"SourceID":95259,"TargetID":132875,"Directional":true},{"SourceID":95264,"TargetID":95265,"Directional":true}]},{"ID":5827,"SourceStructureID":180,"TargetStructureID":95229,"Label":"180-95229 via Ribbon Synapse from 31274 -> 95230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31274,"TargetID":95230,"Directional":true}]},{"ID":5828,"SourceStructureID":180,"TargetStructureID":95236,"Label":"180-95236 via Unknown from 133092 -> 95237","Type":"Unknown","Directional":true,"Links":[{"SourceID":133092,"TargetID":95237,"Directional":true}]},{"ID":5829,"SourceStructureID":180,"TargetStructureID":95238,"Label":"180-95238 via Ribbon Synapse from 31271 -> 95239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31271,"TargetID":95239,"Directional":true}]},{"ID":5830,"SourceStructureID":180,"TargetStructureID":95256,"Label":"180-95256 via BC Conventional Synapse from 95257 -> 95258","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95257,"TargetID":95258,"Directional":true}]},{"ID":5831,"SourceStructureID":180,"TargetStructureID":95305,"Label":"180-95305 via Ribbon Synapse from 24656 -> 95306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24656,"TargetID":95306,"Directional":true}]},{"ID":5832,"SourceStructureID":180,"TargetStructureID":95321,"Label":"180-95321 via Ribbon Synapse from 59672 -> 133038, 59674 -> 95322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59672,"TargetID":133038,"Directional":true},{"SourceID":59674,"TargetID":95322,"Directional":true}]},{"ID":5833,"SourceStructureID":180,"TargetStructureID":95326,"Label":"180-95326 via Ribbon Synapse from 132945 -> 132946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132945,"TargetID":132946,"Directional":true}]},{"ID":5834,"SourceStructureID":180,"TargetStructureID":95330,"Label":"180-95330 via Ribbon Synapse from 59672 -> 95331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59672,"TargetID":95331,"Directional":true}]},{"ID":5835,"SourceStructureID":180,"TargetStructureID":95332,"Label":"180-95332 via Ribbon Synapse from 71494 -> 95333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71494,"TargetID":95333,"Directional":true}]},{"ID":5836,"SourceStructureID":180,"TargetStructureID":95334,"Label":"180-95334 via Ribbon Synapse from 132945 -> 132947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132945,"TargetID":132947,"Directional":true}]},{"ID":5837,"SourceStructureID":180,"TargetStructureID":95349,"Label":"180-95349 via BC Conventional Synapse from 95352 -> 95353","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95352,"TargetID":95353,"Directional":true}]},{"ID":5838,"SourceStructureID":180,"TargetStructureID":95365,"Label":"180-95365 via Ribbon Synapse from 5735 -> 95372, 133037 -> 95372","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5735,"TargetID":95372,"Directional":true},{"SourceID":133037,"TargetID":95372,"Directional":true}]},{"ID":5839,"SourceStructureID":180,"TargetStructureID":95382,"Label":"180-95382 via Ribbon Synapse from 844 -> 95383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":844,"TargetID":95383,"Directional":true}]},{"ID":5840,"SourceStructureID":180,"TargetStructureID":95384,"Label":"180-95384 via Ribbon Synapse from 95386 -> 95385","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95386,"TargetID":95385,"Directional":true}]},{"ID":5841,"SourceStructureID":180,"TargetStructureID":95398,"Label":"180-95398 via Ribbon Synapse from 862 -> 95403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":862,"TargetID":95403,"Directional":true}]},{"ID":5842,"SourceStructureID":180,"TargetStructureID":95399,"Label":"180-95399 via Ribbon Synapse from 862 -> 95402, 90916 -> 95402","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":862,"TargetID":95402,"Directional":true},{"SourceID":90916,"TargetID":95402,"Directional":true}]},{"ID":5843,"SourceStructureID":180,"TargetStructureID":95408,"Label":"180-95408 via Ribbon Synapse from 95407 -> 95410, 133057 -> 95418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95407,"TargetID":95410,"Directional":true},{"SourceID":133057,"TargetID":95418,"Directional":true}]},{"ID":5844,"SourceStructureID":180,"TargetStructureID":95411,"Label":"180-95411 via Ribbon Synapse from 867 -> 95412, 11938 -> 95413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":867,"TargetID":95412,"Directional":true},{"SourceID":11938,"TargetID":95413,"Directional":true}]},{"ID":5845,"SourceStructureID":180,"TargetStructureID":95419,"Label":"180-95419 via Ribbon Synapse from 875 -> 95420","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":875,"TargetID":95420,"Directional":true}]},{"ID":5846,"SourceStructureID":180,"TargetStructureID":95424,"Label":"180-95424 via Ribbon Synapse from 31286 -> 95425, 95427 -> 95426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31286,"TargetID":95425,"Directional":true},{"SourceID":95427,"TargetID":95426,"Directional":true}]},{"ID":5847,"SourceStructureID":180,"TargetStructureID":95441,"Label":"180-95441 via Ribbon Synapse from 883 -> 95442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":883,"TargetID":95442,"Directional":true}]},{"ID":5848,"SourceStructureID":180,"TargetStructureID":95445,"Label":"180-95445 via Ribbon Synapse from 132896 -> 132984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132896,"TargetID":132984,"Directional":true}]},{"ID":5849,"SourceStructureID":180,"TargetStructureID":95454,"Label":"180-95454 via Ribbon Synapse from 897 -> 95456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":897,"TargetID":95456,"Directional":true}]},{"ID":5850,"SourceStructureID":180,"TargetStructureID":95495,"Label":"180-95495 via BC Conventional Synapse from 132943 -> 132942","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":132943,"TargetID":132942,"Directional":true}]},{"ID":5851,"SourceStructureID":180,"TargetStructureID":95498,"Label":"180-95498 via BC Conventional Synapse from 95497 -> 95499","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95497,"TargetID":95499,"Directional":true}]},{"ID":5852,"SourceStructureID":180,"TargetStructureID":95501,"Label":"180-95501 via Ribbon Synapse from 90959 -> 95505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90959,"TargetID":95505,"Directional":true}]},{"ID":5853,"SourceStructureID":180,"TargetStructureID":95515,"Label":"180-95515 via BC Conventional Synapse from 95516 -> 95517","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95516,"TargetID":95517,"Directional":true}]},{"ID":5854,"SourceStructureID":180,"TargetStructureID":95527,"Label":"180-95527 via Ribbon Synapse from 90986 -> 95529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90986,"TargetID":95529,"Directional":true}]},{"ID":5855,"SourceStructureID":180,"TargetStructureID":95530,"Label":"180-95530 via BC Conventional Synapse from 95535 -> 95536","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95535,"TargetID":95536,"Directional":true}]},{"ID":5856,"SourceStructureID":180,"TargetStructureID":95538,"Label":"180-95538 via Ribbon Synapse from 904 -> 95539, 95544 -> 133099","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":904,"TargetID":95539,"Directional":true},{"SourceID":95544,"TargetID":133099,"Directional":true}]},{"ID":5857,"SourceStructureID":180,"TargetStructureID":95543,"Label":"180-95543 via Ribbon Synapse from 895 -> 133058","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":895,"TargetID":133058,"Directional":true}]},{"ID":5858,"SourceStructureID":180,"TargetStructureID":95545,"Label":"180-95545 via Ribbon Synapse from 95544 -> 133097","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95544,"TargetID":133097,"Directional":true}]},{"ID":5859,"SourceStructureID":180,"TargetStructureID":95546,"Label":"180-95546 via Ribbon Synapse from 11939 -> 95547","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11939,"TargetID":95547,"Directional":true}]},{"ID":5860,"SourceStructureID":180,"TargetStructureID":95560,"Label":"180-95560 via Ribbon Synapse from 95561 -> 95571","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95561,"TargetID":95571,"Directional":true}]},{"ID":5861,"SourceStructureID":180,"TargetStructureID":95562,"Label":"180-95562 via Ribbon Synapse from 95561 -> 95572","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95561,"TargetID":95572,"Directional":true}]},{"ID":5862,"SourceStructureID":180,"TargetStructureID":95563,"Label":"180-95563 via Postsynapse from 95565 -> 95564","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":95565,"TargetID":95564,"Directional":true}]},{"ID":5863,"SourceStructureID":180,"TargetStructureID":95563,"Label":"180-95563 via Ribbon Synapse from 95576 -> 95577","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95576,"TargetID":95577,"Directional":true}]},{"ID":5864,"SourceStructureID":180,"TargetStructureID":95586,"Label":"180-95586 via Ribbon Synapse from 95587 -> 95588","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95587,"TargetID":95588,"Directional":true}]},{"ID":5865,"SourceStructureID":180,"TargetStructureID":95589,"Label":"180-95589 via Cistern Pre from 132904 -> 132905","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":132904,"TargetID":132905,"Directional":true}]},{"ID":5866,"SourceStructureID":180,"TargetStructureID":95589,"Label":"180-95589 via Ribbon Synapse from 132903 -> 95591","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132903,"TargetID":95591,"Directional":true}]},{"ID":5867,"SourceStructureID":180,"TargetStructureID":95603,"Label":"180-95603 via Ribbon Synapse from 4926 -> 95604","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4926,"TargetID":95604,"Directional":true}]},{"ID":5868,"SourceStructureID":180,"TargetStructureID":95607,"Label":"180-95607 via Ribbon Synapse from 855 -> 95608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":855,"TargetID":95608,"Directional":true}]},{"ID":5869,"SourceStructureID":180,"TargetStructureID":95620,"Label":"180-95620 via Ribbon Synapse from 65600 -> 133048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65600,"TargetID":133048,"Directional":true}]},{"ID":5870,"SourceStructureID":180,"TargetStructureID":95674,"Label":"180-95674 via Ribbon Synapse from 95672 -> 95677","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95672,"TargetID":95677,"Directional":true}]},{"ID":5871,"SourceStructureID":180,"TargetStructureID":95678,"Label":"180-95678 via Ribbon Synapse from 90909 -> 95679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90909,"TargetID":95679,"Directional":true}]},{"ID":5872,"SourceStructureID":180,"TargetStructureID":95683,"Label":"180-95683 via Ribbon Synapse from 90910 -> 95685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90910,"TargetID":95685,"Directional":true}]},{"ID":5873,"SourceStructureID":180,"TargetStructureID":95703,"Label":"180-95703 via Ribbon Synapse from 132869 -> 132870","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132869,"TargetID":132870,"Directional":true}]},{"ID":5874,"SourceStructureID":180,"TargetStructureID":95737,"Label":"180-95737 via Ribbon Synapse from 132939 -> 132940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132939,"TargetID":132940,"Directional":true}]},{"ID":5875,"SourceStructureID":180,"TargetStructureID":95740,"Label":"180-95740 via BC Conventional Synapse from 95741 -> 95742","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95741,"TargetID":95742,"Directional":true}]},{"ID":5876,"SourceStructureID":180,"TargetStructureID":95743,"Label":"180-95743 via Ribbon Synapse from 95744 -> 95745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95744,"TargetID":95745,"Directional":true}]},{"ID":5877,"SourceStructureID":180,"TargetStructureID":95759,"Label":"180-95759 via Ribbon Synapse from 19821 -> 95760","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19821,"TargetID":95760,"Directional":true}]},{"ID":5878,"SourceStructureID":180,"TargetStructureID":95807,"Label":"180-95807 via Ribbon Synapse from 31100 -> 95809","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31100,"TargetID":95809,"Directional":true}]},{"ID":5879,"SourceStructureID":180,"TargetStructureID":95810,"Label":"180-95810 via Ribbon Synapse from 31100 -> 95811, 88071 -> 95832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31100,"TargetID":95811,"Directional":true},{"SourceID":88071,"TargetID":95832,"Directional":true}]},{"ID":5880,"SourceStructureID":180,"TargetStructureID":95824,"Label":"180-95824 via Ribbon Synapse from 6097 -> 95825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6097,"TargetID":95825,"Directional":true}]},{"ID":5881,"SourceStructureID":180,"TargetStructureID":95827,"Label":"180-95827 via BC Conventional Synapse from 88070 -> 95828","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":88070,"TargetID":95828,"Directional":true}]},{"ID":5882,"SourceStructureID":180,"TargetStructureID":95829,"Label":"180-95829 via BC Conventional Synapse from 132965 -> 132964","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":132965,"TargetID":132964,"Directional":true}]},{"ID":5883,"SourceStructureID":180,"TargetStructureID":95829,"Label":"180-95829 via Ribbon Synapse from 88071 -> 95831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88071,"TargetID":95831,"Directional":true}]},{"ID":5884,"SourceStructureID":180,"TargetStructureID":95840,"Label":"180-95840 via Ribbon Synapse from 95842 -> 95843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95842,"TargetID":95843,"Directional":true}]},{"ID":5885,"SourceStructureID":180,"TargetStructureID":95844,"Label":"180-95844 via Ribbon Synapse from 95842 -> 95845","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95842,"TargetID":95845,"Directional":true}]},{"ID":5886,"SourceStructureID":180,"TargetStructureID":95877,"Label":"180-95877 via Ribbon Synapse from 95878 -> 95879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95878,"TargetID":95879,"Directional":true}]},{"ID":5887,"SourceStructureID":180,"TargetStructureID":95927,"Label":"180-95927 via Ribbon Synapse from 14139 -> 95958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14139,"TargetID":95958,"Directional":true}]},{"ID":5888,"SourceStructureID":180,"TargetStructureID":95951,"Label":"180-95951 via Ribbon Synapse from 95953 -> 95954","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95953,"TargetID":95954,"Directional":true}]},{"ID":5889,"SourceStructureID":180,"TargetStructureID":95978,"Label":"180-95978 via Ribbon Synapse from 14156 -> 95982","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14156,"TargetID":95982,"Directional":true}]},{"ID":5890,"SourceStructureID":180,"TargetStructureID":95983,"Label":"180-95983 via BC Conventional Synapse from 95984 -> 95985","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95984,"TargetID":95985,"Directional":true}]},{"ID":5891,"SourceStructureID":180,"TargetStructureID":96021,"Label":"180-96021 via Ribbon Synapse from 14151 -> 96022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14151,"TargetID":96022,"Directional":true}]},{"ID":5892,"SourceStructureID":180,"TargetStructureID":96023,"Label":"180-96023 via Ribbon Synapse from 81387 -> 96030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81387,"TargetID":96030,"Directional":true}]},{"ID":5893,"SourceStructureID":180,"TargetStructureID":96026,"Label":"180-96026 via Ribbon Synapse from 14149 -> 96027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14149,"TargetID":96027,"Directional":true}]},{"ID":5894,"SourceStructureID":180,"TargetStructureID":96028,"Label":"180-96028 via Ribbon Synapse from 14155 -> 96029","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14155,"TargetID":96029,"Directional":true}]},{"ID":5895,"SourceStructureID":180,"TargetStructureID":96033,"Label":"180-96033 via Ribbon Synapse from 81387 -> 96034","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81387,"TargetID":96034,"Directional":true}]},{"ID":5896,"SourceStructureID":180,"TargetStructureID":133015,"Label":"180-133015 via Ribbon Synapse from 126090 -> 133016","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126090,"TargetID":133016,"Directional":true}]},{"ID":5897,"SourceStructureID":180,"TargetStructureID":133027,"Label":"180-133027 via Ribbon Synapse from 31272 -> 133028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31272,"TargetID":133028,"Directional":true}]},{"ID":5898,"SourceStructureID":181,"TargetStructureID":173,"Label":"181-173 via Adherens from 20426 -> 20427, 20439 -> 20440","Type":"Adherens","Directional":true,"Links":[{"SourceID":20426,"TargetID":20427,"Directional":true},{"SourceID":20439,"TargetID":20440,"Directional":true}]},{"ID":5899,"SourceStructureID":181,"TargetStructureID":3865,"Label":"181-3865 via Ribbon Synapse from 20521 -> 132174, 33291 -> 36121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20521,"TargetID":132174,"Directional":true},{"SourceID":33291,"TargetID":36121,"Directional":true}]},{"ID":5900,"SourceStructureID":181,"TargetStructureID":8575,"Label":"181-8575 via BC Conventional Synapse from 62847 -> 62846","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62847,"TargetID":62846,"Directional":true}]},{"ID":5901,"SourceStructureID":181,"TargetStructureID":8575,"Label":"181-8575 via Ribbon Synapse from 20520 -> 62258","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20520,"TargetID":62258,"Directional":true}]},{"ID":5902,"SourceStructureID":181,"TargetStructureID":12203,"Label":"181-12203 via Ribbon Synapse from 12244 -> 12242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12244,"TargetID":12242,"Directional":true}]},{"ID":5903,"SourceStructureID":181,"TargetStructureID":31605,"Label":"181-31605 via Ribbon Synapse from 31621 -> 31622","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31621,"TargetID":31622,"Directional":true}]},{"ID":5904,"SourceStructureID":181,"TargetStructureID":54622,"Label":"181-54622 via BC Conventional Synapse from 55945 -> 55946","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55945,"TargetID":55946,"Directional":true}]},{"ID":5905,"SourceStructureID":181,"TargetStructureID":56211,"Label":"181-56211 via Ribbon Synapse from 56232 -> 56231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56232,"TargetID":56231,"Directional":true}]},{"ID":5906,"SourceStructureID":181,"TargetStructureID":129648,"Label":"181-129648 via Ribbon Synapse from 33291 -> 129649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33291,"TargetID":129649,"Directional":true}]},{"ID":5907,"SourceStructureID":181,"TargetStructureID":136432,"Label":"181-136432 via Ribbon Synapse from 18410 -> 136542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18410,"TargetID":136542,"Directional":true}]},{"ID":5908,"SourceStructureID":184,"TargetStructureID":9260,"Label":"184-9260 via Conventional from 30392 -> 30391","Type":"Conventional","Directional":true,"Links":[{"SourceID":30392,"TargetID":30391,"Directional":true}]},{"ID":5909,"SourceStructureID":222,"TargetStructureID":8720,"Label":"222-8720 via BC Conventional Synapse from 63144 -> 15318","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63144,"TargetID":15318,"Directional":true}]},{"ID":5910,"SourceStructureID":223,"TargetStructureID":380,"Label":"223-380 via Conventional from 26532 -> 17876","Type":"Conventional","Directional":true,"Links":[{"SourceID":26532,"TargetID":17876,"Directional":true}]},{"ID":5911,"SourceStructureID":223,"TargetStructureID":5150,"Label":"223-5150 via Conventional from 131213 -> 131212","Type":"Conventional","Directional":true,"Links":[{"SourceID":131213,"TargetID":131212,"Directional":true}]},{"ID":5912,"SourceStructureID":223,"TargetStructureID":6163,"Label":"223-6163 via Conventional from 34935 -> 34936","Type":"Conventional","Directional":true,"Links":[{"SourceID":34935,"TargetID":34936,"Directional":true}]},{"ID":5913,"SourceStructureID":223,"TargetStructureID":21874,"Label":"223-21874 via Conventional from 47086 -> 47087","Type":"Conventional","Directional":true,"Links":[{"SourceID":47086,"TargetID":47087,"Directional":true}]},{"ID":5914,"SourceStructureID":260,"TargetStructureID":250,"Label":"260-250 via Ribbon Synapse from 36184 -> 36185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36184,"TargetID":36185,"Directional":true}]},{"ID":5915,"SourceStructureID":268,"TargetStructureID":5117,"Label":"268-5117 via Ribbon Synapse from 135192 -> 135193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135192,"TargetID":135193,"Directional":true}]},{"ID":5916,"SourceStructureID":269,"TargetStructureID":7468,"Label":"269-7468 via Ribbon Synapse from 42464 -> 29064","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42464,"TargetID":29064,"Directional":true}]},{"ID":5917,"SourceStructureID":273,"TargetStructureID":352,"Label":"273-352 via Ribbon Synapse from 31641 -> 31654, 39992 -> 39994, 64539 -> 31654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31641,"TargetID":31654,"Directional":true},{"SourceID":39992,"TargetID":39994,"Directional":true},{"SourceID":64539,"TargetID":31654,"Directional":true}]},{"ID":5918,"SourceStructureID":273,"TargetStructureID":7157,"Label":"273-7157 via Ribbon Synapse from 26221 -> 26222, 26223 -> 26224, 31641 -> 31645, 31672 -> 31671, 87624 -> 26226, 87632 -> 26239, 87641 -> 87642, 87644 -> 87643, 87651 -> 87657, 87674 -> 87677","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26221,"TargetID":26222,"Directional":true},{"SourceID":26223,"TargetID":26224,"Directional":true},{"SourceID":31641,"TargetID":31645,"Directional":true},{"SourceID":31672,"TargetID":31671,"Directional":true},{"SourceID":87624,"TargetID":26226,"Directional":true},{"SourceID":87632,"TargetID":26239,"Directional":true},{"SourceID":87641,"TargetID":87642,"Directional":true},{"SourceID":87644,"TargetID":87643,"Directional":true},{"SourceID":87651,"TargetID":87657,"Directional":true},{"SourceID":87674,"TargetID":87677,"Directional":true}]},{"ID":5919,"SourceStructureID":273,"TargetStructureID":87626,"Label":"273-87626 via Ribbon Synapse from 87624 -> 87627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87624,"TargetID":87627,"Directional":true}]},{"ID":5920,"SourceStructureID":273,"TargetStructureID":87635,"Label":"273-87635 via Ribbon Synapse from 87634 -> 87636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87634,"TargetID":87636,"Directional":true}]},{"ID":5921,"SourceStructureID":273,"TargetStructureID":87678,"Label":"273-87678 via Ribbon Synapse from 87674 -> 87679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87674,"TargetID":87679,"Directional":true}]},{"ID":5922,"SourceStructureID":276,"TargetStructureID":284,"Label":"276-284 via Ribbon Synapse from 29519 -> 29535, 29534 -> 29533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29519,"TargetID":29535,"Directional":true},{"SourceID":29534,"TargetID":29533,"Directional":true}]},{"ID":5923,"SourceStructureID":276,"TargetStructureID":7157,"Label":"276-7157 via Ribbon Synapse from 94910 -> 29518","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94910,"TargetID":29518,"Directional":true}]},{"ID":5924,"SourceStructureID":276,"TargetStructureID":31399,"Label":"276-31399 via Ribbon Synapse from 31409 -> 31408","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31409,"TargetID":31408,"Directional":true}]},{"ID":5925,"SourceStructureID":277,"TargetStructureID":278,"Label":"277-278 via BC Conventional Synapse from 60497 -> 60496","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":60497,"TargetID":60496,"Directional":true}]},{"ID":5926,"SourceStructureID":277,"TargetStructureID":278,"Label":"277-278 via Ribbon Synapse from 26072 -> 31728","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26072,"TargetID":31728,"Directional":true}]},{"ID":5927,"SourceStructureID":277,"TargetStructureID":606,"Label":"277-606 via Ribbon Synapse from 26011 -> 49132, 26019 -> 52851, 26065 -> 52764, 52847 -> 52829","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26011,"TargetID":49132,"Directional":true},{"SourceID":26019,"TargetID":52851,"Directional":true},{"SourceID":26065,"TargetID":52764,"Directional":true},{"SourceID":52847,"TargetID":52829,"Directional":true}]},{"ID":5928,"SourceStructureID":277,"TargetStructureID":7568,"Label":"277-7568 via Ribbon Synapse from 26048 -> 27147","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26048,"TargetID":27147,"Directional":true}]},{"ID":5929,"SourceStructureID":277,"TargetStructureID":31679,"Label":"277-31679 via Ribbon Synapse from 26412 -> 31692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26412,"TargetID":31692,"Directional":true}]},{"ID":5930,"SourceStructureID":277,"TargetStructureID":70924,"Label":"277-70924 via Ribbon Synapse from 26045 -> 71033","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26045,"TargetID":71033,"Directional":true}]},{"ID":5931,"SourceStructureID":278,"TargetStructureID":276,"Label":"278-276 via Conventional from 46038 -> 46039","Type":"Conventional","Directional":true,"Links":[{"SourceID":46038,"TargetID":46039,"Directional":true}]},{"ID":5932,"SourceStructureID":278,"TargetStructureID":334,"Label":"278-334 via Conventional from 35486 -> 35487","Type":"Conventional","Directional":true,"Links":[{"SourceID":35486,"TargetID":35487,"Directional":true}]},{"ID":5933,"SourceStructureID":278,"TargetStructureID":342,"Label":"278-342 via Conventional from 31726 -> 31724","Type":"Conventional","Directional":true,"Links":[{"SourceID":31726,"TargetID":31724,"Directional":true}]},{"ID":5934,"SourceStructureID":280,"TargetStructureID":284,"Label":"280-284 via Ribbon Synapse from 32575 -> 32574","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32575,"TargetID":32574,"Directional":true}]},{"ID":5935,"SourceStructureID":280,"TargetStructureID":7157,"Label":"280-7157 via Ribbon Synapse from 33590 -> 26265, 87686 -> 87691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33590,"TargetID":26265,"Directional":true},{"SourceID":87686,"TargetID":87691,"Directional":true}]},{"ID":5936,"SourceStructureID":280,"TargetStructureID":33588,"Label":"280-33588 via Ribbon Synapse from 33590 -> 33589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33590,"TargetID":33589,"Directional":true}]},{"ID":5937,"SourceStructureID":280,"TargetStructureID":115519,"Label":"280-115519 via Ribbon Synapse from 115523 -> 115522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115523,"TargetID":115522,"Directional":true}]},{"ID":5938,"SourceStructureID":284,"TargetStructureID":605,"Label":"284-605 via Conventional from 22516 -> 22517","Type":"Conventional","Directional":true,"Links":[{"SourceID":22516,"TargetID":22517,"Directional":true}]},{"ID":5939,"SourceStructureID":284,"TargetStructureID":5150,"Label":"284-5150 via Conventional from 15425 -> 5261","Type":"Conventional","Directional":true,"Links":[{"SourceID":15425,"TargetID":5261,"Directional":true}]},{"ID":5940,"SourceStructureID":284,"TargetStructureID":9787,"Label":"284-9787 via Conventional from 12055 -> 9844","Type":"Conventional","Directional":true,"Links":[{"SourceID":12055,"TargetID":9844,"Directional":true}]},{"ID":5941,"SourceStructureID":285,"TargetStructureID":284,"Label":"285-284 via Ribbon Synapse from 95373 -> 95374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95373,"TargetID":95374,"Directional":true}]},{"ID":5942,"SourceStructureID":285,"TargetStructureID":20299,"Label":"285-20299 via Ribbon Synapse from 20310 -> 20300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20310,"TargetID":20300,"Directional":true}]},{"ID":5943,"SourceStructureID":286,"TargetStructureID":4890,"Label":"286-4890 via Ribbon Synapse from 20294 -> 20006, 20295 -> 20007, 20522 -> 20008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20294,"TargetID":20006,"Directional":true},{"SourceID":20295,"TargetID":20007,"Directional":true},{"SourceID":20522,"TargetID":20008,"Directional":true}]},{"ID":5944,"SourceStructureID":286,"TargetStructureID":5439,"Label":"286-5439 via Ribbon Synapse from 85715 -> 85716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85715,"TargetID":85716,"Directional":true}]},{"ID":5945,"SourceStructureID":286,"TargetStructureID":8579,"Label":"286-8579 via Ribbon Synapse from 20506 -> 62673","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20506,"TargetID":62673,"Directional":true}]},{"ID":5946,"SourceStructureID":286,"TargetStructureID":15796,"Label":"286-15796 via BC Conventional Synapse from 121619 -> 121618","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":121619,"TargetID":121618,"Directional":true}]},{"ID":5947,"SourceStructureID":286,"TargetStructureID":18282,"Label":"286-18282 via Ribbon Synapse from 20506 -> 20502, 38860 -> 38851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20506,"TargetID":20502,"Directional":true},{"SourceID":38860,"TargetID":38851,"Directional":true}]},{"ID":5948,"SourceStructureID":286,"TargetStructureID":20299,"Label":"286-20299 via Ribbon Synapse from 27669 -> 45608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27669,"TargetID":45608,"Directional":true}]},{"ID":5949,"SourceStructureID":286,"TargetStructureID":20311,"Label":"286-20311 via Ribbon Synapse from 100586 -> 100585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100586,"TargetID":100585,"Directional":true}]},{"ID":5950,"SourceStructureID":286,"TargetStructureID":32547,"Label":"286-32547 via Ribbon Synapse from 26452 -> 99150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26452,"TargetID":99150,"Directional":true}]},{"ID":5951,"SourceStructureID":286,"TargetStructureID":33148,"Label":"286-33148 via BC Conventional Synapse from 129128 -> 33158","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":129128,"TargetID":33158,"Directional":true}]},{"ID":5952,"SourceStructureID":286,"TargetStructureID":34138,"Label":"286-34138 via Ribbon Synapse from 34143 -> 34142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34143,"TargetID":34142,"Directional":true}]},{"ID":5953,"SourceStructureID":286,"TargetStructureID":34148,"Label":"286-34148 via Ribbon Synapse from 26460 -> 38751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26460,"TargetID":38751,"Directional":true}]},{"ID":5954,"SourceStructureID":289,"TargetStructureID":606,"Label":"289-606 via Conventional from 53204 -> 53203","Type":"Conventional","Directional":true,"Links":[{"SourceID":53204,"TargetID":53203,"Directional":true}]},{"ID":5955,"SourceStructureID":293,"TargetStructureID":284,"Label":"293-284 via Ribbon Synapse from 14379 -> 17507, 17425 -> 17516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14379,"TargetID":17507,"Directional":true},{"SourceID":17425,"TargetID":17516,"Directional":true}]},{"ID":5956,"SourceStructureID":293,"TargetStructureID":6153,"Label":"293-6153 via Ribbon Synapse from 17424 -> 18167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17424,"TargetID":18167,"Directional":true}]},{"ID":5957,"SourceStructureID":294,"TargetStructureID":223,"Label":"294-223 via Ribbon Synapse from 17399 -> 17400, 17406 -> 17417, 17873 -> 17874, 120618 -> 120622, 120619 -> 120623, 120620 -> 120625, 120621 -> 120624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17399,"TargetID":17400,"Directional":true},{"SourceID":17406,"TargetID":17417,"Directional":true},{"SourceID":17873,"TargetID":17874,"Directional":true},{"SourceID":120618,"TargetID":120622,"Directional":true},{"SourceID":120619,"TargetID":120623,"Directional":true},{"SourceID":120620,"TargetID":120625,"Directional":true},{"SourceID":120621,"TargetID":120624,"Directional":true}]},{"ID":5958,"SourceStructureID":294,"TargetStructureID":284,"Label":"294-284 via Ribbon Synapse from 14352 -> 21567, 17406 -> 17522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14352,"TargetID":21567,"Directional":true},{"SourceID":17406,"TargetID":17522,"Directional":true}]},{"ID":5959,"SourceStructureID":294,"TargetStructureID":410,"Label":"294-410 via Ribbon Synapse from 16665 -> 16699, 17412 -> 17411, 17413 -> 17414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16665,"TargetID":16699,"Directional":true},{"SourceID":17412,"TargetID":17411,"Directional":true},{"SourceID":17413,"TargetID":17414,"Directional":true}]},{"ID":5960,"SourceStructureID":294,"TargetStructureID":4850,"Label":"294-4850 via Ribbon Synapse from 17873 -> 22540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17873,"TargetID":22540,"Directional":true}]},{"ID":5961,"SourceStructureID":294,"TargetStructureID":6153,"Label":"294-6153 via Ribbon Synapse from 16654 -> 16655, 16656 -> 16657, 16659 -> 16660, 16664 -> 16698, 16669 -> 16668, 16709 -> 16707, 17835 -> 17834","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16654,"TargetID":16655,"Directional":true},{"SourceID":16656,"TargetID":16657,"Directional":true},{"SourceID":16659,"TargetID":16660,"Directional":true},{"SourceID":16664,"TargetID":16698,"Directional":true},{"SourceID":16669,"TargetID":16668,"Directional":true},{"SourceID":16709,"TargetID":16707,"Directional":true},{"SourceID":17835,"TargetID":17834,"Directional":true}]},{"ID":5962,"SourceStructureID":294,"TargetStructureID":25688,"Label":"294-25688 via Ribbon Synapse from 17413 -> 25701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17413,"TargetID":25701,"Directional":true}]},{"ID":5963,"SourceStructureID":298,"TargetStructureID":8720,"Label":"298-8720 via Ribbon Synapse from 63500 -> 63499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63500,"TargetID":63499,"Directional":true}]},{"ID":5964,"SourceStructureID":299,"TargetStructureID":5107,"Label":"299-5107 via Ribbon Synapse from 7218 -> 55355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7218,"TargetID":55355,"Directional":true}]},{"ID":5965,"SourceStructureID":299,"TargetStructureID":38735,"Label":"299-38735 via Ribbon Synapse from 38739 -> 38738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38739,"TargetID":38738,"Directional":true}]},{"ID":5966,"SourceStructureID":299,"TargetStructureID":47013,"Label":"299-47013 via Ribbon Synapse from 47074 -> 47070, 47075 -> 47069","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47074,"TargetID":47070,"Directional":true},{"SourceID":47075,"TargetID":47069,"Directional":true}]},{"ID":5967,"SourceStructureID":299,"TargetStructureID":47095,"Label":"299-47095 via Ribbon Synapse from 47096 -> 47097","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47096,"TargetID":47097,"Directional":true}]},{"ID":5968,"SourceStructureID":299,"TargetStructureID":47104,"Label":"299-47104 via Ribbon Synapse from 47103 -> 47105","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47103,"TargetID":47105,"Directional":true}]},{"ID":5969,"SourceStructureID":299,"TargetStructureID":47109,"Label":"299-47109 via Ribbon Synapse from 47103 -> 47111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47103,"TargetID":47111,"Directional":true}]},{"ID":5970,"SourceStructureID":304,"TargetStructureID":28913,"Label":"304-28913 via Conventional from 129168 -> 28923, 129174 -> 28921","Type":"Conventional","Directional":true,"Links":[{"SourceID":129168,"TargetID":28923,"Directional":true},{"SourceID":129174,"TargetID":28921,"Directional":true}]},{"ID":5971,"SourceStructureID":304,"TargetStructureID":129181,"Label":"304-129181 via Conventional from 129182 -> 129183","Type":"Conventional","Directional":true,"Links":[{"SourceID":129182,"TargetID":129183,"Directional":true}]},{"ID":5972,"SourceStructureID":307,"TargetStructureID":906,"Label":"307-906 via Ribbon Synapse from 15973 -> 15903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15973,"TargetID":15903,"Directional":true}]},{"ID":5973,"SourceStructureID":307,"TargetStructureID":7594,"Label":"307-7594 via Ribbon Synapse from 16591 -> 46860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16591,"TargetID":46860,"Directional":true}]},{"ID":5974,"SourceStructureID":307,"TargetStructureID":9769,"Label":"307-9769 via Ribbon Synapse from 7257 -> 55107, 7281 -> 12356, 12335 -> 12332, 12337 -> 12338, 12357 -> 12358, 15954 -> 15955, 15975 -> 55153, 16362 -> 12330, 16364 -> 12326","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7257,"TargetID":55107,"Directional":true},{"SourceID":7281,"TargetID":12356,"Directional":true},{"SourceID":12335,"TargetID":12332,"Directional":true},{"SourceID":12337,"TargetID":12338,"Directional":true},{"SourceID":12357,"TargetID":12358,"Directional":true},{"SourceID":15954,"TargetID":15955,"Directional":true},{"SourceID":15975,"TargetID":55153,"Directional":true},{"SourceID":16362,"TargetID":12330,"Directional":true},{"SourceID":16364,"TargetID":12326,"Directional":true}]},{"ID":5975,"SourceStructureID":307,"TargetStructureID":32668,"Label":"307-32668 via Ribbon Synapse from 7253 -> 32669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7253,"TargetID":32669,"Directional":true}]},{"ID":5976,"SourceStructureID":307,"TargetStructureID":38632,"Label":"307-38632 via Ribbon Synapse from 68703 -> 68704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68703,"TargetID":68704,"Directional":true}]},{"ID":5977,"SourceStructureID":307,"TargetStructureID":45326,"Label":"307-45326 via Ribbon Synapse from 7233 -> 45330, 7250 -> 45333, 7264 -> 45341, 7265 -> 45342","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7233,"TargetID":45330,"Directional":true},{"SourceID":7250,"TargetID":45333,"Directional":true},{"SourceID":7264,"TargetID":45341,"Directional":true},{"SourceID":7265,"TargetID":45342,"Directional":true}]},{"ID":5978,"SourceStructureID":307,"TargetStructureID":45336,"Label":"307-45336 via Ribbon Synapse from 7250 -> 45338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7250,"TargetID":45338,"Directional":true}]},{"ID":5979,"SourceStructureID":307,"TargetStructureID":45358,"Label":"307-45358 via Ribbon Synapse from 7237 -> 45363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7237,"TargetID":45363,"Directional":true}]},{"ID":5980,"SourceStructureID":308,"TargetStructureID":422,"Label":"308-422 via Conventional from 43339 -> 43340, 43341 -> 43342","Type":"Conventional","Directional":true,"Links":[{"SourceID":43339,"TargetID":43340,"Directional":true},{"SourceID":43341,"TargetID":43342,"Directional":true}]},{"ID":5981,"SourceStructureID":308,"TargetStructureID":2610,"Label":"308-2610 via Conventional from 43590 -> 43591, 43760 -> 43761","Type":"Conventional","Directional":true,"Links":[{"SourceID":43590,"TargetID":43591,"Directional":true},{"SourceID":43760,"TargetID":43761,"Directional":true}]},{"ID":5982,"SourceStructureID":308,"TargetStructureID":5017,"Label":"308-5017 via Conventional from 42551 -> 42554, 42556 -> 42557, 42558 -> 42559, 42560 -> 42561, 86721 -> 86722","Type":"Conventional","Directional":true,"Links":[{"SourceID":42551,"TargetID":42554,"Directional":true},{"SourceID":42556,"TargetID":42557,"Directional":true},{"SourceID":42558,"TargetID":42559,"Directional":true},{"SourceID":42560,"TargetID":42561,"Directional":true},{"SourceID":86721,"TargetID":86722,"Directional":true}]},{"ID":5983,"SourceStructureID":308,"TargetStructureID":8749,"Label":"308-8749 via Conventional from 42571 -> 8830, 42572 -> 42573, 43459 -> 8823, 43462 -> 8821, 43465 -> 43467, 43469 -> 43468, 43470 -> 8801, 43471 -> 43472, 86718 -> 86719","Type":"Conventional","Directional":true,"Links":[{"SourceID":42571,"TargetID":8830,"Directional":true},{"SourceID":42572,"TargetID":42573,"Directional":true},{"SourceID":43459,"TargetID":8823,"Directional":true},{"SourceID":43462,"TargetID":8821,"Directional":true},{"SourceID":43465,"TargetID":43467,"Directional":true},{"SourceID":43469,"TargetID":43468,"Directional":true},{"SourceID":43470,"TargetID":8801,"Directional":true},{"SourceID":43471,"TargetID":43472,"Directional":true},{"SourceID":86718,"TargetID":86719,"Directional":true}]},{"ID":5984,"SourceStructureID":308,"TargetStructureID":10872,"Label":"308-10872 via Conventional from 43774 -> 15055, 43775 -> 15058","Type":"Conventional","Directional":true,"Links":[{"SourceID":43774,"TargetID":15055,"Directional":true},{"SourceID":43775,"TargetID":15058,"Directional":true}]},{"ID":5985,"SourceStructureID":308,"TargetStructureID":11042,"Label":"308-11042 via Conventional from 42696 -> 42701","Type":"Conventional","Directional":true,"Links":[{"SourceID":42696,"TargetID":42701,"Directional":true}]},{"ID":5986,"SourceStructureID":308,"TargetStructureID":17228,"Label":"308-17228 via Conventional from 43535 -> 43537, 43536 -> 43538","Type":"Conventional","Directional":true,"Links":[{"SourceID":43535,"TargetID":43537,"Directional":true},{"SourceID":43536,"TargetID":43538,"Directional":true}]},{"ID":5987,"SourceStructureID":309,"TargetStructureID":223,"Label":"309-223 via Ribbon Synapse from 120616 -> 120617","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120616,"TargetID":120617,"Directional":true}]},{"ID":5988,"SourceStructureID":309,"TargetStructureID":310,"Label":"309-310 via Ribbon cluster from 122253 -> 21798","Type":"Ribbon cluster","Directional":true,"Links":[{"SourceID":122253,"TargetID":21798,"Directional":true}]},{"ID":5989,"SourceStructureID":309,"TargetStructureID":310,"Label":"309-310 via Ribbon Synapse from 6676 -> 21798, 13221 -> 21799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6676,"TargetID":21798,"Directional":true},{"SourceID":13221,"TargetID":21799,"Directional":true}]},{"ID":5990,"SourceStructureID":309,"TargetStructureID":525,"Label":"309-525 via Ribbon Synapse from 13239 -> 6270","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13239,"TargetID":6270,"Directional":true}]},{"ID":5991,"SourceStructureID":309,"TargetStructureID":5118,"Label":"309-5118 via Ribbon Synapse from 13387 -> 6545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13387,"TargetID":6545,"Directional":true}]},{"ID":5992,"SourceStructureID":309,"TargetStructureID":18282,"Label":"309-18282 via Ribbon Synapse from 13343 -> 20330","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13343,"TargetID":20330,"Directional":true}]},{"ID":5993,"SourceStructureID":309,"TargetStructureID":25440,"Label":"309-25440 via Ribbon Synapse from 13331 -> 25463","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13331,"TargetID":25463,"Directional":true}]},{"ID":5994,"SourceStructureID":309,"TargetStructureID":37288,"Label":"309-37288 via Ribbon Synapse from 13246 -> 37371, 13255 -> 37369, 13265 -> 37385, 13309 -> 37356, 28697 -> 37370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13246,"TargetID":37371,"Directional":true},{"SourceID":13255,"TargetID":37369,"Directional":true},{"SourceID":13265,"TargetID":37385,"Directional":true},{"SourceID":13309,"TargetID":37356,"Directional":true},{"SourceID":28697,"TargetID":37370,"Directional":true}]},{"ID":5995,"SourceStructureID":309,"TargetStructureID":121541,"Label":"309-121541 via Ribbon Synapse from 13306 -> 121542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13306,"TargetID":121542,"Directional":true}]},{"ID":5996,"SourceStructureID":311,"TargetStructureID":69537,"Label":"311-69537 via Ribbon Synapse from 69572 -> 69571","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69572,"TargetID":69571,"Directional":true}]},{"ID":5997,"SourceStructureID":318,"TargetStructureID":483,"Label":"318-483 via Conventional from 102686 -> 6757","Type":"Conventional","Directional":true,"Links":[{"SourceID":102686,"TargetID":6757,"Directional":true}]},{"ID":5998,"SourceStructureID":321,"TargetStructureID":288,"Label":"321-288 via Cistern Pre from 38808 -> 38809","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":38808,"TargetID":38809,"Directional":true}]},{"ID":5999,"SourceStructureID":321,"TargetStructureID":9769,"Label":"321-9769 via Ribbon Synapse from 30094 -> 30091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30094,"TargetID":30091,"Directional":true}]},{"ID":6000,"SourceStructureID":321,"TargetStructureID":32566,"Label":"321-32566 via Ribbon Synapse from 99154 -> 99151","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99154,"TargetID":99151,"Directional":true}]},{"ID":6001,"SourceStructureID":321,"TargetStructureID":70924,"Label":"321-70924 via Ribbon Synapse from 122217 -> 122216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122217,"TargetID":122216,"Directional":true}]},{"ID":6002,"SourceStructureID":321,"TargetStructureID":71882,"Label":"321-71882 via Ribbon Synapse from 90239 -> 90236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90239,"TargetID":90236,"Directional":true}]},{"ID":6003,"SourceStructureID":321,"TargetStructureID":90151,"Label":"321-90151 via Ribbon Synapse from 65949 -> 90158","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65949,"TargetID":90158,"Directional":true}]},{"ID":6004,"SourceStructureID":324,"TargetStructureID":606,"Label":"324-606 via Ribbon Synapse from 12381 -> 53072, 30744 -> 53080, 50893 -> 53282, 52391 -> 52392, 53056 -> 53055, 53062 -> 53061, 53086 -> 53087, 53158 -> 53159, 53160 -> 53161, 53261 -> 53262, 53271 -> 53270, 53280 -> 53285, 53289 -> 53290, 53301 -> 53302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12381,"TargetID":53072,"Directional":true},{"SourceID":30744,"TargetID":53080,"Directional":true},{"SourceID":50893,"TargetID":53282,"Directional":true},{"SourceID":52391,"TargetID":52392,"Directional":true},{"SourceID":53056,"TargetID":53055,"Directional":true},{"SourceID":53062,"TargetID":53061,"Directional":true},{"SourceID":53086,"TargetID":53087,"Directional":true},{"SourceID":53158,"TargetID":53159,"Directional":true},{"SourceID":53160,"TargetID":53161,"Directional":true},{"SourceID":53261,"TargetID":53262,"Directional":true},{"SourceID":53271,"TargetID":53270,"Directional":true},{"SourceID":53280,"TargetID":53285,"Directional":true},{"SourceID":53289,"TargetID":53290,"Directional":true},{"SourceID":53301,"TargetID":53302,"Directional":true}]},{"ID":6005,"SourceStructureID":324,"TargetStructureID":9769,"Label":"324-9769 via Ribbon Synapse from 12369 -> 12367, 12381 -> 12375, 12383 -> 12384, 12385 -> 12386, 12387 -> 12388, 12572 -> 12390, 30744 -> 53081, 52391 -> 12371, 120594 -> 120595","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12369,"TargetID":12367,"Directional":true},{"SourceID":12381,"TargetID":12375,"Directional":true},{"SourceID":12383,"TargetID":12384,"Directional":true},{"SourceID":12385,"TargetID":12386,"Directional":true},{"SourceID":12387,"TargetID":12388,"Directional":true},{"SourceID":12572,"TargetID":12390,"Directional":true},{"SourceID":30744,"TargetID":53081,"Directional":true},{"SourceID":52391,"TargetID":12371,"Directional":true},{"SourceID":120594,"TargetID":120595,"Directional":true}]},{"ID":6006,"SourceStructureID":324,"TargetStructureID":20311,"Label":"324-20311 via Ribbon Synapse from 30740 -> 100601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30740,"TargetID":100601,"Directional":true}]},{"ID":6007,"SourceStructureID":324,"TargetStructureID":32581,"Label":"324-32581 via Ribbon Synapse from 32596 -> 32594","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32596,"TargetID":32594,"Directional":true}]},{"ID":6008,"SourceStructureID":324,"TargetStructureID":34494,"Label":"324-34494 via Ribbon Synapse from 35173 -> 35172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35173,"TargetID":35172,"Directional":true}]},{"ID":6009,"SourceStructureID":324,"TargetStructureID":38632,"Label":"324-38632 via Ribbon Synapse from 30724 -> 38661, 30726 -> 38660, 30728 -> 38663, 30731 -> 38658, 30733 -> 38653, 30734 -> 38650, 30735 -> 38648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30724,"TargetID":38661,"Directional":true},{"SourceID":30726,"TargetID":38660,"Directional":true},{"SourceID":30728,"TargetID":38663,"Directional":true},{"SourceID":30731,"TargetID":38658,"Directional":true},{"SourceID":30733,"TargetID":38653,"Directional":true},{"SourceID":30734,"TargetID":38650,"Directional":true},{"SourceID":30735,"TargetID":38648,"Directional":true}]},{"ID":6010,"SourceStructureID":324,"TargetStructureID":50982,"Label":"324-50982 via Ribbon Synapse from 52383 -> 52384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52383,"TargetID":52384,"Directional":true}]},{"ID":6011,"SourceStructureID":324,"TargetStructureID":55403,"Label":"324-55403 via Ribbon Synapse from 43562 -> 55452, 53271 -> 55406, 55416 -> 55417, 55434 -> 55433","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43562,"TargetID":55452,"Directional":true},{"SourceID":53271,"TargetID":55406,"Directional":true},{"SourceID":55416,"TargetID":55417,"Directional":true},{"SourceID":55434,"TargetID":55433,"Directional":true}]},{"ID":6012,"SourceStructureID":324,"TargetStructureID":55517,"Label":"324-55517 via Ribbon Synapse from 53261 -> 55525, 53301 -> 55520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53261,"TargetID":55525,"Directional":true},{"SourceID":53301,"TargetID":55520,"Directional":true}]},{"ID":6013,"SourceStructureID":324,"TargetStructureID":71882,"Label":"324-71882 via Ribbon Synapse from 90354 -> 90345","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90354,"TargetID":90345,"Directional":true}]},{"ID":6014,"SourceStructureID":324,"TargetStructureID":83385,"Label":"324-83385 via Ribbon Synapse from 83398 -> 83438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83398,"TargetID":83438,"Directional":true}]},{"ID":6015,"SourceStructureID":324,"TargetStructureID":83409,"Label":"324-83409 via Ribbon Synapse from 83405 -> 83442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83405,"TargetID":83442,"Directional":true}]},{"ID":6016,"SourceStructureID":324,"TargetStructureID":83421,"Label":"324-83421 via BC Conventional Synapse from 83447 -> 83446","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":83447,"TargetID":83446,"Directional":true}]},{"ID":6017,"SourceStructureID":324,"TargetStructureID":83425,"Label":"324-83425 via Ribbon Synapse from 83424 -> 83426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83424,"TargetID":83426,"Directional":true}]},{"ID":6018,"SourceStructureID":324,"TargetStructureID":83430,"Label":"324-83430 via Ribbon Synapse from 83597 -> 83598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83597,"TargetID":83598,"Directional":true}]},{"ID":6019,"SourceStructureID":324,"TargetStructureID":83439,"Label":"324-83439 via Ribbon Synapse from 83402 -> 83440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83402,"TargetID":83440,"Directional":true}]},{"ID":6020,"SourceStructureID":324,"TargetStructureID":83482,"Label":"324-83482 via Ribbon Synapse from 83481 -> 83485","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83481,"TargetID":83485,"Directional":true}]},{"ID":6021,"SourceStructureID":324,"TargetStructureID":83487,"Label":"324-83487 via Ribbon Synapse from 83481 -> 96962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83481,"TargetID":96962,"Directional":true}]},{"ID":6022,"SourceStructureID":324,"TargetStructureID":83535,"Label":"324-83535 via Ribbon Synapse from 83384 -> 83536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83384,"TargetID":83536,"Directional":true}]},{"ID":6023,"SourceStructureID":324,"TargetStructureID":83540,"Label":"324-83540 via Ribbon Synapse from 83539 -> 83543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83539,"TargetID":83543,"Directional":true}]},{"ID":6024,"SourceStructureID":324,"TargetStructureID":83541,"Label":"324-83541 via Ribbon Synapse from 83539 -> 83542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83539,"TargetID":83542,"Directional":true}]},{"ID":6025,"SourceStructureID":324,"TargetStructureID":83545,"Label":"324-83545 via Ribbon Synapse from 83544 -> 96551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83544,"TargetID":96551,"Directional":true}]},{"ID":6026,"SourceStructureID":324,"TargetStructureID":83550,"Label":"324-83550 via Ribbon Synapse from 83544 -> 83551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83544,"TargetID":83551,"Directional":true}]},{"ID":6027,"SourceStructureID":324,"TargetStructureID":83552,"Label":"324-83552 via Ribbon Synapse from 83544 -> 83553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83544,"TargetID":83553,"Directional":true}]},{"ID":6028,"SourceStructureID":324,"TargetStructureID":83554,"Label":"324-83554 via Ribbon Synapse from 83544 -> 83555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83544,"TargetID":83555,"Directional":true}]},{"ID":6029,"SourceStructureID":324,"TargetStructureID":83590,"Label":"324-83590 via Ribbon Synapse from 83568 -> 83593","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83568,"TargetID":83593,"Directional":true}]},{"ID":6030,"SourceStructureID":324,"TargetStructureID":83591,"Label":"324-83591 via Ribbon Synapse from 83568 -> 83592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83568,"TargetID":83592,"Directional":true}]},{"ID":6031,"SourceStructureID":324,"TargetStructureID":93779,"Label":"324-93779 via BC Conventional Synapse from 122108 -> 122107","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":122108,"TargetID":122107,"Directional":true}]},{"ID":6032,"SourceStructureID":325,"TargetStructureID":6153,"Label":"325-6153 via Ribbon Synapse from 8173 -> 10739","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8173,"TargetID":10739,"Directional":true}]},{"ID":6033,"SourceStructureID":325,"TargetStructureID":29198,"Label":"325-29198 via Ribbon Synapse from 29205 -> 29203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29205,"TargetID":29203,"Directional":true}]},{"ID":6034,"SourceStructureID":325,"TargetStructureID":30379,"Label":"325-30379 via Ribbon Synapse from 29204 -> 30380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29204,"TargetID":30380,"Directional":true}]},{"ID":6035,"SourceStructureID":327,"TargetStructureID":5107,"Label":"327-5107 via Ribbon Synapse from 23037 -> 23036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23037,"TargetID":23036,"Directional":true}]},{"ID":6036,"SourceStructureID":327,"TargetStructureID":5481,"Label":"327-5481 via Ribbon Synapse from 14283 -> 90179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14283,"TargetID":90179,"Directional":true}]},{"ID":6037,"SourceStructureID":327,"TargetStructureID":7568,"Label":"327-7568 via Ribbon Synapse from 27138 -> 27119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27138,"TargetID":27119,"Directional":true}]},{"ID":6038,"SourceStructureID":327,"TargetStructureID":8575,"Label":"327-8575 via BC Conventional Synapse from 14238 -> 55281","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":14238,"TargetID":55281,"Directional":true}]},{"ID":6039,"SourceStructureID":327,"TargetStructureID":9769,"Label":"327-9769 via Ribbon Synapse from 12394 -> 12393, 31685 -> 31686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12394,"TargetID":12393,"Directional":true},{"SourceID":31685,"TargetID":31686,"Directional":true}]},{"ID":6040,"SourceStructureID":327,"TargetStructureID":12564,"Label":"327-12564 via Ribbon Synapse from 55629 -> 55628","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55629,"TargetID":55628,"Directional":true}]},{"ID":6041,"SourceStructureID":327,"TargetStructureID":32566,"Label":"327-32566 via BC Conventional Synapse from 14308 -> 32568","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":14308,"TargetID":32568,"Directional":true}]},{"ID":6042,"SourceStructureID":327,"TargetStructureID":34055,"Label":"327-34055 via Ribbon Synapse from 122146 -> 34060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122146,"TargetID":34060,"Directional":true}]},{"ID":6043,"SourceStructureID":327,"TargetStructureID":55201,"Label":"327-55201 via Ribbon Synapse from 14283 -> 55207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14283,"TargetID":55207,"Directional":true}]},{"ID":6044,"SourceStructureID":328,"TargetStructureID":284,"Label":"328-284 via Ribbon Synapse from 29522 -> 29521, 31678 -> 12054","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29522,"TargetID":29521,"Directional":true},{"SourceID":31678,"TargetID":12054,"Directional":true}]},{"ID":6045,"SourceStructureID":328,"TargetStructureID":6153,"Label":"328-6153 via Ribbon Synapse from 33512 -> 37292, 33514 -> 37291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33512,"TargetID":37292,"Directional":true},{"SourceID":33514,"TargetID":37291,"Directional":true}]},{"ID":6046,"SourceStructureID":328,"TargetStructureID":7157,"Label":"328-7157 via Ribbon Synapse from 29517 -> 29516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29517,"TargetID":29516,"Directional":true}]},{"ID":6047,"SourceStructureID":328,"TargetStructureID":30370,"Label":"328-30370 via Ribbon Synapse from 30365 -> 30374, 30367 -> 30375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30365,"TargetID":30374,"Directional":true},{"SourceID":30367,"TargetID":30375,"Directional":true}]},{"ID":6048,"SourceStructureID":330,"TargetStructureID":606,"Label":"330-606 via Ribbon Synapse from 12351 -> 12349, 25934 -> 49178, 25939 -> 52927, 25944 -> 52976, 25945 -> 52988, 25950 -> 53043, 25952 -> 53038, 25977 -> 49153, 26103 -> 52789, 26118 -> 49025, 26124 -> 9798, 26131 -> 52711, 26164 -> 53143, 26181 -> 52601, 52614 -> 52613, 52649 -> 52648, 52760 -> 52761, 52809 -> 52810, 53053 -> 53052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12351,"TargetID":12349,"Directional":true},{"SourceID":25934,"TargetID":49178,"Directional":true},{"SourceID":25939,"TargetID":52927,"Directional":true},{"SourceID":25944,"TargetID":52976,"Directional":true},{"SourceID":25945,"TargetID":52988,"Directional":true},{"SourceID":25950,"TargetID":53043,"Directional":true},{"SourceID":25952,"TargetID":53038,"Directional":true},{"SourceID":25977,"TargetID":49153,"Directional":true},{"SourceID":26103,"TargetID":52789,"Directional":true},{"SourceID":26118,"TargetID":49025,"Directional":true},{"SourceID":26124,"TargetID":9798,"Directional":true},{"SourceID":26131,"TargetID":52711,"Directional":true},{"SourceID":26164,"TargetID":53143,"Directional":true},{"SourceID":26181,"TargetID":52601,"Directional":true},{"SourceID":52614,"TargetID":52613,"Directional":true},{"SourceID":52649,"TargetID":52648,"Directional":true},{"SourceID":52760,"TargetID":52761,"Directional":true},{"SourceID":52809,"TargetID":52810,"Directional":true},{"SourceID":53053,"TargetID":53052,"Directional":true}]},{"ID":6049,"SourceStructureID":330,"TargetStructureID":9769,"Label":"330-9769 via Ribbon Synapse from 25945 -> 53027, 54637 -> 55283, 122143 -> 122145, 122144 -> 122145","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25945,"TargetID":53027,"Directional":true},{"SourceID":54637,"TargetID":55283,"Directional":true},{"SourceID":122143,"TargetID":122145,"Directional":true},{"SourceID":122144,"TargetID":122145,"Directional":true}]},{"ID":6050,"SourceStructureID":330,"TargetStructureID":12408,"Label":"330-12408 via Ribbon Synapse from 12426 -> 12420, 52809 -> 52811, 54637 -> 55282","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12426,"TargetID":12420,"Directional":true},{"SourceID":52809,"TargetID":52811,"Directional":true},{"SourceID":54637,"TargetID":55282,"Directional":true}]},{"ID":6051,"SourceStructureID":330,"TargetStructureID":31679,"Label":"330-31679 via Ribbon Synapse from 25951 -> 31682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25951,"TargetID":31682,"Directional":true}]},{"ID":6052,"SourceStructureID":330,"TargetStructureID":34055,"Label":"330-34055 via Ribbon Synapse from 25773 -> 34069, 26174 -> 34285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25773,"TargetID":34069,"Directional":true},{"SourceID":26174,"TargetID":34285,"Directional":true}]},{"ID":6053,"SourceStructureID":330,"TargetStructureID":34270,"Label":"330-34270 via Ribbon Synapse from 26154 -> 34278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26154,"TargetID":34278,"Directional":true}]},{"ID":6054,"SourceStructureID":330,"TargetStructureID":38632,"Label":"330-38632 via Ribbon Synapse from 26087 -> 38679, 26147 -> 38671, 26156 -> 38670, 26163 -> 38666, 38691 -> 38689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26087,"TargetID":38679,"Directional":true},{"SourceID":26147,"TargetID":38671,"Directional":true},{"SourceID":26156,"TargetID":38670,"Directional":true},{"SourceID":26163,"TargetID":38666,"Directional":true},{"SourceID":38691,"TargetID":38689,"Directional":true}]},{"ID":6055,"SourceStructureID":330,"TargetStructureID":38703,"Label":"330-38703 via Ribbon Synapse from 25767 -> 38706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25767,"TargetID":38706,"Directional":true}]},{"ID":6056,"SourceStructureID":330,"TargetStructureID":89989,"Label":"330-89989 via Ribbon Synapse from 26131 -> 89991","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26131,"TargetID":89991,"Directional":true}]},{"ID":6057,"SourceStructureID":330,"TargetStructureID":119008,"Label":"330-119008 via Ribbon Synapse from 119005 -> 119012","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119005,"TargetID":119012,"Directional":true}]},{"ID":6058,"SourceStructureID":330,"TargetStructureID":147696,"Label":"330-147696 via Ribbon Synapse from 147748 -> 147747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147748,"TargetID":147747,"Directional":true}]},{"ID":6059,"SourceStructureID":332,"TargetStructureID":4890,"Label":"332-4890 via Ribbon Synapse from 96582 -> 96583","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96582,"TargetID":96583,"Directional":true}]},{"ID":6060,"SourceStructureID":332,"TargetStructureID":5117,"Label":"332-5117 via Ribbon Synapse from 82147 -> 135205, 135204 -> 135203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82147,"TargetID":135205,"Directional":true},{"SourceID":135204,"TargetID":135203,"Directional":true}]},{"ID":6061,"SourceStructureID":332,"TargetStructureID":5410,"Label":"332-5410 via BC Conventional Synapse from 96531 -> 96532","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96531,"TargetID":96532,"Directional":true}]},{"ID":6062,"SourceStructureID":332,"TargetStructureID":5439,"Label":"332-5439 via BC Conventional Synapse from 85689 -> 85687","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85689,"TargetID":85687,"Directional":true}]},{"ID":6063,"SourceStructureID":332,"TargetStructureID":18282,"Label":"332-18282 via Ribbon Synapse from 25217 -> 38863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25217,"TargetID":38863,"Directional":true}]},{"ID":6064,"SourceStructureID":332,"TargetStructureID":31804,"Label":"332-31804 via BC Conventional Synapse from 31812 -> 31811","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":31812,"TargetID":31811,"Directional":true}]},{"ID":6065,"SourceStructureID":332,"TargetStructureID":33161,"Label":"332-33161 via Ribbon Synapse from 33184 -> 33179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33184,"TargetID":33179,"Directional":true}]},{"ID":6066,"SourceStructureID":332,"TargetStructureID":34259,"Label":"332-34259 via Ribbon Synapse from 127761 -> 127760","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127761,"TargetID":127760,"Directional":true}]},{"ID":6067,"SourceStructureID":332,"TargetStructureID":35103,"Label":"332-35103 via Ribbon Synapse from 25219 -> 35109","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25219,"TargetID":35109,"Directional":true}]},{"ID":6068,"SourceStructureID":332,"TargetStructureID":35167,"Label":"332-35167 via Ribbon Synapse from 35171 -> 35168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35171,"TargetID":35168,"Directional":true}]},{"ID":6069,"SourceStructureID":332,"TargetStructureID":38727,"Label":"332-38727 via Ribbon Synapse from 38734 -> 38733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38734,"TargetID":38733,"Directional":true}]},{"ID":6070,"SourceStructureID":332,"TargetStructureID":41474,"Label":"332-41474 via BC Conventional Synapse from 55944 -> 55943","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55944,"TargetID":55943,"Directional":true}]},{"ID":6071,"SourceStructureID":332,"TargetStructureID":95013,"Label":"332-95013 via BC Conventional Synapse from 95014 -> 95015","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95014,"TargetID":95015,"Directional":true}]},{"ID":6072,"SourceStructureID":332,"TargetStructureID":96487,"Label":"332-96487 via BC Conventional Synapse from 97255 -> 97254","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97255,"TargetID":97254,"Directional":true}]},{"ID":6073,"SourceStructureID":332,"TargetStructureID":96499,"Label":"332-96499 via Ribbon Synapse from 96475 -> 96500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96475,"TargetID":96500,"Directional":true}]},{"ID":6074,"SourceStructureID":332,"TargetStructureID":96503,"Label":"332-96503 via Ribbon Synapse from 96475 -> 96504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96475,"TargetID":96504,"Directional":true}]},{"ID":6075,"SourceStructureID":332,"TargetStructureID":96516,"Label":"332-96516 via Ribbon Synapse from 94873 -> 96521, 94876 -> 96520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94873,"TargetID":96521,"Directional":true},{"SourceID":94876,"TargetID":96520,"Directional":true}]},{"ID":6076,"SourceStructureID":332,"TargetStructureID":96522,"Label":"332-96522 via Ribbon Synapse from 94873 -> 96525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94873,"TargetID":96525,"Directional":true}]},{"ID":6077,"SourceStructureID":332,"TargetStructureID":96547,"Label":"332-96547 via BC Conventional Synapse from 97398 -> 96548","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97398,"TargetID":96548,"Directional":true}]},{"ID":6078,"SourceStructureID":332,"TargetStructureID":96547,"Label":"332-96547 via Ribbon Synapse from 95045 -> 96548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95045,"TargetID":96548,"Directional":true}]},{"ID":6079,"SourceStructureID":332,"TargetStructureID":96550,"Label":"332-96550 via Ribbon Synapse from 96549 -> 96552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96549,"TargetID":96552,"Directional":true}]},{"ID":6080,"SourceStructureID":332,"TargetStructureID":96554,"Label":"332-96554 via Ribbon Synapse from 95044 -> 96557","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95044,"TargetID":96557,"Directional":true}]},{"ID":6081,"SourceStructureID":332,"TargetStructureID":96555,"Label":"332-96555 via Ribbon Synapse from 95044 -> 96556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95044,"TargetID":96556,"Directional":true}]},{"ID":6082,"SourceStructureID":332,"TargetStructureID":96568,"Label":"332-96568 via BC Conventional Synapse from 96567 -> 96569","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96567,"TargetID":96569,"Directional":true}]},{"ID":6083,"SourceStructureID":334,"TargetStructureID":7157,"Label":"334-7157 via Ribbon Synapse from 26196 -> 26197, 26207 -> 26208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26196,"TargetID":26197,"Directional":true},{"SourceID":26207,"TargetID":26208,"Directional":true}]},{"ID":6084,"SourceStructureID":334,"TargetStructureID":7468,"Label":"334-7468 via Ribbon Synapse from 31757 -> 31755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31757,"TargetID":31755,"Directional":true}]},{"ID":6085,"SourceStructureID":334,"TargetStructureID":32681,"Label":"334-32681 via Ribbon Synapse from 64571 -> 64577","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64571,"TargetID":64577,"Directional":true}]},{"ID":6086,"SourceStructureID":335,"TargetStructureID":606,"Label":"335-606 via BC Conventional Synapse from 52683 -> 52681","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52683,"TargetID":52681,"Directional":true}]},{"ID":6087,"SourceStructureID":335,"TargetStructureID":606,"Label":"335-606 via Ribbon Synapse from 10063 -> 9795, 49129 -> 49130, 49151 -> 49150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10063,"TargetID":9795,"Directional":true},{"SourceID":49129,"TargetID":49130,"Directional":true},{"SourceID":49151,"TargetID":49150,"Directional":true}]},{"ID":6088,"SourceStructureID":335,"TargetStructureID":9769,"Label":"335-9769 via Ribbon Synapse from 12407 -> 12404, 30085 -> 30086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12407,"TargetID":12404,"Directional":true},{"SourceID":30085,"TargetID":30086,"Directional":true}]},{"ID":6089,"SourceStructureID":335,"TargetStructureID":31694,"Label":"335-31694 via Ribbon Synapse from 34134 -> 34131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34134,"TargetID":34131,"Directional":true}]},{"ID":6090,"SourceStructureID":335,"TargetStructureID":38703,"Label":"335-38703 via Ribbon Synapse from 38708 -> 38707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38708,"TargetID":38707,"Directional":true}]},{"ID":6091,"SourceStructureID":335,"TargetStructureID":55304,"Label":"335-55304 via Ribbon Synapse from 12407 -> 55306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12407,"TargetID":55306,"Directional":true}]},{"ID":6092,"SourceStructureID":335,"TargetStructureID":70924,"Label":"335-70924 via Ribbon Synapse from 13635 -> 70960","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13635,"TargetID":70960,"Directional":true}]},{"ID":6093,"SourceStructureID":335,"TargetStructureID":70987,"Label":"335-70987 via Ribbon Synapse from 34132 -> 71027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34132,"TargetID":71027,"Directional":true}]},{"ID":6094,"SourceStructureID":335,"TargetStructureID":89851,"Label":"335-89851 via Ribbon Synapse from 33444 -> 89865, 33445 -> 89903, 89884 -> 89896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33444,"TargetID":89865,"Directional":true},{"SourceID":33445,"TargetID":89903,"Directional":true},{"SourceID":89884,"TargetID":89896,"Directional":true}]},{"ID":6095,"SourceStructureID":335,"TargetStructureID":89898,"Label":"335-89898 via Ribbon Synapse from 33445 -> 89901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33445,"TargetID":89901,"Directional":true}]},{"ID":6096,"SourceStructureID":335,"TargetStructureID":90475,"Label":"335-90475 via Ribbon Synapse from 13641 -> 90509","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13641,"TargetID":90509,"Directional":true}]},{"ID":6097,"SourceStructureID":341,"TargetStructureID":30015,"Label":"341-30015 via Conventional from 29996 -> 30050","Type":"Conventional","Directional":true,"Links":[{"SourceID":29996,"TargetID":30050,"Directional":true}]},{"ID":6098,"SourceStructureID":342,"TargetStructureID":7468,"Label":"342-7468 via Ribbon Synapse from 31705 -> 121297, 31738 -> 31737","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31705,"TargetID":121297,"Directional":true},{"SourceID":31738,"TargetID":31737,"Directional":true}]},{"ID":6099,"SourceStructureID":342,"TargetStructureID":31700,"Label":"342-31700 via Ribbon Synapse from 31705 -> 31704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31705,"TargetID":31704,"Directional":true}]},{"ID":6100,"SourceStructureID":342,"TargetStructureID":135219,"Label":"342-135219 via Ribbon Synapse from 135224 -> 135223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135224,"TargetID":135223,"Directional":true}]},{"ID":6101,"SourceStructureID":344,"TargetStructureID":278,"Label":"344-278 via Ribbon Synapse from 31735 -> 31727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31735,"TargetID":31727,"Directional":true}]},{"ID":6102,"SourceStructureID":344,"TargetStructureID":31702,"Label":"344-31702 via Ribbon Synapse from 31723 -> 31718, 45612 -> 45611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31723,"TargetID":31718,"Directional":true},{"SourceID":45612,"TargetID":45611,"Directional":true}]},{"ID":6103,"SourceStructureID":344,"TargetStructureID":35513,"Label":"344-35513 via Ribbon Synapse from 35519 -> 35518","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35519,"TargetID":35518,"Directional":true}]},{"ID":6104,"SourceStructureID":344,"TargetStructureID":61709,"Label":"344-61709 via Ribbon Synapse from 65746 -> 65745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65746,"TargetID":65745,"Directional":true}]},{"ID":6105,"SourceStructureID":352,"TargetStructureID":273,"Label":"352-273 via Conventional from 31655 -> 31646, 31659 -> 31662, 31660 -> 31661","Type":"Conventional","Directional":true,"Links":[{"SourceID":31655,"TargetID":31646,"Directional":true},{"SourceID":31659,"TargetID":31662,"Directional":true},{"SourceID":31660,"TargetID":31661,"Directional":true}]},{"ID":6106,"SourceStructureID":352,"TargetStructureID":350,"Label":"352-350 via Conventional from 20662 -> 18708","Type":"Conventional","Directional":true,"Links":[{"SourceID":20662,"TargetID":18708,"Directional":true}]},{"ID":6107,"SourceStructureID":352,"TargetStructureID":7157,"Label":"352-7157 via Conventional from 31656 -> 31657","Type":"Conventional","Directional":true,"Links":[{"SourceID":31656,"TargetID":31657,"Directional":true}]},{"ID":6108,"SourceStructureID":353,"TargetStructureID":21779,"Label":"353-21779 via Ribbon Synapse from 25230 -> 32134, 25231 -> 32134, 25232 -> 32134, 25233 -> 32134, 25236 -> 32134, 25237 -> 32134, 25238 -> 32134, 25242 -> 32134, 25245 -> 32134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25230,"TargetID":32134,"Directional":true},{"SourceID":25231,"TargetID":32134,"Directional":true},{"SourceID":25232,"TargetID":32134,"Directional":true},{"SourceID":25233,"TargetID":32134,"Directional":true},{"SourceID":25236,"TargetID":32134,"Directional":true},{"SourceID":25237,"TargetID":32134,"Directional":true},{"SourceID":25238,"TargetID":32134,"Directional":true},{"SourceID":25242,"TargetID":32134,"Directional":true},{"SourceID":25245,"TargetID":32134,"Directional":true}]},{"ID":6109,"SourceStructureID":353,"TargetStructureID":22210,"Label":"353-22210 via Ribbon Synapse from 6688 -> 32038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6688,"TargetID":32038,"Directional":true}]},{"ID":6110,"SourceStructureID":354,"TargetStructureID":13525,"Label":"354-13525 via Ribbon Synapse from 133789 -> 130872","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133789,"TargetID":130872,"Directional":true}]},{"ID":6111,"SourceStructureID":359,"TargetStructureID":115,"Label":"359-115 via Ribbon Synapse from 21461 -> 8124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21461,"TargetID":8124,"Directional":true}]},{"ID":6112,"SourceStructureID":359,"TargetStructureID":5413,"Label":"359-5413 via Ribbon Synapse from 21431 -> 30451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21431,"TargetID":30451,"Directional":true}]},{"ID":6113,"SourceStructureID":359,"TargetStructureID":7157,"Label":"359-7157 via Ribbon Synapse from 21426 -> 21449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21426,"TargetID":21449,"Directional":true}]},{"ID":6114,"SourceStructureID":359,"TargetStructureID":7859,"Label":"359-7859 via Ribbon Synapse from 21432 -> 84816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21432,"TargetID":84816,"Directional":true}]},{"ID":6115,"SourceStructureID":360,"TargetStructureID":4835,"Label":"360-4835 via Ribbon Synapse from 26575 -> 87850, 26577 -> 26578","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26575,"TargetID":87850,"Directional":true},{"SourceID":26577,"TargetID":26578,"Directional":true}]},{"ID":6116,"SourceStructureID":360,"TargetStructureID":5457,"Label":"360-5457 via Ribbon Synapse from 26575 -> 87849, 26577 -> 87845","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26575,"TargetID":87849,"Directional":true},{"SourceID":26577,"TargetID":87845,"Directional":true}]},{"ID":6117,"SourceStructureID":360,"TargetStructureID":7157,"Label":"360-7157 via Ribbon Synapse from 26215 -> 26216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26215,"TargetID":26216,"Directional":true}]},{"ID":6118,"SourceStructureID":360,"TargetStructureID":7468,"Label":"360-7468 via Ribbon Synapse from 26599 -> 31749, 26600 -> 31747, 26601 -> 31748","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26599,"TargetID":31749,"Directional":true},{"SourceID":26600,"TargetID":31747,"Directional":true},{"SourceID":26601,"TargetID":31748,"Directional":true}]},{"ID":6119,"SourceStructureID":364,"TargetStructureID":5435,"Label":"364-5435 via Ribbon Synapse from 12861 -> 41739, 32024 -> 32021, 32027 -> 32028, 32032 -> 32031, 120612 -> 41740, 120614 -> 41745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12861,"TargetID":41739,"Directional":true},{"SourceID":32024,"TargetID":32021,"Directional":true},{"SourceID":32027,"TargetID":32028,"Directional":true},{"SourceID":32032,"TargetID":32031,"Directional":true},{"SourceID":120612,"TargetID":41740,"Directional":true},{"SourceID":120614,"TargetID":41745,"Directional":true}]},{"ID":6120,"SourceStructureID":364,"TargetStructureID":7568,"Label":"364-7568 via Ribbon Synapse from 90551 -> 27083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90551,"TargetID":27083,"Directional":true}]},{"ID":6121,"SourceStructureID":364,"TargetStructureID":20299,"Label":"364-20299 via Ribbon Synapse from 130193 -> 130192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130193,"TargetID":130192,"Directional":true}]},{"ID":6122,"SourceStructureID":364,"TargetStructureID":34055,"Label":"364-34055 via Ribbon Synapse from 12885 -> 34072","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12885,"TargetID":34072,"Directional":true}]},{"ID":6123,"SourceStructureID":364,"TargetStructureID":35283,"Label":"364-35283 via BC Conventional Synapse from 12876 -> 35287","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":12876,"TargetID":35287,"Directional":true}]},{"ID":6124,"SourceStructureID":364,"TargetStructureID":38605,"Label":"364-38605 via Ribbon Synapse from 14101 -> 98744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14101,"TargetID":98744,"Directional":true}]},{"ID":6125,"SourceStructureID":364,"TargetStructureID":38632,"Label":"364-38632 via Ribbon Synapse from 38675 -> 38673, 38682 -> 38680, 38683 -> 38680","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38675,"TargetID":38673,"Directional":true},{"SourceID":38682,"TargetID":38680,"Directional":true},{"SourceID":38683,"TargetID":38680,"Directional":true}]},{"ID":6126,"SourceStructureID":364,"TargetStructureID":71882,"Label":"364-71882 via Ribbon Synapse from 12798 -> 90355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12798,"TargetID":90355,"Directional":true}]},{"ID":6127,"SourceStructureID":364,"TargetStructureID":90334,"Label":"364-90334 via Ribbon Synapse from 12818 -> 90340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12818,"TargetID":90340,"Directional":true}]},{"ID":6128,"SourceStructureID":365,"TargetStructureID":6153,"Label":"365-6153 via Ribbon Synapse from 29504 -> 29503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29504,"TargetID":29503,"Directional":true}]},{"ID":6129,"SourceStructureID":365,"TargetStructureID":9260,"Label":"365-9260 via Ribbon Synapse from 33601 -> 33602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33601,"TargetID":33602,"Directional":true}]},{"ID":6130,"SourceStructureID":366,"TargetStructureID":606,"Label":"366-606 via Ribbon Synapse from 13645 -> 49154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13645,"TargetID":49154,"Directional":true}]},{"ID":6131,"SourceStructureID":366,"TargetStructureID":5481,"Label":"366-5481 via Ribbon Synapse from 14045 -> 90205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14045,"TargetID":90205,"Directional":true}]},{"ID":6132,"SourceStructureID":366,"TargetStructureID":12564,"Label":"366-12564 via Ribbon Synapse from 14056 -> 53240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14056,"TargetID":53240,"Directional":true}]},{"ID":6133,"SourceStructureID":366,"TargetStructureID":31804,"Label":"366-31804 via Ribbon Synapse from 31810 -> 31809","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31810,"TargetID":31809,"Directional":true}]},{"ID":6134,"SourceStructureID":366,"TargetStructureID":32608,"Label":"366-32608 via Ribbon Synapse from 13940 -> 32614","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13940,"TargetID":32614,"Directional":true}]},{"ID":6135,"SourceStructureID":366,"TargetStructureID":38605,"Label":"366-38605 via Ribbon Synapse from 38610 -> 38611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38610,"TargetID":38611,"Directional":true}]},{"ID":6136,"SourceStructureID":366,"TargetStructureID":71882,"Label":"366-71882 via Ribbon Synapse from 13559 -> 90322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13559,"TargetID":90322,"Directional":true}]},{"ID":6137,"SourceStructureID":369,"TargetStructureID":284,"Label":"369-284 via Ribbon Synapse from 29565 -> 29548, 29567 -> 29566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29565,"TargetID":29548,"Directional":true},{"SourceID":29567,"TargetID":29566,"Directional":true}]},{"ID":6138,"SourceStructureID":369,"TargetStructureID":4850,"Label":"369-4850 via Ribbon Synapse from 29555 -> 83683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29555,"TargetID":83683,"Directional":true}]},{"ID":6139,"SourceStructureID":369,"TargetStructureID":6153,"Label":"369-6153 via Ribbon Synapse from 29559 -> 29560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29559,"TargetID":29560,"Directional":true}]},{"ID":6140,"SourceStructureID":369,"TargetStructureID":7157,"Label":"369-7157 via Ribbon Synapse from 29555 -> 29556, 29558 -> 29557, 29559 -> 26518, 29561 -> 18180, 29562 -> 18180, 29563 -> 45664","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29555,"TargetID":29556,"Directional":true},{"SourceID":29558,"TargetID":29557,"Directional":true},{"SourceID":29559,"TargetID":26518,"Directional":true},{"SourceID":29561,"TargetID":18180,"Directional":true},{"SourceID":29562,"TargetID":18180,"Directional":true},{"SourceID":29563,"TargetID":45664,"Directional":true}]},{"ID":6141,"SourceStructureID":372,"TargetStructureID":412,"Label":"372-412 via BC Conventional Synapse from 122387 -> 122386","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":122387,"TargetID":122386,"Directional":true}]},{"ID":6142,"SourceStructureID":372,"TargetStructureID":606,"Label":"372-606 via Ribbon Synapse from 50897 -> 50898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50897,"TargetID":50898,"Directional":true}]},{"ID":6143,"SourceStructureID":372,"TargetStructureID":34509,"Label":"372-34509 via Ribbon Synapse from 122340 -> 45638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122340,"TargetID":45638,"Directional":true}]},{"ID":6144,"SourceStructureID":372,"TargetStructureID":38632,"Label":"372-38632 via Ribbon Synapse from 30993 -> 38644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30993,"TargetID":38644,"Directional":true}]},{"ID":6145,"SourceStructureID":372,"TargetStructureID":59499,"Label":"372-59499 via BC Conventional Synapse from 122358 -> 122357","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":122358,"TargetID":122357,"Directional":true}]},{"ID":6146,"SourceStructureID":372,"TargetStructureID":59499,"Label":"372-59499 via Ribbon Synapse from 122336 -> 90553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122336,"TargetID":90553,"Directional":true}]},{"ID":6147,"SourceStructureID":372,"TargetStructureID":71531,"Label":"372-71531 via Ribbon Synapse from 71480 -> 71534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71480,"TargetID":71534,"Directional":true}]},{"ID":6148,"SourceStructureID":372,"TargetStructureID":71535,"Label":"372-71535 via Ribbon Synapse from 71480 -> 71536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71480,"TargetID":71536,"Directional":true}]},{"ID":6149,"SourceStructureID":372,"TargetStructureID":71550,"Label":"372-71550 via Ribbon Synapse from 71554 -> 71553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71554,"TargetID":71553,"Directional":true}]},{"ID":6150,"SourceStructureID":372,"TargetStructureID":71560,"Label":"372-71560 via BC Conventional Synapse from 71561 -> 71562","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71561,"TargetID":71562,"Directional":true}]},{"ID":6151,"SourceStructureID":372,"TargetStructureID":71566,"Label":"372-71566 via Ribbon Synapse from 71564 -> 71567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71564,"TargetID":71567,"Directional":true}]},{"ID":6152,"SourceStructureID":372,"TargetStructureID":71865,"Label":"372-71865 via Ribbon Synapse from 62670 -> 71866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62670,"TargetID":71866,"Directional":true}]},{"ID":6153,"SourceStructureID":372,"TargetStructureID":71867,"Label":"372-71867 via Ribbon Synapse from 62670 -> 71868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62670,"TargetID":71868,"Directional":true}]},{"ID":6154,"SourceStructureID":372,"TargetStructureID":71877,"Label":"372-71877 via Ribbon Synapse from 71564 -> 71878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71564,"TargetID":71878,"Directional":true}]},{"ID":6155,"SourceStructureID":372,"TargetStructureID":108196,"Label":"372-108196 via Ribbon Synapse from 30790 -> 122360","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30790,"TargetID":122360,"Directional":true}]},{"ID":6156,"SourceStructureID":373,"TargetStructureID":9769,"Label":"373-9769 via Conventional from 55228 -> 12392","Type":"Conventional","Directional":true,"Links":[{"SourceID":55228,"TargetID":12392,"Directional":true}]},{"ID":6157,"SourceStructureID":375,"TargetStructureID":479,"Label":"375-479 via Conventional from 21839 -> 12366","Type":"Conventional","Directional":true,"Links":[{"SourceID":21839,"TargetID":12366,"Directional":true}]},{"ID":6158,"SourceStructureID":375,"TargetStructureID":24401,"Label":"375-24401 via Conventional from 21841 -> 48253","Type":"Conventional","Directional":true,"Links":[{"SourceID":21841,"TargetID":48253,"Directional":true}]},{"ID":6159,"SourceStructureID":380,"TargetStructureID":223,"Label":"380-223 via Ribbon Synapse from 17671 -> 17670, 19132 -> 19135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17671,"TargetID":17670,"Directional":true},{"SourceID":19132,"TargetID":19135,"Directional":true}]},{"ID":6160,"SourceStructureID":380,"TargetStructureID":304,"Label":"380-304 via Ribbon Synapse from 18279 -> 18278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18279,"TargetID":18278,"Directional":true}]},{"ID":6161,"SourceStructureID":380,"TargetStructureID":410,"Label":"380-410 via Ribbon Synapse from 9526 -> 9525, 17677 -> 17676, 17681 -> 17680, 17878 -> 17877, 17880 -> 17879, 17882 -> 17881, 18368 -> 18367, 18370 -> 18369, 18372 -> 18371, 18514 -> 18536, 18540 -> 18539, 20944 -> 20945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9526,"TargetID":9525,"Directional":true},{"SourceID":17677,"TargetID":17676,"Directional":true},{"SourceID":17681,"TargetID":17680,"Directional":true},{"SourceID":17878,"TargetID":17877,"Directional":true},{"SourceID":17880,"TargetID":17879,"Directional":true},{"SourceID":17882,"TargetID":17881,"Directional":true},{"SourceID":18368,"TargetID":18367,"Directional":true},{"SourceID":18370,"TargetID":18369,"Directional":true},{"SourceID":18372,"TargetID":18371,"Directional":true},{"SourceID":18514,"TargetID":18536,"Directional":true},{"SourceID":18540,"TargetID":18539,"Directional":true},{"SourceID":20944,"TargetID":20945,"Directional":true}]},{"ID":6162,"SourceStructureID":380,"TargetStructureID":17527,"Label":"380-17527 via Ribbon Synapse from 17742 -> 38616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17742,"TargetID":38616,"Directional":true}]},{"ID":6163,"SourceStructureID":382,"TargetStructureID":2610,"Label":"382-2610 via Ribbon Synapse from 71305 -> 71304, 71307 -> 71306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71305,"TargetID":71304,"Directional":true},{"SourceID":71307,"TargetID":71306,"Directional":true}]},{"ID":6164,"SourceStructureID":389,"TargetStructureID":19203,"Label":"389-19203 via Conventional from 62118 -> 62115","Type":"Conventional","Directional":true,"Links":[{"SourceID":62118,"TargetID":62115,"Directional":true}]},{"ID":6165,"SourceStructureID":390,"TargetStructureID":6857,"Label":"390-6857 via Conventional from 65101 -> 65230, 65122 -> 7472, 65124 -> 65125, 65227 -> 133424","Type":"Conventional","Directional":true,"Links":[{"SourceID":65101,"TargetID":65230,"Directional":true},{"SourceID":65122,"TargetID":7472,"Directional":true},{"SourceID":65124,"TargetID":65125,"Directional":true},{"SourceID":65227,"TargetID":133424,"Directional":true}]},{"ID":6166,"SourceStructureID":390,"TargetStructureID":31024,"Label":"390-31024 via Conventional from 65126 -> 65127","Type":"Conventional","Directional":true,"Links":[{"SourceID":65126,"TargetID":65127,"Directional":true}]},{"ID":6167,"SourceStructureID":390,"TargetStructureID":65211,"Label":"390-65211 via Conventional from 65208 -> 65212","Type":"Conventional","Directional":true,"Links":[{"SourceID":65208,"TargetID":65212,"Directional":true}]},{"ID":6168,"SourceStructureID":390,"TargetStructureID":65218,"Label":"390-65218 via Conventional from 65217 -> 65219","Type":"Conventional","Directional":true,"Links":[{"SourceID":65217,"TargetID":65219,"Directional":true}]},{"ID":6169,"SourceStructureID":391,"TargetStructureID":10826,"Label":"391-10826 via Conventional from 108561 -> 108562, 108563 -> 108565, 108688 -> 108689","Type":"Conventional","Directional":true,"Links":[{"SourceID":108561,"TargetID":108562,"Directional":true},{"SourceID":108563,"TargetID":108565,"Directional":true},{"SourceID":108688,"TargetID":108689,"Directional":true}]},{"ID":6170,"SourceStructureID":391,"TargetStructureID":10897,"Label":"391-10897 via Conventional from 108369 -> 108370, 108389 -> 108390","Type":"Conventional","Directional":true,"Links":[{"SourceID":108369,"TargetID":108370,"Directional":true},{"SourceID":108389,"TargetID":108390,"Directional":true}]},{"ID":6171,"SourceStructureID":391,"TargetStructureID":11401,"Label":"391-11401 via Conventional from 108197 -> 108211, 108205 -> 108216, 108210 -> 108217, 108315 -> 108316, 108318 -> 108319","Type":"Conventional","Directional":true,"Links":[{"SourceID":108197,"TargetID":108211,"Directional":true},{"SourceID":108205,"TargetID":108216,"Directional":true},{"SourceID":108210,"TargetID":108217,"Directional":true},{"SourceID":108315,"TargetID":108316,"Directional":true},{"SourceID":108318,"TargetID":108319,"Directional":true}]},{"ID":6172,"SourceStructureID":397,"TargetStructureID":399,"Label":"397-399 via BC Conventional Synapse from 122659 -> 122658","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":122659,"TargetID":122658,"Directional":true}]},{"ID":6173,"SourceStructureID":397,"TargetStructureID":399,"Label":"397-399 via Ribbon Synapse from 46894 -> 46890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46894,"TargetID":46890,"Directional":true}]},{"ID":6174,"SourceStructureID":397,"TargetStructureID":598,"Label":"397-598 via Ribbon Synapse from 38788 -> 38786","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38788,"TargetID":38786,"Directional":true}]},{"ID":6175,"SourceStructureID":397,"TargetStructureID":45358,"Label":"397-45358 via Ribbon Synapse from 46884 -> 45361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46884,"TargetID":45361,"Directional":true}]},{"ID":6176,"SourceStructureID":397,"TargetStructureID":55330,"Label":"397-55330 via Ribbon Synapse from 55334 -> 55332","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55334,"TargetID":55332,"Directional":true}]},{"ID":6177,"SourceStructureID":397,"TargetStructureID":63628,"Label":"397-63628 via Ribbon Synapse from 68725 -> 63825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68725,"TargetID":63825,"Directional":true}]},{"ID":6178,"SourceStructureID":397,"TargetStructureID":71043,"Label":"397-71043 via Ribbon Synapse from 71052 -> 71048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71052,"TargetID":71048,"Directional":true}]},{"ID":6179,"SourceStructureID":398,"TargetStructureID":22358,"Label":"398-22358 via Ribbon Synapse from 37567 -> 37568, 37569 -> 37568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37567,"TargetID":37568,"Directional":true},{"SourceID":37569,"TargetID":37568,"Directional":true}]},{"ID":6180,"SourceStructureID":399,"TargetStructureID":400,"Label":"399-400 via Conventional from 46896 -> 46900, 46897 -> 46898, 46906 -> 28483, 46907 -> 46908","Type":"Conventional","Directional":true,"Links":[{"SourceID":46896,"TargetID":46900,"Directional":true},{"SourceID":46897,"TargetID":46898,"Directional":true},{"SourceID":46906,"TargetID":28483,"Directional":true},{"SourceID":46907,"TargetID":46908,"Directional":true}]},{"ID":6181,"SourceStructureID":400,"TargetStructureID":5117,"Label":"400-5117 via Ribbon Synapse from 18767 -> 18736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18767,"TargetID":18736,"Directional":true}]},{"ID":6182,"SourceStructureID":400,"TargetStructureID":5118,"Label":"400-5118 via Ribbon Synapse from 18769 -> 18772, 18770 -> 18772, 18771 -> 18772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18769,"TargetID":18772,"Directional":true},{"SourceID":18770,"TargetID":18772,"Directional":true},{"SourceID":18771,"TargetID":18772,"Directional":true}]},{"ID":6183,"SourceStructureID":400,"TargetStructureID":8033,"Label":"400-8033 via BC Conventional Synapse from 61256 -> 61255","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61256,"TargetID":61255,"Directional":true}]},{"ID":6184,"SourceStructureID":400,"TargetStructureID":8033,"Label":"400-8033 via Ribbon Synapse from 61248 -> 61246, 61249 -> 61246, 61250 -> 61246, 61251 -> 61252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61248,"TargetID":61246,"Directional":true},{"SourceID":61249,"TargetID":61246,"Directional":true},{"SourceID":61250,"TargetID":61246,"Directional":true},{"SourceID":61251,"TargetID":61252,"Directional":true}]},{"ID":6185,"SourceStructureID":400,"TargetStructureID":13855,"Label":"400-13855 via Ribbon Synapse from 70922 -> 70921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70922,"TargetID":70921,"Directional":true}]},{"ID":6186,"SourceStructureID":400,"TargetStructureID":15394,"Label":"400-15394 via Ribbon Synapse from 18779 -> 18780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18779,"TargetID":18780,"Directional":true}]},{"ID":6187,"SourceStructureID":400,"TargetStructureID":37288,"Label":"400-37288 via Ribbon Synapse from 1938 -> 37380, 28488 -> 37377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1938,"TargetID":37380,"Directional":true},{"SourceID":28488,"TargetID":37377,"Directional":true}]},{"ID":6188,"SourceStructureID":400,"TargetStructureID":61270,"Label":"400-61270 via Ribbon Synapse from 61269 -> 61271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61269,"TargetID":61271,"Directional":true}]},{"ID":6189,"SourceStructureID":407,"TargetStructureID":382,"Label":"407-382 via Conventional from 41969 -> 41968","Type":"Conventional","Directional":true,"Links":[{"SourceID":41969,"TargetID":41968,"Directional":true}]},{"ID":6190,"SourceStructureID":408,"TargetStructureID":405,"Label":"408-405 via BC Conventional Synapse from 122381 -> 122380, 122385 -> 122384","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":122381,"TargetID":122380,"Directional":true},{"SourceID":122385,"TargetID":122384,"Directional":true}]},{"ID":6191,"SourceStructureID":408,"TargetStructureID":405,"Label":"408-405 via Ribbon Synapse from 122382 -> 122383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122382,"TargetID":122383,"Directional":true}]},{"ID":6192,"SourceStructureID":408,"TargetStructureID":598,"Label":"408-598 via Ribbon Synapse from 38804 -> 38803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38804,"TargetID":38803,"Directional":true}]},{"ID":6193,"SourceStructureID":408,"TargetStructureID":25879,"Label":"408-25879 via Ribbon Synapse from 25885 -> 25886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25885,"TargetID":25886,"Directional":true}]},{"ID":6194,"SourceStructureID":408,"TargetStructureID":33127,"Label":"408-33127 via Ribbon Synapse from 33132 -> 33130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33132,"TargetID":33130,"Directional":true}]},{"ID":6195,"SourceStructureID":408,"TargetStructureID":35775,"Label":"408-35775 via Ribbon Synapse from 35769 -> 35776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35769,"TargetID":35776,"Directional":true}]},{"ID":6196,"SourceStructureID":408,"TargetStructureID":35887,"Label":"408-35887 via Ribbon Synapse from 35799 -> 35889","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35799,"TargetID":35889,"Directional":true}]},{"ID":6197,"SourceStructureID":408,"TargetStructureID":35894,"Label":"408-35894 via Ribbon Synapse from 35900 -> 35901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35900,"TargetID":35901,"Directional":true}]},{"ID":6198,"SourceStructureID":408,"TargetStructureID":35966,"Label":"408-35966 via Ribbon Synapse from 29273 -> 35967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29273,"TargetID":35967,"Directional":true}]},{"ID":6199,"SourceStructureID":408,"TargetStructureID":47013,"Label":"408-47013 via Ribbon Synapse from 29274 -> 47014, 53023 -> 47018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29274,"TargetID":47014,"Directional":true},{"SourceID":53023,"TargetID":47018,"Directional":true}]},{"ID":6200,"SourceStructureID":408,"TargetStructureID":61587,"Label":"408-61587 via Ribbon Synapse from 52909 -> 61592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52909,"TargetID":61592,"Directional":true}]},{"ID":6201,"SourceStructureID":410,"TargetStructureID":478,"Label":"410-478 via Conventional from 21348 -> 21349","Type":"Conventional","Directional":true,"Links":[{"SourceID":21348,"TargetID":21349,"Directional":true}]},{"ID":6202,"SourceStructureID":410,"TargetStructureID":35046,"Label":"410-35046 via Conventional from 20948 -> 62000, 21353 -> 61994, 21354 -> 61995, 21370 -> 61997","Type":"Conventional","Directional":true,"Links":[{"SourceID":20948,"TargetID":62000,"Directional":true},{"SourceID":21353,"TargetID":61994,"Directional":true},{"SourceID":21354,"TargetID":61995,"Directional":true},{"SourceID":21370,"TargetID":61997,"Directional":true}]},{"ID":6203,"SourceStructureID":410,"TargetStructureID":70820,"Label":"410-70820 via Conventional from 70828 -> 70827","Type":"Conventional","Directional":true,"Links":[{"SourceID":70828,"TargetID":70827,"Directional":true}]},{"ID":6204,"SourceStructureID":412,"TargetStructureID":308,"Label":"412-308 via Cistern Pre from 37592 -> 107260","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37592,"TargetID":107260,"Directional":true}]},{"ID":6205,"SourceStructureID":412,"TargetStructureID":419,"Label":"412-419 via Conventional from 49093 -> 37809","Type":"Conventional","Directional":true,"Links":[{"SourceID":49093,"TargetID":37809,"Directional":true}]},{"ID":6206,"SourceStructureID":415,"TargetStructureID":12208,"Label":"415-12208 via Conventional from 22464 -> 22463","Type":"Conventional","Directional":true,"Links":[{"SourceID":22464,"TargetID":22463,"Directional":true}]},{"ID":6207,"SourceStructureID":419,"TargetStructureID":179,"Label":"419-179 via Ribbon Synapse from 132544 -> 133586","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132544,"TargetID":133586,"Directional":true}]},{"ID":6208,"SourceStructureID":419,"TargetStructureID":318,"Label":"419-318 via Ribbon Synapse from 10187 -> 133605, 14600 -> 14601, 20372 -> 20373, 20382 -> 20384, 29317 -> 29316, 29318 -> 29316, 34959 -> 133694, 132070 -> 14601, 132236 -> 14601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10187,"TargetID":133605,"Directional":true},{"SourceID":14600,"TargetID":14601,"Directional":true},{"SourceID":20372,"TargetID":20373,"Directional":true},{"SourceID":20382,"TargetID":20384,"Directional":true},{"SourceID":29317,"TargetID":29316,"Directional":true},{"SourceID":29318,"TargetID":29316,"Directional":true},{"SourceID":34959,"TargetID":133694,"Directional":true},{"SourceID":132070,"TargetID":14601,"Directional":true},{"SourceID":132236,"TargetID":14601,"Directional":true}]},{"ID":6209,"SourceStructureID":419,"TargetStructureID":476,"Label":"419-476 via Ribbon Synapse from 6553 -> 10073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6553,"TargetID":10073,"Directional":true}]},{"ID":6210,"SourceStructureID":419,"TargetStructureID":591,"Label":"419-591 via Ribbon Synapse from 6553 -> 6554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6553,"TargetID":6554,"Directional":true}]},{"ID":6211,"SourceStructureID":419,"TargetStructureID":4890,"Label":"419-4890 via BC Conventional Synapse from 133698 -> 133699","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133698,"TargetID":133699,"Directional":true}]},{"ID":6212,"SourceStructureID":419,"TargetStructureID":4890,"Label":"419-4890 via Ribbon Synapse from 10130 -> 133637, 19989 -> 19988, 19993 -> 19992, 19996 -> 19997, 34837 -> 64863, 35022 -> 133660, 131766 -> 131767, 132319 -> 133622","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10130,"TargetID":133637,"Directional":true},{"SourceID":19989,"TargetID":19988,"Directional":true},{"SourceID":19993,"TargetID":19992,"Directional":true},{"SourceID":19996,"TargetID":19997,"Directional":true},{"SourceID":34837,"TargetID":64863,"Directional":true},{"SourceID":35022,"TargetID":133660,"Directional":true},{"SourceID":131766,"TargetID":131767,"Directional":true},{"SourceID":132319,"TargetID":133622,"Directional":true}]},{"ID":6213,"SourceStructureID":419,"TargetStructureID":5118,"Label":"419-5118 via Ribbon Synapse from 132333 -> 133624, 133618 -> 133673","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132333,"TargetID":133624,"Directional":true},{"SourceID":133618,"TargetID":133673,"Directional":true}]},{"ID":6214,"SourceStructureID":419,"TargetStructureID":5350,"Label":"419-5350 via Ribbon Synapse from 132537 -> 132538, 133695 -> 133696","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132537,"TargetID":132538,"Directional":true},{"SourceID":133695,"TargetID":133696,"Directional":true}]},{"ID":6215,"SourceStructureID":419,"TargetStructureID":8579,"Label":"419-8579 via Ribbon Synapse from 62667 -> 62666, 131770 -> 133571","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62667,"TargetID":62666,"Directional":true},{"SourceID":131770,"TargetID":133571,"Directional":true}]},{"ID":6216,"SourceStructureID":419,"TargetStructureID":9226,"Label":"419-9226 via Ribbon Synapse from 19989 -> 132599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19989,"TargetID":132599,"Directional":true}]},{"ID":6217,"SourceStructureID":419,"TargetStructureID":13855,"Label":"419-13855 via Ribbon Synapse from 14597 -> 14598, 14895 -> 14896, 14900 -> 14899, 34954 -> 133635, 34970 -> 133655, 132401 -> 133630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14597,"TargetID":14598,"Directional":true},{"SourceID":14895,"TargetID":14896,"Directional":true},{"SourceID":14900,"TargetID":14899,"Directional":true},{"SourceID":34954,"TargetID":133635,"Directional":true},{"SourceID":34970,"TargetID":133655,"Directional":true},{"SourceID":132401,"TargetID":133630,"Directional":true}]},{"ID":6218,"SourceStructureID":419,"TargetStructureID":18282,"Label":"419-18282 via Ribbon Synapse from 20336 -> 20335, 20387 -> 20364","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20336,"TargetID":20335,"Directional":true},{"SourceID":20387,"TargetID":20364,"Directional":true}]},{"ID":6219,"SourceStructureID":419,"TargetStructureID":18576,"Label":"419-18576 via BC Conventional Synapse from 133513 -> 133514","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133513,"TargetID":133514,"Directional":true}]},{"ID":6220,"SourceStructureID":419,"TargetStructureID":18576,"Label":"419-18576 via Ribbon Synapse from 8937 -> 100459, 132529 -> 133585, 132530 -> 133585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8937,"TargetID":100459,"Directional":true},{"SourceID":132529,"TargetID":133585,"Directional":true},{"SourceID":132530,"TargetID":133585,"Directional":true}]},{"ID":6221,"SourceStructureID":419,"TargetStructureID":22554,"Label":"419-22554 via Ribbon Synapse from 103898 -> 133610, 133606 -> 133609","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103898,"TargetID":133610,"Directional":true},{"SourceID":133606,"TargetID":133609,"Directional":true}]},{"ID":6222,"SourceStructureID":419,"TargetStructureID":25869,"Label":"419-25869 via Ribbon Synapse from 132544 -> 133587","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132544,"TargetID":133587,"Directional":true}]},{"ID":6223,"SourceStructureID":419,"TargetStructureID":29277,"Label":"419-29277 via Ribbon Synapse from 29321 -> 29320, 29324 -> 29323, 38451 -> 29310, 65685 -> 29313, 65686 -> 29313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29321,"TargetID":29320,"Directional":true},{"SourceID":29324,"TargetID":29323,"Directional":true},{"SourceID":38451,"TargetID":29310,"Directional":true},{"SourceID":65685,"TargetID":29313,"Directional":true},{"SourceID":65686,"TargetID":29313,"Directional":true}]},{"ID":6224,"SourceStructureID":419,"TargetStructureID":34621,"Label":"419-34621 via Ribbon Synapse from 131470 -> 38454, 131471 -> 38454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131470,"TargetID":38454,"Directional":true},{"SourceID":131471,"TargetID":38454,"Directional":true}]},{"ID":6225,"SourceStructureID":419,"TargetStructureID":36234,"Label":"419-36234 via Ribbon Synapse from 10175 -> 36236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10175,"TargetID":36236,"Directional":true}]},{"ID":6226,"SourceStructureID":419,"TargetStructureID":37286,"Label":"419-37286 via Ribbon Synapse from 34966 -> 101667, 101670 -> 101669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34966,"TargetID":101667,"Directional":true},{"SourceID":101670,"TargetID":101669,"Directional":true}]},{"ID":6227,"SourceStructureID":419,"TargetStructureID":60185,"Label":"419-60185 via Ribbon Synapse from 60187 -> 60188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60187,"TargetID":60188,"Directional":true}]},{"ID":6228,"SourceStructureID":419,"TargetStructureID":65267,"Label":"419-65267 via Ribbon Synapse from 132535 -> 69963","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132535,"TargetID":69963,"Directional":true}]},{"ID":6229,"SourceStructureID":419,"TargetStructureID":70518,"Label":"419-70518 via BC Conventional Synapse from 70520 -> 70519","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":70520,"TargetID":70519,"Directional":true}]},{"ID":6230,"SourceStructureID":419,"TargetStructureID":70833,"Label":"419-70833 via Ribbon Synapse from 34969 -> 70863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34969,"TargetID":70863,"Directional":true}]},{"ID":6231,"SourceStructureID":419,"TargetStructureID":71189,"Label":"419-71189 via Ribbon Synapse from 19989 -> 71194, 34941 -> 133650, 34951 -> 71191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19989,"TargetID":71194,"Directional":true},{"SourceID":34941,"TargetID":133650,"Directional":true},{"SourceID":34951,"TargetID":71191,"Directional":true}]},{"ID":6232,"SourceStructureID":419,"TargetStructureID":71882,"Label":"419-71882 via Ribbon Synapse from 20387 -> 133642, 35002 -> 90317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20387,"TargetID":133642,"Directional":true},{"SourceID":35002,"TargetID":90317,"Directional":true}]},{"ID":6233,"SourceStructureID":419,"TargetStructureID":100946,"Label":"419-100946 via Ribbon Synapse from 10203 -> 100947, 34975 -> 133658, 132584 -> 133658","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10203,"TargetID":100947,"Directional":true},{"SourceID":34975,"TargetID":133658,"Directional":true},{"SourceID":132584,"TargetID":133658,"Directional":true}]},{"ID":6234,"SourceStructureID":419,"TargetStructureID":102226,"Label":"419-102226 via Ribbon Synapse from 35005 -> 102229, 35008 -> 133659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35005,"TargetID":102229,"Directional":true},{"SourceID":35008,"TargetID":133659,"Directional":true}]},{"ID":6235,"SourceStructureID":419,"TargetStructureID":102286,"Label":"419-102286 via Ribbon Synapse from 19996 -> 133640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19996,"TargetID":133640,"Directional":true}]},{"ID":6236,"SourceStructureID":419,"TargetStructureID":102524,"Label":"419-102524 via Ribbon Synapse from 10175 -> 133564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10175,"TargetID":133564,"Directional":true}]},{"ID":6237,"SourceStructureID":419,"TargetStructureID":103508,"Label":"419-103508 via Ribbon Synapse from 19993 -> 103509","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19993,"TargetID":103509,"Directional":true}]},{"ID":6238,"SourceStructureID":419,"TargetStructureID":103510,"Label":"419-103510 via BC Conventional Synapse from 103512 -> 103511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103512,"TargetID":103511,"Directional":true}]},{"ID":6239,"SourceStructureID":419,"TargetStructureID":133550,"Label":"419-133550 via Ribbon Synapse from 20388 -> 133551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20388,"TargetID":133551,"Directional":true}]},{"ID":6240,"SourceStructureID":419,"TargetStructureID":133553,"Label":"419-133553 via Ribbon Synapse from 34951 -> 133554, 133520 -> 133556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34951,"TargetID":133554,"Directional":true},{"SourceID":133520,"TargetID":133556,"Directional":true}]},{"ID":6241,"SourceStructureID":419,"TargetStructureID":133557,"Label":"419-133557 via Ribbon Synapse from 132558 -> 133558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132558,"TargetID":133558,"Directional":true}]},{"ID":6242,"SourceStructureID":422,"TargetStructureID":284,"Label":"422-284 via Ribbon Synapse from 17466 -> 17465","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17466,"TargetID":17465,"Directional":true}]},{"ID":6243,"SourceStructureID":422,"TargetStructureID":308,"Label":"422-308 via Ribbon Synapse from 10210 -> 31870, 10210 -> 43098, 10211 -> 43336, 86635 -> 86636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10210,"TargetID":31870,"Directional":true},{"SourceID":10210,"TargetID":43098,"Directional":true},{"SourceID":10211,"TargetID":43336,"Directional":true},{"SourceID":86635,"TargetID":86636,"Directional":true}]},{"ID":6244,"SourceStructureID":422,"TargetStructureID":476,"Label":"422-476 via Ribbon Synapse from 5685 -> 5674, 5686 -> 5687, 5696 -> 5675, 10477 -> 10442, 10478 -> 10479, 10481 -> 10444, 10484 -> 10485, 10486 -> 10468, 16550 -> 16551, 18016 -> 10454, 18017 -> 10455, 87886 -> 87887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5685,"TargetID":5674,"Directional":true},{"SourceID":5686,"TargetID":5687,"Directional":true},{"SourceID":5696,"TargetID":5675,"Directional":true},{"SourceID":10477,"TargetID":10442,"Directional":true},{"SourceID":10478,"TargetID":10479,"Directional":true},{"SourceID":10481,"TargetID":10444,"Directional":true},{"SourceID":10484,"TargetID":10485,"Directional":true},{"SourceID":10486,"TargetID":10468,"Directional":true},{"SourceID":16550,"TargetID":16551,"Directional":true},{"SourceID":18016,"TargetID":10454,"Directional":true},{"SourceID":18017,"TargetID":10455,"Directional":true},{"SourceID":87886,"TargetID":87887,"Directional":true}]},{"ID":6245,"SourceStructureID":422,"TargetStructureID":488,"Label":"422-488 via Ribbon Synapse from 16603 -> 87800","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16603,"TargetID":87800,"Directional":true}]},{"ID":6246,"SourceStructureID":422,"TargetStructureID":591,"Label":"422-591 via Ribbon Synapse from 10474 -> 36444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10474,"TargetID":36444,"Directional":true}]},{"ID":6247,"SourceStructureID":422,"TargetStructureID":6153,"Label":"422-6153 via Ribbon Synapse from 5694 -> 8437, 5695 -> 8438, 8423 -> 8424, 10210 -> 31858, 16603 -> 16605, 16611 -> 16610, 16616 -> 16617, 17477 -> 17478, 17482 -> 17483","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5694,"TargetID":8437,"Directional":true},{"SourceID":5695,"TargetID":8438,"Directional":true},{"SourceID":8423,"TargetID":8424,"Directional":true},{"SourceID":10210,"TargetID":31858,"Directional":true},{"SourceID":16603,"TargetID":16605,"Directional":true},{"SourceID":16611,"TargetID":16610,"Directional":true},{"SourceID":16616,"TargetID":16617,"Directional":true},{"SourceID":17477,"TargetID":17478,"Directional":true},{"SourceID":17482,"TargetID":17483,"Directional":true}]},{"ID":6248,"SourceStructureID":422,"TargetStructureID":7157,"Label":"422-7157 via Ribbon Synapse from 18205 -> 18204, 18206 -> 18207, 18210 -> 18209","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18205,"TargetID":18204,"Directional":true},{"SourceID":18206,"TargetID":18207,"Directional":true},{"SourceID":18210,"TargetID":18209,"Directional":true}]},{"ID":6249,"SourceStructureID":424,"TargetStructureID":906,"Label":"424-906 via Ribbon Synapse from 19520 -> 15204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19520,"TargetID":15204,"Directional":true}]},{"ID":6250,"SourceStructureID":424,"TargetStructureID":4835,"Label":"424-4835 via Ribbon Synapse from 62984 -> 62985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62984,"TargetID":62985,"Directional":true}]},{"ID":6251,"SourceStructureID":424,"TargetStructureID":5107,"Label":"424-5107 via Ribbon Synapse from 19511 -> 64971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19511,"TargetID":64971,"Directional":true}]},{"ID":6252,"SourceStructureID":424,"TargetStructureID":8575,"Label":"424-8575 via BC Conventional Synapse from 61728 -> 61726","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61728,"TargetID":61726,"Directional":true}]},{"ID":6253,"SourceStructureID":424,"TargetStructureID":8575,"Label":"424-8575 via Ribbon Synapse from 19546 -> 61581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19546,"TargetID":61581,"Directional":true}]},{"ID":6254,"SourceStructureID":424,"TargetStructureID":56211,"Label":"424-56211 via Ribbon Synapse from 19531 -> 56223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19531,"TargetID":56223,"Directional":true}]},{"ID":6255,"SourceStructureID":425,"TargetStructureID":5486,"Label":"425-5486 via Ribbon Synapse from 9441 -> 22099","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9441,"TargetID":22099,"Directional":true}]},{"ID":6256,"SourceStructureID":425,"TargetStructureID":8575,"Label":"425-8575 via BC Conventional Synapse from 61686 -> 61685, 61714 -> 61713","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61686,"TargetID":61685,"Directional":true},{"SourceID":61714,"TargetID":61713,"Directional":true}]},{"ID":6257,"SourceStructureID":425,"TargetStructureID":42387,"Label":"425-42387 via Ribbon Synapse from 22083 -> 129517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22083,"TargetID":129517,"Directional":true}]},{"ID":6258,"SourceStructureID":426,"TargetStructureID":341,"Label":"426-341 via Ribbon Synapse from 24511 -> 31834","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24511,"TargetID":31834,"Directional":true}]},{"ID":6259,"SourceStructureID":426,"TargetStructureID":5150,"Label":"426-5150 via Ribbon Synapse from 46133 -> 46142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46133,"TargetID":46142,"Directional":true}]},{"ID":6260,"SourceStructureID":426,"TargetStructureID":5351,"Label":"426-5351 via Ribbon Synapse from 24509 -> 24508, 24511 -> 24510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24509,"TargetID":24508,"Directional":true},{"SourceID":24511,"TargetID":24510,"Directional":true}]},{"ID":6261,"SourceStructureID":426,"TargetStructureID":46741,"Label":"426-46741 via Ribbon Synapse from 46137 -> 90213","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46137,"TargetID":90213,"Directional":true}]},{"ID":6262,"SourceStructureID":428,"TargetStructureID":606,"Label":"428-606 via Ribbon Synapse from 50896 -> 53313, 53215 -> 53216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50896,"TargetID":53313,"Directional":true},{"SourceID":53215,"TargetID":53216,"Directional":true}]},{"ID":6263,"SourceStructureID":428,"TargetStructureID":8575,"Label":"428-8575 via BC Conventional Synapse from 61691 -> 61690","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61691,"TargetID":61690,"Directional":true}]},{"ID":6264,"SourceStructureID":428,"TargetStructureID":8720,"Label":"428-8720 via Ribbon Synapse from 52688 -> 60254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52688,"TargetID":60254,"Directional":true}]},{"ID":6265,"SourceStructureID":428,"TargetStructureID":12564,"Label":"428-12564 via Ribbon Synapse from 7163 -> 53238, 52712 -> 55627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7163,"TargetID":53238,"Directional":true},{"SourceID":52712,"TargetID":55627,"Directional":true}]},{"ID":6266,"SourceStructureID":428,"TargetStructureID":34263,"Label":"428-34263 via Ribbon Synapse from 34268 -> 34267","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34268,"TargetID":34267,"Directional":true}]},{"ID":6267,"SourceStructureID":428,"TargetStructureID":34940,"Label":"428-34940 via Ribbon Synapse from 14084 -> 38523","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14084,"TargetID":38523,"Directional":true}]},{"ID":6268,"SourceStructureID":428,"TargetStructureID":53115,"Label":"428-53115 via Ribbon Synapse from 14084 -> 53147, 14085 -> 53147","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14084,"TargetID":53147,"Directional":true},{"SourceID":14085,"TargetID":53147,"Directional":true}]},{"ID":6269,"SourceStructureID":428,"TargetStructureID":59474,"Label":"428-59474 via Ribbon Synapse from 7177 -> 59489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7177,"TargetID":59489,"Directional":true}]},{"ID":6270,"SourceStructureID":428,"TargetStructureID":70924,"Label":"428-70924 via Ribbon Synapse from 7158 -> 70954","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7158,"TargetID":70954,"Directional":true}]},{"ID":6271,"SourceStructureID":428,"TargetStructureID":137122,"Label":"428-137122 via Ribbon Synapse from 66180 -> 137181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66180,"TargetID":137181,"Directional":true}]},{"ID":6272,"SourceStructureID":428,"TargetStructureID":147696,"Label":"428-147696 via Ribbon Synapse from 38599 -> 147756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38599,"TargetID":147756,"Directional":true}]},{"ID":6273,"SourceStructureID":431,"TargetStructureID":20299,"Label":"431-20299 via Ribbon Synapse from 12764 -> 121517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12764,"TargetID":121517,"Directional":true}]},{"ID":6274,"SourceStructureID":431,"TargetStructureID":30015,"Label":"431-30015 via Ribbon Synapse from 12684 -> 30032","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12684,"TargetID":30032,"Directional":true}]},{"ID":6275,"SourceStructureID":431,"TargetStructureID":31804,"Label":"431-31804 via Ribbon Synapse from 31815 -> 31814","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31815,"TargetID":31814,"Directional":true}]},{"ID":6276,"SourceStructureID":431,"TargetStructureID":34055,"Label":"431-34055 via Ribbon Synapse from 12656 -> 34064","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12656,"TargetID":34064,"Directional":true}]},{"ID":6277,"SourceStructureID":431,"TargetStructureID":34302,"Label":"431-34302 via Ribbon Synapse from 34304 -> 34303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34304,"TargetID":34303,"Directional":true}]},{"ID":6278,"SourceStructureID":431,"TargetStructureID":34868,"Label":"431-34868 via Ribbon Synapse from 38594 -> 38592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38594,"TargetID":38592,"Directional":true}]},{"ID":6279,"SourceStructureID":431,"TargetStructureID":38949,"Label":"431-38949 via Ribbon Synapse from 12734 -> 39047","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12734,"TargetID":39047,"Directional":true}]},{"ID":6280,"SourceStructureID":431,"TargetStructureID":60264,"Label":"431-60264 via Ribbon Synapse from 12684 -> 60267","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12684,"TargetID":60267,"Directional":true}]},{"ID":6281,"SourceStructureID":431,"TargetStructureID":71882,"Label":"431-71882 via Ribbon Synapse from 12772 -> 90359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12772,"TargetID":90359,"Directional":true}]},{"ID":6282,"SourceStructureID":431,"TargetStructureID":98754,"Label":"431-98754 via Ribbon Synapse from 119069 -> 98755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119069,"TargetID":98755,"Directional":true}]},{"ID":6283,"SourceStructureID":431,"TargetStructureID":98766,"Label":"431-98766 via Ribbon Synapse from 119065 -> 98769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119065,"TargetID":98769,"Directional":true}]},{"ID":6284,"SourceStructureID":431,"TargetStructureID":98776,"Label":"431-98776 via Ribbon Synapse from 119062 -> 98778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119062,"TargetID":98778,"Directional":true}]},{"ID":6285,"SourceStructureID":431,"TargetStructureID":98780,"Label":"431-98780 via Ribbon Synapse from 119062 -> 98781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119062,"TargetID":98781,"Directional":true}]},{"ID":6286,"SourceStructureID":431,"TargetStructureID":108821,"Label":"431-108821 via Unknown from 109656 -> 109655","Type":"Unknown","Directional":true,"Links":[{"SourceID":109656,"TargetID":109655,"Directional":true}]},{"ID":6287,"SourceStructureID":431,"TargetStructureID":115510,"Label":"431-115510 via Ribbon Synapse from 115509 -> 115511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115509,"TargetID":115511,"Directional":true}]},{"ID":6288,"SourceStructureID":432,"TargetStructureID":373,"Label":"432-373 via Ribbon Synapse from 55235 -> 55231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55235,"TargetID":55231,"Directional":true}]},{"ID":6289,"SourceStructureID":432,"TargetStructureID":8575,"Label":"432-8575 via BC Conventional Synapse from 55238 -> 55237, 55269 -> 55270","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55238,"TargetID":55237,"Directional":true},{"SourceID":55269,"TargetID":55270,"Directional":true}]},{"ID":6290,"SourceStructureID":433,"TargetStructureID":7858,"Label":"433-7858 via Ribbon Synapse from 21486 -> 34519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21486,"TargetID":34519,"Directional":true}]},{"ID":6291,"SourceStructureID":434,"TargetStructureID":7860,"Label":"434-7860 via Ribbon Synapse from 29661 -> 29660, 29663 -> 29662","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29661,"TargetID":29660,"Directional":true},{"SourceID":29663,"TargetID":29662,"Directional":true}]},{"ID":6292,"SourceStructureID":437,"TargetStructureID":4835,"Label":"437-4835 via Ribbon Synapse from 6641 -> 6642, 7064 -> 17614, 17602 -> 17603, 65717 -> 65736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6641,"TargetID":6642,"Directional":true},{"SourceID":7064,"TargetID":17614,"Directional":true},{"SourceID":17602,"TargetID":17603,"Directional":true},{"SourceID":65717,"TargetID":65736,"Directional":true}]},{"ID":6293,"SourceStructureID":437,"TargetStructureID":13525,"Label":"437-13525 via Ribbon Synapse from 96751 -> 85363, 159032 -> 158517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96751,"TargetID":85363,"Directional":true},{"SourceID":159032,"TargetID":158517,"Directional":true}]},{"ID":6294,"SourceStructureID":437,"TargetStructureID":61709,"Label":"437-61709 via Ribbon Synapse from 65707 -> 65704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65707,"TargetID":65704,"Directional":true}]},{"ID":6295,"SourceStructureID":437,"TargetStructureID":65751,"Label":"437-65751 via Ribbon Synapse from 17579 -> 65756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17579,"TargetID":65756,"Directional":true}]},{"ID":6296,"SourceStructureID":440,"TargetStructureID":5453,"Label":"440-5453 via Ribbon Synapse from 24458 -> 62010, 62006 -> 62007, 122528 -> 122529, 122531 -> 122529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24458,"TargetID":62010,"Directional":true},{"SourceID":62006,"TargetID":62007,"Directional":true},{"SourceID":122528,"TargetID":122529,"Directional":true},{"SourceID":122531,"TargetID":122529,"Directional":true}]},{"ID":6297,"SourceStructureID":440,"TargetStructureID":7703,"Label":"440-7703 via Ribbon Synapse from 18639 -> 18597, 18641 -> 18598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18639,"TargetID":18597,"Directional":true},{"SourceID":18641,"TargetID":18598,"Directional":true}]},{"ID":6298,"SourceStructureID":440,"TargetStructureID":8575,"Label":"440-8575 via BC Conventional Synapse from 62003 -> 61739","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62003,"TargetID":61739,"Directional":true}]},{"ID":6299,"SourceStructureID":440,"TargetStructureID":12563,"Label":"440-12563 via Ribbon Synapse from 18631 -> 30506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18631,"TargetID":30506,"Directional":true}]},{"ID":6300,"SourceStructureID":440,"TargetStructureID":32581,"Label":"440-32581 via Ribbon Synapse from 24770 -> 32606","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24770,"TargetID":32606,"Directional":true}]},{"ID":6301,"SourceStructureID":440,"TargetStructureID":33161,"Label":"440-33161 via Ribbon Synapse from 33193 -> 33192, 33194 -> 33192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33193,"TargetID":33192,"Directional":true},{"SourceID":33194,"TargetID":33192,"Directional":true}]},{"ID":6302,"SourceStructureID":440,"TargetStructureID":34311,"Label":"440-34311 via Ribbon Synapse from 39160 -> 35502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39160,"TargetID":35502,"Directional":true}]},{"ID":6303,"SourceStructureID":440,"TargetStructureID":39998,"Label":"440-39998 via Ribbon Synapse from 40009 -> 40008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40009,"TargetID":40008,"Directional":true}]},{"ID":6304,"SourceStructureID":440,"TargetStructureID":44346,"Label":"440-44346 via Ribbon Synapse from 44389 -> 44388, 122875 -> 122876","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44389,"TargetID":44388,"Directional":true},{"SourceID":122875,"TargetID":122876,"Directional":true}]},{"ID":6305,"SourceStructureID":440,"TargetStructureID":60272,"Label":"440-60272 via Ribbon Synapse from 60270 -> 60273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60270,"TargetID":60273,"Directional":true}]},{"ID":6306,"SourceStructureID":440,"TargetStructureID":60283,"Label":"440-60283 via Ribbon Synapse from 60282 -> 60285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60282,"TargetID":60285,"Directional":true}]},{"ID":6307,"SourceStructureID":440,"TargetStructureID":60288,"Label":"440-60288 via Ribbon Synapse from 60286 -> 60290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60286,"TargetID":60290,"Directional":true}]},{"ID":6308,"SourceStructureID":440,"TargetStructureID":60292,"Label":"440-60292 via BC Conventional Synapse from 60291 -> 60293","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":60291,"TargetID":60293,"Directional":true}]},{"ID":6309,"SourceStructureID":440,"TargetStructureID":60303,"Label":"440-60303 via Ribbon Synapse from 60302 -> 60304","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60302,"TargetID":60304,"Directional":true}]},{"ID":6310,"SourceStructureID":440,"TargetStructureID":60309,"Label":"440-60309 via Ribbon Synapse from 60308 -> 60310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60308,"TargetID":60310,"Directional":true}]},{"ID":6311,"SourceStructureID":440,"TargetStructureID":60311,"Label":"440-60311 via Ribbon Synapse from 60308 -> 60312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60308,"TargetID":60312,"Directional":true}]},{"ID":6312,"SourceStructureID":440,"TargetStructureID":60315,"Label":"440-60315 via Ribbon Synapse from 60314 -> 60316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60314,"TargetID":60316,"Directional":true}]},{"ID":6313,"SourceStructureID":440,"TargetStructureID":60317,"Label":"440-60317 via Ribbon Synapse from 60314 -> 60318","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60314,"TargetID":60318,"Directional":true}]},{"ID":6314,"SourceStructureID":440,"TargetStructureID":60319,"Label":"440-60319 via Ribbon Synapse from 60314 -> 60320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60314,"TargetID":60320,"Directional":true}]},{"ID":6315,"SourceStructureID":440,"TargetStructureID":60322,"Label":"440-60322 via BC Conventional Synapse from 60321 -> 60323","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":60321,"TargetID":60323,"Directional":true}]},{"ID":6316,"SourceStructureID":441,"TargetStructureID":7861,"Label":"441-7861 via Ribbon Synapse from 2051 -> 21267, 32630 -> 121012, 121020 -> 121021, 121023 -> 121022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2051,"TargetID":21267,"Directional":true},{"SourceID":32630,"TargetID":121012,"Directional":true},{"SourceID":121020,"TargetID":121021,"Directional":true},{"SourceID":121023,"TargetID":121022,"Directional":true}]},{"ID":6317,"SourceStructureID":445,"TargetStructureID":7861,"Label":"445-7861 via Ribbon Synapse from 121031 -> 121029, 121034 -> 121033, 121039 -> 121038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121031,"TargetID":121029,"Directional":true},{"SourceID":121034,"TargetID":121033,"Directional":true},{"SourceID":121039,"TargetID":121038,"Directional":true}]},{"ID":6318,"SourceStructureID":446,"TargetStructureID":5737,"Label":"446-5737 via Cistern Pre from 34279 -> 34280","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":34279,"TargetID":34280,"Directional":true}]},{"ID":6319,"SourceStructureID":446,"TargetStructureID":34165,"Label":"446-34165 via Ribbon Synapse from 2020 -> 34168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2020,"TargetID":34168,"Directional":true}]},{"ID":6320,"SourceStructureID":447,"TargetStructureID":21779,"Label":"447-21779 via Ribbon Synapse from 32094 -> 32091, 32095 -> 32091, 32096 -> 32091, 32097 -> 32091, 32100 -> 32091, 32101 -> 32091, 32102 -> 32091, 32103 -> 32091, 32104 -> 32091, 32105 -> 32091, 123231 -> 32091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32094,"TargetID":32091,"Directional":true},{"SourceID":32095,"TargetID":32091,"Directional":true},{"SourceID":32096,"TargetID":32091,"Directional":true},{"SourceID":32097,"TargetID":32091,"Directional":true},{"SourceID":32100,"TargetID":32091,"Directional":true},{"SourceID":32101,"TargetID":32091,"Directional":true},{"SourceID":32102,"TargetID":32091,"Directional":true},{"SourceID":32103,"TargetID":32091,"Directional":true},{"SourceID":32104,"TargetID":32091,"Directional":true},{"SourceID":32105,"TargetID":32091,"Directional":true},{"SourceID":123231,"TargetID":32091,"Directional":true}]},{"ID":6321,"SourceStructureID":447,"TargetStructureID":32273,"Label":"447-32273 via Ribbon Synapse from 32101 -> 32276, 32103 -> 32276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32101,"TargetID":32276,"Directional":true},{"SourceID":32103,"TargetID":32276,"Directional":true}]},{"ID":6322,"SourceStructureID":447,"TargetStructureID":34336,"Label":"447-34336 via Ribbon Synapse from 33852 -> 34341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33852,"TargetID":34341,"Directional":true}]},{"ID":6323,"SourceStructureID":447,"TargetStructureID":34337,"Label":"447-34337 via Ribbon Synapse from 33852 -> 34338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33852,"TargetID":34338,"Directional":true}]},{"ID":6324,"SourceStructureID":447,"TargetStructureID":123243,"Label":"447-123243 via Ribbon Synapse from 33855 -> 123245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33855,"TargetID":123245,"Directional":true}]},{"ID":6325,"SourceStructureID":450,"TargetStructureID":606,"Label":"450-606 via Ribbon Synapse from 5075 -> 5074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5075,"TargetID":5074,"Directional":true}]},{"ID":6326,"SourceStructureID":450,"TargetStructureID":34336,"Label":"450-34336 via Ribbon Synapse from 122508 -> 122507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122508,"TargetID":122507,"Directional":true}]},{"ID":6327,"SourceStructureID":453,"TargetStructureID":7564,"Label":"453-7564 via Ribbon Synapse from 45628 -> 29640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45628,"TargetID":29640,"Directional":true}]},{"ID":6328,"SourceStructureID":455,"TargetStructureID":4835,"Label":"455-4835 via Ribbon Synapse from 20591 -> 31365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20591,"TargetID":31365,"Directional":true}]},{"ID":6329,"SourceStructureID":455,"TargetStructureID":8575,"Label":"455-8575 via BC Conventional Synapse from 55286 -> 55285","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55286,"TargetID":55285,"Directional":true}]},{"ID":6330,"SourceStructureID":455,"TargetStructureID":42795,"Label":"455-42795 via Ribbon Synapse from 42809 -> 42806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42809,"TargetID":42806,"Directional":true}]},{"ID":6331,"SourceStructureID":455,"TargetStructureID":64777,"Label":"455-64777 via Ribbon Synapse from 28775 -> 64802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28775,"TargetID":64802,"Directional":true}]},{"ID":6332,"SourceStructureID":456,"TargetStructureID":108821,"Label":"456-108821 via Conventional from 109642 -> 109641","Type":"Conventional","Directional":true,"Links":[{"SourceID":109642,"TargetID":109641,"Directional":true}]},{"ID":6333,"SourceStructureID":458,"TargetStructureID":115,"Label":"458-115 via Ribbon Synapse from 8155 -> 8154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8155,"TargetID":8154,"Directional":true}]},{"ID":6334,"SourceStructureID":458,"TargetStructureID":7564,"Label":"458-7564 via Ribbon Synapse from 14470 -> 37285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14470,"TargetID":37285,"Directional":true}]},{"ID":6335,"SourceStructureID":458,"TargetStructureID":7703,"Label":"458-7703 via Ribbon Synapse from 14471 -> 24794, 14513 -> 14530, 14517 -> 14527, 14524 -> 14525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14471,"TargetID":24794,"Directional":true},{"SourceID":14513,"TargetID":14530,"Directional":true},{"SourceID":14517,"TargetID":14527,"Directional":true},{"SourceID":14524,"TargetID":14525,"Directional":true}]},{"ID":6336,"SourceStructureID":458,"TargetStructureID":8575,"Label":"458-8575 via BC Conventional Synapse from 55291 -> 55290, 61738 -> 61737","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55291,"TargetID":55290,"Directional":true},{"SourceID":61738,"TargetID":61737,"Directional":true}]},{"ID":6337,"SourceStructureID":458,"TargetStructureID":8575,"Label":"458-8575 via Ribbon Synapse from 14478 -> 55289, 37284 -> 55288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14478,"TargetID":55289,"Directional":true},{"SourceID":37284,"TargetID":55288,"Directional":true}]},{"ID":6338,"SourceStructureID":458,"TargetStructureID":11238,"Label":"458-11238 via Ribbon Synapse from 14504 -> 88582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14504,"TargetID":88582,"Directional":true}]},{"ID":6339,"SourceStructureID":458,"TargetStructureID":98590,"Label":"458-98590 via Ribbon Synapse from 14461 -> 117180","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14461,"TargetID":117180,"Directional":true}]},{"ID":6340,"SourceStructureID":458,"TargetStructureID":101369,"Label":"458-101369 via Ribbon Synapse from 101412 -> 101405","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101412,"TargetID":101405,"Directional":true}]},{"ID":6341,"SourceStructureID":458,"TargetStructureID":137024,"Label":"458-137024 via Ribbon Synapse from 14515 -> 137025","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14515,"TargetID":137025,"Directional":true}]},{"ID":6342,"SourceStructureID":458,"TargetStructureID":137122,"Label":"458-137122 via BC Conventional Synapse from 137138 -> 137139, 137141 -> 137140","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":137138,"TargetID":137139,"Directional":true},{"SourceID":137141,"TargetID":137140,"Directional":true}]},{"ID":6343,"SourceStructureID":460,"TargetStructureID":7568,"Label":"460-7568 via Ribbon Synapse from 14437 -> 27107, 27106 -> 27104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14437,"TargetID":27107,"Directional":true},{"SourceID":27106,"TargetID":27104,"Directional":true}]},{"ID":6344,"SourceStructureID":460,"TargetStructureID":9787,"Label":"460-9787 via Ribbon Synapse from 14443 -> 18032, 14447 -> 18649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14443,"TargetID":18032,"Directional":true},{"SourceID":14447,"TargetID":18649,"Directional":true}]},{"ID":6345,"SourceStructureID":460,"TargetStructureID":11238,"Label":"460-11238 via Ribbon Synapse from 44941 -> 88585, 44947 -> 88583, 88580 -> 88573, 88581 -> 88574","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44941,"TargetID":88585,"Directional":true},{"SourceID":44947,"TargetID":88583,"Directional":true},{"SourceID":88580,"TargetID":88573,"Directional":true},{"SourceID":88581,"TargetID":88574,"Directional":true}]},{"ID":6346,"SourceStructureID":460,"TargetStructureID":13525,"Label":"460-13525 via Ribbon Synapse from 130160 -> 129949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130160,"TargetID":129949,"Directional":true}]},{"ID":6347,"SourceStructureID":460,"TargetStructureID":31915,"Label":"460-31915 via Ribbon Synapse from 31923 -> 31920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31923,"TargetID":31920,"Directional":true}]},{"ID":6348,"SourceStructureID":461,"TargetStructureID":390,"Label":"461-390 via Ribbon Synapse from 14754 -> 65205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14754,"TargetID":65205,"Directional":true}]},{"ID":6349,"SourceStructureID":461,"TargetStructureID":606,"Label":"461-606 via Ribbon Synapse from 49699 -> 49172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49699,"TargetID":49172,"Directional":true}]},{"ID":6350,"SourceStructureID":461,"TargetStructureID":1620,"Label":"461-1620 via Ribbon Synapse from 14828 -> 16890, 14831 -> 16895, 14833 -> 16894, 14837 -> 16893, 20620 -> 20619, 20623 -> 20624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14828,"TargetID":16890,"Directional":true},{"SourceID":14831,"TargetID":16895,"Directional":true},{"SourceID":14833,"TargetID":16894,"Directional":true},{"SourceID":14837,"TargetID":16893,"Directional":true},{"SourceID":20620,"TargetID":20619,"Directional":true},{"SourceID":20623,"TargetID":20624,"Directional":true}]},{"ID":6351,"SourceStructureID":461,"TargetStructureID":5117,"Label":"461-5117 via Ribbon Synapse from 60138 -> 135211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60138,"TargetID":135211,"Directional":true}]},{"ID":6352,"SourceStructureID":461,"TargetStructureID":5410,"Label":"461-5410 via Ribbon Synapse from 49581 -> 82168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49581,"TargetID":82168,"Directional":true}]},{"ID":6353,"SourceStructureID":461,"TargetStructureID":18282,"Label":"461-18282 via Ribbon Synapse from 86710 -> 86711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86710,"TargetID":86711,"Directional":true}]},{"ID":6354,"SourceStructureID":461,"TargetStructureID":29198,"Label":"461-29198 via Ribbon Synapse from 49795 -> 29212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49795,"TargetID":29212,"Directional":true}]},{"ID":6355,"SourceStructureID":461,"TargetStructureID":34306,"Label":"461-34306 via Ribbon Synapse from 34310 -> 34309","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34310,"TargetID":34309,"Directional":true}]},{"ID":6356,"SourceStructureID":463,"TargetStructureID":458,"Label":"463-458 via Ribbon Synapse from 37512 -> 37513","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37512,"TargetID":37513,"Directional":true}]},{"ID":6357,"SourceStructureID":463,"TargetStructureID":5422,"Label":"463-5422 via Ribbon Synapse from 74131 -> 74128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74131,"TargetID":74128,"Directional":true}]},{"ID":6358,"SourceStructureID":463,"TargetStructureID":74141,"Label":"463-74141 via Ribbon Synapse from 74140 -> 74142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74140,"TargetID":74142,"Directional":true}]},{"ID":6359,"SourceStructureID":464,"TargetStructureID":4835,"Label":"464-4835 via Ribbon Synapse from 6653 -> 6652, 26641 -> 87868, 87870 -> 87871, 87874 -> 29509, 87876 -> 29510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6653,"TargetID":6652,"Directional":true},{"SourceID":26641,"TargetID":87868,"Directional":true},{"SourceID":87870,"TargetID":87871,"Directional":true},{"SourceID":87874,"TargetID":29509,"Directional":true},{"SourceID":87876,"TargetID":29510,"Directional":true}]},{"ID":6360,"SourceStructureID":468,"TargetStructureID":4835,"Label":"468-4835 via Ribbon Synapse from 12926 -> 12927","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12926,"TargetID":12927,"Directional":true}]},{"ID":6361,"SourceStructureID":469,"TargetStructureID":390,"Label":"469-390 via Ribbon Synapse from 4654 -> 65128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4654,"TargetID":65128,"Directional":true}]},{"ID":6362,"SourceStructureID":469,"TargetStructureID":476,"Label":"469-476 via Ribbon Synapse from 4653 -> 5723, 4665 -> 15065, 4672 -> 15066, 4684 -> 16315, 4685 -> 16317, 16300 -> 16298, 16312 -> 16310, 18021 -> 18020, 18025 -> 18024","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4653,"TargetID":5723,"Directional":true},{"SourceID":4665,"TargetID":15065,"Directional":true},{"SourceID":4672,"TargetID":15066,"Directional":true},{"SourceID":4684,"TargetID":16315,"Directional":true},{"SourceID":4685,"TargetID":16317,"Directional":true},{"SourceID":16300,"TargetID":16298,"Directional":true},{"SourceID":16312,"TargetID":16310,"Directional":true},{"SourceID":18021,"TargetID":18020,"Directional":true},{"SourceID":18025,"TargetID":18024,"Directional":true}]},{"ID":6363,"SourceStructureID":469,"TargetStructureID":514,"Label":"469-514 via Ribbon Synapse from 4645 -> 14959, 4676 -> 14959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4645,"TargetID":14959,"Directional":true},{"SourceID":4676,"TargetID":14959,"Directional":true}]},{"ID":6364,"SourceStructureID":469,"TargetStructureID":3257,"Label":"469-3257 via Ribbon Synapse from 16308 -> 16307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16308,"TargetID":16307,"Directional":true}]},{"ID":6365,"SourceStructureID":469,"TargetStructureID":4835,"Label":"469-4835 via Ribbon Synapse from 4688 -> 36738, 36735 -> 36734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4688,"TargetID":36738,"Directional":true},{"SourceID":36735,"TargetID":36734,"Directional":true}]},{"ID":6366,"SourceStructureID":469,"TargetStructureID":4943,"Label":"469-4943 via Ribbon Synapse from 4641 -> 13432, 4676 -> 13430, 4677 -> 13431, 18025 -> 13435","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4641,"TargetID":13432,"Directional":true},{"SourceID":4676,"TargetID":13430,"Directional":true},{"SourceID":4677,"TargetID":13431,"Directional":true},{"SourceID":18025,"TargetID":13435,"Directional":true}]},{"ID":6367,"SourceStructureID":469,"TargetStructureID":9643,"Label":"469-9643 via Ribbon Synapse from 4653 -> 9683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4653,"TargetID":9683,"Directional":true}]},{"ID":6368,"SourceStructureID":469,"TargetStructureID":105212,"Label":"469-105212 via Ribbon Synapse from 36735 -> 105769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36735,"TargetID":105769,"Directional":true}]},{"ID":6369,"SourceStructureID":471,"TargetStructureID":476,"Label":"471-476 via Ribbon Synapse from 7023 -> 31971, 9649 -> 3162, 9652 -> 3163, 16035 -> 16034, 16283 -> 16284, 16295 -> 16294, 16297 -> 16296, 16302 -> 16301, 16304 -> 16303, 16316 -> 4682, 16318 -> 18009, 18006 -> 3184, 18007 -> 3182, 18008 -> 3203, 18380 -> 3171, 18380 -> 3172, 60637 -> 2235, 65180 -> 3165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7023,"TargetID":31971,"Directional":true},{"SourceID":9649,"TargetID":3162,"Directional":true},{"SourceID":9652,"TargetID":3163,"Directional":true},{"SourceID":16035,"TargetID":16034,"Directional":true},{"SourceID":16283,"TargetID":16284,"Directional":true},{"SourceID":16295,"TargetID":16294,"Directional":true},{"SourceID":16297,"TargetID":16296,"Directional":true},{"SourceID":16302,"TargetID":16301,"Directional":true},{"SourceID":16304,"TargetID":16303,"Directional":true},{"SourceID":16316,"TargetID":4682,"Directional":true},{"SourceID":16318,"TargetID":18009,"Directional":true},{"SourceID":18006,"TargetID":3184,"Directional":true},{"SourceID":18007,"TargetID":3182,"Directional":true},{"SourceID":18008,"TargetID":3203,"Directional":true},{"SourceID":18380,"TargetID":3171,"Directional":true},{"SourceID":18380,"TargetID":3172,"Directional":true},{"SourceID":60637,"TargetID":2235,"Directional":true},{"SourceID":65180,"TargetID":3165,"Directional":true}]},{"ID":6370,"SourceStructureID":471,"TargetStructureID":514,"Label":"471-514 via Ribbon Synapse from 16039 -> 3551, 16292 -> 16293, 16309 -> 3565, 88077 -> 88078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16039,"TargetID":3551,"Directional":true},{"SourceID":16292,"TargetID":16293,"Directional":true},{"SourceID":16309,"TargetID":3565,"Directional":true},{"SourceID":88077,"TargetID":88078,"Directional":true}]},{"ID":6371,"SourceStructureID":471,"TargetStructureID":3257,"Label":"471-3257 via Ribbon Synapse from 8234 -> 8233, 10864 -> 10863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8234,"TargetID":8233,"Directional":true},{"SourceID":10864,"TargetID":10863,"Directional":true}]},{"ID":6372,"SourceStructureID":471,"TargetStructureID":9643,"Label":"471-9643 via Ribbon Synapse from 9652 -> 9653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9652,"TargetID":9653,"Directional":true}]},{"ID":6373,"SourceStructureID":471,"TargetStructureID":39530,"Label":"471-39530 via Ribbon Synapse from 16035 -> 83492, 60637 -> 83495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16035,"TargetID":83492,"Directional":true},{"SourceID":60637,"TargetID":83495,"Directional":true}]},{"ID":6374,"SourceStructureID":471,"TargetStructureID":89984,"Label":"471-89984 via Ribbon Synapse from 90097 -> 90098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90097,"TargetID":90098,"Directional":true}]},{"ID":6375,"SourceStructureID":471,"TargetStructureID":97024,"Label":"471-97024 via Ribbon Synapse from 16283 -> 97116","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16283,"TargetID":97116,"Directional":true}]},{"ID":6376,"SourceStructureID":475,"TargetStructureID":476,"Label":"475-476 via Ribbon Synapse from 43835 -> 65834, 133729 -> 133728","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43835,"TargetID":65834,"Directional":true},{"SourceID":133729,"TargetID":133728,"Directional":true}]},{"ID":6377,"SourceStructureID":475,"TargetStructureID":46074,"Label":"475-46074 via Ribbon Synapse from 60739 -> 60740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60739,"TargetID":60740,"Directional":true}]},{"ID":6378,"SourceStructureID":476,"TargetStructureID":425,"Label":"476-425 via Conventional from 2147 -> 22046","Type":"Conventional","Directional":true,"Links":[{"SourceID":2147,"TargetID":22046,"Directional":true}]},{"ID":6379,"SourceStructureID":476,"TargetStructureID":460,"Label":"476-460 via Conventional from 4714 -> 18026","Type":"Conventional","Directional":true,"Links":[{"SourceID":4714,"TargetID":18026,"Directional":true}]},{"ID":6380,"SourceStructureID":476,"TargetStructureID":475,"Label":"476-475 via Conventional from 3054 -> 43837, 5053 -> 5052, 65828 -> 65829, 65832 -> 65833","Type":"Conventional","Directional":true,"Links":[{"SourceID":3054,"TargetID":43837,"Directional":true},{"SourceID":5053,"TargetID":5052,"Directional":true},{"SourceID":65828,"TargetID":65829,"Directional":true},{"SourceID":65832,"TargetID":65833,"Directional":true}]},{"ID":6381,"SourceStructureID":476,"TargetStructureID":4567,"Label":"476-4567 via Conventional from 3052 -> 15589","Type":"Conventional","Directional":true,"Links":[{"SourceID":3052,"TargetID":15589,"Directional":true}]},{"ID":6382,"SourceStructureID":476,"TargetStructureID":4568,"Label":"476-4568 via Conventional from 2117 -> 11482","Type":"Conventional","Directional":true,"Links":[{"SourceID":2117,"TargetID":11482,"Directional":true}]},{"ID":6383,"SourceStructureID":476,"TargetStructureID":5150,"Label":"476-5150 via Conventional from 3040 -> 5152, 4831 -> 5155","Type":"Conventional","Directional":true,"Links":[{"SourceID":3040,"TargetID":5152,"Directional":true},{"SourceID":4831,"TargetID":5155,"Directional":true}]},{"ID":6384,"SourceStructureID":476,"TargetStructureID":6656,"Label":"476-6656 via Conventional from 65830 -> 40417, 65831 -> 40416","Type":"Conventional","Directional":true,"Links":[{"SourceID":65830,"TargetID":40417,"Directional":true},{"SourceID":65831,"TargetID":40416,"Directional":true}]},{"ID":6385,"SourceStructureID":476,"TargetStructureID":65835,"Label":"476-65835 via Conventional from 3063 -> 65836","Type":"Conventional","Directional":true,"Links":[{"SourceID":3063,"TargetID":65836,"Directional":true}]},{"ID":6386,"SourceStructureID":476,"TargetStructureID":147796,"Label":"476-147796 via Conventional from 147802 -> 147801","Type":"Conventional","Directional":true,"Links":[{"SourceID":147802,"TargetID":147801,"Directional":true}]},{"ID":6387,"SourceStructureID":476,"TargetStructureID":147809,"Label":"476-147809 via Conventional from 3140 -> 147814","Type":"Conventional","Directional":true,"Links":[{"SourceID":3140,"TargetID":147814,"Directional":true}]},{"ID":6388,"SourceStructureID":478,"TargetStructureID":906,"Label":"478-906 via Ribbon Synapse from 19396 -> 15200, 19397 -> 19400","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19396,"TargetID":15200,"Directional":true},{"SourceID":19397,"TargetID":19400,"Directional":true}]},{"ID":6389,"SourceStructureID":478,"TargetStructureID":5107,"Label":"478-5107 via Ribbon Synapse from 724 -> 19412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":724,"TargetID":19412,"Directional":true}]},{"ID":6390,"SourceStructureID":478,"TargetStructureID":5150,"Label":"478-5150 via Ribbon Synapse from 10947 -> 5162, 19386 -> 19385","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10947,"TargetID":5162,"Directional":true},{"SourceID":19386,"TargetID":19385,"Directional":true}]},{"ID":6391,"SourceStructureID":478,"TargetStructureID":7568,"Label":"478-7568 via Ribbon Synapse from 4622 -> 27050, 19408 -> 27077, 19414 -> 27044","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4622,"TargetID":27050,"Directional":true},{"SourceID":19408,"TargetID":27077,"Directional":true},{"SourceID":19414,"TargetID":27044,"Directional":true}]},{"ID":6392,"SourceStructureID":478,"TargetStructureID":7859,"Label":"478-7859 via Ribbon Synapse from 19424 -> 64678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19424,"TargetID":64678,"Directional":true}]},{"ID":6393,"SourceStructureID":478,"TargetStructureID":10945,"Label":"478-10945 via Ribbon Synapse from 10947 -> 10946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10947,"TargetID":10946,"Directional":true}]},{"ID":6394,"SourceStructureID":478,"TargetStructureID":22634,"Label":"478-22634 via Ribbon Synapse from 706 -> 22641","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":706,"TargetID":22641,"Directional":true}]},{"ID":6395,"SourceStructureID":479,"TargetStructureID":314,"Label":"479-314 via Ribbon Synapse from 21861 -> 21862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21861,"TargetID":21862,"Directional":true}]},{"ID":6396,"SourceStructureID":479,"TargetStructureID":375,"Label":"479-375 via Ribbon Synapse from 8310 -> 21838, 21866 -> 21852, 21867 -> 21852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8310,"TargetID":21838,"Directional":true},{"SourceID":21866,"TargetID":21852,"Directional":true},{"SourceID":21867,"TargetID":21852,"Directional":true}]},{"ID":6397,"SourceStructureID":479,"TargetStructureID":8575,"Label":"479-8575 via BC Conventional Synapse from 61564 -> 61563, 122370 -> 122369","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61564,"TargetID":61563,"Directional":true},{"SourceID":122370,"TargetID":122369,"Directional":true}]},{"ID":6398,"SourceStructureID":479,"TargetStructureID":32637,"Label":"479-32637 via Ribbon Synapse from 34985 -> 34984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34985,"TargetID":34984,"Directional":true}]},{"ID":6399,"SourceStructureID":479,"TargetStructureID":36153,"Label":"479-36153 via Ribbon Synapse from 45887 -> 61616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45887,"TargetID":61616,"Directional":true}]},{"ID":6400,"SourceStructureID":479,"TargetStructureID":36158,"Label":"479-36158 via Ribbon Synapse from 8309 -> 36160","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8309,"TargetID":36160,"Directional":true}]},{"ID":6401,"SourceStructureID":479,"TargetStructureID":36162,"Label":"479-36162 via Ribbon Synapse from 36165 -> 36164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36165,"TargetID":36164,"Directional":true}]},{"ID":6402,"SourceStructureID":479,"TargetStructureID":59568,"Label":"479-59568 via Ribbon Synapse from 56494 -> 59569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56494,"TargetID":59569,"Directional":true}]},{"ID":6403,"SourceStructureID":483,"TargetStructureID":4890,"Label":"483-4890 via Ribbon Synapse from 6794 -> 7921, 6798 -> 103718, 19999 -> 19998, 20001 -> 20000, 26824 -> 64860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6794,"TargetID":7921,"Directional":true},{"SourceID":6798,"TargetID":103718,"Directional":true},{"SourceID":19999,"TargetID":19998,"Directional":true},{"SourceID":20001,"TargetID":20000,"Directional":true},{"SourceID":26824,"TargetID":64860,"Directional":true}]},{"ID":6404,"SourceStructureID":483,"TargetStructureID":5350,"Label":"483-5350 via Ribbon Synapse from 71247 -> 10674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71247,"TargetID":10674,"Directional":true}]},{"ID":6405,"SourceStructureID":483,"TargetStructureID":5439,"Label":"483-5439 via Ribbon Synapse from 6750 -> 66578, 7469 -> 102700, 92341 -> 96636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6750,"TargetID":66578,"Directional":true},{"SourceID":7469,"TargetID":102700,"Directional":true},{"SourceID":92341,"TargetID":96636,"Directional":true}]},{"ID":6406,"SourceStructureID":483,"TargetStructureID":6073,"Label":"483-6073 via Ribbon Synapse from 6072 -> 6074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6072,"TargetID":6074,"Directional":true}]},{"ID":6407,"SourceStructureID":483,"TargetStructureID":6857,"Label":"483-6857 via Ribbon Synapse from 26824 -> 56080, 65234 -> 65231, 85758 -> 96627, 103539 -> 103540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26824,"TargetID":56080,"Directional":true},{"SourceID":65234,"TargetID":65231,"Directional":true},{"SourceID":85758,"TargetID":96627,"Directional":true},{"SourceID":103539,"TargetID":103540,"Directional":true}]},{"ID":6408,"SourceStructureID":483,"TargetStructureID":8577,"Label":"483-8577 via Ribbon Synapse from 6764 -> 15929, 6798 -> 15930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6764,"TargetID":15929,"Directional":true},{"SourceID":6798,"TargetID":15930,"Directional":true}]},{"ID":6409,"SourceStructureID":483,"TargetStructureID":8579,"Label":"483-8579 via Ribbon Synapse from 6770 -> 103350, 103344 -> 103347","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6770,"TargetID":103350,"Directional":true},{"SourceID":103344,"TargetID":103347,"Directional":true}]},{"ID":6410,"SourceStructureID":483,"TargetStructureID":8720,"Label":"483-8720 via Ribbon Synapse from 97748 -> 97749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97748,"TargetID":97749,"Directional":true}]},{"ID":6411,"SourceStructureID":483,"TargetStructureID":12208,"Label":"483-12208 via BC Conventional Synapse from 97704 -> 22461","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97704,"TargetID":22461,"Directional":true}]},{"ID":6412,"SourceStructureID":483,"TargetStructureID":12208,"Label":"483-12208 via Ribbon Synapse from 97724 -> 22460, 97726 -> 22460, 97729 -> 22460","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97724,"TargetID":22460,"Directional":true},{"SourceID":97726,"TargetID":22460,"Directional":true},{"SourceID":97729,"TargetID":22460,"Directional":true}]},{"ID":6413,"SourceStructureID":483,"TargetStructureID":18282,"Label":"483-18282 via Ribbon Synapse from 6736 -> 29195, 71188 -> 71187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6736,"TargetID":29195,"Directional":true},{"SourceID":71188,"TargetID":71187,"Directional":true}]},{"ID":6414,"SourceStructureID":483,"TargetStructureID":18576,"Label":"483-18576 via Ribbon Synapse from 100555 -> 100554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100555,"TargetID":100554,"Directional":true}]},{"ID":6415,"SourceStructureID":483,"TargetStructureID":20299,"Label":"483-20299 via Ribbon Synapse from 20355 -> 20324, 26821 -> 33598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20355,"TargetID":20324,"Directional":true},{"SourceID":26821,"TargetID":33598,"Directional":true}]},{"ID":6416,"SourceStructureID":483,"TargetStructureID":29198,"Label":"483-29198 via BC Conventional Synapse from 103394 -> 103395, 103430 -> 103431","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103394,"TargetID":103395,"Directional":true},{"SourceID":103430,"TargetID":103431,"Directional":true}]},{"ID":6417,"SourceStructureID":483,"TargetStructureID":29702,"Label":"483-29702 via Ribbon Synapse from 75947 -> 75946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75947,"TargetID":75946,"Directional":true}]},{"ID":6418,"SourceStructureID":483,"TargetStructureID":30526,"Label":"483-30526 via Ribbon Synapse from 6707 -> 30542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6707,"TargetID":30542,"Directional":true}]},{"ID":6419,"SourceStructureID":483,"TargetStructureID":32643,"Label":"483-32643 via Ribbon Synapse from 81493 -> 32649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81493,"TargetID":32649,"Directional":true}]},{"ID":6420,"SourceStructureID":483,"TargetStructureID":34601,"Label":"483-34601 via Ribbon Synapse from 6804 -> 60341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6804,"TargetID":60341,"Directional":true}]},{"ID":6421,"SourceStructureID":483,"TargetStructureID":40010,"Label":"483-40010 via Ribbon Synapse from 14986 -> 40013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14986,"TargetID":40013,"Directional":true}]},{"ID":6422,"SourceStructureID":483,"TargetStructureID":41474,"Label":"483-41474 via BC Conventional Synapse from 103223 -> 103222","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103223,"TargetID":103222,"Directional":true}]},{"ID":6423,"SourceStructureID":483,"TargetStructureID":41474,"Label":"483-41474 via Ribbon Synapse from 94597 -> 103298, 103194 -> 103197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94597,"TargetID":103298,"Directional":true},{"SourceID":103194,"TargetID":103197,"Directional":true}]},{"ID":6424,"SourceStructureID":483,"TargetStructureID":43747,"Label":"483-43747 via Ribbon Synapse from 6735 -> 43749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6735,"TargetID":43749,"Directional":true}]},{"ID":6425,"SourceStructureID":483,"TargetStructureID":46823,"Label":"483-46823 via Ribbon Synapse from 6715 -> 46830, 6717 -> 46827, 6728 -> 46825, 6820 -> 46835, 26829 -> 46834, 46829 -> 46828","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6715,"TargetID":46830,"Directional":true},{"SourceID":6717,"TargetID":46827,"Directional":true},{"SourceID":6728,"TargetID":46825,"Directional":true},{"SourceID":6820,"TargetID":46835,"Directional":true},{"SourceID":26829,"TargetID":46834,"Directional":true},{"SourceID":46829,"TargetID":46828,"Directional":true}]},{"ID":6426,"SourceStructureID":483,"TargetStructureID":49489,"Label":"483-49489 via Ribbon Synapse from 6787 -> 49490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6787,"TargetID":49490,"Directional":true}]},{"ID":6427,"SourceStructureID":483,"TargetStructureID":59130,"Label":"483-59130 via Ribbon Synapse from 23393 -> 59131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23393,"TargetID":59131,"Directional":true}]},{"ID":6428,"SourceStructureID":483,"TargetStructureID":59283,"Label":"483-59283 via Ribbon Synapse from 6705 -> 59284, 15162 -> 59284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6705,"TargetID":59284,"Directional":true},{"SourceID":15162,"TargetID":59284,"Directional":true}]},{"ID":6429,"SourceStructureID":483,"TargetStructureID":59285,"Label":"483-59285 via Ribbon Synapse from 15162 -> 59286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15162,"TargetID":59286,"Directional":true}]},{"ID":6430,"SourceStructureID":483,"TargetStructureID":59289,"Label":"483-59289 via Plaque-like Pre from 6706 -> 59290","Type":"Plaque-like Pre","Directional":true,"Links":[{"SourceID":6706,"TargetID":59290,"Directional":true}]},{"ID":6431,"SourceStructureID":483,"TargetStructureID":59432,"Label":"483-59432 via Ribbon Synapse from 59431 -> 59433","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59431,"TargetID":59433,"Directional":true}]},{"ID":6432,"SourceStructureID":483,"TargetStructureID":59437,"Label":"483-59437 via Ribbon Synapse from 6779 -> 97768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6779,"TargetID":97768,"Directional":true}]},{"ID":6433,"SourceStructureID":483,"TargetStructureID":59439,"Label":"483-59439 via Ribbon Synapse from 6779 -> 59440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6779,"TargetID":59440,"Directional":true}]},{"ID":6434,"SourceStructureID":483,"TargetStructureID":59441,"Label":"483-59441 via Ribbon Synapse from 6778 -> 59442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6778,"TargetID":59442,"Directional":true}]},{"ID":6435,"SourceStructureID":483,"TargetStructureID":60185,"Label":"483-60185 via Ribbon Synapse from 6784 -> 60186","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6784,"TargetID":60186,"Directional":true}]},{"ID":6436,"SourceStructureID":483,"TargetStructureID":60200,"Label":"483-60200 via Ribbon Synapse from 6789 -> 103553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6789,"TargetID":103553,"Directional":true}]},{"ID":6437,"SourceStructureID":483,"TargetStructureID":60201,"Label":"483-60201 via Ribbon Synapse from 6789 -> 60202","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6789,"TargetID":60202,"Directional":true}]},{"ID":6438,"SourceStructureID":483,"TargetStructureID":60223,"Label":"483-60223 via Ribbon Synapse from 6797 -> 60224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6797,"TargetID":60224,"Directional":true}]},{"ID":6439,"SourceStructureID":483,"TargetStructureID":60227,"Label":"483-60227 via Ribbon Synapse from 6803 -> 60228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6803,"TargetID":60228,"Directional":true}]},{"ID":6440,"SourceStructureID":483,"TargetStructureID":60229,"Label":"483-60229 via Ribbon Synapse from 6803 -> 60230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6803,"TargetID":60230,"Directional":true}]},{"ID":6441,"SourceStructureID":483,"TargetStructureID":60337,"Label":"483-60337 via Ribbon Synapse from 6804 -> 60339","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6804,"TargetID":60339,"Directional":true}]},{"ID":6442,"SourceStructureID":483,"TargetStructureID":60352,"Label":"483-60352 via Ribbon Synapse from 6812 -> 60353","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6812,"TargetID":60353,"Directional":true}]},{"ID":6443,"SourceStructureID":483,"TargetStructureID":60358,"Label":"483-60358 via Ribbon Synapse from 60356 -> 60359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60356,"TargetID":60359,"Directional":true}]},{"ID":6444,"SourceStructureID":483,"TargetStructureID":60360,"Label":"483-60360 via Ribbon Synapse from 60356 -> 60361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60356,"TargetID":60361,"Directional":true}]},{"ID":6445,"SourceStructureID":483,"TargetStructureID":60363,"Label":"483-60363 via Ribbon Synapse from 60362 -> 60364","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60362,"TargetID":60364,"Directional":true}]},{"ID":6446,"SourceStructureID":483,"TargetStructureID":61816,"Label":"483-61816 via Ribbon Synapse from 6763 -> 80744, 102803 -> 102806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6763,"TargetID":80744,"Directional":true},{"SourceID":102803,"TargetID":102806,"Directional":true}]},{"ID":6447,"SourceStructureID":483,"TargetStructureID":65267,"Label":"483-65267 via Ribbon Synapse from 26823 -> 69940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26823,"TargetID":69940,"Directional":true}]},{"ID":6448,"SourceStructureID":483,"TargetStructureID":69944,"Label":"483-69944 via BC Conventional Synapse from 69945 -> 69946","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":69945,"TargetID":69946,"Directional":true}]},{"ID":6449,"SourceStructureID":483,"TargetStructureID":70284,"Label":"483-70284 via BC Conventional Synapse from 97738 -> 103457","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97738,"TargetID":103457,"Directional":true}]},{"ID":6450,"SourceStructureID":483,"TargetStructureID":70610,"Label":"483-70610 via Ribbon Synapse from 102812 -> 102818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102812,"TargetID":102818,"Directional":true}]},{"ID":6451,"SourceStructureID":483,"TargetStructureID":71089,"Label":"483-71089 via Ribbon Synapse from 71088 -> 71090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71088,"TargetID":71090,"Directional":true}]},{"ID":6452,"SourceStructureID":483,"TargetStructureID":71098,"Label":"483-71098 via Ribbon Synapse from 71122 -> 71123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71122,"TargetID":71123,"Directional":true}]},{"ID":6453,"SourceStructureID":483,"TargetStructureID":71107,"Label":"483-71107 via Ribbon Synapse from 71109 -> 71111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71109,"TargetID":71111,"Directional":true}]},{"ID":6454,"SourceStructureID":483,"TargetStructureID":71108,"Label":"483-71108 via Ribbon Synapse from 71109 -> 71114","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71109,"TargetID":71114,"Directional":true}]},{"ID":6455,"SourceStructureID":483,"TargetStructureID":71115,"Label":"483-71115 via BC Conventional Synapse from 71116 -> 71117","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71116,"TargetID":71117,"Directional":true}]},{"ID":6456,"SourceStructureID":483,"TargetStructureID":71145,"Label":"483-71145 via Ribbon Synapse from 71144 -> 71146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71144,"TargetID":71146,"Directional":true}]},{"ID":6457,"SourceStructureID":483,"TargetStructureID":71151,"Label":"483-71151 via Ribbon Synapse from 71144 -> 71168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71144,"TargetID":71168,"Directional":true}]},{"ID":6458,"SourceStructureID":483,"TargetStructureID":71153,"Label":"483-71153 via Ribbon Synapse from 71144 -> 71166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71144,"TargetID":71166,"Directional":true}]},{"ID":6459,"SourceStructureID":483,"TargetStructureID":71155,"Label":"483-71155 via Ribbon Synapse from 71144 -> 71167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71144,"TargetID":71167,"Directional":true}]},{"ID":6460,"SourceStructureID":483,"TargetStructureID":71189,"Label":"483-71189 via Ribbon Synapse from 71188 -> 71190, 92322 -> 92323","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71188,"TargetID":71190,"Directional":true},{"SourceID":92322,"TargetID":92323,"Directional":true}]},{"ID":6461,"SourceStructureID":483,"TargetStructureID":71210,"Label":"483-71210 via Ribbon Synapse from 71201 -> 71211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71201,"TargetID":71211,"Directional":true}]},{"ID":6462,"SourceStructureID":483,"TargetStructureID":71213,"Label":"483-71213 via Ribbon Synapse from 71201 -> 71214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71201,"TargetID":71214,"Directional":true}]},{"ID":6463,"SourceStructureID":483,"TargetStructureID":71241,"Label":"483-71241 via BC Conventional Synapse from 71265 -> 71266","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71265,"TargetID":71266,"Directional":true}]},{"ID":6464,"SourceStructureID":483,"TargetStructureID":71243,"Label":"483-71243 via Ribbon Synapse from 71244 -> 71245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71244,"TargetID":71245,"Directional":true}]},{"ID":6465,"SourceStructureID":483,"TargetStructureID":71288,"Label":"483-71288 via Adherens from 71385 -> 71386","Type":"Adherens","Directional":true,"Links":[{"SourceID":71385,"TargetID":71386,"Directional":true}]},{"ID":6466,"SourceStructureID":483,"TargetStructureID":71362,"Label":"483-71362 via Ribbon Synapse from 71368 -> 71375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71368,"TargetID":71375,"Directional":true}]},{"ID":6467,"SourceStructureID":483,"TargetStructureID":71374,"Label":"483-71374 via Ribbon Synapse from 71368 -> 71376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71368,"TargetID":71376,"Directional":true}]},{"ID":6468,"SourceStructureID":483,"TargetStructureID":81489,"Label":"483-81489 via Ribbon Synapse from 81488 -> 81492","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81488,"TargetID":81492,"Directional":true}]},{"ID":6469,"SourceStructureID":483,"TargetStructureID":81497,"Label":"483-81497 via Ribbon Synapse from 81493 -> 81498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81493,"TargetID":81498,"Directional":true}]},{"ID":6470,"SourceStructureID":483,"TargetStructureID":85748,"Label":"483-85748 via BC Conventional Synapse from 85760 -> 85759, 85768 -> 85765, 96632 -> 96633","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85760,"TargetID":85759,"Directional":true},{"SourceID":85768,"TargetID":85765,"Directional":true},{"SourceID":96632,"TargetID":96633,"Directional":true}]},{"ID":6471,"SourceStructureID":483,"TargetStructureID":86634,"Label":"483-86634 via Ribbon Synapse from 86659 -> 102360, 86705 -> 86704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86659,"TargetID":102360,"Directional":true},{"SourceID":86705,"TargetID":86704,"Directional":true}]},{"ID":6472,"SourceStructureID":483,"TargetStructureID":86654,"Label":"483-86654 via Ribbon Synapse from 20340 -> 102366, 26833 -> 86655","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20340,"TargetID":102366,"Directional":true},{"SourceID":26833,"TargetID":86655,"Directional":true}]},{"ID":6473,"SourceStructureID":483,"TargetStructureID":86702,"Label":"483-86702 via BC Conventional Synapse from 102349 -> 102353","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102349,"TargetID":102353,"Directional":true}]},{"ID":6474,"SourceStructureID":483,"TargetStructureID":87145,"Label":"483-87145 via Ribbon Synapse from 81493 -> 103513","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81493,"TargetID":103513,"Directional":true}]},{"ID":6475,"SourceStructureID":483,"TargetStructureID":96595,"Label":"483-96595 via Ribbon Synapse from 81487 -> 96596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81487,"TargetID":96596,"Directional":true}]},{"ID":6476,"SourceStructureID":483,"TargetStructureID":96597,"Label":"483-96597 via Ribbon Synapse from 81487 -> 96598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81487,"TargetID":96598,"Directional":true}]},{"ID":6477,"SourceStructureID":483,"TargetStructureID":96629,"Label":"483-96629 via Ribbon Synapse from 96628 -> 96630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96628,"TargetID":96630,"Directional":true}]},{"ID":6478,"SourceStructureID":483,"TargetStructureID":96634,"Label":"483-96634 via BC Conventional Synapse from 92339 -> 96635","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92339,"TargetID":96635,"Directional":true}]},{"ID":6479,"SourceStructureID":483,"TargetStructureID":96642,"Label":"483-96642 via Ribbon Synapse from 92350 -> 103545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92350,"TargetID":103545,"Directional":true}]},{"ID":6480,"SourceStructureID":483,"TargetStructureID":96644,"Label":"483-96644 via Ribbon Synapse from 92350 -> 96645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92350,"TargetID":96645,"Directional":true}]},{"ID":6481,"SourceStructureID":483,"TargetStructureID":96649,"Label":"483-96649 via Ribbon Synapse from 92346 -> 96651, 96665 -> 96666","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92346,"TargetID":96651,"Directional":true},{"SourceID":96665,"TargetID":96666,"Directional":true}]},{"ID":6482,"SourceStructureID":483,"TargetStructureID":96667,"Label":"483-96667 via Ribbon Synapse from 96665 -> 96670","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96665,"TargetID":96670,"Directional":true}]},{"ID":6483,"SourceStructureID":483,"TargetStructureID":96668,"Label":"483-96668 via Ribbon Synapse from 96665 -> 96669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96665,"TargetID":96669,"Directional":true}]},{"ID":6484,"SourceStructureID":483,"TargetStructureID":97674,"Label":"483-97674 via Ribbon Synapse from 97673 -> 97675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97673,"TargetID":97675,"Directional":true}]},{"ID":6485,"SourceStructureID":483,"TargetStructureID":101187,"Label":"483-101187 via Ribbon Synapse from 92326 -> 103495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92326,"TargetID":103495,"Directional":true}]},{"ID":6486,"SourceStructureID":483,"TargetStructureID":102042,"Label":"483-102042 via Ribbon Synapse from 6711 -> 102046, 26827 -> 102045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6711,"TargetID":102046,"Directional":true},{"SourceID":26827,"TargetID":102045,"Directional":true}]},{"ID":6487,"SourceStructureID":483,"TargetStructureID":102051,"Label":"483-102051 via Ribbon Synapse from 26828 -> 102052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26828,"TargetID":102052,"Directional":true}]},{"ID":6488,"SourceStructureID":483,"TargetStructureID":102053,"Label":"483-102053 via Ribbon Synapse from 102050 -> 102054","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102050,"TargetID":102054,"Directional":true}]},{"ID":6489,"SourceStructureID":483,"TargetStructureID":102055,"Label":"483-102055 via Ribbon Synapse from 26828 -> 102056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26828,"TargetID":102056,"Directional":true}]},{"ID":6490,"SourceStructureID":483,"TargetStructureID":102059,"Label":"483-102059 via Ribbon Synapse from 6820 -> 102060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6820,"TargetID":102060,"Directional":true}]},{"ID":6491,"SourceStructureID":483,"TargetStructureID":102063,"Label":"483-102063 via BC Conventional Synapse from 102062 -> 102064","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102062,"TargetID":102064,"Directional":true}]},{"ID":6492,"SourceStructureID":483,"TargetStructureID":102067,"Label":"483-102067 via Ribbon Synapse from 26831 -> 102069","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26831,"TargetID":102069,"Directional":true}]},{"ID":6493,"SourceStructureID":483,"TargetStructureID":102070,"Label":"483-102070 via Ribbon Synapse from 6825 -> 102071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6825,"TargetID":102071,"Directional":true}]},{"ID":6494,"SourceStructureID":483,"TargetStructureID":102072,"Label":"483-102072 via Ribbon Synapse from 6826 -> 102073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6826,"TargetID":102073,"Directional":true}]},{"ID":6495,"SourceStructureID":483,"TargetStructureID":102078,"Label":"483-102078 via Ribbon Synapse from 6849 -> 102081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6849,"TargetID":102081,"Directional":true}]},{"ID":6496,"SourceStructureID":483,"TargetStructureID":102079,"Label":"483-102079 via Ribbon Synapse from 6849 -> 102080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6849,"TargetID":102080,"Directional":true}]},{"ID":6497,"SourceStructureID":483,"TargetStructureID":102085,"Label":"483-102085 via BC Conventional Synapse from 102084 -> 102086","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102084,"TargetID":102086,"Directional":true}]},{"ID":6498,"SourceStructureID":483,"TargetStructureID":102087,"Label":"483-102087 via BC Conventional Synapse from 102089 -> 102088","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102089,"TargetID":102088,"Directional":true}]},{"ID":6499,"SourceStructureID":483,"TargetStructureID":102090,"Label":"483-102090 via Ribbon Synapse from 6828 -> 102091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6828,"TargetID":102091,"Directional":true}]},{"ID":6500,"SourceStructureID":483,"TargetStructureID":102096,"Label":"483-102096 via Ribbon Synapse from 102095 -> 134079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102095,"TargetID":134079,"Directional":true}]},{"ID":6501,"SourceStructureID":483,"TargetStructureID":102101,"Label":"483-102101 via Ribbon Synapse from 102103 -> 102102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102103,"TargetID":102102,"Directional":true}]},{"ID":6502,"SourceStructureID":483,"TargetStructureID":102113,"Label":"483-102113 via Ribbon Synapse from 6847 -> 102114","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6847,"TargetID":102114,"Directional":true}]},{"ID":6503,"SourceStructureID":483,"TargetStructureID":102118,"Label":"483-102118 via Ribbon Synapse from 58611 -> 102120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58611,"TargetID":102120,"Directional":true}]},{"ID":6504,"SourceStructureID":483,"TargetStructureID":102122,"Label":"483-102122 via Ribbon Synapse from 58611 -> 102123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58611,"TargetID":102123,"Directional":true}]},{"ID":6505,"SourceStructureID":483,"TargetStructureID":102129,"Label":"483-102129 via Ribbon Synapse from 58613 -> 102134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58613,"TargetID":102134,"Directional":true}]},{"ID":6506,"SourceStructureID":483,"TargetStructureID":102135,"Label":"483-102135 via Ribbon Synapse from 58612 -> 102137","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58612,"TargetID":102137,"Directional":true}]},{"ID":6507,"SourceStructureID":483,"TargetStructureID":102136,"Label":"483-102136 via Ribbon Synapse from 58612 -> 102138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58612,"TargetID":102138,"Directional":true}]},{"ID":6508,"SourceStructureID":483,"TargetStructureID":102147,"Label":"483-102147 via BC Conventional Synapse from 102146 -> 102148","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102146,"TargetID":102148,"Directional":true}]},{"ID":6509,"SourceStructureID":483,"TargetStructureID":102153,"Label":"483-102153 via Ribbon Synapse from 6832 -> 102155","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6832,"TargetID":102155,"Directional":true}]},{"ID":6510,"SourceStructureID":483,"TargetStructureID":102179,"Label":"483-102179 via Ribbon Synapse from 6842 -> 102180","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6842,"TargetID":102180,"Directional":true}]},{"ID":6511,"SourceStructureID":483,"TargetStructureID":102182,"Label":"483-102182 via Ribbon Synapse from 6837 -> 102183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6837,"TargetID":102183,"Directional":true}]},{"ID":6512,"SourceStructureID":483,"TargetStructureID":102184,"Label":"483-102184 via Ribbon Synapse from 6837 -> 102185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6837,"TargetID":102185,"Directional":true}]},{"ID":6513,"SourceStructureID":483,"TargetStructureID":102187,"Label":"483-102187 via Ribbon Synapse from 6836 -> 102188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6836,"TargetID":102188,"Directional":true}]},{"ID":6514,"SourceStructureID":483,"TargetStructureID":102189,"Label":"483-102189 via BC Conventional Synapse from 102166 -> 102190","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102166,"TargetID":102190,"Directional":true}]},{"ID":6515,"SourceStructureID":483,"TargetStructureID":102196,"Label":"483-102196 via Ribbon Synapse from 26796 -> 102199","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26796,"TargetID":102199,"Directional":true}]},{"ID":6516,"SourceStructureID":483,"TargetStructureID":102202,"Label":"483-102202 via Ribbon Synapse from 26796 -> 102203, 102214 -> 102215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26796,"TargetID":102203,"Directional":true},{"SourceID":102214,"TargetID":102215,"Directional":true}]},{"ID":6517,"SourceStructureID":483,"TargetStructureID":102216,"Label":"483-102216 via Ribbon Synapse from 102214 -> 102217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102214,"TargetID":102217,"Directional":true}]},{"ID":6518,"SourceStructureID":483,"TargetStructureID":102218,"Label":"483-102218 via Ribbon Synapse from 26793 -> 102219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26793,"TargetID":102219,"Directional":true}]},{"ID":6519,"SourceStructureID":483,"TargetStructureID":102226,"Label":"483-102226 via Ribbon Synapse from 19999 -> 102227","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19999,"TargetID":102227,"Directional":true}]},{"ID":6520,"SourceStructureID":483,"TargetStructureID":102232,"Label":"483-102232 via BC Conventional Synapse from 102234 -> 102233","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102234,"TargetID":102233,"Directional":true}]},{"ID":6521,"SourceStructureID":483,"TargetStructureID":102235,"Label":"483-102235 via Ribbon Synapse from 102212 -> 102239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102212,"TargetID":102239,"Directional":true}]},{"ID":6522,"SourceStructureID":483,"TargetStructureID":102237,"Label":"483-102237 via Ribbon Synapse from 102212 -> 102240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102212,"TargetID":102240,"Directional":true}]},{"ID":6523,"SourceStructureID":483,"TargetStructureID":102241,"Label":"483-102241 via Ribbon Synapse from 102212 -> 102242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102212,"TargetID":102242,"Directional":true}]},{"ID":6524,"SourceStructureID":483,"TargetStructureID":102244,"Label":"483-102244 via BC Conventional Synapse from 102243 -> 102245","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102243,"TargetID":102245,"Directional":true}]},{"ID":6525,"SourceStructureID":483,"TargetStructureID":102248,"Label":"483-102248 via Ribbon Synapse from 102247 -> 102249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102247,"TargetID":102249,"Directional":true}]},{"ID":6526,"SourceStructureID":483,"TargetStructureID":102250,"Label":"483-102250 via BC Conventional Synapse from 102253 -> 102252","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102253,"TargetID":102252,"Directional":true}]},{"ID":6527,"SourceStructureID":483,"TargetStructureID":102257,"Label":"483-102257 via BC Conventional Synapse from 102256 -> 102258","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102256,"TargetID":102258,"Directional":true}]},{"ID":6528,"SourceStructureID":483,"TargetStructureID":102259,"Label":"483-102259 via Ribbon Synapse from 26795 -> 102260","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26795,"TargetID":102260,"Directional":true}]},{"ID":6529,"SourceStructureID":483,"TargetStructureID":102262,"Label":"483-102262 via Ribbon Synapse from 26841 -> 102263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26841,"TargetID":102263,"Directional":true}]},{"ID":6530,"SourceStructureID":483,"TargetStructureID":102264,"Label":"483-102264 via Ribbon Synapse from 102266 -> 102265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102266,"TargetID":102265,"Directional":true}]},{"ID":6531,"SourceStructureID":483,"TargetStructureID":102267,"Label":"483-102267 via Ribbon Synapse from 102266 -> 102268","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102266,"TargetID":102268,"Directional":true}]},{"ID":6532,"SourceStructureID":483,"TargetStructureID":102280,"Label":"483-102280 via BC Conventional Synapse from 102279 -> 102281","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102279,"TargetID":102281,"Directional":true}]},{"ID":6533,"SourceStructureID":483,"TargetStructureID":102282,"Label":"483-102282 via Ribbon Synapse from 26801 -> 102283","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26801,"TargetID":102283,"Directional":true}]},{"ID":6534,"SourceStructureID":483,"TargetStructureID":102288,"Label":"483-102288 via Ribbon Synapse from 26810 -> 102289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26810,"TargetID":102289,"Directional":true}]},{"ID":6535,"SourceStructureID":483,"TargetStructureID":102290,"Label":"483-102290 via Ribbon Synapse from 26810 -> 102291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26810,"TargetID":102291,"Directional":true}]},{"ID":6536,"SourceStructureID":483,"TargetStructureID":102293,"Label":"483-102293 via Ribbon Synapse from 26802 -> 102294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26802,"TargetID":102294,"Directional":true}]},{"ID":6537,"SourceStructureID":483,"TargetStructureID":102298,"Label":"483-102298 via BC Conventional Synapse from 102300 -> 102299","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102300,"TargetID":102299,"Directional":true}]},{"ID":6538,"SourceStructureID":483,"TargetStructureID":102301,"Label":"483-102301 via BC Conventional Synapse from 102305 -> 102304","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102305,"TargetID":102304,"Directional":true}]},{"ID":6539,"SourceStructureID":483,"TargetStructureID":102302,"Label":"483-102302 via BC Conventional Synapse from 102306 -> 102303","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102306,"TargetID":102303,"Directional":true}]},{"ID":6540,"SourceStructureID":483,"TargetStructureID":102312,"Label":"483-102312 via Ribbon Synapse from 38908 -> 102313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38908,"TargetID":102313,"Directional":true}]},{"ID":6541,"SourceStructureID":483,"TargetStructureID":102318,"Label":"483-102318 via BC Conventional Synapse from 102320 -> 102319","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102320,"TargetID":102319,"Directional":true}]},{"ID":6542,"SourceStructureID":483,"TargetStructureID":102323,"Label":"483-102323 via Ribbon Synapse from 26815 -> 102324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26815,"TargetID":102324,"Directional":true}]},{"ID":6543,"SourceStructureID":483,"TargetStructureID":102327,"Label":"483-102327 via BC Conventional Synapse from 102329 -> 102328","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102329,"TargetID":102328,"Directional":true}]},{"ID":6544,"SourceStructureID":483,"TargetStructureID":102330,"Label":"483-102330 via BC Conventional Synapse from 102332 -> 102331","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102332,"TargetID":102331,"Directional":true}]},{"ID":6545,"SourceStructureID":483,"TargetStructureID":102343,"Label":"483-102343 via Ribbon Synapse from 26833 -> 102344","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26833,"TargetID":102344,"Directional":true}]},{"ID":6546,"SourceStructureID":483,"TargetStructureID":102358,"Label":"483-102358 via BC Conventional Synapse from 102357 -> 102359","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102357,"TargetID":102359,"Directional":true}]},{"ID":6547,"SourceStructureID":483,"TargetStructureID":102362,"Label":"483-102362 via Ribbon Synapse from 20341 -> 102370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20341,"TargetID":102370,"Directional":true}]},{"ID":6548,"SourceStructureID":483,"TargetStructureID":102364,"Label":"483-102364 via Ribbon Synapse from 20340 -> 102365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20340,"TargetID":102365,"Directional":true}]},{"ID":6549,"SourceStructureID":483,"TargetStructureID":102368,"Label":"483-102368 via Ribbon Synapse from 20341 -> 102369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20341,"TargetID":102369,"Directional":true}]},{"ID":6550,"SourceStructureID":483,"TargetStructureID":102371,"Label":"483-102371 via Ribbon Synapse from 26837 -> 102372","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26837,"TargetID":102372,"Directional":true}]},{"ID":6551,"SourceStructureID":483,"TargetStructureID":102387,"Label":"483-102387 via Ribbon Synapse from 26820 -> 102388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26820,"TargetID":102388,"Directional":true}]},{"ID":6552,"SourceStructureID":483,"TargetStructureID":102391,"Label":"483-102391 via Ribbon Synapse from 26820 -> 102392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26820,"TargetID":102392,"Directional":true}]},{"ID":6553,"SourceStructureID":483,"TargetStructureID":102403,"Label":"483-102403 via Ribbon Synapse from 20345 -> 102404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20345,"TargetID":102404,"Directional":true}]},{"ID":6554,"SourceStructureID":483,"TargetStructureID":102408,"Label":"483-102408 via BC Conventional Synapse from 20350 -> 102409","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":20350,"TargetID":102409,"Directional":true}]},{"ID":6555,"SourceStructureID":483,"TargetStructureID":102410,"Label":"483-102410 via BC Conventional Synapse from 102407 -> 102411","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102407,"TargetID":102411,"Directional":true}]},{"ID":6556,"SourceStructureID":483,"TargetStructureID":102423,"Label":"483-102423 via BC Conventional Synapse from 102548 -> 102424","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102548,"TargetID":102424,"Directional":true}]},{"ID":6557,"SourceStructureID":483,"TargetStructureID":102425,"Label":"483-102425 via Ribbon Synapse from 26821 -> 102550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26821,"TargetID":102550,"Directional":true}]},{"ID":6558,"SourceStructureID":483,"TargetStructureID":102435,"Label":"483-102435 via Ribbon Synapse from 20392 -> 102436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20392,"TargetID":102436,"Directional":true}]},{"ID":6559,"SourceStructureID":483,"TargetStructureID":102443,"Label":"483-102443 via BC Conventional Synapse from 102434 -> 102445","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102434,"TargetID":102445,"Directional":true}]},{"ID":6560,"SourceStructureID":483,"TargetStructureID":102449,"Label":"483-102449 via Ribbon Synapse from 20395 -> 102450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20395,"TargetID":102450,"Directional":true}]},{"ID":6561,"SourceStructureID":483,"TargetStructureID":102451,"Label":"483-102451 via Ribbon Synapse from 20394 -> 102455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20394,"TargetID":102455,"Directional":true}]},{"ID":6562,"SourceStructureID":483,"TargetStructureID":102453,"Label":"483-102453 via Ribbon Synapse from 20393 -> 102454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20393,"TargetID":102454,"Directional":true}]},{"ID":6563,"SourceStructureID":483,"TargetStructureID":102470,"Label":"483-102470 via Ribbon Synapse from 26819 -> 102472, 102469 -> 102472","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26819,"TargetID":102472,"Directional":true},{"SourceID":102469,"TargetID":102472,"Directional":true}]},{"ID":6564,"SourceStructureID":483,"TargetStructureID":102473,"Label":"483-102473 via Ribbon Synapse from 102469 -> 102474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102469,"TargetID":102474,"Directional":true}]},{"ID":6565,"SourceStructureID":483,"TargetStructureID":102479,"Label":"483-102479 via Ribbon Synapse from 26817 -> 102481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26817,"TargetID":102481,"Directional":true}]},{"ID":6566,"SourceStructureID":483,"TargetStructureID":102484,"Label":"483-102484 via Ribbon Synapse from 26817 -> 102485","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26817,"TargetID":102485,"Directional":true}]},{"ID":6567,"SourceStructureID":483,"TargetStructureID":102487,"Label":"483-102487 via Ribbon Synapse from 26783 -> 102488","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26783,"TargetID":102488,"Directional":true}]},{"ID":6568,"SourceStructureID":483,"TargetStructureID":102491,"Label":"483-102491 via Ribbon Synapse from 26783 -> 102492","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26783,"TargetID":102492,"Directional":true}]},{"ID":6569,"SourceStructureID":483,"TargetStructureID":102493,"Label":"483-102493 via Ribbon Synapse from 26783 -> 102495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26783,"TargetID":102495,"Directional":true}]},{"ID":6570,"SourceStructureID":483,"TargetStructureID":102496,"Label":"483-102496 via Ribbon Synapse from 26782 -> 102497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26782,"TargetID":102497,"Directional":true}]},{"ID":6571,"SourceStructureID":483,"TargetStructureID":102499,"Label":"483-102499 via Ribbon Synapse from 26782 -> 102500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26782,"TargetID":102500,"Directional":true}]},{"ID":6572,"SourceStructureID":483,"TargetStructureID":102502,"Label":"483-102502 via BC Conventional Synapse from 102501 -> 102503","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102501,"TargetID":102503,"Directional":true}]},{"ID":6573,"SourceStructureID":483,"TargetStructureID":102511,"Label":"483-102511 via Ribbon Synapse from 20361 -> 102512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20361,"TargetID":102512,"Directional":true}]},{"ID":6574,"SourceStructureID":483,"TargetStructureID":102513,"Label":"483-102513 via Ribbon Synapse from 20361 -> 102514","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20361,"TargetID":102514,"Directional":true}]},{"ID":6575,"SourceStructureID":483,"TargetStructureID":102524,"Label":"483-102524 via Ribbon Synapse from 75947 -> 102525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75947,"TargetID":102525,"Directional":true}]},{"ID":6576,"SourceStructureID":483,"TargetStructureID":102527,"Label":"483-102527 via BC Conventional Synapse from 102526 -> 102528","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102526,"TargetID":102528,"Directional":true}]},{"ID":6577,"SourceStructureID":483,"TargetStructureID":102527,"Label":"483-102527 via Ribbon Synapse from 94710 -> 102539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94710,"TargetID":102539,"Directional":true}]},{"ID":6578,"SourceStructureID":483,"TargetStructureID":102529,"Label":"483-102529 via Ribbon Synapse from 20358 -> 102530","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20358,"TargetID":102530,"Directional":true}]},{"ID":6579,"SourceStructureID":483,"TargetStructureID":102531,"Label":"483-102531 via Ribbon Synapse from 20358 -> 102532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20358,"TargetID":102532,"Directional":true}]},{"ID":6580,"SourceStructureID":483,"TargetStructureID":102540,"Label":"483-102540 via Ribbon Synapse from 94710 -> 102541","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94710,"TargetID":102541,"Directional":true}]},{"ID":6581,"SourceStructureID":483,"TargetStructureID":102545,"Label":"483-102545 via Ribbon Synapse from 26819 -> 102546","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26819,"TargetID":102546,"Directional":true}]},{"ID":6582,"SourceStructureID":483,"TargetStructureID":102555,"Label":"483-102555 via Ribbon Synapse from 6708 -> 102560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6708,"TargetID":102560,"Directional":true}]},{"ID":6583,"SourceStructureID":483,"TargetStructureID":102565,"Label":"483-102565 via Ribbon Synapse from 6714 -> 102567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6714,"TargetID":102567,"Directional":true}]},{"ID":6584,"SourceStructureID":483,"TargetStructureID":102568,"Label":"483-102568 via Ribbon Synapse from 6714 -> 102569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6714,"TargetID":102569,"Directional":true}]},{"ID":6585,"SourceStructureID":483,"TargetStructureID":102571,"Label":"483-102571 via BC Conventional Synapse from 102570 -> 102572","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102570,"TargetID":102572,"Directional":true}]},{"ID":6586,"SourceStructureID":483,"TargetStructureID":102575,"Label":"483-102575 via BC Conventional Synapse from 102574 -> 102576","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102574,"TargetID":102576,"Directional":true}]},{"ID":6587,"SourceStructureID":483,"TargetStructureID":102582,"Label":"483-102582 via Ribbon Synapse from 134008 -> 102583","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134008,"TargetID":102583,"Directional":true}]},{"ID":6588,"SourceStructureID":483,"TargetStructureID":102590,"Label":"483-102590 via Ribbon Synapse from 6721 -> 102591","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6721,"TargetID":102591,"Directional":true}]},{"ID":6589,"SourceStructureID":483,"TargetStructureID":102593,"Label":"483-102593 via BC Conventional Synapse from 102592 -> 102594","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102592,"TargetID":102594,"Directional":true}]},{"ID":6590,"SourceStructureID":483,"TargetStructureID":102596,"Label":"483-102596 via BC Conventional Synapse from 102595 -> 102597","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102595,"TargetID":102597,"Directional":true}]},{"ID":6591,"SourceStructureID":483,"TargetStructureID":102603,"Label":"483-102603 via Ribbon Synapse from 6720 -> 102606","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6720,"TargetID":102606,"Directional":true}]},{"ID":6592,"SourceStructureID":483,"TargetStructureID":102607,"Label":"483-102607 via Ribbon Synapse from 6720 -> 102611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6720,"TargetID":102611,"Directional":true}]},{"ID":6593,"SourceStructureID":483,"TargetStructureID":102626,"Label":"483-102626 via Ribbon Synapse from 102625 -> 102627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102625,"TargetID":102627,"Directional":true}]},{"ID":6594,"SourceStructureID":483,"TargetStructureID":102631,"Label":"483-102631 via Ribbon Synapse from 102622 -> 102632","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102622,"TargetID":102632,"Directional":true}]},{"ID":6595,"SourceStructureID":483,"TargetStructureID":102651,"Label":"483-102651 via Ribbon Synapse from 94568 -> 102652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94568,"TargetID":102652,"Directional":true}]},{"ID":6596,"SourceStructureID":483,"TargetStructureID":102691,"Label":"483-102691 via Ribbon Synapse from 26784 -> 102692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26784,"TargetID":102692,"Directional":true}]},{"ID":6597,"SourceStructureID":483,"TargetStructureID":102720,"Label":"483-102720 via Ribbon Synapse from 102803 -> 102809","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102803,"TargetID":102809,"Directional":true}]},{"ID":6598,"SourceStructureID":483,"TargetStructureID":102726,"Label":"483-102726 via Ribbon Synapse from 26786 -> 102732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26786,"TargetID":102732,"Directional":true}]},{"ID":6599,"SourceStructureID":483,"TargetStructureID":102734,"Label":"483-102734 via BC Conventional Synapse from 102733 -> 102735","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102733,"TargetID":102735,"Directional":true}]},{"ID":6600,"SourceStructureID":483,"TargetStructureID":102741,"Label":"483-102741 via Ribbon Synapse from 6763 -> 102743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6763,"TargetID":102743,"Directional":true}]},{"ID":6601,"SourceStructureID":483,"TargetStructureID":102748,"Label":"483-102748 via Ribbon Synapse from 6761 -> 102765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6761,"TargetID":102765,"Directional":true}]},{"ID":6602,"SourceStructureID":483,"TargetStructureID":102773,"Label":"483-102773 via BC Conventional Synapse from 102771 -> 102774","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102771,"TargetID":102774,"Directional":true}]},{"ID":6603,"SourceStructureID":483,"TargetStructureID":102807,"Label":"483-102807 via Ribbon Synapse from 102803 -> 102808, 102812 -> 102817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102803,"TargetID":102808,"Directional":true},{"SourceID":102812,"TargetID":102817,"Directional":true}]},{"ID":6604,"SourceStructureID":483,"TargetStructureID":102810,"Label":"483-102810 via Ribbon Synapse from 102803 -> 102811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102803,"TargetID":102811,"Directional":true}]},{"ID":6605,"SourceStructureID":483,"TargetStructureID":102813,"Label":"483-102813 via Ribbon Synapse from 102812 -> 102814","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102812,"TargetID":102814,"Directional":true}]},{"ID":6606,"SourceStructureID":483,"TargetStructureID":102825,"Label":"483-102825 via Ribbon Synapse from 102824 -> 102826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102824,"TargetID":102826,"Directional":true}]},{"ID":6607,"SourceStructureID":483,"TargetStructureID":102828,"Label":"483-102828 via BC Conventional Synapse from 102827 -> 102829","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102827,"TargetID":102829,"Directional":true}]},{"ID":6608,"SourceStructureID":483,"TargetStructureID":102838,"Label":"483-102838 via Ribbon Synapse from 31020 -> 102841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31020,"TargetID":102841,"Directional":true}]},{"ID":6609,"SourceStructureID":483,"TargetStructureID":102845,"Label":"483-102845 via Ribbon Synapse from 31020 -> 102847","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31020,"TargetID":102847,"Directional":true}]},{"ID":6610,"SourceStructureID":483,"TargetStructureID":102854,"Label":"483-102854 via BC Conventional Synapse from 102853 -> 102855","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102853,"TargetID":102855,"Directional":true}]},{"ID":6611,"SourceStructureID":483,"TargetStructureID":102856,"Label":"483-102856 via Ribbon Synapse from 102843 -> 102857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102843,"TargetID":102857,"Directional":true}]},{"ID":6612,"SourceStructureID":483,"TargetStructureID":102863,"Label":"483-102863 via Ribbon Synapse from 92041 -> 102866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92041,"TargetID":102866,"Directional":true}]},{"ID":6613,"SourceStructureID":483,"TargetStructureID":102867,"Label":"483-102867 via Ribbon Synapse from 92041 -> 102868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92041,"TargetID":102868,"Directional":true}]},{"ID":6614,"SourceStructureID":483,"TargetStructureID":102869,"Label":"483-102869 via Ribbon Synapse from 92041 -> 102870","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92041,"TargetID":102870,"Directional":true}]},{"ID":6615,"SourceStructureID":483,"TargetStructureID":102879,"Label":"483-102879 via Ribbon Synapse from 31021 -> 102887, 31022 -> 102881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31021,"TargetID":102887,"Directional":true},{"SourceID":31022,"TargetID":102881,"Directional":true}]},{"ID":6616,"SourceStructureID":483,"TargetStructureID":102884,"Label":"483-102884 via Ribbon Synapse from 31021 -> 102886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31021,"TargetID":102886,"Directional":true}]},{"ID":6617,"SourceStructureID":483,"TargetStructureID":102888,"Label":"483-102888 via Ribbon Synapse from 31021 -> 102889","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31021,"TargetID":102889,"Directional":true}]},{"ID":6618,"SourceStructureID":483,"TargetStructureID":102892,"Label":"483-102892 via Ribbon Synapse from 31022 -> 102893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31022,"TargetID":102893,"Directional":true}]},{"ID":6619,"SourceStructureID":483,"TargetStructureID":103056,"Label":"483-103056 via Ribbon Synapse from 31023 -> 103057","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31023,"TargetID":103057,"Directional":true}]},{"ID":6620,"SourceStructureID":483,"TargetStructureID":103058,"Label":"483-103058 via Ribbon Synapse from 31023 -> 103059, 103081 -> 103082","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31023,"TargetID":103059,"Directional":true},{"SourceID":103081,"TargetID":103082,"Directional":true}]},{"ID":6621,"SourceStructureID":483,"TargetStructureID":103060,"Label":"483-103060 via Ribbon Synapse from 31023 -> 103061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31023,"TargetID":103061,"Directional":true}]},{"ID":6622,"SourceStructureID":483,"TargetStructureID":103067,"Label":"483-103067 via BC Conventional Synapse from 103066 -> 103068","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103066,"TargetID":103068,"Directional":true}]},{"ID":6623,"SourceStructureID":483,"TargetStructureID":103072,"Label":"483-103072 via BC Conventional Synapse from 103074 -> 103073","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103074,"TargetID":103073,"Directional":true}]},{"ID":6624,"SourceStructureID":483,"TargetStructureID":103079,"Label":"483-103079 via Ribbon Synapse from 103078 -> 103080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103078,"TargetID":103080,"Directional":true}]},{"ID":6625,"SourceStructureID":483,"TargetStructureID":103084,"Label":"483-103084 via BC Conventional Synapse from 103092 -> 103093","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103092,"TargetID":103093,"Directional":true}]},{"ID":6626,"SourceStructureID":483,"TargetStructureID":103086,"Label":"483-103086 via Ribbon Synapse from 6725 -> 103087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6725,"TargetID":103087,"Directional":true}]},{"ID":6627,"SourceStructureID":483,"TargetStructureID":103097,"Label":"483-103097 via Ribbon Synapse from 6728 -> 103099","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6728,"TargetID":103099,"Directional":true}]},{"ID":6628,"SourceStructureID":483,"TargetStructureID":103102,"Label":"483-103102 via Ribbon Synapse from 6737 -> 103104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6737,"TargetID":103104,"Directional":true}]},{"ID":6629,"SourceStructureID":483,"TargetStructureID":103105,"Label":"483-103105 via Ribbon Synapse from 6737 -> 103107","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6737,"TargetID":103107,"Directional":true}]},{"ID":6630,"SourceStructureID":483,"TargetStructureID":103108,"Label":"483-103108 via Ribbon Synapse from 6729 -> 103109","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6729,"TargetID":103109,"Directional":true}]},{"ID":6631,"SourceStructureID":483,"TargetStructureID":103110,"Label":"483-103110 via Ribbon Synapse from 6729 -> 103111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6729,"TargetID":103111,"Directional":true}]},{"ID":6632,"SourceStructureID":483,"TargetStructureID":103116,"Label":"483-103116 via BC Conventional Synapse from 103115 -> 103117","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103115,"TargetID":103117,"Directional":true}]},{"ID":6633,"SourceStructureID":483,"TargetStructureID":103122,"Label":"483-103122 via Ribbon Synapse from 6742 -> 103123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6742,"TargetID":103123,"Directional":true}]},{"ID":6634,"SourceStructureID":483,"TargetStructureID":103126,"Label":"483-103126 via BC Conventional Synapse from 103134 -> 103127","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103134,"TargetID":103127,"Directional":true}]},{"ID":6635,"SourceStructureID":483,"TargetStructureID":103136,"Label":"483-103136 via BC Conventional Synapse from 103135 -> 103137","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103135,"TargetID":103137,"Directional":true}]},{"ID":6636,"SourceStructureID":483,"TargetStructureID":103136,"Label":"483-103136 via Ribbon Synapse from 28763 -> 103138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28763,"TargetID":103138,"Directional":true}]},{"ID":6637,"SourceStructureID":483,"TargetStructureID":103152,"Label":"483-103152 via BC Conventional Synapse from 103151 -> 103153","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103151,"TargetID":103153,"Directional":true}]},{"ID":6638,"SourceStructureID":483,"TargetStructureID":103156,"Label":"483-103156 via Ribbon Synapse from 103161 -> 103157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103161,"TargetID":103157,"Directional":true}]},{"ID":6639,"SourceStructureID":483,"TargetStructureID":103158,"Label":"483-103158 via Ribbon Synapse from 103161 -> 103159","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103161,"TargetID":103159,"Directional":true}]},{"ID":6640,"SourceStructureID":483,"TargetStructureID":103165,"Label":"483-103165 via Ribbon Synapse from 103161 -> 103166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103161,"TargetID":103166,"Directional":true}]},{"ID":6641,"SourceStructureID":483,"TargetStructureID":103173,"Label":"483-103173 via BC Conventional Synapse from 103172 -> 103175","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103172,"TargetID":103175,"Directional":true}]},{"ID":6642,"SourceStructureID":483,"TargetStructureID":103179,"Label":"483-103179 via BC Conventional Synapse from 103177 -> 103181","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103177,"TargetID":103181,"Directional":true}]},{"ID":6643,"SourceStructureID":483,"TargetStructureID":103192,"Label":"483-103192 via Ribbon Synapse from 28764 -> 103193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28764,"TargetID":103193,"Directional":true}]},{"ID":6644,"SourceStructureID":483,"TargetStructureID":103195,"Label":"483-103195 via Ribbon Synapse from 103194 -> 103196","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103194,"TargetID":103196,"Directional":true}]},{"ID":6645,"SourceStructureID":483,"TargetStructureID":103203,"Label":"483-103203 via Ribbon Synapse from 28765 -> 103214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28765,"TargetID":103214,"Directional":true}]},{"ID":6646,"SourceStructureID":483,"TargetStructureID":103228,"Label":"483-103228 via Ribbon Synapse from 28767 -> 103229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28767,"TargetID":103229,"Directional":true}]},{"ID":6647,"SourceStructureID":483,"TargetStructureID":103240,"Label":"483-103240 via Ribbon Synapse from 28772 -> 103253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28772,"TargetID":103253,"Directional":true}]},{"ID":6648,"SourceStructureID":483,"TargetStructureID":103242,"Label":"483-103242 via Ribbon Synapse from 28770 -> 103243","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28770,"TargetID":103243,"Directional":true}]},{"ID":6649,"SourceStructureID":483,"TargetStructureID":103272,"Label":"483-103272 via Ribbon Synapse from 94594 -> 103273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94594,"TargetID":103273,"Directional":true}]},{"ID":6650,"SourceStructureID":483,"TargetStructureID":103275,"Label":"483-103275 via Ribbon Synapse from 94594 -> 103276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94594,"TargetID":103276,"Directional":true}]},{"ID":6651,"SourceStructureID":483,"TargetStructureID":103287,"Label":"483-103287 via Ribbon Synapse from 103290 -> 103288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103290,"TargetID":103288,"Directional":true}]},{"ID":6652,"SourceStructureID":483,"TargetStructureID":103291,"Label":"483-103291 via Ribbon Synapse from 103290 -> 103292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103290,"TargetID":103292,"Directional":true}]},{"ID":6653,"SourceStructureID":483,"TargetStructureID":103296,"Label":"483-103296 via Ribbon Synapse from 94596 -> 103297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94596,"TargetID":103297,"Directional":true}]},{"ID":6654,"SourceStructureID":483,"TargetStructureID":103302,"Label":"483-103302 via BC Conventional Synapse from 103301 -> 103303","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103301,"TargetID":103303,"Directional":true}]},{"ID":6655,"SourceStructureID":483,"TargetStructureID":103305,"Label":"483-103305 via Ribbon Synapse from 94595 -> 103306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94595,"TargetID":103306,"Directional":true}]},{"ID":6656,"SourceStructureID":483,"TargetStructureID":103307,"Label":"483-103307 via Ribbon Synapse from 94595 -> 103308","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94595,"TargetID":103308,"Directional":true}]},{"ID":6657,"SourceStructureID":483,"TargetStructureID":103310,"Label":"483-103310 via BC Conventional Synapse from 103309 -> 103311","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103309,"TargetID":103311,"Directional":true}]},{"ID":6658,"SourceStructureID":483,"TargetStructureID":103326,"Label":"483-103326 via Ribbon Synapse from 6091 -> 103327","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6091,"TargetID":103327,"Directional":true}]},{"ID":6659,"SourceStructureID":483,"TargetStructureID":103331,"Label":"483-103331 via Ribbon Synapse from 6091 -> 103333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6091,"TargetID":103333,"Directional":true}]},{"ID":6660,"SourceStructureID":483,"TargetStructureID":103334,"Label":"483-103334 via Ribbon Synapse from 6094 -> 103337","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6094,"TargetID":103337,"Directional":true}]},{"ID":6661,"SourceStructureID":483,"TargetStructureID":103335,"Label":"483-103335 via Ribbon Synapse from 6094 -> 103336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6094,"TargetID":103336,"Directional":true}]},{"ID":6662,"SourceStructureID":483,"TargetStructureID":103345,"Label":"483-103345 via Ribbon Synapse from 103344 -> 103346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103344,"TargetID":103346,"Directional":true}]},{"ID":6663,"SourceStructureID":483,"TargetStructureID":103362,"Label":"483-103362 via Ribbon Synapse from 103364 -> 103365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103364,"TargetID":103365,"Directional":true}]},{"ID":6664,"SourceStructureID":483,"TargetStructureID":103369,"Label":"483-103369 via Ribbon Synapse from 6083 -> 103370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6083,"TargetID":103370,"Directional":true}]},{"ID":6665,"SourceStructureID":483,"TargetStructureID":103372,"Label":"483-103372 via BC Conventional Synapse from 103371 -> 103373","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103371,"TargetID":103373,"Directional":true}]},{"ID":6666,"SourceStructureID":483,"TargetStructureID":103381,"Label":"483-103381 via Ribbon Synapse from 6776 -> 103383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6776,"TargetID":103383,"Directional":true}]},{"ID":6667,"SourceStructureID":483,"TargetStructureID":103385,"Label":"483-103385 via BC Conventional Synapse from 103384 -> 103386","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103384,"TargetID":103386,"Directional":true}]},{"ID":6668,"SourceStructureID":483,"TargetStructureID":103387,"Label":"483-103387 via Ribbon Synapse from 6080 -> 103388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6080,"TargetID":103388,"Directional":true}]},{"ID":6669,"SourceStructureID":483,"TargetStructureID":103389,"Label":"483-103389 via Ribbon Synapse from 6080 -> 103390","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6080,"TargetID":103390,"Directional":true}]},{"ID":6670,"SourceStructureID":483,"TargetStructureID":103392,"Label":"483-103392 via Ribbon Synapse from 6776 -> 103393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6776,"TargetID":103393,"Directional":true}]},{"ID":6671,"SourceStructureID":483,"TargetStructureID":103397,"Label":"483-103397 via BC Conventional Synapse from 103396 -> 103398","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103396,"TargetID":103398,"Directional":true}]},{"ID":6672,"SourceStructureID":483,"TargetStructureID":103408,"Label":"483-103408 via BC Conventional Synapse from 103407 -> 103409","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103407,"TargetID":103409,"Directional":true}]},{"ID":6673,"SourceStructureID":483,"TargetStructureID":103411,"Label":"483-103411 via Ribbon Synapse from 6771 -> 103412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6771,"TargetID":103412,"Directional":true}]},{"ID":6674,"SourceStructureID":483,"TargetStructureID":103422,"Label":"483-103422 via Ribbon Synapse from 6773 -> 103424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6773,"TargetID":103424,"Directional":true}]},{"ID":6675,"SourceStructureID":483,"TargetStructureID":103425,"Label":"483-103425 via Ribbon Synapse from 6773 -> 103426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6773,"TargetID":103426,"Directional":true}]},{"ID":6676,"SourceStructureID":483,"TargetStructureID":103427,"Label":"483-103427 via Ribbon Synapse from 6773 -> 103428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6773,"TargetID":103428,"Directional":true}]},{"ID":6677,"SourceStructureID":483,"TargetStructureID":103433,"Label":"483-103433 via BC Conventional Synapse from 103432 -> 103434","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103432,"TargetID":103434,"Directional":true}]},{"ID":6678,"SourceStructureID":483,"TargetStructureID":103435,"Label":"483-103435 via Ribbon Synapse from 6088 -> 103436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6088,"TargetID":103436,"Directional":true}]},{"ID":6679,"SourceStructureID":483,"TargetStructureID":103437,"Label":"483-103437 via Ribbon Synapse from 6088 -> 103438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6088,"TargetID":103438,"Directional":true}]},{"ID":6680,"SourceStructureID":483,"TargetStructureID":103440,"Label":"483-103440 via Ribbon Synapse from 49798 -> 103448, 49798 -> 103449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49798,"TargetID":103448,"Directional":true},{"SourceID":49798,"TargetID":103449,"Directional":true}]},{"ID":6681,"SourceStructureID":483,"TargetStructureID":103444,"Label":"483-103444 via Ribbon Synapse from 49802 -> 103445","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49802,"TargetID":103445,"Directional":true}]},{"ID":6682,"SourceStructureID":483,"TargetStructureID":103446,"Label":"483-103446 via Ribbon Synapse from 49798 -> 103447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49798,"TargetID":103447,"Directional":true}]},{"ID":6683,"SourceStructureID":483,"TargetStructureID":103450,"Label":"483-103450 via Ribbon Synapse from 49798 -> 103451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49798,"TargetID":103451,"Directional":true}]},{"ID":6684,"SourceStructureID":483,"TargetStructureID":103452,"Label":"483-103452 via BC Conventional Synapse from 148242 -> 148241","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":148242,"TargetID":148241,"Directional":true}]},{"ID":6685,"SourceStructureID":483,"TargetStructureID":103460,"Label":"483-103460 via Ribbon Synapse from 97735 -> 103461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97735,"TargetID":103461,"Directional":true}]},{"ID":6686,"SourceStructureID":483,"TargetStructureID":103466,"Label":"483-103466 via BC Conventional Synapse from 97699 -> 103467","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97699,"TargetID":103467,"Directional":true}]},{"ID":6687,"SourceStructureID":483,"TargetStructureID":103468,"Label":"483-103468 via Ribbon Synapse from 97698 -> 103469","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97698,"TargetID":103469,"Directional":true}]},{"ID":6688,"SourceStructureID":483,"TargetStructureID":103470,"Label":"483-103470 via BC Conventional Synapse from 97702 -> 103471","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97702,"TargetID":103471,"Directional":true}]},{"ID":6689,"SourceStructureID":483,"TargetStructureID":103473,"Label":"483-103473 via Ribbon Synapse from 6778 -> 103474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6778,"TargetID":103474,"Directional":true}]},{"ID":6690,"SourceStructureID":483,"TargetStructureID":103481,"Label":"483-103481 via Ribbon Synapse from 92311 -> 103482","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92311,"TargetID":103482,"Directional":true}]},{"ID":6691,"SourceStructureID":483,"TargetStructureID":103483,"Label":"483-103483 via Ribbon Synapse from 92315 -> 103484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92315,"TargetID":103484,"Directional":true}]},{"ID":6692,"SourceStructureID":483,"TargetStructureID":103496,"Label":"483-103496 via Ribbon Synapse from 92326 -> 103497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92326,"TargetID":103497,"Directional":true}]},{"ID":6693,"SourceStructureID":483,"TargetStructureID":103501,"Label":"483-103501 via Ribbon Synapse from 92327 -> 103502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92327,"TargetID":103502,"Directional":true}]},{"ID":6694,"SourceStructureID":483,"TargetStructureID":103503,"Label":"483-103503 via Ribbon Synapse from 92327 -> 103504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92327,"TargetID":103504,"Directional":true}]},{"ID":6695,"SourceStructureID":483,"TargetStructureID":103506,"Label":"483-103506 via Ribbon Synapse from 103505 -> 103507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103505,"TargetID":103507,"Directional":true}]},{"ID":6696,"SourceStructureID":483,"TargetStructureID":103508,"Label":"483-103508 via Ribbon Synapse from 81499 -> 116715","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81499,"TargetID":116715,"Directional":true}]},{"ID":6697,"SourceStructureID":483,"TargetStructureID":103530,"Label":"483-103530 via Ribbon Synapse from 92337 -> 103531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92337,"TargetID":103531,"Directional":true}]},{"ID":6698,"SourceStructureID":483,"TargetStructureID":103543,"Label":"483-103543 via Ribbon Synapse from 92345 -> 103544","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92345,"TargetID":103544,"Directional":true}]},{"ID":6699,"SourceStructureID":483,"TargetStructureID":103550,"Label":"483-103550 via Ribbon Synapse from 6786 -> 103551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6786,"TargetID":103551,"Directional":true}]},{"ID":6700,"SourceStructureID":483,"TargetStructureID":103725,"Label":"483-103725 via BC Conventional Synapse from 103724 -> 103726","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103724,"TargetID":103726,"Directional":true}]},{"ID":6701,"SourceStructureID":483,"TargetStructureID":103728,"Label":"483-103728 via Ribbon Synapse from 65234 -> 103731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65234,"TargetID":103731,"Directional":true}]},{"ID":6702,"SourceStructureID":483,"TargetStructureID":103736,"Label":"483-103736 via Ribbon Synapse from 94625 -> 103737","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94625,"TargetID":103737,"Directional":true}]},{"ID":6703,"SourceStructureID":483,"TargetStructureID":103743,"Label":"483-103743 via Ribbon Synapse from 94629 -> 103744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94629,"TargetID":103744,"Directional":true}]},{"ID":6704,"SourceStructureID":485,"TargetStructureID":318,"Label":"485-318 via BC Conventional Synapse from 100891 -> 100892","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100891,"TargetID":100892,"Directional":true}]},{"ID":6705,"SourceStructureID":485,"TargetStructureID":4890,"Label":"485-4890 via Ribbon Synapse from 15934 -> 7924, 19984 -> 19985, 99875 -> 99877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15934,"TargetID":7924,"Directional":true},{"SourceID":19984,"TargetID":19985,"Directional":true},{"SourceID":99875,"TargetID":99877,"Directional":true}]},{"ID":6706,"SourceStructureID":485,"TargetStructureID":5117,"Label":"485-5117 via BC Conventional Synapse from 101211 -> 101212","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101211,"TargetID":101212,"Directional":true}]},{"ID":6707,"SourceStructureID":485,"TargetStructureID":5117,"Label":"485-5117 via Ribbon Synapse from 50854 -> 100170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50854,"TargetID":100170,"Directional":true}]},{"ID":6708,"SourceStructureID":485,"TargetStructureID":5575,"Label":"485-5575 via Adherens from 27204 -> 23087","Type":"Adherens","Directional":true,"Links":[{"SourceID":27204,"TargetID":23087,"Directional":true}]},{"ID":6709,"SourceStructureID":485,"TargetStructureID":8577,"Label":"485-8577 via Ribbon Synapse from 68784 -> 15931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68784,"TargetID":15931,"Directional":true}]},{"ID":6710,"SourceStructureID":485,"TargetStructureID":15796,"Label":"485-15796 via Ribbon Synapse from 43477 -> 43478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43477,"TargetID":43478,"Directional":true}]},{"ID":6711,"SourceStructureID":485,"TargetStructureID":18282,"Label":"485-18282 via Ribbon Synapse from 18300 -> 18301, 18311 -> 18307, 47532 -> 100938, 50888 -> 101088, 100815 -> 18303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18300,"TargetID":18301,"Directional":true},{"SourceID":18311,"TargetID":18307,"Directional":true},{"SourceID":47532,"TargetID":100938,"Directional":true},{"SourceID":50888,"TargetID":101088,"Directional":true},{"SourceID":100815,"TargetID":18303,"Directional":true}]},{"ID":6712,"SourceStructureID":485,"TargetStructureID":18576,"Label":"485-18576 via Ribbon Synapse from 94212 -> 100471","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94212,"TargetID":100471,"Directional":true}]},{"ID":6713,"SourceStructureID":485,"TargetStructureID":22554,"Label":"485-22554 via BC Conventional Synapse from 22567 -> 22566","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":22567,"TargetID":22566,"Directional":true}]},{"ID":6714,"SourceStructureID":485,"TargetStructureID":22974,"Label":"485-22974 via Ribbon Synapse from 100873 -> 100881, 101492 -> 101713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100873,"TargetID":100881,"Directional":true},{"SourceID":101492,"TargetID":101713,"Directional":true}]},{"ID":6715,"SourceStructureID":485,"TargetStructureID":24148,"Label":"485-24148 via Ribbon Synapse from 24166 -> 24167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24166,"TargetID":24167,"Directional":true}]},{"ID":6716,"SourceStructureID":485,"TargetStructureID":25367,"Label":"485-25367 via Ribbon Synapse from 18310 -> 25369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18310,"TargetID":25369,"Directional":true}]},{"ID":6717,"SourceStructureID":485,"TargetStructureID":25392,"Label":"485-25392 via Ribbon Synapse from 32297 -> 32298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32297,"TargetID":32298,"Directional":true}]},{"ID":6718,"SourceStructureID":485,"TargetStructureID":27288,"Label":"485-27288 via Ribbon Synapse from 19984 -> 27296, 27302 -> 27303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19984,"TargetID":27296,"Directional":true},{"SourceID":27302,"TargetID":27303,"Directional":true}]},{"ID":6719,"SourceStructureID":485,"TargetStructureID":34601,"Label":"485-34601 via Ribbon Synapse from 18311 -> 35174","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18311,"TargetID":35174,"Directional":true}]},{"ID":6720,"SourceStructureID":485,"TargetStructureID":35117,"Label":"485-35117 via Ribbon Synapse from 35124 -> 35121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35124,"TargetID":35121,"Directional":true}]},{"ID":6721,"SourceStructureID":485,"TargetStructureID":39876,"Label":"485-39876 via Ribbon Synapse from 15934 -> 39882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15934,"TargetID":39882,"Directional":true}]},{"ID":6722,"SourceStructureID":485,"TargetStructureID":46823,"Label":"485-46823 via Ribbon Synapse from 46845 -> 46844, 46847 -> 46846, 46850 -> 46849, 50914 -> 99499, 101009 -> 46837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46845,"TargetID":46844,"Directional":true},{"SourceID":46847,"TargetID":46846,"Directional":true},{"SourceID":46850,"TargetID":46849,"Directional":true},{"SourceID":50914,"TargetID":99499,"Directional":true},{"SourceID":101009,"TargetID":46837,"Directional":true}]},{"ID":6723,"SourceStructureID":485,"TargetStructureID":49489,"Label":"485-49489 via Ribbon Synapse from 49532 -> 49529, 65187 -> 103713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49532,"TargetID":49529,"Directional":true},{"SourceID":65187,"TargetID":103713,"Directional":true}]},{"ID":6724,"SourceStructureID":485,"TargetStructureID":60657,"Label":"485-60657 via Ribbon Synapse from 50878 -> 99467, 61428 -> 61427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50878,"TargetID":99467,"Directional":true},{"SourceID":61428,"TargetID":61427,"Directional":true}]},{"ID":6725,"SourceStructureID":485,"TargetStructureID":61270,"Label":"485-61270 via Ribbon Synapse from 50644 -> 61295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50644,"TargetID":61295,"Directional":true}]},{"ID":6726,"SourceStructureID":485,"TargetStructureID":61864,"Label":"485-61864 via Ribbon Synapse from 23148 -> 61866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23148,"TargetID":61866,"Directional":true}]},{"ID":6727,"SourceStructureID":485,"TargetStructureID":61960,"Label":"485-61960 via Ribbon Synapse from 47536 -> 81467, 51159 -> 81503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47536,"TargetID":81467,"Directional":true},{"SourceID":51159,"TargetID":81503,"Directional":true}]},{"ID":6728,"SourceStructureID":485,"TargetStructureID":65267,"Label":"485-65267 via Ribbon Synapse from 47529 -> 69964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47529,"TargetID":69964,"Directional":true}]},{"ID":6729,"SourceStructureID":485,"TargetStructureID":70868,"Label":"485-70868 via Ribbon Synapse from 70877 -> 70876","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70877,"TargetID":70876,"Directional":true}]},{"ID":6730,"SourceStructureID":485,"TargetStructureID":70878,"Label":"485-70878 via Ribbon Synapse from 70877 -> 70880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70877,"TargetID":70880,"Directional":true}]},{"ID":6731,"SourceStructureID":485,"TargetStructureID":71189,"Label":"485-71189 via Ribbon Synapse from 101122 -> 101126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101122,"TargetID":101126,"Directional":true}]},{"ID":6732,"SourceStructureID":485,"TargetStructureID":81459,"Label":"485-81459 via Ribbon Synapse from 81464 -> 81466","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81464,"TargetID":81466,"Directional":true}]},{"ID":6733,"SourceStructureID":485,"TargetStructureID":85748,"Label":"485-85748 via Ribbon Synapse from 100228 -> 85790, 148418 -> 148419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100228,"TargetID":85790,"Directional":true},{"SourceID":148418,"TargetID":148419,"Directional":true}]},{"ID":6734,"SourceStructureID":485,"TargetStructureID":86634,"Label":"485-86634 via Ribbon Synapse from 50865 -> 86707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50865,"TargetID":86707,"Directional":true}]},{"ID":6735,"SourceStructureID":485,"TargetStructureID":99217,"Label":"485-99217 via Ribbon Synapse from 24474 -> 99221","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24474,"TargetID":99221,"Directional":true}]},{"ID":6736,"SourceStructureID":485,"TargetStructureID":99218,"Label":"485-99218 via Ribbon Synapse from 24474 -> 99222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24474,"TargetID":99222,"Directional":true}]},{"ID":6737,"SourceStructureID":485,"TargetStructureID":99223,"Label":"485-99223 via Ribbon Synapse from 38778 -> 99224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38778,"TargetID":99224,"Directional":true}]},{"ID":6738,"SourceStructureID":485,"TargetStructureID":99228,"Label":"485-99228 via Ribbon Synapse from 24476 -> 99229, 24477 -> 99229, 24478 -> 99229, 24480 -> 99229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24476,"TargetID":99229,"Directional":true},{"SourceID":24477,"TargetID":99229,"Directional":true},{"SourceID":24478,"TargetID":99229,"Directional":true},{"SourceID":24480,"TargetID":99229,"Directional":true}]},{"ID":6739,"SourceStructureID":485,"TargetStructureID":99230,"Label":"485-99230 via Ribbon Synapse from 24480 -> 99231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24480,"TargetID":99231,"Directional":true}]},{"ID":6740,"SourceStructureID":485,"TargetStructureID":99247,"Label":"485-99247 via Ribbon Synapse from 24482 -> 99248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24482,"TargetID":99248,"Directional":true}]},{"ID":6741,"SourceStructureID":485,"TargetStructureID":99249,"Label":"485-99249 via Ribbon Synapse from 24481 -> 99250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24481,"TargetID":99250,"Directional":true}]},{"ID":6742,"SourceStructureID":485,"TargetStructureID":99347,"Label":"485-99347 via Ribbon Synapse from 7032 -> 99348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7032,"TargetID":99348,"Directional":true}]},{"ID":6743,"SourceStructureID":485,"TargetStructureID":99349,"Label":"485-99349 via Ribbon Synapse from 99283 -> 99350","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99283,"TargetID":99350,"Directional":true}]},{"ID":6744,"SourceStructureID":485,"TargetStructureID":99362,"Label":"485-99362 via Ribbon Synapse from 99354 -> 99363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99354,"TargetID":99363,"Directional":true}]},{"ID":6745,"SourceStructureID":485,"TargetStructureID":99388,"Label":"485-99388 via Ribbon Synapse from 7034 -> 99390","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7034,"TargetID":99390,"Directional":true}]},{"ID":6746,"SourceStructureID":485,"TargetStructureID":99391,"Label":"485-99391 via Ribbon Synapse from 7034 -> 99392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7034,"TargetID":99392,"Directional":true}]},{"ID":6747,"SourceStructureID":485,"TargetStructureID":99397,"Label":"485-99397 via Ribbon Synapse from 99394 -> 99398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99394,"TargetID":99398,"Directional":true}]},{"ID":6748,"SourceStructureID":485,"TargetStructureID":99403,"Label":"485-99403 via Ribbon Synapse from 7036 -> 99404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7036,"TargetID":99404,"Directional":true}]},{"ID":6749,"SourceStructureID":485,"TargetStructureID":99406,"Label":"485-99406 via BC Conventional Synapse from 99405 -> 99407","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99405,"TargetID":99407,"Directional":true}]},{"ID":6750,"SourceStructureID":485,"TargetStructureID":99422,"Label":"485-99422 via Ribbon Synapse from 99421 -> 99424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99421,"TargetID":99424,"Directional":true}]},{"ID":6751,"SourceStructureID":485,"TargetStructureID":99423,"Label":"485-99423 via Ribbon Synapse from 99421 -> 99425","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99421,"TargetID":99425,"Directional":true}]},{"ID":6752,"SourceStructureID":485,"TargetStructureID":99441,"Label":"485-99441 via Ribbon Synapse from 50879 -> 99442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50879,"TargetID":99442,"Directional":true}]},{"ID":6753,"SourceStructureID":485,"TargetStructureID":99451,"Label":"485-99451 via BC Conventional Synapse from 94060 -> 99452","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94060,"TargetID":99452,"Directional":true}]},{"ID":6754,"SourceStructureID":485,"TargetStructureID":99457,"Label":"485-99457 via Ribbon Synapse from 50861 -> 99458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50861,"TargetID":99458,"Directional":true}]},{"ID":6755,"SourceStructureID":485,"TargetStructureID":99459,"Label":"485-99459 via Ribbon Synapse from 50859 -> 99460","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50859,"TargetID":99460,"Directional":true}]},{"ID":6756,"SourceStructureID":485,"TargetStructureID":99461,"Label":"485-99461 via Ribbon Synapse from 50859 -> 99462","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50859,"TargetID":99462,"Directional":true}]},{"ID":6757,"SourceStructureID":485,"TargetStructureID":99479,"Label":"485-99479 via Ribbon Synapse from 50878 -> 99481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50878,"TargetID":99481,"Directional":true}]},{"ID":6758,"SourceStructureID":485,"TargetStructureID":99525,"Label":"485-99525 via Ribbon Synapse from 7044 -> 99526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7044,"TargetID":99526,"Directional":true}]},{"ID":6759,"SourceStructureID":485,"TargetStructureID":99617,"Label":"485-99617 via Ribbon Synapse from 50856 -> 99619","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50856,"TargetID":99619,"Directional":true}]},{"ID":6760,"SourceStructureID":485,"TargetStructureID":99621,"Label":"485-99621 via Ribbon Synapse from 50856 -> 99623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50856,"TargetID":99623,"Directional":true}]},{"ID":6761,"SourceStructureID":485,"TargetStructureID":99624,"Label":"485-99624 via Ribbon Synapse from 94092 -> 99627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94092,"TargetID":99627,"Directional":true}]},{"ID":6762,"SourceStructureID":485,"TargetStructureID":99625,"Label":"485-99625 via Ribbon Synapse from 94092 -> 99626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94092,"TargetID":99626,"Directional":true}]},{"ID":6763,"SourceStructureID":485,"TargetStructureID":99644,"Label":"485-99644 via Ribbon Synapse from 99875 -> 99876","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99875,"TargetID":99876,"Directional":true}]},{"ID":6764,"SourceStructureID":485,"TargetStructureID":99651,"Label":"485-99651 via Ribbon Synapse from 46847 -> 99652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46847,"TargetID":99652,"Directional":true}]},{"ID":6765,"SourceStructureID":485,"TargetStructureID":99653,"Label":"485-99653 via Ribbon Synapse from 99669 -> 99654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99669,"TargetID":99654,"Directional":true}]},{"ID":6766,"SourceStructureID":485,"TargetStructureID":99655,"Label":"485-99655 via Ribbon Synapse from 99669 -> 99656","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99669,"TargetID":99656,"Directional":true}]},{"ID":6767,"SourceStructureID":485,"TargetStructureID":99701,"Label":"485-99701 via Ribbon Synapse from 99691 -> 99860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99691,"TargetID":99860,"Directional":true}]},{"ID":6768,"SourceStructureID":485,"TargetStructureID":99711,"Label":"485-99711 via Ribbon Synapse from 94111 -> 99718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94111,"TargetID":99718,"Directional":true}]},{"ID":6769,"SourceStructureID":485,"TargetStructureID":99731,"Label":"485-99731 via Ribbon Synapse from 99730 -> 99732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99730,"TargetID":99732,"Directional":true}]},{"ID":6770,"SourceStructureID":485,"TargetStructureID":99773,"Label":"485-99773 via Ribbon Synapse from 50689 -> 99777","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50689,"TargetID":99777,"Directional":true}]},{"ID":6771,"SourceStructureID":485,"TargetStructureID":99841,"Label":"485-99841 via Ribbon Synapse from 99840 -> 99842","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99840,"TargetID":99842,"Directional":true}]},{"ID":6772,"SourceStructureID":485,"TargetStructureID":99848,"Label":"485-99848 via Ribbon Synapse from 51171 -> 99849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51171,"TargetID":99849,"Directional":true}]},{"ID":6773,"SourceStructureID":485,"TargetStructureID":99850,"Label":"485-99850 via Ribbon Synapse from 50685 -> 99851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50685,"TargetID":99851,"Directional":true}]},{"ID":6774,"SourceStructureID":485,"TargetStructureID":99852,"Label":"485-99852 via Ribbon Synapse from 50685 -> 99853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50685,"TargetID":99853,"Directional":true}]},{"ID":6775,"SourceStructureID":485,"TargetStructureID":99857,"Label":"485-99857 via Ribbon Synapse from 99681 -> 99859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99681,"TargetID":99859,"Directional":true}]},{"ID":6776,"SourceStructureID":485,"TargetStructureID":99861,"Label":"485-99861 via Ribbon Synapse from 50631 -> 99864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50631,"TargetID":99864,"Directional":true}]},{"ID":6777,"SourceStructureID":485,"TargetStructureID":99862,"Label":"485-99862 via Ribbon Synapse from 50631 -> 99863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50631,"TargetID":99863,"Directional":true}]},{"ID":6778,"SourceStructureID":485,"TargetStructureID":99865,"Label":"485-99865 via Ribbon Synapse from 50631 -> 99866, 99896 -> 99897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50631,"TargetID":99866,"Directional":true},{"SourceID":99896,"TargetID":99897,"Directional":true}]},{"ID":6779,"SourceStructureID":485,"TargetStructureID":99879,"Label":"485-99879 via BC Conventional Synapse from 99878 -> 99880","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99878,"TargetID":99880,"Directional":true}]},{"ID":6780,"SourceStructureID":485,"TargetStructureID":99906,"Label":"485-99906 via BC Conventional Synapse from 148021 -> 148020","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":148021,"TargetID":148020,"Directional":true}]},{"ID":6781,"SourceStructureID":485,"TargetStructureID":99909,"Label":"485-99909 via Ribbon Synapse from 99908 -> 99910","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99908,"TargetID":99910,"Directional":true}]},{"ID":6782,"SourceStructureID":485,"TargetStructureID":99915,"Label":"485-99915 via BC Conventional Synapse from 99920 -> 99919","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99920,"TargetID":99919,"Directional":true}]},{"ID":6783,"SourceStructureID":485,"TargetStructureID":99915,"Label":"485-99915 via Ribbon Synapse from 99914 -> 99917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99914,"TargetID":99917,"Directional":true}]},{"ID":6784,"SourceStructureID":485,"TargetStructureID":99916,"Label":"485-99916 via Ribbon Synapse from 99914 -> 99918, 99925 -> 99926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99914,"TargetID":99918,"Directional":true},{"SourceID":99925,"TargetID":99926,"Directional":true}]},{"ID":6785,"SourceStructureID":485,"TargetStructureID":99933,"Label":"485-99933 via Ribbon Synapse from 46850 -> 99934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46850,"TargetID":99934,"Directional":true}]},{"ID":6786,"SourceStructureID":485,"TargetStructureID":99936,"Label":"485-99936 via BC Conventional Synapse from 99935 -> 99939","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99935,"TargetID":99939,"Directional":true}]},{"ID":6787,"SourceStructureID":485,"TargetStructureID":99938,"Label":"485-99938 via BC Conventional Synapse from 99937 -> 99946","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99937,"TargetID":99946,"Directional":true}]},{"ID":6788,"SourceStructureID":485,"TargetStructureID":99944,"Label":"485-99944 via Ribbon Synapse from 99943 -> 99945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99943,"TargetID":99945,"Directional":true}]},{"ID":6789,"SourceStructureID":485,"TargetStructureID":99958,"Label":"485-99958 via Ribbon Synapse from 99955 -> 99959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99955,"TargetID":99959,"Directional":true}]},{"ID":6790,"SourceStructureID":485,"TargetStructureID":99960,"Label":"485-99960 via Ribbon Synapse from 99955 -> 99961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99955,"TargetID":99961,"Directional":true}]},{"ID":6791,"SourceStructureID":485,"TargetStructureID":99975,"Label":"485-99975 via Ribbon Synapse from 99974 -> 99978","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99974,"TargetID":99978,"Directional":true}]},{"ID":6792,"SourceStructureID":485,"TargetStructureID":99976,"Label":"485-99976 via Ribbon Synapse from 99974 -> 99977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99974,"TargetID":99977,"Directional":true}]},{"ID":6793,"SourceStructureID":485,"TargetStructureID":99987,"Label":"485-99987 via Ribbon Synapse from 99983 -> 99988","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99983,"TargetID":99988,"Directional":true}]},{"ID":6794,"SourceStructureID":485,"TargetStructureID":99989,"Label":"485-99989 via Ribbon Synapse from 99983 -> 99990","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99983,"TargetID":99990,"Directional":true}]},{"ID":6795,"SourceStructureID":485,"TargetStructureID":100010,"Label":"485-100010 via Ribbon Synapse from 94198 -> 100013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94198,"TargetID":100013,"Directional":true}]},{"ID":6796,"SourceStructureID":485,"TargetStructureID":100014,"Label":"485-100014 via Ribbon Synapse from 29184 -> 100016","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29184,"TargetID":100016,"Directional":true}]},{"ID":6797,"SourceStructureID":485,"TargetStructureID":100023,"Label":"485-100023 via Ribbon Synapse from 100022 -> 100024","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100022,"TargetID":100024,"Directional":true}]},{"ID":6798,"SourceStructureID":485,"TargetStructureID":100032,"Label":"485-100032 via BC Conventional Synapse from 100034 -> 100033","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100034,"TargetID":100033,"Directional":true}]},{"ID":6799,"SourceStructureID":485,"TargetStructureID":100041,"Label":"485-100041 via BC Conventional Synapse from 100042 -> 118443","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100042,"TargetID":118443,"Directional":true}]},{"ID":6800,"SourceStructureID":485,"TargetStructureID":100046,"Label":"485-100046 via Ribbon Synapse from 29189 -> 100049","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29189,"TargetID":100049,"Directional":true}]},{"ID":6801,"SourceStructureID":485,"TargetStructureID":100047,"Label":"485-100047 via Ribbon Synapse from 29189 -> 100048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29189,"TargetID":100048,"Directional":true}]},{"ID":6802,"SourceStructureID":485,"TargetStructureID":100050,"Label":"485-100050 via Ribbon Synapse from 29189 -> 100051","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29189,"TargetID":100051,"Directional":true}]},{"ID":6803,"SourceStructureID":485,"TargetStructureID":100062,"Label":"485-100062 via Ribbon Synapse from 29192 -> 100063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29192,"TargetID":100063,"Directional":true}]},{"ID":6804,"SourceStructureID":485,"TargetStructureID":100072,"Label":"485-100072 via BC Conventional Synapse from 94207 -> 100073","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94207,"TargetID":100073,"Directional":true}]},{"ID":6805,"SourceStructureID":485,"TargetStructureID":100081,"Label":"485-100081 via BC Conventional Synapse from 49524 -> 100083","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":49524,"TargetID":100083,"Directional":true}]},{"ID":6806,"SourceStructureID":485,"TargetStructureID":100089,"Label":"485-100089 via BC Conventional Synapse from 100088 -> 100090","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100088,"TargetID":100090,"Directional":true}]},{"ID":6807,"SourceStructureID":485,"TargetStructureID":100095,"Label":"485-100095 via Ribbon Synapse from 148072 -> 148073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148072,"TargetID":148073,"Directional":true}]},{"ID":6808,"SourceStructureID":485,"TargetStructureID":100098,"Label":"485-100098 via Ribbon Synapse from 51028 -> 100099","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51028,"TargetID":100099,"Directional":true}]},{"ID":6809,"SourceStructureID":485,"TargetStructureID":100105,"Label":"485-100105 via BC Conventional Synapse from 100104 -> 100106","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100104,"TargetID":100106,"Directional":true}]},{"ID":6810,"SourceStructureID":485,"TargetStructureID":100111,"Label":"485-100111 via Ribbon Synapse from 51067 -> 100112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51067,"TargetID":100112,"Directional":true}]},{"ID":6811,"SourceStructureID":485,"TargetStructureID":100116,"Label":"485-100116 via Ribbon Synapse from 51068 -> 100119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51068,"TargetID":100119,"Directional":true}]},{"ID":6812,"SourceStructureID":485,"TargetStructureID":100117,"Label":"485-100117 via Ribbon Synapse from 51068 -> 100118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51068,"TargetID":100118,"Directional":true}]},{"ID":6813,"SourceStructureID":485,"TargetStructureID":100128,"Label":"485-100128 via Ribbon Synapse from 51071 -> 100130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51071,"TargetID":100130,"Directional":true}]},{"ID":6814,"SourceStructureID":485,"TargetStructureID":100131,"Label":"485-100131 via Ribbon Synapse from 51071 -> 100132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51071,"TargetID":100132,"Directional":true}]},{"ID":6815,"SourceStructureID":485,"TargetStructureID":100135,"Label":"485-100135 via Ribbon Synapse from 50920 -> 100139","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50920,"TargetID":100139,"Directional":true}]},{"ID":6816,"SourceStructureID":485,"TargetStructureID":100156,"Label":"485-100156 via Ribbon Synapse from 50920 -> 100158, 51088 -> 100163","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50920,"TargetID":100158,"Directional":true},{"SourceID":51088,"TargetID":100163,"Directional":true}]},{"ID":6817,"SourceStructureID":485,"TargetStructureID":100173,"Label":"485-100173 via Ribbon Synapse from 50690 -> 100192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50690,"TargetID":100192,"Directional":true}]},{"ID":6818,"SourceStructureID":485,"TargetStructureID":100198,"Label":"485-100198 via BC Conventional Synapse from 49531 -> 100199","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":49531,"TargetID":100199,"Directional":true}]},{"ID":6819,"SourceStructureID":485,"TargetStructureID":100207,"Label":"485-100207 via Ribbon Synapse from 50686 -> 100208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50686,"TargetID":100208,"Directional":true}]},{"ID":6820,"SourceStructureID":485,"TargetStructureID":100209,"Label":"485-100209 via Ribbon Synapse from 50686 -> 100211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50686,"TargetID":100211,"Directional":true}]},{"ID":6821,"SourceStructureID":485,"TargetStructureID":100217,"Label":"485-100217 via Ribbon Synapse from 99358 -> 100218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99358,"TargetID":100218,"Directional":true}]},{"ID":6822,"SourceStructureID":485,"TargetStructureID":100221,"Label":"485-100221 via BC Conventional Synapse from 100223 -> 100222","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100223,"TargetID":100222,"Directional":true}]},{"ID":6823,"SourceStructureID":485,"TargetStructureID":100257,"Label":"485-100257 via Ribbon Synapse from 7038 -> 100258","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7038,"TargetID":100258,"Directional":true}]},{"ID":6824,"SourceStructureID":485,"TargetStructureID":100271,"Label":"485-100271 via Ribbon Synapse from 100226 -> 100272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100226,"TargetID":100272,"Directional":true}]},{"ID":6825,"SourceStructureID":485,"TargetStructureID":100279,"Label":"485-100279 via Ribbon Synapse from 100277 -> 100280","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100277,"TargetID":100280,"Directional":true}]},{"ID":6826,"SourceStructureID":485,"TargetStructureID":100289,"Label":"485-100289 via BC Conventional Synapse from 100288 -> 100290","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100288,"TargetID":100290,"Directional":true}]},{"ID":6827,"SourceStructureID":485,"TargetStructureID":100292,"Label":"485-100292 via Ribbon Synapse from 100291 -> 100295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100291,"TargetID":100295,"Directional":true}]},{"ID":6828,"SourceStructureID":485,"TargetStructureID":100299,"Label":"485-100299 via Ribbon Synapse from 47642 -> 100300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47642,"TargetID":100300,"Directional":true}]},{"ID":6829,"SourceStructureID":485,"TargetStructureID":100304,"Label":"485-100304 via Ribbon Synapse from 18296 -> 100305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18296,"TargetID":100305,"Directional":true}]},{"ID":6830,"SourceStructureID":485,"TargetStructureID":100308,"Label":"485-100308 via Ribbon Synapse from 51157 -> 100311","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51157,"TargetID":100311,"Directional":true}]},{"ID":6831,"SourceStructureID":485,"TargetStructureID":100312,"Label":"485-100312 via Ribbon Synapse from 51159 -> 100314","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51159,"TargetID":100314,"Directional":true}]},{"ID":6832,"SourceStructureID":485,"TargetStructureID":100315,"Label":"485-100315 via Ribbon Synapse from 47651 -> 100318","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47651,"TargetID":100318,"Directional":true}]},{"ID":6833,"SourceStructureID":485,"TargetStructureID":100316,"Label":"485-100316 via Ribbon Synapse from 47651 -> 100317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47651,"TargetID":100317,"Directional":true}]},{"ID":6834,"SourceStructureID":485,"TargetStructureID":100322,"Label":"485-100322 via Ribbon Synapse from 47653 -> 100323","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47653,"TargetID":100323,"Directional":true}]},{"ID":6835,"SourceStructureID":485,"TargetStructureID":100355,"Label":"485-100355 via Ribbon Synapse from 47646 -> 100356","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47646,"TargetID":100356,"Directional":true}]},{"ID":6836,"SourceStructureID":485,"TargetStructureID":100381,"Label":"485-100381 via Ribbon Synapse from 51156 -> 100382","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51156,"TargetID":100382,"Directional":true}]},{"ID":6837,"SourceStructureID":485,"TargetStructureID":100391,"Label":"485-100391 via Ribbon Synapse from 51156 -> 100392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51156,"TargetID":100392,"Directional":true}]},{"ID":6838,"SourceStructureID":485,"TargetStructureID":100410,"Label":"485-100410 via Ribbon Synapse from 47662 -> 100411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47662,"TargetID":100411,"Directional":true}]},{"ID":6839,"SourceStructureID":485,"TargetStructureID":100426,"Label":"485-100426 via Ribbon Synapse from 51153 -> 100432","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51153,"TargetID":100432,"Directional":true}]},{"ID":6840,"SourceStructureID":485,"TargetStructureID":100436,"Label":"485-100436 via BC Conventional Synapse from 100435 -> 100437","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100435,"TargetID":100437,"Directional":true}]},{"ID":6841,"SourceStructureID":485,"TargetStructureID":100439,"Label":"485-100439 via BC Conventional Synapse from 100438 -> 100440","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100438,"TargetID":100440,"Directional":true}]},{"ID":6842,"SourceStructureID":485,"TargetStructureID":100441,"Label":"485-100441 via Ribbon Synapse from 51152 -> 100442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51152,"TargetID":100442,"Directional":true}]},{"ID":6843,"SourceStructureID":485,"TargetStructureID":100460,"Label":"485-100460 via Ribbon Synapse from 51149 -> 100472","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51149,"TargetID":100472,"Directional":true}]},{"ID":6844,"SourceStructureID":485,"TargetStructureID":100469,"Label":"485-100469 via Ribbon Synapse from 51149 -> 100470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51149,"TargetID":100470,"Directional":true}]},{"ID":6845,"SourceStructureID":485,"TargetStructureID":100474,"Label":"485-100474 via Ribbon Synapse from 94051 -> 100475","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94051,"TargetID":100475,"Directional":true}]},{"ID":6846,"SourceStructureID":485,"TargetStructureID":100479,"Label":"485-100479 via Ribbon Synapse from 100489 -> 100487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100489,"TargetID":100487,"Directional":true}]},{"ID":6847,"SourceStructureID":485,"TargetStructureID":100490,"Label":"485-100490 via Ribbon Synapse from 100489 -> 100491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100489,"TargetID":100491,"Directional":true}]},{"ID":6848,"SourceStructureID":485,"TargetStructureID":100498,"Label":"485-100498 via Ribbon Synapse from 100497 -> 100500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100497,"TargetID":100500,"Directional":true}]},{"ID":6849,"SourceStructureID":485,"TargetStructureID":100568,"Label":"485-100568 via Ribbon Synapse from 100539 -> 100569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100539,"TargetID":100569,"Directional":true}]},{"ID":6850,"SourceStructureID":485,"TargetStructureID":100573,"Label":"485-100573 via Ribbon Synapse from 100577 -> 100576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100577,"TargetID":100576,"Directional":true}]},{"ID":6851,"SourceStructureID":485,"TargetStructureID":100574,"Label":"485-100574 via Ribbon Synapse from 100577 -> 100575","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100577,"TargetID":100575,"Directional":true}]},{"ID":6852,"SourceStructureID":485,"TargetStructureID":100588,"Label":"485-100588 via Ribbon Synapse from 100587 -> 100589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100587,"TargetID":100589,"Directional":true}]},{"ID":6853,"SourceStructureID":485,"TargetStructureID":100605,"Label":"485-100605 via Ribbon Synapse from 100604 -> 100608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100604,"TargetID":100608,"Directional":true}]},{"ID":6854,"SourceStructureID":485,"TargetStructureID":100606,"Label":"485-100606 via Ribbon Synapse from 100604 -> 100607","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100604,"TargetID":100607,"Directional":true}]},{"ID":6855,"SourceStructureID":485,"TargetStructureID":100614,"Label":"485-100614 via Ribbon Synapse from 100611 -> 100617","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100611,"TargetID":100617,"Directional":true}]},{"ID":6856,"SourceStructureID":485,"TargetStructureID":100615,"Label":"485-100615 via Ribbon Synapse from 100611 -> 100616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100611,"TargetID":100616,"Directional":true}]},{"ID":6857,"SourceStructureID":485,"TargetStructureID":100620,"Label":"485-100620 via Ribbon Synapse from 51081 -> 100726, 100619 -> 100621","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51081,"TargetID":100726,"Directional":true},{"SourceID":100619,"TargetID":100621,"Directional":true}]},{"ID":6858,"SourceStructureID":485,"TargetStructureID":100629,"Label":"485-100629 via BC Conventional Synapse from 100628 -> 100630","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100628,"TargetID":100630,"Directional":true}]},{"ID":6859,"SourceStructureID":485,"TargetStructureID":100634,"Label":"485-100634 via BC Conventional Synapse from 100637 -> 100635","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100637,"TargetID":100635,"Directional":true}]},{"ID":6860,"SourceStructureID":485,"TargetStructureID":100671,"Label":"485-100671 via BC Conventional Synapse from 100653 -> 100672","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100653,"TargetID":100672,"Directional":true}]},{"ID":6861,"SourceStructureID":485,"TargetStructureID":100687,"Label":"485-100687 via Ribbon Synapse from 100658 -> 100688, 100659 -> 100689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100658,"TargetID":100688,"Directional":true},{"SourceID":100659,"TargetID":100689,"Directional":true}]},{"ID":6862,"SourceStructureID":485,"TargetStructureID":100695,"Label":"485-100695 via BC Conventional Synapse from 100693 -> 100697","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100693,"TargetID":100697,"Directional":true}]},{"ID":6863,"SourceStructureID":485,"TargetStructureID":100715,"Label":"485-100715 via Ribbon Synapse from 51086 -> 100719","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51086,"TargetID":100719,"Directional":true}]},{"ID":6864,"SourceStructureID":485,"TargetStructureID":100716,"Label":"485-100716 via Ribbon Synapse from 51086 -> 100718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51086,"TargetID":100718,"Directional":true}]},{"ID":6865,"SourceStructureID":485,"TargetStructureID":100717,"Label":"485-100717 via Ribbon Synapse from 51086 -> 100720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51086,"TargetID":100720,"Directional":true}]},{"ID":6866,"SourceStructureID":485,"TargetStructureID":100721,"Label":"485-100721 via Ribbon Synapse from 51083 -> 100723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51083,"TargetID":100723,"Directional":true}]},{"ID":6867,"SourceStructureID":485,"TargetStructureID":100731,"Label":"485-100731 via BC Conventional Synapse from 100727 -> 100732","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100727,"TargetID":100732,"Directional":true}]},{"ID":6868,"SourceStructureID":485,"TargetStructureID":100739,"Label":"485-100739 via Ribbon Synapse from 47520 -> 100740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47520,"TargetID":100740,"Directional":true}]},{"ID":6869,"SourceStructureID":485,"TargetStructureID":100744,"Label":"485-100744 via Ribbon Synapse from 7035 -> 100758","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7035,"TargetID":100758,"Directional":true}]},{"ID":6870,"SourceStructureID":485,"TargetStructureID":100762,"Label":"485-100762 via Ribbon Synapse from 47525 -> 100764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47525,"TargetID":100764,"Directional":true}]},{"ID":6871,"SourceStructureID":485,"TargetStructureID":100767,"Label":"485-100767 via Ribbon Synapse from 7035 -> 100769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7035,"TargetID":100769,"Directional":true}]},{"ID":6872,"SourceStructureID":485,"TargetStructureID":100771,"Label":"485-100771 via Ribbon Synapse from 47528 -> 100782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47528,"TargetID":100782,"Directional":true}]},{"ID":6873,"SourceStructureID":485,"TargetStructureID":100787,"Label":"485-100787 via BC Conventional Synapse from 100786 -> 100791","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100786,"TargetID":100791,"Directional":true}]},{"ID":6874,"SourceStructureID":485,"TargetStructureID":100840,"Label":"485-100840 via Ribbon Synapse from 47623 -> 100841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47623,"TargetID":100841,"Directional":true}]},{"ID":6875,"SourceStructureID":485,"TargetStructureID":100842,"Label":"485-100842 via Ribbon Synapse from 47528 -> 100940, 118441 -> 118442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47528,"TargetID":100940,"Directional":true},{"SourceID":118441,"TargetID":118442,"Directional":true}]},{"ID":6876,"SourceStructureID":485,"TargetStructureID":100845,"Label":"485-100845 via BC Conventional Synapse from 100844 -> 100847","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100844,"TargetID":100847,"Directional":true}]},{"ID":6877,"SourceStructureID":485,"TargetStructureID":100856,"Label":"485-100856 via Ribbon Synapse from 47621 -> 100857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47621,"TargetID":100857,"Directional":true}]},{"ID":6878,"SourceStructureID":485,"TargetStructureID":100883,"Label":"485-100883 via Ribbon Synapse from 100873 -> 100884","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100873,"TargetID":100884,"Directional":true}]},{"ID":6879,"SourceStructureID":485,"TargetStructureID":100885,"Label":"485-100885 via Ribbon Synapse from 100873 -> 100887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100873,"TargetID":100887,"Directional":true}]},{"ID":6880,"SourceStructureID":485,"TargetStructureID":100895,"Label":"485-100895 via BC Conventional Synapse from 100894 -> 100899","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100894,"TargetID":100899,"Directional":true}]},{"ID":6881,"SourceStructureID":485,"TargetStructureID":100900,"Label":"485-100900 via Ribbon Synapse from 47628 -> 100903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47628,"TargetID":100903,"Directional":true}]},{"ID":6882,"SourceStructureID":485,"TargetStructureID":100901,"Label":"485-100901 via Ribbon Synapse from 47628 -> 100902","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47628,"TargetID":100902,"Directional":true}]},{"ID":6883,"SourceStructureID":485,"TargetStructureID":100911,"Label":"485-100911 via Ribbon Synapse from 100910 -> 100915","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100910,"TargetID":100915,"Directional":true}]},{"ID":6884,"SourceStructureID":485,"TargetStructureID":100918,"Label":"485-100918 via Ribbon Synapse from 100917 -> 100968, 101020 -> 100969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100917,"TargetID":100968,"Directional":true},{"SourceID":101020,"TargetID":100969,"Directional":true}]},{"ID":6885,"SourceStructureID":485,"TargetStructureID":100924,"Label":"485-100924 via BC Conventional Synapse from 100922 -> 100925","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100922,"TargetID":100925,"Directional":true}]},{"ID":6886,"SourceStructureID":485,"TargetStructureID":100928,"Label":"485-100928 via BC Conventional Synapse from 100927 -> 100929","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100927,"TargetID":100929,"Directional":true}]},{"ID":6887,"SourceStructureID":485,"TargetStructureID":100934,"Label":"485-100934 via Ribbon Synapse from 47531 -> 100936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47531,"TargetID":100936,"Directional":true}]},{"ID":6888,"SourceStructureID":485,"TargetStructureID":100953,"Label":"485-100953 via Ribbon Synapse from 100917 -> 100964, 100952 -> 100957","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100917,"TargetID":100964,"Directional":true},{"SourceID":100952,"TargetID":100957,"Directional":true}]},{"ID":6889,"SourceStructureID":485,"TargetStructureID":100965,"Label":"485-100965 via Ribbon Synapse from 100917 -> 100966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100917,"TargetID":100966,"Directional":true}]},{"ID":6890,"SourceStructureID":485,"TargetStructureID":100994,"Label":"485-100994 via BC Conventional Synapse from 100993 -> 100995","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100993,"TargetID":100995,"Directional":true}]},{"ID":6891,"SourceStructureID":485,"TargetStructureID":101010,"Label":"485-101010 via Ribbon Synapse from 94213 -> 101011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94213,"TargetID":101011,"Directional":true}]},{"ID":6892,"SourceStructureID":485,"TargetStructureID":101015,"Label":"485-101015 via Ribbon Synapse from 101020 -> 101022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101020,"TargetID":101022,"Directional":true}]},{"ID":6893,"SourceStructureID":485,"TargetStructureID":101023,"Label":"485-101023 via Ribbon Synapse from 101020 -> 101024, 101029 -> 101030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101020,"TargetID":101024,"Directional":true},{"SourceID":101029,"TargetID":101030,"Directional":true}]},{"ID":6894,"SourceStructureID":485,"TargetStructureID":101027,"Label":"485-101027 via Ribbon Synapse from 101020 -> 101028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101020,"TargetID":101028,"Directional":true}]},{"ID":6895,"SourceStructureID":485,"TargetStructureID":101031,"Label":"485-101031 via BC Conventional Synapse from 101033 -> 101032","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101033,"TargetID":101032,"Directional":true}]},{"ID":6896,"SourceStructureID":485,"TargetStructureID":101085,"Label":"485-101085 via Ribbon Synapse from 94214 -> 101087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94214,"TargetID":101087,"Directional":true}]},{"ID":6897,"SourceStructureID":485,"TargetStructureID":101093,"Label":"485-101093 via BC Conventional Synapse from 101092 -> 101094","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101092,"TargetID":101094,"Directional":true}]},{"ID":6898,"SourceStructureID":485,"TargetStructureID":101095,"Label":"485-101095 via BC Conventional Synapse from 94215 -> 101096","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94215,"TargetID":101096,"Directional":true}]},{"ID":6899,"SourceStructureID":485,"TargetStructureID":101112,"Label":"485-101112 via BC Conventional Synapse from 101111 -> 101113","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101111,"TargetID":101113,"Directional":true}]},{"ID":6900,"SourceStructureID":485,"TargetStructureID":101127,"Label":"485-101127 via Ribbon Synapse from 101122 -> 101128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101122,"TargetID":101128,"Directional":true}]},{"ID":6901,"SourceStructureID":485,"TargetStructureID":101129,"Label":"485-101129 via Ribbon Synapse from 47539 -> 101130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47539,"TargetID":101130,"Directional":true}]},{"ID":6902,"SourceStructureID":485,"TargetStructureID":101137,"Label":"485-101137 via Ribbon Synapse from 47534 -> 101139","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47534,"TargetID":101139,"Directional":true}]},{"ID":6903,"SourceStructureID":485,"TargetStructureID":101138,"Label":"485-101138 via Ribbon Synapse from 47534 -> 101140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47534,"TargetID":101140,"Directional":true}]},{"ID":6904,"SourceStructureID":485,"TargetStructureID":101142,"Label":"485-101142 via Ribbon Synapse from 101136 -> 101148","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101136,"TargetID":101148,"Directional":true}]},{"ID":6905,"SourceStructureID":485,"TargetStructureID":101145,"Label":"485-101145 via Ribbon Synapse from 19986 -> 101149, 101144 -> 101152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19986,"TargetID":101149,"Directional":true},{"SourceID":101144,"TargetID":101152,"Directional":true}]},{"ID":6906,"SourceStructureID":485,"TargetStructureID":101178,"Label":"485-101178 via Ribbon Synapse from 94356 -> 101179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94356,"TargetID":101179,"Directional":true}]},{"ID":6907,"SourceStructureID":485,"TargetStructureID":101180,"Label":"485-101180 via Ribbon Synapse from 94355 -> 101181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94355,"TargetID":101181,"Directional":true}]},{"ID":6908,"SourceStructureID":485,"TargetStructureID":101182,"Label":"485-101182 via Ribbon Synapse from 94357 -> 101183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94357,"TargetID":101183,"Directional":true}]},{"ID":6909,"SourceStructureID":485,"TargetStructureID":101185,"Label":"485-101185 via Ribbon Synapse from 94355 -> 101186","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94355,"TargetID":101186,"Directional":true}]},{"ID":6910,"SourceStructureID":485,"TargetStructureID":101187,"Label":"485-101187 via Ribbon Synapse from 94354 -> 101189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94354,"TargetID":101189,"Directional":true}]},{"ID":6911,"SourceStructureID":485,"TargetStructureID":101194,"Label":"485-101194 via Ribbon Synapse from 94354 -> 101199","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94354,"TargetID":101199,"Directional":true}]},{"ID":6912,"SourceStructureID":485,"TargetStructureID":101201,"Label":"485-101201 via Ribbon Synapse from 101204 -> 101205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101204,"TargetID":101205,"Directional":true}]},{"ID":6913,"SourceStructureID":485,"TargetStructureID":101206,"Label":"485-101206 via Ribbon Synapse from 101204 -> 101207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101204,"TargetID":101207,"Directional":true}]},{"ID":6914,"SourceStructureID":485,"TargetStructureID":101220,"Label":"485-101220 via BC Conventional Synapse from 101222 -> 101221","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101222,"TargetID":101221,"Directional":true}]},{"ID":6915,"SourceStructureID":485,"TargetStructureID":101228,"Label":"485-101228 via BC Conventional Synapse from 101227 -> 101229","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101227,"TargetID":101229,"Directional":true}]},{"ID":6916,"SourceStructureID":485,"TargetStructureID":101238,"Label":"485-101238 via Ribbon Synapse from 101237 -> 101239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101237,"TargetID":101239,"Directional":true}]},{"ID":6917,"SourceStructureID":485,"TargetStructureID":101257,"Label":"485-101257 via Ribbon Synapse from 43488 -> 101259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43488,"TargetID":101259,"Directional":true}]},{"ID":6918,"SourceStructureID":485,"TargetStructureID":101261,"Label":"485-101261 via Ribbon Synapse from 43488 -> 101263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43488,"TargetID":101263,"Directional":true}]},{"ID":6919,"SourceStructureID":485,"TargetStructureID":101289,"Label":"485-101289 via Ribbon Synapse from 101285 -> 101292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101285,"TargetID":101292,"Directional":true}]},{"ID":6920,"SourceStructureID":485,"TargetStructureID":101294,"Label":"485-101294 via Ribbon Synapse from 101296 -> 101295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101296,"TargetID":101295,"Directional":true}]},{"ID":6921,"SourceStructureID":485,"TargetStructureID":101299,"Label":"485-101299 via BC Conventional Synapse from 101298 -> 101302","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101298,"TargetID":101302,"Directional":true}]},{"ID":6922,"SourceStructureID":485,"TargetStructureID":101314,"Label":"485-101314 via Ribbon Synapse from 101296 -> 101315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101296,"TargetID":101315,"Directional":true}]},{"ID":6923,"SourceStructureID":485,"TargetStructureID":101343,"Label":"485-101343 via BC Conventional Synapse from 101338 -> 101346","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101338,"TargetID":101346,"Directional":true}]},{"ID":6924,"SourceStructureID":485,"TargetStructureID":101351,"Label":"485-101351 via BC Conventional Synapse from 101353 -> 101352","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101353,"TargetID":101352,"Directional":true}]},{"ID":6925,"SourceStructureID":485,"TargetStructureID":101375,"Label":"485-101375 via BC Conventional Synapse from 101373 -> 101376","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101373,"TargetID":101376,"Directional":true}]},{"ID":6926,"SourceStructureID":485,"TargetStructureID":101392,"Label":"485-101392 via Ribbon Synapse from 94245 -> 101426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94245,"TargetID":101426,"Directional":true}]},{"ID":6927,"SourceStructureID":485,"TargetStructureID":101394,"Label":"485-101394 via Ribbon Synapse from 94268 -> 101398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94268,"TargetID":101398,"Directional":true}]},{"ID":6928,"SourceStructureID":485,"TargetStructureID":101437,"Label":"485-101437 via Ribbon Synapse from 101434 -> 101438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101434,"TargetID":101438,"Directional":true}]},{"ID":6929,"SourceStructureID":485,"TargetStructureID":101439,"Label":"485-101439 via Ribbon Synapse from 94266 -> 101446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94266,"TargetID":101446,"Directional":true}]},{"ID":6930,"SourceStructureID":485,"TargetStructureID":101466,"Label":"485-101466 via BC Conventional Synapse from 101467 -> 101468","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101467,"TargetID":101468,"Directional":true}]},{"ID":6931,"SourceStructureID":485,"TargetStructureID":101473,"Label":"485-101473 via Ribbon Synapse from 101472 -> 101476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101472,"TargetID":101476,"Directional":true}]},{"ID":6932,"SourceStructureID":485,"TargetStructureID":101474,"Label":"485-101474 via Ribbon Synapse from 101472 -> 101475","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101472,"TargetID":101475,"Directional":true}]},{"ID":6933,"SourceStructureID":485,"TargetStructureID":101704,"Label":"485-101704 via Ribbon Synapse from 101703 -> 101705","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101703,"TargetID":101705,"Directional":true}]},{"ID":6934,"SourceStructureID":485,"TargetStructureID":101707,"Label":"485-101707 via Ribbon Synapse from 101477 -> 101708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101477,"TargetID":101708,"Directional":true}]},{"ID":6935,"SourceStructureID":485,"TargetStructureID":101711,"Label":"485-101711 via Ribbon Synapse from 101492 -> 101714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101492,"TargetID":101714,"Directional":true}]},{"ID":6936,"SourceStructureID":485,"TargetStructureID":101715,"Label":"485-101715 via Ribbon Synapse from 101492 -> 101716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101492,"TargetID":101716,"Directional":true}]},{"ID":6937,"SourceStructureID":485,"TargetStructureID":101721,"Label":"485-101721 via BC Conventional Synapse from 101723 -> 101722","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101723,"TargetID":101722,"Directional":true}]},{"ID":6938,"SourceStructureID":485,"TargetStructureID":101730,"Label":"485-101730 via BC Conventional Synapse from 101731 -> 101732","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101731,"TargetID":101732,"Directional":true}]},{"ID":6939,"SourceStructureID":485,"TargetStructureID":101733,"Label":"485-101733 via Ribbon Synapse from 47559 -> 101734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47559,"TargetID":101734,"Directional":true}]},{"ID":6940,"SourceStructureID":485,"TargetStructureID":101740,"Label":"485-101740 via Ribbon Synapse from 47558 -> 101741","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47558,"TargetID":101741,"Directional":true}]},{"ID":6941,"SourceStructureID":485,"TargetStructureID":101742,"Label":"485-101742 via Ribbon Synapse from 47558 -> 101743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47558,"TargetID":101743,"Directional":true}]},{"ID":6942,"SourceStructureID":485,"TargetStructureID":101744,"Label":"485-101744 via Ribbon Synapse from 47555 -> 101746","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47555,"TargetID":101746,"Directional":true}]},{"ID":6943,"SourceStructureID":485,"TargetStructureID":101751,"Label":"485-101751 via BC Conventional Synapse from 101779 -> 101755","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101779,"TargetID":101755,"Directional":true}]},{"ID":6944,"SourceStructureID":485,"TargetStructureID":101777,"Label":"485-101777 via Ribbon Synapse from 101776 -> 101778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101776,"TargetID":101778,"Directional":true}]},{"ID":6945,"SourceStructureID":485,"TargetStructureID":101781,"Label":"485-101781 via BC Conventional Synapse from 101780 -> 101782","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101780,"TargetID":101782,"Directional":true}]},{"ID":6946,"SourceStructureID":485,"TargetStructureID":101785,"Label":"485-101785 via Ribbon Synapse from 101861 -> 101862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101861,"TargetID":101862,"Directional":true}]},{"ID":6947,"SourceStructureID":485,"TargetStructureID":101793,"Label":"485-101793 via Ribbon Synapse from 47561 -> 101795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47561,"TargetID":101795,"Directional":true}]},{"ID":6948,"SourceStructureID":485,"TargetStructureID":101796,"Label":"485-101796 via Ribbon Synapse from 47561 -> 101797","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47561,"TargetID":101797,"Directional":true}]},{"ID":6949,"SourceStructureID":485,"TargetStructureID":101798,"Label":"485-101798 via BC Conventional Synapse from 101800 -> 101799","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101800,"TargetID":101799,"Directional":true}]},{"ID":6950,"SourceStructureID":485,"TargetStructureID":101801,"Label":"485-101801 via Ribbon Synapse from 47564 -> 101806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47564,"TargetID":101806,"Directional":true}]},{"ID":6951,"SourceStructureID":485,"TargetStructureID":101815,"Label":"485-101815 via Ribbon Synapse from 101861 -> 101863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101861,"TargetID":101863,"Directional":true}]},{"ID":6952,"SourceStructureID":485,"TargetStructureID":101830,"Label":"485-101830 via BC Conventional Synapse from 101829 -> 101832","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101829,"TargetID":101832,"Directional":true}]},{"ID":6953,"SourceStructureID":485,"TargetStructureID":101833,"Label":"485-101833 via BC Conventional Synapse from 101831 -> 101834","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101831,"TargetID":101834,"Directional":true}]},{"ID":6954,"SourceStructureID":485,"TargetStructureID":101837,"Label":"485-101837 via BC Conventional Synapse from 101836 -> 101840","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101836,"TargetID":101840,"Directional":true}]},{"ID":6955,"SourceStructureID":485,"TargetStructureID":101864,"Label":"485-101864 via BC Conventional Synapse from 101856 -> 101865","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101856,"TargetID":101865,"Directional":true}]},{"ID":6956,"SourceStructureID":485,"TargetStructureID":101866,"Label":"485-101866 via Ribbon Synapse from 23146 -> 101867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23146,"TargetID":101867,"Directional":true}]},{"ID":6957,"SourceStructureID":485,"TargetStructureID":101868,"Label":"485-101868 via Ribbon Synapse from 23146 -> 101875","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23146,"TargetID":101875,"Directional":true}]},{"ID":6958,"SourceStructureID":485,"TargetStructureID":101903,"Label":"485-101903 via BC Conventional Synapse from 101905 -> 101904","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101905,"TargetID":101904,"Directional":true}]},{"ID":6959,"SourceStructureID":485,"TargetStructureID":101917,"Label":"485-101917 via Ribbon Synapse from 101916 -> 101918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101916,"TargetID":101918,"Directional":true}]},{"ID":6960,"SourceStructureID":485,"TargetStructureID":101923,"Label":"485-101923 via BC Conventional Synapse from 101922 -> 101924","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101922,"TargetID":101924,"Directional":true}]},{"ID":6961,"SourceStructureID":485,"TargetStructureID":101933,"Label":"485-101933 via BC Conventional Synapse from 101929 -> 101934","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101929,"TargetID":101934,"Directional":true}]},{"ID":6962,"SourceStructureID":485,"TargetStructureID":101961,"Label":"485-101961 via Ribbon Synapse from 101963 -> 101964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101963,"TargetID":101964,"Directional":true}]},{"ID":6963,"SourceStructureID":485,"TargetStructureID":101965,"Label":"485-101965 via Ribbon Synapse from 23149 -> 101968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23149,"TargetID":101968,"Directional":true}]},{"ID":6964,"SourceStructureID":485,"TargetStructureID":101966,"Label":"485-101966 via Ribbon Synapse from 23149 -> 101967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23149,"TargetID":101967,"Directional":true}]},{"ID":6965,"SourceStructureID":485,"TargetStructureID":102007,"Label":"485-102007 via Ribbon Synapse from 102006 -> 102010","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102006,"TargetID":102010,"Directional":true}]},{"ID":6966,"SourceStructureID":485,"TargetStructureID":102014,"Label":"485-102014 via Ribbon Synapse from 18310 -> 102019","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18310,"TargetID":102019,"Directional":true}]},{"ID":6967,"SourceStructureID":485,"TargetStructureID":102023,"Label":"485-102023 via Ribbon Synapse from 102022 -> 102031","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102022,"TargetID":102031,"Directional":true}]},{"ID":6968,"SourceStructureID":485,"TargetStructureID":102032,"Label":"485-102032 via Ribbon Synapse from 102022 -> 102033","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102022,"TargetID":102033,"Directional":true}]},{"ID":6969,"SourceStructureID":485,"TargetStructureID":102034,"Label":"485-102034 via Ribbon Synapse from 102022 -> 102035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102022,"TargetID":102035,"Directional":true}]},{"ID":6970,"SourceStructureID":485,"TargetStructureID":127846,"Label":"485-127846 via Ribbon Synapse from 100539 -> 127864, 101928 -> 101931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100539,"TargetID":127864,"Directional":true},{"SourceID":101928,"TargetID":101931,"Directional":true}]},{"ID":6971,"SourceStructureID":488,"TargetStructureID":422,"Label":"488-422 via Conventional from 87795 -> 16601, 87796 -> 87797","Type":"Conventional","Directional":true,"Links":[{"SourceID":87795,"TargetID":16601,"Directional":true},{"SourceID":87796,"TargetID":87797,"Directional":true}]},{"ID":6972,"SourceStructureID":488,"TargetStructureID":517,"Label":"488-517 via Conventional from 40938 -> 40939","Type":"Conventional","Directional":true,"Links":[{"SourceID":40938,"TargetID":40939,"Directional":true}]},{"ID":6973,"SourceStructureID":488,"TargetStructureID":519,"Label":"488-519 via Conventional from 32310 -> 9298","Type":"Conventional","Directional":true,"Links":[{"SourceID":32310,"TargetID":9298,"Directional":true}]},{"ID":6974,"SourceStructureID":488,"TargetStructureID":11250,"Label":"488-11250 via Conventional from 40940 -> 40941","Type":"Conventional","Directional":true,"Links":[{"SourceID":40940,"TargetID":40941,"Directional":true}]},{"ID":6975,"SourceStructureID":492,"TargetStructureID":408,"Label":"492-408 via Conventional from 35044 -> 35043","Type":"Conventional","Directional":true,"Links":[{"SourceID":35044,"TargetID":35043,"Directional":true}]},{"ID":6976,"SourceStructureID":492,"TargetStructureID":6155,"Label":"492-6155 via Conventional from 35062 -> 35063","Type":"Conventional","Directional":true,"Links":[{"SourceID":35062,"TargetID":35063,"Directional":true}]},{"ID":6977,"SourceStructureID":492,"TargetStructureID":7054,"Label":"492-7054 via Conventional from 34987 -> 10895","Type":"Conventional","Directional":true,"Links":[{"SourceID":34987,"TargetID":10895,"Directional":true}]},{"ID":6978,"SourceStructureID":492,"TargetStructureID":26079,"Label":"492-26079 via Conventional from 35038 -> 48669","Type":"Conventional","Directional":true,"Links":[{"SourceID":35038,"TargetID":48669,"Directional":true}]},{"ID":6979,"SourceStructureID":492,"TargetStructureID":35046,"Label":"492-35046 via Conventional from 61993 -> 61992","Type":"Conventional","Directional":true,"Links":[{"SourceID":61993,"TargetID":61992,"Directional":true}]},{"ID":6980,"SourceStructureID":514,"TargetStructureID":478,"Label":"514-478 via Conventional from 1171 -> 19455, 1176 -> 4634, 1189 -> 4629, 4820 -> 19441, 4826 -> 19440","Type":"Conventional","Directional":true,"Links":[{"SourceID":1171,"TargetID":19455,"Directional":true},{"SourceID":1176,"TargetID":4634,"Directional":true},{"SourceID":1189,"TargetID":4629,"Directional":true},{"SourceID":4820,"TargetID":19441,"Directional":true},{"SourceID":4826,"TargetID":19440,"Directional":true}]},{"ID":6981,"SourceStructureID":514,"TargetStructureID":597,"Label":"514-597 via Conventional from 43399 -> 43400","Type":"Conventional","Directional":true,"Links":[{"SourceID":43399,"TargetID":43400,"Directional":true}]},{"ID":6982,"SourceStructureID":514,"TargetStructureID":992,"Label":"514-992 via Conventional from 59642 -> 15120, 59643 -> 15121","Type":"Conventional","Directional":true,"Links":[{"SourceID":59642,"TargetID":15120,"Directional":true},{"SourceID":59643,"TargetID":15121,"Directional":true}]},{"ID":6983,"SourceStructureID":514,"TargetStructureID":4567,"Label":"514-4567 via Conventional from 6210 -> 23293, 15469 -> 15596, 15580 -> 15573, 15581 -> 15575, 15595 -> 15594","Type":"Conventional","Directional":true,"Links":[{"SourceID":6210,"TargetID":23293,"Directional":true},{"SourceID":15469,"TargetID":15596,"Directional":true},{"SourceID":15580,"TargetID":15573,"Directional":true},{"SourceID":15581,"TargetID":15575,"Directional":true},{"SourceID":15595,"TargetID":15594,"Directional":true}]},{"ID":6984,"SourceStructureID":514,"TargetStructureID":4568,"Label":"514-4568 via Conventional from 4572 -> 43402","Type":"Conventional","Directional":true,"Links":[{"SourceID":4572,"TargetID":43402,"Directional":true}]},{"ID":6985,"SourceStructureID":514,"TargetStructureID":5150,"Label":"514-5150 via Conventional from 1304 -> 5172, 4576 -> 5167","Type":"Conventional","Directional":true,"Links":[{"SourceID":1304,"TargetID":5172,"Directional":true},{"SourceID":4576,"TargetID":5167,"Directional":true}]},{"ID":6986,"SourceStructureID":514,"TargetStructureID":6850,"Label":"514-6850 via Conventional from 4823 -> 6854","Type":"Conventional","Directional":true,"Links":[{"SourceID":4823,"TargetID":6854,"Directional":true}]},{"ID":6987,"SourceStructureID":514,"TargetStructureID":8485,"Label":"514-8485 via Conventional from 1147 -> 15366, 1151 -> 15370, 1154 -> 15371, 11666 -> 11667","Type":"Conventional","Directional":true,"Links":[{"SourceID":1147,"TargetID":15366,"Directional":true},{"SourceID":1151,"TargetID":15370,"Directional":true},{"SourceID":1154,"TargetID":15371,"Directional":true},{"SourceID":11666,"TargetID":11667,"Directional":true}]},{"ID":6988,"SourceStructureID":514,"TargetStructureID":9504,"Label":"514-9504 via Conventional from 1370 -> 9505, 16649 -> 16648","Type":"Conventional","Directional":true,"Links":[{"SourceID":1370,"TargetID":9505,"Directional":true},{"SourceID":16649,"TargetID":16648,"Directional":true}]},{"ID":6989,"SourceStructureID":514,"TargetStructureID":15377,"Label":"514-15377 via Conventional from 4817 -> 15378","Type":"Conventional","Directional":true,"Links":[{"SourceID":4817,"TargetID":15378,"Directional":true}]},{"ID":6990,"SourceStructureID":514,"TargetStructureID":25392,"Label":"514-25392 via Adherens from 25396 -> 25395","Type":"Adherens","Directional":true,"Links":[{"SourceID":25396,"TargetID":25395,"Directional":true}]},{"ID":6991,"SourceStructureID":514,"TargetStructureID":28913,"Label":"514-28913 via Conventional from 28930 -> 28928","Type":"Conventional","Directional":true,"Links":[{"SourceID":28930,"TargetID":28928,"Directional":true}]},{"ID":6992,"SourceStructureID":514,"TargetStructureID":60440,"Label":"514-60440 via Conventional from 3221 -> 60444, 3222 -> 60441, 3222 -> 60443","Type":"Conventional","Directional":true,"Links":[{"SourceID":3221,"TargetID":60444,"Directional":true},{"SourceID":3222,"TargetID":60441,"Directional":true},{"SourceID":3222,"TargetID":60443,"Directional":true}]},{"ID":6993,"SourceStructureID":514,"TargetStructureID":83461,"Label":"514-83461 via Conventional from 4585 -> 83467","Type":"Conventional","Directional":true,"Links":[{"SourceID":4585,"TargetID":83467,"Directional":true}]},{"ID":6994,"SourceStructureID":516,"TargetStructureID":514,"Label":"516-514 via Ribbon Synapse from 10848 -> 10849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10848,"TargetID":10849,"Directional":true}]},{"ID":6995,"SourceStructureID":516,"TargetStructureID":3257,"Label":"516-3257 via Ribbon Synapse from 6575 -> 16198, 16196 -> 16197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6575,"TargetID":16198,"Directional":true},{"SourceID":16196,"TargetID":16197,"Directional":true}]},{"ID":6996,"SourceStructureID":516,"TargetStructureID":3679,"Label":"516-3679 via Ribbon Synapse from 6188 -> 6186, 6190 -> 6189, 6510 -> 8015, 18402 -> 39335, 39329 -> 39330, 66147 -> 66148, 66149 -> 8013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6188,"TargetID":6186,"Directional":true},{"SourceID":6190,"TargetID":6189,"Directional":true},{"SourceID":6510,"TargetID":8015,"Directional":true},{"SourceID":18402,"TargetID":39335,"Directional":true},{"SourceID":39329,"TargetID":39330,"Directional":true},{"SourceID":66147,"TargetID":66148,"Directional":true},{"SourceID":66149,"TargetID":8013,"Directional":true}]},{"ID":6997,"SourceStructureID":516,"TargetStructureID":4850,"Label":"516-4850 via Ribbon Synapse from 6510 -> 14208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6510,"TargetID":14208,"Directional":true}]},{"ID":6998,"SourceStructureID":516,"TargetStructureID":5331,"Label":"516-5331 via Ribbon Synapse from 6385 -> 39172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6385,"TargetID":39172,"Directional":true}]},{"ID":6999,"SourceStructureID":516,"TargetStructureID":5860,"Label":"516-5860 via Ribbon Synapse from 16347 -> 16348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16347,"TargetID":16348,"Directional":true}]},{"ID":7000,"SourceStructureID":516,"TargetStructureID":6169,"Label":"516-6169 via Ribbon Synapse from 3737 -> 16330, 6384 -> 16224, 6385 -> 16223, 6391 -> 16247, 6393 -> 29692, 6399 -> 18392, 6405 -> 39341, 10833 -> 10832, 10835 -> 10836, 16177 -> 16176, 16204 -> 16205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3737,"TargetID":16330,"Directional":true},{"SourceID":6384,"TargetID":16224,"Directional":true},{"SourceID":6385,"TargetID":16223,"Directional":true},{"SourceID":6391,"TargetID":16247,"Directional":true},{"SourceID":6393,"TargetID":29692,"Directional":true},{"SourceID":6399,"TargetID":18392,"Directional":true},{"SourceID":6405,"TargetID":39341,"Directional":true},{"SourceID":10833,"TargetID":10832,"Directional":true},{"SourceID":10835,"TargetID":10836,"Directional":true},{"SourceID":16177,"TargetID":16176,"Directional":true},{"SourceID":16204,"TargetID":16205,"Directional":true}]},{"ID":7001,"SourceStructureID":516,"TargetStructureID":9260,"Label":"516-9260 via Ribbon Synapse from 6398 -> 39673, 6399 -> 39674, 6401 -> 39672, 64612 -> 64613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6398,"TargetID":39673,"Directional":true},{"SourceID":6399,"TargetID":39674,"Directional":true},{"SourceID":6401,"TargetID":39672,"Directional":true},{"SourceID":64612,"TargetID":64613,"Directional":true}]},{"ID":7002,"SourceStructureID":516,"TargetStructureID":32046,"Label":"516-32046 via Ribbon Synapse from 6506 -> 32048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6506,"TargetID":32048,"Directional":true}]},{"ID":7003,"SourceStructureID":516,"TargetStructureID":32371,"Label":"516-32371 via Ribbon Synapse from 3737 -> 32375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3737,"TargetID":32375,"Directional":true}]},{"ID":7004,"SourceStructureID":516,"TargetStructureID":39168,"Label":"516-39168 via Ribbon Synapse from 6384 -> 39170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6384,"TargetID":39170,"Directional":true}]},{"ID":7005,"SourceStructureID":516,"TargetStructureID":39201,"Label":"516-39201 via Ribbon Synapse from 16204 -> 64582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16204,"TargetID":64582,"Directional":true}]},{"ID":7006,"SourceStructureID":516,"TargetStructureID":39208,"Label":"516-39208 via Ribbon Synapse from 6188 -> 39211, 6498 -> 39256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6188,"TargetID":39211,"Directional":true},{"SourceID":6498,"TargetID":39256,"Directional":true}]},{"ID":7007,"SourceStructureID":516,"TargetStructureID":39244,"Label":"516-39244 via Ribbon Synapse from 6507 -> 39247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6507,"TargetID":39247,"Directional":true}]},{"ID":7008,"SourceStructureID":516,"TargetStructureID":39324,"Label":"516-39324 via Ribbon Synapse from 39329 -> 39328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39329,"TargetID":39328,"Directional":true}]},{"ID":7009,"SourceStructureID":516,"TargetStructureID":39331,"Label":"516-39331 via Ribbon Synapse from 18402 -> 39336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18402,"TargetID":39336,"Directional":true}]},{"ID":7010,"SourceStructureID":516,"TargetStructureID":39342,"Label":"516-39342 via Ribbon Synapse from 6391 -> 114817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6391,"TargetID":114817,"Directional":true}]},{"ID":7011,"SourceStructureID":516,"TargetStructureID":39516,"Label":"516-39516 via Ribbon Synapse from 16177 -> 39519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16177,"TargetID":39519,"Directional":true}]},{"ID":7012,"SourceStructureID":516,"TargetStructureID":39560,"Label":"516-39560 via Ribbon Synapse from 39566 -> 39565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39566,"TargetID":39565,"Directional":true}]},{"ID":7013,"SourceStructureID":516,"TargetStructureID":39575,"Label":"516-39575 via Ribbon Synapse from 16347 -> 39579","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16347,"TargetID":39579,"Directional":true}]},{"ID":7014,"SourceStructureID":516,"TargetStructureID":39590,"Label":"516-39590 via Ribbon Synapse from 6393 -> 39593","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6393,"TargetID":39593,"Directional":true}]},{"ID":7015,"SourceStructureID":516,"TargetStructureID":39688,"Label":"516-39688 via Ribbon Synapse from 39692 -> 39691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39692,"TargetID":39691,"Directional":true}]},{"ID":7016,"SourceStructureID":516,"TargetStructureID":40856,"Label":"516-40856 via Ribbon Synapse from 123169 -> 123168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123169,"TargetID":123168,"Directional":true}]},{"ID":7017,"SourceStructureID":516,"TargetStructureID":40863,"Label":"516-40863 via Ribbon Synapse from 16349 -> 40864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16349,"TargetID":40864,"Directional":true}]},{"ID":7018,"SourceStructureID":517,"TargetStructureID":514,"Label":"517-514 via Ribbon Synapse from 10812 -> 10811, 16411 -> 1591, 16421 -> 3081, 16422 -> 3082, 16575 -> 1602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10812,"TargetID":10811,"Directional":true},{"SourceID":16411,"TargetID":1591,"Directional":true},{"SourceID":16421,"TargetID":3081,"Directional":true},{"SourceID":16422,"TargetID":3082,"Directional":true},{"SourceID":16575,"TargetID":1602,"Directional":true}]},{"ID":7019,"SourceStructureID":517,"TargetStructureID":591,"Label":"517-591 via Ribbon Synapse from 14947 -> 40892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14947,"TargetID":40892,"Directional":true}]},{"ID":7020,"SourceStructureID":517,"TargetStructureID":3679,"Label":"517-3679 via Ribbon Synapse from 14945 -> 3714, 14946 -> 3711, 14947 -> 14915, 16420 -> 16419, 16428 -> 16429, 16442 -> 16431, 16443 -> 16432, 19155 -> 19156, 19157 -> 19160, 19158 -> 19159, 19161 -> 92719, 19163 -> 33031, 19164 -> 35626, 41038 -> 3722, 66136 -> 66137","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14945,"TargetID":3714,"Directional":true},{"SourceID":14946,"TargetID":3711,"Directional":true},{"SourceID":14947,"TargetID":14915,"Directional":true},{"SourceID":16420,"TargetID":16419,"Directional":true},{"SourceID":16428,"TargetID":16429,"Directional":true},{"SourceID":16442,"TargetID":16431,"Directional":true},{"SourceID":16443,"TargetID":16432,"Directional":true},{"SourceID":19155,"TargetID":19156,"Directional":true},{"SourceID":19157,"TargetID":19160,"Directional":true},{"SourceID":19158,"TargetID":19159,"Directional":true},{"SourceID":19161,"TargetID":92719,"Directional":true},{"SourceID":19163,"TargetID":33031,"Directional":true},{"SourceID":19164,"TargetID":35626,"Directional":true},{"SourceID":41038,"TargetID":3722,"Directional":true},{"SourceID":66136,"TargetID":66137,"Directional":true}]},{"ID":7021,"SourceStructureID":517,"TargetStructureID":4850,"Label":"517-4850 via Ribbon Synapse from 11624 -> 24300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11624,"TargetID":24300,"Directional":true}]},{"ID":7022,"SourceStructureID":517,"TargetStructureID":4943,"Label":"517-4943 via Ribbon Synapse from 19157 -> 40987, 19158 -> 40979","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19157,"TargetID":40987,"Directional":true},{"SourceID":19158,"TargetID":40979,"Directional":true}]},{"ID":7023,"SourceStructureID":517,"TargetStructureID":5303,"Label":"517-5303 via Ribbon Synapse from 19164 -> 35625","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19164,"TargetID":35625,"Directional":true}]},{"ID":7024,"SourceStructureID":517,"TargetStructureID":5609,"Label":"517-5609 via Ribbon Synapse from 16422 -> 20659, 16428 -> 20661","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16422,"TargetID":20659,"Directional":true},{"SourceID":16428,"TargetID":20661,"Directional":true}]},{"ID":7025,"SourceStructureID":517,"TargetStructureID":6169,"Label":"517-6169 via Ribbon Synapse from 6903 -> 18158, 10814 -> 11623, 11624 -> 9460, 14165 -> 14166, 41034 -> 41035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6903,"TargetID":18158,"Directional":true},{"SourceID":10814,"TargetID":11623,"Directional":true},{"SourceID":11624,"TargetID":9460,"Directional":true},{"SourceID":14165,"TargetID":14166,"Directional":true},{"SourceID":41034,"TargetID":41035,"Directional":true}]},{"ID":7026,"SourceStructureID":517,"TargetStructureID":40896,"Label":"517-40896 via Ribbon Synapse from 41024 -> 41023","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41024,"TargetID":41023,"Directional":true}]},{"ID":7027,"SourceStructureID":517,"TargetStructureID":40919,"Label":"517-40919 via Ribbon Synapse from 19165 -> 40922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19165,"TargetID":40922,"Directional":true}]},{"ID":7028,"SourceStructureID":517,"TargetStructureID":40927,"Label":"517-40927 via Ribbon Synapse from 16421 -> 40930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16421,"TargetID":40930,"Directional":true}]},{"ID":7029,"SourceStructureID":517,"TargetStructureID":40934,"Label":"517-40934 via Ribbon Synapse from 14946 -> 40936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14946,"TargetID":40936,"Directional":true}]},{"ID":7030,"SourceStructureID":517,"TargetStructureID":40951,"Label":"517-40951 via Ribbon Synapse from 19163 -> 51427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19163,"TargetID":51427,"Directional":true}]},{"ID":7031,"SourceStructureID":517,"TargetStructureID":40956,"Label":"517-40956 via Ribbon Synapse from 19162 -> 40959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19162,"TargetID":40959,"Directional":true}]},{"ID":7032,"SourceStructureID":517,"TargetStructureID":40965,"Label":"517-40965 via Ribbon Synapse from 19155 -> 40968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19155,"TargetID":40968,"Directional":true}]},{"ID":7033,"SourceStructureID":517,"TargetStructureID":60523,"Label":"517-60523 via Ribbon Synapse from 19166 -> 123156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19166,"TargetID":123156,"Directional":true}]},{"ID":7034,"SourceStructureID":517,"TargetStructureID":89887,"Label":"517-89887 via Ribbon Synapse from 89893 -> 89894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89893,"TargetID":89894,"Directional":true}]},{"ID":7035,"SourceStructureID":518,"TargetStructureID":179,"Label":"518-179 via Ribbon Synapse from 3442 -> 25302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3442,"TargetID":25302,"Directional":true}]},{"ID":7036,"SourceStructureID":518,"TargetStructureID":476,"Label":"518-476 via Ribbon Synapse from 2303 -> 2300, 2323 -> 2331, 2325 -> 2333, 3354 -> 16029, 3371 -> 14713, 3380 -> 14741, 3387 -> 14999, 3399 -> 14998, 3413 -> 14992, 3419 -> 14996, 3439 -> 2442, 3442 -> 18012, 3445 -> 32137, 3457 -> 2414, 3459 -> 2416, 3475 -> 2448, 3487 -> 18015, 3503 -> 36695, 3519 -> 18013, 5783 -> 37191, 14722 -> 3305, 18014 -> 2441","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2303,"TargetID":2300,"Directional":true},{"SourceID":2323,"TargetID":2331,"Directional":true},{"SourceID":2325,"TargetID":2333,"Directional":true},{"SourceID":3354,"TargetID":16029,"Directional":true},{"SourceID":3371,"TargetID":14713,"Directional":true},{"SourceID":3380,"TargetID":14741,"Directional":true},{"SourceID":3387,"TargetID":14999,"Directional":true},{"SourceID":3399,"TargetID":14998,"Directional":true},{"SourceID":3413,"TargetID":14992,"Directional":true},{"SourceID":3419,"TargetID":14996,"Directional":true},{"SourceID":3439,"TargetID":2442,"Directional":true},{"SourceID":3442,"TargetID":18012,"Directional":true},{"SourceID":3445,"TargetID":32137,"Directional":true},{"SourceID":3457,"TargetID":2414,"Directional":true},{"SourceID":3459,"TargetID":2416,"Directional":true},{"SourceID":3475,"TargetID":2448,"Directional":true},{"SourceID":3487,"TargetID":18015,"Directional":true},{"SourceID":3503,"TargetID":36695,"Directional":true},{"SourceID":3519,"TargetID":18013,"Directional":true},{"SourceID":5783,"TargetID":37191,"Directional":true},{"SourceID":14722,"TargetID":3305,"Directional":true},{"SourceID":18014,"TargetID":2441,"Directional":true}]},{"ID":7037,"SourceStructureID":518,"TargetStructureID":514,"Label":"518-514 via Ribbon Synapse from 3303 -> 3296, 3471 -> 37188, 14717 -> 1554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3303,"TargetID":3296,"Directional":true},{"SourceID":3471,"TargetID":37188,"Directional":true},{"SourceID":14717,"TargetID":1554,"Directional":true}]},{"ID":7038,"SourceStructureID":518,"TargetStructureID":591,"Label":"518-591 via Ribbon Synapse from 3371 -> 36470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3371,"TargetID":36470,"Directional":true}]},{"ID":7039,"SourceStructureID":518,"TargetStructureID":4835,"Label":"518-4835 via Ribbon Synapse from 3390 -> 36743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3390,"TargetID":36743,"Directional":true}]},{"ID":7040,"SourceStructureID":518,"TargetStructureID":4941,"Label":"518-4941 via Ribbon Synapse from 3439 -> 118354","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3439,"TargetID":118354,"Directional":true}]},{"ID":7041,"SourceStructureID":518,"TargetStructureID":4942,"Label":"518-4942 via Ribbon Synapse from 3475 -> 118357","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3475,"TargetID":118357,"Directional":true}]},{"ID":7042,"SourceStructureID":518,"TargetStructureID":5006,"Label":"518-5006 via Ribbon Synapse from 3303 -> 6547, 3459 -> 18866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3303,"TargetID":6547,"Directional":true},{"SourceID":3459,"TargetID":18866,"Directional":true}]},{"ID":7043,"SourceStructureID":518,"TargetStructureID":5394,"Label":"518-5394 via Ribbon Synapse from 3380 -> 22813, 3387 -> 22814","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3380,"TargetID":22813,"Directional":true},{"SourceID":3387,"TargetID":22814,"Directional":true}]},{"ID":7044,"SourceStructureID":518,"TargetStructureID":9023,"Label":"518-9023 via Ribbon Synapse from 14722 -> 36672, 14723 -> 36673","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14722,"TargetID":36672,"Directional":true},{"SourceID":14723,"TargetID":36673,"Directional":true}]},{"ID":7045,"SourceStructureID":518,"TargetStructureID":13313,"Label":"518-13313 via Ribbon Synapse from 3449 -> 37185, 3486 -> 37190","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3449,"TargetID":37185,"Directional":true},{"SourceID":3486,"TargetID":37190,"Directional":true}]},{"ID":7046,"SourceStructureID":518,"TargetStructureID":32848,"Label":"518-32848 via Ribbon Synapse from 3354 -> 36414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3354,"TargetID":36414,"Directional":true}]},{"ID":7047,"SourceStructureID":518,"TargetStructureID":36276,"Label":"518-36276 via Ribbon Synapse from 2303 -> 36278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2303,"TargetID":36278,"Directional":true}]},{"ID":7048,"SourceStructureID":518,"TargetStructureID":36481,"Label":"518-36481 via Ribbon Synapse from 2325 -> 36495, 3425 -> 36494, 3427 -> 36493, 14711 -> 36484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":2325,"TargetID":36495,"Directional":true},{"SourceID":3425,"TargetID":36494,"Directional":true},{"SourceID":3427,"TargetID":36493,"Directional":true},{"SourceID":14711,"TargetID":36484,"Directional":true}]},{"ID":7049,"SourceStructureID":518,"TargetStructureID":36501,"Label":"518-36501 via Ribbon Synapse from 3427 -> 36503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3427,"TargetID":36503,"Directional":true}]},{"ID":7050,"SourceStructureID":518,"TargetStructureID":36650,"Label":"518-36650 via Ribbon Synapse from 3435 -> 36653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3435,"TargetID":36653,"Directional":true}]},{"ID":7051,"SourceStructureID":518,"TargetStructureID":36661,"Label":"518-36661 via Ribbon Synapse from 3471 -> 42787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3471,"TargetID":42787,"Directional":true}]},{"ID":7052,"SourceStructureID":518,"TargetStructureID":36724,"Label":"518-36724 via Ribbon Synapse from 3390 -> 36732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3390,"TargetID":36732,"Directional":true}]},{"ID":7053,"SourceStructureID":518,"TargetStructureID":37183,"Label":"518-37183 via Ribbon Synapse from 5783 -> 118374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5783,"TargetID":118374,"Directional":true}]},{"ID":7054,"SourceStructureID":518,"TargetStructureID":49487,"Label":"518-49487 via Ribbon Synapse from 18014 -> 118358","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18014,"TargetID":118358,"Directional":true}]},{"ID":7055,"SourceStructureID":518,"TargetStructureID":87929,"Label":"518-87929 via Ribbon Synapse from 18867 -> 87932","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18867,"TargetID":87932,"Directional":true}]},{"ID":7056,"SourceStructureID":519,"TargetStructureID":179,"Label":"519-179 via Conventional from 9292 -> 9338","Type":"Conventional","Directional":true,"Links":[{"SourceID":9292,"TargetID":9338,"Directional":true}]},{"ID":7057,"SourceStructureID":519,"TargetStructureID":179,"Label":"519-179 via Ribbon Synapse from 9284 -> 25788, 9299 -> 9331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9284,"TargetID":25788,"Directional":true},{"SourceID":9299,"TargetID":9331,"Directional":true}]},{"ID":7058,"SourceStructureID":519,"TargetStructureID":476,"Label":"519-476 via Ribbon Synapse from 9237 -> 25373, 16518 -> 16519, 16520 -> 16521, 22616 -> 3345, 25435 -> 25434","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9237,"TargetID":25373,"Directional":true},{"SourceID":16518,"TargetID":16519,"Directional":true},{"SourceID":16520,"TargetID":16521,"Directional":true},{"SourceID":22616,"TargetID":3345,"Directional":true},{"SourceID":25435,"TargetID":25434,"Directional":true}]},{"ID":7059,"SourceStructureID":519,"TargetStructureID":488,"Label":"519-488 via Ribbon Synapse from 9297 -> 39850","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9297,"TargetID":39850,"Directional":true}]},{"ID":7060,"SourceStructureID":519,"TargetStructureID":514,"Label":"519-514 via Ribbon Synapse from 1376 -> 1383, 1464 -> 1466, 9237 -> 3334, 9241 -> 3335, 9243 -> 3579, 9250 -> 3340, 9278 -> 15081, 9282 -> 93914, 9299 -> 9302, 13807 -> 13806, 13810 -> 13809, 16154 -> 16155, 16156 -> 16157, 16158 -> 3596, 16520 -> 16541, 16531 -> 16522, 16533 -> 16534, 16537 -> 16536, 22589 -> 1448, 22617 -> 3282, 133246 -> 133245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1376,"TargetID":1383,"Directional":true},{"SourceID":1464,"TargetID":1466,"Directional":true},{"SourceID":9237,"TargetID":3334,"Directional":true},{"SourceID":9241,"TargetID":3335,"Directional":true},{"SourceID":9243,"TargetID":3579,"Directional":true},{"SourceID":9250,"TargetID":3340,"Directional":true},{"SourceID":9278,"TargetID":15081,"Directional":true},{"SourceID":9282,"TargetID":93914,"Directional":true},{"SourceID":9299,"TargetID":9302,"Directional":true},{"SourceID":13807,"TargetID":13806,"Directional":true},{"SourceID":13810,"TargetID":13809,"Directional":true},{"SourceID":16154,"TargetID":16155,"Directional":true},{"SourceID":16156,"TargetID":16157,"Directional":true},{"SourceID":16158,"TargetID":3596,"Directional":true},{"SourceID":16520,"TargetID":16541,"Directional":true},{"SourceID":16531,"TargetID":16522,"Directional":true},{"SourceID":16533,"TargetID":16534,"Directional":true},{"SourceID":16537,"TargetID":16536,"Directional":true},{"SourceID":22589,"TargetID":1448,"Directional":true},{"SourceID":22617,"TargetID":3282,"Directional":true},{"SourceID":133246,"TargetID":133245,"Directional":true}]},{"ID":7061,"SourceStructureID":519,"TargetStructureID":2610,"Label":"519-2610 via Ribbon Synapse from 1468 -> 66173, 9254 -> 9255, 66171 -> 66172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1468,"TargetID":66173,"Directional":true},{"SourceID":9254,"TargetID":9255,"Directional":true},{"SourceID":66171,"TargetID":66172,"Directional":true}]},{"ID":7062,"SourceStructureID":519,"TargetStructureID":5303,"Label":"519-5303 via Ribbon Synapse from 1468 -> 8744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1468,"TargetID":8744,"Directional":true}]},{"ID":7063,"SourceStructureID":519,"TargetStructureID":9260,"Label":"519-9260 via Postsynapse from 9259 -> 9272","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":9259,"TargetID":9272,"Directional":true}]},{"ID":7064,"SourceStructureID":519,"TargetStructureID":25327,"Label":"519-25327 via Ribbon Synapse from 16518 -> 25333, 25332 -> 25331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16518,"TargetID":25333,"Directional":true},{"SourceID":25332,"TargetID":25331,"Directional":true}]},{"ID":7065,"SourceStructureID":519,"TargetStructureID":25359,"Label":"519-25359 via Ribbon Synapse from 16533 -> 39871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16533,"TargetID":39871,"Directional":true}]},{"ID":7066,"SourceStructureID":519,"TargetStructureID":25385,"Label":"519-25385 via Ribbon Synapse from 9278 -> 25855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9278,"TargetID":25855,"Directional":true}]},{"ID":7067,"SourceStructureID":519,"TargetStructureID":25429,"Label":"519-25429 via Ribbon Synapse from 16531 -> 25430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16531,"TargetID":25430,"Directional":true}]},{"ID":7068,"SourceStructureID":519,"TargetStructureID":25440,"Label":"519-25440 via Ribbon Synapse from 9243 -> 25459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9243,"TargetID":25459,"Directional":true}]},{"ID":7069,"SourceStructureID":519,"TargetStructureID":25529,"Label":"519-25529 via Ribbon Synapse from 13807 -> 25530","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13807,"TargetID":25530,"Directional":true}]},{"ID":7070,"SourceStructureID":519,"TargetStructureID":25551,"Label":"519-25551 via Ribbon Synapse from 25470 -> 101275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25470,"TargetID":101275,"Directional":true}]},{"ID":7071,"SourceStructureID":519,"TargetStructureID":25561,"Label":"519-25561 via Ribbon Synapse from 25470 -> 25709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25470,"TargetID":25709,"Directional":true}]},{"ID":7072,"SourceStructureID":519,"TargetStructureID":25575,"Label":"519-25575 via Ribbon Synapse from 16156 -> 25634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16156,"TargetID":25634,"Directional":true}]},{"ID":7073,"SourceStructureID":521,"TargetStructureID":478,"Label":"521-478 via Conventional from 9640 -> 613","Type":"Conventional","Directional":true,"Links":[{"SourceID":9640,"TargetID":613,"Directional":true}]},{"ID":7074,"SourceStructureID":525,"TargetStructureID":9693,"Label":"525-9693 via Conventional from 6293 -> 9768, 6294 -> 9767","Type":"Conventional","Directional":true,"Links":[{"SourceID":6293,"TargetID":9768,"Directional":true},{"SourceID":6294,"TargetID":9767,"Directional":true}]},{"ID":7075,"SourceStructureID":525,"TargetStructureID":46741,"Label":"525-46741 via Conventional from 6254 -> 46748","Type":"Conventional","Directional":true,"Links":[{"SourceID":6254,"TargetID":46748,"Directional":true}]},{"ID":7076,"SourceStructureID":525,"TargetStructureID":92880,"Label":"525-92880 via Conventional from 132750 -> 132749","Type":"Conventional","Directional":true,"Links":[{"SourceID":132750,"TargetID":132749,"Directional":true}]},{"ID":7077,"SourceStructureID":545,"TargetStructureID":176,"Label":"545-176 via Conventional from 546 -> 5730","Type":"Conventional","Directional":true,"Links":[{"SourceID":546,"TargetID":5730,"Directional":true}]},{"ID":7078,"SourceStructureID":545,"TargetStructureID":5303,"Label":"545-5303 via Conventional from 24043 -> 24042","Type":"Conventional","Directional":true,"Links":[{"SourceID":24043,"TargetID":24042,"Directional":true}]},{"ID":7079,"SourceStructureID":573,"TargetStructureID":572,"Label":"573-572 via Conventional from 90169 -> 40238, 90171 -> 90172","Type":"Conventional","Directional":true,"Links":[{"SourceID":90169,"TargetID":40238,"Directional":true},{"SourceID":90171,"TargetID":90172,"Directional":true}]},{"ID":7080,"SourceStructureID":573,"TargetStructureID":6166,"Label":"573-6166 via Conventional from 22315 -> 22320","Type":"Conventional","Directional":true,"Links":[{"SourceID":22315,"TargetID":22320,"Directional":true}]},{"ID":7081,"SourceStructureID":579,"TargetStructureID":5345,"Label":"579-5345 via Ribbon Synapse from 18461 -> 18462, 18464 -> 18463, 88874 -> 88873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18461,"TargetID":18462,"Directional":true},{"SourceID":18464,"TargetID":18463,"Directional":true},{"SourceID":88874,"TargetID":88873,"Directional":true}]},{"ID":7082,"SourceStructureID":579,"TargetStructureID":32312,"Label":"579-32312 via Ribbon Synapse from 11041 -> 32315, 64543 -> 32315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11041,"TargetID":32315,"Directional":true},{"SourceID":64543,"TargetID":32315,"Directional":true}]},{"ID":7083,"SourceStructureID":579,"TargetStructureID":129144,"Label":"579-129144 via Ribbon Synapse from 18461 -> 129153, 18464 -> 129152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18461,"TargetID":129153,"Directional":true},{"SourceID":18464,"TargetID":129152,"Directional":true}]},{"ID":7084,"SourceStructureID":590,"TargetStructureID":2063,"Label":"590-2063 via Conventional from 81514 -> 81515","Type":"Conventional","Directional":true,"Links":[{"SourceID":81514,"TargetID":81515,"Directional":true}]},{"ID":7085,"SourceStructureID":591,"TargetStructureID":171,"Label":"591-171 via Conventional from 15442 -> 5725","Type":"Conventional","Directional":true,"Links":[{"SourceID":15442,"TargetID":5725,"Directional":true}]},{"ID":7086,"SourceStructureID":591,"TargetStructureID":476,"Label":"591-476 via Conventional from 14956 -> 2386, 16445 -> 16444","Type":"Conventional","Directional":true,"Links":[{"SourceID":14956,"TargetID":2386,"Directional":true},{"SourceID":16445,"TargetID":16444,"Directional":true}]},{"ID":7087,"SourceStructureID":591,"TargetStructureID":517,"Label":"591-517 via Conventional from 40888 -> 40889, 40890 -> 40891","Type":"Conventional","Directional":true,"Links":[{"SourceID":40888,"TargetID":40889,"Directional":true},{"SourceID":40890,"TargetID":40891,"Directional":true}]},{"ID":7088,"SourceStructureID":591,"TargetStructureID":518,"Label":"591-518 via Conventional from 36441 -> 3366, 36468 -> 3362","Type":"Conventional","Directional":true,"Links":[{"SourceID":36441,"TargetID":3366,"Directional":true},{"SourceID":36468,"TargetID":3362,"Directional":true}]},{"ID":7089,"SourceStructureID":591,"TargetStructureID":6561,"Label":"591-6561 via Conventional from 6550 -> 6563, 6550 -> 8345, 6552 -> 8301","Type":"Conventional","Directional":true,"Links":[{"SourceID":6550,"TargetID":6563,"Directional":true},{"SourceID":6550,"TargetID":8345,"Directional":true},{"SourceID":6552,"TargetID":8301,"Directional":true}]},{"ID":7090,"SourceStructureID":591,"TargetStructureID":8586,"Label":"591-8586 via Conventional from 10348 -> 10349, 10351 -> 8604","Type":"Conventional","Directional":true,"Links":[{"SourceID":10348,"TargetID":10349,"Directional":true},{"SourceID":10351,"TargetID":8604,"Directional":true}]},{"ID":7091,"SourceStructureID":591,"TargetStructureID":10412,"Label":"591-10412 via Conventional from 10379 -> 10420, 10423 -> 10422","Type":"Conventional","Directional":true,"Links":[{"SourceID":10379,"TargetID":10420,"Directional":true},{"SourceID":10423,"TargetID":10422,"Directional":true}]},{"ID":7092,"SourceStructureID":591,"TargetStructureID":15942,"Label":"591-15942 via Conventional from 10289 -> 15960, 15959 -> 15958","Type":"Conventional","Directional":true,"Links":[{"SourceID":10289,"TargetID":15960,"Directional":true},{"SourceID":15959,"TargetID":15958,"Directional":true}]},{"ID":7093,"SourceStructureID":591,"TargetStructureID":15979,"Label":"591-15979 via Conventional from 36445 -> 36446, 36447 -> 36448, 36452 -> 36453, 36454 -> 36455, 36459 -> 36460","Type":"Conventional","Directional":true,"Links":[{"SourceID":36445,"TargetID":36446,"Directional":true},{"SourceID":36447,"TargetID":36448,"Directional":true},{"SourceID":36452,"TargetID":36453,"Directional":true},{"SourceID":36454,"TargetID":36455,"Directional":true},{"SourceID":36459,"TargetID":36460,"Directional":true}]},{"ID":7094,"SourceStructureID":591,"TargetStructureID":89253,"Label":"591-89253 via Conventional from 10299 -> 89255, 89256 -> 89257","Type":"Conventional","Directional":true,"Links":[{"SourceID":10299,"TargetID":89255,"Directional":true},{"SourceID":89256,"TargetID":89257,"Directional":true}]},{"ID":7095,"SourceStructureID":592,"TargetStructureID":591,"Label":"592-591 via Conventional from 10084 -> 10083","Type":"Conventional","Directional":true,"Links":[{"SourceID":10084,"TargetID":10083,"Directional":true}]},{"ID":7096,"SourceStructureID":593,"TargetStructureID":162,"Label":"593-162 via Ribbon Synapse from 70257 -> 70258","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70257,"TargetID":70258,"Directional":true}]},{"ID":7097,"SourceStructureID":593,"TargetStructureID":596,"Label":"593-596 via Ribbon Synapse from 33858 -> 59136, 59100 -> 59136, 63047 -> 68611, 68610 -> 68611, 69360 -> 59136, 115704 -> 59136","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33858,"TargetID":59136,"Directional":true},{"SourceID":59100,"TargetID":59136,"Directional":true},{"SourceID":63047,"TargetID":68611,"Directional":true},{"SourceID":68610,"TargetID":68611,"Directional":true},{"SourceID":69360,"TargetID":59136,"Directional":true},{"SourceID":115704,"TargetID":59136,"Directional":true}]},{"ID":7098,"SourceStructureID":593,"TargetStructureID":4890,"Label":"593-4890 via BC Conventional Synapse from 68139 -> 68143","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68139,"TargetID":68143,"Directional":true}]},{"ID":7099,"SourceStructureID":593,"TargetStructureID":4890,"Label":"593-4890 via Ribbon Synapse from 7705 -> 6104, 36527 -> 6109, 49568 -> 6107, 49572 -> 64913, 130733 -> 6108","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7705,"TargetID":6104,"Directional":true},{"SourceID":36527,"TargetID":6109,"Directional":true},{"SourceID":49568,"TargetID":6107,"Directional":true},{"SourceID":49572,"TargetID":64913,"Directional":true},{"SourceID":130733,"TargetID":6108,"Directional":true}]},{"ID":7100,"SourceStructureID":593,"TargetStructureID":5117,"Label":"593-5117 via Ribbon Synapse from 15889 -> 61805, 28430 -> 66803, 65503 -> 65504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15889,"TargetID":61805,"Directional":true},{"SourceID":28430,"TargetID":66803,"Directional":true},{"SourceID":65503,"TargetID":65504,"Directional":true}]},{"ID":7101,"SourceStructureID":593,"TargetStructureID":5118,"Label":"593-5118 via Ribbon Synapse from 120216 -> 120223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120216,"TargetID":120223,"Directional":true}]},{"ID":7102,"SourceStructureID":593,"TargetStructureID":5618,"Label":"593-5618 via BC Conventional Synapse from 65959 -> 65961","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65959,"TargetID":65961,"Directional":true}]},{"ID":7103,"SourceStructureID":593,"TargetStructureID":5618,"Label":"593-5618 via Ribbon Synapse from 59627 -> 66508, 130874 -> 66541","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59627,"TargetID":66508,"Directional":true},{"SourceID":130874,"TargetID":66541,"Directional":true}]},{"ID":7104,"SourceStructureID":593,"TargetStructureID":6857,"Label":"593-6857 via Ribbon Synapse from 59625 -> 6886, 59626 -> 6886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59625,"TargetID":6886,"Directional":true},{"SourceID":59626,"TargetID":6886,"Directional":true}]},{"ID":7105,"SourceStructureID":593,"TargetStructureID":8033,"Label":"593-8033 via Ribbon Synapse from 130778 -> 68437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130778,"TargetID":68437,"Directional":true}]},{"ID":7106,"SourceStructureID":593,"TargetStructureID":8577,"Label":"593-8577 via Ribbon Synapse from 15899 -> 15886, 61957 -> 61970, 61957 -> 115685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15899,"TargetID":15886,"Directional":true},{"SourceID":61957,"TargetID":61970,"Directional":true},{"SourceID":61957,"TargetID":115685,"Directional":true}]},{"ID":7107,"SourceStructureID":593,"TargetStructureID":8579,"Label":"593-8579 via BC Conventional Synapse from 52498 -> 61875","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52498,"TargetID":61875,"Directional":true}]},{"ID":7108,"SourceStructureID":593,"TargetStructureID":8579,"Label":"593-8579 via Ribbon Synapse from 7717 -> 62868, 28429 -> 59113, 61957 -> 65260, 65858 -> 65862, 66480 -> 66482, 130775 -> 61874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7717,"TargetID":62868,"Directional":true},{"SourceID":28429,"TargetID":59113,"Directional":true},{"SourceID":61957,"TargetID":65260,"Directional":true},{"SourceID":65858,"TargetID":65862,"Directional":true},{"SourceID":66480,"TargetID":66482,"Directional":true},{"SourceID":130775,"TargetID":61874,"Directional":true}]},{"ID":7109,"SourceStructureID":593,"TargetStructureID":8580,"Label":"593-8580 via BC Conventional Synapse from 115726 -> 59653","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115726,"TargetID":59653,"Directional":true}]},{"ID":7110,"SourceStructureID":593,"TargetStructureID":8580,"Label":"593-8580 via Ribbon Synapse from 36524 -> 59648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36524,"TargetID":59648,"Directional":true}]},{"ID":7111,"SourceStructureID":593,"TargetStructureID":8588,"Label":"593-8588 via Ribbon Synapse from 7710 -> 32714, 7764 -> 32709, 52470 -> 59729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7710,"TargetID":32714,"Directional":true},{"SourceID":7764,"TargetID":32709,"Directional":true},{"SourceID":52470,"TargetID":59729,"Directional":true}]},{"ID":7112,"SourceStructureID":593,"TargetStructureID":12687,"Label":"593-12687 via BC Conventional Synapse from 130708 -> 130709","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130708,"TargetID":130709,"Directional":true}]},{"ID":7113,"SourceStructureID":593,"TargetStructureID":12804,"Label":"593-12804 via BC Conventional Synapse from 130995 -> 115670","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130995,"TargetID":115670,"Directional":true}]},{"ID":7114,"SourceStructureID":593,"TargetStructureID":12804,"Label":"593-12804 via Ribbon Synapse from 59700 -> 59702","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59700,"TargetID":59702,"Directional":true}]},{"ID":7115,"SourceStructureID":593,"TargetStructureID":15796,"Label":"593-15796 via Ribbon Synapse from 62886 -> 20135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62886,"TargetID":20135,"Directional":true}]},{"ID":7116,"SourceStructureID":593,"TargetStructureID":18282,"Label":"593-18282 via Unknown from 87215 -> 87216","Type":"Unknown","Directional":true,"Links":[{"SourceID":87215,"TargetID":87216,"Directional":true}]},{"ID":7117,"SourceStructureID":593,"TargetStructureID":20537,"Label":"593-20537 via Ribbon Synapse from 115678 -> 24138, 115679 -> 24138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115678,"TargetID":24138,"Directional":true},{"SourceID":115679,"TargetID":24138,"Directional":true}]},{"ID":7118,"SourceStructureID":593,"TargetStructureID":22974,"Label":"593-22974 via BC Conventional Synapse from 115690 -> 68546","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115690,"TargetID":68546,"Directional":true}]},{"ID":7119,"SourceStructureID":593,"TargetStructureID":22974,"Label":"593-22974 via Ribbon Synapse from 7713 -> 61822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7713,"TargetID":61822,"Directional":true}]},{"ID":7120,"SourceStructureID":593,"TargetStructureID":24148,"Label":"593-24148 via BC Conventional Synapse from 7842 -> 24149","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":7842,"TargetID":24149,"Directional":true}]},{"ID":7121,"SourceStructureID":593,"TargetStructureID":31024,"Label":"593-31024 via Ribbon Synapse from 28434 -> 63042","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28434,"TargetID":63042,"Directional":true}]},{"ID":7122,"SourceStructureID":593,"TargetStructureID":31161,"Label":"593-31161 via Ribbon Synapse from 7764 -> 67545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7764,"TargetID":67545,"Directional":true}]},{"ID":7123,"SourceStructureID":593,"TargetStructureID":32913,"Label":"593-32913 via Ribbon Synapse from 66440 -> 66442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66440,"TargetID":66442,"Directional":true}]},{"ID":7124,"SourceStructureID":593,"TargetStructureID":33092,"Label":"593-33092 via Ribbon Synapse from 66630 -> 66631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66630,"TargetID":66631,"Directional":true}]},{"ID":7125,"SourceStructureID":593,"TargetStructureID":36516,"Label":"593-36516 via Ribbon Synapse from 36597 -> 36595, 130712 -> 135146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36597,"TargetID":36595,"Directional":true},{"SourceID":130712,"TargetID":135146,"Directional":true}]},{"ID":7126,"SourceStructureID":593,"TargetStructureID":39973,"Label":"593-39973 via BC Conventional Synapse from 115688 -> 115687","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115688,"TargetID":115687,"Directional":true}]},{"ID":7127,"SourceStructureID":593,"TargetStructureID":45574,"Label":"593-45574 via Ribbon Synapse from 67717 -> 67842","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67717,"TargetID":67842,"Directional":true}]},{"ID":7128,"SourceStructureID":593,"TargetStructureID":47104,"Label":"593-47104 via Ribbon Synapse from 50442 -> 87205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50442,"TargetID":87205,"Directional":true}]},{"ID":7129,"SourceStructureID":593,"TargetStructureID":49489,"Label":"593-49489 via Ribbon Synapse from 49598 -> 49597","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49598,"TargetID":49597,"Directional":true}]},{"ID":7130,"SourceStructureID":593,"TargetStructureID":54078,"Label":"593-54078 via Ribbon Synapse from 53816 -> 67801, 66405 -> 66409, 67717 -> 67844","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53816,"TargetID":67801,"Directional":true},{"SourceID":66405,"TargetID":66409,"Directional":true},{"SourceID":67717,"TargetID":67844,"Directional":true}]},{"ID":7131,"SourceStructureID":593,"TargetStructureID":54744,"Label":"593-54744 via Ribbon Synapse from 28394 -> 130764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28394,"TargetID":130764,"Directional":true}]},{"ID":7132,"SourceStructureID":593,"TargetStructureID":58696,"Label":"593-58696 via Ribbon Synapse from 59619 -> 66705, 63963 -> 86962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59619,"TargetID":66705,"Directional":true},{"SourceID":63963,"TargetID":86962,"Directional":true}]},{"ID":7133,"SourceStructureID":593,"TargetStructureID":59121,"Label":"593-59121 via Ribbon Synapse from 33859 -> 59122, 59095 -> 59122","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33859,"TargetID":59122,"Directional":true},{"SourceID":59095,"TargetID":59122,"Directional":true}]},{"ID":7134,"SourceStructureID":593,"TargetStructureID":59137,"Label":"593-59137 via BC Conventional Synapse from 59104 -> 59138","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59104,"TargetID":59138,"Directional":true}]},{"ID":7135,"SourceStructureID":593,"TargetStructureID":59139,"Label":"593-59139 via Ribbon Synapse from 7699 -> 59140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7699,"TargetID":59140,"Directional":true}]},{"ID":7136,"SourceStructureID":593,"TargetStructureID":59145,"Label":"593-59145 via BC Conventional Synapse from 59144 -> 85026","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59144,"TargetID":85026,"Directional":true}]},{"ID":7137,"SourceStructureID":593,"TargetStructureID":59333,"Label":"593-59333 via Ribbon Synapse from 7701 -> 59336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7701,"TargetID":59336,"Directional":true}]},{"ID":7138,"SourceStructureID":593,"TargetStructureID":59523,"Label":"593-59523 via BC Conventional Synapse from 59529 -> 59526","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59529,"TargetID":59526,"Directional":true}]},{"ID":7139,"SourceStructureID":593,"TargetStructureID":59524,"Label":"593-59524 via BC Conventional Synapse from 59530 -> 59525","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59530,"TargetID":59525,"Directional":true}]},{"ID":7140,"SourceStructureID":593,"TargetStructureID":59531,"Label":"593-59531 via BC Conventional Synapse from 59530 -> 59532","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59530,"TargetID":59532,"Directional":true}]},{"ID":7141,"SourceStructureID":593,"TargetStructureID":59548,"Label":"593-59548 via Ribbon Synapse from 7704 -> 59549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7704,"TargetID":59549,"Directional":true}]},{"ID":7142,"SourceStructureID":593,"TargetStructureID":59589,"Label":"593-59589 via BC Conventional Synapse from 59590 -> 59591","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59590,"TargetID":59591,"Directional":true}]},{"ID":7143,"SourceStructureID":593,"TargetStructureID":59696,"Label":"593-59696 via Ribbon Synapse from 59695 -> 59697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59695,"TargetID":59697,"Directional":true}]},{"ID":7144,"SourceStructureID":593,"TargetStructureID":61773,"Label":"593-61773 via Ribbon Synapse from 7705 -> 130951","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7705,"TargetID":130951,"Directional":true}]},{"ID":7145,"SourceStructureID":593,"TargetStructureID":61775,"Label":"593-61775 via Ribbon Synapse from 7810 -> 61776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7810,"TargetID":61776,"Directional":true}]},{"ID":7146,"SourceStructureID":593,"TargetStructureID":61779,"Label":"593-61779 via Ribbon Synapse from 7816 -> 61780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7816,"TargetID":61780,"Directional":true}]},{"ID":7147,"SourceStructureID":593,"TargetStructureID":61785,"Label":"593-61785 via Ribbon Synapse from 7819 -> 61786","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7819,"TargetID":61786,"Directional":true}]},{"ID":7148,"SourceStructureID":593,"TargetStructureID":61797,"Label":"593-61797 via Ribbon Synapse from 15891 -> 61877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15891,"TargetID":61877,"Directional":true}]},{"ID":7149,"SourceStructureID":593,"TargetStructureID":61799,"Label":"593-61799 via Ribbon Synapse from 15889 -> 61803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15889,"TargetID":61803,"Directional":true}]},{"ID":7150,"SourceStructureID":593,"TargetStructureID":61811,"Label":"593-61811 via Ribbon Synapse from 28394 -> 61812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28394,"TargetID":61812,"Directional":true}]},{"ID":7151,"SourceStructureID":593,"TargetStructureID":61813,"Label":"593-61813 via Ribbon Synapse from 7713 -> 61821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7713,"TargetID":61821,"Directional":true}]},{"ID":7152,"SourceStructureID":593,"TargetStructureID":61817,"Label":"593-61817 via Ribbon Synapse from 7711 -> 61825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7711,"TargetID":61825,"Directional":true}]},{"ID":7153,"SourceStructureID":593,"TargetStructureID":61823,"Label":"593-61823 via Ribbon Synapse from 7713 -> 61824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7713,"TargetID":61824,"Directional":true}]},{"ID":7154,"SourceStructureID":593,"TargetStructureID":61836,"Label":"593-61836 via BC Conventional Synapse from 115743 -> 115742","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115743,"TargetID":115742,"Directional":true}]},{"ID":7155,"SourceStructureID":593,"TargetStructureID":61836,"Label":"593-61836 via Ribbon Synapse from 7722 -> 67513, 53822 -> 68113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7722,"TargetID":67513,"Directional":true},{"SourceID":53822,"TargetID":68113,"Directional":true}]},{"ID":7156,"SourceStructureID":593,"TargetStructureID":61840,"Label":"593-61840 via BC Conventional Synapse from 61839 -> 61841","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61839,"TargetID":61841,"Directional":true}]},{"ID":7157,"SourceStructureID":593,"TargetStructureID":61842,"Label":"593-61842 via Ribbon Synapse from 28423 -> 61843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28423,"TargetID":61843,"Directional":true}]},{"ID":7158,"SourceStructureID":593,"TargetStructureID":61853,"Label":"593-61853 via Ribbon Synapse from 28418 -> 61855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28418,"TargetID":61855,"Directional":true}]},{"ID":7159,"SourceStructureID":593,"TargetStructureID":61857,"Label":"593-61857 via Ribbon Synapse from 28404 -> 130765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28404,"TargetID":130765,"Directional":true}]},{"ID":7160,"SourceStructureID":593,"TargetStructureID":61862,"Label":"593-61862 via BC Conventional Synapse from 65253 -> 65255","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65253,"TargetID":65255,"Directional":true}]},{"ID":7161,"SourceStructureID":593,"TargetStructureID":61864,"Label":"593-61864 via Ribbon Synapse from 28419 -> 61865, 65312 -> 65314, 66480 -> 66486, 130784 -> 65315, 130789 -> 65476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28419,"TargetID":61865,"Directional":true},{"SourceID":65312,"TargetID":65314,"Directional":true},{"SourceID":66480,"TargetID":66486,"Directional":true},{"SourceID":130784,"TargetID":65315,"Directional":true},{"SourceID":130789,"TargetID":65476,"Directional":true}]},{"ID":7162,"SourceStructureID":593,"TargetStructureID":61868,"Label":"593-61868 via Ribbon Synapse from 130775 -> 61872","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130775,"TargetID":61872,"Directional":true}]},{"ID":7163,"SourceStructureID":593,"TargetStructureID":61878,"Label":"593-61878 via Ribbon Synapse from 28392 -> 61879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28392,"TargetID":61879,"Directional":true}]},{"ID":7164,"SourceStructureID":593,"TargetStructureID":61880,"Label":"593-61880 via Ribbon Synapse from 28415 -> 61881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28415,"TargetID":61881,"Directional":true}]},{"ID":7165,"SourceStructureID":593,"TargetStructureID":61882,"Label":"593-61882 via BC Conventional Synapse from 82196 -> 82197","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":82196,"TargetID":82197,"Directional":true}]},{"ID":7166,"SourceStructureID":593,"TargetStructureID":61891,"Label":"593-61891 via BC Conventional Synapse from 61890 -> 61893","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61890,"TargetID":61893,"Directional":true}]},{"ID":7167,"SourceStructureID":593,"TargetStructureID":61897,"Label":"593-61897 via BC Conventional Synapse from 65256 -> 65257","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65256,"TargetID":65257,"Directional":true}]},{"ID":7168,"SourceStructureID":593,"TargetStructureID":61897,"Label":"593-61897 via Ribbon Synapse from 130776 -> 61899","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130776,"TargetID":61899,"Directional":true}]},{"ID":7169,"SourceStructureID":593,"TargetStructureID":61898,"Label":"593-61898 via Ribbon Synapse from 28396 -> 68398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28396,"TargetID":68398,"Directional":true}]},{"ID":7170,"SourceStructureID":593,"TargetStructureID":61914,"Label":"593-61914 via Adherens from 61915 -> 61916","Type":"Adherens","Directional":true,"Links":[{"SourceID":61915,"TargetID":61916,"Directional":true}]},{"ID":7171,"SourceStructureID":593,"TargetStructureID":61920,"Label":"593-61920 via Ribbon Synapse from 28419 -> 83361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28419,"TargetID":83361,"Directional":true}]},{"ID":7172,"SourceStructureID":593,"TargetStructureID":61923,"Label":"593-61923 via Ribbon Synapse from 28390 -> 61924, 115697 -> 61924","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28390,"TargetID":61924,"Directional":true},{"SourceID":115697,"TargetID":61924,"Directional":true}]},{"ID":7173,"SourceStructureID":593,"TargetStructureID":61933,"Label":"593-61933 via Ribbon Synapse from 50440 -> 68886, 68071 -> 68078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50440,"TargetID":68886,"Directional":true},{"SourceID":68071,"TargetID":68078,"Directional":true}]},{"ID":7174,"SourceStructureID":593,"TargetStructureID":61936,"Label":"593-61936 via Ribbon Synapse from 28406 -> 61937","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28406,"TargetID":61937,"Directional":true}]},{"ID":7175,"SourceStructureID":593,"TargetStructureID":61956,"Label":"593-61956 via Ribbon Synapse from 50447 -> 61958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50447,"TargetID":61958,"Directional":true}]},{"ID":7176,"SourceStructureID":593,"TargetStructureID":61960,"Label":"593-61960 via Ribbon Synapse from 50440 -> 61964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50440,"TargetID":61964,"Directional":true}]},{"ID":7177,"SourceStructureID":593,"TargetStructureID":61965,"Label":"593-61965 via BC Conventional Synapse from 68411 -> 68410","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68411,"TargetID":68410,"Directional":true}]},{"ID":7178,"SourceStructureID":593,"TargetStructureID":61982,"Label":"593-61982 via BC Conventional Synapse from 65292 -> 65293","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65292,"TargetID":65293,"Directional":true}]},{"ID":7179,"SourceStructureID":593,"TargetStructureID":64362,"Label":"593-64362 via Ribbon Synapse from 64367 -> 64366","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64367,"TargetID":64366,"Directional":true}]},{"ID":7180,"SourceStructureID":593,"TargetStructureID":64491,"Label":"593-64491 via Ribbon Synapse from 28421 -> 64494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28421,"TargetID":64494,"Directional":true}]},{"ID":7181,"SourceStructureID":593,"TargetStructureID":64492,"Label":"593-64492 via Ribbon Synapse from 28421 -> 64493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28421,"TargetID":64493,"Directional":true}]},{"ID":7182,"SourceStructureID":593,"TargetStructureID":65258,"Label":"593-65258 via Ribbon Synapse from 130776 -> 65259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130776,"TargetID":65259,"Directional":true}]},{"ID":7183,"SourceStructureID":593,"TargetStructureID":65267,"Label":"593-65267 via BC Conventional Synapse from 115749 -> 115748","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115749,"TargetID":115748,"Directional":true}]},{"ID":7184,"SourceStructureID":593,"TargetStructureID":65267,"Label":"593-65267 via Ribbon Synapse from 65264 -> 65268","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65264,"TargetID":65268,"Directional":true}]},{"ID":7185,"SourceStructureID":593,"TargetStructureID":65271,"Label":"593-65271 via Ribbon Synapse from 28404 -> 65272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28404,"TargetID":65272,"Directional":true}]},{"ID":7186,"SourceStructureID":593,"TargetStructureID":65276,"Label":"593-65276 via Ribbon Synapse from 65273 -> 65277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65273,"TargetID":65277,"Directional":true}]},{"ID":7187,"SourceStructureID":593,"TargetStructureID":65284,"Label":"593-65284 via Ribbon Synapse from 65414 -> 65285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65414,"TargetID":65285,"Directional":true}]},{"ID":7188,"SourceStructureID":593,"TargetStructureID":65303,"Label":"593-65303 via Ribbon Synapse from 65305 -> 65304","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65305,"TargetID":65304,"Directional":true}]},{"ID":7189,"SourceStructureID":593,"TargetStructureID":65324,"Label":"593-65324 via Ribbon Synapse from 63033 -> 65325","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63033,"TargetID":65325,"Directional":true}]},{"ID":7190,"SourceStructureID":593,"TargetStructureID":65349,"Label":"593-65349 via Ribbon Synapse from 65348 -> 65350","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65348,"TargetID":65350,"Directional":true}]},{"ID":7191,"SourceStructureID":593,"TargetStructureID":65351,"Label":"593-65351 via Ribbon Synapse from 67313 -> 67316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67313,"TargetID":67316,"Directional":true}]},{"ID":7192,"SourceStructureID":593,"TargetStructureID":65375,"Label":"593-65375 via Ribbon Synapse from 65387 -> 65386","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65387,"TargetID":65386,"Directional":true}]},{"ID":7193,"SourceStructureID":593,"TargetStructureID":65376,"Label":"593-65376 via Ribbon Synapse from 59683 -> 65857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59683,"TargetID":65857,"Directional":true}]},{"ID":7194,"SourceStructureID":593,"TargetStructureID":65388,"Label":"593-65388 via Ribbon Synapse from 65387 -> 65389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65387,"TargetID":65389,"Directional":true}]},{"ID":7195,"SourceStructureID":593,"TargetStructureID":65408,"Label":"593-65408 via BC Conventional Synapse from 115723 -> 115722","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115723,"TargetID":115722,"Directional":true}]},{"ID":7196,"SourceStructureID":593,"TargetStructureID":65411,"Label":"593-65411 via Ribbon Synapse from 130784 -> 81896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130784,"TargetID":81896,"Directional":true}]},{"ID":7197,"SourceStructureID":593,"TargetStructureID":65454,"Label":"593-65454 via Ribbon Synapse from 65453 -> 65455, 65529 -> 65531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65453,"TargetID":65455,"Directional":true},{"SourceID":65529,"TargetID":65531,"Directional":true}]},{"ID":7198,"SourceStructureID":593,"TargetStructureID":65477,"Label":"593-65477 via Ribbon Synapse from 66429 -> 66432, 130789 -> 65478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66429,"TargetID":66432,"Directional":true},{"SourceID":130789,"TargetID":65478,"Directional":true}]},{"ID":7199,"SourceStructureID":593,"TargetStructureID":65532,"Label":"593-65532 via Ribbon Synapse from 65529 -> 65533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65529,"TargetID":65533,"Directional":true}]},{"ID":7200,"SourceStructureID":593,"TargetStructureID":65536,"Label":"593-65536 via BC Conventional Synapse from 67087 -> 67088","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67087,"TargetID":67088,"Directional":true}]},{"ID":7201,"SourceStructureID":593,"TargetStructureID":65536,"Label":"593-65536 via Ribbon Synapse from 66839 -> 67066","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66839,"TargetID":67066,"Directional":true}]},{"ID":7202,"SourceStructureID":593,"TargetStructureID":65561,"Label":"593-65561 via Ribbon Synapse from 65560 -> 65562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65560,"TargetID":65562,"Directional":true}]},{"ID":7203,"SourceStructureID":593,"TargetStructureID":65579,"Label":"593-65579 via Ribbon Synapse from 115724 -> 130757","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115724,"TargetID":130757,"Directional":true}]},{"ID":7204,"SourceStructureID":593,"TargetStructureID":65623,"Label":"593-65623 via BC Conventional Synapse from 115778 -> 115779","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115778,"TargetID":115779,"Directional":true}]},{"ID":7205,"SourceStructureID":593,"TargetStructureID":65864,"Label":"593-65864 via BC Conventional Synapse from 65889 -> 65888","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65889,"TargetID":65888,"Directional":true}]},{"ID":7206,"SourceStructureID":593,"TargetStructureID":65864,"Label":"593-65864 via Ribbon Synapse from 7748 -> 65879, 65858 -> 65865","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7748,"TargetID":65879,"Directional":true},{"SourceID":65858,"TargetID":65865,"Directional":true}]},{"ID":7207,"SourceStructureID":593,"TargetStructureID":66028,"Label":"593-66028 via BC Conventional Synapse from 66027 -> 66029","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66027,"TargetID":66029,"Directional":true}]},{"ID":7208,"SourceStructureID":593,"TargetStructureID":66031,"Label":"593-66031 via BC Conventional Synapse from 66052 -> 66051","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66052,"TargetID":66051,"Directional":true}]},{"ID":7209,"SourceStructureID":593,"TargetStructureID":66073,"Label":"593-66073 via Ribbon Synapse from 28436 -> 68513, 65529 -> 66074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28436,"TargetID":68513,"Directional":true},{"SourceID":65529,"TargetID":66074,"Directional":true}]},{"ID":7210,"SourceStructureID":593,"TargetStructureID":66089,"Label":"593-66089 via Ribbon Synapse from 28439 -> 66091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28439,"TargetID":66091,"Directional":true}]},{"ID":7211,"SourceStructureID":593,"TargetStructureID":66100,"Label":"593-66100 via BC Conventional Synapse from 68529 -> 68530","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68529,"TargetID":68530,"Directional":true}]},{"ID":7212,"SourceStructureID":593,"TargetStructureID":66111,"Label":"593-66111 via Ribbon Synapse from 28443 -> 66112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28443,"TargetID":66112,"Directional":true}]},{"ID":7213,"SourceStructureID":593,"TargetStructureID":66114,"Label":"593-66114 via Ribbon Synapse from 7738 -> 66116","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7738,"TargetID":66116,"Directional":true}]},{"ID":7214,"SourceStructureID":593,"TargetStructureID":66283,"Label":"593-66283 via BC Conventional Synapse from 66282 -> 66284","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66282,"TargetID":66284,"Directional":true}]},{"ID":7215,"SourceStructureID":593,"TargetStructureID":66299,"Label":"593-66299 via BC Conventional Synapse from 66298 -> 66300","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66298,"TargetID":66300,"Directional":true}]},{"ID":7216,"SourceStructureID":593,"TargetStructureID":66303,"Label":"593-66303 via Ribbon Synapse from 59788 -> 66306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59788,"TargetID":66306,"Directional":true}]},{"ID":7217,"SourceStructureID":593,"TargetStructureID":66316,"Label":"593-66316 via BC Conventional Synapse from 66315 -> 66317, 66320 -> 66321","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66315,"TargetID":66317,"Directional":true},{"SourceID":66320,"TargetID":66321,"Directional":true}]},{"ID":7218,"SourceStructureID":593,"TargetStructureID":66323,"Label":"593-66323 via Ribbon Synapse from 66435 -> 130869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66435,"TargetID":130869,"Directional":true}]},{"ID":7219,"SourceStructureID":593,"TargetStructureID":66371,"Label":"593-66371 via BC Conventional Synapse from 66370 -> 66372","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66370,"TargetID":66372,"Directional":true}]},{"ID":7220,"SourceStructureID":593,"TargetStructureID":66401,"Label":"593-66401 via Ribbon Synapse from 7760 -> 66424, 66405 -> 66406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7760,"TargetID":66424,"Directional":true},{"SourceID":66405,"TargetID":66406,"Directional":true}]},{"ID":7221,"SourceStructureID":593,"TargetStructureID":66407,"Label":"593-66407 via Ribbon Synapse from 49570 -> 67242, 66405 -> 66408, 86279 -> 130988","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49570,"TargetID":67242,"Directional":true},{"SourceID":66405,"TargetID":66408,"Directional":true},{"SourceID":86279,"TargetID":130988,"Directional":true}]},{"ID":7222,"SourceStructureID":593,"TargetStructureID":66436,"Label":"593-66436 via Ribbon Synapse from 66435 -> 66437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66435,"TargetID":66437,"Directional":true}]},{"ID":7223,"SourceStructureID":593,"TargetStructureID":66443,"Label":"593-66443 via Ribbon Synapse from 66440 -> 66444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66440,"TargetID":66444,"Directional":true}]},{"ID":7224,"SourceStructureID":593,"TargetStructureID":66496,"Label":"593-66496 via Ribbon Synapse from 66435 -> 66497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66435,"TargetID":66497,"Directional":true}]},{"ID":7225,"SourceStructureID":593,"TargetStructureID":66498,"Label":"593-66498 via BC Conventional Synapse from 66501 -> 66502","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66501,"TargetID":66502,"Directional":true}]},{"ID":7226,"SourceStructureID":593,"TargetStructureID":66503,"Label":"593-66503 via Ribbon Synapse from 59627 -> 66506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59627,"TargetID":66506,"Directional":true}]},{"ID":7227,"SourceStructureID":593,"TargetStructureID":66516,"Label":"593-66516 via Ribbon Synapse from 59622 -> 66519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59622,"TargetID":66519,"Directional":true}]},{"ID":7228,"SourceStructureID":593,"TargetStructureID":66520,"Label":"593-66520 via Ribbon Synapse from 66522 -> 66521","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66522,"TargetID":66521,"Directional":true}]},{"ID":7229,"SourceStructureID":593,"TargetStructureID":66539,"Label":"593-66539 via Ribbon Synapse from 130874 -> 66540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130874,"TargetID":66540,"Directional":true}]},{"ID":7230,"SourceStructureID":593,"TargetStructureID":66634,"Label":"593-66634 via Ribbon Synapse from 59626 -> 66639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59626,"TargetID":66639,"Directional":true}]},{"ID":7231,"SourceStructureID":593,"TargetStructureID":66640,"Label":"593-66640 via BC Conventional Synapse from 66642 -> 66641","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66642,"TargetID":66641,"Directional":true}]},{"ID":7232,"SourceStructureID":593,"TargetStructureID":66682,"Label":"593-66682 via Ribbon Synapse from 59619 -> 66683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59619,"TargetID":66683,"Directional":true}]},{"ID":7233,"SourceStructureID":593,"TargetStructureID":66693,"Label":"593-66693 via Ribbon Synapse from 130751 -> 66694","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130751,"TargetID":66694,"Directional":true}]},{"ID":7234,"SourceStructureID":593,"TargetStructureID":66696,"Label":"593-66696 via Ribbon Synapse from 130751 -> 66697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130751,"TargetID":66697,"Directional":true}]},{"ID":7235,"SourceStructureID":593,"TargetStructureID":66702,"Label":"593-66702 via Ribbon Synapse from 59618 -> 66729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59618,"TargetID":66729,"Directional":true}]},{"ID":7236,"SourceStructureID":593,"TargetStructureID":66706,"Label":"593-66706 via Ribbon Synapse from 59619 -> 66707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59619,"TargetID":66707,"Directional":true}]},{"ID":7237,"SourceStructureID":593,"TargetStructureID":66731,"Label":"593-66731 via BC Conventional Synapse from 115750 -> 115751","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115750,"TargetID":115751,"Directional":true}]},{"ID":7238,"SourceStructureID":593,"TargetStructureID":66764,"Label":"593-66764 via BC Conventional Synapse from 66766 -> 66767","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66766,"TargetID":66767,"Directional":true}]},{"ID":7239,"SourceStructureID":593,"TargetStructureID":66768,"Label":"593-66768 via BC Conventional Synapse from 115718 -> 115717","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115718,"TargetID":115717,"Directional":true}]},{"ID":7240,"SourceStructureID":593,"TargetStructureID":66768,"Label":"593-66768 via Ribbon Synapse from 28436 -> 68428, 28439 -> 68432","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28436,"TargetID":68428,"Directional":true},{"SourceID":28439,"TargetID":68432,"Directional":true}]},{"ID":7241,"SourceStructureID":593,"TargetStructureID":66774,"Label":"593-66774 via BC Conventional Synapse from 66776 -> 66775, 66822 -> 66820","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66776,"TargetID":66775,"Directional":true},{"SourceID":66822,"TargetID":66820,"Directional":true}]},{"ID":7242,"SourceStructureID":593,"TargetStructureID":66777,"Label":"593-66777 via BC Conventional Synapse from 115703 -> 66778","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115703,"TargetID":66778,"Directional":true}]},{"ID":7243,"SourceStructureID":593,"TargetStructureID":66777,"Label":"593-66777 via Ribbon Synapse from 28431 -> 66878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28431,"TargetID":66878,"Directional":true}]},{"ID":7244,"SourceStructureID":593,"TargetStructureID":66782,"Label":"593-66782 via Ribbon Synapse from 28428 -> 66784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28428,"TargetID":66784,"Directional":true}]},{"ID":7245,"SourceStructureID":593,"TargetStructureID":66785,"Label":"593-66785 via Ribbon Synapse from 28428 -> 66786","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28428,"TargetID":66786,"Directional":true}]},{"ID":7246,"SourceStructureID":593,"TargetStructureID":66795,"Label":"593-66795 via Ribbon Synapse from 7768 -> 67568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7768,"TargetID":67568,"Directional":true}]},{"ID":7247,"SourceStructureID":593,"TargetStructureID":66804,"Label":"593-66804 via Ribbon Synapse from 28430 -> 66805","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28430,"TargetID":66805,"Directional":true}]},{"ID":7248,"SourceStructureID":593,"TargetStructureID":66809,"Label":"593-66809 via Ribbon Synapse from 64367 -> 66862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64367,"TargetID":66862,"Directional":true}]},{"ID":7249,"SourceStructureID":593,"TargetStructureID":66828,"Label":"593-66828 via Ribbon Synapse from 7752 -> 66829","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7752,"TargetID":66829,"Directional":true}]},{"ID":7250,"SourceStructureID":593,"TargetStructureID":66840,"Label":"593-66840 via Ribbon Synapse from 66839 -> 66841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66839,"TargetID":66841,"Directional":true}]},{"ID":7251,"SourceStructureID":593,"TargetStructureID":66843,"Label":"593-66843 via BC Conventional Synapse from 115686 -> 66845, 115762 -> 115761","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115686,"TargetID":66845,"Directional":true},{"SourceID":115762,"TargetID":115761,"Directional":true}]},{"ID":7252,"SourceStructureID":593,"TargetStructureID":66848,"Label":"593-66848 via Ribbon Synapse from 66846 -> 66849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66846,"TargetID":66849,"Directional":true}]},{"ID":7253,"SourceStructureID":593,"TargetStructureID":66879,"Label":"593-66879 via BC Conventional Synapse from 66881 -> 66880","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66881,"TargetID":66880,"Directional":true}]},{"ID":7254,"SourceStructureID":593,"TargetStructureID":66888,"Label":"593-66888 via Ribbon Synapse from 7759 -> 68224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7759,"TargetID":68224,"Directional":true}]},{"ID":7255,"SourceStructureID":593,"TargetStructureID":66933,"Label":"593-66933 via BC Conventional Synapse from 66932 -> 66934","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":66932,"TargetID":66934,"Directional":true}]},{"ID":7256,"SourceStructureID":593,"TargetStructureID":66937,"Label":"593-66937 via Ribbon Synapse from 7720 -> 66938","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7720,"TargetID":66938,"Directional":true}]},{"ID":7257,"SourceStructureID":593,"TargetStructureID":66946,"Label":"593-66946 via Ribbon Synapse from 7719 -> 66947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7719,"TargetID":66947,"Directional":true}]},{"ID":7258,"SourceStructureID":593,"TargetStructureID":66952,"Label":"593-66952 via Ribbon Synapse from 7721 -> 67387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7721,"TargetID":67387,"Directional":true}]},{"ID":7259,"SourceStructureID":593,"TargetStructureID":66958,"Label":"593-66958 via BC Conventional Synapse from 49575 -> 67040, 69922 -> 69924","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":49575,"TargetID":67040,"Directional":true},{"SourceID":69922,"TargetID":69924,"Directional":true}]},{"ID":7260,"SourceStructureID":593,"TargetStructureID":66958,"Label":"593-66958 via Ribbon Synapse from 7736 -> 70028, 7768 -> 70026, 49572 -> 67044, 64367 -> 130781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7736,"TargetID":70028,"Directional":true},{"SourceID":7768,"TargetID":70026,"Directional":true},{"SourceID":49572,"TargetID":67044,"Directional":true},{"SourceID":64367,"TargetID":130781,"Directional":true}]},{"ID":7261,"SourceStructureID":593,"TargetStructureID":66983,"Label":"593-66983 via Ribbon Synapse from 7722 -> 66998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7722,"TargetID":66998,"Directional":true}]},{"ID":7262,"SourceStructureID":593,"TargetStructureID":67016,"Label":"593-67016 via Ribbon Synapse from 7832 -> 67018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7832,"TargetID":67018,"Directional":true}]},{"ID":7263,"SourceStructureID":593,"TargetStructureID":67019,"Label":"593-67019 via Ribbon Synapse from 7832 -> 67020","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7832,"TargetID":67020,"Directional":true}]},{"ID":7264,"SourceStructureID":593,"TargetStructureID":67042,"Label":"593-67042 via Ribbon Synapse from 130884 -> 67261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130884,"TargetID":67261,"Directional":true}]},{"ID":7265,"SourceStructureID":593,"TargetStructureID":67045,"Label":"593-67045 via Ribbon Synapse from 65503 -> 130790, 67211 -> 67217, 130960 -> 67677","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65503,"TargetID":130790,"Directional":true},{"SourceID":67211,"TargetID":67217,"Directional":true},{"SourceID":130960,"TargetID":67677,"Directional":true}]},{"ID":7266,"SourceStructureID":593,"TargetStructureID":67063,"Label":"593-67063 via Ribbon Synapse from 64367 -> 67064","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64367,"TargetID":67064,"Directional":true}]},{"ID":7267,"SourceStructureID":593,"TargetStructureID":67093,"Label":"593-67093 via BC Conventional Synapse from 67092 -> 67094","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67092,"TargetID":67094,"Directional":true}]},{"ID":7268,"SourceStructureID":593,"TargetStructureID":67095,"Label":"593-67095 via Ribbon Synapse from 28432 -> 67096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28432,"TargetID":67096,"Directional":true}]},{"ID":7269,"SourceStructureID":593,"TargetStructureID":67101,"Label":"593-67101 via Ribbon Synapse from 7810 -> 67103, 66621 -> 67102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7810,"TargetID":67103,"Directional":true},{"SourceID":66621,"TargetID":67102,"Directional":true}]},{"ID":7270,"SourceStructureID":593,"TargetStructureID":67109,"Label":"593-67109 via Ribbon Synapse from 67108 -> 67110","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67108,"TargetID":67110,"Directional":true}]},{"ID":7271,"SourceStructureID":593,"TargetStructureID":67112,"Label":"593-67112 via Ribbon Synapse from 62883 -> 67114","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62883,"TargetID":67114,"Directional":true}]},{"ID":7272,"SourceStructureID":593,"TargetStructureID":67119,"Label":"593-67119 via Ribbon Synapse from 66624 -> 67120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66624,"TargetID":67120,"Directional":true}]},{"ID":7273,"SourceStructureID":593,"TargetStructureID":67121,"Label":"593-67121 via Ribbon Synapse from 85529 -> 85530","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85529,"TargetID":85530,"Directional":true}]},{"ID":7274,"SourceStructureID":593,"TargetStructureID":67125,"Label":"593-67125 via BC Conventional Synapse from 67127 -> 67126","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67127,"TargetID":67126,"Directional":true}]},{"ID":7275,"SourceStructureID":593,"TargetStructureID":67128,"Label":"593-67128 via Ribbon Synapse from 66629 -> 67129","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66629,"TargetID":67129,"Directional":true}]},{"ID":7276,"SourceStructureID":593,"TargetStructureID":67130,"Label":"593-67130 via Ribbon Synapse from 66629 -> 67132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66629,"TargetID":67132,"Directional":true}]},{"ID":7277,"SourceStructureID":593,"TargetStructureID":67131,"Label":"593-67131 via Ribbon Synapse from 66629 -> 67133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66629,"TargetID":67133,"Directional":true}]},{"ID":7278,"SourceStructureID":593,"TargetStructureID":67135,"Label":"593-67135 via Ribbon Synapse from 66630 -> 67136","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66630,"TargetID":67136,"Directional":true}]},{"ID":7279,"SourceStructureID":593,"TargetStructureID":67137,"Label":"593-67137 via Ribbon Synapse from 66630 -> 67138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66630,"TargetID":67138,"Directional":true}]},{"ID":7280,"SourceStructureID":593,"TargetStructureID":67161,"Label":"593-67161 via Ribbon Synapse from 66652 -> 67164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66652,"TargetID":67164,"Directional":true}]},{"ID":7281,"SourceStructureID":593,"TargetStructureID":67187,"Label":"593-67187 via Ribbon Synapse from 62887 -> 67188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62887,"TargetID":67188,"Directional":true}]},{"ID":7282,"SourceStructureID":593,"TargetStructureID":67190,"Label":"593-67190 via Ribbon Synapse from 70257 -> 130933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70257,"TargetID":130933,"Directional":true}]},{"ID":7283,"SourceStructureID":593,"TargetStructureID":67208,"Label":"593-67208 via BC Conventional Synapse from 67210 -> 67209","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67210,"TargetID":67209,"Directional":true}]},{"ID":7284,"SourceStructureID":593,"TargetStructureID":67219,"Label":"593-67219 via Ribbon Synapse from 67211 -> 67220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67211,"TargetID":67220,"Directional":true}]},{"ID":7285,"SourceStructureID":593,"TargetStructureID":67221,"Label":"593-67221 via Ribbon Synapse from 67211 -> 67222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67211,"TargetID":67222,"Directional":true}]},{"ID":7286,"SourceStructureID":593,"TargetStructureID":67227,"Label":"593-67227 via Ribbon Synapse from 130983 -> 82754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130983,"TargetID":82754,"Directional":true}]},{"ID":7287,"SourceStructureID":593,"TargetStructureID":67246,"Label":"593-67246 via BC Conventional Synapse from 67248 -> 67247","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67248,"TargetID":67247,"Directional":true}]},{"ID":7288,"SourceStructureID":593,"TargetStructureID":67252,"Label":"593-67252 via Ribbon Synapse from 67251 -> 67253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67251,"TargetID":67253,"Directional":true}]},{"ID":7289,"SourceStructureID":593,"TargetStructureID":67254,"Label":"593-67254 via Ribbon Synapse from 49573 -> 67422","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49573,"TargetID":67422,"Directional":true}]},{"ID":7290,"SourceStructureID":593,"TargetStructureID":67258,"Label":"593-67258 via Ribbon Synapse from 7731 -> 68485, 130884 -> 67259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7731,"TargetID":68485,"Directional":true},{"SourceID":130884,"TargetID":67259,"Directional":true}]},{"ID":7291,"SourceStructureID":593,"TargetStructureID":67262,"Label":"593-67262 via BC Conventional Synapse from 130887 -> 130888","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130887,"TargetID":130888,"Directional":true}]},{"ID":7292,"SourceStructureID":593,"TargetStructureID":67262,"Label":"593-67262 via Ribbon Synapse from 49573 -> 67416, 130884 -> 67263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49573,"TargetID":67416,"Directional":true},{"SourceID":130884,"TargetID":67263,"Directional":true}]},{"ID":7293,"SourceStructureID":593,"TargetStructureID":67269,"Label":"593-67269 via Ribbon Synapse from 67272 -> 67273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67272,"TargetID":67273,"Directional":true}]},{"ID":7294,"SourceStructureID":593,"TargetStructureID":67291,"Label":"593-67291 via Ribbon Synapse from 68343 -> 68345, 68343 -> 130932","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68343,"TargetID":68345,"Directional":true},{"SourceID":68343,"TargetID":130932,"Directional":true}]},{"ID":7295,"SourceStructureID":593,"TargetStructureID":67307,"Label":"593-67307 via BC Conventional Synapse from 67312 -> 67311","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67312,"TargetID":67311,"Directional":true}]},{"ID":7296,"SourceStructureID":593,"TargetStructureID":67322,"Label":"593-67322 via Ribbon Synapse from 7748 -> 67363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7748,"TargetID":67363,"Directional":true}]},{"ID":7297,"SourceStructureID":593,"TargetStructureID":67331,"Label":"593-67331 via Ribbon Synapse from 130712 -> 67336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130712,"TargetID":67336,"Directional":true}]},{"ID":7298,"SourceStructureID":593,"TargetStructureID":67341,"Label":"593-67341 via Ribbon Synapse from 130712 -> 67342, 130989 -> 67391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130712,"TargetID":67342,"Directional":true},{"SourceID":130989,"TargetID":67391,"Directional":true}]},{"ID":7299,"SourceStructureID":593,"TargetStructureID":67352,"Label":"593-67352 via BC Conventional Synapse from 68208 -> 68209","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68208,"TargetID":68209,"Directional":true}]},{"ID":7300,"SourceStructureID":593,"TargetStructureID":67370,"Label":"593-67370 via Ribbon Synapse from 36597 -> 67371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36597,"TargetID":67371,"Directional":true}]},{"ID":7301,"SourceStructureID":593,"TargetStructureID":67375,"Label":"593-67375 via Ribbon Synapse from 7764 -> 67543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7764,"TargetID":67543,"Directional":true}]},{"ID":7302,"SourceStructureID":593,"TargetStructureID":67382,"Label":"593-67382 via Ribbon Synapse from 130989 -> 67384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130989,"TargetID":67384,"Directional":true}]},{"ID":7303,"SourceStructureID":593,"TargetStructureID":67401,"Label":"593-67401 via BC Conventional Synapse from 67399 -> 67402","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67399,"TargetID":67402,"Directional":true}]},{"ID":7304,"SourceStructureID":593,"TargetStructureID":67406,"Label":"593-67406 via BC Conventional Synapse from 67408 -> 67407","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67408,"TargetID":67407,"Directional":true}]},{"ID":7305,"SourceStructureID":593,"TargetStructureID":67425,"Label":"593-67425 via BC Conventional Synapse from 67431 -> 67428","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67431,"TargetID":67428,"Directional":true}]},{"ID":7306,"SourceStructureID":593,"TargetStructureID":67430,"Label":"593-67430 via Ribbon Synapse from 7719 -> 130953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7719,"TargetID":130953,"Directional":true}]},{"ID":7307,"SourceStructureID":593,"TargetStructureID":67455,"Label":"593-67455 via Ribbon Synapse from 85609 -> 67456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85609,"TargetID":67456,"Directional":true}]},{"ID":7308,"SourceStructureID":593,"TargetStructureID":67458,"Label":"593-67458 via Ribbon Synapse from 85609 -> 67459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85609,"TargetID":67459,"Directional":true}]},{"ID":7309,"SourceStructureID":593,"TargetStructureID":67466,"Label":"593-67466 via BC Conventional Synapse from 67465 -> 67467","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67465,"TargetID":67467,"Directional":true}]},{"ID":7310,"SourceStructureID":593,"TargetStructureID":67486,"Label":"593-67486 via BC Conventional Synapse from 67485 -> 67487","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67485,"TargetID":67487,"Directional":true}]},{"ID":7311,"SourceStructureID":593,"TargetStructureID":67494,"Label":"593-67494 via BC Conventional Synapse from 67496 -> 67495","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67496,"TargetID":67495,"Directional":true}]},{"ID":7312,"SourceStructureID":593,"TargetStructureID":67502,"Label":"593-67502 via Ribbon Synapse from 28408 -> 67503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28408,"TargetID":67503,"Directional":true}]},{"ID":7313,"SourceStructureID":593,"TargetStructureID":67506,"Label":"593-67506 via Ribbon Synapse from 7821 -> 67507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7821,"TargetID":67507,"Directional":true}]},{"ID":7314,"SourceStructureID":593,"TargetStructureID":67508,"Label":"593-67508 via Ribbon Synapse from 7815 -> 130974, 7821 -> 67509","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7815,"TargetID":130974,"Directional":true},{"SourceID":7821,"TargetID":67509,"Directional":true}]},{"ID":7315,"SourceStructureID":593,"TargetStructureID":67520,"Label":"593-67520 via Ribbon Synapse from 130917 -> 67534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130917,"TargetID":67534,"Directional":true}]},{"ID":7316,"SourceStructureID":593,"TargetStructureID":67531,"Label":"593-67531 via Ribbon Synapse from 130917 -> 67532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130917,"TargetID":67532,"Directional":true}]},{"ID":7317,"SourceStructureID":593,"TargetStructureID":67546,"Label":"593-67546 via BC Conventional Synapse from 7829 -> 67547","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":7829,"TargetID":67547,"Directional":true}]},{"ID":7318,"SourceStructureID":593,"TargetStructureID":67551,"Label":"593-67551 via BC Conventional Synapse from 7830 -> 67552","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":7830,"TargetID":67552,"Directional":true}]},{"ID":7319,"SourceStructureID":593,"TargetStructureID":67560,"Label":"593-67560 via BC Conventional Synapse from 67804 -> 67803","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67804,"TargetID":67803,"Directional":true}]},{"ID":7320,"SourceStructureID":593,"TargetStructureID":67575,"Label":"593-67575 via BC Conventional Synapse from 67578 -> 67577","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67578,"TargetID":67577,"Directional":true}]},{"ID":7321,"SourceStructureID":593,"TargetStructureID":67580,"Label":"593-67580 via Ribbon Synapse from 7835 -> 67582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7835,"TargetID":67582,"Directional":true}]},{"ID":7322,"SourceStructureID":593,"TargetStructureID":67585,"Label":"593-67585 via BC Conventional Synapse from 134750 -> 134751","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134750,"TargetID":134751,"Directional":true}]},{"ID":7323,"SourceStructureID":593,"TargetStructureID":67586,"Label":"593-67586 via Ribbon Synapse from 130977 -> 67587","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130977,"TargetID":67587,"Directional":true}]},{"ID":7324,"SourceStructureID":593,"TargetStructureID":67595,"Label":"593-67595 via Ribbon Synapse from 28447 -> 67631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28447,"TargetID":67631,"Directional":true}]},{"ID":7325,"SourceStructureID":593,"TargetStructureID":67663,"Label":"593-67663 via BC Conventional Synapse from 7807 -> 67664","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":7807,"TargetID":67664,"Directional":true}]},{"ID":7326,"SourceStructureID":593,"TargetStructureID":67686,"Label":"593-67686 via Ribbon Synapse from 7736 -> 67738, 7768 -> 67754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7736,"TargetID":67738,"Directional":true},{"SourceID":7768,"TargetID":67754,"Directional":true}]},{"ID":7327,"SourceStructureID":593,"TargetStructureID":67705,"Label":"593-67705 via BC Conventional Synapse from 82125 -> 82126","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":82125,"TargetID":82126,"Directional":true}]},{"ID":7328,"SourceStructureID":593,"TargetStructureID":67711,"Label":"593-67711 via Ribbon Synapse from 67717 -> 67718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67717,"TargetID":67718,"Directional":true}]},{"ID":7329,"SourceStructureID":593,"TargetStructureID":67729,"Label":"593-67729 via Ribbon Synapse from 130960 -> 67730","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130960,"TargetID":67730,"Directional":true}]},{"ID":7330,"SourceStructureID":593,"TargetStructureID":67731,"Label":"593-67731 via BC Conventional Synapse from 67733 -> 67732","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67733,"TargetID":67732,"Directional":true}]},{"ID":7331,"SourceStructureID":593,"TargetStructureID":67736,"Label":"593-67736 via Ribbon Synapse from 7736 -> 67737, 53817 -> 67747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7736,"TargetID":67737,"Directional":true},{"SourceID":53817,"TargetID":67747,"Directional":true}]},{"ID":7332,"SourceStructureID":593,"TargetStructureID":67756,"Label":"593-67756 via Ribbon Synapse from 78293 -> 78294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78293,"TargetID":78294,"Directional":true}]},{"ID":7333,"SourceStructureID":593,"TargetStructureID":67779,"Label":"593-67779 via BC Conventional Synapse from 67781 -> 67782","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67781,"TargetID":67782,"Directional":true}]},{"ID":7334,"SourceStructureID":593,"TargetStructureID":67779,"Label":"593-67779 via Ribbon Synapse from 53811 -> 67783","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53811,"TargetID":67783,"Directional":true}]},{"ID":7335,"SourceStructureID":593,"TargetStructureID":67784,"Label":"593-67784 via Ribbon Synapse from 130977 -> 67785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130977,"TargetID":67785,"Directional":true}]},{"ID":7336,"SourceStructureID":593,"TargetStructureID":67809,"Label":"593-67809 via Ribbon Synapse from 7831 -> 67811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7831,"TargetID":67811,"Directional":true}]},{"ID":7337,"SourceStructureID":593,"TargetStructureID":67812,"Label":"593-67812 via BC Conventional Synapse from 67814 -> 67813","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67814,"TargetID":67813,"Directional":true}]},{"ID":7338,"SourceStructureID":593,"TargetStructureID":67833,"Label":"593-67833 via Ribbon Synapse from 87237 -> 87239, 130990 -> 87239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87237,"TargetID":87239,"Directional":true},{"SourceID":130990,"TargetID":87239,"Directional":true}]},{"ID":7339,"SourceStructureID":593,"TargetStructureID":67839,"Label":"593-67839 via Ribbon Synapse from 28411 -> 67840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28411,"TargetID":67840,"Directional":true}]},{"ID":7340,"SourceStructureID":593,"TargetStructureID":67871,"Label":"593-67871 via Ribbon Synapse from 52488 -> 67872","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52488,"TargetID":67872,"Directional":true}]},{"ID":7341,"SourceStructureID":593,"TargetStructureID":67883,"Label":"593-67883 via Ribbon Synapse from 130982 -> 67911","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130982,"TargetID":67911,"Directional":true}]},{"ID":7342,"SourceStructureID":593,"TargetStructureID":67890,"Label":"593-67890 via Ribbon Synapse from 130982 -> 67908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130982,"TargetID":67908,"Directional":true}]},{"ID":7343,"SourceStructureID":593,"TargetStructureID":67892,"Label":"593-67892 via Ribbon Synapse from 28413 -> 67893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28413,"TargetID":67893,"Directional":true}]},{"ID":7344,"SourceStructureID":593,"TargetStructureID":67915,"Label":"593-67915 via Ribbon Synapse from 7836 -> 67916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7836,"TargetID":67916,"Directional":true}]},{"ID":7345,"SourceStructureID":593,"TargetStructureID":67918,"Label":"593-67918 via Ribbon Synapse from 7836 -> 67919, 49855 -> 67946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7836,"TargetID":67919,"Directional":true},{"SourceID":49855,"TargetID":67946,"Directional":true}]},{"ID":7346,"SourceStructureID":593,"TargetStructureID":67920,"Label":"593-67920 via Ribbon Synapse from 7836 -> 67921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7836,"TargetID":67921,"Directional":true}]},{"ID":7347,"SourceStructureID":593,"TargetStructureID":67932,"Label":"593-67932 via BC Conventional Synapse from 115738 -> 115739","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115738,"TargetID":115739,"Directional":true}]},{"ID":7348,"SourceStructureID":593,"TargetStructureID":67952,"Label":"593-67952 via BC Conventional Synapse from 68139 -> 82247","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68139,"TargetID":82247,"Directional":true}]},{"ID":7349,"SourceStructureID":593,"TargetStructureID":67952,"Label":"593-67952 via Ribbon Synapse from 7738 -> 67962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7738,"TargetID":67962,"Directional":true}]},{"ID":7350,"SourceStructureID":593,"TargetStructureID":67967,"Label":"593-67967 via BC Conventional Synapse from 7843 -> 67968","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":7843,"TargetID":67968,"Directional":true}]},{"ID":7351,"SourceStructureID":593,"TargetStructureID":67996,"Label":"593-67996 via BC Conventional Synapse from 87283 -> 67997","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87283,"TargetID":67997,"Directional":true}]},{"ID":7352,"SourceStructureID":593,"TargetStructureID":68003,"Label":"593-68003 via Ribbon Synapse from 52487 -> 68008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52487,"TargetID":68008,"Directional":true}]},{"ID":7353,"SourceStructureID":593,"TargetStructureID":68009,"Label":"593-68009 via Ribbon Synapse from 52451 -> 115707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52451,"TargetID":115707,"Directional":true}]},{"ID":7354,"SourceStructureID":593,"TargetStructureID":68014,"Label":"593-68014 via Ribbon Synapse from 52451 -> 68015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52451,"TargetID":68015,"Directional":true}]},{"ID":7355,"SourceStructureID":593,"TargetStructureID":68031,"Label":"593-68031 via Cistern Pre from 68627 -> 68628","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":68627,"TargetID":68628,"Directional":true}]},{"ID":7356,"SourceStructureID":593,"TargetStructureID":68040,"Label":"593-68040 via BC Conventional Synapse from 68054 -> 68055","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68054,"TargetID":68055,"Directional":true}]},{"ID":7357,"SourceStructureID":593,"TargetStructureID":68042,"Label":"593-68042 via Ribbon Synapse from 68029 -> 68043","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68029,"TargetID":68043,"Directional":true}]},{"ID":7358,"SourceStructureID":593,"TargetStructureID":68077,"Label":"593-68077 via BC Conventional Synapse from 68082 -> 68081","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68082,"TargetID":68081,"Directional":true}]},{"ID":7359,"SourceStructureID":593,"TargetStructureID":68093,"Label":"593-68093 via BC Conventional Synapse from 68123 -> 68122","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68123,"TargetID":68122,"Directional":true}]},{"ID":7360,"SourceStructureID":593,"TargetStructureID":68093,"Label":"593-68093 via Ribbon Synapse from 53816 -> 68094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53816,"TargetID":68094,"Directional":true}]},{"ID":7361,"SourceStructureID":593,"TargetStructureID":68140,"Label":"593-68140 via BC Conventional Synapse from 68139 -> 68141","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68139,"TargetID":68141,"Directional":true}]},{"ID":7362,"SourceStructureID":593,"TargetStructureID":68153,"Label":"593-68153 via Ribbon Synapse from 53817 -> 68154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53817,"TargetID":68154,"Directional":true}]},{"ID":7363,"SourceStructureID":593,"TargetStructureID":68202,"Label":"593-68202 via Ribbon Synapse from 53817 -> 72576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53817,"TargetID":72576,"Directional":true}]},{"ID":7364,"SourceStructureID":593,"TargetStructureID":68214,"Label":"593-68214 via BC Conventional Synapse from 68441 -> 68443","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68441,"TargetID":68443,"Directional":true}]},{"ID":7365,"SourceStructureID":593,"TargetStructureID":68214,"Label":"593-68214 via Ribbon Synapse from 7759 -> 68479","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7759,"TargetID":68479,"Directional":true}]},{"ID":7366,"SourceStructureID":593,"TargetStructureID":68238,"Label":"593-68238 via Ribbon Synapse from 130744 -> 68241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130744,"TargetID":68241,"Directional":true}]},{"ID":7367,"SourceStructureID":593,"TargetStructureID":68239,"Label":"593-68239 via BC Conventional Synapse from 87513 -> 87514","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87513,"TargetID":87514,"Directional":true}]},{"ID":7368,"SourceStructureID":593,"TargetStructureID":68239,"Label":"593-68239 via Ribbon Synapse from 130744 -> 68242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130744,"TargetID":68242,"Directional":true}]},{"ID":7369,"SourceStructureID":593,"TargetStructureID":68252,"Label":"593-68252 via Ribbon Synapse from 52470 -> 68629","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52470,"TargetID":68629,"Directional":true}]},{"ID":7370,"SourceStructureID":593,"TargetStructureID":68296,"Label":"593-68296 via Ribbon Synapse from 130742 -> 68297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130742,"TargetID":68297,"Directional":true}]},{"ID":7371,"SourceStructureID":593,"TargetStructureID":68300,"Label":"593-68300 via Ribbon Synapse from 130742 -> 68301","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130742,"TargetID":68301,"Directional":true}]},{"ID":7372,"SourceStructureID":593,"TargetStructureID":68312,"Label":"593-68312 via Ribbon Synapse from 68311 -> 68313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68311,"TargetID":68313,"Directional":true}]},{"ID":7373,"SourceStructureID":593,"TargetStructureID":68318,"Label":"593-68318 via Ribbon Synapse from 28434 -> 68415","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28434,"TargetID":68415,"Directional":true}]},{"ID":7374,"SourceStructureID":593,"TargetStructureID":68326,"Label":"593-68326 via BC Conventional Synapse from 68328 -> 68327","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68328,"TargetID":68327,"Directional":true}]},{"ID":7375,"SourceStructureID":593,"TargetStructureID":68399,"Label":"593-68399 via BC Conventional Synapse from 115698 -> 68400","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115698,"TargetID":68400,"Directional":true}]},{"ID":7376,"SourceStructureID":593,"TargetStructureID":68412,"Label":"593-68412 via Ribbon Synapse from 28434 -> 68413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28434,"TargetID":68413,"Directional":true}]},{"ID":7377,"SourceStructureID":593,"TargetStructureID":68433,"Label":"593-68433 via BC Conventional Synapse from 87220 -> 68434","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87220,"TargetID":68434,"Directional":true}]},{"ID":7378,"SourceStructureID":593,"TargetStructureID":68435,"Label":"593-68435 via Ribbon Synapse from 130778 -> 68436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130778,"TargetID":68436,"Directional":true}]},{"ID":7379,"SourceStructureID":593,"TargetStructureID":68453,"Label":"593-68453 via Ribbon Synapse from 130778 -> 68454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130778,"TargetID":68454,"Directional":true}]},{"ID":7380,"SourceStructureID":593,"TargetStructureID":68459,"Label":"593-68459 via Ribbon Synapse from 49882 -> 68460","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49882,"TargetID":68460,"Directional":true}]},{"ID":7381,"SourceStructureID":593,"TargetStructureID":68461,"Label":"593-68461 via Ribbon Synapse from 67265 -> 86544, 130889 -> 86544","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67265,"TargetID":86544,"Directional":true},{"SourceID":130889,"TargetID":86544,"Directional":true}]},{"ID":7382,"SourceStructureID":593,"TargetStructureID":68463,"Label":"593-68463 via Ribbon Synapse from 67279 -> 86564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67279,"TargetID":86564,"Directional":true}]},{"ID":7383,"SourceStructureID":593,"TargetStructureID":68480,"Label":"593-68480 via Ribbon Synapse from 63032 -> 84102, 130733 -> 84114","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63032,"TargetID":84102,"Directional":true},{"SourceID":130733,"TargetID":84114,"Directional":true}]},{"ID":7384,"SourceStructureID":593,"TargetStructureID":68486,"Label":"593-68486 via Ribbon Synapse from 130884 -> 79608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130884,"TargetID":79608,"Directional":true}]},{"ID":7385,"SourceStructureID":593,"TargetStructureID":68488,"Label":"593-68488 via Ribbon Synapse from 7735 -> 68491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7735,"TargetID":68491,"Directional":true}]},{"ID":7386,"SourceStructureID":593,"TargetStructureID":68501,"Label":"593-68501 via Ribbon Synapse from 7740 -> 68503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7740,"TargetID":68503,"Directional":true}]},{"ID":7387,"SourceStructureID":593,"TargetStructureID":68511,"Label":"593-68511 via Ribbon Synapse from 7727 -> 68512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7727,"TargetID":68512,"Directional":true}]},{"ID":7388,"SourceStructureID":593,"TargetStructureID":68527,"Label":"593-68527 via BC Conventional Synapse from 115693 -> 68528","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115693,"TargetID":68528,"Directional":true}]},{"ID":7389,"SourceStructureID":593,"TargetStructureID":68539,"Label":"593-68539 via Ribbon Synapse from 131104 -> 68540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131104,"TargetID":68540,"Directional":true}]},{"ID":7390,"SourceStructureID":593,"TargetStructureID":68543,"Label":"593-68543 via Ribbon Synapse from 131104 -> 68544","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131104,"TargetID":68544,"Directional":true}]},{"ID":7391,"SourceStructureID":593,"TargetStructureID":68548,"Label":"593-68548 via BC Conventional Synapse from 68547 -> 68549","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68547,"TargetID":68549,"Directional":true}]},{"ID":7392,"SourceStructureID":593,"TargetStructureID":68548,"Label":"593-68548 via Ribbon Synapse from 63040 -> 73568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63040,"TargetID":73568,"Directional":true}]},{"ID":7393,"SourceStructureID":593,"TargetStructureID":68613,"Label":"593-68613 via Ribbon Synapse from 115710 -> 115711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115710,"TargetID":115711,"Directional":true}]},{"ID":7394,"SourceStructureID":593,"TargetStructureID":68655,"Label":"593-68655 via Ribbon Synapse from 67553 -> 68657","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67553,"TargetID":68657,"Directional":true}]},{"ID":7395,"SourceStructureID":593,"TargetStructureID":68669,"Label":"593-68669 via Ribbon Synapse from 130713 -> 68685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130713,"TargetID":68685,"Directional":true}]},{"ID":7396,"SourceStructureID":593,"TargetStructureID":68678,"Label":"593-68678 via Ribbon Synapse from 130715 -> 68681","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130715,"TargetID":68681,"Directional":true}]},{"ID":7397,"SourceStructureID":593,"TargetStructureID":68679,"Label":"593-68679 via Ribbon Synapse from 130713 -> 130714, 130715 -> 130714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130713,"TargetID":130714,"Directional":true},{"SourceID":130715,"TargetID":130714,"Directional":true}]},{"ID":7398,"SourceStructureID":593,"TargetStructureID":68879,"Label":"593-68879 via Ribbon Synapse from 49568 -> 68880, 130983 -> 82764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49568,"TargetID":68880,"Directional":true},{"SourceID":130983,"TargetID":82764,"Directional":true}]},{"ID":7399,"SourceStructureID":593,"TargetStructureID":68988,"Label":"593-68988 via Ribbon Synapse from 52488 -> 68989","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52488,"TargetID":68989,"Directional":true}]},{"ID":7400,"SourceStructureID":593,"TargetStructureID":70040,"Label":"593-70040 via Ribbon Synapse from 7719 -> 70041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7719,"TargetID":70041,"Directional":true}]},{"ID":7401,"SourceStructureID":593,"TargetStructureID":71517,"Label":"593-71517 via Ribbon Synapse from 59625 -> 66676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59625,"TargetID":66676,"Directional":true}]},{"ID":7402,"SourceStructureID":593,"TargetStructureID":75573,"Label":"593-75573 via Ribbon Synapse from 62883 -> 78882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62883,"TargetID":78882,"Directional":true}]},{"ID":7403,"SourceStructureID":593,"TargetStructureID":79431,"Label":"593-79431 via BC Conventional Synapse from 115721 -> 115719","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115721,"TargetID":115719,"Directional":true}]},{"ID":7404,"SourceStructureID":593,"TargetStructureID":79433,"Label":"593-79433 via BC Conventional Synapse from 115721 -> 115720","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115721,"TargetID":115720,"Directional":true}]},{"ID":7405,"SourceStructureID":593,"TargetStructureID":79586,"Label":"593-79586 via Ribbon Synapse from 49882 -> 79594","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49882,"TargetID":79594,"Directional":true}]},{"ID":7406,"SourceStructureID":593,"TargetStructureID":79654,"Label":"593-79654 via Ribbon Synapse from 86287 -> 86295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86287,"TargetID":86295,"Directional":true}]},{"ID":7407,"SourceStructureID":593,"TargetStructureID":81894,"Label":"593-81894 via Ribbon Synapse from 130784 -> 81895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130784,"TargetID":81895,"Directional":true}]},{"ID":7408,"SourceStructureID":593,"TargetStructureID":82757,"Label":"593-82757 via BC Conventional Synapse from 130984 -> 82758","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130984,"TargetID":82758,"Directional":true}]},{"ID":7409,"SourceStructureID":593,"TargetStructureID":82757,"Label":"593-82757 via Ribbon Synapse from 130983 -> 82758","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130983,"TargetID":82758,"Directional":true}]},{"ID":7410,"SourceStructureID":593,"TargetStructureID":83443,"Label":"593-83443 via BC Conventional Synapse from 67199 -> 83444","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67199,"TargetID":83444,"Directional":true}]},{"ID":7411,"SourceStructureID":593,"TargetStructureID":83476,"Label":"593-83476 via Ribbon Synapse from 49598 -> 83477","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49598,"TargetID":83477,"Directional":true}]},{"ID":7412,"SourceStructureID":593,"TargetStructureID":84275,"Label":"593-84275 via Ribbon Synapse from 115724 -> 115725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115724,"TargetID":115725,"Directional":true}]},{"ID":7413,"SourceStructureID":593,"TargetStructureID":84613,"Label":"593-84613 via Ribbon Synapse from 7745 -> 84616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7745,"TargetID":84616,"Directional":true}]},{"ID":7414,"SourceStructureID":593,"TargetStructureID":85220,"Label":"593-85220 via BC Conventional Synapse from 115731 -> 115730","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115731,"TargetID":115730,"Directional":true}]},{"ID":7415,"SourceStructureID":593,"TargetStructureID":85490,"Label":"593-85490 via BC Conventional Synapse from 85494 -> 85492, 85495 -> 85493","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85494,"TargetID":85492,"Directional":true},{"SourceID":85495,"TargetID":85493,"Directional":true}]},{"ID":7416,"SourceStructureID":593,"TargetStructureID":85491,"Label":"593-85491 via Ribbon Synapse from 66620 -> 85497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66620,"TargetID":85497,"Directional":true}]},{"ID":7417,"SourceStructureID":593,"TargetStructureID":85496,"Label":"593-85496 via Ribbon Synapse from 66620 -> 85498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66620,"TargetID":85498,"Directional":true}]},{"ID":7418,"SourceStructureID":593,"TargetStructureID":85534,"Label":"593-85534 via BC Conventional Synapse from 85533 -> 85535","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85533,"TargetID":85535,"Directional":true}]},{"ID":7419,"SourceStructureID":593,"TargetStructureID":85549,"Label":"593-85549 via Ribbon Synapse from 62886 -> 85550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62886,"TargetID":85550,"Directional":true}]},{"ID":7420,"SourceStructureID":593,"TargetStructureID":85563,"Label":"593-85563 via Ribbon Synapse from 62887 -> 85564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62887,"TargetID":85564,"Directional":true}]},{"ID":7421,"SourceStructureID":593,"TargetStructureID":85595,"Label":"593-85595 via Ribbon Synapse from 66651 -> 85596, 85609 -> 130987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66651,"TargetID":85596,"Directional":true},{"SourceID":85609,"TargetID":130987,"Directional":true}]},{"ID":7422,"SourceStructureID":593,"TargetStructureID":86545,"Label":"593-86545 via Ribbon Synapse from 67265 -> 86553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67265,"TargetID":86553,"Directional":true}]},{"ID":7423,"SourceStructureID":593,"TargetStructureID":87200,"Label":"593-87200 via Ribbon Synapse from 50442 -> 87202","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50442,"TargetID":87202,"Directional":true}]},{"ID":7424,"SourceStructureID":593,"TargetStructureID":87201,"Label":"593-87201 via Ribbon Synapse from 50442 -> 87204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50442,"TargetID":87204,"Directional":true}]},{"ID":7425,"SourceStructureID":593,"TargetStructureID":87221,"Label":"593-87221 via BC Conventional Synapse from 87222 -> 87223","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87222,"TargetID":87223,"Directional":true}]},{"ID":7426,"SourceStructureID":593,"TargetStructureID":87238,"Label":"593-87238 via Ribbon Synapse from 87237 -> 87240, 130990 -> 87240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87237,"TargetID":87240,"Directional":true},{"SourceID":130990,"TargetID":87240,"Directional":true}]},{"ID":7427,"SourceStructureID":593,"TargetStructureID":87263,"Label":"593-87263 via Ribbon Synapse from 87262 -> 87264","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87262,"TargetID":87264,"Directional":true}]},{"ID":7428,"SourceStructureID":593,"TargetStructureID":87271,"Label":"593-87271 via Ribbon Synapse from 7838 -> 115695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7838,"TargetID":115695,"Directional":true}]},{"ID":7429,"SourceStructureID":593,"TargetStructureID":115701,"Label":"593-115701 via Ribbon Synapse from 28406 -> 115702","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28406,"TargetID":115702,"Directional":true}]},{"ID":7430,"SourceStructureID":593,"TargetStructureID":130710,"Label":"593-130710 via Ribbon Synapse from 115681 -> 130711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115681,"TargetID":130711,"Directional":true}]},{"ID":7431,"SourceStructureID":593,"TargetStructureID":130739,"Label":"593-130739 via Ribbon Synapse from 130738 -> 130740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130738,"TargetID":130740,"Directional":true}]},{"ID":7432,"SourceStructureID":593,"TargetStructureID":130755,"Label":"593-130755 via Ribbon Synapse from 120216 -> 130756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120216,"TargetID":130756,"Directional":true}]},{"ID":7433,"SourceStructureID":593,"TargetStructureID":130760,"Label":"593-130760 via Ribbon Synapse from 15899 -> 130761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15899,"TargetID":130761,"Directional":true}]},{"ID":7434,"SourceStructureID":593,"TargetStructureID":130762,"Label":"593-130762 via Ribbon Synapse from 15899 -> 130763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15899,"TargetID":130763,"Directional":true}]},{"ID":7435,"SourceStructureID":593,"TargetStructureID":130772,"Label":"593-130772 via Ribbon Synapse from 36527 -> 130773","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36527,"TargetID":130773,"Directional":true}]},{"ID":7436,"SourceStructureID":593,"TargetStructureID":130779,"Label":"593-130779 via Ribbon Synapse from 63963 -> 130780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63963,"TargetID":130780,"Directional":true}]},{"ID":7437,"SourceStructureID":593,"TargetStructureID":130885,"Label":"593-130885 via Ribbon Synapse from 130884 -> 130886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130884,"TargetID":130886,"Directional":true}]},{"ID":7438,"SourceStructureID":593,"TargetStructureID":130891,"Label":"593-130891 via Ribbon Synapse from 67279 -> 130892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67279,"TargetID":130892,"Directional":true}]},{"ID":7439,"SourceStructureID":593,"TargetStructureID":130913,"Label":"593-130913 via Ribbon Synapse from 67553 -> 130914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67553,"TargetID":130914,"Directional":true}]},{"ID":7440,"SourceStructureID":593,"TargetStructureID":130930,"Label":"593-130930 via Ribbon Synapse from 68071 -> 130931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68071,"TargetID":130931,"Directional":true}]},{"ID":7441,"SourceStructureID":593,"TargetStructureID":130964,"Label":"593-130964 via Ribbon Synapse from 7736 -> 130965","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7736,"TargetID":130965,"Directional":true}]},{"ID":7442,"SourceStructureID":593,"TargetStructureID":130975,"Label":"593-130975 via Ribbon Synapse from 7815 -> 130976","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7815,"TargetID":130976,"Directional":true}]},{"ID":7443,"SourceStructureID":595,"TargetStructureID":606,"Label":"595-606 via Ribbon Synapse from 47254 -> 47255, 53469 -> 53470, 53508 -> 53509, 53512 -> 53513, 53977 -> 53978","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47254,"TargetID":47255,"Directional":true},{"SourceID":53469,"TargetID":53470,"Directional":true},{"SourceID":53508,"TargetID":53509,"Directional":true},{"SourceID":53512,"TargetID":53513,"Directional":true},{"SourceID":53977,"TargetID":53978,"Directional":true}]},{"ID":7444,"SourceStructureID":595,"TargetStructureID":5423,"Label":"595-5423 via Ribbon Synapse from 92825 -> 92826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92825,"TargetID":92826,"Directional":true}]},{"ID":7445,"SourceStructureID":595,"TargetStructureID":5435,"Label":"595-5435 via Ribbon Synapse from 40656 -> 40546, 125078 -> 125080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40656,"TargetID":40546,"Directional":true},{"SourceID":125078,"TargetID":125080,"Directional":true}]},{"ID":7446,"SourceStructureID":595,"TargetStructureID":5436,"Label":"595-5436 via Ribbon Synapse from 91646 -> 23074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91646,"TargetID":23074,"Directional":true}]},{"ID":7447,"SourceStructureID":595,"TargetStructureID":5451,"Label":"595-5451 via Ribbon Synapse from 46655 -> 55160, 46659 -> 55163, 46661 -> 55159","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46655,"TargetID":55160,"Directional":true},{"SourceID":46659,"TargetID":55163,"Directional":true},{"SourceID":46661,"TargetID":55159,"Directional":true}]},{"ID":7448,"SourceStructureID":595,"TargetStructureID":5481,"Label":"595-5481 via Ribbon Synapse from 19557 -> 19555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19557,"TargetID":19555,"Directional":true}]},{"ID":7449,"SourceStructureID":595,"TargetStructureID":10565,"Label":"595-10565 via Ribbon Synapse from 135568 -> 135569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135568,"TargetID":135569,"Directional":true}]},{"ID":7450,"SourceStructureID":595,"TargetStructureID":15796,"Label":"595-15796 via Ribbon Synapse from 135688 -> 135690","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135688,"TargetID":135690,"Directional":true}]},{"ID":7451,"SourceStructureID":595,"TargetStructureID":34055,"Label":"595-34055 via Ribbon Synapse from 40648 -> 40649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40648,"TargetID":40649,"Directional":true}]},{"ID":7452,"SourceStructureID":595,"TargetStructureID":44346,"Label":"595-44346 via Ribbon Synapse from 44816 -> 44814, 125203 -> 135700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44816,"TargetID":44814,"Directional":true},{"SourceID":125203,"TargetID":135700,"Directional":true}]},{"ID":7453,"SourceStructureID":595,"TargetStructureID":54925,"Label":"595-54925 via Ribbon Synapse from 54940 -> 54939","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54940,"TargetID":54939,"Directional":true}]},{"ID":7454,"SourceStructureID":595,"TargetStructureID":74727,"Label":"595-74727 via Ribbon Synapse from 82480 -> 82481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82480,"TargetID":82481,"Directional":true}]},{"ID":7455,"SourceStructureID":595,"TargetStructureID":79259,"Label":"595-79259 via Ribbon Synapse from 46650 -> 135707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46650,"TargetID":135707,"Directional":true}]},{"ID":7456,"SourceStructureID":595,"TargetStructureID":88521,"Label":"595-88521 via BC Conventional Synapse from 92684 -> 92683","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92684,"TargetID":92683,"Directional":true}]},{"ID":7457,"SourceStructureID":595,"TargetStructureID":89039,"Label":"595-89039 via Ribbon Synapse from 46691 -> 89055","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46691,"TargetID":89055,"Directional":true}]},{"ID":7458,"SourceStructureID":595,"TargetStructureID":91132,"Label":"595-91132 via Ribbon Synapse from 92618 -> 92619","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92618,"TargetID":92619,"Directional":true}]},{"ID":7459,"SourceStructureID":595,"TargetStructureID":91232,"Label":"595-91232 via Ribbon Synapse from 92600 -> 92601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92600,"TargetID":92601,"Directional":true}]},{"ID":7460,"SourceStructureID":595,"TargetStructureID":91376,"Label":"595-91376 via Ribbon Synapse from 91276 -> 92704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91276,"TargetID":92704,"Directional":true}]},{"ID":7461,"SourceStructureID":595,"TargetStructureID":96270,"Label":"595-96270 via Ribbon Synapse from 46650 -> 135706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46650,"TargetID":135706,"Directional":true}]},{"ID":7462,"SourceStructureID":595,"TargetStructureID":126012,"Label":"595-126012 via Ribbon Synapse from 47206 -> 126015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47206,"TargetID":126015,"Directional":true}]},{"ID":7463,"SourceStructureID":598,"TargetStructureID":408,"Label":"598-408 via Conventional from 25881 -> 25880","Type":"Conventional","Directional":true,"Links":[{"SourceID":25881,"TargetID":25880,"Directional":true}]},{"ID":7464,"SourceStructureID":598,"TargetStructureID":485,"Label":"598-485 via Conventional from 38812 -> 38814","Type":"Conventional","Directional":true,"Links":[{"SourceID":38812,"TargetID":38814,"Directional":true}]},{"ID":7465,"SourceStructureID":598,"TargetStructureID":5396,"Label":"598-5396 via Conventional from 32401 -> 89481","Type":"Conventional","Directional":true,"Links":[{"SourceID":32401,"TargetID":89481,"Directional":true}]},{"ID":7466,"SourceStructureID":598,"TargetStructureID":5563,"Label":"598-5563 via Conventional from 32402 -> 32399","Type":"Conventional","Directional":true,"Links":[{"SourceID":32402,"TargetID":32399,"Directional":true}]},{"ID":7467,"SourceStructureID":598,"TargetStructureID":5650,"Label":"598-5650 via Conventional from 6323 -> 104312","Type":"Conventional","Directional":true,"Links":[{"SourceID":6323,"TargetID":104312,"Directional":true}]},{"ID":7468,"SourceStructureID":598,"TargetStructureID":6120,"Label":"598-6120 via Conventional from 6328 -> 110543","Type":"Conventional","Directional":true,"Links":[{"SourceID":6328,"TargetID":110543,"Directional":true}]},{"ID":7469,"SourceStructureID":598,"TargetStructureID":38810,"Label":"598-38810 via Conventional from 38806 -> 38811","Type":"Conventional","Directional":true,"Links":[{"SourceID":38806,"TargetID":38811,"Directional":true}]},{"ID":7470,"SourceStructureID":606,"TargetStructureID":7594,"Label":"606-7594 via Cistern Pre from 47615 -> 47616","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":47615,"TargetID":47616,"Directional":true}]},{"ID":7471,"SourceStructureID":606,"TargetStructureID":55517,"Label":"606-55517 via Cistern Pre from 52853 -> 55560","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":52853,"TargetID":55560,"Directional":true}]},{"ID":7472,"SourceStructureID":606,"TargetStructureID":89554,"Label":"606-89554 via Cistern Pre from 51540 -> 89555","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":51540,"TargetID":89555,"Directional":true}]},{"ID":7473,"SourceStructureID":611,"TargetStructureID":70205,"Label":"611-70205 via Ribbon Synapse from 70216 -> 70214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70216,"TargetID":70214,"Directional":true}]},{"ID":7474,"SourceStructureID":906,"TargetStructureID":307,"Label":"906-307 via Conventional from 15874 -> 15896, 15875 -> 15895, 15904 -> 15972, 15905 -> 16793","Type":"Conventional","Directional":true,"Links":[{"SourceID":15874,"TargetID":15896,"Directional":true},{"SourceID":15875,"TargetID":15895,"Directional":true},{"SourceID":15904,"TargetID":15972,"Directional":true},{"SourceID":15905,"TargetID":16793,"Directional":true}]},{"ID":7475,"SourceStructureID":906,"TargetStructureID":4570,"Label":"906-4570 via Conventional from 15194 -> 4751","Type":"Conventional","Directional":true,"Links":[{"SourceID":15194,"TargetID":4751,"Directional":true}]},{"ID":7476,"SourceStructureID":906,"TargetStructureID":5575,"Label":"906-5575 via Conventional from 15229 -> 22950","Type":"Conventional","Directional":true,"Links":[{"SourceID":15229,"TargetID":22950,"Directional":true}]},{"ID":7477,"SourceStructureID":906,"TargetStructureID":18693,"Label":"906-18693 via Conventional from 15912 -> 18822, 15913 -> 18727, 22957 -> 22958","Type":"Conventional","Directional":true,"Links":[{"SourceID":15912,"TargetID":18822,"Directional":true},{"SourceID":15913,"TargetID":18727,"Directional":true},{"SourceID":22957,"TargetID":22958,"Directional":true}]},{"ID":7478,"SourceStructureID":906,"TargetStructureID":25392,"Label":"906-25392 via Conventional from 15231 -> 25401","Type":"Conventional","Directional":true,"Links":[{"SourceID":15231,"TargetID":25401,"Directional":true}]},{"ID":7479,"SourceStructureID":906,"TargetStructureID":122467,"Label":"906-122467 via Conventional from 15172 -> 122468","Type":"Conventional","Directional":true,"Links":[{"SourceID":15172,"TargetID":122468,"Directional":true}]},{"ID":7480,"SourceStructureID":906,"TargetStructureID":122469,"Label":"906-122469 via Conventional from 15179 -> 122470","Type":"Conventional","Directional":true,"Links":[{"SourceID":15179,"TargetID":122470,"Directional":true}]},{"ID":7481,"SourceStructureID":907,"TargetStructureID":1724,"Label":"907-1724 via Cistern Pre from 47910 -> 47909","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":47910,"TargetID":47909,"Directional":true}]},{"ID":7482,"SourceStructureID":907,"TargetStructureID":5575,"Label":"907-5575 via Conventional from 64545 -> 64544","Type":"Conventional","Directional":true,"Links":[{"SourceID":64545,"TargetID":64544,"Directional":true}]},{"ID":7483,"SourceStructureID":909,"TargetStructureID":598,"Label":"909-598 via BC Conventional Synapse from 117796 -> 117797","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117796,"TargetID":117797,"Directional":true}]},{"ID":7484,"SourceStructureID":909,"TargetStructureID":598,"Label":"909-598 via Ribbon Synapse from 36055 -> 36056, 53772 -> 117258, 55601 -> 117795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36055,"TargetID":36056,"Directional":true},{"SourceID":53772,"TargetID":117258,"Directional":true},{"SourceID":55601,"TargetID":117795,"Directional":true}]},{"ID":7485,"SourceStructureID":909,"TargetStructureID":4890,"Label":"909-4890 via Ribbon Synapse from 64915 -> 64914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64915,"TargetID":64914,"Directional":true}]},{"ID":7486,"SourceStructureID":909,"TargetStructureID":5282,"Label":"909-5282 via Ribbon Synapse from 113682 -> 121606","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113682,"TargetID":121606,"Directional":true}]},{"ID":7487,"SourceStructureID":909,"TargetStructureID":5377,"Label":"909-5377 via Ribbon Synapse from 87039 -> 87030, 87040 -> 87042","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87039,"TargetID":87030,"Directional":true},{"SourceID":87040,"TargetID":87042,"Directional":true}]},{"ID":7488,"SourceStructureID":909,"TargetStructureID":5405,"Label":"909-5405 via BC Conventional Synapse from 87041 -> 11177, 120200 -> 120201","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":87041,"TargetID":11177,"Directional":true},{"SourceID":120200,"TargetID":120201,"Directional":true}]},{"ID":7489,"SourceStructureID":909,"TargetStructureID":5405,"Label":"909-5405 via Ribbon Synapse from 53735 -> 117427, 113675 -> 113676, 113679 -> 131025, 117275 -> 117282, 117425 -> 117426, 118645 -> 11175, 120109 -> 11181, 130018 -> 130017","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53735,"TargetID":117427,"Directional":true},{"SourceID":113675,"TargetID":113676,"Directional":true},{"SourceID":113679,"TargetID":131025,"Directional":true},{"SourceID":117275,"TargetID":117282,"Directional":true},{"SourceID":117425,"TargetID":117426,"Directional":true},{"SourceID":118645,"TargetID":11175,"Directional":true},{"SourceID":120109,"TargetID":11181,"Directional":true},{"SourceID":130018,"TargetID":130017,"Directional":true}]},{"ID":7490,"SourceStructureID":909,"TargetStructureID":5497,"Label":"909-5497 via Ribbon Synapse from 45938 -> 131091, 53746 -> 117469, 130118 -> 117653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45938,"TargetID":131091,"Directional":true},{"SourceID":53746,"TargetID":117469,"Directional":true},{"SourceID":130118,"TargetID":117653,"Directional":true}]},{"ID":7491,"SourceStructureID":909,"TargetStructureID":7134,"Label":"909-7134 via Ribbon Synapse from 117824 -> 117900, 117911 -> 117914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117824,"TargetID":117900,"Directional":true},{"SourceID":117911,"TargetID":117914,"Directional":true}]},{"ID":7492,"SourceStructureID":909,"TargetStructureID":7594,"Label":"909-7594 via Ribbon Synapse from 55601 -> 117794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55601,"TargetID":117794,"Directional":true}]},{"ID":7493,"SourceStructureID":909,"TargetStructureID":8575,"Label":"909-8575 via BC Conventional Synapse from 130864 -> 130865","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130864,"TargetID":130865,"Directional":true}]},{"ID":7494,"SourceStructureID":909,"TargetStructureID":8575,"Label":"909-8575 via Ribbon cluster from 130822 -> 130821","Type":"Ribbon cluster","Directional":true,"Links":[{"SourceID":130822,"TargetID":130821,"Directional":true}]},{"ID":7495,"SourceStructureID":909,"TargetStructureID":8575,"Label":"909-8575 via Ribbon Synapse from 62060 -> 62058, 120142 -> 120146, 129568 -> 62077, 129570 -> 62077, 130823 -> 130821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62060,"TargetID":62058,"Directional":true},{"SourceID":120142,"TargetID":120146,"Directional":true},{"SourceID":129568,"TargetID":62077,"Directional":true},{"SourceID":129570,"TargetID":62077,"Directional":true},{"SourceID":130823,"TargetID":130821,"Directional":true}]},{"ID":7496,"SourceStructureID":909,"TargetStructureID":8579,"Label":"909-8579 via Ribbon Synapse from 36057 -> 62900","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36057,"TargetID":62900,"Directional":true}]},{"ID":7497,"SourceStructureID":909,"TargetStructureID":15796,"Label":"909-15796 via Ribbon Synapse from 87039 -> 131063, 116366 -> 116392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87039,"TargetID":131063,"Directional":true},{"SourceID":116366,"TargetID":116392,"Directional":true}]},{"ID":7498,"SourceStructureID":909,"TargetStructureID":16073,"Label":"909-16073 via Ribbon Synapse from 116783 -> 116784, 130018 -> 130019","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116783,"TargetID":116784,"Directional":true},{"SourceID":130018,"TargetID":130019,"Directional":true}]},{"ID":7499,"SourceStructureID":909,"TargetStructureID":30567,"Label":"909-30567 via Ribbon Synapse from 30652 -> 30647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30652,"TargetID":30647,"Directional":true}]},{"ID":7500,"SourceStructureID":909,"TargetStructureID":48573,"Label":"909-48573 via Ribbon Synapse from 45883 -> 115927","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45883,"TargetID":115927,"Directional":true}]},{"ID":7501,"SourceStructureID":909,"TargetStructureID":54078,"Label":"909-54078 via Ribbon Synapse from 53804 -> 67802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53804,"TargetID":67802,"Directional":true}]},{"ID":7502,"SourceStructureID":909,"TargetStructureID":55517,"Label":"909-55517 via Ribbon Synapse from 55601 -> 55602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55601,"TargetID":55602,"Directional":true}]},{"ID":7503,"SourceStructureID":909,"TargetStructureID":58592,"Label":"909-58592 via Ribbon Synapse from 45882 -> 58626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45882,"TargetID":58626,"Directional":true}]},{"ID":7504,"SourceStructureID":909,"TargetStructureID":58829,"Label":"909-58829 via Ribbon Synapse from 45933 -> 131079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45933,"TargetID":131079,"Directional":true}]},{"ID":7505,"SourceStructureID":909,"TargetStructureID":59145,"Label":"909-59145 via Ribbon Synapse from 30651 -> 59146, 128748 -> 59146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30651,"TargetID":59146,"Directional":true},{"SourceID":128748,"TargetID":59146,"Directional":true}]},{"ID":7506,"SourceStructureID":909,"TargetStructureID":59147,"Label":"909-59147 via Ribbon Synapse from 30651 -> 59150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30651,"TargetID":59150,"Directional":true}]},{"ID":7507,"SourceStructureID":909,"TargetStructureID":61450,"Label":"909-61450 via BC Conventional Synapse from 117231 -> 61492","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117231,"TargetID":61492,"Directional":true}]},{"ID":7508,"SourceStructureID":909,"TargetStructureID":61450,"Label":"909-61450 via Ribbon Synapse from 130261 -> 117890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130261,"TargetID":117890,"Directional":true}]},{"ID":7509,"SourceStructureID":909,"TargetStructureID":61500,"Label":"909-61500 via Ribbon Synapse from 45924 -> 130980, 61502 -> 61501, 61505 -> 61504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45924,"TargetID":130980,"Directional":true},{"SourceID":61502,"TargetID":61501,"Directional":true},{"SourceID":61505,"TargetID":61504,"Directional":true}]},{"ID":7510,"SourceStructureID":909,"TargetStructureID":62578,"Label":"909-62578 via BC Conventional Synapse from 120169 -> 120168","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120169,"TargetID":120168,"Directional":true}]},{"ID":7511,"SourceStructureID":909,"TargetStructureID":62578,"Label":"909-62578 via Ribbon Synapse from 113675 -> 62583, 117275 -> 117281, 118407 -> 118416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113675,"TargetID":62583,"Directional":true},{"SourceID":117275,"TargetID":117281,"Directional":true},{"SourceID":118407,"TargetID":118416,"Directional":true}]},{"ID":7512,"SourceStructureID":909,"TargetStructureID":65134,"Label":"909-65134 via BC Conventional Synapse from 123565 -> 123564","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123565,"TargetID":123564,"Directional":true}]},{"ID":7513,"SourceStructureID":909,"TargetStructureID":66374,"Label":"909-66374 via Ribbon Synapse from 115966 -> 66387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115966,"TargetID":66387,"Directional":true}]},{"ID":7514,"SourceStructureID":909,"TargetStructureID":66390,"Label":"909-66390 via Ribbon Synapse from 36058 -> 66393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36058,"TargetID":66393,"Directional":true}]},{"ID":7515,"SourceStructureID":909,"TargetStructureID":67663,"Label":"909-67663 via Ribbon Synapse from 36061 -> 69866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36061,"TargetID":69866,"Directional":true}]},{"ID":7516,"SourceStructureID":909,"TargetStructureID":68153,"Label":"909-68153 via Ribbon Synapse from 130077 -> 130078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130077,"TargetID":130078,"Directional":true}]},{"ID":7517,"SourceStructureID":909,"TargetStructureID":69162,"Label":"909-69162 via Ribbon Synapse from 45918 -> 69214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45918,"TargetID":69214,"Directional":true}]},{"ID":7518,"SourceStructureID":909,"TargetStructureID":69367,"Label":"909-69367 via Ribbon Synapse from 53740 -> 72371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53740,"TargetID":72371,"Directional":true}]},{"ID":7519,"SourceStructureID":909,"TargetStructureID":75922,"Label":"909-75922 via Ribbon Synapse from 129969 -> 129970","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129969,"TargetID":129970,"Directional":true}]},{"ID":7520,"SourceStructureID":909,"TargetStructureID":78333,"Label":"909-78333 via BC Conventional Synapse from 117480 -> 117481","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117480,"TargetID":117481,"Directional":true}]},{"ID":7521,"SourceStructureID":909,"TargetStructureID":78709,"Label":"909-78709 via Ribbon Synapse from 45932 -> 131021","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45932,"TargetID":131021,"Directional":true}]},{"ID":7522,"SourceStructureID":909,"TargetStructureID":81532,"Label":"909-81532 via Ribbon Synapse from 53772 -> 117257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53772,"TargetID":117257,"Directional":true}]},{"ID":7523,"SourceStructureID":909,"TargetStructureID":96139,"Label":"909-96139 via Ribbon Synapse from 118471 -> 130854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118471,"TargetID":130854,"Directional":true}]},{"ID":7524,"SourceStructureID":909,"TargetStructureID":97131,"Label":"909-97131 via Ribbon Synapse from 130116 -> 130117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130116,"TargetID":130117,"Directional":true}]},{"ID":7525,"SourceStructureID":909,"TargetStructureID":97363,"Label":"909-97363 via Ribbon Synapse from 115939 -> 129616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115939,"TargetID":129616,"Directional":true}]},{"ID":7526,"SourceStructureID":909,"TargetStructureID":99091,"Label":"909-99091 via Ribbon Synapse from 45882 -> 129574","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45882,"TargetID":129574,"Directional":true}]},{"ID":7527,"SourceStructureID":909,"TargetStructureID":103987,"Label":"909-103987 via Ribbon Synapse from 130073 -> 130074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130073,"TargetID":130074,"Directional":true}]},{"ID":7528,"SourceStructureID":909,"TargetStructureID":104619,"Label":"909-104619 via Ribbon Synapse from 53802 -> 118383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53802,"TargetID":118383,"Directional":true}]},{"ID":7529,"SourceStructureID":909,"TargetStructureID":104662,"Label":"909-104662 via Ribbon Synapse from 130266 -> 130267","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130266,"TargetID":130267,"Directional":true}]},{"ID":7530,"SourceStructureID":909,"TargetStructureID":110295,"Label":"909-110295 via BC Conventional Synapse from 130934 -> 130935","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130934,"TargetID":130935,"Directional":true}]},{"ID":7531,"SourceStructureID":909,"TargetStructureID":115853,"Label":"909-115853 via Ribbon Synapse from 129472 -> 115854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129472,"TargetID":115854,"Directional":true}]},{"ID":7532,"SourceStructureID":909,"TargetStructureID":115855,"Label":"909-115855 via BC Conventional Synapse from 130471 -> 130470","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130471,"TargetID":130470,"Directional":true}]},{"ID":7533,"SourceStructureID":909,"TargetStructureID":115855,"Label":"909-115855 via Ribbon Synapse from 38884 -> 115859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38884,"TargetID":115859,"Directional":true}]},{"ID":7534,"SourceStructureID":909,"TargetStructureID":115860,"Label":"909-115860 via Ribbon Synapse from 40312 -> 115862, 129472 -> 129473","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40312,"TargetID":115862,"Directional":true},{"SourceID":129472,"TargetID":129473,"Directional":true}]},{"ID":7535,"SourceStructureID":909,"TargetStructureID":115878,"Label":"909-115878 via Ribbon Synapse from 115877 -> 115879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115877,"TargetID":115879,"Directional":true}]},{"ID":7536,"SourceStructureID":909,"TargetStructureID":115880,"Label":"909-115880 via Ribbon Synapse from 115877 -> 115881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115877,"TargetID":115881,"Directional":true}]},{"ID":7537,"SourceStructureID":909,"TargetStructureID":115884,"Label":"909-115884 via Ribbon Synapse from 115883 -> 115885","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115883,"TargetID":115885,"Directional":true}]},{"ID":7538,"SourceStructureID":909,"TargetStructureID":115886,"Label":"909-115886 via Ribbon Synapse from 115883 -> 115887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115883,"TargetID":115887,"Directional":true}]},{"ID":7539,"SourceStructureID":909,"TargetStructureID":115890,"Label":"909-115890 via Ribbon Synapse from 45839 -> 115893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45839,"TargetID":115893,"Directional":true}]},{"ID":7540,"SourceStructureID":909,"TargetStructureID":115895,"Label":"909-115895 via Ribbon Synapse from 115894 -> 115898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115894,"TargetID":115898,"Directional":true}]},{"ID":7541,"SourceStructureID":909,"TargetStructureID":115897,"Label":"909-115897 via Ribbon Synapse from 115894 -> 115899","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115894,"TargetID":115899,"Directional":true}]},{"ID":7542,"SourceStructureID":909,"TargetStructureID":115916,"Label":"909-115916 via Ribbon Synapse from 115913 -> 115917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115913,"TargetID":115917,"Directional":true}]},{"ID":7543,"SourceStructureID":909,"TargetStructureID":115921,"Label":"909-115921 via Ribbon Synapse from 115920 -> 115924","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115920,"TargetID":115924,"Directional":true}]},{"ID":7544,"SourceStructureID":909,"TargetStructureID":115922,"Label":"909-115922 via Ribbon Synapse from 115920 -> 115925","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115920,"TargetID":115925,"Directional":true}]},{"ID":7545,"SourceStructureID":909,"TargetStructureID":115923,"Label":"909-115923 via Ribbon Synapse from 115920 -> 115926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115920,"TargetID":115926,"Directional":true}]},{"ID":7546,"SourceStructureID":909,"TargetStructureID":115928,"Label":"909-115928 via BC Conventional Synapse from 115113 -> 115932","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115113,"TargetID":115932,"Directional":true}]},{"ID":7547,"SourceStructureID":909,"TargetStructureID":115930,"Label":"909-115930 via BC Conventional Synapse from 115114 -> 115933","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115114,"TargetID":115933,"Directional":true}]},{"ID":7548,"SourceStructureID":909,"TargetStructureID":115944,"Label":"909-115944 via Ribbon Synapse from 115939 -> 115945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115939,"TargetID":115945,"Directional":true}]},{"ID":7549,"SourceStructureID":909,"TargetStructureID":115967,"Label":"909-115967 via Ribbon Synapse from 115966 -> 115968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115966,"TargetID":115968,"Directional":true}]},{"ID":7550,"SourceStructureID":909,"TargetStructureID":115969,"Label":"909-115969 via Ribbon Synapse from 36059 -> 115970","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36059,"TargetID":115970,"Directional":true}]},{"ID":7551,"SourceStructureID":909,"TargetStructureID":115984,"Label":"909-115984 via Ribbon Synapse from 115115 -> 115985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115115,"TargetID":115985,"Directional":true}]},{"ID":7552,"SourceStructureID":909,"TargetStructureID":115990,"Label":"909-115990 via Ribbon Synapse from 120103 -> 120102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120103,"TargetID":120102,"Directional":true}]},{"ID":7553,"SourceStructureID":909,"TargetStructureID":116373,"Label":"909-116373 via Ribbon Synapse from 115997 -> 116374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115997,"TargetID":116374,"Directional":true}]},{"ID":7554,"SourceStructureID":909,"TargetStructureID":116378,"Label":"909-116378 via Ribbon Synapse from 116379 -> 116380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116379,"TargetID":116380,"Directional":true}]},{"ID":7555,"SourceStructureID":909,"TargetStructureID":116387,"Label":"909-116387 via Ribbon Synapse from 116379 -> 129975","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116379,"TargetID":129975,"Directional":true}]},{"ID":7556,"SourceStructureID":909,"TargetStructureID":116390,"Label":"909-116390 via Ribbon Synapse from 116366 -> 116391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116366,"TargetID":116391,"Directional":true}]},{"ID":7557,"SourceStructureID":909,"TargetStructureID":116395,"Label":"909-116395 via Ribbon Synapse from 129987 -> 116397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129987,"TargetID":116397,"Directional":true}]},{"ID":7558,"SourceStructureID":909,"TargetStructureID":116400,"Label":"909-116400 via Ribbon Synapse from 116780 -> 116781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116780,"TargetID":116781,"Directional":true}]},{"ID":7559,"SourceStructureID":909,"TargetStructureID":116769,"Label":"909-116769 via Ribbon Synapse from 116780 -> 116774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116780,"TargetID":116774,"Directional":true}]},{"ID":7560,"SourceStructureID":909,"TargetStructureID":116775,"Label":"909-116775 via Ribbon Synapse from 116402 -> 116776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116402,"TargetID":116776,"Directional":true}]},{"ID":7561,"SourceStructureID":909,"TargetStructureID":116785,"Label":"909-116785 via Ribbon Synapse from 116783 -> 116787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116783,"TargetID":116787,"Directional":true}]},{"ID":7562,"SourceStructureID":909,"TargetStructureID":117200,"Label":"909-117200 via Ribbon Synapse from 97715 -> 117201","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97715,"TargetID":117201,"Directional":true}]},{"ID":7563,"SourceStructureID":909,"TargetStructureID":117202,"Label":"909-117202 via Ribbon Synapse from 97715 -> 117203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97715,"TargetID":117203,"Directional":true}]},{"ID":7564,"SourceStructureID":909,"TargetStructureID":117208,"Label":"909-117208 via BC Conventional Synapse from 117212 -> 117213","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117212,"TargetID":117213,"Directional":true}]},{"ID":7565,"SourceStructureID":909,"TargetStructureID":117214,"Label":"909-117214 via Ribbon Synapse from 113684 -> 117217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113684,"TargetID":117217,"Directional":true}]},{"ID":7566,"SourceStructureID":909,"TargetStructureID":117218,"Label":"909-117218 via Ribbon Synapse from 113684 -> 131067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113684,"TargetID":131067,"Directional":true}]},{"ID":7567,"SourceStructureID":909,"TargetStructureID":117233,"Label":"909-117233 via Ribbon Synapse from 87043 -> 117234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87043,"TargetID":117234,"Directional":true}]},{"ID":7568,"SourceStructureID":909,"TargetStructureID":117263,"Label":"909-117263 via Ribbon Synapse from 53805 -> 117264","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53805,"TargetID":117264,"Directional":true}]},{"ID":7569,"SourceStructureID":909,"TargetStructureID":117269,"Label":"909-117269 via BC Conventional Synapse from 117267 -> 117270","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117267,"TargetID":117270,"Directional":true}]},{"ID":7570,"SourceStructureID":909,"TargetStructureID":117272,"Label":"909-117272 via BC Conventional Synapse from 130135 -> 130136","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130135,"TargetID":130136,"Directional":true}]},{"ID":7571,"SourceStructureID":909,"TargetStructureID":117285,"Label":"909-117285 via Ribbon Synapse from 117279 -> 117434","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117279,"TargetID":117434,"Directional":true}]},{"ID":7572,"SourceStructureID":909,"TargetStructureID":117388,"Label":"909-117388 via Ribbon Synapse from 53736 -> 117389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53736,"TargetID":117389,"Directional":true}]},{"ID":7573,"SourceStructureID":909,"TargetStructureID":117390,"Label":"909-117390 via Ribbon Synapse from 53736 -> 117391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53736,"TargetID":117391,"Directional":true}]},{"ID":7574,"SourceStructureID":909,"TargetStructureID":117394,"Label":"909-117394 via Ribbon Synapse from 117393 -> 117395","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117393,"TargetID":117395,"Directional":true}]},{"ID":7575,"SourceStructureID":909,"TargetStructureID":117406,"Label":"909-117406 via Ribbon Synapse from 53731 -> 117418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53731,"TargetID":117418,"Directional":true}]},{"ID":7576,"SourceStructureID":909,"TargetStructureID":117411,"Label":"909-117411 via Ribbon Synapse from 53731 -> 117419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53731,"TargetID":117419,"Directional":true}]},{"ID":7577,"SourceStructureID":909,"TargetStructureID":117431,"Label":"909-117431 via Ribbon Synapse from 117425 -> 120164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117425,"TargetID":120164,"Directional":true}]},{"ID":7578,"SourceStructureID":909,"TargetStructureID":117433,"Label":"909-117433 via Ribbon Synapse from 117275 -> 117435","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117275,"TargetID":117435,"Directional":true}]},{"ID":7579,"SourceStructureID":909,"TargetStructureID":117450,"Label":"909-117450 via BC Conventional Synapse from 130075 -> 130076","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130075,"TargetID":130076,"Directional":true}]},{"ID":7580,"SourceStructureID":909,"TargetStructureID":117461,"Label":"909-117461 via Ribbon Synapse from 117460 -> 117462","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117460,"TargetID":117462,"Directional":true}]},{"ID":7581,"SourceStructureID":909,"TargetStructureID":117465,"Label":"909-117465 via Ribbon Synapse from 117479 -> 130089","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117479,"TargetID":130089,"Directional":true}]},{"ID":7582,"SourceStructureID":909,"TargetStructureID":117470,"Label":"909-117470 via Ribbon Synapse from 53746 -> 117473","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53746,"TargetID":117473,"Directional":true}]},{"ID":7583,"SourceStructureID":909,"TargetStructureID":117637,"Label":"909-117637 via BC Conventional Synapse from 117636 -> 117638","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117636,"TargetID":117638,"Directional":true}]},{"ID":7584,"SourceStructureID":909,"TargetStructureID":117639,"Label":"909-117639 via Ribbon Synapse from 130080 -> 130081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130080,"TargetID":130081,"Directional":true}]},{"ID":7585,"SourceStructureID":909,"TargetStructureID":117643,"Label":"909-117643 via Ribbon Synapse from 117642 -> 117644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117642,"TargetID":117644,"Directional":true}]},{"ID":7586,"SourceStructureID":909,"TargetStructureID":117645,"Label":"909-117645 via Ribbon Synapse from 117642 -> 117646","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117642,"TargetID":117646,"Directional":true}]},{"ID":7587,"SourceStructureID":909,"TargetStructureID":117650,"Label":"909-117650 via Ribbon Synapse from 130118 -> 117651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130118,"TargetID":117651,"Directional":true}]},{"ID":7588,"SourceStructureID":909,"TargetStructureID":117668,"Label":"909-117668 via BC Conventional Synapse from 117667 -> 117669","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117667,"TargetID":117669,"Directional":true}]},{"ID":7589,"SourceStructureID":909,"TargetStructureID":117670,"Label":"909-117670 via BC Conventional Synapse from 117459 -> 117671, 120170 -> 120171","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117459,"TargetID":117671,"Directional":true},{"SourceID":120170,"TargetID":120171,"Directional":true}]},{"ID":7590,"SourceStructureID":909,"TargetStructureID":117672,"Label":"909-117672 via BC Conventional Synapse from 117676 -> 117677","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117676,"TargetID":117677,"Directional":true}]},{"ID":7591,"SourceStructureID":909,"TargetStructureID":117678,"Label":"909-117678 via Ribbon Synapse from 130133 -> 130131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130133,"TargetID":130131,"Directional":true}]},{"ID":7592,"SourceStructureID":909,"TargetStructureID":117683,"Label":"909-117683 via Ribbon Synapse from 130133 -> 130132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130133,"TargetID":130132,"Directional":true}]},{"ID":7593,"SourceStructureID":909,"TargetStructureID":117689,"Label":"909-117689 via Ribbon Synapse from 117693 -> 120174","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117693,"TargetID":120174,"Directional":true}]},{"ID":7594,"SourceStructureID":909,"TargetStructureID":117780,"Label":"909-117780 via Ribbon Synapse from 117696 -> 117781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117696,"TargetID":117781,"Directional":true}]},{"ID":7595,"SourceStructureID":909,"TargetStructureID":117811,"Label":"909-117811 via Ribbon Synapse from 117809 -> 117812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117809,"TargetID":117812,"Directional":true}]},{"ID":7596,"SourceStructureID":909,"TargetStructureID":117835,"Label":"909-117835 via BC Conventional Synapse from 117834 -> 117836","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117834,"TargetID":117836,"Directional":true}]},{"ID":7597,"SourceStructureID":909,"TargetStructureID":117843,"Label":"909-117843 via Ribbon Synapse from 53788 -> 117848, 117844 -> 130277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53788,"TargetID":117848,"Directional":true},{"SourceID":117844,"TargetID":130277,"Directional":true}]},{"ID":7598,"SourceStructureID":909,"TargetStructureID":117854,"Label":"909-117854 via Ribbon Synapse from 117844 -> 117855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117844,"TargetID":117855,"Directional":true}]},{"ID":7599,"SourceStructureID":909,"TargetStructureID":117860,"Label":"909-117860 via Ribbon Synapse from 117849 -> 130276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117849,"TargetID":130276,"Directional":true}]},{"ID":7600,"SourceStructureID":909,"TargetStructureID":117868,"Label":"909-117868 via Ribbon Synapse from 117867 -> 117869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117867,"TargetID":117869,"Directional":true}]},{"ID":7601,"SourceStructureID":909,"TargetStructureID":117873,"Label":"909-117873 via Ribbon Synapse from 130275 -> 117875","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130275,"TargetID":117875,"Directional":true}]},{"ID":7602,"SourceStructureID":909,"TargetStructureID":117876,"Label":"909-117876 via Ribbon Synapse from 130273 -> 130274","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130273,"TargetID":130274,"Directional":true}]},{"ID":7603,"SourceStructureID":909,"TargetStructureID":117881,"Label":"909-117881 via Ribbon Synapse from 117880 -> 117882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117880,"TargetID":117882,"Directional":true}]},{"ID":7604,"SourceStructureID":909,"TargetStructureID":117883,"Label":"909-117883 via BC Conventional Synapse from 130269 -> 130268","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":130269,"TargetID":130268,"Directional":true}]},{"ID":7605,"SourceStructureID":909,"TargetStructureID":117897,"Label":"909-117897 via Ribbon Synapse from 117824 -> 117910, 130261 -> 130262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117824,"TargetID":117910,"Directional":true},{"SourceID":130261,"TargetID":130262,"Directional":true}]},{"ID":7606,"SourceStructureID":909,"TargetStructureID":117906,"Label":"909-117906 via Ribbon Synapse from 117911 -> 117912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117911,"TargetID":117912,"Directional":true}]},{"ID":7607,"SourceStructureID":909,"TargetStructureID":117916,"Label":"909-117916 via Ribbon Synapse from 117915 -> 117917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117915,"TargetID":117917,"Directional":true}]},{"ID":7608,"SourceStructureID":909,"TargetStructureID":118380,"Label":"909-118380 via Ribbon Synapse from 53800 -> 118381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53800,"TargetID":118381,"Directional":true}]},{"ID":7609,"SourceStructureID":909,"TargetStructureID":118388,"Label":"909-118388 via BC Conventional Synapse from 118390 -> 118389","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":118390,"TargetID":118389,"Directional":true}]},{"ID":7610,"SourceStructureID":909,"TargetStructureID":118391,"Label":"909-118391 via Ribbon Synapse from 53802 -> 118392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53802,"TargetID":118392,"Directional":true}]},{"ID":7611,"SourceStructureID":909,"TargetStructureID":118398,"Label":"909-118398 via Ribbon Synapse from 118396 -> 118399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118396,"TargetID":118399,"Directional":true}]},{"ID":7612,"SourceStructureID":909,"TargetStructureID":118402,"Label":"909-118402 via Ribbon Synapse from 53804 -> 118403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53804,"TargetID":118403,"Directional":true}]},{"ID":7613,"SourceStructureID":909,"TargetStructureID":118410,"Label":"909-118410 via Ribbon Synapse from 117792 -> 118411, 118409 -> 130306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117792,"TargetID":118411,"Directional":true},{"SourceID":118409,"TargetID":130306,"Directional":true}]},{"ID":7614,"SourceStructureID":909,"TargetStructureID":118412,"Label":"909-118412 via Ribbon Synapse from 118409 -> 118413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118409,"TargetID":118413,"Directional":true}]},{"ID":7615,"SourceStructureID":909,"TargetStructureID":118417,"Label":"909-118417 via Ribbon Synapse from 117792 -> 118418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117792,"TargetID":118418,"Directional":true}]},{"ID":7616,"SourceStructureID":909,"TargetStructureID":118446,"Label":"909-118446 via Ribbon Synapse from 45167 -> 118447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45167,"TargetID":118447,"Directional":true}]},{"ID":7617,"SourceStructureID":909,"TargetStructureID":118453,"Label":"909-118453 via Ribbon Synapse from 45890 -> 118454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45890,"TargetID":118454,"Directional":true}]},{"ID":7618,"SourceStructureID":909,"TargetStructureID":118588,"Label":"909-118588 via Ribbon Synapse from 118582 -> 118589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118582,"TargetID":118589,"Directional":true}]},{"ID":7619,"SourceStructureID":909,"TargetStructureID":118590,"Label":"909-118590 via Ribbon Synapse from 118582 -> 118591","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118582,"TargetID":118591,"Directional":true}]},{"ID":7620,"SourceStructureID":909,"TargetStructureID":120197,"Label":"909-120197 via Ribbon Synapse from 117692 -> 130241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117692,"TargetID":130241,"Directional":true}]},{"ID":7621,"SourceStructureID":909,"TargetStructureID":130012,"Label":"909-130012 via Ribbon Synapse from 36061 -> 130015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36061,"TargetID":130015,"Directional":true}]},{"ID":7622,"SourceStructureID":911,"TargetStructureID":492,"Label":"911-492 via Conventional from 924 -> 35036, 26675 -> 34991","Type":"Conventional","Directional":true,"Links":[{"SourceID":924,"TargetID":35036,"Directional":true},{"SourceID":26675,"TargetID":34991,"Directional":true}]},{"ID":7623,"SourceStructureID":968,"TargetStructureID":3865,"Label":"968-3865 via Ribbon Synapse from 132112 -> 132104, 132114 -> 132113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132112,"TargetID":132104,"Directional":true},{"SourceID":132114,"TargetID":132113,"Directional":true}]},{"ID":7624,"SourceStructureID":968,"TargetStructureID":4568,"Label":"968-4568 via Ribbon Synapse from 12194 -> 11515, 12195 -> 11516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12194,"TargetID":11515,"Directional":true},{"SourceID":12195,"TargetID":11516,"Directional":true}]},{"ID":7625,"SourceStructureID":968,"TargetStructureID":4835,"Label":"968-4835 via Ribbon Synapse from 12312 -> 12313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12312,"TargetID":12313,"Directional":true}]},{"ID":7626,"SourceStructureID":968,"TargetStructureID":5486,"Label":"968-5486 via Ribbon Synapse from 129873 -> 41085","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129873,"TargetID":41085,"Directional":true}]},{"ID":7627,"SourceStructureID":968,"TargetStructureID":7568,"Label":"968-7568 via Ribbon Synapse from 27102 -> 27096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27102,"TargetID":27096,"Directional":true}]},{"ID":7628,"SourceStructureID":968,"TargetStructureID":8575,"Label":"968-8575 via Ribbon Synapse from 12161 -> 62254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12161,"TargetID":62254,"Directional":true}]},{"ID":7629,"SourceStructureID":968,"TargetStructureID":129648,"Label":"968-129648 via Ribbon Synapse from 12158 -> 129656","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12158,"TargetID":129656,"Directional":true}]},{"ID":7630,"SourceStructureID":968,"TargetStructureID":133744,"Label":"968-133744 via Ribbon Synapse from 12189 -> 133745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12189,"TargetID":133745,"Directional":true}]},{"ID":7631,"SourceStructureID":989,"TargetStructureID":3257,"Label":"989-3257 via Ribbon Synapse from 13069 -> 129881, 13092 -> 129882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13069,"TargetID":129881,"Directional":true},{"SourceID":13092,"TargetID":129882,"Directional":true}]},{"ID":7632,"SourceStructureID":989,"TargetStructureID":20681,"Label":"989-20681 via Ribbon Synapse from 13095 -> 65807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13095,"TargetID":65807,"Directional":true}]},{"ID":7633,"SourceStructureID":992,"TargetStructureID":3679,"Label":"992-3679 via Ribbon Synapse from 23295 -> 23294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23295,"TargetID":23294,"Directional":true}]},{"ID":7634,"SourceStructureID":992,"TargetStructureID":29340,"Label":"992-29340 via Ribbon Synapse from 29431 -> 29430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29431,"TargetID":29430,"Directional":true}]},{"ID":7635,"SourceStructureID":992,"TargetStructureID":46498,"Label":"992-46498 via Ribbon Synapse from 127921 -> 127920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127921,"TargetID":127920,"Directional":true}]},{"ID":7636,"SourceStructureID":992,"TargetStructureID":60386,"Label":"992-60386 via Ribbon Synapse from 60423 -> 60422","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60423,"TargetID":60422,"Directional":true}]},{"ID":7637,"SourceStructureID":999,"TargetStructureID":5405,"Label":"999-5405 via Ribbon Synapse from 23412 -> 23409, 23413 -> 23408, 23416 -> 11054","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23412,"TargetID":23409,"Directional":true},{"SourceID":23413,"TargetID":23408,"Directional":true},{"SourceID":23416,"TargetID":11054,"Directional":true}]},{"ID":7638,"SourceStructureID":999,"TargetStructureID":5497,"Label":"999-5497 via Ribbon Synapse from 23411 -> 62525, 62527 -> 62526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23411,"TargetID":62525,"Directional":true},{"SourceID":62527,"TargetID":62526,"Directional":true}]},{"ID":7639,"SourceStructureID":1021,"TargetStructureID":598,"Label":"1021-598 via Ribbon Synapse from 19754 -> 6325, 125623 -> 125628, 125654 -> 125653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19754,"TargetID":6325,"Directional":true},{"SourceID":125623,"TargetID":125628,"Directional":true},{"SourceID":125654,"TargetID":125653,"Directional":true}]},{"ID":7640,"SourceStructureID":1021,"TargetStructureID":606,"Label":"1021-606 via Ribbon Synapse from 51471 -> 51468, 51475 -> 51476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51471,"TargetID":51468,"Directional":true},{"SourceID":51475,"TargetID":51476,"Directional":true}]},{"ID":7641,"SourceStructureID":1021,"TargetStructureID":5377,"Label":"1021-5377 via Ribbon Synapse from 58796 -> 87128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58796,"TargetID":87128,"Directional":true}]},{"ID":7642,"SourceStructureID":1021,"TargetStructureID":6121,"Label":"1021-6121 via Ribbon Synapse from 125308 -> 125309","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125308,"TargetID":125309,"Directional":true}]},{"ID":7643,"SourceStructureID":1021,"TargetStructureID":7134,"Label":"1021-7134 via Ribbon Synapse from 19766 -> 53487, 61087 -> 125711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19766,"TargetID":53487,"Directional":true},{"SourceID":61087,"TargetID":125711,"Directional":true}]},{"ID":7644,"SourceStructureID":1021,"TargetStructureID":7594,"Label":"1021-7594 via Ribbon Synapse from 19748 -> 25086, 19750 -> 125132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19748,"TargetID":25086,"Directional":true},{"SourceID":19750,"TargetID":125132,"Directional":true}]},{"ID":7645,"SourceStructureID":1021,"TargetStructureID":9769,"Label":"1021-9769 via Ribbon Synapse from 26483 -> 52609, 28348 -> 125260, 28349 -> 30150, 30187 -> 30163, 51475 -> 125332, 115343 -> 30140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26483,"TargetID":52609,"Directional":true},{"SourceID":28348,"TargetID":125260,"Directional":true},{"SourceID":28349,"TargetID":30150,"Directional":true},{"SourceID":30187,"TargetID":30163,"Directional":true},{"SourceID":51475,"TargetID":125332,"Directional":true},{"SourceID":115343,"TargetID":30140,"Directional":true}]},{"ID":7646,"SourceStructureID":1021,"TargetStructureID":16073,"Label":"1021-16073 via Ribbon Synapse from 125148 -> 19838, 125520 -> 125521, 125527 -> 125528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125148,"TargetID":19838,"Directional":true},{"SourceID":125520,"TargetID":125521,"Directional":true},{"SourceID":125527,"TargetID":125528,"Directional":true}]},{"ID":7647,"SourceStructureID":1021,"TargetStructureID":22974,"Label":"1021-22974 via Ribbon Synapse from 51533 -> 125333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51533,"TargetID":125333,"Directional":true}]},{"ID":7648,"SourceStructureID":1021,"TargetStructureID":53436,"Label":"1021-53436 via Ribbon Synapse from 55833 -> 55834, 115343 -> 125327, 115349 -> 120569, 120568 -> 53437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55833,"TargetID":55834,"Directional":true},{"SourceID":115343,"TargetID":125327,"Directional":true},{"SourceID":115349,"TargetID":120569,"Directional":true},{"SourceID":120568,"TargetID":53437,"Directional":true}]},{"ID":7649,"SourceStructureID":1021,"TargetStructureID":53991,"Label":"1021-53991 via Ribbon Synapse from 28349 -> 53994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28349,"TargetID":53994,"Directional":true}]},{"ID":7650,"SourceStructureID":1021,"TargetStructureID":57064,"Label":"1021-57064 via Unknown from 124965 -> 124964","Type":"Unknown","Directional":true,"Links":[{"SourceID":124965,"TargetID":124964,"Directional":true}]},{"ID":7651,"SourceStructureID":1021,"TargetStructureID":64923,"Label":"1021-64923 via Ribbon Synapse from 103025 -> 126718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103025,"TargetID":126718,"Directional":true}]},{"ID":7652,"SourceStructureID":1021,"TargetStructureID":68539,"Label":"1021-68539 via Ribbon Synapse from 19787 -> 72853, 125343 -> 125342, 125417 -> 125418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19787,"TargetID":72853,"Directional":true},{"SourceID":125343,"TargetID":125342,"Directional":true},{"SourceID":125417,"TargetID":125418,"Directional":true}]},{"ID":7653,"SourceStructureID":1021,"TargetStructureID":69162,"Label":"1021-69162 via Ribbon Synapse from 103018 -> 125761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103018,"TargetID":125761,"Directional":true}]},{"ID":7654,"SourceStructureID":1021,"TargetStructureID":87419,"Label":"1021-87419 via Ribbon Synapse from 58795 -> 125696","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58795,"TargetID":125696,"Directional":true}]},{"ID":7655,"SourceStructureID":1021,"TargetStructureID":89124,"Label":"1021-89124 via Ribbon Synapse from 28323 -> 89334","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28323,"TargetID":89334,"Directional":true}]},{"ID":7656,"SourceStructureID":1021,"TargetStructureID":89124,"Label":"1021-89124 via Unknown from 125535 -> 125533","Type":"Unknown","Directional":true,"Links":[{"SourceID":125535,"TargetID":125533,"Directional":true}]},{"ID":7657,"SourceStructureID":1021,"TargetStructureID":89350,"Label":"1021-89350 via Unknown from 125535 -> 125534","Type":"Unknown","Directional":true,"Links":[{"SourceID":125535,"TargetID":125534,"Directional":true}]},{"ID":7658,"SourceStructureID":1021,"TargetStructureID":103001,"Label":"1021-103001 via Ribbon Synapse from 28362 -> 125310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28362,"TargetID":125310,"Directional":true}]},{"ID":7659,"SourceStructureID":1021,"TargetStructureID":103008,"Label":"1021-103008 via Ribbon Synapse from 125291 -> 125292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125291,"TargetID":125292,"Directional":true}]},{"ID":7660,"SourceStructureID":1021,"TargetStructureID":105090,"Label":"1021-105090 via Ribbon Synapse from 19779 -> 125074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19779,"TargetID":125074,"Directional":true}]},{"ID":7661,"SourceStructureID":1021,"TargetStructureID":105553,"Label":"1021-105553 via Ribbon Synapse from 19748 -> 125131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19748,"TargetID":125131,"Directional":true}]},{"ID":7662,"SourceStructureID":1021,"TargetStructureID":111342,"Label":"1021-111342 via Ribbon Synapse from 28316 -> 125492","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28316,"TargetID":125492,"Directional":true}]},{"ID":7663,"SourceStructureID":1021,"TargetStructureID":111351,"Label":"1021-111351 via Unknown from 125496 -> 125495","Type":"Unknown","Directional":true,"Links":[{"SourceID":125496,"TargetID":125495,"Directional":true}]},{"ID":7664,"SourceStructureID":1021,"TargetStructureID":111394,"Label":"1021-111394 via Ribbon Synapse from 61092 -> 125661","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61092,"TargetID":125661,"Directional":true}]},{"ID":7665,"SourceStructureID":1021,"TargetStructureID":112077,"Label":"1021-112077 via Ribbon Synapse from 19746 -> 112078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19746,"TargetID":112078,"Directional":true}]},{"ID":7666,"SourceStructureID":1021,"TargetStructureID":112342,"Label":"1021-112342 via Ribbon Synapse from 1626 -> 125122","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1626,"TargetID":125122,"Directional":true}]},{"ID":7667,"SourceStructureID":1021,"TargetStructureID":112362,"Label":"1021-112362 via Ribbon Synapse from 19772 -> 124990, 19773 -> 124990","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19772,"TargetID":124990,"Directional":true},{"SourceID":19773,"TargetID":124990,"Directional":true}]},{"ID":7668,"SourceStructureID":1021,"TargetStructureID":113689,"Label":"1021-113689 via Unknown from 125526 -> 125525","Type":"Unknown","Directional":true,"Links":[{"SourceID":125526,"TargetID":125525,"Directional":true}]},{"ID":7669,"SourceStructureID":1021,"TargetStructureID":126711,"Label":"1021-126711 via Ribbon Synapse from 125343 -> 126714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125343,"TargetID":126714,"Directional":true}]},{"ID":7670,"SourceStructureID":1021,"TargetStructureID":126711,"Label":"1021-126711 via Unknown from 126713 -> 126712","Type":"Unknown","Directional":true,"Links":[{"SourceID":126713,"TargetID":126712,"Directional":true}]},{"ID":7671,"SourceStructureID":1021,"TargetStructureID":126886,"Label":"1021-126886 via Ribbon Synapse from 19754 -> 126887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19754,"TargetID":126887,"Directional":true}]},{"ID":7672,"SourceStructureID":1021,"TargetStructureID":128800,"Label":"1021-128800 via Ribbon Synapse from 19781 -> 128802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19781,"TargetID":128802,"Directional":true}]},{"ID":7673,"SourceStructureID":1021,"TargetStructureID":128803,"Label":"1021-128803 via Ribbon Synapse from 19781 -> 128807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19781,"TargetID":128807,"Directional":true}]},{"ID":7674,"SourceStructureID":1610,"TargetStructureID":514,"Label":"1610-514 via Conventional from 23281 -> 23279","Type":"Conventional","Directional":true,"Links":[{"SourceID":23281,"TargetID":23279,"Directional":true}]},{"ID":7675,"SourceStructureID":1620,"TargetStructureID":166,"Label":"1620-166 via Conventional from 16860 -> 4369","Type":"Conventional","Directional":true,"Links":[{"SourceID":16860,"TargetID":4369,"Directional":true}]},{"ID":7676,"SourceStructureID":1620,"TargetStructureID":461,"Label":"1620-461 via Conventional from 16892 -> 14834, 20622 -> 20621","Type":"Conventional","Directional":true,"Links":[{"SourceID":16892,"TargetID":14834,"Directional":true},{"SourceID":20622,"TargetID":20621,"Directional":true}]},{"ID":7677,"SourceStructureID":1620,"TargetStructureID":483,"Label":"1620-483 via Conventional from 103742 -> 103741","Type":"Conventional","Directional":true,"Links":[{"SourceID":103742,"TargetID":103741,"Directional":true}]},{"ID":7678,"SourceStructureID":1620,"TargetStructureID":6997,"Label":"1620-6997 via Conventional from 16842 -> 21933","Type":"Conventional","Directional":true,"Links":[{"SourceID":16842,"TargetID":21933,"Directional":true}]},{"ID":7679,"SourceStructureID":1620,"TargetStructureID":20614,"Label":"1620-20614 via Conventional from 16996 -> 20615","Type":"Conventional","Directional":true,"Links":[{"SourceID":16996,"TargetID":20615,"Directional":true}]},{"ID":7680,"SourceStructureID":1620,"TargetStructureID":20728,"Label":"1620-20728 via Conventional from 16905 -> 33074","Type":"Conventional","Directional":true,"Links":[{"SourceID":16905,"TargetID":33074,"Directional":true}]},{"ID":7681,"SourceStructureID":1620,"TargetStructureID":29198,"Label":"1620-29198 via Conventional from 16864 -> 29222","Type":"Conventional","Directional":true,"Links":[{"SourceID":16864,"TargetID":29222,"Directional":true}]},{"ID":7682,"SourceStructureID":1620,"TargetStructureID":45894,"Label":"1620-45894 via Conventional from 16908 -> 46930","Type":"Conventional","Directional":true,"Links":[{"SourceID":16908,"TargetID":46930,"Directional":true}]},{"ID":7683,"SourceStructureID":1620,"TargetStructureID":91730,"Label":"1620-91730 via Conventional from 16852 -> 91732","Type":"Conventional","Directional":true,"Links":[{"SourceID":16852,"TargetID":91732,"Directional":true}]},{"ID":7684,"SourceStructureID":1637,"TargetStructureID":179,"Label":"1637-179 via Ribbon Synapse from 23704 -> 30409","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23704,"TargetID":30409,"Directional":true}]},{"ID":7685,"SourceStructureID":1637,"TargetStructureID":8575,"Label":"1637-8575 via BC Conventional Synapse from 62088 -> 62087, 62855 -> 62854","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62088,"TargetID":62087,"Directional":true},{"SourceID":62855,"TargetID":62854,"Directional":true}]},{"ID":7686,"SourceStructureID":1637,"TargetStructureID":8575,"Label":"1637-8575 via Ribbon Synapse from 1689 -> 62073, 30198 -> 62091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1689,"TargetID":62073,"Directional":true},{"SourceID":30198,"TargetID":62091,"Directional":true}]},{"ID":7687,"SourceStructureID":1637,"TargetStructureID":8577,"Label":"1637-8577 via BC Conventional Synapse from 30406 -> 30407","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":30406,"TargetID":30407,"Directional":true}]},{"ID":7688,"SourceStructureID":1637,"TargetStructureID":9347,"Label":"1637-9347 via Ribbon Synapse from 30242 -> 30243","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30242,"TargetID":30243,"Directional":true}]},{"ID":7689,"SourceStructureID":1637,"TargetStructureID":13154,"Label":"1637-13154 via Ribbon Synapse from 1639 -> 23698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1639,"TargetID":23698,"Directional":true}]},{"ID":7690,"SourceStructureID":1637,"TargetStructureID":22974,"Label":"1637-22974 via Ribbon Synapse from 23710 -> 23713, 30366 -> 30368","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23710,"TargetID":23713,"Directional":true},{"SourceID":30366,"TargetID":30368,"Directional":true}]},{"ID":7691,"SourceStructureID":1637,"TargetStructureID":32227,"Label":"1637-32227 via Ribbon Synapse from 23723 -> 32229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23723,"TargetID":32229,"Directional":true}]},{"ID":7692,"SourceStructureID":1637,"TargetStructureID":39957,"Label":"1637-39957 via Ribbon Synapse from 28277 -> 58450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28277,"TargetID":58450,"Directional":true}]},{"ID":7693,"SourceStructureID":1637,"TargetStructureID":61793,"Label":"1637-61793 via Ribbon Synapse from 28270 -> 61795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28270,"TargetID":61795,"Directional":true}]},{"ID":7694,"SourceStructureID":1637,"TargetStructureID":61933,"Label":"1637-61933 via Ribbon Synapse from 1707 -> 68649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1707,"TargetID":68649,"Directional":true}]},{"ID":7695,"SourceStructureID":1637,"TargetStructureID":67920,"Label":"1637-67920 via Ribbon Synapse from 49631 -> 67958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49631,"TargetID":67958,"Directional":true}]},{"ID":7696,"SourceStructureID":1637,"TargetStructureID":67959,"Label":"1637-67959 via Ribbon Synapse from 49631 -> 67960","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49631,"TargetID":67960,"Directional":true}]},{"ID":7697,"SourceStructureID":1637,"TargetStructureID":68277,"Label":"1637-68277 via BC Conventional Synapse from 68281 -> 68280","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68281,"TargetID":68280,"Directional":true}]},{"ID":7698,"SourceStructureID":1637,"TargetStructureID":98762,"Label":"1637-98762 via Ribbon Synapse from 23709 -> 98768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23709,"TargetID":98768,"Directional":true}]},{"ID":7699,"SourceStructureID":1724,"TargetStructureID":5107,"Label":"1724-5107 via Ribbon Synapse from 3970 -> 119510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3970,"TargetID":119510,"Directional":true}]},{"ID":7700,"SourceStructureID":1724,"TargetStructureID":5579,"Label":"1724-5579 via BC Conventional Synapse from 119148 -> 119149","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119148,"TargetID":119149,"Directional":true}]},{"ID":7701,"SourceStructureID":1724,"TargetStructureID":7594,"Label":"1724-7594 via Ribbon Synapse from 23721 -> 101854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23721,"TargetID":101854,"Directional":true}]},{"ID":7702,"SourceStructureID":1724,"TargetStructureID":15796,"Label":"1724-15796 via Ribbon Synapse from 4092 -> 101770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4092,"TargetID":101770,"Directional":true}]},{"ID":7703,"SourceStructureID":1724,"TargetStructureID":23512,"Label":"1724-23512 via Ribbon Synapse from 1738 -> 23544, 4092 -> 101769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1738,"TargetID":23544,"Directional":true},{"SourceID":4092,"TargetID":101769,"Directional":true}]},{"ID":7704,"SourceStructureID":1724,"TargetStructureID":32227,"Label":"1724-32227 via Ribbon Synapse from 3984 -> 32233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3984,"TargetID":32233,"Directional":true}]},{"ID":7705,"SourceStructureID":1724,"TargetStructureID":35894,"Label":"1724-35894 via Ribbon Synapse from 3951 -> 35917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3951,"TargetID":35917,"Directional":true}]},{"ID":7706,"SourceStructureID":1724,"TargetStructureID":41003,"Label":"1724-41003 via Ribbon Synapse from 4094 -> 41008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4094,"TargetID":41008,"Directional":true}]},{"ID":7707,"SourceStructureID":1724,"TargetStructureID":43314,"Label":"1724-43314 via Ribbon Synapse from 43315 -> 43316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43315,"TargetID":43316,"Directional":true}]},{"ID":7708,"SourceStructureID":1724,"TargetStructureID":47104,"Label":"1724-47104 via Ribbon Synapse from 3995 -> 47132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3995,"TargetID":47132,"Directional":true}]},{"ID":7709,"SourceStructureID":1724,"TargetStructureID":48455,"Label":"1724-48455 via BC Conventional Synapse from 99417 -> 99418, 101980 -> 101981, 119542 -> 119541","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99417,"TargetID":99418,"Directional":true},{"SourceID":101980,"TargetID":101981,"Directional":true},{"SourceID":119542,"TargetID":119541,"Directional":true}]},{"ID":7710,"SourceStructureID":1724,"TargetStructureID":48612,"Label":"1724-48612 via Ribbon Synapse from 1736 -> 48613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1736,"TargetID":48613,"Directional":true}]},{"ID":7711,"SourceStructureID":1724,"TargetStructureID":68978,"Label":"1724-68978 via Ribbon Synapse from 4116 -> 101977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4116,"TargetID":101977,"Directional":true}]},{"ID":7712,"SourceStructureID":1724,"TargetStructureID":99106,"Label":"1724-99106 via BC Conventional Synapse from 99512 -> 99511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99512,"TargetID":99511,"Directional":true}]},{"ID":7713,"SourceStructureID":1724,"TargetStructureID":99256,"Label":"1724-99256 via Ribbon Synapse from 1769 -> 99260","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1769,"TargetID":99260,"Directional":true}]},{"ID":7714,"SourceStructureID":1724,"TargetStructureID":99309,"Label":"1724-99309 via Ribbon Synapse from 4029 -> 100404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4029,"TargetID":100404,"Directional":true}]},{"ID":7715,"SourceStructureID":1724,"TargetStructureID":99314,"Label":"1724-99314 via Ribbon Synapse from 4037 -> 99315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4037,"TargetID":99315,"Directional":true}]},{"ID":7716,"SourceStructureID":1724,"TargetStructureID":99334,"Label":"1724-99334 via Ribbon Synapse from 4044 -> 99335","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4044,"TargetID":99335,"Directional":true}]},{"ID":7717,"SourceStructureID":1724,"TargetStructureID":99364,"Label":"1724-99364 via Ribbon Synapse from 47391 -> 99430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47391,"TargetID":99430,"Directional":true}]},{"ID":7718,"SourceStructureID":1724,"TargetStructureID":99429,"Label":"1724-99429 via Ribbon Synapse from 47391 -> 99431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47391,"TargetID":99431,"Directional":true}]},{"ID":7719,"SourceStructureID":1724,"TargetStructureID":99440,"Label":"1724-99440 via BC Conventional Synapse from 99446 -> 99449","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99446,"TargetID":99449,"Directional":true}]},{"ID":7720,"SourceStructureID":1724,"TargetStructureID":99454,"Label":"1724-99454 via Ribbon Synapse from 47390 -> 99456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47390,"TargetID":99456,"Directional":true}]},{"ID":7721,"SourceStructureID":1724,"TargetStructureID":99468,"Label":"1724-99468 via Ribbon Synapse from 4062 -> 99471","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4062,"TargetID":99471,"Directional":true}]},{"ID":7722,"SourceStructureID":1724,"TargetStructureID":99472,"Label":"1724-99472 via Ribbon Synapse from 4062 -> 99478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4062,"TargetID":99478,"Directional":true}]},{"ID":7723,"SourceStructureID":1724,"TargetStructureID":99498,"Label":"1724-99498 via Ribbon Synapse from 4060 -> 99500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4060,"TargetID":99500,"Directional":true}]},{"ID":7724,"SourceStructureID":1724,"TargetStructureID":99549,"Label":"1724-99549 via Ribbon Synapse from 1798 -> 99550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1798,"TargetID":99550,"Directional":true}]},{"ID":7725,"SourceStructureID":1724,"TargetStructureID":99551,"Label":"1724-99551 via Ribbon Synapse from 1792 -> 99556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1792,"TargetID":99556,"Directional":true}]},{"ID":7726,"SourceStructureID":1724,"TargetStructureID":99554,"Label":"1724-99554 via Ribbon Synapse from 1792 -> 99555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1792,"TargetID":99555,"Directional":true}]},{"ID":7727,"SourceStructureID":1724,"TargetStructureID":99564,"Label":"1724-99564 via Ribbon Synapse from 1788 -> 99565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1788,"TargetID":99565,"Directional":true}]},{"ID":7728,"SourceStructureID":1724,"TargetStructureID":99566,"Label":"1724-99566 via Ribbon Synapse from 1788 -> 99567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1788,"TargetID":99567,"Directional":true}]},{"ID":7729,"SourceStructureID":1724,"TargetStructureID":99569,"Label":"1724-99569 via Ribbon Synapse from 1783 -> 99570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1783,"TargetID":99570,"Directional":true}]},{"ID":7730,"SourceStructureID":1724,"TargetStructureID":100248,"Label":"1724-100248 via Ribbon Synapse from 47397 -> 100249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47397,"TargetID":100249,"Directional":true}]},{"ID":7731,"SourceStructureID":1724,"TargetStructureID":100250,"Label":"1724-100250 via Ribbon Synapse from 43315 -> 100251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43315,"TargetID":100251,"Directional":true}]},{"ID":7732,"SourceStructureID":1724,"TargetStructureID":100310,"Label":"1724-100310 via Ribbon Synapse from 100313 -> 100321","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100313,"TargetID":100321,"Directional":true}]},{"ID":7733,"SourceStructureID":1724,"TargetStructureID":100338,"Label":"1724-100338 via BC Conventional Synapse from 119137 -> 119136","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119137,"TargetID":119136,"Directional":true}]},{"ID":7734,"SourceStructureID":1724,"TargetStructureID":100360,"Label":"1724-100360 via BC Conventional Synapse from 101511 -> 101512","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101511,"TargetID":101512,"Directional":true}]},{"ID":7735,"SourceStructureID":1724,"TargetStructureID":100405,"Label":"1724-100405 via Ribbon Synapse from 4027 -> 100406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4027,"TargetID":100406,"Directional":true}]},{"ID":7736,"SourceStructureID":1724,"TargetStructureID":100486,"Label":"1724-100486 via BC Conventional Synapse from 100494 -> 100495","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100494,"TargetID":100495,"Directional":true}]},{"ID":7737,"SourceStructureID":1724,"TargetStructureID":100562,"Label":"1724-100562 via Ribbon Synapse from 47369 -> 100563","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47369,"TargetID":100563,"Directional":true}]},{"ID":7738,"SourceStructureID":1724,"TargetStructureID":100572,"Label":"1724-100572 via Ribbon Synapse from 3940 -> 100590","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3940,"TargetID":100590,"Directional":true}]},{"ID":7739,"SourceStructureID":1724,"TargetStructureID":100591,"Label":"1724-100591 via Ribbon Synapse from 20013 -> 100592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20013,"TargetID":100592,"Directional":true}]},{"ID":7740,"SourceStructureID":1724,"TargetStructureID":100682,"Label":"1724-100682 via BC Conventional Synapse from 100683 -> 100684","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100683,"TargetID":100684,"Directional":true}]},{"ID":7741,"SourceStructureID":1724,"TargetStructureID":100685,"Label":"1724-100685 via Ribbon Synapse from 20180 -> 100686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20180,"TargetID":100686,"Directional":true}]},{"ID":7742,"SourceStructureID":1724,"TargetStructureID":100690,"Label":"1724-100690 via Ribbon Synapse from 20180 -> 100691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20180,"TargetID":100691,"Directional":true}]},{"ID":7743,"SourceStructureID":1724,"TargetStructureID":100748,"Label":"1724-100748 via Ribbon Synapse from 20182 -> 100749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20182,"TargetID":100749,"Directional":true}]},{"ID":7744,"SourceStructureID":1724,"TargetStructureID":100750,"Label":"1724-100750 via Ribbon Synapse from 20182 -> 100751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20182,"TargetID":100751,"Directional":true}]},{"ID":7745,"SourceStructureID":1724,"TargetStructureID":100846,"Label":"1724-100846 via Ribbon Synapse from 20185 -> 100851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20185,"TargetID":100851,"Directional":true}]},{"ID":7746,"SourceStructureID":1724,"TargetStructureID":100860,"Label":"1724-100860 via Ribbon Synapse from 20183 -> 101540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20183,"TargetID":101540,"Directional":true}]},{"ID":7747,"SourceStructureID":1724,"TargetStructureID":100871,"Label":"1724-100871 via Ribbon Synapse from 20191 -> 100893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20191,"TargetID":100893,"Directional":true}]},{"ID":7748,"SourceStructureID":1724,"TargetStructureID":100877,"Label":"1724-100877 via Ribbon Synapse from 20189 -> 100880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20189,"TargetID":100880,"Directional":true}]},{"ID":7749,"SourceStructureID":1724,"TargetStructureID":100878,"Label":"1724-100878 via Ribbon Synapse from 20189 -> 100879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20189,"TargetID":100879,"Directional":true}]},{"ID":7750,"SourceStructureID":1724,"TargetStructureID":101507,"Label":"1724-101507 via Ribbon Synapse from 20198 -> 101526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20198,"TargetID":101526,"Directional":true}]},{"ID":7751,"SourceStructureID":1724,"TargetStructureID":101516,"Label":"1724-101516 via Ribbon Synapse from 20194 -> 101517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20194,"TargetID":101517,"Directional":true}]},{"ID":7752,"SourceStructureID":1724,"TargetStructureID":101518,"Label":"1724-101518 via Ribbon Synapse from 20193 -> 101519, 20194 -> 101520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20193,"TargetID":101519,"Directional":true},{"SourceID":20194,"TargetID":101520,"Directional":true}]},{"ID":7753,"SourceStructureID":1724,"TargetStructureID":101550,"Label":"1724-101550 via BC Conventional Synapse from 101549 -> 101551","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101549,"TargetID":101551,"Directional":true}]},{"ID":7754,"SourceStructureID":1724,"TargetStructureID":101558,"Label":"1724-101558 via Ribbon Synapse from 1808 -> 101561","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1808,"TargetID":101561,"Directional":true}]},{"ID":7755,"SourceStructureID":1724,"TargetStructureID":101581,"Label":"1724-101581 via Ribbon Synapse from 1758 -> 101582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1758,"TargetID":101582,"Directional":true}]},{"ID":7756,"SourceStructureID":1724,"TargetStructureID":101594,"Label":"1724-101594 via Ribbon Synapse from 1746 -> 101595","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":1746,"TargetID":101595,"Directional":true}]},{"ID":7757,"SourceStructureID":1724,"TargetStructureID":101675,"Label":"1724-101675 via Ribbon Synapse from 47342 -> 101676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47342,"TargetID":101676,"Directional":true}]},{"ID":7758,"SourceStructureID":1724,"TargetStructureID":101686,"Label":"1724-101686 via Ribbon Synapse from 4014 -> 101687","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4014,"TargetID":101687,"Directional":true}]},{"ID":7759,"SourceStructureID":1724,"TargetStructureID":101749,"Label":"1724-101749 via BC Conventional Synapse from 101752 -> 101754","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":101752,"TargetID":101754,"Directional":true}]},{"ID":7760,"SourceStructureID":1724,"TargetStructureID":101767,"Label":"1724-101767 via Ribbon Synapse from 4094 -> 101768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4094,"TargetID":101768,"Directional":true}]},{"ID":7761,"SourceStructureID":1724,"TargetStructureID":101771,"Label":"1724-101771 via BC Conventional Synapse from 119170 -> 119169","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119170,"TargetID":119169,"Directional":true}]},{"ID":7762,"SourceStructureID":1724,"TargetStructureID":101814,"Label":"1724-101814 via Ribbon Synapse from 4096 -> 101817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4096,"TargetID":101817,"Directional":true}]},{"ID":7763,"SourceStructureID":1724,"TargetStructureID":101824,"Label":"1724-101824 via Ribbon Synapse from 4103 -> 101825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4103,"TargetID":101825,"Directional":true}]},{"ID":7764,"SourceStructureID":1724,"TargetStructureID":101842,"Label":"1724-101842 via Ribbon Synapse from 23721 -> 101853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23721,"TargetID":101853,"Directional":true}]},{"ID":7765,"SourceStructureID":1724,"TargetStructureID":101880,"Label":"1724-101880 via Ribbon Synapse from 101890 -> 101891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101890,"TargetID":101891,"Directional":true}]},{"ID":7766,"SourceStructureID":1724,"TargetStructureID":101892,"Label":"1724-101892 via Ribbon Synapse from 101890 -> 101893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101890,"TargetID":101893,"Directional":true}]},{"ID":7767,"SourceStructureID":1724,"TargetStructureID":101938,"Label":"1724-101938 via BC Conventional Synapse from 119542 -> 101949","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119542,"TargetID":101949,"Directional":true}]},{"ID":7768,"SourceStructureID":1724,"TargetStructureID":101944,"Label":"1724-101944 via Ribbon Synapse from 4105 -> 101945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4105,"TargetID":101945,"Directional":true}]},{"ID":7769,"SourceStructureID":1724,"TargetStructureID":101951,"Label":"1724-101951 via Ribbon Synapse from 47355 -> 101953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47355,"TargetID":101953,"Directional":true}]},{"ID":7770,"SourceStructureID":1724,"TargetStructureID":101954,"Label":"1724-101954 via Ribbon Synapse from 47356 -> 101955","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47356,"TargetID":101955,"Directional":true}]},{"ID":7771,"SourceStructureID":1724,"TargetStructureID":101972,"Label":"1724-101972 via Ribbon Synapse from 4120 -> 101973","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4120,"TargetID":101973,"Directional":true}]},{"ID":7772,"SourceStructureID":1724,"TargetStructureID":101974,"Label":"1724-101974 via Ribbon Synapse from 4120 -> 101976","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4120,"TargetID":101976,"Directional":true}]},{"ID":7773,"SourceStructureID":1724,"TargetStructureID":102509,"Label":"1724-102509 via Ribbon Synapse from 102508 -> 102510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102508,"TargetID":102510,"Directional":true}]},{"ID":7774,"SourceStructureID":1724,"TargetStructureID":102517,"Label":"1724-102517 via Ribbon Synapse from 30430 -> 102522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30430,"TargetID":102522,"Directional":true}]},{"ID":7775,"SourceStructureID":2063,"TargetStructureID":36130,"Label":"2063-36130 via Ribbon Synapse from 36139 -> 36140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36139,"TargetID":36140,"Directional":true}]},{"ID":7776,"SourceStructureID":2064,"TargetStructureID":5575,"Label":"2064-5575 via Conventional from 13185 -> 23054","Type":"Conventional","Directional":true,"Links":[{"SourceID":13185,"TargetID":23054,"Directional":true}]},{"ID":7777,"SourceStructureID":2064,"TargetStructureID":8749,"Label":"2064-8749 via Conventional from 123206 -> 123207","Type":"Conventional","Directional":true,"Links":[{"SourceID":123206,"TargetID":123207,"Directional":true}]},{"ID":7778,"SourceStructureID":2064,"TargetStructureID":9693,"Label":"2064-9693 via Conventional from 13197 -> 13198","Type":"Conventional","Directional":true,"Links":[{"SourceID":13197,"TargetID":13198,"Directional":true}]},{"ID":7779,"SourceStructureID":2065,"TargetStructureID":8575,"Label":"2065-8575 via BC Conventional Synapse from 62086 -> 62081","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62086,"TargetID":62081,"Directional":true}]},{"ID":7780,"SourceStructureID":2065,"TargetStructureID":59524,"Label":"2065-59524 via Ribbon Synapse from 36345 -> 59541, 36347 -> 59542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36345,"TargetID":59541,"Directional":true},{"SourceID":36347,"TargetID":59542,"Directional":true}]},{"ID":7781,"SourceStructureID":2065,"TargetStructureID":61439,"Label":"2065-61439 via Ribbon Synapse from 120083 -> 120084","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120083,"TargetID":120084,"Directional":true}]},{"ID":7782,"SourceStructureID":2610,"TargetStructureID":382,"Label":"2610-382 via Conventional from 2656 -> 41977","Type":"Conventional","Directional":true,"Links":[{"SourceID":2656,"TargetID":41977,"Directional":true}]},{"ID":7783,"SourceStructureID":2610,"TargetStructureID":5325,"Label":"2610-5325 via Conventional from 2679 -> 68758","Type":"Conventional","Directional":true,"Links":[{"SourceID":2679,"TargetID":68758,"Directional":true}]},{"ID":7784,"SourceStructureID":2610,"TargetStructureID":7594,"Label":"2610-7594 via Touch from 25117 -> 25116","Type":"Touch","Directional":true,"Links":[{"SourceID":25117,"TargetID":25116,"Directional":true}]},{"ID":7785,"SourceStructureID":2610,"TargetStructureID":8485,"Label":"2610-8485 via Conventional from 2630 -> 28881, 2632 -> 28879","Type":"Conventional","Directional":true,"Links":[{"SourceID":2630,"TargetID":28881,"Directional":true},{"SourceID":2632,"TargetID":28879,"Directional":true}]},{"ID":7786,"SourceStructureID":2610,"TargetStructureID":16940,"Label":"2610-16940 via Conventional from 23153 -> 71260","Type":"Conventional","Directional":true,"Links":[{"SourceID":23153,"TargetID":71260,"Directional":true}]},{"ID":7787,"SourceStructureID":2610,"TargetStructureID":28913,"Label":"2610-28913 via Conventional from 2634 -> 28926, 2657 -> 28914","Type":"Conventional","Directional":true,"Links":[{"SourceID":2634,"TargetID":28926,"Directional":true},{"SourceID":2657,"TargetID":28914,"Directional":true}]},{"ID":7788,"SourceStructureID":2610,"TargetStructureID":71261,"Label":"2610-71261 via Conventional from 23155 -> 71262","Type":"Conventional","Directional":true,"Links":[{"SourceID":23155,"TargetID":71262,"Directional":true}]},{"ID":7789,"SourceStructureID":3116,"TargetStructureID":606,"Label":"3116-606 via Ribbon Synapse from 46566 -> 53369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46566,"TargetID":53369,"Directional":true}]},{"ID":7790,"SourceStructureID":3116,"TargetStructureID":5107,"Label":"3116-5107 via Ribbon Synapse from 43862 -> 43491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43862,"TargetID":43491,"Directional":true}]},{"ID":7791,"SourceStructureID":3116,"TargetStructureID":5435,"Label":"3116-5435 via Ribbon Synapse from 126382 -> 41138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126382,"TargetID":41138,"Directional":true}]},{"ID":7792,"SourceStructureID":3116,"TargetStructureID":15796,"Label":"3116-15796 via Ribbon Synapse from 3144 -> 19369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":3144,"TargetID":19369,"Directional":true}]},{"ID":7793,"SourceStructureID":3116,"TargetStructureID":35811,"Label":"3116-35811 via Ribbon Synapse from 23822 -> 35816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23822,"TargetID":35816,"Directional":true}]},{"ID":7794,"SourceStructureID":3116,"TargetStructureID":68539,"Label":"3116-68539 via Ribbon Synapse from 27995 -> 73642","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27995,"TargetID":73642,"Directional":true}]},{"ID":7795,"SourceStructureID":3116,"TargetStructureID":90254,"Label":"3116-90254 via Ribbon Synapse from 46567 -> 116732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46567,"TargetID":116732,"Directional":true}]},{"ID":7796,"SourceStructureID":3116,"TargetStructureID":91547,"Label":"3116-91547 via Ribbon Synapse from 23811 -> 91548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23811,"TargetID":91548,"Directional":true}]},{"ID":7797,"SourceStructureID":3116,"TargetStructureID":91549,"Label":"3116-91549 via Ribbon Synapse from 23810 -> 91550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23810,"TargetID":91550,"Directional":true}]},{"ID":7798,"SourceStructureID":3116,"TargetStructureID":100765,"Label":"3116-100765 via Ribbon Synapse from 27999 -> 147295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27999,"TargetID":147295,"Directional":true}]},{"ID":7799,"SourceStructureID":3116,"TargetStructureID":116729,"Label":"3116-116729 via Ribbon Synapse from 46567 -> 116731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46567,"TargetID":116731,"Directional":true}]},{"ID":7800,"SourceStructureID":3257,"TargetStructureID":165,"Label":"3257-165 via Conventional from 66219 -> 66224","Type":"Conventional","Directional":true,"Links":[{"SourceID":66219,"TargetID":66224,"Directional":true}]},{"ID":7801,"SourceStructureID":3257,"TargetStructureID":172,"Label":"3257-172 via Conventional from 18066 -> 128137","Type":"Conventional","Directional":true,"Links":[{"SourceID":18066,"TargetID":128137,"Directional":true}]},{"ID":7802,"SourceStructureID":3257,"TargetStructureID":968,"Label":"3257-968 via Conventional from 33287 -> 12174, 33289 -> 12172","Type":"Conventional","Directional":true,"Links":[{"SourceID":33287,"TargetID":12174,"Directional":true},{"SourceID":33289,"TargetID":12172,"Directional":true}]},{"ID":7803,"SourceStructureID":3257,"TargetStructureID":989,"Label":"3257-989 via Conventional from 129880 -> 13093","Type":"Conventional","Directional":true,"Links":[{"SourceID":129880,"TargetID":13093,"Directional":true}]},{"ID":7804,"SourceStructureID":3257,"TargetStructureID":4568,"Label":"3257-4568 via Conventional from 21881 -> 11513, 66225 -> 11524, 130016 -> 11512","Type":"Conventional","Directional":true,"Links":[{"SourceID":21881,"TargetID":11513,"Directional":true},{"SourceID":66225,"TargetID":11524,"Directional":true},{"SourceID":130016,"TargetID":11512,"Directional":true}]},{"ID":7805,"SourceStructureID":3257,"TargetStructureID":4569,"Label":"3257-4569 via Conventional from 47537 -> 47535","Type":"Conventional","Directional":true,"Links":[{"SourceID":47537,"TargetID":47535,"Directional":true}]},{"ID":7806,"SourceStructureID":3257,"TargetStructureID":9787,"Label":"3257-9787 via Conventional from 9175 -> 12067, 18069 -> 18061, 129887 -> 18045","Type":"Conventional","Directional":true,"Links":[{"SourceID":9175,"TargetID":12067,"Directional":true},{"SourceID":18069,"TargetID":18061,"Directional":true},{"SourceID":129887,"TargetID":18045,"Directional":true}]},{"ID":7807,"SourceStructureID":3257,"TargetStructureID":34336,"Label":"3257-34336 via Conventional from 9122 -> 34376","Type":"Conventional","Directional":true,"Links":[{"SourceID":9122,"TargetID":34376,"Directional":true}]},{"ID":7808,"SourceStructureID":3679,"TargetStructureID":138,"Label":"3679-138 via Conventional from 3768 -> 32877, 22701 -> 46419, 22709 -> 46420, 22726 -> 2429, 22729 -> 2219, 29401 -> 29402, 29403 -> 29404","Type":"Conventional","Directional":true,"Links":[{"SourceID":3768,"TargetID":32877,"Directional":true},{"SourceID":22701,"TargetID":46419,"Directional":true},{"SourceID":22709,"TargetID":46420,"Directional":true},{"SourceID":22726,"TargetID":2429,"Directional":true},{"SourceID":22729,"TargetID":2219,"Directional":true},{"SourceID":29401,"TargetID":29402,"Directional":true},{"SourceID":29403,"TargetID":29404,"Directional":true}]},{"ID":7809,"SourceStructureID":3679,"TargetStructureID":161,"Label":"3679-161 via Conventional from 7929 -> 27209, 27212 -> 27211","Type":"Conventional","Directional":true,"Links":[{"SourceID":7929,"TargetID":27209,"Directional":true},{"SourceID":27212,"TargetID":27211,"Directional":true}]},{"ID":7810,"SourceStructureID":3679,"TargetStructureID":992,"Label":"3679-992 via Conventional from 5066 -> 5065, 29409 -> 29410, 29413 -> 29412, 31145 -> 31144, 31147 -> 31146, 33878 -> 33879","Type":"Conventional","Directional":true,"Links":[{"SourceID":5066,"TargetID":5065,"Directional":true},{"SourceID":29409,"TargetID":29410,"Directional":true},{"SourceID":29413,"TargetID":29412,"Directional":true},{"SourceID":31145,"TargetID":31144,"Directional":true},{"SourceID":31147,"TargetID":31146,"Directional":true},{"SourceID":33878,"TargetID":33879,"Directional":true}]},{"ID":7811,"SourceStructureID":3679,"TargetStructureID":2063,"Label":"3679-2063 via Conventional from 31131 -> 21761","Type":"Conventional","Directional":true,"Links":[{"SourceID":31131,"TargetID":21761,"Directional":true}]},{"ID":7812,"SourceStructureID":3679,"TargetStructureID":4567,"Label":"3679-4567 via Conventional from 29407 -> 60554, 29414 -> 21334, 29415 -> 29416, 60553 -> 60552, 60862 -> 60861","Type":"Conventional","Directional":true,"Links":[{"SourceID":29407,"TargetID":60554,"Directional":true},{"SourceID":29414,"TargetID":21334,"Directional":true},{"SourceID":29415,"TargetID":29416,"Directional":true},{"SourceID":60553,"TargetID":60552,"Directional":true},{"SourceID":60862,"TargetID":60861,"Directional":true}]},{"ID":7813,"SourceStructureID":3679,"TargetStructureID":4849,"Label":"3679-4849 via Conventional from 31124 -> 31125, 31126 -> 31127, 31128 -> 31129, 130021 -> 130020","Type":"Conventional","Directional":true,"Links":[{"SourceID":31124,"TargetID":31125,"Directional":true},{"SourceID":31126,"TargetID":31127,"Directional":true},{"SourceID":31128,"TargetID":31129,"Directional":true},{"SourceID":130021,"TargetID":130020,"Directional":true}]},{"ID":7814,"SourceStructureID":3679,"TargetStructureID":5150,"Label":"3679-5150 via Conventional from 5185 -> 5183, 15437 -> 5233","Type":"Conventional","Directional":true,"Links":[{"SourceID":5185,"TargetID":5183,"Directional":true},{"SourceID":15437,"TargetID":5233,"Directional":true}]},{"ID":7815,"SourceStructureID":3679,"TargetStructureID":5502,"Label":"3679-5502 via Conventional from 6374 -> 27267, 6375 -> 27263, 27261 -> 27262","Type":"Conventional","Directional":true,"Links":[{"SourceID":6374,"TargetID":27267,"Directional":true},{"SourceID":6375,"TargetID":27263,"Directional":true},{"SourceID":27261,"TargetID":27262,"Directional":true}]},{"ID":7816,"SourceStructureID":3679,"TargetStructureID":5648,"Label":"3679-5648 via Conventional from 6372 -> 23417","Type":"Conventional","Directional":true,"Links":[{"SourceID":6372,"TargetID":23417,"Directional":true}]},{"ID":7817,"SourceStructureID":3679,"TargetStructureID":10335,"Label":"3679-10335 via Conventional from 10330 -> 106282","Type":"Conventional","Directional":true,"Links":[{"SourceID":10330,"TargetID":106282,"Directional":true}]},{"ID":7818,"SourceStructureID":3679,"TargetStructureID":13469,"Label":"3679-13469 via Conventional from 16252 -> 13471","Type":"Conventional","Directional":true,"Links":[{"SourceID":16252,"TargetID":13471,"Directional":true}]},{"ID":7819,"SourceStructureID":3679,"TargetStructureID":28913,"Label":"3679-28913 via Conventional from 28936 -> 28935, 29408 -> 28934","Type":"Conventional","Directional":true,"Links":[{"SourceID":28936,"TargetID":28935,"Directional":true},{"SourceID":29408,"TargetID":28934,"Directional":true}]},{"ID":7820,"SourceStructureID":3679,"TargetStructureID":33881,"Label":"3679-33881 via Conventional from 33880 -> 33926","Type":"Conventional","Directional":true,"Links":[{"SourceID":33880,"TargetID":33926,"Directional":true}]},{"ID":7821,"SourceStructureID":3756,"TargetStructureID":162,"Label":"3756-162 via Ribbon Synapse from 56913 -> 129453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56913,"TargetID":129453,"Directional":true}]},{"ID":7822,"SourceStructureID":3756,"TargetStructureID":5107,"Label":"3756-5107 via Ribbon Synapse from 116264 -> 129069, 116284 -> 129098, 129213 -> 129214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116264,"TargetID":129069,"Directional":true},{"SourceID":116284,"TargetID":129098,"Directional":true},{"SourceID":129213,"TargetID":129214,"Directional":true}]},{"ID":7823,"SourceStructureID":3756,"TargetStructureID":5374,"Label":"3756-5374 via Ribbon Synapse from 127642 -> 127643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127642,"TargetID":127643,"Directional":true}]},{"ID":7824,"SourceStructureID":3756,"TargetStructureID":5405,"Label":"3756-5405 via Ribbon Synapse from 116256 -> 129006, 116257 -> 129007, 128994 -> 128998, 128999 -> 129000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116256,"TargetID":129006,"Directional":true},{"SourceID":116257,"TargetID":129007,"Directional":true},{"SourceID":128994,"TargetID":128998,"Directional":true},{"SourceID":128999,"TargetID":129000,"Directional":true}]},{"ID":7825,"SourceStructureID":3756,"TargetStructureID":5442,"Label":"3756-5442 via Ribbon Synapse from 129076 -> 129077","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129076,"TargetID":129077,"Directional":true}]},{"ID":7826,"SourceStructureID":3756,"TargetStructureID":6300,"Label":"3756-6300 via Ribbon Synapse from 129234 -> 129233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129234,"TargetID":129233,"Directional":true}]},{"ID":7827,"SourceStructureID":3756,"TargetStructureID":7134,"Label":"3756-7134 via Ribbon Synapse from 53621 -> 53617, 122234 -> 122231, 122235 -> 122236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53621,"TargetID":53617,"Directional":true},{"SourceID":122234,"TargetID":122231,"Directional":true},{"SourceID":122235,"TargetID":122236,"Directional":true}]},{"ID":7828,"SourceStructureID":3756,"TargetStructureID":8575,"Label":"3756-8575 via BC Conventional Synapse from 98368 -> 62832, 128893 -> 62811","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98368,"TargetID":62832,"Directional":true},{"SourceID":128893,"TargetID":62811,"Directional":true}]},{"ID":7829,"SourceStructureID":3756,"TargetStructureID":8575,"Label":"3756-8575 via Ribbon Synapse from 122232 -> 62848, 128868 -> 62813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122232,"TargetID":62848,"Directional":true},{"SourceID":128868,"TargetID":62813,"Directional":true}]},{"ID":7830,"SourceStructureID":3756,"TargetStructureID":12203,"Label":"3756-12203 via Ribbon Synapse from 12253 -> 12252, 129017 -> 12252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12253,"TargetID":12252,"Directional":true},{"SourceID":129017,"TargetID":12252,"Directional":true}]},{"ID":7831,"SourceStructureID":3756,"TargetStructureID":15796,"Label":"3756-15796 via BC Conventional Synapse from 119336 -> 147779","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119336,"TargetID":147779,"Directional":true}]},{"ID":7832,"SourceStructureID":3756,"TargetStructureID":15796,"Label":"3756-15796 via Ribbon Synapse from 116206 -> 147786, 129196 -> 147785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116206,"TargetID":147786,"Directional":true},{"SourceID":129196,"TargetID":147785,"Directional":true}]},{"ID":7833,"SourceStructureID":3756,"TargetStructureID":22974,"Label":"3756-22974 via Ribbon Synapse from 54440 -> 68993, 93262 -> 128781, 127642 -> 68990","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54440,"TargetID":68993,"Directional":true},{"SourceID":93262,"TargetID":128781,"Directional":true},{"SourceID":127642,"TargetID":68990,"Directional":true}]},{"ID":7834,"SourceStructureID":3756,"TargetStructureID":24174,"Label":"3756-24174 via Ribbon Synapse from 129114 -> 129116","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129114,"TargetID":129116,"Directional":true}]},{"ID":7835,"SourceStructureID":3756,"TargetStructureID":29702,"Label":"3756-29702 via Ribbon Synapse from 128982 -> 75479","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128982,"TargetID":75479,"Directional":true}]},{"ID":7836,"SourceStructureID":3756,"TargetStructureID":35894,"Label":"3756-35894 via Ribbon Synapse from 35960 -> 35961, 35963 -> 35962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35960,"TargetID":35961,"Directional":true},{"SourceID":35963,"TargetID":35962,"Directional":true}]},{"ID":7837,"SourceStructureID":3756,"TargetStructureID":40604,"Label":"3756-40604 via BC Conventional Synapse from 116079 -> 129211","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":116079,"TargetID":129211,"Directional":true}]},{"ID":7838,"SourceStructureID":3756,"TargetStructureID":40604,"Label":"3756-40604 via Ribbon Synapse from 116260 -> 41402","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116260,"TargetID":41402,"Directional":true}]},{"ID":7839,"SourceStructureID":3756,"TargetStructureID":45220,"Label":"3756-45220 via Ribbon Synapse from 69849 -> 128968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69849,"TargetID":128968,"Directional":true}]},{"ID":7840,"SourceStructureID":3756,"TargetStructureID":56955,"Label":"3756-56955 via Ribbon Synapse from 35857 -> 129127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35857,"TargetID":129127,"Directional":true}]},{"ID":7841,"SourceStructureID":3756,"TargetStructureID":57064,"Label":"3756-57064 via BC Conventional Synapse from 128943 -> 128944","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":128943,"TargetID":128944,"Directional":true}]},{"ID":7842,"SourceStructureID":3756,"TargetStructureID":61823,"Label":"3756-61823 via Ribbon Synapse from 116008 -> 128879, 116009 -> 128878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116008,"TargetID":128879,"Directional":true},{"SourceID":116009,"TargetID":128878,"Directional":true}]},{"ID":7843,"SourceStructureID":3756,"TargetStructureID":68539,"Label":"3756-68539 via Ribbon Synapse from 129092 -> 129096, 129094 -> 129095","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129092,"TargetID":129096,"Directional":true},{"SourceID":129094,"TargetID":129095,"Directional":true}]},{"ID":7844,"SourceStructureID":3756,"TargetStructureID":69845,"Label":"3756-69845 via Ribbon Synapse from 69844 -> 69846","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69844,"TargetID":69846,"Directional":true}]},{"ID":7845,"SourceStructureID":3756,"TargetStructureID":69847,"Label":"3756-69847 via Ribbon Synapse from 69844 -> 69848, 69849 -> 69848","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69844,"TargetID":69848,"Directional":true},{"SourceID":69849,"TargetID":69848,"Directional":true}]},{"ID":7846,"SourceStructureID":3756,"TargetStructureID":82961,"Label":"3756-82961 via Ribbon Synapse from 15639 -> 82963, 116237 -> 82963","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15639,"TargetID":82963,"Directional":true},{"SourceID":116237,"TargetID":82963,"Directional":true}]},{"ID":7847,"SourceStructureID":3756,"TargetStructureID":112205,"Label":"3756-112205 via Ribbon Synapse from 116119 -> 129349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116119,"TargetID":129349,"Directional":true}]},{"ID":7848,"SourceStructureID":3756,"TargetStructureID":112476,"Label":"3756-112476 via Ribbon Synapse from 116113 -> 129317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116113,"TargetID":129317,"Directional":true}]},{"ID":7849,"SourceStructureID":3756,"TargetStructureID":112843,"Label":"3756-112843 via Ribbon Synapse from 56894 -> 120367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56894,"TargetID":120367,"Directional":true}]},{"ID":7850,"SourceStructureID":3756,"TargetStructureID":113186,"Label":"3756-113186 via Ribbon Synapse from 129392 -> 129393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129392,"TargetID":129393,"Directional":true}]},{"ID":7851,"SourceStructureID":3756,"TargetStructureID":120282,"Label":"3756-120282 via Ribbon Synapse from 54456 -> 128821, 114043 -> 128891, 128819 -> 128820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54456,"TargetID":128821,"Directional":true},{"SourceID":114043,"TargetID":128891,"Directional":true},{"SourceID":128819,"TargetID":128820,"Directional":true}]},{"ID":7852,"SourceStructureID":3756,"TargetStructureID":120285,"Label":"3756-120285 via Ribbon Synapse from 120284 -> 120286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120284,"TargetID":120286,"Directional":true}]},{"ID":7853,"SourceStructureID":3756,"TargetStructureID":120291,"Label":"3756-120291 via Ribbon Synapse from 116017 -> 120297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116017,"TargetID":120297,"Directional":true}]},{"ID":7854,"SourceStructureID":3756,"TargetStructureID":120299,"Label":"3756-120299 via Ribbon Synapse from 116018 -> 120302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116018,"TargetID":120302,"Directional":true}]},{"ID":7855,"SourceStructureID":3756,"TargetStructureID":120309,"Label":"3756-120309 via Ribbon Synapse from 128782 -> 128784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128782,"TargetID":128784,"Directional":true}]},{"ID":7856,"SourceStructureID":3756,"TargetStructureID":120321,"Label":"3756-120321 via Ribbon Synapse from 116037 -> 128795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116037,"TargetID":128795,"Directional":true}]},{"ID":7857,"SourceStructureID":3756,"TargetStructureID":120331,"Label":"3756-120331 via Ribbon Synapse from 116052 -> 120333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116052,"TargetID":120333,"Directional":true}]},{"ID":7858,"SourceStructureID":3756,"TargetStructureID":120343,"Label":"3756-120343 via Ribbon Synapse from 116047 -> 129232","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116047,"TargetID":129232,"Directional":true}]},{"ID":7859,"SourceStructureID":3756,"TargetStructureID":120347,"Label":"3756-120347 via Ribbon Synapse from 56918 -> 120353","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56918,"TargetID":120353,"Directional":true}]},{"ID":7860,"SourceStructureID":3756,"TargetStructureID":120355,"Label":"3756-120355 via Ribbon Synapse from 129209 -> 129210","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129209,"TargetID":129210,"Directional":true}]},{"ID":7861,"SourceStructureID":3756,"TargetStructureID":120372,"Label":"3756-120372 via Ribbon Synapse from 129313 -> 129314","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129313,"TargetID":129314,"Directional":true}]},{"ID":7862,"SourceStructureID":3756,"TargetStructureID":120379,"Label":"3756-120379 via Ribbon Synapse from 57327 -> 120385, 116131 -> 120381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57327,"TargetID":120385,"Directional":true},{"SourceID":116131,"TargetID":120381,"Directional":true}]},{"ID":7863,"SourceStructureID":3756,"TargetStructureID":120393,"Label":"3756-120393 via Ribbon Synapse from 129404 -> 129405, 129419 -> 129420","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129404,"TargetID":129405,"Directional":true},{"SourceID":129419,"TargetID":129420,"Directional":true}]},{"ID":7864,"SourceStructureID":3756,"TargetStructureID":120398,"Label":"3756-120398 via Ribbon Synapse from 116151 -> 129421","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116151,"TargetID":129421,"Directional":true}]},{"ID":7865,"SourceStructureID":3756,"TargetStructureID":120403,"Label":"3756-120403 via Ribbon Synapse from 116163 -> 120407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116163,"TargetID":120407,"Directional":true}]},{"ID":7866,"SourceStructureID":3756,"TargetStructureID":120416,"Label":"3756-120416 via Ribbon Synapse from 116170 -> 129429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116170,"TargetID":129429,"Directional":true}]},{"ID":7867,"SourceStructureID":3756,"TargetStructureID":120425,"Label":"3756-120425 via Ribbon Synapse from 116180 -> 129468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116180,"TargetID":129468,"Directional":true}]},{"ID":7868,"SourceStructureID":3756,"TargetStructureID":120431,"Label":"3756-120431 via Ribbon Synapse from 116173 -> 120438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116173,"TargetID":120438,"Directional":true}]},{"ID":7869,"SourceStructureID":3756,"TargetStructureID":120464,"Label":"3756-120464 via Ribbon Synapse from 128940 -> 128939","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128940,"TargetID":128939,"Directional":true}]},{"ID":7870,"SourceStructureID":3756,"TargetStructureID":120478,"Label":"3756-120478 via Ribbon Synapse from 56680 -> 129074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56680,"TargetID":129074,"Directional":true}]},{"ID":7871,"SourceStructureID":3756,"TargetStructureID":120480,"Label":"3756-120480 via Ribbon Synapse from 129104 -> 129105","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129104,"TargetID":129105,"Directional":true}]},{"ID":7872,"SourceStructureID":3756,"TargetStructureID":120484,"Label":"3756-120484 via Ribbon Synapse from 116272 -> 120486, 116281 -> 129100","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116272,"TargetID":120486,"Directional":true},{"SourceID":116281,"TargetID":129100,"Directional":true}]},{"ID":7873,"SourceStructureID":3756,"TargetStructureID":120489,"Label":"3756-120489 via Ribbon Synapse from 35963 -> 129123, 56954 -> 120492, 116286 -> 120493, 129114 -> 129117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35963,"TargetID":129123,"Directional":true},{"SourceID":56954,"TargetID":120492,"Directional":true},{"SourceID":116286,"TargetID":120493,"Directional":true},{"SourceID":129114,"TargetID":129117,"Directional":true}]},{"ID":7874,"SourceStructureID":3756,"TargetStructureID":120499,"Label":"3756-120499 via Ribbon Synapse from 35857 -> 129162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35857,"TargetID":129162,"Directional":true}]},{"ID":7875,"SourceStructureID":3756,"TargetStructureID":120518,"Label":"3756-120518 via Ribbon Synapse from 129204 -> 129205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129204,"TargetID":129205,"Directional":true}]},{"ID":7876,"SourceStructureID":3756,"TargetStructureID":120521,"Label":"3756-120521 via Ribbon Synapse from 116012 -> 128902","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116012,"TargetID":128902,"Directional":true}]},{"ID":7877,"SourceStructureID":3756,"TargetStructureID":120523,"Label":"3756-120523 via Ribbon Synapse from 35857 -> 120531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35857,"TargetID":120531,"Directional":true}]},{"ID":7878,"SourceStructureID":3756,"TargetStructureID":120534,"Label":"3756-120534 via Ribbon Synapse from 11707 -> 128754, 37801 -> 128755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11707,"TargetID":128754,"Directional":true},{"SourceID":37801,"TargetID":128755,"Directional":true}]},{"ID":7879,"SourceStructureID":3756,"TargetStructureID":120536,"Label":"3756-120536 via BC Conventional Synapse from 128769 -> 128770","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":128769,"TargetID":128770,"Directional":true}]},{"ID":7880,"SourceStructureID":3756,"TargetStructureID":120536,"Label":"3756-120536 via Ribbon Synapse from 11710 -> 128768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11710,"TargetID":128768,"Directional":true}]},{"ID":7881,"SourceStructureID":3756,"TargetStructureID":120538,"Label":"3756-120538 via Ribbon Synapse from 116003 -> 120540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116003,"TargetID":120540,"Directional":true}]},{"ID":7882,"SourceStructureID":3756,"TargetStructureID":120544,"Label":"3756-120544 via Ribbon Synapse from 54457 -> 128825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54457,"TargetID":128825,"Directional":true}]},{"ID":7883,"SourceStructureID":3756,"TargetStructureID":120554,"Label":"3756-120554 via Ribbon Synapse from 56899 -> 129400","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56899,"TargetID":129400,"Directional":true}]},{"ID":7884,"SourceStructureID":3756,"TargetStructureID":120563,"Label":"3756-120563 via Ribbon Synapse from 129001 -> 129002","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129001,"TargetID":129002,"Directional":true}]},{"ID":7885,"SourceStructureID":3756,"TargetStructureID":120953,"Label":"3756-120953 via Ribbon Synapse from 56952 -> 120955","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56952,"TargetID":120955,"Directional":true}]},{"ID":7886,"SourceStructureID":3756,"TargetStructureID":120963,"Label":"3756-120963 via Ribbon Synapse from 116293 -> 129166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116293,"TargetID":129166,"Directional":true}]},{"ID":7887,"SourceStructureID":3756,"TargetStructureID":125397,"Label":"3756-125397 via Ribbon Synapse from 56913 -> 129454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56913,"TargetID":129454,"Directional":true}]},{"ID":7888,"SourceStructureID":3756,"TargetStructureID":128758,"Label":"3756-128758 via Ribbon Synapse from 37802 -> 128759, 128760 -> 128759, 128761 -> 128759","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37802,"TargetID":128759,"Directional":true},{"SourceID":128760,"TargetID":128759,"Directional":true},{"SourceID":128761,"TargetID":128759,"Directional":true}]},{"ID":7889,"SourceStructureID":3756,"TargetStructureID":128790,"Label":"3756-128790 via Ribbon Synapse from 93258 -> 128791, 93259 -> 128792, 116037 -> 128793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93258,"TargetID":128791,"Directional":true},{"SourceID":93259,"TargetID":128792,"Directional":true},{"SourceID":116037,"TargetID":128793,"Directional":true}]},{"ID":7890,"SourceStructureID":3756,"TargetStructureID":128803,"Label":"3756-128803 via Ribbon Synapse from 116035 -> 128804","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116035,"TargetID":128804,"Directional":true}]},{"ID":7891,"SourceStructureID":3756,"TargetStructureID":128816,"Label":"3756-128816 via Ribbon Synapse from 128814 -> 128818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128814,"TargetID":128818,"Directional":true}]},{"ID":7892,"SourceStructureID":3756,"TargetStructureID":128907,"Label":"3756-128907 via Ribbon Synapse from 116017 -> 128908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116017,"TargetID":128908,"Directional":true}]},{"ID":7893,"SourceStructureID":3756,"TargetStructureID":128992,"Label":"3756-128992 via Ribbon Synapse from 128993 -> 128995","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128993,"TargetID":128995,"Directional":true}]},{"ID":7894,"SourceStructureID":3756,"TargetStructureID":129465,"Label":"3756-129465 via Ribbon Synapse from 129462 -> 129466","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129462,"TargetID":129466,"Directional":true}]},{"ID":7895,"SourceStructureID":3865,"TargetStructureID":181,"Label":"3865-181 via Conventional from 36120 -> 34090","Type":"Conventional","Directional":true,"Links":[{"SourceID":36120,"TargetID":34090,"Directional":true}]},{"ID":7896,"SourceStructureID":3865,"TargetStructureID":968,"Label":"3865-968 via Conventional from 132115 -> 132116","Type":"Conventional","Directional":true,"Links":[{"SourceID":132115,"TargetID":132116,"Directional":true}]},{"ID":7897,"SourceStructureID":3865,"TargetStructureID":5278,"Label":"3865-5278 via Conventional from 36112 -> 114521, 99727 -> 20079, 99823 -> 20158","Type":"Conventional","Directional":true,"Links":[{"SourceID":36112,"TargetID":114521,"Directional":true},{"SourceID":99727,"TargetID":20079,"Directional":true},{"SourceID":99823,"TargetID":20158,"Directional":true}]},{"ID":7898,"SourceStructureID":3865,"TargetStructureID":6169,"Label":"3865-6169 via Conventional from 36126 -> 36127","Type":"Conventional","Directional":true,"Links":[{"SourceID":36126,"TargetID":36127,"Directional":true}]},{"ID":7899,"SourceStructureID":3865,"TargetStructureID":8575,"Label":"3865-8575 via Conventional from 132213 -> 132214","Type":"Conventional","Directional":true,"Links":[{"SourceID":132213,"TargetID":132214,"Directional":true}]},{"ID":7900,"SourceStructureID":3865,"TargetStructureID":129648,"Label":"3865-129648 via Conventional from 36123 -> 129652","Type":"Conventional","Directional":true,"Links":[{"SourceID":36123,"TargetID":129652,"Directional":true}]},{"ID":7901,"SourceStructureID":3865,"TargetStructureID":132220,"Label":"3865-132220 via Conventional from 132232 -> 132234","Type":"Conventional","Directional":true,"Links":[{"SourceID":132232,"TargetID":132234,"Directional":true}]},{"ID":7902,"SourceStructureID":3881,"TargetStructureID":5609,"Label":"3881-5609 via Ribbon Synapse from 31396 -> 31395","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31396,"TargetID":31395,"Directional":true}]},{"ID":7903,"SourceStructureID":3881,"TargetStructureID":11229,"Label":"3881-11229 via Ribbon Synapse from 28979 -> 28978, 135599 -> 135600","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28979,"TargetID":28978,"Directional":true},{"SourceID":135599,"TargetID":135600,"Directional":true}]},{"ID":7904,"SourceStructureID":3928,"TargetStructureID":115,"Label":"3928-115 via Ribbon Synapse from 42555 -> 8083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42555,"TargetID":8083,"Directional":true}]},{"ID":7905,"SourceStructureID":3928,"TargetStructureID":7225,"Label":"3928-7225 via Ribbon Synapse from 40704 -> 42446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40704,"TargetID":42446,"Directional":true}]},{"ID":7906,"SourceStructureID":3928,"TargetStructureID":7274,"Label":"3928-7274 via BC Conventional Synapse from 40680 -> 40676, 40823 -> 41813","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":40680,"TargetID":40676,"Directional":true},{"SourceID":40823,"TargetID":41813,"Directional":true}]},{"ID":7907,"SourceStructureID":3928,"TargetStructureID":7688,"Label":"3928-7688 via BC Conventional Synapse from 36364 -> 40787","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":36364,"TargetID":40787,"Directional":true}]},{"ID":7908,"SourceStructureID":3928,"TargetStructureID":8551,"Label":"3928-8551 via Ribbon Synapse from 40707 -> 8559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40707,"TargetID":8559,"Directional":true}]},{"ID":7909,"SourceStructureID":3928,"TargetStructureID":46741,"Label":"3928-46741 via Ribbon Synapse from 41457 -> 137006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41457,"TargetID":137006,"Directional":true}]},{"ID":7910,"SourceStructureID":4568,"TargetStructureID":174,"Label":"4568-174 via Ribbon Synapse from 21882 -> 21883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21882,"TargetID":21883,"Directional":true}]},{"ID":7911,"SourceStructureID":4568,"TargetStructureID":3257,"Label":"4568-3257 via Ribbon Synapse from 11521 -> 66231, 11523 -> 12448","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11521,"TargetID":66231,"Directional":true},{"SourceID":11523,"TargetID":12448,"Directional":true}]},{"ID":7912,"SourceStructureID":4568,"TargetStructureID":5435,"Label":"4568-5435 via Ribbon Synapse from 11580 -> 41139, 11593 -> 41098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11580,"TargetID":41139,"Directional":true},{"SourceID":11593,"TargetID":41098,"Directional":true}]},{"ID":7913,"SourceStructureID":4568,"TargetStructureID":6169,"Label":"4568-6169 via Ribbon Synapse from 11551 -> 9473","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11551,"TargetID":9473,"Directional":true}]},{"ID":7914,"SourceStructureID":4568,"TargetStructureID":7859,"Label":"4568-7859 via Ribbon Synapse from 11561 -> 64685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11561,"TargetID":64685,"Directional":true}]},{"ID":7915,"SourceStructureID":4568,"TargetStructureID":8575,"Label":"4568-8575 via Ribbon Synapse from 11574 -> 62255","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11574,"TargetID":62255,"Directional":true}]},{"ID":7916,"SourceStructureID":4568,"TargetStructureID":43404,"Label":"4568-43404 via Ribbon Synapse from 11521 -> 43405","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11521,"TargetID":43405,"Directional":true}]},{"ID":7917,"SourceStructureID":4568,"TargetStructureID":64777,"Label":"4568-64777 via Ribbon Synapse from 11571 -> 64782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11571,"TargetID":64782,"Directional":true}]},{"ID":7918,"SourceStructureID":4569,"TargetStructureID":606,"Label":"4569-606 via Ribbon Synapse from 47507 -> 50891, 53319 -> 53320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47507,"TargetID":50891,"Directional":true},{"SourceID":53319,"TargetID":53320,"Directional":true}]},{"ID":7919,"SourceStructureID":4569,"TargetStructureID":6300,"Label":"4569-6300 via Ribbon Synapse from 6296 -> 6301, 98552 -> 98553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6296,"TargetID":6301,"Directional":true},{"SourceID":98552,"TargetID":98553,"Directional":true}]},{"ID":7920,"SourceStructureID":4569,"TargetStructureID":11072,"Label":"4569-11072 via Ribbon Synapse from 11070 -> 11075","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11070,"TargetID":11075,"Directional":true}]},{"ID":7921,"SourceStructureID":4569,"TargetStructureID":18693,"Label":"4569-18693 via Ribbon Synapse from 4738 -> 64724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4738,"TargetID":64724,"Directional":true}]},{"ID":7922,"SourceStructureID":4569,"TargetStructureID":20299,"Label":"4569-20299 via Ribbon Synapse from 98682 -> 98691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98682,"TargetID":98691,"Directional":true}]},{"ID":7923,"SourceStructureID":4569,"TargetStructureID":38605,"Label":"4569-38605 via Ribbon Synapse from 38615 -> 38614","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38615,"TargetID":38614,"Directional":true}]},{"ID":7924,"SourceStructureID":4569,"TargetStructureID":43327,"Label":"4569-43327 via Ribbon Synapse from 6296 -> 43329, 6296 -> 99067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6296,"TargetID":43329,"Directional":true},{"SourceID":6296,"TargetID":99067,"Directional":true}]},{"ID":7925,"SourceStructureID":4569,"TargetStructureID":89008,"Label":"4569-89008 via Ribbon Synapse from 30860 -> 99021","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30860,"TargetID":99021,"Directional":true}]},{"ID":7926,"SourceStructureID":4569,"TargetStructureID":89388,"Label":"4569-89388 via BC Conventional Synapse from 98954 -> 98953","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98954,"TargetID":98953,"Directional":true}]},{"ID":7927,"SourceStructureID":4569,"TargetStructureID":90280,"Label":"4569-90280 via Ribbon Synapse from 52509 -> 98545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52509,"TargetID":98545,"Directional":true}]},{"ID":7928,"SourceStructureID":4569,"TargetStructureID":90483,"Label":"4569-90483 via Ribbon Synapse from 38615 -> 90489, 90490 -> 90489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38615,"TargetID":90489,"Directional":true},{"SourceID":90490,"TargetID":90489,"Directional":true}]},{"ID":7929,"SourceStructureID":4569,"TargetStructureID":97786,"Label":"4569-97786 via Ribbon Synapse from 52448 -> 97789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52448,"TargetID":97789,"Directional":true}]},{"ID":7930,"SourceStructureID":4569,"TargetStructureID":97794,"Label":"4569-97794 via Ribbon Synapse from 52460 -> 97795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52460,"TargetID":97795,"Directional":true}]},{"ID":7931,"SourceStructureID":4569,"TargetStructureID":97807,"Label":"4569-97807 via Ribbon Synapse from 52464 -> 97808","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52464,"TargetID":97808,"Directional":true}]},{"ID":7932,"SourceStructureID":4569,"TargetStructureID":97810,"Label":"4569-97810 via Ribbon Synapse from 97809 -> 97811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97809,"TargetID":97811,"Directional":true}]},{"ID":7933,"SourceStructureID":4569,"TargetStructureID":97812,"Label":"4569-97812 via Ribbon Synapse from 97809 -> 97813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97809,"TargetID":97813,"Directional":true}]},{"ID":7934,"SourceStructureID":4569,"TargetStructureID":97819,"Label":"4569-97819 via Ribbon Synapse from 52465 -> 97820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52465,"TargetID":97820,"Directional":true}]},{"ID":7935,"SourceStructureID":4569,"TargetStructureID":97855,"Label":"4569-97855 via BC Conventional Synapse from 97854 -> 97856","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97854,"TargetID":97856,"Directional":true}]},{"ID":7936,"SourceStructureID":4569,"TargetStructureID":97864,"Label":"4569-97864 via Ribbon Synapse from 4745 -> 97865","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4745,"TargetID":97865,"Directional":true}]},{"ID":7937,"SourceStructureID":4569,"TargetStructureID":98163,"Label":"4569-98163 via Ribbon Synapse from 23784 -> 98164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23784,"TargetID":98164,"Directional":true}]},{"ID":7938,"SourceStructureID":4569,"TargetStructureID":98175,"Label":"4569-98175 via Ribbon Synapse from 23788 -> 98176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23788,"TargetID":98176,"Directional":true}]},{"ID":7939,"SourceStructureID":4569,"TargetStructureID":98186,"Label":"4569-98186 via BC Conventional Synapse from 98226 -> 98223, 98227 -> 98222","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98226,"TargetID":98223,"Directional":true},{"SourceID":98227,"TargetID":98222,"Directional":true}]},{"ID":7940,"SourceStructureID":4569,"TargetStructureID":98195,"Label":"4569-98195 via Ribbon Synapse from 23804 -> 98197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23804,"TargetID":98197,"Directional":true}]},{"ID":7941,"SourceStructureID":4569,"TargetStructureID":98208,"Label":"4569-98208 via Ribbon Synapse from 23804 -> 98209","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23804,"TargetID":98209,"Directional":true}]},{"ID":7942,"SourceStructureID":4569,"TargetStructureID":98254,"Label":"4569-98254 via Ribbon Synapse from 23794 -> 98256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23794,"TargetID":98256,"Directional":true}]},{"ID":7943,"SourceStructureID":4569,"TargetStructureID":98353,"Label":"4569-98353 via Ribbon Synapse from 15999 -> 98354","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15999,"TargetID":98354,"Directional":true}]},{"ID":7944,"SourceStructureID":4569,"TargetStructureID":98372,"Label":"4569-98372 via Ribbon Synapse from 47492 -> 98373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47492,"TargetID":98373,"Directional":true}]},{"ID":7945,"SourceStructureID":4569,"TargetStructureID":98375,"Label":"4569-98375 via Ribbon Synapse from 47492 -> 98376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47492,"TargetID":98376,"Directional":true}]},{"ID":7946,"SourceStructureID":4569,"TargetStructureID":98377,"Label":"4569-98377 via Ribbon Synapse from 47492 -> 98378","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47492,"TargetID":98378,"Directional":true}]},{"ID":7947,"SourceStructureID":4569,"TargetStructureID":98379,"Label":"4569-98379 via Ribbon Synapse from 30827 -> 98380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30827,"TargetID":98380,"Directional":true}]},{"ID":7948,"SourceStructureID":4569,"TargetStructureID":98381,"Label":"4569-98381 via Ribbon Synapse from 30827 -> 98382","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30827,"TargetID":98382,"Directional":true}]},{"ID":7949,"SourceStructureID":4569,"TargetStructureID":98424,"Label":"4569-98424 via Ribbon Synapse from 30830 -> 98427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30830,"TargetID":98427,"Directional":true}]},{"ID":7950,"SourceStructureID":4569,"TargetStructureID":98436,"Label":"4569-98436 via Ribbon Synapse from 92754 -> 98437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92754,"TargetID":98437,"Directional":true}]},{"ID":7951,"SourceStructureID":4569,"TargetStructureID":98449,"Label":"4569-98449 via BC Conventional Synapse from 98448 -> 98450","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98448,"TargetID":98450,"Directional":true}]},{"ID":7952,"SourceStructureID":4569,"TargetStructureID":98453,"Label":"4569-98453 via Ribbon Synapse from 98452 -> 98454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98452,"TargetID":98454,"Directional":true}]},{"ID":7953,"SourceStructureID":4569,"TargetStructureID":98471,"Label":"4569-98471 via BC Conventional Synapse from 98470 -> 98473","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98470,"TargetID":98473,"Directional":true}]},{"ID":7954,"SourceStructureID":4569,"TargetStructureID":98475,"Label":"4569-98475 via Ribbon Synapse from 30832 -> 98477","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30832,"TargetID":98477,"Directional":true}]},{"ID":7955,"SourceStructureID":4569,"TargetStructureID":98484,"Label":"4569-98484 via Ribbon Synapse from 98481 -> 98497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98481,"TargetID":98497,"Directional":true}]},{"ID":7956,"SourceStructureID":4569,"TargetStructureID":98489,"Label":"4569-98489 via Ribbon Synapse from 11070 -> 98490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11070,"TargetID":98490,"Directional":true}]},{"ID":7957,"SourceStructureID":4569,"TargetStructureID":98495,"Label":"4569-98495 via Ribbon Synapse from 98481 -> 98496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98481,"TargetID":98496,"Directional":true}]},{"ID":7958,"SourceStructureID":4569,"TargetStructureID":98498,"Label":"4569-98498 via Ribbon Synapse from 98480 -> 98499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98480,"TargetID":98499,"Directional":true}]},{"ID":7959,"SourceStructureID":4569,"TargetStructureID":98500,"Label":"4569-98500 via Ribbon Synapse from 98480 -> 98501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98480,"TargetID":98501,"Directional":true}]},{"ID":7960,"SourceStructureID":4569,"TargetStructureID":98513,"Label":"4569-98513 via Ribbon Synapse from 98509 -> 98514","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98509,"TargetID":98514,"Directional":true}]},{"ID":7961,"SourceStructureID":4569,"TargetStructureID":98517,"Label":"4569-98517 via Ribbon Synapse from 98509 -> 98518","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98509,"TargetID":98518,"Directional":true}]},{"ID":7962,"SourceStructureID":4569,"TargetStructureID":98519,"Label":"4569-98519 via Ribbon Synapse from 65202 -> 98520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65202,"TargetID":98520,"Directional":true}]},{"ID":7963,"SourceStructureID":4569,"TargetStructureID":98521,"Label":"4569-98521 via Ribbon Synapse from 65202 -> 98522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65202,"TargetID":98522,"Directional":true}]},{"ID":7964,"SourceStructureID":4569,"TargetStructureID":98525,"Label":"4569-98525 via BC Conventional Synapse from 98523 -> 98527","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98523,"TargetID":98527,"Directional":true}]},{"ID":7965,"SourceStructureID":4569,"TargetStructureID":98570,"Label":"4569-98570 via BC Conventional Synapse from 98569 -> 98571","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98569,"TargetID":98571,"Directional":true}]},{"ID":7966,"SourceStructureID":4569,"TargetStructureID":98574,"Label":"4569-98574 via Ribbon Synapse from 47504 -> 98602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47504,"TargetID":98602,"Directional":true}]},{"ID":7967,"SourceStructureID":4569,"TargetStructureID":98600,"Label":"4569-98600 via Ribbon Synapse from 47504 -> 98601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47504,"TargetID":98601,"Directional":true}]},{"ID":7968,"SourceStructureID":4569,"TargetStructureID":98635,"Label":"4569-98635 via Ribbon Synapse from 98634 -> 98639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98634,"TargetID":98639,"Directional":true}]},{"ID":7969,"SourceStructureID":4569,"TargetStructureID":98697,"Label":"4569-98697 via BC Conventional Synapse from 98699 -> 98698","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98699,"TargetID":98698,"Directional":true}]},{"ID":7970,"SourceStructureID":4569,"TargetStructureID":98700,"Label":"4569-98700 via BC Conventional Synapse from 98718 -> 98719","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98718,"TargetID":98719,"Directional":true}]},{"ID":7971,"SourceStructureID":4569,"TargetStructureID":98700,"Label":"4569-98700 via Ribbon Synapse from 53319 -> 98701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53319,"TargetID":98701,"Directional":true}]},{"ID":7972,"SourceStructureID":4569,"TargetStructureID":98714,"Label":"4569-98714 via Ribbon Synapse from 53682 -> 98715","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53682,"TargetID":98715,"Directional":true}]},{"ID":7973,"SourceStructureID":4569,"TargetStructureID":98716,"Label":"4569-98716 via Ribbon Synapse from 53682 -> 98717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53682,"TargetID":98717,"Directional":true}]},{"ID":7974,"SourceStructureID":4569,"TargetStructureID":98740,"Label":"4569-98740 via Ribbon Synapse from 98739 -> 98743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98739,"TargetID":98743,"Directional":true}]},{"ID":7975,"SourceStructureID":4569,"TargetStructureID":98745,"Label":"4569-98745 via Ribbon Synapse from 47510 -> 98746","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47510,"TargetID":98746,"Directional":true}]},{"ID":7976,"SourceStructureID":4569,"TargetStructureID":98852,"Label":"4569-98852 via Ribbon Synapse from 52513 -> 98853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52513,"TargetID":98853,"Directional":true}]},{"ID":7977,"SourceStructureID":4569,"TargetStructureID":98854,"Label":"4569-98854 via Ribbon Synapse from 52515 -> 98855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52515,"TargetID":98855,"Directional":true}]},{"ID":7978,"SourceStructureID":4569,"TargetStructureID":98856,"Label":"4569-98856 via Ribbon Synapse from 52515 -> 98857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52515,"TargetID":98857,"Directional":true}]},{"ID":7979,"SourceStructureID":4569,"TargetStructureID":98861,"Label":"4569-98861 via Ribbon Synapse from 98860 -> 98862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98860,"TargetID":98862,"Directional":true}]},{"ID":7980,"SourceStructureID":4569,"TargetStructureID":98867,"Label":"4569-98867 via Ribbon Synapse from 30836 -> 98868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30836,"TargetID":98868,"Directional":true}]},{"ID":7981,"SourceStructureID":4569,"TargetStructureID":98878,"Label":"4569-98878 via Ribbon Synapse from 30838 -> 98879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30838,"TargetID":98879,"Directional":true}]},{"ID":7982,"SourceStructureID":4569,"TargetStructureID":98880,"Label":"4569-98880 via Ribbon Synapse from 30837 -> 98881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30837,"TargetID":98881,"Directional":true}]},{"ID":7983,"SourceStructureID":4569,"TargetStructureID":98882,"Label":"4569-98882 via Ribbon Synapse from 30837 -> 98883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30837,"TargetID":98883,"Directional":true}]},{"ID":7984,"SourceStructureID":4569,"TargetStructureID":98898,"Label":"4569-98898 via Ribbon Synapse from 30844 -> 98906, 30845 -> 98905","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30844,"TargetID":98906,"Directional":true},{"SourceID":30845,"TargetID":98905,"Directional":true}]},{"ID":7985,"SourceStructureID":4569,"TargetStructureID":98912,"Label":"4569-98912 via Ribbon Synapse from 98911 -> 98913","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98911,"TargetID":98913,"Directional":true}]},{"ID":7986,"SourceStructureID":4569,"TargetStructureID":98927,"Label":"4569-98927 via BC Conventional Synapse from 98926 -> 98928","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98926,"TargetID":98928,"Directional":true}]},{"ID":7987,"SourceStructureID":4569,"TargetStructureID":98929,"Label":"4569-98929 via Ribbon Synapse from 52544 -> 98940","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52544,"TargetID":98940,"Directional":true}]},{"ID":7988,"SourceStructureID":4569,"TargetStructureID":98936,"Label":"4569-98936 via Ribbon Synapse from 52544 -> 98939","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52544,"TargetID":98939,"Directional":true}]},{"ID":7989,"SourceStructureID":4569,"TargetStructureID":98941,"Label":"4569-98941 via Ribbon Synapse from 52544 -> 98942","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52544,"TargetID":98942,"Directional":true}]},{"ID":7990,"SourceStructureID":4569,"TargetStructureID":98999,"Label":"4569-98999 via Ribbon Synapse from 30858 -> 99000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30858,"TargetID":99000,"Directional":true}]},{"ID":7991,"SourceStructureID":4569,"TargetStructureID":99004,"Label":"4569-99004 via Ribbon Synapse from 30860 -> 99005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30860,"TargetID":99005,"Directional":true}]},{"ID":7992,"SourceStructureID":4569,"TargetStructureID":99025,"Label":"4569-99025 via BC Conventional Synapse from 99052 -> 99053","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99052,"TargetID":99053,"Directional":true}]},{"ID":7993,"SourceStructureID":4569,"TargetStructureID":99025,"Label":"4569-99025 via Ribbon Synapse from 47533 -> 99030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47533,"TargetID":99030,"Directional":true}]},{"ID":7994,"SourceStructureID":4569,"TargetStructureID":99057,"Label":"4569-99057 via Ribbon Synapse from 29786 -> 99060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29786,"TargetID":99060,"Directional":true}]},{"ID":7995,"SourceStructureID":4569,"TargetStructureID":99058,"Label":"4569-99058 via Ribbon Synapse from 29786 -> 99059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29786,"TargetID":99059,"Directional":true}]},{"ID":7996,"SourceStructureID":4569,"TargetStructureID":99081,"Label":"4569-99081 via Ribbon Synapse from 40130 -> 99084","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40130,"TargetID":99084,"Directional":true}]},{"ID":7997,"SourceStructureID":4569,"TargetStructureID":99100,"Label":"4569-99100 via Ribbon Synapse from 23567 -> 99101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23567,"TargetID":99101,"Directional":true}]},{"ID":7998,"SourceStructureID":4570,"TargetStructureID":318,"Label":"4570-318 via Ribbon Synapse from 4814 -> 14130, 14127 -> 14126, 14987 -> 14975","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4814,"TargetID":14130,"Directional":true},{"SourceID":14127,"TargetID":14126,"Directional":true},{"SourceID":14987,"TargetID":14975,"Directional":true}]},{"ID":7999,"SourceStructureID":4570,"TargetStructureID":390,"Label":"4570-390 via Ribbon Synapse from 65216 -> 65215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65216,"TargetID":65215,"Directional":true}]},{"ID":8000,"SourceStructureID":4570,"TargetStructureID":906,"Label":"4570-906 via Ribbon Synapse from 4750 -> 15192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4750,"TargetID":15192,"Directional":true}]},{"ID":8001,"SourceStructureID":4570,"TargetStructureID":4890,"Label":"4570-4890 via Ribbon Synapse from 4770 -> 7910, 4771 -> 4891, 7909 -> 4892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4770,"TargetID":7910,"Directional":true},{"SourceID":4771,"TargetID":4891,"Directional":true},{"SourceID":7909,"TargetID":4892,"Directional":true}]},{"ID":8002,"SourceStructureID":4570,"TargetStructureID":5117,"Label":"4570-5117 via Ribbon Synapse from 14399 -> 28793, 28537 -> 28787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14399,"TargetID":28793,"Directional":true},{"SourceID":28537,"TargetID":28787,"Directional":true}]},{"ID":8003,"SourceStructureID":4570,"TargetStructureID":5118,"Label":"4570-5118 via Ribbon Synapse from 13423 -> 6537","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13423,"TargetID":6537,"Directional":true}]},{"ID":8004,"SourceStructureID":4570,"TargetStructureID":5303,"Label":"4570-5303 via Ribbon Synapse from 14404 -> 20762","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14404,"TargetID":20762,"Directional":true}]},{"ID":8005,"SourceStructureID":4570,"TargetStructureID":5350,"Label":"4570-5350 via Ribbon Synapse from 4783 -> 10678, 4791 -> 10676, 10673 -> 10667","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4783,"TargetID":10678,"Directional":true},{"SourceID":4791,"TargetID":10676,"Directional":true},{"SourceID":10673,"TargetID":10667,"Directional":true}]},{"ID":8006,"SourceStructureID":4570,"TargetStructureID":8579,"Label":"4570-8579 via Ribbon Synapse from 4757 -> 62657","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4757,"TargetID":62657,"Directional":true}]},{"ID":8007,"SourceStructureID":4570,"TargetStructureID":13855,"Label":"4570-13855 via Ribbon Synapse from 4783 -> 36317, 4791 -> 36314, 14386 -> 36308","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4783,"TargetID":36317,"Directional":true},{"SourceID":4791,"TargetID":36314,"Directional":true},{"SourceID":14386,"TargetID":36308,"Directional":true}]},{"ID":8008,"SourceStructureID":4570,"TargetStructureID":29277,"Label":"4570-29277 via Ribbon Synapse from 28539 -> 29302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28539,"TargetID":29302,"Directional":true}]},{"ID":8009,"SourceStructureID":4570,"TargetStructureID":29702,"Label":"4570-29702 via Ribbon Synapse from 4761 -> 72628, 28513 -> 72628","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4761,"TargetID":72628,"Directional":true},{"SourceID":28513,"TargetID":72628,"Directional":true}]},{"ID":8010,"SourceStructureID":4570,"TargetStructureID":31024,"Label":"4570-31024 via Ribbon Synapse from 4759 -> 31085","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4759,"TargetID":31085,"Directional":true}]},{"ID":8011,"SourceStructureID":4570,"TargetStructureID":40010,"Label":"4570-40010 via Ribbon Synapse from 14983 -> 40011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14983,"TargetID":40011,"Directional":true}]},{"ID":8012,"SourceStructureID":4570,"TargetStructureID":40858,"Label":"4570-40858 via Ribbon Synapse from 123179 -> 123172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123179,"TargetID":123172,"Directional":true}]},{"ID":8013,"SourceStructureID":4570,"TargetStructureID":41474,"Label":"4570-41474 via Conventional from 41529 -> 41528","Type":"Conventional","Directional":true,"Links":[{"SourceID":41529,"TargetID":41528,"Directional":true}]},{"ID":8014,"SourceStructureID":4570,"TargetStructureID":41474,"Label":"4570-41474 via Ribbon Synapse from 4764 -> 41508, 123177 -> 123178","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":4764,"TargetID":41508,"Directional":true},{"SourceID":123177,"TargetID":123178,"Directional":true}]},{"ID":8015,"SourceStructureID":4570,"TargetStructureID":71284,"Label":"4570-71284 via BC Conventional Synapse from 71285 -> 71286","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71285,"TargetID":71286,"Directional":true}]},{"ID":8016,"SourceStructureID":4570,"TargetStructureID":88082,"Label":"4570-88082 via Ribbon Synapse from 28516 -> 88083, 88086 -> 88085, 88089 -> 88090, 88091 -> 88090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28516,"TargetID":88083,"Directional":true},{"SourceID":88086,"TargetID":88085,"Directional":true},{"SourceID":88089,"TargetID":88090,"Directional":true},{"SourceID":88091,"TargetID":88090,"Directional":true}]},{"ID":8017,"SourceStructureID":4835,"TargetStructureID":354,"Label":"4835-354 via Conventional from 65735 -> 44673","Type":"Conventional","Directional":true,"Links":[{"SourceID":65735,"TargetID":44673,"Directional":true}]},{"ID":8018,"SourceStructureID":4835,"TargetStructureID":424,"Label":"4835-424 via Conventional from 121853 -> 121852","Type":"Conventional","Directional":true,"Links":[{"SourceID":121853,"TargetID":121852,"Directional":true}]},{"ID":8019,"SourceStructureID":4835,"TargetStructureID":437,"Label":"4835-437 via Conventional from 6640 -> 6634, 17604 -> 17605, 17608 -> 17606, 17609 -> 17607, 17612 -> 17613, 65738 -> 65715","Type":"Conventional","Directional":true,"Links":[{"SourceID":6640,"TargetID":6634,"Directional":true},{"SourceID":17604,"TargetID":17605,"Directional":true},{"SourceID":17608,"TargetID":17606,"Directional":true},{"SourceID":17609,"TargetID":17607,"Directional":true},{"SourceID":17612,"TargetID":17613,"Directional":true},{"SourceID":65738,"TargetID":65715,"Directional":true}]},{"ID":8020,"SourceStructureID":4835,"TargetStructureID":455,"Label":"4835-455 via Conventional from 21417 -> 7391","Type":"Conventional","Directional":true,"Links":[{"SourceID":21417,"TargetID":7391,"Directional":true}]},{"ID":8021,"SourceStructureID":4835,"TargetStructureID":460,"Label":"4835-460 via Conventional from 18034 -> 14442","Type":"Conventional","Directional":true,"Links":[{"SourceID":18034,"TargetID":14442,"Directional":true}]},{"ID":8022,"SourceStructureID":4835,"TargetStructureID":463,"Label":"4835-463 via Conventional from 74144 -> 74143, 74149 -> 74148, 74151 -> 74150, 74176 -> 74175","Type":"Conventional","Directional":true,"Links":[{"SourceID":74144,"TargetID":74143,"Directional":true},{"SourceID":74149,"TargetID":74148,"Directional":true},{"SourceID":74151,"TargetID":74150,"Directional":true},{"SourceID":74176,"TargetID":74175,"Directional":true}]},{"ID":8023,"SourceStructureID":4835,"TargetStructureID":9787,"Label":"4835-9787 via Conventional from 12042 -> 12045, 12043 -> 12044, 12060 -> 9788, 18038 -> 18037, 18650 -> 12066","Type":"Conventional","Directional":true,"Links":[{"SourceID":12042,"TargetID":12045,"Directional":true},{"SourceID":12043,"TargetID":12044,"Directional":true},{"SourceID":12060,"TargetID":9788,"Directional":true},{"SourceID":18038,"TargetID":18037,"Directional":true},{"SourceID":18650,"TargetID":12066,"Directional":true}]},{"ID":8024,"SourceStructureID":4835,"TargetStructureID":131516,"Label":"4835-131516 via Conventional from 18043 -> 131523","Type":"Conventional","Directional":true,"Links":[{"SourceID":18043,"TargetID":131523,"Directional":true}]},{"ID":8025,"SourceStructureID":4849,"TargetStructureID":115,"Label":"4849-115 via Conventional from 42566 -> 10796","Type":"Conventional","Directional":true,"Links":[{"SourceID":42566,"TargetID":10796,"Directional":true}]},{"ID":8026,"SourceStructureID":4849,"TargetStructureID":115,"Label":"4849-115 via Ribbon Synapse from 40563 -> 10794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40563,"TargetID":10794,"Directional":true}]},{"ID":8027,"SourceStructureID":4849,"TargetStructureID":3865,"Label":"4849-3865 via Ribbon Synapse from 132102 -> 132098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132102,"TargetID":132098,"Directional":true}]},{"ID":8028,"SourceStructureID":4849,"TargetStructureID":5372,"Label":"4849-5372 via Ribbon Synapse from 26120 -> 26115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26120,"TargetID":26115,"Directional":true}]},{"ID":8029,"SourceStructureID":4849,"TargetStructureID":8575,"Label":"4849-8575 via BC Conventional Synapse from 26121 -> 62282, 62281 -> 62280","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":26121,"TargetID":62282,"Directional":true},{"SourceID":62281,"TargetID":62280,"Directional":true}]},{"ID":8030,"SourceStructureID":4850,"TargetStructureID":294,"Label":"4850-294 via Conventional from 22532 -> 22534, 22533 -> 22535, 22537 -> 22536, 22538 -> 22539","Type":"Conventional","Directional":true,"Links":[{"SourceID":22532,"TargetID":22534,"Directional":true},{"SourceID":22533,"TargetID":22535,"Directional":true},{"SourceID":22537,"TargetID":22536,"Directional":true},{"SourceID":22538,"TargetID":22539,"Directional":true}]},{"ID":8031,"SourceStructureID":4850,"TargetStructureID":369,"Label":"4850-369 via Conventional from 83682 -> 29554, 83684 -> 83685, 83687 -> 83689, 83688 -> 83690","Type":"Conventional","Directional":true,"Links":[{"SourceID":83682,"TargetID":29554,"Directional":true},{"SourceID":83684,"TargetID":83685,"Directional":true},{"SourceID":83687,"TargetID":83689,"Directional":true},{"SourceID":83688,"TargetID":83690,"Directional":true}]},{"ID":8032,"SourceStructureID":4850,"TargetStructureID":516,"Label":"4850-516 via Conventional from 14209 -> 6508, 14210 -> 14211","Type":"Conventional","Directional":true,"Links":[{"SourceID":14209,"TargetID":6508,"Directional":true},{"SourceID":14210,"TargetID":14211,"Directional":true}]},{"ID":8033,"SourceStructureID":4850,"TargetStructureID":517,"Label":"4850-517 via Conventional from 14200 -> 14168, 14201 -> 14164, 14205 -> 14164","Type":"Conventional","Directional":true,"Links":[{"SourceID":14200,"TargetID":14168,"Directional":true},{"SourceID":14201,"TargetID":14164,"Directional":true},{"SourceID":14205,"TargetID":14164,"Directional":true}]},{"ID":8034,"SourceStructureID":4850,"TargetStructureID":5563,"Label":"4850-5563 via Conventional from 14303 -> 14304, 14306 -> 14307","Type":"Conventional","Directional":true,"Links":[{"SourceID":14303,"TargetID":14304,"Directional":true},{"SourceID":14306,"TargetID":14307,"Directional":true}]},{"ID":8035,"SourceStructureID":4850,"TargetStructureID":6169,"Label":"4850-6169 via Conventional from 14202 -> 14204, 14206 -> 9460","Type":"Conventional","Directional":true,"Links":[{"SourceID":14202,"TargetID":14204,"Directional":true},{"SourceID":14206,"TargetID":9460,"Directional":true}]},{"ID":8036,"SourceStructureID":4850,"TargetStructureID":6618,"Label":"4850-6618 via Conventional from 30712 -> 30711, 30713 -> 30710","Type":"Conventional","Directional":true,"Links":[{"SourceID":30712,"TargetID":30711,"Directional":true},{"SourceID":30713,"TargetID":30710,"Directional":true}]},{"ID":8037,"SourceStructureID":4850,"TargetStructureID":7054,"Label":"4850-7054 via Conventional from 19465 -> 19466, 19469 -> 19472, 97847 -> 97848","Type":"Conventional","Directional":true,"Links":[{"SourceID":19465,"TargetID":19466,"Directional":true},{"SourceID":19469,"TargetID":19472,"Directional":true},{"SourceID":97847,"TargetID":97848,"Directional":true}]},{"ID":8038,"SourceStructureID":4850,"TargetStructureID":9693,"Label":"4850-9693 via Conventional from 15389 -> 15390, 15392 -> 15076","Type":"Conventional","Directional":true,"Links":[{"SourceID":15389,"TargetID":15390,"Directional":true},{"SourceID":15392,"TargetID":15076,"Directional":true}]},{"ID":8039,"SourceStructureID":4850,"TargetStructureID":10897,"Label":"4850-10897 via Conventional from 22548 -> 13833","Type":"Conventional","Directional":true,"Links":[{"SourceID":22548,"TargetID":13833,"Directional":true}]},{"ID":8040,"SourceStructureID":4850,"TargetStructureID":10931,"Label":"4850-10931 via Conventional from 14213 -> 14214, 14222 -> 14224, 14223 -> 14225, 14231 -> 14232","Type":"Conventional","Directional":true,"Links":[{"SourceID":14213,"TargetID":14214,"Directional":true},{"SourceID":14222,"TargetID":14224,"Directional":true},{"SourceID":14223,"TargetID":14225,"Directional":true},{"SourceID":14231,"TargetID":14232,"Directional":true}]},{"ID":8041,"SourceStructureID":4850,"TargetStructureID":11033,"Label":"4850-11033 via Conventional from 33898 -> 33901, 33899 -> 33904, 33900 -> 33902","Type":"Conventional","Directional":true,"Links":[{"SourceID":33898,"TargetID":33901,"Directional":true},{"SourceID":33899,"TargetID":33904,"Directional":true},{"SourceID":33900,"TargetID":33902,"Directional":true}]},{"ID":8042,"SourceStructureID":4850,"TargetStructureID":11172,"Label":"4850-11172 via Conventional from 22549 -> 22550","Type":"Conventional","Directional":true,"Links":[{"SourceID":22549,"TargetID":22550,"Directional":true}]},{"ID":8043,"SourceStructureID":4876,"TargetStructureID":597,"Label":"4876-597 via Ribbon Synapse from 60472 -> 60470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60472,"TargetID":60470,"Directional":true}]},{"ID":8044,"SourceStructureID":4876,"TargetStructureID":608,"Label":"4876-608 via Ribbon Synapse from 131361 -> 148297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131361,"TargetID":148297,"Directional":true}]},{"ID":8045,"SourceStructureID":4876,"TargetStructureID":4876,"Label":"4876-4876 via Ribbon Synapse from 131361 -> 44420","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131361,"TargetID":44420,"Directional":true}]},{"ID":8046,"SourceStructureID":4876,"TargetStructureID":5441,"Label":"4876-5441 via Ribbon Synapse from 91462 -> 91452","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91462,"TargetID":91452,"Directional":true}]},{"ID":8047,"SourceStructureID":4876,"TargetStructureID":6857,"Label":"4876-6857 via Ribbon Synapse from 18997 -> 18899, 19000 -> 19001, 19002 -> 7519, 19004 -> 19005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18997,"TargetID":18899,"Directional":true},{"SourceID":19000,"TargetID":19001,"Directional":true},{"SourceID":19002,"TargetID":7519,"Directional":true},{"SourceID":19004,"TargetID":19005,"Directional":true}]},{"ID":8048,"SourceStructureID":4876,"TargetStructureID":7147,"Label":"4876-7147 via Ribbon Synapse from 19114 -> 52243, 114062 -> 114061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19114,"TargetID":52243,"Directional":true},{"SourceID":114062,"TargetID":114061,"Directional":true}]},{"ID":8049,"SourceStructureID":4877,"TargetStructureID":5435,"Label":"4877-5435 via Ribbon Synapse from 24357 -> 24356","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24357,"TargetID":24356,"Directional":true}]},{"ID":8050,"SourceStructureID":4877,"TargetStructureID":5491,"Label":"4877-5491 via BC Conventional Synapse from 54709 -> 54710","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54709,"TargetID":54710,"Directional":true}]},{"ID":8051,"SourceStructureID":4877,"TargetStructureID":5491,"Label":"4877-5491 via Ribbon Synapse from 126824 -> 135623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126824,"TargetID":135623,"Directional":true}]},{"ID":8052,"SourceStructureID":4877,"TargetStructureID":9769,"Label":"4877-9769 via Ribbon Synapse from 23964 -> 23959, 54702 -> 54703, 91384 -> 147815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23964,"TargetID":23959,"Directional":true},{"SourceID":54702,"TargetID":54703,"Directional":true},{"SourceID":91384,"TargetID":147815,"Directional":true}]},{"ID":8053,"SourceStructureID":4877,"TargetStructureID":15796,"Label":"4877-15796 via Ribbon Synapse from 20272 -> 20268, 46441 -> 46442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20272,"TargetID":20268,"Directional":true},{"SourceID":46441,"TargetID":46442,"Directional":true}]},{"ID":8054,"SourceStructureID":4877,"TargetStructureID":35212,"Label":"4877-35212 via Ribbon Synapse from 33385 -> 35217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33385,"TargetID":35217,"Directional":true}]},{"ID":8055,"SourceStructureID":4877,"TargetStructureID":38307,"Label":"4877-38307 via Ribbon Synapse from 33305 -> 38334","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33305,"TargetID":38334,"Directional":true}]},{"ID":8056,"SourceStructureID":4877,"TargetStructureID":43716,"Label":"4877-43716 via BC Conventional Synapse from 123571 -> 123570","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123571,"TargetID":123570,"Directional":true}]},{"ID":8057,"SourceStructureID":4877,"TargetStructureID":43716,"Label":"4877-43716 via Ribbon Synapse from 54702 -> 54704, 54707 -> 54708, 54716 -> 54715, 56595 -> 123569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54702,"TargetID":54704,"Directional":true},{"SourceID":54707,"TargetID":54708,"Directional":true},{"SourceID":54716,"TargetID":54715,"Directional":true},{"SourceID":56595,"TargetID":123569,"Directional":true}]},{"ID":8058,"SourceStructureID":4877,"TargetStructureID":44346,"Label":"4877-44346 via Ribbon Synapse from 33392 -> 44455, 44453 -> 44452","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33392,"TargetID":44455,"Directional":true},{"SourceID":44453,"TargetID":44452,"Directional":true}]},{"ID":8059,"SourceStructureID":4877,"TargetStructureID":54778,"Label":"4877-54778 via BC Conventional Synapse from 126850 -> 126851","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":126850,"TargetID":126851,"Directional":true}]},{"ID":8060,"SourceStructureID":4877,"TargetStructureID":54818,"Label":"4877-54818 via Ribbon Synapse from 54821 -> 54820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54821,"TargetID":54820,"Directional":true}]},{"ID":8061,"SourceStructureID":4877,"TargetStructureID":58592,"Label":"4877-58592 via Ribbon Synapse from 33307 -> 58660","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33307,"TargetID":58660,"Directional":true}]},{"ID":8062,"SourceStructureID":4877,"TargetStructureID":58642,"Label":"4877-58642 via Ribbon Synapse from 33385 -> 58647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33385,"TargetID":58647,"Directional":true}]},{"ID":8063,"SourceStructureID":4877,"TargetStructureID":72299,"Label":"4877-72299 via Ribbon Synapse from 33384 -> 82117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33384,"TargetID":82117,"Directional":true}]},{"ID":8064,"SourceStructureID":4877,"TargetStructureID":82071,"Label":"4877-82071 via Ribbon Synapse from 33311 -> 82503, 33312 -> 82504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33311,"TargetID":82503,"Directional":true},{"SourceID":33312,"TargetID":82504,"Directional":true}]},{"ID":8065,"SourceStructureID":4877,"TargetStructureID":126582,"Label":"4877-126582 via Ribbon Synapse from 126581 -> 126583","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126581,"TargetID":126583,"Directional":true}]},{"ID":8066,"SourceStructureID":4877,"TargetStructureID":127764,"Label":"4877-127764 via Ribbon Synapse from 62755 -> 129273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62755,"TargetID":129273,"Directional":true}]},{"ID":8067,"SourceStructureID":4877,"TargetStructureID":136432,"Label":"4877-136432 via Ribbon Synapse from 133995 -> 136534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133995,"TargetID":136534,"Directional":true}]},{"ID":8068,"SourceStructureID":4890,"TargetStructureID":397,"Label":"4890-397 via Conventional from 71055 -> 71056","Type":"Conventional","Directional":true,"Links":[{"SourceID":71055,"TargetID":71056,"Directional":true}]},{"ID":8069,"SourceStructureID":4890,"TargetStructureID":5514,"Label":"4890-5514 via Conventional from 64870 -> 50662, 64871 -> 50701","Type":"Conventional","Directional":true,"Links":[{"SourceID":64870,"TargetID":50662,"Directional":true},{"SourceID":64871,"TargetID":50701,"Directional":true}]},{"ID":8070,"SourceStructureID":4890,"TargetStructureID":5530,"Label":"4890-5530 via Conventional from 82064 -> 82065","Type":"Conventional","Directional":true,"Links":[{"SourceID":82064,"TargetID":82065,"Directional":true}]},{"ID":8071,"SourceStructureID":4890,"TargetStructureID":6156,"Label":"4890-6156 via Postsynapse from 133469 -> 91270","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":133469,"TargetID":91270,"Directional":true}]},{"ID":8072,"SourceStructureID":4890,"TargetStructureID":7024,"Label":"4890-7024 via Conventional from 64879 -> 64880","Type":"Conventional","Directional":true,"Links":[{"SourceID":64879,"TargetID":64880,"Directional":true}]},{"ID":8073,"SourceStructureID":4890,"TargetStructureID":50449,"Label":"4890-50449 via Conventional from 64875 -> 50599, 64877 -> 50658","Type":"Conventional","Directional":true,"Links":[{"SourceID":64875,"TargetID":50599,"Directional":true},{"SourceID":64877,"TargetID":50658,"Directional":true}]},{"ID":8074,"SourceStructureID":4890,"TargetStructureID":62777,"Label":"4890-62777 via Conventional from 64884 -> 64885","Type":"Conventional","Directional":true,"Links":[{"SourceID":64884,"TargetID":64885,"Directional":true}]},{"ID":8075,"SourceStructureID":4890,"TargetStructureID":64887,"Label":"4890-64887 via Conventional from 64886 -> 64889","Type":"Conventional","Directional":true,"Links":[{"SourceID":64886,"TargetID":64889,"Directional":true}]},{"ID":8076,"SourceStructureID":4890,"TargetStructureID":64923,"Label":"4890-64923 via Conventional from 64922 -> 64924","Type":"Conventional","Directional":true,"Links":[{"SourceID":64922,"TargetID":64924,"Directional":true}]},{"ID":8077,"SourceStructureID":4890,"TargetStructureID":70924,"Label":"4890-70924 via Conventional from 20525 -> 70937, 70940 -> 70939","Type":"Conventional","Directional":true,"Links":[{"SourceID":20525,"TargetID":70937,"Directional":true},{"SourceID":70940,"TargetID":70939,"Directional":true}]},{"ID":8078,"SourceStructureID":4941,"TargetStructureID":518,"Label":"4941-518 via Conventional from 5750 -> 3464, 36660 -> 3298","Type":"Conventional","Directional":true,"Links":[{"SourceID":5750,"TargetID":3464,"Directional":true},{"SourceID":36660,"TargetID":3298,"Directional":true}]},{"ID":8079,"SourceStructureID":4942,"TargetStructureID":518,"Label":"4942-518 via Conventional from 5751 -> 3480, 36658 -> 3301","Type":"Conventional","Directional":true,"Links":[{"SourceID":5751,"TargetID":3480,"Directional":true},{"SourceID":36658,"TargetID":3301,"Directional":true}]},{"ID":8080,"SourceStructureID":4943,"TargetStructureID":469,"Label":"4943-469 via Conventional from 13426 -> 4664, 13429 -> 4673","Type":"Conventional","Directional":true,"Links":[{"SourceID":13426,"TargetID":4664,"Directional":true},{"SourceID":13429,"TargetID":4673,"Directional":true}]},{"ID":8081,"SourceStructureID":4943,"TargetStructureID":514,"Label":"4943-514 via Conventional from 13433 -> 14957","Type":"Conventional","Directional":true,"Links":[{"SourceID":13433,"TargetID":14957,"Directional":true}]},{"ID":8082,"SourceStructureID":4943,"TargetStructureID":517,"Label":"4943-517 via Conventional from 42786 -> 40978","Type":"Conventional","Directional":true,"Links":[{"SourceID":42786,"TargetID":40978,"Directional":true}]},{"ID":8083,"SourceStructureID":4943,"TargetStructureID":518,"Label":"4943-518 via Conventional from 8501 -> 3467","Type":"Conventional","Directional":true,"Links":[{"SourceID":8501,"TargetID":3467,"Directional":true}]},{"ID":8084,"SourceStructureID":4943,"TargetStructureID":3881,"Label":"4943-3881 via Conventional from 4969 -> 3883","Type":"Conventional","Directional":true,"Links":[{"SourceID":4969,"TargetID":3883,"Directional":true}]},{"ID":8085,"SourceStructureID":4943,"TargetStructureID":5923,"Label":"4943-5923 via Conventional from 4996 -> 8690","Type":"Conventional","Directional":true,"Links":[{"SourceID":4996,"TargetID":8690,"Directional":true}]},{"ID":8086,"SourceStructureID":4943,"TargetStructureID":8586,"Label":"4943-8586 via Conventional from 4967 -> 8665","Type":"Conventional","Directional":true,"Links":[{"SourceID":4967,"TargetID":8665,"Directional":true}]},{"ID":8087,"SourceStructureID":4943,"TargetStructureID":10815,"Label":"4943-10815 via Conventional from 43370 -> 43371, 43374 -> 43375, 43378 -> 43379","Type":"Conventional","Directional":true,"Links":[{"SourceID":43370,"TargetID":43371,"Directional":true},{"SourceID":43374,"TargetID":43375,"Directional":true},{"SourceID":43378,"TargetID":43379,"Directional":true}]},{"ID":8088,"SourceStructureID":4943,"TargetStructureID":10826,"Label":"4943-10826 via Conventional from 43251 -> 43252, 43253 -> 43254","Type":"Conventional","Directional":true,"Links":[{"SourceID":43251,"TargetID":43252,"Directional":true},{"SourceID":43253,"TargetID":43254,"Directional":true}]},{"ID":8089,"SourceStructureID":4943,"TargetStructureID":10957,"Label":"4943-10957 via Conventional from 83508 -> 83509, 83518 -> 83521, 83519 -> 83522, 83520 -> 83523, 83524 -> 83526, 83525 -> 83527","Type":"Conventional","Directional":true,"Links":[{"SourceID":83508,"TargetID":83509,"Directional":true},{"SourceID":83518,"TargetID":83521,"Directional":true},{"SourceID":83519,"TargetID":83522,"Directional":true},{"SourceID":83520,"TargetID":83523,"Directional":true},{"SourceID":83524,"TargetID":83526,"Directional":true},{"SourceID":83525,"TargetID":83527,"Directional":true}]},{"ID":8090,"SourceStructureID":4943,"TargetStructureID":11031,"Label":"4943-11031 via Conventional from 40982 -> 40983","Type":"Conventional","Directional":true,"Links":[{"SourceID":40982,"TargetID":40983,"Directional":true}]},{"ID":8091,"SourceStructureID":4943,"TargetStructureID":15969,"Label":"4943-15969 via Conventional from 43275 -> 43276","Type":"Conventional","Directional":true,"Links":[{"SourceID":43275,"TargetID":43276,"Directional":true}]},{"ID":8092,"SourceStructureID":5006,"TargetStructureID":518,"Label":"5006-518 via Conventional from 5009 -> 3300, 5010 -> 3494, 9642 -> 9641, 36656 -> 3461","Type":"Conventional","Directional":true,"Links":[{"SourceID":5009,"TargetID":3300,"Directional":true},{"SourceID":5010,"TargetID":3494,"Directional":true},{"SourceID":9642,"TargetID":9641,"Directional":true},{"SourceID":36656,"TargetID":3461,"Directional":true}]},{"ID":8093,"SourceStructureID":5017,"TargetStructureID":308,"Label":"5017-308 via Ribbon Synapse from 42553 -> 86720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42553,"TargetID":86720,"Directional":true}]},{"ID":8094,"SourceStructureID":5017,"TargetStructureID":514,"Label":"5017-514 via Ribbon Synapse from 5021 -> 5014, 13821 -> 13816, 13829 -> 13828, 16152 -> 16151, 17048 -> 17049, 17066 -> 17083, 17068 -> 17938, 133284 -> 133285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5021,"TargetID":5014,"Directional":true},{"SourceID":13821,"TargetID":13816,"Directional":true},{"SourceID":13829,"TargetID":13828,"Directional":true},{"SourceID":16152,"TargetID":16151,"Directional":true},{"SourceID":17048,"TargetID":17049,"Directional":true},{"SourceID":17066,"TargetID":17083,"Directional":true},{"SourceID":17068,"TargetID":17938,"Directional":true},{"SourceID":133284,"TargetID":133285,"Directional":true}]},{"ID":8095,"SourceStructureID":5017,"TargetStructureID":2610,"Label":"5017-2610 via Ribbon Synapse from 13818 -> 13817, 17054 -> 3616, 17065 -> 17064, 17099 -> 17100, 17104 -> 13788, 17974 -> 17973, 17987 -> 17985, 17988 -> 17986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13818,"TargetID":13817,"Directional":true},{"SourceID":17054,"TargetID":3616,"Directional":true},{"SourceID":17065,"TargetID":17064,"Directional":true},{"SourceID":17099,"TargetID":17100,"Directional":true},{"SourceID":17104,"TargetID":13788,"Directional":true},{"SourceID":17974,"TargetID":17973,"Directional":true},{"SourceID":17987,"TargetID":17985,"Directional":true},{"SourceID":17988,"TargetID":17986,"Directional":true}]},{"ID":8096,"SourceStructureID":5017,"TargetStructureID":3679,"Label":"5017-3679 via Ribbon Synapse from 5027 -> 66141, 17056 -> 3832, 17060 -> 3830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5027,"TargetID":66141,"Directional":true},{"SourceID":17056,"TargetID":3832,"Directional":true},{"SourceID":17060,"TargetID":3830,"Directional":true}]},{"ID":8097,"SourceStructureID":5017,"TargetStructureID":9260,"Label":"5017-9260 via Ribbon Synapse from 5035 -> 96772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":5035,"TargetID":96772,"Directional":true}]},{"ID":8098,"SourceStructureID":5017,"TargetStructureID":25575,"Label":"5017-25575 via Ribbon Synapse from 25581 -> 25580, 25583 -> 25582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25581,"TargetID":25580,"Directional":true},{"SourceID":25583,"TargetID":25582,"Directional":true}]},{"ID":8099,"SourceStructureID":5017,"TargetStructureID":25669,"Label":"5017-25669 via Ribbon Synapse from 25687 -> 25686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25687,"TargetID":25686,"Directional":true}]},{"ID":8100,"SourceStructureID":5017,"TargetStructureID":39530,"Label":"5017-39530 via Ribbon Synapse from 17054 -> 39555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17054,"TargetID":39555,"Directional":true}]},{"ID":8101,"SourceStructureID":5017,"TargetStructureID":61214,"Label":"5017-61214 via Ribbon Synapse from 17066 -> 61241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17066,"TargetID":61241,"Directional":true}]},{"ID":8102,"SourceStructureID":5057,"TargetStructureID":397,"Label":"5057-397 via Conventional from 45641 -> 122673","Type":"Conventional","Directional":true,"Links":[{"SourceID":45641,"TargetID":122673,"Directional":true}]},{"ID":8103,"SourceStructureID":5057,"TargetStructureID":606,"Label":"5057-606 via Conventional from 10225 -> 45602","Type":"Conventional","Directional":true,"Links":[{"SourceID":10225,"TargetID":45602,"Directional":true}]},{"ID":8104,"SourceStructureID":5057,"TargetStructureID":6912,"Label":"5057-6912 via Conventional from 10224 -> 6923","Type":"Conventional","Directional":true,"Links":[{"SourceID":10224,"TargetID":6923,"Directional":true}]},{"ID":8105,"SourceStructureID":5057,"TargetStructureID":7594,"Label":"5057-7594 via Conventional from 45654 -> 45655","Type":"Conventional","Directional":true,"Links":[{"SourceID":45654,"TargetID":45655,"Directional":true}]},{"ID":8106,"SourceStructureID":5107,"TargetStructureID":5107,"Label":"5107-5107 via Conventional from 148322 -> 148320","Type":"Conventional","Directional":true,"Links":[{"SourceID":148322,"TargetID":148320,"Directional":true}]},{"ID":8107,"SourceStructureID":5117,"TargetStructureID":483,"Label":"5117-483 via Cistern Pre from 28781 -> 28784","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":28781,"TargetID":28784,"Directional":true}]},{"ID":8108,"SourceStructureID":5117,"TargetStructureID":61864,"Label":"5117-61864 via Conventional from 69342 -> 69343","Type":"Conventional","Directional":true,"Links":[{"SourceID":69342,"TargetID":69343,"Directional":true}]},{"ID":8109,"SourceStructureID":5278,"TargetStructureID":3865,"Label":"5278-3865 via Ribbon Synapse from 20077 -> 99726, 20157 -> 99822, 95952 -> 36111, 104833 -> 104840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20077,"TargetID":99726,"Directional":true},{"SourceID":20157,"TargetID":99822,"Directional":true},{"SourceID":95952,"TargetID":36111,"Directional":true},{"SourceID":104833,"TargetID":104840,"Directional":true}]},{"ID":8110,"SourceStructureID":5278,"TargetStructureID":5107,"Label":"5278-5107 via Ribbon Synapse from 11208 -> 104215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11208,"TargetID":104215,"Directional":true}]},{"ID":8111,"SourceStructureID":5278,"TargetStructureID":6406,"Label":"5278-6406 via Ribbon Synapse from 20091 -> 20093","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20091,"TargetID":20093,"Directional":true}]},{"ID":8112,"SourceStructureID":5278,"TargetStructureID":8575,"Label":"5278-8575 via BC Conventional Synapse from 62069 -> 62068, 93411 -> 93412, 104822 -> 62259","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62069,"TargetID":62068,"Directional":true},{"SourceID":93411,"TargetID":93412,"Directional":true},{"SourceID":104822,"TargetID":62259,"Directional":true}]},{"ID":8113,"SourceStructureID":5278,"TargetStructureID":8579,"Label":"5278-8579 via Ribbon Synapse from 92309 -> 114300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92309,"TargetID":114300,"Directional":true}]},{"ID":8114,"SourceStructureID":5278,"TargetStructureID":15796,"Label":"5278-15796 via BC Conventional Synapse from 147262 -> 147261, 147320 -> 147319","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147262,"TargetID":147261,"Directional":true},{"SourceID":147320,"TargetID":147319,"Directional":true}]},{"ID":8115,"SourceStructureID":5278,"TargetStructureID":16073,"Label":"5278-16073 via BC Conventional Synapse from 19885 -> 19881, 92023 -> 19874","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":19885,"TargetID":19881,"Directional":true},{"SourceID":92023,"TargetID":19874,"Directional":true}]},{"ID":8116,"SourceStructureID":5278,"TargetStructureID":16073,"Label":"5278-16073 via Ribbon Synapse from 20017 -> 20018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20017,"TargetID":20018,"Directional":true}]},{"ID":8117,"SourceStructureID":5278,"TargetStructureID":18693,"Label":"5278-18693 via Ribbon Synapse from 8980 -> 100412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8980,"TargetID":100412,"Directional":true}]},{"ID":8118,"SourceStructureID":5278,"TargetStructureID":27304,"Label":"5278-27304 via Ribbon Synapse from 20069 -> 27306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20069,"TargetID":27306,"Directional":true}]},{"ID":8119,"SourceStructureID":5278,"TargetStructureID":32035,"Label":"5278-32035 via Ribbon Synapse from 11202 -> 32044","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11202,"TargetID":32044,"Directional":true}]},{"ID":8120,"SourceStructureID":5278,"TargetStructureID":34336,"Label":"5278-34336 via BC Conventional Synapse from 147290 -> 147289","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147290,"TargetID":147289,"Directional":true}]},{"ID":8121,"SourceStructureID":5278,"TargetStructureID":35894,"Label":"5278-35894 via Ribbon Synapse from 11191 -> 104083, 11199 -> 104177","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11191,"TargetID":104083,"Directional":true},{"SourceID":11199,"TargetID":104177,"Directional":true}]},{"ID":8122,"SourceStructureID":5278,"TargetStructureID":64774,"Label":"5278-64774 via BC Conventional Synapse from 147251 -> 147252","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147251,"TargetID":147252,"Directional":true}]},{"ID":8123,"SourceStructureID":5278,"TargetStructureID":65284,"Label":"5278-65284 via Ribbon Synapse from 20098 -> 99611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20098,"TargetID":99611,"Directional":true}]},{"ID":8124,"SourceStructureID":5278,"TargetStructureID":67182,"Label":"5278-67182 via Ribbon Synapse from 8984 -> 83311","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8984,"TargetID":83311,"Directional":true}]},{"ID":8125,"SourceStructureID":5278,"TargetStructureID":68539,"Label":"5278-68539 via Ribbon Synapse from 20126 -> 104034, 104193 -> 104196","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20126,"TargetID":104034,"Directional":true},{"SourceID":104193,"TargetID":104196,"Directional":true}]},{"ID":8126,"SourceStructureID":5278,"TargetStructureID":73390,"Label":"5278-73390 via Ribbon Synapse from 20126 -> 104035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20126,"TargetID":104035,"Directional":true}]},{"ID":8127,"SourceStructureID":5278,"TargetStructureID":73593,"Label":"5278-73593 via Ribbon Synapse from 104193 -> 104195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104193,"TargetID":104195,"Directional":true}]},{"ID":8128,"SourceStructureID":5278,"TargetStructureID":85955,"Label":"5278-85955 via Ribbon Synapse from 104241 -> 104376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104241,"TargetID":104376,"Directional":true}]},{"ID":8129,"SourceStructureID":5278,"TargetStructureID":86042,"Label":"5278-86042 via Ribbon Synapse from 114527 -> 89089","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114527,"TargetID":89089,"Directional":true}]},{"ID":8130,"SourceStructureID":5278,"TargetStructureID":92169,"Label":"5278-92169 via Ribbon Synapse from 104833 -> 104841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104833,"TargetID":104841,"Directional":true}]},{"ID":8131,"SourceStructureID":5278,"TargetStructureID":93392,"Label":"5278-93392 via Ribbon Synapse from 114502 -> 114504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114502,"TargetID":114504,"Directional":true}]},{"ID":8132,"SourceStructureID":5278,"TargetStructureID":93396,"Label":"5278-93396 via Ribbon Synapse from 114502 -> 114503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114502,"TargetID":114503,"Directional":true}]},{"ID":8133,"SourceStructureID":5278,"TargetStructureID":93399,"Label":"5278-93399 via Unknown from 114501 -> 93400","Type":"Unknown","Directional":true,"Links":[{"SourceID":114501,"TargetID":93400,"Directional":true}]},{"ID":8134,"SourceStructureID":5278,"TargetStructureID":93401,"Label":"5278-93401 via Unknown from 114501 -> 93402","Type":"Unknown","Directional":true,"Links":[{"SourceID":114501,"TargetID":93402,"Directional":true}]},{"ID":8135,"SourceStructureID":5278,"TargetStructureID":93407,"Label":"5278-93407 via BC Conventional Synapse from 93409 -> 93408","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93409,"TargetID":93408,"Directional":true}]},{"ID":8136,"SourceStructureID":5278,"TargetStructureID":93416,"Label":"5278-93416 via BC Conventional Synapse from 93417 -> 93418","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93417,"TargetID":93418,"Directional":true}]},{"ID":8137,"SourceStructureID":5278,"TargetStructureID":93420,"Label":"5278-93420 via Ribbon Synapse from 93419 -> 93421","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93419,"TargetID":93421,"Directional":true}]},{"ID":8138,"SourceStructureID":5278,"TargetStructureID":93424,"Label":"5278-93424 via Ribbon Synapse from 93419 -> 93425","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93419,"TargetID":93425,"Directional":true}]},{"ID":8139,"SourceStructureID":5278,"TargetStructureID":93463,"Label":"5278-93463 via Ribbon Synapse from 114497 -> 93464, 114499 -> 93464","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114497,"TargetID":93464,"Directional":true},{"SourceID":114499,"TargetID":93464,"Directional":true}]},{"ID":8140,"SourceStructureID":5278,"TargetStructureID":97925,"Label":"5278-97925 via Ribbon Synapse from 18485 -> 97926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18485,"TargetID":97926,"Directional":true}]},{"ID":8141,"SourceStructureID":5278,"TargetStructureID":97927,"Label":"5278-97927 via BC Conventional Synapse from 147324 -> 147323","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147324,"TargetID":147323,"Directional":true}]},{"ID":8142,"SourceStructureID":5278,"TargetStructureID":97933,"Label":"5278-97933 via Ribbon Synapse from 20032 -> 97950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20032,"TargetID":97950,"Directional":true}]},{"ID":8143,"SourceStructureID":5278,"TargetStructureID":97936,"Label":"5278-97936 via Ribbon Synapse from 11224 -> 97937","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11224,"TargetID":97937,"Directional":true}]},{"ID":8144,"SourceStructureID":5278,"TargetStructureID":97944,"Label":"5278-97944 via BC Conventional Synapse from 97945 -> 97946","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97945,"TargetID":97946,"Directional":true}]},{"ID":8145,"SourceStructureID":5278,"TargetStructureID":98810,"Label":"5278-98810 via Ribbon Synapse from 92096 -> 98811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92096,"TargetID":98811,"Directional":true}]},{"ID":8146,"SourceStructureID":5278,"TargetStructureID":98812,"Label":"5278-98812 via Ribbon Synapse from 92096 -> 98813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92096,"TargetID":98813,"Directional":true}]},{"ID":8147,"SourceStructureID":5278,"TargetStructureID":98814,"Label":"5278-98814 via Ribbon Synapse from 11227 -> 98816, 92096 -> 98815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11227,"TargetID":98816,"Directional":true},{"SourceID":92096,"TargetID":98815,"Directional":true}]},{"ID":8148,"SourceStructureID":5278,"TargetStructureID":98818,"Label":"5278-98818 via Ribbon Synapse from 11227 -> 98819","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11227,"TargetID":98819,"Directional":true}]},{"ID":8149,"SourceStructureID":5278,"TargetStructureID":98823,"Label":"5278-98823 via Ribbon Synapse from 20035 -> 98825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20035,"TargetID":98825,"Directional":true}]},{"ID":8150,"SourceStructureID":5278,"TargetStructureID":99237,"Label":"5278-99237 via Ribbon cluster from 92105 -> 99246","Type":"Ribbon cluster","Directional":true,"Links":[{"SourceID":92105,"TargetID":99246,"Directional":true}]},{"ID":8151,"SourceStructureID":5278,"TargetStructureID":99262,"Label":"5278-99262 via Ribbon Synapse from 133882 -> 133883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133882,"TargetID":133883,"Directional":true}]},{"ID":8152,"SourceStructureID":5278,"TargetStructureID":99268,"Label":"5278-99268 via Ribbon Synapse from 133882 -> 147325","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133882,"TargetID":147325,"Directional":true}]},{"ID":8153,"SourceStructureID":5278,"TargetStructureID":99288,"Label":"5278-99288 via Ribbon Synapse from 20048 -> 99289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20048,"TargetID":99289,"Directional":true}]},{"ID":8154,"SourceStructureID":5278,"TargetStructureID":99295,"Label":"5278-99295 via Ribbon Synapse from 20069 -> 99296","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20069,"TargetID":99296,"Directional":true}]},{"ID":8155,"SourceStructureID":5278,"TargetStructureID":99302,"Label":"5278-99302 via Ribbon Synapse from 20108 -> 99303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20108,"TargetID":99303,"Directional":true}]},{"ID":8156,"SourceStructureID":5278,"TargetStructureID":99309,"Label":"5278-99309 via Ribbon Synapse from 20109 -> 99310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20109,"TargetID":99310,"Directional":true}]},{"ID":8157,"SourceStructureID":5278,"TargetStructureID":99311,"Label":"5278-99311 via Ribbon Synapse from 20109 -> 99312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20109,"TargetID":99312,"Directional":true}]},{"ID":8158,"SourceStructureID":5278,"TargetStructureID":99513,"Label":"5278-99513 via Ribbon Synapse from 93419 -> 129644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93419,"TargetID":129644,"Directional":true}]},{"ID":8159,"SourceStructureID":5278,"TargetStructureID":99584,"Label":"5278-99584 via Ribbon Synapse from 20112 -> 99585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20112,"TargetID":99585,"Directional":true}]},{"ID":8160,"SourceStructureID":5278,"TargetStructureID":99586,"Label":"5278-99586 via Ribbon Synapse from 20112 -> 99588","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20112,"TargetID":99588,"Directional":true}]},{"ID":8161,"SourceStructureID":5278,"TargetStructureID":99600,"Label":"5278-99600 via Ribbon Synapse from 147327 -> 147328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147327,"TargetID":147328,"Directional":true}]},{"ID":8162,"SourceStructureID":5278,"TargetStructureID":99601,"Label":"5278-99601 via Ribbon Synapse from 92115 -> 99605","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92115,"TargetID":99605,"Directional":true}]},{"ID":8163,"SourceStructureID":5278,"TargetStructureID":99609,"Label":"5278-99609 via Ribbon Synapse from 20098 -> 99610","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20098,"TargetID":99610,"Directional":true}]},{"ID":8164,"SourceStructureID":5278,"TargetStructureID":99612,"Label":"5278-99612 via BC Conventional Synapse from 20072 -> 99613","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":20072,"TargetID":99613,"Directional":true}]},{"ID":8165,"SourceStructureID":5278,"TargetStructureID":99728,"Label":"5278-99728 via Ribbon Synapse from 20077 -> 99729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20077,"TargetID":99729,"Directional":true}]},{"ID":8166,"SourceStructureID":5278,"TargetStructureID":99784,"Label":"5278-99784 via Ribbon Synapse from 20091 -> 99785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20091,"TargetID":99785,"Directional":true}]},{"ID":8167,"SourceStructureID":5278,"TargetStructureID":99786,"Label":"5278-99786 via BC Conventional Synapse from 20119 -> 99787","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":20119,"TargetID":99787,"Directional":true}]},{"ID":8168,"SourceStructureID":5278,"TargetStructureID":99792,"Label":"5278-99792 via Ribbon Synapse from 8958 -> 99794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8958,"TargetID":99794,"Directional":true}]},{"ID":8169,"SourceStructureID":5278,"TargetStructureID":99812,"Label":"5278-99812 via Ribbon Synapse from 20155 -> 99813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20155,"TargetID":99813,"Directional":true}]},{"ID":8170,"SourceStructureID":5278,"TargetStructureID":99818,"Label":"5278-99818 via Ribbon Synapse from 20157 -> 99820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20157,"TargetID":99820,"Directional":true}]},{"ID":8171,"SourceStructureID":5278,"TargetStructureID":99824,"Label":"5278-99824 via Ribbon Synapse from 20161 -> 99825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20161,"TargetID":99825,"Directional":true}]},{"ID":8172,"SourceStructureID":5278,"TargetStructureID":99827,"Label":"5278-99827 via BC Conventional Synapse from 20162 -> 99828","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":20162,"TargetID":99828,"Directional":true}]},{"ID":8173,"SourceStructureID":5278,"TargetStructureID":99831,"Label":"5278-99831 via Ribbon Synapse from 20165 -> 100140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20165,"TargetID":100140,"Directional":true}]},{"ID":8174,"SourceStructureID":5278,"TargetStructureID":100110,"Label":"5278-100110 via Ribbon Synapse from 20164 -> 100115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20164,"TargetID":100115,"Directional":true}]},{"ID":8175,"SourceStructureID":5278,"TargetStructureID":100121,"Label":"5278-100121 via Ribbon Synapse from 20164 -> 100122","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20164,"TargetID":100122,"Directional":true}]},{"ID":8176,"SourceStructureID":5278,"TargetStructureID":100129,"Label":"5278-100129 via Ribbon Synapse from 20165 -> 100141","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20165,"TargetID":100141,"Directional":true}]},{"ID":8177,"SourceStructureID":5278,"TargetStructureID":100157,"Label":"5278-100157 via Ribbon Synapse from 20163 -> 100159","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20163,"TargetID":100159,"Directional":true}]},{"ID":8178,"SourceStructureID":5278,"TargetStructureID":100195,"Label":"5278-100195 via Ribbon Synapse from 8973 -> 100196","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8973,"TargetID":100196,"Directional":true}]},{"ID":8179,"SourceStructureID":5278,"TargetStructureID":100201,"Label":"5278-100201 via BC Conventional Synapse from 100213 -> 100214","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100213,"TargetID":100214,"Directional":true}]},{"ID":8180,"SourceStructureID":5278,"TargetStructureID":100235,"Label":"5278-100235 via Ribbon Synapse from 8977 -> 100236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8977,"TargetID":100236,"Directional":true}]},{"ID":8181,"SourceStructureID":5278,"TargetStructureID":100365,"Label":"5278-100365 via Ribbon Synapse from 8982 -> 100368","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8982,"TargetID":100368,"Directional":true}]},{"ID":8182,"SourceStructureID":5278,"TargetStructureID":100374,"Label":"5278-100374 via Ribbon Synapse from 147298 -> 147299","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147298,"TargetID":147299,"Directional":true}]},{"ID":8183,"SourceStructureID":5278,"TargetStructureID":100389,"Label":"5278-100389 via Ribbon Synapse from 8981 -> 100394","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8981,"TargetID":100394,"Directional":true}]},{"ID":8184,"SourceStructureID":5278,"TargetStructureID":100396,"Label":"5278-100396 via Ribbon Synapse from 8981 -> 100397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8981,"TargetID":100397,"Directional":true}]},{"ID":8185,"SourceStructureID":5278,"TargetStructureID":100400,"Label":"5278-100400 via Ribbon Synapse from 8976 -> 100424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8976,"TargetID":100424,"Directional":true}]},{"ID":8186,"SourceStructureID":5278,"TargetStructureID":100414,"Label":"5278-100414 via Ribbon Synapse from 8975 -> 100428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8975,"TargetID":100428,"Directional":true}]},{"ID":8187,"SourceStructureID":5278,"TargetStructureID":100422,"Label":"5278-100422 via Ribbon Synapse from 8976 -> 100423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8976,"TargetID":100423,"Directional":true}]},{"ID":8188,"SourceStructureID":5278,"TargetStructureID":100425,"Label":"5278-100425 via Ribbon Synapse from 8975 -> 100427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8975,"TargetID":100427,"Directional":true}]},{"ID":8189,"SourceStructureID":5278,"TargetStructureID":100450,"Label":"5278-100450 via Ribbon Synapse from 8974 -> 100451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8974,"TargetID":100451,"Directional":true}]},{"ID":8190,"SourceStructureID":5278,"TargetStructureID":100452,"Label":"5278-100452 via Ribbon Synapse from 8974 -> 100453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8974,"TargetID":100453,"Directional":true}]},{"ID":8191,"SourceStructureID":5278,"TargetStructureID":100455,"Label":"5278-100455 via Ribbon Synapse from 8974 -> 100456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8974,"TargetID":100456,"Directional":true}]},{"ID":8192,"SourceStructureID":5278,"TargetStructureID":100485,"Label":"5278-100485 via Ribbon Synapse from 147460 -> 147300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147460,"TargetID":147300,"Directional":true}]},{"ID":8193,"SourceStructureID":5278,"TargetStructureID":100521,"Label":"5278-100521 via Ribbon Synapse from 100520 -> 100523","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100520,"TargetID":100523,"Directional":true}]},{"ID":8194,"SourceStructureID":5278,"TargetStructureID":100524,"Label":"5278-100524 via Ribbon Synapse from 100520 -> 100531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100520,"TargetID":100531,"Directional":true}]},{"ID":8195,"SourceStructureID":5278,"TargetStructureID":100536,"Label":"5278-100536 via Ribbon Synapse from 100545 -> 100547","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100545,"TargetID":100547,"Directional":true}]},{"ID":8196,"SourceStructureID":5278,"TargetStructureID":100548,"Label":"5278-100548 via Ribbon Synapse from 92152 -> 100550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92152,"TargetID":100550,"Directional":true}]},{"ID":8197,"SourceStructureID":5278,"TargetStructureID":100779,"Label":"5278-100779 via Ribbon Synapse from 92138 -> 100781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92138,"TargetID":100781,"Directional":true}]},{"ID":8198,"SourceStructureID":5278,"TargetStructureID":100788,"Label":"5278-100788 via Ribbon Synapse from 92138 -> 100790","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92138,"TargetID":100790,"Directional":true}]},{"ID":8199,"SourceStructureID":5278,"TargetStructureID":100795,"Label":"5278-100795 via BC Conventional Synapse from 100794 -> 100796","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":100794,"TargetID":100796,"Directional":true}]},{"ID":8200,"SourceStructureID":5278,"TargetStructureID":100803,"Label":"5278-100803 via Ribbon Synapse from 92137 -> 100806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92137,"TargetID":100806,"Directional":true}]},{"ID":8201,"SourceStructureID":5278,"TargetStructureID":100829,"Label":"5278-100829 via Ribbon Synapse from 8984 -> 100830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8984,"TargetID":100830,"Directional":true}]},{"ID":8202,"SourceStructureID":5278,"TargetStructureID":100831,"Label":"5278-100831 via Ribbon Synapse from 8986 -> 100832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8986,"TargetID":100832,"Directional":true}]},{"ID":8203,"SourceStructureID":5278,"TargetStructureID":104007,"Label":"5278-104007 via Ribbon Synapse from 11188 -> 104008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11188,"TargetID":104008,"Directional":true}]},{"ID":8204,"SourceStructureID":5278,"TargetStructureID":104009,"Label":"5278-104009 via Ribbon Synapse from 11188 -> 104010","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11188,"TargetID":104010,"Directional":true}]},{"ID":8205,"SourceStructureID":5278,"TargetStructureID":104012,"Label":"5278-104012 via Ribbon Synapse from 8985 -> 104014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8985,"TargetID":104014,"Directional":true}]},{"ID":8206,"SourceStructureID":5278,"TargetStructureID":104015,"Label":"5278-104015 via Ribbon Synapse from 8985 -> 104021, 20125 -> 104020","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8985,"TargetID":104021,"Directional":true},{"SourceID":20125,"TargetID":104020,"Directional":true}]},{"ID":8207,"SourceStructureID":5278,"TargetStructureID":104028,"Label":"5278-104028 via Ribbon Synapse from 20125 -> 104029","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20125,"TargetID":104029,"Directional":true}]},{"ID":8208,"SourceStructureID":5278,"TargetStructureID":104038,"Label":"5278-104038 via Ribbon Synapse from 8988 -> 104042, 8989 -> 104039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8988,"TargetID":104042,"Directional":true},{"SourceID":8989,"TargetID":104039,"Directional":true}]},{"ID":8209,"SourceStructureID":5278,"TargetStructureID":104040,"Label":"5278-104040 via Ribbon Synapse from 8989 -> 104041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8989,"TargetID":104041,"Directional":true}]},{"ID":8210,"SourceStructureID":5278,"TargetStructureID":104044,"Label":"5278-104044 via Ribbon Synapse from 8988 -> 104045, 8989 -> 104046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8988,"TargetID":104045,"Directional":true},{"SourceID":8989,"TargetID":104046,"Directional":true}]},{"ID":8211,"SourceStructureID":5278,"TargetStructureID":104068,"Label":"5278-104068 via Unknown from 104070 -> 104069","Type":"Unknown","Directional":true,"Links":[{"SourceID":104070,"TargetID":104069,"Directional":true}]},{"ID":8212,"SourceStructureID":5278,"TargetStructureID":104079,"Label":"5278-104079 via Ribbon Synapse from 11191 -> 104080, 11191 -> 104081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11191,"TargetID":104080,"Directional":true},{"SourceID":11191,"TargetID":104081,"Directional":true}]},{"ID":8213,"SourceStructureID":5278,"TargetStructureID":104084,"Label":"5278-104084 via Ribbon Synapse from 104099 -> 104100","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104099,"TargetID":104100,"Directional":true}]},{"ID":8214,"SourceStructureID":5278,"TargetStructureID":104095,"Label":"5278-104095 via BC Conventional Synapse from 104098 -> 104096","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104098,"TargetID":104096,"Directional":true}]},{"ID":8215,"SourceStructureID":5278,"TargetStructureID":104105,"Label":"5278-104105 via Ribbon Synapse from 11195 -> 104106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11195,"TargetID":104106,"Directional":true}]},{"ID":8216,"SourceStructureID":5278,"TargetStructureID":104107,"Label":"5278-104107 via Ribbon Synapse from 11195 -> 104108","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11195,"TargetID":104108,"Directional":true}]},{"ID":8217,"SourceStructureID":5278,"TargetStructureID":104114,"Label":"5278-104114 via BC Conventional Synapse from 104116 -> 104115","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104116,"TargetID":104115,"Directional":true}]},{"ID":8218,"SourceStructureID":5278,"TargetStructureID":104117,"Label":"5278-104117 via Ribbon Synapse from 11211 -> 104128, 11212 -> 104132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11211,"TargetID":104128,"Directional":true},{"SourceID":11212,"TargetID":104132,"Directional":true}]},{"ID":8219,"SourceStructureID":5278,"TargetStructureID":104129,"Label":"5278-104129 via Ribbon Synapse from 11211 -> 104134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11211,"TargetID":104134,"Directional":true}]},{"ID":8220,"SourceStructureID":5278,"TargetStructureID":104137,"Label":"5278-104137 via Ribbon Synapse from 11212 -> 104138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11212,"TargetID":104138,"Directional":true}]},{"ID":8221,"SourceStructureID":5278,"TargetStructureID":104168,"Label":"5278-104168 via Ribbon Synapse from 20128 -> 104187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20128,"TargetID":104187,"Directional":true}]},{"ID":8222,"SourceStructureID":5278,"TargetStructureID":104170,"Label":"5278-104170 via Ribbon Synapse from 20128 -> 104186, 20129 -> 104185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20128,"TargetID":104186,"Directional":true},{"SourceID":20129,"TargetID":104185,"Directional":true}]},{"ID":8223,"SourceStructureID":5278,"TargetStructureID":104178,"Label":"5278-104178 via Ribbon Synapse from 11199 -> 104179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11199,"TargetID":104179,"Directional":true}]},{"ID":8224,"SourceStructureID":5278,"TargetStructureID":104180,"Label":"5278-104180 via Ribbon Synapse from 20129 -> 104184","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20129,"TargetID":104184,"Directional":true}]},{"ID":8225,"SourceStructureID":5278,"TargetStructureID":104202,"Label":"5278-104202 via Ribbon Synapse from 104197 -> 104203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104197,"TargetID":104203,"Directional":true}]},{"ID":8226,"SourceStructureID":5278,"TargetStructureID":104204,"Label":"5278-104204 via Ribbon Synapse from 104197 -> 104205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104197,"TargetID":104205,"Directional":true}]},{"ID":8227,"SourceStructureID":5278,"TargetStructureID":104206,"Label":"5278-104206 via Ribbon Synapse from 11202 -> 104207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11202,"TargetID":104207,"Directional":true}]},{"ID":8228,"SourceStructureID":5278,"TargetStructureID":104216,"Label":"5278-104216 via Ribbon Synapse from 11208 -> 104217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11208,"TargetID":104217,"Directional":true}]},{"ID":8229,"SourceStructureID":5278,"TargetStructureID":104218,"Label":"5278-104218 via Ribbon Synapse from 11208 -> 104219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11208,"TargetID":104219,"Directional":true}]},{"ID":8230,"SourceStructureID":5278,"TargetStructureID":104222,"Label":"5278-104222 via Ribbon Synapse from 104227 -> 104228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104227,"TargetID":104228,"Directional":true}]},{"ID":8231,"SourceStructureID":5278,"TargetStructureID":104223,"Label":"5278-104223 via Ribbon Synapse from 11206 -> 104229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11206,"TargetID":104229,"Directional":true}]},{"ID":8232,"SourceStructureID":5278,"TargetStructureID":104235,"Label":"5278-104235 via Ribbon Synapse from 147305 -> 147306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147305,"TargetID":147306,"Directional":true}]},{"ID":8233,"SourceStructureID":5278,"TargetStructureID":104242,"Label":"5278-104242 via BC Conventional Synapse from 104383 -> 104382","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104383,"TargetID":104382,"Directional":true}]},{"ID":8234,"SourceStructureID":5278,"TargetStructureID":104242,"Label":"5278-104242 via Ribbon Synapse from 104241 -> 104243","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104241,"TargetID":104243,"Directional":true}]},{"ID":8235,"SourceStructureID":5278,"TargetStructureID":104244,"Label":"5278-104244 via Ribbon Synapse from 104245 -> 104246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104245,"TargetID":104246,"Directional":true}]},{"ID":8236,"SourceStructureID":5278,"TargetStructureID":104247,"Label":"5278-104247 via Ribbon Synapse from 104245 -> 104248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104245,"TargetID":104248,"Directional":true}]},{"ID":8237,"SourceStructureID":5278,"TargetStructureID":104250,"Label":"5278-104250 via Ribbon Synapse from 104249 -> 104251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104249,"TargetID":104251,"Directional":true}]},{"ID":8238,"SourceStructureID":5278,"TargetStructureID":104252,"Label":"5278-104252 via Ribbon Synapse from 104249 -> 104253, 104254 -> 104257, 104258 -> 104262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104249,"TargetID":104253,"Directional":true},{"SourceID":104254,"TargetID":104257,"Directional":true},{"SourceID":104258,"TargetID":104262,"Directional":true}]},{"ID":8239,"SourceStructureID":5278,"TargetStructureID":104255,"Label":"5278-104255 via Ribbon Synapse from 104254 -> 104256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104254,"TargetID":104256,"Directional":true}]},{"ID":8240,"SourceStructureID":5278,"TargetStructureID":104259,"Label":"5278-104259 via Ribbon Synapse from 104249 -> 147304, 104258 -> 104260","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104249,"TargetID":147304,"Directional":true},{"SourceID":104258,"TargetID":104260,"Directional":true}]},{"ID":8241,"SourceStructureID":5278,"TargetStructureID":104263,"Label":"5278-104263 via BC Conventional Synapse from 147308 -> 147309","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147308,"TargetID":147309,"Directional":true}]},{"ID":8242,"SourceStructureID":5278,"TargetStructureID":104299,"Label":"5278-104299 via Ribbon Synapse from 104298 -> 104311","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104298,"TargetID":104311,"Directional":true}]},{"ID":8243,"SourceStructureID":5278,"TargetStructureID":104301,"Label":"5278-104301 via Ribbon Synapse from 104298 -> 104307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104298,"TargetID":104307,"Directional":true}]},{"ID":8244,"SourceStructureID":5278,"TargetStructureID":104302,"Label":"5278-104302 via Ribbon Synapse from 104298 -> 104305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104298,"TargetID":104305,"Directional":true}]},{"ID":8245,"SourceStructureID":5278,"TargetStructureID":104333,"Label":"5278-104333 via Ribbon Synapse from 104331 -> 104336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104331,"TargetID":104336,"Directional":true}]},{"ID":8246,"SourceStructureID":5278,"TargetStructureID":104346,"Label":"5278-104346 via Ribbon Synapse from 104351 -> 104355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104351,"TargetID":104355,"Directional":true}]},{"ID":8247,"SourceStructureID":5278,"TargetStructureID":104353,"Label":"5278-104353 via Ribbon Synapse from 104351 -> 104354","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104351,"TargetID":104354,"Directional":true}]},{"ID":8248,"SourceStructureID":5278,"TargetStructureID":104377,"Label":"5278-104377 via Ribbon Synapse from 104384 -> 104387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104384,"TargetID":104387,"Directional":true}]},{"ID":8249,"SourceStructureID":5278,"TargetStructureID":104385,"Label":"5278-104385 via Ribbon Synapse from 104384 -> 104386","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104384,"TargetID":104386,"Directional":true}]},{"ID":8250,"SourceStructureID":5278,"TargetStructureID":104397,"Label":"5278-104397 via Ribbon Synapse from 92194 -> 104398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92194,"TargetID":104398,"Directional":true}]},{"ID":8251,"SourceStructureID":5278,"TargetStructureID":104402,"Label":"5278-104402 via Ribbon Synapse from 104407 -> 104408","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104407,"TargetID":104408,"Directional":true}]},{"ID":8252,"SourceStructureID":5278,"TargetStructureID":104403,"Label":"5278-104403 via Ribbon Synapse from 104407 -> 104409","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104407,"TargetID":104409,"Directional":true}]},{"ID":8253,"SourceStructureID":5278,"TargetStructureID":104411,"Label":"5278-104411 via Ribbon Synapse from 92194 -> 104412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92194,"TargetID":104412,"Directional":true}]},{"ID":8254,"SourceStructureID":5278,"TargetStructureID":104421,"Label":"5278-104421 via Ribbon Synapse from 104420 -> 104423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104420,"TargetID":104423,"Directional":true}]},{"ID":8255,"SourceStructureID":5278,"TargetStructureID":104425,"Label":"5278-104425 via BC Conventional Synapse from 92166 -> 104426","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92166,"TargetID":104426,"Directional":true}]},{"ID":8256,"SourceStructureID":5278,"TargetStructureID":104428,"Label":"5278-104428 via Ribbon Synapse from 92164 -> 104429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92164,"TargetID":104429,"Directional":true}]},{"ID":8257,"SourceStructureID":5278,"TargetStructureID":104444,"Label":"5278-104444 via Ribbon Synapse from 92181 -> 104529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92181,"TargetID":104529,"Directional":true}]},{"ID":8258,"SourceStructureID":5278,"TargetStructureID":104496,"Label":"5278-104496 via Ribbon Synapse from 92163 -> 104498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92163,"TargetID":104498,"Directional":true}]},{"ID":8259,"SourceStructureID":5278,"TargetStructureID":104499,"Label":"5278-104499 via Ribbon Synapse from 92163 -> 104500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92163,"TargetID":104500,"Directional":true}]},{"ID":8260,"SourceStructureID":5278,"TargetStructureID":104516,"Label":"5278-104516 via Ribbon Synapse from 104515 -> 104517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104515,"TargetID":104517,"Directional":true}]},{"ID":8261,"SourceStructureID":5278,"TargetStructureID":104521,"Label":"5278-104521 via Ribbon Synapse from 92181 -> 116724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92181,"TargetID":116724,"Directional":true}]},{"ID":8262,"SourceStructureID":5278,"TargetStructureID":104547,"Label":"5278-104547 via Ribbon Synapse from 104420 -> 104551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104420,"TargetID":104551,"Directional":true}]},{"ID":8263,"SourceStructureID":5278,"TargetStructureID":104568,"Label":"5278-104568 via Ribbon Synapse from 104584 -> 104585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104584,"TargetID":104585,"Directional":true}]},{"ID":8264,"SourceStructureID":5278,"TargetStructureID":104569,"Label":"5278-104569 via Ribbon Synapse from 92211 -> 104578","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92211,"TargetID":104578,"Directional":true}]},{"ID":8265,"SourceStructureID":5278,"TargetStructureID":104571,"Label":"5278-104571 via Ribbon Synapse from 92211 -> 104576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92211,"TargetID":104576,"Directional":true}]},{"ID":8266,"SourceStructureID":5278,"TargetStructureID":104591,"Label":"5278-104591 via Ribbon Synapse from 92219 -> 104596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92219,"TargetID":104596,"Directional":true}]},{"ID":8267,"SourceStructureID":5278,"TargetStructureID":104806,"Label":"5278-104806 via Ribbon Synapse from 92219 -> 104807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92219,"TargetID":104807,"Directional":true}]},{"ID":8268,"SourceStructureID":5278,"TargetStructureID":104808,"Label":"5278-104808 via Ribbon Synapse from 104811 -> 104821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104811,"TargetID":104821,"Directional":true}]},{"ID":8269,"SourceStructureID":5278,"TargetStructureID":104812,"Label":"5278-104812 via Ribbon Synapse from 92216 -> 104816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92216,"TargetID":104816,"Directional":true}]},{"ID":8270,"SourceStructureID":5278,"TargetStructureID":104823,"Label":"5278-104823 via Ribbon Synapse from 92216 -> 104827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92216,"TargetID":104827,"Directional":true}]},{"ID":8271,"SourceStructureID":5278,"TargetStructureID":104834,"Label":"5278-104834 via Ribbon Synapse from 104833 -> 104839","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104833,"TargetID":104839,"Directional":true}]},{"ID":8272,"SourceStructureID":5278,"TargetStructureID":104842,"Label":"5278-104842 via Ribbon Synapse from 104845 -> 104852, 104854 -> 104855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104845,"TargetID":104852,"Directional":true},{"SourceID":104854,"TargetID":104855,"Directional":true}]},{"ID":8273,"SourceStructureID":5278,"TargetStructureID":104848,"Label":"5278-104848 via Ribbon Synapse from 104845 -> 104849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104845,"TargetID":104849,"Directional":true}]},{"ID":8274,"SourceStructureID":5278,"TargetStructureID":104850,"Label":"5278-104850 via Ribbon Synapse from 104845 -> 104851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104845,"TargetID":104851,"Directional":true}]},{"ID":8275,"SourceStructureID":5278,"TargetStructureID":104856,"Label":"5278-104856 via Ribbon Synapse from 104854 -> 104857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104854,"TargetID":104857,"Directional":true}]},{"ID":8276,"SourceStructureID":5278,"TargetStructureID":104858,"Label":"5278-104858 via Ribbon Synapse from 104853 -> 104859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104853,"TargetID":104859,"Directional":true}]},{"ID":8277,"SourceStructureID":5278,"TargetStructureID":120783,"Label":"5278-120783 via Ribbon Synapse from 114179 -> 120928","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114179,"TargetID":120928,"Directional":true}]},{"ID":8278,"SourceStructureID":5279,"TargetStructureID":5107,"Label":"5279-5107 via Ribbon Synapse from 6354 -> 97284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6354,"TargetID":97284,"Directional":true}]},{"ID":8279,"SourceStructureID":5279,"TargetStructureID":5280,"Label":"5279-5280 via Ribbon Synapse from 25683 -> 96398, 25683 -> 96399, 25685 -> 40883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25683,"TargetID":96398,"Directional":true},{"SourceID":25683,"TargetID":96399,"Directional":true},{"SourceID":25685,"TargetID":40883,"Directional":true}]},{"ID":8280,"SourceStructureID":5279,"TargetStructureID":5282,"Label":"5279-5282 via Ribbon Synapse from 6351 -> 87549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6351,"TargetID":87549,"Directional":true}]},{"ID":8281,"SourceStructureID":5279,"TargetStructureID":5489,"Label":"5279-5489 via Ribbon Synapse from 92556 -> 119112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92556,"TargetID":119112,"Directional":true}]},{"ID":8282,"SourceStructureID":5279,"TargetStructureID":6857,"Label":"5279-6857 via Ribbon Synapse from 59054 -> 7539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59054,"TargetID":7539,"Directional":true}]},{"ID":8283,"SourceStructureID":5279,"TargetStructureID":8579,"Label":"5279-8579 via Ribbon Synapse from 6351 -> 62897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6351,"TargetID":62897,"Directional":true}]},{"ID":8284,"SourceStructureID":5279,"TargetStructureID":15796,"Label":"5279-15796 via Ribbon Synapse from 27433 -> 20151","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27433,"TargetID":20151,"Directional":true}]},{"ID":8285,"SourceStructureID":5279,"TargetStructureID":37466,"Label":"5279-37466 via Ribbon Synapse from 11479 -> 37478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11479,"TargetID":37478,"Directional":true}]},{"ID":8286,"SourceStructureID":5279,"TargetStructureID":39957,"Label":"5279-39957 via BC Conventional Synapse from 97623 -> 97624","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97623,"TargetID":97624,"Directional":true}]},{"ID":8287,"SourceStructureID":5279,"TargetStructureID":47104,"Label":"5279-47104 via Ribbon Synapse from 47147 -> 47146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47147,"TargetID":47146,"Directional":true}]},{"ID":8288,"SourceStructureID":5279,"TargetStructureID":55347,"Label":"5279-55347 via Ribbon Synapse from 119116 -> 119115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119116,"TargetID":119115,"Directional":true}]},{"ID":8289,"SourceStructureID":5279,"TargetStructureID":57034,"Label":"5279-57034 via Ribbon Synapse from 92550 -> 65397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92550,"TargetID":65397,"Directional":true}]},{"ID":8290,"SourceStructureID":5279,"TargetStructureID":58592,"Label":"5279-58592 via Ribbon Synapse from 49229 -> 58627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49229,"TargetID":58627,"Directional":true}]},{"ID":8291,"SourceStructureID":5279,"TargetStructureID":58816,"Label":"5279-58816 via Ribbon Synapse from 49203 -> 58824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49203,"TargetID":58824,"Directional":true}]},{"ID":8292,"SourceStructureID":5279,"TargetStructureID":59012,"Label":"5279-59012 via Ribbon Synapse from 59016 -> 59017, 59016 -> 116767","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59016,"TargetID":59017,"Directional":true},{"SourceID":59016,"TargetID":116767,"Directional":true}]},{"ID":8293,"SourceStructureID":5279,"TargetStructureID":61793,"Label":"5279-61793 via Ribbon Synapse from 130718 -> 61794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130718,"TargetID":61794,"Directional":true}]},{"ID":8294,"SourceStructureID":5279,"TargetStructureID":66395,"Label":"5279-66395 via Ribbon Synapse from 27433 -> 97596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27433,"TargetID":97596,"Directional":true}]},{"ID":8295,"SourceStructureID":5279,"TargetStructureID":66523,"Label":"5279-66523 via Ribbon Synapse from 97217 -> 97220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97217,"TargetID":97220,"Directional":true}]},{"ID":8296,"SourceStructureID":5279,"TargetStructureID":67182,"Label":"5279-67182 via Ribbon Synapse from 25819 -> 92662","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25819,"TargetID":92662,"Directional":true}]},{"ID":8297,"SourceStructureID":5279,"TargetStructureID":68335,"Label":"5279-68335 via Ribbon Synapse from 130718 -> 68336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130718,"TargetID":68336,"Directional":true}]},{"ID":8298,"SourceStructureID":5279,"TargetStructureID":68430,"Label":"5279-68430 via BC Conventional Synapse from 98089 -> 98090","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98089,"TargetID":98090,"Directional":true}]},{"ID":8299,"SourceStructureID":5279,"TargetStructureID":70360,"Label":"5279-70360 via Ribbon Synapse from 28312 -> 97338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28312,"TargetID":97338,"Directional":true}]},{"ID":8300,"SourceStructureID":5279,"TargetStructureID":83190,"Label":"5279-83190 via Ribbon Synapse from 92556 -> 129646","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92556,"TargetID":129646,"Directional":true}]},{"ID":8301,"SourceStructureID":5279,"TargetStructureID":83293,"Label":"5279-83293 via Ribbon Synapse from 25795 -> 96482","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25795,"TargetID":96482,"Directional":true}]},{"ID":8302,"SourceStructureID":5279,"TargetStructureID":88565,"Label":"5279-88565 via Ribbon Synapse from 6351 -> 97231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6351,"TargetID":97231,"Directional":true}]},{"ID":8303,"SourceStructureID":5279,"TargetStructureID":92638,"Label":"5279-92638 via Ribbon Synapse from 25999 -> 92857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25999,"TargetID":92857,"Directional":true}]},{"ID":8304,"SourceStructureID":5279,"TargetStructureID":94878,"Label":"5279-94878 via Ribbon Synapse from 25796 -> 96509","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25796,"TargetID":96509,"Directional":true}]},{"ID":8305,"SourceStructureID":5279,"TargetStructureID":96343,"Label":"5279-96343 via Cistern Pre from 27529 -> 126411","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":27529,"TargetID":126411,"Directional":true}]},{"ID":8306,"SourceStructureID":5279,"TargetStructureID":96345,"Label":"5279-96345 via Ribbon Synapse from 15122 -> 96349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15122,"TargetID":96349,"Directional":true}]},{"ID":8307,"SourceStructureID":5279,"TargetStructureID":96353,"Label":"5279-96353 via Ribbon Synapse from 6905 -> 96355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6905,"TargetID":96355,"Directional":true}]},{"ID":8308,"SourceStructureID":5279,"TargetStructureID":96413,"Label":"5279-96413 via Ribbon Synapse from 96412 -> 96416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96412,"TargetID":96416,"Directional":true}]},{"ID":8309,"SourceStructureID":5279,"TargetStructureID":96417,"Label":"5279-96417 via Ribbon Synapse from 49236 -> 96418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49236,"TargetID":96418,"Directional":true}]},{"ID":8310,"SourceStructureID":5279,"TargetStructureID":96423,"Label":"5279-96423 via Ribbon Synapse from 49238 -> 96424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49238,"TargetID":96424,"Directional":true}]},{"ID":8311,"SourceStructureID":5279,"TargetStructureID":96439,"Label":"5279-96439 via Ribbon Synapse from 47147 -> 96441","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47147,"TargetID":96441,"Directional":true}]},{"ID":8312,"SourceStructureID":5279,"TargetStructureID":96446,"Label":"5279-96446 via Ribbon Synapse from 147963 -> 147962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147963,"TargetID":147962,"Directional":true}]},{"ID":8313,"SourceStructureID":5279,"TargetStructureID":96465,"Label":"5279-96465 via Ribbon Synapse from 133835 -> 133836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133835,"TargetID":133836,"Directional":true}]},{"ID":8314,"SourceStructureID":5279,"TargetStructureID":96483,"Label":"5279-96483 via Ribbon Synapse from 25795 -> 96484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25795,"TargetID":96484,"Directional":true}]},{"ID":8315,"SourceStructureID":5279,"TargetStructureID":96493,"Label":"5279-96493 via Ribbon Synapse from 6341 -> 96498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6341,"TargetID":96498,"Directional":true}]},{"ID":8316,"SourceStructureID":5279,"TargetStructureID":96494,"Label":"5279-96494 via Ribbon Synapse from 6341 -> 96497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6341,"TargetID":96497,"Directional":true}]},{"ID":8317,"SourceStructureID":5279,"TargetStructureID":96505,"Label":"5279-96505 via BC Conventional Synapse from 96514 -> 96513","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96514,"TargetID":96513,"Directional":true}]},{"ID":8318,"SourceStructureID":5279,"TargetStructureID":96505,"Label":"5279-96505 via Ribbon Synapse from 25796 -> 96507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25796,"TargetID":96507,"Directional":true}]},{"ID":8319,"SourceStructureID":5279,"TargetStructureID":97018,"Label":"5279-97018 via Ribbon Synapse from 25802 -> 97022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25802,"TargetID":97022,"Directional":true}]},{"ID":8320,"SourceStructureID":5279,"TargetStructureID":97034,"Label":"5279-97034 via Ribbon Synapse from 25801 -> 97036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25801,"TargetID":97036,"Directional":true}]},{"ID":8321,"SourceStructureID":5279,"TargetStructureID":97124,"Label":"5279-97124 via Ribbon Synapse from 25805 -> 97125","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25805,"TargetID":97125,"Directional":true}]},{"ID":8322,"SourceStructureID":5279,"TargetStructureID":97126,"Label":"5279-97126 via Ribbon Synapse from 97127 -> 97128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97127,"TargetID":97128,"Directional":true}]},{"ID":8323,"SourceStructureID":5279,"TargetStructureID":97129,"Label":"5279-97129 via Ribbon Synapse from 97127 -> 97132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97127,"TargetID":97132,"Directional":true}]},{"ID":8324,"SourceStructureID":5279,"TargetStructureID":97152,"Label":"5279-97152 via Ribbon Synapse from 25809 -> 97153","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25809,"TargetID":97153,"Directional":true}]},{"ID":8325,"SourceStructureID":5279,"TargetStructureID":97156,"Label":"5279-97156 via Ribbon Synapse from 25811 -> 97158","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25811,"TargetID":97158,"Directional":true}]},{"ID":8326,"SourceStructureID":5279,"TargetStructureID":97162,"Label":"5279-97162 via Ribbon Synapse from 25809 -> 97163","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25809,"TargetID":97163,"Directional":true}]},{"ID":8327,"SourceStructureID":5279,"TargetStructureID":97167,"Label":"5279-97167 via Ribbon Synapse from 97168 -> 97169","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97168,"TargetID":97169,"Directional":true}]},{"ID":8328,"SourceStructureID":5279,"TargetStructureID":97218,"Label":"5279-97218 via Ribbon Synapse from 97217 -> 97219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97217,"TargetID":97219,"Directional":true}]},{"ID":8329,"SourceStructureID":5279,"TargetStructureID":97223,"Label":"5279-97223 via Ribbon Synapse from 6346 -> 97224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6346,"TargetID":97224,"Directional":true}]},{"ID":8330,"SourceStructureID":5279,"TargetStructureID":97228,"Label":"5279-97228 via Ribbon Synapse from 6346 -> 97229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6346,"TargetID":97229,"Directional":true}]},{"ID":8331,"SourceStructureID":5279,"TargetStructureID":97261,"Label":"5279-97261 via Ribbon Synapse from 6343 -> 97262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6343,"TargetID":97262,"Directional":true}]},{"ID":8332,"SourceStructureID":5279,"TargetStructureID":97294,"Label":"5279-97294 via Ribbon Synapse from 6353 -> 97296","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6353,"TargetID":97296,"Directional":true}]},{"ID":8333,"SourceStructureID":5279,"TargetStructureID":97302,"Label":"5279-97302 via Ribbon Synapse from 25838 -> 97303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25838,"TargetID":97303,"Directional":true}]},{"ID":8334,"SourceStructureID":5279,"TargetStructureID":97305,"Label":"5279-97305 via Ribbon Synapse from 25838 -> 97309","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25838,"TargetID":97309,"Directional":true}]},{"ID":8335,"SourceStructureID":5279,"TargetStructureID":97329,"Label":"5279-97329 via Ribbon Synapse from 97330 -> 97331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97330,"TargetID":97331,"Directional":true}]},{"ID":8336,"SourceStructureID":5279,"TargetStructureID":97358,"Label":"5279-97358 via BC Conventional Synapse from 97359 -> 97360","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97359,"TargetID":97360,"Directional":true}]},{"ID":8337,"SourceStructureID":5279,"TargetStructureID":97374,"Label":"5279-97374 via Ribbon Synapse from 49261 -> 97375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49261,"TargetID":97375,"Directional":true}]},{"ID":8338,"SourceStructureID":5279,"TargetStructureID":97532,"Label":"5279-97532 via Ribbon Synapse from 97527 -> 97533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97527,"TargetID":97533,"Directional":true}]},{"ID":8339,"SourceStructureID":5279,"TargetStructureID":97538,"Label":"5279-97538 via BC Conventional Synapse from 97537 -> 97540","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97537,"TargetID":97540,"Directional":true}]},{"ID":8340,"SourceStructureID":5279,"TargetStructureID":97548,"Label":"5279-97548 via Ribbon Synapse from 97545 -> 97551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97545,"TargetID":97551,"Directional":true}]},{"ID":8341,"SourceStructureID":5279,"TargetStructureID":97552,"Label":"5279-97552 via Ribbon Synapse from 97545 -> 97556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97545,"TargetID":97556,"Directional":true}]},{"ID":8342,"SourceStructureID":5279,"TargetStructureID":97609,"Label":"5279-97609 via Ribbon Synapse from 97608 -> 97612","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97608,"TargetID":97612,"Directional":true}]},{"ID":8343,"SourceStructureID":5279,"TargetStructureID":97610,"Label":"5279-97610 via Ribbon Synapse from 97608 -> 97611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97608,"TargetID":97611,"Directional":true}]},{"ID":8344,"SourceStructureID":5279,"TargetStructureID":97615,"Label":"5279-97615 via Ribbon Synapse from 97613 -> 97618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97613,"TargetID":97618,"Directional":true}]},{"ID":8345,"SourceStructureID":5279,"TargetStructureID":97649,"Label":"5279-97649 via Ribbon Synapse from 25819 -> 98007","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25819,"TargetID":98007,"Directional":true}]},{"ID":8346,"SourceStructureID":5279,"TargetStructureID":98000,"Label":"5279-98000 via Ribbon Synapse from 25818 -> 98004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25818,"TargetID":98004,"Directional":true}]},{"ID":8347,"SourceStructureID":5279,"TargetStructureID":98029,"Label":"5279-98029 via Ribbon Synapse from 25823 -> 98032","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25823,"TargetID":98032,"Directional":true}]},{"ID":8348,"SourceStructureID":5279,"TargetStructureID":98030,"Label":"5279-98030 via Ribbon Synapse from 25823 -> 98031","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25823,"TargetID":98031,"Directional":true}]},{"ID":8349,"SourceStructureID":5279,"TargetStructureID":98037,"Label":"5279-98037 via Ribbon Synapse from 26005 -> 98038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26005,"TargetID":98038,"Directional":true}]},{"ID":8350,"SourceStructureID":5279,"TargetStructureID":98039,"Label":"5279-98039 via Ribbon Synapse from 20133 -> 98044","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20133,"TargetID":98044,"Directional":true}]},{"ID":8351,"SourceStructureID":5279,"TargetStructureID":98041,"Label":"5279-98041 via Ribbon Synapse from 20133 -> 98045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20133,"TargetID":98045,"Directional":true}]},{"ID":8352,"SourceStructureID":5279,"TargetStructureID":98074,"Label":"5279-98074 via Ribbon Synapse from 147287 -> 147288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147287,"TargetID":147288,"Directional":true}]},{"ID":8353,"SourceStructureID":5279,"TargetStructureID":98106,"Label":"5279-98106 via Ribbon Synapse from 11479 -> 98110","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11479,"TargetID":98110,"Directional":true}]},{"ID":8354,"SourceStructureID":5279,"TargetStructureID":98534,"Label":"5279-98534 via Ribbon Synapse from 49209 -> 98536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49209,"TargetID":98536,"Directional":true}]},{"ID":8355,"SourceStructureID":5279,"TargetStructureID":98579,"Label":"5279-98579 via Ribbon Synapse from 25842 -> 98580","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25842,"TargetID":98580,"Directional":true}]},{"ID":8356,"SourceStructureID":5279,"TargetStructureID":98584,"Label":"5279-98584 via Ribbon Synapse from 25845 -> 147956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25845,"TargetID":147956,"Directional":true}]},{"ID":8357,"SourceStructureID":5279,"TargetStructureID":98589,"Label":"5279-98589 via BC Conventional Synapse from 98593 -> 98594","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98593,"TargetID":98594,"Directional":true}]},{"ID":8358,"SourceStructureID":5279,"TargetStructureID":98599,"Label":"5279-98599 via Ribbon Synapse from 25845 -> 98603","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25845,"TargetID":98603,"Directional":true}]},{"ID":8359,"SourceStructureID":5279,"TargetStructureID":98630,"Label":"5279-98630 via Ribbon Synapse from 25989 -> 98631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25989,"TargetID":98631,"Directional":true}]},{"ID":8360,"SourceStructureID":5279,"TargetStructureID":98632,"Label":"5279-98632 via Ribbon Synapse from 25989 -> 98633","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25989,"TargetID":98633,"Directional":true}]},{"ID":8361,"SourceStructureID":5279,"TargetStructureID":98644,"Label":"5279-98644 via Ribbon Synapse from 25990 -> 98645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25990,"TargetID":98645,"Directional":true}]},{"ID":8362,"SourceStructureID":5279,"TargetStructureID":98676,"Label":"5279-98676 via Ribbon Synapse from 25991 -> 98684","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25991,"TargetID":98684,"Directional":true}]},{"ID":8363,"SourceStructureID":5279,"TargetStructureID":98689,"Label":"5279-98689 via Ribbon Synapse from 25992 -> 98692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25992,"TargetID":98692,"Directional":true}]},{"ID":8364,"SourceStructureID":5279,"TargetStructureID":98993,"Label":"5279-98993 via Ribbon Synapse from 26003 -> 98994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26003,"TargetID":98994,"Directional":true}]},{"ID":8365,"SourceStructureID":5279,"TargetStructureID":99044,"Label":"5279-99044 via Ribbon Synapse from 49231 -> 99045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49231,"TargetID":99045,"Directional":true}]},{"ID":8366,"SourceStructureID":5279,"TargetStructureID":99054,"Label":"5279-99054 via Ribbon Synapse from 49221 -> 99055","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49221,"TargetID":99055,"Directional":true}]},{"ID":8367,"SourceStructureID":5279,"TargetStructureID":99056,"Label":"5279-99056 via Ribbon Synapse from 49221 -> 99061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49221,"TargetID":99061,"Directional":true}]},{"ID":8368,"SourceStructureID":5279,"TargetStructureID":99088,"Label":"5279-99088 via BC Conventional Synapse from 99089 -> 99090","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99089,"TargetID":99090,"Directional":true}]},{"ID":8369,"SourceStructureID":5279,"TargetStructureID":99106,"Label":"5279-99106 via Ribbon Synapse from 49224 -> 99107","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49224,"TargetID":99107,"Directional":true}]},{"ID":8370,"SourceStructureID":5279,"TargetStructureID":99118,"Label":"5279-99118 via Ribbon Synapse from 49229 -> 99120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49229,"TargetID":99120,"Directional":true}]},{"ID":8371,"SourceStructureID":5279,"TargetStructureID":99122,"Label":"5279-99122 via Ribbon Synapse from 99121 -> 99123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99121,"TargetID":99123,"Directional":true}]},{"ID":8372,"SourceStructureID":5279,"TargetStructureID":99139,"Label":"5279-99139 via Ribbon Synapse from 99138 -> 99140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99138,"TargetID":99140,"Directional":true}]},{"ID":8373,"SourceStructureID":5279,"TargetStructureID":99142,"Label":"5279-99142 via Ribbon Synapse from 99138 -> 99143","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99138,"TargetID":99143,"Directional":true}]},{"ID":8374,"SourceStructureID":5279,"TargetStructureID":99795,"Label":"5279-99795 via Ribbon Synapse from 92676 -> 99796","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92676,"TargetID":99796,"Directional":true}]},{"ID":8375,"SourceStructureID":5279,"TargetStructureID":99797,"Label":"5279-99797 via Ribbon Synapse from 92676 -> 99798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92676,"TargetID":99798,"Directional":true}]},{"ID":8376,"SourceStructureID":5279,"TargetStructureID":99799,"Label":"5279-99799 via Ribbon Synapse from 92676 -> 99800","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92676,"TargetID":99800,"Directional":true}]},{"ID":8377,"SourceStructureID":5279,"TargetStructureID":99806,"Label":"5279-99806 via Ribbon Synapse from 92675 -> 99807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92675,"TargetID":99807,"Directional":true}]},{"ID":8378,"SourceStructureID":5279,"TargetStructureID":136667,"Label":"5279-136667 via Ribbon Synapse from 92551 -> 147692, 119107 -> 147693","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92551,"TargetID":147692,"Directional":true},{"SourceID":119107,"TargetID":147693,"Directional":true}]},{"ID":8379,"SourceStructureID":5280,"TargetStructureID":517,"Label":"5280-517 via Conventional from 40877 -> 6907","Type":"Conventional","Directional":true,"Links":[{"SourceID":40877,"TargetID":6907,"Directional":true}]},{"ID":8380,"SourceStructureID":5281,"TargetStructureID":166,"Label":"5281-166 via Conventional from 39262 -> 39261, 39266 -> 4402","Type":"Conventional","Directional":true,"Links":[{"SourceID":39262,"TargetID":39261,"Directional":true},{"SourceID":39266,"TargetID":4402,"Directional":true}]},{"ID":8381,"SourceStructureID":5281,"TargetStructureID":483,"Label":"5281-483 via Conventional from 36765 -> 6754, 36766 -> 6753","Type":"Conventional","Directional":true,"Links":[{"SourceID":36765,"TargetID":6754,"Directional":true},{"SourceID":36766,"TargetID":6753,"Directional":true}]},{"ID":8382,"SourceStructureID":5281,"TargetStructureID":516,"Label":"5281-516 via Conventional from 39199 -> 39200, 39260 -> 39259, 116591 -> 39259, 116592 -> 39200","Type":"Conventional","Directional":true,"Links":[{"SourceID":39199,"TargetID":39200,"Directional":true},{"SourceID":39260,"TargetID":39259,"Directional":true},{"SourceID":116591,"TargetID":39259,"Directional":true},{"SourceID":116592,"TargetID":39200,"Directional":true}]},{"ID":8383,"SourceStructureID":5281,"TargetStructureID":518,"Label":"5281-518 via Conventional from 36756 -> 36757, 36758 -> 36759, 36760 -> 36761","Type":"Conventional","Directional":true,"Links":[{"SourceID":36756,"TargetID":36757,"Directional":true},{"SourceID":36758,"TargetID":36759,"Directional":true},{"SourceID":36760,"TargetID":36761,"Directional":true}]},{"ID":8384,"SourceStructureID":5281,"TargetStructureID":606,"Label":"5281-606 via Conventional from 51280 -> 42517","Type":"Conventional","Directional":true,"Links":[{"SourceID":51280,"TargetID":42517,"Directional":true}]},{"ID":8385,"SourceStructureID":5281,"TargetStructureID":5485,"Label":"5281-5485 via Conventional from 36772 -> 36773","Type":"Conventional","Directional":true,"Links":[{"SourceID":36772,"TargetID":36773,"Directional":true}]},{"ID":8386,"SourceStructureID":5281,"TargetStructureID":6117,"Label":"5281-6117 via Conventional from 39282 -> 39283, 85970 -> 85971","Type":"Conventional","Directional":true,"Links":[{"SourceID":39282,"TargetID":39283,"Directional":true},{"SourceID":85970,"TargetID":85971,"Directional":true}]},{"ID":8387,"SourceStructureID":5281,"TargetStructureID":10625,"Label":"5281-10625 via Conventional from 39264 -> 39263","Type":"Conventional","Directional":true,"Links":[{"SourceID":39264,"TargetID":39263,"Directional":true}]},{"ID":8388,"SourceStructureID":5281,"TargetStructureID":10959,"Label":"5281-10959 via Conventional from 39272 -> 39271, 39274 -> 39273","Type":"Conventional","Directional":true,"Links":[{"SourceID":39272,"TargetID":39271,"Directional":true},{"SourceID":39274,"TargetID":39273,"Directional":true}]},{"ID":8389,"SourceStructureID":5281,"TargetStructureID":10960,"Label":"5281-10960 via Conventional from 39275 -> 39276","Type":"Conventional","Directional":true,"Links":[{"SourceID":39275,"TargetID":39276,"Directional":true}]},{"ID":8390,"SourceStructureID":5281,"TargetStructureID":15796,"Label":"5281-15796 via Conventional from 36769 -> 19831","Type":"Conventional","Directional":true,"Links":[{"SourceID":36769,"TargetID":19831,"Directional":true}]},{"ID":8391,"SourceStructureID":5281,"TargetStructureID":15977,"Label":"5281-15977 via Conventional from 36791 -> 33961","Type":"Conventional","Directional":true,"Links":[{"SourceID":36791,"TargetID":33961,"Directional":true}]},{"ID":8392,"SourceStructureID":5281,"TargetStructureID":29277,"Label":"5281-29277 via Conventional from 39269 -> 29286","Type":"Conventional","Directional":true,"Links":[{"SourceID":39269,"TargetID":29286,"Directional":true}]},{"ID":8393,"SourceStructureID":5281,"TargetStructureID":40991,"Label":"5281-40991 via Conventional from 39284 -> 40996","Type":"Conventional","Directional":true,"Links":[{"SourceID":39284,"TargetID":40996,"Directional":true}]},{"ID":8394,"SourceStructureID":5282,"TargetStructureID":909,"Label":"5282-909 via Conventional from 87556 -> 53739","Type":"Conventional","Directional":true,"Links":[{"SourceID":87556,"TargetID":53739,"Directional":true}]},{"ID":8395,"SourceStructureID":5282,"TargetStructureID":7129,"Label":"5282-7129 via Conventional from 87554 -> 87555","Type":"Conventional","Directional":true,"Links":[{"SourceID":87554,"TargetID":87555,"Directional":true}]},{"ID":8396,"SourceStructureID":5283,"TargetStructureID":3679,"Label":"5283-3679 via Ribbon Synapse from 124118 -> 132294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124118,"TargetID":132294,"Directional":true}]},{"ID":8397,"SourceStructureID":5283,"TargetStructureID":5350,"Label":"5283-5350 via Ribbon Synapse from 117748 -> 117749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117748,"TargetID":117749,"Directional":true}]},{"ID":8398,"SourceStructureID":5283,"TargetStructureID":8033,"Label":"5283-8033 via Ribbon Synapse from 80063 -> 18442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80063,"TargetID":18442,"Directional":true}]},{"ID":8399,"SourceStructureID":5283,"TargetStructureID":12208,"Label":"5283-12208 via Ribbon Synapse from 24047 -> 22367, 24048 -> 22367, 24051 -> 22367, 131706 -> 22367, 131707 -> 22367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24047,"TargetID":22367,"Directional":true},{"SourceID":24048,"TargetID":22367,"Directional":true},{"SourceID":24051,"TargetID":22367,"Directional":true},{"SourceID":131706,"TargetID":22367,"Directional":true},{"SourceID":131707,"TargetID":22367,"Directional":true}]},{"ID":8400,"SourceStructureID":5283,"TargetStructureID":20537,"Label":"5283-20537 via Cistern Pre from 24053 -> 24134","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":24053,"TargetID":24134,"Directional":true}]},{"ID":8401,"SourceStructureID":5283,"TargetStructureID":22554,"Label":"5283-22554 via Ribbon Synapse from 60882 -> 60883, 80165 -> 80169, 118742 -> 118743, 123819 -> 132121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60882,"TargetID":60883,"Directional":true},{"SourceID":80165,"TargetID":80169,"Directional":true},{"SourceID":118742,"TargetID":118743,"Directional":true},{"SourceID":123819,"TargetID":132121,"Directional":true}]},{"ID":8402,"SourceStructureID":5283,"TargetStructureID":32913,"Label":"5283-32913 via Ribbon Synapse from 28015 -> 38353, 28016 -> 38353, 28017 -> 38353, 28018 -> 38353, 28019 -> 38353","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28015,"TargetID":38353,"Directional":true},{"SourceID":28016,"TargetID":38353,"Directional":true},{"SourceID":28017,"TargetID":38353,"Directional":true},{"SourceID":28018,"TargetID":38353,"Directional":true},{"SourceID":28019,"TargetID":38353,"Directional":true}]},{"ID":8403,"SourceStructureID":5283,"TargetStructureID":33092,"Label":"5283-33092 via Ribbon Synapse from 22430 -> 132130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22430,"TargetID":132130,"Directional":true}]},{"ID":8404,"SourceStructureID":5283,"TargetStructureID":59422,"Label":"5283-59422 via Cistern Pre from 132094 -> 132095","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":132094,"TargetID":132095,"Directional":true}]},{"ID":8405,"SourceStructureID":5283,"TargetStructureID":61836,"Label":"5283-61836 via Ribbon Synapse from 28097 -> 69772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28097,"TargetID":69772,"Directional":true}]},{"ID":8406,"SourceStructureID":5283,"TargetStructureID":64371,"Label":"5283-64371 via Ribbon Synapse from 28105 -> 124036, 64376 -> 64374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28105,"TargetID":124036,"Directional":true},{"SourceID":64376,"TargetID":64374,"Directional":true}]},{"ID":8407,"SourceStructureID":5283,"TargetStructureID":65538,"Label":"5283-65538 via Ribbon Synapse from 28015 -> 65549, 28016 -> 65549, 28017 -> 65549, 28018 -> 65549, 28019 -> 65549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28015,"TargetID":65549,"Directional":true},{"SourceID":28016,"TargetID":65549,"Directional":true},{"SourceID":28017,"TargetID":65549,"Directional":true},{"SourceID":28018,"TargetID":65549,"Directional":true},{"SourceID":28019,"TargetID":65549,"Directional":true}]},{"ID":8408,"SourceStructureID":5283,"TargetStructureID":66303,"Label":"5283-66303 via Ribbon Synapse from 66311 -> 66312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66311,"TargetID":66312,"Directional":true}]},{"ID":8409,"SourceStructureID":5283,"TargetStructureID":66828,"Label":"5283-66828 via Ribbon Synapse from 80150 -> 82731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80150,"TargetID":82731,"Directional":true}]},{"ID":8410,"SourceStructureID":5283,"TargetStructureID":67361,"Label":"5283-67361 via Ribbon Synapse from 118740 -> 131712, 131680 -> 131681","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118740,"TargetID":131712,"Directional":true},{"SourceID":131680,"TargetID":131681,"Directional":true}]},{"ID":8411,"SourceStructureID":5283,"TargetStructureID":67973,"Label":"5283-67973 via Ribbon Synapse from 22429 -> 67977, 22430 -> 67977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22429,"TargetID":67977,"Directional":true},{"SourceID":22430,"TargetID":67977,"Directional":true}]},{"ID":8412,"SourceStructureID":5283,"TargetStructureID":68087,"Label":"5283-68087 via Ribbon Synapse from 80150 -> 68227","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80150,"TargetID":68227,"Directional":true}]},{"ID":8413,"SourceStructureID":5283,"TargetStructureID":68435,"Label":"5283-68435 via Ribbon Synapse from 79884 -> 68451, 80057 -> 68450, 132107 -> 68451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79884,"TargetID":68451,"Directional":true},{"SourceID":80057,"TargetID":68450,"Directional":true},{"SourceID":132107,"TargetID":68451,"Directional":true}]},{"ID":8414,"SourceStructureID":5283,"TargetStructureID":68453,"Label":"5283-68453 via Ribbon Synapse from 79889 -> 68458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79889,"TargetID":68458,"Directional":true}]},{"ID":8415,"SourceStructureID":5283,"TargetStructureID":68463,"Label":"5283-68463 via BC Conventional Synapse from 16141 -> 80406","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":16141,"TargetID":80406,"Directional":true}]},{"ID":8416,"SourceStructureID":5283,"TargetStructureID":68463,"Label":"5283-68463 via Ribbon Synapse from 79884 -> 132106, 132107 -> 132106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79884,"TargetID":132106,"Directional":true},{"SourceID":132107,"TargetID":132106,"Directional":true}]},{"ID":8417,"SourceStructureID":5283,"TargetStructureID":69773,"Label":"5283-69773 via Ribbon Synapse from 28097 -> 69774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28097,"TargetID":69774,"Directional":true}]},{"ID":8418,"SourceStructureID":5283,"TargetStructureID":71195,"Label":"5283-71195 via Ribbon Synapse from 124159 -> 132302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124159,"TargetID":132302,"Directional":true}]},{"ID":8419,"SourceStructureID":5283,"TargetStructureID":80074,"Label":"5283-80074 via BC Conventional Synapse from 80073 -> 80077","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80073,"TargetID":80077,"Directional":true}]},{"ID":8420,"SourceStructureID":5283,"TargetStructureID":80083,"Label":"5283-80083 via Ribbon Synapse from 80082 -> 80084","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80082,"TargetID":80084,"Directional":true}]},{"ID":8421,"SourceStructureID":5283,"TargetStructureID":80086,"Label":"5283-80086 via Ribbon Synapse from 80085 -> 80087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80085,"TargetID":80087,"Directional":true}]},{"ID":8422,"SourceStructureID":5283,"TargetStructureID":80123,"Label":"5283-80123 via Ribbon Synapse from 131699 -> 131698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131699,"TargetID":131698,"Directional":true}]},{"ID":8423,"SourceStructureID":5283,"TargetStructureID":80131,"Label":"5283-80131 via Ribbon Synapse from 80129 -> 132151, 132211 -> 132151, 132212 -> 132151","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80129,"TargetID":132151,"Directional":true},{"SourceID":132211,"TargetID":132151,"Directional":true},{"SourceID":132212,"TargetID":132151,"Directional":true}]},{"ID":8424,"SourceStructureID":5283,"TargetStructureID":80139,"Label":"5283-80139 via Ribbon Synapse from 132211 -> 132210, 132212 -> 132210","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132211,"TargetID":132210,"Directional":true},{"SourceID":132212,"TargetID":132210,"Directional":true}]},{"ID":8425,"SourceStructureID":5283,"TargetStructureID":80163,"Label":"5283-80163 via Ribbon Synapse from 123897 -> 80164, 123898 -> 131652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123897,"TargetID":80164,"Directional":true},{"SourceID":123898,"TargetID":131652,"Directional":true}]},{"ID":8426,"SourceStructureID":5283,"TargetStructureID":82307,"Label":"5283-82307 via Ribbon Synapse from 80103 -> 132149","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80103,"TargetID":132149,"Directional":true}]},{"ID":8427,"SourceStructureID":5283,"TargetStructureID":122829,"Label":"5283-122829 via Ribbon Synapse from 28100 -> 122879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28100,"TargetID":122879,"Directional":true}]},{"ID":8428,"SourceStructureID":5283,"TargetStructureID":131635,"Label":"5283-131635 via Ribbon Synapse from 22438 -> 131636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22438,"TargetID":131636,"Directional":true}]},{"ID":8429,"SourceStructureID":5283,"TargetStructureID":131638,"Label":"5283-131638 via Ribbon Synapse from 22436 -> 131640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22436,"TargetID":131640,"Directional":true}]},{"ID":8430,"SourceStructureID":5283,"TargetStructureID":131708,"Label":"5283-131708 via Ribbon Synapse from 118740 -> 131711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118740,"TargetID":131711,"Directional":true}]},{"ID":8431,"SourceStructureID":5283,"TargetStructureID":132038,"Label":"5283-132038 via Ribbon Synapse from 123377 -> 132039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123377,"TargetID":132039,"Directional":true}]},{"ID":8432,"SourceStructureID":5283,"TargetStructureID":132123,"Label":"5283-132123 via Ribbon Synapse from 124029 -> 132124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124029,"TargetID":132124,"Directional":true}]},{"ID":8433,"SourceStructureID":5283,"TargetStructureID":132135,"Label":"5283-132135 via Ribbon Synapse from 28062 -> 132136, 28063 -> 132136, 28064 -> 132136","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28062,"TargetID":132136,"Directional":true},{"SourceID":28063,"TargetID":132136,"Directional":true},{"SourceID":28064,"TargetID":132136,"Directional":true}]},{"ID":8434,"SourceStructureID":5283,"TargetStructureID":132162,"Label":"5283-132162 via Ribbon Synapse from 22459 -> 132166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22459,"TargetID":132166,"Directional":true}]},{"ID":8435,"SourceStructureID":5283,"TargetStructureID":132255,"Label":"5283-132255 via Ribbon Synapse from 132262 -> 132256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132262,"TargetID":132256,"Directional":true}]},{"ID":8436,"SourceStructureID":5283,"TargetStructureID":132257,"Label":"5283-132257 via Ribbon Synapse from 124012 -> 132258","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124012,"TargetID":132258,"Directional":true}]},{"ID":8437,"SourceStructureID":5283,"TargetStructureID":132259,"Label":"5283-132259 via Ribbon Synapse from 124012 -> 132260","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124012,"TargetID":132260,"Directional":true}]},{"ID":8438,"SourceStructureID":5284,"TargetStructureID":5107,"Label":"5284-5107 via Ribbon Synapse from 43706 -> 43691, 53427 -> 53428, 113584 -> 113585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43706,"TargetID":43691,"Directional":true},{"SourceID":53427,"TargetID":53428,"Directional":true},{"SourceID":113584,"TargetID":113585,"Directional":true}]},{"ID":8439,"SourceStructureID":5284,"TargetStructureID":5292,"Label":"5284-5292 via Adherens from 124681 -> 124683","Type":"Adherens","Directional":true,"Links":[{"SourceID":124681,"TargetID":124683,"Directional":true}]},{"ID":8440,"SourceStructureID":5284,"TargetStructureID":5442,"Label":"5284-5442 via Ribbon Synapse from 54341 -> 56698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54341,"TargetID":56698,"Directional":true}]},{"ID":8441,"SourceStructureID":5284,"TargetStructureID":7073,"Label":"5284-7073 via Ribbon Synapse from 112565 -> 112564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112565,"TargetID":112564,"Directional":true}]},{"ID":8442,"SourceStructureID":5284,"TargetStructureID":8033,"Label":"5284-8033 via Ribbon Synapse from 18441 -> 18438, 54375 -> 113203, 60845 -> 113357, 81526 -> 113648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18441,"TargetID":18438,"Directional":true},{"SourceID":54375,"TargetID":113203,"Directional":true},{"SourceID":60845,"TargetID":113357,"Directional":true},{"SourceID":81526,"TargetID":113648,"Directional":true}]},{"ID":8443,"SourceStructureID":5284,"TargetStructureID":8720,"Label":"5284-8720 via Ribbon Synapse from 54377 -> 127823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54377,"TargetID":127823,"Directional":true}]},{"ID":8444,"SourceStructureID":5284,"TargetStructureID":9769,"Label":"5284-9769 via Ribbon Synapse from 23465 -> 23466, 23926 -> 23924, 53406 -> 53405","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23465,"TargetID":23466,"Directional":true},{"SourceID":23926,"TargetID":23924,"Directional":true},{"SourceID":53406,"TargetID":53405,"Directional":true}]},{"ID":8445,"SourceStructureID":5284,"TargetStructureID":16073,"Label":"5284-16073 via Ribbon Synapse from 23463 -> 23462","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23463,"TargetID":23462,"Directional":true}]},{"ID":8446,"SourceStructureID":5284,"TargetStructureID":35367,"Label":"5284-35367 via Ribbon Synapse from 35379 -> 35378","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35379,"TargetID":35378,"Directional":true}]},{"ID":8447,"SourceStructureID":5284,"TargetStructureID":38379,"Label":"5284-38379 via BC Conventional Synapse from 113193 -> 124735","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":113193,"TargetID":124735,"Directional":true}]},{"ID":8448,"SourceStructureID":5284,"TargetStructureID":53202,"Label":"5284-53202 via Ribbon Synapse from 112799 -> 112801","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112799,"TargetID":112801,"Directional":true}]},{"ID":8449,"SourceStructureID":5284,"TargetStructureID":55132,"Label":"5284-55132 via Ribbon Synapse from 113066 -> 55133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113066,"TargetID":55133,"Directional":true}]},{"ID":8450,"SourceStructureID":5284,"TargetStructureID":55517,"Label":"5284-55517 via Ribbon Synapse from 49850 -> 55608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49850,"TargetID":55608,"Directional":true}]},{"ID":8451,"SourceStructureID":5284,"TargetStructureID":66165,"Label":"5284-66165 via Ribbon Synapse from 92852 -> 113272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92852,"TargetID":113272,"Directional":true}]},{"ID":8452,"SourceStructureID":5284,"TargetStructureID":67045,"Label":"5284-67045 via Ribbon Synapse from 53427 -> 81547","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53427,"TargetID":81547,"Directional":true}]},{"ID":8453,"SourceStructureID":5284,"TargetStructureID":67818,"Label":"5284-67818 via Ribbon Synapse from 67904 -> 67905","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67904,"TargetID":67905,"Directional":true}]},{"ID":8454,"SourceStructureID":5284,"TargetStructureID":67868,"Label":"5284-67868 via Ribbon Synapse from 67877 -> 67876","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67877,"TargetID":67876,"Directional":true}]},{"ID":8455,"SourceStructureID":5284,"TargetStructureID":68093,"Label":"5284-68093 via Ribbon Synapse from 68128 -> 68127, 68132 -> 68133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68128,"TargetID":68127,"Directional":true},{"SourceID":68132,"TargetID":68133,"Directional":true}]},{"ID":8456,"SourceStructureID":5284,"TargetStructureID":68135,"Label":"5284-68135 via Ribbon Synapse from 113594 -> 147971, 147970 -> 147969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113594,"TargetID":147971,"Directional":true},{"SourceID":147970,"TargetID":147969,"Directional":true}]},{"ID":8457,"SourceStructureID":5284,"TargetStructureID":68153,"Label":"5284-68153 via Ribbon Synapse from 68170 -> 68171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68170,"TargetID":68171,"Directional":true}]},{"ID":8458,"SourceStructureID":5284,"TargetStructureID":68198,"Label":"5284-68198 via Ribbon Synapse from 112873 -> 135757","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112873,"TargetID":135757,"Directional":true}]},{"ID":8459,"SourceStructureID":5284,"TargetStructureID":69162,"Label":"5284-69162 via Ribbon Synapse from 64608 -> 69176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64608,"TargetID":69176,"Directional":true}]},{"ID":8460,"SourceStructureID":5284,"TargetStructureID":70379,"Label":"5284-70379 via Ribbon Synapse from 70378 -> 70380, 113390 -> 113399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70378,"TargetID":70380,"Directional":true},{"SourceID":113390,"TargetID":113399,"Directional":true}]},{"ID":8461,"SourceStructureID":5284,"TargetStructureID":73521,"Label":"5284-73521 via Ribbon Synapse from 98155 -> 127693","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98155,"TargetID":127693,"Directional":true}]},{"ID":8462,"SourceStructureID":5284,"TargetStructureID":75713,"Label":"5284-75713 via Ribbon Synapse from 113381 -> 113382","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113381,"TargetID":113382,"Directional":true}]},{"ID":8463,"SourceStructureID":5284,"TargetStructureID":76811,"Label":"5284-76811 via Ribbon Synapse from 112926 -> 130279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112926,"TargetID":130279,"Directional":true}]},{"ID":8464,"SourceStructureID":5284,"TargetStructureID":81691,"Label":"5284-81691 via Ribbon Synapse from 56719 -> 113374","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56719,"TargetID":113374,"Directional":true}]},{"ID":8465,"SourceStructureID":5284,"TargetStructureID":92092,"Label":"5284-92092 via Ribbon Synapse from 112818 -> 112831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112818,"TargetID":112831,"Directional":true}]},{"ID":8466,"SourceStructureID":5284,"TargetStructureID":92865,"Label":"5284-92865 via Ribbon Synapse from 113540 -> 127688","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113540,"TargetID":127688,"Directional":true}]},{"ID":8467,"SourceStructureID":5284,"TargetStructureID":92872,"Label":"5284-92872 via Ribbon Synapse from 127697 -> 127698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127697,"TargetID":127698,"Directional":true}]},{"ID":8468,"SourceStructureID":5284,"TargetStructureID":104662,"Label":"5284-104662 via BC Conventional Synapse from 112592 -> 112591","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112592,"TargetID":112591,"Directional":true}]},{"ID":8469,"SourceStructureID":5284,"TargetStructureID":112819,"Label":"5284-112819 via Ribbon Synapse from 112818 -> 112820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112818,"TargetID":112820,"Directional":true}]},{"ID":8470,"SourceStructureID":5284,"TargetStructureID":112859,"Label":"5284-112859 via Ribbon Synapse from 67877 -> 112864, 112872 -> 127909","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67877,"TargetID":112864,"Directional":true},{"SourceID":112872,"TargetID":127909,"Directional":true}]},{"ID":8471,"SourceStructureID":5284,"TargetStructureID":113086,"Label":"5284-113086 via Ribbon Synapse from 64590 -> 113109, 64605 -> 113116","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64590,"TargetID":113109,"Directional":true},{"SourceID":64605,"TargetID":113116,"Directional":true}]},{"ID":8472,"SourceStructureID":5284,"TargetStructureID":113342,"Label":"5284-113342 via Ribbon Synapse from 35379 -> 113349, 54355 -> 113344","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35379,"TargetID":113349,"Directional":true},{"SourceID":54355,"TargetID":113344,"Directional":true}]},{"ID":8473,"SourceStructureID":5284,"TargetStructureID":117803,"Label":"5284-117803 via Ribbon Synapse from 53406 -> 127740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53406,"TargetID":127740,"Directional":true}]},{"ID":8474,"SourceStructureID":5284,"TargetStructureID":117892,"Label":"5284-117892 via Ribbon Synapse from 127883 -> 130259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127883,"TargetID":130259,"Directional":true}]},{"ID":8475,"SourceStructureID":5284,"TargetStructureID":118405,"Label":"5284-118405 via BC Conventional Synapse from 113600 -> 130302","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":113600,"TargetID":130302,"Directional":true}]},{"ID":8476,"SourceStructureID":5284,"TargetStructureID":120987,"Label":"5284-120987 via Cistern Pre from 113440 -> 120989","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":113440,"TargetID":120989,"Directional":true}]},{"ID":8477,"SourceStructureID":5284,"TargetStructureID":121044,"Label":"5284-121044 via Ribbon Synapse from 98157 -> 124617","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98157,"TargetID":124617,"Directional":true}]},{"ID":8478,"SourceStructureID":5284,"TargetStructureID":127897,"Label":"5284-127897 via Ribbon Synapse from 112795 -> 127898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112795,"TargetID":127898,"Directional":true}]},{"ID":8479,"SourceStructureID":5284,"TargetStructureID":134553,"Label":"5284-134553 via Ribbon Synapse from 127737 -> 127738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127737,"TargetID":127738,"Directional":true}]},{"ID":8480,"SourceStructureID":5285,"TargetStructureID":5150,"Label":"5285-5150 via Conventional from 5286 -> 5168, 5298 -> 5161","Type":"Conventional","Directional":true,"Links":[{"SourceID":5286,"TargetID":5168,"Directional":true},{"SourceID":5298,"TargetID":5161,"Directional":true}]},{"ID":8481,"SourceStructureID":5285,"TargetStructureID":46741,"Label":"5285-46741 via Conventional from 5291 -> 90189","Type":"Conventional","Directional":true,"Links":[{"SourceID":5291,"TargetID":90189,"Directional":true}]},{"ID":8482,"SourceStructureID":5292,"TargetStructureID":598,"Label":"5292-598 via Ribbon Synapse from 45606 -> 6322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45606,"TargetID":6322,"Directional":true}]},{"ID":8483,"SourceStructureID":5292,"TargetStructureID":606,"Label":"5292-606 via Ribbon Synapse from 51341 -> 51351, 51352 -> 51353, 51366 -> 51367, 59487 -> 59488","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51341,"TargetID":51351,"Directional":true},{"SourceID":51352,"TargetID":51353,"Directional":true},{"SourceID":51366,"TargetID":51367,"Directional":true},{"SourceID":59487,"TargetID":59488,"Directional":true}]},{"ID":8484,"SourceStructureID":5292,"TargetStructureID":5377,"Label":"5292-5377 via Ribbon Synapse from 87050 -> 87051","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87050,"TargetID":87051,"Directional":true}]},{"ID":8485,"SourceStructureID":5292,"TargetStructureID":5618,"Label":"5292-5618 via Ribbon Synapse from 49787 -> 65993","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49787,"TargetID":65993,"Directional":true}]},{"ID":8486,"SourceStructureID":5292,"TargetStructureID":9769,"Label":"5292-9769 via Ribbon Synapse from 23935 -> 23934, 53649 -> 54444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23935,"TargetID":23934,"Directional":true},{"SourceID":53649,"TargetID":54444,"Directional":true}]},{"ID":8487,"SourceStructureID":5292,"TargetStructureID":15796,"Label":"5292-15796 via Ribbon Synapse from 36006 -> 36004, 51556 -> 15841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36006,"TargetID":36004,"Directional":true},{"SourceID":51556,"TargetID":15841,"Directional":true}]},{"ID":8488,"SourceStructureID":5292,"TargetStructureID":35975,"Label":"5292-35975 via Ribbon Synapse from 36006 -> 36003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36006,"TargetID":36003,"Directional":true}]},{"ID":8489,"SourceStructureID":5292,"TargetStructureID":54078,"Label":"5292-54078 via Ribbon Synapse from 51578 -> 54082","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51578,"TargetID":54082,"Directional":true}]},{"ID":8490,"SourceStructureID":5292,"TargetStructureID":54261,"Label":"5292-54261 via Ribbon Synapse from 54258 -> 54262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54258,"TargetID":54262,"Directional":true}]},{"ID":8491,"SourceStructureID":5292,"TargetStructureID":55098,"Label":"5292-55098 via Ribbon Synapse from 55100 -> 55106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55100,"TargetID":55106,"Directional":true}]},{"ID":8492,"SourceStructureID":5292,"TargetStructureID":55517,"Label":"5292-55517 via Ribbon Synapse from 49833 -> 55605","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49833,"TargetID":55605,"Directional":true}]},{"ID":8493,"SourceStructureID":5292,"TargetStructureID":59482,"Label":"5292-59482 via Ribbon Synapse from 51366 -> 59484, 51542 -> 59483, 59487 -> 59486","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51366,"TargetID":59484,"Directional":true},{"SourceID":51542,"TargetID":59483,"Directional":true},{"SourceID":59487,"TargetID":59486,"Directional":true}]},{"ID":8494,"SourceStructureID":5292,"TargetStructureID":67868,"Label":"5292-67868 via Ribbon Synapse from 49839 -> 67878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49839,"TargetID":67878,"Directional":true}]},{"ID":8495,"SourceStructureID":5292,"TargetStructureID":68539,"Label":"5292-68539 via Ribbon Synapse from 51547 -> 84389, 70299 -> 70300, 70301 -> 70411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51547,"TargetID":84389,"Directional":true},{"SourceID":70299,"TargetID":70300,"Directional":true},{"SourceID":70301,"TargetID":70411,"Directional":true}]},{"ID":8496,"SourceStructureID":5292,"TargetStructureID":70331,"Label":"5292-70331 via Ribbon Synapse from 51579 -> 70333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51579,"TargetID":70333,"Directional":true}]},{"ID":8497,"SourceStructureID":5292,"TargetStructureID":70334,"Label":"5292-70334 via Ribbon Synapse from 51579 -> 70336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51579,"TargetID":70336,"Directional":true}]},{"ID":8498,"SourceStructureID":5292,"TargetStructureID":70454,"Label":"5292-70454 via Ribbon Synapse from 51547 -> 89565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51547,"TargetID":89565,"Directional":true}]},{"ID":8499,"SourceStructureID":5292,"TargetStructureID":87052,"Label":"5292-87052 via Ribbon Synapse from 87050 -> 87053","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87050,"TargetID":87053,"Directional":true}]},{"ID":8500,"SourceStructureID":5294,"TargetStructureID":579,"Label":"5294-579 via Conventional from 32322 -> 32320","Type":"Conventional","Directional":true,"Links":[{"SourceID":32322,"TargetID":32320,"Directional":true}]},{"ID":8501,"SourceStructureID":5294,"TargetStructureID":5562,"Label":"5294-5562 via Conventional from 32338 -> 32339","Type":"Conventional","Directional":true,"Links":[{"SourceID":32338,"TargetID":32339,"Directional":true}]},{"ID":8502,"SourceStructureID":5294,"TargetStructureID":5645,"Label":"5294-5645 via Conventional from 39474 -> 39490, 39493 -> 39494, 93040 -> 93041","Type":"Conventional","Directional":true,"Links":[{"SourceID":39474,"TargetID":39490,"Directional":true},{"SourceID":39493,"TargetID":39494,"Directional":true},{"SourceID":93040,"TargetID":93041,"Directional":true}]},{"ID":8503,"SourceStructureID":5294,"TargetStructureID":5650,"Label":"5294-5650 via Conventional from 39468 -> 39469","Type":"Conventional","Directional":true,"Links":[{"SourceID":39468,"TargetID":39469,"Directional":true}]},{"ID":8504,"SourceStructureID":5294,"TargetStructureID":7897,"Label":"5294-7897 via Conventional from 93047 -> 93048","Type":"Conventional","Directional":true,"Links":[{"SourceID":93047,"TargetID":93048,"Directional":true}]},{"ID":8505,"SourceStructureID":5294,"TargetStructureID":15796,"Label":"5294-15796 via Conventional from 93050 -> 93051","Type":"Conventional","Directional":true,"Links":[{"SourceID":93050,"TargetID":93051,"Directional":true}]},{"ID":8506,"SourceStructureID":5294,"TargetStructureID":92970,"Label":"5294-92970 via Conventional from 92969 -> 93034","Type":"Conventional","Directional":true,"Links":[{"SourceID":92969,"TargetID":93034,"Directional":true}]},{"ID":8507,"SourceStructureID":5294,"TargetStructureID":93053,"Label":"5294-93053 via Conventional from 39475 -> 93054","Type":"Conventional","Directional":true,"Links":[{"SourceID":39475,"TargetID":93054,"Directional":true}]},{"ID":8508,"SourceStructureID":5294,"TargetStructureID":93115,"Label":"5294-93115 via Conventional from 32328 -> 93116","Type":"Conventional","Directional":true,"Links":[{"SourceID":32328,"TargetID":93116,"Directional":true}]},{"ID":8509,"SourceStructureID":5295,"TargetStructureID":85629,"Label":"5295-85629 via Ribbon Synapse from 36401 -> 85829, 36403 -> 85827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36401,"TargetID":85829,"Directional":true},{"SourceID":36403,"TargetID":85827,"Directional":true}]},{"ID":8510,"SourceStructureID":5295,"TargetStructureID":85856,"Label":"5295-85856 via Ribbon Synapse from 85864 -> 85863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85864,"TargetID":85863,"Directional":true}]},{"ID":8511,"SourceStructureID":5297,"TargetStructureID":5405,"Label":"5297-5405 via Ribbon Synapse from 23430 -> 23429, 32225 -> 11183, 98469 -> 11187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23430,"TargetID":23429,"Directional":true},{"SourceID":32225,"TargetID":11183,"Directional":true},{"SourceID":98469,"TargetID":11187,"Directional":true}]},{"ID":8512,"SourceStructureID":5297,"TargetStructureID":5618,"Label":"5297-5618 via Ribbon Synapse from 56810 -> 66006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56810,"TargetID":66006,"Directional":true}]},{"ID":8513,"SourceStructureID":5297,"TargetStructureID":7134,"Label":"5297-7134 via Ribbon Synapse from 61483 -> 122178, 93271 -> 122221, 93276 -> 122224, 116488 -> 147934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61483,"TargetID":122178,"Directional":true},{"SourceID":93271,"TargetID":122221,"Directional":true},{"SourceID":93276,"TargetID":122224,"Directional":true},{"SourceID":116488,"TargetID":147934,"Directional":true}]},{"ID":8514,"SourceStructureID":5297,"TargetStructureID":8575,"Label":"5297-8575 via BC Conventional Synapse from 93339 -> 93340","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93339,"TargetID":93340,"Directional":true}]},{"ID":8515,"SourceStructureID":5297,"TargetStructureID":8575,"Label":"5297-8575 via Ribbon Synapse from 53671 -> 62270, 93388 -> 93391, 98134 -> 62823, 98257 -> 62817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53671,"TargetID":62270,"Directional":true},{"SourceID":93388,"TargetID":93391,"Directional":true},{"SourceID":98134,"TargetID":62823,"Directional":true},{"SourceID":98257,"TargetID":62817,"Directional":true}]},{"ID":8516,"SourceStructureID":5297,"TargetStructureID":9347,"Label":"5297-9347 via Ribbon Synapse from 53640 -> 93341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53640,"TargetID":93341,"Directional":true}]},{"ID":8517,"SourceStructureID":5297,"TargetStructureID":9769,"Label":"5297-9769 via Ribbon Synapse from 39422 -> 39423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39422,"TargetID":39423,"Directional":true}]},{"ID":8518,"SourceStructureID":5297,"TargetStructureID":13492,"Label":"5297-13492 via Ribbon Synapse from 37615 -> 37616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37615,"TargetID":37616,"Directional":true}]},{"ID":8519,"SourceStructureID":5297,"TargetStructureID":22974,"Label":"5297-22974 via BC Conventional Synapse from 116436 -> 134279","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":116436,"TargetID":134279,"Directional":true}]},{"ID":8520,"SourceStructureID":5297,"TargetStructureID":22974,"Label":"5297-22974 via Ribbon Synapse from 39431 -> 39432","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39431,"TargetID":39432,"Directional":true}]},{"ID":8521,"SourceStructureID":5297,"TargetStructureID":38379,"Label":"5297-38379 via Ribbon Synapse from 38384 -> 38383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38384,"TargetID":38383,"Directional":true}]},{"ID":8522,"SourceStructureID":5297,"TargetStructureID":54078,"Label":"5297-54078 via Ribbon Synapse from 54081 -> 54080, 116343 -> 134512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54081,"TargetID":54080,"Directional":true},{"SourceID":116343,"TargetID":134512,"Directional":true}]},{"ID":8523,"SourceStructureID":5297,"TargetStructureID":61450,"Label":"5297-61450 via BC Conventional Synapse from 116466 -> 61459","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":116466,"TargetID":61459,"Directional":true}]},{"ID":8524,"SourceStructureID":5297,"TargetStructureID":61450,"Label":"5297-61450 via Ribbon Synapse from 131395 -> 131396","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131395,"TargetID":131396,"Directional":true}]},{"ID":8525,"SourceStructureID":5297,"TargetStructureID":61823,"Label":"5297-61823 via Ribbon Synapse from 64620 -> 64621, 68580 -> 68639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64620,"TargetID":64621,"Directional":true},{"SourceID":68580,"TargetID":68639,"Directional":true}]},{"ID":8526,"SourceStructureID":5297,"TargetStructureID":62842,"Label":"5297-62842 via BC Conventional Synapse from 62845 -> 62844","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62845,"TargetID":62844,"Directional":true}]},{"ID":8527,"SourceStructureID":5297,"TargetStructureID":66111,"Label":"5297-66111 via Ribbon Synapse from 61349 -> 68592, 68593 -> 68592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61349,"TargetID":68592,"Directional":true},{"SourceID":68593,"TargetID":68592,"Directional":true}]},{"ID":8528,"SourceStructureID":5297,"TargetStructureID":66523,"Label":"5297-66523 via Ribbon Synapse from 75345 -> 75346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75345,"TargetID":75346,"Directional":true}]},{"ID":8529,"SourceStructureID":5297,"TargetStructureID":68539,"Label":"5297-68539 via Ribbon Synapse from 68575 -> 68574, 68580 -> 68581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68575,"TargetID":68574,"Directional":true},{"SourceID":68580,"TargetID":68581,"Directional":true}]},{"ID":8530,"SourceStructureID":5297,"TargetStructureID":75347,"Label":"5297-75347 via Ribbon Synapse from 75345 -> 75348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75345,"TargetID":75348,"Directional":true}]},{"ID":8531,"SourceStructureID":5297,"TargetStructureID":93318,"Label":"5297-93318 via Ribbon Synapse from 93317 -> 93319","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93317,"TargetID":93319,"Directional":true}]},{"ID":8532,"SourceStructureID":5297,"TargetStructureID":93325,"Label":"5297-93325 via Ribbon Synapse from 93331 -> 98463","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93331,"TargetID":98463,"Directional":true}]},{"ID":8533,"SourceStructureID":5297,"TargetStructureID":93327,"Label":"5297-93327 via Ribbon Synapse from 53661 -> 93328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53661,"TargetID":93328,"Directional":true}]},{"ID":8534,"SourceStructureID":5297,"TargetStructureID":93336,"Label":"5297-93336 via Ribbon Synapse from 53696 -> 93337","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53696,"TargetID":93337,"Directional":true}]},{"ID":8535,"SourceStructureID":5297,"TargetStructureID":93342,"Label":"5297-93342 via Ribbon Synapse from 53640 -> 93343","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53640,"TargetID":93343,"Directional":true}]},{"ID":8536,"SourceStructureID":5297,"TargetStructureID":93371,"Label":"5297-93371 via Ribbon Synapse from 93378 -> 93376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93378,"TargetID":93376,"Directional":true}]},{"ID":8537,"SourceStructureID":5297,"TargetStructureID":93373,"Label":"5297-93373 via Ribbon Synapse from 93378 -> 93375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93378,"TargetID":93375,"Directional":true}]},{"ID":8538,"SourceStructureID":5297,"TargetStructureID":93384,"Label":"5297-93384 via Ribbon Synapse from 53657 -> 93385","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53657,"TargetID":93385,"Directional":true}]},{"ID":8539,"SourceStructureID":5297,"TargetStructureID":98456,"Label":"5297-98456 via Ribbon Synapse from 93378 -> 98458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93378,"TargetID":98458,"Directional":true}]},{"ID":8540,"SourceStructureID":5297,"TargetStructureID":121070,"Label":"5297-121070 via BC Conventional Synapse from 98266 -> 134293","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98266,"TargetID":134293,"Directional":true}]},{"ID":8541,"SourceStructureID":5297,"TargetStructureID":121288,"Label":"5297-121288 via BC Conventional Synapse from 116355 -> 121290","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":116355,"TargetID":121290,"Directional":true}]},{"ID":8542,"SourceStructureID":5297,"TargetStructureID":121294,"Label":"5297-121294 via Ribbon Synapse from 116354 -> 121296","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116354,"TargetID":121296,"Directional":true}]},{"ID":8543,"SourceStructureID":5297,"TargetStructureID":121315,"Label":"5297-121315 via Ribbon Synapse from 113609 -> 121320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113609,"TargetID":121320,"Directional":true}]},{"ID":8544,"SourceStructureID":5303,"TargetStructureID":471,"Label":"5303-471 via Conventional from 32784 -> 32785","Type":"Conventional","Directional":true,"Links":[{"SourceID":32784,"TargetID":32785,"Directional":true}]},{"ID":8545,"SourceStructureID":5303,"TargetStructureID":476,"Label":"5303-476 via Conventional from 102991 -> 3212","Type":"Conventional","Directional":true,"Links":[{"SourceID":102991,"TargetID":3212,"Directional":true}]},{"ID":8546,"SourceStructureID":5303,"TargetStructureID":517,"Label":"5303-517 via Conventional from 35624 -> 14948","Type":"Conventional","Directional":true,"Links":[{"SourceID":35624,"TargetID":14948,"Directional":true}]},{"ID":8547,"SourceStructureID":5303,"TargetStructureID":519,"Label":"5303-519 via Conventional from 8743 -> 3598","Type":"Conventional","Directional":true,"Links":[{"SourceID":8743,"TargetID":3598,"Directional":true}]},{"ID":8548,"SourceStructureID":5303,"TargetStructureID":5017,"Label":"5303-5017 via Conventional from 102634 -> 5037","Type":"Conventional","Directional":true,"Links":[{"SourceID":102634,"TargetID":5037,"Directional":true}]},{"ID":8549,"SourceStructureID":5303,"TargetStructureID":5563,"Label":"5303-5563 via Conventional from 6180 -> 35650","Type":"Conventional","Directional":true,"Links":[{"SourceID":6180,"TargetID":35650,"Directional":true}]},{"ID":8550,"SourceStructureID":5303,"TargetStructureID":5592,"Label":"5303-5592 via Conventional from 35734 -> 36841","Type":"Conventional","Directional":true,"Links":[{"SourceID":35734,"TargetID":36841,"Directional":true}]},{"ID":8551,"SourceStructureID":5303,"TargetStructureID":6135,"Label":"5303-6135 via Conventional from 35638 -> 35639","Type":"Conventional","Directional":true,"Links":[{"SourceID":35638,"TargetID":35639,"Directional":true}]},{"ID":8552,"SourceStructureID":5303,"TargetStructureID":7054,"Label":"5303-7054 via Conventional from 30550 -> 30552","Type":"Conventional","Directional":true,"Links":[{"SourceID":30550,"TargetID":30552,"Directional":true}]},{"ID":8553,"SourceStructureID":5303,"TargetStructureID":10625,"Label":"5303-10625 via Conventional from 30523 -> 20760","Type":"Conventional","Directional":true,"Links":[{"SourceID":30523,"TargetID":20760,"Directional":true}]},{"ID":8554,"SourceStructureID":5303,"TargetStructureID":10826,"Label":"5303-10826 via Conventional from 6182 -> 11269","Type":"Conventional","Directional":true,"Links":[{"SourceID":6182,"TargetID":11269,"Directional":true}]},{"ID":8555,"SourceStructureID":5303,"TargetStructureID":10872,"Label":"5303-10872 via Conventional from 30565 -> 15748, 100700 -> 15750","Type":"Conventional","Directional":true,"Links":[{"SourceID":30565,"TargetID":15748,"Directional":true},{"SourceID":100700,"TargetID":15750,"Directional":true}]},{"ID":8556,"SourceStructureID":5303,"TargetStructureID":10897,"Label":"5303-10897 via Conventional from 35632 -> 35633, 35634 -> 35635, 102666 -> 102667","Type":"Conventional","Directional":true,"Links":[{"SourceID":35632,"TargetID":35633,"Directional":true},{"SourceID":35634,"TargetID":35635,"Directional":true},{"SourceID":102666,"TargetID":102667,"Directional":true}]},{"ID":8557,"SourceStructureID":5303,"TargetStructureID":10943,"Label":"5303-10943 via Conventional from 35627 -> 35628","Type":"Conventional","Directional":true,"Links":[{"SourceID":35627,"TargetID":35628,"Directional":true}]},{"ID":8558,"SourceStructureID":5303,"TargetStructureID":10953,"Label":"5303-10953 via Conventional from 24054 -> 33266","Type":"Conventional","Directional":true,"Links":[{"SourceID":24054,"TargetID":33266,"Directional":true}]},{"ID":8559,"SourceStructureID":5303,"TargetStructureID":10956,"Label":"5303-10956 via Conventional from 24061 -> 35652","Type":"Conventional","Directional":true,"Links":[{"SourceID":24061,"TargetID":35652,"Directional":true}]},{"ID":8560,"SourceStructureID":5303,"TargetStructureID":10961,"Label":"5303-10961 via Conventional from 24057 -> 33250","Type":"Conventional","Directional":true,"Links":[{"SourceID":24057,"TargetID":33250,"Directional":true}]},{"ID":8561,"SourceStructureID":5303,"TargetStructureID":11049,"Label":"5303-11049 via Conventional from 35594 -> 35595, 35602 -> 35603","Type":"Conventional","Directional":true,"Links":[{"SourceID":35594,"TargetID":35595,"Directional":true},{"SourceID":35602,"TargetID":35603,"Directional":true}]},{"ID":8562,"SourceStructureID":5303,"TargetStructureID":11085,"Label":"5303-11085 via Conventional from 24013 -> 24026","Type":"Conventional","Directional":true,"Links":[{"SourceID":24013,"TargetID":24026,"Directional":true}]},{"ID":8563,"SourceStructureID":5303,"TargetStructureID":11172,"Label":"5303-11172 via Conventional from 30554 -> 100698, 33000 -> 15700","Type":"Conventional","Directional":true,"Links":[{"SourceID":30554,"TargetID":100698,"Directional":true},{"SourceID":33000,"TargetID":15700,"Directional":true}]},{"ID":8564,"SourceStructureID":5303,"TargetStructureID":14615,"Label":"5303-14615 via Conventional from 6178 -> 35648, 6179 -> 35649, 64558 -> 64559","Type":"Conventional","Directional":true,"Links":[{"SourceID":6178,"TargetID":35648,"Directional":true},{"SourceID":6179,"TargetID":35649,"Directional":true},{"SourceID":64558,"TargetID":64559,"Directional":true}]},{"ID":8565,"SourceStructureID":5303,"TargetStructureID":15100,"Label":"5303-15100 via Conventional from 102939 -> 102940","Type":"Conventional","Directional":true,"Links":[{"SourceID":102939,"TargetID":102940,"Directional":true}]},{"ID":8566,"SourceStructureID":5325,"TargetStructureID":8575,"Label":"5325-8575 via Ribbon Synapse from 68755 -> 21634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68755,"TargetID":21634,"Directional":true}]},{"ID":8567,"SourceStructureID":5325,"TargetStructureID":40493,"Label":"5325-40493 via Ribbon Synapse from 36409 -> 40494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36409,"TargetID":40494,"Directional":true}]},{"ID":8568,"SourceStructureID":5325,"TargetStructureID":40495,"Label":"5325-40495 via BC Conventional Synapse from 36410 -> 40496","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":36410,"TargetID":40496,"Directional":true}]},{"ID":8569,"SourceStructureID":5325,"TargetStructureID":40498,"Label":"5325-40498 via Ribbon Synapse from 36408 -> 40499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36408,"TargetID":40499,"Directional":true}]},{"ID":8570,"SourceStructureID":5331,"TargetStructureID":5595,"Label":"5331-5595 via Conventional from 39185 -> 33622","Type":"Conventional","Directional":true,"Links":[{"SourceID":39185,"TargetID":33622,"Directional":true}]},{"ID":8571,"SourceStructureID":5331,"TargetStructureID":10625,"Label":"5331-10625 via Conventional from 39174 -> 26926, 39176 -> 39177","Type":"Conventional","Directional":true,"Links":[{"SourceID":39174,"TargetID":26926,"Directional":true},{"SourceID":39176,"TargetID":39177,"Directional":true}]},{"ID":8572,"SourceStructureID":5338,"TargetStructureID":8575,"Label":"5338-8575 via Conventional from 63004 -> 63002, 63006 -> 21647","Type":"Conventional","Directional":true,"Links":[{"SourceID":63004,"TargetID":63002,"Directional":true},{"SourceID":63006,"TargetID":21647,"Directional":true}]},{"ID":8573,"SourceStructureID":5345,"TargetStructureID":59229,"Label":"5345-59229 via Conventional from 59259 -> 59260","Type":"Conventional","Directional":true,"Links":[{"SourceID":59259,"TargetID":59260,"Directional":true}]},{"ID":8574,"SourceStructureID":5350,"TargetStructureID":6857,"Label":"5350-6857 via Conventional from 10635 -> 10636, 10660 -> 10661","Type":"Conventional","Directional":true,"Links":[{"SourceID":10635,"TargetID":10636,"Directional":true},{"SourceID":10660,"TargetID":10661,"Directional":true}]},{"ID":8575,"SourceStructureID":5351,"TargetStructureID":178,"Label":"5351-178 via Conventional from 24106 -> 3273","Type":"Conventional","Directional":true,"Links":[{"SourceID":24106,"TargetID":3273,"Directional":true}]},{"ID":8576,"SourceStructureID":5351,"TargetStructureID":5602,"Label":"5351-5602 via Conventional from 24081 -> 24104","Type":"Conventional","Directional":true,"Links":[{"SourceID":24081,"TargetID":24104,"Directional":true}]},{"ID":8577,"SourceStructureID":5351,"TargetStructureID":7073,"Label":"5351-7073 via Conventional from 24068 -> 24066","Type":"Conventional","Directional":true,"Links":[{"SourceID":24068,"TargetID":24066,"Directional":true}]},{"ID":8578,"SourceStructureID":5352,"TargetStructureID":5575,"Label":"5352-5575 via Conventional from 24118 -> 24117","Type":"Conventional","Directional":true,"Links":[{"SourceID":24118,"TargetID":24117,"Directional":true}]},{"ID":8579,"SourceStructureID":5355,"TargetStructureID":10963,"Label":"5355-10963 via Conventional from 5461 -> 136923","Type":"Conventional","Directional":true,"Links":[{"SourceID":5461,"TargetID":136923,"Directional":true}]},{"ID":8580,"SourceStructureID":5372,"TargetStructureID":906,"Label":"5372-906 via Conventional from 41076 -> 16627","Type":"Conventional","Directional":true,"Links":[{"SourceID":41076,"TargetID":16627,"Directional":true}]},{"ID":8581,"SourceStructureID":5377,"TargetStructureID":161,"Label":"5377-161 via Conventional from 22740 -> 22741, 87013 -> 22741","Type":"Conventional","Directional":true,"Links":[{"SourceID":22740,"TargetID":22741,"Directional":true},{"SourceID":87013,"TargetID":22741,"Directional":true}]},{"ID":8582,"SourceStructureID":5377,"TargetStructureID":173,"Label":"5377-173 via Conventional from 87063 -> 12019, 87083 -> 11999","Type":"Conventional","Directional":true,"Links":[{"SourceID":87063,"TargetID":12019,"Directional":true},{"SourceID":87083,"TargetID":11999,"Directional":true}]},{"ID":8583,"SourceStructureID":5377,"TargetStructureID":1637,"Label":"5377-1637 via Conventional from 22774 -> 22779","Type":"Conventional","Directional":true,"Links":[{"SourceID":22774,"TargetID":22779,"Directional":true}]},{"ID":8584,"SourceStructureID":5377,"TargetStructureID":5118,"Label":"5377-5118 via Conventional from 87024 -> 52227","Type":"Conventional","Directional":true,"Links":[{"SourceID":87024,"TargetID":52227,"Directional":true}]},{"ID":8585,"SourceStructureID":5377,"TargetStructureID":5279,"Label":"5377-5279 via Conventional from 22751 -> 119108, 98582 -> 98583","Type":"Conventional","Directional":true,"Links":[{"SourceID":22751,"TargetID":119108,"Directional":true},{"SourceID":98582,"TargetID":98583,"Directional":true}]},{"ID":8586,"SourceStructureID":5377,"TargetStructureID":5292,"Label":"5377-5292 via Conventional from 22738 -> 22739","Type":"Conventional","Directional":true,"Links":[{"SourceID":22738,"TargetID":22739,"Directional":true}]},{"ID":8587,"SourceStructureID":5377,"TargetStructureID":5530,"Label":"5377-5530 via Conventional from 87088 -> 42131","Type":"Conventional","Directional":true,"Links":[{"SourceID":87088,"TargetID":42131,"Directional":true}]},{"ID":8588,"SourceStructureID":5377,"TargetStructureID":5561,"Label":"5377-5561 via Conventional from 97747 -> 97746","Type":"Conventional","Directional":true,"Links":[{"SourceID":97747,"TargetID":97746,"Directional":true}]},{"ID":8589,"SourceStructureID":5377,"TargetStructureID":20136,"Label":"5377-20136 via Conventional from 87028 -> 87029","Type":"Conventional","Directional":true,"Links":[{"SourceID":87028,"TargetID":87029,"Directional":true}]},{"ID":8590,"SourceStructureID":5377,"TargetStructureID":58714,"Label":"5377-58714 via Conventional from 87086 -> 58734","Type":"Conventional","Directional":true,"Links":[{"SourceID":87086,"TargetID":58734,"Directional":true}]},{"ID":8591,"SourceStructureID":5377,"TargetStructureID":75583,"Label":"5377-75583 via Conventional from 22753 -> 75592","Type":"Conventional","Directional":true,"Links":[{"SourceID":22753,"TargetID":75592,"Directional":true}]},{"ID":8592,"SourceStructureID":5377,"TargetStructureID":80562,"Label":"5377-80562 via Conventional from 87089 -> 87092","Type":"Conventional","Directional":true,"Links":[{"SourceID":87089,"TargetID":87092,"Directional":true}]},{"ID":8593,"SourceStructureID":5377,"TargetStructureID":87020,"Label":"5377-87020 via Conventional from 87019 -> 87021","Type":"Conventional","Directional":true,"Links":[{"SourceID":87019,"TargetID":87021,"Directional":true}]},{"ID":8594,"SourceStructureID":5377,"TargetStructureID":87095,"Label":"5377-87095 via Conventional from 87094 -> 87096","Type":"Conventional","Directional":true,"Links":[{"SourceID":87094,"TargetID":87096,"Directional":true}]},{"ID":8595,"SourceStructureID":5377,"TargetStructureID":87098,"Label":"5377-87098 via Conventional from 87097 -> 87099","Type":"Conventional","Directional":true,"Links":[{"SourceID":87097,"TargetID":87099,"Directional":true}]},{"ID":8596,"SourceStructureID":5377,"TargetStructureID":88199,"Label":"5377-88199 via Conventional from 87044 -> 88237","Type":"Conventional","Directional":true,"Links":[{"SourceID":87044,"TargetID":88237,"Directional":true}]},{"ID":8597,"SourceStructureID":5382,"TargetStructureID":6857,"Label":"5382-6857 via Conventional from 59641 -> 7526","Type":"Conventional","Directional":true,"Links":[{"SourceID":59641,"TargetID":7526,"Directional":true}]},{"ID":8598,"SourceStructureID":5388,"TargetStructureID":6146,"Label":"5388-6146 via Conventional from 20215 -> 38097","Type":"Conventional","Directional":true,"Links":[{"SourceID":20215,"TargetID":38097,"Directional":true}]},{"ID":8599,"SourceStructureID":5390,"TargetStructureID":5916,"Label":"5390-5916 via Conventional from 55696 -> 37980","Type":"Conventional","Directional":true,"Links":[{"SourceID":55696,"TargetID":37980,"Directional":true}]},{"ID":8600,"SourceStructureID":5394,"TargetStructureID":518,"Label":"5394-518 via Conventional from 22811 -> 3384","Type":"Conventional","Directional":true,"Links":[{"SourceID":22811,"TargetID":3384,"Directional":true}]},{"ID":8601,"SourceStructureID":5394,"TargetStructureID":10931,"Label":"5394-10931 via Conventional from 77054 -> 77055, 77057 -> 77058","Type":"Conventional","Directional":true,"Links":[{"SourceID":77054,"TargetID":77055,"Directional":true},{"SourceID":77057,"TargetID":77058,"Directional":true}]},{"ID":8602,"SourceStructureID":5394,"TargetStructureID":10943,"Label":"5394-10943 via Conventional from 22808 -> 22809","Type":"Conventional","Directional":true,"Links":[{"SourceID":22808,"TargetID":22809,"Directional":true}]},{"ID":8603,"SourceStructureID":5394,"TargetStructureID":11031,"Label":"5394-11031 via Conventional from 77060 -> 77064, 77062 -> 25443, 77063 -> 25444","Type":"Conventional","Directional":true,"Links":[{"SourceID":77060,"TargetID":77064,"Directional":true},{"SourceID":77062,"TargetID":25443,"Directional":true},{"SourceID":77063,"TargetID":25444,"Directional":true}]},{"ID":8604,"SourceStructureID":5394,"TargetStructureID":14615,"Label":"5394-14615 via Conventional from 76804 -> 76805, 76817 -> 76818, 76819 -> 76820, 77101 -> 77102, 87951 -> 87952","Type":"Conventional","Directional":true,"Links":[{"SourceID":76804,"TargetID":76805,"Directional":true},{"SourceID":76817,"TargetID":76818,"Directional":true},{"SourceID":76819,"TargetID":76820,"Directional":true},{"SourceID":77101,"TargetID":77102,"Directional":true},{"SourceID":87951,"TargetID":87952,"Directional":true}]},{"ID":8605,"SourceStructureID":5396,"TargetStructureID":5565,"Label":"5396-5565 via Conventional from 89484 -> 53961","Type":"Conventional","Directional":true,"Links":[{"SourceID":89484,"TargetID":53961,"Directional":true}]},{"ID":8606,"SourceStructureID":5396,"TargetStructureID":89312,"Label":"5396-89312 via Conventional from 89454 -> 89315","Type":"Conventional","Directional":true,"Links":[{"SourceID":89454,"TargetID":89315,"Directional":true}]},{"ID":8607,"SourceStructureID":5402,"TargetStructureID":5563,"Label":"5402-5563 via Conventional from 129595 -> 129597, 129596 -> 129598, 129599 -> 129600, 129602 -> 129603","Type":"Conventional","Directional":true,"Links":[{"SourceID":129595,"TargetID":129597,"Directional":true},{"SourceID":129596,"TargetID":129598,"Directional":true},{"SourceID":129599,"TargetID":129600,"Directional":true},{"SourceID":129602,"TargetID":129603,"Directional":true}]},{"ID":8608,"SourceStructureID":5402,"TargetStructureID":10943,"Label":"5402-10943 via Conventional from 129551 -> 16255, 129553 -> 16257","Type":"Conventional","Directional":true,"Links":[{"SourceID":129551,"TargetID":16255,"Directional":true},{"SourceID":129553,"TargetID":16257,"Directional":true}]},{"ID":8609,"SourceStructureID":5402,"TargetStructureID":14615,"Label":"5402-14615 via Conventional from 76605 -> 76910, 76606 -> 76911","Type":"Conventional","Directional":true,"Links":[{"SourceID":76605,"TargetID":76910,"Directional":true},{"SourceID":76606,"TargetID":76911,"Directional":true}]},{"ID":8610,"SourceStructureID":5405,"TargetStructureID":909,"Label":"5405-909 via Conventional from 11176 -> 87035, 11182 -> 120110, 117424 -> 53733, 117658 -> 53761, 131033 -> 131031","Type":"Conventional","Directional":true,"Links":[{"SourceID":11176,"TargetID":87035,"Directional":true},{"SourceID":11182,"TargetID":120110,"Directional":true},{"SourceID":117424,"TargetID":53733,"Directional":true},{"SourceID":117658,"TargetID":53761,"Directional":true},{"SourceID":131033,"TargetID":131031,"Directional":true}]},{"ID":8611,"SourceStructureID":5405,"TargetStructureID":999,"Label":"5405-999 via Conventional from 23406 -> 23415, 23407 -> 23414","Type":"Conventional","Directional":true,"Links":[{"SourceID":23406,"TargetID":23415,"Directional":true},{"SourceID":23407,"TargetID":23414,"Directional":true}]},{"ID":8612,"SourceStructureID":5405,"TargetStructureID":3756,"Label":"5405-3756 via Conventional from 116247 -> 116246, 116259 -> 116258, 120469 -> 116238","Type":"Conventional","Directional":true,"Links":[{"SourceID":116247,"TargetID":116246,"Directional":true},{"SourceID":116259,"TargetID":116258,"Directional":true},{"SourceID":120469,"TargetID":116238,"Directional":true}]},{"ID":8613,"SourceStructureID":5405,"TargetStructureID":5297,"Label":"5405-5297 via Conventional from 11184 -> 32226, 23431 -> 23432, 116496 -> 116495","Type":"Conventional","Directional":true,"Links":[{"SourceID":11184,"TargetID":32226,"Directional":true},{"SourceID":23431,"TargetID":23432,"Directional":true},{"SourceID":116496,"TargetID":116495,"Directional":true}]},{"ID":8614,"SourceStructureID":5405,"TargetStructureID":5500,"Label":"5405-5500 via Conventional from 11171 -> 40071","Type":"Conventional","Directional":true,"Links":[{"SourceID":11171,"TargetID":40071,"Directional":true}]},{"ID":8615,"SourceStructureID":5405,"TargetStructureID":5501,"Label":"5405-5501 via Conventional from 42923 -> 110209, 42929 -> 110195, 42930 -> 115368","Type":"Conventional","Directional":true,"Links":[{"SourceID":42923,"TargetID":110209,"Directional":true},{"SourceID":42929,"TargetID":110195,"Directional":true},{"SourceID":42930,"TargetID":115368,"Directional":true}]},{"ID":8616,"SourceStructureID":5405,"TargetStructureID":5504,"Label":"5405-5504 via Conventional from 42934 -> 37894","Type":"Conventional","Directional":true,"Links":[{"SourceID":42934,"TargetID":37894,"Directional":true}]},{"ID":8617,"SourceStructureID":5405,"TargetStructureID":5561,"Label":"5405-5561 via Conventional from 42911 -> 46211","Type":"Conventional","Directional":true,"Links":[{"SourceID":42911,"TargetID":46211,"Directional":true}]},{"ID":8618,"SourceStructureID":5405,"TargetStructureID":5568,"Label":"5405-5568 via Conventional from 11146 -> 50338","Type":"Conventional","Directional":true,"Links":[{"SourceID":11146,"TargetID":50338,"Directional":true}]},{"ID":8619,"SourceStructureID":5405,"TargetStructureID":5648,"Label":"5405-5648 via Conventional from 11178 -> 23420","Type":"Conventional","Directional":true,"Links":[{"SourceID":11178,"TargetID":23420,"Directional":true}]},{"ID":8620,"SourceStructureID":5405,"TargetStructureID":6118,"Label":"5405-6118 via Conventional from 42939 -> 65674","Type":"Conventional","Directional":true,"Links":[{"SourceID":42939,"TargetID":65674,"Directional":true}]},{"ID":8621,"SourceStructureID":5405,"TargetStructureID":6121,"Label":"5405-6121 via Conventional from 11141 -> 30184, 42944 -> 52277","Type":"Conventional","Directional":true,"Links":[{"SourceID":11141,"TargetID":30184,"Directional":true},{"SourceID":42944,"TargetID":52277,"Directional":true}]},{"ID":8622,"SourceStructureID":5405,"TargetStructureID":18693,"Label":"5405-18693 via Conventional from 42908 -> 33807","Type":"Conventional","Directional":true,"Links":[{"SourceID":42908,"TargetID":33807,"Directional":true}]},{"ID":8623,"SourceStructureID":5405,"TargetStructureID":59392,"Label":"5405-59392 via Conventional from 11168 -> 59417","Type":"Conventional","Directional":true,"Links":[{"SourceID":11168,"TargetID":59417,"Directional":true}]},{"ID":8624,"SourceStructureID":5405,"TargetStructureID":85088,"Label":"5405-85088 via Conventional from 11165 -> 85089","Type":"Conventional","Directional":true,"Links":[{"SourceID":11165,"TargetID":85089,"Directional":true}]},{"ID":8625,"SourceStructureID":5405,"TargetStructureID":85119,"Label":"5405-85119 via Conventional from 42907 -> 85135","Type":"Conventional","Directional":true,"Links":[{"SourceID":42907,"TargetID":85135,"Directional":true}]},{"ID":8626,"SourceStructureID":5410,"TargetStructureID":330,"Label":"5410-330 via Cistern Pre from 82127 -> 38882","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":82127,"TargetID":38882,"Directional":true}]},{"ID":8627,"SourceStructureID":5410,"TargetStructureID":332,"Label":"5410-332 via Conventional from 82141 -> 82146, 82152 -> 97394","Type":"Conventional","Directional":true,"Links":[{"SourceID":82141,"TargetID":82146,"Directional":true},{"SourceID":82152,"TargetID":97394,"Directional":true}]},{"ID":8628,"SourceStructureID":5411,"TargetStructureID":184,"Label":"5411-184 via Conventional from 31764 -> 17364","Type":"Conventional","Directional":true,"Links":[{"SourceID":31764,"TargetID":17364,"Directional":true}]},{"ID":8629,"SourceStructureID":5411,"TargetStructureID":11244,"Label":"5411-11244 via Conventional from 31762 -> 31761","Type":"Conventional","Directional":true,"Links":[{"SourceID":31762,"TargetID":31761,"Directional":true}]},{"ID":8630,"SourceStructureID":5413,"TargetStructureID":7446,"Label":"5413-7446 via Conventional from 130915 -> 123028","Type":"Conventional","Directional":true,"Links":[{"SourceID":130915,"TargetID":123028,"Directional":true}]},{"ID":8631,"SourceStructureID":5413,"TargetStructureID":7461,"Label":"5413-7461 via Conventional from 41183 -> 41132","Type":"Conventional","Directional":true,"Links":[{"SourceID":41183,"TargetID":41132,"Directional":true}]},{"ID":8632,"SourceStructureID":5413,"TargetStructureID":38605,"Label":"5413-38605 via Conventional from 30436 -> 30439","Type":"Conventional","Directional":true,"Links":[{"SourceID":30436,"TargetID":30439,"Directional":true}]},{"ID":8633,"SourceStructureID":5423,"TargetStructureID":595,"Label":"5423-595 via Conventional from 92827 -> 92828","Type":"Conventional","Directional":true,"Links":[{"SourceID":92827,"TargetID":92828,"Directional":true}]},{"ID":8634,"SourceStructureID":5423,"TargetStructureID":5530,"Label":"5423-5530 via Conventional from 80465 -> 80466","Type":"Conventional","Directional":true,"Links":[{"SourceID":80465,"TargetID":80466,"Directional":true}]},{"ID":8635,"SourceStructureID":5435,"TargetStructureID":138,"Label":"5435-138 via Conventional from 41136 -> 46417","Type":"Conventional","Directional":true,"Links":[{"SourceID":41136,"TargetID":46417,"Directional":true}]},{"ID":8636,"SourceStructureID":5435,"TargetStructureID":142,"Label":"5435-142 via Cistern Pre from 147681 -> 147682","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":147681,"TargetID":147682,"Directional":true}]},{"ID":8637,"SourceStructureID":5435,"TargetStructureID":170,"Label":"5435-170 via Conventional from 89037 -> 89038, 89999 -> 90000","Type":"Conventional","Directional":true,"Links":[{"SourceID":89037,"TargetID":89038,"Directional":true},{"SourceID":89999,"TargetID":90000,"Directional":true}]},{"ID":8638,"SourceStructureID":5435,"TargetStructureID":173,"Label":"5435-173 via Conventional from 24346 -> 12040, 41174 -> 41175","Type":"Conventional","Directional":true,"Links":[{"SourceID":24346,"TargetID":12040,"Directional":true},{"SourceID":41174,"TargetID":41175,"Directional":true}]},{"ID":8639,"SourceStructureID":5435,"TargetStructureID":364,"Label":"5435-364 via Conventional from 32023 -> 32022, 32026 -> 32025, 41792 -> 120615","Type":"Conventional","Directional":true,"Links":[{"SourceID":32023,"TargetID":32022,"Directional":true},{"SourceID":32026,"TargetID":32025,"Directional":true},{"SourceID":41792,"TargetID":120615,"Directional":true}]},{"ID":8640,"SourceStructureID":5435,"TargetStructureID":595,"Label":"5435-595 via Conventional from 41147 -> 53505","Type":"Conventional","Directional":true,"Links":[{"SourceID":41147,"TargetID":53505,"Directional":true}]},{"ID":8641,"SourceStructureID":5435,"TargetStructureID":1724,"Label":"5435-1724 via Conventional from 119515 -> 119514","Type":"Conventional","Directional":true,"Links":[{"SourceID":119515,"TargetID":119514,"Directional":true}]},{"ID":8642,"SourceStructureID":5435,"TargetStructureID":4568,"Label":"5435-4568 via Conventional from 41099 -> 36318","Type":"Conventional","Directional":true,"Links":[{"SourceID":41099,"TargetID":36318,"Directional":true}]},{"ID":8643,"SourceStructureID":5435,"TargetStructureID":4569,"Label":"5435-4569 via Conventional from 41125 -> 4744","Type":"Conventional","Directional":true,"Links":[{"SourceID":41125,"TargetID":4744,"Directional":true}]},{"ID":8644,"SourceStructureID":5435,"TargetStructureID":4877,"Label":"5435-4877 via Conventional from 24358 -> 23963","Type":"Conventional","Directional":true,"Links":[{"SourceID":24358,"TargetID":23963,"Directional":true}]},{"ID":8645,"SourceStructureID":5435,"TargetStructureID":5427,"Label":"5435-5427 via Conventional from 41679 -> 129984","Type":"Conventional","Directional":true,"Links":[{"SourceID":41679,"TargetID":129984,"Directional":true}]},{"ID":8646,"SourceStructureID":5435,"TargetStructureID":5534,"Label":"5435-5534 via Conventional from 41153 -> 34629","Type":"Conventional","Directional":true,"Links":[{"SourceID":41153,"TargetID":34629,"Directional":true}]},{"ID":8647,"SourceStructureID":5435,"TargetStructureID":5601,"Label":"5435-5601 via Conventional from 24359 -> 127312, 24364 -> 127321","Type":"Conventional","Directional":true,"Links":[{"SourceID":24359,"TargetID":127312,"Directional":true},{"SourceID":24364,"TargetID":127321,"Directional":true}]},{"ID":8648,"SourceStructureID":5435,"TargetStructureID":11092,"Label":"5435-11092 via Conventional from 41152 -> 128635","Type":"Conventional","Directional":true,"Links":[{"SourceID":41152,"TargetID":128635,"Directional":true}]},{"ID":8649,"SourceStructureID":5435,"TargetStructureID":20136,"Label":"5435-20136 via Conventional from 41179 -> 135513","Type":"Conventional","Directional":true,"Links":[{"SourceID":41179,"TargetID":135513,"Directional":true}]},{"ID":8650,"SourceStructureID":5435,"TargetStructureID":59362,"Label":"5435-59362 via Conventional from 41259 -> 63794","Type":"Conventional","Directional":true,"Links":[{"SourceID":41259,"TargetID":63794,"Directional":true}]},{"ID":8651,"SourceStructureID":5435,"TargetStructureID":82743,"Label":"5435-82743 via Conventional from 41215 -> 82779","Type":"Conventional","Directional":true,"Links":[{"SourceID":41215,"TargetID":82779,"Directional":true}]},{"ID":8652,"SourceStructureID":5435,"TargetStructureID":85856,"Label":"5435-85856 via Cistern Pre from 85917 -> 85919","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":85917,"TargetID":85919,"Directional":true}]},{"ID":8653,"SourceStructureID":5435,"TargetStructureID":127846,"Label":"5435-127846 via Conventional from 41130 -> 127877","Type":"Conventional","Directional":true,"Links":[{"SourceID":41130,"TargetID":127877,"Directional":true}]},{"ID":8654,"SourceStructureID":5435,"TargetStructureID":131568,"Label":"5435-131568 via Conventional from 41738 -> 131587","Type":"Conventional","Directional":true,"Links":[{"SourceID":41738,"TargetID":131587,"Directional":true}]},{"ID":8655,"SourceStructureID":5436,"TargetStructureID":5453,"Label":"5436-5453 via Conventional from 23095 -> 18551","Type":"Conventional","Directional":true,"Links":[{"SourceID":23095,"TargetID":18551,"Directional":true}]},{"ID":8656,"SourceStructureID":5436,"TargetStructureID":5528,"Label":"5436-5528 via Conventional from 23092 -> 94269","Type":"Conventional","Directional":true,"Links":[{"SourceID":23092,"TargetID":94269,"Directional":true}]},{"ID":8657,"SourceStructureID":5436,"TargetStructureID":6129,"Label":"5436-6129 via Conventional from 23089 -> 23090","Type":"Conventional","Directional":true,"Links":[{"SourceID":23089,"TargetID":23090,"Directional":true}]},{"ID":8658,"SourceStructureID":5436,"TargetStructureID":7215,"Label":"5436-7215 via Conventional from 41603 -> 31578","Type":"Conventional","Directional":true,"Links":[{"SourceID":41603,"TargetID":31578,"Directional":true}]},{"ID":8659,"SourceStructureID":5436,"TargetStructureID":8575,"Label":"5436-8575 via Conventional from 61663 -> 61662","Type":"Conventional","Directional":true,"Links":[{"SourceID":61663,"TargetID":61662,"Directional":true}]},{"ID":8660,"SourceStructureID":5439,"TargetStructureID":166,"Label":"5439-166 via Conventional from 70807 -> 70808, 71457 -> 71458","Type":"Conventional","Directional":true,"Links":[{"SourceID":70807,"TargetID":70808,"Directional":true},{"SourceID":71457,"TargetID":71458,"Directional":true}]},{"ID":8661,"SourceStructureID":5439,"TargetStructureID":280,"Label":"5439-280 via Conventional from 85705 -> 85706","Type":"Conventional","Directional":true,"Links":[{"SourceID":85705,"TargetID":85706,"Directional":true}]},{"ID":8662,"SourceStructureID":5439,"TargetStructureID":332,"Label":"5439-332 via Conventional from 85675 -> 85676, 85677 -> 85678, 85688 -> 25207","Type":"Conventional","Directional":true,"Links":[{"SourceID":85675,"TargetID":85676,"Directional":true},{"SourceID":85677,"TargetID":85678,"Directional":true},{"SourceID":85688,"TargetID":25207,"Directional":true}]},{"ID":8663,"SourceStructureID":5439,"TargetStructureID":431,"Label":"5439-431 via Conventional from 98774 -> 119074","Type":"Conventional","Directional":true,"Links":[{"SourceID":98774,"TargetID":119074,"Directional":true}]},{"ID":8664,"SourceStructureID":5439,"TargetStructureID":5599,"Label":"5439-5599 via Conventional from 66594 -> 70669, 70636 -> 70638","Type":"Conventional","Directional":true,"Links":[{"SourceID":66594,"TargetID":70669,"Directional":true},{"SourceID":70636,"TargetID":70638,"Directional":true}]},{"ID":8665,"SourceStructureID":5439,"TargetStructureID":5635,"Label":"5439-5635 via Conventional from 66555 -> 55993, 66557 -> 66558, 66562 -> 55983, 66581 -> 28818, 70636 -> 70637","Type":"Conventional","Directional":true,"Links":[{"SourceID":66555,"TargetID":55993,"Directional":true},{"SourceID":66557,"TargetID":66558,"Directional":true},{"SourceID":66562,"TargetID":55983,"Directional":true},{"SourceID":66581,"TargetID":28818,"Directional":true},{"SourceID":70636,"TargetID":70637,"Directional":true}]},{"ID":8666,"SourceStructureID":5439,"TargetStructureID":5638,"Label":"5439-5638 via Conventional from 66545 -> 66255, 66611 -> 39126","Type":"Conventional","Directional":true,"Links":[{"SourceID":66545,"TargetID":66255,"Directional":true},{"SourceID":66611,"TargetID":39126,"Directional":true}]},{"ID":8667,"SourceStructureID":5439,"TargetStructureID":7568,"Label":"5439-7568 via Conventional from 85516 -> 27087","Type":"Conventional","Directional":true,"Links":[{"SourceID":85516,"TargetID":27087,"Directional":true}]},{"ID":8668,"SourceStructureID":5439,"TargetStructureID":10959,"Label":"5439-10959 via Conventional from 66572 -> 16374","Type":"Conventional","Directional":true,"Links":[{"SourceID":66572,"TargetID":16374,"Directional":true}]},{"ID":8669,"SourceStructureID":5439,"TargetStructureID":15977,"Label":"5439-15977 via Conventional from 66614 -> 70756","Type":"Conventional","Directional":true,"Links":[{"SourceID":66614,"TargetID":70756,"Directional":true}]},{"ID":8670,"SourceStructureID":5439,"TargetStructureID":29198,"Label":"5439-29198 via Conventional from 66554 -> 29226, 85589 -> 29209","Type":"Conventional","Directional":true,"Links":[{"SourceID":66554,"TargetID":29226,"Directional":true},{"SourceID":85589,"TargetID":29209,"Directional":true}]},{"ID":8671,"SourceStructureID":5439,"TargetStructureID":32608,"Label":"5439-32608 via Conventional from 85598 -> 85600","Type":"Conventional","Directional":true,"Links":[{"SourceID":85598,"TargetID":85600,"Directional":true}]},{"ID":8672,"SourceStructureID":5439,"TargetStructureID":56822,"Label":"5439-56822 via Conventional from 66561 -> 70569","Type":"Conventional","Directional":true,"Links":[{"SourceID":66561,"TargetID":70569,"Directional":true}]},{"ID":8673,"SourceStructureID":5439,"TargetStructureID":61816,"Label":"5439-61816 via Conventional from 80747 -> 80748","Type":"Conventional","Directional":true,"Links":[{"SourceID":80747,"TargetID":80748,"Directional":true}]},{"ID":8674,"SourceStructureID":5439,"TargetStructureID":70535,"Label":"5439-70535 via Cistern Pre from 66586 -> 70536","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":66586,"TargetID":70536,"Directional":true}]},{"ID":8675,"SourceStructureID":5439,"TargetStructureID":70557,"Label":"5439-70557 via Conventional from 66549 -> 70558","Type":"Conventional","Directional":true,"Links":[{"SourceID":66549,"TargetID":70558,"Directional":true}]},{"ID":8676,"SourceStructureID":5439,"TargetStructureID":70562,"Label":"5439-70562 via Conventional from 70561 -> 70564","Type":"Conventional","Directional":true,"Links":[{"SourceID":70561,"TargetID":70564,"Directional":true}]},{"ID":8677,"SourceStructureID":5439,"TargetStructureID":70572,"Label":"5439-70572 via Conventional from 66563 -> 70574","Type":"Conventional","Directional":true,"Links":[{"SourceID":66563,"TargetID":70574,"Directional":true}]},{"ID":8678,"SourceStructureID":5439,"TargetStructureID":70577,"Label":"5439-70577 via Conventional from 66570 -> 70578","Type":"Conventional","Directional":true,"Links":[{"SourceID":66570,"TargetID":70578,"Directional":true}]},{"ID":8679,"SourceStructureID":5439,"TargetStructureID":70610,"Label":"5439-70610 via Conventional from 70609 -> 70611","Type":"Conventional","Directional":true,"Links":[{"SourceID":70609,"TargetID":70611,"Directional":true}]},{"ID":8680,"SourceStructureID":5439,"TargetStructureID":70615,"Label":"5439-70615 via Conventional from 66579 -> 70616","Type":"Conventional","Directional":true,"Links":[{"SourceID":66579,"TargetID":70616,"Directional":true}]},{"ID":8681,"SourceStructureID":5439,"TargetStructureID":70618,"Label":"5439-70618 via Conventional from 70617 -> 70619","Type":"Conventional","Directional":true,"Links":[{"SourceID":70617,"TargetID":70619,"Directional":true}]},{"ID":8682,"SourceStructureID":5439,"TargetStructureID":70680,"Label":"5439-70680 via Conventional from 70679 -> 70681","Type":"Conventional","Directional":true,"Links":[{"SourceID":70679,"TargetID":70681,"Directional":true}]},{"ID":8683,"SourceStructureID":5439,"TargetStructureID":70768,"Label":"5439-70768 via Conventional from 66565 -> 70769","Type":"Conventional","Directional":true,"Links":[{"SourceID":66565,"TargetID":70769,"Directional":true}]},{"ID":8684,"SourceStructureID":5439,"TargetStructureID":70776,"Label":"5439-70776 via Conventional from 70568 -> 70777","Type":"Conventional","Directional":true,"Links":[{"SourceID":70568,"TargetID":70777,"Directional":true}]},{"ID":8685,"SourceStructureID":5439,"TargetStructureID":70780,"Label":"5439-70780 via Conventional from 70782 -> 70783","Type":"Conventional","Directional":true,"Links":[{"SourceID":70782,"TargetID":70783,"Directional":true}]},{"ID":8686,"SourceStructureID":5439,"TargetStructureID":70789,"Label":"5439-70789 via Conventional from 66574 -> 70790","Type":"Conventional","Directional":true,"Links":[{"SourceID":66574,"TargetID":70790,"Directional":true}]},{"ID":8687,"SourceStructureID":5439,"TargetStructureID":85634,"Label":"5439-85634 via Conventional from 85633 -> 85635","Type":"Conventional","Directional":true,"Links":[{"SourceID":85633,"TargetID":85635,"Directional":true}]},{"ID":8688,"SourceStructureID":5439,"TargetStructureID":85711,"Label":"5439-85711 via Conventional from 85710 -> 85718","Type":"Conventional","Directional":true,"Links":[{"SourceID":85710,"TargetID":85718,"Directional":true}]},{"ID":8689,"SourceStructureID":5439,"TargetStructureID":85722,"Label":"5439-85722 via Conventional from 85719 -> 85723","Type":"Conventional","Directional":true,"Links":[{"SourceID":85719,"TargetID":85723,"Directional":true}]},{"ID":8690,"SourceStructureID":5442,"TargetStructureID":5601,"Label":"5442-5601 via Cistern Pre from 124493 -> 124492","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":124493,"TargetID":124492,"Directional":true}]},{"ID":8691,"SourceStructureID":5451,"TargetStructureID":28950,"Label":"5451-28950 via Conventional from 44794 -> 44795, 44802 -> 28967","Type":"Conventional","Directional":true,"Links":[{"SourceID":44794,"TargetID":44795,"Directional":true},{"SourceID":44802,"TargetID":28967,"Directional":true}]},{"ID":8692,"SourceStructureID":5453,"TargetStructureID":440,"Label":"5453-440 via Conventional from 41728 -> 122532, 41729 -> 62005, 41730 -> 24453","Type":"Conventional","Directional":true,"Links":[{"SourceID":41728,"TargetID":122532,"Directional":true},{"SourceID":41729,"TargetID":62005,"Directional":true},{"SourceID":41730,"TargetID":24453,"Directional":true}]},{"ID":8693,"SourceStructureID":5453,"TargetStructureID":5531,"Label":"5453-5531 via Conventional from 41698 -> 41699, 41706 -> 62362","Type":"Conventional","Directional":true,"Links":[{"SourceID":41698,"TargetID":41699,"Directional":true},{"SourceID":41706,"TargetID":62362,"Directional":true}]},{"ID":8694,"SourceStructureID":5453,"TargetStructureID":5543,"Label":"5453-5543 via Conventional from 18564 -> 17028, 18665 -> 17098","Type":"Conventional","Directional":true,"Links":[{"SourceID":18564,"TargetID":17028,"Directional":true},{"SourceID":18665,"TargetID":17098,"Directional":true}]},{"ID":8695,"SourceStructureID":5453,"TargetStructureID":5545,"Label":"5453-5545 via Conventional from 28778 -> 128474","Type":"Conventional","Directional":true,"Links":[{"SourceID":28778,"TargetID":128474,"Directional":true}]},{"ID":8696,"SourceStructureID":5453,"TargetStructureID":5636,"Label":"5453-5636 via Conventional from 41712 -> 34710","Type":"Conventional","Directional":true,"Links":[{"SourceID":41712,"TargetID":34710,"Directional":true}]},{"ID":8697,"SourceStructureID":5453,"TargetStructureID":6129,"Label":"5453-6129 via Conventional from 18541 -> 38874, 18545 -> 38871, 18552 -> 18557","Type":"Conventional","Directional":true,"Links":[{"SourceID":18541,"TargetID":38874,"Directional":true},{"SourceID":18545,"TargetID":38871,"Directional":true},{"SourceID":18552,"TargetID":18557,"Directional":true}]},{"ID":8698,"SourceStructureID":5454,"TargetStructureID":330,"Label":"5454-330 via Conventional from 34242 -> 38690","Type":"Conventional","Directional":true,"Links":[{"SourceID":34242,"TargetID":38690,"Directional":true}]},{"ID":8699,"SourceStructureID":5454,"TargetStructureID":360,"Label":"5454-360 via Conventional from 34172 -> 26584","Type":"Conventional","Directional":true,"Links":[{"SourceID":34172,"TargetID":26584,"Directional":true}]},{"ID":8700,"SourceStructureID":5454,"TargetStructureID":3881,"Label":"5454-3881 via Conventional from 34205 -> 3895","Type":"Conventional","Directional":true,"Links":[{"SourceID":34205,"TargetID":3895,"Directional":true}]},{"ID":8701,"SourceStructureID":5454,"TargetStructureID":5536,"Label":"5454-5536 via Conventional from 34194 -> 22654","Type":"Conventional","Directional":true,"Links":[{"SourceID":34194,"TargetID":22654,"Directional":true}]},{"ID":8702,"SourceStructureID":5454,"TargetStructureID":5614,"Label":"5454-5614 via Conventional from 32461 -> 5620","Type":"Conventional","Directional":true,"Links":[{"SourceID":32461,"TargetID":5620,"Directional":true}]},{"ID":8703,"SourceStructureID":5454,"TargetStructureID":5635,"Label":"5454-5635 via Conventional from 34208 -> 28844","Type":"Conventional","Directional":true,"Links":[{"SourceID":34208,"TargetID":28844,"Directional":true}]},{"ID":8704,"SourceStructureID":5454,"TargetStructureID":8575,"Label":"5454-8575 via Conventional from 34214 -> 62327, 147397 -> 147398","Type":"Conventional","Directional":true,"Links":[{"SourceID":34214,"TargetID":62327,"Directional":true},{"SourceID":147397,"TargetID":147398,"Directional":true}]},{"ID":8705,"SourceStructureID":5454,"TargetStructureID":10840,"Label":"5454-10840 via Conventional from 34200 -> 33269","Type":"Conventional","Directional":true,"Links":[{"SourceID":34200,"TargetID":33269,"Directional":true}]},{"ID":8706,"SourceStructureID":5454,"TargetStructureID":25155,"Label":"5454-25155 via Conventional from 38438 -> 34640","Type":"Conventional","Directional":true,"Links":[{"SourceID":38438,"TargetID":34640,"Directional":true}]},{"ID":8707,"SourceStructureID":5456,"TargetStructureID":606,"Label":"5456-606 via Ribbon Synapse from 38164 -> 10564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38164,"TargetID":10564,"Directional":true}]},{"ID":8708,"SourceStructureID":5456,"TargetStructureID":8720,"Label":"5456-8720 via Ribbon Synapse from 38153 -> 63168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38153,"TargetID":63168,"Directional":true}]},{"ID":8709,"SourceStructureID":5457,"TargetStructureID":360,"Label":"5457-360 via Conventional from 87846 -> 26579, 87847 -> 87848","Type":"Conventional","Directional":true,"Links":[{"SourceID":87846,"TargetID":26579,"Directional":true},{"SourceID":87847,"TargetID":87848,"Directional":true}]},{"ID":8710,"SourceStructureID":5457,"TargetStructureID":5614,"Label":"5457-5614 via Conventional from 15355 -> 8734, 15356 -> 15357, 15359 -> 40810","Type":"Conventional","Directional":true,"Links":[{"SourceID":15355,"TargetID":8734,"Directional":true},{"SourceID":15356,"TargetID":15357,"Directional":true},{"SourceID":15359,"TargetID":40810,"Directional":true}]},{"ID":8711,"SourceStructureID":5464,"TargetStructureID":46521,"Label":"5464-46521 via Conventional from 46524 -> 46523","Type":"Conventional","Directional":true,"Links":[{"SourceID":46524,"TargetID":46523,"Directional":true}]},{"ID":8712,"SourceStructureID":5468,"TargetStructureID":606,"Label":"5468-606 via Ribbon Synapse from 38474 -> 51782, 38476 -> 51783, 48073 -> 48077, 48112 -> 48114, 51791 -> 51790, 51852 -> 51850","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38474,"TargetID":51782,"Directional":true},{"SourceID":38476,"TargetID":51783,"Directional":true},{"SourceID":48073,"TargetID":48077,"Directional":true},{"SourceID":48112,"TargetID":48114,"Directional":true},{"SourceID":51791,"TargetID":51790,"Directional":true},{"SourceID":51852,"TargetID":51850,"Directional":true}]},{"ID":8713,"SourceStructureID":5468,"TargetStructureID":5442,"Label":"5468-5442 via Ribbon Synapse from 55127 -> 55128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55127,"TargetID":55128,"Directional":true}]},{"ID":8714,"SourceStructureID":5468,"TargetStructureID":9769,"Label":"5468-9769 via Ribbon Synapse from 29967 -> 29966, 38476 -> 38475, 45698 -> 52857, 45702 -> 29970, 45705 -> 52856, 48300 -> 52855, 52879 -> 52880, 53121 -> 29963","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29967,"TargetID":29966,"Directional":true},{"SourceID":38476,"TargetID":38475,"Directional":true},{"SourceID":45698,"TargetID":52857,"Directional":true},{"SourceID":45702,"TargetID":29970,"Directional":true},{"SourceID":45705,"TargetID":52856,"Directional":true},{"SourceID":48300,"TargetID":52855,"Directional":true},{"SourceID":52879,"TargetID":52880,"Directional":true},{"SourceID":53121,"TargetID":29963,"Directional":true}]},{"ID":8715,"SourceStructureID":5468,"TargetStructureID":23870,"Label":"5468-23870 via Ribbon Synapse from 23879 -> 23873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23879,"TargetID":23873,"Directional":true}]},{"ID":8716,"SourceStructureID":5468,"TargetStructureID":33039,"Label":"5468-33039 via Ribbon Synapse from 33044 -> 33042, 33046 -> 33045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33044,"TargetID":33042,"Directional":true},{"SourceID":33046,"TargetID":33045,"Directional":true}]},{"ID":8717,"SourceStructureID":5468,"TargetStructureID":33057,"Label":"5468-33057 via BC Conventional Synapse from 48224 -> 48227","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":48224,"TargetID":48227,"Directional":true}]},{"ID":8718,"SourceStructureID":5468,"TargetStructureID":35811,"Label":"5468-35811 via Ribbon Synapse from 23876 -> 35879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23876,"TargetID":35879,"Directional":true}]},{"ID":8719,"SourceStructureID":5468,"TargetStructureID":74047,"Label":"5468-74047 via Ribbon Synapse from 48211 -> 74390, 55127 -> 74359, 74319 -> 74320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48211,"TargetID":74390,"Directional":true},{"SourceID":55127,"TargetID":74359,"Directional":true},{"SourceID":74319,"TargetID":74320,"Directional":true}]},{"ID":8720,"SourceStructureID":5468,"TargetStructureID":93067,"Label":"5468-93067 via Ribbon Synapse from 45728 -> 93068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45728,"TargetID":93068,"Directional":true}]},{"ID":8721,"SourceStructureID":5468,"TargetStructureID":93069,"Label":"5468-93069 via Ribbon Synapse from 45728 -> 93071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45728,"TargetID":93071,"Directional":true}]},{"ID":8722,"SourceStructureID":5468,"TargetStructureID":93072,"Label":"5468-93072 via Ribbon Synapse from 48229 -> 93079, 48230 -> 93073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48229,"TargetID":93079,"Directional":true},{"SourceID":48230,"TargetID":93073,"Directional":true}]},{"ID":8723,"SourceStructureID":5468,"TargetStructureID":93074,"Label":"5468-93074 via Ribbon Synapse from 23876 -> 93075","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23876,"TargetID":93075,"Directional":true}]},{"ID":8724,"SourceStructureID":5468,"TargetStructureID":93076,"Label":"5468-93076 via Ribbon Synapse from 23876 -> 93077","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23876,"TargetID":93077,"Directional":true}]},{"ID":8725,"SourceStructureID":5470,"TargetStructureID":7204,"Label":"5470-7204 via Conventional from 54692 -> 24344","Type":"Conventional","Directional":true,"Links":[{"SourceID":54692,"TargetID":24344,"Directional":true}]},{"ID":8726,"SourceStructureID":5470,"TargetStructureID":9769,"Label":"5470-9769 via Conventional from 54690 -> 23957","Type":"Conventional","Directional":true,"Links":[{"SourceID":54690,"TargetID":23957,"Directional":true}]},{"ID":8727,"SourceStructureID":5473,"TargetStructureID":5587,"Label":"5473-5587 via Conventional from 28956 -> 136555, 129034 -> 129033","Type":"Conventional","Directional":true,"Links":[{"SourceID":28956,"TargetID":136555,"Directional":true},{"SourceID":129034,"TargetID":129033,"Directional":true}]},{"ID":8728,"SourceStructureID":5473,"TargetStructureID":5640,"Label":"5473-5640 via Conventional from 37122 -> 37117","Type":"Conventional","Directional":true,"Links":[{"SourceID":37122,"TargetID":37117,"Directional":true}]},{"ID":8729,"SourceStructureID":5473,"TargetStructureID":28913,"Label":"5473-28913 via Conventional from 37123 -> 28944","Type":"Conventional","Directional":true,"Links":[{"SourceID":37123,"TargetID":28944,"Directional":true}]},{"ID":8730,"SourceStructureID":5473,"TargetStructureID":28950,"Label":"5473-28950 via Conventional from 23893 -> 84727, 28955 -> 28951","Type":"Conventional","Directional":true,"Links":[{"SourceID":23893,"TargetID":84727,"Directional":true},{"SourceID":28955,"TargetID":28951,"Directional":true}]},{"ID":8731,"SourceStructureID":5481,"TargetStructureID":60174,"Label":"5481-60174 via Cistern Pre from 60173 -> 60175","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":60173,"TargetID":60175,"Directional":true}]},{"ID":8732,"SourceStructureID":5481,"TargetStructureID":90177,"Label":"5481-90177 via Conventional from 90176 -> 90178","Type":"Conventional","Directional":true,"Links":[{"SourceID":90176,"TargetID":90178,"Directional":true}]},{"ID":8733,"SourceStructureID":5481,"TargetStructureID":90186,"Label":"5481-90186 via Conventional from 90185 -> 90187","Type":"Conventional","Directional":true,"Links":[{"SourceID":90185,"TargetID":90187,"Directional":true}]},{"ID":8734,"SourceStructureID":5481,"TargetStructureID":133757,"Label":"5481-133757 via Cistern Pre from 133760 -> 133761","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":133760,"TargetID":133761,"Directional":true}]},{"ID":8735,"SourceStructureID":5485,"TargetStructureID":5150,"Label":"5485-5150 via Conventional from 26965 -> 5157","Type":"Conventional","Directional":true,"Links":[{"SourceID":26965,"TargetID":5157,"Directional":true}]},{"ID":8736,"SourceStructureID":5485,"TargetStructureID":8575,"Label":"5485-8575 via Conventional from 62291 -> 62290","Type":"Conventional","Directional":true,"Links":[{"SourceID":62291,"TargetID":62290,"Directional":true}]},{"ID":8737,"SourceStructureID":5485,"TargetStructureID":34336,"Label":"5485-34336 via Conventional from 34366 -> 34365, 34370 -> 34369, 34392 -> 34391","Type":"Conventional","Directional":true,"Links":[{"SourceID":34366,"TargetID":34365,"Directional":true},{"SourceID":34370,"TargetID":34369,"Directional":true},{"SourceID":34392,"TargetID":34391,"Directional":true}]},{"ID":8738,"SourceStructureID":5485,"TargetStructureID":84830,"Label":"5485-84830 via Conventional from 84836 -> 84833","Type":"Conventional","Directional":true,"Links":[{"SourceID":84836,"TargetID":84833,"Directional":true}]},{"ID":8739,"SourceStructureID":5486,"TargetStructureID":8575,"Label":"5486-8575 via Conventional from 21140 -> 61723","Type":"Conventional","Directional":true,"Links":[{"SourceID":21140,"TargetID":61723,"Directional":true}]},{"ID":8740,"SourceStructureID":5486,"TargetStructureID":10959,"Label":"5486-10959 via Cistern Pre from 86723 -> 86725","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":86723,"TargetID":86725,"Directional":true}]},{"ID":8741,"SourceStructureID":5486,"TargetStructureID":137122,"Label":"5486-137122 via Conventional from 21152 -> 137180","Type":"Conventional","Directional":true,"Links":[{"SourceID":21152,"TargetID":137180,"Directional":true}]},{"ID":8742,"SourceStructureID":5487,"TargetStructureID":142,"Label":"5487-142 via Conventional from 91679 -> 50123","Type":"Conventional","Directional":true,"Links":[{"SourceID":91679,"TargetID":50123,"Directional":true}]},{"ID":8743,"SourceStructureID":5487,"TargetStructureID":469,"Label":"5487-469 via Conventional from 34563 -> 4656","Type":"Conventional","Directional":true,"Links":[{"SourceID":34563,"TargetID":4656,"Directional":true}]},{"ID":8744,"SourceStructureID":5487,"TargetStructureID":4570,"Label":"5487-4570 via Conventional from 34574 -> 24487","Type":"Conventional","Directional":true,"Links":[{"SourceID":34574,"TargetID":24487,"Directional":true}]},{"ID":8745,"SourceStructureID":5487,"TargetStructureID":5480,"Label":"5487-5480 via Cistern Pre from 87229 -> 87230","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":87229,"TargetID":87230,"Directional":true}]},{"ID":8746,"SourceStructureID":5487,"TargetStructureID":60798,"Label":"5487-60798 via Conventional from 34593 -> 60802","Type":"Conventional","Directional":true,"Links":[{"SourceID":34593,"TargetID":60802,"Directional":true}]},{"ID":8747,"SourceStructureID":5487,"TargetStructureID":129995,"Label":"5487-129995 via Conventional from 34588 -> 130001, 34588 -> 130002, 130000 -> 129998","Type":"Conventional","Directional":true,"Links":[{"SourceID":34588,"TargetID":130001,"Directional":true},{"SourceID":34588,"TargetID":130002,"Directional":true},{"SourceID":130000,"TargetID":129998,"Directional":true}]},{"ID":8748,"SourceStructureID":5489,"TargetStructureID":11222,"Label":"5489-11222 via Conventional from 37147 -> 11223","Type":"Conventional","Directional":true,"Links":[{"SourceID":37147,"TargetID":11223,"Directional":true}]},{"ID":8749,"SourceStructureID":5489,"TargetStructureID":16073,"Label":"5489-16073 via Conventional from 37148 -> 19871","Type":"Conventional","Directional":true,"Links":[{"SourceID":37148,"TargetID":19871,"Directional":true}]},{"ID":8750,"SourceStructureID":5489,"TargetStructureID":68497,"Label":"5489-68497 via Conventional from 81594 -> 81595","Type":"Conventional","Directional":true,"Links":[{"SourceID":81594,"TargetID":81595,"Directional":true}]},{"ID":8751,"SourceStructureID":5489,"TargetStructureID":128107,"Label":"5489-128107 via Conventional from 128112 -> 128113","Type":"Conventional","Directional":true,"Links":[{"SourceID":128112,"TargetID":128113,"Directional":true}]},{"ID":8752,"SourceStructureID":5491,"TargetStructureID":606,"Label":"5491-606 via Conventional from 45479 -> 53514","Type":"Conventional","Directional":true,"Links":[{"SourceID":45479,"TargetID":53514,"Directional":true}]},{"ID":8753,"SourceStructureID":5491,"TargetStructureID":7231,"Label":"5491-7231 via Conventional from 116958 -> 116957","Type":"Conventional","Directional":true,"Links":[{"SourceID":116958,"TargetID":116957,"Directional":true}]},{"ID":8754,"SourceStructureID":5491,"TargetStructureID":8575,"Label":"5491-8575 via Conventional from 62365 -> 62363, 62369 -> 62368","Type":"Conventional","Directional":true,"Links":[{"SourceID":62365,"TargetID":62363,"Directional":true},{"SourceID":62369,"TargetID":62368,"Directional":true}]},{"ID":8755,"SourceStructureID":5491,"TargetStructureID":8578,"Label":"5491-8578 via Conventional from 54671 -> 54672","Type":"Conventional","Directional":true,"Links":[{"SourceID":54671,"TargetID":54672,"Directional":true}]},{"ID":8756,"SourceStructureID":5491,"TargetStructureID":44346,"Label":"5491-44346 via Conventional from 44410 -> 44409","Type":"Conventional","Directional":true,"Links":[{"SourceID":44410,"TargetID":44409,"Directional":true}]},{"ID":8757,"SourceStructureID":5497,"TargetStructureID":909,"Label":"5497-909 via Conventional from 62559 -> 45939, 62596 -> 117468","Type":"Conventional","Directional":true,"Links":[{"SourceID":62559,"TargetID":45939,"Directional":true},{"SourceID":62596,"TargetID":117468,"Directional":true}]},{"ID":8758,"SourceStructureID":5497,"TargetStructureID":5500,"Label":"5497-5500 via Conventional from 62562 -> 62563, 62566 -> 62567","Type":"Conventional","Directional":true,"Links":[{"SourceID":62562,"TargetID":62563,"Directional":true},{"SourceID":62566,"TargetID":62567,"Directional":true}]},{"ID":8759,"SourceStructureID":5497,"TargetStructureID":8575,"Label":"5497-8575 via Conventional from 21735 -> 62449, 21745 -> 21744, 62543 -> 62544","Type":"Conventional","Directional":true,"Links":[{"SourceID":21735,"TargetID":62449,"Directional":true},{"SourceID":21745,"TargetID":21744,"Directional":true},{"SourceID":62543,"TargetID":62544,"Directional":true}]},{"ID":8760,"SourceStructureID":5497,"TargetStructureID":14293,"Label":"5497-14293 via Conventional from 62549 -> 40209","Type":"Conventional","Directional":true,"Links":[{"SourceID":62549,"TargetID":40209,"Directional":true}]},{"ID":8761,"SourceStructureID":5497,"TargetStructureID":19203,"Label":"5497-19203 via Conventional from 21740 -> 22890, 22941 -> 22920","Type":"Conventional","Directional":true,"Links":[{"SourceID":21740,"TargetID":22890,"Directional":true},{"SourceID":22941,"TargetID":22920,"Directional":true}]},{"ID":8762,"SourceStructureID":5497,"TargetStructureID":62500,"Label":"5497-62500 via Conventional from 62499 -> 62501","Type":"Conventional","Directional":true,"Links":[{"SourceID":62499,"TargetID":62501,"Directional":true}]},{"ID":8763,"SourceStructureID":5497,"TargetStructureID":62578,"Label":"5497-62578 via Conventional from 62577 -> 62579","Type":"Conventional","Directional":true,"Links":[{"SourceID":62577,"TargetID":62579,"Directional":true}]},{"ID":8764,"SourceStructureID":5498,"TargetStructureID":12192,"Label":"5498-12192 via Ribbon Synapse from 46617 -> 46618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46617,"TargetID":46618,"Directional":true}]},{"ID":8765,"SourceStructureID":5498,"TargetStructureID":84670,"Label":"5498-84670 via Ribbon Synapse from 59723 -> 84676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59723,"TargetID":84676,"Directional":true}]},{"ID":8766,"SourceStructureID":5498,"TargetStructureID":93125,"Label":"5498-93125 via BC Conventional Synapse from 93140 -> 93137","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93140,"TargetID":93137,"Directional":true}]},{"ID":8767,"SourceStructureID":5499,"TargetStructureID":606,"Label":"5499-606 via BC Conventional Synapse from 106639 -> 106638","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106639,"TargetID":106638,"Directional":true}]},{"ID":8768,"SourceStructureID":5499,"TargetStructureID":606,"Label":"5499-606 via Ribbon Synapse from 48514 -> 48515, 48531 -> 51611, 49658 -> 47318, 49659 -> 47319, 51612 -> 51613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48514,"TargetID":48515,"Directional":true},{"SourceID":48531,"TargetID":51611,"Directional":true},{"SourceID":49658,"TargetID":47318,"Directional":true},{"SourceID":49659,"TargetID":47319,"Directional":true},{"SourceID":51612,"TargetID":51613,"Directional":true}]},{"ID":8769,"SourceStructureID":5499,"TargetStructureID":5396,"Label":"5499-5396 via Ribbon Synapse from 40144 -> 40143","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40144,"TargetID":40143,"Directional":true}]},{"ID":8770,"SourceStructureID":5499,"TargetStructureID":7897,"Label":"5499-7897 via Ribbon Synapse from 55722 -> 55721","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55722,"TargetID":55721,"Directional":true}]},{"ID":8771,"SourceStructureID":5499,"TargetStructureID":22232,"Label":"5499-22232 via Ribbon Synapse from 40139 -> 68824, 49644 -> 105276, 95213 -> 68817, 96684 -> 96685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40139,"TargetID":68824,"Directional":true},{"SourceID":49644,"TargetID":105276,"Directional":true},{"SourceID":95213,"TargetID":68817,"Directional":true},{"SourceID":96684,"TargetID":96685,"Directional":true}]},{"ID":8772,"SourceStructureID":5499,"TargetStructureID":31161,"Label":"5499-31161 via Ribbon Synapse from 49664 -> 31220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49664,"TargetID":31220,"Directional":true}]},{"ID":8773,"SourceStructureID":5499,"TargetStructureID":55403,"Label":"5499-55403 via Ribbon Synapse from 49664 -> 55497, 55484 -> 55485, 55488 -> 55487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49664,"TargetID":55497,"Directional":true},{"SourceID":55484,"TargetID":55485,"Directional":true},{"SourceID":55488,"TargetID":55487,"Directional":true}]},{"ID":8774,"SourceStructureID":5499,"TargetStructureID":68539,"Label":"5499-68539 via Ribbon Synapse from 97896 -> 69091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97896,"TargetID":69091,"Directional":true}]},{"ID":8775,"SourceStructureID":5499,"TargetStructureID":78409,"Label":"5499-78409 via Ribbon Synapse from 106779 -> 106780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106779,"TargetID":106780,"Directional":true}]},{"ID":8776,"SourceStructureID":5499,"TargetStructureID":85730,"Label":"5499-85730 via Ribbon Synapse from 85743 -> 85742","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85743,"TargetID":85742,"Directional":true}]},{"ID":8777,"SourceStructureID":5499,"TargetStructureID":89571,"Label":"5499-89571 via Ribbon Synapse from 89574 -> 89572","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89574,"TargetID":89572,"Directional":true}]},{"ID":8778,"SourceStructureID":5499,"TargetStructureID":96676,"Label":"5499-96676 via BC Conventional Synapse from 96675 -> 96677","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96675,"TargetID":96677,"Directional":true}]},{"ID":8779,"SourceStructureID":5499,"TargetStructureID":96682,"Label":"5499-96682 via BC Conventional Synapse from 96681 -> 96683","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96681,"TargetID":96683,"Directional":true}]},{"ID":8780,"SourceStructureID":5499,"TargetStructureID":96688,"Label":"5499-96688 via Ribbon Synapse from 95216 -> 96689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95216,"TargetID":96689,"Directional":true}]},{"ID":8781,"SourceStructureID":5499,"TargetStructureID":96690,"Label":"5499-96690 via Ribbon Synapse from 95213 -> 96691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95213,"TargetID":96691,"Directional":true}]},{"ID":8782,"SourceStructureID":5499,"TargetStructureID":96695,"Label":"5499-96695 via Ribbon Synapse from 96692 -> 96696","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96692,"TargetID":96696,"Directional":true}]},{"ID":8783,"SourceStructureID":5499,"TargetStructureID":96703,"Label":"5499-96703 via Ribbon Synapse from 96702 -> 96704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96702,"TargetID":96704,"Directional":true}]},{"ID":8784,"SourceStructureID":5499,"TargetStructureID":96705,"Label":"5499-96705 via Ribbon Synapse from 87330 -> 96706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87330,"TargetID":96706,"Directional":true}]},{"ID":8785,"SourceStructureID":5499,"TargetStructureID":96708,"Label":"5499-96708 via Ribbon Synapse from 87330 -> 96709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87330,"TargetID":96709,"Directional":true}]},{"ID":8786,"SourceStructureID":5499,"TargetStructureID":96711,"Label":"5499-96711 via Ribbon Synapse from 87330 -> 96712","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87330,"TargetID":96712,"Directional":true}]},{"ID":8787,"SourceStructureID":5499,"TargetStructureID":96720,"Label":"5499-96720 via Ribbon Synapse from 96714 -> 96722","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96714,"TargetID":96722,"Directional":true}]},{"ID":8788,"SourceStructureID":5499,"TargetStructureID":96730,"Label":"5499-96730 via Ribbon Synapse from 96723 -> 96732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96723,"TargetID":96732,"Directional":true}]},{"ID":8789,"SourceStructureID":5499,"TargetStructureID":96733,"Label":"5499-96733 via Ribbon Synapse from 96723 -> 96735","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96723,"TargetID":96735,"Directional":true}]},{"ID":8790,"SourceStructureID":5499,"TargetStructureID":96738,"Label":"5499-96738 via Ribbon Synapse from 96724 -> 96739","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96724,"TargetID":96739,"Directional":true}]},{"ID":8791,"SourceStructureID":5499,"TargetStructureID":97171,"Label":"5499-97171 via Ribbon Synapse from 97179 -> 97185, 106670 -> 106671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97179,"TargetID":97185,"Directional":true},{"SourceID":106670,"TargetID":106671,"Directional":true}]},{"ID":8792,"SourceStructureID":5499,"TargetStructureID":105498,"Label":"5499-105498 via Ribbon Synapse from 105497 -> 105499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105497,"TargetID":105499,"Directional":true}]},{"ID":8793,"SourceStructureID":5499,"TargetStructureID":105506,"Label":"5499-105506 via Ribbon Synapse from 105505 -> 105508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105505,"TargetID":105508,"Directional":true}]},{"ID":8794,"SourceStructureID":5499,"TargetStructureID":105509,"Label":"5499-105509 via Ribbon Synapse from 105505 -> 105510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105505,"TargetID":105510,"Directional":true}]},{"ID":8795,"SourceStructureID":5499,"TargetStructureID":105521,"Label":"5499-105521 via Ribbon Synapse from 105523 -> 105524","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105523,"TargetID":105524,"Directional":true}]},{"ID":8796,"SourceStructureID":5499,"TargetStructureID":105526,"Label":"5499-105526 via Ribbon Synapse from 105518 -> 105529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105518,"TargetID":105529,"Directional":true}]},{"ID":8797,"SourceStructureID":5499,"TargetStructureID":106752,"Label":"5499-106752 via Ribbon Synapse from 40151 -> 106753","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40151,"TargetID":106753,"Directional":true}]},{"ID":8798,"SourceStructureID":5499,"TargetStructureID":108722,"Label":"5499-108722 via BC Conventional Synapse from 105782 -> 108723","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105782,"TargetID":108723,"Directional":true}]},{"ID":8799,"SourceStructureID":5499,"TargetStructureID":108727,"Label":"5499-108727 via Ribbon Synapse from 105741 -> 108728","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105741,"TargetID":108728,"Directional":true}]},{"ID":8800,"SourceStructureID":5499,"TargetStructureID":129927,"Label":"5499-129927 via Ribbon Synapse from 96692 -> 96694, 106891 -> 129944","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96692,"TargetID":96694,"Directional":true},{"SourceID":106891,"TargetID":129944,"Directional":true}]},{"ID":8801,"SourceStructureID":5500,"TargetStructureID":5405,"Label":"5500-5405 via Ribbon Synapse from 40070 -> 11170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40070,"TargetID":11170,"Directional":true}]},{"ID":8802,"SourceStructureID":5500,"TargetStructureID":5497,"Label":"5500-5497 via Ribbon Synapse from 36498 -> 62564, 59385 -> 62569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36498,"TargetID":62564,"Directional":true},{"SourceID":59385,"TargetID":62569,"Directional":true}]},{"ID":8803,"SourceStructureID":5500,"TargetStructureID":59333,"Label":"5500-59333 via Ribbon Synapse from 59358 -> 59361, 59359 -> 59360","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59358,"TargetID":59361,"Directional":true},{"SourceID":59359,"TargetID":59360,"Directional":true}]},{"ID":8804,"SourceStructureID":5500,"TargetStructureID":59371,"Label":"5500-59371 via Ribbon Synapse from 59373 -> 59372","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59373,"TargetID":59372,"Directional":true}]},{"ID":8805,"SourceStructureID":5500,"TargetStructureID":59389,"Label":"5500-59389 via Ribbon Synapse from 59388 -> 59390","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59388,"TargetID":59390,"Directional":true}]},{"ID":8806,"SourceStructureID":5500,"TargetStructureID":61450,"Label":"5500-61450 via BC Conventional Synapse from 61495 -> 61494","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61495,"TargetID":61494,"Directional":true}]},{"ID":8807,"SourceStructureID":5500,"TargetStructureID":85032,"Label":"5500-85032 via Ribbon Synapse from 59358 -> 85034, 85035 -> 85036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59358,"TargetID":85034,"Directional":true},{"SourceID":85035,"TargetID":85036,"Directional":true}]},{"ID":8808,"SourceStructureID":5501,"TargetStructureID":5107,"Label":"5501-5107 via Ribbon Synapse from 131432 -> 65004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131432,"TargetID":65004,"Directional":true}]},{"ID":8809,"SourceStructureID":5501,"TargetStructureID":5405,"Label":"5501-5405 via Ribbon Synapse from 60766 -> 42920, 110210 -> 110211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60766,"TargetID":42920,"Directional":true},{"SourceID":110210,"TargetID":110211,"Directional":true}]},{"ID":8810,"SourceStructureID":5501,"TargetStructureID":7134,"Label":"5501-7134 via Ribbon Synapse from 15775 -> 29650, 36570 -> 122193, 122458 -> 41656","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15775,"TargetID":29650,"Directional":true},{"SourceID":36570,"TargetID":122193,"Directional":true},{"SourceID":122458,"TargetID":41656,"Directional":true}]},{"ID":8811,"SourceStructureID":5501,"TargetStructureID":8575,"Label":"5501-8575 via Ribbon Synapse from 62952 -> 62951","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62952,"TargetID":62951,"Directional":true}]},{"ID":8812,"SourceStructureID":5501,"TargetStructureID":31024,"Label":"5501-31024 via BC Conventional Synapse from 110243 -> 110242","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110243,"TargetID":110242,"Directional":true}]},{"ID":8813,"SourceStructureID":5501,"TargetStructureID":68539,"Label":"5501-68539 via Ribbon Synapse from 60408 -> 69080, 114049 -> 114048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60408,"TargetID":69080,"Directional":true},{"SourceID":114049,"TargetID":114048,"Directional":true}]},{"ID":8814,"SourceStructureID":5501,"TargetStructureID":87342,"Label":"5501-87342 via Ribbon Synapse from 36553 -> 87393, 36558 -> 87398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36553,"TargetID":87393,"Directional":true},{"SourceID":36558,"TargetID":87398,"Directional":true}]},{"ID":8815,"SourceStructureID":5501,"TargetStructureID":87396,"Label":"5501-87396 via Ribbon Synapse from 36558 -> 87399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36558,"TargetID":87399,"Directional":true}]},{"ID":8816,"SourceStructureID":5501,"TargetStructureID":102793,"Label":"5501-102793 via Ribbon Synapse from 131435 -> 131436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131435,"TargetID":131436,"Directional":true}]},{"ID":8817,"SourceStructureID":5501,"TargetStructureID":106709,"Label":"5501-106709 via Ribbon Synapse from 110246 -> 110255, 110252 -> 110251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110246,"TargetID":110255,"Directional":true},{"SourceID":110252,"TargetID":110251,"Directional":true}]},{"ID":8818,"SourceStructureID":5501,"TargetStructureID":106732,"Label":"5501-106732 via Ribbon Synapse from 110256 -> 110257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110256,"TargetID":110257,"Directional":true}]},{"ID":8819,"SourceStructureID":5501,"TargetStructureID":108083,"Label":"5501-108083 via Ribbon Synapse from 110212 -> 110220, 110216 -> 110222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110212,"TargetID":110220,"Directional":true},{"SourceID":110216,"TargetID":110222,"Directional":true}]},{"ID":8820,"SourceStructureID":5501,"TargetStructureID":110064,"Label":"5501-110064 via Ribbon Synapse from 36578 -> 110065","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36578,"TargetID":110065,"Directional":true}]},{"ID":8821,"SourceStructureID":5502,"TargetStructureID":3679,"Label":"5502-3679 via Ribbon Synapse from 27254 -> 27255","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27254,"TargetID":27255,"Directional":true}]},{"ID":8822,"SourceStructureID":5502,"TargetStructureID":59229,"Label":"5502-59229 via Ribbon Synapse from 27283 -> 85577","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27283,"TargetID":85577,"Directional":true}]},{"ID":8823,"SourceStructureID":5502,"TargetStructureID":60657,"Label":"5502-60657 via Ribbon Synapse from 27243 -> 61448","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27243,"TargetID":61448,"Directional":true}]},{"ID":8824,"SourceStructureID":5503,"TargetStructureID":606,"Label":"5503-606 via Ribbon Synapse from 47378 -> 110424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47378,"TargetID":110424,"Directional":true}]},{"ID":8825,"SourceStructureID":5503,"TargetStructureID":5107,"Label":"5503-5107 via Ribbon Synapse from 24861 -> 24863, 65000 -> 64999, 110052 -> 110056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24861,"TargetID":24863,"Directional":true},{"SourceID":65000,"TargetID":64999,"Directional":true},{"SourceID":110052,"TargetID":110056,"Directional":true}]},{"ID":8826,"SourceStructureID":5503,"TargetStructureID":7897,"Label":"5503-7897 via Ribbon Synapse from 60667 -> 109891, 60690 -> 109714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60667,"TargetID":109891,"Directional":true},{"SourceID":60690,"TargetID":109714,"Directional":true}]},{"ID":8827,"SourceStructureID":5503,"TargetStructureID":8575,"Label":"5503-8575 via Ribbon Synapse from 60725 -> 62995","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60725,"TargetID":62995,"Directional":true}]},{"ID":8828,"SourceStructureID":5503,"TargetStructureID":16073,"Label":"5503-16073 via Ribbon Synapse from 36635 -> 108919","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36635,"TargetID":108919,"Directional":true}]},{"ID":8829,"SourceStructureID":5503,"TargetStructureID":52410,"Label":"5503-52410 via Ribbon Synapse from 52438 -> 52439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52438,"TargetID":52439,"Directional":true}]},{"ID":8830,"SourceStructureID":5503,"TargetStructureID":65002,"Label":"5503-65002 via Ribbon Synapse from 65001 -> 110006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65001,"TargetID":110006,"Directional":true}]},{"ID":8831,"SourceStructureID":5503,"TargetStructureID":87294,"Label":"5503-87294 via Ribbon Synapse from 52438 -> 108379, 108422 -> 108428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52438,"TargetID":108379,"Directional":true},{"SourceID":108422,"TargetID":108428,"Directional":true}]},{"ID":8832,"SourceStructureID":5503,"TargetStructureID":107374,"Label":"5503-107374 via Cistern Pre from 36624 -> 107375","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":36624,"TargetID":107375,"Directional":true}]},{"ID":8833,"SourceStructureID":5503,"TargetStructureID":107405,"Label":"5503-107405 via Cistern Pre from 107404 -> 107407","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":107404,"TargetID":107407,"Directional":true}]},{"ID":8834,"SourceStructureID":5503,"TargetStructureID":107414,"Label":"5503-107414 via Ribbon Synapse from 60728 -> 107426","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60728,"TargetID":107426,"Directional":true}]},{"ID":8835,"SourceStructureID":5503,"TargetStructureID":107463,"Label":"5503-107463 via Cistern Pre from 107462 -> 107465","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":107462,"TargetID":107465,"Directional":true}]},{"ID":8836,"SourceStructureID":5503,"TargetStructureID":107510,"Label":"5503-107510 via BC Conventional Synapse from 107509 -> 107522","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107509,"TargetID":107522,"Directional":true}]},{"ID":8837,"SourceStructureID":5503,"TargetStructureID":107525,"Label":"5503-107525 via Ribbon Synapse from 60707 -> 107959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60707,"TargetID":107959,"Directional":true}]},{"ID":8838,"SourceStructureID":5503,"TargetStructureID":107957,"Label":"5503-107957 via Ribbon Synapse from 60707 -> 107958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60707,"TargetID":107958,"Directional":true}]},{"ID":8839,"SourceStructureID":5503,"TargetStructureID":107964,"Label":"5503-107964 via BC Conventional Synapse from 107963 -> 107965","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107963,"TargetID":107965,"Directional":true}]},{"ID":8840,"SourceStructureID":5503,"TargetStructureID":107966,"Label":"5503-107966 via Ribbon Synapse from 60710 -> 107967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60710,"TargetID":107967,"Directional":true}]},{"ID":8841,"SourceStructureID":5503,"TargetStructureID":107968,"Label":"5503-107968 via Ribbon Synapse from 60710 -> 107969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60710,"TargetID":107969,"Directional":true}]},{"ID":8842,"SourceStructureID":5503,"TargetStructureID":108011,"Label":"5503-108011 via Ribbon Synapse from 60722 -> 108013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60722,"TargetID":108013,"Directional":true}]},{"ID":8843,"SourceStructureID":5503,"TargetStructureID":108032,"Label":"5503-108032 via BC Conventional Synapse from 108030 -> 108033","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108030,"TargetID":108033,"Directional":true}]},{"ID":8844,"SourceStructureID":5503,"TargetStructureID":108257,"Label":"5503-108257 via Ribbon Synapse from 37957 -> 108259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37957,"TargetID":108259,"Directional":true}]},{"ID":8845,"SourceStructureID":5503,"TargetStructureID":108260,"Label":"5503-108260 via Ribbon Synapse from 37957 -> 108261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37957,"TargetID":108261,"Directional":true}]},{"ID":8846,"SourceStructureID":5503,"TargetStructureID":108426,"Label":"5503-108426 via Ribbon Synapse from 108422 -> 108427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108422,"TargetID":108427,"Directional":true}]},{"ID":8847,"SourceStructureID":5503,"TargetStructureID":108464,"Label":"5503-108464 via BC Conventional Synapse from 108460 -> 108511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108460,"TargetID":108511,"Directional":true}]},{"ID":8848,"SourceStructureID":5503,"TargetStructureID":108464,"Label":"5503-108464 via Ribbon Synapse from 60633 -> 108683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60633,"TargetID":108683,"Directional":true}]},{"ID":8849,"SourceStructureID":5503,"TargetStructureID":108485,"Label":"5503-108485 via Ribbon Synapse from 60635 -> 108686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60635,"TargetID":108686,"Directional":true}]},{"ID":8850,"SourceStructureID":5503,"TargetStructureID":108569,"Label":"5503-108569 via Ribbon Synapse from 60632 -> 108570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60632,"TargetID":108570,"Directional":true}]},{"ID":8851,"SourceStructureID":5503,"TargetStructureID":108684,"Label":"5503-108684 via Ribbon Synapse from 60635 -> 108685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60635,"TargetID":108685,"Directional":true}]},{"ID":8852,"SourceStructureID":5503,"TargetStructureID":108771,"Label":"5503-108771 via Ribbon Synapse from 36634 -> 108772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36634,"TargetID":108772,"Directional":true}]},{"ID":8853,"SourceStructureID":5503,"TargetStructureID":108787,"Label":"5503-108787 via Ribbon Synapse from 36637 -> 108925","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36637,"TargetID":108925,"Directional":true}]},{"ID":8854,"SourceStructureID":5503,"TargetStructureID":108826,"Label":"5503-108826 via Ribbon Synapse from 36639 -> 108827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36639,"TargetID":108827,"Directional":true}]},{"ID":8855,"SourceStructureID":5503,"TargetStructureID":108831,"Label":"5503-108831 via Ribbon Synapse from 36639 -> 108838","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36639,"TargetID":108838,"Directional":true}]},{"ID":8856,"SourceStructureID":5503,"TargetStructureID":108839,"Label":"5503-108839 via Ribbon Synapse from 36641 -> 108841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36641,"TargetID":108841,"Directional":true}]},{"ID":8857,"SourceStructureID":5503,"TargetStructureID":108856,"Label":"5503-108856 via BC Conventional Synapse from 108852 -> 108864","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108852,"TargetID":108864,"Directional":true}]},{"ID":8858,"SourceStructureID":5503,"TargetStructureID":108871,"Label":"5503-108871 via Ribbon Synapse from 36648 -> 109961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36648,"TargetID":109961,"Directional":true}]},{"ID":8859,"SourceStructureID":5503,"TargetStructureID":108923,"Label":"5503-108923 via Ribbon Synapse from 36637 -> 108924","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36637,"TargetID":108924,"Directional":true}]},{"ID":8860,"SourceStructureID":5503,"TargetStructureID":109693,"Label":"5503-109693 via BC Conventional Synapse from 109690 -> 109701","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109690,"TargetID":109701,"Directional":true}]},{"ID":8861,"SourceStructureID":5503,"TargetStructureID":109703,"Label":"5503-109703 via Ribbon Synapse from 60691 -> 109705","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60691,"TargetID":109705,"Directional":true}]},{"ID":8862,"SourceStructureID":5503,"TargetStructureID":109706,"Label":"5503-109706 via Ribbon Synapse from 60691 -> 109707, 109744 -> 109745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60691,"TargetID":109707,"Directional":true},{"SourceID":109744,"TargetID":109745,"Directional":true}]},{"ID":8863,"SourceStructureID":5503,"TargetStructureID":109746,"Label":"5503-109746 via Ribbon Synapse from 109744 -> 109747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109744,"TargetID":109747,"Directional":true}]},{"ID":8864,"SourceStructureID":5503,"TargetStructureID":109804,"Label":"5503-109804 via Ribbon Synapse from 60667 -> 109869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60667,"TargetID":109869,"Directional":true}]},{"ID":8865,"SourceStructureID":5503,"TargetStructureID":109870,"Label":"5503-109870 via Ribbon Synapse from 60667 -> 109871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60667,"TargetID":109871,"Directional":true}]},{"ID":8866,"SourceStructureID":5503,"TargetStructureID":109872,"Label":"5503-109872 via Ribbon Synapse from 60667 -> 109888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60667,"TargetID":109888,"Directional":true}]},{"ID":8867,"SourceStructureID":5503,"TargetStructureID":109893,"Label":"5503-109893 via Ribbon Synapse from 60687 -> 109912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60687,"TargetID":109912,"Directional":true}]},{"ID":8868,"SourceStructureID":5503,"TargetStructureID":109913,"Label":"5503-109913 via Ribbon Synapse from 60673 -> 109919","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60673,"TargetID":109919,"Directional":true}]},{"ID":8869,"SourceStructureID":5503,"TargetStructureID":109920,"Label":"5503-109920 via Ribbon Synapse from 60673 -> 109921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60673,"TargetID":109921,"Directional":true}]},{"ID":8870,"SourceStructureID":5503,"TargetStructureID":109965,"Label":"5503-109965 via Ribbon Synapse from 36645 -> 109966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36645,"TargetID":109966,"Directional":true}]},{"ID":8871,"SourceStructureID":5503,"TargetStructureID":109967,"Label":"5503-109967 via Ribbon Synapse from 36644 -> 109968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36644,"TargetID":109968,"Directional":true}]},{"ID":8872,"SourceStructureID":5503,"TargetStructureID":109977,"Label":"5503-109977 via BC Conventional Synapse from 109976 -> 109978","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109976,"TargetID":109978,"Directional":true}]},{"ID":8873,"SourceStructureID":5503,"TargetStructureID":109980,"Label":"5503-109980 via Ribbon Synapse from 109983 -> 109985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109983,"TargetID":109985,"Directional":true}]},{"ID":8874,"SourceStructureID":5503,"TargetStructureID":109986,"Label":"5503-109986 via Ribbon Synapse from 109983 -> 109987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109983,"TargetID":109987,"Directional":true}]},{"ID":8875,"SourceStructureID":5503,"TargetStructureID":109994,"Label":"5503-109994 via BC Conventional Synapse from 109993 -> 109995","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109993,"TargetID":109995,"Directional":true}]},{"ID":8876,"SourceStructureID":5503,"TargetStructureID":110007,"Label":"5503-110007 via Ribbon Synapse from 65001 -> 110008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65001,"TargetID":110008,"Directional":true}]},{"ID":8877,"SourceStructureID":5503,"TargetStructureID":110013,"Label":"5503-110013 via BC Conventional Synapse from 110012 -> 110014","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110012,"TargetID":110014,"Directional":true}]},{"ID":8878,"SourceStructureID":5503,"TargetStructureID":110019,"Label":"5503-110019 via BC Conventional Synapse from 110021 -> 110020","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110021,"TargetID":110020,"Directional":true}]},{"ID":8879,"SourceStructureID":5503,"TargetStructureID":110043,"Label":"5503-110043 via BC Conventional Synapse from 110042 -> 110044","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110042,"TargetID":110044,"Directional":true}]},{"ID":8880,"SourceStructureID":5503,"TargetStructureID":110050,"Label":"5503-110050 via Ribbon Synapse from 24861 -> 110051","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24861,"TargetID":110051,"Directional":true}]},{"ID":8881,"SourceStructureID":5503,"TargetStructureID":110062,"Label":"5503-110062 via Ribbon Synapse from 110061 -> 110063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110061,"TargetID":110063,"Directional":true}]},{"ID":8882,"SourceStructureID":5503,"TargetStructureID":110066,"Label":"5503-110066 via Ribbon Synapse from 36583 -> 110093","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36583,"TargetID":110093,"Directional":true}]},{"ID":8883,"SourceStructureID":5503,"TargetStructureID":110072,"Label":"5503-110072 via Ribbon Synapse from 110085 -> 110086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110085,"TargetID":110086,"Directional":true}]},{"ID":8884,"SourceStructureID":5503,"TargetStructureID":110078,"Label":"5503-110078 via BC Conventional Synapse from 110077 -> 110079","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110077,"TargetID":110079,"Directional":true}]},{"ID":8885,"SourceStructureID":5503,"TargetStructureID":110087,"Label":"5503-110087 via Ribbon Synapse from 110085 -> 110088","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110085,"TargetID":110088,"Directional":true}]},{"ID":8886,"SourceStructureID":5503,"TargetStructureID":110097,"Label":"5503-110097 via Ribbon Synapse from 61321 -> 110098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61321,"TargetID":110098,"Directional":true}]},{"ID":8887,"SourceStructureID":5503,"TargetStructureID":110110,"Label":"5503-110110 via Ribbon Synapse from 110109 -> 110111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110109,"TargetID":110111,"Directional":true}]},{"ID":8888,"SourceStructureID":5503,"TargetStructureID":110112,"Label":"5503-110112 via Ribbon Synapse from 110109 -> 110117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110109,"TargetID":110117,"Directional":true}]},{"ID":8889,"SourceStructureID":5503,"TargetStructureID":110129,"Label":"5503-110129 via Ribbon Synapse from 110113 -> 110130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110113,"TargetID":110130,"Directional":true}]},{"ID":8890,"SourceStructureID":5503,"TargetStructureID":110131,"Label":"5503-110131 via Ribbon Synapse from 110113 -> 110132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110113,"TargetID":110132,"Directional":true}]},{"ID":8891,"SourceStructureID":5503,"TargetStructureID":110157,"Label":"5503-110157 via Ribbon Synapse from 110153 -> 110158","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110153,"TargetID":110158,"Directional":true}]},{"ID":8892,"SourceStructureID":5503,"TargetStructureID":110159,"Label":"5503-110159 via Ribbon Synapse from 110153 -> 110162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110153,"TargetID":110162,"Directional":true}]},{"ID":8893,"SourceStructureID":5503,"TargetStructureID":110164,"Label":"5503-110164 via Ribbon Synapse from 110163 -> 110165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110163,"TargetID":110165,"Directional":true}]},{"ID":8894,"SourceStructureID":5503,"TargetStructureID":110247,"Label":"5503-110247 via Ribbon Synapse from 110245 -> 110250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110245,"TargetID":110250,"Directional":true}]},{"ID":8895,"SourceStructureID":5503,"TargetStructureID":110248,"Label":"5503-110248 via Ribbon Synapse from 110245 -> 110249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110245,"TargetID":110249,"Directional":true}]},{"ID":8896,"SourceStructureID":5503,"TargetStructureID":110281,"Label":"5503-110281 via Ribbon Synapse from 36564 -> 110286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36564,"TargetID":110286,"Directional":true}]},{"ID":8897,"SourceStructureID":5503,"TargetStructureID":110282,"Label":"5503-110282 via Ribbon Synapse from 36564 -> 110285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36564,"TargetID":110285,"Directional":true}]},{"ID":8898,"SourceStructureID":5503,"TargetStructureID":110354,"Label":"5503-110354 via Ribbon Synapse from 110330 -> 110365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110330,"TargetID":110365,"Directional":true}]},{"ID":8899,"SourceStructureID":5503,"TargetStructureID":110360,"Label":"5503-110360 via Ribbon Synapse from 110330 -> 110363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110330,"TargetID":110363,"Directional":true}]},{"ID":8900,"SourceStructureID":5503,"TargetStructureID":110392,"Label":"5503-110392 via Ribbon Synapse from 110343 -> 110393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110343,"TargetID":110393,"Directional":true}]},{"ID":8901,"SourceStructureID":5503,"TargetStructureID":110403,"Label":"5503-110403 via Ribbon Synapse from 110400 -> 110405","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110400,"TargetID":110405,"Directional":true}]},{"ID":8902,"SourceStructureID":5503,"TargetStructureID":110406,"Label":"5503-110406 via Ribbon Synapse from 110400 -> 110407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110400,"TargetID":110407,"Directional":true}]},{"ID":8903,"SourceStructureID":5503,"TargetStructureID":110410,"Label":"5503-110410 via Ribbon Synapse from 110400 -> 110411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110400,"TargetID":110411,"Directional":true}]},{"ID":8904,"SourceStructureID":5503,"TargetStructureID":110444,"Label":"5503-110444 via BC Conventional Synapse from 110446 -> 110445","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110446,"TargetID":110445,"Directional":true}]},{"ID":8905,"SourceStructureID":5503,"TargetStructureID":110449,"Label":"5503-110449 via Ribbon Synapse from 60782 -> 110456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60782,"TargetID":110456,"Directional":true}]},{"ID":8906,"SourceStructureID":5503,"TargetStructureID":110457,"Label":"5503-110457 via Ribbon Synapse from 52806 -> 110458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52806,"TargetID":110458,"Directional":true}]},{"ID":8907,"SourceStructureID":5503,"TargetStructureID":110459,"Label":"5503-110459 via Ribbon Synapse from 52806 -> 110460","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52806,"TargetID":110460,"Directional":true}]},{"ID":8908,"SourceStructureID":5503,"TargetStructureID":110463,"Label":"5503-110463 via BC Conventional Synapse from 110462 -> 110464","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110462,"TargetID":110464,"Directional":true}]},{"ID":8909,"SourceStructureID":5503,"TargetStructureID":110477,"Label":"5503-110477 via Ribbon Synapse from 110461 -> 110478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110461,"TargetID":110478,"Directional":true}]},{"ID":8910,"SourceStructureID":5503,"TargetStructureID":110479,"Label":"5503-110479 via Ribbon Synapse from 110461 -> 110480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110461,"TargetID":110480,"Directional":true}]},{"ID":8911,"SourceStructureID":5503,"TargetStructureID":110488,"Label":"5503-110488 via BC Conventional Synapse from 110487 -> 110489","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110487,"TargetID":110489,"Directional":true}]},{"ID":8912,"SourceStructureID":5503,"TargetStructureID":110490,"Label":"5503-110490 via BC Conventional Synapse from 110486 -> 110491","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110486,"TargetID":110491,"Directional":true}]},{"ID":8913,"SourceStructureID":5503,"TargetStructureID":111474,"Label":"5503-111474 via Ribbon Synapse from 52438 -> 111475","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52438,"TargetID":111475,"Directional":true}]},{"ID":8914,"SourceStructureID":5504,"TargetStructureID":5405,"Label":"5504-5405 via Ribbon Synapse from 11121 -> 11122","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11121,"TargetID":11122,"Directional":true}]},{"ID":8915,"SourceStructureID":5504,"TargetStructureID":8035,"Label":"5504-8035 via Ribbon Synapse from 25014 -> 25018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25014,"TargetID":25018,"Directional":true}]},{"ID":8916,"SourceStructureID":5511,"TargetStructureID":1620,"Label":"5511-1620 via Ribbon Synapse from 17022 -> 16998, 17025 -> 17026, 21965 -> 16998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17022,"TargetID":16998,"Directional":true},{"SourceID":17025,"TargetID":17026,"Directional":true},{"SourceID":21965,"TargetID":16998,"Directional":true}]},{"ID":8917,"SourceStructureID":5511,"TargetStructureID":12897,"Label":"5511-12897 via Ribbon Synapse from 21972 -> 65175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21972,"TargetID":65175,"Directional":true}]},{"ID":8918,"SourceStructureID":5511,"TargetStructureID":20608,"Label":"5511-20608 via Ribbon Synapse from 20609 -> 20611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20609,"TargetID":20611,"Directional":true}]},{"ID":8919,"SourceStructureID":5513,"TargetStructureID":606,"Label":"5513-606 via Ribbon Synapse from 30666 -> 30667, 30668 -> 98784, 30670 -> 30671, 47580 -> 47581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30666,"TargetID":30667,"Directional":true},{"SourceID":30668,"TargetID":98784,"Directional":true},{"SourceID":30670,"TargetID":30671,"Directional":true},{"SourceID":47580,"TargetID":47581,"Directional":true}]},{"ID":8920,"SourceStructureID":5513,"TargetStructureID":911,"Label":"5513-911 via Ribbon Synapse from 35136 -> 35134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35136,"TargetID":35134,"Directional":true}]},{"ID":8921,"SourceStructureID":5513,"TargetStructureID":7594,"Label":"5513-7594 via Ribbon Synapse from 25123 -> 25122, 29590 -> 64855, 29603 -> 64853, 29604 -> 64854, 118216 -> 25118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25123,"TargetID":25122,"Directional":true},{"SourceID":29590,"TargetID":64855,"Directional":true},{"SourceID":29603,"TargetID":64853,"Directional":true},{"SourceID":29604,"TargetID":64854,"Directional":true},{"SourceID":118216,"TargetID":25118,"Directional":true}]},{"ID":8922,"SourceStructureID":5513,"TargetStructureID":9769,"Label":"5513-9769 via Ribbon Synapse from 12347 -> 12340, 46974 -> 12340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12347,"TargetID":12340,"Directional":true},{"SourceID":46974,"TargetID":12340,"Directional":true}]},{"ID":8923,"SourceStructureID":5513,"TargetStructureID":32862,"Label":"5513-32862 via Ribbon Synapse from 32870 -> 32869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32870,"TargetID":32869,"Directional":true}]},{"ID":8924,"SourceStructureID":5513,"TargetStructureID":33117,"Label":"5513-33117 via Ribbon Synapse from 29614 -> 33123, 33122 -> 33121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29614,"TargetID":33123,"Directional":true},{"SourceID":33122,"TargetID":33121,"Directional":true}]},{"ID":8925,"SourceStructureID":5513,"TargetStructureID":35138,"Label":"5513-35138 via Ribbon Synapse from 29625 -> 35141","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29625,"TargetID":35141,"Directional":true}]},{"ID":8926,"SourceStructureID":5513,"TargetStructureID":37466,"Label":"5513-37466 via Ribbon Synapse from 37469 -> 37468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37469,"TargetID":37468,"Directional":true}]},{"ID":8927,"SourceStructureID":5513,"TargetStructureID":87162,"Label":"5513-87162 via Ribbon Synapse from 87171 -> 87164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87171,"TargetID":87164,"Directional":true}]},{"ID":8928,"SourceStructureID":5513,"TargetStructureID":99513,"Label":"5513-99513 via Ribbon Synapse from 29612 -> 129631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29612,"TargetID":129631,"Directional":true}]},{"ID":8929,"SourceStructureID":5514,"TargetStructureID":18693,"Label":"5514-18693 via Ribbon Synapse from 121564 -> 121563","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121564,"TargetID":121563,"Directional":true}]},{"ID":8930,"SourceStructureID":5514,"TargetStructureID":55366,"Label":"5514-55366 via Ribbon Synapse from 55380 -> 55376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55380,"TargetID":55376,"Directional":true}]},{"ID":8931,"SourceStructureID":5514,"TargetStructureID":105635,"Label":"5514-105635 via Ribbon Synapse from 50698 -> 105637","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50698,"TargetID":105637,"Directional":true}]},{"ID":8932,"SourceStructureID":5515,"TargetStructureID":525,"Label":"5515-525 via Ribbon Synapse from 11333 -> 11332, 11391 -> 6246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11333,"TargetID":11332,"Directional":true},{"SourceID":11391,"TargetID":6246,"Directional":true}]},{"ID":8933,"SourceStructureID":5515,"TargetStructureID":8576,"Label":"5515-8576 via Ribbon Synapse from 11282 -> 69045, 69040 -> 69039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11282,"TargetID":69045,"Directional":true},{"SourceID":69040,"TargetID":69039,"Directional":true}]},{"ID":8934,"SourceStructureID":5515,"TargetStructureID":8720,"Label":"5515-8720 via Ribbon Synapse from 60110 -> 60108","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60110,"TargetID":60108,"Directional":true}]},{"ID":8935,"SourceStructureID":5515,"TargetStructureID":18282,"Label":"5515-18282 via Ribbon Synapse from 31441 -> 31440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31441,"TargetID":31440,"Directional":true}]},{"ID":8936,"SourceStructureID":5515,"TargetStructureID":40480,"Label":"5515-40480 via Ribbon Synapse from 56512 -> 59938","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56512,"TargetID":59938,"Directional":true}]},{"ID":8937,"SourceStructureID":5515,"TargetStructureID":66958,"Label":"5515-66958 via Ribbon Synapse from 70063 -> 70061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70063,"TargetID":70061,"Directional":true}]},{"ID":8938,"SourceStructureID":5515,"TargetStructureID":69049,"Label":"5515-69049 via Ribbon Synapse from 69053 -> 69052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69053,"TargetID":69052,"Directional":true}]},{"ID":8939,"SourceStructureID":5515,"TargetStructureID":132162,"Label":"5515-132162 via Ribbon Synapse from 132165 -> 132167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132165,"TargetID":132167,"Directional":true}]},{"ID":8940,"SourceStructureID":5515,"TargetStructureID":136742,"Label":"5515-136742 via BC Conventional Synapse from 119130 -> 136750","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119130,"TargetID":136750,"Directional":true}]},{"ID":8941,"SourceStructureID":5516,"TargetStructureID":5345,"Label":"5516-5345 via Ribbon Synapse from 50086 -> 88853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50086,"TargetID":88853,"Directional":true}]},{"ID":8942,"SourceStructureID":5516,"TargetStructureID":7594,"Label":"5516-7594 via Ribbon Synapse from 50031 -> 7669, 50078 -> 7671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50031,"TargetID":7669,"Directional":true},{"SourceID":50078,"TargetID":7671,"Directional":true}]},{"ID":8943,"SourceStructureID":5516,"TargetStructureID":9769,"Label":"5516-9769 via Ribbon Synapse from 148194 -> 148195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148194,"TargetID":148195,"Directional":true}]},{"ID":8944,"SourceStructureID":5516,"TargetStructureID":40018,"Label":"5516-40018 via Ribbon Synapse from 40028 -> 40027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40028,"TargetID":40027,"Directional":true}]},{"ID":8945,"SourceStructureID":5516,"TargetStructureID":68153,"Label":"5516-68153 via Ribbon Synapse from 50112 -> 70155, 50113 -> 96580, 70167 -> 70161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50112,"TargetID":70155,"Directional":true},{"SourceID":50113,"TargetID":96580,"Directional":true},{"SourceID":70167,"TargetID":70161,"Directional":true}]},{"ID":8946,"SourceStructureID":5516,"TargetStructureID":69162,"Label":"5516-69162 via Ribbon Synapse from 50113 -> 96581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50113,"TargetID":96581,"Directional":true}]},{"ID":8947,"SourceStructureID":5517,"TargetStructureID":598,"Label":"5517-598 via Ribbon Synapse from 49371 -> 6319","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49371,"TargetID":6319,"Directional":true}]},{"ID":8948,"SourceStructureID":5517,"TargetStructureID":1610,"Label":"5517-1610 via Ribbon Synapse from 96074 -> 96075","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96074,"TargetID":96075,"Directional":true}]},{"ID":8949,"SourceStructureID":5517,"TargetStructureID":5509,"Label":"5517-5509 via Ribbon Synapse from 49404 -> 122392, 49405 -> 121911","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49404,"TargetID":122392,"Directional":true},{"SourceID":49405,"TargetID":121911,"Directional":true}]},{"ID":8950,"SourceStructureID":5517,"TargetStructureID":7594,"Label":"5517-7594 via Ribbon Synapse from 25105 -> 25103, 96065 -> 25115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25105,"TargetID":25103,"Directional":true},{"SourceID":96065,"TargetID":25115,"Directional":true}]},{"ID":8951,"SourceStructureID":5517,"TargetStructureID":18693,"Label":"5517-18693 via Ribbon Synapse from 18703 -> 18702, 23502 -> 23503, 96081 -> 96533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18703,"TargetID":18702,"Directional":true},{"SourceID":23502,"TargetID":23503,"Directional":true},{"SourceID":96081,"TargetID":96533,"Directional":true}]},{"ID":8952,"SourceStructureID":5517,"TargetStructureID":30567,"Label":"5517-30567 via Ribbon Synapse from 30659 -> 30658","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30659,"TargetID":30658,"Directional":true}]},{"ID":8953,"SourceStructureID":5517,"TargetStructureID":40018,"Label":"5517-40018 via Ribbon Synapse from 40021 -> 40020, 40025 -> 40024","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40021,"TargetID":40020,"Directional":true},{"SourceID":40025,"TargetID":40024,"Directional":true}]},{"ID":8954,"SourceStructureID":5517,"TargetStructureID":53344,"Label":"5517-53344 via Ribbon Synapse from 53343 -> 53345","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53343,"TargetID":53345,"Directional":true}]},{"ID":8955,"SourceStructureID":5517,"TargetStructureID":53395,"Label":"5517-53395 via Ribbon Synapse from 49475 -> 53397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49475,"TargetID":53397,"Directional":true}]},{"ID":8956,"SourceStructureID":5517,"TargetStructureID":58592,"Label":"5517-58592 via Ribbon Synapse from 49367 -> 58631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49367,"TargetID":58631,"Directional":true}]},{"ID":8957,"SourceStructureID":5517,"TargetStructureID":68277,"Label":"5517-68277 via Ribbon Synapse from 49364 -> 68279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49364,"TargetID":68279,"Directional":true}]},{"ID":8958,"SourceStructureID":5517,"TargetStructureID":82229,"Label":"5517-82229 via Ribbon Synapse from 49359 -> 82230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49359,"TargetID":82230,"Directional":true}]},{"ID":8959,"SourceStructureID":5517,"TargetStructureID":87972,"Label":"5517-87972 via Ribbon Synapse from 49272 -> 88011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49272,"TargetID":88011,"Directional":true}]},{"ID":8960,"SourceStructureID":5517,"TargetStructureID":96178,"Label":"5517-96178 via BC Conventional Synapse from 96177 -> 96179","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96177,"TargetID":96179,"Directional":true}]},{"ID":8961,"SourceStructureID":5517,"TargetStructureID":96217,"Label":"5517-96217 via BC Conventional Synapse from 96305 -> 96306","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96305,"TargetID":96306,"Directional":true}]},{"ID":8962,"SourceStructureID":5517,"TargetStructureID":96217,"Label":"5517-96217 via Ribbon Synapse from 96113 -> 96218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96113,"TargetID":96218,"Directional":true}]},{"ID":8963,"SourceStructureID":5517,"TargetStructureID":96323,"Label":"5517-96323 via Ribbon Synapse from 96109 -> 96324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96109,"TargetID":96324,"Directional":true}]},{"ID":8964,"SourceStructureID":5517,"TargetStructureID":96335,"Label":"5517-96335 via BC Conventional Synapse from 96330 -> 96336","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96330,"TargetID":96336,"Directional":true}]},{"ID":8965,"SourceStructureID":5517,"TargetStructureID":109799,"Label":"5517-109799 via BC Conventional Synapse from 119235 -> 119236","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119235,"TargetID":119236,"Directional":true}]},{"ID":8966,"SourceStructureID":5517,"TargetStructureID":110367,"Label":"5517-110367 via Cistern Pre from 135806 -> 135805","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":135806,"TargetID":135805,"Directional":true}]},{"ID":8967,"SourceStructureID":5519,"TargetStructureID":46741,"Label":"5519-46741 via Ribbon Synapse from 46740 -> 46742, 46745 -> 46743, 46747 -> 46744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46740,"TargetID":46742,"Directional":true},{"SourceID":46745,"TargetID":46743,"Directional":true},{"SourceID":46747,"TargetID":46744,"Directional":true}]},{"ID":8968,"SourceStructureID":5519,"TargetStructureID":70501,"Label":"5519-70501 via Ribbon Synapse from 46746 -> 70502, 70503 -> 70502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46746,"TargetID":70502,"Directional":true},{"SourceID":70503,"TargetID":70502,"Directional":true}]},{"ID":8969,"SourceStructureID":5520,"TargetStructureID":5499,"Label":"5520-5499 via Adherens from 105461 -> 105462","Type":"Adherens","Directional":true,"Links":[{"SourceID":105461,"TargetID":105462,"Directional":true}]},{"ID":8970,"SourceStructureID":5520,"TargetStructureID":5520,"Label":"5520-5520 via Cistern Pre from 37930 -> 37931","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37930,"TargetID":37931,"Directional":true}]},{"ID":8971,"SourceStructureID":5520,"TargetStructureID":7897,"Label":"5520-7897 via Ribbon Synapse from 119750 -> 55720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119750,"TargetID":55720,"Directional":true}]},{"ID":8972,"SourceStructureID":5520,"TargetStructureID":8575,"Label":"5520-8575 via Ribbon Synapse from 62998 -> 62997","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62998,"TargetID":62997,"Directional":true}]},{"ID":8973,"SourceStructureID":5520,"TargetStructureID":136236,"Label":"5520-136236 via Ribbon Synapse from 97903 -> 136237","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97903,"TargetID":136237,"Directional":true}]},{"ID":8974,"SourceStructureID":5522,"TargetStructureID":18282,"Label":"5522-18282 via Ribbon Synapse from 43504 -> 43494, 109815 -> 43494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43504,"TargetID":43494,"Directional":true},{"SourceID":109815,"TargetID":43494,"Directional":true}]},{"ID":8975,"SourceStructureID":5522,"TargetStructureID":31024,"Label":"5522-31024 via Ribbon Synapse from 63128 -> 63130, 64119 -> 31363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63128,"TargetID":63130,"Directional":true},{"SourceID":64119,"TargetID":31363,"Directional":true}]},{"ID":8976,"SourceStructureID":5522,"TargetStructureID":32804,"Label":"5522-32804 via Ribbon Synapse from 43499 -> 32809, 43500 -> 32807, 64127 -> 32806, 64137 -> 64138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43499,"TargetID":32809,"Directional":true},{"SourceID":43500,"TargetID":32807,"Directional":true},{"SourceID":64127,"TargetID":32806,"Directional":true},{"SourceID":64137,"TargetID":64138,"Directional":true}]},{"ID":8977,"SourceStructureID":5522,"TargetStructureID":63115,"Label":"5522-63115 via Ribbon Synapse from 63118 -> 63119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63118,"TargetID":63119,"Directional":true}]},{"ID":8978,"SourceStructureID":5522,"TargetStructureID":69554,"Label":"5522-69554 via Ribbon Synapse from 63180 -> 69560, 63181 -> 69559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63180,"TargetID":69560,"Directional":true},{"SourceID":63181,"TargetID":69559,"Directional":true}]},{"ID":8979,"SourceStructureID":5522,"TargetStructureID":75272,"Label":"5522-75272 via Ribbon Synapse from 64320 -> 75298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64320,"TargetID":75298,"Directional":true}]},{"ID":8980,"SourceStructureID":5528,"TargetStructureID":606,"Label":"5528-606 via Ribbon Synapse from 54722 -> 54723, 107105 -> 53568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54722,"TargetID":54723,"Directional":true},{"SourceID":107105,"TargetID":53568,"Directional":true}]},{"ID":8981,"SourceStructureID":5528,"TargetStructureID":7225,"Label":"5528-7225 via Ribbon Synapse from 94517 -> 10029","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94517,"TargetID":10029,"Directional":true}]},{"ID":8982,"SourceStructureID":5528,"TargetStructureID":7576,"Label":"5528-7576 via BC Conventional Synapse from 55925 -> 55924, 95184 -> 95183, 95196 -> 55087","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55925,"TargetID":55924,"Directional":true},{"SourceID":95184,"TargetID":95183,"Directional":true},{"SourceID":95196,"TargetID":55087,"Directional":true}]},{"ID":8983,"SourceStructureID":5528,"TargetStructureID":7576,"Label":"5528-7576 via Ribbon Synapse from 8265 -> 54809, 8272 -> 55043, 54873 -> 54870, 55024 -> 55025, 55047 -> 55048, 55086 -> 55087, 95637 -> 95639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8265,"TargetID":54809,"Directional":true},{"SourceID":8272,"TargetID":55043,"Directional":true},{"SourceID":54873,"TargetID":54870,"Directional":true},{"SourceID":55024,"TargetID":55025,"Directional":true},{"SourceID":55047,"TargetID":55048,"Directional":true},{"SourceID":55086,"TargetID":55087,"Directional":true},{"SourceID":95637,"TargetID":95639,"Directional":true}]},{"ID":8984,"SourceStructureID":5528,"TargetStructureID":7594,"Label":"5528-7594 via Ribbon Synapse from 95172 -> 95174, 113943 -> 113944","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95172,"TargetID":95174,"Directional":true},{"SourceID":113943,"TargetID":113944,"Directional":true}]},{"ID":8985,"SourceStructureID":5528,"TargetStructureID":33217,"Label":"5528-33217 via Ribbon Synapse from 33237 -> 33232","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33237,"TargetID":33232,"Directional":true}]},{"ID":8986,"SourceStructureID":5528,"TargetStructureID":43716,"Label":"5528-43716 via Ribbon Synapse from 95172 -> 95173","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95172,"TargetID":95173,"Directional":true}]},{"ID":8987,"SourceStructureID":5528,"TargetStructureID":55034,"Label":"5528-55034 via Ribbon Synapse from 55035 -> 55036, 94721 -> 94724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55035,"TargetID":55036,"Directional":true},{"SourceID":94721,"TargetID":94724,"Directional":true}]},{"ID":8988,"SourceStructureID":5528,"TargetStructureID":60243,"Label":"5528-60243 via Ribbon Synapse from 60248 -> 96183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60248,"TargetID":96183,"Directional":true}]},{"ID":8989,"SourceStructureID":5528,"TargetStructureID":64414,"Label":"5528-64414 via Ribbon Synapse from 93944 -> 93949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93944,"TargetID":93949,"Directional":true}]},{"ID":8990,"SourceStructureID":5528,"TargetStructureID":68793,"Label":"5528-68793 via Ribbon Synapse from 68792 -> 68794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68792,"TargetID":68794,"Directional":true}]},{"ID":8991,"SourceStructureID":5528,"TargetStructureID":77329,"Label":"5528-77329 via Ribbon Synapse from 94401 -> 94402","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94401,"TargetID":94402,"Directional":true}]},{"ID":8992,"SourceStructureID":5528,"TargetStructureID":77920,"Label":"5528-77920 via Ribbon Synapse from 93944 -> 93948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93944,"TargetID":93948,"Directional":true}]},{"ID":8993,"SourceStructureID":5528,"TargetStructureID":93523,"Label":"5528-93523 via BC Conventional Synapse from 93526 -> 93527","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93526,"TargetID":93527,"Directional":true}]},{"ID":8994,"SourceStructureID":5528,"TargetStructureID":93523,"Label":"5528-93523 via Cistern Pre from 36390 -> 93525","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":36390,"TargetID":93525,"Directional":true}]},{"ID":8995,"SourceStructureID":5528,"TargetStructureID":93565,"Label":"5528-93565 via Ribbon Synapse from 93567 -> 93566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93567,"TargetID":93566,"Directional":true}]},{"ID":8996,"SourceStructureID":5528,"TargetStructureID":93568,"Label":"5528-93568 via Ribbon Synapse from 36394 -> 93569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36394,"TargetID":93569,"Directional":true}]},{"ID":8997,"SourceStructureID":5528,"TargetStructureID":93571,"Label":"5528-93571 via Cistern Pre from 93570 -> 93572","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":93570,"TargetID":93572,"Directional":true}]},{"ID":8998,"SourceStructureID":5528,"TargetStructureID":93945,"Label":"5528-93945 via Ribbon Synapse from 93944 -> 93946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93944,"TargetID":93946,"Directional":true}]},{"ID":8999,"SourceStructureID":5528,"TargetStructureID":93950,"Label":"5528-93950 via BC Conventional Synapse from 93952 -> 93951","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93952,"TargetID":93951,"Directional":true}]},{"ID":9000,"SourceStructureID":5528,"TargetStructureID":93966,"Label":"5528-93966 via Ribbon Synapse from 93956 -> 93967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93956,"TargetID":93967,"Directional":true}]},{"ID":9001,"SourceStructureID":5528,"TargetStructureID":93968,"Label":"5528-93968 via Ribbon Synapse from 93956 -> 93969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93956,"TargetID":93969,"Directional":true}]},{"ID":9002,"SourceStructureID":5528,"TargetStructureID":93982,"Label":"5528-93982 via BC Conventional Synapse from 93983 -> 93984","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93983,"TargetID":93984,"Directional":true}]},{"ID":9003,"SourceStructureID":5528,"TargetStructureID":93993,"Label":"5528-93993 via Ribbon Synapse from 93582 -> 93994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93582,"TargetID":93994,"Directional":true}]},{"ID":9004,"SourceStructureID":5528,"TargetStructureID":94003,"Label":"5528-94003 via Ribbon Synapse from 93582 -> 94004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93582,"TargetID":94004,"Directional":true}]},{"ID":9005,"SourceStructureID":5528,"TargetStructureID":94015,"Label":"5528-94015 via Ribbon Synapse from 93585 -> 94017","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93585,"TargetID":94017,"Directional":true}]},{"ID":9006,"SourceStructureID":5528,"TargetStructureID":94021,"Label":"5528-94021 via BC Conventional Synapse from 94020 -> 94022","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94020,"TargetID":94022,"Directional":true}]},{"ID":9007,"SourceStructureID":5528,"TargetStructureID":94029,"Label":"5528-94029 via Ribbon Synapse from 93601 -> 94030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93601,"TargetID":94030,"Directional":true}]},{"ID":9008,"SourceStructureID":5528,"TargetStructureID":94038,"Label":"5528-94038 via Ribbon Synapse from 94040 -> 94041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94040,"TargetID":94041,"Directional":true}]},{"ID":9009,"SourceStructureID":5528,"TargetStructureID":94039,"Label":"5528-94039 via Ribbon Synapse from 94040 -> 94042","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94040,"TargetID":94042,"Directional":true}]},{"ID":9010,"SourceStructureID":5528,"TargetStructureID":94044,"Label":"5528-94044 via Ribbon Synapse from 94043 -> 94045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94043,"TargetID":94045,"Directional":true}]},{"ID":9011,"SourceStructureID":5528,"TargetStructureID":94046,"Label":"5528-94046 via Ribbon Synapse from 94043 -> 94047","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94043,"TargetID":94047,"Directional":true}]},{"ID":9012,"SourceStructureID":5528,"TargetStructureID":94123,"Label":"5528-94123 via BC Conventional Synapse from 94125 -> 94124","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94125,"TargetID":94124,"Directional":true}]},{"ID":9013,"SourceStructureID":5528,"TargetStructureID":94123,"Label":"5528-94123 via Ribbon Synapse from 94134 -> 94135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94134,"TargetID":94135,"Directional":true}]},{"ID":9014,"SourceStructureID":5528,"TargetStructureID":94127,"Label":"5528-94127 via Ribbon Synapse from 94126 -> 94128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94126,"TargetID":94128,"Directional":true}]},{"ID":9015,"SourceStructureID":5528,"TargetStructureID":94155,"Label":"5528-94155 via Ribbon Synapse from 94154 -> 94156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94154,"TargetID":94156,"Directional":true}]},{"ID":9016,"SourceStructureID":5528,"TargetStructureID":94161,"Label":"5528-94161 via Ribbon Synapse from 94160 -> 94162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94160,"TargetID":94162,"Directional":true}]},{"ID":9017,"SourceStructureID":5528,"TargetStructureID":94194,"Label":"5528-94194 via BC Conventional Synapse from 94275 -> 94274","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94275,"TargetID":94274,"Directional":true}]},{"ID":9018,"SourceStructureID":5528,"TargetStructureID":94262,"Label":"5528-94262 via Ribbon Synapse from 94261 -> 94265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94261,"TargetID":94265,"Directional":true}]},{"ID":9019,"SourceStructureID":5528,"TargetStructureID":94297,"Label":"5528-94297 via Ribbon Synapse from 94304 -> 94310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94304,"TargetID":94310,"Directional":true}]},{"ID":9020,"SourceStructureID":5528,"TargetStructureID":94303,"Label":"5528-94303 via Ribbon Synapse from 94304 -> 94305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94304,"TargetID":94305,"Directional":true}]},{"ID":9021,"SourceStructureID":5528,"TargetStructureID":94309,"Label":"5528-94309 via BC Conventional Synapse from 94308 -> 94311","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94308,"TargetID":94311,"Directional":true}]},{"ID":9022,"SourceStructureID":5528,"TargetStructureID":94353,"Label":"5528-94353 via Ribbon Synapse from 94352 -> 94377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94352,"TargetID":94377,"Directional":true}]},{"ID":9023,"SourceStructureID":5528,"TargetStructureID":94381,"Label":"5528-94381 via Ribbon Synapse from 94380 -> 94382","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94380,"TargetID":94382,"Directional":true}]},{"ID":9024,"SourceStructureID":5528,"TargetStructureID":94403,"Label":"5528-94403 via Ribbon Synapse from 94401 -> 94404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94401,"TargetID":94404,"Directional":true}]},{"ID":9025,"SourceStructureID":5528,"TargetStructureID":94409,"Label":"5528-94409 via Ribbon Synapse from 91643 -> 94410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91643,"TargetID":94410,"Directional":true}]},{"ID":9026,"SourceStructureID":5528,"TargetStructureID":94428,"Label":"5528-94428 via Ribbon Synapse from 84674 -> 94429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84674,"TargetID":94429,"Directional":true}]},{"ID":9027,"SourceStructureID":5528,"TargetStructureID":94430,"Label":"5528-94430 via BC Conventional Synapse from 94431 -> 94432","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94431,"TargetID":94432,"Directional":true}]},{"ID":9028,"SourceStructureID":5528,"TargetStructureID":94433,"Label":"5528-94433 via BC Conventional Synapse from 94435 -> 94434","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94435,"TargetID":94434,"Directional":true}]},{"ID":9029,"SourceStructureID":5528,"TargetStructureID":94479,"Label":"5528-94479 via BC Conventional Synapse from 94510 -> 94511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94510,"TargetID":94511,"Directional":true}]},{"ID":9030,"SourceStructureID":5528,"TargetStructureID":94479,"Label":"5528-94479 via Ribbon Synapse from 94484 -> 94496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94484,"TargetID":94496,"Directional":true}]},{"ID":9031,"SourceStructureID":5528,"TargetStructureID":94482,"Label":"5528-94482 via Ribbon Synapse from 55024 -> 94483","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55024,"TargetID":94483,"Directional":true}]},{"ID":9032,"SourceStructureID":5528,"TargetStructureID":94485,"Label":"5528-94485 via Ribbon Synapse from 94484 -> 94495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94484,"TargetID":94495,"Directional":true}]},{"ID":9033,"SourceStructureID":5528,"TargetStructureID":94518,"Label":"5528-94518 via Ribbon Synapse from 94517 -> 94522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94517,"TargetID":94522,"Directional":true}]},{"ID":9034,"SourceStructureID":5528,"TargetStructureID":94523,"Label":"5528-94523 via Ribbon Synapse from 94517 -> 94524","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94517,"TargetID":94524,"Directional":true}]},{"ID":9035,"SourceStructureID":5528,"TargetStructureID":94719,"Label":"5528-94719 via Ribbon Synapse from 94718 -> 94720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94718,"TargetID":94720,"Directional":true}]},{"ID":9036,"SourceStructureID":5528,"TargetStructureID":94722,"Label":"5528-94722 via Ribbon Synapse from 94721 -> 94723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94721,"TargetID":94723,"Directional":true}]},{"ID":9037,"SourceStructureID":5528,"TargetStructureID":94729,"Label":"5528-94729 via Ribbon Synapse from 94730 -> 94731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94730,"TargetID":94731,"Directional":true}]},{"ID":9038,"SourceStructureID":5528,"TargetStructureID":94733,"Label":"5528-94733 via Ribbon Synapse from 94732 -> 94734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94732,"TargetID":94734,"Directional":true}]},{"ID":9039,"SourceStructureID":5528,"TargetStructureID":94741,"Label":"5528-94741 via Ribbon Synapse from 94792 -> 94793, 94792 -> 94795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":94792,"TargetID":94793,"Directional":true},{"SourceID":94792,"TargetID":94795,"Directional":true}]},{"ID":9040,"SourceStructureID":5528,"TargetStructureID":94827,"Label":"5528-94827 via BC Conventional Synapse from 94829 -> 94828","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":94829,"TargetID":94828,"Directional":true}]},{"ID":9041,"SourceStructureID":5528,"TargetStructureID":94867,"Label":"5528-94867 via Ribbon Synapse from 8256 -> 95061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8256,"TargetID":95061,"Directional":true}]},{"ID":9042,"SourceStructureID":5528,"TargetStructureID":94870,"Label":"5528-94870 via Ribbon Synapse from 8255 -> 95055","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8255,"TargetID":95055,"Directional":true}]},{"ID":9043,"SourceStructureID":5528,"TargetStructureID":95059,"Label":"5528-95059 via Ribbon Synapse from 8256 -> 95060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8256,"TargetID":95060,"Directional":true}]},{"ID":9044,"SourceStructureID":5528,"TargetStructureID":95069,"Label":"5528-95069 via Ribbon Synapse from 68792 -> 95087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68792,"TargetID":95087,"Directional":true}]},{"ID":9045,"SourceStructureID":5528,"TargetStructureID":95131,"Label":"5528-95131 via Ribbon Synapse from 95132 -> 95133, 95141 -> 95142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95132,"TargetID":95133,"Directional":true},{"SourceID":95141,"TargetID":95142,"Directional":true}]},{"ID":9046,"SourceStructureID":5528,"TargetStructureID":95134,"Label":"5528-95134 via Ribbon Synapse from 95132 -> 95135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95132,"TargetID":95135,"Directional":true}]},{"ID":9047,"SourceStructureID":5528,"TargetStructureID":95166,"Label":"5528-95166 via Ribbon Synapse from 95165 -> 95169","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95165,"TargetID":95169,"Directional":true}]},{"ID":9048,"SourceStructureID":5528,"TargetStructureID":95167,"Label":"5528-95167 via Ribbon Synapse from 95165 -> 95168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95165,"TargetID":95168,"Directional":true}]},{"ID":9049,"SourceStructureID":5528,"TargetStructureID":95187,"Label":"5528-95187 via BC Conventional Synapse from 95189 -> 95188","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95189,"TargetID":95188,"Directional":true}]},{"ID":9050,"SourceStructureID":5528,"TargetStructureID":95195,"Label":"5528-95195 via Ribbon Synapse from 55086 -> 95464, 95637 -> 95638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55086,"TargetID":95464,"Directional":true},{"SourceID":95637,"TargetID":95638,"Directional":true}]},{"ID":9051,"SourceStructureID":5528,"TargetStructureID":95435,"Label":"5528-95435 via Ribbon Synapse from 95200 -> 95437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95200,"TargetID":95437,"Directional":true}]},{"ID":9052,"SourceStructureID":5528,"TargetStructureID":95440,"Label":"5528-95440 via Ribbon Synapse from 95200 -> 95453, 95462 -> 95463","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95200,"TargetID":95453,"Directional":true},{"SourceID":95462,"TargetID":95463,"Directional":true}]},{"ID":9053,"SourceStructureID":5528,"TargetStructureID":95468,"Label":"5528-95468 via BC Conventional Synapse from 95470 -> 95469","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95470,"TargetID":95469,"Directional":true}]},{"ID":9054,"SourceStructureID":5528,"TargetStructureID":95659,"Label":"5528-95659 via Ribbon Synapse from 8265 -> 95660","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8265,"TargetID":95660,"Directional":true}]},{"ID":9055,"SourceStructureID":5528,"TargetStructureID":95662,"Label":"5528-95662 via Ribbon Synapse from 8265 -> 95663","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8265,"TargetID":95663,"Directional":true}]},{"ID":9056,"SourceStructureID":5528,"TargetStructureID":95670,"Label":"5528-95670 via Ribbon Synapse from 8265 -> 95671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8265,"TargetID":95671,"Directional":true}]},{"ID":9057,"SourceStructureID":5528,"TargetStructureID":95693,"Label":"5528-95693 via Ribbon Synapse from 8267 -> 95695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8267,"TargetID":95695,"Directional":true}]},{"ID":9058,"SourceStructureID":5528,"TargetStructureID":95696,"Label":"5528-95696 via Ribbon Synapse from 8267 -> 95697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8267,"TargetID":95697,"Directional":true}]},{"ID":9059,"SourceStructureID":5528,"TargetStructureID":95698,"Label":"5528-95698 via Ribbon Synapse from 8269 -> 96167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8269,"TargetID":96167,"Directional":true}]},{"ID":9060,"SourceStructureID":5528,"TargetStructureID":96143,"Label":"5528-96143 via Ribbon Synapse from 8269 -> 96168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8269,"TargetID":96168,"Directional":true}]},{"ID":9061,"SourceStructureID":5528,"TargetStructureID":96207,"Label":"5528-96207 via Ribbon Synapse from 96206 -> 96208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96206,"TargetID":96208,"Directional":true}]},{"ID":9062,"SourceStructureID":5528,"TargetStructureID":96227,"Label":"5528-96227 via BC Conventional Synapse from 96229 -> 96230","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96229,"TargetID":96230,"Directional":true}]},{"ID":9063,"SourceStructureID":5528,"TargetStructureID":96227,"Label":"5528-96227 via Ribbon Synapse from 96231 -> 96232","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96231,"TargetID":96232,"Directional":true}]},{"ID":9064,"SourceStructureID":5528,"TargetStructureID":96234,"Label":"5528-96234 via Ribbon Synapse from 96233 -> 96235","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96233,"TargetID":96235,"Directional":true}]},{"ID":9065,"SourceStructureID":5528,"TargetStructureID":96236,"Label":"5528-96236 via Ribbon Synapse from 96233 -> 96237","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96233,"TargetID":96237,"Directional":true}]},{"ID":9066,"SourceStructureID":5528,"TargetStructureID":96238,"Label":"5528-96238 via Ribbon Synapse from 96231 -> 96239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96231,"TargetID":96239,"Directional":true}]},{"ID":9067,"SourceStructureID":5528,"TargetStructureID":96240,"Label":"5528-96240 via BC Conventional Synapse from 96241 -> 96242","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96241,"TargetID":96242,"Directional":true}]},{"ID":9068,"SourceStructureID":5528,"TargetStructureID":96252,"Label":"5528-96252 via BC Conventional Synapse from 96253 -> 96254","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96253,"TargetID":96254,"Directional":true}]},{"ID":9069,"SourceStructureID":5528,"TargetStructureID":96280,"Label":"5528-96280 via Ribbon Synapse from 8284 -> 96281","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8284,"TargetID":96281,"Directional":true}]},{"ID":9070,"SourceStructureID":5528,"TargetStructureID":96303,"Label":"5528-96303 via Ribbon Synapse from 8279 -> 96831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8279,"TargetID":96831,"Directional":true}]},{"ID":9071,"SourceStructureID":5528,"TargetStructureID":96304,"Label":"5528-96304 via Ribbon Synapse from 8279 -> 96828, 8280 -> 96827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8279,"TargetID":96828,"Directional":true},{"SourceID":8280,"TargetID":96827,"Directional":true}]},{"ID":9072,"SourceStructureID":5528,"TargetStructureID":96832,"Label":"5528-96832 via Ribbon Synapse from 107105 -> 96833","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107105,"TargetID":96833,"Directional":true}]},{"ID":9073,"SourceStructureID":5528,"TargetStructureID":96834,"Label":"5528-96834 via Ribbon Synapse from 107105 -> 96836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107105,"TargetID":96836,"Directional":true}]},{"ID":9074,"SourceStructureID":5528,"TargetStructureID":96837,"Label":"5528-96837 via Ribbon Synapse from 107105 -> 96838","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107105,"TargetID":96838,"Directional":true}]},{"ID":9075,"SourceStructureID":5528,"TargetStructureID":96880,"Label":"5528-96880 via Ribbon Synapse from 8291 -> 96882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8291,"TargetID":96882,"Directional":true}]},{"ID":9076,"SourceStructureID":5528,"TargetStructureID":96883,"Label":"5528-96883 via Ribbon Synapse from 8295 -> 96886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8295,"TargetID":96886,"Directional":true}]},{"ID":9077,"SourceStructureID":5528,"TargetStructureID":96884,"Label":"5528-96884 via Ribbon Synapse from 8295 -> 96885","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8295,"TargetID":96885,"Directional":true}]},{"ID":9078,"SourceStructureID":5528,"TargetStructureID":96891,"Label":"5528-96891 via Ribbon Synapse from 8292 -> 96892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8292,"TargetID":96892,"Directional":true}]},{"ID":9079,"SourceStructureID":5528,"TargetStructureID":96893,"Label":"5528-96893 via Ribbon Synapse from 8292 -> 96913, 96894 -> 96896, 96894 -> 96897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8292,"TargetID":96913,"Directional":true},{"SourceID":96894,"TargetID":96896,"Directional":true},{"SourceID":96894,"TargetID":96897,"Directional":true}]},{"ID":9080,"SourceStructureID":5528,"TargetStructureID":96898,"Label":"5528-96898 via BC Conventional Synapse from 96903 -> 96904","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96903,"TargetID":96904,"Directional":true}]},{"ID":9081,"SourceStructureID":5528,"TargetStructureID":96906,"Label":"5528-96906 via Ribbon Synapse from 96905 -> 96907","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96905,"TargetID":96907,"Directional":true}]},{"ID":9082,"SourceStructureID":5528,"TargetStructureID":96909,"Label":"5528-96909 via Ribbon Synapse from 8296 -> 96910","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8296,"TargetID":96910,"Directional":true}]},{"ID":9083,"SourceStructureID":5528,"TargetStructureID":96911,"Label":"5528-96911 via Ribbon Synapse from 8296 -> 96912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8296,"TargetID":96912,"Directional":true}]},{"ID":9084,"SourceStructureID":5528,"TargetStructureID":97244,"Label":"5528-97244 via Ribbon Synapse from 55047 -> 97251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55047,"TargetID":97251,"Directional":true}]},{"ID":9085,"SourceStructureID":5528,"TargetStructureID":97252,"Label":"5528-97252 via Ribbon Synapse from 55047 -> 97257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55047,"TargetID":97257,"Directional":true}]},{"ID":9086,"SourceStructureID":5528,"TargetStructureID":97260,"Label":"5528-97260 via Ribbon Synapse from 55047 -> 97263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55047,"TargetID":97263,"Directional":true}]},{"ID":9087,"SourceStructureID":5528,"TargetStructureID":97272,"Label":"5528-97272 via Ribbon Synapse from 97270 -> 97277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97270,"TargetID":97277,"Directional":true}]},{"ID":9088,"SourceStructureID":5528,"TargetStructureID":97280,"Label":"5528-97280 via Ribbon Synapse from 97270 -> 97283","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97270,"TargetID":97283,"Directional":true}]},{"ID":9089,"SourceStructureID":5528,"TargetStructureID":97293,"Label":"5528-97293 via Ribbon Synapse from 54722 -> 97301","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54722,"TargetID":97301,"Directional":true}]},{"ID":9090,"SourceStructureID":5530,"TargetStructureID":606,"Label":"5530-606 via Ribbon Synapse from 23844 -> 23840, 23859 -> 44214, 23861 -> 10514, 42097 -> 50902, 42099 -> 50903, 42141 -> 50906, 42145 -> 53541, 44215 -> 10511, 44247 -> 44243, 45233 -> 52543, 50952 -> 50950, 53413 -> 53412, 53506 -> 53507, 53543 -> 53544, 54034 -> 54035, 54043 -> 54044, 54047 -> 10518, 54055 -> 54056, 54106 -> 10521","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23844,"TargetID":23840,"Directional":true},{"SourceID":23859,"TargetID":44214,"Directional":true},{"SourceID":23861,"TargetID":10514,"Directional":true},{"SourceID":42097,"TargetID":50902,"Directional":true},{"SourceID":42099,"TargetID":50903,"Directional":true},{"SourceID":42141,"TargetID":50906,"Directional":true},{"SourceID":42145,"TargetID":53541,"Directional":true},{"SourceID":44215,"TargetID":10511,"Directional":true},{"SourceID":44247,"TargetID":44243,"Directional":true},{"SourceID":45233,"TargetID":52543,"Directional":true},{"SourceID":50952,"TargetID":50950,"Directional":true},{"SourceID":53413,"TargetID":53412,"Directional":true},{"SourceID":53506,"TargetID":53507,"Directional":true},{"SourceID":53543,"TargetID":53544,"Directional":true},{"SourceID":54034,"TargetID":54035,"Directional":true},{"SourceID":54043,"TargetID":54044,"Directional":true},{"SourceID":54047,"TargetID":10518,"Directional":true},{"SourceID":54055,"TargetID":54056,"Directional":true},{"SourceID":54106,"TargetID":10521,"Directional":true}]},{"ID":9091,"SourceStructureID":5530,"TargetStructureID":5435,"Label":"5530-5435 via Ribbon Synapse from 52537 -> 82419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52537,"TargetID":82419,"Directional":true}]},{"ID":9092,"SourceStructureID":5530,"TargetStructureID":5451,"Label":"5530-5451 via BC Conventional Synapse from 81114 -> 81116","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81114,"TargetID":81116,"Directional":true}]},{"ID":9093,"SourceStructureID":5530,"TargetStructureID":5451,"Label":"5530-5451 via Ribbon Synapse from 55199 -> 55196","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55199,"TargetID":55196,"Directional":true}]},{"ID":9094,"SourceStructureID":5530,"TargetStructureID":7594,"Label":"5530-7594 via Ribbon Synapse from 17906 -> 17907","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17906,"TargetID":17907,"Directional":true}]},{"ID":9095,"SourceStructureID":5530,"TargetStructureID":9769,"Label":"5530-9769 via Ribbon Synapse from 29867 -> 29859, 30119 -> 30113, 39712 -> 126459, 45218 -> 45217, 45314 -> 45315, 74220 -> 74221, 74676 -> 74876, 80481 -> 80482","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29867,"TargetID":29859,"Directional":true},{"SourceID":30119,"TargetID":30113,"Directional":true},{"SourceID":39712,"TargetID":126459,"Directional":true},{"SourceID":45218,"TargetID":45217,"Directional":true},{"SourceID":45314,"TargetID":45315,"Directional":true},{"SourceID":74220,"TargetID":74221,"Directional":true},{"SourceID":74676,"TargetID":74876,"Directional":true},{"SourceID":80481,"TargetID":80482,"Directional":true}]},{"ID":9096,"SourceStructureID":5530,"TargetStructureID":12564,"Label":"5530-12564 via Ribbon Synapse from 77345 -> 77346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77345,"TargetID":77346,"Directional":true}]},{"ID":9097,"SourceStructureID":5530,"TargetStructureID":18693,"Label":"5530-18693 via Ribbon Synapse from 77650 -> 77651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77650,"TargetID":77651,"Directional":true}]},{"ID":9098,"SourceStructureID":5530,"TargetStructureID":23512,"Label":"5530-23512 via Ribbon Synapse from 23842 -> 23843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23842,"TargetID":23843,"Directional":true}]},{"ID":9099,"SourceStructureID":5530,"TargetStructureID":25293,"Label":"5530-25293 via Ribbon Synapse from 23859 -> 25299","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23859,"TargetID":25299,"Directional":true}]},{"ID":9100,"SourceStructureID":5530,"TargetStructureID":35152,"Label":"5530-35152 via Ribbon Synapse from 35163 -> 35162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35163,"TargetID":35162,"Directional":true}]},{"ID":9101,"SourceStructureID":5530,"TargetStructureID":35288,"Label":"5530-35288 via Ribbon Synapse from 35304 -> 35303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35304,"TargetID":35303,"Directional":true}]},{"ID":9102,"SourceStructureID":5530,"TargetStructureID":35539,"Label":"5530-35539 via Ribbon Synapse from 17906 -> 35543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17906,"TargetID":35543,"Directional":true}]},{"ID":9103,"SourceStructureID":5530,"TargetStructureID":35653,"Label":"5530-35653 via Ribbon Synapse from 75534 -> 75535","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75534,"TargetID":75535,"Directional":true}]},{"ID":9104,"SourceStructureID":5530,"TargetStructureID":39696,"Label":"5530-39696 via Ribbon Synapse from 39715 -> 39711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39715,"TargetID":39711,"Directional":true}]},{"ID":9105,"SourceStructureID":5530,"TargetStructureID":45220,"Label":"5530-45220 via Ribbon Synapse from 45233 -> 45232, 54034 -> 55182, 54063 -> 81574, 55178 -> 55180, 55205 -> 55206, 81226 -> 45224, 81243 -> 81246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45233,"TargetID":45232,"Directional":true},{"SourceID":54034,"TargetID":55182,"Directional":true},{"SourceID":54063,"TargetID":81574,"Directional":true},{"SourceID":55178,"TargetID":55180,"Directional":true},{"SourceID":55205,"TargetID":55206,"Directional":true},{"SourceID":81226,"TargetID":45224,"Directional":true},{"SourceID":81243,"TargetID":81246,"Directional":true}]},{"ID":9106,"SourceStructureID":5530,"TargetStructureID":54925,"Label":"5530-54925 via Ribbon Synapse from 54047 -> 54946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54047,"TargetID":54946,"Directional":true}]},{"ID":9107,"SourceStructureID":5530,"TargetStructureID":70566,"Label":"5530-70566 via Ribbon Synapse from 80306 -> 80308","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80306,"TargetID":80308,"Directional":true}]},{"ID":9108,"SourceStructureID":5530,"TargetStructureID":71882,"Label":"5530-71882 via Ribbon Synapse from 75909 -> 90451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75909,"TargetID":90451,"Directional":true}]},{"ID":9109,"SourceStructureID":5530,"TargetStructureID":74049,"Label":"5530-74049 via Cistern Pre from 37805 -> 74050","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37805,"TargetID":74050,"Directional":true}]},{"ID":9110,"SourceStructureID":5530,"TargetStructureID":74056,"Label":"5530-74056 via BC Conventional Synapse from 74055 -> 74057","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74055,"TargetID":74057,"Directional":true}]},{"ID":9111,"SourceStructureID":5530,"TargetStructureID":74222,"Label":"5530-74222 via Ribbon Synapse from 74220 -> 74223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74220,"TargetID":74223,"Directional":true}]},{"ID":9112,"SourceStructureID":5530,"TargetStructureID":74909,"Label":"5530-74909 via Ribbon Synapse from 74676 -> 74910","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74676,"TargetID":74910,"Directional":true}]},{"ID":9113,"SourceStructureID":5530,"TargetStructureID":74911,"Label":"5530-74911 via Ribbon Synapse from 45218 -> 74912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45218,"TargetID":74912,"Directional":true}]},{"ID":9114,"SourceStructureID":5530,"TargetStructureID":74978,"Label":"5530-74978 via Adherens from 74980 -> 74982","Type":"Adherens","Directional":true,"Links":[{"SourceID":74980,"TargetID":74982,"Directional":true}]},{"ID":9115,"SourceStructureID":5530,"TargetStructureID":74978,"Label":"5530-74978 via Ribbon Synapse from 74989 -> 74988","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74989,"TargetID":74988,"Directional":true}]},{"ID":9116,"SourceStructureID":5530,"TargetStructureID":75395,"Label":"5530-75395 via Ribbon Synapse from 75398 -> 75399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75398,"TargetID":75399,"Directional":true}]},{"ID":9117,"SourceStructureID":5530,"TargetStructureID":75400,"Label":"5530-75400 via Ribbon Synapse from 75398 -> 75403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75398,"TargetID":75403,"Directional":true}]},{"ID":9118,"SourceStructureID":5530,"TargetStructureID":75404,"Label":"5530-75404 via Ribbon Synapse from 75406 -> 75407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75406,"TargetID":75407,"Directional":true}]},{"ID":9119,"SourceStructureID":5530,"TargetStructureID":75488,"Label":"5530-75488 via Ribbon Synapse from 75492 -> 75494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75492,"TargetID":75494,"Directional":true}]},{"ID":9120,"SourceStructureID":5530,"TargetStructureID":75491,"Label":"5530-75491 via Ribbon Synapse from 75492 -> 75493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75492,"TargetID":75493,"Directional":true}]},{"ID":9121,"SourceStructureID":5530,"TargetStructureID":75517,"Label":"5530-75517 via Ribbon Synapse from 53414 -> 75518, 75534 -> 75536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53414,"TargetID":75518,"Directional":true},{"SourceID":75534,"TargetID":75536,"Directional":true}]},{"ID":9122,"SourceStructureID":5530,"TargetStructureID":75519,"Label":"5530-75519 via Ribbon Synapse from 53414 -> 75520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53414,"TargetID":75520,"Directional":true}]},{"ID":9123,"SourceStructureID":5530,"TargetStructureID":75521,"Label":"5530-75521 via Ribbon Synapse from 53413 -> 75523","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53413,"TargetID":75523,"Directional":true}]},{"ID":9124,"SourceStructureID":5530,"TargetStructureID":75780,"Label":"5530-75780 via Ribbon Synapse from 75779 -> 75781, 75786 -> 75787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75779,"TargetID":75781,"Directional":true},{"SourceID":75786,"TargetID":75787,"Directional":true}]},{"ID":9125,"SourceStructureID":5530,"TargetStructureID":75782,"Label":"5530-75782 via Ribbon Synapse from 75779 -> 75785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75779,"TargetID":75785,"Directional":true}]},{"ID":9126,"SourceStructureID":5530,"TargetStructureID":75795,"Label":"5530-75795 via Ribbon Synapse from 75800 -> 75803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75800,"TargetID":75803,"Directional":true}]},{"ID":9127,"SourceStructureID":5530,"TargetStructureID":75796,"Label":"5530-75796 via Ribbon Synapse from 75797 -> 75798, 75800 -> 75802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75797,"TargetID":75798,"Directional":true},{"SourceID":75800,"TargetID":75802,"Directional":true}]},{"ID":9128,"SourceStructureID":5530,"TargetStructureID":75890,"Label":"5530-75890 via Ribbon Synapse from 75889 -> 75891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75889,"TargetID":75891,"Directional":true}]},{"ID":9129,"SourceStructureID":5530,"TargetStructureID":75898,"Label":"5530-75898 via Ribbon Synapse from 75897 -> 75899","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75897,"TargetID":75899,"Directional":true}]},{"ID":9130,"SourceStructureID":5530,"TargetStructureID":75911,"Label":"5530-75911 via Ribbon Synapse from 75909 -> 75914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75909,"TargetID":75914,"Directional":true}]},{"ID":9131,"SourceStructureID":5530,"TargetStructureID":76483,"Label":"5530-76483 via Ribbon Synapse from 76486 -> 76487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76486,"TargetID":76487,"Directional":true}]},{"ID":9132,"SourceStructureID":5530,"TargetStructureID":76489,"Label":"5530-76489 via Ribbon Synapse from 76486 -> 76491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76486,"TargetID":76491,"Directional":true}]},{"ID":9133,"SourceStructureID":5530,"TargetStructureID":76492,"Label":"5530-76492 via Ribbon Synapse from 35304 -> 76493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35304,"TargetID":76493,"Directional":true}]},{"ID":9134,"SourceStructureID":5530,"TargetStructureID":76764,"Label":"5530-76764 via Ribbon Synapse from 76763 -> 76765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76763,"TargetID":76765,"Directional":true}]},{"ID":9135,"SourceStructureID":5530,"TargetStructureID":76770,"Label":"5530-76770 via Ribbon Synapse from 76769 -> 76772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76769,"TargetID":76772,"Directional":true}]},{"ID":9136,"SourceStructureID":5530,"TargetStructureID":76771,"Label":"5530-76771 via Ribbon Synapse from 76769 -> 76773","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76769,"TargetID":76773,"Directional":true}]},{"ID":9137,"SourceStructureID":5530,"TargetStructureID":77332,"Label":"5530-77332 via Ribbon Synapse from 82586 -> 82585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82586,"TargetID":82585,"Directional":true}]},{"ID":9138,"SourceStructureID":5530,"TargetStructureID":77342,"Label":"5530-77342 via Ribbon Synapse from 77345 -> 77349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77345,"TargetID":77349,"Directional":true}]},{"ID":9139,"SourceStructureID":5530,"TargetStructureID":77347,"Label":"5530-77347 via Ribbon Synapse from 77345 -> 77348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77345,"TargetID":77348,"Directional":true}]},{"ID":9140,"SourceStructureID":5530,"TargetStructureID":77428,"Label":"5530-77428 via Ribbon Synapse from 44247 -> 77431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44247,"TargetID":77431,"Directional":true}]},{"ID":9141,"SourceStructureID":5530,"TargetStructureID":77632,"Label":"5530-77632 via Ribbon Synapse from 77631 -> 77634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77631,"TargetID":77634,"Directional":true}]},{"ID":9142,"SourceStructureID":5530,"TargetStructureID":77633,"Label":"5530-77633 via Ribbon Synapse from 77631 -> 77635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77631,"TargetID":77635,"Directional":true}]},{"ID":9143,"SourceStructureID":5530,"TargetStructureID":77641,"Label":"5530-77641 via Ribbon Synapse from 77640 -> 77643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77640,"TargetID":77643,"Directional":true}]},{"ID":9144,"SourceStructureID":5530,"TargetStructureID":77642,"Label":"5530-77642 via Ribbon Synapse from 77640 -> 77644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77640,"TargetID":77644,"Directional":true}]},{"ID":9145,"SourceStructureID":5530,"TargetStructureID":77652,"Label":"5530-77652 via Ribbon Synapse from 77650 -> 77653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77650,"TargetID":77653,"Directional":true}]},{"ID":9146,"SourceStructureID":5530,"TargetStructureID":77905,"Label":"5530-77905 via Ribbon Synapse from 17908 -> 82342","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17908,"TargetID":82342,"Directional":true}]},{"ID":9147,"SourceStructureID":5530,"TargetStructureID":77918,"Label":"5530-77918 via Ribbon Synapse from 77917 -> 77921, 77919 -> 77921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77917,"TargetID":77921,"Directional":true},{"SourceID":77919,"TargetID":77921,"Directional":true}]},{"ID":9148,"SourceStructureID":5530,"TargetStructureID":79061,"Label":"5530-79061 via Ribbon Synapse from 50952 -> 79062","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50952,"TargetID":79062,"Directional":true}]},{"ID":9149,"SourceStructureID":5530,"TargetStructureID":79159,"Label":"5530-79159 via Ribbon Synapse from 42137 -> 80709, 42138 -> 80709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42137,"TargetID":80709,"Directional":true},{"SourceID":42138,"TargetID":80709,"Directional":true}]},{"ID":9150,"SourceStructureID":5530,"TargetStructureID":79264,"Label":"5530-79264 via Ribbon Synapse from 126450 -> 79269","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126450,"TargetID":79269,"Directional":true}]},{"ID":9151,"SourceStructureID":5530,"TargetStructureID":79549,"Label":"5530-79549 via Ribbon Synapse from 42108 -> 79550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42108,"TargetID":79550,"Directional":true}]},{"ID":9152,"SourceStructureID":5530,"TargetStructureID":79551,"Label":"5530-79551 via Ribbon Synapse from 42107 -> 79552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42107,"TargetID":79552,"Directional":true}]},{"ID":9153,"SourceStructureID":5530,"TargetStructureID":79555,"Label":"5530-79555 via Ribbon Synapse from 42106 -> 79556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42106,"TargetID":79556,"Directional":true}]},{"ID":9154,"SourceStructureID":5530,"TargetStructureID":80182,"Label":"5530-80182 via Ribbon Synapse from 42101 -> 80183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42101,"TargetID":80183,"Directional":true}]},{"ID":9155,"SourceStructureID":5530,"TargetStructureID":80190,"Label":"5530-80190 via Ribbon Synapse from 42104 -> 80195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42104,"TargetID":80195,"Directional":true}]},{"ID":9156,"SourceStructureID":5530,"TargetStructureID":80208,"Label":"5530-80208 via Ribbon Synapse from 80205 -> 80212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80205,"TargetID":80212,"Directional":true}]},{"ID":9157,"SourceStructureID":5530,"TargetStructureID":80210,"Label":"5530-80210 via Ribbon Synapse from 80205 -> 80218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80205,"TargetID":80218,"Directional":true}]},{"ID":9158,"SourceStructureID":5530,"TargetStructureID":80228,"Label":"5530-80228 via Ribbon Synapse from 42110 -> 80231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42110,"TargetID":80231,"Directional":true}]},{"ID":9159,"SourceStructureID":5530,"TargetStructureID":80417,"Label":"5530-80417 via Ribbon Synapse from 80415 -> 83041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80415,"TargetID":83041,"Directional":true}]},{"ID":9160,"SourceStructureID":5530,"TargetStructureID":80425,"Label":"5530-80425 via Ribbon Synapse from 80429 -> 80430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80429,"TargetID":80430,"Directional":true}]},{"ID":9161,"SourceStructureID":5530,"TargetStructureID":80433,"Label":"5530-80433 via Ribbon Synapse from 42117 -> 80435","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42117,"TargetID":80435,"Directional":true}]},{"ID":9162,"SourceStructureID":5530,"TargetStructureID":80436,"Label":"5530-80436 via Ribbon Synapse from 42117 -> 80437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42117,"TargetID":80437,"Directional":true}]},{"ID":9163,"SourceStructureID":5530,"TargetStructureID":80483,"Label":"5530-80483 via Ribbon Synapse from 42126 -> 80485","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42126,"TargetID":80485,"Directional":true}]},{"ID":9164,"SourceStructureID":5530,"TargetStructureID":80484,"Label":"5530-80484 via Ribbon Synapse from 42126 -> 80486","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42126,"TargetID":80486,"Directional":true}]},{"ID":9165,"SourceStructureID":5530,"TargetStructureID":80495,"Label":"5530-80495 via Ribbon Synapse from 42127 -> 80497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42127,"TargetID":80497,"Directional":true}]},{"ID":9166,"SourceStructureID":5530,"TargetStructureID":80498,"Label":"5530-80498 via Ribbon Synapse from 30119 -> 80499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30119,"TargetID":80499,"Directional":true}]},{"ID":9167,"SourceStructureID":5530,"TargetStructureID":80501,"Label":"5530-80501 via Ribbon Synapse from 80500 -> 80502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80500,"TargetID":80502,"Directional":true}]},{"ID":9168,"SourceStructureID":5530,"TargetStructureID":80568,"Label":"5530-80568 via Ribbon Synapse from 39713 -> 80571","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39713,"TargetID":80571,"Directional":true}]},{"ID":9169,"SourceStructureID":5530,"TargetStructureID":80569,"Label":"5530-80569 via Ribbon Synapse from 39713 -> 80570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39713,"TargetID":80570,"Directional":true}]},{"ID":9170,"SourceStructureID":5530,"TargetStructureID":80592,"Label":"5530-80592 via Ribbon Synapse from 39715 -> 80593","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39715,"TargetID":80593,"Directional":true}]},{"ID":9171,"SourceStructureID":5530,"TargetStructureID":80713,"Label":"5530-80713 via Ribbon Synapse from 80715 -> 80716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80715,"TargetID":80716,"Directional":true}]},{"ID":9172,"SourceStructureID":5530,"TargetStructureID":80971,"Label":"5530-80971 via Ribbon Synapse from 42141 -> 80972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42141,"TargetID":80972,"Directional":true}]},{"ID":9173,"SourceStructureID":5530,"TargetStructureID":80980,"Label":"5530-80980 via Ribbon Synapse from 42139 -> 80982","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42139,"TargetID":80982,"Directional":true}]},{"ID":9174,"SourceStructureID":5530,"TargetStructureID":81003,"Label":"5530-81003 via Ribbon Synapse from 42145 -> 81006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42145,"TargetID":81006,"Directional":true}]},{"ID":9175,"SourceStructureID":5530,"TargetStructureID":81008,"Label":"5530-81008 via Ribbon Synapse from 42148 -> 81010","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42148,"TargetID":81010,"Directional":true}]},{"ID":9176,"SourceStructureID":5530,"TargetStructureID":81014,"Label":"5530-81014 via Ribbon Synapse from 42148 -> 81015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42148,"TargetID":81015,"Directional":true}]},{"ID":9177,"SourceStructureID":5530,"TargetStructureID":81123,"Label":"5530-81123 via Ribbon Synapse from 55178 -> 81126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55178,"TargetID":81126,"Directional":true}]},{"ID":9178,"SourceStructureID":5530,"TargetStructureID":81207,"Label":"5530-81207 via Ribbon Synapse from 81206 -> 81208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81206,"TargetID":81208,"Directional":true}]},{"ID":9179,"SourceStructureID":5530,"TargetStructureID":81215,"Label":"5530-81215 via Ribbon Synapse from 55205 -> 81216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55205,"TargetID":81216,"Directional":true}]},{"ID":9180,"SourceStructureID":5530,"TargetStructureID":81244,"Label":"5530-81244 via Ribbon Synapse from 81243 -> 81247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81243,"TargetID":81247,"Directional":true}]},{"ID":9181,"SourceStructureID":5530,"TargetStructureID":81250,"Label":"5530-81250 via Ribbon Synapse from 81248 -> 81251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81248,"TargetID":81251,"Directional":true}]},{"ID":9182,"SourceStructureID":5530,"TargetStructureID":81566,"Label":"5530-81566 via Ribbon Synapse from 54063 -> 81575","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54063,"TargetID":81575,"Directional":true}]},{"ID":9183,"SourceStructureID":5530,"TargetStructureID":81637,"Label":"5530-81637 via Ribbon Synapse from 115794 -> 115795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115794,"TargetID":115795,"Directional":true}]},{"ID":9184,"SourceStructureID":5530,"TargetStructureID":81857,"Label":"5530-81857 via Ribbon Synapse from 130672 -> 81858","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130672,"TargetID":81858,"Directional":true}]},{"ID":9185,"SourceStructureID":5530,"TargetStructureID":81862,"Label":"5530-81862 via Ribbon Synapse from 54055 -> 81864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54055,"TargetID":81864,"Directional":true}]},{"ID":9186,"SourceStructureID":5530,"TargetStructureID":82060,"Label":"5530-82060 via Ribbon Synapse from 82059 -> 82063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82059,"TargetID":82063,"Directional":true}]},{"ID":9187,"SourceStructureID":5530,"TargetStructureID":82061,"Label":"5530-82061 via Ribbon Synapse from 82059 -> 82062","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82059,"TargetID":82062,"Directional":true}]},{"ID":9188,"SourceStructureID":5530,"TargetStructureID":83051,"Label":"5530-83051 via Ribbon Synapse from 75484 -> 83052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75484,"TargetID":83052,"Directional":true}]},{"ID":9189,"SourceStructureID":5530,"TargetStructureID":147696,"Label":"5530-147696 via Ribbon Synapse from 42148 -> 147729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42148,"TargetID":147729,"Directional":true}]},{"ID":9190,"SourceStructureID":5531,"TargetStructureID":606,"Label":"5531-606 via Ribbon Synapse from 45213 -> 10517, 53538 -> 53539, 53929 -> 53930, 54136 -> 54137","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45213,"TargetID":10517,"Directional":true},{"SourceID":53538,"TargetID":53539,"Directional":true},{"SourceID":53929,"TargetID":53930,"Directional":true},{"SourceID":54136,"TargetID":54137,"Directional":true}]},{"ID":9191,"SourceStructureID":5531,"TargetStructureID":5118,"Label":"5531-5118 via BC Conventional Synapse from 120313 -> 120314","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120313,"TargetID":120314,"Directional":true}]},{"ID":9192,"SourceStructureID":5531,"TargetStructureID":5451,"Label":"5531-5451 via Ribbon Synapse from 55168 -> 55169","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55168,"TargetID":55169,"Directional":true}]},{"ID":9193,"SourceStructureID":5531,"TargetStructureID":5453,"Label":"5531-5453 via Ribbon Synapse from 54536 -> 106756, 106649 -> 106650, 113849 -> 113848","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54536,"TargetID":106756,"Directional":true},{"SourceID":106649,"TargetID":106650,"Directional":true},{"SourceID":113849,"TargetID":113848,"Directional":true}]},{"ID":9194,"SourceStructureID":5531,"TargetStructureID":5481,"Label":"5531-5481 via Ribbon Synapse from 62920 -> 62921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62920,"TargetID":62921,"Directional":true}]},{"ID":9195,"SourceStructureID":5531,"TargetStructureID":7274,"Label":"5531-7274 via BC Conventional Synapse from 113967 -> 41805","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":113967,"TargetID":41805,"Directional":true}]},{"ID":9196,"SourceStructureID":5531,"TargetStructureID":7274,"Label":"5531-7274 via Ribbon Synapse from 113957 -> 41808","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113957,"TargetID":41808,"Directional":true}]},{"ID":9197,"SourceStructureID":5531,"TargetStructureID":8575,"Label":"5531-8575 via BC Conventional Synapse from 147401 -> 147400","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147401,"TargetID":147400,"Directional":true}]},{"ID":9198,"SourceStructureID":5531,"TargetStructureID":8575,"Label":"5531-8575 via Ribbon Synapse from 113846 -> 62359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113846,"TargetID":62359,"Directional":true}]},{"ID":9199,"SourceStructureID":5531,"TargetStructureID":15796,"Label":"5531-15796 via BC Conventional Synapse from 125992 -> 92624","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125992,"TargetID":92624,"Directional":true}]},{"ID":9200,"SourceStructureID":5531,"TargetStructureID":15796,"Label":"5531-15796 via Ribbon Synapse from 125914 -> 107168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125914,"TargetID":107168,"Directional":true}]},{"ID":9201,"SourceStructureID":5531,"TargetStructureID":43874,"Label":"5531-43874 via Ribbon Synapse from 54547 -> 106741, 106746 -> 106741","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54547,"TargetID":106741,"Directional":true},{"SourceID":106746,"TargetID":106741,"Directional":true}]},{"ID":9202,"SourceStructureID":5531,"TargetStructureID":44346,"Label":"5531-44346 via Ribbon Synapse from 114744 -> 44818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114744,"TargetID":44818,"Directional":true}]},{"ID":9203,"SourceStructureID":5531,"TargetStructureID":54913,"Label":"5531-54913 via Ribbon Synapse from 54917 -> 54916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54917,"TargetID":54916,"Directional":true}]},{"ID":9204,"SourceStructureID":5531,"TargetStructureID":79256,"Label":"5531-79256 via Ribbon Synapse from 112456 -> 112457","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112456,"TargetID":112457,"Directional":true}]},{"ID":9205,"SourceStructureID":5531,"TargetStructureID":81618,"Label":"5531-81618 via BC Conventional Synapse from 105215 -> 105214","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105215,"TargetID":105214,"Directional":true}]},{"ID":9206,"SourceStructureID":5531,"TargetStructureID":82070,"Label":"5531-82070 via Ribbon Synapse from 40520 -> 82508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40520,"TargetID":82508,"Directional":true}]},{"ID":9207,"SourceStructureID":5531,"TargetStructureID":82071,"Label":"5531-82071 via Ribbon Synapse from 82501 -> 82502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82501,"TargetID":82502,"Directional":true}]},{"ID":9208,"SourceStructureID":5531,"TargetStructureID":82569,"Label":"5531-82569 via Ribbon Synapse from 82568 -> 82570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82568,"TargetID":82570,"Directional":true}]},{"ID":9209,"SourceStructureID":5531,"TargetStructureID":82832,"Label":"5531-82832 via Ribbon Synapse from 107190 -> 107191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107190,"TargetID":107191,"Directional":true}]},{"ID":9210,"SourceStructureID":5531,"TargetStructureID":82897,"Label":"5531-82897 via Ribbon Synapse from 110684 -> 110685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110684,"TargetID":110685,"Directional":true}]},{"ID":9211,"SourceStructureID":5531,"TargetStructureID":88260,"Label":"5531-88260 via Ribbon Synapse from 88272 -> 88269","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88272,"TargetID":88269,"Directional":true}]},{"ID":9212,"SourceStructureID":5531,"TargetStructureID":93431,"Label":"5531-93431 via BC Conventional Synapse from 147455 -> 147454","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147455,"TargetID":147454,"Directional":true}]},{"ID":9213,"SourceStructureID":5531,"TargetStructureID":95195,"Label":"5531-95195 via Ribbon Synapse from 147423 -> 147424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147423,"TargetID":147424,"Directional":true}]},{"ID":9214,"SourceStructureID":5531,"TargetStructureID":96266,"Label":"5531-96266 via Ribbon Synapse from 96839 -> 107106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96839,"TargetID":107106,"Directional":true}]},{"ID":9215,"SourceStructureID":5531,"TargetStructureID":96832,"Label":"5531-96832 via Ribbon Synapse from 96839 -> 96833","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96839,"TargetID":96833,"Directional":true}]},{"ID":9216,"SourceStructureID":5531,"TargetStructureID":96837,"Label":"5531-96837 via Ribbon Synapse from 96839 -> 96838","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96839,"TargetID":96838,"Directional":true}]},{"ID":9217,"SourceStructureID":5531,"TargetStructureID":96872,"Label":"5531-96872 via Ribbon Synapse from 106513 -> 107173","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106513,"TargetID":107173,"Directional":true}]},{"ID":9218,"SourceStructureID":5531,"TargetStructureID":96891,"Label":"5531-96891 via Ribbon Synapse from 125914 -> 107169","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125914,"TargetID":107169,"Directional":true}]},{"ID":9219,"SourceStructureID":5531,"TargetStructureID":96893,"Label":"5531-96893 via Ribbon Synapse from 106526 -> 107167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106526,"TargetID":107167,"Directional":true}]},{"ID":9220,"SourceStructureID":5531,"TargetStructureID":105210,"Label":"5531-105210 via Ribbon Synapse from 82568 -> 105211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82568,"TargetID":105211,"Directional":true}]},{"ID":9221,"SourceStructureID":5531,"TargetStructureID":105222,"Label":"5531-105222 via Ribbon Synapse from 40549 -> 105225","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40549,"TargetID":105225,"Directional":true}]},{"ID":9222,"SourceStructureID":5531,"TargetStructureID":105223,"Label":"5531-105223 via Ribbon Synapse from 40549 -> 105224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40549,"TargetID":105224,"Directional":true}]},{"ID":9223,"SourceStructureID":5531,"TargetStructureID":105226,"Label":"5531-105226 via Ribbon Synapse from 40550 -> 105227","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40550,"TargetID":105227,"Directional":true}]},{"ID":9224,"SourceStructureID":5531,"TargetStructureID":105232,"Label":"5531-105232 via Ribbon Synapse from 40538 -> 105233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40538,"TargetID":105233,"Directional":true}]},{"ID":9225,"SourceStructureID":5531,"TargetStructureID":105234,"Label":"5531-105234 via BC Conventional Synapse from 105235 -> 105236","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105235,"TargetID":105236,"Directional":true}]},{"ID":9226,"SourceStructureID":5531,"TargetStructureID":105239,"Label":"5531-105239 via Ribbon Synapse from 105238 -> 105240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105238,"TargetID":105240,"Directional":true}]},{"ID":9227,"SourceStructureID":5531,"TargetStructureID":105241,"Label":"5531-105241 via BC Conventional Synapse from 105242 -> 105244","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105242,"TargetID":105244,"Directional":true}]},{"ID":9228,"SourceStructureID":5531,"TargetStructureID":105241,"Label":"5531-105241 via Ribbon Synapse from 40522 -> 147432","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40522,"TargetID":147432,"Directional":true}]},{"ID":9229,"SourceStructureID":5531,"TargetStructureID":105255,"Label":"5531-105255 via Ribbon Synapse from 105256 -> 105257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105256,"TargetID":105257,"Directional":true}]},{"ID":9230,"SourceStructureID":5531,"TargetStructureID":105262,"Label":"5531-105262 via Ribbon Synapse from 105263 -> 105264","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105263,"TargetID":105264,"Directional":true}]},{"ID":9231,"SourceStructureID":5531,"TargetStructureID":105265,"Label":"5531-105265 via Ribbon Synapse from 105267 -> 105290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105267,"TargetID":105290,"Directional":true}]},{"ID":9232,"SourceStructureID":5531,"TargetStructureID":105269,"Label":"5531-105269 via Ribbon Synapse from 105268 -> 105272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105268,"TargetID":105272,"Directional":true}]},{"ID":9233,"SourceStructureID":5531,"TargetStructureID":105273,"Label":"5531-105273 via Ribbon Synapse from 105268 -> 105274","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105268,"TargetID":105274,"Directional":true}]},{"ID":9234,"SourceStructureID":5531,"TargetStructureID":105285,"Label":"5531-105285 via Ribbon Synapse from 105286 -> 105289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105286,"TargetID":105289,"Directional":true}]},{"ID":9235,"SourceStructureID":5531,"TargetStructureID":105287,"Label":"5531-105287 via Ribbon Synapse from 105286 -> 105288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105286,"TargetID":105288,"Directional":true}]},{"ID":9236,"SourceStructureID":5531,"TargetStructureID":105311,"Label":"5531-105311 via Ribbon Synapse from 105310 -> 105312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105310,"TargetID":105312,"Directional":true}]},{"ID":9237,"SourceStructureID":5531,"TargetStructureID":105313,"Label":"5531-105313 via Ribbon Synapse from 106200 -> 106201","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106200,"TargetID":106201,"Directional":true}]},{"ID":9238,"SourceStructureID":5531,"TargetStructureID":105324,"Label":"5531-105324 via Ribbon Synapse from 62923 -> 105330","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62923,"TargetID":105330,"Directional":true}]},{"ID":9239,"SourceStructureID":5531,"TargetStructureID":105325,"Label":"5531-105325 via Ribbon Synapse from 62923 -> 105327","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62923,"TargetID":105327,"Directional":true}]},{"ID":9240,"SourceStructureID":5531,"TargetStructureID":105331,"Label":"5531-105331 via BC Conventional Synapse from 105336 -> 105334","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105336,"TargetID":105334,"Directional":true}]},{"ID":9241,"SourceStructureID":5531,"TargetStructureID":105360,"Label":"5531-105360 via Ribbon Synapse from 105361 -> 105362","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105361,"TargetID":105362,"Directional":true}]},{"ID":9242,"SourceStructureID":5531,"TargetStructureID":106141,"Label":"5531-106141 via Ribbon Synapse from 62929 -> 106142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62929,"TargetID":106142,"Directional":true}]},{"ID":9243,"SourceStructureID":5531,"TargetStructureID":106151,"Label":"5531-106151 via Ribbon Synapse from 62932 -> 106152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62932,"TargetID":106152,"Directional":true}]},{"ID":9244,"SourceStructureID":5531,"TargetStructureID":106156,"Label":"5531-106156 via Ribbon Synapse from 82501 -> 106157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82501,"TargetID":106157,"Directional":true}]},{"ID":9245,"SourceStructureID":5531,"TargetStructureID":106164,"Label":"5531-106164 via Ribbon Synapse from 62925 -> 106167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62925,"TargetID":106167,"Directional":true}]},{"ID":9246,"SourceStructureID":5531,"TargetStructureID":106165,"Label":"5531-106165 via Ribbon Synapse from 62925 -> 106166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62925,"TargetID":106166,"Directional":true}]},{"ID":9247,"SourceStructureID":5531,"TargetStructureID":106168,"Label":"5531-106168 via Ribbon Synapse from 62926 -> 106169, 62926 -> 136320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62926,"TargetID":106169,"Directional":true},{"SourceID":62926,"TargetID":136320,"Directional":true}]},{"ID":9248,"SourceStructureID":5531,"TargetStructureID":106175,"Label":"5531-106175 via Ribbon Synapse from 62928 -> 106176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62928,"TargetID":106176,"Directional":true}]},{"ID":9249,"SourceStructureID":5531,"TargetStructureID":106177,"Label":"5531-106177 via Ribbon Synapse from 62928 -> 106178","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62928,"TargetID":106178,"Directional":true}]},{"ID":9250,"SourceStructureID":5531,"TargetStructureID":106179,"Label":"5531-106179 via Ribbon Synapse from 62928 -> 106180","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62928,"TargetID":106180,"Directional":true}]},{"ID":9251,"SourceStructureID":5531,"TargetStructureID":106189,"Label":"5531-106189 via Ribbon Synapse from 40515 -> 106190","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40515,"TargetID":106190,"Directional":true}]},{"ID":9252,"SourceStructureID":5531,"TargetStructureID":106197,"Label":"5531-106197 via Ribbon Synapse from 106198 -> 106199","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106198,"TargetID":106199,"Directional":true}]},{"ID":9253,"SourceStructureID":5531,"TargetStructureID":106204,"Label":"5531-106204 via Ribbon Synapse from 40511 -> 106205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40511,"TargetID":106205,"Directional":true}]},{"ID":9254,"SourceStructureID":5531,"TargetStructureID":106206,"Label":"5531-106206 via Ribbon Synapse from 40511 -> 106207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40511,"TargetID":106207,"Directional":true}]},{"ID":9255,"SourceStructureID":5531,"TargetStructureID":106211,"Label":"5531-106211 via Ribbon Synapse from 40512 -> 106212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40512,"TargetID":106212,"Directional":true}]},{"ID":9256,"SourceStructureID":5531,"TargetStructureID":106213,"Label":"5531-106213 via Ribbon Synapse from 40512 -> 106214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40512,"TargetID":106214,"Directional":true}]},{"ID":9257,"SourceStructureID":5531,"TargetStructureID":106221,"Label":"5531-106221 via Ribbon Synapse from 40510 -> 106223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40510,"TargetID":106223,"Directional":true}]},{"ID":9258,"SourceStructureID":5531,"TargetStructureID":106224,"Label":"5531-106224 via Ribbon Synapse from 40510 -> 106226","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40510,"TargetID":106226,"Directional":true}]},{"ID":9259,"SourceStructureID":5531,"TargetStructureID":106227,"Label":"5531-106227 via Ribbon Synapse from 40509 -> 106228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40509,"TargetID":106228,"Directional":true}]},{"ID":9260,"SourceStructureID":5531,"TargetStructureID":106230,"Label":"5531-106230 via BC Conventional Synapse from 120317 -> 120315","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120317,"TargetID":120315,"Directional":true}]},{"ID":9261,"SourceStructureID":5531,"TargetStructureID":106253,"Label":"5531-106253 via Ribbon Synapse from 40514 -> 106255","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40514,"TargetID":106255,"Directional":true}]},{"ID":9262,"SourceStructureID":5531,"TargetStructureID":106256,"Label":"5531-106256 via Ribbon Synapse from 106262 -> 106265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106262,"TargetID":106265,"Directional":true}]},{"ID":9263,"SourceStructureID":5531,"TargetStructureID":106263,"Label":"5531-106263 via Ribbon Synapse from 106262 -> 106264","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106262,"TargetID":106264,"Directional":true}]},{"ID":9264,"SourceStructureID":5531,"TargetStructureID":106484,"Label":"5531-106484 via BC Conventional Synapse from 91662 -> 107653","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91662,"TargetID":107653,"Directional":true}]},{"ID":9265,"SourceStructureID":5531,"TargetStructureID":106486,"Label":"5531-106486 via Ribbon Synapse from 106485 -> 106487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106485,"TargetID":106487,"Directional":true}]},{"ID":9266,"SourceStructureID":5531,"TargetStructureID":106493,"Label":"5531-106493 via Ribbon Synapse from 106488 -> 106494, 106499 -> 107984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106488,"TargetID":106494,"Directional":true},{"SourceID":106499,"TargetID":107984,"Directional":true}]},{"ID":9267,"SourceStructureID":5531,"TargetStructureID":106495,"Label":"5531-106495 via Ribbon Synapse from 106488 -> 106496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106488,"TargetID":106496,"Directional":true}]},{"ID":9268,"SourceStructureID":5531,"TargetStructureID":106586,"Label":"5531-106586 via Ribbon Synapse from 106585 -> 106587","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106585,"TargetID":106587,"Directional":true}]},{"ID":9269,"SourceStructureID":5531,"TargetStructureID":106625,"Label":"5531-106625 via Ribbon Synapse from 91668 -> 106634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91668,"TargetID":106634,"Directional":true}]},{"ID":9270,"SourceStructureID":5531,"TargetStructureID":106628,"Label":"5531-106628 via Ribbon Synapse from 91668 -> 106635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91668,"TargetID":106635,"Directional":true}]},{"ID":9271,"SourceStructureID":5531,"TargetStructureID":106637,"Label":"5531-106637 via Ribbon Synapse from 54587 -> 120206","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54587,"TargetID":120206,"Directional":true}]},{"ID":9272,"SourceStructureID":5531,"TargetStructureID":106651,"Label":"5531-106651 via Ribbon Synapse from 106648 -> 106652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106648,"TargetID":106652,"Directional":true}]},{"ID":9273,"SourceStructureID":5531,"TargetStructureID":106689,"Label":"5531-106689 via BC Conventional Synapse from 133890 -> 133889","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133890,"TargetID":133889,"Directional":true}]},{"ID":9274,"SourceStructureID":5531,"TargetStructureID":106689,"Label":"5531-106689 via Ribbon Synapse from 106748 -> 106749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106748,"TargetID":106749,"Directional":true}]},{"ID":9275,"SourceStructureID":5531,"TargetStructureID":106697,"Label":"5531-106697 via Ribbon Synapse from 54560 -> 106701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54560,"TargetID":106701,"Directional":true}]},{"ID":9276,"SourceStructureID":5531,"TargetStructureID":106742,"Label":"5531-106742 via Ribbon Synapse from 106746 -> 106747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106746,"TargetID":106747,"Directional":true}]},{"ID":9277,"SourceStructureID":5531,"TargetStructureID":106757,"Label":"5531-106757 via Ribbon Synapse from 54536 -> 106758","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54536,"TargetID":106758,"Directional":true}]},{"ID":9278,"SourceStructureID":5531,"TargetStructureID":106762,"Label":"5531-106762 via Ribbon Synapse from 147402 -> 147403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147402,"TargetID":147403,"Directional":true}]},{"ID":9279,"SourceStructureID":5531,"TargetStructureID":106767,"Label":"5531-106767 via Ribbon Synapse from 54537 -> 106774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54537,"TargetID":106774,"Directional":true}]},{"ID":9280,"SourceStructureID":5531,"TargetStructureID":106775,"Label":"5531-106775 via Ribbon Synapse from 54537 -> 106777","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54537,"TargetID":106777,"Directional":true}]},{"ID":9281,"SourceStructureID":5531,"TargetStructureID":106778,"Label":"5531-106778 via Ribbon Synapse from 54535 -> 106789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54535,"TargetID":106789,"Directional":true}]},{"ID":9282,"SourceStructureID":5531,"TargetStructureID":106807,"Label":"5531-106807 via Ribbon Synapse from 54532 -> 106811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54532,"TargetID":106811,"Directional":true}]},{"ID":9283,"SourceStructureID":5531,"TargetStructureID":106813,"Label":"5531-106813 via Ribbon Synapse from 53538 -> 106823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53538,"TargetID":106823,"Directional":true}]},{"ID":9284,"SourceStructureID":5531,"TargetStructureID":106826,"Label":"5531-106826 via Ribbon Synapse from 54531 -> 106830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54531,"TargetID":106830,"Directional":true}]},{"ID":9285,"SourceStructureID":5531,"TargetStructureID":106832,"Label":"5531-106832 via Ribbon Synapse from 54528 -> 106834","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54528,"TargetID":106834,"Directional":true}]},{"ID":9286,"SourceStructureID":5531,"TargetStructureID":106835,"Label":"5531-106835 via Ribbon Synapse from 54528 -> 106845","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54528,"TargetID":106845,"Directional":true}]},{"ID":9287,"SourceStructureID":5531,"TargetStructureID":106846,"Label":"5531-106846 via Ribbon Synapse from 54545 -> 106850","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54545,"TargetID":106850,"Directional":true}]},{"ID":9288,"SourceStructureID":5531,"TargetStructureID":106875,"Label":"5531-106875 via BC Conventional Synapse from 147438 -> 147437","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147438,"TargetID":147437,"Directional":true}]},{"ID":9289,"SourceStructureID":5531,"TargetStructureID":106887,"Label":"5531-106887 via Ribbon Synapse from 54569 -> 106888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54569,"TargetID":106888,"Directional":true}]},{"ID":9290,"SourceStructureID":5531,"TargetStructureID":106890,"Label":"5531-106890 via Ribbon Synapse from 54582 -> 107415","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54582,"TargetID":107415,"Directional":true}]},{"ID":9291,"SourceStructureID":5531,"TargetStructureID":106941,"Label":"5531-106941 via Ribbon Synapse from 88271 -> 106943","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88271,"TargetID":106943,"Directional":true}]},{"ID":9292,"SourceStructureID":5531,"TargetStructureID":107170,"Label":"5531-107170 via Ribbon Synapse from 106526 -> 107171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106526,"TargetID":107171,"Directional":true}]},{"ID":9293,"SourceStructureID":5531,"TargetStructureID":107370,"Label":"5531-107370 via Ribbon Synapse from 107369 -> 107371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107369,"TargetID":107371,"Directional":true}]},{"ID":9294,"SourceStructureID":5531,"TargetStructureID":107372,"Label":"5531-107372 via Ribbon Synapse from 107369 -> 107373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107369,"TargetID":107373,"Directional":true}]},{"ID":9295,"SourceStructureID":5531,"TargetStructureID":107382,"Label":"5531-107382 via Ribbon Synapse from 107376 -> 107387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107376,"TargetID":107387,"Directional":true}]},{"ID":9296,"SourceStructureID":5531,"TargetStructureID":107401,"Label":"5531-107401 via Ribbon Synapse from 54583 -> 107411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54583,"TargetID":107411,"Directional":true}]},{"ID":9297,"SourceStructureID":5531,"TargetStructureID":107408,"Label":"5531-107408 via Ribbon Synapse from 54583 -> 107410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54583,"TargetID":107410,"Directional":true}]},{"ID":9298,"SourceStructureID":5531,"TargetStructureID":107412,"Label":"5531-107412 via Ribbon Synapse from 54582 -> 107413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54582,"TargetID":107413,"Directional":true}]},{"ID":9299,"SourceStructureID":5531,"TargetStructureID":107431,"Label":"5531-107431 via Ribbon Synapse from 91487 -> 107432","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91487,"TargetID":107432,"Directional":true}]},{"ID":9300,"SourceStructureID":5531,"TargetStructureID":107436,"Label":"5531-107436 via Ribbon Synapse from 91486 -> 107437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91486,"TargetID":107437,"Directional":true}]},{"ID":9301,"SourceStructureID":5531,"TargetStructureID":107442,"Label":"5531-107442 via BC Conventional Synapse from 91682 -> 107443","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":91682,"TargetID":107443,"Directional":true}]},{"ID":9302,"SourceStructureID":5531,"TargetStructureID":107449,"Label":"5531-107449 via Ribbon Synapse from 107448 -> 107450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107448,"TargetID":107450,"Directional":true}]},{"ID":9303,"SourceStructureID":5531,"TargetStructureID":107460,"Label":"5531-107460 via Ribbon Synapse from 107452 -> 107464, 107459 -> 107461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107452,"TargetID":107464,"Directional":true},{"SourceID":107459,"TargetID":107461,"Directional":true}]},{"ID":9304,"SourceStructureID":5531,"TargetStructureID":107468,"Label":"5531-107468 via Ribbon Synapse from 107459 -> 107469","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107459,"TargetID":107469,"Directional":true}]},{"ID":9305,"SourceStructureID":5531,"TargetStructureID":107483,"Label":"5531-107483 via Ribbon Synapse from 107515 -> 107518, 107516 -> 107517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107515,"TargetID":107518,"Directional":true},{"SourceID":107516,"TargetID":107517,"Directional":true}]},{"ID":9306,"SourceStructureID":5531,"TargetStructureID":107502,"Label":"5531-107502 via Ribbon Synapse from 107499 -> 107503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107499,"TargetID":107503,"Directional":true}]},{"ID":9307,"SourceStructureID":5531,"TargetStructureID":107504,"Label":"5531-107504 via Ribbon Synapse from 107470 -> 107505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107470,"TargetID":107505,"Directional":true}]},{"ID":9308,"SourceStructureID":5531,"TargetStructureID":107533,"Label":"5531-107533 via Ribbon Synapse from 107534 -> 107535","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107534,"TargetID":107535,"Directional":true}]},{"ID":9309,"SourceStructureID":5531,"TargetStructureID":107538,"Label":"5531-107538 via Ribbon Synapse from 107496 -> 107539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107496,"TargetID":107539,"Directional":true}]},{"ID":9310,"SourceStructureID":5531,"TargetStructureID":107551,"Label":"5531-107551 via Ribbon Synapse from 107550 -> 107552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107550,"TargetID":107552,"Directional":true}]},{"ID":9311,"SourceStructureID":5531,"TargetStructureID":107553,"Label":"5531-107553 via Ribbon Synapse from 107550 -> 107554, 107563 -> 107564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107550,"TargetID":107554,"Directional":true},{"SourceID":107563,"TargetID":107564,"Directional":true}]},{"ID":9312,"SourceStructureID":5531,"TargetStructureID":107557,"Label":"5531-107557 via Ribbon Synapse from 107555 -> 107558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107555,"TargetID":107558,"Directional":true}]},{"ID":9313,"SourceStructureID":5531,"TargetStructureID":107559,"Label":"5531-107559 via Ribbon Synapse from 107555 -> 107566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107555,"TargetID":107566,"Directional":true}]},{"ID":9314,"SourceStructureID":5531,"TargetStructureID":107560,"Label":"5531-107560 via Ribbon Synapse from 107563 -> 107565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107563,"TargetID":107565,"Directional":true}]},{"ID":9315,"SourceStructureID":5531,"TargetStructureID":107567,"Label":"5531-107567 via BC Conventional Synapse from 107568 -> 107569","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107568,"TargetID":107569,"Directional":true}]},{"ID":9316,"SourceStructureID":5531,"TargetStructureID":107575,"Label":"5531-107575 via Ribbon Synapse from 91725 -> 107576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91725,"TargetID":107576,"Directional":true}]},{"ID":9317,"SourceStructureID":5531,"TargetStructureID":107580,"Label":"5531-107580 via Ribbon Synapse from 107579 -> 107581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107579,"TargetID":107581,"Directional":true}]},{"ID":9318,"SourceStructureID":5531,"TargetStructureID":107635,"Label":"5531-107635 via Ribbon Synapse from 107634 -> 107636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107634,"TargetID":107636,"Directional":true}]},{"ID":9319,"SourceStructureID":5531,"TargetStructureID":107639,"Label":"5531-107639 via Ribbon Synapse from 91716 -> 107640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91716,"TargetID":107640,"Directional":true}]},{"ID":9320,"SourceStructureID":5531,"TargetStructureID":107646,"Label":"5531-107646 via BC Conventional Synapse from 107647 -> 107648","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107647,"TargetID":107648,"Directional":true}]},{"ID":9321,"SourceStructureID":5531,"TargetStructureID":107649,"Label":"5531-107649 via Ribbon Synapse from 91711 -> 107652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91711,"TargetID":107652,"Directional":true}]},{"ID":9322,"SourceStructureID":5531,"TargetStructureID":107654,"Label":"5531-107654 via Ribbon Synapse from 107656 -> 107660","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107656,"TargetID":107660,"Directional":true}]},{"ID":9323,"SourceStructureID":5531,"TargetStructureID":107657,"Label":"5531-107657 via Ribbon Synapse from 107656 -> 107659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107656,"TargetID":107659,"Directional":true}]},{"ID":9324,"SourceStructureID":5531,"TargetStructureID":107665,"Label":"5531-107665 via Ribbon Synapse from 107664 -> 107666","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107664,"TargetID":107666,"Directional":true}]},{"ID":9325,"SourceStructureID":5531,"TargetStructureID":107667,"Label":"5531-107667 via BC Conventional Synapse from 107671 -> 107668","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107671,"TargetID":107668,"Directional":true}]},{"ID":9326,"SourceStructureID":5531,"TargetStructureID":107667,"Label":"5531-107667 via Ribbon Synapse from 107664 -> 107669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107664,"TargetID":107669,"Directional":true}]},{"ID":9327,"SourceStructureID":5531,"TargetStructureID":107680,"Label":"5531-107680 via Ribbon Synapse from 107681 -> 107682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107681,"TargetID":107682,"Directional":true}]},{"ID":9328,"SourceStructureID":5531,"TargetStructureID":107686,"Label":"5531-107686 via Ribbon Synapse from 107690 -> 107692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107690,"TargetID":107692,"Directional":true}]},{"ID":9329,"SourceStructureID":5531,"TargetStructureID":107687,"Label":"5531-107687 via Ribbon Synapse from 107690 -> 107691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107690,"TargetID":107691,"Directional":true}]},{"ID":9330,"SourceStructureID":5531,"TargetStructureID":107699,"Label":"5531-107699 via Ribbon Synapse from 107698 -> 107700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107698,"TargetID":107700,"Directional":true}]},{"ID":9331,"SourceStructureID":5531,"TargetStructureID":107709,"Label":"5531-107709 via Ribbon Synapse from 107710 -> 107711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107710,"TargetID":107711,"Directional":true}]},{"ID":9332,"SourceStructureID":5531,"TargetStructureID":107715,"Label":"5531-107715 via BC Conventional Synapse from 107716 -> 107717","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107716,"TargetID":107717,"Directional":true}]},{"ID":9333,"SourceStructureID":5531,"TargetStructureID":107715,"Label":"5531-107715 via Ribbon Synapse from 107718 -> 107720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107718,"TargetID":107720,"Directional":true}]},{"ID":9334,"SourceStructureID":5531,"TargetStructureID":107719,"Label":"5531-107719 via Ribbon Synapse from 107718 -> 107721","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107718,"TargetID":107721,"Directional":true}]},{"ID":9335,"SourceStructureID":5531,"TargetStructureID":107723,"Label":"5531-107723 via Ribbon Synapse from 107722 -> 107724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107722,"TargetID":107724,"Directional":true}]},{"ID":9336,"SourceStructureID":5531,"TargetStructureID":107725,"Label":"5531-107725 via Ribbon Synapse from 107722 -> 107726","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107722,"TargetID":107726,"Directional":true}]},{"ID":9337,"SourceStructureID":5531,"TargetStructureID":107727,"Label":"5531-107727 via Ribbon Synapse from 107730 -> 107731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107730,"TargetID":107731,"Directional":true}]},{"ID":9338,"SourceStructureID":5531,"TargetStructureID":107732,"Label":"5531-107732 via Ribbon Synapse from 107730 -> 107733, 107734 -> 107735","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107730,"TargetID":107733,"Directional":true},{"SourceID":107734,"TargetID":107735,"Directional":true}]},{"ID":9339,"SourceStructureID":5531,"TargetStructureID":108061,"Label":"5531-108061 via BC Conventional Synapse from 108126 -> 108125","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108126,"TargetID":108125,"Directional":true}]},{"ID":9340,"SourceStructureID":5531,"TargetStructureID":110648,"Label":"5531-110648 via Ribbon Synapse from 147463 -> 147461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147463,"TargetID":147461,"Directional":true}]},{"ID":9341,"SourceStructureID":5531,"TargetStructureID":110666,"Label":"5531-110666 via Ribbon Synapse from 110665 -> 110667, 147463 -> 147462","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110665,"TargetID":110667,"Directional":true},{"SourceID":147463,"TargetID":147462,"Directional":true}]},{"ID":9342,"SourceStructureID":5531,"TargetStructureID":110681,"Label":"5531-110681 via Ribbon Synapse from 110679 -> 110682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110679,"TargetID":110682,"Directional":true}]},{"ID":9343,"SourceStructureID":5531,"TargetStructureID":110686,"Label":"5531-110686 via Ribbon Synapse from 110684 -> 114823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110684,"TargetID":114823,"Directional":true}]},{"ID":9344,"SourceStructureID":5531,"TargetStructureID":111806,"Label":"5531-111806 via Ribbon Synapse from 87140 -> 111807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87140,"TargetID":111807,"Directional":true}]},{"ID":9345,"SourceStructureID":5531,"TargetStructureID":111808,"Label":"5531-111808 via Ribbon Synapse from 56793 -> 111810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56793,"TargetID":111810,"Directional":true}]},{"ID":9346,"SourceStructureID":5531,"TargetStructureID":111812,"Label":"5531-111812 via Ribbon Synapse from 56794 -> 111815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56794,"TargetID":111815,"Directional":true}]},{"ID":9347,"SourceStructureID":5531,"TargetStructureID":111813,"Label":"5531-111813 via Ribbon Synapse from 56794 -> 111816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56794,"TargetID":111816,"Directional":true}]},{"ID":9348,"SourceStructureID":5531,"TargetStructureID":111814,"Label":"5531-111814 via Ribbon Synapse from 111817 -> 111818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111817,"TargetID":111818,"Directional":true}]},{"ID":9349,"SourceStructureID":5531,"TargetStructureID":111821,"Label":"5531-111821 via Ribbon Synapse from 111820 -> 111822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111820,"TargetID":111822,"Directional":true}]},{"ID":9350,"SourceStructureID":5531,"TargetStructureID":111823,"Label":"5531-111823 via Ribbon Synapse from 56795 -> 111824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56795,"TargetID":111824,"Directional":true}]},{"ID":9351,"SourceStructureID":5531,"TargetStructureID":111835,"Label":"5531-111835 via Ribbon Synapse from 111834 -> 111836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111834,"TargetID":111836,"Directional":true}]},{"ID":9352,"SourceStructureID":5531,"TargetStructureID":111838,"Label":"5531-111838 via Ribbon Synapse from 111837 -> 111839","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111837,"TargetID":111839,"Directional":true}]},{"ID":9353,"SourceStructureID":5531,"TargetStructureID":111842,"Label":"5531-111842 via Ribbon Synapse from 111846 -> 111847","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111846,"TargetID":111847,"Directional":true}]},{"ID":9354,"SourceStructureID":5531,"TargetStructureID":111852,"Label":"5531-111852 via Ribbon Synapse from 111851 -> 111853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111851,"TargetID":111853,"Directional":true}]},{"ID":9355,"SourceStructureID":5531,"TargetStructureID":111854,"Label":"5531-111854 via Ribbon Synapse from 56801 -> 111855","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56801,"TargetID":111855,"Directional":true}]},{"ID":9356,"SourceStructureID":5531,"TargetStructureID":111856,"Label":"5531-111856 via Ribbon Synapse from 56801 -> 111857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56801,"TargetID":111857,"Directional":true}]},{"ID":9357,"SourceStructureID":5531,"TargetStructureID":112458,"Label":"5531-112458 via Ribbon Synapse from 112456 -> 112459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112456,"TargetID":112459,"Directional":true}]},{"ID":9358,"SourceStructureID":5531,"TargetStructureID":112465,"Label":"5531-112465 via BC Conventional Synapse from 112466 -> 112467","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112466,"TargetID":112467,"Directional":true}]},{"ID":9359,"SourceStructureID":5531,"TargetStructureID":112473,"Label":"5531-112473 via Ribbon Synapse from 112472 -> 114567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112472,"TargetID":114567,"Directional":true}]},{"ID":9360,"SourceStructureID":5531,"TargetStructureID":114540,"Label":"5531-114540 via Ribbon Synapse from 107190 -> 114541","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107190,"TargetID":114541,"Directional":true}]},{"ID":9361,"SourceStructureID":5531,"TargetStructureID":114556,"Label":"5531-114556 via Ribbon Synapse from 112472 -> 114557","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112472,"TargetID":114557,"Directional":true}]},{"ID":9362,"SourceStructureID":5531,"TargetStructureID":114558,"Label":"5531-114558 via Ribbon Synapse from 112472 -> 114559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112472,"TargetID":114559,"Directional":true}]},{"ID":9363,"SourceStructureID":5531,"TargetStructureID":114560,"Label":"5531-114560 via BC Conventional Synapse from 114562 -> 114563","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":114562,"TargetID":114563,"Directional":true}]},{"ID":9364,"SourceStructureID":5531,"TargetStructureID":114564,"Label":"5531-114564 via BC Conventional Synapse from 114579 -> 114580","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":114579,"TargetID":114580,"Directional":true}]},{"ID":9365,"SourceStructureID":5531,"TargetStructureID":114568,"Label":"5531-114568 via BC Conventional Synapse from 127296 -> 127297","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":127296,"TargetID":127297,"Directional":true}]},{"ID":9366,"SourceStructureID":5531,"TargetStructureID":114573,"Label":"5531-114573 via Ribbon Synapse from 114574 -> 114575","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114574,"TargetID":114575,"Directional":true}]},{"ID":9367,"SourceStructureID":5531,"TargetStructureID":114695,"Label":"5531-114695 via BC Conventional Synapse from 114696 -> 114697","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":114696,"TargetID":114697,"Directional":true}]},{"ID":9368,"SourceStructureID":5531,"TargetStructureID":114702,"Label":"5531-114702 via Ribbon Synapse from 114701 -> 114703","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114701,"TargetID":114703,"Directional":true}]},{"ID":9369,"SourceStructureID":5531,"TargetStructureID":114705,"Label":"5531-114705 via Ribbon Synapse from 114704 -> 114706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114704,"TargetID":114706,"Directional":true}]},{"ID":9370,"SourceStructureID":5531,"TargetStructureID":114707,"Label":"5531-114707 via Ribbon Synapse from 114704 -> 114708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114704,"TargetID":114708,"Directional":true}]},{"ID":9371,"SourceStructureID":5531,"TargetStructureID":114709,"Label":"5531-114709 via BC Conventional Synapse from 114710 -> 114711","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":114710,"TargetID":114711,"Directional":true}]},{"ID":9372,"SourceStructureID":5531,"TargetStructureID":114718,"Label":"5531-114718 via Ribbon Synapse from 114719 -> 114720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114719,"TargetID":114720,"Directional":true}]},{"ID":9373,"SourceStructureID":5531,"TargetStructureID":114721,"Label":"5531-114721 via Ribbon Synapse from 114722 -> 114723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114722,"TargetID":114723,"Directional":true}]},{"ID":9374,"SourceStructureID":5531,"TargetStructureID":114724,"Label":"5531-114724 via Ribbon Synapse from 114722 -> 114725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114722,"TargetID":114725,"Directional":true}]},{"ID":9375,"SourceStructureID":5531,"TargetStructureID":114732,"Label":"5531-114732 via Ribbon Synapse from 54917 -> 114733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54917,"TargetID":114733,"Directional":true}]},{"ID":9376,"SourceStructureID":5531,"TargetStructureID":114745,"Label":"5531-114745 via Ribbon Synapse from 114746 -> 114753","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114746,"TargetID":114753,"Directional":true}]},{"ID":9377,"SourceStructureID":5531,"TargetStructureID":114747,"Label":"5531-114747 via Ribbon Synapse from 114746 -> 114752","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114746,"TargetID":114752,"Directional":true}]},{"ID":9378,"SourceStructureID":5531,"TargetStructureID":114748,"Label":"5531-114748 via Ribbon Synapse from 54651 -> 114749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54651,"TargetID":114749,"Directional":true}]},{"ID":9379,"SourceStructureID":5531,"TargetStructureID":114760,"Label":"5531-114760 via Ribbon Synapse from 54648 -> 114761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54648,"TargetID":114761,"Directional":true}]},{"ID":9380,"SourceStructureID":5531,"TargetStructureID":114763,"Label":"5531-114763 via Ribbon Synapse from 54648 -> 114764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54648,"TargetID":114764,"Directional":true}]},{"ID":9381,"SourceStructureID":5532,"TargetStructureID":13448,"Label":"5532-13448 via Ribbon Synapse from 43394 -> 13449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43394,"TargetID":13449,"Directional":true}]},{"ID":9382,"SourceStructureID":5532,"TargetStructureID":90715,"Label":"5532-90715 via Ribbon Synapse from 43155 -> 91311, 43394 -> 91320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43155,"TargetID":91311,"Directional":true},{"SourceID":43394,"TargetID":91320,"Directional":true}]},{"ID":9383,"SourceStructureID":5534,"TargetStructureID":606,"Label":"5534-606 via Ribbon Synapse from 34644 -> 54327, 44250 -> 44249, 44303 -> 44302, 49803 -> 49804, 53667 -> 53668, 54206 -> 44277, 54296 -> 44300, 54303 -> 54304","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34644,"TargetID":54327,"Directional":true},{"SourceID":44250,"TargetID":44249,"Directional":true},{"SourceID":44303,"TargetID":44302,"Directional":true},{"SourceID":49803,"TargetID":49804,"Directional":true},{"SourceID":53667,"TargetID":53668,"Directional":true},{"SourceID":54206,"TargetID":44277,"Directional":true},{"SourceID":54296,"TargetID":44300,"Directional":true},{"SourceID":54303,"TargetID":54304,"Directional":true}]},{"ID":9384,"SourceStructureID":5534,"TargetStructureID":9769,"Label":"5534-9769 via Ribbon Synapse from 29879 -> 29878, 35323 -> 29877, 45321 -> 45209","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29879,"TargetID":29878,"Directional":true},{"SourceID":35323,"TargetID":29877,"Directional":true},{"SourceID":45321,"TargetID":45209,"Directional":true}]},{"ID":9385,"SourceStructureID":5534,"TargetStructureID":32938,"Label":"5534-32938 via Ribbon Synapse from 32944 -> 32943","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32944,"TargetID":32943,"Directional":true}]},{"ID":9386,"SourceStructureID":5534,"TargetStructureID":35317,"Label":"5534-35317 via Ribbon Synapse from 35323 -> 35321","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35323,"TargetID":35321,"Directional":true}]},{"ID":9387,"SourceStructureID":5534,"TargetStructureID":45220,"Label":"5534-45220 via Ribbon Synapse from 118274 -> 45252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118274,"TargetID":45252,"Directional":true}]},{"ID":9388,"SourceStructureID":5534,"TargetStructureID":58592,"Label":"5534-58592 via Ribbon Synapse from 118350 -> 118351","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118350,"TargetID":118351,"Directional":true}]},{"ID":9389,"SourceStructureID":5534,"TargetStructureID":84118,"Label":"5534-84118 via Ribbon Synapse from 123621 -> 123622","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123621,"TargetID":123622,"Directional":true}]},{"ID":9390,"SourceStructureID":5534,"TargetStructureID":88912,"Label":"5534-88912 via Ribbon Synapse from 88917 -> 88918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88917,"TargetID":88918,"Directional":true}]},{"ID":9391,"SourceStructureID":5535,"TargetStructureID":35092,"Label":"5535-35092 via Ribbon Synapse from 35100 -> 35098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35100,"TargetID":35098,"Directional":true}]},{"ID":9392,"SourceStructureID":5536,"TargetStructureID":19571,"Label":"5536-19571 via Ribbon Synapse from 22697 -> 22714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22697,"TargetID":22714,"Directional":true}]},{"ID":9393,"SourceStructureID":5536,"TargetStructureID":20537,"Label":"5536-20537 via Ribbon Synapse from 22697 -> 23528, 22711 -> 23528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22697,"TargetID":23528,"Directional":true},{"SourceID":22711,"TargetID":23528,"Directional":true}]},{"ID":9394,"SourceStructureID":5536,"TargetStructureID":26971,"Label":"5536-26971 via Ribbon Synapse from 22645 -> 26972, 27807 -> 26972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22645,"TargetID":26972,"Directional":true},{"SourceID":27807,"TargetID":26972,"Directional":true}]},{"ID":9395,"SourceStructureID":5536,"TargetStructureID":70684,"Label":"5536-70684 via Ribbon Synapse from 27813 -> 70691, 27817 -> 70689, 27822 -> 70686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27813,"TargetID":70691,"Directional":true},{"SourceID":27817,"TargetID":70689,"Directional":true},{"SourceID":27822,"TargetID":70686,"Directional":true}]},{"ID":9396,"SourceStructureID":5537,"TargetStructureID":606,"Label":"5537-606 via Ribbon Synapse from 44957 -> 54330, 54381 -> 54380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44957,"TargetID":54330,"Directional":true},{"SourceID":54381,"TargetID":54380,"Directional":true}]},{"ID":9397,"SourceStructureID":5537,"TargetStructureID":5451,"Label":"5537-5451 via Ribbon Synapse from 44784 -> 44785, 44925 -> 44926, 44957 -> 44958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44784,"TargetID":44785,"Directional":true},{"SourceID":44925,"TargetID":44926,"Directional":true},{"SourceID":44957,"TargetID":44958,"Directional":true}]},{"ID":9398,"SourceStructureID":5537,"TargetStructureID":7594,"Label":"5537-7594 via Ribbon Synapse from 25142 -> 24396, 38187 -> 38188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25142,"TargetID":24396,"Directional":true},{"SourceID":38187,"TargetID":38188,"Directional":true}]},{"ID":9399,"SourceStructureID":5537,"TargetStructureID":10559,"Label":"5537-10559 via Ribbon Synapse from 44317 -> 44316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44317,"TargetID":44316,"Directional":true}]},{"ID":9400,"SourceStructureID":5537,"TargetStructureID":11238,"Label":"5537-11238 via Ribbon Synapse from 88356 -> 88318, 88382 -> 88378, 88383 -> 88384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88356,"TargetID":88318,"Directional":true},{"SourceID":88382,"TargetID":88378,"Directional":true},{"SourceID":88383,"TargetID":88384,"Directional":true}]},{"ID":9401,"SourceStructureID":5537,"TargetStructureID":32926,"Label":"5537-32926 via Ribbon Synapse from 32935 -> 32934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32935,"TargetID":32934,"Directional":true}]},{"ID":9402,"SourceStructureID":5537,"TargetStructureID":35188,"Label":"5537-35188 via Ribbon Synapse from 127762 -> 127763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127762,"TargetID":127763,"Directional":true}]},{"ID":9403,"SourceStructureID":5537,"TargetStructureID":45220,"Label":"5537-45220 via Ribbon Synapse from 56095 -> 45247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56095,"TargetID":45247,"Directional":true}]},{"ID":9404,"SourceStructureID":5537,"TargetStructureID":56093,"Label":"5537-56093 via Ribbon Synapse from 56095 -> 56094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56095,"TargetID":56094,"Directional":true}]},{"ID":9405,"SourceStructureID":5538,"TargetStructureID":5451,"Label":"5538-5451 via BC Conventional Synapse from 55936 -> 55937","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55936,"TargetID":55937,"Directional":true}]},{"ID":9406,"SourceStructureID":5538,"TargetStructureID":5453,"Label":"5538-5453 via Ribbon Synapse from 42198 -> 18509, 42202 -> 18504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42198,"TargetID":18509,"Directional":true},{"SourceID":42202,"TargetID":18504,"Directional":true}]},{"ID":9407,"SourceStructureID":5538,"TargetStructureID":8504,"Label":"5538-8504 via Ribbon Synapse from 45012 -> 8709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45012,"TargetID":8709,"Directional":true}]},{"ID":9408,"SourceStructureID":5538,"TargetStructureID":8551,"Label":"5538-8551 via Ribbon Synapse from 8545 -> 8566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8545,"TargetID":8566,"Directional":true}]},{"ID":9409,"SourceStructureID":5538,"TargetStructureID":16073,"Label":"5538-16073 via Ribbon Synapse from 24223 -> 24220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24223,"TargetID":24220,"Directional":true}]},{"ID":9410,"SourceStructureID":5538,"TargetStructureID":42770,"Label":"5538-42770 via Ribbon Synapse from 24222 -> 42772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24222,"TargetID":42772,"Directional":true}]},{"ID":9411,"SourceStructureID":5538,"TargetStructureID":55933,"Label":"5538-55933 via BC Conventional Synapse from 55935 -> 55934","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55935,"TargetID":55934,"Directional":true}]},{"ID":9412,"SourceStructureID":5539,"TargetStructureID":7188,"Label":"5539-7188 via Ribbon Synapse from 8514 -> 7190, 8519 -> 8516, 8521 -> 7192, 9816 -> 8517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8514,"TargetID":7190,"Directional":true},{"SourceID":8519,"TargetID":8516,"Directional":true},{"SourceID":8521,"TargetID":7192,"Directional":true},{"SourceID":9816,"TargetID":8517,"Directional":true}]},{"ID":9413,"SourceStructureID":5539,"TargetStructureID":7225,"Label":"5539-7225 via Ribbon Synapse from 10022 -> 22689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10022,"TargetID":22689,"Directional":true}]},{"ID":9414,"SourceStructureID":5539,"TargetStructureID":19572,"Label":"5539-19572 via Ribbon Synapse from 8521 -> 22625","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8521,"TargetID":22625,"Directional":true}]},{"ID":9415,"SourceStructureID":5539,"TargetStructureID":20681,"Label":"5539-20681 via Ribbon Synapse from 44471 -> 65772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44471,"TargetID":65772,"Directional":true}]},{"ID":9416,"SourceStructureID":5541,"TargetStructureID":606,"Label":"5541-606 via Ribbon Synapse from 33240 -> 44252, 33241 -> 44251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33240,"TargetID":44252,"Directional":true},{"SourceID":33241,"TargetID":44251,"Directional":true}]},{"ID":9417,"SourceStructureID":5541,"TargetStructureID":4890,"Label":"5541-4890 via Ribbon Synapse from 7914 -> 7915","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7914,"TargetID":7915,"Directional":true}]},{"ID":9418,"SourceStructureID":5541,"TargetStructureID":35325,"Label":"5541-35325 via Ribbon Synapse from 38254 -> 38249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38254,"TargetID":38249,"Directional":true}]},{"ID":9419,"SourceStructureID":5541,"TargetStructureID":71985,"Label":"5541-71985 via Ribbon Synapse from 72023 -> 72026","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72023,"TargetID":72026,"Directional":true}]},{"ID":9420,"SourceStructureID":5541,"TargetStructureID":72036,"Label":"5541-72036 via Ribbon Synapse from 72038 -> 72039, 72041 -> 72040","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72038,"TargetID":72039,"Directional":true},{"SourceID":72041,"TargetID":72040,"Directional":true}]},{"ID":9421,"SourceStructureID":5542,"TargetStructureID":456,"Label":"5542-456 via Ribbon Synapse from 39990 -> 14424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39990,"TargetID":14424,"Directional":true}]},{"ID":9422,"SourceStructureID":5542,"TargetStructureID":7564,"Label":"5542-7564 via Ribbon Synapse from 29055 -> 29049","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29055,"TargetID":29049,"Directional":true}]},{"ID":9423,"SourceStructureID":5542,"TargetStructureID":13525,"Label":"5542-13525 via Ribbon Synapse from 95794 -> 85330, 133824 -> 129028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95794,"TargetID":85330,"Directional":true},{"SourceID":133824,"TargetID":129028,"Directional":true}]},{"ID":9424,"SourceStructureID":5542,"TargetStructureID":90715,"Label":"5542-90715 via Ribbon Synapse from 43158 -> 91225, 43164 -> 91027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43158,"TargetID":91225,"Directional":true},{"SourceID":43164,"TargetID":91027,"Directional":true}]},{"ID":9425,"SourceStructureID":5542,"TargetStructureID":130365,"Label":"5542-130365 via Ribbon Synapse from 95796 -> 130367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95796,"TargetID":130367,"Directional":true}]},{"ID":9426,"SourceStructureID":5542,"TargetStructureID":137122,"Label":"5542-137122 via Ribbon Synapse from 137132 -> 137130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137132,"TargetID":137130,"Directional":true}]},{"ID":9427,"SourceStructureID":5543,"TargetStructureID":5453,"Label":"5543-5453 via Ribbon Synapse from 17033 -> 18570, 17095 -> 18664, 17096 -> 18674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17033,"TargetID":18570,"Directional":true},{"SourceID":17095,"TargetID":18664,"Directional":true},{"SourceID":17096,"TargetID":18674,"Directional":true}]},{"ID":9428,"SourceStructureID":5543,"TargetStructureID":7703,"Label":"5543-7703 via Ribbon Synapse from 17018 -> 17020, 17091 -> 18652, 17096 -> 18591, 17097 -> 18592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17018,"TargetID":17020,"Directional":true},{"SourceID":17091,"TargetID":18652,"Directional":true},{"SourceID":17096,"TargetID":18591,"Directional":true},{"SourceID":17097,"TargetID":18592,"Directional":true}]},{"ID":9429,"SourceStructureID":5543,"TargetStructureID":8575,"Label":"5543-8575 via BC Conventional Synapse from 55284 -> 37282","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55284,"TargetID":37282,"Directional":true}]},{"ID":9430,"SourceStructureID":5543,"TargetStructureID":98590,"Label":"5543-98590 via Ribbon Synapse from 17088 -> 117185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17088,"TargetID":117185,"Directional":true}]},{"ID":9431,"SourceStructureID":5543,"TargetStructureID":101369,"Label":"5543-101369 via Ribbon Synapse from 101421 -> 101416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101421,"TargetID":101416,"Directional":true}]},{"ID":9432,"SourceStructureID":5543,"TargetStructureID":135225,"Label":"5543-135225 via Ribbon Synapse from 17131 -> 135241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17131,"TargetID":135241,"Directional":true}]},{"ID":9433,"SourceStructureID":5544,"TargetStructureID":458,"Label":"5544-458 via Ribbon Synapse from 44714 -> 14491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44714,"TargetID":14491,"Directional":true}]},{"ID":9434,"SourceStructureID":5544,"TargetStructureID":5421,"Label":"5544-5421 via Ribbon Synapse from 44703 -> 130831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44703,"TargetID":130831,"Directional":true}]},{"ID":9435,"SourceStructureID":5544,"TargetStructureID":5422,"Label":"5544-5422 via Ribbon Synapse from 74125 -> 74124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74125,"TargetID":74124,"Directional":true}]},{"ID":9436,"SourceStructureID":5544,"TargetStructureID":7564,"Label":"5544-7564 via Ribbon Synapse from 44703 -> 44707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44703,"TargetID":44707,"Directional":true}]},{"ID":9437,"SourceStructureID":5544,"TargetStructureID":20681,"Label":"5544-20681 via Ribbon Synapse from 45082 -> 65811, 65804 -> 65803, 65815 -> 65814","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45082,"TargetID":65811,"Directional":true},{"SourceID":65804,"TargetID":65803,"Directional":true},{"SourceID":65815,"TargetID":65814,"Directional":true}]},{"ID":9438,"SourceStructureID":5544,"TargetStructureID":31931,"Label":"5544-31931 via Ribbon Synapse from 31936 -> 31935","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31936,"TargetID":31935,"Directional":true}]},{"ID":9439,"SourceStructureID":5544,"TargetStructureID":137024,"Label":"5544-137024 via Ribbon Synapse from 137032 -> 137031","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137032,"TargetID":137031,"Directional":true}]},{"ID":9440,"SourceStructureID":5545,"TargetStructureID":5453,"Label":"5545-5453 via Ribbon Synapse from 128475 -> 28779","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128475,"TargetID":28779,"Directional":true}]},{"ID":9441,"SourceStructureID":5545,"TargetStructureID":7859,"Label":"5545-7859 via Ribbon Synapse from 40080 -> 84687, 84692 -> 84693","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40080,"TargetID":84687,"Directional":true},{"SourceID":84692,"TargetID":84693,"Directional":true}]},{"ID":9442,"SourceStructureID":5545,"TargetStructureID":13525,"Label":"5545-13525 via Ribbon Synapse from 21278 -> 129965, 128463 -> 87084","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21278,"TargetID":129965,"Directional":true},{"SourceID":128463,"TargetID":87084,"Directional":true}]},{"ID":9443,"SourceStructureID":5545,"TargetStructureID":22225,"Label":"5545-22225 via Ribbon Synapse from 40078 -> 128201","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40078,"TargetID":128201,"Directional":true}]},{"ID":9444,"SourceStructureID":5545,"TargetStructureID":46741,"Label":"5545-46741 via BC Conventional Synapse from 136955 -> 136954","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":136955,"TargetID":136954,"Directional":true}]},{"ID":9445,"SourceStructureID":5545,"TargetStructureID":64777,"Label":"5545-64777 via Ribbon Synapse from 64835 -> 64829","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64835,"TargetID":64829,"Directional":true}]},{"ID":9446,"SourceStructureID":5545,"TargetStructureID":122073,"Label":"5545-122073 via Ribbon Synapse from 128465 -> 123252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128465,"TargetID":123252,"Directional":true}]},{"ID":9447,"SourceStructureID":5551,"TargetStructureID":116925,"Label":"5551-116925 via Ribbon Synapse from 116923 -> 116926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116923,"TargetID":116926,"Directional":true}]},{"ID":9448,"SourceStructureID":5557,"TargetStructureID":117065,"Label":"5557-117065 via Ribbon Synapse from 117064 -> 117068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117064,"TargetID":117068,"Directional":true}]},{"ID":9449,"SourceStructureID":5561,"TargetStructureID":606,"Label":"5561-606 via Ribbon Synapse from 20252 -> 20253, 46263 -> 51599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20252,"TargetID":20253,"Directional":true},{"SourceID":46263,"TargetID":51599,"Directional":true}]},{"ID":9450,"SourceStructureID":5561,"TargetStructureID":5282,"Label":"5561-5282 via Ribbon Synapse from 46043 -> 97665","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46043,"TargetID":97665,"Directional":true}]},{"ID":9451,"SourceStructureID":5561,"TargetStructureID":9769,"Label":"5561-9769 via Ribbon Synapse from 29900 -> 20229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29900,"TargetID":20229,"Directional":true}]},{"ID":9452,"SourceStructureID":5561,"TargetStructureID":53399,"Label":"5561-53399 via Ribbon Synapse from 46301 -> 53402","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46301,"TargetID":53402,"Directional":true}]},{"ID":9453,"SourceStructureID":5561,"TargetStructureID":63594,"Label":"5561-63594 via Ribbon Synapse from 46288 -> 63604, 49639 -> 96820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46288,"TargetID":63604,"Directional":true},{"SourceID":49639,"TargetID":96820,"Directional":true}]},{"ID":9454,"SourceStructureID":5561,"TargetStructureID":69162,"Label":"5561-69162 via Ribbon Synapse from 46308 -> 148171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46308,"TargetID":148171,"Directional":true}]},{"ID":9455,"SourceStructureID":5561,"TargetStructureID":70050,"Label":"5561-70050 via Ribbon Synapse from 46279 -> 130901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46279,"TargetID":130901,"Directional":true}]},{"ID":9456,"SourceStructureID":5561,"TargetStructureID":96762,"Label":"5561-96762 via Cistern Pre from 46112 -> 96763","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":46112,"TargetID":96763,"Directional":true}]},{"ID":9457,"SourceStructureID":5561,"TargetStructureID":96764,"Label":"5561-96764 via Cistern Pre from 46115 -> 96765","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":46115,"TargetID":96765,"Directional":true}]},{"ID":9458,"SourceStructureID":5561,"TargetStructureID":96766,"Label":"5561-96766 via Cistern Pre from 46134 -> 96767","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":46134,"TargetID":96767,"Directional":true}]},{"ID":9459,"SourceStructureID":5561,"TargetStructureID":96768,"Label":"5561-96768 via Ribbon Synapse from 46135 -> 96769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46135,"TargetID":96769,"Directional":true}]},{"ID":9460,"SourceStructureID":5561,"TargetStructureID":96781,"Label":"5561-96781 via Ribbon Synapse from 46145 -> 96783, 46294 -> 96782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46145,"TargetID":96783,"Directional":true},{"SourceID":46294,"TargetID":96782,"Directional":true}]},{"ID":9461,"SourceStructureID":5561,"TargetStructureID":96784,"Label":"5561-96784 via Ribbon Synapse from 46294 -> 96785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46294,"TargetID":96785,"Directional":true}]},{"ID":9462,"SourceStructureID":5561,"TargetStructureID":96786,"Label":"5561-96786 via Ribbon Synapse from 46263 -> 96789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46263,"TargetID":96789,"Directional":true}]},{"ID":9463,"SourceStructureID":5561,"TargetStructureID":96791,"Label":"5561-96791 via BC Conventional Synapse from 96792 -> 96793","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96792,"TargetID":96793,"Directional":true}]},{"ID":9464,"SourceStructureID":5561,"TargetStructureID":96791,"Label":"5561-96791 via Ribbon Synapse from 46292 -> 96798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46292,"TargetID":96798,"Directional":true}]},{"ID":9465,"SourceStructureID":5561,"TargetStructureID":96794,"Label":"5561-96794 via Ribbon Synapse from 46292 -> 96795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46292,"TargetID":96795,"Directional":true}]},{"ID":9466,"SourceStructureID":5561,"TargetStructureID":96812,"Label":"5561-96812 via BC Conventional Synapse from 96809 -> 96813","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96809,"TargetID":96813,"Directional":true}]},{"ID":9467,"SourceStructureID":5561,"TargetStructureID":96851,"Label":"5561-96851 via Ribbon Synapse from 96850 -> 96853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96850,"TargetID":96853,"Directional":true}]},{"ID":9468,"SourceStructureID":5561,"TargetStructureID":96927,"Label":"5561-96927 via BC Conventional Synapse from 96929 -> 96928","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96929,"TargetID":96928,"Directional":true}]},{"ID":9469,"SourceStructureID":5561,"TargetStructureID":96934,"Label":"5561-96934 via Ribbon Synapse from 29900 -> 96935","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29900,"TargetID":96935,"Directional":true}]},{"ID":9470,"SourceStructureID":5561,"TargetStructureID":96938,"Label":"5561-96938 via BC Conventional Synapse from 96939 -> 96940","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96939,"TargetID":96940,"Directional":true}]},{"ID":9471,"SourceStructureID":5561,"TargetStructureID":96943,"Label":"5561-96943 via BC Conventional Synapse from 96946 -> 96945","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":96946,"TargetID":96945,"Directional":true}]},{"ID":9472,"SourceStructureID":5561,"TargetStructureID":96974,"Label":"5561-96974 via Ribbon Synapse from 46271 -> 96975","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46271,"TargetID":96975,"Directional":true}]},{"ID":9473,"SourceStructureID":5561,"TargetStructureID":96980,"Label":"5561-96980 via Ribbon Synapse from 46273 -> 96981","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46273,"TargetID":96981,"Directional":true}]},{"ID":9474,"SourceStructureID":5561,"TargetStructureID":96988,"Label":"5561-96988 via Ribbon Synapse from 46277 -> 96989","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46277,"TargetID":96989,"Directional":true}]},{"ID":9475,"SourceStructureID":5561,"TargetStructureID":97001,"Label":"5561-97001 via Ribbon Synapse from 97000 -> 97002","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97000,"TargetID":97002,"Directional":true}]},{"ID":9476,"SourceStructureID":5561,"TargetStructureID":97012,"Label":"5561-97012 via Ribbon Synapse from 46279 -> 97014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46279,"TargetID":97014,"Directional":true}]},{"ID":9477,"SourceStructureID":5561,"TargetStructureID":97065,"Label":"5561-97065 via BC Conventional Synapse from 46196 -> 97066","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":46196,"TargetID":97066,"Directional":true}]},{"ID":9478,"SourceStructureID":5561,"TargetStructureID":97090,"Label":"5561-97090 via Ribbon Synapse from 97085 -> 97091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97085,"TargetID":97091,"Directional":true}]},{"ID":9479,"SourceStructureID":5561,"TargetStructureID":97093,"Label":"5561-97093 via Ribbon Synapse from 97092 -> 97094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97092,"TargetID":97094,"Directional":true}]},{"ID":9480,"SourceStructureID":5561,"TargetStructureID":97159,"Label":"5561-97159 via Ribbon Synapse from 46172 -> 148167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46172,"TargetID":148167,"Directional":true}]},{"ID":9481,"SourceStructureID":5561,"TargetStructureID":97166,"Label":"5561-97166 via Ribbon Synapse from 46172 -> 97170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46172,"TargetID":97170,"Directional":true}]},{"ID":9482,"SourceStructureID":5561,"TargetStructureID":97202,"Label":"5561-97202 via BC Conventional Synapse from 97201 -> 97203","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97201,"TargetID":97203,"Directional":true}]},{"ID":9483,"SourceStructureID":5561,"TargetStructureID":97204,"Label":"5561-97204 via Ribbon Synapse from 97200 -> 97205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97200,"TargetID":97205,"Directional":true}]},{"ID":9484,"SourceStructureID":5561,"TargetStructureID":97215,"Label":"5561-97215 via BC Conventional Synapse from 97214 -> 97216","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97214,"TargetID":97216,"Directional":true}]},{"ID":9485,"SourceStructureID":5561,"TargetStructureID":97347,"Label":"5561-97347 via Ribbon Synapse from 46123 -> 97348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46123,"TargetID":97348,"Directional":true}]},{"ID":9486,"SourceStructureID":5561,"TargetStructureID":97350,"Label":"5561-97350 via Ribbon Synapse from 46123 -> 97351","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46123,"TargetID":97351,"Directional":true}]},{"ID":9487,"SourceStructureID":5561,"TargetStructureID":97381,"Label":"5561-97381 via BC Conventional Synapse from 97384 -> 97383","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97384,"TargetID":97383,"Directional":true}]},{"ID":9488,"SourceStructureID":5561,"TargetStructureID":97391,"Label":"5561-97391 via BC Conventional Synapse from 97393 -> 97392","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97393,"TargetID":97392,"Directional":true}]},{"ID":9489,"SourceStructureID":5561,"TargetStructureID":97443,"Label":"5561-97443 via Ribbon Synapse from 46212 -> 97444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46212,"TargetID":97444,"Directional":true}]},{"ID":9490,"SourceStructureID":5561,"TargetStructureID":97445,"Label":"5561-97445 via Ribbon Synapse from 46213 -> 97446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46213,"TargetID":97446,"Directional":true}]},{"ID":9491,"SourceStructureID":5561,"TargetStructureID":97485,"Label":"5561-97485 via Ribbon Synapse from 97472 -> 97487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97472,"TargetID":97487,"Directional":true}]},{"ID":9492,"SourceStructureID":5561,"TargetStructureID":97486,"Label":"5561-97486 via Ribbon Synapse from 97472 -> 97488","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97472,"TargetID":97488,"Directional":true}]},{"ID":9493,"SourceStructureID":5561,"TargetStructureID":97492,"Label":"5561-97492 via Ribbon Synapse from 97469 -> 97495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97469,"TargetID":97495,"Directional":true}]},{"ID":9494,"SourceStructureID":5561,"TargetStructureID":97496,"Label":"5561-97496 via Ribbon Synapse from 97469 -> 97497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97469,"TargetID":97497,"Directional":true}]},{"ID":9495,"SourceStructureID":5561,"TargetStructureID":97503,"Label":"5561-97503 via Ribbon Synapse from 46231 -> 97505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46231,"TargetID":97505,"Directional":true}]},{"ID":9496,"SourceStructureID":5561,"TargetStructureID":97512,"Label":"5561-97512 via Ribbon Synapse from 46259 -> 97513","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46259,"TargetID":97513,"Directional":true}]},{"ID":9497,"SourceStructureID":5561,"TargetStructureID":97514,"Label":"5561-97514 via Ribbon Synapse from 46258 -> 97517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46258,"TargetID":97517,"Directional":true}]},{"ID":9498,"SourceStructureID":5561,"TargetStructureID":97515,"Label":"5561-97515 via Ribbon Synapse from 46258 -> 97516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46258,"TargetID":97516,"Directional":true}]},{"ID":9499,"SourceStructureID":5561,"TargetStructureID":97518,"Label":"5561-97518 via Ribbon Synapse from 46259 -> 97519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46259,"TargetID":97519,"Directional":true}]},{"ID":9500,"SourceStructureID":5561,"TargetStructureID":97558,"Label":"5561-97558 via Ribbon Synapse from 46251 -> 97566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46251,"TargetID":97566,"Directional":true}]},{"ID":9501,"SourceStructureID":5561,"TargetStructureID":97559,"Label":"5561-97559 via Ribbon Synapse from 46246 -> 97562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46246,"TargetID":97562,"Directional":true}]},{"ID":9502,"SourceStructureID":5561,"TargetStructureID":97560,"Label":"5561-97560 via Ribbon Synapse from 46246 -> 97561","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46246,"TargetID":97561,"Directional":true}]},{"ID":9503,"SourceStructureID":5561,"TargetStructureID":97584,"Label":"5561-97584 via Ribbon Synapse from 46251 -> 97589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46251,"TargetID":97589,"Directional":true}]},{"ID":9504,"SourceStructureID":5561,"TargetStructureID":97636,"Label":"5561-97636 via BC Conventional Synapse from 97635 -> 97637","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97635,"TargetID":97637,"Directional":true}]},{"ID":9505,"SourceStructureID":5561,"TargetStructureID":97653,"Label":"5561-97653 via Ribbon Synapse from 46309 -> 97654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46309,"TargetID":97654,"Directional":true}]},{"ID":9506,"SourceStructureID":5561,"TargetStructureID":97684,"Label":"5561-97684 via Ribbon Synapse from 48984 -> 97686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48984,"TargetID":97686,"Directional":true}]},{"ID":9507,"SourceStructureID":5561,"TargetStructureID":97707,"Label":"5561-97707 via Ribbon Synapse from 97705 -> 97708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97705,"TargetID":97708,"Directional":true}]},{"ID":9508,"SourceStructureID":5561,"TargetStructureID":97709,"Label":"5561-97709 via Ribbon Synapse from 97705 -> 97710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97705,"TargetID":97710,"Directional":true}]},{"ID":9509,"SourceStructureID":5562,"TargetStructureID":5117,"Label":"5562-5117 via BC Conventional Synapse from 77532 -> 65513","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77532,"TargetID":65513,"Directional":true}]},{"ID":9510,"SourceStructureID":5562,"TargetStructureID":5117,"Label":"5562-5117 via Ribbon Synapse from 65511 -> 65510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65511,"TargetID":65510,"Directional":true}]},{"ID":9511,"SourceStructureID":5562,"TargetStructureID":5294,"Label":"5562-5294 via Ribbon Synapse from 32337 -> 32336, 37649 -> 32336, 37650 -> 32336, 37651 -> 32336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32337,"TargetID":32336,"Directional":true},{"SourceID":37649,"TargetID":32336,"Directional":true},{"SourceID":37650,"TargetID":32336,"Directional":true},{"SourceID":37651,"TargetID":32336,"Directional":true}]},{"ID":9512,"SourceStructureID":5562,"TargetStructureID":8576,"Label":"5562-8576 via Ribbon Synapse from 20060 -> 20059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20060,"TargetID":20059,"Directional":true}]},{"ID":9513,"SourceStructureID":5562,"TargetStructureID":18282,"Label":"5562-18282 via Ribbon Synapse from 31445 -> 31443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31445,"TargetID":31443,"Directional":true}]},{"ID":9514,"SourceStructureID":5562,"TargetStructureID":24148,"Label":"5562-24148 via Ribbon Synapse from 48948 -> 147570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48948,"TargetID":147570,"Directional":true}]},{"ID":9515,"SourceStructureID":5562,"TargetStructureID":31024,"Label":"5562-31024 via Ribbon Synapse from 31044 -> 31043, 31051 -> 31159, 31064 -> 31047, 31359 -> 31160, 49518 -> 78898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31044,"TargetID":31043,"Directional":true},{"SourceID":31051,"TargetID":31159,"Directional":true},{"SourceID":31064,"TargetID":31047,"Directional":true},{"SourceID":31359,"TargetID":31160,"Directional":true},{"SourceID":49518,"TargetID":78898,"Directional":true}]},{"ID":9516,"SourceStructureID":5562,"TargetStructureID":33092,"Label":"5562-33092 via Ribbon Synapse from 25324 -> 38292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25324,"TargetID":38292,"Directional":true}]},{"ID":9517,"SourceStructureID":5562,"TargetStructureID":36516,"Label":"5562-36516 via Ribbon Synapse from 33096 -> 36612, 36522 -> 36521","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33096,"TargetID":36612,"Directional":true},{"SourceID":36522,"TargetID":36521,"Directional":true}]},{"ID":9518,"SourceStructureID":5562,"TargetStructureID":58696,"Label":"5562-58696 via Ribbon Synapse from 63787 -> 86968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63787,"TargetID":86968,"Directional":true}]},{"ID":9519,"SourceStructureID":5562,"TargetStructureID":61816,"Label":"5562-61816 via Ribbon Synapse from 31291 -> 116712, 63215 -> 80727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31291,"TargetID":116712,"Directional":true},{"SourceID":63215,"TargetID":80727,"Directional":true}]},{"ID":9520,"SourceStructureID":5562,"TargetStructureID":63274,"Label":"5562-63274 via BC Conventional Synapse from 80345 -> 80343","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80345,"TargetID":80343,"Directional":true}]},{"ID":9521,"SourceStructureID":5562,"TargetStructureID":63371,"Label":"5562-63371 via BC Conventional Synapse from 63382 -> 63380, 77165 -> 63387","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63382,"TargetID":63380,"Directional":true},{"SourceID":77165,"TargetID":63387,"Directional":true}]},{"ID":9522,"SourceStructureID":5562,"TargetStructureID":63371,"Label":"5562-63371 via Ribbon Synapse from 31299 -> 63388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31299,"TargetID":63388,"Directional":true}]},{"ID":9523,"SourceStructureID":5562,"TargetStructureID":65351,"Label":"5562-65351 via Ribbon Synapse from 77245 -> 78959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77245,"TargetID":78959,"Directional":true}]},{"ID":9524,"SourceStructureID":5562,"TargetStructureID":65366,"Label":"5562-65366 via Ribbon Synapse from 49516 -> 78911, 49516 -> 78912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49516,"TargetID":78911,"Directional":true},{"SourceID":49516,"TargetID":78912,"Directional":true}]},{"ID":9525,"SourceStructureID":5562,"TargetStructureID":66958,"Label":"5562-66958 via Ribbon Synapse from 63876 -> 79633","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63876,"TargetID":79633,"Directional":true}]},{"ID":9526,"SourceStructureID":5562,"TargetStructureID":67269,"Label":"5562-67269 via Ribbon Synapse from 63237 -> 69640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63237,"TargetID":69640,"Directional":true}]},{"ID":9527,"SourceStructureID":5562,"TargetStructureID":68480,"Label":"5562-68480 via Ribbon Synapse from 65511 -> 79641","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65511,"TargetID":79641,"Directional":true}]},{"ID":9528,"SourceStructureID":5562,"TargetStructureID":69049,"Label":"5562-69049 via Ribbon Synapse from 40289 -> 76436, 63267 -> 69060, 63355 -> 69057","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40289,"TargetID":76436,"Directional":true},{"SourceID":63267,"TargetID":69060,"Directional":true},{"SourceID":63355,"TargetID":69057,"Directional":true}]},{"ID":9529,"SourceStructureID":5562,"TargetStructureID":69926,"Label":"5562-69926 via Ribbon Synapse from 48959 -> 72852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48959,"TargetID":72852,"Directional":true}]},{"ID":9530,"SourceStructureID":5562,"TargetStructureID":69930,"Label":"5562-69930 via Ribbon Synapse from 48959 -> 79638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48959,"TargetID":79638,"Directional":true}]},{"ID":9531,"SourceStructureID":5562,"TargetStructureID":76228,"Label":"5562-76228 via Ribbon Synapse from 37636 -> 76229, 37638 -> 76229, 37639 -> 76229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37636,"TargetID":76229,"Directional":true},{"SourceID":37638,"TargetID":76229,"Directional":true},{"SourceID":37639,"TargetID":76229,"Directional":true}]},{"ID":9532,"SourceStructureID":5562,"TargetStructureID":76230,"Label":"5562-76230 via Ribbon Synapse from 37637 -> 76231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37637,"TargetID":76231,"Directional":true}]},{"ID":9533,"SourceStructureID":5562,"TargetStructureID":76233,"Label":"5562-76233 via Ribbon Synapse from 37641 -> 76234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37641,"TargetID":76234,"Directional":true}]},{"ID":9534,"SourceStructureID":5562,"TargetStructureID":76235,"Label":"5562-76235 via BC Conventional Synapse from 76238 -> 76239","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76238,"TargetID":76239,"Directional":true}]},{"ID":9535,"SourceStructureID":5562,"TargetStructureID":76235,"Label":"5562-76235 via Ribbon Synapse from 37642 -> 76236, 37643 -> 76236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37642,"TargetID":76236,"Directional":true},{"SourceID":37643,"TargetID":76236,"Directional":true}]},{"ID":9536,"SourceStructureID":5562,"TargetStructureID":76240,"Label":"5562-76240 via Ribbon Synapse from 37644 -> 76241, 37644 -> 76242, 37645 -> 76242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37644,"TargetID":76241,"Directional":true},{"SourceID":37644,"TargetID":76242,"Directional":true},{"SourceID":37645,"TargetID":76242,"Directional":true}]},{"ID":9537,"SourceStructureID":5562,"TargetStructureID":76243,"Label":"5562-76243 via Ribbon Synapse from 63049 -> 76244","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63049,"TargetID":76244,"Directional":true}]},{"ID":9538,"SourceStructureID":5562,"TargetStructureID":76245,"Label":"5562-76245 via Ribbon Synapse from 63049 -> 76246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63049,"TargetID":76246,"Directional":true}]},{"ID":9539,"SourceStructureID":5562,"TargetStructureID":76247,"Label":"5562-76247 via Ribbon Synapse from 37647 -> 76250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37647,"TargetID":76250,"Directional":true}]},{"ID":9540,"SourceStructureID":5562,"TargetStructureID":76251,"Label":"5562-76251 via Ribbon Synapse from 37649 -> 76252, 37650 -> 76252, 37651 -> 76252, 37652 -> 76252, 37652 -> 76261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37649,"TargetID":76252,"Directional":true},{"SourceID":37650,"TargetID":76252,"Directional":true},{"SourceID":37651,"TargetID":76252,"Directional":true},{"SourceID":37652,"TargetID":76252,"Directional":true},{"SourceID":37652,"TargetID":76261,"Directional":true}]},{"ID":9541,"SourceStructureID":5562,"TargetStructureID":76255,"Label":"5562-76255 via Ribbon Synapse from 37652 -> 76260, 37653 -> 76265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37652,"TargetID":76260,"Directional":true},{"SourceID":37653,"TargetID":76265,"Directional":true}]},{"ID":9542,"SourceStructureID":5562,"TargetStructureID":76262,"Label":"5562-76262 via BC Conventional Synapse from 76264 -> 76263","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76264,"TargetID":76263,"Directional":true}]},{"ID":9543,"SourceStructureID":5562,"TargetStructureID":76275,"Label":"5562-76275 via Ribbon Synapse from 40294 -> 76276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40294,"TargetID":76276,"Directional":true}]},{"ID":9544,"SourceStructureID":5562,"TargetStructureID":76277,"Label":"5562-76277 via Ribbon Synapse from 40294 -> 76278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40294,"TargetID":76278,"Directional":true}]},{"ID":9545,"SourceStructureID":5562,"TargetStructureID":76291,"Label":"5562-76291 via Ribbon Synapse from 40287 -> 76293","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40287,"TargetID":76293,"Directional":true}]},{"ID":9546,"SourceStructureID":5562,"TargetStructureID":76294,"Label":"5562-76294 via Ribbon Synapse from 40286 -> 76295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40286,"TargetID":76295,"Directional":true}]},{"ID":9547,"SourceStructureID":5562,"TargetStructureID":76296,"Label":"5562-76296 via Ribbon Synapse from 40286 -> 76297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40286,"TargetID":76297,"Directional":true}]},{"ID":9548,"SourceStructureID":5562,"TargetStructureID":76302,"Label":"5562-76302 via Ribbon Synapse from 40283 -> 76305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40283,"TargetID":76305,"Directional":true}]},{"ID":9549,"SourceStructureID":5562,"TargetStructureID":76310,"Label":"5562-76310 via Ribbon Synapse from 40285 -> 76312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40285,"TargetID":76312,"Directional":true}]},{"ID":9550,"SourceStructureID":5562,"TargetStructureID":76311,"Label":"5562-76311 via Ribbon Synapse from 40285 -> 76313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40285,"TargetID":76313,"Directional":true}]},{"ID":9551,"SourceStructureID":5562,"TargetStructureID":76317,"Label":"5562-76317 via Ribbon Synapse from 40282 -> 76318","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40282,"TargetID":76318,"Directional":true}]},{"ID":9552,"SourceStructureID":5562,"TargetStructureID":76319,"Label":"5562-76319 via BC Conventional Synapse from 76320 -> 76321","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76320,"TargetID":76321,"Directional":true}]},{"ID":9553,"SourceStructureID":5562,"TargetStructureID":76322,"Label":"5562-76322 via Ribbon Synapse from 40281 -> 76327","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40281,"TargetID":76327,"Directional":true}]},{"ID":9554,"SourceStructureID":5562,"TargetStructureID":76323,"Label":"5562-76323 via Ribbon Synapse from 40281 -> 76325","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40281,"TargetID":76325,"Directional":true}]},{"ID":9555,"SourceStructureID":5562,"TargetStructureID":76324,"Label":"5562-76324 via Ribbon Synapse from 40281 -> 76326","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40281,"TargetID":76326,"Directional":true}]},{"ID":9556,"SourceStructureID":5562,"TargetStructureID":76336,"Label":"5562-76336 via Ribbon Synapse from 40280 -> 76339","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40280,"TargetID":76339,"Directional":true}]},{"ID":9557,"SourceStructureID":5562,"TargetStructureID":76337,"Label":"5562-76337 via Ribbon Synapse from 40280 -> 76338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40280,"TargetID":76338,"Directional":true}]},{"ID":9558,"SourceStructureID":5562,"TargetStructureID":76340,"Label":"5562-76340 via Ribbon Synapse from 40280 -> 76341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40280,"TargetID":76341,"Directional":true}]},{"ID":9559,"SourceStructureID":5562,"TargetStructureID":76365,"Label":"5562-76365 via Ribbon Synapse from 40275 -> 76366","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40275,"TargetID":76366,"Directional":true}]},{"ID":9560,"SourceStructureID":5562,"TargetStructureID":76367,"Label":"5562-76367 via BC Conventional Synapse from 76369 -> 76370","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76369,"TargetID":76370,"Directional":true}]},{"ID":9561,"SourceStructureID":5562,"TargetStructureID":76384,"Label":"5562-76384 via Ribbon Synapse from 31044 -> 76385","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31044,"TargetID":76385,"Directional":true}]},{"ID":9562,"SourceStructureID":5562,"TargetStructureID":76391,"Label":"5562-76391 via Ribbon Synapse from 40270 -> 76393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40270,"TargetID":76393,"Directional":true}]},{"ID":9563,"SourceStructureID":5562,"TargetStructureID":76394,"Label":"5562-76394 via Ribbon Synapse from 40270 -> 76395","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40270,"TargetID":76395,"Directional":true}]},{"ID":9564,"SourceStructureID":5562,"TargetStructureID":76403,"Label":"5562-76403 via BC Conventional Synapse from 76404 -> 76405","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76404,"TargetID":76405,"Directional":true}]},{"ID":9565,"SourceStructureID":5562,"TargetStructureID":76406,"Label":"5562-76406 via Ribbon Synapse from 40269 -> 76408","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40269,"TargetID":76408,"Directional":true}]},{"ID":9566,"SourceStructureID":5562,"TargetStructureID":76409,"Label":"5562-76409 via Ribbon Synapse from 40267 -> 76416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40267,"TargetID":76416,"Directional":true}]},{"ID":9567,"SourceStructureID":5562,"TargetStructureID":76414,"Label":"5562-76414 via Ribbon Synapse from 40267 -> 76415","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40267,"TargetID":76415,"Directional":true}]},{"ID":9568,"SourceStructureID":5562,"TargetStructureID":76419,"Label":"5562-76419 via Ribbon Synapse from 40267 -> 76420","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40267,"TargetID":76420,"Directional":true}]},{"ID":9569,"SourceStructureID":5562,"TargetStructureID":76430,"Label":"5562-76430 via Ribbon Synapse from 40289 -> 76434","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40289,"TargetID":76434,"Directional":true}]},{"ID":9570,"SourceStructureID":5562,"TargetStructureID":76432,"Label":"5562-76432 via Ribbon Synapse from 40289 -> 76437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40289,"TargetID":76437,"Directional":true}]},{"ID":9571,"SourceStructureID":5562,"TargetStructureID":76433,"Label":"5562-76433 via Ribbon Synapse from 40289 -> 76435","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40289,"TargetID":76435,"Directional":true}]},{"ID":9572,"SourceStructureID":5562,"TargetStructureID":76446,"Label":"5562-76446 via Ribbon Synapse from 76514 -> 76515","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76514,"TargetID":76515,"Directional":true}]},{"ID":9573,"SourceStructureID":5562,"TargetStructureID":76450,"Label":"5562-76450 via Ribbon Synapse from 40292 -> 76451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40292,"TargetID":76451,"Directional":true}]},{"ID":9574,"SourceStructureID":5562,"TargetStructureID":76452,"Label":"5562-76452 via Ribbon Synapse from 40292 -> 76453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40292,"TargetID":76453,"Directional":true}]},{"ID":9575,"SourceStructureID":5562,"TargetStructureID":76457,"Label":"5562-76457 via BC Conventional Synapse from 76456 -> 76458","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76456,"TargetID":76458,"Directional":true}]},{"ID":9576,"SourceStructureID":5562,"TargetStructureID":76510,"Label":"5562-76510 via Unknown from 76509 -> 76511","Type":"Unknown","Directional":true,"Links":[{"SourceID":76509,"TargetID":76511,"Directional":true}]},{"ID":9577,"SourceStructureID":5562,"TargetStructureID":76526,"Label":"5562-76526 via Ribbon Synapse from 49397 -> 76527","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49397,"TargetID":76527,"Directional":true}]},{"ID":9578,"SourceStructureID":5562,"TargetStructureID":76531,"Label":"5562-76531 via Ribbon Synapse from 49397 -> 76532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49397,"TargetID":76532,"Directional":true}]},{"ID":9579,"SourceStructureID":5562,"TargetStructureID":76545,"Label":"5562-76545 via Ribbon Synapse from 63212 -> 76546","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63212,"TargetID":76546,"Directional":true}]},{"ID":9580,"SourceStructureID":5562,"TargetStructureID":76548,"Label":"5562-76548 via Ribbon Synapse from 63211 -> 76549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63211,"TargetID":76549,"Directional":true}]},{"ID":9581,"SourceStructureID":5562,"TargetStructureID":76561,"Label":"5562-76561 via BC Conventional Synapse from 76560 -> 76562","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76560,"TargetID":76562,"Directional":true}]},{"ID":9582,"SourceStructureID":5562,"TargetStructureID":76573,"Label":"5562-76573 via Ribbon Synapse from 49395 -> 76575","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49395,"TargetID":76575,"Directional":true}]},{"ID":9583,"SourceStructureID":5562,"TargetStructureID":76574,"Label":"5562-76574 via Ribbon Synapse from 49395 -> 76576","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49395,"TargetID":76576,"Directional":true}]},{"ID":9584,"SourceStructureID":5562,"TargetStructureID":76593,"Label":"5562-76593 via Ribbon Synapse from 49393 -> 76602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49393,"TargetID":76602,"Directional":true}]},{"ID":9585,"SourceStructureID":5562,"TargetStructureID":76600,"Label":"5562-76600 via Ribbon Synapse from 49393 -> 76601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49393,"TargetID":76601,"Directional":true}]},{"ID":9586,"SourceStructureID":5562,"TargetStructureID":76610,"Label":"5562-76610 via Unknown from 76608 -> 76611","Type":"Unknown","Directional":true,"Links":[{"SourceID":76608,"TargetID":76611,"Directional":true}]},{"ID":9587,"SourceStructureID":5562,"TargetStructureID":76619,"Label":"5562-76619 via Ribbon Synapse from 63215 -> 76624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63215,"TargetID":76624,"Directional":true}]},{"ID":9588,"SourceStructureID":5562,"TargetStructureID":76620,"Label":"5562-76620 via Ribbon Synapse from 63215 -> 76623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63215,"TargetID":76623,"Directional":true}]},{"ID":9589,"SourceStructureID":5562,"TargetStructureID":76625,"Label":"5562-76625 via BC Conventional Synapse from 76626 -> 76627","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76626,"TargetID":76627,"Directional":true}]},{"ID":9590,"SourceStructureID":5562,"TargetStructureID":76646,"Label":"5562-76646 via Ribbon Synapse from 49392 -> 76647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49392,"TargetID":76647,"Directional":true}]},{"ID":9591,"SourceStructureID":5562,"TargetStructureID":76653,"Label":"5562-76653 via BC Conventional Synapse from 76652 -> 92085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76652,"TargetID":92085,"Directional":true}]},{"ID":9592,"SourceStructureID":5562,"TargetStructureID":76663,"Label":"5562-76663 via Ribbon Synapse from 31301 -> 76664","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31301,"TargetID":76664,"Directional":true}]},{"ID":9593,"SourceStructureID":5562,"TargetStructureID":76665,"Label":"5562-76665 via Ribbon Synapse from 31301 -> 76666","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31301,"TargetID":76666,"Directional":true}]},{"ID":9594,"SourceStructureID":5562,"TargetStructureID":76671,"Label":"5562-76671 via BC Conventional Synapse from 76672 -> 76673","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76672,"TargetID":76673,"Directional":true}]},{"ID":9595,"SourceStructureID":5562,"TargetStructureID":76677,"Label":"5562-76677 via Ribbon Synapse from 76676 -> 76679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76676,"TargetID":76679,"Directional":true}]},{"ID":9596,"SourceStructureID":5562,"TargetStructureID":76704,"Label":"5562-76704 via BC Conventional Synapse from 76705 -> 76706","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":76705,"TargetID":76706,"Directional":true}]},{"ID":9597,"SourceStructureID":5562,"TargetStructureID":76711,"Label":"5562-76711 via Ribbon Synapse from 49391 -> 76712","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49391,"TargetID":76712,"Directional":true}]},{"ID":9598,"SourceStructureID":5562,"TargetStructureID":76724,"Label":"5562-76724 via Ribbon Synapse from 47311 -> 76716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47311,"TargetID":76716,"Directional":true}]},{"ID":9599,"SourceStructureID":5562,"TargetStructureID":76730,"Label":"5562-76730 via Ribbon Synapse from 47359 -> 76731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47359,"TargetID":76731,"Directional":true}]},{"ID":9600,"SourceStructureID":5562,"TargetStructureID":76732,"Label":"5562-76732 via Ribbon Synapse from 47359 -> 76734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47359,"TargetID":76734,"Directional":true}]},{"ID":9601,"SourceStructureID":5562,"TargetStructureID":76904,"Label":"5562-76904 via Ribbon Synapse from 47305 -> 76905","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47305,"TargetID":76905,"Directional":true}]},{"ID":9602,"SourceStructureID":5562,"TargetStructureID":76917,"Label":"5562-76917 via Ribbon Synapse from 134311 -> 76918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134311,"TargetID":76918,"Directional":true}]},{"ID":9603,"SourceStructureID":5562,"TargetStructureID":76956,"Label":"5562-76956 via Ribbon Synapse from 63233 -> 76957","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63233,"TargetID":76957,"Directional":true}]},{"ID":9604,"SourceStructureID":5562,"TargetStructureID":77103,"Label":"5562-77103 via Ribbon Synapse from 63233 -> 77104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63233,"TargetID":77104,"Directional":true}]},{"ID":9605,"SourceStructureID":5562,"TargetStructureID":77105,"Label":"5562-77105 via Ribbon Synapse from 63233 -> 77106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63233,"TargetID":77106,"Directional":true}]},{"ID":9606,"SourceStructureID":5562,"TargetStructureID":77109,"Label":"5562-77109 via Ribbon Synapse from 63230 -> 77112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63230,"TargetID":77112,"Directional":true}]},{"ID":9607,"SourceStructureID":5562,"TargetStructureID":77110,"Label":"5562-77110 via Ribbon Synapse from 63230 -> 77111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63230,"TargetID":77111,"Directional":true}]},{"ID":9608,"SourceStructureID":5562,"TargetStructureID":77130,"Label":"5562-77130 via Ribbon Synapse from 31296 -> 77131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31296,"TargetID":77131,"Directional":true}]},{"ID":9609,"SourceStructureID":5562,"TargetStructureID":77132,"Label":"5562-77132 via Ribbon Synapse from 31296 -> 77133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31296,"TargetID":77133,"Directional":true}]},{"ID":9610,"SourceStructureID":5562,"TargetStructureID":77134,"Label":"5562-77134 via BC Conventional Synapse from 77136 -> 77135","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77136,"TargetID":77135,"Directional":true}]},{"ID":9611,"SourceStructureID":5562,"TargetStructureID":77137,"Label":"5562-77137 via Ribbon Synapse from 134318 -> 134320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134318,"TargetID":134320,"Directional":true}]},{"ID":9612,"SourceStructureID":5562,"TargetStructureID":77149,"Label":"5562-77149 via BC Conventional Synapse from 81505 -> 81506","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81505,"TargetID":81506,"Directional":true}]},{"ID":9613,"SourceStructureID":5562,"TargetStructureID":77172,"Label":"5562-77172 via Ribbon Synapse from 77205 -> 77208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77205,"TargetID":77208,"Directional":true}]},{"ID":9614,"SourceStructureID":5562,"TargetStructureID":77175,"Label":"5562-77175 via Ribbon Synapse from 31291 -> 77176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31291,"TargetID":77176,"Directional":true}]},{"ID":9615,"SourceStructureID":5562,"TargetStructureID":77183,"Label":"5562-77183 via Ribbon Synapse from 31293 -> 77184","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31293,"TargetID":77184,"Directional":true}]},{"ID":9616,"SourceStructureID":5562,"TargetStructureID":77186,"Label":"5562-77186 via Ribbon Synapse from 134318 -> 134319","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134318,"TargetID":134319,"Directional":true}]},{"ID":9617,"SourceStructureID":5562,"TargetStructureID":77206,"Label":"5562-77206 via Ribbon Synapse from 77205 -> 77207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77205,"TargetID":77207,"Directional":true}]},{"ID":9618,"SourceStructureID":5562,"TargetStructureID":77212,"Label":"5562-77212 via Ribbon Synapse from 77213 -> 77214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77213,"TargetID":77214,"Directional":true}]},{"ID":9619,"SourceStructureID":5562,"TargetStructureID":77215,"Label":"5562-77215 via Ribbon Synapse from 77213 -> 77216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77213,"TargetID":77216,"Directional":true}]},{"ID":9620,"SourceStructureID":5562,"TargetStructureID":77228,"Label":"5562-77228 via Ribbon Synapse from 77231 -> 77234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77231,"TargetID":77234,"Directional":true}]},{"ID":9621,"SourceStructureID":5562,"TargetStructureID":77232,"Label":"5562-77232 via Ribbon Synapse from 77231 -> 77233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77231,"TargetID":77233,"Directional":true}]},{"ID":9622,"SourceStructureID":5562,"TargetStructureID":77246,"Label":"5562-77246 via Ribbon Synapse from 77245 -> 77247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77245,"TargetID":77247,"Directional":true}]},{"ID":9623,"SourceStructureID":5562,"TargetStructureID":77259,"Label":"5562-77259 via Unknown from 77258 -> 77260","Type":"Unknown","Directional":true,"Links":[{"SourceID":77258,"TargetID":77260,"Directional":true}]},{"ID":9624,"SourceStructureID":5562,"TargetStructureID":77272,"Label":"5562-77272 via Ribbon Synapse from 49562 -> 77273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49562,"TargetID":77273,"Directional":true}]},{"ID":9625,"SourceStructureID":5562,"TargetStructureID":77274,"Label":"5562-77274 via Ribbon Synapse from 49562 -> 77275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49562,"TargetID":77275,"Directional":true}]},{"ID":9626,"SourceStructureID":5562,"TargetStructureID":77276,"Label":"5562-77276 via Ribbon Synapse from 49562 -> 77277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49562,"TargetID":77277,"Directional":true}]},{"ID":9627,"SourceStructureID":5562,"TargetStructureID":77304,"Label":"5562-77304 via Ribbon Synapse from 49559 -> 77307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49559,"TargetID":77307,"Directional":true}]},{"ID":9628,"SourceStructureID":5562,"TargetStructureID":77305,"Label":"5562-77305 via Ribbon Synapse from 49559 -> 77306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49559,"TargetID":77306,"Directional":true}]},{"ID":9629,"SourceStructureID":5562,"TargetStructureID":77313,"Label":"5562-77313 via BC Conventional Synapse from 77315 -> 77314","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77315,"TargetID":77314,"Directional":true}]},{"ID":9630,"SourceStructureID":5562,"TargetStructureID":77316,"Label":"5562-77316 via Ribbon Synapse from 25324 -> 77320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25324,"TargetID":77320,"Directional":true}]},{"ID":9631,"SourceStructureID":5562,"TargetStructureID":77321,"Label":"5562-77321 via Ribbon Synapse from 25324 -> 77322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25324,"TargetID":77322,"Directional":true}]},{"ID":9632,"SourceStructureID":5562,"TargetStructureID":77441,"Label":"5562-77441 via Ribbon Synapse from 49563 -> 77443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49563,"TargetID":77443,"Directional":true}]},{"ID":9633,"SourceStructureID":5562,"TargetStructureID":77463,"Label":"5562-77463 via Ribbon Synapse from 77467 -> 77468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77467,"TargetID":77468,"Directional":true}]},{"ID":9634,"SourceStructureID":5562,"TargetStructureID":77479,"Label":"5562-77479 via Ribbon Synapse from 77471 -> 77480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77471,"TargetID":77480,"Directional":true}]},{"ID":9635,"SourceStructureID":5562,"TargetStructureID":77481,"Label":"5562-77481 via Ribbon Synapse from 77471 -> 77482","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77471,"TargetID":77482,"Directional":true}]},{"ID":9636,"SourceStructureID":5562,"TargetStructureID":77487,"Label":"5562-77487 via Ribbon Synapse from 77483 -> 77491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77483,"TargetID":77491,"Directional":true}]},{"ID":9637,"SourceStructureID":5562,"TargetStructureID":77488,"Label":"5562-77488 via Ribbon Synapse from 77483 -> 77489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77483,"TargetID":77489,"Directional":true}]},{"ID":9638,"SourceStructureID":5562,"TargetStructureID":77490,"Label":"5562-77490 via BC Conventional Synapse from 78320 -> 78321","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78320,"TargetID":78321,"Directional":true}]},{"ID":9639,"SourceStructureID":5562,"TargetStructureID":77495,"Label":"5562-77495 via Ribbon Synapse from 77494 -> 77498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77494,"TargetID":77498,"Directional":true}]},{"ID":9640,"SourceStructureID":5562,"TargetStructureID":77496,"Label":"5562-77496 via Ribbon Synapse from 77494 -> 77497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77494,"TargetID":77497,"Directional":true}]},{"ID":9641,"SourceStructureID":5562,"TargetStructureID":77500,"Label":"5562-77500 via Ribbon Synapse from 77499 -> 77501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77499,"TargetID":77501,"Directional":true}]},{"ID":9642,"SourceStructureID":5562,"TargetStructureID":77502,"Label":"5562-77502 via Ribbon Synapse from 77499 -> 77503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77499,"TargetID":77503,"Directional":true}]},{"ID":9643,"SourceStructureID":5562,"TargetStructureID":77525,"Label":"5562-77525 via Ribbon Synapse from 77526 -> 77527","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77526,"TargetID":77527,"Directional":true}]},{"ID":9644,"SourceStructureID":5562,"TargetStructureID":77545,"Label":"5562-77545 via Ribbon Synapse from 76853 -> 77546","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76853,"TargetID":77546,"Directional":true}]},{"ID":9645,"SourceStructureID":5562,"TargetStructureID":77550,"Label":"5562-77550 via BC Conventional Synapse from 77552 -> 77551","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77552,"TargetID":77551,"Directional":true}]},{"ID":9646,"SourceStructureID":5562,"TargetStructureID":77589,"Label":"5562-77589 via BC Conventional Synapse from 77591 -> 77592","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77591,"TargetID":77592,"Directional":true}]},{"ID":9647,"SourceStructureID":5562,"TargetStructureID":77607,"Label":"5562-77607 via Ribbon Synapse from 63252 -> 77608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63252,"TargetID":77608,"Directional":true}]},{"ID":9648,"SourceStructureID":5562,"TargetStructureID":77612,"Label":"5562-77612 via BC Conventional Synapse from 77723 -> 77724","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77723,"TargetID":77724,"Directional":true}]},{"ID":9649,"SourceStructureID":5562,"TargetStructureID":77747,"Label":"5562-77747 via BC Conventional Synapse from 77748 -> 77749","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77748,"TargetID":77749,"Directional":true}]},{"ID":9650,"SourceStructureID":5562,"TargetStructureID":77756,"Label":"5562-77756 via Ribbon Synapse from 63254 -> 77761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63254,"TargetID":77761,"Directional":true}]},{"ID":9651,"SourceStructureID":5562,"TargetStructureID":77757,"Label":"5562-77757 via Ribbon Synapse from 63254 -> 77760","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63254,"TargetID":77760,"Directional":true}]},{"ID":9652,"SourceStructureID":5562,"TargetStructureID":77758,"Label":"5562-77758 via Ribbon Synapse from 63254 -> 77759","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63254,"TargetID":77759,"Directional":true}]},{"ID":9653,"SourceStructureID":5562,"TargetStructureID":77762,"Label":"5562-77762 via Ribbon Synapse from 31051 -> 77763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31051,"TargetID":77763,"Directional":true}]},{"ID":9654,"SourceStructureID":5562,"TargetStructureID":77764,"Label":"5562-77764 via Ribbon Synapse from 31052 -> 77767","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31052,"TargetID":77767,"Directional":true}]},{"ID":9655,"SourceStructureID":5562,"TargetStructureID":77765,"Label":"5562-77765 via Ribbon Synapse from 31052 -> 77766","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31052,"TargetID":77766,"Directional":true}]},{"ID":9656,"SourceStructureID":5562,"TargetStructureID":77777,"Label":"5562-77777 via Ribbon Synapse from 63256 -> 77778, 63256 -> 77779","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63256,"TargetID":77778,"Directional":true},{"SourceID":63256,"TargetID":77779,"Directional":true}]},{"ID":9657,"SourceStructureID":5562,"TargetStructureID":77780,"Label":"5562-77780 via Ribbon Synapse from 63256 -> 77781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63256,"TargetID":77781,"Directional":true}]},{"ID":9658,"SourceStructureID":5562,"TargetStructureID":77792,"Label":"5562-77792 via Ribbon Synapse from 63260 -> 77795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63260,"TargetID":77795,"Directional":true}]},{"ID":9659,"SourceStructureID":5562,"TargetStructureID":77793,"Label":"5562-77793 via Ribbon Synapse from 63260 -> 77794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63260,"TargetID":77794,"Directional":true}]},{"ID":9660,"SourceStructureID":5562,"TargetStructureID":77800,"Label":"5562-77800 via Ribbon Synapse from 63264 -> 77802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63264,"TargetID":77802,"Directional":true}]},{"ID":9661,"SourceStructureID":5562,"TargetStructureID":77805,"Label":"5562-77805 via Ribbon Synapse from 63262 -> 77806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63262,"TargetID":77806,"Directional":true}]},{"ID":9662,"SourceStructureID":5562,"TargetStructureID":77807,"Label":"5562-77807 via Ribbon Synapse from 37728 -> 77808","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37728,"TargetID":77808,"Directional":true}]},{"ID":9663,"SourceStructureID":5562,"TargetStructureID":77809,"Label":"5562-77809 via Ribbon Synapse from 37728 -> 77810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37728,"TargetID":77810,"Directional":true}]},{"ID":9664,"SourceStructureID":5562,"TargetStructureID":77836,"Label":"5562-77836 via Ribbon Synapse from 63267 -> 77837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63267,"TargetID":77837,"Directional":true}]},{"ID":9665,"SourceStructureID":5562,"TargetStructureID":77840,"Label":"5562-77840 via BC Conventional Synapse from 77860 -> 82414, 93084 -> 93083, 135142 -> 135143","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":77860,"TargetID":82414,"Directional":true},{"SourceID":93084,"TargetID":93083,"Directional":true},{"SourceID":135142,"TargetID":135143,"Directional":true}]},{"ID":9666,"SourceStructureID":5562,"TargetStructureID":77875,"Label":"5562-77875 via Ribbon Synapse from 63276 -> 77878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63276,"TargetID":77878,"Directional":true}]},{"ID":9667,"SourceStructureID":5562,"TargetStructureID":77876,"Label":"5562-77876 via Ribbon Synapse from 63276 -> 77877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63276,"TargetID":77877,"Directional":true}]},{"ID":9668,"SourceStructureID":5562,"TargetStructureID":77896,"Label":"5562-77896 via Ribbon Synapse from 63279 -> 77897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63279,"TargetID":77897,"Directional":true}]},{"ID":9669,"SourceStructureID":5562,"TargetStructureID":77900,"Label":"5562-77900 via Ribbon Synapse from 63279 -> 77901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63279,"TargetID":77901,"Directional":true}]},{"ID":9670,"SourceStructureID":5562,"TargetStructureID":78088,"Label":"5562-78088 via Ribbon Synapse from 31055 -> 78089","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31055,"TargetID":78089,"Directional":true}]},{"ID":9671,"SourceStructureID":5562,"TargetStructureID":78090,"Label":"5562-78090 via Ribbon Synapse from 31057 -> 78091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31057,"TargetID":78091,"Directional":true}]},{"ID":9672,"SourceStructureID":5562,"TargetStructureID":78098,"Label":"5562-78098 via BC Conventional Synapse from 63329 -> 82413","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63329,"TargetID":82413,"Directional":true}]},{"ID":9673,"SourceStructureID":5562,"TargetStructureID":78105,"Label":"5562-78105 via BC Conventional Synapse from 63335 -> 78106","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63335,"TargetID":78106,"Directional":true}]},{"ID":9674,"SourceStructureID":5562,"TargetStructureID":78112,"Label":"5562-78112 via Ribbon Synapse from 31060 -> 78113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31060,"TargetID":78113,"Directional":true}]},{"ID":9675,"SourceStructureID":5562,"TargetStructureID":78115,"Label":"5562-78115 via Ribbon Synapse from 63330 -> 78117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63330,"TargetID":78117,"Directional":true}]},{"ID":9676,"SourceStructureID":5562,"TargetStructureID":78124,"Label":"5562-78124 via Ribbon Synapse from 48473 -> 78133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48473,"TargetID":78133,"Directional":true}]},{"ID":9677,"SourceStructureID":5562,"TargetStructureID":78126,"Label":"5562-78126 via BC Conventional Synapse from 78848 -> 78849","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78848,"TargetID":78849,"Directional":true}]},{"ID":9678,"SourceStructureID":5562,"TargetStructureID":78134,"Label":"5562-78134 via Ribbon Synapse from 48473 -> 78135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48473,"TargetID":78135,"Directional":true}]},{"ID":9679,"SourceStructureID":5562,"TargetStructureID":78139,"Label":"5562-78139 via Ribbon Synapse from 31062 -> 78140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31062,"TargetID":78140,"Directional":true}]},{"ID":9680,"SourceStructureID":5562,"TargetStructureID":78155,"Label":"5562-78155 via Ribbon Synapse from 63340 -> 78156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63340,"TargetID":78156,"Directional":true}]},{"ID":9681,"SourceStructureID":5562,"TargetStructureID":78166,"Label":"5562-78166 via Ribbon Synapse from 48463 -> 78167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48463,"TargetID":78167,"Directional":true}]},{"ID":9682,"SourceStructureID":5562,"TargetStructureID":78168,"Label":"5562-78168 via Ribbon Synapse from 63611 -> 78169","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63611,"TargetID":78169,"Directional":true}]},{"ID":9683,"SourceStructureID":5562,"TargetStructureID":78170,"Label":"5562-78170 via Ribbon Synapse from 63611 -> 78171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63611,"TargetID":78171,"Directional":true}]},{"ID":9684,"SourceStructureID":5562,"TargetStructureID":78174,"Label":"5562-78174 via BC Conventional Synapse from 48469 -> 78175","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":48469,"TargetID":78175,"Directional":true}]},{"ID":9685,"SourceStructureID":5562,"TargetStructureID":78191,"Label":"5562-78191 via Ribbon Synapse from 63350 -> 78193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63350,"TargetID":78193,"Directional":true}]},{"ID":9686,"SourceStructureID":5562,"TargetStructureID":78194,"Label":"5562-78194 via Ribbon Synapse from 63350 -> 78195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63350,"TargetID":78195,"Directional":true}]},{"ID":9687,"SourceStructureID":5562,"TargetStructureID":78196,"Label":"5562-78196 via Ribbon Synapse from 63350 -> 78197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63350,"TargetID":78197,"Directional":true}]},{"ID":9688,"SourceStructureID":5562,"TargetStructureID":78202,"Label":"5562-78202 via BC Conventional Synapse from 134447 -> 134448","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134447,"TargetID":134448,"Directional":true}]},{"ID":9689,"SourceStructureID":5562,"TargetStructureID":78205,"Label":"5562-78205 via Ribbon Synapse from 63354 -> 78206","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63354,"TargetID":78206,"Directional":true}]},{"ID":9690,"SourceStructureID":5562,"TargetStructureID":78220,"Label":"5562-78220 via Ribbon Synapse from 63354 -> 82475","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63354,"TargetID":82475,"Directional":true}]},{"ID":9691,"SourceStructureID":5562,"TargetStructureID":78222,"Label":"5562-78222 via BC Conventional Synapse from 78234 -> 78236","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78234,"TargetID":78236,"Directional":true}]},{"ID":9692,"SourceStructureID":5562,"TargetStructureID":78262,"Label":"5562-78262 via BC Conventional Synapse from 79905 -> 79906","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79905,"TargetID":79906,"Directional":true}]},{"ID":9693,"SourceStructureID":5562,"TargetStructureID":78262,"Label":"5562-78262 via Ribbon Synapse from 49009 -> 79768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49009,"TargetID":79768,"Directional":true}]},{"ID":9694,"SourceStructureID":5562,"TargetStructureID":78283,"Label":"5562-78283 via Ribbon Synapse from 63364 -> 78286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63364,"TargetID":78286,"Directional":true}]},{"ID":9695,"SourceStructureID":5562,"TargetStructureID":78284,"Label":"5562-78284 via Ribbon Synapse from 63364 -> 78285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63364,"TargetID":78285,"Directional":true}]},{"ID":9696,"SourceStructureID":5562,"TargetStructureID":78343,"Label":"5562-78343 via Ribbon Synapse from 78347 -> 78345","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78347,"TargetID":78345,"Directional":true}]},{"ID":9697,"SourceStructureID":5562,"TargetStructureID":78355,"Label":"5562-78355 via Ribbon Synapse from 78347 -> 82713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78347,"TargetID":82713,"Directional":true}]},{"ID":9698,"SourceStructureID":5562,"TargetStructureID":78364,"Label":"5562-78364 via Ribbon Synapse from 63530 -> 78373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63530,"TargetID":78373,"Directional":true}]},{"ID":9699,"SourceStructureID":5562,"TargetStructureID":78374,"Label":"5562-78374 via BC Conventional Synapse from 78376 -> 78375","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78376,"TargetID":78375,"Directional":true}]},{"ID":9700,"SourceStructureID":5562,"TargetStructureID":78398,"Label":"5562-78398 via Ribbon Synapse from 31049 -> 78399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31049,"TargetID":78399,"Directional":true}]},{"ID":9701,"SourceStructureID":5562,"TargetStructureID":78400,"Label":"5562-78400 via Ribbon Synapse from 31049 -> 78401","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31049,"TargetID":78401,"Directional":true}]},{"ID":9702,"SourceStructureID":5562,"TargetStructureID":78469,"Label":"5562-78469 via Ribbon Synapse from 49537 -> 78470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49537,"TargetID":78470,"Directional":true}]},{"ID":9703,"SourceStructureID":5562,"TargetStructureID":78473,"Label":"5562-78473 via Ribbon Synapse from 40297 -> 78474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40297,"TargetID":78474,"Directional":true}]},{"ID":9704,"SourceStructureID":5562,"TargetStructureID":78475,"Label":"5562-78475 via BC Conventional Synapse from 78476 -> 78477","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78476,"TargetID":78477,"Directional":true}]},{"ID":9705,"SourceStructureID":5562,"TargetStructureID":78483,"Label":"5562-78483 via BC Conventional Synapse from 134461 -> 134462","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134461,"TargetID":134462,"Directional":true}]},{"ID":9706,"SourceStructureID":5562,"TargetStructureID":78493,"Label":"5562-78493 via Ribbon Synapse from 40298 -> 78494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40298,"TargetID":78494,"Directional":true}]},{"ID":9707,"SourceStructureID":5562,"TargetStructureID":78495,"Label":"5562-78495 via Ribbon Synapse from 40298 -> 78496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40298,"TargetID":78496,"Directional":true}]},{"ID":9708,"SourceStructureID":5562,"TargetStructureID":78497,"Label":"5562-78497 via Ribbon Synapse from 40299 -> 78498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40299,"TargetID":78498,"Directional":true}]},{"ID":9709,"SourceStructureID":5562,"TargetStructureID":78499,"Label":"5562-78499 via Ribbon Synapse from 40299 -> 78500","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40299,"TargetID":78500,"Directional":true}]},{"ID":9710,"SourceStructureID":5562,"TargetStructureID":78514,"Label":"5562-78514 via Ribbon Synapse from 63646 -> 78516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63646,"TargetID":78516,"Directional":true}]},{"ID":9711,"SourceStructureID":5562,"TargetStructureID":78515,"Label":"5562-78515 via Ribbon Synapse from 63646 -> 78517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63646,"TargetID":78517,"Directional":true}]},{"ID":9712,"SourceStructureID":5562,"TargetStructureID":78523,"Label":"5562-78523 via Ribbon Synapse from 63655 -> 78525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63655,"TargetID":78525,"Directional":true}]},{"ID":9713,"SourceStructureID":5562,"TargetStructureID":78548,"Label":"5562-78548 via BC Conventional Synapse from 63659 -> 78549","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63659,"TargetID":78549,"Directional":true}]},{"ID":9714,"SourceStructureID":5562,"TargetStructureID":78556,"Label":"5562-78556 via Ribbon Synapse from 40301 -> 78559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40301,"TargetID":78559,"Directional":true}]},{"ID":9715,"SourceStructureID":5562,"TargetStructureID":78557,"Label":"5562-78557 via Ribbon Synapse from 40301 -> 78558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40301,"TargetID":78558,"Directional":true}]},{"ID":9716,"SourceStructureID":5562,"TargetStructureID":78564,"Label":"5562-78564 via BC Conventional Synapse from 134463 -> 134464","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134463,"TargetID":134464,"Directional":true}]},{"ID":9717,"SourceStructureID":5562,"TargetStructureID":78582,"Label":"5562-78582 via BC Conventional Synapse from 93090 -> 93089","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93090,"TargetID":93089,"Directional":true}]},{"ID":9718,"SourceStructureID":5562,"TargetStructureID":78596,"Label":"5562-78596 via Ribbon Synapse from 63675 -> 78597","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63675,"TargetID":78597,"Directional":true}]},{"ID":9719,"SourceStructureID":5562,"TargetStructureID":78598,"Label":"5562-78598 via Ribbon Synapse from 63675 -> 78599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63675,"TargetID":78599,"Directional":true}]},{"ID":9720,"SourceStructureID":5562,"TargetStructureID":78600,"Label":"5562-78600 via Ribbon Synapse from 63673 -> 78601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63673,"TargetID":78601,"Directional":true}]},{"ID":9721,"SourceStructureID":5562,"TargetStructureID":78602,"Label":"5562-78602 via Ribbon Synapse from 63673 -> 78603","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63673,"TargetID":78603,"Directional":true}]},{"ID":9722,"SourceStructureID":5562,"TargetStructureID":78610,"Label":"5562-78610 via Ribbon Synapse from 132072 -> 78611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132072,"TargetID":78611,"Directional":true}]},{"ID":9723,"SourceStructureID":5562,"TargetStructureID":78621,"Label":"5562-78621 via Ribbon Synapse from 63679 -> 78622","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63679,"TargetID":78622,"Directional":true}]},{"ID":9724,"SourceStructureID":5562,"TargetStructureID":78623,"Label":"5562-78623 via Ribbon Synapse from 63679 -> 78624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63679,"TargetID":78624,"Directional":true}]},{"ID":9725,"SourceStructureID":5562,"TargetStructureID":78626,"Label":"5562-78626 via BC Conventional Synapse from 78625 -> 78627","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78625,"TargetID":78627,"Directional":true}]},{"ID":9726,"SourceStructureID":5562,"TargetStructureID":78628,"Label":"5562-78628 via Ribbon Synapse from 63681 -> 78631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63681,"TargetID":78631,"Directional":true}]},{"ID":9727,"SourceStructureID":5562,"TargetStructureID":78629,"Label":"5562-78629 via Ribbon Synapse from 63681 -> 78630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63681,"TargetID":78630,"Directional":true}]},{"ID":9728,"SourceStructureID":5562,"TargetStructureID":78632,"Label":"5562-78632 via BC Conventional Synapse from 78633 -> 78634","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78633,"TargetID":78634,"Directional":true}]},{"ID":9729,"SourceStructureID":5562,"TargetStructureID":78635,"Label":"5562-78635 via Ribbon Synapse from 63680 -> 78636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63680,"TargetID":78636,"Directional":true}]},{"ID":9730,"SourceStructureID":5562,"TargetStructureID":78647,"Label":"5562-78647 via Ribbon Synapse from 54210 -> 78649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54210,"TargetID":78649,"Directional":true}]},{"ID":9731,"SourceStructureID":5562,"TargetStructureID":78652,"Label":"5562-78652 via Ribbon Synapse from 49416 -> 78653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49416,"TargetID":78653,"Directional":true}]},{"ID":9732,"SourceStructureID":5562,"TargetStructureID":78656,"Label":"5562-78656 via Ribbon Synapse from 49417 -> 78657","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49417,"TargetID":78657,"Directional":true}]},{"ID":9733,"SourceStructureID":5562,"TargetStructureID":78658,"Label":"5562-78658 via Ribbon Synapse from 49417 -> 78659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49417,"TargetID":78659,"Directional":true}]},{"ID":9734,"SourceStructureID":5562,"TargetStructureID":78663,"Label":"5562-78663 via Ribbon Synapse from 63704 -> 78664","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63704,"TargetID":78664,"Directional":true}]},{"ID":9735,"SourceStructureID":5562,"TargetStructureID":78675,"Label":"5562-78675 via Ribbon Synapse from 54210 -> 78676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54210,"TargetID":78676,"Directional":true}]},{"ID":9736,"SourceStructureID":5562,"TargetStructureID":78684,"Label":"5562-78684 via Ribbon Synapse from 49566 -> 78685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49566,"TargetID":78685,"Directional":true}]},{"ID":9737,"SourceStructureID":5562,"TargetStructureID":78699,"Label":"5562-78699 via Ribbon Synapse from 49567 -> 78700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49567,"TargetID":78700,"Directional":true}]},{"ID":9738,"SourceStructureID":5562,"TargetStructureID":78739,"Label":"5562-78739 via Ribbon Synapse from 49566 -> 78742","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49566,"TargetID":78742,"Directional":true}]},{"ID":9739,"SourceStructureID":5562,"TargetStructureID":78785,"Label":"5562-78785 via Ribbon Synapse from 49424 -> 78786","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49424,"TargetID":78786,"Directional":true}]},{"ID":9740,"SourceStructureID":5562,"TargetStructureID":78810,"Label":"5562-78810 via Ribbon Synapse from 63725 -> 78811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63725,"TargetID":78811,"Directional":true}]},{"ID":9741,"SourceStructureID":5562,"TargetStructureID":78812,"Label":"5562-78812 via Ribbon Synapse from 63725 -> 78813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63725,"TargetID":78813,"Directional":true}]},{"ID":9742,"SourceStructureID":5562,"TargetStructureID":78825,"Label":"5562-78825 via Ribbon Synapse from 54212 -> 78828","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54212,"TargetID":78828,"Directional":true}]},{"ID":9743,"SourceStructureID":5562,"TargetStructureID":78826,"Label":"5562-78826 via Ribbon Synapse from 54212 -> 78827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54212,"TargetID":78827,"Directional":true}]},{"ID":9744,"SourceStructureID":5562,"TargetStructureID":78858,"Label":"5562-78858 via BC Conventional Synapse from 63747 -> 78859","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63747,"TargetID":78859,"Directional":true}]},{"ID":9745,"SourceStructureID":5562,"TargetStructureID":78864,"Label":"5562-78864 via BC Conventional Synapse from 134469 -> 134470","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134469,"TargetID":134470,"Directional":true}]},{"ID":9746,"SourceStructureID":5562,"TargetStructureID":78867,"Label":"5562-78867 via Ribbon Synapse from 31358 -> 78869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31358,"TargetID":78869,"Directional":true}]},{"ID":9747,"SourceStructureID":5562,"TargetStructureID":78870,"Label":"5562-78870 via Ribbon Synapse from 31359 -> 78871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31359,"TargetID":78871,"Directional":true}]},{"ID":9748,"SourceStructureID":5562,"TargetStructureID":78896,"Label":"5562-78896 via Ribbon Synapse from 49519 -> 78897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49519,"TargetID":78897,"Directional":true}]},{"ID":9749,"SourceStructureID":5562,"TargetStructureID":78899,"Label":"5562-78899 via Ribbon Synapse from 49518 -> 78900","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49518,"TargetID":78900,"Directional":true}]},{"ID":9750,"SourceStructureID":5562,"TargetStructureID":78905,"Label":"5562-78905 via Ribbon Synapse from 49517 -> 78908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49517,"TargetID":78908,"Directional":true}]},{"ID":9751,"SourceStructureID":5562,"TargetStructureID":78906,"Label":"5562-78906 via Ribbon Synapse from 49517 -> 78907","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49517,"TargetID":78907,"Directional":true}]},{"ID":9752,"SourceStructureID":5562,"TargetStructureID":78909,"Label":"5562-78909 via Ribbon Synapse from 77467 -> 87516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77467,"TargetID":87516,"Directional":true}]},{"ID":9753,"SourceStructureID":5562,"TargetStructureID":78920,"Label":"5562-78920 via Ribbon Synapse from 63762 -> 78923","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63762,"TargetID":78923,"Directional":true}]},{"ID":9754,"SourceStructureID":5562,"TargetStructureID":78921,"Label":"5562-78921 via Ribbon Synapse from 63762 -> 78922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63762,"TargetID":78922,"Directional":true}]},{"ID":9755,"SourceStructureID":5562,"TargetStructureID":78926,"Label":"5562-78926 via Ribbon Synapse from 63767 -> 78927","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63767,"TargetID":78927,"Directional":true}]},{"ID":9756,"SourceStructureID":5562,"TargetStructureID":78928,"Label":"5562-78928 via Ribbon Synapse from 63767 -> 78929","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63767,"TargetID":78929,"Directional":true}]},{"ID":9757,"SourceStructureID":5562,"TargetStructureID":78938,"Label":"5562-78938 via Ribbon Synapse from 63764 -> 78939","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63764,"TargetID":78939,"Directional":true}]},{"ID":9758,"SourceStructureID":5562,"TargetStructureID":78946,"Label":"5562-78946 via Ribbon Synapse from 63771 -> 78953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63771,"TargetID":78953,"Directional":true}]},{"ID":9759,"SourceStructureID":5562,"TargetStructureID":78954,"Label":"5562-78954 via Ribbon Synapse from 63771 -> 78955","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63771,"TargetID":78955,"Directional":true}]},{"ID":9760,"SourceStructureID":5562,"TargetStructureID":78961,"Label":"5562-78961 via Ribbon Synapse from 49436 -> 78962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49436,"TargetID":78962,"Directional":true}]},{"ID":9761,"SourceStructureID":5562,"TargetStructureID":78974,"Label":"5562-78974 via BC Conventional Synapse from 63776 -> 78975","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63776,"TargetID":78975,"Directional":true}]},{"ID":9762,"SourceStructureID":5562,"TargetStructureID":78982,"Label":"5562-78982 via BC Conventional Synapse from 78983 -> 78984","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78983,"TargetID":78984,"Directional":true}]},{"ID":9763,"SourceStructureID":5562,"TargetStructureID":78985,"Label":"5562-78985 via Ribbon Synapse from 63783 -> 78986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63783,"TargetID":78986,"Directional":true}]},{"ID":9764,"SourceStructureID":5562,"TargetStructureID":78997,"Label":"5562-78997 via Ribbon Synapse from 63787 -> 78998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63787,"TargetID":78998,"Directional":true}]},{"ID":9765,"SourceStructureID":5562,"TargetStructureID":79000,"Label":"5562-79000 via BC Conventional Synapse from 134473 -> 134474","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134473,"TargetID":134474,"Directional":true}]},{"ID":9766,"SourceStructureID":5562,"TargetStructureID":79013,"Label":"5562-79013 via Ribbon Synapse from 49106 -> 79014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49106,"TargetID":79014,"Directional":true}]},{"ID":9767,"SourceStructureID":5562,"TargetStructureID":79015,"Label":"5562-79015 via Ribbon Synapse from 49106 -> 79016","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49106,"TargetID":79016,"Directional":true}]},{"ID":9768,"SourceStructureID":5562,"TargetStructureID":79027,"Label":"5562-79027 via BC Conventional Synapse from 134475 -> 134476","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134475,"TargetID":134476,"Directional":true}]},{"ID":9769,"SourceStructureID":5562,"TargetStructureID":79160,"Label":"5562-79160 via BC Conventional Synapse from 79158 -> 79161","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79158,"TargetID":79161,"Directional":true}]},{"ID":9770,"SourceStructureID":5562,"TargetStructureID":79166,"Label":"5562-79166 via Ribbon Synapse from 63835 -> 79167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63835,"TargetID":79167,"Directional":true}]},{"ID":9771,"SourceStructureID":5562,"TargetStructureID":79185,"Label":"5562-79185 via Ribbon Synapse from 63838 -> 79186","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63838,"TargetID":79186,"Directional":true}]},{"ID":9772,"SourceStructureID":5562,"TargetStructureID":79187,"Label":"5562-79187 via Ribbon Synapse from 63838 -> 79188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63838,"TargetID":79188,"Directional":true}]},{"ID":9773,"SourceStructureID":5562,"TargetStructureID":79194,"Label":"5562-79194 via Ribbon Synapse from 63844 -> 79195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63844,"TargetID":79195,"Directional":true}]},{"ID":9774,"SourceStructureID":5562,"TargetStructureID":79202,"Label":"5562-79202 via Ribbon Synapse from 63847 -> 79203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63847,"TargetID":79203,"Directional":true}]},{"ID":9775,"SourceStructureID":5562,"TargetStructureID":79204,"Label":"5562-79204 via BC Conventional Synapse from 63850 -> 79205","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63850,"TargetID":79205,"Directional":true}]},{"ID":9776,"SourceStructureID":5562,"TargetStructureID":79209,"Label":"5562-79209 via Ribbon Synapse from 134309 -> 79210","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134309,"TargetID":79210,"Directional":true}]},{"ID":9777,"SourceStructureID":5562,"TargetStructureID":79211,"Label":"5562-79211 via Ribbon Synapse from 134309 -> 79212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134309,"TargetID":79212,"Directional":true}]},{"ID":9778,"SourceStructureID":5562,"TargetStructureID":79217,"Label":"5562-79217 via BC Conventional Synapse from 63840 -> 79218","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63840,"TargetID":79218,"Directional":true}]},{"ID":9779,"SourceStructureID":5562,"TargetStructureID":79232,"Label":"5562-79232 via Ribbon Synapse from 48960 -> 79234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48960,"TargetID":79234,"Directional":true}]},{"ID":9780,"SourceStructureID":5562,"TargetStructureID":79235,"Label":"5562-79235 via Ribbon Synapse from 48960 -> 79236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48960,"TargetID":79236,"Directional":true}]},{"ID":9781,"SourceStructureID":5562,"TargetStructureID":79242,"Label":"5562-79242 via Ribbon Synapse from 36522 -> 79243","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36522,"TargetID":79243,"Directional":true}]},{"ID":9782,"SourceStructureID":5562,"TargetStructureID":79244,"Label":"5562-79244 via Ribbon Synapse from 63862 -> 79249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63862,"TargetID":79249,"Directional":true}]},{"ID":9783,"SourceStructureID":5562,"TargetStructureID":79245,"Label":"5562-79245 via Ribbon Synapse from 63862 -> 79246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63862,"TargetID":79246,"Directional":true}]},{"ID":9784,"SourceStructureID":5562,"TargetStructureID":79247,"Label":"5562-79247 via Ribbon Synapse from 63862 -> 79248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63862,"TargetID":79248,"Directional":true}]},{"ID":9785,"SourceStructureID":5562,"TargetStructureID":79618,"Label":"5562-79618 via Ribbon Synapse from 63859 -> 79619","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63859,"TargetID":79619,"Directional":true}]},{"ID":9786,"SourceStructureID":5562,"TargetStructureID":79625,"Label":"5562-79625 via Ribbon Synapse from 63860 -> 79628","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63860,"TargetID":79628,"Directional":true}]},{"ID":9787,"SourceStructureID":5562,"TargetStructureID":79626,"Label":"5562-79626 via Ribbon Synapse from 63860 -> 79627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63860,"TargetID":79627,"Directional":true}]},{"ID":9788,"SourceStructureID":5562,"TargetStructureID":79629,"Label":"5562-79629 via Ribbon Synapse from 48959 -> 79642, 63876 -> 79630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48959,"TargetID":79642,"Directional":true},{"SourceID":63876,"TargetID":79630,"Directional":true}]},{"ID":9789,"SourceStructureID":5562,"TargetStructureID":79631,"Label":"5562-79631 via Ribbon Synapse from 63876 -> 79632","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63876,"TargetID":79632,"Directional":true}]},{"ID":9790,"SourceStructureID":5562,"TargetStructureID":79635,"Label":"5562-79635 via Ribbon Synapse from 48959 -> 79636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48959,"TargetID":79636,"Directional":true}]},{"ID":9791,"SourceStructureID":5562,"TargetStructureID":79639,"Label":"5562-79639 via Ribbon Synapse from 48959 -> 79640","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48959,"TargetID":79640,"Directional":true}]},{"ID":9792,"SourceStructureID":5562,"TargetStructureID":79645,"Label":"5562-79645 via BC Conventional Synapse from 134490 -> 134489","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134490,"TargetID":134489,"Directional":true}]},{"ID":9793,"SourceStructureID":5562,"TargetStructureID":79651,"Label":"5562-79651 via BC Conventional Synapse from 79652 -> 79653","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79652,"TargetID":79653,"Directional":true}]},{"ID":9794,"SourceStructureID":5562,"TargetStructureID":79654,"Label":"5562-79654 via Ribbon Synapse from 48948 -> 79655","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48948,"TargetID":79655,"Directional":true}]},{"ID":9795,"SourceStructureID":5562,"TargetStructureID":79669,"Label":"5562-79669 via BC Conventional Synapse from 134492 -> 134491","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134492,"TargetID":134491,"Directional":true}]},{"ID":9796,"SourceStructureID":5562,"TargetStructureID":79678,"Label":"5562-79678 via Ribbon Synapse from 63878 -> 79679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63878,"TargetID":79679,"Directional":true}]},{"ID":9797,"SourceStructureID":5562,"TargetStructureID":79680,"Label":"5562-79680 via Ribbon Synapse from 63878 -> 79681","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63878,"TargetID":79681,"Directional":true}]},{"ID":9798,"SourceStructureID":5562,"TargetStructureID":79688,"Label":"5562-79688 via Ribbon Synapse from 49103 -> 79689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49103,"TargetID":79689,"Directional":true}]},{"ID":9799,"SourceStructureID":5562,"TargetStructureID":79690,"Label":"5562-79690 via BC Conventional Synapse from 134494 -> 134493","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134494,"TargetID":134493,"Directional":true}]},{"ID":9800,"SourceStructureID":5562,"TargetStructureID":79698,"Label":"5562-79698 via Adherens from 79701 -> 79702","Type":"Adherens","Directional":true,"Links":[{"SourceID":79701,"TargetID":79702,"Directional":true}]},{"ID":9801,"SourceStructureID":5562,"TargetStructureID":79698,"Label":"5562-79698 via BC Conventional Synapse from 134496 -> 134497","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134496,"TargetID":134497,"Directional":true}]},{"ID":9802,"SourceStructureID":5562,"TargetStructureID":79707,"Label":"5562-79707 via BC Conventional Synapse from 134500 -> 134501","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134500,"TargetID":134501,"Directional":true}]},{"ID":9803,"SourceStructureID":5562,"TargetStructureID":79710,"Label":"5562-79710 via Ribbon Synapse from 63886 -> 79711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63886,"TargetID":79711,"Directional":true}]},{"ID":9804,"SourceStructureID":5562,"TargetStructureID":79712,"Label":"5562-79712 via Ribbon Synapse from 63886 -> 79713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63886,"TargetID":79713,"Directional":true}]},{"ID":9805,"SourceStructureID":5562,"TargetStructureID":79716,"Label":"5562-79716 via Ribbon Synapse from 49011 -> 79717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49011,"TargetID":79717,"Directional":true}]},{"ID":9806,"SourceStructureID":5562,"TargetStructureID":79718,"Label":"5562-79718 via Ribbon Synapse from 49011 -> 79719","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49011,"TargetID":79719,"Directional":true}]},{"ID":9807,"SourceStructureID":5562,"TargetStructureID":79725,"Label":"5562-79725 via Ribbon Synapse from 79724 -> 79728","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79724,"TargetID":79728,"Directional":true}]},{"ID":9808,"SourceStructureID":5562,"TargetStructureID":79726,"Label":"5562-79726 via Ribbon Synapse from 79724 -> 79727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79724,"TargetID":79727,"Directional":true}]},{"ID":9809,"SourceStructureID":5562,"TargetStructureID":79731,"Label":"5562-79731 via Ribbon Synapse from 49010 -> 79734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49010,"TargetID":79734,"Directional":true}]},{"ID":9810,"SourceStructureID":5562,"TargetStructureID":79732,"Label":"5562-79732 via Ribbon Synapse from 49010 -> 79733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49010,"TargetID":79733,"Directional":true}]},{"ID":9811,"SourceStructureID":5562,"TargetStructureID":79749,"Label":"5562-79749 via Ribbon Synapse from 49021 -> 79752","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49021,"TargetID":79752,"Directional":true}]},{"ID":9812,"SourceStructureID":5562,"TargetStructureID":79750,"Label":"5562-79750 via Ribbon Synapse from 49021 -> 79751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49021,"TargetID":79751,"Directional":true}]},{"ID":9813,"SourceStructureID":5562,"TargetStructureID":79753,"Label":"5562-79753 via BC Conventional Synapse from 79754 -> 79755","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79754,"TargetID":79755,"Directional":true}]},{"ID":9814,"SourceStructureID":5562,"TargetStructureID":79764,"Label":"5562-79764 via BC Conventional Synapse from 134505 -> 134506","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134505,"TargetID":134506,"Directional":true}]},{"ID":9815,"SourceStructureID":5562,"TargetStructureID":79781,"Label":"5562-79781 via BC Conventional Synapse from 63381 -> 79783","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":63381,"TargetID":79783,"Directional":true}]},{"ID":9816,"SourceStructureID":5562,"TargetStructureID":79802,"Label":"5562-79802 via BC Conventional Synapse from 81751 -> 81752","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81751,"TargetID":81752,"Directional":true}]},{"ID":9817,"SourceStructureID":5562,"TargetStructureID":79813,"Label":"5562-79813 via Ribbon Synapse from 63900 -> 79814","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63900,"TargetID":79814,"Directional":true}]},{"ID":9818,"SourceStructureID":5562,"TargetStructureID":79815,"Label":"5562-79815 via Ribbon Synapse from 63900 -> 79816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63900,"TargetID":79816,"Directional":true}]},{"ID":9819,"SourceStructureID":5562,"TargetStructureID":79821,"Label":"5562-79821 via Ribbon Synapse from 63906 -> 79825","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63906,"TargetID":79825,"Directional":true}]},{"ID":9820,"SourceStructureID":5562,"TargetStructureID":79822,"Label":"5562-79822 via Ribbon Synapse from 63906 -> 79826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63906,"TargetID":79826,"Directional":true}]},{"ID":9821,"SourceStructureID":5562,"TargetStructureID":79823,"Label":"5562-79823 via Ribbon Synapse from 63906 -> 79824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63906,"TargetID":79824,"Directional":true}]},{"ID":9822,"SourceStructureID":5562,"TargetStructureID":79827,"Label":"5562-79827 via BC Conventional Synapse from 79829 -> 79830","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79829,"TargetID":79830,"Directional":true}]},{"ID":9823,"SourceStructureID":5562,"TargetStructureID":79832,"Label":"5562-79832 via Ribbon Synapse from 63909 -> 79833","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63909,"TargetID":79833,"Directional":true}]},{"ID":9824,"SourceStructureID":5562,"TargetStructureID":79834,"Label":"5562-79834 via Ribbon Synapse from 134646 -> 134647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134646,"TargetID":134647,"Directional":true}]},{"ID":9825,"SourceStructureID":5562,"TargetStructureID":79847,"Label":"5562-79847 via BC Conventional Synapse from 79848 -> 92080","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":79848,"TargetID":92080,"Directional":true}]},{"ID":9826,"SourceStructureID":5562,"TargetStructureID":79849,"Label":"5562-79849 via Ribbon Synapse from 48997 -> 79850","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48997,"TargetID":79850,"Directional":true}]},{"ID":9827,"SourceStructureID":5562,"TargetStructureID":79851,"Label":"5562-79851 via Ribbon Synapse from 48997 -> 79853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48997,"TargetID":79853,"Directional":true}]},{"ID":9828,"SourceStructureID":5562,"TargetStructureID":79854,"Label":"5562-79854 via Ribbon Synapse from 48998 -> 79856","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48998,"TargetID":79856,"Directional":true}]},{"ID":9829,"SourceStructureID":5562,"TargetStructureID":79863,"Label":"5562-79863 via Ribbon Synapse from 79860 -> 79864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79860,"TargetID":79864,"Directional":true}]},{"ID":9830,"SourceStructureID":5562,"TargetStructureID":79865,"Label":"5562-79865 via Ribbon Synapse from 79860 -> 79866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79860,"TargetID":79866,"Directional":true}]},{"ID":9831,"SourceStructureID":5562,"TargetStructureID":79867,"Label":"5562-79867 via Ribbon Synapse from 79860 -> 79868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79860,"TargetID":79868,"Directional":true}]},{"ID":9832,"SourceStructureID":5562,"TargetStructureID":79886,"Label":"5562-79886 via Ribbon Synapse from 63923 -> 79887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63923,"TargetID":79887,"Directional":true}]},{"ID":9833,"SourceStructureID":5562,"TargetStructureID":79890,"Label":"5562-79890 via Ribbon Synapse from 63923 -> 79892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63923,"TargetID":79892,"Directional":true}]},{"ID":9834,"SourceStructureID":5562,"TargetStructureID":80206,"Label":"5562-80206 via Ribbon Synapse from 63082 -> 80207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63082,"TargetID":80207,"Directional":true}]},{"ID":9835,"SourceStructureID":5562,"TargetStructureID":80209,"Label":"5562-80209 via Ribbon Synapse from 63082 -> 80211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63082,"TargetID":80211,"Directional":true}]},{"ID":9836,"SourceStructureID":5562,"TargetStructureID":80219,"Label":"5562-80219 via Ribbon Synapse from 63081 -> 80222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63081,"TargetID":80222,"Directional":true}]},{"ID":9837,"SourceStructureID":5562,"TargetStructureID":80220,"Label":"5562-80220 via Ribbon Synapse from 63081 -> 80221","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63081,"TargetID":80221,"Directional":true}]},{"ID":9838,"SourceStructureID":5562,"TargetStructureID":80252,"Label":"5562-80252 via Ribbon Synapse from 63088 -> 80254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63088,"TargetID":80254,"Directional":true}]},{"ID":9839,"SourceStructureID":5562,"TargetStructureID":80253,"Label":"5562-80253 via Ribbon Synapse from 63088 -> 80255","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63088,"TargetID":80255,"Directional":true}]},{"ID":9840,"SourceStructureID":5562,"TargetStructureID":80315,"Label":"5562-80315 via Ribbon Synapse from 80317 -> 80316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80317,"TargetID":80316,"Directional":true}]},{"ID":9841,"SourceStructureID":5562,"TargetStructureID":80318,"Label":"5562-80318 via Ribbon Synapse from 63242 -> 80319","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63242,"TargetID":80319,"Directional":true}]},{"ID":9842,"SourceStructureID":5562,"TargetStructureID":80320,"Label":"5562-80320 via Ribbon Synapse from 63242 -> 80321","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63242,"TargetID":80321,"Directional":true}]},{"ID":9843,"SourceStructureID":5562,"TargetStructureID":80322,"Label":"5562-80322 via Ribbon Synapse from 63242 -> 80323","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63242,"TargetID":80323,"Directional":true}]},{"ID":9844,"SourceStructureID":5562,"TargetStructureID":80348,"Label":"5562-80348 via Ribbon Synapse from 63295 -> 80349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63295,"TargetID":80349,"Directional":true}]},{"ID":9845,"SourceStructureID":5562,"TargetStructureID":80353,"Label":"5562-80353 via Ribbon Synapse from 63299 -> 80355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63299,"TargetID":80355,"Directional":true}]},{"ID":9846,"SourceStructureID":5562,"TargetStructureID":80359,"Label":"5562-80359 via Ribbon Synapse from 63295 -> 81478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63295,"TargetID":81478,"Directional":true}]},{"ID":9847,"SourceStructureID":5562,"TargetStructureID":80372,"Label":"5562-80372 via BC Conventional Synapse from 93086 -> 93085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93086,"TargetID":93085,"Directional":true}]},{"ID":9848,"SourceStructureID":5562,"TargetStructureID":80381,"Label":"5562-80381 via Ribbon Synapse from 63307 -> 80389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63307,"TargetID":80389,"Directional":true}]},{"ID":9849,"SourceStructureID":5562,"TargetStructureID":80385,"Label":"5562-80385 via Ribbon Synapse from 63304 -> 80386","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63304,"TargetID":80386,"Directional":true}]},{"ID":9850,"SourceStructureID":5562,"TargetStructureID":80387,"Label":"5562-80387 via Ribbon Synapse from 63304 -> 80388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63304,"TargetID":80388,"Directional":true}]},{"ID":9851,"SourceStructureID":5562,"TargetStructureID":80390,"Label":"5562-80390 via Ribbon Synapse from 63307 -> 80391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63307,"TargetID":80391,"Directional":true}]},{"ID":9852,"SourceStructureID":5562,"TargetStructureID":80399,"Label":"5562-80399 via Ribbon Synapse from 63285 -> 80682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63285,"TargetID":80682,"Directional":true}]},{"ID":9853,"SourceStructureID":5562,"TargetStructureID":80673,"Label":"5562-80673 via Ribbon Synapse from 63285 -> 80675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63285,"TargetID":80675,"Directional":true}]},{"ID":9854,"SourceStructureID":5562,"TargetStructureID":80691,"Label":"5562-80691 via BC Conventional Synapse from 134629 -> 134630","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134629,"TargetID":134630,"Directional":true}]},{"ID":9855,"SourceStructureID":5562,"TargetStructureID":80700,"Label":"5562-80700 via Ribbon Synapse from 63291 -> 80701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63291,"TargetID":80701,"Directional":true}]},{"ID":9856,"SourceStructureID":5562,"TargetStructureID":80799,"Label":"5562-80799 via Ribbon Synapse from 63316 -> 80800","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63316,"TargetID":80800,"Directional":true}]},{"ID":9857,"SourceStructureID":5562,"TargetStructureID":80801,"Label":"5562-80801 via BC Conventional Synapse from 80803 -> 80802","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80803,"TargetID":80802,"Directional":true}]},{"ID":9858,"SourceStructureID":5562,"TargetStructureID":80818,"Label":"5562-80818 via Ribbon Synapse from 63315 -> 80821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63315,"TargetID":80821,"Directional":true}]},{"ID":9859,"SourceStructureID":5562,"TargetStructureID":80819,"Label":"5562-80819 via Ribbon Synapse from 63315 -> 80820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63315,"TargetID":80820,"Directional":true}]},{"ID":9860,"SourceStructureID":5562,"TargetStructureID":80826,"Label":"5562-80826 via Ribbon Synapse from 63317 -> 80830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63317,"TargetID":80830,"Directional":true}]},{"ID":9861,"SourceStructureID":5562,"TargetStructureID":80827,"Label":"5562-80827 via Ribbon Synapse from 63317 -> 80832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63317,"TargetID":80832,"Directional":true}]},{"ID":9862,"SourceStructureID":5562,"TargetStructureID":80829,"Label":"5562-80829 via Ribbon Synapse from 63317 -> 80831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63317,"TargetID":80831,"Directional":true}]},{"ID":9863,"SourceStructureID":5562,"TargetStructureID":80855,"Label":"5562-80855 via Ribbon Synapse from 134634 -> 134637","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134634,"TargetID":134637,"Directional":true}]},{"ID":9864,"SourceStructureID":5562,"TargetStructureID":80856,"Label":"5562-80856 via Ribbon Synapse from 134634 -> 134636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134634,"TargetID":134636,"Directional":true}]},{"ID":9865,"SourceStructureID":5562,"TargetStructureID":80858,"Label":"5562-80858 via Ribbon Synapse from 134634 -> 134635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134634,"TargetID":134635,"Directional":true}]},{"ID":9866,"SourceStructureID":5562,"TargetStructureID":80859,"Label":"5562-80859 via Ribbon Synapse from 134634 -> 134638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134634,"TargetID":134638,"Directional":true}]},{"ID":9867,"SourceStructureID":5562,"TargetStructureID":80874,"Label":"5562-80874 via Ribbon Synapse from 63324 -> 80875","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63324,"TargetID":80875,"Directional":true}]},{"ID":9868,"SourceStructureID":5562,"TargetStructureID":80876,"Label":"5562-80876 via Ribbon Synapse from 63324 -> 80877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63324,"TargetID":80877,"Directional":true}]},{"ID":9869,"SourceStructureID":5562,"TargetStructureID":80882,"Label":"5562-80882 via Ribbon Synapse from 63323 -> 80883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63323,"TargetID":80883,"Directional":true}]},{"ID":9870,"SourceStructureID":5562,"TargetStructureID":80891,"Label":"5562-80891 via Ribbon Synapse from 63325 -> 80892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63325,"TargetID":80892,"Directional":true}]},{"ID":9871,"SourceStructureID":5562,"TargetStructureID":80893,"Label":"5562-80893 via Ribbon Synapse from 63325 -> 80895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63325,"TargetID":80895,"Directional":true}]},{"ID":9872,"SourceStructureID":5562,"TargetStructureID":81799,"Label":"5562-81799 via Ribbon Synapse from 77220 -> 81815, 77238 -> 81806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77220,"TargetID":81815,"Directional":true},{"SourceID":77238,"TargetID":81806,"Directional":true}]},{"ID":9873,"SourceStructureID":5562,"TargetStructureID":81810,"Label":"5562-81810 via Ribbon Synapse from 77238 -> 81811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77238,"TargetID":81811,"Directional":true}]},{"ID":9874,"SourceStructureID":5562,"TargetStructureID":81852,"Label":"5562-81852 via Unknown from 81851 -> 81853","Type":"Unknown","Directional":true,"Links":[{"SourceID":81851,"TargetID":81853,"Directional":true}]},{"ID":9875,"SourceStructureID":5562,"TargetStructureID":81875,"Label":"5562-81875 via Ribbon Synapse from 134646 -> 134648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134646,"TargetID":134648,"Directional":true}]},{"ID":9876,"SourceStructureID":5562,"TargetStructureID":82462,"Label":"5562-82462 via Ribbon Synapse from 63731 -> 82465","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63731,"TargetID":82465,"Directional":true}]},{"ID":9877,"SourceStructureID":5562,"TargetStructureID":84520,"Label":"5562-84520 via Ribbon Synapse from 49563 -> 84522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49563,"TargetID":84522,"Directional":true}]},{"ID":9878,"SourceStructureID":5562,"TargetStructureID":84530,"Label":"5562-84530 via Ribbon Synapse from 31300 -> 116710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31300,"TargetID":116710,"Directional":true}]},{"ID":9879,"SourceStructureID":5563,"TargetStructureID":4850,"Label":"5563-4850 via Ribbon Synapse from 14302 -> 14301, 19488 -> 19489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14302,"TargetID":14301,"Directional":true},{"SourceID":19488,"TargetID":19489,"Directional":true}]},{"ID":9880,"SourceStructureID":5563,"TargetStructureID":5402,"Label":"5563-5402 via Ribbon Synapse from 32387 -> 129594, 32393 -> 129601","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32387,"TargetID":129594,"Directional":true},{"SourceID":32393,"TargetID":129601,"Directional":true}]},{"ID":9881,"SourceStructureID":5563,"TargetStructureID":7050,"Label":"5563-7050 via Ribbon Synapse from 19504 -> 19503, 31447 -> 32397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19504,"TargetID":19503,"Directional":true},{"SourceID":31447,"TargetID":32397,"Directional":true}]},{"ID":9882,"SourceStructureID":5563,"TargetStructureID":8037,"Label":"5563-8037 via Ribbon Synapse from 32387 -> 32386, 32389 -> 32388, 32393 -> 32394, 32395 -> 32396, 56818 -> 56821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32387,"TargetID":32386,"Directional":true},{"SourceID":32389,"TargetID":32388,"Directional":true},{"SourceID":32393,"TargetID":32394,"Directional":true},{"SourceID":32395,"TargetID":32396,"Directional":true},{"SourceID":56818,"TargetID":56821,"Directional":true}]},{"ID":9883,"SourceStructureID":5563,"TargetStructureID":9260,"Label":"5563-9260 via Ribbon Synapse from 66248 -> 98789, 98792 -> 98793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66248,"TargetID":98789,"Directional":true},{"SourceID":98792,"TargetID":98793,"Directional":true}]},{"ID":9884,"SourceStructureID":5563,"TargetStructureID":12897,"Label":"5563-12897 via Ribbon Synapse from 56657 -> 60636, 66250 -> 66251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56657,"TargetID":60636,"Directional":true},{"SourceID":66250,"TargetID":66251,"Directional":true}]},{"ID":9885,"SourceStructureID":5563,"TargetStructureID":18282,"Label":"5563-18282 via Ribbon Synapse from 31447 -> 31446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31447,"TargetID":31446,"Directional":true}]},{"ID":9886,"SourceStructureID":5565,"TargetStructureID":606,"Label":"5565-606 via Ribbon Synapse from 50172 -> 39921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50172,"TargetID":39921,"Directional":true}]},{"ID":9887,"SourceStructureID":5565,"TargetStructureID":32994,"Label":"5565-32994 via Ribbon Synapse from 35102 -> 35101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35102,"TargetID":35101,"Directional":true}]},{"ID":9888,"SourceStructureID":5565,"TargetStructureID":35232,"Label":"5565-35232 via Ribbon Synapse from 37685 -> 35235","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37685,"TargetID":35235,"Directional":true}]},{"ID":9889,"SourceStructureID":5565,"TargetStructureID":89312,"Label":"5565-89312 via BC Conventional Synapse from 89314 -> 89313","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":89314,"TargetID":89313,"Directional":true}]},{"ID":9890,"SourceStructureID":5565,"TargetStructureID":97401,"Label":"5565-97401 via Ribbon Synapse from 53985 -> 97402","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53985,"TargetID":97402,"Directional":true}]},{"ID":9891,"SourceStructureID":5566,"TargetStructureID":5107,"Label":"5566-5107 via Ribbon Synapse from 148326 -> 148324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148326,"TargetID":148324,"Directional":true}]},{"ID":9892,"SourceStructureID":5566,"TargetStructureID":5497,"Label":"5566-5497 via Ribbon Synapse from 59199 -> 59200","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59199,"TargetID":59200,"Directional":true}]},{"ID":9893,"SourceStructureID":5566,"TargetStructureID":59271,"Label":"5566-59271 via Ribbon Synapse from 33669 -> 59272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33669,"TargetID":59272,"Directional":true}]},{"ID":9894,"SourceStructureID":5566,"TargetStructureID":59275,"Label":"5566-59275 via Ribbon Synapse from 59274 -> 59276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59274,"TargetID":59276,"Directional":true}]},{"ID":9895,"SourceStructureID":5568,"TargetStructureID":389,"Label":"5568-389 via BC Conventional Synapse from 62141 -> 62140","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62141,"TargetID":62140,"Directional":true}]},{"ID":9896,"SourceStructureID":5568,"TargetStructureID":4890,"Label":"5568-4890 via Ribbon Synapse from 99177 -> 64873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99177,"TargetID":64873,"Directional":true}]},{"ID":9897,"SourceStructureID":5568,"TargetStructureID":5405,"Label":"5568-5405 via Ribbon Synapse from 11062 -> 11061, 49987 -> 11047, 50368 -> 11149","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11062,"TargetID":11061,"Directional":true},{"SourceID":49987,"TargetID":11047,"Directional":true},{"SourceID":50368,"TargetID":11149,"Directional":true}]},{"ID":9898,"SourceStructureID":5568,"TargetStructureID":8575,"Label":"5568-8575 via BC Conventional Synapse from 62139 -> 62134","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62139,"TargetID":62134,"Directional":true}]},{"ID":9899,"SourceStructureID":5568,"TargetStructureID":8575,"Label":"5568-8575 via Ribbon Synapse from 49961 -> 62780, 62380 -> 62376, 62782 -> 62781, 121329 -> 121330, 121405 -> 43288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49961,"TargetID":62780,"Directional":true},{"SourceID":62380,"TargetID":62376,"Directional":true},{"SourceID":62782,"TargetID":62781,"Directional":true},{"SourceID":121329,"TargetID":121330,"Directional":true},{"SourceID":121405,"TargetID":43288,"Directional":true}]},{"ID":9900,"SourceStructureID":5568,"TargetStructureID":32994,"Label":"5568-32994 via Ribbon Synapse from 99174 -> 32998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99174,"TargetID":32998,"Directional":true}]},{"ID":9901,"SourceStructureID":5568,"TargetStructureID":35475,"Label":"5568-35475 via Ribbon Synapse from 35479 -> 35478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35479,"TargetID":35478,"Directional":true}]},{"ID":9902,"SourceStructureID":5568,"TargetStructureID":87178,"Label":"5568-87178 via Ribbon Synapse from 121473 -> 87179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121473,"TargetID":87179,"Directional":true}]},{"ID":9903,"SourceStructureID":5568,"TargetStructureID":89571,"Label":"5568-89571 via Ribbon Synapse from 50362 -> 89575","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50362,"TargetID":89575,"Directional":true}]},{"ID":9904,"SourceStructureID":5575,"TargetStructureID":906,"Label":"5575-906 via Conventional from 22959 -> 15235","Type":"Conventional","Directional":true,"Links":[{"SourceID":22959,"TargetID":15235,"Directional":true}]},{"ID":9905,"SourceStructureID":5575,"TargetStructureID":15796,"Label":"5575-15796 via Conventional from 23079 -> 27205","Type":"Conventional","Directional":true,"Links":[{"SourceID":23079,"TargetID":27205,"Directional":true}]},{"ID":9906,"SourceStructureID":5575,"TargetStructureID":18693,"Label":"5575-18693 via Conventional from 22966 -> 18724, 23081 -> 39463","Type":"Conventional","Directional":true,"Links":[{"SourceID":22966,"TargetID":18724,"Directional":true},{"SourceID":23081,"TargetID":39463,"Directional":true}]},{"ID":9907,"SourceStructureID":5575,"TargetStructureID":27288,"Label":"5575-27288 via Conventional from 23088 -> 27298, 23096 -> 27295","Type":"Conventional","Directional":true,"Links":[{"SourceID":23088,"TargetID":27298,"Directional":true},{"SourceID":23096,"TargetID":27295,"Directional":true}]},{"ID":9908,"SourceStructureID":5575,"TargetStructureID":27304,"Label":"5575-27304 via Conventional from 22955 -> 27315","Type":"Conventional","Directional":true,"Links":[{"SourceID":22955,"TargetID":27315,"Directional":true}]},{"ID":9909,"SourceStructureID":5575,"TargetStructureID":47013,"Label":"5575-47013 via Conventional from 23068 -> 47028","Type":"Conventional","Directional":true,"Links":[{"SourceID":23068,"TargetID":47028,"Directional":true}]},{"ID":9910,"SourceStructureID":5582,"TargetStructureID":28950,"Label":"5582-28950 via Ribbon Synapse from 136371 -> 136364, 136395 -> 136396","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136371,"TargetID":136364,"Directional":true},{"SourceID":136395,"TargetID":136396,"Directional":true}]},{"ID":9911,"SourceStructureID":5582,"TargetStructureID":136393,"Label":"5582-136393 via Ribbon Synapse from 136392 -> 136394","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136392,"TargetID":136394,"Directional":true}]},{"ID":9912,"SourceStructureID":5584,"TargetStructureID":5107,"Label":"5584-5107 via Ribbon Synapse from 124490 -> 124489, 126927 -> 126919","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124490,"TargetID":124489,"Directional":true},{"SourceID":126927,"TargetID":126919,"Directional":true}]},{"ID":9913,"SourceStructureID":5584,"TargetStructureID":5117,"Label":"5584-5117 via Ribbon Synapse from 126925 -> 126926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126925,"TargetID":126926,"Directional":true}]},{"ID":9914,"SourceStructureID":5584,"TargetStructureID":5442,"Label":"5584-5442 via Ribbon Synapse from 48219 -> 15275, 55118 -> 15274","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48219,"TargetID":15275,"Directional":true},{"SourceID":55118,"TargetID":15274,"Directional":true}]},{"ID":9915,"SourceStructureID":5584,"TargetStructureID":15796,"Label":"5584-15796 via Ribbon Synapse from 55835 -> 52884, 147763 -> 147762","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55835,"TargetID":52884,"Directional":true},{"SourceID":147763,"TargetID":147762,"Directional":true}]},{"ID":9916,"SourceStructureID":5584,"TargetStructureID":23870,"Label":"5584-23870 via BC Conventional Synapse from 37925 -> 23900","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":37925,"TargetID":23900,"Directional":true}]},{"ID":9917,"SourceStructureID":5584,"TargetStructureID":33272,"Label":"5584-33272 via Ribbon Synapse from 57198 -> 33279, 89768 -> 89769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57198,"TargetID":33279,"Directional":true},{"SourceID":89768,"TargetID":89769,"Directional":true}]},{"ID":9918,"SourceStructureID":5584,"TargetStructureID":35811,"Label":"5584-35811 via Ribbon Synapse from 35881 -> 35880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35881,"TargetID":35880,"Directional":true}]},{"ID":9919,"SourceStructureID":5584,"TargetStructureID":38949,"Label":"5584-38949 via Ribbon Synapse from 38974 -> 38971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38974,"TargetID":38971,"Directional":true}]},{"ID":9920,"SourceStructureID":5584,"TargetStructureID":56841,"Label":"5584-56841 via Ribbon Synapse from 123795 -> 123796","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123795,"TargetID":123796,"Directional":true}]},{"ID":9921,"SourceStructureID":5585,"TargetStructureID":5351,"Label":"5585-5351 via Ribbon Synapse from 24109 -> 24107","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24109,"TargetID":24107,"Directional":true}]},{"ID":9922,"SourceStructureID":5585,"TargetStructureID":7114,"Label":"5585-7114 via Ribbon Synapse from 24113 -> 24112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24113,"TargetID":24112,"Directional":true}]},{"ID":9923,"SourceStructureID":5585,"TargetStructureID":85856,"Label":"5585-85856 via Ribbon Synapse from 32436 -> 32434, 32438 -> 32437, 32439 -> 32440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32436,"TargetID":32434,"Directional":true},{"SourceID":32438,"TargetID":32437,"Directional":true},{"SourceID":32439,"TargetID":32440,"Directional":true}]},{"ID":9924,"SourceStructureID":5587,"TargetStructureID":7114,"Label":"5587-7114 via Ribbon Synapse from 136454 -> 136455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136454,"TargetID":136455,"Directional":true}]},{"ID":9925,"SourceStructureID":5587,"TargetStructureID":28950,"Label":"5587-28950 via Ribbon Synapse from 136553 -> 136551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136553,"TargetID":136551,"Directional":true}]},{"ID":9926,"SourceStructureID":5587,"TargetStructureID":129648,"Label":"5587-129648 via Ribbon Synapse from 129733 -> 129731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129733,"TargetID":129731,"Directional":true}]},{"ID":9927,"SourceStructureID":5587,"TargetStructureID":129798,"Label":"5587-129798 via Ribbon Synapse from 129819 -> 129818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129819,"TargetID":129818,"Directional":true}]},{"ID":9928,"SourceStructureID":5587,"TargetStructureID":136432,"Label":"5587-136432 via Ribbon Synapse from 136443 -> 136440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136443,"TargetID":136440,"Directional":true}]},{"ID":9929,"SourceStructureID":5592,"TargetStructureID":5442,"Label":"5592-5442 via Ribbon Synapse from 36834 -> 74425","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36834,"TargetID":74425,"Directional":true}]},{"ID":9930,"SourceStructureID":5592,"TargetStructureID":23870,"Label":"5592-23870 via Ribbon Synapse from 92948 -> 92950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92948,"TargetID":92950,"Directional":true}]},{"ID":9931,"SourceStructureID":5595,"TargetStructureID":7113,"Label":"5595-7113 via Ribbon Synapse from 15283 -> 34911, 15285 -> 34912, 32425 -> 32430, 32425 -> 124076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15283,"TargetID":34911,"Directional":true},{"SourceID":15285,"TargetID":34912,"Directional":true},{"SourceID":32425,"TargetID":32430,"Directional":true},{"SourceID":32425,"TargetID":124076,"Directional":true}]},{"ID":9932,"SourceStructureID":5595,"TargetStructureID":32422,"Label":"5595-32422 via Ribbon Synapse from 32425 -> 32424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32425,"TargetID":32424,"Directional":true}]},{"ID":9933,"SourceStructureID":5596,"TargetStructureID":7114,"Label":"5596-7114 via Ribbon Synapse from 36871 -> 26608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36871,"TargetID":26608,"Directional":true}]},{"ID":9934,"SourceStructureID":5596,"TargetStructureID":42816,"Label":"5596-42816 via Ribbon Synapse from 42835 -> 42836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42835,"TargetID":42836,"Directional":true}]},{"ID":9935,"SourceStructureID":5596,"TargetStructureID":60558,"Label":"5596-60558 via Cistern Pre from 60580 -> 60582","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":60580,"TargetID":60582,"Directional":true}]},{"ID":9936,"SourceStructureID":5596,"TargetStructureID":60558,"Label":"5596-60558 via Ribbon Synapse from 36868 -> 60579, 36870 -> 60560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36868,"TargetID":60579,"Directional":true},{"SourceID":36870,"TargetID":60560,"Directional":true}]},{"ID":9937,"SourceStructureID":5598,"TargetStructureID":5107,"Label":"5598-5107 via Ribbon Synapse from 45195 -> 53135, 52969 -> 116701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45195,"TargetID":53135,"Directional":true},{"SourceID":52969,"TargetID":116701,"Directional":true}]},{"ID":9938,"SourceStructureID":5598,"TargetStructureID":5442,"Label":"5598-5442 via Ribbon Synapse from 12549 -> 55123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12549,"TargetID":55123,"Directional":true}]},{"ID":9939,"SourceStructureID":5598,"TargetStructureID":9769,"Label":"5598-9769 via Ribbon Synapse from 23907 -> 53125, 45196 -> 29957, 54479 -> 54481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23907,"TargetID":53125,"Directional":true},{"SourceID":45196,"TargetID":29957,"Directional":true},{"SourceID":54479,"TargetID":54481,"Directional":true}]},{"ID":9940,"SourceStructureID":5598,"TargetStructureID":23870,"Label":"5598-23870 via Ribbon Synapse from 23907 -> 23906, 23908 -> 23905, 23912 -> 23911, 36018 -> 36019, 36021 -> 23915, 54479 -> 23918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23907,"TargetID":23906,"Directional":true},{"SourceID":23908,"TargetID":23905,"Directional":true},{"SourceID":23912,"TargetID":23911,"Directional":true},{"SourceID":36018,"TargetID":36019,"Directional":true},{"SourceID":36021,"TargetID":23915,"Directional":true},{"SourceID":54479,"TargetID":23918,"Directional":true}]},{"ID":9941,"SourceStructureID":5598,"TargetStructureID":31605,"Label":"5598-31605 via BC Conventional Synapse from 124087 -> 126965","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124087,"TargetID":126965,"Directional":true}]},{"ID":9942,"SourceStructureID":5598,"TargetStructureID":34055,"Label":"5598-34055 via Ribbon Synapse from 34120 -> 34119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34120,"TargetID":34119,"Directional":true}]},{"ID":9943,"SourceStructureID":5598,"TargetStructureID":35335,"Label":"5598-35335 via Ribbon Synapse from 35341 -> 35340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35341,"TargetID":35340,"Directional":true}]},{"ID":9944,"SourceStructureID":5598,"TargetStructureID":35811,"Label":"5598-35811 via Ribbon Synapse from 35874 -> 35873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35874,"TargetID":35873,"Directional":true}]},{"ID":9945,"SourceStructureID":5598,"TargetStructureID":38949,"Label":"5598-38949 via Postsynapse from 130064 -> 130063","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":130064,"TargetID":130063,"Directional":true}]},{"ID":9946,"SourceStructureID":5598,"TargetStructureID":54482,"Label":"5598-54482 via Ribbon Synapse from 54485 -> 54484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54485,"TargetID":54484,"Directional":true}]},{"ID":9947,"SourceStructureID":5598,"TargetStructureID":57299,"Label":"5598-57299 via Ribbon Synapse from 56774 -> 123854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56774,"TargetID":123854,"Directional":true}]},{"ID":9948,"SourceStructureID":5598,"TargetStructureID":68539,"Label":"5598-68539 via Ribbon Synapse from 74550 -> 74552, 114936 -> 123879, 115227 -> 124257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74550,"TargetID":74552,"Directional":true},{"SourceID":114936,"TargetID":123879,"Directional":true},{"SourceID":115227,"TargetID":124257,"Directional":true}]},{"ID":9949,"SourceStructureID":5598,"TargetStructureID":73348,"Label":"5598-73348 via Ribbon Synapse from 59061 -> 124604","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59061,"TargetID":124604,"Directional":true}]},{"ID":9950,"SourceStructureID":5598,"TargetStructureID":74548,"Label":"5598-74548 via Ribbon Synapse from 74550 -> 74551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74550,"TargetID":74551,"Directional":true}]},{"ID":9951,"SourceStructureID":5598,"TargetStructureID":116142,"Label":"5598-116142 via BC Conventional Synapse from 115250 -> 123865, 115252 -> 123866, 115262 -> 120934","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":115250,"TargetID":123865,"Directional":true},{"SourceID":115252,"TargetID":123866,"Directional":true},{"SourceID":115262,"TargetID":120934,"Directional":true}]},{"ID":9952,"SourceStructureID":5598,"TargetStructureID":116142,"Label":"5598-116142 via Ribbon Synapse from 115283 -> 120933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115283,"TargetID":120933,"Directional":true}]},{"ID":9953,"SourceStructureID":5598,"TargetStructureID":124069,"Label":"5598-124069 via Ribbon Synapse from 115000 -> 124071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115000,"TargetID":124071,"Directional":true}]},{"ID":9954,"SourceStructureID":5598,"TargetStructureID":124198,"Label":"5598-124198 via BC Conventional Synapse from 114611 -> 124204","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":114611,"TargetID":124204,"Directional":true}]},{"ID":9955,"SourceStructureID":5599,"TargetStructureID":4890,"Label":"5599-4890 via Ribbon Synapse from 28842 -> 5318, 28849 -> 28838, 38327 -> 4931, 38328 -> 6095","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28842,"TargetID":5318,"Directional":true},{"SourceID":28849,"TargetID":28838,"Directional":true},{"SourceID":38327,"TargetID":4931,"Directional":true},{"SourceID":38328,"TargetID":6095,"Directional":true}]},{"ID":9956,"SourceStructureID":5599,"TargetStructureID":5117,"Label":"5599-5117 via Ribbon Synapse from 38330 -> 28799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38330,"TargetID":28799,"Directional":true}]},{"ID":9957,"SourceStructureID":5599,"TargetStructureID":5118,"Label":"5599-5118 via BC Conventional Synapse from 52173 -> 52172, 56278 -> 56279","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52173,"TargetID":52172,"Directional":true},{"SourceID":56278,"TargetID":56279,"Directional":true}]},{"ID":9958,"SourceStructureID":5599,"TargetStructureID":5118,"Label":"5599-5118 via Ribbon Synapse from 52168 -> 52167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52168,"TargetID":52167,"Directional":true}]},{"ID":9959,"SourceStructureID":5599,"TargetStructureID":5374,"Label":"5599-5374 via Ribbon Synapse from 56119 -> 131158","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56119,"TargetID":131158,"Directional":true}]},{"ID":9960,"SourceStructureID":5599,"TargetStructureID":5439,"Label":"5599-5439 via Ribbon Synapse from 66595 -> 66596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66595,"TargetID":66596,"Directional":true}]},{"ID":9961,"SourceStructureID":5599,"TargetStructureID":8580,"Label":"5599-8580 via BC Conventional Synapse from 73673 -> 59827, 73673 -> 73675","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73673,"TargetID":59827,"Directional":true},{"SourceID":73673,"TargetID":73675,"Directional":true}]},{"ID":9962,"SourceStructureID":5599,"TargetStructureID":8580,"Label":"5599-8580 via Ribbon Synapse from 59828 -> 59827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59828,"TargetID":59827,"Directional":true}]},{"ID":9963,"SourceStructureID":5599,"TargetStructureID":18282,"Label":"5599-18282 via BC Conventional Synapse from 56159 -> 72340","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":56159,"TargetID":72340,"Directional":true}]},{"ID":9964,"SourceStructureID":5599,"TargetStructureID":29702,"Label":"5599-29702 via Ribbon Synapse from 75555 -> 75505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75555,"TargetID":75505,"Directional":true}]},{"ID":9965,"SourceStructureID":5599,"TargetStructureID":38307,"Label":"5599-38307 via Ribbon Synapse from 38325 -> 38323","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38325,"TargetID":38323,"Directional":true}]},{"ID":9966,"SourceStructureID":5599,"TargetStructureID":44970,"Label":"5599-44970 via Ribbon Synapse from 44789 -> 44992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44789,"TargetID":44992,"Directional":true}]},{"ID":9967,"SourceStructureID":5599,"TargetStructureID":63978,"Label":"5599-63978 via Ribbon Synapse from 64005 -> 64004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64005,"TargetID":64004,"Directional":true}]},{"ID":9968,"SourceStructureID":5599,"TargetStructureID":66407,"Label":"5599-66407 via Ribbon Synapse from 56200 -> 69492, 135180 -> 135182","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56200,"TargetID":69492,"Directional":true},{"SourceID":135180,"TargetID":135182,"Directional":true}]},{"ID":9969,"SourceStructureID":5599,"TargetStructureID":66768,"Label":"5599-66768 via Ribbon Synapse from 131159 -> 131160","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131159,"TargetID":131160,"Directional":true}]},{"ID":9970,"SourceStructureID":5599,"TargetStructureID":72299,"Label":"5599-72299 via Ribbon Synapse from 135160 -> 135161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135160,"TargetID":135161,"Directional":true}]},{"ID":9971,"SourceStructureID":5599,"TargetStructureID":131156,"Label":"5599-131156 via Ribbon Synapse from 56119 -> 131157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56119,"TargetID":131157,"Directional":true}]},{"ID":9972,"SourceStructureID":5600,"TargetStructureID":606,"Label":"5600-606 via Ribbon Synapse from 51860 -> 51861","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51860,"TargetID":51861,"Directional":true}]},{"ID":9973,"SourceStructureID":5600,"TargetStructureID":5118,"Label":"5600-5118 via BC Conventional Synapse from 52197 -> 52196, 52203 -> 52202","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52197,"TargetID":52196,"Directional":true},{"SourceID":52203,"TargetID":52202,"Directional":true}]},{"ID":9974,"SourceStructureID":5600,"TargetStructureID":5118,"Label":"5600-5118 via Ribbon Synapse from 52201 -> 52198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52201,"TargetID":52198,"Directional":true}]},{"ID":9975,"SourceStructureID":5600,"TargetStructureID":5374,"Label":"5600-5374 via Ribbon Synapse from 20454 -> 20453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20454,"TargetID":20453,"Directional":true}]},{"ID":9976,"SourceStructureID":5600,"TargetStructureID":7114,"Label":"5600-7114 via Ribbon Synapse from 20436 -> 7917, 26613 -> 26612, 95595 -> 95596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20436,"TargetID":7917,"Directional":true},{"SourceID":26613,"TargetID":26612,"Directional":true},{"SourceID":95595,"TargetID":95596,"Directional":true}]},{"ID":9977,"SourceStructureID":5600,"TargetStructureID":7231,"Label":"5600-7231 via BC Conventional Synapse from 116993 -> 116992, 116999 -> 116996, 117004 -> 117003","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":116993,"TargetID":116992,"Directional":true},{"SourceID":116999,"TargetID":116996,"Directional":true},{"SourceID":117004,"TargetID":117003,"Directional":true}]},{"ID":9978,"SourceStructureID":5600,"TargetStructureID":7231,"Label":"5600-7231 via Ribbon Synapse from 37874 -> 117019, 116942 -> 117006, 116943 -> 117006, 116944 -> 116996, 116963 -> 116964, 117001 -> 116996","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37874,"TargetID":117019,"Directional":true},{"SourceID":116942,"TargetID":117006,"Directional":true},{"SourceID":116943,"TargetID":117006,"Directional":true},{"SourceID":116944,"TargetID":116996,"Directional":true},{"SourceID":116963,"TargetID":116964,"Directional":true},{"SourceID":117001,"TargetID":116996,"Directional":true}]},{"ID":9979,"SourceStructureID":5600,"TargetStructureID":8579,"Label":"5600-8579 via Ribbon Synapse from 26626 -> 62701, 62691 -> 62690, 116648 -> 63138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26626,"TargetID":62701,"Directional":true},{"SourceID":62691,"TargetID":62690,"Directional":true},{"SourceID":116648,"TargetID":63138,"Directional":true}]},{"ID":9980,"SourceStructureID":5600,"TargetStructureID":18282,"Label":"5600-18282 via Ribbon Synapse from 20438 -> 20433","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20438,"TargetID":20433,"Directional":true}]},{"ID":9981,"SourceStructureID":5600,"TargetStructureID":35183,"Label":"5600-35183 via Ribbon Synapse from 35187 -> 35186","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35187,"TargetID":35186,"Directional":true}]},{"ID":9982,"SourceStructureID":5600,"TargetStructureID":39319,"Label":"5600-39319 via Ribbon Synapse from 39687 -> 39686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39687,"TargetID":39686,"Directional":true}]},{"ID":9983,"SourceStructureID":5600,"TargetStructureID":122760,"Label":"5600-122760 via Ribbon Synapse from 122762 -> 122761, 122762 -> 122765, 122764 -> 122765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122762,"TargetID":122761,"Directional":true},{"SourceID":122762,"TargetID":122765,"Directional":true},{"SourceID":122764,"TargetID":122765,"Directional":true}]},{"ID":9984,"SourceStructureID":5600,"TargetStructureID":122768,"Label":"5600-122768 via Ribbon Synapse from 122772 -> 122771, 122783 -> 122784, 122819 -> 122818, 122820 -> 122818, 122821 -> 122822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122772,"TargetID":122771,"Directional":true},{"SourceID":122783,"TargetID":122784,"Directional":true},{"SourceID":122819,"TargetID":122818,"Directional":true},{"SourceID":122820,"TargetID":122818,"Directional":true},{"SourceID":122821,"TargetID":122822,"Directional":true}]},{"ID":9985,"SourceStructureID":5600,"TargetStructureID":122829,"Label":"5600-122829 via Ribbon Synapse from 122831 -> 122830, 122833 -> 122832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122831,"TargetID":122830,"Directional":true},{"SourceID":122833,"TargetID":122832,"Directional":true}]},{"ID":9986,"SourceStructureID":5600,"TargetStructureID":126901,"Label":"5600-126901 via Ribbon Synapse from 126902 -> 126903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126902,"TargetID":126903,"Directional":true}]},{"ID":9987,"SourceStructureID":5601,"TargetStructureID":606,"Label":"5601-606 via BC Conventional Synapse from 54592 -> 54591","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54592,"TargetID":54591,"Directional":true}]},{"ID":9988,"SourceStructureID":5601,"TargetStructureID":606,"Label":"5601-606 via Ribbon Synapse from 44282 -> 10523, 54132 -> 54134, 54151 -> 54147, 54153 -> 10522, 54154 -> 54157, 54155 -> 54156, 54487 -> 54488, 54550 -> 54488, 54568 -> 54571, 54573 -> 54575, 54603 -> 54607, 54604 -> 54607, 54605 -> 54607","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44282,"TargetID":10523,"Directional":true},{"SourceID":54132,"TargetID":54134,"Directional":true},{"SourceID":54151,"TargetID":54147,"Directional":true},{"SourceID":54153,"TargetID":10522,"Directional":true},{"SourceID":54154,"TargetID":54157,"Directional":true},{"SourceID":54155,"TargetID":54156,"Directional":true},{"SourceID":54487,"TargetID":54488,"Directional":true},{"SourceID":54550,"TargetID":54488,"Directional":true},{"SourceID":54568,"TargetID":54571,"Directional":true},{"SourceID":54573,"TargetID":54575,"Directional":true},{"SourceID":54603,"TargetID":54607,"Directional":true},{"SourceID":54604,"TargetID":54607,"Directional":true},{"SourceID":54605,"TargetID":54607,"Directional":true}]},{"ID":9989,"SourceStructureID":5601,"TargetStructureID":7594,"Label":"5601-7594 via Ribbon Synapse from 54132 -> 7607, 54154 -> 7612, 91349 -> 7630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54132,"TargetID":7607,"Directional":true},{"SourceID":54154,"TargetID":7612,"Directional":true},{"SourceID":91349,"TargetID":7630,"Directional":true}]},{"ID":9990,"SourceStructureID":5601,"TargetStructureID":9769,"Label":"5601-9769 via Ribbon Synapse from 23945 -> 23939, 23953 -> 23952, 23969 -> 23968, 23980 -> 23976, 23984 -> 23981, 23989 -> 23988, 23991 -> 23990, 29951 -> 29941, 54487 -> 23966, 54550 -> 23966, 56103 -> 75335, 93096 -> 93097","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23945,"TargetID":23939,"Directional":true},{"SourceID":23953,"TargetID":23952,"Directional":true},{"SourceID":23969,"TargetID":23968,"Directional":true},{"SourceID":23980,"TargetID":23976,"Directional":true},{"SourceID":23984,"TargetID":23981,"Directional":true},{"SourceID":23989,"TargetID":23988,"Directional":true},{"SourceID":23991,"TargetID":23990,"Directional":true},{"SourceID":29951,"TargetID":29941,"Directional":true},{"SourceID":54487,"TargetID":23966,"Directional":true},{"SourceID":54550,"TargetID":23966,"Directional":true},{"SourceID":56103,"TargetID":75335,"Directional":true},{"SourceID":93096,"TargetID":93097,"Directional":true}]},{"ID":9991,"SourceStructureID":5601,"TargetStructureID":23870,"Label":"5601-23870 via Ribbon Synapse from 23943 -> 23921, 23945 -> 23942, 93096 -> 93098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23943,"TargetID":23921,"Directional":true},{"SourceID":23945,"TargetID":23942,"Directional":true},{"SourceID":93096,"TargetID":93098,"Directional":true}]},{"ID":9992,"SourceStructureID":5601,"TargetStructureID":32409,"Label":"5601-32409 via Ribbon Synapse from 32411 -> 32410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32411,"TargetID":32410,"Directional":true}]},{"ID":9993,"SourceStructureID":5601,"TargetStructureID":32451,"Label":"5601-32451 via Ribbon Synapse from 32459 -> 32458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32459,"TargetID":32458,"Directional":true}]},{"ID":9994,"SourceStructureID":5601,"TargetStructureID":32787,"Label":"5601-32787 via Ribbon Synapse from 23980 -> 32789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23980,"TargetID":32789,"Directional":true}]},{"ID":9995,"SourceStructureID":5601,"TargetStructureID":34055,"Label":"5601-34055 via Ribbon Synapse from 34102 -> 34103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34102,"TargetID":34103,"Directional":true}]},{"ID":9996,"SourceStructureID":5601,"TargetStructureID":35526,"Label":"5601-35526 via Ribbon Synapse from 35533 -> 35532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35533,"TargetID":35532,"Directional":true}]},{"ID":9997,"SourceStructureID":5601,"TargetStructureID":38307,"Label":"5601-38307 via Ribbon Synapse from 38313 -> 38314","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38313,"TargetID":38314,"Directional":true}]},{"ID":9998,"SourceStructureID":5601,"TargetStructureID":54469,"Label":"5601-54469 via Ribbon Synapse from 23947 -> 54476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23947,"TargetID":54476,"Directional":true}]},{"ID":9999,"SourceStructureID":5601,"TargetStructureID":54778,"Label":"5601-54778 via Ribbon Synapse from 54811 -> 54810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54811,"TargetID":54810,"Directional":true}]},{"ID":10000,"SourceStructureID":5601,"TargetStructureID":62396,"Label":"5601-62396 via Ribbon Synapse from 36015 -> 62402, 36039 -> 62414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36015,"TargetID":62402,"Directional":true},{"SourceID":36039,"TargetID":62414,"Directional":true}]},{"ID":10001,"SourceStructureID":5601,"TargetStructureID":84118,"Label":"5601-84118 via Ribbon Synapse from 57494 -> 123651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57494,"TargetID":123651,"Directional":true}]},{"ID":10002,"SourceStructureID":5601,"TargetStructureID":91979,"Label":"5601-91979 via BC Conventional Synapse from 127154 -> 134791","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":127154,"TargetID":134791,"Directional":true}]},{"ID":10003,"SourceStructureID":5602,"TargetStructureID":115,"Label":"5602-115 via Ribbon Synapse from 10402 -> 8097","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10402,"TargetID":8097,"Directional":true}]},{"ID":10004,"SourceStructureID":5602,"TargetStructureID":5351,"Label":"5602-5351 via Ribbon Synapse from 24105 -> 24082","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24105,"TargetID":24082,"Directional":true}]},{"ID":10005,"SourceStructureID":5606,"TargetStructureID":606,"Label":"5606-606 via Ribbon Synapse from 36906 -> 5098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36906,"TargetID":5098,"Directional":true}]},{"ID":10006,"SourceStructureID":5606,"TargetStructureID":10559,"Label":"5606-10559 via Ribbon Synapse from 43647 -> 44322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43647,"TargetID":44322,"Directional":true}]},{"ID":10007,"SourceStructureID":5607,"TargetStructureID":606,"Label":"5607-606 via Ribbon Synapse from 43056 -> 44273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43056,"TargetID":44273,"Directional":true}]},{"ID":10008,"SourceStructureID":5607,"TargetStructureID":9769,"Label":"5607-9769 via Ribbon Synapse from 24007 -> 23998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24007,"TargetID":23998,"Directional":true}]},{"ID":10009,"SourceStructureID":5607,"TargetStructureID":54862,"Label":"5607-54862 via Ribbon Synapse from 54866 -> 54864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54866,"TargetID":54864,"Directional":true}]},{"ID":10010,"SourceStructureID":5608,"TargetStructureID":115,"Label":"5608-115 via Ribbon Synapse from 42664 -> 8088","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42664,"TargetID":8088,"Directional":true}]},{"ID":10011,"SourceStructureID":5608,"TargetStructureID":606,"Label":"5608-606 via BC Conventional Synapse from 54277 -> 54276","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54277,"TargetID":54276,"Directional":true}]},{"ID":10012,"SourceStructureID":5608,"TargetStructureID":606,"Label":"5608-606 via Ribbon Synapse from 54196 -> 10525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54196,"TargetID":10525,"Directional":true}]},{"ID":10013,"SourceStructureID":5608,"TargetStructureID":5607,"Label":"5608-5607 via Ribbon Synapse from 42839 -> 42840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42839,"TargetID":42840,"Directional":true}]},{"ID":10014,"SourceStructureID":5608,"TargetStructureID":10559,"Label":"5608-10559 via BC Conventional Synapse from 54277 -> 54280","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54277,"TargetID":54280,"Directional":true}]},{"ID":10015,"SourceStructureID":5608,"TargetStructureID":88762,"Label":"5608-88762 via Ribbon Synapse from 88787 -> 88783, 88788 -> 88783","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88787,"TargetID":88783,"Directional":true},{"SourceID":88788,"TargetID":88783,"Directional":true}]},{"ID":10016,"SourceStructureID":5609,"TargetStructureID":517,"Label":"5609-517 via Conventional from 20656 -> 16417, 20657 -> 20658, 20663 -> 20665, 20664 -> 20667, 61446 -> 16423","Type":"Conventional","Directional":true,"Links":[{"SourceID":20656,"TargetID":16417,"Directional":true},{"SourceID":20657,"TargetID":20658,"Directional":true},{"SourceID":20663,"TargetID":20665,"Directional":true},{"SourceID":20664,"TargetID":20667,"Directional":true},{"SourceID":61446,"TargetID":16423,"Directional":true}]},{"ID":10017,"SourceStructureID":5609,"TargetStructureID":3881,"Label":"5609-3881 via Conventional from 32348 -> 31394","Type":"Conventional","Directional":true,"Links":[{"SourceID":32348,"TargetID":31394,"Directional":true}]},{"ID":10018,"SourceStructureID":5609,"TargetStructureID":10815,"Label":"5609-10815 via Conventional from 20642 -> 31377","Type":"Conventional","Directional":true,"Links":[{"SourceID":20642,"TargetID":31377,"Directional":true}]},{"ID":10019,"SourceStructureID":5611,"TargetStructureID":8720,"Label":"5611-8720 via Ribbon Synapse from 63954 -> 63952","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63954,"TargetID":63952,"Directional":true}]},{"ID":10020,"SourceStructureID":5614,"TargetStructureID":5457,"Label":"5614-5457 via Ribbon Synapse from 8733 -> 15353, 15361 -> 15360, 15362 -> 15363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8733,"TargetID":15353,"Directional":true},{"SourceID":15361,"TargetID":15360,"Directional":true},{"SourceID":15362,"TargetID":15363,"Directional":true}]},{"ID":10021,"SourceStructureID":5614,"TargetStructureID":5634,"Label":"5614-5634 via Ribbon Synapse from 8736 -> 8731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8736,"TargetID":8731,"Directional":true}]},{"ID":10022,"SourceStructureID":5614,"TargetStructureID":11229,"Label":"5614-11229 via Ribbon Synapse from 25186 -> 25185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25186,"TargetID":25185,"Directional":true}]},{"ID":10023,"SourceStructureID":5618,"TargetStructureID":5292,"Label":"5618-5292 via Conventional from 65991 -> 65992","Type":"Conventional","Directional":true,"Links":[{"SourceID":65991,"TargetID":65992,"Directional":true}]},{"ID":10024,"SourceStructureID":5618,"TargetStructureID":18693,"Label":"5618-18693 via Conventional from 65985 -> 33819","Type":"Conventional","Directional":true,"Links":[{"SourceID":65985,"TargetID":33819,"Directional":true}]},{"ID":10025,"SourceStructureID":5622,"TargetStructureID":7050,"Label":"5622-7050 via Ribbon Synapse from 113043 -> 113044","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113043,"TargetID":113044,"Directional":true}]},{"ID":10026,"SourceStructureID":5623,"TargetStructureID":8576,"Label":"5623-8576 via Ribbon Synapse from 69042 -> 69041, 69044 -> 69043, 69047 -> 69046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69042,"TargetID":69041,"Directional":true},{"SourceID":69044,"TargetID":69043,"Directional":true},{"SourceID":69047,"TargetID":69046,"Directional":true}]},{"ID":10027,"SourceStructureID":5623,"TargetStructureID":32804,"Label":"5623-32804 via Ribbon Synapse from 32817 -> 32816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32817,"TargetID":32816,"Directional":true}]},{"ID":10028,"SourceStructureID":5623,"TargetStructureID":38236,"Label":"5623-38236 via Ribbon Synapse from 38240 -> 38239, 38244 -> 38243","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38240,"TargetID":38239,"Directional":true},{"SourceID":38244,"TargetID":38243,"Directional":true}]},{"ID":10029,"SourceStructureID":5623,"TargetStructureID":66958,"Label":"5623-66958 via Ribbon Synapse from 131980 -> 131981","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131980,"TargetID":131981,"Directional":true}]},{"ID":10030,"SourceStructureID":5623,"TargetStructureID":69049,"Label":"5623-69049 via Ribbon Synapse from 40379 -> 69051","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40379,"TargetID":69051,"Directional":true}]},{"ID":10031,"SourceStructureID":5623,"TargetStructureID":127813,"Label":"5623-127813 via Ribbon Synapse from 40376 -> 127818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40376,"TargetID":127818,"Directional":true}]},{"ID":10032,"SourceStructureID":5634,"TargetStructureID":5614,"Label":"5634-5614 via Conventional from 8729 -> 8735","Type":"Conventional","Directional":true,"Links":[{"SourceID":8729,"TargetID":8735,"Directional":true}]},{"ID":10033,"SourceStructureID":5634,"TargetStructureID":10956,"Label":"5634-10956 via Conventional from 33245 -> 33244","Type":"Conventional","Directional":true,"Links":[{"SourceID":33245,"TargetID":33244,"Directional":true}]},{"ID":10034,"SourceStructureID":5635,"TargetStructureID":5117,"Label":"5635-5117 via Ribbon Synapse from 28826 -> 28800","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28826,"TargetID":28800,"Directional":true}]},{"ID":10035,"SourceStructureID":5635,"TargetStructureID":5439,"Label":"5635-5439 via Ribbon Synapse from 55976 -> 66556, 55984 -> 70784, 55985 -> 66560, 55995 -> 66564","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55976,"TargetID":66556,"Directional":true},{"SourceID":55984,"TargetID":70784,"Directional":true},{"SourceID":55985,"TargetID":66560,"Directional":true},{"SourceID":55995,"TargetID":66564,"Directional":true}]},{"ID":10036,"SourceStructureID":5635,"TargetStructureID":73617,"Label":"5635-73617 via Ribbon Synapse from 56145 -> 73618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56145,"TargetID":73618,"Directional":true}]},{"ID":10037,"SourceStructureID":5636,"TargetStructureID":7279,"Label":"5636-7279 via Ribbon Synapse from 34725 -> 34729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34725,"TargetID":34729,"Directional":true}]},{"ID":10038,"SourceStructureID":5636,"TargetStructureID":8551,"Label":"5636-8551 via Ribbon Synapse from 34706 -> 8581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34706,"TargetID":8581,"Directional":true}]},{"ID":10039,"SourceStructureID":5636,"TargetStructureID":31389,"Label":"5636-31389 via Ribbon Synapse from 36975 -> 36977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36975,"TargetID":36977,"Directional":true}]},{"ID":10040,"SourceStructureID":5637,"TargetStructureID":606,"Label":"5637-606 via Ribbon Synapse from 44293 -> 44287, 44299 -> 44297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44293,"TargetID":44287,"Directional":true},{"SourceID":44299,"TargetID":44297,"Directional":true}]},{"ID":10041,"SourceStructureID":5637,"TargetStructureID":5451,"Label":"5637-5451 via Cistern Pre from 39077 -> 39078","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":39077,"TargetID":39078,"Directional":true}]},{"ID":10042,"SourceStructureID":5637,"TargetStructureID":7594,"Label":"5637-7594 via Ribbon Synapse from 56027 -> 7611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56027,"TargetID":7611,"Directional":true}]},{"ID":10043,"SourceStructureID":5637,"TargetStructureID":31471,"Label":"5637-31471 via Ribbon Synapse from 44290 -> 44291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44290,"TargetID":44291,"Directional":true}]},{"ID":10044,"SourceStructureID":5637,"TargetStructureID":43716,"Label":"5637-43716 via BC Conventional Synapse from 123647 -> 123646","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123647,"TargetID":123646,"Directional":true}]},{"ID":10045,"SourceStructureID":5637,"TargetStructureID":54776,"Label":"5637-54776 via Ribbon Synapse from 54792 -> 54785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54792,"TargetID":54785,"Directional":true}]},{"ID":10046,"SourceStructureID":5638,"TargetStructureID":5439,"Label":"5638-5439 via Ribbon Synapse from 39125 -> 66612, 65937 -> 66607","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39125,"TargetID":66612,"Directional":true},{"SourceID":65937,"TargetID":66607,"Directional":true}]},{"ID":10047,"SourceStructureID":5639,"TargetStructureID":7113,"Label":"5639-7113 via Ribbon Synapse from 46219 -> 46218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46219,"TargetID":46218,"Directional":true}]},{"ID":10048,"SourceStructureID":5639,"TargetStructureID":7274,"Label":"5639-7274 via Ribbon Synapse from 36987 -> 41888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36987,"TargetID":41888,"Directional":true}]},{"ID":10049,"SourceStructureID":5639,"TargetStructureID":10574,"Label":"5639-10574 via BC Conventional Synapse from 37010 -> 37011","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":37010,"TargetID":37011,"Directional":true}]},{"ID":10050,"SourceStructureID":5639,"TargetStructureID":10574,"Label":"5639-10574 via Ribbon Synapse from 37045 -> 38901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37045,"TargetID":38901,"Directional":true}]},{"ID":10051,"SourceStructureID":5639,"TargetStructureID":13858,"Label":"5639-13858 via BC Conventional Synapse from 37052 -> 13915","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":37052,"TargetID":13915,"Directional":true}]},{"ID":10052,"SourceStructureID":5639,"TargetStructureID":136432,"Label":"5639-136432 via Ribbon Synapse from 37007 -> 136526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37007,"TargetID":136526,"Directional":true}]},{"ID":10053,"SourceStructureID":5640,"TargetStructureID":5473,"Label":"5640-5473 via Ribbon Synapse from 37114 -> 37120, 37115 -> 37121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37114,"TargetID":37120,"Directional":true},{"SourceID":37115,"TargetID":37121,"Directional":true}]},{"ID":10054,"SourceStructureID":5640,"TargetStructureID":7114,"Label":"5640-7114 via Ribbon Synapse from 37059 -> 37060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37059,"TargetID":37060,"Directional":true}]},{"ID":10055,"SourceStructureID":5641,"TargetStructureID":5491,"Label":"5641-5491 via Ribbon Synapse from 20607 -> 54812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20607,"TargetID":54812,"Directional":true}]},{"ID":10056,"SourceStructureID":5641,"TargetStructureID":7204,"Label":"5641-7204 via Ribbon Synapse from 20647 -> 24345, 24184 -> 24338, 24342 -> 24341, 39050 -> 39051","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20647,"TargetID":24345,"Directional":true},{"SourceID":24184,"TargetID":24338,"Directional":true},{"SourceID":24342,"TargetID":24341,"Directional":true},{"SourceID":39050,"TargetID":39051,"Directional":true}]},{"ID":10057,"SourceStructureID":5641,"TargetStructureID":8578,"Label":"5641-8578 via Ribbon Synapse from 54499 -> 54498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54499,"TargetID":54498,"Directional":true}]},{"ID":10058,"SourceStructureID":5641,"TargetStructureID":9769,"Label":"5641-9769 via Ribbon Synapse from 54686 -> 54687","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54686,"TargetID":54687,"Directional":true}]},{"ID":10059,"SourceStructureID":5641,"TargetStructureID":12203,"Label":"5641-12203 via Ribbon Synapse from 20711 -> 12262, 27411 -> 12262, 27412 -> 12262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20711,"TargetID":12262,"Directional":true},{"SourceID":27411,"TargetID":12262,"Directional":true},{"SourceID":27412,"TargetID":12262,"Directional":true}]},{"ID":10060,"SourceStructureID":5641,"TargetStructureID":24174,"Label":"5641-24174 via Ribbon Synapse from 20677 -> 24178, 24184 -> 24179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20677,"TargetID":24178,"Directional":true},{"SourceID":24184,"TargetID":24179,"Directional":true}]},{"ID":10061,"SourceStructureID":5641,"TargetStructureID":30567,"Label":"5641-30567 via Ribbon Synapse from 32116 -> 32110","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32116,"TargetID":32110,"Directional":true}]},{"ID":10062,"SourceStructureID":5641,"TargetStructureID":34055,"Label":"5641-34055 via Ribbon Synapse from 27666 -> 34116","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27666,"TargetID":34116,"Directional":true}]},{"ID":10063,"SourceStructureID":5641,"TargetStructureID":35811,"Label":"5641-35811 via Ribbon Synapse from 35867 -> 35866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35867,"TargetID":35866,"Directional":true}]},{"ID":10064,"SourceStructureID":5641,"TargetStructureID":38404,"Label":"5641-38404 via Ribbon Synapse from 39049 -> 39048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39049,"TargetID":39048,"Directional":true}]},{"ID":10065,"SourceStructureID":5641,"TargetStructureID":54681,"Label":"5641-54681 via Ribbon Synapse from 20666 -> 54688, 54686 -> 54685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20666,"TargetID":54688,"Directional":true},{"SourceID":54686,"TargetID":54685,"Directional":true}]},{"ID":10066,"SourceStructureID":5641,"TargetStructureID":54695,"Label":"5641-54695 via Ribbon Synapse from 57508 -> 54697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57508,"TargetID":54697,"Directional":true}]},{"ID":10067,"SourceStructureID":5641,"TargetStructureID":54818,"Label":"5641-54818 via BC Conventional Synapse from 54849 -> 54848","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54849,"TargetID":54848,"Directional":true}]},{"ID":10068,"SourceStructureID":5641,"TargetStructureID":55610,"Label":"5641-55610 via Ribbon Synapse from 55613 -> 55611, 55617 -> 55618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55613,"TargetID":55611,"Directional":true},{"SourceID":55617,"TargetID":55618,"Directional":true}]},{"ID":10069,"SourceStructureID":5641,"TargetStructureID":112748,"Label":"5641-112748 via Ribbon Synapse from 20603 -> 129923","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20603,"TargetID":129923,"Directional":true}]},{"ID":10070,"SourceStructureID":5641,"TargetStructureID":147696,"Label":"5641-147696 via Ribbon Synapse from 27659 -> 147702","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27659,"TargetID":147702,"Directional":true}]},{"ID":10071,"SourceStructureID":5641,"TargetStructureID":147818,"Label":"5641-147818 via Ribbon Synapse from 147817 -> 147819","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147817,"TargetID":147819,"Directional":true}]},{"ID":10072,"SourceStructureID":5643,"TargetStructureID":5556,"Label":"5643-5556 via Conventional from 34907 -> 34908","Type":"Conventional","Directional":true,"Links":[{"SourceID":34907,"TargetID":34908,"Directional":true}]},{"ID":10073,"SourceStructureID":5643,"TargetStructureID":5650,"Label":"5643-5650 via Conventional from 38551 -> 102749","Type":"Conventional","Directional":true,"Links":[{"SourceID":38551,"TargetID":102749,"Directional":true}]},{"ID":10074,"SourceStructureID":5643,"TargetStructureID":30177,"Label":"5643-30177 via Conventional from 34909 -> 34910","Type":"Conventional","Directional":true,"Links":[{"SourceID":34909,"TargetID":34910,"Directional":true}]},{"ID":10075,"SourceStructureID":5643,"TargetStructureID":35440,"Label":"5643-35440 via Conventional from 38547 -> 35448","Type":"Conventional","Directional":true,"Links":[{"SourceID":38547,"TargetID":35448,"Directional":true}]},{"ID":10076,"SourceStructureID":5645,"TargetStructureID":606,"Label":"5645-606 via Ribbon Synapse from 47420 -> 47419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47420,"TargetID":47419,"Directional":true}]},{"ID":10077,"SourceStructureID":5645,"TargetStructureID":5107,"Label":"5645-5107 via Ribbon Synapse from 108513 -> 108514","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108513,"TargetID":108514,"Directional":true}]},{"ID":10078,"SourceStructureID":5645,"TargetStructureID":5117,"Label":"5645-5117 via Ribbon Synapse from 47763 -> 66357","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47763,"TargetID":66357,"Directional":true}]},{"ID":10079,"SourceStructureID":5645,"TargetStructureID":5294,"Label":"5645-5294 via BC Conventional Synapse from 54504 -> 39472","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54504,"TargetID":39472,"Directional":true}]},{"ID":10080,"SourceStructureID":5645,"TargetStructureID":6857,"Label":"5645-6857 via Ribbon Synapse from 108615 -> 6898, 108619 -> 6898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108615,"TargetID":6898,"Directional":true},{"SourceID":108619,"TargetID":6898,"Directional":true}]},{"ID":10081,"SourceStructureID":5645,"TargetStructureID":22974,"Label":"5645-22974 via Ribbon Synapse from 78061 -> 108627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78061,"TargetID":108627,"Directional":true}]},{"ID":10082,"SourceStructureID":5645,"TargetStructureID":31024,"Label":"5645-31024 via Ribbon Synapse from 31154 -> 31118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31154,"TargetID":31118,"Directional":true}]},{"ID":10083,"SourceStructureID":5645,"TargetStructureID":31305,"Label":"5645-31305 via Ribbon Synapse from 31327 -> 31306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31327,"TargetID":31306,"Directional":true}]},{"ID":10084,"SourceStructureID":5645,"TargetStructureID":31356,"Label":"5645-31356 via Ribbon Synapse from 32762 -> 32761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32762,"TargetID":32761,"Directional":true}]},{"ID":10085,"SourceStructureID":5645,"TargetStructureID":35384,"Label":"5645-35384 via Ribbon Synapse from 39480 -> 39481","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39480,"TargetID":39481,"Directional":true}]},{"ID":10086,"SourceStructureID":5645,"TargetStructureID":67671,"Label":"5645-67671 via Ribbon Synapse from 78049 -> 78050","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78049,"TargetID":78050,"Directional":true}]},{"ID":10087,"SourceStructureID":5645,"TargetStructureID":71517,"Label":"5645-71517 via Ribbon Synapse from 72129 -> 72127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72129,"TargetID":72127,"Directional":true}]},{"ID":10088,"SourceStructureID":5645,"TargetStructureID":72124,"Label":"5645-72124 via Ribbon Synapse from 108572 -> 108573","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108572,"TargetID":108573,"Directional":true}]},{"ID":10089,"SourceStructureID":5645,"TargetStructureID":78051,"Label":"5645-78051 via Ribbon Synapse from 78049 -> 78052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78049,"TargetID":78052,"Directional":true}]},{"ID":10090,"SourceStructureID":5645,"TargetStructureID":78423,"Label":"5645-78423 via Ribbon Synapse from 72132 -> 78424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72132,"TargetID":78424,"Directional":true}]},{"ID":10091,"SourceStructureID":5645,"TargetStructureID":87432,"Label":"5645-87432 via Ribbon Synapse from 47649 -> 87439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47649,"TargetID":87439,"Directional":true}]},{"ID":10092,"SourceStructureID":5645,"TargetStructureID":98703,"Label":"5645-98703 via Ribbon Synapse from 31332 -> 98706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31332,"TargetID":98706,"Directional":true}]},{"ID":10093,"SourceStructureID":5645,"TargetStructureID":108539,"Label":"5645-108539 via Ribbon Synapse from 108546 -> 108545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108546,"TargetID":108545,"Directional":true}]},{"ID":10094,"SourceStructureID":5645,"TargetStructureID":108616,"Label":"5645-108616 via Ribbon Synapse from 108615 -> 108618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108615,"TargetID":108618,"Directional":true}]},{"ID":10095,"SourceStructureID":5648,"TargetStructureID":5405,"Label":"5648-5405 via Ribbon Synapse from 23419 -> 11180","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23419,"TargetID":11180,"Directional":true}]},{"ID":10096,"SourceStructureID":5648,"TargetStructureID":7134,"Label":"5648-7134 via Ribbon Synapse from 53973 -> 26672","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53973,"TargetID":26672,"Directional":true}]},{"ID":10097,"SourceStructureID":5648,"TargetStructureID":8575,"Label":"5648-8575 via BC Conventional Synapse from 62286 -> 62285","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62286,"TargetID":62285,"Directional":true}]},{"ID":10098,"SourceStructureID":5648,"TargetStructureID":16073,"Label":"5648-16073 via BC Conventional Synapse from 32222 -> 32221","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":32222,"TargetID":32221,"Directional":true}]},{"ID":10099,"SourceStructureID":5648,"TargetStructureID":77077,"Label":"5648-77077 via Ribbon Synapse from 77076 -> 77079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77076,"TargetID":77079,"Directional":true}]},{"ID":10100,"SourceStructureID":5649,"TargetStructureID":4890,"Label":"5649-4890 via BC Conventional Synapse from 104702 -> 104703","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104702,"TargetID":104703,"Directional":true}]},{"ID":10101,"SourceStructureID":5649,"TargetStructureID":4890,"Label":"5649-4890 via Ribbon Synapse from 53849 -> 104545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53849,"TargetID":104545,"Directional":true}]},{"ID":10102,"SourceStructureID":5649,"TargetStructureID":5117,"Label":"5649-5117 via Ribbon Synapse from 66353 -> 66352","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66353,"TargetID":66352,"Directional":true}]},{"ID":10103,"SourceStructureID":5649,"TargetStructureID":6857,"Label":"5649-6857 via Ribbon Synapse from 105764 -> 105765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105764,"TargetID":105765,"Directional":true}]},{"ID":10104,"SourceStructureID":5649,"TargetStructureID":8027,"Label":"5649-8027 via Ribbon Synapse from 37858 -> 37857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37858,"TargetID":37857,"Directional":true}]},{"ID":10105,"SourceStructureID":5649,"TargetStructureID":8579,"Label":"5649-8579 via Ribbon Synapse from 135350 -> 62685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135350,"TargetID":62685,"Directional":true}]},{"ID":10106,"SourceStructureID":5649,"TargetStructureID":8580,"Label":"5649-8580 via BC Conventional Synapse from 107096 -> 107089","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107096,"TargetID":107089,"Directional":true}]},{"ID":10107,"SourceStructureID":5649,"TargetStructureID":8580,"Label":"5649-8580 via Ribbon Synapse from 59659 -> 59658, 70012 -> 59658, 104598 -> 104607","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59659,"TargetID":59658,"Directional":true},{"SourceID":70012,"TargetID":59658,"Directional":true},{"SourceID":104598,"TargetID":104607,"Directional":true}]},{"ID":10108,"SourceStructureID":5649,"TargetStructureID":8588,"Label":"5649-8588 via Ribbon Synapse from 106814 -> 106822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106814,"TargetID":106822,"Directional":true}]},{"ID":10109,"SourceStructureID":5649,"TargetStructureID":16087,"Label":"5649-16087 via BC Conventional Synapse from 38488 -> 16096","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":38488,"TargetID":16096,"Directional":true}]},{"ID":10110,"SourceStructureID":5649,"TargetStructureID":16087,"Label":"5649-16087 via Ribbon Synapse from 53900 -> 105611, 55733 -> 16095, 78012 -> 78013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53900,"TargetID":105611,"Directional":true},{"SourceID":55733,"TargetID":16095,"Directional":true},{"SourceID":78012,"TargetID":78013,"Directional":true}]},{"ID":10111,"SourceStructureID":5649,"TargetStructureID":22974,"Label":"5649-22974 via Ribbon Synapse from 23026 -> 23027, 23028 -> 23025, 53907 -> 105686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23026,"TargetID":23027,"Directional":true},{"SourceID":23028,"TargetID":23025,"Directional":true},{"SourceID":53907,"TargetID":105686,"Directional":true}]},{"ID":10112,"SourceStructureID":5649,"TargetStructureID":31024,"Label":"5649-31024 via Ribbon Synapse from 31042 -> 31039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31042,"TargetID":31039,"Directional":true}]},{"ID":10113,"SourceStructureID":5649,"TargetStructureID":35064,"Label":"5649-35064 via BC Conventional Synapse from 105775 -> 105776","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105775,"TargetID":105776,"Directional":true}]},{"ID":10114,"SourceStructureID":5649,"TargetStructureID":35064,"Label":"5649-35064 via Ribbon Synapse from 35067 -> 35066","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35067,"TargetID":35066,"Directional":true}]},{"ID":10115,"SourceStructureID":5649,"TargetStructureID":35356,"Label":"5649-35356 via Ribbon Synapse from 35365 -> 35364, 35366 -> 35363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35365,"TargetID":35364,"Directional":true},{"SourceID":35366,"TargetID":35363,"Directional":true}]},{"ID":10116,"SourceStructureID":5649,"TargetStructureID":36516,"Label":"5649-36516 via Ribbon Synapse from 33105 -> 36621, 33110 -> 36625","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33105,"TargetID":36621,"Directional":true},{"SourceID":33110,"TargetID":36625,"Directional":true}]},{"ID":10117,"SourceStructureID":5649,"TargetStructureID":38483,"Label":"5649-38483 via Ribbon Synapse from 38489 -> 38486, 38498 -> 38497, 106853 -> 106862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38489,"TargetID":38486,"Directional":true},{"SourceID":38498,"TargetID":38497,"Directional":true},{"SourceID":106853,"TargetID":106862,"Directional":true}]},{"ID":10118,"SourceStructureID":5649,"TargetStructureID":53202,"Label":"5649-53202 via Ribbon Synapse from 81698 -> 104674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81698,"TargetID":104674,"Directional":true}]},{"ID":10119,"SourceStructureID":5649,"TargetStructureID":61836,"Label":"5649-61836 via Ribbon Synapse from 38498 -> 69777, 68118 -> 68117, 68120 -> 68119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38498,"TargetID":69777,"Directional":true},{"SourceID":68118,"TargetID":68117,"Directional":true},{"SourceID":68120,"TargetID":68119,"Directional":true}]},{"ID":10120,"SourceStructureID":5649,"TargetStructureID":65576,"Label":"5649-65576 via Ribbon Synapse from 84501 -> 84504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84501,"TargetID":84504,"Directional":true}]},{"ID":10121,"SourceStructureID":5649,"TargetStructureID":67671,"Label":"5649-67671 via Ribbon Synapse from 53886 -> 77362, 53888 -> 104738, 53897 -> 77385, 53943 -> 105727, 53999 -> 77720, 54033 -> 77701, 76890 -> 76891, 78012 -> 78014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53886,"TargetID":77362,"Directional":true},{"SourceID":53888,"TargetID":104738,"Directional":true},{"SourceID":53897,"TargetID":77385,"Directional":true},{"SourceID":53943,"TargetID":105727,"Directional":true},{"SourceID":53999,"TargetID":77720,"Directional":true},{"SourceID":54033,"TargetID":77701,"Directional":true},{"SourceID":76890,"TargetID":76891,"Directional":true},{"SourceID":78012,"TargetID":78014,"Directional":true}]},{"ID":10122,"SourceStructureID":5649,"TargetStructureID":67894,"Label":"5649-67894 via Ribbon Synapse from 35365 -> 82237","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35365,"TargetID":82237,"Directional":true}]},{"ID":10123,"SourceStructureID":5649,"TargetStructureID":68153,"Label":"5649-68153 via Ribbon Synapse from 68177 -> 68178","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68177,"TargetID":68178,"Directional":true}]},{"ID":10124,"SourceStructureID":5649,"TargetStructureID":68497,"Label":"5649-68497 via Ribbon Synapse from 81587 -> 81586","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81587,"TargetID":81586,"Directional":true}]},{"ID":10125,"SourceStructureID":5649,"TargetStructureID":68548,"Label":"5649-68548 via BC Conventional Synapse from 73169 -> 73170","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73169,"TargetID":73170,"Directional":true}]},{"ID":10126,"SourceStructureID":5649,"TargetStructureID":71634,"Label":"5649-71634 via Ribbon Synapse from 105699 -> 105702, 105764 -> 105763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105699,"TargetID":105702,"Directional":true},{"SourceID":105764,"TargetID":105763,"Directional":true}]},{"ID":10127,"SourceStructureID":5649,"TargetStructureID":75099,"Label":"5649-75099 via BC Conventional Synapse from 82564 -> 82565","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":82564,"TargetID":82565,"Directional":true}]},{"ID":10128,"SourceStructureID":5649,"TargetStructureID":75099,"Label":"5649-75099 via Ribbon Synapse from 105397 -> 105412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105397,"TargetID":105412,"Directional":true}]},{"ID":10129,"SourceStructureID":5649,"TargetStructureID":77688,"Label":"5649-77688 via Ribbon Synapse from 53943 -> 105726","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53943,"TargetID":105726,"Directional":true}]},{"ID":10130,"SourceStructureID":5649,"TargetStructureID":78021,"Label":"5649-78021 via Ribbon Synapse from 53960 -> 105903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53960,"TargetID":105903,"Directional":true}]},{"ID":10131,"SourceStructureID":5649,"TargetStructureID":78023,"Label":"5649-78023 via Ribbon Synapse from 78025 -> 78024","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78025,"TargetID":78024,"Directional":true}]},{"ID":10132,"SourceStructureID":5649,"TargetStructureID":78032,"Label":"5649-78032 via Ribbon Synapse from 106020 -> 106021","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106020,"TargetID":106021,"Directional":true}]},{"ID":10133,"SourceStructureID":5649,"TargetStructureID":78290,"Label":"5649-78290 via Ribbon Synapse from 53999 -> 106003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53999,"TargetID":106003,"Directional":true}]},{"ID":10134,"SourceStructureID":5649,"TargetStructureID":78431,"Label":"5649-78431 via Ribbon Synapse from 54308 -> 107184","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54308,"TargetID":107184,"Directional":true}]},{"ID":10135,"SourceStructureID":5649,"TargetStructureID":78909,"Label":"5649-78909 via Ribbon Synapse from 54180 -> 106317, 54301 -> 87523","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54180,"TargetID":106317,"Directional":true},{"SourceID":54301,"TargetID":87523,"Directional":true}]},{"ID":10136,"SourceStructureID":5649,"TargetStructureID":80294,"Label":"5649-80294 via Ribbon Synapse from 54107 -> 106558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54107,"TargetID":106558,"Directional":true}]},{"ID":10137,"SourceStructureID":5649,"TargetStructureID":80338,"Label":"5649-80338 via Ribbon Synapse from 54103 -> 106538","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54103,"TargetID":106538,"Directional":true}]},{"ID":10138,"SourceStructureID":5649,"TargetStructureID":81588,"Label":"5649-81588 via Ribbon Synapse from 81587 -> 81589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81587,"TargetID":81589,"Directional":true}]},{"ID":10139,"SourceStructureID":5649,"TargetStructureID":81667,"Label":"5649-81667 via BC Conventional Synapse from 81723 -> 81721","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81723,"TargetID":81721,"Directional":true}]},{"ID":10140,"SourceStructureID":5649,"TargetStructureID":81667,"Label":"5649-81667 via Ribbon Synapse from 81698 -> 81699","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81698,"TargetID":81699,"Directional":true}]},{"ID":10141,"SourceStructureID":5649,"TargetStructureID":84502,"Label":"5649-84502 via Ribbon Synapse from 84501 -> 84503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84501,"TargetID":84503,"Directional":true}]},{"ID":10142,"SourceStructureID":5649,"TargetStructureID":103756,"Label":"5649-103756 via BC Conventional Synapse from 37860 -> 103757","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":37860,"TargetID":103757,"Directional":true}]},{"ID":10143,"SourceStructureID":5649,"TargetStructureID":103760,"Label":"5649-103760 via BC Conventional Synapse from 103758 -> 103761","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103758,"TargetID":103761,"Directional":true}]},{"ID":10144,"SourceStructureID":5649,"TargetStructureID":103766,"Label":"5649-103766 via BC Conventional Synapse from 103762 -> 103767","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103762,"TargetID":103767,"Directional":true}]},{"ID":10145,"SourceStructureID":5649,"TargetStructureID":103771,"Label":"5649-103771 via Ribbon Synapse from 53884 -> 104732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53884,"TargetID":104732,"Directional":true}]},{"ID":10146,"SourceStructureID":5649,"TargetStructureID":103777,"Label":"5649-103777 via Ribbon Synapse from 103769 -> 103778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103769,"TargetID":103778,"Directional":true}]},{"ID":10147,"SourceStructureID":5649,"TargetStructureID":104484,"Label":"5649-104484 via Ribbon Synapse from 104476 -> 104488","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104476,"TargetID":104488,"Directional":true}]},{"ID":10148,"SourceStructureID":5649,"TargetStructureID":104489,"Label":"5649-104489 via Ribbon Synapse from 104475 -> 104490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104475,"TargetID":104490,"Directional":true}]},{"ID":10149,"SourceStructureID":5649,"TargetStructureID":104491,"Label":"5649-104491 via BC Conventional Synapse from 104493 -> 104492","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104493,"TargetID":104492,"Directional":true}]},{"ID":10150,"SourceStructureID":5649,"TargetStructureID":104497,"Label":"5649-104497 via Ribbon Synapse from 104502 -> 104501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104502,"TargetID":104501,"Directional":true}]},{"ID":10151,"SourceStructureID":5649,"TargetStructureID":104509,"Label":"5649-104509 via Ribbon Synapse from 104508 -> 104518, 104561 -> 104570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104508,"TargetID":104518,"Directional":true},{"SourceID":104561,"TargetID":104570,"Directional":true}]},{"ID":10152,"SourceStructureID":5649,"TargetStructureID":104538,"Label":"5649-104538 via Ribbon Synapse from 53848 -> 104540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53848,"TargetID":104540,"Directional":true}]},{"ID":10153,"SourceStructureID":5649,"TargetStructureID":104541,"Label":"5649-104541 via Ribbon Synapse from 53848 -> 104543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53848,"TargetID":104543,"Directional":true}]},{"ID":10154,"SourceStructureID":5649,"TargetStructureID":104559,"Label":"5649-104559 via Ribbon Synapse from 104561 -> 104560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104561,"TargetID":104560,"Directional":true}]},{"ID":10155,"SourceStructureID":5649,"TargetStructureID":104575,"Label":"5649-104575 via Ribbon Synapse from 68120 -> 104577","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68120,"TargetID":104577,"Directional":true}]},{"ID":10156,"SourceStructureID":5649,"TargetStructureID":104609,"Label":"5649-104609 via BC Conventional Synapse from 104611 -> 104610","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104611,"TargetID":104610,"Directional":true}]},{"ID":10157,"SourceStructureID":5649,"TargetStructureID":104613,"Label":"5649-104613 via BC Conventional Synapse from 104612 -> 104614","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104612,"TargetID":104614,"Directional":true}]},{"ID":10158,"SourceStructureID":5649,"TargetStructureID":104619,"Label":"5649-104619 via Ribbon Synapse from 77980 -> 104621","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77980,"TargetID":104621,"Directional":true}]},{"ID":10159,"SourceStructureID":5649,"TargetStructureID":104622,"Label":"5649-104622 via Ribbon Synapse from 76890 -> 104623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76890,"TargetID":104623,"Directional":true}]},{"ID":10160,"SourceStructureID":5649,"TargetStructureID":104633,"Label":"5649-104633 via Ribbon Synapse from 53836 -> 104634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53836,"TargetID":104634,"Directional":true}]},{"ID":10161,"SourceStructureID":5649,"TargetStructureID":104636,"Label":"5649-104636 via Ribbon Synapse from 53844 -> 104637","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53844,"TargetID":104637,"Directional":true}]},{"ID":10162,"SourceStructureID":5649,"TargetStructureID":104638,"Label":"5649-104638 via Ribbon Synapse from 53844 -> 104640, 53845 -> 104645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53844,"TargetID":104640,"Directional":true},{"SourceID":53845,"TargetID":104645,"Directional":true}]},{"ID":10163,"SourceStructureID":5649,"TargetStructureID":104641,"Label":"5649-104641 via Ribbon Synapse from 53843 -> 104644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53843,"TargetID":104644,"Directional":true}]},{"ID":10164,"SourceStructureID":5649,"TargetStructureID":104646,"Label":"5649-104646 via Ribbon Synapse from 53845 -> 104647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53845,"TargetID":104647,"Directional":true}]},{"ID":10165,"SourceStructureID":5649,"TargetStructureID":104655,"Label":"5649-104655 via Ribbon Synapse from 104632 -> 104658","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104632,"TargetID":104658,"Directional":true}]},{"ID":10166,"SourceStructureID":5649,"TargetStructureID":104656,"Label":"5649-104656 via Ribbon Synapse from 104632 -> 104657","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104632,"TargetID":104657,"Directional":true}]},{"ID":10167,"SourceStructureID":5649,"TargetStructureID":104659,"Label":"5649-104659 via BC Conventional Synapse from 104664 -> 104661","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104664,"TargetID":104661,"Directional":true}]},{"ID":10168,"SourceStructureID":5649,"TargetStructureID":104662,"Label":"5649-104662 via BC Conventional Synapse from 104665 -> 104663","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104665,"TargetID":104663,"Directional":true}]},{"ID":10169,"SourceStructureID":5649,"TargetStructureID":104676,"Label":"5649-104676 via BC Conventional Synapse from 104675 -> 104678","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104675,"TargetID":104678,"Directional":true}]},{"ID":10170,"SourceStructureID":5649,"TargetStructureID":104680,"Label":"5649-104680 via Ribbon Synapse from 92022 -> 104681","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92022,"TargetID":104681,"Directional":true}]},{"ID":10171,"SourceStructureID":5649,"TargetStructureID":104682,"Label":"5649-104682 via Ribbon Synapse from 92022 -> 104689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92022,"TargetID":104689,"Directional":true}]},{"ID":10172,"SourceStructureID":5649,"TargetStructureID":104707,"Label":"5649-104707 via BC Conventional Synapse from 104704 -> 104709","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104704,"TargetID":104709,"Directional":true}]},{"ID":10173,"SourceStructureID":5649,"TargetStructureID":104710,"Label":"5649-104710 via BC Conventional Synapse from 104705 -> 104711","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104705,"TargetID":104711,"Directional":true}]},{"ID":10174,"SourceStructureID":5649,"TargetStructureID":104717,"Label":"5649-104717 via Ribbon Synapse from 53883 -> 104718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53883,"TargetID":104718,"Directional":true}]},{"ID":10175,"SourceStructureID":5649,"TargetStructureID":104721,"Label":"5649-104721 via Ribbon Synapse from 53881 -> 104723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53881,"TargetID":104723,"Directional":true}]},{"ID":10176,"SourceStructureID":5649,"TargetStructureID":104724,"Label":"5649-104724 via Ribbon Synapse from 53881 -> 104725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53881,"TargetID":104725,"Directional":true}]},{"ID":10177,"SourceStructureID":5649,"TargetStructureID":104733,"Label":"5649-104733 via Ribbon Synapse from 53886 -> 104737","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53886,"TargetID":104737,"Directional":true}]},{"ID":10178,"SourceStructureID":5649,"TargetStructureID":104739,"Label":"5649-104739 via Ribbon Synapse from 53888 -> 104758","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53888,"TargetID":104758,"Directional":true}]},{"ID":10179,"SourceStructureID":5649,"TargetStructureID":104746,"Label":"5649-104746 via Ribbon Synapse from 55740 -> 104747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55740,"TargetID":104747,"Directional":true}]},{"ID":10180,"SourceStructureID":5649,"TargetStructureID":104761,"Label":"5649-104761 via Ribbon Synapse from 23029 -> 104762","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23029,"TargetID":104762,"Directional":true}]},{"ID":10181,"SourceStructureID":5649,"TargetStructureID":104764,"Label":"5649-104764 via Ribbon Synapse from 53891 -> 104765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53891,"TargetID":104765,"Directional":true}]},{"ID":10182,"SourceStructureID":5649,"TargetStructureID":104767,"Label":"5649-104767 via BC Conventional Synapse from 104766 -> 104769","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104766,"TargetID":104769,"Directional":true}]},{"ID":10183,"SourceStructureID":5649,"TargetStructureID":104771,"Label":"5649-104771 via Ribbon Synapse from 104770 -> 104772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104770,"TargetID":104772,"Directional":true}]},{"ID":10184,"SourceStructureID":5649,"TargetStructureID":104776,"Label":"5649-104776 via BC Conventional Synapse from 104778 -> 104777","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104778,"TargetID":104777,"Directional":true}]},{"ID":10185,"SourceStructureID":5649,"TargetStructureID":104780,"Label":"5649-104780 via BC Conventional Synapse from 104779 -> 104781","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104779,"TargetID":104781,"Directional":true}]},{"ID":10186,"SourceStructureID":5649,"TargetStructureID":104783,"Label":"5649-104783 via BC Conventional Synapse from 104782 -> 104785","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104782,"TargetID":104785,"Directional":true}]},{"ID":10187,"SourceStructureID":5649,"TargetStructureID":104786,"Label":"5649-104786 via Ribbon Synapse from 55731 -> 104787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55731,"TargetID":104787,"Directional":true}]},{"ID":10188,"SourceStructureID":5649,"TargetStructureID":104788,"Label":"5649-104788 via Ribbon Synapse from 55731 -> 104789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55731,"TargetID":104789,"Directional":true}]},{"ID":10189,"SourceStructureID":5649,"TargetStructureID":104801,"Label":"5649-104801 via BC Conventional Synapse from 104800 -> 104802","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104800,"TargetID":104802,"Directional":true}]},{"ID":10190,"SourceStructureID":5649,"TargetStructureID":105320,"Label":"5649-105320 via BC Conventional Synapse from 105319 -> 105329","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105319,"TargetID":105329,"Directional":true}]},{"ID":10191,"SourceStructureID":5649,"TargetStructureID":105346,"Label":"5649-105346 via Ribbon Synapse from 105317 -> 105347","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105317,"TargetID":105347,"Directional":true}]},{"ID":10192,"SourceStructureID":5649,"TargetStructureID":105349,"Label":"5649-105349 via Ribbon Synapse from 105348 -> 105350","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105348,"TargetID":105350,"Directional":true}]},{"ID":10193,"SourceStructureID":5649,"TargetStructureID":105354,"Label":"5649-105354 via Ribbon Synapse from 105348 -> 105355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105348,"TargetID":105355,"Directional":true}]},{"ID":10194,"SourceStructureID":5649,"TargetStructureID":105359,"Label":"5649-105359 via Ribbon Synapse from 105358 -> 105371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105358,"TargetID":105371,"Directional":true}]},{"ID":10195,"SourceStructureID":5649,"TargetStructureID":105372,"Label":"5649-105372 via Ribbon Synapse from 105358 -> 105373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105358,"TargetID":105373,"Directional":true}]},{"ID":10196,"SourceStructureID":5649,"TargetStructureID":105376,"Label":"5649-105376 via Ribbon Synapse from 105374 -> 105378, 105388 -> 105389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105374,"TargetID":105378,"Directional":true},{"SourceID":105388,"TargetID":105389,"Directional":true}]},{"ID":10197,"SourceStructureID":5649,"TargetStructureID":105380,"Label":"5649-105380 via BC Conventional Synapse from 105379 -> 105387","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105379,"TargetID":105387,"Directional":true}]},{"ID":10198,"SourceStructureID":5649,"TargetStructureID":105382,"Label":"5649-105382 via Ribbon Synapse from 105388 -> 105384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105388,"TargetID":105384,"Directional":true}]},{"ID":10199,"SourceStructureID":5649,"TargetStructureID":105390,"Label":"5649-105390 via Ribbon Synapse from 105388 -> 105391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105388,"TargetID":105391,"Directional":true}]},{"ID":10200,"SourceStructureID":5649,"TargetStructureID":105398,"Label":"5649-105398 via Ribbon Synapse from 105397 -> 105399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105397,"TargetID":105399,"Directional":true}]},{"ID":10201,"SourceStructureID":5649,"TargetStructureID":105403,"Label":"5649-105403 via BC Conventional Synapse from 105405 -> 105404","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105405,"TargetID":105404,"Directional":true}]},{"ID":10202,"SourceStructureID":5649,"TargetStructureID":105410,"Label":"5649-105410 via Ribbon Synapse from 105409 -> 105411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105409,"TargetID":105411,"Directional":true}]},{"ID":10203,"SourceStructureID":5649,"TargetStructureID":105414,"Label":"5649-105414 via BC Conventional Synapse from 105413 -> 105415","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105413,"TargetID":105415,"Directional":true}]},{"ID":10204,"SourceStructureID":5649,"TargetStructureID":105418,"Label":"5649-105418 via Ribbon Synapse from 105416 -> 105419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105416,"TargetID":105419,"Directional":true}]},{"ID":10205,"SourceStructureID":5649,"TargetStructureID":105426,"Label":"5649-105426 via Ribbon Synapse from 53894 -> 105428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53894,"TargetID":105428,"Directional":true}]},{"ID":10206,"SourceStructureID":5649,"TargetStructureID":105429,"Label":"5649-105429 via Ribbon Synapse from 53895 -> 105430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53895,"TargetID":105430,"Directional":true}]},{"ID":10207,"SourceStructureID":5649,"TargetStructureID":105436,"Label":"5649-105436 via Ribbon Synapse from 53895 -> 105437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53895,"TargetID":105437,"Directional":true}]},{"ID":10208,"SourceStructureID":5649,"TargetStructureID":105438,"Label":"5649-105438 via Ribbon Synapse from 53899 -> 105442","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53899,"TargetID":105442,"Directional":true}]},{"ID":10209,"SourceStructureID":5649,"TargetStructureID":105443,"Label":"5649-105443 via Ribbon Synapse from 53899 -> 105444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53899,"TargetID":105444,"Directional":true}]},{"ID":10210,"SourceStructureID":5649,"TargetStructureID":105445,"Label":"5649-105445 via Ribbon Synapse from 53898 -> 105446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53898,"TargetID":105446,"Directional":true}]},{"ID":10211,"SourceStructureID":5649,"TargetStructureID":105553,"Label":"5649-105553 via BC Conventional Synapse from 134970 -> 134971","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134970,"TargetID":134971,"Directional":true}]},{"ID":10212,"SourceStructureID":5649,"TargetStructureID":105553,"Label":"5649-105553 via Ribbon Synapse from 105557 -> 105561","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105557,"TargetID":105561,"Directional":true}]},{"ID":10213,"SourceStructureID":5649,"TargetStructureID":105558,"Label":"5649-105558 via Ribbon Synapse from 105557 -> 105560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105557,"TargetID":105560,"Directional":true}]},{"ID":10214,"SourceStructureID":5649,"TargetStructureID":105566,"Label":"5649-105566 via Ribbon Synapse from 105565 -> 105567","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105565,"TargetID":105567,"Directional":true}]},{"ID":10215,"SourceStructureID":5649,"TargetStructureID":105568,"Label":"5649-105568 via Ribbon Synapse from 105565 -> 105569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105565,"TargetID":105569,"Directional":true}]},{"ID":10216,"SourceStructureID":5649,"TargetStructureID":105575,"Label":"5649-105575 via BC Conventional Synapse from 105573 -> 105576","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105573,"TargetID":105576,"Directional":true}]},{"ID":10217,"SourceStructureID":5649,"TargetStructureID":105585,"Label":"5649-105585 via BC Conventional Synapse from 105584 -> 105586","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105584,"TargetID":105586,"Directional":true}]},{"ID":10218,"SourceStructureID":5649,"TargetStructureID":105588,"Label":"5649-105588 via BC Conventional Synapse from 105590 -> 105591","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105590,"TargetID":105591,"Directional":true}]},{"ID":10219,"SourceStructureID":5649,"TargetStructureID":105595,"Label":"5649-105595 via Ribbon Synapse from 105594 -> 105596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105594,"TargetID":105596,"Directional":true}]},{"ID":10220,"SourceStructureID":5649,"TargetStructureID":105597,"Label":"5649-105597 via Ribbon Synapse from 105594 -> 105598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105594,"TargetID":105598,"Directional":true}]},{"ID":10221,"SourceStructureID":5649,"TargetStructureID":105609,"Label":"5649-105609 via BC Conventional Synapse from 105608 -> 105610","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105608,"TargetID":105610,"Directional":true}]},{"ID":10222,"SourceStructureID":5649,"TargetStructureID":105616,"Label":"5649-105616 via BC Conventional Synapse from 105615 -> 105617","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105615,"TargetID":105617,"Directional":true}]},{"ID":10223,"SourceStructureID":5649,"TargetStructureID":105619,"Label":"5649-105619 via BC Conventional Synapse from 105618 -> 105620","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105618,"TargetID":105620,"Directional":true}]},{"ID":10224,"SourceStructureID":5649,"TargetStructureID":105659,"Label":"5649-105659 via BC Conventional Synapse from 105656 -> 105661","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105656,"TargetID":105661,"Directional":true}]},{"ID":10225,"SourceStructureID":5649,"TargetStructureID":105659,"Label":"5649-105659 via Ribbon Synapse from 105668 -> 105662","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105668,"TargetID":105662,"Directional":true}]},{"ID":10226,"SourceStructureID":5649,"TargetStructureID":105663,"Label":"5649-105663 via Ribbon Synapse from 105668 -> 105669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105668,"TargetID":105669,"Directional":true}]},{"ID":10227,"SourceStructureID":5649,"TargetStructureID":105666,"Label":"5649-105666 via BC Conventional Synapse from 105665 -> 105667","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105665,"TargetID":105667,"Directional":true}]},{"ID":10228,"SourceStructureID":5649,"TargetStructureID":105673,"Label":"5649-105673 via Ribbon Synapse from 105672 -> 105674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105672,"TargetID":105674,"Directional":true}]},{"ID":10229,"SourceStructureID":5649,"TargetStructureID":105687,"Label":"5649-105687 via Ribbon Synapse from 53904 -> 105689, 53907 -> 105688","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53904,"TargetID":105689,"Directional":true},{"SourceID":53907,"TargetID":105688,"Directional":true}]},{"ID":10230,"SourceStructureID":5649,"TargetStructureID":105700,"Label":"5649-105700 via Ribbon Synapse from 105699 -> 105701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105699,"TargetID":105701,"Directional":true}]},{"ID":10231,"SourceStructureID":5649,"TargetStructureID":105711,"Label":"5649-105711 via Ribbon Synapse from 53945 -> 105713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53945,"TargetID":105713,"Directional":true}]},{"ID":10232,"SourceStructureID":5649,"TargetStructureID":105712,"Label":"5649-105712 via Ribbon Synapse from 53945 -> 105714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53945,"TargetID":105714,"Directional":true}]},{"ID":10233,"SourceStructureID":5649,"TargetStructureID":105715,"Label":"5649-105715 via Ribbon Synapse from 55733 -> 105717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55733,"TargetID":105717,"Directional":true}]},{"ID":10234,"SourceStructureID":5649,"TargetStructureID":105723,"Label":"5649-105723 via Ribbon Synapse from 38490 -> 105724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38490,"TargetID":105724,"Directional":true}]},{"ID":10235,"SourceStructureID":5649,"TargetStructureID":105734,"Label":"5649-105734 via BC Conventional Synapse from 105733 -> 105737","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105733,"TargetID":105737,"Directional":true}]},{"ID":10236,"SourceStructureID":5649,"TargetStructureID":105756,"Label":"5649-105756 via BC Conventional Synapse from 105752 -> 105757","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105752,"TargetID":105757,"Directional":true}]},{"ID":10237,"SourceStructureID":5649,"TargetStructureID":105773,"Label":"5649-105773 via BC Conventional Synapse from 105771 -> 105774","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105771,"TargetID":105774,"Directional":true}]},{"ID":10238,"SourceStructureID":5649,"TargetStructureID":105793,"Label":"5649-105793 via BC Conventional Synapse from 105792 -> 134907","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105792,"TargetID":134907,"Directional":true}]},{"ID":10239,"SourceStructureID":5649,"TargetStructureID":105860,"Label":"5649-105860 via Ribbon Synapse from 53947 -> 105861","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53947,"TargetID":105861,"Directional":true}]},{"ID":10240,"SourceStructureID":5649,"TargetStructureID":105862,"Label":"5649-105862 via Ribbon Synapse from 53947 -> 105863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53947,"TargetID":105863,"Directional":true}]},{"ID":10241,"SourceStructureID":5649,"TargetStructureID":105868,"Label":"5649-105868 via BC Conventional Synapse from 105867 -> 105869","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105867,"TargetID":105869,"Directional":true}]},{"ID":10242,"SourceStructureID":5649,"TargetStructureID":105871,"Label":"5649-105871 via BC Conventional Synapse from 105870 -> 105872","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105870,"TargetID":105872,"Directional":true}]},{"ID":10243,"SourceStructureID":5649,"TargetStructureID":105889,"Label":"5649-105889 via Ribbon Synapse from 53957 -> 105890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53957,"TargetID":105890,"Directional":true}]},{"ID":10244,"SourceStructureID":5649,"TargetStructureID":105897,"Label":"5649-105897 via Ribbon Synapse from 53960 -> 105898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53960,"TargetID":105898,"Directional":true}]},{"ID":10245,"SourceStructureID":5649,"TargetStructureID":105900,"Label":"5649-105900 via Ribbon Synapse from 53960 -> 105902","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53960,"TargetID":105902,"Directional":true}]},{"ID":10246,"SourceStructureID":5649,"TargetStructureID":105912,"Label":"5649-105912 via Ribbon Synapse from 53952 -> 105914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53952,"TargetID":105914,"Directional":true}]},{"ID":10247,"SourceStructureID":5649,"TargetStructureID":105916,"Label":"5649-105916 via Ribbon Synapse from 53952 -> 105917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53952,"TargetID":105917,"Directional":true}]},{"ID":10248,"SourceStructureID":5649,"TargetStructureID":105931,"Label":"5649-105931 via Ribbon Synapse from 105930 -> 105933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105930,"TargetID":105933,"Directional":true}]},{"ID":10249,"SourceStructureID":5649,"TargetStructureID":105934,"Label":"5649-105934 via Ribbon Synapse from 53974 -> 105935","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53974,"TargetID":105935,"Directional":true}]},{"ID":10250,"SourceStructureID":5649,"TargetStructureID":105936,"Label":"5649-105936 via Ribbon Synapse from 53974 -> 105938","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53974,"TargetID":105938,"Directional":true}]},{"ID":10251,"SourceStructureID":5649,"TargetStructureID":105940,"Label":"5649-105940 via Ribbon Synapse from 54003 -> 105941","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54003,"TargetID":105941,"Directional":true}]},{"ID":10252,"SourceStructureID":5649,"TargetStructureID":105942,"Label":"5649-105942 via Ribbon Synapse from 54003 -> 105943","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54003,"TargetID":105943,"Directional":true}]},{"ID":10253,"SourceStructureID":5649,"TargetStructureID":105946,"Label":"5649-105946 via BC Conventional Synapse from 105945 -> 105948","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105945,"TargetID":105948,"Directional":true}]},{"ID":10254,"SourceStructureID":5649,"TargetStructureID":105950,"Label":"5649-105950 via BC Conventional Synapse from 105949 -> 105951","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105949,"TargetID":105951,"Directional":true}]},{"ID":10255,"SourceStructureID":5649,"TargetStructureID":105952,"Label":"5649-105952 via BC Conventional Synapse from 105954 -> 105953","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105954,"TargetID":105953,"Directional":true}]},{"ID":10256,"SourceStructureID":5649,"TargetStructureID":105963,"Label":"5649-105963 via Ribbon Synapse from 105962 -> 105964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105962,"TargetID":105964,"Directional":true}]},{"ID":10257,"SourceStructureID":5649,"TargetStructureID":105982,"Label":"5649-105982 via Ribbon Synapse from 53998 -> 105985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53998,"TargetID":105985,"Directional":true}]},{"ID":10258,"SourceStructureID":5649,"TargetStructureID":105996,"Label":"5649-105996 via Ribbon Synapse from 105995 -> 105997","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105995,"TargetID":105997,"Directional":true}]},{"ID":10259,"SourceStructureID":5649,"TargetStructureID":106023,"Label":"5649-106023 via BC Conventional Synapse from 106022 -> 106025","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106022,"TargetID":106025,"Directional":true}]},{"ID":10260,"SourceStructureID":5649,"TargetStructureID":106035,"Label":"5649-106035 via Ribbon Synapse from 106034 -> 106036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106034,"TargetID":106036,"Directional":true}]},{"ID":10261,"SourceStructureID":5649,"TargetStructureID":106037,"Label":"5649-106037 via Ribbon Synapse from 106034 -> 106038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106034,"TargetID":106038,"Directional":true}]},{"ID":10262,"SourceStructureID":5649,"TargetStructureID":106059,"Label":"5649-106059 via Ribbon Synapse from 37867 -> 135385, 106043 -> 106063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37867,"TargetID":135385,"Directional":true},{"SourceID":106043,"TargetID":106063,"Directional":true}]},{"ID":10263,"SourceStructureID":5649,"TargetStructureID":106098,"Label":"5649-106098 via BC Conventional Synapse from 135386 -> 106100","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":135386,"TargetID":106100,"Directional":true}]},{"ID":10264,"SourceStructureID":5649,"TargetStructureID":106099,"Label":"5649-106099 via BC Conventional Synapse from 135386 -> 106101","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":135386,"TargetID":106101,"Directional":true}]},{"ID":10265,"SourceStructureID":5649,"TargetStructureID":106107,"Label":"5649-106107 via Ribbon Synapse from 31040 -> 106109","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31040,"TargetID":106109,"Directional":true}]},{"ID":10266,"SourceStructureID":5649,"TargetStructureID":106112,"Label":"5649-106112 via Ribbon Synapse from 37867 -> 106113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37867,"TargetID":106113,"Directional":true}]},{"ID":10267,"SourceStructureID":5649,"TargetStructureID":106114,"Label":"5649-106114 via Ribbon Synapse from 106111 -> 106115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106111,"TargetID":106115,"Directional":true}]},{"ID":10268,"SourceStructureID":5649,"TargetStructureID":106119,"Label":"5649-106119 via Ribbon Synapse from 31040 -> 106120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31040,"TargetID":106120,"Directional":true}]},{"ID":10269,"SourceStructureID":5649,"TargetStructureID":106134,"Label":"5649-106134 via Ribbon Synapse from 54084 -> 106135","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54084,"TargetID":106135,"Directional":true}]},{"ID":10270,"SourceStructureID":5649,"TargetStructureID":106246,"Label":"5649-106246 via Ribbon Synapse from 54086 -> 106248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54086,"TargetID":106248,"Directional":true}]},{"ID":10271,"SourceStructureID":5649,"TargetStructureID":106247,"Label":"5649-106247 via Ribbon Synapse from 54086 -> 106252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54086,"TargetID":106252,"Directional":true}]},{"ID":10272,"SourceStructureID":5649,"TargetStructureID":106269,"Label":"5649-106269 via Ribbon Synapse from 33110 -> 106271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33110,"TargetID":106271,"Directional":true}]},{"ID":10273,"SourceStructureID":5649,"TargetStructureID":106272,"Label":"5649-106272 via Ribbon Synapse from 54087 -> 106275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54087,"TargetID":106275,"Directional":true}]},{"ID":10274,"SourceStructureID":5649,"TargetStructureID":106273,"Label":"5649-106273 via Ribbon Synapse from 54087 -> 106274","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54087,"TargetID":106274,"Directional":true}]},{"ID":10275,"SourceStructureID":5649,"TargetStructureID":106277,"Label":"5649-106277 via Ribbon Synapse from 54090 -> 106278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54090,"TargetID":106278,"Directional":true}]},{"ID":10276,"SourceStructureID":5649,"TargetStructureID":106288,"Label":"5649-106288 via Ribbon Synapse from 106287 -> 106289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106287,"TargetID":106289,"Directional":true}]},{"ID":10277,"SourceStructureID":5649,"TargetStructureID":106291,"Label":"5649-106291 via Ribbon Synapse from 54093 -> 106307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54093,"TargetID":106307,"Directional":true}]},{"ID":10278,"SourceStructureID":5649,"TargetStructureID":106298,"Label":"5649-106298 via BC Conventional Synapse from 106300 -> 106301","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106300,"TargetID":106301,"Directional":true}]},{"ID":10279,"SourceStructureID":5649,"TargetStructureID":106308,"Label":"5649-106308 via BC Conventional Synapse from 106311 -> 106309","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106311,"TargetID":106309,"Directional":true}]},{"ID":10280,"SourceStructureID":5649,"TargetStructureID":106315,"Label":"5649-106315 via Ribbon Synapse from 54180 -> 106316","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54180,"TargetID":106316,"Directional":true}]},{"ID":10281,"SourceStructureID":5649,"TargetStructureID":106339,"Label":"5649-106339 via Ribbon Synapse from 54183 -> 106340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54183,"TargetID":106340,"Directional":true}]},{"ID":10282,"SourceStructureID":5649,"TargetStructureID":106352,"Label":"5649-106352 via BC Conventional Synapse from 54114 -> 106353","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":54114,"TargetID":106353,"Directional":true}]},{"ID":10283,"SourceStructureID":5649,"TargetStructureID":106419,"Label":"5649-106419 via Ribbon Synapse from 54119 -> 106420","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54119,"TargetID":106420,"Directional":true}]},{"ID":10284,"SourceStructureID":5649,"TargetStructureID":106531,"Label":"5649-106531 via Ribbon Synapse from 54108 -> 106533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54108,"TargetID":106533,"Directional":true}]},{"ID":10285,"SourceStructureID":5649,"TargetStructureID":106532,"Label":"5649-106532 via Ribbon Synapse from 54108 -> 106534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54108,"TargetID":106534,"Directional":true}]},{"ID":10286,"SourceStructureID":5649,"TargetStructureID":106539,"Label":"5649-106539 via Ribbon Synapse from 54103 -> 106540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54103,"TargetID":106540,"Directional":true}]},{"ID":10287,"SourceStructureID":5649,"TargetStructureID":106552,"Label":"5649-106552 via Ribbon Synapse from 106551 -> 106553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106551,"TargetID":106553,"Directional":true}]},{"ID":10288,"SourceStructureID":5649,"TargetStructureID":106560,"Label":"5649-106560 via BC Conventional Synapse from 106559 -> 106561","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106559,"TargetID":106561,"Directional":true}]},{"ID":10289,"SourceStructureID":5649,"TargetStructureID":106562,"Label":"5649-106562 via Ribbon Synapse from 54107 -> 106563","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54107,"TargetID":106563,"Directional":true}]},{"ID":10290,"SourceStructureID":5649,"TargetStructureID":106564,"Label":"5649-106564 via Ribbon Synapse from 54107 -> 106590","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54107,"TargetID":106590,"Directional":true}]},{"ID":10291,"SourceStructureID":5649,"TargetStructureID":106595,"Label":"5649-106595 via Ribbon Synapse from 106594 -> 106596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106594,"TargetID":106596,"Directional":true}]},{"ID":10292,"SourceStructureID":5649,"TargetStructureID":106661,"Label":"5649-106661 via Ribbon Synapse from 106605 -> 106664","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106605,"TargetID":106664,"Directional":true}]},{"ID":10293,"SourceStructureID":5649,"TargetStructureID":106709,"Label":"5649-106709 via Ribbon Synapse from 106706 -> 106710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106706,"TargetID":106710,"Directional":true}]},{"ID":10294,"SourceStructureID":5649,"TargetStructureID":106761,"Label":"5649-106761 via Ribbon Synapse from 54085 -> 106763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54085,"TargetID":106763,"Directional":true}]},{"ID":10295,"SourceStructureID":5649,"TargetStructureID":106764,"Label":"5649-106764 via Ribbon Synapse from 54085 -> 106769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54085,"TargetID":106769,"Directional":true}]},{"ID":10296,"SourceStructureID":5649,"TargetStructureID":106770,"Label":"5649-106770 via Ribbon Synapse from 54085 -> 106771","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54085,"TargetID":106771,"Directional":true}]},{"ID":10297,"SourceStructureID":5649,"TargetStructureID":106781,"Label":"5649-106781 via Ribbon Synapse from 106760 -> 106783","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106760,"TargetID":106783,"Directional":true}]},{"ID":10298,"SourceStructureID":5649,"TargetStructureID":106782,"Label":"5649-106782 via Ribbon Synapse from 106760 -> 106784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106760,"TargetID":106784,"Directional":true}]},{"ID":10299,"SourceStructureID":5649,"TargetStructureID":106801,"Label":"5649-106801 via Ribbon Synapse from 106814 -> 106817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106814,"TargetID":106817,"Directional":true}]},{"ID":10300,"SourceStructureID":5649,"TargetStructureID":106859,"Label":"5649-106859 via Ribbon Synapse from 106853 -> 106860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106853,"TargetID":106860,"Directional":true}]},{"ID":10301,"SourceStructureID":5649,"TargetStructureID":106873,"Label":"5649-106873 via Ribbon Synapse from 106866 -> 106874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106866,"TargetID":106874,"Directional":true}]},{"ID":10302,"SourceStructureID":5649,"TargetStructureID":106881,"Label":"5649-106881 via Ribbon Synapse from 106866 -> 106882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106866,"TargetID":106882,"Directional":true}]},{"ID":10303,"SourceStructureID":5649,"TargetStructureID":106883,"Label":"5649-106883 via Ribbon Synapse from 106866 -> 106884","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106866,"TargetID":106884,"Directional":true}]},{"ID":10304,"SourceStructureID":5649,"TargetStructureID":106926,"Label":"5649-106926 via Ribbon Synapse from 106923 -> 106930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106923,"TargetID":106930,"Directional":true}]},{"ID":10305,"SourceStructureID":5649,"TargetStructureID":107054,"Label":"5649-107054 via Ribbon Synapse from 107055 -> 107056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107055,"TargetID":107056,"Directional":true}]},{"ID":10306,"SourceStructureID":5649,"TargetStructureID":107059,"Label":"5649-107059 via Ribbon Synapse from 107058 -> 107060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107058,"TargetID":107060,"Directional":true}]},{"ID":10307,"SourceStructureID":5649,"TargetStructureID":107063,"Label":"5649-107063 via Ribbon Synapse from 107058 -> 107064","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107058,"TargetID":107064,"Directional":true}]},{"ID":10308,"SourceStructureID":5649,"TargetStructureID":107074,"Label":"5649-107074 via Ribbon Synapse from 107077 -> 107076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107077,"TargetID":107076,"Directional":true}]},{"ID":10309,"SourceStructureID":5649,"TargetStructureID":107078,"Label":"5649-107078 via Ribbon Synapse from 107077 -> 107079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107077,"TargetID":107079,"Directional":true}]},{"ID":10310,"SourceStructureID":5649,"TargetStructureID":107085,"Label":"5649-107085 via BC Conventional Synapse from 107097 -> 107086","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107097,"TargetID":107086,"Directional":true}]},{"ID":10311,"SourceStructureID":5649,"TargetStructureID":107122,"Label":"5649-107122 via Ribbon Synapse from 35067 -> 107123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35067,"TargetID":107123,"Directional":true}]},{"ID":10312,"SourceStructureID":5649,"TargetStructureID":107126,"Label":"5649-107126 via Ribbon Synapse from 54291 -> 107127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54291,"TargetID":107127,"Directional":true}]},{"ID":10313,"SourceStructureID":5649,"TargetStructureID":107129,"Label":"5649-107129 via Ribbon Synapse from 54292 -> 107130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54292,"TargetID":107130,"Directional":true}]},{"ID":10314,"SourceStructureID":5649,"TargetStructureID":107160,"Label":"5649-107160 via BC Conventional Synapse from 107159 -> 107161","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107159,"TargetID":107161,"Directional":true}]},{"ID":10315,"SourceStructureID":5649,"TargetStructureID":107179,"Label":"5649-107179 via Ribbon Synapse from 135438 -> 135439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135438,"TargetID":135439,"Directional":true}]},{"ID":10316,"SourceStructureID":5649,"TargetStructureID":107213,"Label":"5649-107213 via BC Conventional Synapse from 107212 -> 107214","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107212,"TargetID":107214,"Directional":true}]},{"ID":10317,"SourceStructureID":5649,"TargetStructureID":107220,"Label":"5649-107220 via BC Conventional Synapse from 107219 -> 107221","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107219,"TargetID":107221,"Directional":true}]},{"ID":10318,"SourceStructureID":5649,"TargetStructureID":107222,"Label":"5649-107222 via Ribbon Synapse from 107218 -> 107223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107218,"TargetID":107223,"Directional":true}]},{"ID":10319,"SourceStructureID":5649,"TargetStructureID":107227,"Label":"5649-107227 via BC Conventional Synapse from 107226 -> 107228, 134972 -> 134973","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107226,"TargetID":107228,"Directional":true},{"SourceID":134972,"TargetID":134973,"Directional":true}]},{"ID":10320,"SourceStructureID":5649,"TargetStructureID":107233,"Label":"5649-107233 via Ribbon Synapse from 107231 -> 107234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107231,"TargetID":107234,"Directional":true}]},{"ID":10321,"SourceStructureID":5649,"TargetStructureID":107235,"Label":"5649-107235 via Ribbon Synapse from 107232 -> 107236, 107269 -> 107272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107232,"TargetID":107236,"Directional":true},{"SourceID":107269,"TargetID":107272,"Directional":true}]},{"ID":10322,"SourceStructureID":5649,"TargetStructureID":107237,"Label":"5649-107237 via Ribbon Synapse from 107232 -> 107238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107232,"TargetID":107238,"Directional":true}]},{"ID":10323,"SourceStructureID":5649,"TargetStructureID":107246,"Label":"5649-107246 via BC Conventional Synapse from 107244 -> 107247","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107244,"TargetID":107247,"Directional":true}]},{"ID":10324,"SourceStructureID":5649,"TargetStructureID":107248,"Label":"5649-107248 via Ribbon Synapse from 107242 -> 107250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107242,"TargetID":107250,"Directional":true}]},{"ID":10325,"SourceStructureID":5649,"TargetStructureID":107257,"Label":"5649-107257 via BC Conventional Synapse from 107251 -> 107258","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107251,"TargetID":107258,"Directional":true}]},{"ID":10326,"SourceStructureID":5649,"TargetStructureID":107262,"Label":"5649-107262 via Ribbon Synapse from 107239 -> 107284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107239,"TargetID":107284,"Directional":true}]},{"ID":10327,"SourceStructureID":5649,"TargetStructureID":107265,"Label":"5649-107265 via Ribbon Synapse from 107241 -> 107274, 107242 -> 107286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107241,"TargetID":107274,"Directional":true},{"SourceID":107242,"TargetID":107286,"Directional":true}]},{"ID":10328,"SourceStructureID":5649,"TargetStructureID":107275,"Label":"5649-107275 via Ribbon Synapse from 107241 -> 107276","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107241,"TargetID":107276,"Directional":true}]},{"ID":10329,"SourceStructureID":5649,"TargetStructureID":107280,"Label":"5649-107280 via Ribbon Synapse from 107240 -> 107282","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107240,"TargetID":107282,"Directional":true}]},{"ID":10330,"SourceStructureID":5649,"TargetStructureID":107287,"Label":"5649-107287 via Ribbon Synapse from 107242 -> 107288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107242,"TargetID":107288,"Directional":true}]},{"ID":10331,"SourceStructureID":5649,"TargetStructureID":107295,"Label":"5649-107295 via BC Conventional Synapse from 107294 -> 107296","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107294,"TargetID":107296,"Directional":true}]},{"ID":10332,"SourceStructureID":5649,"TargetStructureID":107304,"Label":"5649-107304 via Ribbon Synapse from 107303 -> 107305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107303,"TargetID":107305,"Directional":true}]},{"ID":10333,"SourceStructureID":5649,"TargetStructureID":107306,"Label":"5649-107306 via Ribbon Synapse from 107303 -> 107307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107303,"TargetID":107307,"Directional":true}]},{"ID":10334,"SourceStructureID":5649,"TargetStructureID":107312,"Label":"5649-107312 via BC Conventional Synapse from 107311 -> 107313","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107311,"TargetID":107313,"Directional":true}]},{"ID":10335,"SourceStructureID":5649,"TargetStructureID":107328,"Label":"5649-107328 via Ribbon Synapse from 70011 -> 116725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70011,"TargetID":116725,"Directional":true}]},{"ID":10336,"SourceStructureID":5649,"TargetStructureID":107332,"Label":"5649-107332 via Ribbon Synapse from 35366 -> 107333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35366,"TargetID":107333,"Directional":true}]},{"ID":10337,"SourceStructureID":5649,"TargetStructureID":107339,"Label":"5649-107339 via BC Conventional Synapse from 104606 -> 104602","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104606,"TargetID":104602,"Directional":true}]},{"ID":10338,"SourceStructureID":5649,"TargetStructureID":107339,"Label":"5649-107339 via Ribbon Synapse from 59659 -> 107340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59659,"TargetID":107340,"Directional":true}]},{"ID":10339,"SourceStructureID":5649,"TargetStructureID":107342,"Label":"5649-107342 via Ribbon Synapse from 70012 -> 107343","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70012,"TargetID":107343,"Directional":true}]},{"ID":10340,"SourceStructureID":5649,"TargetStructureID":107344,"Label":"5649-107344 via BC Conventional Synapse from 107346 -> 107345","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107346,"TargetID":107345,"Directional":true}]},{"ID":10341,"SourceStructureID":5649,"TargetStructureID":108143,"Label":"5649-108143 via Ribbon Synapse from 108142 -> 108145","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108142,"TargetID":108145,"Directional":true}]},{"ID":10342,"SourceStructureID":5649,"TargetStructureID":113086,"Label":"5649-113086 via BC Conventional Synapse from 104624 -> 104626","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":104624,"TargetID":104626,"Directional":true}]},{"ID":10343,"SourceStructureID":5649,"TargetStructureID":135401,"Label":"5649-135401 via Ribbon Synapse from 81727 -> 135404","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81727,"TargetID":135404,"Directional":true}]},{"ID":10344,"SourceStructureID":5650,"TargetStructureID":598,"Label":"5650-598 via Ribbon Synapse from 104303 -> 6324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104303,"TargetID":6324,"Directional":true}]},{"ID":10345,"SourceStructureID":5650,"TargetStructureID":606,"Label":"5650-606 via Ribbon Synapse from 30159 -> 51486, 51396 -> 51401, 51397 -> 51399, 51442 -> 51443, 51451 -> 51453, 51465 -> 51467, 51479 -> 51480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30159,"TargetID":51486,"Directional":true},{"SourceID":51396,"TargetID":51401,"Directional":true},{"SourceID":51397,"TargetID":51399,"Directional":true},{"SourceID":51442,"TargetID":51443,"Directional":true},{"SourceID":51451,"TargetID":51453,"Directional":true},{"SourceID":51465,"TargetID":51467,"Directional":true},{"SourceID":51479,"TargetID":51480,"Directional":true}]},{"ID":10346,"SourceStructureID":5650,"TargetStructureID":5643,"Label":"5650-5643 via Ribbon Synapse from 38553 -> 38552, 102750 -> 102751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38553,"TargetID":38552,"Directional":true},{"SourceID":102750,"TargetID":102751,"Directional":true}]},{"ID":10347,"SourceStructureID":5650,"TargetStructureID":7594,"Label":"5650-7594 via Ribbon Synapse from 25090 -> 25089, 30264 -> 30273, 105061 -> 25087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25090,"TargetID":25089,"Directional":true},{"SourceID":30264,"TargetID":30273,"Directional":true},{"SourceID":105061,"TargetID":25087,"Directional":true}]},{"ID":10348,"SourceStructureID":5650,"TargetStructureID":9769,"Label":"5650-9769 via Ribbon Synapse from 23470 -> 30125, 23478 -> 23479, 23480 -> 103955, 23483 -> 23484, 23486 -> 23467, 25091 -> 52588, 29913 -> 29920, 29915 -> 20262, 29931 -> 29924, 29938 -> 29936, 30123 -> 30122, 30149 -> 30143, 30154 -> 30155, 30159 -> 30160, 30217 -> 30211, 50563 -> 103838, 51442 -> 51444, 52586 -> 52587, 52606 -> 52596, 53189 -> 53190, 103625 -> 103628, 105039 -> 52590, 105196 -> 105198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23470,"TargetID":30125,"Directional":true},{"SourceID":23478,"TargetID":23479,"Directional":true},{"SourceID":23480,"TargetID":103955,"Directional":true},{"SourceID":23483,"TargetID":23484,"Directional":true},{"SourceID":23486,"TargetID":23467,"Directional":true},{"SourceID":25091,"TargetID":52588,"Directional":true},{"SourceID":29913,"TargetID":29920,"Directional":true},{"SourceID":29915,"TargetID":20262,"Directional":true},{"SourceID":29931,"TargetID":29924,"Directional":true},{"SourceID":29938,"TargetID":29936,"Directional":true},{"SourceID":30123,"TargetID":30122,"Directional":true},{"SourceID":30149,"TargetID":30143,"Directional":true},{"SourceID":30154,"TargetID":30155,"Directional":true},{"SourceID":30159,"TargetID":30160,"Directional":true},{"SourceID":30217,"TargetID":30211,"Directional":true},{"SourceID":50563,"TargetID":103838,"Directional":true},{"SourceID":51442,"TargetID":51444,"Directional":true},{"SourceID":52586,"TargetID":52587,"Directional":true},{"SourceID":52606,"TargetID":52596,"Directional":true},{"SourceID":53189,"TargetID":53190,"Directional":true},{"SourceID":103625,"TargetID":103628,"Directional":true},{"SourceID":105039,"TargetID":52590,"Directional":true},{"SourceID":105196,"TargetID":105198,"Directional":true}]},{"ID":10349,"SourceStructureID":5650,"TargetStructureID":12897,"Label":"5650-12897 via BC Conventional Synapse from 102746 -> 102747","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102746,"TargetID":102747,"Directional":true}]},{"ID":10350,"SourceStructureID":5650,"TargetStructureID":16073,"Label":"5650-16073 via Ribbon Synapse from 105172 -> 105174","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105172,"TargetID":105174,"Directional":true}]},{"ID":10351,"SourceStructureID":5650,"TargetStructureID":30130,"Label":"5650-30130 via Postsynapse from 103827 -> 103826","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":103827,"TargetID":103826,"Directional":true}]},{"ID":10352,"SourceStructureID":5650,"TargetStructureID":30130,"Label":"5650-30130 via Ribbon Synapse from 30137 -> 30138, 30264 -> 30263, 50563 -> 103837, 104281 -> 104284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30137,"TargetID":30138,"Directional":true},{"SourceID":30264,"TargetID":30263,"Directional":true},{"SourceID":50563,"TargetID":103837,"Directional":true},{"SourceID":104281,"TargetID":104284,"Directional":true}]},{"ID":10353,"SourceStructureID":5650,"TargetStructureID":35240,"Label":"5650-35240 via Ribbon Synapse from 35264 -> 35263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35264,"TargetID":35263,"Directional":true}]},{"ID":10354,"SourceStructureID":5650,"TargetStructureID":35351,"Label":"5650-35351 via Ribbon Synapse from 50565 -> 103598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50565,"TargetID":103598,"Directional":true}]},{"ID":10355,"SourceStructureID":5650,"TargetStructureID":35440,"Label":"5650-35440 via Ribbon Synapse from 35451 -> 35450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35451,"TargetID":35450,"Directional":true}]},{"ID":10356,"SourceStructureID":5650,"TargetStructureID":53407,"Label":"5650-53407 via Ribbon Synapse from 23486 -> 53410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23486,"TargetID":53410,"Directional":true}]},{"ID":10357,"SourceStructureID":5650,"TargetStructureID":53443,"Label":"5650-53443 via Ribbon Synapse from 104153 -> 104154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104153,"TargetID":104154,"Directional":true}]},{"ID":10358,"SourceStructureID":5650,"TargetStructureID":57034,"Label":"5650-57034 via Ribbon Synapse from 57038 -> 57037, 105172 -> 105173","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57038,"TargetID":57037,"Directional":true},{"SourceID":105172,"TargetID":105173,"Directional":true}]},{"ID":10359,"SourceStructureID":5650,"TargetStructureID":89097,"Label":"5650-89097 via Ribbon Synapse from 23490 -> 89100","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23490,"TargetID":89100,"Directional":true}]},{"ID":10360,"SourceStructureID":5650,"TargetStructureID":102646,"Label":"5650-102646 via Ribbon Synapse from 102647 -> 102648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102647,"TargetID":102648,"Directional":true}]},{"ID":10361,"SourceStructureID":5650,"TargetStructureID":102649,"Label":"5650-102649 via Ribbon Synapse from 102657 -> 102654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102657,"TargetID":102654,"Directional":true}]},{"ID":10362,"SourceStructureID":5650,"TargetStructureID":102650,"Label":"5650-102650 via Ribbon Synapse from 102657 -> 102653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102657,"TargetID":102653,"Directional":true}]},{"ID":10363,"SourceStructureID":5650,"TargetStructureID":102664,"Label":"5650-102664 via Ribbon Synapse from 102668 -> 102669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102668,"TargetID":102669,"Directional":true}]},{"ID":10364,"SourceStructureID":5650,"TargetStructureID":102671,"Label":"5650-102671 via Ribbon Synapse from 102670 -> 102673","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102670,"TargetID":102673,"Directional":true}]},{"ID":10365,"SourceStructureID":5650,"TargetStructureID":102674,"Label":"5650-102674 via Ribbon Synapse from 102670 -> 102675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102670,"TargetID":102675,"Directional":true}]},{"ID":10366,"SourceStructureID":5650,"TargetStructureID":102693,"Label":"5650-102693 via BC Conventional Synapse from 102701 -> 102702","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102701,"TargetID":102702,"Directional":true}]},{"ID":10367,"SourceStructureID":5650,"TargetStructureID":102697,"Label":"5650-102697 via BC Conventional Synapse from 102698 -> 102699","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102698,"TargetID":102699,"Directional":true}]},{"ID":10368,"SourceStructureID":5650,"TargetStructureID":102761,"Label":"5650-102761 via Ribbon Synapse from 102763 -> 102762","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102763,"TargetID":102762,"Directional":true}]},{"ID":10369,"SourceStructureID":5650,"TargetStructureID":102787,"Label":"5650-102787 via Ribbon Synapse from 102786 -> 102794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102786,"TargetID":102794,"Directional":true}]},{"ID":10370,"SourceStructureID":5650,"TargetStructureID":102793,"Label":"5650-102793 via Ribbon Synapse from 102798 -> 102799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102798,"TargetID":102799,"Directional":true}]},{"ID":10371,"SourceStructureID":5650,"TargetStructureID":102953,"Label":"5650-102953 via Ribbon Synapse from 102963 -> 102972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102963,"TargetID":102972,"Directional":true}]},{"ID":10372,"SourceStructureID":5650,"TargetStructureID":102975,"Label":"5650-102975 via Ribbon Synapse from 102978 -> 102979","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102978,"TargetID":102979,"Directional":true}]},{"ID":10373,"SourceStructureID":5650,"TargetStructureID":102982,"Label":"5650-102982 via Ribbon Synapse from 102984 -> 102983","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102984,"TargetID":102983,"Directional":true}]},{"ID":10374,"SourceStructureID":5650,"TargetStructureID":102990,"Label":"5650-102990 via Ribbon Synapse from 102989 -> 102992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102989,"TargetID":102992,"Directional":true}]},{"ID":10375,"SourceStructureID":5650,"TargetStructureID":102993,"Label":"5650-102993 via Ribbon Synapse from 102989 -> 102994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102989,"TargetID":102994,"Directional":true}]},{"ID":10376,"SourceStructureID":5650,"TargetStructureID":102999,"Label":"5650-102999 via Ribbon Synapse from 61077 -> 103000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61077,"TargetID":103000,"Directional":true}]},{"ID":10377,"SourceStructureID":5650,"TargetStructureID":103005,"Label":"5650-103005 via Ribbon Synapse from 103006 -> 103007","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103006,"TargetID":103007,"Directional":true}]},{"ID":10378,"SourceStructureID":5650,"TargetStructureID":103043,"Label":"5650-103043 via Ribbon Synapse from 103042 -> 103044","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103042,"TargetID":103044,"Directional":true}]},{"ID":10379,"SourceStructureID":5650,"TargetStructureID":103045,"Label":"5650-103045 via Ribbon Synapse from 103042 -> 103046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103042,"TargetID":103046,"Directional":true}]},{"ID":10380,"SourceStructureID":5650,"TargetStructureID":103554,"Label":"5650-103554 via Ribbon Synapse from 50567 -> 103555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50567,"TargetID":103555,"Directional":true}]},{"ID":10381,"SourceStructureID":5650,"TargetStructureID":103556,"Label":"5650-103556 via Ribbon Synapse from 50567 -> 103560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50567,"TargetID":103560,"Directional":true}]},{"ID":10382,"SourceStructureID":5650,"TargetStructureID":103561,"Label":"5650-103561 via Ribbon Synapse from 50570 -> 103562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50570,"TargetID":103562,"Directional":true}]},{"ID":10383,"SourceStructureID":5650,"TargetStructureID":103563,"Label":"5650-103563 via Ribbon Synapse from 50569 -> 103584","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50569,"TargetID":103584,"Directional":true}]},{"ID":10384,"SourceStructureID":5650,"TargetStructureID":103592,"Label":"5650-103592 via Ribbon Synapse from 50565 -> 103593","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50565,"TargetID":103593,"Directional":true}]},{"ID":10385,"SourceStructureID":5650,"TargetStructureID":103601,"Label":"5650-103601 via Ribbon Synapse from 50564 -> 103602","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50564,"TargetID":103602,"Directional":true}]},{"ID":10386,"SourceStructureID":5650,"TargetStructureID":103603,"Label":"5650-103603 via Ribbon Synapse from 50564 -> 103604","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50564,"TargetID":103604,"Directional":true}]},{"ID":10387,"SourceStructureID":5650,"TargetStructureID":103622,"Label":"5650-103622 via Ribbon Synapse from 50566 -> 103624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50566,"TargetID":103624,"Directional":true}]},{"ID":10388,"SourceStructureID":5650,"TargetStructureID":103626,"Label":"5650-103626 via Ribbon Synapse from 103625 -> 103627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103625,"TargetID":103627,"Directional":true}]},{"ID":10389,"SourceStructureID":5650,"TargetStructureID":103648,"Label":"5650-103648 via Ribbon Synapse from 103649 -> 103650","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103649,"TargetID":103650,"Directional":true}]},{"ID":10390,"SourceStructureID":5650,"TargetStructureID":103661,"Label":"5650-103661 via Ribbon Synapse from 103660 -> 103662","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103660,"TargetID":103662,"Directional":true}]},{"ID":10391,"SourceStructureID":5650,"TargetStructureID":103673,"Label":"5650-103673 via Ribbon Synapse from 103668 -> 103674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103668,"TargetID":103674,"Directional":true}]},{"ID":10392,"SourceStructureID":5650,"TargetStructureID":103690,"Label":"5650-103690 via Ribbon Synapse from 103688 -> 103691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103688,"TargetID":103691,"Directional":true}]},{"ID":10393,"SourceStructureID":5650,"TargetStructureID":103699,"Label":"5650-103699 via BC Conventional Synapse from 103698 -> 103700","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":103698,"TargetID":103700,"Directional":true}]},{"ID":10394,"SourceStructureID":5650,"TargetStructureID":103823,"Label":"5650-103823 via Postsynapse from 103825 -> 103824","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":103825,"TargetID":103824,"Directional":true}]},{"ID":10395,"SourceStructureID":5650,"TargetStructureID":103841,"Label":"5650-103841 via Ribbon Synapse from 103844 -> 103845","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103844,"TargetID":103845,"Directional":true}]},{"ID":10396,"SourceStructureID":5650,"TargetStructureID":103889,"Label":"5650-103889 via Ribbon Synapse from 50555 -> 103890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50555,"TargetID":103890,"Directional":true}]},{"ID":10397,"SourceStructureID":5650,"TargetStructureID":103893,"Label":"5650-103893 via Ribbon Synapse from 23488 -> 103894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23488,"TargetID":103894,"Directional":true}]},{"ID":10398,"SourceStructureID":5650,"TargetStructureID":103905,"Label":"5650-103905 via Ribbon Synapse from 23478 -> 103906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23478,"TargetID":103906,"Directional":true}]},{"ID":10399,"SourceStructureID":5650,"TargetStructureID":103924,"Label":"5650-103924 via Ribbon Synapse from 103927 -> 103925","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103927,"TargetID":103925,"Directional":true}]},{"ID":10400,"SourceStructureID":5650,"TargetStructureID":103987,"Label":"5650-103987 via Ribbon Synapse from 103986 -> 104003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103986,"TargetID":104003,"Directional":true}]},{"ID":10401,"SourceStructureID":5650,"TargetStructureID":104005,"Label":"5650-104005 via Ribbon Synapse from 103986 -> 104011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103986,"TargetID":104011,"Directional":true}]},{"ID":10402,"SourceStructureID":5650,"TargetStructureID":104123,"Label":"5650-104123 via Ribbon Synapse from 30145 -> 104124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30145,"TargetID":104124,"Directional":true}]},{"ID":10403,"SourceStructureID":5650,"TargetStructureID":104130,"Label":"5650-104130 via Ribbon Synapse from 104127 -> 118189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104127,"TargetID":118189,"Directional":true}]},{"ID":10404,"SourceStructureID":5650,"TargetStructureID":104149,"Label":"5650-104149 via Ribbon Synapse from 30149 -> 104152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30149,"TargetID":104152,"Directional":true}]},{"ID":10405,"SourceStructureID":5650,"TargetStructureID":104155,"Label":"5650-104155 via Ribbon Synapse from 104153 -> 104156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104153,"TargetID":104156,"Directional":true}]},{"ID":10406,"SourceStructureID":5650,"TargetStructureID":104282,"Label":"5650-104282 via Ribbon Synapse from 104281 -> 104283","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104281,"TargetID":104283,"Directional":true}]},{"ID":10407,"SourceStructureID":5650,"TargetStructureID":104285,"Label":"5650-104285 via Ribbon Synapse from 30137 -> 104286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30137,"TargetID":104286,"Directional":true}]},{"ID":10408,"SourceStructureID":5650,"TargetStructureID":104304,"Label":"5650-104304 via Ribbon Synapse from 104303 -> 104306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104303,"TargetID":104306,"Directional":true}]},{"ID":10409,"SourceStructureID":5650,"TargetStructureID":104313,"Label":"5650-104313 via Ribbon Synapse from 104314 -> 104315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104314,"TargetID":104315,"Directional":true}]},{"ID":10410,"SourceStructureID":5650,"TargetStructureID":104316,"Label":"5650-104316 via Ribbon Synapse from 104314 -> 104317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104314,"TargetID":104317,"Directional":true}]},{"ID":10411,"SourceStructureID":5650,"TargetStructureID":104345,"Label":"5650-104345 via Ribbon Synapse from 104344 -> 104347","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104344,"TargetID":104347,"Directional":true}]},{"ID":10412,"SourceStructureID":5650,"TargetStructureID":104433,"Label":"5650-104433 via Ribbon Synapse from 104437 -> 104439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104437,"TargetID":104439,"Directional":true}]},{"ID":10413,"SourceStructureID":5650,"TargetStructureID":104435,"Label":"5650-104435 via Ribbon Synapse from 104437 -> 104438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104437,"TargetID":104438,"Directional":true}]},{"ID":10414,"SourceStructureID":5650,"TargetStructureID":104452,"Label":"5650-104452 via Ribbon Synapse from 29913 -> 104453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29913,"TargetID":104453,"Directional":true}]},{"ID":10415,"SourceStructureID":5650,"TargetStructureID":104454,"Label":"5650-104454 via Ribbon Synapse from 104455 -> 104456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104455,"TargetID":104456,"Directional":true}]},{"ID":10416,"SourceStructureID":5650,"TargetStructureID":104985,"Label":"5650-104985 via Ribbon Synapse from 29915 -> 104986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29915,"TargetID":104986,"Directional":true}]},{"ID":10417,"SourceStructureID":5650,"TargetStructureID":105002,"Label":"5650-105002 via Ribbon Synapse from 25091 -> 105003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25091,"TargetID":105003,"Directional":true}]},{"ID":10418,"SourceStructureID":5650,"TargetStructureID":105014,"Label":"5650-105014 via Ribbon Synapse from 105013 -> 105015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105013,"TargetID":105015,"Directional":true}]},{"ID":10419,"SourceStructureID":5650,"TargetStructureID":105022,"Label":"5650-105022 via Ribbon Synapse from 105034 -> 105035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105034,"TargetID":105035,"Directional":true}]},{"ID":10420,"SourceStructureID":5650,"TargetStructureID":105023,"Label":"5650-105023 via Unknown from 105025 -> 105024","Type":"Unknown","Directional":true,"Links":[{"SourceID":105025,"TargetID":105024,"Directional":true}]},{"ID":10421,"SourceStructureID":5650,"TargetStructureID":105062,"Label":"5650-105062 via Ribbon Synapse from 105061 -> 105063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105061,"TargetID":105063,"Directional":true}]},{"ID":10422,"SourceStructureID":5650,"TargetStructureID":105090,"Label":"5650-105090 via Ribbon Synapse from 105093 -> 105094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105093,"TargetID":105094,"Directional":true}]},{"ID":10423,"SourceStructureID":5650,"TargetStructureID":105100,"Label":"5650-105100 via Ribbon Synapse from 105099 -> 105101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105099,"TargetID":105101,"Directional":true}]},{"ID":10424,"SourceStructureID":5650,"TargetStructureID":105102,"Label":"5650-105102 via Ribbon Synapse from 105111 -> 105115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105111,"TargetID":105115,"Directional":true}]},{"ID":10425,"SourceStructureID":5650,"TargetStructureID":105112,"Label":"5650-105112 via Ribbon Synapse from 105111 -> 105113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105111,"TargetID":105113,"Directional":true}]},{"ID":10426,"SourceStructureID":5650,"TargetStructureID":105126,"Label":"5650-105126 via Ribbon Synapse from 105125 -> 105127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105125,"TargetID":105127,"Directional":true}]},{"ID":10427,"SourceStructureID":5650,"TargetStructureID":105131,"Label":"5650-105131 via Ribbon Synapse from 52606 -> 105132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52606,"TargetID":105132,"Directional":true}]},{"ID":10428,"SourceStructureID":5650,"TargetStructureID":105146,"Label":"5650-105146 via Ribbon Synapse from 105145 -> 105147","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105145,"TargetID":105147,"Directional":true}]},{"ID":10429,"SourceStructureID":5650,"TargetStructureID":105148,"Label":"5650-105148 via Ribbon Synapse from 105145 -> 105149","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105145,"TargetID":105149,"Directional":true}]},{"ID":10430,"SourceStructureID":5650,"TargetStructureID":105151,"Label":"5650-105151 via Ribbon Synapse from 105150 -> 105152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105150,"TargetID":105152,"Directional":true}]},{"ID":10431,"SourceStructureID":5650,"TargetStructureID":105164,"Label":"5650-105164 via Ribbon Synapse from 105166 -> 105165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105166,"TargetID":105165,"Directional":true}]},{"ID":10432,"SourceStructureID":5650,"TargetStructureID":105167,"Label":"5650-105167 via Ribbon Synapse from 30216 -> 105170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30216,"TargetID":105170,"Directional":true}]},{"ID":10433,"SourceStructureID":5650,"TargetStructureID":105184,"Label":"5650-105184 via Ribbon Synapse from 105183 -> 105185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105183,"TargetID":105185,"Directional":true}]},{"ID":10434,"SourceStructureID":5650,"TargetStructureID":105186,"Label":"5650-105186 via Ribbon Synapse from 105183 -> 105187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105183,"TargetID":105187,"Directional":true}]},{"ID":10435,"SourceStructureID":5650,"TargetStructureID":105199,"Label":"5650-105199 via Postsynapse from 29928 -> 105201","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":29928,"TargetID":105201,"Directional":true}]},{"ID":10436,"SourceStructureID":5650,"TargetStructureID":106336,"Label":"5650-106336 via Ribbon Synapse from 57038 -> 106341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57038,"TargetID":106341,"Directional":true}]},{"ID":10437,"SourceStructureID":5650,"TargetStructureID":106361,"Label":"5650-106361 via BC Conventional Synapse from 106362 -> 106363","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106362,"TargetID":106363,"Directional":true}]},{"ID":10438,"SourceStructureID":5650,"TargetStructureID":106378,"Label":"5650-106378 via Ribbon Synapse from 29931 -> 106379","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29931,"TargetID":106379,"Directional":true}]},{"ID":10439,"SourceStructureID":5650,"TargetStructureID":106380,"Label":"5650-106380 via Ribbon Synapse from 29932 -> 106381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29932,"TargetID":106381,"Directional":true}]},{"ID":10440,"SourceStructureID":5671,"TargetStructureID":7859,"Label":"5671-7859 via Ribbon Synapse from 24930 -> 84705","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24930,"TargetID":84705,"Directional":true}]},{"ID":10441,"SourceStructureID":5671,"TargetStructureID":24898,"Label":"5671-24898 via Ribbon Synapse from 24923 -> 24900","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24923,"TargetID":24900,"Directional":true}]},{"ID":10442,"SourceStructureID":5711,"TargetStructureID":71118,"Label":"5711-71118 via Ribbon Synapse from 38129 -> 71149","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38129,"TargetID":71149,"Directional":true}]},{"ID":10443,"SourceStructureID":5711,"TargetStructureID":71152,"Label":"5711-71152 via Ribbon Synapse from 38129 -> 71154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38129,"TargetID":71154,"Directional":true}]},{"ID":10444,"SourceStructureID":5711,"TargetStructureID":93456,"Label":"5711-93456 via Ribbon Synapse from 38135 -> 93468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38135,"TargetID":93468,"Directional":true}]},{"ID":10445,"SourceStructureID":5729,"TargetStructureID":606,"Label":"5729-606 via Ribbon Synapse from 37828 -> 47277, 47228 -> 47227, 47229 -> 47221, 47236 -> 47237, 47262 -> 47263, 47264 -> 47265, 47278 -> 47279, 47280 -> 47281, 47295 -> 47293, 110919 -> 110923","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37828,"TargetID":47277,"Directional":true},{"SourceID":47228,"TargetID":47227,"Directional":true},{"SourceID":47229,"TargetID":47221,"Directional":true},{"SourceID":47236,"TargetID":47237,"Directional":true},{"SourceID":47262,"TargetID":47263,"Directional":true},{"SourceID":47264,"TargetID":47265,"Directional":true},{"SourceID":47278,"TargetID":47279,"Directional":true},{"SourceID":47280,"TargetID":47281,"Directional":true},{"SourceID":47295,"TargetID":47293,"Directional":true},{"SourceID":110919,"TargetID":110923,"Directional":true}]},{"ID":10446,"SourceStructureID":5729,"TargetStructureID":7594,"Label":"5729-7594 via Ribbon Synapse from 47242 -> 110957","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47242,"TargetID":110957,"Directional":true}]},{"ID":10447,"SourceStructureID":5729,"TargetStructureID":11408,"Label":"5729-11408 via BC Conventional Synapse from 112614 -> 112646","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112614,"TargetID":112646,"Directional":true}]},{"ID":10448,"SourceStructureID":5729,"TargetStructureID":35240,"Label":"5729-35240 via Ribbon Synapse from 35281 -> 35280","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35281,"TargetID":35280,"Directional":true}]},{"ID":10449,"SourceStructureID":5729,"TargetStructureID":35428,"Label":"5729-35428 via Ribbon Synapse from 89624 -> 111956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89624,"TargetID":111956,"Directional":true}]},{"ID":10450,"SourceStructureID":5729,"TargetStructureID":35440,"Label":"5729-35440 via Ribbon Synapse from 105768 -> 111631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105768,"TargetID":111631,"Directional":true}]},{"ID":10451,"SourceStructureID":5729,"TargetStructureID":55232,"Label":"5729-55232 via Ribbon Synapse from 47229 -> 55239, 47229 -> 111152, 47236 -> 55250, 55388 -> 55389, 55392 -> 55393","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47229,"TargetID":55239,"Directional":true},{"SourceID":47229,"TargetID":111152,"Directional":true},{"SourceID":47236,"TargetID":55250,"Directional":true},{"SourceID":55388,"TargetID":55389,"Directional":true},{"SourceID":55392,"TargetID":55393,"Directional":true}]},{"ID":10452,"SourceStructureID":5729,"TargetStructureID":55403,"Label":"5729-55403 via Ribbon Synapse from 112616 -> 112619, 112622 -> 55472, 112623 -> 55468, 112624 -> 55468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112616,"TargetID":112619,"Directional":true},{"SourceID":112622,"TargetID":55472,"Directional":true},{"SourceID":112623,"TargetID":55468,"Directional":true},{"SourceID":112624,"TargetID":55468,"Directional":true}]},{"ID":10453,"SourceStructureID":5729,"TargetStructureID":64447,"Label":"5729-64447 via Ribbon Synapse from 64450 -> 64449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64450,"TargetID":64449,"Directional":true}]},{"ID":10454,"SourceStructureID":5729,"TargetStructureID":64452,"Label":"5729-64452 via Ribbon Synapse from 64536 -> 64455, 89609 -> 89605, 89610 -> 111990, 89627 -> 111947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64536,"TargetID":64455,"Directional":true},{"SourceID":89609,"TargetID":89605,"Directional":true},{"SourceID":89610,"TargetID":111990,"Directional":true},{"SourceID":89627,"TargetID":111947,"Directional":true}]},{"ID":10455,"SourceStructureID":5729,"TargetStructureID":64520,"Label":"5729-64520 via Ribbon Synapse from 64511 -> 64522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64511,"TargetID":64522,"Directional":true}]},{"ID":10456,"SourceStructureID":5729,"TargetStructureID":68539,"Label":"5729-68539 via Ribbon Synapse from 47262 -> 110933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47262,"TargetID":110933,"Directional":true}]},{"ID":10457,"SourceStructureID":5729,"TargetStructureID":87277,"Label":"5729-87277 via Ribbon Synapse from 47295 -> 111451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47295,"TargetID":111451,"Directional":true}]},{"ID":10458,"SourceStructureID":5729,"TargetStructureID":88981,"Label":"5729-88981 via Ribbon Synapse from 110919 -> 110920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110919,"TargetID":110920,"Directional":true}]},{"ID":10459,"SourceStructureID":5729,"TargetStructureID":89586,"Label":"5729-89586 via Ribbon Synapse from 64507 -> 89592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64507,"TargetID":89592,"Directional":true}]},{"ID":10460,"SourceStructureID":5729,"TargetStructureID":108749,"Label":"5729-108749 via Ribbon Synapse from 47296 -> 108750","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47296,"TargetID":108750,"Directional":true}]},{"ID":10461,"SourceStructureID":5729,"TargetStructureID":110535,"Label":"5729-110535 via Cistern Pre from 37810 -> 110536","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37810,"TargetID":110536,"Directional":true}]},{"ID":10462,"SourceStructureID":5729,"TargetStructureID":110540,"Label":"5729-110540 via Ribbon Synapse from 110542 -> 110541","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110542,"TargetID":110541,"Directional":true}]},{"ID":10463,"SourceStructureID":5729,"TargetStructureID":110842,"Label":"5729-110842 via Ribbon Synapse from 37835 -> 110849, 110848 -> 110849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37835,"TargetID":110849,"Directional":true},{"SourceID":110848,"TargetID":110849,"Directional":true}]},{"ID":10464,"SourceStructureID":5729,"TargetStructureID":110854,"Label":"5729-110854 via Ribbon Synapse from 37836 -> 110856, 37837 -> 110856","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37836,"TargetID":110856,"Directional":true},{"SourceID":37837,"TargetID":110856,"Directional":true}]},{"ID":10465,"SourceStructureID":5729,"TargetStructureID":110876,"Label":"5729-110876 via Ribbon Synapse from 37843 -> 110877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37843,"TargetID":110877,"Directional":true}]},{"ID":10466,"SourceStructureID":5729,"TargetStructureID":110879,"Label":"5729-110879 via Ribbon Synapse from 110878 -> 110891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110878,"TargetID":110891,"Directional":true}]},{"ID":10467,"SourceStructureID":5729,"TargetStructureID":110880,"Label":"5729-110880 via Ribbon Synapse from 37842 -> 110887, 110878 -> 110890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37842,"TargetID":110887,"Directional":true},{"SourceID":110878,"TargetID":110890,"Directional":true}]},{"ID":10468,"SourceStructureID":5729,"TargetStructureID":110885,"Label":"5729-110885 via Ribbon Synapse from 37842 -> 110886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37842,"TargetID":110886,"Directional":true}]},{"ID":10469,"SourceStructureID":5729,"TargetStructureID":110921,"Label":"5729-110921 via Ribbon Synapse from 110919 -> 110922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110919,"TargetID":110922,"Directional":true}]},{"ID":10470,"SourceStructureID":5729,"TargetStructureID":110930,"Label":"5729-110930 via Ribbon Synapse from 47264 -> 110931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47264,"TargetID":110931,"Directional":true}]},{"ID":10471,"SourceStructureID":5729,"TargetStructureID":110946,"Label":"5729-110946 via Ribbon Synapse from 37854 -> 110950, 37854 -> 110951","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37854,"TargetID":110950,"Directional":true},{"SourceID":37854,"TargetID":110951,"Directional":true}]},{"ID":10472,"SourceStructureID":5729,"TargetStructureID":110948,"Label":"5729-110948 via Ribbon Synapse from 37854 -> 110949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37854,"TargetID":110949,"Directional":true}]},{"ID":10473,"SourceStructureID":5729,"TargetStructureID":111040,"Label":"5729-111040 via Ribbon Synapse from 47240 -> 111072","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47240,"TargetID":111072,"Directional":true}]},{"ID":10474,"SourceStructureID":5729,"TargetStructureID":111043,"Label":"5729-111043 via Ribbon Synapse from 111048 -> 111046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111048,"TargetID":111046,"Directional":true}]},{"ID":10475,"SourceStructureID":5729,"TargetStructureID":111049,"Label":"5729-111049 via Ribbon Synapse from 111048 -> 111050","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111048,"TargetID":111050,"Directional":true}]},{"ID":10476,"SourceStructureID":5729,"TargetStructureID":111051,"Label":"5729-111051 via Ribbon Synapse from 111048 -> 111052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111048,"TargetID":111052,"Directional":true}]},{"ID":10477,"SourceStructureID":5729,"TargetStructureID":111057,"Label":"5729-111057 via Ribbon Synapse from 111058 -> 111061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111058,"TargetID":111061,"Directional":true}]},{"ID":10478,"SourceStructureID":5729,"TargetStructureID":111064,"Label":"5729-111064 via Ribbon Synapse from 111058 -> 111065","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111058,"TargetID":111065,"Directional":true}]},{"ID":10479,"SourceStructureID":5729,"TargetStructureID":111073,"Label":"5729-111073 via Ribbon Synapse from 47240 -> 111074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47240,"TargetID":111074,"Directional":true}]},{"ID":10480,"SourceStructureID":5729,"TargetStructureID":111164,"Label":"5729-111164 via Ribbon Synapse from 111163 -> 111170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111163,"TargetID":111170,"Directional":true}]},{"ID":10481,"SourceStructureID":5729,"TargetStructureID":111171,"Label":"5729-111171 via Ribbon Synapse from 111163 -> 111172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111163,"TargetID":111172,"Directional":true}]},{"ID":10482,"SourceStructureID":5729,"TargetStructureID":111174,"Label":"5729-111174 via Ribbon Synapse from 55388 -> 111177","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55388,"TargetID":111177,"Directional":true}]},{"ID":10483,"SourceStructureID":5729,"TargetStructureID":111178,"Label":"5729-111178 via Ribbon Synapse from 55388 -> 111179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55388,"TargetID":111179,"Directional":true}]},{"ID":10484,"SourceStructureID":5729,"TargetStructureID":111201,"Label":"5729-111201 via Ribbon Synapse from 111200 -> 111202","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111200,"TargetID":111202,"Directional":true}]},{"ID":10485,"SourceStructureID":5729,"TargetStructureID":111296,"Label":"5729-111296 via Ribbon Synapse from 37813 -> 111297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37813,"TargetID":111297,"Directional":true}]},{"ID":10486,"SourceStructureID":5729,"TargetStructureID":111309,"Label":"5729-111309 via Ribbon Synapse from 37817 -> 111310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37817,"TargetID":111310,"Directional":true}]},{"ID":10487,"SourceStructureID":5729,"TargetStructureID":111312,"Label":"5729-111312 via Ribbon Synapse from 37824 -> 111313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37824,"TargetID":111313,"Directional":true}]},{"ID":10488,"SourceStructureID":5729,"TargetStructureID":111314,"Label":"5729-111314 via Ribbon Synapse from 37820 -> 111333, 37822 -> 111334, 37824 -> 111317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37820,"TargetID":111333,"Directional":true},{"SourceID":37822,"TargetID":111334,"Directional":true},{"SourceID":37824,"TargetID":111317,"Directional":true}]},{"ID":10489,"SourceStructureID":5729,"TargetStructureID":111318,"Label":"5729-111318 via Ribbon Synapse from 37824 -> 111322","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37824,"TargetID":111322,"Directional":true}]},{"ID":10490,"SourceStructureID":5729,"TargetStructureID":111328,"Label":"5729-111328 via Ribbon Synapse from 37820 -> 111329","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37820,"TargetID":111329,"Directional":true}]},{"ID":10491,"SourceStructureID":5729,"TargetStructureID":111330,"Label":"5729-111330 via Ribbon Synapse from 37820 -> 111337","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37820,"TargetID":111337,"Directional":true}]},{"ID":10492,"SourceStructureID":5729,"TargetStructureID":111335,"Label":"5729-111335 via Ribbon Synapse from 37822 -> 111336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37822,"TargetID":111336,"Directional":true}]},{"ID":10493,"SourceStructureID":5729,"TargetStructureID":111339,"Label":"5729-111339 via Ribbon Synapse from 37823 -> 111340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37823,"TargetID":111340,"Directional":true}]},{"ID":10494,"SourceStructureID":5729,"TargetStructureID":111410,"Label":"5729-111410 via Ribbon Synapse from 37830 -> 111420, 111412 -> 111413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37830,"TargetID":111420,"Directional":true},{"SourceID":111412,"TargetID":111413,"Directional":true}]},{"ID":10495,"SourceStructureID":5729,"TargetStructureID":111414,"Label":"5729-111414 via Ribbon Synapse from 37831 -> 111416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37831,"TargetID":111416,"Directional":true}]},{"ID":10496,"SourceStructureID":5729,"TargetStructureID":111417,"Label":"5729-111417 via Ribbon Synapse from 37830 -> 111419, 37831 -> 111418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37830,"TargetID":111419,"Directional":true},{"SourceID":37831,"TargetID":111418,"Directional":true}]},{"ID":10497,"SourceStructureID":5729,"TargetStructureID":111428,"Label":"5729-111428 via Ribbon Synapse from 47278 -> 111429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47278,"TargetID":111429,"Directional":true}]},{"ID":10498,"SourceStructureID":5729,"TargetStructureID":111436,"Label":"5729-111436 via Ribbon Synapse from 47280 -> 111437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47280,"TargetID":111437,"Directional":true}]},{"ID":10499,"SourceStructureID":5729,"TargetStructureID":111470,"Label":"5729-111470 via Ribbon Synapse from 37834 -> 111471","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37834,"TargetID":111471,"Directional":true}]},{"ID":10500,"SourceStructureID":5729,"TargetStructureID":111472,"Label":"5729-111472 via Ribbon Synapse from 105777 -> 111473","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105777,"TargetID":111473,"Directional":true}]},{"ID":10501,"SourceStructureID":5729,"TargetStructureID":111474,"Label":"5729-111474 via Ribbon Synapse from 105777 -> 111476","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105777,"TargetID":111476,"Directional":true}]},{"ID":10502,"SourceStructureID":5729,"TargetStructureID":111616,"Label":"5729-111616 via Ribbon Synapse from 102926 -> 111618, 105768 -> 111626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102926,"TargetID":111618,"Directional":true},{"SourceID":105768,"TargetID":111626,"Directional":true}]},{"ID":10503,"SourceStructureID":5729,"TargetStructureID":111620,"Label":"5729-111620 via Ribbon Synapse from 102926 -> 111621","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102926,"TargetID":111621,"Directional":true}]},{"ID":10504,"SourceStructureID":5729,"TargetStructureID":111629,"Label":"5729-111629 via Ribbon Synapse from 105768 -> 111632","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105768,"TargetID":111632,"Directional":true}]},{"ID":10505,"SourceStructureID":5729,"TargetStructureID":111638,"Label":"5729-111638 via Ribbon Synapse from 48384 -> 111643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48384,"TargetID":111643,"Directional":true}]},{"ID":10506,"SourceStructureID":5729,"TargetStructureID":111641,"Label":"5729-111641 via Ribbon Synapse from 48384 -> 111642","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48384,"TargetID":111642,"Directional":true}]},{"ID":10507,"SourceStructureID":5729,"TargetStructureID":111738,"Label":"5729-111738 via Ribbon Synapse from 48379 -> 111739","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48379,"TargetID":111739,"Directional":true}]},{"ID":10508,"SourceStructureID":5729,"TargetStructureID":111746,"Label":"5729-111746 via Ribbon Synapse from 48379 -> 111747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48379,"TargetID":111747,"Directional":true}]},{"ID":10509,"SourceStructureID":5729,"TargetStructureID":111753,"Label":"5729-111753 via Ribbon Synapse from 48381 -> 111754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48381,"TargetID":111754,"Directional":true}]},{"ID":10510,"SourceStructureID":5729,"TargetStructureID":111755,"Label":"5729-111755 via Ribbon Synapse from 48381 -> 111756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48381,"TargetID":111756,"Directional":true}]},{"ID":10511,"SourceStructureID":5729,"TargetStructureID":111764,"Label":"5729-111764 via Ribbon Synapse from 111760 -> 111765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111760,"TargetID":111765,"Directional":true}]},{"ID":10512,"SourceStructureID":5729,"TargetStructureID":111772,"Label":"5729-111772 via Ribbon Synapse from 48383 -> 111773","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48383,"TargetID":111773,"Directional":true}]},{"ID":10513,"SourceStructureID":5729,"TargetStructureID":111776,"Label":"5729-111776 via Ribbon Synapse from 111762 -> 111777","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111762,"TargetID":111777,"Directional":true}]},{"ID":10514,"SourceStructureID":5729,"TargetStructureID":111781,"Label":"5729-111781 via Ribbon Synapse from 35281 -> 111782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35281,"TargetID":111782,"Directional":true}]},{"ID":10515,"SourceStructureID":5729,"TargetStructureID":111783,"Label":"5729-111783 via Ribbon Synapse from 111761 -> 111784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111761,"TargetID":111784,"Directional":true}]},{"ID":10516,"SourceStructureID":5729,"TargetStructureID":111949,"Label":"5729-111949 via Ribbon Synapse from 89627 -> 111950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89627,"TargetID":111950,"Directional":true}]},{"ID":10517,"SourceStructureID":5729,"TargetStructureID":111957,"Label":"5729-111957 via Ribbon Synapse from 89624 -> 111958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89624,"TargetID":111958,"Directional":true}]},{"ID":10518,"SourceStructureID":5729,"TargetStructureID":111974,"Label":"5729-111974 via Ribbon Synapse from 111973 -> 111975","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111973,"TargetID":111975,"Directional":true}]},{"ID":10519,"SourceStructureID":5729,"TargetStructureID":111976,"Label":"5729-111976 via Ribbon Synapse from 111973 -> 111977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111973,"TargetID":111977,"Directional":true}]},{"ID":10520,"SourceStructureID":5729,"TargetStructureID":111980,"Label":"5729-111980 via Ribbon Synapse from 89608 -> 111981","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89608,"TargetID":111981,"Directional":true}]},{"ID":10521,"SourceStructureID":5729,"TargetStructureID":111982,"Label":"5729-111982 via Ribbon Synapse from 89608 -> 111984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89608,"TargetID":111984,"Directional":true}]},{"ID":10522,"SourceStructureID":5729,"TargetStructureID":111986,"Label":"5729-111986 via Ribbon Synapse from 89609 -> 111987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89609,"TargetID":111987,"Directional":true}]},{"ID":10523,"SourceStructureID":5729,"TargetStructureID":111991,"Label":"5729-111991 via Ribbon Synapse from 89610 -> 111993","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89610,"TargetID":111993,"Directional":true}]},{"ID":10524,"SourceStructureID":5729,"TargetStructureID":112005,"Label":"5729-112005 via Ribbon Synapse from 112008 -> 112009","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112008,"TargetID":112009,"Directional":true}]},{"ID":10525,"SourceStructureID":5729,"TargetStructureID":112010,"Label":"5729-112010 via Ribbon Synapse from 112008 -> 112011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112008,"TargetID":112011,"Directional":true}]},{"ID":10526,"SourceStructureID":5729,"TargetStructureID":112304,"Label":"5729-112304 via Ribbon Synapse from 112305 -> 112309","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112305,"TargetID":112309,"Directional":true}]},{"ID":10527,"SourceStructureID":5729,"TargetStructureID":112447,"Label":"5729-112447 via Ribbon Synapse from 112446 -> 112448, 112450 -> 112452","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112446,"TargetID":112448,"Directional":true},{"SourceID":112450,"TargetID":112452,"Directional":true}]},{"ID":10528,"SourceStructureID":5729,"TargetStructureID":112449,"Label":"5729-112449 via Ribbon Synapse from 112450 -> 112453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112450,"TargetID":112453,"Directional":true}]},{"ID":10529,"SourceStructureID":5729,"TargetStructureID":112593,"Label":"5729-112593 via Ribbon Synapse from 112450 -> 112599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112450,"TargetID":112599,"Directional":true}]},{"ID":10530,"SourceStructureID":5729,"TargetStructureID":112625,"Label":"5729-112625 via Ribbon Synapse from 112623 -> 112626, 112624 -> 112626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112623,"TargetID":112626,"Directional":true},{"SourceID":112624,"TargetID":112626,"Directional":true}]},{"ID":10531,"SourceStructureID":5729,"TargetStructureID":112628,"Label":"5729-112628 via Ribbon Synapse from 112627 -> 112629","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112627,"TargetID":112629,"Directional":true}]},{"ID":10532,"SourceStructureID":5729,"TargetStructureID":112634,"Label":"5729-112634 via Ribbon Synapse from 112627 -> 112635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112627,"TargetID":112635,"Directional":true}]},{"ID":10533,"SourceStructureID":5729,"TargetStructureID":112638,"Label":"5729-112638 via Ribbon Synapse from 112622 -> 112639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112622,"TargetID":112639,"Directional":true}]},{"ID":10534,"SourceStructureID":5729,"TargetStructureID":112641,"Label":"5729-112641 via Ribbon Synapse from 112616 -> 112642, 112617 -> 112642","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112616,"TargetID":112642,"Directional":true},{"SourceID":112617,"TargetID":112642,"Directional":true}]},{"ID":10535,"SourceStructureID":5729,"TargetStructureID":112658,"Label":"5729-112658 via Ribbon Synapse from 112654 -> 112659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112654,"TargetID":112659,"Directional":true}]},{"ID":10536,"SourceStructureID":5729,"TargetStructureID":112669,"Label":"5729-112669 via Ribbon Synapse from 64513 -> 112670","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64513,"TargetID":112670,"Directional":true}]},{"ID":10537,"SourceStructureID":5729,"TargetStructureID":112678,"Label":"5729-112678 via Ribbon Synapse from 64511 -> 112679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64511,"TargetID":112679,"Directional":true}]},{"ID":10538,"SourceStructureID":5729,"TargetStructureID":112681,"Label":"5729-112681 via Ribbon Synapse from 64506 -> 112682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64506,"TargetID":112682,"Directional":true}]},{"ID":10539,"SourceStructureID":5729,"TargetStructureID":112684,"Label":"5729-112684 via Ribbon Synapse from 64507 -> 112686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64507,"TargetID":112686,"Directional":true}]},{"ID":10540,"SourceStructureID":5729,"TargetStructureID":112689,"Label":"5729-112689 via Ribbon Synapse from 64502 -> 112690","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64502,"TargetID":112690,"Directional":true}]},{"ID":10541,"SourceStructureID":5729,"TargetStructureID":112692,"Label":"5729-112692 via Ribbon Synapse from 64501 -> 112693","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64501,"TargetID":112693,"Directional":true}]},{"ID":10542,"SourceStructureID":5729,"TargetStructureID":112700,"Label":"5729-112700 via Ribbon Synapse from 64484 -> 112702","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64484,"TargetID":112702,"Directional":true}]},{"ID":10543,"SourceStructureID":5729,"TargetStructureID":112703,"Label":"5729-112703 via Ribbon Synapse from 64486 -> 112704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64486,"TargetID":112704,"Directional":true}]},{"ID":10544,"SourceStructureID":5729,"TargetStructureID":112709,"Label":"5729-112709 via Ribbon Synapse from 64482 -> 112711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64482,"TargetID":112711,"Directional":true}]},{"ID":10545,"SourceStructureID":5729,"TargetStructureID":112715,"Label":"5729-112715 via Ribbon Synapse from 64501 -> 112716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64501,"TargetID":112716,"Directional":true}]},{"ID":10546,"SourceStructureID":5729,"TargetStructureID":112721,"Label":"5729-112721 via Adherens from 64476 -> 112724","Type":"Adherens","Directional":true,"Links":[{"SourceID":64476,"TargetID":112724,"Directional":true}]},{"ID":10547,"SourceStructureID":5729,"TargetStructureID":112729,"Label":"5729-112729 via Ribbon Synapse from 64469 -> 112730","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64469,"TargetID":112730,"Directional":true}]},{"ID":10548,"SourceStructureID":5729,"TargetStructureID":112732,"Label":"5729-112732 via Ribbon Synapse from 64469 -> 112733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64469,"TargetID":112733,"Directional":true}]},{"ID":10549,"SourceStructureID":5729,"TargetStructureID":112887,"Label":"5729-112887 via Ribbon Synapse from 64461 -> 112892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64461,"TargetID":112892,"Directional":true}]},{"ID":10550,"SourceStructureID":5729,"TargetStructureID":112898,"Label":"5729-112898 via Ribbon Synapse from 64467 -> 112901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64467,"TargetID":112901,"Directional":true}]},{"ID":10551,"SourceStructureID":5729,"TargetStructureID":112912,"Label":"5729-112912 via Ribbon Synapse from 64585 -> 112915","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64585,"TargetID":112915,"Directional":true}]},{"ID":10552,"SourceStructureID":5729,"TargetStructureID":112931,"Label":"5729-112931 via Ribbon Synapse from 64532 -> 112933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64532,"TargetID":112933,"Directional":true}]},{"ID":10553,"SourceStructureID":5729,"TargetStructureID":112934,"Label":"5729-112934 via Ribbon Synapse from 64532 -> 112935, 64536 -> 112936, 64583 -> 112959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64532,"TargetID":112935,"Directional":true},{"SourceID":64536,"TargetID":112936,"Directional":true},{"SourceID":64583,"TargetID":112959,"Directional":true}]},{"ID":10554,"SourceStructureID":5729,"TargetStructureID":112943,"Label":"5729-112943 via Ribbon Synapse from 64583 -> 112945, 64584 -> 112945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64583,"TargetID":112945,"Directional":true},{"SourceID":64584,"TargetID":112945,"Directional":true}]},{"ID":10555,"SourceStructureID":5729,"TargetStructureID":112950,"Label":"5729-112950 via Ribbon Synapse from 64531 -> 112951","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64531,"TargetID":112951,"Directional":true}]},{"ID":10556,"SourceStructureID":5729,"TargetStructureID":112952,"Label":"5729-112952 via Ribbon Synapse from 64534 -> 112953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64534,"TargetID":112953,"Directional":true}]},{"ID":10557,"SourceStructureID":5729,"TargetStructureID":112955,"Label":"5729-112955 via Ribbon Synapse from 64584 -> 112956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64584,"TargetID":112956,"Directional":true}]},{"ID":10558,"SourceStructureID":5729,"TargetStructureID":112961,"Label":"5729-112961 via Ribbon Synapse from 111942 -> 112962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111942,"TargetID":112962,"Directional":true}]},{"ID":10559,"SourceStructureID":5729,"TargetStructureID":112977,"Label":"5729-112977 via Ribbon Synapse from 112976 -> 112980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112976,"TargetID":112980,"Directional":true}]},{"ID":10560,"SourceStructureID":5729,"TargetStructureID":112978,"Label":"5729-112978 via Ribbon Synapse from 112975 -> 112981, 112976 -> 112979","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112975,"TargetID":112981,"Directional":true},{"SourceID":112976,"TargetID":112979,"Directional":true}]},{"ID":10561,"SourceStructureID":5729,"TargetStructureID":112982,"Label":"5729-112982 via Ribbon Synapse from 112975 -> 112983","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112975,"TargetID":112983,"Directional":true}]},{"ID":10562,"SourceStructureID":5729,"TargetStructureID":112984,"Label":"5729-112984 via Ribbon Synapse from 112973 -> 112985","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112973,"TargetID":112985,"Directional":true}]},{"ID":10563,"SourceStructureID":5729,"TargetStructureID":112991,"Label":"5729-112991 via Ribbon Synapse from 112972 -> 112992, 112975 -> 112993","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112972,"TargetID":112992,"Directional":true},{"SourceID":112975,"TargetID":112993,"Directional":true}]},{"ID":10564,"SourceStructureID":5729,"TargetStructureID":113095,"Label":"5729-113095 via Ribbon Synapse from 113092 -> 113096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113092,"TargetID":113096,"Directional":true}]},{"ID":10565,"SourceStructureID":5729,"TargetStructureID":113097,"Label":"5729-113097 via Ribbon Synapse from 113092 -> 113098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113092,"TargetID":113098,"Directional":true}]},{"ID":10566,"SourceStructureID":5729,"TargetStructureID":113099,"Label":"5729-113099 via Ribbon Synapse from 111795 -> 113100","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111795,"TargetID":113100,"Directional":true}]},{"ID":10567,"SourceStructureID":5737,"TargetStructureID":352,"Label":"5737-352 via Conventional from 5741 -> 5742","Type":"Conventional","Directional":true,"Links":[{"SourceID":5741,"TargetID":5742,"Directional":true}]},{"ID":10568,"SourceStructureID":5775,"TargetStructureID":8575,"Label":"5775-8575 via BC Conventional Synapse from 62247 -> 62245","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62247,"TargetID":62245,"Directional":true}]},{"ID":10569,"SourceStructureID":5838,"TargetStructureID":5118,"Label":"5838-5118 via BC Conventional Synapse from 52220 -> 52219","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52220,"TargetID":52219,"Directional":true}]},{"ID":10570,"SourceStructureID":5838,"TargetStructureID":5118,"Label":"5838-5118 via Ribbon Synapse from 38041 -> 52221","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38041,"TargetID":52221,"Directional":true}]},{"ID":10571,"SourceStructureID":5838,"TargetStructureID":8579,"Label":"5838-8579 via Ribbon Synapse from 38036 -> 62677","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38036,"TargetID":62677,"Directional":true}]},{"ID":10572,"SourceStructureID":5860,"TargetStructureID":172,"Label":"5860-172 via Conventional from 29463 -> 29462, 119989 -> 119991","Type":"Conventional","Directional":true,"Links":[{"SourceID":29463,"TargetID":29462,"Directional":true},{"SourceID":119989,"TargetID":119991,"Directional":true}]},{"ID":10573,"SourceStructureID":5860,"TargetStructureID":5528,"Label":"5860-5528 via Conventional from 8248 -> 96908","Type":"Conventional","Directional":true,"Links":[{"SourceID":8248,"TargetID":96908,"Directional":true}]},{"ID":10574,"SourceStructureID":5860,"TargetStructureID":5544,"Label":"5860-5544 via Conventional from 9920 -> 9916, 9922 -> 9921","Type":"Conventional","Directional":true,"Links":[{"SourceID":9920,"TargetID":9916,"Directional":true},{"SourceID":9922,"TargetID":9921,"Directional":true}]},{"ID":10575,"SourceStructureID":5860,"TargetStructureID":7075,"Label":"5860-7075 via Conventional from 62356 -> 62355","Type":"Conventional","Directional":true,"Links":[{"SourceID":62356,"TargetID":62355,"Directional":true}]},{"ID":10576,"SourceStructureID":5860,"TargetStructureID":38911,"Label":"5860-38911 via Conventional from 38910 -> 38914","Type":"Conventional","Directional":true,"Links":[{"SourceID":38910,"TargetID":38914,"Directional":true}]},{"ID":10577,"SourceStructureID":5916,"TargetStructureID":8579,"Label":"5916-8579 via BC Conventional Synapse from 109327 -> 109328","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109327,"TargetID":109328,"Directional":true}]},{"ID":10578,"SourceStructureID":5916,"TargetStructureID":8579,"Label":"5916-8579 via Ribbon Synapse from 63973 -> 108279, 109435 -> 19795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63973,"TargetID":108279,"Directional":true},{"SourceID":109435,"TargetID":19795,"Directional":true}]},{"ID":10579,"SourceStructureID":5916,"TargetStructureID":18282,"Label":"5916-18282 via Ribbon Synapse from 38845 -> 38843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38845,"TargetID":38843,"Directional":true}]},{"ID":10580,"SourceStructureID":5916,"TargetStructureID":52262,"Label":"5916-52262 via Ribbon Synapse from 37990 -> 52289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37990,"TargetID":52289,"Directional":true}]},{"ID":10581,"SourceStructureID":5916,"TargetStructureID":106352,"Label":"5916-106352 via BC Conventional Synapse from 109645 -> 109646","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109645,"TargetID":109646,"Directional":true}]},{"ID":10582,"SourceStructureID":5916,"TargetStructureID":108734,"Label":"5916-108734 via Ribbon Synapse from 37970 -> 108735","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37970,"TargetID":108735,"Directional":true}]},{"ID":10583,"SourceStructureID":5916,"TargetStructureID":108745,"Label":"5916-108745 via BC Conventional Synapse from 108747 -> 108748","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108747,"TargetID":108748,"Directional":true}]},{"ID":10584,"SourceStructureID":5916,"TargetStructureID":109039,"Label":"5916-109039 via Ribbon Synapse from 108922 -> 109044, 108933 -> 109040","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108922,"TargetID":109044,"Directional":true},{"SourceID":108933,"TargetID":109040,"Directional":true}]},{"ID":10585,"SourceStructureID":5916,"TargetStructureID":109079,"Label":"5916-109079 via Ribbon Synapse from 38001 -> 109080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38001,"TargetID":109080,"Directional":true}]},{"ID":10586,"SourceStructureID":5916,"TargetStructureID":109308,"Label":"5916-109308 via Ribbon Synapse from 109312 -> 109313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109312,"TargetID":109313,"Directional":true}]},{"ID":10587,"SourceStructureID":5916,"TargetStructureID":109696,"Label":"5916-109696 via Ribbon Synapse from 109702 -> 109700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109702,"TargetID":109700,"Directional":true}]},{"ID":10588,"SourceStructureID":5916,"TargetStructureID":109716,"Label":"5916-109716 via Ribbon Synapse from 109702 -> 109719","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109702,"TargetID":109719,"Directional":true}]},{"ID":10589,"SourceStructureID":5919,"TargetStructureID":166,"Label":"5919-166 via Conventional from 23613 -> 4128","Type":"Conventional","Directional":true,"Links":[{"SourceID":23613,"TargetID":4128,"Directional":true}]},{"ID":10590,"SourceStructureID":5922,"TargetStructureID":7050,"Label":"5922-7050 via Ribbon Synapse from 68834 -> 68835","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68834,"TargetID":68835,"Directional":true}]},{"ID":10591,"SourceStructureID":5922,"TargetStructureID":22232,"Label":"5922-22232 via Ribbon Synapse from 68829 -> 68830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68829,"TargetID":68830,"Directional":true}]},{"ID":10592,"SourceStructureID":5922,"TargetStructureID":68836,"Label":"5922-68836 via Ribbon Synapse from 68834 -> 68839","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68834,"TargetID":68839,"Directional":true}]},{"ID":10593,"SourceStructureID":5923,"TargetStructureID":4943,"Label":"5923-4943 via Ribbon Synapse from 8691 -> 4997, 87584 -> 4997","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8691,"TargetID":4997,"Directional":true},{"SourceID":87584,"TargetID":4997,"Directional":true}]},{"ID":10594,"SourceStructureID":5923,"TargetStructureID":7050,"Label":"5923-7050 via Ribbon Synapse from 9974 -> 10069, 10007 -> 14316, 33624 -> 55666","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9974,"TargetID":10069,"Directional":true},{"SourceID":10007,"TargetID":14316,"Directional":true},{"SourceID":33624,"TargetID":55666,"Directional":true}]},{"ID":10595,"SourceStructureID":5923,"TargetStructureID":12897,"Label":"5923-12897 via Ribbon Synapse from 9961 -> 24724","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9961,"TargetID":24724,"Directional":true}]},{"ID":10596,"SourceStructureID":5923,"TargetStructureID":87589,"Label":"5923-87589 via Ribbon Synapse from 87587 -> 98799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87587,"TargetID":98799,"Directional":true}]},{"ID":10597,"SourceStructureID":6011,"TargetStructureID":138,"Label":"6011-138 via Conventional from 6034 -> 32880, 6035 -> 32881","Type":"Conventional","Directional":true,"Links":[{"SourceID":6034,"TargetID":32880,"Directional":true},{"SourceID":6035,"TargetID":32881,"Directional":true}]},{"ID":10598,"SourceStructureID":6011,"TargetStructureID":5640,"Label":"6011-5640 via Conventional from 37063 -> 37062","Type":"Conventional","Directional":true,"Links":[{"SourceID":37063,"TargetID":37062,"Directional":true}]},{"ID":10599,"SourceStructureID":6011,"TargetStructureID":5648,"Label":"6011-5648 via Conventional from 6037 -> 23418","Type":"Conventional","Directional":true,"Links":[{"SourceID":6037,"TargetID":23418,"Directional":true}]},{"ID":10600,"SourceStructureID":6011,"TargetStructureID":6050,"Label":"6011-6050 via Conventional from 6029 -> 37632","Type":"Conventional","Directional":true,"Links":[{"SourceID":6029,"TargetID":37632,"Directional":true}]},{"ID":10601,"SourceStructureID":6011,"TargetStructureID":6136,"Label":"6011-6136 via Conventional from 6028 -> 10366","Type":"Conventional","Directional":true,"Links":[{"SourceID":6028,"TargetID":10366,"Directional":true}]},{"ID":10602,"SourceStructureID":6046,"TargetStructureID":7134,"Label":"6046-7134 via Ribbon Synapse from 16715 -> 16747, 16716 -> 16748, 16719 -> 16745, 16726 -> 53602, 18189 -> 53593, 18191 -> 53594, 42759 -> 41648","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16715,"TargetID":16747,"Directional":true},{"SourceID":16716,"TargetID":16748,"Directional":true},{"SourceID":16719,"TargetID":16745,"Directional":true},{"SourceID":16726,"TargetID":53602,"Directional":true},{"SourceID":18189,"TargetID":53593,"Directional":true},{"SourceID":18191,"TargetID":53594,"Directional":true},{"SourceID":42759,"TargetID":41648,"Directional":true}]},{"ID":10603,"SourceStructureID":6046,"TargetStructureID":7145,"Label":"6046-7145 via Ribbon Synapse from 16676 -> 16684, 16678 -> 15834","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16676,"TargetID":16684,"Directional":true},{"SourceID":16678,"TargetID":15834,"Directional":true}]},{"ID":10604,"SourceStructureID":6046,"TargetStructureID":7897,"Label":"6046-7897 via Ribbon Synapse from 11859 -> 55690","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11859,"TargetID":55690,"Directional":true}]},{"ID":10605,"SourceStructureID":6046,"TargetStructureID":16073,"Label":"6046-16073 via Ribbon Synapse from 16729 -> 18213","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16729,"TargetID":18213,"Directional":true}]},{"ID":10606,"SourceStructureID":6046,"TargetStructureID":35576,"Label":"6046-35576 via Ribbon Synapse from 16734 -> 35581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16734,"TargetID":35581,"Directional":true}]},{"ID":10607,"SourceStructureID":6046,"TargetStructureID":43261,"Label":"6046-43261 via Ribbon Synapse from 18179 -> 122049","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18179,"TargetID":122049,"Directional":true}]},{"ID":10608,"SourceStructureID":6046,"TargetStructureID":61450,"Label":"6046-61450 via BC Conventional Synapse from 61454 -> 61453","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61454,"TargetID":61453,"Directional":true}]},{"ID":10609,"SourceStructureID":6047,"TargetStructureID":5107,"Label":"6047-5107 via Ribbon Synapse from 112034 -> 65074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112034,"TargetID":65074,"Directional":true}]},{"ID":10610,"SourceStructureID":6047,"TargetStructureID":7073,"Label":"6047-7073 via Ribbon Synapse from 19623 -> 19624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19623,"TargetID":19624,"Directional":true}]},{"ID":10611,"SourceStructureID":6047,"TargetStructureID":9769,"Label":"6047-9769 via Ribbon Synapse from 19680 -> 52611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19680,"TargetID":52611,"Directional":true}]},{"ID":10612,"SourceStructureID":6047,"TargetStructureID":35343,"Label":"6047-35343 via Cistern Pre from 129332 -> 129333","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":129332,"TargetID":129333,"Directional":true}]},{"ID":10613,"SourceStructureID":6047,"TargetStructureID":47104,"Label":"6047-47104 via Ribbon Synapse from 30639 -> 47185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30639,"TargetID":47185,"Directional":true}]},{"ID":10614,"SourceStructureID":6047,"TargetStructureID":68539,"Label":"6047-68539 via Ribbon Synapse from 19655 -> 73768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19655,"TargetID":73768,"Directional":true}]},{"ID":10615,"SourceStructureID":6047,"TargetStructureID":74231,"Label":"6047-74231 via Ribbon Synapse from 112493 -> 112504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112493,"TargetID":112504,"Directional":true}]},{"ID":10616,"SourceStructureID":6047,"TargetStructureID":75133,"Label":"6047-75133 via Ribbon Synapse from 19719 -> 112377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19719,"TargetID":112377,"Directional":true}]},{"ID":10617,"SourceStructureID":6047,"TargetStructureID":111904,"Label":"6047-111904 via Cistern Pre from 19615 -> 111906, 19617 -> 111905","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":19615,"TargetID":111906,"Directional":true},{"SourceID":19617,"TargetID":111905,"Directional":true}]},{"ID":10618,"SourceStructureID":6047,"TargetStructureID":111908,"Label":"6047-111908 via Cistern Pre from 19614 -> 111910","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":19614,"TargetID":111910,"Directional":true}]},{"ID":10619,"SourceStructureID":6047,"TargetStructureID":111914,"Label":"6047-111914 via Ribbon Synapse from 19618 -> 111915","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19618,"TargetID":111915,"Directional":true}]},{"ID":10620,"SourceStructureID":6047,"TargetStructureID":111923,"Label":"6047-111923 via BC Conventional Synapse from 111922 -> 111925","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111922,"TargetID":111925,"Directional":true}]},{"ID":10621,"SourceStructureID":6047,"TargetStructureID":111923,"Label":"6047-111923 via Ribbon Synapse from 19619 -> 111924","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19619,"TargetID":111924,"Directional":true}]},{"ID":10622,"SourceStructureID":6047,"TargetStructureID":111929,"Label":"6047-111929 via Ribbon Synapse from 19693 -> 111930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19693,"TargetID":111930,"Directional":true}]},{"ID":10623,"SourceStructureID":6047,"TargetStructureID":111934,"Label":"6047-111934 via BC Conventional Synapse from 111933 -> 111935","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111933,"TargetID":111935,"Directional":true}]},{"ID":10624,"SourceStructureID":6047,"TargetStructureID":112020,"Label":"6047-112020 via BC Conventional Synapse from 112022 -> 112023","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112022,"TargetID":112023,"Directional":true}]},{"ID":10625,"SourceStructureID":6047,"TargetStructureID":112020,"Label":"6047-112020 via Ribbon Synapse from 19694 -> 112021","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19694,"TargetID":112021,"Directional":true}]},{"ID":10626,"SourceStructureID":6047,"TargetStructureID":112024,"Label":"6047-112024 via Ribbon Synapse from 19695 -> 112025","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19695,"TargetID":112025,"Directional":true}]},{"ID":10627,"SourceStructureID":6047,"TargetStructureID":112036,"Label":"6047-112036 via Ribbon Synapse from 112035 -> 112038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112035,"TargetID":112038,"Directional":true}]},{"ID":10628,"SourceStructureID":6047,"TargetStructureID":112049,"Label":"6047-112049 via Ribbon Synapse from 112041 -> 112050","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112041,"TargetID":112050,"Directional":true}]},{"ID":10629,"SourceStructureID":6047,"TargetStructureID":112051,"Label":"6047-112051 via Ribbon Synapse from 112041 -> 112052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112041,"TargetID":112052,"Directional":true}]},{"ID":10630,"SourceStructureID":6047,"TargetStructureID":112075,"Label":"6047-112075 via Ribbon Synapse from 19697 -> 112076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19697,"TargetID":112076,"Directional":true}]},{"ID":10631,"SourceStructureID":6047,"TargetStructureID":112091,"Label":"6047-112091 via Ribbon Synapse from 19706 -> 112092","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19706,"TargetID":112092,"Directional":true}]},{"ID":10632,"SourceStructureID":6047,"TargetStructureID":112115,"Label":"6047-112115 via Ribbon Synapse from 19676 -> 112117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19676,"TargetID":112117,"Directional":true}]},{"ID":10633,"SourceStructureID":6047,"TargetStructureID":112120,"Label":"6047-112120 via Ribbon Synapse from 19676 -> 112121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19676,"TargetID":112121,"Directional":true}]},{"ID":10634,"SourceStructureID":6047,"TargetStructureID":112122,"Label":"6047-112122 via Ribbon Synapse from 19676 -> 112123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19676,"TargetID":112123,"Directional":true}]},{"ID":10635,"SourceStructureID":6047,"TargetStructureID":112142,"Label":"6047-112142 via Ribbon Synapse from 112141 -> 112143","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112141,"TargetID":112143,"Directional":true}]},{"ID":10636,"SourceStructureID":6047,"TargetStructureID":112144,"Label":"6047-112144 via Ribbon Synapse from 112146 -> 112145","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112146,"TargetID":112145,"Directional":true}]},{"ID":10637,"SourceStructureID":6047,"TargetStructureID":112147,"Label":"6047-112147 via Ribbon Synapse from 112153 -> 112148","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112153,"TargetID":112148,"Directional":true}]},{"ID":10638,"SourceStructureID":6047,"TargetStructureID":112149,"Label":"6047-112149 via Ribbon Synapse from 112153 -> 112150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112153,"TargetID":112150,"Directional":true}]},{"ID":10639,"SourceStructureID":6047,"TargetStructureID":112151,"Label":"6047-112151 via Ribbon Synapse from 112153 -> 112152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112153,"TargetID":112152,"Directional":true}]},{"ID":10640,"SourceStructureID":6047,"TargetStructureID":112157,"Label":"6047-112157 via BC Conventional Synapse from 148296 -> 112158","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":148296,"TargetID":112158,"Directional":true}]},{"ID":10641,"SourceStructureID":6047,"TargetStructureID":112170,"Label":"6047-112170 via Ribbon Synapse from 19684 -> 112171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19684,"TargetID":112171,"Directional":true}]},{"ID":10642,"SourceStructureID":6047,"TargetStructureID":112172,"Label":"6047-112172 via Ribbon Synapse from 19684 -> 112175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19684,"TargetID":112175,"Directional":true}]},{"ID":10643,"SourceStructureID":6047,"TargetStructureID":112176,"Label":"6047-112176 via Ribbon Synapse from 19684 -> 112177","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19684,"TargetID":112177,"Directional":true}]},{"ID":10644,"SourceStructureID":6047,"TargetStructureID":112188,"Label":"6047-112188 via Ribbon Synapse from 19669 -> 112195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19669,"TargetID":112195,"Directional":true}]},{"ID":10645,"SourceStructureID":6047,"TargetStructureID":112192,"Label":"6047-112192 via Ribbon Synapse from 19669 -> 112193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19669,"TargetID":112193,"Directional":true}]},{"ID":10646,"SourceStructureID":6047,"TargetStructureID":112197,"Label":"6047-112197 via BC Conventional Synapse from 112196 -> 112198","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112196,"TargetID":112198,"Directional":true}]},{"ID":10647,"SourceStructureID":6047,"TargetStructureID":112203,"Label":"6047-112203 via BC Conventional Synapse from 112202 -> 112204","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112202,"TargetID":112204,"Directional":true}]},{"ID":10648,"SourceStructureID":6047,"TargetStructureID":112209,"Label":"6047-112209 via Ribbon Synapse from 19711 -> 112210","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19711,"TargetID":112210,"Directional":true}]},{"ID":10649,"SourceStructureID":6047,"TargetStructureID":112221,"Label":"6047-112221 via BC Conventional Synapse from 112224 -> 112225","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112224,"TargetID":112225,"Directional":true}]},{"ID":10650,"SourceStructureID":6047,"TargetStructureID":112232,"Label":"6047-112232 via Ribbon Synapse from 61335 -> 112235","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61335,"TargetID":112235,"Directional":true}]},{"ID":10651,"SourceStructureID":6047,"TargetStructureID":112246,"Label":"6047-112246 via Ribbon Synapse from 112243 -> 112249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112243,"TargetID":112249,"Directional":true}]},{"ID":10652,"SourceStructureID":6047,"TargetStructureID":112253,"Label":"6047-112253 via Ribbon Synapse from 61332 -> 112266","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61332,"TargetID":112266,"Directional":true}]},{"ID":10653,"SourceStructureID":6047,"TargetStructureID":112257,"Label":"6047-112257 via BC Conventional Synapse from 112259 -> 112258","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112259,"TargetID":112258,"Directional":true}]},{"ID":10654,"SourceStructureID":6047,"TargetStructureID":112260,"Label":"6047-112260 via BC Conventional Synapse from 112263 -> 112261","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112263,"TargetID":112261,"Directional":true}]},{"ID":10655,"SourceStructureID":6047,"TargetStructureID":112264,"Label":"6047-112264 via Ribbon Synapse from 112248 -> 112269","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112248,"TargetID":112269,"Directional":true}]},{"ID":10656,"SourceStructureID":6047,"TargetStructureID":112267,"Label":"6047-112267 via Ribbon Synapse from 61332 -> 112268","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61332,"TargetID":112268,"Directional":true}]},{"ID":10657,"SourceStructureID":6047,"TargetStructureID":112282,"Label":"6047-112282 via Ribbon Synapse from 61332 -> 112335","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61332,"TargetID":112335,"Directional":true}]},{"ID":10658,"SourceStructureID":6047,"TargetStructureID":112284,"Label":"6047-112284 via Ribbon Synapse from 112331 -> 126798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112331,"TargetID":126798,"Directional":true}]},{"ID":10659,"SourceStructureID":6047,"TargetStructureID":112292,"Label":"6047-112292 via BC Conventional Synapse from 112295 -> 112294","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112295,"TargetID":112294,"Directional":true}]},{"ID":10660,"SourceStructureID":6047,"TargetStructureID":112319,"Label":"6047-112319 via Ribbon Synapse from 61322 -> 112339","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61322,"TargetID":112339,"Directional":true}]},{"ID":10661,"SourceStructureID":6047,"TargetStructureID":112322,"Label":"6047-112322 via Ribbon Synapse from 112327 -> 112330","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112327,"TargetID":112330,"Directional":true}]},{"ID":10662,"SourceStructureID":6047,"TargetStructureID":112328,"Label":"6047-112328 via Ribbon Synapse from 112327 -> 112329","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112327,"TargetID":112329,"Directional":true}]},{"ID":10663,"SourceStructureID":6047,"TargetStructureID":112333,"Label":"6047-112333 via Ribbon Synapse from 112331 -> 112334","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112331,"TargetID":112334,"Directional":true}]},{"ID":10664,"SourceStructureID":6047,"TargetStructureID":112340,"Label":"6047-112340 via Ribbon Synapse from 61322 -> 112341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61322,"TargetID":112341,"Directional":true}]},{"ID":10665,"SourceStructureID":6047,"TargetStructureID":112342,"Label":"6047-112342 via Ribbon Synapse from 19713 -> 112343","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19713,"TargetID":112343,"Directional":true}]},{"ID":10666,"SourceStructureID":6047,"TargetStructureID":112360,"Label":"6047-112360 via Ribbon Synapse from 19715 -> 112361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19715,"TargetID":112361,"Directional":true}]},{"ID":10667,"SourceStructureID":6047,"TargetStructureID":112362,"Label":"6047-112362 via Ribbon Synapse from 19715 -> 112363","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19715,"TargetID":112363,"Directional":true}]},{"ID":10668,"SourceStructureID":6047,"TargetStructureID":112364,"Label":"6047-112364 via BC Conventional Synapse from 112367 -> 112369","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112367,"TargetID":112369,"Directional":true}]},{"ID":10669,"SourceStructureID":6047,"TargetStructureID":112370,"Label":"6047-112370 via Ribbon Synapse from 19719 -> 112371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19719,"TargetID":112371,"Directional":true}]},{"ID":10670,"SourceStructureID":6047,"TargetStructureID":112389,"Label":"6047-112389 via BC Conventional Synapse from 112388 -> 112391","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112388,"TargetID":112391,"Directional":true}]},{"ID":10671,"SourceStructureID":6047,"TargetStructureID":112392,"Label":"6047-112392 via Ribbon Synapse from 19728 -> 112394","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19728,"TargetID":112394,"Directional":true}]},{"ID":10672,"SourceStructureID":6047,"TargetStructureID":112395,"Label":"6047-112395 via Ribbon Synapse from 19728 -> 112397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19728,"TargetID":112397,"Directional":true}]},{"ID":10673,"SourceStructureID":6047,"TargetStructureID":112409,"Label":"6047-112409 via Ribbon Synapse from 19737 -> 112410","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19737,"TargetID":112410,"Directional":true}]},{"ID":10674,"SourceStructureID":6047,"TargetStructureID":112411,"Label":"6047-112411 via Ribbon Synapse from 19737 -> 112412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19737,"TargetID":112412,"Directional":true}]},{"ID":10675,"SourceStructureID":6047,"TargetStructureID":112419,"Label":"6047-112419 via BC Conventional Synapse from 112421 -> 112422","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112421,"TargetID":112422,"Directional":true}]},{"ID":10676,"SourceStructureID":6047,"TargetStructureID":112436,"Label":"6047-112436 via BC Conventional Synapse from 112536 -> 112535","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112536,"TargetID":112535,"Directional":true}]},{"ID":10677,"SourceStructureID":6047,"TargetStructureID":112500,"Label":"6047-112500 via BC Conventional Synapse from 112499 -> 112503, 112511 -> 112501","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112499,"TargetID":112503,"Directional":true},{"SourceID":112511,"TargetID":112501,"Directional":true}]},{"ID":10678,"SourceStructureID":6047,"TargetStructureID":112505,"Label":"6047-112505 via Ribbon Synapse from 112493 -> 112506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112493,"TargetID":112506,"Directional":true}]},{"ID":10679,"SourceStructureID":6047,"TargetStructureID":112507,"Label":"6047-112507 via Ribbon Synapse from 112493 -> 112508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112493,"TargetID":112508,"Directional":true}]},{"ID":10680,"SourceStructureID":6047,"TargetStructureID":112518,"Label":"6047-112518 via Ribbon Synapse from 112513 -> 112522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112513,"TargetID":112522,"Directional":true}]},{"ID":10681,"SourceStructureID":6047,"TargetStructureID":112519,"Label":"6047-112519 via Ribbon Synapse from 112513 -> 112520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112513,"TargetID":112520,"Directional":true}]},{"ID":10682,"SourceStructureID":6047,"TargetStructureID":112523,"Label":"6047-112523 via Ribbon Synapse from 112512 -> 112524","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112512,"TargetID":112524,"Directional":true}]},{"ID":10683,"SourceStructureID":6047,"TargetStructureID":112525,"Label":"6047-112525 via Ribbon Synapse from 112512 -> 112528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":112512,"TargetID":112528,"Directional":true}]},{"ID":10684,"SourceStructureID":6047,"TargetStructureID":112549,"Label":"6047-112549 via Ribbon Synapse from 19660 -> 112554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19660,"TargetID":112554,"Directional":true}]},{"ID":10685,"SourceStructureID":6047,"TargetStructureID":112557,"Label":"6047-112557 via Ribbon Synapse from 19659 -> 112558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19659,"TargetID":112558,"Directional":true}]},{"ID":10686,"SourceStructureID":6047,"TargetStructureID":112582,"Label":"6047-112582 via Ribbon Synapse from 19656 -> 112583","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19656,"TargetID":112583,"Directional":true}]},{"ID":10687,"SourceStructureID":6047,"TargetStructureID":112753,"Label":"6047-112753 via Ribbon Synapse from 61339 -> 112755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61339,"TargetID":112755,"Directional":true}]},{"ID":10688,"SourceStructureID":6047,"TargetStructureID":112756,"Label":"6047-112756 via Ribbon Synapse from 61339 -> 112757","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61339,"TargetID":112757,"Directional":true}]},{"ID":10689,"SourceStructureID":6047,"TargetStructureID":112764,"Label":"6047-112764 via BC Conventional Synapse from 112763 -> 112765","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112763,"TargetID":112765,"Directional":true}]},{"ID":10690,"SourceStructureID":6047,"TargetStructureID":112769,"Label":"6047-112769 via Ribbon Synapse from 61341 -> 112770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61341,"TargetID":112770,"Directional":true}]},{"ID":10691,"SourceStructureID":6047,"TargetStructureID":112782,"Label":"6047-112782 via BC Conventional Synapse from 112781 -> 112783","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112781,"TargetID":112783,"Directional":true}]},{"ID":10692,"SourceStructureID":6047,"TargetStructureID":112805,"Label":"6047-112805 via Ribbon Synapse from 19647 -> 112807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19647,"TargetID":112807,"Directional":true}]},{"ID":10693,"SourceStructureID":6047,"TargetStructureID":112824,"Label":"6047-112824 via Ribbon Synapse from 19643 -> 112826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19643,"TargetID":112826,"Directional":true}]},{"ID":10694,"SourceStructureID":6047,"TargetStructureID":112835,"Label":"6047-112835 via BC Conventional Synapse from 112834 -> 112840","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":112834,"TargetID":112840,"Directional":true}]},{"ID":10695,"SourceStructureID":6047,"TargetStructureID":112841,"Label":"6047-112841 via Ribbon Synapse from 19643 -> 112842","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19643,"TargetID":112842,"Directional":true}]},{"ID":10696,"SourceStructureID":6047,"TargetStructureID":113122,"Label":"6047-113122 via Ribbon Synapse from 19638 -> 113124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19638,"TargetID":113124,"Directional":true}]},{"ID":10697,"SourceStructureID":6047,"TargetStructureID":113125,"Label":"6047-113125 via Ribbon Synapse from 19638 -> 113126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19638,"TargetID":113126,"Directional":true}]},{"ID":10698,"SourceStructureID":6047,"TargetStructureID":113127,"Label":"6047-113127 via Ribbon Synapse from 19641 -> 113128","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19641,"TargetID":113128,"Directional":true}]},{"ID":10699,"SourceStructureID":6047,"TargetStructureID":113149,"Label":"6047-113149 via Ribbon Synapse from 19637 -> 113150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19637,"TargetID":113150,"Directional":true}]},{"ID":10700,"SourceStructureID":6047,"TargetStructureID":113153,"Label":"6047-113153 via BC Conventional Synapse from 113155 -> 113154","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":113155,"TargetID":113154,"Directional":true}]},{"ID":10701,"SourceStructureID":6047,"TargetStructureID":113162,"Label":"6047-113162 via Ribbon Synapse from 19628 -> 113163","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19628,"TargetID":113163,"Directional":true}]},{"ID":10702,"SourceStructureID":6047,"TargetStructureID":113176,"Label":"6047-113176 via BC Conventional Synapse from 113177 -> 113178","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":113177,"TargetID":113178,"Directional":true}]},{"ID":10703,"SourceStructureID":6047,"TargetStructureID":113179,"Label":"6047-113179 via Ribbon Synapse from 19634 -> 113183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19634,"TargetID":113183,"Directional":true}]},{"ID":10704,"SourceStructureID":6047,"TargetStructureID":113184,"Label":"6047-113184 via Ribbon Synapse from 19634 -> 113185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19634,"TargetID":113185,"Directional":true}]},{"ID":10705,"SourceStructureID":6047,"TargetStructureID":113230,"Label":"6047-113230 via Ribbon Synapse from 19691 -> 113231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19691,"TargetID":113231,"Directional":true}]},{"ID":10706,"SourceStructureID":6047,"TargetStructureID":113693,"Label":"6047-113693 via Ribbon Synapse from 113696 -> 113695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113696,"TargetID":113695,"Directional":true}]},{"ID":10707,"SourceStructureID":6048,"TargetStructureID":597,"Label":"6048-597 via Ribbon Synapse from 60481 -> 60475","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60481,"TargetID":60475,"Directional":true}]},{"ID":10708,"SourceStructureID":6048,"TargetStructureID":7147,"Label":"6048-7147 via Ribbon Synapse from 60476 -> 60477","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60476,"TargetID":60477,"Directional":true}]},{"ID":10709,"SourceStructureID":6050,"TargetStructureID":5442,"Label":"6050-5442 via Ribbon Synapse from 51648 -> 56662","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51648,"TargetID":56662,"Directional":true}]},{"ID":10710,"SourceStructureID":6050,"TargetStructureID":6300,"Label":"6050-6300 via Ribbon Synapse from 35946 -> 35947, 51653 -> 56097, 69795 -> 69799, 113884 -> 127104, 113890 -> 127161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35946,"TargetID":35947,"Directional":true},{"SourceID":51653,"TargetID":56097,"Directional":true},{"SourceID":69795,"TargetID":69799,"Directional":true},{"SourceID":113884,"TargetID":127104,"Directional":true},{"SourceID":113890,"TargetID":127161,"Directional":true}]},{"ID":10711,"SourceStructureID":6050,"TargetStructureID":9769,"Label":"6050-9769 via Ribbon Synapse from 35944 -> 23938, 51887 -> 127034, 126968 -> 126969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35944,"TargetID":23938,"Directional":true},{"SourceID":51887,"TargetID":127034,"Directional":true},{"SourceID":126968,"TargetID":126969,"Directional":true}]},{"ID":10712,"SourceStructureID":6050,"TargetStructureID":15796,"Label":"6050-15796 via Ribbon Synapse from 19306 -> 19282","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19306,"TargetID":19282,"Directional":true}]},{"ID":10713,"SourceStructureID":6050,"TargetStructureID":35894,"Label":"6050-35894 via Ribbon Synapse from 119685 -> 119686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119685,"TargetID":119686,"Directional":true}]},{"ID":10714,"SourceStructureID":6050,"TargetStructureID":45536,"Label":"6050-45536 via Ribbon Synapse from 45535 -> 45539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45535,"TargetID":45539,"Directional":true}]},{"ID":10715,"SourceStructureID":6050,"TargetStructureID":45551,"Label":"6050-45551 via Ribbon Synapse from 45549 -> 45552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45549,"TargetID":45552,"Directional":true}]},{"ID":10716,"SourceStructureID":6050,"TargetStructureID":45555,"Label":"6050-45555 via Ribbon Synapse from 54399 -> 127068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54399,"TargetID":127068,"Directional":true}]},{"ID":10717,"SourceStructureID":6050,"TargetStructureID":57064,"Label":"6050-57064 via Ribbon Synapse from 51879 -> 128926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51879,"TargetID":128926,"Directional":true}]},{"ID":10718,"SourceStructureID":6050,"TargetStructureID":62396,"Label":"6050-62396 via Ribbon Synapse from 36012 -> 62398","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36012,"TargetID":62398,"Directional":true}]},{"ID":10719,"SourceStructureID":6050,"TargetStructureID":66366,"Label":"6050-66366 via Ribbon Synapse from 66365 -> 66367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66365,"TargetID":66367,"Directional":true}]},{"ID":10720,"SourceStructureID":6050,"TargetStructureID":66368,"Label":"6050-66368 via Ribbon Synapse from 66153 -> 66369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66153,"TargetID":66369,"Directional":true}]},{"ID":10721,"SourceStructureID":6050,"TargetStructureID":67291,"Label":"6050-67291 via Ribbon Synapse from 68369 -> 68368, 69794 -> 69792","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68369,"TargetID":68368,"Directional":true},{"SourceID":69794,"TargetID":69792,"Directional":true}]},{"ID":10722,"SourceStructureID":6050,"TargetStructureID":74894,"Label":"6050-74894 via Ribbon Synapse from 19299 -> 74895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19299,"TargetID":74895,"Directional":true}]},{"ID":10723,"SourceStructureID":6050,"TargetStructureID":82091,"Label":"6050-82091 via Ribbon Synapse from 126994 -> 126998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":126994,"TargetID":126998,"Directional":true}]},{"ID":10724,"SourceStructureID":6050,"TargetStructureID":86254,"Label":"6050-86254 via Ribbon Synapse from 127053 -> 127054","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127053,"TargetID":127054,"Directional":true}]},{"ID":10725,"SourceStructureID":6050,"TargetStructureID":91867,"Label":"6050-91867 via Ribbon Synapse from 51653 -> 128990, 51666 -> 127229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51653,"TargetID":128990,"Directional":true},{"SourceID":51666,"TargetID":127229,"Directional":true}]},{"ID":10726,"SourceStructureID":6050,"TargetStructureID":105188,"Label":"6050-105188 via Ribbon Synapse from 114349 -> 114351","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114349,"TargetID":114351,"Directional":true}]},{"ID":10727,"SourceStructureID":6050,"TargetStructureID":116279,"Label":"6050-116279 via Ribbon Synapse from 51684 -> 120962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51684,"TargetID":120962,"Directional":true}]},{"ID":10728,"SourceStructureID":6050,"TargetStructureID":120956,"Label":"6050-120956 via Ribbon Synapse from 35955 -> 127248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35955,"TargetID":127248,"Directional":true}]},{"ID":10729,"SourceStructureID":6050,"TargetStructureID":124198,"Label":"6050-124198 via Ribbon Synapse from 113565 -> 124199","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":113565,"TargetID":124199,"Directional":true}]},{"ID":10730,"SourceStructureID":6050,"TargetStructureID":128843,"Label":"6050-128843 via Ribbon Synapse from 114253 -> 128844","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114253,"TargetID":128844,"Directional":true}]},{"ID":10731,"SourceStructureID":6115,"TargetStructureID":593,"Label":"6115-593 via Ribbon Synapse from 66337 -> 73127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66337,"TargetID":73127,"Directional":true}]},{"ID":10732,"SourceStructureID":6115,"TargetStructureID":5117,"Label":"6115-5117 via Ribbon Synapse from 66335 -> 66336, 66337 -> 66338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66335,"TargetID":66336,"Directional":true},{"SourceID":66337,"TargetID":66338,"Directional":true}]},{"ID":10733,"SourceStructureID":6115,"TargetStructureID":5118,"Label":"6115-5118 via BC Conventional Synapse from 52189 -> 52187, 73770 -> 73771, 74800 -> 52192","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":52189,"TargetID":52187,"Directional":true},{"SourceID":73770,"TargetID":73771,"Directional":true},{"SourceID":74800,"TargetID":52192,"Directional":true}]},{"ID":10734,"SourceStructureID":6115,"TargetStructureID":5118,"Label":"6115-5118 via Unknown from 75598 -> 75599","Type":"Unknown","Directional":true,"Links":[{"SourceID":75598,"TargetID":75599,"Directional":true}]},{"ID":10735,"SourceStructureID":6115,"TargetStructureID":8577,"Label":"6115-8577 via Ribbon Synapse from 16058 -> 16048, 72962 -> 76011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16058,"TargetID":16048,"Directional":true},{"SourceID":72962,"TargetID":76011,"Directional":true}]},{"ID":10736,"SourceStructureID":6115,"TargetStructureID":8579,"Label":"6115-8579 via Ribbon Synapse from 18325 -> 72517, 55845 -> 62740, 55902 -> 62736, 59596 -> 72562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18325,"TargetID":72517,"Directional":true},{"SourceID":55845,"TargetID":62740,"Directional":true},{"SourceID":55902,"TargetID":62736,"Directional":true},{"SourceID":59596,"TargetID":72562,"Directional":true}]},{"ID":10737,"SourceStructureID":6115,"TargetStructureID":8720,"Label":"6115-8720 via Ribbon Synapse from 127792 -> 127793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127792,"TargetID":127793,"Directional":true}]},{"ID":10738,"SourceStructureID":6115,"TargetStructureID":15796,"Label":"6115-15796 via Ribbon Synapse from 72256 -> 147790","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72256,"TargetID":147790,"Directional":true}]},{"ID":10739,"SourceStructureID":6115,"TargetStructureID":16087,"Label":"6115-16087 via BC Conventional Synapse from 134152 -> 134151","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134152,"TargetID":134151,"Directional":true}]},{"ID":10740,"SourceStructureID":6115,"TargetStructureID":16087,"Label":"6115-16087 via Ribbon Synapse from 16058 -> 75658, 32979 -> 16090, 59604 -> 73182, 75449 -> 75452, 77672 -> 77697, 90650 -> 77697","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16058,"TargetID":75658,"Directional":true},{"SourceID":32979,"TargetID":16090,"Directional":true},{"SourceID":59604,"TargetID":73182,"Directional":true},{"SourceID":75449,"TargetID":75452,"Directional":true},{"SourceID":77672,"TargetID":77697,"Directional":true},{"SourceID":90650,"TargetID":77697,"Directional":true}]},{"ID":10741,"SourceStructureID":6115,"TargetStructureID":18282,"Label":"6115-18282 via Ribbon Synapse from 18325 -> 18324, 72708 -> 72709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18325,"TargetID":18324,"Directional":true},{"SourceID":72708,"TargetID":72709,"Directional":true}]},{"ID":10742,"SourceStructureID":6115,"TargetStructureID":29702,"Label":"6115-29702 via Ribbon Synapse from 55849 -> 72495, 72272 -> 72274, 73885 -> 75506, 75502 -> 75501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55849,"TargetID":72495,"Directional":true},{"SourceID":72272,"TargetID":72274,"Directional":true},{"SourceID":73885,"TargetID":75506,"Directional":true},{"SourceID":75502,"TargetID":75501,"Directional":true}]},{"ID":10743,"SourceStructureID":6115,"TargetStructureID":32954,"Label":"6115-32954 via Ribbon Synapse from 32958 -> 32955","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32958,"TargetID":32955,"Directional":true}]},{"ID":10744,"SourceStructureID":6115,"TargetStructureID":32970,"Label":"6115-32970 via Ribbon Synapse from 55802 -> 72833, 55855 -> 73189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55802,"TargetID":72833,"Directional":true},{"SourceID":55855,"TargetID":73189,"Directional":true}]},{"ID":10745,"SourceStructureID":6115,"TargetStructureID":32970,"Label":"6115-32970 via Unknown from 72722 -> 72723","Type":"Unknown","Directional":true,"Links":[{"SourceID":72722,"TargetID":72723,"Directional":true}]},{"ID":10746,"SourceStructureID":6115,"TargetStructureID":41608,"Label":"6115-41608 via Ribbon Synapse from 55798 -> 41692, 55799 -> 41691, 55809 -> 72270, 55810 -> 72288, 56310 -> 41752, 72275 -> 72276, 72305 -> 72314, 73360 -> 73361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55798,"TargetID":41692,"Directional":true},{"SourceID":55799,"TargetID":41691,"Directional":true},{"SourceID":55809,"TargetID":72270,"Directional":true},{"SourceID":55810,"TargetID":72288,"Directional":true},{"SourceID":56310,"TargetID":41752,"Directional":true},{"SourceID":72275,"TargetID":72276,"Directional":true},{"SourceID":72305,"TargetID":72314,"Directional":true},{"SourceID":73360,"TargetID":73361,"Directional":true}]},{"ID":10747,"SourceStructureID":6115,"TargetStructureID":58696,"Label":"6115-58696 via Ribbon Synapse from 72653 -> 84770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72653,"TargetID":84770,"Directional":true}]},{"ID":10748,"SourceStructureID":6115,"TargetStructureID":61823,"Label":"6115-61823 via BC Conventional Synapse from 73859 -> 73860, 73889 -> 73890","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73859,"TargetID":73860,"Directional":true},{"SourceID":73889,"TargetID":73890,"Directional":true}]},{"ID":10749,"SourceStructureID":6115,"TargetStructureID":61864,"Label":"6115-61864 via Ribbon Synapse from 66335 -> 73130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66335,"TargetID":73130,"Directional":true}]},{"ID":10750,"SourceStructureID":6115,"TargetStructureID":64362,"Label":"6115-64362 via Ribbon Synapse from 134223 -> 134224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134223,"TargetID":134224,"Directional":true}]},{"ID":10751,"SourceStructureID":6115,"TargetStructureID":66407,"Label":"6115-66407 via Ribbon Synapse from 55799 -> 72795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55799,"TargetID":72795,"Directional":true}]},{"ID":10752,"SourceStructureID":6115,"TargetStructureID":66634,"Label":"6115-66634 via Ribbon Synapse from 55788 -> 71337, 55909 -> 71333, 73386 -> 73387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55788,"TargetID":71337,"Directional":true},{"SourceID":55909,"TargetID":71333,"Directional":true},{"SourceID":73386,"TargetID":73387,"Directional":true}]},{"ID":10753,"SourceStructureID":6115,"TargetStructureID":66696,"Label":"6115-66696 via Ribbon Synapse from 59606 -> 66748, 66751 -> 66750, 75652 -> 75655","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59606,"TargetID":66748,"Directional":true},{"SourceID":66751,"TargetID":66750,"Directional":true},{"SourceID":75652,"TargetID":75655,"Directional":true}]},{"ID":10754,"SourceStructureID":6115,"TargetStructureID":66768,"Label":"6115-66768 via Ribbon Synapse from 72653 -> 72655","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72653,"TargetID":72655,"Directional":true}]},{"ID":10755,"SourceStructureID":6115,"TargetStructureID":68153,"Label":"6115-68153 via Ribbon Synapse from 68187 -> 68186, 73493 -> 73496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68187,"TargetID":68186,"Directional":true},{"SourceID":73493,"TargetID":73496,"Directional":true}]},{"ID":10756,"SourceStructureID":6115,"TargetStructureID":68548,"Label":"6115-68548 via BC Conventional Synapse from 73027 -> 75737","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73027,"TargetID":75737,"Directional":true}]},{"ID":10757,"SourceStructureID":6115,"TargetStructureID":69385,"Label":"6115-69385 via Ribbon Synapse from 55783 -> 72170","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55783,"TargetID":72170,"Directional":true}]},{"ID":10758,"SourceStructureID":6115,"TargetStructureID":69464,"Label":"6115-69464 via Ribbon Synapse from 55845 -> 69471","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55845,"TargetID":69471,"Directional":true}]},{"ID":10759,"SourceStructureID":6115,"TargetStructureID":69472,"Label":"6115-69472 via Ribbon Synapse from 59610 -> 69474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59610,"TargetID":69474,"Directional":true}]},{"ID":10760,"SourceStructureID":6115,"TargetStructureID":69493,"Label":"6115-69493 via Ribbon Synapse from 16049 -> 69495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16049,"TargetID":69495,"Directional":true}]},{"ID":10761,"SourceStructureID":6115,"TargetStructureID":69496,"Label":"6115-69496 via Ribbon Synapse from 16052 -> 69499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16052,"TargetID":69499,"Directional":true}]},{"ID":10762,"SourceStructureID":6115,"TargetStructureID":69500,"Label":"6115-69500 via Ribbon Synapse from 55854 -> 69501","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55854,"TargetID":69501,"Directional":true}]},{"ID":10763,"SourceStructureID":6115,"TargetStructureID":70308,"Label":"6115-70308 via Ribbon Synapse from 70311 -> 70312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70311,"TargetID":70312,"Directional":true}]},{"ID":10764,"SourceStructureID":6115,"TargetStructureID":71351,"Label":"6115-71351 via BC Conventional Synapse from 71899 -> 71900","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71899,"TargetID":71900,"Directional":true}]},{"ID":10765,"SourceStructureID":6115,"TargetStructureID":71351,"Label":"6115-71351 via Ribbon Synapse from 55754 -> 71673, 55789 -> 71672, 55905 -> 71352, 70410 -> 71898, 135165 -> 135166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55754,"TargetID":71673,"Directional":true},{"SourceID":55789,"TargetID":71672,"Directional":true},{"SourceID":55905,"TargetID":71352,"Directional":true},{"SourceID":70410,"TargetID":71898,"Directional":true},{"SourceID":135165,"TargetID":135166,"Directional":true}]},{"ID":10766,"SourceStructureID":6115,"TargetStructureID":71517,"Label":"6115-71517 via Ribbon Synapse from 55785 -> 71509, 55791 -> 71514, 75002 -> 75003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55785,"TargetID":71509,"Directional":true},{"SourceID":55791,"TargetID":71514,"Directional":true},{"SourceID":75002,"TargetID":75003,"Directional":true}]},{"ID":10767,"SourceStructureID":6115,"TargetStructureID":72003,"Label":"6115-72003 via Ribbon Synapse from 55843 -> 75092","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55843,"TargetID":75092,"Directional":true}]},{"ID":10768,"SourceStructureID":6115,"TargetStructureID":72074,"Label":"6115-72074 via Ribbon Synapse from 37625 -> 72075","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37625,"TargetID":72075,"Directional":true}]},{"ID":10769,"SourceStructureID":6115,"TargetStructureID":72076,"Label":"6115-72076 via BC Conventional Synapse from 72148 -> 72147","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72148,"TargetID":72147,"Directional":true}]},{"ID":10770,"SourceStructureID":6115,"TargetStructureID":72079,"Label":"6115-72079 via Ribbon Synapse from 37631 -> 72080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37631,"TargetID":72080,"Directional":true}]},{"ID":10771,"SourceStructureID":6115,"TargetStructureID":72091,"Label":"6115-72091 via Ribbon Synapse from 55859 -> 72095","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55859,"TargetID":72095,"Directional":true}]},{"ID":10772,"SourceStructureID":6115,"TargetStructureID":72092,"Label":"6115-72092 via Ribbon Synapse from 55859 -> 72145, 72090 -> 72145","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55859,"TargetID":72145,"Directional":true},{"SourceID":72090,"TargetID":72145,"Directional":true}]},{"ID":10773,"SourceStructureID":6115,"TargetStructureID":72093,"Label":"6115-72093 via Ribbon Synapse from 55858 -> 72094, 72158 -> 72094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55858,"TargetID":72094,"Directional":true},{"SourceID":72158,"TargetID":72094,"Directional":true}]},{"ID":10774,"SourceStructureID":6115,"TargetStructureID":72142,"Label":"6115-72142 via Ribbon Synapse from 37635 -> 72143","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37635,"TargetID":72143,"Directional":true}]},{"ID":10775,"SourceStructureID":6115,"TargetStructureID":72152,"Label":"6115-72152 via Ribbon Synapse from 37631 -> 72153","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37631,"TargetID":72153,"Directional":true}]},{"ID":10776,"SourceStructureID":6115,"TargetStructureID":72159,"Label":"6115-72159 via Ribbon Synapse from 37635 -> 72160","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37635,"TargetID":72160,"Directional":true}]},{"ID":10777,"SourceStructureID":6115,"TargetStructureID":72162,"Label":"6115-72162 via Unknown from 72236 -> 72235","Type":"Unknown","Directional":true,"Links":[{"SourceID":72236,"TargetID":72235,"Directional":true}]},{"ID":10778,"SourceStructureID":6115,"TargetStructureID":72166,"Label":"6115-72166 via Ribbon Synapse from 134156 -> 134157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134156,"TargetID":134157,"Directional":true}]},{"ID":10779,"SourceStructureID":6115,"TargetStructureID":72168,"Label":"6115-72168 via BC Conventional Synapse from 72241 -> 72239","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72241,"TargetID":72239,"Directional":true}]},{"ID":10780,"SourceStructureID":6115,"TargetStructureID":72173,"Label":"6115-72173 via Ribbon Synapse from 72244 -> 82709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72244,"TargetID":82709,"Directional":true}]},{"ID":10781,"SourceStructureID":6115,"TargetStructureID":72176,"Label":"6115-72176 via Ribbon Synapse from 72244 -> 72249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72244,"TargetID":72249,"Directional":true}]},{"ID":10782,"SourceStructureID":6115,"TargetStructureID":72186,"Label":"6115-72186 via Ribbon Synapse from 20424 -> 72187, 72196 -> 72194","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20424,"TargetID":72187,"Directional":true},{"SourceID":72196,"TargetID":72194,"Directional":true}]},{"ID":10783,"SourceStructureID":6115,"TargetStructureID":72218,"Label":"6115-72218 via Ribbon Synapse from 55807 -> 72232, 80749 -> 80750","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55807,"TargetID":72232,"Directional":true},{"SourceID":80749,"TargetID":80750,"Directional":true}]},{"ID":10784,"SourceStructureID":6115,"TargetStructureID":72233,"Label":"6115-72233 via Ribbon Synapse from 55807 -> 72234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55807,"TargetID":72234,"Directional":true}]},{"ID":10785,"SourceStructureID":6115,"TargetStructureID":72259,"Label":"6115-72259 via BC Conventional Synapse from 72263 -> 72264","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72263,"TargetID":72264,"Directional":true}]},{"ID":10786,"SourceStructureID":6115,"TargetStructureID":72285,"Label":"6115-72285 via Ribbon Synapse from 72284 -> 72286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72284,"TargetID":72286,"Directional":true}]},{"ID":10787,"SourceStructureID":6115,"TargetStructureID":72287,"Label":"6115-72287 via Ribbon Synapse from 55810 -> 72289, 134160 -> 134161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55810,"TargetID":72289,"Directional":true},{"SourceID":134160,"TargetID":134161,"Directional":true}]},{"ID":10788,"SourceStructureID":6115,"TargetStructureID":72296,"Label":"6115-72296 via BC Conventional Synapse from 72295 -> 72297","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72295,"TargetID":72297,"Directional":true}]},{"ID":10789,"SourceStructureID":6115,"TargetStructureID":72309,"Label":"6115-72309 via Ribbon Synapse from 72305 -> 81347","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72305,"TargetID":81347,"Directional":true}]},{"ID":10790,"SourceStructureID":6115,"TargetStructureID":72320,"Label":"6115-72320 via BC Conventional Synapse from 134166 -> 134165","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134166,"TargetID":134165,"Directional":true}]},{"ID":10791,"SourceStructureID":6115,"TargetStructureID":72329,"Label":"6115-72329 via Ribbon Synapse from 55812 -> 72330","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55812,"TargetID":72330,"Directional":true}]},{"ID":10792,"SourceStructureID":6115,"TargetStructureID":72331,"Label":"6115-72331 via Ribbon Synapse from 55812 -> 72332","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55812,"TargetID":72332,"Directional":true}]},{"ID":10793,"SourceStructureID":6115,"TargetStructureID":72401,"Label":"6115-72401 via Ribbon Synapse from 55854 -> 72415","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55854,"TargetID":72415,"Directional":true}]},{"ID":10794,"SourceStructureID":6115,"TargetStructureID":72449,"Label":"6115-72449 via BC Conventional Synapse from 72448 -> 72450","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72448,"TargetID":72450,"Directional":true}]},{"ID":10795,"SourceStructureID":6115,"TargetStructureID":72458,"Label":"6115-72458 via Ribbon Synapse from 55855 -> 72459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55855,"TargetID":72459,"Directional":true}]},{"ID":10796,"SourceStructureID":6115,"TargetStructureID":72460,"Label":"6115-72460 via Ribbon Synapse from 72462 -> 73188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72462,"TargetID":73188,"Directional":true}]},{"ID":10797,"SourceStructureID":6115,"TargetStructureID":72492,"Label":"6115-72492 via Ribbon Synapse from 55849 -> 72493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55849,"TargetID":72493,"Directional":true}]},{"ID":10798,"SourceStructureID":6115,"TargetStructureID":72515,"Label":"6115-72515 via BC Conventional Synapse from 72514 -> 72516","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72514,"TargetID":72516,"Directional":true}]},{"ID":10799,"SourceStructureID":6115,"TargetStructureID":72526,"Label":"6115-72526 via Ribbon Synapse from 72525 -> 72531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72525,"TargetID":72531,"Directional":true}]},{"ID":10800,"SourceStructureID":6115,"TargetStructureID":72529,"Label":"6115-72529 via Ribbon Synapse from 72525 -> 72530","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72525,"TargetID":72530,"Directional":true}]},{"ID":10801,"SourceStructureID":6115,"TargetStructureID":72545,"Label":"6115-72545 via Ribbon Synapse from 59597 -> 72546","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59597,"TargetID":72546,"Directional":true}]},{"ID":10802,"SourceStructureID":6115,"TargetStructureID":72559,"Label":"6115-72559 via Ribbon Synapse from 59596 -> 72561","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59596,"TargetID":72561,"Directional":true}]},{"ID":10803,"SourceStructureID":6115,"TargetStructureID":72566,"Label":"6115-72566 via BC Conventional Synapse from 72568 -> 72567","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72568,"TargetID":72567,"Directional":true}]},{"ID":10804,"SourceStructureID":6115,"TargetStructureID":72589,"Label":"6115-72589 via BC Conventional Synapse from 72590 -> 72591","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72590,"TargetID":72591,"Directional":true}]},{"ID":10805,"SourceStructureID":6115,"TargetStructureID":72594,"Label":"6115-72594 via Ribbon Synapse from 55848 -> 72595","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55848,"TargetID":72595,"Directional":true}]},{"ID":10806,"SourceStructureID":6115,"TargetStructureID":72604,"Label":"6115-72604 via BC Conventional Synapse from 72632 -> 82408, 72671 -> 72672, 75661 -> 75662","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72632,"TargetID":82408,"Directional":true},{"SourceID":72671,"TargetID":72672,"Directional":true},{"SourceID":75661,"TargetID":75662,"Directional":true}]},{"ID":10807,"SourceStructureID":6115,"TargetStructureID":72606,"Label":"6115-72606 via BC Conventional Synapse from 72632 -> 82409","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72632,"TargetID":82409,"Directional":true}]},{"ID":10808,"SourceStructureID":6115,"TargetStructureID":72606,"Label":"6115-72606 via Ribbon Synapse from 82423 -> 82409","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82423,"TargetID":82409,"Directional":true}]},{"ID":10809,"SourceStructureID":6115,"TargetStructureID":72612,"Label":"6115-72612 via BC Conventional Synapse from 73261 -> 73260","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73261,"TargetID":73260,"Directional":true}]},{"ID":10810,"SourceStructureID":6115,"TargetStructureID":72638,"Label":"6115-72638 via Ribbon Synapse from 59606 -> 72639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59606,"TargetID":72639,"Directional":true}]},{"ID":10811,"SourceStructureID":6115,"TargetStructureID":72643,"Label":"6115-72643 via Ribbon Synapse from 59604 -> 73181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59604,"TargetID":73181,"Directional":true}]},{"ID":10812,"SourceStructureID":6115,"TargetStructureID":72647,"Label":"6115-72647 via BC Conventional Synapse from 72646 -> 72648","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72646,"TargetID":72648,"Directional":true}]},{"ID":10813,"SourceStructureID":6115,"TargetStructureID":72650,"Label":"6115-72650 via Ribbon Synapse from 72653 -> 78315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72653,"TargetID":78315,"Directional":true}]},{"ID":10814,"SourceStructureID":6115,"TargetStructureID":72658,"Label":"6115-72658 via Ribbon Synapse from 59610 -> 72661","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59610,"TargetID":72661,"Directional":true}]},{"ID":10815,"SourceStructureID":6115,"TargetStructureID":72681,"Label":"6115-72681 via Ribbon Synapse from 32979 -> 72682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32979,"TargetID":72682,"Directional":true}]},{"ID":10816,"SourceStructureID":6115,"TargetStructureID":72694,"Label":"6115-72694 via Ribbon Synapse from 72693 -> 72695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72693,"TargetID":72695,"Directional":true}]},{"ID":10817,"SourceStructureID":6115,"TargetStructureID":72716,"Label":"6115-72716 via Ribbon Synapse from 55813 -> 72717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55813,"TargetID":72717,"Directional":true}]},{"ID":10818,"SourceStructureID":6115,"TargetStructureID":72718,"Label":"6115-72718 via Ribbon Synapse from 55813 -> 72719","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55813,"TargetID":72719,"Directional":true}]},{"ID":10819,"SourceStructureID":6115,"TargetStructureID":72724,"Label":"6115-72724 via BC Conventional Synapse from 72725 -> 72726","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72725,"TargetID":72726,"Directional":true}]},{"ID":10820,"SourceStructureID":6115,"TargetStructureID":72728,"Label":"6115-72728 via BC Conventional Synapse from 72745 -> 72746","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72745,"TargetID":72746,"Directional":true}]},{"ID":10821,"SourceStructureID":6115,"TargetStructureID":72730,"Label":"6115-72730 via Ribbon Synapse from 55796 -> 72755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55796,"TargetID":72755,"Directional":true}]},{"ID":10822,"SourceStructureID":6115,"TargetStructureID":72731,"Label":"6115-72731 via Ribbon Synapse from 55796 -> 72732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55796,"TargetID":72732,"Directional":true}]},{"ID":10823,"SourceStructureID":6115,"TargetStructureID":72735,"Label":"6115-72735 via Ribbon Synapse from 55795 -> 72736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55795,"TargetID":72736,"Directional":true}]},{"ID":10824,"SourceStructureID":6115,"TargetStructureID":72737,"Label":"6115-72737 via Ribbon Synapse from 55795 -> 72738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55795,"TargetID":72738,"Directional":true}]},{"ID":10825,"SourceStructureID":6115,"TargetStructureID":72742,"Label":"6115-72742 via BC Conventional Synapse from 72741 -> 72743","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72741,"TargetID":72743,"Directional":true}]},{"ID":10826,"SourceStructureID":6115,"TargetStructureID":72754,"Label":"6115-72754 via BC Conventional Synapse from 82711 -> 82710","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":82711,"TargetID":82710,"Directional":true}]},{"ID":10827,"SourceStructureID":6115,"TargetStructureID":72772,"Label":"6115-72772 via Ribbon Synapse from 72771 -> 72774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72771,"TargetID":72774,"Directional":true}]},{"ID":10828,"SourceStructureID":6115,"TargetStructureID":72773,"Label":"6115-72773 via Ribbon Synapse from 72771 -> 72775","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72771,"TargetID":72775,"Directional":true}]},{"ID":10829,"SourceStructureID":6115,"TargetStructureID":72787,"Label":"6115-72787 via Ribbon Synapse from 55798 -> 81164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55798,"TargetID":81164,"Directional":true}]},{"ID":10830,"SourceStructureID":6115,"TargetStructureID":72792,"Label":"6115-72792 via BC Conventional Synapse from 72794 -> 72793","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72794,"TargetID":72793,"Directional":true}]},{"ID":10831,"SourceStructureID":6115,"TargetStructureID":72796,"Label":"6115-72796 via Ribbon Synapse from 55799 -> 72797","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55799,"TargetID":72797,"Directional":true}]},{"ID":10832,"SourceStructureID":6115,"TargetStructureID":72826,"Label":"6115-72826 via Ribbon Synapse from 55803 -> 72827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55803,"TargetID":72827,"Directional":true}]},{"ID":10833,"SourceStructureID":6115,"TargetStructureID":72829,"Label":"6115-72829 via Ribbon Synapse from 73264 -> 72830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73264,"TargetID":72830,"Directional":true}]},{"ID":10834,"SourceStructureID":6115,"TargetStructureID":72831,"Label":"6115-72831 via Ribbon Synapse from 55802 -> 72832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55802,"TargetID":72832,"Directional":true}]},{"ID":10835,"SourceStructureID":6115,"TargetStructureID":72841,"Label":"6115-72841 via Ribbon Synapse from 72842 -> 72843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72842,"TargetID":72843,"Directional":true}]},{"ID":10836,"SourceStructureID":6115,"TargetStructureID":72901,"Label":"6115-72901 via Ribbon Synapse from 72903 -> 72902","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72903,"TargetID":72902,"Directional":true}]},{"ID":10837,"SourceStructureID":6115,"TargetStructureID":72905,"Label":"6115-72905 via Ribbon Synapse from 72904 -> 72906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72904,"TargetID":72906,"Directional":true}]},{"ID":10838,"SourceStructureID":6115,"TargetStructureID":72923,"Label":"6115-72923 via Unknown from 72924 -> 72925","Type":"Unknown","Directional":true,"Links":[{"SourceID":72924,"TargetID":72925,"Directional":true}]},{"ID":10839,"SourceStructureID":6115,"TargetStructureID":72936,"Label":"6115-72936 via Unknown from 72946 -> 72947","Type":"Unknown","Directional":true,"Links":[{"SourceID":72946,"TargetID":72947,"Directional":true}]},{"ID":10840,"SourceStructureID":6115,"TargetStructureID":72939,"Label":"6115-72939 via Ribbon Synapse from 55865 -> 72948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55865,"TargetID":72948,"Directional":true}]},{"ID":10841,"SourceStructureID":6115,"TargetStructureID":72941,"Label":"6115-72941 via Ribbon Synapse from 73138 -> 81890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73138,"TargetID":81890,"Directional":true}]},{"ID":10842,"SourceStructureID":6115,"TargetStructureID":72952,"Label":"6115-72952 via BC Conventional Synapse from 72953 -> 72954","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72953,"TargetID":72954,"Directional":true}]},{"ID":10843,"SourceStructureID":6115,"TargetStructureID":72955,"Label":"6115-72955 via Ribbon Synapse from 55865 -> 72956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55865,"TargetID":72956,"Directional":true}]},{"ID":10844,"SourceStructureID":6115,"TargetStructureID":72957,"Label":"6115-72957 via Ribbon Synapse from 55915 -> 72958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55915,"TargetID":72958,"Directional":true}]},{"ID":10845,"SourceStructureID":6115,"TargetStructureID":72959,"Label":"6115-72959 via Ribbon Synapse from 72960 -> 72961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72960,"TargetID":72961,"Directional":true}]},{"ID":10846,"SourceStructureID":6115,"TargetStructureID":72975,"Label":"6115-72975 via Ribbon Synapse from 55783 -> 74290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55783,"TargetID":74290,"Directional":true}]},{"ID":10847,"SourceStructureID":6115,"TargetStructureID":72987,"Label":"6115-72987 via Ribbon Synapse from 55902 -> 75994, 55902 -> 81352, 55911 -> 73015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55902,"TargetID":75994,"Directional":true},{"SourceID":55902,"TargetID":81352,"Directional":true},{"SourceID":55911,"TargetID":73015,"Directional":true}]},{"ID":10848,"SourceStructureID":6115,"TargetStructureID":73004,"Label":"6115-73004 via Ribbon Synapse from 55910 -> 73005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55910,"TargetID":73005,"Directional":true}]},{"ID":10849,"SourceStructureID":6115,"TargetStructureID":73007,"Label":"6115-73007 via Ribbon Synapse from 55909 -> 73008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55909,"TargetID":73008,"Directional":true}]},{"ID":10850,"SourceStructureID":6115,"TargetStructureID":73021,"Label":"6115-73021 via Ribbon Synapse from 55898 -> 73022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55898,"TargetID":73022,"Directional":true}]},{"ID":10851,"SourceStructureID":6115,"TargetStructureID":73023,"Label":"6115-73023 via Ribbon Synapse from 55898 -> 73024","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55898,"TargetID":73024,"Directional":true}]},{"ID":10852,"SourceStructureID":6115,"TargetStructureID":73030,"Label":"6115-73030 via Unknown from 73031 -> 73032","Type":"Unknown","Directional":true,"Links":[{"SourceID":73031,"TargetID":73032,"Directional":true}]},{"ID":10853,"SourceStructureID":6115,"TargetStructureID":73037,"Label":"6115-73037 via Unknown from 73036 -> 73038","Type":"Unknown","Directional":true,"Links":[{"SourceID":73036,"TargetID":73038,"Directional":true}]},{"ID":10854,"SourceStructureID":6115,"TargetStructureID":73043,"Label":"6115-73043 via BC Conventional Synapse from 73044 -> 73045","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73044,"TargetID":73045,"Directional":true}]},{"ID":10855,"SourceStructureID":6115,"TargetStructureID":73051,"Label":"6115-73051 via Unknown from 73052 -> 73053","Type":"Unknown","Directional":true,"Links":[{"SourceID":73052,"TargetID":73053,"Directional":true}]},{"ID":10856,"SourceStructureID":6115,"TargetStructureID":73067,"Label":"6115-73067 via Ribbon Synapse from 73064 -> 73068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73064,"TargetID":73068,"Directional":true}]},{"ID":10857,"SourceStructureID":6115,"TargetStructureID":73094,"Label":"6115-73094 via Ribbon Synapse from 73093 -> 73095","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73093,"TargetID":73095,"Directional":true}]},{"ID":10858,"SourceStructureID":6115,"TargetStructureID":73110,"Label":"6115-73110 via Ribbon Synapse from 73109 -> 73111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73109,"TargetID":73111,"Directional":true}]},{"ID":10859,"SourceStructureID":6115,"TargetStructureID":73118,"Label":"6115-73118 via Ribbon Synapse from 73117 -> 73119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73117,"TargetID":73119,"Directional":true}]},{"ID":10860,"SourceStructureID":6115,"TargetStructureID":73124,"Label":"6115-73124 via BC Conventional Synapse from 73125 -> 73126","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73125,"TargetID":73126,"Directional":true}]},{"ID":10861,"SourceStructureID":6115,"TargetStructureID":73144,"Label":"6115-73144 via Ribbon Synapse from 55916 -> 73145, 73156 -> 73203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55916,"TargetID":73145,"Directional":true},{"SourceID":73156,"TargetID":73203,"Directional":true}]},{"ID":10862,"SourceStructureID":6115,"TargetStructureID":73204,"Label":"6115-73204 via Ribbon Synapse from 73156 -> 73205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73156,"TargetID":73205,"Directional":true}]},{"ID":10863,"SourceStructureID":6115,"TargetStructureID":73219,"Label":"6115-73219 via Ribbon Synapse from 73218 -> 73220","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73218,"TargetID":73220,"Directional":true}]},{"ID":10864,"SourceStructureID":6115,"TargetStructureID":73225,"Label":"6115-73225 via Ribbon Synapse from 72327 -> 73228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72327,"TargetID":73228,"Directional":true}]},{"ID":10865,"SourceStructureID":6115,"TargetStructureID":73229,"Label":"6115-73229 via Ribbon Synapse from 72327 -> 73230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72327,"TargetID":73230,"Directional":true}]},{"ID":10866,"SourceStructureID":6115,"TargetStructureID":73250,"Label":"6115-73250 via Ribbon Synapse from 73249 -> 73251","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73249,"TargetID":73251,"Directional":true}]},{"ID":10867,"SourceStructureID":6115,"TargetStructureID":73252,"Label":"6115-73252 via Ribbon Synapse from 55810 -> 73253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55810,"TargetID":73253,"Directional":true}]},{"ID":10868,"SourceStructureID":6115,"TargetStructureID":73273,"Label":"6115-73273 via Ribbon Synapse from 73215 -> 82676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73215,"TargetID":82676,"Directional":true}]},{"ID":10869,"SourceStructureID":6115,"TargetStructureID":73275,"Label":"6115-73275 via Ribbon Synapse from 73272 -> 73278","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73272,"TargetID":73278,"Directional":true}]},{"ID":10870,"SourceStructureID":6115,"TargetStructureID":73276,"Label":"6115-73276 via Ribbon Synapse from 73272 -> 73277","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73272,"TargetID":73277,"Directional":true}]},{"ID":10871,"SourceStructureID":6115,"TargetStructureID":73301,"Label":"6115-73301 via Ribbon Synapse from 55881 -> 73302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55881,"TargetID":73302,"Directional":true}]},{"ID":10872,"SourceStructureID":6115,"TargetStructureID":73303,"Label":"6115-73303 via Ribbon Synapse from 55882 -> 73306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55882,"TargetID":73306,"Directional":true}]},{"ID":10873,"SourceStructureID":6115,"TargetStructureID":73304,"Label":"6115-73304 via Ribbon Synapse from 55882 -> 73305","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55882,"TargetID":73305,"Directional":true}]},{"ID":10874,"SourceStructureID":6115,"TargetStructureID":73313,"Label":"6115-73313 via BC Conventional Synapse from 73312 -> 73317","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73312,"TargetID":73317,"Directional":true}]},{"ID":10875,"SourceStructureID":6115,"TargetStructureID":73323,"Label":"6115-73323 via Ribbon Synapse from 55883 -> 73329","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55883,"TargetID":73329,"Directional":true}]},{"ID":10876,"SourceStructureID":6115,"TargetStructureID":73324,"Label":"6115-73324 via Ribbon Synapse from 55883 -> 73328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55883,"TargetID":73328,"Directional":true}]},{"ID":10877,"SourceStructureID":6115,"TargetStructureID":73332,"Label":"6115-73332 via Ribbon Synapse from 55884 -> 73333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55884,"TargetID":73333,"Directional":true}]},{"ID":10878,"SourceStructureID":6115,"TargetStructureID":73335,"Label":"6115-73335 via Ribbon Synapse from 73334 -> 73336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73334,"TargetID":73336,"Directional":true}]},{"ID":10879,"SourceStructureID":6115,"TargetStructureID":73399,"Label":"6115-73399 via BC Conventional Synapse from 73396 -> 73400","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73396,"TargetID":73400,"Directional":true}]},{"ID":10880,"SourceStructureID":6115,"TargetStructureID":73426,"Label":"6115-73426 via Ribbon Synapse from 73425 -> 73427","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73425,"TargetID":73427,"Directional":true}]},{"ID":10881,"SourceStructureID":6115,"TargetStructureID":73428,"Label":"6115-73428 via Ribbon Synapse from 73425 -> 73429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73425,"TargetID":73429,"Directional":true}]},{"ID":10882,"SourceStructureID":6115,"TargetStructureID":73436,"Label":"6115-73436 via Unknown from 73437 -> 73438","Type":"Unknown","Directional":true,"Links":[{"SourceID":73437,"TargetID":73438,"Directional":true}]},{"ID":10883,"SourceStructureID":6115,"TargetStructureID":73448,"Label":"6115-73448 via Ribbon Synapse from 73447 -> 73449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73447,"TargetID":73449,"Directional":true}]},{"ID":10884,"SourceStructureID":6115,"TargetStructureID":73472,"Label":"6115-73472 via BC Conventional Synapse from 73474 -> 73473","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73474,"TargetID":73473,"Directional":true}]},{"ID":10885,"SourceStructureID":6115,"TargetStructureID":73494,"Label":"6115-73494 via Ribbon Synapse from 73493 -> 73495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73493,"TargetID":73495,"Directional":true}]},{"ID":10886,"SourceStructureID":6115,"TargetStructureID":73509,"Label":"6115-73509 via BC Conventional Synapse from 73510 -> 73511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73510,"TargetID":73511,"Directional":true}]},{"ID":10887,"SourceStructureID":6115,"TargetStructureID":73540,"Label":"6115-73540 via Ribbon Synapse from 73539 -> 73541","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73539,"TargetID":73541,"Directional":true}]},{"ID":10888,"SourceStructureID":6115,"TargetStructureID":73542,"Label":"6115-73542 via Ribbon Synapse from 73539 -> 73543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73539,"TargetID":73543,"Directional":true}]},{"ID":10889,"SourceStructureID":6115,"TargetStructureID":73565,"Label":"6115-73565 via Ribbon Synapse from 74174 -> 74178","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74174,"TargetID":74178,"Directional":true}]},{"ID":10890,"SourceStructureID":6115,"TargetStructureID":73784,"Label":"6115-73784 via BC Conventional Synapse from 73785 -> 73786","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73785,"TargetID":73786,"Directional":true}]},{"ID":10891,"SourceStructureID":6115,"TargetStructureID":73792,"Label":"6115-73792 via Ribbon Synapse from 73787 -> 73794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73787,"TargetID":73794,"Directional":true}]},{"ID":10892,"SourceStructureID":6115,"TargetStructureID":73793,"Label":"6115-73793 via Ribbon Synapse from 73787 -> 73795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73787,"TargetID":73795,"Directional":true}]},{"ID":10893,"SourceStructureID":6115,"TargetStructureID":73796,"Label":"6115-73796 via Ribbon Synapse from 73788 -> 73797","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73788,"TargetID":73797,"Directional":true}]},{"ID":10894,"SourceStructureID":6115,"TargetStructureID":73821,"Label":"6115-73821 via Ribbon Synapse from 32958 -> 73835","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32958,"TargetID":73835,"Directional":true}]},{"ID":10895,"SourceStructureID":6115,"TargetStructureID":73838,"Label":"6115-73838 via BC Conventional Synapse from 78311 -> 78312","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":78311,"TargetID":78312,"Directional":true}]},{"ID":10896,"SourceStructureID":6115,"TargetStructureID":73846,"Label":"6115-73846 via Ribbon Synapse from 73851 -> 73852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73851,"TargetID":73852,"Directional":true}]},{"ID":10897,"SourceStructureID":6115,"TargetStructureID":73853,"Label":"6115-73853 via Ribbon Synapse from 73851 -> 73854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73851,"TargetID":73854,"Directional":true}]},{"ID":10898,"SourceStructureID":6115,"TargetStructureID":73884,"Label":"6115-73884 via Ribbon Synapse from 73885 -> 73888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73885,"TargetID":73888,"Directional":true}]},{"ID":10899,"SourceStructureID":6115,"TargetStructureID":73891,"Label":"6115-73891 via Ribbon Synapse from 73894 -> 73895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73894,"TargetID":73895,"Directional":true}]},{"ID":10900,"SourceStructureID":6115,"TargetStructureID":73896,"Label":"6115-73896 via Ribbon Synapse from 73894 -> 73897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73894,"TargetID":73897,"Directional":true}]},{"ID":10901,"SourceStructureID":6115,"TargetStructureID":73909,"Label":"6115-73909 via BC Conventional Synapse from 134232 -> 134233","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134232,"TargetID":134233,"Directional":true}]},{"ID":10902,"SourceStructureID":6115,"TargetStructureID":73916,"Label":"6115-73916 via Ribbon Synapse from 73915 -> 73917","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73915,"TargetID":73917,"Directional":true}]},{"ID":10903,"SourceStructureID":6115,"TargetStructureID":73926,"Label":"6115-73926 via Ribbon Synapse from 73929 -> 73931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73929,"TargetID":73931,"Directional":true}]},{"ID":10904,"SourceStructureID":6115,"TargetStructureID":73928,"Label":"6115-73928 via Ribbon Synapse from 73929 -> 73930","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73929,"TargetID":73930,"Directional":true}]},{"ID":10905,"SourceStructureID":6115,"TargetStructureID":73965,"Label":"6115-73965 via Ribbon Synapse from 56311 -> 73966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56311,"TargetID":73966,"Directional":true}]},{"ID":10906,"SourceStructureID":6115,"TargetStructureID":73967,"Label":"6115-73967 via Ribbon Synapse from 56311 -> 73969, 56312 -> 73972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56311,"TargetID":73969,"Directional":true},{"SourceID":56312,"TargetID":73972,"Directional":true}]},{"ID":10907,"SourceStructureID":6115,"TargetStructureID":73970,"Label":"6115-73970 via Ribbon Synapse from 56312 -> 73971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56312,"TargetID":73971,"Directional":true}]},{"ID":10908,"SourceStructureID":6115,"TargetStructureID":73977,"Label":"6115-73977 via BC Conventional Synapse from 73976 -> 73978","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73976,"TargetID":73978,"Directional":true}]},{"ID":10909,"SourceStructureID":6115,"TargetStructureID":73979,"Label":"6115-73979 via Ribbon Synapse from 74000 -> 74001","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74000,"TargetID":74001,"Directional":true}]},{"ID":10910,"SourceStructureID":6115,"TargetStructureID":74002,"Label":"6115-74002 via Ribbon Synapse from 74000 -> 74003","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74000,"TargetID":74003,"Directional":true}]},{"ID":10911,"SourceStructureID":6115,"TargetStructureID":74004,"Label":"6115-74004 via Ribbon Synapse from 74000 -> 74005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74000,"TargetID":74005,"Directional":true}]},{"ID":10912,"SourceStructureID":6115,"TargetStructureID":74026,"Label":"6115-74026 via Ribbon Synapse from 74025 -> 74031","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74025,"TargetID":74031,"Directional":true}]},{"ID":10913,"SourceStructureID":6115,"TargetStructureID":74028,"Label":"6115-74028 via Ribbon Synapse from 74025 -> 74032","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74025,"TargetID":74032,"Directional":true}]},{"ID":10914,"SourceStructureID":6115,"TargetStructureID":74029,"Label":"6115-74029 via Ribbon Synapse from 74025 -> 74030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74025,"TargetID":74030,"Directional":true}]},{"ID":10915,"SourceStructureID":6115,"TargetStructureID":74045,"Label":"6115-74045 via Ribbon Synapse from 74060 -> 74062","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74060,"TargetID":74062,"Directional":true}]},{"ID":10916,"SourceStructureID":6115,"TargetStructureID":74046,"Label":"6115-74046 via Ribbon Synapse from 74060 -> 74061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74060,"TargetID":74061,"Directional":true}]},{"ID":10917,"SourceStructureID":6115,"TargetStructureID":74067,"Label":"6115-74067 via Ribbon Synapse from 74063 -> 74068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74063,"TargetID":74068,"Directional":true}]},{"ID":10918,"SourceStructureID":6115,"TargetStructureID":74073,"Label":"6115-74073 via Unknown from 74071 -> 74074","Type":"Unknown","Directional":true,"Links":[{"SourceID":74071,"TargetID":74074,"Directional":true}]},{"ID":10919,"SourceStructureID":6115,"TargetStructureID":74075,"Label":"6115-74075 via Ribbon Synapse from 56315 -> 74076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56315,"TargetID":74076,"Directional":true}]},{"ID":10920,"SourceStructureID":6115,"TargetStructureID":74077,"Label":"6115-74077 via Ribbon Synapse from 56315 -> 74078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56315,"TargetID":74078,"Directional":true}]},{"ID":10921,"SourceStructureID":6115,"TargetStructureID":74086,"Label":"6115-74086 via Ribbon Synapse from 74083 -> 74090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74083,"TargetID":74090,"Directional":true}]},{"ID":10922,"SourceStructureID":6115,"TargetStructureID":74087,"Label":"6115-74087 via Ribbon Synapse from 74083 -> 74091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74083,"TargetID":74091,"Directional":true}]},{"ID":10923,"SourceStructureID":6115,"TargetStructureID":74088,"Label":"6115-74088 via Ribbon Synapse from 74083 -> 74089","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74083,"TargetID":74089,"Directional":true}]},{"ID":10924,"SourceStructureID":6115,"TargetStructureID":74165,"Label":"6115-74165 via Ribbon Synapse from 74164 -> 74166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74164,"TargetID":74166,"Directional":true}]},{"ID":10925,"SourceStructureID":6115,"TargetStructureID":74177,"Label":"6115-74177 via Ribbon Synapse from 74174 -> 74179","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74174,"TargetID":74179,"Directional":true}]},{"ID":10926,"SourceStructureID":6115,"TargetStructureID":74187,"Label":"6115-74187 via Ribbon Synapse from 74188 -> 74189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74188,"TargetID":74189,"Directional":true}]},{"ID":10927,"SourceStructureID":6115,"TargetStructureID":74197,"Label":"6115-74197 via Ribbon Synapse from 74196 -> 74198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74196,"TargetID":74198,"Directional":true}]},{"ID":10928,"SourceStructureID":6115,"TargetStructureID":74203,"Label":"6115-74203 via Ribbon Synapse from 74202 -> 74204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74202,"TargetID":74204,"Directional":true}]},{"ID":10929,"SourceStructureID":6115,"TargetStructureID":74276,"Label":"6115-74276 via BC Conventional Synapse from 74275 -> 74277","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74275,"TargetID":74277,"Directional":true}]},{"ID":10930,"SourceStructureID":6115,"TargetStructureID":74279,"Label":"6115-74279 via BC Conventional Synapse from 74280 -> 74281","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74280,"TargetID":74281,"Directional":true}]},{"ID":10931,"SourceStructureID":6115,"TargetStructureID":74299,"Label":"6115-74299 via Ribbon Synapse from 55776 -> 74300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55776,"TargetID":74300,"Directional":true}]},{"ID":10932,"SourceStructureID":6115,"TargetStructureID":74301,"Label":"6115-74301 via Ribbon Synapse from 55776 -> 74302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55776,"TargetID":74302,"Directional":true}]},{"ID":10933,"SourceStructureID":6115,"TargetStructureID":74333,"Label":"6115-74333 via Ribbon Synapse from 55780 -> 74336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55780,"TargetID":74336,"Directional":true}]},{"ID":10934,"SourceStructureID":6115,"TargetStructureID":74334,"Label":"6115-74334 via Ribbon Synapse from 55780 -> 74335","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55780,"TargetID":74335,"Directional":true}]},{"ID":10935,"SourceStructureID":6115,"TargetStructureID":74337,"Label":"6115-74337 via Ribbon Synapse from 55779 -> 74349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55779,"TargetID":74349,"Directional":true}]},{"ID":10936,"SourceStructureID":6115,"TargetStructureID":74364,"Label":"6115-74364 via Ribbon Synapse from 55793 -> 74365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55793,"TargetID":74365,"Directional":true}]},{"ID":10937,"SourceStructureID":6115,"TargetStructureID":74366,"Label":"6115-74366 via Ribbon Synapse from 55793 -> 74367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55793,"TargetID":74367,"Directional":true}]},{"ID":10938,"SourceStructureID":6115,"TargetStructureID":74370,"Label":"6115-74370 via Ribbon Synapse from 55792 -> 74375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55792,"TargetID":74375,"Directional":true}]},{"ID":10939,"SourceStructureID":6115,"TargetStructureID":74382,"Label":"6115-74382 via Ribbon Synapse from 55792 -> 74383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55792,"TargetID":74383,"Directional":true}]},{"ID":10940,"SourceStructureID":6115,"TargetStructureID":74388,"Label":"6115-74388 via Ribbon Synapse from 55791 -> 74389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55791,"TargetID":74389,"Directional":true}]},{"ID":10941,"SourceStructureID":6115,"TargetStructureID":74396,"Label":"6115-74396 via BC Conventional Synapse from 74395 -> 74397","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74395,"TargetID":74397,"Directional":true}]},{"ID":10942,"SourceStructureID":6115,"TargetStructureID":74416,"Label":"6115-74416 via BC Conventional Synapse from 74415 -> 74417","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74415,"TargetID":74417,"Directional":true}]},{"ID":10943,"SourceStructureID":6115,"TargetStructureID":74441,"Label":"6115-74441 via Ribbon Synapse from 55785 -> 74444","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55785,"TargetID":74444,"Directional":true}]},{"ID":10944,"SourceStructureID":6115,"TargetStructureID":74448,"Label":"6115-74448 via Unknown from 75973 -> 75974","Type":"Unknown","Directional":true,"Links":[{"SourceID":75973,"TargetID":75974,"Directional":true}]},{"ID":10945,"SourceStructureID":6115,"TargetStructureID":74452,"Label":"6115-74452 via BC Conventional Synapse from 74451 -> 74453","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74451,"TargetID":74453,"Directional":true}]},{"ID":10946,"SourceStructureID":6115,"TargetStructureID":74471,"Label":"6115-74471 via Ribbon Synapse from 55775 -> 74474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55775,"TargetID":74474,"Directional":true}]},{"ID":10947,"SourceStructureID":6115,"TargetStructureID":74480,"Label":"6115-74480 via Adherens from 75873 -> 75874","Type":"Adherens","Directional":true,"Links":[{"SourceID":75873,"TargetID":75874,"Directional":true}]},{"ID":10948,"SourceStructureID":6115,"TargetStructureID":74480,"Label":"6115-74480 via BC Conventional Synapse from 74479 -> 74481","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74479,"TargetID":74481,"Directional":true}]},{"ID":10949,"SourceStructureID":6115,"TargetStructureID":74497,"Label":"6115-74497 via Ribbon Synapse from 74496 -> 74498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74496,"TargetID":74498,"Directional":true}]},{"ID":10950,"SourceStructureID":6115,"TargetStructureID":74517,"Label":"6115-74517 via Ribbon Synapse from 74516 -> 74521","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74516,"TargetID":74521,"Directional":true}]},{"ID":10951,"SourceStructureID":6115,"TargetStructureID":74519,"Label":"6115-74519 via Ribbon Synapse from 74516 -> 74520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74516,"TargetID":74520,"Directional":true}]},{"ID":10952,"SourceStructureID":6115,"TargetStructureID":74524,"Label":"6115-74524 via Ribbon Synapse from 74522 -> 74525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74522,"TargetID":74525,"Directional":true}]},{"ID":10953,"SourceStructureID":6115,"TargetStructureID":74530,"Label":"6115-74530 via BC Conventional Synapse from 74531 -> 74532","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74531,"TargetID":74532,"Directional":true}]},{"ID":10954,"SourceStructureID":6115,"TargetStructureID":74536,"Label":"6115-74536 via Ribbon Synapse from 74535 -> 74537","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74535,"TargetID":74537,"Directional":true}]},{"ID":10955,"SourceStructureID":6115,"TargetStructureID":74539,"Label":"6115-74539 via Ribbon Synapse from 74535 -> 74540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74535,"TargetID":74540,"Directional":true}]},{"ID":10956,"SourceStructureID":6115,"TargetStructureID":74683,"Label":"6115-74683 via BC Conventional Synapse from 74682 -> 74684","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":74682,"TargetID":74684,"Directional":true}]},{"ID":10957,"SourceStructureID":6115,"TargetStructureID":74699,"Label":"6115-74699 via Ribbon Synapse from 74761 -> 74768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74761,"TargetID":74768,"Directional":true}]},{"ID":10958,"SourceStructureID":6115,"TargetStructureID":74701,"Label":"6115-74701 via Ribbon Synapse from 74700 -> 74703","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74700,"TargetID":74703,"Directional":true}]},{"ID":10959,"SourceStructureID":6115,"TargetStructureID":74702,"Label":"6115-74702 via Ribbon Synapse from 74700 -> 74704","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74700,"TargetID":74704,"Directional":true}]},{"ID":10960,"SourceStructureID":6115,"TargetStructureID":74719,"Label":"6115-74719 via Unknown from 74722 -> 74723","Type":"Unknown","Directional":true,"Links":[{"SourceID":74722,"TargetID":74723,"Directional":true}]},{"ID":10961,"SourceStructureID":6115,"TargetStructureID":74728,"Label":"6115-74728 via Ribbon Synapse from 74725 -> 74729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74725,"TargetID":74729,"Directional":true}]},{"ID":10962,"SourceStructureID":6115,"TargetStructureID":74731,"Label":"6115-74731 via Ribbon Synapse from 74725 -> 74732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74725,"TargetID":74732,"Directional":true}]},{"ID":10963,"SourceStructureID":6115,"TargetStructureID":74749,"Label":"6115-74749 via BC Conventional Synapse from 80952 -> 80950","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80952,"TargetID":80950,"Directional":true}]},{"ID":10964,"SourceStructureID":6115,"TargetStructureID":74762,"Label":"6115-74762 via Ribbon Synapse from 74761 -> 74765","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74761,"TargetID":74765,"Directional":true}]},{"ID":10965,"SourceStructureID":6115,"TargetStructureID":74763,"Label":"6115-74763 via Ribbon Synapse from 74761 -> 74766","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74761,"TargetID":74766,"Directional":true}]},{"ID":10966,"SourceStructureID":6115,"TargetStructureID":74764,"Label":"6115-74764 via Ribbon Synapse from 74761 -> 74767","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74761,"TargetID":74767,"Directional":true}]},{"ID":10967,"SourceStructureID":6115,"TargetStructureID":74769,"Label":"6115-74769 via Ribbon Synapse from 74778 -> 74779","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74778,"TargetID":74779,"Directional":true}]},{"ID":10968,"SourceStructureID":6115,"TargetStructureID":74780,"Label":"6115-74780 via Ribbon Synapse from 74778 -> 74781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74778,"TargetID":74781,"Directional":true}]},{"ID":10969,"SourceStructureID":6115,"TargetStructureID":74795,"Label":"6115-74795 via Ribbon Synapse from 55774 -> 74798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55774,"TargetID":74798,"Directional":true}]},{"ID":10970,"SourceStructureID":6115,"TargetStructureID":74797,"Label":"6115-74797 via Ribbon Synapse from 55774 -> 74799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55774,"TargetID":74799,"Directional":true}]},{"ID":10971,"SourceStructureID":6115,"TargetStructureID":74815,"Label":"6115-74815 via Ribbon Synapse from 55771 -> 74822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55771,"TargetID":74822,"Directional":true}]},{"ID":10972,"SourceStructureID":6115,"TargetStructureID":74818,"Label":"6115-74818 via Ribbon Synapse from 55771 -> 74820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55771,"TargetID":74820,"Directional":true}]},{"ID":10973,"SourceStructureID":6115,"TargetStructureID":74819,"Label":"6115-74819 via Ribbon Synapse from 55771 -> 74821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55771,"TargetID":74821,"Directional":true}]},{"ID":10974,"SourceStructureID":6115,"TargetStructureID":74825,"Label":"6115-74825 via Ribbon Synapse from 55840 -> 74826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55840,"TargetID":74826,"Directional":true}]},{"ID":10975,"SourceStructureID":6115,"TargetStructureID":74828,"Label":"6115-74828 via Ribbon Synapse from 55773 -> 74829","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55773,"TargetID":74829,"Directional":true}]},{"ID":10976,"SourceStructureID":6115,"TargetStructureID":74843,"Label":"6115-74843 via Ribbon Synapse from 55770 -> 74844","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55770,"TargetID":74844,"Directional":true}]},{"ID":10977,"SourceStructureID":6115,"TargetStructureID":75035,"Label":"6115-75035 via BC Conventional Synapse from 75037 -> 75039","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75037,"TargetID":75039,"Directional":true}]},{"ID":10978,"SourceStructureID":6115,"TargetStructureID":75059,"Label":"6115-75059 via BC Conventional Synapse from 75060 -> 75061","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75060,"TargetID":75061,"Directional":true}]},{"ID":10979,"SourceStructureID":6115,"TargetStructureID":75065,"Label":"6115-75065 via Ribbon Synapse from 75066 -> 75067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75066,"TargetID":75067,"Directional":true}]},{"ID":10980,"SourceStructureID":6115,"TargetStructureID":75073,"Label":"6115-75073 via Ribbon Synapse from 55843 -> 75091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55843,"TargetID":75091,"Directional":true}]},{"ID":10981,"SourceStructureID":6115,"TargetStructureID":75081,"Label":"6115-75081 via Ribbon Synapse from 55757 -> 75083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55757,"TargetID":75083,"Directional":true}]},{"ID":10982,"SourceStructureID":6115,"TargetStructureID":75082,"Label":"6115-75082 via Ribbon Synapse from 55757 -> 75084","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55757,"TargetID":75084,"Directional":true}]},{"ID":10983,"SourceStructureID":6115,"TargetStructureID":75085,"Label":"6115-75085 via Ribbon Synapse from 55757 -> 75088","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55757,"TargetID":75088,"Directional":true}]},{"ID":10984,"SourceStructureID":6115,"TargetStructureID":75086,"Label":"6115-75086 via Ribbon Synapse from 55757 -> 75087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55757,"TargetID":75087,"Directional":true}]},{"ID":10985,"SourceStructureID":6115,"TargetStructureID":75089,"Label":"6115-75089 via Ribbon Synapse from 55843 -> 75090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55843,"TargetID":75090,"Directional":true}]},{"ID":10986,"SourceStructureID":6115,"TargetStructureID":75099,"Label":"6115-75099 via Ribbon Synapse from 55767 -> 75254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55767,"TargetID":75254,"Directional":true}]},{"ID":10987,"SourceStructureID":6115,"TargetStructureID":75102,"Label":"6115-75102 via Ribbon Synapse from 55756 -> 75103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55756,"TargetID":75103,"Directional":true}]},{"ID":10988,"SourceStructureID":6115,"TargetStructureID":75110,"Label":"6115-75110 via Ribbon Synapse from 55754 -> 75111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55754,"TargetID":75111,"Directional":true}]},{"ID":10989,"SourceStructureID":6115,"TargetStructureID":75112,"Label":"6115-75112 via Ribbon Synapse from 75115 -> 75122","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75115,"TargetID":75122,"Directional":true}]},{"ID":10990,"SourceStructureID":6115,"TargetStructureID":75116,"Label":"6115-75116 via Ribbon Synapse from 75115 -> 75118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75115,"TargetID":75118,"Directional":true}]},{"ID":10991,"SourceStructureID":6115,"TargetStructureID":75117,"Label":"6115-75117 via Ribbon Synapse from 75115 -> 75119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75115,"TargetID":75119,"Directional":true}]},{"ID":10992,"SourceStructureID":6115,"TargetStructureID":75120,"Label":"6115-75120 via Ribbon Synapse from 75115 -> 75121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75115,"TargetID":75121,"Directional":true}]},{"ID":10993,"SourceStructureID":6115,"TargetStructureID":75130,"Label":"6115-75130 via Ribbon Synapse from 55840 -> 74827, 82662 -> 90638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55840,"TargetID":74827,"Directional":true},{"SourceID":82662,"TargetID":90638,"Directional":true}]},{"ID":10994,"SourceStructureID":6115,"TargetStructureID":75156,"Label":"6115-75156 via Ribbon Synapse from 75155 -> 75157","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75155,"TargetID":75157,"Directional":true}]},{"ID":10995,"SourceStructureID":6115,"TargetStructureID":75158,"Label":"6115-75158 via Ribbon Synapse from 75155 -> 75159","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75155,"TargetID":75159,"Directional":true}]},{"ID":10996,"SourceStructureID":6115,"TargetStructureID":75189,"Label":"6115-75189 via Ribbon Synapse from 75188 -> 75191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75188,"TargetID":75191,"Directional":true}]},{"ID":10997,"SourceStructureID":6115,"TargetStructureID":75194,"Label":"6115-75194 via Ribbon Synapse from 75193 -> 75195","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75193,"TargetID":75195,"Directional":true}]},{"ID":10998,"SourceStructureID":6115,"TargetStructureID":75196,"Label":"6115-75196 via Ribbon Synapse from 75193 -> 75197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75193,"TargetID":75197,"Directional":true}]},{"ID":10999,"SourceStructureID":6115,"TargetStructureID":75205,"Label":"6115-75205 via BC Conventional Synapse from 75207 -> 75206","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75207,"TargetID":75206,"Directional":true}]},{"ID":11000,"SourceStructureID":6115,"TargetStructureID":75214,"Label":"6115-75214 via BC Conventional Synapse from 75215 -> 75216","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75215,"TargetID":75216,"Directional":true}]},{"ID":11001,"SourceStructureID":6115,"TargetStructureID":75223,"Label":"6115-75223 via BC Conventional Synapse from 93081 -> 93082","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93081,"TargetID":93082,"Directional":true}]},{"ID":11002,"SourceStructureID":6115,"TargetStructureID":75223,"Label":"6115-75223 via Ribbon Synapse from 55766 -> 75229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55766,"TargetID":75229,"Directional":true}]},{"ID":11003,"SourceStructureID":6115,"TargetStructureID":75227,"Label":"6115-75227 via Ribbon Synapse from 55766 -> 75228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55766,"TargetID":75228,"Directional":true}]},{"ID":11004,"SourceStructureID":6115,"TargetStructureID":75235,"Label":"6115-75235 via Ribbon Synapse from 55861 -> 75237","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55861,"TargetID":75237,"Directional":true}]},{"ID":11005,"SourceStructureID":6115,"TargetStructureID":75236,"Label":"6115-75236 via Ribbon Synapse from 55861 -> 75240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55861,"TargetID":75240,"Directional":true}]},{"ID":11006,"SourceStructureID":6115,"TargetStructureID":75246,"Label":"6115-75246 via Ribbon Synapse from 55860 -> 75247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55860,"TargetID":75247,"Directional":true}]},{"ID":11007,"SourceStructureID":6115,"TargetStructureID":75255,"Label":"6115-75255 via Ribbon Synapse from 55767 -> 75256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55767,"TargetID":75256,"Directional":true}]},{"ID":11008,"SourceStructureID":6115,"TargetStructureID":75266,"Label":"6115-75266 via Ribbon Synapse from 75002 -> 75267","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75002,"TargetID":75267,"Directional":true}]},{"ID":11009,"SourceStructureID":6115,"TargetStructureID":75268,"Label":"6115-75268 via Ribbon Synapse from 55765 -> 75270","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55765,"TargetID":75270,"Directional":true}]},{"ID":11010,"SourceStructureID":6115,"TargetStructureID":75269,"Label":"6115-75269 via Ribbon Synapse from 55765 -> 75271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55765,"TargetID":75271,"Directional":true}]},{"ID":11011,"SourceStructureID":6115,"TargetStructureID":75283,"Label":"6115-75283 via Ribbon Synapse from 134153 -> 75284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134153,"TargetID":75284,"Directional":true}]},{"ID":11012,"SourceStructureID":6115,"TargetStructureID":75285,"Label":"6115-75285 via Ribbon Synapse from 134153 -> 75286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134153,"TargetID":75286,"Directional":true}]},{"ID":11013,"SourceStructureID":6115,"TargetStructureID":75288,"Label":"6115-75288 via Ribbon Synapse from 55761 -> 75289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55761,"TargetID":75289,"Directional":true}]},{"ID":11014,"SourceStructureID":6115,"TargetStructureID":75290,"Label":"6115-75290 via Ribbon Synapse from 55761 -> 75291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55761,"TargetID":75291,"Directional":true}]},{"ID":11015,"SourceStructureID":6115,"TargetStructureID":75292,"Label":"6115-75292 via Ribbon Synapse from 55763 -> 75295","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55763,"TargetID":75295,"Directional":true}]},{"ID":11016,"SourceStructureID":6115,"TargetStructureID":75293,"Label":"6115-75293 via Ribbon Synapse from 55763 -> 75294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55763,"TargetID":75294,"Directional":true}]},{"ID":11017,"SourceStructureID":6115,"TargetStructureID":75440,"Label":"6115-75440 via Ribbon Synapse from 55763 -> 75441","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55763,"TargetID":75441,"Directional":true}]},{"ID":11018,"SourceStructureID":6115,"TargetStructureID":75446,"Label":"6115-75446 via Ribbon Synapse from 75449 -> 75451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75449,"TargetID":75451,"Directional":true}]},{"ID":11019,"SourceStructureID":6115,"TargetStructureID":75450,"Label":"6115-75450 via Ribbon Synapse from 75449 -> 75453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75449,"TargetID":75453,"Directional":true}]},{"ID":11020,"SourceStructureID":6115,"TargetStructureID":75465,"Label":"6115-75465 via Ribbon Synapse from 70310 -> 75466","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70310,"TargetID":75466,"Directional":true}]},{"ID":11021,"SourceStructureID":6115,"TargetStructureID":75467,"Label":"6115-75467 via Ribbon Synapse from 70310 -> 75468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70310,"TargetID":75468,"Directional":true}]},{"ID":11022,"SourceStructureID":6115,"TargetStructureID":75470,"Label":"6115-75470 via BC Conventional Synapse from 75469 -> 75471","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75469,"TargetID":75471,"Directional":true}]},{"ID":11023,"SourceStructureID":6115,"TargetStructureID":75472,"Label":"6115-75472 via Ribbon Synapse from 70409 -> 75473","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70409,"TargetID":75473,"Directional":true}]},{"ID":11024,"SourceStructureID":6115,"TargetStructureID":75548,"Label":"6115-75548 via Ribbon Synapse from 75547 -> 75549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75547,"TargetID":75549,"Directional":true}]},{"ID":11025,"SourceStructureID":6115,"TargetStructureID":75550,"Label":"6115-75550 via Ribbon Synapse from 75547 -> 75551","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75547,"TargetID":75551,"Directional":true}]},{"ID":11026,"SourceStructureID":6115,"TargetStructureID":75569,"Label":"6115-75569 via Ribbon Synapse from 72327 -> 75570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72327,"TargetID":75570,"Directional":true}]},{"ID":11027,"SourceStructureID":6115,"TargetStructureID":75644,"Label":"6115-75644 via Ribbon Synapse from 73171 -> 75645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73171,"TargetID":75645,"Directional":true}]},{"ID":11028,"SourceStructureID":6115,"TargetStructureID":75646,"Label":"6115-75646 via Ribbon Synapse from 72626 -> 75647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72626,"TargetID":75647,"Directional":true}]},{"ID":11029,"SourceStructureID":6115,"TargetStructureID":75648,"Label":"6115-75648 via Ribbon Synapse from 66751 -> 75651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66751,"TargetID":75651,"Directional":true}]},{"ID":11030,"SourceStructureID":6115,"TargetStructureID":75649,"Label":"6115-75649 via Ribbon Synapse from 66751 -> 75650","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66751,"TargetID":75650,"Directional":true}]},{"ID":11031,"SourceStructureID":6115,"TargetStructureID":75653,"Label":"6115-75653 via Ribbon Synapse from 75652 -> 75654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75652,"TargetID":75654,"Directional":true}]},{"ID":11032,"SourceStructureID":6115,"TargetStructureID":75672,"Label":"6115-75672 via BC Conventional Synapse from 75671 -> 75673","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":75671,"TargetID":75673,"Directional":true}]},{"ID":11033,"SourceStructureID":6115,"TargetStructureID":75674,"Label":"6115-75674 via Ribbon Synapse from 134154 -> 75675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134154,"TargetID":75675,"Directional":true}]},{"ID":11034,"SourceStructureID":6115,"TargetStructureID":75841,"Label":"6115-75841 via Ribbon Synapse from 75838 -> 75842","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75838,"TargetID":75842,"Directional":true}]},{"ID":11035,"SourceStructureID":6115,"TargetStructureID":75857,"Label":"6115-75857 via Ribbon Synapse from 75856 -> 75860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75856,"TargetID":75860,"Directional":true}]},{"ID":11036,"SourceStructureID":6115,"TargetStructureID":75861,"Label":"6115-75861 via Ribbon Synapse from 75856 -> 75862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75856,"TargetID":75862,"Directional":true}]},{"ID":11037,"SourceStructureID":6115,"TargetStructureID":75866,"Label":"6115-75866 via Ribbon Synapse from 75865 -> 75867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75865,"TargetID":75867,"Directional":true}]},{"ID":11038,"SourceStructureID":6115,"TargetStructureID":75868,"Label":"6115-75868 via Ribbon Synapse from 75865 -> 75869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75865,"TargetID":75869,"Directional":true}]},{"ID":11039,"SourceStructureID":6115,"TargetStructureID":75882,"Label":"6115-75882 via Ribbon Synapse from 55843 -> 75883","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55843,"TargetID":75883,"Directional":true}]},{"ID":11040,"SourceStructureID":6115,"TargetStructureID":75985,"Label":"6115-75985 via Ribbon Synapse from 73386 -> 75986","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73386,"TargetID":75986,"Directional":true}]},{"ID":11041,"SourceStructureID":6115,"TargetStructureID":76000,"Label":"6115-76000 via Ribbon Synapse from 73093 -> 76001","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73093,"TargetID":76001,"Directional":true}]},{"ID":11042,"SourceStructureID":6115,"TargetStructureID":76010,"Label":"6115-76010 via Ribbon Synapse from 72962 -> 76012","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72962,"TargetID":76012,"Directional":true}]},{"ID":11043,"SourceStructureID":6115,"TargetStructureID":76013,"Label":"6115-76013 via Ribbon Synapse from 55915 -> 76018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55915,"TargetID":76018,"Directional":true}]},{"ID":11044,"SourceStructureID":6115,"TargetStructureID":76014,"Label":"6115-76014 via Ribbon Synapse from 55915 -> 76017","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55915,"TargetID":76017,"Directional":true}]},{"ID":11045,"SourceStructureID":6115,"TargetStructureID":76015,"Label":"6115-76015 via Ribbon Synapse from 55915 -> 76016","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55915,"TargetID":76016,"Directional":true}]},{"ID":11046,"SourceStructureID":6115,"TargetStructureID":76024,"Label":"6115-76024 via Ribbon Synapse from 73218 -> 76025","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73218,"TargetID":76025,"Directional":true}]},{"ID":11047,"SourceStructureID":6115,"TargetStructureID":76111,"Label":"6115-76111 via Unknown from 76113 -> 76112","Type":"Unknown","Directional":true,"Links":[{"SourceID":76113,"TargetID":76112,"Directional":true}]},{"ID":11048,"SourceStructureID":6115,"TargetStructureID":76182,"Label":"6115-76182 via Ribbon Synapse from 76181 -> 76183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76181,"TargetID":76183,"Directional":true}]},{"ID":11049,"SourceStructureID":6115,"TargetStructureID":76184,"Label":"6115-76184 via Ribbon Synapse from 76181 -> 76185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76181,"TargetID":76185,"Directional":true}]},{"ID":11050,"SourceStructureID":6115,"TargetStructureID":76186,"Label":"6115-76186 via Ribbon Synapse from 76181 -> 76187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76181,"TargetID":76187,"Directional":true}]},{"ID":11051,"SourceStructureID":6115,"TargetStructureID":77677,"Label":"6115-77677 via Ribbon Synapse from 77676 -> 77678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77676,"TargetID":77678,"Directional":true}]},{"ID":11052,"SourceStructureID":6115,"TargetStructureID":78309,"Label":"6115-78309 via Ribbon Synapse from 55842 -> 78310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55842,"TargetID":78310,"Directional":true}]},{"ID":11053,"SourceStructureID":6115,"TargetStructureID":80957,"Label":"6115-80957 via Ribbon Synapse from 75188 -> 82233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75188,"TargetID":82233,"Directional":true}]},{"ID":11054,"SourceStructureID":6115,"TargetStructureID":81167,"Label":"6115-81167 via Ribbon Synapse from 74522 -> 82103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74522,"TargetID":82103,"Directional":true}]},{"ID":11055,"SourceStructureID":6115,"TargetStructureID":81337,"Label":"6115-81337 via Ribbon Synapse from 81340 -> 81339","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81340,"TargetID":81339,"Directional":true}]},{"ID":11056,"SourceStructureID":6115,"TargetStructureID":81348,"Label":"6115-81348 via Ribbon Synapse from 72305 -> 81349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72305,"TargetID":81349,"Directional":true}]},{"ID":11057,"SourceStructureID":6115,"TargetStructureID":81667,"Label":"6115-81667 via Ribbon Synapse from 55866 -> 81706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55866,"TargetID":81706,"Directional":true}]},{"ID":11058,"SourceStructureID":6115,"TargetStructureID":81964,"Label":"6115-81964 via Ribbon Synapse from 55811 -> 81965","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55811,"TargetID":81965,"Directional":true}]},{"ID":11059,"SourceStructureID":6115,"TargetStructureID":82368,"Label":"6115-82368 via BC Conventional Synapse from 72912 -> 82369","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72912,"TargetID":82369,"Directional":true}]},{"ID":11060,"SourceStructureID":6115,"TargetStructureID":82402,"Label":"6115-82402 via Ribbon Synapse from 55770 -> 82563","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55770,"TargetID":82563,"Directional":true}]},{"ID":11061,"SourceStructureID":6115,"TargetStructureID":82644,"Label":"6115-82644 via Ribbon Synapse from 77671 -> 82645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77671,"TargetID":82645,"Directional":true}]},{"ID":11062,"SourceStructureID":6115,"TargetStructureID":82653,"Label":"6115-82653 via Ribbon Synapse from 77671 -> 90630, 77672 -> 82658, 134154 -> 90719","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77671,"TargetID":90630,"Directional":true},{"SourceID":77672,"TargetID":82658,"Directional":true},{"SourceID":134154,"TargetID":90719,"Directional":true}]},{"ID":11063,"SourceStructureID":6115,"TargetStructureID":82659,"Label":"6115-82659 via Ribbon Synapse from 77672 -> 82660","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":77672,"TargetID":82660,"Directional":true}]},{"ID":11064,"SourceStructureID":6115,"TargetStructureID":82795,"Label":"6115-82795 via Ribbon Synapse from 55861 -> 82797","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55861,"TargetID":82797,"Directional":true}]},{"ID":11065,"SourceStructureID":6115,"TargetStructureID":82803,"Label":"6115-82803 via BC Conventional Synapse from 55790 -> 134149","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55790,"TargetID":134149,"Directional":true}]},{"ID":11066,"SourceStructureID":6115,"TargetStructureID":82954,"Label":"6115-82954 via Ribbon Synapse from 72244 -> 82956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72244,"TargetID":82956,"Directional":true}]},{"ID":11067,"SourceStructureID":6115,"TargetStructureID":82969,"Label":"6115-82969 via Ribbon Synapse from 72353 -> 82971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72353,"TargetID":82971,"Directional":true}]},{"ID":11068,"SourceStructureID":6115,"TargetStructureID":86246,"Label":"6115-86246 via Ribbon Synapse from 16049 -> 86247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16049,"TargetID":86247,"Directional":true}]},{"ID":11069,"SourceStructureID":6115,"TargetStructureID":90651,"Label":"6115-90651 via Ribbon Synapse from 82669 -> 90652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82669,"TargetID":90652,"Directional":true}]},{"ID":11070,"SourceStructureID":6115,"TargetStructureID":90654,"Label":"6115-90654 via Ribbon Synapse from 82669 -> 90655","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82669,"TargetID":90655,"Directional":true}]},{"ID":11071,"SourceStructureID":6117,"TargetStructureID":606,"Label":"6117-606 via Ribbon Synapse from 6967 -> 6968, 10053 -> 10052, 10056 -> 10055, 10714 -> 10709, 10715 -> 10708, 10717 -> 10706, 12318 -> 12319, 30887 -> 10713, 51326 -> 51327, 51334 -> 51335, 51530 -> 51368, 51546 -> 10718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6967,"TargetID":6968,"Directional":true},{"SourceID":10053,"TargetID":10052,"Directional":true},{"SourceID":10056,"TargetID":10055,"Directional":true},{"SourceID":10714,"TargetID":10709,"Directional":true},{"SourceID":10715,"TargetID":10708,"Directional":true},{"SourceID":10717,"TargetID":10706,"Directional":true},{"SourceID":12318,"TargetID":12319,"Directional":true},{"SourceID":30887,"TargetID":10713,"Directional":true},{"SourceID":51326,"TargetID":51327,"Directional":true},{"SourceID":51334,"TargetID":51335,"Directional":true},{"SourceID":51530,"TargetID":51368,"Directional":true},{"SourceID":51546,"TargetID":10718,"Directional":true}]},{"ID":11072,"SourceStructureID":6117,"TargetStructureID":5377,"Label":"6117-5377 via BC Conventional Synapse from 86374 -> 87085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":86374,"TargetID":87085,"Directional":true}]},{"ID":11073,"SourceStructureID":6117,"TargetStructureID":5377,"Label":"6117-5377 via Ribbon Synapse from 86400 -> 87087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86400,"TargetID":87087,"Directional":true}]},{"ID":11074,"SourceStructureID":6117,"TargetStructureID":5489,"Label":"6117-5489 via Ribbon Synapse from 85960 -> 85962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85960,"TargetID":85962,"Directional":true}]},{"ID":11075,"SourceStructureID":6117,"TargetStructureID":6300,"Label":"6117-6300 via Ribbon Synapse from 20587 -> 86241, 30902 -> 86358","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20587,"TargetID":86241,"Directional":true},{"SourceID":30902,"TargetID":86358,"Directional":true}]},{"ID":11076,"SourceStructureID":6117,"TargetStructureID":7594,"Label":"6117-7594 via Ribbon Synapse from 10717 -> 25096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10717,"TargetID":25096,"Directional":true}]},{"ID":11077,"SourceStructureID":6117,"TargetStructureID":9769,"Label":"6117-9769 via Ribbon Synapse from 6967 -> 51270, 10526 -> 12566, 10715 -> 51305, 22385 -> 84190, 30883 -> 84247, 45117 -> 45118, 51326 -> 11268, 51546 -> 84173, 54012 -> 83281, 54285 -> 23929, 58594 -> 83130, 86013 -> 86075","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6967,"TargetID":51270,"Directional":true},{"SourceID":10526,"TargetID":12566,"Directional":true},{"SourceID":10715,"TargetID":51305,"Directional":true},{"SourceID":22385,"TargetID":84190,"Directional":true},{"SourceID":30883,"TargetID":84247,"Directional":true},{"SourceID":45117,"TargetID":45118,"Directional":true},{"SourceID":51326,"TargetID":11268,"Directional":true},{"SourceID":51546,"TargetID":84173,"Directional":true},{"SourceID":54012,"TargetID":83281,"Directional":true},{"SourceID":54285,"TargetID":23929,"Directional":true},{"SourceID":58594,"TargetID":83130,"Directional":true},{"SourceID":86013,"TargetID":86075,"Directional":true}]},{"ID":11078,"SourceStructureID":6117,"TargetStructureID":15796,"Label":"6117-15796 via Ribbon Synapse from 83934 -> 83937","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83934,"TargetID":83937,"Directional":true}]},{"ID":11079,"SourceStructureID":6117,"TargetStructureID":18693,"Label":"6117-18693 via Ribbon Synapse from 84221 -> 27325","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84221,"TargetID":27325,"Directional":true}]},{"ID":11080,"SourceStructureID":6117,"TargetStructureID":30567,"Label":"6117-30567 via Ribbon Synapse from 20585 -> 32088","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20585,"TargetID":32088,"Directional":true}]},{"ID":11081,"SourceStructureID":6117,"TargetStructureID":32035,"Label":"6117-32035 via Adherens from 86085 -> 86352","Type":"Adherens","Directional":true,"Links":[{"SourceID":86085,"TargetID":86352,"Directional":true}]},{"ID":11082,"SourceStructureID":6117,"TargetStructureID":32035,"Label":"6117-32035 via Ribbon Synapse from 10526 -> 41661","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10526,"TargetID":41661,"Directional":true}]},{"ID":11083,"SourceStructureID":6117,"TargetStructureID":35811,"Label":"6117-35811 via Ribbon Synapse from 30908 -> 35846, 30922 -> 35851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30908,"TargetID":35846,"Directional":true},{"SourceID":30922,"TargetID":35851,"Directional":true}]},{"ID":11084,"SourceStructureID":6117,"TargetStructureID":35894,"Label":"6117-35894 via Ribbon Synapse from 30931 -> 35923","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30931,"TargetID":35923,"Directional":true}]},{"ID":11085,"SourceStructureID":6117,"TargetStructureID":35975,"Label":"6117-35975 via Ribbon Synapse from 30892 -> 35997, 85986 -> 85988","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30892,"TargetID":35997,"Directional":true},{"SourceID":85986,"TargetID":85988,"Directional":true}]},{"ID":11086,"SourceStructureID":6117,"TargetStructureID":40844,"Label":"6117-40844 via Ribbon Synapse from 10532 -> 40846","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10532,"TargetID":40846,"Directional":true}]},{"ID":11087,"SourceStructureID":6117,"TargetStructureID":40880,"Label":"6117-40880 via Ribbon Synapse from 121987 -> 121988","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121987,"TargetID":121988,"Directional":true}]},{"ID":11088,"SourceStructureID":6117,"TargetStructureID":45220,"Label":"6117-45220 via Ribbon Synapse from 30927 -> 86511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30927,"TargetID":86511,"Directional":true}]},{"ID":11089,"SourceStructureID":6117,"TargetStructureID":54006,"Label":"6117-54006 via Ribbon Synapse from 22385 -> 54009, 54012 -> 83283","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22385,"TargetID":54009,"Directional":true},{"SourceID":54012,"TargetID":83283,"Directional":true}]},{"ID":11090,"SourceStructureID":6117,"TargetStructureID":54078,"Label":"6117-54078 via Ribbon Synapse from 30883 -> 84246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30883,"TargetID":84246,"Directional":true}]},{"ID":11091,"SourceStructureID":6117,"TargetStructureID":54287,"Label":"6117-54287 via Ribbon Synapse from 54294 -> 54293, 85411 -> 85414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54294,"TargetID":54293,"Directional":true},{"SourceID":85411,"TargetID":85414,"Directional":true}]},{"ID":11092,"SourceStructureID":6117,"TargetStructureID":55517,"Label":"6117-55517 via Ribbon Synapse from 55577 -> 55578, 55593 -> 55592","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55577,"TargetID":55578,"Directional":true},{"SourceID":55593,"TargetID":55592,"Directional":true}]},{"ID":11093,"SourceStructureID":6117,"TargetStructureID":56841,"Label":"6117-56841 via Ribbon Synapse from 83944 -> 83948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83944,"TargetID":83948,"Directional":true}]},{"ID":11094,"SourceStructureID":6117,"TargetStructureID":58592,"Label":"6117-58592 via Ribbon Synapse from 20573 -> 86144, 30908 -> 58639, 30916 -> 58640, 58594 -> 83129","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20573,"TargetID":86144,"Directional":true},{"SourceID":30908,"TargetID":58639,"Directional":true},{"SourceID":30916,"TargetID":58640,"Directional":true},{"SourceID":58594,"TargetID":83129,"Directional":true}]},{"ID":11095,"SourceStructureID":6117,"TargetStructureID":58687,"Label":"6117-58687 via Ribbon Synapse from 85999 -> 86006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85999,"TargetID":86006,"Directional":true}]},{"ID":11096,"SourceStructureID":6117,"TargetStructureID":58691,"Label":"6117-58691 via Ribbon Synapse from 10539 -> 84935, 84859 -> 84865, 84959 -> 84961, 84964 -> 84967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10539,"TargetID":84935,"Directional":true},{"SourceID":84859,"TargetID":84865,"Directional":true},{"SourceID":84959,"TargetID":84961,"Directional":true},{"SourceID":84964,"TargetID":84967,"Directional":true}]},{"ID":11097,"SourceStructureID":6117,"TargetStructureID":58714,"Label":"6117-58714 via Ribbon Synapse from 20573 -> 86142, 30910 -> 86414, 30916 -> 86484, 58731 -> 58730","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20573,"TargetID":86142,"Directional":true},{"SourceID":30910,"TargetID":86414,"Directional":true},{"SourceID":30916,"TargetID":86484,"Directional":true},{"SourceID":58731,"TargetID":58730,"Directional":true}]},{"ID":11098,"SourceStructureID":6117,"TargetStructureID":58723,"Label":"6117-58723 via Ribbon Synapse from 20570 -> 58727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20570,"TargetID":58727,"Directional":true}]},{"ID":11099,"SourceStructureID":6117,"TargetStructureID":58741,"Label":"6117-58741 via Ribbon Synapse from 30911 -> 58743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30911,"TargetID":58743,"Directional":true}]},{"ID":11100,"SourceStructureID":6117,"TargetStructureID":58775,"Label":"6117-58775 via Ribbon Synapse from 30917 -> 58776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30917,"TargetID":58776,"Directional":true}]},{"ID":11101,"SourceStructureID":6117,"TargetStructureID":58777,"Label":"6117-58777 via Ribbon Synapse from 30927 -> 58778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30927,"TargetID":58778,"Directional":true}]},{"ID":11102,"SourceStructureID":6117,"TargetStructureID":58816,"Label":"6117-58816 via Ribbon Synapse from 85986 -> 85987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85986,"TargetID":85987,"Directional":true}]},{"ID":11103,"SourceStructureID":6117,"TargetStructureID":58825,"Label":"6117-58825 via Ribbon Synapse from 58811 -> 58826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58811,"TargetID":58826,"Directional":true}]},{"ID":11104,"SourceStructureID":6117,"TargetStructureID":59008,"Label":"6117-59008 via Ribbon Synapse from 58811 -> 59010","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58811,"TargetID":59010,"Directional":true}]},{"ID":11105,"SourceStructureID":6117,"TargetStructureID":59482,"Label":"6117-59482 via Ribbon Synapse from 51530 -> 84654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51530,"TargetID":84654,"Directional":true}]},{"ID":11106,"SourceStructureID":6117,"TargetStructureID":66374,"Label":"6117-66374 via Ribbon Synapse from 30879 -> 66377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30879,"TargetID":66377,"Directional":true}]},{"ID":11107,"SourceStructureID":6117,"TargetStructureID":66523,"Label":"6117-66523 via Ribbon Synapse from 30869 -> 77928","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30869,"TargetID":77928,"Directional":true}]},{"ID":11108,"SourceStructureID":6117,"TargetStructureID":68539,"Label":"6117-68539 via Ribbon Synapse from 84371 -> 84381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84371,"TargetID":84381,"Directional":true}]},{"ID":11109,"SourceStructureID":6117,"TargetStructureID":70388,"Label":"6117-70388 via Ribbon Synapse from 70387 -> 70389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70387,"TargetID":70389,"Directional":true}]},{"ID":11110,"SourceStructureID":6117,"TargetStructureID":70454,"Label":"6117-70454 via Ribbon Synapse from 84198 -> 89562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84198,"TargetID":89562,"Directional":true}]},{"ID":11111,"SourceStructureID":6117,"TargetStructureID":70460,"Label":"6117-70460 via Ribbon Synapse from 30885 -> 70461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30885,"TargetID":70461,"Directional":true}]},{"ID":11112,"SourceStructureID":6117,"TargetStructureID":70476,"Label":"6117-70476 via Ribbon Synapse from 30934 -> 70477","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30934,"TargetID":70477,"Directional":true}]},{"ID":11113,"SourceStructureID":6117,"TargetStructureID":75583,"Label":"6117-75583 via Ribbon Synapse from 83209 -> 83210","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83209,"TargetID":83210,"Directional":true}]},{"ID":11114,"SourceStructureID":6117,"TargetStructureID":82704,"Label":"6117-82704 via Ribbon Synapse from 20577 -> 86181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20577,"TargetID":86181,"Directional":true}]},{"ID":11115,"SourceStructureID":6117,"TargetStructureID":83147,"Label":"6117-83147 via Ribbon Synapse from 83150 -> 83153","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83150,"TargetID":83153,"Directional":true}]},{"ID":11116,"SourceStructureID":6117,"TargetStructureID":83157,"Label":"6117-83157 via Ribbon Synapse from 83196 -> 83198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83196,"TargetID":83198,"Directional":true}]},{"ID":11117,"SourceStructureID":6117,"TargetStructureID":83161,"Label":"6117-83161 via Ribbon Synapse from 83196 -> 83197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83196,"TargetID":83197,"Directional":true}]},{"ID":11118,"SourceStructureID":6117,"TargetStructureID":83163,"Label":"6117-83163 via Ribbon Synapse from 83146 -> 83164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83146,"TargetID":83164,"Directional":true}]},{"ID":11119,"SourceStructureID":6117,"TargetStructureID":83165,"Label":"6117-83165 via Ribbon Synapse from 83146 -> 83166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83146,"TargetID":83166,"Directional":true}]},{"ID":11120,"SourceStructureID":6117,"TargetStructureID":83186,"Label":"6117-83186 via Ribbon Synapse from 83146 -> 83188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83146,"TargetID":83188,"Directional":true}]},{"ID":11121,"SourceStructureID":6117,"TargetStructureID":83204,"Label":"6117-83204 via Ribbon Synapse from 30888 -> 83207","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30888,"TargetID":83207,"Directional":true}]},{"ID":11122,"SourceStructureID":6117,"TargetStructureID":83205,"Label":"6117-83205 via Ribbon Synapse from 30888 -> 83208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30888,"TargetID":83208,"Directional":true}]},{"ID":11123,"SourceStructureID":6117,"TargetStructureID":83211,"Label":"6117-83211 via Ribbon Synapse from 83209 -> 83212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83209,"TargetID":83212,"Directional":true}]},{"ID":11124,"SourceStructureID":6117,"TargetStructureID":83214,"Label":"6117-83214 via Ribbon Synapse from 83209 -> 83215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83209,"TargetID":83215,"Directional":true}]},{"ID":11125,"SourceStructureID":6117,"TargetStructureID":83246,"Label":"6117-83246 via Ribbon Synapse from 30925 -> 83247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30925,"TargetID":83247,"Directional":true}]},{"ID":11126,"SourceStructureID":6117,"TargetStructureID":83248,"Label":"6117-83248 via Ribbon Synapse from 30925 -> 83249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30925,"TargetID":83249,"Directional":true}]},{"ID":11127,"SourceStructureID":6117,"TargetStructureID":83253,"Label":"6117-83253 via Ribbon Synapse from 83252 -> 83254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83252,"TargetID":83254,"Directional":true}]},{"ID":11128,"SourceStructureID":6117,"TargetStructureID":83255,"Label":"6117-83255 via Ribbon Synapse from 83252 -> 83256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83252,"TargetID":83256,"Directional":true}]},{"ID":11129,"SourceStructureID":6117,"TargetStructureID":83270,"Label":"6117-83270 via Ribbon Synapse from 30867 -> 83271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30867,"TargetID":83271,"Directional":true}]},{"ID":11130,"SourceStructureID":6117,"TargetStructureID":83272,"Label":"6117-83272 via Ribbon Synapse from 30867 -> 83273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30867,"TargetID":83273,"Directional":true}]},{"ID":11131,"SourceStructureID":6117,"TargetStructureID":83282,"Label":"6117-83282 via Ribbon Synapse from 54012 -> 83284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54012,"TargetID":83284,"Directional":true}]},{"ID":11132,"SourceStructureID":6117,"TargetStructureID":83288,"Label":"6117-83288 via Ribbon Synapse from 30869 -> 83289","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30869,"TargetID":83289,"Directional":true}]},{"ID":11133,"SourceStructureID":6117,"TargetStructureID":83290,"Label":"6117-83290 via Ribbon Synapse from 30869 -> 83291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30869,"TargetID":83291,"Directional":true}]},{"ID":11134,"SourceStructureID":6117,"TargetStructureID":83935,"Label":"6117-83935 via Ribbon Synapse from 83934 -> 83936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83934,"TargetID":83936,"Directional":true}]},{"ID":11135,"SourceStructureID":6117,"TargetStructureID":83949,"Label":"6117-83949 via Ribbon Synapse from 83944 -> 83950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83944,"TargetID":83950,"Directional":true}]},{"ID":11136,"SourceStructureID":6117,"TargetStructureID":83951,"Label":"6117-83951 via Ribbon Synapse from 83944 -> 83952","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83944,"TargetID":83952,"Directional":true}]},{"ID":11137,"SourceStructureID":6117,"TargetStructureID":83963,"Label":"6117-83963 via Ribbon Synapse from 10717 -> 83964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10717,"TargetID":83964,"Directional":true}]},{"ID":11138,"SourceStructureID":6117,"TargetStructureID":83972,"Label":"6117-83972 via Ribbon Synapse from 83971 -> 83973","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83971,"TargetID":83973,"Directional":true}]},{"ID":11139,"SourceStructureID":6117,"TargetStructureID":83974,"Label":"6117-83974 via Ribbon Synapse from 30871 -> 83977","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30871,"TargetID":83977,"Directional":true}]},{"ID":11140,"SourceStructureID":6117,"TargetStructureID":83975,"Label":"6117-83975 via Ribbon Synapse from 30871 -> 83976","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30871,"TargetID":83976,"Directional":true}]},{"ID":11141,"SourceStructureID":6117,"TargetStructureID":84136,"Label":"6117-84136 via Ribbon Synapse from 51546 -> 84139","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51546,"TargetID":84139,"Directional":true}]},{"ID":11142,"SourceStructureID":6117,"TargetStructureID":84151,"Label":"6117-84151 via Ribbon Synapse from 84153 -> 84154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84153,"TargetID":84154,"Directional":true}]},{"ID":11143,"SourceStructureID":6117,"TargetStructureID":84165,"Label":"6117-84165 via Ribbon Synapse from 45117 -> 84166","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45117,"TargetID":84166,"Directional":true}]},{"ID":11144,"SourceStructureID":6117,"TargetStructureID":84188,"Label":"6117-84188 via Ribbon Synapse from 22385 -> 84189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22385,"TargetID":84189,"Directional":true}]},{"ID":11145,"SourceStructureID":6117,"TargetStructureID":84201,"Label":"6117-84201 via Ribbon Synapse from 84198 -> 84202","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84198,"TargetID":84202,"Directional":true}]},{"ID":11146,"SourceStructureID":6117,"TargetStructureID":84203,"Label":"6117-84203 via Ribbon Synapse from 22389 -> 84204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22389,"TargetID":84204,"Directional":true}]},{"ID":11147,"SourceStructureID":6117,"TargetStructureID":84205,"Label":"6117-84205 via Ribbon Synapse from 22389 -> 84206","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22389,"TargetID":84206,"Directional":true}]},{"ID":11148,"SourceStructureID":6117,"TargetStructureID":84222,"Label":"6117-84222 via Ribbon Synapse from 30875 -> 84223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30875,"TargetID":84223,"Directional":true}]},{"ID":11149,"SourceStructureID":6117,"TargetStructureID":84228,"Label":"6117-84228 via Ribbon Synapse from 30880 -> 84231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30880,"TargetID":84231,"Directional":true}]},{"ID":11150,"SourceStructureID":6117,"TargetStructureID":84229,"Label":"6117-84229 via Ribbon Synapse from 30880 -> 84230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30880,"TargetID":84230,"Directional":true}]},{"ID":11151,"SourceStructureID":6117,"TargetStructureID":84237,"Label":"6117-84237 via Ribbon Synapse from 30884 -> 84250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30884,"TargetID":84250,"Directional":true}]},{"ID":11152,"SourceStructureID":6117,"TargetStructureID":84238,"Label":"6117-84238 via Ribbon Synapse from 30884 -> 84249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30884,"TargetID":84249,"Directional":true}]},{"ID":11153,"SourceStructureID":6117,"TargetStructureID":84256,"Label":"6117-84256 via Ribbon Synapse from 84213 -> 84257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84213,"TargetID":84257,"Directional":true}]},{"ID":11154,"SourceStructureID":6117,"TargetStructureID":84482,"Label":"6117-84482 via Ribbon Synapse from 51326 -> 84484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51326,"TargetID":84484,"Directional":true}]},{"ID":11155,"SourceStructureID":6117,"TargetStructureID":84650,"Label":"6117-84650 via Ribbon Synapse from 84646 -> 84651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84646,"TargetID":84651,"Directional":true}]},{"ID":11156,"SourceStructureID":6117,"TargetStructureID":84652,"Label":"6117-84652 via Ribbon Synapse from 84646 -> 84653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84646,"TargetID":84653,"Directional":true}]},{"ID":11157,"SourceStructureID":6117,"TargetStructureID":84790,"Label":"6117-84790 via Ribbon Synapse from 10529 -> 84856, 10539 -> 84932","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10529,"TargetID":84856,"Directional":true},{"SourceID":10539,"TargetID":84932,"Directional":true}]},{"ID":11158,"SourceStructureID":6117,"TargetStructureID":84858,"Label":"6117-84858 via Ribbon Synapse from 84859 -> 84860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84859,"TargetID":84860,"Directional":true}]},{"ID":11159,"SourceStructureID":6117,"TargetStructureID":84861,"Label":"6117-84861 via Ribbon Synapse from 84859 -> 84862","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84859,"TargetID":84862,"Directional":true}]},{"ID":11160,"SourceStructureID":6117,"TargetStructureID":84948,"Label":"6117-84948 via Ribbon Synapse from 30895 -> 84949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30895,"TargetID":84949,"Directional":true}]},{"ID":11161,"SourceStructureID":6117,"TargetStructureID":84950,"Label":"6117-84950 via Ribbon Synapse from 30891 -> 84952","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30891,"TargetID":84952,"Directional":true}]},{"ID":11162,"SourceStructureID":6117,"TargetStructureID":84957,"Label":"6117-84957 via BC Conventional Synapse from 86093 -> 86094","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":86093,"TargetID":86094,"Directional":true}]},{"ID":11163,"SourceStructureID":6117,"TargetStructureID":84957,"Label":"6117-84957 via Ribbon Synapse from 84959 -> 84960","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84959,"TargetID":84960,"Directional":true}]},{"ID":11164,"SourceStructureID":6117,"TargetStructureID":84965,"Label":"6117-84965 via Ribbon Synapse from 84964 -> 84966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84964,"TargetID":84966,"Directional":true}]},{"ID":11165,"SourceStructureID":6117,"TargetStructureID":85013,"Label":"6117-85013 via Ribbon Synapse from 85012 -> 85014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85012,"TargetID":85014,"Directional":true}]},{"ID":11166,"SourceStructureID":6117,"TargetStructureID":85015,"Label":"6117-85015 via Ribbon Synapse from 30899 -> 85283","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30899,"TargetID":85283,"Directional":true}]},{"ID":11167,"SourceStructureID":6117,"TargetStructureID":85235,"Label":"6117-85235 via Ribbon Synapse from 85223 -> 85238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85223,"TargetID":85238,"Directional":true}]},{"ID":11168,"SourceStructureID":6117,"TargetStructureID":85239,"Label":"6117-85239 via Ribbon Synapse from 30897 -> 85242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30897,"TargetID":85242,"Directional":true}]},{"ID":11169,"SourceStructureID":6117,"TargetStructureID":85240,"Label":"6117-85240 via Ribbon Synapse from 30897 -> 85241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30897,"TargetID":85241,"Directional":true}]},{"ID":11170,"SourceStructureID":6117,"TargetStructureID":85279,"Label":"6117-85279 via Ribbon Synapse from 30899 -> 85282, 85280 -> 85281","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30899,"TargetID":85282,"Directional":true},{"SourceID":85280,"TargetID":85281,"Directional":true}]},{"ID":11171,"SourceStructureID":6117,"TargetStructureID":85317,"Label":"6117-85317 via Ribbon Synapse from 54285 -> 85318","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54285,"TargetID":85318,"Directional":true}]},{"ID":11172,"SourceStructureID":6117,"TargetStructureID":85404,"Label":"6117-85404 via Ribbon Synapse from 85403 -> 85407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85403,"TargetID":85407,"Directional":true}]},{"ID":11173,"SourceStructureID":6117,"TargetStructureID":85405,"Label":"6117-85405 via Ribbon Synapse from 85403 -> 85406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85403,"TargetID":85406,"Directional":true}]},{"ID":11174,"SourceStructureID":6117,"TargetStructureID":85412,"Label":"6117-85412 via Ribbon Synapse from 85411 -> 85413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85411,"TargetID":85413,"Directional":true}]},{"ID":11175,"SourceStructureID":6117,"TargetStructureID":85661,"Label":"6117-85661 via Ribbon Synapse from 58803 -> 85663, 86013 -> 86076, 86074 -> 86079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58803,"TargetID":85663,"Directional":true},{"SourceID":86013,"TargetID":86076,"Directional":true},{"SourceID":86074,"TargetID":86079,"Directional":true}]},{"ID":11176,"SourceStructureID":6117,"TargetStructureID":85891,"Label":"6117-85891 via Ribbon Synapse from 58804 -> 85923, 58806 -> 85894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58804,"TargetID":85923,"Directional":true},{"SourceID":58806,"TargetID":85894,"Directional":true}]},{"ID":11177,"SourceStructureID":6117,"TargetStructureID":85905,"Label":"6117-85905 via Ribbon Synapse from 58804 -> 85922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58804,"TargetID":85922,"Directional":true}]},{"ID":11178,"SourceStructureID":6117,"TargetStructureID":85931,"Label":"6117-85931 via Ribbon Synapse from 58805 -> 85934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58805,"TargetID":85934,"Directional":true}]},{"ID":11179,"SourceStructureID":6117,"TargetStructureID":85932,"Label":"6117-85932 via Ribbon Synapse from 58805 -> 85933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58805,"TargetID":85933,"Directional":true}]},{"ID":11180,"SourceStructureID":6117,"TargetStructureID":85955,"Label":"6117-85955 via Ribbon Synapse from 85960 -> 85961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85960,"TargetID":85961,"Directional":true}]},{"ID":11181,"SourceStructureID":6117,"TargetStructureID":85964,"Label":"6117-85964 via Ribbon Synapse from 58808 -> 85967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58808,"TargetID":85967,"Directional":true}]},{"ID":11182,"SourceStructureID":6117,"TargetStructureID":85965,"Label":"6117-85965 via Ribbon Synapse from 58808 -> 85966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58808,"TargetID":85966,"Directional":true}]},{"ID":11183,"SourceStructureID":6117,"TargetStructureID":86004,"Label":"6117-86004 via Ribbon Synapse from 85999 -> 86005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85999,"TargetID":86005,"Directional":true}]},{"ID":11184,"SourceStructureID":6117,"TargetStructureID":86010,"Label":"6117-86010 via Ribbon Synapse from 10528 -> 86011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10528,"TargetID":86011,"Directional":true}]},{"ID":11185,"SourceStructureID":6117,"TargetStructureID":86017,"Label":"6117-86017 via Ribbon Synapse from 86016 -> 86018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86016,"TargetID":86018,"Directional":true}]},{"ID":11186,"SourceStructureID":6117,"TargetStructureID":86042,"Label":"6117-86042 via Ribbon Synapse from 10534 -> 86043","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10534,"TargetID":86043,"Directional":true}]},{"ID":11187,"SourceStructureID":6117,"TargetStructureID":86070,"Label":"6117-86070 via Ribbon Synapse from 59085 -> 86071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59085,"TargetID":86071,"Directional":true}]},{"ID":11188,"SourceStructureID":6117,"TargetStructureID":86072,"Label":"6117-86072 via Ribbon Synapse from 59085 -> 86073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59085,"TargetID":86073,"Directional":true}]},{"ID":11189,"SourceStructureID":6117,"TargetStructureID":86077,"Label":"6117-86077 via Ribbon Synapse from 86074 -> 86078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86074,"TargetID":86078,"Directional":true}]},{"ID":11190,"SourceStructureID":6117,"TargetStructureID":86110,"Label":"6117-86110 via Ribbon Synapse from 20573 -> 86143, 58731 -> 86111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20573,"TargetID":86143,"Directional":true},{"SourceID":58731,"TargetID":86111,"Directional":true}]},{"ID":11191,"SourceStructureID":6117,"TargetStructureID":86114,"Label":"6117-86114 via Ribbon Synapse from 86113 -> 86117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86113,"TargetID":86117,"Directional":true}]},{"ID":11192,"SourceStructureID":6117,"TargetStructureID":86145,"Label":"6117-86145 via Ribbon Synapse from 86127 -> 86146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86127,"TargetID":86146,"Directional":true}]},{"ID":11193,"SourceStructureID":6117,"TargetStructureID":86147,"Label":"6117-86147 via Ribbon Synapse from 86127 -> 86148","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86127,"TargetID":86148,"Directional":true}]},{"ID":11194,"SourceStructureID":6117,"TargetStructureID":86149,"Label":"6117-86149 via Ribbon Synapse from 86127 -> 86150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86127,"TargetID":86150,"Directional":true}]},{"ID":11195,"SourceStructureID":6117,"TargetStructureID":86165,"Label":"6117-86165 via Ribbon Synapse from 86186 -> 86189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86186,"TargetID":86189,"Directional":true}]},{"ID":11196,"SourceStructureID":6117,"TargetStructureID":86178,"Label":"6117-86178 via Ribbon Synapse from 20577 -> 86180","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20577,"TargetID":86180,"Directional":true}]},{"ID":11197,"SourceStructureID":6117,"TargetStructureID":86182,"Label":"6117-86182 via Ribbon Synapse from 20576 -> 86183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20576,"TargetID":86183,"Directional":true}]},{"ID":11198,"SourceStructureID":6117,"TargetStructureID":86192,"Label":"6117-86192 via Ribbon Synapse from 20581 -> 86197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20581,"TargetID":86197,"Directional":true}]},{"ID":11199,"SourceStructureID":6117,"TargetStructureID":86198,"Label":"6117-86198 via Ribbon Synapse from 20581 -> 86199","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20581,"TargetID":86199,"Directional":true}]},{"ID":11200,"SourceStructureID":6117,"TargetStructureID":86201,"Label":"6117-86201 via Ribbon Synapse from 20579 -> 86203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20579,"TargetID":86203,"Directional":true}]},{"ID":11201,"SourceStructureID":6117,"TargetStructureID":86209,"Label":"6117-86209 via Ribbon Synapse from 20583 -> 86213","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20583,"TargetID":86213,"Directional":true}]},{"ID":11202,"SourceStructureID":6117,"TargetStructureID":86210,"Label":"6117-86210 via Ribbon Synapse from 20583 -> 86214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20583,"TargetID":86214,"Directional":true}]},{"ID":11203,"SourceStructureID":6117,"TargetStructureID":86211,"Label":"6117-86211 via Ribbon Synapse from 20583 -> 86212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20583,"TargetID":86212,"Directional":true}]},{"ID":11204,"SourceStructureID":6117,"TargetStructureID":86215,"Label":"6117-86215 via Ribbon Synapse from 20582 -> 86216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20582,"TargetID":86216,"Directional":true}]},{"ID":11205,"SourceStructureID":6117,"TargetStructureID":86237,"Label":"6117-86237 via Ribbon Synapse from 20585 -> 86238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20585,"TargetID":86238,"Directional":true}]},{"ID":11206,"SourceStructureID":6117,"TargetStructureID":86246,"Label":"6117-86246 via BC Conventional Synapse from 86248 -> 86249","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":86248,"TargetID":86249,"Directional":true}]},{"ID":11207,"SourceStructureID":6117,"TargetStructureID":86246,"Label":"6117-86246 via Ribbon Synapse from 20589 -> 86250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20589,"TargetID":86250,"Directional":true}]},{"ID":11208,"SourceStructureID":6117,"TargetStructureID":86254,"Label":"6117-86254 via Ribbon Synapse from 86253 -> 86255","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86253,"TargetID":86255,"Directional":true}]},{"ID":11209,"SourceStructureID":6117,"TargetStructureID":86268,"Label":"6117-86268 via Ribbon Synapse from 30933 -> 86269","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30933,"TargetID":86269,"Directional":true}]},{"ID":11210,"SourceStructureID":6117,"TargetStructureID":86272,"Label":"6117-86272 via Ribbon Synapse from 30931 -> 86273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30931,"TargetID":86273,"Directional":true}]},{"ID":11211,"SourceStructureID":6117,"TargetStructureID":86274,"Label":"6117-86274 via Ribbon Synapse from 30932 -> 86275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30932,"TargetID":86275,"Directional":true}]},{"ID":11212,"SourceStructureID":6117,"TargetStructureID":86282,"Label":"6117-86282 via BC Conventional Synapse from 86284 -> 86283, 86290 -> 86291","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":86284,"TargetID":86283,"Directional":true},{"SourceID":86290,"TargetID":86291,"Directional":true}]},{"ID":11213,"SourceStructureID":6117,"TargetStructureID":86330,"Label":"6117-86330 via Ribbon Synapse from 86336 -> 86333","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86336,"TargetID":86333,"Directional":true}]},{"ID":11214,"SourceStructureID":6117,"TargetStructureID":86334,"Label":"6117-86334 via Ribbon Synapse from 86336 -> 86337","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86336,"TargetID":86337,"Directional":true}]},{"ID":11215,"SourceStructureID":6117,"TargetStructureID":86345,"Label":"6117-86345 via Postsynapse from 86344 -> 86346","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":86344,"TargetID":86346,"Directional":true}]},{"ID":11216,"SourceStructureID":6117,"TargetStructureID":86356,"Label":"6117-86356 via Ribbon Synapse from 30902 -> 86357","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30902,"TargetID":86357,"Directional":true}]},{"ID":11217,"SourceStructureID":6117,"TargetStructureID":86366,"Label":"6117-86366 via Ribbon Synapse from 30907 -> 86406, 86365 -> 86367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30907,"TargetID":86406,"Directional":true},{"SourceID":86365,"TargetID":86367,"Directional":true}]},{"ID":11218,"SourceStructureID":6117,"TargetStructureID":86383,"Label":"6117-86383 via Ribbon Synapse from 30930 -> 86384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30930,"TargetID":86384,"Directional":true}]},{"ID":11219,"SourceStructureID":6117,"TargetStructureID":86385,"Label":"6117-86385 via Ribbon Synapse from 30930 -> 86386","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30930,"TargetID":86386,"Directional":true}]},{"ID":11220,"SourceStructureID":6117,"TargetStructureID":86391,"Label":"6117-86391 via Ribbon Synapse from 30906 -> 86394","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30906,"TargetID":86394,"Directional":true}]},{"ID":11221,"SourceStructureID":6117,"TargetStructureID":86395,"Label":"6117-86395 via Ribbon Synapse from 30906 -> 86396","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30906,"TargetID":86396,"Directional":true}]},{"ID":11222,"SourceStructureID":6117,"TargetStructureID":86397,"Label":"6117-86397 via Ribbon Synapse from 86400 -> 86401","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86400,"TargetID":86401,"Directional":true}]},{"ID":11223,"SourceStructureID":6117,"TargetStructureID":86402,"Label":"6117-86402 via Ribbon Synapse from 86400 -> 86403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86400,"TargetID":86403,"Directional":true}]},{"ID":11224,"SourceStructureID":6117,"TargetStructureID":86412,"Label":"6117-86412 via Ribbon Synapse from 30910 -> 86413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30910,"TargetID":86413,"Directional":true}]},{"ID":11225,"SourceStructureID":6117,"TargetStructureID":86418,"Label":"6117-86418 via Ribbon Synapse from 30911 -> 86419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30911,"TargetID":86419,"Directional":true}]},{"ID":11226,"SourceStructureID":6117,"TargetStructureID":86422,"Label":"6117-86422 via Ribbon Synapse from 30913 -> 86423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30913,"TargetID":86423,"Directional":true}]},{"ID":11227,"SourceStructureID":6117,"TargetStructureID":86435,"Label":"6117-86435 via Ribbon Synapse from 30914 -> 86436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30914,"TargetID":86436,"Directional":true}]},{"ID":11228,"SourceStructureID":6117,"TargetStructureID":86444,"Label":"6117-86444 via Ribbon Synapse from 86443 -> 86446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86443,"TargetID":86446,"Directional":true}]},{"ID":11229,"SourceStructureID":6117,"TargetStructureID":86449,"Label":"6117-86449 via Ribbon Synapse from 86443 -> 86452","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86443,"TargetID":86452,"Directional":true}]},{"ID":11230,"SourceStructureID":6117,"TargetStructureID":86462,"Label":"6117-86462 via Ribbon Synapse from 30929 -> 86463","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30929,"TargetID":86463,"Directional":true}]},{"ID":11231,"SourceStructureID":6117,"TargetStructureID":86464,"Label":"6117-86464 via Ribbon Synapse from 30929 -> 86465","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30929,"TargetID":86465,"Directional":true}]},{"ID":11232,"SourceStructureID":6117,"TargetStructureID":86466,"Label":"6117-86466 via Ribbon Synapse from 30929 -> 86467","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30929,"TargetID":86467,"Directional":true}]},{"ID":11233,"SourceStructureID":6117,"TargetStructureID":86479,"Label":"6117-86479 via Ribbon Synapse from 30916 -> 86480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30916,"TargetID":86480,"Directional":true}]},{"ID":11234,"SourceStructureID":6117,"TargetStructureID":86502,"Label":"6117-86502 via Ribbon Synapse from 30917 -> 86503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30917,"TargetID":86503,"Directional":true}]},{"ID":11235,"SourceStructureID":6117,"TargetStructureID":86516,"Label":"6117-86516 via Ribbon Synapse from 30928 -> 86517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30928,"TargetID":86517,"Directional":true}]},{"ID":11236,"SourceStructureID":6117,"TargetStructureID":86518,"Label":"6117-86518 via Ribbon Synapse from 30928 -> 86519","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30928,"TargetID":86519,"Directional":true}]},{"ID":11237,"SourceStructureID":6117,"TargetStructureID":86565,"Label":"6117-86565 via Ribbon Synapse from 86090 -> 86566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":86090,"TargetID":86566,"Directional":true}]},{"ID":11238,"SourceStructureID":6117,"TargetStructureID":86607,"Label":"6117-86607 via Ribbon Synapse from 30922 -> 86618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30922,"TargetID":86618,"Directional":true}]},{"ID":11239,"SourceStructureID":6118,"TargetStructureID":5107,"Label":"6118-5107 via Ribbon Synapse from 120673 -> 120671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":120673,"TargetID":120671,"Directional":true}]},{"ID":11240,"SourceStructureID":6118,"TargetStructureID":65020,"Label":"6118-65020 via Ribbon Synapse from 65026 -> 65022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65026,"TargetID":65022,"Directional":true}]},{"ID":11241,"SourceStructureID":6118,"TargetStructureID":65023,"Label":"6118-65023 via Ribbon Synapse from 65033 -> 65034","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65033,"TargetID":65034,"Directional":true}]},{"ID":11242,"SourceStructureID":6118,"TargetStructureID":65035,"Label":"6118-65035 via Ribbon Synapse from 65033 -> 65036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65033,"TargetID":65036,"Directional":true}]},{"ID":11243,"SourceStructureID":6118,"TargetStructureID":65047,"Label":"6118-65047 via Ribbon Synapse from 65026 -> 65048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65026,"TargetID":65048,"Directional":true}]},{"ID":11244,"SourceStructureID":6118,"TargetStructureID":136700,"Label":"6118-136700 via BC Conventional Synapse from 136699 -> 136701","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":136699,"TargetID":136701,"Directional":true}]},{"ID":11245,"SourceStructureID":6120,"TargetStructureID":598,"Label":"6120-598 via Ribbon Synapse from 61176 -> 111236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61176,"TargetID":111236,"Directional":true}]},{"ID":11246,"SourceStructureID":6120,"TargetStructureID":606,"Label":"6120-606 via Ribbon Synapse from 51491 -> 51492, 51495 -> 51496, 51500 -> 51502, 51505 -> 51504, 51519 -> 50969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51491,"TargetID":51492,"Directional":true},{"SourceID":51495,"TargetID":51496,"Directional":true},{"SourceID":51500,"TargetID":51502,"Directional":true},{"SourceID":51505,"TargetID":51504,"Directional":true},{"SourceID":51519,"TargetID":50969,"Directional":true}]},{"ID":11247,"SourceStructureID":6120,"TargetStructureID":5107,"Label":"6120-5107 via Ribbon Synapse from 111678 -> 111682","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111678,"TargetID":111682,"Directional":true}]},{"ID":11248,"SourceStructureID":6120,"TargetStructureID":7594,"Label":"6120-7594 via Ribbon Synapse from 111246 -> 25084, 111669 -> 111675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111246,"TargetID":25084,"Directional":true},{"SourceID":111669,"TargetID":111675,"Directional":true}]},{"ID":11249,"SourceStructureID":6120,"TargetStructureID":9769,"Label":"6120-9769 via Ribbon Synapse from 30179 -> 30167, 51519 -> 30166, 61191 -> 111484","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30179,"TargetID":30167,"Directional":true},{"SourceID":51519,"TargetID":30166,"Directional":true},{"SourceID":61191,"TargetID":111484,"Directional":true}]},{"ID":11250,"SourceStructureID":6120,"TargetStructureID":16073,"Label":"6120-16073 via Ribbon Synapse from 61177 -> 111254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61177,"TargetID":111254,"Directional":true}]},{"ID":11251,"SourceStructureID":6120,"TargetStructureID":31334,"Label":"6120-31334 via Ribbon Synapse from 98734 -> 98733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":98734,"TargetID":98733,"Directional":true}]},{"ID":11252,"SourceStructureID":6120,"TargetStructureID":32477,"Label":"6120-32477 via Ribbon Synapse from 32506 -> 32504, 101195 -> 101197","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32506,"TargetID":32504,"Directional":true},{"SourceID":101195,"TargetID":101197,"Directional":true}]},{"ID":11253,"SourceStructureID":6120,"TargetStructureID":35367,"Label":"6120-35367 via Ribbon Synapse from 51500 -> 110754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51500,"TargetID":110754,"Directional":true}]},{"ID":11254,"SourceStructureID":6120,"TargetStructureID":52410,"Label":"6120-52410 via Ribbon Synapse from 37240 -> 52416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37240,"TargetID":52416,"Directional":true}]},{"ID":11255,"SourceStructureID":6120,"TargetStructureID":60491,"Label":"6120-60491 via Ribbon Synapse from 60489 -> 60493","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60489,"TargetID":60493,"Directional":true}]},{"ID":11256,"SourceStructureID":6120,"TargetStructureID":60494,"Label":"6120-60494 via Ribbon Synapse from 32506 -> 60495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32506,"TargetID":60495,"Directional":true}]},{"ID":11257,"SourceStructureID":6120,"TargetStructureID":64923,"Label":"6120-64923 via Ribbon Synapse from 64929 -> 64928","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64929,"TargetID":64928,"Directional":true}]},{"ID":11258,"SourceStructureID":6120,"TargetStructureID":68539,"Label":"6120-68539 via BC Conventional Synapse from 111725 -> 111726","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111725,"TargetID":111726,"Directional":true}]},{"ID":11259,"SourceStructureID":6120,"TargetStructureID":68539,"Label":"6120-68539 via Ribbon Synapse from 110765 -> 69140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110765,"TargetID":69140,"Directional":true}]},{"ID":11260,"SourceStructureID":6120,"TargetStructureID":87428,"Label":"6120-87428 via Ribbon Synapse from 111408 -> 111409","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111408,"TargetID":111409,"Directional":true}]},{"ID":11261,"SourceStructureID":6120,"TargetStructureID":89124,"Label":"6120-89124 via Ribbon Synapse from 110549 -> 89342","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110549,"TargetID":89342,"Directional":true}]},{"ID":11262,"SourceStructureID":6120,"TargetStructureID":101184,"Label":"6120-101184 via Ribbon Synapse from 51519 -> 111488","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51519,"TargetID":111488,"Directional":true}]},{"ID":11263,"SourceStructureID":6120,"TargetStructureID":110493,"Label":"6120-110493 via Cistern Pre from 37229 -> 110495","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37229,"TargetID":110495,"Directional":true}]},{"ID":11264,"SourceStructureID":6120,"TargetStructureID":110499,"Label":"6120-110499 via BC Conventional Synapse from 37234 -> 110500","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":37234,"TargetID":110500,"Directional":true}]},{"ID":11265,"SourceStructureID":6120,"TargetStructureID":110501,"Label":"6120-110501 via Ribbon Synapse from 37235 -> 110502","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37235,"TargetID":110502,"Directional":true}]},{"ID":11266,"SourceStructureID":6120,"TargetStructureID":110503,"Label":"6120-110503 via Ribbon Synapse from 37237 -> 110504","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37237,"TargetID":110504,"Directional":true}]},{"ID":11267,"SourceStructureID":6120,"TargetStructureID":110506,"Label":"6120-110506 via Ribbon Synapse from 37237 -> 110507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37237,"TargetID":110507,"Directional":true}]},{"ID":11268,"SourceStructureID":6120,"TargetStructureID":110510,"Label":"6120-110510 via BC Conventional Synapse from 110508 -> 110511","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110508,"TargetID":110511,"Directional":true}]},{"ID":11269,"SourceStructureID":6120,"TargetStructureID":110512,"Label":"6120-110512 via Ribbon Synapse from 37238 -> 110513","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37238,"TargetID":110513,"Directional":true}]},{"ID":11270,"SourceStructureID":6120,"TargetStructureID":110516,"Label":"6120-110516 via Ribbon Synapse from 37240 -> 110517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37240,"TargetID":110517,"Directional":true}]},{"ID":11271,"SourceStructureID":6120,"TargetStructureID":110547,"Label":"6120-110547 via Ribbon Synapse from 110546 -> 110548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110546,"TargetID":110548,"Directional":true}]},{"ID":11272,"SourceStructureID":6120,"TargetStructureID":110557,"Label":"6120-110557 via Ribbon Synapse from 110549 -> 110558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110549,"TargetID":110558,"Directional":true}]},{"ID":11273,"SourceStructureID":6120,"TargetStructureID":110567,"Label":"6120-110567 via Ribbon Synapse from 37245 -> 110569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37245,"TargetID":110569,"Directional":true}]},{"ID":11274,"SourceStructureID":6120,"TargetStructureID":110570,"Label":"6120-110570 via Ribbon Synapse from 37244 -> 110571","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37244,"TargetID":110571,"Directional":true}]},{"ID":11275,"SourceStructureID":6120,"TargetStructureID":110583,"Label":"6120-110583 via Ribbon Synapse from 37248 -> 110585","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37248,"TargetID":110585,"Directional":true}]},{"ID":11276,"SourceStructureID":6120,"TargetStructureID":110586,"Label":"6120-110586 via Ribbon Synapse from 37248 -> 110587","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37248,"TargetID":110587,"Directional":true}]},{"ID":11277,"SourceStructureID":6120,"TargetStructureID":110595,"Label":"6120-110595 via Ribbon Synapse from 37250 -> 110596","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37250,"TargetID":110596,"Directional":true}]},{"ID":11278,"SourceStructureID":6120,"TargetStructureID":110607,"Label":"6120-110607 via BC Conventional Synapse from 110577 -> 110576","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110577,"TargetID":110576,"Directional":true}]},{"ID":11279,"SourceStructureID":6120,"TargetStructureID":110610,"Label":"6120-110610 via Ribbon Synapse from 110612 -> 110613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110612,"TargetID":110613,"Directional":true}]},{"ID":11280,"SourceStructureID":6120,"TargetStructureID":110614,"Label":"6120-110614 via Ribbon Synapse from 110612 -> 110615","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110612,"TargetID":110615,"Directional":true}]},{"ID":11281,"SourceStructureID":6120,"TargetStructureID":110622,"Label":"6120-110622 via Ribbon Synapse from 110632 -> 110634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110632,"TargetID":110634,"Directional":true}]},{"ID":11282,"SourceStructureID":6120,"TargetStructureID":110623,"Label":"6120-110623 via Ribbon Synapse from 110632 -> 110633","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110632,"TargetID":110633,"Directional":true}]},{"ID":11283,"SourceStructureID":6120,"TargetStructureID":110641,"Label":"6120-110641 via Ribbon Synapse from 110639 -> 110642","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110639,"TargetID":110642,"Directional":true}]},{"ID":11284,"SourceStructureID":6120,"TargetStructureID":110644,"Label":"6120-110644 via Ribbon Synapse from 110635 -> 110645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110635,"TargetID":110645,"Directional":true}]},{"ID":11285,"SourceStructureID":6120,"TargetStructureID":110731,"Label":"6120-110731 via Ribbon Synapse from 61163 -> 110732, 61164 -> 110733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61163,"TargetID":110732,"Directional":true},{"SourceID":61164,"TargetID":110733,"Directional":true}]},{"ID":11286,"SourceStructureID":6120,"TargetStructureID":110734,"Label":"6120-110734 via Ribbon Synapse from 61164 -> 110777","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61164,"TargetID":110777,"Directional":true}]},{"ID":11287,"SourceStructureID":6120,"TargetStructureID":110738,"Label":"6120-110738 via Ribbon Synapse from 61163 -> 110739","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61163,"TargetID":110739,"Directional":true}]},{"ID":11288,"SourceStructureID":6120,"TargetStructureID":110747,"Label":"6120-110747 via BC Conventional Synapse from 110746 -> 110748","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110746,"TargetID":110748,"Directional":true}]},{"ID":11289,"SourceStructureID":6120,"TargetStructureID":110758,"Label":"6120-110758 via BC Conventional Synapse from 110757 -> 110759","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110757,"TargetID":110759,"Directional":true}]},{"ID":11290,"SourceStructureID":6120,"TargetStructureID":110760,"Label":"6120-110760 via Ribbon Synapse from 51501 -> 110761","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51501,"TargetID":110761,"Directional":true}]},{"ID":11291,"SourceStructureID":6120,"TargetStructureID":110762,"Label":"6120-110762 via Ribbon Synapse from 51501 -> 110781","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51501,"TargetID":110781,"Directional":true}]},{"ID":11292,"SourceStructureID":6120,"TargetStructureID":110763,"Label":"6120-110763 via Ribbon Synapse from 61163 -> 110764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61163,"TargetID":110764,"Directional":true}]},{"ID":11293,"SourceStructureID":6120,"TargetStructureID":110793,"Label":"6120-110793 via Ribbon Synapse from 110789 -> 110795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110789,"TargetID":110795,"Directional":true}]},{"ID":11294,"SourceStructureID":6120,"TargetStructureID":110798,"Label":"6120-110798 via Ribbon Synapse from 61160 -> 110799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61160,"TargetID":110799,"Directional":true}]},{"ID":11295,"SourceStructureID":6120,"TargetStructureID":110812,"Label":"6120-110812 via BC Conventional Synapse from 110811 -> 110813","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110811,"TargetID":110813,"Directional":true}]},{"ID":11296,"SourceStructureID":6120,"TargetStructureID":110814,"Label":"6120-110814 via Ribbon Synapse from 61156 -> 110815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61156,"TargetID":110815,"Directional":true}]},{"ID":11297,"SourceStructureID":6120,"TargetStructureID":110816,"Label":"6120-110816 via BC Conventional Synapse from 110855 -> 110858","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110855,"TargetID":110858,"Directional":true}]},{"ID":11298,"SourceStructureID":6120,"TargetStructureID":110816,"Label":"6120-110816 via Ribbon Synapse from 61156 -> 110817","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61156,"TargetID":110817,"Directional":true}]},{"ID":11299,"SourceStructureID":6120,"TargetStructureID":110835,"Label":"6120-110835 via Ribbon Synapse from 110827 -> 110836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110827,"TargetID":110836,"Directional":true}]},{"ID":11300,"SourceStructureID":6120,"TargetStructureID":110860,"Label":"6120-110860 via Ribbon Synapse from 51491 -> 110863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51491,"TargetID":110863,"Directional":true}]},{"ID":11301,"SourceStructureID":6120,"TargetStructureID":110869,"Label":"6120-110869 via Ribbon Synapse from 61145 -> 110870","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61145,"TargetID":110870,"Directional":true}]},{"ID":11302,"SourceStructureID":6120,"TargetStructureID":110875,"Label":"6120-110875 via BC Conventional Synapse from 110991 -> 110993","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110991,"TargetID":110993,"Directional":true}]},{"ID":11303,"SourceStructureID":6120,"TargetStructureID":110997,"Label":"6120-110997 via Ribbon Synapse from 61146 -> 110998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61146,"TargetID":110998,"Directional":true}]},{"ID":11304,"SourceStructureID":6120,"TargetStructureID":110999,"Label":"6120-110999 via Ribbon Synapse from 61146 -> 111000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61146,"TargetID":111000,"Directional":true}]},{"ID":11305,"SourceStructureID":6120,"TargetStructureID":111012,"Label":"6120-111012 via BC Conventional Synapse from 111011 -> 111013","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111011,"TargetID":111013,"Directional":true}]},{"ID":11306,"SourceStructureID":6120,"TargetStructureID":111026,"Label":"6120-111026 via Ribbon Synapse from 61148 -> 111028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61148,"TargetID":111028,"Directional":true}]},{"ID":11307,"SourceStructureID":6120,"TargetStructureID":111029,"Label":"6120-111029 via Ribbon Synapse from 61148 -> 111030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61148,"TargetID":111030,"Directional":true}]},{"ID":11308,"SourceStructureID":6120,"TargetStructureID":111033,"Label":"6120-111033 via Ribbon Synapse from 61128 -> 111034","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61128,"TargetID":111034,"Directional":true}]},{"ID":11309,"SourceStructureID":6120,"TargetStructureID":111035,"Label":"6120-111035 via Ribbon Synapse from 61128 -> 111036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61128,"TargetID":111036,"Directional":true}]},{"ID":11310,"SourceStructureID":6120,"TargetStructureID":111044,"Label":"6120-111044 via Ribbon Synapse from 61128 -> 111045","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61128,"TargetID":111045,"Directional":true}]},{"ID":11311,"SourceStructureID":6120,"TargetStructureID":111092,"Label":"6120-111092 via BC Conventional Synapse from 111091 -> 111093","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111091,"TargetID":111093,"Directional":true}]},{"ID":11312,"SourceStructureID":6120,"TargetStructureID":111110,"Label":"6120-111110 via Ribbon Synapse from 61143 -> 111120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61143,"TargetID":111120,"Directional":true}]},{"ID":11313,"SourceStructureID":6120,"TargetStructureID":111111,"Label":"6120-111111 via BC Conventional Synapse from 111113 -> 111114","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111113,"TargetID":111114,"Directional":true}]},{"ID":11314,"SourceStructureID":6120,"TargetStructureID":111111,"Label":"6120-111111 via Ribbon Synapse from 61143 -> 111115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61143,"TargetID":111115,"Directional":true}]},{"ID":11315,"SourceStructureID":6120,"TargetStructureID":111117,"Label":"6120-111117 via BC Conventional Synapse from 111116 -> 111119","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111116,"TargetID":111119,"Directional":true}]},{"ID":11316,"SourceStructureID":6120,"TargetStructureID":111126,"Label":"6120-111126 via Ribbon Synapse from 111125 -> 111127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111125,"TargetID":111127,"Directional":true}]},{"ID":11317,"SourceStructureID":6120,"TargetStructureID":111135,"Label":"6120-111135 via Ribbon Synapse from 61176 -> 111136, 111141 -> 111250, 111246 -> 111245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61176,"TargetID":111136,"Directional":true},{"SourceID":111141,"TargetID":111250,"Directional":true},{"SourceID":111246,"TargetID":111245,"Directional":true}]},{"ID":11318,"SourceStructureID":6120,"TargetStructureID":111139,"Label":"6120-111139 via Ribbon Synapse from 111137 -> 111140","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111137,"TargetID":111140,"Directional":true}]},{"ID":11319,"SourceStructureID":6120,"TargetStructureID":111216,"Label":"6120-111216 via Ribbon Synapse from 61180 -> 111217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61180,"TargetID":111217,"Directional":true}]},{"ID":11320,"SourceStructureID":6120,"TargetStructureID":111221,"Label":"6120-111221 via Ribbon Synapse from 61180 -> 111222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61180,"TargetID":111222,"Directional":true}]},{"ID":11321,"SourceStructureID":6120,"TargetStructureID":111231,"Label":"6120-111231 via Ribbon Synapse from 57389 -> 111285","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57389,"TargetID":111285,"Directional":true}]},{"ID":11322,"SourceStructureID":6120,"TargetStructureID":111235,"Label":"6120-111235 via Ribbon Synapse from 61176 -> 111237","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61176,"TargetID":111237,"Directional":true}]},{"ID":11323,"SourceStructureID":6120,"TargetStructureID":111238,"Label":"6120-111238 via Ribbon Synapse from 111141 -> 111239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111141,"TargetID":111239,"Directional":true}]},{"ID":11324,"SourceStructureID":6120,"TargetStructureID":111251,"Label":"6120-111251 via Ribbon Synapse from 61177 -> 111252","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61177,"TargetID":111252,"Directional":true}]},{"ID":11325,"SourceStructureID":6120,"TargetStructureID":111260,"Label":"6120-111260 via Ribbon Synapse from 111258 -> 111262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111258,"TargetID":111262,"Directional":true}]},{"ID":11326,"SourceStructureID":6120,"TargetStructureID":111269,"Label":"6120-111269 via Ribbon Synapse from 57383 -> 111274, 111353 -> 111355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57383,"TargetID":111274,"Directional":true},{"SourceID":111353,"TargetID":111355,"Directional":true}]},{"ID":11327,"SourceStructureID":6120,"TargetStructureID":111286,"Label":"6120-111286 via Ribbon Synapse from 57389 -> 111287","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57389,"TargetID":111287,"Directional":true}]},{"ID":11328,"SourceStructureID":6120,"TargetStructureID":111292,"Label":"6120-111292 via BC Conventional Synapse from 111291 -> 111293","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111291,"TargetID":111293,"Directional":true}]},{"ID":11329,"SourceStructureID":6120,"TargetStructureID":111351,"Label":"6120-111351 via BC Conventional Synapse from 111350 -> 111352","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111350,"TargetID":111352,"Directional":true}]},{"ID":11330,"SourceStructureID":6120,"TargetStructureID":111356,"Label":"6120-111356 via Ribbon Synapse from 111353 -> 111359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111353,"TargetID":111359,"Directional":true}]},{"ID":11331,"SourceStructureID":6120,"TargetStructureID":111377,"Label":"6120-111377 via BC Conventional Synapse from 111376 -> 111378","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111376,"TargetID":111378,"Directional":true}]},{"ID":11332,"SourceStructureID":6120,"TargetStructureID":111399,"Label":"6120-111399 via BC Conventional Synapse from 111398 -> 111400","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111398,"TargetID":111400,"Directional":true}]},{"ID":11333,"SourceStructureID":6120,"TargetStructureID":111485,"Label":"6120-111485 via Ribbon Synapse from 61191 -> 111489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61191,"TargetID":111489,"Directional":true}]},{"ID":11334,"SourceStructureID":6120,"TargetStructureID":111503,"Label":"6120-111503 via BC Conventional Synapse from 111495 -> 111504","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111495,"TargetID":111504,"Directional":true}]},{"ID":11335,"SourceStructureID":6120,"TargetStructureID":111515,"Label":"6120-111515 via Ribbon Synapse from 61186 -> 111517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61186,"TargetID":111517,"Directional":true}]},{"ID":11336,"SourceStructureID":6120,"TargetStructureID":111518,"Label":"6120-111518 via BC Conventional Synapse from 111520 -> 111519","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111520,"TargetID":111519,"Directional":true}]},{"ID":11337,"SourceStructureID":6120,"TargetStructureID":111521,"Label":"6120-111521 via Ribbon Synapse from 61186 -> 111522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61186,"TargetID":111522,"Directional":true}]},{"ID":11338,"SourceStructureID":6120,"TargetStructureID":111523,"Label":"6120-111523 via Ribbon Synapse from 61197 -> 111524","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61197,"TargetID":111524,"Directional":true}]},{"ID":11339,"SourceStructureID":6120,"TargetStructureID":111525,"Label":"6120-111525 via Ribbon Synapse from 61197 -> 111526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61197,"TargetID":111526,"Directional":true}]},{"ID":11340,"SourceStructureID":6120,"TargetStructureID":111533,"Label":"6120-111533 via Ribbon Synapse from 61188 -> 111534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61188,"TargetID":111534,"Directional":true}]},{"ID":11341,"SourceStructureID":6120,"TargetStructureID":111553,"Label":"6120-111553 via Ribbon Synapse from 64929 -> 111554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64929,"TargetID":111554,"Directional":true}]},{"ID":11342,"SourceStructureID":6120,"TargetStructureID":111557,"Label":"6120-111557 via Ribbon Synapse from 64929 -> 111558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64929,"TargetID":111558,"Directional":true}]},{"ID":11343,"SourceStructureID":6120,"TargetStructureID":111563,"Label":"6120-111563 via Ribbon Synapse from 111561 -> 111565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111561,"TargetID":111565,"Directional":true}]},{"ID":11344,"SourceStructureID":6120,"TargetStructureID":111564,"Label":"6120-111564 via Ribbon Synapse from 111561 -> 111566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111561,"TargetID":111566,"Directional":true}]},{"ID":11345,"SourceStructureID":6120,"TargetStructureID":111580,"Label":"6120-111580 via Ribbon Synapse from 52428 -> 111582","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52428,"TargetID":111582,"Directional":true}]},{"ID":11346,"SourceStructureID":6120,"TargetStructureID":111662,"Label":"6120-111662 via Ribbon Synapse from 111661 -> 111663","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111661,"TargetID":111663,"Directional":true}]},{"ID":11347,"SourceStructureID":6120,"TargetStructureID":111672,"Label":"6120-111672 via Ribbon Synapse from 111669 -> 111674","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111669,"TargetID":111674,"Directional":true}]},{"ID":11348,"SourceStructureID":6120,"TargetStructureID":111677,"Label":"6120-111677 via Ribbon Synapse from 111678 -> 111681","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111678,"TargetID":111681,"Directional":true}]},{"ID":11349,"SourceStructureID":6120,"TargetStructureID":111684,"Label":"6120-111684 via BC Conventional Synapse from 111683 -> 111685","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111683,"TargetID":111685,"Directional":true}]},{"ID":11350,"SourceStructureID":6120,"TargetStructureID":111691,"Label":"6120-111691 via BC Conventional Synapse from 111690 -> 111692","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111690,"TargetID":111692,"Directional":true}]},{"ID":11351,"SourceStructureID":6120,"TargetStructureID":111698,"Label":"6120-111698 via Ribbon Synapse from 111678 -> 111700","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111678,"TargetID":111700,"Directional":true}]},{"ID":11352,"SourceStructureID":6120,"TargetStructureID":111708,"Label":"6120-111708 via Ribbon Synapse from 111707 -> 111710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111707,"TargetID":111710,"Directional":true}]},{"ID":11353,"SourceStructureID":6120,"TargetStructureID":111713,"Label":"6120-111713 via Ribbon Synapse from 111706 -> 111714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111706,"TargetID":111714,"Directional":true}]},{"ID":11354,"SourceStructureID":6120,"TargetStructureID":111718,"Label":"6120-111718 via BC Conventional Synapse from 111705 -> 111719","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111705,"TargetID":111719,"Directional":true}]},{"ID":11355,"SourceStructureID":6120,"TargetStructureID":111723,"Label":"6120-111723 via BC Conventional Synapse from 111722 -> 111724","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111722,"TargetID":111724,"Directional":true}]},{"ID":11356,"SourceStructureID":6120,"TargetStructureID":111732,"Label":"6120-111732 via Ribbon Synapse from 111731 -> 111733","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111731,"TargetID":111733,"Directional":true}]},{"ID":11357,"SourceStructureID":6120,"TargetStructureID":111866,"Label":"6120-111866 via Ribbon Synapse from 30179 -> 111867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30179,"TargetID":111867,"Directional":true}]},{"ID":11358,"SourceStructureID":6120,"TargetStructureID":111890,"Label":"6120-111890 via Ribbon Synapse from 111865 -> 111891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":111865,"TargetID":111891,"Directional":true}]},{"ID":11359,"SourceStructureID":6120,"TargetStructureID":111894,"Label":"6120-111894 via BC Conventional Synapse from 111893 -> 111895","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":111893,"TargetID":111895,"Directional":true}]},{"ID":11360,"SourceStructureID":6121,"TargetStructureID":5107,"Label":"6121-5107 via Ribbon Synapse from 65010 -> 65009, 65055 -> 65054, 65065 -> 65060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65010,"TargetID":65009,"Directional":true},{"SourceID":65055,"TargetID":65054,"Directional":true},{"SourceID":65065,"TargetID":65060,"Directional":true}]},{"ID":11361,"SourceStructureID":6121,"TargetStructureID":5405,"Label":"6121-5405 via Ribbon Synapse from 40014 -> 40015, 52276 -> 42945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40014,"TargetID":40015,"Directional":true},{"SourceID":52276,"TargetID":42945,"Directional":true}]},{"ID":11362,"SourceStructureID":6121,"TargetStructureID":7134,"Label":"6121-7134 via Ribbon Synapse from 53462 -> 53457, 53492 -> 53489, 53493 -> 53494, 53497 -> 53496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53462,"TargetID":53457,"Directional":true},{"SourceID":53492,"TargetID":53489,"Directional":true},{"SourceID":53493,"TargetID":53494,"Directional":true},{"SourceID":53497,"TargetID":53496,"Directional":true}]},{"ID":11363,"SourceStructureID":6121,"TargetStructureID":9769,"Label":"6121-9769 via Ribbon Synapse from 30183 -> 30165, 52577 -> 52579","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30183,"TargetID":30165,"Directional":true},{"SourceID":52577,"TargetID":52579,"Directional":true}]},{"ID":11364,"SourceStructureID":6121,"TargetStructureID":16073,"Label":"6121-16073 via BC Conventional Synapse from 125214 -> 125215","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125214,"TargetID":125215,"Directional":true}]},{"ID":11365,"SourceStructureID":6121,"TargetStructureID":22974,"Label":"6121-22974 via Ribbon Synapse from 125226 -> 125228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":125226,"TargetID":125228,"Directional":true}]},{"ID":11366,"SourceStructureID":6121,"TargetStructureID":30130,"Label":"6121-30130 via Ribbon Synapse from 30327 -> 30326","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30327,"TargetID":30326,"Directional":true}]},{"ID":11367,"SourceStructureID":6121,"TargetStructureID":52262,"Label":"6121-52262 via Ribbon Synapse from 52275 -> 52272","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52275,"TargetID":52272,"Directional":true}]},{"ID":11368,"SourceStructureID":6121,"TargetStructureID":52410,"Label":"6121-52410 via Ribbon Synapse from 30183 -> 52411","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30183,"TargetID":52411,"Directional":true}]},{"ID":11369,"SourceStructureID":6121,"TargetStructureID":53991,"Label":"6121-53991 via Ribbon Synapse from 52577 -> 53995","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52577,"TargetID":53995,"Directional":true}]},{"ID":11370,"SourceStructureID":6121,"TargetStructureID":64923,"Label":"6121-64923 via Ribbon Synapse from 64927 -> 64926, 123563 -> 123562","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64927,"TargetID":64926,"Directional":true},{"SourceID":123563,"TargetID":123562,"Directional":true}]},{"ID":11371,"SourceStructureID":6121,"TargetStructureID":68539,"Label":"6121-68539 via BC Conventional Synapse from 120720 -> 120721","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120720,"TargetID":120721,"Directional":true}]},{"ID":11372,"SourceStructureID":6121,"TargetStructureID":110997,"Label":"6121-110997 via BC Conventional Synapse from 125283 -> 125282","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":125283,"TargetID":125282,"Directional":true}]},{"ID":11373,"SourceStructureID":6121,"TargetStructureID":111539,"Label":"6121-111539 via Ribbon Synapse from 127707 -> 127708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127707,"TargetID":127708,"Directional":true}]},{"ID":11374,"SourceStructureID":6123,"TargetStructureID":606,"Label":"6123-606 via Ribbon Synapse from 47239 -> 47238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47239,"TargetID":47238,"Directional":true}]},{"ID":11375,"SourceStructureID":6123,"TargetStructureID":71517,"Label":"6123-71517 via Ribbon Synapse from 47891 -> 71540, 47993 -> 72151, 47994 -> 74924, 48017 -> 76999, 48020 -> 74919, 74928 -> 74929","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47891,"TargetID":71540,"Directional":true},{"SourceID":47993,"TargetID":72151,"Directional":true},{"SourceID":47994,"TargetID":74924,"Directional":true},{"SourceID":48017,"TargetID":76999,"Directional":true},{"SourceID":48020,"TargetID":74919,"Directional":true},{"SourceID":74928,"TargetID":74929,"Directional":true}]},{"ID":11376,"SourceStructureID":6123,"TargetStructureID":134954,"Label":"6123-134954 via Ribbon Synapse from 47860 -> 135436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47860,"TargetID":135436,"Directional":true}]},{"ID":11377,"SourceStructureID":6123,"TargetStructureID":148300,"Label":"6123-148300 via Ribbon Synapse from 148298 -> 148301, 148304 -> 148301","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148298,"TargetID":148301,"Directional":true},{"SourceID":148304,"TargetID":148301,"Directional":true}]},{"ID":11378,"SourceStructureID":6123,"TargetStructureID":148302,"Label":"6123-148302 via Ribbon Synapse from 148298 -> 148303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148298,"TargetID":148303,"Directional":true}]},{"ID":11379,"SourceStructureID":6125,"TargetStructureID":608,"Label":"6125-608 via BC Conventional Synapse from 31206 -> 31199","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":31206,"TargetID":31199,"Directional":true}]},{"ID":11380,"SourceStructureID":6125,"TargetStructureID":5150,"Label":"6125-5150 via Ribbon Synapse from 131351 -> 5249, 131352 -> 5249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131351,"TargetID":5249,"Directional":true},{"SourceID":131352,"TargetID":5249,"Directional":true}]},{"ID":11381,"SourceStructureID":6125,"TargetStructureID":7951,"Label":"6125-7951 via Ribbon Synapse from 31204 -> 31205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31204,"TargetID":31205,"Directional":true}]},{"ID":11382,"SourceStructureID":6125,"TargetStructureID":34761,"Label":"6125-34761 via Ribbon Synapse from 34773 -> 34771","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34773,"TargetID":34771,"Directional":true}]},{"ID":11383,"SourceStructureID":6127,"TargetStructureID":34847,"Label":"6127-34847 via Ribbon Synapse from 34865 -> 34863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34865,"TargetID":34863,"Directional":true}]},{"ID":11384,"SourceStructureID":6127,"TargetStructureID":35653,"Label":"6127-35653 via Ribbon Synapse from 35665 -> 35664","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35665,"TargetID":35664,"Directional":true}]},{"ID":11385,"SourceStructureID":6127,"TargetStructureID":84118,"Label":"6127-84118 via Ribbon Synapse from 123614 -> 123616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123614,"TargetID":123616,"Directional":true}]},{"ID":11386,"SourceStructureID":6128,"TargetStructureID":7225,"Label":"6128-7225 via Ribbon Synapse from 21178 -> 88400","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21178,"TargetID":88400,"Directional":true}]},{"ID":11387,"SourceStructureID":6128,"TargetStructureID":7461,"Label":"6128-7461 via Ribbon Synapse from 20997 -> 30472, 33735 -> 30467","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20997,"TargetID":30472,"Directional":true},{"SourceID":33735,"TargetID":30467,"Directional":true}]},{"ID":11388,"SourceStructureID":6128,"TargetStructureID":7859,"Label":"6128-7859 via Ribbon Synapse from 84732 -> 84731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84732,"TargetID":84731,"Directional":true}]},{"ID":11389,"SourceStructureID":6128,"TargetStructureID":28950,"Label":"6128-28950 via Ribbon Synapse from 21016 -> 29043, 21017 -> 29043","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21016,"TargetID":29043,"Directional":true},{"SourceID":21017,"TargetID":29043,"Directional":true}]},{"ID":11390,"SourceStructureID":6128,"TargetStructureID":30015,"Label":"6128-30015 via Ribbon Synapse from 20982 -> 30042","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20982,"TargetID":30042,"Directional":true}]},{"ID":11391,"SourceStructureID":6128,"TargetStructureID":31486,"Label":"6128-31486 via Ribbon Synapse from 21041 -> 31512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21041,"TargetID":31512,"Directional":true}]},{"ID":11392,"SourceStructureID":6128,"TargetStructureID":46741,"Label":"6128-46741 via BC Conventional Synapse from 137107 -> 137106, 137117 -> 137118","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":137107,"TargetID":137106,"Directional":true},{"SourceID":137117,"TargetID":137118,"Directional":true}]},{"ID":11393,"SourceStructureID":6128,"TargetStructureID":46741,"Label":"6128-46741 via Ribbon Synapse from 20992 -> 137098, 33737 -> 137094, 136966 -> 136964, 136968 -> 136969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20992,"TargetID":137098,"Directional":true},{"SourceID":33737,"TargetID":137094,"Directional":true},{"SourceID":136966,"TargetID":136964,"Directional":true},{"SourceID":136968,"TargetID":136969,"Directional":true}]},{"ID":11394,"SourceStructureID":6128,"TargetStructureID":122431,"Label":"6128-122431 via Ribbon Synapse from 20935 -> 129523","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20935,"TargetID":129523,"Directional":true}]},{"ID":11395,"SourceStructureID":6129,"TargetStructureID":5453,"Label":"6129-5453 via BC Conventional Synapse from 38870 -> 18547","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":38870,"TargetID":18547,"Directional":true}]},{"ID":11396,"SourceStructureID":6129,"TargetStructureID":5453,"Label":"6129-5453 via Ribbon Synapse from 17819 -> 18550, 18584 -> 18549, 38872 -> 18544, 38875 -> 18524, 38877 -> 18532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17819,"TargetID":18550,"Directional":true},{"SourceID":18584,"TargetID":18549,"Directional":true},{"SourceID":38872,"TargetID":18544,"Directional":true},{"SourceID":38875,"TargetID":18524,"Directional":true},{"SourceID":38877,"TargetID":18532,"Directional":true}]},{"ID":11397,"SourceStructureID":6129,"TargetStructureID":5528,"Label":"6129-5528 via Ribbon Synapse from 17850 -> 94142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17850,"TargetID":94142,"Directional":true}]},{"ID":11398,"SourceStructureID":6129,"TargetStructureID":7703,"Label":"6129-7703 via Ribbon Synapse from 17785 -> 17758, 42081 -> 26776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17785,"TargetID":17758,"Directional":true},{"SourceID":42081,"TargetID":26776,"Directional":true}]},{"ID":11399,"SourceStructureID":6129,"TargetStructureID":11238,"Label":"6129-11238 via Ribbon Synapse from 88568 -> 88528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88568,"TargetID":88528,"Directional":true}]},{"ID":11400,"SourceStructureID":6129,"TargetStructureID":64414,"Label":"6129-64414 via BC Conventional Synapse from 64424 -> 64423","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":64424,"TargetID":64423,"Directional":true}]},{"ID":11401,"SourceStructureID":6129,"TargetStructureID":88539,"Label":"6129-88539 via Ribbon Synapse from 88538 -> 88542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88538,"TargetID":88542,"Directional":true}]},{"ID":11402,"SourceStructureID":6131,"TargetStructureID":13525,"Label":"6131-13525 via Ribbon Synapse from 37331 -> 129030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37331,"TargetID":129030,"Directional":true}]},{"ID":11403,"SourceStructureID":6131,"TargetStructureID":130189,"Label":"6131-130189 via Ribbon Synapse from 37331 -> 130191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37331,"TargetID":130191,"Directional":true}]},{"ID":11404,"SourceStructureID":6132,"TargetStructureID":7225,"Label":"6132-7225 via Ribbon Synapse from 29018 -> 29031, 29028 -> 29027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29018,"TargetID":29031,"Directional":true},{"SourceID":29028,"TargetID":29027,"Directional":true}]},{"ID":11405,"SourceStructureID":6132,"TargetStructureID":7564,"Label":"6132-7564 via Ribbon Synapse from 88502 -> 88497","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88502,"TargetID":88497,"Directional":true}]},{"ID":11406,"SourceStructureID":6132,"TargetStructureID":11238,"Label":"6132-11238 via Ribbon Synapse from 88437 -> 88443, 88504 -> 88505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88437,"TargetID":88443,"Directional":true},{"SourceID":88504,"TargetID":88505,"Directional":true}]},{"ID":11407,"SourceStructureID":6132,"TargetStructureID":35681,"Label":"6132-35681 via Ribbon Synapse from 35727 -> 35726","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35727,"TargetID":35726,"Directional":true}]},{"ID":11408,"SourceStructureID":6132,"TargetStructureID":43203,"Label":"6132-43203 via Ribbon Synapse from 122036 -> 122035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122036,"TargetID":122035,"Directional":true}]},{"ID":11409,"SourceStructureID":6133,"TargetStructureID":7859,"Label":"6133-7859 via Ribbon Synapse from 84840 -> 84838","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84840,"TargetID":84838,"Directional":true}]},{"ID":11410,"SourceStructureID":6133,"TargetStructureID":8504,"Label":"6133-8504 via Ribbon Synapse from 8702 -> 8718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8702,"TargetID":8718,"Directional":true}]},{"ID":11411,"SourceStructureID":6133,"TargetStructureID":10574,"Label":"6133-10574 via Ribbon Synapse from 37405 -> 10608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37405,"TargetID":10608,"Directional":true}]},{"ID":11412,"SourceStructureID":6133,"TargetStructureID":11229,"Label":"6133-11229 via Ribbon Synapse from 37404 -> 28974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37404,"TargetID":28974,"Directional":true}]},{"ID":11413,"SourceStructureID":6133,"TargetStructureID":43205,"Label":"6133-43205 via Ribbon Synapse from 65446 -> 122086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65446,"TargetID":122086,"Directional":true}]},{"ID":11414,"SourceStructureID":6133,"TargetStructureID":96877,"Label":"6133-96877 via Ribbon Synapse from 37412 -> 131152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37412,"TargetID":131152,"Directional":true}]},{"ID":11415,"SourceStructureID":6134,"TargetStructureID":122173,"Label":"6134-122173 via Ribbon Synapse from 32473 -> 122175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32473,"TargetID":122175,"Directional":true}]},{"ID":11416,"SourceStructureID":6136,"TargetStructureID":7145,"Label":"6136-7145 via Ribbon Synapse from 10952 -> 18111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10952,"TargetID":18111,"Directional":true}]},{"ID":11417,"SourceStructureID":6136,"TargetStructureID":10371,"Label":"6136-10371 via Ribbon Synapse from 10370 -> 10373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10370,"TargetID":10373,"Directional":true}]},{"ID":11418,"SourceStructureID":6136,"TargetStructureID":56211,"Label":"6136-56211 via Ribbon Synapse from 13029 -> 85453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13029,"TargetID":85453,"Directional":true}]},{"ID":11419,"SourceStructureID":6136,"TargetStructureID":59229,"Label":"6136-59229 via Ribbon Synapse from 85560 -> 85559","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85560,"TargetID":85559,"Directional":true}]},{"ID":11420,"SourceStructureID":6138,"TargetStructureID":5464,"Label":"6138-5464 via Ribbon Synapse from 37430 -> 37431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37430,"TargetID":37431,"Directional":true}]},{"ID":11421,"SourceStructureID":6140,"TargetStructureID":29340,"Label":"6140-29340 via Ribbon Synapse from 29360 -> 29354","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29360,"TargetID":29354,"Directional":true}]},{"ID":11422,"SourceStructureID":6141,"TargetStructureID":606,"Label":"6141-606 via Ribbon Synapse from 51958 -> 51959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51958,"TargetID":51959,"Directional":true}]},{"ID":11423,"SourceStructureID":6141,"TargetStructureID":5117,"Label":"6141-5117 via Ribbon Synapse from 66359 -> 66358","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66359,"TargetID":66358,"Directional":true}]},{"ID":11424,"SourceStructureID":6141,"TargetStructureID":32513,"Label":"6141-32513 via Ribbon Synapse from 32520 -> 32516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32520,"TargetID":32516,"Directional":true}]},{"ID":11425,"SourceStructureID":6142,"TargetStructureID":8579,"Label":"6142-8579 via Ribbon Synapse from 16121 -> 62859, 27900 -> 62723, 62862 -> 62863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16121,"TargetID":62859,"Directional":true},{"SourceID":27900,"TargetID":62723,"Directional":true},{"SourceID":62862,"TargetID":62863,"Directional":true}]},{"ID":11426,"SourceStructureID":6142,"TargetStructureID":67671,"Label":"6142-67671 via Ribbon Synapse from 23334 -> 78036","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23334,"TargetID":78036,"Directional":true}]},{"ID":11427,"SourceStructureID":6142,"TargetStructureID":68539,"Label":"6142-68539 via Ribbon Synapse from 27843 -> 76069","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27843,"TargetID":76069,"Directional":true}]},{"ID":11428,"SourceStructureID":6142,"TargetStructureID":71351,"Label":"6142-71351 via Ribbon Synapse from 71682 -> 71683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71682,"TargetID":71683,"Directional":true}]},{"ID":11429,"SourceStructureID":6142,"TargetStructureID":71684,"Label":"6142-71684 via Ribbon Synapse from 71682 -> 71685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71682,"TargetID":71685,"Directional":true}]},{"ID":11430,"SourceStructureID":6142,"TargetStructureID":71686,"Label":"6142-71686 via Ribbon Synapse from 71682 -> 71687","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71682,"TargetID":71687,"Directional":true}]},{"ID":11431,"SourceStructureID":6142,"TargetStructureID":78909,"Label":"6142-78909 via Ribbon Synapse from 16119 -> 87553, 23586 -> 87551, 23587 -> 87552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16119,"TargetID":87553,"Directional":true},{"SourceID":23586,"TargetID":87551,"Directional":true},{"SourceID":23587,"TargetID":87552,"Directional":true}]},{"ID":11432,"SourceStructureID":6142,"TargetStructureID":88473,"Label":"6142-88473 via Ribbon Synapse from 27887 -> 88474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27887,"TargetID":88474,"Directional":true}]},{"ID":11433,"SourceStructureID":6142,"TargetStructureID":89336,"Label":"6142-89336 via Ribbon Synapse from 23577 -> 89338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23577,"TargetID":89338,"Directional":true}]},{"ID":11434,"SourceStructureID":6142,"TargetStructureID":89775,"Label":"6142-89775 via BC Conventional Synapse from 16116 -> 89782","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":16116,"TargetID":89782,"Directional":true}]},{"ID":11435,"SourceStructureID":6146,"TargetStructureID":5388,"Label":"6146-5388 via Ribbon Synapse from 20219 -> 20214","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20219,"TargetID":20214,"Directional":true}]},{"ID":11436,"SourceStructureID":6146,"TargetStructureID":7594,"Label":"6146-7594 via Ribbon Synapse from 38101 -> 38105","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38101,"TargetID":38105,"Directional":true}]},{"ID":11437,"SourceStructureID":6146,"TargetStructureID":8212,"Label":"6146-8212 via Cistern Pre from 38078 -> 38082","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":38078,"TargetID":38082,"Directional":true}]},{"ID":11438,"SourceStructureID":6146,"TargetStructureID":9769,"Label":"6146-9769 via Ribbon Synapse from 38101 -> 38102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38101,"TargetID":38102,"Directional":true}]},{"ID":11439,"SourceStructureID":6146,"TargetStructureID":45574,"Label":"6146-45574 via Ribbon Synapse from 131947 -> 131948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131947,"TargetID":131948,"Directional":true}]},{"ID":11440,"SourceStructureID":6146,"TargetStructureID":87419,"Label":"6146-87419 via Cistern Pre from 87418 -> 87421","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":87418,"TargetID":87421,"Directional":true}]},{"ID":11441,"SourceStructureID":6150,"TargetStructureID":6118,"Label":"6150-6118 via Cistern Pre from 37177 -> 37175","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37177,"TargetID":37175,"Directional":true}]},{"ID":11442,"SourceStructureID":6153,"TargetStructureID":325,"Label":"6153-325 via Conventional from 10726 -> 8183, 10728 -> 7027","Type":"Conventional","Directional":true,"Links":[{"SourceID":10726,"TargetID":8183,"Directional":true},{"SourceID":10728,"TargetID":7027,"Directional":true}]},{"ID":11443,"SourceStructureID":6153,"TargetStructureID":425,"Label":"6153-425 via Conventional from 39980 -> 39981","Type":"Conventional","Directional":true,"Links":[{"SourceID":39980,"TargetID":39981,"Directional":true}]},{"ID":11444,"SourceStructureID":6153,"TargetStructureID":426,"Label":"6153-426 via Conventional from 21579 -> 21586","Type":"Conventional","Directional":true,"Links":[{"SourceID":21579,"TargetID":21586,"Directional":true}]},{"ID":11445,"SourceStructureID":6153,"TargetStructureID":463,"Label":"6153-463 via Conventional from 74156 -> 74154, 74157 -> 74155, 74159 -> 74158, 74160 -> 74161","Type":"Conventional","Directional":true,"Links":[{"SourceID":74156,"TargetID":74154,"Directional":true},{"SourceID":74157,"TargetID":74155,"Directional":true},{"SourceID":74159,"TargetID":74158,"Directional":true},{"SourceID":74160,"TargetID":74161,"Directional":true}]},{"ID":11446,"SourceStructureID":6153,"TargetStructureID":476,"Label":"6153-476 via Cistern Pre from 31957 -> 31958","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":31957,"TargetID":31958,"Directional":true}]},{"ID":11447,"SourceStructureID":6153,"TargetStructureID":5150,"Label":"6153-5150 via Conventional from 15411 -> 5268, 15421 -> 15418","Type":"Conventional","Directional":true,"Links":[{"SourceID":15411,"TargetID":5268,"Directional":true},{"SourceID":15421,"TargetID":15418,"Directional":true}]},{"ID":11448,"SourceStructureID":6153,"TargetStructureID":5351,"Label":"6153-5351 via Conventional from 24123 -> 24122","Type":"Conventional","Directional":true,"Links":[{"SourceID":24123,"TargetID":24122,"Directional":true}]},{"ID":11449,"SourceStructureID":6155,"TargetStructureID":289,"Label":"6155-289 via Ribbon Synapse from 56649 -> 56647","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56649,"TargetID":56647,"Directional":true}]},{"ID":11450,"SourceStructureID":6155,"TargetStructureID":2064,"Label":"6155-2064 via Ribbon Synapse from 15525 -> 13189","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15525,"TargetID":13189,"Directional":true}]},{"ID":11451,"SourceStructureID":6155,"TargetStructureID":6300,"Label":"6155-6300 via Ribbon Synapse from 15381 -> 104888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15381,"TargetID":104888,"Directional":true}]},{"ID":11452,"SourceStructureID":6155,"TargetStructureID":7594,"Label":"6155-7594 via Ribbon Synapse from 15511 -> 107869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15511,"TargetID":107869,"Directional":true}]},{"ID":11453,"SourceStructureID":6155,"TargetStructureID":8720,"Label":"6155-8720 via Cistern Pre from 24083 -> 24100","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":24083,"TargetID":24100,"Directional":true}]},{"ID":11454,"SourceStructureID":6155,"TargetStructureID":9769,"Label":"6155-9769 via Ribbon Synapse from 15767 -> 29811","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15767,"TargetID":29811,"Directional":true}]},{"ID":11455,"SourceStructureID":6155,"TargetStructureID":18693,"Label":"6155-18693 via Ribbon Synapse from 56650 -> 33803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56650,"TargetID":33803,"Directional":true}]},{"ID":11456,"SourceStructureID":6155,"TargetStructureID":36421,"Label":"6155-36421 via Ribbon Synapse from 34785 -> 36436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34785,"TargetID":36436,"Directional":true}]},{"ID":11457,"SourceStructureID":6155,"TargetStructureID":47104,"Label":"6155-47104 via Ribbon Synapse from 15510 -> 107878, 15511 -> 47125","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15510,"TargetID":107878,"Directional":true},{"SourceID":15511,"TargetID":47125,"Directional":true}]},{"ID":11458,"SourceStructureID":6155,"TargetStructureID":48612,"Label":"6155-48612 via Ribbon Synapse from 15761 -> 48621","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15761,"TargetID":48621,"Directional":true}]},{"ID":11459,"SourceStructureID":6155,"TargetStructureID":104886,"Label":"6155-104886 via Ribbon Synapse from 15381 -> 104887","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15381,"TargetID":104887,"Directional":true}]},{"ID":11460,"SourceStructureID":6155,"TargetStructureID":104893,"Label":"6155-104893 via Ribbon Synapse from 104892 -> 104894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104892,"TargetID":104894,"Directional":true}]},{"ID":11461,"SourceStructureID":6155,"TargetStructureID":104952,"Label":"6155-104952 via Ribbon Synapse from 15606 -> 104953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15606,"TargetID":104953,"Directional":true}]},{"ID":11462,"SourceStructureID":6155,"TargetStructureID":104957,"Label":"6155-104957 via Ribbon Synapse from 15607 -> 104958","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15607,"TargetID":104958,"Directional":true}]},{"ID":11463,"SourceStructureID":6155,"TargetStructureID":104959,"Label":"6155-104959 via Ribbon Synapse from 15607 -> 104960","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15607,"TargetID":104960,"Directional":true}]},{"ID":11464,"SourceStructureID":6155,"TargetStructureID":104963,"Label":"6155-104963 via Ribbon Synapse from 48319 -> 104964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48319,"TargetID":104964,"Directional":true}]},{"ID":11465,"SourceStructureID":6155,"TargetStructureID":104965,"Label":"6155-104965 via Ribbon Synapse from 48319 -> 104966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48319,"TargetID":104966,"Directional":true}]},{"ID":11466,"SourceStructureID":6155,"TargetStructureID":104971,"Label":"6155-104971 via Ribbon Synapse from 15612 -> 104972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15612,"TargetID":104972,"Directional":true}]},{"ID":11467,"SourceStructureID":6155,"TargetStructureID":104979,"Label":"6155-104979 via Ribbon Synapse from 15756 -> 104980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15756,"TargetID":104980,"Directional":true}]},{"ID":11468,"SourceStructureID":6155,"TargetStructureID":104981,"Label":"6155-104981 via Ribbon Synapse from 15756 -> 104982","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15756,"TargetID":104982,"Directional":true}]},{"ID":11469,"SourceStructureID":6155,"TargetStructureID":105838,"Label":"6155-105838 via Ribbon Synapse from 16874 -> 105840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16874,"TargetID":105840,"Directional":true}]},{"ID":11470,"SourceStructureID":6155,"TargetStructureID":105844,"Label":"6155-105844 via Ribbon Synapse from 16874 -> 105847","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16874,"TargetID":105847,"Directional":true}]},{"ID":11471,"SourceStructureID":6155,"TargetStructureID":105928,"Label":"6155-105928 via Ribbon Synapse from 15761 -> 105998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15761,"TargetID":105998,"Directional":true}]},{"ID":11472,"SourceStructureID":6155,"TargetStructureID":105944,"Label":"6155-105944 via Ribbon Synapse from 15606 -> 105947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15606,"TargetID":105947,"Directional":true}]},{"ID":11473,"SourceStructureID":6155,"TargetStructureID":105965,"Label":"6155-105965 via Ribbon Synapse from 29758 -> 105993","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29758,"TargetID":105993,"Directional":true}]},{"ID":11474,"SourceStructureID":6155,"TargetStructureID":106045,"Label":"6155-106045 via Ribbon Synapse from 15610 -> 106046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15610,"TargetID":106046,"Directional":true}]},{"ID":11475,"SourceStructureID":6155,"TargetStructureID":106048,"Label":"6155-106048 via Cistern Pre from 48326 -> 106049","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":48326,"TargetID":106049,"Directional":true}]},{"ID":11476,"SourceStructureID":6155,"TargetStructureID":106060,"Label":"6155-106060 via BC Conventional Synapse from 106062 -> 106061","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106062,"TargetID":106061,"Directional":true}]},{"ID":11477,"SourceStructureID":6155,"TargetStructureID":106067,"Label":"6155-106067 via BC Conventional Synapse from 106356 -> 106357","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106356,"TargetID":106357,"Directional":true}]},{"ID":11478,"SourceStructureID":6155,"TargetStructureID":106094,"Label":"6155-106094 via Ribbon Synapse from 106093 -> 106103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106093,"TargetID":106103,"Directional":true}]},{"ID":11479,"SourceStructureID":6155,"TargetStructureID":106095,"Label":"6155-106095 via Ribbon Synapse from 56650 -> 106096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56650,"TargetID":106096,"Directional":true}]},{"ID":11480,"SourceStructureID":6155,"TargetStructureID":106123,"Label":"6155-106123 via Ribbon Synapse from 106124 -> 106125","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106124,"TargetID":106125,"Directional":true}]},{"ID":11481,"SourceStructureID":6155,"TargetStructureID":106413,"Label":"6155-106413 via Ribbon Synapse from 106395 -> 106416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106395,"TargetID":106416,"Directional":true}]},{"ID":11482,"SourceStructureID":6155,"TargetStructureID":106435,"Label":"6155-106435 via Ribbon Synapse from 48327 -> 106436","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48327,"TargetID":106436,"Directional":true}]},{"ID":11483,"SourceStructureID":6155,"TargetStructureID":106458,"Label":"6155-106458 via Ribbon Synapse from 15799 -> 106459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15799,"TargetID":106459,"Directional":true}]},{"ID":11484,"SourceStructureID":6155,"TargetStructureID":106460,"Label":"6155-106460 via Ribbon Synapse from 15799 -> 106461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15799,"TargetID":106461,"Directional":true}]},{"ID":11485,"SourceStructureID":6155,"TargetStructureID":106463,"Label":"6155-106463 via Ribbon Synapse from 15799 -> 106579","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15799,"TargetID":106579,"Directional":true}]},{"ID":11486,"SourceStructureID":6155,"TargetStructureID":106483,"Label":"6155-106483 via BC Conventional Synapse from 106568 -> 106569","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106568,"TargetID":106569,"Directional":true}]},{"ID":11487,"SourceStructureID":6155,"TargetStructureID":106604,"Label":"6155-106604 via Ribbon Synapse from 15767 -> 106611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15767,"TargetID":106611,"Directional":true}]},{"ID":11488,"SourceStructureID":6155,"TargetStructureID":106612,"Label":"6155-106612 via Ribbon Synapse from 15768 -> 106613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15768,"TargetID":106613,"Directional":true}]},{"ID":11489,"SourceStructureID":6155,"TargetStructureID":106617,"Label":"6155-106617 via Ribbon Synapse from 15768 -> 106618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15768,"TargetID":106618,"Directional":true}]},{"ID":11490,"SourceStructureID":6155,"TargetStructureID":106750,"Label":"6155-106750 via Ribbon Synapse from 15518 -> 106751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15518,"TargetID":106751,"Directional":true}]},{"ID":11491,"SourceStructureID":6155,"TargetStructureID":106812,"Label":"6155-106812 via BC Conventional Synapse from 106815 -> 106816","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":106815,"TargetID":106816,"Directional":true}]},{"ID":11492,"SourceStructureID":6155,"TargetStructureID":106824,"Label":"6155-106824 via Ribbon Synapse from 49068 -> 106827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49068,"TargetID":106827,"Directional":true}]},{"ID":11493,"SourceStructureID":6155,"TargetStructureID":106831,"Label":"6155-106831 via Ribbon Synapse from 49068 -> 106833","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49068,"TargetID":106833,"Directional":true}]},{"ID":11494,"SourceStructureID":6155,"TargetStructureID":107619,"Label":"6155-107619 via Ribbon Synapse from 48267 -> 107627","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48267,"TargetID":107627,"Directional":true}]},{"ID":11495,"SourceStructureID":6155,"TargetStructureID":107622,"Label":"6155-107622 via Ribbon Synapse from 15397 -> 107623","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15397,"TargetID":107623,"Directional":true}]},{"ID":11496,"SourceStructureID":6155,"TargetStructureID":107739,"Label":"6155-107739 via Ribbon Synapse from 48267 -> 107740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48267,"TargetID":107740,"Directional":true}]},{"ID":11497,"SourceStructureID":6155,"TargetStructureID":107741,"Label":"6155-107741 via Ribbon Synapse from 15397 -> 107742","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15397,"TargetID":107742,"Directional":true}]},{"ID":11498,"SourceStructureID":6155,"TargetStructureID":107747,"Label":"6155-107747 via Ribbon Synapse from 15430 -> 107752","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15430,"TargetID":107752,"Directional":true}]},{"ID":11499,"SourceStructureID":6155,"TargetStructureID":107750,"Label":"6155-107750 via Ribbon Synapse from 15430 -> 107751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15430,"TargetID":107751,"Directional":true}]},{"ID":11500,"SourceStructureID":6155,"TargetStructureID":107767,"Label":"6155-107767 via Ribbon Synapse from 15395 -> 107768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15395,"TargetID":107768,"Directional":true}]},{"ID":11501,"SourceStructureID":6155,"TargetStructureID":107769,"Label":"6155-107769 via Ribbon Synapse from 15395 -> 107770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15395,"TargetID":107770,"Directional":true}]},{"ID":11502,"SourceStructureID":6155,"TargetStructureID":107779,"Label":"6155-107779 via Ribbon Synapse from 15433 -> 107780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15433,"TargetID":107780,"Directional":true}]},{"ID":11503,"SourceStructureID":6155,"TargetStructureID":107784,"Label":"6155-107784 via Ribbon Synapse from 15429 -> 107785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15429,"TargetID":107785,"Directional":true}]},{"ID":11504,"SourceStructureID":6155,"TargetStructureID":107786,"Label":"6155-107786 via Ribbon Synapse from 15429 -> 107787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15429,"TargetID":107787,"Directional":true}]},{"ID":11505,"SourceStructureID":6155,"TargetStructureID":107789,"Label":"6155-107789 via Ribbon Synapse from 107788 -> 107790","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107788,"TargetID":107790,"Directional":true}]},{"ID":11506,"SourceStructureID":6155,"TargetStructureID":107798,"Label":"6155-107798 via Ribbon Synapse from 15400 -> 107799, 107791 -> 107799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15400,"TargetID":107799,"Directional":true},{"SourceID":107791,"TargetID":107799,"Directional":true}]},{"ID":11507,"SourceStructureID":6155,"TargetStructureID":107800,"Label":"6155-107800 via Ribbon Synapse from 15400 -> 107801","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15400,"TargetID":107801,"Directional":true}]},{"ID":11508,"SourceStructureID":6155,"TargetStructureID":107805,"Label":"6155-107805 via BC Conventional Synapse from 107811 -> 107812","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107811,"TargetID":107812,"Directional":true}]},{"ID":11509,"SourceStructureID":6155,"TargetStructureID":107818,"Label":"6155-107818 via Ribbon Synapse from 107817 -> 107819","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107817,"TargetID":107819,"Directional":true}]},{"ID":11510,"SourceStructureID":6155,"TargetStructureID":107838,"Label":"6155-107838 via Ribbon Synapse from 15384 -> 107839","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15384,"TargetID":107839,"Directional":true}]},{"ID":11511,"SourceStructureID":6155,"TargetStructureID":107840,"Label":"6155-107840 via Ribbon Synapse from 15384 -> 107841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15384,"TargetID":107841,"Directional":true}]},{"ID":11512,"SourceStructureID":6155,"TargetStructureID":107845,"Label":"6155-107845 via Ribbon Synapse from 49076 -> 107864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49076,"TargetID":107864,"Directional":true}]},{"ID":11513,"SourceStructureID":6155,"TargetStructureID":107860,"Label":"6155-107860 via Ribbon Synapse from 49076 -> 107863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49076,"TargetID":107863,"Directional":true}]},{"ID":11514,"SourceStructureID":6155,"TargetStructureID":107870,"Label":"6155-107870 via Ribbon Synapse from 15511 -> 107871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15511,"TargetID":107871,"Directional":true}]},{"ID":11515,"SourceStructureID":6155,"TargetStructureID":107879,"Label":"6155-107879 via Ribbon Synapse from 15510 -> 107881","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15510,"TargetID":107881,"Directional":true}]},{"ID":11516,"SourceStructureID":6155,"TargetStructureID":107882,"Label":"6155-107882 via Ribbon Synapse from 15510 -> 107885","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15510,"TargetID":107885,"Directional":true}]},{"ID":11517,"SourceStructureID":6155,"TargetStructureID":107894,"Label":"6155-107894 via Ribbon Synapse from 15386 -> 107903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15386,"TargetID":107903,"Directional":true}]},{"ID":11518,"SourceStructureID":6155,"TargetStructureID":107904,"Label":"6155-107904 via Ribbon Synapse from 49078 -> 107906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49078,"TargetID":107906,"Directional":true}]},{"ID":11519,"SourceStructureID":6155,"TargetStructureID":107908,"Label":"6155-107908 via Ribbon Synapse from 15541 -> 107949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15541,"TargetID":107949,"Directional":true}]},{"ID":11520,"SourceStructureID":6155,"TargetStructureID":107910,"Label":"6155-107910 via Ribbon Synapse from 15541 -> 107972","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15541,"TargetID":107972,"Directional":true}]},{"ID":11521,"SourceStructureID":6155,"TargetStructureID":107915,"Label":"6155-107915 via Ribbon Synapse from 15509 -> 107916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15509,"TargetID":107916,"Directional":true}]},{"ID":11522,"SourceStructureID":6155,"TargetStructureID":107917,"Label":"6155-107917 via Ribbon Synapse from 15508 -> 107920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15508,"TargetID":107920,"Directional":true}]},{"ID":11523,"SourceStructureID":6155,"TargetStructureID":107918,"Label":"6155-107918 via Ribbon Synapse from 15508 -> 107919","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15508,"TargetID":107919,"Directional":true}]},{"ID":11524,"SourceStructureID":6155,"TargetStructureID":107989,"Label":"6155-107989 via Ribbon Synapse from 15569 -> 108007","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15569,"TargetID":108007,"Directional":true}]},{"ID":11525,"SourceStructureID":6155,"TargetStructureID":107992,"Label":"6155-107992 via BC Conventional Synapse from 107995 -> 107994","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":107995,"TargetID":107994,"Directional":true}]},{"ID":11526,"SourceStructureID":6155,"TargetStructureID":108004,"Label":"6155-108004 via Ribbon Synapse from 15568 -> 108009","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15568,"TargetID":108009,"Directional":true}]},{"ID":11527,"SourceStructureID":6155,"TargetStructureID":108008,"Label":"6155-108008 via Ribbon Synapse from 15569 -> 108015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15569,"TargetID":108015,"Directional":true}]},{"ID":11528,"SourceStructureID":6155,"TargetStructureID":108010,"Label":"6155-108010 via Ribbon Synapse from 15568 -> 108014","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15568,"TargetID":108014,"Directional":true}]},{"ID":11529,"SourceStructureID":6155,"TargetStructureID":108066,"Label":"6155-108066 via Ribbon Synapse from 48305 -> 108069","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48305,"TargetID":108069,"Directional":true}]},{"ID":11530,"SourceStructureID":6155,"TargetStructureID":108076,"Label":"6155-108076 via Ribbon Synapse from 48303 -> 108078","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48303,"TargetID":108078,"Directional":true}]},{"ID":11531,"SourceStructureID":6155,"TargetStructureID":108079,"Label":"6155-108079 via Ribbon Synapse from 48303 -> 108080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48303,"TargetID":108080,"Directional":true}]},{"ID":11532,"SourceStructureID":6155,"TargetStructureID":108081,"Label":"6155-108081 via BC Conventional Synapse from 108084 -> 108085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108084,"TargetID":108085,"Directional":true}]},{"ID":11533,"SourceStructureID":6155,"TargetStructureID":108092,"Label":"6155-108092 via Ribbon Synapse from 15546 -> 108093","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15546,"TargetID":108093,"Directional":true}]},{"ID":11534,"SourceStructureID":6155,"TargetStructureID":108117,"Label":"6155-108117 via Ribbon Synapse from 15549 -> 108121","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15549,"TargetID":108121,"Directional":true}]},{"ID":11535,"SourceStructureID":6155,"TargetStructureID":108119,"Label":"6155-108119 via Ribbon Synapse from 15550 -> 108120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15550,"TargetID":108120,"Directional":true}]},{"ID":11536,"SourceStructureID":6155,"TargetStructureID":108122,"Label":"6155-108122 via Ribbon Synapse from 48293 -> 108123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48293,"TargetID":108123,"Directional":true}]},{"ID":11537,"SourceStructureID":6155,"TargetStructureID":108196,"Label":"6155-108196 via Ribbon Synapse from 34785 -> 108198","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34785,"TargetID":108198,"Directional":true}]},{"ID":11538,"SourceStructureID":6155,"TargetStructureID":108286,"Label":"6155-108286 via Ribbon Synapse from 15521 -> 108287","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15521,"TargetID":108287,"Directional":true}]},{"ID":11539,"SourceStructureID":6155,"TargetStructureID":108292,"Label":"6155-108292 via Ribbon Synapse from 15521 -> 108293","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15521,"TargetID":108293,"Directional":true}]},{"ID":11540,"SourceStructureID":6155,"TargetStructureID":108296,"Label":"6155-108296 via Ribbon Synapse from 15520 -> 108297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15520,"TargetID":108297,"Directional":true}]},{"ID":11541,"SourceStructureID":6155,"TargetStructureID":108301,"Label":"6155-108301 via Ribbon Synapse from 15522 -> 108302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15522,"TargetID":108302,"Directional":true}]},{"ID":11542,"SourceStructureID":6155,"TargetStructureID":108325,"Label":"6155-108325 via Ribbon Synapse from 15523 -> 108326","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15523,"TargetID":108326,"Directional":true}]},{"ID":11543,"SourceStructureID":6155,"TargetStructureID":108327,"Label":"6155-108327 via Ribbon Synapse from 15525 -> 108329","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15525,"TargetID":108329,"Directional":true}]},{"ID":11544,"SourceStructureID":6155,"TargetStructureID":108339,"Label":"6155-108339 via Ribbon Synapse from 49083 -> 108341","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49083,"TargetID":108341,"Directional":true}]},{"ID":11545,"SourceStructureID":6156,"TargetStructureID":318,"Label":"6156-318 via Ribbon Synapse from 14099 -> 14098, 15852 -> 15853, 65190 -> 65191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14099,"TargetID":14098,"Directional":true},{"SourceID":15852,"TargetID":15853,"Directional":true},{"SourceID":65190,"TargetID":65191,"Directional":true}]},{"ID":11546,"SourceStructureID":6156,"TargetStructureID":390,"Label":"6156-390 via Ribbon Synapse from 23199 -> 65106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23199,"TargetID":65106,"Directional":true}]},{"ID":11547,"SourceStructureID":6156,"TargetStructureID":514,"Label":"6156-514 via Ribbon Synapse from 11622 -> 11597, 117625 -> 133371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11622,"TargetID":11597,"Directional":true},{"SourceID":117625,"TargetID":133371,"Directional":true}]},{"ID":11548,"SourceStructureID":6156,"TargetStructureID":4890,"Label":"6156-4890 via BC Conventional Synapse from 117575 -> 133465","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117575,"TargetID":133465,"Directional":true}]},{"ID":11549,"SourceStructureID":6156,"TargetStructureID":4890,"Label":"6156-4890 via Ribbon Synapse from 18574 -> 9635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18574,"TargetID":9635,"Directional":true}]},{"ID":11550,"SourceStructureID":6156,"TargetStructureID":5117,"Label":"6156-5117 via BC Conventional Synapse from 133228 -> 23233","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133228,"TargetID":23233,"Directional":true}]},{"ID":11551,"SourceStructureID":6156,"TargetStructureID":5117,"Label":"6156-5117 via Ribbon Synapse from 23229 -> 133221, 23230 -> 23232, 23231 -> 23233, 23269 -> 69329, 28677 -> 133182, 28678 -> 133176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23229,"TargetID":133221,"Directional":true},{"SourceID":23230,"TargetID":23232,"Directional":true},{"SourceID":23231,"TargetID":23233,"Directional":true},{"SourceID":23269,"TargetID":69329,"Directional":true},{"SourceID":28677,"TargetID":133182,"Directional":true},{"SourceID":28678,"TargetID":133176,"Directional":true}]},{"ID":11552,"SourceStructureID":6156,"TargetStructureID":5118,"Label":"6156-5118 via Ribbon Synapse from 23231 -> 133238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23231,"TargetID":133238,"Directional":true}]},{"ID":11553,"SourceStructureID":6156,"TargetStructureID":5350,"Label":"6156-5350 via Ribbon Synapse from 22574 -> 133279","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22574,"TargetID":133279,"Directional":true}]},{"ID":11554,"SourceStructureID":6156,"TargetStructureID":5575,"Label":"6156-5575 via Ribbon Synapse from 11604 -> 22948, 11605 -> 22949, 23625 -> 22948, 24495 -> 24494, 24497 -> 24494, 133153 -> 22948, 133154 -> 22948, 133155 -> 22949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11604,"TargetID":22948,"Directional":true},{"SourceID":11605,"TargetID":22949,"Directional":true},{"SourceID":23625,"TargetID":22948,"Directional":true},{"SourceID":24495,"TargetID":24494,"Directional":true},{"SourceID":24497,"TargetID":24494,"Directional":true},{"SourceID":133153,"TargetID":22948,"Directional":true},{"SourceID":133154,"TargetID":22948,"Directional":true},{"SourceID":133155,"TargetID":22949,"Directional":true}]},{"ID":11555,"SourceStructureID":6156,"TargetStructureID":8577,"Label":"6156-8577 via Ribbon Synapse from 117566 -> 15927","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117566,"TargetID":15927,"Directional":true}]},{"ID":11556,"SourceStructureID":6156,"TargetStructureID":8579,"Label":"6156-8579 via Ribbon Synapse from 23251 -> 61876, 23259 -> 133385","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23251,"TargetID":61876,"Directional":true},{"SourceID":23259,"TargetID":133385,"Directional":true}]},{"ID":11557,"SourceStructureID":6156,"TargetStructureID":8720,"Label":"6156-8720 via BC Conventional Synapse from 133388 -> 60103","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":133388,"TargetID":60103,"Directional":true}]},{"ID":11558,"SourceStructureID":6156,"TargetStructureID":8720,"Label":"6156-8720 via Ribbon Synapse from 15304 -> 15303, 22375 -> 15306, 28673 -> 63198, 117510 -> 133313","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15304,"TargetID":15303,"Directional":true},{"SourceID":22375,"TargetID":15306,"Directional":true},{"SourceID":28673,"TargetID":63198,"Directional":true},{"SourceID":117510,"TargetID":133313,"Directional":true}]},{"ID":11559,"SourceStructureID":6156,"TargetStructureID":12208,"Label":"6156-12208 via Ribbon Synapse from 11599 -> 22343","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11599,"TargetID":22343,"Directional":true}]},{"ID":11560,"SourceStructureID":6156,"TargetStructureID":13855,"Label":"6156-13855 via Ribbon Synapse from 133477 -> 133478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133477,"TargetID":133478,"Directional":true}]},{"ID":11561,"SourceStructureID":6156,"TargetStructureID":15394,"Label":"6156-15394 via Ribbon Synapse from 15858 -> 133421","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15858,"TargetID":133421,"Directional":true}]},{"ID":11562,"SourceStructureID":6156,"TargetStructureID":18282,"Label":"6156-18282 via Ribbon Synapse from 18574 -> 18305, 18575 -> 18572","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18574,"TargetID":18305,"Directional":true},{"SourceID":18575,"TargetID":18572,"Directional":true}]},{"ID":11563,"SourceStructureID":6156,"TargetStructureID":18576,"Label":"6156-18576 via Ribbon Synapse from 18575 -> 18577, 20418 -> 100454, 133204 -> 133203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18575,"TargetID":18577,"Directional":true},{"SourceID":20418,"TargetID":100454,"Directional":true},{"SourceID":133204,"TargetID":133203,"Directional":true}]},{"ID":11564,"SourceStructureID":6156,"TargetStructureID":20413,"Label":"6156-20413 via Ribbon Synapse from 20418 -> 20417","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20418,"TargetID":20417,"Directional":true}]},{"ID":11565,"SourceStructureID":6156,"TargetStructureID":22554,"Label":"6156-22554 via Ribbon Synapse from 28654 -> 135148","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28654,"TargetID":135148,"Directional":true}]},{"ID":11566,"SourceStructureID":6156,"TargetStructureID":22974,"Label":"6156-22974 via Ribbon Synapse from 11621 -> 23030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11621,"TargetID":23030,"Directional":true}]},{"ID":11567,"SourceStructureID":6156,"TargetStructureID":25374,"Label":"6156-25374 via Ribbon Synapse from 25381 -> 25380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25381,"TargetID":25380,"Directional":true}]},{"ID":11568,"SourceStructureID":6156,"TargetStructureID":25440,"Label":"6156-25440 via Ribbon Synapse from 23227 -> 25460, 28677 -> 133183","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23227,"TargetID":25460,"Directional":true},{"SourceID":28677,"TargetID":133183,"Directional":true}]},{"ID":11569,"SourceStructureID":6156,"TargetStructureID":25861,"Label":"6156-25861 via Ribbon Synapse from 23166 -> 32236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23166,"TargetID":32236,"Directional":true}]},{"ID":11570,"SourceStructureID":6156,"TargetStructureID":34601,"Label":"6156-34601 via Ribbon Synapse from 60642 -> 60643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60642,"TargetID":60643,"Directional":true}]},{"ID":11571,"SourceStructureID":6156,"TargetStructureID":54727,"Label":"6156-54727 via Ribbon Synapse from 23180 -> 54738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23180,"TargetID":54738,"Directional":true}]},{"ID":11572,"SourceStructureID":6156,"TargetStructureID":54744,"Label":"6156-54744 via Ribbon Synapse from 23192 -> 133254, 23269 -> 54746","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23192,"TargetID":133254,"Directional":true},{"SourceID":23269,"TargetID":54746,"Directional":true}]},{"ID":11573,"SourceStructureID":6156,"TargetStructureID":59422,"Label":"6156-59422 via Ribbon Synapse from 23258 -> 59423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23258,"TargetID":59423,"Directional":true}]},{"ID":11574,"SourceStructureID":6156,"TargetStructureID":60201,"Label":"6156-60201 via Ribbon Synapse from 23230 -> 133230, 23234 -> 60205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23230,"TargetID":133230,"Directional":true},{"SourceID":23234,"TargetID":60205,"Directional":true}]},{"ID":11575,"SourceStructureID":6156,"TargetStructureID":60657,"Label":"6156-60657 via Ribbon Synapse from 28678 -> 60659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28678,"TargetID":60659,"Directional":true}]},{"ID":11576,"SourceStructureID":6156,"TargetStructureID":61816,"Label":"6156-61816 via Ribbon Synapse from 22375 -> 80737, 22376 -> 74052","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22375,"TargetID":80737,"Directional":true},{"SourceID":22376,"TargetID":74052,"Directional":true}]},{"ID":11577,"SourceStructureID":6156,"TargetStructureID":61882,"Label":"6156-61882 via Ribbon Synapse from 23257 -> 61885","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23257,"TargetID":61885,"Directional":true}]},{"ID":11578,"SourceStructureID":6156,"TargetStructureID":61898,"Label":"6156-61898 via Ribbon Synapse from 23255 -> 61903, 23260 -> 61901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23255,"TargetID":61903,"Directional":true},{"SourceID":23260,"TargetID":61901,"Directional":true}]},{"ID":11579,"SourceStructureID":6156,"TargetStructureID":61933,"Label":"6156-61933 via Ribbon Synapse from 28692 -> 68641","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28692,"TargetID":68641,"Directional":true}]},{"ID":11580,"SourceStructureID":6156,"TargetStructureID":65267,"Label":"6156-65267 via Ribbon Synapse from 28637 -> 65301, 28638 -> 65301, 28639 -> 65301","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28637,"TargetID":65301,"Directional":true},{"SourceID":28638,"TargetID":65301,"Directional":true},{"SourceID":28639,"TargetID":65301,"Directional":true}]},{"ID":11581,"SourceStructureID":6156,"TargetStructureID":67812,"Label":"6156-67812 via BC Conventional Synapse from 67821 -> 67822","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67821,"TargetID":67822,"Directional":true}]},{"ID":11582,"SourceStructureID":6156,"TargetStructureID":67871,"Label":"6156-67871 via Ribbon Synapse from 28696 -> 133338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28696,"TargetID":133338,"Directional":true}]},{"ID":11583,"SourceStructureID":6156,"TargetStructureID":67874,"Label":"6156-67874 via Ribbon Synapse from 133337 -> 67880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133337,"TargetID":67880,"Directional":true}]},{"ID":11584,"SourceStructureID":6156,"TargetStructureID":68042,"Label":"6156-68042 via BC Conventional Synapse from 68048 -> 68049","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68048,"TargetID":68049,"Directional":true}]},{"ID":11585,"SourceStructureID":6156,"TargetStructureID":68077,"Label":"6156-68077 via Ribbon Synapse from 28695 -> 68650","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28695,"TargetID":68650,"Directional":true}]},{"ID":11586,"SourceStructureID":6156,"TargetStructureID":68894,"Label":"6156-68894 via Ribbon Synapse from 28692 -> 68896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28692,"TargetID":68896,"Directional":true}]},{"ID":11587,"SourceStructureID":6156,"TargetStructureID":70284,"Label":"6156-70284 via Ribbon Synapse from 22323 -> 133148","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22323,"TargetID":133148,"Directional":true}]},{"ID":11588,"SourceStructureID":6156,"TargetStructureID":101325,"Label":"6156-101325 via Ribbon Synapse from 25560 -> 101328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25560,"TargetID":101328,"Directional":true}]},{"ID":11589,"SourceStructureID":6156,"TargetStructureID":133192,"Label":"6156-133192 via Ribbon Synapse from 23208 -> 133193, 23210 -> 133193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23208,"TargetID":133193,"Directional":true},{"SourceID":23210,"TargetID":133193,"Directional":true}]},{"ID":11590,"SourceStructureID":6156,"TargetStructureID":133260,"Label":"6156-133260 via Ribbon Synapse from 133259 -> 133261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133259,"TargetID":133261,"Directional":true}]},{"ID":11591,"SourceStructureID":6156,"TargetStructureID":133264,"Label":"6156-133264 via Ribbon Synapse from 133259 -> 133265","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133259,"TargetID":133265,"Directional":true}]},{"ID":11592,"SourceStructureID":6156,"TargetStructureID":133304,"Label":"6156-133304 via Ribbon Synapse from 133307 -> 133306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133307,"TargetID":133306,"Directional":true}]},{"ID":11593,"SourceStructureID":6156,"TargetStructureID":133364,"Label":"6156-133364 via Ribbon Synapse from 23265 -> 133365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":23265,"TargetID":133365,"Directional":true}]},{"ID":11594,"SourceStructureID":6156,"TargetStructureID":133451,"Label":"6156-133451 via Ribbon Synapse from 133450 -> 133453","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133450,"TargetID":133453,"Directional":true}]},{"ID":11595,"SourceStructureID":6158,"TargetStructureID":606,"Label":"6158-606 via Ribbon Synapse from 47268 -> 47266, 47269 -> 47270","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47268,"TargetID":47266,"Directional":true},{"SourceID":47269,"TargetID":47270,"Directional":true}]},{"ID":11596,"SourceStructureID":6162,"TargetStructureID":7594,"Label":"6162-7594 via Ribbon Synapse from 29120 -> 55751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29120,"TargetID":55751,"Directional":true}]},{"ID":11597,"SourceStructureID":6162,"TargetStructureID":15796,"Label":"6162-15796 via Ribbon Synapse from 19982 -> 19978, 20797 -> 20799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19982,"TargetID":19978,"Directional":true},{"SourceID":20797,"TargetID":20799,"Directional":true}]},{"ID":11598,"SourceStructureID":6162,"TargetStructureID":35597,"Label":"6162-35597 via Ribbon Synapse from 127715 -> 127714, 127717 -> 127716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127715,"TargetID":127714,"Directional":true},{"SourceID":127717,"TargetID":127716,"Directional":true}]},{"ID":11599,"SourceStructureID":6162,"TargetStructureID":55232,"Label":"6162-55232 via Ribbon Synapse from 29094 -> 55249","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29094,"TargetID":55249,"Directional":true}]},{"ID":11600,"SourceStructureID":6162,"TargetStructureID":87277,"Label":"6162-87277 via Ribbon Synapse from 29122 -> 87290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29122,"TargetID":87290,"Directional":true}]},{"ID":11601,"SourceStructureID":6162,"TargetStructureID":87291,"Label":"6162-87291 via Ribbon Synapse from 29122 -> 87292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29122,"TargetID":87292,"Directional":true}]},{"ID":11602,"SourceStructureID":6162,"TargetStructureID":110908,"Label":"6162-110908 via Ribbon Synapse from 136306 -> 136307","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136306,"TargetID":136307,"Directional":true}]},{"ID":11603,"SourceStructureID":6162,"TargetStructureID":111078,"Label":"6162-111078 via Ribbon Synapse from 29077 -> 111079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29077,"TargetID":111079,"Directional":true}]},{"ID":11604,"SourceStructureID":6162,"TargetStructureID":111080,"Label":"6162-111080 via Ribbon Synapse from 29077 -> 111081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29077,"TargetID":111081,"Directional":true}]},{"ID":11605,"SourceStructureID":6163,"TargetStructureID":223,"Label":"6163-223 via Ribbon Synapse from 35979 -> 35980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35979,"TargetID":35980,"Directional":true}]},{"ID":11606,"SourceStructureID":6163,"TargetStructureID":410,"Label":"6163-410 via Ribbon Synapse from 17526 -> 17524, 17739 -> 38509, 17761 -> 17760, 17767 -> 17766, 17768 -> 17765, 19147 -> 19149","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17526,"TargetID":17524,"Directional":true},{"SourceID":17739,"TargetID":38509,"Directional":true},{"SourceID":17761,"TargetID":17760,"Directional":true},{"SourceID":17767,"TargetID":17766,"Directional":true},{"SourceID":17768,"TargetID":17765,"Directional":true},{"SourceID":19147,"TargetID":19149,"Directional":true}]},{"ID":11607,"SourceStructureID":6163,"TargetStructureID":591,"Label":"6163-591 via Ribbon Synapse from 19150 -> 10294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19150,"TargetID":10294,"Directional":true}]},{"ID":11608,"SourceStructureID":6163,"TargetStructureID":17527,"Label":"6163-17527 via Ribbon Synapse from 17529 -> 17528, 17530 -> 17531, 17731 -> 17730, 17737 -> 17736, 17739 -> 17738, 18363 -> 18364, 19144 -> 19145, 19153 -> 19154","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17529,"TargetID":17528,"Directional":true},{"SourceID":17530,"TargetID":17531,"Directional":true},{"SourceID":17731,"TargetID":17730,"Directional":true},{"SourceID":17737,"TargetID":17736,"Directional":true},{"SourceID":17739,"TargetID":17738,"Directional":true},{"SourceID":18363,"TargetID":18364,"Directional":true},{"SourceID":19144,"TargetID":19145,"Directional":true},{"SourceID":19153,"TargetID":19154,"Directional":true}]},{"ID":11609,"SourceStructureID":6163,"TargetStructureID":29791,"Label":"6163-29791 via Ribbon Synapse from 18375 -> 29798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18375,"TargetID":29798,"Directional":true}]},{"ID":11610,"SourceStructureID":6164,"TargetStructureID":284,"Label":"6164-284 via Ribbon Synapse from 17437 -> 17438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17437,"TargetID":17438,"Directional":true}]},{"ID":11611,"SourceStructureID":6164,"TargetStructureID":6153,"Label":"6164-6153 via Ribbon Synapse from 11759 -> 11760, 17443 -> 17442, 17445 -> 17447, 17450 -> 17449, 17451 -> 17452, 17460 -> 17461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11759,"TargetID":11760,"Directional":true},{"SourceID":17443,"TargetID":17442,"Directional":true},{"SourceID":17445,"TargetID":17447,"Directional":true},{"SourceID":17450,"TargetID":17449,"Directional":true},{"SourceID":17451,"TargetID":17452,"Directional":true},{"SourceID":17460,"TargetID":17461,"Directional":true}]},{"ID":11612,"SourceStructureID":6164,"TargetStructureID":7157,"Label":"6164-7157 via Ribbon Synapse from 18186 -> 18185, 18201 -> 18200","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18186,"TargetID":18185,"Directional":true},{"SourceID":18201,"TargetID":18200,"Directional":true}]},{"ID":11613,"SourceStructureID":6164,"TargetStructureID":114925,"Label":"6164-114925 via Ribbon Synapse from 17445 -> 114933","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17445,"TargetID":114933,"Directional":true}]},{"ID":11614,"SourceStructureID":6165,"TargetStructureID":38718,"Label":"6165-38718 via Ribbon Synapse from 38726 -> 38725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38726,"TargetID":38725,"Directional":true}]},{"ID":11615,"SourceStructureID":6165,"TargetStructureID":83803,"Label":"6165-83803 via Ribbon Synapse from 38726 -> 83804","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38726,"TargetID":83804,"Directional":true}]},{"ID":11616,"SourceStructureID":6166,"TargetStructureID":8575,"Label":"6166-8575 via BC Conventional Synapse from 62645 -> 62644","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62645,"TargetID":62644,"Directional":true}]},{"ID":11617,"SourceStructureID":6169,"TargetStructureID":138,"Label":"6169-138 via Conventional from 14909 -> 2173","Type":"Conventional","Directional":true,"Links":[{"SourceID":14909,"TargetID":2173,"Directional":true}]},{"ID":11618,"SourceStructureID":6169,"TargetStructureID":165,"Label":"6169-165 via Conventional from 20776 -> 20777, 21684 -> 20781","Type":"Conventional","Directional":true,"Links":[{"SourceID":20776,"TargetID":20777,"Directional":true},{"SourceID":21684,"TargetID":20781,"Directional":true}]},{"ID":11619,"SourceStructureID":6169,"TargetStructureID":172,"Label":"6169-172 via Conventional from 12227 -> 12218, 18408 -> 18407","Type":"Conventional","Directional":true,"Links":[{"SourceID":12227,"TargetID":12218,"Directional":true},{"SourceID":18408,"TargetID":18407,"Directional":true}]},{"ID":11620,"SourceStructureID":6169,"TargetStructureID":173,"Label":"6169-173 via Conventional from 11953 -> 11911, 11954 -> 11915, 11956 -> 11955, 12221 -> 11890, 12223 -> 11890, 12224 -> 12225, 60919 -> 11982, 60920 -> 11985, 60926 -> 60927, 88183 -> 5913, 88186 -> 88187, 88189 -> 88188, 136856 -> 136858, 136860 -> 136861, 136871 -> 136872","Type":"Conventional","Directional":true,"Links":[{"SourceID":11953,"TargetID":11911,"Directional":true},{"SourceID":11954,"TargetID":11915,"Directional":true},{"SourceID":11956,"TargetID":11955,"Directional":true},{"SourceID":12221,"TargetID":11890,"Directional":true},{"SourceID":12223,"TargetID":11890,"Directional":true},{"SourceID":12224,"TargetID":12225,"Directional":true},{"SourceID":60919,"TargetID":11982,"Directional":true},{"SourceID":60920,"TargetID":11985,"Directional":true},{"SourceID":60926,"TargetID":60927,"Directional":true},{"SourceID":88183,"TargetID":5913,"Directional":true},{"SourceID":88186,"TargetID":88187,"Directional":true},{"SourceID":88189,"TargetID":88188,"Directional":true},{"SourceID":136856,"TargetID":136858,"Directional":true},{"SourceID":136860,"TargetID":136861,"Directional":true},{"SourceID":136871,"TargetID":136872,"Directional":true}]},{"ID":11621,"SourceStructureID":6169,"TargetStructureID":181,"Label":"6169-181 via Conventional from 20421 -> 20422, 20441 -> 20442","Type":"Conventional","Directional":true,"Links":[{"SourceID":20421,"TargetID":20422,"Directional":true},{"SourceID":20441,"TargetID":20442,"Directional":true}]},{"ID":11622,"SourceStructureID":6169,"TargetStructureID":992,"Label":"6169-992 via Conventional from 29417 -> 29425, 29417 -> 29433","Type":"Conventional","Directional":true,"Links":[{"SourceID":29417,"TargetID":29425,"Directional":true},{"SourceID":29417,"TargetID":29433,"Directional":true}]},{"ID":11623,"SourceStructureID":6169,"TargetStructureID":4568,"Label":"6169-4568 via Conventional from 9472 -> 11554, 9476 -> 20778","Type":"Conventional","Directional":true,"Links":[{"SourceID":9472,"TargetID":11554,"Directional":true},{"SourceID":9476,"TargetID":20778,"Directional":true}]},{"ID":11624,"SourceStructureID":6169,"TargetStructureID":6169,"Label":"6169-6169 via Conventional from 88185 -> 88184","Type":"Conventional","Directional":true,"Links":[{"SourceID":88185,"TargetID":88184,"Directional":true}]},{"ID":11625,"SourceStructureID":6169,"TargetStructureID":9787,"Label":"6169-9787 via Conventional from 18076 -> 12071, 60922 -> 18086","Type":"Conventional","Directional":true,"Links":[{"SourceID":18076,"TargetID":12071,"Directional":true},{"SourceID":60922,"TargetID":18086,"Directional":true}]},{"ID":11626,"SourceStructureID":6169,"TargetStructureID":11030,"Label":"6169-11030 via Conventional from 77661 -> 77662","Type":"Conventional","Directional":true,"Links":[{"SourceID":77661,"TargetID":77662,"Directional":true}]},{"ID":11627,"SourceStructureID":6169,"TargetStructureID":12203,"Label":"6169-12203 via Conventional from 18813 -> 15636","Type":"Conventional","Directional":true,"Links":[{"SourceID":18813,"TargetID":15636,"Directional":true}]},{"ID":11628,"SourceStructureID":6169,"TargetStructureID":91280,"Label":"6169-91280 via Conventional from 91300 -> 91301","Type":"Conventional","Directional":true,"Links":[{"SourceID":91300,"TargetID":91301,"Directional":true}]},{"ID":11629,"SourceStructureID":6169,"TargetStructureID":132220,"Label":"6169-132220 via Conventional from 60853 -> 132227, 60856 -> 132226","Type":"Conventional","Directional":true,"Links":[{"SourceID":60853,"TargetID":132227,"Directional":true},{"SourceID":60856,"TargetID":132226,"Directional":true}]},{"ID":11630,"SourceStructureID":6203,"TargetStructureID":162,"Label":"6203-162 via Ribbon Synapse from 12001 -> 11867, 52644 -> 52643","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12001,"TargetID":11867,"Directional":true},{"SourceID":52644,"TargetID":52643,"Directional":true}]},{"ID":11631,"SourceStructureID":6203,"TargetStructureID":606,"Label":"6203-606 via Ribbon Synapse from 51942 -> 51943, 54617 -> 54618","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51942,"TargetID":51943,"Directional":true},{"SourceID":54617,"TargetID":54618,"Directional":true}]},{"ID":11632,"SourceStructureID":6203,"TargetStructureID":9769,"Label":"6203-9769 via Ribbon Synapse from 52628 -> 52626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52628,"TargetID":52626,"Directional":true}]},{"ID":11633,"SourceStructureID":6203,"TargetStructureID":33272,"Label":"6203-33272 via Ribbon Synapse from 11973 -> 33273","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11973,"TargetID":33273,"Directional":true}]},{"ID":11634,"SourceStructureID":6203,"TargetStructureID":43716,"Label":"6203-43716 via Ribbon Synapse from 123671 -> 123670, 123674 -> 123673","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123671,"TargetID":123670,"Directional":true},{"SourceID":123674,"TargetID":123673,"Directional":true}]},{"ID":11635,"SourceStructureID":6203,"TargetStructureID":56841,"Label":"6203-56841 via Ribbon Synapse from 57215 -> 57216","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57215,"TargetID":57216,"Directional":true}]},{"ID":11636,"SourceStructureID":6203,"TargetStructureID":120945,"Label":"6203-120945 via Ribbon Synapse from 57261 -> 120947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57261,"TargetID":120947,"Directional":true}]},{"ID":11637,"SourceStructureID":6203,"TargetStructureID":123675,"Label":"6203-123675 via Ribbon Synapse from 123674 -> 123676","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123674,"TargetID":123676,"Directional":true}]},{"ID":11638,"SourceStructureID":6204,"TargetStructureID":162,"Label":"6204-162 via Ribbon Synapse from 52642 -> 52641","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52642,"TargetID":52641,"Directional":true}]},{"ID":11639,"SourceStructureID":6204,"TargetStructureID":606,"Label":"6204-606 via Ribbon Synapse from 51922 -> 51921, 51937 -> 51938, 51954 -> 51949, 51956 -> 51957, 51967 -> 51968, 51985 -> 51986, 51987 -> 51982, 51998 -> 51999","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51922,"TargetID":51921,"Directional":true},{"SourceID":51937,"TargetID":51938,"Directional":true},{"SourceID":51954,"TargetID":51949,"Directional":true},{"SourceID":51956,"TargetID":51957,"Directional":true},{"SourceID":51967,"TargetID":51968,"Directional":true},{"SourceID":51985,"TargetID":51986,"Directional":true},{"SourceID":51987,"TargetID":51982,"Directional":true},{"SourceID":51998,"TargetID":51999,"Directional":true}]},{"ID":11640,"SourceStructureID":6204,"TargetStructureID":5442,"Label":"6204-5442 via Ribbon Synapse from 74439 -> 74440","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74439,"TargetID":74440,"Directional":true}]},{"ID":11641,"SourceStructureID":6204,"TargetStructureID":9769,"Label":"6204-9769 via Ribbon Synapse from 52825 -> 52824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52825,"TargetID":52824,"Directional":true}]},{"ID":11642,"SourceStructureID":6204,"TargetStructureID":16073,"Label":"6204-16073 via Ribbon Synapse from 52121 -> 16076","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52121,"TargetID":16076,"Directional":true}]},{"ID":11643,"SourceStructureID":6204,"TargetStructureID":32773,"Label":"6204-32773 via Ribbon Synapse from 101702 -> 32782","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":101702,"TargetID":32782,"Directional":true}]},{"ID":11644,"SourceStructureID":6204,"TargetStructureID":33039,"Label":"6204-33039 via Ribbon Synapse from 33051 -> 33050","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33051,"TargetID":33050,"Directional":true}]},{"ID":11645,"SourceStructureID":6204,"TargetStructureID":33714,"Label":"6204-33714 via Ribbon Synapse from 33717 -> 33715","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33717,"TargetID":33715,"Directional":true}]},{"ID":11646,"SourceStructureID":6204,"TargetStructureID":35343,"Label":"6204-35343 via Ribbon Synapse from 35347 -> 35346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35347,"TargetID":35346,"Directional":true}]},{"ID":11647,"SourceStructureID":6204,"TargetStructureID":51923,"Label":"6204-51923 via Ribbon Synapse from 51926 -> 51927","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51926,"TargetID":51927,"Directional":true}]},{"ID":11648,"SourceStructureID":6204,"TargetStructureID":68539,"Label":"6204-68539 via Ribbon Synapse from 52123 -> 75959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52123,"TargetID":75959,"Directional":true}]},{"ID":11649,"SourceStructureID":6204,"TargetStructureID":75960,"Label":"6204-75960 via Ribbon Synapse from 52123 -> 75961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52123,"TargetID":75961,"Directional":true}]},{"ID":11650,"SourceStructureID":6204,"TargetStructureID":88395,"Label":"6204-88395 via Ribbon Synapse from 51987 -> 88421","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51987,"TargetID":88421,"Directional":true}]},{"ID":11651,"SourceStructureID":6300,"TargetStructureID":6047,"Label":"6300-6047 via Conventional from 113701 -> 113702","Type":"Conventional","Directional":true,"Links":[{"SourceID":113701,"TargetID":113702,"Directional":true}]},{"ID":11652,"SourceStructureID":6406,"TargetStructureID":514,"Label":"6406-514 via Conventional from 6418 -> 1006, 6419 -> 1441","Type":"Conventional","Directional":true,"Links":[{"SourceID":6418,"TargetID":1006,"Directional":true},{"SourceID":6419,"TargetID":1441,"Directional":true}]},{"ID":11653,"SourceStructureID":6406,"TargetStructureID":5278,"Label":"6406-5278 via Conventional from 20094 -> 20095","Type":"Conventional","Directional":true,"Links":[{"SourceID":20094,"TargetID":20095,"Directional":true}]},{"ID":11654,"SourceStructureID":6406,"TargetStructureID":20681,"Label":"6406-20681 via Conventional from 6415 -> 20698","Type":"Conventional","Directional":true,"Links":[{"SourceID":6415,"TargetID":20698,"Directional":true}]},{"ID":11655,"SourceStructureID":6561,"TargetStructureID":223,"Label":"6561-223 via Ribbon Synapse from 8326 -> 17312, 17307 -> 17304, 17309 -> 17308, 17318 -> 17317, 17751 -> 18491, 17843 -> 17842, 17892 -> 17668, 18487 -> 18488, 18489 -> 18490, 18493 -> 18494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8326,"TargetID":17312,"Directional":true},{"SourceID":17307,"TargetID":17304,"Directional":true},{"SourceID":17309,"TargetID":17308,"Directional":true},{"SourceID":17318,"TargetID":17317,"Directional":true},{"SourceID":17751,"TargetID":18491,"Directional":true},{"SourceID":17843,"TargetID":17842,"Directional":true},{"SourceID":17892,"TargetID":17668,"Directional":true},{"SourceID":18487,"TargetID":18488,"Directional":true},{"SourceID":18489,"TargetID":18490,"Directional":true},{"SourceID":18493,"TargetID":18494,"Directional":true}]},{"ID":11656,"SourceStructureID":6561,"TargetStructureID":410,"Label":"6561-410 via Ribbon Synapse from 8303 -> 17335, 8306 -> 17334, 8312 -> 17333, 8333 -> 17826, 17812 -> 17811, 17814 -> 17813, 17816 -> 17815, 17823 -> 17822, 17824 -> 17825, 17828 -> 17827, 17891 -> 17669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8303,"TargetID":17335,"Directional":true},{"SourceID":8306,"TargetID":17334,"Directional":true},{"SourceID":8312,"TargetID":17333,"Directional":true},{"SourceID":8333,"TargetID":17826,"Directional":true},{"SourceID":17812,"TargetID":17811,"Directional":true},{"SourceID":17814,"TargetID":17813,"Directional":true},{"SourceID":17816,"TargetID":17815,"Directional":true},{"SourceID":17823,"TargetID":17822,"Directional":true},{"SourceID":17824,"TargetID":17825,"Directional":true},{"SourceID":17828,"TargetID":17827,"Directional":true},{"SourceID":17891,"TargetID":17669,"Directional":true}]},{"ID":11657,"SourceStructureID":6561,"TargetStructureID":476,"Label":"6561-476 via Ribbon Synapse from 6562 -> 2388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6562,"TargetID":2388,"Directional":true}]},{"ID":11658,"SourceStructureID":6561,"TargetStructureID":591,"Label":"6561-591 via Ribbon Synapse from 6562 -> 6551, 8299 -> 8300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6562,"TargetID":6551,"Directional":true},{"SourceID":8299,"TargetID":8300,"Directional":true}]},{"ID":11659,"SourceStructureID":6561,"TargetStructureID":6153,"Label":"6561-6153 via Ribbon Synapse from 8312 -> 17350, 8314 -> 17353, 8317 -> 17321, 8318 -> 17322, 17326 -> 17325, 17787 -> 17786, 17828 -> 17831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8312,"TargetID":17350,"Directional":true},{"SourceID":8314,"TargetID":17353,"Directional":true},{"SourceID":8317,"TargetID":17321,"Directional":true},{"SourceID":8318,"TargetID":17322,"Directional":true},{"SourceID":17326,"TargetID":17325,"Directional":true},{"SourceID":17787,"TargetID":17786,"Directional":true},{"SourceID":17828,"TargetID":17831,"Directional":true}]},{"ID":11660,"SourceStructureID":6589,"TargetStructureID":525,"Label":"6589-525 via BC Conventional Synapse from 120019 -> 132625","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120019,"TargetID":132625,"Directional":true}]},{"ID":11661,"SourceStructureID":6589,"TargetStructureID":525,"Label":"6589-525 via Ribbon Synapse from 9547 -> 6228, 14575 -> 9729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9547,"TargetID":6228,"Directional":true},{"SourceID":14575,"TargetID":9729,"Directional":true}]},{"ID":11662,"SourceStructureID":6589,"TargetStructureID":5118,"Label":"6589-5118 via Ribbon Synapse from 6991 -> 6454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6991,"TargetID":6454,"Directional":true}]},{"ID":11663,"SourceStructureID":6589,"TargetStructureID":5345,"Label":"6589-5345 via Ribbon Synapse from 14576 -> 14589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14576,"TargetID":14589,"Directional":true}]},{"ID":11664,"SourceStructureID":6589,"TargetStructureID":5350,"Label":"6589-5350 via Ribbon Synapse from 6596 -> 13800","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6596,"TargetID":13800,"Directional":true}]},{"ID":11665,"SourceStructureID":6589,"TargetStructureID":8033,"Label":"6589-8033 via Ribbon Synapse from 132670 -> 132671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132670,"TargetID":132671,"Directional":true}]},{"ID":11666,"SourceStructureID":6589,"TargetStructureID":11531,"Label":"6589-11531 via Ribbon Synapse from 6590 -> 11532","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6590,"TargetID":11532,"Directional":true}]},{"ID":11667,"SourceStructureID":6589,"TargetStructureID":13855,"Label":"6589-13855 via Ribbon Synapse from 9586 -> 132761, 9591 -> 132638, 81480 -> 132747, 123736 -> 132729, 123737 -> 132710, 123755 -> 70816, 132718 -> 132717, 132769 -> 132770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9586,"TargetID":132761,"Directional":true},{"SourceID":9591,"TargetID":132638,"Directional":true},{"SourceID":81480,"TargetID":132747,"Directional":true},{"SourceID":123736,"TargetID":132729,"Directional":true},{"SourceID":123737,"TargetID":132710,"Directional":true},{"SourceID":123755,"TargetID":70816,"Directional":true},{"SourceID":132718,"TargetID":132717,"Directional":true},{"SourceID":132769,"TargetID":132770,"Directional":true}]},{"ID":11668,"SourceStructureID":6589,"TargetStructureID":22554,"Label":"6589-22554 via BC Conventional Synapse from 60886 -> 22562, 132684 -> 132685","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":60886,"TargetID":22562,"Directional":true},{"SourceID":132684,"TargetID":132685,"Directional":true}]},{"ID":11669,"SourceStructureID":6589,"TargetStructureID":22554,"Label":"6589-22554 via Ribbon Synapse from 60888 -> 22559, 120032 -> 22558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60888,"TargetID":22559,"Directional":true},{"SourceID":120032,"TargetID":22558,"Directional":true}]},{"ID":11670,"SourceStructureID":6589,"TargetStructureID":40469,"Label":"6589-40469 via Ribbon Synapse from 132670 -> 40470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132670,"TargetID":40470,"Directional":true}]},{"ID":11671,"SourceStructureID":6589,"TargetStructureID":54744,"Label":"6589-54744 via Ribbon Synapse from 6600 -> 54761, 6602 -> 54760, 9578 -> 132759, 123737 -> 132711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6600,"TargetID":54761,"Directional":true},{"SourceID":6602,"TargetID":54760,"Directional":true},{"SourceID":9578,"TargetID":132759,"Directional":true},{"SourceID":123737,"TargetID":132711,"Directional":true}]},{"ID":11672,"SourceStructureID":6589,"TargetStructureID":63371,"Label":"6589-63371 via Ribbon Synapse from 63374 -> 63372","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63374,"TargetID":63372,"Directional":true}]},{"ID":11673,"SourceStructureID":6589,"TargetStructureID":64357,"Label":"6589-64357 via Ribbon Synapse from 60889 -> 132649","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60889,"TargetID":132649,"Directional":true}]},{"ID":11674,"SourceStructureID":6589,"TargetStructureID":70833,"Label":"6589-70833 via Ribbon Synapse from 70858 -> 70859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70858,"TargetID":70859,"Directional":true}]},{"ID":11675,"SourceStructureID":6589,"TargetStructureID":70868,"Label":"6589-70868 via Ribbon Synapse from 123755 -> 132735","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123755,"TargetID":132735,"Directional":true}]},{"ID":11676,"SourceStructureID":6589,"TargetStructureID":92331,"Label":"6589-92331 via Ribbon Synapse from 9591 -> 132637","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9591,"TargetID":132637,"Directional":true}]},{"ID":11677,"SourceStructureID":6589,"TargetStructureID":95701,"Label":"6589-95701 via Ribbon Synapse from 6590 -> 95750, 6596 -> 132738, 6604 -> 95702, 9534 -> 95747, 9538 -> 132748","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6590,"TargetID":95750,"Directional":true},{"SourceID":6596,"TargetID":132738,"Directional":true},{"SourceID":6604,"TargetID":95702,"Directional":true},{"SourceID":9534,"TargetID":95747,"Directional":true},{"SourceID":9538,"TargetID":132748,"Directional":true}]},{"ID":11678,"SourceStructureID":6589,"TargetStructureID":121541,"Label":"6589-121541 via Ribbon Synapse from 9570 -> 121553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9570,"TargetID":121553,"Directional":true}]},{"ID":11679,"SourceStructureID":6589,"TargetStructureID":132712,"Label":"6589-132712 via Ribbon Synapse from 9566 -> 132713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9566,"TargetID":132713,"Directional":true}]},{"ID":11680,"SourceStructureID":6589,"TargetStructureID":132722,"Label":"6589-132722 via Ribbon Synapse from 9565 -> 132723, 132721 -> 132723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9565,"TargetID":132723,"Directional":true},{"SourceID":132721,"TargetID":132723,"Directional":true}]},{"ID":11681,"SourceStructureID":6589,"TargetStructureID":132740,"Label":"6589-132740 via BC Conventional Synapse from 132741 -> 132742","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":132741,"TargetID":132742,"Directional":true}]},{"ID":11682,"SourceStructureID":6617,"TargetStructureID":304,"Label":"6617-304 via Ribbon Synapse from 17289 -> 17288, 17290 -> 17291, 17294 -> 17293, 17574 -> 17573, 17683 -> 17682, 17723 -> 17722, 18331 -> 18330, 18874 -> 18881, 18893 -> 18894","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17289,"TargetID":17288,"Directional":true},{"SourceID":17290,"TargetID":17291,"Directional":true},{"SourceID":17294,"TargetID":17293,"Directional":true},{"SourceID":17574,"TargetID":17573,"Directional":true},{"SourceID":17683,"TargetID":17682,"Directional":true},{"SourceID":17723,"TargetID":17722,"Directional":true},{"SourceID":18331,"TargetID":18330,"Directional":true},{"SourceID":18874,"TargetID":18881,"Directional":true},{"SourceID":18893,"TargetID":18894,"Directional":true}]},{"ID":11683,"SourceStructureID":6617,"TargetStructureID":410,"Label":"6617-410 via Ribbon Synapse from 17566 -> 17565, 17707 -> 17706, 17711 -> 17710, 17716 -> 17715, 18346 -> 17656","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17566,"TargetID":17565,"Directional":true},{"SourceID":17707,"TargetID":17706,"Directional":true},{"SourceID":17711,"TargetID":17710,"Directional":true},{"SourceID":17716,"TargetID":17715,"Directional":true},{"SourceID":18346,"TargetID":17656,"Directional":true}]},{"ID":11684,"SourceStructureID":6617,"TargetStructureID":2610,"Label":"6617-2610 via Ribbon Synapse from 18874 -> 18877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18874,"TargetID":18877,"Directional":true}]},{"ID":11685,"SourceStructureID":6617,"TargetStructureID":32660,"Label":"6617-32660 via Ribbon Synapse from 6625 -> 32665","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6625,"TargetID":32665,"Directional":true}]},{"ID":11686,"SourceStructureID":6618,"TargetStructureID":304,"Label":"6618-304 via Ribbon Synapse from 17743 -> 17744, 18919 -> 18920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17743,"TargetID":17744,"Directional":true},{"SourceID":18919,"TargetID":18920,"Directional":true}]},{"ID":11687,"SourceStructureID":6618,"TargetStructureID":410,"Label":"6618-410 via Ribbon Synapse from 17701 -> 17700, 17704 -> 17703, 17709 -> 17708, 18335 -> 17578, 18337 -> 18336, 18340 -> 18339, 18905 -> 18906, 18918 -> 22486, 22485 -> 22487, 22499 -> 22498","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17701,"TargetID":17700,"Directional":true},{"SourceID":17704,"TargetID":17703,"Directional":true},{"SourceID":17709,"TargetID":17708,"Directional":true},{"SourceID":18335,"TargetID":17578,"Directional":true},{"SourceID":18337,"TargetID":18336,"Directional":true},{"SourceID":18340,"TargetID":18339,"Directional":true},{"SourceID":18905,"TargetID":18906,"Directional":true},{"SourceID":18918,"TargetID":22486,"Directional":true},{"SourceID":22485,"TargetID":22487,"Directional":true},{"SourceID":22499,"TargetID":22498,"Directional":true}]},{"ID":11688,"SourceStructureID":6618,"TargetStructureID":4850,"Label":"6618-4850 via Ribbon Synapse from 18900 -> 30714","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18900,"TargetID":30714,"Directional":true}]},{"ID":11689,"SourceStructureID":6618,"TargetStructureID":29791,"Label":"6618-29791 via Ribbon Synapse from 18908 -> 29794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18908,"TargetID":29794,"Directional":true}]},{"ID":11690,"SourceStructureID":6618,"TargetStructureID":40919,"Label":"6618-40919 via Ribbon Synapse from 18901 -> 60507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18901,"TargetID":60507,"Directional":true}]},{"ID":11691,"SourceStructureID":6656,"TargetStructureID":421,"Label":"6656-421 via BC Conventional Synapse from 31857 -> 31856","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":31857,"TargetID":31856,"Directional":true}]},{"ID":11692,"SourceStructureID":6909,"TargetStructureID":7594,"Label":"6909-7594 via Ribbon Synapse from 38220 -> 25161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38220,"TargetID":25161,"Directional":true}]},{"ID":11693,"SourceStructureID":6910,"TargetStructureID":42951,"Label":"6910-42951 via Ribbon Synapse from 42998 -> 42994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42998,"TargetID":42994,"Directional":true}]},{"ID":11694,"SourceStructureID":6911,"TargetStructureID":7345,"Label":"6911-7345 via Ribbon Synapse from 33654 -> 56576, 56579 -> 56578","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33654,"TargetID":56576,"Directional":true},{"SourceID":56579,"TargetID":56578,"Directional":true}]},{"ID":11695,"SourceStructureID":6912,"TargetStructureID":2064,"Label":"6912-2064 via Ribbon Synapse from 6922 -> 13192, 51059 -> 13196","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6922,"TargetID":13192,"Directional":true},{"SourceID":51059,"TargetID":13196,"Directional":true}]},{"ID":11696,"SourceStructureID":6912,"TargetStructureID":7594,"Label":"6912-7594 via Ribbon Synapse from 25125 -> 25124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25125,"TargetID":25124,"Directional":true}]},{"ID":11697,"SourceStructureID":6912,"TargetStructureID":25869,"Label":"6912-25869 via Ribbon Synapse from 6937 -> 98609","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":6937,"TargetID":98609,"Directional":true}]},{"ID":11698,"SourceStructureID":6912,"TargetStructureID":32379,"Label":"6912-32379 via Ribbon Synapse from 51075 -> 101689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51075,"TargetID":101689,"Directional":true}]},{"ID":11699,"SourceStructureID":6912,"TargetStructureID":33127,"Label":"6912-33127 via Ribbon Synapse from 33137 -> 33136","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33137,"TargetID":33136,"Directional":true}]},{"ID":11700,"SourceStructureID":6912,"TargetStructureID":35068,"Label":"6912-35068 via BC Conventional Synapse from 123180 -> 35070","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":123180,"TargetID":35070,"Directional":true}]},{"ID":11701,"SourceStructureID":6912,"TargetStructureID":35068,"Label":"6912-35068 via Ribbon Synapse from 35074 -> 35071","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35074,"TargetID":35071,"Directional":true}]},{"ID":11702,"SourceStructureID":6912,"TargetStructureID":69162,"Label":"6912-69162 via Ribbon Synapse from 48370 -> 69254, 51147 -> 69250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48370,"TargetID":69254,"Directional":true},{"SourceID":51147,"TargetID":69250,"Directional":true}]},{"ID":11703,"SourceStructureID":6957,"TargetStructureID":42866,"Label":"6957-42866 via Ribbon Synapse from 42913 -> 42868","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42913,"TargetID":42868,"Directional":true}]},{"ID":11704,"SourceStructureID":6957,"TargetStructureID":42890,"Label":"6957-42890 via Ribbon Synapse from 122052 -> 122053","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122052,"TargetID":122053,"Directional":true}]},{"ID":11705,"SourceStructureID":6957,"TargetStructureID":42895,"Label":"6957-42895 via Ribbon Synapse from 42919 -> 42906, 42921 -> 42922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42919,"TargetID":42906,"Directional":true},{"SourceID":42921,"TargetID":42922,"Directional":true}]},{"ID":11706,"SourceStructureID":6958,"TargetStructureID":606,"Label":"6958-606 via Ribbon Synapse from 51832 -> 51835, 51833 -> 51834, 117945 -> 51795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51832,"TargetID":51835,"Directional":true},{"SourceID":51833,"TargetID":51834,"Directional":true},{"SourceID":117945,"TargetID":51795,"Directional":true}]},{"ID":11707,"SourceStructureID":6958,"TargetStructureID":5117,"Label":"6958-5117 via Ribbon Synapse from 116573 -> 116572, 116574 -> 116572, 117939 -> 117946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116573,"TargetID":116572,"Directional":true},{"SourceID":116574,"TargetID":116572,"Directional":true},{"SourceID":117939,"TargetID":117946,"Directional":true}]},{"ID":11708,"SourceStructureID":6958,"TargetStructureID":5374,"Label":"6958-5374 via Ribbon Synapse from 20450 -> 20446, 20452 -> 20449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20450,"TargetID":20446,"Directional":true},{"SourceID":20452,"TargetID":20449,"Directional":true}]},{"ID":11709,"SourceStructureID":6958,"TargetStructureID":8579,"Label":"6958-8579 via Ribbon Synapse from 118042 -> 62947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118042,"TargetID":62947,"Directional":true}]},{"ID":11710,"SourceStructureID":6958,"TargetStructureID":8589,"Label":"6958-8589 via BC Conventional Synapse from 70475 -> 70478","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":70475,"TargetID":70478,"Directional":true}]},{"ID":11711,"SourceStructureID":6958,"TargetStructureID":63978,"Label":"6958-63978 via Ribbon Synapse from 56413 -> 63995","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56413,"TargetID":63995,"Directional":true}]},{"ID":11712,"SourceStructureID":6958,"TargetStructureID":122768,"Label":"6958-122768 via Ribbon Synapse from 118032 -> 122791","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118032,"TargetID":122791,"Directional":true}]},{"ID":11713,"SourceStructureID":6965,"TargetStructureID":606,"Label":"6965-606 via Ribbon Synapse from 54424 -> 54422","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54424,"TargetID":54422,"Directional":true}]},{"ID":11714,"SourceStructureID":6965,"TargetStructureID":5413,"Label":"6965-5413 via Ribbon Synapse from 121942 -> 130918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121942,"TargetID":130918,"Directional":true}]},{"ID":11715,"SourceStructureID":6965,"TargetStructureID":11238,"Label":"6965-11238 via Ribbon Synapse from 136245 -> 136244","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136245,"TargetID":136244,"Directional":true}]},{"ID":11716,"SourceStructureID":6997,"TargetStructureID":390,"Label":"6997-390 via Ribbon Synapse from 70894 -> 65110","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70894,"TargetID":65110,"Directional":true}]},{"ID":11717,"SourceStructureID":6997,"TargetStructureID":525,"Label":"6997-525 via BC Conventional Synapse from 22033 -> 22034","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":22033,"TargetID":22034,"Directional":true}]},{"ID":11718,"SourceStructureID":6997,"TargetStructureID":1620,"Label":"6997-1620 via Ribbon Synapse from 21951 -> 16841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21951,"TargetID":16841,"Directional":true}]},{"ID":11719,"SourceStructureID":6997,"TargetStructureID":4890,"Label":"6997-4890 via Ribbon Synapse from 64901 -> 64900, 64904 -> 64903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64901,"TargetID":64900,"Directional":true},{"SourceID":64904,"TargetID":64903,"Directional":true}]},{"ID":11720,"SourceStructureID":6997,"TargetStructureID":5117,"Label":"6997-5117 via Ribbon Synapse from 22042 -> 15010, 22108 -> 15008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22042,"TargetID":15010,"Directional":true},{"SourceID":22108,"TargetID":15008,"Directional":true}]},{"ID":11721,"SourceStructureID":6997,"TargetStructureID":5507,"Label":"6997-5507 via Ribbon Synapse from 7000 -> 21896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7000,"TargetID":21896,"Directional":true}]},{"ID":11722,"SourceStructureID":6997,"TargetStructureID":8720,"Label":"6997-8720 via Ribbon Synapse from 136642 -> 15302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136642,"TargetID":15302,"Directional":true}]},{"ID":11723,"SourceStructureID":6997,"TargetStructureID":18282,"Label":"6997-18282 via Ribbon Synapse from 31419 -> 31416, 31438 -> 31437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31419,"TargetID":31416,"Directional":true},{"SourceID":31438,"TargetID":31437,"Directional":true}]},{"ID":11724,"SourceStructureID":6997,"TargetStructureID":20728,"Label":"6997-20728 via Ribbon Synapse from 20732 -> 20731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20732,"TargetID":20731,"Directional":true}]},{"ID":11725,"SourceStructureID":6997,"TargetStructureID":32804,"Label":"6997-32804 via Ribbon Synapse from 22170 -> 32823, 22282 -> 32826, 22311 -> 32830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22170,"TargetID":32823,"Directional":true},{"SourceID":22282,"TargetID":32826,"Directional":true},{"SourceID":22311,"TargetID":32830,"Directional":true}]},{"ID":11726,"SourceStructureID":6997,"TargetStructureID":34882,"Label":"6997-34882 via Ribbon Synapse from 28761 -> 34885, 70892 -> 70893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28761,"TargetID":34885,"Directional":true},{"SourceID":70892,"TargetID":70893,"Directional":true}]},{"ID":11727,"SourceStructureID":6997,"TargetStructureID":43507,"Label":"6997-43507 via BC Conventional Synapse from 136647 -> 136648","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":136647,"TargetID":136648,"Directional":true}]},{"ID":11728,"SourceStructureID":6997,"TargetStructureID":45677,"Label":"6997-45677 via Ribbon Synapse from 82947 -> 82948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82947,"TargetID":82948,"Directional":true}]},{"ID":11729,"SourceStructureID":6997,"TargetStructureID":61270,"Label":"6997-61270 via Ribbon Synapse from 22153 -> 61283, 22311 -> 61275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22153,"TargetID":61283,"Directional":true},{"SourceID":22311,"TargetID":61275,"Directional":true}]},{"ID":11730,"SourceStructureID":6997,"TargetStructureID":63371,"Label":"6997-63371 via BC Conventional Synapse from 95992 -> 63375","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95992,"TargetID":63375,"Directional":true}]},{"ID":11731,"SourceStructureID":6997,"TargetStructureID":66407,"Label":"6997-66407 via Ribbon Synapse from 83109 -> 83104, 83112 -> 69353","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83109,"TargetID":83104,"Directional":true},{"SourceID":83112,"TargetID":69353,"Directional":true}]},{"ID":11732,"SourceStructureID":6997,"TargetStructureID":66946,"Label":"6997-66946 via Ribbon Synapse from 80637 -> 82944","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80637,"TargetID":82944,"Directional":true}]},{"ID":11733,"SourceStructureID":6997,"TargetStructureID":66958,"Label":"6997-66958 via Ribbon Synapse from 22245 -> 70103, 83030 -> 70067","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22245,"TargetID":70103,"Directional":true},{"SourceID":83030,"TargetID":70067,"Directional":true}]},{"ID":11734,"SourceStructureID":6997,"TargetStructureID":68286,"Label":"6997-68286 via Ribbon Synapse from 28710 -> 80652","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28710,"TargetID":80652,"Directional":true}]},{"ID":11735,"SourceStructureID":6997,"TargetStructureID":68302,"Label":"6997-68302 via Ribbon Synapse from 22108 -> 82940, 82930 -> 82929, 82935 -> 82934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22108,"TargetID":82940,"Directional":true},{"SourceID":82930,"TargetID":82929,"Directional":true},{"SourceID":82935,"TargetID":82934,"Directional":true}]},{"ID":11736,"SourceStructureID":6997,"TargetStructureID":70069,"Label":"6997-70069 via Ribbon Synapse from 83030 -> 70070","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83030,"TargetID":70070,"Directional":true}]},{"ID":11737,"SourceStructureID":6997,"TargetStructureID":70868,"Label":"6997-70868 via Ribbon Synapse from 70895 -> 70888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70895,"TargetID":70888,"Directional":true}]},{"ID":11738,"SourceStructureID":6997,"TargetStructureID":78301,"Label":"6997-78301 via Ribbon Synapse from 28762 -> 78302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28762,"TargetID":78302,"Directional":true}]},{"ID":11739,"SourceStructureID":6997,"TargetStructureID":78303,"Label":"6997-78303 via Ribbon Synapse from 136268 -> 136833","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136268,"TargetID":136833,"Directional":true}]},{"ID":11740,"SourceStructureID":6997,"TargetStructureID":79911,"Label":"6997-79911 via Ribbon Synapse from 83118 -> 79912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83118,"TargetID":79912,"Directional":true}]},{"ID":11741,"SourceStructureID":6997,"TargetStructureID":79921,"Label":"6997-79921 via Ribbon Synapse from 83094 -> 79922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83094,"TargetID":79922,"Directional":true}]},{"ID":11742,"SourceStructureID":6997,"TargetStructureID":79926,"Label":"6997-79926 via Ribbon Synapse from 83094 -> 83098","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83094,"TargetID":83098,"Directional":true}]},{"ID":11743,"SourceStructureID":6997,"TargetStructureID":79943,"Label":"6997-79943 via Ribbon Synapse from 83109 -> 79944","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83109,"TargetID":79944,"Directional":true}]},{"ID":11744,"SourceStructureID":6997,"TargetStructureID":79946,"Label":"6997-79946 via Ribbon Synapse from 83111 -> 79947","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83111,"TargetID":79947,"Directional":true}]},{"ID":11745,"SourceStructureID":6997,"TargetStructureID":79948,"Label":"6997-79948 via Ribbon Synapse from 83111 -> 79949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83111,"TargetID":79949,"Directional":true}]},{"ID":11746,"SourceStructureID":6997,"TargetStructureID":79958,"Label":"6997-79958 via Ribbon Synapse from 83112 -> 79959","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83112,"TargetID":79959,"Directional":true}]},{"ID":11747,"SourceStructureID":6997,"TargetStructureID":79960,"Label":"6997-79960 via Ribbon Synapse from 83112 -> 79961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83112,"TargetID":79961,"Directional":true}]},{"ID":11748,"SourceStructureID":6997,"TargetStructureID":79966,"Label":"6997-79966 via Ribbon Synapse from 83091 -> 79967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83091,"TargetID":79967,"Directional":true}]},{"ID":11749,"SourceStructureID":6997,"TargetStructureID":79968,"Label":"6997-79968 via Ribbon Synapse from 83091 -> 79969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83091,"TargetID":79969,"Directional":true}]},{"ID":11750,"SourceStructureID":6997,"TargetStructureID":79970,"Label":"6997-79970 via Ribbon Synapse from 83078 -> 79974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83078,"TargetID":79974,"Directional":true}]},{"ID":11751,"SourceStructureID":6997,"TargetStructureID":79975,"Label":"6997-79975 via Ribbon Synapse from 83078 -> 79976","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83078,"TargetID":79976,"Directional":true}]},{"ID":11752,"SourceStructureID":6997,"TargetStructureID":79984,"Label":"6997-79984 via Ribbon Synapse from 83082 -> 79992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83082,"TargetID":79992,"Directional":true}]},{"ID":11753,"SourceStructureID":6997,"TargetStructureID":79993,"Label":"6997-79993 via Ribbon Synapse from 83082 -> 79994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83082,"TargetID":79994,"Directional":true}]},{"ID":11754,"SourceStructureID":6997,"TargetStructureID":80026,"Label":"6997-80026 via Ribbon Synapse from 83025 -> 80027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83025,"TargetID":80027,"Directional":true}]},{"ID":11755,"SourceStructureID":6997,"TargetStructureID":80034,"Label":"6997-80034 via Ribbon Synapse from 84434 -> 84435","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84434,"TargetID":84435,"Directional":true}]},{"ID":11756,"SourceStructureID":6997,"TargetStructureID":80042,"Label":"6997-80042 via BC Conventional Synapse from 83066 -> 80044","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":83066,"TargetID":80044,"Directional":true}]},{"ID":11757,"SourceStructureID":6997,"TargetStructureID":80051,"Label":"6997-80051 via Ribbon Synapse from 83024 -> 81886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83024,"TargetID":81886,"Directional":true}]},{"ID":11758,"SourceStructureID":6997,"TargetStructureID":81098,"Label":"6997-81098 via Ribbon Synapse from 22300 -> 81101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22300,"TargetID":81101,"Directional":true}]},{"ID":11759,"SourceStructureID":6997,"TargetStructureID":82216,"Label":"6997-82216 via Ribbon Synapse from 31428 -> 82219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31428,"TargetID":82219,"Directional":true}]},{"ID":11760,"SourceStructureID":6997,"TargetStructureID":83105,"Label":"6997-83105 via Ribbon Synapse from 83109 -> 83106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83109,"TargetID":83106,"Directional":true}]},{"ID":11761,"SourceStructureID":6997,"TargetStructureID":83114,"Label":"6997-83114 via Ribbon Synapse from 83112 -> 83115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83112,"TargetID":83115,"Directional":true}]},{"ID":11762,"SourceStructureID":6997,"TargetStructureID":84830,"Label":"6997-84830 via BC Conventional Synapse from 84883 -> 84882","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84883,"TargetID":84882,"Directional":true}]},{"ID":11763,"SourceStructureID":6997,"TargetStructureID":84830,"Label":"6997-84830 via Ribbon Synapse from 21927 -> 85447, 22143 -> 84895, 52510 -> 84891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21927,"TargetID":85447,"Directional":true},{"SourceID":22143,"TargetID":84895,"Directional":true},{"SourceID":52510,"TargetID":84891,"Directional":true}]},{"ID":11764,"SourceStructureID":6997,"TargetStructureID":95772,"Label":"6997-95772 via BC Conventional Synapse from 95774 -> 95773","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":95774,"TargetID":95773,"Directional":true}]},{"ID":11765,"SourceStructureID":6997,"TargetStructureID":95999,"Label":"6997-95999 via Ribbon Synapse from 136702 -> 136703, 136709 -> 96002","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136702,"TargetID":136703,"Directional":true},{"SourceID":136709,"TargetID":96002,"Directional":true}]},{"ID":11766,"SourceStructureID":6997,"TargetStructureID":101428,"Label":"6997-101428 via Ribbon Synapse from 136268 -> 136832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136268,"TargetID":136832,"Directional":true}]},{"ID":11767,"SourceStructureID":6997,"TargetStructureID":127841,"Label":"6997-127841 via Ribbon Synapse from 22272 -> 127843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22272,"TargetID":127843,"Directional":true}]},{"ID":11768,"SourceStructureID":6997,"TargetStructureID":133260,"Label":"6997-133260 via Ribbon Synapse from 133263 -> 133262","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133263,"TargetID":133262,"Directional":true}]},{"ID":11769,"SourceStructureID":6997,"TargetStructureID":136677,"Label":"6997-136677 via BC Conventional Synapse from 136679 -> 136678","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":136679,"TargetID":136678,"Directional":true}]},{"ID":11770,"SourceStructureID":7024,"TargetStructureID":606,"Label":"7024-606 via Ribbon Synapse from 46436 -> 10502, 46473 -> 46585, 46596 -> 10498, 46609 -> 10499, 47347 -> 47346, 48510 -> 48511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46436,"TargetID":10502,"Directional":true},{"SourceID":46473,"TargetID":46585,"Directional":true},{"SourceID":46596,"TargetID":10498,"Directional":true},{"SourceID":46609,"TargetID":10499,"Directional":true},{"SourceID":47347,"TargetID":47346,"Directional":true},{"SourceID":48510,"TargetID":48511,"Directional":true}]},{"ID":11771,"SourceStructureID":7024,"TargetStructureID":5396,"Label":"7024-5396 via Ribbon Synapse from 40154 -> 89451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40154,"TargetID":89451,"Directional":true}]},{"ID":11772,"SourceStructureID":7024,"TargetStructureID":9769,"Label":"7024-9769 via Ribbon Synapse from 10908 -> 10909, 10911 -> 10910, 10913 -> 10912, 20232 -> 20230, 20242 -> 20243, 20245 -> 20246, 53239 -> 53237, 53391 -> 11259, 114206 -> 148205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10908,"TargetID":10909,"Directional":true},{"SourceID":10911,"TargetID":10910,"Directional":true},{"SourceID":10913,"TargetID":10912,"Directional":true},{"SourceID":20232,"TargetID":20230,"Directional":true},{"SourceID":20242,"TargetID":20243,"Directional":true},{"SourceID":20245,"TargetID":20246,"Directional":true},{"SourceID":53239,"TargetID":53237,"Directional":true},{"SourceID":53391,"TargetID":11259,"Directional":true},{"SourceID":114206,"TargetID":148205,"Directional":true}]},{"ID":11773,"SourceStructureID":7024,"TargetStructureID":31161,"Label":"7024-31161 via Ribbon Synapse from 106600 -> 31219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106600,"TargetID":31219,"Directional":true}]},{"ID":11774,"SourceStructureID":7024,"TargetStructureID":39982,"Label":"7024-39982 via Ribbon Synapse from 40159 -> 40138","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40159,"TargetID":40138,"Directional":true}]},{"ID":11775,"SourceStructureID":7024,"TargetStructureID":53245,"Label":"7024-53245 via Ribbon Synapse from 20245 -> 53248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20245,"TargetID":53248,"Directional":true}]},{"ID":11776,"SourceStructureID":7024,"TargetStructureID":77215,"Label":"7024-77215 via Ribbon Synapse from 106600 -> 106565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106600,"TargetID":106565,"Directional":true}]},{"ID":11777,"SourceStructureID":7024,"TargetStructureID":97443,"Label":"7024-97443 via Ribbon Synapse from 40159 -> 113495","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40159,"TargetID":113495,"Directional":true}]},{"ID":11778,"SourceStructureID":7024,"TargetStructureID":97445,"Label":"7024-97445 via Ribbon Synapse from 40159 -> 97447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40159,"TargetID":97447,"Directional":true}]},{"ID":11779,"SourceStructureID":7040,"TargetStructureID":5396,"Label":"7040-5396 via Ribbon Synapse from 93699 -> 89492","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93699,"TargetID":89492,"Directional":true}]},{"ID":11780,"SourceStructureID":7040,"TargetStructureID":8575,"Label":"7040-8575 via Ribbon Synapse from 63056 -> 63055, 93727 -> 62231","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63056,"TargetID":63055,"Directional":true},{"SourceID":93727,"TargetID":62231,"Directional":true}]},{"ID":11781,"SourceStructureID":7040,"TargetStructureID":16073,"Label":"7040-16073 via BC Conventional Synapse from 19962 -> 19958","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":19962,"TargetID":19958,"Directional":true}]},{"ID":11782,"SourceStructureID":7040,"TargetStructureID":68539,"Label":"7040-68539 via Ribbon Synapse from 50300 -> 69096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50300,"TargetID":69096,"Directional":true}]},{"ID":11783,"SourceStructureID":7040,"TargetStructureID":93685,"Label":"7040-93685 via Ribbon Synapse from 93690 -> 93691","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93690,"TargetID":93691,"Directional":true}]},{"ID":11784,"SourceStructureID":7043,"TargetStructureID":8576,"Label":"7043-8576 via Ribbon Synapse from 37724 -> 37725, 37738 -> 69037","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37724,"TargetID":37725,"Directional":true},{"SourceID":37738,"TargetID":69037,"Directional":true}]},{"ID":11785,"SourceStructureID":7043,"TargetStructureID":31024,"Label":"7043-31024 via Ribbon Synapse from 31360 -> 31082, 31361 -> 31046","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31360,"TargetID":31082,"Directional":true},{"SourceID":31361,"TargetID":31046,"Directional":true}]},{"ID":11786,"SourceStructureID":7043,"TargetStructureID":69049,"Label":"7043-69049 via Ribbon Synapse from 37726 -> 69059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37726,"TargetID":69059,"Directional":true}]},{"ID":11787,"SourceStructureID":7043,"TargetStructureID":77777,"Label":"7043-77777 via Ribbon Synapse from 37727 -> 119029","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37727,"TargetID":119029,"Directional":true}]},{"ID":11788,"SourceStructureID":7043,"TargetStructureID":78174,"Label":"7043-78174 via Ribbon Synapse from 118711 -> 118967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118711,"TargetID":118967,"Directional":true}]},{"ID":11789,"SourceStructureID":7043,"TargetStructureID":89292,"Label":"7043-89292 via Ribbon Synapse from 89263 -> 89294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89263,"TargetID":89294,"Directional":true}]},{"ID":11790,"SourceStructureID":7050,"TargetStructureID":5622,"Label":"7050-5622 via Conventional from 113003 -> 113000","Type":"Conventional","Directional":true,"Links":[{"SourceID":113003,"TargetID":113000,"Directional":true}]},{"ID":11791,"SourceStructureID":7050,"TargetStructureID":5671,"Label":"7050-5671 via Conventional from 24904 -> 24903, 24905 -> 24906, 24920 -> 24921","Type":"Conventional","Directional":true,"Links":[{"SourceID":24904,"TargetID":24903,"Directional":true},{"SourceID":24905,"TargetID":24906,"Directional":true},{"SourceID":24920,"TargetID":24921,"Directional":true}]},{"ID":11792,"SourceStructureID":7050,"TargetStructureID":5922,"Label":"7050-5922 via Conventional from 55667 -> 68833, 68843 -> 68842, 68845 -> 68844","Type":"Conventional","Directional":true,"Links":[{"SourceID":55667,"TargetID":68833,"Directional":true},{"SourceID":68843,"TargetID":68842,"Directional":true},{"SourceID":68845,"TargetID":68844,"Directional":true}]},{"ID":11793,"SourceStructureID":7050,"TargetStructureID":24898,"Label":"7050-24898 via Conventional from 24942 -> 24939","Type":"Conventional","Directional":true,"Links":[{"SourceID":24942,"TargetID":24939,"Directional":true}]},{"ID":11794,"SourceStructureID":7050,"TargetStructureID":24909,"Label":"7050-24909 via Conventional from 24907 -> 24910","Type":"Conventional","Directional":true,"Links":[{"SourceID":24907,"TargetID":24910,"Directional":true}]},{"ID":11795,"SourceStructureID":7050,"TargetStructureID":148374,"Label":"7050-148374 via Conventional from 113006 -> 148395","Type":"Conventional","Directional":true,"Links":[{"SourceID":113006,"TargetID":148395,"Directional":true}]},{"ID":11796,"SourceStructureID":7054,"TargetStructureID":514,"Label":"7054-514 via Ribbon Synapse from 7056 -> 2601, 10917 -> 1553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":7056,"TargetID":2601,"Directional":true},{"SourceID":10917,"TargetID":1553,"Directional":true}]},{"ID":11797,"SourceStructureID":7054,"TargetStructureID":3679,"Label":"7054-3679 via Ribbon Synapse from 43246 -> 43245, 66132 -> 66133, 66134 -> 66135, 135061 -> 135060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43246,"TargetID":43245,"Directional":true},{"SourceID":66132,"TargetID":66133,"Directional":true},{"SourceID":66134,"TargetID":66135,"Directional":true},{"SourceID":135061,"TargetID":135060,"Directional":true}]},{"ID":11798,"SourceStructureID":7054,"TargetStructureID":4850,"Label":"7054-4850 via Ribbon Synapse from 10916 -> 19467","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10916,"TargetID":19467,"Directional":true}]},{"ID":11799,"SourceStructureID":7054,"TargetStructureID":8037,"Label":"7054-8037 via Ribbon Synapse from 25425 -> 25424, 30553 -> 15730","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25425,"TargetID":25424,"Directional":true},{"SourceID":30553,"TargetID":15730,"Directional":true}]},{"ID":11800,"SourceStructureID":7054,"TargetStructureID":12897,"Label":"7054-12897 via Ribbon Synapse from 30553 -> 24743","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30553,"TargetID":24743,"Directional":true}]},{"ID":11801,"SourceStructureID":7054,"TargetStructureID":25410,"Label":"7054-25410 via Ribbon Synapse from 25418 -> 25417","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25418,"TargetID":25417,"Directional":true}]},{"ID":11802,"SourceStructureID":7054,"TargetStructureID":32676,"Label":"7054-32676 via Ribbon Synapse from 10901 -> 32679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10901,"TargetID":32679,"Directional":true}]},{"ID":11803,"SourceStructureID":7073,"TargetStructureID":5150,"Label":"7073-5150 via Conventional from 11822 -> 5239, 11822 -> 19802","Type":"Conventional","Directional":true,"Links":[{"SourceID":11822,"TargetID":5239,"Directional":true},{"SourceID":11822,"TargetID":19802,"Directional":true}]},{"ID":11804,"SourceStructureID":7073,"TargetStructureID":8575,"Label":"7073-8575 via Conventional from 19883 -> 62816","Type":"Conventional","Directional":true,"Links":[{"SourceID":19883,"TargetID":62816,"Directional":true}]},{"ID":11805,"SourceStructureID":7073,"TargetStructureID":16073,"Label":"7073-16073 via Conventional from 24520 -> 24198","Type":"Conventional","Directional":true,"Links":[{"SourceID":24520,"TargetID":24198,"Directional":true}]},{"ID":11806,"SourceStructureID":7073,"TargetStructureID":29340,"Label":"7073-29340 via Conventional from 11844 -> 29394","Type":"Conventional","Directional":true,"Links":[{"SourceID":11844,"TargetID":29394,"Directional":true}]},{"ID":11807,"SourceStructureID":7073,"TargetStructureID":72162,"Label":"7073-72162 via Conventional from 11789 -> 82949","Type":"Conventional","Directional":true,"Links":[{"SourceID":11789,"TargetID":82949,"Directional":true}]},{"ID":11808,"SourceStructureID":7073,"TargetStructureID":129927,"Label":"7073-129927 via Conventional from 19595 -> 129935","Type":"Conventional","Directional":true,"Links":[{"SourceID":19595,"TargetID":129935,"Directional":true}]},{"ID":11809,"SourceStructureID":7075,"TargetStructureID":5860,"Label":"7075-5860 via Ribbon Synapse from 62353 -> 62352, 123334 -> 62352","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62353,"TargetID":62352,"Directional":true},{"SourceID":123334,"TargetID":62352,"Directional":true}]},{"ID":11810,"SourceStructureID":7075,"TargetStructureID":7204,"Label":"7075-7204 via Ribbon Synapse from 133765 -> 133763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":133765,"TargetID":133763,"Directional":true}]},{"ID":11811,"SourceStructureID":7075,"TargetStructureID":8575,"Label":"7075-8575 via BC Conventional Synapse from 62358 -> 62347","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62358,"TargetID":62347,"Directional":true}]},{"ID":11812,"SourceStructureID":7075,"TargetStructureID":43631,"Label":"7075-43631 via Ribbon Synapse from 43649 -> 43635","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43649,"TargetID":43635,"Directional":true}]},{"ID":11813,"SourceStructureID":7112,"TargetStructureID":7073,"Label":"7112-7073 via Conventional from 122000 -> 11793","Type":"Conventional","Directional":true,"Links":[{"SourceID":122000,"TargetID":11793,"Directional":true}]},{"ID":11814,"SourceStructureID":7112,"TargetStructureID":15796,"Label":"7112-15796 via Conventional from 122001 -> 29444, 122003 -> 15816","Type":"Conventional","Directional":true,"Links":[{"SourceID":122001,"TargetID":29444,"Directional":true},{"SourceID":122003,"TargetID":15816,"Directional":true}]},{"ID":11815,"SourceStructureID":7113,"TargetStructureID":173,"Label":"7113-173 via Conventional from 19578 -> 19576, 31371 -> 31372, 31374 -> 39397","Type":"Conventional","Directional":true,"Links":[{"SourceID":19578,"TargetID":19576,"Directional":true},{"SourceID":31371,"TargetID":31372,"Directional":true},{"SourceID":31374,"TargetID":39397,"Directional":true}]},{"ID":11816,"SourceStructureID":7113,"TargetStructureID":4876,"Label":"7113-4876 via Conventional from 44988 -> 44465, 60566 -> 18943","Type":"Conventional","Directional":true,"Links":[{"SourceID":44988,"TargetID":44465,"Directional":true},{"SourceID":60566,"TargetID":18943,"Directional":true}]},{"ID":11817,"SourceStructureID":7113,"TargetStructureID":5351,"Label":"7113-5351 via Conventional from 15258 -> 24074","Type":"Conventional","Directional":true,"Links":[{"SourceID":15258,"TargetID":24074,"Directional":true}]},{"ID":11818,"SourceStructureID":7113,"TargetStructureID":5618,"Label":"7113-5618 via Conventional from 66012 -> 66013","Type":"Conventional","Directional":true,"Links":[{"SourceID":66012,"TargetID":66013,"Directional":true}]},{"ID":11819,"SourceStructureID":7113,"TargetStructureID":6011,"Label":"7113-6011 via Conventional from 21885 -> 6017, 21891 -> 6014","Type":"Conventional","Directional":true,"Links":[{"SourceID":21885,"TargetID":6017,"Directional":true},{"SourceID":21891,"TargetID":6014,"Directional":true}]},{"ID":11820,"SourceStructureID":7113,"TargetStructureID":6050,"Label":"7113-6050 via Cistern Pre from 127237 -> 127238","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":127237,"TargetID":127238,"Directional":true}]},{"ID":11821,"SourceStructureID":7113,"TargetStructureID":9376,"Label":"7113-9376 via Conventional from 27369 -> 33656","Type":"Conventional","Directional":true,"Links":[{"SourceID":27369,"TargetID":33656,"Directional":true}]},{"ID":11822,"SourceStructureID":7113,"TargetStructureID":9787,"Label":"7113-9787 via Conventional from 18104 -> 18105, 18128 -> 18122","Type":"Conventional","Directional":true,"Links":[{"SourceID":18104,"TargetID":18105,"Directional":true},{"SourceID":18128,"TargetID":18122,"Directional":true}]},{"ID":11823,"SourceStructureID":7113,"TargetStructureID":35696,"Label":"7113-35696 via Conventional from 18126 -> 35707, 35705 -> 35704, 46431 -> 46429","Type":"Conventional","Directional":true,"Links":[{"SourceID":18126,"TargetID":35707,"Directional":true},{"SourceID":35705,"TargetID":35704,"Directional":true},{"SourceID":46431,"TargetID":46429,"Directional":true}]},{"ID":11824,"SourceStructureID":7113,"TargetStructureID":60558,"Label":"7113-60558 via Conventional from 60571 -> 60561","Type":"Conventional","Directional":true,"Links":[{"SourceID":60571,"TargetID":60561,"Directional":true}]},{"ID":11825,"SourceStructureID":7113,"TargetStructureID":126536,"Label":"7113-126536 via Conventional from 27363 -> 131393, 131390 -> 131389","Type":"Conventional","Directional":true,"Links":[{"SourceID":27363,"TargetID":131393,"Directional":true},{"SourceID":131390,"TargetID":131389,"Directional":true}]},{"ID":11826,"SourceStructureID":7113,"TargetStructureID":129827,"Label":"7113-129827 via Conventional from 129837 -> 129836","Type":"Conventional","Directional":true,"Links":[{"SourceID":129837,"TargetID":129836,"Directional":true}]},{"ID":11827,"SourceStructureID":7114,"TargetStructureID":5585,"Label":"7114-5585 via Conventional from 12483 -> 24108, 24111 -> 24110, 24127 -> 24128, 36809 -> 36808, 136517 -> 32441","Type":"Conventional","Directional":true,"Links":[{"SourceID":12483,"TargetID":24108,"Directional":true},{"SourceID":24111,"TargetID":24110,"Directional":true},{"SourceID":24127,"TargetID":24128,"Directional":true},{"SourceID":36809,"TargetID":36808,"Directional":true},{"SourceID":136517,"TargetID":32441,"Directional":true}]},{"ID":11828,"SourceStructureID":7114,"TargetStructureID":5587,"Label":"7114-5587 via Conventional from 136451 -> 136450, 136457 -> 136456","Type":"Conventional","Directional":true,"Links":[{"SourceID":136451,"TargetID":136450,"Directional":true},{"SourceID":136457,"TargetID":136456,"Directional":true}]},{"ID":11829,"SourceStructureID":7114,"TargetStructureID":5596,"Label":"7114-5596 via Cistern Pre from 36873 -> 36874","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":36873,"TargetID":36874,"Directional":true}]},{"ID":11830,"SourceStructureID":7114,"TargetStructureID":5640,"Label":"7114-5640 via Conventional from 26634 -> 37061","Type":"Conventional","Directional":true,"Links":[{"SourceID":26634,"TargetID":37061,"Directional":true}]},{"ID":11831,"SourceStructureID":7114,"TargetStructureID":28913,"Label":"7114-28913 via Conventional from 32442 -> 28942, 88143 -> 28947","Type":"Conventional","Directional":true,"Links":[{"SourceID":32442,"TargetID":28942,"Directional":true},{"SourceID":88143,"TargetID":28947,"Directional":true}]},{"ID":11832,"SourceStructureID":7114,"TargetStructureID":136513,"Label":"7114-136513 via Conventional from 136518 -> 136516, 136523 -> 136522","Type":"Conventional","Directional":true,"Links":[{"SourceID":136518,"TargetID":136516,"Directional":true},{"SourceID":136523,"TargetID":136522,"Directional":true}]},{"ID":11833,"SourceStructureID":7129,"TargetStructureID":598,"Label":"7129-598 via Conventional from 56457 -> 6321","Type":"Conventional","Directional":true,"Links":[{"SourceID":56457,"TargetID":6321,"Directional":true}]},{"ID":11834,"SourceStructureID":7129,"TargetStructureID":9769,"Label":"7129-9769 via Conventional from 54016 -> 11262","Type":"Conventional","Directional":true,"Links":[{"SourceID":54016,"TargetID":11262,"Directional":true}]},{"ID":11835,"SourceStructureID":7129,"TargetStructureID":55517,"Label":"7129-55517 via Conventional from 55598 -> 55599","Type":"Conventional","Directional":true,"Links":[{"SourceID":55598,"TargetID":55599,"Directional":true}]},{"ID":11836,"SourceStructureID":7129,"TargetStructureID":89097,"Label":"7129-89097 via Conventional from 130294 -> 130295","Type":"Conventional","Directional":true,"Links":[{"SourceID":130294,"TargetID":130295,"Directional":true}]},{"ID":11837,"SourceStructureID":7134,"TargetStructureID":909,"Label":"7134-909 via Conventional from 130250 -> 130251","Type":"Conventional","Directional":true,"Links":[{"SourceID":130250,"TargetID":130251,"Directional":true}]},{"ID":11838,"SourceStructureID":7134,"TargetStructureID":3756,"Label":"7134-3756 via Conventional from 53616 -> 53622","Type":"Conventional","Directional":true,"Links":[{"SourceID":53616,"TargetID":53622,"Directional":true}]},{"ID":11839,"SourceStructureID":7134,"TargetStructureID":5297,"Label":"7134-5297 via Conventional from 98333 -> 98334, 121120 -> 116309, 121328 -> 116441, 121505 -> 98283, 122220 -> 98267, 147350 -> 147349","Type":"Conventional","Directional":true,"Links":[{"SourceID":98333,"TargetID":98334,"Directional":true},{"SourceID":121120,"TargetID":116309,"Directional":true},{"SourceID":121328,"TargetID":116441,"Directional":true},{"SourceID":121505,"TargetID":98283,"Directional":true},{"SourceID":122220,"TargetID":98267,"Directional":true},{"SourceID":147350,"TargetID":147349,"Directional":true}]},{"ID":11840,"SourceStructureID":7134,"TargetStructureID":5501,"Label":"7134-5501 via Conventional from 41657 -> 122176, 42386 -> 15778","Type":"Conventional","Directional":true,"Links":[{"SourceID":41657,"TargetID":122176,"Directional":true},{"SourceID":42386,"TargetID":15778,"Directional":true}]},{"ID":11841,"SourceStructureID":7134,"TargetStructureID":5648,"Label":"7134-5648 via Conventional from 53971 -> 53970, 122457 -> 122456","Type":"Conventional","Directional":true,"Links":[{"SourceID":53971,"TargetID":53970,"Directional":true},{"SourceID":122457,"TargetID":122456,"Directional":true}]},{"ID":11842,"SourceStructureID":7134,"TargetStructureID":6046,"Label":"7134-6046 via Conventional from 16746 -> 16721, 26766 -> 16683, 53595 -> 53596","Type":"Conventional","Directional":true,"Links":[{"SourceID":16746,"TargetID":16721,"Directional":true},{"SourceID":26766,"TargetID":16683,"Directional":true},{"SourceID":53595,"TargetID":53596,"Directional":true}]},{"ID":11843,"SourceStructureID":7134,"TargetStructureID":6121,"Label":"7134-6121 via Conventional from 53458 -> 53465, 53471 -> 53472, 53498 -> 53491","Type":"Conventional","Directional":true,"Links":[{"SourceID":53458,"TargetID":53465,"Directional":true},{"SourceID":53471,"TargetID":53472,"Directional":true},{"SourceID":53498,"TargetID":53491,"Directional":true}]},{"ID":11844,"SourceStructureID":7134,"TargetStructureID":8575,"Label":"7134-8575 via Conventional from 53609 -> 62826, 121507 -> 62822","Type":"Conventional","Directional":true,"Links":[{"SourceID":53609,"TargetID":62826,"Directional":true},{"SourceID":121507,"TargetID":62822,"Directional":true}]},{"ID":11845,"SourceStructureID":7134,"TargetStructureID":15779,"Label":"7134-15779 via Conventional from 29652 -> 29653","Type":"Conventional","Directional":true,"Links":[{"SourceID":29652,"TargetID":29653,"Directional":true}]},{"ID":11846,"SourceStructureID":7134,"TargetStructureID":46468,"Label":"7134-46468 via Conventional from 122009 -> 122010","Type":"Conventional","Directional":true,"Links":[{"SourceID":122009,"TargetID":122010,"Directional":true}]},{"ID":11847,"SourceStructureID":7134,"TargetStructureID":61450,"Label":"7134-61450 via Conventional from 61457 -> 61456","Type":"Conventional","Directional":true,"Links":[{"SourceID":61457,"TargetID":61456,"Directional":true}]},{"ID":11848,"SourceStructureID":7134,"TargetStructureID":87754,"Label":"7134-87754 via Conventional from 122195 -> 87756","Type":"Conventional","Directional":true,"Links":[{"SourceID":122195,"TargetID":87756,"Directional":true}]},{"ID":11849,"SourceStructureID":7134,"TargetStructureID":117906,"Label":"7134-117906 via Conventional from 122185 -> 122186","Type":"Conventional","Directional":true,"Links":[{"SourceID":122185,"TargetID":122186,"Directional":true}]},{"ID":11850,"SourceStructureID":7144,"TargetStructureID":59229,"Label":"7144-59229 via Ribbon Synapse from 59249 -> 59245","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59249,"TargetID":59245,"Directional":true}]},{"ID":11851,"SourceStructureID":7145,"TargetStructureID":173,"Label":"7145-173 via Conventional from 15825 -> 12116, 15826 -> 12135, 15827 -> 12132, 15829 -> 12131, 60151 -> 41241","Type":"Conventional","Directional":true,"Links":[{"SourceID":15825,"TargetID":12116,"Directional":true},{"SourceID":15826,"TargetID":12135,"Directional":true},{"SourceID":15827,"TargetID":12132,"Directional":true},{"SourceID":15829,"TargetID":12131,"Directional":true},{"SourceID":60151,"TargetID":41241,"Directional":true}]},{"ID":11852,"SourceStructureID":7145,"TargetStructureID":175,"Label":"7145-175 via Conventional from 18108 -> 2264","Type":"Conventional","Directional":true,"Links":[{"SourceID":18108,"TargetID":2264,"Directional":true}]},{"ID":11853,"SourceStructureID":7145,"TargetStructureID":4876,"Label":"7145-4876 via Conventional from 15831 -> 129035, 18109 -> 18982","Type":"Conventional","Directional":true,"Links":[{"SourceID":15831,"TargetID":129035,"Directional":true},{"SourceID":18109,"TargetID":18982,"Directional":true}]},{"ID":11854,"SourceStructureID":7145,"TargetStructureID":9787,"Label":"7145-9787 via Conventional from 18112 -> 18106, 27142 -> 27143","Type":"Conventional","Directional":true,"Links":[{"SourceID":18112,"TargetID":18106,"Directional":true},{"SourceID":27142,"TargetID":27143,"Directional":true}]},{"ID":11855,"SourceStructureID":7145,"TargetStructureID":91459,"Label":"7145-91459 via Conventional from 16667 -> 91460","Type":"Conventional","Directional":true,"Links":[{"SourceID":16667,"TargetID":91460,"Directional":true}]},{"ID":11856,"SourceStructureID":7145,"TargetStructureID":129798,"Label":"7145-129798 via Conventional from 129805 -> 129804","Type":"Conventional","Directional":true,"Links":[{"SourceID":129805,"TargetID":129804,"Directional":true}]},{"ID":11857,"SourceStructureID":7147,"TargetStructureID":161,"Label":"7147-161 via Conventional from 11768 -> 11765","Type":"Conventional","Directional":true,"Links":[{"SourceID":11768,"TargetID":11765,"Directional":true}]},{"ID":11858,"SourceStructureID":7147,"TargetStructureID":4876,"Label":"7147-4876 via Conventional from 52240 -> 19079, 52241 -> 19112","Type":"Conventional","Directional":true,"Links":[{"SourceID":52240,"TargetID":19079,"Directional":true},{"SourceID":52241,"TargetID":19112,"Directional":true}]},{"ID":11859,"SourceStructureID":7147,"TargetStructureID":6048,"Label":"7147-6048 via Conventional from 60479 -> 60478","Type":"Conventional","Directional":true,"Links":[{"SourceID":60479,"TargetID":60478,"Directional":true}]},{"ID":11860,"SourceStructureID":7147,"TargetStructureID":6136,"Label":"7147-6136 via Conventional from 36068 -> 13033","Type":"Conventional","Directional":true,"Links":[{"SourceID":36068,"TargetID":13033,"Directional":true}]},{"ID":11861,"SourceStructureID":7147,"TargetStructureID":28913,"Label":"7147-28913 via Conventional from 52238 -> 52239","Type":"Conventional","Directional":true,"Links":[{"SourceID":52238,"TargetID":52239,"Directional":true}]},{"ID":11862,"SourceStructureID":7157,"TargetStructureID":354,"Label":"7157-354 via Conventional from 21451 -> 133819, 26514 -> 133816","Type":"Conventional","Directional":true,"Links":[{"SourceID":21451,"TargetID":133819,"Directional":true},{"SourceID":26514,"TargetID":133816,"Directional":true}]},{"ID":11863,"SourceStructureID":7157,"TargetStructureID":359,"Label":"7157-359 via Conventional from 21450 -> 21435","Type":"Conventional","Directional":true,"Links":[{"SourceID":21450,"TargetID":21435,"Directional":true}]},{"ID":11864,"SourceStructureID":7157,"TargetStructureID":433,"Label":"7157-433 via Conventional from 8207 -> 8200","Type":"Conventional","Directional":true,"Links":[{"SourceID":8207,"TargetID":8200,"Directional":true}]},{"ID":11865,"SourceStructureID":7157,"TargetStructureID":437,"Label":"7157-437 via Conventional from 65722 -> 65719, 65723 -> 65720, 65724 -> 65721, 65728 -> 65726, 65732 -> 65716","Type":"Conventional","Directional":true,"Links":[{"SourceID":65722,"TargetID":65719,"Directional":true},{"SourceID":65723,"TargetID":65720,"Directional":true},{"SourceID":65724,"TargetID":65721,"Directional":true},{"SourceID":65728,"TargetID":65726,"Directional":true},{"SourceID":65732,"TargetID":65716,"Directional":true}]},{"ID":11866,"SourceStructureID":7157,"TargetStructureID":9787,"Label":"7157-9787 via Conventional from 12050 -> 9838","Type":"Conventional","Directional":true,"Links":[{"SourceID":12050,"TargetID":9838,"Directional":true}]},{"ID":11867,"SourceStructureID":7157,"TargetStructureID":26304,"Label":"7157-26304 via Conventional from 12049 -> 26306, 25970 -> 26330, 26501 -> 26356, 26504 -> 26355, 26538 -> 26537","Type":"Conventional","Directional":true,"Links":[{"SourceID":12049,"TargetID":26306,"Directional":true},{"SourceID":25970,"TargetID":26330,"Directional":true},{"SourceID":26501,"TargetID":26356,"Directional":true},{"SourceID":26504,"TargetID":26355,"Directional":true},{"SourceID":26538,"TargetID":26537,"Directional":true}]},{"ID":11868,"SourceStructureID":7157,"TargetStructureID":31944,"Label":"7157-31944 via Conventional from 31949 -> 31947, 31950 -> 31948","Type":"Conventional","Directional":true,"Links":[{"SourceID":31949,"TargetID":31947,"Directional":true},{"SourceID":31950,"TargetID":31948,"Directional":true}]},{"ID":11869,"SourceStructureID":7157,"TargetStructureID":158844,"Label":"7157-158844 via Conventional from 8214 -> 158845","Type":"Conventional","Directional":true,"Links":[{"SourceID":8214,"TargetID":158845,"Directional":true}]},{"ID":11870,"SourceStructureID":7157,"TargetStructureID":158846,"Label":"7157-158846 via Conventional from 8210 -> 158850","Type":"Conventional","Directional":true,"Links":[{"SourceID":8210,"TargetID":158850,"Directional":true}]},{"ID":11871,"SourceStructureID":7157,"TargetStructureID":158907,"Label":"7157-158907 via Conventional from 21445 -> 158909, 21448 -> 158911","Type":"Conventional","Directional":true,"Links":[{"SourceID":21445,"TargetID":158909,"Directional":true},{"SourceID":21448,"TargetID":158911,"Directional":true}]},{"ID":11872,"SourceStructureID":7174,"TargetStructureID":29277,"Label":"7174-29277 via Ribbon Synapse from 29285 -> 29284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29285,"TargetID":29284,"Directional":true}]},{"ID":11873,"SourceStructureID":7188,"TargetStructureID":4943,"Label":"7188-4943 via Conventional from 8513 -> 4971","Type":"Conventional","Directional":true,"Links":[{"SourceID":8513,"TargetID":4971,"Directional":true}]},{"ID":11874,"SourceStructureID":7188,"TargetStructureID":5634,"Label":"7188-5634 via Conventional from 22801 -> 122030","Type":"Conventional","Directional":true,"Links":[{"SourceID":22801,"TargetID":122030,"Directional":true}]},{"ID":11875,"SourceStructureID":7188,"TargetStructureID":9810,"Label":"7188-9810 via Conventional from 9802 -> 9812","Type":"Conventional","Directional":true,"Links":[{"SourceID":9802,"TargetID":9812,"Directional":true}]},{"ID":11876,"SourceStructureID":7188,"TargetStructureID":90715,"Label":"7188-90715 via Conventional from 9820 -> 91314","Type":"Conventional","Directional":true,"Links":[{"SourceID":9820,"TargetID":91314,"Directional":true}]},{"ID":11877,"SourceStructureID":7203,"TargetStructureID":5532,"Label":"7203-5532 via Cistern Pre from 37536 -> 37537","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37536,"TargetID":37537,"Directional":true}]},{"ID":11878,"SourceStructureID":7204,"TargetStructureID":5641,"Label":"7204-5641 via Conventional from 24336 -> 24185, 39052 -> 39053","Type":"Conventional","Directional":true,"Links":[{"SourceID":24336,"TargetID":24185,"Directional":true},{"SourceID":39052,"TargetID":39053,"Directional":true}]},{"ID":11879,"SourceStructureID":7204,"TargetStructureID":8578,"Label":"7204-8578 via Conventional from 54670 -> 54669","Type":"Conventional","Directional":true,"Links":[{"SourceID":54670,"TargetID":54669,"Directional":true}]},{"ID":11880,"SourceStructureID":7215,"TargetStructureID":7691,"Label":"7215-7691 via Conventional from 41565 -> 14705","Type":"Conventional","Directional":true,"Links":[{"SourceID":41565,"TargetID":14705,"Directional":true}]},{"ID":11881,"SourceStructureID":7215,"TargetStructureID":34336,"Label":"7215-34336 via Conventional from 31587 -> 34371","Type":"Conventional","Directional":true,"Links":[{"SourceID":31587,"TargetID":34371,"Directional":true}]},{"ID":11882,"SourceStructureID":7225,"TargetStructureID":3928,"Label":"7225-3928 via Conventional from 28998 -> 40819, 29023 -> 40703","Type":"Conventional","Directional":true,"Links":[{"SourceID":28998,"TargetID":40819,"Directional":true},{"SourceID":29023,"TargetID":40703,"Directional":true}]},{"ID":11883,"SourceStructureID":7225,"TargetStructureID":5539,"Label":"7225-5539 via Conventional from 10034 -> 10023","Type":"Conventional","Directional":true,"Links":[{"SourceID":10034,"TargetID":10023,"Directional":true}]},{"ID":11884,"SourceStructureID":7225,"TargetStructureID":5544,"Label":"7225-5544 via Conventional from 137048 -> 44751","Type":"Conventional","Directional":true,"Links":[{"SourceID":137048,"TargetID":44751,"Directional":true}]},{"ID":11885,"SourceStructureID":7225,"TargetStructureID":6128,"Label":"7225-6128 via Conventional from 88399 -> 21177, 88401 -> 88402","Type":"Conventional","Directional":true,"Links":[{"SourceID":88399,"TargetID":21177,"Directional":true},{"SourceID":88401,"TargetID":88402,"Directional":true}]},{"ID":11886,"SourceStructureID":7225,"TargetStructureID":6131,"Label":"7225-6131 via Conventional from 88396 -> 88397","Type":"Conventional","Directional":true,"Links":[{"SourceID":88396,"TargetID":88397,"Directional":true}]},{"ID":11887,"SourceStructureID":7225,"TargetStructureID":6132,"Label":"7225-6132 via Conventional from 29025 -> 29003, 29026 -> 29004, 88408 -> 88432","Type":"Conventional","Directional":true,"Links":[{"SourceID":29025,"TargetID":29003,"Directional":true},{"SourceID":29026,"TargetID":29004,"Directional":true},{"SourceID":88408,"TargetID":88432,"Directional":true}]},{"ID":11888,"SourceStructureID":7225,"TargetStructureID":7293,"Label":"7225-7293 via Conventional from 10032 -> 10033","Type":"Conventional","Directional":true,"Links":[{"SourceID":10032,"TargetID":10033,"Directional":true}]},{"ID":11889,"SourceStructureID":7225,"TargetStructureID":7346,"Label":"7225-7346 via Conventional from 43994 -> 44009","Type":"Conventional","Directional":true,"Links":[{"SourceID":43994,"TargetID":44009,"Directional":true}]},{"ID":11890,"SourceStructureID":7225,"TargetStructureID":11066,"Label":"7225-11066 via Conventional from 31557 -> 31555","Type":"Conventional","Directional":true,"Links":[{"SourceID":31557,"TargetID":31555,"Directional":true}]},{"ID":11891,"SourceStructureID":7225,"TargetStructureID":28950,"Label":"7225-28950 via Conventional from 28994 -> 28990, 28995 -> 28993, 28996 -> 28991","Type":"Conventional","Directional":true,"Links":[{"SourceID":28994,"TargetID":28990,"Directional":true},{"SourceID":28995,"TargetID":28993,"Directional":true},{"SourceID":28996,"TargetID":28991,"Directional":true}]},{"ID":11892,"SourceStructureID":7225,"TargetStructureID":117778,"Label":"7225-117778 via Conventional from 28997 -> 117784","Type":"Conventional","Directional":true,"Links":[{"SourceID":28997,"TargetID":117784,"Directional":true}]},{"ID":11893,"SourceStructureID":7225,"TargetStructureID":137024,"Label":"7225-137024 via Conventional from 137045 -> 137046","Type":"Conventional","Directional":true,"Links":[{"SourceID":137045,"TargetID":137046,"Directional":true}]},{"ID":11894,"SourceStructureID":7231,"TargetStructureID":16073,"Label":"7231-16073 via Conventional from 116952 -> 24204, 117038 -> 117039, 117040 -> 41249, 117041 -> 41251","Type":"Conventional","Directional":true,"Links":[{"SourceID":116952,"TargetID":24204,"Directional":true},{"SourceID":117038,"TargetID":117039,"Directional":true},{"SourceID":117040,"TargetID":41249,"Directional":true},{"SourceID":117041,"TargetID":41251,"Directional":true}]},{"ID":11895,"SourceStructureID":7274,"TargetStructureID":5303,"Label":"7274-5303 via Conventional from 41802 -> 24046","Type":"Conventional","Directional":true,"Links":[{"SourceID":41802,"TargetID":24046,"Directional":true}]},{"ID":11896,"SourceStructureID":7279,"TargetStructureID":5551,"Label":"7279-5551 via Conventional from 34688 -> 116916","Type":"Conventional","Directional":true,"Links":[{"SourceID":34688,"TargetID":116916,"Directional":true}]},{"ID":11897,"SourceStructureID":7279,"TargetStructureID":5604,"Label":"7279-5604 via Conventional from 131380 -> 36882","Type":"Conventional","Directional":true,"Links":[{"SourceID":131380,"TargetID":36882,"Directional":true}]},{"ID":11898,"SourceStructureID":7279,"TargetStructureID":5636,"Label":"7279-5636 via Conventional from 34689 -> 34728","Type":"Conventional","Directional":true,"Links":[{"SourceID":34689,"TargetID":34728,"Directional":true}]},{"ID":11899,"SourceStructureID":7279,"TargetStructureID":116919,"Label":"7279-116919 via Conventional from 34686 -> 116922","Type":"Conventional","Directional":true,"Links":[{"SourceID":34686,"TargetID":116922,"Directional":true}]},{"ID":11900,"SourceStructureID":7279,"TargetStructureID":137024,"Label":"7279-137024 via Conventional from 137060 -> 137059","Type":"Conventional","Directional":true,"Links":[{"SourceID":137060,"TargetID":137059,"Directional":true}]},{"ID":11901,"SourceStructureID":7344,"TargetStructureID":5422,"Label":"7344-5422 via Cistern Pre from 74118 -> 74117","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":74118,"TargetID":74117,"Directional":true}]},{"ID":11902,"SourceStructureID":7345,"TargetStructureID":11066,"Label":"7345-11066 via Conventional from 34447 -> 34410, 34448 -> 34404, 34450 -> 34406","Type":"Conventional","Directional":true,"Links":[{"SourceID":34447,"TargetID":34410,"Directional":true},{"SourceID":34448,"TargetID":34404,"Directional":true},{"SourceID":34450,"TargetID":34406,"Directional":true}]},{"ID":11903,"SourceStructureID":7345,"TargetStructureID":135295,"Label":"7345-135295 via Conventional from 135314 -> 135313","Type":"Conventional","Directional":true,"Links":[{"SourceID":135314,"TargetID":135313,"Directional":true}]},{"ID":11904,"SourceStructureID":7346,"TargetStructureID":6128,"Label":"7346-6128 via BC Conventional Synapse from 44069 -> 20977","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":44069,"TargetID":20977,"Directional":true}]},{"ID":11905,"SourceStructureID":7346,"TargetStructureID":43198,"Label":"7346-43198 via Ribbon Synapse from 122102 -> 122101","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122102,"TargetID":122101,"Directional":true}]},{"ID":11906,"SourceStructureID":7346,"TargetStructureID":44095,"Label":"7346-44095 via Ribbon Synapse from 44105 -> 44096, 44109 -> 44508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44105,"TargetID":44096,"Directional":true},{"SourceID":44109,"TargetID":44508,"Directional":true}]},{"ID":11907,"SourceStructureID":7346,"TargetStructureID":64414,"Label":"7346-64414 via Ribbon Synapse from 64431 -> 64430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64431,"TargetID":64430,"Directional":true}]},{"ID":11908,"SourceStructureID":7361,"TargetStructureID":11238,"Label":"7361-11238 via Ribbon Synapse from 136251 -> 136246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136251,"TargetID":136246,"Directional":true}]},{"ID":11909,"SourceStructureID":7362,"TargetStructureID":13525,"Label":"7362-13525 via Ribbon Synapse from 103930 -> 86531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103930,"TargetID":86531,"Directional":true}]},{"ID":11910,"SourceStructureID":7446,"TargetStructureID":5413,"Label":"7446-5413 via Ribbon Synapse from 121931 -> 130909","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121931,"TargetID":130909,"Directional":true}]},{"ID":11911,"SourceStructureID":7446,"TargetStructureID":18693,"Label":"7446-18693 via Ribbon Synapse from 64765 -> 64764","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64765,"TargetID":64764,"Directional":true}]},{"ID":11912,"SourceStructureID":7446,"TargetStructureID":45220,"Label":"7446-45220 via Ribbon Synapse from 123044 -> 45259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123044,"TargetID":45259,"Directional":true}]},{"ID":11913,"SourceStructureID":7446,"TargetStructureID":118315,"Label":"7446-118315 via Ribbon Synapse from 118314 -> 118317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118314,"TargetID":118317,"Directional":true}]},{"ID":11914,"SourceStructureID":7461,"TargetStructureID":433,"Label":"7461-433 via Conventional from 41087 -> 21593","Type":"Conventional","Directional":true,"Links":[{"SourceID":41087,"TargetID":21593,"Directional":true}]},{"ID":11915,"SourceStructureID":7461,"TargetStructureID":6128,"Label":"7461-6128 via Conventional from 30465 -> 30466, 30470 -> 39989","Type":"Conventional","Directional":true,"Links":[{"SourceID":30465,"TargetID":30466,"Directional":true},{"SourceID":30470,"TargetID":39989,"Directional":true}]},{"ID":11916,"SourceStructureID":7464,"TargetStructureID":446,"Label":"7464-446 via Cistern Pre from 39437 -> 39438","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":39437,"TargetID":39438,"Directional":true}]},{"ID":11917,"SourceStructureID":7468,"TargetStructureID":354,"Label":"7468-354 via Conventional from 47906 -> 44656","Type":"Conventional","Directional":true,"Links":[{"SourceID":47906,"TargetID":44656,"Directional":true}]},{"ID":11918,"SourceStructureID":7468,"TargetStructureID":28950,"Label":"7468-28950 via Conventional from 29065 -> 29063, 29065 -> 29066","Type":"Conventional","Directional":true,"Links":[{"SourceID":29065,"TargetID":29063,"Directional":true},{"SourceID":29065,"TargetID":29066,"Directional":true}]},{"ID":11919,"SourceStructureID":7468,"TargetStructureID":47908,"Label":"7468-47908 via Conventional from 47905 -> 47914","Type":"Conventional","Directional":true,"Links":[{"SourceID":47905,"TargetID":47914,"Directional":true}]},{"ID":11920,"SourceStructureID":7468,"TargetStructureID":129484,"Label":"7468-129484 via Conventional from 129482 -> 129485, 129486 -> 129487","Type":"Conventional","Directional":true,"Links":[{"SourceID":129482,"TargetID":129485,"Directional":true},{"SourceID":129486,"TargetID":129487,"Directional":true}]},{"ID":11921,"SourceStructureID":7561,"TargetStructureID":7054,"Label":"7561-7054 via Conventional from 7562 -> 7055","Type":"Conventional","Directional":true,"Links":[{"SourceID":7562,"TargetID":7055,"Directional":true}]},{"ID":11922,"SourceStructureID":7564,"TargetStructureID":458,"Label":"7564-458 via Conventional from 28773 -> 14493, 34345 -> 34344","Type":"Conventional","Directional":true,"Links":[{"SourceID":28773,"TargetID":14493,"Directional":true},{"SourceID":34345,"TargetID":34344,"Directional":true}]},{"ID":11923,"SourceStructureID":7564,"TargetStructureID":5542,"Label":"7564-5542 via Conventional from 29052 -> 29054, 82104 -> 127976","Type":"Conventional","Directional":true,"Links":[{"SourceID":29052,"TargetID":29054,"Directional":true},{"SourceID":82104,"TargetID":127976,"Directional":true}]},{"ID":11924,"SourceStructureID":7564,"TargetStructureID":5544,"Label":"7564-5544 via Conventional from 29156 -> 29162, 44709 -> 44708","Type":"Conventional","Directional":true,"Links":[{"SourceID":29156,"TargetID":29162,"Directional":true},{"SourceID":44709,"TargetID":44708,"Directional":true}]},{"ID":11925,"SourceStructureID":7564,"TargetStructureID":6128,"Label":"7564-6128 via Conventional from 137019 -> 33759","Type":"Conventional","Directional":true,"Links":[{"SourceID":137019,"TargetID":33759,"Directional":true}]},{"ID":11926,"SourceStructureID":7564,"TargetStructureID":6131,"Label":"7564-6131 via Conventional from 82105 -> 45282","Type":"Conventional","Directional":true,"Links":[{"SourceID":82105,"TargetID":45282,"Directional":true}]},{"ID":11927,"SourceStructureID":7564,"TargetStructureID":6132,"Label":"7564-6132 via Conventional from 88492 -> 88503","Type":"Conventional","Directional":true,"Links":[{"SourceID":88492,"TargetID":88503,"Directional":true}]},{"ID":11928,"SourceStructureID":7564,"TargetStructureID":10963,"Label":"7564-10963 via Conventional from 31930 -> 31929","Type":"Conventional","Directional":true,"Links":[{"SourceID":31930,"TargetID":31929,"Directional":true}]},{"ID":11929,"SourceStructureID":7564,"TargetStructureID":28950,"Label":"7564-28950 via Conventional from 29048 -> 29045","Type":"Conventional","Directional":true,"Links":[{"SourceID":29048,"TargetID":29045,"Directional":true}]},{"ID":11930,"SourceStructureID":7564,"TargetStructureID":46741,"Label":"7564-46741 via Conventional from 137000 -> 136994","Type":"Conventional","Directional":true,"Links":[{"SourceID":137000,"TargetID":136994,"Directional":true}]},{"ID":11931,"SourceStructureID":7564,"TargetStructureID":137024,"Label":"7564-137024 via Conventional from 137028 -> 137027","Type":"Conventional","Directional":true,"Links":[{"SourceID":137028,"TargetID":137027,"Directional":true}]},{"ID":11932,"SourceStructureID":7564,"TargetStructureID":158673,"Label":"7564-158673 via Conventional from 137018 -> 158675","Type":"Conventional","Directional":true,"Links":[{"SourceID":137018,"TargetID":158675,"Directional":true}]},{"ID":11933,"SourceStructureID":7565,"TargetStructureID":172,"Label":"7565-172 via Conventional from 129856 -> 129857","Type":"Conventional","Directional":true,"Links":[{"SourceID":129856,"TargetID":129857,"Directional":true}]},{"ID":11934,"SourceStructureID":7568,"TargetStructureID":5350,"Label":"7568-5350 via Conventional from 27020 -> 10655","Type":"Conventional","Directional":true,"Links":[{"SourceID":27020,"TargetID":10655,"Directional":true}]},{"ID":11935,"SourceStructureID":7568,"TargetStructureID":5439,"Label":"7568-5439 via Conventional from 27086 -> 85515","Type":"Conventional","Directional":true,"Links":[{"SourceID":27086,"TargetID":85515,"Directional":true}]},{"ID":11936,"SourceStructureID":7568,"TargetStructureID":29198,"Label":"7568-29198 via Conventional from 27114 -> 29208","Type":"Conventional","Directional":true,"Links":[{"SourceID":27114,"TargetID":29208,"Directional":true}]},{"ID":11937,"SourceStructureID":7568,"TargetStructureID":30015,"Label":"7568-30015 via Conventional from 30024 -> 30023","Type":"Conventional","Directional":true,"Links":[{"SourceID":30024,"TargetID":30023,"Directional":true}]},{"ID":11938,"SourceStructureID":7568,"TargetStructureID":78303,"Label":"7568-78303 via Conventional from 78306 -> 78307","Type":"Conventional","Directional":true,"Links":[{"SourceID":78306,"TargetID":78307,"Directional":true}]},{"ID":11939,"SourceStructureID":7576,"TargetStructureID":177,"Label":"7576-177 via Conventional from 54980 -> 27967, 54985 -> 27954","Type":"Conventional","Directional":true,"Links":[{"SourceID":54980,"TargetID":27967,"Directional":true},{"SourceID":54985,"TargetID":27954,"Directional":true}]},{"ID":11940,"SourceStructureID":7576,"TargetStructureID":10961,"Label":"7576-10961 via Conventional from 54977 -> 54978","Type":"Conventional","Directional":true,"Links":[{"SourceID":54977,"TargetID":54978,"Directional":true}]},{"ID":11941,"SourceStructureID":7576,"TargetStructureID":54913,"Label":"7576-54913 via Conventional from 54770 -> 55058, 55056 -> 55057","Type":"Conventional","Directional":true,"Links":[{"SourceID":54770,"TargetID":55058,"Directional":true},{"SourceID":55056,"TargetID":55057,"Directional":true}]},{"ID":11942,"SourceStructureID":7577,"TargetStructureID":137024,"Label":"7577-137024 via Plaque-like Pre from 130512 -> 137053","Type":"Plaque-like Pre","Directional":true,"Links":[{"SourceID":130512,"TargetID":137053,"Directional":true}]},{"ID":11943,"SourceStructureID":7587,"TargetStructureID":135225,"Label":"7587-135225 via Ribbon Synapse from 135272 -> 135261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135272,"TargetID":135261,"Directional":true}]},{"ID":11944,"SourceStructureID":7703,"TargetStructureID":115,"Label":"7703-115 via Conventional from 15212 -> 15214, 18593 -> 8159","Type":"Conventional","Directional":true,"Links":[{"SourceID":15212,"TargetID":15214,"Directional":true},{"SourceID":18593,"TargetID":8159,"Directional":true}]},{"ID":11945,"SourceStructureID":7703,"TargetStructureID":440,"Label":"7703-440 via Conventional from 18599 -> 18648","Type":"Conventional","Directional":true,"Links":[{"SourceID":18599,"TargetID":18648,"Directional":true}]},{"ID":11946,"SourceStructureID":7703,"TargetStructureID":458,"Label":"7703-458 via Conventional from 14522 -> 8151","Type":"Conventional","Directional":true,"Links":[{"SourceID":14522,"TargetID":8151,"Directional":true}]},{"ID":11947,"SourceStructureID":7703,"TargetStructureID":5453,"Label":"7703-5453 via Conventional from 18590 -> 18660","Type":"Conventional","Directional":true,"Links":[{"SourceID":18590,"TargetID":18660,"Directional":true}]},{"ID":11948,"SourceStructureID":7703,"TargetStructureID":5543,"Label":"7703-5543 via Conventional from 17004 -> 17019, 18275 -> 17135, 18589 -> 17092","Type":"Conventional","Directional":true,"Links":[{"SourceID":17004,"TargetID":17019,"Directional":true},{"SourceID":18275,"TargetID":17135,"Directional":true},{"SourceID":18589,"TargetID":17092,"Directional":true}]},{"ID":11949,"SourceStructureID":7703,"TargetStructureID":6129,"Label":"7703-6129 via Conventional from 17757 -> 17784","Type":"Conventional","Directional":true,"Links":[{"SourceID":17757,"TargetID":17784,"Directional":true}]},{"ID":11950,"SourceStructureID":7703,"TargetStructureID":8575,"Label":"7703-8575 via Conventional from 18595 -> 37281","Type":"Conventional","Directional":true,"Links":[{"SourceID":18595,"TargetID":37281,"Directional":true}]},{"ID":11951,"SourceStructureID":7703,"TargetStructureID":62632,"Label":"7703-62632 via Conventional from 62635 -> 62636","Type":"Conventional","Directional":true,"Links":[{"SourceID":62635,"TargetID":62636,"Directional":true}]},{"ID":11952,"SourceStructureID":7703,"TargetStructureID":137122,"Label":"7703-137122 via Conventional from 137129 -> 137128","Type":"Conventional","Directional":true,"Links":[{"SourceID":137129,"TargetID":137128,"Directional":true}]},{"ID":11953,"SourceStructureID":7850,"TargetStructureID":4890,"Label":"7850-4890 via Conventional from 7851 -> 6111","Type":"Conventional","Directional":true,"Links":[{"SourceID":7851,"TargetID":6111,"Directional":true}]},{"ID":11954,"SourceStructureID":7850,"TargetStructureID":78327,"Label":"7850-78327 via Conventional from 7852 -> 78328","Type":"Conventional","Directional":true,"Links":[{"SourceID":7852,"TargetID":78328,"Directional":true}]},{"ID":11955,"SourceStructureID":7858,"TargetStructureID":64414,"Label":"7858-64414 via Conventional from 31906 -> 64439","Type":"Conventional","Directional":true,"Links":[{"SourceID":31906,"TargetID":64439,"Directional":true}]},{"ID":11956,"SourceStructureID":7859,"TargetStructureID":11238,"Label":"7859-11238 via Conventional from 84698 -> 136112, 84808 -> 136114, 84819 -> 136137","Type":"Conventional","Directional":true,"Links":[{"SourceID":84698,"TargetID":136112,"Directional":true},{"SourceID":84808,"TargetID":136114,"Directional":true},{"SourceID":84819,"TargetID":136137,"Directional":true}]},{"ID":11957,"SourceStructureID":7859,"TargetStructureID":43716,"Label":"7859-43716 via Conventional from 84808 -> 43723","Type":"Conventional","Directional":true,"Links":[{"SourceID":84808,"TargetID":43723,"Directional":true}]},{"ID":11958,"SourceStructureID":7859,"TargetStructureID":62531,"Label":"7859-62531 via Conventional from 64636 -> 64637","Type":"Conventional","Directional":true,"Links":[{"SourceID":64636,"TargetID":64637,"Directional":true}]},{"ID":11959,"SourceStructureID":7859,"TargetStructureID":64670,"Label":"7859-64670 via Conventional from 64669 -> 64671","Type":"Conventional","Directional":true,"Links":[{"SourceID":64669,"TargetID":64671,"Directional":true}]},{"ID":11960,"SourceStructureID":7859,"TargetStructureID":136351,"Label":"7859-136351 via Conventional from 136354 -> 136352","Type":"Conventional","Directional":true,"Links":[{"SourceID":136354,"TargetID":136352,"Directional":true}]},{"ID":11961,"SourceStructureID":7860,"TargetStructureID":452,"Label":"7860-452 via Conventional from 36085 -> 7324, 36086 -> 7380","Type":"Conventional","Directional":true,"Links":[{"SourceID":36085,"TargetID":7324,"Directional":true},{"SourceID":36086,"TargetID":7380,"Directional":true}]},{"ID":11962,"SourceStructureID":7860,"TargetStructureID":452,"Label":"7860-452 via Ribbon Synapse from 36084 -> 7324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":36084,"TargetID":7324,"Directional":true}]},{"ID":11963,"SourceStructureID":7860,"TargetStructureID":28950,"Label":"7860-28950 via Conventional from 29062 -> 29060","Type":"Conventional","Directional":true,"Links":[{"SourceID":29062,"TargetID":29060,"Directional":true}]},{"ID":11964,"SourceStructureID":7861,"TargetStructureID":441,"Label":"7861-441 via Conventional from 21268 -> 21269","Type":"Conventional","Directional":true,"Links":[{"SourceID":21268,"TargetID":21269,"Directional":true}]},{"ID":11965,"SourceStructureID":7861,"TargetStructureID":452,"Label":"7861-452 via Conventional from 34547 -> 7343, 36072 -> 21243, 36073 -> 21243","Type":"Conventional","Directional":true,"Links":[{"SourceID":34547,"TargetID":7343,"Directional":true},{"SourceID":36072,"TargetID":21243,"Directional":true},{"SourceID":36073,"TargetID":21243,"Directional":true}]},{"ID":11966,"SourceStructureID":7861,"TargetStructureID":5542,"Label":"7861-5542 via Conventional from 18250 -> 18266, 18250 -> 130353","Type":"Conventional","Directional":true,"Links":[{"SourceID":18250,"TargetID":18266,"Directional":true},{"SourceID":18250,"TargetID":130353,"Directional":true}]},{"ID":11967,"SourceStructureID":7861,"TargetStructureID":5543,"Label":"7861-5543 via Conventional from 18243 -> 17159, 18244 -> 17158","Type":"Conventional","Directional":true,"Links":[{"SourceID":18243,"TargetID":17159,"Directional":true},{"SourceID":18244,"TargetID":17158,"Directional":true}]},{"ID":11968,"SourceStructureID":7861,"TargetStructureID":6128,"Label":"7861-6128 via Conventional from 21253 -> 20885, 36071 -> 20973","Type":"Conventional","Directional":true,"Links":[{"SourceID":21253,"TargetID":20885,"Directional":true},{"SourceID":36071,"TargetID":20973,"Directional":true}]},{"ID":11969,"SourceStructureID":7861,"TargetStructureID":7346,"Label":"7861-7346 via Conventional from 44108 -> 44107","Type":"Conventional","Directional":true,"Links":[{"SourceID":44108,"TargetID":44107,"Directional":true}]},{"ID":11970,"SourceStructureID":7861,"TargetStructureID":11092,"Label":"7861-11092 via Conventional from 34544 -> 125793, 121014 -> 123471","Type":"Conventional","Directional":true,"Links":[{"SourceID":34544,"TargetID":125793,"Directional":true},{"SourceID":121014,"TargetID":123471,"Directional":true}]},{"ID":11971,"SourceStructureID":7861,"TargetStructureID":137070,"Label":"7861-137070 via Conventional from 137069 -> 137073","Type":"Conventional","Directional":true,"Links":[{"SourceID":137069,"TargetID":137073,"Directional":true}]},{"ID":11972,"SourceStructureID":7897,"TargetStructureID":138,"Label":"7897-138 via Conventional from 46476 -> 46477, 46481 -> 46482","Type":"Conventional","Directional":true,"Links":[{"SourceID":46476,"TargetID":46477,"Directional":true},{"SourceID":46481,"TargetID":46482,"Directional":true}]},{"ID":11973,"SourceStructureID":7897,"TargetStructureID":5303,"Label":"7897-5303 via Conventional from 46475 -> 35623","Type":"Conventional","Directional":true,"Links":[{"SourceID":46475,"TargetID":35623,"Directional":true}]},{"ID":11974,"SourceStructureID":7897,"TargetStructureID":15796,"Label":"7897-15796 via Conventional from 55755 -> 55678","Type":"Conventional","Directional":true,"Links":[{"SourceID":55755,"TargetID":55678,"Directional":true}]},{"ID":11975,"SourceStructureID":7897,"TargetStructureID":36130,"Label":"7897-36130 via Conventional from 15795 -> 36132","Type":"Conventional","Directional":true,"Links":[{"SourceID":15795,"TargetID":36132,"Directional":true}]},{"ID":11976,"SourceStructureID":7904,"TargetStructureID":5150,"Label":"7904-5150 via Conventional from 131348 -> 5247, 131353 -> 5252","Type":"Conventional","Directional":true,"Links":[{"SourceID":131348,"TargetID":5247,"Directional":true},{"SourceID":131353,"TargetID":5252,"Directional":true}]},{"ID":11977,"SourceStructureID":7904,"TargetStructureID":6125,"Label":"7904-6125 via Conventional from 129040 -> 129041","Type":"Conventional","Directional":true,"Links":[{"SourceID":129040,"TargetID":129041,"Directional":true}]},{"ID":11978,"SourceStructureID":7904,"TargetStructureID":119547,"Label":"7904-119547 via Conventional from 131345 -> 119573","Type":"Conventional","Directional":true,"Links":[{"SourceID":131345,"TargetID":119573,"Directional":true}]},{"ID":11979,"SourceStructureID":7951,"TargetStructureID":5504,"Label":"7951-5504 via Conventional from 11126 -> 11125","Type":"Conventional","Directional":true,"Links":[{"SourceID":11126,"TargetID":11125,"Directional":true}]},{"ID":11980,"SourceStructureID":7951,"TargetStructureID":5909,"Label":"7951-5909 via Conventional from 93153 -> 93152","Type":"Conventional","Directional":true,"Links":[{"SourceID":93153,"TargetID":93152,"Directional":true}]},{"ID":11981,"SourceStructureID":7951,"TargetStructureID":5922,"Label":"7951-5922 via Conventional from 26732 -> 68846","Type":"Conventional","Directional":true,"Links":[{"SourceID":26732,"TargetID":68846,"Directional":true}]},{"ID":11982,"SourceStructureID":7951,"TargetStructureID":6125,"Label":"7951-6125 via Conventional from 26757 -> 31202","Type":"Conventional","Directional":true,"Links":[{"SourceID":26757,"TargetID":31202,"Directional":true}]},{"ID":11983,"SourceStructureID":7951,"TargetStructureID":34761,"Label":"7951-34761 via Conventional from 34767 -> 34766, 34768 -> 34765, 34775 -> 34776","Type":"Conventional","Directional":true,"Links":[{"SourceID":34767,"TargetID":34766,"Directional":true},{"SourceID":34768,"TargetID":34765,"Directional":true},{"SourceID":34775,"TargetID":34776,"Directional":true}]},{"ID":11984,"SourceStructureID":8032,"TargetStructureID":6140,"Label":"8032-6140 via Conventional from 47950 -> 47951","Type":"Conventional","Directional":true,"Links":[{"SourceID":47950,"TargetID":47951,"Directional":true}]},{"ID":11985,"SourceStructureID":8035,"TargetStructureID":5504,"Label":"8035-5504 via Conventional from 25016 -> 25015","Type":"Conventional","Directional":true,"Links":[{"SourceID":25016,"TargetID":25015,"Directional":true}]},{"ID":11986,"SourceStructureID":8035,"TargetStructureID":5609,"Label":"8035-5609 via Conventional from 25051 -> 25050","Type":"Conventional","Directional":true,"Links":[{"SourceID":25051,"TargetID":25050,"Directional":true}]},{"ID":11987,"SourceStructureID":8035,"TargetStructureID":6118,"Label":"8035-6118 via Conventional from 25019 -> 25031","Type":"Conventional","Directional":true,"Links":[{"SourceID":25019,"TargetID":25031,"Directional":true}]},{"ID":11988,"SourceStructureID":8037,"TargetStructureID":5498,"Label":"8037-5498 via Conventional from 48003 -> 48004","Type":"Conventional","Directional":true,"Links":[{"SourceID":48003,"TargetID":48004,"Directional":true}]},{"ID":11989,"SourceStructureID":8037,"TargetStructureID":8485,"Label":"8037-8485 via Conventional from 11671 -> 11672, 11673 -> 11674","Type":"Conventional","Directional":true,"Links":[{"SourceID":11671,"TargetID":11672,"Directional":true},{"SourceID":11673,"TargetID":11674,"Directional":true}]},{"ID":11990,"SourceStructureID":8037,"TargetStructureID":18471,"Label":"8037-18471 via Conventional from 18470 -> 18473","Type":"Conventional","Directional":true,"Links":[{"SourceID":18470,"TargetID":18473,"Directional":true}]},{"ID":11991,"SourceStructureID":8037,"TargetStructureID":85094,"Label":"8037-85094 via Conventional from 85114 -> 85112","Type":"Conventional","Directional":true,"Links":[{"SourceID":85114,"TargetID":85112,"Directional":true}]},{"ID":11992,"SourceStructureID":8038,"TargetStructureID":5622,"Label":"8038-5622 via Conventional from 24173 -> 24172","Type":"Conventional","Directional":true,"Links":[{"SourceID":24173,"TargetID":24172,"Directional":true}]},{"ID":11993,"SourceStructureID":8040,"TargetStructureID":606,"Label":"8040-606 via Ribbon Synapse from 39149 -> 39150, 48523 -> 48524, 48525 -> 48526, 51705 -> 51706","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39149,"TargetID":39150,"Directional":true},{"SourceID":48523,"TargetID":48524,"Directional":true},{"SourceID":48525,"TargetID":48526,"Directional":true},{"SourceID":51705,"TargetID":51706,"Directional":true}]},{"ID":11994,"SourceStructureID":8040,"TargetStructureID":35452,"Label":"8040-35452 via Ribbon Synapse from 35464 -> 35460","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35464,"TargetID":35460,"Directional":true}]},{"ID":11995,"SourceStructureID":8040,"TargetStructureID":52410,"Label":"8040-52410 via Ribbon Synapse from 48629 -> 52562, 48774 -> 52556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48629,"TargetID":52562,"Directional":true},{"SourceID":48774,"TargetID":52556,"Directional":true}]},{"ID":11996,"SourceStructureID":8040,"TargetStructureID":69554,"Label":"8040-69554 via Cistern Pre from 39140 -> 69556, 39142 -> 69563","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":39140,"TargetID":69556,"Directional":true},{"SourceID":39142,"TargetID":69563,"Directional":true}]},{"ID":11997,"SourceStructureID":8045,"TargetStructureID":7114,"Label":"8045-7114 via Conventional from 12486 -> 12487","Type":"Conventional","Directional":true,"Links":[{"SourceID":12486,"TargetID":12487,"Directional":true}]},{"ID":11998,"SourceStructureID":8059,"TargetStructureID":8575,"Label":"8059-8575 via Conventional from 62215 -> 62214","Type":"Conventional","Directional":true,"Links":[{"SourceID":62215,"TargetID":62214,"Directional":true}]},{"ID":11999,"SourceStructureID":8212,"TargetStructureID":6146,"Label":"8212-6146 via Conventional from 38080 -> 38079","Type":"Conventional","Directional":true,"Links":[{"SourceID":38080,"TargetID":38079,"Directional":true}]},{"ID":12000,"SourceStructureID":8218,"TargetStructureID":5598,"Label":"8218-5598 via Conventional from 12533 -> 12532","Type":"Conventional","Directional":true,"Links":[{"SourceID":12533,"TargetID":12532,"Directional":true}]},{"ID":12001,"SourceStructureID":8485,"TargetStructureID":2610,"Label":"8485-2610 via Ribbon Synapse from 71249 -> 71250","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71249,"TargetID":71250,"Directional":true}]},{"ID":12002,"SourceStructureID":8485,"TargetStructureID":12192,"Label":"8485-12192 via Ribbon Synapse from 46619 -> 46620","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46619,"TargetID":46620,"Directional":true}]},{"ID":12003,"SourceStructureID":8485,"TargetStructureID":28913,"Label":"8485-28913 via Conventional from 43990 -> 43991","Type":"Conventional","Directional":true,"Links":[{"SourceID":43990,"TargetID":43991,"Directional":true}]},{"ID":12004,"SourceStructureID":8485,"TargetStructureID":69534,"Label":"8485-69534 via Ribbon Synapse from 28877 -> 69535","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28877,"TargetID":69535,"Directional":true}]},{"ID":12005,"SourceStructureID":8504,"TargetStructureID":4943,"Label":"8504-4943 via Conventional from 8716 -> 4988","Type":"Conventional","Directional":true,"Links":[{"SourceID":8716,"TargetID":4988,"Directional":true}]},{"ID":12006,"SourceStructureID":8504,"TargetStructureID":5538,"Label":"8504-5538 via Conventional from 8710 -> 45011","Type":"Conventional","Directional":true,"Links":[{"SourceID":8710,"TargetID":45011,"Directional":true}]},{"ID":12007,"SourceStructureID":8504,"TargetStructureID":6133,"Label":"8504-6133 via Conventional from 8694 -> 8701","Type":"Conventional","Directional":true,"Links":[{"SourceID":8694,"TargetID":8701,"Directional":true}]},{"ID":12008,"SourceStructureID":8504,"TargetStructureID":32359,"Label":"8504-32359 via Conventional from 8711 -> 41351","Type":"Conventional","Directional":true,"Links":[{"SourceID":8711,"TargetID":41351,"Directional":true}]},{"ID":12009,"SourceStructureID":8551,"TargetStructureID":3928,"Label":"8551-3928 via Conventional from 8557 -> 40706","Type":"Conventional","Directional":true,"Links":[{"SourceID":8557,"TargetID":40706,"Directional":true}]},{"ID":12010,"SourceStructureID":8551,"TargetStructureID":4943,"Label":"8551-4943 via Conventional from 8554 -> 8537","Type":"Conventional","Directional":true,"Links":[{"SourceID":8554,"TargetID":8537,"Directional":true}]},{"ID":12011,"SourceStructureID":8551,"TargetStructureID":5538,"Label":"8551-5538 via Conventional from 8565 -> 8550","Type":"Conventional","Directional":true,"Links":[{"SourceID":8565,"TargetID":8550,"Directional":true}]},{"ID":12012,"SourceStructureID":8551,"TargetStructureID":5636,"Label":"8551-5636 via Conventional from 8583 -> 34707","Type":"Conventional","Directional":true,"Links":[{"SourceID":8583,"TargetID":34707,"Directional":true}]},{"ID":12013,"SourceStructureID":8576,"TargetStructureID":5501,"Label":"8576-5501 via Conventional from 20075 -> 36592","Type":"Conventional","Directional":true,"Links":[{"SourceID":20075,"TargetID":36592,"Directional":true}]},{"ID":12014,"SourceStructureID":8576,"TargetStructureID":5503,"Label":"8576-5503 via Conventional from 20070 -> 20086, 20076 -> 60665","Type":"Conventional","Directional":true,"Links":[{"SourceID":20070,"TargetID":20086,"Directional":true},{"SourceID":20076,"TargetID":60665,"Directional":true}]},{"ID":12015,"SourceStructureID":8576,"TargetStructureID":5561,"Label":"8576-5561 via Conventional from 20066 -> 46249","Type":"Conventional","Directional":true,"Links":[{"SourceID":20066,"TargetID":46249,"Directional":true}]},{"ID":12016,"SourceStructureID":8577,"TargetStructureID":8579,"Label":"8577-8579 via Adherens from 62739 -> 62738","Type":"Adherens","Directional":true,"Links":[{"SourceID":62739,"TargetID":62738,"Directional":true}]},{"ID":12017,"SourceStructureID":8577,"TargetStructureID":61933,"Label":"8577-61933 via Conventional from 68648 -> 68647","Type":"Conventional","Directional":true,"Links":[{"SourceID":68648,"TargetID":68647,"Directional":true}]},{"ID":12018,"SourceStructureID":8579,"TargetStructureID":6142,"Label":"8579-6142 via Conventional from 62715 -> 23381","Type":"Conventional","Directional":true,"Links":[{"SourceID":62715,"TargetID":23381,"Directional":true}]},{"ID":12019,"SourceStructureID":8579,"TargetStructureID":8580,"Label":"8579-8580 via Plaque-like Pre from 72106 -> 72107","Type":"Plaque-like Pre","Directional":true,"Links":[{"SourceID":72106,"TargetID":72107,"Directional":true}]},{"ID":12020,"SourceStructureID":8579,"TargetStructureID":16026,"Label":"8579-16026 via Conventional from 25985 -> 24085","Type":"Conventional","Directional":true,"Links":[{"SourceID":25985,"TargetID":24085,"Directional":true}]},{"ID":12021,"SourceStructureID":8579,"TargetStructureID":62710,"Label":"8579-62710 via Conventional from 62703 -> 62711","Type":"Conventional","Directional":true,"Links":[{"SourceID":62703,"TargetID":62711,"Directional":true}]},{"ID":12022,"SourceStructureID":8580,"TargetStructureID":8580,"Label":"8580-8580 via Conventional from 59836 -> 59834","Type":"Conventional","Directional":true,"Links":[{"SourceID":59836,"TargetID":59834,"Directional":true}]},{"ID":12023,"SourceStructureID":8586,"TargetStructureID":591,"Label":"8586-591 via Ribbon Synapse from 8603 -> 10350, 8606 -> 10347, 10352 -> 10353","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8603,"TargetID":10350,"Directional":true},{"SourceID":8606,"TargetID":10347,"Directional":true},{"SourceID":10352,"TargetID":10353,"Directional":true}]},{"ID":12024,"SourceStructureID":8586,"TargetStructureID":4943,"Label":"8586-4943 via Ribbon Synapse from 8654 -> 4966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8654,"TargetID":4966,"Directional":true}]},{"ID":12025,"SourceStructureID":8586,"TargetStructureID":7147,"Label":"8586-7147 via Ribbon Synapse from 8655 -> 32689, 8670 -> 16070","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8655,"TargetID":32689,"Directional":true},{"SourceID":8670,"TargetID":16070,"Directional":true}]},{"ID":12026,"SourceStructureID":8589,"TargetStructureID":71309,"Label":"8589-71309 via Adherens from 71308 -> 71310","Type":"Adherens","Directional":true,"Links":[{"SourceID":71308,"TargetID":71310,"Directional":true}]},{"ID":12027,"SourceStructureID":8720,"TargetStructureID":8575,"Label":"8720-8575 via Conventional from 63141 -> 43265, 104922 -> 62850","Type":"Conventional","Directional":true,"Links":[{"SourceID":63141,"TargetID":43265,"Directional":true},{"SourceID":104922,"TargetID":62850,"Directional":true}]},{"ID":12028,"SourceStructureID":8720,"TargetStructureID":13858,"Label":"8720-13858 via Conventional from 63406 -> 63415","Type":"Conventional","Directional":true,"Links":[{"SourceID":63406,"TargetID":63415,"Directional":true}]},{"ID":12029,"SourceStructureID":8720,"TargetStructureID":63371,"Label":"8720-63371 via Conventional from 63370 -> 63373, 63400 -> 63401","Type":"Conventional","Directional":true,"Links":[{"SourceID":63370,"TargetID":63373,"Directional":true},{"SourceID":63400,"TargetID":63401,"Directional":true}]},{"ID":12030,"SourceStructureID":8749,"TargetStructureID":308,"Label":"8749-308 via Ribbon Synapse from 8820 -> 43450, 8822 -> 43451, 17035 -> 42580, 42564 -> 42565","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8820,"TargetID":43450,"Directional":true},{"SourceID":8822,"TargetID":43451,"Directional":true},{"SourceID":17035,"TargetID":42580,"Directional":true},{"SourceID":42564,"TargetID":42565,"Directional":true}]},{"ID":12031,"SourceStructureID":8749,"TargetStructureID":410,"Label":"8749-410 via Ribbon Synapse from 8845 -> 17491, 8847 -> 17492, 15090 -> 15089, 17370 -> 17371","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8845,"TargetID":17491,"Directional":true},{"SourceID":8847,"TargetID":17492,"Directional":true},{"SourceID":15090,"TargetID":15089,"Directional":true},{"SourceID":17370,"TargetID":17371,"Directional":true}]},{"ID":12032,"SourceStructureID":8749,"TargetStructureID":514,"Label":"8749-514 via Ribbon Synapse from 8818 -> 32716, 8820 -> 38204, 8869 -> 15091, 15095 -> 15094, 17035 -> 17034, 17037 -> 17036, 17154 -> 2530, 17155 -> 17156, 17161 -> 17163, 17162 -> 17164, 17165 -> 2500, 18004 -> 18003, 32717 -> 32718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8818,"TargetID":32716,"Directional":true},{"SourceID":8820,"TargetID":38204,"Directional":true},{"SourceID":8869,"TargetID":15091,"Directional":true},{"SourceID":15095,"TargetID":15094,"Directional":true},{"SourceID":17035,"TargetID":17034,"Directional":true},{"SourceID":17037,"TargetID":17036,"Directional":true},{"SourceID":17154,"TargetID":2530,"Directional":true},{"SourceID":17155,"TargetID":17156,"Directional":true},{"SourceID":17161,"TargetID":17163,"Directional":true},{"SourceID":17162,"TargetID":17164,"Directional":true},{"SourceID":17165,"TargetID":2500,"Directional":true},{"SourceID":18004,"TargetID":18003,"Directional":true},{"SourceID":32717,"TargetID":32718,"Directional":true}]},{"ID":12033,"SourceStructureID":8749,"TargetStructureID":2610,"Label":"8749-2610 via Ribbon Synapse from 8856 -> 8857, 8870 -> 2743, 17167 -> 2783, 17373 -> 2748, 17945 -> 17944, 17981 -> 17980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8856,"TargetID":8857,"Directional":true},{"SourceID":8870,"TargetID":2743,"Directional":true},{"SourceID":17167,"TargetID":2783,"Directional":true},{"SourceID":17373,"TargetID":2748,"Directional":true},{"SourceID":17945,"TargetID":17944,"Directional":true},{"SourceID":17981,"TargetID":17980,"Directional":true}]},{"ID":12034,"SourceStructureID":8749,"TargetStructureID":5303,"Label":"8749-5303 via Ribbon Synapse from 17155 -> 8747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17155,"TargetID":8747,"Directional":true}]},{"ID":12035,"SourceStructureID":8749,"TargetStructureID":8749,"Label":"8749-8749 via Postsynapse from 8831 -> 159264","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":8831,"TargetID":159264,"Directional":true}]},{"ID":12036,"SourceStructureID":8749,"TargetStructureID":8749,"Label":"8749-8749 via Ribbon Synapse from 17981 -> 8832","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17981,"TargetID":8832,"Directional":true}]},{"ID":12037,"SourceStructureID":8749,"TargetStructureID":25352,"Label":"8749-25352 via Ribbon Synapse from 17370 -> 32291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17370,"TargetID":32291,"Directional":true}]},{"ID":12038,"SourceStructureID":8749,"TargetStructureID":25410,"Label":"8749-25410 via Ribbon Synapse from 8856 -> 25415","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8856,"TargetID":25415,"Directional":true}]},{"ID":12039,"SourceStructureID":8749,"TargetStructureID":32719,"Label":"8749-32719 via Ribbon Synapse from 8851 -> 32721","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8851,"TargetID":32721,"Directional":true}]},{"ID":12040,"SourceStructureID":8749,"TargetStructureID":39208,"Label":"8749-39208 via Ribbon Synapse from 17981 -> 39221","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17981,"TargetID":39221,"Directional":true}]},{"ID":12041,"SourceStructureID":8749,"TargetStructureID":93099,"Label":"8749-93099 via Ribbon Synapse from 93105 -> 93104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93105,"TargetID":93104,"Directional":true}]},{"ID":12042,"SourceStructureID":8749,"TargetStructureID":123181,"Label":"8749-123181 via Ribbon Synapse from 32717 -> 123185","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32717,"TargetID":123185,"Directional":true}]},{"ID":12043,"SourceStructureID":8749,"TargetStructureID":123186,"Label":"8749-123186 via Ribbon Synapse from 8818 -> 123188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8818,"TargetID":123188,"Directional":true}]},{"ID":12044,"SourceStructureID":8749,"TargetStructureID":123209,"Label":"8749-123209 via Ribbon Synapse from 8847 -> 123211","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":8847,"TargetID":123211,"Directional":true}]},{"ID":12045,"SourceStructureID":8749,"TargetStructureID":123227,"Label":"8749-123227 via Ribbon Synapse from 17162 -> 123228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17162,"TargetID":123228,"Directional":true}]},{"ID":12046,"SourceStructureID":8990,"TargetStructureID":5017,"Label":"8990-5017 via Conventional from 8991 -> 5019, 8992 -> 5022","Type":"Conventional","Directional":true,"Links":[{"SourceID":8991,"TargetID":5019,"Directional":true},{"SourceID":8992,"TargetID":5022,"Directional":true}]},{"ID":12047,"SourceStructureID":8990,"TargetStructureID":15942,"Label":"8990-15942 via Conventional from 95933 -> 95934, 95935 -> 95936","Type":"Conventional","Directional":true,"Links":[{"SourceID":95933,"TargetID":95934,"Directional":true},{"SourceID":95935,"TargetID":95936,"Directional":true}]},{"ID":12048,"SourceStructureID":9023,"TargetStructureID":517,"Label":"9023-517 via Conventional from 36677 -> 36679, 36678 -> 36680","Type":"Conventional","Directional":true,"Links":[{"SourceID":36677,"TargetID":36679,"Directional":true},{"SourceID":36678,"TargetID":36680,"Directional":true}]},{"ID":12049,"SourceStructureID":9023,"TargetStructureID":518,"Label":"9023-518 via Conventional from 36669 -> 36668, 37134 -> 14720","Type":"Conventional","Directional":true,"Links":[{"SourceID":36669,"TargetID":36668,"Directional":true},{"SourceID":37134,"TargetID":14720,"Directional":true}]},{"ID":12050,"SourceStructureID":9124,"TargetStructureID":514,"Label":"9124-514 via Conventional from 22629 -> 3556","Type":"Conventional","Directional":true,"Links":[{"SourceID":22629,"TargetID":3556,"Directional":true}]},{"ID":12051,"SourceStructureID":9226,"TargetStructureID":514,"Label":"9226-514 via Conventional from 9227 -> 3328","Type":"Conventional","Directional":true,"Links":[{"SourceID":9227,"TargetID":3328,"Directional":true}]},{"ID":12052,"SourceStructureID":9228,"TargetStructureID":514,"Label":"9228-514 via Conventional from 9229 -> 3329","Type":"Conventional","Directional":true,"Links":[{"SourceID":9229,"TargetID":3329,"Directional":true}]},{"ID":12053,"SourceStructureID":9260,"TargetStructureID":365,"Label":"9260-365 via Conventional from 31820 -> 30390","Type":"Conventional","Directional":true,"Links":[{"SourceID":31820,"TargetID":30390,"Directional":true}]},{"ID":12054,"SourceStructureID":9260,"TargetStructureID":516,"Label":"9260-516 via Conventional from 39660 -> 39662, 39661 -> 39663, 39666 -> 39667, 39668 -> 39669, 39670 -> 39671","Type":"Conventional","Directional":true,"Links":[{"SourceID":39660,"TargetID":39662,"Directional":true},{"SourceID":39661,"TargetID":39663,"Directional":true},{"SourceID":39666,"TargetID":39667,"Directional":true},{"SourceID":39668,"TargetID":39669,"Directional":true},{"SourceID":39670,"TargetID":39671,"Directional":true}]},{"ID":12055,"SourceStructureID":9260,"TargetStructureID":519,"Label":"9260-519 via Conventional from 9263 -> 9257, 9271 -> 9273, 9274 -> 9259, 9275 -> 9276, 25390 -> 25391","Type":"Conventional","Directional":true,"Links":[{"SourceID":9263,"TargetID":9257,"Directional":true},{"SourceID":9271,"TargetID":9273,"Directional":true},{"SourceID":9274,"TargetID":9259,"Directional":true},{"SourceID":9275,"TargetID":9276,"Directional":true},{"SourceID":25390,"TargetID":25391,"Directional":true}]},{"ID":12056,"SourceStructureID":9260,"TargetStructureID":2610,"Label":"9260-2610 via Conventional from 9261 -> 9266, 9262 -> 9265, 9264 -> 9267","Type":"Conventional","Directional":true,"Links":[{"SourceID":9261,"TargetID":9266,"Directional":true},{"SourceID":9262,"TargetID":9265,"Directional":true},{"SourceID":9264,"TargetID":9267,"Directional":true}]},{"ID":12057,"SourceStructureID":9260,"TargetStructureID":5563,"Label":"9260-5563 via Conventional from 98790 -> 98791, 98794 -> 98795","Type":"Conventional","Directional":true,"Links":[{"SourceID":98790,"TargetID":98791,"Directional":true},{"SourceID":98794,"TargetID":98795,"Directional":true}]},{"ID":12058,"SourceStructureID":9347,"TargetStructureID":180,"Label":"9347-180 via Conventional from 29447 -> 29448, 92729 -> 92727, 95415 -> 871","Type":"Conventional","Directional":true,"Links":[{"SourceID":29447,"TargetID":29448,"Directional":true},{"SourceID":92729,"TargetID":92727,"Directional":true},{"SourceID":95415,"TargetID":871,"Directional":true}]},{"ID":12059,"SourceStructureID":9347,"TargetStructureID":1637,"Label":"9347-1637 via Conventional from 9360 -> 117313, 30244 -> 30245","Type":"Conventional","Directional":true,"Links":[{"SourceID":9360,"TargetID":117313,"Directional":true},{"SourceID":30244,"TargetID":30245,"Directional":true}]},{"ID":12060,"SourceStructureID":9347,"TargetStructureID":5297,"Label":"9347-5297 via Conventional from 53647 -> 53644","Type":"Conventional","Directional":true,"Links":[{"SourceID":53647,"TargetID":53644,"Directional":true}]},{"ID":12061,"SourceStructureID":9347,"TargetStructureID":39957,"Label":"9347-39957 via Conventional from 58440 -> 58439","Type":"Conventional","Directional":true,"Links":[{"SourceID":58440,"TargetID":58439,"Directional":true}]},{"ID":12062,"SourceStructureID":9347,"TargetStructureID":59340,"Label":"9347-59340 via Conventional from 9373 -> 59346","Type":"Conventional","Directional":true,"Links":[{"SourceID":9373,"TargetID":59346,"Directional":true}]},{"ID":12063,"SourceStructureID":9376,"TargetStructureID":352,"Label":"9376-352 via Ribbon Synapse from 90700 -> 90695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90700,"TargetID":90695,"Directional":true}]},{"ID":12064,"SourceStructureID":9376,"TargetStructureID":5860,"Label":"9376-5860 via Ribbon Synapse from 90698 -> 8810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90698,"TargetID":8810,"Directional":true}]},{"ID":12065,"SourceStructureID":9492,"TargetStructureID":9260,"Label":"9492-9260 via Conventional from 9493 -> 9475","Type":"Conventional","Directional":true,"Links":[{"SourceID":9493,"TargetID":9475,"Directional":true}]},{"ID":12066,"SourceStructureID":9504,"TargetStructureID":514,"Label":"9504-514 via Ribbon Synapse from 9512 -> 66204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9512,"TargetID":66204,"Directional":true}]},{"ID":12067,"SourceStructureID":9504,"TargetStructureID":906,"Label":"9504-906 via Ribbon Synapse from 16644 -> 16630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16644,"TargetID":16630,"Directional":true}]},{"ID":12068,"SourceStructureID":9604,"TargetStructureID":968,"Label":"9604-968 via Conventional from 9605 -> 977","Type":"Conventional","Directional":true,"Links":[{"SourceID":9605,"TargetID":977,"Directional":true}]},{"ID":12069,"SourceStructureID":9606,"TargetStructureID":968,"Label":"9606-968 via Conventional from 9610 -> 981","Type":"Conventional","Directional":true,"Links":[{"SourceID":9610,"TargetID":981,"Directional":true}]},{"ID":12070,"SourceStructureID":9614,"TargetStructureID":4849,"Label":"9614-4849 via Conventional from 9617 -> 9612","Type":"Conventional","Directional":true,"Links":[{"SourceID":9617,"TargetID":9612,"Directional":true}]},{"ID":12071,"SourceStructureID":9643,"TargetStructureID":469,"Label":"9643-469 via Conventional from 9644 -> 9645, 9646 -> 4652","Type":"Conventional","Directional":true,"Links":[{"SourceID":9644,"TargetID":9645,"Directional":true},{"SourceID":9646,"TargetID":4652,"Directional":true}]},{"ID":12072,"SourceStructureID":9643,"TargetStructureID":471,"Label":"9643-471 via Conventional from 9647 -> 9648, 9650 -> 9651","Type":"Conventional","Directional":true,"Links":[{"SourceID":9647,"TargetID":9648,"Directional":true},{"SourceID":9650,"TargetID":9651,"Directional":true}]},{"ID":12073,"SourceStructureID":9643,"TargetStructureID":10625,"Label":"9643-10625 via Conventional from 9657 -> 16251, 9658 -> 16249","Type":"Conventional","Directional":true,"Links":[{"SourceID":9657,"TargetID":16251,"Directional":true},{"SourceID":9658,"TargetID":16249,"Directional":true}]},{"ID":12074,"SourceStructureID":9693,"TargetStructureID":304,"Label":"9693-304 via Ribbon Synapse from 28242 -> 39225","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28242,"TargetID":39225,"Directional":true}]},{"ID":12075,"SourceStructureID":9693,"TargetStructureID":390,"Label":"9693-390 via Ribbon Synapse from 9753 -> 65113, 9891 -> 65107, 9892 -> 65107","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9753,"TargetID":65113,"Directional":true},{"SourceID":9891,"TargetID":65107,"Directional":true},{"SourceID":9892,"TargetID":65107,"Directional":true}]},{"ID":12076,"SourceStructureID":9693,"TargetStructureID":514,"Label":"9693-514 via Ribbon Synapse from 10437 -> 2512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10437,"TargetID":2512,"Directional":true}]},{"ID":12077,"SourceStructureID":9693,"TargetStructureID":525,"Label":"9693-525 via Ribbon Synapse from 11630 -> 6232","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11630,"TargetID":6232,"Directional":true}]},{"ID":12078,"SourceStructureID":9693,"TargetStructureID":606,"Label":"9693-606 via Ribbon Synapse from 9722 -> 37752, 9724 -> 37752, 14095 -> 45879, 27485 -> 37752, 28256 -> 45878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9722,"TargetID":37752,"Directional":true},{"SourceID":9724,"TargetID":37752,"Directional":true},{"SourceID":14095,"TargetID":45879,"Directional":true},{"SourceID":27485,"TargetID":37752,"Directional":true},{"SourceID":28256,"TargetID":45878,"Directional":true}]},{"ID":12079,"SourceStructureID":9693,"TargetStructureID":608,"Label":"9693-608 via Ribbon Synapse from 28169 -> 59070","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28169,"TargetID":59070,"Directional":true}]},{"ID":12080,"SourceStructureID":9693,"TargetStructureID":2610,"Label":"9693-2610 via Ribbon Synapse from 15013 -> 2854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15013,"TargetID":2854,"Directional":true}]},{"ID":12081,"SourceStructureID":9693,"TargetStructureID":4850,"Label":"9693-4850 via Ribbon Synapse from 15079 -> 15388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15079,"TargetID":15388,"Directional":true}]},{"ID":12082,"SourceStructureID":9693,"TargetStructureID":4890,"Label":"9693-4890 via BC Conventional Synapse from 119830 -> 64899, 119871 -> 7926","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119830,"TargetID":64899,"Directional":true},{"SourceID":119871,"TargetID":7926,"Directional":true}]},{"ID":12083,"SourceStructureID":9693,"TargetStructureID":4890,"Label":"9693-4890 via Ribbon Synapse from 15079 -> 7926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15079,"TargetID":7926,"Directional":true}]},{"ID":12084,"SourceStructureID":9693,"TargetStructureID":5117,"Label":"9693-5117 via Ribbon Synapse from 18734 -> 18736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18734,"TargetID":18736,"Directional":true}]},{"ID":12085,"SourceStructureID":9693,"TargetStructureID":5118,"Label":"9693-5118 via Ribbon Synapse from 28245 -> 70916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":28245,"TargetID":70916,"Directional":true}]},{"ID":12086,"SourceStructureID":9693,"TargetStructureID":8033,"Label":"9693-8033 via Ribbon Synapse from 9777 -> 18444, 18445 -> 18446, 18448 -> 18447, 18451 -> 18450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":9777,"TargetID":18444,"Directional":true},{"SourceID":18445,"TargetID":18446,"Directional":true},{"SourceID":18448,"TargetID":18447,"Directional":true},{"SourceID":18451,"TargetID":18450,"Directional":true}]},{"ID":12087,"SourceStructureID":9693,"TargetStructureID":15394,"Label":"9693-15394 via Ribbon Synapse from 15393 -> 41020, 135020 -> 135019","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15393,"TargetID":41020,"Directional":true},{"SourceID":135020,"TargetID":135019,"Directional":true}]},{"ID":12088,"SourceStructureID":9693,"TargetStructureID":32804,"Label":"9693-32804 via Ribbon Synapse from 14066 -> 32827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14066,"TargetID":32827,"Directional":true}]},{"ID":12089,"SourceStructureID":9693,"TargetStructureID":54727,"Label":"9693-54727 via Ribbon Synapse from 15393 -> 54729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15393,"TargetID":54729,"Directional":true}]},{"ID":12090,"SourceStructureID":9693,"TargetStructureID":59560,"Label":"9693-59560 via Ribbon Synapse from 59559 -> 59561","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59559,"TargetID":59561,"Directional":true}]},{"ID":12091,"SourceStructureID":9693,"TargetStructureID":95701,"Label":"9693-95701 via Ribbon Synapse from 10437 -> 135152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10437,"TargetID":135152,"Directional":true}]},{"ID":12092,"SourceStructureID":9693,"TargetStructureID":134654,"Label":"9693-134654 via BC Conventional Synapse from 119733 -> 134655","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119733,"TargetID":134655,"Directional":true}]},{"ID":12093,"SourceStructureID":9693,"TargetStructureID":134657,"Label":"9693-134657 via BC Conventional Synapse from 119771 -> 134658","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119771,"TargetID":134658,"Directional":true}]},{"ID":12094,"SourceStructureID":9693,"TargetStructureID":134659,"Label":"9693-134659 via BC Conventional Synapse from 119782 -> 134660","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119782,"TargetID":134660,"Directional":true}]},{"ID":12095,"SourceStructureID":9693,"TargetStructureID":134662,"Label":"9693-134662 via BC Conventional Synapse from 119808 -> 134663","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119808,"TargetID":134663,"Directional":true}]},{"ID":12096,"SourceStructureID":9693,"TargetStructureID":134664,"Label":"9693-134664 via BC Conventional Synapse from 119813 -> 134665","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119813,"TargetID":134665,"Directional":true}]},{"ID":12097,"SourceStructureID":9693,"TargetStructureID":134667,"Label":"9693-134667 via BC Conventional Synapse from 119842 -> 134668","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119842,"TargetID":134668,"Directional":true}]},{"ID":12098,"SourceStructureID":9693,"TargetStructureID":134669,"Label":"9693-134669 via BC Conventional Synapse from 119849 -> 134670","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119849,"TargetID":134670,"Directional":true}]},{"ID":12099,"SourceStructureID":9693,"TargetStructureID":134671,"Label":"9693-134671 via BC Conventional Synapse from 119851 -> 134672","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119851,"TargetID":134672,"Directional":true}]},{"ID":12100,"SourceStructureID":9693,"TargetStructureID":134674,"Label":"9693-134674 via BC Conventional Synapse from 119855 -> 134676","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119855,"TargetID":134676,"Directional":true}]},{"ID":12101,"SourceStructureID":9693,"TargetStructureID":134677,"Label":"9693-134677 via BC Conventional Synapse from 119868 -> 134678","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119868,"TargetID":134678,"Directional":true}]},{"ID":12102,"SourceStructureID":9693,"TargetStructureID":134681,"Label":"9693-134681 via BC Conventional Synapse from 119875 -> 134682","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119875,"TargetID":134682,"Directional":true}]},{"ID":12103,"SourceStructureID":9693,"TargetStructureID":134691,"Label":"9693-134691 via BC Conventional Synapse from 120061 -> 134692","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120061,"TargetID":134692,"Directional":true}]},{"ID":12104,"SourceStructureID":9693,"TargetStructureID":134693,"Label":"9693-134693 via BC Conventional Synapse from 120069 -> 134695","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120069,"TargetID":134695,"Directional":true}]},{"ID":12105,"SourceStructureID":9693,"TargetStructureID":134698,"Label":"9693-134698 via BC Conventional Synapse from 120094 -> 134699","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120094,"TargetID":134699,"Directional":true}]},{"ID":12106,"SourceStructureID":9693,"TargetStructureID":134701,"Label":"9693-134701 via BC Conventional Synapse from 120098 -> 134702","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120098,"TargetID":134702,"Directional":true}]},{"ID":12107,"SourceStructureID":9693,"TargetStructureID":134703,"Label":"9693-134703 via BC Conventional Synapse from 120211 -> 134705","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120211,"TargetID":134705,"Directional":true}]},{"ID":12108,"SourceStructureID":9693,"TargetStructureID":134706,"Label":"9693-134706 via BC Conventional Synapse from 15014 -> 134707","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":15014,"TargetID":134707,"Directional":true}]},{"ID":12109,"SourceStructureID":9693,"TargetStructureID":134713,"Label":"9693-134713 via BC Conventional Synapse from 15073 -> 134714","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":15073,"TargetID":134714,"Directional":true}]},{"ID":12110,"SourceStructureID":9693,"TargetStructureID":134715,"Label":"9693-134715 via BC Conventional Synapse from 9754 -> 134716","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":9754,"TargetID":134716,"Directional":true}]},{"ID":12111,"SourceStructureID":9769,"TargetStructureID":606,"Label":"9769-606 via Conventional from 25889 -> 25890, 42521 -> 42520, 51208 -> 51207, 51257 -> 51258, 51275 -> 51274, 51592 -> 51591, 51866 -> 51865","Type":"Conventional","Directional":true,"Links":[{"SourceID":25889,"TargetID":25890,"Directional":true},{"SourceID":42521,"TargetID":42520,"Directional":true},{"SourceID":51208,"TargetID":51207,"Directional":true},{"SourceID":51257,"TargetID":51258,"Directional":true},{"SourceID":51275,"TargetID":51274,"Directional":true},{"SourceID":51592,"TargetID":51591,"Directional":true},{"SourceID":51866,"TargetID":51865,"Directional":true}]},{"ID":12112,"SourceStructureID":9769,"TargetStructureID":5107,"Label":"9769-5107 via Conventional from 29960 -> 53163","Type":"Conventional","Directional":true,"Links":[{"SourceID":29960,"TargetID":53163,"Directional":true}]},{"ID":12113,"SourceStructureID":9769,"TargetStructureID":5528,"Label":"9769-5528 via Conventional from 54899 -> 55030","Type":"Conventional","Directional":true,"Links":[{"SourceID":54899,"TargetID":55030,"Directional":true}]},{"ID":12114,"SourceStructureID":9769,"TargetStructureID":5643,"Label":"9769-5643 via Conventional from 30174 -> 52255, 38539 -> 38538","Type":"Conventional","Directional":true,"Links":[{"SourceID":30174,"TargetID":52255,"Directional":true},{"SourceID":38539,"TargetID":38538,"Directional":true}]},{"ID":12115,"SourceStructureID":9769,"TargetStructureID":5650,"Label":"9769-5650 via Conventional from 105189 -> 105192","Type":"Conventional","Directional":true,"Links":[{"SourceID":105189,"TargetID":105192,"Directional":true}]},{"ID":12116,"SourceStructureID":9769,"TargetStructureID":6203,"Label":"9769-6203 via Conventional from 52828 -> 52830","Type":"Conventional","Directional":true,"Links":[{"SourceID":52828,"TargetID":52830,"Directional":true}]},{"ID":12117,"SourceStructureID":9769,"TargetStructureID":6857,"Label":"9769-6857 via Conventional from 29846 -> 29847","Type":"Conventional","Directional":true,"Links":[{"SourceID":29846,"TargetID":29847,"Directional":true}]},{"ID":12118,"SourceStructureID":9769,"TargetStructureID":15796,"Label":"9769-15796 via Conventional from 11265 -> 15843, 12374 -> 38155, 52881 -> 52914","Type":"Conventional","Directional":true,"Links":[{"SourceID":11265,"TargetID":15843,"Directional":true},{"SourceID":12374,"TargetID":38155,"Directional":true},{"SourceID":52881,"TargetID":52914,"Directional":true}]},{"ID":12119,"SourceStructureID":9769,"TargetStructureID":24381,"Label":"9769-24381 via Conventional from 12402 -> 24383","Type":"Conventional","Directional":true,"Links":[{"SourceID":12402,"TargetID":24383,"Directional":true}]},{"ID":12120,"SourceStructureID":9769,"TargetStructureID":25865,"Label":"9769-25865 via Conventional from 29808 -> 32249","Type":"Conventional","Directional":true,"Links":[{"SourceID":29808,"TargetID":32249,"Directional":true}]},{"ID":12121,"SourceStructureID":9769,"TargetStructureID":29827,"Label":"9769-29827 via Conventional from 29826 -> 29838","Type":"Conventional","Directional":true,"Links":[{"SourceID":29826,"TargetID":29838,"Directional":true}]},{"ID":12122,"SourceStructureID":9769,"TargetStructureID":30130,"Label":"9769-30130 via Conventional from 30126 -> 30133, 30128 -> 52581","Type":"Conventional","Directional":true,"Links":[{"SourceID":30126,"TargetID":30133,"Directional":true},{"SourceID":30128,"TargetID":52581,"Directional":true}]},{"ID":12123,"SourceStructureID":9769,"TargetStructureID":32945,"Label":"9769-32945 via Conventional from 23936 -> 32948, 54451 -> 54452","Type":"Conventional","Directional":true,"Links":[{"SourceID":23936,"TargetID":32948,"Directional":true},{"SourceID":54451,"TargetID":54452,"Directional":true}]},{"ID":12124,"SourceStructureID":9769,"TargetStructureID":38357,"Label":"9769-38357 via Conventional from 12403 -> 38890","Type":"Conventional","Directional":true,"Links":[{"SourceID":12403,"TargetID":38890,"Directional":true}]},{"ID":12125,"SourceStructureID":9769,"TargetStructureID":38461,"Label":"9769-38461 via Conventional from 29965 -> 38471","Type":"Conventional","Directional":true,"Links":[{"SourceID":29965,"TargetID":38471,"Directional":true}]},{"ID":12126,"SourceStructureID":9769,"TargetStructureID":38502,"Label":"9769-38502 via Conventional from 38507 -> 38506","Type":"Conventional","Directional":true,"Links":[{"SourceID":38507,"TargetID":38506,"Directional":true}]},{"ID":12127,"SourceStructureID":9769,"TargetStructureID":38949,"Label":"9769-38949 via Conventional from 30114 -> 38996","Type":"Conventional","Directional":true,"Links":[{"SourceID":30114,"TargetID":38996,"Directional":true}]},{"ID":12128,"SourceStructureID":9769,"TargetStructureID":43716,"Label":"9769-43716 via Conventional from 23971 -> 54705","Type":"Conventional","Directional":true,"Links":[{"SourceID":23971,"TargetID":54705,"Directional":true}]},{"ID":12129,"SourceStructureID":9769,"TargetStructureID":46975,"Label":"9769-46975 via Conventional from 46978 -> 46977","Type":"Conventional","Directional":true,"Links":[{"SourceID":46978,"TargetID":46977,"Directional":true}]},{"ID":12130,"SourceStructureID":9769,"TargetStructureID":51812,"Label":"9769-51812 via Conventional from 29848 -> 51813","Type":"Conventional","Directional":true,"Links":[{"SourceID":29848,"TargetID":51813,"Directional":true}]},{"ID":12131,"SourceStructureID":9769,"TargetStructureID":52921,"Label":"9769-52921 via Conventional from 29964 -> 52925","Type":"Conventional","Directional":true,"Links":[{"SourceID":29964,"TargetID":52925,"Directional":true}]},{"ID":12132,"SourceStructureID":9769,"TargetStructureID":53000,"Label":"9769-53000 via Conventional from 29962 -> 53122","Type":"Conventional","Directional":true,"Links":[{"SourceID":29962,"TargetID":53122,"Directional":true}]},{"ID":12133,"SourceStructureID":9769,"TargetStructureID":53182,"Label":"9769-53182 via Conventional from 29935 -> 53183","Type":"Conventional","Directional":true,"Links":[{"SourceID":29935,"TargetID":53183,"Directional":true}]},{"ID":12134,"SourceStructureID":9769,"TargetStructureID":53202,"Label":"9769-53202 via Conventional from 53199 -> 53214","Type":"Conventional","Directional":true,"Links":[{"SourceID":53199,"TargetID":53214,"Directional":true}]},{"ID":12135,"SourceStructureID":9769,"TargetStructureID":53218,"Label":"9769-53218 via Conventional from 53217 -> 53219","Type":"Conventional","Directional":true,"Links":[{"SourceID":53217,"TargetID":53219,"Directional":true}]},{"ID":12136,"SourceStructureID":9769,"TargetStructureID":53221,"Label":"9769-53221 via Conventional from 20258 -> 53222","Type":"Conventional","Directional":true,"Links":[{"SourceID":20258,"TargetID":53222,"Directional":true}]},{"ID":12137,"SourceStructureID":9769,"TargetStructureID":53224,"Label":"9769-53224 via Conventional from 20257 -> 53225","Type":"Conventional","Directional":true,"Links":[{"SourceID":20257,"TargetID":53225,"Directional":true}]},{"ID":12138,"SourceStructureID":9769,"TargetStructureID":53229,"Label":"9769-53229 via Conventional from 20254 -> 53230","Type":"Conventional","Directional":true,"Links":[{"SourceID":20254,"TargetID":53230,"Directional":true}]},{"ID":12139,"SourceStructureID":9769,"TargetStructureID":53232,"Label":"9769-53232 via Conventional from 53231 -> 53234","Type":"Conventional","Directional":true,"Links":[{"SourceID":53231,"TargetID":53234,"Directional":true}]},{"ID":12140,"SourceStructureID":9769,"TargetStructureID":53245,"Label":"9769-53245 via Conventional from 20244 -> 53246","Type":"Conventional","Directional":true,"Links":[{"SourceID":20244,"TargetID":53246,"Directional":true}]},{"ID":12141,"SourceStructureID":9769,"TargetStructureID":53399,"Label":"9769-53399 via Conventional from 53398 -> 53401","Type":"Conventional","Directional":true,"Links":[{"SourceID":53398,"TargetID":53401,"Directional":true}]},{"ID":12142,"SourceStructureID":9769,"TargetStructureID":53407,"Label":"9769-53407 via Conventional from 20652 -> 53408","Type":"Conventional","Directional":true,"Links":[{"SourceID":20652,"TargetID":53408,"Directional":true}]},{"ID":12143,"SourceStructureID":9769,"TargetStructureID":53416,"Label":"9769-53416 via Conventional from 53415 -> 53417","Type":"Conventional","Directional":true,"Links":[{"SourceID":53415,"TargetID":53417,"Directional":true}]},{"ID":12144,"SourceStructureID":9769,"TargetStructureID":53436,"Label":"9769-53436 via Conventional from 30139 -> 53438","Type":"Conventional","Directional":true,"Links":[{"SourceID":30139,"TargetID":53438,"Directional":true}]},{"ID":12145,"SourceStructureID":9769,"TargetStructureID":53443,"Label":"9769-53443 via Conventional from 30152 -> 53444","Type":"Conventional","Directional":true,"Links":[{"SourceID":30152,"TargetID":53444,"Directional":true}]},{"ID":12146,"SourceStructureID":9769,"TargetStructureID":53991,"Label":"9769-53991 via Conventional from 30156 -> 53992","Type":"Conventional","Directional":true,"Links":[{"SourceID":30156,"TargetID":53992,"Directional":true}]},{"ID":12147,"SourceStructureID":9769,"TargetStructureID":54006,"Label":"9769-54006 via Conventional from 11264 -> 54007, 54013 -> 54014","Type":"Conventional","Directional":true,"Links":[{"SourceID":11264,"TargetID":54007,"Directional":true},{"SourceID":54013,"TargetID":54014,"Directional":true}]},{"ID":12148,"SourceStructureID":9769,"TargetStructureID":54078,"Label":"9769-54078 via Conventional from 54077 -> 54079","Type":"Conventional","Directional":true,"Links":[{"SourceID":54077,"TargetID":54079,"Directional":true}]},{"ID":12149,"SourceStructureID":9769,"TargetStructureID":54261,"Label":"9769-54261 via Conventional from 54254 -> 54263","Type":"Conventional","Directional":true,"Links":[{"SourceID":54254,"TargetID":54263,"Directional":true}]},{"ID":12150,"SourceStructureID":9769,"TargetStructureID":54287,"Label":"9769-54287 via Conventional from 23930 -> 54288","Type":"Conventional","Directional":true,"Links":[{"SourceID":23930,"TargetID":54288,"Directional":true}]},{"ID":12151,"SourceStructureID":9769,"TargetStructureID":54681,"Label":"9769-54681 via Conventional from 23956 -> 54684","Type":"Conventional","Directional":true,"Links":[{"SourceID":23956,"TargetID":54684,"Directional":true}]},{"ID":12152,"SourceStructureID":9769,"TargetStructureID":54695,"Label":"9769-54695 via Conventional from 23958 -> 54696","Type":"Conventional","Directional":true,"Links":[{"SourceID":23958,"TargetID":54696,"Directional":true}]},{"ID":12153,"SourceStructureID":9769,"TargetStructureID":54818,"Label":"9769-54818 via Conventional from 23975 -> 54819","Type":"Conventional","Directional":true,"Links":[{"SourceID":23975,"TargetID":54819,"Directional":true}]},{"ID":12154,"SourceStructureID":9769,"TargetStructureID":54862,"Label":"9769-54862 via Conventional from 24008 -> 54863","Type":"Conventional","Directional":true,"Links":[{"SourceID":24008,"TargetID":54863,"Directional":true}]},{"ID":12155,"SourceStructureID":9769,"TargetStructureID":54877,"Label":"9769-54877 via Conventional from 12565 -> 54878","Type":"Conventional","Directional":true,"Links":[{"SourceID":12565,"TargetID":54878,"Directional":true}]},{"ID":12156,"SourceStructureID":9769,"TargetStructureID":54908,"Label":"9769-54908 via Conventional from 29886 -> 54909","Type":"Conventional","Directional":true,"Links":[{"SourceID":29886,"TargetID":54909,"Directional":true}]},{"ID":12157,"SourceStructureID":9769,"TargetStructureID":54925,"Label":"9769-54925 via Conventional from 29855 -> 54936, 54924 -> 54926","Type":"Conventional","Directional":true,"Links":[{"SourceID":29855,"TargetID":54936,"Directional":true},{"SourceID":54924,"TargetID":54926,"Directional":true}]},{"ID":12158,"SourceStructureID":9769,"TargetStructureID":55103,"Label":"9769-55103 via Conventional from 12329 -> 55104","Type":"Conventional","Directional":true,"Links":[{"SourceID":12329,"TargetID":55104,"Directional":true}]},{"ID":12159,"SourceStructureID":9769,"TargetStructureID":55166,"Label":"9769-55166 via Conventional from 30076 -> 55167","Type":"Conventional","Directional":true,"Links":[{"SourceID":30076,"TargetID":55167,"Directional":true}]},{"ID":12160,"SourceStructureID":9769,"TargetStructureID":55201,"Label":"9769-55201 via Conventional from 55200 -> 55202","Type":"Conventional","Directional":true,"Links":[{"SourceID":55200,"TargetID":55202,"Directional":true}]},{"ID":12161,"SourceStructureID":9769,"TargetStructureID":55212,"Label":"9769-55212 via Conventional from 30096 -> 55214","Type":"Conventional","Directional":true,"Links":[{"SourceID":30096,"TargetID":55214,"Directional":true}]},{"ID":12162,"SourceStructureID":9769,"TargetStructureID":55215,"Label":"9769-55215 via Conventional from 30098 -> 55217","Type":"Conventional","Directional":true,"Links":[{"SourceID":30098,"TargetID":55217,"Directional":true}]},{"ID":12163,"SourceStructureID":9769,"TargetStructureID":55218,"Label":"9769-55218 via Conventional from 30108 -> 55219","Type":"Conventional","Directional":true,"Links":[{"SourceID":30108,"TargetID":55219,"Directional":true}]},{"ID":12164,"SourceStructureID":9769,"TargetStructureID":55304,"Label":"9769-55304 via Conventional from 12405 -> 55305","Type":"Conventional","Directional":true,"Links":[{"SourceID":12405,"TargetID":55305,"Directional":true}]},{"ID":12165,"SourceStructureID":9769,"TargetStructureID":55311,"Label":"9769-55311 via Conventional from 55310 -> 55312","Type":"Conventional","Directional":true,"Links":[{"SourceID":55310,"TargetID":55312,"Directional":true}]},{"ID":12166,"SourceStructureID":9769,"TargetStructureID":55319,"Label":"9769-55319 via Conventional from 55321 -> 55320","Type":"Conventional","Directional":true,"Links":[{"SourceID":55321,"TargetID":55320,"Directional":true}]},{"ID":12167,"SourceStructureID":9769,"TargetStructureID":74584,"Label":"9769-74584 via Conventional from 81827 -> 81828","Type":"Conventional","Directional":true,"Links":[{"SourceID":81827,"TargetID":81828,"Directional":true}]},{"ID":12168,"SourceStructureID":9810,"TargetStructureID":6134,"Label":"9810-6134 via Conventional from 9811 -> 9809","Type":"Conventional","Directional":true,"Links":[{"SourceID":9811,"TargetID":9809,"Directional":true}]},{"ID":12169,"SourceStructureID":10142,"TargetStructureID":7225,"Label":"10142-7225 via Ribbon Synapse from 31468 -> 31469, 63493 -> 63492","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31468,"TargetID":31469,"Directional":true},{"SourceID":63493,"TargetID":63492,"Directional":true}]},{"ID":12170,"SourceStructureID":10146,"TargetStructureID":7279,"Label":"10146-7279 via Ribbon Synapse from 60574 -> 60576, 60574 -> 87898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60574,"TargetID":60576,"Directional":true},{"SourceID":60574,"TargetID":87898,"Directional":true}]},{"ID":12171,"SourceStructureID":10335,"TargetStructureID":591,"Label":"10335-591 via Conventional from 10337 -> 10323","Type":"Conventional","Directional":true,"Links":[{"SourceID":10337,"TargetID":10323,"Directional":true}]},{"ID":12172,"SourceStructureID":10335,"TargetStructureID":3679,"Label":"10335-3679 via Conventional from 10338 -> 10328","Type":"Conventional","Directional":true,"Links":[{"SourceID":10338,"TargetID":10328,"Directional":true}]},{"ID":12173,"SourceStructureID":10371,"TargetStructureID":591,"Label":"10371-591 via Conventional from 10372 -> 10362","Type":"Conventional","Directional":true,"Links":[{"SourceID":10372,"TargetID":10362,"Directional":true}]},{"ID":12174,"SourceStructureID":10412,"TargetStructureID":591,"Label":"10412-591 via Ribbon Synapse from 10417 -> 10418, 10421 -> 10380","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10417,"TargetID":10418,"Directional":true},{"SourceID":10421,"TargetID":10380,"Directional":true}]},{"ID":12175,"SourceStructureID":10412,"TargetStructureID":7114,"Label":"10412-7114 via Ribbon Synapse from 10429 -> 10433, 124457 -> 124458","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10429,"TargetID":10433,"Directional":true},{"SourceID":124457,"TargetID":124458,"Directional":true}]},{"ID":12176,"SourceStructureID":10565,"TargetStructureID":176,"Label":"10565-176 via Conventional from 44198 -> 5886","Type":"Conventional","Directional":true,"Links":[{"SourceID":44198,"TargetID":5886,"Directional":true}]},{"ID":12177,"SourceStructureID":10565,"TargetStructureID":606,"Label":"10565-606 via Conventional from 45408 -> 10515, 45410 -> 53958, 45412 -> 10513","Type":"Conventional","Directional":true,"Links":[{"SourceID":45408,"TargetID":10515,"Directional":true},{"SourceID":45410,"TargetID":53958,"Directional":true},{"SourceID":45412,"TargetID":10513,"Directional":true}]},{"ID":12178,"SourceStructureID":10574,"TargetStructureID":165,"Label":"10574-165 via Conventional from 84552 -> 84553","Type":"Conventional","Directional":true,"Links":[{"SourceID":84552,"TargetID":84553,"Directional":true}]},{"ID":12179,"SourceStructureID":10574,"TargetStructureID":456,"Label":"10574-456 via Conventional from 84602 -> 84603","Type":"Conventional","Directional":true,"Links":[{"SourceID":84602,"TargetID":84603,"Directional":true}]},{"ID":12180,"SourceStructureID":10574,"TargetStructureID":460,"Label":"10574-460 via Conventional from 84557 -> 130170","Type":"Conventional","Directional":true,"Links":[{"SourceID":84557,"TargetID":130170,"Directional":true}]},{"ID":12181,"SourceStructureID":10574,"TargetStructureID":5530,"Label":"10574-5530 via Cistern Pre from 82546 -> 80493","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":82546,"TargetID":80493,"Directional":true}]},{"ID":12182,"SourceStructureID":10574,"TargetStructureID":26304,"Label":"10574-26304 via Conventional from 84599 -> 26311","Type":"Conventional","Directional":true,"Links":[{"SourceID":84599,"TargetID":26311,"Directional":true}]},{"ID":12183,"SourceStructureID":10574,"TargetStructureID":56600,"Label":"10574-56600 via Conventional from 84601 -> 56602","Type":"Conventional","Directional":true,"Links":[{"SourceID":84601,"TargetID":56602,"Directional":true}]},{"ID":12184,"SourceStructureID":10574,"TargetStructureID":64690,"Label":"10574-64690 via Conventional from 84550 -> 84551","Type":"Conventional","Directional":true,"Links":[{"SourceID":84550,"TargetID":84551,"Directional":true}]},{"ID":12185,"SourceStructureID":10574,"TargetStructureID":88266,"Label":"10574-88266 via Cistern Pre from 45013 -> 88268","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":45013,"TargetID":88268,"Directional":true}]},{"ID":12186,"SourceStructureID":10596,"TargetStructureID":7564,"Label":"10596-7564 via Ribbon Synapse from 82325 -> 82324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82325,"TargetID":82324,"Directional":true}]},{"ID":12187,"SourceStructureID":10596,"TargetStructureID":7861,"Label":"10596-7861 via Ribbon Synapse from 122418 -> 122417, 122427 -> 122426, 122429 -> 122428","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122418,"TargetID":122417,"Directional":true},{"SourceID":122427,"TargetID":122426,"Directional":true},{"SourceID":122429,"TargetID":122428,"Directional":true}]},{"ID":12188,"SourceStructureID":10602,"TargetStructureID":5457,"Label":"10602-5457 via Ribbon Synapse from 103359 -> 103360","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103359,"TargetID":103360,"Directional":true}]},{"ID":12189,"SourceStructureID":10625,"TargetStructureID":514,"Label":"10625-514 via Ribbon Synapse from 16239 -> 16335, 16337 -> 16336, 16339 -> 16338, 16757 -> 16346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16239,"TargetID":16335,"Directional":true},{"SourceID":16337,"TargetID":16336,"Directional":true},{"SourceID":16339,"TargetID":16338,"Directional":true},{"SourceID":16757,"TargetID":16346,"Directional":true}]},{"ID":12190,"SourceStructureID":10625,"TargetStructureID":3257,"Label":"10625-3257 via Ribbon Synapse from 16211 -> 22973, 16354 -> 16355, 22915 -> 22914, 22917 -> 22916, 51375 -> 51378","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16211,"TargetID":22973,"Directional":true},{"SourceID":16354,"TargetID":16355,"Directional":true},{"SourceID":22915,"TargetID":22914,"Directional":true},{"SourceID":22917,"TargetID":22916,"Directional":true},{"SourceID":51375,"TargetID":51378,"Directional":true}]},{"ID":12191,"SourceStructureID":10625,"TargetStructureID":3679,"Label":"10625-3679 via Ribbon Synapse from 16235 -> 8026, 16236 -> 8022, 16754 -> 6192, 16756 -> 6193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16235,"TargetID":8026,"Directional":true},{"SourceID":16236,"TargetID":8022,"Directional":true},{"SourceID":16754,"TargetID":6192,"Directional":true},{"SourceID":16756,"TargetID":6193,"Directional":true}]},{"ID":12192,"SourceStructureID":10625,"TargetStructureID":5331,"Label":"10625-5331 via Ribbon Synapse from 16222 -> 39175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16222,"TargetID":39175,"Directional":true}]},{"ID":12193,"SourceStructureID":10625,"TargetStructureID":5860,"Label":"10625-5860 via Ribbon Synapse from 26915 -> 7653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26915,"TargetID":7653,"Directional":true}]},{"ID":12194,"SourceStructureID":10625,"TargetStructureID":6169,"Label":"10625-6169 via Ribbon Synapse from 16183 -> 16182, 16185 -> 16184, 16187 -> 16186, 16190 -> 16189, 16192 -> 16191, 16219 -> 16218, 16222 -> 16221, 16229 -> 16230, 16231 -> 16232, 16323 -> 16322, 16325 -> 16324, 26923 -> 29693","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16183,"TargetID":16182,"Directional":true},{"SourceID":16185,"TargetID":16184,"Directional":true},{"SourceID":16187,"TargetID":16186,"Directional":true},{"SourceID":16190,"TargetID":16189,"Directional":true},{"SourceID":16192,"TargetID":16191,"Directional":true},{"SourceID":16219,"TargetID":16218,"Directional":true},{"SourceID":16222,"TargetID":16221,"Directional":true},{"SourceID":16229,"TargetID":16230,"Directional":true},{"SourceID":16231,"TargetID":16232,"Directional":true},{"SourceID":16323,"TargetID":16322,"Directional":true},{"SourceID":16325,"TargetID":16324,"Directional":true},{"SourceID":26923,"TargetID":29693,"Directional":true}]},{"ID":12195,"SourceStructureID":10625,"TargetStructureID":9643,"Label":"10625-9643 via Ribbon Synapse from 16229 -> 9659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16229,"TargetID":9659,"Directional":true}]},{"ID":12196,"SourceStructureID":10625,"TargetStructureID":39528,"Label":"10625-39528 via Ribbon Synapse from 16192 -> 39773","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16192,"TargetID":39773,"Directional":true}]},{"ID":12197,"SourceStructureID":10625,"TargetStructureID":39530,"Label":"10625-39530 via Ribbon Synapse from 16183 -> 39540","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16183,"TargetID":39540,"Directional":true}]},{"ID":12198,"SourceStructureID":10625,"TargetStructureID":39724,"Label":"10625-39724 via Ribbon Synapse from 16211 -> 39728, 19264 -> 39727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16211,"TargetID":39728,"Directional":true},{"SourceID":19264,"TargetID":39727,"Directional":true}]},{"ID":12199,"SourceStructureID":10625,"TargetStructureID":39737,"Label":"10625-39737 via Ribbon Synapse from 16239 -> 39744","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16239,"TargetID":39744,"Directional":true}]},{"ID":12200,"SourceStructureID":10625,"TargetStructureID":39745,"Label":"10625-39745 via Ribbon Synapse from 16337 -> 39747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16337,"TargetID":39747,"Directional":true}]},{"ID":12201,"SourceStructureID":10625,"TargetStructureID":39748,"Label":"10625-39748 via Ribbon Synapse from 22915 -> 39749","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22915,"TargetID":39749,"Directional":true}]},{"ID":12202,"SourceStructureID":10625,"TargetStructureID":39759,"Label":"10625-39759 via Ribbon Synapse from 22917 -> 39762","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22917,"TargetID":39762,"Directional":true}]},{"ID":12203,"SourceStructureID":10625,"TargetStructureID":39764,"Label":"10625-39764 via Ribbon Synapse from 16236 -> 39767, 16325 -> 39770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16236,"TargetID":39767,"Directional":true},{"SourceID":16325,"TargetID":39770,"Directional":true}]},{"ID":12204,"SourceStructureID":10625,"TargetStructureID":39784,"Label":"10625-39784 via Ribbon Synapse from 19263 -> 39786","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19263,"TargetID":39786,"Directional":true}]},{"ID":12205,"SourceStructureID":10625,"TargetStructureID":39787,"Label":"10625-39787 via Ribbon Synapse from 19262 -> 39789, 19262 -> 87732","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19262,"TargetID":39789,"Directional":true},{"SourceID":19262,"TargetID":87732,"Directional":true}]},{"ID":12206,"SourceStructureID":10625,"TargetStructureID":39790,"Label":"10625-39790 via Ribbon Synapse from 19261 -> 39793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19261,"TargetID":39793,"Directional":true}]},{"ID":12207,"SourceStructureID":10625,"TargetStructureID":39794,"Label":"10625-39794 via Ribbon Synapse from 16323 -> 39795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16323,"TargetID":39795,"Directional":true}]},{"ID":12208,"SourceStructureID":10625,"TargetStructureID":39798,"Label":"10625-39798 via Ribbon Synapse from 16187 -> 39801","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16187,"TargetID":39801,"Directional":true}]},{"ID":12209,"SourceStructureID":10625,"TargetStructureID":39802,"Label":"10625-39802 via Ribbon Synapse from 16190 -> 39806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16190,"TargetID":39806,"Directional":true}]},{"ID":12210,"SourceStructureID":10625,"TargetStructureID":39807,"Label":"10625-39807 via Ribbon Synapse from 26913 -> 39810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26913,"TargetID":39810,"Directional":true}]},{"ID":12211,"SourceStructureID":10625,"TargetStructureID":39811,"Label":"10625-39811 via Ribbon Synapse from 16756 -> 39815","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16756,"TargetID":39815,"Directional":true}]},{"ID":12212,"SourceStructureID":10625,"TargetStructureID":39816,"Label":"10625-39816 via Ribbon Synapse from 16755 -> 39819, 26912 -> 39818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16755,"TargetID":39819,"Directional":true},{"SourceID":26912,"TargetID":39818,"Directional":true}]},{"ID":12213,"SourceStructureID":10625,"TargetStructureID":39830,"Label":"10625-39830 via Ribbon Synapse from 26915 -> 39831","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26915,"TargetID":39831,"Directional":true}]},{"ID":12214,"SourceStructureID":10625,"TargetStructureID":39835,"Label":"10625-39835 via Ribbon Synapse from 26916 -> 39837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26916,"TargetID":39837,"Directional":true}]},{"ID":12215,"SourceStructureID":10625,"TargetStructureID":39838,"Label":"10625-39838 via Ribbon Synapse from 51375 -> 51376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51375,"TargetID":51376,"Directional":true}]},{"ID":12216,"SourceStructureID":10625,"TargetStructureID":40863,"Label":"10625-40863 via Ribbon Synapse from 26906 -> 40874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26906,"TargetID":40874,"Directional":true}]},{"ID":12217,"SourceStructureID":10632,"TargetStructureID":8038,"Label":"10632-8038 via Ribbon Synapse from 68921 -> 68920","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68921,"TargetID":68920,"Directional":true}]},{"ID":12218,"SourceStructureID":10720,"TargetStructureID":138,"Label":"10720-138 via Conventional from 27176 -> 136847","Type":"Conventional","Directional":true,"Links":[{"SourceID":27176,"TargetID":136847,"Directional":true}]},{"ID":12219,"SourceStructureID":10720,"TargetStructureID":173,"Label":"10720-173 via Conventional from 27177 -> 11930, 27180 -> 128179, 27180 -> 128181","Type":"Conventional","Directional":true,"Links":[{"SourceID":27177,"TargetID":11930,"Directional":true},{"SourceID":27180,"TargetID":128179,"Directional":true},{"SourceID":27180,"TargetID":128181,"Directional":true}]},{"ID":12220,"SourceStructureID":10720,"TargetStructureID":5150,"Label":"10720-5150 via Conventional from 27152 -> 10719","Type":"Conventional","Directional":true,"Links":[{"SourceID":27152,"TargetID":10719,"Directional":true}]},{"ID":12221,"SourceStructureID":10720,"TargetStructureID":5585,"Label":"10720-5585 via Conventional from 36817 -> 36816","Type":"Conventional","Directional":true,"Links":[{"SourceID":36817,"TargetID":36816,"Directional":true}]},{"ID":12222,"SourceStructureID":10720,"TargetStructureID":10720,"Label":"10720-10720 via Conventional from 27153 -> 27155","Type":"Conventional","Directional":true,"Links":[{"SourceID":27153,"TargetID":27155,"Directional":true}]},{"ID":12223,"SourceStructureID":10720,"TargetStructureID":147796,"Label":"10720-147796 via Conventional from 27158 -> 147803","Type":"Conventional","Directional":true,"Links":[{"SourceID":27158,"TargetID":147803,"Directional":true}]},{"ID":12224,"SourceStructureID":10815,"TargetStructureID":4943,"Label":"10815-4943 via Ribbon Synapse from 43373 -> 43372","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43373,"TargetID":43372,"Directional":true}]},{"ID":12225,"SourceStructureID":10815,"TargetStructureID":5609,"Label":"10815-5609 via Ribbon Synapse from 31380 -> 31381","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31380,"TargetID":31381,"Directional":true}]},{"ID":12226,"SourceStructureID":10815,"TargetStructureID":7114,"Label":"10815-7114 via Ribbon Synapse from 31380 -> 31384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31380,"TargetID":31384,"Directional":true}]},{"ID":12227,"SourceStructureID":10826,"TargetStructureID":391,"Label":"10826-391 via Ribbon Synapse from 108557 -> 108559, 108571 -> 108574","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108557,"TargetID":108559,"Directional":true},{"SourceID":108571,"TargetID":108574,"Directional":true}]},{"ID":12228,"SourceStructureID":10826,"TargetStructureID":5345,"Label":"10826-5345 via Ribbon Synapse from 11387 -> 11382, 94781 -> 94780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11387,"TargetID":11382,"Directional":true},{"SourceID":94781,"TargetID":94780,"Directional":true}]},{"ID":12229,"SourceStructureID":10826,"TargetStructureID":8037,"Label":"10826-8037 via Ribbon Synapse from 11388 -> 11379, 11390 -> 11378","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11388,"TargetID":11379,"Directional":true},{"SourceID":11390,"TargetID":11378,"Directional":true}]},{"ID":12230,"SourceStructureID":10826,"TargetStructureID":32795,"Label":"10826-32795 via Ribbon Synapse from 32799 -> 32798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32799,"TargetID":32798,"Directional":true}]},{"ID":12231,"SourceStructureID":10826,"TargetStructureID":38231,"Label":"10826-38231 via Ribbon Synapse from 38234 -> 38235","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38234,"TargetID":38235,"Directional":true}]},{"ID":12232,"SourceStructureID":10826,"TargetStructureID":101402,"Label":"10826-101402 via Ribbon Synapse from 102083 -> 102082","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102083,"TargetID":102082,"Directional":true}]},{"ID":12233,"SourceStructureID":10840,"TargetStructureID":38401,"Label":"10840-38401 via Ribbon Synapse from 33271 -> 38403","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33271,"TargetID":38403,"Directional":true}]},{"ID":12234,"SourceStructureID":10840,"TargetStructureID":38404,"Label":"10840-38404 via Ribbon Synapse from 33271 -> 38407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33271,"TargetID":38407,"Directional":true}]},{"ID":12235,"SourceStructureID":10872,"TargetStructureID":308,"Label":"10872-308 via Ribbon Synapse from 15042 -> 43776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15042,"TargetID":43776,"Directional":true}]},{"ID":12236,"SourceStructureID":10872,"TargetStructureID":514,"Label":"10872-514 via Ribbon Synapse from 10893 -> 2525","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10893,"TargetID":2525,"Directional":true}]},{"ID":12237,"SourceStructureID":10872,"TargetStructureID":573,"Label":"10872-573 via Ribbon Synapse from 19220 -> 11430","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19220,"TargetID":11430,"Directional":true}]},{"ID":12238,"SourceStructureID":10872,"TargetStructureID":2610,"Label":"10872-2610 via Ribbon Synapse from 15036 -> 19226, 15040 -> 2901, 15042 -> 17940, 15640 -> 2910, 15641 -> 17898, 15645 -> 2913, 15740 -> 15663, 17897 -> 15647, 17900 -> 17899","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15036,"TargetID":19226,"Directional":true},{"SourceID":15040,"TargetID":2901,"Directional":true},{"SourceID":15042,"TargetID":17940,"Directional":true},{"SourceID":15640,"TargetID":2910,"Directional":true},{"SourceID":15641,"TargetID":17898,"Directional":true},{"SourceID":15645,"TargetID":2913,"Directional":true},{"SourceID":15740,"TargetID":15663,"Directional":true},{"SourceID":17897,"TargetID":15647,"Directional":true},{"SourceID":17900,"TargetID":17899,"Directional":true}]},{"ID":12239,"SourceStructureID":10872,"TargetStructureID":5303,"Label":"10872-5303 via Ribbon Synapse from 15747 -> 30566","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15747,"TargetID":30566,"Directional":true}]},{"ID":12240,"SourceStructureID":10872,"TargetStructureID":5345,"Label":"10872-5345 via Ribbon Synapse from 10879 -> 10881, 10882 -> 10883, 10889 -> 10890, 15021 -> 15020, 15742 -> 15674, 15744 -> 15737, 15747 -> 14592, 15751 -> 15753, 19233 -> 32860","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10879,"TargetID":10881,"Directional":true},{"SourceID":10882,"TargetID":10883,"Directional":true},{"SourceID":10889,"TargetID":10890,"Directional":true},{"SourceID":15021,"TargetID":15020,"Directional":true},{"SourceID":15742,"TargetID":15674,"Directional":true},{"SourceID":15744,"TargetID":15737,"Directional":true},{"SourceID":15747,"TargetID":14592,"Directional":true},{"SourceID":15751,"TargetID":15753,"Directional":true},{"SourceID":19233,"TargetID":32860,"Directional":true}]},{"ID":12241,"SourceStructureID":10872,"TargetStructureID":8037,"Label":"10872-8037 via Ribbon Synapse from 10891 -> 10892, 11629 -> 11628, 19222 -> 19223, 19224 -> 19225, 19227 -> 19230","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10891,"TargetID":10892,"Directional":true},{"SourceID":11629,"TargetID":11628,"Directional":true},{"SourceID":19222,"TargetID":19223,"Directional":true},{"SourceID":19224,"TargetID":19225,"Directional":true},{"SourceID":19227,"TargetID":19230,"Directional":true}]},{"ID":12242,"SourceStructureID":10897,"TargetStructureID":179,"Label":"10897-179 via Ribbon Synapse from 104875 -> 104874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104875,"TargetID":104874,"Directional":true}]},{"ID":12243,"SourceStructureID":10897,"TargetStructureID":391,"Label":"10897-391 via Ribbon Synapse from 13838 -> 108368, 13839 -> 108364, 13843 -> 108365","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13838,"TargetID":108368,"Directional":true},{"SourceID":13839,"TargetID":108364,"Directional":true},{"SourceID":13843,"TargetID":108365,"Directional":true}]},{"ID":12244,"SourceStructureID":10897,"TargetStructureID":514,"Label":"10897-514 via Ribbon Synapse from 10898 -> 1528, 10899 -> 2596, 10900 -> 1534, 10922 -> 2582, 10923 -> 2584, 10924 -> 10925, 13843 -> 13842, 18949 -> 18950, 18958 -> 2580, 18959 -> 18960, 18965 -> 82028, 104875 -> 104873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10898,"TargetID":1528,"Directional":true},{"SourceID":10899,"TargetID":2596,"Directional":true},{"SourceID":10900,"TargetID":1534,"Directional":true},{"SourceID":10922,"TargetID":2582,"Directional":true},{"SourceID":10923,"TargetID":2584,"Directional":true},{"SourceID":10924,"TargetID":10925,"Directional":true},{"SourceID":13843,"TargetID":13842,"Directional":true},{"SourceID":18949,"TargetID":18950,"Directional":true},{"SourceID":18958,"TargetID":2580,"Directional":true},{"SourceID":18959,"TargetID":18960,"Directional":true},{"SourceID":18965,"TargetID":82028,"Directional":true},{"SourceID":104875,"TargetID":104873,"Directional":true}]},{"ID":12245,"SourceStructureID":10897,"TargetStructureID":3679,"Label":"10897-3679 via Ribbon Synapse from 10927 -> 4701, 10927 -> 10928, 10929 -> 4702, 13839 -> 13840, 13841 -> 3812, 18946 -> 18947, 18954 -> 4702, 18955 -> 66142, 18961 -> 3808, 18962 -> 3856, 18968 -> 3822, 18969 -> 3823, 66139 -> 3815, 66140 -> 3819, 158724 -> 158725","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10927,"TargetID":4701,"Directional":true},{"SourceID":10927,"TargetID":10928,"Directional":true},{"SourceID":10929,"TargetID":4702,"Directional":true},{"SourceID":13839,"TargetID":13840,"Directional":true},{"SourceID":13841,"TargetID":3812,"Directional":true},{"SourceID":18946,"TargetID":18947,"Directional":true},{"SourceID":18954,"TargetID":4702,"Directional":true},{"SourceID":18955,"TargetID":66142,"Directional":true},{"SourceID":18961,"TargetID":3808,"Directional":true},{"SourceID":18962,"TargetID":3856,"Directional":true},{"SourceID":18968,"TargetID":3822,"Directional":true},{"SourceID":18969,"TargetID":3823,"Directional":true},{"SourceID":66139,"TargetID":3815,"Directional":true},{"SourceID":66140,"TargetID":3819,"Directional":true},{"SourceID":158724,"TargetID":158725,"Directional":true}]},{"ID":12246,"SourceStructureID":10897,"TargetStructureID":5303,"Label":"10897-5303 via Ribbon Synapse from 18959 -> 35629, 18967 -> 102665","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18959,"TargetID":35629,"Directional":true},{"SourceID":18967,"TargetID":102665,"Directional":true}]},{"ID":12247,"SourceStructureID":10897,"TargetStructureID":8037,"Label":"10897-8037 via Ribbon Synapse from 18965 -> 18966","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18965,"TargetID":18966,"Directional":true}]},{"ID":12248,"SourceStructureID":10897,"TargetStructureID":97683,"Label":"10897-97683 via Ribbon Synapse from 13835 -> 97703","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13835,"TargetID":97703,"Directional":true}]},{"ID":12249,"SourceStructureID":10897,"TargetStructureID":101553,"Label":"10897-101553 via Ribbon Synapse from 18958 -> 101569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18958,"TargetID":101569,"Directional":true}]},{"ID":12250,"SourceStructureID":10931,"TargetStructureID":179,"Label":"10931-179 via Ribbon Synapse from 19242 -> 87471, 19243 -> 87468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19242,"TargetID":87471,"Directional":true},{"SourceID":19243,"TargetID":87468,"Directional":true}]},{"ID":12251,"SourceStructureID":10931,"TargetStructureID":514,"Label":"10931-514 via Ribbon Synapse from 10940 -> 5223","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10940,"TargetID":5223,"Directional":true}]},{"ID":12252,"SourceStructureID":10931,"TargetStructureID":3679,"Label":"10931-3679 via Ribbon Synapse from 10933 -> 7935, 10934 -> 7934, 10937 -> 7971, 10938 -> 10939, 13844 -> 13845, 14226 -> 14227, 18990 -> 29647, 19248 -> 22794","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10933,"TargetID":7935,"Directional":true},{"SourceID":10934,"TargetID":7934,"Directional":true},{"SourceID":10937,"TargetID":7971,"Directional":true},{"SourceID":10938,"TargetID":10939,"Directional":true},{"SourceID":13844,"TargetID":13845,"Directional":true},{"SourceID":14226,"TargetID":14227,"Directional":true},{"SourceID":18990,"TargetID":29647,"Directional":true},{"SourceID":19248,"TargetID":22794,"Directional":true}]},{"ID":12253,"SourceStructureID":10931,"TargetStructureID":4850,"Label":"10931-4850 via Ribbon Synapse from 14219 -> 14218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14219,"TargetID":14218,"Directional":true}]},{"ID":12254,"SourceStructureID":10931,"TargetStructureID":5394,"Label":"10931-5394 via Ribbon Synapse from 18980 -> 77059, 18998 -> 77056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18980,"TargetID":77059,"Directional":true},{"SourceID":18998,"TargetID":77056,"Directional":true}]},{"ID":12255,"SourceStructureID":10931,"TargetStructureID":7147,"Label":"10931-7147 via Ribbon Synapse from 19241 -> 22902, 19244 -> 22901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19241,"TargetID":22902,"Directional":true},{"SourceID":19244,"TargetID":22901,"Directional":true}]},{"ID":12256,"SourceStructureID":10931,"TargetStructureID":12897,"Label":"10931-12897 via Ribbon Synapse from 18978 -> 24621, 18980 -> 24617, 18998 -> 24616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18978,"TargetID":24621,"Directional":true},{"SourceID":18980,"TargetID":24617,"Directional":true},{"SourceID":18998,"TargetID":24616,"Directional":true}]},{"ID":12257,"SourceStructureID":10931,"TargetStructureID":32871,"Label":"10931-32871 via Ribbon Synapse from 10933 -> 93906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10933,"TargetID":93906,"Directional":true}]},{"ID":12258,"SourceStructureID":10931,"TargetStructureID":76973,"Label":"10931-76973 via Ribbon Synapse from 13844 -> 77010, 14226 -> 76974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13844,"TargetID":77010,"Directional":true},{"SourceID":14226,"TargetID":76974,"Directional":true}]},{"ID":12259,"SourceStructureID":10931,"TargetStructureID":77019,"Label":"10931-77019 via Ribbon Synapse from 10940 -> 77020","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":10940,"TargetID":77020,"Directional":true}]},{"ID":12260,"SourceStructureID":10943,"TargetStructureID":514,"Label":"10943-514 via Ribbon Synapse from 16274 -> 3097, 16276 -> 3110, 16279 -> 5224, 22579 -> 3100","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16274,"TargetID":3097,"Directional":true},{"SourceID":16276,"TargetID":3110,"Directional":true},{"SourceID":16279,"TargetID":5224,"Directional":true},{"SourceID":22579,"TargetID":3100,"Directional":true}]},{"ID":12261,"SourceStructureID":10943,"TargetStructureID":3679,"Label":"10943-3679 via Ribbon Synapse from 16256 -> 3774, 16260 -> 3775, 16265 -> 120444, 16271 -> 5191, 16272 -> 5195, 16273 -> 5211, 16277 -> 16278, 18847 -> 18846, 19012 -> 66145, 19023 -> 63366, 66143 -> 8003, 66144 -> 8004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16256,"TargetID":3774,"Directional":true},{"SourceID":16260,"TargetID":3775,"Directional":true},{"SourceID":16265,"TargetID":120444,"Directional":true},{"SourceID":16271,"TargetID":5191,"Directional":true},{"SourceID":16272,"TargetID":5195,"Directional":true},{"SourceID":16273,"TargetID":5211,"Directional":true},{"SourceID":16277,"TargetID":16278,"Directional":true},{"SourceID":18847,"TargetID":18846,"Directional":true},{"SourceID":19012,"TargetID":66145,"Directional":true},{"SourceID":19023,"TargetID":63366,"Directional":true},{"SourceID":66143,"TargetID":8003,"Directional":true},{"SourceID":66144,"TargetID":8004,"Directional":true}]},{"ID":12262,"SourceStructureID":10943,"TargetStructureID":5394,"Label":"10943-5394 via Ribbon Synapse from 16271 -> 87955, 22579 -> 22810","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16271,"TargetID":87955,"Directional":true},{"SourceID":22579,"TargetID":22810,"Directional":true}]},{"ID":12263,"SourceStructureID":10943,"TargetStructureID":5402,"Label":"10943-5402 via Ribbon Synapse from 16254 -> 129552, 16256 -> 129550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16254,"TargetID":129552,"Directional":true},{"SourceID":16256,"TargetID":129550,"Directional":true}]},{"ID":12264,"SourceStructureID":10943,"TargetStructureID":8720,"Label":"10943-8720 via Ribbon Synapse from 19023 -> 63367","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19023,"TargetID":63367,"Directional":true}]},{"ID":12265,"SourceStructureID":10943,"TargetStructureID":66815,"Label":"10943-66815 via Ribbon Synapse from 16266 -> 66816, 16268 -> 66819","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16266,"TargetID":66816,"Directional":true},{"SourceID":16268,"TargetID":66819,"Directional":true}]},{"ID":12266,"SourceStructureID":10945,"TargetStructureID":424,"Label":"10945-424 via Conventional from 10979 -> 19528, 19535 -> 19534","Type":"Conventional","Directional":true,"Links":[{"SourceID":10979,"TargetID":19528,"Directional":true},{"SourceID":19535,"TargetID":19534,"Directional":true}]},{"ID":12267,"SourceStructureID":10945,"TargetStructureID":478,"Label":"10945-478 via Conventional from 10948 -> 10949, 10974 -> 3024, 10977 -> 19389","Type":"Conventional","Directional":true,"Links":[{"SourceID":10948,"TargetID":10949,"Directional":true},{"SourceID":10974,"TargetID":3024,"Directional":true},{"SourceID":10977,"TargetID":19389,"Directional":true}]},{"ID":12268,"SourceStructureID":10945,"TargetStructureID":26304,"Label":"10945-26304 via Conventional from 10992 -> 26321","Type":"Conventional","Directional":true,"Links":[{"SourceID":10992,"TargetID":26321,"Directional":true}]},{"ID":12269,"SourceStructureID":10945,"TargetStructureID":31944,"Label":"10945-31944 via Conventional from 10988 -> 31952","Type":"Conventional","Directional":true,"Links":[{"SourceID":10988,"TargetID":31952,"Directional":true}]},{"ID":12270,"SourceStructureID":10950,"TargetStructureID":6857,"Label":"10950-6857 via Conventional from 19010 -> 7521, 19016 -> 7520","Type":"Conventional","Directional":true,"Links":[{"SourceID":19010,"TargetID":7521,"Directional":true},{"SourceID":19016,"TargetID":7520,"Directional":true}]},{"ID":12271,"SourceStructureID":10953,"TargetStructureID":179,"Label":"10953-179 via Ribbon Synapse from 87479 -> 87480, 87484 -> 87485","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87479,"TargetID":87480,"Directional":true},{"SourceID":87484,"TargetID":87485,"Directional":true}]},{"ID":12272,"SourceStructureID":10953,"TargetStructureID":5303,"Label":"10953-5303 via Ribbon Synapse from 33268 -> 24056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33268,"TargetID":24056,"Directional":true}]},{"ID":12273,"SourceStructureID":10953,"TargetStructureID":5860,"Label":"10953-5860 via Ribbon Synapse from 33672 -> 33673, 87479 -> 87481, 87484 -> 87486","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33672,"TargetID":33673,"Directional":true},{"SourceID":87479,"TargetID":87481,"Directional":true},{"SourceID":87484,"TargetID":87486,"Directional":true}]},{"ID":12274,"SourceStructureID":10954,"TargetStructureID":514,"Label":"10954-514 via Conventional from 10955 -> 1089","Type":"Conventional","Directional":true,"Links":[{"SourceID":10955,"TargetID":1089,"Directional":true}]},{"ID":12275,"SourceStructureID":10957,"TargetStructureID":4943,"Label":"10957-4943 via Ribbon Synapse from 83511 -> 83510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83511,"TargetID":83510,"Directional":true}]},{"ID":12276,"SourceStructureID":10957,"TargetStructureID":83514,"Label":"10957-83514 via Ribbon Synapse from 83511 -> 83515, 83516 -> 83517","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83511,"TargetID":83515,"Directional":true},{"SourceID":83516,"TargetID":83517,"Directional":true}]},{"ID":12277,"SourceStructureID":10957,"TargetStructureID":98127,"Label":"10957-98127 via Ribbon Synapse from 33683 -> 98875","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33683,"TargetID":98875,"Directional":true}]},{"ID":12278,"SourceStructureID":10957,"TargetStructureID":105212,"Label":"10957-105212 via Ribbon Synapse from 105716 -> 105710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105716,"TargetID":105710,"Directional":true}]},{"ID":12279,"SourceStructureID":10959,"TargetStructureID":476,"Label":"10959-476 via Ribbon Synapse from 16555 -> 3210, 16557 -> 3208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16555,"TargetID":3210,"Directional":true},{"SourceID":16557,"TargetID":3208,"Directional":true}]},{"ID":12280,"SourceStructureID":10959,"TargetStructureID":3257,"Label":"10959-3257 via Ribbon Synapse from 16369 -> 16370, 16378 -> 16379, 16381 -> 16382, 16383 -> 16384, 16385 -> 16387, 16388 -> 18381, 16389 -> 16390, 16393 -> 16392, 16562 -> 16560, 16563 -> 16564, 16581 -> 16582, 16584 -> 16583, 16596 -> 16597, 18935 -> 10854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16369,"TargetID":16370,"Directional":true},{"SourceID":16378,"TargetID":16379,"Directional":true},{"SourceID":16381,"TargetID":16382,"Directional":true},{"SourceID":16383,"TargetID":16384,"Directional":true},{"SourceID":16385,"TargetID":16387,"Directional":true},{"SourceID":16388,"TargetID":18381,"Directional":true},{"SourceID":16389,"TargetID":16390,"Directional":true},{"SourceID":16393,"TargetID":16392,"Directional":true},{"SourceID":16562,"TargetID":16560,"Directional":true},{"SourceID":16563,"TargetID":16564,"Directional":true},{"SourceID":16581,"TargetID":16582,"Directional":true},{"SourceID":16584,"TargetID":16583,"Directional":true},{"SourceID":16596,"TargetID":16597,"Directional":true},{"SourceID":18935,"TargetID":10854,"Directional":true}]},{"ID":12281,"SourceStructureID":10959,"TargetStructureID":5394,"Label":"10959-5394 via Ribbon Synapse from 18927 -> 87750","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18927,"TargetID":87750,"Directional":true}]},{"ID":12282,"SourceStructureID":10959,"TargetStructureID":86747,"Label":"10959-86747 via Ribbon Synapse from 16369 -> 86750","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16369,"TargetID":86750,"Directional":true}]},{"ID":12283,"SourceStructureID":10959,"TargetStructureID":86751,"Label":"10959-86751 via Ribbon Synapse from 16369 -> 86755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16369,"TargetID":86755,"Directional":true}]},{"ID":12284,"SourceStructureID":10959,"TargetStructureID":86775,"Label":"10959-86775 via Ribbon Synapse from 16380 -> 86778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16380,"TargetID":86778,"Directional":true}]},{"ID":12285,"SourceStructureID":10959,"TargetStructureID":86779,"Label":"10959-86779 via Ribbon Synapse from 16380 -> 86780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16380,"TargetID":86780,"Directional":true}]},{"ID":12286,"SourceStructureID":10959,"TargetStructureID":86783,"Label":"10959-86783 via Ribbon Synapse from 16563 -> 86787","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16563,"TargetID":86787,"Directional":true}]},{"ID":12287,"SourceStructureID":10959,"TargetStructureID":86799,"Label":"10959-86799 via Ribbon Synapse from 16555 -> 86805","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16555,"TargetID":86805,"Directional":true}]},{"ID":12288,"SourceStructureID":10959,"TargetStructureID":86860,"Label":"10959-86860 via Ribbon Synapse from 19260 -> 86861","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19260,"TargetID":86861,"Directional":true}]},{"ID":12289,"SourceStructureID":10959,"TargetStructureID":86862,"Label":"10959-86862 via Ribbon Synapse from 16393 -> 86863","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16393,"TargetID":86863,"Directional":true}]},{"ID":12290,"SourceStructureID":10959,"TargetStructureID":86864,"Label":"10959-86864 via Ribbon Synapse from 18936 -> 86866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18936,"TargetID":86866,"Directional":true}]},{"ID":12291,"SourceStructureID":10959,"TargetStructureID":86871,"Label":"10959-86871 via Ribbon Synapse from 18934 -> 86873","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18934,"TargetID":86873,"Directional":true}]},{"ID":12292,"SourceStructureID":10959,"TargetStructureID":86876,"Label":"10959-86876 via Ribbon Synapse from 16383 -> 86877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16383,"TargetID":86877,"Directional":true}]},{"ID":12293,"SourceStructureID":10959,"TargetStructureID":86888,"Label":"10959-86888 via Ribbon Synapse from 16385 -> 86890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16385,"TargetID":86890,"Directional":true}]},{"ID":12294,"SourceStructureID":10959,"TargetStructureID":86913,"Label":"10959-86913 via Ribbon Synapse from 16581 -> 86914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16581,"TargetID":86914,"Directional":true}]},{"ID":12295,"SourceStructureID":10959,"TargetStructureID":86915,"Label":"10959-86915 via Ribbon Synapse from 16584 -> 86917, 16596 -> 86926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16584,"TargetID":86917,"Directional":true},{"SourceID":16596,"TargetID":86926,"Directional":true}]},{"ID":12296,"SourceStructureID":10960,"TargetStructureID":3257,"Label":"10960-3257 via Ribbon Synapse from 12469 -> 8226","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12469,"TargetID":8226,"Directional":true}]},{"ID":12297,"SourceStructureID":10960,"TargetStructureID":42432,"Label":"10960-42432 via Ribbon Synapse from 42434 -> 42433","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42434,"TargetID":42433,"Directional":true}]},{"ID":12298,"SourceStructureID":10960,"TargetStructureID":42450,"Label":"10960-42450 via Ribbon Synapse from 42452 -> 42451","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42452,"TargetID":42451,"Directional":true}]},{"ID":12299,"SourceStructureID":10961,"TargetStructureID":5303,"Label":"10961-5303 via Ribbon Synapse from 33252 -> 24059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33252,"TargetID":24059,"Directional":true}]},{"ID":12300,"SourceStructureID":10963,"TargetStructureID":11238,"Label":"10963-11238 via Ribbon Synapse from 88572 -> 88569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88572,"TargetID":88569,"Directional":true}]},{"ID":12301,"SourceStructureID":10963,"TargetStructureID":136913,"Label":"10963-136913 via Ribbon Synapse from 136912 -> 136914","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136912,"TargetID":136914,"Directional":true}]},{"ID":12302,"SourceStructureID":10963,"TargetStructureID":136917,"Label":"10963-136917 via Ribbon Synapse from 136920 -> 136921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136920,"TargetID":136921,"Directional":true}]},{"ID":12303,"SourceStructureID":10966,"TargetStructureID":514,"Label":"10966-514 via Conventional from 10967 -> 1091","Type":"Conventional","Directional":true,"Links":[{"SourceID":10967,"TargetID":1091,"Directional":true}]},{"ID":12304,"SourceStructureID":10970,"TargetStructureID":514,"Label":"10970-514 via Conventional from 10971 -> 1102, 10972 -> 1098","Type":"Conventional","Directional":true,"Links":[{"SourceID":10971,"TargetID":1102,"Directional":true},{"SourceID":10972,"TargetID":1098,"Directional":true}]},{"ID":12305,"SourceStructureID":11011,"TargetStructureID":514,"Label":"11011-514 via Conventional from 11012 -> 1103","Type":"Conventional","Directional":true,"Links":[{"SourceID":11012,"TargetID":1103,"Directional":true}]},{"ID":12306,"SourceStructureID":11015,"TargetStructureID":514,"Label":"11015-514 via Conventional from 11016 -> 1105","Type":"Conventional","Directional":true,"Links":[{"SourceID":11016,"TargetID":1105,"Directional":true}]},{"ID":12307,"SourceStructureID":11017,"TargetStructureID":8575,"Label":"11017-8575 via Conventional from 11008 -> 61570","Type":"Conventional","Directional":true,"Links":[{"SourceID":11008,"TargetID":61570,"Directional":true}]},{"ID":12308,"SourceStructureID":11020,"TargetStructureID":7861,"Label":"11020-7861 via Ribbon Synapse from 20012 -> 10558","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20012,"TargetID":10558,"Directional":true}]},{"ID":12309,"SourceStructureID":11023,"TargetStructureID":2610,"Label":"11023-2610 via Conventional from 11027 -> 2614, 11028 -> 2621","Type":"Conventional","Directional":true,"Links":[{"SourceID":11027,"TargetID":2614,"Directional":true},{"SourceID":11028,"TargetID":2621,"Directional":true}]},{"ID":12310,"SourceStructureID":11024,"TargetStructureID":2610,"Label":"11024-2610 via Conventional from 11025 -> 2616","Type":"Conventional","Directional":true,"Links":[{"SourceID":11025,"TargetID":2616,"Directional":true}]},{"ID":12311,"SourceStructureID":11031,"TargetStructureID":3679,"Label":"11031-3679 via Ribbon Synapse from 25442 -> 7965, 25445 -> 7969, 25446 -> 7970, 25450 -> 25451, 66121 -> 66122, 66123 -> 7967, 66124 -> 66125","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25442,"TargetID":7965,"Directional":true},{"SourceID":25445,"TargetID":7969,"Directional":true},{"SourceID":25446,"TargetID":7970,"Directional":true},{"SourceID":25450,"TargetID":25451,"Directional":true},{"SourceID":66121,"TargetID":66122,"Directional":true},{"SourceID":66123,"TargetID":7967,"Directional":true},{"SourceID":66124,"TargetID":66125,"Directional":true}]},{"ID":12312,"SourceStructureID":11031,"TargetStructureID":4943,"Label":"11031-4943 via Ribbon Synapse from 40981 -> 40980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40981,"TargetID":40980,"Directional":true}]},{"ID":12313,"SourceStructureID":11031,"TargetStructureID":5394,"Label":"11031-5394 via Ribbon Synapse from 25442 -> 77061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25442,"TargetID":77061,"Directional":true}]},{"ID":12314,"SourceStructureID":11031,"TargetStructureID":6169,"Label":"11031-6169 via Ribbon Synapse from 29782 -> 29781, 60865 -> 14938","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29782,"TargetID":29781,"Directional":true},{"SourceID":60865,"TargetID":14938,"Directional":true}]},{"ID":12315,"SourceStructureID":11031,"TargetStructureID":60863,"Label":"11031-60863 via Ribbon Synapse from 60865 -> 60864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60865,"TargetID":60864,"Directional":true}]},{"ID":12316,"SourceStructureID":11033,"TargetStructureID":7113,"Label":"11033-7113 via Ribbon Synapse from 82687 -> 82688","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82687,"TargetID":82688,"Directional":true}]},{"ID":12317,"SourceStructureID":11033,"TargetStructureID":7147,"Label":"11033-7147 via Ribbon Synapse from 32966 -> 32965","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32966,"TargetID":32965,"Directional":true}]},{"ID":12318,"SourceStructureID":11033,"TargetStructureID":32959,"Label":"11033-32959 via Ribbon Synapse from 32963 -> 32962","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32963,"TargetID":32962,"Directional":true}]},{"ID":12319,"SourceStructureID":11037,"TargetStructureID":7114,"Label":"11037-7114 via Ribbon Synapse from 33706 -> 33707","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33706,"TargetID":33707,"Directional":true}]},{"ID":12320,"SourceStructureID":11042,"TargetStructureID":308,"Label":"11042-308 via Ribbon Synapse from 42697 -> 42698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":42697,"TargetID":42698,"Directional":true}]},{"ID":12321,"SourceStructureID":11042,"TargetStructureID":7147,"Label":"11042-7147 via Ribbon Synapse from 91327 -> 91326, 92810 -> 22900","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91327,"TargetID":91326,"Directional":true},{"SourceID":92810,"TargetID":22900,"Directional":true}]},{"ID":12322,"SourceStructureID":11042,"TargetStructureID":12897,"Label":"11042-12897 via Ribbon Synapse from 92810 -> 92809, 108238 -> 108239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92810,"TargetID":92809,"Directional":true},{"SourceID":108238,"TargetID":108239,"Directional":true}]},{"ID":12323,"SourceStructureID":11042,"TargetStructureID":91207,"Label":"11042-91207 via Ribbon Synapse from 91540 -> 91539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91540,"TargetID":91539,"Directional":true}]},{"ID":12324,"SourceStructureID":11043,"TargetStructureID":3679,"Label":"11043-3679 via Ribbon Synapse from 66130 -> 66131","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66130,"TargetID":66131,"Directional":true}]},{"ID":12325,"SourceStructureID":11043,"TargetStructureID":12897,"Label":"11043-12897 via Ribbon Synapse from 87573 -> 24842, 108258 -> 108256, 108263 -> 108251, 135377 -> 135379","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87573,"TargetID":24842,"Directional":true},{"SourceID":108258,"TargetID":108256,"Directional":true},{"SourceID":108263,"TargetID":108251,"Directional":true},{"SourceID":135377,"TargetID":135379,"Directional":true}]},{"ID":12326,"SourceStructureID":11043,"TargetStructureID":61466,"Label":"11043-61466 via Ribbon Synapse from 33710 -> 61468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33710,"TargetID":61468,"Directional":true}]},{"ID":12327,"SourceStructureID":11043,"TargetStructureID":87569,"Label":"11043-87569 via Ribbon Synapse from 87573 -> 87572","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87573,"TargetID":87572,"Directional":true}]},{"ID":12328,"SourceStructureID":11043,"TargetStructureID":92226,"Label":"11043-92226 via Ribbon Synapse from 92804 -> 92805","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92804,"TargetID":92805,"Directional":true}]},{"ID":12329,"SourceStructureID":11043,"TargetStructureID":135039,"Label":"11043-135039 via Ribbon Synapse from 135046 -> 135047","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135046,"TargetID":135047,"Directional":true}]},{"ID":12330,"SourceStructureID":11044,"TargetStructureID":5609,"Label":"11044-5609 via Ribbon Synapse from 33322 -> 25059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33322,"TargetID":25059,"Directional":true}]},{"ID":12331,"SourceStructureID":11044,"TargetStructureID":31024,"Label":"11044-31024 via Ribbon Synapse from 33321 -> 33320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33321,"TargetID":33320,"Directional":true}]},{"ID":12332,"SourceStructureID":11044,"TargetStructureID":32767,"Label":"11044-32767 via Ribbon Synapse from 32770 -> 32769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32770,"TargetID":32769,"Directional":true}]},{"ID":12333,"SourceStructureID":11049,"TargetStructureID":5303,"Label":"11049-5303 via Ribbon Synapse from 35605 -> 35604","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35605,"TargetID":35604,"Directional":true}]},{"ID":12334,"SourceStructureID":11063,"TargetStructureID":5394,"Label":"11063-5394 via Ribbon Synapse from 122905 -> 122906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122905,"TargetID":122906,"Directional":true}]},{"ID":12335,"SourceStructureID":11063,"TargetStructureID":7114,"Label":"11063-7114 via Ribbon Synapse from 116680 -> 116681, 122887 -> 122886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":116680,"TargetID":116681,"Directional":true},{"SourceID":122887,"TargetID":122886,"Directional":true}]},{"ID":12336,"SourceStructureID":11066,"TargetStructureID":7215,"Label":"11066-7215 via Ribbon Synapse from 31563 -> 31548, 31564 -> 31548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31563,"TargetID":31548,"Directional":true},{"SourceID":31564,"TargetID":31548,"Directional":true}]},{"ID":12337,"SourceStructureID":11066,"TargetStructureID":7858,"Label":"11066-7858 via Ribbon Synapse from 31914 -> 31909","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31914,"TargetID":31909,"Directional":true}]},{"ID":12338,"SourceStructureID":11066,"TargetStructureID":16073,"Label":"11066-16073 via Ribbon Synapse from 34421 -> 24227","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34421,"TargetID":24227,"Directional":true}]},{"ID":12339,"SourceStructureID":11071,"TargetStructureID":4569,"Label":"11071-4569 via Conventional from 11078 -> 11068","Type":"Conventional","Directional":true,"Links":[{"SourceID":11078,"TargetID":11068,"Directional":true}]},{"ID":12340,"SourceStructureID":11073,"TargetStructureID":4569,"Label":"11073-4569 via Conventional from 11079 -> 11069","Type":"Conventional","Directional":true,"Links":[{"SourceID":11079,"TargetID":11069,"Directional":true}]},{"ID":12341,"SourceStructureID":11074,"TargetStructureID":170,"Label":"11074-170 via Conventional from 11082 -> 90372","Type":"Conventional","Directional":true,"Links":[{"SourceID":11082,"TargetID":90372,"Directional":true}]},{"ID":12342,"SourceStructureID":11074,"TargetStructureID":4569,"Label":"11074-4569 via Conventional from 11084 -> 47506","Type":"Conventional","Directional":true,"Links":[{"SourceID":11084,"TargetID":47506,"Directional":true}]},{"ID":12343,"SourceStructureID":11074,"TargetStructureID":11072,"Label":"11074-11072 via Conventional from 11077 -> 11076","Type":"Conventional","Directional":true,"Links":[{"SourceID":11077,"TargetID":11076,"Directional":true}]},{"ID":12344,"SourceStructureID":11085,"TargetStructureID":5303,"Label":"11085-5303 via Ribbon Synapse from 24030 -> 24011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24030,"TargetID":24011,"Directional":true}]},{"ID":12345,"SourceStructureID":11085,"TargetStructureID":5464,"Label":"11085-5464 via Ribbon Synapse from 24015 -> 57269, 116629 -> 116630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24015,"TargetID":57269,"Directional":true},{"SourceID":116629,"TargetID":116630,"Directional":true}]},{"ID":12346,"SourceStructureID":11092,"TargetStructureID":7693,"Label":"11092-7693 via Ribbon Synapse from 95082 -> 95083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95082,"TargetID":95083,"Directional":true}]},{"ID":12347,"SourceStructureID":11092,"TargetStructureID":7703,"Label":"11092-7703 via Ribbon Synapse from 128623 -> 17755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128623,"TargetID":17755,"Directional":true}]},{"ID":12348,"SourceStructureID":11092,"TargetStructureID":7859,"Label":"11092-7859 via Ribbon Synapse from 128615 -> 84694","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128615,"TargetID":84694,"Directional":true}]},{"ID":12349,"SourceStructureID":11092,"TargetStructureID":7861,"Label":"11092-7861 via Ribbon Synapse from 123430 -> 34543","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123430,"TargetID":34543,"Directional":true}]},{"ID":12350,"SourceStructureID":11092,"TargetStructureID":13525,"Label":"11092-13525 via Ribbon Synapse from 107594 -> 95779, 109974 -> 109975, 123463 -> 85945","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107594,"TargetID":95779,"Directional":true},{"SourceID":109974,"TargetID":109975,"Directional":true},{"SourceID":123463,"TargetID":85945,"Directional":true}]},{"ID":12351,"SourceStructureID":11092,"TargetStructureID":34336,"Label":"11092-34336 via Ribbon Synapse from 95050 -> 34346","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95050,"TargetID":34346,"Directional":true}]},{"ID":12352,"SourceStructureID":11092,"TargetStructureID":34337,"Label":"11092-34337 via Ribbon Synapse from 95029 -> 95030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":95029,"TargetID":95030,"Directional":true}]},{"ID":12353,"SourceStructureID":11092,"TargetStructureID":64777,"Label":"11092-64777 via Ribbon Synapse from 128623 -> 64837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128623,"TargetID":64837,"Directional":true}]},{"ID":12354,"SourceStructureID":11092,"TargetStructureID":122431,"Label":"11092-122431 via Ribbon Synapse from 128587 -> 129528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128587,"TargetID":129528,"Directional":true}]},{"ID":12355,"SourceStructureID":11092,"TargetStructureID":130408,"Label":"11092-130408 via Ribbon Synapse from 123463 -> 130409","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":123463,"TargetID":130409,"Directional":true}]},{"ID":12356,"SourceStructureID":11172,"TargetStructureID":4850,"Label":"11172-4850 via Ribbon Synapse from 22551 -> 22552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22551,"TargetID":22552,"Directional":true}]},{"ID":12357,"SourceStructureID":11172,"TargetStructureID":5303,"Label":"11172-5303 via Ribbon Synapse from 15703 -> 35651","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15703,"TargetID":35651,"Directional":true}]},{"ID":12358,"SourceStructureID":11172,"TargetStructureID":8037,"Label":"11172-8037 via Ribbon Synapse from 15724 -> 15723, 19238 -> 11372, 30557 -> 30556, 30563 -> 30562, 33001 -> 33002","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15724,"TargetID":15723,"Directional":true},{"SourceID":19238,"TargetID":11372,"Directional":true},{"SourceID":30557,"TargetID":30556,"Directional":true},{"SourceID":30563,"TargetID":30562,"Directional":true},{"SourceID":33001,"TargetID":33002,"Directional":true}]},{"ID":12359,"SourceStructureID":11172,"TargetStructureID":12897,"Label":"11172-12897 via Ribbon Synapse from 15709 -> 24719, 22551 -> 66246, 24718 -> 24717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15709,"TargetID":24719,"Directional":true},{"SourceID":22551,"TargetID":66246,"Directional":true},{"SourceID":24718,"TargetID":24717,"Directional":true}]},{"ID":12360,"SourceStructureID":11229,"TargetStructureID":6133,"Label":"11229-6133 via Conventional from 28972 -> 37400, 135678 -> 135677","Type":"Conventional","Directional":true,"Links":[{"SourceID":28972,"TargetID":37400,"Directional":true},{"SourceID":135678,"TargetID":135677,"Directional":true}]},{"ID":12361,"SourceStructureID":11229,"TargetStructureID":6134,"Label":"11229-6134 via Conventional from 44860 -> 44859","Type":"Conventional","Directional":true,"Links":[{"SourceID":44860,"TargetID":44859,"Directional":true}]},{"ID":12362,"SourceStructureID":11229,"TargetStructureID":28950,"Label":"11229-28950 via Conventional from 28981 -> 28971","Type":"Conventional","Directional":true,"Links":[{"SourceID":28981,"TargetID":28971,"Directional":true}]},{"ID":12363,"SourceStructureID":11234,"TargetStructureID":7050,"Label":"11234-7050 via Ribbon Synapse from 43505 -> 24893","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43505,"TargetID":24893,"Directional":true}]},{"ID":12364,"SourceStructureID":11238,"TargetStructureID":5543,"Label":"11238-5543 via Conventional from 136107 -> 136313","Type":"Conventional","Directional":true,"Links":[{"SourceID":136107,"TargetID":136313,"Directional":true}]},{"ID":12365,"SourceStructureID":11238,"TargetStructureID":6132,"Label":"11238-6132 via Conventional from 88390 -> 88507, 88488 -> 88506","Type":"Conventional","Directional":true,"Links":[{"SourceID":88390,"TargetID":88507,"Directional":true},{"SourceID":88488,"TargetID":88506,"Directional":true}]},{"ID":12366,"SourceStructureID":11238,"TargetStructureID":10963,"Label":"11238-10963 via Conventional from 88570 -> 88571","Type":"Conventional","Directional":true,"Links":[{"SourceID":88570,"TargetID":88571,"Directional":true}]},{"ID":12367,"SourceStructureID":11238,"TargetStructureID":136127,"Label":"11238-136127 via Conventional from 136131 -> 136130","Type":"Conventional","Directional":true,"Links":[{"SourceID":136131,"TargetID":136130,"Directional":true}]},{"ID":12368,"SourceStructureID":11238,"TargetStructureID":136351,"Label":"11238-136351 via Conventional from 136111 -> 136353","Type":"Conventional","Directional":true,"Links":[{"SourceID":136111,"TargetID":136353,"Directional":true}]},{"ID":12369,"SourceStructureID":11246,"TargetStructureID":8038,"Label":"11246-8038 via Ribbon Synapse from 68932 -> 68931, 68936 -> 68935, 68959 -> 68961, 68966 -> 68965","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68932,"TargetID":68931,"Directional":true},{"SourceID":68936,"TargetID":68935,"Directional":true},{"SourceID":68959,"TargetID":68961,"Directional":true},{"SourceID":68966,"TargetID":68965,"Directional":true}]},{"ID":12370,"SourceStructureID":11248,"TargetStructureID":5345,"Label":"11248-5345 via Ribbon Synapse from 88881 -> 88880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88881,"TargetID":88880,"Directional":true}]},{"ID":12371,"SourceStructureID":11248,"TargetStructureID":8037,"Label":"11248-8037 via Ribbon Synapse from 43572 -> 43571, 88903 -> 88901, 88904 -> 88902, 88907 -> 88908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43572,"TargetID":43571,"Directional":true},{"SourceID":88903,"TargetID":88901,"Directional":true},{"SourceID":88904,"TargetID":88902,"Directional":true},{"SourceID":88907,"TargetID":88908,"Directional":true}]},{"ID":12372,"SourceStructureID":11248,"TargetStructureID":88905,"Label":"11248-88905 via Ribbon Synapse from 88903 -> 88906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88903,"TargetID":88906,"Directional":true}]},{"ID":12373,"SourceStructureID":11248,"TargetStructureID":96788,"Label":"11248-96788 via Ribbon Synapse from 96857 -> 96858","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96857,"TargetID":96858,"Directional":true}]},{"ID":12374,"SourceStructureID":11248,"TargetStructureID":132773,"Label":"11248-132773 via Ribbon Synapse from 96857 -> 132776, 132775 -> 132774","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96857,"TargetID":132776,"Directional":true},{"SourceID":132775,"TargetID":132774,"Directional":true}]},{"ID":12375,"SourceStructureID":11250,"TargetStructureID":488,"Label":"11250-488 via Ribbon Synapse from 40943 -> 40942","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40943,"TargetID":40942,"Directional":true}]},{"ID":12376,"SourceStructureID":11250,"TargetStructureID":7147,"Label":"11250-7147 via Ribbon Synapse from 30300 -> 30309, 30314 -> 30315","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30300,"TargetID":30309,"Directional":true},{"SourceID":30314,"TargetID":30315,"Directional":true}]},{"ID":12377,"SourceStructureID":11250,"TargetStructureID":12897,"Label":"11250-12897 via Ribbon Synapse from 30286 -> 30288, 30293 -> 24631, 129505 -> 129506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30286,"TargetID":30288,"Directional":true},{"SourceID":30293,"TargetID":24631,"Directional":true},{"SourceID":129505,"TargetID":129506,"Directional":true}]},{"ID":12378,"SourceStructureID":11321,"TargetStructureID":5464,"Label":"11321-5464 via Ribbon Synapse from 33011 -> 33010, 33012 -> 33013, 33777 -> 33778, 33779 -> 33780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33011,"TargetID":33010,"Directional":true},{"SourceID":33012,"TargetID":33013,"Directional":true},{"SourceID":33777,"TargetID":33778,"Directional":true},{"SourceID":33779,"TargetID":33780,"Directional":true}]},{"ID":12379,"SourceStructureID":11401,"TargetStructureID":304,"Label":"11401-304 via Ribbon Synapse from 17925 -> 17631","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17925,"TargetID":17631,"Directional":true}]},{"ID":12380,"SourceStructureID":11401,"TargetStructureID":391,"Label":"11401-391 via Ribbon Synapse from 16833 -> 108171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16833,"TargetID":108171,"Directional":true}]},{"ID":12381,"SourceStructureID":11401,"TargetStructureID":514,"Label":"11401-514 via Ribbon Synapse from 19051 -> 19058","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19051,"TargetID":19058,"Directional":true}]},{"ID":12382,"SourceStructureID":11401,"TargetStructureID":573,"Label":"11401-573 via Ribbon Synapse from 11413 -> 11424, 11426 -> 11425","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11413,"TargetID":11424,"Directional":true},{"SourceID":11426,"TargetID":11425,"Directional":true}]},{"ID":12383,"SourceStructureID":11401,"TargetStructureID":2610,"Label":"11401-2610 via Ribbon Synapse from 11409 -> 11410, 11412 -> 11411, 16803 -> 2850, 16828 -> 2825, 16830 -> 2822, 17914 -> 3005, 17922 -> 17921, 17924 -> 17923, 17992 -> 17993, 19027 -> 19026, 19050 -> 19049, 19054 -> 19053","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11409,"TargetID":11410,"Directional":true},{"SourceID":11412,"TargetID":11411,"Directional":true},{"SourceID":16803,"TargetID":2850,"Directional":true},{"SourceID":16828,"TargetID":2825,"Directional":true},{"SourceID":16830,"TargetID":2822,"Directional":true},{"SourceID":17914,"TargetID":3005,"Directional":true},{"SourceID":17922,"TargetID":17921,"Directional":true},{"SourceID":17924,"TargetID":17923,"Directional":true},{"SourceID":17992,"TargetID":17993,"Directional":true},{"SourceID":19027,"TargetID":19026,"Directional":true},{"SourceID":19050,"TargetID":19049,"Directional":true},{"SourceID":19054,"TargetID":19053,"Directional":true}]},{"ID":12384,"SourceStructureID":11401,"TargetStructureID":5345,"Label":"11401-5345 via Ribbon Synapse from 16805 -> 16810, 16824 -> 16825, 33782 -> 33784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16805,"TargetID":16810,"Directional":true},{"SourceID":16824,"TargetID":16825,"Directional":true},{"SourceID":33782,"TargetID":33784,"Directional":true}]},{"ID":12385,"SourceStructureID":11401,"TargetStructureID":25342,"Label":"11401-25342 via Ribbon Synapse from 25346 -> 25345","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25346,"TargetID":25345,"Directional":true}]},{"ID":12386,"SourceStructureID":11401,"TargetStructureID":66184,"Label":"11401-66184 via Ribbon Synapse from 11409 -> 92040","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":11409,"TargetID":92040,"Directional":true}]},{"ID":12387,"SourceStructureID":11408,"TargetStructureID":5909,"Label":"11408-5909 via Conventional from 93185 -> 93159, 93187 -> 93186","Type":"Conventional","Directional":true,"Links":[{"SourceID":93185,"TargetID":93159,"Directional":true},{"SourceID":93187,"TargetID":93186,"Directional":true}]},{"ID":12388,"SourceStructureID":11485,"TargetStructureID":514,"Label":"11485-514 via Conventional from 22604 -> 3240","Type":"Conventional","Directional":true,"Links":[{"SourceID":22604,"TargetID":3240,"Directional":true}]},{"ID":12389,"SourceStructureID":11485,"TargetStructureID":5575,"Label":"11485-5575 via Conventional from 23061 -> 23053","Type":"Conventional","Directional":true,"Links":[{"SourceID":23061,"TargetID":23053,"Directional":true}]},{"ID":12390,"SourceStructureID":11485,"TargetStructureID":24401,"Label":"11485-24401 via Conventional from 11487 -> 32267, 11488 -> 43627","Type":"Conventional","Directional":true,"Links":[{"SourceID":11487,"TargetID":32267,"Directional":true},{"SourceID":11488,"TargetID":43627,"Directional":true}]},{"ID":12391,"SourceStructureID":11531,"TargetStructureID":390,"Label":"11531-390 via Conventional from 11534 -> 65115","Type":"Conventional","Directional":true,"Links":[{"SourceID":11534,"TargetID":65115,"Directional":true}]},{"ID":12392,"SourceStructureID":11531,"TargetStructureID":5562,"Label":"11531-5562 via Conventional from 78350 -> 63361","Type":"Conventional","Directional":true,"Links":[{"SourceID":78350,"TargetID":63361,"Directional":true}]},{"ID":12393,"SourceStructureID":11531,"TargetStructureID":5623,"Label":"11531-5623 via Conventional from 63584 -> 63581","Type":"Conventional","Directional":true,"Links":[{"SourceID":63584,"TargetID":63581,"Directional":true}]},{"ID":12394,"SourceStructureID":11531,"TargetStructureID":6589,"Label":"11531-6589 via Conventional from 11533 -> 6593","Type":"Conventional","Directional":true,"Links":[{"SourceID":11533,"TargetID":6593,"Directional":true}]},{"ID":12395,"SourceStructureID":11645,"TargetStructureID":514,"Label":"11645-514 via Conventional from 15374 -> 1158","Type":"Conventional","Directional":true,"Links":[{"SourceID":15374,"TargetID":1158,"Directional":true}]},{"ID":12396,"SourceStructureID":11650,"TargetStructureID":179,"Label":"11650-179 via Conventional from 25745 -> 25744","Type":"Conventional","Directional":true,"Links":[{"SourceID":25745,"TargetID":25744,"Directional":true}]},{"ID":12397,"SourceStructureID":11651,"TargetStructureID":5281,"Label":"11651-5281 via Conventional from 43121 -> 43119","Type":"Conventional","Directional":true,"Links":[{"SourceID":43121,"TargetID":43119,"Directional":true}]},{"ID":12398,"SourceStructureID":11657,"TargetStructureID":40455,"Label":"11657-40455 via Conventional from 40460 -> 40459","Type":"Conventional","Directional":true,"Links":[{"SourceID":40460,"TargetID":40459,"Directional":true}]},{"ID":12399,"SourceStructureID":11683,"TargetStructureID":5281,"Label":"11683-5281 via Conventional from 43118 -> 36776, 43306 -> 43305","Type":"Conventional","Directional":true,"Links":[{"SourceID":43118,"TargetID":36776,"Directional":true},{"SourceID":43306,"TargetID":43305,"Directional":true}]},{"ID":12400,"SourceStructureID":11696,"TargetStructureID":142,"Label":"11696-142 via Conventional from 11698 -> 6657","Type":"Conventional","Directional":true,"Links":[{"SourceID":11698,"TargetID":6657,"Directional":true}]},{"ID":12401,"SourceStructureID":11696,"TargetStructureID":488,"Label":"11696-488 via Conventional from 11741 -> 71277","Type":"Conventional","Directional":true,"Links":[{"SourceID":11741,"TargetID":71277,"Directional":true}]},{"ID":12402,"SourceStructureID":11696,"TargetStructureID":159084,"Label":"11696-159084 via Conventional from 11740 -> 159085","Type":"Conventional","Directional":true,"Links":[{"SourceID":11740,"TargetID":159085,"Directional":true}]},{"ID":12403,"SourceStructureID":12072,"TargetStructureID":12208,"Label":"12072-12208 via Conventional from 27336 -> 22361","Type":"Conventional","Directional":true,"Links":[{"SourceID":27336,"TargetID":22361,"Directional":true}]},{"ID":12404,"SourceStructureID":12113,"TargetStructureID":173,"Label":"12113-173 via Ribbon Synapse from 12114 -> 12112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":12114,"TargetID":12112,"Directional":true}]},{"ID":12405,"SourceStructureID":12192,"TargetStructureID":591,"Label":"12192-591 via Conventional from 46625 -> 10081","Type":"Conventional","Directional":true,"Links":[{"SourceID":46625,"TargetID":10081,"Directional":true}]},{"ID":12406,"SourceStructureID":12192,"TargetStructureID":93125,"Label":"12192-93125 via Conventional from 46616 -> 93134","Type":"Conventional","Directional":true,"Links":[{"SourceID":46616,"TargetID":93134,"Directional":true}]},{"ID":12407,"SourceStructureID":12298,"TargetStructureID":596,"Label":"12298-596 via Conventional from 84669 -> 68608","Type":"Conventional","Directional":true,"Links":[{"SourceID":84669,"TargetID":68608,"Directional":true}]},{"ID":12408,"SourceStructureID":12298,"TargetStructureID":84667,"Label":"12298-84667 via Conventional from 84666 -> 84668","Type":"Conventional","Directional":true,"Links":[{"SourceID":84666,"TargetID":84668,"Directional":true}]},{"ID":12409,"SourceStructureID":12461,"TargetStructureID":591,"Label":"12461-591 via Conventional from 46624 -> 10082","Type":"Conventional","Directional":true,"Links":[{"SourceID":46624,"TargetID":10082,"Directional":true}]},{"ID":12410,"SourceStructureID":12564,"TargetStructureID":450,"Label":"12564-450 via Conventional from 122559 -> 122558","Type":"Conventional","Directional":true,"Links":[{"SourceID":122559,"TargetID":122558,"Directional":true}]},{"ID":12411,"SourceStructureID":12696,"TargetStructureID":4850,"Label":"12696-4850 via Conventional from 33890 -> 33889","Type":"Conventional","Directional":true,"Links":[{"SourceID":33890,"TargetID":33889,"Directional":true}]},{"ID":12412,"SourceStructureID":12897,"TargetStructureID":161,"Label":"12897-161 via Conventional from 22864 -> 22865, 33770 -> 33769, 35584 -> 35585","Type":"Conventional","Directional":true,"Links":[{"SourceID":22864,"TargetID":22865,"Directional":true},{"SourceID":33770,"TargetID":33769,"Directional":true},{"SourceID":35584,"TargetID":35585,"Directional":true}]},{"ID":12413,"SourceStructureID":12897,"TargetStructureID":5150,"Label":"12897-5150 via Conventional from 131334 -> 5244","Type":"Conventional","Directional":true,"Links":[{"SourceID":131334,"TargetID":5244,"Directional":true}]},{"ID":12414,"SourceStructureID":12897,"TargetStructureID":5502,"Label":"12897-5502 via Conventional from 12907 -> 27233, 12908 -> 27235, 27231 -> 27232, 131333 -> 131341","Type":"Conventional","Directional":true,"Links":[{"SourceID":12907,"TargetID":27233,"Directional":true},{"SourceID":12908,"TargetID":27235,"Directional":true},{"SourceID":27231,"TargetID":27232,"Directional":true},{"SourceID":131333,"TargetID":131341,"Directional":true}]},{"ID":12415,"SourceStructureID":12897,"TargetStructureID":5511,"Label":"12897-5511 via Conventional from 65176 -> 65177","Type":"Conventional","Directional":true,"Links":[{"SourceID":65176,"TargetID":65177,"Directional":true}]},{"ID":12416,"SourceStructureID":13000,"TargetStructureID":11401,"Label":"13000-11401 via Conventional from 21921 -> 11402","Type":"Conventional","Directional":true,"Links":[{"SourceID":21921,"TargetID":11402,"Directional":true}]},{"ID":12417,"SourceStructureID":13015,"TargetStructureID":308,"Label":"13015-308 via Conventional from 86572 -> 86570","Type":"Conventional","Directional":true,"Links":[{"SourceID":86572,"TargetID":86570,"Directional":true}]},{"ID":12418,"SourceStructureID":13056,"TargetStructureID":475,"Label":"13056-475 via Conventional from 46081 -> 46082","Type":"Conventional","Directional":true,"Links":[{"SourceID":46081,"TargetID":46082,"Directional":true}]},{"ID":12419,"SourceStructureID":13130,"TargetStructureID":59737,"Label":"13130-59737 via Conventional from 59739 -> 59740","Type":"Conventional","Directional":true,"Links":[{"SourceID":59739,"TargetID":59740,"Directional":true}]},{"ID":12420,"SourceStructureID":13134,"TargetStructureID":488,"Label":"13134-488 via Conventional from 122103 -> 71301","Type":"Conventional","Directional":true,"Links":[{"SourceID":122103,"TargetID":71301,"Directional":true}]},{"ID":12421,"SourceStructureID":13134,"TargetStructureID":4850,"Label":"13134-4850 via Conventional from 19444 -> 19443","Type":"Conventional","Directional":true,"Links":[{"SourceID":19444,"TargetID":19443,"Directional":true}]},{"ID":12422,"SourceStructureID":13150,"TargetStructureID":5498,"Label":"13150-5498 via Conventional from 40405 -> 40404","Type":"Conventional","Directional":true,"Links":[{"SourceID":40405,"TargetID":40404,"Directional":true}]},{"ID":12423,"SourceStructureID":13159,"TargetStructureID":4850,"Label":"13159-4850 via Conventional from 20768 -> 14518","Type":"Conventional","Directional":true,"Links":[{"SourceID":20768,"TargetID":14518,"Directional":true}]},{"ID":12424,"SourceStructureID":13180,"TargetStructureID":6997,"Label":"13180-6997 via Conventional from 21895 -> 6998","Type":"Conventional","Directional":true,"Links":[{"SourceID":21895,"TargetID":6998,"Directional":true}]},{"ID":12425,"SourceStructureID":13215,"TargetStructureID":4569,"Label":"13215-4569 via Conventional from 15125 -> 4737","Type":"Conventional","Directional":true,"Links":[{"SourceID":15125,"TargetID":4737,"Directional":true}]},{"ID":12426,"SourceStructureID":13313,"TargetStructureID":518,"Label":"13313-518 via Conventional from 37186 -> 3454, 37189 -> 3482","Type":"Conventional","Directional":true,"Links":[{"SourceID":37186,"TargetID":3454,"Directional":true},{"SourceID":37189,"TargetID":3482,"Directional":true}]},{"ID":12427,"SourceStructureID":13444,"TargetStructureID":419,"Label":"13444-419 via Conventional from 13446 -> 10160","Type":"Conventional","Directional":true,"Links":[{"SourceID":13446,"TargetID":10160,"Directional":true}]},{"ID":12428,"SourceStructureID":13444,"TargetStructureID":476,"Label":"13444-476 via Conventional from 13447 -> 10458","Type":"Conventional","Directional":true,"Links":[{"SourceID":13447,"TargetID":10458,"Directional":true}]},{"ID":12429,"SourceStructureID":13444,"TargetStructureID":518,"Label":"13444-518 via Conventional from 13445 -> 3382","Type":"Conventional","Directional":true,"Links":[{"SourceID":13445,"TargetID":3382,"Directional":true}]},{"ID":12430,"SourceStructureID":13448,"TargetStructureID":4943,"Label":"13448-4943 via Conventional from 21344 -> 13441","Type":"Conventional","Directional":true,"Links":[{"SourceID":21344,"TargetID":13441,"Directional":true}]},{"ID":12431,"SourceStructureID":13469,"TargetStructureID":3679,"Label":"13469-3679 via Ribbon Synapse from 13472 -> 13468","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13472,"TargetID":13468,"Directional":true}]},{"ID":12432,"SourceStructureID":13485,"TargetStructureID":469,"Label":"13485-469 via Conventional from 30509 -> 4651","Type":"Conventional","Directional":true,"Links":[{"SourceID":30509,"TargetID":4651,"Directional":true}]},{"ID":12433,"SourceStructureID":13499,"TargetStructureID":4567,"Label":"13499-4567 via Conventional from 40589 -> 21329","Type":"Conventional","Directional":true,"Links":[{"SourceID":40589,"TargetID":21329,"Directional":true}]},{"ID":12434,"SourceStructureID":13521,"TargetStructureID":4835,"Label":"13521-4835 via Ribbon Synapse from 13522 -> 13520","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":13522,"TargetID":13520,"Directional":true}]},{"ID":12435,"SourceStructureID":13624,"TargetStructureID":11229,"Label":"13624-11229 via Conventional from 15328 -> 15329, 15330 -> 15331, 15333 -> 15332","Type":"Conventional","Directional":true,"Links":[{"SourceID":15328,"TargetID":15329,"Directional":true},{"SourceID":15330,"TargetID":15331,"Directional":true},{"SourceID":15333,"TargetID":15332,"Directional":true}]},{"ID":12436,"SourceStructureID":14034,"TargetStructureID":13858,"Label":"14034-13858 via Ribbon Synapse from 14040 -> 14024, 18858 -> 14017","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14040,"TargetID":14024,"Directional":true},{"SourceID":18858,"TargetID":14017,"Directional":true}]},{"ID":12437,"SourceStructureID":14291,"TargetStructureID":4850,"Label":"14291-4850 via Conventional from 14299 -> 14290","Type":"Conventional","Directional":true,"Links":[{"SourceID":14299,"TargetID":14290,"Directional":true}]},{"ID":12438,"SourceStructureID":14293,"TargetStructureID":5497,"Label":"14293-5497 via Ribbon Synapse from 40210 -> 62550","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40210,"TargetID":62550,"Directional":true}]},{"ID":12439,"SourceStructureID":14293,"TargetStructureID":8575,"Label":"14293-8575 via BC Conventional Synapse from 61554 -> 61553","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61554,"TargetID":61553,"Directional":true}]},{"ID":12440,"SourceStructureID":14293,"TargetStructureID":8575,"Label":"14293-8575 via Ribbon Synapse from 40215 -> 61553","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40215,"TargetID":61553,"Directional":true}]},{"ID":12441,"SourceStructureID":14293,"TargetStructureID":14291,"Label":"14293-14291 via Ribbon Synapse from 14294 -> 14292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":14294,"TargetID":14292,"Directional":true}]},{"ID":12442,"SourceStructureID":14293,"TargetStructureID":61500,"Label":"14293-61500 via Ribbon Synapse from 40218 -> 61506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40218,"TargetID":61506,"Directional":true}]},{"ID":12443,"SourceStructureID":14607,"TargetStructureID":5422,"Label":"14607-5422 via Conventional from 74114 -> 74113","Type":"Conventional","Directional":true,"Links":[{"SourceID":74114,"TargetID":74113,"Directional":true}]},{"ID":12444,"SourceStructureID":14615,"TargetStructureID":3679,"Label":"14615-3679 via Ribbon Synapse from 66126 -> 7989, 66127 -> 7988, 66128 -> 7996, 66129 -> 7999, 76225 -> 5207, 132305 -> 132306","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66126,"TargetID":7989,"Directional":true},{"SourceID":66127,"TargetID":7988,"Directional":true},{"SourceID":66128,"TargetID":7996,"Directional":true},{"SourceID":66129,"TargetID":7999,"Directional":true},{"SourceID":76225,"TargetID":5207,"Directional":true},{"SourceID":132305,"TargetID":132306,"Directional":true}]},{"ID":12445,"SourceStructureID":14615,"TargetStructureID":5394,"Label":"14615-5394 via Ribbon Synapse from 76801 -> 76803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76801,"TargetID":76803,"Directional":true}]},{"ID":12446,"SourceStructureID":14615,"TargetStructureID":5402,"Label":"14615-5402 via Ribbon Synapse from 76594 -> 76599","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76594,"TargetID":76599,"Directional":true}]},{"ID":12447,"SourceStructureID":14615,"TargetStructureID":12897,"Label":"14615-12897 via Ribbon Synapse from 76213 -> 24747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76213,"TargetID":24747,"Directional":true}]},{"ID":12448,"SourceStructureID":14615,"TargetStructureID":76206,"Label":"14615-76206 via Ribbon Synapse from 76205 -> 76209","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76205,"TargetID":76209,"Directional":true}]},{"ID":12449,"SourceStructureID":14615,"TargetStructureID":76207,"Label":"14615-76207 via Ribbon Synapse from 76205 -> 76208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76205,"TargetID":76208,"Directional":true}]},{"ID":12450,"SourceStructureID":14615,"TargetStructureID":76214,"Label":"14615-76214 via Ribbon Synapse from 76213 -> 76215, 76225 -> 76226","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76213,"TargetID":76215,"Directional":true},{"SourceID":76225,"TargetID":76226,"Directional":true}]},{"ID":12451,"SourceStructureID":14615,"TargetStructureID":76595,"Label":"14615-76595 via Ribbon Synapse from 76594 -> 76597","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76594,"TargetID":76597,"Directional":true}]},{"ID":12452,"SourceStructureID":14615,"TargetStructureID":76829,"Label":"14615-76829 via Ribbon Synapse from 76841 -> 76842","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76841,"TargetID":76842,"Directional":true}]},{"ID":12453,"SourceStructureID":14615,"TargetStructureID":76832,"Label":"14615-76832 via Ribbon Synapse from 76845 -> 76848","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76845,"TargetID":76848,"Directional":true}]},{"ID":12454,"SourceStructureID":14615,"TargetStructureID":76849,"Label":"14615-76849 via Ribbon Synapse from 76845 -> 76850","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76845,"TargetID":76850,"Directional":true}]},{"ID":12455,"SourceStructureID":14615,"TargetStructureID":76868,"Label":"14615-76868 via Ribbon Synapse from 25317 -> 76869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25317,"TargetID":76869,"Directional":true}]},{"ID":12456,"SourceStructureID":14615,"TargetStructureID":76901,"Label":"14615-76901 via Ribbon Synapse from 76223 -> 76902, 76224 -> 76903","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76223,"TargetID":76902,"Directional":true},{"SourceID":76224,"TargetID":76903,"Directional":true}]},{"ID":12457,"SourceStructureID":14615,"TargetStructureID":87562,"Label":"14615-87562 via Ribbon Synapse from 87564 -> 87563","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87564,"TargetID":87563,"Directional":true}]},{"ID":12458,"SourceStructureID":14725,"TargetStructureID":171,"Label":"14725-171 via Conventional from 14726 -> 14734, 14728 -> 87728, 14729 -> 87729","Type":"Conventional","Directional":true,"Links":[{"SourceID":14726,"TargetID":14734,"Directional":true},{"SourceID":14728,"TargetID":87728,"Directional":true},{"SourceID":14729,"TargetID":87729,"Directional":true}]},{"ID":12459,"SourceStructureID":14894,"TargetStructureID":606,"Label":"14894-606 via Conventional from 14910 -> 52335","Type":"Conventional","Directional":true,"Links":[{"SourceID":14910,"TargetID":52335,"Directional":true}]},{"ID":12460,"SourceStructureID":15100,"TargetStructureID":304,"Label":"15100-304 via Ribbon Synapse from 17117 -> 17628, 17206 -> 17207, 17626 -> 17625, 17955 -> 17954, 18240 -> 18239","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17117,"TargetID":17628,"Directional":true},{"SourceID":17206,"TargetID":17207,"Directional":true},{"SourceID":17626,"TargetID":17625,"Directional":true},{"SourceID":17955,"TargetID":17954,"Directional":true},{"SourceID":18240,"TargetID":18239,"Directional":true}]},{"ID":12461,"SourceStructureID":15100,"TargetStructureID":514,"Label":"15100-514 via Ribbon Synapse from 15101 -> 15099, 17214 -> 17215, 17219 -> 17220, 18287 -> 13786, 18289 -> 18288, 19059 -> 19063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15101,"TargetID":15099,"Directional":true},{"SourceID":17214,"TargetID":17215,"Directional":true},{"SourceID":17219,"TargetID":17220,"Directional":true},{"SourceID":18287,"TargetID":13786,"Directional":true},{"SourceID":18289,"TargetID":18288,"Directional":true},{"SourceID":19059,"TargetID":19063,"Directional":true}]},{"ID":12462,"SourceStructureID":15100,"TargetStructureID":2610,"Label":"15100-2610 via Ribbon Synapse from 16398 -> 16397, 17116 -> 18223, 17118 -> 18224, 17172 -> 17504, 17179 -> 17178, 17181 -> 17180, 17227 -> 17224, 17622 -> 2937, 17963 -> 17964, 17966 -> 17965, 17997 -> 15051, 18227 -> 18226, 18230 -> 18231, 18237 -> 18236, 33787 -> 9407","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16398,"TargetID":16397,"Directional":true},{"SourceID":17116,"TargetID":18223,"Directional":true},{"SourceID":17118,"TargetID":18224,"Directional":true},{"SourceID":17172,"TargetID":17504,"Directional":true},{"SourceID":17179,"TargetID":17178,"Directional":true},{"SourceID":17181,"TargetID":17180,"Directional":true},{"SourceID":17227,"TargetID":17224,"Directional":true},{"SourceID":17622,"TargetID":2937,"Directional":true},{"SourceID":17963,"TargetID":17964,"Directional":true},{"SourceID":17966,"TargetID":17965,"Directional":true},{"SourceID":17997,"TargetID":15051,"Directional":true},{"SourceID":18227,"TargetID":18226,"Directional":true},{"SourceID":18230,"TargetID":18231,"Directional":true},{"SourceID":18237,"TargetID":18236,"Directional":true},{"SourceID":33787,"TargetID":9407,"Directional":true}]},{"ID":12463,"SourceStructureID":15100,"TargetStructureID":5303,"Label":"15100-5303 via Ribbon Synapse from 18289 -> 102936","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18289,"TargetID":102936,"Directional":true}]},{"ID":12464,"SourceStructureID":15130,"TargetStructureID":168,"Label":"15130-168 via Conventional from 15134 -> 4124","Type":"Conventional","Directional":true,"Links":[{"SourceID":15134,"TargetID":4124,"Directional":true}]},{"ID":12465,"SourceStructureID":15377,"TargetStructureID":4850,"Label":"15377-4850 via Conventional from 15379 -> 15387","Type":"Conventional","Directional":true,"Links":[{"SourceID":15379,"TargetID":15387,"Directional":true}]},{"ID":12466,"SourceStructureID":15377,"TargetStructureID":10945,"Label":"15377-10945 via Conventional from 19275 -> 19276","Type":"Conventional","Directional":true,"Links":[{"SourceID":19275,"TargetID":19276,"Directional":true}]},{"ID":12467,"SourceStructureID":15475,"TargetStructureID":5281,"Label":"15475-5281 via Conventional from 43137 -> 43136","Type":"Conventional","Directional":true,"Links":[{"SourceID":43137,"TargetID":43136,"Directional":true}]},{"ID":12468,"SourceStructureID":15614,"TargetStructureID":4876,"Label":"15614-4876 via Conventional from 42512 -> 42511","Type":"Conventional","Directional":true,"Links":[{"SourceID":42512,"TargetID":42511,"Directional":true}]},{"ID":12469,"SourceStructureID":15653,"TargetStructureID":9260,"Label":"15653-9260 via Conventional from 129703 -> 129702","Type":"Conventional","Directional":true,"Links":[{"SourceID":129703,"TargetID":129702,"Directional":true}]},{"ID":12470,"SourceStructureID":15942,"TargetStructureID":304,"Label":"15942-304 via Ribbon Synapse from 17960 -> 17686, 19107 -> 17685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17960,"TargetID":17686,"Directional":true},{"SourceID":19107,"TargetID":17685,"Directional":true}]},{"ID":12471,"SourceStructureID":15942,"TargetStructureID":410,"Label":"15942-410 via Ribbon Synapse from 15116 -> 15114, 16505 -> 15939, 16513 -> 16511, 16801 -> 16800, 17265 -> 17266, 17498 -> 17497, 18525 -> 18526, 18527 -> 18528, 18531 -> 18530, 19121 -> 22672, 19121 -> 23117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15116,"TargetID":15114,"Directional":true},{"SourceID":16505,"TargetID":15939,"Directional":true},{"SourceID":16513,"TargetID":16511,"Directional":true},{"SourceID":16801,"TargetID":16800,"Directional":true},{"SourceID":17265,"TargetID":17266,"Directional":true},{"SourceID":17498,"TargetID":17497,"Directional":true},{"SourceID":18525,"TargetID":18526,"Directional":true},{"SourceID":18527,"TargetID":18528,"Directional":true},{"SourceID":18531,"TargetID":18530,"Directional":true},{"SourceID":19121,"TargetID":22672,"Directional":true},{"SourceID":19121,"TargetID":23117,"Directional":true}]},{"ID":12472,"SourceStructureID":15942,"TargetStructureID":476,"Label":"15942-476 via Ribbon Synapse from 16507 -> 16508, 16507 -> 16774, 17374 -> 17375, 17377 -> 17376, 17378 -> 16503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16507,"TargetID":16508,"Directional":true},{"SourceID":16507,"TargetID":16774,"Directional":true},{"SourceID":17374,"TargetID":17375,"Directional":true},{"SourceID":17377,"TargetID":17376,"Directional":true},{"SourceID":17378,"TargetID":16503,"Directional":true}]},{"ID":12473,"SourceStructureID":15942,"TargetStructureID":514,"Label":"15942-514 via Ribbon Synapse from 16401 -> 16400","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16401,"TargetID":16400,"Directional":true}]},{"ID":12474,"SourceStructureID":15942,"TargetStructureID":591,"Label":"15942-591 via Ribbon Synapse from 15962 -> 10290, 15963 -> 15964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15962,"TargetID":10290,"Directional":true},{"SourceID":15963,"TargetID":15964,"Directional":true}]},{"ID":12475,"SourceStructureID":15942,"TargetStructureID":2610,"Label":"15942-2610 via Ribbon Synapse from 15962 -> 15965, 15966 -> 15941, 16765 -> 16399, 16788 -> 16779, 17268 -> 17269, 17959 -> 2952, 18414 -> 2956, 66158 -> 66160","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":15962,"TargetID":15965,"Directional":true},{"SourceID":15966,"TargetID":15941,"Directional":true},{"SourceID":16765,"TargetID":16399,"Directional":true},{"SourceID":16788,"TargetID":16779,"Directional":true},{"SourceID":17268,"TargetID":17269,"Directional":true},{"SourceID":17959,"TargetID":2952,"Directional":true},{"SourceID":18414,"TargetID":2956,"Directional":true},{"SourceID":66158,"TargetID":66160,"Directional":true}]},{"ID":12476,"SourceStructureID":15942,"TargetStructureID":8990,"Label":"15942-8990 via Ribbon Synapse from 18414 -> 95928, 19106 -> 95931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18414,"TargetID":95928,"Directional":true},{"SourceID":19106,"TargetID":95931,"Directional":true}]},{"ID":12477,"SourceStructureID":15976,"TargetStructureID":5442,"Label":"15976-5442 via Ribbon Synapse from 55131 -> 55130","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55131,"TargetID":55130,"Directional":true}]},{"ID":12478,"SourceStructureID":15976,"TargetStructureID":57487,"Label":"15976-57487 via Ribbon Synapse from 57425 -> 57489","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57425,"TargetID":57489,"Directional":true}]},{"ID":12479,"SourceStructureID":15976,"TargetStructureID":93168,"Label":"15976-93168 via BC Conventional Synapse from 93164 -> 93169","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93164,"TargetID":93169,"Directional":true}]},{"ID":12480,"SourceStructureID":15976,"TargetStructureID":93281,"Label":"15976-93281 via Ribbon Synapse from 57435 -> 93282","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":57435,"TargetID":93282,"Directional":true}]},{"ID":12481,"SourceStructureID":15977,"TargetStructureID":4890,"Label":"15977-4890 via Ribbon Synapse from 33953 -> 7916","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33953,"TargetID":7916,"Directional":true}]},{"ID":12482,"SourceStructureID":15977,"TargetStructureID":5442,"Label":"15977-5442 via Ribbon Synapse from 73553 -> 73555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73553,"TargetID":73555,"Directional":true}]},{"ID":12483,"SourceStructureID":15977,"TargetStructureID":8579,"Label":"15977-8579 via Ribbon Synapse from 62689 -> 62688, 62695 -> 62694, 62697 -> 62696, 62940 -> 62939, 62944 -> 62943","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62689,"TargetID":62688,"Directional":true},{"SourceID":62695,"TargetID":62694,"Directional":true},{"SourceID":62697,"TargetID":62696,"Directional":true},{"SourceID":62940,"TargetID":62939,"Directional":true},{"SourceID":62944,"TargetID":62943,"Directional":true}]},{"ID":12484,"SourceStructureID":15977,"TargetStructureID":8588,"Label":"15977-8588 via BC Conventional Synapse from 118439 -> 118438","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":118439,"TargetID":118438,"Directional":true}]},{"ID":12485,"SourceStructureID":15977,"TargetStructureID":29198,"Label":"15977-29198 via BC Conventional Synapse from 117188 -> 117187","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":117188,"TargetID":117187,"Directional":true}]},{"ID":12486,"SourceStructureID":15977,"TargetStructureID":29198,"Label":"15977-29198 via Ribbon Synapse from 33946 -> 29230, 33973 -> 33974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33946,"TargetID":29230,"Directional":true},{"SourceID":33973,"TargetID":33974,"Directional":true}]},{"ID":12487,"SourceStructureID":15977,"TargetStructureID":35406,"Label":"15977-35406 via Ribbon Synapse from 38301 -> 38297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38301,"TargetID":38297,"Directional":true}]},{"ID":12488,"SourceStructureID":15977,"TargetStructureID":60590,"Label":"15977-60590 via Ribbon Synapse from 60592 -> 60591","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60592,"TargetID":60591,"Directional":true}]},{"ID":12489,"SourceStructureID":15977,"TargetStructureID":123573,"Label":"15977-123573 via Ribbon Synapse from 56333 -> 123585, 56339 -> 123588","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56333,"TargetID":123585,"Directional":true},{"SourceID":56339,"TargetID":123588,"Directional":true}]},{"ID":12490,"SourceStructureID":15979,"TargetStructureID":284,"Label":"15979-284 via Ribbon Synapse from 29490 -> 29489, 29492 -> 29491","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29490,"TargetID":29489,"Directional":true},{"SourceID":29492,"TargetID":29491,"Directional":true}]},{"ID":12491,"SourceStructureID":15979,"TargetStructureID":591,"Label":"15979-591 via Ribbon Synapse from 33788 -> 36451, 36450 -> 36449","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33788,"TargetID":36451,"Directional":true},{"SourceID":36450,"TargetID":36449,"Directional":true}]},{"ID":12492,"SourceStructureID":15979,"TargetStructureID":6153,"Label":"15979-6153 via Ribbon Synapse from 29475 -> 29474, 29476 -> 29477, 33788 -> 33789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29475,"TargetID":29474,"Directional":true},{"SourceID":29476,"TargetID":29477,"Directional":true},{"SourceID":33788,"TargetID":33789,"Directional":true}]},{"ID":12493,"SourceStructureID":16002,"TargetStructureID":170,"Label":"16002-170 via Conventional from 16009 -> 90435, 16011 -> 16012","Type":"Conventional","Directional":true,"Links":[{"SourceID":16009,"TargetID":90435,"Directional":true},{"SourceID":16011,"TargetID":16012,"Directional":true}]},{"ID":12494,"SourceStructureID":16002,"TargetStructureID":4569,"Label":"16002-4569 via Conventional from 16006 -> 16007, 66654 -> 30841","Type":"Conventional","Directional":true,"Links":[{"SourceID":16006,"TargetID":16007,"Directional":true},{"SourceID":66654,"TargetID":30841,"Directional":true}]},{"ID":12495,"SourceStructureID":16002,"TargetStructureID":21299,"Label":"16002-21299 via Conventional from 46340 -> 46339","Type":"Conventional","Directional":true,"Links":[{"SourceID":46340,"TargetID":46339,"Directional":true}]},{"ID":12496,"SourceStructureID":16002,"TargetStructureID":66656,"Label":"16002-66656 via Conventional from 66655 -> 66657","Type":"Conventional","Directional":true,"Links":[{"SourceID":66655,"TargetID":66657,"Directional":true}]},{"ID":12497,"SourceStructureID":16026,"TargetStructureID":5117,"Label":"16026-5117 via Ribbon Synapse from 24094 -> 65498, 24095 -> 65498, 25542 -> 66349, 25546 -> 66348, 25556 -> 65502, 68158 -> 68159, 91047 -> 134610","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24094,"TargetID":65498,"Directional":true},{"SourceID":24095,"TargetID":65498,"Directional":true},{"SourceID":25542,"TargetID":66349,"Directional":true},{"SourceID":25546,"TargetID":66348,"Directional":true},{"SourceID":25556,"TargetID":65502,"Directional":true},{"SourceID":68158,"TargetID":68159,"Directional":true},{"SourceID":91047,"TargetID":134610,"Directional":true}]},{"ID":12498,"SourceStructureID":16026,"TargetStructureID":5282,"Label":"16026-5282 via Ribbon Synapse from 22336 -> 87547, 134535 -> 87547","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22336,"TargetID":87547,"Directional":true},{"SourceID":134535,"TargetID":87547,"Directional":true}]},{"ID":12499,"SourceStructureID":16026,"TargetStructureID":5374,"Label":"16026-5374 via Ribbon Synapse from 25517 -> 69002","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25517,"TargetID":69002,"Directional":true}]},{"ID":12500,"SourceStructureID":16026,"TargetStructureID":5485,"Label":"16026-5485 via Ribbon Synapse from 25284 -> 134508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25284,"TargetID":134508,"Directional":true}]},{"ID":12501,"SourceStructureID":16026,"TargetStructureID":8033,"Label":"16026-8033 via Ribbon Synapse from 25290 -> 134483, 25291 -> 134483, 25673 -> 134747","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25290,"TargetID":134483,"Directional":true},{"SourceID":25291,"TargetID":134483,"Directional":true},{"SourceID":25673,"TargetID":134747,"Directional":true}]},{"ID":12502,"SourceStructureID":16026,"TargetStructureID":8579,"Label":"16026-8579 via Ribbon Synapse from 24087 -> 134547, 25972 -> 62866, 91203 -> 19799, 124822 -> 134548, 134326 -> 19798, 134555 -> 62864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24087,"TargetID":134547,"Directional":true},{"SourceID":25972,"TargetID":62866,"Directional":true},{"SourceID":91203,"TargetID":19799,"Directional":true},{"SourceID":124822,"TargetID":134548,"Directional":true},{"SourceID":134326,"TargetID":19798,"Directional":true},{"SourceID":134555,"TargetID":62864,"Directional":true}]},{"ID":12503,"SourceStructureID":16026,"TargetStructureID":8720,"Label":"16026-8720 via Ribbon Synapse from 63148 -> 63146","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63148,"TargetID":63146,"Directional":true}]},{"ID":12504,"SourceStructureID":16026,"TargetStructureID":12208,"Label":"16026-12208 via Ribbon Synapse from 38654 -> 22369","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38654,"TargetID":22369,"Directional":true}]},{"ID":12505,"SourceStructureID":16026,"TargetStructureID":12897,"Label":"16026-12897 via Ribbon Synapse from 24596 -> 25703, 25486 -> 134388, 25487 -> 134388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24596,"TargetID":25703,"Directional":true},{"SourceID":25486,"TargetID":134388,"Directional":true},{"SourceID":25487,"TargetID":134388,"Directional":true}]},{"ID":12506,"SourceStructureID":16026,"TargetStructureID":20537,"Label":"16026-20537 via Ribbon Synapse from 22326 -> 24133, 25757 -> 24133","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22326,"TargetID":24133,"Directional":true},{"SourceID":25757,"TargetID":24133,"Directional":true}]},{"ID":12507,"SourceStructureID":16026,"TargetStructureID":29277,"Label":"16026-29277 via Ribbon Synapse from 134594 -> 123165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134594,"TargetID":123165,"Directional":true}]},{"ID":12508,"SourceStructureID":16026,"TargetStructureID":31024,"Label":"16026-31024 via BC Conventional Synapse from 134607 -> 124827","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134607,"TargetID":124827,"Directional":true}]},{"ID":12509,"SourceStructureID":16026,"TargetStructureID":31024,"Label":"16026-31024 via Ribbon Synapse from 25558 -> 31025, 25714 -> 31031, 134590 -> 134589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25558,"TargetID":31025,"Directional":true},{"SourceID":25714,"TargetID":31031,"Directional":true},{"SourceID":134590,"TargetID":134589,"Directional":true}]},{"ID":12510,"SourceStructureID":16026,"TargetStructureID":31161,"Label":"16026-31161 via Ribbon Synapse from 67939 -> 134772, 67940 -> 134767","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67939,"TargetID":134772,"Directional":true},{"SourceID":67940,"TargetID":134767,"Directional":true}]},{"ID":12511,"SourceStructureID":16026,"TargetStructureID":40947,"Label":"16026-40947 via Ribbon Synapse from 25563 -> 40950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25563,"TargetID":40950,"Directional":true}]},{"ID":12512,"SourceStructureID":16026,"TargetStructureID":54078,"Label":"16026-54078 via BC Conventional Synapse from 124779 -> 54112","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124779,"TargetID":54112,"Directional":true}]},{"ID":12513,"SourceStructureID":16026,"TargetStructureID":54078,"Label":"16026-54078 via Ribbon Synapse from 25272 -> 134511, 67849 -> 67848, 134510 -> 134511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25272,"TargetID":134511,"Directional":true},{"SourceID":67849,"TargetID":67848,"Directional":true},{"SourceID":134510,"TargetID":134511,"Directional":true}]},{"ID":12514,"SourceStructureID":16026,"TargetStructureID":61836,"Label":"16026-61836 via Ribbon Synapse from 25656 -> 68115, 67939 -> 68114","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25656,"TargetID":68115,"Directional":true},{"SourceID":67939,"TargetID":68114,"Directional":true}]},{"ID":12515,"SourceStructureID":16026,"TargetStructureID":61864,"Label":"16026-61864 via Ribbon Synapse from 66050 -> 66068","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66050,"TargetID":66068,"Directional":true}]},{"ID":12516,"SourceStructureID":16026,"TargetStructureID":61864,"Label":"16026-61864 via Unknown from 134704 -> 66486","Type":"Unknown","Directional":true,"Links":[{"SourceID":134704,"TargetID":66486,"Directional":true}]},{"ID":12517,"SourceStructureID":16026,"TargetStructureID":65324,"Label":"16026-65324 via Ribbon Synapse from 25595 -> 134830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25595,"TargetID":134830,"Directional":true}]},{"ID":12518,"SourceStructureID":16026,"TargetStructureID":65536,"Label":"16026-65536 via BC Conventional Synapse from 67086 -> 67085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":67086,"TargetID":67085,"Directional":true}]},{"ID":12519,"SourceStructureID":16026,"TargetStructureID":65536,"Label":"16026-65536 via Ribbon Synapse from 24087 -> 67076, 134555 -> 134554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24087,"TargetID":67076,"Directional":true},{"SourceID":134555,"TargetID":134554,"Directional":true}]},{"ID":12520,"SourceStructureID":16026,"TargetStructureID":65538,"Label":"16026-65538 via Ribbon Synapse from 25733 -> 65544","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25733,"TargetID":65544,"Directional":true}]},{"ID":12521,"SourceStructureID":16026,"TargetStructureID":65864,"Label":"16026-65864 via BC Conventional Synapse from 65874 -> 65875","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65874,"TargetID":65875,"Directional":true}]},{"ID":12522,"SourceStructureID":16026,"TargetStructureID":65864,"Label":"16026-65864 via Ribbon Synapse from 25730 -> 65871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25730,"TargetID":65871,"Directional":true}]},{"ID":12523,"SourceStructureID":16026,"TargetStructureID":66031,"Label":"16026-66031 via Ribbon Synapse from 66050 -> 66049","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66050,"TargetID":66049,"Directional":true}]},{"ID":12524,"SourceStructureID":16026,"TargetStructureID":66073,"Label":"16026-66073 via Ribbon Synapse from 25667 -> 66083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25667,"TargetID":66083,"Directional":true}]},{"ID":12525,"SourceStructureID":16026,"TargetStructureID":66111,"Label":"16026-66111 via Ribbon Synapse from 25601 -> 134736, 25611 -> 134741, 25662 -> 68589","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25601,"TargetID":134736,"Directional":true},{"SourceID":25611,"TargetID":134741,"Directional":true},{"SourceID":25662,"TargetID":68589,"Directional":true}]},{"ID":12526,"SourceStructureID":16026,"TargetStructureID":66114,"Label":"16026-66114 via Ribbon Synapse from 25605 -> 134800, 25606 -> 66118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25605,"TargetID":134800,"Directional":true},{"SourceID":25606,"TargetID":66118,"Directional":true}]},{"ID":12527,"SourceStructureID":16026,"TargetStructureID":66795,"Label":"16026-66795 via Ribbon Synapse from 91047 -> 134611","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91047,"TargetID":134611,"Directional":true}]},{"ID":12528,"SourceStructureID":16026,"TargetStructureID":66828,"Label":"16026-66828 via Ribbon Synapse from 25599 -> 82736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25599,"TargetID":82736,"Directional":true}]},{"ID":12529,"SourceStructureID":16026,"TargetStructureID":66888,"Label":"16026-66888 via Ribbon Synapse from 25645 -> 66895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25645,"TargetID":66895,"Directional":true}]},{"ID":12530,"SourceStructureID":16026,"TargetStructureID":66966,"Label":"16026-66966 via BC Conventional Synapse from 134575 -> 134574","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134575,"TargetID":134574,"Directional":true}]},{"ID":12531,"SourceStructureID":16026,"TargetStructureID":67045,"Label":"16026-67045 via Ribbon Synapse from 25484 -> 134389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25484,"TargetID":134389,"Directional":true}]},{"ID":12532,"SourceStructureID":16026,"TargetStructureID":67354,"Label":"16026-67354 via Ribbon Synapse from 25608 -> 92793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25608,"TargetID":92793,"Directional":true}]},{"ID":12533,"SourceStructureID":16026,"TargetStructureID":67361,"Label":"16026-67361 via Ribbon Synapse from 25595 -> 134831, 25597 -> 130544, 25610 -> 130543, 125026 -> 134845, 125030 -> 134864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25595,"TargetID":134831,"Directional":true},{"SourceID":25597,"TargetID":130544,"Directional":true},{"SourceID":25610,"TargetID":130543,"Directional":true},{"SourceID":125026,"TargetID":134845,"Directional":true},{"SourceID":125030,"TargetID":134864,"Directional":true}]},{"ID":12534,"SourceStructureID":16026,"TargetStructureID":67595,"Label":"16026-67595 via Ribbon Synapse from 24593 -> 134740, 25496 -> 67648, 25672 -> 67630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24593,"TargetID":134740,"Directional":true},{"SourceID":25496,"TargetID":67648,"Directional":true},{"SourceID":25672,"TargetID":67630,"Directional":true}]},{"ID":12535,"SourceStructureID":16026,"TargetStructureID":67793,"Label":"16026-67793 via Ribbon Synapse from 67940 -> 134763","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67940,"TargetID":134763,"Directional":true}]},{"ID":12536,"SourceStructureID":16026,"TargetStructureID":67818,"Label":"16026-67818 via BC Conventional Synapse from 124851 -> 124850","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124851,"TargetID":124850,"Directional":true}]},{"ID":12537,"SourceStructureID":16026,"TargetStructureID":67818,"Label":"16026-67818 via Ribbon Synapse from 67917 -> 67912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67917,"TargetID":67912,"Directional":true}]},{"ID":12538,"SourceStructureID":16026,"TargetStructureID":67851,"Label":"16026-67851 via Adherens from 67858 -> 67857","Type":"Adherens","Directional":true,"Links":[{"SourceID":67858,"TargetID":67857,"Directional":true}]},{"ID":12539,"SourceStructureID":16026,"TargetStructureID":67933,"Label":"16026-67933 via Ribbon Synapse from 67917 -> 67934, 67927 -> 134790, 67931 -> 67934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67917,"TargetID":67934,"Directional":true},{"SourceID":67927,"TargetID":134790,"Directional":true},{"SourceID":67931,"TargetID":67934,"Directional":true}]},{"ID":12540,"SourceStructureID":16026,"TargetStructureID":67941,"Label":"16026-67941 via Ribbon Synapse from 67940 -> 134769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":67940,"TargetID":134769,"Directional":true}]},{"ID":12541,"SourceStructureID":16026,"TargetStructureID":68153,"Label":"16026-68153 via Ribbon Synapse from 25487 -> 134387, 25516 -> 68185, 68157 -> 68155","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25487,"TargetID":134387,"Directional":true},{"SourceID":25516,"TargetID":68185,"Directional":true},{"SourceID":68157,"TargetID":68155,"Directional":true}]},{"ID":12542,"SourceStructureID":16026,"TargetStructureID":68531,"Label":"16026-68531 via Ribbon Synapse from 25667 -> 134628","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25667,"TargetID":134628,"Directional":true}]},{"ID":12543,"SourceStructureID":16026,"TargetStructureID":68548,"Label":"16026-68548 via Ribbon Synapse from 25289 -> 73481, 25477 -> 73483, 67925 -> 75356, 67926 -> 75356","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25289,"TargetID":73481,"Directional":true},{"SourceID":25477,"TargetID":73483,"Directional":true},{"SourceID":67925,"TargetID":75356,"Directional":true},{"SourceID":67926,"TargetID":75356,"Directional":true}]},{"ID":12544,"SourceStructureID":16026,"TargetStructureID":80412,"Label":"16026-80412 via BC Conventional Synapse from 134870 -> 134869","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134870,"TargetID":134869,"Directional":true}]},{"ID":12545,"SourceStructureID":16026,"TargetStructureID":82305,"Label":"16026-82305 via Ribbon Synapse from 25548 -> 82333, 25662 -> 82327","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25548,"TargetID":82333,"Directional":true},{"SourceID":25662,"TargetID":82327,"Directional":true}]},{"ID":12546,"SourceStructureID":16026,"TargetStructureID":83603,"Label":"16026-83603 via Ribbon Synapse from 134616 -> 134617","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134616,"TargetID":134617,"Directional":true}]},{"ID":12547,"SourceStructureID":16026,"TargetStructureID":84260,"Label":"16026-84260 via Ribbon Synapse from 22332 -> 134533, 25269 -> 134533, 25618 -> 84261, 25619 -> 84261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22332,"TargetID":134533,"Directional":true},{"SourceID":25269,"TargetID":134533,"Directional":true},{"SourceID":25618,"TargetID":84261,"Directional":true},{"SourceID":25619,"TargetID":84261,"Directional":true}]},{"ID":12548,"SourceStructureID":16026,"TargetStructureID":84656,"Label":"16026-84656 via BC Conventional Synapse from 124783 -> 134507","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124783,"TargetID":134507,"Directional":true}]},{"ID":12549,"SourceStructureID":16026,"TargetStructureID":91036,"Label":"16026-91036 via Ribbon Synapse from 25556 -> 91038, 25558 -> 91037","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25556,"TargetID":91038,"Directional":true},{"SourceID":25558,"TargetID":91037,"Directional":true}]},{"ID":12550,"SourceStructureID":16026,"TargetStructureID":91056,"Label":"16026-91056 via Ribbon Synapse from 91055 -> 91057","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91055,"TargetID":91057,"Directional":true}]},{"ID":12551,"SourceStructureID":16026,"TargetStructureID":91060,"Label":"16026-91060 via Ribbon Synapse from 91062 -> 91063, 134616 -> 91063","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91062,"TargetID":91063,"Directional":true},{"SourceID":134616,"TargetID":91063,"Directional":true}]},{"ID":12552,"SourceStructureID":16026,"TargetStructureID":91073,"Label":"16026-91073 via Ribbon Synapse from 91067 -> 91074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91067,"TargetID":91074,"Directional":true}]},{"ID":12553,"SourceStructureID":16026,"TargetStructureID":91080,"Label":"16026-91080 via Ribbon Synapse from 91069 -> 91081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91069,"TargetID":91081,"Directional":true}]},{"ID":12554,"SourceStructureID":16026,"TargetStructureID":91085,"Label":"16026-91085 via BC Conventional Synapse from 134622 -> 134621","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134622,"TargetID":134621,"Directional":true}]},{"ID":12555,"SourceStructureID":16026,"TargetStructureID":91090,"Label":"16026-91090 via Ribbon Synapse from 91088 -> 91091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91088,"TargetID":91091,"Directional":true}]},{"ID":12556,"SourceStructureID":16026,"TargetStructureID":91092,"Label":"16026-91092 via Ribbon Synapse from 91088 -> 91093","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91088,"TargetID":91093,"Directional":true}]},{"ID":12557,"SourceStructureID":16026,"TargetStructureID":91094,"Label":"16026-91094 via Ribbon Synapse from 91050 -> 91095","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91050,"TargetID":91095,"Directional":true}]},{"ID":12558,"SourceStructureID":16026,"TargetStructureID":91098,"Label":"16026-91098 via Ribbon Synapse from 25730 -> 134560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25730,"TargetID":134560,"Directional":true}]},{"ID":12559,"SourceStructureID":16026,"TargetStructureID":91111,"Label":"16026-91111 via Ribbon Synapse from 25972 -> 91112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25972,"TargetID":91112,"Directional":true}]},{"ID":12560,"SourceStructureID":16026,"TargetStructureID":91118,"Label":"16026-91118 via Ribbon Synapse from 91116 -> 91119","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91116,"TargetID":91119,"Directional":true}]},{"ID":12561,"SourceStructureID":16026,"TargetStructureID":91145,"Label":"16026-91145 via Cistern Pre from 91144 -> 91146","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":91144,"TargetID":91146,"Directional":true}]},{"ID":12562,"SourceStructureID":16026,"TargetStructureID":91150,"Label":"16026-91150 via Ribbon Synapse from 91149 -> 91152","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91149,"TargetID":91152,"Directional":true}]},{"ID":12563,"SourceStructureID":16026,"TargetStructureID":91167,"Label":"16026-91167 via Ribbon Synapse from 91166 -> 91168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91166,"TargetID":91168,"Directional":true}]},{"ID":12564,"SourceStructureID":16026,"TargetStructureID":91240,"Label":"16026-91240 via Ribbon Synapse from 114644 -> 114645","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":114644,"TargetID":114645,"Directional":true}]},{"ID":12565,"SourceStructureID":16026,"TargetStructureID":91533,"Label":"16026-91533 via Ribbon Synapse from 25611 -> 134742","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25611,"TargetID":134742,"Directional":true}]},{"ID":12566,"SourceStructureID":16026,"TargetStructureID":92092,"Label":"16026-92092 via BC Conventional Synapse from 92796 -> 92795","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92796,"TargetID":92795,"Directional":true}]},{"ID":12567,"SourceStructureID":16026,"TargetStructureID":92193,"Label":"16026-92193 via BC Conventional Synapse from 134495 -> 92800","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134495,"TargetID":92800,"Directional":true}]},{"ID":12568,"SourceStructureID":16026,"TargetStructureID":92223,"Label":"16026-92223 via BC Conventional Synapse from 134932 -> 134933","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134932,"TargetID":134933,"Directional":true}]},{"ID":12569,"SourceStructureID":16026,"TargetStructureID":92236,"Label":"16026-92236 via Ribbon Synapse from 92817 -> 92818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92817,"TargetID":92818,"Directional":true}]},{"ID":12570,"SourceStructureID":16026,"TargetStructureID":92361,"Label":"16026-92361 via Ribbon Synapse from 124810 -> 134354, 134376 -> 134377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":124810,"TargetID":134354,"Directional":true},{"SourceID":134376,"TargetID":134377,"Directional":true}]},{"ID":12571,"SourceStructureID":16026,"TargetStructureID":92372,"Label":"16026-92372 via Ribbon Synapse from 25542 -> 134368","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25542,"TargetID":134368,"Directional":true}]},{"ID":12572,"SourceStructureID":16026,"TargetStructureID":92400,"Label":"16026-92400 via Ribbon Synapse from 134360 -> 134361","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134360,"TargetID":134361,"Directional":true}]},{"ID":12573,"SourceStructureID":16026,"TargetStructureID":92403,"Label":"16026-92403 via Ribbon Synapse from 134537 -> 134536","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134537,"TargetID":134536,"Directional":true}]},{"ID":12574,"SourceStructureID":16026,"TargetStructureID":92414,"Label":"16026-92414 via BC Conventional Synapse from 134581 -> 134582","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":134581,"TargetID":134582,"Directional":true}]},{"ID":12575,"SourceStructureID":16026,"TargetStructureID":92602,"Label":"16026-92602 via Cistern Pre from 134880 -> 134881","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":134880,"TargetID":134881,"Directional":true}]},{"ID":12576,"SourceStructureID":16026,"TargetStructureID":92607,"Label":"16026-92607 via Ribbon Synapse from 134866 -> 134867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":134866,"TargetID":134867,"Directional":true}]},{"ID":12577,"SourceStructureID":16026,"TargetStructureID":92865,"Label":"16026-92865 via Ribbon Synapse from 25643 -> 92869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25643,"TargetID":92869,"Directional":true}]},{"ID":12578,"SourceStructureID":16026,"TargetStructureID":92926,"Label":"16026-92926 via Ribbon Synapse from 82741 -> 134795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82741,"TargetID":134795,"Directional":true}]},{"ID":12579,"SourceStructureID":16026,"TargetStructureID":104497,"Label":"16026-104497 via Ribbon Synapse from 25770 -> 134395","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25770,"TargetID":134395,"Directional":true}]},{"ID":12580,"SourceStructureID":16026,"TargetStructureID":122829,"Label":"16026-122829 via Ribbon Synapse from 25504 -> 122877, 114646 -> 122873, 114647 -> 122872, 114669 -> 122874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25504,"TargetID":122877,"Directional":true},{"SourceID":114646,"TargetID":122873,"Directional":true},{"SourceID":114647,"TargetID":122872,"Directional":true},{"SourceID":114669,"TargetID":122874,"Directional":true}]},{"ID":12581,"SourceStructureID":16073,"TargetStructureID":289,"Label":"16073-289 via Conventional from 19931 -> 30003","Type":"Conventional","Directional":true,"Links":[{"SourceID":19931,"TargetID":30003,"Directional":true}]},{"ID":12582,"SourceStructureID":16073,"TargetStructureID":909,"Label":"16073-909 via Conventional from 32219 -> 32220","Type":"Conventional","Directional":true,"Links":[{"SourceID":32219,"TargetID":32220,"Directional":true}]},{"ID":12583,"SourceStructureID":16073,"TargetStructureID":1021,"Label":"16073-1021 via Conventional from 41264 -> 1617","Type":"Conventional","Directional":true,"Links":[{"SourceID":41264,"TargetID":1617,"Directional":true}]},{"ID":12584,"SourceStructureID":16073,"TargetStructureID":8575,"Label":"16073-8575 via Conventional from 32191 -> 21648","Type":"Conventional","Directional":true,"Links":[{"SourceID":32191,"TargetID":21648,"Directional":true}]},{"ID":12585,"SourceStructureID":16073,"TargetStructureID":15796,"Label":"16073-15796 via Conventional from 19853 -> 19835, 19873 -> 114286, 32218 -> 20120","Type":"Conventional","Directional":true,"Links":[{"SourceID":19853,"TargetID":19835,"Directional":true},{"SourceID":19873,"TargetID":114286,"Directional":true},{"SourceID":32218,"TargetID":20120,"Directional":true}]},{"ID":12586,"SourceStructureID":16073,"TargetStructureID":20136,"Label":"16073-20136 via Conventional from 108504 -> 108505","Type":"Conventional","Directional":true,"Links":[{"SourceID":108504,"TargetID":108505,"Directional":true}]},{"ID":12587,"SourceStructureID":16446,"TargetStructureID":410,"Label":"16446-410 via Ribbon Synapse from 16461 -> 8375, 16463 -> 8379, 18850 -> 18849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16461,"TargetID":8375,"Directional":true},{"SourceID":16463,"TargetID":8379,"Directional":true},{"SourceID":18850,"TargetID":18849,"Directional":true}]},{"ID":12588,"SourceStructureID":16446,"TargetStructureID":476,"Label":"16446-476 via Ribbon Synapse from 16461 -> 16478, 16464 -> 2390, 16466 -> 16467, 16472 -> 19064, 16477 -> 16476, 16484 -> 16482, 16485 -> 16486, 16492 -> 16493, 16496 -> 16495, 16499 -> 16498, 16625 -> 2352, 19071 -> 19073, 19082 -> 10441","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16461,"TargetID":16478,"Directional":true},{"SourceID":16464,"TargetID":2390,"Directional":true},{"SourceID":16466,"TargetID":16467,"Directional":true},{"SourceID":16472,"TargetID":19064,"Directional":true},{"SourceID":16477,"TargetID":16476,"Directional":true},{"SourceID":16484,"TargetID":16482,"Directional":true},{"SourceID":16485,"TargetID":16486,"Directional":true},{"SourceID":16492,"TargetID":16493,"Directional":true},{"SourceID":16496,"TargetID":16495,"Directional":true},{"SourceID":16499,"TargetID":16498,"Directional":true},{"SourceID":16625,"TargetID":2352,"Directional":true},{"SourceID":19071,"TargetID":19073,"Directional":true},{"SourceID":19082,"TargetID":10441,"Directional":true}]},{"ID":12589,"SourceStructureID":16446,"TargetStructureID":6153,"Label":"16446-6153 via Ribbon Synapse from 16623 -> 8417, 18851 -> 8412","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16623,"TargetID":8417,"Directional":true},{"SourceID":18851,"TargetID":8412,"Directional":true}]},{"ID":12590,"SourceStructureID":16446,"TargetStructureID":34295,"Label":"16446-34295 via Ribbon Synapse from 16477 -> 34298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16477,"TargetID":34298,"Directional":true}]},{"ID":12591,"SourceStructureID":16940,"TargetStructureID":1620,"Label":"16940-1620 via Ribbon Synapse from 16951 -> 16935, 16952 -> 16934, 16953 -> 16931","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16951,"TargetID":16935,"Directional":true},{"SourceID":16952,"TargetID":16934,"Directional":true},{"SourceID":16953,"TargetID":16931,"Directional":true}]},{"ID":12592,"SourceStructureID":16940,"TargetStructureID":5497,"Label":"16940-5497 via Ribbon Synapse from 16948 -> 62613","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":16948,"TargetID":62613,"Directional":true}]},{"ID":12593,"SourceStructureID":16940,"TargetStructureID":63628,"Label":"16940-63628 via Ribbon Synapse from 63693 -> 63634, 63698 -> 63696, 63703 -> 68718","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63693,"TargetID":63634,"Directional":true},{"SourceID":63698,"TargetID":63696,"Directional":true},{"SourceID":63703,"TargetID":68718,"Directional":true}]},{"ID":12594,"SourceStructureID":17183,"TargetStructureID":304,"Label":"17183-304 via Ribbon Synapse from 17185 -> 17186, 17191 -> 17190, 17203 -> 17202, 17205 -> 17204, 17650 -> 17651, 17652 -> 17653, 17654 -> 17655, 18360 -> 18359, 18853 -> 17287, 127856 -> 127857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17185,"TargetID":17186,"Directional":true},{"SourceID":17191,"TargetID":17190,"Directional":true},{"SourceID":17203,"TargetID":17202,"Directional":true},{"SourceID":17205,"TargetID":17204,"Directional":true},{"SourceID":17650,"TargetID":17651,"Directional":true},{"SourceID":17652,"TargetID":17653,"Directional":true},{"SourceID":17654,"TargetID":17655,"Directional":true},{"SourceID":18360,"TargetID":18359,"Directional":true},{"SourceID":18853,"TargetID":17287,"Directional":true},{"SourceID":127856,"TargetID":127857,"Directional":true}]},{"ID":12595,"SourceStructureID":17183,"TargetStructureID":573,"Label":"17183-573 via Ribbon Synapse from 18356 -> 18355, 19089 -> 19090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":18356,"TargetID":18355,"Directional":true},{"SourceID":19089,"TargetID":19090,"Directional":true}]},{"ID":12596,"SourceStructureID":17183,"TargetStructureID":2610,"Label":"17183-2610 via Ribbon Synapse from 17196 -> 2983, 17197 -> 2996, 18416 -> 18415, 19101 -> 19102, 19103 -> 19104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17196,"TargetID":2983,"Directional":true},{"SourceID":17197,"TargetID":2996,"Directional":true},{"SourceID":18416,"TargetID":18415,"Directional":true},{"SourceID":19101,"TargetID":19102,"Directional":true},{"SourceID":19103,"TargetID":19104,"Directional":true}]},{"ID":12597,"SourceStructureID":17228,"TargetStructureID":304,"Label":"17228-304 via Ribbon Synapse from 19185 -> 20757, 19186 -> 20755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19185,"TargetID":20757,"Directional":true},{"SourceID":19186,"TargetID":20755,"Directional":true}]},{"ID":12598,"SourceStructureID":17228,"TargetStructureID":308,"Label":"17228-308 via Ribbon Synapse from 19184 -> 43547, 19190 -> 43528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19184,"TargetID":43547,"Directional":true},{"SourceID":19190,"TargetID":43528,"Directional":true}]},{"ID":12599,"SourceStructureID":17228,"TargetStructureID":573,"Label":"17228-573 via Ribbon Synapse from 19184 -> 43542, 19192 -> 18352","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19184,"TargetID":43542,"Directional":true},{"SourceID":19192,"TargetID":18352,"Directional":true}]},{"ID":12600,"SourceStructureID":17228,"TargetStructureID":2610,"Label":"17228-2610 via Ribbon Synapse from 17916 -> 17917, 19169 -> 66183, 19174 -> 19175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17916,"TargetID":17917,"Directional":true},{"SourceID":19169,"TargetID":66183,"Directional":true},{"SourceID":19174,"TargetID":19175,"Directional":true}]},{"ID":12601,"SourceStructureID":17228,"TargetStructureID":61214,"Label":"17228-61214 via Ribbon Synapse from 17263 -> 61224, 19201 -> 61219","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17263,"TargetID":61224,"Directional":true},{"SourceID":19201,"TargetID":61219,"Directional":true}]},{"ID":12602,"SourceStructureID":17533,"TargetStructureID":410,"Label":"17533-410 via Ribbon Synapse from 17538 -> 17539, 17540 -> 17541, 17543 -> 17542, 17545 -> 17544, 17547 -> 17548, 17552 -> 17551, 17798 -> 17795, 17799 -> 17794, 17805 -> 17804","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":17538,"TargetID":17539,"Directional":true},{"SourceID":17540,"TargetID":17541,"Directional":true},{"SourceID":17543,"TargetID":17542,"Directional":true},{"SourceID":17545,"TargetID":17544,"Directional":true},{"SourceID":17547,"TargetID":17548,"Directional":true},{"SourceID":17552,"TargetID":17551,"Directional":true},{"SourceID":17798,"TargetID":17795,"Directional":true},{"SourceID":17799,"TargetID":17794,"Directional":true},{"SourceID":17805,"TargetID":17804,"Directional":true}]},{"ID":12603,"SourceStructureID":18150,"TargetStructureID":9787,"Label":"18150-9787 via Conventional from 18151 -> 18147","Type":"Conventional","Directional":true,"Links":[{"SourceID":18151,"TargetID":18147,"Directional":true}]},{"ID":12604,"SourceStructureID":18282,"TargetStructureID":166,"Label":"18282-166 via Conventional from 18320 -> 18321, 84792 -> 84787","Type":"Conventional","Directional":true,"Links":[{"SourceID":18320,"TargetID":18321,"Directional":true},{"SourceID":84792,"TargetID":84787,"Directional":true}]},{"ID":12605,"SourceStructureID":18282,"TargetStructureID":268,"Label":"18282-268 via Conventional from 38868 -> 43464, 38869 -> 43461","Type":"Conventional","Directional":true,"Links":[{"SourceID":38868,"TargetID":43464,"Directional":true},{"SourceID":38869,"TargetID":43461,"Directional":true}]},{"ID":12606,"SourceStructureID":18282,"TargetStructureID":286,"Label":"18282-286 via Conventional from 20500 -> 20501, 38852 -> 38859","Type":"Conventional","Directional":true,"Links":[{"SourceID":20500,"TargetID":20501,"Directional":true},{"SourceID":38852,"TargetID":38859,"Directional":true}]},{"ID":12607,"SourceStructureID":18282,"TargetStructureID":332,"Label":"18282-332 via Conventional from 38864 -> 25204","Type":"Conventional","Directional":true,"Links":[{"SourceID":38864,"TargetID":25204,"Directional":true}]},{"ID":12608,"SourceStructureID":18282,"TargetStructureID":461,"Label":"18282-461 via Conventional from 20399 -> 14666, 29232 -> 29236","Type":"Conventional","Directional":true,"Links":[{"SourceID":20399,"TargetID":14666,"Directional":true},{"SourceID":29232,"TargetID":29236,"Directional":true}]},{"ID":12609,"SourceStructureID":18282,"TargetStructureID":483,"Label":"18282-483 via Conventional from 20390 -> 51184, 29194 -> 6739, 71185 -> 71186","Type":"Conventional","Directional":true,"Links":[{"SourceID":20390,"TargetID":51184,"Directional":true},{"SourceID":29194,"TargetID":6739,"Directional":true},{"SourceID":71185,"TargetID":71186,"Directional":true}]},{"ID":12610,"SourceStructureID":18282,"TargetStructureID":485,"Label":"18282-485 via Conventional from 18293 -> 18297, 18294 -> 43485, 18298 -> 18299, 18306 -> 49176, 18308 -> 102013, 20333 -> 29193, 20412 -> 120430, 29181 -> 101089, 31411 -> 43489","Type":"Conventional","Directional":true,"Links":[{"SourceID":18293,"TargetID":18297,"Directional":true},{"SourceID":18294,"TargetID":43485,"Directional":true},{"SourceID":18298,"TargetID":18299,"Directional":true},{"SourceID":18306,"TargetID":49176,"Directional":true},{"SourceID":18308,"TargetID":102013,"Directional":true},{"SourceID":20333,"TargetID":29193,"Directional":true},{"SourceID":20412,"TargetID":120430,"Directional":true},{"SourceID":29181,"TargetID":101089,"Directional":true},{"SourceID":31411,"TargetID":43489,"Directional":true}]},{"ID":12611,"SourceStructureID":18282,"TargetStructureID":593,"Label":"18282-593 via Conventional from 18315 -> 50445","Type":"Conventional","Directional":true,"Links":[{"SourceID":18315,"TargetID":50445,"Directional":true}]},{"ID":12612,"SourceStructureID":18282,"TargetStructureID":5562,"Label":"18282-5562 via Conventional from 31442 -> 31444","Type":"Conventional","Directional":true,"Links":[{"SourceID":31442,"TargetID":31444,"Directional":true}]},{"ID":12613,"SourceStructureID":18282,"TargetStructureID":5916,"Label":"18282-5916 via Conventional from 31450 -> 38844","Type":"Conventional","Directional":true,"Links":[{"SourceID":31450,"TargetID":38844,"Directional":true}]},{"ID":12614,"SourceStructureID":18282,"TargetStructureID":6115,"Label":"18282-6115 via Conventional from 20420 -> 20431, 72711 -> 72710, 129083 -> 75554","Type":"Conventional","Directional":true,"Links":[{"SourceID":20420,"TargetID":20431,"Directional":true},{"SourceID":72711,"TargetID":72710,"Directional":true},{"SourceID":129083,"TargetID":75554,"Directional":true}]},{"ID":12615,"SourceStructureID":18282,"TargetStructureID":6997,"Label":"18282-6997 via Conventional from 31412 -> 22124, 31415 -> 31422, 31424 -> 31434","Type":"Conventional","Directional":true,"Links":[{"SourceID":31412,"TargetID":22124,"Directional":true},{"SourceID":31415,"TargetID":31422,"Directional":true},{"SourceID":31424,"TargetID":31434,"Directional":true}]},{"ID":12616,"SourceStructureID":18282,"TargetStructureID":31430,"Label":"18282-31430 via Conventional from 31423 -> 31432","Type":"Conventional","Directional":true,"Links":[{"SourceID":31423,"TargetID":31432,"Directional":true}]},{"ID":12617,"SourceStructureID":18282,"TargetStructureID":38848,"Label":"18282-38848 via Conventional from 31454 -> 38849","Type":"Conventional","Directional":true,"Links":[{"SourceID":31454,"TargetID":38849,"Directional":true}]},{"ID":12618,"SourceStructureID":18282,"TargetStructureID":61960,"Label":"18282-61960 via Conventional from 18313 -> 81445, 29179 -> 69696","Type":"Conventional","Directional":true,"Links":[{"SourceID":18313,"TargetID":81445,"Directional":true},{"SourceID":29179,"TargetID":69696,"Directional":true}]},{"ID":12619,"SourceStructureID":18471,"TargetStructureID":18472,"Label":"18471-18472 via Conventional from 18474 -> 18475","Type":"Conventional","Directional":true,"Links":[{"SourceID":18474,"TargetID":18475,"Directional":true}]},{"ID":12620,"SourceStructureID":18576,"TargetStructureID":419,"Label":"18576-419 via Conventional from 100465 -> 10124","Type":"Conventional","Directional":true,"Links":[{"SourceID":100465,"TargetID":10124,"Directional":true}]},{"ID":12621,"SourceStructureID":18576,"TargetStructureID":514,"Label":"18576-514 via Conventional from 18582 -> 18581","Type":"Conventional","Directional":true,"Links":[{"SourceID":18582,"TargetID":18581,"Directional":true}]},{"ID":12622,"SourceStructureID":18576,"TargetStructureID":519,"Label":"18576-519 via Conventional from 18580 -> 18579","Type":"Conventional","Directional":true,"Links":[{"SourceID":18580,"TargetID":18579,"Directional":true}]},{"ID":12623,"SourceStructureID":18576,"TargetStructureID":6857,"Label":"18576-6857 via Conventional from 36328 -> 6862","Type":"Conventional","Directional":true,"Links":[{"SourceID":36328,"TargetID":6862,"Directional":true}]},{"ID":12624,"SourceStructureID":18693,"TargetStructureID":64774,"Label":"18693-64774 via Conventional from 64773 -> 64775","Type":"Conventional","Directional":true,"Links":[{"SourceID":64773,"TargetID":64775,"Directional":true}]},{"ID":12625,"SourceStructureID":18693,"TargetStructureID":64777,"Label":"18693-64777 via Conventional from 64720 -> 64778","Type":"Conventional","Directional":true,"Links":[{"SourceID":64720,"TargetID":64778,"Directional":true}]},{"ID":12626,"SourceStructureID":19203,"TargetStructureID":389,"Label":"19203-389 via Ribbon Synapse from 62114 -> 62117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62114,"TargetID":62117,"Directional":true}]},{"ID":12627,"SourceStructureID":19203,"TargetStructureID":598,"Label":"19203-598 via Ribbon Synapse from 22889 -> 38535","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22889,"TargetID":38535,"Directional":true}]},{"ID":12628,"SourceStructureID":19203,"TargetStructureID":5345,"Label":"19203-5345 via Ribbon Synapse from 19321 -> 22837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19321,"TargetID":22837,"Directional":true}]},{"ID":12629,"SourceStructureID":19203,"TargetStructureID":5497,"Label":"19203-5497 via Ribbon Synapse from 21747 -> 21742, 22894 -> 21736, 22896 -> 22897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21747,"TargetID":21742,"Directional":true},{"SourceID":22894,"TargetID":21736,"Directional":true},{"SourceID":22896,"TargetID":22897,"Directional":true}]},{"ID":12630,"SourceStructureID":19203,"TargetStructureID":8575,"Label":"19203-8575 via BC Conventional Synapse from 62431 -> 61549","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62431,"TargetID":61549,"Directional":true}]},{"ID":12631,"SourceStructureID":19203,"TargetStructureID":8575,"Label":"19203-8575 via Ribbon Synapse from 22877 -> 21731, 22942 -> 21733, 62108 -> 62105, 63610 -> 62102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":22877,"TargetID":21731,"Directional":true},{"SourceID":22942,"TargetID":21733,"Directional":true},{"SourceID":62108,"TargetID":62105,"Directional":true},{"SourceID":63610,"TargetID":62102,"Directional":true}]},{"ID":12632,"SourceStructureID":19203,"TargetStructureID":18693,"Label":"19203-18693 via Ribbon Synapse from 19313 -> 18701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":19313,"TargetID":18701,"Directional":true}]},{"ID":12633,"SourceStructureID":19203,"TargetStructureID":62120,"Label":"19203-62120 via Ribbon Synapse from 62114 -> 62123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62114,"TargetID":62123,"Directional":true}]},{"ID":12634,"SourceStructureID":19351,"TargetStructureID":6131,"Label":"19351-6131 via Conventional from 37312 -> 37311","Type":"Conventional","Directional":true,"Links":[{"SourceID":37312,"TargetID":37311,"Directional":true}]},{"ID":12635,"SourceStructureID":19362,"TargetStructureID":5457,"Label":"19362-5457 via Conventional from 23435 -> 103140, 23461 -> 15341","Type":"Conventional","Directional":true,"Links":[{"SourceID":23435,"TargetID":103140,"Directional":true},{"SourceID":23461,"TargetID":15341,"Directional":true}]},{"ID":12636,"SourceStructureID":19362,"TargetStructureID":5458,"Label":"19362-5458 via Conventional from 23424 -> 23425","Type":"Conventional","Directional":true,"Links":[{"SourceID":23424,"TargetID":23425,"Directional":true}]},{"ID":12637,"SourceStructureID":19362,"TargetStructureID":5536,"Label":"19362-5536 via Conventional from 23423 -> 22690","Type":"Conventional","Directional":true,"Links":[{"SourceID":23423,"TargetID":22690,"Directional":true}]},{"ID":12638,"SourceStructureID":19362,"TargetStructureID":7188,"Label":"19362-7188 via Conventional from 23454 -> 7195","Type":"Conventional","Directional":true,"Links":[{"SourceID":23454,"TargetID":7195,"Directional":true}]},{"ID":12639,"SourceStructureID":19362,"TargetStructureID":7225,"Label":"19362-7225 via Conventional from 23438 -> 23444","Type":"Conventional","Directional":true,"Links":[{"SourceID":23438,"TargetID":23444,"Directional":true}]},{"ID":12640,"SourceStructureID":19383,"TargetStructureID":5541,"Label":"19383-5541 via Conventional from 33205 -> 33204, 33207 -> 33206","Type":"Conventional","Directional":true,"Links":[{"SourceID":33205,"TargetID":33204,"Directional":true},{"SourceID":33207,"TargetID":33206,"Directional":true}]},{"ID":12641,"SourceStructureID":19571,"TargetStructureID":5452,"Label":"19571-5452 via Conventional from 22724 -> 23692","Type":"Conventional","Directional":true,"Links":[{"SourceID":22724,"TargetID":23692,"Directional":true}]},{"ID":12642,"SourceStructureID":19571,"TargetStructureID":5536,"Label":"19571-5536 via Conventional from 22713 -> 22696","Type":"Conventional","Directional":true,"Links":[{"SourceID":22713,"TargetID":22696,"Directional":true}]},{"ID":12643,"SourceStructureID":19571,"TargetStructureID":5539,"Label":"19571-5539 via Conventional from 22720 -> 22631","Type":"Conventional","Directional":true,"Links":[{"SourceID":22720,"TargetID":22631,"Directional":true}]},{"ID":12644,"SourceStructureID":19571,"TargetStructureID":19362,"Label":"19571-19362 via Conventional from 22762 -> 23440, 23451 -> 23450","Type":"Conventional","Directional":true,"Links":[{"SourceID":22762,"TargetID":23440,"Directional":true},{"SourceID":23451,"TargetID":23450,"Directional":true}]},{"ID":12645,"SourceStructureID":19572,"TargetStructureID":5539,"Label":"19572-5539 via Conventional from 22624 -> 22792, 22626 -> 9814","Type":"Conventional","Directional":true,"Links":[{"SourceID":22624,"TargetID":22792,"Directional":true},{"SourceID":22626,"TargetID":9814,"Directional":true}]},{"ID":12646,"SourceStructureID":20136,"TargetStructureID":162,"Label":"20136-162 via Ribbon Synapse from 29137 -> 70265, 29141 -> 109301","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29137,"TargetID":70265,"Directional":true},{"SourceID":29141,"TargetID":109301,"Directional":true}]},{"ID":12647,"SourceStructureID":20136,"TargetStructureID":492,"Label":"20136-492 via Ribbon Synapse from 30655 -> 109850, 109838 -> 109837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30655,"TargetID":109850,"Directional":true},{"SourceID":109838,"TargetID":109837,"Directional":true}]},{"ID":12648,"SourceStructureID":20136,"TargetStructureID":598,"Label":"20136-598 via Ribbon Synapse from 46000 -> 6320","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46000,"TargetID":6320,"Directional":true}]},{"ID":12649,"SourceStructureID":20136,"TargetStructureID":5377,"Label":"20136-5377 via Ribbon Synapse from 69862 -> 108969, 87025 -> 87026, 108966 -> 108967","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69862,"TargetID":108969,"Directional":true},{"SourceID":87025,"TargetID":87026,"Directional":true},{"SourceID":108966,"TargetID":108967,"Directional":true}]},{"ID":12650,"SourceStructureID":20136,"TargetStructureID":5435,"Label":"20136-5435 via Ribbon Synapse from 127744 -> 135515","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127744,"TargetID":135515,"Directional":true}]},{"ID":12651,"SourceStructureID":20136,"TargetStructureID":7594,"Label":"20136-7594 via Ribbon Synapse from 25107 -> 25106, 29141 -> 29142","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25107,"TargetID":25106,"Directional":true},{"SourceID":29141,"TargetID":29142,"Directional":true}]},{"ID":12652,"SourceStructureID":20136,"TargetStructureID":15796,"Label":"20136-15796 via BC Conventional Synapse from 97845 -> 97844","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97845,"TargetID":97844,"Directional":true}]},{"ID":12653,"SourceStructureID":20136,"TargetStructureID":15796,"Label":"20136-15796 via Ribbon Synapse from 20149 -> 15845, 45995 -> 108492, 69861 -> 20117, 130475 -> 130474, 130481 -> 20123","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20149,"TargetID":15845,"Directional":true},{"SourceID":45995,"TargetID":108492,"Directional":true},{"SourceID":69861,"TargetID":20117,"Directional":true},{"SourceID":130475,"TargetID":130474,"Directional":true},{"SourceID":130481,"TargetID":20123,"Directional":true}]},{"ID":12654,"SourceStructureID":20136,"TargetStructureID":16073,"Label":"20136-16073 via BC Conventional Synapse from 108471 -> 108472","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108471,"TargetID":108472,"Directional":true}]},{"ID":12655,"SourceStructureID":20136,"TargetStructureID":16073,"Label":"20136-16073 via Ribbon Synapse from 69862 -> 23442, 130479 -> 130480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69862,"TargetID":23442,"Directional":true},{"SourceID":130479,"TargetID":130480,"Directional":true}]},{"ID":12656,"SourceStructureID":20136,"TargetStructureID":30567,"Label":"20136-30567 via Ribbon Synapse from 30655 -> 109848","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30655,"TargetID":109848,"Directional":true}]},{"ID":12657,"SourceStructureID":20136,"TargetStructureID":38502,"Label":"20136-38502 via Ribbon Synapse from 29127 -> 38508","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29127,"TargetID":38508,"Directional":true}]},{"ID":12658,"SourceStructureID":20136,"TargetStructureID":40018,"Label":"20136-40018 via Ribbon Synapse from 110350 -> 110351","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110350,"TargetID":110351,"Directional":true}]},{"ID":12659,"SourceStructureID":20136,"TargetStructureID":53399,"Label":"20136-53399 via Ribbon Synapse from 29136 -> 53400","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29136,"TargetID":53400,"Directional":true}]},{"ID":12660,"SourceStructureID":20136,"TargetStructureID":54006,"Label":"20136-54006 via Ribbon Synapse from 20146 -> 109049, 20147 -> 109060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20146,"TargetID":109049,"Directional":true},{"SourceID":20147,"TargetID":109060,"Directional":true}]},{"ID":12661,"SourceStructureID":20136,"TargetStructureID":55403,"Label":"20136-55403 via Ribbon Synapse from 119289 -> 55503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119289,"TargetID":55503,"Directional":true}]},{"ID":12662,"SourceStructureID":20136,"TargetStructureID":59145,"Label":"20136-59145 via BC Conventional Synapse from 20138 -> 59152","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":20138,"TargetID":59152,"Directional":true}]},{"ID":12663,"SourceStructureID":20136,"TargetStructureID":67663,"Label":"20136-67663 via Ribbon Synapse from 69864 -> 108981, 70044 -> 70043","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69864,"TargetID":108981,"Directional":true},{"SourceID":70044,"TargetID":70043,"Directional":true}]},{"ID":12664,"SourceStructureID":20136,"TargetStructureID":68277,"Label":"20136-68277 via Ribbon Synapse from 109894 -> 109897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109894,"TargetID":109897,"Directional":true}]},{"ID":12665,"SourceStructureID":20136,"TargetStructureID":69162,"Label":"20136-69162 via Ribbon Synapse from 46031 -> 109228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46031,"TargetID":109228,"Directional":true}]},{"ID":12666,"SourceStructureID":20136,"TargetStructureID":83949,"Label":"20136-83949 via BC Conventional Synapse from 109087 -> 109089","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109087,"TargetID":109089,"Directional":true}]},{"ID":12667,"SourceStructureID":20136,"TargetStructureID":83949,"Label":"20136-83949 via Ribbon Synapse from 20146 -> 109048","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20146,"TargetID":109048,"Directional":true}]},{"ID":12668,"SourceStructureID":20136,"TargetStructureID":83954,"Label":"20136-83954 via Ribbon Synapse from 109092 -> 109091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109092,"TargetID":109091,"Directional":true}]},{"ID":12669,"SourceStructureID":20136,"TargetStructureID":84148,"Label":"20136-84148 via BC Conventional Synapse from 84147 -> 84149","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84147,"TargetID":84149,"Directional":true}]},{"ID":12670,"SourceStructureID":20136,"TargetStructureID":84193,"Label":"20136-84193 via BC Conventional Synapse from 109172 -> 109173","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109172,"TargetID":109173,"Directional":true}]},{"ID":12671,"SourceStructureID":20136,"TargetStructureID":88199,"Label":"20136-88199 via Ribbon Synapse from 110350 -> 110349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110350,"TargetID":110349,"Directional":true}]},{"ID":12672,"SourceStructureID":20136,"TargetStructureID":97691,"Label":"20136-97691 via Ribbon Synapse from 119296 -> 119297, 119301 -> 119302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119296,"TargetID":119297,"Directional":true},{"SourceID":119301,"TargetID":119302,"Directional":true}]},{"ID":12673,"SourceStructureID":20136,"TargetStructureID":103987,"Label":"20136-103987 via Ribbon Synapse from 108875 -> 108879","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108875,"TargetID":108879,"Directional":true}]},{"ID":12674,"SourceStructureID":20136,"TargetStructureID":108398,"Label":"20136-108398 via Ribbon Synapse from 108412 -> 108413","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108412,"TargetID":108413,"Directional":true}]},{"ID":12675,"SourceStructureID":20136,"TargetStructureID":108421,"Label":"20136-108421 via BC Conventional Synapse from 108440 -> 108425","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108440,"TargetID":108425,"Directional":true}]},{"ID":12676,"SourceStructureID":20136,"TargetStructureID":108448,"Label":"20136-108448 via Ribbon Synapse from 45993 -> 108455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45993,"TargetID":108455,"Directional":true}]},{"ID":12677,"SourceStructureID":20136,"TargetStructureID":108469,"Label":"20136-108469 via BC Conventional Synapse from 108471 -> 108474","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108471,"TargetID":108474,"Directional":true}]},{"ID":12678,"SourceStructureID":20136,"TargetStructureID":108487,"Label":"20136-108487 via Ribbon Synapse from 45995 -> 108490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45995,"TargetID":108490,"Directional":true}]},{"ID":12679,"SourceStructureID":20136,"TargetStructureID":108500,"Label":"20136-108500 via Ribbon Synapse from 108479 -> 108503","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108479,"TargetID":108503,"Directional":true}]},{"ID":12680,"SourceStructureID":20136,"TargetStructureID":108766,"Label":"20136-108766 via Ribbon Synapse from 108765 -> 108767","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108765,"TargetID":108767,"Directional":true}]},{"ID":12681,"SourceStructureID":20136,"TargetStructureID":108768,"Label":"20136-108768 via Ribbon Synapse from 108765 -> 108769","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108765,"TargetID":108769,"Directional":true}]},{"ID":12682,"SourceStructureID":20136,"TargetStructureID":108800,"Label":"20136-108800 via Ribbon Synapse from 108805 -> 108806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108805,"TargetID":108806,"Directional":true}]},{"ID":12683,"SourceStructureID":20136,"TargetStructureID":108804,"Label":"20136-108804 via Ribbon Synapse from 108805 -> 108809","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108805,"TargetID":108809,"Directional":true}]},{"ID":12684,"SourceStructureID":20136,"TargetStructureID":108818,"Label":"20136-108818 via Ribbon Synapse from 129604 -> 129605","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129604,"TargetID":129605,"Directional":true}]},{"ID":12685,"SourceStructureID":20136,"TargetStructureID":108825,"Label":"20136-108825 via Ribbon Synapse from 108834 -> 108837","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108834,"TargetID":108837,"Directional":true}]},{"ID":12686,"SourceStructureID":20136,"TargetStructureID":108835,"Label":"20136-108835 via Ribbon Synapse from 108834 -> 108836","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108834,"TargetID":108836,"Directional":true}]},{"ID":12687,"SourceStructureID":20136,"TargetStructureID":108845,"Label":"20136-108845 via Ribbon Synapse from 108832 -> 108848","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108832,"TargetID":108848,"Directional":true}]},{"ID":12688,"SourceStructureID":20136,"TargetStructureID":108846,"Label":"20136-108846 via Ribbon Synapse from 108832 -> 108847","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108832,"TargetID":108847,"Directional":true}]},{"ID":12689,"SourceStructureID":20136,"TargetStructureID":108861,"Label":"20136-108861 via Ribbon Synapse from 108860 -> 108862, 108884 -> 108898","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108860,"TargetID":108862,"Directional":true},{"SourceID":108884,"TargetID":108898,"Directional":true}]},{"ID":12690,"SourceStructureID":20136,"TargetStructureID":108881,"Label":"20136-108881 via Ribbon Synapse from 108875 -> 108882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108875,"TargetID":108882,"Directional":true}]},{"ID":12691,"SourceStructureID":20136,"TargetStructureID":108883,"Label":"20136-108883 via Ribbon Synapse from 108884 -> 108886","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108884,"TargetID":108886,"Directional":true}]},{"ID":12692,"SourceStructureID":20136,"TargetStructureID":108890,"Label":"20136-108890 via Ribbon Synapse from 108888 -> 108892","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108888,"TargetID":108892,"Directional":true}]},{"ID":12693,"SourceStructureID":20136,"TargetStructureID":108893,"Label":"20136-108893 via Ribbon Synapse from 108888 -> 108896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108888,"TargetID":108896,"Directional":true}]},{"ID":12694,"SourceStructureID":20136,"TargetStructureID":108937,"Label":"20136-108937 via Ribbon Synapse from 69864 -> 108979","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69864,"TargetID":108979,"Directional":true}]},{"ID":12695,"SourceStructureID":20136,"TargetStructureID":108949,"Label":"20136-108949 via Ribbon Synapse from 87025 -> 108950, 108951 -> 108952","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87025,"TargetID":108950,"Directional":true},{"SourceID":108951,"TargetID":108952,"Directional":true}]},{"ID":12696,"SourceStructureID":20136,"TargetStructureID":108953,"Label":"20136-108953 via Ribbon Synapse from 108951 -> 108954","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108951,"TargetID":108954,"Directional":true}]},{"ID":12697,"SourceStructureID":20136,"TargetStructureID":108955,"Label":"20136-108955 via Ribbon Synapse from 69862 -> 108968, 108951 -> 108956","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69862,"TargetID":108968,"Directional":true},{"SourceID":108951,"TargetID":108956,"Directional":true}]},{"ID":12698,"SourceStructureID":20136,"TargetStructureID":108959,"Label":"20136-108959 via BC Conventional Synapse from 108961 -> 108960","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108961,"TargetID":108960,"Directional":true}]},{"ID":12699,"SourceStructureID":20136,"TargetStructureID":108970,"Label":"20136-108970 via Ribbon Synapse from 108966 -> 108971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108966,"TargetID":108971,"Directional":true}]},{"ID":12700,"SourceStructureID":20136,"TargetStructureID":108972,"Label":"20136-108972 via Ribbon Synapse from 69861 -> 108973, 69861 -> 108974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69861,"TargetID":108973,"Directional":true},{"SourceID":69861,"TargetID":108974,"Directional":true}]},{"ID":12701,"SourceStructureID":20136,"TargetStructureID":108986,"Label":"20136-108986 via BC Conventional Synapse from 108985 -> 108987","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":108985,"TargetID":108987,"Directional":true}]},{"ID":12702,"SourceStructureID":20136,"TargetStructureID":108988,"Label":"20136-108988 via Ribbon Synapse from 45996 -> 108989","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45996,"TargetID":108989,"Directional":true}]},{"ID":12703,"SourceStructureID":20136,"TargetStructureID":108991,"Label":"20136-108991 via Ribbon Synapse from 45996 -> 108992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45996,"TargetID":108992,"Directional":true}]},{"ID":12704,"SourceStructureID":20136,"TargetStructureID":108993,"Label":"20136-108993 via Ribbon Synapse from 46003 -> 108994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46003,"TargetID":108994,"Directional":true}]},{"ID":12705,"SourceStructureID":20136,"TargetStructureID":108999,"Label":"20136-108999 via Ribbon Synapse from 108998 -> 109000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108998,"TargetID":109000,"Directional":true}]},{"ID":12706,"SourceStructureID":20136,"TargetStructureID":109007,"Label":"20136-109007 via Ribbon Synapse from 109006 -> 109008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109006,"TargetID":109008,"Directional":true}]},{"ID":12707,"SourceStructureID":20136,"TargetStructureID":109012,"Label":"20136-109012 via Ribbon Synapse from 109009 -> 109013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109009,"TargetID":109013,"Directional":true}]},{"ID":12708,"SourceStructureID":20136,"TargetStructureID":109014,"Label":"20136-109014 via Ribbon Synapse from 109009 -> 109015","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109009,"TargetID":109015,"Directional":true}]},{"ID":12709,"SourceStructureID":20136,"TargetStructureID":109016,"Label":"20136-109016 via Ribbon Synapse from 46003 -> 109017, 46004 -> 109018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46003,"TargetID":109017,"Directional":true},{"SourceID":46004,"TargetID":109018,"Directional":true}]},{"ID":12710,"SourceStructureID":20136,"TargetStructureID":109019,"Label":"20136-109019 via Ribbon Synapse from 46005 -> 109020","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46005,"TargetID":109020,"Directional":true}]},{"ID":12711,"SourceStructureID":20136,"TargetStructureID":109021,"Label":"20136-109021 via Ribbon Synapse from 46005 -> 109022","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46005,"TargetID":109022,"Directional":true}]},{"ID":12712,"SourceStructureID":20136,"TargetStructureID":109027,"Label":"20136-109027 via Ribbon Synapse from 46008 -> 109028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46008,"TargetID":109028,"Directional":true}]},{"ID":12713,"SourceStructureID":20136,"TargetStructureID":109029,"Label":"20136-109029 via Ribbon Synapse from 109092 -> 109090, 109133 -> 109134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109092,"TargetID":109090,"Directional":true},{"SourceID":109133,"TargetID":109134,"Directional":true}]},{"ID":12714,"SourceStructureID":20136,"TargetStructureID":109030,"Label":"20136-109030 via Ribbon Synapse from 20147 -> 109056","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20147,"TargetID":109056,"Directional":true}]},{"ID":12715,"SourceStructureID":20136,"TargetStructureID":109053,"Label":"20136-109053 via Ribbon Synapse from 20147 -> 109054","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20147,"TargetID":109054,"Directional":true}]},{"ID":12716,"SourceStructureID":20136,"TargetStructureID":109065,"Label":"20136-109065 via Ribbon Synapse from 20149 -> 109066","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":20149,"TargetID":109066,"Directional":true}]},{"ID":12717,"SourceStructureID":20136,"TargetStructureID":109084,"Label":"20136-109084 via BC Conventional Synapse from 109086 -> 109085","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109086,"TargetID":109085,"Directional":true}]},{"ID":12718,"SourceStructureID":20136,"TargetStructureID":109097,"Label":"20136-109097 via Ribbon Synapse from 70044 -> 109098, 109104 -> 109105, 109154 -> 109153","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70044,"TargetID":109098,"Directional":true},{"SourceID":109104,"TargetID":109105,"Directional":true},{"SourceID":109154,"TargetID":109153,"Directional":true}]},{"ID":12719,"SourceStructureID":20136,"TargetStructureID":109106,"Label":"20136-109106 via Ribbon Synapse from 109104 -> 109110","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109104,"TargetID":109110,"Directional":true}]},{"ID":12720,"SourceStructureID":20136,"TargetStructureID":109116,"Label":"20136-109116 via Ribbon Synapse from 46006 -> 109118","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46006,"TargetID":109118,"Directional":true}]},{"ID":12721,"SourceStructureID":20136,"TargetStructureID":109119,"Label":"20136-109119 via Ribbon Synapse from 46006 -> 109120","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46006,"TargetID":109120,"Directional":true}]},{"ID":12722,"SourceStructureID":20136,"TargetStructureID":109126,"Label":"20136-109126 via Ribbon Synapse from 46008 -> 109127","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46008,"TargetID":109127,"Directional":true}]},{"ID":12723,"SourceStructureID":20136,"TargetStructureID":109135,"Label":"20136-109135 via Ribbon Synapse from 109133 -> 109159","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109133,"TargetID":109159,"Directional":true}]},{"ID":12724,"SourceStructureID":20136,"TargetStructureID":109160,"Label":"20136-109160 via Ribbon Synapse from 109161 -> 109162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109161,"TargetID":109162,"Directional":true}]},{"ID":12725,"SourceStructureID":20136,"TargetStructureID":109163,"Label":"20136-109163 via Ribbon Synapse from 109161 -> 109168","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109161,"TargetID":109168,"Directional":true}]},{"ID":12726,"SourceStructureID":20136,"TargetStructureID":109164,"Label":"20136-109164 via Ribbon Synapse from 109161 -> 109165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109161,"TargetID":109165,"Directional":true}]},{"ID":12727,"SourceStructureID":20136,"TargetStructureID":109166,"Label":"20136-109166 via Ribbon Synapse from 109161 -> 109167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109161,"TargetID":109167,"Directional":true}]},{"ID":12728,"SourceStructureID":20136,"TargetStructureID":109184,"Label":"20136-109184 via BC Conventional Synapse from 109188 -> 109187","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109188,"TargetID":109187,"Directional":true}]},{"ID":12729,"SourceStructureID":20136,"TargetStructureID":109210,"Label":"20136-109210 via Ribbon Synapse from 29127 -> 109231, 29132 -> 109235, 29134 -> 109213","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29127,"TargetID":109231,"Directional":true},{"SourceID":29132,"TargetID":109235,"Directional":true},{"SourceID":29134,"TargetID":109213,"Directional":true}]},{"ID":12730,"SourceStructureID":20136,"TargetStructureID":109214,"Label":"20136-109214 via Ribbon Synapse from 29134 -> 109215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29134,"TargetID":109215,"Directional":true}]},{"ID":12731,"SourceStructureID":20136,"TargetStructureID":109226,"Label":"20136-109226 via Ribbon Synapse from 46031 -> 109227","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46031,"TargetID":109227,"Directional":true}]},{"ID":12732,"SourceStructureID":20136,"TargetStructureID":109230,"Label":"20136-109230 via Ribbon Synapse from 29132 -> 109236","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29132,"TargetID":109236,"Directional":true}]},{"ID":12733,"SourceStructureID":20136,"TargetStructureID":109237,"Label":"20136-109237 via Ribbon Synapse from 46030 -> 109238","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46030,"TargetID":109238,"Directional":true}]},{"ID":12734,"SourceStructureID":20136,"TargetStructureID":109243,"Label":"20136-109243 via Ribbon Synapse from 29125 -> 109244","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29125,"TargetID":109244,"Directional":true}]},{"ID":12735,"SourceStructureID":20136,"TargetStructureID":109247,"Label":"20136-109247 via Ribbon Synapse from 96719 -> 109248","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96719,"TargetID":109248,"Directional":true}]},{"ID":12736,"SourceStructureID":20136,"TargetStructureID":109251,"Label":"20136-109251 via Ribbon Synapse from 96718 -> 109253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96718,"TargetID":109253,"Directional":true}]},{"ID":12737,"SourceStructureID":20136,"TargetStructureID":109252,"Label":"20136-109252 via Ribbon Synapse from 96718 -> 109254","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96718,"TargetID":109254,"Directional":true}]},{"ID":12738,"SourceStructureID":20136,"TargetStructureID":109255,"Label":"20136-109255 via Ribbon Synapse from 96719 -> 109256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":96719,"TargetID":109256,"Directional":true}]},{"ID":12739,"SourceStructureID":20136,"TargetStructureID":109257,"Label":"20136-109257 via Ribbon Synapse from 46032 -> 109259","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46032,"TargetID":109259,"Directional":true}]},{"ID":12740,"SourceStructureID":20136,"TargetStructureID":109260,"Label":"20136-109260 via Ribbon Synapse from 46032 -> 109261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46032,"TargetID":109261,"Directional":true}]},{"ID":12741,"SourceStructureID":20136,"TargetStructureID":109267,"Label":"20136-109267 via Ribbon Synapse from 46034 -> 109268","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46034,"TargetID":109268,"Directional":true}]},{"ID":12742,"SourceStructureID":20136,"TargetStructureID":109269,"Label":"20136-109269 via Ribbon Synapse from 46034 -> 109270","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46034,"TargetID":109270,"Directional":true}]},{"ID":12743,"SourceStructureID":20136,"TargetStructureID":109271,"Label":"20136-109271 via Ribbon Synapse from 97851 -> 120514","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97851,"TargetID":120514,"Directional":true}]},{"ID":12744,"SourceStructureID":20136,"TargetStructureID":109274,"Label":"20136-109274 via Ribbon Synapse from 97851 -> 109275","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":97851,"TargetID":109275,"Directional":true}]},{"ID":12745,"SourceStructureID":20136,"TargetStructureID":109287,"Label":"20136-109287 via Ribbon Synapse from 109286 -> 109288","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109286,"TargetID":109288,"Directional":true}]},{"ID":12746,"SourceStructureID":20136,"TargetStructureID":109289,"Label":"20136-109289 via Ribbon Synapse from 109286 -> 109290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109286,"TargetID":109290,"Directional":true}]},{"ID":12747,"SourceStructureID":20136,"TargetStructureID":109291,"Label":"20136-109291 via Ribbon Synapse from 29137 -> 109292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29137,"TargetID":109292,"Directional":true}]},{"ID":12748,"SourceStructureID":20136,"TargetStructureID":109293,"Label":"20136-109293 via Ribbon Synapse from 29140 -> 109294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29140,"TargetID":109294,"Directional":true}]},{"ID":12749,"SourceStructureID":20136,"TargetStructureID":109305,"Label":"20136-109305 via Ribbon Synapse from 29144 -> 109314","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29144,"TargetID":109314,"Directional":true}]},{"ID":12750,"SourceStructureID":20136,"TargetStructureID":109316,"Label":"20136-109316 via Ribbon Synapse from 109315 -> 109317","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109315,"TargetID":109317,"Directional":true}]},{"ID":12751,"SourceStructureID":20136,"TargetStructureID":109318,"Label":"20136-109318 via Ribbon Synapse from 109315 -> 109319","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109315,"TargetID":109319,"Directional":true}]},{"ID":12752,"SourceStructureID":20136,"TargetStructureID":109335,"Label":"20136-109335 via Ribbon Synapse from 29138 -> 109340","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29138,"TargetID":109340,"Directional":true}]},{"ID":12753,"SourceStructureID":20136,"TargetStructureID":109347,"Label":"20136-109347 via Ribbon Synapse from 109346 -> 109348","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109346,"TargetID":109348,"Directional":true}]},{"ID":12754,"SourceStructureID":20136,"TargetStructureID":109417,"Label":"20136-109417 via BC Conventional Synapse from 109416 -> 109418","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109416,"TargetID":109418,"Directional":true}]},{"ID":12755,"SourceStructureID":20136,"TargetStructureID":109420,"Label":"20136-109420 via Ribbon Synapse from 109415 -> 109421","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109415,"TargetID":109421,"Directional":true}]},{"ID":12756,"SourceStructureID":20136,"TargetStructureID":109422,"Label":"20136-109422 via Ribbon Synapse from 109415 -> 109423","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109415,"TargetID":109423,"Directional":true}]},{"ID":12757,"SourceStructureID":20136,"TargetStructureID":109424,"Label":"20136-109424 via Ribbon Synapse from 109415 -> 109425, 109427 -> 109429","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109415,"TargetID":109425,"Directional":true},{"SourceID":109427,"TargetID":109429,"Directional":true}]},{"ID":12758,"SourceStructureID":20136,"TargetStructureID":109430,"Label":"20136-109430 via Ribbon Synapse from 109427 -> 109431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109427,"TargetID":109431,"Directional":true}]},{"ID":12759,"SourceStructureID":20136,"TargetStructureID":109439,"Label":"20136-109439 via Ribbon Synapse from 46025 -> 109443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46025,"TargetID":109443,"Directional":true}]},{"ID":12760,"SourceStructureID":20136,"TargetStructureID":109445,"Label":"20136-109445 via Ribbon Synapse from 46025 -> 109446","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46025,"TargetID":109446,"Directional":true}]},{"ID":12761,"SourceStructureID":20136,"TargetStructureID":109450,"Label":"20136-109450 via Ribbon Synapse from 46026 -> 109455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46026,"TargetID":109455,"Directional":true}]},{"ID":12762,"SourceStructureID":20136,"TargetStructureID":109456,"Label":"20136-109456 via Ribbon Synapse from 46026 -> 109457","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46026,"TargetID":109457,"Directional":true}]},{"ID":12763,"SourceStructureID":20136,"TargetStructureID":109458,"Label":"20136-109458 via Ribbon Synapse from 46026 -> 109471","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46026,"TargetID":109471,"Directional":true}]},{"ID":12764,"SourceStructureID":20136,"TargetStructureID":109468,"Label":"20136-109468 via Ribbon Synapse from 46025 -> 109470","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46025,"TargetID":109470,"Directional":true}]},{"ID":12765,"SourceStructureID":20136,"TargetStructureID":109472,"Label":"20136-109472 via Ribbon Synapse from 46024 -> 109474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46024,"TargetID":109474,"Directional":true}]},{"ID":12766,"SourceStructureID":20136,"TargetStructureID":109479,"Label":"20136-109479 via Ribbon Synapse from 46024 -> 109480","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46024,"TargetID":109480,"Directional":true}]},{"ID":12767,"SourceStructureID":20136,"TargetStructureID":109488,"Label":"20136-109488 via Ribbon Synapse from 109489 -> 109490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109489,"TargetID":109490,"Directional":true}]},{"ID":12768,"SourceStructureID":20136,"TargetStructureID":109491,"Label":"20136-109491 via Ribbon Synapse from 109489 -> 109494","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109489,"TargetID":109494,"Directional":true}]},{"ID":12769,"SourceStructureID":20136,"TargetStructureID":109497,"Label":"20136-109497 via Ribbon Synapse from 109503 -> 109506","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109503,"TargetID":109506,"Directional":true}]},{"ID":12770,"SourceStructureID":20136,"TargetStructureID":109504,"Label":"20136-109504 via Ribbon Synapse from 109503 -> 109505","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109503,"TargetID":109505,"Directional":true}]},{"ID":12771,"SourceStructureID":20136,"TargetStructureID":109528,"Label":"20136-109528 via Ribbon Synapse from 46020 -> 109529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46020,"TargetID":109529,"Directional":true}]},{"ID":12772,"SourceStructureID":20136,"TargetStructureID":109530,"Label":"20136-109530 via Ribbon Synapse from 46020 -> 109531","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46020,"TargetID":109531,"Directional":true}]},{"ID":12773,"SourceStructureID":20136,"TargetStructureID":109533,"Label":"20136-109533 via BC Conventional Synapse from 109538 -> 109539","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109538,"TargetID":109539,"Directional":true}]},{"ID":12774,"SourceStructureID":20136,"TargetStructureID":109547,"Label":"20136-109547 via Ribbon Synapse from 46016 -> 109548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46016,"TargetID":109548,"Directional":true}]},{"ID":12775,"SourceStructureID":20136,"TargetStructureID":109554,"Label":"20136-109554 via BC Conventional Synapse from 109541 -> 109555","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109541,"TargetID":109555,"Directional":true}]},{"ID":12776,"SourceStructureID":20136,"TargetStructureID":109575,"Label":"20136-109575 via BC Conventional Synapse from 109595 -> 109596","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":109595,"TargetID":109596,"Directional":true}]},{"ID":12777,"SourceStructureID":20136,"TargetStructureID":109577,"Label":"20136-109577 via Ribbon Synapse from 46016 -> 109679, 46017 -> 109581","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46016,"TargetID":109679,"Directional":true},{"SourceID":46017,"TargetID":109581,"Directional":true}]},{"ID":12778,"SourceStructureID":20136,"TargetStructureID":109597,"Label":"20136-109597 via Ribbon Synapse from 109644 -> 109669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109644,"TargetID":109669,"Directional":true}]},{"ID":12779,"SourceStructureID":20136,"TargetStructureID":109608,"Label":"20136-109608 via Ribbon Synapse from 109644 -> 109668","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109644,"TargetID":109668,"Directional":true}]},{"ID":12780,"SourceStructureID":20136,"TargetStructureID":109758,"Label":"20136-109758 via Ribbon Synapse from 109759 -> 109760","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109759,"TargetID":109760,"Directional":true}]},{"ID":12781,"SourceStructureID":20136,"TargetStructureID":109762,"Label":"20136-109762 via Ribbon Synapse from 109761 -> 109766","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109761,"TargetID":109766,"Directional":true}]},{"ID":12782,"SourceStructureID":20136,"TargetStructureID":109788,"Label":"20136-109788 via Ribbon Synapse from 46012 -> 109789","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46012,"TargetID":109789,"Directional":true}]},{"ID":12783,"SourceStructureID":20136,"TargetStructureID":109797,"Label":"20136-109797 via Ribbon Synapse from 46012 -> 109798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46012,"TargetID":109798,"Directional":true}]},{"ID":12784,"SourceStructureID":20136,"TargetStructureID":109799,"Label":"20136-109799 via BC Conventional Synapse from 119234 -> 119233","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119234,"TargetID":119233,"Directional":true}]},{"ID":12785,"SourceStructureID":20136,"TargetStructureID":109802,"Label":"20136-109802 via Ribbon Synapse from 29150 -> 109863, 46013 -> 109810, 109876 -> 109878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29150,"TargetID":109863,"Directional":true},{"SourceID":46013,"TargetID":109810,"Directional":true},{"SourceID":109876,"TargetID":109878,"Directional":true}]},{"ID":12786,"SourceStructureID":20136,"TargetStructureID":109812,"Label":"20136-109812 via Ribbon Synapse from 46013 -> 109813","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46013,"TargetID":109813,"Directional":true}]},{"ID":12787,"SourceStructureID":20136,"TargetStructureID":109816,"Label":"20136-109816 via Ribbon Synapse from 29145 -> 109818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29145,"TargetID":109818,"Directional":true}]},{"ID":12788,"SourceStructureID":20136,"TargetStructureID":109824,"Label":"20136-109824 via Ribbon Synapse from 109829 -> 109826","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109829,"TargetID":109826,"Directional":true}]},{"ID":12789,"SourceStructureID":20136,"TargetStructureID":109827,"Label":"20136-109827 via Ribbon Synapse from 109829 -> 109830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109829,"TargetID":109830,"Directional":true}]},{"ID":12790,"SourceStructureID":20136,"TargetStructureID":109839,"Label":"20136-109839 via Ribbon Synapse from 109838 -> 109841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109838,"TargetID":109841,"Directional":true}]},{"ID":12791,"SourceStructureID":20136,"TargetStructureID":109842,"Label":"20136-109842 via Ribbon Synapse from 29146 -> 109843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29146,"TargetID":109843,"Directional":true}]},{"ID":12792,"SourceStructureID":20136,"TargetStructureID":109844,"Label":"20136-109844 via Ribbon Synapse from 29146 -> 109845","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29146,"TargetID":109845,"Directional":true}]},{"ID":12793,"SourceStructureID":20136,"TargetStructureID":109851,"Label":"20136-109851 via Ribbon Synapse from 29149 -> 109852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29149,"TargetID":109852,"Directional":true}]},{"ID":12794,"SourceStructureID":20136,"TargetStructureID":109857,"Label":"20136-109857 via Ribbon Synapse from 29150 -> 109859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29150,"TargetID":109859,"Directional":true}]},{"ID":12795,"SourceStructureID":20136,"TargetStructureID":109865,"Label":"20136-109865 via Ribbon Synapse from 29153 -> 109866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29153,"TargetID":109866,"Directional":true}]},{"ID":12796,"SourceStructureID":20136,"TargetStructureID":109873,"Label":"20136-109873 via Ribbon Synapse from 109876 -> 109877","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109876,"TargetID":109877,"Directional":true}]},{"ID":12797,"SourceStructureID":20136,"TargetStructureID":109879,"Label":"20136-109879 via Ribbon Synapse from 109876 -> 109880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109876,"TargetID":109880,"Directional":true}]},{"ID":12798,"SourceStructureID":20136,"TargetStructureID":109895,"Label":"20136-109895 via Ribbon Synapse from 109894 -> 109896","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109894,"TargetID":109896,"Directional":true}]},{"ID":12799,"SourceStructureID":20136,"TargetStructureID":109900,"Label":"20136-109900 via Ribbon Synapse from 109902 -> 109907","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109902,"TargetID":109907,"Directional":true}]},{"ID":12800,"SourceStructureID":20136,"TargetStructureID":109905,"Label":"20136-109905 via Ribbon Synapse from 109902 -> 109906","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109902,"TargetID":109906,"Directional":true}]},{"ID":12801,"SourceStructureID":20136,"TargetStructureID":110186,"Label":"20136-110186 via Ribbon Synapse from 110185 -> 110187","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110185,"TargetID":110187,"Directional":true}]},{"ID":12802,"SourceStructureID":20136,"TargetStructureID":110204,"Label":"20136-110204 via Ribbon Synapse from 110203 -> 110205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110203,"TargetID":110205,"Directional":true}]},{"ID":12803,"SourceStructureID":20136,"TargetStructureID":110208,"Label":"20136-110208 via BC Conventional Synapse from 110217 -> 110218","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":110217,"TargetID":110218,"Directional":true}]},{"ID":12804,"SourceStructureID":20136,"TargetStructureID":110271,"Label":"20136-110271 via Ribbon Synapse from 110237 -> 110288, 110299 -> 110300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110237,"TargetID":110288,"Directional":true},{"SourceID":110299,"TargetID":110300,"Directional":true}]},{"ID":12805,"SourceStructureID":20136,"TargetStructureID":110289,"Label":"20136-110289 via Ribbon Synapse from 110237 -> 110290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110237,"TargetID":110290,"Directional":true}]},{"ID":12806,"SourceStructureID":20136,"TargetStructureID":110292,"Label":"20136-110292 via Ribbon Synapse from 110287 -> 110294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110287,"TargetID":110294,"Directional":true}]},{"ID":12807,"SourceStructureID":20136,"TargetStructureID":110295,"Label":"20136-110295 via Ribbon Synapse from 110287 -> 110298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110287,"TargetID":110298,"Directional":true}]},{"ID":12808,"SourceStructureID":20136,"TargetStructureID":110301,"Label":"20136-110301 via Ribbon Synapse from 110299 -> 110302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110299,"TargetID":110302,"Directional":true}]},{"ID":12809,"SourceStructureID":20136,"TargetStructureID":110316,"Label":"20136-110316 via Ribbon Synapse from 110315 -> 110318","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110315,"TargetID":110318,"Directional":true}]},{"ID":12810,"SourceStructureID":20136,"TargetStructureID":110352,"Label":"20136-110352 via Ribbon Synapse from 110350 -> 110355","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110350,"TargetID":110355,"Directional":true}]},{"ID":12811,"SourceStructureID":20136,"TargetStructureID":110356,"Label":"20136-110356 via Ribbon Synapse from 93855 -> 110359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93855,"TargetID":110359,"Directional":true}]},{"ID":12812,"SourceStructureID":20136,"TargetStructureID":110364,"Label":"20136-110364 via Ribbon Synapse from 93855 -> 110366","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93855,"TargetID":110366,"Directional":true}]},{"ID":12813,"SourceStructureID":20136,"TargetStructureID":110371,"Label":"20136-110371 via Ribbon Synapse from 110370 -> 110373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110370,"TargetID":110373,"Directional":true}]},{"ID":12814,"SourceStructureID":20136,"TargetStructureID":110374,"Label":"20136-110374 via Ribbon Synapse from 110370 -> 110377","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110370,"TargetID":110377,"Directional":true}]},{"ID":12815,"SourceStructureID":20136,"TargetStructureID":110385,"Label":"20136-110385 via Ribbon Synapse from 93853 -> 110388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93853,"TargetID":110388,"Directional":true}]},{"ID":12816,"SourceStructureID":20136,"TargetStructureID":110386,"Label":"20136-110386 via Ribbon Synapse from 93853 -> 110387","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93853,"TargetID":110387,"Directional":true}]},{"ID":12817,"SourceStructureID":20136,"TargetStructureID":110416,"Label":"20136-110416 via Ribbon Synapse from 110415 -> 110417","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110415,"TargetID":110417,"Directional":true}]},{"ID":12818,"SourceStructureID":20136,"TargetStructureID":110418,"Label":"20136-110418 via Ribbon Synapse from 110415 -> 110419","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":110415,"TargetID":110419,"Directional":true}]},{"ID":12819,"SourceStructureID":20299,"TargetStructureID":285,"Label":"20299-285 via Conventional from 20302 -> 20314","Type":"Conventional","Directional":true,"Links":[{"SourceID":20302,"TargetID":20314,"Directional":true}]},{"ID":12820,"SourceStructureID":20299,"TargetStructureID":286,"Label":"20299-286 via Conventional from 20317 -> 45607","Type":"Conventional","Directional":true,"Links":[{"SourceID":20317,"TargetID":45607,"Directional":true}]},{"ID":12821,"SourceStructureID":20299,"TargetStructureID":464,"Label":"20299-464 via Conventional from 55904 -> 121839","Type":"Conventional","Directional":true,"Links":[{"SourceID":55904,"TargetID":121839,"Directional":true}]},{"ID":12822,"SourceStructureID":20299,"TargetStructureID":483,"Label":"20299-483 via Conventional from 33599 -> 102549","Type":"Conventional","Directional":true,"Links":[{"SourceID":33599,"TargetID":102549,"Directional":true}]},{"ID":12823,"SourceStructureID":20299,"TargetStructureID":71935,"Label":"20299-71935 via Conventional from 121494 -> 121495","Type":"Conventional","Directional":true,"Links":[{"SourceID":121494,"TargetID":121495,"Directional":true}]},{"ID":12824,"SourceStructureID":20311,"TargetStructureID":285,"Label":"20311-285 via Conventional from 20312 -> 20313","Type":"Conventional","Directional":true,"Links":[{"SourceID":20312,"TargetID":20313,"Directional":true}]},{"ID":12825,"SourceStructureID":20311,"TargetStructureID":286,"Label":"20311-286 via Conventional from 30343 -> 26463, 93858 -> 93859","Type":"Conventional","Directional":true,"Links":[{"SourceID":30343,"TargetID":26463,"Directional":true},{"SourceID":93858,"TargetID":93859,"Directional":true}]},{"ID":12826,"SourceStructureID":20311,"TargetStructureID":525,"Label":"20311-525 via Conventional from 30341 -> 6280","Type":"Conventional","Directional":true,"Links":[{"SourceID":30341,"TargetID":6280,"Directional":true}]},{"ID":12827,"SourceStructureID":20327,"TargetStructureID":15796,"Label":"20327-15796 via Conventional from 20329 -> 20267","Type":"Conventional","Directional":true,"Links":[{"SourceID":20329,"TargetID":20267,"Directional":true}]},{"ID":12828,"SourceStructureID":20537,"TargetStructureID":5482,"Label":"20537-5482 via Conventional from 23510 -> 23511","Type":"Conventional","Directional":true,"Links":[{"SourceID":23510,"TargetID":23511,"Directional":true}]},{"ID":12829,"SourceStructureID":20537,"TargetStructureID":19571,"Label":"20537-19571 via Conventional from 23507 -> 22715","Type":"Conventional","Directional":true,"Links":[{"SourceID":23507,"TargetID":22715,"Directional":true}]},{"ID":12830,"SourceStructureID":20608,"TargetStructureID":1620,"Label":"20608-1620 via Conventional from 20612 -> 20613","Type":"Conventional","Directional":true,"Links":[{"SourceID":20612,"TargetID":20613,"Directional":true}]},{"ID":12831,"SourceStructureID":20728,"TargetStructureID":1620,"Label":"20728-1620 via Conventional from 33075 -> 16904, 33076 -> 33077","Type":"Conventional","Directional":true,"Links":[{"SourceID":33075,"TargetID":16904,"Directional":true},{"SourceID":33076,"TargetID":33077,"Directional":true}]},{"ID":12832,"SourceStructureID":20728,"TargetStructureID":6997,"Label":"20728-6997 via Conventional from 33078 -> 33079","Type":"Conventional","Directional":true,"Links":[{"SourceID":33078,"TargetID":33079,"Directional":true}]},{"ID":12833,"SourceStructureID":20728,"TargetStructureID":11401,"Label":"20728-11401 via Conventional from 20729 -> 16834","Type":"Conventional","Directional":true,"Links":[{"SourceID":20729,"TargetID":16834,"Directional":true}]},{"ID":12834,"SourceStructureID":21094,"TargetStructureID":165,"Label":"21094-165 via Conventional from 21127 -> 7089, 21130 -> 21131","Type":"Conventional","Directional":true,"Links":[{"SourceID":21127,"TargetID":7089,"Directional":true},{"SourceID":21130,"TargetID":21131,"Directional":true}]},{"ID":12835,"SourceStructureID":21094,"TargetStructureID":424,"Label":"21094-424 via Conventional from 21108 -> 19512","Type":"Conventional","Directional":true,"Links":[{"SourceID":21108,"TargetID":19512,"Directional":true}]},{"ID":12836,"SourceStructureID":21094,"TargetStructureID":4850,"Label":"21094-4850 via Conventional from 21095 -> 14541","Type":"Conventional","Directional":true,"Links":[{"SourceID":21095,"TargetID":14541,"Directional":true}]},{"ID":12837,"SourceStructureID":21094,"TargetStructureID":128015,"Label":"21094-128015 via Conventional from 21136 -> 128047","Type":"Conventional","Directional":true,"Links":[{"SourceID":21136,"TargetID":128047,"Directional":true}]},{"ID":12838,"SourceStructureID":21155,"TargetStructureID":19362,"Label":"21155-19362 via Conventional from 23448 -> 23446","Type":"Conventional","Directional":true,"Links":[{"SourceID":23448,"TargetID":23446,"Directional":true}]},{"ID":12839,"SourceStructureID":21159,"TargetStructureID":19362,"Label":"21159-19362 via Conventional from 23428 -> 23427","Type":"Conventional","Directional":true,"Links":[{"SourceID":23428,"TargetID":23427,"Directional":true}]},{"ID":12840,"SourceStructureID":21163,"TargetStructureID":6910,"Label":"21163-6910 via Conventional from 43000 -> 42999","Type":"Conventional","Directional":true,"Links":[{"SourceID":43000,"TargetID":42999,"Directional":true}]},{"ID":12841,"SourceStructureID":21299,"TargetStructureID":3865,"Label":"21299-3865 via Ribbon Synapse from 39303 -> 132328","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39303,"TargetID":132328,"Directional":true}]},{"ID":12842,"SourceStructureID":21299,"TargetStructureID":5435,"Label":"21299-5435 via Ribbon Synapse from 48942 -> 126008","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48942,"TargetID":126008,"Directional":true}]},{"ID":12843,"SourceStructureID":21299,"TargetStructureID":6300,"Label":"21299-6300 via Ribbon Synapse from 21310 -> 21311","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21310,"TargetID":21311,"Directional":true}]},{"ID":12844,"SourceStructureID":21299,"TargetStructureID":8575,"Label":"21299-8575 via Ribbon Synapse from 21305 -> 62298, 21306 -> 62297, 62322 -> 62321, 125942 -> 62300","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":21305,"TargetID":62298,"Directional":true},{"SourceID":21306,"TargetID":62297,"Directional":true},{"SourceID":62322,"TargetID":62321,"Directional":true},{"SourceID":125942,"TargetID":62300,"Directional":true}]},{"ID":12845,"SourceStructureID":21299,"TargetStructureID":9769,"Label":"21299-9769 via Ribbon Synapse from 29853 -> 29850, 119071 -> 119070","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29853,"TargetID":29850,"Directional":true},{"SourceID":119071,"TargetID":119070,"Directional":true}]},{"ID":12846,"SourceStructureID":21299,"TargetStructureID":16002,"Label":"21299-16002 via Ribbon Synapse from 46341 -> 16005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46341,"TargetID":16005,"Directional":true}]},{"ID":12847,"SourceStructureID":21299,"TargetStructureID":29702,"Label":"21299-29702 via BC Conventional Synapse from 72630 -> 72629","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":72630,"TargetID":72629,"Directional":true}]},{"ID":12848,"SourceStructureID":21299,"TargetStructureID":34055,"Label":"21299-34055 via Ribbon Synapse from 34093 -> 34087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34093,"TargetID":34087,"Directional":true}]},{"ID":12849,"SourceStructureID":21299,"TargetStructureID":35811,"Label":"21299-35811 via Ribbon Synapse from 35833 -> 35827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35833,"TargetID":35827,"Directional":true}]},{"ID":12850,"SourceStructureID":21299,"TargetStructureID":39299,"Label":"21299-39299 via Ribbon Synapse from 39303 -> 39302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39303,"TargetID":39302,"Directional":true}]},{"ID":12851,"SourceStructureID":21299,"TargetStructureID":44346,"Label":"21299-44346 via Ribbon Synapse from 44440 -> 44439, 44441 -> 44439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44440,"TargetID":44439,"Directional":true},{"SourceID":44441,"TargetID":44439,"Directional":true}]},{"ID":12852,"SourceStructureID":21299,"TargetStructureID":87972,"Label":"21299-87972 via Ribbon Synapse from 44440 -> 87978","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44440,"TargetID":87978,"Directional":true}]},{"ID":12853,"SourceStructureID":21299,"TargetStructureID":87979,"Label":"21299-87979 via Ribbon Synapse from 44441 -> 87980","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44441,"TargetID":87980,"Directional":true}]},{"ID":12854,"SourceStructureID":21299,"TargetStructureID":88059,"Label":"21299-88059 via Ribbon Synapse from 48905 -> 88060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48905,"TargetID":88060,"Directional":true}]},{"ID":12855,"SourceStructureID":21299,"TargetStructureID":91737,"Label":"21299-91737 via BC Conventional Synapse from 92845 -> 92846","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":92845,"TargetID":92846,"Directional":true}]},{"ID":12856,"SourceStructureID":21299,"TargetStructureID":98238,"Label":"21299-98238 via BC Conventional Synapse from 98242 -> 98243","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":98242,"TargetID":98243,"Directional":true}]},{"ID":12857,"SourceStructureID":21299,"TargetStructureID":98838,"Label":"21299-98838 via Ribbon Synapse from 48851 -> 98840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48851,"TargetID":98840,"Directional":true}]},{"ID":12858,"SourceStructureID":21314,"TargetStructureID":5457,"Label":"21314-5457 via Conventional from 103235 -> 15343","Type":"Conventional","Directional":true,"Links":[{"SourceID":103235,"TargetID":15343,"Directional":true}]},{"ID":12859,"SourceStructureID":21384,"TargetStructureID":19571,"Label":"21384-19571 via Conventional from 22768 -> 22769","Type":"Conventional","Directional":true,"Links":[{"SourceID":22768,"TargetID":22769,"Directional":true}]},{"ID":12860,"SourceStructureID":21384,"TargetStructureID":21779,"Label":"21384-21779 via Conventional from 32260 -> 32071","Type":"Conventional","Directional":true,"Links":[{"SourceID":32260,"TargetID":32071,"Directional":true}]},{"ID":12861,"SourceStructureID":21386,"TargetStructureID":21779,"Label":"21386-21779 via Conventional from 32259 -> 32073","Type":"Conventional","Directional":true,"Links":[{"SourceID":32259,"TargetID":32073,"Directional":true}]},{"ID":12862,"SourceStructureID":21778,"TargetStructureID":21779,"Label":"21778-21779 via Conventional from 34536 -> 32060","Type":"Conventional","Directional":true,"Links":[{"SourceID":34536,"TargetID":32060,"Directional":true}]},{"ID":12863,"SourceStructureID":21817,"TargetStructureID":443,"Label":"21817-443 via Conventional from 34612 -> 2031","Type":"Conventional","Directional":true,"Links":[{"SourceID":34612,"TargetID":2031,"Directional":true}]},{"ID":12864,"SourceStructureID":21824,"TargetStructureID":5457,"Label":"21824-5457 via Conventional from 103236 -> 15345","Type":"Conventional","Directional":true,"Links":[{"SourceID":103236,"TargetID":15345,"Directional":true}]},{"ID":12865,"SourceStructureID":21855,"TargetStructureID":7461,"Label":"21855-7461 via Conventional from 41129 -> 30456","Type":"Conventional","Directional":true,"Links":[{"SourceID":41129,"TargetID":30456,"Directional":true}]},{"ID":12866,"SourceStructureID":22225,"TargetStructureID":5545,"Label":"22225-5545 via Conventional from 128202 -> 128203","Type":"Conventional","Directional":true,"Links":[{"SourceID":128202,"TargetID":128203,"Directional":true}]},{"ID":12867,"SourceStructureID":22225,"TargetStructureID":128205,"Label":"22225-128205 via Conventional from 128204 -> 128206","Type":"Conventional","Directional":true,"Links":[{"SourceID":128204,"TargetID":128206,"Directional":true}]},{"ID":12868,"SourceStructureID":22227,"TargetStructureID":98127,"Label":"22227-98127 via Conventional from 98847 -> 98846","Type":"Conventional","Directional":true,"Links":[{"SourceID":98847,"TargetID":98846,"Directional":true}]},{"ID":12869,"SourceStructureID":22228,"TargetStructureID":4850,"Label":"22228-4850 via Conventional from 97962 -> 14540","Type":"Conventional","Directional":true,"Links":[{"SourceID":97962,"TargetID":14540,"Directional":true}]},{"ID":12870,"SourceStructureID":22232,"TargetStructureID":5295,"Label":"22232-5295 via Conventional from 68810 -> 59169","Type":"Conventional","Directional":true,"Links":[{"SourceID":68810,"TargetID":59169,"Directional":true}]},{"ID":12871,"SourceStructureID":22232,"TargetStructureID":5499,"Label":"22232-5499 via Conventional from 68814 -> 95214, 68819 -> 95215","Type":"Conventional","Directional":true,"Links":[{"SourceID":68814,"TargetID":95214,"Directional":true},{"SourceID":68819,"TargetID":95215,"Directional":true}]},{"ID":12872,"SourceStructureID":22232,"TargetStructureID":5922,"Label":"22232-5922 via Conventional from 68827 -> 68847, 68850 -> 68851","Type":"Conventional","Directional":true,"Links":[{"SourceID":68827,"TargetID":68847,"Directional":true},{"SourceID":68850,"TargetID":68851,"Directional":true}]},{"ID":12873,"SourceStructureID":22232,"TargetStructureID":8575,"Label":"22232-8575 via Conventional from 68806 -> 61535","Type":"Conventional","Directional":true,"Links":[{"SourceID":68806,"TargetID":61535,"Directional":true}]},{"ID":12874,"SourceStructureID":22349,"TargetStructureID":4943,"Label":"22349-4943 via Conventional from 96462 -> 4957","Type":"Conventional","Directional":true,"Links":[{"SourceID":96462,"TargetID":4957,"Directional":true}]},{"ID":12875,"SourceStructureID":22358,"TargetStructureID":398,"Label":"22358-398 via Conventional from 37571 -> 37572","Type":"Conventional","Directional":true,"Links":[{"SourceID":37571,"TargetID":37572,"Directional":true}]},{"ID":12876,"SourceStructureID":22368,"TargetStructureID":591,"Label":"22368-591 via Conventional from 29788 -> 10079, 46628 -> 46626","Type":"Conventional","Directional":true,"Links":[{"SourceID":29788,"TargetID":10079,"Directional":true},{"SourceID":46628,"TargetID":46626,"Directional":true}]},{"ID":12877,"SourceStructureID":22374,"TargetStructureID":12208,"Label":"22374-12208 via Cistern Pre from 35736 -> 35737","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":35736,"TargetID":35737,"Directional":true}]},{"ID":12878,"SourceStructureID":22597,"TargetStructureID":98127,"Label":"22597-98127 via Conventional from 98139 -> 98138","Type":"Conventional","Directional":true,"Links":[{"SourceID":98139,"TargetID":98138,"Directional":true}]},{"ID":12879,"SourceStructureID":22634,"TargetStructureID":418,"Label":"22634-418 via Conventional from 22661 -> 129692","Type":"Conventional","Directional":true,"Links":[{"SourceID":22661,"TargetID":129692,"Directional":true}]},{"ID":12880,"SourceStructureID":22760,"TargetStructureID":179,"Label":"22760-179 via Conventional from 25310 -> 25309","Type":"Conventional","Directional":true,"Links":[{"SourceID":25310,"TargetID":25309,"Directional":true}]},{"ID":12881,"SourceStructureID":22772,"TargetStructureID":61439,"Label":"22772-61439 via Conventional from 61441 -> 61440","Type":"Conventional","Directional":true,"Links":[{"SourceID":61441,"TargetID":61440,"Directional":true}]},{"ID":12882,"SourceStructureID":22791,"TargetStructureID":5331,"Label":"22791-5331 via Conventional from 39187 -> 39186","Type":"Conventional","Directional":true,"Links":[{"SourceID":39187,"TargetID":39186,"Directional":true}]},{"ID":12883,"SourceStructureID":22974,"TargetStructureID":22974,"Label":"22974-22974 via Conventional from 70263 -> 70261","Type":"Conventional","Directional":true,"Links":[{"SourceID":70263,"TargetID":70261,"Directional":true}]},{"ID":12884,"SourceStructureID":22994,"TargetStructureID":68539,"Label":"22994-68539 via Ribbon Synapse from 75813 -> 69158, 75931 -> 75932","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75813,"TargetID":69158,"Directional":true},{"SourceID":75931,"TargetID":75932,"Directional":true}]},{"ID":12885,"SourceStructureID":22994,"TargetStructureID":75933,"Label":"22994-75933 via Ribbon Synapse from 75931 -> 75934","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75931,"TargetID":75934,"Directional":true}]},{"ID":12886,"SourceStructureID":22994,"TargetStructureID":78909,"Label":"22994-78909 via Ribbon Synapse from 75813 -> 87548","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75813,"TargetID":87548,"Directional":true}]},{"ID":12887,"SourceStructureID":23323,"TargetStructureID":5609,"Label":"23323-5609 via Conventional from 31391 -> 31390","Type":"Conventional","Directional":true,"Links":[{"SourceID":31391,"TargetID":31390,"Directional":true}]},{"ID":12888,"SourceStructureID":23512,"TargetStructureID":168,"Label":"23512-168 via Conventional from 23515 -> 125601","Type":"Conventional","Directional":true,"Links":[{"SourceID":23515,"TargetID":125601,"Directional":true}]},{"ID":12889,"SourceStructureID":23512,"TargetStructureID":170,"Label":"23512-170 via Conventional from 23514 -> 1371, 23517 -> 1274, 23531 -> 23532, 23534 -> 1296, 23535 -> 89704","Type":"Conventional","Directional":true,"Links":[{"SourceID":23514,"TargetID":1371,"Directional":true},{"SourceID":23517,"TargetID":1274,"Directional":true},{"SourceID":23531,"TargetID":23532,"Directional":true},{"SourceID":23534,"TargetID":1296,"Directional":true},{"SourceID":23535,"TargetID":89704,"Directional":true}]},{"ID":12890,"SourceStructureID":23512,"TargetStructureID":1724,"Label":"23512-1724 via Conventional from 23540 -> 4008, 23542 -> 1742, 101787 -> 101788","Type":"Conventional","Directional":true,"Links":[{"SourceID":23540,"TargetID":4008,"Directional":true},{"SourceID":23542,"TargetID":1742,"Directional":true},{"SourceID":101787,"TargetID":101788,"Directional":true}]},{"ID":12891,"SourceStructureID":23512,"TargetStructureID":4569,"Label":"23512-4569 via Conventional from 23535 -> 52517, 23536 -> 99075, 23539 -> 23780","Type":"Conventional","Directional":true,"Links":[{"SourceID":23535,"TargetID":52517,"Directional":true},{"SourceID":23536,"TargetID":99075,"Directional":true},{"SourceID":23539,"TargetID":23780,"Directional":true}]},{"ID":12892,"SourceStructureID":23512,"TargetStructureID":5278,"Label":"23512-5278 via Conventional from 99313 -> 20113","Type":"Conventional","Directional":true,"Links":[{"SourceID":99313,"TargetID":20113,"Directional":true}]},{"ID":12893,"SourceStructureID":23512,"TargetStructureID":5530,"Label":"23512-5530 via Conventional from 23520 -> 76494","Type":"Conventional","Directional":true,"Links":[{"SourceID":23520,"TargetID":76494,"Directional":true}]},{"ID":12894,"SourceStructureID":23512,"TargetStructureID":6156,"Label":"23512-6156 via Conventional from 133160 -> 133159","Type":"Conventional","Directional":true,"Links":[{"SourceID":133160,"TargetID":133159,"Directional":true}]},{"ID":12895,"SourceStructureID":23512,"TargetStructureID":10596,"Label":"23512-10596 via Conventional from 23521 -> 33213","Type":"Conventional","Directional":true,"Links":[{"SourceID":23521,"TargetID":33213,"Directional":true}]},{"ID":12896,"SourceStructureID":23512,"TargetStructureID":33675,"Label":"23512-33675 via Conventional from 33681 -> 33680","Type":"Conventional","Directional":true,"Links":[{"SourceID":33681,"TargetID":33680,"Directional":true}]},{"ID":12897,"SourceStructureID":23512,"TargetStructureID":82677,"Label":"23512-82677 via Conventional from 83886 -> 83887","Type":"Conventional","Directional":true,"Links":[{"SourceID":83886,"TargetID":83887,"Directional":true}]},{"ID":12898,"SourceStructureID":23566,"TargetStructureID":168,"Label":"23566-168 via Conventional from 23573 -> 23576, 23574 -> 23575","Type":"Conventional","Directional":true,"Links":[{"SourceID":23573,"TargetID":23576,"Directional":true},{"SourceID":23574,"TargetID":23575,"Directional":true}]},{"ID":12899,"SourceStructureID":23566,"TargetStructureID":170,"Label":"23566-170 via Conventional from 88393 -> 88394","Type":"Conventional","Directional":true,"Links":[{"SourceID":88393,"TargetID":88394,"Directional":true}]},{"ID":12900,"SourceStructureID":23566,"TargetStructureID":4569,"Label":"23566-4569 via Conventional from 23570 -> 23565","Type":"Conventional","Directional":true,"Links":[{"SourceID":23570,"TargetID":23565,"Directional":true}]},{"ID":12901,"SourceStructureID":23836,"TargetStructureID":345,"Label":"23836-345 via Conventional from 23854 -> 64334","Type":"Conventional","Directional":true,"Links":[{"SourceID":23854,"TargetID":64334,"Directional":true}]},{"ID":12902,"SourceStructureID":23836,"TargetStructureID":606,"Label":"23836-606 via Conventional from 23837 -> 10512, 23838 -> 10510, 23847 -> 23848, 23863 -> 54138, 23866 -> 48126, 51776 -> 51775, 53643 -> 53645, 53912 -> 53909, 53914 -> 44234, 53927 -> 53926, 53935 -> 53936, 54561 -> 54562","Type":"Conventional","Directional":true,"Links":[{"SourceID":23837,"TargetID":10512,"Directional":true},{"SourceID":23838,"TargetID":10510,"Directional":true},{"SourceID":23847,"TargetID":23848,"Directional":true},{"SourceID":23863,"TargetID":54138,"Directional":true},{"SourceID":23866,"TargetID":48126,"Directional":true},{"SourceID":51776,"TargetID":51775,"Directional":true},{"SourceID":53643,"TargetID":53645,"Directional":true},{"SourceID":53912,"TargetID":53909,"Directional":true},{"SourceID":53914,"TargetID":44234,"Directional":true},{"SourceID":53927,"TargetID":53926,"Directional":true},{"SourceID":53935,"TargetID":53936,"Directional":true},{"SourceID":54561,"TargetID":54562,"Directional":true}]},{"ID":12903,"SourceStructureID":23836,"TargetStructureID":5468,"Label":"23836-5468 via Conventional from 23867 -> 23877","Type":"Conventional","Directional":true,"Links":[{"SourceID":23867,"TargetID":23877,"Directional":true}]},{"ID":12904,"SourceStructureID":23836,"TargetStructureID":5530,"Label":"23836-5530 via Conventional from 23839 -> 23845","Type":"Conventional","Directional":true,"Links":[{"SourceID":23839,"TargetID":23845,"Directional":true}]},{"ID":12905,"SourceStructureID":23836,"TargetStructureID":5531,"Label":"23836-5531 via Conventional from 106244 -> 59572","Type":"Conventional","Directional":true,"Links":[{"SourceID":106244,"TargetID":59572,"Directional":true}]},{"ID":12906,"SourceStructureID":23836,"TargetStructureID":5601,"Label":"23836-5601 via Conventional from 23865 -> 127422, 127408 -> 127406","Type":"Conventional","Directional":true,"Links":[{"SourceID":23865,"TargetID":127422,"Directional":true},{"SourceID":127408,"TargetID":127406,"Directional":true}]},{"ID":12907,"SourceStructureID":23836,"TargetStructureID":7594,"Label":"23836-7594 via Conventional from 23864 -> 7609","Type":"Conventional","Directional":true,"Links":[{"SourceID":23864,"TargetID":7609,"Directional":true}]},{"ID":12908,"SourceStructureID":23836,"TargetStructureID":23870,"Label":"23836-23870 via Conventional from 23868 -> 92944, 23871 -> 23872","Type":"Conventional","Directional":true,"Links":[{"SourceID":23868,"TargetID":92944,"Directional":true},{"SourceID":23871,"TargetID":23872,"Directional":true}]},{"ID":12909,"SourceStructureID":23836,"TargetStructureID":74047,"Label":"23836-74047 via Conventional from 74325 -> 74323","Type":"Conventional","Directional":true,"Links":[{"SourceID":74325,"TargetID":74323,"Directional":true}]},{"ID":12910,"SourceStructureID":24148,"TargetStructureID":5562,"Label":"24148-5562 via Conventional from 76635 -> 76634","Type":"Conventional","Directional":true,"Links":[{"SourceID":76635,"TargetID":76634,"Directional":true}]},{"ID":12911,"SourceStructureID":24174,"TargetStructureID":5598,"Label":"24174-5598 via Conventional from 24181 -> 115033","Type":"Conventional","Directional":true,"Links":[{"SourceID":24181,"TargetID":115033,"Directional":true}]},{"ID":12912,"SourceStructureID":24174,"TargetStructureID":5609,"Label":"24174-5609 via Conventional from 24175 -> 20646","Type":"Conventional","Directional":true,"Links":[{"SourceID":24175,"TargetID":20646,"Directional":true}]},{"ID":12913,"SourceStructureID":24174,"TargetStructureID":5641,"Label":"24174-5641 via Conventional from 24177 -> 20678","Type":"Conventional","Directional":true,"Links":[{"SourceID":24177,"TargetID":20678,"Directional":true}]},{"ID":12914,"SourceStructureID":24241,"TargetStructureID":175,"Label":"24241-175 via Conventional from 24258 -> 24288","Type":"Conventional","Directional":true,"Links":[{"SourceID":24258,"TargetID":24288,"Directional":true}]},{"ID":12915,"SourceStructureID":24241,"TargetStructureID":178,"Label":"24241-178 via Conventional from 24260 -> 3263, 24261 -> 3261","Type":"Conventional","Directional":true,"Links":[{"SourceID":24260,"TargetID":3263,"Directional":true},{"SourceID":24261,"TargetID":3261,"Directional":true}]},{"ID":12916,"SourceStructureID":24241,"TargetStructureID":325,"Label":"24241-325 via Conventional from 24283 -> 31943","Type":"Conventional","Directional":true,"Links":[{"SourceID":24283,"TargetID":31943,"Directional":true}]},{"ID":12917,"SourceStructureID":24241,"TargetStructureID":426,"Label":"24241-426 via Conventional from 24276 -> 21583, 24277 -> 21584","Type":"Conventional","Directional":true,"Links":[{"SourceID":24276,"TargetID":21583,"Directional":true},{"SourceID":24277,"TargetID":21584,"Directional":true}]},{"ID":12918,"SourceStructureID":24241,"TargetStructureID":9643,"Label":"24241-9643 via Conventional from 24280 -> 9677","Type":"Conventional","Directional":true,"Links":[{"SourceID":24280,"TargetID":9677,"Directional":true}]},{"ID":12919,"SourceStructureID":24303,"TargetStructureID":598,"Label":"24303-598 via Ribbon Synapse from 38782 -> 38775, 38784 -> 38783","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38782,"TargetID":38775,"Directional":true},{"SourceID":38784,"TargetID":38783,"Directional":true}]},{"ID":12920,"SourceStructureID":24303,"TargetStructureID":606,"Label":"24303-606 via Ribbon Synapse from 38780 -> 38779","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38780,"TargetID":38779,"Directional":true}]},{"ID":12921,"SourceStructureID":24303,"TargetStructureID":9769,"Label":"24303-9769 via Ribbon Synapse from 30073 -> 30074","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30073,"TargetID":30074,"Directional":true}]},{"ID":12922,"SourceStructureID":24366,"TargetStructureID":12408,"Label":"24366-12408 via Ribbon Synapse from 24377 -> 12431","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24377,"TargetID":12431,"Directional":true}]},{"ID":12923,"SourceStructureID":24366,"TargetStructureID":24381,"Label":"24366-24381 via Ribbon Synapse from 24385 -> 24384","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":24385,"TargetID":24384,"Directional":true}]},{"ID":12924,"SourceStructureID":24381,"TargetStructureID":9769,"Label":"24381-9769 via Conventional from 24382 -> 12401","Type":"Conventional","Directional":true,"Links":[{"SourceID":24382,"TargetID":12401,"Directional":true}]},{"ID":12925,"SourceStructureID":24401,"TargetStructureID":598,"Label":"24401-598 via Ribbon Synapse from 38801 -> 38802","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38801,"TargetID":38802,"Directional":true}]},{"ID":12926,"SourceStructureID":24401,"TargetStructureID":6155,"Label":"24401-6155 via Ribbon Synapse from 104947 -> 104948","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":104947,"TargetID":104948,"Directional":true}]},{"ID":12927,"SourceStructureID":24401,"TargetStructureID":8575,"Label":"24401-8575 via BC Conventional Synapse from 34802 -> 61561, 48107 -> 38618, 62383 -> 62382, 63011 -> 21646, 64348 -> 64347","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":34802,"TargetID":61561,"Directional":true},{"SourceID":48107,"TargetID":38618,"Directional":true},{"SourceID":62383,"TargetID":62382,"Directional":true},{"SourceID":63011,"TargetID":21646,"Directional":true},{"SourceID":64348,"TargetID":64347,"Directional":true}]},{"ID":12928,"SourceStructureID":24401,"TargetStructureID":8575,"Label":"24401-8575 via Ribbon Synapse from 32262 -> 21646","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32262,"TargetID":21646,"Directional":true}]},{"ID":12929,"SourceStructureID":24401,"TargetStructureID":11485,"Label":"24401-11485 via Ribbon Synapse from 32266 -> 11486, 32268 -> 11486","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32266,"TargetID":11486,"Directional":true},{"SourceID":32268,"TargetID":11486,"Directional":true}]},{"ID":12930,"SourceStructureID":24401,"TargetStructureID":15796,"Label":"24401-15796 via Ribbon Synapse from 34751 -> 19834","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34751,"TargetID":19834,"Directional":true}]},{"ID":12931,"SourceStructureID":24401,"TargetStructureID":22232,"Label":"24401-22232 via Ribbon Synapse from 48194 -> 68807","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48194,"TargetID":68807,"Directional":true}]},{"ID":12932,"SourceStructureID":24401,"TargetStructureID":22974,"Label":"24401-22974 via Ribbon Synapse from 48068 -> 15478","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48068,"TargetID":15478,"Directional":true}]},{"ID":12933,"SourceStructureID":24401,"TargetStructureID":33127,"Label":"24401-33127 via Ribbon Synapse from 34803 -> 34804","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34803,"TargetID":34804,"Directional":true}]},{"ID":12934,"SourceStructureID":24401,"TargetStructureID":35969,"Label":"24401-35969 via Ribbon Synapse from 33070 -> 35971","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":33070,"TargetID":35971,"Directional":true}]},{"ID":12935,"SourceStructureID":24401,"TargetStructureID":39841,"Label":"24401-39841 via Ribbon Synapse from 39842 -> 39843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39842,"TargetID":39843,"Directional":true}]},{"ID":12936,"SourceStructureID":24401,"TargetStructureID":47104,"Label":"24401-47104 via Ribbon Synapse from 47128 -> 47129","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47128,"TargetID":47129,"Directional":true}]},{"ID":12937,"SourceStructureID":24401,"TargetStructureID":61864,"Label":"24401-61864 via Ribbon Synapse from 48138 -> 69310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48138,"TargetID":69310,"Directional":true}]},{"ID":12938,"SourceStructureID":24401,"TargetStructureID":129666,"Label":"24401-129666 via Ribbon Synapse from 34798 -> 129671","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34798,"TargetID":129671,"Directional":true}]},{"ID":12939,"SourceStructureID":24909,"TargetStructureID":5622,"Label":"24909-5622 via Conventional from 24918 -> 24916","Type":"Conventional","Directional":true,"Links":[{"SourceID":24918,"TargetID":24916,"Directional":true}]},{"ID":12940,"SourceStructureID":24909,"TargetStructureID":5671,"Label":"24909-5671 via Conventional from 24919 -> 24933","Type":"Conventional","Directional":true,"Links":[{"SourceID":24919,"TargetID":24933,"Directional":true}]},{"ID":12941,"SourceStructureID":24947,"TargetStructureID":7050,"Label":"24947-7050 via Conventional from 24948 -> 24946","Type":"Conventional","Directional":true,"Links":[{"SourceID":24948,"TargetID":24946,"Directional":true}]},{"ID":12942,"SourceStructureID":25155,"TargetStructureID":606,"Label":"25155-606 via Ribbon Synapse from 34639 -> 44308, 38206 -> 44324, 44335 -> 44334, 50709 -> 50711, 53751 -> 44254, 54366 -> 54367, 54388 -> 54389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":34639,"TargetID":44308,"Directional":true},{"SourceID":38206,"TargetID":44324,"Directional":true},{"SourceID":44335,"TargetID":44334,"Directional":true},{"SourceID":50709,"TargetID":50711,"Directional":true},{"SourceID":53751,"TargetID":44254,"Directional":true},{"SourceID":54366,"TargetID":54367,"Directional":true},{"SourceID":54388,"TargetID":54389,"Directional":true}]},{"ID":12943,"SourceStructureID":25155,"TargetStructureID":5451,"Label":"25155-5451 via BC Conventional Synapse from 55941 -> 55942","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":55941,"TargetID":55942,"Directional":true}]},{"ID":12944,"SourceStructureID":25155,"TargetStructureID":7594,"Label":"25155-7594 via Ribbon Synapse from 25156 -> 25153, 38207 -> 38208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":25156,"TargetID":25153,"Directional":true},{"SourceID":38207,"TargetID":38208,"Directional":true}]},{"ID":12945,"SourceStructureID":25155,"TargetStructureID":9769,"Label":"25155-9769 via Ribbon Synapse from 29883 -> 29884","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29883,"TargetID":29884,"Directional":true}]},{"ID":12946,"SourceStructureID":25155,"TargetStructureID":35188,"Label":"25155-35188 via Ribbon Synapse from 38230 -> 38229","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38230,"TargetID":38229,"Directional":true}]},{"ID":12947,"SourceStructureID":25155,"TargetStructureID":35308,"Label":"25155-35308 via Ribbon Synapse from 35315 -> 35312","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35315,"TargetID":35312,"Directional":true}]},{"ID":12948,"SourceStructureID":25182,"TargetStructureID":11229,"Label":"25182-11229 via Conventional from 25183 -> 25184, 25189 -> 15631","Type":"Conventional","Directional":true,"Links":[{"SourceID":25183,"TargetID":25184,"Directional":true},{"SourceID":25189,"TargetID":15631,"Directional":true}]},{"ID":12949,"SourceStructureID":25293,"TargetStructureID":5528,"Label":"25293-5528 via Conventional from 25294 -> 25295, 25298 -> 8258","Type":"Conventional","Directional":true,"Links":[{"SourceID":25294,"TargetID":25295,"Directional":true},{"SourceID":25298,"TargetID":8258,"Directional":true}]},{"ID":12950,"SourceStructureID":25293,"TargetStructureID":5530,"Label":"25293-5530 via Conventional from 81128 -> 81129","Type":"Conventional","Directional":true,"Links":[{"SourceID":81128,"TargetID":81129,"Directional":true}]},{"ID":12951,"SourceStructureID":25293,"TargetStructureID":5531,"Label":"25293-5531 via Conventional from 114739 -> 114740","Type":"Conventional","Directional":true,"Links":[{"SourceID":114739,"TargetID":114740,"Directional":true}]},{"ID":12952,"SourceStructureID":25327,"TargetStructureID":519,"Label":"25327-519 via Conventional from 25328 -> 25337, 25329 -> 25336, 25330 -> 25335, 25334 -> 16517","Type":"Conventional","Directional":true,"Links":[{"SourceID":25328,"TargetID":25337,"Directional":true},{"SourceID":25329,"TargetID":25336,"Directional":true},{"SourceID":25330,"TargetID":25335,"Directional":true},{"SourceID":25334,"TargetID":16517,"Directional":true}]},{"ID":12953,"SourceStructureID":25327,"TargetStructureID":11401,"Label":"25327-11401 via Conventional from 25340 -> 25341","Type":"Conventional","Directional":true,"Links":[{"SourceID":25340,"TargetID":25341,"Directional":true}]},{"ID":12954,"SourceStructureID":25342,"TargetStructureID":11401,"Label":"25342-11401 via Conventional from 25347 -> 25348","Type":"Conventional","Directional":true,"Links":[{"SourceID":25347,"TargetID":25348,"Directional":true}]},{"ID":12955,"SourceStructureID":25350,"TargetStructureID":519,"Label":"25350-519 via Conventional from 25351 -> 25349","Type":"Conventional","Directional":true,"Links":[{"SourceID":25351,"TargetID":25349,"Directional":true}]},{"ID":12956,"SourceStructureID":25352,"TargetStructureID":469,"Label":"25352-469 via Conventional from 32287 -> 32285","Type":"Conventional","Directional":true,"Links":[{"SourceID":32287,"TargetID":32285,"Directional":true}]},{"ID":12957,"SourceStructureID":25352,"TargetStructureID":519,"Label":"25352-519 via Conventional from 25353 -> 25338","Type":"Conventional","Directional":true,"Links":[{"SourceID":25353,"TargetID":25338,"Directional":true}]},{"ID":12958,"SourceStructureID":25352,"TargetStructureID":8749,"Label":"25352-8749 via Conventional from 32290 -> 32289","Type":"Conventional","Directional":true,"Links":[{"SourceID":32290,"TargetID":32289,"Directional":true}]},{"ID":12959,"SourceStructureID":25355,"TargetStructureID":519,"Label":"25355-519 via Conventional from 25356 -> 25357","Type":"Conventional","Directional":true,"Links":[{"SourceID":25356,"TargetID":25357,"Directional":true}]},{"ID":12960,"SourceStructureID":25359,"TargetStructureID":519,"Label":"25359-519 via Conventional from 25360 -> 16529, 25361 -> 25362","Type":"Conventional","Directional":true,"Links":[{"SourceID":25360,"TargetID":16529,"Directional":true},{"SourceID":25361,"TargetID":25362,"Directional":true}]},{"ID":12961,"SourceStructureID":25364,"TargetStructureID":518,"Label":"25364-518 via Conventional from 25366 -> 3509","Type":"Conventional","Directional":true,"Links":[{"SourceID":25366,"TargetID":3509,"Directional":true}]},{"ID":12962,"SourceStructureID":25364,"TargetStructureID":519,"Label":"25364-519 via Conventional from 25365 -> 9244","Type":"Conventional","Directional":true,"Links":[{"SourceID":25365,"TargetID":9244,"Directional":true}]},{"ID":12963,"SourceStructureID":25367,"TargetStructureID":469,"Label":"25367-469 via Conventional from 82357 -> 4670, 82359 -> 82358","Type":"Conventional","Directional":true,"Links":[{"SourceID":82357,"TargetID":4670,"Directional":true},{"SourceID":82359,"TargetID":82358,"Directional":true}]},{"ID":12964,"SourceStructureID":25367,"TargetStructureID":485,"Label":"25367-485 via Conventional from 25370 -> 25371","Type":"Conventional","Directional":true,"Links":[{"SourceID":25370,"TargetID":25371,"Directional":true}]},{"ID":12965,"SourceStructureID":25367,"TargetStructureID":519,"Label":"25367-519 via Conventional from 25368 -> 9253","Type":"Conventional","Directional":true,"Links":[{"SourceID":25368,"TargetID":9253,"Directional":true}]},{"ID":12966,"SourceStructureID":25367,"TargetStructureID":593,"Label":"25367-593 via Conventional from 68027 -> 68028","Type":"Conventional","Directional":true,"Links":[{"SourceID":68027,"TargetID":68028,"Directional":true}]},{"ID":12967,"SourceStructureID":25367,"TargetStructureID":5562,"Label":"25367-5562 via Conventional from 82348 -> 79894","Type":"Conventional","Directional":true,"Links":[{"SourceID":82348,"TargetID":79894,"Directional":true}]},{"ID":12968,"SourceStructureID":25367,"TargetStructureID":6156,"Label":"25367-6156 via Conventional from 82346 -> 82347","Type":"Conventional","Directional":true,"Links":[{"SourceID":82346,"TargetID":82347,"Directional":true}]},{"ID":12969,"SourceStructureID":25367,"TargetStructureID":82353,"Label":"25367-82353 via Conventional from 82352 -> 82354","Type":"Conventional","Directional":true,"Links":[{"SourceID":82352,"TargetID":82354,"Directional":true}]},{"ID":12970,"SourceStructureID":25374,"TargetStructureID":514,"Label":"25374-514 via Conventional from 25376 -> 25377","Type":"Conventional","Directional":true,"Links":[{"SourceID":25376,"TargetID":25377,"Directional":true}]},{"ID":12971,"SourceStructureID":25382,"TargetStructureID":519,"Label":"25382-519 via Conventional from 25383 -> 25384","Type":"Conventional","Directional":true,"Links":[{"SourceID":25383,"TargetID":25384,"Directional":true}]},{"ID":12972,"SourceStructureID":25392,"TargetStructureID":485,"Label":"25392-485 via Conventional from 32295 -> 32296","Type":"Conventional","Directional":true,"Links":[{"SourceID":32295,"TargetID":32296,"Directional":true}]},{"ID":12973,"SourceStructureID":25392,"TargetStructureID":519,"Label":"25392-519 via Conventional from 25393 -> 25394","Type":"Conventional","Directional":true,"Links":[{"SourceID":25393,"TargetID":25394,"Directional":true}]},{"ID":12974,"SourceStructureID":25392,"TargetStructureID":606,"Label":"25392-606 via Conventional from 32299 -> 32300","Type":"Conventional","Directional":true,"Links":[{"SourceID":32299,"TargetID":32300,"Directional":true}]},{"ID":12975,"SourceStructureID":25392,"TargetStructureID":906,"Label":"25392-906 via Conventional from 27340 -> 15237","Type":"Conventional","Directional":true,"Links":[{"SourceID":27340,"TargetID":15237,"Directional":true}]},{"ID":12976,"SourceStructureID":25392,"TargetStructureID":5315,"Label":"25392-5315 via Conventional from 32303 -> 26948","Type":"Conventional","Directional":true,"Links":[{"SourceID":32303,"TargetID":26948,"Directional":true}]},{"ID":12977,"SourceStructureID":25402,"TargetStructureID":369,"Label":"25402-369 via Conventional from 100655 -> 100657","Type":"Conventional","Directional":true,"Links":[{"SourceID":100655,"TargetID":100657,"Directional":true}]},{"ID":12978,"SourceStructureID":25402,"TargetStructureID":419,"Label":"25402-419 via Conventional from 100642 -> 20368","Type":"Conventional","Directional":true,"Links":[{"SourceID":100642,"TargetID":20368,"Directional":true}]},{"ID":12979,"SourceStructureID":25402,"TargetStructureID":519,"Label":"25402-519 via Conventional from 25403 -> 25404","Type":"Conventional","Directional":true,"Links":[{"SourceID":25403,"TargetID":25404,"Directional":true}]},{"ID":12980,"SourceStructureID":25402,"TargetStructureID":12897,"Label":"25402-12897 via Conventional from 100746 -> 100747","Type":"Conventional","Directional":true,"Links":[{"SourceID":100746,"TargetID":100747,"Directional":true}]},{"ID":12981,"SourceStructureID":25402,"TargetStructureID":101369,"Label":"25402-101369 via Conventional from 100663 -> 101370","Type":"Conventional","Directional":true,"Links":[{"SourceID":100663,"TargetID":101370,"Directional":true}]},{"ID":12982,"SourceStructureID":25405,"TargetStructureID":519,"Label":"25405-519 via Conventional from 25406 -> 3582","Type":"Conventional","Directional":true,"Links":[{"SourceID":25406,"TargetID":3582,"Directional":true}]},{"ID":12983,"SourceStructureID":25405,"TargetStructureID":2610,"Label":"25405-2610 via Conventional from 25407 -> 17177","Type":"Conventional","Directional":true,"Links":[{"SourceID":25407,"TargetID":17177,"Directional":true}]},{"ID":12984,"SourceStructureID":25410,"TargetStructureID":8749,"Label":"25410-8749 via Conventional from 25411 -> 8862, 25412 -> 8855, 25413 -> 25414, 123208 -> 8863","Type":"Conventional","Directional":true,"Links":[{"SourceID":25411,"TargetID":8862,"Directional":true},{"SourceID":25412,"TargetID":8855,"Directional":true},{"SourceID":25413,"TargetID":25414,"Directional":true},{"SourceID":123208,"TargetID":8863,"Directional":true}]},{"ID":12985,"SourceStructureID":25429,"TargetStructureID":519,"Label":"25429-519 via Conventional from 25431 -> 25432","Type":"Conventional","Directional":true,"Links":[{"SourceID":25431,"TargetID":25432,"Directional":true}]},{"ID":12986,"SourceStructureID":25440,"TargetStructureID":10943,"Label":"25440-10943 via Touch from 25454 -> 25453","Type":"Touch","Directional":true,"Links":[{"SourceID":25454,"TargetID":25453,"Directional":true}]},{"ID":12987,"SourceStructureID":25440,"TargetStructureID":11031,"Label":"25440-11031 via Touch from 25441 -> 25452","Type":"Touch","Directional":true,"Links":[{"SourceID":25441,"TargetID":25452,"Directional":true}]},{"ID":12988,"SourceStructureID":25466,"TargetStructureID":485,"Label":"25466-485 via Conventional from 32239 -> 32240, 32241 -> 32243","Type":"Conventional","Directional":true,"Links":[{"SourceID":32239,"TargetID":32240,"Directional":true},{"SourceID":32241,"TargetID":32243,"Directional":true}]},{"ID":12989,"SourceStructureID":25466,"TargetStructureID":519,"Label":"25466-519 via Conventional from 25468 -> 25469, 25473 -> 3612, 32238 -> 32237","Type":"Conventional","Directional":true,"Links":[{"SourceID":25468,"TargetID":25469,"Directional":true},{"SourceID":25473,"TargetID":3612,"Directional":true},{"SourceID":32238,"TargetID":32237,"Directional":true}]},{"ID":12990,"SourceStructureID":25529,"TargetStructureID":519,"Label":"25529-519 via Conventional from 25531 -> 25532","Type":"Conventional","Directional":true,"Links":[{"SourceID":25531,"TargetID":25532,"Directional":true}]},{"ID":12991,"SourceStructureID":25529,"TargetStructureID":2610,"Label":"25529-2610 via Conventional from 25543 -> 13819","Type":"Conventional","Directional":true,"Links":[{"SourceID":25543,"TargetID":13819,"Directional":true}]},{"ID":12992,"SourceStructureID":25551,"TargetStructureID":519,"Label":"25551-519 via Conventional from 25552 -> 25553","Type":"Conventional","Directional":true,"Links":[{"SourceID":25552,"TargetID":25553,"Directional":true}]},{"ID":12993,"SourceStructureID":25551,"TargetStructureID":22554,"Label":"25551-22554 via Conventional from 123154 -> 123155","Type":"Conventional","Directional":true,"Links":[{"SourceID":123154,"TargetID":123155,"Directional":true}]},{"ID":12994,"SourceStructureID":25561,"TargetStructureID":519,"Label":"25561-519 via Conventional from 25562 -> 3592","Type":"Conventional","Directional":true,"Links":[{"SourceID":25562,"TargetID":3592,"Directional":true}]},{"ID":12995,"SourceStructureID":25575,"TargetStructureID":519,"Label":"25575-519 via Conventional from 25576 -> 25633, 25578 -> 25579","Type":"Conventional","Directional":true,"Links":[{"SourceID":25576,"TargetID":25633,"Directional":true},{"SourceID":25578,"TargetID":25579,"Directional":true}]},{"ID":12996,"SourceStructureID":25575,"TargetStructureID":5017,"Label":"25575-5017 via Conventional from 25584 -> 25585","Type":"Conventional","Directional":true,"Links":[{"SourceID":25584,"TargetID":25585,"Directional":true}]},{"ID":12997,"SourceStructureID":25575,"TargetStructureID":10959,"Label":"25575-10959 via Conventional from 25665 -> 25666","Type":"Conventional","Directional":true,"Links":[{"SourceID":25665,"TargetID":25666,"Directional":true}]},{"ID":12998,"SourceStructureID":25669,"TargetStructureID":519,"Label":"25669-519 via Conventional from 25680 -> 25681","Type":"Conventional","Directional":true,"Links":[{"SourceID":25680,"TargetID":25681,"Directional":true}]},{"ID":12999,"SourceStructureID":25669,"TargetStructureID":6169,"Label":"25669-6169 via Conventional from 123143 -> 123144, 123145 -> 18396","Type":"Conventional","Directional":true,"Links":[{"SourceID":123143,"TargetID":123144,"Directional":true},{"SourceID":123145,"TargetID":18396,"Directional":true}]},{"ID":13000,"SourceStructureID":25688,"TargetStructureID":294,"Label":"25688-294 via Conventional from 25693 -> 25694, 25695 -> 25696, 123150 -> 123151","Type":"Conventional","Directional":true,"Links":[{"SourceID":25693,"TargetID":25694,"Directional":true},{"SourceID":25695,"TargetID":25696,"Directional":true},{"SourceID":123150,"TargetID":123151,"Directional":true}]},{"ID":13001,"SourceStructureID":25688,"TargetStructureID":410,"Label":"25688-410 via Conventional from 25697 -> 25698","Type":"Conventional","Directional":true,"Links":[{"SourceID":25697,"TargetID":25698,"Directional":true}]},{"ID":13002,"SourceStructureID":25688,"TargetStructureID":519,"Label":"25688-519 via Conventional from 25689 -> 25690, 25691 -> 25692","Type":"Conventional","Directional":true,"Links":[{"SourceID":25689,"TargetID":25690,"Directional":true},{"SourceID":25691,"TargetID":25692,"Directional":true}]},{"ID":13003,"SourceStructureID":25858,"TargetStructureID":519,"Label":"25858-519 via Conventional from 25859 -> 25860","Type":"Conventional","Directional":true,"Links":[{"SourceID":25859,"TargetID":25860,"Directional":true}]},{"ID":13004,"SourceStructureID":25861,"TargetStructureID":519,"Label":"25861-519 via Conventional from 25862 -> 25863","Type":"Conventional","Directional":true,"Links":[{"SourceID":25862,"TargetID":25863,"Directional":true}]},{"ID":13005,"SourceStructureID":25861,"TargetStructureID":6156,"Label":"25861-6156 via Conventional from 133275 -> 23167","Type":"Conventional","Directional":true,"Links":[{"SourceID":133275,"TargetID":23167,"Directional":true}]},{"ID":13006,"SourceStructureID":25865,"TargetStructureID":483,"Label":"25865-483 via Conventional from 133438 -> 133437","Type":"Conventional","Directional":true,"Links":[{"SourceID":133438,"TargetID":133437,"Directional":true}]},{"ID":13007,"SourceStructureID":25865,"TargetStructureID":519,"Label":"25865-519 via Conventional from 25866 -> 25867, 32245 -> 32244","Type":"Conventional","Directional":true,"Links":[{"SourceID":25866,"TargetID":25867,"Directional":true},{"SourceID":32245,"TargetID":32244,"Directional":true}]},{"ID":13008,"SourceStructureID":25865,"TargetStructureID":24401,"Label":"25865-24401 via Conventional from 32255 -> 32269","Type":"Conventional","Directional":true,"Links":[{"SourceID":32255,"TargetID":32269,"Directional":true}]},{"ID":13009,"SourceStructureID":25865,"TargetStructureID":26079,"Label":"25865-26079 via Conventional from 32248 -> 29817, 32253 -> 32252, 32270 -> 26191","Type":"Conventional","Directional":true,"Links":[{"SourceID":32248,"TargetID":29817,"Directional":true},{"SourceID":32253,"TargetID":32252,"Directional":true},{"SourceID":32270,"TargetID":26191,"Directional":true}]},{"ID":13010,"SourceStructureID":25869,"TargetStructureID":485,"Label":"25869-485 via Conventional from 45667 -> 45668","Type":"Conventional","Directional":true,"Links":[{"SourceID":45667,"TargetID":45668,"Directional":true}]},{"ID":13011,"SourceStructureID":25869,"TargetStructureID":519,"Label":"25869-519 via Conventional from 25870 -> 25871","Type":"Conventional","Directional":true,"Links":[{"SourceID":25870,"TargetID":25871,"Directional":true}]},{"ID":13012,"SourceStructureID":25869,"TargetStructureID":6912,"Label":"25869-6912 via Conventional from 98608 -> 6952","Type":"Conventional","Directional":true,"Links":[{"SourceID":98608,"TargetID":6952,"Directional":true}]},{"ID":13013,"SourceStructureID":25879,"TargetStructureID":9769,"Label":"25879-9769 via Conventional from 25887 -> 25876","Type":"Conventional","Directional":true,"Links":[{"SourceID":25887,"TargetID":25876,"Directional":true}]},{"ID":13014,"SourceStructureID":26079,"TargetStructureID":7568,"Label":"26079-7568 via Ribbon Synapse from 27028 -> 27027","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":27028,"TargetID":27027,"Directional":true}]},{"ID":13015,"SourceStructureID":26079,"TargetStructureID":9769,"Label":"26079-9769 via Ribbon Synapse from 29813 -> 29812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29813,"TargetID":29812,"Directional":true}]},{"ID":13016,"SourceStructureID":26079,"TargetStructureID":15796,"Label":"26079-15796 via Ribbon Synapse from 29813 -> 29816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":29813,"TargetID":29816,"Directional":true}]},{"ID":13017,"SourceStructureID":26079,"TargetStructureID":25865,"Label":"26079-25865 via Ribbon Synapse from 32247 -> 32246, 32250 -> 32251, 32272 -> 32271","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32247,"TargetID":32246,"Directional":true},{"SourceID":32250,"TargetID":32251,"Directional":true},{"SourceID":32272,"TargetID":32271,"Directional":true}]},{"ID":13018,"SourceStructureID":26079,"TargetStructureID":35894,"Label":"26079-35894 via Ribbon Synapse from 35909 -> 35908","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35909,"TargetID":35908,"Directional":true}]},{"ID":13019,"SourceStructureID":26079,"TargetStructureID":47013,"Label":"26079-47013 via Ribbon Synapse from 47022 -> 47021, 47034 -> 47031, 47035 -> 47033, 47044 -> 47041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47022,"TargetID":47021,"Directional":true},{"SourceID":47034,"TargetID":47031,"Directional":true},{"SourceID":47035,"TargetID":47033,"Directional":true},{"SourceID":47044,"TargetID":47041,"Directional":true}]},{"ID":13020,"SourceStructureID":26079,"TargetStructureID":84876,"Label":"26079-84876 via Ribbon Synapse from 102910 -> 102913","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":102910,"TargetID":102913,"Directional":true}]},{"ID":13021,"SourceStructureID":26304,"TargetStructureID":284,"Label":"26304-284 via Ribbon Synapse from 26305 -> 26296","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26305,"TargetID":26296,"Directional":true}]},{"ID":13022,"SourceStructureID":26304,"TargetStructureID":456,"Label":"26304-456 via Ribbon Synapse from 26324 -> 26325","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26324,"TargetID":26325,"Directional":true}]},{"ID":13023,"SourceStructureID":26304,"TargetStructureID":7157,"Label":"26304-7157 via Ribbon Synapse from 26307 -> 26303, 26331 -> 26332","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":26307,"TargetID":26303,"Directional":true},{"SourceID":26331,"TargetID":26332,"Directional":true}]},{"ID":13024,"SourceStructureID":26497,"TargetStructureID":26304,"Label":"26497-26304 via Conventional from 44490 -> 44489","Type":"Conventional","Directional":true,"Links":[{"SourceID":44490,"TargetID":44489,"Directional":true}]},{"ID":13025,"SourceStructureID":26971,"TargetStructureID":26971,"Label":"26971-26971 via Cistern Pre from 38144 -> 26985","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":38144,"TargetID":26985,"Directional":true}]},{"ID":13026,"SourceStructureID":27288,"TargetStructureID":485,"Label":"27288-485 via Conventional from 27289 -> 27292","Type":"Conventional","Directional":true,"Links":[{"SourceID":27289,"TargetID":27292,"Directional":true}]},{"ID":13027,"SourceStructureID":27288,"TargetStructureID":13855,"Label":"27288-13855 via Conventional from 27290 -> 27291","Type":"Conventional","Directional":true,"Links":[{"SourceID":27290,"TargetID":27291,"Directional":true}]},{"ID":13028,"SourceStructureID":27288,"TargetStructureID":101452,"Label":"27288-101452 via Conventional from 27300 -> 101453","Type":"Conventional","Directional":true,"Links":[{"SourceID":27300,"TargetID":101453,"Directional":true}]},{"ID":13029,"SourceStructureID":27304,"TargetStructureID":6857,"Label":"27304-6857 via Conventional from 27305 -> 7536","Type":"Conventional","Directional":true,"Links":[{"SourceID":27305,"TargetID":7536,"Directional":true}]},{"ID":13030,"SourceStructureID":28382,"TargetStructureID":6160,"Label":"28382-6160 via Cistern Pre from 37474 -> 37475","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":37474,"TargetID":37475,"Directional":true}]},{"ID":13031,"SourceStructureID":28886,"TargetStructureID":608,"Label":"28886-608 via Ribbon Synapse from 59073 -> 59072","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59073,"TargetID":59072,"Directional":true}]},{"ID":13032,"SourceStructureID":28886,"TargetStructureID":7594,"Label":"28886-7594 via Ribbon Synapse from 51298 -> 7678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51298,"TargetID":7678,"Directional":true}]},{"ID":13033,"SourceStructureID":28886,"TargetStructureID":40482,"Label":"28886-40482 via Ribbon Synapse from 51314 -> 40483","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51314,"TargetID":40483,"Directional":true}]},{"ID":13034,"SourceStructureID":28886,"TargetStructureID":40485,"Label":"28886-40485 via Ribbon Synapse from 51314 -> 40487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51314,"TargetID":40487,"Directional":true}]},{"ID":13035,"SourceStructureID":28886,"TargetStructureID":46842,"Label":"28886-46842 via Ribbon Synapse from 45764 -> 46853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45764,"TargetID":46853,"Directional":true}]},{"ID":13036,"SourceStructureID":28886,"TargetStructureID":99513,"Label":"28886-99513 via Ribbon Synapse from 129639 -> 129636","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129639,"TargetID":129636,"Directional":true}]},{"ID":13037,"SourceStructureID":29277,"TargetStructureID":318,"Label":"29277-318 via Conventional from 29314 -> 29315","Type":"Conventional","Directional":true,"Links":[{"SourceID":29314,"TargetID":29315,"Directional":true}]},{"ID":13038,"SourceStructureID":29277,"TargetStructureID":60657,"Label":"29277-60657 via Conventional from 29322 -> 61429","Type":"Conventional","Directional":true,"Links":[{"SourceID":29322,"TargetID":61429,"Directional":true}]},{"ID":13039,"SourceStructureID":29702,"TargetStructureID":76127,"Label":"29702-76127 via Conventional from 76083 -> 76147","Type":"Conventional","Directional":true,"Links":[{"SourceID":76083,"TargetID":76147,"Directional":true}]},{"ID":13040,"SourceStructureID":29783,"TargetStructureID":2610,"Label":"29783-2610 via Conventional from 29784 -> 2815","Type":"Conventional","Directional":true,"Links":[{"SourceID":29784,"TargetID":2815,"Directional":true}]},{"ID":13041,"SourceStructureID":29783,"TargetStructureID":15100,"Label":"29783-15100 via Conventional from 65235 -> 65236","Type":"Conventional","Directional":true,"Links":[{"SourceID":65235,"TargetID":65236,"Directional":true}]},{"ID":13042,"SourceStructureID":29791,"TargetStructureID":410,"Label":"29791-410 via Conventional from 29797 -> 29790","Type":"Conventional","Directional":true,"Links":[{"SourceID":29797,"TargetID":29790,"Directional":true}]},{"ID":13043,"SourceStructureID":29791,"TargetStructureID":6163,"Label":"29791-6163 via Conventional from 29799 -> 29800, 29801 -> 29802, 29803 -> 29804","Type":"Conventional","Directional":true,"Links":[{"SourceID":29799,"TargetID":29800,"Directional":true},{"SourceID":29801,"TargetID":29802,"Directional":true},{"SourceID":29803,"TargetID":29804,"Directional":true}]},{"ID":13044,"SourceStructureID":29791,"TargetStructureID":6618,"Label":"29791-6618 via Conventional from 29792 -> 29793, 29795 -> 29796","Type":"Conventional","Directional":true,"Links":[{"SourceID":29792,"TargetID":29793,"Directional":true},{"SourceID":29795,"TargetID":29796,"Directional":true}]},{"ID":13045,"SourceStructureID":29805,"TargetStructureID":5345,"Label":"29805-5345 via Conventional from 29806 -> 14593","Type":"Conventional","Directional":true,"Links":[{"SourceID":29806,"TargetID":14593,"Directional":true}]},{"ID":13046,"SourceStructureID":29827,"TargetStructureID":170,"Label":"29827-170 via Conventional from 29832 -> 29831","Type":"Conventional","Directional":true,"Links":[{"SourceID":29832,"TargetID":29831,"Directional":true}]},{"ID":13047,"SourceStructureID":29827,"TargetStructureID":10959,"Label":"29827-10959 via Conventional from 29834 -> 29833","Type":"Conventional","Directional":true,"Links":[{"SourceID":29834,"TargetID":29833,"Directional":true}]},{"ID":13048,"SourceStructureID":30015,"TargetStructureID":330,"Label":"30015-330 via Conventional from 30028 -> 30029, 30034 -> 26172","Type":"Conventional","Directional":true,"Links":[{"SourceID":30028,"TargetID":30029,"Directional":true},{"SourceID":30034,"TargetID":26172,"Directional":true}]},{"ID":13049,"SourceStructureID":30015,"TargetStructureID":341,"Label":"30015-341 via Conventional from 30039 -> 30059, 30051 -> 30049","Type":"Conventional","Directional":true,"Links":[{"SourceID":30039,"TargetID":30059,"Directional":true},{"SourceID":30051,"TargetID":30049,"Directional":true}]},{"ID":13050,"SourceStructureID":30015,"TargetStructureID":101369,"Label":"30015-101369 via Conventional from 30027 -> 101400","Type":"Conventional","Directional":true,"Links":[{"SourceID":30027,"TargetID":101400,"Directional":true}]},{"ID":13051,"SourceStructureID":30102,"TargetStructureID":9769,"Label":"30102-9769 via Ribbon Synapse from 30104 -> 30097","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30104,"TargetID":30097,"Directional":true}]},{"ID":13052,"SourceStructureID":30102,"TargetStructureID":32566,"Label":"30102-32566 via Ribbon Synapse from 32570 -> 32569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32570,"TargetID":32569,"Directional":true}]},{"ID":13053,"SourceStructureID":30102,"TargetStructureID":55212,"Label":"30102-55212 via Ribbon Synapse from 30104 -> 55213","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30104,"TargetID":55213,"Directional":true}]},{"ID":13054,"SourceStructureID":30130,"TargetStructureID":5292,"Label":"30130-5292 via Conventional from 30260 -> 30266","Type":"Conventional","Directional":true,"Links":[{"SourceID":30260,"TargetID":30266,"Directional":true}]},{"ID":13055,"SourceStructureID":30130,"TargetStructureID":5649,"Label":"30130-5649 via Conventional from 30134 -> 30127","Type":"Conventional","Directional":true,"Links":[{"SourceID":30134,"TargetID":30127,"Directional":true}]},{"ID":13056,"SourceStructureID":30130,"TargetStructureID":5650,"Label":"30130-5650 via Conventional from 30253 -> 30254, 30258 -> 30259","Type":"Conventional","Directional":true,"Links":[{"SourceID":30253,"TargetID":30254,"Directional":true},{"SourceID":30258,"TargetID":30259,"Directional":true}]},{"ID":13057,"SourceStructureID":30130,"TargetStructureID":11042,"Label":"30130-11042 via Conventional from 30132 -> 30129","Type":"Conventional","Directional":true,"Links":[{"SourceID":30132,"TargetID":30129,"Directional":true}]},{"ID":13058,"SourceStructureID":30130,"TargetStructureID":11250,"Label":"30130-11250 via Conventional from 30283 -> 30292","Type":"Conventional","Directional":true,"Links":[{"SourceID":30283,"TargetID":30292,"Directional":true}]},{"ID":13059,"SourceStructureID":30177,"TargetStructureID":9769,"Label":"30177-9769 via Ribbon Synapse from 30178 -> 30175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":30178,"TargetID":30175,"Directional":true}]},{"ID":13060,"SourceStructureID":30332,"TargetStructureID":171,"Label":"30332-171 via Conventional from 30333 -> 30330","Type":"Conventional","Directional":true,"Links":[{"SourceID":30333,"TargetID":30330,"Directional":true}]},{"ID":13061,"SourceStructureID":30332,"TargetStructureID":591,"Label":"30332-591 via Conventional from 30334 -> 15441","Type":"Conventional","Directional":true,"Links":[{"SourceID":30334,"TargetID":15441,"Directional":true}]},{"ID":13062,"SourceStructureID":30332,"TargetStructureID":5297,"Label":"30332-5297 via Conventional from 103220 -> 103219","Type":"Conventional","Directional":true,"Links":[{"SourceID":103220,"TargetID":103219,"Directional":true}]},{"ID":13063,"SourceStructureID":30332,"TargetStructureID":5618,"Label":"30332-5618 via Conventional from 30337 -> 66002","Type":"Conventional","Directional":true,"Links":[{"SourceID":30337,"TargetID":66002,"Directional":true}]},{"ID":13064,"SourceStructureID":30332,"TargetStructureID":6115,"Label":"30332-6115 via Conventional from 75186 -> 75187","Type":"Conventional","Directional":true,"Links":[{"SourceID":75186,"TargetID":75187,"Directional":true}]},{"ID":13065,"SourceStructureID":30332,"TargetStructureID":7073,"Label":"30332-7073 via Conventional from 31623 -> 11795","Type":"Conventional","Directional":true,"Links":[{"SourceID":31623,"TargetID":11795,"Directional":true}]},{"ID":13066,"SourceStructureID":30332,"TargetStructureID":7147,"Label":"30332-7147 via Conventional from 31626 -> 31627","Type":"Conventional","Directional":true,"Links":[{"SourceID":31626,"TargetID":31627,"Directional":true}]},{"ID":13067,"SourceStructureID":30370,"TargetStructureID":328,"Label":"30370-328 via Conventional from 30376 -> 30361, 30377 -> 30363","Type":"Conventional","Directional":true,"Links":[{"SourceID":30376,"TargetID":30361,"Directional":true},{"SourceID":30377,"TargetID":30363,"Directional":true}]},{"ID":13068,"SourceStructureID":30370,"TargetStructureID":15979,"Label":"30370-15979 via Conventional from 30372 -> 30373","Type":"Conventional","Directional":true,"Links":[{"SourceID":30372,"TargetID":30373,"Directional":true}]},{"ID":13069,"SourceStructureID":30379,"TargetStructureID":30370,"Label":"30379-30370 via Conventional from 30384 -> 30378","Type":"Conventional","Directional":true,"Links":[{"SourceID":30384,"TargetID":30378,"Directional":true}]},{"ID":13070,"SourceStructureID":30477,"TargetStructureID":294,"Label":"30477-294 via Conventional from 30478 -> 30358","Type":"Conventional","Directional":true,"Links":[{"SourceID":30478,"TargetID":30358,"Directional":true}]},{"ID":13071,"SourceStructureID":30477,"TargetStructureID":380,"Label":"30477-380 via Conventional from 30484 -> 30476","Type":"Conventional","Directional":true,"Links":[{"SourceID":30484,"TargetID":30476,"Directional":true}]},{"ID":13072,"SourceStructureID":30477,"TargetStructureID":485,"Label":"30477-485 via Conventional from 30487 -> 31677","Type":"Conventional","Directional":true,"Links":[{"SourceID":30487,"TargetID":31677,"Directional":true}]},{"ID":13073,"SourceStructureID":30477,"TargetStructureID":516,"Label":"30477-516 via Conventional from 38625 -> 38626","Type":"Conventional","Directional":true,"Links":[{"SourceID":38625,"TargetID":38626,"Directional":true}]},{"ID":13074,"SourceStructureID":30477,"TargetStructureID":517,"Label":"30477-517 via Conventional from 38623 -> 38624","Type":"Conventional","Directional":true,"Links":[{"SourceID":38623,"TargetID":38624,"Directional":true}]},{"ID":13075,"SourceStructureID":30477,"TargetStructureID":8575,"Label":"30477-8575 via Conventional from 30490 -> 38617","Type":"Conventional","Directional":true,"Links":[{"SourceID":30490,"TargetID":38617,"Directional":true}]},{"ID":13076,"SourceStructureID":30477,"TargetStructureID":24401,"Label":"30477-24401 via Conventional from 38628 -> 38629","Type":"Conventional","Directional":true,"Links":[{"SourceID":38628,"TargetID":38629,"Directional":true}]},{"ID":13077,"SourceStructureID":30495,"TargetStructureID":434,"Label":"30495-434 via Conventional from 31876 -> 30494","Type":"Conventional","Directional":true,"Links":[{"SourceID":31876,"TargetID":30494,"Directional":true}]},{"ID":13078,"SourceStructureID":30495,"TargetStructureID":31874,"Label":"30495-31874 via Conventional from 30497 -> 31875","Type":"Conventional","Directional":true,"Links":[{"SourceID":30497,"TargetID":31875,"Directional":true}]},{"ID":13079,"SourceStructureID":30499,"TargetStructureID":464,"Label":"30499-464 via Conventional from 30500 -> 30369","Type":"Conventional","Directional":true,"Links":[{"SourceID":30500,"TargetID":30369,"Directional":true}]},{"ID":13080,"SourceStructureID":30499,"TargetStructureID":468,"Label":"30499-468 via Conventional from 31941 -> 6651","Type":"Conventional","Directional":true,"Links":[{"SourceID":31941,"TargetID":6651,"Directional":true}]},{"ID":13081,"SourceStructureID":30513,"TargetStructureID":142,"Label":"30513-142 via Conventional from 125932 -> 125933","Type":"Conventional","Directional":true,"Links":[{"SourceID":125932,"TargetID":125933,"Directional":true}]},{"ID":13082,"SourceStructureID":30513,"TargetStructureID":516,"Label":"30513-516 via Conventional from 30514 -> 30511","Type":"Conventional","Directional":true,"Links":[{"SourceID":30514,"TargetID":30511,"Directional":true}]},{"ID":13083,"SourceStructureID":30518,"TargetStructureID":5303,"Label":"30518-5303 via Conventional from 30519 -> 30517","Type":"Conventional","Directional":true,"Links":[{"SourceID":30519,"TargetID":30517,"Directional":true}]},{"ID":13084,"SourceStructureID":30567,"TargetStructureID":142,"Label":"30567-142 via Conventional from 32078 -> 32079, 32082 -> 32085, 49757 -> 49756","Type":"Conventional","Directional":true,"Links":[{"SourceID":32078,"TargetID":32079,"Directional":true},{"SourceID":32082,"TargetID":32085,"Directional":true},{"SourceID":49757,"TargetID":49756,"Directional":true}]},{"ID":13085,"SourceStructureID":30567,"TargetStructureID":176,"Label":"30567-176 via Conventional from 32089 -> 124759","Type":"Conventional","Directional":true,"Links":[{"SourceID":32089,"TargetID":124759,"Directional":true}]},{"ID":13086,"SourceStructureID":30567,"TargetStructureID":517,"Label":"30567-517 via Conventional from 30568 -> 6902","Type":"Conventional","Directional":true,"Links":[{"SourceID":30568,"TargetID":6902,"Directional":true}]},{"ID":13087,"SourceStructureID":30567,"TargetStructureID":909,"Label":"30567-909 via Conventional from 30646 -> 30653","Type":"Conventional","Directional":true,"Links":[{"SourceID":30646,"TargetID":30653,"Directional":true}]},{"ID":13088,"SourceStructureID":30567,"TargetStructureID":1637,"Label":"30567-1637 via Conventional from 30657 -> 1723","Type":"Conventional","Directional":true,"Links":[{"SourceID":30657,"TargetID":1723,"Directional":true}]},{"ID":13089,"SourceStructureID":30567,"TargetStructureID":5279,"Label":"30567-5279 via Conventional from 30644 -> 30645, 96427 -> 96426","Type":"Conventional","Directional":true,"Links":[{"SourceID":30644,"TargetID":30645,"Directional":true},{"SourceID":96427,"TargetID":96426,"Directional":true}]},{"ID":13090,"SourceStructureID":30567,"TargetStructureID":5297,"Label":"30567-5297 via Conventional from 32081 -> 56815","Type":"Conventional","Directional":true,"Links":[{"SourceID":32081,"TargetID":56815,"Directional":true}]},{"ID":13091,"SourceStructureID":30567,"TargetStructureID":5513,"Label":"30567-5513 via Conventional from 30660 -> 30672","Type":"Conventional","Directional":true,"Links":[{"SourceID":30660,"TargetID":30672,"Directional":true}]},{"ID":13092,"SourceStructureID":30567,"TargetStructureID":5517,"Label":"30567-5517 via Conventional from 49512 -> 49510","Type":"Conventional","Directional":true,"Links":[{"SourceID":49512,"TargetID":49510,"Directional":true}]},{"ID":13093,"SourceStructureID":30567,"TargetStructureID":6050,"Label":"30567-6050 via Conventional from 113569 -> 113568","Type":"Conventional","Directional":true,"Links":[{"SourceID":113569,"TargetID":113568,"Directional":true}]},{"ID":13094,"SourceStructureID":30567,"TargetStructureID":6117,"Label":"30567-6117 via Conventional from 30569 -> 30570, 84962 -> 84963","Type":"Conventional","Directional":true,"Links":[{"SourceID":30569,"TargetID":30570,"Directional":true},{"SourceID":84962,"TargetID":84963,"Directional":true}]},{"ID":13095,"SourceStructureID":30567,"TargetStructureID":66523,"Label":"30567-66523 via Conventional from 74315 -> 74316","Type":"Conventional","Directional":true,"Links":[{"SourceID":74315,"TargetID":74316,"Directional":true}]},{"ID":13096,"SourceStructureID":31024,"TargetStructureID":31024,"Label":"31024-31024 via Ribbon Synapse from 130895 -> 130897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130895,"TargetID":130897,"Directional":true}]},{"ID":13097,"SourceStructureID":31024,"TargetStructureID":67290,"Label":"31024-67290 via Ribbon Synapse from 130895 -> 67292","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130895,"TargetID":67292,"Directional":true}]},{"ID":13098,"SourceStructureID":31024,"TargetStructureID":67291,"Label":"31024-67291 via Ribbon Synapse from 130895 -> 67293","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130895,"TargetID":67293,"Directional":true}]},{"ID":13099,"SourceStructureID":31157,"TargetStructureID":31024,"Label":"31157-31024 via Ribbon Synapse from 31158 -> 31156","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31158,"TargetID":31156,"Directional":true}]},{"ID":13100,"SourceStructureID":31161,"TargetStructureID":608,"Label":"31161-608 via Conventional from 31188 -> 31190, 31223 -> 31224","Type":"Conventional","Directional":true,"Links":[{"SourceID":31188,"TargetID":31190,"Directional":true},{"SourceID":31223,"TargetID":31224,"Directional":true}]},{"ID":13101,"SourceStructureID":31161,"TargetStructureID":31024,"Label":"31161-31024 via Conventional from 31162 -> 31075, 31165 -> 31164, 31169 -> 31109, 31173 -> 31172, 31176 -> 31114, 31177 -> 31115, 31222 -> 31078, 31225 -> 31228, 31226 -> 31227, 31231 -> 31232, 31240 -> 31029, 31243 -> 31242, 31245 -> 31246, 31254 -> 31065, 65496 -> 65497","Type":"Conventional","Directional":true,"Links":[{"SourceID":31162,"TargetID":31075,"Directional":true},{"SourceID":31165,"TargetID":31164,"Directional":true},{"SourceID":31169,"TargetID":31109,"Directional":true},{"SourceID":31173,"TargetID":31172,"Directional":true},{"SourceID":31176,"TargetID":31114,"Directional":true},{"SourceID":31177,"TargetID":31115,"Directional":true},{"SourceID":31222,"TargetID":31078,"Directional":true},{"SourceID":31225,"TargetID":31228,"Directional":true},{"SourceID":31226,"TargetID":31227,"Directional":true},{"SourceID":31231,"TargetID":31232,"Directional":true},{"SourceID":31240,"TargetID":31029,"Directional":true},{"SourceID":31243,"TargetID":31242,"Directional":true},{"SourceID":31245,"TargetID":31246,"Directional":true},{"SourceID":31254,"TargetID":31065,"Directional":true},{"SourceID":65496,"TargetID":65497,"Directional":true}]},{"ID":13102,"SourceStructureID":31161,"TargetStructureID":33092,"Label":"31161-33092 via Conventional from 31214 -> 99210","Type":"Conventional","Directional":true,"Links":[{"SourceID":31214,"TargetID":99210,"Directional":true}]},{"ID":13103,"SourceStructureID":31161,"TargetStructureID":36516,"Label":"31161-36516 via Conventional from 36618 -> 36617","Type":"Conventional","Directional":true,"Links":[{"SourceID":36618,"TargetID":36617,"Directional":true}]},{"ID":13104,"SourceStructureID":31161,"TargetStructureID":61836,"Label":"31161-61836 via Conventional from 31230 -> 68116","Type":"Conventional","Directional":true,"Links":[{"SourceID":31230,"TargetID":68116,"Directional":true}]},{"ID":13105,"SourceStructureID":31161,"TargetStructureID":66828,"Label":"31161-66828 via Conventional from 66833 -> 66832","Type":"Conventional","Directional":true,"Links":[{"SourceID":66833,"TargetID":66832,"Directional":true}]},{"ID":13106,"SourceStructureID":31161,"TargetStructureID":69162,"Label":"31161-69162 via Conventional from 69195 -> 69196","Type":"Conventional","Directional":true,"Links":[{"SourceID":69195,"TargetID":69196,"Directional":true}]},{"ID":13107,"SourceStructureID":31261,"TargetStructureID":5645,"Label":"31261-5645 via Conventional from 31266 -> 31268","Type":"Conventional","Directional":true,"Links":[{"SourceID":31266,"TargetID":31268,"Directional":true}]},{"ID":13108,"SourceStructureID":31261,"TargetStructureID":6857,"Label":"31261-6857 via Conventional from 31262 -> 7559","Type":"Conventional","Directional":true,"Links":[{"SourceID":31262,"TargetID":7559,"Directional":true}]},{"ID":13109,"SourceStructureID":31305,"TargetStructureID":9183,"Label":"31305-9183 via Conventional from 31312 -> 31304","Type":"Conventional","Directional":true,"Links":[{"SourceID":31312,"TargetID":31304,"Directional":true}]},{"ID":13110,"SourceStructureID":31305,"TargetStructureID":101651,"Label":"31305-101651 via Conventional from 101648 -> 101652","Type":"Conventional","Directional":true,"Links":[{"SourceID":101648,"TargetID":101652,"Directional":true}]},{"ID":13111,"SourceStructureID":31334,"TargetStructureID":5645,"Label":"31334-5645 via Conventional from 31340 -> 31341","Type":"Conventional","Directional":true,"Links":[{"SourceID":31340,"TargetID":31341,"Directional":true}]},{"ID":13112,"SourceStructureID":31334,"TargetStructureID":9183,"Label":"31334-9183 via Conventional from 31338 -> 31339","Type":"Conventional","Directional":true,"Links":[{"SourceID":31338,"TargetID":31339,"Directional":true}]},{"ID":13113,"SourceStructureID":31356,"TargetStructureID":9183,"Label":"31356-9183 via Conventional from 32760 -> 31355","Type":"Conventional","Directional":true,"Links":[{"SourceID":32760,"TargetID":31355,"Directional":true}]},{"ID":13114,"SourceStructureID":31356,"TargetStructureID":31161,"Label":"31356-31161 via Conventional from 32759 -> 31178","Type":"Conventional","Directional":true,"Links":[{"SourceID":32759,"TargetID":31178,"Directional":true}]},{"ID":13115,"SourceStructureID":31389,"TargetStructureID":5609,"Label":"31389-5609 via Conventional from 31397 -> 31388","Type":"Conventional","Directional":true,"Links":[{"SourceID":31397,"TargetID":31388,"Directional":true}]},{"ID":13116,"SourceStructureID":31399,"TargetStructureID":4570,"Label":"31399-4570 via Conventional from 31403 -> 31404","Type":"Conventional","Directional":true,"Links":[{"SourceID":31403,"TargetID":31404,"Directional":true}]},{"ID":13117,"SourceStructureID":31399,"TargetStructureID":79317,"Label":"31399-79317 via Conventional from 31405 -> 99006","Type":"Conventional","Directional":true,"Links":[{"SourceID":31405,"TargetID":99006,"Directional":true}]},{"ID":13118,"SourceStructureID":31430,"TargetStructureID":6997,"Label":"31430-6997 via Conventional from 31433 -> 31436","Type":"Conventional","Directional":true,"Links":[{"SourceID":31433,"TargetID":31436,"Directional":true}]},{"ID":13119,"SourceStructureID":31465,"TargetStructureID":10142,"Label":"31465-10142 via Conventional from 31466 -> 31464","Type":"Conventional","Directional":true,"Links":[{"SourceID":31466,"TargetID":31464,"Directional":true}]},{"ID":13120,"SourceStructureID":31471,"TargetStructureID":5535,"Label":"31471-5535 via Conventional from 31476 -> 38442, 31478 -> 31479","Type":"Conventional","Directional":true,"Links":[{"SourceID":31476,"TargetID":38442,"Directional":true},{"SourceID":31478,"TargetID":31479,"Directional":true}]},{"ID":13121,"SourceStructureID":31471,"TargetStructureID":10142,"Label":"31471-10142 via Conventional from 31472 -> 31470","Type":"Conventional","Directional":true,"Links":[{"SourceID":31472,"TargetID":31470,"Directional":true}]},{"ID":13122,"SourceStructureID":31471,"TargetStructureID":10964,"Label":"31471-10964 via Conventional from 31480 -> 31490","Type":"Conventional","Directional":true,"Links":[{"SourceID":31480,"TargetID":31490,"Directional":true}]},{"ID":13123,"SourceStructureID":31471,"TargetStructureID":58592,"Label":"31471-58592 via Conventional from 31497 -> 58670","Type":"Conventional","Directional":true,"Links":[{"SourceID":31497,"TargetID":58670,"Directional":true}]},{"ID":13124,"SourceStructureID":31483,"TargetStructureID":10964,"Label":"31483-10964 via Conventional from 31484 -> 31482","Type":"Conventional","Directional":true,"Links":[{"SourceID":31484,"TargetID":31482,"Directional":true}]},{"ID":13125,"SourceStructureID":31486,"TargetStructureID":172,"Label":"31486-172 via Conventional from 31533 -> 31634","Type":"Conventional","Directional":true,"Links":[{"SourceID":31533,"TargetID":31634,"Directional":true}]},{"ID":13126,"SourceStructureID":31486,"TargetStructureID":6128,"Label":"31486-6128 via Conventional from 31513 -> 21042","Type":"Conventional","Directional":true,"Links":[{"SourceID":31513,"TargetID":21042,"Directional":true}]},{"ID":13127,"SourceStructureID":31603,"TargetStructureID":31605,"Label":"31603-31605 via Conventional from 31604 -> 31615","Type":"Conventional","Directional":true,"Links":[{"SourceID":31604,"TargetID":31615,"Directional":true}]},{"ID":13128,"SourceStructureID":31665,"TargetStructureID":352,"Label":"31665-352 via Conventional from 31666 -> 20669","Type":"Conventional","Directional":true,"Links":[{"SourceID":31666,"TargetID":20669,"Directional":true}]},{"ID":13129,"SourceStructureID":31679,"TargetStructureID":277,"Label":"31679-277 via Conventional from 31691 -> 26410","Type":"Conventional","Directional":true,"Links":[{"SourceID":31691,"TargetID":26410,"Directional":true}]},{"ID":13130,"SourceStructureID":31679,"TargetStructureID":327,"Label":"31679-327 via Conventional from 31684 -> 31687","Type":"Conventional","Directional":true,"Links":[{"SourceID":31684,"TargetID":31687,"Directional":true}]},{"ID":13131,"SourceStructureID":31679,"TargetStructureID":328,"Label":"31679-328 via Conventional from 31680 -> 31681","Type":"Conventional","Directional":true,"Links":[{"SourceID":31680,"TargetID":31681,"Directional":true}]},{"ID":13132,"SourceStructureID":31694,"TargetStructureID":277,"Label":"31694-277 via Conventional from 31696 -> 26418, 31697 -> 26013","Type":"Conventional","Directional":true,"Links":[{"SourceID":31696,"TargetID":26418,"Directional":true},{"SourceID":31697,"TargetID":26013,"Directional":true}]},{"ID":13133,"SourceStructureID":31694,"TargetStructureID":280,"Label":"31694-280 via Conventional from 31695 -> 31693","Type":"Conventional","Directional":true,"Links":[{"SourceID":31695,"TargetID":31693,"Directional":true}]},{"ID":13134,"SourceStructureID":31700,"TargetStructureID":268,"Label":"31700-268 via Conventional from 45613 -> 45614","Type":"Conventional","Directional":true,"Links":[{"SourceID":45613,"TargetID":45614,"Directional":true}]},{"ID":13135,"SourceStructureID":31700,"TargetStructureID":330,"Label":"31700-330 via Conventional from 119080 -> 119081","Type":"Conventional","Directional":true,"Links":[{"SourceID":119080,"TargetID":119081,"Directional":true}]},{"ID":13136,"SourceStructureID":31700,"TargetStructureID":342,"Label":"31700-342 via Conventional from 31701 -> 31698, 64487 -> 64488","Type":"Conventional","Directional":true,"Links":[{"SourceID":31701,"TargetID":31698,"Directional":true},{"SourceID":64487,"TargetID":64488,"Directional":true}]},{"ID":13137,"SourceStructureID":31700,"TargetStructureID":345,"Label":"31700-345 via Conventional from 118993 -> 118994","Type":"Conventional","Directional":true,"Links":[{"SourceID":118993,"TargetID":118994,"Directional":true}]},{"ID":13138,"SourceStructureID":31702,"TargetStructureID":342,"Label":"31702-342 via Conventional from 31703 -> 31699","Type":"Conventional","Directional":true,"Links":[{"SourceID":31703,"TargetID":31699,"Directional":true}]},{"ID":13139,"SourceStructureID":31702,"TargetStructureID":344,"Label":"31702-344 via Conventional from 31717 -> 31721","Type":"Conventional","Directional":true,"Links":[{"SourceID":31717,"TargetID":31721,"Directional":true}]},{"ID":13140,"SourceStructureID":31702,"TargetStructureID":34055,"Label":"31702-34055 via Conventional from 39997 -> 34058","Type":"Conventional","Directional":true,"Links":[{"SourceID":39997,"TargetID":34058,"Directional":true}]},{"ID":13141,"SourceStructureID":31710,"TargetStructureID":606,"Label":"31710-606 via Ribbon Synapse from 52670 -> 52669","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52670,"TargetID":52669,"Directional":true}]},{"ID":13142,"SourceStructureID":31710,"TargetStructureID":9769,"Label":"31710-9769 via Ribbon Synapse from 55329 -> 12445","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55329,"TargetID":12445,"Directional":true}]},{"ID":13143,"SourceStructureID":31710,"TargetStructureID":31700,"Label":"31710-31700 via Ribbon Synapse from 31712 -> 31709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31712,"TargetID":31709,"Directional":true}]},{"ID":13144,"SourceStructureID":31710,"TargetStructureID":55319,"Label":"31710-55319 via Ribbon Synapse from 55323 -> 55324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55323,"TargetID":55324,"Directional":true}]},{"ID":13145,"SourceStructureID":31710,"TargetStructureID":89851,"Label":"31710-89851 via Ribbon Synapse from 52670 -> 89856, 89859 -> 89857","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52670,"TargetID":89856,"Directional":true},{"SourceID":89859,"TargetID":89857,"Directional":true}]},{"ID":13146,"SourceStructureID":31804,"TargetStructureID":365,"Label":"31804-365 via Conventional from 31806 -> 31805","Type":"Conventional","Directional":true,"Links":[{"SourceID":31806,"TargetID":31805,"Directional":true}]},{"ID":13147,"SourceStructureID":31874,"TargetStructureID":4835,"Label":"31874-4835 via Ribbon Synapse from 31883 -> 31884","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31883,"TargetID":31884,"Directional":true}]},{"ID":13148,"SourceStructureID":31915,"TargetStructureID":460,"Label":"31915-460 via Conventional from 31921 -> 31924","Type":"Conventional","Directional":true,"Links":[{"SourceID":31921,"TargetID":31924,"Directional":true}]},{"ID":13149,"SourceStructureID":31915,"TargetStructureID":10963,"Label":"31915-10963 via Conventional from 31927 -> 31937","Type":"Conventional","Directional":true,"Links":[{"SourceID":31927,"TargetID":31937,"Directional":true}]},{"ID":13150,"SourceStructureID":31915,"TargetStructureID":30499,"Label":"31915-30499 via Conventional from 31916 -> 30501","Type":"Conventional","Directional":true,"Links":[{"SourceID":31916,"TargetID":30501,"Directional":true}]},{"ID":13151,"SourceStructureID":31931,"TargetStructureID":5544,"Label":"31931-5544 via Conventional from 31933 -> 31934","Type":"Conventional","Directional":true,"Links":[{"SourceID":31933,"TargetID":31934,"Directional":true}]},{"ID":13152,"SourceStructureID":31931,"TargetStructureID":5634,"Label":"31931-5634 via Conventional from 31932 -> 8741","Type":"Conventional","Directional":true,"Links":[{"SourceID":31932,"TargetID":8741,"Directional":true}]},{"ID":13153,"SourceStructureID":31944,"TargetStructureID":5413,"Label":"31944-5413 via Ribbon Synapse from 31945 -> 31946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":31945,"TargetID":31946,"Directional":true}]},{"ID":13154,"SourceStructureID":31944,"TargetStructureID":128015,"Label":"31944-128015 via Ribbon Synapse from 128059 -> 128058","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":128059,"TargetID":128058,"Directional":true}]},{"ID":13155,"SourceStructureID":31960,"TargetStructureID":422,"Label":"31960-422 via Conventional from 31963 -> 5702, 31966 -> 5704, 31967 -> 87879, 31968 -> 5706","Type":"Conventional","Directional":true,"Links":[{"SourceID":31963,"TargetID":5702,"Directional":true},{"SourceID":31966,"TargetID":5704,"Directional":true},{"SourceID":31967,"TargetID":87879,"Directional":true},{"SourceID":31968,"TargetID":5706,"Directional":true}]},{"ID":13156,"SourceStructureID":31969,"TargetStructureID":471,"Label":"31969-471 via Conventional from 31970 -> 30510","Type":"Conventional","Directional":true,"Links":[{"SourceID":31970,"TargetID":30510,"Directional":true}]},{"ID":13157,"SourceStructureID":31994,"TargetStructureID":14291,"Label":"31994-14291 via Conventional from 31995 -> 31993","Type":"Conventional","Directional":true,"Links":[{"SourceID":31995,"TargetID":31993,"Directional":true}]},{"ID":13158,"SourceStructureID":31994,"TargetStructureID":19203,"Label":"31994-19203 via Conventional from 31997 -> 31998","Type":"Conventional","Directional":true,"Links":[{"SourceID":31997,"TargetID":31998,"Directional":true}]},{"ID":13159,"SourceStructureID":32035,"TargetStructureID":516,"Label":"32035-516 via Conventional from 32036 -> 30512","Type":"Conventional","Directional":true,"Links":[{"SourceID":32036,"TargetID":30512,"Directional":true}]},{"ID":13160,"SourceStructureID":32035,"TargetStructureID":6117,"Label":"32035-6117 via Conventional from 41663 -> 30901, 41668 -> 30900","Type":"Conventional","Directional":true,"Links":[{"SourceID":41663,"TargetID":30901,"Directional":true},{"SourceID":41668,"TargetID":30900,"Directional":true}]},{"ID":13161,"SourceStructureID":32046,"TargetStructureID":422,"Label":"32046-422 via Conventional from 32057 -> 32058","Type":"Conventional","Directional":true,"Links":[{"SourceID":32057,"TargetID":32058,"Directional":true}]},{"ID":13162,"SourceStructureID":32046,"TargetStructureID":516,"Label":"32046-516 via Conventional from 32049 -> 32050, 32052 -> 32051, 39233 -> 39235, 39234 -> 39236, 39237 -> 39238","Type":"Conventional","Directional":true,"Links":[{"SourceID":32049,"TargetID":32050,"Directional":true},{"SourceID":32052,"TargetID":32051,"Directional":true},{"SourceID":39233,"TargetID":39235,"Directional":true},{"SourceID":39234,"TargetID":39236,"Directional":true},{"SourceID":39237,"TargetID":39238,"Directional":true}]},{"ID":13163,"SourceStructureID":32141,"TargetStructureID":518,"Label":"32141-518 via Conventional from 32142 -> 3348","Type":"Conventional","Directional":true,"Links":[{"SourceID":32142,"TargetID":3348,"Directional":true}]},{"ID":13164,"SourceStructureID":32147,"TargetStructureID":32144,"Label":"32147-32144 via Conventional from 32149 -> 32146","Type":"Conventional","Directional":true,"Links":[{"SourceID":32149,"TargetID":32146,"Directional":true}]},{"ID":13165,"SourceStructureID":32147,"TargetStructureID":45672,"Label":"32147-45672 via Conventional from 32148 -> 127756","Type":"Conventional","Directional":true,"Links":[{"SourceID":32148,"TargetID":127756,"Directional":true}]},{"ID":13166,"SourceStructureID":32160,"TargetStructureID":519,"Label":"32160-519 via Conventional from 32162 -> 32159","Type":"Conventional","Directional":true,"Links":[{"SourceID":32162,"TargetID":32159,"Directional":true}]},{"ID":13167,"SourceStructureID":32160,"TargetStructureID":6617,"Label":"32160-6617 via Conventional from 32171 -> 6620","Type":"Conventional","Directional":true,"Links":[{"SourceID":32171,"TargetID":6620,"Directional":true}]},{"ID":13168,"SourceStructureID":32160,"TargetStructureID":8575,"Label":"32160-8575 via Conventional from 32174 -> 21639","Type":"Conventional","Directional":true,"Links":[{"SourceID":32174,"TargetID":21639,"Directional":true}]},{"ID":13169,"SourceStructureID":32172,"TargetStructureID":419,"Label":"32172-419 via Conventional from 32185 -> 32186","Type":"Conventional","Directional":true,"Links":[{"SourceID":32185,"TargetID":32186,"Directional":true}]},{"ID":13170,"SourceStructureID":32172,"TargetStructureID":6617,"Label":"32172-6617 via Conventional from 32173 -> 6621, 64340 -> 26873","Type":"Conventional","Directional":true,"Links":[{"SourceID":32173,"TargetID":6621,"Directional":true},{"SourceID":64340,"TargetID":26873,"Directional":true}]},{"ID":13171,"SourceStructureID":32187,"TargetStructureID":6617,"Label":"32187-6617 via Conventional from 32188 -> 6622","Type":"Conventional","Directional":true,"Links":[{"SourceID":32188,"TargetID":6622,"Directional":true}]},{"ID":13172,"SourceStructureID":32227,"TargetStructureID":519,"Label":"32227-519 via Conventional from 32228 -> 9294","Type":"Conventional","Directional":true,"Links":[{"SourceID":32228,"TargetID":9294,"Directional":true}]},{"ID":13173,"SourceStructureID":32227,"TargetStructureID":1724,"Label":"32227-1724 via Conventional from 32232 -> 3986, 101859 -> 101860","Type":"Conventional","Directional":true,"Links":[{"SourceID":32232,"TargetID":3986,"Directional":true},{"SourceID":101859,"TargetID":101860,"Directional":true}]},{"ID":13174,"SourceStructureID":32258,"TargetStructureID":39957,"Label":"32258-39957 via Ribbon Synapse from 58457 -> 58454","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58457,"TargetID":58454,"Directional":true}]},{"ID":13175,"SourceStructureID":32273,"TargetStructureID":447,"Label":"32273-447 via Conventional from 32279 -> 32278","Type":"Conventional","Directional":true,"Links":[{"SourceID":32279,"TargetID":32278,"Directional":true}]},{"ID":13176,"SourceStructureID":32273,"TargetStructureID":21779,"Label":"32273-21779 via Conventional from 32274 -> 32092, 32282 -> 32121","Type":"Conventional","Directional":true,"Links":[{"SourceID":32274,"TargetID":32092,"Directional":true},{"SourceID":32282,"TargetID":32121,"Directional":true}]},{"ID":13177,"SourceStructureID":32312,"TargetStructureID":579,"Label":"32312-579 via Conventional from 32313 -> 32314, 32319 -> 11039","Type":"Conventional","Directional":true,"Links":[{"SourceID":32313,"TargetID":32314,"Directional":true},{"SourceID":32319,"TargetID":11039,"Directional":true}]},{"ID":13178,"SourceStructureID":32354,"TargetStructureID":32359,"Label":"32354-32359 via Conventional from 32362 -> 32363","Type":"Conventional","Directional":true,"Links":[{"SourceID":32362,"TargetID":32363,"Directional":true}]},{"ID":13179,"SourceStructureID":32359,"TargetStructureID":6128,"Label":"32359-6128 via Adherens from 41683 -> 21085","Type":"Adherens","Directional":true,"Links":[{"SourceID":41683,"TargetID":21085,"Directional":true}]},{"ID":13180,"SourceStructureID":32359,"TargetStructureID":7225,"Label":"32359-7225 via Ribbon Synapse from 41337 -> 41338","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41337,"TargetID":41338,"Directional":true}]},{"ID":13181,"SourceStructureID":32359,"TargetStructureID":7859,"Label":"32359-7859 via Ribbon Synapse from 32369 -> 84730, 41381 -> 84712","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32369,"TargetID":84730,"Directional":true},{"SourceID":41381,"TargetID":84712,"Directional":true}]},{"ID":13182,"SourceStructureID":32359,"TargetStructureID":8504,"Label":"32359-8504 via Ribbon Synapse from 41342 -> 8707, 45014 -> 8708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41342,"TargetID":8707,"Directional":true},{"SourceID":45014,"TargetID":8708,"Directional":true}]},{"ID":13183,"SourceStructureID":32359,"TargetStructureID":28950,"Label":"32359-28950 via Ribbon Synapse from 41639 -> 28964","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41639,"TargetID":28964,"Directional":true}]},{"ID":13184,"SourceStructureID":32359,"TargetStructureID":32354,"Label":"32359-32354 via Ribbon Synapse from 32366 -> 32367, 32369 -> 32370","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32366,"TargetID":32367,"Directional":true},{"SourceID":32369,"TargetID":32370,"Directional":true}]},{"ID":13185,"SourceStructureID":32359,"TargetStructureID":35681,"Label":"32359-35681 via Ribbon Synapse from 35717 -> 35716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35717,"TargetID":35716,"Directional":true}]},{"ID":13186,"SourceStructureID":32359,"TargetStructureID":42776,"Label":"32359-42776 via Ribbon Synapse from 41335 -> 42777","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41335,"TargetID":42777,"Directional":true}]},{"ID":13187,"SourceStructureID":32371,"TargetStructureID":516,"Label":"32371-516 via Conventional from 32372 -> 3746, 32373 -> 3741, 32374 -> 3748, 64567 -> 64568","Type":"Conventional","Directional":true,"Links":[{"SourceID":32372,"TargetID":3746,"Directional":true},{"SourceID":32373,"TargetID":3741,"Directional":true},{"SourceID":32374,"TargetID":3748,"Directional":true},{"SourceID":64567,"TargetID":64568,"Directional":true}]},{"ID":13188,"SourceStructureID":32379,"TargetStructureID":483,"Label":"32379-483 via Conventional from 100618 -> 6801","Type":"Conventional","Directional":true,"Links":[{"SourceID":100618,"TargetID":6801,"Directional":true}]},{"ID":13189,"SourceStructureID":32379,"TargetStructureID":485,"Label":"32379-485 via Conventional from 100609 -> 100610","Type":"Conventional","Directional":true,"Links":[{"SourceID":100609,"TargetID":100610,"Directional":true}]},{"ID":13190,"SourceStructureID":32379,"TargetStructureID":6912,"Label":"32379-6912 via Conventional from 32382 -> 26843","Type":"Conventional","Directional":true,"Links":[{"SourceID":32382,"TargetID":26843,"Directional":true}]},{"ID":13191,"SourceStructureID":32379,"TargetStructureID":15100,"Label":"32379-15100 via Conventional from 32380 -> 32381","Type":"Conventional","Directional":true,"Links":[{"SourceID":32380,"TargetID":32381,"Directional":true}]},{"ID":13192,"SourceStructureID":32383,"TargetStructureID":142,"Label":"32383-142 via Conventional from 101699 -> 92143","Type":"Conventional","Directional":true,"Links":[{"SourceID":101699,"TargetID":92143,"Directional":true}]},{"ID":13193,"SourceStructureID":32383,"TargetStructureID":1724,"Label":"32383-1724 via Conventional from 99548 -> 1790, 101505 -> 101506","Type":"Conventional","Directional":true,"Links":[{"SourceID":99548,"TargetID":1790,"Directional":true},{"SourceID":101505,"TargetID":101506,"Directional":true}]},{"ID":13194,"SourceStructureID":32383,"TargetStructureID":5017,"Label":"32383-5017 via Conventional from 32385 -> 5045","Type":"Conventional","Directional":true,"Links":[{"SourceID":32385,"TargetID":5045,"Directional":true}]},{"ID":13195,"SourceStructureID":32383,"TargetStructureID":5279,"Label":"32383-5279 via Conventional from 92703 -> 92702, 98049 -> 25828","Type":"Conventional","Directional":true,"Links":[{"SourceID":92703,"TargetID":92702,"Directional":true},{"SourceID":98049,"TargetID":25828,"Directional":true}]},{"ID":13196,"SourceStructureID":32383,"TargetStructureID":5513,"Label":"32383-5513 via Conventional from 35175 -> 40166","Type":"Conventional","Directional":true,"Links":[{"SourceID":35175,"TargetID":40166,"Directional":true}]},{"ID":13197,"SourceStructureID":32405,"TargetStructureID":176,"Label":"32405-176 via Conventional from 38525 -> 5880","Type":"Conventional","Directional":true,"Links":[{"SourceID":38525,"TargetID":5880,"Directional":true}]},{"ID":13198,"SourceStructureID":32405,"TargetStructureID":5531,"Label":"32405-5531 via Conventional from 107528 -> 107529","Type":"Conventional","Directional":true,"Links":[{"SourceID":107528,"TargetID":107529,"Directional":true}]},{"ID":13199,"SourceStructureID":32405,"TargetStructureID":5595,"Label":"32405-5595 via Conventional from 32406 -> 32407","Type":"Conventional","Directional":true,"Links":[{"SourceID":32406,"TargetID":32407,"Directional":true}]},{"ID":13200,"SourceStructureID":32405,"TargetStructureID":5598,"Label":"32405-5598 via Conventional from 32415 -> 32419","Type":"Conventional","Directional":true,"Links":[{"SourceID":32415,"TargetID":32419,"Directional":true}]},{"ID":13201,"SourceStructureID":32405,"TargetStructureID":32409,"Label":"32405-32409 via Conventional from 32408 -> 32414","Type":"Conventional","Directional":true,"Links":[{"SourceID":32408,"TargetID":32414,"Directional":true}]},{"ID":13202,"SourceStructureID":32405,"TargetStructureID":62396,"Label":"32405-62396 via Conventional from 36027 -> 62405","Type":"Conventional","Directional":true,"Links":[{"SourceID":36027,"TargetID":62405,"Directional":true}]},{"ID":13203,"SourceStructureID":32409,"TargetStructureID":5601,"Label":"32409-5601 via Conventional from 32412 -> 32413","Type":"Conventional","Directional":true,"Links":[{"SourceID":32412,"TargetID":32413,"Directional":true}]},{"ID":13204,"SourceStructureID":32422,"TargetStructureID":5595,"Label":"32422-5595 via Conventional from 32423 -> 15281","Type":"Conventional","Directional":true,"Links":[{"SourceID":32423,"TargetID":15281,"Directional":true}]},{"ID":13205,"SourceStructureID":32445,"TargetStructureID":7114,"Label":"32445-7114 via Conventional from 32446 -> 32443","Type":"Conventional","Directional":true,"Links":[{"SourceID":32446,"TargetID":32443,"Directional":true}]},{"ID":13206,"SourceStructureID":32451,"TargetStructureID":5530,"Label":"32451-5530 via Conventional from 32455 -> 32456, 81285 -> 81286, 81647 -> 81648","Type":"Conventional","Directional":true,"Links":[{"SourceID":32455,"TargetID":32456,"Directional":true},{"SourceID":81285,"TargetID":81286,"Directional":true},{"SourceID":81647,"TargetID":81648,"Directional":true}]},{"ID":13207,"SourceStructureID":32451,"TargetStructureID":5614,"Label":"32451-5614 via Conventional from 32452 -> 8732","Type":"Conventional","Directional":true,"Links":[{"SourceID":32452,"TargetID":8732,"Directional":true}]},{"ID":13208,"SourceStructureID":32465,"TargetStructureID":5614,"Label":"32465-5614 via Conventional from 32466 -> 5619","Type":"Conventional","Directional":true,"Links":[{"SourceID":32466,"TargetID":5619,"Directional":true}]},{"ID":13209,"SourceStructureID":32477,"TargetStructureID":5565,"Label":"32477-5565 via Conventional from 32479 -> 32487, 32488 -> 32489, 122605 -> 50186, 122608 -> 50198, 122609 -> 50202, 122612 -> 50213","Type":"Conventional","Directional":true,"Links":[{"SourceID":32479,"TargetID":32487,"Directional":true},{"SourceID":32488,"TargetID":32489,"Directional":true},{"SourceID":122605,"TargetID":50186,"Directional":true},{"SourceID":122608,"TargetID":50198,"Directional":true},{"SourceID":122609,"TargetID":50202,"Directional":true},{"SourceID":122612,"TargetID":50213,"Directional":true}]},{"ID":13210,"SourceStructureID":32477,"TargetStructureID":5923,"Label":"32477-5923 via Conventional from 32478 -> 32476","Type":"Conventional","Directional":true,"Links":[{"SourceID":32478,"TargetID":32476,"Directional":true}]},{"ID":13211,"SourceStructureID":32477,"TargetStructureID":6118,"Label":"32477-6118 via Conventional from 32494 -> 32497, 32498 -> 65907","Type":"Conventional","Directional":true,"Links":[{"SourceID":32494,"TargetID":32497,"Directional":true},{"SourceID":32498,"TargetID":65907,"Directional":true}]},{"ID":13212,"SourceStructureID":32477,"TargetStructureID":6120,"Label":"32477-6120 via Conventional from 32503 -> 32505","Type":"Conventional","Directional":true,"Links":[{"SourceID":32503,"TargetID":32505,"Directional":true}]},{"ID":13213,"SourceStructureID":32477,"TargetStructureID":32513,"Label":"32477-32513 via Conventional from 32511 -> 32514","Type":"Conventional","Directional":true,"Links":[{"SourceID":32511,"TargetID":32514,"Directional":true}]},{"ID":13214,"SourceStructureID":32477,"TargetStructureID":89546,"Label":"32477-89546 via Conventional from 89548 -> 89547","Type":"Conventional","Directional":true,"Links":[{"SourceID":89548,"TargetID":89547,"Directional":true}]},{"ID":13215,"SourceStructureID":32513,"TargetStructureID":6141,"Label":"32513-6141 via Conventional from 32515 -> 32512, 32517 -> 32519","Type":"Conventional","Directional":true,"Links":[{"SourceID":32515,"TargetID":32512,"Directional":true},{"SourceID":32517,"TargetID":32519,"Directional":true}]},{"ID":13216,"SourceStructureID":32534,"TargetStructureID":168,"Label":"32534-168 via Conventional from 32537 -> 4220","Type":"Conventional","Directional":true,"Links":[{"SourceID":32537,"TargetID":4220,"Directional":true}]},{"ID":13217,"SourceStructureID":32534,"TargetStructureID":606,"Label":"32534-606 via Conventional from 32548 -> 53486","Type":"Conventional","Directional":true,"Links":[{"SourceID":32548,"TargetID":53486,"Directional":true}]},{"ID":13218,"SourceStructureID":32534,"TargetStructureID":8720,"Label":"32534-8720 via Conventional from 46313 -> 60250","Type":"Conventional","Directional":true,"Links":[{"SourceID":46313,"TargetID":60250,"Directional":true}]},{"ID":13219,"SourceStructureID":32534,"TargetStructureID":21299,"Label":"32534-21299 via Conventional from 32535 -> 32533","Type":"Conventional","Directional":true,"Links":[{"SourceID":32535,"TargetID":32533,"Directional":true}]},{"ID":13220,"SourceStructureID":32547,"TargetStructureID":286,"Label":"32547-286 via Conventional from 32559 -> 32560","Type":"Conventional","Directional":true,"Links":[{"SourceID":32559,"TargetID":32560,"Directional":true}]},{"ID":13221,"SourceStructureID":32547,"TargetStructureID":6164,"Label":"32547-6164 via Conventional from 32550 -> 26869","Type":"Conventional","Directional":true,"Links":[{"SourceID":32550,"TargetID":26869,"Directional":true}]},{"ID":13222,"SourceStructureID":32566,"TargetStructureID":280,"Label":"32566-280 via Conventional from 32571 -> 32572","Type":"Conventional","Directional":true,"Links":[{"SourceID":32571,"TargetID":32572,"Directional":true}]},{"ID":13223,"SourceStructureID":32577,"TargetStructureID":6164,"Label":"32577-6164 via Conventional from 32578 -> 32576, 32579 -> 26870","Type":"Conventional","Directional":true,"Links":[{"SourceID":32578,"TargetID":32576,"Directional":true},{"SourceID":32579,"TargetID":26870,"Directional":true}]},{"ID":13224,"SourceStructureID":32581,"TargetStructureID":321,"Label":"32581-321 via Conventional from 32584 -> 32585","Type":"Conventional","Directional":true,"Links":[{"SourceID":32584,"TargetID":32585,"Directional":true}]},{"ID":13225,"SourceStructureID":32581,"TargetStructureID":366,"Label":"32581-366 via Conventional from 32601 -> 13963","Type":"Conventional","Directional":true,"Links":[{"SourceID":32601,"TargetID":13963,"Directional":true}]},{"ID":13226,"SourceStructureID":32581,"TargetStructureID":431,"Label":"32581-431 via Conventional from 32604 -> 32605","Type":"Conventional","Directional":true,"Links":[{"SourceID":32604,"TargetID":32605,"Directional":true}]},{"ID":13227,"SourceStructureID":32581,"TargetStructureID":6164,"Label":"32581-6164 via Conventional from 32582 -> 26871","Type":"Conventional","Directional":true,"Links":[{"SourceID":32582,"TargetID":26871,"Directional":true}]},{"ID":13228,"SourceStructureID":32608,"TargetStructureID":366,"Label":"32608-366 via Conventional from 32615 -> 32616","Type":"Conventional","Directional":true,"Links":[{"SourceID":32615,"TargetID":32616,"Directional":true}]},{"ID":13229,"SourceStructureID":32608,"TargetStructureID":369,"Label":"32608-369 via Conventional from 32612 -> 32613","Type":"Conventional","Directional":true,"Links":[{"SourceID":32612,"TargetID":32613,"Directional":true}]},{"ID":13230,"SourceStructureID":32608,"TargetStructureID":431,"Label":"32608-431 via Conventional from 32618 -> 119063","Type":"Conventional","Directional":true,"Links":[{"SourceID":32618,"TargetID":119063,"Directional":true}]},{"ID":13231,"SourceStructureID":32608,"TargetStructureID":6164,"Label":"32608-6164 via Conventional from 32609 -> 11761","Type":"Conventional","Directional":true,"Links":[{"SourceID":32609,"TargetID":11761,"Directional":true}]},{"ID":13232,"SourceStructureID":32621,"TargetStructureID":6164,"Label":"32621-6164 via Conventional from 32622 -> 11758","Type":"Conventional","Directional":true,"Links":[{"SourceID":32622,"TargetID":11758,"Directional":true}]},{"ID":13233,"SourceStructureID":32626,"TargetStructureID":6561,"Label":"32626-6561 via Conventional from 32627 -> 8340, 32628 -> 8341","Type":"Conventional","Directional":true,"Links":[{"SourceID":32627,"TargetID":8340,"Directional":true},{"SourceID":32628,"TargetID":8341,"Directional":true}]},{"ID":13234,"SourceStructureID":32637,"TargetStructureID":6561,"Label":"32637-6561 via Conventional from 32638 -> 8342","Type":"Conventional","Directional":true,"Links":[{"SourceID":32638,"TargetID":8342,"Directional":true}]},{"ID":13235,"SourceStructureID":32641,"TargetStructureID":6561,"Label":"32641-6561 via Conventional from 32642 -> 8343","Type":"Conventional","Directional":true,"Links":[{"SourceID":32642,"TargetID":8343,"Directional":true}]},{"ID":13236,"SourceStructureID":32643,"TargetStructureID":6617,"Label":"32643-6617 via Conventional from 32644 -> 17567","Type":"Conventional","Directional":true,"Links":[{"SourceID":32644,"TargetID":17567,"Directional":true}]},{"ID":13237,"SourceStructureID":32643,"TargetStructureID":32654,"Label":"32643-32654 via Conventional from 32651 -> 32657","Type":"Conventional","Directional":true,"Links":[{"SourceID":32651,"TargetID":32657,"Directional":true}]},{"ID":13238,"SourceStructureID":32643,"TargetStructureID":32668,"Label":"32643-32668 via Conventional from 32673 -> 32674","Type":"Conventional","Directional":true,"Links":[{"SourceID":32673,"TargetID":32674,"Directional":true}]},{"ID":13239,"SourceStructureID":32643,"TargetStructureID":87158,"Label":"32643-87158 via Conventional from 32648 -> 87161","Type":"Conventional","Directional":true,"Links":[{"SourceID":32648,"TargetID":87161,"Directional":true}]},{"ID":13240,"SourceStructureID":32654,"TargetStructureID":32643,"Label":"32654-32643 via Ribbon Synapse from 32658 -> 32653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32658,"TargetID":32653,"Directional":true}]},{"ID":13241,"SourceStructureID":32654,"TargetStructureID":32804,"Label":"32654-32804 via Ribbon Synapse from 32837 -> 32836, 32842 -> 32841, 81047 -> 32839","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32837,"TargetID":32836,"Directional":true},{"SourceID":32842,"TargetID":32841,"Directional":true},{"SourceID":81047,"TargetID":32839,"Directional":true}]},{"ID":13242,"SourceStructureID":32654,"TargetStructureID":61960,"Label":"32654-61960 via Ribbon Synapse from 49306 -> 81650","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49306,"TargetID":81650,"Directional":true}]},{"ID":13243,"SourceStructureID":32654,"TargetStructureID":66958,"Label":"32654-66958 via Ribbon Synapse from 49308 -> 70113","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49308,"TargetID":70113,"Directional":true}]},{"ID":13244,"SourceStructureID":32654,"TargetStructureID":81038,"Label":"32654-81038 via Ribbon Synapse from 81037 -> 81040","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81037,"TargetID":81040,"Directional":true}]},{"ID":13245,"SourceStructureID":32654,"TargetStructureID":81039,"Label":"32654-81039 via Ribbon Synapse from 81037 -> 81041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81037,"TargetID":81041,"Directional":true}]},{"ID":13246,"SourceStructureID":32654,"TargetStructureID":81056,"Label":"32654-81056 via Ribbon Synapse from 81055 -> 81060","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81055,"TargetID":81060,"Directional":true}]},{"ID":13247,"SourceStructureID":32654,"TargetStructureID":81057,"Label":"32654-81057 via Ribbon Synapse from 81055 -> 81059","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81055,"TargetID":81059,"Directional":true}]},{"ID":13248,"SourceStructureID":32654,"TargetStructureID":81063,"Label":"32654-81063 via Ribbon Synapse from 81062 -> 81064","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81062,"TargetID":81064,"Directional":true}]},{"ID":13249,"SourceStructureID":32654,"TargetStructureID":81079,"Label":"32654-81079 via Ribbon Synapse from 81078 -> 81080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81078,"TargetID":81080,"Directional":true}]},{"ID":13250,"SourceStructureID":32654,"TargetStructureID":81085,"Label":"32654-81085 via Ribbon Synapse from 81084 -> 81086","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81084,"TargetID":81086,"Directional":true}]},{"ID":13251,"SourceStructureID":32654,"TargetStructureID":81087,"Label":"32654-81087 via Ribbon Synapse from 32842 -> 81088","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":32842,"TargetID":81088,"Directional":true}]},{"ID":13252,"SourceStructureID":32654,"TargetStructureID":87158,"Label":"32654-87158 via BC Conventional Synapse from 118970 -> 118969","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":118970,"TargetID":118969,"Directional":true}]},{"ID":13253,"SourceStructureID":32660,"TargetStructureID":6617,"Label":"32660-6617 via Conventional from 32661 -> 6627, 32663 -> 6624, 32664 -> 6626","Type":"Conventional","Directional":true,"Links":[{"SourceID":32661,"TargetID":6627,"Directional":true},{"SourceID":32663,"TargetID":6624,"Directional":true},{"SourceID":32664,"TargetID":6626,"Directional":true}]},{"ID":13254,"SourceStructureID":32666,"TargetStructureID":6618,"Label":"32666-6618 via Conventional from 32667 -> 17611","Type":"Conventional","Directional":true,"Links":[{"SourceID":32667,"TargetID":17611,"Directional":true}]},{"ID":13255,"SourceStructureID":32668,"TargetStructureID":307,"Label":"32668-307 via Conventional from 32671 -> 15980","Type":"Conventional","Directional":true,"Links":[{"SourceID":32671,"TargetID":15980,"Directional":true}]},{"ID":13256,"SourceStructureID":32668,"TargetStructureID":6618,"Label":"32668-6618 via Conventional from 32670 -> 17610","Type":"Conventional","Directional":true,"Links":[{"SourceID":32670,"TargetID":17610,"Directional":true}]},{"ID":13257,"SourceStructureID":32676,"TargetStructureID":7054,"Label":"32676-7054 via Conventional from 32678 -> 10896","Type":"Conventional","Directional":true,"Links":[{"SourceID":32678,"TargetID":10896,"Directional":true}]},{"ID":13258,"SourceStructureID":32681,"TargetStructureID":334,"Label":"32681-334 via Conventional from 38481 -> 38482, 64570 -> 64569, 64573 -> 64572","Type":"Conventional","Directional":true,"Links":[{"SourceID":38481,"TargetID":38482,"Directional":true},{"SourceID":64570,"TargetID":64569,"Directional":true},{"SourceID":64573,"TargetID":64572,"Directional":true}]},{"ID":13259,"SourceStructureID":32681,"TargetStructureID":8586,"Label":"32681-8586 via Conventional from 32682 -> 32680","Type":"Conventional","Directional":true,"Links":[{"SourceID":32682,"TargetID":32680,"Directional":true}]},{"ID":13260,"SourceStructureID":32719,"TargetStructureID":8749,"Label":"32719-8749 via Conventional from 32720 -> 8850, 32724 -> 8852, 32725 -> 8854","Type":"Conventional","Directional":true,"Links":[{"SourceID":32720,"TargetID":8850,"Directional":true},{"SourceID":32724,"TargetID":8852,"Directional":true},{"SourceID":32725,"TargetID":8854,"Directional":true}]},{"ID":13261,"SourceStructureID":32726,"TargetStructureID":410,"Label":"32726-410 via Conventional from 32733 -> 18164","Type":"Conventional","Directional":true,"Links":[{"SourceID":32733,"TargetID":18164,"Directional":true}]},{"ID":13262,"SourceStructureID":32726,"TargetStructureID":5117,"Label":"32726-5117 via Conventional from 32732 -> 15002","Type":"Conventional","Directional":true,"Links":[{"SourceID":32732,"TargetID":15002,"Directional":true}]},{"ID":13263,"SourceStructureID":32726,"TargetStructureID":6153,"Label":"32726-6153 via Conventional from 32727 -> 32728, 32729 -> 32730, 32731 -> 18166","Type":"Conventional","Directional":true,"Links":[{"SourceID":32727,"TargetID":32728,"Directional":true},{"SourceID":32729,"TargetID":32730,"Directional":true},{"SourceID":32731,"TargetID":18166,"Directional":true}]},{"ID":13264,"SourceStructureID":32734,"TargetStructureID":476,"Label":"32734-476 via Conventional from 32735 -> 16501","Type":"Conventional","Directional":true,"Links":[{"SourceID":32735,"TargetID":16501,"Directional":true}]},{"ID":13265,"SourceStructureID":32739,"TargetStructureID":410,"Label":"32739-410 via Conventional from 32742 -> 32737, 32745 -> 23113, 32747 -> 32746, 32748 -> 18277","Type":"Conventional","Directional":true,"Links":[{"SourceID":32742,"TargetID":32737,"Directional":true},{"SourceID":32745,"TargetID":23113,"Directional":true},{"SourceID":32747,"TargetID":32746,"Directional":true},{"SourceID":32748,"TargetID":18277,"Directional":true}]},{"ID":13266,"SourceStructureID":32739,"TargetStructureID":419,"Label":"32739-419 via Conventional from 32740 -> 32741, 32744 -> 32743","Type":"Conventional","Directional":true,"Links":[{"SourceID":32740,"TargetID":32741,"Directional":true},{"SourceID":32744,"TargetID":32743,"Directional":true}]},{"ID":13267,"SourceStructureID":32739,"TargetStructureID":514,"Label":"32739-514 via Conventional from 32749 -> 15085","Type":"Conventional","Directional":true,"Links":[{"SourceID":32749,"TargetID":15085,"Directional":true}]},{"ID":13268,"SourceStructureID":32739,"TargetStructureID":9693,"Label":"32739-9693 via Conventional from 32750 -> 28198","Type":"Conventional","Directional":true,"Links":[{"SourceID":32750,"TargetID":28198,"Directional":true}]},{"ID":13269,"SourceStructureID":32751,"TargetStructureID":2610,"Label":"32751-2610 via Conventional from 32752 -> 18221","Type":"Conventional","Directional":true,"Links":[{"SourceID":32752,"TargetID":18221,"Directional":true}]},{"ID":13270,"SourceStructureID":32751,"TargetStructureID":9693,"Label":"32751-9693 via Conventional from 32753 -> 27495","Type":"Conventional","Directional":true,"Links":[{"SourceID":32753,"TargetID":27495,"Directional":true}]},{"ID":13271,"SourceStructureID":32754,"TargetStructureID":304,"Label":"32754-304 via Conventional from 32755 -> 32756","Type":"Conventional","Directional":true,"Links":[{"SourceID":32755,"TargetID":32756,"Directional":true}]},{"ID":13272,"SourceStructureID":32767,"TargetStructureID":11044,"Label":"32767-11044 via Conventional from 32768 -> 32766","Type":"Conventional","Directional":true,"Links":[{"SourceID":32768,"TargetID":32766,"Directional":true}]},{"ID":13273,"SourceStructureID":32771,"TargetStructureID":10412,"Label":"32771-10412 via Conventional from 32772 -> 10413","Type":"Conventional","Directional":true,"Links":[{"SourceID":32772,"TargetID":10413,"Directional":true}]},{"ID":13274,"SourceStructureID":32773,"TargetStructureID":6203,"Label":"32773-6203 via Conventional from 32775 -> 32776, 32779 -> 32780","Type":"Conventional","Directional":true,"Links":[{"SourceID":32775,"TargetID":32776,"Directional":true},{"SourceID":32779,"TargetID":32780,"Directional":true}]},{"ID":13275,"SourceStructureID":32773,"TargetStructureID":10412,"Label":"32773-10412 via Conventional from 32774 -> 10416","Type":"Conventional","Directional":true,"Links":[{"SourceID":32774,"TargetID":10416,"Directional":true}]},{"ID":13276,"SourceStructureID":32787,"TargetStructureID":5601,"Label":"32787-5601 via Conventional from 32790 -> 32791","Type":"Conventional","Directional":true,"Links":[{"SourceID":32790,"TargetID":32791,"Directional":true}]},{"ID":13277,"SourceStructureID":32787,"TargetStructureID":10815,"Label":"32787-10815 via Conventional from 32788 -> 32786","Type":"Conventional","Directional":true,"Links":[{"SourceID":32788,"TargetID":32786,"Directional":true}]},{"ID":13278,"SourceStructureID":32795,"TargetStructureID":10826,"Label":"32795-10826 via Conventional from 32796 -> 32794, 35466 -> 35467","Type":"Conventional","Directional":true,"Links":[{"SourceID":32796,"TargetID":32794,"Directional":true},{"SourceID":35466,"TargetID":35467,"Directional":true}]},{"ID":13279,"SourceStructureID":32795,"TargetStructureID":11248,"Label":"32795-11248 via Conventional from 33293 -> 33292, 33295 -> 33294","Type":"Conventional","Directional":true,"Links":[{"SourceID":33293,"TargetID":33292,"Directional":true},{"SourceID":33295,"TargetID":33294,"Directional":true}]},{"ID":13280,"SourceStructureID":32802,"TargetStructureID":10826,"Label":"32802-10826 via Conventional from 32803 -> 32801","Type":"Conventional","Directional":true,"Links":[{"SourceID":32803,"TargetID":32801,"Directional":true}]},{"ID":13281,"SourceStructureID":32802,"TargetStructureID":67469,"Label":"32802-67469 via Conventional from 35552 -> 69686","Type":"Conventional","Directional":true,"Links":[{"SourceID":35552,"TargetID":69686,"Directional":true}]},{"ID":13282,"SourceStructureID":32804,"TargetStructureID":5522,"Label":"32804-5522 via Conventional from 32805 -> 64124, 32808 -> 64254, 64304 -> 64303","Type":"Conventional","Directional":true,"Links":[{"SourceID":32805,"TargetID":64124,"Directional":true},{"SourceID":32808,"TargetID":64254,"Directional":true},{"SourceID":64304,"TargetID":64303,"Directional":true}]},{"ID":13283,"SourceStructureID":32804,"TargetStructureID":5623,"Label":"32804-5623 via Conventional from 32818 -> 32820","Type":"Conventional","Directional":true,"Links":[{"SourceID":32818,"TargetID":32820,"Directional":true}]},{"ID":13284,"SourceStructureID":32804,"TargetStructureID":6997,"Label":"32804-6997 via Conventional from 32821 -> 32822, 32825 -> 22281, 32829 -> 22312","Type":"Conventional","Directional":true,"Links":[{"SourceID":32821,"TargetID":32822,"Directional":true},{"SourceID":32825,"TargetID":22281,"Directional":true},{"SourceID":32829,"TargetID":22312,"Directional":true}]},{"ID":13285,"SourceStructureID":32804,"TargetStructureID":32654,"Label":"32804-32654 via Conventional from 32832 -> 49276, 32834 -> 49319, 32840 -> 32843, 32844 -> 32845","Type":"Conventional","Directional":true,"Links":[{"SourceID":32832,"TargetID":49276,"Directional":true},{"SourceID":32834,"TargetID":49319,"Directional":true},{"SourceID":32840,"TargetID":32843,"Directional":true},{"SourceID":32844,"TargetID":32845,"Directional":true}]},{"ID":13286,"SourceStructureID":32804,"TargetStructureID":61270,"Label":"32804-61270 via Conventional from 32831 -> 61274","Type":"Conventional","Directional":true,"Links":[{"SourceID":32831,"TargetID":61274,"Directional":true}]},{"ID":13287,"SourceStructureID":32804,"TargetStructureID":64196,"Label":"32804-64196 via Conventional from 32810 -> 64208","Type":"Conventional","Directional":true,"Links":[{"SourceID":32810,"TargetID":64208,"Directional":true}]},{"ID":13288,"SourceStructureID":32804,"TargetStructureID":64268,"Label":"32804-64268 via Conventional from 32811 -> 64286","Type":"Conventional","Directional":true,"Links":[{"SourceID":32811,"TargetID":64286,"Directional":true}]},{"ID":13289,"SourceStructureID":32804,"TargetStructureID":80755,"Label":"32804-80755 via Conventional from 32847 -> 118928, 80758 -> 80759, 80775 -> 80776","Type":"Conventional","Directional":true,"Links":[{"SourceID":32847,"TargetID":118928,"Directional":true},{"SourceID":80758,"TargetID":80759,"Directional":true},{"SourceID":80775,"TargetID":80776,"Directional":true}]},{"ID":13290,"SourceStructureID":32804,"TargetStructureID":81105,"Label":"32804-81105 via Conventional from 32824 -> 81106","Type":"Conventional","Directional":true,"Links":[{"SourceID":32824,"TargetID":81106,"Directional":true}]},{"ID":13291,"SourceStructureID":32848,"TargetStructureID":518,"Label":"32848-518 via Conventional from 36416 -> 36415, 36417 -> 3358, 36418 -> 3364, 36697 -> 3350","Type":"Conventional","Directional":true,"Links":[{"SourceID":36416,"TargetID":36415,"Directional":true},{"SourceID":36417,"TargetID":3358,"Directional":true},{"SourceID":36418,"TargetID":3364,"Directional":true},{"SourceID":36697,"TargetID":3350,"Directional":true}]},{"ID":13292,"SourceStructureID":32848,"TargetStructureID":10872,"Label":"32848-10872 via Conventional from 32849 -> 10873, 32850 -> 10874, 32851 -> 10875","Type":"Conventional","Directional":true,"Links":[{"SourceID":32849,"TargetID":10873,"Directional":true},{"SourceID":32850,"TargetID":10874,"Directional":true},{"SourceID":32851,"TargetID":10875,"Directional":true}]},{"ID":13293,"SourceStructureID":32853,"TargetStructureID":10872,"Label":"32853-10872 via Conventional from 32854 -> 10876","Type":"Conventional","Directional":true,"Links":[{"SourceID":32854,"TargetID":10876,"Directional":true}]},{"ID":13294,"SourceStructureID":32855,"TargetStructureID":10872,"Label":"32855-10872 via Conventional from 32856 -> 10876","Type":"Conventional","Directional":true,"Links":[{"SourceID":32856,"TargetID":10876,"Directional":true}]},{"ID":13295,"SourceStructureID":32857,"TargetStructureID":10872,"Label":"32857-10872 via Conventional from 32858 -> 10878","Type":"Conventional","Directional":true,"Links":[{"SourceID":32858,"TargetID":10878,"Directional":true}]},{"ID":13296,"SourceStructureID":32862,"TargetStructureID":5513,"Label":"32862-5513 via Conventional from 32865 -> 32866, 32868 -> 118225","Type":"Conventional","Directional":true,"Links":[{"SourceID":32865,"TargetID":32866,"Directional":true},{"SourceID":32868,"TargetID":118225,"Directional":true}]},{"ID":13297,"SourceStructureID":32862,"TargetStructureID":10872,"Label":"32862-10872 via Conventional from 32863 -> 10884","Type":"Conventional","Directional":true,"Links":[{"SourceID":32863,"TargetID":10884,"Directional":true}]},{"ID":13298,"SourceStructureID":32862,"TargetStructureID":25575,"Label":"32862-25575 via Conventional from 32867 -> 25587","Type":"Conventional","Directional":true,"Links":[{"SourceID":32867,"TargetID":25587,"Directional":true}]},{"ID":13299,"SourceStructureID":32871,"TargetStructureID":10931,"Label":"32871-10931 via Conventional from 32872 -> 10932","Type":"Conventional","Directional":true,"Links":[{"SourceID":32872,"TargetID":10932,"Directional":true}]},{"ID":13300,"SourceStructureID":32874,"TargetStructureID":138,"Label":"32874-138 via Conventional from 32876 -> 32882, 32883 -> 32885","Type":"Conventional","Directional":true,"Links":[{"SourceID":32876,"TargetID":32882,"Directional":true},{"SourceID":32883,"TargetID":32885,"Directional":true}]},{"ID":13301,"SourceStructureID":32874,"TargetStructureID":2063,"Label":"32874-2063 via Conventional from 32890 -> 36138","Type":"Conventional","Directional":true,"Links":[{"SourceID":32890,"TargetID":36138,"Directional":true}]},{"ID":13302,"SourceStructureID":32874,"TargetStructureID":32871,"Label":"32874-32871 via Conventional from 32875 -> 32873","Type":"Conventional","Directional":true,"Links":[{"SourceID":32875,"TargetID":32873,"Directional":true}]},{"ID":13303,"SourceStructureID":32892,"TargetStructureID":138,"Label":"32892-138 via Conventional from 32893 -> 32894","Type":"Conventional","Directional":true,"Links":[{"SourceID":32893,"TargetID":32894,"Directional":true}]},{"ID":13304,"SourceStructureID":32892,"TargetStructureID":32874,"Label":"32892-32874 via Conventional from 32896 -> 32888","Type":"Conventional","Directional":true,"Links":[{"SourceID":32896,"TargetID":32888,"Directional":true}]},{"ID":13305,"SourceStructureID":32900,"TargetStructureID":108861,"Label":"32900-108861 via Conventional from 38362 -> 108866","Type":"Conventional","Directional":true,"Links":[{"SourceID":38362,"TargetID":108866,"Directional":true}]},{"ID":13306,"SourceStructureID":32905,"TargetStructureID":10931,"Label":"32905-10931 via Conventional from 32906 -> 10935","Type":"Conventional","Directional":true,"Links":[{"SourceID":32906,"TargetID":10935,"Directional":true}]},{"ID":13307,"SourceStructureID":32911,"TargetStructureID":10943,"Label":"32911-10943 via Conventional from 32912 -> 16259","Type":"Conventional","Directional":true,"Links":[{"SourceID":32912,"TargetID":16259,"Directional":true}]},{"ID":13308,"SourceStructureID":32913,"TargetStructureID":593,"Label":"32913-593 via Conventional from 66288 -> 66289","Type":"Conventional","Directional":true,"Links":[{"SourceID":66288,"TargetID":66289,"Directional":true}]},{"ID":13309,"SourceStructureID":32913,"TargetStructureID":10943,"Label":"32913-10943 via Conventional from 32914 -> 16261","Type":"Conventional","Directional":true,"Links":[{"SourceID":32914,"TargetID":16261,"Directional":true}]},{"ID":13310,"SourceStructureID":32913,"TargetStructureID":16026,"Label":"32913-16026 via Conventional from 38351 -> 38352","Type":"Conventional","Directional":true,"Links":[{"SourceID":38351,"TargetID":38352,"Directional":true}]},{"ID":13311,"SourceStructureID":32913,"TargetStructureID":66804,"Label":"32913-66804 via Conventional from 38350 -> 66811","Type":"Conventional","Directional":true,"Links":[{"SourceID":38350,"TargetID":66811,"Directional":true}]},{"ID":13312,"SourceStructureID":32913,"TargetStructureID":67080,"Label":"32913-67080 via Conventional from 67079 -> 67081","Type":"Conventional","Directional":true,"Links":[{"SourceID":67079,"TargetID":67081,"Directional":true}]},{"ID":13313,"SourceStructureID":32916,"TargetStructureID":168,"Label":"32916-168 via Conventional from 49171 -> 49170","Type":"Conventional","Directional":true,"Links":[{"SourceID":49171,"TargetID":49170,"Directional":true}]},{"ID":13314,"SourceStructureID":32916,"TargetStructureID":10960,"Label":"32916-10960 via Conventional from 32917 -> 12472","Type":"Conventional","Directional":true,"Links":[{"SourceID":32917,"TargetID":12472,"Directional":true}]},{"ID":13315,"SourceStructureID":32920,"TargetStructureID":166,"Label":"32920-166 via Conventional from 39004 -> 39005","Type":"Conventional","Directional":true,"Links":[{"SourceID":39004,"TargetID":39005,"Directional":true}]},{"ID":13316,"SourceStructureID":32920,"TargetStructureID":170,"Label":"32920-170 via Conventional from 32923 -> 1218","Type":"Conventional","Directional":true,"Links":[{"SourceID":32923,"TargetID":1218,"Directional":true}]},{"ID":13317,"SourceStructureID":32920,"TargetStructureID":10960,"Label":"32920-10960 via Conventional from 32921 -> 32919","Type":"Conventional","Directional":true,"Links":[{"SourceID":32921,"TargetID":32919,"Directional":true}]},{"ID":13318,"SourceStructureID":32926,"TargetStructureID":5535,"Label":"32926-5535 via Conventional from 32933 -> 32932","Type":"Conventional","Directional":true,"Links":[{"SourceID":32933,"TargetID":32932,"Directional":true}]},{"ID":13319,"SourceStructureID":32926,"TargetStructureID":5609,"Label":"32926-5609 via Conventional from 32927 -> 32931","Type":"Conventional","Directional":true,"Links":[{"SourceID":32927,"TargetID":32931,"Directional":true}]},{"ID":13320,"SourceStructureID":32926,"TargetStructureID":10964,"Label":"32926-10964 via Conventional from 32928 -> 31489","Type":"Conventional","Directional":true,"Links":[{"SourceID":32928,"TargetID":31489,"Directional":true}]},{"ID":13321,"SourceStructureID":32936,"TargetStructureID":11020,"Label":"32936-11020 via Conventional from 32937 -> 20010","Type":"Conventional","Directional":true,"Links":[{"SourceID":32937,"TargetID":20010,"Directional":true}]},{"ID":13322,"SourceStructureID":32945,"TargetStructureID":11030,"Label":"32945-11030 via Conventional from 32946 -> 32947","Type":"Conventional","Directional":true,"Links":[{"SourceID":32946,"TargetID":32947,"Directional":true}]},{"ID":13323,"SourceStructureID":32950,"TargetStructureID":5297,"Label":"32950-5297 via Conventional from 32953 -> 39415","Type":"Conventional","Directional":true,"Links":[{"SourceID":32953,"TargetID":39415,"Directional":true}]},{"ID":13324,"SourceStructureID":32950,"TargetStructureID":32950,"Label":"32950-32950 via Conventional from 32951 -> 32952","Type":"Conventional","Directional":true,"Links":[{"SourceID":32951,"TargetID":32952,"Directional":true}]},{"ID":13325,"SourceStructureID":32954,"TargetStructureID":6115,"Label":"32954-6115 via Conventional from 32956 -> 32957","Type":"Conventional","Directional":true,"Links":[{"SourceID":32956,"TargetID":32957,"Directional":true}]},{"ID":13326,"SourceStructureID":32959,"TargetStructureID":517,"Label":"32959-517 via Conventional from 33025 -> 33026","Type":"Conventional","Directional":true,"Links":[{"SourceID":33025,"TargetID":33026,"Directional":true}]},{"ID":13327,"SourceStructureID":32959,"TargetStructureID":11033,"Label":"32959-11033 via Conventional from 32960 -> 32961","Type":"Conventional","Directional":true,"Links":[{"SourceID":32960,"TargetID":32961,"Directional":true}]},{"ID":13328,"SourceStructureID":32959,"TargetStructureID":11038,"Label":"32959-11038 via Conventional from 33021 -> 33022","Type":"Conventional","Directional":true,"Links":[{"SourceID":33021,"TargetID":33022,"Directional":true}]},{"ID":13329,"SourceStructureID":32959,"TargetStructureID":11321,"Label":"32959-11321 via Conventional from 33017 -> 33014, 33019 -> 33018","Type":"Conventional","Directional":true,"Links":[{"SourceID":33017,"TargetID":33014,"Directional":true},{"SourceID":33019,"TargetID":33018,"Directional":true}]},{"ID":13330,"SourceStructureID":32970,"TargetStructureID":166,"Label":"32970-166 via Conventional from 32980 -> 59977, 32981 -> 32982, 32981 -> 59988","Type":"Conventional","Directional":true,"Links":[{"SourceID":32980,"TargetID":59977,"Directional":true},{"SourceID":32981,"TargetID":32982,"Directional":true},{"SourceID":32981,"TargetID":59988,"Directional":true}]},{"ID":13331,"SourceStructureID":32970,"TargetStructureID":6115,"Label":"32970-6115 via Conventional from 32974 -> 16056, 32975 -> 32976, 72679 -> 72680","Type":"Conventional","Directional":true,"Links":[{"SourceID":32974,"TargetID":16056,"Directional":true},{"SourceID":32975,"TargetID":32976,"Directional":true},{"SourceID":72679,"TargetID":72680,"Directional":true}]},{"ID":13332,"SourceStructureID":32970,"TargetStructureID":11030,"Label":"32970-11030 via Conventional from 32971 -> 32972","Type":"Conventional","Directional":true,"Links":[{"SourceID":32971,"TargetID":32972,"Directional":true}]},{"ID":13333,"SourceStructureID":32970,"TargetStructureID":16087,"Label":"32970-16087 via Conventional from 32977 -> 16089","Type":"Conventional","Directional":true,"Links":[{"SourceID":32977,"TargetID":16089,"Directional":true}]},{"ID":13334,"SourceStructureID":32970,"TargetStructureID":71519,"Label":"32970-71519 via Conventional from 32973 -> 77036","Type":"Conventional","Directional":true,"Links":[{"SourceID":32973,"TargetID":77036,"Directional":true}]},{"ID":13335,"SourceStructureID":32987,"TargetStructureID":11089,"Label":"32987-11089 via Conventional from 32988 -> 30498","Type":"Conventional","Directional":true,"Links":[{"SourceID":32988,"TargetID":30498,"Directional":true}]},{"ID":13336,"SourceStructureID":32989,"TargetStructureID":11089,"Label":"32989-11089 via Conventional from 32990 -> 32991","Type":"Conventional","Directional":true,"Links":[{"SourceID":32990,"TargetID":32991,"Directional":true}]},{"ID":13337,"SourceStructureID":32992,"TargetStructureID":11172,"Label":"32992-11172 via Conventional from 32993 -> 15697","Type":"Conventional","Directional":true,"Links":[{"SourceID":32993,"TargetID":15697,"Directional":true}]},{"ID":13338,"SourceStructureID":32994,"TargetStructureID":579,"Label":"32994-579 via Conventional from 99197 -> 99198","Type":"Conventional","Directional":true,"Links":[{"SourceID":99197,"TargetID":99198,"Directional":true}]},{"ID":13339,"SourceStructureID":32994,"TargetStructureID":5565,"Label":"32994-5565 via Conventional from 99201 -> 50274","Type":"Conventional","Directional":true,"Links":[{"SourceID":99201,"TargetID":50274,"Directional":true}]},{"ID":13340,"SourceStructureID":32994,"TargetStructureID":11172,"Label":"32994-11172 via Conventional from 32995 -> 15698","Type":"Conventional","Directional":true,"Links":[{"SourceID":32995,"TargetID":15698,"Directional":true}]},{"ID":13341,"SourceStructureID":33003,"TargetStructureID":11172,"Label":"33003-11172 via Conventional from 33004 -> 15705","Type":"Conventional","Directional":true,"Links":[{"SourceID":33004,"TargetID":15705,"Directional":true}]},{"ID":13342,"SourceStructureID":33003,"TargetStructureID":66958,"Label":"33003-66958 via Conventional from 69947 -> 69937","Type":"Conventional","Directional":true,"Links":[{"SourceID":69947,"TargetID":69937,"Directional":true}]},{"ID":13343,"SourceStructureID":33008,"TargetStructureID":11250,"Label":"33008-11250 via Conventional from 33009 -> 30291","Type":"Conventional","Directional":true,"Links":[{"SourceID":33009,"TargetID":30291,"Directional":true}]},{"ID":13344,"SourceStructureID":33039,"TargetStructureID":4877,"Label":"33039-4877 via Conventional from 33049 -> 126822, 54222 -> 126865","Type":"Conventional","Directional":true,"Links":[{"SourceID":33049,"TargetID":126822,"Directional":true},{"SourceID":54222,"TargetID":126865,"Directional":true}]},{"ID":13345,"SourceStructureID":33039,"TargetStructureID":5637,"Label":"33039-5637 via Conventional from 33053 -> 33054","Type":"Conventional","Directional":true,"Links":[{"SourceID":33053,"TargetID":33054,"Directional":true}]},{"ID":13346,"SourceStructureID":33039,"TargetStructureID":11321,"Label":"33039-11321 via Conventional from 33040 -> 33038","Type":"Conventional","Directional":true,"Links":[{"SourceID":33040,"TargetID":33038,"Directional":true}]},{"ID":13347,"SourceStructureID":33057,"TargetStructureID":606,"Label":"33057-606 via Conventional from 33061 -> 48121, 33064 -> 33065","Type":"Conventional","Directional":true,"Links":[{"SourceID":33061,"TargetID":48121,"Directional":true},{"SourceID":33064,"TargetID":33065,"Directional":true}]},{"ID":13348,"SourceStructureID":33057,"TargetStructureID":5468,"Label":"33057-5468 via Conventional from 33060 -> 48130","Type":"Conventional","Directional":true,"Links":[{"SourceID":33060,"TargetID":48130,"Directional":true}]},{"ID":13349,"SourceStructureID":33057,"TargetStructureID":11321,"Label":"33057-11321 via Conventional from 33058 -> 33056","Type":"Conventional","Directional":true,"Links":[{"SourceID":33058,"TargetID":33056,"Directional":true}]},{"ID":13350,"SourceStructureID":33072,"TargetStructureID":11401,"Label":"33072-11401 via Conventional from 33073 -> 11403","Type":"Conventional","Directional":true,"Links":[{"SourceID":33073,"TargetID":11403,"Directional":true}]},{"ID":13351,"SourceStructureID":33088,"TargetStructureID":14615,"Label":"33088-14615 via Conventional from 33089 -> 25316","Type":"Conventional","Directional":true,"Links":[{"SourceID":33089,"TargetID":25316,"Directional":true}]},{"ID":13352,"SourceStructureID":33092,"TargetStructureID":5283,"Label":"33092-5283 via Conventional from 123779 -> 123780","Type":"Conventional","Directional":true,"Links":[{"SourceID":123779,"TargetID":123780,"Directional":true}]},{"ID":13353,"SourceStructureID":33092,"TargetStructureID":14615,"Label":"33092-14615 via Conventional from 36608 -> 33091","Type":"Conventional","Directional":true,"Links":[{"SourceID":36608,"TargetID":33091,"Directional":true}]},{"ID":13354,"SourceStructureID":33114,"TargetStructureID":15100,"Label":"33114-15100 via Conventional from 33115 -> 17999","Type":"Conventional","Directional":true,"Links":[{"SourceID":33115,"TargetID":17999,"Directional":true}]},{"ID":13355,"SourceStructureID":33117,"TargetStructureID":15100,"Label":"33117-15100 via Conventional from 33118 -> 33119","Type":"Conventional","Directional":true,"Links":[{"SourceID":33118,"TargetID":33119,"Directional":true}]},{"ID":13356,"SourceStructureID":33117,"TargetStructureID":26079,"Label":"33117-26079 via Conventional from 33125 -> 33126","Type":"Conventional","Directional":true,"Links":[{"SourceID":33125,"TargetID":33126,"Directional":true}]},{"ID":13357,"SourceStructureID":33127,"TargetStructureID":408,"Label":"33127-408 via Conventional from 33129 -> 33131, 33133 -> 52952","Type":"Conventional","Directional":true,"Links":[{"SourceID":33129,"TargetID":33131,"Directional":true},{"SourceID":33133,"TargetID":52952,"Directional":true}]},{"ID":13358,"SourceStructureID":33127,"TargetStructureID":6912,"Label":"33127-6912 via Conventional from 33135 -> 6927, 33139 -> 33140, 33142 -> 33146","Type":"Conventional","Directional":true,"Links":[{"SourceID":33135,"TargetID":6927,"Directional":true},{"SourceID":33139,"TargetID":33140,"Directional":true},{"SourceID":33142,"TargetID":33146,"Directional":true}]},{"ID":13359,"SourceStructureID":33127,"TargetStructureID":15942,"Label":"33127-15942 via Conventional from 33128 -> 15967","Type":"Conventional","Directional":true,"Links":[{"SourceID":33128,"TargetID":15967,"Directional":true}]},{"ID":13360,"SourceStructureID":33127,"TargetStructureID":28886,"Label":"33127-28886 via Conventional from 33143 -> 51321","Type":"Conventional","Directional":true,"Links":[{"SourceID":33143,"TargetID":51321,"Directional":true}]},{"ID":13361,"SourceStructureID":33148,"TargetStructureID":324,"Label":"33148-324 via Conventional from 33155 -> 12378","Type":"Conventional","Directional":true,"Links":[{"SourceID":33155,"TargetID":12378,"Directional":true}]},{"ID":13362,"SourceStructureID":33148,"TargetStructureID":366,"Label":"33148-366 via Conventional from 33154 -> 13988","Type":"Conventional","Directional":true,"Links":[{"SourceID":33154,"TargetID":13988,"Directional":true}]},{"ID":13363,"SourceStructureID":33148,"TargetStructureID":15979,"Label":"33148-15979 via Conventional from 33149 -> 33147","Type":"Conventional","Directional":true,"Links":[{"SourceID":33149,"TargetID":33147,"Directional":true}]},{"ID":13364,"SourceStructureID":33161,"TargetStructureID":461,"Label":"33161-461 via Conventional from 114779 -> 114778","Type":"Conventional","Directional":true,"Links":[{"SourceID":114779,"TargetID":114778,"Directional":true}]},{"ID":13365,"SourceStructureID":33198,"TargetStructureID":16446,"Label":"33198-16446 via Conventional from 33199 -> 16450","Type":"Conventional","Directional":true,"Links":[{"SourceID":33199,"TargetID":16450,"Directional":true}]},{"ID":13366,"SourceStructureID":33200,"TargetStructureID":16446,"Label":"33200-16446 via Conventional from 33202 -> 33201","Type":"Conventional","Directional":true,"Links":[{"SourceID":33202,"TargetID":33201,"Directional":true}]},{"ID":13367,"SourceStructureID":33217,"TargetStructureID":5528,"Label":"33217-5528 via Conventional from 33228 -> 94177, 93977 -> 93976, 94147 -> 94148","Type":"Conventional","Directional":true,"Links":[{"SourceID":33228,"TargetID":94177,"Directional":true},{"SourceID":93977,"TargetID":93976,"Directional":true},{"SourceID":94147,"TargetID":94148,"Directional":true}]},{"ID":13368,"SourceStructureID":33217,"TargetStructureID":5530,"Label":"33217-5530 via Conventional from 33220 -> 23841","Type":"Conventional","Directional":true,"Links":[{"SourceID":33220,"TargetID":23841,"Directional":true}]},{"ID":13369,"SourceStructureID":33217,"TargetStructureID":6129,"Label":"33217-6129 via Conventional from 88533 -> 88534","Type":"Conventional","Directional":true,"Links":[{"SourceID":88533,"TargetID":88534,"Directional":true}]},{"ID":13370,"SourceStructureID":33217,"TargetStructureID":10596,"Label":"33217-10596 via Conventional from 33218 -> 33215","Type":"Conventional","Directional":true,"Links":[{"SourceID":33218,"TargetID":33215,"Directional":true}]},{"ID":13371,"SourceStructureID":33253,"TargetStructureID":10956,"Label":"33253-10956 via Conventional from 33254 -> 33248","Type":"Conventional","Directional":true,"Links":[{"SourceID":33254,"TargetID":33248,"Directional":true}]},{"ID":13372,"SourceStructureID":33272,"TargetStructureID":5598,"Label":"33272-5598 via Conventional from 89761 -> 89762, 89770 -> 89771, 89773 -> 89774","Type":"Conventional","Directional":true,"Links":[{"SourceID":89761,"TargetID":89762,"Directional":true},{"SourceID":89770,"TargetID":89771,"Directional":true},{"SourceID":89773,"TargetID":89774,"Directional":true}]},{"ID":13373,"SourceStructureID":33272,"TargetStructureID":6141,"Label":"33272-6141 via Conventional from 33276 -> 33277","Type":"Conventional","Directional":true,"Links":[{"SourceID":33276,"TargetID":33277,"Directional":true}]},{"ID":13374,"SourceStructureID":33272,"TargetStructureID":11038,"Label":"33272-11038 via Conventional from 89712 -> 89717","Type":"Conventional","Directional":true,"Links":[{"SourceID":89712,"TargetID":89717,"Directional":true}]},{"ID":13375,"SourceStructureID":33272,"TargetStructureID":89737,"Label":"33272-89737 via Conventional from 33278 -> 89738","Type":"Conventional","Directional":true,"Links":[{"SourceID":33278,"TargetID":89738,"Directional":true}]},{"ID":13376,"SourceStructureID":33333,"TargetStructureID":516,"Label":"33333-516 via Conventional from 33334 -> 10846, 64361 -> 64360","Type":"Conventional","Directional":true,"Links":[{"SourceID":33334,"TargetID":10846,"Directional":true},{"SourceID":64361,"TargetID":64360,"Directional":true}]},{"ID":13377,"SourceStructureID":33588,"TargetStructureID":280,"Label":"33588-280 via Conventional from 33591 -> 33592, 33593 -> 33594","Type":"Conventional","Directional":true,"Links":[{"SourceID":33591,"TargetID":33592,"Directional":true},{"SourceID":33593,"TargetID":33594,"Directional":true}]},{"ID":13378,"SourceStructureID":33615,"TargetStructureID":5563,"Label":"33615-5563 via Conventional from 33619 -> 33614","Type":"Conventional","Directional":true,"Links":[{"SourceID":33619,"TargetID":33614,"Directional":true}]},{"ID":13379,"SourceStructureID":33615,"TargetStructureID":5565,"Label":"33615-5565 via Conventional from 33616 -> 33617","Type":"Conventional","Directional":true,"Links":[{"SourceID":33616,"TargetID":33617,"Directional":true}]},{"ID":13380,"SourceStructureID":33625,"TargetStructureID":15796,"Label":"33625-15796 via Conventional from 33645 -> 55676","Type":"Conventional","Directional":true,"Links":[{"SourceID":33645,"TargetID":55676,"Directional":true}]},{"ID":13381,"SourceStructureID":33625,"TargetStructureID":99338,"Label":"33625-99338 via Conventional from 99216 -> 99339","Type":"Conventional","Directional":true,"Links":[{"SourceID":99216,"TargetID":99339,"Directional":true}]},{"ID":13382,"SourceStructureID":33625,"TargetStructureID":99356,"Label":"33625-99356 via Conventional from 33647 -> 99357","Type":"Conventional","Directional":true,"Links":[{"SourceID":33647,"TargetID":99357,"Directional":true}]},{"ID":13383,"SourceStructureID":33625,"TargetStructureID":99365,"Label":"33625-99365 via Conventional from 33648 -> 99368","Type":"Conventional","Directional":true,"Links":[{"SourceID":33648,"TargetID":99368,"Directional":true}]},{"ID":13384,"SourceStructureID":33625,"TargetStructureID":99370,"Label":"33625-99370 via Conventional from 33649 -> 99373","Type":"Conventional","Directional":true,"Links":[{"SourceID":33649,"TargetID":99373,"Directional":true}]},{"ID":13385,"SourceStructureID":33675,"TargetStructureID":10956,"Label":"33675-10956 via Conventional from 33676 -> 33674","Type":"Conventional","Directional":true,"Links":[{"SourceID":33676,"TargetID":33674,"Directional":true}]},{"ID":13386,"SourceStructureID":33714,"TargetStructureID":5303,"Label":"33714-5303 via Conventional from 99379 -> 35733","Type":"Conventional","Directional":true,"Links":[{"SourceID":99379,"TargetID":35733,"Directional":true}]},{"ID":13387,"SourceStructureID":33714,"TargetStructureID":6204,"Label":"33714-6204 via Conventional from 99382 -> 99384","Type":"Conventional","Directional":true,"Links":[{"SourceID":99382,"TargetID":99384,"Directional":true}]},{"ID":13388,"SourceStructureID":33714,"TargetStructureID":11085,"Label":"33714-11085 via Conventional from 33716 -> 33713","Type":"Conventional","Directional":true,"Links":[{"SourceID":33716,"TargetID":33713,"Directional":true}]},{"ID":13389,"SourceStructureID":33873,"TargetStructureID":1724,"Label":"33873-1724 via Conventional from 33874 -> 3982","Type":"Conventional","Directional":true,"Links":[{"SourceID":33874,"TargetID":3982,"Directional":true}]},{"ID":13390,"SourceStructureID":33873,"TargetStructureID":5575,"Label":"33873-5575 via Conventional from 33876 -> 22951","Type":"Conventional","Directional":true,"Links":[{"SourceID":33876,"TargetID":22951,"Directional":true}]},{"ID":13391,"SourceStructureID":33881,"TargetStructureID":458,"Label":"33881-458 via Conventional from 33922 -> 14531","Type":"Conventional","Directional":true,"Links":[{"SourceID":33922,"TargetID":14531,"Directional":true}]},{"ID":13392,"SourceStructureID":33881,"TargetStructureID":968,"Label":"33881-968 via Conventional from 33912 -> 33913","Type":"Conventional","Directional":true,"Links":[{"SourceID":33912,"TargetID":33913,"Directional":true}]},{"ID":13393,"SourceStructureID":33881,"TargetStructureID":992,"Label":"33881-992 via Conventional from 33908 -> 60207","Type":"Conventional","Directional":true,"Links":[{"SourceID":33908,"TargetID":60207,"Directional":true}]},{"ID":13394,"SourceStructureID":33881,"TargetStructureID":4849,"Label":"33881-4849 via Conventional from 33882 -> 33883, 33884 -> 33885","Type":"Conventional","Directional":true,"Links":[{"SourceID":33882,"TargetID":33883,"Directional":true},{"SourceID":33884,"TargetID":33885,"Directional":true}]},{"ID":13395,"SourceStructureID":33881,"TargetStructureID":4850,"Label":"33881-4850 via Conventional from 33887 -> 33892","Type":"Conventional","Directional":true,"Links":[{"SourceID":33887,"TargetID":33892,"Directional":true}]},{"ID":13396,"SourceStructureID":33881,"TargetStructureID":131722,"Label":"33881-131722 via Conventional from 33917 -> 131737","Type":"Conventional","Directional":true,"Links":[{"SourceID":33917,"TargetID":131737,"Directional":true}]},{"ID":13397,"SourceStructureID":34028,"TargetStructureID":142,"Label":"34028-142 via Conventional from 34033 -> 92931","Type":"Conventional","Directional":true,"Links":[{"SourceID":34033,"TargetID":92931,"Directional":true}]},{"ID":13398,"SourceStructureID":34028,"TargetStructureID":171,"Label":"34028-171 via Conventional from 34029 -> 34030","Type":"Conventional","Directional":true,"Links":[{"SourceID":34029,"TargetID":34030,"Directional":true}]},{"ID":13399,"SourceStructureID":34028,"TargetStructureID":39696,"Label":"34028-39696 via Conventional from 34032 -> 39782","Type":"Conventional","Directional":true,"Links":[{"SourceID":34032,"TargetID":39782,"Directional":true}]},{"ID":13400,"SourceStructureID":34034,"TargetStructureID":171,"Label":"34034-171 via Conventional from 34035 -> 87723","Type":"Conventional","Directional":true,"Links":[{"SourceID":34035,"TargetID":87723,"Directional":true}]},{"ID":13401,"SourceStructureID":34036,"TargetStructureID":142,"Label":"34036-142 via Conventional from 34039 -> 31788, 34050 -> 34051, 47139 -> 47138","Type":"Conventional","Directional":true,"Links":[{"SourceID":34039,"TargetID":31788,"Directional":true},{"SourceID":34050,"TargetID":34051,"Directional":true},{"SourceID":47139,"TargetID":47138,"Directional":true}]},{"ID":13402,"SourceStructureID":34036,"TargetStructureID":171,"Label":"34036-171 via Conventional from 34037 -> 34038","Type":"Conventional","Directional":true,"Links":[{"SourceID":34037,"TargetID":34038,"Directional":true}]},{"ID":13403,"SourceStructureID":34036,"TargetStructureID":176,"Label":"34036-176 via Conventional from 34043 -> 34044","Type":"Conventional","Directional":true,"Links":[{"SourceID":34043,"TargetID":34044,"Directional":true}]},{"ID":13404,"SourceStructureID":34036,"TargetStructureID":5279,"Label":"34036-5279 via Conventional from 34049 -> 49213","Type":"Conventional","Directional":true,"Links":[{"SourceID":34049,"TargetID":49213,"Directional":true}]},{"ID":13405,"SourceStructureID":34036,"TargetStructureID":6117,"Label":"34036-6117 via Conventional from 34040 -> 59089","Type":"Conventional","Directional":true,"Links":[{"SourceID":34040,"TargetID":59089,"Directional":true}]},{"ID":13406,"SourceStructureID":34036,"TargetStructureID":10625,"Label":"34036-10625 via Conventional from 34047 -> 33607","Type":"Conventional","Directional":true,"Links":[{"SourceID":34047,"TargetID":33607,"Directional":true}]},{"ID":13407,"SourceStructureID":34053,"TargetStructureID":273,"Label":"34053-273 via Conventional from 34054 -> 34052","Type":"Conventional","Directional":true,"Links":[{"SourceID":34054,"TargetID":34052,"Directional":true}]},{"ID":13408,"SourceStructureID":34055,"TargetStructureID":168,"Label":"34055-168 via Conventional from 34079 -> 34082, 34085 -> 4226, 81944 -> 81945","Type":"Conventional","Directional":true,"Links":[{"SourceID":34079,"TargetID":34082,"Directional":true},{"SourceID":34085,"TargetID":4226,"Directional":true},{"SourceID":81944,"TargetID":81945,"Directional":true}]},{"ID":13409,"SourceStructureID":34055,"TargetStructureID":176,"Label":"34055-176 via Conventional from 34105 -> 34109","Type":"Conventional","Directional":true,"Links":[{"SourceID":34105,"TargetID":34109,"Directional":true}]},{"ID":13410,"SourceStructureID":34055,"TargetStructureID":273,"Label":"34055-273 via Conventional from 34056 -> 34057","Type":"Conventional","Directional":true,"Links":[{"SourceID":34056,"TargetID":34057,"Directional":true}]},{"ID":13411,"SourceStructureID":34055,"TargetStructureID":330,"Label":"34055-330 via Conventional from 34286 -> 26177","Type":"Conventional","Directional":true,"Links":[{"SourceID":34286,"TargetID":26177,"Directional":true}]},{"ID":13412,"SourceStructureID":34055,"TargetStructureID":431,"Label":"34055-431 via Conventional from 34063 -> 12655, 34283 -> 34284","Type":"Conventional","Directional":true,"Links":[{"SourceID":34063,"TargetID":12655,"Directional":true},{"SourceID":34283,"TargetID":34284,"Directional":true}]},{"ID":13413,"SourceStructureID":34055,"TargetStructureID":446,"Label":"34055-446 via Conventional from 34288 -> 34289, 34290 -> 34291, 34292 -> 34293","Type":"Conventional","Directional":true,"Links":[{"SourceID":34288,"TargetID":34289,"Directional":true},{"SourceID":34290,"TargetID":34291,"Directional":true},{"SourceID":34292,"TargetID":34293,"Directional":true}]},{"ID":13414,"SourceStructureID":34055,"TargetStructureID":461,"Label":"34055-461 via Conventional from 34074 -> 14679, 34075 -> 14802","Type":"Conventional","Directional":true,"Links":[{"SourceID":34074,"TargetID":14679,"Directional":true},{"SourceID":34075,"TargetID":14802,"Directional":true}]},{"ID":13415,"SourceStructureID":34055,"TargetStructureID":468,"Label":"34055-468 via Conventional from 34465 -> 12930, 34469 -> 34470","Type":"Conventional","Directional":true,"Links":[{"SourceID":34465,"TargetID":12930,"Directional":true},{"SourceID":34469,"TargetID":34470,"Directional":true}]},{"ID":13416,"SourceStructureID":34055,"TargetStructureID":5530,"Label":"34055-5530 via Conventional from 34096 -> 80192","Type":"Conventional","Directional":true,"Links":[{"SourceID":34096,"TargetID":80192,"Directional":true}]},{"ID":13417,"SourceStructureID":34055,"TargetStructureID":5598,"Label":"34055-5598 via Conventional from 34121 -> 34122","Type":"Conventional","Directional":true,"Links":[{"SourceID":34121,"TargetID":34122,"Directional":true}]},{"ID":13418,"SourceStructureID":34055,"TargetStructureID":5601,"Label":"34055-5601 via Conventional from 34100 -> 34101","Type":"Conventional","Directional":true,"Links":[{"SourceID":34100,"TargetID":34101,"Directional":true}]},{"ID":13419,"SourceStructureID":34055,"TargetStructureID":6203,"Label":"34055-6203 via Conventional from 34125 -> 34126","Type":"Conventional","Directional":true,"Links":[{"SourceID":34125,"TargetID":34126,"Directional":true}]},{"ID":13420,"SourceStructureID":34055,"TargetStructureID":10412,"Label":"34055-10412 via Conventional from 38477 -> 34124","Type":"Conventional","Directional":true,"Links":[{"SourceID":38477,"TargetID":34124,"Directional":true}]},{"ID":13421,"SourceStructureID":34055,"TargetStructureID":12564,"Label":"34055-12564 via Conventional from 55640 -> 55641","Type":"Conventional","Directional":true,"Links":[{"SourceID":55640,"TargetID":55641,"Directional":true}]},{"ID":13422,"SourceStructureID":34135,"TargetStructureID":285,"Label":"34135-285 via Conventional from 34136 -> 34137","Type":"Conventional","Directional":true,"Links":[{"SourceID":34136,"TargetID":34137,"Directional":true}]},{"ID":13423,"SourceStructureID":34135,"TargetStructureID":309,"Label":"34135-309 via Conventional from 99434 -> 13315","Type":"Conventional","Directional":true,"Links":[{"SourceID":99434,"TargetID":13315,"Directional":true}]},{"ID":13424,"SourceStructureID":34148,"TargetStructureID":286,"Label":"34148-286 via Conventional from 38749 -> 38750","Type":"Conventional","Directional":true,"Links":[{"SourceID":38749,"TargetID":38750,"Directional":true}]},{"ID":13425,"SourceStructureID":34148,"TargetStructureID":293,"Label":"34148-293 via Conventional from 34149 -> 14378","Type":"Conventional","Directional":true,"Links":[{"SourceID":34149,"TargetID":14378,"Directional":true}]},{"ID":13426,"SourceStructureID":34148,"TargetStructureID":20311,"Label":"34148-20311 via Conventional from 38748 -> 30342","Type":"Conventional","Directional":true,"Links":[{"SourceID":38748,"TargetID":30342,"Directional":true}]},{"ID":13427,"SourceStructureID":34152,"TargetStructureID":293,"Label":"34152-293 via Conventional from 34153 -> 34151","Type":"Conventional","Directional":true,"Links":[{"SourceID":34153,"TargetID":34151,"Directional":true}]},{"ID":13428,"SourceStructureID":34152,"TargetStructureID":55191,"Label":"34152-55191 via Conventional from 34155 -> 55193","Type":"Conventional","Directional":true,"Links":[{"SourceID":34155,"TargetID":55193,"Directional":true}]},{"ID":13429,"SourceStructureID":34159,"TargetStructureID":294,"Label":"34159-294 via Conventional from 34160 -> 34158","Type":"Conventional","Directional":true,"Links":[{"SourceID":34160,"TargetID":34158,"Directional":true}]},{"ID":13430,"SourceStructureID":34159,"TargetStructureID":99482,"Label":"34159-99482 via Conventional from 34163 -> 99485","Type":"Conventional","Directional":true,"Links":[{"SourceID":34163,"TargetID":99485,"Directional":true}]},{"ID":13431,"SourceStructureID":34164,"TargetStructureID":71882,"Label":"34164-71882 via Ribbon Synapse from 90289 -> 90290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90289,"TargetID":90290,"Directional":true}]},{"ID":13432,"SourceStructureID":34165,"TargetStructureID":350,"Label":"34165-350 via Conventional from 34166 -> 18730","Type":"Conventional","Directional":true,"Links":[{"SourceID":34166,"TargetID":18730,"Directional":true}]},{"ID":13433,"SourceStructureID":34165,"TargetStructureID":446,"Label":"34165-446 via Conventional from 34169 -> 34170","Type":"Conventional","Directional":true,"Links":[{"SourceID":34169,"TargetID":34170,"Directional":true}]},{"ID":13434,"SourceStructureID":34253,"TargetStructureID":332,"Label":"34253-332 via Conventional from 99491 -> 99492","Type":"Conventional","Directional":true,"Links":[{"SourceID":99491,"TargetID":99492,"Directional":true}]},{"ID":13435,"SourceStructureID":34253,"TargetStructureID":365,"Label":"34253-365 via Conventional from 34254 -> 34252","Type":"Conventional","Directional":true,"Links":[{"SourceID":34254,"TargetID":34252,"Directional":true}]},{"ID":13436,"SourceStructureID":34253,"TargetStructureID":6153,"Label":"34253-6153 via Conventional from 99495 -> 99496","Type":"Conventional","Directional":true,"Links":[{"SourceID":99495,"TargetID":99496,"Directional":true}]},{"ID":13437,"SourceStructureID":34256,"TargetStructureID":365,"Label":"34256-365 via Conventional from 34257 -> 34255","Type":"Conventional","Directional":true,"Links":[{"SourceID":34257,"TargetID":34255,"Directional":true}]},{"ID":13438,"SourceStructureID":34259,"TargetStructureID":365,"Label":"34259-365 via Conventional from 34260 -> 34258","Type":"Conventional","Directional":true,"Links":[{"SourceID":34260,"TargetID":34258,"Directional":true}]},{"ID":13439,"SourceStructureID":34259,"TargetStructureID":34256,"Label":"34259-34256 via Conventional from 34261 -> 45616","Type":"Conventional","Directional":true,"Links":[{"SourceID":34261,"TargetID":45616,"Directional":true}]},{"ID":13440,"SourceStructureID":34263,"TargetStructureID":365,"Label":"34263-365 via Conventional from 34264 -> 34265","Type":"Conventional","Directional":true,"Links":[{"SourceID":34264,"TargetID":34265,"Directional":true}]},{"ID":13441,"SourceStructureID":34270,"TargetStructureID":324,"Label":"34270-324 via Conventional from 34273 -> 34274","Type":"Conventional","Directional":true,"Links":[{"SourceID":34273,"TargetID":34274,"Directional":true}]},{"ID":13442,"SourceStructureID":34270,"TargetStructureID":330,"Label":"34270-330 via Conventional from 34277 -> 26155","Type":"Conventional","Directional":true,"Links":[{"SourceID":34277,"TargetID":26155,"Directional":true}]},{"ID":13443,"SourceStructureID":34270,"TargetStructureID":369,"Label":"34270-369 via Conventional from 34271 -> 34269","Type":"Conventional","Directional":true,"Links":[{"SourceID":34271,"TargetID":34269,"Directional":true}]},{"ID":13444,"SourceStructureID":34270,"TargetStructureID":34055,"Label":"34270-34055 via Conventional from 34281 -> 34066","Type":"Conventional","Directional":true,"Links":[{"SourceID":34281,"TargetID":34066,"Directional":true}]},{"ID":13445,"SourceStructureID":34295,"TargetStructureID":422,"Label":"34295-422 via Conventional from 34296 -> 34294","Type":"Conventional","Directional":true,"Links":[{"SourceID":34296,"TargetID":34294,"Directional":true}]},{"ID":13446,"SourceStructureID":34300,"TargetStructureID":422,"Label":"34300-422 via Conventional from 34301 -> 34299","Type":"Conventional","Directional":true,"Links":[{"SourceID":34301,"TargetID":34299,"Directional":true}]},{"ID":13447,"SourceStructureID":34306,"TargetStructureID":434,"Label":"34306-434 via Conventional from 34307 -> 34305","Type":"Conventional","Directional":true,"Links":[{"SourceID":34307,"TargetID":34305,"Directional":true}]},{"ID":13448,"SourceStructureID":34306,"TargetStructureID":461,"Label":"34306-461 via Conventional from 114809 -> 114808","Type":"Conventional","Directional":true,"Links":[{"SourceID":114809,"TargetID":114808,"Directional":true}]},{"ID":13449,"SourceStructureID":34311,"TargetStructureID":330,"Label":"34311-330 via Conventional from 99509 -> 99510","Type":"Conventional","Directional":true,"Links":[{"SourceID":99509,"TargetID":99510,"Directional":true}]},{"ID":13450,"SourceStructureID":34311,"TargetStructureID":434,"Label":"34311-434 via Conventional from 35496 -> 35497","Type":"Conventional","Directional":true,"Links":[{"SourceID":35496,"TargetID":35497,"Directional":true}]},{"ID":13451,"SourceStructureID":34311,"TargetStructureID":441,"Label":"34311-441 via Conventional from 34312 -> 2041, 64298 -> 2047, 64299 -> 2045","Type":"Conventional","Directional":true,"Links":[{"SourceID":34312,"TargetID":2041,"Directional":true},{"SourceID":64298,"TargetID":2047,"Directional":true},{"SourceID":64299,"TargetID":2045,"Directional":true}]},{"ID":13452,"SourceStructureID":34315,"TargetStructureID":445,"Label":"34315-445 via Conventional from 34335 -> 1969","Type":"Conventional","Directional":true,"Links":[{"SourceID":34335,"TargetID":1969,"Directional":true}]},{"ID":13453,"SourceStructureID":34315,"TargetStructureID":446,"Label":"34315-446 via Conventional from 35147 -> 35148","Type":"Conventional","Directional":true,"Links":[{"SourceID":35147,"TargetID":35148,"Directional":true}]},{"ID":13454,"SourceStructureID":34315,"TargetStructureID":606,"Label":"34315-606 via Conventional from 34324 -> 34327, 34328 -> 48102, 35503 -> 35504, 35505 -> 5077, 52379 -> 52378, 53709 -> 53708","Type":"Conventional","Directional":true,"Links":[{"SourceID":34324,"TargetID":34327,"Directional":true},{"SourceID":34328,"TargetID":48102,"Directional":true},{"SourceID":35503,"TargetID":35504,"Directional":true},{"SourceID":35505,"TargetID":5077,"Directional":true},{"SourceID":52379,"TargetID":52378,"Directional":true},{"SourceID":53709,"TargetID":53708,"Directional":true}]},{"ID":13455,"SourceStructureID":34315,"TargetStructureID":5468,"Label":"34315-5468 via Conventional from 35509 -> 48213","Type":"Conventional","Directional":true,"Links":[{"SourceID":35509,"TargetID":48213,"Directional":true}]},{"ID":13456,"SourceStructureID":34315,"TargetStructureID":5528,"Label":"34315-5528 via Conventional from 34317 -> 34319","Type":"Conventional","Directional":true,"Links":[{"SourceID":34317,"TargetID":34319,"Directional":true}]},{"ID":13457,"SourceStructureID":34315,"TargetStructureID":5601,"Label":"34315-5601 via Conventional from 34323 -> 34326, 35506 -> 35507","Type":"Conventional","Directional":true,"Links":[{"SourceID":34323,"TargetID":34326,"Directional":true},{"SourceID":35506,"TargetID":35507,"Directional":true}]},{"ID":13458,"SourceStructureID":34315,"TargetStructureID":7594,"Label":"34315-7594 via Conventional from 34325 -> 7608","Type":"Conventional","Directional":true,"Links":[{"SourceID":34325,"TargetID":7608,"Directional":true}]},{"ID":13459,"SourceStructureID":34337,"TargetStructureID":34336,"Label":"34337-34336 via Conventional from 34339 -> 34340","Type":"Conventional","Directional":true,"Links":[{"SourceID":34339,"TargetID":34340,"Directional":true}]},{"ID":13460,"SourceStructureID":34452,"TargetStructureID":464,"Label":"34452-464 via Conventional from 34453 -> 8068","Type":"Conventional","Directional":true,"Links":[{"SourceID":34453,"TargetID":8068,"Directional":true}]},{"ID":13461,"SourceStructureID":34494,"TargetStructureID":324,"Label":"34494-324 via Conventional from 34507 -> 34508","Type":"Conventional","Directional":true,"Links":[{"SourceID":34507,"TargetID":34508,"Directional":true}]},{"ID":13462,"SourceStructureID":34494,"TargetStructureID":366,"Label":"34494-366 via Conventional from 34505 -> 34506","Type":"Conventional","Directional":true,"Links":[{"SourceID":34505,"TargetID":34506,"Directional":true}]},{"ID":13463,"SourceStructureID":34494,"TargetStructureID":428,"Label":"34494-428 via Conventional from 66206 -> 66205","Type":"Conventional","Directional":true,"Links":[{"SourceID":66206,"TargetID":66205,"Directional":true}]},{"ID":13464,"SourceStructureID":34494,"TargetStructureID":469,"Label":"34494-469 via Conventional from 34495 -> 34491","Type":"Conventional","Directional":true,"Links":[{"SourceID":34495,"TargetID":34491,"Directional":true}]},{"ID":13465,"SourceStructureID":34494,"TargetStructureID":471,"Label":"34494-471 via Conventional from 34496 -> 34493","Type":"Conventional","Directional":true,"Links":[{"SourceID":34496,"TargetID":34493,"Directional":true}]},{"ID":13466,"SourceStructureID":34494,"TargetStructureID":4569,"Label":"34494-4569 via Conventional from 98361 -> 98362","Type":"Conventional","Directional":true,"Links":[{"SourceID":98361,"TargetID":98362,"Directional":true}]},{"ID":13467,"SourceStructureID":34494,"TargetStructureID":38605,"Label":"34494-38605 via Conventional from 34502 -> 38608","Type":"Conventional","Directional":true,"Links":[{"SourceID":34502,"TargetID":38608,"Directional":true}]},{"ID":13468,"SourceStructureID":34509,"TargetStructureID":469,"Label":"34509-469 via Conventional from 34510 -> 34511","Type":"Conventional","Directional":true,"Links":[{"SourceID":34510,"TargetID":34511,"Directional":true}]},{"ID":13469,"SourceStructureID":34527,"TargetStructureID":469,"Label":"34527-469 via Conventional from 34528 -> 34529","Type":"Conventional","Directional":true,"Links":[{"SourceID":34528,"TargetID":34529,"Directional":true}]},{"ID":13470,"SourceStructureID":34527,"TargetStructureID":483,"Label":"34527-483 via Conventional from 34534 -> 6768","Type":"Conventional","Directional":true,"Links":[{"SourceID":34534,"TargetID":6768,"Directional":true}]},{"ID":13471,"SourceStructureID":34527,"TargetStructureID":4570,"Label":"34527-4570 via Conventional from 34539 -> 4793","Type":"Conventional","Directional":true,"Links":[{"SourceID":34539,"TargetID":4793,"Directional":true}]},{"ID":13472,"SourceStructureID":34601,"TargetStructureID":180,"Label":"34601-180 via Conventional from 33327 -> 33328, 34613 -> 6567","Type":"Conventional","Directional":true,"Links":[{"SourceID":33327,"TargetID":33328,"Directional":true},{"SourceID":34613,"TargetID":6567,"Directional":true}]},{"ID":13473,"SourceStructureID":34601,"TargetStructureID":483,"Label":"34601-483 via Conventional from 32283 -> 6780, 103722 -> 6805","Type":"Conventional","Directional":true,"Links":[{"SourceID":32283,"TargetID":6780,"Directional":true},{"SourceID":103722,"TargetID":6805,"Directional":true}]},{"ID":13474,"SourceStructureID":34601,"TargetStructureID":518,"Label":"34601-518 via Conventional from 34602 -> 14708","Type":"Conventional","Directional":true,"Links":[{"SourceID":34602,"TargetID":14708,"Directional":true}]},{"ID":13475,"SourceStructureID":34601,"TargetStructureID":519,"Label":"34601-519 via Conventional from 25437 -> 9251","Type":"Conventional","Directional":true,"Links":[{"SourceID":25437,"TargetID":9251,"Directional":true}]},{"ID":13476,"SourceStructureID":34601,"TargetStructureID":6155,"Label":"34601-6155 via Conventional from 34604 -> 34605","Type":"Conventional","Directional":true,"Links":[{"SourceID":34604,"TargetID":34605,"Directional":true}]},{"ID":13477,"SourceStructureID":34601,"TargetStructureID":60229,"Label":"34601-60229 via Conventional from 60336 -> 60234","Type":"Conventional","Directional":true,"Links":[{"SourceID":60336,"TargetID":60234,"Directional":true}]},{"ID":13478,"SourceStructureID":34601,"TargetStructureID":60337,"Label":"34601-60337 via Conventional from 60340 -> 60338","Type":"Conventional","Directional":true,"Links":[{"SourceID":60340,"TargetID":60338,"Directional":true}]},{"ID":13479,"SourceStructureID":34621,"TargetStructureID":419,"Label":"34621-419 via Conventional from 36712 -> 38450","Type":"Conventional","Directional":true,"Links":[{"SourceID":36712,"TargetID":38450,"Directional":true}]},{"ID":13480,"SourceStructureID":34621,"TargetStructureID":485,"Label":"34621-485 via Conventional from 101121 -> 101120","Type":"Conventional","Directional":true,"Links":[{"SourceID":101121,"TargetID":101120,"Directional":true}]},{"ID":13481,"SourceStructureID":34621,"TargetStructureID":518,"Label":"34621-518 via Conventional from 34622 -> 14709","Type":"Conventional","Directional":true,"Links":[{"SourceID":34622,"TargetID":14709,"Directional":true}]},{"ID":13482,"SourceStructureID":34756,"TargetStructureID":579,"Label":"34756-579 via Conventional from 34757 -> 33608","Type":"Conventional","Directional":true,"Links":[{"SourceID":34757,"TargetID":33608,"Directional":true}]},{"ID":13483,"SourceStructureID":34847,"TargetStructureID":3881,"Label":"34847-3881 via Conventional from 34848 -> 34846","Type":"Conventional","Directional":true,"Links":[{"SourceID":34848,"TargetID":34846,"Directional":true}]},{"ID":13484,"SourceStructureID":34847,"TargetStructureID":5528,"Label":"34847-5528 via Conventional from 34851 -> 34853","Type":"Conventional","Directional":true,"Links":[{"SourceID":34851,"TargetID":34853,"Directional":true}]},{"ID":13485,"SourceStructureID":34847,"TargetStructureID":5537,"Label":"34847-5537 via Conventional from 34858 -> 34859","Type":"Conventional","Directional":true,"Links":[{"SourceID":34858,"TargetID":34859,"Directional":true}]},{"ID":13486,"SourceStructureID":34847,"TargetStructureID":6127,"Label":"34847-6127 via Conventional from 34861 -> 34862, 34866 -> 34867","Type":"Conventional","Directional":true,"Links":[{"SourceID":34861,"TargetID":34862,"Directional":true},{"SourceID":34866,"TargetID":34867,"Directional":true}]},{"ID":13487,"SourceStructureID":34868,"TargetStructureID":170,"Label":"34868-170 via Conventional from 89384 -> 89385, 89386 -> 89387, 89997 -> 89998, 90357 -> 90358","Type":"Conventional","Directional":true,"Links":[{"SourceID":89384,"TargetID":89385,"Directional":true},{"SourceID":89386,"TargetID":89387,"Directional":true},{"SourceID":89997,"TargetID":89998,"Directional":true},{"SourceID":90357,"TargetID":90358,"Directional":true}]},{"ID":13488,"SourceStructureID":34868,"TargetStructureID":330,"Label":"34868-330 via Conventional from 38572 -> 38574, 38583 -> 25875","Type":"Conventional","Directional":true,"Links":[{"SourceID":38572,"TargetID":38574,"Directional":true},{"SourceID":38583,"TargetID":25875,"Directional":true}]},{"ID":13489,"SourceStructureID":34868,"TargetStructureID":431,"Label":"34868-431 via Conventional from 38578 -> 38581","Type":"Conventional","Directional":true,"Links":[{"SourceID":38578,"TargetID":38581,"Directional":true}]},{"ID":13490,"SourceStructureID":34868,"TargetStructureID":606,"Label":"34868-606 via Conventional from 38596 -> 38597, 52576 -> 48787","Type":"Conventional","Directional":true,"Links":[{"SourceID":38596,"TargetID":38597,"Directional":true},{"SourceID":52576,"TargetID":48787,"Directional":true}]},{"ID":13491,"SourceStructureID":34868,"TargetStructureID":1637,"Label":"34868-1637 via Conventional from 38564 -> 38563","Type":"Conventional","Directional":true,"Links":[{"SourceID":38564,"TargetID":38563,"Directional":true}]},{"ID":13492,"SourceStructureID":34868,"TargetStructureID":4569,"Label":"34868-4569 via Conventional from 38567 -> 38568","Type":"Conventional","Directional":true,"Links":[{"SourceID":38567,"TargetID":38568,"Directional":true}]},{"ID":13493,"SourceStructureID":34868,"TargetStructureID":5017,"Label":"34868-5017 via Conventional from 34869 -> 5043","Type":"Conventional","Directional":true,"Links":[{"SourceID":34869,"TargetID":5043,"Directional":true}]},{"ID":13494,"SourceStructureID":34868,"TargetStructureID":7024,"Label":"34868-7024 via Conventional from 34878 -> 48586, 38557 -> 38558, 38559 -> 38560, 38562 -> 38561","Type":"Conventional","Directional":true,"Links":[{"SourceID":34878,"TargetID":48586,"Directional":true},{"SourceID":38557,"TargetID":38558,"Directional":true},{"SourceID":38559,"TargetID":38560,"Directional":true},{"SourceID":38562,"TargetID":38561,"Directional":true}]},{"ID":13495,"SourceStructureID":34882,"TargetStructureID":5017,"Label":"34882-5017 via Conventional from 34883 -> 17047","Type":"Conventional","Directional":true,"Links":[{"SourceID":34883,"TargetID":17047,"Directional":true}]},{"ID":13496,"SourceStructureID":34882,"TargetStructureID":6997,"Label":"34882-6997 via Conventional from 34886 -> 70891","Type":"Conventional","Directional":true,"Links":[{"SourceID":34886,"TargetID":70891,"Directional":true}]},{"ID":13497,"SourceStructureID":34893,"TargetStructureID":6123,"Label":"34893-6123 via Conventional from 34894 -> 34895","Type":"Conventional","Directional":true,"Links":[{"SourceID":34894,"TargetID":34895,"Directional":true}]},{"ID":13498,"SourceStructureID":34899,"TargetStructureID":5556,"Label":"34899-5556 via Conventional from 34900 -> 33612","Type":"Conventional","Directional":true,"Links":[{"SourceID":34900,"TargetID":33612,"Directional":true}]},{"ID":13499,"SourceStructureID":34899,"TargetStructureID":5645,"Label":"34899-5645 via Conventional from 34904 -> 47717","Type":"Conventional","Directional":true,"Links":[{"SourceID":34904,"TargetID":47717,"Directional":true}]},{"ID":13500,"SourceStructureID":34899,"TargetStructureID":31157,"Label":"34899-31157 via Conventional from 34901 -> 35179","Type":"Conventional","Directional":true,"Links":[{"SourceID":34901,"TargetID":35179,"Directional":true}]},{"ID":13501,"SourceStructureID":34919,"TargetStructureID":6163,"Label":"34919-6163 via Conventional from 34920 -> 34921","Type":"Conventional","Directional":true,"Links":[{"SourceID":34920,"TargetID":34921,"Directional":true}]},{"ID":13502,"SourceStructureID":34922,"TargetStructureID":6163,"Label":"34922-6163 via Conventional from 34923 -> 34924","Type":"Conventional","Directional":true,"Links":[{"SourceID":34923,"TargetID":34924,"Directional":true}]},{"ID":13503,"SourceStructureID":34940,"TargetStructureID":321,"Label":"34940-321 via Conventional from 34953 -> 38510, 38513 -> 38514","Type":"Conventional","Directional":true,"Links":[{"SourceID":34953,"TargetID":38510,"Directional":true},{"SourceID":38513,"TargetID":38514,"Directional":true}]},{"ID":13504,"SourceStructureID":34940,"TargetStructureID":366,"Label":"34940-366 via Conventional from 38517 -> 13990, 38519 -> 38520, 38521 -> 13846, 38522 -> 13957","Type":"Conventional","Directional":true,"Links":[{"SourceID":38517,"TargetID":13990,"Directional":true},{"SourceID":38519,"TargetID":38520,"Directional":true},{"SourceID":38521,"TargetID":13846,"Directional":true},{"SourceID":38522,"TargetID":13957,"Directional":true}]},{"ID":13505,"SourceStructureID":34940,"TargetStructureID":428,"Label":"34940-428 via Conventional from 52722 -> 52721","Type":"Conventional","Directional":true,"Links":[{"SourceID":52722,"TargetID":52721,"Directional":true}]},{"ID":13506,"SourceStructureID":34978,"TargetStructureID":6163,"Label":"34978-6163 via Conventional from 34979 -> 34980","Type":"Conventional","Directional":true,"Links":[{"SourceID":34979,"TargetID":34980,"Directional":true}]},{"ID":13507,"SourceStructureID":34982,"TargetStructureID":6561,"Label":"34982-6561 via Conventional from 34983 -> 8339","Type":"Conventional","Directional":true,"Links":[{"SourceID":34983,"TargetID":8339,"Directional":true}]},{"ID":13508,"SourceStructureID":35046,"TargetStructureID":410,"Label":"35046-410 via Ribbon Synapse from 61996 -> 21368, 61998 -> 61999, 71223 -> 9533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61996,"TargetID":21368,"Directional":true},{"SourceID":61998,"TargetID":61999,"Directional":true},{"SourceID":71223,"TargetID":9533,"Directional":true}]},{"ID":13509,"SourceStructureID":35046,"TargetStructureID":492,"Label":"35046-492 via Ribbon Synapse from 35047 -> 35045, 71225 -> 71224","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35047,"TargetID":35045,"Directional":true},{"SourceID":71225,"TargetID":71224,"Directional":true}]},{"ID":13510,"SourceStructureID":35046,"TargetStructureID":906,"Label":"35046-906 via Ribbon Synapse from 40681 -> 16772","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40681,"TargetID":16772,"Directional":true}]},{"ID":13511,"SourceStructureID":35064,"TargetStructureID":8586,"Label":"35064-8586 via Conventional from 64342 -> 8643","Type":"Conventional","Directional":true,"Links":[{"SourceID":64342,"TargetID":8643,"Directional":true}]},{"ID":13512,"SourceStructureID":35068,"TargetStructureID":8749,"Label":"35068-8749 via Conventional from 35069 -> 8798","Type":"Conventional","Directional":true,"Links":[{"SourceID":35069,"TargetID":8798,"Directional":true}]},{"ID":13513,"SourceStructureID":35076,"TargetStructureID":6912,"Label":"35076-6912 via Conventional from 35077 -> 35075","Type":"Conventional","Directional":true,"Links":[{"SourceID":35077,"TargetID":35075,"Directional":true}]},{"ID":13514,"SourceStructureID":35084,"TargetStructureID":10826,"Label":"35084-10826 via Conventional from 35085 -> 35086","Type":"Conventional","Directional":true,"Links":[{"SourceID":35085,"TargetID":35086,"Directional":true}]},{"ID":13515,"SourceStructureID":35087,"TargetStructureID":5345,"Label":"35087-5345 via Conventional from 35090 -> 88886","Type":"Conventional","Directional":true,"Links":[{"SourceID":35090,"TargetID":88886,"Directional":true}]},{"ID":13516,"SourceStructureID":35087,"TargetStructureID":10826,"Label":"35087-10826 via Conventional from 35088 -> 35089","Type":"Conventional","Directional":true,"Links":[{"SourceID":35088,"TargetID":35089,"Directional":true}]},{"ID":13517,"SourceStructureID":35103,"TargetStructureID":332,"Label":"35103-332 via Conventional from 35107 -> 35108","Type":"Conventional","Directional":true,"Links":[{"SourceID":35107,"TargetID":35108,"Directional":true}]},{"ID":13518,"SourceStructureID":35103,"TargetStructureID":15979,"Label":"35103-15979 via Conventional from 35106 -> 35105","Type":"Conventional","Directional":true,"Links":[{"SourceID":35106,"TargetID":35105,"Directional":true}]},{"ID":13519,"SourceStructureID":35110,"TargetStructureID":16446,"Label":"35110-16446 via Conventional from 35111 -> 16449","Type":"Conventional","Directional":true,"Links":[{"SourceID":35111,"TargetID":16449,"Directional":true}]},{"ID":13520,"SourceStructureID":35112,"TargetStructureID":422,"Label":"35112-422 via Conventional from 35115 -> 35116","Type":"Conventional","Directional":true,"Links":[{"SourceID":35115,"TargetID":35116,"Directional":true}]},{"ID":13521,"SourceStructureID":35112,"TargetStructureID":16446,"Label":"35112-16446 via Conventional from 35113 -> 35114","Type":"Conventional","Directional":true,"Links":[{"SourceID":35113,"TargetID":35114,"Directional":true}]},{"ID":13522,"SourceStructureID":35117,"TargetStructureID":16446,"Label":"35117-16446 via Conventional from 35118 -> 35119","Type":"Conventional","Directional":true,"Links":[{"SourceID":35118,"TargetID":35119,"Directional":true}]},{"ID":13523,"SourceStructureID":35126,"TargetStructureID":17183,"Label":"35126-17183 via Conventional from 35127 -> 35128","Type":"Conventional","Directional":true,"Links":[{"SourceID":35127,"TargetID":35128,"Directional":true}]},{"ID":13524,"SourceStructureID":35138,"TargetStructureID":17183,"Label":"35138-17183 via Conventional from 35139 -> 35140","Type":"Conventional","Directional":true,"Links":[{"SourceID":35139,"TargetID":35140,"Directional":true}]},{"ID":13525,"SourceStructureID":35142,"TargetStructureID":17228,"Label":"35142-17228 via Conventional from 35143 -> 17258","Type":"Conventional","Directional":true,"Links":[{"SourceID":35143,"TargetID":17258,"Directional":true}]},{"ID":13526,"SourceStructureID":35145,"TargetStructureID":8575,"Label":"35145-8575 via Ribbon Synapse from 45492 -> 63515, 64697 -> 64696","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45492,"TargetID":63515,"Directional":true},{"SourceID":64697,"TargetID":64696,"Directional":true}]},{"ID":13527,"SourceStructureID":35145,"TargetStructureID":35142,"Label":"35145-35142 via Ribbon Synapse from 35146 -> 35144","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35146,"TargetID":35144,"Directional":true}]},{"ID":13528,"SourceStructureID":35145,"TargetStructureID":64698,"Label":"35145-64698 via Ribbon Synapse from 64701 -> 64702","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64701,"TargetID":64702,"Directional":true}]},{"ID":13529,"SourceStructureID":35149,"TargetStructureID":453,"Label":"35149-453 via Conventional from 35150 -> 35151","Type":"Conventional","Directional":true,"Links":[{"SourceID":35150,"TargetID":35151,"Directional":true}]},{"ID":13530,"SourceStructureID":35152,"TargetStructureID":453,"Label":"35152-453 via Conventional from 35153 -> 35154","Type":"Conventional","Directional":true,"Links":[{"SourceID":35153,"TargetID":35154,"Directional":true}]},{"ID":13531,"SourceStructureID":35152,"TargetStructureID":5528,"Label":"35152-5528 via Conventional from 35161 -> 94421","Type":"Conventional","Directional":true,"Links":[{"SourceID":35161,"TargetID":94421,"Directional":true}]},{"ID":13532,"SourceStructureID":35164,"TargetStructureID":332,"Label":"35164-332 via Conventional from 121980 -> 121981","Type":"Conventional","Directional":true,"Links":[{"SourceID":121980,"TargetID":121981,"Directional":true}]},{"ID":13533,"SourceStructureID":35164,"TargetStructureID":464,"Label":"35164-464 via Conventional from 35165 -> 8066","Type":"Conventional","Directional":true,"Links":[{"SourceID":35165,"TargetID":8066,"Directional":true}]},{"ID":13534,"SourceStructureID":35164,"TargetStructureID":121978,"Label":"35164-121978 via Conventional from 121977 -> 121979","Type":"Conventional","Directional":true,"Links":[{"SourceID":121977,"TargetID":121979,"Directional":true}]},{"ID":13535,"SourceStructureID":35176,"TargetStructureID":5017,"Label":"35176-5017 via Conventional from 35177 -> 35178","Type":"Conventional","Directional":true,"Links":[{"SourceID":35177,"TargetID":35178,"Directional":true}]},{"ID":13536,"SourceStructureID":35180,"TargetStructureID":6135,"Label":"35180-6135 via Conventional from 35181 -> 35182","Type":"Conventional","Directional":true,"Links":[{"SourceID":35181,"TargetID":35182,"Directional":true}]},{"ID":13537,"SourceStructureID":35183,"TargetStructureID":6135,"Label":"35183-6135 via Conventional from 35184 -> 35185","Type":"Conventional","Directional":true,"Links":[{"SourceID":35184,"TargetID":35185,"Directional":true}]},{"ID":13538,"SourceStructureID":35188,"TargetStructureID":6909,"Label":"35188-6909 via Conventional from 35522 -> 38227","Type":"Conventional","Directional":true,"Links":[{"SourceID":35522,"TargetID":38227,"Directional":true}]},{"ID":13539,"SourceStructureID":35188,"TargetStructureID":6911,"Label":"35188-6911 via Conventional from 35189 -> 33653","Type":"Conventional","Directional":true,"Links":[{"SourceID":35189,"TargetID":33653,"Directional":true}]},{"ID":13540,"SourceStructureID":35188,"TargetStructureID":7446,"Label":"35188-7446 via Conventional from 35525 -> 123048","Type":"Conventional","Directional":true,"Links":[{"SourceID":35525,"TargetID":123048,"Directional":true}]},{"ID":13541,"SourceStructureID":35188,"TargetStructureID":25155,"Label":"35188-25155 via Conventional from 35191 -> 38209","Type":"Conventional","Directional":true,"Links":[{"SourceID":35191,"TargetID":38209,"Directional":true}]},{"ID":13542,"SourceStructureID":35193,"TargetStructureID":606,"Label":"35193-606 via Conventional from 54221 -> 49685, 54402 -> 44332","Type":"Conventional","Directional":true,"Links":[{"SourceID":54221,"TargetID":49685,"Directional":true},{"SourceID":54402,"TargetID":44332,"Directional":true}]},{"ID":13543,"SourceStructureID":35193,"TargetStructureID":5607,"Label":"35193-5607 via Conventional from 35201 -> 38947, 35204 -> 24004","Type":"Conventional","Directional":true,"Links":[{"SourceID":35201,"TargetID":38947,"Directional":true},{"SourceID":35204,"TargetID":24004,"Directional":true}]},{"ID":13544,"SourceStructureID":35193,"TargetStructureID":7594,"Label":"35193-7594 via Conventional from 35202 -> 7629","Type":"Conventional","Directional":true,"Links":[{"SourceID":35202,"TargetID":7629,"Directional":true}]},{"ID":13545,"SourceStructureID":35193,"TargetStructureID":25155,"Label":"35193-25155 via Conventional from 38215 -> 38214","Type":"Conventional","Directional":true,"Links":[{"SourceID":38215,"TargetID":38214,"Directional":true}]},{"ID":13546,"SourceStructureID":35193,"TargetStructureID":35188,"Label":"35193-35188 via Conventional from 35523 -> 35524","Type":"Conventional","Directional":true,"Links":[{"SourceID":35523,"TargetID":35524,"Directional":true}]},{"ID":13547,"SourceStructureID":35193,"TargetStructureID":88762,"Label":"35193-88762 via Conventional from 35203 -> 88782","Type":"Conventional","Directional":true,"Links":[{"SourceID":35203,"TargetID":88782,"Directional":true}]},{"ID":13548,"SourceStructureID":35193,"TargetStructureID":118301,"Label":"35193-118301 via Conventional from 35194 -> 118302","Type":"Conventional","Directional":true,"Links":[{"SourceID":35194,"TargetID":118302,"Directional":true}]},{"ID":13549,"SourceStructureID":35208,"TargetStructureID":9376,"Label":"35208-9376 via Conventional from 35209 -> 33659","Type":"Conventional","Directional":true,"Links":[{"SourceID":35209,"TargetID":33659,"Directional":true}]},{"ID":13550,"SourceStructureID":35212,"TargetStructureID":176,"Label":"35212-176 via Conventional from 35215 -> 35214, 35216 -> 58650, 35218 -> 35221","Type":"Conventional","Directional":true,"Links":[{"SourceID":35215,"TargetID":35214,"Directional":true},{"SourceID":35216,"TargetID":58650,"Directional":true},{"SourceID":35218,"TargetID":35221,"Directional":true}]},{"ID":13551,"SourceStructureID":35212,"TargetStructureID":9376,"Label":"35212-9376 via Conventional from 35213 -> 33658","Type":"Conventional","Directional":true,"Links":[{"SourceID":35213,"TargetID":33658,"Directional":true}]},{"ID":13552,"SourceStructureID":35222,"TargetStructureID":166,"Label":"35222-166 via Conventional from 35227 -> 35230","Type":"Conventional","Directional":true,"Links":[{"SourceID":35227,"TargetID":35230,"Directional":true}]},{"ID":13553,"SourceStructureID":35222,"TargetStructureID":390,"Label":"35222-390 via Conventional from 65226 -> 65225","Type":"Conventional","Directional":true,"Links":[{"SourceID":65226,"TargetID":65225,"Directional":true}]},{"ID":13554,"SourceStructureID":35222,"TargetStructureID":10961,"Label":"35222-10961 via Conventional from 35223 -> 35224","Type":"Conventional","Directional":true,"Links":[{"SourceID":35223,"TargetID":35224,"Directional":true}]},{"ID":13555,"SourceStructureID":35232,"TargetStructureID":5565,"Label":"35232-5565 via Conventional from 35236 -> 37686","Type":"Conventional","Directional":true,"Links":[{"SourceID":35236,"TargetID":37686,"Directional":true}]},{"ID":13556,"SourceStructureID":35240,"TargetStructureID":606,"Label":"35240-606 via Conventional from 35242 -> 35243, 42152 -> 10434, 44220 -> 44219, 51725 -> 51726, 53432 -> 51437, 53534 -> 53535","Type":"Conventional","Directional":true,"Links":[{"SourceID":35242,"TargetID":35243,"Directional":true},{"SourceID":42152,"TargetID":10434,"Directional":true},{"SourceID":44220,"TargetID":44219,"Directional":true},{"SourceID":51725,"TargetID":51726,"Directional":true},{"SourceID":53432,"TargetID":51437,"Directional":true},{"SourceID":53534,"TargetID":53535,"Directional":true}]},{"ID":13557,"SourceStructureID":35240,"TargetStructureID":5284,"Label":"35240-5284 via Conventional from 113207 -> 113206","Type":"Conventional","Directional":true,"Links":[{"SourceID":113207,"TargetID":113206,"Directional":true}]},{"ID":13558,"SourceStructureID":35240,"TargetStructureID":5530,"Label":"35240-5530 via Conventional from 38260 -> 38261, 38267 -> 38268, 80178 -> 80179, 81026 -> 81027","Type":"Conventional","Directional":true,"Links":[{"SourceID":38260,"TargetID":38261,"Directional":true},{"SourceID":38267,"TargetID":38268,"Directional":true},{"SourceID":80178,"TargetID":80179,"Directional":true},{"SourceID":81026,"TargetID":81027,"Directional":true}]},{"ID":13559,"SourceStructureID":35240,"TargetStructureID":5534,"Label":"35240-5534 via Conventional from 38272 -> 38273, 38276 -> 38278","Type":"Conventional","Directional":true,"Links":[{"SourceID":38272,"TargetID":38273,"Directional":true},{"SourceID":38276,"TargetID":38278,"Directional":true}]},{"ID":13560,"SourceStructureID":35240,"TargetStructureID":5650,"Label":"35240-5650 via Conventional from 35252 -> 29906, 35256 -> 35257, 35261 -> 35262, 35267 -> 38283, 53433 -> 53434, 104445 -> 104446, 104449 -> 104450","Type":"Conventional","Directional":true,"Links":[{"SourceID":35252,"TargetID":29906,"Directional":true},{"SourceID":35256,"TargetID":35257,"Directional":true},{"SourceID":35261,"TargetID":35262,"Directional":true},{"SourceID":35267,"TargetID":38283,"Directional":true},{"SourceID":53433,"TargetID":53434,"Directional":true},{"SourceID":104445,"TargetID":104446,"Directional":true},{"SourceID":104449,"TargetID":104450,"Directional":true}]},{"ID":13561,"SourceStructureID":35240,"TargetStructureID":5729,"Label":"35240-5729 via Conventional from 35271 -> 105772, 35274 -> 37838, 35279 -> 35282, 35279 -> 38290","Type":"Conventional","Directional":true,"Links":[{"SourceID":35271,"TargetID":105772,"Directional":true},{"SourceID":35274,"TargetID":37838,"Directional":true},{"SourceID":35279,"TargetID":35282,"Directional":true},{"SourceID":35279,"TargetID":38290,"Directional":true}]},{"ID":13562,"SourceStructureID":35240,"TargetStructureID":6117,"Label":"35240-6117 via Conventional from 35246 -> 20584, 42153 -> 86092, 85440 -> 85433","Type":"Conventional","Directional":true,"Links":[{"SourceID":35246,"TargetID":20584,"Directional":true},{"SourceID":42153,"TargetID":86092,"Directional":true},{"SourceID":85440,"TargetID":85433,"Directional":true}]},{"ID":13563,"SourceStructureID":35240,"TargetStructureID":6118,"Label":"35240-6118 via Conventional from 35272 -> 38288","Type":"Conventional","Directional":true,"Links":[{"SourceID":35272,"TargetID":38288,"Directional":true}]},{"ID":13564,"SourceStructureID":35240,"TargetStructureID":6127,"Label":"35240-6127 via Conventional from 38280 -> 38281","Type":"Conventional","Directional":true,"Links":[{"SourceID":38280,"TargetID":38281,"Directional":true}]},{"ID":13565,"SourceStructureID":35240,"TargetStructureID":6158,"Label":"35240-6158 via Conventional from 35277 -> 38289","Type":"Conventional","Directional":true,"Links":[{"SourceID":35277,"TargetID":38289,"Directional":true}]},{"ID":13566,"SourceStructureID":35240,"TargetStructureID":7594,"Label":"35240-7594 via Conventional from 35248 -> 7596, 35255 -> 25092, 38258 -> 38259, 38262 -> 38263, 38265 -> 38266","Type":"Conventional","Directional":true,"Links":[{"SourceID":35248,"TargetID":7596,"Directional":true},{"SourceID":35255,"TargetID":25092,"Directional":true},{"SourceID":38258,"TargetID":38259,"Directional":true},{"SourceID":38262,"TargetID":38263,"Directional":true},{"SourceID":38265,"TargetID":38266,"Directional":true}]},{"ID":13567,"SourceStructureID":35240,"TargetStructureID":10953,"Label":"35240-10953 via Conventional from 35241 -> 33265","Type":"Conventional","Directional":true,"Links":[{"SourceID":35241,"TargetID":33265,"Directional":true}]},{"ID":13568,"SourceStructureID":35240,"TargetStructureID":35539,"Label":"35240-35539 via Conventional from 38264 -> 35542","Type":"Conventional","Directional":true,"Links":[{"SourceID":38264,"TargetID":35542,"Directional":true}]},{"ID":13569,"SourceStructureID":35240,"TargetStructureID":35894,"Label":"35240-35894 via Conventional from 35936 -> 35935","Type":"Conventional","Directional":true,"Links":[{"SourceID":35936,"TargetID":35935,"Directional":true}]},{"ID":13570,"SourceStructureID":35240,"TargetStructureID":44222,"Label":"35240-44222 via Conventional from 45017 -> 45018","Type":"Conventional","Directional":true,"Links":[{"SourceID":45017,"TargetID":45018,"Directional":true}]},{"ID":13571,"SourceStructureID":35240,"TargetStructureID":58714,"Label":"35240-58714 via Conventional from 35244 -> 58718","Type":"Conventional","Directional":true,"Links":[{"SourceID":35244,"TargetID":58718,"Directional":true}]},{"ID":13572,"SourceStructureID":35240,"TargetStructureID":86444,"Label":"35240-86444 via Conventional from 86459 -> 86458","Type":"Conventional","Directional":true,"Links":[{"SourceID":86459,"TargetID":86458,"Directional":true}]},{"ID":13573,"SourceStructureID":35240,"TargetStructureID":110842,"Label":"35240-110842 via Conventional from 35273 -> 110845","Type":"Conventional","Directional":true,"Links":[{"SourceID":35273,"TargetID":110845,"Directional":true}]},{"ID":13574,"SourceStructureID":35240,"TargetStructureID":111604,"Label":"35240-111604 via Conventional from 35270 -> 111609","Type":"Conventional","Directional":true,"Links":[{"SourceID":35270,"TargetID":111609,"Directional":true}]},{"ID":13575,"SourceStructureID":35283,"TargetStructureID":4569,"Label":"35283-4569 via Conventional from 35286 -> 30854","Type":"Conventional","Directional":true,"Links":[{"SourceID":35286,"TargetID":30854,"Directional":true}]},{"ID":13576,"SourceStructureID":35283,"TargetStructureID":10957,"Label":"35283-10957 via Conventional from 35284 -> 35285","Type":"Conventional","Directional":true,"Links":[{"SourceID":35284,"TargetID":35285,"Directional":true}]},{"ID":13577,"SourceStructureID":35288,"TargetStructureID":606,"Label":"35288-606 via Conventional from 53727 -> 53726","Type":"Conventional","Directional":true,"Links":[{"SourceID":53727,"TargetID":53726,"Directional":true}]},{"ID":13578,"SourceStructureID":35288,"TargetStructureID":5530,"Label":"35288-5530 via Conventional from 35302 -> 76484","Type":"Conventional","Directional":true,"Links":[{"SourceID":35302,"TargetID":76484,"Directional":true}]},{"ID":13579,"SourceStructureID":35288,"TargetStructureID":10142,"Label":"35288-10142 via Conventional from 35291 -> 35292","Type":"Conventional","Directional":true,"Links":[{"SourceID":35291,"TargetID":35292,"Directional":true}]},{"ID":13580,"SourceStructureID":35288,"TargetStructureID":10962,"Label":"35288-10962 via Conventional from 35289 -> 33687","Type":"Conventional","Directional":true,"Links":[{"SourceID":35289,"TargetID":33687,"Directional":true}]},{"ID":13581,"SourceStructureID":35288,"TargetStructureID":38345,"Label":"35288-38345 via Conventional from 35296 -> 38348","Type":"Conventional","Directional":true,"Links":[{"SourceID":35296,"TargetID":38348,"Directional":true}]},{"ID":13582,"SourceStructureID":35305,"TargetStructureID":10969,"Label":"35305-10969 via Conventional from 35306 -> 33585","Type":"Conventional","Directional":true,"Links":[{"SourceID":35306,"TargetID":33585,"Directional":true}]},{"ID":13583,"SourceStructureID":35308,"TargetStructureID":10969,"Label":"35308-10969 via Conventional from 35309 -> 35307, 35310 -> 33586","Type":"Conventional","Directional":true,"Links":[{"SourceID":35309,"TargetID":35307,"Directional":true},{"SourceID":35310,"TargetID":33586,"Directional":true}]},{"ID":13584,"SourceStructureID":35308,"TargetStructureID":25155,"Label":"35308-25155 via Conventional from 35313 -> 35316","Type":"Conventional","Directional":true,"Links":[{"SourceID":35313,"TargetID":35316,"Directional":true}]},{"ID":13585,"SourceStructureID":35317,"TargetStructureID":11021,"Label":"35317-11021 via Conventional from 35319 -> 35318","Type":"Conventional","Directional":true,"Links":[{"SourceID":35319,"TargetID":35318,"Directional":true}]},{"ID":13586,"SourceStructureID":35325,"TargetStructureID":5541,"Label":"35325-5541 via Conventional from 38252 -> 38253","Type":"Conventional","Directional":true,"Links":[{"SourceID":38252,"TargetID":38253,"Directional":true}]},{"ID":13587,"SourceStructureID":35325,"TargetStructureID":11022,"Label":"35325-11022 via Conventional from 35326 -> 35324","Type":"Conventional","Directional":true,"Links":[{"SourceID":35326,"TargetID":35324,"Directional":true}]},{"ID":13588,"SourceStructureID":35325,"TargetStructureID":35331,"Label":"35325-35331 via Conventional from 38247 -> 35334","Type":"Conventional","Directional":true,"Links":[{"SourceID":38247,"TargetID":35334,"Directional":true}]},{"ID":13589,"SourceStructureID":35325,"TargetStructureID":38245,"Label":"35325-38245 via Conventional from 35327 -> 38246","Type":"Conventional","Directional":true,"Links":[{"SourceID":35327,"TargetID":38246,"Directional":true}]},{"ID":13590,"SourceStructureID":35328,"TargetStructureID":11022,"Label":"35328-11022 via Conventional from 35329 -> 35330","Type":"Conventional","Directional":true,"Links":[{"SourceID":35329,"TargetID":35330,"Directional":true}]},{"ID":13591,"SourceStructureID":35331,"TargetStructureID":11022,"Label":"35331-11022 via Conventional from 35332 -> 33587","Type":"Conventional","Directional":true,"Links":[{"SourceID":35332,"TargetID":33587,"Directional":true}]},{"ID":13592,"SourceStructureID":35335,"TargetStructureID":11037,"Label":"35335-11037 via Conventional from 35336 -> 12552","Type":"Conventional","Directional":true,"Links":[{"SourceID":35336,"TargetID":12552,"Directional":true}]},{"ID":13593,"SourceStructureID":35343,"TargetStructureID":11038,"Label":"35343-11038 via Conventional from 35344 -> 33708","Type":"Conventional","Directional":true,"Links":[{"SourceID":35344,"TargetID":33708,"Directional":true}]},{"ID":13594,"SourceStructureID":35348,"TargetStructureID":11043,"Label":"35348-11043 via Conventional from 35349 -> 35350","Type":"Conventional","Directional":true,"Links":[{"SourceID":35349,"TargetID":35350,"Directional":true}]},{"ID":13595,"SourceStructureID":35351,"TargetStructureID":11043,"Label":"35351-11043 via Conventional from 35352 -> 35353","Type":"Conventional","Directional":true,"Links":[{"SourceID":35352,"TargetID":35353,"Directional":true}]},{"ID":13596,"SourceStructureID":35356,"TargetStructureID":5649,"Label":"35356-5649 via Conventional from 35362 -> 107310","Type":"Conventional","Directional":true,"Links":[{"SourceID":35362,"TargetID":107310,"Directional":true}]},{"ID":13597,"SourceStructureID":35356,"TargetStructureID":11043,"Label":"35356-11043 via Conventional from 35357 -> 35358","Type":"Conventional","Directional":true,"Links":[{"SourceID":35357,"TargetID":35358,"Directional":true}]},{"ID":13598,"SourceStructureID":35356,"TargetStructureID":30130,"Label":"35356-30130 via Conventional from 35360 -> 30250","Type":"Conventional","Directional":true,"Links":[{"SourceID":35360,"TargetID":30250,"Directional":true}]},{"ID":13599,"SourceStructureID":35367,"TargetStructureID":5284,"Label":"35367-5284 via Conventional from 35377 -> 35380","Type":"Conventional","Directional":true,"Links":[{"SourceID":35377,"TargetID":35380,"Directional":true}]},{"ID":13600,"SourceStructureID":35367,"TargetStructureID":6120,"Label":"35367-6120 via Conventional from 35372 -> 110843, 110753 -> 110749","Type":"Conventional","Directional":true,"Links":[{"SourceID":35372,"TargetID":110843,"Directional":true},{"SourceID":110753,"TargetID":110749,"Directional":true}]},{"ID":13601,"SourceStructureID":35367,"TargetStructureID":11044,"Label":"35367-11044 via Conventional from 35368 -> 35370","Type":"Conventional","Directional":true,"Links":[{"SourceID":35368,"TargetID":35370,"Directional":true}]},{"ID":13602,"SourceStructureID":35381,"TargetStructureID":11049,"Label":"35381-11049 via Conventional from 35382 -> 35383","Type":"Conventional","Directional":true,"Links":[{"SourceID":35382,"TargetID":35383,"Directional":true}]},{"ID":13603,"SourceStructureID":35384,"TargetStructureID":5645,"Label":"35384-5645 via Conventional from 35389 -> 39482","Type":"Conventional","Directional":true,"Links":[{"SourceID":35389,"TargetID":39482,"Directional":true}]},{"ID":13604,"SourceStructureID":35384,"TargetStructureID":11049,"Label":"35384-11049 via Conventional from 35385 -> 35386","Type":"Conventional","Directional":true,"Links":[{"SourceID":35385,"TargetID":35386,"Directional":true}]},{"ID":13605,"SourceStructureID":35384,"TargetStructureID":35392,"Label":"35384-35392 via Conventional from 35390 -> 35394","Type":"Conventional","Directional":true,"Links":[{"SourceID":35390,"TargetID":35394,"Directional":true}]},{"ID":13606,"SourceStructureID":35392,"TargetStructureID":35384,"Label":"35392-35384 via Ribbon Synapse from 35393 -> 35391","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35393,"TargetID":35391,"Directional":true}]},{"ID":13607,"SourceStructureID":35395,"TargetStructureID":11063,"Label":"35395-11063 via Conventional from 35396 -> 33577","Type":"Conventional","Directional":true,"Links":[{"SourceID":35396,"TargetID":33577,"Directional":true}]},{"ID":13608,"SourceStructureID":35400,"TargetStructureID":11063,"Label":"35400-11063 via Conventional from 35401 -> 35402","Type":"Conventional","Directional":true,"Links":[{"SourceID":35401,"TargetID":35402,"Directional":true}]},{"ID":13609,"SourceStructureID":35403,"TargetStructureID":11063,"Label":"35403-11063 via Conventional from 35404 -> 33581","Type":"Conventional","Directional":true,"Links":[{"SourceID":35404,"TargetID":33581,"Directional":true}]},{"ID":13610,"SourceStructureID":35406,"TargetStructureID":11063,"Label":"35406-11063 via Conventional from 35407 -> 35408","Type":"Conventional","Directional":true,"Links":[{"SourceID":35407,"TargetID":35408,"Directional":true}]},{"ID":13611,"SourceStructureID":35406,"TargetStructureID":15977,"Label":"35406-15977 via Conventional from 35409 -> 38299","Type":"Conventional","Directional":true,"Links":[{"SourceID":35409,"TargetID":38299,"Directional":true}]},{"ID":13612,"SourceStructureID":35418,"TargetStructureID":11234,"Label":"35418-11234 via Conventional from 35419 -> 33316","Type":"Conventional","Directional":true,"Links":[{"SourceID":35419,"TargetID":33316,"Directional":true}]},{"ID":13613,"SourceStructureID":35418,"TargetStructureID":64939,"Label":"35418-64939 via Conventional from 129135 -> 129136, 129137 -> 129138","Type":"Conventional","Directional":true,"Links":[{"SourceID":129135,"TargetID":129136,"Directional":true},{"SourceID":129137,"TargetID":129138,"Directional":true}]},{"ID":13614,"SourceStructureID":35428,"TargetStructureID":5729,"Label":"35428-5729 via Conventional from 35433 -> 111945","Type":"Conventional","Directional":true,"Links":[{"SourceID":35433,"TargetID":111945,"Directional":true}]},{"ID":13615,"SourceStructureID":35428,"TargetStructureID":11235,"Label":"35428-11235 via Conventional from 35429 -> 35427","Type":"Conventional","Directional":true,"Links":[{"SourceID":35429,"TargetID":35427,"Directional":true}]},{"ID":13616,"SourceStructureID":35436,"TargetStructureID":11235,"Label":"35436-11235 via Conventional from 35437 -> 35435","Type":"Conventional","Directional":true,"Links":[{"SourceID":35437,"TargetID":35435,"Directional":true}]},{"ID":13617,"SourceStructureID":35440,"TargetStructureID":5503,"Label":"35440-5503 via Conventional from 108521 -> 108518","Type":"Conventional","Directional":true,"Links":[{"SourceID":108521,"TargetID":108518,"Directional":true}]},{"ID":13618,"SourceStructureID":35440,"TargetStructureID":5729,"Label":"35440-5729 via Conventional from 111624 -> 111625","Type":"Conventional","Directional":true,"Links":[{"SourceID":111624,"TargetID":111625,"Directional":true}]},{"ID":13619,"SourceStructureID":35440,"TargetStructureID":6118,"Label":"35440-6118 via Conventional from 35446 -> 129142, 35449 -> 65926","Type":"Conventional","Directional":true,"Links":[{"SourceID":35446,"TargetID":129142,"Directional":true},{"SourceID":35449,"TargetID":65926,"Directional":true}]},{"ID":13620,"SourceStructureID":35440,"TargetStructureID":11235,"Label":"35440-11235 via Conventional from 35441 -> 35439","Type":"Conventional","Directional":true,"Links":[{"SourceID":35441,"TargetID":35439,"Directional":true}]},{"ID":13621,"SourceStructureID":35452,"TargetStructureID":8040,"Label":"35452-8040 via Conventional from 35459 -> 35462","Type":"Conventional","Directional":true,"Links":[{"SourceID":35459,"TargetID":35462,"Directional":true}]},{"ID":13622,"SourceStructureID":35452,"TargetStructureID":10632,"Label":"35452-10632 via Conventional from 35455 -> 35456","Type":"Conventional","Directional":true,"Links":[{"SourceID":35455,"TargetID":35456,"Directional":true}]},{"ID":13623,"SourceStructureID":35452,"TargetStructureID":11246,"Label":"35452-11246 via Conventional from 35453 -> 35454","Type":"Conventional","Directional":true,"Links":[{"SourceID":35453,"TargetID":35454,"Directional":true}]},{"ID":13624,"SourceStructureID":35468,"TargetStructureID":11248,"Label":"35468-11248 via Conventional from 35469 -> 33767","Type":"Conventional","Directional":true,"Links":[{"SourceID":35469,"TargetID":33767,"Directional":true}]},{"ID":13625,"SourceStructureID":35470,"TargetStructureID":11248,"Label":"35470-11248 via Conventional from 35471 -> 33768","Type":"Conventional","Directional":true,"Links":[{"SourceID":35471,"TargetID":33768,"Directional":true}]},{"ID":13626,"SourceStructureID":35473,"TargetStructureID":11248,"Label":"35473-11248 via Conventional from 35474 -> 35472","Type":"Conventional","Directional":true,"Links":[{"SourceID":35474,"TargetID":35472,"Directional":true}]},{"ID":13627,"SourceStructureID":35475,"TargetStructureID":11248,"Label":"35475-11248 via Conventional from 35476 -> 35477","Type":"Conventional","Directional":true,"Links":[{"SourceID":35476,"TargetID":35477,"Directional":true}]},{"ID":13628,"SourceStructureID":35483,"TargetStructureID":334,"Label":"35483-334 via Conventional from 35484 -> 35482","Type":"Conventional","Directional":true,"Links":[{"SourceID":35484,"TargetID":35482,"Directional":true}]},{"ID":13629,"SourceStructureID":35489,"TargetStructureID":366,"Label":"35489-366 via Conventional from 35492 -> 13670","Type":"Conventional","Directional":true,"Links":[{"SourceID":35492,"TargetID":13670,"Directional":true}]},{"ID":13630,"SourceStructureID":35489,"TargetStructureID":422,"Label":"35489-422 via Conventional from 35490 -> 35491","Type":"Conventional","Directional":true,"Links":[{"SourceID":35490,"TargetID":35491,"Directional":true}]},{"ID":13631,"SourceStructureID":35510,"TargetStructureID":445,"Label":"35510-445 via Conventional from 35511 -> 1979","Type":"Conventional","Directional":true,"Links":[{"SourceID":35511,"TargetID":1979,"Directional":true}]},{"ID":13632,"SourceStructureID":35513,"TargetStructureID":445,"Label":"35513-445 via Conventional from 35514 -> 35512","Type":"Conventional","Directional":true,"Links":[{"SourceID":35514,"TargetID":35512,"Directional":true}]},{"ID":13633,"SourceStructureID":35534,"TargetStructureID":10590,"Label":"35534-10590 via Conventional from 35535 -> 35536","Type":"Conventional","Directional":true,"Links":[{"SourceID":35535,"TargetID":35536,"Directional":true}]},{"ID":13634,"SourceStructureID":35534,"TargetStructureID":10961,"Label":"35534-10961 via Conventional from 35537 -> 35538","Type":"Conventional","Directional":true,"Links":[{"SourceID":35537,"TargetID":35538,"Directional":true}]},{"ID":13635,"SourceStructureID":35539,"TargetStructureID":5530,"Label":"35539-5530 via Conventional from 77912 -> 42447","Type":"Conventional","Directional":true,"Links":[{"SourceID":77912,"TargetID":42447,"Directional":true}]},{"ID":13636,"SourceStructureID":35539,"TargetStructureID":10590,"Label":"35539-10590 via Conventional from 35540 -> 35541","Type":"Conventional","Directional":true,"Links":[{"SourceID":35540,"TargetID":35541,"Directional":true}]},{"ID":13637,"SourceStructureID":35545,"TargetStructureID":10602,"Label":"35545-10602 via Conventional from 35546 -> 35544","Type":"Conventional","Directional":true,"Links":[{"SourceID":35546,"TargetID":35544,"Directional":true}]},{"ID":13638,"SourceStructureID":35550,"TargetStructureID":35545,"Label":"35550-35545 via Ribbon Synapse from 35551 -> 35549","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35551,"TargetID":35549,"Directional":true}]},{"ID":13639,"SourceStructureID":35555,"TargetStructureID":5565,"Label":"35555-5565 via Conventional from 35559 -> 50848","Type":"Conventional","Directional":true,"Links":[{"SourceID":35559,"TargetID":50848,"Directional":true}]},{"ID":13640,"SourceStructureID":35555,"TargetStructureID":5568,"Label":"35555-5568 via Conventional from 35558 -> 50361","Type":"Conventional","Directional":true,"Links":[{"SourceID":35558,"TargetID":50361,"Directional":true}]},{"ID":13641,"SourceStructureID":35555,"TargetStructureID":5729,"Label":"35555-5729 via Conventional from 35565 -> 64505","Type":"Conventional","Directional":true,"Links":[{"SourceID":35565,"TargetID":64505,"Directional":true}]},{"ID":13642,"SourceStructureID":35555,"TargetStructureID":8040,"Label":"35555-8040 via Conventional from 35564 -> 48630","Type":"Conventional","Directional":true,"Links":[{"SourceID":35564,"TargetID":48630,"Directional":true}]},{"ID":13643,"SourceStructureID":35555,"TargetStructureID":10826,"Label":"35555-10826 via Conventional from 35556 -> 35554","Type":"Conventional","Directional":true,"Links":[{"SourceID":35556,"TargetID":35554,"Directional":true}]},{"ID":13644,"SourceStructureID":35576,"TargetStructureID":161,"Label":"35576-161 via Conventional from 35582 -> 35588","Type":"Conventional","Directional":true,"Links":[{"SourceID":35582,"TargetID":35588,"Directional":true}]},{"ID":13645,"SourceStructureID":35576,"TargetStructureID":5303,"Label":"35576-5303 via Conventional from 35577 -> 35575","Type":"Conventional","Directional":true,"Links":[{"SourceID":35577,"TargetID":35575,"Directional":true}]},{"ID":13646,"SourceStructureID":35576,"TargetStructureID":5502,"Label":"35576-5502 via Conventional from 35589 -> 27270","Type":"Conventional","Directional":true,"Links":[{"SourceID":35589,"TargetID":27270,"Directional":true}]},{"ID":13647,"SourceStructureID":35576,"TargetStructureID":6121,"Label":"35576-6121 via Conventional from 35579 -> 53466","Type":"Conventional","Directional":true,"Links":[{"SourceID":35579,"TargetID":53466,"Directional":true}]},{"ID":13648,"SourceStructureID":35597,"TargetStructureID":5303,"Label":"35597-5303 via Conventional from 35599 -> 35600","Type":"Conventional","Directional":true,"Links":[{"SourceID":35599,"TargetID":35600,"Directional":true}]},{"ID":13649,"SourceStructureID":35597,"TargetStructureID":6118,"Label":"35597-6118 via Conventional from 121989 -> 121990","Type":"Conventional","Directional":true,"Links":[{"SourceID":121989,"TargetID":121990,"Directional":true}]},{"ID":13650,"SourceStructureID":35597,"TargetStructureID":11049,"Label":"35597-11049 via Conventional from 35598 -> 35596","Type":"Conventional","Directional":true,"Links":[{"SourceID":35598,"TargetID":35596,"Directional":true}]},{"ID":13651,"SourceStructureID":35653,"TargetStructureID":168,"Label":"35653-168 via Conventional from 35674 -> 4282","Type":"Conventional","Directional":true,"Links":[{"SourceID":35674,"TargetID":4282,"Directional":true}]},{"ID":13652,"SourceStructureID":35653,"TargetStructureID":170,"Label":"35653-170 via Conventional from 35680 -> 89663, 89455 -> 89456","Type":"Conventional","Directional":true,"Links":[{"SourceID":35680,"TargetID":89663,"Directional":true},{"SourceID":89455,"TargetID":89456,"Directional":true}]},{"ID":13653,"SourceStructureID":35653,"TargetStructureID":606,"Label":"35653-606 via Conventional from 35677 -> 35678, 47825 -> 47824","Type":"Conventional","Directional":true,"Links":[{"SourceID":35677,"TargetID":35678,"Directional":true},{"SourceID":47825,"TargetID":47824,"Directional":true}]},{"ID":13654,"SourceStructureID":35653,"TargetStructureID":5528,"Label":"35653-5528 via Conventional from 35656 -> 94413, 35657 -> 35658","Type":"Conventional","Directional":true,"Links":[{"SourceID":35656,"TargetID":94413,"Directional":true},{"SourceID":35657,"TargetID":35658,"Directional":true}]},{"ID":13655,"SourceStructureID":35653,"TargetStructureID":5530,"Label":"35653-5530 via Conventional from 35676 -> 75529","Type":"Conventional","Directional":true,"Links":[{"SourceID":35676,"TargetID":75529,"Directional":true}]},{"ID":13656,"SourceStructureID":35653,"TargetStructureID":6127,"Label":"35653-6127 via Conventional from 35666 -> 35668","Type":"Conventional","Directional":true,"Links":[{"SourceID":35666,"TargetID":35668,"Directional":true}]},{"ID":13657,"SourceStructureID":35653,"TargetStructureID":10956,"Label":"35653-10956 via Conventional from 35654 -> 35655","Type":"Conventional","Directional":true,"Links":[{"SourceID":35654,"TargetID":35655,"Directional":true}]},{"ID":13658,"SourceStructureID":35681,"TargetStructureID":5303,"Label":"35681-5303 via Conventional from 35682 -> 35612","Type":"Conventional","Directional":true,"Links":[{"SourceID":35682,"TargetID":35612,"Directional":true}]},{"ID":13659,"SourceStructureID":35681,"TargetStructureID":6048,"Label":"35681-6048 via Conventional from 35684 -> 35685","Type":"Conventional","Directional":true,"Links":[{"SourceID":35684,"TargetID":35685,"Directional":true}]},{"ID":13660,"SourceStructureID":35681,"TargetStructureID":6132,"Label":"35681-6132 via Conventional from 35724 -> 35725","Type":"Conventional","Directional":true,"Links":[{"SourceID":35724,"TargetID":35725,"Directional":true}]},{"ID":13661,"SourceStructureID":35696,"TargetStructureID":9787,"Label":"35696-9787 via Ribbon Synapse from 35702 -> 35703","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35702,"TargetID":35703,"Directional":true}]},{"ID":13662,"SourceStructureID":35696,"TargetStructureID":16073,"Label":"35696-16073 via Ribbon Synapse from 35697 -> 24189, 35700 -> 24188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35697,"TargetID":24189,"Directional":true},{"SourceID":35700,"TargetID":24188,"Directional":true}]},{"ID":13663,"SourceStructureID":35696,"TargetStructureID":35681,"Label":"35696-35681 via Ribbon Synapse from 35711 -> 35695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":35711,"TargetID":35695,"Directional":true}]},{"ID":13664,"SourceStructureID":35696,"TargetStructureID":136432,"Label":"35696-136432 via Ribbon Synapse from 40123 -> 136490","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40123,"TargetID":136490,"Directional":true}]},{"ID":13665,"SourceStructureID":35751,"TargetStructureID":408,"Label":"35751-408 via Conventional from 35752 -> 22511","Type":"Conventional","Directional":true,"Links":[{"SourceID":35752,"TargetID":22511,"Directional":true}]},{"ID":13666,"SourceStructureID":35811,"TargetStructureID":142,"Label":"35811-142 via Conventional from 35835 -> 126164, 35836 -> 31769, 35837 -> 31776, 35840 -> 49707","Type":"Conventional","Directional":true,"Links":[{"SourceID":35835,"TargetID":126164,"Directional":true},{"SourceID":35836,"TargetID":31769,"Directional":true},{"SourceID":35837,"TargetID":31776,"Directional":true},{"SourceID":35840,"TargetID":49707,"Directional":true}]},{"ID":13667,"SourceStructureID":35811,"TargetStructureID":176,"Label":"35811-176 via Conventional from 35842 -> 35843, 35848 -> 35849","Type":"Conventional","Directional":true,"Links":[{"SourceID":35842,"TargetID":35843,"Directional":true},{"SourceID":35848,"TargetID":35849,"Directional":true}]},{"ID":13668,"SourceStructureID":35811,"TargetStructureID":372,"Label":"35811-372 via Conventional from 35812 -> 30781","Type":"Conventional","Directional":true,"Links":[{"SourceID":35812,"TargetID":30781,"Directional":true}]},{"ID":13669,"SourceStructureID":35811,"TargetStructureID":408,"Label":"35811-408 via Conventional from 35882 -> 35883, 35884 -> 35771","Type":"Conventional","Directional":true,"Links":[{"SourceID":35882,"TargetID":35883,"Directional":true},{"SourceID":35884,"TargetID":35771,"Directional":true}]},{"ID":13670,"SourceStructureID":35811,"TargetStructureID":1724,"Label":"35811-1724 via Conventional from 35823 -> 20187","Type":"Conventional","Directional":true,"Links":[{"SourceID":35823,"TargetID":20187,"Directional":true}]},{"ID":13671,"SourceStructureID":35811,"TargetStructureID":3756,"Label":"35811-3756 via Conventional from 35852 -> 35854","Type":"Conventional","Directional":true,"Links":[{"SourceID":35852,"TargetID":35854,"Directional":true}]},{"ID":13672,"SourceStructureID":35811,"TargetStructureID":4569,"Label":"35811-4569 via Conventional from 35815 -> 52458, 35818 -> 23797, 35820 -> 23783","Type":"Conventional","Directional":true,"Links":[{"SourceID":35815,"TargetID":52458,"Directional":true},{"SourceID":35818,"TargetID":23797,"Directional":true},{"SourceID":35820,"TargetID":23783,"Directional":true}]},{"ID":13673,"SourceStructureID":35811,"TargetStructureID":5442,"Label":"35811-5442 via Conventional from 55122 -> 55121, 55143 -> 55142","Type":"Conventional","Directional":true,"Links":[{"SourceID":55122,"TargetID":55121,"Directional":true},{"SourceID":55143,"TargetID":55142,"Directional":true}]},{"ID":13674,"SourceStructureID":35811,"TargetStructureID":5598,"Label":"35811-5598 via Conventional from 35861 -> 35862, 35864 -> 35865, 35871 -> 35872","Type":"Conventional","Directional":true,"Links":[{"SourceID":35861,"TargetID":35862,"Directional":true},{"SourceID":35864,"TargetID":35865,"Directional":true},{"SourceID":35871,"TargetID":35872,"Directional":true}]},{"ID":13675,"SourceStructureID":35811,"TargetStructureID":5601,"Label":"35811-5601 via Conventional from 35858 -> 35859","Type":"Conventional","Directional":true,"Links":[{"SourceID":35858,"TargetID":35859,"Directional":true}]},{"ID":13676,"SourceStructureID":35811,"TargetStructureID":6050,"Label":"35811-6050 via Conventional from 86605 -> 86606","Type":"Conventional","Directional":true,"Links":[{"SourceID":86605,"TargetID":86606,"Directional":true}]},{"ID":13677,"SourceStructureID":35811,"TargetStructureID":6117,"Label":"35811-6117 via Conventional from 86603 -> 86604","Type":"Conventional","Directional":true,"Links":[{"SourceID":86603,"TargetID":86604,"Directional":true}]},{"ID":13678,"SourceStructureID":35811,"TargetStructureID":6155,"Label":"35811-6155 via Conventional from 35813 -> 34787","Type":"Conventional","Directional":true,"Links":[{"SourceID":35813,"TargetID":34787,"Directional":true}]},{"ID":13679,"SourceStructureID":35811,"TargetStructureID":21299,"Label":"35811-21299 via Conventional from 35825 -> 35834","Type":"Conventional","Directional":true,"Links":[{"SourceID":35825,"TargetID":35834,"Directional":true}]},{"ID":13680,"SourceStructureID":35811,"TargetStructureID":58777,"Label":"35811-58777 via Conventional from 58783 -> 58781","Type":"Conventional","Directional":true,"Links":[{"SourceID":58783,"TargetID":58781,"Directional":true}]},{"ID":13681,"SourceStructureID":35887,"TargetStructureID":372,"Label":"35887-372 via Conventional from 35892 -> 30963, 35893 -> 30992","Type":"Conventional","Directional":true,"Links":[{"SourceID":35892,"TargetID":30963,"Directional":true},{"SourceID":35893,"TargetID":30992,"Directional":true}]},{"ID":13682,"SourceStructureID":35887,"TargetStructureID":408,"Label":"35887-408 via Conventional from 35888 -> 35798","Type":"Conventional","Directional":true,"Links":[{"SourceID":35888,"TargetID":35798,"Directional":true}]},{"ID":13683,"SourceStructureID":35894,"TargetStructureID":142,"Label":"35894-142 via Conventional from 35928 -> 35930","Type":"Conventional","Directional":true,"Links":[{"SourceID":35928,"TargetID":35930,"Directional":true}]},{"ID":13684,"SourceStructureID":35894,"TargetStructureID":176,"Label":"35894-176 via Conventional from 35938 -> 35939, 128229 -> 119680","Type":"Conventional","Directional":true,"Links":[{"SourceID":35938,"TargetID":35939,"Directional":true},{"SourceID":128229,"TargetID":119680,"Directional":true}]},{"ID":13685,"SourceStructureID":35894,"TargetStructureID":408,"Label":"35894-408 via Conventional from 35895 -> 35797, 35897 -> 35899, 35903 -> 35785","Type":"Conventional","Directional":true,"Links":[{"SourceID":35895,"TargetID":35797,"Directional":true},{"SourceID":35897,"TargetID":35899,"Directional":true},{"SourceID":35903,"TargetID":35785,"Directional":true}]},{"ID":13686,"SourceStructureID":35894,"TargetStructureID":1724,"Label":"35894-1724 via Conventional from 35918 -> 20200, 100543 -> 100544, 100638 -> 3944","Type":"Conventional","Directional":true,"Links":[{"SourceID":35918,"TargetID":20200,"Directional":true},{"SourceID":100543,"TargetID":100544,"Directional":true},{"SourceID":100638,"TargetID":3944,"Directional":true}]},{"ID":13687,"SourceStructureID":35894,"TargetStructureID":5278,"Label":"35894-5278 via Conventional from 35920 -> 11192","Type":"Conventional","Directional":true,"Links":[{"SourceID":35920,"TargetID":11192,"Directional":true}]},{"ID":13688,"SourceStructureID":35894,"TargetStructureID":5279,"Label":"35894-5279 via Conventional from 35922 -> 92650","Type":"Conventional","Directional":true,"Links":[{"SourceID":35922,"TargetID":92650,"Directional":true}]},{"ID":13689,"SourceStructureID":35894,"TargetStructureID":6050,"Label":"35894-6050 via Conventional from 35940 -> 119683, 35941 -> 35958","Type":"Conventional","Directional":true,"Links":[{"SourceID":35940,"TargetID":119683,"Directional":true},{"SourceID":35941,"TargetID":35958,"Directional":true}]},{"ID":13690,"SourceStructureID":35894,"TargetStructureID":6117,"Label":"35894-6117 via Conventional from 35927 -> 10527, 86023 -> 86024","Type":"Conventional","Directional":true,"Links":[{"SourceID":35927,"TargetID":10527,"Directional":true},{"SourceID":86023,"TargetID":86024,"Directional":true}]},{"ID":13691,"SourceStructureID":35894,"TargetStructureID":6155,"Label":"35894-6155 via Conventional from 35912 -> 15534, 35913 -> 15611, 107953 -> 107914, 107954 -> 48278","Type":"Conventional","Directional":true,"Links":[{"SourceID":35912,"TargetID":15534,"Directional":true},{"SourceID":35913,"TargetID":15611,"Directional":true},{"SourceID":107953,"TargetID":107914,"Directional":true},{"SourceID":107954,"TargetID":48278,"Directional":true}]},{"ID":13692,"SourceStructureID":35894,"TargetStructureID":32035,"Label":"35894-32035 via Conventional from 41660 -> 41659","Type":"Conventional","Directional":true,"Links":[{"SourceID":41660,"TargetID":41659,"Directional":true}]},{"ID":13693,"SourceStructureID":35969,"TargetStructureID":408,"Label":"35969-408 via Conventional from 35970 -> 29269, 62037 -> 52973","Type":"Conventional","Directional":true,"Links":[{"SourceID":35970,"TargetID":29269,"Directional":true},{"SourceID":62037,"TargetID":52973,"Directional":true}]},{"ID":13694,"SourceStructureID":35972,"TargetStructureID":408,"Label":"35972-408 via Conventional from 35973 -> 35807","Type":"Conventional","Directional":true,"Links":[{"SourceID":35973,"TargetID":35807,"Directional":true}]},{"ID":13695,"SourceStructureID":35975,"TargetStructureID":142,"Label":"35975-142 via Conventional from 84978 -> 49770","Type":"Conventional","Directional":true,"Links":[{"SourceID":84978,"TargetID":49770,"Directional":true}]},{"ID":13696,"SourceStructureID":35975,"TargetStructureID":408,"Label":"35975-408 via Conventional from 35976 -> 35974, 35981 -> 35792","Type":"Conventional","Directional":true,"Links":[{"SourceID":35976,"TargetID":35974,"Directional":true},{"SourceID":35981,"TargetID":35792,"Directional":true}]},{"ID":13697,"SourceStructureID":35975,"TargetStructureID":1724,"Label":"35975-1724 via Conventional from 35989 -> 3930, 48481 -> 4012, 49048 -> 49047","Type":"Conventional","Directional":true,"Links":[{"SourceID":35989,"TargetID":3930,"Directional":true},{"SourceID":48481,"TargetID":4012,"Directional":true},{"SourceID":49048,"TargetID":49047,"Directional":true}]},{"ID":13698,"SourceStructureID":35975,"TargetStructureID":5279,"Label":"35975-5279 via Conventional from 35990 -> 25825, 35991 -> 35993","Type":"Conventional","Directional":true,"Links":[{"SourceID":35990,"TargetID":25825,"Directional":true},{"SourceID":35991,"TargetID":35993,"Directional":true}]},{"ID":13699,"SourceStructureID":35975,"TargetStructureID":5292,"Label":"35975-5292 via Conventional from 36002 -> 36007","Type":"Conventional","Directional":true,"Links":[{"SourceID":36002,"TargetID":36007,"Directional":true}]},{"ID":13700,"SourceStructureID":35975,"TargetStructureID":5598,"Label":"35975-5598 via Conventional from 36028 -> 36029","Type":"Conventional","Directional":true,"Links":[{"SourceID":36028,"TargetID":36029,"Directional":true}]},{"ID":13701,"SourceStructureID":35975,"TargetStructureID":6050,"Label":"35975-6050 via Conventional from 36009 -> 126981, 62392 -> 51878, 62393 -> 35951, 62394 -> 62395, 70350 -> 70356, 126986 -> 126985","Type":"Conventional","Directional":true,"Links":[{"SourceID":36009,"TargetID":126981,"Directional":true},{"SourceID":62392,"TargetID":51878,"Directional":true},{"SourceID":62393,"TargetID":35951,"Directional":true},{"SourceID":62394,"TargetID":62395,"Directional":true},{"SourceID":70350,"TargetID":70356,"Directional":true},{"SourceID":126986,"TargetID":126985,"Directional":true}]},{"ID":13702,"SourceStructureID":35975,"TargetStructureID":6117,"Label":"35975-6117 via Conventional from 84975 -> 84976","Type":"Conventional","Directional":true,"Links":[{"SourceID":84975,"TargetID":84976,"Directional":true}]},{"ID":13703,"SourceStructureID":35975,"TargetStructureID":6155,"Label":"35975-6155 via Conventional from 35982 -> 35983, 35984 -> 15755, 35986 -> 15604, 35987 -> 15686, 108107 -> 48286","Type":"Conventional","Directional":true,"Links":[{"SourceID":35982,"TargetID":35983,"Directional":true},{"SourceID":35984,"TargetID":15755,"Directional":true},{"SourceID":35986,"TargetID":15604,"Directional":true},{"SourceID":35987,"TargetID":15686,"Directional":true},{"SourceID":108107,"TargetID":48286,"Directional":true}]},{"ID":13704,"SourceStructureID":35975,"TargetStructureID":15796,"Label":"35975-15796 via Conventional from 35999 -> 36001","Type":"Conventional","Directional":true,"Links":[{"SourceID":35999,"TargetID":36001,"Directional":true}]},{"ID":13705,"SourceStructureID":35975,"TargetStructureID":15976,"Label":"35975-15976 via Conventional from 36052 -> 36053","Type":"Conventional","Directional":true,"Links":[{"SourceID":36052,"TargetID":36053,"Directional":true}]},{"ID":13706,"SourceStructureID":36130,"TargetStructureID":15796,"Label":"36130-15796 via Conventional from 36131 -> 15838","Type":"Conventional","Directional":true,"Links":[{"SourceID":36131,"TargetID":15838,"Directional":true}]},{"ID":13707,"SourceStructureID":36130,"TargetStructureID":59163,"Label":"36130-59163 via Conventional from 36149 -> 59166","Type":"Conventional","Directional":true,"Links":[{"SourceID":36149,"TargetID":59166,"Directional":true}]},{"ID":13708,"SourceStructureID":36151,"TargetStructureID":36153,"Label":"36151-36153 via Conventional from 36152 -> 36154","Type":"Conventional","Directional":true,"Links":[{"SourceID":36152,"TargetID":36154,"Directional":true}]},{"ID":13709,"SourceStructureID":36153,"TargetStructureID":479,"Label":"36153-479 via Conventional from 61615 -> 61614","Type":"Conventional","Directional":true,"Links":[{"SourceID":61615,"TargetID":61614,"Directional":true}]},{"ID":13710,"SourceStructureID":36153,"TargetStructureID":8575,"Label":"36153-8575 via Conventional from 61612 -> 17385","Type":"Conventional","Directional":true,"Links":[{"SourceID":61612,"TargetID":17385,"Directional":true}]},{"ID":13711,"SourceStructureID":36158,"TargetStructureID":479,"Label":"36158-479 via Conventional from 36159 -> 12365","Type":"Conventional","Directional":true,"Links":[{"SourceID":36159,"TargetID":12365,"Directional":true}]},{"ID":13712,"SourceStructureID":36162,"TargetStructureID":479,"Label":"36162-479 via Conventional from 36163 -> 36161, 36166 -> 36167, 36166 -> 37612","Type":"Conventional","Directional":true,"Links":[{"SourceID":36163,"TargetID":36161,"Directional":true},{"SourceID":36166,"TargetID":36167,"Directional":true},{"SourceID":36166,"TargetID":37612,"Directional":true}]},{"ID":13713,"SourceStructureID":36170,"TargetStructureID":479,"Label":"36170-479 via Conventional from 36171 -> 121708","Type":"Conventional","Directional":true,"Links":[{"SourceID":36171,"TargetID":121708,"Directional":true}]},{"ID":13714,"SourceStructureID":36222,"TargetStructureID":372,"Label":"36222-372 via Conventional from 36223 -> 16019","Type":"Conventional","Directional":true,"Links":[{"SourceID":36223,"TargetID":16019,"Directional":true}]},{"ID":13715,"SourceStructureID":36228,"TargetStructureID":318,"Label":"36228-318 via Conventional from 36233 -> 20276","Type":"Conventional","Directional":true,"Links":[{"SourceID":36233,"TargetID":20276,"Directional":true}]},{"ID":13716,"SourceStructureID":36228,"TargetStructureID":419,"Label":"36228-419 via Conventional from 36229 -> 10174","Type":"Conventional","Directional":true,"Links":[{"SourceID":36229,"TargetID":10174,"Directional":true}]},{"ID":13717,"SourceStructureID":36234,"TargetStructureID":419,"Label":"36234-419 via Conventional from 36235 -> 10166","Type":"Conventional","Directional":true,"Links":[{"SourceID":36235,"TargetID":10166,"Directional":true}]},{"ID":13718,"SourceStructureID":36276,"TargetStructureID":518,"Label":"36276-518 via Conventional from 36277 -> 3408","Type":"Conventional","Directional":true,"Links":[{"SourceID":36277,"TargetID":3408,"Directional":true}]},{"ID":13719,"SourceStructureID":36276,"TargetStructureID":10959,"Label":"36276-10959 via Conventional from 36289 -> 36291, 36290 -> 36292","Type":"Conventional","Directional":true,"Links":[{"SourceID":36289,"TargetID":36291,"Directional":true},{"SourceID":36290,"TargetID":36292,"Directional":true}]},{"ID":13720,"SourceStructureID":36293,"TargetStructureID":518,"Label":"36293-518 via Conventional from 36294 -> 3447, 36296 -> 3409","Type":"Conventional","Directional":true,"Links":[{"SourceID":36294,"TargetID":3447,"Directional":true},{"SourceID":36296,"TargetID":3409,"Directional":true}]},{"ID":13721,"SourceStructureID":36299,"TargetStructureID":518,"Label":"36299-518 via Conventional from 36300 -> 3406, 36304 -> 3412","Type":"Conventional","Directional":true,"Links":[{"SourceID":36300,"TargetID":3406,"Directional":true},{"SourceID":36304,"TargetID":3412,"Directional":true}]},{"ID":13722,"SourceStructureID":36419,"TargetStructureID":518,"Label":"36419-518 via Conventional from 36420 -> 3356","Type":"Conventional","Directional":true,"Links":[{"SourceID":36420,"TargetID":3356,"Directional":true}]},{"ID":13723,"SourceStructureID":36419,"TargetStructureID":118372,"Label":"36419-118372 via Conventional from 118371 -> 118373","Type":"Conventional","Directional":true,"Links":[{"SourceID":118371,"TargetID":118373,"Directional":true}]},{"ID":13724,"SourceStructureID":36421,"TargetStructureID":518,"Label":"36421-518 via Conventional from 36422 -> 36423","Type":"Conventional","Directional":true,"Links":[{"SourceID":36422,"TargetID":36423,"Directional":true}]},{"ID":13725,"SourceStructureID":36481,"TargetStructureID":518,"Label":"36481-518 via Conventional from 36482 -> 3370, 36486 -> 36487, 36723 -> 36721","Type":"Conventional","Directional":true,"Links":[{"SourceID":36482,"TargetID":3370,"Directional":true},{"SourceID":36486,"TargetID":36487,"Directional":true},{"SourceID":36723,"TargetID":36721,"Directional":true}]},{"ID":13726,"SourceStructureID":36481,"TargetStructureID":8749,"Label":"36481-8749 via Conventional from 36496 -> 8864","Type":"Conventional","Directional":true,"Links":[{"SourceID":36496,"TargetID":8864,"Directional":true}]},{"ID":13727,"SourceStructureID":36501,"TargetStructureID":476,"Label":"36501-476 via Conventional from 36504 -> 2317","Type":"Conventional","Directional":true,"Links":[{"SourceID":36504,"TargetID":2317,"Directional":true}]},{"ID":13728,"SourceStructureID":36501,"TargetStructureID":518,"Label":"36501-518 via Conventional from 36502 -> 3374","Type":"Conventional","Directional":true,"Links":[{"SourceID":36502,"TargetID":3374,"Directional":true}]},{"ID":13729,"SourceStructureID":36508,"TargetStructureID":518,"Label":"36508-518 via Conventional from 36509 -> 36510, 36511 -> 3430","Type":"Conventional","Directional":true,"Links":[{"SourceID":36509,"TargetID":36510,"Directional":true},{"SourceID":36511,"TargetID":3430,"Directional":true}]},{"ID":13730,"SourceStructureID":36512,"TargetStructureID":518,"Label":"36512-518 via Conventional from 36514 -> 2321","Type":"Conventional","Directional":true,"Links":[{"SourceID":36514,"TargetID":2321,"Directional":true}]},{"ID":13731,"SourceStructureID":36516,"TargetStructureID":5562,"Label":"36516-5562 via Conventional from 36613 -> 33099","Type":"Conventional","Directional":true,"Links":[{"SourceID":36613,"TargetID":33099,"Directional":true}]},{"ID":13732,"SourceStructureID":36516,"TargetStructureID":5649,"Label":"36516-5649 via Conventional from 36623 -> 33108","Type":"Conventional","Directional":true,"Links":[{"SourceID":36623,"TargetID":33108,"Directional":true}]},{"ID":13733,"SourceStructureID":36516,"TargetStructureID":10872,"Label":"36516-10872 via Conventional from 36519 -> 15025","Type":"Conventional","Directional":true,"Links":[{"SourceID":36519,"TargetID":15025,"Directional":true}]},{"ID":13734,"SourceStructureID":36516,"TargetStructureID":67410,"Label":"36516-67410 via Conventional from 36520 -> 82769","Type":"Conventional","Directional":true,"Links":[{"SourceID":36520,"TargetID":82769,"Directional":true}]},{"ID":13735,"SourceStructureID":36650,"TargetStructureID":518,"Label":"36650-518 via Conventional from 36651 -> 2319, 36652 -> 3433","Type":"Conventional","Directional":true,"Links":[{"SourceID":36651,"TargetID":2319,"Directional":true},{"SourceID":36652,"TargetID":3433,"Directional":true}]},{"ID":13736,"SourceStructureID":36661,"TargetStructureID":518,"Label":"36661-518 via Conventional from 36662 -> 3456","Type":"Conventional","Directional":true,"Links":[{"SourceID":36662,"TargetID":3456,"Directional":true}]},{"ID":13737,"SourceStructureID":36664,"TargetStructureID":518,"Label":"36664-518 via Conventional from 36665 -> 36663","Type":"Conventional","Directional":true,"Links":[{"SourceID":36665,"TargetID":36663,"Directional":true}]},{"ID":13738,"SourceStructureID":36683,"TargetStructureID":518,"Label":"36683-518 via Conventional from 36684 -> 3444, 36686 -> 36685, 118353 -> 118352","Type":"Conventional","Directional":true,"Links":[{"SourceID":36684,"TargetID":3444,"Directional":true},{"SourceID":36686,"TargetID":36685,"Directional":true},{"SourceID":118353,"TargetID":118352,"Directional":true}]},{"ID":13739,"SourceStructureID":36688,"TargetStructureID":476,"Label":"36688-476 via Conventional from 36694 -> 36693","Type":"Conventional","Directional":true,"Links":[{"SourceID":36694,"TargetID":36693,"Directional":true}]},{"ID":13740,"SourceStructureID":36688,"TargetStructureID":518,"Label":"36688-518 via Conventional from 36689 -> 3500, 36691 -> 36692, 36696 -> 3578","Type":"Conventional","Directional":true,"Links":[{"SourceID":36689,"TargetID":3500,"Directional":true},{"SourceID":36691,"TargetID":36692,"Directional":true},{"SourceID":36696,"TargetID":3578,"Directional":true}]},{"ID":13741,"SourceStructureID":36698,"TargetStructureID":476,"Label":"36698-476 via Conventional from 36699 -> 2327","Type":"Conventional","Directional":true,"Links":[{"SourceID":36699,"TargetID":2327,"Directional":true}]},{"ID":13742,"SourceStructureID":36700,"TargetStructureID":476,"Label":"36700-476 via Conventional from 36701 -> 2314, 36703 -> 16546","Type":"Conventional","Directional":true,"Links":[{"SourceID":36701,"TargetID":2314,"Directional":true},{"SourceID":36703,"TargetID":16546,"Directional":true}]},{"ID":13743,"SourceStructureID":36700,"TargetStructureID":5350,"Label":"36700-5350 via Conventional from 36704 -> 36705","Type":"Conventional","Directional":true,"Links":[{"SourceID":36704,"TargetID":36705,"Directional":true}]},{"ID":13744,"SourceStructureID":36714,"TargetStructureID":518,"Label":"36714-518 via Conventional from 36715 -> 36716, 36720 -> 3514","Type":"Conventional","Directional":true,"Links":[{"SourceID":36715,"TargetID":36716,"Directional":true},{"SourceID":36720,"TargetID":3514,"Directional":true}]},{"ID":13745,"SourceStructureID":36724,"TargetStructureID":294,"Label":"36724-294 via Conventional from 36728 -> 36729, 36730 -> 36731","Type":"Conventional","Directional":true,"Links":[{"SourceID":36728,"TargetID":36729,"Directional":true},{"SourceID":36730,"TargetID":36731,"Directional":true}]},{"ID":13746,"SourceStructureID":36724,"TargetStructureID":518,"Label":"36724-518 via Conventional from 36725 -> 3392, 36726 -> 3398, 36727 -> 3386","Type":"Conventional","Directional":true,"Links":[{"SourceID":36725,"TargetID":3392,"Directional":true},{"SourceID":36726,"TargetID":3398,"Directional":true},{"SourceID":36727,"TargetID":3386,"Directional":true}]},{"ID":13747,"SourceStructureID":36746,"TargetStructureID":518,"Label":"36746-518 via Conventional from 36747 -> 36745","Type":"Conventional","Directional":true,"Links":[{"SourceID":36747,"TargetID":36745,"Directional":true}]},{"ID":13748,"SourceStructureID":37012,"TargetStructureID":476,"Label":"37012-476 via Conventional from 37013 -> 2313","Type":"Conventional","Directional":true,"Links":[{"SourceID":37013,"TargetID":2313,"Directional":true}]},{"ID":13749,"SourceStructureID":37021,"TargetStructureID":476,"Label":"37021-476 via Conventional from 37022 -> 37023","Type":"Conventional","Directional":true,"Links":[{"SourceID":37022,"TargetID":37023,"Directional":true}]},{"ID":13750,"SourceStructureID":37042,"TargetStructureID":471,"Label":"37042-471 via Conventional from 37043 -> 16043","Type":"Conventional","Directional":true,"Links":[{"SourceID":37043,"TargetID":16043,"Directional":true}]},{"ID":13751,"SourceStructureID":37127,"TargetStructureID":476,"Label":"37127-476 via Conventional from 37132 -> 2374","Type":"Conventional","Directional":true,"Links":[{"SourceID":37132,"TargetID":2374,"Directional":true}]},{"ID":13752,"SourceStructureID":37127,"TargetStructureID":518,"Label":"37127-518 via Conventional from 37128 -> 3438","Type":"Conventional","Directional":true,"Links":[{"SourceID":37128,"TargetID":3438,"Directional":true}]},{"ID":13753,"SourceStructureID":37135,"TargetStructureID":419,"Label":"37135-419 via Conventional from 45662 -> 45663","Type":"Conventional","Directional":true,"Links":[{"SourceID":45662,"TargetID":45663,"Directional":true}]},{"ID":13754,"SourceStructureID":37135,"TargetStructureID":476,"Label":"37135-476 via Conventional from 37181 -> 2394","Type":"Conventional","Directional":true,"Links":[{"SourceID":37181,"TargetID":2394,"Directional":true}]},{"ID":13755,"SourceStructureID":37135,"TargetStructureID":514,"Label":"37135-514 via Conventional from 37179 -> 1557","Type":"Conventional","Directional":true,"Links":[{"SourceID":37179,"TargetID":1557,"Directional":true}]},{"ID":13756,"SourceStructureID":37135,"TargetStructureID":518,"Label":"37135-518 via Conventional from 37136 -> 14719","Type":"Conventional","Directional":true,"Links":[{"SourceID":37136,"TargetID":14719,"Directional":true}]},{"ID":13757,"SourceStructureID":37183,"TargetStructureID":518,"Label":"37183-518 via Conventional from 37184 -> 3489","Type":"Conventional","Directional":true,"Links":[{"SourceID":37184,"TargetID":3489,"Directional":true}]},{"ID":13758,"SourceStructureID":37192,"TargetStructureID":514,"Label":"37192-514 via Conventional from 37193 -> 3288","Type":"Conventional","Directional":true,"Links":[{"SourceID":37193,"TargetID":3288,"Directional":true}]},{"ID":13759,"SourceStructureID":37192,"TargetStructureID":3679,"Label":"37192-3679 via Conventional from 37196 -> 16433","Type":"Conventional","Directional":true,"Links":[{"SourceID":37196,"TargetID":16433,"Directional":true}]},{"ID":13760,"SourceStructureID":37286,"TargetStructureID":419,"Label":"37286-419 via Conventional from 133552 -> 132365, 133652 -> 132389","Type":"Conventional","Directional":true,"Links":[{"SourceID":133552,"TargetID":132365,"Directional":true},{"SourceID":133652,"TargetID":132389,"Directional":true}]},{"ID":13761,"SourceStructureID":37295,"TargetStructureID":318,"Label":"37295-318 via Ribbon Synapse from 39161 -> 39162","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39161,"TargetID":39162,"Directional":true}]},{"ID":13762,"SourceStructureID":37295,"TargetStructureID":37288,"Label":"37295-37288 via Ribbon Synapse from 37296 -> 37289, 37300 -> 37299","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37296,"TargetID":37289,"Directional":true},{"SourceID":37300,"TargetID":37299,"Directional":true}]},{"ID":13763,"SourceStructureID":37309,"TargetStructureID":22554,"Label":"37309-22554 via Ribbon Synapse from 37343 -> 22568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37343,"TargetID":22568,"Directional":true}]},{"ID":13764,"SourceStructureID":37309,"TargetStructureID":37288,"Label":"37309-37288 via Ribbon Synapse from 37353 -> 37354, 37355 -> 37308, 37357 -> 37358, 37360 -> 37359, 37364 -> 37365, 37367 -> 37366, 37438 -> 37437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":37353,"TargetID":37354,"Directional":true},{"SourceID":37355,"TargetID":37308,"Directional":true},{"SourceID":37357,"TargetID":37358,"Directional":true},{"SourceID":37360,"TargetID":37359,"Directional":true},{"SourceID":37364,"TargetID":37365,"Directional":true},{"SourceID":37367,"TargetID":37366,"Directional":true},{"SourceID":37438,"TargetID":37437,"Directional":true}]},{"ID":13765,"SourceStructureID":37309,"TargetStructureID":121541,"Label":"37309-121541 via Ribbon Synapse from 121557 -> 121556","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121557,"TargetID":121556,"Directional":true}]},{"ID":13766,"SourceStructureID":37440,"TargetStructureID":37288,"Label":"37440-37288 via Conventional from 37446 -> 37307, 37448 -> 37306","Type":"Conventional","Directional":true,"Links":[{"SourceID":37446,"TargetID":37307,"Directional":true},{"SourceID":37448,"TargetID":37306,"Directional":true}]},{"ID":13767,"SourceStructureID":37440,"TargetStructureID":37309,"Label":"37440-37309 via Conventional from 37441 -> 37439","Type":"Conventional","Directional":true,"Links":[{"SourceID":37441,"TargetID":37439,"Directional":true}]},{"ID":13768,"SourceStructureID":37440,"TargetStructureID":37440,"Label":"37440-37440 via Conventional from 37442 -> 37443","Type":"Conventional","Directional":true,"Links":[{"SourceID":37442,"TargetID":37443,"Directional":true}]},{"ID":13769,"SourceStructureID":37461,"TargetStructureID":514,"Label":"37461-514 via Conventional from 37462 -> 1439","Type":"Conventional","Directional":true,"Links":[{"SourceID":37462,"TargetID":1439,"Directional":true}]},{"ID":13770,"SourceStructureID":37461,"TargetStructureID":591,"Label":"37461-591 via Conventional from 37464 -> 10288","Type":"Conventional","Directional":true,"Links":[{"SourceID":37464,"TargetID":10288,"Directional":true}]},{"ID":13771,"SourceStructureID":37466,"TargetStructureID":519,"Label":"37466-519 via Conventional from 37467 -> 37465","Type":"Conventional","Directional":true,"Links":[{"SourceID":37467,"TargetID":37465,"Directional":true}]},{"ID":13772,"SourceStructureID":38200,"TargetStructureID":514,"Label":"38200-514 via Conventional from 38201 -> 1373","Type":"Conventional","Directional":true,"Links":[{"SourceID":38201,"TargetID":1373,"Directional":true}]},{"ID":13773,"SourceStructureID":38231,"TargetStructureID":10826,"Label":"38231-10826 via Conventional from 38232 -> 38233","Type":"Conventional","Directional":true,"Links":[{"SourceID":38232,"TargetID":38233,"Directional":true}]},{"ID":13774,"SourceStructureID":38236,"TargetStructureID":5623,"Label":"38236-5623 via Conventional from 38241 -> 38242","Type":"Conventional","Directional":true,"Links":[{"SourceID":38241,"TargetID":38242,"Directional":true}]},{"ID":13775,"SourceStructureID":38236,"TargetStructureID":10826,"Label":"38236-10826 via Conventional from 38237 -> 38238","Type":"Conventional","Directional":true,"Links":[{"SourceID":38237,"TargetID":38238,"Directional":true}]},{"ID":13776,"SourceStructureID":38302,"TargetStructureID":6050,"Label":"38302-6050 via Conventional from 38305 -> 38306, 127551 -> 127552","Type":"Conventional","Directional":true,"Links":[{"SourceID":38305,"TargetID":38306,"Directional":true},{"SourceID":127551,"TargetID":127552,"Directional":true}]},{"ID":13777,"SourceStructureID":38302,"TargetStructureID":11033,"Label":"38302-11033 via Conventional from 38303 -> 38304","Type":"Conventional","Directional":true,"Links":[{"SourceID":38303,"TargetID":38304,"Directional":true}]},{"ID":13778,"SourceStructureID":38307,"TargetStructureID":5599,"Label":"38307-5599 via Conventional from 38321 -> 38326","Type":"Conventional","Directional":true,"Links":[{"SourceID":38321,"TargetID":38326,"Directional":true}]},{"ID":13779,"SourceStructureID":38307,"TargetStructureID":6050,"Label":"38307-6050 via Conventional from 38311 -> 38312, 38319 -> 38320","Type":"Conventional","Directional":true,"Links":[{"SourceID":38311,"TargetID":38312,"Directional":true},{"SourceID":38319,"TargetID":38320,"Directional":true}]},{"ID":13780,"SourceStructureID":38307,"TargetStructureID":11033,"Label":"38307-11033 via Conventional from 38309 -> 38310","Type":"Conventional","Directional":true,"Links":[{"SourceID":38309,"TargetID":38310,"Directional":true}]},{"ID":13781,"SourceStructureID":38345,"TargetStructureID":11020,"Label":"38345-11020 via Conventional from 38346 -> 20011","Type":"Conventional","Directional":true,"Links":[{"SourceID":38346,"TargetID":20011,"Directional":true}]},{"ID":13782,"SourceStructureID":38357,"TargetStructureID":277,"Label":"38357-277 via Conventional from 38431 -> 38430","Type":"Conventional","Directional":true,"Links":[{"SourceID":38431,"TargetID":38430,"Directional":true}]},{"ID":13783,"SourceStructureID":38357,"TargetStructureID":24366,"Label":"38357-24366 via Conventional from 38889 -> 24378","Type":"Conventional","Directional":true,"Links":[{"SourceID":38889,"TargetID":24378,"Directional":true}]},{"ID":13784,"SourceStructureID":38363,"TargetStructureID":6115,"Label":"38363-6115 via Conventional from 38369 -> 59609","Type":"Conventional","Directional":true,"Links":[{"SourceID":38369,"TargetID":59609,"Directional":true}]},{"ID":13785,"SourceStructureID":38363,"TargetStructureID":10931,"Label":"38363-10931 via Conventional from 38364 -> 38365","Type":"Conventional","Directional":true,"Links":[{"SourceID":38364,"TargetID":38365,"Directional":true}]},{"ID":13786,"SourceStructureID":38363,"TargetStructureID":66407,"Label":"38363-66407 via Conventional from 66467 -> 66468","Type":"Conventional","Directional":true,"Links":[{"SourceID":66467,"TargetID":66468,"Directional":true}]},{"ID":13787,"SourceStructureID":38373,"TargetStructureID":10931,"Label":"38373-10931 via Conventional from 38374 -> 38375","Type":"Conventional","Directional":true,"Links":[{"SourceID":38374,"TargetID":38375,"Directional":true}]},{"ID":13788,"SourceStructureID":38376,"TargetStructureID":10931,"Label":"38376-10931 via Conventional from 38377 -> 14216","Type":"Conventional","Directional":true,"Links":[{"SourceID":38377,"TargetID":14216,"Directional":true}]},{"ID":13789,"SourceStructureID":38379,"TargetStructureID":5297,"Label":"38379-5297 via Conventional from 121285 -> 116331","Type":"Conventional","Directional":true,"Links":[{"SourceID":121285,"TargetID":116331,"Directional":true}]},{"ID":13790,"SourceStructureID":38379,"TargetStructureID":10931,"Label":"38379-10931 via Conventional from 38380 -> 38381","Type":"Conventional","Directional":true,"Links":[{"SourceID":38380,"TargetID":38381,"Directional":true}]},{"ID":13791,"SourceStructureID":38385,"TargetStructureID":10897,"Label":"38385-10897 via Conventional from 38386 -> 38387","Type":"Conventional","Directional":true,"Links":[{"SourceID":38386,"TargetID":38387,"Directional":true}]},{"ID":13792,"SourceStructureID":38385,"TargetStructureID":67981,"Label":"38385-67981 via Conventional from 67991 -> 67990","Type":"Conventional","Directional":true,"Links":[{"SourceID":67991,"TargetID":67990,"Directional":true}]},{"ID":13793,"SourceStructureID":38388,"TargetStructureID":10897,"Label":"38388-10897 via Conventional from 38389 -> 38390","Type":"Conventional","Directional":true,"Links":[{"SourceID":38389,"TargetID":38390,"Directional":true}]},{"ID":13794,"SourceStructureID":38388,"TargetStructureID":11401,"Label":"38388-11401 via Conventional from 38455 -> 38456","Type":"Conventional","Directional":true,"Links":[{"SourceID":38455,"TargetID":38456,"Directional":true}]},{"ID":13795,"SourceStructureID":38395,"TargetStructureID":8037,"Label":"38395-8037 via Conventional from 38398 -> 38399","Type":"Conventional","Directional":true,"Links":[{"SourceID":38398,"TargetID":38399,"Directional":true}]},{"ID":13796,"SourceStructureID":38395,"TargetStructureID":8749,"Label":"38395-8749 via Conventional from 38400 -> 8829","Type":"Conventional","Directional":true,"Links":[{"SourceID":38400,"TargetID":8829,"Directional":true}]},{"ID":13797,"SourceStructureID":38395,"TargetStructureID":10897,"Label":"38395-10897 via Conventional from 38396 -> 38397","Type":"Conventional","Directional":true,"Links":[{"SourceID":38396,"TargetID":38397,"Directional":true}]},{"ID":13798,"SourceStructureID":38401,"TargetStructureID":10840,"Label":"38401-10840 via Conventional from 38402 -> 33270","Type":"Conventional","Directional":true,"Links":[{"SourceID":38402,"TargetID":33270,"Directional":true}]},{"ID":13799,"SourceStructureID":38404,"TargetStructureID":5637,"Label":"38404-5637 via Conventional from 38411 -> 56030","Type":"Conventional","Directional":true,"Links":[{"SourceID":38411,"TargetID":56030,"Directional":true}]},{"ID":13800,"SourceStructureID":38428,"TargetStructureID":16087,"Label":"38428-16087 via Conventional from 38429 -> 38427","Type":"Conventional","Directional":true,"Links":[{"SourceID":38429,"TargetID":38427,"Directional":true}]},{"ID":13801,"SourceStructureID":38435,"TargetStructureID":5454,"Label":"38435-5454 via Conventional from 38436 -> 34195","Type":"Conventional","Directional":true,"Links":[{"SourceID":38436,"TargetID":34195,"Directional":true}]},{"ID":13802,"SourceStructureID":38446,"TargetStructureID":5454,"Label":"38446-5454 via Conventional from 38447 -> 38432","Type":"Conventional","Directional":true,"Links":[{"SourceID":38447,"TargetID":38432,"Directional":true}]},{"ID":13803,"SourceStructureID":38461,"TargetStructureID":5468,"Label":"38461-5468 via Conventional from 38470 -> 38473","Type":"Conventional","Directional":true,"Links":[{"SourceID":38470,"TargetID":38473,"Directional":true}]},{"ID":13804,"SourceStructureID":38461,"TargetStructureID":10412,"Label":"38461-10412 via Conventional from 38462 -> 10419","Type":"Conventional","Directional":true,"Links":[{"SourceID":38462,"TargetID":10419,"Directional":true}]},{"ID":13805,"SourceStructureID":38483,"TargetStructureID":5649,"Label":"38483-5649 via Conventional from 38500 -> 38501, 107116 -> 107114","Type":"Conventional","Directional":true,"Links":[{"SourceID":38500,"TargetID":38501,"Directional":true},{"SourceID":107116,"TargetID":107114,"Directional":true}]},{"ID":13806,"SourceStructureID":38483,"TargetStructureID":8586,"Label":"38483-8586 via Conventional from 38484 -> 8644","Type":"Conventional","Directional":true,"Links":[{"SourceID":38484,"TargetID":8644,"Directional":true}]},{"ID":13807,"SourceStructureID":38502,"TargetStructureID":7054,"Label":"38502-7054 via Conventional from 38503 -> 10914","Type":"Conventional","Directional":true,"Links":[{"SourceID":38503,"TargetID":10914,"Directional":true}]},{"ID":13808,"SourceStructureID":38600,"TargetStructureID":422,"Label":"38600-422 via Conventional from 38601 -> 31854","Type":"Conventional","Directional":true,"Links":[{"SourceID":38601,"TargetID":31854,"Directional":true}]},{"ID":13809,"SourceStructureID":38605,"TargetStructureID":369,"Label":"38605-369 via Conventional from 30438 -> 29552","Type":"Conventional","Directional":true,"Links":[{"SourceID":30438,"TargetID":29552,"Directional":true}]},{"ID":13810,"SourceStructureID":38605,"TargetStructureID":422,"Label":"38605-422 via Conventional from 38606 -> 38604","Type":"Conventional","Directional":true,"Links":[{"SourceID":38606,"TargetID":38604,"Directional":true}]},{"ID":13811,"SourceStructureID":38605,"TargetStructureID":3116,"Label":"38605-3116 via Conventional from 101488 -> 46773","Type":"Conventional","Directional":true,"Links":[{"SourceID":101488,"TargetID":46773,"Directional":true}]},{"ID":13812,"SourceStructureID":38605,"TargetStructureID":4569,"Label":"38605-4569 via Conventional from 38612 -> 38613, 98731 -> 98729","Type":"Conventional","Directional":true,"Links":[{"SourceID":38612,"TargetID":38613,"Directional":true},{"SourceID":98731,"TargetID":98729,"Directional":true}]},{"ID":13813,"SourceStructureID":38632,"TargetStructureID":307,"Label":"38632-307 via Conventional from 38642 -> 38643","Type":"Conventional","Directional":true,"Links":[{"SourceID":38642,"TargetID":38643,"Directional":true}]},{"ID":13814,"SourceStructureID":38632,"TargetStructureID":380,"Label":"38632-380 via Conventional from 38636 -> 38635","Type":"Conventional","Directional":true,"Links":[{"SourceID":38636,"TargetID":38635,"Directional":true}]},{"ID":13815,"SourceStructureID":38698,"TargetStructureID":330,"Label":"38698-330 via Conventional from 38701 -> 38702","Type":"Conventional","Directional":true,"Links":[{"SourceID":38701,"TargetID":38702,"Directional":true}]},{"ID":13816,"SourceStructureID":38698,"TargetStructureID":360,"Label":"38698-360 via Conventional from 38699 -> 26585","Type":"Conventional","Directional":true,"Links":[{"SourceID":38699,"TargetID":26585,"Directional":true}]},{"ID":13817,"SourceStructureID":38698,"TargetStructureID":606,"Label":"38698-606 via Conventional from 52707 -> 9797","Type":"Conventional","Directional":true,"Links":[{"SourceID":52707,"TargetID":9797,"Directional":true}]},{"ID":13818,"SourceStructureID":38703,"TargetStructureID":335,"Label":"38703-335 via Conventional from 38711 -> 38712","Type":"Conventional","Directional":true,"Links":[{"SourceID":38711,"TargetID":38712,"Directional":true}]},{"ID":13819,"SourceStructureID":38703,"TargetStructureID":360,"Label":"38703-360 via Conventional from 38704 -> 26586, 38705 -> 26587","Type":"Conventional","Directional":true,"Links":[{"SourceID":38704,"TargetID":26586,"Directional":true},{"SourceID":38705,"TargetID":26587,"Directional":true}]},{"ID":13820,"SourceStructureID":38713,"TargetStructureID":345,"Label":"38713-345 via Conventional from 38714 -> 38715","Type":"Conventional","Directional":true,"Links":[{"SourceID":38714,"TargetID":38715,"Directional":true}]},{"ID":13821,"SourceStructureID":38718,"TargetStructureID":345,"Label":"38718-345 via Conventional from 38720 -> 38719","Type":"Conventional","Directional":true,"Links":[{"SourceID":38720,"TargetID":38719,"Directional":true}]},{"ID":13822,"SourceStructureID":38718,"TargetStructureID":446,"Label":"38718-446 via Conventional from 38723 -> 38724","Type":"Conventional","Directional":true,"Links":[{"SourceID":38723,"TargetID":38724,"Directional":true}]},{"ID":13823,"SourceStructureID":38727,"TargetStructureID":332,"Label":"38727-332 via Conventional from 38731 -> 38732","Type":"Conventional","Directional":true,"Links":[{"SourceID":38731,"TargetID":38732,"Directional":true}]},{"ID":13824,"SourceStructureID":38727,"TargetStructureID":334,"Label":"38727-334 via Conventional from 38728 -> 26206","Type":"Conventional","Directional":true,"Links":[{"SourceID":38728,"TargetID":26206,"Directional":true}]},{"ID":13825,"SourceStructureID":38727,"TargetStructureID":38703,"Label":"38727-38703 via Conventional from 38729 -> 38730","Type":"Conventional","Directional":true,"Links":[{"SourceID":38729,"TargetID":38730,"Directional":true}]},{"ID":13826,"SourceStructureID":38735,"TargetStructureID":17533,"Label":"38735-17533 via Conventional from 38736 -> 38737","Type":"Conventional","Directional":true,"Links":[{"SourceID":38736,"TargetID":38737,"Directional":true}]},{"ID":13827,"SourceStructureID":38740,"TargetStructureID":293,"Label":"38740-293 via Conventional from 38741 -> 14377","Type":"Conventional","Directional":true,"Links":[{"SourceID":38741,"TargetID":14377,"Directional":true}]},{"ID":13828,"SourceStructureID":38799,"TargetStructureID":598,"Label":"38799-598 via Ribbon Synapse from 38800 -> 38798","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38800,"TargetID":38798,"Directional":true}]},{"ID":13829,"SourceStructureID":38848,"TargetStructureID":18282,"Label":"38848-18282 via Ribbon Synapse from 38850 -> 31455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":38850,"TargetID":31455,"Directional":true}]},{"ID":13830,"SourceStructureID":38906,"TargetStructureID":483,"Label":"38906-483 via Conventional from 38907 -> 26812","Type":"Conventional","Directional":true,"Links":[{"SourceID":38907,"TargetID":26812,"Directional":true}]},{"ID":13831,"SourceStructureID":38906,"TargetStructureID":4570,"Label":"38906-4570 via Conventional from 38925 -> 14979","Type":"Conventional","Directional":true,"Links":[{"SourceID":38925,"TargetID":14979,"Directional":true}]},{"ID":13832,"SourceStructureID":38949,"TargetStructureID":170,"Label":"38949-170 via Conventional from 39029 -> 39030, 39034 -> 39035","Type":"Conventional","Directional":true,"Links":[{"SourceID":39029,"TargetID":39030,"Directional":true},{"SourceID":39034,"TargetID":39035,"Directional":true}]},{"ID":13833,"SourceStructureID":38949,"TargetStructureID":176,"Label":"38949-176 via Conventional from 38989 -> 128264, 38993 -> 38994, 38997 -> 38999","Type":"Conventional","Directional":true,"Links":[{"SourceID":38989,"TargetID":128264,"Directional":true},{"SourceID":38993,"TargetID":38994,"Directional":true},{"SourceID":38997,"TargetID":38999,"Directional":true}]},{"ID":13834,"SourceStructureID":38949,"TargetStructureID":431,"Label":"38949-431 via Conventional from 39043 -> 12741, 39045 -> 39046","Type":"Conventional","Directional":true,"Links":[{"SourceID":39043,"TargetID":12741,"Directional":true},{"SourceID":39045,"TargetID":39046,"Directional":true}]},{"ID":13835,"SourceStructureID":38949,"TargetStructureID":4569,"Label":"38949-4569 via Conventional from 39038 -> 39039, 39040 -> 39041","Type":"Conventional","Directional":true,"Links":[{"SourceID":39038,"TargetID":39039,"Directional":true},{"SourceID":39040,"TargetID":39041,"Directional":true}]},{"ID":13836,"SourceStructureID":38949,"TargetStructureID":5584,"Label":"38949-5584 via Conventional from 38952 -> 38970","Type":"Conventional","Directional":true,"Links":[{"SourceID":38952,"TargetID":38970,"Directional":true}]},{"ID":13837,"SourceStructureID":38949,"TargetStructureID":5598,"Label":"38949-5598 via Conventional from 38950 -> 38951, 38976 -> 38977, 38980 -> 115006, 124477 -> 114595","Type":"Conventional","Directional":true,"Links":[{"SourceID":38950,"TargetID":38951,"Directional":true},{"SourceID":38976,"TargetID":38977,"Directional":true},{"SourceID":38980,"TargetID":115006,"Directional":true},{"SourceID":124477,"TargetID":114595,"Directional":true}]},{"ID":13838,"SourceStructureID":38949,"TargetStructureID":9376,"Label":"38949-9376 via Conventional from 38983 -> 33657","Type":"Conventional","Directional":true,"Links":[{"SourceID":38983,"TargetID":33657,"Directional":true}]},{"ID":13839,"SourceStructureID":38949,"TargetStructureID":29827,"Label":"38949-29827 via Conventional from 39028 -> 29836","Type":"Conventional","Directional":true,"Links":[{"SourceID":39028,"TargetID":29836,"Directional":true}]},{"ID":13840,"SourceStructureID":38949,"TargetStructureID":90273,"Label":"38949-90273 via Conventional from 39037 -> 90274","Type":"Conventional","Directional":true,"Links":[{"SourceID":39037,"TargetID":90274,"Directional":true}]},{"ID":13841,"SourceStructureID":39168,"TargetStructureID":516,"Label":"39168-516 via Conventional from 39169 -> 6383","Type":"Conventional","Directional":true,"Links":[{"SourceID":39169,"TargetID":6383,"Directional":true}]},{"ID":13842,"SourceStructureID":39192,"TargetStructureID":516,"Label":"39192-516 via Conventional from 39194 -> 39193","Type":"Conventional","Directional":true,"Links":[{"SourceID":39194,"TargetID":39193,"Directional":true}]},{"ID":13843,"SourceStructureID":39196,"TargetStructureID":516,"Label":"39196-516 via Conventional from 39197 -> 39195","Type":"Conventional","Directional":true,"Links":[{"SourceID":39197,"TargetID":39195,"Directional":true}]},{"ID":13844,"SourceStructureID":39201,"TargetStructureID":516,"Label":"39201-516 via Conventional from 39202 -> 6493, 39204 -> 39205, 39206 -> 39207","Type":"Conventional","Directional":true,"Links":[{"SourceID":39202,"TargetID":6493,"Directional":true},{"SourceID":39204,"TargetID":39205,"Directional":true},{"SourceID":39206,"TargetID":39207,"Directional":true}]},{"ID":13845,"SourceStructureID":39208,"TargetStructureID":171,"Label":"39208-171 via Conventional from 39219 -> 39220","Type":"Conventional","Directional":true,"Links":[{"SourceID":39219,"TargetID":39220,"Directional":true}]},{"ID":13846,"SourceStructureID":39208,"TargetStructureID":516,"Label":"39208-516 via Conventional from 39209 -> 39210, 39215 -> 3742","Type":"Conventional","Directional":true,"Links":[{"SourceID":39209,"TargetID":39210,"Directional":true},{"SourceID":39215,"TargetID":3742,"Directional":true}]},{"ID":13847,"SourceStructureID":39216,"TargetStructureID":516,"Label":"39216-516 via Conventional from 39217 -> 39218","Type":"Conventional","Directional":true,"Links":[{"SourceID":39217,"TargetID":39218,"Directional":true}]},{"ID":13848,"SourceStructureID":39226,"TargetStructureID":516,"Label":"39226-516 via Conventional from 39227 -> 39229","Type":"Conventional","Directional":true,"Links":[{"SourceID":39227,"TargetID":39229,"Directional":true}]},{"ID":13849,"SourceStructureID":39239,"TargetStructureID":3679,"Label":"39239-3679 via Conventional from 39242 -> 39243","Type":"Conventional","Directional":true,"Links":[{"SourceID":39242,"TargetID":39243,"Directional":true}]},{"ID":13850,"SourceStructureID":39239,"TargetStructureID":32046,"Label":"39239-32046 via Conventional from 39240 -> 39241","Type":"Conventional","Directional":true,"Links":[{"SourceID":39240,"TargetID":39241,"Directional":true}]},{"ID":13851,"SourceStructureID":39244,"TargetStructureID":516,"Label":"39244-516 via Conventional from 39245 -> 39246","Type":"Conventional","Directional":true,"Links":[{"SourceID":39245,"TargetID":39246,"Directional":true}]},{"ID":13852,"SourceStructureID":39244,"TargetStructureID":517,"Label":"39244-517 via Conventional from 39248 -> 39249","Type":"Conventional","Directional":true,"Links":[{"SourceID":39248,"TargetID":39249,"Directional":true}]},{"ID":13853,"SourceStructureID":39244,"TargetStructureID":10931,"Label":"39244-10931 via Conventional from 39250 -> 39251, 89590 -> 89591","Type":"Conventional","Directional":true,"Links":[{"SourceID":39250,"TargetID":39251,"Directional":true},{"SourceID":89590,"TargetID":89591,"Directional":true}]},{"ID":13854,"SourceStructureID":39252,"TargetStructureID":516,"Label":"39252-516 via Conventional from 39253 -> 39254","Type":"Conventional","Directional":true,"Links":[{"SourceID":39253,"TargetID":39254,"Directional":true}]},{"ID":13855,"SourceStructureID":39252,"TargetStructureID":517,"Label":"39252-517 via Conventional from 39255 -> 1576","Type":"Conventional","Directional":true,"Links":[{"SourceID":39255,"TargetID":1576,"Directional":true}]},{"ID":13856,"SourceStructureID":39285,"TargetStructureID":516,"Label":"39285-516 via Conventional from 39288 -> 39291","Type":"Conventional","Directional":true,"Links":[{"SourceID":39288,"TargetID":39291,"Directional":true}]},{"ID":13857,"SourceStructureID":39299,"TargetStructureID":9260,"Label":"39299-9260 via Conventional from 39300 -> 39298","Type":"Conventional","Directional":true,"Links":[{"SourceID":39300,"TargetID":39298,"Directional":true}]},{"ID":13858,"SourceStructureID":39299,"TargetStructureID":21299,"Label":"39299-21299 via Conventional from 39301 -> 39304","Type":"Conventional","Directional":true,"Links":[{"SourceID":39301,"TargetID":39304,"Directional":true}]},{"ID":13859,"SourceStructureID":39299,"TargetStructureID":24401,"Label":"39299-24401 via Conventional from 39309 -> 48069","Type":"Conventional","Directional":true,"Links":[{"SourceID":39309,"TargetID":48069,"Directional":true}]},{"ID":13860,"SourceStructureID":39319,"TargetStructureID":166,"Label":"39319-166 via Conventional from 39321 -> 59979","Type":"Conventional","Directional":true,"Links":[{"SourceID":39321,"TargetID":59979,"Directional":true}]},{"ID":13861,"SourceStructureID":39319,"TargetStructureID":516,"Label":"39319-516 via Conventional from 39320 -> 6402","Type":"Conventional","Directional":true,"Links":[{"SourceID":39320,"TargetID":6402,"Directional":true}]},{"ID":13862,"SourceStructureID":39324,"TargetStructureID":516,"Label":"39324-516 via Conventional from 39325 -> 39289, 39326 -> 39327","Type":"Conventional","Directional":true,"Links":[{"SourceID":39325,"TargetID":39289,"Directional":true},{"SourceID":39326,"TargetID":39327,"Directional":true}]},{"ID":13863,"SourceStructureID":39331,"TargetStructureID":516,"Label":"39331-516 via Conventional from 39332 -> 18400","Type":"Conventional","Directional":true,"Links":[{"SourceID":39332,"TargetID":18400,"Directional":true}]},{"ID":13864,"SourceStructureID":39342,"TargetStructureID":516,"Label":"39342-516 via Conventional from 39343 -> 39344, 39588 -> 39589","Type":"Conventional","Directional":true,"Links":[{"SourceID":39343,"TargetID":39344,"Directional":true},{"SourceID":39588,"TargetID":39589,"Directional":true}]},{"ID":13865,"SourceStructureID":39345,"TargetStructureID":166,"Label":"39345-166 via Conventional from 39346 -> 4462, 39352 -> 39353, 66719 -> 66720","Type":"Conventional","Directional":true,"Links":[{"SourceID":39346,"TargetID":4462,"Directional":true},{"SourceID":39352,"TargetID":39353,"Directional":true},{"SourceID":66719,"TargetID":66720,"Directional":true}]},{"ID":13866,"SourceStructureID":39516,"TargetStructureID":516,"Label":"39516-516 via Conventional from 39517 -> 6495, 39518 -> 6496","Type":"Conventional","Directional":true,"Links":[{"SourceID":39517,"TargetID":6495,"Directional":true},{"SourceID":39518,"TargetID":6496,"Directional":true}]},{"ID":13867,"SourceStructureID":39520,"TargetStructureID":516,"Label":"39520-516 via Conventional from 39522 -> 39521","Type":"Conventional","Directional":true,"Links":[{"SourceID":39522,"TargetID":39521,"Directional":true}]},{"ID":13868,"SourceStructureID":39523,"TargetStructureID":516,"Label":"39523-516 via Conventional from 39524 -> 39525","Type":"Conventional","Directional":true,"Links":[{"SourceID":39524,"TargetID":39525,"Directional":true}]},{"ID":13869,"SourceStructureID":39528,"TargetStructureID":10625,"Label":"39528-10625 via Conventional from 39529 -> 16238","Type":"Conventional","Directional":true,"Links":[{"SourceID":39529,"TargetID":16238,"Directional":true}]},{"ID":13870,"SourceStructureID":39530,"TargetStructureID":471,"Label":"39530-471 via Conventional from 83493 -> 16287, 83497 -> 16289, 83498 -> 16288, 83501 -> 16290","Type":"Conventional","Directional":true,"Links":[{"SourceID":83493,"TargetID":16287,"Directional":true},{"SourceID":83497,"TargetID":16289,"Directional":true},{"SourceID":83498,"TargetID":16288,"Directional":true},{"SourceID":83501,"TargetID":16290,"Directional":true}]},{"ID":13871,"SourceStructureID":39530,"TargetStructureID":3679,"Label":"39530-3679 via Conventional from 39556 -> 39549","Type":"Conventional","Directional":true,"Links":[{"SourceID":39556,"TargetID":39549,"Directional":true}]},{"ID":13872,"SourceStructureID":39530,"TargetStructureID":5017,"Label":"39530-5017 via Conventional from 39552 -> 39542","Type":"Conventional","Directional":true,"Links":[{"SourceID":39552,"TargetID":39542,"Directional":true}]},{"ID":13873,"SourceStructureID":39530,"TargetStructureID":10625,"Label":"39530-10625 via Conventional from 39531 -> 39532, 39533 -> 39534, 39535 -> 16237, 39536 -> 39537, 39538 -> 39539","Type":"Conventional","Directional":true,"Links":[{"SourceID":39531,"TargetID":39532,"Directional":true},{"SourceID":39533,"TargetID":39534,"Directional":true},{"SourceID":39535,"TargetID":16237,"Directional":true},{"SourceID":39536,"TargetID":39537,"Directional":true},{"SourceID":39538,"TargetID":39539,"Directional":true}]},{"ID":13874,"SourceStructureID":39560,"TargetStructureID":516,"Label":"39560-516 via Conventional from 39561 -> 39562, 39563 -> 39564, 39567 -> 39568, 39569 -> 39570, 39655 -> 39657, 39656 -> 39658","Type":"Conventional","Directional":true,"Links":[{"SourceID":39561,"TargetID":39562,"Directional":true},{"SourceID":39563,"TargetID":39564,"Directional":true},{"SourceID":39567,"TargetID":39568,"Directional":true},{"SourceID":39569,"TargetID":39570,"Directional":true},{"SourceID":39655,"TargetID":39657,"Directional":true},{"SourceID":39656,"TargetID":39658,"Directional":true}]},{"ID":13875,"SourceStructureID":39575,"TargetStructureID":516,"Label":"39575-516 via Conventional from 39576 -> 39572, 39577 -> 39574","Type":"Conventional","Directional":true,"Links":[{"SourceID":39576,"TargetID":39572,"Directional":true},{"SourceID":39577,"TargetID":39574,"Directional":true}]},{"ID":13876,"SourceStructureID":39581,"TargetStructureID":6857,"Label":"39581-6857 via Conventional from 39582 -> 7496, 39583 -> 7495, 39584 -> 7497, 39586 -> 7499, 39587 -> 7498","Type":"Conventional","Directional":true,"Links":[{"SourceID":39582,"TargetID":7496,"Directional":true},{"SourceID":39583,"TargetID":7495,"Directional":true},{"SourceID":39584,"TargetID":7497,"Directional":true},{"SourceID":39586,"TargetID":7499,"Directional":true},{"SourceID":39587,"TargetID":7498,"Directional":true}]},{"ID":13877,"SourceStructureID":39590,"TargetStructureID":516,"Label":"39590-516 via Conventional from 39591 -> 6390, 39592 -> 6388, 39592 -> 6389, 39594 -> 39595","Type":"Conventional","Directional":true,"Links":[{"SourceID":39591,"TargetID":6390,"Directional":true},{"SourceID":39592,"TargetID":6388,"Directional":true},{"SourceID":39592,"TargetID":6389,"Directional":true},{"SourceID":39594,"TargetID":39595,"Directional":true}]},{"ID":13878,"SourceStructureID":39596,"TargetStructureID":516,"Label":"39596-516 via Conventional from 39597 -> 6387","Type":"Conventional","Directional":true,"Links":[{"SourceID":39597,"TargetID":6387,"Directional":true}]},{"ID":13879,"SourceStructureID":39602,"TargetStructureID":516,"Label":"39602-516 via Conventional from 39603 -> 39601","Type":"Conventional","Directional":true,"Links":[{"SourceID":39603,"TargetID":39601,"Directional":true}]},{"ID":13880,"SourceStructureID":39602,"TargetStructureID":10625,"Label":"39602-10625 via Conventional from 51392 -> 51391","Type":"Conventional","Directional":true,"Links":[{"SourceID":51392,"TargetID":51391,"Directional":true}]},{"ID":13881,"SourceStructureID":39610,"TargetStructureID":166,"Label":"39610-166 via Conventional from 121986 -> 5799","Type":"Conventional","Directional":true,"Links":[{"SourceID":121986,"TargetID":5799,"Directional":true}]},{"ID":13882,"SourceStructureID":39610,"TargetStructureID":516,"Label":"39610-516 via Conventional from 39647 -> 39648","Type":"Conventional","Directional":true,"Links":[{"SourceID":39647,"TargetID":39648,"Directional":true}]},{"ID":13883,"SourceStructureID":39615,"TargetStructureID":180,"Label":"39615-180 via Conventional from 66533 -> 66534","Type":"Conventional","Directional":true,"Links":[{"SourceID":66533,"TargetID":66534,"Directional":true}]},{"ID":13884,"SourceStructureID":39615,"TargetStructureID":516,"Label":"39615-516 via Conventional from 45650 -> 39614","Type":"Conventional","Directional":true,"Links":[{"SourceID":45650,"TargetID":39614,"Directional":true}]},{"ID":13885,"SourceStructureID":39615,"TargetStructureID":10931,"Label":"39615-10931 via Conventional from 39643 -> 39629","Type":"Conventional","Directional":true,"Links":[{"SourceID":39643,"TargetID":39629,"Directional":true}]},{"ID":13886,"SourceStructureID":39615,"TargetStructureID":71517,"Label":"39615-71517 via Conventional from 132951 -> 132952","Type":"Conventional","Directional":true,"Links":[{"SourceID":132951,"TargetID":132952,"Directional":true}]},{"ID":13887,"SourceStructureID":39649,"TargetStructureID":516,"Label":"39649-516 via Conventional from 39650 -> 39651","Type":"Conventional","Directional":true,"Links":[{"SourceID":39650,"TargetID":39651,"Directional":true}]},{"ID":13888,"SourceStructureID":39677,"TargetStructureID":516,"Label":"39677-516 via Conventional from 39678 -> 4549","Type":"Conventional","Directional":true,"Links":[{"SourceID":39678,"TargetID":4549,"Directional":true}]},{"ID":13889,"SourceStructureID":39677,"TargetStructureID":31024,"Label":"39677-31024 via Conventional from 39679 -> 31068","Type":"Conventional","Directional":true,"Links":[{"SourceID":39679,"TargetID":31068,"Directional":true}]},{"ID":13890,"SourceStructureID":39688,"TargetStructureID":516,"Label":"39688-516 via Conventional from 39689 -> 39690","Type":"Conventional","Directional":true,"Links":[{"SourceID":39689,"TargetID":39690,"Directional":true}]},{"ID":13891,"SourceStructureID":39688,"TargetStructureID":10625,"Label":"39688-10625 via Conventional from 39693 -> 39694","Type":"Conventional","Directional":true,"Links":[{"SourceID":39693,"TargetID":39694,"Directional":true}]},{"ID":13892,"SourceStructureID":39696,"TargetStructureID":142,"Label":"39696-142 via Conventional from 87725 -> 92839","Type":"Conventional","Directional":true,"Links":[{"SourceID":87725,"TargetID":92839,"Directional":true}]},{"ID":13893,"SourceStructureID":39696,"TargetStructureID":171,"Label":"39696-171 via Conventional from 39700 -> 22910","Type":"Conventional","Directional":true,"Links":[{"SourceID":39700,"TargetID":22910,"Directional":true}]},{"ID":13894,"SourceStructureID":39696,"TargetStructureID":6117,"Label":"39696-6117 via Conventional from 86321 -> 86322","Type":"Conventional","Directional":true,"Links":[{"SourceID":86321,"TargetID":86322,"Directional":true}]},{"ID":13895,"SourceStructureID":39696,"TargetStructureID":10625,"Label":"39696-10625 via Conventional from 39697 -> 39695","Type":"Conventional","Directional":true,"Links":[{"SourceID":39697,"TargetID":39695,"Directional":true}]},{"ID":13896,"SourceStructureID":39706,"TargetStructureID":171,"Label":"39706-171 via Conventional from 39708 -> 39705","Type":"Conventional","Directional":true,"Links":[{"SourceID":39708,"TargetID":39705,"Directional":true}]},{"ID":13897,"SourceStructureID":39706,"TargetStructureID":39696,"Label":"39706-39696 via Conventional from 39707 -> 39703","Type":"Conventional","Directional":true,"Links":[{"SourceID":39707,"TargetID":39703,"Directional":true}]},{"ID":13898,"SourceStructureID":39717,"TargetStructureID":142,"Label":"39717-142 via Conventional from 39721 -> 119586","Type":"Conventional","Directional":true,"Links":[{"SourceID":39721,"TargetID":119586,"Directional":true}]},{"ID":13899,"SourceStructureID":39717,"TargetStructureID":5437,"Label":"39717-5437 via Conventional from 39720 -> 88063","Type":"Conventional","Directional":true,"Links":[{"SourceID":39720,"TargetID":88063,"Directional":true}]},{"ID":13900,"SourceStructureID":39717,"TargetStructureID":10625,"Label":"39717-10625 via Conventional from 39718 -> 39716","Type":"Conventional","Directional":true,"Links":[{"SourceID":39718,"TargetID":39716,"Directional":true}]},{"ID":13901,"SourceStructureID":39724,"TargetStructureID":10625,"Label":"39724-10625 via Conventional from 39725 -> 39726, 39729 -> 26932, 39731 -> 39732, 39733 -> 39734, 39735 -> 39736, 88826 -> 88828","Type":"Conventional","Directional":true,"Links":[{"SourceID":39725,"TargetID":39726,"Directional":true},{"SourceID":39729,"TargetID":26932,"Directional":true},{"SourceID":39731,"TargetID":39732,"Directional":true},{"SourceID":39733,"TargetID":39734,"Directional":true},{"SourceID":39735,"TargetID":39736,"Directional":true},{"SourceID":88826,"TargetID":88828,"Directional":true}]},{"ID":13902,"SourceStructureID":39737,"TargetStructureID":10625,"Label":"39737-10625 via Conventional from 39738 -> 39739, 39740 -> 88829, 39742 -> 39743","Type":"Conventional","Directional":true,"Links":[{"SourceID":39738,"TargetID":39739,"Directional":true},{"SourceID":39740,"TargetID":88829,"Directional":true},{"SourceID":39742,"TargetID":39743,"Directional":true}]},{"ID":13903,"SourceStructureID":39745,"TargetStructureID":10625,"Label":"39745-10625 via Conventional from 39746 -> 26936","Type":"Conventional","Directional":true,"Links":[{"SourceID":39746,"TargetID":26936,"Directional":true}]},{"ID":13904,"SourceStructureID":39748,"TargetStructureID":10625,"Label":"39748-10625 via Conventional from 39750 -> 39751, 39757 -> 39758","Type":"Conventional","Directional":true,"Links":[{"SourceID":39750,"TargetID":39751,"Directional":true},{"SourceID":39757,"TargetID":39758,"Directional":true}]},{"ID":13905,"SourceStructureID":39752,"TargetStructureID":10625,"Label":"39752-10625 via Conventional from 39753 -> 39754, 39755 -> 39756","Type":"Conventional","Directional":true,"Links":[{"SourceID":39753,"TargetID":39754,"Directional":true},{"SourceID":39755,"TargetID":39756,"Directional":true}]},{"ID":13906,"SourceStructureID":39759,"TargetStructureID":10625,"Label":"39759-10625 via Conventional from 39760 -> 39761, 39763 -> 16340","Type":"Conventional","Directional":true,"Links":[{"SourceID":39760,"TargetID":39761,"Directional":true},{"SourceID":39763,"TargetID":16340,"Directional":true}]},{"ID":13907,"SourceStructureID":39764,"TargetStructureID":10625,"Label":"39764-10625 via Conventional from 39765 -> 16233, 39766 -> 16234, 39768 -> 39769","Type":"Conventional","Directional":true,"Links":[{"SourceID":39765,"TargetID":16233,"Directional":true},{"SourceID":39766,"TargetID":16234,"Directional":true},{"SourceID":39768,"TargetID":39769,"Directional":true}]},{"ID":13908,"SourceStructureID":39764,"TargetStructureID":14615,"Label":"39764-14615 via Conventional from 39771 -> 39772","Type":"Conventional","Directional":true,"Links":[{"SourceID":39771,"TargetID":39772,"Directional":true}]},{"ID":13909,"SourceStructureID":39774,"TargetStructureID":180,"Label":"39774-180 via Conventional from 51339 -> 14157","Type":"Conventional","Directional":true,"Links":[{"SourceID":51339,"TargetID":14157,"Directional":true}]},{"ID":13910,"SourceStructureID":39774,"TargetStructureID":516,"Label":"39774-516 via Conventional from 39777 -> 39778","Type":"Conventional","Directional":true,"Links":[{"SourceID":39777,"TargetID":39778,"Directional":true}]},{"ID":13911,"SourceStructureID":39774,"TargetStructureID":10625,"Label":"39774-10625 via Conventional from 39775 -> 39776","Type":"Conventional","Directional":true,"Links":[{"SourceID":39775,"TargetID":39776,"Directional":true}]},{"ID":13912,"SourceStructureID":39784,"TargetStructureID":10625,"Label":"39784-10625 via Conventional from 39785 -> 39783","Type":"Conventional","Directional":true,"Links":[{"SourceID":39785,"TargetID":39783,"Directional":true}]},{"ID":13913,"SourceStructureID":39787,"TargetStructureID":10625,"Label":"39787-10625 via Conventional from 87735 -> 26931","Type":"Conventional","Directional":true,"Links":[{"SourceID":87735,"TargetID":26931,"Directional":true}]},{"ID":13914,"SourceStructureID":39787,"TargetStructureID":39787,"Label":"39787-39787 via Conventional from 87733 -> 87734","Type":"Conventional","Directional":true,"Links":[{"SourceID":87733,"TargetID":87734,"Directional":true}]},{"ID":13915,"SourceStructureID":39790,"TargetStructureID":10625,"Label":"39790-10625 via Conventional from 39791 -> 39792","Type":"Conventional","Directional":true,"Links":[{"SourceID":39791,"TargetID":39792,"Directional":true}]},{"ID":13916,"SourceStructureID":39794,"TargetStructureID":10625,"Label":"39794-10625 via Conventional from 39796 -> 39797","Type":"Conventional","Directional":true,"Links":[{"SourceID":39796,"TargetID":39797,"Directional":true}]},{"ID":13917,"SourceStructureID":39798,"TargetStructureID":10625,"Label":"39798-10625 via Conventional from 39799 -> 39800","Type":"Conventional","Directional":true,"Links":[{"SourceID":39799,"TargetID":39800,"Directional":true}]},{"ID":13918,"SourceStructureID":39802,"TargetStructureID":10625,"Label":"39802-10625 via Conventional from 39803 -> 39804","Type":"Conventional","Directional":true,"Links":[{"SourceID":39803,"TargetID":39804,"Directional":true}]},{"ID":13919,"SourceStructureID":39807,"TargetStructureID":10625,"Label":"39807-10625 via Conventional from 39808 -> 16751, 39809 -> 16752","Type":"Conventional","Directional":true,"Links":[{"SourceID":39808,"TargetID":16751,"Directional":true},{"SourceID":39809,"TargetID":16752,"Directional":true}]},{"ID":13920,"SourceStructureID":39811,"TargetStructureID":10625,"Label":"39811-10625 via Conventional from 39812 -> 39813, 39814 -> 26911","Type":"Conventional","Directional":true,"Links":[{"SourceID":39812,"TargetID":39813,"Directional":true},{"SourceID":39814,"TargetID":26911,"Directional":true}]},{"ID":13921,"SourceStructureID":39816,"TargetStructureID":10625,"Label":"39816-10625 via Conventional from 39820 -> 39821, 88830 -> 88831","Type":"Conventional","Directional":true,"Links":[{"SourceID":39820,"TargetID":39821,"Directional":true},{"SourceID":88830,"TargetID":88831,"Directional":true}]},{"ID":13922,"SourceStructureID":39822,"TargetStructureID":10625,"Label":"39822-10625 via Conventional from 39823 -> 26904","Type":"Conventional","Directional":true,"Links":[{"SourceID":39823,"TargetID":26904,"Directional":true}]},{"ID":13923,"SourceStructureID":39824,"TargetStructureID":10625,"Label":"39824-10625 via Conventional from 39825 -> 26910, 39829 -> 16753","Type":"Conventional","Directional":true,"Links":[{"SourceID":39825,"TargetID":26910,"Directional":true},{"SourceID":39829,"TargetID":16753,"Directional":true}]},{"ID":13924,"SourceStructureID":39830,"TargetStructureID":10625,"Label":"39830-10625 via Conventional from 39832 -> 26918, 39833 -> 26919, 39834 -> 26921","Type":"Conventional","Directional":true,"Links":[{"SourceID":39832,"TargetID":26918,"Directional":true},{"SourceID":39833,"TargetID":26919,"Directional":true},{"SourceID":39834,"TargetID":26921,"Directional":true}]},{"ID":13925,"SourceStructureID":39835,"TargetStructureID":10625,"Label":"39835-10625 via Conventional from 39836 -> 26920","Type":"Conventional","Directional":true,"Links":[{"SourceID":39836,"TargetID":26920,"Directional":true}]},{"ID":13926,"SourceStructureID":39838,"TargetStructureID":10625,"Label":"39838-10625 via Conventional from 39839 -> 26922","Type":"Conventional","Directional":true,"Links":[{"SourceID":39839,"TargetID":26922,"Directional":true}]},{"ID":13927,"SourceStructureID":39846,"TargetStructureID":519,"Label":"39846-519 via Conventional from 39847 -> 9306","Type":"Conventional","Directional":true,"Links":[{"SourceID":39847,"TargetID":9306,"Directional":true}]},{"ID":13928,"SourceStructureID":39846,"TargetStructureID":5575,"Label":"39846-5575 via Conventional from 39849 -> 23084","Type":"Conventional","Directional":true,"Links":[{"SourceID":39849,"TargetID":23084,"Directional":true}]},{"ID":13929,"SourceStructureID":39851,"TargetStructureID":408,"Label":"39851-408 via Conventional from 39860 -> 39861","Type":"Conventional","Directional":true,"Links":[{"SourceID":39860,"TargetID":39861,"Directional":true}]},{"ID":13930,"SourceStructureID":39851,"TargetStructureID":519,"Label":"39851-519 via Conventional from 39852 -> 39853","Type":"Conventional","Directional":true,"Links":[{"SourceID":39852,"TargetID":39853,"Directional":true}]},{"ID":13931,"SourceStructureID":39851,"TargetStructureID":15100,"Label":"39851-15100 via Conventional from 39858 -> 33786","Type":"Conventional","Directional":true,"Links":[{"SourceID":39858,"TargetID":33786,"Directional":true}]},{"ID":13932,"SourceStructureID":39851,"TargetStructureID":26079,"Label":"39851-26079 via Conventional from 39856 -> 39857","Type":"Conventional","Directional":true,"Links":[{"SourceID":39856,"TargetID":39857,"Directional":true}]},{"ID":13933,"SourceStructureID":39862,"TargetStructureID":6912,"Label":"39862-6912 via Ribbon Synapse from 51279 -> 51132, 51283 -> 51284","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51279,"TargetID":51132,"Directional":true},{"SourceID":51283,"TargetID":51284,"Directional":true}]},{"ID":13934,"SourceStructureID":39862,"TargetStructureID":39851,"Label":"39862-39851 via Ribbon Synapse from 39866 -> 39859","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":39866,"TargetID":39859,"Directional":true}]},{"ID":13935,"SourceStructureID":39862,"TargetStructureID":39957,"Label":"39862-39957 via Ribbon Synapse from 52302 -> 58545","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52302,"TargetID":58545,"Directional":true}]},{"ID":13936,"SourceStructureID":39862,"TargetStructureID":68737,"Label":"39862-68737 via Ribbon Synapse from 52330 -> 68741","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52330,"TargetID":68741,"Directional":true}]},{"ID":13937,"SourceStructureID":39862,"TargetStructureID":87172,"Label":"39862-87172 via Ribbon Synapse from 51176 -> 87173","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51176,"TargetID":87173,"Directional":true}]},{"ID":13938,"SourceStructureID":39867,"TargetStructureID":519,"Label":"39867-519 via Conventional from 39868 -> 39869","Type":"Conventional","Directional":true,"Links":[{"SourceID":39868,"TargetID":39869,"Directional":true}]},{"ID":13939,"SourceStructureID":39872,"TargetStructureID":485,"Label":"39872-485 via Conventional from 39874 -> 49903","Type":"Conventional","Directional":true,"Links":[{"SourceID":39874,"TargetID":49903,"Directional":true}]},{"ID":13940,"SourceStructureID":39872,"TargetStructureID":519,"Label":"39872-519 via Conventional from 39873 -> 16516","Type":"Conventional","Directional":true,"Links":[{"SourceID":39873,"TargetID":16516,"Directional":true}]},{"ID":13941,"SourceStructureID":39876,"TargetStructureID":485,"Label":"39876-485 via Conventional from 39879 -> 39880","Type":"Conventional","Directional":true,"Links":[{"SourceID":39879,"TargetID":39880,"Directional":true}]},{"ID":13942,"SourceStructureID":39876,"TargetStructureID":519,"Label":"39876-519 via Conventional from 39877 -> 39878","Type":"Conventional","Directional":true,"Links":[{"SourceID":39877,"TargetID":39878,"Directional":true}]},{"ID":13943,"SourceStructureID":39876,"TargetStructureID":27288,"Label":"39876-27288 via Conventional from 39881 -> 27297","Type":"Conventional","Directional":true,"Links":[{"SourceID":39881,"TargetID":27297,"Directional":true}]},{"ID":13944,"SourceStructureID":39883,"TargetStructureID":519,"Label":"39883-519 via Conventional from 39884 -> 39885","Type":"Conventional","Directional":true,"Links":[{"SourceID":39884,"TargetID":39885,"Directional":true}]},{"ID":13945,"SourceStructureID":39896,"TargetStructureID":5729,"Label":"39896-5729 via Conventional from 110888 -> 110889, 110943 -> 37856","Type":"Conventional","Directional":true,"Links":[{"SourceID":110888,"TargetID":110889,"Directional":true},{"SourceID":110943,"TargetID":37856,"Directional":true}]},{"ID":13946,"SourceStructureID":39900,"TargetStructureID":606,"Label":"39900-606 via Conventional from 52169 -> 39898","Type":"Conventional","Directional":true,"Links":[{"SourceID":52169,"TargetID":39898,"Directional":true}]},{"ID":13947,"SourceStructureID":39900,"TargetStructureID":7594,"Label":"39900-7594 via Conventional from 54141 -> 54140","Type":"Conventional","Directional":true,"Links":[{"SourceID":54141,"TargetID":54140,"Directional":true}]},{"ID":13948,"SourceStructureID":39909,"TargetStructureID":606,"Label":"39909-606 via Conventional from 39910 -> 39908, 54162 -> 54163","Type":"Conventional","Directional":true,"Links":[{"SourceID":39910,"TargetID":39908,"Directional":true},{"SourceID":54162,"TargetID":54163,"Directional":true}]},{"ID":13949,"SourceStructureID":39915,"TargetStructureID":606,"Label":"39915-606 via Conventional from 44194 -> 39912","Type":"Conventional","Directional":true,"Links":[{"SourceID":44194,"TargetID":39912,"Directional":true}]},{"ID":13950,"SourceStructureID":39917,"TargetStructureID":606,"Label":"39917-606 via Conventional from 39919 -> 39916","Type":"Conventional","Directional":true,"Links":[{"SourceID":39919,"TargetID":39916,"Directional":true}]},{"ID":13951,"SourceStructureID":39922,"TargetStructureID":606,"Label":"39922-606 via Conventional from 51622 -> 51623","Type":"Conventional","Directional":true,"Links":[{"SourceID":51622,"TargetID":51623,"Directional":true}]},{"ID":13952,"SourceStructureID":39931,"TargetStructureID":606,"Label":"39931-606 via Conventional from 44195 -> 39930, 52047 -> 52046","Type":"Conventional","Directional":true,"Links":[{"SourceID":44195,"TargetID":39930,"Directional":true},{"SourceID":52047,"TargetID":52046,"Directional":true}]},{"ID":13953,"SourceStructureID":39939,"TargetStructureID":606,"Label":"39939-606 via Adherens from 52583 -> 52584","Type":"Adherens","Directional":true,"Links":[{"SourceID":52583,"TargetID":52584,"Directional":true}]},{"ID":13954,"SourceStructureID":39939,"TargetStructureID":606,"Label":"39939-606 via Conventional from 44197 -> 39937","Type":"Conventional","Directional":true,"Links":[{"SourceID":44197,"TargetID":39937,"Directional":true}]},{"ID":13955,"SourceStructureID":39941,"TargetStructureID":606,"Label":"39941-606 via Conventional from 52621 -> 39940","Type":"Conventional","Directional":true,"Links":[{"SourceID":52621,"TargetID":39940,"Directional":true}]},{"ID":13956,"SourceStructureID":39957,"TargetStructureID":606,"Label":"39957-606 via Conventional from 43116 -> 10711, 58552 -> 39960, 58555 -> 44285, 58558 -> 49604","Type":"Conventional","Directional":true,"Links":[{"SourceID":43116,"TargetID":10711,"Directional":true},{"SourceID":58552,"TargetID":39960,"Directional":true},{"SourceID":58555,"TargetID":44285,"Directional":true},{"SourceID":58558,"TargetID":49604,"Directional":true}]},{"ID":13957,"SourceStructureID":39957,"TargetStructureID":6117,"Label":"39957-6117 via Conventional from 58437 -> 6966, 58553 -> 20564, 86429 -> 86430, 116719 -> 30909","Type":"Conventional","Directional":true,"Links":[{"SourceID":58437,"TargetID":6966,"Directional":true},{"SourceID":58553,"TargetID":20564,"Directional":true},{"SourceID":86429,"TargetID":86430,"Directional":true},{"SourceID":116719,"TargetID":30909,"Directional":true}]},{"ID":13958,"SourceStructureID":39957,"TargetStructureID":7594,"Label":"39957-7594 via Conventional from 58557 -> 7627","Type":"Conventional","Directional":true,"Links":[{"SourceID":58557,"TargetID":7627,"Directional":true}]},{"ID":13959,"SourceStructureID":39957,"TargetStructureID":32258,"Label":"39957-32258 via Conventional from 58459 -> 58458","Type":"Conventional","Directional":true,"Links":[{"SourceID":58459,"TargetID":58458,"Directional":true}]},{"ID":13960,"SourceStructureID":39957,"TargetStructureID":39862,"Label":"39957-39862 via Conventional from 58547 -> 52307","Type":"Conventional","Directional":true,"Links":[{"SourceID":58547,"TargetID":52307,"Directional":true}]},{"ID":13961,"SourceStructureID":39963,"TargetStructureID":606,"Label":"39963-606 via Conventional from 52171 -> 39961","Type":"Conventional","Directional":true,"Links":[{"SourceID":52171,"TargetID":39961,"Directional":true}]},{"ID":13962,"SourceStructureID":39963,"TargetStructureID":6117,"Label":"39963-6117 via Conventional from 86264 -> 86265","Type":"Conventional","Directional":true,"Links":[{"SourceID":86264,"TargetID":86265,"Directional":true}]},{"ID":13963,"SourceStructureID":39982,"TargetStructureID":5520,"Label":"39982-5520 via Conventional from 39985 -> 40134","Type":"Conventional","Directional":true,"Links":[{"SourceID":39985,"TargetID":40134,"Directional":true}]},{"ID":13964,"SourceStructureID":39982,"TargetStructureID":5923,"Label":"39982-5923 via Conventional from 39983 -> 39984","Type":"Conventional","Directional":true,"Links":[{"SourceID":39983,"TargetID":39984,"Directional":true}]},{"ID":13965,"SourceStructureID":39998,"TargetStructureID":342,"Label":"39998-342 via Conventional from 39999 -> 31715","Type":"Conventional","Directional":true,"Links":[{"SourceID":39999,"TargetID":31715,"Directional":true}]},{"ID":13966,"SourceStructureID":40010,"TargetStructureID":60798,"Label":"40010-60798 via Conventional from 40012 -> 60799","Type":"Conventional","Directional":true,"Links":[{"SourceID":40012,"TargetID":60799,"Directional":true}]},{"ID":13967,"SourceStructureID":40018,"TargetStructureID":5517,"Label":"40018-5517 via Conventional from 40019 -> 25104","Type":"Conventional","Directional":true,"Links":[{"SourceID":40019,"TargetID":25104,"Directional":true}]},{"ID":13968,"SourceStructureID":40018,"TargetStructureID":10872,"Label":"40018-10872 via Conventional from 40029 -> 10880","Type":"Conventional","Directional":true,"Links":[{"SourceID":40029,"TargetID":10880,"Directional":true}]},{"ID":13969,"SourceStructureID":40018,"TargetStructureID":20136,"Label":"40018-20136 via Conventional from 110223 -> 110224","Type":"Conventional","Directional":true,"Links":[{"SourceID":110223,"TargetID":110224,"Directional":true}]},{"ID":13970,"SourceStructureID":40033,"TargetStructureID":606,"Label":"40033-606 via Conventional from 44190 -> 51255","Type":"Conventional","Directional":true,"Links":[{"SourceID":44190,"TargetID":51255,"Directional":true}]},{"ID":13971,"SourceStructureID":40035,"TargetStructureID":606,"Label":"40035-606 via Conventional from 52175 -> 39498","Type":"Conventional","Directional":true,"Links":[{"SourceID":52175,"TargetID":39498,"Directional":true}]},{"ID":13972,"SourceStructureID":40037,"TargetStructureID":606,"Label":"40037-606 via Conventional from 52176 -> 10057, 52177 -> 52178","Type":"Conventional","Directional":true,"Links":[{"SourceID":52176,"TargetID":10057,"Directional":true},{"SourceID":52177,"TargetID":52178,"Directional":true}]},{"ID":13973,"SourceStructureID":40039,"TargetStructureID":142,"Label":"40039-142 via Conventional from 82523 -> 49763","Type":"Conventional","Directional":true,"Links":[{"SourceID":82523,"TargetID":49763,"Directional":true}]},{"ID":13974,"SourceStructureID":40039,"TargetStructureID":168,"Label":"40039-168 via Conventional from 82603 -> 82607","Type":"Conventional","Directional":true,"Links":[{"SourceID":82603,"TargetID":82607,"Directional":true}]},{"ID":13975,"SourceStructureID":40039,"TargetStructureID":176,"Label":"40039-176 via Conventional from 82514 -> 5865","Type":"Conventional","Directional":true,"Links":[{"SourceID":82514,"TargetID":5865,"Directional":true}]},{"ID":13976,"SourceStructureID":40039,"TargetStructureID":606,"Label":"40039-606 via Conventional from 44192 -> 39504","Type":"Conventional","Directional":true,"Links":[{"SourceID":44192,"TargetID":39504,"Directional":true}]},{"ID":13977,"SourceStructureID":40039,"TargetStructureID":5530,"Label":"40039-5530 via Adherens from 74967 -> 74968","Type":"Adherens","Directional":true,"Links":[{"SourceID":74967,"TargetID":74968,"Directional":true}]},{"ID":13978,"SourceStructureID":40039,"TargetStructureID":5530,"Label":"40039-5530 via Conventional from 74965 -> 74966, 75790 -> 75791, 80202 -> 42112, 80478 -> 80479, 82381 -> 42130","Type":"Conventional","Directional":true,"Links":[{"SourceID":74965,"TargetID":74966,"Directional":true},{"SourceID":75790,"TargetID":75791,"Directional":true},{"SourceID":80202,"TargetID":42112,"Directional":true},{"SourceID":80478,"TargetID":80479,"Directional":true},{"SourceID":82381,"TargetID":42130,"Directional":true}]},{"ID":13979,"SourceStructureID":40039,"TargetStructureID":6117,"Label":"40039-6117 via Conventional from 82515 -> 30904, 82516 -> 82517, 82518 -> 82519, 82698 -> 82699","Type":"Conventional","Directional":true,"Links":[{"SourceID":82515,"TargetID":30904,"Directional":true},{"SourceID":82516,"TargetID":82517,"Directional":true},{"SourceID":82518,"TargetID":82519,"Directional":true},{"SourceID":82698,"TargetID":82699,"Directional":true}]},{"ID":13980,"SourceStructureID":40039,"TargetStructureID":80210,"Label":"40039-80210 via Conventional from 82544 -> 82545","Type":"Conventional","Directional":true,"Links":[{"SourceID":82544,"TargetID":82545,"Directional":true}]},{"ID":13981,"SourceStructureID":40039,"TargetStructureID":80483,"Label":"40039-80483 via Unknown from 82646 -> 82647","Type":"Unknown","Directional":true,"Links":[{"SourceID":82646,"TargetID":82647,"Directional":true}]},{"ID":13982,"SourceStructureID":40039,"TargetStructureID":80569,"Label":"40039-80569 via Conventional from 82512 -> 82513","Type":"Conventional","Directional":true,"Links":[{"SourceID":82512,"TargetID":82513,"Directional":true}]},{"ID":13983,"SourceStructureID":40039,"TargetStructureID":82541,"Label":"40039-82541 via Conventional from 82538 -> 82542","Type":"Conventional","Directional":true,"Links":[{"SourceID":82538,"TargetID":82542,"Directional":true}]},{"ID":13984,"SourceStructureID":40039,"TargetStructureID":82609,"Label":"40039-82609 via Conventional from 82612 -> 84364","Type":"Conventional","Directional":true,"Links":[{"SourceID":82612,"TargetID":84364,"Directional":true}]},{"ID":13985,"SourceStructureID":40039,"TargetStructureID":82667,"Label":"40039-82667 via Conventional from 82670 -> 82671","Type":"Conventional","Directional":true,"Links":[{"SourceID":82670,"TargetID":82671,"Directional":true}]},{"ID":13986,"SourceStructureID":40039,"TargetStructureID":82690,"Label":"40039-82690 via Conventional from 68797 -> 82691","Type":"Conventional","Directional":true,"Links":[{"SourceID":68797,"TargetID":82691,"Directional":true}]},{"ID":13987,"SourceStructureID":40041,"TargetStructureID":606,"Label":"40041-606 via Conventional from 44193 -> 39505","Type":"Conventional","Directional":true,"Links":[{"SourceID":44193,"TargetID":39505,"Directional":true}]},{"ID":13988,"SourceStructureID":40044,"TargetStructureID":176,"Label":"40044-176 via Conventional from 40047 -> 114816, 40048 -> 82539","Type":"Conventional","Directional":true,"Links":[{"SourceID":40047,"TargetID":114816,"Directional":true},{"SourceID":40048,"TargetID":82539,"Directional":true}]},{"ID":13989,"SourceStructureID":40044,"TargetStructureID":606,"Label":"40044-606 via Conventional from 47784 -> 40042","Type":"Conventional","Directional":true,"Links":[{"SourceID":47784,"TargetID":40042,"Directional":true}]},{"ID":13990,"SourceStructureID":40044,"TargetStructureID":5530,"Label":"40044-5530 via Conventional from 40049 -> 80414","Type":"Conventional","Directional":true,"Links":[{"SourceID":40049,"TargetID":80414,"Directional":true}]},{"ID":13991,"SourceStructureID":40051,"TargetStructureID":606,"Label":"40051-606 via Conventional from 52180 -> 10196","Type":"Conventional","Directional":true,"Links":[{"SourceID":52180,"TargetID":10196,"Directional":true}]},{"ID":13992,"SourceStructureID":40053,"TargetStructureID":606,"Label":"40053-606 via Conventional from 44191 -> 10197","Type":"Conventional","Directional":true,"Links":[{"SourceID":44191,"TargetID":10197,"Directional":true}]},{"ID":13993,"SourceStructureID":40057,"TargetStructureID":606,"Label":"40057-606 via Conventional from 43113 -> 10199","Type":"Conventional","Directional":true,"Links":[{"SourceID":43113,"TargetID":10199,"Directional":true}]},{"ID":13994,"SourceStructureID":40059,"TargetStructureID":606,"Label":"40059-606 via Conventional from 43112 -> 10198","Type":"Conventional","Directional":true,"Links":[{"SourceID":43112,"TargetID":10198,"Directional":true}]},{"ID":13995,"SourceStructureID":40439,"TargetStructureID":170,"Label":"40439-170 via Conventional from 88372 -> 1198","Type":"Conventional","Directional":true,"Links":[{"SourceID":88372,"TargetID":1198,"Directional":true}]},{"ID":13996,"SourceStructureID":40469,"TargetStructureID":92880,"Label":"40469-92880 via Conventional from 92886 -> 92885, 92887 -> 92883","Type":"Conventional","Directional":true,"Links":[{"SourceID":92886,"TargetID":92885,"Directional":true},{"SourceID":92887,"TargetID":92883,"Directional":true}]},{"ID":13997,"SourceStructureID":40598,"TargetStructureID":181,"Label":"40598-181 via Conventional from 40601 -> 40600","Type":"Conventional","Directional":true,"Links":[{"SourceID":40601,"TargetID":40600,"Directional":true}]},{"ID":13998,"SourceStructureID":40602,"TargetStructureID":40604,"Label":"40602-40604 via Conventional from 40611 -> 40610","Type":"Conventional","Directional":true,"Links":[{"SourceID":40611,"TargetID":40610,"Directional":true}]},{"ID":13999,"SourceStructureID":40602,"TargetStructureID":86438,"Label":"40602-86438 via Conventional from 86437 -> 86441","Type":"Conventional","Directional":true,"Links":[{"SourceID":86437,"TargetID":86441,"Directional":true}]},{"ID":14000,"SourceStructureID":40606,"TargetStructureID":40602,"Label":"40606-40602 via Conventional from 40608 -> 40607","Type":"Conventional","Directional":true,"Links":[{"SourceID":40608,"TargetID":40607,"Directional":true}]},{"ID":14001,"SourceStructureID":40612,"TargetStructureID":428,"Label":"40612-428 via Conventional from 40614 -> 40613","Type":"Conventional","Directional":true,"Links":[{"SourceID":40614,"TargetID":40613,"Directional":true}]},{"ID":14002,"SourceStructureID":40616,"TargetStructureID":40619,"Label":"40616-40619 via Ribbon Synapse from 40617 -> 40624","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":40617,"TargetID":40624,"Directional":true}]},{"ID":14003,"SourceStructureID":40619,"TargetStructureID":40616,"Label":"40619-40616 via Conventional from 40622 -> 40623","Type":"Conventional","Directional":true,"Links":[{"SourceID":40622,"TargetID":40623,"Directional":true}]},{"ID":14004,"SourceStructureID":40625,"TargetStructureID":40626,"Label":"40625-40626 via Conventional from 40628 -> 40627","Type":"Conventional","Directional":true,"Links":[{"SourceID":40628,"TargetID":40627,"Directional":true}]},{"ID":14005,"SourceStructureID":40629,"TargetStructureID":40631,"Label":"40629-40631 via Conventional from 40632 -> 40633","Type":"Conventional","Directional":true,"Links":[{"SourceID":40632,"TargetID":40633,"Directional":true}]},{"ID":14006,"SourceStructureID":40635,"TargetStructureID":40637,"Label":"40635-40637 via Conventional from 40636 -> 40638","Type":"Conventional","Directional":true,"Links":[{"SourceID":40636,"TargetID":40638,"Directional":true}]},{"ID":14007,"SourceStructureID":40640,"TargetStructureID":40639,"Label":"40640-40639 via Conventional from 40641 -> 40642","Type":"Conventional","Directional":true,"Links":[{"SourceID":40641,"TargetID":40642,"Directional":true}]},{"ID":14008,"SourceStructureID":40643,"TargetStructureID":40644,"Label":"40643-40644 via Conventional from 40645 -> 40646","Type":"Conventional","Directional":true,"Links":[{"SourceID":40645,"TargetID":40646,"Directional":true}]},{"ID":14009,"SourceStructureID":40844,"TargetStructureID":6117,"Label":"40844-6117 via Conventional from 40845 -> 10530","Type":"Conventional","Directional":true,"Links":[{"SourceID":40845,"TargetID":10530,"Directional":true}]},{"ID":14010,"SourceStructureID":40851,"TargetStructureID":516,"Label":"40851-516 via Conventional from 40852 -> 40853, 40854 -> 10847, 40855 -> 6573","Type":"Conventional","Directional":true,"Links":[{"SourceID":40852,"TargetID":40853,"Directional":true},{"SourceID":40854,"TargetID":10847,"Directional":true},{"SourceID":40855,"TargetID":6573,"Directional":true}]},{"ID":14011,"SourceStructureID":40856,"TargetStructureID":516,"Label":"40856-516 via Conventional from 40857 -> 6574","Type":"Conventional","Directional":true,"Links":[{"SourceID":40857,"TargetID":6574,"Directional":true}]},{"ID":14012,"SourceStructureID":40858,"TargetStructureID":516,"Label":"40858-516 via Conventional from 40859 -> 40860","Type":"Conventional","Directional":true,"Links":[{"SourceID":40859,"TargetID":40860,"Directional":true}]},{"ID":14013,"SourceStructureID":40858,"TargetStructureID":3257,"Label":"40858-3257 via Conventional from 123170 -> 10861","Type":"Conventional","Directional":true,"Links":[{"SourceID":123170,"TargetID":10861,"Directional":true}]},{"ID":14014,"SourceStructureID":40858,"TargetStructureID":4570,"Label":"40858-4570 via Conventional from 123171 -> 4800","Type":"Conventional","Directional":true,"Links":[{"SourceID":123171,"TargetID":4800,"Directional":true}]},{"ID":14015,"SourceStructureID":40858,"TargetStructureID":6169,"Label":"40858-6169 via Conventional from 40861 -> 40862","Type":"Conventional","Directional":true,"Links":[{"SourceID":40861,"TargetID":40862,"Directional":true}]},{"ID":14016,"SourceStructureID":40880,"TargetStructureID":517,"Label":"40880-517 via Conventional from 40881 -> 40879","Type":"Conventional","Directional":true,"Links":[{"SourceID":40881,"TargetID":40879,"Directional":true}]},{"ID":14017,"SourceStructureID":40884,"TargetStructureID":517,"Label":"40884-517 via Conventional from 40885 -> 40886","Type":"Conventional","Directional":true,"Links":[{"SourceID":40885,"TargetID":40886,"Directional":true}]},{"ID":14018,"SourceStructureID":40896,"TargetStructureID":517,"Label":"40896-517 via Conventional from 40897 -> 14163, 40898 -> 40899","Type":"Conventional","Directional":true,"Links":[{"SourceID":40897,"TargetID":14163,"Directional":true},{"SourceID":40898,"TargetID":40899,"Directional":true}]},{"ID":14019,"SourceStructureID":40901,"TargetStructureID":517,"Label":"40901-517 via Conventional from 88838 -> 88839","Type":"Conventional","Directional":true,"Links":[{"SourceID":88838,"TargetID":88839,"Directional":true}]},{"ID":14020,"SourceStructureID":40903,"TargetStructureID":517,"Label":"40903-517 via Conventional from 40904 -> 40905, 40915 -> 10828","Type":"Conventional","Directional":true,"Links":[{"SourceID":40904,"TargetID":40905,"Directional":true},{"SourceID":40915,"TargetID":10828,"Directional":true}]},{"ID":14021,"SourceStructureID":40909,"TargetStructureID":517,"Label":"40909-517 via Conventional from 40910 -> 40908","Type":"Conventional","Directional":true,"Links":[{"SourceID":40910,"TargetID":40908,"Directional":true}]},{"ID":14022,"SourceStructureID":40911,"TargetStructureID":517,"Label":"40911-517 via Conventional from 40912 -> 40913, 40914 -> 10827, 40916 -> 22541","Type":"Conventional","Directional":true,"Links":[{"SourceID":40912,"TargetID":40913,"Directional":true},{"SourceID":40914,"TargetID":10827,"Directional":true},{"SourceID":40916,"TargetID":22541,"Directional":true}]},{"ID":14023,"SourceStructureID":40917,"TargetStructureID":517,"Label":"40917-517 via Conventional from 40918 -> 16412","Type":"Conventional","Directional":true,"Links":[{"SourceID":40918,"TargetID":16412,"Directional":true}]},{"ID":14024,"SourceStructureID":40919,"TargetStructureID":517,"Label":"40919-517 via Conventional from 40920 -> 40921, 40924 -> 40923, 40925 -> 40926, 60501 -> 60500","Type":"Conventional","Directional":true,"Links":[{"SourceID":40920,"TargetID":40921,"Directional":true},{"SourceID":40924,"TargetID":40923,"Directional":true},{"SourceID":40925,"TargetID":40926,"Directional":true},{"SourceID":60501,"TargetID":60500,"Directional":true}]},{"ID":14025,"SourceStructureID":40919,"TargetStructureID":6618,"Label":"40919-6618 via Conventional from 60508 -> 18902, 60509 -> 18903, 60510 -> 60512, 60511 -> 60513","Type":"Conventional","Directional":true,"Links":[{"SourceID":60508,"TargetID":18902,"Directional":true},{"SourceID":60509,"TargetID":18903,"Directional":true},{"SourceID":60510,"TargetID":60512,"Directional":true},{"SourceID":60511,"TargetID":60513,"Directional":true}]},{"ID":14026,"SourceStructureID":40927,"TargetStructureID":517,"Label":"40927-517 via Conventional from 40928 -> 16424, 64460 -> 64459","Type":"Conventional","Directional":true,"Links":[{"SourceID":40928,"TargetID":16424,"Directional":true},{"SourceID":64460,"TargetID":64459,"Directional":true}]},{"ID":14027,"SourceStructureID":40931,"TargetStructureID":517,"Label":"40931-517 via Conventional from 40932 -> 40933","Type":"Conventional","Directional":true,"Links":[{"SourceID":40932,"TargetID":40933,"Directional":true}]},{"ID":14028,"SourceStructureID":40934,"TargetStructureID":517,"Label":"40934-517 via Conventional from 40935 -> 14944, 60528 -> 60527","Type":"Conventional","Directional":true,"Links":[{"SourceID":40935,"TargetID":14944,"Directional":true},{"SourceID":60528,"TargetID":60527,"Directional":true}]},{"ID":14029,"SourceStructureID":40947,"TargetStructureID":517,"Label":"40947-517 via Conventional from 40948 -> 40949","Type":"Conventional","Directional":true,"Links":[{"SourceID":40948,"TargetID":40949,"Directional":true}]},{"ID":14030,"SourceStructureID":40951,"TargetStructureID":517,"Label":"40951-517 via Conventional from 40952 -> 40953, 40954 -> 40955, 51423 -> 51424, 60529 -> 60530","Type":"Conventional","Directional":true,"Links":[{"SourceID":40952,"TargetID":40953,"Directional":true},{"SourceID":40954,"TargetID":40955,"Directional":true},{"SourceID":51423,"TargetID":51424,"Directional":true},{"SourceID":60529,"TargetID":60530,"Directional":true}]},{"ID":14031,"SourceStructureID":40956,"TargetStructureID":517,"Label":"40956-517 via Conventional from 40957 -> 40958, 88847 -> 88848","Type":"Conventional","Directional":true,"Links":[{"SourceID":40957,"TargetID":40958,"Directional":true},{"SourceID":88847,"TargetID":88848,"Directional":true}]},{"ID":14032,"SourceStructureID":40960,"TargetStructureID":516,"Label":"40960-516 via Conventional from 51438 -> 51439","Type":"Conventional","Directional":true,"Links":[{"SourceID":51438,"TargetID":51439,"Directional":true}]},{"ID":14033,"SourceStructureID":40960,"TargetStructureID":517,"Label":"40960-517 via Conventional from 40961 -> 40962","Type":"Conventional","Directional":true,"Links":[{"SourceID":40961,"TargetID":40962,"Directional":true}]},{"ID":14034,"SourceStructureID":40960,"TargetStructureID":10943,"Label":"40960-10943 via Conventional from 40963 -> 40964","Type":"Conventional","Directional":true,"Links":[{"SourceID":40963,"TargetID":40964,"Directional":true}]},{"ID":14035,"SourceStructureID":40965,"TargetStructureID":410,"Label":"40965-410 via Conventional from 91165 -> 16797","Type":"Conventional","Directional":true,"Links":[{"SourceID":91165,"TargetID":16797,"Directional":true}]},{"ID":14036,"SourceStructureID":40965,"TargetStructureID":476,"Label":"40965-476 via Conventional from 91155 -> 16509","Type":"Conventional","Directional":true,"Links":[{"SourceID":91155,"TargetID":16509,"Directional":true}]},{"ID":14037,"SourceStructureID":40965,"TargetStructureID":517,"Label":"40965-517 via Conventional from 40966 -> 40967, 40969 -> 40970, 88845 -> 88846","Type":"Conventional","Directional":true,"Links":[{"SourceID":40966,"TargetID":40967,"Directional":true},{"SourceID":40969,"TargetID":40970,"Directional":true},{"SourceID":88845,"TargetID":88846,"Directional":true}]},{"ID":14038,"SourceStructureID":40973,"TargetStructureID":517,"Label":"40973-517 via Conventional from 40974 -> 40975","Type":"Conventional","Directional":true,"Links":[{"SourceID":40974,"TargetID":40975,"Directional":true}]},{"ID":14039,"SourceStructureID":40973,"TargetStructureID":3679,"Label":"40973-3679 via Conventional from 41057 -> 14920","Type":"Conventional","Directional":true,"Links":[{"SourceID":41057,"TargetID":14920,"Directional":true}]},{"ID":14040,"SourceStructureID":40988,"TargetStructureID":517,"Label":"40988-517 via Conventional from 40989 -> 40990","Type":"Conventional","Directional":true,"Links":[{"SourceID":40989,"TargetID":40990,"Directional":true}]},{"ID":14041,"SourceStructureID":40991,"TargetStructureID":517,"Label":"40991-517 via Conventional from 40992 -> 40993","Type":"Conventional","Directional":true,"Links":[{"SourceID":40992,"TargetID":40993,"Directional":true}]},{"ID":14042,"SourceStructureID":40991,"TargetStructureID":593,"Label":"40991-593 via Conventional from 41001 -> 66033","Type":"Conventional","Directional":true,"Links":[{"SourceID":41001,"TargetID":66033,"Directional":true}]},{"ID":14043,"SourceStructureID":40991,"TargetStructureID":6117,"Label":"40991-6117 via Conventional from 40998 -> 40999","Type":"Conventional","Directional":true,"Links":[{"SourceID":40998,"TargetID":40999,"Directional":true}]},{"ID":14044,"SourceStructureID":41003,"TargetStructureID":517,"Label":"41003-517 via Conventional from 41004 -> 14949","Type":"Conventional","Directional":true,"Links":[{"SourceID":41004,"TargetID":14949,"Directional":true}]},{"ID":14045,"SourceStructureID":41003,"TargetStructureID":1637,"Label":"41003-1637 via Conventional from 41007 -> 1659","Type":"Conventional","Directional":true,"Links":[{"SourceID":41007,"TargetID":1659,"Directional":true}]},{"ID":14046,"SourceStructureID":41003,"TargetStructureID":1724,"Label":"41003-1724 via Conventional from 41006 -> 100284","Type":"Conventional","Directional":true,"Links":[{"SourceID":41006,"TargetID":100284,"Directional":true}]},{"ID":14047,"SourceStructureID":41009,"TargetStructureID":517,"Label":"41009-517 via Conventional from 41010 -> 41011","Type":"Conventional","Directional":true,"Links":[{"SourceID":41010,"TargetID":41011,"Directional":true}]},{"ID":14048,"SourceStructureID":41031,"TargetStructureID":517,"Label":"41031-517 via Conventional from 41032 -> 41050, 41033 -> 41029, 41051 -> 41050","Type":"Conventional","Directional":true,"Links":[{"SourceID":41032,"TargetID":41050,"Directional":true},{"SourceID":41033,"TargetID":41029,"Directional":true},{"SourceID":41051,"TargetID":41050,"Directional":true}]},{"ID":14049,"SourceStructureID":41039,"TargetStructureID":517,"Label":"41039-517 via Conventional from 88849 -> 41047, 88850 -> 41040, 88852 -> 88851, 116700 -> 41045","Type":"Conventional","Directional":true,"Links":[{"SourceID":88849,"TargetID":41047,"Directional":true},{"SourceID":88850,"TargetID":41040,"Directional":true},{"SourceID":88852,"TargetID":88851,"Directional":true},{"SourceID":116700,"TargetID":41045,"Directional":true}]},{"ID":14050,"SourceStructureID":41042,"TargetStructureID":469,"Label":"41042-469 via Conventional from 91472 -> 15070, 91475 -> 4659, 91477 -> 4661, 91478 -> 4661","Type":"Conventional","Directional":true,"Links":[{"SourceID":91472,"TargetID":15070,"Directional":true},{"SourceID":91475,"TargetID":4659,"Directional":true},{"SourceID":91477,"TargetID":4661,"Directional":true},{"SourceID":91478,"TargetID":4661,"Directional":true}]},{"ID":14051,"SourceStructureID":41042,"TargetStructureID":517,"Label":"41042-517 via Conventional from 41043 -> 41041, 41056 -> 41054","Type":"Conventional","Directional":true,"Links":[{"SourceID":41043,"TargetID":41041,"Directional":true},{"SourceID":41056,"TargetID":41054,"Directional":true}]},{"ID":14052,"SourceStructureID":41058,"TargetStructureID":514,"Label":"41058-514 via Conventional from 41061 -> 41062","Type":"Conventional","Directional":true,"Links":[{"SourceID":41061,"TargetID":41062,"Directional":true}]},{"ID":14053,"SourceStructureID":41058,"TargetStructureID":3679,"Label":"41058-3679 via Conventional from 41059 -> 41060","Type":"Conventional","Directional":true,"Links":[{"SourceID":41059,"TargetID":41060,"Directional":true}]},{"ID":14054,"SourceStructureID":41058,"TargetStructureID":12897,"Label":"41058-12897 via Conventional from 41063 -> 41064","Type":"Conventional","Directional":true,"Links":[{"SourceID":41063,"TargetID":41064,"Directional":true}]},{"ID":14055,"SourceStructureID":41126,"TargetStructureID":483,"Label":"41126-483 via Conventional from 41127 -> 6848","Type":"Conventional","Directional":true,"Links":[{"SourceID":41127,"TargetID":6848,"Directional":true}]},{"ID":14056,"SourceStructureID":41159,"TargetStructureID":41159,"Label":"41159-41159 via Adherens from 41880 -> 41881","Type":"Adherens","Directional":true,"Links":[{"SourceID":41880,"TargetID":41881,"Directional":true}]},{"ID":14057,"SourceStructureID":41159,"TargetStructureID":42586,"Label":"41159-42586 via Ribbon Synapse from 41936 -> 42708","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41936,"TargetID":42708,"Directional":true}]},{"ID":14058,"SourceStructureID":41587,"TargetStructureID":41583,"Label":"41587-41583 via Conventional from 43151 -> 43152","Type":"Conventional","Directional":true,"Links":[{"SourceID":43151,"TargetID":43152,"Directional":true}]},{"ID":14059,"SourceStructureID":41587,"TargetStructureID":90715,"Label":"41587-90715 via Conventional from 41595 -> 91313","Type":"Conventional","Directional":true,"Links":[{"SourceID":41595,"TargetID":91313,"Directional":true}]},{"ID":14060,"SourceStructureID":41608,"TargetStructureID":6115,"Label":"41608-6115 via Conventional from 41751 -> 73946, 73254 -> 73255","Type":"Conventional","Directional":true,"Links":[{"SourceID":41751,"TargetID":73946,"Directional":true},{"SourceID":73254,"TargetID":73255,"Directional":true}]},{"ID":14061,"SourceStructureID":41608,"TargetStructureID":8575,"Label":"41608-8575 via Conventional from 79326 -> 62278","Type":"Conventional","Directional":true,"Links":[{"SourceID":79326,"TargetID":62278,"Directional":true}]},{"ID":14062,"SourceStructureID":41608,"TargetStructureID":15977,"Label":"41608-15977 via Conventional from 41757 -> 41758","Type":"Conventional","Directional":true,"Links":[{"SourceID":41757,"TargetID":41758,"Directional":true}]},{"ID":14063,"SourceStructureID":41608,"TargetStructureID":66523,"Label":"41608-66523 via Conventional from 74915 -> 74914","Type":"Conventional","Directional":true,"Links":[{"SourceID":74915,"TargetID":74914,"Directional":true}]},{"ID":14064,"SourceStructureID":41608,"TargetStructureID":68497,"Label":"41608-68497 via Conventional from 41612 -> 79323, 41613 -> 79356","Type":"Conventional","Directional":true,"Links":[{"SourceID":41612,"TargetID":79323,"Directional":true},{"SourceID":41613,"TargetID":79356,"Directional":true}]},{"ID":14065,"SourceStructureID":41608,"TargetStructureID":72287,"Label":"41608-72287 via Conventional from 41696 -> 72290","Type":"Conventional","Directional":true,"Links":[{"SourceID":41696,"TargetID":72290,"Directional":true}]},{"ID":14066,"SourceStructureID":41608,"TargetStructureID":72309,"Label":"41608-72309 via Conventional from 72315 -> 72316","Type":"Conventional","Directional":true,"Links":[{"SourceID":72315,"TargetID":72316,"Directional":true}]},{"ID":14067,"SourceStructureID":41608,"TargetStructureID":82653,"Label":"41608-82653 via Conventional from 41694 -> 90720","Type":"Conventional","Directional":true,"Links":[{"SourceID":41694,"TargetID":90720,"Directional":true}]},{"ID":14068,"SourceStructureID":41882,"TargetStructureID":5640,"Label":"41882-5640 via Conventional from 41884 -> 41110","Type":"Conventional","Directional":true,"Links":[{"SourceID":41884,"TargetID":41110,"Directional":true}]},{"ID":14069,"SourceStructureID":41905,"TargetStructureID":41891,"Label":"41905-41891 via Ribbon Synapse from 41906 -> 41895","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":41906,"TargetID":41895,"Directional":true}]},{"ID":14070,"SourceStructureID":42001,"TargetStructureID":41999,"Label":"42001-41999 via Conventional from 42002 -> 42000","Type":"Conventional","Directional":true,"Links":[{"SourceID":42002,"TargetID":42000,"Directional":true}]},{"ID":14071,"SourceStructureID":42094,"TargetStructureID":606,"Label":"42094-606 via Conventional from 42134 -> 42093","Type":"Conventional","Directional":true,"Links":[{"SourceID":42134,"TargetID":42093,"Directional":true}]},{"ID":14072,"SourceStructureID":42159,"TargetStructureID":606,"Label":"42159-606 via Conventional from 42160 -> 42158","Type":"Conventional","Directional":true,"Links":[{"SourceID":42160,"TargetID":42158,"Directional":true}]},{"ID":14073,"SourceStructureID":42404,"TargetStructureID":606,"Label":"42404-606 via Conventional from 116584 -> 42402","Type":"Conventional","Directional":true,"Links":[{"SourceID":116584,"TargetID":42402,"Directional":true}]},{"ID":14074,"SourceStructureID":42406,"TargetStructureID":606,"Label":"42406-606 via Conventional from 42407 -> 10201","Type":"Conventional","Directional":true,"Links":[{"SourceID":42407,"TargetID":10201,"Directional":true}]},{"ID":14075,"SourceStructureID":42416,"TargetStructureID":606,"Label":"42416-606 via Conventional from 42417 -> 10710","Type":"Conventional","Directional":true,"Links":[{"SourceID":42417,"TargetID":10710,"Directional":true}]},{"ID":14076,"SourceStructureID":42416,"TargetStructureID":6117,"Label":"42416-6117 via Conventional from 51291 -> 83294","Type":"Conventional","Directional":true,"Links":[{"SourceID":51291,"TargetID":83294,"Directional":true}]},{"ID":14077,"SourceStructureID":42416,"TargetStructureID":16073,"Label":"42416-16073 via Conventional from 42515 -> 19866","Type":"Conventional","Directional":true,"Links":[{"SourceID":42515,"TargetID":19866,"Directional":true}]},{"ID":14078,"SourceStructureID":42423,"TargetStructureID":10960,"Label":"42423-10960 via Conventional from 42424 -> 42425, 42426 -> 42427, 42428 -> 42429","Type":"Conventional","Directional":true,"Links":[{"SourceID":42424,"TargetID":42425,"Directional":true},{"SourceID":42426,"TargetID":42427,"Directional":true},{"SourceID":42428,"TargetID":42429,"Directional":true}]},{"ID":14079,"SourceStructureID":42432,"TargetStructureID":10960,"Label":"42432-10960 via Conventional from 42437 -> 42438, 42439 -> 12475, 42442 -> 42443","Type":"Conventional","Directional":true,"Links":[{"SourceID":42437,"TargetID":42438,"Directional":true},{"SourceID":42439,"TargetID":12475,"Directional":true},{"SourceID":42442,"TargetID":42443,"Directional":true}]},{"ID":14080,"SourceStructureID":42523,"TargetStructureID":41159,"Label":"42523-41159 via Conventional from 42524 -> 42522","Type":"Conventional","Directional":true,"Links":[{"SourceID":42524,"TargetID":42522,"Directional":true}]},{"ID":14081,"SourceStructureID":42527,"TargetStructureID":1724,"Label":"42527-1724 via Conventional from 42529 -> 1782","Type":"Conventional","Directional":true,"Links":[{"SourceID":42529,"TargetID":1782,"Directional":true}]},{"ID":14082,"SourceStructureID":42615,"TargetStructureID":42586,"Label":"42615-42586 via Conventional from 42616 -> 42614","Type":"Conventional","Directional":true,"Links":[{"SourceID":42616,"TargetID":42614,"Directional":true}]},{"ID":14083,"SourceStructureID":42711,"TargetStructureID":308,"Label":"42711-308 via Conventional from 42730 -> 31859","Type":"Conventional","Directional":true,"Links":[{"SourceID":42730,"TargetID":31859,"Directional":true}]},{"ID":14084,"SourceStructureID":42715,"TargetStructureID":606,"Label":"42715-606 via Conventional from 128562 -> 42713","Type":"Conventional","Directional":true,"Links":[{"SourceID":128562,"TargetID":42713,"Directional":true}]},{"ID":14085,"SourceStructureID":42770,"TargetStructureID":3928,"Label":"42770-3928 via Conventional from 42774 -> 42775","Type":"Conventional","Directional":true,"Links":[{"SourceID":42774,"TargetID":42775,"Directional":true}]},{"ID":14086,"SourceStructureID":42770,"TargetStructureID":5538,"Label":"42770-5538 via Conventional from 42771 -> 24221","Type":"Conventional","Directional":true,"Links":[{"SourceID":42771,"TargetID":24221,"Directional":true}]},{"ID":14087,"SourceStructureID":42795,"TargetStructureID":4943,"Label":"42795-4943 via Conventional from 43146 -> 8511","Type":"Conventional","Directional":true,"Links":[{"SourceID":43146,"TargetID":8511,"Directional":true}]},{"ID":14088,"SourceStructureID":42795,"TargetStructureID":137024,"Label":"42795-137024 via Conventional from 137036 -> 137038","Type":"Conventional","Directional":true,"Links":[{"SourceID":137036,"TargetID":137038,"Directional":true}]},{"ID":14089,"SourceStructureID":42816,"TargetStructureID":4943,"Label":"42816-4943 via Conventional from 42817 -> 4953","Type":"Conventional","Directional":true,"Links":[{"SourceID":42817,"TargetID":4953,"Directional":true}]},{"ID":14090,"SourceStructureID":42816,"TargetStructureID":5596,"Label":"42816-5596 via Conventional from 42832 -> 42833, 42834 -> 40583","Type":"Conventional","Directional":true,"Links":[{"SourceID":42832,"TargetID":42833,"Directional":true},{"SourceID":42834,"TargetID":40583,"Directional":true}]},{"ID":14091,"SourceStructureID":42819,"TargetStructureID":7114,"Label":"42819-7114 via Conventional from 42822 -> 42821","Type":"Conventional","Directional":true,"Links":[{"SourceID":42822,"TargetID":42821,"Directional":true}]},{"ID":14092,"SourceStructureID":42846,"TargetStructureID":4943,"Label":"42846-4943 via Conventional from 42847 -> 4963","Type":"Conventional","Directional":true,"Links":[{"SourceID":42847,"TargetID":4963,"Directional":true}]},{"ID":14093,"SourceStructureID":42846,"TargetStructureID":5598,"Label":"42846-5598 via Conventional from 91504 -> 37914","Type":"Conventional","Directional":true,"Links":[{"SourceID":91504,"TargetID":37914,"Directional":true}]},{"ID":14094,"SourceStructureID":42846,"TargetStructureID":29340,"Label":"42846-29340 via Conventional from 42853 -> 29370","Type":"Conventional","Directional":true,"Links":[{"SourceID":42853,"TargetID":29370,"Directional":true}]},{"ID":14095,"SourceStructureID":42858,"TargetStructureID":175,"Label":"42858-175 via Conventional from 42864 -> 42865","Type":"Conventional","Directional":true,"Links":[{"SourceID":42864,"TargetID":42865,"Directional":true}]},{"ID":14096,"SourceStructureID":42858,"TargetStructureID":4943,"Label":"42858-4943 via Conventional from 42859 -> 8508","Type":"Conventional","Directional":true,"Links":[{"SourceID":42859,"TargetID":8508,"Directional":true}]},{"ID":14097,"SourceStructureID":42866,"TargetStructureID":4943,"Label":"42866-4943 via Conventional from 42867 -> 4955","Type":"Conventional","Directional":true,"Links":[{"SourceID":42867,"TargetID":4955,"Directional":true}]},{"ID":14098,"SourceStructureID":42871,"TargetStructureID":4943,"Label":"42871-4943 via Conventional from 42872 -> 13440","Type":"Conventional","Directional":true,"Links":[{"SourceID":42872,"TargetID":13440,"Directional":true}]},{"ID":14099,"SourceStructureID":42873,"TargetStructureID":4943,"Label":"42873-4943 via Conventional from 42874 -> 4952","Type":"Conventional","Directional":true,"Links":[{"SourceID":42874,"TargetID":4952,"Directional":true}]},{"ID":14100,"SourceStructureID":42873,"TargetStructureID":5596,"Label":"42873-5596 via Conventional from 42875 -> 122088","Type":"Conventional","Directional":true,"Links":[{"SourceID":42875,"TargetID":122088,"Directional":true}]},{"ID":14101,"SourceStructureID":42877,"TargetStructureID":4943,"Label":"42877-4943 via Conventional from 42878 -> 4951","Type":"Conventional","Directional":true,"Links":[{"SourceID":42878,"TargetID":4951,"Directional":true}]},{"ID":14102,"SourceStructureID":42890,"TargetStructureID":4943,"Label":"42890-4943 via Conventional from 42891 -> 4958","Type":"Conventional","Directional":true,"Links":[{"SourceID":42891,"TargetID":4958,"Directional":true}]},{"ID":14103,"SourceStructureID":42890,"TargetStructureID":6957,"Label":"42890-6957 via Conventional from 122050 -> 122051","Type":"Conventional","Directional":true,"Links":[{"SourceID":122050,"TargetID":122051,"Directional":true}]},{"ID":14104,"SourceStructureID":42895,"TargetStructureID":4943,"Label":"42895-4943 via Conventional from 42896 -> 4976","Type":"Conventional","Directional":true,"Links":[{"SourceID":42896,"TargetID":4976,"Directional":true}]},{"ID":14105,"SourceStructureID":42895,"TargetStructureID":42816,"Label":"42895-42816 via Conventional from 42899 -> 42844","Type":"Conventional","Directional":true,"Links":[{"SourceID":42899,"TargetID":42844,"Directional":true}]},{"ID":14106,"SourceStructureID":42927,"TargetStructureID":4943,"Label":"42927-4943 via Conventional from 42928 -> 4977","Type":"Conventional","Directional":true,"Links":[{"SourceID":42928,"TargetID":4977,"Directional":true}]},{"ID":14107,"SourceStructureID":42948,"TargetStructureID":4943,"Label":"42948-4943 via Conventional from 42949 -> 42947","Type":"Conventional","Directional":true,"Links":[{"SourceID":42949,"TargetID":42947,"Directional":true}]},{"ID":14108,"SourceStructureID":42951,"TargetStructureID":4943,"Label":"42951-4943 via Conventional from 42952 -> 42950","Type":"Conventional","Directional":true,"Links":[{"SourceID":42952,"TargetID":42950,"Directional":true}]},{"ID":14109,"SourceStructureID":42953,"TargetStructureID":4943,"Label":"42953-4943 via Conventional from 42955 -> 42954","Type":"Conventional","Directional":true,"Links":[{"SourceID":42955,"TargetID":42954,"Directional":true}]},{"ID":14110,"SourceStructureID":42953,"TargetStructureID":20681,"Label":"42953-20681 via Conventional from 122055 -> 65779","Type":"Conventional","Directional":true,"Links":[{"SourceID":122055,"TargetID":65779,"Directional":true}]},{"ID":14111,"SourceStructureID":42957,"TargetStructureID":4943,"Label":"42957-4943 via Conventional from 42958 -> 42956","Type":"Conventional","Directional":true,"Links":[{"SourceID":42958,"TargetID":42956,"Directional":true}]},{"ID":14112,"SourceStructureID":42966,"TargetStructureID":4943,"Label":"42966-4943 via Conventional from 42967 -> 42964","Type":"Conventional","Directional":true,"Links":[{"SourceID":42967,"TargetID":42964,"Directional":true}]},{"ID":14113,"SourceStructureID":42966,"TargetStructureID":122091,"Label":"42966-122091 via Conventional from 122097 -> 122098","Type":"Conventional","Directional":true,"Links":[{"SourceID":122097,"TargetID":122098,"Directional":true}]},{"ID":14114,"SourceStructureID":42968,"TargetStructureID":4943,"Label":"42968-4943 via Conventional from 42969 -> 42965","Type":"Conventional","Directional":true,"Links":[{"SourceID":42969,"TargetID":42965,"Directional":true}]},{"ID":14115,"SourceStructureID":42971,"TargetStructureID":4943,"Label":"42971-4943 via Conventional from 42972 -> 42970","Type":"Conventional","Directional":true,"Links":[{"SourceID":42972,"TargetID":42970,"Directional":true}]},{"ID":14116,"SourceStructureID":42977,"TargetStructureID":4943,"Label":"42977-4943 via Conventional from 42978 -> 42976","Type":"Conventional","Directional":true,"Links":[{"SourceID":42978,"TargetID":42976,"Directional":true}]},{"ID":14117,"SourceStructureID":42980,"TargetStructureID":4943,"Label":"42980-4943 via Conventional from 42981 -> 42979","Type":"Conventional","Directional":true,"Links":[{"SourceID":42981,"TargetID":42979,"Directional":true}]},{"ID":14118,"SourceStructureID":42985,"TargetStructureID":4943,"Label":"42985-4943 via Conventional from 42986 -> 42984","Type":"Conventional","Directional":true,"Links":[{"SourceID":42986,"TargetID":42984,"Directional":true}]},{"ID":14119,"SourceStructureID":43114,"TargetStructureID":5281,"Label":"43114-5281 via Conventional from 43115 -> 36777","Type":"Conventional","Directional":true,"Links":[{"SourceID":43115,"TargetID":36777,"Directional":true}]},{"ID":14120,"SourceStructureID":43127,"TargetStructureID":5281,"Label":"43127-5281 via Conventional from 43128 -> 43126","Type":"Conventional","Directional":true,"Links":[{"SourceID":43128,"TargetID":43126,"Directional":true}]},{"ID":14121,"SourceStructureID":43130,"TargetStructureID":5281,"Label":"43130-5281 via Conventional from 43131 -> 43129","Type":"Conventional","Directional":true,"Links":[{"SourceID":43131,"TargetID":43129,"Directional":true}]},{"ID":14122,"SourceStructureID":43132,"TargetStructureID":5281,"Label":"43132-5281 via Conventional from 43133 -> 36779","Type":"Conventional","Directional":true,"Links":[{"SourceID":43133,"TargetID":36779,"Directional":true}]},{"ID":14123,"SourceStructureID":43134,"TargetStructureID":5281,"Label":"43134-5281 via Conventional from 43135 -> 36801","Type":"Conventional","Directional":true,"Links":[{"SourceID":43135,"TargetID":36801,"Directional":true}]},{"ID":14124,"SourceStructureID":43142,"TargetStructureID":4943,"Label":"43142-4943 via Conventional from 43143 -> 10065","Type":"Conventional","Directional":true,"Links":[{"SourceID":43143,"TargetID":10065,"Directional":true}]},{"ID":14125,"SourceStructureID":43198,"TargetStructureID":4943,"Label":"43198-4943 via Conventional from 43199 -> 4975","Type":"Conventional","Directional":true,"Links":[{"SourceID":43199,"TargetID":4975,"Directional":true}]},{"ID":14126,"SourceStructureID":43201,"TargetStructureID":4943,"Label":"43201-4943 via Conventional from 43202 -> 8536","Type":"Conventional","Directional":true,"Links":[{"SourceID":43202,"TargetID":8536,"Directional":true}]},{"ID":14127,"SourceStructureID":43201,"TargetStructureID":7346,"Label":"43201-7346 via Conventional from 122043 -> 122042","Type":"Conventional","Directional":true,"Links":[{"SourceID":122043,"TargetID":122042,"Directional":true}]},{"ID":14128,"SourceStructureID":43201,"TargetStructureID":127972,"Label":"43201-127972 via Conventional from 127969 -> 127974, 127970 -> 127975","Type":"Conventional","Directional":true,"Links":[{"SourceID":127969,"TargetID":127974,"Directional":true},{"SourceID":127970,"TargetID":127975,"Directional":true}]},{"ID":14129,"SourceStructureID":43203,"TargetStructureID":4943,"Label":"43203-4943 via Conventional from 43204 -> 4974","Type":"Conventional","Directional":true,"Links":[{"SourceID":43204,"TargetID":4974,"Directional":true}]},{"ID":14130,"SourceStructureID":43203,"TargetStructureID":5634,"Label":"43203-5634 via Conventional from 122028 -> 122032","Type":"Conventional","Directional":true,"Links":[{"SourceID":122028,"TargetID":122032,"Directional":true}]},{"ID":14131,"SourceStructureID":43203,"TargetStructureID":6132,"Label":"43203-6132 via Conventional from 122033 -> 88414, 122034 -> 122037","Type":"Conventional","Directional":true,"Links":[{"SourceID":122033,"TargetID":88414,"Directional":true},{"SourceID":122034,"TargetID":122037,"Directional":true}]},{"ID":14132,"SourceStructureID":43205,"TargetStructureID":4943,"Label":"43205-4943 via Conventional from 43206 -> 4972","Type":"Conventional","Directional":true,"Links":[{"SourceID":43206,"TargetID":4972,"Directional":true}]},{"ID":14133,"SourceStructureID":43205,"TargetStructureID":65768,"Label":"43205-65768 via Conventional from 65767 -> 65769","Type":"Conventional","Directional":true,"Links":[{"SourceID":65767,"TargetID":65769,"Directional":true}]},{"ID":14134,"SourceStructureID":43207,"TargetStructureID":165,"Label":"43207-165 via Conventional from 43210 -> 12524, 43227 -> 43228, 60745 -> 60746","Type":"Conventional","Directional":true,"Links":[{"SourceID":43210,"TargetID":12524,"Directional":true},{"SourceID":43227,"TargetID":43228,"Directional":true},{"SourceID":60745,"TargetID":60746,"Directional":true}]},{"ID":14135,"SourceStructureID":43207,"TargetStructureID":175,"Label":"43207-175 via Conventional from 43231 -> 43232","Type":"Conventional","Directional":true,"Links":[{"SourceID":43231,"TargetID":43232,"Directional":true}]},{"ID":14136,"SourceStructureID":43207,"TargetStructureID":478,"Label":"43207-478 via Conventional from 43234 -> 43235","Type":"Conventional","Directional":true,"Links":[{"SourceID":43234,"TargetID":43235,"Directional":true}]},{"ID":14137,"SourceStructureID":43207,"TargetStructureID":4943,"Label":"43207-4943 via Conventional from 43208 -> 13438","Type":"Conventional","Directional":true,"Links":[{"SourceID":43208,"TargetID":13438,"Directional":true}]},{"ID":14138,"SourceStructureID":43207,"TargetStructureID":5457,"Label":"43207-5457 via Conventional from 43225 -> 103519","Type":"Conventional","Directional":true,"Links":[{"SourceID":43225,"TargetID":103519,"Directional":true}]},{"ID":14139,"SourceStructureID":43207,"TargetStructureID":6128,"Label":"43207-6128 via Conventional from 43217 -> 21046, 43219 -> 43218, 43220 -> 33762","Type":"Conventional","Directional":true,"Links":[{"SourceID":43217,"TargetID":21046,"Directional":true},{"SourceID":43219,"TargetID":43218,"Directional":true},{"SourceID":43220,"TargetID":33762,"Directional":true}]},{"ID":14140,"SourceStructureID":43207,"TargetStructureID":32359,"Label":"43207-32359 via Conventional from 43221 -> 41323","Type":"Conventional","Directional":true,"Links":[{"SourceID":43221,"TargetID":41323,"Directional":true}]},{"ID":14141,"SourceStructureID":43259,"TargetStructureID":4943,"Label":"43259-4943 via Conventional from 43260 -> 4993","Type":"Conventional","Directional":true,"Links":[{"SourceID":43260,"TargetID":4993,"Directional":true}]},{"ID":14142,"SourceStructureID":43261,"TargetStructureID":4943,"Label":"43261-4943 via Conventional from 43263 -> 4965","Type":"Conventional","Directional":true,"Links":[{"SourceID":43263,"TargetID":4965,"Directional":true}]},{"ID":14143,"SourceStructureID":43261,"TargetStructureID":6046,"Label":"43261-6046 via Conventional from 122047 -> 122048","Type":"Conventional","Directional":true,"Links":[{"SourceID":122047,"TargetID":122048,"Directional":true}]},{"ID":14144,"SourceStructureID":43297,"TargetStructureID":42576,"Label":"43297-42576 via Conventional from 43300 -> 43110","Type":"Conventional","Directional":true,"Links":[{"SourceID":43300,"TargetID":43110,"Directional":true}]},{"ID":14145,"SourceStructureID":43303,"TargetStructureID":42576,"Label":"43303-42576 via Conventional from 43304 -> 43249","Type":"Conventional","Directional":true,"Links":[{"SourceID":43304,"TargetID":43249,"Directional":true}]},{"ID":14146,"SourceStructureID":43327,"TargetStructureID":4569,"Label":"43327-4569 via Conventional from 43328 -> 6297, 43331 -> 52523","Type":"Conventional","Directional":true,"Links":[{"SourceID":43328,"TargetID":6297,"Directional":true},{"SourceID":43331,"TargetID":52523,"Directional":true}]},{"ID":14147,"SourceStructureID":43327,"TargetStructureID":137159,"Label":"43327-137159 via Conventional from 43330 -> 31352","Type":"Conventional","Directional":true,"Links":[{"SourceID":43330,"TargetID":31352,"Directional":true}]},{"ID":14148,"SourceStructureID":43334,"TargetStructureID":4569,"Label":"43334-4569 via Conventional from 43335 -> 23782","Type":"Conventional","Directional":true,"Links":[{"SourceID":43335,"TargetID":23782,"Directional":true}]},{"ID":14149,"SourceStructureID":43404,"TargetStructureID":165,"Label":"43404-165 via Conventional from 43408 -> 43409","Type":"Conventional","Directional":true,"Links":[{"SourceID":43408,"TargetID":43409,"Directional":true}]},{"ID":14150,"SourceStructureID":43404,"TargetStructureID":181,"Label":"43404-181 via Conventional from 43411 -> 20482","Type":"Conventional","Directional":true,"Links":[{"SourceID":43411,"TargetID":20482,"Directional":true}]},{"ID":14151,"SourceStructureID":43404,"TargetStructureID":4568,"Label":"43404-4568 via Conventional from 43407 -> 11518","Type":"Conventional","Directional":true,"Links":[{"SourceID":43407,"TargetID":11518,"Directional":true}]},{"ID":14152,"SourceStructureID":43431,"TargetStructureID":519,"Label":"43431-519 via Conventional from 100171 -> 100172","Type":"Conventional","Directional":true,"Links":[{"SourceID":100171,"TargetID":100172,"Directional":true}]},{"ID":14153,"SourceStructureID":43431,"TargetStructureID":593,"Label":"43431-593 via Conventional from 84268 -> 84267","Type":"Conventional","Directional":true,"Links":[{"SourceID":84268,"TargetID":84267,"Directional":true}]},{"ID":14154,"SourceStructureID":43431,"TargetStructureID":3679,"Label":"43431-3679 via Conventional from 43444 -> 4703","Type":"Conventional","Directional":true,"Links":[{"SourceID":43444,"TargetID":4703,"Directional":true}]},{"ID":14155,"SourceStructureID":43431,"TargetStructureID":8720,"Label":"43431-8720 via Conventional from 43440 -> 60076","Type":"Conventional","Directional":true,"Links":[{"SourceID":43440,"TargetID":60076,"Directional":true}]},{"ID":14156,"SourceStructureID":43431,"TargetStructureID":11031,"Label":"43431-11031 via Conventional from 43432 -> 25448","Type":"Conventional","Directional":true,"Links":[{"SourceID":43432,"TargetID":25448,"Directional":true}]},{"ID":14157,"SourceStructureID":43431,"TargetStructureID":54744,"Label":"43431-54744 via Conventional from 43442 -> 54752, 54758 -> 54757, 100164 -> 54759","Type":"Conventional","Directional":true,"Links":[{"SourceID":43442,"TargetID":54752,"Directional":true},{"SourceID":54758,"TargetID":54757,"Directional":true},{"SourceID":100164,"TargetID":54759,"Directional":true}]},{"ID":14158,"SourceStructureID":43445,"TargetStructureID":25440,"Label":"43445-25440 via Conventional from 43446 -> 25458","Type":"Conventional","Directional":true,"Links":[{"SourceID":43446,"TargetID":25458,"Directional":true}]},{"ID":14159,"SourceStructureID":43482,"TargetStructureID":6857,"Label":"43482-6857 via Conventional from 43483 -> 6878","Type":"Conventional","Directional":true,"Links":[{"SourceID":43483,"TargetID":6878,"Directional":true}]},{"ID":14160,"SourceStructureID":43507,"TargetStructureID":6997,"Label":"43507-6997 via Conventional from 43511 -> 22176","Type":"Conventional","Directional":true,"Links":[{"SourceID":43511,"TargetID":22176,"Directional":true}]},{"ID":14161,"SourceStructureID":43507,"TargetStructureID":8575,"Label":"43507-8575 via Conventional from 43508 -> 43277, 62146 -> 62145","Type":"Conventional","Directional":true,"Links":[{"SourceID":43508,"TargetID":43277,"Directional":true},{"SourceID":62146,"TargetID":62145,"Directional":true}]},{"ID":14162,"SourceStructureID":43507,"TargetStructureID":11401,"Label":"43507-11401 via Conventional from 43509 -> 43510","Type":"Conventional","Directional":true,"Links":[{"SourceID":43509,"TargetID":43510,"Directional":true}]},{"ID":14163,"SourceStructureID":43507,"TargetStructureID":88199,"Label":"43507-88199 via Conventional from 43515 -> 88202","Type":"Conventional","Directional":true,"Links":[{"SourceID":43515,"TargetID":88202,"Directional":true}]},{"ID":14164,"SourceStructureID":43507,"TargetStructureID":136786,"Label":"43507-136786 via Conventional from 136805 -> 136804","Type":"Conventional","Directional":true,"Links":[{"SourceID":136805,"TargetID":136804,"Directional":true}]},{"ID":14165,"SourceStructureID":43601,"TargetStructureID":179,"Label":"43601-179 via Conventional from 43602 -> 25312","Type":"Conventional","Directional":true,"Links":[{"SourceID":43602,"TargetID":25312,"Directional":true}]},{"ID":14166,"SourceStructureID":43700,"TargetStructureID":5107,"Label":"43700-5107 via Ribbon Synapse from 43702 -> 43701","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":43702,"TargetID":43701,"Directional":true}]},{"ID":14167,"SourceStructureID":43712,"TargetStructureID":5107,"Label":"43712-5107 via Conventional from 43713 -> 43676","Type":"Conventional","Directional":true,"Links":[{"SourceID":43713,"TargetID":43676,"Directional":true}]},{"ID":14168,"SourceStructureID":43747,"TargetStructureID":308,"Label":"43747-308 via Conventional from 43751 -> 43748","Type":"Conventional","Directional":true,"Links":[{"SourceID":43751,"TargetID":43748,"Directional":true}]},{"ID":14169,"SourceStructureID":43770,"TargetStructureID":46074,"Label":"43770-46074 via Conventional from 43779 -> 46086","Type":"Conventional","Directional":true,"Links":[{"SourceID":43779,"TargetID":46086,"Directional":true}]},{"ID":14170,"SourceStructureID":44205,"TargetStructureID":606,"Label":"44205-606 via Conventional from 44206 -> 44204","Type":"Conventional","Directional":true,"Links":[{"SourceID":44206,"TargetID":44204,"Directional":true}]},{"ID":14171,"SourceStructureID":44212,"TargetStructureID":606,"Label":"44212-606 via Conventional from 44213 -> 44211","Type":"Conventional","Directional":true,"Links":[{"SourceID":44213,"TargetID":44211,"Directional":true}]},{"ID":14172,"SourceStructureID":44222,"TargetStructureID":44229,"Label":"44222-44229 via Conventional from 44227 -> 44231","Type":"Conventional","Directional":true,"Links":[{"SourceID":44227,"TargetID":44231,"Directional":true}]},{"ID":14173,"SourceStructureID":44229,"TargetStructureID":606,"Label":"44229-606 via Conventional from 44230 -> 44228","Type":"Conventional","Directional":true,"Links":[{"SourceID":44230,"TargetID":44228,"Directional":true}]},{"ID":14174,"SourceStructureID":44237,"TargetStructureID":606,"Label":"44237-606 via Conventional from 44239 -> 44236","Type":"Conventional","Directional":true,"Links":[{"SourceID":44239,"TargetID":44236,"Directional":true}]},{"ID":14175,"SourceStructureID":44237,"TargetStructureID":5530,"Label":"44237-5530 via Conventional from 44238 -> 23846","Type":"Conventional","Directional":true,"Links":[{"SourceID":44238,"TargetID":23846,"Directional":true}]},{"ID":14176,"SourceStructureID":44241,"TargetStructureID":606,"Label":"44241-606 via Conventional from 44242 -> 44240","Type":"Conventional","Directional":true,"Links":[{"SourceID":44242,"TargetID":44240,"Directional":true}]},{"ID":14177,"SourceStructureID":44256,"TargetStructureID":606,"Label":"44256-606 via Ribbon Synapse from 44257 -> 5087, 44265 -> 5088, 44266 -> 5095, 53832 -> 5094","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44257,"TargetID":5087,"Directional":true},{"SourceID":44265,"TargetID":5088,"Directional":true},{"SourceID":44266,"TargetID":5095,"Directional":true},{"SourceID":53832,"TargetID":5094,"Directional":true}]},{"ID":14178,"SourceStructureID":44256,"TargetStructureID":88646,"Label":"44256-88646 via Ribbon Synapse from 88656 -> 88654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88656,"TargetID":88654,"Directional":true}]},{"ID":14179,"SourceStructureID":44338,"TargetStructureID":606,"Label":"44338-606 via Ribbon Synapse from 44339 -> 44337","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":44339,"TargetID":44337,"Directional":true}]},{"ID":14180,"SourceStructureID":44893,"TargetStructureID":44895,"Label":"44893-44895 via Conventional from 44894 -> 44897","Type":"Conventional","Directional":true,"Links":[{"SourceID":44894,"TargetID":44897,"Directional":true}]},{"ID":14181,"SourceStructureID":44895,"TargetStructureID":44346,"Label":"44895-44346 via Conventional from 44896 -> 44351","Type":"Conventional","Directional":true,"Links":[{"SourceID":44896,"TargetID":44351,"Directional":true}]},{"ID":14182,"SourceStructureID":44901,"TargetStructureID":44346,"Label":"44901-44346 via Conventional from 44902 -> 44350","Type":"Conventional","Directional":true,"Links":[{"SourceID":44902,"TargetID":44350,"Directional":true}]},{"ID":14183,"SourceStructureID":44912,"TargetStructureID":44346,"Label":"44912-44346 via Conventional from 44913 -> 44355, 44920 -> 44356","Type":"Conventional","Directional":true,"Links":[{"SourceID":44913,"TargetID":44355,"Directional":true},{"SourceID":44920,"TargetID":44356,"Directional":true}]},{"ID":14184,"SourceStructureID":44965,"TargetStructureID":5439,"Label":"44965-5439 via Conventional from 44999 -> 70650","Type":"Conventional","Directional":true,"Links":[{"SourceID":44999,"TargetID":70650,"Directional":true}]},{"ID":14185,"SourceStructureID":45007,"TargetStructureID":44346,"Label":"45007-44346 via Conventional from 45008 -> 44353","Type":"Conventional","Directional":true,"Links":[{"SourceID":45008,"TargetID":44353,"Directional":true}]},{"ID":14186,"SourceStructureID":45220,"TargetStructureID":16073,"Label":"45220-16073 via Conventional from 56091 -> 56092","Type":"Conventional","Directional":true,"Links":[{"SourceID":56091,"TargetID":56092,"Directional":true}]},{"ID":14187,"SourceStructureID":45220,"TargetStructureID":56086,"Label":"45220-56086 via Conventional from 45226 -> 56090","Type":"Conventional","Directional":true,"Links":[{"SourceID":45226,"TargetID":56090,"Directional":true}]},{"ID":14188,"SourceStructureID":45326,"TargetStructureID":45336,"Label":"45326-45336 via Conventional from 45334 -> 45337","Type":"Conventional","Directional":true,"Links":[{"SourceID":45334,"TargetID":45337,"Directional":true}]},{"ID":14189,"SourceStructureID":45326,"TargetStructureID":56084,"Label":"45326-56084 via Conventional from 56083 -> 56085","Type":"Conventional","Directional":true,"Links":[{"SourceID":56083,"TargetID":56085,"Directional":true}]},{"ID":14190,"SourceStructureID":45536,"TargetStructureID":9769,"Label":"45536-9769 via Conventional from 45541 -> 23932","Type":"Conventional","Directional":true,"Links":[{"SourceID":45541,"TargetID":23932,"Directional":true}]},{"ID":14191,"SourceStructureID":45536,"TargetStructureID":68539,"Label":"45536-68539 via Conventional from 45537 -> 70412","Type":"Conventional","Directional":true,"Links":[{"SourceID":45537,"TargetID":70412,"Directional":true}]},{"ID":14192,"SourceStructureID":45551,"TargetStructureID":68539,"Label":"45551-68539 via Conventional from 45553 -> 70276","Type":"Conventional","Directional":true,"Links":[{"SourceID":45553,"TargetID":70276,"Directional":true}]},{"ID":14193,"SourceStructureID":45555,"TargetStructureID":68539,"Label":"45555-68539 via Conventional from 45556 -> 70279, 45561 -> 70413","Type":"Conventional","Directional":true,"Links":[{"SourceID":45556,"TargetID":70279,"Directional":true},{"SourceID":45561,"TargetID":70413,"Directional":true}]},{"ID":14194,"SourceStructureID":45568,"TargetStructureID":68539,"Label":"45568-68539 via Conventional from 45569 -> 70280","Type":"Conventional","Directional":true,"Links":[{"SourceID":45569,"TargetID":70280,"Directional":true}]},{"ID":14195,"SourceStructureID":45571,"TargetStructureID":68539,"Label":"45571-68539 via Conventional from 45572 -> 70281","Type":"Conventional","Directional":true,"Links":[{"SourceID":45572,"TargetID":70281,"Directional":true}]},{"ID":14196,"SourceStructureID":45617,"TargetStructureID":606,"Label":"45617-606 via Conventional from 52136 -> 52135","Type":"Conventional","Directional":true,"Links":[{"SourceID":52136,"TargetID":52135,"Directional":true}]},{"ID":14197,"SourceStructureID":45617,"TargetStructureID":31024,"Label":"45617-31024 via Conventional from 45619 -> 31099","Type":"Conventional","Directional":true,"Links":[{"SourceID":45619,"TargetID":31099,"Directional":true}]},{"ID":14198,"SourceStructureID":45617,"TargetStructureID":44346,"Label":"45617-44346 via Conventional from 45626 -> 44381","Type":"Conventional","Directional":true,"Links":[{"SourceID":45626,"TargetID":44381,"Directional":true}]},{"ID":14199,"SourceStructureID":45629,"TargetStructureID":330,"Label":"45629-330 via Conventional from 45634 -> 25912","Type":"Conventional","Directional":true,"Links":[{"SourceID":45634,"TargetID":25912,"Directional":true}]},{"ID":14200,"SourceStructureID":45629,"TargetStructureID":453,"Label":"45629-453 via Conventional from 45630 -> 45631, 45632 -> 45633","Type":"Conventional","Directional":true,"Links":[{"SourceID":45630,"TargetID":45631,"Directional":true},{"SourceID":45632,"TargetID":45633,"Directional":true}]},{"ID":14201,"SourceStructureID":45672,"TargetStructureID":579,"Label":"45672-579 via Conventional from 45673 -> 45674","Type":"Conventional","Directional":true,"Links":[{"SourceID":45673,"TargetID":45674,"Directional":true}]},{"ID":14202,"SourceStructureID":45672,"TargetStructureID":5623,"Label":"45672-5623 via Conventional from 45676 -> 127729","Type":"Conventional","Directional":true,"Links":[{"SourceID":45676,"TargetID":127729,"Directional":true}]},{"ID":14203,"SourceStructureID":45677,"TargetStructureID":5017,"Label":"45677-5017 via Conventional from 45678 -> 5038","Type":"Conventional","Directional":true,"Links":[{"SourceID":45678,"TargetID":5038,"Directional":true}]},{"ID":14204,"SourceStructureID":45677,"TargetStructureID":6997,"Label":"45677-6997 via Conventional from 82945 -> 82946","Type":"Conventional","Directional":true,"Links":[{"SourceID":82945,"TargetID":82946,"Directional":true}]},{"ID":14205,"SourceStructureID":45680,"TargetStructureID":5017,"Label":"45680-5017 via Conventional from 45681 -> 45679","Type":"Conventional","Directional":true,"Links":[{"SourceID":45681,"TargetID":45679,"Directional":true}]},{"ID":14206,"SourceStructureID":45731,"TargetStructureID":606,"Label":"45731-606 via Ribbon Synapse from 45739 -> 45689","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45739,"TargetID":45689,"Directional":true}]},{"ID":14207,"SourceStructureID":45847,"TargetStructureID":606,"Label":"45847-606 via Ribbon Synapse from 45850 -> 45845, 45855 -> 45856","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45850,"TargetID":45845,"Directional":true},{"SourceID":45855,"TargetID":45856,"Directional":true}]},{"ID":14208,"SourceStructureID":45894,"TargetStructureID":606,"Label":"45894-606 via Ribbon Synapse from 45900 -> 45891","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":45900,"TargetID":45891,"Directional":true}]},{"ID":14209,"SourceStructureID":46050,"TargetStructureID":308,"Label":"46050-308 via Conventional from 46051 -> 15045","Type":"Conventional","Directional":true,"Links":[{"SourceID":46051,"TargetID":15045,"Directional":true}]},{"ID":14210,"SourceStructureID":46052,"TargetStructureID":308,"Label":"46052-308 via Conventional from 46053 -> 15046","Type":"Conventional","Directional":true,"Links":[{"SourceID":46053,"TargetID":15046,"Directional":true}]},{"ID":14211,"SourceStructureID":46054,"TargetStructureID":308,"Label":"46054-308 via Conventional from 46055 -> 15047","Type":"Conventional","Directional":true,"Links":[{"SourceID":46055,"TargetID":15047,"Directional":true}]},{"ID":14212,"SourceStructureID":46054,"TargetStructureID":46057,"Label":"46054-46057 via Conventional from 46056 -> 46058","Type":"Conventional","Directional":true,"Links":[{"SourceID":46056,"TargetID":46058,"Directional":true}]},{"ID":14213,"SourceStructureID":46059,"TargetStructureID":308,"Label":"46059-308 via Conventional from 46060 -> 15050","Type":"Conventional","Directional":true,"Links":[{"SourceID":46060,"TargetID":15050,"Directional":true}]},{"ID":14214,"SourceStructureID":46059,"TargetStructureID":24303,"Label":"46059-24303 via Conventional from 107024 -> 122493","Type":"Conventional","Directional":true,"Links":[{"SourceID":107024,"TargetID":122493,"Directional":true}]},{"ID":14215,"SourceStructureID":46062,"TargetStructureID":15100,"Label":"46062-15100 via Conventional from 46063 -> 17996, 46065 -> 46064, 46066 -> 46069, 46067 -> 46068","Type":"Conventional","Directional":true,"Links":[{"SourceID":46063,"TargetID":17996,"Directional":true},{"SourceID":46065,"TargetID":46064,"Directional":true},{"SourceID":46066,"TargetID":46069,"Directional":true},{"SourceID":46067,"TargetID":46068,"Directional":true}]},{"ID":14216,"SourceStructureID":46070,"TargetStructureID":308,"Label":"46070-308 via Conventional from 46071 -> 31862","Type":"Conventional","Directional":true,"Links":[{"SourceID":46071,"TargetID":31862,"Directional":true}]},{"ID":14217,"SourceStructureID":46074,"TargetStructureID":308,"Label":"46074-308 via Conventional from 46075 -> 31864","Type":"Conventional","Directional":true,"Links":[{"SourceID":46075,"TargetID":31864,"Directional":true}]},{"ID":14218,"SourceStructureID":46074,"TargetStructureID":475,"Label":"46074-475 via Conventional from 46079 -> 46083, 46084 -> 46085","Type":"Conventional","Directional":true,"Links":[{"SourceID":46079,"TargetID":46083,"Directional":true},{"SourceID":46084,"TargetID":46085,"Directional":true}]},{"ID":14219,"SourceStructureID":46090,"TargetStructureID":308,"Label":"46090-308 via Conventional from 46091 -> 31865","Type":"Conventional","Directional":true,"Links":[{"SourceID":46091,"TargetID":31865,"Directional":true}]},{"ID":14220,"SourceStructureID":46090,"TargetStructureID":382,"Label":"46090-382 via Conventional from 107032 -> 107033","Type":"Conventional","Directional":true,"Links":[{"SourceID":107032,"TargetID":107033,"Directional":true}]},{"ID":14221,"SourceStructureID":46093,"TargetStructureID":308,"Label":"46093-308 via Conventional from 46094 -> 31866, 46103 -> 31867","Type":"Conventional","Directional":true,"Links":[{"SourceID":46094,"TargetID":31866,"Directional":true},{"SourceID":46103,"TargetID":31867,"Directional":true}]},{"ID":14222,"SourceStructureID":46093,"TargetStructureID":46098,"Label":"46093-46098 via Conventional from 46097 -> 46099","Type":"Conventional","Directional":true,"Links":[{"SourceID":46097,"TargetID":46099,"Directional":true}]},{"ID":14223,"SourceStructureID":46098,"TargetStructureID":46093,"Label":"46098-46093 via Ribbon Synapse from 46101 -> 46096","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46101,"TargetID":46096,"Directional":true}]},{"ID":14224,"SourceStructureID":46105,"TargetStructureID":606,"Label":"46105-606 via Ribbon Synapse from 46238 -> 46104","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46238,"TargetID":46104,"Directional":true}]},{"ID":14225,"SourceStructureID":46107,"TargetStructureID":308,"Label":"46107-308 via Conventional from 46108 -> 31860","Type":"Conventional","Directional":true,"Links":[{"SourceID":46108,"TargetID":31860,"Directional":true}]},{"ID":14226,"SourceStructureID":46116,"TargetStructureID":308,"Label":"46116-308 via Conventional from 46117 -> 43385","Type":"Conventional","Directional":true,"Links":[{"SourceID":46117,"TargetID":43385,"Directional":true}]},{"ID":14227,"SourceStructureID":46118,"TargetStructureID":308,"Label":"46118-308 via Conventional from 46119 -> 43397","Type":"Conventional","Directional":true,"Links":[{"SourceID":46119,"TargetID":43397,"Directional":true}]},{"ID":14228,"SourceStructureID":46121,"TargetStructureID":308,"Label":"46121-308 via Conventional from 46122 -> 43600","Type":"Conventional","Directional":true,"Links":[{"SourceID":46122,"TargetID":43600,"Directional":true}]},{"ID":14229,"SourceStructureID":46121,"TargetStructureID":426,"Label":"46121-426 via Conventional from 46128 -> 46136","Type":"Conventional","Directional":true,"Links":[{"SourceID":46128,"TargetID":46136,"Directional":true}]},{"ID":14230,"SourceStructureID":46121,"TargetStructureID":4850,"Label":"46121-4850 via Conventional from 46170 -> 46178","Type":"Conventional","Directional":true,"Links":[{"SourceID":46170,"TargetID":46178,"Directional":true}]},{"ID":14231,"SourceStructureID":46121,"TargetStructureID":5150,"Label":"46121-5150 via Conventional from 46124 -> 5180","Type":"Conventional","Directional":true,"Links":[{"SourceID":46124,"TargetID":5180,"Directional":true}]},{"ID":14232,"SourceStructureID":46121,"TargetStructureID":5639,"Label":"46121-5639 via Conventional from 46214 -> 46217","Type":"Conventional","Directional":true,"Links":[{"SourceID":46214,"TargetID":46217,"Directional":true}]},{"ID":14233,"SourceStructureID":46121,"TargetStructureID":7568,"Label":"46121-7568 via Conventional from 46147 -> 27078","Type":"Conventional","Directional":true,"Links":[{"SourceID":46147,"TargetID":27078,"Directional":true}]},{"ID":14234,"SourceStructureID":46121,"TargetStructureID":9787,"Label":"46121-9787 via Conventional from 46150 -> 46151, 46155 -> 46159","Type":"Conventional","Directional":true,"Links":[{"SourceID":46150,"TargetID":46151,"Directional":true},{"SourceID":46155,"TargetID":46159,"Directional":true}]},{"ID":14235,"SourceStructureID":46121,"TargetStructureID":28950,"Label":"46121-28950 via Conventional from 46235 -> 46239","Type":"Conventional","Directional":true,"Links":[{"SourceID":46235,"TargetID":46239,"Directional":true}]},{"ID":14236,"SourceStructureID":46121,"TargetStructureID":29340,"Label":"46121-29340 via Conventional from 46241 -> 33844","Type":"Conventional","Directional":true,"Links":[{"SourceID":46241,"TargetID":33844,"Directional":true}]},{"ID":14237,"SourceStructureID":46121,"TargetStructureID":46186,"Label":"46121-46186 via Conventional from 46181 -> 46187","Type":"Conventional","Directional":true,"Links":[{"SourceID":46181,"TargetID":46187,"Directional":true}]},{"ID":14238,"SourceStructureID":46347,"TargetStructureID":5303,"Label":"46347-5303 via Conventional from 46349 -> 46348","Type":"Conventional","Directional":true,"Links":[{"SourceID":46349,"TargetID":46348,"Directional":true}]},{"ID":14239,"SourceStructureID":46351,"TargetStructureID":992,"Label":"46351-992 via Conventional from 46353 -> 29421, 46356 -> 46357","Type":"Conventional","Directional":true,"Links":[{"SourceID":46353,"TargetID":29421,"Directional":true},{"SourceID":46356,"TargetID":46357,"Directional":true}]},{"ID":14240,"SourceStructureID":46351,"TargetStructureID":5303,"Label":"46351-5303 via Conventional from 46352 -> 46350","Type":"Conventional","Directional":true,"Links":[{"SourceID":46352,"TargetID":46350,"Directional":true}]},{"ID":14241,"SourceStructureID":46359,"TargetStructureID":172,"Label":"46359-172 via Conventional from 46363 -> 33349, 46367 -> 46368","Type":"Conventional","Directional":true,"Links":[{"SourceID":46363,"TargetID":33349,"Directional":true},{"SourceID":46367,"TargetID":46368,"Directional":true}]},{"ID":14242,"SourceStructureID":46359,"TargetStructureID":5303,"Label":"46359-5303 via Conventional from 46360 -> 6173","Type":"Conventional","Directional":true,"Links":[{"SourceID":46360,"TargetID":6173,"Directional":true}]},{"ID":14243,"SourceStructureID":46359,"TargetStructureID":46373,"Label":"46359-46373 via Conventional from 46372 -> 46374","Type":"Conventional","Directional":true,"Links":[{"SourceID":46372,"TargetID":46374,"Directional":true}]},{"ID":14244,"SourceStructureID":46373,"TargetStructureID":46359,"Label":"46373-46359 via Ribbon Synapse from 46376 -> 46375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46376,"TargetID":46375,"Directional":true}]},{"ID":14245,"SourceStructureID":46379,"TargetStructureID":5303,"Label":"46379-5303 via Conventional from 46380 -> 30548","Type":"Conventional","Directional":true,"Links":[{"SourceID":46380,"TargetID":30548,"Directional":true}]},{"ID":14246,"SourceStructureID":46386,"TargetStructureID":5303,"Label":"46386-5303 via Conventional from 46387 -> 30549","Type":"Conventional","Directional":true,"Links":[{"SourceID":46387,"TargetID":30549,"Directional":true}]},{"ID":14247,"SourceStructureID":46386,"TargetStructureID":46384,"Label":"46386-46384 via Conventional from 127956 -> 127957","Type":"Conventional","Directional":true,"Links":[{"SourceID":127956,"TargetID":127957,"Directional":true}]},{"ID":14248,"SourceStructureID":46388,"TargetStructureID":606,"Label":"46388-606 via Ribbon Synapse from 46403 -> 46404, 46603 -> 46606, 46604 -> 46605, 46629 -> 10496","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46403,"TargetID":46404,"Directional":true},{"SourceID":46603,"TargetID":46606,"Directional":true},{"SourceID":46604,"TargetID":46605,"Directional":true},{"SourceID":46629,"TargetID":10496,"Directional":true}]},{"ID":14249,"SourceStructureID":46388,"TargetStructureID":40480,"Label":"46388-40480 via Ribbon Synapse from 121389 -> 59949","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121389,"TargetID":59949,"Directional":true}]},{"ID":14250,"SourceStructureID":46388,"TargetStructureID":46589,"Label":"46388-46589 via Ribbon Synapse from 47176 -> 47177, 47179 -> 47181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47176,"TargetID":47177,"Directional":true},{"SourceID":47179,"TargetID":47181,"Directional":true}]},{"ID":14251,"SourceStructureID":46388,"TargetStructureID":127796,"Label":"46388-127796 via Ribbon Synapse from 127807 -> 127806","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127807,"TargetID":127806,"Directional":true}]},{"ID":14252,"SourceStructureID":46389,"TargetStructureID":5303,"Label":"46389-5303 via Conventional from 46390 -> 35617","Type":"Conventional","Directional":true,"Links":[{"SourceID":46390,"TargetID":35617,"Directional":true}]},{"ID":14253,"SourceStructureID":46389,"TargetStructureID":12099,"Label":"46389-12099 via Conventional from 46394 -> 12103","Type":"Conventional","Directional":true,"Links":[{"SourceID":46394,"TargetID":12103,"Directional":true}]},{"ID":14254,"SourceStructureID":46391,"TargetStructureID":5303,"Label":"46391-5303 via Conventional from 46392 -> 35618","Type":"Conventional","Directional":true,"Links":[{"SourceID":46392,"TargetID":35618,"Directional":true}]},{"ID":14255,"SourceStructureID":46391,"TargetStructureID":35696,"Label":"46391-35696 via Conventional from 46433 -> 46432","Type":"Conventional","Directional":true,"Links":[{"SourceID":46433,"TargetID":46432,"Directional":true}]},{"ID":14256,"SourceStructureID":46443,"TargetStructureID":5303,"Label":"46443-5303 via Conventional from 46444 -> 35619","Type":"Conventional","Directional":true,"Links":[{"SourceID":46444,"TargetID":35619,"Directional":true}]},{"ID":14257,"SourceStructureID":46443,"TargetStructureID":35696,"Label":"46443-35696 via Conventional from 46445 -> 46446","Type":"Conventional","Directional":true,"Links":[{"SourceID":46445,"TargetID":46446,"Directional":true}]},{"ID":14258,"SourceStructureID":46449,"TargetStructureID":138,"Label":"46449-138 via Conventional from 46457 -> 46458","Type":"Conventional","Directional":true,"Links":[{"SourceID":46457,"TargetID":46458,"Directional":true}]},{"ID":14259,"SourceStructureID":46449,"TargetStructureID":173,"Label":"46449-173 via Conventional from 46452 -> 46454, 60792 -> 60791","Type":"Conventional","Directional":true,"Links":[{"SourceID":46452,"TargetID":46454,"Directional":true},{"SourceID":60792,"TargetID":60791,"Directional":true}]},{"ID":14260,"SourceStructureID":46449,"TargetStructureID":5303,"Label":"46449-5303 via Conventional from 46450 -> 35620","Type":"Conventional","Directional":true,"Links":[{"SourceID":46450,"TargetID":35620,"Directional":true}]},{"ID":14261,"SourceStructureID":46449,"TargetStructureID":6136,"Label":"46449-6136 via Conventional from 60773 -> 12999","Type":"Conventional","Directional":true,"Links":[{"SourceID":60773,"TargetID":12999,"Directional":true}]},{"ID":14262,"SourceStructureID":46461,"TargetStructureID":5303,"Label":"46461-5303 via Conventional from 46462 -> 35621","Type":"Conventional","Directional":true,"Links":[{"SourceID":46462,"TargetID":35621,"Directional":true}]},{"ID":14263,"SourceStructureID":46468,"TargetStructureID":5303,"Label":"46468-5303 via Conventional from 46469 -> 35622","Type":"Conventional","Directional":true,"Links":[{"SourceID":46469,"TargetID":35622,"Directional":true}]},{"ID":14264,"SourceStructureID":46468,"TargetStructureID":7112,"Label":"46468-7112 via Conventional from 46472 -> 121999","Type":"Conventional","Directional":true,"Links":[{"SourceID":46472,"TargetID":121999,"Directional":true}]},{"ID":14265,"SourceStructureID":46468,"TargetStructureID":102116,"Label":"46468-102116 via Conventional from 122013 -> 102119","Type":"Conventional","Directional":true,"Links":[{"SourceID":122013,"TargetID":102119,"Directional":true}]},{"ID":14266,"SourceStructureID":46498,"TargetStructureID":138,"Label":"46498-138 via Conventional from 127911 -> 2199","Type":"Conventional","Directional":true,"Links":[{"SourceID":127911,"TargetID":2199,"Directional":true}]},{"ID":14267,"SourceStructureID":46498,"TargetStructureID":992,"Label":"46498-992 via Conventional from 127912 -> 127913, 127916 -> 127918","Type":"Conventional","Directional":true,"Links":[{"SourceID":127912,"TargetID":127913,"Directional":true},{"SourceID":127916,"TargetID":127918,"Directional":true}]},{"ID":14268,"SourceStructureID":46498,"TargetStructureID":5303,"Label":"46498-5303 via Conventional from 46499 -> 46500","Type":"Conventional","Directional":true,"Links":[{"SourceID":46499,"TargetID":46500,"Directional":true}]},{"ID":14269,"SourceStructureID":46502,"TargetStructureID":181,"Label":"46502-181 via Conventional from 127924 -> 20485","Type":"Conventional","Directional":true,"Links":[{"SourceID":127924,"TargetID":20485,"Directional":true}]},{"ID":14270,"SourceStructureID":46502,"TargetStructureID":5303,"Label":"46502-5303 via Conventional from 46503 -> 46501","Type":"Conventional","Directional":true,"Links":[{"SourceID":46503,"TargetID":46501,"Directional":true}]},{"ID":14271,"SourceStructureID":46502,"TargetStructureID":127930,"Label":"46502-127930 via Conventional from 127928 -> 127932","Type":"Conventional","Directional":true,"Links":[{"SourceID":127928,"TargetID":127932,"Directional":true}]},{"ID":14272,"SourceStructureID":46504,"TargetStructureID":5303,"Label":"46504-5303 via Conventional from 46505 -> 35730","Type":"Conventional","Directional":true,"Links":[{"SourceID":46505,"TargetID":35730,"Directional":true}]},{"ID":14273,"SourceStructureID":46504,"TargetStructureID":46508,"Label":"46504-46508 via Conventional from 46507 -> 46509","Type":"Conventional","Directional":true,"Links":[{"SourceID":46507,"TargetID":46509,"Directional":true}]},{"ID":14274,"SourceStructureID":46504,"TargetStructureID":46512,"Label":"46504-46512 via Conventional from 46510 -> 46513","Type":"Conventional","Directional":true,"Links":[{"SourceID":46510,"TargetID":46513,"Directional":true}]},{"ID":14275,"SourceStructureID":46512,"TargetStructureID":46504,"Label":"46512-46504 via Ribbon Synapse from 60738 -> 46511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60738,"TargetID":46511,"Directional":true}]},{"ID":14276,"SourceStructureID":46514,"TargetStructureID":5303,"Label":"46514-5303 via Conventional from 46515 -> 35731","Type":"Conventional","Directional":true,"Links":[{"SourceID":46515,"TargetID":35731,"Directional":true}]},{"ID":14277,"SourceStructureID":46514,"TargetStructureID":127940,"Label":"46514-127940 via Conventional from 127937 -> 127942","Type":"Conventional","Directional":true,"Links":[{"SourceID":127937,"TargetID":127942,"Directional":true}]},{"ID":14278,"SourceStructureID":46517,"TargetStructureID":175,"Label":"46517-175 via Conventional from 46519 -> 46520","Type":"Conventional","Directional":true,"Links":[{"SourceID":46519,"TargetID":46520,"Directional":true}]},{"ID":14279,"SourceStructureID":46517,"TargetStructureID":5303,"Label":"46517-5303 via Conventional from 46518 -> 46516","Type":"Conventional","Directional":true,"Links":[{"SourceID":46518,"TargetID":46516,"Directional":true}]},{"ID":14280,"SourceStructureID":46521,"TargetStructureID":5303,"Label":"46521-5303 via Conventional from 46522 -> 35732","Type":"Conventional","Directional":true,"Links":[{"SourceID":46522,"TargetID":35732,"Directional":true}]},{"ID":14281,"SourceStructureID":46521,"TargetStructureID":46527,"Label":"46521-46527 via Conventional from 46525 -> 46529","Type":"Conventional","Directional":true,"Links":[{"SourceID":46525,"TargetID":46529,"Directional":true}]},{"ID":14282,"SourceStructureID":46527,"TargetStructureID":46521,"Label":"46527-46521 via Ribbon Synapse from 46528 -> 46526","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46528,"TargetID":46526,"Directional":true}]},{"ID":14283,"SourceStructureID":46530,"TargetStructureID":5303,"Label":"46530-5303 via Conventional from 46531 -> 35614, 46535 -> 46536","Type":"Conventional","Directional":true,"Links":[{"SourceID":46531,"TargetID":35614,"Directional":true},{"SourceID":46535,"TargetID":46536,"Directional":true}]},{"ID":14284,"SourceStructureID":46530,"TargetStructureID":6048,"Label":"46530-6048 via Conventional from 46534 -> 127967","Type":"Conventional","Directional":true,"Links":[{"SourceID":46534,"TargetID":127967,"Directional":true}]},{"ID":14285,"SourceStructureID":46530,"TargetStructureID":29340,"Label":"46530-29340 via Conventional from 46538 -> 29390","Type":"Conventional","Directional":true,"Links":[{"SourceID":46538,"TargetID":29390,"Directional":true}]},{"ID":14286,"SourceStructureID":46670,"TargetStructureID":591,"Label":"46670-591 via Conventional from 46671 -> 10280","Type":"Conventional","Directional":true,"Links":[{"SourceID":46671,"TargetID":10280,"Directional":true}]},{"ID":14287,"SourceStructureID":46679,"TargetStructureID":591,"Label":"46679-591 via Conventional from 46680 -> 10281","Type":"Conventional","Directional":true,"Links":[{"SourceID":46680,"TargetID":10281,"Directional":true}]},{"ID":14288,"SourceStructureID":46682,"TargetStructureID":591,"Label":"46682-591 via Conventional from 46683 -> 10282","Type":"Conventional","Directional":true,"Links":[{"SourceID":46683,"TargetID":10282,"Directional":true}]},{"ID":14289,"SourceStructureID":46682,"TargetStructureID":20537,"Label":"46682-20537 via Conventional from 106522 -> 24143","Type":"Conventional","Directional":true,"Links":[{"SourceID":106522,"TargetID":24143,"Directional":true}]},{"ID":14290,"SourceStructureID":46682,"TargetStructureID":93125,"Label":"46682-93125 via Conventional from 106515 -> 93142","Type":"Conventional","Directional":true,"Links":[{"SourceID":106515,"TargetID":93142,"Directional":true}]},{"ID":14291,"SourceStructureID":46693,"TargetStructureID":591,"Label":"46693-591 via Conventional from 46694 -> 10285","Type":"Conventional","Directional":true,"Links":[{"SourceID":46694,"TargetID":10285,"Directional":true}]},{"ID":14292,"SourceStructureID":46693,"TargetStructureID":106528,"Label":"46693-106528 via Conventional from 106527 -> 106529","Type":"Conventional","Directional":true,"Links":[{"SourceID":106527,"TargetID":106529,"Directional":true}]},{"ID":14293,"SourceStructureID":46741,"TargetStructureID":6128,"Label":"46741-6128 via Postsynapse from 137065 -> 137064","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":137065,"TargetID":137064,"Directional":true}]},{"ID":14294,"SourceStructureID":46797,"TargetStructureID":9769,"Label":"46797-9769 via Conventional from 46799 -> 46795, 46800 -> 46796","Type":"Conventional","Directional":true,"Links":[{"SourceID":46799,"TargetID":46795,"Directional":true},{"SourceID":46800,"TargetID":46796,"Directional":true}]},{"ID":14295,"SourceStructureID":46804,"TargetStructureID":9769,"Label":"46804-9769 via Conventional from 46805 -> 46803","Type":"Conventional","Directional":true,"Links":[{"SourceID":46805,"TargetID":46803,"Directional":true}]},{"ID":14296,"SourceStructureID":46807,"TargetStructureID":9769,"Label":"46807-9769 via Conventional from 46809 -> 46806","Type":"Conventional","Directional":true,"Links":[{"SourceID":46809,"TargetID":46806,"Directional":true}]},{"ID":14297,"SourceStructureID":46812,"TargetStructureID":9769,"Label":"46812-9769 via Conventional from 46813 -> 30067","Type":"Conventional","Directional":true,"Links":[{"SourceID":46813,"TargetID":30067,"Directional":true}]},{"ID":14298,"SourceStructureID":46817,"TargetStructureID":9769,"Label":"46817-9769 via Conventional from 46818 -> 23696, 46960 -> 23697","Type":"Conventional","Directional":true,"Links":[{"SourceID":46818,"TargetID":23696,"Directional":true},{"SourceID":46960,"TargetID":23697,"Directional":true}]},{"ID":14299,"SourceStructureID":46817,"TargetStructureID":20728,"Label":"46817-20728 via Conventional from 46819 -> 46820","Type":"Conventional","Directional":true,"Links":[{"SourceID":46819,"TargetID":46820,"Directional":true}]},{"ID":14300,"SourceStructureID":46842,"TargetStructureID":9769,"Label":"46842-9769 via Conventional from 46843 -> 46841","Type":"Conventional","Directional":true,"Links":[{"SourceID":46843,"TargetID":46841,"Directional":true}]},{"ID":14301,"SourceStructureID":46923,"TargetStructureID":9769,"Label":"46923-9769 via Conventional from 46924 -> 30066","Type":"Conventional","Directional":true,"Links":[{"SourceID":46924,"TargetID":30066,"Directional":true}]},{"ID":14302,"SourceStructureID":46931,"TargetStructureID":1620,"Label":"46931-1620 via Conventional from 46932 -> 1624","Type":"Conventional","Directional":true,"Links":[{"SourceID":46932,"TargetID":1624,"Directional":true}]},{"ID":14303,"SourceStructureID":46933,"TargetStructureID":1620,"Label":"46933-1620 via Conventional from 46934 -> 1630","Type":"Conventional","Directional":true,"Links":[{"SourceID":46934,"TargetID":1630,"Directional":true}]},{"ID":14304,"SourceStructureID":46933,"TargetStructureID":69537,"Label":"46933-69537 via Conventional from 93841 -> 69579","Type":"Conventional","Directional":true,"Links":[{"SourceID":93841,"TargetID":69579,"Directional":true}]},{"ID":14305,"SourceStructureID":46943,"TargetStructureID":46933,"Label":"46943-46933 via Ribbon Synapse from 46944 -> 46941, 46945 -> 46942","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":46944,"TargetID":46941,"Directional":true},{"SourceID":46945,"TargetID":46942,"Directional":true}]},{"ID":14306,"SourceStructureID":46955,"TargetStructureID":9769,"Label":"46955-9769 via Conventional from 46956 -> 23695","Type":"Conventional","Directional":true,"Links":[{"SourceID":46956,"TargetID":23695,"Directional":true}]},{"ID":14307,"SourceStructureID":46957,"TargetStructureID":9769,"Label":"46957-9769 via Conventional from 46958 -> 30068","Type":"Conventional","Directional":true,"Links":[{"SourceID":46958,"TargetID":30068,"Directional":true}]},{"ID":14308,"SourceStructureID":46962,"TargetStructureID":9769,"Label":"46962-9769 via Conventional from 46963 -> 46961","Type":"Conventional","Directional":true,"Links":[{"SourceID":46963,"TargetID":46961,"Directional":true}]},{"ID":14309,"SourceStructureID":46975,"TargetStructureID":9769,"Label":"46975-9769 via Conventional from 46976 -> 12339","Type":"Conventional","Directional":true,"Links":[{"SourceID":46976,"TargetID":12339,"Directional":true}]},{"ID":14310,"SourceStructureID":46979,"TargetStructureID":9769,"Label":"46979-9769 via Conventional from 46980 -> 45324","Type":"Conventional","Directional":true,"Links":[{"SourceID":46980,"TargetID":45324,"Directional":true}]},{"ID":14311,"SourceStructureID":46979,"TargetStructureID":62500,"Label":"46979-62500 via Conventional from 46981 -> 62521","Type":"Conventional","Directional":true,"Links":[{"SourceID":46981,"TargetID":62521,"Directional":true}]},{"ID":14312,"SourceStructureID":46982,"TargetStructureID":9769,"Label":"46982-9769 via Conventional from 46983 -> 12328","Type":"Conventional","Directional":true,"Links":[{"SourceID":46983,"TargetID":12328,"Directional":true}]},{"ID":14313,"SourceStructureID":46984,"TargetStructureID":9769,"Label":"46984-9769 via Conventional from 46985 -> 30071","Type":"Conventional","Directional":true,"Links":[{"SourceID":46985,"TargetID":30071,"Directional":true}]},{"ID":14314,"SourceStructureID":46988,"TargetStructureID":9769,"Label":"46988-9769 via Conventional from 46989 -> 30070","Type":"Conventional","Directional":true,"Links":[{"SourceID":46989,"TargetID":30070,"Directional":true}]},{"ID":14315,"SourceStructureID":46994,"TargetStructureID":9769,"Label":"46994-9769 via Conventional from 46995 -> 30069","Type":"Conventional","Directional":true,"Links":[{"SourceID":46995,"TargetID":30069,"Directional":true}]},{"ID":14316,"SourceStructureID":46998,"TargetStructureID":9769,"Label":"46998-9769 via Conventional from 46999 -> 12354","Type":"Conventional","Directional":true,"Links":[{"SourceID":46999,"TargetID":12354,"Directional":true}]},{"ID":14317,"SourceStructureID":47002,"TargetStructureID":46998,"Label":"47002-46998 via Conventional from 47003 -> 47000","Type":"Conventional","Directional":true,"Links":[{"SourceID":47003,"TargetID":47000,"Directional":true}]},{"ID":14318,"SourceStructureID":47004,"TargetStructureID":9769,"Label":"47004-9769 via Conventional from 47005 -> 12355","Type":"Conventional","Directional":true,"Links":[{"SourceID":47005,"TargetID":12355,"Directional":true}]},{"ID":14319,"SourceStructureID":47007,"TargetStructureID":47004,"Label":"47007-47004 via Conventional from 47008 -> 47006","Type":"Conventional","Directional":true,"Links":[{"SourceID":47008,"TargetID":47006,"Directional":true}]},{"ID":14320,"SourceStructureID":47010,"TargetStructureID":9769,"Label":"47010-9769 via Conventional from 47011 -> 47009","Type":"Conventional","Directional":true,"Links":[{"SourceID":47011,"TargetID":47009,"Directional":true}]},{"ID":14321,"SourceStructureID":47010,"TargetStructureID":47013,"Label":"47010-47013 via Conventional from 47012 -> 47016","Type":"Conventional","Directional":true,"Links":[{"SourceID":47012,"TargetID":47016,"Directional":true}]},{"ID":14322,"SourceStructureID":47104,"TargetStructureID":142,"Label":"47104-142 via Conventional from 47137 -> 47141, 47149 -> 47150, 47151 -> 47152","Type":"Conventional","Directional":true,"Links":[{"SourceID":47137,"TargetID":47141,"Directional":true},{"SourceID":47149,"TargetID":47150,"Directional":true},{"SourceID":47151,"TargetID":47152,"Directional":true}]},{"ID":14323,"SourceStructureID":47104,"TargetStructureID":299,"Label":"47104-299 via Conventional from 47106 -> 47107","Type":"Conventional","Directional":true,"Links":[{"SourceID":47106,"TargetID":47107,"Directional":true}]},{"ID":14324,"SourceStructureID":47104,"TargetStructureID":307,"Label":"47104-307 via Conventional from 47122 -> 16781","Type":"Conventional","Directional":true,"Links":[{"SourceID":47122,"TargetID":16781,"Directional":true}]},{"ID":14325,"SourceStructureID":47104,"TargetStructureID":408,"Label":"47104-408 via Conventional from 47117 -> 47118","Type":"Conventional","Directional":true,"Links":[{"SourceID":47117,"TargetID":47118,"Directional":true}]},{"ID":14326,"SourceStructureID":47104,"TargetStructureID":485,"Label":"47104-485 via Conventional from 47123 -> 47124","Type":"Conventional","Directional":true,"Links":[{"SourceID":47123,"TargetID":47124,"Directional":true}]},{"ID":14327,"SourceStructureID":47104,"TargetStructureID":1724,"Label":"47104-1724 via Conventional from 47131 -> 3992, 47133 -> 1775","Type":"Conventional","Directional":true,"Links":[{"SourceID":47131,"TargetID":3992,"Directional":true},{"SourceID":47133,"TargetID":1775,"Directional":true}]},{"ID":14328,"SourceStructureID":47104,"TargetStructureID":5279,"Label":"47104-5279 via Conventional from 47136 -> 11481, 47145 -> 47144, 147284 -> 147283","Type":"Conventional","Directional":true,"Links":[{"SourceID":47136,"TargetID":11481,"Directional":true},{"SourceID":47145,"TargetID":47144,"Directional":true},{"SourceID":147284,"TargetID":147283,"Directional":true}]},{"ID":14329,"SourceStructureID":47104,"TargetStructureID":5601,"Label":"47104-5601 via Conventional from 47175 -> 47174","Type":"Conventional","Directional":true,"Links":[{"SourceID":47175,"TargetID":47174,"Directional":true}]},{"ID":14330,"SourceStructureID":47104,"TargetStructureID":6047,"Label":"47104-6047 via Conventional from 47184 -> 30636, 47187 -> 30633, 47188 -> 30631, 47189 -> 47190","Type":"Conventional","Directional":true,"Links":[{"SourceID":47184,"TargetID":30636,"Directional":true},{"SourceID":47187,"TargetID":30633,"Directional":true},{"SourceID":47188,"TargetID":30631,"Directional":true},{"SourceID":47189,"TargetID":47190,"Directional":true}]},{"ID":14331,"SourceStructureID":47104,"TargetStructureID":6050,"Label":"47104-6050 via Conventional from 47153 -> 47154, 47156 -> 30952, 47168 -> 30623, 47170 -> 30625","Type":"Conventional","Directional":true,"Links":[{"SourceID":47153,"TargetID":47154,"Directional":true},{"SourceID":47156,"TargetID":30952,"Directional":true},{"SourceID":47168,"TargetID":30623,"Directional":true},{"SourceID":47170,"TargetID":30625,"Directional":true}]},{"ID":14332,"SourceStructureID":47104,"TargetStructureID":6155,"Label":"47104-6155 via Conventional from 47127 -> 15512, 107745 -> 107746, 108267 -> 49082","Type":"Conventional","Directional":true,"Links":[{"SourceID":47127,"TargetID":15512,"Directional":true},{"SourceID":107745,"TargetID":107746,"Directional":true},{"SourceID":108267,"TargetID":49082,"Directional":true}]},{"ID":14333,"SourceStructureID":47104,"TargetStructureID":11033,"Label":"47104-11033 via Conventional from 47171 -> 47172","Type":"Conventional","Directional":true,"Links":[{"SourceID":47171,"TargetID":47172,"Directional":true}]},{"ID":14334,"SourceStructureID":47104,"TargetStructureID":35894,"Label":"47104-35894 via Conventional from 47121 -> 35896","Type":"Conventional","Directional":true,"Links":[{"SourceID":47121,"TargetID":35896,"Directional":true}]},{"ID":14335,"SourceStructureID":47104,"TargetStructureID":85002,"Label":"47104-85002 via Conventional from 126303 -> 126302","Type":"Conventional","Directional":true,"Links":[{"SourceID":126303,"TargetID":126302,"Directional":true}]},{"ID":14336,"SourceStructureID":47109,"TargetStructureID":299,"Label":"47109-299 via Conventional from 47112 -> 47113","Type":"Conventional","Directional":true,"Links":[{"SourceID":47112,"TargetID":47113,"Directional":true}]},{"ID":14337,"SourceStructureID":47109,"TargetStructureID":47104,"Label":"47109-47104 via Conventional from 47110 -> 47108","Type":"Conventional","Directional":true,"Links":[{"SourceID":47110,"TargetID":47108,"Directional":true}]},{"ID":14338,"SourceStructureID":47195,"TargetStructureID":61270,"Label":"47195-61270 via Ribbon Synapse from 61311 -> 61310","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61311,"TargetID":61310,"Directional":true}]},{"ID":14339,"SourceStructureID":47204,"TargetStructureID":223,"Label":"47204-223 via Conventional from 47205 -> 47203","Type":"Conventional","Directional":true,"Links":[{"SourceID":47205,"TargetID":47203,"Directional":true}]},{"ID":14340,"SourceStructureID":47445,"TargetStructureID":606,"Label":"47445-606 via Ribbon Synapse from 47446 -> 47447, 47455 -> 47456, 47458 -> 47460, 47459 -> 47461","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47446,"TargetID":47447,"Directional":true},{"SourceID":47455,"TargetID":47456,"Directional":true},{"SourceID":47458,"TargetID":47460,"Directional":true},{"SourceID":47459,"TargetID":47461,"Directional":true}]},{"ID":14341,"SourceStructureID":47445,"TargetStructureID":7594,"Label":"47445-7594 via Ribbon Synapse from 47455 -> 47457","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":47455,"TargetID":47457,"Directional":true}]},{"ID":14342,"SourceStructureID":47445,"TargetStructureID":55232,"Label":"47445-55232 via Ribbon Synapse from 118182 -> 55396","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":118182,"TargetID":55396,"Directional":true}]},{"ID":14343,"SourceStructureID":47445,"TargetStructureID":87413,"Label":"47445-87413 via Ribbon Synapse from 87415 -> 87414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87415,"TargetID":87414,"Directional":true}]},{"ID":14344,"SourceStructureID":47593,"TargetStructureID":606,"Label":"47593-606 via Conventional from 47594 -> 47595","Type":"Conventional","Directional":true,"Links":[{"SourceID":47594,"TargetID":47595,"Directional":true}]},{"ID":14345,"SourceStructureID":47833,"TargetStructureID":606,"Label":"47833-606 via Conventional from 47834 -> 47832","Type":"Conventional","Directional":true,"Links":[{"SourceID":47834,"TargetID":47832,"Directional":true}]},{"ID":14346,"SourceStructureID":48455,"TargetStructureID":121946,"Label":"48455-121946 via Conventional from 48459 -> 121950","Type":"Conventional","Directional":true,"Links":[{"SourceID":48459,"TargetID":121950,"Directional":true}]},{"ID":14347,"SourceStructureID":48516,"TargetStructureID":606,"Label":"48516-606 via Ribbon Synapse from 48518 -> 48520, 48519 -> 48521, 51642 -> 51643, 51669 -> 51670, 51688 -> 51689, 51695 -> 51696","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":48518,"TargetID":48520,"Directional":true},{"SourceID":48519,"TargetID":48521,"Directional":true},{"SourceID":51642,"TargetID":51643,"Directional":true},{"SourceID":51669,"TargetID":51670,"Directional":true},{"SourceID":51688,"TargetID":51689,"Directional":true},{"SourceID":51695,"TargetID":51696,"Directional":true}]},{"ID":14348,"SourceStructureID":48516,"TargetStructureID":89577,"Label":"48516-89577 via BC Conventional Synapse from 48559 -> 89579","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":48559,"TargetID":89579,"Directional":true}]},{"ID":14349,"SourceStructureID":48573,"TargetStructureID":909,"Label":"48573-909 via Conventional from 48608 -> 45934","Type":"Conventional","Directional":true,"Links":[{"SourceID":48608,"TargetID":45934,"Directional":true}]},{"ID":14350,"SourceStructureID":48573,"TargetStructureID":1724,"Label":"48573-1724 via Conventional from 99533 -> 4058","Type":"Conventional","Directional":true,"Links":[{"SourceID":99533,"TargetID":4058,"Directional":true}]},{"ID":14351,"SourceStructureID":48573,"TargetStructureID":5561,"Label":"48573-5561 via Conventional from 48600 -> 46304, 48607 -> 46296","Type":"Conventional","Directional":true,"Links":[{"SourceID":48600,"TargetID":46304,"Directional":true},{"SourceID":48607,"TargetID":46296,"Directional":true}]},{"ID":14352,"SourceStructureID":48573,"TargetStructureID":7024,"Label":"48573-7024 via Conventional from 48610 -> 48609","Type":"Conventional","Directional":true,"Links":[{"SourceID":48610,"TargetID":48609,"Directional":true}]},{"ID":14353,"SourceStructureID":48612,"TargetStructureID":372,"Label":"48612-372 via Conventional from 48623 -> 30786, 48627 -> 46917","Type":"Conventional","Directional":true,"Links":[{"SourceID":48623,"TargetID":30786,"Directional":true},{"SourceID":48627,"TargetID":46917,"Directional":true}]},{"ID":14354,"SourceStructureID":48612,"TargetStructureID":1724,"Label":"48612-1724 via Conventional from 48616 -> 1810","Type":"Conventional","Directional":true,"Links":[{"SourceID":48616,"TargetID":1810,"Directional":true}]},{"ID":14355,"SourceStructureID":48612,"TargetStructureID":6155,"Label":"48612-6155 via Conventional from 48618 -> 16136, 104903 -> 104902","Type":"Conventional","Directional":true,"Links":[{"SourceID":48618,"TargetID":16136,"Directional":true},{"SourceID":104903,"TargetID":104902,"Directional":true}]},{"ID":14356,"SourceStructureID":48612,"TargetStructureID":23512,"Label":"48612-23512 via Conventional from 48615 -> 23545","Type":"Conventional","Directional":true,"Links":[{"SourceID":48615,"TargetID":23545,"Directional":true}]},{"ID":14357,"SourceStructureID":48612,"TargetStructureID":48612,"Label":"48612-48612 via Conventional from 48619 -> 48620","Type":"Conventional","Directional":true,"Links":[{"SourceID":48619,"TargetID":48620,"Directional":true}]},{"ID":14358,"SourceStructureID":49186,"TargetStructureID":49185,"Label":"49186-49185 via Ribbon Synapse from 49187 -> 49188","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49187,"TargetID":49188,"Directional":true}]},{"ID":14359,"SourceStructureID":49487,"TargetStructureID":518,"Label":"49487-518 via Conventional from 49488 -> 49486","Type":"Conventional","Directional":true,"Links":[{"SourceID":49488,"TargetID":49486,"Directional":true}]},{"ID":14360,"SourceStructureID":49489,"TargetStructureID":483,"Label":"49489-483 via Conventional from 116702 -> 6783","Type":"Conventional","Directional":true,"Links":[{"SourceID":116702,"TargetID":6783,"Directional":true}]},{"ID":14361,"SourceStructureID":49489,"TargetStructureID":485,"Label":"49489-485 via Conventional from 49520 -> 47626, 49522 -> 148422, 49523 -> 49527, 49528 -> 49530","Type":"Conventional","Directional":true,"Links":[{"SourceID":49520,"TargetID":47626,"Directional":true},{"SourceID":49522,"TargetID":148422,"Directional":true},{"SourceID":49523,"TargetID":49527,"Directional":true},{"SourceID":49528,"TargetID":49530,"Directional":true}]},{"ID":14362,"SourceStructureID":49489,"TargetStructureID":593,"Label":"49489-593 via Conventional from 49596 -> 49599, 61950 -> 61949","Type":"Conventional","Directional":true,"Links":[{"SourceID":49596,"TargetID":49599,"Directional":true},{"SourceID":61950,"TargetID":61949,"Directional":true}]},{"ID":14363,"SourceStructureID":49489,"TargetStructureID":70095,"Label":"49489-70095 via Conventional from 49533 -> 70096","Type":"Conventional","Directional":true,"Links":[{"SourceID":49533,"TargetID":70096,"Directional":true}]},{"ID":14364,"SourceStructureID":49554,"TargetStructureID":606,"Label":"49554-606 via Ribbon Synapse from 49555 -> 5079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":49555,"TargetID":5079,"Directional":true}]},{"ID":14365,"SourceStructureID":49600,"TargetStructureID":517,"Label":"49600-517 via Conventional from 49602 -> 16440","Type":"Conventional","Directional":true,"Links":[{"SourceID":49602,"TargetID":16440,"Directional":true}]},{"ID":14366,"SourceStructureID":49600,"TargetStructureID":6156,"Label":"49600-6156 via Conventional from 49603 -> 23263","Type":"Conventional","Directional":true,"Links":[{"SourceID":49603,"TargetID":23263,"Directional":true}]},{"ID":14367,"SourceStructureID":49600,"TargetStructureID":49489,"Label":"49600-49489 via Conventional from 49601 -> 49595","Type":"Conventional","Directional":true,"Links":[{"SourceID":49601,"TargetID":49595,"Directional":true}]},{"ID":14368,"SourceStructureID":50449,"TargetStructureID":4890,"Label":"50449-4890 via Ribbon Synapse from 50652 -> 64878","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50652,"TargetID":64878,"Directional":true}]},{"ID":14369,"SourceStructureID":50449,"TargetStructureID":62190,"Label":"50449-62190 via Ribbon Synapse from 50559 -> 62192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":50559,"TargetID":62192,"Directional":true}]},{"ID":14370,"SourceStructureID":51617,"TargetStructureID":142,"Label":"51617-142 via Conventional from 82436 -> 126007","Type":"Conventional","Directional":true,"Links":[{"SourceID":82436,"TargetID":126007,"Directional":true}]},{"ID":14371,"SourceStructureID":51617,"TargetStructureID":168,"Label":"51617-168 via Conventional from 115460 -> 4322, 115461 -> 4265, 115467 -> 4296, 115469 -> 92777","Type":"Conventional","Directional":true,"Links":[{"SourceID":115460,"TargetID":4322,"Directional":true},{"SourceID":115461,"TargetID":4265,"Directional":true},{"SourceID":115467,"TargetID":4296,"Directional":true},{"SourceID":115469,"TargetID":92777,"Directional":true}]},{"ID":14372,"SourceStructureID":51617,"TargetStructureID":170,"Label":"51617-170 via Conventional from 89853 -> 89854","Type":"Conventional","Directional":true,"Links":[{"SourceID":89853,"TargetID":89854,"Directional":true}]},{"ID":14373,"SourceStructureID":51667,"TargetStructureID":6050,"Label":"51667-6050 via Conventional from 127223 -> 127224","Type":"Conventional","Directional":true,"Links":[{"SourceID":127223,"TargetID":127224,"Directional":true}]},{"ID":14374,"SourceStructureID":51700,"TargetStructureID":5513,"Label":"51700-5513 via Conventional from 51701 -> 29626","Type":"Conventional","Directional":true,"Links":[{"SourceID":51701,"TargetID":29626,"Directional":true}]},{"ID":14375,"SourceStructureID":51711,"TargetStructureID":606,"Label":"51711-606 via Ribbon Synapse from 51712 -> 51713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51712,"TargetID":51713,"Directional":true}]},{"ID":14376,"SourceStructureID":51715,"TargetStructureID":606,"Label":"51715-606 via Ribbon Synapse from 51716 -> 51717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":51716,"TargetID":51717,"Directional":true}]},{"ID":14377,"SourceStructureID":51715,"TargetStructureID":5117,"Label":"51715-5117 via Ribbon Synapse from 52079 -> 28827","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52079,"TargetID":28827,"Directional":true}]},{"ID":14378,"SourceStructureID":51808,"TargetStructureID":21299,"Label":"51808-21299 via Conventional from 51810 -> 48985","Type":"Conventional","Directional":true,"Links":[{"SourceID":51810,"TargetID":48985,"Directional":true}]},{"ID":14379,"SourceStructureID":51808,"TargetStructureID":51812,"Label":"51808-51812 via Conventional from 51811 -> 51814","Type":"Conventional","Directional":true,"Links":[{"SourceID":51811,"TargetID":51814,"Directional":true}]},{"ID":14380,"SourceStructureID":51812,"TargetStructureID":170,"Label":"51812-170 via Conventional from 88545 -> 88543","Type":"Conventional","Directional":true,"Links":[{"SourceID":88545,"TargetID":88543,"Directional":true}]},{"ID":14381,"SourceStructureID":51812,"TargetStructureID":88666,"Label":"51812-88666 via Conventional from 82454 -> 88719","Type":"Conventional","Directional":true,"Links":[{"SourceID":82454,"TargetID":88719,"Directional":true}]},{"ID":14382,"SourceStructureID":51923,"TargetStructureID":89670,"Label":"51923-89670 via Conventional from 51930 -> 89675","Type":"Conventional","Directional":true,"Links":[{"SourceID":51930,"TargetID":89675,"Directional":true}]},{"ID":14383,"SourceStructureID":52147,"TargetStructureID":5118,"Label":"52147-5118 via Conventional from 52148 -> 6526","Type":"Conventional","Directional":true,"Links":[{"SourceID":52148,"TargetID":6526,"Directional":true}]},{"ID":14384,"SourceStructureID":52152,"TargetStructureID":7861,"Label":"52152-7861 via Ribbon Synapse from 52155 -> 29644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52155,"TargetID":29644,"Directional":true}]},{"ID":14385,"SourceStructureID":52247,"TargetStructureID":597,"Label":"52247-597 via Ribbon Synapse from 60468 -> 60469","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60468,"TargetID":60469,"Directional":true}]},{"ID":14386,"SourceStructureID":52247,"TargetStructureID":6857,"Label":"52247-6857 via Ribbon Synapse from 52248 -> 35033, 52251 -> 7533, 52252 -> 52246","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52248,"TargetID":35033,"Directional":true},{"SourceID":52251,"TargetID":7533,"Directional":true},{"SourceID":52252,"TargetID":52246,"Directional":true}]},{"ID":14387,"SourceStructureID":52257,"TargetStructureID":8032,"Label":"52257-8032 via Ribbon Synapse from 52318 -> 52319, 52323 -> 26677","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52318,"TargetID":52319,"Directional":true},{"SourceID":52323,"TargetID":26677,"Directional":true}]},{"ID":14388,"SourceStructureID":52257,"TargetStructureID":9769,"Label":"52257-9769 via Ribbon Synapse from 52327 -> 30172","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":52327,"TargetID":30172,"Directional":true}]},{"ID":14389,"SourceStructureID":52257,"TargetStructureID":119241,"Label":"52257-119241 via Ribbon Synapse from 119246 -> 119247","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119246,"TargetID":119247,"Directional":true}]},{"ID":14390,"SourceStructureID":52262,"TargetStructureID":6118,"Label":"52262-6118 via Conventional from 52270 -> 52271","Type":"Conventional","Directional":true,"Links":[{"SourceID":52270,"TargetID":52271,"Directional":true}]},{"ID":14391,"SourceStructureID":52262,"TargetStructureID":6146,"Label":"52262-6146 via Conventional from 52264 -> 52265","Type":"Conventional","Directional":true,"Links":[{"SourceID":52264,"TargetID":52265,"Directional":true}]},{"ID":14392,"SourceStructureID":52262,"TargetStructureID":6158,"Label":"52262-6158 via Conventional from 52286 -> 52287","Type":"Conventional","Directional":true,"Links":[{"SourceID":52286,"TargetID":52287,"Directional":true}]},{"ID":14393,"SourceStructureID":52262,"TargetStructureID":52257,"Label":"52262-52257 via Conventional from 52263 -> 52261","Type":"Conventional","Directional":true,"Links":[{"SourceID":52263,"TargetID":52261,"Directional":true}]},{"ID":14394,"SourceStructureID":52410,"TargetStructureID":5503,"Label":"52410-5503 via Conventional from 52436 -> 52440","Type":"Conventional","Directional":true,"Links":[{"SourceID":52436,"TargetID":52440,"Directional":true}]},{"ID":14395,"SourceStructureID":52410,"TargetStructureID":6118,"Label":"52410-6118 via Conventional from 52434 -> 65853","Type":"Conventional","Directional":true,"Links":[{"SourceID":52434,"TargetID":65853,"Directional":true}]},{"ID":14396,"SourceStructureID":52410,"TargetStructureID":6120,"Label":"52410-6120 via Conventional from 52412 -> 52413, 52415 -> 37242, 52417 -> 52418, 52423 -> 52424, 52429 -> 52430","Type":"Conventional","Directional":true,"Links":[{"SourceID":52412,"TargetID":52413,"Directional":true},{"SourceID":52415,"TargetID":37242,"Directional":true},{"SourceID":52417,"TargetID":52418,"Directional":true},{"SourceID":52423,"TargetID":52424,"Directional":true},{"SourceID":52429,"TargetID":52430,"Directional":true}]},{"ID":14397,"SourceStructureID":52410,"TargetStructureID":6141,"Label":"52410-6141 via Conventional from 52422 -> 6472","Type":"Conventional","Directional":true,"Links":[{"SourceID":52422,"TargetID":6472,"Directional":true}]},{"ID":14398,"SourceStructureID":52410,"TargetStructureID":8040,"Label":"52410-8040 via Conventional from 52561 -> 48631","Type":"Conventional","Directional":true,"Links":[{"SourceID":52561,"TargetID":48631,"Directional":true}]},{"ID":14399,"SourceStructureID":52929,"TargetStructureID":9769,"Label":"52929-9769 via Conventional from 52930 -> 52926","Type":"Conventional","Directional":true,"Links":[{"SourceID":52930,"TargetID":52926,"Directional":true}]},{"ID":14400,"SourceStructureID":52932,"TargetStructureID":9769,"Label":"52932-9769 via Conventional from 52933 -> 52928","Type":"Conventional","Directional":true,"Links":[{"SourceID":52933,"TargetID":52928,"Directional":true}]},{"ID":14401,"SourceStructureID":52955,"TargetStructureID":9769,"Label":"52955-9769 via Conventional from 52956 -> 52957","Type":"Conventional","Directional":true,"Links":[{"SourceID":52956,"TargetID":52957,"Directional":true}]},{"ID":14402,"SourceStructureID":52960,"TargetStructureID":9769,"Label":"52960-9769 via Conventional from 52962 -> 52959","Type":"Conventional","Directional":true,"Links":[{"SourceID":52962,"TargetID":52959,"Directional":true}]},{"ID":14403,"SourceStructureID":52991,"TargetStructureID":9769,"Label":"52991-9769 via Conventional from 52992 -> 52990","Type":"Conventional","Directional":true,"Links":[{"SourceID":52992,"TargetID":52990,"Directional":true}]},{"ID":14404,"SourceStructureID":53000,"TargetStructureID":5598,"Label":"53000-5598 via Conventional from 53123 -> 53124","Type":"Conventional","Directional":true,"Links":[{"SourceID":53123,"TargetID":53124,"Directional":true}]},{"ID":14405,"SourceStructureID":53127,"TargetStructureID":5107,"Label":"53127-5107 via Conventional from 53128 -> 53132","Type":"Conventional","Directional":true,"Links":[{"SourceID":53128,"TargetID":53132,"Directional":true}]},{"ID":14406,"SourceStructureID":53127,"TargetStructureID":9769,"Label":"53127-9769 via Conventional from 53130 -> 29959","Type":"Conventional","Directional":true,"Links":[{"SourceID":53130,"TargetID":29959,"Directional":true}]},{"ID":14407,"SourceStructureID":53166,"TargetStructureID":9769,"Label":"53166-9769 via Conventional from 53167 -> 29956","Type":"Conventional","Directional":true,"Links":[{"SourceID":53167,"TargetID":29956,"Directional":true}]},{"ID":14408,"SourceStructureID":53169,"TargetStructureID":9769,"Label":"53169-9769 via Conventional from 53170 -> 29953, 53175 -> 29952","Type":"Conventional","Directional":true,"Links":[{"SourceID":53170,"TargetID":29953,"Directional":true},{"SourceID":53175,"TargetID":29952,"Directional":true}]},{"ID":14409,"SourceStructureID":53173,"TargetStructureID":9769,"Label":"53173-9769 via Conventional from 53174 -> 29940","Type":"Conventional","Directional":true,"Links":[{"SourceID":53174,"TargetID":29940,"Directional":true}]},{"ID":14410,"SourceStructureID":53178,"TargetStructureID":9769,"Label":"53178-9769 via Conventional from 53179 -> 45191","Type":"Conventional","Directional":true,"Links":[{"SourceID":53179,"TargetID":45191,"Directional":true}]},{"ID":14411,"SourceStructureID":53180,"TargetStructureID":9769,"Label":"53180-9769 via Conventional from 53181 -> 29939","Type":"Conventional","Directional":true,"Links":[{"SourceID":53181,"TargetID":29939,"Directional":true}]},{"ID":14412,"SourceStructureID":53182,"TargetStructureID":1021,"Label":"53182-1021 via Conventional from 53184 -> 53185","Type":"Conventional","Directional":true,"Links":[{"SourceID":53184,"TargetID":53185,"Directional":true}]},{"ID":14413,"SourceStructureID":53182,"TargetStructureID":3756,"Label":"53182-3756 via Conventional from 116088 -> 116089","Type":"Conventional","Directional":true,"Links":[{"SourceID":116088,"TargetID":116089,"Directional":true}]},{"ID":14414,"SourceStructureID":53182,"TargetStructureID":5650,"Label":"53182-5650 via Conventional from 105159 -> 105160","Type":"Conventional","Directional":true,"Links":[{"SourceID":105159,"TargetID":105160,"Directional":true}]},{"ID":14415,"SourceStructureID":53186,"TargetStructureID":9769,"Label":"53186-9769 via Conventional from 53187 -> 29934","Type":"Conventional","Directional":true,"Links":[{"SourceID":53187,"TargetID":29934,"Directional":true}]},{"ID":14416,"SourceStructureID":53195,"TargetStructureID":9769,"Label":"53195-9769 via Conventional from 53198 -> 20261","Type":"Conventional","Directional":true,"Links":[{"SourceID":53198,"TargetID":20261,"Directional":true}]},{"ID":14417,"SourceStructureID":53202,"TargetStructureID":32892,"Label":"53202-32892 via Conventional from 53210 -> 53211","Type":"Conventional","Directional":true,"Links":[{"SourceID":53210,"TargetID":53211,"Directional":true}]},{"ID":14418,"SourceStructureID":53224,"TargetStructureID":5562,"Label":"53224-5562 via Conventional from 77548 -> 77547","Type":"Conventional","Directional":true,"Links":[{"SourceID":77548,"TargetID":77547,"Directional":true}]},{"ID":14419,"SourceStructureID":53232,"TargetStructureID":5561,"Label":"53232-5561 via Conventional from 53233 -> 119284","Type":"Conventional","Directional":true,"Links":[{"SourceID":53233,"TargetID":119284,"Directional":true}]},{"ID":14420,"SourceStructureID":53235,"TargetStructureID":9769,"Label":"53235-9769 via Conventional from 53236 -> 20255","Type":"Conventional","Directional":true,"Links":[{"SourceID":53236,"TargetID":20255,"Directional":true}]},{"ID":14421,"SourceStructureID":53241,"TargetStructureID":9769,"Label":"53241-9769 via Conventional from 53242 -> 20251","Type":"Conventional","Directional":true,"Links":[{"SourceID":53242,"TargetID":20251,"Directional":true}]},{"ID":14422,"SourceStructureID":53243,"TargetStructureID":9769,"Label":"53243-9769 via Conventional from 53244 -> 20250","Type":"Conventional","Directional":true,"Links":[{"SourceID":53244,"TargetID":20250,"Directional":true}]},{"ID":14423,"SourceStructureID":53245,"TargetStructureID":7024,"Label":"53245-7024 via Conventional from 53249 -> 20247","Type":"Conventional","Directional":true,"Links":[{"SourceID":53249,"TargetID":20247,"Directional":true}]},{"ID":14424,"SourceStructureID":53250,"TargetStructureID":9769,"Label":"53250-9769 via Conventional from 53251 -> 20236","Type":"Conventional","Directional":true,"Links":[{"SourceID":53251,"TargetID":20236,"Directional":true}]},{"ID":14425,"SourceStructureID":53252,"TargetStructureID":9769,"Label":"53252-9769 via Conventional from 53256 -> 20233","Type":"Conventional","Directional":true,"Links":[{"SourceID":53256,"TargetID":20233,"Directional":true}]},{"ID":14426,"SourceStructureID":53257,"TargetStructureID":9769,"Label":"53257-9769 via Conventional from 53258 -> 20226","Type":"Conventional","Directional":true,"Links":[{"SourceID":53258,"TargetID":20226,"Directional":true}]},{"ID":14427,"SourceStructureID":53259,"TargetStructureID":9769,"Label":"53259-9769 via Conventional from 53260 -> 20225","Type":"Conventional","Directional":true,"Links":[{"SourceID":53260,"TargetID":20225,"Directional":true}]},{"ID":14428,"SourceStructureID":53263,"TargetStructureID":9769,"Label":"53263-9769 via Conventional from 53265 -> 20227","Type":"Conventional","Directional":true,"Links":[{"SourceID":53265,"TargetID":20227,"Directional":true}]},{"ID":14429,"SourceStructureID":53324,"TargetStructureID":9769,"Label":"53324-9769 via Conventional from 53326 -> 53328","Type":"Conventional","Directional":true,"Links":[{"SourceID":53326,"TargetID":53328,"Directional":true}]},{"ID":14430,"SourceStructureID":53330,"TargetStructureID":9769,"Label":"53330-9769 via Conventional from 53331 -> 53329","Type":"Conventional","Directional":true,"Links":[{"SourceID":53331,"TargetID":53329,"Directional":true}]},{"ID":14431,"SourceStructureID":53335,"TargetStructureID":9769,"Label":"53335-9769 via Conventional from 53336 -> 53337","Type":"Conventional","Directional":true,"Links":[{"SourceID":53336,"TargetID":53337,"Directional":true}]},{"ID":14432,"SourceStructureID":53344,"TargetStructureID":5345,"Label":"53344-5345 via Conventional from 53350 -> 53349","Type":"Conventional","Directional":true,"Links":[{"SourceID":53350,"TargetID":53349,"Directional":true}]},{"ID":14433,"SourceStructureID":53344,"TargetStructureID":5517,"Label":"53344-5517 via Conventional from 53351 -> 53352","Type":"Conventional","Directional":true,"Links":[{"SourceID":53351,"TargetID":53352,"Directional":true}]},{"ID":14434,"SourceStructureID":53344,"TargetStructureID":53335,"Label":"53344-53335 via Conventional from 53353 -> 53338","Type":"Conventional","Directional":true,"Links":[{"SourceID":53353,"TargetID":53338,"Directional":true}]},{"ID":14435,"SourceStructureID":53355,"TargetStructureID":9769,"Label":"53355-9769 via Conventional from 53356 -> 20304","Type":"Conventional","Directional":true,"Links":[{"SourceID":53356,"TargetID":20304,"Directional":true}]},{"ID":14436,"SourceStructureID":53374,"TargetStructureID":598,"Label":"53374-598 via Conventional from 53378 -> 38534","Type":"Conventional","Directional":true,"Links":[{"SourceID":53378,"TargetID":38534,"Directional":true}]},{"ID":14437,"SourceStructureID":53374,"TargetStructureID":9769,"Label":"53374-9769 via Conventional from 53375 -> 11258","Type":"Conventional","Directional":true,"Links":[{"SourceID":53375,"TargetID":11258,"Directional":true}]},{"ID":14438,"SourceStructureID":53393,"TargetStructureID":9769,"Label":"53393-9769 via Conventional from 53394 -> 53392","Type":"Conventional","Directional":true,"Links":[{"SourceID":53394,"TargetID":53392,"Directional":true}]},{"ID":14439,"SourceStructureID":53395,"TargetStructureID":9769,"Label":"53395-9769 via Conventional from 53396 -> 11254","Type":"Conventional","Directional":true,"Links":[{"SourceID":53396,"TargetID":11254,"Directional":true}]},{"ID":14440,"SourceStructureID":53403,"TargetStructureID":9769,"Label":"53403-9769 via Conventional from 53404 -> 45116","Type":"Conventional","Directional":true,"Links":[{"SourceID":53404,"TargetID":45116,"Directional":true}]},{"ID":14441,"SourceStructureID":53407,"TargetStructureID":909,"Label":"53407-909 via Conventional from 117271 -> 117268","Type":"Conventional","Directional":true,"Links":[{"SourceID":117271,"TargetID":117268,"Directional":true}]},{"ID":14442,"SourceStructureID":53407,"TargetStructureID":5650,"Label":"53407-5650 via Conventional from 53411 -> 50554","Type":"Conventional","Directional":true,"Links":[{"SourceID":53411,"TargetID":50554,"Directional":true}]},{"ID":14443,"SourceStructureID":53416,"TargetStructureID":5292,"Label":"53416-5292 via Conventional from 53418 -> 49832","Type":"Conventional","Directional":true,"Links":[{"SourceID":53418,"TargetID":49832,"Directional":true}]},{"ID":14444,"SourceStructureID":53421,"TargetStructureID":5284,"Label":"53421-5284 via Conventional from 53426 -> 113596","Type":"Conventional","Directional":true,"Links":[{"SourceID":53426,"TargetID":113596,"Directional":true}]},{"ID":14445,"SourceStructureID":53421,"TargetStructureID":9769,"Label":"53421-9769 via Conventional from 53422 -> 30124","Type":"Conventional","Directional":true,"Links":[{"SourceID":53422,"TargetID":30124,"Directional":true}]},{"ID":14446,"SourceStructureID":53439,"TargetStructureID":9769,"Label":"53439-9769 via Conventional from 53440 -> 30141","Type":"Conventional","Directional":true,"Links":[{"SourceID":53440,"TargetID":30141,"Directional":true}]},{"ID":14447,"SourceStructureID":53441,"TargetStructureID":9769,"Label":"53441-9769 via Conventional from 53442 -> 30142","Type":"Conventional","Directional":true,"Links":[{"SourceID":53442,"TargetID":30142,"Directional":true}]},{"ID":14448,"SourceStructureID":53443,"TargetStructureID":5303,"Label":"53443-5303 via Conventional from 53446 -> 35592","Type":"Conventional","Directional":true,"Links":[{"SourceID":53446,"TargetID":35592,"Directional":true}]},{"ID":14449,"SourceStructureID":53443,"TargetStructureID":5650,"Label":"53443-5650 via Conventional from 53445 -> 30153","Type":"Conventional","Directional":true,"Links":[{"SourceID":53445,"TargetID":30153,"Directional":true}]},{"ID":14450,"SourceStructureID":53447,"TargetStructureID":7134,"Label":"53447-7134 via Conventional from 53449 -> 53499","Type":"Conventional","Directional":true,"Links":[{"SourceID":53449,"TargetID":53499,"Directional":true}]},{"ID":14451,"SourceStructureID":53447,"TargetStructureID":9769,"Label":"53447-9769 via Conventional from 53448 -> 30161, 53452 -> 30162","Type":"Conventional","Directional":true,"Links":[{"SourceID":53448,"TargetID":30161,"Directional":true},{"SourceID":53452,"TargetID":30162,"Directional":true}]},{"ID":14452,"SourceStructureID":53768,"TargetStructureID":606,"Label":"53768-606 via Ribbon Synapse from 53769 -> 53770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53769,"TargetID":53770,"Directional":true}]},{"ID":14453,"SourceStructureID":53778,"TargetStructureID":606,"Label":"53778-606 via Ribbon Synapse from 53779 -> 53780","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53779,"TargetID":53780,"Directional":true}]},{"ID":14454,"SourceStructureID":53828,"TargetStructureID":606,"Label":"53828-606 via Ribbon Synapse from 53829 -> 5091","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53829,"TargetID":5091,"Directional":true}]},{"ID":14455,"SourceStructureID":53872,"TargetStructureID":606,"Label":"53872-606 via Ribbon Synapse from 53873 -> 5106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":53873,"TargetID":5106,"Directional":true}]},{"ID":14456,"SourceStructureID":54006,"TargetStructureID":6117,"Label":"54006-6117 via Conventional from 83277 -> 83278","Type":"Conventional","Directional":true,"Links":[{"SourceID":83277,"TargetID":83278,"Directional":true}]},{"ID":14457,"SourceStructureID":54006,"TargetStructureID":20136,"Label":"54006-20136 via Conventional from 109046 -> 109033, 109058 -> 109059","Type":"Conventional","Directional":true,"Links":[{"SourceID":109046,"TargetID":109033,"Directional":true},{"SourceID":109058,"TargetID":109059,"Directional":true}]},{"ID":14458,"SourceStructureID":54074,"TargetStructureID":9769,"Label":"54074-9769 via Conventional from 54075 -> 11266","Type":"Conventional","Directional":true,"Links":[{"SourceID":54075,"TargetID":11266,"Directional":true}]},{"ID":14459,"SourceStructureID":54078,"TargetStructureID":606,"Label":"54078-606 via Conventional from 54083 -> 51333","Type":"Conventional","Directional":true,"Links":[{"SourceID":54083,"TargetID":51333,"Directional":true}]},{"ID":14460,"SourceStructureID":54078,"TargetStructureID":8579,"Label":"54078-8579 via Conventional from 66484 -> 66483","Type":"Conventional","Directional":true,"Links":[{"SourceID":66484,"TargetID":66483,"Directional":true}]},{"ID":14461,"SourceStructureID":54078,"TargetStructureID":16026,"Label":"54078-16026 via Conventional from 54117 -> 54118","Type":"Conventional","Directional":true,"Links":[{"SourceID":54117,"TargetID":54118,"Directional":true}]},{"ID":14462,"SourceStructureID":54232,"TargetStructureID":606,"Label":"54232-606 via Ribbon Synapse from 54233 -> 54234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":54233,"TargetID":54234,"Directional":true}]},{"ID":14463,"SourceStructureID":54245,"TargetStructureID":606,"Label":"54245-606 via Conventional from 54246 -> 39903, 54249 -> 54250","Type":"Conventional","Directional":true,"Links":[{"SourceID":54246,"TargetID":39903,"Directional":true},{"SourceID":54249,"TargetID":54250,"Directional":true}]},{"ID":14464,"SourceStructureID":54245,"TargetStructureID":5637,"Label":"54245-5637 via Conventional from 54248 -> 54247","Type":"Conventional","Directional":true,"Links":[{"SourceID":54248,"TargetID":54247,"Directional":true}]},{"ID":14465,"SourceStructureID":54252,"TargetStructureID":9769,"Label":"54252-9769 via Conventional from 54253 -> 54251","Type":"Conventional","Directional":true,"Links":[{"SourceID":54253,"TargetID":54251,"Directional":true}]},{"ID":14466,"SourceStructureID":54264,"TargetStructureID":9769,"Label":"54264-9769 via Conventional from 54266 -> 23927","Type":"Conventional","Directional":true,"Links":[{"SourceID":54266,"TargetID":23927,"Directional":true}]},{"ID":14467,"SourceStructureID":54264,"TargetStructureID":85404,"Label":"54264-85404 via Conventional from 54267 -> 85410","Type":"Conventional","Directional":true,"Links":[{"SourceID":54267,"TargetID":85410,"Directional":true}]},{"ID":14468,"SourceStructureID":54287,"TargetStructureID":6117,"Label":"54287-6117 via Conventional from 54289 -> 54290, 54299 -> 30896, 85301 -> 85302","Type":"Conventional","Directional":true,"Links":[{"SourceID":54289,"TargetID":54290,"Directional":true},{"SourceID":54299,"TargetID":30896,"Directional":true},{"SourceID":85301,"TargetID":85302,"Directional":true}]},{"ID":14469,"SourceStructureID":54356,"TargetStructureID":9769,"Label":"54356-9769 via Conventional from 54357 -> 23931","Type":"Conventional","Directional":true,"Links":[{"SourceID":54357,"TargetID":23931,"Directional":true}]},{"ID":14470,"SourceStructureID":54428,"TargetStructureID":9769,"Label":"54428-9769 via Conventional from 54429 -> 23933","Type":"Conventional","Directional":true,"Links":[{"SourceID":54429,"TargetID":23933,"Directional":true}]},{"ID":14471,"SourceStructureID":54428,"TargetStructureID":68539,"Label":"54428-68539 via Conventional from 72871 -> 72870","Type":"Conventional","Directional":true,"Links":[{"SourceID":72871,"TargetID":72870,"Directional":true}]},{"ID":14472,"SourceStructureID":54461,"TargetStructureID":9769,"Label":"54461-9769 via Conventional from 54462 -> 23937","Type":"Conventional","Directional":true,"Links":[{"SourceID":54462,"TargetID":23937,"Directional":true}]},{"ID":14473,"SourceStructureID":54469,"TargetStructureID":5601,"Label":"54469-5601 via Conventional from 54471 -> 54472","Type":"Conventional","Directional":true,"Links":[{"SourceID":54471,"TargetID":54472,"Directional":true}]},{"ID":14474,"SourceStructureID":54477,"TargetStructureID":9769,"Label":"54477-9769 via Conventional from 54478 -> 23950","Type":"Conventional","Directional":true,"Links":[{"SourceID":54478,"TargetID":23950,"Directional":true}]},{"ID":14475,"SourceStructureID":54492,"TargetStructureID":8578,"Label":"54492-8578 via Conventional from 54494 -> 54496","Type":"Conventional","Directional":true,"Links":[{"SourceID":54494,"TargetID":54496,"Directional":true}]},{"ID":14476,"SourceStructureID":54492,"TargetStructureID":9769,"Label":"54492-9769 via Conventional from 54493 -> 54491","Type":"Conventional","Directional":true,"Links":[{"SourceID":54493,"TargetID":54491,"Directional":true}]},{"ID":14477,"SourceStructureID":54698,"TargetStructureID":9769,"Label":"54698-9769 via Conventional from 54700 -> 23965","Type":"Conventional","Directional":true,"Links":[{"SourceID":54700,"TargetID":23965,"Directional":true}]},{"ID":14478,"SourceStructureID":54727,"TargetStructureID":15394,"Label":"54727-15394 via Conventional from 54728 -> 41019","Type":"Conventional","Directional":true,"Links":[{"SourceID":54728,"TargetID":41019,"Directional":true}]},{"ID":14479,"SourceStructureID":54727,"TargetStructureID":54744,"Label":"54727-54744 via Conventional from 54730 -> 54745","Type":"Conventional","Directional":true,"Links":[{"SourceID":54730,"TargetID":54745,"Directional":true}]},{"ID":14480,"SourceStructureID":54776,"TargetStructureID":5637,"Label":"54776-5637 via Conventional from 54784 -> 54795","Type":"Conventional","Directional":true,"Links":[{"SourceID":54784,"TargetID":54795,"Directional":true}]},{"ID":14481,"SourceStructureID":54776,"TargetStructureID":9769,"Label":"54776-9769 via Conventional from 54777 -> 23972","Type":"Conventional","Directional":true,"Links":[{"SourceID":54777,"TargetID":23972,"Directional":true}]},{"ID":14482,"SourceStructureID":54778,"TargetStructureID":9769,"Label":"54778-9769 via Conventional from 54779 -> 23973","Type":"Conventional","Directional":true,"Links":[{"SourceID":54779,"TargetID":23973,"Directional":true}]},{"ID":14483,"SourceStructureID":54813,"TargetStructureID":9769,"Label":"54813-9769 via Conventional from 54815 -> 23974","Type":"Conventional","Directional":true,"Links":[{"SourceID":54815,"TargetID":23974,"Directional":true}]},{"ID":14484,"SourceStructureID":54850,"TargetStructureID":9769,"Label":"54850-9769 via Conventional from 54851 -> 23982","Type":"Conventional","Directional":true,"Links":[{"SourceID":54851,"TargetID":23982,"Directional":true}]},{"ID":14485,"SourceStructureID":54857,"TargetStructureID":9769,"Label":"54857-9769 via Conventional from 54858 -> 23994","Type":"Conventional","Directional":true,"Links":[{"SourceID":54858,"TargetID":23994,"Directional":true}]},{"ID":14486,"SourceStructureID":54859,"TargetStructureID":9769,"Label":"54859-9769 via Conventional from 54860 -> 23995","Type":"Conventional","Directional":true,"Links":[{"SourceID":54860,"TargetID":23995,"Directional":true}]},{"ID":14487,"SourceStructureID":54874,"TargetStructureID":16073,"Label":"54874-16073 via Conventional from 54875 -> 19864","Type":"Conventional","Directional":true,"Links":[{"SourceID":54875,"TargetID":19864,"Directional":true}]},{"ID":14488,"SourceStructureID":54877,"TargetStructureID":6117,"Label":"54877-6117 via Conventional from 54879 -> 86012","Type":"Conventional","Directional":true,"Links":[{"SourceID":54879,"TargetID":86012,"Directional":true}]},{"ID":14489,"SourceStructureID":54881,"TargetStructureID":9769,"Label":"54881-9769 via Conventional from 54882 -> 12568","Type":"Conventional","Directional":true,"Links":[{"SourceID":54882,"TargetID":12568,"Directional":true}]},{"ID":14490,"SourceStructureID":54881,"TargetStructureID":34036,"Label":"54881-34036 via Conventional from 54887 -> 34046","Type":"Conventional","Directional":true,"Links":[{"SourceID":54887,"TargetID":34046,"Directional":true}]},{"ID":14491,"SourceStructureID":54895,"TargetStructureID":9769,"Label":"54895-9769 via Conventional from 54896 -> 30120","Type":"Conventional","Directional":true,"Links":[{"SourceID":54896,"TargetID":30120,"Directional":true}]},{"ID":14492,"SourceStructureID":54901,"TargetStructureID":9769,"Label":"54901-9769 via Conventional from 54902 -> 29885","Type":"Conventional","Directional":true,"Links":[{"SourceID":54902,"TargetID":29885,"Directional":true}]},{"ID":14493,"SourceStructureID":54904,"TargetStructureID":9769,"Label":"54904-9769 via Conventional from 54905 -> 29874, 54906 -> 29875","Type":"Conventional","Directional":true,"Links":[{"SourceID":54905,"TargetID":29874,"Directional":true},{"SourceID":54906,"TargetID":29875,"Directional":true}]},{"ID":14494,"SourceStructureID":54908,"TargetStructureID":25155,"Label":"54908-25155 via Conventional from 54911 -> 54912","Type":"Conventional","Directional":true,"Links":[{"SourceID":54911,"TargetID":54912,"Directional":true}]},{"ID":14495,"SourceStructureID":54913,"TargetStructureID":5531,"Label":"54913-5531 via Conventional from 54918 -> 54919","Type":"Conventional","Directional":true,"Links":[{"SourceID":54918,"TargetID":54919,"Directional":true}]},{"ID":14496,"SourceStructureID":54913,"TargetStructureID":9769,"Label":"54913-9769 via Conventional from 54914 -> 29869","Type":"Conventional","Directional":true,"Links":[{"SourceID":54914,"TargetID":29869,"Directional":true}]},{"ID":14497,"SourceStructureID":54925,"TargetStructureID":595,"Label":"54925-595 via Conventional from 115793 -> 115792","Type":"Conventional","Directional":true,"Links":[{"SourceID":115793,"TargetID":115792,"Directional":true}]},{"ID":14498,"SourceStructureID":54925,"TargetStructureID":5528,"Label":"54925-5528 via Conventional from 54942 -> 54943","Type":"Conventional","Directional":true,"Links":[{"SourceID":54942,"TargetID":54943,"Directional":true}]},{"ID":14499,"SourceStructureID":54925,"TargetStructureID":5530,"Label":"54925-5530 via Conventional from 54930 -> 54931, 54937 -> 54938, 54944 -> 54945, 54947 -> 54098, 81563 -> 81564","Type":"Conventional","Directional":true,"Links":[{"SourceID":54930,"TargetID":54931,"Directional":true},{"SourceID":54937,"TargetID":54938,"Directional":true},{"SourceID":54944,"TargetID":54945,"Directional":true},{"SourceID":54947,"TargetID":54098,"Directional":true},{"SourceID":81563,"TargetID":81564,"Directional":true}]},{"ID":14500,"SourceStructureID":54925,"TargetStructureID":5531,"Label":"54925-5531 via Conventional from 106583 -> 106584","Type":"Conventional","Directional":true,"Links":[{"SourceID":106583,"TargetID":106584,"Directional":true}]},{"ID":14501,"SourceStructureID":54948,"TargetStructureID":9769,"Label":"54948-9769 via Conventional from 54949 -> 29849","Type":"Conventional","Directional":true,"Links":[{"SourceID":54949,"TargetID":29849,"Directional":true}]},{"ID":14502,"SourceStructureID":54958,"TargetStructureID":9769,"Label":"54958-9769 via Conventional from 54959 -> 29839","Type":"Conventional","Directional":true,"Links":[{"SourceID":54959,"TargetID":29839,"Directional":true}]},{"ID":14503,"SourceStructureID":54967,"TargetStructureID":9769,"Label":"54967-9769 via Conventional from 54968 -> 54965","Type":"Conventional","Directional":true,"Links":[{"SourceID":54968,"TargetID":54965,"Directional":true}]},{"ID":14504,"SourceStructureID":55098,"TargetStructureID":88970,"Label":"55098-88970 via Conventional from 55105 -> 88971","Type":"Conventional","Directional":true,"Links":[{"SourceID":55105,"TargetID":88971,"Directional":true}]},{"ID":14505,"SourceStructureID":55108,"TargetStructureID":9769,"Label":"55108-9769 via Conventional from 55109 -> 12361, 55145 -> 12362","Type":"Conventional","Directional":true,"Links":[{"SourceID":55109,"TargetID":12361,"Directional":true},{"SourceID":55145,"TargetID":12362,"Directional":true}]},{"ID":14506,"SourceStructureID":55154,"TargetStructureID":9769,"Label":"55154-9769 via Conventional from 55155 -> 12363","Type":"Conventional","Directional":true,"Links":[{"SourceID":55155,"TargetID":12363,"Directional":true}]},{"ID":14507,"SourceStructureID":55161,"TargetStructureID":9769,"Label":"55161-9769 via Conventional from 55162 -> 12364","Type":"Conventional","Directional":true,"Links":[{"SourceID":55162,"TargetID":12364,"Directional":true}]},{"ID":14508,"SourceStructureID":55176,"TargetStructureID":9769,"Label":"55176-9769 via Conventional from 55177 -> 14363","Type":"Conventional","Directional":true,"Links":[{"SourceID":55177,"TargetID":14363,"Directional":true}]},{"ID":14509,"SourceStructureID":55185,"TargetStructureID":324,"Label":"55185-324 via Conventional from 55187 -> 55184","Type":"Conventional","Directional":true,"Links":[{"SourceID":55187,"TargetID":55184,"Directional":true}]},{"ID":14510,"SourceStructureID":55185,"TargetStructureID":6153,"Label":"55185-6153 via Conventional from 55186 -> 55183","Type":"Conventional","Directional":true,"Links":[{"SourceID":55186,"TargetID":55183,"Directional":true}]},{"ID":14511,"SourceStructureID":55185,"TargetStructureID":55191,"Label":"55185-55191 via Conventional from 55188 -> 55194","Type":"Conventional","Directional":true,"Links":[{"SourceID":55188,"TargetID":55194,"Directional":true}]},{"ID":14512,"SourceStructureID":55191,"TargetStructureID":55185,"Label":"55191-55185 via Ribbon Synapse from 55195 -> 55190","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55195,"TargetID":55190,"Directional":true}]},{"ID":14513,"SourceStructureID":55197,"TargetStructureID":9769,"Label":"55197-9769 via Conventional from 55198 -> 30083","Type":"Conventional","Directional":true,"Links":[{"SourceID":55198,"TargetID":30083,"Directional":true}]},{"ID":14514,"SourceStructureID":55201,"TargetStructureID":324,"Label":"55201-324 via Conventional from 55203 -> 55204","Type":"Conventional","Directional":true,"Links":[{"SourceID":55203,"TargetID":55204,"Directional":true}]},{"ID":14515,"SourceStructureID":55208,"TargetStructureID":9769,"Label":"55208-9769 via Conventional from 55209 -> 30092","Type":"Conventional","Directional":true,"Links":[{"SourceID":55209,"TargetID":30092,"Directional":true}]},{"ID":14516,"SourceStructureID":55215,"TargetStructureID":9769,"Label":"55215-9769 via Conventional from 55216 -> 30095","Type":"Conventional","Directional":true,"Links":[{"SourceID":55216,"TargetID":30095,"Directional":true}]},{"ID":14517,"SourceStructureID":55221,"TargetStructureID":9769,"Label":"55221-9769 via Conventional from 55222 -> 30109","Type":"Conventional","Directional":true,"Links":[{"SourceID":55222,"TargetID":30109,"Directional":true}]},{"ID":14518,"SourceStructureID":55223,"TargetStructureID":9769,"Label":"55223-9769 via Ribbon Synapse from 55224 -> 55225","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55224,"TargetID":55225,"Directional":true}]},{"ID":14519,"SourceStructureID":55279,"TargetStructureID":9769,"Label":"55279-9769 via Conventional from 55280 -> 12395","Type":"Conventional","Directional":true,"Links":[{"SourceID":55280,"TargetID":12395,"Directional":true}]},{"ID":14520,"SourceStructureID":55308,"TargetStructureID":9769,"Label":"55308-9769 via Conventional from 55309 -> 55307","Type":"Conventional","Directional":true,"Links":[{"SourceID":55309,"TargetID":55307,"Directional":true}]},{"ID":14521,"SourceStructureID":55311,"TargetStructureID":268,"Label":"55311-268 via Conventional from 55314 -> 55315","Type":"Conventional","Directional":true,"Links":[{"SourceID":55314,"TargetID":55315,"Directional":true}]},{"ID":14522,"SourceStructureID":55317,"TargetStructureID":9769,"Label":"55317-9769 via Conventional from 55318 -> 55316","Type":"Conventional","Directional":true,"Links":[{"SourceID":55318,"TargetID":55316,"Directional":true}]},{"ID":14523,"SourceStructureID":55330,"TargetStructureID":9769,"Label":"55330-9769 via Conventional from 55331 -> 12331","Type":"Conventional","Directional":true,"Links":[{"SourceID":55331,"TargetID":12331,"Directional":true}]},{"ID":14524,"SourceStructureID":55359,"TargetStructureID":9769,"Label":"55359-9769 via Conventional from 55360 -> 12359","Type":"Conventional","Directional":true,"Links":[{"SourceID":55360,"TargetID":12359,"Directional":true}]},{"ID":14525,"SourceStructureID":55361,"TargetStructureID":9769,"Label":"55361-9769 via Conventional from 55362 -> 12360","Type":"Conventional","Directional":true,"Links":[{"SourceID":55362,"TargetID":12360,"Directional":true}]},{"ID":14526,"SourceStructureID":55364,"TargetStructureID":9769,"Label":"55364-9769 via Conventional from 55365 -> 10903","Type":"Conventional","Directional":true,"Links":[{"SourceID":55365,"TargetID":10903,"Directional":true}]},{"ID":14527,"SourceStructureID":55366,"TargetStructureID":9769,"Label":"55366-9769 via Conventional from 55367 -> 29889","Type":"Conventional","Directional":true,"Links":[{"SourceID":55367,"TargetID":29889,"Directional":true}]},{"ID":14528,"SourceStructureID":55403,"TargetStructureID":324,"Label":"55403-324 via Conventional from 55413 -> 55412, 55418 -> 55419, 55425 -> 55426, 55454 -> 55455","Type":"Conventional","Directional":true,"Links":[{"SourceID":55413,"TargetID":55412,"Directional":true},{"SourceID":55418,"TargetID":55419,"Directional":true},{"SourceID":55425,"TargetID":55426,"Directional":true},{"SourceID":55454,"TargetID":55455,"Directional":true}]},{"ID":14529,"SourceStructureID":55403,"TargetStructureID":330,"Label":"55403-330 via Conventional from 55439 -> 12424","Type":"Conventional","Directional":true,"Links":[{"SourceID":55439,"TargetID":12424,"Directional":true}]},{"ID":14530,"SourceStructureID":55403,"TargetStructureID":372,"Label":"55403-372 via Conventional from 55446 -> 55445","Type":"Conventional","Directional":true,"Links":[{"SourceID":55446,"TargetID":55445,"Directional":true}]},{"ID":14531,"SourceStructureID":55403,"TargetStructureID":606,"Label":"55403-606 via Conventional from 55405 -> 53269, 55410 -> 53274, 55447 -> 53315","Type":"Conventional","Directional":true,"Links":[{"SourceID":55405,"TargetID":53269,"Directional":true},{"SourceID":55410,"TargetID":53274,"Directional":true},{"SourceID":55447,"TargetID":53315,"Directional":true}]},{"ID":14532,"SourceStructureID":55403,"TargetStructureID":1724,"Label":"55403-1724 via Conventional from 55461 -> 4042","Type":"Conventional","Directional":true,"Links":[{"SourceID":55461,"TargetID":4042,"Directional":true}]},{"ID":14533,"SourceStructureID":55403,"TargetStructureID":5107,"Label":"55403-5107 via Conventional from 55436 -> 55437","Type":"Conventional","Directional":true,"Links":[{"SourceID":55436,"TargetID":55437,"Directional":true}]},{"ID":14534,"SourceStructureID":55403,"TargetStructureID":20299,"Label":"55403-20299 via Conventional from 55421 -> 55422","Type":"Conventional","Directional":true,"Links":[{"SourceID":55421,"TargetID":55422,"Directional":true}]},{"ID":14535,"SourceStructureID":55403,"TargetStructureID":31024,"Label":"55403-31024 via Conventional from 55509 -> 55508, 55510 -> 55511","Type":"Conventional","Directional":true,"Links":[{"SourceID":55509,"TargetID":55508,"Directional":true},{"SourceID":55510,"TargetID":55511,"Directional":true}]},{"ID":14536,"SourceStructureID":55403,"TargetStructureID":32581,"Label":"55403-32581 via Conventional from 55430 -> 55431","Type":"Conventional","Directional":true,"Links":[{"SourceID":55430,"TargetID":55431,"Directional":true}]},{"ID":14537,"SourceStructureID":55403,"TargetStructureID":35894,"Label":"55403-35894 via Conventional from 55457 -> 55458","Type":"Conventional","Directional":true,"Links":[{"SourceID":55457,"TargetID":55458,"Directional":true}]},{"ID":14538,"SourceStructureID":55403,"TargetStructureID":38605,"Label":"55403-38605 via Conventional from 55420 -> 101484","Type":"Conventional","Directional":true,"Links":[{"SourceID":55420,"TargetID":101484,"Directional":true}]},{"ID":14539,"SourceStructureID":55517,"TargetStructureID":170,"Label":"55517-170 via Conventional from 55562 -> 55563","Type":"Conventional","Directional":true,"Links":[{"SourceID":55562,"TargetID":55563,"Directional":true}]},{"ID":14540,"SourceStructureID":55517,"TargetStructureID":277,"Label":"55517-277 via Conventional from 55549 -> 55548, 55555 -> 26008","Type":"Conventional","Directional":true,"Links":[{"SourceID":55549,"TargetID":55548,"Directional":true},{"SourceID":55555,"TargetID":26008,"Directional":true}]},{"ID":14541,"SourceStructureID":55517,"TargetStructureID":330,"Label":"55517-330 via Conventional from 55546 -> 52977","Type":"Conventional","Directional":true,"Links":[{"SourceID":55546,"TargetID":52977,"Directional":true}]},{"ID":14542,"SourceStructureID":55517,"TargetStructureID":372,"Label":"55517-372 via Conventional from 55524 -> 45647","Type":"Conventional","Directional":true,"Links":[{"SourceID":55524,"TargetID":45647,"Directional":true}]},{"ID":14543,"SourceStructureID":55517,"TargetStructureID":606,"Label":"55517-606 via Conventional from 55519 -> 53305, 55554 -> 52850","Type":"Conventional","Directional":true,"Links":[{"SourceID":55519,"TargetID":53305,"Directional":true},{"SourceID":55554,"TargetID":52850,"Directional":true}]},{"ID":14544,"SourceStructureID":55517,"TargetStructureID":4569,"Label":"55517-4569 via Conventional from 55566 -> 47442","Type":"Conventional","Directional":true,"Links":[{"SourceID":55566,"TargetID":47442,"Directional":true}]},{"ID":14545,"SourceStructureID":55517,"TargetStructureID":5279,"Label":"55517-5279 via Conventional from 55572 -> 92709","Type":"Conventional","Directional":true,"Links":[{"SourceID":55572,"TargetID":92709,"Directional":true}]},{"ID":14546,"SourceStructureID":55517,"TargetStructureID":5284,"Label":"55517-5284 via Conventional from 55603 -> 55604","Type":"Conventional","Directional":true,"Links":[{"SourceID":55603,"TargetID":55604,"Directional":true}]},{"ID":14547,"SourceStructureID":55517,"TargetStructureID":6117,"Label":"55517-6117 via Conventional from 55574 -> 55579, 55585 -> 83236, 55588 -> 30889","Type":"Conventional","Directional":true,"Links":[{"SourceID":55574,"TargetID":55579,"Directional":true},{"SourceID":55585,"TargetID":83236,"Directional":true},{"SourceID":55588,"TargetID":30889,"Directional":true}]},{"ID":14548,"SourceStructureID":55517,"TargetStructureID":9769,"Label":"55517-9769 via Conventional from 55595 -> 55596","Type":"Conventional","Directional":true,"Links":[{"SourceID":55595,"TargetID":55596,"Directional":true}]},{"ID":14549,"SourceStructureID":55517,"TargetStructureID":32581,"Label":"55517-32581 via Conventional from 55538 -> 55539","Type":"Conventional","Directional":true,"Links":[{"SourceID":55538,"TargetID":55539,"Directional":true}]},{"ID":14550,"SourceStructureID":55517,"TargetStructureID":59008,"Label":"55517-59008 via Conventional from 55573 -> 59009","Type":"Conventional","Directional":true,"Links":[{"SourceID":55573,"TargetID":59009,"Directional":true}]},{"ID":14551,"SourceStructureID":55517,"TargetStructureID":75583,"Label":"55517-75583 via Conventional from 55587 -> 83213","Type":"Conventional","Directional":true,"Links":[{"SourceID":55587,"TargetID":83213,"Directional":true}]},{"ID":14552,"SourceStructureID":55517,"TargetStructureID":83204,"Label":"55517-83204 via Conventional from 55586 -> 83206","Type":"Conventional","Directional":true,"Links":[{"SourceID":55586,"TargetID":83206,"Directional":true}]},{"ID":14553,"SourceStructureID":55517,"TargetStructureID":83925,"Label":"55517-83925 via Conventional from 55591 -> 83928","Type":"Conventional","Directional":true,"Links":[{"SourceID":55591,"TargetID":83928,"Directional":true}]},{"ID":14554,"SourceStructureID":55517,"TargetStructureID":90483,"Label":"55517-90483 via Conventional from 55523 -> 90497","Type":"Conventional","Directional":true,"Links":[{"SourceID":55523,"TargetID":90497,"Directional":true}]},{"ID":14555,"SourceStructureID":55686,"TargetStructureID":7897,"Label":"55686-7897 via Ribbon Synapse from 55687 -> 55685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":55687,"TargetID":55685,"Directional":true}]},{"ID":14556,"SourceStructureID":55697,"TargetStructureID":5499,"Label":"55697-5499 via Conventional from 55701 -> 105488","Type":"Conventional","Directional":true,"Links":[{"SourceID":55701,"TargetID":105488,"Directional":true}]},{"ID":14557,"SourceStructureID":55697,"TargetStructureID":5503,"Label":"55697-5503 via Conventional from 55702 -> 60727","Type":"Conventional","Directional":true,"Links":[{"SourceID":55702,"TargetID":60727,"Directional":true}]},{"ID":14558,"SourceStructureID":55697,"TargetStructureID":5520,"Label":"55697-5520 via Conventional from 55699 -> 55700","Type":"Conventional","Directional":true,"Links":[{"SourceID":55699,"TargetID":55700,"Directional":true}]},{"ID":14559,"SourceStructureID":55697,"TargetStructureID":7897,"Label":"55697-7897 via Conventional from 55698 -> 55692","Type":"Conventional","Directional":true,"Links":[{"SourceID":55698,"TargetID":55692,"Directional":true}]},{"ID":14560,"SourceStructureID":55830,"TargetStructureID":6047,"Label":"55830-6047 via Conventional from 112347 -> 112346","Type":"Conventional","Directional":true,"Links":[{"SourceID":112347,"TargetID":112346,"Directional":true}]},{"ID":14561,"SourceStructureID":55830,"TargetStructureID":6050,"Label":"55830-6050 via Conventional from 114235 -> 114234","Type":"Conventional","Directional":true,"Links":[{"SourceID":114235,"TargetID":114234,"Directional":true}]},{"ID":14562,"SourceStructureID":55837,"TargetStructureID":9769,"Label":"55837-9769 via Conventional from 55838 -> 55836","Type":"Conventional","Directional":true,"Links":[{"SourceID":55838,"TargetID":55836,"Directional":true}]},{"ID":14563,"SourceStructureID":56078,"TargetStructureID":6857,"Label":"56078-6857 via Conventional from 56079 -> 6858","Type":"Conventional","Directional":true,"Links":[{"SourceID":56079,"TargetID":6858,"Directional":true}]},{"ID":14564,"SourceStructureID":56081,"TargetStructureID":6857,"Label":"56081-6857 via Conventional from 56082 -> 6867","Type":"Conventional","Directional":true,"Links":[{"SourceID":56082,"TargetID":6867,"Directional":true}]},{"ID":14565,"SourceStructureID":56086,"TargetStructureID":5530,"Label":"56086-5530 via Conventional from 56087 -> 56088","Type":"Conventional","Directional":true,"Links":[{"SourceID":56087,"TargetID":56088,"Directional":true}]},{"ID":14566,"SourceStructureID":56148,"TargetStructureID":15796,"Label":"56148-15796 via Conventional from 56149 -> 55760","Type":"Conventional","Directional":true,"Links":[{"SourceID":56149,"TargetID":55760,"Directional":true}]},{"ID":14567,"SourceStructureID":56191,"TargetStructureID":5150,"Label":"56191-5150 via Ribbon Synapse from 56192 -> 5242","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56192,"TargetID":5242,"Directional":true}]},{"ID":14568,"SourceStructureID":56211,"TargetStructureID":46261,"Label":"56211-46261 via Conventional from 56242 -> 56243","Type":"Conventional","Directional":true,"Links":[{"SourceID":56242,"TargetID":56243,"Directional":true}]},{"ID":14569,"SourceStructureID":56328,"TargetStructureID":7568,"Label":"56328-7568 via Conventional from 85482 -> 27108","Type":"Conventional","Directional":true,"Links":[{"SourceID":85482,"TargetID":27108,"Directional":true}]},{"ID":14570,"SourceStructureID":56328,"TargetStructureID":131568,"Label":"56328-131568 via Conventional from 85485 -> 131569","Type":"Conventional","Directional":true,"Links":[{"SourceID":85485,"TargetID":131569,"Directional":true}]},{"ID":14571,"SourceStructureID":56598,"TargetStructureID":9787,"Label":"56598-9787 via Conventional from 56599 -> 12246","Type":"Conventional","Directional":true,"Links":[{"SourceID":56599,"TargetID":12246,"Directional":true}]},{"ID":14572,"SourceStructureID":56600,"TargetStructureID":9787,"Label":"56600-9787 via Ribbon Synapse from 56604 -> 12245, 56605 -> 12256","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56604,"TargetID":12245,"Directional":true},{"SourceID":56605,"TargetID":12256,"Directional":true}]},{"ID":14573,"SourceStructureID":56631,"TargetStructureID":289,"Label":"56631-289 via Ribbon Synapse from 56632 -> 56630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56632,"TargetID":56630,"Directional":true}]},{"ID":14574,"SourceStructureID":56643,"TargetStructureID":289,"Label":"56643-289 via Ribbon Synapse from 56644 -> 56642","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":56644,"TargetID":56642,"Directional":true}]},{"ID":14575,"SourceStructureID":56704,"TargetStructureID":142,"Label":"56704-142 via Conventional from 56707 -> 31789","Type":"Conventional","Directional":true,"Links":[{"SourceID":56707,"TargetID":31789,"Directional":true}]},{"ID":14576,"SourceStructureID":56822,"TargetStructureID":171,"Label":"56822-171 via Conventional from 130199 -> 6002","Type":"Conventional","Directional":true,"Links":[{"SourceID":130199,"TargetID":6002,"Directional":true}]},{"ID":14577,"SourceStructureID":56841,"TargetStructureID":5284,"Label":"56841-5284 via Conventional from 56847 -> 113471, 56853 -> 54343, 113526 -> 113524, 113557 -> 98211","Type":"Conventional","Directional":true,"Links":[{"SourceID":56847,"TargetID":113471,"Directional":true},{"SourceID":56853,"TargetID":54343,"Directional":true},{"SourceID":113526,"TargetID":113524,"Directional":true},{"SourceID":113557,"TargetID":98211,"Directional":true}]},{"ID":14578,"SourceStructureID":56841,"TargetStructureID":5297,"Label":"56841-5297 via Conventional from 120273 -> 120274","Type":"Conventional","Directional":true,"Links":[{"SourceID":120273,"TargetID":120274,"Directional":true}]},{"ID":14579,"SourceStructureID":56841,"TargetStructureID":5517,"Label":"56841-5517 via Conventional from 56932 -> 49293","Type":"Conventional","Directional":true,"Links":[{"SourceID":56932,"TargetID":49293,"Directional":true}]},{"ID":14580,"SourceStructureID":56841,"TargetStructureID":5598,"Label":"56841-5598 via Conventional from 56865 -> 114588, 113789 -> 113788","Type":"Conventional","Directional":true,"Links":[{"SourceID":56865,"TargetID":114588,"Directional":true},{"SourceID":113789,"TargetID":113788,"Directional":true}]},{"ID":14581,"SourceStructureID":56841,"TargetStructureID":5650,"Label":"56841-5650 via Conventional from 104993 -> 104994","Type":"Conventional","Directional":true,"Links":[{"SourceID":104993,"TargetID":104994,"Directional":true}]},{"ID":14582,"SourceStructureID":56841,"TargetStructureID":6047,"Label":"56841-6047 via Conventional from 56863 -> 56864","Type":"Conventional","Directional":true,"Links":[{"SourceID":56863,"TargetID":56864,"Directional":true}]},{"ID":14583,"SourceStructureID":56841,"TargetStructureID":6050,"Label":"56841-6050 via Conventional from 56855 -> 56073, 56858 -> 114028, 56860 -> 114034, 113972 -> 113971","Type":"Conventional","Directional":true,"Links":[{"SourceID":56855,"TargetID":56073,"Directional":true},{"SourceID":56858,"TargetID":114028,"Directional":true},{"SourceID":56860,"TargetID":114034,"Directional":true},{"SourceID":113972,"TargetID":113971,"Directional":true}]},{"ID":14584,"SourceStructureID":56841,"TargetStructureID":6117,"Label":"56841-6117 via Conventional from 56845 -> 30870","Type":"Conventional","Directional":true,"Links":[{"SourceID":56845,"TargetID":30870,"Directional":true}]},{"ID":14585,"SourceStructureID":56841,"TargetStructureID":6203,"Label":"56841-6203 via Conventional from 56868 -> 57214","Type":"Conventional","Directional":true,"Links":[{"SourceID":56868,"TargetID":57214,"Directional":true}]},{"ID":14586,"SourceStructureID":56841,"TargetStructureID":20136,"Label":"56841-20136 via Conventional from 56844 -> 20145","Type":"Conventional","Directional":true,"Links":[{"SourceID":56844,"TargetID":20145,"Directional":true}]},{"ID":14587,"SourceStructureID":56841,"TargetStructureID":28886,"Label":"56841-28886 via Conventional from 56941 -> 51383","Type":"Conventional","Directional":true,"Links":[{"SourceID":56941,"TargetID":51383,"Directional":true}]},{"ID":14588,"SourceStructureID":56841,"TargetStructureID":83954,"Label":"56841-83954 via Conventional from 56846 -> 83956","Type":"Conventional","Directional":true,"Links":[{"SourceID":56846,"TargetID":83956,"Directional":true}]},{"ID":14589,"SourceStructureID":57027,"TargetStructureID":5279,"Label":"57027-5279 via Conventional from 99128 -> 99129","Type":"Conventional","Directional":true,"Links":[{"SourceID":99128,"TargetID":99129,"Directional":true}]},{"ID":14590,"SourceStructureID":57034,"TargetStructureID":3756,"Label":"57034-3756 via Conventional from 120320 -> 116034","Type":"Conventional","Directional":true,"Links":[{"SourceID":120320,"TargetID":116034,"Directional":true}]},{"ID":14591,"SourceStructureID":57034,"TargetStructureID":5650,"Label":"57034-5650 via Conventional from 125089 -> 125088","Type":"Conventional","Directional":true,"Links":[{"SourceID":125089,"TargetID":125088,"Directional":true}]},{"ID":14592,"SourceStructureID":57178,"TargetStructureID":35811,"Label":"57178-35811 via Conventional from 57182 -> 35875","Type":"Conventional","Directional":true,"Links":[{"SourceID":57182,"TargetID":35875,"Directional":true}]},{"ID":14593,"SourceStructureID":57353,"TargetStructureID":5107,"Label":"57353-5107 via Ribbon Synapse from 65078 -> 65077, 122890 -> 65073","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65078,"TargetID":65077,"Directional":true},{"SourceID":122890,"TargetID":65073,"Directional":true}]},{"ID":14594,"SourceStructureID":57353,"TargetStructureID":5118,"Label":"57353-5118 via BC Conventional Synapse from 124432 -> 124433","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":124432,"TargetID":124433,"Directional":true}]},{"ID":14595,"SourceStructureID":58441,"TargetStructureID":8575,"Label":"58441-8575 via BC Conventional Synapse from 62076 -> 62075","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62076,"TargetID":62075,"Directional":true}]},{"ID":14596,"SourceStructureID":58441,"TargetStructureID":39957,"Label":"58441-39957 via Ribbon Synapse from 58442 -> 58438, 58449 -> 58443","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58442,"TargetID":58438,"Directional":true},{"SourceID":58449,"TargetID":58443,"Directional":true}]},{"ID":14597,"SourceStructureID":58441,"TargetStructureID":59333,"Label":"58441-59333 via Ribbon Synapse from 59350 -> 59351","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59350,"TargetID":59351,"Directional":true}]},{"ID":14598,"SourceStructureID":58441,"TargetStructureID":59340,"Label":"58441-59340 via Ribbon Synapse from 58446 -> 59344","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58446,"TargetID":59344,"Directional":true}]},{"ID":14599,"SourceStructureID":58441,"TargetStructureID":59347,"Label":"58441-59347 via Ribbon Synapse from 58445 -> 59349","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":58445,"TargetID":59349,"Directional":true}]},{"ID":14600,"SourceStructureID":58592,"TargetStructureID":142,"Label":"58592-142 via Conventional from 58636 -> 49759, 114530 -> 49743","Type":"Conventional","Directional":true,"Links":[{"SourceID":58636,"TargetID":49759,"Directional":true},{"SourceID":114530,"TargetID":49743,"Directional":true}]},{"ID":14601,"SourceStructureID":58592,"TargetStructureID":176,"Label":"58592-176 via Conventional from 58648 -> 91304, 58658 -> 58659","Type":"Conventional","Directional":true,"Links":[{"SourceID":58648,"TargetID":91304,"Directional":true},{"SourceID":58658,"TargetID":58659,"Directional":true}]},{"ID":14602,"SourceStructureID":58592,"TargetStructureID":4877,"Label":"58592-4877 via Conventional from 58661 -> 33308","Type":"Conventional","Directional":true,"Links":[{"SourceID":58661,"TargetID":33308,"Directional":true}]},{"ID":14603,"SourceStructureID":58592,"TargetStructureID":5279,"Label":"58592-5279 via Conventional from 58596 -> 49234, 58622 -> 58623, 58628 -> 49226, 58629 -> 58630","Type":"Conventional","Directional":true,"Links":[{"SourceID":58596,"TargetID":49234,"Directional":true},{"SourceID":58622,"TargetID":58623,"Directional":true},{"SourceID":58628,"TargetID":49226,"Directional":true},{"SourceID":58629,"TargetID":58630,"Directional":true}]},{"ID":14604,"SourceStructureID":58592,"TargetStructureID":5534,"Label":"58592-5534 via Conventional from 58676 -> 58677","Type":"Conventional","Directional":true,"Links":[{"SourceID":58676,"TargetID":58677,"Directional":true}]},{"ID":14605,"SourceStructureID":58592,"TargetStructureID":5607,"Label":"58592-5607 via Conventional from 58681 -> 43085, 58685 -> 58684","Type":"Conventional","Directional":true,"Links":[{"SourceID":58681,"TargetID":43085,"Directional":true},{"SourceID":58685,"TargetID":58684,"Directional":true}]},{"ID":14606,"SourceStructureID":58592,"TargetStructureID":5637,"Label":"58592-5637 via Conventional from 58666 -> 58667, 58673 -> 58674","Type":"Conventional","Directional":true,"Links":[{"SourceID":58666,"TargetID":58667,"Directional":true},{"SourceID":58673,"TargetID":58674,"Directional":true}]},{"ID":14607,"SourceStructureID":58592,"TargetStructureID":5641,"Label":"58592-5641 via Conventional from 58671 -> 58672","Type":"Conventional","Directional":true,"Links":[{"SourceID":58671,"TargetID":58672,"Directional":true}]},{"ID":14608,"SourceStructureID":58592,"TargetStructureID":6117,"Label":"58592-6117 via Conventional from 58593 -> 10541, 86425 -> 86426","Type":"Conventional","Directional":true,"Links":[{"SourceID":58593,"TargetID":10541,"Directional":true},{"SourceID":86425,"TargetID":86426,"Directional":true}]},{"ID":14609,"SourceStructureID":58592,"TargetStructureID":58642,"Label":"58592-58642 via Conventional from 58641 -> 58643","Type":"Conventional","Directional":true,"Links":[{"SourceID":58641,"TargetID":58643,"Directional":true}]},{"ID":14610,"SourceStructureID":58592,"TargetStructureID":58714,"Label":"58592-58714 via Conventional from 86121 -> 86122","Type":"Conventional","Directional":true,"Links":[{"SourceID":86121,"TargetID":86122,"Directional":true}]},{"ID":14611,"SourceStructureID":58687,"TargetStructureID":6117,"Label":"58687-6117 via Conventional from 58688 -> 58689","Type":"Conventional","Directional":true,"Links":[{"SourceID":58688,"TargetID":58689,"Directional":true}]},{"ID":14612,"SourceStructureID":58691,"TargetStructureID":6117,"Label":"58691-6117 via Conventional from 58693 -> 58694","Type":"Conventional","Directional":true,"Links":[{"SourceID":58693,"TargetID":58694,"Directional":true}]},{"ID":14613,"SourceStructureID":58696,"TargetStructureID":166,"Label":"58696-166 via Conventional from 58702 -> 4480, 58703 -> 4482, 58705 -> 84812, 58708 -> 16161, 66712 -> 60008","Type":"Conventional","Directional":true,"Links":[{"SourceID":58702,"TargetID":4480,"Directional":true},{"SourceID":58703,"TargetID":4482,"Directional":true},{"SourceID":58705,"TargetID":84812,"Directional":true},{"SourceID":58708,"TargetID":16161,"Directional":true},{"SourceID":66712,"TargetID":60008,"Directional":true}]},{"ID":14614,"SourceStructureID":58696,"TargetStructureID":593,"Label":"58696-593 via Conventional from 86960 -> 86961","Type":"Conventional","Directional":true,"Links":[{"SourceID":86960,"TargetID":86961,"Directional":true}]},{"ID":14615,"SourceStructureID":58696,"TargetStructureID":5377,"Label":"58696-5377 via Conventional from 86954 -> 22746","Type":"Conventional","Directional":true,"Links":[{"SourceID":86954,"TargetID":22746,"Directional":true}]},{"ID":14616,"SourceStructureID":58696,"TargetStructureID":5562,"Label":"58696-5562 via Conventional from 86969 -> 63790, 86979 -> 63846, 86983 -> 63615","Type":"Conventional","Directional":true,"Links":[{"SourceID":86969,"TargetID":63790,"Directional":true},{"SourceID":86979,"TargetID":63846,"Directional":true},{"SourceID":86983,"TargetID":63615,"Directional":true}]},{"ID":14617,"SourceStructureID":58696,"TargetStructureID":6117,"Label":"58696-6117 via Conventional from 58697 -> 58695","Type":"Conventional","Directional":true,"Links":[{"SourceID":58697,"TargetID":58695,"Directional":true}]},{"ID":14618,"SourceStructureID":58696,"TargetStructureID":84828,"Label":"58696-84828 via Conventional from 84827 -> 84829","Type":"Conventional","Directional":true,"Links":[{"SourceID":84827,"TargetID":84829,"Directional":true}]},{"ID":14619,"SourceStructureID":58696,"TargetStructureID":86943,"Label":"58696-86943 via Conventional from 86942 -> 86944","Type":"Conventional","Directional":true,"Links":[{"SourceID":86942,"TargetID":86944,"Directional":true}]},{"ID":14620,"SourceStructureID":58696,"TargetStructureID":86965,"Label":"58696-86965 via Conventional from 86964 -> 86966","Type":"Conventional","Directional":true,"Links":[{"SourceID":86964,"TargetID":86966,"Directional":true}]},{"ID":14621,"SourceStructureID":58696,"TargetStructureID":86985,"Label":"58696-86985 via Conventional from 86984 -> 86986","Type":"Conventional","Directional":true,"Links":[{"SourceID":86984,"TargetID":86986,"Directional":true}]},{"ID":14622,"SourceStructureID":58709,"TargetStructureID":176,"Label":"58709-176 via Conventional from 58712 -> 5814","Type":"Conventional","Directional":true,"Links":[{"SourceID":58712,"TargetID":5814,"Directional":true}]},{"ID":14623,"SourceStructureID":58709,"TargetStructureID":6117,"Label":"58709-6117 via Conventional from 58710 -> 58711","Type":"Conventional","Directional":true,"Links":[{"SourceID":58710,"TargetID":58711,"Directional":true}]},{"ID":14624,"SourceStructureID":58714,"TargetStructureID":4877,"Label":"58714-4877 via Conventional from 58736 -> 58737, 58739 -> 33390","Type":"Conventional","Directional":true,"Links":[{"SourceID":58736,"TargetID":58737,"Directional":true},{"SourceID":58739,"TargetID":33390,"Directional":true}]},{"ID":14625,"SourceStructureID":58714,"TargetStructureID":5303,"Label":"58714-5303 via Conventional from 58738 -> 35610","Type":"Conventional","Directional":true,"Links":[{"SourceID":58738,"TargetID":35610,"Directional":true}]},{"ID":14626,"SourceStructureID":58714,"TargetStructureID":6117,"Label":"58714-6117 via Conventional from 58715 -> 58713, 58719 -> 20578, 86123 -> 20569, 86141 -> 20574, 86454 -> 86455","Type":"Conventional","Directional":true,"Links":[{"SourceID":58715,"TargetID":58713,"Directional":true},{"SourceID":58719,"TargetID":20578,"Directional":true},{"SourceID":86123,"TargetID":20569,"Directional":true},{"SourceID":86141,"TargetID":20574,"Directional":true},{"SourceID":86454,"TargetID":86455,"Directional":true}]},{"ID":14627,"SourceStructureID":58723,"TargetStructureID":6117,"Label":"58723-6117 via Conventional from 58725 -> 20571, 58726 -> 20572","Type":"Conventional","Directional":true,"Links":[{"SourceID":58725,"TargetID":20571,"Directional":true},{"SourceID":58726,"TargetID":20572,"Directional":true}]},{"ID":14628,"SourceStructureID":58723,"TargetStructureID":58714,"Label":"58723-58714 via Conventional from 58724 -> 58722","Type":"Conventional","Directional":true,"Links":[{"SourceID":58724,"TargetID":58722,"Directional":true}]},{"ID":14629,"SourceStructureID":58745,"TargetStructureID":6117,"Label":"58745-6117 via Conventional from 58746 -> 58744","Type":"Conventional","Directional":true,"Links":[{"SourceID":58746,"TargetID":58744,"Directional":true}]},{"ID":14630,"SourceStructureID":58757,"TargetStructureID":5601,"Label":"58757-5601 via Conventional from 58764 -> 127182","Type":"Conventional","Directional":true,"Links":[{"SourceID":58764,"TargetID":127182,"Directional":true}]},{"ID":14631,"SourceStructureID":58757,"TargetStructureID":6117,"Label":"58757-6117 via Conventional from 58758 -> 58756","Type":"Conventional","Directional":true,"Links":[{"SourceID":58758,"TargetID":58756,"Directional":true}]},{"ID":14632,"SourceStructureID":58773,"TargetStructureID":6117,"Label":"58773-6117 via Conventional from 58774 -> 30924","Type":"Conventional","Directional":true,"Links":[{"SourceID":58774,"TargetID":30924,"Directional":true}]},{"ID":14633,"SourceStructureID":58777,"TargetStructureID":6117,"Label":"58777-6117 via Conventional from 58785 -> 58786, 86597 -> 86598","Type":"Conventional","Directional":true,"Links":[{"SourceID":58785,"TargetID":58786,"Directional":true},{"SourceID":86597,"TargetID":86598,"Directional":true}]},{"ID":14634,"SourceStructureID":58816,"TargetStructureID":1724,"Label":"58816-1724 via Conventional from 58819 -> 1772","Type":"Conventional","Directional":true,"Links":[{"SourceID":58819,"TargetID":1772,"Directional":true}]},{"ID":14635,"SourceStructureID":58816,"TargetStructureID":5279,"Label":"58816-5279 via Conventional from 58821 -> 25816","Type":"Conventional","Directional":true,"Links":[{"SourceID":58821,"TargetID":25816,"Directional":true}]},{"ID":14636,"SourceStructureID":58816,"TargetStructureID":6117,"Label":"58816-6117 via Conventional from 85990 -> 58809","Type":"Conventional","Directional":true,"Links":[{"SourceID":85990,"TargetID":58809,"Directional":true}]},{"ID":14637,"SourceStructureID":58827,"TargetStructureID":6117,"Label":"58827-6117 via Conventional from 58828 -> 58810","Type":"Conventional","Directional":true,"Links":[{"SourceID":58828,"TargetID":58810,"Directional":true}]},{"ID":14638,"SourceStructureID":58829,"TargetStructureID":5561,"Label":"58829-5561 via Conventional from 97652 -> 46307, 97679 -> 46303","Type":"Conventional","Directional":true,"Links":[{"SourceID":97652,"TargetID":46307,"Directional":true},{"SourceID":97679,"TargetID":46303,"Directional":true}]},{"ID":14639,"SourceStructureID":59012,"TargetStructureID":1724,"Label":"59012-1724 via Conventional from 101524 -> 20197","Type":"Conventional","Directional":true,"Links":[{"SourceID":101524,"TargetID":20197,"Directional":true}]},{"ID":14640,"SourceStructureID":59012,"TargetStructureID":5279,"Label":"59012-5279 via Conventional from 59013 -> 25826, 59014 -> 59015","Type":"Conventional","Directional":true,"Links":[{"SourceID":59013,"TargetID":25826,"Directional":true},{"SourceID":59014,"TargetID":59015,"Directional":true}]},{"ID":14641,"SourceStructureID":59102,"TargetStructureID":593,"Label":"59102-593 via Postsynapse from 59103 -> 59101","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":59103,"TargetID":59101,"Directional":true}]},{"ID":14642,"SourceStructureID":59125,"TargetStructureID":483,"Label":"59125-483 via Conventional from 59126 -> 6704","Type":"Conventional","Directional":true,"Links":[{"SourceID":59126,"TargetID":6704,"Directional":true}]},{"ID":14643,"SourceStructureID":59139,"TargetStructureID":593,"Label":"59139-593 via Conventional from 59141 -> 7700","Type":"Conventional","Directional":true,"Links":[{"SourceID":59141,"TargetID":7700,"Directional":true}]},{"ID":14644,"SourceStructureID":59147,"TargetStructureID":909,"Label":"59147-909 via Conventional from 59151 -> 30650","Type":"Conventional","Directional":true,"Links":[{"SourceID":59151,"TargetID":30650,"Directional":true}]},{"ID":14645,"SourceStructureID":59147,"TargetStructureID":20136,"Label":"59147-20136 via Conventional from 130468 -> 130467","Type":"Conventional","Directional":true,"Links":[{"SourceID":130468,"TargetID":130467,"Directional":true}]},{"ID":14646,"SourceStructureID":59147,"TargetStructureID":59145,"Label":"59147-59145 via Conventional from 59148 -> 59149","Type":"Conventional","Directional":true,"Links":[{"SourceID":59148,"TargetID":59149,"Directional":true}]},{"ID":14647,"SourceStructureID":59163,"TargetStructureID":8575,"Label":"59163-8575 via BC Conventional Synapse from 62440 -> 62438","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62440,"TargetID":62438,"Directional":true}]},{"ID":14648,"SourceStructureID":59211,"TargetStructureID":59223,"Label":"59211-59223 via Ribbon Synapse from 59216 -> 59234, 59232 -> 59233","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59216,"TargetID":59234,"Directional":true},{"SourceID":59232,"TargetID":59233,"Directional":true}]},{"ID":14649,"SourceStructureID":59225,"TargetStructureID":59223,"Label":"59225-59223 via Conventional from 59227 -> 59228","Type":"Conventional","Directional":true,"Links":[{"SourceID":59227,"TargetID":59228,"Directional":true}]},{"ID":14650,"SourceStructureID":59229,"TargetStructureID":6136,"Label":"59229-6136 via Conventional from 85556 -> 85557","Type":"Conventional","Directional":true,"Links":[{"SourceID":85556,"TargetID":85557,"Directional":true}]},{"ID":14651,"SourceStructureID":59229,"TargetStructureID":59251,"Label":"59229-59251 via Conventional from 59250 -> 59252","Type":"Conventional","Directional":true,"Links":[{"SourceID":59250,"TargetID":59252,"Directional":true}]},{"ID":14652,"SourceStructureID":59229,"TargetStructureID":59257,"Label":"59229-59257 via Conventional from 59256 -> 59258","Type":"Conventional","Directional":true,"Links":[{"SourceID":59256,"TargetID":59258,"Directional":true}]},{"ID":14653,"SourceStructureID":59243,"TargetStructureID":59223,"Label":"59243-59223 via Conventional from 59244 -> 59242","Type":"Conventional","Directional":true,"Links":[{"SourceID":59244,"TargetID":59242,"Directional":true}]},{"ID":14654,"SourceStructureID":59247,"TargetStructureID":7144,"Label":"59247-7144 via Conventional from 59248 -> 59246","Type":"Conventional","Directional":true,"Links":[{"SourceID":59248,"TargetID":59246,"Directional":true}]},{"ID":14655,"SourceStructureID":59251,"TargetStructureID":59254,"Label":"59251-59254 via Conventional from 59253 -> 59255","Type":"Conventional","Directional":true,"Links":[{"SourceID":59253,"TargetID":59255,"Directional":true}]},{"ID":14656,"SourceStructureID":59262,"TargetStructureID":5497,"Label":"59262-5497 via Ribbon Synapse from 62621 -> 62620, 62624 -> 62623, 62625 -> 62626","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62621,"TargetID":62620,"Directional":true},{"SourceID":62624,"TargetID":62623,"Directional":true},{"SourceID":62625,"TargetID":62626,"Directional":true}]},{"ID":14657,"SourceStructureID":59262,"TargetStructureID":59229,"Label":"59262-59229 via Ribbon Synapse from 59263 -> 59261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59263,"TargetID":59261,"Directional":true}]},{"ID":14658,"SourceStructureID":59262,"TargetStructureID":59294,"Label":"59262-59294 via Ribbon Synapse from 122437 -> 122438","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122437,"TargetID":122438,"Directional":true}]},{"ID":14659,"SourceStructureID":59262,"TargetStructureID":62627,"Label":"59262-62627 via BC Conventional Synapse from 59292 -> 62628","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59292,"TargetID":62628,"Directional":true}]},{"ID":14660,"SourceStructureID":59294,"TargetStructureID":5566,"Label":"59294-5566 via Conventional from 59298 -> 59321","Type":"Conventional","Directional":true,"Links":[{"SourceID":59298,"TargetID":59321,"Directional":true}]},{"ID":14661,"SourceStructureID":59294,"TargetStructureID":59262,"Label":"59294-59262 via Conventional from 59297 -> 122439, 59297 -> 122446","Type":"Conventional","Directional":true,"Links":[{"SourceID":59297,"TargetID":122439,"Directional":true},{"SourceID":59297,"TargetID":122446,"Directional":true}]},{"ID":14662,"SourceStructureID":59316,"TargetStructureID":5566,"Label":"59316-5566 via Conventional from 59318 -> 59317","Type":"Conventional","Directional":true,"Links":[{"SourceID":59318,"TargetID":59317,"Directional":true}]},{"ID":14663,"SourceStructureID":59326,"TargetStructureID":4877,"Label":"59326-4877 via Conventional from 59327 -> 59325","Type":"Conventional","Directional":true,"Links":[{"SourceID":59327,"TargetID":59325,"Directional":true}]},{"ID":14664,"SourceStructureID":59329,"TargetStructureID":4877,"Label":"59329-4877 via Conventional from 59330 -> 59328","Type":"Conventional","Directional":true,"Links":[{"SourceID":59330,"TargetID":59328,"Directional":true}]},{"ID":14665,"SourceStructureID":59331,"TargetStructureID":59145,"Label":"59331-59145 via Conventional from 59332 -> 59153","Type":"Conventional","Directional":true,"Links":[{"SourceID":59332,"TargetID":59153,"Directional":true}]},{"ID":14666,"SourceStructureID":59333,"TargetStructureID":5497,"Label":"59333-5497 via Conventional from 85041 -> 85043","Type":"Conventional","Directional":true,"Links":[{"SourceID":85041,"TargetID":85043,"Directional":true}]},{"ID":14667,"SourceStructureID":59333,"TargetStructureID":5500,"Label":"59333-5500 via Conventional from 59354 -> 59356","Type":"Conventional","Directional":true,"Links":[{"SourceID":59354,"TargetID":59356,"Directional":true}]},{"ID":14668,"SourceStructureID":59333,"TargetStructureID":58441,"Label":"59333-58441 via Conventional from 59352 -> 59353","Type":"Conventional","Directional":true,"Links":[{"SourceID":59352,"TargetID":59353,"Directional":true}]},{"ID":14669,"SourceStructureID":59333,"TargetStructureID":59347,"Label":"59333-59347 via Conventional from 59338 -> 59348","Type":"Conventional","Directional":true,"Links":[{"SourceID":59338,"TargetID":59348,"Directional":true}]},{"ID":14670,"SourceStructureID":59333,"TargetStructureID":85044,"Label":"59333-85044 via Conventional from 85042 -> 85047","Type":"Conventional","Directional":true,"Links":[{"SourceID":85042,"TargetID":85047,"Directional":true}]},{"ID":14671,"SourceStructureID":59333,"TargetStructureID":85053,"Label":"59333-85053 via Conventional from 85052 -> 85054","Type":"Conventional","Directional":true,"Links":[{"SourceID":85052,"TargetID":85054,"Directional":true}]},{"ID":14672,"SourceStructureID":59333,"TargetStructureID":85059,"Label":"59333-85059 via Conventional from 85058 -> 85060","Type":"Conventional","Directional":true,"Links":[{"SourceID":85058,"TargetID":85060,"Directional":true}]},{"ID":14673,"SourceStructureID":59333,"TargetStructureID":85079,"Label":"59333-85079 via Conventional from 85078 -> 85081","Type":"Conventional","Directional":true,"Links":[{"SourceID":85078,"TargetID":85081,"Directional":true}]},{"ID":14674,"SourceStructureID":59340,"TargetStructureID":58441,"Label":"59340-58441 via Conventional from 59342 -> 59343","Type":"Conventional","Directional":true,"Links":[{"SourceID":59342,"TargetID":59343,"Directional":true}]},{"ID":14675,"SourceStructureID":59362,"TargetStructureID":5435,"Label":"59362-5435 via Ribbon Synapse from 63792 -> 63793","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63792,"TargetID":63793,"Directional":true}]},{"ID":14676,"SourceStructureID":59362,"TargetStructureID":5497,"Label":"59362-5497 via Ribbon Synapse from 59370 -> 62570","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59370,"TargetID":62570,"Directional":true}]},{"ID":14677,"SourceStructureID":59362,"TargetStructureID":7859,"Label":"59362-7859 via Ribbon Synapse from 122452 -> 64638","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122452,"TargetID":64638,"Directional":true}]},{"ID":14678,"SourceStructureID":59362,"TargetStructureID":63628,"Label":"59362-63628 via Ribbon Synapse from 63795 -> 63784","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63795,"TargetID":63784,"Directional":true}]},{"ID":14679,"SourceStructureID":59371,"TargetStructureID":59362,"Label":"59371-59362 via Conventional from 59374 -> 59375","Type":"Conventional","Directional":true,"Links":[{"SourceID":59374,"TargetID":59375,"Directional":true}]},{"ID":14680,"SourceStructureID":59392,"TargetStructureID":5405,"Label":"59392-5405 via Ribbon Synapse from 59416 -> 59418","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59416,"TargetID":59418,"Directional":true}]},{"ID":14681,"SourceStructureID":59392,"TargetStructureID":5497,"Label":"59392-5497 via Ribbon Synapse from 59398 -> 62554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59398,"TargetID":62554,"Directional":true}]},{"ID":14682,"SourceStructureID":59422,"TargetStructureID":166,"Label":"59422-166 via Conventional from 59449 -> 59450","Type":"Conventional","Directional":true,"Links":[{"SourceID":59449,"TargetID":59450,"Directional":true}]},{"ID":14683,"SourceStructureID":59422,"TargetStructureID":483,"Label":"59422-483 via Conventional from 59447 -> 59448, 59459 -> 51180, 59462 -> 59463, 59465 -> 6727, 59467 -> 59468","Type":"Conventional","Directional":true,"Links":[{"SourceID":59447,"TargetID":59448,"Directional":true},{"SourceID":59459,"TargetID":51180,"Directional":true},{"SourceID":59462,"TargetID":59463,"Directional":true},{"SourceID":59465,"TargetID":6727,"Directional":true},{"SourceID":59467,"TargetID":59468,"Directional":true}]},{"ID":14684,"SourceStructureID":59422,"TargetStructureID":593,"Label":"59422-593 via Conventional from 59426 -> 28402, 59505 -> 7702, 63964 -> 63962, 66650 -> 66649","Type":"Conventional","Directional":true,"Links":[{"SourceID":59426,"TargetID":28402,"Directional":true},{"SourceID":59505,"TargetID":7702,"Directional":true},{"SourceID":63964,"TargetID":63962,"Directional":true},{"SourceID":66650,"TargetID":66649,"Directional":true}]},{"ID":14685,"SourceStructureID":59422,"TargetStructureID":5283,"Label":"59422-5283 via Conventional from 59515 -> 24052","Type":"Conventional","Directional":true,"Links":[{"SourceID":59515,"TargetID":24052,"Directional":true}]},{"ID":14686,"SourceStructureID":59422,"TargetStructureID":6156,"Label":"59422-6156 via Conventional from 59424 -> 59425, 59434 -> 28643, 117714 -> 117715","Type":"Conventional","Directional":true,"Links":[{"SourceID":59424,"TargetID":59425,"Directional":true},{"SourceID":59434,"TargetID":28643,"Directional":true},{"SourceID":117714,"TargetID":117715,"Directional":true}]},{"ID":14687,"SourceStructureID":59422,"TargetStructureID":16026,"Label":"59422-16026 via Conventional from 59516 -> 22382","Type":"Conventional","Directional":true,"Links":[{"SourceID":59516,"TargetID":22382,"Directional":true}]},{"ID":14688,"SourceStructureID":59437,"TargetStructureID":483,"Label":"59437-483 via Conventional from 59438 -> 6777","Type":"Conventional","Directional":true,"Links":[{"SourceID":59438,"TargetID":6777,"Directional":true}]},{"ID":14689,"SourceStructureID":59482,"TargetStructureID":5377,"Label":"59482-5377 via Conventional from 87033 -> 87032","Type":"Conventional","Directional":true,"Links":[{"SourceID":87033,"TargetID":87032,"Directional":true}]},{"ID":14690,"SourceStructureID":59507,"TargetStructureID":59422,"Label":"59507-59422 via Conventional from 59508 -> 59506","Type":"Conventional","Directional":true,"Links":[{"SourceID":59508,"TargetID":59506,"Directional":true}]},{"ID":14691,"SourceStructureID":59510,"TargetStructureID":59422,"Label":"59510-59422 via Conventional from 59511 -> 59509","Type":"Conventional","Directional":true,"Links":[{"SourceID":59511,"TargetID":59509,"Directional":true}]},{"ID":14692,"SourceStructureID":59518,"TargetStructureID":59422,"Label":"59518-59422 via Conventional from 59519 -> 59517","Type":"Conventional","Directional":true,"Links":[{"SourceID":59519,"TargetID":59517,"Directional":true}]},{"ID":14693,"SourceStructureID":59521,"TargetStructureID":59422,"Label":"59521-59422 via Conventional from 59522 -> 59520","Type":"Conventional","Directional":true,"Links":[{"SourceID":59522,"TargetID":59520,"Directional":true}]},{"ID":14694,"SourceStructureID":59524,"TargetStructureID":16073,"Label":"59524-16073 via Conventional from 59544 -> 32212","Type":"Conventional","Directional":true,"Links":[{"SourceID":59544,"TargetID":32212,"Directional":true}]},{"ID":14695,"SourceStructureID":59524,"TargetStructureID":59539,"Label":"59524-59539 via Conventional from 59538 -> 59540","Type":"Conventional","Directional":true,"Links":[{"SourceID":59538,"TargetID":59540,"Directional":true}]},{"ID":14696,"SourceStructureID":59535,"TargetStructureID":59524,"Label":"59535-59524 via Conventional from 59536 -> 59534","Type":"Conventional","Directional":true,"Links":[{"SourceID":59536,"TargetID":59534,"Directional":true}]},{"ID":14697,"SourceStructureID":59632,"TargetStructureID":59629,"Label":"59632-59629 via Conventional from 59633 -> 59631","Type":"Conventional","Directional":true,"Links":[{"SourceID":59633,"TargetID":59631,"Directional":true}]},{"ID":14698,"SourceStructureID":59638,"TargetStructureID":5382,"Label":"59638-5382 via Ribbon Synapse from 59640 -> 59639","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59640,"TargetID":59639,"Directional":true}]},{"ID":14699,"SourceStructureID":59715,"TargetStructureID":8580,"Label":"59715-8580 via Conventional from 59716 -> 59714","Type":"Conventional","Directional":true,"Links":[{"SourceID":59716,"TargetID":59714,"Directional":true}]},{"ID":14700,"SourceStructureID":59718,"TargetStructureID":8580,"Label":"59718-8580 via Conventional from 59719 -> 59717","Type":"Conventional","Directional":true,"Links":[{"SourceID":59719,"TargetID":59717,"Directional":true}]},{"ID":14701,"SourceStructureID":59721,"TargetStructureID":8580,"Label":"59721-8580 via Conventional from 59722 -> 59720","Type":"Conventional","Directional":true,"Links":[{"SourceID":59722,"TargetID":59720,"Directional":true}]},{"ID":14702,"SourceStructureID":59726,"TargetStructureID":8580,"Label":"59726-8580 via Conventional from 59727 -> 59725","Type":"Conventional","Directional":true,"Links":[{"SourceID":59727,"TargetID":59725,"Directional":true}]},{"ID":14703,"SourceStructureID":59731,"TargetStructureID":8580,"Label":"59731-8580 via Conventional from 59732 -> 59730","Type":"Conventional","Directional":true,"Links":[{"SourceID":59732,"TargetID":59730,"Directional":true}]},{"ID":14704,"SourceStructureID":59734,"TargetStructureID":8580,"Label":"59734-8580 via Conventional from 59735 -> 59733","Type":"Conventional","Directional":true,"Links":[{"SourceID":59735,"TargetID":59733,"Directional":true}]},{"ID":14705,"SourceStructureID":59737,"TargetStructureID":8580,"Label":"59737-8580 via Conventional from 59738 -> 59736","Type":"Conventional","Directional":true,"Links":[{"SourceID":59738,"TargetID":59736,"Directional":true}]},{"ID":14706,"SourceStructureID":59751,"TargetStructureID":8580,"Label":"59751-8580 via Conventional from 59752 -> 59750","Type":"Conventional","Directional":true,"Links":[{"SourceID":59752,"TargetID":59750,"Directional":true}]},{"ID":14707,"SourceStructureID":59756,"TargetStructureID":8580,"Label":"59756-8580 via Conventional from 59757 -> 59755","Type":"Conventional","Directional":true,"Links":[{"SourceID":59757,"TargetID":59755,"Directional":true}]},{"ID":14708,"SourceStructureID":59761,"TargetStructureID":8580,"Label":"59761-8580 via Conventional from 59762 -> 59760","Type":"Conventional","Directional":true,"Links":[{"SourceID":59762,"TargetID":59760,"Directional":true}]},{"ID":14709,"SourceStructureID":59763,"TargetStructureID":8580,"Label":"59763-8580 via Conventional from 59764 -> 59759","Type":"Conventional","Directional":true,"Links":[{"SourceID":59764,"TargetID":59759,"Directional":true}]},{"ID":14710,"SourceStructureID":59766,"TargetStructureID":8580,"Label":"59766-8580 via Conventional from 59767 -> 59765","Type":"Conventional","Directional":true,"Links":[{"SourceID":59767,"TargetID":59765,"Directional":true}]},{"ID":14711,"SourceStructureID":59769,"TargetStructureID":8580,"Label":"59769-8580 via Conventional from 59770 -> 59768","Type":"Conventional","Directional":true,"Links":[{"SourceID":59770,"TargetID":59768,"Directional":true}]},{"ID":14712,"SourceStructureID":59772,"TargetStructureID":8580,"Label":"59772-8580 via Conventional from 59773 -> 59771","Type":"Conventional","Directional":true,"Links":[{"SourceID":59773,"TargetID":59771,"Directional":true}]},{"ID":14713,"SourceStructureID":59775,"TargetStructureID":8580,"Label":"59775-8580 via Conventional from 59776 -> 59774","Type":"Conventional","Directional":true,"Links":[{"SourceID":59776,"TargetID":59774,"Directional":true}]},{"ID":14714,"SourceStructureID":59779,"TargetStructureID":8580,"Label":"59779-8580 via Conventional from 59780 -> 59778","Type":"Conventional","Directional":true,"Links":[{"SourceID":59780,"TargetID":59778,"Directional":true}]},{"ID":14715,"SourceStructureID":59782,"TargetStructureID":8580,"Label":"59782-8580 via Conventional from 59783 -> 59781","Type":"Conventional","Directional":true,"Links":[{"SourceID":59783,"TargetID":59781,"Directional":true}]},{"ID":14716,"SourceStructureID":59785,"TargetStructureID":8580,"Label":"59785-8580 via Conventional from 59786 -> 59784","Type":"Conventional","Directional":true,"Links":[{"SourceID":59786,"TargetID":59784,"Directional":true}]},{"ID":14717,"SourceStructureID":59796,"TargetStructureID":8580,"Label":"59796-8580 via Conventional from 59797 -> 59795","Type":"Conventional","Directional":true,"Links":[{"SourceID":59797,"TargetID":59795,"Directional":true}]},{"ID":14718,"SourceStructureID":59801,"TargetStructureID":8580,"Label":"59801-8580 via Conventional from 59802 -> 59800","Type":"Conventional","Directional":true,"Links":[{"SourceID":59802,"TargetID":59800,"Directional":true}]},{"ID":14719,"SourceStructureID":59804,"TargetStructureID":8580,"Label":"59804-8580 via Conventional from 59805 -> 59803","Type":"Conventional","Directional":true,"Links":[{"SourceID":59805,"TargetID":59803,"Directional":true}]},{"ID":14720,"SourceStructureID":59811,"TargetStructureID":8580,"Label":"59811-8580 via Conventional from 59812 -> 59809","Type":"Conventional","Directional":true,"Links":[{"SourceID":59812,"TargetID":59809,"Directional":true}]},{"ID":14721,"SourceStructureID":59813,"TargetStructureID":8580,"Label":"59813-8580 via Conventional from 59814 -> 59810","Type":"Conventional","Directional":true,"Links":[{"SourceID":59814,"TargetID":59810,"Directional":true}]},{"ID":14722,"SourceStructureID":59816,"TargetStructureID":8580,"Label":"59816-8580 via Conventional from 59817 -> 59815","Type":"Conventional","Directional":true,"Links":[{"SourceID":59817,"TargetID":59815,"Directional":true}]},{"ID":14723,"SourceStructureID":59819,"TargetStructureID":8580,"Label":"59819-8580 via Conventional from 59820 -> 59818","Type":"Conventional","Directional":true,"Links":[{"SourceID":59820,"TargetID":59818,"Directional":true}]},{"ID":14724,"SourceStructureID":59822,"TargetStructureID":8580,"Label":"59822-8580 via Conventional from 59823 -> 59821","Type":"Conventional","Directional":true,"Links":[{"SourceID":59823,"TargetID":59821,"Directional":true}]},{"ID":14725,"SourceStructureID":59825,"TargetStructureID":8580,"Label":"59825-8580 via Conventional from 59826 -> 59824","Type":"Conventional","Directional":true,"Links":[{"SourceID":59826,"TargetID":59824,"Directional":true}]},{"ID":14726,"SourceStructureID":59830,"TargetStructureID":8580,"Label":"59830-8580 via Conventional from 59831 -> 59829","Type":"Conventional","Directional":true,"Links":[{"SourceID":59831,"TargetID":59829,"Directional":true}]},{"ID":14727,"SourceStructureID":59837,"TargetStructureID":8580,"Label":"59837-8580 via Conventional from 59839 -> 59838","Type":"Conventional","Directional":true,"Links":[{"SourceID":59839,"TargetID":59838,"Directional":true}]},{"ID":14728,"SourceStructureID":59841,"TargetStructureID":8580,"Label":"59841-8580 via Conventional from 59842 -> 59840","Type":"Conventional","Directional":true,"Links":[{"SourceID":59842,"TargetID":59840,"Directional":true}]},{"ID":14729,"SourceStructureID":59847,"TargetStructureID":59843,"Label":"59847-59843 via Conventional from 59848 -> 59846","Type":"Conventional","Directional":true,"Links":[{"SourceID":59848,"TargetID":59846,"Directional":true}]},{"ID":14730,"SourceStructureID":59851,"TargetStructureID":8580,"Label":"59851-8580 via Conventional from 59852 -> 59850","Type":"Conventional","Directional":true,"Links":[{"SourceID":59852,"TargetID":59850,"Directional":true}]},{"ID":14731,"SourceStructureID":59854,"TargetStructureID":8580,"Label":"59854-8580 via Conventional from 59855 -> 59853","Type":"Conventional","Directional":true,"Links":[{"SourceID":59855,"TargetID":59853,"Directional":true}]},{"ID":14732,"SourceStructureID":59857,"TargetStructureID":8580,"Label":"59857-8580 via Conventional from 59858 -> 59856","Type":"Conventional","Directional":true,"Links":[{"SourceID":59858,"TargetID":59856,"Directional":true}]},{"ID":14733,"SourceStructureID":59862,"TargetStructureID":8580,"Label":"59862-8580 via Conventional from 59863 -> 59861","Type":"Conventional","Directional":true,"Links":[{"SourceID":59863,"TargetID":59861,"Directional":true}]},{"ID":14734,"SourceStructureID":59865,"TargetStructureID":8580,"Label":"59865-8580 via Conventional from 59866 -> 59864","Type":"Conventional","Directional":true,"Links":[{"SourceID":59866,"TargetID":59864,"Directional":true}]},{"ID":14735,"SourceStructureID":59868,"TargetStructureID":8580,"Label":"59868-8580 via Conventional from 59869 -> 59867","Type":"Conventional","Directional":true,"Links":[{"SourceID":59869,"TargetID":59867,"Directional":true}]},{"ID":14736,"SourceStructureID":59872,"TargetStructureID":8580,"Label":"59872-8580 via Conventional from 59873 -> 59870","Type":"Conventional","Directional":true,"Links":[{"SourceID":59873,"TargetID":59870,"Directional":true}]},{"ID":14737,"SourceStructureID":59890,"TargetStructureID":8580,"Label":"59890-8580 via Conventional from 59891 -> 59660","Type":"Conventional","Directional":true,"Links":[{"SourceID":59891,"TargetID":59660,"Directional":true}]},{"ID":14738,"SourceStructureID":59896,"TargetStructureID":5491,"Label":"59896-5491 via Conventional from 59897 -> 41950","Type":"Conventional","Directional":true,"Links":[{"SourceID":59897,"TargetID":41950,"Directional":true}]},{"ID":14739,"SourceStructureID":59904,"TargetStructureID":8578,"Label":"59904-8578 via Conventional from 59905 -> 59903","Type":"Conventional","Directional":true,"Links":[{"SourceID":59905,"TargetID":59903,"Directional":true}]},{"ID":14740,"SourceStructureID":59910,"TargetStructureID":8578,"Label":"59910-8578 via Conventional from 59911 -> 59909","Type":"Conventional","Directional":true,"Links":[{"SourceID":59911,"TargetID":59909,"Directional":true}]},{"ID":14741,"SourceStructureID":59913,"TargetStructureID":8578,"Label":"59913-8578 via Conventional from 59914 -> 59912","Type":"Conventional","Directional":true,"Links":[{"SourceID":59914,"TargetID":59912,"Directional":true}]},{"ID":14742,"SourceStructureID":59916,"TargetStructureID":8578,"Label":"59916-8578 via BC Conventional Synapse from 59917 -> 59915","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":59917,"TargetID":59915,"Directional":true}]},{"ID":14743,"SourceStructureID":59919,"TargetStructureID":8578,"Label":"59919-8578 via Ribbon Synapse from 59920 -> 59918","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":59920,"TargetID":59918,"Directional":true}]},{"ID":14744,"SourceStructureID":59922,"TargetStructureID":8578,"Label":"59922-8578 via Conventional from 59923 -> 59921","Type":"Conventional","Directional":true,"Links":[{"SourceID":59923,"TargetID":59921,"Directional":true}]},{"ID":14745,"SourceStructureID":59929,"TargetStructureID":8578,"Label":"59929-8578 via Conventional from 59930 -> 59928","Type":"Conventional","Directional":true,"Links":[{"SourceID":59930,"TargetID":59928,"Directional":true}]},{"ID":14746,"SourceStructureID":59932,"TargetStructureID":8578,"Label":"59932-8578 via Conventional from 59933 -> 59931","Type":"Conventional","Directional":true,"Links":[{"SourceID":59933,"TargetID":59931,"Directional":true}]},{"ID":14747,"SourceStructureID":59935,"TargetStructureID":8578,"Label":"59935-8578 via Conventional from 59936 -> 59934","Type":"Conventional","Directional":true,"Links":[{"SourceID":59936,"TargetID":59934,"Directional":true}]},{"ID":14748,"SourceStructureID":59940,"TargetStructureID":40480,"Label":"59940-40480 via Conventional from 59941 -> 59939","Type":"Conventional","Directional":true,"Links":[{"SourceID":59941,"TargetID":59939,"Directional":true}]},{"ID":14749,"SourceStructureID":59943,"TargetStructureID":40480,"Label":"59943-40480 via Conventional from 59944 -> 59942","Type":"Conventional","Directional":true,"Links":[{"SourceID":59944,"TargetID":59942,"Directional":true}]},{"ID":14750,"SourceStructureID":59947,"TargetStructureID":40480,"Label":"59947-40480 via Conventional from 59948 -> 59946","Type":"Conventional","Directional":true,"Links":[{"SourceID":59948,"TargetID":59946,"Directional":true}]},{"ID":14751,"SourceStructureID":59953,"TargetStructureID":40480,"Label":"59953-40480 via Conventional from 59954 -> 59952","Type":"Conventional","Directional":true,"Links":[{"SourceID":59954,"TargetID":59952,"Directional":true}]},{"ID":14752,"SourceStructureID":59957,"TargetStructureID":40480,"Label":"59957-40480 via Conventional from 59958 -> 59956","Type":"Conventional","Directional":true,"Links":[{"SourceID":59958,"TargetID":59956,"Directional":true}]},{"ID":14753,"SourceStructureID":59960,"TargetStructureID":40480,"Label":"59960-40480 via Conventional from 59961 -> 59959","Type":"Conventional","Directional":true,"Links":[{"SourceID":59961,"TargetID":59959,"Directional":true}]},{"ID":14754,"SourceStructureID":59963,"TargetStructureID":40480,"Label":"59963-40480 via Conventional from 59964 -> 59962","Type":"Conventional","Directional":true,"Links":[{"SourceID":59964,"TargetID":59962,"Directional":true}]},{"ID":14755,"SourceStructureID":59966,"TargetStructureID":59963,"Label":"59966-59963 via Conventional from 59968 -> 59965","Type":"Conventional","Directional":true,"Links":[{"SourceID":59968,"TargetID":59965,"Directional":true}]},{"ID":14756,"SourceStructureID":60067,"TargetStructureID":173,"Label":"60067-173 via Conventional from 60068 -> 60066","Type":"Conventional","Directional":true,"Links":[{"SourceID":60068,"TargetID":60066,"Directional":true}]},{"ID":14757,"SourceStructureID":60074,"TargetStructureID":8720,"Label":"60074-8720 via Conventional from 60075 -> 15293","Type":"Conventional","Directional":true,"Links":[{"SourceID":60075,"TargetID":15293,"Directional":true}]},{"ID":14758,"SourceStructureID":60078,"TargetStructureID":8720,"Label":"60078-8720 via Conventional from 60079 -> 60077","Type":"Conventional","Directional":true,"Links":[{"SourceID":60079,"TargetID":60077,"Directional":true}]},{"ID":14759,"SourceStructureID":60083,"TargetStructureID":8720,"Label":"60083-8720 via Conventional from 60084 -> 60082","Type":"Conventional","Directional":true,"Links":[{"SourceID":60084,"TargetID":60082,"Directional":true}]},{"ID":14760,"SourceStructureID":60083,"TargetStructureID":67354,"Label":"60083-67354 via Conventional from 91536 -> 91535","Type":"Conventional","Directional":true,"Links":[{"SourceID":91536,"TargetID":91535,"Directional":true}]},{"ID":14761,"SourceStructureID":60086,"TargetStructureID":8720,"Label":"60086-8720 via Conventional from 60087 -> 15307","Type":"Conventional","Directional":true,"Links":[{"SourceID":60087,"TargetID":15307,"Directional":true}]},{"ID":14762,"SourceStructureID":60088,"TargetStructureID":8720,"Label":"60088-8720 via Conventional from 60089 -> 15309","Type":"Conventional","Directional":true,"Links":[{"SourceID":60089,"TargetID":15309,"Directional":true}]},{"ID":14763,"SourceStructureID":60088,"TargetStructureID":65267,"Label":"60088-65267 via Conventional from 65300 -> 65299","Type":"Conventional","Directional":true,"Links":[{"SourceID":65300,"TargetID":65299,"Directional":true}]},{"ID":14764,"SourceStructureID":60090,"TargetStructureID":8720,"Label":"60090-8720 via Conventional from 60091 -> 15308","Type":"Conventional","Directional":true,"Links":[{"SourceID":60091,"TargetID":15308,"Directional":true}]},{"ID":14765,"SourceStructureID":60094,"TargetStructureID":8720,"Label":"60094-8720 via Ribbon Synapse from 60095 -> 15311","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60095,"TargetID":15311,"Directional":true}]},{"ID":14766,"SourceStructureID":60098,"TargetStructureID":8720,"Label":"60098-8720 via Conventional from 60099 -> 60097","Type":"Conventional","Directional":true,"Links":[{"SourceID":60099,"TargetID":60097,"Directional":true}]},{"ID":14767,"SourceStructureID":60100,"TargetStructureID":8720,"Label":"60100-8720 via Conventional from 60101 -> 15312","Type":"Conventional","Directional":true,"Links":[{"SourceID":60101,"TargetID":15312,"Directional":true}]},{"ID":14768,"SourceStructureID":60104,"TargetStructureID":8720,"Label":"60104-8720 via Conventional from 60105 -> 15294","Type":"Conventional","Directional":true,"Links":[{"SourceID":60105,"TargetID":15294,"Directional":true}]},{"ID":14769,"SourceStructureID":60106,"TargetStructureID":8720,"Label":"60106-8720 via Conventional from 60107 -> 15297","Type":"Conventional","Directional":true,"Links":[{"SourceID":60107,"TargetID":15297,"Directional":true}]},{"ID":14770,"SourceStructureID":60115,"TargetStructureID":8720,"Label":"60115-8720 via Conventional from 60116 -> 60114","Type":"Conventional","Directional":true,"Links":[{"SourceID":60116,"TargetID":60114,"Directional":true}]},{"ID":14771,"SourceStructureID":60191,"TargetStructureID":483,"Label":"60191-483 via Conventional from 60192 -> 6781","Type":"Conventional","Directional":true,"Links":[{"SourceID":60192,"TargetID":6781,"Directional":true}]},{"ID":14772,"SourceStructureID":60193,"TargetStructureID":483,"Label":"60193-483 via Conventional from 60194 -> 6790","Type":"Conventional","Directional":true,"Links":[{"SourceID":60194,"TargetID":6790,"Directional":true}]},{"ID":14773,"SourceStructureID":60200,"TargetStructureID":483,"Label":"60200-483 via Conventional from 60203 -> 6788","Type":"Conventional","Directional":true,"Links":[{"SourceID":60203,"TargetID":6788,"Directional":true}]},{"ID":14774,"SourceStructureID":60211,"TargetStructureID":483,"Label":"60211-483 via Conventional from 60212 -> 6792","Type":"Conventional","Directional":true,"Links":[{"SourceID":60212,"TargetID":6792,"Directional":true}]},{"ID":14775,"SourceStructureID":60215,"TargetStructureID":483,"Label":"60215-483 via Conventional from 60220 -> 6793","Type":"Conventional","Directional":true,"Links":[{"SourceID":60220,"TargetID":6793,"Directional":true}]},{"ID":14776,"SourceStructureID":60218,"TargetStructureID":483,"Label":"60218-483 via Conventional from 60219 -> 6799","Type":"Conventional","Directional":true,"Links":[{"SourceID":60219,"TargetID":6799,"Directional":true}]},{"ID":14777,"SourceStructureID":60221,"TargetStructureID":483,"Label":"60221-483 via Conventional from 60222 -> 6795","Type":"Conventional","Directional":true,"Links":[{"SourceID":60222,"TargetID":6795,"Directional":true}]},{"ID":14778,"SourceStructureID":60225,"TargetStructureID":483,"Label":"60225-483 via Conventional from 60226 -> 6800","Type":"Conventional","Directional":true,"Links":[{"SourceID":60226,"TargetID":6800,"Directional":true}]},{"ID":14779,"SourceStructureID":60232,"TargetStructureID":60229,"Label":"60232-60229 via Conventional from 60233 -> 60231","Type":"Conventional","Directional":true,"Links":[{"SourceID":60233,"TargetID":60231,"Directional":true}]},{"ID":14780,"SourceStructureID":60236,"TargetStructureID":483,"Label":"60236-483 via Conventional from 60237 -> 60235","Type":"Conventional","Directional":true,"Links":[{"SourceID":60237,"TargetID":60235,"Directional":true}]},{"ID":14781,"SourceStructureID":60239,"TargetStructureID":483,"Label":"60239-483 via Conventional from 60240 -> 60238","Type":"Conventional","Directional":true,"Links":[{"SourceID":60240,"TargetID":60238,"Directional":true}]},{"ID":14782,"SourceStructureID":60243,"TargetStructureID":5528,"Label":"60243-5528 via Conventional from 60245 -> 60249","Type":"Conventional","Directional":true,"Links":[{"SourceID":60245,"TargetID":60249,"Directional":true}]},{"ID":14783,"SourceStructureID":60243,"TargetStructureID":8720,"Label":"60243-8720 via Conventional from 60244 -> 60242","Type":"Conventional","Directional":true,"Links":[{"SourceID":60244,"TargetID":60242,"Directional":true}]},{"ID":14784,"SourceStructureID":60246,"TargetStructureID":5528,"Label":"60246-5528 via Conventional from 60247 -> 8264","Type":"Conventional","Directional":true,"Links":[{"SourceID":60247,"TargetID":8264,"Directional":true}]},{"ID":14785,"SourceStructureID":60252,"TargetStructureID":8720,"Label":"60252-8720 via Conventional from 60253 -> 60251","Type":"Conventional","Directional":true,"Links":[{"SourceID":60253,"TargetID":60251,"Directional":true}]},{"ID":14786,"SourceStructureID":60256,"TargetStructureID":8720,"Label":"60256-8720 via Conventional from 60257 -> 60255","Type":"Conventional","Directional":true,"Links":[{"SourceID":60257,"TargetID":60255,"Directional":true}]},{"ID":14787,"SourceStructureID":60260,"TargetStructureID":8720,"Label":"60260-8720 via Conventional from 60261 -> 60259","Type":"Conventional","Directional":true,"Links":[{"SourceID":60261,"TargetID":60259,"Directional":true}]},{"ID":14788,"SourceStructureID":60264,"TargetStructureID":431,"Label":"60264-431 via Conventional from 60266 -> 12686","Type":"Conventional","Directional":true,"Links":[{"SourceID":60266,"TargetID":12686,"Directional":true}]},{"ID":14789,"SourceStructureID":60264,"TargetStructureID":8720,"Label":"60264-8720 via Conventional from 60265 -> 60263","Type":"Conventional","Directional":true,"Links":[{"SourceID":60265,"TargetID":60263,"Directional":true}]},{"ID":14790,"SourceStructureID":60272,"TargetStructureID":440,"Label":"60272-440 via Conventional from 60274 -> 60271","Type":"Conventional","Directional":true,"Links":[{"SourceID":60274,"TargetID":60271,"Directional":true}]},{"ID":14791,"SourceStructureID":60288,"TargetStructureID":440,"Label":"60288-440 via Conventional from 60289 -> 60287","Type":"Conventional","Directional":true,"Links":[{"SourceID":60289,"TargetID":60287,"Directional":true}]},{"ID":14792,"SourceStructureID":60306,"TargetStructureID":440,"Label":"60306-440 via Conventional from 60307 -> 60305","Type":"Conventional","Directional":true,"Links":[{"SourceID":60307,"TargetID":60305,"Directional":true}]},{"ID":14793,"SourceStructureID":60328,"TargetStructureID":8720,"Label":"60328-8720 via Conventional from 60329 -> 60327","Type":"Conventional","Directional":true,"Links":[{"SourceID":60329,"TargetID":60327,"Directional":true}]},{"ID":14794,"SourceStructureID":60331,"TargetStructureID":483,"Label":"60331-483 via Conventional from 60332 -> 6796","Type":"Conventional","Directional":true,"Links":[{"SourceID":60332,"TargetID":6796,"Directional":true}]},{"ID":14795,"SourceStructureID":60337,"TargetStructureID":483,"Label":"60337-483 via Conventional from 60342 -> 60343","Type":"Conventional","Directional":true,"Links":[{"SourceID":60342,"TargetID":60343,"Directional":true}]},{"ID":14796,"SourceStructureID":60344,"TargetStructureID":483,"Label":"60344-483 via Conventional from 60345 -> 6809","Type":"Conventional","Directional":true,"Links":[{"SourceID":60345,"TargetID":6809,"Directional":true}]},{"ID":14797,"SourceStructureID":60346,"TargetStructureID":483,"Label":"60346-483 via Conventional from 60347 -> 6807","Type":"Conventional","Directional":true,"Links":[{"SourceID":60347,"TargetID":6807,"Directional":true}]},{"ID":14798,"SourceStructureID":60348,"TargetStructureID":483,"Label":"60348-483 via Conventional from 60349 -> 6810","Type":"Conventional","Directional":true,"Links":[{"SourceID":60349,"TargetID":6810,"Directional":true}]},{"ID":14799,"SourceStructureID":60350,"TargetStructureID":483,"Label":"60350-483 via Conventional from 60351 -> 6808","Type":"Conventional","Directional":true,"Links":[{"SourceID":60351,"TargetID":6808,"Directional":true}]},{"ID":14800,"SourceStructureID":60354,"TargetStructureID":483,"Label":"60354-483 via Conventional from 60355 -> 6815","Type":"Conventional","Directional":true,"Links":[{"SourceID":60355,"TargetID":6815,"Directional":true}]},{"ID":14801,"SourceStructureID":60381,"TargetStructureID":992,"Label":"60381-992 via Conventional from 60382 -> 994","Type":"Conventional","Directional":true,"Links":[{"SourceID":60382,"TargetID":994,"Directional":true}]},{"ID":14802,"SourceStructureID":60381,"TargetStructureID":60386,"Label":"60381-60386 via Conventional from 60385 -> 60387","Type":"Conventional","Directional":true,"Links":[{"SourceID":60385,"TargetID":60387,"Directional":true}]},{"ID":14803,"SourceStructureID":60389,"TargetStructureID":60386,"Label":"60389-60386 via Conventional from 60390 -> 60388","Type":"Conventional","Directional":true,"Links":[{"SourceID":60390,"TargetID":60388,"Directional":true}]},{"ID":14804,"SourceStructureID":60424,"TargetStructureID":514,"Label":"60424-514 via Conventional from 60425 -> 15468","Type":"Conventional","Directional":true,"Links":[{"SourceID":60425,"TargetID":15468,"Directional":true}]},{"ID":14805,"SourceStructureID":60426,"TargetStructureID":514,"Label":"60426-514 via Conventional from 60427 -> 15467","Type":"Conventional","Directional":true,"Links":[{"SourceID":60427,"TargetID":15467,"Directional":true}]},{"ID":14806,"SourceStructureID":60428,"TargetStructureID":514,"Label":"60428-514 via Conventional from 60429 -> 1156","Type":"Conventional","Directional":true,"Links":[{"SourceID":60429,"TargetID":1156,"Directional":true}]},{"ID":14807,"SourceStructureID":60430,"TargetStructureID":514,"Label":"60430-514 via Conventional from 60431 -> 1145","Type":"Conventional","Directional":true,"Links":[{"SourceID":60431,"TargetID":1145,"Directional":true}]},{"ID":14808,"SourceStructureID":60432,"TargetStructureID":8485,"Label":"60432-8485 via Conventional from 60433 -> 15369","Type":"Conventional","Directional":true,"Links":[{"SourceID":60433,"TargetID":15369,"Directional":true}]},{"ID":14809,"SourceStructureID":60434,"TargetStructureID":8485,"Label":"60434-8485 via Conventional from 60435 -> 15368","Type":"Conventional","Directional":true,"Links":[{"SourceID":60435,"TargetID":15368,"Directional":true}]},{"ID":14810,"SourceStructureID":60436,"TargetStructureID":514,"Label":"60436-514 via Conventional from 60437 -> 8941","Type":"Conventional","Directional":true,"Links":[{"SourceID":60437,"TargetID":8941,"Directional":true}]},{"ID":14811,"SourceStructureID":60438,"TargetStructureID":514,"Label":"60438-514 via Conventional from 60439 -> 3236","Type":"Conventional","Directional":true,"Links":[{"SourceID":60439,"TargetID":3236,"Directional":true}]},{"ID":14812,"SourceStructureID":60449,"TargetStructureID":514,"Label":"60449-514 via Conventional from 60450 -> 11669","Type":"Conventional","Directional":true,"Links":[{"SourceID":60450,"TargetID":11669,"Directional":true}]},{"ID":14813,"SourceStructureID":60451,"TargetStructureID":514,"Label":"60451-514 via Conventional from 60452 -> 1140","Type":"Conventional","Directional":true,"Links":[{"SourceID":60452,"TargetID":1140,"Directional":true}]},{"ID":14814,"SourceStructureID":60454,"TargetStructureID":597,"Label":"60454-597 via Conventional from 60455 -> 60453","Type":"Conventional","Directional":true,"Links":[{"SourceID":60455,"TargetID":60453,"Directional":true}]},{"ID":14815,"SourceStructureID":60457,"TargetStructureID":597,"Label":"60457-597 via Conventional from 60458 -> 60456","Type":"Conventional","Directional":true,"Links":[{"SourceID":60458,"TargetID":60456,"Directional":true}]},{"ID":14816,"SourceStructureID":60460,"TargetStructureID":597,"Label":"60460-597 via Conventional from 60461 -> 60459","Type":"Conventional","Directional":true,"Links":[{"SourceID":60461,"TargetID":60459,"Directional":true}]},{"ID":14817,"SourceStructureID":60463,"TargetStructureID":597,"Label":"60463-597 via Conventional from 60464 -> 60462","Type":"Conventional","Directional":true,"Links":[{"SourceID":60464,"TargetID":60462,"Directional":true}]},{"ID":14818,"SourceStructureID":60466,"TargetStructureID":597,"Label":"60466-597 via Conventional from 60467 -> 60465","Type":"Conventional","Directional":true,"Links":[{"SourceID":60467,"TargetID":60465,"Directional":true}]},{"ID":14819,"SourceStructureID":60484,"TargetStructureID":597,"Label":"60484-597 via Conventional from 60485 -> 60483","Type":"Conventional","Directional":true,"Links":[{"SourceID":60485,"TargetID":60483,"Directional":true}]},{"ID":14820,"SourceStructureID":60487,"TargetStructureID":597,"Label":"60487-597 via Conventional from 60488 -> 60486","Type":"Conventional","Directional":true,"Links":[{"SourceID":60488,"TargetID":60486,"Directional":true}]},{"ID":14821,"SourceStructureID":60503,"TargetStructureID":40919,"Label":"60503-40919 via Conventional from 60504 -> 60502","Type":"Conventional","Directional":true,"Links":[{"SourceID":60504,"TargetID":60502,"Directional":true}]},{"ID":14822,"SourceStructureID":60519,"TargetStructureID":304,"Label":"60519-304 via Conventional from 60520 -> 60518","Type":"Conventional","Directional":true,"Links":[{"SourceID":60520,"TargetID":60518,"Directional":true}]},{"ID":14823,"SourceStructureID":60523,"TargetStructureID":517,"Label":"60523-517 via Conventional from 60524 -> 60522","Type":"Conventional","Directional":true,"Links":[{"SourceID":60524,"TargetID":60522,"Directional":true}]},{"ID":14824,"SourceStructureID":60535,"TargetStructureID":54744,"Label":"60535-54744 via Conventional from 60536 -> 54753","Type":"Conventional","Directional":true,"Links":[{"SourceID":60536,"TargetID":54753,"Directional":true}]},{"ID":14825,"SourceStructureID":60542,"TargetStructureID":60535,"Label":"60542-60535 via Conventional from 60543 -> 60541","Type":"Conventional","Directional":true,"Links":[{"SourceID":60543,"TargetID":60541,"Directional":true}]},{"ID":14826,"SourceStructureID":60547,"TargetStructureID":43130,"Label":"60547-43130 via Conventional from 60548 -> 60546","Type":"Conventional","Directional":true,"Links":[{"SourceID":60548,"TargetID":60546,"Directional":true}]},{"ID":14827,"SourceStructureID":60549,"TargetStructureID":4567,"Label":"60549-4567 via Conventional from 60551 -> 60555","Type":"Conventional","Directional":true,"Links":[{"SourceID":60551,"TargetID":60555,"Directional":true}]},{"ID":14828,"SourceStructureID":60549,"TargetStructureID":5281,"Label":"60549-5281 via Conventional from 60550 -> 36775","Type":"Conventional","Directional":true,"Links":[{"SourceID":60550,"TargetID":36775,"Directional":true}]},{"ID":14829,"SourceStructureID":60556,"TargetStructureID":5281,"Label":"60556-5281 via Conventional from 60557 -> 36778","Type":"Conventional","Directional":true,"Links":[{"SourceID":60557,"TargetID":36778,"Directional":true}]},{"ID":14830,"SourceStructureID":60558,"TargetStructureID":5281,"Label":"60558-5281 via Conventional from 60559 -> 36790","Type":"Conventional","Directional":true,"Links":[{"SourceID":60559,"TargetID":36790,"Directional":true}]},{"ID":14831,"SourceStructureID":60558,"TargetStructureID":7113,"Label":"60558-7113 via Conventional from 60562 -> 60569","Type":"Conventional","Directional":true,"Links":[{"SourceID":60562,"TargetID":60569,"Directional":true}]},{"ID":14832,"SourceStructureID":60572,"TargetStructureID":5454,"Label":"60572-5454 via Conventional from 60573 -> 38433","Type":"Conventional","Directional":true,"Links":[{"SourceID":60573,"TargetID":38433,"Directional":true}]},{"ID":14833,"SourceStructureID":60645,"TargetStructureID":166,"Label":"60645-166 via Conventional from 60650 -> 60651","Type":"Conventional","Directional":true,"Links":[{"SourceID":60650,"TargetID":60651,"Directional":true}]},{"ID":14834,"SourceStructureID":60645,"TargetStructureID":485,"Label":"60645-485 via Conventional from 101366 -> 101365","Type":"Conventional","Directional":true,"Links":[{"SourceID":101366,"TargetID":101365,"Directional":true}]},{"ID":14835,"SourceStructureID":60645,"TargetStructureID":6156,"Label":"60645-6156 via Conventional from 60647 -> 60644","Type":"Conventional","Directional":true,"Links":[{"SourceID":60647,"TargetID":60644,"Directional":true}]},{"ID":14836,"SourceStructureID":60657,"TargetStructureID":5118,"Label":"60657-5118 via Conventional from 61432 -> 6515","Type":"Conventional","Directional":true,"Links":[{"SourceID":61432,"TargetID":6515,"Directional":true}]},{"ID":14837,"SourceStructureID":60657,"TargetStructureID":6156,"Label":"60657-6156 via Conventional from 60658 -> 28679","Type":"Conventional","Directional":true,"Links":[{"SourceID":60658,"TargetID":28679,"Directional":true}]},{"ID":14838,"SourceStructureID":60657,"TargetStructureID":8575,"Label":"60657-8575 via Conventional from 61431 -> 17382, 61434 -> 62080","Type":"Conventional","Directional":true,"Links":[{"SourceID":61431,"TargetID":17382,"Directional":true},{"SourceID":61434,"TargetID":62080,"Directional":true}]},{"ID":14839,"SourceStructureID":60657,"TargetStructureID":61439,"Label":"60657-61439 via Conventional from 61438 -> 61444, 61443 -> 61442","Type":"Conventional","Directional":true,"Links":[{"SourceID":61438,"TargetID":61444,"Directional":true},{"SourceID":61443,"TargetID":61442,"Directional":true}]},{"ID":14840,"SourceStructureID":60657,"TargetStructureID":61450,"Label":"60657-61450 via Conventional from 61449 -> 61452","Type":"Conventional","Directional":true,"Links":[{"SourceID":61449,"TargetID":61452,"Directional":true}]},{"ID":14841,"SourceStructureID":60840,"TargetStructureID":591,"Label":"60840-591 via Conventional from 60841 -> 10075","Type":"Conventional","Directional":true,"Links":[{"SourceID":60841,"TargetID":10075,"Directional":true}]},{"ID":14842,"SourceStructureID":60863,"TargetStructureID":11031,"Label":"60863-11031 via Conventional from 60866 -> 60868","Type":"Conventional","Directional":true,"Links":[{"SourceID":60866,"TargetID":60868,"Directional":true}]},{"ID":14843,"SourceStructureID":60873,"TargetStructureID":6169,"Label":"60873-6169 via Conventional from 60874 -> 60875","Type":"Conventional","Directional":true,"Links":[{"SourceID":60874,"TargetID":60875,"Directional":true}]},{"ID":14844,"SourceStructureID":60873,"TargetStructureID":11031,"Label":"60873-11031 via Conventional from 60876 -> 60877","Type":"Conventional","Directional":true,"Links":[{"SourceID":60876,"TargetID":60877,"Directional":true}]},{"ID":14845,"SourceStructureID":60879,"TargetStructureID":12897,"Label":"60879-12897 via Conventional from 60880 -> 60878","Type":"Conventional","Directional":true,"Links":[{"SourceID":60880,"TargetID":60878,"Directional":true}]},{"ID":14846,"SourceStructureID":60893,"TargetStructureID":6169,"Label":"60893-6169 via Conventional from 60894 -> 23040","Type":"Conventional","Directional":true,"Links":[{"SourceID":60894,"TargetID":23040,"Directional":true}]},{"ID":14847,"SourceStructureID":60895,"TargetStructureID":6169,"Label":"60895-6169 via Conventional from 60896 -> 23041","Type":"Conventional","Directional":true,"Links":[{"SourceID":60896,"TargetID":23041,"Directional":true}]},{"ID":14848,"SourceStructureID":60917,"TargetStructureID":6169,"Label":"60917-6169 via Conventional from 60918 -> 60916","Type":"Conventional","Directional":true,"Links":[{"SourceID":60918,"TargetID":60916,"Directional":true}]},{"ID":14849,"SourceStructureID":60967,"TargetStructureID":60976,"Label":"60967-60976 via Conventional from 60975 -> 60985","Type":"Conventional","Directional":true,"Links":[{"SourceID":60975,"TargetID":60985,"Directional":true}]},{"ID":14850,"SourceStructureID":60976,"TargetStructureID":60967,"Label":"60976-60967 via Ribbon Synapse from 60982 -> 60994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":60982,"TargetID":60994,"Directional":true}]},{"ID":14851,"SourceStructureID":61108,"TargetStructureID":483,"Label":"61108-483 via Conventional from 61110 -> 6713, 61111 -> 6821, 92344 -> 92343","Type":"Conventional","Directional":true,"Links":[{"SourceID":61110,"TargetID":6713,"Directional":true},{"SourceID":61111,"TargetID":6821,"Directional":true},{"SourceID":92344,"TargetID":92343,"Directional":true}]},{"ID":14852,"SourceStructureID":61108,"TargetStructureID":593,"Label":"61108-593 via Conventional from 61109 -> 50446, 117732 -> 62875, 117735 -> 62873","Type":"Conventional","Directional":true,"Links":[{"SourceID":61109,"TargetID":50446,"Directional":true},{"SourceID":117732,"TargetID":62875,"Directional":true},{"SourceID":117735,"TargetID":62873,"Directional":true}]},{"ID":14853,"SourceStructureID":61108,"TargetStructureID":5649,"Label":"61108-5649 via Conventional from 118485 -> 53946","Type":"Conventional","Directional":true,"Links":[{"SourceID":118485,"TargetID":53946,"Directional":true}]},{"ID":14854,"SourceStructureID":61108,"TargetStructureID":6115,"Label":"61108-6115 via Conventional from 117733 -> 62871, 117740 -> 73151, 117743 -> 75252","Type":"Conventional","Directional":true,"Links":[{"SourceID":117733,"TargetID":62871,"Directional":true},{"SourceID":117740,"TargetID":73151,"Directional":true},{"SourceID":117743,"TargetID":75252,"Directional":true}]},{"ID":14855,"SourceStructureID":61117,"TargetStructureID":5017,"Label":"61117-5017 via Conventional from 61118 -> 61119, 61121 -> 5042","Type":"Conventional","Directional":true,"Links":[{"SourceID":61118,"TargetID":61119,"Directional":true},{"SourceID":61121,"TargetID":5042,"Directional":true}]},{"ID":14856,"SourceStructureID":61122,"TargetStructureID":5017,"Label":"61122-5017 via Conventional from 61123 -> 61124","Type":"Conventional","Directional":true,"Links":[{"SourceID":61123,"TargetID":61124,"Directional":true}]},{"ID":14857,"SourceStructureID":61208,"TargetStructureID":5017,"Label":"61208-5017 via Conventional from 61209 -> 17062, 61210 -> 61211","Type":"Conventional","Directional":true,"Links":[{"SourceID":61209,"TargetID":17062,"Directional":true},{"SourceID":61210,"TargetID":61211,"Directional":true}]},{"ID":14858,"SourceStructureID":61214,"TargetStructureID":5017,"Label":"61214-5017 via Conventional from 61215 -> 61212, 61216 -> 61213, 61229 -> 17084","Type":"Conventional","Directional":true,"Links":[{"SourceID":61215,"TargetID":61212,"Directional":true},{"SourceID":61216,"TargetID":61213,"Directional":true},{"SourceID":61229,"TargetID":17084,"Directional":true}]},{"ID":14859,"SourceStructureID":61214,"TargetStructureID":17228,"Label":"61214-17228 via Conventional from 61220 -> 61221, 61222 -> 61223, 61225 -> 17261","Type":"Conventional","Directional":true,"Links":[{"SourceID":61220,"TargetID":61221,"Directional":true},{"SourceID":61222,"TargetID":61223,"Directional":true},{"SourceID":61225,"TargetID":17261,"Directional":true}]},{"ID":14860,"SourceStructureID":61227,"TargetStructureID":61214,"Label":"61227-61214 via Conventional from 61228 -> 61226","Type":"Conventional","Directional":true,"Links":[{"SourceID":61228,"TargetID":61226,"Directional":true}]},{"ID":14861,"SourceStructureID":61231,"TargetStructureID":5017,"Label":"61231-5017 via Conventional from 61232 -> 61233","Type":"Conventional","Directional":true,"Links":[{"SourceID":61232,"TargetID":61233,"Directional":true}]},{"ID":14862,"SourceStructureID":61313,"TargetStructureID":61270,"Label":"61313-61270 via Conventional from 61315 -> 61306","Type":"Conventional","Directional":true,"Links":[{"SourceID":61315,"TargetID":61306,"Directional":true}]},{"ID":14863,"SourceStructureID":61417,"TargetStructureID":61270,"Label":"61417-61270 via Conventional from 61418 -> 61304","Type":"Conventional","Directional":true,"Links":[{"SourceID":61418,"TargetID":61304,"Directional":true}]},{"ID":14864,"SourceStructureID":61419,"TargetStructureID":61270,"Label":"61419-61270 via Conventional from 61420 -> 61305","Type":"Conventional","Directional":true,"Links":[{"SourceID":61420,"TargetID":61305,"Directional":true}]},{"ID":14865,"SourceStructureID":61421,"TargetStructureID":61270,"Label":"61421-61270 via Conventional from 61422 -> 61307","Type":"Conventional","Directional":true,"Links":[{"SourceID":61422,"TargetID":61307,"Directional":true}]},{"ID":14866,"SourceStructureID":61424,"TargetStructureID":61421,"Label":"61424-61421 via Conventional from 61425 -> 61423","Type":"Conventional","Directional":true,"Links":[{"SourceID":61425,"TargetID":61423,"Directional":true}]},{"ID":14867,"SourceStructureID":61462,"TargetStructureID":61450,"Label":"61462-61450 via Conventional from 61463 -> 61461","Type":"Conventional","Directional":true,"Links":[{"SourceID":61463,"TargetID":61461,"Directional":true}]},{"ID":14868,"SourceStructureID":61466,"TargetStructureID":138,"Label":"61466-138 via Conventional from 61475 -> 61476","Type":"Conventional","Directional":true,"Links":[{"SourceID":61475,"TargetID":61476,"Directional":true}]},{"ID":14869,"SourceStructureID":61466,"TargetStructureID":5297,"Label":"61466-5297 via Conventional from 61477 -> 61478","Type":"Conventional","Directional":true,"Links":[{"SourceID":61477,"TargetID":61478,"Directional":true}]},{"ID":14870,"SourceStructureID":61466,"TargetStructureID":63628,"Label":"61466-63628 via Conventional from 61467 -> 63813","Type":"Conventional","Directional":true,"Links":[{"SourceID":61467,"TargetID":63813,"Directional":true}]},{"ID":14871,"SourceStructureID":61500,"TargetStructureID":909,"Label":"61500-909 via Conventional from 61503 -> 45923","Type":"Conventional","Directional":true,"Links":[{"SourceID":61503,"TargetID":45923,"Directional":true}]},{"ID":14872,"SourceStructureID":61530,"TargetStructureID":8575,"Label":"61530-8575 via BC Conventional Synapse from 61533 -> 61529","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61533,"TargetID":61529,"Directional":true}]},{"ID":14873,"SourceStructureID":61583,"TargetStructureID":8575,"Label":"61583-8575 via Conventional from 61584 -> 17381","Type":"Conventional","Directional":true,"Links":[{"SourceID":61584,"TargetID":17381,"Directional":true}]},{"ID":14874,"SourceStructureID":61587,"TargetStructureID":408,"Label":"61587-408 via Conventional from 61590 -> 61591","Type":"Conventional","Directional":true,"Links":[{"SourceID":61590,"TargetID":61591,"Directional":true}]},{"ID":14875,"SourceStructureID":61587,"TargetStructureID":8575,"Label":"61587-8575 via Conventional from 61588 -> 17383","Type":"Conventional","Directional":true,"Links":[{"SourceID":61588,"TargetID":17383,"Directional":true}]},{"ID":14876,"SourceStructureID":61596,"TargetStructureID":8575,"Label":"61596-8575 via Conventional from 61597 -> 61595","Type":"Conventional","Directional":true,"Links":[{"SourceID":61597,"TargetID":61595,"Directional":true}]},{"ID":14877,"SourceStructureID":61598,"TargetStructureID":372,"Label":"61598-372 via Conventional from 61604 -> 16016","Type":"Conventional","Directional":true,"Links":[{"SourceID":61604,"TargetID":16016,"Directional":true}]},{"ID":14878,"SourceStructureID":61598,"TargetStructureID":428,"Label":"61598-428 via Conventional from 66207 -> 66208","Type":"Conventional","Directional":true,"Links":[{"SourceID":66207,"TargetID":66208,"Directional":true}]},{"ID":14879,"SourceStructureID":61598,"TargetStructureID":606,"Label":"61598-606 via Conventional from 61606 -> 53255","Type":"Conventional","Directional":true,"Links":[{"SourceID":61606,"TargetID":53255,"Directional":true}]},{"ID":14880,"SourceStructureID":61598,"TargetStructureID":4569,"Label":"61598-4569 via Conventional from 61607 -> 47508","Type":"Conventional","Directional":true,"Links":[{"SourceID":61607,"TargetID":47508,"Directional":true}]},{"ID":14881,"SourceStructureID":61598,"TargetStructureID":8575,"Label":"61598-8575 via Conventional from 61599 -> 17384","Type":"Conventional","Directional":true,"Links":[{"SourceID":61599,"TargetID":17384,"Directional":true}]},{"ID":14882,"SourceStructureID":61618,"TargetStructureID":8575,"Label":"61618-8575 via Conventional from 61619 -> 17386","Type":"Conventional","Directional":true,"Links":[{"SourceID":61619,"TargetID":17386,"Directional":true}]},{"ID":14883,"SourceStructureID":61621,"TargetStructureID":8575,"Label":"61621-8575 via Conventional from 61622 -> 61620","Type":"Conventional","Directional":true,"Links":[{"SourceID":61622,"TargetID":61620,"Directional":true}]},{"ID":14884,"SourceStructureID":61624,"TargetStructureID":8575,"Label":"61624-8575 via Conventional from 61626 -> 17387","Type":"Conventional","Directional":true,"Links":[{"SourceID":61626,"TargetID":17387,"Directional":true}]},{"ID":14885,"SourceStructureID":61627,"TargetStructureID":8575,"Label":"61627-8575 via Conventional from 61628 -> 17391","Type":"Conventional","Directional":true,"Links":[{"SourceID":61628,"TargetID":17391,"Directional":true}]},{"ID":14886,"SourceStructureID":61630,"TargetStructureID":8575,"Label":"61630-8575 via BC Conventional Synapse from 61631 -> 61629","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61631,"TargetID":61629,"Directional":true}]},{"ID":14887,"SourceStructureID":61632,"TargetStructureID":8575,"Label":"61632-8575 via Conventional from 61633 -> 17392","Type":"Conventional","Directional":true,"Links":[{"SourceID":61633,"TargetID":17392,"Directional":true}]},{"ID":14888,"SourceStructureID":61638,"TargetStructureID":8575,"Label":"61638-8575 via BC Conventional Synapse from 61640 -> 61637","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61640,"TargetID":61637,"Directional":true}]},{"ID":14889,"SourceStructureID":61642,"TargetStructureID":8575,"Label":"61642-8575 via Conventional from 61643 -> 61641","Type":"Conventional","Directional":true,"Links":[{"SourceID":61643,"TargetID":61641,"Directional":true}]},{"ID":14890,"SourceStructureID":61644,"TargetStructureID":8575,"Label":"61644-8575 via Conventional from 61645 -> 17393","Type":"Conventional","Directional":true,"Links":[{"SourceID":61645,"TargetID":17393,"Directional":true}]},{"ID":14891,"SourceStructureID":61646,"TargetStructureID":8575,"Label":"61646-8575 via Conventional from 61647 -> 17394","Type":"Conventional","Directional":true,"Links":[{"SourceID":61647,"TargetID":17394,"Directional":true}]},{"ID":14892,"SourceStructureID":61649,"TargetStructureID":8575,"Label":"61649-8575 via Conventional from 61650 -> 61648","Type":"Conventional","Directional":true,"Links":[{"SourceID":61650,"TargetID":61648,"Directional":true}]},{"ID":14893,"SourceStructureID":61652,"TargetStructureID":8575,"Label":"61652-8575 via Conventional from 61653 -> 17388","Type":"Conventional","Directional":true,"Links":[{"SourceID":61653,"TargetID":17388,"Directional":true}]},{"ID":14894,"SourceStructureID":61656,"TargetStructureID":8575,"Label":"61656-8575 via BC Conventional Synapse from 61659 -> 61655, 61661 -> 61660","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61659,"TargetID":61655,"Directional":true},{"SourceID":61661,"TargetID":61660,"Directional":true}]},{"ID":14895,"SourceStructureID":61666,"TargetStructureID":8575,"Label":"61666-8575 via BC Conventional Synapse from 61668 -> 61664","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61668,"TargetID":61664,"Directional":true}]},{"ID":14896,"SourceStructureID":61676,"TargetStructureID":8575,"Label":"61676-8575 via Conventional from 61677 -> 61675","Type":"Conventional","Directional":true,"Links":[{"SourceID":61677,"TargetID":61675,"Directional":true}]},{"ID":14897,"SourceStructureID":61698,"TargetStructureID":372,"Label":"61698-372 via Conventional from 61700 -> 55073","Type":"Conventional","Directional":true,"Links":[{"SourceID":61700,"TargetID":55073,"Directional":true}]},{"ID":14898,"SourceStructureID":61698,"TargetStructureID":8575,"Label":"61698-8575 via Conventional from 61699 -> 37255","Type":"Conventional","Directional":true,"Links":[{"SourceID":61699,"TargetID":37255,"Directional":true}]},{"ID":14899,"SourceStructureID":61703,"TargetStructureID":8575,"Label":"61703-8575 via BC Conventional Synapse from 61704 -> 61702","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61704,"TargetID":61702,"Directional":true}]},{"ID":14900,"SourceStructureID":61705,"TargetStructureID":8575,"Label":"61705-8575 via Conventional from 61706 -> 37256","Type":"Conventional","Directional":true,"Links":[{"SourceID":61706,"TargetID":37256,"Directional":true}]},{"ID":14901,"SourceStructureID":61707,"TargetStructureID":8575,"Label":"61707-8575 via Conventional from 61708 -> 37257","Type":"Conventional","Directional":true,"Links":[{"SourceID":61708,"TargetID":37257,"Directional":true}]},{"ID":14902,"SourceStructureID":61709,"TargetStructureID":7594,"Label":"61709-7594 via Conventional from 65695 -> 64852","Type":"Conventional","Directional":true,"Links":[{"SourceID":65695,"TargetID":64852,"Directional":true}]},{"ID":14903,"SourceStructureID":61709,"TargetStructureID":8575,"Label":"61709-8575 via Conventional from 61710 -> 37259","Type":"Conventional","Directional":true,"Links":[{"SourceID":61710,"TargetID":37259,"Directional":true}]},{"ID":14904,"SourceStructureID":61716,"TargetStructureID":8575,"Label":"61716-8575 via Conventional from 61717 -> 61715","Type":"Conventional","Directional":true,"Links":[{"SourceID":61717,"TargetID":61715,"Directional":true}]},{"ID":14905,"SourceStructureID":61719,"TargetStructureID":8575,"Label":"61719-8575 via BC Conventional Synapse from 61720 -> 61718","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61720,"TargetID":61718,"Directional":true}]},{"ID":14906,"SourceStructureID":61740,"TargetStructureID":8575,"Label":"61740-8575 via Conventional from 61744 -> 43101","Type":"Conventional","Directional":true,"Links":[{"SourceID":61744,"TargetID":43101,"Directional":true}]},{"ID":14907,"SourceStructureID":61741,"TargetStructureID":61740,"Label":"61741-61740 via Conventional from 61742 -> 61743","Type":"Conventional","Directional":true,"Links":[{"SourceID":61742,"TargetID":61743,"Directional":true}]},{"ID":14908,"SourceStructureID":61745,"TargetStructureID":8575,"Label":"61745-8575 via Conventional from 61746 -> 37273","Type":"Conventional","Directional":true,"Links":[{"SourceID":61746,"TargetID":37273,"Directional":true}]},{"ID":14909,"SourceStructureID":61752,"TargetStructureID":61758,"Label":"61752-61758 via Conventional from 61757 -> 61761","Type":"Conventional","Directional":true,"Links":[{"SourceID":61757,"TargetID":61761,"Directional":true}]},{"ID":14910,"SourceStructureID":61758,"TargetStructureID":8575,"Label":"61758-8575 via BC Conventional Synapse from 61762 -> 43102","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":61762,"TargetID":43102,"Directional":true}]},{"ID":14911,"SourceStructureID":61758,"TargetStructureID":61752,"Label":"61758-61752 via Ribbon Synapse from 61759 -> 61756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":61759,"TargetID":61756,"Directional":true}]},{"ID":14912,"SourceStructureID":61763,"TargetStructureID":8575,"Label":"61763-8575 via Conventional from 61764 -> 43103","Type":"Conventional","Directional":true,"Links":[{"SourceID":61764,"TargetID":43103,"Directional":true}]},{"ID":14913,"SourceStructureID":61765,"TargetStructureID":8575,"Label":"61765-8575 via Conventional from 61766 -> 43105","Type":"Conventional","Directional":true,"Links":[{"SourceID":61766,"TargetID":43105,"Directional":true}]},{"ID":14914,"SourceStructureID":61767,"TargetStructureID":8575,"Label":"61767-8575 via Conventional from 61768 -> 43104","Type":"Conventional","Directional":true,"Links":[{"SourceID":61768,"TargetID":43104,"Directional":true}]},{"ID":14915,"SourceStructureID":61773,"TargetStructureID":593,"Label":"61773-593 via Conventional from 61774 -> 61772","Type":"Conventional","Directional":true,"Links":[{"SourceID":61774,"TargetID":61772,"Directional":true}]},{"ID":14916,"SourceStructureID":61777,"TargetStructureID":593,"Label":"61777-593 via Conventional from 61778 -> 7709, 61783 -> 7811","Type":"Conventional","Directional":true,"Links":[{"SourceID":61778,"TargetID":7709,"Directional":true},{"SourceID":61783,"TargetID":7811,"Directional":true}]},{"ID":14917,"SourceStructureID":61785,"TargetStructureID":593,"Label":"61785-593 via Conventional from 61787 -> 7818","Type":"Conventional","Directional":true,"Links":[{"SourceID":61787,"TargetID":7818,"Directional":true}]},{"ID":14918,"SourceStructureID":61788,"TargetStructureID":593,"Label":"61788-593 via Conventional from 61789 -> 7817","Type":"Conventional","Directional":true,"Links":[{"SourceID":61789,"TargetID":7817,"Directional":true}]},{"ID":14919,"SourceStructureID":61791,"TargetStructureID":593,"Label":"61791-593 via Conventional from 61792 -> 61790","Type":"Conventional","Directional":true,"Links":[{"SourceID":61792,"TargetID":61790,"Directional":true}]},{"ID":14920,"SourceStructureID":61797,"TargetStructureID":593,"Label":"61797-593 via Conventional from 61798 -> 15887","Type":"Conventional","Directional":true,"Links":[{"SourceID":61798,"TargetID":15887,"Directional":true}]},{"ID":14921,"SourceStructureID":61797,"TargetStructureID":79461,"Label":"61797-79461 via Conventional from 79462 -> 79463","Type":"Conventional","Directional":true,"Links":[{"SourceID":79462,"TargetID":79463,"Directional":true}]},{"ID":14922,"SourceStructureID":61799,"TargetStructureID":593,"Label":"61799-593 via Conventional from 61800 -> 15888","Type":"Conventional","Directional":true,"Links":[{"SourceID":61800,"TargetID":15888,"Directional":true}]},{"ID":14923,"SourceStructureID":61807,"TargetStructureID":483,"Label":"61807-483 via Conventional from 80463 -> 80464","Type":"Conventional","Directional":true,"Links":[{"SourceID":80463,"TargetID":80464,"Directional":true}]},{"ID":14924,"SourceStructureID":61807,"TargetStructureID":593,"Label":"61807-593 via Conventional from 61808 -> 15890","Type":"Conventional","Directional":true,"Links":[{"SourceID":61808,"TargetID":15890,"Directional":true}]},{"ID":14925,"SourceStructureID":61809,"TargetStructureID":166,"Label":"61809-166 via Conventional from 80538 -> 80539","Type":"Conventional","Directional":true,"Links":[{"SourceID":80538,"TargetID":80539,"Directional":true}]},{"ID":14926,"SourceStructureID":61809,"TargetStructureID":593,"Label":"61809-593 via Conventional from 61810 -> 52499, 80513 -> 68259","Type":"Conventional","Directional":true,"Links":[{"SourceID":61810,"TargetID":52499,"Directional":true},{"SourceID":80513,"TargetID":68259,"Directional":true}]},{"ID":14927,"SourceStructureID":61809,"TargetStructureID":6156,"Label":"61809-6156 via Conventional from 80488 -> 80489","Type":"Conventional","Directional":true,"Links":[{"SourceID":80488,"TargetID":80489,"Directional":true}]},{"ID":14928,"SourceStructureID":61813,"TargetStructureID":593,"Label":"61813-593 via Conventional from 61814 -> 61815","Type":"Conventional","Directional":true,"Links":[{"SourceID":61814,"TargetID":61815,"Directional":true}]},{"ID":14929,"SourceStructureID":61816,"TargetStructureID":483,"Label":"61816-483 via Conventional from 80745 -> 6762","Type":"Conventional","Directional":true,"Links":[{"SourceID":80745,"TargetID":6762,"Directional":true}]},{"ID":14930,"SourceStructureID":61816,"TargetStructureID":593,"Label":"61816-593 via Conventional from 61818 -> 28393, 61892 -> 15892, 80724 -> 67326","Type":"Conventional","Directional":true,"Links":[{"SourceID":61818,"TargetID":28393,"Directional":true},{"SourceID":61892,"TargetID":15892,"Directional":true},{"SourceID":80724,"TargetID":67326,"Directional":true}]},{"ID":14931,"SourceStructureID":61816,"TargetStructureID":5562,"Label":"61816-5562 via Conventional from 80725 -> 77166","Type":"Conventional","Directional":true,"Links":[{"SourceID":80725,"TargetID":77166,"Directional":true}]},{"ID":14932,"SourceStructureID":61817,"TargetStructureID":66523,"Label":"61817-66523 via Conventional from 61820 -> 75925","Type":"Conventional","Directional":true,"Links":[{"SourceID":61820,"TargetID":75925,"Directional":true}]},{"ID":14933,"SourceStructureID":61827,"TargetStructureID":22974,"Label":"61827-22974 via Conventional from 61829 -> 61830","Type":"Conventional","Directional":true,"Links":[{"SourceID":61829,"TargetID":61830,"Directional":true}]},{"ID":14934,"SourceStructureID":61836,"TargetStructureID":16026,"Label":"61836-16026 via Conventional from 134785 -> 134782","Type":"Conventional","Directional":true,"Links":[{"SourceID":134785,"TargetID":134782,"Directional":true}]},{"ID":14935,"SourceStructureID":61836,"TargetStructureID":69783,"Label":"61836-69783 via Adherens from 69782 -> 69784","Type":"Adherens","Directional":true,"Links":[{"SourceID":69782,"TargetID":69784,"Directional":true}]},{"ID":14936,"SourceStructureID":61842,"TargetStructureID":593,"Label":"61842-593 via Conventional from 61844 -> 28426","Type":"Conventional","Directional":true,"Links":[{"SourceID":61844,"TargetID":28426,"Directional":true}]},{"ID":14937,"SourceStructureID":61845,"TargetStructureID":593,"Label":"61845-593 via Conventional from 61846 -> 28425, 81149 -> 64370","Type":"Conventional","Directional":true,"Links":[{"SourceID":61846,"TargetID":28425,"Directional":true},{"SourceID":81149,"TargetID":64370,"Directional":true}]},{"ID":14938,"SourceStructureID":61847,"TargetStructureID":593,"Label":"61847-593 via Conventional from 61848 -> 28424","Type":"Conventional","Directional":true,"Links":[{"SourceID":61848,"TargetID":28424,"Directional":true}]},{"ID":14939,"SourceStructureID":61849,"TargetStructureID":593,"Label":"61849-593 via Conventional from 61850 -> 28414","Type":"Conventional","Directional":true,"Links":[{"SourceID":61850,"TargetID":28414,"Directional":true}]},{"ID":14940,"SourceStructureID":61851,"TargetStructureID":593,"Label":"61851-593 via Conventional from 61852 -> 28420","Type":"Conventional","Directional":true,"Links":[{"SourceID":61852,"TargetID":28420,"Directional":true}]},{"ID":14941,"SourceStructureID":61853,"TargetStructureID":593,"Label":"61853-593 via Conventional from 61854 -> 28416","Type":"Conventional","Directional":true,"Links":[{"SourceID":61854,"TargetID":28416,"Directional":true}]},{"ID":14942,"SourceStructureID":61853,"TargetStructureID":6115,"Label":"61853-6115 via Conventional from 81425 -> 73775","Type":"Conventional","Directional":true,"Links":[{"SourceID":81425,"TargetID":73775,"Directional":true}]},{"ID":14943,"SourceStructureID":61853,"TargetStructureID":81430,"Label":"61853-81430 via Conventional from 81431 -> 81432","Type":"Conventional","Directional":true,"Links":[{"SourceID":81431,"TargetID":81432,"Directional":true}]},{"ID":14944,"SourceStructureID":61857,"TargetStructureID":593,"Label":"61857-593 via Conventional from 61858 -> 61856, 81978 -> 81979","Type":"Conventional","Directional":true,"Links":[{"SourceID":61858,"TargetID":61856,"Directional":true},{"SourceID":81978,"TargetID":81979,"Directional":true}]},{"ID":14945,"SourceStructureID":61862,"TargetStructureID":593,"Label":"61862-593 via Conventional from 61863 -> 28417","Type":"Conventional","Directional":true,"Links":[{"SourceID":61863,"TargetID":28417,"Directional":true}]},{"ID":14946,"SourceStructureID":61868,"TargetStructureID":593,"Label":"61868-593 via Conventional from 61869 -> 61867","Type":"Conventional","Directional":true,"Links":[{"SourceID":61869,"TargetID":61867,"Directional":true}]},{"ID":14947,"SourceStructureID":61886,"TargetStructureID":483,"Label":"61886-483 via Conventional from 82191 -> 82192, 82195 -> 71297","Type":"Conventional","Directional":true,"Links":[{"SourceID":82191,"TargetID":82192,"Directional":true},{"SourceID":82195,"TargetID":71297,"Directional":true}]},{"ID":14948,"SourceStructureID":61886,"TargetStructureID":593,"Label":"61886-593 via Conventional from 61887 -> 15897","Type":"Conventional","Directional":true,"Links":[{"SourceID":61887,"TargetID":15897,"Directional":true}]},{"ID":14949,"SourceStructureID":61886,"TargetStructureID":4570,"Label":"61886-4570 via Conventional from 82193 -> 82194","Type":"Conventional","Directional":true,"Links":[{"SourceID":82193,"TargetID":82194,"Directional":true}]},{"ID":14950,"SourceStructureID":61886,"TargetStructureID":82188,"Label":"61886-82188 via Conventional from 82189 -> 82190","Type":"Conventional","Directional":true,"Links":[{"SourceID":82189,"TargetID":82190,"Directional":true}]},{"ID":14951,"SourceStructureID":61894,"TargetStructureID":593,"Label":"61894-593 via Conventional from 61895 -> 15893, 82198 -> 28400","Type":"Conventional","Directional":true,"Links":[{"SourceID":61895,"TargetID":15893,"Directional":true},{"SourceID":82198,"TargetID":28400,"Directional":true}]},{"ID":14952,"SourceStructureID":61894,"TargetStructureID":68401,"Label":"61894-68401 via Conventional from 68397 -> 68402","Type":"Conventional","Directional":true,"Links":[{"SourceID":68397,"TargetID":68402,"Directional":true}]},{"ID":14953,"SourceStructureID":61894,"TargetStructureID":69537,"Label":"61894-69537 via Conventional from 82203 -> 69759","Type":"Conventional","Directional":true,"Links":[{"SourceID":82203,"TargetID":69759,"Directional":true}]},{"ID":14954,"SourceStructureID":61894,"TargetStructureID":82204,"Label":"61894-82204 via Conventional from 82205 -> 82206","Type":"Conventional","Directional":true,"Links":[{"SourceID":82205,"TargetID":82206,"Directional":true}]},{"ID":14955,"SourceStructureID":61897,"TargetStructureID":70114,"Label":"61897-70114 via Conventional from 61902 -> 70118","Type":"Conventional","Directional":true,"Links":[{"SourceID":61902,"TargetID":70118,"Directional":true}]},{"ID":14956,"SourceStructureID":61904,"TargetStructureID":593,"Label":"61904-593 via Conventional from 61906 -> 61907","Type":"Conventional","Directional":true,"Links":[{"SourceID":61906,"TargetID":61907,"Directional":true}]},{"ID":14957,"SourceStructureID":61904,"TargetStructureID":61868,"Label":"61904-61868 via Conventional from 61905 -> 81988, 81983 -> 81984","Type":"Conventional","Directional":true,"Links":[{"SourceID":61905,"TargetID":81988,"Directional":true},{"SourceID":81983,"TargetID":81984,"Directional":true}]},{"ID":14958,"SourceStructureID":61904,"TargetStructureID":69537,"Label":"61904-69537 via Conventional from 82207 -> 69756","Type":"Conventional","Directional":true,"Links":[{"SourceID":82207,"TargetID":69756,"Directional":true}]},{"ID":14959,"SourceStructureID":61908,"TargetStructureID":593,"Label":"61908-593 via Conventional from 61909 -> 28399","Type":"Conventional","Directional":true,"Links":[{"SourceID":61909,"TargetID":28399,"Directional":true}]},{"ID":14960,"SourceStructureID":61914,"TargetStructureID":593,"Label":"61914-593 via Conventional from 61918 -> 61917","Type":"Conventional","Directional":true,"Links":[{"SourceID":61918,"TargetID":61917,"Directional":true}]},{"ID":14961,"SourceStructureID":61920,"TargetStructureID":593,"Label":"61920-593 via Conventional from 61921 -> 61919","Type":"Conventional","Directional":true,"Links":[{"SourceID":61921,"TargetID":61919,"Directional":true}]},{"ID":14962,"SourceStructureID":61920,"TargetStructureID":61840,"Label":"61920-61840 via Conventional from 82286 -> 82287","Type":"Conventional","Directional":true,"Links":[{"SourceID":82286,"TargetID":82287,"Directional":true}]},{"ID":14963,"SourceStructureID":61928,"TargetStructureID":593,"Label":"61928-593 via Conventional from 61929 -> 28401","Type":"Conventional","Directional":true,"Links":[{"SourceID":61929,"TargetID":28401,"Directional":true}]},{"ID":14964,"SourceStructureID":61928,"TargetStructureID":65282,"Label":"61928-65282 via Conventional from 65281 -> 65283","Type":"Conventional","Directional":true,"Links":[{"SourceID":65281,"TargetID":65283,"Directional":true}]},{"ID":14965,"SourceStructureID":61930,"TargetStructureID":593,"Label":"61930-593 via Conventional from 61931 -> 28403","Type":"Conventional","Directional":true,"Links":[{"SourceID":61931,"TargetID":28403,"Directional":true}]},{"ID":14966,"SourceStructureID":61933,"TargetStructureID":68072,"Label":"61933-68072 via Conventional from 68075 -> 68074","Type":"Conventional","Directional":true,"Links":[{"SourceID":68075,"TargetID":68074,"Directional":true}]},{"ID":14967,"SourceStructureID":61933,"TargetStructureID":68891,"Label":"61933-68891 via Conventional from 61935 -> 68892","Type":"Conventional","Directional":true,"Links":[{"SourceID":61935,"TargetID":68892,"Directional":true}]},{"ID":14968,"SourceStructureID":61936,"TargetStructureID":82383,"Label":"61936-82383 via Conventional from 82384 -> 82385","Type":"Conventional","Directional":true,"Links":[{"SourceID":82384,"TargetID":82385,"Directional":true}]},{"ID":14969,"SourceStructureID":61940,"TargetStructureID":593,"Label":"61940-593 via Conventional from 61941 -> 61939","Type":"Conventional","Directional":true,"Links":[{"SourceID":61941,"TargetID":61939,"Directional":true}]},{"ID":14970,"SourceStructureID":61942,"TargetStructureID":593,"Label":"61942-593 via Conventional from 61944 -> 61943","Type":"Conventional","Directional":true,"Links":[{"SourceID":61944,"TargetID":61943,"Directional":true}]},{"ID":14971,"SourceStructureID":61951,"TargetStructureID":593,"Label":"61951-593 via Conventional from 61952 -> 61953, 61986 -> 61984","Type":"Conventional","Directional":true,"Links":[{"SourceID":61952,"TargetID":61953,"Directional":true},{"SourceID":61986,"TargetID":61984,"Directional":true}]},{"ID":14972,"SourceStructureID":61954,"TargetStructureID":593,"Label":"61954-593 via Conventional from 61955 -> 50444","Type":"Conventional","Directional":true,"Links":[{"SourceID":61955,"TargetID":50444,"Directional":true}]},{"ID":14973,"SourceStructureID":61960,"TargetStructureID":400,"Label":"61960-400 via Conventional from 81662 -> 81681","Type":"Conventional","Directional":true,"Links":[{"SourceID":81662,"TargetID":81681,"Directional":true}]},{"ID":14974,"SourceStructureID":61960,"TargetStructureID":483,"Label":"61960-483 via Conventional from 81484 -> 81485, 134092 -> 134093","Type":"Conventional","Directional":true,"Links":[{"SourceID":81484,"TargetID":81485,"Directional":true},{"SourceID":134092,"TargetID":134093,"Directional":true}]},{"ID":14975,"SourceStructureID":61960,"TargetStructureID":485,"Label":"61960-485 via Conventional from 81449 -> 81450, 81468 -> 81469, 81470 -> 81471","Type":"Conventional","Directional":true,"Links":[{"SourceID":81449,"TargetID":81450,"Directional":true},{"SourceID":81468,"TargetID":81469,"Directional":true},{"SourceID":81470,"TargetID":81471,"Directional":true}]},{"ID":14976,"SourceStructureID":61960,"TargetStructureID":593,"Label":"61960-593 via Conventional from 61961 -> 50441","Type":"Conventional","Directional":true,"Links":[{"SourceID":61961,"TargetID":50441,"Directional":true}]},{"ID":14977,"SourceStructureID":61960,"TargetStructureID":6156,"Label":"61960-6156 via Conventional from 81448 -> 11612","Type":"Conventional","Directional":true,"Links":[{"SourceID":81448,"TargetID":11612,"Directional":true}]},{"ID":14978,"SourceStructureID":61960,"TargetStructureID":6589,"Label":"61960-6589 via Conventional from 81481 -> 81482, 81512 -> 9590","Type":"Conventional","Directional":true,"Links":[{"SourceID":81481,"TargetID":81482,"Directional":true},{"SourceID":81512,"TargetID":9590,"Directional":true}]},{"ID":14979,"SourceStructureID":61960,"TargetStructureID":15394,"Label":"61960-15394 via Conventional from 81452 -> 81453","Type":"Conventional","Directional":true,"Links":[{"SourceID":81452,"TargetID":81453,"Directional":true}]},{"ID":14980,"SourceStructureID":61960,"TargetStructureID":81664,"Label":"61960-81664 via Conventional from 81666 -> 81665","Type":"Conventional","Directional":true,"Links":[{"SourceID":81666,"TargetID":81665,"Directional":true}]},{"ID":14981,"SourceStructureID":61960,"TargetStructureID":81682,"Label":"61960-81682 via Conventional from 81683 -> 81684","Type":"Conventional","Directional":true,"Links":[{"SourceID":81683,"TargetID":81684,"Directional":true}]},{"ID":14982,"SourceStructureID":61960,"TargetStructureID":87158,"Label":"61960-87158 via Conventional from 81657 -> 81658","Type":"Conventional","Directional":true,"Links":[{"SourceID":81657,"TargetID":81658,"Directional":true}]},{"ID":14983,"SourceStructureID":61972,"TargetStructureID":593,"Label":"61972-593 via Conventional from 61973 -> 61971","Type":"Conventional","Directional":true,"Links":[{"SourceID":61973,"TargetID":61971,"Directional":true}]},{"ID":14984,"SourceStructureID":61978,"TargetStructureID":593,"Label":"61978-593 via Conventional from 61980 -> 61979","Type":"Conventional","Directional":true,"Links":[{"SourceID":61980,"TargetID":61979,"Directional":true}]},{"ID":14985,"SourceStructureID":61978,"TargetStructureID":65267,"Label":"61978-65267 via Conventional from 69366 -> 69365","Type":"Conventional","Directional":true,"Links":[{"SourceID":69366,"TargetID":69365,"Directional":true}]},{"ID":14986,"SourceStructureID":61989,"TargetStructureID":61940,"Label":"61989-61940 via Conventional from 65294 -> 65295","Type":"Conventional","Directional":true,"Links":[{"SourceID":65294,"TargetID":65295,"Directional":true}]},{"ID":14987,"SourceStructureID":62012,"TargetStructureID":8575,"Label":"62012-8575 via Conventional from 62013 -> 62011","Type":"Conventional","Directional":true,"Links":[{"SourceID":62013,"TargetID":62011,"Directional":true}]},{"ID":14988,"SourceStructureID":62015,"TargetStructureID":8575,"Label":"62015-8575 via Conventional from 62016 -> 62014","Type":"Conventional","Directional":true,"Links":[{"SourceID":62016,"TargetID":62014,"Directional":true}]},{"ID":14989,"SourceStructureID":62019,"TargetStructureID":8575,"Label":"62019-8575 via BC Conventional Synapse from 62022 -> 62018","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62022,"TargetID":62018,"Directional":true}]},{"ID":14990,"SourceStructureID":62026,"TargetStructureID":8575,"Label":"62026-8575 via Conventional from 62027 -> 62025","Type":"Conventional","Directional":true,"Links":[{"SourceID":62027,"TargetID":62025,"Directional":true}]},{"ID":14991,"SourceStructureID":62029,"TargetStructureID":8575,"Label":"62029-8575 via Conventional from 62030 -> 62028","Type":"Conventional","Directional":true,"Links":[{"SourceID":62030,"TargetID":62028,"Directional":true}]},{"ID":14992,"SourceStructureID":62032,"TargetStructureID":8575,"Label":"62032-8575 via Conventional from 62033 -> 62031","Type":"Conventional","Directional":true,"Links":[{"SourceID":62033,"TargetID":62031,"Directional":true}]},{"ID":14993,"SourceStructureID":62035,"TargetStructureID":8575,"Label":"62035-8575 via Ribbon Synapse from 62036 -> 62034","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62036,"TargetID":62034,"Directional":true}]},{"ID":14994,"SourceStructureID":62038,"TargetStructureID":7858,"Label":"62038-7858 via Conventional from 62039 -> 31899","Type":"Conventional","Directional":true,"Links":[{"SourceID":62039,"TargetID":31899,"Directional":true}]},{"ID":14995,"SourceStructureID":62043,"TargetStructureID":8575,"Label":"62043-8575 via Conventional from 62044 -> 62042","Type":"Conventional","Directional":true,"Links":[{"SourceID":62044,"TargetID":62042,"Directional":true}]},{"ID":14996,"SourceStructureID":62046,"TargetStructureID":8575,"Label":"62046-8575 via Ribbon Synapse from 62047 -> 62041","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62047,"TargetID":62041,"Directional":true}]},{"ID":14997,"SourceStructureID":62049,"TargetStructureID":8575,"Label":"62049-8575 via Conventional from 62050 -> 62048","Type":"Conventional","Directional":true,"Links":[{"SourceID":62050,"TargetID":62048,"Directional":true}]},{"ID":14998,"SourceStructureID":62052,"TargetStructureID":8575,"Label":"62052-8575 via Conventional from 62053 -> 62051","Type":"Conventional","Directional":true,"Links":[{"SourceID":62053,"TargetID":62051,"Directional":true}]},{"ID":14999,"SourceStructureID":62110,"TargetStructureID":8575,"Label":"62110-8575 via Conventional from 62112 -> 62109","Type":"Conventional","Directional":true,"Links":[{"SourceID":62112,"TargetID":62109,"Directional":true}]},{"ID":15000,"SourceStructureID":62110,"TargetStructureID":18693,"Label":"62110-18693 via Conventional from 62111 -> 33829","Type":"Conventional","Directional":true,"Links":[{"SourceID":62111,"TargetID":33829,"Directional":true}]},{"ID":15001,"SourceStructureID":62120,"TargetStructureID":389,"Label":"62120-389 via Conventional from 62124 -> 62119","Type":"Conventional","Directional":true,"Links":[{"SourceID":62124,"TargetID":62119,"Directional":true}]},{"ID":15002,"SourceStructureID":62120,"TargetStructureID":19203,"Label":"62120-19203 via Conventional from 62121 -> 62122","Type":"Conventional","Directional":true,"Links":[{"SourceID":62121,"TargetID":62122,"Directional":true}]},{"ID":15003,"SourceStructureID":62150,"TargetStructureID":8575,"Label":"62150-8575 via Conventional from 62151 -> 43280","Type":"Conventional","Directional":true,"Links":[{"SourceID":62151,"TargetID":43280,"Directional":true}]},{"ID":15004,"SourceStructureID":62152,"TargetStructureID":8575,"Label":"62152-8575 via Conventional from 62153 -> 43281","Type":"Conventional","Directional":true,"Links":[{"SourceID":62153,"TargetID":43281,"Directional":true}]},{"ID":15005,"SourceStructureID":62155,"TargetStructureID":8575,"Label":"62155-8575 via Conventional from 62156 -> 43581","Type":"Conventional","Directional":true,"Links":[{"SourceID":62156,"TargetID":43581,"Directional":true}]},{"ID":15006,"SourceStructureID":62160,"TargetStructureID":8575,"Label":"62160-8575 via Conventional from 62161 -> 62159","Type":"Conventional","Directional":true,"Links":[{"SourceID":62161,"TargetID":62159,"Directional":true}]},{"ID":15007,"SourceStructureID":62165,"TargetStructureID":8575,"Label":"62165-8575 via Ribbon Synapse from 62166 -> 62164","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62166,"TargetID":62164,"Directional":true}]},{"ID":15008,"SourceStructureID":62169,"TargetStructureID":8575,"Label":"62169-8575 via Conventional from 62170 -> 62168","Type":"Conventional","Directional":true,"Links":[{"SourceID":62170,"TargetID":62168,"Directional":true}]},{"ID":15009,"SourceStructureID":62172,"TargetStructureID":8575,"Label":"62172-8575 via Ribbon Synapse from 62173 -> 62171","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62173,"TargetID":62171,"Directional":true}]},{"ID":15010,"SourceStructureID":62174,"TargetStructureID":6166,"Label":"62174-6166 via Conventional from 62175 -> 15147","Type":"Conventional","Directional":true,"Links":[{"SourceID":62175,"TargetID":15147,"Directional":true}]},{"ID":15011,"SourceStructureID":62177,"TargetStructureID":8575,"Label":"62177-8575 via Ribbon Synapse from 62178 -> 62176","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62178,"TargetID":62176,"Directional":true}]},{"ID":15012,"SourceStructureID":62190,"TargetStructureID":8575,"Label":"62190-8575 via Conventional from 62191 -> 43285","Type":"Conventional","Directional":true,"Links":[{"SourceID":62191,"TargetID":43285,"Directional":true}]},{"ID":15013,"SourceStructureID":62194,"TargetStructureID":8575,"Label":"62194-8575 via BC Conventional Synapse from 62196 -> 62193","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62196,"TargetID":62193,"Directional":true}]},{"ID":15014,"SourceStructureID":62197,"TargetStructureID":8575,"Label":"62197-8575 via Conventional from 62198 -> 43287","Type":"Conventional","Directional":true,"Links":[{"SourceID":62198,"TargetID":43287,"Directional":true}]},{"ID":15015,"SourceStructureID":62205,"TargetStructureID":8575,"Label":"62205-8575 via Ribbon Synapse from 62206 -> 62204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62206,"TargetID":62204,"Directional":true}]},{"ID":15016,"SourceStructureID":62208,"TargetStructureID":8575,"Label":"62208-8575 via BC Conventional Synapse from 62209 -> 62207","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62209,"TargetID":62207,"Directional":true}]},{"ID":15017,"SourceStructureID":62217,"TargetStructureID":8575,"Label":"62217-8575 via Conventional from 62218 -> 62216","Type":"Conventional","Directional":true,"Links":[{"SourceID":62218,"TargetID":62216,"Directional":true}]},{"ID":15018,"SourceStructureID":62223,"TargetStructureID":8575,"Label":"62223-8575 via Ribbon Synapse from 62224 -> 62222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62224,"TargetID":62222,"Directional":true}]},{"ID":15019,"SourceStructureID":62239,"TargetStructureID":8575,"Label":"62239-8575 via BC Conventional Synapse from 62240 -> 62238","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62240,"TargetID":62238,"Directional":true}]},{"ID":15020,"SourceStructureID":62310,"TargetStructureID":8575,"Label":"62310-8575 via Ribbon Synapse from 62312 -> 62314","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62312,"TargetID":62314,"Directional":true}]},{"ID":15021,"SourceStructureID":62317,"TargetStructureID":8575,"Label":"62317-8575 via Conventional from 62319 -> 62316","Type":"Conventional","Directional":true,"Links":[{"SourceID":62319,"TargetID":62316,"Directional":true}]},{"ID":15022,"SourceStructureID":62325,"TargetStructureID":8575,"Label":"62325-8575 via BC Conventional Synapse from 62326 -> 62323, 80679 -> 62328, 81413 -> 81412, 81417 -> 62324","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62326,"TargetID":62323,"Directional":true},{"SourceID":80679,"TargetID":62328,"Directional":true},{"SourceID":81413,"TargetID":81412,"Directional":true},{"SourceID":81417,"TargetID":62324,"Directional":true}]},{"ID":15023,"SourceStructureID":62325,"TargetStructureID":8575,"Label":"62325-8575 via Ribbon Synapse from 81264 -> 62324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81264,"TargetID":62324,"Directional":true}]},{"ID":15024,"SourceStructureID":62325,"TargetStructureID":10574,"Label":"62325-10574 via Ribbon Synapse from 81278 -> 10622","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81278,"TargetID":10622,"Directional":true}]},{"ID":15025,"SourceStructureID":62325,"TargetStructureID":80522,"Label":"62325-80522 via Ribbon Synapse from 80529 -> 80530, 80842 -> 81005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80529,"TargetID":80530,"Directional":true},{"SourceID":80842,"TargetID":81005,"Directional":true}]},{"ID":15026,"SourceStructureID":62325,"TargetStructureID":80527,"Label":"62325-80527 via BC Conventional Synapse from 80762 -> 80763","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80762,"TargetID":80763,"Directional":true}]},{"ID":15027,"SourceStructureID":62325,"TargetStructureID":80532,"Label":"62325-80532 via Ribbon Synapse from 80531 -> 80533","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80531,"TargetID":80533,"Directional":true}]},{"ID":15028,"SourceStructureID":62325,"TargetStructureID":80534,"Label":"62325-80534 via Ribbon Synapse from 80861 -> 80866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80861,"TargetID":80866,"Directional":true}]},{"ID":15029,"SourceStructureID":62325,"TargetStructureID":80684,"Label":"62325-80684 via Ribbon Synapse from 80683 -> 80686","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80683,"TargetID":80686,"Directional":true}]},{"ID":15030,"SourceStructureID":62325,"TargetStructureID":80753,"Label":"62325-80753 via Ribbon Synapse from 80529 -> 80754","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80529,"TargetID":80754,"Directional":true}]},{"ID":15031,"SourceStructureID":62325,"TargetStructureID":80806,"Label":"62325-80806 via Ribbon Synapse from 80805 -> 80808","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80805,"TargetID":80808,"Directional":true}]},{"ID":15032,"SourceStructureID":62325,"TargetStructureID":80849,"Label":"62325-80849 via Ribbon Synapse from 80842 -> 80852","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80842,"TargetID":80852,"Directional":true}]},{"ID":15033,"SourceStructureID":62325,"TargetStructureID":80871,"Label":"62325-80871 via BC Conventional Synapse from 80873 -> 80872","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":80873,"TargetID":80872,"Directional":true}]},{"ID":15034,"SourceStructureID":62325,"TargetStructureID":81236,"Label":"62325-81236 via Ribbon Synapse from 81235 -> 81240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81235,"TargetID":81240,"Directional":true}]},{"ID":15035,"SourceStructureID":62325,"TargetStructureID":81239,"Label":"62325-81239 via Ribbon Synapse from 81235 -> 81241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81235,"TargetID":81241,"Directional":true}]},{"ID":15036,"SourceStructureID":62325,"TargetStructureID":81257,"Label":"62325-81257 via BC Conventional Synapse from 81255 -> 81258","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81255,"TargetID":81258,"Directional":true}]},{"ID":15037,"SourceStructureID":62325,"TargetStructureID":81270,"Label":"62325-81270 via BC Conventional Synapse from 81419 -> 81418","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81419,"TargetID":81418,"Directional":true}]},{"ID":15038,"SourceStructureID":62325,"TargetStructureID":81270,"Label":"62325-81270 via Ribbon Synapse from 81264 -> 81416","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81264,"TargetID":81416,"Directional":true}]},{"ID":15039,"SourceStructureID":62325,"TargetStructureID":81293,"Label":"62325-81293 via Ribbon Synapse from 81291 -> 81294","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81291,"TargetID":81294,"Directional":true}]},{"ID":15040,"SourceStructureID":62325,"TargetStructureID":81296,"Label":"62325-81296 via Ribbon Synapse from 81295 -> 81386","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81295,"TargetID":81386,"Directional":true}]},{"ID":15041,"SourceStructureID":62325,"TargetStructureID":81300,"Label":"62325-81300 via Ribbon Synapse from 81299 -> 81359","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81299,"TargetID":81359,"Directional":true}]},{"ID":15042,"SourceStructureID":62325,"TargetStructureID":81301,"Label":"62325-81301 via Ribbon Synapse from 81299 -> 81358","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81299,"TargetID":81358,"Directional":true}]},{"ID":15043,"SourceStructureID":62325,"TargetStructureID":81302,"Label":"62325-81302 via Ribbon Synapse from 81299 -> 81303","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81299,"TargetID":81303,"Directional":true}]},{"ID":15044,"SourceStructureID":62325,"TargetStructureID":81321,"Label":"62325-81321 via Ribbon Synapse from 81315 -> 81323","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81315,"TargetID":81323,"Directional":true}]},{"ID":15045,"SourceStructureID":62325,"TargetStructureID":81322,"Label":"62325-81322 via Ribbon Synapse from 81315 -> 81324","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81315,"TargetID":81324,"Directional":true}]},{"ID":15046,"SourceStructureID":62325,"TargetStructureID":81379,"Label":"62325-81379 via BC Conventional Synapse from 81380 -> 81381","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":81380,"TargetID":81381,"Directional":true}]},{"ID":15047,"SourceStructureID":62325,"TargetStructureID":81405,"Label":"62325-81405 via Ribbon Synapse from 81291 -> 81406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81291,"TargetID":81406,"Directional":true}]},{"ID":15048,"SourceStructureID":62337,"TargetStructureID":8575,"Label":"62337-8575 via BC Conventional Synapse from 62338 -> 62336","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62338,"TargetID":62336,"Directional":true}]},{"ID":15049,"SourceStructureID":62340,"TargetStructureID":8575,"Label":"62340-8575 via Conventional from 62341 -> 62339","Type":"Conventional","Directional":true,"Links":[{"SourceID":62341,"TargetID":62339,"Directional":true}]},{"ID":15050,"SourceStructureID":62344,"TargetStructureID":8575,"Label":"62344-8575 via BC Conventional Synapse from 62345 -> 62343","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62345,"TargetID":62343,"Directional":true}]},{"ID":15051,"SourceStructureID":62384,"TargetStructureID":8575,"Label":"62384-8575 via Conventional from 62385 -> 62381, 62385 -> 62386","Type":"Conventional","Directional":true,"Links":[{"SourceID":62385,"TargetID":62381,"Directional":true},{"SourceID":62385,"TargetID":62386,"Directional":true}]},{"ID":15052,"SourceStructureID":62396,"TargetStructureID":5598,"Label":"62396-5598 via Conventional from 62404 -> 36022, 62411 -> 115158, 91576 -> 62403","Type":"Conventional","Directional":true,"Links":[{"SourceID":62404,"TargetID":36022,"Directional":true},{"SourceID":62411,"TargetID":115158,"Directional":true},{"SourceID":91576,"TargetID":62403,"Directional":true}]},{"ID":15053,"SourceStructureID":62396,"TargetStructureID":6050,"Label":"62396-6050 via Conventional from 62397 -> 35945","Type":"Conventional","Directional":true,"Links":[{"SourceID":62397,"TargetID":35945,"Directional":true}]},{"ID":15054,"SourceStructureID":62396,"TargetStructureID":15976,"Label":"62396-15976 via Conventional from 62416 -> 36044, 62418 -> 36048","Type":"Conventional","Directional":true,"Links":[{"SourceID":62416,"TargetID":36044,"Directional":true},{"SourceID":62418,"TargetID":36048,"Directional":true}]},{"ID":15055,"SourceStructureID":62396,"TargetStructureID":35811,"Label":"62396-35811 via Conventional from 62408 -> 35869","Type":"Conventional","Directional":true,"Links":[{"SourceID":62408,"TargetID":35869,"Directional":true}]},{"ID":15056,"SourceStructureID":62420,"TargetStructureID":8575,"Label":"62420-8575 via BC Conventional Synapse from 62421 -> 62249","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62421,"TargetID":62249,"Directional":true}]},{"ID":15057,"SourceStructureID":62420,"TargetStructureID":62423,"Label":"62420-62423 via Ribbon Synapse from 62425 -> 62424","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62425,"TargetID":62424,"Directional":true}]},{"ID":15058,"SourceStructureID":62423,"TargetStructureID":62420,"Label":"62423-62420 via Conventional from 62426 -> 62422","Type":"Conventional","Directional":true,"Links":[{"SourceID":62426,"TargetID":62422,"Directional":true}]},{"ID":15059,"SourceStructureID":62433,"TargetStructureID":8575,"Label":"62433-8575 via BC Conventional Synapse from 62434 -> 62432","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62434,"TargetID":62432,"Directional":true}]},{"ID":15060,"SourceStructureID":62436,"TargetStructureID":8575,"Label":"62436-8575 via Conventional from 62437 -> 61552","Type":"Conventional","Directional":true,"Links":[{"SourceID":62437,"TargetID":61552,"Directional":true}]},{"ID":15061,"SourceStructureID":62443,"TargetStructureID":8575,"Label":"62443-8575 via Conventional from 62444 -> 62442","Type":"Conventional","Directional":true,"Links":[{"SourceID":62444,"TargetID":62442,"Directional":true}]},{"ID":15062,"SourceStructureID":62446,"TargetStructureID":8575,"Label":"62446-8575 via Conventional from 62447 -> 62445","Type":"Conventional","Directional":true,"Links":[{"SourceID":62447,"TargetID":62445,"Directional":true}]},{"ID":15063,"SourceStructureID":62450,"TargetStructureID":8575,"Label":"62450-8575 via Conventional from 62451 -> 61550","Type":"Conventional","Directional":true,"Links":[{"SourceID":62451,"TargetID":61550,"Directional":true}]},{"ID":15064,"SourceStructureID":62453,"TargetStructureID":8575,"Label":"62453-8575 via Conventional from 62454 -> 62452","Type":"Conventional","Directional":true,"Links":[{"SourceID":62454,"TargetID":62452,"Directional":true}]},{"ID":15065,"SourceStructureID":62456,"TargetStructureID":16073,"Label":"62456-16073 via Conventional from 62457 -> 16081","Type":"Conventional","Directional":true,"Links":[{"SourceID":62457,"TargetID":16081,"Directional":true}]},{"ID":15066,"SourceStructureID":62458,"TargetStructureID":16073,"Label":"62458-16073 via Conventional from 62459 -> 20179","Type":"Conventional","Directional":true,"Links":[{"SourceID":62459,"TargetID":20179,"Directional":true}]},{"ID":15067,"SourceStructureID":62460,"TargetStructureID":16073,"Label":"62460-16073 via Conventional from 62461 -> 20177","Type":"Conventional","Directional":true,"Links":[{"SourceID":62461,"TargetID":20177,"Directional":true}]},{"ID":15068,"SourceStructureID":62462,"TargetStructureID":16073,"Label":"62462-16073 via Conventional from 62463 -> 20178","Type":"Conventional","Directional":true,"Links":[{"SourceID":62463,"TargetID":20178,"Directional":true}]},{"ID":15069,"SourceStructureID":62464,"TargetStructureID":16073,"Label":"62464-16073 via Conventional from 62465 -> 16083","Type":"Conventional","Directional":true,"Links":[{"SourceID":62465,"TargetID":16083,"Directional":true}]},{"ID":15070,"SourceStructureID":62468,"TargetStructureID":16073,"Label":"62468-16073 via Conventional from 62471 -> 62466","Type":"Conventional","Directional":true,"Links":[{"SourceID":62471,"TargetID":62466,"Directional":true}]},{"ID":15071,"SourceStructureID":62469,"TargetStructureID":16073,"Label":"62469-16073 via Conventional from 62470 -> 62467","Type":"Conventional","Directional":true,"Links":[{"SourceID":62470,"TargetID":62467,"Directional":true}]},{"ID":15072,"SourceStructureID":62473,"TargetStructureID":16073,"Label":"62473-16073 via Conventional from 62474 -> 62472","Type":"Conventional","Directional":true,"Links":[{"SourceID":62474,"TargetID":62472,"Directional":true}]},{"ID":15073,"SourceStructureID":62475,"TargetStructureID":16073,"Label":"62475-16073 via Conventional from 62476 -> 20176","Type":"Conventional","Directional":true,"Links":[{"SourceID":62476,"TargetID":20176,"Directional":true}]},{"ID":15074,"SourceStructureID":62478,"TargetStructureID":16073,"Label":"62478-16073 via Conventional from 62479 -> 62477","Type":"Conventional","Directional":true,"Links":[{"SourceID":62479,"TargetID":62477,"Directional":true}]},{"ID":15075,"SourceStructureID":62480,"TargetStructureID":6120,"Label":"62480-6120 via Conventional from 62482 -> 37243","Type":"Conventional","Directional":true,"Links":[{"SourceID":62482,"TargetID":37243,"Directional":true}]},{"ID":15076,"SourceStructureID":62480,"TargetStructureID":16073,"Label":"62480-16073 via Conventional from 62481 -> 19898, 62481 -> 19936","Type":"Conventional","Directional":true,"Links":[{"SourceID":62481,"TargetID":19898,"Directional":true},{"SourceID":62481,"TargetID":19936,"Directional":true}]},{"ID":15077,"SourceStructureID":62483,"TargetStructureID":6120,"Label":"62483-6120 via Conventional from 125647 -> 125646","Type":"Conventional","Directional":true,"Links":[{"SourceID":125647,"TargetID":125646,"Directional":true}]},{"ID":15078,"SourceStructureID":62483,"TargetStructureID":16073,"Label":"62483-16073 via Conventional from 62484 -> 19935","Type":"Conventional","Directional":true,"Links":[{"SourceID":62484,"TargetID":19935,"Directional":true}]},{"ID":15079,"SourceStructureID":62485,"TargetStructureID":16073,"Label":"62485-16073 via Conventional from 62486 -> 19934","Type":"Conventional","Directional":true,"Links":[{"SourceID":62486,"TargetID":19934,"Directional":true}]},{"ID":15080,"SourceStructureID":62489,"TargetStructureID":16073,"Label":"62489-16073 via Conventional from 62490 -> 62488","Type":"Conventional","Directional":true,"Links":[{"SourceID":62490,"TargetID":62488,"Directional":true}]},{"ID":15081,"SourceStructureID":62491,"TargetStructureID":16073,"Label":"62491-16073 via Conventional from 62493 -> 19939","Type":"Conventional","Directional":true,"Links":[{"SourceID":62493,"TargetID":19939,"Directional":true}]},{"ID":15082,"SourceStructureID":62492,"TargetStructureID":16073,"Label":"62492-16073 via Conventional from 62494 -> 19940","Type":"Conventional","Directional":true,"Links":[{"SourceID":62494,"TargetID":19940,"Directional":true}]},{"ID":15083,"SourceStructureID":62496,"TargetStructureID":5498,"Label":"62496-5498 via Conventional from 62497 -> 62495","Type":"Conventional","Directional":true,"Links":[{"SourceID":62497,"TargetID":62495,"Directional":true}]},{"ID":15084,"SourceStructureID":62500,"TargetStructureID":55686,"Label":"62500-55686 via Conventional from 62523 -> 62524","Type":"Conventional","Directional":true,"Links":[{"SourceID":62523,"TargetID":62524,"Directional":true}]},{"ID":15085,"SourceStructureID":62511,"TargetStructureID":62500,"Label":"62511-62500 via Ribbon Synapse from 62512 -> 62510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62512,"TargetID":62510,"Directional":true}]},{"ID":15086,"SourceStructureID":62515,"TargetStructureID":62500,"Label":"62515-62500 via Ribbon Synapse from 62516 -> 62514","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62516,"TargetID":62514,"Directional":true}]},{"ID":15087,"SourceStructureID":62531,"TargetStructureID":5497,"Label":"62531-5497 via Ribbon Synapse from 62532 -> 62530","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62532,"TargetID":62530,"Directional":true}]},{"ID":15088,"SourceStructureID":62531,"TargetStructureID":7859,"Label":"62531-7859 via Ribbon Synapse from 64635 -> 64630","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64635,"TargetID":64630,"Directional":true}]},{"ID":15089,"SourceStructureID":62540,"TargetStructureID":5497,"Label":"62540-5497 via Ribbon Synapse from 62541 -> 62539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62541,"TargetID":62539,"Directional":true}]},{"ID":15090,"SourceStructureID":62574,"TargetStructureID":5497,"Label":"62574-5497 via Conventional from 62575 -> 62573","Type":"Conventional","Directional":true,"Links":[{"SourceID":62575,"TargetID":62573,"Directional":true}]},{"ID":15091,"SourceStructureID":62599,"TargetStructureID":5497,"Label":"62599-5497 via Ribbon Synapse from 62600 -> 62598","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62600,"TargetID":62598,"Directional":true}]},{"ID":15092,"SourceStructureID":62617,"TargetStructureID":5497,"Label":"62617-5497 via Ribbon Synapse from 62618 -> 62616","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62618,"TargetID":62616,"Directional":true}]},{"ID":15093,"SourceStructureID":62632,"TargetStructureID":7703,"Label":"62632-7703 via Ribbon Synapse from 62633 -> 62634","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62633,"TargetID":62634,"Directional":true}]},{"ID":15094,"SourceStructureID":62655,"TargetStructureID":8579,"Label":"62655-8579 via Ribbon Synapse from 62656 -> 62654","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62656,"TargetID":62654,"Directional":true}]},{"ID":15095,"SourceStructureID":62659,"TargetStructureID":8579,"Label":"62659-8579 via Conventional from 62660 -> 62658","Type":"Conventional","Directional":true,"Links":[{"SourceID":62660,"TargetID":62658,"Directional":true}]},{"ID":15096,"SourceStructureID":62704,"TargetStructureID":8579,"Label":"62704-8579 via Conventional from 62705 -> 62702","Type":"Conventional","Directional":true,"Links":[{"SourceID":62705,"TargetID":62702,"Directional":true}]},{"ID":15097,"SourceStructureID":62704,"TargetStructureID":62707,"Label":"62704-62707 via Conventional from 62706 -> 62709","Type":"Conventional","Directional":true,"Links":[{"SourceID":62706,"TargetID":62709,"Directional":true}]},{"ID":15098,"SourceStructureID":62720,"TargetStructureID":6142,"Label":"62720-6142 via Conventional from 62722 -> 62719","Type":"Conventional","Directional":true,"Links":[{"SourceID":62722,"TargetID":62719,"Directional":true}]},{"ID":15099,"SourceStructureID":62720,"TargetStructureID":8579,"Label":"62720-8579 via Conventional from 62721 -> 62718","Type":"Conventional","Directional":true,"Links":[{"SourceID":62721,"TargetID":62718,"Directional":true}]},{"ID":15100,"SourceStructureID":62731,"TargetStructureID":8579,"Label":"62731-8579 via Conventional from 62732 -> 62730","Type":"Conventional","Directional":true,"Links":[{"SourceID":62732,"TargetID":62730,"Directional":true}]},{"ID":15101,"SourceStructureID":62760,"TargetStructureID":6997,"Label":"62760-6997 via Conventional from 62762 -> 28718","Type":"Conventional","Directional":true,"Links":[{"SourceID":62762,"TargetID":28718,"Directional":true}]},{"ID":15102,"SourceStructureID":62760,"TargetStructureID":8575,"Label":"62760-8575 via Conventional from 62761 -> 21626","Type":"Conventional","Directional":true,"Links":[{"SourceID":62761,"TargetID":21626,"Directional":true}]},{"ID":15103,"SourceStructureID":62764,"TargetStructureID":8575,"Label":"62764-8575 via Conventional from 62765 -> 43264","Type":"Conventional","Directional":true,"Links":[{"SourceID":62765,"TargetID":43264,"Directional":true}]},{"ID":15104,"SourceStructureID":62777,"TargetStructureID":4890,"Label":"62777-4890 via Ribbon Synapse from 64883 -> 64882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64883,"TargetID":64882,"Directional":true}]},{"ID":15105,"SourceStructureID":62777,"TargetStructureID":8575,"Label":"62777-8575 via BC Conventional Synapse from 62778 -> 62776","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":62778,"TargetID":62776,"Directional":true}]},{"ID":15106,"SourceStructureID":62786,"TargetStructureID":5405,"Label":"62786-5405 via Ribbon Synapse from 62787 -> 11155","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62787,"TargetID":11155,"Directional":true}]},{"ID":15107,"SourceStructureID":62786,"TargetStructureID":8575,"Label":"62786-8575 via Ribbon Synapse from 62788 -> 62785","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62788,"TargetID":62785,"Directional":true}]},{"ID":15108,"SourceStructureID":62807,"TargetStructureID":8575,"Label":"62807-8575 via Conventional from 62808 -> 62806","Type":"Conventional","Directional":true,"Links":[{"SourceID":62808,"TargetID":62806,"Directional":true}]},{"ID":15109,"SourceStructureID":62829,"TargetStructureID":8575,"Label":"62829-8575 via Conventional from 62830 -> 62828","Type":"Conventional","Directional":true,"Links":[{"SourceID":62830,"TargetID":62828,"Directional":true}]},{"ID":15110,"SourceStructureID":62933,"TargetStructureID":8579,"Label":"62933-8579 via Adherens from 62935 -> 62683","Type":"Adherens","Directional":true,"Links":[{"SourceID":62935,"TargetID":62683,"Directional":true}]},{"ID":15111,"SourceStructureID":62933,"TargetStructureID":8579,"Label":"62933-8579 via Conventional from 62934 -> 62684","Type":"Conventional","Directional":true,"Links":[{"SourceID":62934,"TargetID":62684,"Directional":true}]},{"ID":15112,"SourceStructureID":62956,"TargetStructureID":8575,"Label":"62956-8575 via Ribbon Synapse from 62958 -> 62955","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62958,"TargetID":62955,"Directional":true}]},{"ID":15113,"SourceStructureID":62964,"TargetStructureID":8575,"Label":"62964-8575 via Conventional from 62965 -> 37263","Type":"Conventional","Directional":true,"Links":[{"SourceID":62965,"TargetID":37263,"Directional":true}]},{"ID":15114,"SourceStructureID":62974,"TargetStructureID":8575,"Label":"62974-8575 via Conventional from 62975 -> 62973","Type":"Conventional","Directional":true,"Links":[{"SourceID":62975,"TargetID":62973,"Directional":true}]},{"ID":15115,"SourceStructureID":62974,"TargetStructureID":10963,"Label":"62974-10963 via Conventional from 62982 -> 31937","Type":"Conventional","Directional":true,"Links":[{"SourceID":62982,"TargetID":31937,"Directional":true}]},{"ID":15116,"SourceStructureID":62989,"TargetStructureID":8575,"Label":"62989-8575 via Conventional from 62991 -> 37265","Type":"Conventional","Directional":true,"Links":[{"SourceID":62991,"TargetID":37265,"Directional":true}]},{"ID":15117,"SourceStructureID":62992,"TargetStructureID":62989,"Label":"62992-62989 via Ribbon Synapse from 62993 -> 62990","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":62993,"TargetID":62990,"Directional":true}]},{"ID":15118,"SourceStructureID":63000,"TargetStructureID":8575,"Label":"63000-8575 via Conventional from 63001 -> 21651","Type":"Conventional","Directional":true,"Links":[{"SourceID":63001,"TargetID":21651,"Directional":true}]},{"ID":15119,"SourceStructureID":63016,"TargetStructureID":8575,"Label":"63016-8575 via Conventional from 63017 -> 63015","Type":"Conventional","Directional":true,"Links":[{"SourceID":63017,"TargetID":63015,"Directional":true}]},{"ID":15120,"SourceStructureID":63060,"TargetStructureID":8575,"Label":"63060-8575 via Conventional from 63061 -> 63059","Type":"Conventional","Directional":true,"Links":[{"SourceID":63061,"TargetID":63059,"Directional":true}]},{"ID":15121,"SourceStructureID":63068,"TargetStructureID":8575,"Label":"63068-8575 via Conventional from 63070 -> 21627","Type":"Conventional","Directional":true,"Links":[{"SourceID":63070,"TargetID":21627,"Directional":true}]},{"ID":15122,"SourceStructureID":63071,"TargetStructureID":63068,"Label":"63071-63068 via Conventional from 63072 -> 63069","Type":"Conventional","Directional":true,"Links":[{"SourceID":63072,"TargetID":63069,"Directional":true}]},{"ID":15123,"SourceStructureID":63115,"TargetStructureID":5522,"Label":"63115-5522 via Conventional from 63116 -> 63117","Type":"Conventional","Directional":true,"Links":[{"SourceID":63116,"TargetID":63117,"Directional":true}]},{"ID":15124,"SourceStructureID":63199,"TargetStructureID":79042,"Label":"63199-79042 via Ribbon Synapse from 147551 -> 147552","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147551,"TargetID":147552,"Directional":true}]},{"ID":15125,"SourceStructureID":63209,"TargetStructureID":5916,"Label":"63209-5916 via Conventional from 63210 -> 63208","Type":"Conventional","Directional":true,"Links":[{"SourceID":63210,"TargetID":63208,"Directional":true}]},{"ID":15126,"SourceStructureID":63423,"TargetStructureID":13858,"Label":"63423-13858 via Ribbon Synapse from 63424 -> 63422","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63424,"TargetID":63422,"Directional":true}]},{"ID":15127,"SourceStructureID":63423,"TargetStructureID":85856,"Label":"63423-85856 via Ribbon Synapse from 71180 -> 71177, 71181 -> 71178","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71180,"TargetID":71177,"Directional":true},{"SourceID":71181,"TargetID":71178,"Directional":true}]},{"ID":15128,"SourceStructureID":63440,"TargetStructureID":13858,"Label":"63440-13858 via Conventional from 63441 -> 63442","Type":"Conventional","Directional":true,"Links":[{"SourceID":63441,"TargetID":63442,"Directional":true}]},{"ID":15129,"SourceStructureID":63440,"TargetStructureID":63445,"Label":"63440-63445 via Conventional from 63444 -> 63446","Type":"Conventional","Directional":true,"Links":[{"SourceID":63444,"TargetID":63446,"Directional":true}]},{"ID":15130,"SourceStructureID":63445,"TargetStructureID":13858,"Label":"63445-13858 via Ribbon Synapse from 63447 -> 63439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63447,"TargetID":63439,"Directional":true}]},{"ID":15131,"SourceStructureID":63451,"TargetStructureID":8720,"Label":"63451-8720 via Ribbon Synapse from 63452 -> 63450","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63452,"TargetID":63450,"Directional":true}]},{"ID":15132,"SourceStructureID":63460,"TargetStructureID":8720,"Label":"63460-8720 via Ribbon Synapse from 63461 -> 63459","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63461,"TargetID":63459,"Directional":true}]},{"ID":15133,"SourceStructureID":63465,"TargetStructureID":8720,"Label":"63465-8720 via Ribbon Synapse from 63466 -> 63464","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63466,"TargetID":63464,"Directional":true}]},{"ID":15134,"SourceStructureID":63473,"TargetStructureID":63469,"Label":"63473-63469 via Ribbon Synapse from 63474 -> 63472","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63474,"TargetID":63472,"Directional":true}]},{"ID":15135,"SourceStructureID":63485,"TargetStructureID":71985,"Label":"63485-71985 via Ribbon Synapse from 72017 -> 72018","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72017,"TargetID":72018,"Directional":true}]},{"ID":15136,"SourceStructureID":63487,"TargetStructureID":71985,"Label":"63487-71985 via Ribbon Synapse from 63488 -> 71987","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63488,"TargetID":71987,"Directional":true}]},{"ID":15137,"SourceStructureID":63513,"TargetStructureID":8575,"Label":"63513-8575 via Ribbon Synapse from 63514 -> 63512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63514,"TargetID":63512,"Directional":true}]},{"ID":15138,"SourceStructureID":63516,"TargetStructureID":8575,"Label":"63516-8575 via Conventional from 63517 -> 63509","Type":"Conventional","Directional":true,"Links":[{"SourceID":63517,"TargetID":63509,"Directional":true}]},{"ID":15139,"SourceStructureID":63521,"TargetStructureID":8575,"Label":"63521-8575 via Conventional from 63523 -> 62104","Type":"Conventional","Directional":true,"Links":[{"SourceID":63523,"TargetID":62104,"Directional":true}]},{"ID":15140,"SourceStructureID":63521,"TargetStructureID":35145,"Label":"63521-35145 via Conventional from 63522 -> 45493","Type":"Conventional","Directional":true,"Links":[{"SourceID":63522,"TargetID":45493,"Directional":true}]},{"ID":15141,"SourceStructureID":63542,"TargetStructureID":8575,"Label":"63542-8575 via Conventional from 63543 -> 63541","Type":"Conventional","Directional":true,"Links":[{"SourceID":63543,"TargetID":63541,"Directional":true}]},{"ID":15142,"SourceStructureID":63550,"TargetStructureID":8575,"Label":"63550-8575 via Conventional from 63552 -> 62100","Type":"Conventional","Directional":true,"Links":[{"SourceID":63552,"TargetID":62100,"Directional":true}]},{"ID":15143,"SourceStructureID":63573,"TargetStructureID":63550,"Label":"63573-63550 via Ribbon Synapse from 63575 -> 63572","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63575,"TargetID":63572,"Directional":true}]},{"ID":15144,"SourceStructureID":63592,"TargetStructureID":63550,"Label":"63592-63550 via Ribbon Synapse from 63593 -> 63591","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63593,"TargetID":63591,"Directional":true}]},{"ID":15145,"SourceStructureID":63612,"TargetStructureID":8575,"Label":"63612-8575 via Conventional from 63613 -> 62098","Type":"Conventional","Directional":true,"Links":[{"SourceID":63613,"TargetID":62098,"Directional":true}]},{"ID":15146,"SourceStructureID":63619,"TargetStructureID":8575,"Label":"63619-8575 via Conventional from 63620 -> 62096","Type":"Conventional","Directional":true,"Links":[{"SourceID":63620,"TargetID":62096,"Directional":true}]},{"ID":15147,"SourceStructureID":63628,"TargetStructureID":397,"Label":"63628-397 via Conventional from 63826 -> 68724","Type":"Conventional","Directional":true,"Links":[{"SourceID":63826,"TargetID":68724,"Directional":true}]},{"ID":15148,"SourceStructureID":63628,"TargetStructureID":8575,"Label":"63628-8575 via Conventional from 63629 -> 62095","Type":"Conventional","Directional":true,"Links":[{"SourceID":63629,"TargetID":62095,"Directional":true}]},{"ID":15149,"SourceStructureID":63628,"TargetStructureID":59333,"Label":"63628-59333 via Conventional from 85040 -> 85037","Type":"Conventional","Directional":true,"Links":[{"SourceID":85040,"TargetID":85037,"Directional":true}]},{"ID":15150,"SourceStructureID":63628,"TargetStructureID":63806,"Label":"63628-63806 via Conventional from 63805 -> 63808","Type":"Conventional","Directional":true,"Links":[{"SourceID":63805,"TargetID":63808,"Directional":true}]},{"ID":15151,"SourceStructureID":63799,"TargetStructureID":59362,"Label":"63799-59362 via Conventional from 63800 -> 63798","Type":"Conventional","Directional":true,"Links":[{"SourceID":63800,"TargetID":63798,"Directional":true}]},{"ID":15152,"SourceStructureID":63806,"TargetStructureID":63628,"Label":"63806-63628 via Ribbon Synapse from 63807 -> 63804","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63807,"TargetID":63804,"Directional":true}]},{"ID":15153,"SourceStructureID":63956,"TargetStructureID":5611,"Label":"63956-5611 via Conventional from 63957 -> 63955","Type":"Conventional","Directional":true,"Links":[{"SourceID":63957,"TargetID":63955,"Directional":true}]},{"ID":15154,"SourceStructureID":63991,"TargetStructureID":63978,"Label":"63991-63978 via Ribbon Synapse from 63992 -> 63990","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63992,"TargetID":63990,"Directional":true}]},{"ID":15155,"SourceStructureID":64196,"TargetStructureID":32804,"Label":"64196-32804 via Ribbon Synapse from 64199 -> 64206, 64200 -> 64205","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64199,"TargetID":64206,"Directional":true},{"SourceID":64200,"TargetID":64205,"Directional":true}]},{"ID":15156,"SourceStructureID":64355,"TargetStructureID":13858,"Label":"64355-13858 via Conventional from 64356 -> 63418","Type":"Conventional","Directional":true,"Links":[{"SourceID":64356,"TargetID":63418,"Directional":true}]},{"ID":15157,"SourceStructureID":64362,"TargetStructureID":593,"Label":"64362-593 via Conventional from 64364 -> 64365","Type":"Conventional","Directional":true,"Links":[{"SourceID":64364,"TargetID":64365,"Directional":true}]},{"ID":15158,"SourceStructureID":64362,"TargetStructureID":7594,"Label":"64362-7594 via Conventional from 82389 -> 82390","Type":"Conventional","Directional":true,"Links":[{"SourceID":82389,"TargetID":82390,"Directional":true}]},{"ID":15159,"SourceStructureID":64362,"TargetStructureID":16026,"Label":"64362-16026 via Conventional from 81910 -> 25639","Type":"Conventional","Directional":true,"Links":[{"SourceID":81910,"TargetID":25639,"Directional":true}]},{"ID":15160,"SourceStructureID":64362,"TargetStructureID":31161,"Label":"64362-31161 via Conventional from 64363 -> 31244","Type":"Conventional","Directional":true,"Links":[{"SourceID":64363,"TargetID":31244,"Directional":true}]},{"ID":15161,"SourceStructureID":64362,"TargetStructureID":81912,"Label":"64362-81912 via Conventional from 81911 -> 81913","Type":"Conventional","Directional":true,"Links":[{"SourceID":81911,"TargetID":81913,"Directional":true}]},{"ID":15162,"SourceStructureID":64387,"TargetStructureID":8720,"Label":"64387-8720 via Conventional from 64388 -> 63171","Type":"Conventional","Directional":true,"Links":[{"SourceID":64388,"TargetID":63171,"Directional":true}]},{"ID":15163,"SourceStructureID":64389,"TargetStructureID":8720,"Label":"64389-8720 via Conventional from 64390 -> 63170","Type":"Conventional","Directional":true,"Links":[{"SourceID":64390,"TargetID":63170,"Directional":true}]},{"ID":15164,"SourceStructureID":64399,"TargetStructureID":8720,"Label":"64399-8720 via Conventional from 64400 -> 63169","Type":"Conventional","Directional":true,"Links":[{"SourceID":64400,"TargetID":63169,"Directional":true}]},{"ID":15165,"SourceStructureID":64402,"TargetStructureID":8720,"Label":"64402-8720 via Conventional from 64403 -> 64401","Type":"Conventional","Directional":true,"Links":[{"SourceID":64403,"TargetID":64401,"Directional":true}]},{"ID":15166,"SourceStructureID":64406,"TargetStructureID":8720,"Label":"64406-8720 via Conventional from 64407 -> 64405","Type":"Conventional","Directional":true,"Links":[{"SourceID":64407,"TargetID":64405,"Directional":true}]},{"ID":15167,"SourceStructureID":64409,"TargetStructureID":5530,"Label":"64409-5530 via Conventional from 74999 -> 75000","Type":"Conventional","Directional":true,"Links":[{"SourceID":74999,"TargetID":75000,"Directional":true}]},{"ID":15168,"SourceStructureID":64447,"TargetStructureID":5729,"Label":"64447-5729 via Conventional from 64448 -> 64446","Type":"Conventional","Directional":true,"Links":[{"SourceID":64448,"TargetID":64446,"Directional":true}]},{"ID":15169,"SourceStructureID":64520,"TargetStructureID":5729,"Label":"64520-5729 via Conventional from 64521 -> 64519","Type":"Conventional","Directional":true,"Links":[{"SourceID":64521,"TargetID":64519,"Directional":true}]},{"ID":15170,"SourceStructureID":64547,"TargetStructureID":5575,"Label":"64547-5575 via Conventional from 64548 -> 64546","Type":"Conventional","Directional":true,"Links":[{"SourceID":64548,"TargetID":64546,"Directional":true}]},{"ID":15171,"SourceStructureID":64549,"TargetStructureID":5575,"Label":"64549-5575 via Conventional from 64550 -> 22970","Type":"Conventional","Directional":true,"Links":[{"SourceID":64550,"TargetID":22970,"Directional":true}]},{"ID":15172,"SourceStructureID":64626,"TargetStructureID":7859,"Label":"64626-7859 via Conventional from 64627 -> 64625","Type":"Conventional","Directional":true,"Links":[{"SourceID":64627,"TargetID":64625,"Directional":true}]},{"ID":15173,"SourceStructureID":64651,"TargetStructureID":5860,"Label":"64651-5860 via Conventional from 64652 -> 64653","Type":"Conventional","Directional":true,"Links":[{"SourceID":64652,"TargetID":64653,"Directional":true}]},{"ID":15174,"SourceStructureID":64654,"TargetStructureID":485,"Label":"64654-485 via Conventional from 64656 -> 64657","Type":"Conventional","Directional":true,"Links":[{"SourceID":64656,"TargetID":64657,"Directional":true}]},{"ID":15175,"SourceStructureID":64665,"TargetStructureID":7859,"Label":"64665-7859 via Conventional from 64667 -> 64664","Type":"Conventional","Directional":true,"Links":[{"SourceID":64667,"TargetID":64664,"Directional":true}]},{"ID":15176,"SourceStructureID":64670,"TargetStructureID":64673,"Label":"64670-64673 via Conventional from 64672 -> 64674","Type":"Conventional","Directional":true,"Links":[{"SourceID":64672,"TargetID":64674,"Directional":true}]},{"ID":15177,"SourceStructureID":64673,"TargetStructureID":174,"Label":"64673-174 via Ribbon Synapse from 64676 -> 64675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64676,"TargetID":64675,"Directional":true}]},{"ID":15178,"SourceStructureID":64673,"TargetStructureID":64670,"Label":"64673-64670 via Ribbon Synapse from 64676 -> 64677, 64680 -> 64679","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64676,"TargetID":64677,"Directional":true},{"SourceID":64680,"TargetID":64679,"Directional":true}]},{"ID":15179,"SourceStructureID":64673,"TargetStructureID":119154,"Label":"64673-119154 via Ribbon Synapse from 64680 -> 119174","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64680,"TargetID":119174,"Directional":true}]},{"ID":15180,"SourceStructureID":64690,"TargetStructureID":9787,"Label":"64690-9787 via Ribbon Synapse from 64691 -> 64692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64691,"TargetID":64692,"Directional":true}]},{"ID":15181,"SourceStructureID":64690,"TargetStructureID":10574,"Label":"64690-10574 via Ribbon Synapse from 84549 -> 84547","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84549,"TargetID":84547,"Directional":true}]},{"ID":15182,"SourceStructureID":64698,"TargetStructureID":8575,"Label":"64698-8575 via Conventional from 64699 -> 63510","Type":"Conventional","Directional":true,"Links":[{"SourceID":64699,"TargetID":63510,"Directional":true}]},{"ID":15183,"SourceStructureID":64787,"TargetStructureID":64777,"Label":"64787-64777 via Conventional from 64788 -> 64786","Type":"Conventional","Directional":true,"Links":[{"SourceID":64788,"TargetID":64786,"Directional":true}]},{"ID":15184,"SourceStructureID":64795,"TargetStructureID":64777,"Label":"64795-64777 via Conventional from 64796 -> 64794","Type":"Conventional","Directional":true,"Links":[{"SourceID":64796,"TargetID":64794,"Directional":true}]},{"ID":15185,"SourceStructureID":64805,"TargetStructureID":10963,"Label":"64805-10963 via Conventional from 64806 -> 64803, 64807 -> 64804","Type":"Conventional","Directional":true,"Links":[{"SourceID":64806,"TargetID":64803,"Directional":true},{"SourceID":64807,"TargetID":64804,"Directional":true}]},{"ID":15186,"SourceStructureID":64841,"TargetStructureID":64777,"Label":"64841-64777 via Ribbon Synapse from 64842 -> 64840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":64842,"TargetID":64840,"Directional":true}]},{"ID":15187,"SourceStructureID":64920,"TargetStructureID":4890,"Label":"64920-4890 via Conventional from 64921 -> 64919","Type":"Conventional","Directional":true,"Links":[{"SourceID":64921,"TargetID":64919,"Directional":true}]},{"ID":15188,"SourceStructureID":64939,"TargetStructureID":64939,"Label":"64939-64939 via Conventional from 69440 -> 69419","Type":"Conventional","Directional":true,"Links":[{"SourceID":69440,"TargetID":69419,"Directional":true}]},{"ID":15189,"SourceStructureID":64939,"TargetStructureID":64939,"Label":"64939-64939 via Ribbon Synapse from 69707 -> 69715","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69707,"TargetID":69715,"Directional":true}]},{"ID":15190,"SourceStructureID":64939,"TargetStructureID":69436,"Label":"64939-69436 via Ribbon Synapse from 69417 -> 69437","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69417,"TargetID":69437,"Directional":true}]},{"ID":15191,"SourceStructureID":64939,"TargetStructureID":69439,"Label":"64939-69439 via Ribbon Synapse from 69417 -> 69644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69417,"TargetID":69644,"Directional":true}]},{"ID":15192,"SourceStructureID":64939,"TargetStructureID":69443,"Label":"64939-69443 via BC Conventional Synapse from 69421 -> 69444","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":69421,"TargetID":69444,"Directional":true}]},{"ID":15193,"SourceStructureID":64939,"TargetStructureID":69446,"Label":"64939-69446 via Ribbon Synapse from 69425 -> 116705, 69445 -> 69447","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69425,"TargetID":116705,"Directional":true},{"SourceID":69445,"TargetID":69447,"Directional":true}]},{"ID":15194,"SourceStructureID":64939,"TargetStructureID":69454,"Label":"64939-69454 via Ribbon Synapse from 69423 -> 69455","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69423,"TargetID":69455,"Directional":true}]},{"ID":15195,"SourceStructureID":64939,"TargetStructureID":69554,"Label":"64939-69554 via BC Conventional Synapse from 69564 -> 69565","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":69564,"TargetID":69565,"Directional":true}]},{"ID":15196,"SourceStructureID":64939,"TargetStructureID":69695,"Label":"64939-69695 via Ribbon Synapse from 69694 -> 69698","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69694,"TargetID":69698,"Directional":true}]},{"ID":15197,"SourceStructureID":64939,"TargetStructureID":69697,"Label":"64939-69697 via Ribbon Synapse from 69694 -> 69699","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69694,"TargetID":69699,"Directional":true}]},{"ID":15198,"SourceStructureID":64939,"TargetStructureID":69708,"Label":"64939-69708 via Ribbon Synapse from 69707 -> 69709","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69707,"TargetID":69709,"Directional":true}]},{"ID":15199,"SourceStructureID":64939,"TargetStructureID":69710,"Label":"64939-69710 via Ribbon Synapse from 69707 -> 69716","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69707,"TargetID":69716,"Directional":true}]},{"ID":15200,"SourceStructureID":64939,"TargetStructureID":69720,"Label":"64939-69720 via Ribbon Synapse from 69719 -> 69722","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69719,"TargetID":69722,"Directional":true}]},{"ID":15201,"SourceStructureID":64939,"TargetStructureID":69721,"Label":"64939-69721 via Ribbon Synapse from 69719 -> 69723","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69719,"TargetID":69723,"Directional":true}]},{"ID":15202,"SourceStructureID":64939,"TargetStructureID":69727,"Label":"64939-69727 via Ribbon Synapse from 69726 -> 69730","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69726,"TargetID":69730,"Directional":true}]},{"ID":15203,"SourceStructureID":64939,"TargetStructureID":69728,"Label":"64939-69728 via Ribbon Synapse from 69726 -> 69731","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69726,"TargetID":69731,"Directional":true}]},{"ID":15204,"SourceStructureID":64939,"TargetStructureID":69733,"Label":"64939-69733 via Ribbon Synapse from 69732 -> 70081","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69732,"TargetID":70081,"Directional":true}]},{"ID":15205,"SourceStructureID":64939,"TargetStructureID":69735,"Label":"64939-69735 via Ribbon Synapse from 69734 -> 69736","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69734,"TargetID":69736,"Directional":true}]},{"ID":15206,"SourceStructureID":64939,"TargetStructureID":69737,"Label":"64939-69737 via Ribbon Synapse from 69734 -> 69738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69734,"TargetID":69738,"Directional":true}]},{"ID":15207,"SourceStructureID":64939,"TargetStructureID":69750,"Label":"64939-69750 via Ribbon Synapse from 70082 -> 70083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70082,"TargetID":70083,"Directional":true}]},{"ID":15208,"SourceStructureID":64939,"TargetStructureID":69966,"Label":"64939-69966 via Ribbon Synapse from 69965 -> 69969","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69965,"TargetID":69969,"Directional":true}]},{"ID":15209,"SourceStructureID":64939,"TargetStructureID":69967,"Label":"64939-69967 via Ribbon Synapse from 69965 -> 69968","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69965,"TargetID":69968,"Directional":true}]},{"ID":15210,"SourceStructureID":64939,"TargetStructureID":69972,"Label":"64939-69972 via Ribbon Synapse from 69970 -> 69974","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69970,"TargetID":69974,"Directional":true}]},{"ID":15211,"SourceStructureID":64939,"TargetStructureID":69973,"Label":"64939-69973 via Ribbon Synapse from 69970 -> 69975","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":69970,"TargetID":69975,"Directional":true}]},{"ID":15212,"SourceStructureID":64939,"TargetStructureID":70003,"Label":"64939-70003 via Ribbon Synapse from 70002 -> 70004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70002,"TargetID":70004,"Directional":true}]},{"ID":15213,"SourceStructureID":64939,"TargetStructureID":93634,"Label":"64939-93634 via BC Conventional Synapse from 93633 -> 93636","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":93633,"TargetID":93636,"Directional":true}]},{"ID":15214,"SourceStructureID":64939,"TargetStructureID":112880,"Label":"64939-112880 via Ribbon Synapse from 93639 -> 112881, 93642 -> 112882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93639,"TargetID":112881,"Directional":true},{"SourceID":93642,"TargetID":112882,"Directional":true}]},{"ID":15215,"SourceStructureID":65023,"TargetStructureID":6118,"Label":"65023-6118 via Conventional from 65032 -> 65031","Type":"Conventional","Directional":true,"Links":[{"SourceID":65032,"TargetID":65031,"Directional":true}]},{"ID":15216,"SourceStructureID":65056,"TargetStructureID":5107,"Label":"65056-5107 via Conventional from 65057 -> 65011","Type":"Conventional","Directional":true,"Links":[{"SourceID":65057,"TargetID":65011,"Directional":true}]},{"ID":15217,"SourceStructureID":65134,"TargetStructureID":65138,"Label":"65134-65138 via Conventional from 65137 -> 65139","Type":"Conventional","Directional":true,"Links":[{"SourceID":65137,"TargetID":65139,"Directional":true}]},{"ID":15218,"SourceStructureID":65134,"TargetStructureID":65141,"Label":"65134-65141 via Conventional from 65140 -> 65142","Type":"Conventional","Directional":true,"Links":[{"SourceID":65140,"TargetID":65142,"Directional":true}]},{"ID":15219,"SourceStructureID":65134,"TargetStructureID":65144,"Label":"65134-65144 via Conventional from 65143 -> 65145","Type":"Conventional","Directional":true,"Links":[{"SourceID":65143,"TargetID":65145,"Directional":true}]},{"ID":15220,"SourceStructureID":65156,"TargetStructureID":593,"Label":"65156-593 via Conventional from 65157 -> 65155","Type":"Conventional","Directional":true,"Links":[{"SourceID":65157,"TargetID":65155,"Directional":true}]},{"ID":15221,"SourceStructureID":65181,"TargetStructureID":476,"Label":"65181-476 via Conventional from 65182 -> 18023","Type":"Conventional","Directional":true,"Links":[{"SourceID":65182,"TargetID":18023,"Directional":true}]},{"ID":15222,"SourceStructureID":65245,"TargetStructureID":180,"Label":"65245-180 via Conventional from 94584 -> 5734","Type":"Conventional","Directional":true,"Links":[{"SourceID":94584,"TargetID":5734,"Directional":true}]},{"ID":15223,"SourceStructureID":65247,"TargetStructureID":6117,"Label":"65247-6117 via Conventional from 65248 -> 65249","Type":"Conventional","Directional":true,"Links":[{"SourceID":65248,"TargetID":65249,"Directional":true}]},{"ID":15224,"SourceStructureID":65250,"TargetStructureID":6117,"Label":"65250-6117 via Conventional from 65251 -> 65252","Type":"Conventional","Directional":true,"Links":[{"SourceID":65251,"TargetID":65252,"Directional":true}]},{"ID":15225,"SourceStructureID":65278,"TargetStructureID":593,"Label":"65278-593 via Conventional from 65279 -> 65280","Type":"Conventional","Directional":true,"Links":[{"SourceID":65279,"TargetID":65280,"Directional":true}]},{"ID":15226,"SourceStructureID":65287,"TargetStructureID":65284,"Label":"65287-65284 via Conventional from 65288 -> 65286","Type":"Conventional","Directional":true,"Links":[{"SourceID":65288,"TargetID":65286,"Directional":true}]},{"ID":15227,"SourceStructureID":65297,"TargetStructureID":65267,"Label":"65297-65267 via Conventional from 65298 -> 65296","Type":"Conventional","Directional":true,"Links":[{"SourceID":65298,"TargetID":65296,"Directional":true}]},{"ID":15228,"SourceStructureID":65307,"TargetStructureID":593,"Label":"65307-593 via Conventional from 65308 -> 65306","Type":"Conventional","Directional":true,"Links":[{"SourceID":65308,"TargetID":65306,"Directional":true}]},{"ID":15229,"SourceStructureID":65309,"TargetStructureID":593,"Label":"65309-593 via Conventional from 65310 -> 65311","Type":"Conventional","Directional":true,"Links":[{"SourceID":65310,"TargetID":65311,"Directional":true}]},{"ID":15230,"SourceStructureID":65318,"TargetStructureID":593,"Label":"65318-593 via Conventional from 83562 -> 83560","Type":"Conventional","Directional":true,"Links":[{"SourceID":83562,"TargetID":83560,"Directional":true}]},{"ID":15231,"SourceStructureID":65318,"TargetStructureID":65307,"Label":"65318-65307 via Conventional from 65319 -> 65317","Type":"Conventional","Directional":true,"Links":[{"SourceID":65319,"TargetID":65317,"Directional":true}]},{"ID":15232,"SourceStructureID":65318,"TargetStructureID":66523,"Label":"65318-66523 via Conventional from 75920 -> 75921","Type":"Conventional","Directional":true,"Links":[{"SourceID":75920,"TargetID":75921,"Directional":true}]},{"ID":15233,"SourceStructureID":65320,"TargetStructureID":593,"Label":"65320-593 via Conventional from 65321 -> 65322, 65340 -> 62894, 65341 -> 63034, 65342 -> 65343, 65346 -> 65347","Type":"Conventional","Directional":true,"Links":[{"SourceID":65321,"TargetID":65322,"Directional":true},{"SourceID":65340,"TargetID":62894,"Directional":true},{"SourceID":65341,"TargetID":63034,"Directional":true},{"SourceID":65342,"TargetID":65343,"Directional":true},{"SourceID":65346,"TargetID":65347,"Directional":true}]},{"ID":15234,"SourceStructureID":65324,"TargetStructureID":65332,"Label":"65324-65332 via Conventional from 65329 -> 65333","Type":"Conventional","Directional":true,"Links":[{"SourceID":65329,"TargetID":65333,"Directional":true}]},{"ID":15235,"SourceStructureID":65324,"TargetStructureID":65334,"Label":"65324-65334 via Conventional from 65336 -> 65335","Type":"Conventional","Directional":true,"Links":[{"SourceID":65336,"TargetID":65335,"Directional":true}]},{"ID":15236,"SourceStructureID":65324,"TargetStructureID":69162,"Label":"65324-69162 via Conventional from 69197 -> 69198","Type":"Conventional","Directional":true,"Links":[{"SourceID":69197,"TargetID":69198,"Directional":true}]},{"ID":15237,"SourceStructureID":65334,"TargetStructureID":65338,"Label":"65334-65338 via Conventional from 65337 -> 65339","Type":"Conventional","Directional":true,"Links":[{"SourceID":65337,"TargetID":65339,"Directional":true}]},{"ID":15238,"SourceStructureID":65351,"TargetStructureID":593,"Label":"65351-593 via Conventional from 65352 -> 65353","Type":"Conventional","Directional":true,"Links":[{"SourceID":65352,"TargetID":65353,"Directional":true}]},{"ID":15239,"SourceStructureID":65351,"TargetStructureID":5562,"Label":"65351-5562 via Conventional from 79033 -> 76373","Type":"Conventional","Directional":true,"Links":[{"SourceID":79033,"TargetID":76373,"Directional":true}]},{"ID":15240,"SourceStructureID":65351,"TargetStructureID":63371,"Label":"65351-63371 via Conventional from 79010 -> 63389, 79030 -> 63390","Type":"Conventional","Directional":true,"Links":[{"SourceID":79010,"TargetID":63389,"Directional":true},{"SourceID":79030,"TargetID":63390,"Directional":true}]},{"ID":15241,"SourceStructureID":65351,"TargetStructureID":78947,"Label":"65351-78947 via Conventional from 78942 -> 78948","Type":"Conventional","Directional":true,"Links":[{"SourceID":78942,"TargetID":78948,"Directional":true}]},{"ID":15242,"SourceStructureID":65351,"TargetStructureID":79034,"Label":"65351-79034 via Conventional from 79038 -> 79039","Type":"Conventional","Directional":true,"Links":[{"SourceID":79038,"TargetID":79039,"Directional":true}]},{"ID":15243,"SourceStructureID":65351,"TargetStructureID":79042,"Label":"65351-79042 via Conventional from 79041 -> 79043","Type":"Conventional","Directional":true,"Links":[{"SourceID":79041,"TargetID":79043,"Directional":true}]},{"ID":15244,"SourceStructureID":65355,"TargetStructureID":65351,"Label":"65355-65351 via Conventional from 65356 -> 65354","Type":"Conventional","Directional":true,"Links":[{"SourceID":65356,"TargetID":65354,"Directional":true}]},{"ID":15245,"SourceStructureID":65355,"TargetStructureID":65358,"Label":"65355-65358 via Conventional from 65357 -> 65359","Type":"Conventional","Directional":true,"Links":[{"SourceID":65357,"TargetID":65359,"Directional":true}]},{"ID":15246,"SourceStructureID":65358,"TargetStructureID":606,"Label":"65358-606 via Conventional from 65360 -> 47476","Type":"Conventional","Directional":true,"Links":[{"SourceID":65360,"TargetID":47476,"Directional":true}]},{"ID":15247,"SourceStructureID":65358,"TargetStructureID":65373,"Label":"65358-65373 via Conventional from 65372 -> 65374","Type":"Conventional","Directional":true,"Links":[{"SourceID":65372,"TargetID":65374,"Directional":true}]},{"ID":15248,"SourceStructureID":65363,"TargetStructureID":5562,"Label":"65363-5562 via Conventional from 65365 -> 63759","Type":"Conventional","Directional":true,"Links":[{"SourceID":65365,"TargetID":63759,"Directional":true}]},{"ID":15249,"SourceStructureID":65363,"TargetStructureID":65358,"Label":"65363-65358 via Conventional from 65364 -> 65362","Type":"Conventional","Directional":true,"Links":[{"SourceID":65364,"TargetID":65362,"Directional":true}]},{"ID":15250,"SourceStructureID":65363,"TargetStructureID":65366,"Label":"65363-65366 via Conventional from 65368 -> 65367","Type":"Conventional","Directional":true,"Links":[{"SourceID":65368,"TargetID":65367,"Directional":true}]},{"ID":15251,"SourceStructureID":65375,"TargetStructureID":593,"Label":"65375-593 via Conventional from 65384 -> 65385, 65551 -> 65552","Type":"Conventional","Directional":true,"Links":[{"SourceID":65384,"TargetID":65385,"Directional":true},{"SourceID":65551,"TargetID":65552,"Directional":true}]},{"ID":15252,"SourceStructureID":65375,"TargetStructureID":5283,"Label":"65375-5283 via Conventional from 65553 -> 65554","Type":"Conventional","Directional":true,"Links":[{"SourceID":65553,"TargetID":65554,"Directional":true}]},{"ID":15253,"SourceStructureID":65375,"TargetStructureID":65376,"Label":"65375-65376 via Conventional from 65378 -> 65377","Type":"Conventional","Directional":true,"Links":[{"SourceID":65378,"TargetID":65377,"Directional":true}]},{"ID":15254,"SourceStructureID":65375,"TargetStructureID":65555,"Label":"65375-65555 via Conventional from 65557 -> 65558","Type":"Conventional","Directional":true,"Links":[{"SourceID":65557,"TargetID":65558,"Directional":true}]},{"ID":15255,"SourceStructureID":65375,"TargetStructureID":73102,"Label":"65375-73102 via Conventional from 82399 -> 82400","Type":"Conventional","Directional":true,"Links":[{"SourceID":82399,"TargetID":82400,"Directional":true}]},{"ID":15256,"SourceStructureID":65376,"TargetStructureID":593,"Label":"65376-593 via Conventional from 65379 -> 65380","Type":"Conventional","Directional":true,"Links":[{"SourceID":65379,"TargetID":65380,"Directional":true}]},{"ID":15257,"SourceStructureID":65388,"TargetStructureID":57034,"Label":"65388-57034 via Conventional from 65393 -> 65394","Type":"Conventional","Directional":true,"Links":[{"SourceID":65393,"TargetID":65394,"Directional":true}]},{"ID":15258,"SourceStructureID":65388,"TargetStructureID":65391,"Label":"65388-65391 via Conventional from 65390 -> 65392","Type":"Conventional","Directional":true,"Links":[{"SourceID":65390,"TargetID":65392,"Directional":true}]},{"ID":15259,"SourceStructureID":65404,"TargetStructureID":593,"Label":"65404-593 via Conventional from 65605 -> 65606","Type":"Conventional","Directional":true,"Links":[{"SourceID":65605,"TargetID":65606,"Directional":true}]},{"ID":15260,"SourceStructureID":65408,"TargetStructureID":65612,"Label":"65408-65612 via Conventional from 65611 -> 65613","Type":"Conventional","Directional":true,"Links":[{"SourceID":65611,"TargetID":65613,"Directional":true}]},{"ID":15261,"SourceStructureID":65411,"TargetStructureID":593,"Label":"65411-593 via Conventional from 65412 -> 65410","Type":"Conventional","Directional":true,"Links":[{"SourceID":65412,"TargetID":65410,"Directional":true}]},{"ID":15262,"SourceStructureID":65439,"TargetStructureID":65438,"Label":"65439-65438 via Conventional from 65440 -> 65441","Type":"Conventional","Directional":true,"Links":[{"SourceID":65440,"TargetID":65441,"Directional":true}]},{"ID":15263,"SourceStructureID":65454,"TargetStructureID":593,"Label":"65454-593 via Conventional from 65459 -> 65460, 65527 -> 65528","Type":"Conventional","Directional":true,"Links":[{"SourceID":65459,"TargetID":65460,"Directional":true},{"SourceID":65527,"TargetID":65528,"Directional":true}]},{"ID":15264,"SourceStructureID":65454,"TargetStructureID":65457,"Label":"65454-65457 via Conventional from 65456 -> 65458","Type":"Conventional","Directional":true,"Links":[{"SourceID":65456,"TargetID":65458,"Directional":true}]},{"ID":15265,"SourceStructureID":65461,"TargetStructureID":593,"Label":"65461-593 via Conventional from 65462 -> 65463, 69859 -> 65402","Type":"Conventional","Directional":true,"Links":[{"SourceID":65462,"TargetID":65463,"Directional":true},{"SourceID":69859,"TargetID":65402,"Directional":true}]},{"ID":15266,"SourceStructureID":65464,"TargetStructureID":593,"Label":"65464-593 via Conventional from 65472 -> 65473, 65565 -> 65566, 65572 -> 65575","Type":"Conventional","Directional":true,"Links":[{"SourceID":65472,"TargetID":65473,"Directional":true},{"SourceID":65565,"TargetID":65566,"Directional":true},{"SourceID":65572,"TargetID":65575,"Directional":true}]},{"ID":15267,"SourceStructureID":65477,"TargetStructureID":65480,"Label":"65477-65480 via Conventional from 65479 -> 65481","Type":"Conventional","Directional":true,"Links":[{"SourceID":65479,"TargetID":65481,"Directional":true}]},{"ID":15268,"SourceStructureID":65480,"TargetStructureID":5279,"Label":"65480-5279 via Conventional from 65482 -> 49253","Type":"Conventional","Directional":true,"Links":[{"SourceID":65482,"TargetID":49253,"Directional":true}]},{"ID":15269,"SourceStructureID":65484,"TargetStructureID":65477,"Label":"65484-65477 via Conventional from 65489 -> 65488","Type":"Conventional","Directional":true,"Links":[{"SourceID":65489,"TargetID":65488,"Directional":true}]},{"ID":15270,"SourceStructureID":65484,"TargetStructureID":65480,"Label":"65484-65480 via Conventional from 65485 -> 65483","Type":"Conventional","Directional":true,"Links":[{"SourceID":65485,"TargetID":65483,"Directional":true}]},{"ID":15271,"SourceStructureID":65514,"TargetStructureID":5635,"Label":"65514-5635 via Conventional from 65515 -> 55964","Type":"Conventional","Directional":true,"Links":[{"SourceID":65515,"TargetID":55964,"Directional":true}]},{"ID":15272,"SourceStructureID":65519,"TargetStructureID":8575,"Label":"65519-8575 via Ribbon Synapse from 65520 -> 65518","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65520,"TargetID":65518,"Directional":true}]},{"ID":15273,"SourceStructureID":65522,"TargetStructureID":8575,"Label":"65522-8575 via Conventional from 65523 -> 65521","Type":"Conventional","Directional":true,"Links":[{"SourceID":65523,"TargetID":65521,"Directional":true}]},{"ID":15274,"SourceStructureID":65524,"TargetStructureID":8575,"Label":"65524-8575 via Conventional from 65525 -> 61538","Type":"Conventional","Directional":true,"Links":[{"SourceID":65525,"TargetID":61538,"Directional":true}]},{"ID":15275,"SourceStructureID":65532,"TargetStructureID":16026,"Label":"65532-16026 via Conventional from 65534 -> 25725","Type":"Conventional","Directional":true,"Links":[{"SourceID":65534,"TargetID":25725,"Directional":true}]},{"ID":15276,"SourceStructureID":65532,"TargetStructureID":65536,"Label":"65532-65536 via Conventional from 65535 -> 65537","Type":"Conventional","Directional":true,"Links":[{"SourceID":65535,"TargetID":65537,"Directional":true}]},{"ID":15277,"SourceStructureID":65536,"TargetStructureID":65538,"Label":"65536-65538 via Conventional from 65539 -> 65540","Type":"Conventional","Directional":true,"Links":[{"SourceID":65539,"TargetID":65540,"Directional":true}]},{"ID":15278,"SourceStructureID":65536,"TargetStructureID":67072,"Label":"65536-67072 via Conventional from 67071 -> 67073","Type":"Conventional","Directional":true,"Links":[{"SourceID":67071,"TargetID":67073,"Directional":true}]},{"ID":15279,"SourceStructureID":65559,"TargetStructureID":593,"Label":"65559-593 via Conventional from 66060 -> 66061","Type":"Conventional","Directional":true,"Links":[{"SourceID":66060,"TargetID":66061,"Directional":true}]},{"ID":15280,"SourceStructureID":65559,"TargetStructureID":29277,"Label":"65559-29277 via Conventional from 84442 -> 123163","Type":"Conventional","Directional":true,"Links":[{"SourceID":84442,"TargetID":123163,"Directional":true}]},{"ID":15281,"SourceStructureID":65559,"TargetStructureID":65375,"Label":"65559-65375 via Conventional from 66060 -> 66063","Type":"Conventional","Directional":true,"Links":[{"SourceID":66060,"TargetID":66063,"Directional":true}]},{"ID":15282,"SourceStructureID":65559,"TargetStructureID":65376,"Label":"65559-65376 via Conventional from 84439 -> 65381","Type":"Conventional","Directional":true,"Links":[{"SourceID":84439,"TargetID":65381,"Directional":true}]},{"ID":15283,"SourceStructureID":65559,"TargetStructureID":65454,"Label":"65559-65454 via Conventional from 66060 -> 66062","Type":"Conventional","Directional":true,"Links":[{"SourceID":66060,"TargetID":66062,"Directional":true}]},{"ID":15284,"SourceStructureID":65559,"TargetStructureID":65477,"Label":"65559-65477 via Conventional from 66070 -> 66069","Type":"Conventional","Directional":true,"Links":[{"SourceID":66070,"TargetID":66069,"Directional":true}]},{"ID":15285,"SourceStructureID":65559,"TargetStructureID":65532,"Label":"65559-65532 via Conventional from 66065 -> 66064","Type":"Conventional","Directional":true,"Links":[{"SourceID":66065,"TargetID":66064,"Directional":true}]},{"ID":15286,"SourceStructureID":65559,"TargetStructureID":66031,"Label":"65559-66031 via Conventional from 66035 -> 66034, 66059 -> 66055","Type":"Conventional","Directional":true,"Links":[{"SourceID":66035,"TargetID":66034,"Directional":true},{"SourceID":66059,"TargetID":66055,"Directional":true}]},{"ID":15287,"SourceStructureID":65559,"TargetStructureID":66053,"Label":"65559-66053 via Conventional from 66059 -> 66058","Type":"Conventional","Directional":true,"Links":[{"SourceID":66059,"TargetID":66058,"Directional":true}]},{"ID":15288,"SourceStructureID":65569,"TargetStructureID":180,"Label":"65569-180 via Conventional from 84485 -> 84486","Type":"Conventional","Directional":true,"Links":[{"SourceID":84485,"TargetID":84486,"Directional":true}]},{"ID":15289,"SourceStructureID":65569,"TargetStructureID":593,"Label":"65569-593 via Conventional from 65570 -> 65571","Type":"Conventional","Directional":true,"Links":[{"SourceID":65570,"TargetID":65571,"Directional":true}]},{"ID":15290,"SourceStructureID":65569,"TargetStructureID":65623,"Label":"65569-65623 via Conventional from 70825 -> 70826","Type":"Conventional","Directional":true,"Links":[{"SourceID":70825,"TargetID":70826,"Directional":true}]},{"ID":15291,"SourceStructureID":65576,"TargetStructureID":180,"Label":"65576-180 via Conventional from 65584 -> 65585","Type":"Conventional","Directional":true,"Links":[{"SourceID":65584,"TargetID":65585,"Directional":true}]},{"ID":15292,"SourceStructureID":65576,"TargetStructureID":593,"Label":"65576-593 via Conventional from 65577 -> 65578","Type":"Conventional","Directional":true,"Links":[{"SourceID":65577,"TargetID":65578,"Directional":true}]},{"ID":15293,"SourceStructureID":65576,"TargetStructureID":5649,"Label":"65576-5649 via Conventional from 84495 -> 82338, 84505 -> 84506","Type":"Conventional","Directional":true,"Links":[{"SourceID":84495,"TargetID":82338,"Directional":true},{"SourceID":84505,"TargetID":84506,"Directional":true}]},{"ID":15294,"SourceStructureID":65576,"TargetStructureID":6115,"Label":"65576-6115 via Conventional from 84496 -> 55885","Type":"Conventional","Directional":true,"Links":[{"SourceID":84496,"TargetID":55885,"Directional":true}]},{"ID":15295,"SourceStructureID":65579,"TargetStructureID":593,"Label":"65579-593 via Conventional from 65580 -> 65581","Type":"Conventional","Directional":true,"Links":[{"SourceID":65580,"TargetID":65581,"Directional":true}]},{"ID":15296,"SourceStructureID":65596,"TargetStructureID":180,"Label":"65596-180 via Conventional from 65598 -> 65599","Type":"Conventional","Directional":true,"Links":[{"SourceID":65598,"TargetID":65599,"Directional":true}]},{"ID":15297,"SourceStructureID":65612,"TargetStructureID":6117,"Label":"65612-6117 via Conventional from 65614 -> 65615","Type":"Conventional","Directional":true,"Links":[{"SourceID":65614,"TargetID":65615,"Directional":true}]},{"ID":15298,"SourceStructureID":65616,"TargetStructureID":606,"Label":"65616-606 via Conventional from 65621 -> 10707","Type":"Conventional","Directional":true,"Links":[{"SourceID":65621,"TargetID":10707,"Directional":true}]},{"ID":15299,"SourceStructureID":65616,"TargetStructureID":6117,"Label":"65616-6117 via Conventional from 65617 -> 65618","Type":"Conventional","Directional":true,"Links":[{"SourceID":65617,"TargetID":65618,"Directional":true}]},{"ID":15300,"SourceStructureID":65616,"TargetStructureID":65612,"Label":"65616-65612 via Conventional from 65619 -> 65620","Type":"Conventional","Directional":true,"Links":[{"SourceID":65619,"TargetID":65620,"Directional":true}]},{"ID":15301,"SourceStructureID":65623,"TargetStructureID":593,"Label":"65623-593 via Conventional from 65624 -> 65622, 66419 -> 28433","Type":"Conventional","Directional":true,"Links":[{"SourceID":65624,"TargetID":65622,"Directional":true},{"SourceID":66419,"TargetID":28433,"Directional":true}]},{"ID":15302,"SourceStructureID":65648,"TargetStructureID":6118,"Label":"65648-6118 via Conventional from 65650 -> 65649","Type":"Conventional","Directional":true,"Links":[{"SourceID":65650,"TargetID":65649,"Directional":true}]},{"ID":15303,"SourceStructureID":65652,"TargetStructureID":6118,"Label":"65652-6118 via Conventional from 65655 -> 65654","Type":"Conventional","Directional":true,"Links":[{"SourceID":65655,"TargetID":65654,"Directional":true}]},{"ID":15304,"SourceStructureID":65680,"TargetStructureID":6118,"Label":"65680-6118 via Conventional from 65681 -> 65679","Type":"Conventional","Directional":true,"Links":[{"SourceID":65681,"TargetID":65679,"Directional":true}]},{"ID":15305,"SourceStructureID":65683,"TargetStructureID":419,"Label":"65683-419 via Conventional from 65689 -> 65690","Type":"Conventional","Directional":true,"Links":[{"SourceID":65689,"TargetID":65690,"Directional":true}]},{"ID":15306,"SourceStructureID":65683,"TargetStructureID":8575,"Label":"65683-8575 via Conventional from 65684 -> 65682","Type":"Conventional","Directional":true,"Links":[{"SourceID":65684,"TargetID":65682,"Directional":true}]},{"ID":15307,"SourceStructureID":65691,"TargetStructureID":419,"Label":"65691-419 via Conventional from 65692 -> 132356","Type":"Conventional","Directional":true,"Links":[{"SourceID":65692,"TargetID":132356,"Directional":true}]},{"ID":15308,"SourceStructureID":65742,"TargetStructureID":61709,"Label":"65742-61709 via Ribbon Synapse from 65743 -> 65741","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":65743,"TargetID":65741,"Directional":true}]},{"ID":15309,"SourceStructureID":65751,"TargetStructureID":437,"Label":"65751-437 via Conventional from 65753 -> 65708, 65755 -> 17586","Type":"Conventional","Directional":true,"Links":[{"SourceID":65753,"TargetID":65708,"Directional":true},{"SourceID":65755,"TargetID":17586,"Directional":true}]},{"ID":15310,"SourceStructureID":65751,"TargetStructureID":65751,"Label":"65751-65751 via Conventional from 65758 -> 65760","Type":"Conventional","Directional":true,"Links":[{"SourceID":65758,"TargetID":65760,"Directional":true}]},{"ID":15311,"SourceStructureID":65791,"TargetStructureID":5609,"Label":"65791-5609 via Conventional from 65792 -> 20636","Type":"Conventional","Directional":true,"Links":[{"SourceID":65792,"TargetID":20636,"Directional":true}]},{"ID":15312,"SourceStructureID":65791,"TargetStructureID":20681,"Label":"65791-20681 via Conventional from 65793 -> 65790","Type":"Conventional","Directional":true,"Links":[{"SourceID":65793,"TargetID":65790,"Directional":true}]},{"ID":15313,"SourceStructureID":65816,"TargetStructureID":8575,"Label":"65816-8575 via BC Conventional Synapse from 65817 -> 21643","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":65817,"TargetID":21643,"Directional":true}]},{"ID":15314,"SourceStructureID":65819,"TargetStructureID":410,"Label":"65819-410 via Conventional from 65820 -> 65818","Type":"Conventional","Directional":true,"Links":[{"SourceID":65820,"TargetID":65818,"Directional":true}]},{"ID":15315,"SourceStructureID":65823,"TargetStructureID":410,"Label":"65823-410 via Conventional from 65824 -> 8349","Type":"Conventional","Directional":true,"Links":[{"SourceID":65824,"TargetID":8349,"Directional":true}]},{"ID":15316,"SourceStructureID":65826,"TargetStructureID":410,"Label":"65826-410 via Conventional from 65827 -> 8359","Type":"Conventional","Directional":true,"Links":[{"SourceID":65827,"TargetID":8359,"Directional":true}]},{"ID":15317,"SourceStructureID":65849,"TargetStructureID":6118,"Label":"65849-6118 via Conventional from 65851 -> 65850","Type":"Conventional","Directional":true,"Links":[{"SourceID":65851,"TargetID":65850,"Directional":true}]},{"ID":15318,"SourceStructureID":65866,"TargetStructureID":65864,"Label":"65866-65864 via Conventional from 65867 -> 65869","Type":"Conventional","Directional":true,"Links":[{"SourceID":65867,"TargetID":65869,"Directional":true}]},{"ID":15319,"SourceStructureID":65883,"TargetStructureID":65864,"Label":"65883-65864 via Conventional from 65886 -> 65887","Type":"Conventional","Directional":true,"Links":[{"SourceID":65886,"TargetID":65887,"Directional":true}]},{"ID":15320,"SourceStructureID":65890,"TargetStructureID":593,"Label":"65890-593 via Conventional from 65891 -> 65892","Type":"Conventional","Directional":true,"Links":[{"SourceID":65891,"TargetID":65892,"Directional":true}]},{"ID":15321,"SourceStructureID":65893,"TargetStructureID":593,"Label":"65893-593 via Conventional from 65894 -> 65895","Type":"Conventional","Directional":true,"Links":[{"SourceID":65894,"TargetID":65895,"Directional":true}]},{"ID":15322,"SourceStructureID":65898,"TargetStructureID":65899,"Label":"65898-65899 via Conventional from 65900 -> 65901","Type":"Conventional","Directional":true,"Links":[{"SourceID":65900,"TargetID":65901,"Directional":true}]},{"ID":15323,"SourceStructureID":65910,"TargetStructureID":6118,"Label":"65910-6118 via Conventional from 65912 -> 65913","Type":"Conventional","Directional":true,"Links":[{"SourceID":65912,"TargetID":65913,"Directional":true}]},{"ID":15324,"SourceStructureID":65916,"TargetStructureID":6118,"Label":"65916-6118 via Conventional from 65917 -> 65918","Type":"Conventional","Directional":true,"Links":[{"SourceID":65917,"TargetID":65918,"Directional":true}]},{"ID":15325,"SourceStructureID":65920,"TargetStructureID":5650,"Label":"65920-5650 via Conventional from 102961 -> 102962","Type":"Conventional","Directional":true,"Links":[{"SourceID":102961,"TargetID":102962,"Directional":true}]},{"ID":15326,"SourceStructureID":65920,"TargetStructureID":6118,"Label":"65920-6118 via Conventional from 65921 -> 65922","Type":"Conventional","Directional":true,"Links":[{"SourceID":65921,"TargetID":65922,"Directional":true}]},{"ID":15327,"SourceStructureID":65963,"TargetStructureID":180,"Label":"65963-180 via Conventional from 65965 -> 65966, 65969 -> 65970","Type":"Conventional","Directional":true,"Links":[{"SourceID":65965,"TargetID":65966,"Directional":true},{"SourceID":65969,"TargetID":65970,"Directional":true}]},{"ID":15328,"SourceStructureID":65963,"TargetStructureID":5618,"Label":"65963-5618 via Conventional from 65964 -> 65962","Type":"Conventional","Directional":true,"Links":[{"SourceID":65964,"TargetID":65962,"Directional":true}]},{"ID":15329,"SourceStructureID":65963,"TargetStructureID":64492,"Label":"65963-64492 via Conventional from 65973 -> 65974","Type":"Conventional","Directional":true,"Links":[{"SourceID":65973,"TargetID":65974,"Directional":true}]},{"ID":15330,"SourceStructureID":65963,"TargetStructureID":66299,"Label":"65963-66299 via Conventional from 66301 -> 66302","Type":"Conventional","Directional":true,"Links":[{"SourceID":66301,"TargetID":66302,"Directional":true}]},{"ID":15331,"SourceStructureID":66015,"TargetStructureID":7111,"Label":"66015-7111 via Conventional from 66016 -> 66014","Type":"Conventional","Directional":true,"Links":[{"SourceID":66016,"TargetID":66014,"Directional":true}]},{"ID":15332,"SourceStructureID":66018,"TargetStructureID":7111,"Label":"66018-7111 via Conventional from 66019 -> 66017","Type":"Conventional","Directional":true,"Links":[{"SourceID":66019,"TargetID":66017,"Directional":true}]},{"ID":15333,"SourceStructureID":66020,"TargetStructureID":7111,"Label":"66020-7111 via Conventional from 66021 -> 66017","Type":"Conventional","Directional":true,"Links":[{"SourceID":66021,"TargetID":66017,"Directional":true}]},{"ID":15334,"SourceStructureID":66024,"TargetStructureID":593,"Label":"66024-593 via Conventional from 66025 -> 66026","Type":"Conventional","Directional":true,"Links":[{"SourceID":66025,"TargetID":66026,"Directional":true}]},{"ID":15335,"SourceStructureID":66031,"TargetStructureID":593,"Label":"66031-593 via Conventional from 66071 -> 66072","Type":"Conventional","Directional":true,"Links":[{"SourceID":66071,"TargetID":66072,"Directional":true}]},{"ID":15336,"SourceStructureID":66031,"TargetStructureID":66028,"Label":"66031-66028 via Conventional from 66032 -> 66030","Type":"Conventional","Directional":true,"Links":[{"SourceID":66032,"TargetID":66030,"Directional":true}]},{"ID":15337,"SourceStructureID":66031,"TargetStructureID":66037,"Label":"66031-66037 via Conventional from 66036 -> 66038","Type":"Conventional","Directional":true,"Links":[{"SourceID":66036,"TargetID":66038,"Directional":true}]},{"ID":15338,"SourceStructureID":66031,"TargetStructureID":84457,"Label":"66031-84457 via Conventional from 84456 -> 84459","Type":"Conventional","Directional":true,"Links":[{"SourceID":84456,"TargetID":84459,"Directional":true}]},{"ID":15339,"SourceStructureID":66037,"TargetStructureID":66031,"Label":"66037-66031 via Conventional from 66039 -> 66040","Type":"Conventional","Directional":true,"Links":[{"SourceID":66039,"TargetID":66040,"Directional":true}]},{"ID":15340,"SourceStructureID":66037,"TargetStructureID":66809,"Label":"66037-66809 via Conventional from 66039 -> 82439","Type":"Conventional","Directional":true,"Links":[{"SourceID":66039,"TargetID":82439,"Directional":true}]},{"ID":15341,"SourceStructureID":66044,"TargetStructureID":66031,"Label":"66044-66031 via Conventional from 66046 -> 66045","Type":"Conventional","Directional":true,"Links":[{"SourceID":66046,"TargetID":66045,"Directional":true}]},{"ID":15342,"SourceStructureID":66053,"TargetStructureID":593,"Label":"66053-593 via Conventional from 66056 -> 66057","Type":"Conventional","Directional":true,"Links":[{"SourceID":66056,"TargetID":66057,"Directional":true}]},{"ID":15343,"SourceStructureID":66073,"TargetStructureID":66075,"Label":"66073-66075 via Conventional from 66076 -> 66077","Type":"Conventional","Directional":true,"Links":[{"SourceID":66076,"TargetID":66077,"Directional":true}]},{"ID":15344,"SourceStructureID":66073,"TargetStructureID":66085,"Label":"66073-66085 via Conventional from 66084 -> 66086","Type":"Conventional","Directional":true,"Links":[{"SourceID":66084,"TargetID":66086,"Directional":true}]},{"ID":15345,"SourceStructureID":66079,"TargetStructureID":66075,"Label":"66079-66075 via Conventional from 66080 -> 66078","Type":"Conventional","Directional":true,"Links":[{"SourceID":66080,"TargetID":66078,"Directional":true}]},{"ID":15346,"SourceStructureID":66085,"TargetStructureID":66946,"Label":"66085-66946 via Conventional from 82750 -> 82751","Type":"Conventional","Directional":true,"Links":[{"SourceID":82750,"TargetID":82751,"Directional":true}]},{"ID":15347,"SourceStructureID":66089,"TargetStructureID":593,"Label":"66089-593 via Conventional from 66090 -> 28441, 66094 -> 66095","Type":"Conventional","Directional":true,"Links":[{"SourceID":66090,"TargetID":28441,"Directional":true},{"SourceID":66094,"TargetID":66095,"Directional":true}]},{"ID":15348,"SourceStructureID":66096,"TargetStructureID":593,"Label":"66096-593 via Conventional from 66097 -> 52744, 66098 -> 66099, 66885 -> 7753, 67025 -> 7828, 67032 -> 7812","Type":"Conventional","Directional":true,"Links":[{"SourceID":66097,"TargetID":52744,"Directional":true},{"SourceID":66098,"TargetID":66099,"Directional":true},{"SourceID":66885,"TargetID":7753,"Directional":true},{"SourceID":67025,"TargetID":7828,"Directional":true},{"SourceID":67032,"TargetID":7812,"Directional":true}]},{"ID":15349,"SourceStructureID":66100,"TargetStructureID":593,"Label":"66100-593 via Conventional from 66101 -> 28437","Type":"Conventional","Directional":true,"Links":[{"SourceID":66101,"TargetID":28437,"Directional":true}]},{"ID":15350,"SourceStructureID":66102,"TargetStructureID":593,"Label":"66102-593 via Conventional from 66103 -> 28442","Type":"Conventional","Directional":true,"Links":[{"SourceID":66103,"TargetID":28442,"Directional":true}]},{"ID":15351,"SourceStructureID":66102,"TargetStructureID":66096,"Label":"66102-66096 via Conventional from 66109 -> 66110","Type":"Conventional","Directional":true,"Links":[{"SourceID":66109,"TargetID":66110,"Directional":true}]},{"ID":15352,"SourceStructureID":66104,"TargetStructureID":66102,"Label":"66104-66102 via Conventional from 66105 -> 66106","Type":"Conventional","Directional":true,"Links":[{"SourceID":66105,"TargetID":66106,"Directional":true}]},{"ID":15353,"SourceStructureID":66111,"TargetStructureID":16026,"Label":"66111-16026 via Conventional from 134753 -> 134752","Type":"Conventional","Directional":true,"Links":[{"SourceID":134753,"TargetID":134752,"Directional":true}]},{"ID":15354,"SourceStructureID":66114,"TargetStructureID":66114,"Label":"66114-66114 via Conventional from 66119 -> 66120","Type":"Conventional","Directional":true,"Links":[{"SourceID":66119,"TargetID":66120,"Directional":true}]},{"ID":15355,"SourceStructureID":66114,"TargetStructureID":66768,"Label":"66114-66768 via Conventional from 66117 -> 67565","Type":"Conventional","Directional":true,"Links":[{"SourceID":66117,"TargetID":67565,"Directional":true}]},{"ID":15356,"SourceStructureID":66165,"TargetStructureID":5284,"Label":"66165-5284 via Conventional from 113269 -> 113270","Type":"Conventional","Directional":true,"Links":[{"SourceID":113269,"TargetID":113270,"Directional":true}]},{"ID":15357,"SourceStructureID":66165,"TargetStructureID":6050,"Label":"66165-6050 via Conventional from 66175 -> 66174","Type":"Conventional","Directional":true,"Links":[{"SourceID":66175,"TargetID":66174,"Directional":true}]},{"ID":15358,"SourceStructureID":66184,"TargetStructureID":11401,"Label":"66184-11401 via Conventional from 66185 -> 66186, 92038 -> 92039","Type":"Conventional","Directional":true,"Links":[{"SourceID":66185,"TargetID":66186,"Directional":true},{"SourceID":92038,"TargetID":92039,"Directional":true}]},{"ID":15359,"SourceStructureID":66193,"TargetStructureID":428,"Label":"66193-428 via Conventional from 66194 -> 66195","Type":"Conventional","Directional":true,"Links":[{"SourceID":66194,"TargetID":66195,"Directional":true}]},{"ID":15360,"SourceStructureID":66199,"TargetStructureID":514,"Label":"66199-514 via Ribbon Synapse from 66200 -> 1173","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":66200,"TargetID":1173,"Directional":true}]},{"ID":15361,"SourceStructureID":66278,"TargetStructureID":166,"Label":"66278-166 via Conventional from 66292 -> 60025, 81905 -> 81906","Type":"Conventional","Directional":true,"Links":[{"SourceID":66292,"TargetID":60025,"Directional":true},{"SourceID":81905,"TargetID":81906,"Directional":true}]},{"ID":15362,"SourceStructureID":66278,"TargetStructureID":593,"Label":"66278-593 via Conventional from 66279 -> 66280","Type":"Conventional","Directional":true,"Links":[{"SourceID":66279,"TargetID":66280,"Directional":true}]},{"ID":15363,"SourceStructureID":66295,"TargetStructureID":166,"Label":"66295-166 via Conventional from 66297 -> 60022","Type":"Conventional","Directional":true,"Links":[{"SourceID":66297,"TargetID":60022,"Directional":true}]},{"ID":15364,"SourceStructureID":66303,"TargetStructureID":180,"Label":"66303-180 via Conventional from 66307 -> 6057","Type":"Conventional","Directional":true,"Links":[{"SourceID":66307,"TargetID":6057,"Directional":true}]},{"ID":15365,"SourceStructureID":66303,"TargetStructureID":593,"Label":"66303-593 via Conventional from 66304 -> 66305","Type":"Conventional","Directional":true,"Links":[{"SourceID":66304,"TargetID":66305,"Directional":true}]},{"ID":15366,"SourceStructureID":66323,"TargetStructureID":593,"Label":"66323-593 via Conventional from 66324 -> 66322","Type":"Conventional","Directional":true,"Links":[{"SourceID":66324,"TargetID":66322,"Directional":true}]},{"ID":15367,"SourceStructureID":66323,"TargetStructureID":6115,"Label":"66323-6115 via Conventional from 84323 -> 73123","Type":"Conventional","Directional":true,"Links":[{"SourceID":84323,"TargetID":73123,"Directional":true}]},{"ID":15368,"SourceStructureID":66323,"TargetStructureID":84342,"Label":"66323-84342 via Conventional from 84341 -> 84343","Type":"Conventional","Directional":true,"Links":[{"SourceID":84341,"TargetID":84343,"Directional":true}]},{"ID":15369,"SourceStructureID":66323,"TargetStructureID":84391,"Label":"66323-84391 via Conventional from 84390 -> 84392","Type":"Conventional","Directional":true,"Links":[{"SourceID":84390,"TargetID":84392,"Directional":true}]},{"ID":15370,"SourceStructureID":66323,"TargetStructureID":84394,"Label":"66323-84394 via Conventional from 84393 -> 84395","Type":"Conventional","Directional":true,"Links":[{"SourceID":84393,"TargetID":84395,"Directional":true}]},{"ID":15371,"SourceStructureID":66323,"TargetStructureID":84398,"Label":"66323-84398 via Conventional from 84397 -> 84399","Type":"Conventional","Directional":true,"Links":[{"SourceID":84397,"TargetID":84399,"Directional":true}]},{"ID":15372,"SourceStructureID":66323,"TargetStructureID":84407,"Label":"66323-84407 via Conventional from 84405 -> 84408, 84412 -> 84413","Type":"Conventional","Directional":true,"Links":[{"SourceID":84405,"TargetID":84408,"Directional":true},{"SourceID":84412,"TargetID":84413,"Directional":true}]},{"ID":15373,"SourceStructureID":66323,"TargetStructureID":84418,"Label":"66323-84418 via Conventional from 84417 -> 84419","Type":"Conventional","Directional":true,"Links":[{"SourceID":84417,"TargetID":84419,"Directional":true}]},{"ID":15374,"SourceStructureID":66323,"TargetStructureID":84424,"Label":"66323-84424 via Conventional from 84423 -> 84425","Type":"Conventional","Directional":true,"Links":[{"SourceID":84423,"TargetID":84425,"Directional":true}]},{"ID":15375,"SourceStructureID":66329,"TargetStructureID":593,"Label":"66329-593 via Conventional from 66330 -> 66328","Type":"Conventional","Directional":true,"Links":[{"SourceID":66330,"TargetID":66328,"Directional":true}]},{"ID":15376,"SourceStructureID":66339,"TargetStructureID":593,"Label":"66339-593 via Conventional from 66340 -> 66341","Type":"Conventional","Directional":true,"Links":[{"SourceID":66340,"TargetID":66341,"Directional":true}]},{"ID":15377,"SourceStructureID":66339,"TargetStructureID":6115,"Label":"66339-6115 via Conventional from 84273 -> 73083","Type":"Conventional","Directional":true,"Links":[{"SourceID":84273,"TargetID":73083,"Directional":true}]},{"ID":15378,"SourceStructureID":66355,"TargetStructureID":5117,"Label":"66355-5117 via Conventional from 66356 -> 66354","Type":"Conventional","Directional":true,"Links":[{"SourceID":66356,"TargetID":66354,"Directional":true}]},{"ID":15379,"SourceStructureID":66374,"TargetStructureID":5279,"Label":"66374-5279 via Conventional from 66379 -> 49251, 66389 -> 6347, 66394 -> 97580","Type":"Conventional","Directional":true,"Links":[{"SourceID":66379,"TargetID":49251,"Directional":true},{"SourceID":66389,"TargetID":6347,"Directional":true},{"SourceID":66394,"TargetID":97580,"Directional":true}]},{"ID":15380,"SourceStructureID":66381,"TargetStructureID":909,"Label":"66381-909 via Conventional from 66383 -> 36060","Type":"Conventional","Directional":true,"Links":[{"SourceID":66383,"TargetID":36060,"Directional":true}]},{"ID":15381,"SourceStructureID":66381,"TargetStructureID":5279,"Label":"66381-5279 via Conventional from 66386 -> 49250","Type":"Conventional","Directional":true,"Links":[{"SourceID":66386,"TargetID":49250,"Directional":true}]},{"ID":15382,"SourceStructureID":66381,"TargetStructureID":66374,"Label":"66381-66374 via Conventional from 66382 -> 66380","Type":"Conventional","Directional":true,"Links":[{"SourceID":66382,"TargetID":66380,"Directional":true}]},{"ID":15383,"SourceStructureID":66395,"TargetStructureID":5279,"Label":"66395-5279 via Conventional from 66396 -> 97585","Type":"Conventional","Directional":true,"Links":[{"SourceID":66396,"TargetID":97585,"Directional":true}]},{"ID":15384,"SourceStructureID":66395,"TargetStructureID":15796,"Label":"66395-15796 via Conventional from 66397 -> 66398","Type":"Conventional","Directional":true,"Links":[{"SourceID":66397,"TargetID":66398,"Directional":true}]},{"ID":15385,"SourceStructureID":66401,"TargetStructureID":593,"Label":"66401-593 via Conventional from 66403 -> 66404, 66417 -> 66418, 66422 -> 66423","Type":"Conventional","Directional":true,"Links":[{"SourceID":66403,"TargetID":66404,"Directional":true},{"SourceID":66417,"TargetID":66418,"Directional":true},{"SourceID":66422,"TargetID":66423,"Directional":true}]},{"ID":15386,"SourceStructureID":66401,"TargetStructureID":65623,"Label":"66401-65623 via Conventional from 66414 -> 66416","Type":"Conventional","Directional":true,"Links":[{"SourceID":66414,"TargetID":66416,"Directional":true}]},{"ID":15387,"SourceStructureID":66407,"TargetStructureID":593,"Label":"66407-593 via Conventional from 66462 -> 66463, 67448 -> 67449","Type":"Conventional","Directional":true,"Links":[{"SourceID":66462,"TargetID":66463,"Directional":true},{"SourceID":67448,"TargetID":67449,"Directional":true}]},{"ID":15388,"SourceStructureID":66407,"TargetStructureID":5599,"Label":"66407-5599 via Conventional from 69410 -> 135181","Type":"Conventional","Directional":true,"Links":[{"SourceID":69410,"TargetID":135181,"Directional":true}]},{"ID":15389,"SourceStructureID":66407,"TargetStructureID":6115,"Label":"66407-6115 via Conventional from 72803 -> 72804","Type":"Conventional","Directional":true,"Links":[{"SourceID":72803,"TargetID":72804,"Directional":true}]},{"ID":15390,"SourceStructureID":66407,"TargetStructureID":6997,"Label":"66407-6997 via Conventional from 69391 -> 28740","Type":"Conventional","Directional":true,"Links":[{"SourceID":69391,"TargetID":28740,"Directional":true}]},{"ID":15391,"SourceStructureID":66407,"TargetStructureID":16087,"Label":"66407-16087 via Conventional from 69398 -> 16092","Type":"Conventional","Directional":true,"Links":[{"SourceID":69398,"TargetID":16092,"Directional":true}]},{"ID":15392,"SourceStructureID":66407,"TargetStructureID":39319,"Label":"66407-39319 via Conventional from 69408 -> 69409","Type":"Conventional","Directional":true,"Links":[{"SourceID":69408,"TargetID":69409,"Directional":true}]},{"ID":15393,"SourceStructureID":66407,"TargetStructureID":41608,"Label":"66407-41608 via Conventional from 69399 -> 69400","Type":"Conventional","Directional":true,"Links":[{"SourceID":69399,"TargetID":69400,"Directional":true}]},{"ID":15394,"SourceStructureID":66407,"TargetStructureID":66469,"Label":"66407-66469 via Conventional from 66471 -> 66470","Type":"Conventional","Directional":true,"Links":[{"SourceID":66471,"TargetID":66470,"Directional":true}]},{"ID":15395,"SourceStructureID":66407,"TargetStructureID":66473,"Label":"66407-66473 via Conventional from 66472 -> 66474","Type":"Conventional","Directional":true,"Links":[{"SourceID":66472,"TargetID":66474,"Directional":true}]},{"ID":15396,"SourceStructureID":66407,"TargetStructureID":66937,"Label":"66407-66937 via Conventional from 66941 -> 66939","Type":"Conventional","Directional":true,"Links":[{"SourceID":66941,"TargetID":66939,"Directional":true}]},{"ID":15397,"SourceStructureID":66407,"TargetStructureID":67254,"Label":"66407-67254 via Conventional from 67245 -> 79579","Type":"Conventional","Directional":true,"Links":[{"SourceID":67245,"TargetID":79579,"Directional":true}]},{"ID":15398,"SourceStructureID":66407,"TargetStructureID":69347,"Label":"66407-69347 via Conventional from 69346 -> 69348","Type":"Conventional","Directional":true,"Links":[{"SourceID":69346,"TargetID":69348,"Directional":true}]},{"ID":15399,"SourceStructureID":66407,"TargetStructureID":69350,"Label":"66407-69350 via Conventional from 69349 -> 69351","Type":"Conventional","Directional":true,"Links":[{"SourceID":69349,"TargetID":69351,"Directional":true}]},{"ID":15400,"SourceStructureID":66407,"TargetStructureID":69396,"Label":"66407-69396 via Conventional from 69395 -> 69397","Type":"Conventional","Directional":true,"Links":[{"SourceID":69395,"TargetID":69397,"Directional":true}]},{"ID":15401,"SourceStructureID":66407,"TargetStructureID":69414,"Label":"66407-69414 via Conventional from 69413 -> 69415","Type":"Conventional","Directional":true,"Links":[{"SourceID":69413,"TargetID":69415,"Directional":true}]},{"ID":15402,"SourceStructureID":66407,"TargetStructureID":69461,"Label":"66407-69461 via Conventional from 69462 -> 69463","Type":"Conventional","Directional":true,"Links":[{"SourceID":69462,"TargetID":69463,"Directional":true}]},{"ID":15403,"SourceStructureID":66407,"TargetStructureID":69483,"Label":"66407-69483 via Conventional from 69486 -> 69488","Type":"Conventional","Directional":true,"Links":[{"SourceID":69486,"TargetID":69488,"Directional":true}]},{"ID":15404,"SourceStructureID":66407,"TargetStructureID":69484,"Label":"66407-69484 via Conventional from 69485 -> 69487","Type":"Conventional","Directional":true,"Links":[{"SourceID":69485,"TargetID":69487,"Directional":true}]},{"ID":15405,"SourceStructureID":66407,"TargetStructureID":69505,"Label":"66407-69505 via Conventional from 69506 -> 69507","Type":"Conventional","Directional":true,"Links":[{"SourceID":69506,"TargetID":69507,"Directional":true}]},{"ID":15406,"SourceStructureID":66425,"TargetStructureID":593,"Label":"66425-593 via Conventional from 66426 -> 7766, 66427 -> 66428","Type":"Conventional","Directional":true,"Links":[{"SourceID":66426,"TargetID":7766,"Directional":true},{"SourceID":66427,"TargetID":66428,"Directional":true}]},{"ID":15407,"SourceStructureID":66425,"TargetStructureID":5283,"Label":"66425-5283 via Conventional from 131668 -> 131669","Type":"Conventional","Directional":true,"Links":[{"SourceID":131668,"TargetID":131669,"Directional":true}]},{"ID":15408,"SourceStructureID":66425,"TargetStructureID":70750,"Label":"66425-70750 via Conventional from 70749 -> 70751","Type":"Conventional","Directional":true,"Links":[{"SourceID":70749,"TargetID":70751,"Directional":true}]},{"ID":15409,"SourceStructureID":66447,"TargetStructureID":39590,"Label":"66447-39590 via Conventional from 66454 -> 66456","Type":"Conventional","Directional":true,"Links":[{"SourceID":66454,"TargetID":66456,"Directional":true}]},{"ID":15410,"SourceStructureID":66452,"TargetStructureID":66447,"Label":"66452-66447 via Conventional from 66453 -> 66451","Type":"Conventional","Directional":true,"Links":[{"SourceID":66453,"TargetID":66451,"Directional":true}]},{"ID":15411,"SourceStructureID":66459,"TargetStructureID":66447,"Label":"66459-66447 via Conventional from 66460 -> 66461","Type":"Conventional","Directional":true,"Links":[{"SourceID":66460,"TargetID":66461,"Directional":true}]},{"ID":15412,"SourceStructureID":66464,"TargetStructureID":66407,"Label":"66464-66407 via Conventional from 66465 -> 66466","Type":"Conventional","Directional":true,"Links":[{"SourceID":66465,"TargetID":66466,"Directional":true}]},{"ID":15413,"SourceStructureID":66473,"TargetStructureID":6115,"Label":"66473-6115 via Conventional from 66475 -> 66476","Type":"Conventional","Directional":true,"Links":[{"SourceID":66475,"TargetID":66476,"Directional":true}]},{"ID":15414,"SourceStructureID":66477,"TargetStructureID":593,"Label":"66477-593 via Conventional from 66478 -> 66479","Type":"Conventional","Directional":true,"Links":[{"SourceID":66478,"TargetID":66479,"Directional":true}]},{"ID":15415,"SourceStructureID":66487,"TargetStructureID":593,"Label":"66487-593 via Conventional from 66488 -> 66489","Type":"Conventional","Directional":true,"Links":[{"SourceID":66488,"TargetID":66489,"Directional":true}]},{"ID":15416,"SourceStructureID":66493,"TargetStructureID":39615,"Label":"66493-39615 via Conventional from 66495 -> 39641","Type":"Conventional","Directional":true,"Links":[{"SourceID":66495,"TargetID":39641,"Directional":true}]},{"ID":15417,"SourceStructureID":66503,"TargetStructureID":593,"Label":"66503-593 via Conventional from 66504 -> 66505","Type":"Conventional","Directional":true,"Links":[{"SourceID":66504,"TargetID":66505,"Directional":true}]},{"ID":15418,"SourceStructureID":66503,"TargetStructureID":66510,"Label":"66503-66510 via Conventional from 66509 -> 66511","Type":"Conventional","Directional":true,"Links":[{"SourceID":66509,"TargetID":66511,"Directional":true}]},{"ID":15419,"SourceStructureID":66503,"TargetStructureID":66516,"Label":"66503-66516 via Conventional from 66515 -> 66518","Type":"Conventional","Directional":true,"Links":[{"SourceID":66515,"TargetID":66518,"Directional":true}]},{"ID":15420,"SourceStructureID":66510,"TargetStructureID":66513,"Label":"66510-66513 via Conventional from 66512 -> 66514","Type":"Conventional","Directional":true,"Links":[{"SourceID":66512,"TargetID":66514,"Directional":true}]},{"ID":15421,"SourceStructureID":66516,"TargetStructureID":593,"Label":"66516-593 via Conventional from 66517 -> 59623","Type":"Conventional","Directional":true,"Links":[{"SourceID":66517,"TargetID":59623,"Directional":true}]},{"ID":15422,"SourceStructureID":66520,"TargetStructureID":66523,"Label":"66520-66523 via Conventional from 66526 -> 66527","Type":"Conventional","Directional":true,"Links":[{"SourceID":66526,"TargetID":66527,"Directional":true}]},{"ID":15423,"SourceStructureID":66523,"TargetStructureID":16087,"Label":"66523-16087 via Conventional from 75309 -> 75310","Type":"Conventional","Directional":true,"Links":[{"SourceID":75309,"TargetID":75310,"Directional":true}]},{"ID":15424,"SourceStructureID":66523,"TargetStructureID":22974,"Label":"66523-22974 via Conventional from 75924 -> 75923","Type":"Conventional","Directional":true,"Links":[{"SourceID":75924,"TargetID":75923,"Directional":true}]},{"ID":15425,"SourceStructureID":66523,"TargetStructureID":31256,"Label":"66523-31256 via Conventional from 75349 -> 31257","Type":"Conventional","Directional":true,"Links":[{"SourceID":75349,"TargetID":31257,"Directional":true}]},{"ID":15426,"SourceStructureID":66523,"TargetStructureID":39615,"Label":"66523-39615 via Conventional from 66530 -> 39636","Type":"Conventional","Directional":true,"Links":[{"SourceID":66530,"TargetID":39636,"Directional":true}]},{"ID":15427,"SourceStructureID":66523,"TargetStructureID":41608,"Label":"66523-41608 via Conventional from 74913 -> 41688","Type":"Conventional","Directional":true,"Links":[{"SourceID":74913,"TargetID":41688,"Directional":true}]},{"ID":15428,"SourceStructureID":66523,"TargetStructureID":66647,"Label":"66523-66647 via Conventional from 75342 -> 66648","Type":"Conventional","Directional":true,"Links":[{"SourceID":75342,"TargetID":66648,"Directional":true}]},{"ID":15429,"SourceStructureID":66523,"TargetStructureID":75130,"Label":"66523-75130 via Conventional from 75315 -> 75316","Type":"Conventional","Directional":true,"Links":[{"SourceID":75315,"TargetID":75316,"Directional":true}]},{"ID":15430,"SourceStructureID":66523,"TargetStructureID":75300,"Label":"66523-75300 via Conventional from 75299 -> 75301","Type":"Conventional","Directional":true,"Links":[{"SourceID":75299,"TargetID":75301,"Directional":true}]},{"ID":15431,"SourceStructureID":66523,"TargetStructureID":75302,"Label":"66523-75302 via Conventional from 75303 -> 75304","Type":"Conventional","Directional":true,"Links":[{"SourceID":75303,"TargetID":75304,"Directional":true}]},{"ID":15432,"SourceStructureID":66523,"TargetStructureID":75324,"Label":"66523-75324 via Conventional from 75323 -> 75325","Type":"Conventional","Directional":true,"Links":[{"SourceID":75323,"TargetID":75325,"Directional":true}]},{"ID":15433,"SourceStructureID":66523,"TargetStructureID":75326,"Label":"66523-75326 via Conventional from 75327 -> 75328","Type":"Conventional","Directional":true,"Links":[{"SourceID":75327,"TargetID":75328,"Directional":true}]},{"ID":15434,"SourceStructureID":66523,"TargetStructureID":75332,"Label":"66523-75332 via Conventional from 75333 -> 75334","Type":"Conventional","Directional":true,"Links":[{"SourceID":75333,"TargetID":75334,"Directional":true}]},{"ID":15435,"SourceStructureID":66523,"TargetStructureID":75337,"Label":"66523-75337 via Conventional from 66528 -> 75338","Type":"Conventional","Directional":true,"Links":[{"SourceID":66528,"TargetID":75338,"Directional":true}]},{"ID":15436,"SourceStructureID":66523,"TargetStructureID":75339,"Label":"66523-75339 via Conventional from 66529 -> 75340","Type":"Conventional","Directional":true,"Links":[{"SourceID":66529,"TargetID":75340,"Directional":true}]},{"ID":15437,"SourceStructureID":66523,"TargetStructureID":77965,"Label":"66523-77965 via Conventional from 77966 -> 77967","Type":"Conventional","Directional":true,"Links":[{"SourceID":77966,"TargetID":77967,"Directional":true}]},{"ID":15438,"SourceStructureID":66542,"TargetStructureID":166,"Label":"66542-166 via Conventional from 83483 -> 83484","Type":"Conventional","Directional":true,"Links":[{"SourceID":83483,"TargetID":83484,"Directional":true}]},{"ID":15439,"SourceStructureID":66542,"TargetStructureID":593,"Label":"66542-593 via Conventional from 66543 -> 66544","Type":"Conventional","Directional":true,"Links":[{"SourceID":66543,"TargetID":66544,"Directional":true}]},{"ID":15440,"SourceStructureID":66634,"TargetStructureID":166,"Label":"66634-166 via Conventional from 71338 -> 60026","Type":"Conventional","Directional":true,"Links":[{"SourceID":71338,"TargetID":60026,"Directional":true}]},{"ID":15441,"SourceStructureID":66634,"TargetStructureID":593,"Label":"66634-593 via Conventional from 66635 -> 59624","Type":"Conventional","Directional":true,"Links":[{"SourceID":66635,"TargetID":59624,"Directional":true}]},{"ID":15442,"SourceStructureID":66634,"TargetStructureID":6115,"Label":"66634-6115 via Conventional from 71331 -> 71332, 71957 -> 71621","Type":"Conventional","Directional":true,"Links":[{"SourceID":71331,"TargetID":71332,"Directional":true},{"SourceID":71957,"TargetID":71621,"Directional":true}]},{"ID":15443,"SourceStructureID":66634,"TargetStructureID":6857,"Label":"66634-6857 via Conventional from 66638 -> 66637","Type":"Conventional","Directional":true,"Links":[{"SourceID":66638,"TargetID":66637,"Directional":true}]},{"ID":15444,"SourceStructureID":66634,"TargetStructureID":38363,"Label":"66634-38363 via Conventional from 71613 -> 38367","Type":"Conventional","Directional":true,"Links":[{"SourceID":71613,"TargetID":38367,"Directional":true}]},{"ID":15445,"SourceStructureID":66634,"TargetStructureID":71345,"Label":"66634-71345 via Conventional from 71344 -> 71346","Type":"Conventional","Directional":true,"Links":[{"SourceID":71344,"TargetID":71346,"Directional":true}]},{"ID":15446,"SourceStructureID":66634,"TargetStructureID":71517,"Label":"66634-71517 via Conventional from 66672 -> 66674, 71623 -> 71624","Type":"Conventional","Directional":true,"Links":[{"SourceID":66672,"TargetID":66674,"Directional":true},{"SourceID":71623,"TargetID":71624,"Directional":true}]},{"ID":15447,"SourceStructureID":66634,"TargetStructureID":71615,"Label":"66634-71615 via Conventional from 71614 -> 71616","Type":"Conventional","Directional":true,"Links":[{"SourceID":71614,"TargetID":71616,"Directional":true}]},{"ID":15448,"SourceStructureID":66640,"TargetStructureID":66523,"Label":"66640-66523 via Conventional from 66643 -> 75341","Type":"Conventional","Directional":true,"Links":[{"SourceID":66643,"TargetID":75341,"Directional":true}]},{"ID":15449,"SourceStructureID":66656,"TargetStructureID":16002,"Label":"66656-16002 via Adherens from 66659 -> 66658","Type":"Adherens","Directional":true,"Links":[{"SourceID":66659,"TargetID":66658,"Directional":true}]},{"ID":15450,"SourceStructureID":66660,"TargetStructureID":4569,"Label":"66660-4569 via Conventional from 66661 -> 30839","Type":"Conventional","Directional":true,"Links":[{"SourceID":66661,"TargetID":30839,"Directional":true}]},{"ID":15451,"SourceStructureID":66665,"TargetStructureID":4569,"Label":"66665-4569 via Conventional from 66670 -> 30840","Type":"Conventional","Directional":true,"Links":[{"SourceID":66670,"TargetID":30840,"Directional":true}]},{"ID":15452,"SourceStructureID":66665,"TargetStructureID":66667,"Label":"66665-66667 via Conventional from 66668 -> 66669","Type":"Conventional","Directional":true,"Links":[{"SourceID":66668,"TargetID":66669,"Directional":true}]},{"ID":15453,"SourceStructureID":66682,"TargetStructureID":593,"Label":"66682-593 via Conventional from 66684 -> 59621","Type":"Conventional","Directional":true,"Links":[{"SourceID":66684,"TargetID":59621,"Directional":true}]},{"ID":15454,"SourceStructureID":66685,"TargetStructureID":593,"Label":"66685-593 via Conventional from 66686 -> 59617","Type":"Conventional","Directional":true,"Links":[{"SourceID":66686,"TargetID":59617,"Directional":true}]},{"ID":15455,"SourceStructureID":66685,"TargetStructureID":66688,"Label":"66685-66688 via Conventional from 66687 -> 66689","Type":"Conventional","Directional":true,"Links":[{"SourceID":66687,"TargetID":66689,"Directional":true}]},{"ID":15456,"SourceStructureID":66691,"TargetStructureID":66688,"Label":"66691-66688 via Conventional from 66692 -> 66690","Type":"Conventional","Directional":true,"Links":[{"SourceID":66692,"TargetID":66690,"Directional":true}]},{"ID":15457,"SourceStructureID":66693,"TargetStructureID":593,"Label":"66693-593 via Conventional from 66695 -> 59612","Type":"Conventional","Directional":true,"Links":[{"SourceID":66695,"TargetID":59612,"Directional":true}]},{"ID":15458,"SourceStructureID":66696,"TargetStructureID":6115,"Label":"66696-6115 via Conventional from 66749 -> 16059","Type":"Conventional","Directional":true,"Links":[{"SourceID":66749,"TargetID":16059,"Directional":true}]},{"ID":15459,"SourceStructureID":66699,"TargetStructureID":66696,"Label":"66699-66696 via Conventional from 66700 -> 66698","Type":"Conventional","Directional":true,"Links":[{"SourceID":66700,"TargetID":66698,"Directional":true}]},{"ID":15460,"SourceStructureID":66702,"TargetStructureID":66696,"Label":"66702-66696 via Conventional from 66703 -> 66701","Type":"Conventional","Directional":true,"Links":[{"SourceID":66703,"TargetID":66701,"Directional":true}]},{"ID":15461,"SourceStructureID":66706,"TargetStructureID":593,"Label":"66706-593 via Conventional from 66708 -> 59620","Type":"Conventional","Directional":true,"Links":[{"SourceID":66708,"TargetID":59620,"Directional":true}]},{"ID":15462,"SourceStructureID":66710,"TargetStructureID":39345,"Label":"66710-39345 via Conventional from 66717 -> 39362","Type":"Conventional","Directional":true,"Links":[{"SourceID":66717,"TargetID":39362,"Directional":true}]},{"ID":15463,"SourceStructureID":66710,"TargetStructureID":58696,"Label":"66710-58696 via Conventional from 66716 -> 66709","Type":"Conventional","Directional":true,"Links":[{"SourceID":66716,"TargetID":66709,"Directional":true}]},{"ID":15464,"SourceStructureID":66713,"TargetStructureID":166,"Label":"66713-166 via Conventional from 66715 -> 60005","Type":"Conventional","Directional":true,"Links":[{"SourceID":66715,"TargetID":60005,"Directional":true}]},{"ID":15465,"SourceStructureID":66723,"TargetStructureID":58696,"Label":"66723-58696 via Conventional from 66724 -> 66722","Type":"Conventional","Directional":true,"Links":[{"SourceID":66724,"TargetID":66722,"Directional":true}]},{"ID":15466,"SourceStructureID":66726,"TargetStructureID":66516,"Label":"66726-66516 via Conventional from 66727 -> 66725","Type":"Conventional","Directional":true,"Links":[{"SourceID":66727,"TargetID":66725,"Directional":true}]},{"ID":15467,"SourceStructureID":66731,"TargetStructureID":66734,"Label":"66731-66734 via Conventional from 66733 -> 66735","Type":"Conventional","Directional":true,"Links":[{"SourceID":66733,"TargetID":66735,"Directional":true}]},{"ID":15468,"SourceStructureID":66731,"TargetStructureID":66741,"Label":"66731-66741 via Conventional from 66740 -> 66742","Type":"Conventional","Directional":true,"Links":[{"SourceID":66740,"TargetID":66742,"Directional":true}]},{"ID":15469,"SourceStructureID":66760,"TargetStructureID":66756,"Label":"66760-66756 via Conventional from 66761 -> 66762","Type":"Conventional","Directional":true,"Links":[{"SourceID":66761,"TargetID":66762,"Directional":true}]},{"ID":15470,"SourceStructureID":66768,"TargetStructureID":593,"Label":"66768-593 via Conventional from 67538 -> 67539, 68429 -> 28438","Type":"Conventional","Directional":true,"Links":[{"SourceID":67538,"TargetID":67539,"Directional":true},{"SourceID":68429,"TargetID":28438,"Directional":true}]},{"ID":15471,"SourceStructureID":66768,"TargetStructureID":6115,"Label":"66768-6115 via Conventional from 66771 -> 59607","Type":"Conventional","Directional":true,"Links":[{"SourceID":66771,"TargetID":59607,"Directional":true}]},{"ID":15472,"SourceStructureID":66779,"TargetStructureID":593,"Label":"66779-593 via Conventional from 66780 -> 7712, 66793 -> 7751, 67499 -> 7757","Type":"Conventional","Directional":true,"Links":[{"SourceID":66780,"TargetID":7712,"Directional":true},{"SourceID":66793,"TargetID":7751,"Directional":true},{"SourceID":67499,"TargetID":7757,"Directional":true}]},{"ID":15473,"SourceStructureID":66788,"TargetStructureID":66791,"Label":"66788-66791 via Conventional from 66790 -> 66792","Type":"Conventional","Directional":true,"Links":[{"SourceID":66790,"TargetID":66792,"Directional":true}]},{"ID":15474,"SourceStructureID":66795,"TargetStructureID":593,"Label":"66795-593 via Conventional from 66796 -> 7714, 67567 -> 7767","Type":"Conventional","Directional":true,"Links":[{"SourceID":66796,"TargetID":7714,"Directional":true},{"SourceID":67567,"TargetID":7767,"Directional":true}]},{"ID":15475,"SourceStructureID":66795,"TargetStructureID":66798,"Label":"66795-66798 via Conventional from 66797 -> 66799","Type":"Conventional","Directional":true,"Links":[{"SourceID":66797,"TargetID":66799,"Directional":true}]},{"ID":15476,"SourceStructureID":66795,"TargetStructureID":68488,"Label":"66795-68488 via Conventional from 79580 -> 79581","Type":"Conventional","Directional":true,"Links":[{"SourceID":79580,"TargetID":79581,"Directional":true}]},{"ID":15477,"SourceStructureID":66801,"TargetStructureID":16026,"Label":"66801-16026 via Conventional from 83605 -> 91078","Type":"Conventional","Directional":true,"Links":[{"SourceID":83605,"TargetID":91078,"Directional":true}]},{"ID":15478,"SourceStructureID":66801,"TargetStructureID":66795,"Label":"66801-66795 via Conventional from 66802 -> 66800","Type":"Conventional","Directional":true,"Links":[{"SourceID":66802,"TargetID":66800,"Directional":true}]},{"ID":15479,"SourceStructureID":66801,"TargetStructureID":83609,"Label":"66801-83609 via Conventional from 83608 -> 83610","Type":"Conventional","Directional":true,"Links":[{"SourceID":83608,"TargetID":83610,"Directional":true}]},{"ID":15480,"SourceStructureID":66804,"TargetStructureID":593,"Label":"66804-593 via Conventional from 66806 -> 66807","Type":"Conventional","Directional":true,"Links":[{"SourceID":66806,"TargetID":66807,"Directional":true}]},{"ID":15481,"SourceStructureID":66804,"TargetStructureID":66801,"Label":"66804-66801 via Conventional from 80629 -> 83601","Type":"Conventional","Directional":true,"Links":[{"SourceID":80629,"TargetID":83601,"Directional":true}]},{"ID":15482,"SourceStructureID":66804,"TargetStructureID":66809,"Label":"66804-66809 via Conventional from 66808 -> 66810","Type":"Conventional","Directional":true,"Links":[{"SourceID":66808,"TargetID":66810,"Directional":true}]},{"ID":15483,"SourceStructureID":66804,"TargetStructureID":69537,"Label":"66804-69537 via Conventional from 80632 -> 69633","Type":"Conventional","Directional":true,"Links":[{"SourceID":80632,"TargetID":69633,"Directional":true}]},{"ID":15484,"SourceStructureID":66809,"TargetStructureID":593,"Label":"66809-593 via Conventional from 66861 -> 67060","Type":"Conventional","Directional":true,"Links":[{"SourceID":66861,"TargetID":67060,"Directional":true}]},{"ID":15485,"SourceStructureID":66809,"TargetStructureID":66031,"Label":"66809-66031 via Conventional from 66047 -> 66048","Type":"Conventional","Directional":true,"Links":[{"SourceID":66047,"TargetID":66048,"Directional":true}]},{"ID":15486,"SourceStructureID":66809,"TargetStructureID":66795,"Label":"66809-66795 via Conventional from 82440 -> 82441","Type":"Conventional","Directional":true,"Links":[{"SourceID":82440,"TargetID":82441,"Directional":true}]},{"ID":15487,"SourceStructureID":66809,"TargetStructureID":66804,"Label":"66809-66804 via Conventional from 66864 -> 66867","Type":"Conventional","Directional":true,"Links":[{"SourceID":66864,"TargetID":66867,"Directional":true}]},{"ID":15488,"SourceStructureID":66815,"TargetStructureID":10943,"Label":"66815-10943 via Conventional from 66818 -> 16269","Type":"Conventional","Directional":true,"Links":[{"SourceID":66818,"TargetID":16269,"Directional":true}]},{"ID":15489,"SourceStructureID":66828,"TargetStructureID":593,"Label":"66828-593 via Conventional from 66830 -> 66831","Type":"Conventional","Directional":true,"Links":[{"SourceID":66830,"TargetID":66831,"Directional":true}]},{"ID":15490,"SourceStructureID":66828,"TargetStructureID":16026,"Label":"66828-16026 via Conventional from 66836 -> 25704, 82735 -> 25600, 82740 -> 67923","Type":"Conventional","Directional":true,"Links":[{"SourceID":66836,"TargetID":25704,"Directional":true},{"SourceID":82735,"TargetID":25600,"Directional":true},{"SourceID":82740,"TargetID":67923,"Directional":true}]},{"ID":15491,"SourceStructureID":66828,"TargetStructureID":40451,"Label":"66828-40451 via Conventional from 82727 -> 40452","Type":"Conventional","Directional":true,"Links":[{"SourceID":82727,"TargetID":40452,"Directional":true}]},{"ID":15492,"SourceStructureID":66828,"TargetStructureID":82729,"Label":"66828-82729 via Conventional from 82728 -> 82730","Type":"Conventional","Directional":true,"Links":[{"SourceID":82728,"TargetID":82730,"Directional":true}]},{"ID":15493,"SourceStructureID":66840,"TargetStructureID":8720,"Label":"66840-8720 via Conventional from 64379 -> 64377","Type":"Conventional","Directional":true,"Links":[{"SourceID":64379,"TargetID":64377,"Directional":true}]},{"ID":15494,"SourceStructureID":66852,"TargetStructureID":593,"Label":"66852-593 via Conventional from 66853 -> 66854","Type":"Conventional","Directional":true,"Links":[{"SourceID":66853,"TargetID":66854,"Directional":true}]},{"ID":15495,"SourceStructureID":66871,"TargetStructureID":593,"Label":"66871-593 via Conventional from 66873 -> 7754","Type":"Conventional","Directional":true,"Links":[{"SourceID":66873,"TargetID":7754,"Directional":true}]},{"ID":15496,"SourceStructureID":66871,"TargetStructureID":66804,"Label":"66871-66804 via Conventional from 66874 -> 66875","Type":"Conventional","Directional":true,"Links":[{"SourceID":66874,"TargetID":66875,"Directional":true}]},{"ID":15497,"SourceStructureID":66871,"TargetStructureID":67430,"Label":"66871-67430 via Conventional from 82742 -> 70032","Type":"Conventional","Directional":true,"Links":[{"SourceID":82742,"TargetID":70032,"Directional":true}]},{"ID":15498,"SourceStructureID":66896,"TargetStructureID":593,"Label":"66896-593 via Conventional from 79252 -> 7805","Type":"Conventional","Directional":true,"Links":[{"SourceID":79252,"TargetID":7805,"Directional":true}]},{"ID":15499,"SourceStructureID":66900,"TargetStructureID":66900,"Label":"66900-66900 via Conventional from 66902 -> 66904","Type":"Conventional","Directional":true,"Links":[{"SourceID":66902,"TargetID":66904,"Directional":true}]},{"ID":15500,"SourceStructureID":66900,"TargetStructureID":84260,"Label":"66900-84260 via Conventional from 66901 -> 84265","Type":"Conventional","Directional":true,"Links":[{"SourceID":66901,"TargetID":84265,"Directional":true}]},{"ID":15501,"SourceStructureID":66905,"TargetStructureID":66923,"Label":"66905-66923 via Conventional from 66922 -> 66924","Type":"Conventional","Directional":true,"Links":[{"SourceID":66922,"TargetID":66924,"Directional":true}]},{"ID":15502,"SourceStructureID":66920,"TargetStructureID":66905,"Label":"66920-66905 via Conventional from 66921 -> 66919","Type":"Conventional","Directional":true,"Links":[{"SourceID":66921,"TargetID":66919,"Directional":true}]},{"ID":15503,"SourceStructureID":66927,"TargetStructureID":66905,"Label":"66927-66905 via Conventional from 66928 -> 66926","Type":"Conventional","Directional":true,"Links":[{"SourceID":66928,"TargetID":66926,"Directional":true}]},{"ID":15504,"SourceStructureID":66930,"TargetStructureID":66905,"Label":"66930-66905 via Conventional from 66931 -> 66929","Type":"Conventional","Directional":true,"Links":[{"SourceID":66931,"TargetID":66929,"Directional":true}]},{"ID":15505,"SourceStructureID":66946,"TargetStructureID":525,"Label":"66946-525 via Conventional from 83032 -> 6223","Type":"Conventional","Directional":true,"Links":[{"SourceID":83032,"TargetID":6223,"Directional":true}]},{"ID":15506,"SourceStructureID":66946,"TargetStructureID":593,"Label":"66946-593 via Conventional from 66948 -> 66949","Type":"Conventional","Directional":true,"Links":[{"SourceID":66948,"TargetID":66949,"Directional":true}]},{"ID":15507,"SourceStructureID":66946,"TargetStructureID":5017,"Label":"66946-5017 via Conventional from 82924 -> 61167","Type":"Conventional","Directional":true,"Links":[{"SourceID":82924,"TargetID":61167,"Directional":true}]},{"ID":15508,"SourceStructureID":66946,"TargetStructureID":6156,"Label":"66946-6156 via Conventional from 82906 -> 28694","Type":"Conventional","Directional":true,"Links":[{"SourceID":82906,"TargetID":28694,"Directional":true}]},{"ID":15509,"SourceStructureID":66946,"TargetStructureID":6997,"Label":"66946-6997 via Conventional from 82943 -> 80639","Type":"Conventional","Directional":true,"Links":[{"SourceID":82943,"TargetID":80639,"Directional":true}]},{"ID":15510,"SourceStructureID":66946,"TargetStructureID":8580,"Label":"66946-8580 via Conventional from 69261 -> 59650","Type":"Conventional","Directional":true,"Links":[{"SourceID":69261,"TargetID":59650,"Directional":true}]},{"ID":15511,"SourceStructureID":66946,"TargetStructureID":8588,"Label":"66946-8588 via Conventional from 82745 -> 32708, 82905 -> 59743","Type":"Conventional","Directional":true,"Links":[{"SourceID":82745,"TargetID":32708,"Directional":true},{"SourceID":82905,"TargetID":59743,"Directional":true}]},{"ID":15512,"SourceStructureID":66946,"TargetStructureID":16026,"Label":"66946-16026 via Conventional from 82890 -> 25488","Type":"Conventional","Directional":true,"Links":[{"SourceID":82890,"TargetID":25488,"Directional":true}]},{"ID":15513,"SourceStructureID":66946,"TargetStructureID":32913,"Label":"66946-32913 via Conventional from 82903 -> 82904","Type":"Conventional","Directional":true,"Links":[{"SourceID":82903,"TargetID":82904,"Directional":true}]},{"ID":15514,"SourceStructureID":66946,"TargetStructureID":66952,"Label":"66946-66952 via Conventional from 66951 -> 66953","Type":"Conventional","Directional":true,"Links":[{"SourceID":66951,"TargetID":66953,"Directional":true}]},{"ID":15515,"SourceStructureID":66946,"TargetStructureID":68302,"Label":"66946-68302 via Adherens from 82925 -> 80635","Type":"Adherens","Directional":true,"Links":[{"SourceID":82925,"TargetID":80635,"Directional":true}]},{"ID":15516,"SourceStructureID":66946,"TargetStructureID":68302,"Label":"66946-68302 via Conventional from 82926 -> 80634, 82927 -> 80636","Type":"Conventional","Directional":true,"Links":[{"SourceID":82926,"TargetID":80634,"Directional":true},{"SourceID":82927,"TargetID":80636,"Directional":true}]},{"ID":15517,"SourceStructureID":66946,"TargetStructureID":68341,"Label":"66946-68341 via Conventional from 82744 -> 80622","Type":"Conventional","Directional":true,"Links":[{"SourceID":82744,"TargetID":80622,"Directional":true}]},{"ID":15518,"SourceStructureID":66946,"TargetStructureID":68548,"Label":"66946-68548 via Conventional from 82891 -> 73486","Type":"Conventional","Directional":true,"Links":[{"SourceID":82891,"TargetID":73486,"Directional":true}]},{"ID":15519,"SourceStructureID":66946,"TargetStructureID":83034,"Label":"66946-83034 via Conventional from 83035 -> 83036","Type":"Conventional","Directional":true,"Links":[{"SourceID":83035,"TargetID":83036,"Directional":true}]},{"ID":15520,"SourceStructureID":66952,"TargetStructureID":593,"Label":"66952-593 via Conventional from 67006 -> 67004","Type":"Conventional","Directional":true,"Links":[{"SourceID":67006,"TargetID":67004,"Directional":true}]},{"ID":15521,"SourceStructureID":66952,"TargetStructureID":67007,"Label":"66952-67007 via Conventional from 67012 -> 67013","Type":"Conventional","Directional":true,"Links":[{"SourceID":67012,"TargetID":67013,"Directional":true}]},{"ID":15522,"SourceStructureID":66952,"TargetStructureID":67389,"Label":"66952-67389 via Conventional from 67388 -> 67390","Type":"Conventional","Directional":true,"Links":[{"SourceID":67388,"TargetID":67390,"Directional":true}]},{"ID":15523,"SourceStructureID":66952,"TargetStructureID":83049,"Label":"66952-83049 via Conventional from 83048 -> 83050","Type":"Conventional","Directional":true,"Links":[{"SourceID":83048,"TargetID":83050,"Directional":true}]},{"ID":15524,"SourceStructureID":66955,"TargetStructureID":66946,"Label":"66955-66946 via Conventional from 66956 -> 66954","Type":"Conventional","Directional":true,"Links":[{"SourceID":66956,"TargetID":66954,"Directional":true}]},{"ID":15525,"SourceStructureID":66962,"TargetStructureID":16026,"Label":"66962-16026 via Conventional from 71226 -> 25734","Type":"Conventional","Directional":true,"Links":[{"SourceID":71226,"TargetID":25734,"Directional":true}]},{"ID":15526,"SourceStructureID":66962,"TargetStructureID":66964,"Label":"66962-66964 via Conventional from 66963 -> 66965","Type":"Conventional","Directional":true,"Links":[{"SourceID":66963,"TargetID":66965,"Directional":true}]},{"ID":15527,"SourceStructureID":66969,"TargetStructureID":66966,"Label":"66969-66966 via Conventional from 66970 -> 66971","Type":"Conventional","Directional":true,"Links":[{"SourceID":66970,"TargetID":66971,"Directional":true}]},{"ID":15528,"SourceStructureID":66972,"TargetStructureID":10943,"Label":"66972-10943 via Conventional from 66973 -> 66974","Type":"Conventional","Directional":true,"Links":[{"SourceID":66973,"TargetID":66974,"Directional":true}]},{"ID":15529,"SourceStructureID":66983,"TargetStructureID":593,"Label":"66983-593 via Conventional from 66984 -> 7718, 66997 -> 7724","Type":"Conventional","Directional":true,"Links":[{"SourceID":66984,"TargetID":7718,"Directional":true},{"SourceID":66997,"TargetID":7724,"Directional":true}]},{"ID":15530,"SourceStructureID":66983,"TargetStructureID":66988,"Label":"66983-66988 via Conventional from 66987 -> 66989","Type":"Conventional","Directional":true,"Links":[{"SourceID":66987,"TargetID":66989,"Directional":true}]},{"ID":15531,"SourceStructureID":66992,"TargetStructureID":66983,"Label":"66992-66983 via Conventional from 66993 -> 66994","Type":"Conventional","Directional":true,"Links":[{"SourceID":66993,"TargetID":66994,"Directional":true}]},{"ID":15532,"SourceStructureID":67002,"TargetStructureID":66983,"Label":"67002-66983 via Conventional from 67003 -> 67001","Type":"Conventional","Directional":true,"Links":[{"SourceID":67003,"TargetID":67001,"Directional":true}]},{"ID":15533,"SourceStructureID":67007,"TargetStructureID":593,"Label":"67007-593 via Conventional from 67014 -> 66622","Type":"Conventional","Directional":true,"Links":[{"SourceID":67014,"TargetID":66622,"Directional":true}]},{"ID":15534,"SourceStructureID":67007,"TargetStructureID":66952,"Label":"67007-66952 via Conventional from 67008 -> 67009","Type":"Conventional","Directional":true,"Links":[{"SourceID":67008,"TargetID":67009,"Directional":true}]},{"ID":15535,"SourceStructureID":67007,"TargetStructureID":67016,"Label":"67007-67016 via Conventional from 67015 -> 67017","Type":"Conventional","Directional":true,"Links":[{"SourceID":67015,"TargetID":67017,"Directional":true}]},{"ID":15536,"SourceStructureID":67010,"TargetStructureID":8588,"Label":"67010-8588 via Conventional from 67011 -> 32710","Type":"Conventional","Directional":true,"Links":[{"SourceID":67011,"TargetID":32710,"Directional":true}]},{"ID":15537,"SourceStructureID":67016,"TargetStructureID":55403,"Label":"67016-55403 via Conventional from 67023 -> 55465","Type":"Conventional","Directional":true,"Links":[{"SourceID":67023,"TargetID":55465,"Directional":true}]},{"ID":15538,"SourceStructureID":67037,"TargetStructureID":66777,"Label":"67037-66777 via Conventional from 71208 -> 67039","Type":"Conventional","Directional":true,"Links":[{"SourceID":71208,"TargetID":67039,"Directional":true}]},{"ID":15539,"SourceStructureID":67042,"TargetStructureID":66958,"Label":"67042-66958 via Conventional from 67043 -> 67041","Type":"Conventional","Directional":true,"Links":[{"SourceID":67043,"TargetID":67041,"Directional":true}]},{"ID":15540,"SourceStructureID":67045,"TargetStructureID":593,"Label":"67045-593 via Conventional from 67047 -> 67046, 67218 -> 67215, 67676 -> 67674, 67680 -> 67681","Type":"Conventional","Directional":true,"Links":[{"SourceID":67047,"TargetID":67046,"Directional":true},{"SourceID":67218,"TargetID":67215,"Directional":true},{"SourceID":67676,"TargetID":67674,"Directional":true},{"SourceID":67680,"TargetID":67681,"Directional":true}]},{"ID":15541,"SourceStructureID":67045,"TargetStructureID":16026,"Label":"67045-16026 via Conventional from 81542 -> 68700","Type":"Conventional","Directional":true,"Links":[{"SourceID":81542,"TargetID":68700,"Directional":true}]},{"ID":15542,"SourceStructureID":67045,"TargetStructureID":31161,"Label":"67045-31161 via Conventional from 68699 -> 31234","Type":"Conventional","Directional":true,"Links":[{"SourceID":68699,"TargetID":31234,"Directional":true}]},{"ID":15543,"SourceStructureID":67045,"TargetStructureID":67683,"Label":"67045-67683 via Conventional from 67682 -> 67684","Type":"Conventional","Directional":true,"Links":[{"SourceID":67682,"TargetID":67684,"Directional":true}]},{"ID":15544,"SourceStructureID":67045,"TargetStructureID":67731,"Label":"67045-67731 via Conventional from 67734 -> 67735","Type":"Conventional","Directional":true,"Links":[{"SourceID":67734,"TargetID":67735,"Directional":true}]},{"ID":15545,"SourceStructureID":67045,"TargetStructureID":67756,"Label":"67045-67756 via Conventional from 67048 -> 75405, 68695 -> 75401","Type":"Conventional","Directional":true,"Links":[{"SourceID":67048,"TargetID":75405,"Directional":true},{"SourceID":68695,"TargetID":75401,"Directional":true}]},{"ID":15546,"SourceStructureID":67045,"TargetStructureID":81549,"Label":"67045-81549 via Conventional from 81548 -> 81550","Type":"Conventional","Directional":true,"Links":[{"SourceID":81548,"TargetID":81550,"Directional":true}]},{"ID":15547,"SourceStructureID":67051,"TargetStructureID":66958,"Label":"67051-66958 via Conventional from 67055 -> 67056","Type":"Conventional","Directional":true,"Links":[{"SourceID":67055,"TargetID":67056,"Directional":true}]},{"ID":15548,"SourceStructureID":67057,"TargetStructureID":7594,"Label":"67057-7594 via Conventional from 130847 -> 130848","Type":"Conventional","Directional":true,"Links":[{"SourceID":130847,"TargetID":130848,"Directional":true}]},{"ID":15549,"SourceStructureID":67057,"TargetStructureID":66958,"Label":"67057-66958 via Conventional from 67058 -> 67059","Type":"Conventional","Directional":true,"Links":[{"SourceID":67058,"TargetID":67059,"Directional":true}]},{"ID":15550,"SourceStructureID":67072,"TargetStructureID":22974,"Label":"67072-22974 via Conventional from 67074 -> 67075","Type":"Conventional","Directional":true,"Links":[{"SourceID":67074,"TargetID":67075,"Directional":true}]},{"ID":15551,"SourceStructureID":67080,"TargetStructureID":16026,"Label":"67080-16026 via Conventional from 67082 -> 25717","Type":"Conventional","Directional":true,"Links":[{"SourceID":67082,"TargetID":25717,"Directional":true}]},{"ID":15552,"SourceStructureID":67099,"TargetStructureID":593,"Label":"67099-593 via Conventional from 67100 -> 7716","Type":"Conventional","Directional":true,"Links":[{"SourceID":67100,"TargetID":7716,"Directional":true}]},{"ID":15553,"SourceStructureID":67099,"TargetStructureID":7594,"Label":"67099-7594 via Conventional from 83053 -> 83054","Type":"Conventional","Directional":true,"Links":[{"SourceID":83053,"TargetID":83054,"Directional":true}]},{"ID":15554,"SourceStructureID":67105,"TargetStructureID":67101,"Label":"67105-67101 via Conventional from 67106 -> 67104","Type":"Conventional","Directional":true,"Links":[{"SourceID":67106,"TargetID":67104,"Directional":true}]},{"ID":15555,"SourceStructureID":67117,"TargetStructureID":593,"Label":"67117-593 via Conventional from 67118 -> 66623","Type":"Conventional","Directional":true,"Links":[{"SourceID":67118,"TargetID":66623,"Directional":true}]},{"ID":15556,"SourceStructureID":67121,"TargetStructureID":593,"Label":"67121-593 via Conventional from 67122 -> 66627","Type":"Conventional","Directional":true,"Links":[{"SourceID":67122,"TargetID":66627,"Directional":true}]},{"ID":15557,"SourceStructureID":67123,"TargetStructureID":593,"Label":"67123-593 via Conventional from 67124 -> 66628","Type":"Conventional","Directional":true,"Links":[{"SourceID":67124,"TargetID":66628,"Directional":true}]},{"ID":15558,"SourceStructureID":67130,"TargetStructureID":33092,"Label":"67130-33092 via Conventional from 67134 -> 39979","Type":"Conventional","Directional":true,"Links":[{"SourceID":67134,"TargetID":39979,"Directional":true}]},{"ID":15559,"SourceStructureID":67135,"TargetStructureID":7054,"Label":"67135-7054 via Conventional from 67145 -> 10915","Type":"Conventional","Directional":true,"Links":[{"SourceID":67145,"TargetID":10915,"Directional":true}]},{"ID":15560,"SourceStructureID":67137,"TargetStructureID":5283,"Label":"67137-5283 via Conventional from 67149 -> 132129","Type":"Conventional","Directional":true,"Links":[{"SourceID":67149,"TargetID":132129,"Directional":true}]},{"ID":15561,"SourceStructureID":67143,"TargetStructureID":67135,"Label":"67143-67135 via Conventional from 67144 -> 67142","Type":"Conventional","Directional":true,"Links":[{"SourceID":67144,"TargetID":67142,"Directional":true}]},{"ID":15562,"SourceStructureID":67147,"TargetStructureID":67137,"Label":"67147-67137 via Conventional from 67148 -> 67146","Type":"Conventional","Directional":true,"Links":[{"SourceID":67148,"TargetID":67146,"Directional":true}]},{"ID":15563,"SourceStructureID":67150,"TargetStructureID":593,"Label":"67150-593 via Conventional from 67151 -> 49569, 68330 -> 7761, 90045 -> 90046","Type":"Conventional","Directional":true,"Links":[{"SourceID":67151,"TargetID":49569,"Directional":true},{"SourceID":68330,"TargetID":7761,"Directional":true},{"SourceID":90045,"TargetID":90046,"Directional":true}]},{"ID":15564,"SourceStructureID":67152,"TargetStructureID":593,"Label":"67152-593 via Conventional from 67153 -> 67154","Type":"Conventional","Directional":true,"Links":[{"SourceID":67153,"TargetID":67154,"Directional":true}]},{"ID":15565,"SourceStructureID":67157,"TargetStructureID":593,"Label":"67157-593 via Conventional from 67158 -> 67156","Type":"Conventional","Directional":true,"Links":[{"SourceID":67158,"TargetID":67156,"Directional":true}]},{"ID":15566,"SourceStructureID":67159,"TargetStructureID":593,"Label":"67159-593 via Conventional from 67160 -> 62885","Type":"Conventional","Directional":true,"Links":[{"SourceID":67160,"TargetID":62885,"Directional":true}]},{"ID":15567,"SourceStructureID":67161,"TargetStructureID":67172,"Label":"67161-67172 via Conventional from 67171 -> 67173","Type":"Conventional","Directional":true,"Links":[{"SourceID":67171,"TargetID":67173,"Directional":true}]},{"ID":15568,"SourceStructureID":67161,"TargetStructureID":67175,"Label":"67161-67175 via Conventional from 67174 -> 67176","Type":"Conventional","Directional":true,"Links":[{"SourceID":67174,"TargetID":67176,"Directional":true}]},{"ID":15569,"SourceStructureID":67161,"TargetStructureID":69162,"Label":"67161-69162 via Conventional from 67179 -> 69213","Type":"Conventional","Directional":true,"Links":[{"SourceID":67179,"TargetID":69213,"Directional":true}]},{"ID":15570,"SourceStructureID":67180,"TargetStructureID":593,"Label":"67180-593 via Conventional from 67181 -> 66632","Type":"Conventional","Directional":true,"Links":[{"SourceID":67181,"TargetID":66632,"Directional":true}]},{"ID":15571,"SourceStructureID":67182,"TargetStructureID":142,"Label":"67182-142 via Conventional from 83313 -> 49728, 83317 -> 30684","Type":"Conventional","Directional":true,"Links":[{"SourceID":83313,"TargetID":49728,"Directional":true},{"SourceID":83317,"TargetID":30684,"Directional":true}]},{"ID":15572,"SourceStructureID":67182,"TargetStructureID":168,"Label":"67182-168 via Conventional from 83323 -> 4144","Type":"Conventional","Directional":true,"Links":[{"SourceID":83323,"TargetID":4144,"Directional":true}]},{"ID":15573,"SourceStructureID":67182,"TargetStructureID":593,"Label":"67182-593 via Conventional from 67184 -> 67183","Type":"Conventional","Directional":true,"Links":[{"SourceID":67184,"TargetID":67183,"Directional":true}]},{"ID":15574,"SourceStructureID":67182,"TargetStructureID":5279,"Label":"67182-5279 via Conventional from 82870 -> 97564, 83300 -> 83299, 97648 -> 25817, 98544 -> 49206, 98989 -> 98990","Type":"Conventional","Directional":true,"Links":[{"SourceID":82870,"TargetID":97564,"Directional":true},{"SourceID":83300,"TargetID":83299,"Directional":true},{"SourceID":97648,"TargetID":25817,"Directional":true},{"SourceID":98544,"TargetID":49206,"Directional":true},{"SourceID":98989,"TargetID":98990,"Directional":true}]},{"ID":15575,"SourceStructureID":67182,"TargetStructureID":58816,"Label":"67182-58816 via Conventional from 83301 -> 83304, 83305 -> 83306","Type":"Conventional","Directional":true,"Links":[{"SourceID":83301,"TargetID":83304,"Directional":true},{"SourceID":83305,"TargetID":83306,"Directional":true}]},{"ID":15576,"SourceStructureID":67182,"TargetStructureID":61857,"Label":"67182-61857 via Conventional from 82917 -> 69711","Type":"Conventional","Directional":true,"Links":[{"SourceID":82917,"TargetID":69711,"Directional":true}]},{"ID":15577,"SourceStructureID":67190,"TargetStructureID":593,"Label":"67190-593 via Conventional from 120225 -> 120224","Type":"Conventional","Directional":true,"Links":[{"SourceID":120225,"TargetID":120224,"Directional":true}]},{"ID":15578,"SourceStructureID":67201,"TargetStructureID":593,"Label":"67201-593 via Conventional from 67202 -> 67203","Type":"Conventional","Directional":true,"Links":[{"SourceID":67202,"TargetID":67203,"Directional":true}]},{"ID":15579,"SourceStructureID":67206,"TargetStructureID":593,"Label":"67206-593 via Conventional from 67207 -> 67205, 83237 -> 68625","Type":"Conventional","Directional":true,"Links":[{"SourceID":67207,"TargetID":67205,"Directional":true},{"SourceID":83237,"TargetID":68625,"Directional":true}]},{"ID":15580,"SourceStructureID":67227,"TargetStructureID":593,"Label":"67227-593 via Conventional from 67229 -> 67228","Type":"Conventional","Directional":true,"Links":[{"SourceID":67229,"TargetID":67228,"Directional":true}]},{"ID":15581,"SourceStructureID":67234,"TargetStructureID":593,"Label":"67234-593 via Conventional from 67235 -> 67233","Type":"Conventional","Directional":true,"Links":[{"SourceID":67235,"TargetID":67233,"Directional":true}]},{"ID":15582,"SourceStructureID":67254,"TargetStructureID":593,"Label":"67254-593 via Conventional from 67256 -> 67255","Type":"Conventional","Directional":true,"Links":[{"SourceID":67256,"TargetID":67255,"Directional":true}]},{"ID":15583,"SourceStructureID":67266,"TargetStructureID":593,"Label":"67266-593 via Conventional from 67267 -> 67268","Type":"Conventional","Directional":true,"Links":[{"SourceID":67267,"TargetID":67268,"Directional":true}]},{"ID":15584,"SourceStructureID":67269,"TargetStructureID":593,"Label":"67269-593 via Conventional from 67271 -> 67270","Type":"Conventional","Directional":true,"Links":[{"SourceID":67271,"TargetID":67270,"Directional":true}]},{"ID":15585,"SourceStructureID":67269,"TargetStructureID":69637,"Label":"67269-69637 via Conventional from 69638 -> 69639","Type":"Conventional","Directional":true,"Links":[{"SourceID":69638,"TargetID":69639,"Directional":true}]},{"ID":15586,"SourceStructureID":67274,"TargetStructureID":593,"Label":"67274-593 via Conventional from 67277 -> 67278","Type":"Conventional","Directional":true,"Links":[{"SourceID":67277,"TargetID":67278,"Directional":true}]},{"ID":15587,"SourceStructureID":67284,"TargetStructureID":593,"Label":"67284-593 via Conventional from 86594 -> 86595","Type":"Conventional","Directional":true,"Links":[{"SourceID":86594,"TargetID":86595,"Directional":true}]},{"ID":15588,"SourceStructureID":67284,"TargetStructureID":16026,"Label":"67284-16026 via Conventional from 67288 -> 91154","Type":"Conventional","Directional":true,"Links":[{"SourceID":67288,"TargetID":91154,"Directional":true}]},{"ID":15589,"SourceStructureID":67291,"TargetStructureID":179,"Label":"67291-179 via Conventional from 69839 -> 69840","Type":"Conventional","Directional":true,"Links":[{"SourceID":69839,"TargetID":69840,"Directional":true}]},{"ID":15590,"SourceStructureID":67298,"TargetStructureID":593,"Label":"67298-593 via Conventional from 67299 -> 67300","Type":"Conventional","Directional":true,"Links":[{"SourceID":67299,"TargetID":67300,"Directional":true}]},{"ID":15591,"SourceStructureID":67301,"TargetStructureID":593,"Label":"67301-593 via Conventional from 67302 -> 67303","Type":"Conventional","Directional":true,"Links":[{"SourceID":67302,"TargetID":67303,"Directional":true}]},{"ID":15592,"SourceStructureID":67305,"TargetStructureID":593,"Label":"67305-593 via Conventional from 67306 -> 67304","Type":"Conventional","Directional":true,"Links":[{"SourceID":67306,"TargetID":67304,"Directional":true}]},{"ID":15593,"SourceStructureID":67305,"TargetStructureID":82813,"Label":"67305-82813 via Conventional from 82812 -> 82814","Type":"Conventional","Directional":true,"Links":[{"SourceID":82812,"TargetID":82814,"Directional":true}]},{"ID":15594,"SourceStructureID":67307,"TargetStructureID":67309,"Label":"67307-67309 via Conventional from 67308 -> 67310","Type":"Conventional","Directional":true,"Links":[{"SourceID":67308,"TargetID":67310,"Directional":true}]},{"ID":15595,"SourceStructureID":67322,"TargetStructureID":593,"Label":"67322-593 via Conventional from 67323 -> 7747","Type":"Conventional","Directional":true,"Links":[{"SourceID":67323,"TargetID":7747,"Directional":true}]},{"ID":15596,"SourceStructureID":67328,"TargetStructureID":593,"Label":"67328-593 via Conventional from 67329 -> 67327","Type":"Conventional","Directional":true,"Links":[{"SourceID":67329,"TargetID":67327,"Directional":true}]},{"ID":15597,"SourceStructureID":67328,"TargetStructureID":65355,"Label":"67328-65355 via Conventional from 82801 -> 82802","Type":"Conventional","Directional":true,"Links":[{"SourceID":82801,"TargetID":82802,"Directional":true}]},{"ID":15598,"SourceStructureID":67337,"TargetStructureID":593,"Label":"67337-593 via Conventional from 67338 -> 7755","Type":"Conventional","Directional":true,"Links":[{"SourceID":67338,"TargetID":7755,"Directional":true}]},{"ID":15599,"SourceStructureID":67337,"TargetStructureID":67322,"Label":"67337-67322 via Conventional from 67339 -> 67340","Type":"Conventional","Directional":true,"Links":[{"SourceID":67339,"TargetID":67340,"Directional":true}]},{"ID":15600,"SourceStructureID":67341,"TargetStructureID":24148,"Label":"67341-24148 via Conventional from 67393 -> 24151","Type":"Conventional","Directional":true,"Links":[{"SourceID":67393,"TargetID":24151,"Directional":true}]},{"ID":15601,"SourceStructureID":67343,"TargetStructureID":82806,"Label":"67343-82806 via Conventional from 67348 -> 82807","Type":"Conventional","Directional":true,"Links":[{"SourceID":67348,"TargetID":82807,"Directional":true}]},{"ID":15602,"SourceStructureID":67350,"TargetStructureID":593,"Label":"67350-593 via Conventional from 68317 -> 7762","Type":"Conventional","Directional":true,"Links":[{"SourceID":68317,"TargetID":7762,"Directional":true}]},{"ID":15603,"SourceStructureID":67354,"TargetStructureID":67361,"Label":"67354-67361 via Conventional from 67360 -> 67362","Type":"Conventional","Directional":true,"Links":[{"SourceID":67360,"TargetID":67362,"Directional":true}]},{"ID":15604,"SourceStructureID":67354,"TargetStructureID":91531,"Label":"67354-91531 via Conventional from 91530 -> 91532","Type":"Conventional","Directional":true,"Links":[{"SourceID":91530,"TargetID":91532,"Directional":true}]},{"ID":15605,"SourceStructureID":67354,"TargetStructureID":91533,"Label":"67354-91533 via Conventional from 91529 -> 91534","Type":"Conventional","Directional":true,"Links":[{"SourceID":91529,"TargetID":91534,"Directional":true}]},{"ID":15606,"SourceStructureID":67364,"TargetStructureID":593,"Label":"67364-593 via Conventional from 67365 -> 7746","Type":"Conventional","Directional":true,"Links":[{"SourceID":67365,"TargetID":7746,"Directional":true}]},{"ID":15607,"SourceStructureID":67375,"TargetStructureID":593,"Label":"67375-593 via Conventional from 67376 -> 67377, 84611 -> 84612","Type":"Conventional","Directional":true,"Links":[{"SourceID":67376,"TargetID":67377,"Directional":true},{"SourceID":84611,"TargetID":84612,"Directional":true}]},{"ID":15608,"SourceStructureID":67375,"TargetStructureID":67379,"Label":"67375-67379 via Conventional from 67378 -> 67380","Type":"Conventional","Directional":true,"Links":[{"SourceID":67378,"TargetID":67380,"Directional":true}]},{"ID":15609,"SourceStructureID":67396,"TargetStructureID":24148,"Label":"67396-24148 via Conventional from 67403 -> 24152","Type":"Conventional","Directional":true,"Links":[{"SourceID":67403,"TargetID":24152,"Directional":true}]},{"ID":15610,"SourceStructureID":67396,"TargetStructureID":67341,"Label":"67396-67341 via Conventional from 67397 -> 67392","Type":"Conventional","Directional":true,"Links":[{"SourceID":67397,"TargetID":67392,"Directional":true}]},{"ID":15611,"SourceStructureID":67410,"TargetStructureID":593,"Label":"67410-593 via Conventional from 67411 -> 67409","Type":"Conventional","Directional":true,"Links":[{"SourceID":67411,"TargetID":67409,"Directional":true}]},{"ID":15612,"SourceStructureID":67410,"TargetStructureID":5562,"Label":"67410-5562 via Conventional from 67412 -> 63782, 82782 -> 63857","Type":"Conventional","Directional":true,"Links":[{"SourceID":67412,"TargetID":63782,"Directional":true},{"SourceID":82782,"TargetID":63857,"Directional":true}]},{"ID":15613,"SourceStructureID":67423,"TargetStructureID":593,"Label":"67423-593 via Conventional from 67424 -> 49576","Type":"Conventional","Directional":true,"Links":[{"SourceID":67424,"TargetID":49576,"Directional":true}]},{"ID":15614,"SourceStructureID":67425,"TargetStructureID":67433,"Label":"67425-67433 via Conventional from 67436 -> 67435","Type":"Conventional","Directional":true,"Links":[{"SourceID":67436,"TargetID":67435,"Directional":true}]},{"ID":15615,"SourceStructureID":67438,"TargetStructureID":16026,"Label":"67438-16026 via Conventional from 67439 -> 91046","Type":"Conventional","Directional":true,"Links":[{"SourceID":67439,"TargetID":91046,"Directional":true}]},{"ID":15616,"SourceStructureID":67444,"TargetStructureID":8580,"Label":"67444-8580 via Conventional from 67446 -> 59652","Type":"Conventional","Directional":true,"Links":[{"SourceID":67446,"TargetID":59652,"Directional":true}]},{"ID":15617,"SourceStructureID":67452,"TargetStructureID":593,"Label":"67452-593 via Conventional from 67453 -> 67454","Type":"Conventional","Directional":true,"Links":[{"SourceID":67453,"TargetID":67454,"Directional":true}]},{"ID":15618,"SourceStructureID":67452,"TargetStructureID":67460,"Label":"67452-67460 via Conventional from 69635 -> 69636","Type":"Conventional","Directional":true,"Links":[{"SourceID":69635,"TargetID":69636,"Directional":true}]},{"ID":15619,"SourceStructureID":67460,"TargetStructureID":593,"Label":"67460-593 via Conventional from 67463 -> 67464","Type":"Conventional","Directional":true,"Links":[{"SourceID":67463,"TargetID":67464,"Directional":true}]},{"ID":15620,"SourceStructureID":67469,"TargetStructureID":593,"Label":"67469-593 via Conventional from 67471 -> 67472","Type":"Conventional","Directional":true,"Links":[{"SourceID":67471,"TargetID":67472,"Directional":true}]},{"ID":15621,"SourceStructureID":67469,"TargetStructureID":5562,"Label":"67469-5562 via Conventional from 69677 -> 63733","Type":"Conventional","Directional":true,"Links":[{"SourceID":69677,"TargetID":63733,"Directional":true}]},{"ID":15622,"SourceStructureID":67469,"TargetStructureID":67460,"Label":"67469-67460 via Conventional from 67470 -> 67468","Type":"Conventional","Directional":true,"Links":[{"SourceID":67470,"TargetID":67468,"Directional":true}]},{"ID":15623,"SourceStructureID":67469,"TargetStructureID":69679,"Label":"67469-69679 via Conventional from 69678 -> 69680","Type":"Conventional","Directional":true,"Links":[{"SourceID":69678,"TargetID":69680,"Directional":true}]},{"ID":15624,"SourceStructureID":67469,"TargetStructureID":69684,"Label":"67469-69684 via Conventional from 69683 -> 69685","Type":"Conventional","Directional":true,"Links":[{"SourceID":69683,"TargetID":69685,"Directional":true}]},{"ID":15625,"SourceStructureID":67474,"TargetStructureID":593,"Label":"67474-593 via Conventional from 67477 -> 67475","Type":"Conventional","Directional":true,"Links":[{"SourceID":67477,"TargetID":67475,"Directional":true}]},{"ID":15626,"SourceStructureID":67478,"TargetStructureID":593,"Label":"67478-593 via Conventional from 67479 -> 67480","Type":"Conventional","Directional":true,"Links":[{"SourceID":67479,"TargetID":67480,"Directional":true}]},{"ID":15627,"SourceStructureID":67488,"TargetStructureID":593,"Label":"67488-593 via Conventional from 67489 -> 7813","Type":"Conventional","Directional":true,"Links":[{"SourceID":67489,"TargetID":7813,"Directional":true}]},{"ID":15628,"SourceStructureID":67491,"TargetStructureID":5283,"Label":"67491-5283 via Conventional from 123766 -> 28007","Type":"Conventional","Directional":true,"Links":[{"SourceID":123766,"TargetID":28007,"Directional":true}]},{"ID":15629,"SourceStructureID":67491,"TargetStructureID":67486,"Label":"67491-67486 via Conventional from 67492 -> 67490","Type":"Conventional","Directional":true,"Links":[{"SourceID":67492,"TargetID":67490,"Directional":true}]},{"ID":15630,"SourceStructureID":67500,"TargetStructureID":593,"Label":"67500-593 via Conventional from 67501 -> 7899","Type":"Conventional","Directional":true,"Links":[{"SourceID":67501,"TargetID":7899,"Directional":true}]},{"ID":15631,"SourceStructureID":67506,"TargetStructureID":593,"Label":"67506-593 via Conventional from 67511 -> 67510","Type":"Conventional","Directional":true,"Links":[{"SourceID":67511,"TargetID":67510,"Directional":true}]},{"ID":15632,"SourceStructureID":67508,"TargetStructureID":593,"Label":"67508-593 via Conventional from 88145 -> 7814","Type":"Conventional","Directional":true,"Links":[{"SourceID":88145,"TargetID":7814,"Directional":true}]},{"ID":15633,"SourceStructureID":67508,"TargetStructureID":8588,"Label":"67508-8588 via Conventional from 68899 -> 32715","Type":"Conventional","Directional":true,"Links":[{"SourceID":68899,"TargetID":32715,"Directional":true}]},{"ID":15634,"SourceStructureID":67508,"TargetStructureID":67522,"Label":"67508-67522 via Conventional from 67524 -> 67525","Type":"Conventional","Directional":true,"Links":[{"SourceID":67524,"TargetID":67525,"Directional":true}]},{"ID":15635,"SourceStructureID":67517,"TargetStructureID":61836,"Label":"67517-61836 via Conventional from 67518 -> 67516","Type":"Conventional","Directional":true,"Links":[{"SourceID":67518,"TargetID":67516,"Directional":true}]},{"ID":15636,"SourceStructureID":67520,"TargetStructureID":61923,"Label":"67520-61923 via Conventional from 68325 -> 61925","Type":"Conventional","Directional":true,"Links":[{"SourceID":68325,"TargetID":61925,"Directional":true}]},{"ID":15637,"SourceStructureID":67520,"TargetStructureID":67508,"Label":"67520-67508 via Conventional from 67521 -> 67519","Type":"Conventional","Directional":true,"Links":[{"SourceID":67521,"TargetID":67519,"Directional":true}]},{"ID":15638,"SourceStructureID":67526,"TargetStructureID":61836,"Label":"67526-61836 via Conventional from 67527 -> 67523","Type":"Conventional","Directional":true,"Links":[{"SourceID":67527,"TargetID":67523,"Directional":true}]},{"ID":15639,"SourceStructureID":67529,"TargetStructureID":593,"Label":"67529-593 via Conventional from 69357 -> 69359","Type":"Conventional","Directional":true,"Links":[{"SourceID":69357,"TargetID":69359,"Directional":true}]},{"ID":15640,"SourceStructureID":67529,"TargetStructureID":67508,"Label":"67529-67508 via Conventional from 67530 -> 67528","Type":"Conventional","Directional":true,"Links":[{"SourceID":67530,"TargetID":67528,"Directional":true}]},{"ID":15641,"SourceStructureID":67531,"TargetStructureID":593,"Label":"67531-593 via Conventional from 67535 -> 7826","Type":"Conventional","Directional":true,"Links":[{"SourceID":67535,"TargetID":7826,"Directional":true}]},{"ID":15642,"SourceStructureID":67548,"TargetStructureID":31161,"Label":"67548-31161 via Conventional from 67550 -> 31247","Type":"Conventional","Directional":true,"Links":[{"SourceID":67550,"TargetID":31247,"Directional":true}]},{"ID":15643,"SourceStructureID":67557,"TargetStructureID":593,"Label":"67557-593 via Conventional from 67558 -> 7824","Type":"Conventional","Directional":true,"Links":[{"SourceID":67558,"TargetID":7824,"Directional":true}]},{"ID":15644,"SourceStructureID":67572,"TargetStructureID":66768,"Label":"67572-66768 via Conventional from 67573 -> 67571","Type":"Conventional","Directional":true,"Links":[{"SourceID":67573,"TargetID":67571,"Directional":true}]},{"ID":15645,"SourceStructureID":67575,"TargetStructureID":593,"Label":"67575-593 via Conventional from 67583 -> 67584","Type":"Conventional","Directional":true,"Links":[{"SourceID":67583,"TargetID":67584,"Directional":true}]},{"ID":15646,"SourceStructureID":67575,"TargetStructureID":1724,"Label":"67575-1724 via Conventional from 68980 -> 4112","Type":"Conventional","Directional":true,"Links":[{"SourceID":68980,"TargetID":4112,"Directional":true}]},{"ID":15647,"SourceStructureID":67575,"TargetStructureID":5279,"Label":"67575-5279 via Conventional from 108361 -> 99111","Type":"Conventional","Directional":true,"Links":[{"SourceID":108361,"TargetID":99111,"Directional":true}]},{"ID":15648,"SourceStructureID":67575,"TargetStructureID":5513,"Label":"67575-5513 via Conventional from 68976 -> 46786","Type":"Conventional","Directional":true,"Links":[{"SourceID":68976,"TargetID":46786,"Directional":true}]},{"ID":15649,"SourceStructureID":67575,"TargetStructureID":67580,"Label":"67575-67580 via Conventional from 67579 -> 67581","Type":"Conventional","Directional":true,"Links":[{"SourceID":67579,"TargetID":67581,"Directional":true}]},{"ID":15650,"SourceStructureID":67575,"TargetStructureID":68974,"Label":"67575-68974 via Conventional from 68973 -> 68975","Type":"Conventional","Directional":true,"Links":[{"SourceID":68973,"TargetID":68975,"Directional":true}]},{"ID":15651,"SourceStructureID":67585,"TargetStructureID":593,"Label":"67585-593 via Conventional from 67593 -> 67594, 67597 -> 67598","Type":"Conventional","Directional":true,"Links":[{"SourceID":67593,"TargetID":67594,"Directional":true},{"SourceID":67597,"TargetID":67598,"Directional":true}]},{"ID":15652,"SourceStructureID":67585,"TargetStructureID":7024,"Label":"67585-7024 via Conventional from 67613 -> 67612","Type":"Conventional","Directional":true,"Links":[{"SourceID":67613,"TargetID":67612,"Directional":true}]},{"ID":15653,"SourceStructureID":67585,"TargetStructureID":67190,"Label":"67585-67190 via Conventional from 67602 -> 67192, 67625 -> 67194","Type":"Conventional","Directional":true,"Links":[{"SourceID":67602,"TargetID":67192,"Directional":true},{"SourceID":67625,"TargetID":67194,"Directional":true}]},{"ID":15654,"SourceStructureID":67585,"TargetStructureID":67606,"Label":"67585-67606 via Conventional from 67605 -> 67607","Type":"Conventional","Directional":true,"Links":[{"SourceID":67605,"TargetID":67607,"Directional":true}]},{"ID":15655,"SourceStructureID":67585,"TargetStructureID":67610,"Label":"67585-67610 via Conventional from 67609 -> 67611","Type":"Conventional","Directional":true,"Links":[{"SourceID":67609,"TargetID":67611,"Directional":true}]},{"ID":15656,"SourceStructureID":67585,"TargetStructureID":67615,"Label":"67585-67615 via Conventional from 67614 -> 67616","Type":"Conventional","Directional":true,"Links":[{"SourceID":67614,"TargetID":67616,"Directional":true}]},{"ID":15657,"SourceStructureID":67589,"TargetStructureID":67585,"Label":"67589-67585 via Conventional from 67590 -> 67588","Type":"Conventional","Directional":true,"Links":[{"SourceID":67590,"TargetID":67588,"Directional":true}]},{"ID":15658,"SourceStructureID":67591,"TargetStructureID":593,"Label":"67591-593 via Conventional from 67592 -> 7827","Type":"Conventional","Directional":true,"Links":[{"SourceID":67592,"TargetID":7827,"Directional":true}]},{"ID":15659,"SourceStructureID":67595,"TargetStructureID":593,"Label":"67595-593 via Conventional from 67596 -> 28445","Type":"Conventional","Directional":true,"Links":[{"SourceID":67596,"TargetID":28445,"Directional":true}]},{"ID":15660,"SourceStructureID":67595,"TargetStructureID":16026,"Label":"67595-16026 via Conventional from 67632 -> 67633","Type":"Conventional","Directional":true,"Links":[{"SourceID":67632,"TargetID":67633,"Directional":true}]},{"ID":15661,"SourceStructureID":67600,"TargetStructureID":67585,"Label":"67600-67585 via Conventional from 67601 -> 67599","Type":"Conventional","Directional":true,"Links":[{"SourceID":67601,"TargetID":67599,"Directional":true}]},{"ID":15662,"SourceStructureID":67610,"TargetStructureID":7594,"Label":"67610-7594 via Conventional from 67620 -> 25109","Type":"Conventional","Directional":true,"Links":[{"SourceID":67620,"TargetID":25109,"Directional":true}]},{"ID":15663,"SourceStructureID":67618,"TargetStructureID":67585,"Label":"67618-67585 via Conventional from 67619 -> 67617","Type":"Conventional","Directional":true,"Links":[{"SourceID":67619,"TargetID":67617,"Directional":true}]},{"ID":15664,"SourceStructureID":67621,"TargetStructureID":67585,"Label":"67621-67585 via Conventional from 67622 -> 67623","Type":"Conventional","Directional":true,"Links":[{"SourceID":67622,"TargetID":67623,"Directional":true}]},{"ID":15665,"SourceStructureID":67626,"TargetStructureID":593,"Label":"67626-593 via Conventional from 67627 -> 28446","Type":"Conventional","Directional":true,"Links":[{"SourceID":67627,"TargetID":28446,"Directional":true}]},{"ID":15666,"SourceStructureID":67644,"TargetStructureID":67595,"Label":"67644-67595 via Conventional from 67645 -> 67643","Type":"Conventional","Directional":true,"Links":[{"SourceID":67645,"TargetID":67643,"Directional":true}]},{"ID":15667,"SourceStructureID":67652,"TargetStructureID":67595,"Label":"67652-67595 via Conventional from 67653 -> 67651","Type":"Conventional","Directional":true,"Links":[{"SourceID":67653,"TargetID":67651,"Directional":true}]},{"ID":15668,"SourceStructureID":67654,"TargetStructureID":67595,"Label":"67654-67595 via Conventional from 67655 -> 67656","Type":"Conventional","Directional":true,"Links":[{"SourceID":67655,"TargetID":67656,"Directional":true}]},{"ID":15669,"SourceStructureID":67669,"TargetStructureID":67663,"Label":"67669-67663 via Conventional from 67670 -> 67668","Type":"Conventional","Directional":true,"Links":[{"SourceID":67670,"TargetID":67668,"Directional":true}]},{"ID":15670,"SourceStructureID":67671,"TargetStructureID":5645,"Label":"67671-5645 via Conventional from 78069 -> 78070","Type":"Conventional","Directional":true,"Links":[{"SourceID":78069,"TargetID":78070,"Directional":true}]},{"ID":15671,"SourceStructureID":67671,"TargetStructureID":5649,"Label":"67671-5649 via Conventional from 76882 -> 76883, 77384 -> 54036","Type":"Conventional","Directional":true,"Links":[{"SourceID":76882,"TargetID":76883,"Directional":true},{"SourceID":77384,"TargetID":54036,"Directional":true}]},{"ID":15672,"SourceStructureID":67671,"TargetStructureID":6142,"Label":"67671-6142 via Conventional from 78281 -> 78282","Type":"Conventional","Directional":true,"Links":[{"SourceID":78281,"TargetID":78282,"Directional":true}]},{"ID":15673,"SourceStructureID":67671,"TargetStructureID":16087,"Label":"67671-16087 via Conventional from 77702 -> 16097, 78037 -> 16100","Type":"Conventional","Directional":true,"Links":[{"SourceID":77702,"TargetID":16097,"Directional":true},{"SourceID":78037,"TargetID":16100,"Directional":true}]},{"ID":15674,"SourceStructureID":67671,"TargetStructureID":67663,"Label":"67671-67663 via Conventional from 67672 -> 67673","Type":"Conventional","Directional":true,"Links":[{"SourceID":67672,"TargetID":67673,"Directional":true}]},{"ID":15675,"SourceStructureID":67671,"TargetStructureID":67671,"Label":"67671-67671 via Conventional from 78209 -> 78210","Type":"Conventional","Directional":true,"Links":[{"SourceID":78209,"TargetID":78210,"Directional":true}]},{"ID":15676,"SourceStructureID":67671,"TargetStructureID":77359,"Label":"67671-77359 via Conventional from 77360 -> 77361","Type":"Conventional","Directional":true,"Links":[{"SourceID":77360,"TargetID":77361,"Directional":true}]},{"ID":15677,"SourceStructureID":67671,"TargetStructureID":77688,"Label":"67671-77688 via Conventional from 77689 -> 77690","Type":"Conventional","Directional":true,"Links":[{"SourceID":77689,"TargetID":77690,"Directional":true}]},{"ID":15678,"SourceStructureID":67671,"TargetStructureID":78083,"Label":"67671-78083 via Conventional from 78082 -> 78085","Type":"Conventional","Directional":true,"Links":[{"SourceID":78082,"TargetID":78085,"Directional":true}]},{"ID":15679,"SourceStructureID":67671,"TargetStructureID":78214,"Label":"67671-78214 via Conventional from 78215 -> 78216","Type":"Conventional","Directional":true,"Links":[{"SourceID":78215,"TargetID":78216,"Directional":true}]},{"ID":15680,"SourceStructureID":67683,"TargetStructureID":593,"Label":"67683-593 via Conventional from 69384 -> 7734","Type":"Conventional","Directional":true,"Links":[{"SourceID":69384,"TargetID":7734,"Directional":true}]},{"ID":15681,"SourceStructureID":67683,"TargetStructureID":31161,"Label":"67683-31161 via Conventional from 67688 -> 31237","Type":"Conventional","Directional":true,"Links":[{"SourceID":67688,"TargetID":31237,"Directional":true}]},{"ID":15682,"SourceStructureID":67683,"TargetStructureID":67686,"Label":"67683-67686 via Conventional from 67685 -> 67687","Type":"Conventional","Directional":true,"Links":[{"SourceID":67685,"TargetID":67687,"Directional":true}]},{"ID":15683,"SourceStructureID":67701,"TargetStructureID":67705,"Label":"67701-67705 via Conventional from 67704 -> 67706, 75717 -> 75718","Type":"Conventional","Directional":true,"Links":[{"SourceID":67704,"TargetID":67706,"Directional":true},{"SourceID":75717,"TargetID":75718,"Directional":true}]},{"ID":15684,"SourceStructureID":67705,"TargetStructureID":593,"Label":"67705-593 via Conventional from 67707 -> 67708","Type":"Conventional","Directional":true,"Links":[{"SourceID":67707,"TargetID":67708,"Directional":true}]},{"ID":15685,"SourceStructureID":67705,"TargetStructureID":5562,"Label":"67705-5562 via Conventional from 81793 -> 63253, 81798 -> 77544","Type":"Conventional","Directional":true,"Links":[{"SourceID":81793,"TargetID":63253,"Directional":true},{"SourceID":81798,"TargetID":77544,"Directional":true}]},{"ID":15686,"SourceStructureID":67711,"TargetStructureID":593,"Label":"67711-593 via Conventional from 67712 -> 67713","Type":"Conventional","Directional":true,"Links":[{"SourceID":67712,"TargetID":67713,"Directional":true}]},{"ID":15687,"SourceStructureID":67711,"TargetStructureID":67715,"Label":"67711-67715 via Conventional from 67714 -> 67716","Type":"Conventional","Directional":true,"Links":[{"SourceID":67714,"TargetID":67716,"Directional":true}]},{"ID":15688,"SourceStructureID":67720,"TargetStructureID":67711,"Label":"67720-67711 via Conventional from 67721 -> 67719","Type":"Conventional","Directional":true,"Links":[{"SourceID":67721,"TargetID":67719,"Directional":true}]},{"ID":15689,"SourceStructureID":67736,"TargetStructureID":8580,"Label":"67736-8580 via Conventional from 67741 -> 67742","Type":"Conventional","Directional":true,"Links":[{"SourceID":67741,"TargetID":67742,"Directional":true}]},{"ID":15690,"SourceStructureID":67736,"TargetStructureID":66958,"Label":"67736-66958 via Conventional from 67748 -> 70033","Type":"Conventional","Directional":true,"Links":[{"SourceID":67748,"TargetID":70033,"Directional":true}]},{"ID":15691,"SourceStructureID":67736,"TargetStructureID":67752,"Label":"67736-67752 via Conventional from 67751 -> 67753","Type":"Conventional","Directional":true,"Links":[{"SourceID":67751,"TargetID":67753,"Directional":true}]},{"ID":15692,"SourceStructureID":67736,"TargetStructureID":68202,"Label":"67736-68202 via Conventional from 67748 -> 68204","Type":"Conventional","Directional":true,"Links":[{"SourceID":67748,"TargetID":68204,"Directional":true}]},{"ID":15693,"SourceStructureID":67756,"TargetStructureID":593,"Label":"67756-593 via Conventional from 67964 -> 7737","Type":"Conventional","Directional":true,"Links":[{"SourceID":67964,"TargetID":7737,"Directional":true}]},{"ID":15694,"SourceStructureID":67756,"TargetStructureID":66958,"Label":"67756-66958 via Conventional from 67757 -> 70024","Type":"Conventional","Directional":true,"Links":[{"SourceID":67757,"TargetID":70024,"Directional":true}]},{"ID":15695,"SourceStructureID":67762,"TargetStructureID":66958,"Label":"67762-66958 via Conventional from 67763 -> 70030","Type":"Conventional","Directional":true,"Links":[{"SourceID":67763,"TargetID":70030,"Directional":true}]},{"ID":15696,"SourceStructureID":67762,"TargetStructureID":67671,"Label":"67762-67671 via Conventional from 67773 -> 78878","Type":"Conventional","Directional":true,"Links":[{"SourceID":67773,"TargetID":78878,"Directional":true}]},{"ID":15697,"SourceStructureID":67762,"TargetStructureID":67765,"Label":"67762-67765 via Conventional from 67764 -> 67766","Type":"Conventional","Directional":true,"Links":[{"SourceID":67764,"TargetID":67766,"Directional":true}]},{"ID":15698,"SourceStructureID":67768,"TargetStructureID":67765,"Label":"67768-67765 via Conventional from 67769 -> 67767","Type":"Conventional","Directional":true,"Links":[{"SourceID":67769,"TargetID":67767,"Directional":true}]},{"ID":15699,"SourceStructureID":67784,"TargetStructureID":67789,"Label":"67784-67789 via Conventional from 67790 -> 67791","Type":"Conventional","Directional":true,"Links":[{"SourceID":67790,"TargetID":67791,"Directional":true}]},{"ID":15700,"SourceStructureID":67786,"TargetStructureID":67784,"Label":"67786-67784 via Conventional from 67787 -> 67788","Type":"Conventional","Directional":true,"Links":[{"SourceID":67787,"TargetID":67788,"Directional":true}]},{"ID":15701,"SourceStructureID":67806,"TargetStructureID":54078,"Label":"67806-54078 via Conventional from 67807 -> 67808","Type":"Conventional","Directional":true,"Links":[{"SourceID":67807,"TargetID":67808,"Directional":true}]},{"ID":15702,"SourceStructureID":67809,"TargetStructureID":593,"Label":"67809-593 via Conventional from 67810 -> 7833","Type":"Conventional","Directional":true,"Links":[{"SourceID":67810,"TargetID":7833,"Directional":true}]},{"ID":15703,"SourceStructureID":67815,"TargetStructureID":593,"Label":"67815-593 via Conventional from 67816 -> 7834","Type":"Conventional","Directional":true,"Links":[{"SourceID":67816,"TargetID":7834,"Directional":true}]},{"ID":15704,"SourceStructureID":67818,"TargetStructureID":593,"Label":"67818-593 via Conventional from 67819 -> 67817","Type":"Conventional","Directional":true,"Links":[{"SourceID":67819,"TargetID":67817,"Directional":true}]},{"ID":15705,"SourceStructureID":67818,"TargetStructureID":16026,"Label":"67818-16026 via Conventional from 67909 -> 67910","Type":"Conventional","Directional":true,"Links":[{"SourceID":67909,"TargetID":67910,"Directional":true}]},{"ID":15706,"SourceStructureID":67823,"TargetStructureID":593,"Label":"67823-593 via Conventional from 67824 -> 28409","Type":"Conventional","Directional":true,"Links":[{"SourceID":67824,"TargetID":28409,"Directional":true}]},{"ID":15707,"SourceStructureID":67827,"TargetStructureID":593,"Label":"67827-593 via Conventional from 67828 -> 28410","Type":"Conventional","Directional":true,"Links":[{"SourceID":67828,"TargetID":28410,"Directional":true}]},{"ID":15708,"SourceStructureID":67829,"TargetStructureID":593,"Label":"67829-593 via Conventional from 67830 -> 62881","Type":"Conventional","Directional":true,"Links":[{"SourceID":67830,"TargetID":62881,"Directional":true}]},{"ID":15709,"SourceStructureID":67829,"TargetStructureID":67812,"Label":"67829-67812 via Conventional from 67831 -> 67832","Type":"Conventional","Directional":true,"Links":[{"SourceID":67831,"TargetID":67832,"Directional":true}]},{"ID":15710,"SourceStructureID":67829,"TargetStructureID":82201,"Label":"67829-82201 via Conventional from 82200 -> 82202","Type":"Conventional","Directional":true,"Links":[{"SourceID":82200,"TargetID":82202,"Directional":true}]},{"ID":15711,"SourceStructureID":67833,"TargetStructureID":593,"Label":"67833-593 via Conventional from 67834 -> 28412","Type":"Conventional","Directional":true,"Links":[{"SourceID":67834,"TargetID":28412,"Directional":true}]},{"ID":15712,"SourceStructureID":67833,"TargetStructureID":68009,"Label":"67833-68009 via Conventional from 67838 -> 68012","Type":"Conventional","Directional":true,"Links":[{"SourceID":67838,"TargetID":68012,"Directional":true}]},{"ID":15713,"SourceStructureID":67836,"TargetStructureID":67833,"Label":"67836-67833 via Conventional from 67837 -> 67835","Type":"Conventional","Directional":true,"Links":[{"SourceID":67837,"TargetID":67835,"Directional":true}]},{"ID":15714,"SourceStructureID":67846,"TargetStructureID":593,"Label":"67846-593 via Conventional from 67847 -> 67845","Type":"Conventional","Directional":true,"Links":[{"SourceID":67847,"TargetID":67845,"Directional":true}]},{"ID":15715,"SourceStructureID":67851,"TargetStructureID":8580,"Label":"67851-8580 via Conventional from 67855 -> 59656","Type":"Conventional","Directional":true,"Links":[{"SourceID":67855,"TargetID":59656,"Directional":true}]},{"ID":15716,"SourceStructureID":67851,"TargetStructureID":54078,"Label":"67851-54078 via Conventional from 67852 -> 67850","Type":"Conventional","Directional":true,"Links":[{"SourceID":67852,"TargetID":67850,"Directional":true}]},{"ID":15717,"SourceStructureID":67854,"TargetStructureID":593,"Label":"67854-593 via Conventional from 67856 -> 52489","Type":"Conventional","Directional":true,"Links":[{"SourceID":67856,"TargetID":52489,"Directional":true}]},{"ID":15718,"SourceStructureID":67868,"TargetStructureID":593,"Label":"67868-593 via Conventional from 67869 -> 67870","Type":"Conventional","Directional":true,"Links":[{"SourceID":67869,"TargetID":67870,"Directional":true}]},{"ID":15719,"SourceStructureID":67871,"TargetStructureID":593,"Label":"67871-593 via Conventional from 67882 -> 7837","Type":"Conventional","Directional":true,"Links":[{"SourceID":67882,"TargetID":7837,"Directional":true}]},{"ID":15720,"SourceStructureID":67883,"TargetStructureID":593,"Label":"67883-593 via Conventional from 67884 -> 67885","Type":"Conventional","Directional":true,"Links":[{"SourceID":67884,"TargetID":67885,"Directional":true}]},{"ID":15721,"SourceStructureID":67886,"TargetStructureID":593,"Label":"67886-593 via Conventional from 67889 -> 7839","Type":"Conventional","Directional":true,"Links":[{"SourceID":67889,"TargetID":7839,"Directional":true}]},{"ID":15722,"SourceStructureID":67890,"TargetStructureID":593,"Label":"67890-593 via Conventional from 67891 -> 7841","Type":"Conventional","Directional":true,"Links":[{"SourceID":67891,"TargetID":7841,"Directional":true}]},{"ID":15723,"SourceStructureID":67894,"TargetStructureID":593,"Label":"67894-593 via Conventional from 67895 -> 67896","Type":"Conventional","Directional":true,"Links":[{"SourceID":67895,"TargetID":67896,"Directional":true}]},{"ID":15724,"SourceStructureID":67894,"TargetStructureID":5649,"Label":"67894-5649 via Conventional from 82236 -> 68110","Type":"Conventional","Directional":true,"Links":[{"SourceID":82236,"TargetID":68110,"Directional":true}]},{"ID":15725,"SourceStructureID":67915,"TargetStructureID":593,"Label":"67915-593 via Conventional from 67928 -> 67929","Type":"Conventional","Directional":true,"Links":[{"SourceID":67928,"TargetID":67929,"Directional":true}]},{"ID":15726,"SourceStructureID":67915,"TargetStructureID":67932,"Label":"67915-67932 via Conventional from 67930 -> 67935","Type":"Conventional","Directional":true,"Links":[{"SourceID":67930,"TargetID":67935,"Directional":true}]},{"ID":15727,"SourceStructureID":67915,"TargetStructureID":82241,"Label":"67915-82241 via Conventional from 82240 -> 82242","Type":"Conventional","Directional":true,"Links":[{"SourceID":82240,"TargetID":82242,"Directional":true}]},{"ID":15728,"SourceStructureID":67918,"TargetStructureID":20136,"Label":"67918-20136 via Conventional from 67949 -> 29143","Type":"Conventional","Directional":true,"Links":[{"SourceID":67949,"TargetID":29143,"Directional":true}]},{"ID":15729,"SourceStructureID":67933,"TargetStructureID":67937,"Label":"67933-67937 via Conventional from 67936 -> 67938","Type":"Conventional","Directional":true,"Links":[{"SourceID":67936,"TargetID":67938,"Directional":true}]},{"ID":15730,"SourceStructureID":67947,"TargetStructureID":593,"Label":"67947-593 via Conventional from 68086 -> 53821","Type":"Conventional","Directional":true,"Links":[{"SourceID":68086,"TargetID":53821,"Directional":true}]},{"ID":15731,"SourceStructureID":67947,"TargetStructureID":16026,"Label":"67947-16026 via Conventional from 68088 -> 25670","Type":"Conventional","Directional":true,"Links":[{"SourceID":68088,"TargetID":25670,"Directional":true}]},{"ID":15732,"SourceStructureID":67952,"TargetStructureID":593,"Label":"67952-593 via Conventional from 67954 -> 7739","Type":"Conventional","Directional":true,"Links":[{"SourceID":67954,"TargetID":7739,"Directional":true}]},{"ID":15733,"SourceStructureID":67970,"TargetStructureID":593,"Label":"67970-593 via Conventional from 67971 -> 67972","Type":"Conventional","Directional":true,"Links":[{"SourceID":67971,"TargetID":67972,"Directional":true}]},{"ID":15734,"SourceStructureID":67978,"TargetStructureID":593,"Label":"67978-593 via Conventional from 67979 -> 67980","Type":"Conventional","Directional":true,"Links":[{"SourceID":67979,"TargetID":67980,"Directional":true}]},{"ID":15735,"SourceStructureID":67983,"TargetStructureID":593,"Label":"67983-593 via Conventional from 67984 -> 67985","Type":"Conventional","Directional":true,"Links":[{"SourceID":67984,"TargetID":67985,"Directional":true}]},{"ID":15736,"SourceStructureID":67983,"TargetStructureID":67981,"Label":"67983-67981 via Conventional from 67988 -> 67989","Type":"Conventional","Directional":true,"Links":[{"SourceID":67988,"TargetID":67989,"Directional":true}]},{"ID":15737,"SourceStructureID":67996,"TargetStructureID":67999,"Label":"67996-67999 via Conventional from 67998 -> 68000","Type":"Conventional","Directional":true,"Links":[{"SourceID":67998,"TargetID":68000,"Directional":true}]},{"ID":15738,"SourceStructureID":67999,"TargetStructureID":87972,"Label":"67999-87972 via Conventional from 68001 -> 88010","Type":"Conventional","Directional":true,"Links":[{"SourceID":68001,"TargetID":88010,"Directional":true}]},{"ID":15739,"SourceStructureID":68003,"TargetStructureID":593,"Label":"68003-593 via Conventional from 68004 -> 52486","Type":"Conventional","Directional":true,"Links":[{"SourceID":68004,"TargetID":52486,"Directional":true}]},{"ID":15740,"SourceStructureID":68003,"TargetStructureID":67829,"Label":"68003-67829 via Conventional from 68005 -> 82199","Type":"Conventional","Directional":true,"Links":[{"SourceID":68005,"TargetID":82199,"Directional":true}]},{"ID":15741,"SourceStructureID":68009,"TargetStructureID":593,"Label":"68009-593 via Conventional from 68013 -> 52485","Type":"Conventional","Directional":true,"Links":[{"SourceID":68013,"TargetID":52485,"Directional":true}]},{"ID":15742,"SourceStructureID":68009,"TargetStructureID":69003,"Label":"68009-69003 via Conventional from 69004 -> 69005","Type":"Conventional","Directional":true,"Links":[{"SourceID":69004,"TargetID":69005,"Directional":true}]},{"ID":15743,"SourceStructureID":68020,"TargetStructureID":593,"Label":"68020-593 via Conventional from 68021 -> 68022","Type":"Conventional","Directional":true,"Links":[{"SourceID":68021,"TargetID":68022,"Directional":true}]},{"ID":15744,"SourceStructureID":68023,"TargetStructureID":593,"Label":"68023-593 via Conventional from 68024 -> 68025","Type":"Conventional","Directional":true,"Links":[{"SourceID":68024,"TargetID":68025,"Directional":true}]},{"ID":15745,"SourceStructureID":68023,"TargetStructureID":68031,"Label":"68023-68031 via Conventional from 68034 -> 68035","Type":"Conventional","Directional":true,"Links":[{"SourceID":68034,"TargetID":68035,"Directional":true}]},{"ID":15746,"SourceStructureID":68031,"TargetStructureID":68037,"Label":"68031-68037 via Conventional from 68036 -> 68038","Type":"Conventional","Directional":true,"Links":[{"SourceID":68036,"TargetID":68038,"Directional":true}]},{"ID":15747,"SourceStructureID":68042,"TargetStructureID":6156,"Label":"68042-6156 via Conventional from 68052 -> 68053","Type":"Conventional","Directional":true,"Links":[{"SourceID":68052,"TargetID":68053,"Directional":true}]},{"ID":15748,"SourceStructureID":68042,"TargetStructureID":10897,"Label":"68042-10897 via Conventional from 68044 -> 68045, 68046 -> 68047","Type":"Conventional","Directional":true,"Links":[{"SourceID":68044,"TargetID":68045,"Directional":true},{"SourceID":68046,"TargetID":68047,"Directional":true}]},{"ID":15749,"SourceStructureID":68056,"TargetStructureID":593,"Label":"68056-593 via Conventional from 68057 -> 68058","Type":"Conventional","Directional":true,"Links":[{"SourceID":68057,"TargetID":68058,"Directional":true}]},{"ID":15750,"SourceStructureID":68068,"TargetStructureID":593,"Label":"68068-593 via Conventional from 68069 -> 68070","Type":"Conventional","Directional":true,"Links":[{"SourceID":68069,"TargetID":68070,"Directional":true}]},{"ID":15751,"SourceStructureID":68072,"TargetStructureID":593,"Label":"68072-593 via Conventional from 68076 -> 52480","Type":"Conventional","Directional":true,"Links":[{"SourceID":68076,"TargetID":52480,"Directional":true}]},{"ID":15752,"SourceStructureID":68093,"TargetStructureID":5284,"Label":"68093-5284 via Conventional from 68129 -> 68131","Type":"Conventional","Directional":true,"Links":[{"SourceID":68129,"TargetID":68131,"Directional":true}]},{"ID":15753,"SourceStructureID":68096,"TargetStructureID":68093,"Label":"68096-68093 via Conventional from 68097 -> 68095","Type":"Conventional","Directional":true,"Links":[{"SourceID":68097,"TargetID":68095,"Directional":true}]},{"ID":15754,"SourceStructureID":68144,"TargetStructureID":593,"Label":"68144-593 via Conventional from 68145 -> 68146","Type":"Conventional","Directional":true,"Links":[{"SourceID":68145,"TargetID":68146,"Directional":true}]},{"ID":15755,"SourceStructureID":68144,"TargetStructureID":68148,"Label":"68144-68148 via Conventional from 68147 -> 68149","Type":"Conventional","Directional":true,"Links":[{"SourceID":68147,"TargetID":68149,"Directional":true}]},{"ID":15756,"SourceStructureID":68161,"TargetStructureID":68153,"Label":"68161-68153 via Conventional from 68165 -> 68166","Type":"Conventional","Directional":true,"Links":[{"SourceID":68165,"TargetID":68166,"Directional":true}]},{"ID":15757,"SourceStructureID":68183,"TargetStructureID":68153,"Label":"68183-68153 via Conventional from 68184 -> 68182","Type":"Conventional","Directional":true,"Links":[{"SourceID":68184,"TargetID":68182,"Directional":true}]},{"ID":15758,"SourceStructureID":68188,"TargetStructureID":68192,"Label":"68188-68192 via Conventional from 68191 -> 68193","Type":"Conventional","Directional":true,"Links":[{"SourceID":68191,"TargetID":68193,"Directional":true}]},{"ID":15759,"SourceStructureID":68195,"TargetStructureID":68188,"Label":"68195-68188 via Conventional from 68196 -> 68194","Type":"Conventional","Directional":true,"Links":[{"SourceID":68196,"TargetID":68194,"Directional":true}]},{"ID":15760,"SourceStructureID":68202,"TargetStructureID":593,"Label":"68202-593 via Conventional from 68203 -> 53819","Type":"Conventional","Directional":true,"Links":[{"SourceID":68203,"TargetID":53819,"Directional":true}]},{"ID":15761,"SourceStructureID":68210,"TargetStructureID":593,"Label":"68210-593 via Conventional from 68211 -> 68212, 68216 -> 7765","Type":"Conventional","Directional":true,"Links":[{"SourceID":68211,"TargetID":68212,"Directional":true},{"SourceID":68216,"TargetID":7765,"Directional":true}]},{"ID":15762,"SourceStructureID":68214,"TargetStructureID":68210,"Label":"68214-68210 via Adherens from 68215 -> 68213","Type":"Adherens","Directional":true,"Links":[{"SourceID":68215,"TargetID":68213,"Directional":true}]},{"ID":15763,"SourceStructureID":68232,"TargetStructureID":593,"Label":"68232-593 via Conventional from 68233 -> 68234","Type":"Conventional","Directional":true,"Links":[{"SourceID":68233,"TargetID":68234,"Directional":true}]},{"ID":15764,"SourceStructureID":68232,"TargetStructureID":6156,"Label":"68232-6156 via Conventional from 82304 -> 28687","Type":"Conventional","Directional":true,"Links":[{"SourceID":82304,"TargetID":28687,"Directional":true}]},{"ID":15765,"SourceStructureID":68232,"TargetStructureID":68087,"Label":"68232-68087 via Conventional from 68235 -> 68229","Type":"Conventional","Directional":true,"Links":[{"SourceID":68235,"TargetID":68229,"Directional":true}]},{"ID":15766,"SourceStructureID":68232,"TargetStructureID":68655,"Label":"68232-68655 via Conventional from 68654 -> 68656","Type":"Conventional","Directional":true,"Links":[{"SourceID":68654,"TargetID":68656,"Directional":true}]},{"ID":15767,"SourceStructureID":68232,"TargetStructureID":82302,"Label":"68232-82302 via Conventional from 82301 -> 82303","Type":"Conventional","Directional":true,"Links":[{"SourceID":82301,"TargetID":82303,"Directional":true}]},{"ID":15768,"SourceStructureID":68238,"TargetStructureID":593,"Label":"68238-593 via Conventional from 68240 -> 52468","Type":"Conventional","Directional":true,"Links":[{"SourceID":68240,"TargetID":52468,"Directional":true}]},{"ID":15769,"SourceStructureID":68239,"TargetStructureID":5117,"Label":"68239-5117 via Conventional from 68247 -> 61806","Type":"Conventional","Directional":true,"Links":[{"SourceID":68247,"TargetID":61806,"Directional":true}]},{"ID":15770,"SourceStructureID":68249,"TargetStructureID":593,"Label":"68249-593 via Conventional from 68250 -> 68251","Type":"Conventional","Directional":true,"Links":[{"SourceID":68250,"TargetID":68251,"Directional":true}]},{"ID":15771,"SourceStructureID":68249,"TargetStructureID":8588,"Label":"68249-8588 via Conventional from 82284 -> 82285","Type":"Conventional","Directional":true,"Links":[{"SourceID":82284,"TargetID":82285,"Directional":true}]},{"ID":15772,"SourceStructureID":68249,"TargetStructureID":82281,"Label":"68249-82281 via Conventional from 82280 -> 82282","Type":"Conventional","Directional":true,"Links":[{"SourceID":82280,"TargetID":82282,"Directional":true}]},{"ID":15773,"SourceStructureID":68261,"TargetStructureID":593,"Label":"68261-593 via Conventional from 68262 -> 68260","Type":"Conventional","Directional":true,"Links":[{"SourceID":68262,"TargetID":68260,"Directional":true}]},{"ID":15774,"SourceStructureID":68263,"TargetStructureID":593,"Label":"68263-593 via Conventional from 68264 -> 68265","Type":"Conventional","Directional":true,"Links":[{"SourceID":68264,"TargetID":68265,"Directional":true}]},{"ID":15775,"SourceStructureID":68266,"TargetStructureID":593,"Label":"68266-593 via Conventional from 68267 -> 68268","Type":"Conventional","Directional":true,"Links":[{"SourceID":68267,"TargetID":68268,"Directional":true}]},{"ID":15776,"SourceStructureID":68266,"TargetStructureID":6156,"Label":"68266-6156 via Conventional from 68270 -> 68271","Type":"Conventional","Directional":true,"Links":[{"SourceID":68270,"TargetID":68271,"Directional":true}]},{"ID":15777,"SourceStructureID":68273,"TargetStructureID":593,"Label":"68273-593 via Conventional from 68274 -> 68276","Type":"Conventional","Directional":true,"Links":[{"SourceID":68274,"TargetID":68276,"Directional":true}]},{"ID":15778,"SourceStructureID":68282,"TargetStructureID":593,"Label":"68282-593 via Conventional from 68283 -> 52450","Type":"Conventional","Directional":true,"Links":[{"SourceID":68283,"TargetID":52450,"Directional":true}]},{"ID":15779,"SourceStructureID":68282,"TargetStructureID":6997,"Label":"68282-6997 via Conventional from 82365 -> 28711","Type":"Conventional","Directional":true,"Links":[{"SourceID":82365,"TargetID":28711,"Directional":true}]},{"ID":15780,"SourceStructureID":68286,"TargetStructureID":593,"Label":"68286-593 via Conventional from 68287 -> 68288","Type":"Conventional","Directional":true,"Links":[{"SourceID":68287,"TargetID":68288,"Directional":true}]},{"ID":15781,"SourceStructureID":68286,"TargetStructureID":6997,"Label":"68286-6997 via Conventional from 80649 -> 28709, 80668 -> 95489","Type":"Conventional","Directional":true,"Links":[{"SourceID":80649,"TargetID":28709,"Directional":true},{"SourceID":80668,"TargetID":95489,"Directional":true}]},{"ID":15782,"SourceStructureID":68286,"TargetStructureID":80663,"Label":"68286-80663 via Conventional from 80662 -> 80664","Type":"Conventional","Directional":true,"Links":[{"SourceID":80662,"TargetID":80664,"Directional":true}]},{"ID":15783,"SourceStructureID":68289,"TargetStructureID":593,"Label":"68289-593 via Conventional from 68290 -> 68291","Type":"Conventional","Directional":true,"Links":[{"SourceID":68290,"TargetID":68291,"Directional":true}]},{"ID":15784,"SourceStructureID":68292,"TargetStructureID":593,"Label":"68292-593 via Conventional from 68294 -> 68295, 87617 -> 87618","Type":"Conventional","Directional":true,"Links":[{"SourceID":68294,"TargetID":68295,"Directional":true},{"SourceID":87617,"TargetID":87618,"Directional":true}]},{"ID":15785,"SourceStructureID":68296,"TargetStructureID":593,"Label":"68296-593 via Conventional from 68298 -> 68299","Type":"Conventional","Directional":true,"Links":[{"SourceID":68298,"TargetID":68299,"Directional":true}]},{"ID":15786,"SourceStructureID":68302,"TargetStructureID":593,"Label":"68302-593 via Conventional from 68303 -> 68304","Type":"Conventional","Directional":true,"Links":[{"SourceID":68303,"TargetID":68304,"Directional":true}]},{"ID":15787,"SourceStructureID":68302,"TargetStructureID":6997,"Label":"68302-6997 via Conventional from 80633 -> 61173, 82939 -> 22114, 136280 -> 136279","Type":"Conventional","Directional":true,"Links":[{"SourceID":80633,"TargetID":61173,"Directional":true},{"SourceID":82939,"TargetID":22114,"Directional":true},{"SourceID":136280,"TargetID":136279,"Directional":true}]},{"ID":15788,"SourceStructureID":68302,"TargetStructureID":68306,"Label":"68302-68306 via Conventional from 68305 -> 68307","Type":"Conventional","Directional":true,"Links":[{"SourceID":68305,"TargetID":68307,"Directional":true}]},{"ID":15789,"SourceStructureID":68302,"TargetStructureID":70868,"Label":"68302-70868 via Conventional from 82937 -> 70884","Type":"Conventional","Directional":true,"Links":[{"SourceID":82937,"TargetID":70884,"Directional":true}]},{"ID":15790,"SourceStructureID":68302,"TargetStructureID":78303,"Label":"68302-78303 via Conventional from 82928 -> 78304","Type":"Conventional","Directional":true,"Links":[{"SourceID":82928,"TargetID":78304,"Directional":true}]},{"ID":15791,"SourceStructureID":68318,"TargetStructureID":31024,"Label":"68318-31024 via Conventional from 68319 -> 31033","Type":"Conventional","Directional":true,"Links":[{"SourceID":68319,"TargetID":31033,"Directional":true}]},{"ID":15792,"SourceStructureID":68337,"TargetStructureID":61793,"Label":"68337-61793 via Conventional from 68338 -> 61796","Type":"Conventional","Directional":true,"Links":[{"SourceID":68338,"TargetID":61796,"Directional":true}]},{"ID":15793,"SourceStructureID":68341,"TargetStructureID":593,"Label":"68341-593 via Conventional from 68342 -> 7750","Type":"Conventional","Directional":true,"Links":[{"SourceID":68342,"TargetID":7750,"Directional":true}]},{"ID":15794,"SourceStructureID":68341,"TargetStructureID":67430,"Label":"68341-67430 via Conventional from 82732 -> 70031","Type":"Conventional","Directional":true,"Links":[{"SourceID":82732,"TargetID":70031,"Directional":true}]},{"ID":15795,"SourceStructureID":68341,"TargetStructureID":79586,"Label":"68341-79586 via Conventional from 80625 -> 79599","Type":"Conventional","Directional":true,"Links":[{"SourceID":80625,"TargetID":79599,"Directional":true}]},{"ID":15796,"SourceStructureID":68350,"TargetStructureID":593,"Label":"68350-593 via Conventional from 68351 -> 68349","Type":"Conventional","Directional":true,"Links":[{"SourceID":68351,"TargetID":68349,"Directional":true}]},{"ID":15797,"SourceStructureID":68350,"TargetStructureID":61791,"Label":"68350-61791 via Conventional from 80614 -> 68884","Type":"Conventional","Directional":true,"Links":[{"SourceID":80614,"TargetID":68884,"Directional":true}]},{"ID":15798,"SourceStructureID":68350,"TargetStructureID":80616,"Label":"68350-80616 via Conventional from 80615 -> 80617","Type":"Conventional","Directional":true,"Links":[{"SourceID":80615,"TargetID":80617,"Directional":true}]},{"ID":15799,"SourceStructureID":68356,"TargetStructureID":67291,"Label":"68356-67291 via Conventional from 68357 -> 68355","Type":"Conventional","Directional":true,"Links":[{"SourceID":68357,"TargetID":68355,"Directional":true}]},{"ID":15800,"SourceStructureID":68359,"TargetStructureID":67291,"Label":"68359-67291 via Conventional from 68360 -> 68358","Type":"Conventional","Directional":true,"Links":[{"SourceID":68360,"TargetID":68358,"Directional":true}]},{"ID":15801,"SourceStructureID":68366,"TargetStructureID":67291,"Label":"68366-67291 via Conventional from 68367 -> 68365","Type":"Conventional","Directional":true,"Links":[{"SourceID":68367,"TargetID":68365,"Directional":true}]},{"ID":15802,"SourceStructureID":68380,"TargetStructureID":66407,"Label":"68380-66407 via Conventional from 68381 -> 68379","Type":"Conventional","Directional":true,"Links":[{"SourceID":68381,"TargetID":68379,"Directional":true}]},{"ID":15803,"SourceStructureID":68391,"TargetStructureID":593,"Label":"68391-593 via Conventional from 68392 -> 15898","Type":"Conventional","Directional":true,"Links":[{"SourceID":68392,"TargetID":15898,"Directional":true}]},{"ID":15804,"SourceStructureID":68393,"TargetStructureID":593,"Label":"68393-593 via Conventional from 68394 -> 28398","Type":"Conventional","Directional":true,"Links":[{"SourceID":68394,"TargetID":28398,"Directional":true}]},{"ID":15805,"SourceStructureID":68393,"TargetStructureID":61868,"Label":"68393-61868 via Conventional from 80543 -> 82187","Type":"Conventional","Directional":true,"Links":[{"SourceID":80543,"TargetID":82187,"Directional":true}]},{"ID":15806,"SourceStructureID":68393,"TargetStructureID":80548,"Label":"68393-80548 via Conventional from 80547 -> 80549","Type":"Conventional","Directional":true,"Links":[{"SourceID":80547,"TargetID":80549,"Directional":true}]},{"ID":15807,"SourceStructureID":68395,"TargetStructureID":593,"Label":"68395-593 via Conventional from 68396 -> 28397","Type":"Conventional","Directional":true,"Links":[{"SourceID":68396,"TargetID":28397,"Directional":true}]},{"ID":15808,"SourceStructureID":68430,"TargetStructureID":593,"Label":"68430-593 via Conventional from 68431 -> 50437","Type":"Conventional","Directional":true,"Links":[{"SourceID":68431,"TargetID":50437,"Directional":true}]},{"ID":15809,"SourceStructureID":68444,"TargetStructureID":593,"Label":"68444-593 via Conventional from 68447 -> 28435","Type":"Conventional","Directional":true,"Links":[{"SourceID":68447,"TargetID":28435,"Directional":true}]},{"ID":15810,"SourceStructureID":68444,"TargetStructureID":5283,"Label":"68444-5283 via Conventional from 80426 -> 80427, 80474 -> 28090, 80480 -> 28093","Type":"Conventional","Directional":true,"Links":[{"SourceID":80426,"TargetID":80427,"Directional":true},{"SourceID":80474,"TargetID":28090,"Directional":true},{"SourceID":80480,"TargetID":28093,"Directional":true}]},{"ID":15811,"SourceStructureID":68444,"TargetStructureID":16026,"Label":"68444-16026 via Conventional from 80432 -> 24098","Type":"Conventional","Directional":true,"Links":[{"SourceID":80432,"TargetID":24098,"Directional":true}]},{"ID":15812,"SourceStructureID":68444,"TargetStructureID":43431,"Label":"68444-43431 via Conventional from 80457 -> 43443","Type":"Conventional","Directional":true,"Links":[{"SourceID":80457,"TargetID":43443,"Directional":true}]},{"ID":15813,"SourceStructureID":68444,"TargetStructureID":66111,"Label":"68444-66111 via Conventional from 68467 -> 68468","Type":"Conventional","Directional":true,"Links":[{"SourceID":68467,"TargetID":68468,"Directional":true}]},{"ID":15814,"SourceStructureID":68444,"TargetStructureID":68214,"Label":"68444-68214 via Conventional from 68445 -> 68446","Type":"Conventional","Directional":true,"Links":[{"SourceID":68445,"TargetID":68446,"Directional":true}]},{"ID":15815,"SourceStructureID":68444,"TargetStructureID":80453,"Label":"68444-80453 via Conventional from 80452 -> 80454","Type":"Conventional","Directional":true,"Links":[{"SourceID":80452,"TargetID":80454,"Directional":true}]},{"ID":15816,"SourceStructureID":68444,"TargetStructureID":80459,"Label":"68444-80459 via Conventional from 80458 -> 80460","Type":"Conventional","Directional":true,"Links":[{"SourceID":80458,"TargetID":80460,"Directional":true}]},{"ID":15817,"SourceStructureID":68456,"TargetStructureID":68453,"Label":"68456-68453 via Conventional from 68457 -> 68455","Type":"Conventional","Directional":true,"Links":[{"SourceID":68457,"TargetID":68455,"Directional":true}]},{"ID":15818,"SourceStructureID":68463,"TargetStructureID":593,"Label":"68463-593 via Conventional from 68464 -> 63030","Type":"Conventional","Directional":true,"Links":[{"SourceID":68464,"TargetID":63030,"Directional":true}]},{"ID":15819,"SourceStructureID":68480,"TargetStructureID":593,"Label":"68480-593 via Conventional from 68481 -> 63027, 84099 -> 63031, 84113 -> 49571","Type":"Conventional","Directional":true,"Links":[{"SourceID":68481,"TargetID":63027,"Directional":true},{"SourceID":84099,"TargetID":63031,"Directional":true},{"SourceID":84113,"TargetID":49571,"Directional":true}]},{"ID":15820,"SourceStructureID":68480,"TargetStructureID":5562,"Label":"68480-5562 via Conventional from 79634 -> 77571, 84035 -> 31294, 84046 -> 77148","Type":"Conventional","Directional":true,"Links":[{"SourceID":79634,"TargetID":77571,"Directional":true},{"SourceID":84035,"TargetID":31294,"Directional":true},{"SourceID":84046,"TargetID":77148,"Directional":true}]},{"ID":15821,"SourceStructureID":68480,"TargetStructureID":5916,"Label":"68480-5916 via Conventional from 83373 -> 83374","Type":"Conventional","Directional":true,"Links":[{"SourceID":83373,"TargetID":83374,"Directional":true}]},{"ID":15822,"SourceStructureID":68480,"TargetStructureID":16026,"Label":"68480-16026 via Conventional from 79616 -> 79617","Type":"Conventional","Directional":true,"Links":[{"SourceID":79616,"TargetID":79617,"Directional":true}]},{"ID":15823,"SourceStructureID":68480,"TargetStructureID":63199,"Label":"68480-63199 via Conventional from 83275 -> 83276","Type":"Conventional","Directional":true,"Links":[{"SourceID":83275,"TargetID":83276,"Directional":true}]},{"ID":15824,"SourceStructureID":68480,"TargetStructureID":77143,"Label":"68480-77143 via Conventional from 84042 -> 84043","Type":"Conventional","Directional":true,"Links":[{"SourceID":84042,"TargetID":84043,"Directional":true}]},{"ID":15825,"SourceStructureID":68486,"TargetStructureID":593,"Label":"68486-593 via Conventional from 68487 -> 7732","Type":"Conventional","Directional":true,"Links":[{"SourceID":68487,"TargetID":7732,"Directional":true}]},{"ID":15826,"SourceStructureID":68486,"TargetStructureID":31161,"Label":"68486-31161 via Conventional from 79605 -> 31238","Type":"Conventional","Directional":true,"Links":[{"SourceID":79605,"TargetID":31238,"Directional":true}]},{"ID":15827,"SourceStructureID":68486,"TargetStructureID":69537,"Label":"68486-69537 via Conventional from 79612 -> 79615","Type":"Conventional","Directional":true,"Links":[{"SourceID":79612,"TargetID":79615,"Directional":true}]},{"ID":15828,"SourceStructureID":68488,"TargetStructureID":593,"Label":"68488-593 via Conventional from 68489 -> 7730","Type":"Conventional","Directional":true,"Links":[{"SourceID":68489,"TargetID":7730,"Directional":true}]},{"ID":15829,"SourceStructureID":68492,"TargetStructureID":593,"Label":"68492-593 via Conventional from 68493 -> 7729","Type":"Conventional","Directional":true,"Links":[{"SourceID":68493,"TargetID":7729,"Directional":true}]},{"ID":15830,"SourceStructureID":68497,"TargetStructureID":593,"Label":"68497-593 via Conventional from 68498 -> 7728","Type":"Conventional","Directional":true,"Links":[{"SourceID":68498,"TargetID":7728,"Directional":true}]},{"ID":15831,"SourceStructureID":68497,"TargetStructureID":5107,"Label":"68497-5107 via Conventional from 81578 -> 43683","Type":"Conventional","Directional":true,"Links":[{"SourceID":81578,"TargetID":43683,"Directional":true}]},{"ID":15832,"SourceStructureID":68497,"TargetStructureID":5649,"Label":"68497-5649 via Conventional from 81583 -> 81585","Type":"Conventional","Directional":true,"Links":[{"SourceID":81583,"TargetID":81585,"Directional":true}]},{"ID":15833,"SourceStructureID":68497,"TargetStructureID":79319,"Label":"68497-79319 via Conventional from 79318 -> 79320","Type":"Conventional","Directional":true,"Links":[{"SourceID":79318,"TargetID":79320,"Directional":true}]},{"ID":15834,"SourceStructureID":68497,"TargetStructureID":79361,"Label":"68497-79361 via Conventional from 79360 -> 79362","Type":"Conventional","Directional":true,"Links":[{"SourceID":79360,"TargetID":79362,"Directional":true}]},{"ID":15835,"SourceStructureID":68497,"TargetStructureID":79373,"Label":"68497-79373 via Conventional from 79357 -> 81600","Type":"Conventional","Directional":true,"Links":[{"SourceID":79357,"TargetID":81600,"Directional":true}]},{"ID":15836,"SourceStructureID":68497,"TargetStructureID":79450,"Label":"68497-79450 via Conventional from 79445 -> 79451","Type":"Conventional","Directional":true,"Links":[{"SourceID":79445,"TargetID":79451,"Directional":true}]},{"ID":15837,"SourceStructureID":68497,"TargetStructureID":79453,"Label":"68497-79453 via Conventional from 79452 -> 79454","Type":"Conventional","Directional":true,"Links":[{"SourceID":79452,"TargetID":79454,"Directional":true}]},{"ID":15838,"SourceStructureID":68497,"TargetStructureID":79481,"Label":"68497-79481 via Conventional from 79480 -> 79482","Type":"Conventional","Directional":true,"Links":[{"SourceID":79480,"TargetID":79482,"Directional":true}]},{"ID":15839,"SourceStructureID":68497,"TargetStructureID":79484,"Label":"68497-79484 via Conventional from 79483 -> 79486","Type":"Conventional","Directional":true,"Links":[{"SourceID":79483,"TargetID":79486,"Directional":true}]},{"ID":15840,"SourceStructureID":68501,"TargetStructureID":593,"Label":"68501-593 via Conventional from 68502 -> 7742","Type":"Conventional","Directional":true,"Links":[{"SourceID":68502,"TargetID":7742,"Directional":true}]},{"ID":15841,"SourceStructureID":68504,"TargetStructureID":593,"Label":"68504-593 via Conventional from 68505 -> 7743","Type":"Conventional","Directional":true,"Links":[{"SourceID":68505,"TargetID":7743,"Directional":true}]},{"ID":15842,"SourceStructureID":68504,"TargetStructureID":16026,"Label":"68504-16026 via Conventional from 79250 -> 79251","Type":"Conventional","Directional":true,"Links":[{"SourceID":79250,"TargetID":79251,"Directional":true}]},{"ID":15843,"SourceStructureID":68516,"TargetStructureID":68524,"Label":"68516-68524 via Conventional from 68523 -> 68525","Type":"Conventional","Directional":true,"Links":[{"SourceID":68523,"TargetID":68525,"Directional":true}]},{"ID":15844,"SourceStructureID":68531,"TargetStructureID":68537,"Label":"68531-68537 via Conventional from 68536 -> 68538","Type":"Conventional","Directional":true,"Links":[{"SourceID":68536,"TargetID":68538,"Directional":true}]},{"ID":15845,"SourceStructureID":68539,"TargetStructureID":35894,"Label":"68539-35894 via Cistern Pre from 73057 -> 35924","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":73057,"TargetID":35924,"Directional":true}]},{"ID":15846,"SourceStructureID":68548,"TargetStructureID":5107,"Label":"68548-5107 via Conventional from 73165 -> 43679","Type":"Conventional","Directional":true,"Links":[{"SourceID":73165,"TargetID":43679,"Directional":true}]},{"ID":15847,"SourceStructureID":68548,"TargetStructureID":6115,"Label":"68548-6115 via Adherens from 75996 -> 75997","Type":"Adherens","Directional":true,"Links":[{"SourceID":75996,"TargetID":75997,"Directional":true}]},{"ID":15848,"SourceStructureID":68548,"TargetStructureID":7594,"Label":"68548-7594 via Conventional from 73161 -> 25094","Type":"Conventional","Directional":true,"Links":[{"SourceID":73161,"TargetID":25094,"Directional":true}]},{"ID":15849,"SourceStructureID":68548,"TargetStructureID":30130,"Label":"68548-30130 via Conventional from 73478 -> 30279","Type":"Conventional","Directional":true,"Links":[{"SourceID":73478,"TargetID":30279,"Directional":true}]},{"ID":15850,"SourceStructureID":68548,"TargetStructureID":43712,"Label":"68548-43712 via Conventional from 68582 -> 68583","Type":"Conventional","Directional":true,"Links":[{"SourceID":68582,"TargetID":68583,"Directional":true}]},{"ID":15851,"SourceStructureID":68548,"TargetStructureID":61823,"Label":"68548-61823 via Conventional from 73559 -> 64615","Type":"Conventional","Directional":true,"Links":[{"SourceID":73559,"TargetID":64615,"Directional":true}]},{"ID":15852,"SourceStructureID":68548,"TargetStructureID":67701,"Label":"68548-67701 via Conventional from 73566 -> 67702, 73567 -> 67703","Type":"Conventional","Directional":true,"Links":[{"SourceID":73566,"TargetID":67702,"Directional":true},{"SourceID":73567,"TargetID":67703,"Directional":true}]},{"ID":15853,"SourceStructureID":68548,"TargetStructureID":68539,"Label":"68548-68539 via Conventional from 68587 -> 68588, 73544 -> 73545","Type":"Conventional","Directional":true,"Links":[{"SourceID":68587,"TargetID":68588,"Directional":true},{"SourceID":73544,"TargetID":73545,"Directional":true}]},{"ID":15854,"SourceStructureID":68548,"TargetStructureID":68555,"Label":"68548-68555 via Conventional from 68554 -> 68556","Type":"Conventional","Directional":true,"Links":[{"SourceID":68554,"TargetID":68556,"Directional":true}]},{"ID":15855,"SourceStructureID":68548,"TargetStructureID":73500,"Label":"68548-73500 via Conventional from 73501 -> 73502","Type":"Conventional","Directional":true,"Links":[{"SourceID":73501,"TargetID":73502,"Directional":true}]},{"ID":15856,"SourceStructureID":68548,"TargetStructureID":73506,"Label":"68548-73506 via Conventional from 73507 -> 73508","Type":"Conventional","Directional":true,"Links":[{"SourceID":73507,"TargetID":73508,"Directional":true}]},{"ID":15857,"SourceStructureID":68548,"TargetStructureID":73521,"Label":"68548-73521 via Conventional from 73522 -> 73523","Type":"Conventional","Directional":true,"Links":[{"SourceID":73522,"TargetID":73523,"Directional":true}]},{"ID":15858,"SourceStructureID":68548,"TargetStructureID":73528,"Label":"68548-73528 via Conventional from 73527 -> 73529","Type":"Conventional","Directional":true,"Links":[{"SourceID":73527,"TargetID":73529,"Directional":true}]},{"ID":15859,"SourceStructureID":68548,"TargetStructureID":73546,"Label":"68548-73546 via Conventional from 73547 -> 73548","Type":"Conventional","Directional":true,"Links":[{"SourceID":73547,"TargetID":73548,"Directional":true}]},{"ID":15860,"SourceStructureID":68548,"TargetStructureID":73560,"Label":"68548-73560 via Conventional from 73561 -> 73562","Type":"Conventional","Directional":true,"Links":[{"SourceID":73561,"TargetID":73562,"Directional":true}]},{"ID":15861,"SourceStructureID":68548,"TargetStructureID":74902,"Label":"68548-74902 via Conventional from 75775 -> 75774","Type":"Conventional","Directional":true,"Links":[{"SourceID":75775,"TargetID":75774,"Directional":true}]},{"ID":15862,"SourceStructureID":68548,"TargetStructureID":75354,"Label":"68548-75354 via Conventional from 75353 -> 75355","Type":"Conventional","Directional":true,"Links":[{"SourceID":75353,"TargetID":75355,"Directional":true}]},{"ID":15863,"SourceStructureID":68548,"TargetStructureID":75359,"Label":"68548-75359 via Conventional from 75358 -> 75360","Type":"Conventional","Directional":true,"Links":[{"SourceID":75358,"TargetID":75360,"Directional":true}]},{"ID":15864,"SourceStructureID":68548,"TargetStructureID":75700,"Label":"68548-75700 via Conventional from 75699 -> 75705","Type":"Conventional","Directional":true,"Links":[{"SourceID":75699,"TargetID":75705,"Directional":true}]},{"ID":15865,"SourceStructureID":68548,"TargetStructureID":75713,"Label":"68548-75713 via Conventional from 75712 -> 75714","Type":"Conventional","Directional":true,"Links":[{"SourceID":75712,"TargetID":75714,"Directional":true}]},{"ID":15866,"SourceStructureID":68548,"TargetStructureID":75728,"Label":"68548-75728 via Conventional from 75729 -> 75730","Type":"Conventional","Directional":true,"Links":[{"SourceID":75729,"TargetID":75730,"Directional":true}]},{"ID":15867,"SourceStructureID":68548,"TargetStructureID":75739,"Label":"68548-75739 via Conventional from 75744 -> 75745","Type":"Conventional","Directional":true,"Links":[{"SourceID":75744,"TargetID":75745,"Directional":true}]},{"ID":15868,"SourceStructureID":68548,"TargetStructureID":75752,"Label":"68548-75752 via Conventional from 75751 -> 75753","Type":"Conventional","Directional":true,"Links":[{"SourceID":75751,"TargetID":75753,"Directional":true}]},{"ID":15869,"SourceStructureID":68566,"TargetStructureID":68539,"Label":"68566-68539 via Conventional from 68567 -> 68565","Type":"Conventional","Directional":true,"Links":[{"SourceID":68567,"TargetID":68565,"Directional":true}]},{"ID":15870,"SourceStructureID":68572,"TargetStructureID":68539,"Label":"68572-68539 via Conventional from 68573 -> 68571","Type":"Conventional","Directional":true,"Links":[{"SourceID":68573,"TargetID":68571,"Directional":true}]},{"ID":15871,"SourceStructureID":68577,"TargetStructureID":68539,"Label":"68577-68539 via Conventional from 68578 -> 68579","Type":"Conventional","Directional":true,"Links":[{"SourceID":68578,"TargetID":68579,"Directional":true}]},{"ID":15872,"SourceStructureID":68594,"TargetStructureID":5297,"Label":"68594-5297 via Conventional from 68595 -> 68596","Type":"Conventional","Directional":true,"Links":[{"SourceID":68595,"TargetID":68596,"Directional":true}]},{"ID":15873,"SourceStructureID":68618,"TargetStructureID":59696,"Label":"68618-59696 via Conventional from 68619 -> 68617","Type":"Conventional","Directional":true,"Links":[{"SourceID":68619,"TargetID":68617,"Directional":true}]},{"ID":15874,"SourceStructureID":68623,"TargetStructureID":593,"Label":"68623-593 via Conventional from 68624 -> 68622","Type":"Conventional","Directional":true,"Links":[{"SourceID":68624,"TargetID":68622,"Directional":true}]},{"ID":15875,"SourceStructureID":68632,"TargetStructureID":55403,"Label":"68632-55403 via Conventional from 68638 -> 55464","Type":"Conventional","Directional":true,"Links":[{"SourceID":68638,"TargetID":55464,"Directional":true}]},{"ID":15876,"SourceStructureID":68632,"TargetStructureID":67019,"Label":"68632-67019 via Conventional from 68633 -> 68634","Type":"Conventional","Directional":true,"Links":[{"SourceID":68633,"TargetID":68634,"Directional":true}]},{"ID":15877,"SourceStructureID":68635,"TargetStructureID":68632,"Label":"68635-68632 via Conventional from 68636 -> 68637","Type":"Conventional","Directional":true,"Links":[{"SourceID":68636,"TargetID":68637,"Directional":true}]},{"ID":15878,"SourceStructureID":68643,"TargetStructureID":6156,"Label":"68643-6156 via Conventional from 68645 -> 68646","Type":"Conventional","Directional":true,"Links":[{"SourceID":68645,"TargetID":68646,"Directional":true}]},{"ID":15879,"SourceStructureID":68643,"TargetStructureID":61933,"Label":"68643-61933 via Conventional from 68644 -> 68642","Type":"Conventional","Directional":true,"Links":[{"SourceID":68644,"TargetID":68642,"Directional":true}]},{"ID":15880,"SourceStructureID":68652,"TargetStructureID":68077,"Label":"68652-68077 via Conventional from 68653 -> 68651","Type":"Conventional","Directional":true,"Links":[{"SourceID":68653,"TargetID":68651,"Directional":true}]},{"ID":15881,"SourceStructureID":68663,"TargetStructureID":593,"Label":"68663-593 via Conventional from 68664 -> 62893","Type":"Conventional","Directional":true,"Links":[{"SourceID":68664,"TargetID":62893,"Directional":true}]},{"ID":15882,"SourceStructureID":68663,"TargetStructureID":5279,"Label":"68663-5279 via Conventional from 97258 -> 6345","Type":"Conventional","Directional":true,"Links":[{"SourceID":97258,"TargetID":6345,"Directional":true}]},{"ID":15883,"SourceStructureID":68667,"TargetStructureID":593,"Label":"68667-593 via Conventional from 74918 -> 68666","Type":"Conventional","Directional":true,"Links":[{"SourceID":74918,"TargetID":68666,"Directional":true}]},{"ID":15884,"SourceStructureID":68669,"TargetStructureID":593,"Label":"68669-593 via Conventional from 68675 -> 68676","Type":"Conventional","Directional":true,"Links":[{"SourceID":68675,"TargetID":68676,"Directional":true}]},{"ID":15885,"SourceStructureID":68669,"TargetStructureID":67460,"Label":"68669-67460 via Conventional from 82721 -> 82722","Type":"Conventional","Directional":true,"Links":[{"SourceID":82721,"TargetID":82722,"Directional":true}]},{"ID":15886,"SourceStructureID":68669,"TargetStructureID":68486,"Label":"68669-68486 via Conventional from 68670 -> 79609","Type":"Conventional","Directional":true,"Links":[{"SourceID":68670,"TargetID":79609,"Directional":true}]},{"ID":15887,"SourceStructureID":68678,"TargetStructureID":593,"Label":"68678-593 via Conventional from 68682 -> 68683","Type":"Conventional","Directional":true,"Links":[{"SourceID":68682,"TargetID":68683,"Directional":true}]},{"ID":15888,"SourceStructureID":68678,"TargetStructureID":5649,"Label":"68678-5649 via Conventional from 78883 -> 78884","Type":"Conventional","Directional":true,"Links":[{"SourceID":78883,"TargetID":78884,"Directional":true}]},{"ID":15889,"SourceStructureID":68686,"TargetStructureID":68669,"Label":"68686-68669 via Conventional from 68687 -> 68688","Type":"Conventional","Directional":true,"Links":[{"SourceID":68687,"TargetID":68688,"Directional":true}]},{"ID":15890,"SourceStructureID":68705,"TargetStructureID":514,"Label":"68705-514 via Conventional from 68706 -> 1511","Type":"Conventional","Directional":true,"Links":[{"SourceID":68706,"TargetID":1511,"Directional":true}]},{"ID":15891,"SourceStructureID":68728,"TargetStructureID":63628,"Label":"68728-63628 via Conventional from 68729 -> 63632","Type":"Conventional","Directional":true,"Links":[{"SourceID":68729,"TargetID":63632,"Directional":true}]},{"ID":15892,"SourceStructureID":68734,"TargetStructureID":63628,"Label":"68734-63628 via Conventional from 68735 -> 63633","Type":"Conventional","Directional":true,"Links":[{"SourceID":68735,"TargetID":63633,"Directional":true}]},{"ID":15893,"SourceStructureID":68737,"TargetStructureID":8575,"Label":"68737-8575 via Conventional from 68738 -> 21629","Type":"Conventional","Directional":true,"Links":[{"SourceID":68738,"TargetID":21629,"Directional":true}]},{"ID":15894,"SourceStructureID":68748,"TargetStructureID":8575,"Label":"68748-8575 via Conventional from 68749 -> 21632","Type":"Conventional","Directional":true,"Links":[{"SourceID":68749,"TargetID":21632,"Directional":true}]},{"ID":15895,"SourceStructureID":68766,"TargetStructureID":8575,"Label":"68766-8575 via Ribbon Synapse from 68768 -> 21636, 68774 -> 21637","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":68768,"TargetID":21636,"Directional":true},{"SourceID":68774,"TargetID":21637,"Directional":true}]},{"ID":15896,"SourceStructureID":68771,"TargetStructureID":8575,"Label":"68771-8575 via Conventional from 68772 -> 21638","Type":"Conventional","Directional":true,"Links":[{"SourceID":68772,"TargetID":21638,"Directional":true}]},{"ID":15897,"SourceStructureID":68781,"TargetStructureID":8575,"Label":"68781-8575 via BC Conventional Synapse from 68783 -> 62289","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":68783,"TargetID":62289,"Directional":true}]},{"ID":15898,"SourceStructureID":68785,"TargetStructureID":5528,"Label":"68785-5528 via Conventional from 68786 -> 68791","Type":"Conventional","Directional":true,"Links":[{"SourceID":68786,"TargetID":68791,"Directional":true}]},{"ID":15899,"SourceStructureID":68799,"TargetStructureID":8575,"Label":"68799-8575 via Conventional from 68800 -> 61536","Type":"Conventional","Directional":true,"Links":[{"SourceID":68800,"TargetID":61536,"Directional":true}]},{"ID":15900,"SourceStructureID":68801,"TargetStructureID":8575,"Label":"68801-8575 via Conventional from 68802 -> 65516","Type":"Conventional","Directional":true,"Links":[{"SourceID":68802,"TargetID":65516,"Directional":true}]},{"ID":15901,"SourceStructureID":68822,"TargetStructureID":22232,"Label":"68822-22232 via Conventional from 68823 -> 68821","Type":"Conventional","Directional":true,"Links":[{"SourceID":68823,"TargetID":68821,"Directional":true}]},{"ID":15902,"SourceStructureID":68836,"TargetStructureID":5922,"Label":"68836-5922 via Conventional from 68837 -> 68838","Type":"Conventional","Directional":true,"Links":[{"SourceID":68837,"TargetID":68838,"Directional":true}]},{"ID":15903,"SourceStructureID":68879,"TargetStructureID":7594,"Label":"68879-7594 via Conventional from 68882 -> 25099","Type":"Conventional","Directional":true,"Links":[{"SourceID":68882,"TargetID":25099,"Directional":true}]},{"ID":15904,"SourceStructureID":68888,"TargetStructureID":1724,"Label":"68888-1724 via Conventional from 68890 -> 1796","Type":"Conventional","Directional":true,"Links":[{"SourceID":68890,"TargetID":1796,"Directional":true}]},{"ID":15905,"SourceStructureID":68888,"TargetStructureID":61933,"Label":"68888-61933 via Conventional from 68889 -> 68887","Type":"Conventional","Directional":true,"Links":[{"SourceID":68889,"TargetID":68887,"Directional":true}]},{"ID":15906,"SourceStructureID":68894,"TargetStructureID":6156,"Label":"68894-6156 via Conventional from 68895 -> 68897","Type":"Conventional","Directional":true,"Links":[{"SourceID":68895,"TargetID":68897,"Directional":true}]},{"ID":15907,"SourceStructureID":68901,"TargetStructureID":67508,"Label":"68901-67508 via Conventional from 68902 -> 68903","Type":"Conventional","Directional":true,"Links":[{"SourceID":68902,"TargetID":68903,"Directional":true}]},{"ID":15908,"SourceStructureID":68901,"TargetStructureID":68906,"Label":"68901-68906 via Conventional from 68905 -> 68907","Type":"Conventional","Directional":true,"Links":[{"SourceID":68905,"TargetID":68907,"Directional":true}]},{"ID":15909,"SourceStructureID":68914,"TargetStructureID":8588,"Label":"68914-8588 via Conventional from 68915 -> 68916","Type":"Conventional","Directional":true,"Links":[{"SourceID":68915,"TargetID":68916,"Directional":true}]},{"ID":15910,"SourceStructureID":68926,"TargetStructureID":67508,"Label":"68926-67508 via Conventional from 68927 -> 68928","Type":"Conventional","Directional":true,"Links":[{"SourceID":68927,"TargetID":68928,"Directional":true}]},{"ID":15911,"SourceStructureID":68929,"TargetStructureID":68926,"Label":"68929-68926 via Conventional from 68930 -> 68942","Type":"Conventional","Directional":true,"Links":[{"SourceID":68930,"TargetID":68942,"Directional":true}]},{"ID":15912,"SourceStructureID":68940,"TargetStructureID":8038,"Label":"68940-8038 via Conventional from 68941 -> 68937, 68950 -> 68969","Type":"Conventional","Directional":true,"Links":[{"SourceID":68941,"TargetID":68937,"Directional":true},{"SourceID":68950,"TargetID":68969,"Directional":true}]},{"ID":15913,"SourceStructureID":68944,"TargetStructureID":68929,"Label":"68944-68929 via Conventional from 68945 -> 68943","Type":"Conventional","Directional":true,"Links":[{"SourceID":68945,"TargetID":68943,"Directional":true}]},{"ID":15914,"SourceStructureID":68944,"TargetStructureID":68948,"Label":"68944-68948 via Conventional from 68947 -> 68949","Type":"Conventional","Directional":true,"Links":[{"SourceID":68947,"TargetID":68949,"Directional":true}]},{"ID":15915,"SourceStructureID":68948,"TargetStructureID":68955,"Label":"68948-68955 via Conventional from 68954 -> 68956","Type":"Conventional","Directional":true,"Links":[{"SourceID":68954,"TargetID":68956,"Directional":true}]},{"ID":15916,"SourceStructureID":68955,"TargetStructureID":68944,"Label":"68955-68944 via Conventional from 68958 -> 68960","Type":"Conventional","Directional":true,"Links":[{"SourceID":68958,"TargetID":68960,"Directional":true}]},{"ID":15917,"SourceStructureID":68978,"TargetStructureID":67575,"Label":"68978-67575 via Conventional from 68979 -> 68977","Type":"Conventional","Directional":true,"Links":[{"SourceID":68979,"TargetID":68977,"Directional":true}]},{"ID":15918,"SourceStructureID":68988,"TargetStructureID":67992,"Label":"68988-67992 via Conventional from 68996 -> 68997","Type":"Conventional","Directional":true,"Links":[{"SourceID":68996,"TargetID":68997,"Directional":true}]},{"ID":15919,"SourceStructureID":69010,"TargetStructureID":68009,"Label":"69010-68009 via Conventional from 69011 -> 69009","Type":"Conventional","Directional":true,"Links":[{"SourceID":69011,"TargetID":69009,"Directional":true}]},{"ID":15920,"SourceStructureID":69019,"TargetStructureID":68009,"Label":"69019-68009 via Conventional from 69020 -> 69021","Type":"Conventional","Directional":true,"Links":[{"SourceID":69020,"TargetID":69021,"Directional":true}]},{"ID":15921,"SourceStructureID":69030,"TargetStructureID":5503,"Label":"69030-5503 via Conventional from 107423 -> 60729","Type":"Conventional","Directional":true,"Links":[{"SourceID":107423,"TargetID":60729,"Directional":true}]},{"ID":15922,"SourceStructureID":69030,"TargetStructureID":8576,"Label":"69030-8576 via Conventional from 69031 -> 20082","Type":"Conventional","Directional":true,"Links":[{"SourceID":69031,"TargetID":20082,"Directional":true}]},{"ID":15923,"SourceStructureID":69049,"TargetStructureID":68539,"Label":"69049-68539 via Conventional from 69062 -> 69066","Type":"Conventional","Directional":true,"Links":[{"SourceID":69062,"TargetID":69066,"Directional":true}]},{"ID":15924,"SourceStructureID":69115,"TargetStructureID":68539,"Label":"69115-68539 via Conventional from 69116 -> 69110","Type":"Conventional","Directional":true,"Links":[{"SourceID":69116,"TargetID":69110,"Directional":true}]},{"ID":15925,"SourceStructureID":69118,"TargetStructureID":8579,"Label":"69118-8579 via Conventional from 69122 -> 19794","Type":"Conventional","Directional":true,"Links":[{"SourceID":69122,"TargetID":19794,"Directional":true}]},{"ID":15926,"SourceStructureID":69118,"TargetStructureID":68539,"Label":"69118-68539 via Conventional from 69119 -> 69067","Type":"Conventional","Directional":true,"Links":[{"SourceID":69119,"TargetID":69067,"Directional":true}]},{"ID":15927,"SourceStructureID":69123,"TargetStructureID":68539,"Label":"69123-68539 via Conventional from 69124 -> 69068","Type":"Conventional","Directional":true,"Links":[{"SourceID":69124,"TargetID":69068,"Directional":true}]},{"ID":15928,"SourceStructureID":69125,"TargetStructureID":68539,"Label":"69125-68539 via Conventional from 69126 -> 69069","Type":"Conventional","Directional":true,"Links":[{"SourceID":69126,"TargetID":69069,"Directional":true}]},{"ID":15929,"SourceStructureID":69181,"TargetStructureID":69162,"Label":"69181-69162 via Conventional from 69183 -> 69177","Type":"Conventional","Directional":true,"Links":[{"SourceID":69183,"TargetID":69177,"Directional":true}]},{"ID":15930,"SourceStructureID":69181,"TargetStructureID":69184,"Label":"69181-69184 via Conventional from 69182 -> 69186","Type":"Conventional","Directional":true,"Links":[{"SourceID":69182,"TargetID":69186,"Directional":true}]},{"ID":15931,"SourceStructureID":69184,"TargetStructureID":69162,"Label":"69184-69162 via Conventional from 69185 -> 69178","Type":"Conventional","Directional":true,"Links":[{"SourceID":69185,"TargetID":69178,"Directional":true}]},{"ID":15932,"SourceStructureID":69187,"TargetStructureID":69162,"Label":"69187-69162 via Conventional from 69188 -> 69180","Type":"Conventional","Directional":true,"Links":[{"SourceID":69188,"TargetID":69180,"Directional":true}]},{"ID":15933,"SourceStructureID":69190,"TargetStructureID":69162,"Label":"69190-69162 via Conventional from 69192 -> 69193","Type":"Conventional","Directional":true,"Links":[{"SourceID":69192,"TargetID":69193,"Directional":true}]},{"ID":15934,"SourceStructureID":69190,"TargetStructureID":69187,"Label":"69190-69187 via Conventional from 69191 -> 69189","Type":"Conventional","Directional":true,"Links":[{"SourceID":69191,"TargetID":69189,"Directional":true}]},{"ID":15935,"SourceStructureID":69200,"TargetStructureID":69162,"Label":"69200-69162 via Conventional from 69201 -> 69199","Type":"Conventional","Directional":true,"Links":[{"SourceID":69201,"TargetID":69199,"Directional":true}]},{"ID":15936,"SourceStructureID":69200,"TargetStructureID":82723,"Label":"69200-82723 via Conventional from 69203 -> 82724","Type":"Conventional","Directional":true,"Links":[{"SourceID":69203,"TargetID":82724,"Directional":true}]},{"ID":15937,"SourceStructureID":69205,"TargetStructureID":69162,"Label":"69205-69162 via Conventional from 69206 -> 69207","Type":"Conventional","Directional":true,"Links":[{"SourceID":69206,"TargetID":69207,"Directional":true}]},{"ID":15938,"SourceStructureID":69235,"TargetStructureID":22974,"Label":"69235-22974 via Conventional from 69236 -> 69230","Type":"Conventional","Directional":true,"Links":[{"SourceID":69236,"TargetID":69230,"Directional":true}]},{"ID":15939,"SourceStructureID":69243,"TargetStructureID":22974,"Label":"69243-22974 via Conventional from 69244 -> 68981","Type":"Conventional","Directional":true,"Links":[{"SourceID":69244,"TargetID":68981,"Directional":true}]},{"ID":15940,"SourceStructureID":69245,"TargetStructureID":5284,"Label":"69245-5284 via Conventional from 98231 -> 98230","Type":"Conventional","Directional":true,"Links":[{"SourceID":98231,"TargetID":98230,"Directional":true}]},{"ID":15941,"SourceStructureID":69245,"TargetStructureID":22974,"Label":"69245-22974 via Conventional from 69246 -> 68984","Type":"Conventional","Directional":true,"Links":[{"SourceID":69246,"TargetID":68984,"Directional":true}]},{"ID":15942,"SourceStructureID":69325,"TargetStructureID":5117,"Label":"69325-5117 via Conventional from 69326 -> 69324","Type":"Conventional","Directional":true,"Links":[{"SourceID":69326,"TargetID":69324,"Directional":true}]},{"ID":15943,"SourceStructureID":69332,"TargetStructureID":5117,"Label":"69332-5117 via Conventional from 69333 -> 69331","Type":"Conventional","Directional":true,"Links":[{"SourceID":69333,"TargetID":69331,"Directional":true}]},{"ID":15944,"SourceStructureID":69355,"TargetStructureID":66407,"Label":"69355-66407 via Conventional from 69356 -> 69354","Type":"Conventional","Directional":true,"Links":[{"SourceID":69356,"TargetID":69354,"Directional":true}]},{"ID":15945,"SourceStructureID":69361,"TargetStructureID":66958,"Label":"69361-66958 via Conventional from 69362 -> 69906","Type":"Conventional","Directional":true,"Links":[{"SourceID":69362,"TargetID":69906,"Directional":true}]},{"ID":15946,"SourceStructureID":69363,"TargetStructureID":5561,"Label":"69363-5561 via Conventional from 75576 -> 75577","Type":"Conventional","Directional":true,"Links":[{"SourceID":75576,"TargetID":75577,"Directional":true}]},{"ID":15947,"SourceStructureID":69363,"TargetStructureID":8580,"Label":"69363-8580 via Conventional from 69364 -> 59649","Type":"Conventional","Directional":true,"Links":[{"SourceID":69364,"TargetID":59649,"Directional":true}]},{"ID":15948,"SourceStructureID":69367,"TargetStructureID":67663,"Label":"69367-67663 via Conventional from 69369 -> 69370","Type":"Conventional","Directional":true,"Links":[{"SourceID":69369,"TargetID":69370,"Directional":true}]},{"ID":15949,"SourceStructureID":69371,"TargetStructureID":22974,"Label":"69371-22974 via Conventional from 69372 -> 69368","Type":"Conventional","Directional":true,"Links":[{"SourceID":69372,"TargetID":69368,"Directional":true}]},{"ID":15950,"SourceStructureID":69380,"TargetStructureID":22974,"Label":"69380-22974 via Conventional from 69381 -> 69379","Type":"Conventional","Directional":true,"Links":[{"SourceID":69381,"TargetID":69379,"Directional":true}]},{"ID":15951,"SourceStructureID":69382,"TargetStructureID":67663,"Label":"69382-67663 via Conventional from 69383 -> 69323","Type":"Conventional","Directional":true,"Links":[{"SourceID":69383,"TargetID":69323,"Directional":true}]},{"ID":15952,"SourceStructureID":69385,"TargetStructureID":6857,"Label":"69385-6857 via Conventional from 69386 -> 6883, 71721 -> 6889","Type":"Conventional","Directional":true,"Links":[{"SourceID":69386,"TargetID":6883,"Directional":true},{"SourceID":71721,"TargetID":6889,"Directional":true}]},{"ID":15953,"SourceStructureID":69388,"TargetStructureID":66407,"Label":"69388-66407 via Conventional from 69389 -> 69387","Type":"Conventional","Directional":true,"Links":[{"SourceID":69389,"TargetID":69387,"Directional":true}]},{"ID":15954,"SourceStructureID":69393,"TargetStructureID":66407,"Label":"69393-66407 via Conventional from 69394 -> 69392","Type":"Conventional","Directional":true,"Links":[{"SourceID":69394,"TargetID":69392,"Directional":true}]},{"ID":15955,"SourceStructureID":69402,"TargetStructureID":66407,"Label":"69402-66407 via Conventional from 69403 -> 69401","Type":"Conventional","Directional":true,"Links":[{"SourceID":69403,"TargetID":69401,"Directional":true}]},{"ID":15956,"SourceStructureID":69405,"TargetStructureID":66407,"Label":"69405-66407 via Conventional from 69406 -> 69404","Type":"Conventional","Directional":true,"Links":[{"SourceID":69406,"TargetID":69404,"Directional":true}]},{"ID":15957,"SourceStructureID":69434,"TargetStructureID":64939,"Label":"69434-64939 via Conventional from 69435 -> 69433","Type":"Conventional","Directional":true,"Links":[{"SourceID":69435,"TargetID":69433,"Directional":true}]},{"ID":15958,"SourceStructureID":69441,"TargetStructureID":6050,"Label":"69441-6050 via Conventional from 127389 -> 113907","Type":"Conventional","Directional":true,"Links":[{"SourceID":127389,"TargetID":113907,"Directional":true}]},{"ID":15959,"SourceStructureID":69450,"TargetStructureID":64939,"Label":"69450-64939 via Conventional from 69451 -> 69448","Type":"Conventional","Directional":true,"Links":[{"SourceID":69451,"TargetID":69448,"Directional":true}]},{"ID":15960,"SourceStructureID":69456,"TargetStructureID":64939,"Label":"69456-64939 via Conventional from 69457 -> 69422","Type":"Conventional","Directional":true,"Links":[{"SourceID":69457,"TargetID":69422,"Directional":true}]},{"ID":15961,"SourceStructureID":69458,"TargetStructureID":64939,"Label":"69458-64939 via Conventional from 69460 -> 69459","Type":"Conventional","Directional":true,"Links":[{"SourceID":69460,"TargetID":69459,"Directional":true}]},{"ID":15962,"SourceStructureID":69461,"TargetStructureID":6115,"Label":"69461-6115 via Conventional from 73919 -> 73920","Type":"Conventional","Directional":true,"Links":[{"SourceID":73919,"TargetID":73920,"Directional":true}]},{"ID":15963,"SourceStructureID":69464,"TargetStructureID":6115,"Label":"69464-6115 via Conventional from 69466 -> 55846","Type":"Conventional","Directional":true,"Links":[{"SourceID":69466,"TargetID":55846,"Directional":true}]},{"ID":15964,"SourceStructureID":69467,"TargetStructureID":6115,"Label":"69467-6115 via Conventional from 69468 -> 59599","Type":"Conventional","Directional":true,"Links":[{"SourceID":69468,"TargetID":59599,"Directional":true}]},{"ID":15965,"SourceStructureID":69469,"TargetStructureID":6115,"Label":"69469-6115 via Conventional from 69470 -> 55844","Type":"Conventional","Directional":true,"Links":[{"SourceID":69470,"TargetID":55844,"Directional":true}]},{"ID":15966,"SourceStructureID":69472,"TargetStructureID":6115,"Label":"69472-6115 via Conventional from 69473 -> 59608","Type":"Conventional","Directional":true,"Links":[{"SourceID":69473,"TargetID":59608,"Directional":true}]},{"ID":15967,"SourceStructureID":69475,"TargetStructureID":16087,"Label":"69475-16087 via Conventional from 69476 -> 69477","Type":"Conventional","Directional":true,"Links":[{"SourceID":69476,"TargetID":69477,"Directional":true}]},{"ID":15968,"SourceStructureID":69478,"TargetStructureID":6115,"Label":"69478-6115 via Conventional from 69479 -> 32978","Type":"Conventional","Directional":true,"Links":[{"SourceID":69479,"TargetID":32978,"Directional":true}]},{"ID":15969,"SourceStructureID":69480,"TargetStructureID":6115,"Label":"69480-6115 via Conventional from 69482 -> 69481","Type":"Conventional","Directional":true,"Links":[{"SourceID":69482,"TargetID":69481,"Directional":true}]},{"ID":15970,"SourceStructureID":69489,"TargetStructureID":66407,"Label":"69489-66407 via Conventional from 69490 -> 69491","Type":"Conventional","Directional":true,"Links":[{"SourceID":69490,"TargetID":69491,"Directional":true}]},{"ID":15971,"SourceStructureID":69493,"TargetStructureID":6115,"Label":"69493-6115 via Conventional from 69494 -> 16050","Type":"Conventional","Directional":true,"Links":[{"SourceID":69494,"TargetID":16050,"Directional":true}]},{"ID":15972,"SourceStructureID":69496,"TargetStructureID":6115,"Label":"69496-6115 via Conventional from 69497 -> 69498","Type":"Conventional","Directional":true,"Links":[{"SourceID":69497,"TargetID":69498,"Directional":true}]},{"ID":15973,"SourceStructureID":69500,"TargetStructureID":6115,"Label":"69500-6115 via Conventional from 69502 -> 16054","Type":"Conventional","Directional":true,"Links":[{"SourceID":69502,"TargetID":16054,"Directional":true}]},{"ID":15974,"SourceStructureID":69503,"TargetStructureID":6115,"Label":"69503-6115 via Conventional from 69504 -> 16053","Type":"Conventional","Directional":true,"Links":[{"SourceID":69504,"TargetID":16053,"Directional":true}]},{"ID":15975,"SourceStructureID":69508,"TargetStructureID":5118,"Label":"69508-5118 via Conventional from 69509 -> 52188","Type":"Conventional","Directional":true,"Links":[{"SourceID":69509,"TargetID":52188,"Directional":true}]},{"ID":15976,"SourceStructureID":69512,"TargetStructureID":6115,"Label":"69512-6115 via Conventional from 69513 -> 55794, 69514 -> 69515, 75810 -> 75811","Type":"Conventional","Directional":true,"Links":[{"SourceID":69513,"TargetID":55794,"Directional":true},{"SourceID":69514,"TargetID":69515,"Directional":true},{"SourceID":75810,"TargetID":75811,"Directional":true}]},{"ID":15977,"SourceStructureID":69516,"TargetStructureID":6115,"Label":"69516-6115 via Conventional from 69517 -> 69518","Type":"Conventional","Directional":true,"Links":[{"SourceID":69517,"TargetID":69518,"Directional":true}]},{"ID":15978,"SourceStructureID":69524,"TargetStructureID":69162,"Label":"69524-69162 via Conventional from 69525 -> 69219","Type":"Conventional","Directional":true,"Links":[{"SourceID":69525,"TargetID":69219,"Directional":true}]},{"ID":15979,"SourceStructureID":69527,"TargetStructureID":69162,"Label":"69527-69162 via Conventional from 69528 -> 69307","Type":"Conventional","Directional":true,"Links":[{"SourceID":69528,"TargetID":69307,"Directional":true}]},{"ID":15980,"SourceStructureID":69532,"TargetStructureID":8485,"Label":"69532-8485 via Conventional from 69533 -> 11663","Type":"Conventional","Directional":true,"Links":[{"SourceID":69533,"TargetID":11663,"Directional":true}]},{"ID":15981,"SourceStructureID":69543,"TargetStructureID":64939,"Label":"69543-64939 via Conventional from 69544 -> 69542","Type":"Conventional","Directional":true,"Links":[{"SourceID":69544,"TargetID":69542,"Directional":true}]},{"ID":15982,"SourceStructureID":69546,"TargetStructureID":69543,"Label":"69546-69543 via Conventional from 69547 -> 69545","Type":"Conventional","Directional":true,"Links":[{"SourceID":69547,"TargetID":69545,"Directional":true}]},{"ID":15983,"SourceStructureID":69554,"TargetStructureID":8040,"Label":"69554-8040 via Conventional from 69555 -> 39141, 69561 -> 69562","Type":"Conventional","Directional":true,"Links":[{"SourceID":69555,"TargetID":39141,"Directional":true},{"SourceID":69561,"TargetID":69562,"Directional":true}]},{"ID":15984,"SourceStructureID":69642,"TargetStructureID":64939,"Label":"69642-64939 via Conventional from 69643 -> 69416","Type":"Conventional","Directional":true,"Links":[{"SourceID":69643,"TargetID":69416,"Directional":true}]},{"ID":15985,"SourceStructureID":69646,"TargetStructureID":64939,"Label":"69646-64939 via Conventional from 69647 -> 69648","Type":"Conventional","Directional":true,"Links":[{"SourceID":69647,"TargetID":69648,"Directional":true}]},{"ID":15986,"SourceStructureID":69666,"TargetStructureID":5729,"Label":"69666-5729 via Conventional from 111649 -> 111650","Type":"Conventional","Directional":true,"Links":[{"SourceID":111649,"TargetID":111650,"Directional":true}]},{"ID":15987,"SourceStructureID":69670,"TargetStructureID":69670,"Label":"69670-69670 via Conventional from 69671 -> 69673","Type":"Conventional","Directional":true,"Links":[{"SourceID":69671,"TargetID":69673,"Directional":true}]},{"ID":15988,"SourceStructureID":69689,"TargetStructureID":61853,"Label":"69689-61853 via Conventional from 69690 -> 69688","Type":"Conventional","Directional":true,"Links":[{"SourceID":69690,"TargetID":69688,"Directional":true}]},{"ID":15989,"SourceStructureID":69691,"TargetStructureID":64939,"Label":"69691-64939 via Conventional from 69692 -> 69693","Type":"Conventional","Directional":true,"Links":[{"SourceID":69692,"TargetID":69693,"Directional":true}]},{"ID":15990,"SourceStructureID":69703,"TargetStructureID":64939,"Label":"69703-64939 via Conventional from 69704 -> 69705","Type":"Conventional","Directional":true,"Links":[{"SourceID":69704,"TargetID":69705,"Directional":true}]},{"ID":15991,"SourceStructureID":69742,"TargetStructureID":64939,"Label":"69742-64939 via Conventional from 69743 -> 69744, 69745 -> 69746","Type":"Conventional","Directional":true,"Links":[{"SourceID":69743,"TargetID":69744,"Directional":true},{"SourceID":69745,"TargetID":69746,"Directional":true}]},{"ID":15992,"SourceStructureID":69783,"TargetStructureID":61836,"Label":"69783-61836 via Conventional from 69785 -> 69786","Type":"Conventional","Directional":true,"Links":[{"SourceID":69785,"TargetID":69786,"Directional":true}]},{"ID":15993,"SourceStructureID":69790,"TargetStructureID":61836,"Label":"69790-61836 via Conventional from 69791 -> 69789","Type":"Conventional","Directional":true,"Links":[{"SourceID":69791,"TargetID":69789,"Directional":true}]},{"ID":15994,"SourceStructureID":69868,"TargetStructureID":596,"Label":"69868-596 via Conventional from 69869 -> 69867","Type":"Conventional","Directional":true,"Links":[{"SourceID":69869,"TargetID":69867,"Directional":true}]},{"ID":15995,"SourceStructureID":69882,"TargetStructureID":596,"Label":"69882-596 via Conventional from 69883 -> 69886, 69884 -> 69881","Type":"Conventional","Directional":true,"Links":[{"SourceID":69883,"TargetID":69886,"Directional":true},{"SourceID":69884,"TargetID":69881,"Directional":true}]},{"ID":15996,"SourceStructureID":69888,"TargetStructureID":69890,"Label":"69888-69890 via Conventional from 69889 -> 69891","Type":"Conventional","Directional":true,"Links":[{"SourceID":69889,"TargetID":69891,"Directional":true}]},{"ID":15997,"SourceStructureID":69895,"TargetStructureID":166,"Label":"69895-166 via Conventional from 69896 -> 69897","Type":"Conventional","Directional":true,"Links":[{"SourceID":69896,"TargetID":69897,"Directional":true}]},{"ID":15998,"SourceStructureID":69902,"TargetStructureID":166,"Label":"69902-166 via Conventional from 69904 -> 69905","Type":"Conventional","Directional":true,"Links":[{"SourceID":69904,"TargetID":69905,"Directional":true}]},{"ID":15999,"SourceStructureID":69910,"TargetStructureID":66958,"Label":"69910-66958 via Conventional from 69911 -> 69319","Type":"Conventional","Directional":true,"Links":[{"SourceID":69911,"TargetID":69319,"Directional":true}]},{"ID":16000,"SourceStructureID":69917,"TargetStructureID":66958,"Label":"69917-66958 via Conventional from 69918 -> 69916","Type":"Conventional","Directional":true,"Links":[{"SourceID":69918,"TargetID":69916,"Directional":true}]},{"ID":16001,"SourceStructureID":69920,"TargetStructureID":65267,"Label":"69920-65267 via Conventional from 69921 -> 69919","Type":"Conventional","Directional":true,"Links":[{"SourceID":69921,"TargetID":69919,"Directional":true}]},{"ID":16002,"SourceStructureID":69926,"TargetStructureID":5562,"Label":"69926-5562 via Conventional from 69928 -> 63861","Type":"Conventional","Directional":true,"Links":[{"SourceID":69928,"TargetID":63861,"Directional":true}]},{"ID":16003,"SourceStructureID":69930,"TargetStructureID":69926,"Label":"69930-69926 via Conventional from 69931 -> 69929","Type":"Conventional","Directional":true,"Links":[{"SourceID":69931,"TargetID":69929,"Directional":true}]},{"ID":16004,"SourceStructureID":69934,"TargetStructureID":66958,"Label":"69934-66958 via Conventional from 69935 -> 69932","Type":"Conventional","Directional":true,"Links":[{"SourceID":69935,"TargetID":69932,"Directional":true}]},{"ID":16005,"SourceStructureID":69951,"TargetStructureID":65267,"Label":"69951-65267 via Conventional from 69952 -> 69950","Type":"Conventional","Directional":true,"Links":[{"SourceID":69952,"TargetID":69950,"Directional":true}]},{"ID":16006,"SourceStructureID":69955,"TargetStructureID":69953,"Label":"69955-69953 via Conventional from 69956 -> 69954","Type":"Conventional","Directional":true,"Links":[{"SourceID":69956,"TargetID":69954,"Directional":true}]},{"ID":16007,"SourceStructureID":69971,"TargetStructureID":64939,"Label":"69971-64939 via Conventional from 69977 -> 69978","Type":"Conventional","Directional":true,"Links":[{"SourceID":69977,"TargetID":69978,"Directional":true}]},{"ID":16008,"SourceStructureID":69979,"TargetStructureID":64939,"Label":"69979-64939 via Conventional from 69980 -> 69981","Type":"Conventional","Directional":true,"Links":[{"SourceID":69980,"TargetID":69981,"Directional":true}]},{"ID":16009,"SourceStructureID":69986,"TargetStructureID":64939,"Label":"69986-64939 via Conventional from 69987 -> 69988","Type":"Conventional","Directional":true,"Links":[{"SourceID":69987,"TargetID":69988,"Directional":true}]},{"ID":16010,"SourceStructureID":69998,"TargetStructureID":64939,"Label":"69998-64939 via Conventional from 70000 -> 70001","Type":"Conventional","Directional":true,"Links":[{"SourceID":70000,"TargetID":70001,"Directional":true}]},{"ID":16011,"SourceStructureID":70014,"TargetStructureID":6997,"Label":"70014-6997 via Conventional from 70015 -> 70016","Type":"Conventional","Directional":true,"Links":[{"SourceID":70015,"TargetID":70016,"Directional":true}]},{"ID":16012,"SourceStructureID":70046,"TargetStructureID":68153,"Label":"70046-68153 via Conventional from 70047 -> 70045","Type":"Conventional","Directional":true,"Links":[{"SourceID":70047,"TargetID":70045,"Directional":true}]},{"ID":16013,"SourceStructureID":70046,"TargetStructureID":70050,"Label":"70046-70050 via Conventional from 70052 -> 70053","Type":"Conventional","Directional":true,"Links":[{"SourceID":70052,"TargetID":70053,"Directional":true}]},{"ID":16014,"SourceStructureID":70065,"TargetStructureID":66958,"Label":"70065-66958 via Conventional from 70066 -> 70064","Type":"Conventional","Directional":true,"Links":[{"SourceID":70066,"TargetID":70064,"Directional":true}]},{"ID":16015,"SourceStructureID":70073,"TargetStructureID":6997,"Label":"70073-6997 via Conventional from 70076 -> 83021","Type":"Conventional","Directional":true,"Links":[{"SourceID":70076,"TargetID":83021,"Directional":true}]},{"ID":16016,"SourceStructureID":70073,"TargetStructureID":66958,"Label":"70073-66958 via Conventional from 70074 -> 70075","Type":"Conventional","Directional":true,"Links":[{"SourceID":70074,"TargetID":70075,"Directional":true}]},{"ID":16017,"SourceStructureID":70079,"TargetStructureID":66958,"Label":"70079-66958 via Conventional from 70080 -> 70078","Type":"Conventional","Directional":true,"Links":[{"SourceID":70080,"TargetID":70078,"Directional":true}]},{"ID":16018,"SourceStructureID":70084,"TargetStructureID":5729,"Label":"70084-5729 via Conventional from 111651 -> 111652","Type":"Conventional","Directional":true,"Links":[{"SourceID":111651,"TargetID":111652,"Directional":true}]},{"ID":16019,"SourceStructureID":70092,"TargetStructureID":66958,"Label":"70092-66958 via Conventional from 70094 -> 70091","Type":"Conventional","Directional":true,"Links":[{"SourceID":70094,"TargetID":70091,"Directional":true}]},{"ID":16020,"SourceStructureID":70095,"TargetStructureID":34978,"Label":"70095-34978 via Ribbon Synapse from 70097 -> 34981","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70097,"TargetID":34981,"Directional":true}]},{"ID":16021,"SourceStructureID":70111,"TargetStructureID":66958,"Label":"70111-66958 via Conventional from 70112 -> 70110","Type":"Conventional","Directional":true,"Links":[{"SourceID":70112,"TargetID":70110,"Directional":true}]},{"ID":16022,"SourceStructureID":70116,"TargetStructureID":70114,"Label":"70116-70114 via Conventional from 70117 -> 70115","Type":"Conventional","Directional":true,"Links":[{"SourceID":70117,"TargetID":70115,"Directional":true}]},{"ID":16023,"SourceStructureID":70120,"TargetStructureID":61823,"Label":"70120-61823 via Conventional from 70121 -> 70122","Type":"Conventional","Directional":true,"Links":[{"SourceID":70121,"TargetID":70122,"Directional":true}]},{"ID":16024,"SourceStructureID":70124,"TargetStructureID":61823,"Label":"70124-61823 via Conventional from 70125 -> 70123","Type":"Conventional","Directional":true,"Links":[{"SourceID":70125,"TargetID":70123,"Directional":true}]},{"ID":16025,"SourceStructureID":70126,"TargetStructureID":5623,"Label":"70126-5623 via Conventional from 131984 -> 131983","Type":"Conventional","Directional":true,"Links":[{"SourceID":131984,"TargetID":131983,"Directional":true}]},{"ID":16026,"SourceStructureID":70130,"TargetStructureID":66958,"Label":"70130-66958 via Conventional from 70131 -> 70129","Type":"Conventional","Directional":true,"Links":[{"SourceID":70131,"TargetID":70129,"Directional":true}]},{"ID":16027,"SourceStructureID":70134,"TargetStructureID":66958,"Label":"70134-66958 via Conventional from 70135 -> 70133","Type":"Conventional","Directional":true,"Links":[{"SourceID":70135,"TargetID":70133,"Directional":true}]},{"ID":16028,"SourceStructureID":70139,"TargetStructureID":5623,"Label":"70139-5623 via Conventional from 70142 -> 70143","Type":"Conventional","Directional":true,"Links":[{"SourceID":70142,"TargetID":70143,"Directional":true}]},{"ID":16029,"SourceStructureID":70139,"TargetStructureID":66958,"Label":"70139-66958 via Conventional from 70140 -> 70141","Type":"Conventional","Directional":true,"Links":[{"SourceID":70140,"TargetID":70141,"Directional":true}]},{"ID":16030,"SourceStructureID":70144,"TargetStructureID":68153,"Label":"70144-68153 via Conventional from 70145 -> 70146","Type":"Conventional","Directional":true,"Links":[{"SourceID":70145,"TargetID":70146,"Directional":true}]},{"ID":16031,"SourceStructureID":70157,"TargetStructureID":68153,"Label":"70157-68153 via Conventional from 70158 -> 70160","Type":"Conventional","Directional":true,"Links":[{"SourceID":70158,"TargetID":70160,"Directional":true}]},{"ID":16032,"SourceStructureID":70165,"TargetStructureID":61823,"Label":"70165-61823 via Conventional from 70166 -> 70164","Type":"Conventional","Directional":true,"Links":[{"SourceID":70166,"TargetID":70164,"Directional":true}]},{"ID":16033,"SourceStructureID":70176,"TargetStructureID":68153,"Label":"70176-68153 via Conventional from 70177 -> 70181","Type":"Conventional","Directional":true,"Links":[{"SourceID":70177,"TargetID":70181,"Directional":true}]},{"ID":16034,"SourceStructureID":70182,"TargetStructureID":68153,"Label":"70182-68153 via Conventional from 70183 -> 70184","Type":"Conventional","Directional":true,"Links":[{"SourceID":70183,"TargetID":70184,"Directional":true}]},{"ID":16035,"SourceStructureID":70201,"TargetStructureID":68153,"Label":"70201-68153 via Conventional from 70202 -> 70200","Type":"Conventional","Directional":true,"Links":[{"SourceID":70202,"TargetID":70200,"Directional":true}]},{"ID":16036,"SourceStructureID":70205,"TargetStructureID":69537,"Label":"70205-69537 via Conventional from 70206 -> 69569","Type":"Conventional","Directional":true,"Links":[{"SourceID":70206,"TargetID":69569,"Directional":true}]},{"ID":16037,"SourceStructureID":70221,"TargetStructureID":5297,"Label":"70221-5297 via Conventional from 116706 -> 116707","Type":"Conventional","Directional":true,"Links":[{"SourceID":116706,"TargetID":116707,"Directional":true}]},{"ID":16038,"SourceStructureID":70224,"TargetStructureID":70225,"Label":"70224-70225 via Conventional from 70226 -> 70227","Type":"Conventional","Directional":true,"Links":[{"SourceID":70226,"TargetID":70227,"Directional":true}]},{"ID":16039,"SourceStructureID":70272,"TargetStructureID":68539,"Label":"70272-68539 via Conventional from 70273 -> 70274","Type":"Conventional","Directional":true,"Links":[{"SourceID":70273,"TargetID":70274,"Directional":true}]},{"ID":16040,"SourceStructureID":70302,"TargetStructureID":68539,"Label":"70302-68539 via Conventional from 70303 -> 70307","Type":"Conventional","Directional":true,"Links":[{"SourceID":70303,"TargetID":70307,"Directional":true}]},{"ID":16041,"SourceStructureID":70308,"TargetStructureID":68539,"Label":"70308-68539 via Conventional from 70406 -> 70408","Type":"Conventional","Directional":true,"Links":[{"SourceID":70406,"TargetID":70408,"Directional":true}]},{"ID":16042,"SourceStructureID":70317,"TargetStructureID":61823,"Label":"70317-61823 via Conventional from 70318 -> 70319","Type":"Conventional","Directional":true,"Links":[{"SourceID":70318,"TargetID":70319,"Directional":true}]},{"ID":16043,"SourceStructureID":70321,"TargetStructureID":606,"Label":"70321-606 via Conventional from 70322 -> 51319","Type":"Conventional","Directional":true,"Links":[{"SourceID":70322,"TargetID":51319,"Directional":true}]},{"ID":16044,"SourceStructureID":70323,"TargetStructureID":6117,"Label":"70323-6117 via Conventional from 70324 -> 70325","Type":"Conventional","Directional":true,"Links":[{"SourceID":70324,"TargetID":70325,"Directional":true}]},{"ID":16045,"SourceStructureID":70326,"TargetStructureID":6117,"Label":"70326-6117 via Conventional from 70327 -> 70328","Type":"Conventional","Directional":true,"Links":[{"SourceID":70327,"TargetID":70328,"Directional":true}]},{"ID":16046,"SourceStructureID":70329,"TargetStructureID":5292,"Label":"70329-5292 via Conventional from 70330 -> 51581","Type":"Conventional","Directional":true,"Links":[{"SourceID":70330,"TargetID":51581,"Directional":true}]},{"ID":16047,"SourceStructureID":70331,"TargetStructureID":5284,"Label":"70331-5284 via Conventional from 113413 -> 113412","Type":"Conventional","Directional":true,"Links":[{"SourceID":113413,"TargetID":113412,"Directional":true}]},{"ID":16048,"SourceStructureID":70331,"TargetStructureID":5292,"Label":"70331-5292 via Conventional from 70332 -> 51583","Type":"Conventional","Directional":true,"Links":[{"SourceID":70332,"TargetID":51583,"Directional":true}]},{"ID":16049,"SourceStructureID":70334,"TargetStructureID":5292,"Label":"70334-5292 via Conventional from 70337 -> 51580","Type":"Conventional","Directional":true,"Links":[{"SourceID":70337,"TargetID":51580,"Directional":true}]},{"ID":16050,"SourceStructureID":70335,"TargetStructureID":5292,"Label":"70335-5292 via Conventional from 70338 -> 51582","Type":"Conventional","Directional":true,"Links":[{"SourceID":70338,"TargetID":51582,"Directional":true}]},{"ID":16051,"SourceStructureID":70340,"TargetStructureID":5284,"Label":"70340-5284 via Conventional from 84658 -> 84660","Type":"Conventional","Directional":true,"Links":[{"SourceID":84658,"TargetID":84660,"Directional":true}]},{"ID":16052,"SourceStructureID":70340,"TargetStructureID":6117,"Label":"70340-6117 via Conventional from 70341 -> 70342","Type":"Conventional","Directional":true,"Links":[{"SourceID":70341,"TargetID":70342,"Directional":true}]},{"ID":16053,"SourceStructureID":70346,"TargetStructureID":6050,"Label":"70346-6050 via Conventional from 70348 -> 70349","Type":"Conventional","Directional":true,"Links":[{"SourceID":70348,"TargetID":70349,"Directional":true}]},{"ID":16054,"SourceStructureID":70346,"TargetStructureID":15796,"Label":"70346-15796 via Conventional from 70347 -> 36000","Type":"Conventional","Directional":true,"Links":[{"SourceID":70347,"TargetID":36000,"Directional":true}]},{"ID":16055,"SourceStructureID":70352,"TargetStructureID":6050,"Label":"70352-6050 via Conventional from 70353 -> 19307","Type":"Conventional","Directional":true,"Links":[{"SourceID":70353,"TargetID":19307,"Directional":true}]},{"ID":16056,"SourceStructureID":70357,"TargetStructureID":6050,"Label":"70357-6050 via Conventional from 70358 -> 70359","Type":"Conventional","Directional":true,"Links":[{"SourceID":70358,"TargetID":70359,"Directional":true}]},{"ID":16057,"SourceStructureID":70360,"TargetStructureID":70362,"Label":"70360-70362 via Conventional from 70361 -> 70363","Type":"Conventional","Directional":true,"Links":[{"SourceID":70361,"TargetID":70363,"Directional":true}]},{"ID":16058,"SourceStructureID":70360,"TargetStructureID":70365,"Label":"70360-70365 via Conventional from 70364 -> 70366","Type":"Conventional","Directional":true,"Links":[{"SourceID":70364,"TargetID":70366,"Directional":true}]},{"ID":16059,"SourceStructureID":70367,"TargetStructureID":70369,"Label":"70367-70369 via Conventional from 70368 -> 70370","Type":"Conventional","Directional":true,"Links":[{"SourceID":70368,"TargetID":70370,"Directional":true}]},{"ID":16060,"SourceStructureID":70371,"TargetStructureID":61823,"Label":"70371-61823 via Conventional from 70373 -> 70375","Type":"Conventional","Directional":true,"Links":[{"SourceID":70373,"TargetID":70375,"Directional":true}]},{"ID":16061,"SourceStructureID":70372,"TargetStructureID":70374,"Label":"70372-70374 via Conventional from 70376 -> 70377","Type":"Conventional","Directional":true,"Links":[{"SourceID":70376,"TargetID":70377,"Directional":true}]},{"ID":16062,"SourceStructureID":70381,"TargetStructureID":5284,"Label":"70381-5284 via Conventional from 70382 -> 70383","Type":"Conventional","Directional":true,"Links":[{"SourceID":70382,"TargetID":70383,"Directional":true}]},{"ID":16063,"SourceStructureID":70384,"TargetStructureID":70374,"Label":"70384-70374 via Conventional from 70386 -> 70385","Type":"Conventional","Directional":true,"Links":[{"SourceID":70386,"TargetID":70385,"Directional":true}]},{"ID":16064,"SourceStructureID":70394,"TargetStructureID":8589,"Label":"70394-8589 via Conventional from 70395 -> 70396","Type":"Conventional","Directional":true,"Links":[{"SourceID":70395,"TargetID":70396,"Directional":true}]},{"ID":16065,"SourceStructureID":70403,"TargetStructureID":8589,"Label":"70403-8589 via Ribbon Synapse from 70440 -> 70439","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":70440,"TargetID":70439,"Directional":true}]},{"ID":16066,"SourceStructureID":70415,"TargetStructureID":68539,"Label":"70415-68539 via Conventional from 70416 -> 70414","Type":"Conventional","Directional":true,"Links":[{"SourceID":70416,"TargetID":70414,"Directional":true}]},{"ID":16067,"SourceStructureID":70418,"TargetStructureID":58696,"Label":"70418-58696 via Conventional from 70420 -> 86932","Type":"Conventional","Directional":true,"Links":[{"SourceID":70420,"TargetID":86932,"Directional":true}]},{"ID":16068,"SourceStructureID":70422,"TargetStructureID":68539,"Label":"70422-68539 via Conventional from 70425 -> 76037","Type":"Conventional","Directional":true,"Links":[{"SourceID":70425,"TargetID":76037,"Directional":true}]},{"ID":16069,"SourceStructureID":70427,"TargetStructureID":5439,"Label":"70427-5439 via Conventional from 70428 -> 70429","Type":"Conventional","Directional":true,"Links":[{"SourceID":70428,"TargetID":70429,"Directional":true}]},{"ID":16070,"SourceStructureID":70432,"TargetStructureID":70427,"Label":"70432-70427 via Conventional from 70434 -> 70431","Type":"Conventional","Directional":true,"Links":[{"SourceID":70434,"TargetID":70431,"Directional":true}]},{"ID":16071,"SourceStructureID":70436,"TargetStructureID":5439,"Label":"70436-5439 via Conventional from 70437 -> 66547","Type":"Conventional","Directional":true,"Links":[{"SourceID":70437,"TargetID":66547,"Directional":true}]},{"ID":16072,"SourceStructureID":70449,"TargetStructureID":6117,"Label":"70449-6117 via Conventional from 70450 -> 25098","Type":"Conventional","Directional":true,"Links":[{"SourceID":70450,"TargetID":25098,"Directional":true}]},{"ID":16073,"SourceStructureID":70449,"TargetStructureID":7594,"Label":"70449-7594 via Conventional from 70451 -> 25097","Type":"Conventional","Directional":true,"Links":[{"SourceID":70451,"TargetID":25097,"Directional":true}]},{"ID":16074,"SourceStructureID":70454,"TargetStructureID":606,"Label":"70454-606 via Conventional from 89559 -> 51538, 89560 -> 89561","Type":"Conventional","Directional":true,"Links":[{"SourceID":89559,"TargetID":51538,"Directional":true},{"SourceID":89560,"TargetID":89561,"Directional":true}]},{"ID":16075,"SourceStructureID":70454,"TargetStructureID":5279,"Label":"70454-5279 via Conventional from 89564 -> 28313, 97334 -> 25813","Type":"Conventional","Directional":true,"Links":[{"SourceID":89564,"TargetID":28313,"Directional":true},{"SourceID":97334,"TargetID":25813,"Directional":true}]},{"ID":16076,"SourceStructureID":70454,"TargetStructureID":5284,"Label":"70454-5284 via Conventional from 113424 -> 113423","Type":"Conventional","Directional":true,"Links":[{"SourceID":113424,"TargetID":113423,"Directional":true}]},{"ID":16077,"SourceStructureID":70454,"TargetStructureID":5292,"Label":"70454-5292 via Conventional from 89566 -> 51548","Type":"Conventional","Directional":true,"Links":[{"SourceID":89566,"TargetID":51548,"Directional":true}]},{"ID":16078,"SourceStructureID":70454,"TargetStructureID":6117,"Label":"70454-6117 via Conventional from 70455 -> 51537","Type":"Conventional","Directional":true,"Links":[{"SourceID":70455,"TargetID":51537,"Directional":true}]},{"ID":16079,"SourceStructureID":70454,"TargetStructureID":89554,"Label":"70454-89554 via Conventional from 89553 -> 89558","Type":"Conventional","Directional":true,"Links":[{"SourceID":89553,"TargetID":89558,"Directional":true}]},{"ID":16080,"SourceStructureID":70456,"TargetStructureID":5281,"Label":"70456-5281 via Conventional from 86349 -> 86350","Type":"Conventional","Directional":true,"Links":[{"SourceID":86349,"TargetID":86350,"Directional":true}]},{"ID":16081,"SourceStructureID":70456,"TargetStructureID":6117,"Label":"70456-6117 via Conventional from 70457 -> 10542","Type":"Conventional","Directional":true,"Links":[{"SourceID":70457,"TargetID":10542,"Directional":true}]},{"ID":16082,"SourceStructureID":70458,"TargetStructureID":606,"Label":"70458-606 via Conventional from 83135 -> 10712","Type":"Conventional","Directional":true,"Links":[{"SourceID":83135,"TargetID":10712,"Directional":true}]},{"ID":16083,"SourceStructureID":70458,"TargetStructureID":6117,"Label":"70458-6117 via Conventional from 70459 -> 30886","Type":"Conventional","Directional":true,"Links":[{"SourceID":70459,"TargetID":30886,"Directional":true}]},{"ID":16084,"SourceStructureID":70460,"TargetStructureID":6117,"Label":"70460-6117 via Conventional from 70464 -> 70465","Type":"Conventional","Directional":true,"Links":[{"SourceID":70464,"TargetID":70465,"Directional":true}]},{"ID":16085,"SourceStructureID":70466,"TargetStructureID":6117,"Label":"70466-6117 via Conventional from 70468 -> 70467","Type":"Conventional","Directional":true,"Links":[{"SourceID":70468,"TargetID":70467,"Directional":true}]},{"ID":16086,"SourceStructureID":70469,"TargetStructureID":606,"Label":"70469-606 via Conventional from 70470 -> 10543","Type":"Conventional","Directional":true,"Links":[{"SourceID":70470,"TargetID":10543,"Directional":true}]},{"ID":16087,"SourceStructureID":70471,"TargetStructureID":6117,"Label":"70471-6117 via Conventional from 70472 -> 30935","Type":"Conventional","Directional":true,"Links":[{"SourceID":70472,"TargetID":30935,"Directional":true}]},{"ID":16088,"SourceStructureID":70476,"TargetStructureID":6117,"Label":"70476-6117 via Conventional from 70479 -> 70480","Type":"Conventional","Directional":true,"Links":[{"SourceID":70479,"TargetID":70480,"Directional":true}]},{"ID":16089,"SourceStructureID":70481,"TargetStructureID":6117,"Label":"70481-6117 via Conventional from 70482 -> 70483","Type":"Conventional","Directional":true,"Links":[{"SourceID":70482,"TargetID":70483,"Directional":true}]},{"ID":16090,"SourceStructureID":70485,"TargetStructureID":606,"Label":"70485-606 via Conventional from 70486 -> 10054","Type":"Conventional","Directional":true,"Links":[{"SourceID":70486,"TargetID":10054,"Directional":true}]},{"ID":16091,"SourceStructureID":70487,"TargetStructureID":6117,"Label":"70487-6117 via Conventional from 70488 -> 70489","Type":"Conventional","Directional":true,"Links":[{"SourceID":70488,"TargetID":70489,"Directional":true}]},{"ID":16092,"SourceStructureID":70495,"TargetStructureID":606,"Label":"70495-606 via Conventional from 70496 -> 48507","Type":"Conventional","Directional":true,"Links":[{"SourceID":70496,"TargetID":48507,"Directional":true}]},{"ID":16093,"SourceStructureID":70500,"TargetStructureID":5630,"Label":"70500-5630 via Conventional from 129052 -> 129061","Type":"Conventional","Directional":true,"Links":[{"SourceID":129052,"TargetID":129061,"Directional":true}]},{"ID":16094,"SourceStructureID":70514,"TargetStructureID":8589,"Label":"70514-8589 via Conventional from 70516 -> 70517","Type":"Conventional","Directional":true,"Links":[{"SourceID":70516,"TargetID":70517,"Directional":true}]},{"ID":16095,"SourceStructureID":70518,"TargetStructureID":419,"Label":"70518-419 via Conventional from 132601 -> 132600, 133542 -> 133541","Type":"Conventional","Directional":true,"Links":[{"SourceID":132601,"TargetID":132600,"Directional":true},{"SourceID":133542,"TargetID":133541,"Directional":true}]},{"ID":16096,"SourceStructureID":70529,"TargetStructureID":68539,"Label":"70529-68539 via Conventional from 70530 -> 70531","Type":"Conventional","Directional":true,"Links":[{"SourceID":70530,"TargetID":70531,"Directional":true}]},{"ID":16097,"SourceStructureID":70533,"TargetStructureID":5439,"Label":"70533-5439 via Conventional from 70534 -> 66550","Type":"Conventional","Directional":true,"Links":[{"SourceID":70534,"TargetID":66550,"Directional":true}]},{"ID":16098,"SourceStructureID":70535,"TargetStructureID":5439,"Label":"70535-5439 via Conventional from 70537 -> 66585","Type":"Conventional","Directional":true,"Links":[{"SourceID":70537,"TargetID":66585,"Directional":true}]},{"ID":16099,"SourceStructureID":70540,"TargetStructureID":5439,"Label":"70540-5439 via Conventional from 70541 -> 70542","Type":"Conventional","Directional":true,"Links":[{"SourceID":70541,"TargetID":70542,"Directional":true}]},{"ID":16100,"SourceStructureID":70544,"TargetStructureID":5439,"Label":"70544-5439 via Conventional from 70546 -> 70543","Type":"Conventional","Directional":true,"Links":[{"SourceID":70546,"TargetID":70543,"Directional":true}]},{"ID":16101,"SourceStructureID":70552,"TargetStructureID":5439,"Label":"70552-5439 via Conventional from 70553 -> 70554","Type":"Conventional","Directional":true,"Links":[{"SourceID":70553,"TargetID":70554,"Directional":true}]},{"ID":16102,"SourceStructureID":70559,"TargetStructureID":5439,"Label":"70559-5439 via Conventional from 70560 -> 66580","Type":"Conventional","Directional":true,"Links":[{"SourceID":70560,"TargetID":66580,"Directional":true}]},{"ID":16103,"SourceStructureID":70566,"TargetStructureID":5439,"Label":"70566-5439 via Conventional from 70567 -> 66566","Type":"Conventional","Directional":true,"Links":[{"SourceID":70567,"TargetID":66566,"Directional":true}]},{"ID":16104,"SourceStructureID":70570,"TargetStructureID":5439,"Label":"70570-5439 via Conventional from 70571 -> 66568","Type":"Conventional","Directional":true,"Links":[{"SourceID":70571,"TargetID":66568,"Directional":true}]},{"ID":16105,"SourceStructureID":70572,"TargetStructureID":166,"Label":"70572-166 via Conventional from 70573 -> 70575","Type":"Conventional","Directional":true,"Links":[{"SourceID":70573,"TargetID":70575,"Directional":true}]},{"ID":16106,"SourceStructureID":70572,"TargetStructureID":29198,"Label":"70572-29198 via Conventional from 70576 -> 29223","Type":"Conventional","Directional":true,"Links":[{"SourceID":70576,"TargetID":29223,"Directional":true}]},{"ID":16107,"SourceStructureID":70581,"TargetStructureID":5439,"Label":"70581-5439 via Conventional from 70582 -> 66571","Type":"Conventional","Directional":true,"Links":[{"SourceID":70582,"TargetID":66571,"Directional":true}]},{"ID":16108,"SourceStructureID":70581,"TargetStructureID":6857,"Label":"70581-6857 via Conventional from 70583 -> 7491","Type":"Conventional","Directional":true,"Links":[{"SourceID":70583,"TargetID":7491,"Directional":true}]},{"ID":16109,"SourceStructureID":70588,"TargetStructureID":5439,"Label":"70588-5439 via Conventional from 70590 -> 70591","Type":"Conventional","Directional":true,"Links":[{"SourceID":70590,"TargetID":70591,"Directional":true}]},{"ID":16110,"SourceStructureID":70593,"TargetStructureID":318,"Label":"70593-318 via Conventional from 70595 -> 70597","Type":"Conventional","Directional":true,"Links":[{"SourceID":70595,"TargetID":70597,"Directional":true}]},{"ID":16111,"SourceStructureID":70593,"TargetStructureID":5439,"Label":"70593-5439 via Conventional from 70607 -> 70608","Type":"Conventional","Directional":true,"Links":[{"SourceID":70607,"TargetID":70608,"Directional":true}]},{"ID":16112,"SourceStructureID":70593,"TargetStructureID":70599,"Label":"70593-70599 via Conventional from 70598 -> 70600","Type":"Conventional","Directional":true,"Links":[{"SourceID":70598,"TargetID":70600,"Directional":true}]},{"ID":16113,"SourceStructureID":70601,"TargetStructureID":69537,"Label":"70601-69537 via Conventional from 70603 -> 69769","Type":"Conventional","Directional":true,"Links":[{"SourceID":70603,"TargetID":69769,"Directional":true}]},{"ID":16114,"SourceStructureID":70601,"TargetStructureID":70593,"Label":"70601-70593 via Conventional from 70602 -> 70594","Type":"Conventional","Directional":true,"Links":[{"SourceID":70602,"TargetID":70594,"Directional":true}]},{"ID":16115,"SourceStructureID":70605,"TargetStructureID":70593,"Label":"70605-70593 via Conventional from 70606 -> 70604","Type":"Conventional","Directional":true,"Links":[{"SourceID":70606,"TargetID":70604,"Directional":true}]},{"ID":16116,"SourceStructureID":70612,"TargetStructureID":483,"Label":"70612-483 via Conventional from 70614 -> 6748","Type":"Conventional","Directional":true,"Links":[{"SourceID":70614,"TargetID":6748,"Directional":true}]},{"ID":16117,"SourceStructureID":70618,"TargetStructureID":70623,"Label":"70618-70623 via Conventional from 70620 -> 70625","Type":"Conventional","Directional":true,"Links":[{"SourceID":70620,"TargetID":70625,"Directional":true}]},{"ID":16118,"SourceStructureID":70621,"TargetStructureID":70623,"Label":"70621-70623 via Conventional from 70622 -> 70624","Type":"Conventional","Directional":true,"Links":[{"SourceID":70622,"TargetID":70624,"Directional":true}]},{"ID":16119,"SourceStructureID":70628,"TargetStructureID":5439,"Label":"70628-5439 via Conventional from 70629 -> 70627","Type":"Conventional","Directional":true,"Links":[{"SourceID":70629,"TargetID":70627,"Directional":true}]},{"ID":16120,"SourceStructureID":70632,"TargetStructureID":5439,"Label":"70632-5439 via Conventional from 70634 -> 70635","Type":"Conventional","Directional":true,"Links":[{"SourceID":70634,"TargetID":70635,"Directional":true}]},{"ID":16121,"SourceStructureID":70640,"TargetStructureID":5439,"Label":"70640-5439 via Conventional from 70641 -> 70642","Type":"Conventional","Directional":true,"Links":[{"SourceID":70641,"TargetID":70642,"Directional":true}]},{"ID":16122,"SourceStructureID":70646,"TargetStructureID":44346,"Label":"70646-44346 via Conventional from 70647 -> 44349","Type":"Conventional","Directional":true,"Links":[{"SourceID":70647,"TargetID":44349,"Directional":true}]},{"ID":16123,"SourceStructureID":70648,"TargetStructureID":5439,"Label":"70648-5439 via Conventional from 70649 -> 66599","Type":"Conventional","Directional":true,"Links":[{"SourceID":70649,"TargetID":66599,"Directional":true}]},{"ID":16124,"SourceStructureID":70651,"TargetStructureID":5439,"Label":"70651-5439 via Conventional from 70652 -> 66598","Type":"Conventional","Directional":true,"Links":[{"SourceID":70652,"TargetID":66598,"Directional":true}]},{"ID":16125,"SourceStructureID":70653,"TargetStructureID":5439,"Label":"70653-5439 via Conventional from 70654 -> 66605","Type":"Conventional","Directional":true,"Links":[{"SourceID":70654,"TargetID":66605,"Directional":true}]},{"ID":16126,"SourceStructureID":70655,"TargetStructureID":5439,"Label":"70655-5439 via Conventional from 70656 -> 66602","Type":"Conventional","Directional":true,"Links":[{"SourceID":70656,"TargetID":66602,"Directional":true}]},{"ID":16127,"SourceStructureID":70659,"TargetStructureID":70655,"Label":"70659-70655 via Conventional from 70660 -> 70657","Type":"Conventional","Directional":true,"Links":[{"SourceID":70660,"TargetID":70657,"Directional":true}]},{"ID":16128,"SourceStructureID":70663,"TargetStructureID":5439,"Label":"70663-5439 via Conventional from 70666 -> 66601","Type":"Conventional","Directional":true,"Links":[{"SourceID":70666,"TargetID":66601,"Directional":true}]},{"ID":16129,"SourceStructureID":70667,"TargetStructureID":5439,"Label":"70667-5439 via Conventional from 70668 -> 66597","Type":"Conventional","Directional":true,"Links":[{"SourceID":70668,"TargetID":66597,"Directional":true}]},{"ID":16130,"SourceStructureID":70674,"TargetStructureID":5439,"Label":"70674-5439 via Conventional from 70675 -> 70676","Type":"Conventional","Directional":true,"Links":[{"SourceID":70675,"TargetID":70676,"Directional":true}]},{"ID":16131,"SourceStructureID":70677,"TargetStructureID":5439,"Label":"70677-5439 via Conventional from 70678 -> 66615","Type":"Conventional","Directional":true,"Links":[{"SourceID":70678,"TargetID":66615,"Directional":true}]},{"ID":16132,"SourceStructureID":70682,"TargetStructureID":5439,"Label":"70682-5439 via Conventional from 70683 -> 66619","Type":"Conventional","Directional":true,"Links":[{"SourceID":70683,"TargetID":66619,"Directional":true}]},{"ID":16133,"SourceStructureID":70684,"TargetStructureID":5536,"Label":"70684-5536 via Conventional from 70688 -> 70687, 70690 -> 33296","Type":"Conventional","Directional":true,"Links":[{"SourceID":70688,"TargetID":70687,"Directional":true},{"SourceID":70690,"TargetID":33296,"Directional":true}]},{"ID":16134,"SourceStructureID":70684,"TargetStructureID":70709,"Label":"70684-70709 via Conventional from 70708 -> 70710","Type":"Conventional","Directional":true,"Links":[{"SourceID":70708,"TargetID":70710,"Directional":true}]},{"ID":16135,"SourceStructureID":70684,"TargetStructureID":70721,"Label":"70684-70721 via Conventional from 70720 -> 70722","Type":"Conventional","Directional":true,"Links":[{"SourceID":70720,"TargetID":70722,"Directional":true}]},{"ID":16136,"SourceStructureID":70693,"TargetStructureID":70684,"Label":"70693-70684 via Conventional from 70694 -> 70692","Type":"Conventional","Directional":true,"Links":[{"SourceID":70694,"TargetID":70692,"Directional":true}]},{"ID":16137,"SourceStructureID":70697,"TargetStructureID":70684,"Label":"70697-70684 via Conventional from 70698 -> 70696","Type":"Conventional","Directional":true,"Links":[{"SourceID":70698,"TargetID":70696,"Directional":true}]},{"ID":16138,"SourceStructureID":70699,"TargetStructureID":70684,"Label":"70699-70684 via Conventional from 70700 -> 70701","Type":"Conventional","Directional":true,"Links":[{"SourceID":70700,"TargetID":70701,"Directional":true}]},{"ID":16139,"SourceStructureID":70699,"TargetStructureID":70703,"Label":"70699-70703 via Conventional from 70702 -> 70704","Type":"Conventional","Directional":true,"Links":[{"SourceID":70702,"TargetID":70704,"Directional":true}]},{"ID":16140,"SourceStructureID":70706,"TargetStructureID":70684,"Label":"70706-70684 via Conventional from 70707 -> 70705","Type":"Conventional","Directional":true,"Links":[{"SourceID":70707,"TargetID":70705,"Directional":true}]},{"ID":16141,"SourceStructureID":70712,"TargetStructureID":70684,"Label":"70712-70684 via Conventional from 70713 -> 70711, 70716 -> 70717","Type":"Conventional","Directional":true,"Links":[{"SourceID":70713,"TargetID":70711,"Directional":true},{"SourceID":70716,"TargetID":70717,"Directional":true}]},{"ID":16142,"SourceStructureID":70729,"TargetStructureID":70684,"Label":"70729-70684 via Conventional from 70730 -> 70726","Type":"Conventional","Directional":true,"Links":[{"SourceID":70730,"TargetID":70726,"Directional":true}]},{"ID":16143,"SourceStructureID":70732,"TargetStructureID":70684,"Label":"70732-70684 via Conventional from 70733 -> 70731","Type":"Conventional","Directional":true,"Links":[{"SourceID":70733,"TargetID":70731,"Directional":true}]},{"ID":16144,"SourceStructureID":70735,"TargetStructureID":70684,"Label":"70735-70684 via Conventional from 70736 -> 70734","Type":"Conventional","Directional":true,"Links":[{"SourceID":70736,"TargetID":70734,"Directional":true}]},{"ID":16145,"SourceStructureID":70737,"TargetStructureID":70684,"Label":"70737-70684 via Conventional from 70738 -> 70739","Type":"Conventional","Directional":true,"Links":[{"SourceID":70738,"TargetID":70739,"Directional":true}]},{"ID":16146,"SourceStructureID":70740,"TargetStructureID":58696,"Label":"70740-58696 via Conventional from 70741 -> 58698","Type":"Conventional","Directional":true,"Links":[{"SourceID":70741,"TargetID":58698,"Directional":true}]},{"ID":16147,"SourceStructureID":70743,"TargetStructureID":5439,"Label":"70743-5439 via Conventional from 70744 -> 66610","Type":"Conventional","Directional":true,"Links":[{"SourceID":70744,"TargetID":66610,"Directional":true}]},{"ID":16148,"SourceStructureID":70745,"TargetStructureID":5439,"Label":"70745-5439 via Conventional from 70746 -> 66609","Type":"Conventional","Directional":true,"Links":[{"SourceID":70746,"TargetID":66609,"Directional":true}]},{"ID":16149,"SourceStructureID":70747,"TargetStructureID":5439,"Label":"70747-5439 via Conventional from 70748 -> 66608","Type":"Conventional","Directional":true,"Links":[{"SourceID":70748,"TargetID":66608,"Directional":true}]},{"ID":16150,"SourceStructureID":70757,"TargetStructureID":5118,"Label":"70757-5118 via Conventional from 70758 -> 70759","Type":"Conventional","Directional":true,"Links":[{"SourceID":70758,"TargetID":70759,"Directional":true}]},{"ID":16151,"SourceStructureID":70761,"TargetStructureID":15977,"Label":"70761-15977 via Conventional from 70762 -> 70760","Type":"Conventional","Directional":true,"Links":[{"SourceID":70762,"TargetID":70760,"Directional":true}]},{"ID":16152,"SourceStructureID":70770,"TargetStructureID":5439,"Label":"70770-5439 via Conventional from 70771 -> 70772","Type":"Conventional","Directional":true,"Links":[{"SourceID":70771,"TargetID":70772,"Directional":true}]},{"ID":16153,"SourceStructureID":70774,"TargetStructureID":70770,"Label":"70774-70770 via Conventional from 70775 -> 70773","Type":"Conventional","Directional":true,"Links":[{"SourceID":70775,"TargetID":70773,"Directional":true}]},{"ID":16154,"SourceStructureID":70778,"TargetStructureID":410,"Label":"70778-410 via Conventional from 70779 -> 21373","Type":"Conventional","Directional":true,"Links":[{"SourceID":70779,"TargetID":21373,"Directional":true}]},{"ID":16155,"SourceStructureID":70785,"TargetStructureID":410,"Label":"70785-410 via Conventional from 70786 -> 21551","Type":"Conventional","Directional":true,"Links":[{"SourceID":70786,"TargetID":21551,"Directional":true}]},{"ID":16156,"SourceStructureID":70789,"TargetStructureID":70795,"Label":"70789-70795 via Conventional from 70793 -> 70796","Type":"Conventional","Directional":true,"Links":[{"SourceID":70793,"TargetID":70796,"Directional":true}]},{"ID":16157,"SourceStructureID":70791,"TargetStructureID":410,"Label":"70791-410 via Conventional from 70792 -> 22632","Type":"Conventional","Directional":true,"Links":[{"SourceID":70792,"TargetID":22632,"Directional":true}]},{"ID":16158,"SourceStructureID":70809,"TargetStructureID":65623,"Label":"70809-65623 via Conventional from 70810 -> 70811","Type":"Conventional","Directional":true,"Links":[{"SourceID":70810,"TargetID":70811,"Directional":true}]},{"ID":16159,"SourceStructureID":70814,"TargetStructureID":410,"Label":"70814-410 via Conventional from 70815 -> 18280","Type":"Conventional","Directional":true,"Links":[{"SourceID":70815,"TargetID":18280,"Directional":true}]},{"ID":16160,"SourceStructureID":70820,"TargetStructureID":6589,"Label":"70820-6589 via Conventional from 70829 -> 9601","Type":"Conventional","Directional":true,"Links":[{"SourceID":70829,"TargetID":9601,"Directional":true}]},{"ID":16161,"SourceStructureID":70820,"TargetStructureID":13855,"Label":"70820-13855 via Conventional from 70821 -> 70819, 70830 -> 70831","Type":"Conventional","Directional":true,"Links":[{"SourceID":70821,"TargetID":70819,"Directional":true},{"SourceID":70830,"TargetID":70831,"Directional":true}]},{"ID":16162,"SourceStructureID":70820,"TargetStructureID":70833,"Label":"70820-70833 via Conventional from 70832 -> 70834","Type":"Conventional","Directional":true,"Links":[{"SourceID":70832,"TargetID":70834,"Directional":true}]},{"ID":16163,"SourceStructureID":70820,"TargetStructureID":70868,"Label":"70820-70868 via Conventional from 70867 -> 70872","Type":"Conventional","Directional":true,"Links":[{"SourceID":70867,"TargetID":70872,"Directional":true}]},{"ID":16164,"SourceStructureID":70833,"TargetStructureID":410,"Label":"70833-410 via Conventional from 70865 -> 8368, 70866 -> 17332","Type":"Conventional","Directional":true,"Links":[{"SourceID":70865,"TargetID":8368,"Directional":true},{"SourceID":70866,"TargetID":17332,"Directional":true}]},{"ID":16165,"SourceStructureID":70840,"TargetStructureID":5439,"Label":"70840-5439 via Conventional from 70841 -> 70842","Type":"Conventional","Directional":true,"Links":[{"SourceID":70841,"TargetID":70842,"Directional":true}]},{"ID":16166,"SourceStructureID":70845,"TargetStructureID":5439,"Label":"70845-5439 via Conventional from 70846 -> 70847","Type":"Conventional","Directional":true,"Links":[{"SourceID":70846,"TargetID":70847,"Directional":true}]},{"ID":16167,"SourceStructureID":70851,"TargetStructureID":5439,"Label":"70851-5439 via Conventional from 70852 -> 70850","Type":"Conventional","Directional":true,"Links":[{"SourceID":70852,"TargetID":70850,"Directional":true}]},{"ID":16168,"SourceStructureID":70868,"TargetStructureID":485,"Label":"70868-485 via Conventional from 70882 -> 101272","Type":"Conventional","Directional":true,"Links":[{"SourceID":70882,"TargetID":101272,"Directional":true}]},{"ID":16169,"SourceStructureID":70868,"TargetStructureID":66958,"Label":"70868-66958 via Conventional from 70087 -> 70088","Type":"Conventional","Directional":true,"Links":[{"SourceID":70087,"TargetID":70088,"Directional":true}]},{"ID":16170,"SourceStructureID":70868,"TargetStructureID":70878,"Label":"70868-70878 via Conventional from 70873 -> 70881","Type":"Conventional","Directional":true,"Links":[{"SourceID":70873,"TargetID":70881,"Directional":true}]},{"ID":16171,"SourceStructureID":70878,"TargetStructureID":485,"Label":"70878-485 via Conventional from 70879 -> 70875","Type":"Conventional","Directional":true,"Links":[{"SourceID":70879,"TargetID":70875,"Directional":true}]},{"ID":16172,"SourceStructureID":70901,"TargetStructureID":419,"Label":"70901-419 via Conventional from 70902 -> 70900","Type":"Conventional","Directional":true,"Links":[{"SourceID":70902,"TargetID":70900,"Directional":true}]},{"ID":16173,"SourceStructureID":70903,"TargetStructureID":13855,"Label":"70903-13855 via Conventional from 70904 -> 36324","Type":"Conventional","Directional":true,"Links":[{"SourceID":70904,"TargetID":36324,"Directional":true}]},{"ID":16174,"SourceStructureID":70906,"TargetStructureID":419,"Label":"70906-419 via Conventional from 70907 -> 70905","Type":"Conventional","Directional":true,"Links":[{"SourceID":70907,"TargetID":70905,"Directional":true}]},{"ID":16175,"SourceStructureID":70909,"TargetStructureID":13855,"Label":"70909-13855 via Conventional from 70910 -> 70908","Type":"Conventional","Directional":true,"Links":[{"SourceID":70910,"TargetID":70908,"Directional":true}]},{"ID":16176,"SourceStructureID":70912,"TargetStructureID":13855,"Label":"70912-13855 via Conventional from 70913 -> 70911","Type":"Conventional","Directional":true,"Links":[{"SourceID":70913,"TargetID":70911,"Directional":true}]},{"ID":16177,"SourceStructureID":71041,"TargetStructureID":4890,"Label":"71041-4890 via Conventional from 71042 -> 19990","Type":"Conventional","Directional":true,"Links":[{"SourceID":71042,"TargetID":19990,"Directional":true}]},{"ID":16178,"SourceStructureID":71043,"TargetStructureID":397,"Label":"71043-397 via Conventional from 71045 -> 71046","Type":"Conventional","Directional":true,"Links":[{"SourceID":71045,"TargetID":71046,"Directional":true}]},{"ID":16179,"SourceStructureID":71043,"TargetStructureID":4890,"Label":"71043-4890 via Conventional from 71044 -> 19995","Type":"Conventional","Directional":true,"Links":[{"SourceID":71044,"TargetID":19995,"Directional":true}]},{"ID":16180,"SourceStructureID":71057,"TargetStructureID":4890,"Label":"71057-4890 via Conventional from 71058 -> 7919","Type":"Conventional","Directional":true,"Links":[{"SourceID":71058,"TargetID":7919,"Directional":true}]},{"ID":16181,"SourceStructureID":71063,"TargetStructureID":5631,"Label":"71063-5631 via Conventional from 71064 -> 71062","Type":"Conventional","Directional":true,"Links":[{"SourceID":71064,"TargetID":71062,"Directional":true}]},{"ID":16182,"SourceStructureID":71073,"TargetStructureID":166,"Label":"71073-166 via Conventional from 71079 -> 71080","Type":"Conventional","Directional":true,"Links":[{"SourceID":71079,"TargetID":71080,"Directional":true}]},{"ID":16183,"SourceStructureID":71091,"TargetStructureID":483,"Label":"71091-483 via Conventional from 71093 -> 71092","Type":"Conventional","Directional":true,"Links":[{"SourceID":71093,"TargetID":71092,"Directional":true}]},{"ID":16184,"SourceStructureID":71098,"TargetStructureID":483,"Label":"71098-483 via Conventional from 71099 -> 71101","Type":"Conventional","Directional":true,"Links":[{"SourceID":71099,"TargetID":71101,"Directional":true}]},{"ID":16185,"SourceStructureID":71118,"TargetStructureID":5711,"Label":"71118-5711 via Conventional from 71147 -> 71148","Type":"Conventional","Directional":true,"Links":[{"SourceID":71147,"TargetID":71148,"Directional":true}]},{"ID":16186,"SourceStructureID":71118,"TargetStructureID":71125,"Label":"71118-71125 via Conventional from 71121 -> 71127","Type":"Conventional","Directional":true,"Links":[{"SourceID":71121,"TargetID":71127,"Directional":true}]},{"ID":16187,"SourceStructureID":71125,"TargetStructureID":71118,"Label":"71125-71118 via Conventional from 71126 -> 71124","Type":"Conventional","Directional":true,"Links":[{"SourceID":71126,"TargetID":71124,"Directional":true}]},{"ID":16188,"SourceStructureID":71133,"TargetStructureID":483,"Label":"71133-483 via Conventional from 71139 -> 71141","Type":"Conventional","Directional":true,"Links":[{"SourceID":71139,"TargetID":71141,"Directional":true}]},{"ID":16189,"SourceStructureID":71135,"TargetStructureID":71118,"Label":"71135-71118 via Ribbon Synapse from 71140 -> 71132","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71140,"TargetID":71132,"Directional":true}]},{"ID":16190,"SourceStructureID":71152,"TargetStructureID":71118,"Label":"71152-71118 via Conventional from 71156 -> 71150","Type":"Conventional","Directional":true,"Links":[{"SourceID":71156,"TargetID":71150,"Directional":true}]},{"ID":16191,"SourceStructureID":71155,"TargetStructureID":483,"Label":"71155-483 via Conventional from 71197 -> 71198","Type":"Conventional","Directional":true,"Links":[{"SourceID":71197,"TargetID":71198,"Directional":true}]},{"ID":16192,"SourceStructureID":71202,"TargetStructureID":483,"Label":"71202-483 via Conventional from 71203 -> 71205","Type":"Conventional","Directional":true,"Links":[{"SourceID":71203,"TargetID":71205,"Directional":true}]},{"ID":16193,"SourceStructureID":71202,"TargetStructureID":71202,"Label":"71202-71202 via Conventional from 71253 -> 71254","Type":"Conventional","Directional":true,"Links":[{"SourceID":71253,"TargetID":71254,"Directional":true}]},{"ID":16194,"SourceStructureID":71219,"TargetStructureID":483,"Label":"71219-483 via Conventional from 71220 -> 71221","Type":"Conventional","Directional":true,"Links":[{"SourceID":71220,"TargetID":71221,"Directional":true}]},{"ID":16195,"SourceStructureID":71227,"TargetStructureID":911,"Label":"71227-911 via Conventional from 71231 -> 943","Type":"Conventional","Directional":true,"Links":[{"SourceID":71231,"TargetID":943,"Directional":true}]},{"ID":16196,"SourceStructureID":71227,"TargetStructureID":2610,"Label":"71227-2610 via Conventional from 71228 -> 2728","Type":"Conventional","Directional":true,"Links":[{"SourceID":71228,"TargetID":2728,"Directional":true}]},{"ID":16197,"SourceStructureID":71240,"TargetStructureID":483,"Label":"71240-483 via Conventional from 71353 -> 71354","Type":"Conventional","Directional":true,"Links":[{"SourceID":71353,"TargetID":71354,"Directional":true}]},{"ID":16198,"SourceStructureID":71242,"TargetStructureID":70599,"Label":"71242-70599 via Conventional from 71255 -> 71256","Type":"Conventional","Directional":true,"Links":[{"SourceID":71255,"TargetID":71256,"Directional":true}]},{"ID":16199,"SourceStructureID":71281,"TargetStructureID":2610,"Label":"71281-2610 via Conventional from 71282 -> 2620","Type":"Conventional","Directional":true,"Links":[{"SourceID":71282,"TargetID":2620,"Directional":true}]},{"ID":16200,"SourceStructureID":71288,"TargetStructureID":483,"Label":"71288-483 via Conventional from 71290 -> 71291, 71294 -> 71295, 71387 -> 71388","Type":"Conventional","Directional":true,"Links":[{"SourceID":71290,"TargetID":71291,"Directional":true},{"SourceID":71294,"TargetID":71295,"Directional":true},{"SourceID":71387,"TargetID":71388,"Directional":true}]},{"ID":16201,"SourceStructureID":71302,"TargetStructureID":308,"Label":"71302-308 via Conventional from 71303 -> 42628","Type":"Conventional","Directional":true,"Links":[{"SourceID":71303,"TargetID":42628,"Directional":true}]},{"ID":16202,"SourceStructureID":71322,"TargetStructureID":8589,"Label":"71322-8589 via Conventional from 71323 -> 71324","Type":"Conventional","Directional":true,"Links":[{"SourceID":71323,"TargetID":71324,"Directional":true}]},{"ID":16203,"SourceStructureID":71334,"TargetStructureID":66634,"Label":"71334-66634 via Conventional from 71335 -> 71336","Type":"Conventional","Directional":true,"Links":[{"SourceID":71335,"TargetID":71336,"Directional":true}]},{"ID":16204,"SourceStructureID":71351,"TargetStructureID":71895,"Label":"71351-71895 via Conventional from 71896 -> 71897","Type":"Conventional","Directional":true,"Links":[{"SourceID":71896,"TargetID":71897,"Directional":true}]},{"ID":16205,"SourceStructureID":71362,"TargetStructureID":483,"Label":"71362-483 via Conventional from 71363 -> 71364","Type":"Conventional","Directional":true,"Links":[{"SourceID":71363,"TargetID":71364,"Directional":true}]},{"ID":16206,"SourceStructureID":71369,"TargetStructureID":483,"Label":"71369-483 via Conventional from 71370 -> 71371","Type":"Conventional","Directional":true,"Links":[{"SourceID":71370,"TargetID":71371,"Directional":true}]},{"ID":16207,"SourceStructureID":71377,"TargetStructureID":483,"Label":"71377-483 via Conventional from 71378 -> 6745","Type":"Conventional","Directional":true,"Links":[{"SourceID":71378,"TargetID":6745,"Directional":true}]},{"ID":16208,"SourceStructureID":71395,"TargetStructureID":8589,"Label":"71395-8589 via Conventional from 71398 -> 71399","Type":"Conventional","Directional":true,"Links":[{"SourceID":71398,"TargetID":71399,"Directional":true}]},{"ID":16209,"SourceStructureID":71402,"TargetStructureID":573,"Label":"71402-573 via Conventional from 71403 -> 71401","Type":"Conventional","Directional":true,"Links":[{"SourceID":71403,"TargetID":71401,"Directional":true}]},{"ID":16210,"SourceStructureID":71419,"TargetStructureID":573,"Label":"71419-573 via Conventional from 71420 -> 71418","Type":"Conventional","Directional":true,"Links":[{"SourceID":71420,"TargetID":71418,"Directional":true}]},{"ID":16211,"SourceStructureID":71433,"TargetStructureID":166,"Label":"71433-166 via Conventional from 71448 -> 71449","Type":"Conventional","Directional":true,"Links":[{"SourceID":71448,"TargetID":71449,"Directional":true}]},{"ID":16212,"SourceStructureID":71435,"TargetStructureID":166,"Label":"71435-166 via Conventional from 71436 -> 71437","Type":"Conventional","Directional":true,"Links":[{"SourceID":71436,"TargetID":71437,"Directional":true}]},{"ID":16213,"SourceStructureID":71439,"TargetStructureID":166,"Label":"71439-166 via Conventional from 71447 -> 71446","Type":"Conventional","Directional":true,"Links":[{"SourceID":71447,"TargetID":71446,"Directional":true}]},{"ID":16214,"SourceStructureID":71472,"TargetStructureID":166,"Label":"71472-166 via Conventional from 71473 -> 71471","Type":"Conventional","Directional":true,"Links":[{"SourceID":71473,"TargetID":71471,"Directional":true}]},{"ID":16215,"SourceStructureID":71481,"TargetStructureID":372,"Label":"71481-372 via Conventional from 71482 -> 71483","Type":"Conventional","Directional":true,"Links":[{"SourceID":71482,"TargetID":71483,"Directional":true}]},{"ID":16216,"SourceStructureID":71491,"TargetStructureID":71517,"Label":"71491-71517 via Conventional from 71492 -> 71490","Type":"Conventional","Directional":true,"Links":[{"SourceID":71492,"TargetID":71490,"Directional":true}]},{"ID":16217,"SourceStructureID":71497,"TargetStructureID":71517,"Label":"71497-71517 via Conventional from 71498 -> 71496","Type":"Conventional","Directional":true,"Links":[{"SourceID":71498,"TargetID":71496,"Directional":true}]},{"ID":16218,"SourceStructureID":71507,"TargetStructureID":71517,"Label":"71507-71517 via Conventional from 71508 -> 71506","Type":"Conventional","Directional":true,"Links":[{"SourceID":71508,"TargetID":71506,"Directional":true}]},{"ID":16219,"SourceStructureID":71511,"TargetStructureID":6115,"Label":"71511-6115 via Conventional from 75018 -> 75019","Type":"Conventional","Directional":true,"Links":[{"SourceID":75018,"TargetID":75019,"Directional":true}]},{"ID":16220,"SourceStructureID":71511,"TargetStructureID":71517,"Label":"71511-71517 via Conventional from 71512 -> 71510","Type":"Conventional","Directional":true,"Links":[{"SourceID":71512,"TargetID":71510,"Directional":true}]},{"ID":16221,"SourceStructureID":71513,"TargetStructureID":6857,"Label":"71513-6857 via Conventional from 71516 -> 6893","Type":"Conventional","Directional":true,"Links":[{"SourceID":71516,"TargetID":6893,"Directional":true}]},{"ID":16222,"SourceStructureID":71517,"TargetStructureID":6857,"Label":"71517-6857 via Conventional from 66677 -> 6884, 71499 -> 6890, 71524 -> 7551, 71525 -> 6897, 71527 -> 7554, 72118 -> 6882, 72121 -> 7550, 75166 -> 75167","Type":"Conventional","Directional":true,"Links":[{"SourceID":66677,"TargetID":6884,"Directional":true},{"SourceID":71499,"TargetID":6890,"Directional":true},{"SourceID":71524,"TargetID":7551,"Directional":true},{"SourceID":71525,"TargetID":6897,"Directional":true},{"SourceID":71527,"TargetID":7554,"Directional":true},{"SourceID":72118,"TargetID":6882,"Directional":true},{"SourceID":72121,"TargetID":7550,"Directional":true},{"SourceID":75166,"TargetID":75167,"Directional":true}]},{"ID":16223,"SourceStructureID":71517,"TargetStructureID":11030,"Label":"71517-11030 via Conventional from 71500 -> 71636","Type":"Conventional","Directional":true,"Links":[{"SourceID":71500,"TargetID":71636,"Directional":true}]},{"ID":16224,"SourceStructureID":71517,"TargetStructureID":66323,"Label":"71517-66323 via Conventional from 84422 -> 84421","Type":"Conventional","Directional":true,"Links":[{"SourceID":84422,"TargetID":84421,"Directional":true}]},{"ID":16225,"SourceStructureID":71517,"TargetStructureID":71519,"Label":"71517-71519 via Conventional from 71518 -> 71520","Type":"Conventional","Directional":true,"Links":[{"SourceID":71518,"TargetID":71520,"Directional":true}]},{"ID":16226,"SourceStructureID":71538,"TargetStructureID":71517,"Label":"71538-71517 via Conventional from 71539 -> 71537","Type":"Conventional","Directional":true,"Links":[{"SourceID":71539,"TargetID":71537,"Directional":true}]},{"ID":16227,"SourceStructureID":71541,"TargetStructureID":372,"Label":"71541-372 via Conventional from 71542 -> 71543","Type":"Conventional","Directional":true,"Links":[{"SourceID":71542,"TargetID":71543,"Directional":true}]},{"ID":16228,"SourceStructureID":71545,"TargetStructureID":71517,"Label":"71545-71517 via Conventional from 71546 -> 71544","Type":"Conventional","Directional":true,"Links":[{"SourceID":71546,"TargetID":71544,"Directional":true}]},{"ID":16229,"SourceStructureID":71547,"TargetStructureID":372,"Label":"71547-372 via Conventional from 71548 -> 71549","Type":"Conventional","Directional":true,"Links":[{"SourceID":71548,"TargetID":71549,"Directional":true}]},{"ID":16230,"SourceStructureID":71556,"TargetStructureID":372,"Label":"71556-372 via Conventional from 71557 -> 71558","Type":"Conventional","Directional":true,"Links":[{"SourceID":71557,"TargetID":71558,"Directional":true}]},{"ID":16231,"SourceStructureID":71569,"TargetStructureID":372,"Label":"71569-372 via Conventional from 71570 -> 71571","Type":"Conventional","Directional":true,"Links":[{"SourceID":71570,"TargetID":71571,"Directional":true}]},{"ID":16232,"SourceStructureID":71574,"TargetStructureID":372,"Label":"71574-372 via Conventional from 71575 -> 71573","Type":"Conventional","Directional":true,"Links":[{"SourceID":71575,"TargetID":71573,"Directional":true}]},{"ID":16233,"SourceStructureID":71576,"TargetStructureID":372,"Label":"71576-372 via Conventional from 71577 -> 71579","Type":"Conventional","Directional":true,"Links":[{"SourceID":71577,"TargetID":71579,"Directional":true}]},{"ID":16234,"SourceStructureID":71580,"TargetStructureID":372,"Label":"71580-372 via Conventional from 71581 -> 71582","Type":"Conventional","Directional":true,"Links":[{"SourceID":71581,"TargetID":71582,"Directional":true}]},{"ID":16235,"SourceStructureID":71583,"TargetStructureID":372,"Label":"71583-372 via Conventional from 71584 -> 71585","Type":"Conventional","Directional":true,"Links":[{"SourceID":71584,"TargetID":71585,"Directional":true}]},{"ID":16236,"SourceStructureID":71588,"TargetStructureID":372,"Label":"71588-372 via Conventional from 71589 -> 71590","Type":"Conventional","Directional":true,"Links":[{"SourceID":71589,"TargetID":71590,"Directional":true}]},{"ID":16237,"SourceStructureID":71594,"TargetStructureID":71597,"Label":"71594-71597 via Conventional from 71627 -> 71628","Type":"Conventional","Directional":true,"Links":[{"SourceID":71627,"TargetID":71628,"Directional":true}]},{"ID":16238,"SourceStructureID":71597,"TargetStructureID":8589,"Label":"71597-8589 via BC Conventional Synapse from 71784 -> 71748","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":71784,"TargetID":71748,"Directional":true}]},{"ID":16239,"SourceStructureID":71597,"TargetStructureID":8589,"Label":"71597-8589 via Ribbon Synapse from 71780 -> 71748","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71780,"TargetID":71748,"Directional":true}]},{"ID":16240,"SourceStructureID":71600,"TargetStructureID":71517,"Label":"71600-71517 via Conventional from 71601 -> 71599","Type":"Conventional","Directional":true,"Links":[{"SourceID":71601,"TargetID":71599,"Directional":true}]},{"ID":16241,"SourceStructureID":71610,"TargetStructureID":66634,"Label":"71610-66634 via Conventional from 71611 -> 71609","Type":"Conventional","Directional":true,"Links":[{"SourceID":71611,"TargetID":71609,"Directional":true}]},{"ID":16242,"SourceStructureID":71618,"TargetStructureID":66634,"Label":"71618-66634 via Conventional from 71619 -> 71617","Type":"Conventional","Directional":true,"Links":[{"SourceID":71619,"TargetID":71617,"Directional":true}]},{"ID":16243,"SourceStructureID":71626,"TargetStructureID":166,"Label":"71626-166 via Conventional from 71989 -> 71990, 71992 -> 71993","Type":"Conventional","Directional":true,"Links":[{"SourceID":71989,"TargetID":71990,"Directional":true},{"SourceID":71992,"TargetID":71993,"Directional":true}]},{"ID":16244,"SourceStructureID":71626,"TargetStructureID":71995,"Label":"71626-71995 via Conventional from 71994 -> 71996","Type":"Conventional","Directional":true,"Links":[{"SourceID":71994,"TargetID":71996,"Directional":true}]},{"ID":16245,"SourceStructureID":71632,"TargetStructureID":71517,"Label":"71632-71517 via Conventional from 71633 -> 71521","Type":"Conventional","Directional":true,"Links":[{"SourceID":71633,"TargetID":71521,"Directional":true}]},{"ID":16246,"SourceStructureID":71634,"TargetStructureID":5649,"Label":"71634-5649 via Conventional from 105698 -> 53938","Type":"Conventional","Directional":true,"Links":[{"SourceID":105698,"TargetID":53938,"Directional":true}]},{"ID":16247,"SourceStructureID":71634,"TargetStructureID":71517,"Label":"71634-71517 via Conventional from 71635 -> 71526","Type":"Conventional","Directional":true,"Links":[{"SourceID":71635,"TargetID":71526,"Directional":true}]},{"ID":16248,"SourceStructureID":71640,"TargetStructureID":8589,"Label":"71640-8589 via Conventional from 71647 -> 71664","Type":"Conventional","Directional":true,"Links":[{"SourceID":71647,"TargetID":71664,"Directional":true}]},{"ID":16249,"SourceStructureID":71671,"TargetStructureID":71730,"Label":"71671-71730 via Conventional from 71731 -> 71732, 71733 -> 71734, 71735 -> 71736","Type":"Conventional","Directional":true,"Links":[{"SourceID":71731,"TargetID":71732,"Directional":true},{"SourceID":71733,"TargetID":71734,"Directional":true},{"SourceID":71735,"TargetID":71736,"Directional":true}]},{"ID":16250,"SourceStructureID":71675,"TargetStructureID":71351,"Label":"71675-71351 via Conventional from 71676 -> 71674","Type":"Conventional","Directional":true,"Links":[{"SourceID":71676,"TargetID":71674,"Directional":true}]},{"ID":16251,"SourceStructureID":71678,"TargetStructureID":71351,"Label":"71678-71351 via Conventional from 71679 -> 71677","Type":"Conventional","Directional":true,"Links":[{"SourceID":71679,"TargetID":71677,"Directional":true}]},{"ID":16252,"SourceStructureID":71689,"TargetStructureID":6142,"Label":"71689-6142 via Conventional from 71690 -> 71688","Type":"Conventional","Directional":true,"Links":[{"SourceID":71690,"TargetID":71688,"Directional":true}]},{"ID":16253,"SourceStructureID":71722,"TargetStructureID":6857,"Label":"71722-6857 via Conventional from 71723 -> 71724","Type":"Conventional","Directional":true,"Links":[{"SourceID":71723,"TargetID":71724,"Directional":true}]},{"ID":16254,"SourceStructureID":71730,"TargetStructureID":71738,"Label":"71730-71738 via Ribbon Synapse from 71737 -> 71740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71737,"TargetID":71740,"Directional":true}]},{"ID":16255,"SourceStructureID":71730,"TargetStructureID":71739,"Label":"71730-71739 via Ribbon Synapse from 71737 -> 71741","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71737,"TargetID":71741,"Directional":true}]},{"ID":16256,"SourceStructureID":71730,"TargetStructureID":71767,"Label":"71730-71767 via Cistern Pre from 71818 -> 71819","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":71818,"TargetID":71819,"Directional":true}]},{"ID":16257,"SourceStructureID":71730,"TargetStructureID":71767,"Label":"71730-71767 via Ribbon Synapse from 71766 -> 71768","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71766,"TargetID":71768,"Directional":true}]},{"ID":16258,"SourceStructureID":71738,"TargetStructureID":71730,"Label":"71738-71730 via Conventional from 71760 -> 71759, 71764 -> 71763","Type":"Conventional","Directional":true,"Links":[{"SourceID":71760,"TargetID":71759,"Directional":true},{"SourceID":71764,"TargetID":71763,"Directional":true}]},{"ID":16259,"SourceStructureID":71754,"TargetStructureID":71730,"Label":"71754-71730 via Conventional from 71757 -> 71756","Type":"Conventional","Directional":true,"Links":[{"SourceID":71757,"TargetID":71756,"Directional":true}]},{"ID":16260,"SourceStructureID":71767,"TargetStructureID":71730,"Label":"71767-71730 via Conventional from 71770 -> 71769, 71807 -> 71806","Type":"Conventional","Directional":true,"Links":[{"SourceID":71770,"TargetID":71769,"Directional":true},{"SourceID":71807,"TargetID":71806,"Directional":true}]},{"ID":16261,"SourceStructureID":71773,"TargetStructureID":8589,"Label":"71773-8589 via Ribbon Synapse from 71775 -> 71776","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71775,"TargetID":71776,"Directional":true}]},{"ID":16262,"SourceStructureID":71781,"TargetStructureID":71730,"Label":"71781-71730 via Cistern Pre from 71820 -> 71821","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":71820,"TargetID":71821,"Directional":true}]},{"ID":16263,"SourceStructureID":71781,"TargetStructureID":71730,"Label":"71781-71730 via Conventional from 71822 -> 71823, 71834 -> 71833","Type":"Conventional","Directional":true,"Links":[{"SourceID":71822,"TargetID":71823,"Directional":true},{"SourceID":71834,"TargetID":71833,"Directional":true}]},{"ID":16264,"SourceStructureID":71790,"TargetStructureID":71730,"Label":"71790-71730 via Conventional from 71793 -> 71794, 71795 -> 71796","Type":"Conventional","Directional":true,"Links":[{"SourceID":71793,"TargetID":71794,"Directional":true},{"SourceID":71795,"TargetID":71796,"Directional":true}]},{"ID":16265,"SourceStructureID":71830,"TargetStructureID":321,"Label":"71830-321 via Conventional from 122110 -> 122111","Type":"Conventional","Directional":true,"Links":[{"SourceID":122110,"TargetID":122111,"Directional":true}]},{"ID":16266,"SourceStructureID":71830,"TargetStructureID":372,"Label":"71830-372 via Conventional from 71831 -> 71832","Type":"Conventional","Directional":true,"Links":[{"SourceID":71831,"TargetID":71832,"Directional":true}]},{"ID":16267,"SourceStructureID":71843,"TargetStructureID":372,"Label":"71843-372 via Conventional from 71844 -> 71845","Type":"Conventional","Directional":true,"Links":[{"SourceID":71844,"TargetID":71845,"Directional":true}]},{"ID":16268,"SourceStructureID":71853,"TargetStructureID":372,"Label":"71853-372 via Conventional from 71854 -> 71852","Type":"Conventional","Directional":true,"Links":[{"SourceID":71854,"TargetID":71852,"Directional":true}]},{"ID":16269,"SourceStructureID":71891,"TargetStructureID":180,"Label":"71891-180 via Conventional from 71892 -> 71893","Type":"Conventional","Directional":true,"Links":[{"SourceID":71892,"TargetID":71893,"Directional":true}]},{"ID":16270,"SourceStructureID":71906,"TargetStructureID":71911,"Label":"71906-71911 via Ribbon Synapse from 71907 -> 71912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71907,"TargetID":71912,"Directional":true}]},{"ID":16271,"SourceStructureID":71906,"TargetStructureID":71919,"Label":"71906-71919 via Ribbon Synapse from 71918 -> 71921","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71918,"TargetID":71921,"Directional":true}]},{"ID":16272,"SourceStructureID":71906,"TargetStructureID":71920,"Label":"71906-71920 via Ribbon Synapse from 71918 -> 71922","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71918,"TargetID":71922,"Directional":true}]},{"ID":16273,"SourceStructureID":71908,"TargetStructureID":71351,"Label":"71908-71351 via Conventional from 71909 -> 71910","Type":"Conventional","Directional":true,"Links":[{"SourceID":71909,"TargetID":71910,"Directional":true}]},{"ID":16274,"SourceStructureID":71915,"TargetStructureID":71906,"Label":"71915-71906 via Conventional from 71916 -> 71917","Type":"Conventional","Directional":true,"Links":[{"SourceID":71916,"TargetID":71917,"Directional":true}]},{"ID":16275,"SourceStructureID":71923,"TargetStructureID":69162,"Label":"71923-69162 via Conventional from 71924 -> 71925","Type":"Conventional","Directional":true,"Links":[{"SourceID":71924,"TargetID":71925,"Directional":true}]},{"ID":16276,"SourceStructureID":71927,"TargetStructureID":5284,"Label":"71927-5284 via Conventional from 71928 -> 98154","Type":"Conventional","Directional":true,"Links":[{"SourceID":71928,"TargetID":98154,"Directional":true}]},{"ID":16277,"SourceStructureID":71927,"TargetStructureID":15796,"Label":"71927-15796 via Conventional from 71929 -> 15820","Type":"Conventional","Directional":true,"Links":[{"SourceID":71929,"TargetID":15820,"Directional":true}]},{"ID":16278,"SourceStructureID":71935,"TargetStructureID":476,"Label":"71935-476 via Ribbon Synapse from 71942 -> 5721","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71942,"TargetID":5721,"Directional":true}]},{"ID":16279,"SourceStructureID":71935,"TargetStructureID":20299,"Label":"71935-20299 via Ribbon Synapse from 71941 -> 121510","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":71941,"TargetID":121510,"Directional":true}]},{"ID":16280,"SourceStructureID":71962,"TargetStructureID":71411,"Label":"71962-71411 via Conventional from 71966 -> 71960","Type":"Conventional","Directional":true,"Links":[{"SourceID":71966,"TargetID":71960,"Directional":true}]},{"ID":16281,"SourceStructureID":71985,"TargetStructureID":63487,"Label":"71985-63487 via Conventional from 71986 -> 71988","Type":"Conventional","Directional":true,"Links":[{"SourceID":71986,"TargetID":71988,"Directional":true}]},{"ID":16282,"SourceStructureID":71997,"TargetStructureID":71517,"Label":"71997-71517 via Conventional from 75005 -> 75004","Type":"Conventional","Directional":true,"Links":[{"SourceID":75005,"TargetID":75004,"Directional":true}]},{"ID":16283,"SourceStructureID":71998,"TargetStructureID":8720,"Label":"71998-8720 via Conventional from 71999 -> 64384","Type":"Conventional","Directional":true,"Links":[{"SourceID":71999,"TargetID":64384,"Directional":true}]},{"ID":16284,"SourceStructureID":72000,"TargetStructureID":8720,"Label":"72000-8720 via Conventional from 72001 -> 63172","Type":"Conventional","Directional":true,"Links":[{"SourceID":72001,"TargetID":63172,"Directional":true}]},{"ID":16285,"SourceStructureID":72003,"TargetStructureID":6115,"Label":"72003-6115 via Adherens from 75072 -> 75071","Type":"Adherens","Directional":true,"Links":[{"SourceID":75072,"TargetID":75071,"Directional":true}]},{"ID":16286,"SourceStructureID":72003,"TargetStructureID":6115,"Label":"72003-6115 via Conventional from 72006 -> 72007","Type":"Conventional","Directional":true,"Links":[{"SourceID":72006,"TargetID":72007,"Directional":true}]},{"ID":16287,"SourceStructureID":72031,"TargetStructureID":8589,"Label":"72031-8589 via Conventional from 72032 -> 72030","Type":"Conventional","Directional":true,"Links":[{"SourceID":72032,"TargetID":72030,"Directional":true}]},{"ID":16288,"SourceStructureID":72043,"TargetStructureID":72036,"Label":"72043-72036 via Conventional from 72044 -> 72042","Type":"Conventional","Directional":true,"Links":[{"SourceID":72044,"TargetID":72042,"Directional":true}]},{"ID":16289,"SourceStructureID":72074,"TargetStructureID":6115,"Label":"72074-6115 via Conventional from 72078 -> 37630","Type":"Conventional","Directional":true,"Links":[{"SourceID":72078,"TargetID":37630,"Directional":true}]},{"ID":16290,"SourceStructureID":72074,"TargetStructureID":72076,"Label":"72074-72076 via Conventional from 72150 -> 72149","Type":"Conventional","Directional":true,"Links":[{"SourceID":72150,"TargetID":72149,"Directional":true}]},{"ID":16291,"SourceStructureID":72087,"TargetStructureID":6115,"Label":"72087-6115 via Conventional from 72088 -> 37634","Type":"Conventional","Directional":true,"Links":[{"SourceID":72088,"TargetID":37634,"Directional":true}]},{"ID":16292,"SourceStructureID":72109,"TargetStructureID":8580,"Label":"72109-8580 via Conventional from 72110 -> 72111","Type":"Conventional","Directional":true,"Links":[{"SourceID":72110,"TargetID":72111,"Directional":true}]},{"ID":16293,"SourceStructureID":72124,"TargetStructureID":71517,"Label":"72124-71517 via Conventional from 72125 -> 71529","Type":"Conventional","Directional":true,"Links":[{"SourceID":72125,"TargetID":71529,"Directional":true}]},{"ID":16294,"SourceStructureID":72154,"TargetStructureID":71517,"Label":"72154-71517 via Conventional from 72156 -> 72155","Type":"Conventional","Directional":true,"Links":[{"SourceID":72156,"TargetID":72155,"Directional":true}]},{"ID":16295,"SourceStructureID":72162,"TargetStructureID":15796,"Label":"72162-15796 via Conventional from 82708 -> 15822","Type":"Conventional","Directional":true,"Links":[{"SourceID":82708,"TargetID":15822,"Directional":true}]},{"ID":16296,"SourceStructureID":72168,"TargetStructureID":5601,"Label":"72168-5601 via Conventional from 82958 -> 57192","Type":"Conventional","Directional":true,"Links":[{"SourceID":82958,"TargetID":57192,"Directional":true}]},{"ID":16297,"SourceStructureID":72168,"TargetStructureID":82950,"Label":"72168-82950 via Conventional from 82952 -> 82951","Type":"Conventional","Directional":true,"Links":[{"SourceID":82952,"TargetID":82951,"Directional":true}]},{"ID":16298,"SourceStructureID":72168,"TargetStructureID":82954,"Label":"72168-82954 via Conventional from 82953 -> 82957","Type":"Conventional","Directional":true,"Links":[{"SourceID":82953,"TargetID":82957,"Directional":true}]},{"ID":16299,"SourceStructureID":72168,"TargetStructureID":82965,"Label":"72168-82965 via Conventional from 82964 -> 82966","Type":"Conventional","Directional":true,"Links":[{"SourceID":82964,"TargetID":82966,"Directional":true}]},{"ID":16300,"SourceStructureID":72176,"TargetStructureID":6115,"Label":"72176-6115 via Conventional from 72177 -> 72178","Type":"Conventional","Directional":true,"Links":[{"SourceID":72177,"TargetID":72178,"Directional":true}]},{"ID":16301,"SourceStructureID":72183,"TargetStructureID":6115,"Label":"72183-6115 via Conventional from 72185 -> 20423","Type":"Conventional","Directional":true,"Links":[{"SourceID":72185,"TargetID":20423,"Directional":true}]},{"ID":16302,"SourceStructureID":72188,"TargetStructureID":6115,"Label":"72188-6115 via Conventional from 72190 -> 72191","Type":"Conventional","Directional":true,"Links":[{"SourceID":72190,"TargetID":72191,"Directional":true}]},{"ID":16303,"SourceStructureID":72210,"TargetStructureID":6115,"Label":"72210-6115 via Conventional from 72211 -> 55808","Type":"Conventional","Directional":true,"Links":[{"SourceID":72211,"TargetID":55808,"Directional":true}]},{"ID":16304,"SourceStructureID":72215,"TargetStructureID":6115,"Label":"72215-6115 via Conventional from 72216 -> 72217","Type":"Conventional","Directional":true,"Links":[{"SourceID":72216,"TargetID":72217,"Directional":true}]},{"ID":16305,"SourceStructureID":72218,"TargetStructureID":6115,"Label":"72218-6115 via Conventional from 72269 -> 72267","Type":"Conventional","Directional":true,"Links":[{"SourceID":72269,"TargetID":72267,"Directional":true}]},{"ID":16306,"SourceStructureID":72226,"TargetStructureID":6115,"Label":"72226-6115 via Conventional from 72230 -> 72231","Type":"Conventional","Directional":true,"Links":[{"SourceID":72230,"TargetID":72231,"Directional":true}]},{"ID":16307,"SourceStructureID":72252,"TargetStructureID":7113,"Label":"72252-7113 via Ribbon Synapse from 82982 -> 82983","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82982,"TargetID":82983,"Directional":true}]},{"ID":16308,"SourceStructureID":72252,"TargetStructureID":82977,"Label":"72252-82977 via Ribbon Synapse from 82982 -> 82984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82982,"TargetID":82984,"Directional":true}]},{"ID":16309,"SourceStructureID":72252,"TargetStructureID":82978,"Label":"72252-82978 via Ribbon Synapse from 82973 -> 82979","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82973,"TargetID":82979,"Directional":true}]},{"ID":16310,"SourceStructureID":72271,"TargetStructureID":6115,"Label":"72271-6115 via Conventional from 72277 -> 72278","Type":"Conventional","Directional":true,"Links":[{"SourceID":72277,"TargetID":72278,"Directional":true}]},{"ID":16311,"SourceStructureID":72281,"TargetStructureID":6115,"Label":"72281-6115 via Conventional from 72282 -> 72283","Type":"Conventional","Directional":true,"Links":[{"SourceID":72282,"TargetID":72283,"Directional":true}]},{"ID":16312,"SourceStructureID":72291,"TargetStructureID":6115,"Label":"72291-6115 via Conventional from 72292 -> 72293","Type":"Conventional","Directional":true,"Links":[{"SourceID":72292,"TargetID":72293,"Directional":true}]},{"ID":16313,"SourceStructureID":72301,"TargetStructureID":6115,"Label":"72301-6115 via Conventional from 72302 -> 72303","Type":"Conventional","Directional":true,"Links":[{"SourceID":72302,"TargetID":72303,"Directional":true}]},{"ID":16314,"SourceStructureID":72306,"TargetStructureID":6115,"Label":"72306-6115 via Conventional from 72307 -> 72308","Type":"Conventional","Directional":true,"Links":[{"SourceID":72307,"TargetID":72308,"Directional":true}]},{"ID":16315,"SourceStructureID":72309,"TargetStructureID":6115,"Label":"72309-6115 via Conventional from 72317 -> 72318","Type":"Conventional","Directional":true,"Links":[{"SourceID":72317,"TargetID":72318,"Directional":true}]},{"ID":16316,"SourceStructureID":72323,"TargetStructureID":6115,"Label":"72323-6115 via Conventional from 72324 -> 72325","Type":"Conventional","Directional":true,"Links":[{"SourceID":72324,"TargetID":72325,"Directional":true}]},{"ID":16317,"SourceStructureID":72335,"TargetStructureID":6115,"Label":"72335-6115 via Conventional from 72336 -> 72337","Type":"Conventional","Directional":true,"Links":[{"SourceID":72336,"TargetID":72337,"Directional":true}]},{"ID":16318,"SourceStructureID":72342,"TargetStructureID":6115,"Label":"72342-6115 via Conventional from 72343 -> 20430","Type":"Conventional","Directional":true,"Links":[{"SourceID":72343,"TargetID":20430,"Directional":true}]},{"ID":16319,"SourceStructureID":72344,"TargetStructureID":6115,"Label":"72344-6115 via Conventional from 72346 -> 72345","Type":"Conventional","Directional":true,"Links":[{"SourceID":72346,"TargetID":72345,"Directional":true}]},{"ID":16320,"SourceStructureID":72347,"TargetStructureID":6115,"Label":"72347-6115 via Conventional from 72349 -> 72348","Type":"Conventional","Directional":true,"Links":[{"SourceID":72349,"TargetID":72348,"Directional":true}]},{"ID":16321,"SourceStructureID":72350,"TargetStructureID":6115,"Label":"72350-6115 via Conventional from 72351 -> 72352","Type":"Conventional","Directional":true,"Links":[{"SourceID":72351,"TargetID":72352,"Directional":true}]},{"ID":16322,"SourceStructureID":72358,"TargetStructureID":6050,"Label":"72358-6050 via Conventional from 72361 -> 72362","Type":"Conventional","Directional":true,"Links":[{"SourceID":72361,"TargetID":72362,"Directional":true}]},{"ID":16323,"SourceStructureID":72379,"TargetStructureID":6115,"Label":"72379-6115 via Conventional from 72380 -> 72381","Type":"Conventional","Directional":true,"Links":[{"SourceID":72380,"TargetID":72381,"Directional":true}]},{"ID":16324,"SourceStructureID":72384,"TargetStructureID":68663,"Label":"72384-68663 via Conventional from 79049 -> 79050","Type":"Conventional","Directional":true,"Links":[{"SourceID":79049,"TargetID":79050,"Directional":true}]},{"ID":16325,"SourceStructureID":72385,"TargetStructureID":6115,"Label":"72385-6115 via Conventional from 72386 -> 55850","Type":"Conventional","Directional":true,"Links":[{"SourceID":72386,"TargetID":55850,"Directional":true}]},{"ID":16326,"SourceStructureID":72401,"TargetStructureID":6115,"Label":"72401-6115 via Conventional from 72421 -> 72420","Type":"Conventional","Directional":true,"Links":[{"SourceID":72421,"TargetID":72420,"Directional":true}]},{"ID":16327,"SourceStructureID":72402,"TargetStructureID":18282,"Label":"72402-18282 via Ribbon Synapse from 72404 -> 18327","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":72404,"TargetID":18327,"Directional":true}]},{"ID":16328,"SourceStructureID":72408,"TargetStructureID":8580,"Label":"72408-8580 via Conventional from 72409 -> 72407","Type":"Conventional","Directional":true,"Links":[{"SourceID":72409,"TargetID":72407,"Directional":true}]},{"ID":16329,"SourceStructureID":72427,"TargetStructureID":593,"Label":"72427-593 via Conventional from 72428 -> 72429","Type":"Conventional","Directional":true,"Links":[{"SourceID":72428,"TargetID":72429,"Directional":true}]},{"ID":16330,"SourceStructureID":72441,"TargetStructureID":6115,"Label":"72441-6115 via Conventional from 72442 -> 72443","Type":"Conventional","Directional":true,"Links":[{"SourceID":72442,"TargetID":72443,"Directional":true}]},{"ID":16331,"SourceStructureID":72451,"TargetStructureID":6115,"Label":"72451-6115 via Conventional from 72452 -> 16055","Type":"Conventional","Directional":true,"Links":[{"SourceID":72452,"TargetID":16055,"Directional":true}]},{"ID":16332,"SourceStructureID":72453,"TargetStructureID":6115,"Label":"72453-6115 via Conventional from 72454 -> 72455","Type":"Conventional","Directional":true,"Links":[{"SourceID":72454,"TargetID":72455,"Directional":true}]},{"ID":16333,"SourceStructureID":72460,"TargetStructureID":6115,"Label":"72460-6115 via Conventional from 72461 -> 55856","Type":"Conventional","Directional":true,"Links":[{"SourceID":72461,"TargetID":55856,"Directional":true}]},{"ID":16334,"SourceStructureID":72463,"TargetStructureID":6115,"Label":"72463-6115 via Conventional from 72464 -> 55857","Type":"Conventional","Directional":true,"Links":[{"SourceID":72464,"TargetID":55857,"Directional":true}]},{"ID":16335,"SourceStructureID":72474,"TargetStructureID":8580,"Label":"72474-8580 via Conventional from 72475 -> 72476","Type":"Conventional","Directional":true,"Links":[{"SourceID":72475,"TargetID":72476,"Directional":true}]},{"ID":16336,"SourceStructureID":72477,"TargetStructureID":8580,"Label":"72477-8580 via Conventional from 72478 -> 72479","Type":"Conventional","Directional":true,"Links":[{"SourceID":72478,"TargetID":72479,"Directional":true}]},{"ID":16337,"SourceStructureID":72480,"TargetStructureID":8580,"Label":"72480-8580 via Conventional from 72481 -> 72482","Type":"Conventional","Directional":true,"Links":[{"SourceID":72481,"TargetID":72482,"Directional":true}]},{"ID":16338,"SourceStructureID":72505,"TargetStructureID":6115,"Label":"72505-6115 via Conventional from 72512 -> 55851","Type":"Conventional","Directional":true,"Links":[{"SourceID":72512,"TargetID":55851,"Directional":true}]},{"ID":16339,"SourceStructureID":72523,"TargetStructureID":44970,"Label":"72523-44970 via Conventional from 82431 -> 44980","Type":"Conventional","Directional":true,"Links":[{"SourceID":82431,"TargetID":44980,"Directional":true}]},{"ID":16340,"SourceStructureID":72523,"TargetStructureID":82432,"Label":"72523-82432 via Conventional from 82433 -> 82434","Type":"Conventional","Directional":true,"Links":[{"SourceID":82433,"TargetID":82434,"Directional":true}]},{"ID":16341,"SourceStructureID":72526,"TargetStructureID":6115,"Label":"72526-6115 via Conventional from 72527 -> 72528","Type":"Conventional","Directional":true,"Links":[{"SourceID":72527,"TargetID":72528,"Directional":true}]},{"ID":16342,"SourceStructureID":72547,"TargetStructureID":6115,"Label":"72547-6115 via Conventional from 72548 -> 72549","Type":"Conventional","Directional":true,"Links":[{"SourceID":72548,"TargetID":72549,"Directional":true}]},{"ID":16343,"SourceStructureID":72550,"TargetStructureID":6115,"Label":"72550-6115 via Conventional from 72551 -> 72552","Type":"Conventional","Directional":true,"Links":[{"SourceID":72551,"TargetID":72552,"Directional":true}]},{"ID":16344,"SourceStructureID":72553,"TargetStructureID":6115,"Label":"72553-6115 via Conventional from 72554 -> 72555","Type":"Conventional","Directional":true,"Links":[{"SourceID":72554,"TargetID":72555,"Directional":true}]},{"ID":16345,"SourceStructureID":72563,"TargetStructureID":6115,"Label":"72563-6115 via Conventional from 72564 -> 72565","Type":"Conventional","Directional":true,"Links":[{"SourceID":72564,"TargetID":72565,"Directional":true}]},{"ID":16346,"SourceStructureID":72566,"TargetStructureID":6115,"Label":"72566-6115 via Conventional from 73157 -> 73158, 73159 -> 73160","Type":"Conventional","Directional":true,"Links":[{"SourceID":73157,"TargetID":73158,"Directional":true},{"SourceID":73159,"TargetID":73160,"Directional":true}]},{"ID":16347,"SourceStructureID":72566,"TargetStructureID":72604,"Label":"72566-72604 via Adherens from 81893 -> 81892","Type":"Adherens","Directional":true,"Links":[{"SourceID":81893,"TargetID":81892,"Directional":true}]},{"ID":16348,"SourceStructureID":72569,"TargetStructureID":6115,"Label":"72569-6115 via Conventional from 72570 -> 72571","Type":"Conventional","Directional":true,"Links":[{"SourceID":72570,"TargetID":72571,"Directional":true}]},{"ID":16349,"SourceStructureID":72587,"TargetStructureID":6115,"Label":"72587-6115 via Conventional from 72588 -> 59600","Type":"Conventional","Directional":true,"Links":[{"SourceID":72588,"TargetID":59600,"Directional":true}]},{"ID":16350,"SourceStructureID":72604,"TargetStructureID":82559,"Label":"72604-82559 via Conventional from 82297 -> 82560","Type":"Conventional","Directional":true,"Links":[{"SourceID":82297,"TargetID":82560,"Directional":true}]},{"ID":16351,"SourceStructureID":72609,"TargetStructureID":6115,"Label":"72609-6115 via Conventional from 72610 -> 59603","Type":"Conventional","Directional":true,"Links":[{"SourceID":72610,"TargetID":59603,"Directional":true}]},{"ID":16352,"SourceStructureID":72614,"TargetStructureID":6115,"Label":"72614-6115 via Conventional from 72615 -> 59602","Type":"Conventional","Directional":true,"Links":[{"SourceID":72615,"TargetID":59602,"Directional":true}]},{"ID":16353,"SourceStructureID":72616,"TargetStructureID":6115,"Label":"72616-6115 via Conventional from 72617 -> 59601","Type":"Conventional","Directional":true,"Links":[{"SourceID":72617,"TargetID":59601,"Directional":true}]},{"ID":16354,"SourceStructureID":72623,"TargetStructureID":6115,"Label":"72623-6115 via Unknown from 72625 -> 72624","Type":"Unknown","Directional":true,"Links":[{"SourceID":72625,"TargetID":72624,"Directional":true}]},{"ID":16355,"SourceStructureID":72638,"TargetStructureID":180,"Label":"72638-180 via Conventional from 133032 -> 132936","Type":"Conventional","Directional":true,"Links":[{"SourceID":133032,"TargetID":132936,"Directional":true}]},{"ID":16356,"SourceStructureID":72640,"TargetStructureID":6115,"Label":"72640-6115 via Conventional from 72641 -> 72642","Type":"Conventional","Directional":true,"Links":[{"SourceID":72641,"TargetID":72642,"Directional":true}]},{"ID":16357,"SourceStructureID":72688,"TargetStructureID":6115,"Label":"72688-6115 via Conventional from 72689 -> 59598","Type":"Conventional","Directional":true,"Links":[{"SourceID":72689,"TargetID":59598,"Directional":true}]},{"ID":16358,"SourceStructureID":72705,"TargetStructureID":6115,"Label":"72705-6115 via Conventional from 72706 -> 72707","Type":"Conventional","Directional":true,"Links":[{"SourceID":72706,"TargetID":72707,"Directional":true}]},{"ID":16359,"SourceStructureID":72713,"TargetStructureID":6115,"Label":"72713-6115 via Conventional from 72714 -> 72715","Type":"Conventional","Directional":true,"Links":[{"SourceID":72714,"TargetID":72715,"Directional":true}]},{"ID":16360,"SourceStructureID":72766,"TargetStructureID":6115,"Label":"72766-6115 via Conventional from 82639 -> 82640","Type":"Conventional","Directional":true,"Links":[{"SourceID":82639,"TargetID":82640,"Directional":true}]},{"ID":16361,"SourceStructureID":72778,"TargetStructureID":6115,"Label":"72778-6115 via Conventional from 72779 -> 72780","Type":"Conventional","Directional":true,"Links":[{"SourceID":72779,"TargetID":72780,"Directional":true}]},{"ID":16362,"SourceStructureID":72799,"TargetStructureID":6115,"Label":"72799-6115 via Conventional from 72800 -> 55800","Type":"Conventional","Directional":true,"Links":[{"SourceID":72800,"TargetID":55800,"Directional":true}]},{"ID":16363,"SourceStructureID":72807,"TargetStructureID":6115,"Label":"72807-6115 via Conventional from 72808 -> 72809","Type":"Conventional","Directional":true,"Links":[{"SourceID":72808,"TargetID":72809,"Directional":true}]},{"ID":16364,"SourceStructureID":72810,"TargetStructureID":6115,"Label":"72810-6115 via Conventional from 72811 -> 72812","Type":"Conventional","Directional":true,"Links":[{"SourceID":72811,"TargetID":72812,"Directional":true}]},{"ID":16365,"SourceStructureID":72815,"TargetStructureID":6115,"Label":"72815-6115 via Conventional from 72816 -> 72817","Type":"Conventional","Directional":true,"Links":[{"SourceID":72816,"TargetID":72817,"Directional":true}]},{"ID":16366,"SourceStructureID":72819,"TargetStructureID":6115,"Label":"72819-6115 via Conventional from 72820 -> 55804","Type":"Conventional","Directional":true,"Links":[{"SourceID":72820,"TargetID":55804,"Directional":true}]},{"ID":16367,"SourceStructureID":72823,"TargetStructureID":6115,"Label":"72823-6115 via Conventional from 72824 -> 72825","Type":"Conventional","Directional":true,"Links":[{"SourceID":72824,"TargetID":72825,"Directional":true}]},{"ID":16368,"SourceStructureID":72834,"TargetStructureID":6115,"Label":"72834-6115 via Conventional from 80967 -> 80968","Type":"Conventional","Directional":true,"Links":[{"SourceID":80967,"TargetID":80968,"Directional":true}]},{"ID":16369,"SourceStructureID":72844,"TargetStructureID":6115,"Label":"72844-6115 via Conventional from 72845 -> 72846","Type":"Conventional","Directional":true,"Links":[{"SourceID":72845,"TargetID":72846,"Directional":true}]},{"ID":16370,"SourceStructureID":72847,"TargetStructureID":6115,"Label":"72847-6115 via Conventional from 72848 -> 72849","Type":"Conventional","Directional":true,"Links":[{"SourceID":72848,"TargetID":72849,"Directional":true}]},{"ID":16371,"SourceStructureID":72855,"TargetStructureID":68539,"Label":"72855-68539 via Conventional from 72856 -> 72854","Type":"Conventional","Directional":true,"Links":[{"SourceID":72856,"TargetID":72854,"Directional":true}]},{"ID":16372,"SourceStructureID":72858,"TargetStructureID":68539,"Label":"72858-68539 via Conventional from 72859 -> 72862, 72860 -> 72861","Type":"Conventional","Directional":true,"Links":[{"SourceID":72859,"TargetID":72862,"Directional":true},{"SourceID":72860,"TargetID":72861,"Directional":true}]},{"ID":16373,"SourceStructureID":72865,"TargetStructureID":68539,"Label":"72865-68539 via Conventional from 72866 -> 72867","Type":"Conventional","Directional":true,"Links":[{"SourceID":72866,"TargetID":72867,"Directional":true}]},{"ID":16374,"SourceStructureID":72873,"TargetStructureID":68539,"Label":"72873-68539 via Conventional from 72874 -> 72886","Type":"Conventional","Directional":true,"Links":[{"SourceID":72874,"TargetID":72886,"Directional":true}]},{"ID":16375,"SourceStructureID":72876,"TargetStructureID":68539,"Label":"72876-68539 via Conventional from 72878 -> 72890","Type":"Conventional","Directional":true,"Links":[{"SourceID":72878,"TargetID":72890,"Directional":true}]},{"ID":16376,"SourceStructureID":72879,"TargetStructureID":68539,"Label":"72879-68539 via Conventional from 72880 -> 72891","Type":"Conventional","Directional":true,"Links":[{"SourceID":72880,"TargetID":72891,"Directional":true}]},{"ID":16377,"SourceStructureID":72882,"TargetStructureID":72876,"Label":"72882-72876 via Conventional from 72883 -> 72877","Type":"Conventional","Directional":true,"Links":[{"SourceID":72883,"TargetID":72877,"Directional":true}]},{"ID":16378,"SourceStructureID":72892,"TargetStructureID":142,"Label":"72892-142 via Conventional from 72893 -> 49766","Type":"Conventional","Directional":true,"Links":[{"SourceID":72893,"TargetID":49766,"Directional":true}]},{"ID":16379,"SourceStructureID":72907,"TargetStructureID":6115,"Label":"72907-6115 via Conventional from 72908 -> 72909","Type":"Conventional","Directional":true,"Links":[{"SourceID":72908,"TargetID":72909,"Directional":true}]},{"ID":16380,"SourceStructureID":72934,"TargetStructureID":6115,"Label":"72934-6115 via Conventional from 72935 -> 72933","Type":"Conventional","Directional":true,"Links":[{"SourceID":72935,"TargetID":72933,"Directional":true}]},{"ID":16381,"SourceStructureID":72936,"TargetStructureID":6115,"Label":"72936-6115 via Conventional from 72937 -> 55913, 72938 -> 55913","Type":"Conventional","Directional":true,"Links":[{"SourceID":72937,"TargetID":55913,"Directional":true},{"SourceID":72938,"TargetID":55913,"Directional":true}]},{"ID":16382,"SourceStructureID":72939,"TargetStructureID":6115,"Label":"72939-6115 via Conventional from 72940 -> 55912","Type":"Conventional","Directional":true,"Links":[{"SourceID":72940,"TargetID":55912,"Directional":true}]},{"ID":16383,"SourceStructureID":72949,"TargetStructureID":6115,"Label":"72949-6115 via Conventional from 72950 -> 72951","Type":"Conventional","Directional":true,"Links":[{"SourceID":72950,"TargetID":72951,"Directional":true}]},{"ID":16384,"SourceStructureID":72964,"TargetStructureID":6115,"Label":"72964-6115 via Conventional from 72966 -> 55777","Type":"Conventional","Directional":true,"Links":[{"SourceID":72966,"TargetID":55777,"Directional":true}]},{"ID":16385,"SourceStructureID":72965,"TargetStructureID":6115,"Label":"72965-6115 via Conventional from 72967 -> 72968","Type":"Conventional","Directional":true,"Links":[{"SourceID":72967,"TargetID":72968,"Directional":true}]},{"ID":16386,"SourceStructureID":72965,"TargetStructureID":72969,"Label":"72965-72969 via Conventional from 72967 -> 72970","Type":"Conventional","Directional":true,"Links":[{"SourceID":72967,"TargetID":72970,"Directional":true}]},{"ID":16387,"SourceStructureID":72973,"TargetStructureID":6115,"Label":"72973-6115 via Conventional from 72974 -> 55907","Type":"Conventional","Directional":true,"Links":[{"SourceID":72974,"TargetID":55907,"Directional":true}]},{"ID":16388,"SourceStructureID":72975,"TargetStructureID":6115,"Label":"72975-6115 via Conventional from 72976 -> 72977","Type":"Conventional","Directional":true,"Links":[{"SourceID":72976,"TargetID":72977,"Directional":true}]},{"ID":16389,"SourceStructureID":72987,"TargetStructureID":6115,"Label":"72987-6115 via Conventional from 72996 -> 72997, 73016 -> 55900","Type":"Conventional","Directional":true,"Links":[{"SourceID":72996,"TargetID":72997,"Directional":true},{"SourceID":73016,"TargetID":55900,"Directional":true}]},{"ID":16390,"SourceStructureID":72989,"TargetStructureID":16026,"Label":"72989-16026 via Conventional from 115224 -> 25647","Type":"Conventional","Directional":true,"Links":[{"SourceID":115224,"TargetID":25647,"Directional":true}]},{"ID":16391,"SourceStructureID":72989,"TargetStructureID":72994,"Label":"72989-72994 via Conventional from 72990 -> 72995","Type":"Conventional","Directional":true,"Links":[{"SourceID":72990,"TargetID":72995,"Directional":true}]},{"ID":16392,"SourceStructureID":72992,"TargetStructureID":72989,"Label":"72992-72989 via Conventional from 72993 -> 72991","Type":"Conventional","Directional":true,"Links":[{"SourceID":72993,"TargetID":72991,"Directional":true}]},{"ID":16393,"SourceStructureID":73004,"TargetStructureID":6115,"Label":"73004-6115 via Conventional from 73012 -> 75995","Type":"Conventional","Directional":true,"Links":[{"SourceID":73012,"TargetID":75995,"Directional":true}]},{"ID":16394,"SourceStructureID":73006,"TargetStructureID":6115,"Label":"73006-6115 via Conventional from 73013 -> 73014","Type":"Conventional","Directional":true,"Links":[{"SourceID":73013,"TargetID":73014,"Directional":true}]},{"ID":16395,"SourceStructureID":73018,"TargetStructureID":6115,"Label":"73018-6115 via Conventional from 73019 -> 73020","Type":"Conventional","Directional":true,"Links":[{"SourceID":73019,"TargetID":73020,"Directional":true}]},{"ID":16396,"SourceStructureID":73025,"TargetStructureID":6115,"Label":"73025-6115 via Conventional from 73026 -> 55897","Type":"Conventional","Directional":true,"Links":[{"SourceID":73026,"TargetID":55897,"Directional":true}]},{"ID":16397,"SourceStructureID":73033,"TargetStructureID":6115,"Label":"73033-6115 via Conventional from 73034 -> 73035","Type":"Conventional","Directional":true,"Links":[{"SourceID":73034,"TargetID":73035,"Directional":true}]},{"ID":16398,"SourceStructureID":73072,"TargetStructureID":6115,"Label":"73072-6115 via Conventional from 73073 -> 73074","Type":"Conventional","Directional":true,"Links":[{"SourceID":73073,"TargetID":73074,"Directional":true}]},{"ID":16399,"SourceStructureID":73075,"TargetStructureID":6115,"Label":"73075-6115 via Conventional from 73076 -> 73077","Type":"Conventional","Directional":true,"Links":[{"SourceID":73076,"TargetID":73077,"Directional":true}]},{"ID":16400,"SourceStructureID":73078,"TargetStructureID":6115,"Label":"73078-6115 via Conventional from 73079 -> 73080","Type":"Conventional","Directional":true,"Links":[{"SourceID":73079,"TargetID":73080,"Directional":true}]},{"ID":16401,"SourceStructureID":73086,"TargetStructureID":6115,"Label":"73086-6115 via Conventional from 84274 -> 73085","Type":"Conventional","Directional":true,"Links":[{"SourceID":84274,"TargetID":73085,"Directional":true}]},{"ID":16402,"SourceStructureID":73099,"TargetStructureID":6115,"Label":"73099-6115 via Conventional from 73100 -> 73101","Type":"Conventional","Directional":true,"Links":[{"SourceID":73100,"TargetID":73101,"Directional":true}]},{"ID":16403,"SourceStructureID":73102,"TargetStructureID":6115,"Label":"73102-6115 via Conventional from 73103 -> 73104","Type":"Conventional","Directional":true,"Links":[{"SourceID":73103,"TargetID":73104,"Directional":true}]},{"ID":16404,"SourceStructureID":73105,"TargetStructureID":6115,"Label":"73105-6115 via Conventional from 73106 -> 73107","Type":"Conventional","Directional":true,"Links":[{"SourceID":73106,"TargetID":73107,"Directional":true}]},{"ID":16405,"SourceStructureID":73133,"TargetStructureID":6115,"Label":"73133-6115 via Conventional from 73134 -> 73135","Type":"Conventional","Directional":true,"Links":[{"SourceID":73134,"TargetID":73135,"Directional":true}]},{"ID":16406,"SourceStructureID":73144,"TargetStructureID":6115,"Label":"73144-6115 via Conventional from 73152 -> 73153","Type":"Conventional","Directional":true,"Links":[{"SourceID":73152,"TargetID":73153,"Directional":true}]},{"ID":16407,"SourceStructureID":73146,"TargetStructureID":6115,"Label":"73146-6115 via Conventional from 73148 -> 73147","Type":"Conventional","Directional":true,"Links":[{"SourceID":73148,"TargetID":73147,"Directional":true}]},{"ID":16408,"SourceStructureID":73163,"TargetStructureID":68548,"Label":"73163-68548 via Conventional from 73164 -> 73162","Type":"Conventional","Directional":true,"Links":[{"SourceID":73164,"TargetID":73162,"Directional":true}]},{"ID":16409,"SourceStructureID":73166,"TargetStructureID":68548,"Label":"73166-68548 via Conventional from 73167 -> 73168","Type":"Conventional","Directional":true,"Links":[{"SourceID":73167,"TargetID":73168,"Directional":true}]},{"ID":16410,"SourceStructureID":73185,"TargetStructureID":6115,"Label":"73185-6115 via Conventional from 73186 -> 73187","Type":"Conventional","Directional":true,"Links":[{"SourceID":73186,"TargetID":73187,"Directional":true}]},{"ID":16411,"SourceStructureID":73190,"TargetStructureID":6115,"Label":"73190-6115 via Conventional from 73191 -> 73192","Type":"Conventional","Directional":true,"Links":[{"SourceID":73191,"TargetID":73192,"Directional":true}]},{"ID":16412,"SourceStructureID":73197,"TargetStructureID":6115,"Label":"73197-6115 via Conventional from 73198 -> 73199","Type":"Conventional","Directional":true,"Links":[{"SourceID":73198,"TargetID":73199,"Directional":true}]},{"ID":16413,"SourceStructureID":73200,"TargetStructureID":6115,"Label":"73200-6115 via Conventional from 73201 -> 73202","Type":"Conventional","Directional":true,"Links":[{"SourceID":73201,"TargetID":73202,"Directional":true}]},{"ID":16414,"SourceStructureID":73211,"TargetStructureID":6115,"Label":"73211-6115 via Conventional from 73265 -> 73266","Type":"Conventional","Directional":true,"Links":[{"SourceID":73265,"TargetID":73266,"Directional":true}]},{"ID":16415,"SourceStructureID":73212,"TargetStructureID":6115,"Label":"73212-6115 via Conventional from 73213 -> 73214","Type":"Conventional","Directional":true,"Links":[{"SourceID":73213,"TargetID":73214,"Directional":true}]},{"ID":16416,"SourceStructureID":73225,"TargetStructureID":6115,"Label":"73225-6115 via Conventional from 73226 -> 73227","Type":"Conventional","Directional":true,"Links":[{"SourceID":73226,"TargetID":73227,"Directional":true}]},{"ID":16417,"SourceStructureID":73290,"TargetStructureID":73273,"Label":"73290-73273 via Conventional from 73291 -> 73292","Type":"Conventional","Directional":true,"Links":[{"SourceID":73291,"TargetID":73292,"Directional":true}]},{"ID":16418,"SourceStructureID":73299,"TargetStructureID":6115,"Label":"73299-6115 via Conventional from 73300 -> 55880","Type":"Conventional","Directional":true,"Links":[{"SourceID":73300,"TargetID":55880,"Directional":true}]},{"ID":16419,"SourceStructureID":73309,"TargetStructureID":6115,"Label":"73309-6115 via Conventional from 73311 -> 73310","Type":"Conventional","Directional":true,"Links":[{"SourceID":73311,"TargetID":73310,"Directional":true}]},{"ID":16420,"SourceStructureID":73314,"TargetStructureID":68539,"Label":"73314-68539 via Conventional from 73315 -> 73061","Type":"Conventional","Directional":true,"Links":[{"SourceID":73315,"TargetID":73061,"Directional":true}]},{"ID":16421,"SourceStructureID":73322,"TargetStructureID":68539,"Label":"73322-68539 via Conventional from 73326 -> 73327","Type":"Conventional","Directional":true,"Links":[{"SourceID":73326,"TargetID":73327,"Directional":true}]},{"ID":16422,"SourceStructureID":73339,"TargetStructureID":82039,"Label":"73339-82039 via Conventional from 82040 -> 82041","Type":"Conventional","Directional":true,"Links":[{"SourceID":82040,"TargetID":82041,"Directional":true}]},{"ID":16423,"SourceStructureID":73342,"TargetStructureID":68539,"Label":"73342-68539 via Conventional from 73344 -> 73345","Type":"Conventional","Directional":true,"Links":[{"SourceID":73344,"TargetID":73345,"Directional":true}]},{"ID":16424,"SourceStructureID":73348,"TargetStructureID":5598,"Label":"73348-5598 via Conventional from 73349 -> 59064","Type":"Conventional","Directional":true,"Links":[{"SourceID":73349,"TargetID":59064,"Directional":true}]},{"ID":16425,"SourceStructureID":73353,"TargetStructureID":68539,"Label":"73353-68539 via Conventional from 73354 -> 73355","Type":"Conventional","Directional":true,"Links":[{"SourceID":73354,"TargetID":73355,"Directional":true}]},{"ID":16426,"SourceStructureID":73357,"TargetStructureID":68539,"Label":"73357-68539 via Conventional from 73358 -> 73356","Type":"Conventional","Directional":true,"Links":[{"SourceID":73358,"TargetID":73356,"Directional":true}]},{"ID":16427,"SourceStructureID":73363,"TargetStructureID":68539,"Label":"73363-68539 via Conventional from 73364 -> 73362","Type":"Conventional","Directional":true,"Links":[{"SourceID":73364,"TargetID":73362,"Directional":true}]},{"ID":16428,"SourceStructureID":73371,"TargetStructureID":68539,"Label":"73371-68539 via Conventional from 73379 -> 73383","Type":"Conventional","Directional":true,"Links":[{"SourceID":73379,"TargetID":73383,"Directional":true}]},{"ID":16429,"SourceStructureID":73384,"TargetStructureID":68539,"Label":"73384-68539 via Conventional from 73385 -> 73389","Type":"Conventional","Directional":true,"Links":[{"SourceID":73385,"TargetID":73389,"Directional":true}]},{"ID":16430,"SourceStructureID":73394,"TargetStructureID":68539,"Label":"73394-68539 via Conventional from 73420 -> 73421","Type":"Conventional","Directional":true,"Links":[{"SourceID":73420,"TargetID":73421,"Directional":true}]},{"ID":16431,"SourceStructureID":73394,"TargetStructureID":73397,"Label":"73394-73397 via Conventional from 73395 -> 73398","Type":"Conventional","Directional":true,"Links":[{"SourceID":73395,"TargetID":73398,"Directional":true}]},{"ID":16432,"SourceStructureID":73397,"TargetStructureID":73416,"Label":"73397-73416 via Conventional from 73410 -> 73417","Type":"Conventional","Directional":true,"Links":[{"SourceID":73410,"TargetID":73417,"Directional":true}]},{"ID":16433,"SourceStructureID":73422,"TargetStructureID":6115,"Label":"73422-6115 via Conventional from 73423 -> 73424","Type":"Conventional","Directional":true,"Links":[{"SourceID":73423,"TargetID":73424,"Directional":true}]},{"ID":16434,"SourceStructureID":73426,"TargetStructureID":6115,"Label":"73426-6115 via Conventional from 116709 -> 73459","Type":"Conventional","Directional":true,"Links":[{"SourceID":116709,"TargetID":73459,"Directional":true}]},{"ID":16435,"SourceStructureID":73430,"TargetStructureID":6115,"Label":"73430-6115 via Conventional from 73431 -> 73432","Type":"Conventional","Directional":true,"Links":[{"SourceID":73431,"TargetID":73432,"Directional":true}]},{"ID":16436,"SourceStructureID":73443,"TargetStructureID":6115,"Label":"73443-6115 via Conventional from 73454 -> 73456","Type":"Conventional","Directional":true,"Links":[{"SourceID":73454,"TargetID":73456,"Directional":true}]},{"ID":16437,"SourceStructureID":73453,"TargetStructureID":68539,"Label":"73453-68539 via Conventional from 73455 -> 73452","Type":"Conventional","Directional":true,"Links":[{"SourceID":73455,"TargetID":73452,"Directional":true}]},{"ID":16438,"SourceStructureID":73467,"TargetStructureID":5649,"Label":"73467-5649 via Conventional from 75677 -> 53847","Type":"Conventional","Directional":true,"Links":[{"SourceID":75677,"TargetID":53847,"Directional":true}]},{"ID":16439,"SourceStructureID":73467,"TargetStructureID":68548,"Label":"73467-68548 via Conventional from 73468 -> 73469","Type":"Conventional","Directional":true,"Links":[{"SourceID":73468,"TargetID":73469,"Directional":true}]},{"ID":16440,"SourceStructureID":73476,"TargetStructureID":6115,"Label":"73476-6115 via Conventional from 134225 -> 134226","Type":"Conventional","Directional":true,"Links":[{"SourceID":134225,"TargetID":134226,"Directional":true}]},{"ID":16441,"SourceStructureID":73488,"TargetStructureID":6115,"Label":"73488-6115 via Conventional from 73498 -> 73499","Type":"Conventional","Directional":true,"Links":[{"SourceID":73498,"TargetID":73499,"Directional":true}]},{"ID":16442,"SourceStructureID":73509,"TargetStructureID":6115,"Label":"73509-6115 via Conventional from 73512 -> 73513","Type":"Conventional","Directional":true,"Links":[{"SourceID":73512,"TargetID":73513,"Directional":true}]},{"ID":16443,"SourceStructureID":73514,"TargetStructureID":6115,"Label":"73514-6115 via Conventional from 73515 -> 73516","Type":"Conventional","Directional":true,"Links":[{"SourceID":73515,"TargetID":73516,"Directional":true}]},{"ID":16444,"SourceStructureID":73518,"TargetStructureID":6115,"Label":"73518-6115 via Conventional from 73519 -> 73520","Type":"Conventional","Directional":true,"Links":[{"SourceID":73519,"TargetID":73520,"Directional":true}]},{"ID":16445,"SourceStructureID":73524,"TargetStructureID":6115,"Label":"73524-6115 via Conventional from 73530 -> 73531","Type":"Conventional","Directional":true,"Links":[{"SourceID":73530,"TargetID":73531,"Directional":true}]},{"ID":16446,"SourceStructureID":73535,"TargetStructureID":6115,"Label":"73535-6115 via Conventional from 134227 -> 134228","Type":"Conventional","Directional":true,"Links":[{"SourceID":134227,"TargetID":134228,"Directional":true}]},{"ID":16447,"SourceStructureID":73542,"TargetStructureID":6115,"Label":"73542-6115 via Conventional from 73549 -> 73550","Type":"Conventional","Directional":true,"Links":[{"SourceID":73549,"TargetID":73550,"Directional":true}]},{"ID":16448,"SourceStructureID":73573,"TargetStructureID":68548,"Label":"73573-68548 via Conventional from 73575 -> 73576","Type":"Conventional","Directional":true,"Links":[{"SourceID":73575,"TargetID":73576,"Directional":true}]},{"ID":16449,"SourceStructureID":73583,"TargetStructureID":5442,"Label":"73583-5442 via Conventional from 73584 -> 73582","Type":"Conventional","Directional":true,"Links":[{"SourceID":73584,"TargetID":73582,"Directional":true}]},{"ID":16450,"SourceStructureID":73601,"TargetStructureID":68539,"Label":"73601-68539 via Conventional from 73602 -> 73600","Type":"Conventional","Directional":true,"Links":[{"SourceID":73602,"TargetID":73600,"Directional":true}]},{"ID":16451,"SourceStructureID":73605,"TargetStructureID":68539,"Label":"73605-68539 via Conventional from 73608 -> 73604","Type":"Conventional","Directional":true,"Links":[{"SourceID":73608,"TargetID":73604,"Directional":true}]},{"ID":16452,"SourceStructureID":73606,"TargetStructureID":8580,"Label":"73606-8580 via Conventional from 73607 -> 73609","Type":"Conventional","Directional":true,"Links":[{"SourceID":73607,"TargetID":73609,"Directional":true}]},{"ID":16453,"SourceStructureID":73611,"TargetStructureID":68539,"Label":"73611-68539 via Conventional from 73612 -> 73610","Type":"Conventional","Directional":true,"Links":[{"SourceID":73612,"TargetID":73610,"Directional":true}]},{"ID":16454,"SourceStructureID":73613,"TargetStructureID":68539,"Label":"73613-68539 via Conventional from 73614 -> 73615","Type":"Conventional","Directional":true,"Links":[{"SourceID":73614,"TargetID":73615,"Directional":true}]},{"ID":16455,"SourceStructureID":73619,"TargetStructureID":8580,"Label":"73619-8580 via Conventional from 73622 -> 73626","Type":"Conventional","Directional":true,"Links":[{"SourceID":73622,"TargetID":73626,"Directional":true}]},{"ID":16456,"SourceStructureID":73620,"TargetStructureID":68539,"Label":"73620-68539 via Conventional from 73634 -> 73633","Type":"Conventional","Directional":true,"Links":[{"SourceID":73634,"TargetID":73633,"Directional":true}]},{"ID":16457,"SourceStructureID":73621,"TargetStructureID":68539,"Label":"73621-68539 via Conventional from 73630 -> 73632","Type":"Conventional","Directional":true,"Links":[{"SourceID":73630,"TargetID":73632,"Directional":true}]},{"ID":16458,"SourceStructureID":73628,"TargetStructureID":8580,"Label":"73628-8580 via Conventional from 73629 -> 73627","Type":"Conventional","Directional":true,"Links":[{"SourceID":73629,"TargetID":73627,"Directional":true}]},{"ID":16459,"SourceStructureID":73635,"TargetStructureID":68539,"Label":"73635-68539 via Conventional from 73636 -> 73637","Type":"Conventional","Directional":true,"Links":[{"SourceID":73636,"TargetID":73637,"Directional":true}]},{"ID":16460,"SourceStructureID":73639,"TargetStructureID":73635,"Label":"73639-73635 via Conventional from 73640 -> 73638","Type":"Conventional","Directional":true,"Links":[{"SourceID":73640,"TargetID":73638,"Directional":true}]},{"ID":16461,"SourceStructureID":73646,"TargetStructureID":68539,"Label":"73646-68539 via Conventional from 73647 -> 73648","Type":"Conventional","Directional":true,"Links":[{"SourceID":73647,"TargetID":73648,"Directional":true}]},{"ID":16462,"SourceStructureID":73649,"TargetStructureID":68539,"Label":"73649-68539 via Conventional from 73650 -> 73651","Type":"Conventional","Directional":true,"Links":[{"SourceID":73650,"TargetID":73651,"Directional":true}]},{"ID":16463,"SourceStructureID":73652,"TargetStructureID":68539,"Label":"73652-68539 via Conventional from 73653 -> 73654","Type":"Conventional","Directional":true,"Links":[{"SourceID":73653,"TargetID":73654,"Directional":true}]},{"ID":16464,"SourceStructureID":73658,"TargetStructureID":73655,"Label":"73658-73655 via Conventional from 73659 -> 73656","Type":"Conventional","Directional":true,"Links":[{"SourceID":73659,"TargetID":73656,"Directional":true}]},{"ID":16465,"SourceStructureID":73662,"TargetStructureID":73655,"Label":"73662-73655 via Conventional from 73663 -> 73661","Type":"Conventional","Directional":true,"Links":[{"SourceID":73663,"TargetID":73661,"Directional":true}]},{"ID":16466,"SourceStructureID":73671,"TargetStructureID":8580,"Label":"73671-8580 via Conventional from 73672 -> 73670","Type":"Conventional","Directional":true,"Links":[{"SourceID":73672,"TargetID":73670,"Directional":true}]},{"ID":16467,"SourceStructureID":73683,"TargetStructureID":68539,"Label":"73683-68539 via Conventional from 73684 -> 73685","Type":"Conventional","Directional":true,"Links":[{"SourceID":73684,"TargetID":73685,"Directional":true}]},{"ID":16468,"SourceStructureID":73687,"TargetStructureID":68539,"Label":"73687-68539 via Conventional from 73688 -> 73689","Type":"Conventional","Directional":true,"Links":[{"SourceID":73688,"TargetID":73689,"Directional":true}]},{"ID":16469,"SourceStructureID":73690,"TargetStructureID":68539,"Label":"73690-68539 via Conventional from 73691 -> 73695","Type":"Conventional","Directional":true,"Links":[{"SourceID":73691,"TargetID":73695,"Directional":true}]},{"ID":16470,"SourceStructureID":73693,"TargetStructureID":73690,"Label":"73693-73690 via Conventional from 73694 -> 73692","Type":"Conventional","Directional":true,"Links":[{"SourceID":73694,"TargetID":73692,"Directional":true}]},{"ID":16471,"SourceStructureID":73698,"TargetStructureID":68539,"Label":"73698-68539 via Conventional from 73699 -> 73700","Type":"Conventional","Directional":true,"Links":[{"SourceID":73699,"TargetID":73700,"Directional":true}]},{"ID":16472,"SourceStructureID":73702,"TargetStructureID":68539,"Label":"73702-68539 via Conventional from 73703 -> 73701","Type":"Conventional","Directional":true,"Links":[{"SourceID":73703,"TargetID":73701,"Directional":true}]},{"ID":16473,"SourceStructureID":73704,"TargetStructureID":5531,"Label":"73704-5531 via Conventional from 105308 -> 105309","Type":"Conventional","Directional":true,"Links":[{"SourceID":105308,"TargetID":105309,"Directional":true}]},{"ID":16474,"SourceStructureID":73704,"TargetStructureID":8580,"Label":"73704-8580 via Conventional from 73706 -> 73705","Type":"Conventional","Directional":true,"Links":[{"SourceID":73706,"TargetID":73705,"Directional":true}]},{"ID":16475,"SourceStructureID":73707,"TargetStructureID":68539,"Label":"73707-68539 via Conventional from 73708 -> 73709","Type":"Conventional","Directional":true,"Links":[{"SourceID":73708,"TargetID":73709,"Directional":true}]},{"ID":16476,"SourceStructureID":73710,"TargetStructureID":68539,"Label":"73710-68539 via Conventional from 73711 -> 73712","Type":"Conventional","Directional":true,"Links":[{"SourceID":73711,"TargetID":73712,"Directional":true}]},{"ID":16477,"SourceStructureID":73713,"TargetStructureID":8580,"Label":"73713-8580 via Conventional from 73715 -> 73714","Type":"Conventional","Directional":true,"Links":[{"SourceID":73715,"TargetID":73714,"Directional":true}]},{"ID":16478,"SourceStructureID":73720,"TargetStructureID":73710,"Label":"73720-73710 via Conventional from 73721 -> 73717","Type":"Conventional","Directional":true,"Links":[{"SourceID":73721,"TargetID":73717,"Directional":true}]},{"ID":16479,"SourceStructureID":73722,"TargetStructureID":68539,"Label":"73722-68539 via BC Conventional Synapse from 73723 -> 73724","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":73723,"TargetID":73724,"Directional":true}]},{"ID":16480,"SourceStructureID":73722,"TargetStructureID":68539,"Label":"73722-68539 via Ribbon Synapse from 73726 -> 73727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73726,"TargetID":73727,"Directional":true}]},{"ID":16481,"SourceStructureID":73722,"TargetStructureID":71351,"Label":"73722-71351 via Ribbon Synapse from 73726 -> 73729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73726,"TargetID":73729,"Directional":true}]},{"ID":16482,"SourceStructureID":73732,"TargetStructureID":8580,"Label":"73732-8580 via Conventional from 73734 -> 73733","Type":"Conventional","Directional":true,"Links":[{"SourceID":73734,"TargetID":73733,"Directional":true}]},{"ID":16483,"SourceStructureID":73735,"TargetStructureID":68539,"Label":"73735-68539 via Conventional from 73736 -> 73737","Type":"Conventional","Directional":true,"Links":[{"SourceID":73736,"TargetID":73737,"Directional":true}]},{"ID":16484,"SourceStructureID":73739,"TargetStructureID":68539,"Label":"73739-68539 via Conventional from 73740 -> 73738","Type":"Conventional","Directional":true,"Links":[{"SourceID":73740,"TargetID":73738,"Directional":true}]},{"ID":16485,"SourceStructureID":73742,"TargetStructureID":68539,"Label":"73742-68539 via Conventional from 73743 -> 73741, 73744 -> 73745","Type":"Conventional","Directional":true,"Links":[{"SourceID":73743,"TargetID":73741,"Directional":true},{"SourceID":73744,"TargetID":73745,"Directional":true}]},{"ID":16486,"SourceStructureID":73747,"TargetStructureID":68539,"Label":"73747-68539 via Conventional from 73748 -> 73746","Type":"Conventional","Directional":true,"Links":[{"SourceID":73748,"TargetID":73746,"Directional":true}]},{"ID":16487,"SourceStructureID":73750,"TargetStructureID":68539,"Label":"73750-68539 via Conventional from 73751 -> 73752, 73755 -> 73754, 73756 -> 73758","Type":"Conventional","Directional":true,"Links":[{"SourceID":73751,"TargetID":73752,"Directional":true},{"SourceID":73755,"TargetID":73754,"Directional":true},{"SourceID":73756,"TargetID":73758,"Directional":true}]},{"ID":16488,"SourceStructureID":73759,"TargetStructureID":68539,"Label":"73759-68539 via Unknown from 73760 -> 73761","Type":"Unknown","Directional":true,"Links":[{"SourceID":73760,"TargetID":73761,"Directional":true}]},{"ID":16489,"SourceStructureID":73764,"TargetStructureID":68539,"Label":"73764-68539 via Conventional from 73765 -> 73763, 73766 -> 73762","Type":"Conventional","Directional":true,"Links":[{"SourceID":73765,"TargetID":73763,"Directional":true},{"SourceID":73766,"TargetID":73762,"Directional":true}]},{"ID":16490,"SourceStructureID":73781,"TargetStructureID":6115,"Label":"73781-6115 via Conventional from 73782 -> 73783","Type":"Conventional","Directional":true,"Links":[{"SourceID":73782,"TargetID":73783,"Directional":true}]},{"ID":16491,"SourceStructureID":73790,"TargetStructureID":6115,"Label":"73790-6115 via Conventional from 73791 -> 73789","Type":"Conventional","Directional":true,"Links":[{"SourceID":73791,"TargetID":73789,"Directional":true}]},{"ID":16492,"SourceStructureID":73800,"TargetStructureID":6115,"Label":"73800-6115 via Conventional from 73802 -> 73801","Type":"Conventional","Directional":true,"Links":[{"SourceID":73802,"TargetID":73801,"Directional":true}]},{"ID":16493,"SourceStructureID":73807,"TargetStructureID":5650,"Label":"73807-5650 via Conventional from 82109 -> 82110","Type":"Conventional","Directional":true,"Links":[{"SourceID":82109,"TargetID":82110,"Directional":true}]},{"ID":16494,"SourceStructureID":73807,"TargetStructureID":66523,"Label":"73807-66523 via Conventional from 75330 -> 75331","Type":"Conventional","Directional":true,"Links":[{"SourceID":75330,"TargetID":75331,"Directional":true}]},{"ID":16495,"SourceStructureID":73807,"TargetStructureID":82405,"Label":"73807-82405 via Conventional from 82404 -> 82406","Type":"Conventional","Directional":true,"Links":[{"SourceID":82404,"TargetID":82406,"Directional":true}]},{"ID":16496,"SourceStructureID":73810,"TargetStructureID":8580,"Label":"73810-8580 via Conventional from 73811 -> 73812","Type":"Conventional","Directional":true,"Links":[{"SourceID":73811,"TargetID":73812,"Directional":true}]},{"ID":16497,"SourceStructureID":73814,"TargetStructureID":6115,"Label":"73814-6115 via Conventional from 73816 -> 73815","Type":"Conventional","Directional":true,"Links":[{"SourceID":73816,"TargetID":73815,"Directional":true}]},{"ID":16498,"SourceStructureID":73817,"TargetStructureID":6115,"Label":"73817-6115 via Conventional from 73818 -> 73819","Type":"Conventional","Directional":true,"Links":[{"SourceID":73818,"TargetID":73819,"Directional":true}]},{"ID":16499,"SourceStructureID":73830,"TargetStructureID":352,"Label":"73830-352 via Conventional from 73831 -> 73829","Type":"Conventional","Directional":true,"Links":[{"SourceID":73831,"TargetID":73829,"Directional":true}]},{"ID":16500,"SourceStructureID":73833,"TargetStructureID":352,"Label":"73833-352 via Conventional from 73834 -> 73832","Type":"Conventional","Directional":true,"Links":[{"SourceID":73834,"TargetID":73832,"Directional":true}]},{"ID":16501,"SourceStructureID":73844,"TargetStructureID":352,"Label":"73844-352 via Conventional from 73845 -> 73841","Type":"Conventional","Directional":true,"Links":[{"SourceID":73845,"TargetID":73841,"Directional":true}]},{"ID":16502,"SourceStructureID":73844,"TargetStructureID":73906,"Label":"73844-73906 via Conventional from 73902 -> 73908","Type":"Conventional","Directional":true,"Links":[{"SourceID":73902,"TargetID":73908,"Directional":true}]},{"ID":16503,"SourceStructureID":73846,"TargetStructureID":6115,"Label":"73846-6115 via Conventional from 73847 -> 73848","Type":"Conventional","Directional":true,"Links":[{"SourceID":73847,"TargetID":73848,"Directional":true}]},{"ID":16504,"SourceStructureID":73855,"TargetStructureID":6115,"Label":"73855-6115 via Conventional from 73857 -> 73856","Type":"Conventional","Directional":true,"Links":[{"SourceID":73857,"TargetID":73856,"Directional":true}]},{"ID":16505,"SourceStructureID":73868,"TargetStructureID":6115,"Label":"73868-6115 via Conventional from 73869 -> 73870","Type":"Conventional","Directional":true,"Links":[{"SourceID":73869,"TargetID":73870,"Directional":true}]},{"ID":16506,"SourceStructureID":73881,"TargetStructureID":6115,"Label":"73881-6115 via Conventional from 73882 -> 73883","Type":"Conventional","Directional":true,"Links":[{"SourceID":73882,"TargetID":73883,"Directional":true}]},{"ID":16507,"SourceStructureID":73891,"TargetStructureID":6115,"Label":"73891-6115 via Conventional from 73892 -> 73893","Type":"Conventional","Directional":true,"Links":[{"SourceID":73892,"TargetID":73893,"Directional":true}]},{"ID":16508,"SourceStructureID":73904,"TargetStructureID":6115,"Label":"73904-6115 via Conventional from 73905 -> 73903, 73912 -> 73913","Type":"Conventional","Directional":true,"Links":[{"SourceID":73905,"TargetID":73903,"Directional":true},{"SourceID":73912,"TargetID":73913,"Directional":true}]},{"ID":16509,"SourceStructureID":73906,"TargetStructureID":73844,"Label":"73906-73844 via Ribbon Synapse from 73907 -> 73901","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":73907,"TargetID":73901,"Directional":true}]},{"ID":16510,"SourceStructureID":73926,"TargetStructureID":6115,"Label":"73926-6115 via Conventional from 73932 -> 73933","Type":"Conventional","Directional":true,"Links":[{"SourceID":73932,"TargetID":73933,"Directional":true}]},{"ID":16511,"SourceStructureID":73940,"TargetStructureID":6115,"Label":"73940-6115 via Conventional from 73942 -> 73941, 73956 -> 73957","Type":"Conventional","Directional":true,"Links":[{"SourceID":73942,"TargetID":73941,"Directional":true},{"SourceID":73956,"TargetID":73957,"Directional":true}]},{"ID":16512,"SourceStructureID":73949,"TargetStructureID":6115,"Label":"73949-6115 via Conventional from 73951 -> 73950","Type":"Conventional","Directional":true,"Links":[{"SourceID":73951,"TargetID":73950,"Directional":true}]},{"ID":16513,"SourceStructureID":73970,"TargetStructureID":6115,"Label":"73970-6115 via Conventional from 73973 -> 56313","Type":"Conventional","Directional":true,"Links":[{"SourceID":73973,"TargetID":56313,"Directional":true}]},{"ID":16514,"SourceStructureID":73974,"TargetStructureID":606,"Label":"73974-606 via Conventional from 73975 -> 48105","Type":"Conventional","Directional":true,"Links":[{"SourceID":73975,"TargetID":48105,"Directional":true}]},{"ID":16515,"SourceStructureID":73979,"TargetStructureID":6115,"Label":"73979-6115 via Conventional from 73998 -> 73999","Type":"Conventional","Directional":true,"Links":[{"SourceID":73998,"TargetID":73999,"Directional":true}]},{"ID":16516,"SourceStructureID":73987,"TargetStructureID":5598,"Label":"73987-5598 via Conventional from 73988 -> 73986","Type":"Conventional","Directional":true,"Links":[{"SourceID":73988,"TargetID":73986,"Directional":true}]},{"ID":16517,"SourceStructureID":73991,"TargetStructureID":6115,"Label":"73991-6115 via Conventional from 73992 -> 73993","Type":"Conventional","Directional":true,"Links":[{"SourceID":73992,"TargetID":73993,"Directional":true}]},{"ID":16518,"SourceStructureID":73994,"TargetStructureID":6115,"Label":"73994-6115 via Conventional from 73996 -> 73995","Type":"Conventional","Directional":true,"Links":[{"SourceID":73996,"TargetID":73995,"Directional":true}]},{"ID":16519,"SourceStructureID":74013,"TargetStructureID":6115,"Label":"74013-6115 via Conventional from 74015 -> 74014","Type":"Conventional","Directional":true,"Links":[{"SourceID":74015,"TargetID":74014,"Directional":true}]},{"ID":16520,"SourceStructureID":74018,"TargetStructureID":6115,"Label":"74018-6115 via Conventional from 74019 -> 74020","Type":"Conventional","Directional":true,"Links":[{"SourceID":74019,"TargetID":74020,"Directional":true}]},{"ID":16521,"SourceStructureID":74023,"TargetStructureID":5442,"Label":"74023-5442 via Conventional from 74024 -> 74027","Type":"Conventional","Directional":true,"Links":[{"SourceID":74024,"TargetID":74027,"Directional":true}]},{"ID":16522,"SourceStructureID":74035,"TargetStructureID":6115,"Label":"74035-6115 via Conventional from 74037 -> 74036","Type":"Conventional","Directional":true,"Links":[{"SourceID":74037,"TargetID":74036,"Directional":true}]},{"ID":16523,"SourceStructureID":74042,"TargetStructureID":6115,"Label":"74042-6115 via Conventional from 74044 -> 74043","Type":"Conventional","Directional":true,"Links":[{"SourceID":74044,"TargetID":74043,"Directional":true}]},{"ID":16524,"SourceStructureID":74053,"TargetStructureID":6857,"Label":"74053-6857 via Conventional from 74054 -> 7555","Type":"Conventional","Directional":true,"Links":[{"SourceID":74054,"TargetID":7555,"Directional":true}]},{"ID":16525,"SourceStructureID":74058,"TargetStructureID":6857,"Label":"74058-6857 via Conventional from 74059 -> 7560","Type":"Conventional","Directional":true,"Links":[{"SourceID":74059,"TargetID":7560,"Directional":true}]},{"ID":16526,"SourceStructureID":74064,"TargetStructureID":6115,"Label":"74064-6115 via Conventional from 74066 -> 74065","Type":"Conventional","Directional":true,"Links":[{"SourceID":74066,"TargetID":74065,"Directional":true}]},{"ID":16527,"SourceStructureID":74077,"TargetStructureID":6115,"Label":"74077-6115 via Conventional from 74079 -> 56316, 74080 -> 56316","Type":"Conventional","Directional":true,"Links":[{"SourceID":74079,"TargetID":56316,"Directional":true},{"SourceID":74080,"TargetID":56316,"Directional":true}]},{"ID":16528,"SourceStructureID":74081,"TargetStructureID":5530,"Label":"74081-5530 via Conventional from 74209 -> 74210","Type":"Conventional","Directional":true,"Links":[{"SourceID":74209,"TargetID":74210,"Directional":true}]},{"ID":16529,"SourceStructureID":74082,"TargetStructureID":82094,"Label":"74082-82094 via Conventional from 82096 -> 82095","Type":"Conventional","Directional":true,"Links":[{"SourceID":82096,"TargetID":82095,"Directional":true}]},{"ID":16530,"SourceStructureID":74086,"TargetStructureID":6115,"Label":"74086-6115 via Conventional from 74092 -> 74093","Type":"Conventional","Directional":true,"Links":[{"SourceID":74092,"TargetID":74093,"Directional":true}]},{"ID":16531,"SourceStructureID":74098,"TargetStructureID":6115,"Label":"74098-6115 via Conventional from 74099 -> 74100","Type":"Conventional","Directional":true,"Links":[{"SourceID":74099,"TargetID":74100,"Directional":true}]},{"ID":16532,"SourceStructureID":74135,"TargetStructureID":6857,"Label":"74135-6857 via Conventional from 74136 -> 6876","Type":"Conventional","Directional":true,"Links":[{"SourceID":74136,"TargetID":6876,"Directional":true}]},{"ID":16533,"SourceStructureID":74211,"TargetStructureID":5530,"Label":"74211-5530 via Conventional from 74212 -> 29866","Type":"Conventional","Directional":true,"Links":[{"SourceID":74212,"TargetID":29866,"Directional":true}]},{"ID":16534,"SourceStructureID":74213,"TargetStructureID":5530,"Label":"74213-5530 via Conventional from 74214 -> 74215","Type":"Conventional","Directional":true,"Links":[{"SourceID":74214,"TargetID":74215,"Directional":true}]},{"ID":16535,"SourceStructureID":74216,"TargetStructureID":5530,"Label":"74216-5530 via Conventional from 74578 -> 74580","Type":"Conventional","Directional":true,"Links":[{"SourceID":74578,"TargetID":74580,"Directional":true}]},{"ID":16536,"SourceStructureID":74216,"TargetStructureID":54925,"Label":"74216-54925 via Conventional from 81817 -> 54935","Type":"Conventional","Directional":true,"Links":[{"SourceID":81817,"TargetID":54935,"Directional":true}]},{"ID":16537,"SourceStructureID":74216,"TargetStructureID":74584,"Label":"74216-74584 via Conventional from 81813 -> 81814","Type":"Conventional","Directional":true,"Links":[{"SourceID":81813,"TargetID":81814,"Directional":true}]},{"ID":16538,"SourceStructureID":74217,"TargetStructureID":5530,"Label":"74217-5530 via Conventional from 74218 -> 74219","Type":"Conventional","Directional":true,"Links":[{"SourceID":74218,"TargetID":74219,"Directional":true}]},{"ID":16539,"SourceStructureID":74225,"TargetStructureID":5530,"Label":"74225-5530 via Conventional from 75749 -> 75750","Type":"Conventional","Directional":true,"Links":[{"SourceID":75749,"TargetID":75750,"Directional":true}]},{"ID":16540,"SourceStructureID":74228,"TargetStructureID":68539,"Label":"74228-68539 via Conventional from 74229 -> 74230","Type":"Conventional","Directional":true,"Links":[{"SourceID":74229,"TargetID":74230,"Directional":true}]},{"ID":16541,"SourceStructureID":74231,"TargetStructureID":74233,"Label":"74231-74233 via Conventional from 74232 -> 74235","Type":"Conventional","Directional":true,"Links":[{"SourceID":74232,"TargetID":74235,"Directional":true}]},{"ID":16542,"SourceStructureID":74233,"TargetStructureID":68539,"Label":"74233-68539 via Conventional from 74234 -> 74236","Type":"Conventional","Directional":true,"Links":[{"SourceID":74234,"TargetID":74236,"Directional":true}]},{"ID":16543,"SourceStructureID":74237,"TargetStructureID":74239,"Label":"74237-74239 via Conventional from 74264 -> 74265","Type":"Conventional","Directional":true,"Links":[{"SourceID":74264,"TargetID":74265,"Directional":true}]},{"ID":16544,"SourceStructureID":74239,"TargetStructureID":68539,"Label":"74239-68539 via Conventional from 74247 -> 74248","Type":"Conventional","Directional":true,"Links":[{"SourceID":74247,"TargetID":74248,"Directional":true}]},{"ID":16545,"SourceStructureID":74241,"TargetStructureID":74240,"Label":"74241-74240 via Conventional from 74243 -> 74244","Type":"Conventional","Directional":true,"Links":[{"SourceID":74243,"TargetID":74244,"Directional":true}]},{"ID":16546,"SourceStructureID":74252,"TargetStructureID":68539,"Label":"74252-68539 via Conventional from 74253 -> 74259","Type":"Conventional","Directional":true,"Links":[{"SourceID":74253,"TargetID":74259,"Directional":true}]},{"ID":16547,"SourceStructureID":74269,"TargetStructureID":68539,"Label":"74269-68539 via Conventional from 74270 -> 74271","Type":"Conventional","Directional":true,"Links":[{"SourceID":74270,"TargetID":74271,"Directional":true}]},{"ID":16548,"SourceStructureID":74282,"TargetStructureID":68539,"Label":"74282-68539 via Conventional from 74283 -> 74284","Type":"Conventional","Directional":true,"Links":[{"SourceID":74283,"TargetID":74284,"Directional":true}]},{"ID":16549,"SourceStructureID":74291,"TargetStructureID":6115,"Label":"74291-6115 via Conventional from 74295 -> 55778","Type":"Conventional","Directional":true,"Links":[{"SourceID":74295,"TargetID":55778,"Directional":true}]},{"ID":16550,"SourceStructureID":74297,"TargetStructureID":68539,"Label":"74297-68539 via Conventional from 74298 -> 74296","Type":"Conventional","Directional":true,"Links":[{"SourceID":74298,"TargetID":74296,"Directional":true}]},{"ID":16551,"SourceStructureID":74303,"TargetStructureID":6115,"Label":"74303-6115 via Conventional from 74304 -> 74305","Type":"Conventional","Directional":true,"Links":[{"SourceID":74304,"TargetID":74305,"Directional":true}]},{"ID":16552,"SourceStructureID":74308,"TargetStructureID":6115,"Label":"74308-6115 via Conventional from 74309 -> 74310","Type":"Conventional","Directional":true,"Links":[{"SourceID":74309,"TargetID":74310,"Directional":true}]},{"ID":16553,"SourceStructureID":74317,"TargetStructureID":6115,"Label":"74317-6115 via Conventional from 74318 -> 55781","Type":"Conventional","Directional":true,"Links":[{"SourceID":74318,"TargetID":55781,"Directional":true}]},{"ID":16554,"SourceStructureID":74321,"TargetStructureID":6115,"Label":"74321-6115 via Conventional from 74322 -> 55782","Type":"Conventional","Directional":true,"Links":[{"SourceID":74322,"TargetID":55782,"Directional":true}]},{"ID":16555,"SourceStructureID":74341,"TargetStructureID":68539,"Label":"74341-68539 via Conventional from 74347 -> 74348","Type":"Conventional","Directional":true,"Links":[{"SourceID":74347,"TargetID":74348,"Directional":true}]},{"ID":16556,"SourceStructureID":74350,"TargetStructureID":68539,"Label":"74350-68539 via Conventional from 74353 -> 74352","Type":"Conventional","Directional":true,"Links":[{"SourceID":74353,"TargetID":74352,"Directional":true}]},{"ID":16557,"SourceStructureID":74369,"TargetStructureID":74047,"Label":"74369-74047 via Conventional from 74371 -> 74373","Type":"Conventional","Directional":true,"Links":[{"SourceID":74371,"TargetID":74373,"Directional":true}]},{"ID":16558,"SourceStructureID":74377,"TargetStructureID":74047,"Label":"74377-74047 via Conventional from 74378 -> 74376","Type":"Conventional","Directional":true,"Links":[{"SourceID":74378,"TargetID":74376,"Directional":true}]},{"ID":16559,"SourceStructureID":74379,"TargetStructureID":68539,"Label":"74379-68539 via Conventional from 74380 -> 74381","Type":"Conventional","Directional":true,"Links":[{"SourceID":74380,"TargetID":74381,"Directional":true}]},{"ID":16560,"SourceStructureID":74385,"TargetStructureID":6115,"Label":"74385-6115 via Conventional from 74386 -> 74387","Type":"Conventional","Directional":true,"Links":[{"SourceID":74386,"TargetID":74387,"Directional":true}]},{"ID":16561,"SourceStructureID":74388,"TargetStructureID":6115,"Label":"74388-6115 via Conventional from 74391 -> 74392","Type":"Conventional","Directional":true,"Links":[{"SourceID":74391,"TargetID":74392,"Directional":true}]},{"ID":16562,"SourceStructureID":74399,"TargetStructureID":74047,"Label":"74399-74047 via Conventional from 74400 -> 74398","Type":"Conventional","Directional":true,"Links":[{"SourceID":74400,"TargetID":74398,"Directional":true}]},{"ID":16563,"SourceStructureID":74402,"TargetStructureID":6115,"Label":"74402-6115 via Conventional from 74403 -> 74404","Type":"Conventional","Directional":true,"Links":[{"SourceID":74403,"TargetID":74404,"Directional":true}]},{"ID":16564,"SourceStructureID":74407,"TargetStructureID":68539,"Label":"74407-68539 via Conventional from 74408 -> 74409","Type":"Conventional","Directional":true,"Links":[{"SourceID":74408,"TargetID":74409,"Directional":true}]},{"ID":16565,"SourceStructureID":74412,"TargetStructureID":68539,"Label":"74412-68539 via Conventional from 74419 -> 74420","Type":"Conventional","Directional":true,"Links":[{"SourceID":74419,"TargetID":74420,"Directional":true}]},{"ID":16566,"SourceStructureID":74424,"TargetStructureID":6115,"Label":"74424-6115 via Conventional from 75963 -> 75962","Type":"Conventional","Directional":true,"Links":[{"SourceID":75963,"TargetID":75962,"Directional":true}]},{"ID":16567,"SourceStructureID":74441,"TargetStructureID":6115,"Label":"74441-6115 via Conventional from 74446 -> 74447","Type":"Conventional","Directional":true,"Links":[{"SourceID":74446,"TargetID":74447,"Directional":true}]},{"ID":16568,"SourceStructureID":74448,"TargetStructureID":6115,"Label":"74448-6115 via Conventional from 74449 -> 74450","Type":"Conventional","Directional":true,"Links":[{"SourceID":74449,"TargetID":74450,"Directional":true}]},{"ID":16569,"SourceStructureID":74456,"TargetStructureID":6115,"Label":"74456-6115 via Conventional from 74457 -> 74458","Type":"Conventional","Directional":true,"Links":[{"SourceID":74457,"TargetID":74458,"Directional":true}]},{"ID":16570,"SourceStructureID":74460,"TargetStructureID":6115,"Label":"74460-6115 via Conventional from 74464 -> 74465","Type":"Conventional","Directional":true,"Links":[{"SourceID":74464,"TargetID":74465,"Directional":true}]},{"ID":16571,"SourceStructureID":74471,"TargetStructureID":6115,"Label":"74471-6115 via Conventional from 74472 -> 74473","Type":"Conventional","Directional":true,"Links":[{"SourceID":74472,"TargetID":74473,"Directional":true}]},{"ID":16572,"SourceStructureID":74482,"TargetStructureID":5442,"Label":"74482-5442 via Conventional from 74483 -> 55129","Type":"Conventional","Directional":true,"Links":[{"SourceID":74483,"TargetID":55129,"Directional":true}]},{"ID":16573,"SourceStructureID":74489,"TargetStructureID":6115,"Label":"74489-6115 via Conventional from 74491 -> 74492","Type":"Conventional","Directional":true,"Links":[{"SourceID":74491,"TargetID":74492,"Directional":true}]},{"ID":16574,"SourceStructureID":74493,"TargetStructureID":6115,"Label":"74493-6115 via Conventional from 74494 -> 74495","Type":"Conventional","Directional":true,"Links":[{"SourceID":74494,"TargetID":74495,"Directional":true}]},{"ID":16575,"SourceStructureID":74499,"TargetStructureID":6115,"Label":"74499-6115 via Conventional from 74500 -> 74501","Type":"Conventional","Directional":true,"Links":[{"SourceID":74500,"TargetID":74501,"Directional":true}]},{"ID":16576,"SourceStructureID":74505,"TargetStructureID":6115,"Label":"74505-6115 via Conventional from 74506 -> 74507","Type":"Conventional","Directional":true,"Links":[{"SourceID":74506,"TargetID":74507,"Directional":true}]},{"ID":16577,"SourceStructureID":74511,"TargetStructureID":6115,"Label":"74511-6115 via Conventional from 74512 -> 74513","Type":"Conventional","Directional":true,"Links":[{"SourceID":74512,"TargetID":74513,"Directional":true}]},{"ID":16578,"SourceStructureID":74527,"TargetStructureID":6115,"Label":"74527-6115 via Conventional from 74528 -> 74529","Type":"Conventional","Directional":true,"Links":[{"SourceID":74528,"TargetID":74529,"Directional":true}]},{"ID":16579,"SourceStructureID":74548,"TargetStructureID":68539,"Label":"74548-68539 via Conventional from 74549 -> 74547","Type":"Conventional","Directional":true,"Links":[{"SourceID":74549,"TargetID":74547,"Directional":true}]},{"ID":16580,"SourceStructureID":74555,"TargetStructureID":68539,"Label":"74555-68539 via Conventional from 74556 -> 74557","Type":"Conventional","Directional":true,"Links":[{"SourceID":74556,"TargetID":74557,"Directional":true}]},{"ID":16581,"SourceStructureID":74558,"TargetStructureID":68539,"Label":"74558-68539 via Conventional from 74559 -> 74562, 74560 -> 74561","Type":"Conventional","Directional":true,"Links":[{"SourceID":74559,"TargetID":74562,"Directional":true},{"SourceID":74560,"TargetID":74561,"Directional":true}]},{"ID":16582,"SourceStructureID":74563,"TargetStructureID":68539,"Label":"74563-68539 via Conventional from 74564 -> 74565","Type":"Conventional","Directional":true,"Links":[{"SourceID":74564,"TargetID":74565,"Directional":true}]},{"ID":16583,"SourceStructureID":74567,"TargetStructureID":68539,"Label":"74567-68539 via Conventional from 74568 -> 74566","Type":"Conventional","Directional":true,"Links":[{"SourceID":74568,"TargetID":74566,"Directional":true}]},{"ID":16584,"SourceStructureID":74573,"TargetStructureID":68539,"Label":"74573-68539 via Conventional from 74574 -> 74572","Type":"Conventional","Directional":true,"Links":[{"SourceID":74574,"TargetID":74572,"Directional":true}]},{"ID":16585,"SourceStructureID":74576,"TargetStructureID":68539,"Label":"74576-68539 via Conventional from 74577 -> 74579","Type":"Conventional","Directional":true,"Links":[{"SourceID":74577,"TargetID":74579,"Directional":true}]},{"ID":16586,"SourceStructureID":74584,"TargetStructureID":595,"Label":"74584-595 via Conventional from 81796 -> 81795","Type":"Conventional","Directional":true,"Links":[{"SourceID":81796,"TargetID":81795,"Directional":true}]},{"ID":16587,"SourceStructureID":74584,"TargetStructureID":5530,"Label":"74584-5530 via Conventional from 74642 -> 30063, 81791 -> 81792","Type":"Conventional","Directional":true,"Links":[{"SourceID":74642,"TargetID":30063,"Directional":true},{"SourceID":81791,"TargetID":81792,"Directional":true}]},{"ID":16588,"SourceStructureID":74590,"TargetStructureID":74593,"Label":"74590-74593 via Conventional from 74592 -> 74594","Type":"Conventional","Directional":true,"Links":[{"SourceID":74592,"TargetID":74594,"Directional":true}]},{"ID":16589,"SourceStructureID":74590,"TargetStructureID":74601,"Label":"74590-74601 via Conventional from 74603 -> 74605","Type":"Conventional","Directional":true,"Links":[{"SourceID":74603,"TargetID":74605,"Directional":true}]},{"ID":16590,"SourceStructureID":74610,"TargetStructureID":68539,"Label":"74610-68539 via Conventional from 74611 -> 74609","Type":"Conventional","Directional":true,"Links":[{"SourceID":74611,"TargetID":74609,"Directional":true}]},{"ID":16591,"SourceStructureID":74618,"TargetStructureID":68539,"Label":"74618-68539 via Conventional from 74619 -> 74617","Type":"Conventional","Directional":true,"Links":[{"SourceID":74619,"TargetID":74617,"Directional":true}]},{"ID":16592,"SourceStructureID":74625,"TargetStructureID":74624,"Label":"74625-74624 via Conventional from 74626 -> 74628","Type":"Conventional","Directional":true,"Links":[{"SourceID":74626,"TargetID":74628,"Directional":true}]},{"ID":16593,"SourceStructureID":74635,"TargetStructureID":68539,"Label":"74635-68539 via Conventional from 74637 -> 74634","Type":"Conventional","Directional":true,"Links":[{"SourceID":74637,"TargetID":74634,"Directional":true}]},{"ID":16594,"SourceStructureID":74639,"TargetStructureID":68539,"Label":"74639-68539 via Ribbon Synapse from 74643 -> 74644","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74643,"TargetID":74644,"Directional":true}]},{"ID":16595,"SourceStructureID":74645,"TargetStructureID":68539,"Label":"74645-68539 via Conventional from 74646 -> 74647","Type":"Conventional","Directional":true,"Links":[{"SourceID":74646,"TargetID":74647,"Directional":true}]},{"ID":16596,"SourceStructureID":74648,"TargetStructureID":68539,"Label":"74648-68539 via Conventional from 74649 -> 74650","Type":"Conventional","Directional":true,"Links":[{"SourceID":74649,"TargetID":74650,"Directional":true}]},{"ID":16597,"SourceStructureID":74658,"TargetStructureID":6115,"Label":"74658-6115 via Conventional from 75880 -> 75879","Type":"Conventional","Directional":true,"Links":[{"SourceID":75880,"TargetID":75879,"Directional":true}]},{"ID":16598,"SourceStructureID":74663,"TargetStructureID":68539,"Label":"74663-68539 via Conventional from 74664 -> 74665","Type":"Conventional","Directional":true,"Links":[{"SourceID":74664,"TargetID":74665,"Directional":true}]},{"ID":16599,"SourceStructureID":74667,"TargetStructureID":68539,"Label":"74667-68539 via Conventional from 74679 -> 74685","Type":"Conventional","Directional":true,"Links":[{"SourceID":74679,"TargetID":74685,"Directional":true}]},{"ID":16600,"SourceStructureID":74670,"TargetStructureID":5530,"Label":"74670-5530 via Conventional from 74672 -> 74673","Type":"Conventional","Directional":true,"Links":[{"SourceID":74672,"TargetID":74673,"Directional":true}]},{"ID":16601,"SourceStructureID":74678,"TargetStructureID":5530,"Label":"74678-5530 via Conventional from 74680 -> 74681","Type":"Conventional","Directional":true,"Links":[{"SourceID":74680,"TargetID":74681,"Directional":true}]},{"ID":16602,"SourceStructureID":74688,"TargetStructureID":6115,"Label":"74688-6115 via Conventional from 74689 -> 74690, 74745 -> 74748","Type":"Conventional","Directional":true,"Links":[{"SourceID":74689,"TargetID":74690,"Directional":true},{"SourceID":74745,"TargetID":74748,"Directional":true}]},{"ID":16603,"SourceStructureID":74694,"TargetStructureID":170,"Label":"74694-170 via Conventional from 81845 -> 81846","Type":"Conventional","Directional":true,"Links":[{"SourceID":81845,"TargetID":81846,"Directional":true}]},{"ID":16604,"SourceStructureID":74694,"TargetStructureID":5530,"Label":"74694-5530 via Conventional from 74696 -> 74697","Type":"Conventional","Directional":true,"Links":[{"SourceID":74696,"TargetID":74697,"Directional":true}]},{"ID":16605,"SourceStructureID":74699,"TargetStructureID":6115,"Label":"74699-6115 via Conventional from 74772 -> 74773","Type":"Conventional","Directional":true,"Links":[{"SourceID":74772,"TargetID":74773,"Directional":true}]},{"ID":16606,"SourceStructureID":74724,"TargetStructureID":6156,"Label":"74724-6156 via Conventional from 74730 -> 23245","Type":"Conventional","Directional":true,"Links":[{"SourceID":74730,"TargetID":23245,"Directional":true}]},{"ID":16607,"SourceStructureID":74726,"TargetStructureID":6115,"Label":"74726-6115 via Conventional from 74735 -> 74736","Type":"Conventional","Directional":true,"Links":[{"SourceID":74735,"TargetID":74736,"Directional":true}]},{"ID":16608,"SourceStructureID":74727,"TargetStructureID":170,"Label":"74727-170 via Conventional from 88763 -> 88764","Type":"Conventional","Directional":true,"Links":[{"SourceID":88763,"TargetID":88764,"Directional":true}]},{"ID":16609,"SourceStructureID":74727,"TargetStructureID":5530,"Label":"74727-5530 via Conventional from 74733 -> 74734","Type":"Conventional","Directional":true,"Links":[{"SourceID":74733,"TargetID":74734,"Directional":true}]},{"ID":16610,"SourceStructureID":74740,"TargetStructureID":5650,"Label":"74740-5650 via Conventional from 82113 -> 82114","Type":"Conventional","Directional":true,"Links":[{"SourceID":82113,"TargetID":82114,"Directional":true}]},{"ID":16611,"SourceStructureID":74740,"TargetStructureID":72299,"Label":"74740-72299 via Conventional from 82111 -> 82112","Type":"Conventional","Directional":true,"Links":[{"SourceID":82111,"TargetID":82112,"Directional":true}]},{"ID":16612,"SourceStructureID":74769,"TargetStructureID":6115,"Label":"74769-6115 via Conventional from 74770 -> 74771","Type":"Conventional","Directional":true,"Links":[{"SourceID":74770,"TargetID":74771,"Directional":true}]},{"ID":16613,"SourceStructureID":74786,"TargetStructureID":6115,"Label":"74786-6115 via Conventional from 74787 -> 74788","Type":"Conventional","Directional":true,"Links":[{"SourceID":74787,"TargetID":74788,"Directional":true}]},{"ID":16614,"SourceStructureID":74801,"TargetStructureID":6115,"Label":"74801-6115 via Conventional from 74803 -> 74802","Type":"Conventional","Directional":true,"Links":[{"SourceID":74803,"TargetID":74802,"Directional":true}]},{"ID":16615,"SourceStructureID":74804,"TargetStructureID":6115,"Label":"74804-6115 via Conventional from 74805 -> 74806","Type":"Conventional","Directional":true,"Links":[{"SourceID":74805,"TargetID":74806,"Directional":true}]},{"ID":16616,"SourceStructureID":74810,"TargetStructureID":6115,"Label":"74810-6115 via Conventional from 74811 -> 55839","Type":"Conventional","Directional":true,"Links":[{"SourceID":74811,"TargetID":55839,"Directional":true}]},{"ID":16617,"SourceStructureID":74815,"TargetStructureID":6115,"Label":"74815-6115 via Conventional from 74816 -> 74817","Type":"Conventional","Directional":true,"Links":[{"SourceID":74816,"TargetID":74817,"Directional":true}]},{"ID":16618,"SourceStructureID":74830,"TargetStructureID":6115,"Label":"74830-6115 via Conventional from 80915 -> 80916","Type":"Conventional","Directional":true,"Links":[{"SourceID":80915,"TargetID":80916,"Directional":true}]},{"ID":16619,"SourceStructureID":74834,"TargetStructureID":6115,"Label":"74834-6115 via Conventional from 74836 -> 74835","Type":"Conventional","Directional":true,"Links":[{"SourceID":74836,"TargetID":74835,"Directional":true}]},{"ID":16620,"SourceStructureID":74846,"TargetStructureID":6115,"Label":"74846-6115 via Conventional from 74849 -> 74850","Type":"Conventional","Directional":true,"Links":[{"SourceID":74849,"TargetID":74850,"Directional":true}]},{"ID":16621,"SourceStructureID":74854,"TargetStructureID":68539,"Label":"74854-68539 via Conventional from 74855 -> 74856","Type":"Conventional","Directional":true,"Links":[{"SourceID":74855,"TargetID":74856,"Directional":true}]},{"ID":16622,"SourceStructureID":74859,"TargetStructureID":68539,"Label":"74859-68539 via Conventional from 74860 -> 74861","Type":"Conventional","Directional":true,"Links":[{"SourceID":74860,"TargetID":74861,"Directional":true}]},{"ID":16623,"SourceStructureID":74863,"TargetStructureID":68539,"Label":"74863-68539 via Conventional from 74864 -> 74865","Type":"Conventional","Directional":true,"Links":[{"SourceID":74864,"TargetID":74865,"Directional":true}]},{"ID":16624,"SourceStructureID":74866,"TargetStructureID":68539,"Label":"74866-68539 via Conventional from 74867 -> 74868","Type":"Conventional","Directional":true,"Links":[{"SourceID":74867,"TargetID":74868,"Directional":true}]},{"ID":16625,"SourceStructureID":74873,"TargetStructureID":68539,"Label":"74873-68539 via Conventional from 74874 -> 74875","Type":"Conventional","Directional":true,"Links":[{"SourceID":74874,"TargetID":74875,"Directional":true}]},{"ID":16626,"SourceStructureID":74886,"TargetStructureID":68539,"Label":"74886-68539 via Conventional from 74887 -> 74888","Type":"Conventional","Directional":true,"Links":[{"SourceID":74887,"TargetID":74888,"Directional":true}]},{"ID":16627,"SourceStructureID":74890,"TargetStructureID":68539,"Label":"74890-68539 via Conventional from 74891 -> 74889","Type":"Conventional","Directional":true,"Links":[{"SourceID":74891,"TargetID":74889,"Directional":true}]},{"ID":16628,"SourceStructureID":74899,"TargetStructureID":68539,"Label":"74899-68539 via Conventional from 74900 -> 74901","Type":"Conventional","Directional":true,"Links":[{"SourceID":74900,"TargetID":74901,"Directional":true}]},{"ID":16629,"SourceStructureID":74904,"TargetStructureID":68539,"Label":"74904-68539 via Conventional from 74905 -> 74906","Type":"Conventional","Directional":true,"Links":[{"SourceID":74905,"TargetID":74906,"Directional":true}]},{"ID":16630,"SourceStructureID":74907,"TargetStructureID":83698,"Label":"74907-83698 via Ribbon Synapse from 74908 -> 83711","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74908,"TargetID":83711,"Directional":true}]},{"ID":16631,"SourceStructureID":74907,"TargetStructureID":83715,"Label":"74907-83715 via Ribbon Synapse from 74908 -> 83717","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74908,"TargetID":83717,"Directional":true}]},{"ID":16632,"SourceStructureID":74907,"TargetStructureID":83721,"Label":"74907-83721 via Ribbon Synapse from 74908 -> 83727","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":74908,"TargetID":83727,"Directional":true}]},{"ID":16633,"SourceStructureID":74907,"TargetStructureID":83911,"Label":"74907-83911 via Ribbon Synapse from 83910 -> 83912","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83910,"TargetID":83912,"Directional":true}]},{"ID":16634,"SourceStructureID":74907,"TargetStructureID":84280,"Label":"74907-84280 via Ribbon Synapse from 84279 -> 84281","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84279,"TargetID":84281,"Directional":true}]},{"ID":16635,"SourceStructureID":74907,"TargetStructureID":84283,"Label":"74907-84283 via BC Conventional Synapse from 84466 -> 84467","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84466,"TargetID":84467,"Directional":true}]},{"ID":16636,"SourceStructureID":74907,"TargetStructureID":84284,"Label":"74907-84284 via Ribbon Synapse from 84279 -> 84286","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84279,"TargetID":84286,"Directional":true}]},{"ID":16637,"SourceStructureID":74907,"TargetStructureID":84290,"Label":"74907-84290 via Ribbon Synapse from 84293 -> 84297","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84293,"TargetID":84297,"Directional":true}]},{"ID":16638,"SourceStructureID":74907,"TargetStructureID":84294,"Label":"74907-84294 via Ribbon Synapse from 84293 -> 84296","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84293,"TargetID":84296,"Directional":true}]},{"ID":16639,"SourceStructureID":74907,"TargetStructureID":84463,"Label":"74907-84463 via BC Conventional Synapse from 84464 -> 84465","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84464,"TargetID":84465,"Directional":true}]},{"ID":16640,"SourceStructureID":74907,"TargetStructureID":84500,"Label":"74907-84500 via Ribbon Synapse from 84499 -> 84507","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84499,"TargetID":84507,"Directional":true}]},{"ID":16641,"SourceStructureID":74907,"TargetStructureID":84508,"Label":"74907-84508 via Ribbon Synapse from 84499 -> 84509","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84499,"TargetID":84509,"Directional":true}]},{"ID":16642,"SourceStructureID":74907,"TargetStructureID":84514,"Label":"74907-84514 via Ribbon Synapse from 84498 -> 84515","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84498,"TargetID":84515,"Directional":true}]},{"ID":16643,"SourceStructureID":74907,"TargetStructureID":84635,"Label":"74907-84635 via Ribbon Synapse from 84631 -> 84737","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84631,"TargetID":84737,"Directional":true}]},{"ID":16644,"SourceStructureID":74907,"TargetStructureID":84636,"Label":"74907-84636 via Ribbon Synapse from 84631 -> 84739","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84631,"TargetID":84739,"Directional":true}]},{"ID":16645,"SourceStructureID":74907,"TargetStructureID":84740,"Label":"74907-84740 via Ribbon Synapse from 84631 -> 84742, 84839 -> 84841","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84631,"TargetID":84742,"Directional":true},{"SourceID":84839,"TargetID":84841,"Directional":true}]},{"ID":16646,"SourceStructureID":74907,"TargetStructureID":84844,"Label":"74907-84844 via Ribbon Synapse from 84839 -> 84849","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84839,"TargetID":84849,"Directional":true}]},{"ID":16647,"SourceStructureID":74920,"TargetStructureID":71517,"Label":"74920-71517 via Conventional from 74921 -> 74922","Type":"Conventional","Directional":true,"Links":[{"SourceID":74921,"TargetID":74922,"Directional":true}]},{"ID":16648,"SourceStructureID":74936,"TargetStructureID":71517,"Label":"74936-71517 via Conventional from 74937 -> 74938","Type":"Conventional","Directional":true,"Links":[{"SourceID":74937,"TargetID":74938,"Directional":true}]},{"ID":16649,"SourceStructureID":74939,"TargetStructureID":71517,"Label":"74939-71517 via Conventional from 74940 -> 74941","Type":"Conventional","Directional":true,"Links":[{"SourceID":74940,"TargetID":74941,"Directional":true}]},{"ID":16650,"SourceStructureID":74943,"TargetStructureID":74939,"Label":"74943-74939 via Conventional from 74944 -> 74942","Type":"Conventional","Directional":true,"Links":[{"SourceID":74944,"TargetID":74942,"Directional":true}]},{"ID":16651,"SourceStructureID":74957,"TargetStructureID":6123,"Label":"74957-6123 via Conventional from 74961 -> 74962","Type":"Conventional","Directional":true,"Links":[{"SourceID":74961,"TargetID":74962,"Directional":true}]},{"ID":16652,"SourceStructureID":74957,"TargetStructureID":71517,"Label":"74957-71517 via Conventional from 74958 -> 74959","Type":"Conventional","Directional":true,"Links":[{"SourceID":74958,"TargetID":74959,"Directional":true}]},{"ID":16653,"SourceStructureID":74969,"TargetStructureID":6857,"Label":"74969-6857 via Conventional from 74970 -> 74972","Type":"Conventional","Directional":true,"Links":[{"SourceID":74970,"TargetID":74972,"Directional":true}]},{"ID":16654,"SourceStructureID":74978,"TargetStructureID":5530,"Label":"74978-5530 via Conventional from 75408 -> 75409","Type":"Conventional","Directional":true,"Links":[{"SourceID":75408,"TargetID":75409,"Directional":true}]},{"ID":16655,"SourceStructureID":74994,"TargetStructureID":6115,"Label":"74994-6115 via Conventional from 74995 -> 74993","Type":"Conventional","Directional":true,"Links":[{"SourceID":74995,"TargetID":74993,"Directional":true}]},{"ID":16656,"SourceStructureID":75001,"TargetStructureID":5528,"Label":"75001-5528 via Conventional from 94149 -> 94150, 94394 -> 94395","Type":"Conventional","Directional":true,"Links":[{"SourceID":94149,"TargetID":94150,"Directional":true},{"SourceID":94394,"TargetID":94395,"Directional":true}]},{"ID":16657,"SourceStructureID":75001,"TargetStructureID":5530,"Label":"75001-5530 via Conventional from 75006 -> 75008","Type":"Conventional","Directional":true,"Links":[{"SourceID":75006,"TargetID":75008,"Directional":true}]},{"ID":16658,"SourceStructureID":75012,"TargetStructureID":5530,"Label":"75012-5530 via Conventional from 75013 -> 75014","Type":"Conventional","Directional":true,"Links":[{"SourceID":75013,"TargetID":75014,"Directional":true}]},{"ID":16659,"SourceStructureID":75015,"TargetStructureID":71511,"Label":"75015-71511 via Conventional from 75016 -> 75020","Type":"Conventional","Directional":true,"Links":[{"SourceID":75016,"TargetID":75020,"Directional":true}]},{"ID":16660,"SourceStructureID":75017,"TargetStructureID":5530,"Label":"75017-5530 via Conventional from 75025 -> 75026, 75025 -> 125897","Type":"Conventional","Directional":true,"Links":[{"SourceID":75025,"TargetID":75026,"Directional":true},{"SourceID":75025,"TargetID":125897,"Directional":true}]},{"ID":16661,"SourceStructureID":75021,"TargetStructureID":71517,"Label":"75021-71517 via Conventional from 75023 -> 75024","Type":"Conventional","Directional":true,"Links":[{"SourceID":75023,"TargetID":75024,"Directional":true}]},{"ID":16662,"SourceStructureID":75028,"TargetStructureID":75021,"Label":"75028-75021 via Conventional from 75031 -> 75022","Type":"Conventional","Directional":true,"Links":[{"SourceID":75031,"TargetID":75022,"Directional":true}]},{"ID":16663,"SourceStructureID":75033,"TargetStructureID":6115,"Label":"75033-6115 via Conventional from 75034 -> 55769","Type":"Conventional","Directional":true,"Links":[{"SourceID":75034,"TargetID":55769,"Directional":true}]},{"ID":16664,"SourceStructureID":75040,"TargetStructureID":6115,"Label":"75040-6115 via Conventional from 75044 -> 55768","Type":"Conventional","Directional":true,"Links":[{"SourceID":75044,"TargetID":55768,"Directional":true}]},{"ID":16665,"SourceStructureID":75052,"TargetStructureID":75056,"Label":"75052-75056 via Conventional from 75055 -> 75057","Type":"Conventional","Directional":true,"Links":[{"SourceID":75055,"TargetID":75057,"Directional":true}]},{"ID":16666,"SourceStructureID":75062,"TargetStructureID":6115,"Label":"75062-6115 via Conventional from 75063 -> 75064","Type":"Conventional","Directional":true,"Links":[{"SourceID":75063,"TargetID":75064,"Directional":true}]},{"ID":16667,"SourceStructureID":75068,"TargetStructureID":6115,"Label":"75068-6115 via Conventional from 75069 -> 75070","Type":"Conventional","Directional":true,"Links":[{"SourceID":75069,"TargetID":75070,"Directional":true}]},{"ID":16668,"SourceStructureID":75073,"TargetStructureID":6115,"Label":"75073-6115 via Conventional from 75074 -> 75075","Type":"Conventional","Directional":true,"Links":[{"SourceID":75074,"TargetID":75075,"Directional":true}]},{"ID":16669,"SourceStructureID":75096,"TargetStructureID":6115,"Label":"75096-6115 via Conventional from 75097 -> 75098","Type":"Conventional","Directional":true,"Links":[{"SourceID":75097,"TargetID":75098,"Directional":true}]},{"ID":16670,"SourceStructureID":75104,"TargetStructureID":6115,"Label":"75104-6115 via Conventional from 75105 -> 75106","Type":"Conventional","Directional":true,"Links":[{"SourceID":75105,"TargetID":75106,"Directional":true}]},{"ID":16671,"SourceStructureID":75112,"TargetStructureID":6115,"Label":"75112-6115 via Conventional from 75113 -> 75114","Type":"Conventional","Directional":true,"Links":[{"SourceID":75113,"TargetID":75114,"Directional":true}]},{"ID":16672,"SourceStructureID":75124,"TargetStructureID":6115,"Label":"75124-6115 via Conventional from 75125 -> 75126","Type":"Conventional","Directional":true,"Links":[{"SourceID":75125,"TargetID":75126,"Directional":true}]},{"ID":16673,"SourceStructureID":75130,"TargetStructureID":6115,"Label":"75130-6115 via Conventional from 74824 -> 55841, 75131 -> 75132, 90636 -> 90637","Type":"Conventional","Directional":true,"Links":[{"SourceID":74824,"TargetID":55841,"Directional":true},{"SourceID":75131,"TargetID":75132,"Directional":true},{"SourceID":90636,"TargetID":90637,"Directional":true}]},{"ID":16674,"SourceStructureID":75130,"TargetStructureID":16087,"Label":"75130-16087 via Conventional from 121973 -> 121974","Type":"Conventional","Directional":true,"Links":[{"SourceID":121973,"TargetID":121974,"Directional":true}]},{"ID":16675,"SourceStructureID":75133,"TargetStructureID":6047,"Label":"75133-6047 via Conventional from 112376 -> 112378","Type":"Conventional","Directional":true,"Links":[{"SourceID":112376,"TargetID":112378,"Directional":true}]},{"ID":16676,"SourceStructureID":75133,"TargetStructureID":6115,"Label":"75133-6115 via Conventional from 75134 -> 75135","Type":"Conventional","Directional":true,"Links":[{"SourceID":75134,"TargetID":75135,"Directional":true}]},{"ID":16677,"SourceStructureID":75147,"TargetStructureID":6115,"Label":"75147-6115 via Conventional from 75148 -> 75149","Type":"Conventional","Directional":true,"Links":[{"SourceID":75148,"TargetID":75149,"Directional":true}]},{"ID":16678,"SourceStructureID":75168,"TargetStructureID":72012,"Label":"75168-72012 via Conventional from 75169 -> 75170","Type":"Conventional","Directional":true,"Links":[{"SourceID":75169,"TargetID":75170,"Directional":true}]},{"ID":16679,"SourceStructureID":75173,"TargetStructureID":72012,"Label":"75173-72012 via Conventional from 75174 -> 75172","Type":"Conventional","Directional":true,"Links":[{"SourceID":75174,"TargetID":75172,"Directional":true}]},{"ID":16680,"SourceStructureID":75211,"TargetStructureID":6115,"Label":"75211-6115 via Conventional from 75212 -> 75213","Type":"Conventional","Directional":true,"Links":[{"SourceID":75212,"TargetID":75213,"Directional":true}]},{"ID":16681,"SourceStructureID":75219,"TargetStructureID":6115,"Label":"75219-6115 via Conventional from 75220 -> 75221","Type":"Conventional","Directional":true,"Links":[{"SourceID":75220,"TargetID":75221,"Directional":true}]},{"ID":16682,"SourceStructureID":75232,"TargetStructureID":6115,"Label":"75232-6115 via Conventional from 75234 -> 55862","Type":"Conventional","Directional":true,"Links":[{"SourceID":75234,"TargetID":55862,"Directional":true}]},{"ID":16683,"SourceStructureID":75242,"TargetStructureID":6115,"Label":"75242-6115 via Conventional from 75244 -> 75243","Type":"Conventional","Directional":true,"Links":[{"SourceID":75244,"TargetID":75243,"Directional":true}]},{"ID":16684,"SourceStructureID":75248,"TargetStructureID":6115,"Label":"75248-6115 via Conventional from 75249 -> 74998","Type":"Conventional","Directional":true,"Links":[{"SourceID":75249,"TargetID":74998,"Directional":true}]},{"ID":16685,"SourceStructureID":75273,"TargetStructureID":6115,"Label":"75273-6115 via Conventional from 75274 -> 75275","Type":"Conventional","Directional":true,"Links":[{"SourceID":75274,"TargetID":75275,"Directional":true}]},{"ID":16686,"SourceStructureID":75293,"TargetStructureID":6115,"Label":"75293-6115 via Conventional from 75417 -> 75416","Type":"Conventional","Directional":true,"Links":[{"SourceID":75417,"TargetID":75416,"Directional":true}]},{"ID":16687,"SourceStructureID":75311,"TargetStructureID":66523,"Label":"75311-66523 via Conventional from 75312 -> 75313","Type":"Conventional","Directional":true,"Links":[{"SourceID":75312,"TargetID":75313,"Directional":true}]},{"ID":16688,"SourceStructureID":75317,"TargetStructureID":66523,"Label":"75317-66523 via Conventional from 75318 -> 75319","Type":"Conventional","Directional":true,"Links":[{"SourceID":75318,"TargetID":75319,"Directional":true}]},{"ID":16689,"SourceStructureID":75320,"TargetStructureID":66523,"Label":"75320-66523 via Conventional from 75321 -> 75322","Type":"Conventional","Directional":true,"Links":[{"SourceID":75321,"TargetID":75322,"Directional":true}]},{"ID":16690,"SourceStructureID":75350,"TargetStructureID":66523,"Label":"75350-66523 via Conventional from 75351 -> 75352","Type":"Conventional","Directional":true,"Links":[{"SourceID":75351,"TargetID":75352,"Directional":true}]},{"ID":16691,"SourceStructureID":75359,"TargetStructureID":5107,"Label":"75359-5107 via Conventional from 75363 -> 43678","Type":"Conventional","Directional":true,"Links":[{"SourceID":75363,"TargetID":43678,"Directional":true}]},{"ID":16692,"SourceStructureID":75359,"TargetStructureID":81667,"Label":"75359-81667 via Conventional from 75362 -> 81770","Type":"Conventional","Directional":true,"Links":[{"SourceID":75362,"TargetID":81770,"Directional":true}]},{"ID":16693,"SourceStructureID":75371,"TargetStructureID":5530,"Label":"75371-5530 via Conventional from 75372 -> 75373","Type":"Conventional","Directional":true,"Links":[{"SourceID":75372,"TargetID":75373,"Directional":true}]},{"ID":16694,"SourceStructureID":75374,"TargetStructureID":5530,"Label":"75374-5530 via Conventional from 75375 -> 75376","Type":"Conventional","Directional":true,"Links":[{"SourceID":75375,"TargetID":75376,"Directional":true}]},{"ID":16695,"SourceStructureID":75381,"TargetStructureID":5530,"Label":"75381-5530 via Conventional from 75382 -> 75383","Type":"Conventional","Directional":true,"Links":[{"SourceID":75382,"TargetID":75383,"Directional":true}]},{"ID":16696,"SourceStructureID":75387,"TargetStructureID":5530,"Label":"75387-5530 via Conventional from 75388 -> 75389","Type":"Conventional","Directional":true,"Links":[{"SourceID":75388,"TargetID":75389,"Directional":true}]},{"ID":16697,"SourceStructureID":75390,"TargetStructureID":595,"Label":"75390-595 via Conventional from 135567 -> 135566","Type":"Conventional","Directional":true,"Links":[{"SourceID":135567,"TargetID":135566,"Directional":true}]},{"ID":16698,"SourceStructureID":75390,"TargetStructureID":5530,"Label":"75390-5530 via Conventional from 75391 -> 75392","Type":"Conventional","Directional":true,"Links":[{"SourceID":75391,"TargetID":75392,"Directional":true}]},{"ID":16699,"SourceStructureID":75404,"TargetStructureID":168,"Label":"75404-168 via Conventional from 82009 -> 4230","Type":"Conventional","Directional":true,"Links":[{"SourceID":82009,"TargetID":4230,"Directional":true}]},{"ID":16700,"SourceStructureID":75419,"TargetStructureID":6115,"Label":"75419-6115 via Conventional from 147604 -> 147603","Type":"Conventional","Directional":true,"Links":[{"SourceID":147604,"TargetID":147603,"Directional":true}]},{"ID":16701,"SourceStructureID":75426,"TargetStructureID":6115,"Label":"75426-6115 via Conventional from 75427 -> 55762","Type":"Conventional","Directional":true,"Links":[{"SourceID":75427,"TargetID":55762,"Directional":true}]},{"ID":16702,"SourceStructureID":75429,"TargetStructureID":6115,"Label":"75429-6115 via Conventional from 75432 -> 55764","Type":"Conventional","Directional":true,"Links":[{"SourceID":75432,"TargetID":55764,"Directional":true}]},{"ID":16703,"SourceStructureID":75446,"TargetStructureID":6115,"Label":"75446-6115 via Conventional from 75447 -> 75448","Type":"Conventional","Directional":true,"Links":[{"SourceID":75447,"TargetID":75448,"Directional":true}]},{"ID":16704,"SourceStructureID":75454,"TargetStructureID":6115,"Label":"75454-6115 via Conventional from 75455 -> 75456","Type":"Conventional","Directional":true,"Links":[{"SourceID":75455,"TargetID":75456,"Directional":true}]},{"ID":16705,"SourceStructureID":75457,"TargetStructureID":6115,"Label":"75457-6115 via Conventional from 75458 -> 75459","Type":"Conventional","Directional":true,"Links":[{"SourceID":75458,"TargetID":75459,"Directional":true}]},{"ID":16706,"SourceStructureID":75485,"TargetStructureID":5530,"Label":"75485-5530 via Conventional from 75486 -> 75487","Type":"Conventional","Directional":true,"Links":[{"SourceID":75486,"TargetID":75487,"Directional":true}]},{"ID":16707,"SourceStructureID":75488,"TargetStructureID":5530,"Label":"75488-5530 via Conventional from 75489 -> 75490","Type":"Conventional","Directional":true,"Links":[{"SourceID":75489,"TargetID":75490,"Directional":true}]},{"ID":16708,"SourceStructureID":75488,"TargetStructureID":83051,"Label":"75488-83051 via Conventional from 83325 -> 83326","Type":"Conventional","Directional":true,"Links":[{"SourceID":83325,"TargetID":83326,"Directional":true}]},{"ID":16709,"SourceStructureID":75498,"TargetStructureID":170,"Label":"75498-170 via Conventional from 82530 -> 82531","Type":"Conventional","Directional":true,"Links":[{"SourceID":82530,"TargetID":82531,"Directional":true}]},{"ID":16710,"SourceStructureID":75498,"TargetStructureID":5530,"Label":"75498-5530 via Conventional from 82534 -> 75497","Type":"Conventional","Directional":true,"Links":[{"SourceID":82534,"TargetID":75497,"Directional":true}]},{"ID":16711,"SourceStructureID":75525,"TargetStructureID":5530,"Label":"75525-5530 via Conventional from 115790 -> 115789","Type":"Conventional","Directional":true,"Links":[{"SourceID":115790,"TargetID":115789,"Directional":true}]},{"ID":16712,"SourceStructureID":75530,"TargetStructureID":5530,"Label":"75530-5530 via Conventional from 75531 -> 75532","Type":"Conventional","Directional":true,"Links":[{"SourceID":75531,"TargetID":75532,"Directional":true}]},{"ID":16713,"SourceStructureID":75559,"TargetStructureID":6115,"Label":"75559-6115 via Conventional from 75560 -> 75561","Type":"Conventional","Directional":true,"Links":[{"SourceID":75560,"TargetID":75561,"Directional":true}]},{"ID":16714,"SourceStructureID":75578,"TargetStructureID":5107,"Label":"75578-5107 via Conventional from 75580 -> 75581","Type":"Conventional","Directional":true,"Links":[{"SourceID":75580,"TargetID":75581,"Directional":true}]},{"ID":16715,"SourceStructureID":75578,"TargetStructureID":75583,"Label":"75578-75583 via Conventional from 75582 -> 75584","Type":"Conventional","Directional":true,"Links":[{"SourceID":75582,"TargetID":75584,"Directional":true}]},{"ID":16716,"SourceStructureID":75583,"TargetStructureID":6117,"Label":"75583-6117 via Conventional from 75590 -> 75591","Type":"Conventional","Directional":true,"Links":[{"SourceID":75590,"TargetID":75591,"Directional":true}]},{"ID":16717,"SourceStructureID":75587,"TargetStructureID":75583,"Label":"75587-75583 via Conventional from 75588 -> 75589","Type":"Conventional","Directional":true,"Links":[{"SourceID":75588,"TargetID":75589,"Directional":true}]},{"ID":16718,"SourceStructureID":75625,"TargetStructureID":9787,"Label":"75625-9787 via Ribbon Synapse from 75626 -> 75627, 75628 -> 12240","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":75626,"TargetID":75627,"Directional":true},{"SourceID":75628,"TargetID":12240,"Directional":true}]},{"ID":16719,"SourceStructureID":75630,"TargetStructureID":9787,"Label":"75630-9787 via Conventional from 75631 -> 75629","Type":"Conventional","Directional":true,"Links":[{"SourceID":75631,"TargetID":75629,"Directional":true}]},{"ID":16720,"SourceStructureID":75633,"TargetStructureID":9787,"Label":"75633-9787 via Conventional from 75634 -> 75632","Type":"Conventional","Directional":true,"Links":[{"SourceID":75634,"TargetID":75632,"Directional":true}]},{"ID":16721,"SourceStructureID":75635,"TargetStructureID":9787,"Label":"75635-9787 via Conventional from 75636 -> 56462","Type":"Conventional","Directional":true,"Links":[{"SourceID":75636,"TargetID":56462,"Directional":true}]},{"ID":16722,"SourceStructureID":75637,"TargetStructureID":9787,"Label":"75637-9787 via Conventional from 75638 -> 12241","Type":"Conventional","Directional":true,"Links":[{"SourceID":75638,"TargetID":12241,"Directional":true}]},{"ID":16723,"SourceStructureID":75641,"TargetStructureID":9787,"Label":"75641-9787 via Conventional from 75642 -> 12249","Type":"Conventional","Directional":true,"Links":[{"SourceID":75642,"TargetID":12249,"Directional":true}]},{"ID":16724,"SourceStructureID":75678,"TargetStructureID":68548,"Label":"75678-68548 via Conventional from 75679 -> 75682","Type":"Conventional","Directional":true,"Links":[{"SourceID":75679,"TargetID":75682,"Directional":true}]},{"ID":16725,"SourceStructureID":75695,"TargetStructureID":68548,"Label":"75695-68548 via Conventional from 75696 -> 75694","Type":"Conventional","Directional":true,"Links":[{"SourceID":75696,"TargetID":75694,"Directional":true}]},{"ID":16726,"SourceStructureID":75721,"TargetStructureID":8580,"Label":"75721-8580 via Conventional from 75722 -> 59654","Type":"Conventional","Directional":true,"Links":[{"SourceID":75722,"TargetID":59654,"Directional":true}]},{"ID":16727,"SourceStructureID":75752,"TargetStructureID":73025,"Label":"75752-73025 via Conventional from 75754 -> 75755","Type":"Conventional","Directional":true,"Links":[{"SourceID":75754,"TargetID":75755,"Directional":true}]},{"ID":16728,"SourceStructureID":75760,"TargetStructureID":5530,"Label":"75760-5530 via Conventional from 75766 -> 75767","Type":"Conventional","Directional":true,"Links":[{"SourceID":75766,"TargetID":75767,"Directional":true}]},{"ID":16729,"SourceStructureID":75782,"TargetStructureID":5530,"Label":"75782-5530 via Conventional from 75783 -> 75784","Type":"Conventional","Directional":true,"Links":[{"SourceID":75783,"TargetID":75784,"Directional":true}]},{"ID":16730,"SourceStructureID":75782,"TargetStructureID":75001,"Label":"75782-75001 via Conventional from 82536 -> 82535","Type":"Conventional","Directional":true,"Links":[{"SourceID":82536,"TargetID":82535,"Directional":true}]},{"ID":16731,"SourceStructureID":75792,"TargetStructureID":5530,"Label":"75792-5530 via Conventional from 75793 -> 75794","Type":"Conventional","Directional":true,"Links":[{"SourceID":75793,"TargetID":75794,"Directional":true}]},{"ID":16732,"SourceStructureID":75807,"TargetStructureID":68539,"Label":"75807-68539 via Conventional from 75808 -> 69159","Type":"Conventional","Directional":true,"Links":[{"SourceID":75808,"TargetID":69159,"Directional":true}]},{"ID":16733,"SourceStructureID":75816,"TargetStructureID":68539,"Label":"75816-68539 via Conventional from 75819 -> 75820, 75821 -> 75822, 75823 -> 75824","Type":"Conventional","Directional":true,"Links":[{"SourceID":75819,"TargetID":75820,"Directional":true},{"SourceID":75821,"TargetID":75822,"Directional":true},{"SourceID":75823,"TargetID":75824,"Directional":true}]},{"ID":16734,"SourceStructureID":75825,"TargetStructureID":68539,"Label":"75825-68539 via Conventional from 75826 -> 75827","Type":"Conventional","Directional":true,"Links":[{"SourceID":75826,"TargetID":75827,"Directional":true}]},{"ID":16735,"SourceStructureID":75830,"TargetStructureID":68539,"Label":"75830-68539 via Conventional from 75831 -> 75832","Type":"Conventional","Directional":true,"Links":[{"SourceID":75831,"TargetID":75832,"Directional":true}]},{"ID":16736,"SourceStructureID":75833,"TargetStructureID":68539,"Label":"75833-68539 via Conventional from 75834 -> 69161, 75835 -> 75836","Type":"Conventional","Directional":true,"Links":[{"SourceID":75834,"TargetID":69161,"Directional":true},{"SourceID":75835,"TargetID":75836,"Directional":true}]},{"ID":16737,"SourceStructureID":75893,"TargetStructureID":5530,"Label":"75893-5530 via Conventional from 75894 -> 75892","Type":"Conventional","Directional":true,"Links":[{"SourceID":75894,"TargetID":75892,"Directional":true}]},{"ID":16738,"SourceStructureID":75902,"TargetStructureID":5530,"Label":"75902-5530 via Conventional from 75903 -> 75904","Type":"Conventional","Directional":true,"Links":[{"SourceID":75903,"TargetID":75904,"Directional":true}]},{"ID":16739,"SourceStructureID":75902,"TargetStructureID":71882,"Label":"75902-71882 via Conventional from 90453 -> 90452","Type":"Conventional","Directional":true,"Links":[{"SourceID":90453,"TargetID":90452,"Directional":true}]},{"ID":16740,"SourceStructureID":75917,"TargetStructureID":5530,"Label":"75917-5530 via Conventional from 75918 -> 75919","Type":"Conventional","Directional":true,"Links":[{"SourceID":75918,"TargetID":75919,"Directional":true}]},{"ID":16741,"SourceStructureID":75928,"TargetStructureID":68539,"Label":"75928-68539 via Conventional from 75929 -> 75927","Type":"Conventional","Directional":true,"Links":[{"SourceID":75929,"TargetID":75927,"Directional":true}]},{"ID":16742,"SourceStructureID":75933,"TargetStructureID":22994,"Label":"75933-22994 via Conventional from 75935 -> 75936","Type":"Conventional","Directional":true,"Links":[{"SourceID":75935,"TargetID":75936,"Directional":true}]},{"ID":16743,"SourceStructureID":76039,"TargetStructureID":68539,"Label":"76039-68539 via Conventional from 76040 -> 76043, 76041 -> 76042","Type":"Conventional","Directional":true,"Links":[{"SourceID":76040,"TargetID":76043,"Directional":true},{"SourceID":76041,"TargetID":76042,"Directional":true}]},{"ID":16744,"SourceStructureID":76056,"TargetStructureID":76039,"Label":"76056-76039 via Conventional from 76057 -> 76055","Type":"Conventional","Directional":true,"Links":[{"SourceID":76057,"TargetID":76055,"Directional":true}]},{"ID":16745,"SourceStructureID":76060,"TargetStructureID":68539,"Label":"76060-68539 via Conventional from 76062 -> 76063, 76064 -> 76065","Type":"Conventional","Directional":true,"Links":[{"SourceID":76062,"TargetID":76063,"Directional":true},{"SourceID":76064,"TargetID":76065,"Directional":true}]},{"ID":16746,"SourceStructureID":76066,"TargetStructureID":76067,"Label":"76066-76067 via Conventional from 76068 -> 76070","Type":"Conventional","Directional":true,"Links":[{"SourceID":76068,"TargetID":76070,"Directional":true}]},{"ID":16747,"SourceStructureID":76071,"TargetStructureID":68539,"Label":"76071-68539 via Conventional from 76072 -> 76073","Type":"Conventional","Directional":true,"Links":[{"SourceID":76072,"TargetID":76073,"Directional":true}]},{"ID":16748,"SourceStructureID":76075,"TargetStructureID":5530,"Label":"76075-5530 via Conventional from 76080 -> 76081, 77400 -> 77401","Type":"Conventional","Directional":true,"Links":[{"SourceID":76080,"TargetID":76081,"Directional":true},{"SourceID":77400,"TargetID":77401,"Directional":true}]},{"ID":16749,"SourceStructureID":76086,"TargetStructureID":68539,"Label":"76086-68539 via Conventional from 76087 -> 76085","Type":"Conventional","Directional":true,"Links":[{"SourceID":76087,"TargetID":76085,"Directional":true}]},{"ID":16750,"SourceStructureID":76088,"TargetStructureID":68539,"Label":"76088-68539 via Conventional from 76089 -> 76084","Type":"Conventional","Directional":true,"Links":[{"SourceID":76089,"TargetID":76084,"Directional":true}]},{"ID":16751,"SourceStructureID":76091,"TargetStructureID":5530,"Label":"76091-5530 via Conventional from 76092 -> 76093, 76107 -> 76108","Type":"Conventional","Directional":true,"Links":[{"SourceID":76092,"TargetID":76093,"Directional":true},{"SourceID":76107,"TargetID":76108,"Directional":true}]},{"ID":16752,"SourceStructureID":76103,"TargetStructureID":68539,"Label":"76103-68539 via Conventional from 76105 -> 76101","Type":"Conventional","Directional":true,"Links":[{"SourceID":76105,"TargetID":76101,"Directional":true}]},{"ID":16753,"SourceStructureID":76120,"TargetStructureID":68539,"Label":"76120-68539 via Conventional from 76121 -> 76122","Type":"Conventional","Directional":true,"Links":[{"SourceID":76121,"TargetID":76122,"Directional":true}]},{"ID":16754,"SourceStructureID":76127,"TargetStructureID":284,"Label":"76127-284 via Ribbon Synapse from 76128 -> 76126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76128,"TargetID":76126,"Directional":true}]},{"ID":16755,"SourceStructureID":76127,"TargetStructureID":5117,"Label":"76127-5117 via Ribbon Synapse from 76128 -> 15004","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":76128,"TargetID":15004,"Directional":true}]},{"ID":16756,"SourceStructureID":76141,"TargetStructureID":6115,"Label":"76141-6115 via Conventional from 76144 -> 76142","Type":"Conventional","Directional":true,"Links":[{"SourceID":76144,"TargetID":76142,"Directional":true}]},{"ID":16757,"SourceStructureID":76164,"TargetStructureID":6115,"Label":"76164-6115 via Conventional from 76165 -> 76166","Type":"Conventional","Directional":true,"Links":[{"SourceID":76165,"TargetID":76166,"Directional":true}]},{"ID":16758,"SourceStructureID":76173,"TargetStructureID":6115,"Label":"76173-6115 via Conventional from 76174 -> 76175","Type":"Conventional","Directional":true,"Links":[{"SourceID":76174,"TargetID":76175,"Directional":true}]},{"ID":16759,"SourceStructureID":76199,"TargetStructureID":67042,"Label":"76199-67042 via Conventional from 76200 -> 76198","Type":"Conventional","Directional":true,"Links":[{"SourceID":76200,"TargetID":76198,"Directional":true}]},{"ID":16760,"SourceStructureID":76199,"TargetStructureID":76202,"Label":"76199-76202 via Conventional from 76201 -> 76203","Type":"Conventional","Directional":true,"Links":[{"SourceID":76201,"TargetID":76203,"Directional":true}]},{"ID":16761,"SourceStructureID":76211,"TargetStructureID":14615,"Label":"76211-14615 via Conventional from 76212 -> 76210","Type":"Conventional","Directional":true,"Links":[{"SourceID":76212,"TargetID":76210,"Directional":true}]},{"ID":16762,"SourceStructureID":76214,"TargetStructureID":14615,"Label":"76214-14615 via Conventional from 76217 -> 76636, 76218 -> 76222, 76219 -> 76221, 76609 -> 76607, 76612 -> 76613","Type":"Conventional","Directional":true,"Links":[{"SourceID":76217,"TargetID":76636,"Directional":true},{"SourceID":76218,"TargetID":76222,"Directional":true},{"SourceID":76219,"TargetID":76221,"Directional":true},{"SourceID":76609,"TargetID":76607,"Directional":true},{"SourceID":76612,"TargetID":76613,"Directional":true}]},{"ID":16763,"SourceStructureID":76247,"TargetStructureID":5562,"Label":"76247-5562 via Conventional from 76249 -> 37648","Type":"Conventional","Directional":true,"Links":[{"SourceID":76249,"TargetID":37648,"Directional":true}]},{"ID":16764,"SourceStructureID":76269,"TargetStructureID":5562,"Label":"76269-5562 via Conventional from 76270 -> 63063","Type":"Conventional","Directional":true,"Links":[{"SourceID":76270,"TargetID":63063,"Directional":true}]},{"ID":16765,"SourceStructureID":76283,"TargetStructureID":5562,"Label":"76283-5562 via Conventional from 76284 -> 40295","Type":"Conventional","Directional":true,"Links":[{"SourceID":76284,"TargetID":40295,"Directional":true}]},{"ID":16766,"SourceStructureID":76291,"TargetStructureID":5562,"Label":"76291-5562 via Conventional from 76292 -> 40288","Type":"Conventional","Directional":true,"Links":[{"SourceID":76292,"TargetID":40288,"Directional":true}]},{"ID":16767,"SourceStructureID":76298,"TargetStructureID":5562,"Label":"76298-5562 via Conventional from 76299 -> 63073","Type":"Conventional","Directional":true,"Links":[{"SourceID":76299,"TargetID":63073,"Directional":true}]},{"ID":16768,"SourceStructureID":76300,"TargetStructureID":5562,"Label":"76300-5562 via Conventional from 76301 -> 40284","Type":"Conventional","Directional":true,"Links":[{"SourceID":76301,"TargetID":40284,"Directional":true}]},{"ID":16769,"SourceStructureID":76328,"TargetStructureID":5562,"Label":"76328-5562 via Conventional from 76329 -> 76330","Type":"Conventional","Directional":true,"Links":[{"SourceID":76329,"TargetID":76330,"Directional":true}]},{"ID":16770,"SourceStructureID":76337,"TargetStructureID":5562,"Label":"76337-5562 via Conventional from 76344 -> 40279","Type":"Conventional","Directional":true,"Links":[{"SourceID":76344,"TargetID":40279,"Directional":true}]},{"ID":16771,"SourceStructureID":76349,"TargetStructureID":5562,"Label":"76349-5562 via Conventional from 76350 -> 40277","Type":"Conventional","Directional":true,"Links":[{"SourceID":76350,"TargetID":40277,"Directional":true}]},{"ID":16772,"SourceStructureID":76362,"TargetStructureID":5562,"Label":"76362-5562 via Conventional from 76363 -> 76364","Type":"Conventional","Directional":true,"Links":[{"SourceID":76363,"TargetID":76364,"Directional":true}]},{"ID":16773,"SourceStructureID":76365,"TargetStructureID":5562,"Label":"76365-5562 via Conventional from 76374 -> 76375","Type":"Conventional","Directional":true,"Links":[{"SourceID":76374,"TargetID":76375,"Directional":true}]},{"ID":16774,"SourceStructureID":76378,"TargetStructureID":5562,"Label":"76378-5562 via Conventional from 76383 -> 76382","Type":"Conventional","Directional":true,"Links":[{"SourceID":76383,"TargetID":76382,"Directional":true}]},{"ID":16775,"SourceStructureID":76386,"TargetStructureID":5562,"Label":"76386-5562 via Conventional from 76390 -> 40272","Type":"Conventional","Directional":true,"Links":[{"SourceID":76390,"TargetID":40272,"Directional":true}]},{"ID":16776,"SourceStructureID":76391,"TargetStructureID":5562,"Label":"76391-5562 via Conventional from 76392 -> 40274","Type":"Conventional","Directional":true,"Links":[{"SourceID":76392,"TargetID":40274,"Directional":true}]},{"ID":16777,"SourceStructureID":76396,"TargetStructureID":5562,"Label":"76396-5562 via Conventional from 76397 -> 40273","Type":"Conventional","Directional":true,"Links":[{"SourceID":76397,"TargetID":40273,"Directional":true}]},{"ID":16778,"SourceStructureID":76399,"TargetStructureID":5916,"Label":"76399-5916 via Conventional from 109365 -> 109366","Type":"Conventional","Directional":true,"Links":[{"SourceID":109365,"TargetID":109366,"Directional":true}]},{"ID":16779,"SourceStructureID":76399,"TargetStructureID":63199,"Label":"76399-63199 via Conventional from 109367 -> 109368","Type":"Conventional","Directional":true,"Links":[{"SourceID":109367,"TargetID":109368,"Directional":true}]},{"ID":16780,"SourceStructureID":76401,"TargetStructureID":5562,"Label":"76401-5562 via Conventional from 76402 -> 40271","Type":"Conventional","Directional":true,"Links":[{"SourceID":76402,"TargetID":40271,"Directional":true}]},{"ID":16781,"SourceStructureID":76409,"TargetStructureID":5562,"Label":"76409-5562 via Conventional from 76410 -> 40268","Type":"Conventional","Directional":true,"Links":[{"SourceID":76410,"TargetID":40268,"Directional":true}]},{"ID":16782,"SourceStructureID":76421,"TargetStructureID":5562,"Label":"76421-5562 via Conventional from 78323 -> 78322","Type":"Conventional","Directional":true,"Links":[{"SourceID":78323,"TargetID":78322,"Directional":true}]},{"ID":16783,"SourceStructureID":76430,"TargetStructureID":5562,"Label":"76430-5562 via Conventional from 76431 -> 63074","Type":"Conventional","Directional":true,"Links":[{"SourceID":76431,"TargetID":63074,"Directional":true}]},{"ID":16784,"SourceStructureID":76473,"TargetStructureID":5530,"Label":"76473-5530 via Conventional from 76474 -> 76475","Type":"Conventional","Directional":true,"Links":[{"SourceID":76474,"TargetID":76475,"Directional":true}]},{"ID":16785,"SourceStructureID":76476,"TargetStructureID":5530,"Label":"76476-5530 via Conventional from 76477 -> 76478","Type":"Conventional","Directional":true,"Links":[{"SourceID":76477,"TargetID":76478,"Directional":true}]},{"ID":16786,"SourceStructureID":76479,"TargetStructureID":5530,"Label":"76479-5530 via Conventional from 76480 -> 76481","Type":"Conventional","Directional":true,"Links":[{"SourceID":76480,"TargetID":76481,"Directional":true}]},{"ID":16787,"SourceStructureID":76495,"TargetStructureID":5530,"Label":"76495-5530 via Conventional from 76496 -> 76497","Type":"Conventional","Directional":true,"Links":[{"SourceID":76496,"TargetID":76497,"Directional":true}]},{"ID":16788,"SourceStructureID":76498,"TargetStructureID":5562,"Label":"76498-5562 via Conventional from 76499 -> 76500","Type":"Conventional","Directional":true,"Links":[{"SourceID":76499,"TargetID":76500,"Directional":true}]},{"ID":16789,"SourceStructureID":76505,"TargetStructureID":5562,"Label":"76505-5562 via Conventional from 76506 -> 63078","Type":"Conventional","Directional":true,"Links":[{"SourceID":76506,"TargetID":63078,"Directional":true}]},{"ID":16790,"SourceStructureID":76517,"TargetStructureID":33088,"Label":"76517-33088 via Conventional from 76518 -> 33090","Type":"Conventional","Directional":true,"Links":[{"SourceID":76518,"TargetID":33090,"Directional":true}]},{"ID":16791,"SourceStructureID":76520,"TargetStructureID":5562,"Label":"76520-5562 via Conventional from 76521 -> 76522","Type":"Conventional","Directional":true,"Links":[{"SourceID":76521,"TargetID":76522,"Directional":true}]},{"ID":16792,"SourceStructureID":76530,"TargetStructureID":5530,"Label":"76530-5530 via Conventional from 76540 -> 76541","Type":"Conventional","Directional":true,"Links":[{"SourceID":76540,"TargetID":76541,"Directional":true}]},{"ID":16793,"SourceStructureID":76543,"TargetStructureID":5562,"Label":"76543-5562 via Conventional from 76581 -> 76580","Type":"Conventional","Directional":true,"Links":[{"SourceID":76581,"TargetID":76580,"Directional":true}]},{"ID":16794,"SourceStructureID":76553,"TargetStructureID":5562,"Label":"76553-5562 via Conventional from 76555 -> 76554","Type":"Conventional","Directional":true,"Links":[{"SourceID":76555,"TargetID":76554,"Directional":true}]},{"ID":16795,"SourceStructureID":76566,"TargetStructureID":5562,"Label":"76566-5562 via Conventional from 76567 -> 63213","Type":"Conventional","Directional":true,"Links":[{"SourceID":76567,"TargetID":63213,"Directional":true}]},{"ID":16796,"SourceStructureID":76571,"TargetStructureID":5562,"Label":"76571-5562 via Conventional from 76572 -> 63214","Type":"Conventional","Directional":true,"Links":[{"SourceID":76572,"TargetID":63214,"Directional":true}]},{"ID":16797,"SourceStructureID":76577,"TargetStructureID":5562,"Label":"76577-5562 via Conventional from 76579 -> 76578","Type":"Conventional","Directional":true,"Links":[{"SourceID":76579,"TargetID":76578,"Directional":true}]},{"ID":16798,"SourceStructureID":76582,"TargetStructureID":14615,"Label":"76582-14615 via Conventional from 76583 -> 76586","Type":"Conventional","Directional":true,"Links":[{"SourceID":76583,"TargetID":76586,"Directional":true}]},{"ID":16799,"SourceStructureID":76591,"TargetStructureID":5562,"Label":"76591-5562 via Conventional from 76592 -> 49394","Type":"Conventional","Directional":true,"Links":[{"SourceID":76592,"TargetID":49394,"Directional":true}]},{"ID":16800,"SourceStructureID":76616,"TargetStructureID":5562,"Label":"76616-5562 via Conventional from 76618 -> 76617","Type":"Conventional","Directional":true,"Links":[{"SourceID":76618,"TargetID":76617,"Directional":true}]},{"ID":16801,"SourceStructureID":76628,"TargetStructureID":5562,"Label":"76628-5562 via Conventional from 76629 -> 63217","Type":"Conventional","Directional":true,"Links":[{"SourceID":76629,"TargetID":63217,"Directional":true}]},{"ID":16802,"SourceStructureID":76630,"TargetStructureID":5562,"Label":"76630-5562 via Conventional from 76631 -> 63216","Type":"Conventional","Directional":true,"Links":[{"SourceID":76631,"TargetID":63216,"Directional":true}]},{"ID":16803,"SourceStructureID":76638,"TargetStructureID":5562,"Label":"76638-5562 via Conventional from 76644 -> 76645","Type":"Conventional","Directional":true,"Links":[{"SourceID":76644,"TargetID":76645,"Directional":true}]},{"ID":16804,"SourceStructureID":76655,"TargetStructureID":5562,"Label":"76655-5562 via Conventional from 76662 -> 31298","Type":"Conventional","Directional":true,"Links":[{"SourceID":76662,"TargetID":31298,"Directional":true}]},{"ID":16805,"SourceStructureID":76656,"TargetStructureID":5562,"Label":"76656-5562 via Conventional from 76659 -> 76660","Type":"Conventional","Directional":true,"Links":[{"SourceID":76659,"TargetID":76660,"Directional":true}]},{"ID":16806,"SourceStructureID":76663,"TargetStructureID":5562,"Label":"76663-5562 via Conventional from 76667 -> 31297, 76669 -> 76668","Type":"Conventional","Directional":true,"Links":[{"SourceID":76667,"TargetID":31297,"Directional":true},{"SourceID":76669,"TargetID":76668,"Directional":true}]},{"ID":16807,"SourceStructureID":76707,"TargetStructureID":5562,"Label":"76707-5562 via Conventional from 76708 -> 47312","Type":"Conventional","Directional":true,"Links":[{"SourceID":76708,"TargetID":47312,"Directional":true}]},{"ID":16808,"SourceStructureID":76709,"TargetStructureID":5562,"Label":"76709-5562 via Conventional from 76710 -> 63246","Type":"Conventional","Directional":true,"Links":[{"SourceID":76710,"TargetID":63246,"Directional":true}]},{"ID":16809,"SourceStructureID":76721,"TargetStructureID":5562,"Label":"76721-5562 via Conventional from 76722 -> 76723","Type":"Conventional","Directional":true,"Links":[{"SourceID":76722,"TargetID":76723,"Directional":true}]},{"ID":16810,"SourceStructureID":76742,"TargetStructureID":5530,"Label":"76742-5530 via Conventional from 76743 -> 76744","Type":"Conventional","Directional":true,"Links":[{"SourceID":76743,"TargetID":76744,"Directional":true}]},{"ID":16811,"SourceStructureID":76749,"TargetStructureID":5530,"Label":"76749-5530 via Conventional from 76750 -> 76751","Type":"Conventional","Directional":true,"Links":[{"SourceID":76750,"TargetID":76751,"Directional":true}]},{"ID":16812,"SourceStructureID":76752,"TargetStructureID":5530,"Label":"76752-5530 via Conventional from 76753 -> 76754","Type":"Conventional","Directional":true,"Links":[{"SourceID":76753,"TargetID":76754,"Directional":true}]},{"ID":16813,"SourceStructureID":76756,"TargetStructureID":5530,"Label":"76756-5530 via Conventional from 76757 -> 76758","Type":"Conventional","Directional":true,"Links":[{"SourceID":76757,"TargetID":76758,"Directional":true}]},{"ID":16814,"SourceStructureID":76766,"TargetStructureID":5530,"Label":"76766-5530 via Conventional from 76767 -> 76768","Type":"Conventional","Directional":true,"Links":[{"SourceID":76767,"TargetID":76768,"Directional":true}]},{"ID":16815,"SourceStructureID":76775,"TargetStructureID":5530,"Label":"76775-5530 via Conventional from 76776 -> 76777","Type":"Conventional","Directional":true,"Links":[{"SourceID":76776,"TargetID":76777,"Directional":true}]},{"ID":16816,"SourceStructureID":76778,"TargetStructureID":5530,"Label":"76778-5530 via Conventional from 76779 -> 76780","Type":"Conventional","Directional":true,"Links":[{"SourceID":76779,"TargetID":76780,"Directional":true}]},{"ID":16817,"SourceStructureID":76781,"TargetStructureID":5530,"Label":"76781-5530 via Conventional from 76782 -> 76783","Type":"Conventional","Directional":true,"Links":[{"SourceID":76782,"TargetID":76783,"Directional":true}]},{"ID":16818,"SourceStructureID":76785,"TargetStructureID":5530,"Label":"76785-5530 via Conventional from 76787 -> 76788","Type":"Conventional","Directional":true,"Links":[{"SourceID":76787,"TargetID":76788,"Directional":true}]},{"ID":16819,"SourceStructureID":76786,"TargetStructureID":5530,"Label":"76786-5530 via Conventional from 76789 -> 76790","Type":"Conventional","Directional":true,"Links":[{"SourceID":76789,"TargetID":76790,"Directional":true}]},{"ID":16820,"SourceStructureID":76792,"TargetStructureID":14615,"Label":"76792-14615 via Conventional from 76793 -> 76794, 76884 -> 76885","Type":"Conventional","Directional":true,"Links":[{"SourceID":76793,"TargetID":76794,"Directional":true},{"SourceID":76884,"TargetID":76885,"Directional":true}]},{"ID":16821,"SourceStructureID":76800,"TargetStructureID":5530,"Label":"76800-5530 via Conventional from 76822 -> 76823","Type":"Conventional","Directional":true,"Links":[{"SourceID":76822,"TargetID":76823,"Directional":true}]},{"ID":16822,"SourceStructureID":76808,"TargetStructureID":14615,"Label":"76808-14615 via Conventional from 76809 -> 76807","Type":"Conventional","Directional":true,"Links":[{"SourceID":76809,"TargetID":76807,"Directional":true}]},{"ID":16823,"SourceStructureID":76811,"TargetStructureID":14615,"Label":"76811-14615 via Conventional from 76812 -> 76813","Type":"Conventional","Directional":true,"Links":[{"SourceID":76812,"TargetID":76813,"Directional":true}]},{"ID":16824,"SourceStructureID":76827,"TargetStructureID":14615,"Label":"76827-14615 via Conventional from 76843 -> 76844, 76855 -> 76856","Type":"Conventional","Directional":true,"Links":[{"SourceID":76843,"TargetID":76844,"Directional":true},{"SourceID":76855,"TargetID":76856,"Directional":true}]},{"ID":16825,"SourceStructureID":76837,"TargetStructureID":76829,"Label":"76837-76829 via Conventional from 76838 -> 76836","Type":"Conventional","Directional":true,"Links":[{"SourceID":76838,"TargetID":76836,"Directional":true}]},{"ID":16826,"SourceStructureID":76859,"TargetStructureID":14615,"Label":"76859-14615 via Conventional from 76860 -> 76858","Type":"Conventional","Directional":true,"Links":[{"SourceID":76860,"TargetID":76858,"Directional":true}]},{"ID":16827,"SourceStructureID":76862,"TargetStructureID":76859,"Label":"76862-76859 via Conventional from 76863 -> 76861","Type":"Conventional","Directional":true,"Links":[{"SourceID":76863,"TargetID":76861,"Directional":true}]},{"ID":16828,"SourceStructureID":76867,"TargetStructureID":5530,"Label":"76867-5530 via Conventional from 82572 -> 76755","Type":"Conventional","Directional":true,"Links":[{"SourceID":82572,"TargetID":76755,"Directional":true}]},{"ID":16829,"SourceStructureID":76867,"TargetStructureID":76749,"Label":"76867-76749 via Conventional from 82573 -> 82574","Type":"Conventional","Directional":true,"Links":[{"SourceID":82573,"TargetID":82574,"Directional":true}]},{"ID":16830,"SourceStructureID":76871,"TargetStructureID":14615,"Label":"76871-14615 via Conventional from 76872 -> 76870","Type":"Conventional","Directional":true,"Links":[{"SourceID":76872,"TargetID":76870,"Directional":true}]},{"ID":16831,"SourceStructureID":76877,"TargetStructureID":76595,"Label":"76877-76595 via Conventional from 76878 -> 76637","Type":"Conventional","Directional":true,"Links":[{"SourceID":76878,"TargetID":76637,"Directional":true}]},{"ID":16832,"SourceStructureID":76886,"TargetStructureID":67671,"Label":"76886-67671 via Conventional from 76887 -> 76888","Type":"Conventional","Directional":true,"Links":[{"SourceID":76887,"TargetID":76888,"Directional":true}]},{"ID":16833,"SourceStructureID":76912,"TargetStructureID":14615,"Label":"76912-14615 via Conventional from 76913 -> 76914","Type":"Conventional","Directional":true,"Links":[{"SourceID":76913,"TargetID":76914,"Directional":true}]},{"ID":16834,"SourceStructureID":76947,"TargetStructureID":5562,"Label":"76947-5562 via Conventional from 76948 -> 63222","Type":"Conventional","Directional":true,"Links":[{"SourceID":76948,"TargetID":63222,"Directional":true}]},{"ID":16835,"SourceStructureID":76949,"TargetStructureID":5562,"Label":"76949-5562 via Conventional from 76950 -> 63234","Type":"Conventional","Directional":true,"Links":[{"SourceID":76950,"TargetID":63234,"Directional":true}]},{"ID":16836,"SourceStructureID":76951,"TargetStructureID":5562,"Label":"76951-5562 via Conventional from 76952 -> 63232","Type":"Conventional","Directional":true,"Links":[{"SourceID":76952,"TargetID":63232,"Directional":true}]},{"ID":16837,"SourceStructureID":76973,"TargetStructureID":10931,"Label":"76973-10931 via Conventional from 76975 -> 76976, 77008 -> 77009, 77030 -> 77031","Type":"Conventional","Directional":true,"Links":[{"SourceID":76975,"TargetID":76976,"Directional":true},{"SourceID":77008,"TargetID":77009,"Directional":true},{"SourceID":77030,"TargetID":77031,"Directional":true}]},{"ID":16838,"SourceStructureID":76977,"TargetStructureID":71519,"Label":"76977-71519 via Conventional from 76978 -> 76979","Type":"Conventional","Directional":true,"Links":[{"SourceID":76978,"TargetID":76979,"Directional":true}]},{"ID":16839,"SourceStructureID":76980,"TargetStructureID":71519,"Label":"76980-71519 via Conventional from 76981 -> 71712","Type":"Conventional","Directional":true,"Links":[{"SourceID":76981,"TargetID":71712,"Directional":true}]},{"ID":16840,"SourceStructureID":76980,"TargetStructureID":76986,"Label":"76980-76986 via Conventional from 76985 -> 76988","Type":"Conventional","Directional":true,"Links":[{"SourceID":76985,"TargetID":76988,"Directional":true}]},{"ID":16841,"SourceStructureID":76983,"TargetStructureID":76980,"Label":"76983-76980 via Conventional from 76984 -> 76982","Type":"Conventional","Directional":true,"Links":[{"SourceID":76984,"TargetID":76982,"Directional":true}]},{"ID":16842,"SourceStructureID":76986,"TargetStructureID":71519,"Label":"76986-71519 via Conventional from 76987 -> 71713","Type":"Conventional","Directional":true,"Links":[{"SourceID":76987,"TargetID":71713,"Directional":true}]},{"ID":16843,"SourceStructureID":76990,"TargetStructureID":71519,"Label":"76990-71519 via Conventional from 76991 -> 76989","Type":"Conventional","Directional":true,"Links":[{"SourceID":76991,"TargetID":76989,"Directional":true}]},{"ID":16844,"SourceStructureID":76996,"TargetStructureID":71517,"Label":"76996-71517 via Conventional from 76997 -> 76998","Type":"Conventional","Directional":true,"Links":[{"SourceID":76997,"TargetID":76998,"Directional":true}]},{"ID":16845,"SourceStructureID":77012,"TargetStructureID":10931,"Label":"77012-10931 via Conventional from 77013 -> 77014, 77016 -> 77017","Type":"Conventional","Directional":true,"Links":[{"SourceID":77013,"TargetID":77014,"Directional":true},{"SourceID":77016,"TargetID":77017,"Directional":true}]},{"ID":16846,"SourceStructureID":77019,"TargetStructureID":10931,"Label":"77019-10931 via Conventional from 77025 -> 14220","Type":"Conventional","Directional":true,"Links":[{"SourceID":77025,"TargetID":14220,"Directional":true}]},{"ID":16847,"SourceStructureID":77023,"TargetStructureID":71519,"Label":"77023-71519 via Conventional from 77024 -> 71703","Type":"Conventional","Directional":true,"Links":[{"SourceID":77024,"TargetID":71703,"Directional":true}]},{"ID":16848,"SourceStructureID":77027,"TargetStructureID":71519,"Label":"77027-71519 via Conventional from 77028 -> 71680","Type":"Conventional","Directional":true,"Links":[{"SourceID":77028,"TargetID":71680,"Directional":true}]},{"ID":16849,"SourceStructureID":77033,"TargetStructureID":77027,"Label":"77033-77027 via Conventional from 77034 -> 77032","Type":"Conventional","Directional":true,"Links":[{"SourceID":77034,"TargetID":77032,"Directional":true}]},{"ID":16850,"SourceStructureID":77037,"TargetStructureID":71519,"Label":"77037-71519 via Conventional from 77038 -> 77039","Type":"Conventional","Directional":true,"Links":[{"SourceID":77038,"TargetID":77039,"Directional":true}]},{"ID":16851,"SourceStructureID":77040,"TargetStructureID":71519,"Label":"77040-71519 via Conventional from 77041 -> 77042","Type":"Conventional","Directional":true,"Links":[{"SourceID":77041,"TargetID":77042,"Directional":true}]},{"ID":16852,"SourceStructureID":77043,"TargetStructureID":71519,"Label":"77043-71519 via Conventional from 77044 -> 77045","Type":"Conventional","Directional":true,"Links":[{"SourceID":77044,"TargetID":77045,"Directional":true}]},{"ID":16853,"SourceStructureID":77046,"TargetStructureID":71519,"Label":"77046-71519 via Conventional from 77047 -> 77049","Type":"Conventional","Directional":true,"Links":[{"SourceID":77047,"TargetID":77049,"Directional":true}]},{"ID":16854,"SourceStructureID":77051,"TargetStructureID":71519,"Label":"77051-71519 via Conventional from 77052 -> 77050","Type":"Conventional","Directional":true,"Links":[{"SourceID":77052,"TargetID":77050,"Directional":true}]},{"ID":16855,"SourceStructureID":77077,"TargetStructureID":5394,"Label":"77077-5394 via Conventional from 77078 -> 77074","Type":"Conventional","Directional":true,"Links":[{"SourceID":77078,"TargetID":77074,"Directional":true}]},{"ID":16856,"SourceStructureID":77110,"TargetStructureID":5562,"Label":"77110-5562 via Conventional from 77114 -> 77113","Type":"Conventional","Directional":true,"Links":[{"SourceID":77114,"TargetID":77113,"Directional":true}]},{"ID":16857,"SourceStructureID":77116,"TargetStructureID":65351,"Label":"77116-65351 via Conventional from 78980 -> 78979","Type":"Conventional","Directional":true,"Links":[{"SourceID":78980,"TargetID":78979,"Directional":true}]},{"ID":16858,"SourceStructureID":77118,"TargetStructureID":5562,"Label":"77118-5562 via Conventional from 77119 -> 63227","Type":"Conventional","Directional":true,"Links":[{"SourceID":77119,"TargetID":63227,"Directional":true}]},{"ID":16859,"SourceStructureID":77120,"TargetStructureID":5562,"Label":"77120-5562 via Conventional from 77121 -> 63225","Type":"Conventional","Directional":true,"Links":[{"SourceID":77121,"TargetID":63225,"Directional":true}]},{"ID":16860,"SourceStructureID":77122,"TargetStructureID":5562,"Label":"77122-5562 via Conventional from 77123 -> 63226","Type":"Conventional","Directional":true,"Links":[{"SourceID":77123,"TargetID":63226,"Directional":true}]},{"ID":16861,"SourceStructureID":77137,"TargetStructureID":5562,"Label":"77137-5562 via Conventional from 77139 -> 77138","Type":"Conventional","Directional":true,"Links":[{"SourceID":77139,"TargetID":77138,"Directional":true}]},{"ID":16862,"SourceStructureID":77140,"TargetStructureID":5562,"Label":"77140-5562 via Conventional from 77142 -> 77141","Type":"Conventional","Directional":true,"Links":[{"SourceID":77142,"TargetID":77141,"Directional":true}]},{"ID":16863,"SourceStructureID":77143,"TargetStructureID":5562,"Label":"77143-5562 via Conventional from 77144 -> 77145","Type":"Conventional","Directional":true,"Links":[{"SourceID":77144,"TargetID":77145,"Directional":true}]},{"ID":16864,"SourceStructureID":77172,"TargetStructureID":5562,"Label":"77172-5562 via Conventional from 77173 -> 77174","Type":"Conventional","Directional":true,"Links":[{"SourceID":77173,"TargetID":77174,"Directional":true}]},{"ID":16865,"SourceStructureID":77199,"TargetStructureID":5562,"Label":"77199-5562 via Conventional from 77201 -> 77200","Type":"Conventional","Directional":true,"Links":[{"SourceID":77201,"TargetID":77200,"Directional":true}]},{"ID":16866,"SourceStructureID":77215,"TargetStructureID":7024,"Label":"77215-7024 via Conventional from 106603 -> 106602","Type":"Conventional","Directional":true,"Links":[{"SourceID":106603,"TargetID":106602,"Directional":true}]},{"ID":16867,"SourceStructureID":77222,"TargetStructureID":5562,"Label":"77222-5562 via Conventional from 77224 -> 77223","Type":"Conventional","Directional":true,"Links":[{"SourceID":77224,"TargetID":77223,"Directional":true}]},{"ID":16868,"SourceStructureID":77225,"TargetStructureID":5562,"Label":"77225-5562 via Conventional from 77227 -> 77226","Type":"Conventional","Directional":true,"Links":[{"SourceID":77227,"TargetID":77226,"Directional":true}]},{"ID":16869,"SourceStructureID":77228,"TargetStructureID":5562,"Label":"77228-5562 via Conventional from 77229 -> 77230","Type":"Conventional","Directional":true,"Links":[{"SourceID":77229,"TargetID":77230,"Directional":true}]},{"ID":16870,"SourceStructureID":77252,"TargetStructureID":5562,"Label":"77252-5562 via Conventional from 77253 -> 77254","Type":"Conventional","Directional":true,"Links":[{"SourceID":77253,"TargetID":77254,"Directional":true}]},{"ID":16871,"SourceStructureID":77280,"TargetStructureID":5562,"Label":"77280-5562 via Conventional from 77281 -> 33097","Type":"Conventional","Directional":true,"Links":[{"SourceID":77281,"TargetID":33097,"Directional":true}]},{"ID":16872,"SourceStructureID":77292,"TargetStructureID":5562,"Label":"77292-5562 via Conventional from 77293 -> 77294","Type":"Conventional","Directional":true,"Links":[{"SourceID":77293,"TargetID":77294,"Directional":true}]},{"ID":16873,"SourceStructureID":77296,"TargetStructureID":5562,"Label":"77296-5562 via Conventional from 77426 -> 77427","Type":"Conventional","Directional":true,"Links":[{"SourceID":77426,"TargetID":77427,"Directional":true}]},{"ID":16874,"SourceStructureID":77308,"TargetStructureID":5562,"Label":"77308-5562 via Conventional from 77309 -> 49561","Type":"Conventional","Directional":true,"Links":[{"SourceID":77309,"TargetID":49561,"Directional":true}]},{"ID":16875,"SourceStructureID":77332,"TargetStructureID":5530,"Label":"77332-5530 via Conventional from 77333 -> 77334, 82593 -> 82592","Type":"Conventional","Directional":true,"Links":[{"SourceID":77333,"TargetID":77334,"Directional":true},{"SourceID":82593,"TargetID":82592,"Directional":true}]},{"ID":16876,"SourceStructureID":77342,"TargetStructureID":5530,"Label":"77342-5530 via Conventional from 77343 -> 77344","Type":"Conventional","Directional":true,"Links":[{"SourceID":77343,"TargetID":77344,"Directional":true}]},{"ID":16877,"SourceStructureID":77366,"TargetStructureID":67671,"Label":"77366-67671 via Conventional from 77368 -> 77369","Type":"Conventional","Directional":true,"Links":[{"SourceID":77368,"TargetID":77369,"Directional":true}]},{"ID":16878,"SourceStructureID":77367,"TargetStructureID":67671,"Label":"77367-67671 via Conventional from 77373 -> 77374","Type":"Conventional","Directional":true,"Links":[{"SourceID":77373,"TargetID":77374,"Directional":true}]},{"ID":16879,"SourceStructureID":77370,"TargetStructureID":67671,"Label":"77370-67671 via Conventional from 77371 -> 77372","Type":"Conventional","Directional":true,"Links":[{"SourceID":77371,"TargetID":77372,"Directional":true}]},{"ID":16880,"SourceStructureID":77375,"TargetStructureID":67671,"Label":"77375-67671 via Conventional from 77376 -> 77377","Type":"Conventional","Directional":true,"Links":[{"SourceID":77376,"TargetID":77377,"Directional":true}]},{"ID":16881,"SourceStructureID":77378,"TargetStructureID":67671,"Label":"77378-67671 via Conventional from 77380 -> 77382","Type":"Conventional","Directional":true,"Links":[{"SourceID":77380,"TargetID":77382,"Directional":true}]},{"ID":16882,"SourceStructureID":77379,"TargetStructureID":67671,"Label":"77379-67671 via Conventional from 77381 -> 77383","Type":"Conventional","Directional":true,"Links":[{"SourceID":77381,"TargetID":77383,"Directional":true}]},{"ID":16883,"SourceStructureID":77388,"TargetStructureID":5530,"Label":"77388-5530 via Conventional from 77389 -> 77390","Type":"Conventional","Directional":true,"Links":[{"SourceID":77389,"TargetID":77390,"Directional":true}]},{"ID":16884,"SourceStructureID":77393,"TargetStructureID":5530,"Label":"77393-5530 via Conventional from 77394 -> 77395","Type":"Conventional","Directional":true,"Links":[{"SourceID":77394,"TargetID":77395,"Directional":true}]},{"ID":16885,"SourceStructureID":77403,"TargetStructureID":5530,"Label":"77403-5530 via Conventional from 77404 -> 77405","Type":"Conventional","Directional":true,"Links":[{"SourceID":77404,"TargetID":77405,"Directional":true}]},{"ID":16886,"SourceStructureID":77403,"TargetStructureID":82677,"Label":"77403-82677 via Conventional from 83655 -> 83654","Type":"Conventional","Directional":true,"Links":[{"SourceID":83655,"TargetID":83654,"Directional":true}]},{"ID":16887,"SourceStructureID":77407,"TargetStructureID":5530,"Label":"77407-5530 via Conventional from 77408 -> 77409","Type":"Conventional","Directional":true,"Links":[{"SourceID":77408,"TargetID":77409,"Directional":true}]},{"ID":16888,"SourceStructureID":77412,"TargetStructureID":5530,"Label":"77412-5530 via Conventional from 77414 -> 77415","Type":"Conventional","Directional":true,"Links":[{"SourceID":77414,"TargetID":77415,"Directional":true}]},{"ID":16889,"SourceStructureID":77433,"TargetStructureID":5562,"Label":"77433-5562 via Conventional from 77435 -> 77434","Type":"Conventional","Directional":true,"Links":[{"SourceID":77435,"TargetID":77434,"Directional":true}]},{"ID":16890,"SourceStructureID":77436,"TargetStructureID":5562,"Label":"77436-5562 via Conventional from 77439 -> 49564","Type":"Conventional","Directional":true,"Links":[{"SourceID":77439,"TargetID":49564,"Directional":true}]},{"ID":16891,"SourceStructureID":77463,"TargetStructureID":5562,"Label":"77463-5562 via Conventional from 77464 -> 77465","Type":"Conventional","Directional":true,"Links":[{"SourceID":77464,"TargetID":77465,"Directional":true}]},{"ID":16892,"SourceStructureID":77476,"TargetStructureID":5562,"Label":"77476-5562 via Conventional from 77477 -> 77478","Type":"Conventional","Directional":true,"Links":[{"SourceID":77477,"TargetID":77478,"Directional":true}]},{"ID":16893,"SourceStructureID":77484,"TargetStructureID":5562,"Label":"77484-5562 via Conventional from 77485 -> 77486","Type":"Conventional","Directional":true,"Links":[{"SourceID":77485,"TargetID":77486,"Directional":true}]},{"ID":16894,"SourceStructureID":77504,"TargetStructureID":5562,"Label":"77504-5562 via Conventional from 77505 -> 77506","Type":"Conventional","Directional":true,"Links":[{"SourceID":77505,"TargetID":77506,"Directional":true}]},{"ID":16895,"SourceStructureID":77513,"TargetStructureID":5562,"Label":"77513-5562 via Conventional from 77514 -> 77515","Type":"Conventional","Directional":true,"Links":[{"SourceID":77514,"TargetID":77515,"Directional":true}]},{"ID":16896,"SourceStructureID":77529,"TargetStructureID":5562,"Label":"77529-5562 via Conventional from 77530 -> 77531","Type":"Conventional","Directional":true,"Links":[{"SourceID":77530,"TargetID":77531,"Directional":true}]},{"ID":16897,"SourceStructureID":77539,"TargetStructureID":5562,"Label":"77539-5562 via Conventional from 77540 -> 77541","Type":"Conventional","Directional":true,"Links":[{"SourceID":77540,"TargetID":77541,"Directional":true}]},{"ID":16898,"SourceStructureID":77555,"TargetStructureID":5562,"Label":"77555-5562 via Conventional from 77556 -> 77557","Type":"Conventional","Directional":true,"Links":[{"SourceID":77556,"TargetID":77557,"Directional":true}]},{"ID":16899,"SourceStructureID":77563,"TargetStructureID":5562,"Label":"77563-5562 via Conventional from 77564 -> 77565","Type":"Conventional","Directional":true,"Links":[{"SourceID":77564,"TargetID":77565,"Directional":true}]},{"ID":16900,"SourceStructureID":77575,"TargetStructureID":5562,"Label":"77575-5562 via Conventional from 77577 -> 77576","Type":"Conventional","Directional":true,"Links":[{"SourceID":77577,"TargetID":77576,"Directional":true}]},{"ID":16901,"SourceStructureID":77596,"TargetStructureID":5562,"Label":"77596-5562 via Conventional from 77610 -> 77611","Type":"Conventional","Directional":true,"Links":[{"SourceID":77610,"TargetID":77611,"Directional":true}]},{"ID":16902,"SourceStructureID":77598,"TargetStructureID":5562,"Label":"77598-5562 via Unknown from 77599 -> 77597","Type":"Unknown","Directional":true,"Links":[{"SourceID":77599,"TargetID":77597,"Directional":true}]},{"ID":16903,"SourceStructureID":77603,"TargetStructureID":5284,"Label":"77603-5284 via Conventional from 84535 -> 64598","Type":"Conventional","Directional":true,"Links":[{"SourceID":84535,"TargetID":64598,"Directional":true}]},{"ID":16904,"SourceStructureID":77613,"TargetStructureID":5562,"Label":"77613-5562 via Conventional from 77614 -> 77615","Type":"Conventional","Directional":true,"Links":[{"SourceID":77614,"TargetID":77615,"Directional":true}]},{"ID":16905,"SourceStructureID":77619,"TargetStructureID":5530,"Label":"77619-5530 via Conventional from 77620 -> 77621","Type":"Conventional","Directional":true,"Links":[{"SourceID":77620,"TargetID":77621,"Directional":true}]},{"ID":16906,"SourceStructureID":77623,"TargetStructureID":5530,"Label":"77623-5530 via Conventional from 77624 -> 45400","Type":"Conventional","Directional":true,"Links":[{"SourceID":77624,"TargetID":45400,"Directional":true}]},{"ID":16907,"SourceStructureID":77625,"TargetStructureID":5530,"Label":"77625-5530 via Conventional from 77626 -> 77627","Type":"Conventional","Directional":true,"Links":[{"SourceID":77626,"TargetID":77627,"Directional":true}]},{"ID":16908,"SourceStructureID":77637,"TargetStructureID":5530,"Label":"77637-5530 via Conventional from 77638 -> 77639","Type":"Conventional","Directional":true,"Links":[{"SourceID":77638,"TargetID":77639,"Directional":true}]},{"ID":16909,"SourceStructureID":77642,"TargetStructureID":5530,"Label":"77642-5530 via Conventional from 77646 -> 77647","Type":"Conventional","Directional":true,"Links":[{"SourceID":77646,"TargetID":77647,"Directional":true}]},{"ID":16910,"SourceStructureID":77656,"TargetStructureID":77654,"Label":"77656-77654 via Conventional from 77657 -> 77655","Type":"Conventional","Directional":true,"Links":[{"SourceID":77657,"TargetID":77655,"Directional":true}]},{"ID":16911,"SourceStructureID":77658,"TargetStructureID":11030,"Label":"77658-11030 via Conventional from 77659 -> 77660","Type":"Conventional","Directional":true,"Links":[{"SourceID":77659,"TargetID":77660,"Directional":true}]},{"ID":16912,"SourceStructureID":77664,"TargetStructureID":5645,"Label":"77664-5645 via Conventional from 77665 -> 77663","Type":"Conventional","Directional":true,"Links":[{"SourceID":77665,"TargetID":77663,"Directional":true}]},{"ID":16913,"SourceStructureID":77669,"TargetStructureID":5645,"Label":"77669-5645 via Conventional from 77670 -> 77668","Type":"Conventional","Directional":true,"Links":[{"SourceID":77670,"TargetID":77668,"Directional":true}]},{"ID":16914,"SourceStructureID":77674,"TargetStructureID":6115,"Label":"77674-6115 via Conventional from 77675 -> 77673","Type":"Conventional","Directional":true,"Links":[{"SourceID":77675,"TargetID":77673,"Directional":true}]},{"ID":16915,"SourceStructureID":77677,"TargetStructureID":6115,"Label":"77677-6115 via Conventional from 93080 -> 77681","Type":"Conventional","Directional":true,"Links":[{"SourceID":93080,"TargetID":77681,"Directional":true}]},{"ID":16916,"SourceStructureID":77677,"TargetStructureID":16087,"Label":"77677-16087 via Conventional from 77680 -> 16093","Type":"Conventional","Directional":true,"Links":[{"SourceID":77680,"TargetID":16093,"Directional":true}]},{"ID":16917,"SourceStructureID":77682,"TargetStructureID":67671,"Label":"77682-67671 via Conventional from 77683 -> 77684","Type":"Conventional","Directional":true,"Links":[{"SourceID":77683,"TargetID":77684,"Directional":true}]},{"ID":16918,"SourceStructureID":77691,"TargetStructureID":67671,"Label":"77691-67671 via Conventional from 77692 -> 77693","Type":"Conventional","Directional":true,"Links":[{"SourceID":77692,"TargetID":77693,"Directional":true}]},{"ID":16919,"SourceStructureID":77695,"TargetStructureID":6115,"Label":"77695-6115 via Conventional from 77696 -> 77694","Type":"Conventional","Directional":true,"Links":[{"SourceID":77696,"TargetID":77694,"Directional":true}]},{"ID":16920,"SourceStructureID":77698,"TargetStructureID":67671,"Label":"77698-67671 via Conventional from 77699 -> 77700","Type":"Conventional","Directional":true,"Links":[{"SourceID":77699,"TargetID":77700,"Directional":true}]},{"ID":16921,"SourceStructureID":77706,"TargetStructureID":5649,"Label":"77706-5649 via Conventional from 78015 -> 53949","Type":"Conventional","Directional":true,"Links":[{"SourceID":78015,"TargetID":53949,"Directional":true}]},{"ID":16922,"SourceStructureID":77706,"TargetStructureID":67671,"Label":"77706-67671 via Conventional from 77707 -> 77705","Type":"Conventional","Directional":true,"Links":[{"SourceID":77707,"TargetID":77705,"Directional":true}]},{"ID":16923,"SourceStructureID":77708,"TargetStructureID":67671,"Label":"77708-67671 via Conventional from 77709 -> 77710","Type":"Conventional","Directional":true,"Links":[{"SourceID":77709,"TargetID":77710,"Directional":true}]},{"ID":16924,"SourceStructureID":77712,"TargetStructureID":77708,"Label":"77712-77708 via Conventional from 77713 -> 77711","Type":"Conventional","Directional":true,"Links":[{"SourceID":77713,"TargetID":77711,"Directional":true}]},{"ID":16925,"SourceStructureID":77714,"TargetStructureID":67671,"Label":"77714-67671 via Conventional from 77715 -> 77716","Type":"Conventional","Directional":true,"Links":[{"SourceID":77715,"TargetID":77716,"Directional":true}]},{"ID":16926,"SourceStructureID":77718,"TargetStructureID":6115,"Label":"77718-6115 via Conventional from 77719 -> 77717","Type":"Conventional","Directional":true,"Links":[{"SourceID":77719,"TargetID":77717,"Directional":true}]},{"ID":16927,"SourceStructureID":77726,"TargetStructureID":5562,"Label":"77726-5562 via Conventional from 77728 -> 77729","Type":"Conventional","Directional":true,"Links":[{"SourceID":77728,"TargetID":77729,"Directional":true}]},{"ID":16928,"SourceStructureID":77736,"TargetStructureID":5562,"Label":"77736-5562 via Conventional from 77737 -> 77738","Type":"Conventional","Directional":true,"Links":[{"SourceID":77737,"TargetID":77738,"Directional":true}]},{"ID":16929,"SourceStructureID":77741,"TargetStructureID":5562,"Label":"77741-5562 via Conventional from 77742 -> 77743","Type":"Conventional","Directional":true,"Links":[{"SourceID":77742,"TargetID":77743,"Directional":true}]},{"ID":16930,"SourceStructureID":77750,"TargetStructureID":5562,"Label":"77750-5562 via Conventional from 77751 -> 63625","Type":"Conventional","Directional":true,"Links":[{"SourceID":77751,"TargetID":63625,"Directional":true}]},{"ID":16931,"SourceStructureID":77754,"TargetStructureID":5562,"Label":"77754-5562 via Conventional from 77755 -> 63627","Type":"Conventional","Directional":true,"Links":[{"SourceID":77755,"TargetID":63627,"Directional":true}]},{"ID":16932,"SourceStructureID":77770,"TargetStructureID":5562,"Label":"77770-5562 via Conventional from 77771 -> 77772","Type":"Conventional","Directional":true,"Links":[{"SourceID":77771,"TargetID":77772,"Directional":true}]},{"ID":16933,"SourceStructureID":77773,"TargetStructureID":5562,"Label":"77773-5562 via Conventional from 77774 -> 31054","Type":"Conventional","Directional":true,"Links":[{"SourceID":77774,"TargetID":31054,"Directional":true}]},{"ID":16934,"SourceStructureID":77775,"TargetStructureID":5562,"Label":"77775-5562 via Conventional from 77776 -> 63257","Type":"Conventional","Directional":true,"Links":[{"SourceID":77776,"TargetID":63257,"Directional":true}]},{"ID":16935,"SourceStructureID":77782,"TargetStructureID":5562,"Label":"77782-5562 via Conventional from 77783 -> 63258","Type":"Conventional","Directional":true,"Links":[{"SourceID":77783,"TargetID":63258,"Directional":true}]},{"ID":16936,"SourceStructureID":77784,"TargetStructureID":5562,"Label":"77784-5562 via Conventional from 77785 -> 63259","Type":"Conventional","Directional":true,"Links":[{"SourceID":77785,"TargetID":63259,"Directional":true}]},{"ID":16937,"SourceStructureID":77796,"TargetStructureID":5562,"Label":"77796-5562 via Conventional from 77797 -> 63265","Type":"Conventional","Directional":true,"Links":[{"SourceID":77797,"TargetID":63265,"Directional":true}]},{"ID":16938,"SourceStructureID":77800,"TargetStructureID":5562,"Label":"77800-5562 via Conventional from 77801 -> 63263","Type":"Conventional","Directional":true,"Links":[{"SourceID":77801,"TargetID":63263,"Directional":true}]},{"ID":16939,"SourceStructureID":77826,"TargetStructureID":5562,"Label":"77826-5562 via Conventional from 77827 -> 63266","Type":"Conventional","Directional":true,"Links":[{"SourceID":77827,"TargetID":63266,"Directional":true}]},{"ID":16940,"SourceStructureID":77831,"TargetStructureID":5562,"Label":"77831-5562 via Conventional from 77832 -> 63269","Type":"Conventional","Directional":true,"Links":[{"SourceID":77832,"TargetID":63269,"Directional":true}]},{"ID":16941,"SourceStructureID":77840,"TargetStructureID":82426,"Label":"77840-82426 via Conventional from 82428 -> 82429","Type":"Conventional","Directional":true,"Links":[{"SourceID":82428,"TargetID":82429,"Directional":true}]},{"ID":16942,"SourceStructureID":77842,"TargetStructureID":5562,"Label":"77842-5562 via Conventional from 77843 -> 63268","Type":"Conventional","Directional":true,"Links":[{"SourceID":77843,"TargetID":63268,"Directional":true}]},{"ID":16943,"SourceStructureID":77851,"TargetStructureID":5562,"Label":"77851-5562 via Conventional from 77852 -> 77853","Type":"Conventional","Directional":true,"Links":[{"SourceID":77852,"TargetID":77853,"Directional":true}]},{"ID":16944,"SourceStructureID":77868,"TargetStructureID":5562,"Label":"77868-5562 via Conventional from 77869 -> 63282","Type":"Conventional","Directional":true,"Links":[{"SourceID":77869,"TargetID":63282,"Directional":true}]},{"ID":16945,"SourceStructureID":77870,"TargetStructureID":5562,"Label":"77870-5562 via Conventional from 77871 -> 63278","Type":"Conventional","Directional":true,"Links":[{"SourceID":77871,"TargetID":63278,"Directional":true}]},{"ID":16946,"SourceStructureID":77883,"TargetStructureID":5562,"Label":"77883-5562 via Conventional from 78411 -> 78412","Type":"Conventional","Directional":true,"Links":[{"SourceID":78411,"TargetID":78412,"Directional":true}]},{"ID":16947,"SourceStructureID":77898,"TargetStructureID":5562,"Label":"77898-5562 via Conventional from 77899 -> 63281","Type":"Conventional","Directional":true,"Links":[{"SourceID":77899,"TargetID":63281,"Directional":true}]},{"ID":16948,"SourceStructureID":77906,"TargetStructureID":66523,"Label":"77906-66523 via Conventional from 77907 -> 77908","Type":"Conventional","Directional":true,"Links":[{"SourceID":77907,"TargetID":77908,"Directional":true}]},{"ID":16949,"SourceStructureID":77932,"TargetStructureID":5530,"Label":"77932-5530 via Conventional from 77933 -> 77934","Type":"Conventional","Directional":true,"Links":[{"SourceID":77933,"TargetID":77934,"Directional":true}]},{"ID":16950,"SourceStructureID":77938,"TargetStructureID":5530,"Label":"77938-5530 via Conventional from 77939 -> 77940","Type":"Conventional","Directional":true,"Links":[{"SourceID":77939,"TargetID":77940,"Directional":true}]},{"ID":16951,"SourceStructureID":77959,"TargetStructureID":608,"Label":"77959-608 via Conventional from 77960 -> 77958","Type":"Conventional","Directional":true,"Links":[{"SourceID":77960,"TargetID":77958,"Directional":true}]},{"ID":16952,"SourceStructureID":77961,"TargetStructureID":77959,"Label":"77961-77959 via Conventional from 77962 -> 77963","Type":"Conventional","Directional":true,"Links":[{"SourceID":77962,"TargetID":77963,"Directional":true}]},{"ID":16953,"SourceStructureID":77970,"TargetStructureID":66523,"Label":"77970-66523 via Conventional from 77971 -> 77972","Type":"Conventional","Directional":true,"Links":[{"SourceID":77971,"TargetID":77972,"Directional":true}]},{"ID":16954,"SourceStructureID":77973,"TargetStructureID":66523,"Label":"77973-66523 via Conventional from 77974 -> 77975, 77978 -> 77979","Type":"Conventional","Directional":true,"Links":[{"SourceID":77974,"TargetID":77975,"Directional":true},{"SourceID":77978,"TargetID":77979,"Directional":true}]},{"ID":16955,"SourceStructureID":77981,"TargetStructureID":67671,"Label":"77981-67671 via Conventional from 77982 -> 77983","Type":"Conventional","Directional":true,"Links":[{"SourceID":77982,"TargetID":77983,"Directional":true}]},{"ID":16956,"SourceStructureID":77988,"TargetStructureID":67671,"Label":"77988-67671 via Conventional from 77989 -> 77990","Type":"Conventional","Directional":true,"Links":[{"SourceID":77989,"TargetID":77990,"Directional":true}]},{"ID":16957,"SourceStructureID":77992,"TargetStructureID":67671,"Label":"77992-67671 via Conventional from 77993 -> 77994","Type":"Conventional","Directional":true,"Links":[{"SourceID":77993,"TargetID":77994,"Directional":true}]},{"ID":16958,"SourceStructureID":78010,"TargetStructureID":77691,"Label":"78010-77691 via Conventional from 78011 -> 78009","Type":"Conventional","Directional":true,"Links":[{"SourceID":78011,"TargetID":78009,"Directional":true}]},{"ID":16959,"SourceStructureID":78021,"TargetStructureID":78290,"Label":"78021-78290 via Conventional from 78291 -> 78292","Type":"Conventional","Directional":true,"Links":[{"SourceID":78291,"TargetID":78292,"Directional":true}]},{"ID":16960,"SourceStructureID":78028,"TargetStructureID":67671,"Label":"78028-67671 via Conventional from 78029 -> 78030","Type":"Conventional","Directional":true,"Links":[{"SourceID":78029,"TargetID":78030,"Directional":true}]},{"ID":16961,"SourceStructureID":78032,"TargetStructureID":67671,"Label":"78032-67671 via Adherens from 78035 -> 78034","Type":"Adherens","Directional":true,"Links":[{"SourceID":78035,"TargetID":78034,"Directional":true}]},{"ID":16962,"SourceStructureID":78032,"TargetStructureID":67671,"Label":"78032-67671 via Conventional from 78033 -> 78031","Type":"Conventional","Directional":true,"Links":[{"SourceID":78033,"TargetID":78031,"Directional":true}]},{"ID":16963,"SourceStructureID":78038,"TargetStructureID":67671,"Label":"78038-67671 via Conventional from 78039 -> 78040","Type":"Conventional","Directional":true,"Links":[{"SourceID":78039,"TargetID":78040,"Directional":true}]},{"ID":16964,"SourceStructureID":78045,"TargetStructureID":5645,"Label":"78045-5645 via Conventional from 78054 -> 78053","Type":"Conventional","Directional":true,"Links":[{"SourceID":78054,"TargetID":78053,"Directional":true}]},{"ID":16965,"SourceStructureID":78045,"TargetStructureID":67671,"Label":"78045-67671 via Conventional from 78046 -> 78047","Type":"Conventional","Directional":true,"Links":[{"SourceID":78046,"TargetID":78047,"Directional":true}]},{"ID":16966,"SourceStructureID":78057,"TargetStructureID":5645,"Label":"78057-5645 via Conventional from 78064 -> 78065","Type":"Conventional","Directional":true,"Links":[{"SourceID":78064,"TargetID":78065,"Directional":true}]},{"ID":16967,"SourceStructureID":78057,"TargetStructureID":67671,"Label":"78057-67671 via Conventional from 78058 -> 78059","Type":"Conventional","Directional":true,"Links":[{"SourceID":78058,"TargetID":78059,"Directional":true}]},{"ID":16968,"SourceStructureID":78067,"TargetStructureID":67671,"Label":"78067-67671 via Conventional from 78068 -> 78066","Type":"Conventional","Directional":true,"Links":[{"SourceID":78068,"TargetID":78066,"Directional":true}]},{"ID":16969,"SourceStructureID":78074,"TargetStructureID":67671,"Label":"78074-67671 via Conventional from 78075 -> 78077","Type":"Conventional","Directional":true,"Links":[{"SourceID":78075,"TargetID":78077,"Directional":true}]},{"ID":16970,"SourceStructureID":78080,"TargetStructureID":67671,"Label":"78080-67671 via Conventional from 78277 -> 78278","Type":"Conventional","Directional":true,"Links":[{"SourceID":78277,"TargetID":78278,"Directional":true}]},{"ID":16971,"SourceStructureID":78086,"TargetStructureID":5562,"Label":"78086-5562 via Conventional from 78087 -> 63255","Type":"Conventional","Directional":true,"Links":[{"SourceID":78087,"TargetID":63255,"Directional":true}]},{"ID":16972,"SourceStructureID":78094,"TargetStructureID":5562,"Label":"78094-5562 via Conventional from 78095 -> 78096","Type":"Conventional","Directional":true,"Links":[{"SourceID":78095,"TargetID":78096,"Directional":true}]},{"ID":16973,"SourceStructureID":78107,"TargetStructureID":5562,"Label":"78107-5562 via Conventional from 78108 -> 31058","Type":"Conventional","Directional":true,"Links":[{"SourceID":78108,"TargetID":31058,"Directional":true}]},{"ID":16974,"SourceStructureID":78109,"TargetStructureID":5562,"Label":"78109-5562 via Conventional from 78114 -> 31061","Type":"Conventional","Directional":true,"Links":[{"SourceID":78114,"TargetID":31061,"Directional":true}]},{"ID":16975,"SourceStructureID":78115,"TargetStructureID":5562,"Label":"78115-5562 via Conventional from 78116 -> 63332","Type":"Conventional","Directional":true,"Links":[{"SourceID":78116,"TargetID":63332,"Directional":true}]},{"ID":16976,"SourceStructureID":78118,"TargetStructureID":5562,"Label":"78118-5562 via Conventional from 78119 -> 31059","Type":"Conventional","Directional":true,"Links":[{"SourceID":78119,"TargetID":31059,"Directional":true}]},{"ID":16977,"SourceStructureID":78122,"TargetStructureID":5562,"Label":"78122-5562 via Conventional from 78123 -> 63331","Type":"Conventional","Directional":true,"Links":[{"SourceID":78123,"TargetID":63331,"Directional":true}]},{"ID":16978,"SourceStructureID":78126,"TargetStructureID":69537,"Label":"78126-69537 via Conventional from 82452 -> 69620, 82453 -> 69621","Type":"Conventional","Directional":true,"Links":[{"SourceID":82452,"TargetID":69620,"Directional":true},{"SourceID":82453,"TargetID":69621,"Directional":true}]},{"ID":16979,"SourceStructureID":78129,"TargetStructureID":5562,"Label":"78129-5562 via Conventional from 78132 -> 63344","Type":"Conventional","Directional":true,"Links":[{"SourceID":78132,"TargetID":63344,"Directional":true}]},{"ID":16980,"SourceStructureID":78141,"TargetStructureID":5562,"Label":"78141-5562 via Conventional from 78142 -> 63342","Type":"Conventional","Directional":true,"Links":[{"SourceID":78142,"TargetID":63342,"Directional":true}]},{"ID":16981,"SourceStructureID":78163,"TargetStructureID":5562,"Label":"78163-5562 via Conventional from 78164 -> 48471","Type":"Conventional","Directional":true,"Links":[{"SourceID":78164,"TargetID":48471,"Directional":true}]},{"ID":16982,"SourceStructureID":78177,"TargetStructureID":5562,"Label":"78177-5562 via Conventional from 78178 -> 63617","Type":"Conventional","Directional":true,"Links":[{"SourceID":78178,"TargetID":63617,"Directional":true}]},{"ID":16983,"SourceStructureID":78179,"TargetStructureID":5562,"Label":"78179-5562 via Conventional from 78180 -> 48464","Type":"Conventional","Directional":true,"Links":[{"SourceID":78180,"TargetID":48464,"Directional":true}]},{"ID":16984,"SourceStructureID":78191,"TargetStructureID":5562,"Label":"78191-5562 via Conventional from 78192 -> 63351","Type":"Conventional","Directional":true,"Links":[{"SourceID":78192,"TargetID":63351,"Directional":true}]},{"ID":16985,"SourceStructureID":78198,"TargetStructureID":5562,"Label":"78198-5562 via Conventional from 78199 -> 63348","Type":"Conventional","Directional":true,"Links":[{"SourceID":78199,"TargetID":63348,"Directional":true}]},{"ID":16986,"SourceStructureID":78200,"TargetStructureID":5562,"Label":"78200-5562 via Conventional from 78201 -> 63349","Type":"Conventional","Directional":true,"Links":[{"SourceID":78201,"TargetID":63349,"Directional":true}]},{"ID":16987,"SourceStructureID":78214,"TargetStructureID":78217,"Label":"78214-78217 via Conventional from 78218 -> 78219","Type":"Conventional","Directional":true,"Links":[{"SourceID":78218,"TargetID":78219,"Directional":true}]},{"ID":16988,"SourceStructureID":78224,"TargetStructureID":67671,"Label":"78224-67671 via Conventional from 78225 -> 78226","Type":"Conventional","Directional":true,"Links":[{"SourceID":78225,"TargetID":78226,"Directional":true}]},{"ID":16989,"SourceStructureID":78228,"TargetStructureID":67671,"Label":"78228-67671 via Conventional from 78229 -> 78230","Type":"Conventional","Directional":true,"Links":[{"SourceID":78229,"TargetID":78230,"Directional":true}]},{"ID":16990,"SourceStructureID":78232,"TargetStructureID":67671,"Label":"78232-67671 via Conventional from 78233 -> 78235","Type":"Conventional","Directional":true,"Links":[{"SourceID":78233,"TargetID":78235,"Directional":true}]},{"ID":16991,"SourceStructureID":78242,"TargetStructureID":5562,"Label":"78242-5562 via Conventional from 78243 -> 63347","Type":"Conventional","Directional":true,"Links":[{"SourceID":78243,"TargetID":63347,"Directional":true}]},{"ID":16992,"SourceStructureID":78244,"TargetStructureID":67671,"Label":"78244-67671 via Conventional from 78245 -> 78246","Type":"Conventional","Directional":true,"Links":[{"SourceID":78245,"TargetID":78246,"Directional":true}]},{"ID":16993,"SourceStructureID":78249,"TargetStructureID":67671,"Label":"78249-67671 via Ribbon Synapse from 78250 -> 78256, 78251 -> 78257","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78250,"TargetID":78256,"Directional":true},{"SourceID":78251,"TargetID":78257,"Directional":true}]},{"ID":16994,"SourceStructureID":78249,"TargetStructureID":78252,"Label":"78249-78252 via Ribbon Synapse from 78250 -> 78258","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":78250,"TargetID":78258,"Directional":true}]},{"ID":16995,"SourceStructureID":78252,"TargetStructureID":78249,"Label":"78252-78249 via Conventional from 78254 -> 78255","Type":"Conventional","Directional":true,"Links":[{"SourceID":78254,"TargetID":78255,"Directional":true}]},{"ID":16996,"SourceStructureID":78272,"TargetStructureID":5562,"Label":"78272-5562 via Conventional from 78273 -> 63527","Type":"Conventional","Directional":true,"Links":[{"SourceID":78273,"TargetID":63527,"Directional":true}]},{"ID":16997,"SourceStructureID":78295,"TargetStructureID":68009,"Label":"78295-68009 via Conventional from 78296 -> 78297","Type":"Conventional","Directional":true,"Links":[{"SourceID":78296,"TargetID":78297,"Directional":true}]},{"ID":16998,"SourceStructureID":78298,"TargetStructureID":68009,"Label":"78298-68009 via Conventional from 78299 -> 78300","Type":"Conventional","Directional":true,"Links":[{"SourceID":78299,"TargetID":78300,"Directional":true}]},{"ID":16999,"SourceStructureID":78303,"TargetStructureID":25392,"Label":"78303-25392 via Conventional from 78305 -> 32294","Type":"Conventional","Directional":true,"Links":[{"SourceID":78305,"TargetID":32294,"Directional":true}]},{"ID":17000,"SourceStructureID":78316,"TargetStructureID":68009,"Label":"78316-68009 via Conventional from 78317 -> 78318","Type":"Conventional","Directional":true,"Links":[{"SourceID":78317,"TargetID":78318,"Directional":true}]},{"ID":17001,"SourceStructureID":78327,"TargetStructureID":78330,"Label":"78327-78330 via Conventional from 78329 -> 78331","Type":"Conventional","Directional":true,"Links":[{"SourceID":78329,"TargetID":78331,"Directional":true}]},{"ID":17002,"SourceStructureID":78330,"TargetStructureID":55403,"Label":"78330-55403 via Conventional from 78332 -> 55504","Type":"Conventional","Directional":true,"Links":[{"SourceID":78332,"TargetID":55504,"Directional":true}]},{"ID":17003,"SourceStructureID":78334,"TargetStructureID":5562,"Label":"78334-5562 via Conventional from 78335 -> 63357","Type":"Conventional","Directional":true,"Links":[{"SourceID":78335,"TargetID":63357,"Directional":true}]},{"ID":17004,"SourceStructureID":78351,"TargetStructureID":5562,"Label":"78351-5562 via Conventional from 78352 -> 63360","Type":"Conventional","Directional":true,"Links":[{"SourceID":78352,"TargetID":63360,"Directional":true}]},{"ID":17005,"SourceStructureID":78353,"TargetStructureID":5562,"Label":"78353-5562 via Conventional from 78354 -> 63359","Type":"Conventional","Directional":true,"Links":[{"SourceID":78354,"TargetID":63359,"Directional":true}]},{"ID":17006,"SourceStructureID":78383,"TargetStructureID":5562,"Label":"78383-5562 via Conventional from 78384 -> 63534, 78385 -> 63535","Type":"Conventional","Directional":true,"Links":[{"SourceID":78384,"TargetID":63534,"Directional":true},{"SourceID":78385,"TargetID":63535,"Directional":true}]},{"ID":17007,"SourceStructureID":78393,"TargetStructureID":5562,"Label":"78393-5562 via Conventional from 78394 -> 63626","Type":"Conventional","Directional":true,"Links":[{"SourceID":78394,"TargetID":63626,"Directional":true}]},{"ID":17008,"SourceStructureID":78421,"TargetStructureID":67671,"Label":"78421-67671 via Conventional from 78422 -> 78420","Type":"Conventional","Directional":true,"Links":[{"SourceID":78422,"TargetID":78420,"Directional":true}]},{"ID":17009,"SourceStructureID":78423,"TargetStructureID":78426,"Label":"78423-78426 via Conventional from 78425 -> 78427","Type":"Conventional","Directional":true,"Links":[{"SourceID":78425,"TargetID":78427,"Directional":true}]},{"ID":17010,"SourceStructureID":78428,"TargetStructureID":78423,"Label":"78428-78423 via Conventional from 78429 -> 78430","Type":"Conventional","Directional":true,"Links":[{"SourceID":78429,"TargetID":78430,"Directional":true}]},{"ID":17011,"SourceStructureID":78431,"TargetStructureID":5649,"Label":"78431-5649 via Conventional from 78434 -> 78435, 107186 -> 107188","Type":"Conventional","Directional":true,"Links":[{"SourceID":78434,"TargetID":78435,"Directional":true},{"SourceID":107186,"TargetID":107188,"Directional":true}]},{"ID":17012,"SourceStructureID":78431,"TargetStructureID":78423,"Label":"78431-78423 via Conventional from 78432 -> 78433","Type":"Conventional","Directional":true,"Links":[{"SourceID":78432,"TargetID":78433,"Directional":true}]},{"ID":17013,"SourceStructureID":78453,"TargetStructureID":5562,"Label":"78453-5562 via Conventional from 78455 -> 78454","Type":"Conventional","Directional":true,"Links":[{"SourceID":78455,"TargetID":78454,"Directional":true}]},{"ID":17014,"SourceStructureID":78465,"TargetStructureID":5562,"Label":"78465-5562 via Conventional from 78466 -> 63644","Type":"Conventional","Directional":true,"Links":[{"SourceID":78466,"TargetID":63644,"Directional":true}]},{"ID":17015,"SourceStructureID":78471,"TargetStructureID":5562,"Label":"78471-5562 via Conventional from 78472 -> 63639","Type":"Conventional","Directional":true,"Links":[{"SourceID":78472,"TargetID":63639,"Directional":true}]},{"ID":17016,"SourceStructureID":78478,"TargetStructureID":5562,"Label":"78478-5562 via Conventional from 78479 -> 63638","Type":"Conventional","Directional":true,"Links":[{"SourceID":78479,"TargetID":63638,"Directional":true}]},{"ID":17017,"SourceStructureID":78484,"TargetStructureID":5562,"Label":"78484-5562 via Conventional from 78485 -> 40300","Type":"Conventional","Directional":true,"Links":[{"SourceID":78485,"TargetID":40300,"Directional":true}]},{"ID":17018,"SourceStructureID":78515,"TargetStructureID":5562,"Label":"78515-5562 via Conventional from 79155 -> 63647","Type":"Conventional","Directional":true,"Links":[{"SourceID":79155,"TargetID":63647,"Directional":true}]},{"ID":17019,"SourceStructureID":78520,"TargetStructureID":5562,"Label":"78520-5562 via Conventional from 78522 -> 63649, 78537 -> 63660","Type":"Conventional","Directional":true,"Links":[{"SourceID":78522,"TargetID":63649,"Directional":true},{"SourceID":78537,"TargetID":63660,"Directional":true}]},{"ID":17020,"SourceStructureID":78523,"TargetStructureID":5562,"Label":"78523-5562 via Conventional from 78524 -> 63653","Type":"Conventional","Directional":true,"Links":[{"SourceID":78524,"TargetID":63653,"Directional":true}]},{"ID":17021,"SourceStructureID":78540,"TargetStructureID":5562,"Label":"78540-5562 via Conventional from 78541 -> 63656","Type":"Conventional","Directional":true,"Links":[{"SourceID":78541,"TargetID":63656,"Directional":true}]},{"ID":17022,"SourceStructureID":78542,"TargetStructureID":5562,"Label":"78542-5562 via Conventional from 78543 -> 63650","Type":"Conventional","Directional":true,"Links":[{"SourceID":78543,"TargetID":63650,"Directional":true}]},{"ID":17023,"SourceStructureID":78550,"TargetStructureID":5562,"Label":"78550-5562 via Conventional from 78551 -> 40303","Type":"Conventional","Directional":true,"Links":[{"SourceID":78551,"TargetID":40303,"Directional":true}]},{"ID":17024,"SourceStructureID":78552,"TargetStructureID":5562,"Label":"78552-5562 via Conventional from 78553 -> 40304","Type":"Conventional","Directional":true,"Links":[{"SourceID":78553,"TargetID":40304,"Directional":true}]},{"ID":17025,"SourceStructureID":78560,"TargetStructureID":5562,"Label":"78560-5562 via Conventional from 78561 -> 63661","Type":"Conventional","Directional":true,"Links":[{"SourceID":78561,"TargetID":63661,"Directional":true}]},{"ID":17026,"SourceStructureID":78570,"TargetStructureID":5562,"Label":"78570-5562 via Conventional from 78571 -> 63662","Type":"Conventional","Directional":true,"Links":[{"SourceID":78571,"TargetID":63662,"Directional":true}]},{"ID":17027,"SourceStructureID":78573,"TargetStructureID":5562,"Label":"78573-5562 via Conventional from 78574 -> 63663","Type":"Conventional","Directional":true,"Links":[{"SourceID":78574,"TargetID":63663,"Directional":true}]},{"ID":17028,"SourceStructureID":78578,"TargetStructureID":5562,"Label":"78578-5562 via Conventional from 82876 -> 63667","Type":"Conventional","Directional":true,"Links":[{"SourceID":82876,"TargetID":63667,"Directional":true}]},{"ID":17029,"SourceStructureID":78586,"TargetStructureID":5562,"Label":"78586-5562 via Conventional from 78587 -> 63672","Type":"Conventional","Directional":true,"Links":[{"SourceID":78587,"TargetID":63672,"Directional":true}]},{"ID":17030,"SourceStructureID":78588,"TargetStructureID":5562,"Label":"78588-5562 via Conventional from 78589 -> 63671","Type":"Conventional","Directional":true,"Links":[{"SourceID":78589,"TargetID":63671,"Directional":true}]},{"ID":17031,"SourceStructureID":78590,"TargetStructureID":5562,"Label":"78590-5562 via Conventional from 78591 -> 63669","Type":"Conventional","Directional":true,"Links":[{"SourceID":78591,"TargetID":63669,"Directional":true}]},{"ID":17032,"SourceStructureID":78594,"TargetStructureID":5562,"Label":"78594-5562 via Conventional from 78595 -> 63674","Type":"Conventional","Directional":true,"Links":[{"SourceID":78595,"TargetID":63674,"Directional":true}]},{"ID":17033,"SourceStructureID":78615,"TargetStructureID":5562,"Label":"78615-5562 via Conventional from 78616 -> 40305","Type":"Conventional","Directional":true,"Links":[{"SourceID":78616,"TargetID":40305,"Directional":true}]},{"ID":17034,"SourceStructureID":78617,"TargetStructureID":5562,"Label":"78617-5562 via Conventional from 78618 -> 40306","Type":"Conventional","Directional":true,"Links":[{"SourceID":78618,"TargetID":40306,"Directional":true}]},{"ID":17035,"SourceStructureID":78647,"TargetStructureID":5562,"Label":"78647-5562 via Conventional from 78648 -> 63689","Type":"Conventional","Directional":true,"Links":[{"SourceID":78648,"TargetID":63689,"Directional":true}]},{"ID":17036,"SourceStructureID":78650,"TargetStructureID":5562,"Label":"78650-5562 via Conventional from 78651 -> 54203","Type":"Conventional","Directional":true,"Links":[{"SourceID":78651,"TargetID":54203,"Directional":true}]},{"ID":17037,"SourceStructureID":78663,"TargetStructureID":5562,"Label":"78663-5562 via Conventional from 78678 -> 63707","Type":"Conventional","Directional":true,"Links":[{"SourceID":78678,"TargetID":63707,"Directional":true}]},{"ID":17038,"SourceStructureID":78663,"TargetStructureID":82872,"Label":"78663-82872 via Conventional from 82873 -> 82874","Type":"Conventional","Directional":true,"Links":[{"SourceID":82873,"TargetID":82874,"Directional":true}]},{"ID":17039,"SourceStructureID":78665,"TargetStructureID":5562,"Label":"78665-5562 via Conventional from 78666 -> 54204","Type":"Conventional","Directional":true,"Links":[{"SourceID":78666,"TargetID":54204,"Directional":true}]},{"ID":17040,"SourceStructureID":78667,"TargetStructureID":5562,"Label":"78667-5562 via Conventional from 78668 -> 54209","Type":"Conventional","Directional":true,"Links":[{"SourceID":78668,"TargetID":54209,"Directional":true}]},{"ID":17041,"SourceStructureID":78669,"TargetStructureID":5562,"Label":"78669-5562 via Conventional from 78670 -> 54208","Type":"Conventional","Directional":true,"Links":[{"SourceID":78670,"TargetID":54208,"Directional":true}]},{"ID":17042,"SourceStructureID":78673,"TargetStructureID":5562,"Label":"78673-5562 via Conventional from 78674 -> 54207","Type":"Conventional","Directional":true,"Links":[{"SourceID":78674,"TargetID":54207,"Directional":true}]},{"ID":17043,"SourceStructureID":78686,"TargetStructureID":5562,"Label":"78686-5562 via Conventional from 82871 -> 54205","Type":"Conventional","Directional":true,"Links":[{"SourceID":82871,"TargetID":54205,"Directional":true}]},{"ID":17044,"SourceStructureID":78688,"TargetStructureID":5562,"Label":"78688-5562 via Conventional from 78689 -> 63688","Type":"Conventional","Directional":true,"Links":[{"SourceID":78689,"TargetID":63688,"Directional":true}]},{"ID":17045,"SourceStructureID":78693,"TargetStructureID":5562,"Label":"78693-5562 via Conventional from 78694 -> 63686","Type":"Conventional","Directional":true,"Links":[{"SourceID":78694,"TargetID":63686,"Directional":true}]},{"ID":17046,"SourceStructureID":78695,"TargetStructureID":5562,"Label":"78695-5562 via Conventional from 79156 -> 63687","Type":"Conventional","Directional":true,"Links":[{"SourceID":79156,"TargetID":63687,"Directional":true}]},{"ID":17047,"SourceStructureID":78697,"TargetStructureID":5562,"Label":"78697-5562 via Conventional from 78698 -> 63685","Type":"Conventional","Directional":true,"Links":[{"SourceID":78698,"TargetID":63685,"Directional":true}]},{"ID":17048,"SourceStructureID":78704,"TargetStructureID":5562,"Label":"78704-5562 via Conventional from 78706 -> 54211","Type":"Conventional","Directional":true,"Links":[{"SourceID":78706,"TargetID":54211,"Directional":true}]},{"ID":17049,"SourceStructureID":78709,"TargetStructureID":5561,"Label":"78709-5561 via Conventional from 78737 -> 46042","Type":"Conventional","Directional":true,"Links":[{"SourceID":78737,"TargetID":46042,"Directional":true}]},{"ID":17050,"SourceStructureID":78709,"TargetStructureID":78730,"Label":"78709-78730 via Conventional from 78729 -> 78731","Type":"Conventional","Directional":true,"Links":[{"SourceID":78729,"TargetID":78731,"Directional":true}]},{"ID":17051,"SourceStructureID":78710,"TargetStructureID":78715,"Label":"78710-78715 via Conventional from 78713 -> 78716","Type":"Conventional","Directional":true,"Links":[{"SourceID":78713,"TargetID":78716,"Directional":true}]},{"ID":17052,"SourceStructureID":78715,"TargetStructureID":78428,"Label":"78715-78428 via Conventional from 78717 -> 78718","Type":"Conventional","Directional":true,"Links":[{"SourceID":78717,"TargetID":78718,"Directional":true}]},{"ID":17053,"SourceStructureID":78715,"TargetStructureID":78909,"Label":"78715-78909 via Conventional from 87541 -> 87542","Type":"Conventional","Directional":true,"Links":[{"SourceID":87541,"TargetID":87542,"Directional":true}]},{"ID":17054,"SourceStructureID":78721,"TargetStructureID":78725,"Label":"78721-78725 via Conventional from 78722 -> 78726","Type":"Conventional","Directional":true,"Links":[{"SourceID":78722,"TargetID":78726,"Directional":true}]},{"ID":17055,"SourceStructureID":78727,"TargetStructureID":608,"Label":"78727-608 via Conventional from 78728 -> 59075","Type":"Conventional","Directional":true,"Links":[{"SourceID":78728,"TargetID":59075,"Directional":true}]},{"ID":17056,"SourceStructureID":78727,"TargetStructureID":18693,"Label":"78727-18693 via Conventional from 78733 -> 18818","Type":"Conventional","Directional":true,"Links":[{"SourceID":78733,"TargetID":18818,"Directional":true}]},{"ID":17057,"SourceStructureID":78727,"TargetStructureID":57035,"Label":"78727-57035 via Conventional from 78752 -> 78753","Type":"Conventional","Directional":true,"Links":[{"SourceID":78752,"TargetID":78753,"Directional":true}]},{"ID":17058,"SourceStructureID":78730,"TargetStructureID":606,"Label":"78730-606 via Conventional from 97669 -> 10700","Type":"Conventional","Directional":true,"Links":[{"SourceID":97669,"TargetID":10700,"Directional":true}]},{"ID":17059,"SourceStructureID":78760,"TargetStructureID":5562,"Label":"78760-5562 via Conventional from 78762 -> 78765","Type":"Conventional","Directional":true,"Links":[{"SourceID":78762,"TargetID":78765,"Directional":true}]},{"ID":17060,"SourceStructureID":78780,"TargetStructureID":5562,"Label":"78780-5562 via Conventional from 78781 -> 63729","Type":"Conventional","Directional":true,"Links":[{"SourceID":78781,"TargetID":63729,"Directional":true}]},{"ID":17061,"SourceStructureID":78797,"TargetStructureID":78709,"Label":"78797-78709 via Conventional from 78798 -> 78796","Type":"Conventional","Directional":true,"Links":[{"SourceID":78798,"TargetID":78796,"Directional":true}]},{"ID":17062,"SourceStructureID":78797,"TargetStructureID":78800,"Label":"78797-78800 via Conventional from 78799 -> 78801","Type":"Conventional","Directional":true,"Links":[{"SourceID":78799,"TargetID":78801,"Directional":true}]},{"ID":17063,"SourceStructureID":78805,"TargetStructureID":5562,"Label":"78805-5562 via Conventional from 78806 -> 63726, 78807 -> 63726","Type":"Conventional","Directional":true,"Links":[{"SourceID":78806,"TargetID":63726,"Directional":true},{"SourceID":78807,"TargetID":63726,"Directional":true}]},{"ID":17064,"SourceStructureID":78820,"TargetStructureID":5562,"Label":"78820-5562 via Conventional from 78821 -> 63735","Type":"Conventional","Directional":true,"Links":[{"SourceID":78821,"TargetID":63735,"Directional":true}]},{"ID":17065,"SourceStructureID":78823,"TargetStructureID":5562,"Label":"78823-5562 via Conventional from 78824 -> 63736","Type":"Conventional","Directional":true,"Links":[{"SourceID":78824,"TargetID":63736,"Directional":true}]},{"ID":17066,"SourceStructureID":78840,"TargetStructureID":5562,"Label":"78840-5562 via Conventional from 78845 -> 63743","Type":"Conventional","Directional":true,"Links":[{"SourceID":78845,"TargetID":63743,"Directional":true}]},{"ID":17067,"SourceStructureID":78860,"TargetStructureID":5562,"Label":"78860-5562 via Conventional from 78863 -> 63749","Type":"Conventional","Directional":true,"Links":[{"SourceID":78863,"TargetID":63749,"Directional":true}]},{"ID":17068,"SourceStructureID":78867,"TargetStructureID":5562,"Label":"78867-5562 via Conventional from 78868 -> 63751","Type":"Conventional","Directional":true,"Links":[{"SourceID":78868,"TargetID":63751,"Directional":true}]},{"ID":17069,"SourceStructureID":78872,"TargetStructureID":5562,"Label":"78872-5562 via Unknown from 78890 -> 78891","Type":"Unknown","Directional":true,"Links":[{"SourceID":78890,"TargetID":78891,"Directional":true}]},{"ID":17070,"SourceStructureID":78876,"TargetStructureID":16026,"Label":"78876-16026 via Conventional from 78877 -> 25780","Type":"Conventional","Directional":true,"Links":[{"SourceID":78877,"TargetID":25780,"Directional":true}]},{"ID":17071,"SourceStructureID":78879,"TargetStructureID":67765,"Label":"78879-67765 via Conventional from 78880 -> 78881","Type":"Conventional","Directional":true,"Links":[{"SourceID":78880,"TargetID":78881,"Directional":true}]},{"ID":17072,"SourceStructureID":78886,"TargetStructureID":5562,"Label":"78886-5562 via Conventional from 78887 -> 49535, 78887 -> 63755","Type":"Conventional","Directional":true,"Links":[{"SourceID":78887,"TargetID":49535,"Directional":true},{"SourceID":78887,"TargetID":63755,"Directional":true}]},{"ID":17073,"SourceStructureID":78892,"TargetStructureID":5562,"Label":"78892-5562 via Conventional from 78893 -> 63753","Type":"Conventional","Directional":true,"Links":[{"SourceID":78893,"TargetID":63753,"Directional":true}]},{"ID":17074,"SourceStructureID":78901,"TargetStructureID":5562,"Label":"78901-5562 via Conventional from 78902 -> 63756","Type":"Conventional","Directional":true,"Links":[{"SourceID":78902,"TargetID":63756,"Directional":true}]},{"ID":17075,"SourceStructureID":78909,"TargetStructureID":5562,"Label":"78909-5562 via Conventional from 87512 -> 49565","Type":"Conventional","Directional":true,"Links":[{"SourceID":87512,"TargetID":49565,"Directional":true}]},{"ID":17076,"SourceStructureID":78909,"TargetStructureID":5649,"Label":"78909-5649 via Conventional from 87517 -> 87520, 107124 -> 54295","Type":"Conventional","Directional":true,"Links":[{"SourceID":87517,"TargetID":87520,"Directional":true},{"SourceID":107124,"TargetID":54295,"Directional":true}]},{"ID":17077,"SourceStructureID":78909,"TargetStructureID":6142,"Label":"78909-6142 via Conventional from 87550 -> 23585, 87601 -> 87602, 108669 -> 108668","Type":"Conventional","Directional":true,"Links":[{"SourceID":87550,"TargetID":23585,"Directional":true},{"SourceID":87601,"TargetID":87602,"Directional":true},{"SourceID":108669,"TargetID":108668,"Directional":true}]},{"ID":17078,"SourceStructureID":78910,"TargetStructureID":5562,"Label":"78910-5562 via Conventional from 78913 -> 63758","Type":"Conventional","Directional":true,"Links":[{"SourceID":78913,"TargetID":63758,"Directional":true}]},{"ID":17079,"SourceStructureID":78930,"TargetStructureID":5562,"Label":"78930-5562 via Conventional from 78931 -> 63768","Type":"Conventional","Directional":true,"Links":[{"SourceID":78931,"TargetID":63768,"Directional":true}]},{"ID":17080,"SourceStructureID":78932,"TargetStructureID":5562,"Label":"78932-5562 via Conventional from 78933 -> 63770","Type":"Conventional","Directional":true,"Links":[{"SourceID":78933,"TargetID":63770,"Directional":true}]},{"ID":17081,"SourceStructureID":78940,"TargetStructureID":5562,"Label":"78940-5562 via Conventional from 78941 -> 63775","Type":"Conventional","Directional":true,"Links":[{"SourceID":78941,"TargetID":63775,"Directional":true}]},{"ID":17082,"SourceStructureID":78943,"TargetStructureID":5562,"Label":"78943-5562 via Conventional from 78944 -> 63765","Type":"Conventional","Directional":true,"Links":[{"SourceID":78944,"TargetID":63765,"Directional":true}]},{"ID":17083,"SourceStructureID":78946,"TargetStructureID":5562,"Label":"78946-5562 via Conventional from 78949 -> 63766","Type":"Conventional","Directional":true,"Links":[{"SourceID":78949,"TargetID":63766,"Directional":true}]},{"ID":17084,"SourceStructureID":78964,"TargetStructureID":31161,"Label":"78964-31161 via Conventional from 78968 -> 31218","Type":"Conventional","Directional":true,"Links":[{"SourceID":78968,"TargetID":31218,"Directional":true}]},{"ID":17085,"SourceStructureID":78966,"TargetStructureID":5562,"Label":"78966-5562 via Conventional from 78967 -> 63778","Type":"Conventional","Directional":true,"Links":[{"SourceID":78967,"TargetID":63778,"Directional":true}]},{"ID":17086,"SourceStructureID":79004,"TargetStructureID":5562,"Label":"79004-5562 via Conventional from 79005 -> 63789","Type":"Conventional","Directional":true,"Links":[{"SourceID":79005,"TargetID":63789,"Directional":true}]},{"ID":17087,"SourceStructureID":79008,"TargetStructureID":5562,"Label":"79008-5562 via Conventional from 79009 -> 63839","Type":"Conventional","Directional":true,"Links":[{"SourceID":79009,"TargetID":63839,"Directional":true}]},{"ID":17088,"SourceStructureID":79017,"TargetStructureID":5562,"Label":"79017-5562 via Conventional from 79018 -> 63832","Type":"Conventional","Directional":true,"Links":[{"SourceID":79018,"TargetID":63832,"Directional":true}]},{"ID":17089,"SourceStructureID":79019,"TargetStructureID":5562,"Label":"79019-5562 via Conventional from 79021 -> 63824","Type":"Conventional","Directional":true,"Links":[{"SourceID":79021,"TargetID":63824,"Directional":true}]},{"ID":17090,"SourceStructureID":79022,"TargetStructureID":5562,"Label":"79022-5562 via Conventional from 79023 -> 63827, 79025 -> 63827","Type":"Conventional","Directional":true,"Links":[{"SourceID":79023,"TargetID":63827,"Directional":true},{"SourceID":79025,"TargetID":63827,"Directional":true}]},{"ID":17091,"SourceStructureID":79064,"TargetStructureID":5530,"Label":"79064-5530 via Conventional from 79065 -> 79066","Type":"Conventional","Directional":true,"Links":[{"SourceID":79065,"TargetID":79066,"Directional":true}]},{"ID":17092,"SourceStructureID":79073,"TargetStructureID":5530,"Label":"79073-5530 via Conventional from 82594 -> 134558","Type":"Conventional","Directional":true,"Links":[{"SourceID":82594,"TargetID":134558,"Directional":true}]},{"ID":17093,"SourceStructureID":79123,"TargetStructureID":5530,"Label":"79123-5530 via Conventional from 79144 -> 79147","Type":"Conventional","Directional":true,"Links":[{"SourceID":79144,"TargetID":79147,"Directional":true}]},{"ID":17094,"SourceStructureID":79159,"TargetStructureID":5530,"Label":"79159-5530 via Conventional from 80627 -> 42136","Type":"Conventional","Directional":true,"Links":[{"SourceID":80627,"TargetID":42136,"Directional":true}]},{"ID":17095,"SourceStructureID":79168,"TargetStructureID":5562,"Label":"79168-5562 via Conventional from 79169 -> 63834","Type":"Conventional","Directional":true,"Links":[{"SourceID":79169,"TargetID":63834,"Directional":true}]},{"ID":17096,"SourceStructureID":79171,"TargetStructureID":5562,"Label":"79171-5562 via Conventional from 79172 -> 63833","Type":"Conventional","Directional":true,"Links":[{"SourceID":79172,"TargetID":63833,"Directional":true}]},{"ID":17097,"SourceStructureID":79183,"TargetStructureID":5562,"Label":"79183-5562 via Conventional from 79184 -> 63837","Type":"Conventional","Directional":true,"Links":[{"SourceID":79184,"TargetID":63837,"Directional":true}]},{"ID":17098,"SourceStructureID":79189,"TargetStructureID":5562,"Label":"79189-5562 via Conventional from 79190 -> 63841","Type":"Conventional","Directional":true,"Links":[{"SourceID":79190,"TargetID":63841,"Directional":true}]},{"ID":17099,"SourceStructureID":79192,"TargetStructureID":5562,"Label":"79192-5562 via Conventional from 79193 -> 63843","Type":"Conventional","Directional":true,"Links":[{"SourceID":79193,"TargetID":63843,"Directional":true}]},{"ID":17100,"SourceStructureID":79207,"TargetStructureID":5562,"Label":"79207-5562 via Conventional from 79208 -> 63849","Type":"Conventional","Directional":true,"Links":[{"SourceID":79208,"TargetID":63849,"Directional":true}]},{"ID":17101,"SourceStructureID":79219,"TargetStructureID":5562,"Label":"79219-5562 via Conventional from 79220 -> 63851","Type":"Conventional","Directional":true,"Links":[{"SourceID":79220,"TargetID":63851,"Directional":true}]},{"ID":17102,"SourceStructureID":79227,"TargetStructureID":5562,"Label":"79227-5562 via Conventional from 79228 -> 63854","Type":"Conventional","Directional":true,"Links":[{"SourceID":79228,"TargetID":63854,"Directional":true}]},{"ID":17103,"SourceStructureID":79229,"TargetStructureID":5562,"Label":"79229-5562 via Conventional from 79230 -> 63863","Type":"Conventional","Directional":true,"Links":[{"SourceID":79230,"TargetID":63863,"Directional":true}]},{"ID":17104,"SourceStructureID":79232,"TargetStructureID":5562,"Label":"79232-5562 via Conventional from 79233 -> 63866","Type":"Conventional","Directional":true,"Links":[{"SourceID":79233,"TargetID":63866,"Directional":true}]},{"ID":17105,"SourceStructureID":79239,"TargetStructureID":5562,"Label":"79239-5562 via Conventional from 79240 -> 49105, 79241 -> 63865","Type":"Conventional","Directional":true,"Links":[{"SourceID":79240,"TargetID":49105,"Directional":true},{"SourceID":79241,"TargetID":63865,"Directional":true}]},{"ID":17106,"SourceStructureID":79256,"TargetStructureID":5530,"Label":"79256-5530 via Conventional from 79257 -> 42135","Type":"Conventional","Directional":true,"Links":[{"SourceID":79257,"TargetID":42135,"Directional":true}]},{"ID":17107,"SourceStructureID":79259,"TargetStructureID":5528,"Label":"79259-5528 via Conventional from 96276 -> 96277","Type":"Conventional","Directional":true,"Links":[{"SourceID":96276,"TargetID":96277,"Directional":true}]},{"ID":17108,"SourceStructureID":79259,"TargetStructureID":5530,"Label":"79259-5530 via Conventional from 79260 -> 79261","Type":"Conventional","Directional":true,"Links":[{"SourceID":79260,"TargetID":79261,"Directional":true}]},{"ID":17109,"SourceStructureID":79309,"TargetStructureID":68497,"Label":"79309-68497 via Conventional from 79310 -> 79308","Type":"Conventional","Directional":true,"Links":[{"SourceID":79310,"TargetID":79308,"Directional":true}]},{"ID":17110,"SourceStructureID":79317,"TargetStructureID":31399,"Label":"79317-31399 via Ribbon Synapse from 99014 -> 31406","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":99014,"TargetID":31406,"Directional":true}]},{"ID":17111,"SourceStructureID":79408,"TargetStructureID":61773,"Label":"79408-61773 via Conventional from 79409 -> 79407","Type":"Conventional","Directional":true,"Links":[{"SourceID":79409,"TargetID":79407,"Directional":true}]},{"ID":17112,"SourceStructureID":79427,"TargetStructureID":61777,"Label":"79427-61777 via Conventional from 79428 -> 79429","Type":"Conventional","Directional":true,"Links":[{"SourceID":79428,"TargetID":79429,"Directional":true}]},{"ID":17113,"SourceStructureID":79457,"TargetStructureID":68497,"Label":"79457-68497 via Conventional from 79458 -> 79456","Type":"Conventional","Directional":true,"Links":[{"SourceID":79458,"TargetID":79456,"Directional":true}]},{"ID":17114,"SourceStructureID":79464,"TargetStructureID":61797,"Label":"79464-61797 via Conventional from 79466 -> 79469","Type":"Conventional","Directional":true,"Links":[{"SourceID":79466,"TargetID":79469,"Directional":true}]},{"ID":17115,"SourceStructureID":79465,"TargetStructureID":61797,"Label":"79465-61797 via Conventional from 79467 -> 79468","Type":"Conventional","Directional":true,"Links":[{"SourceID":79467,"TargetID":79468,"Directional":true}]},{"ID":17116,"SourceStructureID":79470,"TargetStructureID":68497,"Label":"79470-68497 via Conventional from 79471 -> 79472","Type":"Conventional","Directional":true,"Links":[{"SourceID":79471,"TargetID":79472,"Directional":true}]},{"ID":17117,"SourceStructureID":79478,"TargetStructureID":68497,"Label":"79478-68497 via Conventional from 79479 -> 79477","Type":"Conventional","Directional":true,"Links":[{"SourceID":79479,"TargetID":79477,"Directional":true}]},{"ID":17118,"SourceStructureID":79493,"TargetStructureID":79498,"Label":"79493-79498 via Ribbon Synapse from 79496 -> 79499","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79496,"TargetID":79499,"Directional":true}]},{"ID":17119,"SourceStructureID":79493,"TargetStructureID":79559,"Label":"79493-79559 via Ribbon Synapse from 79496 -> 79568","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":79496,"TargetID":79568,"Directional":true}]},{"ID":17120,"SourceStructureID":79502,"TargetStructureID":79559,"Label":"79502-79559 via Conventional from 79503 -> 79577","Type":"Conventional","Directional":true,"Links":[{"SourceID":79503,"TargetID":79577,"Directional":true}]},{"ID":17121,"SourceStructureID":79533,"TargetStructureID":79559,"Label":"79533-79559 via Conventional from 79534 -> 79571","Type":"Conventional","Directional":true,"Links":[{"SourceID":79534,"TargetID":79571,"Directional":true}]},{"ID":17122,"SourceStructureID":79545,"TargetStructureID":5530,"Label":"79545-5530 via Conventional from 79546 -> 42109","Type":"Conventional","Directional":true,"Links":[{"SourceID":79546,"TargetID":42109,"Directional":true}]},{"ID":17123,"SourceStructureID":79553,"TargetStructureID":5530,"Label":"79553-5530 via Conventional from 79554 -> 42100","Type":"Conventional","Directional":true,"Links":[{"SourceID":79554,"TargetID":42100,"Directional":true}]},{"ID":17124,"SourceStructureID":79555,"TargetStructureID":5530,"Label":"79555-5530 via Conventional from 79565 -> 30117","Type":"Conventional","Directional":true,"Links":[{"SourceID":79565,"TargetID":30117,"Directional":true}]},{"ID":17125,"SourceStructureID":79558,"TargetStructureID":5530,"Label":"79558-5530 via Conventional from 79560 -> 79561","Type":"Conventional","Directional":true,"Links":[{"SourceID":79560,"TargetID":79561,"Directional":true}]},{"ID":17126,"SourceStructureID":79559,"TargetStructureID":79491,"Label":"79559-79491 via Conventional from 79576 -> 79572","Type":"Conventional","Directional":true,"Links":[{"SourceID":79576,"TargetID":79572,"Directional":true}]},{"ID":17127,"SourceStructureID":79559,"TargetStructureID":79493,"Label":"79559-79493 via Conventional from 79566 -> 79494","Type":"Conventional","Directional":true,"Links":[{"SourceID":79566,"TargetID":79494,"Directional":true}]},{"ID":17128,"SourceStructureID":79559,"TargetStructureID":79509,"Label":"79559-79509 via Conventional from 79570 -> 79510","Type":"Conventional","Directional":true,"Links":[{"SourceID":79570,"TargetID":79510,"Directional":true}]},{"ID":17129,"SourceStructureID":79563,"TargetStructureID":79559,"Label":"79563-79559 via Conventional from 79564 -> 79562","Type":"Conventional","Directional":true,"Links":[{"SourceID":79564,"TargetID":79562,"Directional":true}]},{"ID":17130,"SourceStructureID":79584,"TargetStructureID":68488,"Label":"79584-68488 via Conventional from 79585 -> 79583","Type":"Conventional","Directional":true,"Links":[{"SourceID":79585,"TargetID":79583,"Directional":true}]},{"ID":17131,"SourceStructureID":79586,"TargetStructureID":68516,"Label":"79586-68516 via Conventional from 79590 -> 68519","Type":"Conventional","Directional":true,"Links":[{"SourceID":79590,"TargetID":68519,"Directional":true}]},{"ID":17132,"SourceStructureID":79586,"TargetStructureID":79588,"Label":"79586-79588 via Conventional from 79587 -> 79589","Type":"Conventional","Directional":true,"Links":[{"SourceID":79587,"TargetID":79589,"Directional":true}]},{"ID":17133,"SourceStructureID":79601,"TargetStructureID":79586,"Label":"79601-79586 via Conventional from 79602 -> 79600","Type":"Conventional","Directional":true,"Links":[{"SourceID":79602,"TargetID":79600,"Directional":true}]},{"ID":17134,"SourceStructureID":79620,"TargetStructureID":5562,"Label":"79620-5562 via Conventional from 79621 -> 63858","Type":"Conventional","Directional":true,"Links":[{"SourceID":79621,"TargetID":63858,"Directional":true}]},{"ID":17135,"SourceStructureID":79643,"TargetStructureID":5562,"Label":"79643-5562 via Conventional from 79648 -> 63872","Type":"Conventional","Directional":true,"Links":[{"SourceID":79648,"TargetID":63872,"Directional":true}]},{"ID":17136,"SourceStructureID":79651,"TargetStructureID":593,"Label":"79651-593 via Conventional from 115732 -> 115733","Type":"Conventional","Directional":true,"Links":[{"SourceID":115732,"TargetID":115733,"Directional":true}]},{"ID":17137,"SourceStructureID":79665,"TargetStructureID":5562,"Label":"79665-5562 via Conventional from 79666 -> 63869","Type":"Conventional","Directional":true,"Links":[{"SourceID":79666,"TargetID":63869,"Directional":true}]},{"ID":17138,"SourceStructureID":79667,"TargetStructureID":5562,"Label":"79667-5562 via Conventional from 79668 -> 48943","Type":"Conventional","Directional":true,"Links":[{"SourceID":79668,"TargetID":48943,"Directional":true}]},{"ID":17139,"SourceStructureID":79672,"TargetStructureID":5562,"Label":"79672-5562 via Conventional from 79673 -> 48957","Type":"Conventional","Directional":true,"Links":[{"SourceID":79673,"TargetID":48957,"Directional":true}]},{"ID":17140,"SourceStructureID":79674,"TargetStructureID":5562,"Label":"79674-5562 via Conventional from 79675 -> 48958","Type":"Conventional","Directional":true,"Links":[{"SourceID":79675,"TargetID":48958,"Directional":true}]},{"ID":17141,"SourceStructureID":79676,"TargetStructureID":5562,"Label":"79676-5562 via Conventional from 79677 -> 63877","Type":"Conventional","Directional":true,"Links":[{"SourceID":79677,"TargetID":63877,"Directional":true}]},{"ID":17142,"SourceStructureID":79683,"TargetStructureID":5562,"Label":"79683-5562 via Conventional from 79685 -> 63879","Type":"Conventional","Directional":true,"Links":[{"SourceID":79685,"TargetID":63879,"Directional":true}]},{"ID":17143,"SourceStructureID":79686,"TargetStructureID":5562,"Label":"79686-5562 via Conventional from 79687 -> 63880","Type":"Conventional","Directional":true,"Links":[{"SourceID":79687,"TargetID":63880,"Directional":true}]},{"ID":17144,"SourceStructureID":79693,"TargetStructureID":5562,"Label":"79693-5562 via Conventional from 79694 -> 63881","Type":"Conventional","Directional":true,"Links":[{"SourceID":79694,"TargetID":63881,"Directional":true}]},{"ID":17145,"SourceStructureID":79705,"TargetStructureID":5562,"Label":"79705-5562 via Conventional from 79706 -> 63883","Type":"Conventional","Directional":true,"Links":[{"SourceID":79706,"TargetID":63883,"Directional":true}]},{"ID":17146,"SourceStructureID":79720,"TargetStructureID":5562,"Label":"79720-5562 via Conventional from 79721 -> 63897","Type":"Conventional","Directional":true,"Links":[{"SourceID":79721,"TargetID":63897,"Directional":true}]},{"ID":17147,"SourceStructureID":79722,"TargetStructureID":5562,"Label":"79722-5562 via Conventional from 79723 -> 63887","Type":"Conventional","Directional":true,"Links":[{"SourceID":79723,"TargetID":63887,"Directional":true}]},{"ID":17148,"SourceStructureID":79729,"TargetStructureID":5562,"Label":"79729-5562 via Conventional from 79730 -> 63888","Type":"Conventional","Directional":true,"Links":[{"SourceID":79730,"TargetID":63888,"Directional":true}]},{"ID":17149,"SourceStructureID":79741,"TargetStructureID":5562,"Label":"79741-5562 via Conventional from 79742 -> 63889","Type":"Conventional","Directional":true,"Links":[{"SourceID":79742,"TargetID":63889,"Directional":true}]},{"ID":17150,"SourceStructureID":79745,"TargetStructureID":5562,"Label":"79745-5562 via Conventional from 79746 -> 63890","Type":"Conventional","Directional":true,"Links":[{"SourceID":79746,"TargetID":63890,"Directional":true}]},{"ID":17151,"SourceStructureID":79756,"TargetStructureID":5562,"Label":"79756-5562 via Conventional from 79757 -> 63892","Type":"Conventional","Directional":true,"Links":[{"SourceID":79757,"TargetID":63892,"Directional":true}]},{"ID":17152,"SourceStructureID":79772,"TargetStructureID":5562,"Label":"79772-5562 via Conventional from 79773 -> 63912","Type":"Conventional","Directional":true,"Links":[{"SourceID":79773,"TargetID":63912,"Directional":true}]},{"ID":17153,"SourceStructureID":79779,"TargetStructureID":5562,"Label":"79779-5562 via Conventional from 79780 -> 63914","Type":"Conventional","Directional":true,"Links":[{"SourceID":79780,"TargetID":63914,"Directional":true}]},{"ID":17154,"SourceStructureID":79781,"TargetStructureID":5562,"Label":"79781-5562 via Conventional from 79782 -> 49003","Type":"Conventional","Directional":true,"Links":[{"SourceID":79782,"TargetID":49003,"Directional":true}]},{"ID":17155,"SourceStructureID":79795,"TargetStructureID":5562,"Label":"79795-5562 via Conventional from 79796 -> 49002","Type":"Conventional","Directional":true,"Links":[{"SourceID":79796,"TargetID":49002,"Directional":true}]},{"ID":17156,"SourceStructureID":79797,"TargetStructureID":5562,"Label":"79797-5562 via Conventional from 79798 -> 63917","Type":"Conventional","Directional":true,"Links":[{"SourceID":79798,"TargetID":63917,"Directional":true}]},{"ID":17157,"SourceStructureID":79799,"TargetStructureID":5562,"Label":"79799-5562 via Conventional from 79800 -> 63918","Type":"Conventional","Directional":true,"Links":[{"SourceID":79800,"TargetID":63918,"Directional":true}]},{"ID":17158,"SourceStructureID":79808,"TargetStructureID":5562,"Label":"79808-5562 via Conventional from 79809 -> 63908","Type":"Conventional","Directional":true,"Links":[{"SourceID":79809,"TargetID":63908,"Directional":true}]},{"ID":17159,"SourceStructureID":79815,"TargetStructureID":5562,"Label":"79815-5562 via Conventional from 79817 -> 63904","Type":"Conventional","Directional":true,"Links":[{"SourceID":79817,"TargetID":63904,"Directional":true}]},{"ID":17160,"SourceStructureID":79834,"TargetStructureID":5562,"Label":"79834-5562 via Conventional from 79835 -> 63910","Type":"Conventional","Directional":true,"Links":[{"SourceID":79835,"TargetID":63910,"Directional":true}]},{"ID":17161,"SourceStructureID":79840,"TargetStructureID":5562,"Label":"79840-5562 via Conventional from 79841 -> 63911","Type":"Conventional","Directional":true,"Links":[{"SourceID":79841,"TargetID":63911,"Directional":true}]},{"ID":17162,"SourceStructureID":79845,"TargetStructureID":5562,"Label":"79845-5562 via Conventional from 79846 -> 49001","Type":"Conventional","Directional":true,"Links":[{"SourceID":79846,"TargetID":49001,"Directional":true}]},{"ID":17163,"SourceStructureID":79855,"TargetStructureID":5562,"Label":"79855-5562 via Conventional from 92082 -> 92083","Type":"Conventional","Directional":true,"Links":[{"SourceID":92082,"TargetID":92083,"Directional":true}]},{"ID":17164,"SourceStructureID":79858,"TargetStructureID":5562,"Label":"79858-5562 via Conventional from 79859 -> 63920","Type":"Conventional","Directional":true,"Links":[{"SourceID":79859,"TargetID":63920,"Directional":true}]},{"ID":17165,"SourceStructureID":79869,"TargetStructureID":5562,"Label":"79869-5562 via Conventional from 79872 -> 63922","Type":"Conventional","Directional":true,"Links":[{"SourceID":79872,"TargetID":63922,"Directional":true}]},{"ID":17166,"SourceStructureID":79873,"TargetStructureID":5562,"Label":"79873-5562 via Conventional from 79874 -> 48979","Type":"Conventional","Directional":true,"Links":[{"SourceID":79874,"TargetID":48979,"Directional":true}]},{"ID":17167,"SourceStructureID":79875,"TargetStructureID":5562,"Label":"79875-5562 via Conventional from 79876 -> 48972","Type":"Conventional","Directional":true,"Links":[{"SourceID":79876,"TargetID":48972,"Directional":true}]},{"ID":17168,"SourceStructureID":79914,"TargetStructureID":6997,"Label":"79914-6997 via Conventional from 79915 -> 83117","Type":"Conventional","Directional":true,"Links":[{"SourceID":79915,"TargetID":83117,"Directional":true}]},{"ID":17169,"SourceStructureID":79926,"TargetStructureID":6997,"Label":"79926-6997 via Conventional from 79927 -> 83096","Type":"Conventional","Directional":true,"Links":[{"SourceID":79927,"TargetID":83096,"Directional":true}]},{"ID":17170,"SourceStructureID":79928,"TargetStructureID":6997,"Label":"79928-6997 via Conventional from 79929 -> 83095","Type":"Conventional","Directional":true,"Links":[{"SourceID":79929,"TargetID":83095,"Directional":true}]},{"ID":17171,"SourceStructureID":79931,"TargetStructureID":6997,"Label":"79931-6997 via Conventional from 79932 -> 83097","Type":"Conventional","Directional":true,"Links":[{"SourceID":79932,"TargetID":83097,"Directional":true}]},{"ID":17172,"SourceStructureID":79950,"TargetStructureID":69162,"Label":"79950-69162 via Conventional from 136837 -> 136838","Type":"Conventional","Directional":true,"Links":[{"SourceID":136837,"TargetID":136838,"Directional":true}]},{"ID":17173,"SourceStructureID":79955,"TargetStructureID":6997,"Label":"79955-6997 via Conventional from 79956 -> 83113","Type":"Conventional","Directional":true,"Links":[{"SourceID":79956,"TargetID":83113,"Directional":true}]},{"ID":17174,"SourceStructureID":79970,"TargetStructureID":6997,"Label":"79970-6997 via Conventional from 79971 -> 83073","Type":"Conventional","Directional":true,"Links":[{"SourceID":79971,"TargetID":83073,"Directional":true}]},{"ID":17175,"SourceStructureID":79975,"TargetStructureID":6997,"Label":"79975-6997 via Conventional from 79977 -> 83080","Type":"Conventional","Directional":true,"Links":[{"SourceID":79977,"TargetID":83080,"Directional":true}]},{"ID":17176,"SourceStructureID":79984,"TargetStructureID":6997,"Label":"79984-6997 via Conventional from 79985 -> 83076","Type":"Conventional","Directional":true,"Links":[{"SourceID":79985,"TargetID":83076,"Directional":true}]},{"ID":17177,"SourceStructureID":79986,"TargetStructureID":6997,"Label":"79986-6997 via Conventional from 79987 -> 83079","Type":"Conventional","Directional":true,"Links":[{"SourceID":79987,"TargetID":83079,"Directional":true}]},{"ID":17178,"SourceStructureID":80000,"TargetStructureID":6997,"Label":"80000-6997 via Conventional from 80001 -> 83085","Type":"Conventional","Directional":true,"Links":[{"SourceID":80001,"TargetID":83085,"Directional":true}]},{"ID":17179,"SourceStructureID":80016,"TargetStructureID":6997,"Label":"80016-6997 via Conventional from 80017 -> 83069","Type":"Conventional","Directional":true,"Links":[{"SourceID":80017,"TargetID":83069,"Directional":true}]},{"ID":17180,"SourceStructureID":80019,"TargetStructureID":6997,"Label":"80019-6997 via Conventional from 80020 -> 83067","Type":"Conventional","Directional":true,"Links":[{"SourceID":80020,"TargetID":83067,"Directional":true}]},{"ID":17181,"SourceStructureID":80023,"TargetStructureID":6997,"Label":"80023-6997 via Conventional from 80024 -> 83026","Type":"Conventional","Directional":true,"Links":[{"SourceID":80024,"TargetID":83026,"Directional":true}]},{"ID":17182,"SourceStructureID":80028,"TargetStructureID":6997,"Label":"80028-6997 via Conventional from 80029 -> 83023","Type":"Conventional","Directional":true,"Links":[{"SourceID":80029,"TargetID":83023,"Directional":true}]},{"ID":17183,"SourceStructureID":80034,"TargetStructureID":6997,"Label":"80034-6997 via Conventional from 80035 -> 83019, 80037 -> 83020","Type":"Conventional","Directional":true,"Links":[{"SourceID":80035,"TargetID":83019,"Directional":true},{"SourceID":80037,"TargetID":83020,"Directional":true}]},{"ID":17184,"SourceStructureID":80060,"TargetStructureID":5283,"Label":"80060-5283 via Conventional from 80061 -> 80056","Type":"Conventional","Directional":true,"Links":[{"SourceID":80061,"TargetID":80056,"Directional":true}]},{"ID":17185,"SourceStructureID":80065,"TargetStructureID":5283,"Label":"80065-5283 via Conventional from 80066 -> 80064","Type":"Conventional","Directional":true,"Links":[{"SourceID":80066,"TargetID":80064,"Directional":true}]},{"ID":17186,"SourceStructureID":80067,"TargetStructureID":5283,"Label":"80067-5283 via Conventional from 80068 -> 80069","Type":"Conventional","Directional":true,"Links":[{"SourceID":80068,"TargetID":80069,"Directional":true}]},{"ID":17187,"SourceStructureID":80071,"TargetStructureID":5283,"Label":"80071-5283 via Conventional from 80072 -> 80070","Type":"Conventional","Directional":true,"Links":[{"SourceID":80072,"TargetID":80070,"Directional":true}]},{"ID":17188,"SourceStructureID":80079,"TargetStructureID":5283,"Label":"80079-5283 via Cistern Pre from 132189 -> 132190","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":132189,"TargetID":132190,"Directional":true}]},{"ID":17189,"SourceStructureID":80088,"TargetStructureID":5283,"Label":"80088-5283 via Conventional from 80089 -> 80062","Type":"Conventional","Directional":true,"Links":[{"SourceID":80089,"TargetID":80062,"Directional":true}]},{"ID":17190,"SourceStructureID":80090,"TargetStructureID":5283,"Label":"80090-5283 via Conventional from 80091 -> 80092","Type":"Conventional","Directional":true,"Links":[{"SourceID":80091,"TargetID":80092,"Directional":true}]},{"ID":17191,"SourceStructureID":80094,"TargetStructureID":5283,"Label":"80094-5283 via Conventional from 80096 -> 80093","Type":"Conventional","Directional":true,"Links":[{"SourceID":80096,"TargetID":80093,"Directional":true}]},{"ID":17192,"SourceStructureID":80115,"TargetStructureID":5283,"Label":"80115-5283 via Conventional from 80116 -> 80114","Type":"Conventional","Directional":true,"Links":[{"SourceID":80116,"TargetID":80114,"Directional":true}]},{"ID":17193,"SourceStructureID":80133,"TargetStructureID":5283,"Label":"80133-5283 via Conventional from 80134 -> 80135","Type":"Conventional","Directional":true,"Links":[{"SourceID":80134,"TargetID":80135,"Directional":true}]},{"ID":17194,"SourceStructureID":80147,"TargetStructureID":5283,"Label":"80147-5283 via Conventional from 80148 -> 80146","Type":"Conventional","Directional":true,"Links":[{"SourceID":80148,"TargetID":80146,"Directional":true}]},{"ID":17195,"SourceStructureID":80159,"TargetStructureID":5283,"Label":"80159-5283 via Conventional from 80160 -> 80158","Type":"Conventional","Directional":true,"Links":[{"SourceID":80160,"TargetID":80158,"Directional":true}]},{"ID":17196,"SourceStructureID":80167,"TargetStructureID":5283,"Label":"80167-5283 via Conventional from 80168 -> 80166","Type":"Conventional","Directional":true,"Links":[{"SourceID":80168,"TargetID":80166,"Directional":true}]},{"ID":17197,"SourceStructureID":80174,"TargetStructureID":5530,"Label":"80174-5530 via Conventional from 80175 -> 80176","Type":"Conventional","Directional":true,"Links":[{"SourceID":80175,"TargetID":80176,"Directional":true}]},{"ID":17198,"SourceStructureID":80185,"TargetStructureID":176,"Label":"80185-176 via Conventional from 124869 -> 54994","Type":"Conventional","Directional":true,"Links":[{"SourceID":124869,"TargetID":54994,"Directional":true}]},{"ID":17199,"SourceStructureID":80185,"TargetStructureID":5530,"Label":"80185-5530 via Conventional from 80187 -> 42098","Type":"Conventional","Directional":true,"Links":[{"SourceID":80187,"TargetID":42098,"Directional":true}]},{"ID":17200,"SourceStructureID":80190,"TargetStructureID":5530,"Label":"80190-5530 via Conventional from 80191 -> 42105","Type":"Conventional","Directional":true,"Links":[{"SourceID":80191,"TargetID":42105,"Directional":true}]},{"ID":17201,"SourceStructureID":80197,"TargetStructureID":5530,"Label":"80197-5530 via Conventional from 80198 -> 80199","Type":"Conventional","Directional":true,"Links":[{"SourceID":80198,"TargetID":80199,"Directional":true}]},{"ID":17202,"SourceStructureID":80203,"TargetStructureID":5530,"Label":"80203-5530 via Conventional from 80204 -> 42113","Type":"Conventional","Directional":true,"Links":[{"SourceID":80204,"TargetID":42113,"Directional":true}]},{"ID":17203,"SourceStructureID":80213,"TargetStructureID":5562,"Label":"80213-5562 via Conventional from 80214 -> 80215","Type":"Conventional","Directional":true,"Links":[{"SourceID":80214,"TargetID":80215,"Directional":true}]},{"ID":17204,"SourceStructureID":80235,"TargetStructureID":5562,"Label":"80235-5562 via Conventional from 134522 -> 134521","Type":"Conventional","Directional":true,"Links":[{"SourceID":134522,"TargetID":134521,"Directional":true}]},{"ID":17205,"SourceStructureID":80245,"TargetStructureID":5283,"Label":"80245-5283 via Cistern Pre from 131702 -> 131703","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":131702,"TargetID":131703,"Directional":true}]},{"ID":17206,"SourceStructureID":80248,"TargetStructureID":5283,"Label":"80248-5283 via Conventional from 80249 -> 80247","Type":"Conventional","Directional":true,"Links":[{"SourceID":80249,"TargetID":80247,"Directional":true}]},{"ID":17207,"SourceStructureID":80262,"TargetStructureID":5562,"Label":"80262-5562 via Conventional from 80264 -> 63086","Type":"Conventional","Directional":true,"Links":[{"SourceID":80264,"TargetID":63086,"Directional":true}]},{"ID":17208,"SourceStructureID":80263,"TargetStructureID":5530,"Label":"80263-5530 via Conventional from 80268 -> 42114","Type":"Conventional","Directional":true,"Links":[{"SourceID":80268,"TargetID":42114,"Directional":true}]},{"ID":17209,"SourceStructureID":80274,"TargetStructureID":68463,"Label":"80274-68463 via Conventional from 80275 -> 80273","Type":"Conventional","Directional":true,"Links":[{"SourceID":80275,"TargetID":80273,"Directional":true}]},{"ID":17210,"SourceStructureID":80276,"TargetStructureID":5530,"Label":"80276-5530 via Conventional from 80279 -> 42115","Type":"Conventional","Directional":true,"Links":[{"SourceID":80279,"TargetID":42115,"Directional":true}]},{"ID":17211,"SourceStructureID":80276,"TargetStructureID":80210,"Label":"80276-80210 via Conventional from 84377 -> 84378","Type":"Conventional","Directional":true,"Links":[{"SourceID":84377,"TargetID":84378,"Directional":true}]},{"ID":17212,"SourceStructureID":80286,"TargetStructureID":5562,"Label":"80286-5562 via Conventional from 80287 -> 63239","Type":"Conventional","Directional":true,"Links":[{"SourceID":80287,"TargetID":63239,"Directional":true}]},{"ID":17213,"SourceStructureID":80290,"TargetStructureID":5562,"Label":"80290-5562 via Conventional from 80291 -> 63245","Type":"Conventional","Directional":true,"Links":[{"SourceID":80291,"TargetID":63245,"Directional":true}]},{"ID":17214,"SourceStructureID":80292,"TargetStructureID":5530,"Label":"80292-5530 via Conventional from 80297 -> 80299","Type":"Conventional","Directional":true,"Links":[{"SourceID":80297,"TargetID":80299,"Directional":true}]},{"ID":17215,"SourceStructureID":80293,"TargetStructureID":5649,"Label":"80293-5649 via Conventional from 106546 -> 54105","Type":"Conventional","Directional":true,"Links":[{"SourceID":106546,"TargetID":54105,"Directional":true}]},{"ID":17216,"SourceStructureID":80304,"TargetStructureID":5562,"Label":"80304-5562 via Conventional from 134627 -> 134626","Type":"Conventional","Directional":true,"Links":[{"SourceID":134627,"TargetID":134626,"Directional":true}]},{"ID":17217,"SourceStructureID":80320,"TargetStructureID":5562,"Label":"80320-5562 via Conventional from 147567 -> 147566","Type":"Conventional","Directional":true,"Links":[{"SourceID":147567,"TargetID":147566,"Directional":true}]},{"ID":17218,"SourceStructureID":80324,"TargetStructureID":5562,"Label":"80324-5562 via Conventional from 80325 -> 80326","Type":"Conventional","Directional":true,"Links":[{"SourceID":80325,"TargetID":80326,"Directional":true}]},{"ID":17219,"SourceStructureID":80333,"TargetStructureID":5562,"Label":"80333-5562 via Conventional from 147564 -> 147565","Type":"Conventional","Directional":true,"Links":[{"SourceID":147564,"TargetID":147565,"Directional":true}]},{"ID":17220,"SourceStructureID":80346,"TargetStructureID":5562,"Label":"80346-5562 via Conventional from 80347 -> 63294","Type":"Conventional","Directional":true,"Links":[{"SourceID":80347,"TargetID":63294,"Directional":true}]},{"ID":17221,"SourceStructureID":80354,"TargetStructureID":5562,"Label":"80354-5562 via Conventional from 80356 -> 63297","Type":"Conventional","Directional":true,"Links":[{"SourceID":80356,"TargetID":63297,"Directional":true}]},{"ID":17222,"SourceStructureID":80357,"TargetStructureID":5562,"Label":"80357-5562 via Conventional from 80358 -> 63298","Type":"Conventional","Directional":true,"Links":[{"SourceID":80358,"TargetID":63298,"Directional":true}]},{"ID":17223,"SourceStructureID":80361,"TargetStructureID":5562,"Label":"80361-5562 via Conventional from 80362 -> 63300","Type":"Conventional","Directional":true,"Links":[{"SourceID":80362,"TargetID":63300,"Directional":true}]},{"ID":17224,"SourceStructureID":80378,"TargetStructureID":5562,"Label":"80378-5562 via Conventional from 80380 -> 63305","Type":"Conventional","Directional":true,"Links":[{"SourceID":80380,"TargetID":63305,"Directional":true}]},{"ID":17225,"SourceStructureID":80382,"TargetStructureID":5562,"Label":"80382-5562 via Conventional from 80392 -> 80393","Type":"Conventional","Directional":true,"Links":[{"SourceID":80392,"TargetID":80393,"Directional":true}]},{"ID":17226,"SourceStructureID":80383,"TargetStructureID":5562,"Label":"80383-5562 via Conventional from 80384 -> 63303","Type":"Conventional","Directional":true,"Links":[{"SourceID":80384,"TargetID":63303,"Directional":true}]},{"ID":17227,"SourceStructureID":80398,"TargetStructureID":5562,"Label":"80398-5562 via Conventional from 80677 -> 63286","Type":"Conventional","Directional":true,"Links":[{"SourceID":80677,"TargetID":63286,"Directional":true}]},{"ID":17228,"SourceStructureID":80400,"TargetStructureID":5562,"Label":"80400-5562 via Conventional from 80690 -> 63287","Type":"Conventional","Directional":true,"Links":[{"SourceID":80690,"TargetID":63287,"Directional":true}]},{"ID":17229,"SourceStructureID":80401,"TargetStructureID":5562,"Label":"80401-5562 via Conventional from 80402 -> 63288","Type":"Conventional","Directional":true,"Links":[{"SourceID":80402,"TargetID":63288,"Directional":true}]},{"ID":17230,"SourceStructureID":80425,"TargetStructureID":5530,"Label":"80425-5530 via Conventional from 80439 -> 42118","Type":"Conventional","Directional":true,"Links":[{"SourceID":80439,"TargetID":42118,"Directional":true}]},{"ID":17231,"SourceStructureID":80434,"TargetStructureID":5530,"Label":"80434-5530 via Conventional from 80444 -> 42119","Type":"Conventional","Directional":true,"Links":[{"SourceID":80444,"TargetID":42119,"Directional":true}]},{"ID":17232,"SourceStructureID":80440,"TargetStructureID":5530,"Label":"80440-5530 via Conventional from 80441 -> 42120","Type":"Conventional","Directional":true,"Links":[{"SourceID":80441,"TargetID":42120,"Directional":true}]},{"ID":17233,"SourceStructureID":80447,"TargetStructureID":5530,"Label":"80447-5530 via Conventional from 80450 -> 42122","Type":"Conventional","Directional":true,"Links":[{"SourceID":80450,"TargetID":42122,"Directional":true}]},{"ID":17234,"SourceStructureID":80448,"TargetStructureID":170,"Label":"80448-170 via Conventional from 88530 -> 47933","Type":"Conventional","Directional":true,"Links":[{"SourceID":88530,"TargetID":47933,"Directional":true}]},{"ID":17235,"SourceStructureID":80448,"TargetStructureID":5530,"Label":"80448-5530 via Conventional from 80451 -> 42123","Type":"Conventional","Directional":true,"Links":[{"SourceID":80451,"TargetID":42123,"Directional":true}]},{"ID":17236,"SourceStructureID":80467,"TargetStructureID":5530,"Label":"80467-5530 via Conventional from 80468 -> 42124","Type":"Conventional","Directional":true,"Links":[{"SourceID":80468,"TargetID":42124,"Directional":true}]},{"ID":17237,"SourceStructureID":80475,"TargetStructureID":5530,"Label":"80475-5530 via Conventional from 80476 -> 80477","Type":"Conventional","Directional":true,"Links":[{"SourceID":80476,"TargetID":80477,"Directional":true}]},{"ID":17238,"SourceStructureID":80498,"TargetStructureID":5530,"Label":"80498-5530 via Conventional from 80503 -> 42128","Type":"Conventional","Directional":true,"Links":[{"SourceID":80503,"TargetID":42128,"Directional":true}]},{"ID":17239,"SourceStructureID":80506,"TargetStructureID":5530,"Label":"80506-5530 via Conventional from 80507 -> 80505","Type":"Conventional","Directional":true,"Links":[{"SourceID":80507,"TargetID":80505,"Directional":true}]},{"ID":17240,"SourceStructureID":80509,"TargetStructureID":5530,"Label":"80509-5530 via Conventional from 80511 -> 80510","Type":"Conventional","Directional":true,"Links":[{"SourceID":80511,"TargetID":80510,"Directional":true}]},{"ID":17241,"SourceStructureID":80522,"TargetStructureID":62325,"Label":"80522-62325 via Conventional from 80523 -> 80524","Type":"Conventional","Directional":true,"Links":[{"SourceID":80523,"TargetID":80524,"Directional":true}]},{"ID":17242,"SourceStructureID":80532,"TargetStructureID":62325,"Label":"80532-62325 via Conventional from 80793 -> 80794","Type":"Conventional","Directional":true,"Links":[{"SourceID":80793,"TargetID":80794,"Directional":true}]},{"ID":17243,"SourceStructureID":80534,"TargetStructureID":62325,"Label":"80534-62325 via Conventional from 80536 -> 80537","Type":"Conventional","Directional":true,"Links":[{"SourceID":80536,"TargetID":80537,"Directional":true}]},{"ID":17244,"SourceStructureID":80555,"TargetStructureID":68393,"Label":"80555-68393 via Conventional from 80556 -> 80554","Type":"Conventional","Directional":true,"Links":[{"SourceID":80556,"TargetID":80554,"Directional":true}]},{"ID":17245,"SourceStructureID":80555,"TargetStructureID":112995,"Label":"80555-112995 via Conventional from 80558 -> 112996","Type":"Conventional","Directional":true,"Links":[{"SourceID":80558,"TargetID":112996,"Directional":true}]},{"ID":17246,"SourceStructureID":80562,"TargetStructureID":5530,"Label":"80562-5530 via Conventional from 80566 -> 42129","Type":"Conventional","Directional":true,"Links":[{"SourceID":80566,"TargetID":42129,"Directional":true}]},{"ID":17247,"SourceStructureID":80572,"TargetStructureID":5530,"Label":"80572-5530 via Conventional from 80573 -> 39714","Type":"Conventional","Directional":true,"Links":[{"SourceID":80573,"TargetID":39714,"Directional":true}]},{"ID":17248,"SourceStructureID":80582,"TargetStructureID":5530,"Label":"80582-5530 via Conventional from 80583 -> 80584","Type":"Conventional","Directional":true,"Links":[{"SourceID":80583,"TargetID":80584,"Directional":true}]},{"ID":17249,"SourceStructureID":80588,"TargetStructureID":5530,"Label":"80588-5530 via Conventional from 80589 -> 42132","Type":"Conventional","Directional":true,"Links":[{"SourceID":80589,"TargetID":42132,"Directional":true}]},{"ID":17250,"SourceStructureID":80591,"TargetStructureID":68539,"Label":"80591-68539 via Conventional from 80594 -> 80590","Type":"Conventional","Directional":true,"Links":[{"SourceID":80594,"TargetID":80590,"Directional":true}]},{"ID":17251,"SourceStructureID":80596,"TargetStructureID":5530,"Label":"80596-5530 via Conventional from 80597 -> 42133","Type":"Conventional","Directional":true,"Links":[{"SourceID":80597,"TargetID":42133,"Directional":true}]},{"ID":17252,"SourceStructureID":80600,"TargetStructureID":89058,"Label":"80600-89058 via Conventional from 89057 -> 89060","Type":"Conventional","Directional":true,"Links":[{"SourceID":89057,"TargetID":89060,"Directional":true}]},{"ID":17253,"SourceStructureID":80604,"TargetStructureID":9769,"Label":"80604-9769 via Conventional from 80605 -> 29818","Type":"Conventional","Directional":true,"Links":[{"SourceID":80605,"TargetID":29818,"Directional":true}]},{"ID":17254,"SourceStructureID":80607,"TargetStructureID":142,"Label":"80607-142 via Conventional from 126237 -> 50238","Type":"Conventional","Directional":true,"Links":[{"SourceID":126237,"TargetID":50238,"Directional":true}]},{"ID":17255,"SourceStructureID":80607,"TargetStructureID":5530,"Label":"80607-5530 via Conventional from 80608 -> 46334","Type":"Conventional","Directional":true,"Links":[{"SourceID":80608,"TargetID":46334,"Directional":true}]},{"ID":17256,"SourceStructureID":80607,"TargetStructureID":80607,"Label":"80607-80607 via Conventional from 126053 -> 126054","Type":"Conventional","Directional":true,"Links":[{"SourceID":126053,"TargetID":126054,"Directional":true}]},{"ID":17257,"SourceStructureID":80609,"TargetStructureID":180,"Label":"80609-180 via Conventional from 133112 -> 133111","Type":"Conventional","Directional":true,"Links":[{"SourceID":133112,"TargetID":133111,"Directional":true}]},{"ID":17258,"SourceStructureID":80609,"TargetStructureID":10720,"Label":"80609-10720 via Conventional from 82470 -> 82469","Type":"Conventional","Directional":true,"Links":[{"SourceID":82470,"TargetID":82469,"Directional":true}]},{"ID":17259,"SourceStructureID":80646,"TargetStructureID":68286,"Label":"80646-68286 via Conventional from 80647 -> 68310","Type":"Conventional","Directional":true,"Links":[{"SourceID":80647,"TargetID":68310,"Directional":true}]},{"ID":17260,"SourceStructureID":80657,"TargetStructureID":68286,"Label":"80657-68286 via Conventional from 80658 -> 80656","Type":"Conventional","Directional":true,"Links":[{"SourceID":80658,"TargetID":80656,"Directional":true}]},{"ID":17261,"SourceStructureID":80665,"TargetStructureID":68286,"Label":"80665-68286 via Conventional from 80666 -> 80661","Type":"Conventional","Directional":true,"Links":[{"SourceID":80666,"TargetID":80661,"Directional":true}]},{"ID":17262,"SourceStructureID":80702,"TargetStructureID":5562,"Label":"80702-5562 via Conventional from 80703 -> 63310","Type":"Conventional","Directional":true,"Links":[{"SourceID":80703,"TargetID":63310,"Directional":true}]},{"ID":17263,"SourceStructureID":80710,"TargetStructureID":5530,"Label":"80710-5530 via Conventional from 80711 -> 80712","Type":"Conventional","Directional":true,"Links":[{"SourceID":80711,"TargetID":80712,"Directional":true}]},{"ID":17264,"SourceStructureID":80721,"TargetStructureID":61816,"Label":"80721-61816 via Conventional from 80722 -> 80723","Type":"Conventional","Directional":true,"Links":[{"SourceID":80722,"TargetID":80723,"Directional":true}]},{"ID":17265,"SourceStructureID":80734,"TargetStructureID":61816,"Label":"80734-61816 via Conventional from 80735 -> 80736","Type":"Conventional","Directional":true,"Links":[{"SourceID":80735,"TargetID":80736,"Directional":true}]},{"ID":17266,"SourceStructureID":80738,"TargetStructureID":61816,"Label":"80738-61816 via Conventional from 80739 -> 80740","Type":"Conventional","Directional":true,"Links":[{"SourceID":80739,"TargetID":80740,"Directional":true}]},{"ID":17267,"SourceStructureID":80741,"TargetStructureID":61816,"Label":"80741-61816 via Conventional from 80742 -> 80743","Type":"Conventional","Directional":true,"Links":[{"SourceID":80742,"TargetID":80743,"Directional":true}]},{"ID":17268,"SourceStructureID":80755,"TargetStructureID":32804,"Label":"80755-32804 via Ribbon Synapse from 80757 -> 80756","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80757,"TargetID":80756,"Directional":true}]},{"ID":17269,"SourceStructureID":80755,"TargetStructureID":80772,"Label":"80755-80772 via Ribbon Synapse from 80771 -> 80773","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":80771,"TargetID":80773,"Directional":true}]},{"ID":17270,"SourceStructureID":80764,"TargetStructureID":32654,"Label":"80764-32654 via Conventional from 80765 -> 80766","Type":"Conventional","Directional":true,"Links":[{"SourceID":80765,"TargetID":80766,"Directional":true}]},{"ID":17271,"SourceStructureID":80767,"TargetStructureID":32654,"Label":"80767-32654 via Conventional from 80768 -> 80769","Type":"Conventional","Directional":true,"Links":[{"SourceID":80768,"TargetID":80769,"Directional":true}]},{"ID":17272,"SourceStructureID":80779,"TargetStructureID":32654,"Label":"80779-32654 via Conventional from 80781 -> 80783","Type":"Conventional","Directional":true,"Links":[{"SourceID":80781,"TargetID":80783,"Directional":true}]},{"ID":17273,"SourceStructureID":80779,"TargetStructureID":80755,"Label":"80779-80755 via Conventional from 80780 -> 80782","Type":"Conventional","Directional":true,"Links":[{"SourceID":80780,"TargetID":80782,"Directional":true}]},{"ID":17274,"SourceStructureID":80784,"TargetStructureID":80755,"Label":"80784-80755 via Conventional from 80788 -> 80791","Type":"Conventional","Directional":true,"Links":[{"SourceID":80788,"TargetID":80791,"Directional":true}]},{"ID":17275,"SourceStructureID":80785,"TargetStructureID":80755,"Label":"80785-80755 via Conventional from 80789 -> 80790","Type":"Conventional","Directional":true,"Links":[{"SourceID":80789,"TargetID":80790,"Directional":true}]},{"ID":17276,"SourceStructureID":80786,"TargetStructureID":80784,"Label":"80786-80784 via Conventional from 80787 -> 80792","Type":"Conventional","Directional":true,"Links":[{"SourceID":80787,"TargetID":80792,"Directional":true}]},{"ID":17277,"SourceStructureID":80797,"TargetStructureID":5562,"Label":"80797-5562 via Conventional from 80798 -> 63318","Type":"Conventional","Directional":true,"Links":[{"SourceID":80798,"TargetID":63318,"Directional":true}]},{"ID":17278,"SourceStructureID":80806,"TargetStructureID":62325,"Label":"80806-62325 via Conventional from 80825 -> 80828, 80870 -> 80869","Type":"Conventional","Directional":true,"Links":[{"SourceID":80825,"TargetID":80828,"Directional":true},{"SourceID":80870,"TargetID":80869,"Directional":true}]},{"ID":17279,"SourceStructureID":80809,"TargetStructureID":5562,"Label":"80809-5562 via Conventional from 80810 -> 63319","Type":"Conventional","Directional":true,"Links":[{"SourceID":80810,"TargetID":63319,"Directional":true}]},{"ID":17280,"SourceStructureID":80814,"TargetStructureID":5562,"Label":"80814-5562 via Conventional from 80815 -> 63314","Type":"Conventional","Directional":true,"Links":[{"SourceID":80815,"TargetID":63314,"Directional":true}]},{"ID":17281,"SourceStructureID":80816,"TargetStructureID":5562,"Label":"80816-5562 via Conventional from 80817 -> 63313","Type":"Conventional","Directional":true,"Links":[{"SourceID":80817,"TargetID":63313,"Directional":true}]},{"ID":17282,"SourceStructureID":80833,"TargetStructureID":5562,"Label":"80833-5562 via Conventional from 80834 -> 80835","Type":"Conventional","Directional":true,"Links":[{"SourceID":80834,"TargetID":80835,"Directional":true}]},{"ID":17283,"SourceStructureID":80843,"TargetStructureID":5562,"Label":"80843-5562 via Conventional from 80844 -> 80845","Type":"Conventional","Directional":true,"Links":[{"SourceID":80844,"TargetID":80845,"Directional":true}]},{"ID":17284,"SourceStructureID":80853,"TargetStructureID":5562,"Label":"80853-5562 via Conventional from 80854 -> 63322","Type":"Conventional","Directional":true,"Links":[{"SourceID":80854,"TargetID":63322,"Directional":true}]},{"ID":17285,"SourceStructureID":80867,"TargetStructureID":5562,"Label":"80867-5562 via Conventional from 80868 -> 63326","Type":"Conventional","Directional":true,"Links":[{"SourceID":80868,"TargetID":63326,"Directional":true}]},{"ID":17286,"SourceStructureID":80879,"TargetStructureID":62325,"Label":"80879-62325 via Conventional from 80880 -> 80878","Type":"Conventional","Directional":true,"Links":[{"SourceID":80880,"TargetID":80878,"Directional":true}]},{"ID":17287,"SourceStructureID":80879,"TargetStructureID":80896,"Label":"80879-80896 via Conventional from 87117 -> 87119","Type":"Conventional","Directional":true,"Links":[{"SourceID":87117,"TargetID":87119,"Directional":true}]},{"ID":17288,"SourceStructureID":80889,"TargetStructureID":5562,"Label":"80889-5562 via Conventional from 80890 -> 63327","Type":"Conventional","Directional":true,"Links":[{"SourceID":80890,"TargetID":63327,"Directional":true}]},{"ID":17289,"SourceStructureID":80897,"TargetStructureID":5562,"Label":"80897-5562 via Conventional from 80898 -> 64193","Type":"Conventional","Directional":true,"Links":[{"SourceID":80898,"TargetID":64193,"Directional":true}]},{"ID":17290,"SourceStructureID":80900,"TargetStructureID":80856,"Label":"80900-80856 via Conventional from 82444 -> 82445","Type":"Conventional","Directional":true,"Links":[{"SourceID":82444,"TargetID":82445,"Directional":true}]},{"ID":17291,"SourceStructureID":80900,"TargetStructureID":82449,"Label":"80900-82449 via Conventional from 82448 -> 82450","Type":"Conventional","Directional":true,"Links":[{"SourceID":82448,"TargetID":82450,"Directional":true}]},{"ID":17292,"SourceStructureID":80904,"TargetStructureID":5562,"Label":"80904-5562 via Conventional from 80905 -> 64195","Type":"Conventional","Directional":true,"Links":[{"SourceID":80905,"TargetID":64195,"Directional":true}]},{"ID":17293,"SourceStructureID":80974,"TargetStructureID":5530,"Label":"80974-5530 via Conventional from 80976 -> 80975","Type":"Conventional","Directional":true,"Links":[{"SourceID":80976,"TargetID":80975,"Directional":true}]},{"ID":17294,"SourceStructureID":80980,"TargetStructureID":5530,"Label":"80980-5530 via Conventional from 80981 -> 42140","Type":"Conventional","Directional":true,"Links":[{"SourceID":80981,"TargetID":42140,"Directional":true}]},{"ID":17295,"SourceStructureID":80983,"TargetStructureID":5530,"Label":"80983-5530 via Conventional from 80986 -> 42142","Type":"Conventional","Directional":true,"Links":[{"SourceID":80986,"TargetID":42142,"Directional":true}]},{"ID":17296,"SourceStructureID":80989,"TargetStructureID":5530,"Label":"80989-5530 via Conventional from 80996 -> 42143","Type":"Conventional","Directional":true,"Links":[{"SourceID":80996,"TargetID":42143,"Directional":true}]},{"ID":17297,"SourceStructureID":80990,"TargetStructureID":5530,"Label":"80990-5530 via Conventional from 80999 -> 42144","Type":"Conventional","Directional":true,"Links":[{"SourceID":80999,"TargetID":42144,"Directional":true}]},{"ID":17298,"SourceStructureID":81003,"TargetStructureID":5530,"Label":"81003-5530 via Conventional from 81007 -> 42146","Type":"Conventional","Directional":true,"Links":[{"SourceID":81007,"TargetID":42146,"Directional":true}]},{"ID":17299,"SourceStructureID":81008,"TargetStructureID":5530,"Label":"81008-5530 via Conventional from 81009 -> 42150","Type":"Conventional","Directional":true,"Links":[{"SourceID":81009,"TargetID":42150,"Directional":true}]},{"ID":17300,"SourceStructureID":81017,"TargetStructureID":5530,"Label":"81017-5530 via Conventional from 81019 -> 81018","Type":"Conventional","Directional":true,"Links":[{"SourceID":81019,"TargetID":81018,"Directional":true}]},{"ID":17301,"SourceStructureID":81035,"TargetStructureID":32804,"Label":"81035-32804 via Conventional from 81036 -> 81034","Type":"Conventional","Directional":true,"Links":[{"SourceID":81036,"TargetID":81034,"Directional":true}]},{"ID":17302,"SourceStructureID":81042,"TargetStructureID":32654,"Label":"81042-32654 via Conventional from 81043 -> 81045, 81044 -> 81065","Type":"Conventional","Directional":true,"Links":[{"SourceID":81043,"TargetID":81045,"Directional":true},{"SourceID":81044,"TargetID":81065,"Directional":true}]},{"ID":17303,"SourceStructureID":81048,"TargetStructureID":32654,"Label":"81048-32654 via Conventional from 81049 -> 81050","Type":"Conventional","Directional":true,"Links":[{"SourceID":81049,"TargetID":81050,"Directional":true}]},{"ID":17304,"SourceStructureID":81051,"TargetStructureID":32654,"Label":"81051-32654 via Conventional from 81052 -> 81053","Type":"Conventional","Directional":true,"Links":[{"SourceID":81052,"TargetID":81053,"Directional":true}]},{"ID":17305,"SourceStructureID":81066,"TargetStructureID":32654,"Label":"81066-32654 via Conventional from 81067 -> 81068","Type":"Conventional","Directional":true,"Links":[{"SourceID":81067,"TargetID":81068,"Directional":true}]},{"ID":17306,"SourceStructureID":81069,"TargetStructureID":32654,"Label":"81069-32654 via Conventional from 81070 -> 81071","Type":"Conventional","Directional":true,"Links":[{"SourceID":81070,"TargetID":81071,"Directional":true}]},{"ID":17307,"SourceStructureID":81072,"TargetStructureID":32654,"Label":"81072-32654 via Conventional from 81073 -> 81074","Type":"Conventional","Directional":true,"Links":[{"SourceID":81073,"TargetID":81074,"Directional":true}]},{"ID":17308,"SourceStructureID":81075,"TargetStructureID":32654,"Label":"81075-32654 via Conventional from 81076 -> 81077","Type":"Conventional","Directional":true,"Links":[{"SourceID":81076,"TargetID":81077,"Directional":true}]},{"ID":17309,"SourceStructureID":81081,"TargetStructureID":32654,"Label":"81081-32654 via Conventional from 81082 -> 81083","Type":"Conventional","Directional":true,"Links":[{"SourceID":81082,"TargetID":81083,"Directional":true}]},{"ID":17310,"SourceStructureID":81089,"TargetStructureID":32804,"Label":"81089-32804 via Conventional from 81090 -> 32838","Type":"Conventional","Directional":true,"Links":[{"SourceID":81090,"TargetID":32838,"Directional":true}]},{"ID":17311,"SourceStructureID":81091,"TargetStructureID":32804,"Label":"81091-32804 via Conventional from 81092 -> 81093","Type":"Conventional","Directional":true,"Links":[{"SourceID":81092,"TargetID":81093,"Directional":true}]},{"ID":17312,"SourceStructureID":81095,"TargetStructureID":32804,"Label":"81095-32804 via Conventional from 81096 -> 81097","Type":"Conventional","Directional":true,"Links":[{"SourceID":81096,"TargetID":81097,"Directional":true}]},{"ID":17313,"SourceStructureID":81102,"TargetStructureID":9693,"Label":"81102-9693 via Conventional from 81103 -> 28221","Type":"Conventional","Directional":true,"Links":[{"SourceID":81103,"TargetID":28221,"Directional":true}]},{"ID":17314,"SourceStructureID":81120,"TargetStructureID":32804,"Label":"81120-32804 via Conventional from 81122 -> 32813","Type":"Conventional","Directional":true,"Links":[{"SourceID":81122,"TargetID":32813,"Directional":true}]},{"ID":17315,"SourceStructureID":81124,"TargetStructureID":32804,"Label":"81124-32804 via Conventional from 81125 -> 32812","Type":"Conventional","Directional":true,"Links":[{"SourceID":81125,"TargetID":32812,"Directional":true}]},{"ID":17316,"SourceStructureID":81130,"TargetStructureID":5522,"Label":"81130-5522 via Conventional from 81131 -> 64148","Type":"Conventional","Directional":true,"Links":[{"SourceID":81131,"TargetID":64148,"Directional":true}]},{"ID":17317,"SourceStructureID":81136,"TargetStructureID":5530,"Label":"81136-5530 via Conventional from 81137 -> 81138","Type":"Conventional","Directional":true,"Links":[{"SourceID":81137,"TargetID":81138,"Directional":true}]},{"ID":17318,"SourceStructureID":81146,"TargetStructureID":5562,"Label":"81146-5562 via Conventional from 81147 -> 81148","Type":"Conventional","Directional":true,"Links":[{"SourceID":81147,"TargetID":81148,"Directional":true}]},{"ID":17319,"SourceStructureID":81180,"TargetStructureID":5530,"Label":"81180-5530 via Conventional from 81181 -> 23860","Type":"Conventional","Directional":true,"Links":[{"SourceID":81181,"TargetID":23860,"Directional":true}]},{"ID":17320,"SourceStructureID":81187,"TargetStructureID":5530,"Label":"81187-5530 via Conventional from 81188 -> 81189","Type":"Conventional","Directional":true,"Links":[{"SourceID":81188,"TargetID":81189,"Directional":true}]},{"ID":17321,"SourceStructureID":81193,"TargetStructureID":5530,"Label":"81193-5530 via Conventional from 81194 -> 81195","Type":"Conventional","Directional":true,"Links":[{"SourceID":81194,"TargetID":81195,"Directional":true}]},{"ID":17322,"SourceStructureID":81196,"TargetStructureID":608,"Label":"81196-608 via Conventional from 81197 -> 59074","Type":"Conventional","Directional":true,"Links":[{"SourceID":81197,"TargetID":59074,"Directional":true}]},{"ID":17323,"SourceStructureID":81196,"TargetStructureID":39862,"Label":"81196-39862 via Conventional from 81198 -> 81199","Type":"Conventional","Directional":true,"Links":[{"SourceID":81198,"TargetID":81199,"Directional":true}]},{"ID":17324,"SourceStructureID":81200,"TargetStructureID":5530,"Label":"81200-5530 via Conventional from 81201 -> 81202","Type":"Conventional","Directional":true,"Links":[{"SourceID":81201,"TargetID":81202,"Directional":true}]},{"ID":17325,"SourceStructureID":81211,"TargetStructureID":5530,"Label":"81211-5530 via Conventional from 81212 -> 81213","Type":"Conventional","Directional":true,"Links":[{"SourceID":81212,"TargetID":81213,"Directional":true}]},{"ID":17326,"SourceStructureID":81223,"TargetStructureID":5530,"Label":"81223-5530 via Conventional from 81224 -> 81225","Type":"Conventional","Directional":true,"Links":[{"SourceID":81224,"TargetID":81225,"Directional":true}]},{"ID":17327,"SourceStructureID":81228,"TargetStructureID":5530,"Label":"81228-5530 via Conventional from 81229 -> 81230","Type":"Conventional","Directional":true,"Links":[{"SourceID":81229,"TargetID":81230,"Directional":true}]},{"ID":17328,"SourceStructureID":81234,"TargetStructureID":5530,"Label":"81234-5530 via Conventional from 81237 -> 81238","Type":"Conventional","Directional":true,"Links":[{"SourceID":81237,"TargetID":81238,"Directional":true}]},{"ID":17329,"SourceStructureID":81236,"TargetStructureID":62325,"Label":"81236-62325 via Conventional from 81242 -> 81245","Type":"Conventional","Directional":true,"Links":[{"SourceID":81242,"TargetID":81245,"Directional":true}]},{"ID":17330,"SourceStructureID":81267,"TargetStructureID":62325,"Label":"81267-62325 via Conventional from 81427 -> 81428","Type":"Conventional","Directional":true,"Links":[{"SourceID":81427,"TargetID":81428,"Directional":true}]},{"ID":17331,"SourceStructureID":81270,"TargetStructureID":62325,"Label":"81270-62325 via Conventional from 81271 -> 81272, 81414 -> 81415","Type":"Conventional","Directional":true,"Links":[{"SourceID":81271,"TargetID":81272,"Directional":true},{"SourceID":81414,"TargetID":81415,"Directional":true}]},{"ID":17332,"SourceStructureID":81287,"TargetStructureID":62325,"Label":"81287-62325 via Conventional from 81288 -> 81289","Type":"Conventional","Directional":true,"Links":[{"SourceID":81288,"TargetID":81289,"Directional":true}]},{"ID":17333,"SourceStructureID":81301,"TargetStructureID":62325,"Label":"81301-62325 via Conventional from 81329 -> 81330","Type":"Conventional","Directional":true,"Links":[{"SourceID":81329,"TargetID":81330,"Directional":true}]},{"ID":17334,"SourceStructureID":81321,"TargetStructureID":62325,"Label":"81321-62325 via Conventional from 81327 -> 81328","Type":"Conventional","Directional":true,"Links":[{"SourceID":81327,"TargetID":81328,"Directional":true}]},{"ID":17335,"SourceStructureID":81322,"TargetStructureID":62325,"Label":"81322-62325 via Conventional from 81325 -> 81326","Type":"Conventional","Directional":true,"Links":[{"SourceID":81325,"TargetID":81326,"Directional":true}]},{"ID":17336,"SourceStructureID":81331,"TargetStructureID":62325,"Label":"81331-62325 via Conventional from 81332 -> 81333","Type":"Conventional","Directional":true,"Links":[{"SourceID":81332,"TargetID":81333,"Directional":true}]},{"ID":17337,"SourceStructureID":81393,"TargetStructureID":61853,"Label":"81393-61853 via Conventional from 81394 -> 81395","Type":"Conventional","Directional":true,"Links":[{"SourceID":81394,"TargetID":81395,"Directional":true}]},{"ID":17338,"SourceStructureID":81399,"TargetStructureID":61853,"Label":"81399-61853 via Conventional from 81400 -> 81401","Type":"Conventional","Directional":true,"Links":[{"SourceID":81400,"TargetID":81401,"Directional":true}]},{"ID":17339,"SourceStructureID":81402,"TargetStructureID":61853,"Label":"81402-61853 via Conventional from 81403 -> 81404","Type":"Conventional","Directional":true,"Links":[{"SourceID":81403,"TargetID":81404,"Directional":true}]},{"ID":17340,"SourceStructureID":81405,"TargetStructureID":62325,"Label":"81405-62325 via Conventional from 81420 -> 81421","Type":"Conventional","Directional":true,"Links":[{"SourceID":81420,"TargetID":81421,"Directional":true}]},{"ID":17341,"SourceStructureID":81407,"TargetStructureID":62325,"Label":"81407-62325 via Conventional from 81410 -> 81411","Type":"Conventional","Directional":true,"Links":[{"SourceID":81410,"TargetID":81411,"Directional":true}]},{"ID":17342,"SourceStructureID":81433,"TargetStructureID":81430,"Label":"81433-81430 via Conventional from 81434 -> 81435","Type":"Conventional","Directional":true,"Links":[{"SourceID":81434,"TargetID":81435,"Directional":true}]},{"ID":17343,"SourceStructureID":81437,"TargetStructureID":61853,"Label":"81437-61853 via Conventional from 81438 -> 81439","Type":"Conventional","Directional":true,"Links":[{"SourceID":81438,"TargetID":81439,"Directional":true}]},{"ID":17344,"SourceStructureID":81440,"TargetStructureID":61853,"Label":"81440-61853 via Conventional from 81441 -> 81442","Type":"Conventional","Directional":true,"Links":[{"SourceID":81441,"TargetID":81442,"Directional":true}]},{"ID":17345,"SourceStructureID":81454,"TargetStructureID":485,"Label":"81454-485 via Conventional from 81456 -> 81458","Type":"Conventional","Directional":true,"Links":[{"SourceID":81456,"TargetID":81458,"Directional":true}]},{"ID":17346,"SourceStructureID":81454,"TargetStructureID":61960,"Label":"81454-61960 via Conventional from 81455 -> 81457","Type":"Conventional","Directional":true,"Links":[{"SourceID":81455,"TargetID":81457,"Directional":true}]},{"ID":17347,"SourceStructureID":81454,"TargetStructureID":81459,"Label":"81454-81459 via Conventional from 81462 -> 81463","Type":"Conventional","Directional":true,"Links":[{"SourceID":81462,"TargetID":81463,"Directional":true}]},{"ID":17348,"SourceStructureID":81459,"TargetStructureID":485,"Label":"81459-485 via Conventional from 81460 -> 81461","Type":"Conventional","Directional":true,"Links":[{"SourceID":81460,"TargetID":81461,"Directional":true}]},{"ID":17349,"SourceStructureID":81472,"TargetStructureID":61960,"Label":"81472-61960 via Conventional from 81473 -> 81474","Type":"Conventional","Directional":true,"Links":[{"SourceID":81473,"TargetID":81474,"Directional":true}]},{"ID":17350,"SourceStructureID":81476,"TargetStructureID":66768,"Label":"81476-66768 via Conventional from 81477 -> 81475","Type":"Conventional","Directional":true,"Links":[{"SourceID":81477,"TargetID":81475,"Directional":true}]},{"ID":17351,"SourceStructureID":81489,"TargetStructureID":483,"Label":"81489-483 via Conventional from 81490 -> 81491","Type":"Conventional","Directional":true,"Links":[{"SourceID":81490,"TargetID":81491,"Directional":true}]},{"ID":17352,"SourceStructureID":81494,"TargetStructureID":483,"Label":"81494-483 via Conventional from 81495 -> 81496","Type":"Conventional","Directional":true,"Links":[{"SourceID":81495,"TargetID":81496,"Directional":true}]},{"ID":17353,"SourceStructureID":81510,"TargetStructureID":165,"Label":"81510-165 via Conventional from 81511 -> 21710","Type":"Conventional","Directional":true,"Links":[{"SourceID":81511,"TargetID":21710,"Directional":true}]},{"ID":17354,"SourceStructureID":81528,"TargetStructureID":5284,"Label":"81528-5284 via Conventional from 81529 -> 81527","Type":"Conventional","Directional":true,"Links":[{"SourceID":81529,"TargetID":81527,"Directional":true}]},{"ID":17355,"SourceStructureID":81532,"TargetStructureID":909,"Label":"81532-909 via Conventional from 81536 -> 53806","Type":"Conventional","Directional":true,"Links":[{"SourceID":81536,"TargetID":53806,"Directional":true}]},{"ID":17356,"SourceStructureID":81532,"TargetStructureID":5284,"Label":"81532-5284 via Conventional from 81535 -> 81531","Type":"Conventional","Directional":true,"Links":[{"SourceID":81535,"TargetID":81531,"Directional":true}]},{"ID":17357,"SourceStructureID":81533,"TargetStructureID":5284,"Label":"81533-5284 via Conventional from 81534 -> 81530","Type":"Conventional","Directional":true,"Links":[{"SourceID":81534,"TargetID":81530,"Directional":true}]},{"ID":17358,"SourceStructureID":81544,"TargetStructureID":16026,"Label":"81544-16026 via Conventional from 81546 -> 25483","Type":"Conventional","Directional":true,"Links":[{"SourceID":81546,"TargetID":25483,"Directional":true}]},{"ID":17359,"SourceStructureID":81544,"TargetStructureID":67045,"Label":"81544-67045 via Conventional from 81545 -> 81543","Type":"Conventional","Directional":true,"Links":[{"SourceID":81545,"TargetID":81543,"Directional":true}]},{"ID":17360,"SourceStructureID":81552,"TargetStructureID":67045,"Label":"81552-67045 via Conventional from 81553 -> 81551","Type":"Conventional","Directional":true,"Links":[{"SourceID":81553,"TargetID":81551,"Directional":true}]},{"ID":17361,"SourceStructureID":81555,"TargetStructureID":67045,"Label":"81555-67045 via Conventional from 81556 -> 81554","Type":"Conventional","Directional":true,"Links":[{"SourceID":81556,"TargetID":81554,"Directional":true}]},{"ID":17362,"SourceStructureID":81559,"TargetStructureID":5530,"Label":"81559-5530 via Conventional from 81560 -> 81561","Type":"Conventional","Directional":true,"Links":[{"SourceID":81560,"TargetID":81561,"Directional":true}]},{"ID":17363,"SourceStructureID":81566,"TargetStructureID":5530,"Label":"81566-5530 via Conventional from 81580 -> 54065","Type":"Conventional","Directional":true,"Links":[{"SourceID":81580,"TargetID":54065,"Directional":true}]},{"ID":17364,"SourceStructureID":81569,"TargetStructureID":5530,"Label":"81569-5530 via Conventional from 81570 -> 54070","Type":"Conventional","Directional":true,"Links":[{"SourceID":81570,"TargetID":54070,"Directional":true}]},{"ID":17365,"SourceStructureID":81584,"TargetStructureID":5530,"Label":"81584-5530 via Conventional from 81592 -> 54068","Type":"Conventional","Directional":true,"Links":[{"SourceID":81592,"TargetID":54068,"Directional":true}]},{"ID":17366,"SourceStructureID":81605,"TargetStructureID":81607,"Label":"81605-81607 via Ribbon Synapse from 81606 -> 81608","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81606,"TargetID":81608,"Directional":true}]},{"ID":17367,"SourceStructureID":81612,"TargetStructureID":5530,"Label":"81612-5530 via Conventional from 81613 -> 81614","Type":"Conventional","Directional":true,"Links":[{"SourceID":81613,"TargetID":81614,"Directional":true}]},{"ID":17368,"SourceStructureID":81615,"TargetStructureID":5530,"Label":"81615-5530 via Conventional from 81616 -> 81617","Type":"Conventional","Directional":true,"Links":[{"SourceID":81616,"TargetID":81617,"Directional":true}]},{"ID":17369,"SourceStructureID":81615,"TargetStructureID":133891,"Label":"81615-133891 via Conventional from 133901 -> 133900","Type":"Conventional","Directional":true,"Links":[{"SourceID":133901,"TargetID":133900,"Directional":true}]},{"ID":17370,"SourceStructureID":81622,"TargetStructureID":5530,"Label":"81622-5530 via Conventional from 81623 -> 81624","Type":"Conventional","Directional":true,"Links":[{"SourceID":81623,"TargetID":81624,"Directional":true}]},{"ID":17371,"SourceStructureID":81629,"TargetStructureID":5530,"Label":"81629-5530 via Conventional from 81630 -> 81631","Type":"Conventional","Directional":true,"Links":[{"SourceID":81630,"TargetID":81631,"Directional":true}]},{"ID":17372,"SourceStructureID":81633,"TargetStructureID":5530,"Label":"81633-5530 via Conventional from 81634 -> 81635","Type":"Conventional","Directional":true,"Links":[{"SourceID":81634,"TargetID":81635,"Directional":true}]},{"ID":17373,"SourceStructureID":81637,"TargetStructureID":5530,"Label":"81637-5530 via Conventional from 81638 -> 81639","Type":"Conventional","Directional":true,"Links":[{"SourceID":81638,"TargetID":81639,"Directional":true}]},{"ID":17374,"SourceStructureID":81640,"TargetStructureID":5530,"Label":"81640-5530 via Conventional from 81641 -> 52533","Type":"Conventional","Directional":true,"Links":[{"SourceID":81641,"TargetID":52533,"Directional":true}]},{"ID":17375,"SourceStructureID":81649,"TargetStructureID":5530,"Label":"81649-5530 via Conventional from 81654 -> 81655","Type":"Conventional","Directional":true,"Links":[{"SourceID":81654,"TargetID":81655,"Directional":true}]},{"ID":17376,"SourceStructureID":81651,"TargetStructureID":61960,"Label":"81651-61960 via Conventional from 81652 -> 81653","Type":"Conventional","Directional":true,"Links":[{"SourceID":81652,"TargetID":81653,"Directional":true}]},{"ID":17377,"SourceStructureID":81661,"TargetStructureID":5530,"Label":"81661-5530 via Conventional from 81668 -> 81669","Type":"Conventional","Directional":true,"Links":[{"SourceID":81668,"TargetID":81669,"Directional":true}]},{"ID":17378,"SourceStructureID":81667,"TargetStructureID":5649,"Label":"81667-5649 via Conventional from 81694 -> 81696, 81719 -> 81729, 108138 -> 108139","Type":"Conventional","Directional":true,"Links":[{"SourceID":81694,"TargetID":81696,"Directional":true},{"SourceID":81719,"TargetID":81729,"Directional":true},{"SourceID":108138,"TargetID":108139,"Directional":true}]},{"ID":17379,"SourceStructureID":81667,"TargetStructureID":81740,"Label":"81667-81740 via Conventional from 81739 -> 81741","Type":"Conventional","Directional":true,"Links":[{"SourceID":81739,"TargetID":81741,"Directional":true}]},{"ID":17380,"SourceStructureID":81667,"TargetStructureID":81753,"Label":"81667-81753 via Conventional from 81779 -> 81781","Type":"Conventional","Directional":true,"Links":[{"SourceID":81779,"TargetID":81781,"Directional":true}]},{"ID":17381,"SourceStructureID":81667,"TargetStructureID":104680,"Label":"81667-104680 via Conventional from 104686 -> 104685","Type":"Conventional","Directional":true,"Links":[{"SourceID":104686,"TargetID":104685,"Directional":true}]},{"ID":17382,"SourceStructureID":81674,"TargetStructureID":400,"Label":"81674-400 via Conventional from 81675 -> 81676","Type":"Conventional","Directional":true,"Links":[{"SourceID":81675,"TargetID":81676,"Directional":true}]},{"ID":17383,"SourceStructureID":81685,"TargetStructureID":61960,"Label":"81685-61960 via Conventional from 81686 -> 81687","Type":"Conventional","Directional":true,"Links":[{"SourceID":81686,"TargetID":81687,"Directional":true}]},{"ID":17384,"SourceStructureID":81690,"TargetStructureID":81667,"Label":"81690-81667 via Conventional from 81693 -> 81689","Type":"Conventional","Directional":true,"Links":[{"SourceID":81693,"TargetID":81689,"Directional":true}]},{"ID":17385,"SourceStructureID":81691,"TargetStructureID":81667,"Label":"81691-81667 via Conventional from 81692 -> 81688","Type":"Conventional","Directional":true,"Links":[{"SourceID":81692,"TargetID":81688,"Directional":true}]},{"ID":17386,"SourceStructureID":81701,"TargetStructureID":81667,"Label":"81701-81667 via Conventional from 81702 -> 81700","Type":"Conventional","Directional":true,"Links":[{"SourceID":81702,"TargetID":81700,"Directional":true}]},{"ID":17387,"SourceStructureID":81704,"TargetStructureID":81667,"Label":"81704-81667 via Conventional from 81705 -> 81703","Type":"Conventional","Directional":true,"Links":[{"SourceID":81705,"TargetID":81703,"Directional":true}]},{"ID":17388,"SourceStructureID":81708,"TargetStructureID":81667,"Label":"81708-81667 via Conventional from 81709 -> 81707","Type":"Conventional","Directional":true,"Links":[{"SourceID":81709,"TargetID":81707,"Directional":true}]},{"ID":17389,"SourceStructureID":81731,"TargetStructureID":81667,"Label":"81731-81667 via Conventional from 81732 -> 81730","Type":"Conventional","Directional":true,"Links":[{"SourceID":81732,"TargetID":81730,"Directional":true}]},{"ID":17390,"SourceStructureID":81735,"TargetStructureID":81667,"Label":"81735-81667 via Conventional from 81736 -> 81733","Type":"Conventional","Directional":true,"Links":[{"SourceID":81736,"TargetID":81733,"Directional":true}]},{"ID":17391,"SourceStructureID":81737,"TargetStructureID":81667,"Label":"81737-81667 via Conventional from 81738 -> 81734","Type":"Conventional","Directional":true,"Links":[{"SourceID":81738,"TargetID":81734,"Directional":true}]},{"ID":17392,"SourceStructureID":81743,"TargetStructureID":81667,"Label":"81743-81667 via Conventional from 81744 -> 81742","Type":"Conventional","Directional":true,"Links":[{"SourceID":81744,"TargetID":81742,"Directional":true}]},{"ID":17393,"SourceStructureID":81753,"TargetStructureID":81667,"Label":"81753-81667 via Ribbon Synapse from 81754 -> 81755","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81754,"TargetID":81755,"Directional":true}]},{"ID":17394,"SourceStructureID":81758,"TargetStructureID":81667,"Label":"81758-81667 via Ribbon Synapse from 81759 -> 81757","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":81759,"TargetID":81757,"Directional":true}]},{"ID":17395,"SourceStructureID":81763,"TargetStructureID":81667,"Label":"81763-81667 via Conventional from 81764 -> 81762","Type":"Conventional","Directional":true,"Links":[{"SourceID":81764,"TargetID":81762,"Directional":true}]},{"ID":17396,"SourceStructureID":81768,"TargetStructureID":81667,"Label":"81768-81667 via Conventional from 81769 -> 81767","Type":"Conventional","Directional":true,"Links":[{"SourceID":81769,"TargetID":81767,"Directional":true}]},{"ID":17397,"SourceStructureID":81783,"TargetStructureID":81667,"Label":"81783-81667 via Conventional from 81784 -> 81785","Type":"Conventional","Directional":true,"Links":[{"SourceID":81784,"TargetID":81785,"Directional":true}]},{"ID":17398,"SourceStructureID":81788,"TargetStructureID":81667,"Label":"81788-81667 via Conventional from 81789 -> 81787","Type":"Conventional","Directional":true,"Links":[{"SourceID":81789,"TargetID":81787,"Directional":true}]},{"ID":17399,"SourceStructureID":81799,"TargetStructureID":5562,"Label":"81799-5562 via Conventional from 81816 -> 77218, 81837 -> 63066, 81842 -> 31063","Type":"Conventional","Directional":true,"Links":[{"SourceID":81816,"TargetID":77218,"Directional":true},{"SourceID":81837,"TargetID":63066,"Directional":true},{"SourceID":81842,"TargetID":31063,"Directional":true}]},{"ID":17400,"SourceStructureID":81799,"TargetStructureID":81801,"Label":"81799-81801 via Conventional from 81800 -> 81802","Type":"Conventional","Directional":true,"Links":[{"SourceID":81800,"TargetID":81802,"Directional":true}]},{"ID":17401,"SourceStructureID":81799,"TargetStructureID":81820,"Label":"81799-81820 via Conventional from 81818 -> 81821","Type":"Conventional","Directional":true,"Links":[{"SourceID":81818,"TargetID":81821,"Directional":true}]},{"ID":17402,"SourceStructureID":81799,"TargetStructureID":81822,"Label":"81799-81822 via Conventional from 81819 -> 81823","Type":"Conventional","Directional":true,"Links":[{"SourceID":81819,"TargetID":81823,"Directional":true}]},{"ID":17403,"SourceStructureID":81804,"TargetStructureID":81799,"Label":"81804-81799 via Conventional from 81805 -> 81803","Type":"Conventional","Directional":true,"Links":[{"SourceID":81805,"TargetID":81803,"Directional":true}]},{"ID":17404,"SourceStructureID":81825,"TargetStructureID":81799,"Label":"81825-81799 via Conventional from 81826 -> 81824","Type":"Conventional","Directional":true,"Links":[{"SourceID":81826,"TargetID":81824,"Directional":true}]},{"ID":17405,"SourceStructureID":81831,"TargetStructureID":81799,"Label":"81831-81799 via Conventional from 81833 -> 81829","Type":"Conventional","Directional":true,"Links":[{"SourceID":81833,"TargetID":81829,"Directional":true}]},{"ID":17406,"SourceStructureID":81834,"TargetStructureID":81799,"Label":"81834-81799 via Conventional from 81836 -> 81835","Type":"Conventional","Directional":true,"Links":[{"SourceID":81836,"TargetID":81835,"Directional":true}]},{"ID":17407,"SourceStructureID":81839,"TargetStructureID":81799,"Label":"81839-81799 via Conventional from 81840 -> 81838","Type":"Conventional","Directional":true,"Links":[{"SourceID":81840,"TargetID":81838,"Directional":true}]},{"ID":17408,"SourceStructureID":81872,"TargetStructureID":5530,"Label":"81872-5530 via Conventional from 81873 -> 81874","Type":"Conventional","Directional":true,"Links":[{"SourceID":81873,"TargetID":81874,"Directional":true}]},{"ID":17409,"SourceStructureID":81882,"TargetStructureID":66401,"Label":"81882-66401 via Conventional from 81883 -> 81881","Type":"Conventional","Directional":true,"Links":[{"SourceID":81883,"TargetID":81881,"Directional":true}]},{"ID":17410,"SourceStructureID":81887,"TargetStructureID":5530,"Label":"81887-5530 via Conventional from 81888 -> 54072","Type":"Conventional","Directional":true,"Links":[{"SourceID":81888,"TargetID":54072,"Directional":true}]},{"ID":17411,"SourceStructureID":81916,"TargetStructureID":168,"Label":"81916-168 via Conventional from 81963 -> 81962","Type":"Conventional","Directional":true,"Links":[{"SourceID":81963,"TargetID":81962,"Directional":true}]},{"ID":17412,"SourceStructureID":81951,"TargetStructureID":168,"Label":"81951-168 via Conventional from 81954 -> 81955","Type":"Conventional","Directional":true,"Links":[{"SourceID":81954,"TargetID":81955,"Directional":true}]},{"ID":17413,"SourceStructureID":81974,"TargetStructureID":81975,"Label":"81974-81975 via Conventional from 81976 -> 81977","Type":"Conventional","Directional":true,"Links":[{"SourceID":81976,"TargetID":81977,"Directional":true}]},{"ID":17414,"SourceStructureID":81985,"TargetStructureID":61868,"Label":"81985-61868 via Conventional from 81986 -> 81987","Type":"Conventional","Directional":true,"Links":[{"SourceID":81986,"TargetID":81987,"Directional":true}]},{"ID":17415,"SourceStructureID":81996,"TargetStructureID":168,"Label":"81996-168 via Conventional from 81997 -> 4284","Type":"Conventional","Directional":true,"Links":[{"SourceID":81997,"TargetID":4284,"Directional":true}]},{"ID":17416,"SourceStructureID":82006,"TargetStructureID":168,"Label":"82006-168 via Conventional from 82007 -> 82008","Type":"Conventional","Directional":true,"Links":[{"SourceID":82007,"TargetID":82008,"Directional":true}]},{"ID":17417,"SourceStructureID":82021,"TargetStructureID":168,"Label":"82021-168 via Conventional from 82022 -> 33419","Type":"Conventional","Directional":true,"Links":[{"SourceID":82022,"TargetID":33419,"Directional":true}]},{"ID":17418,"SourceStructureID":82025,"TargetStructureID":168,"Label":"82025-168 via Conventional from 82026 -> 4238","Type":"Conventional","Directional":true,"Links":[{"SourceID":82026,"TargetID":4238,"Directional":true}]},{"ID":17419,"SourceStructureID":82029,"TargetStructureID":168,"Label":"82029-168 via Conventional from 82030 -> 82033, 82031 -> 82032","Type":"Conventional","Directional":true,"Links":[{"SourceID":82030,"TargetID":82033,"Directional":true},{"SourceID":82031,"TargetID":82032,"Directional":true}]},{"ID":17420,"SourceStructureID":82034,"TargetStructureID":168,"Label":"82034-168 via Conventional from 82035 -> 4232, 112216 -> 4302","Type":"Conventional","Directional":true,"Links":[{"SourceID":82035,"TargetID":4232,"Directional":true},{"SourceID":112216,"TargetID":4302,"Directional":true}]},{"ID":17421,"SourceStructureID":82034,"TargetStructureID":112211,"Label":"82034-112211 via Conventional from 112214 -> 112215","Type":"Conventional","Directional":true,"Links":[{"SourceID":112214,"TargetID":112215,"Directional":true}]},{"ID":17422,"SourceStructureID":82050,"TargetStructureID":5530,"Label":"82050-5530 via Conventional from 82051 -> 82052","Type":"Conventional","Directional":true,"Links":[{"SourceID":82051,"TargetID":82052,"Directional":true}]},{"ID":17423,"SourceStructureID":82057,"TargetStructureID":5530,"Label":"82057-5530 via Conventional from 82058 -> 54061","Type":"Conventional","Directional":true,"Links":[{"SourceID":82058,"TargetID":54061,"Directional":true}]},{"ID":17424,"SourceStructureID":82067,"TargetStructureID":5530,"Label":"82067-5530 via Conventional from 82068 -> 82069","Type":"Conventional","Directional":true,"Links":[{"SourceID":82068,"TargetID":82069,"Directional":true}]},{"ID":17425,"SourceStructureID":82077,"TargetStructureID":5530,"Label":"82077-5530 via Conventional from 82078 -> 82079","Type":"Conventional","Directional":true,"Links":[{"SourceID":82078,"TargetID":82079,"Directional":true}]},{"ID":17426,"SourceStructureID":82097,"TargetStructureID":82098,"Label":"82097-82098 via Conventional from 82099 -> 82100","Type":"Conventional","Directional":true,"Links":[{"SourceID":82099,"TargetID":82100,"Directional":true}]},{"ID":17427,"SourceStructureID":82130,"TargetStructureID":5410,"Label":"82130-5410 via Conventional from 82131 -> 82129","Type":"Conventional","Directional":true,"Links":[{"SourceID":82131,"TargetID":82129,"Directional":true}]},{"ID":17428,"SourceStructureID":82143,"TargetStructureID":82149,"Label":"82143-82149 via Conventional from 82148 -> 82150","Type":"Conventional","Directional":true,"Links":[{"SourceID":82148,"TargetID":82150,"Directional":true}]},{"ID":17429,"SourceStructureID":82164,"TargetStructureID":5410,"Label":"82164-5410 via Conventional from 82165 -> 82163","Type":"Conventional","Directional":true,"Links":[{"SourceID":82165,"TargetID":82163,"Directional":true}]},{"ID":17430,"SourceStructureID":82172,"TargetStructureID":82177,"Label":"82172-82177 via Conventional from 82175 -> 82179","Type":"Conventional","Directional":true,"Links":[{"SourceID":82175,"TargetID":82179,"Directional":true}]},{"ID":17431,"SourceStructureID":82172,"TargetStructureID":82181,"Label":"82172-82181 via Conventional from 82173 -> 82182","Type":"Conventional","Directional":true,"Links":[{"SourceID":82173,"TargetID":82182,"Directional":true}]},{"ID":17432,"SourceStructureID":82252,"TargetStructureID":6047,"Label":"82252-6047 via Conventional from 82253 -> 19627","Type":"Conventional","Directional":true,"Links":[{"SourceID":82253,"TargetID":19627,"Directional":true}]},{"ID":17433,"SourceStructureID":82271,"TargetStructureID":593,"Label":"82271-593 via Conventional from 82279 -> 68066","Type":"Conventional","Directional":true,"Links":[{"SourceID":82279,"TargetID":68066,"Directional":true}]},{"ID":17434,"SourceStructureID":82271,"TargetStructureID":8588,"Label":"82271-8588 via Conventional from 82274 -> 82275","Type":"Conventional","Directional":true,"Links":[{"SourceID":82274,"TargetID":82275,"Directional":true}]},{"ID":17435,"SourceStructureID":82271,"TargetStructureID":68393,"Label":"82271-68393 via Conventional from 82273 -> 82220","Type":"Conventional","Directional":true,"Links":[{"SourceID":82273,"TargetID":82220,"Directional":true}]},{"ID":17436,"SourceStructureID":82271,"TargetStructureID":80563,"Label":"82271-80563 via Conventional from 82272 -> 80565","Type":"Conventional","Directional":true,"Links":[{"SourceID":82272,"TargetID":80565,"Directional":true}]},{"ID":17437,"SourceStructureID":82289,"TargetStructureID":68238,"Label":"82289-68238 via Conventional from 82290 -> 82288","Type":"Conventional","Directional":true,"Links":[{"SourceID":82290,"TargetID":82288,"Directional":true}]},{"ID":17438,"SourceStructureID":82305,"TargetStructureID":16026,"Label":"82305-16026 via Conventional from 82328 -> 25663, 82332 -> 25492","Type":"Conventional","Directional":true,"Links":[{"SourceID":82328,"TargetID":25663,"Directional":true},{"SourceID":82332,"TargetID":25492,"Directional":true}]},{"ID":17439,"SourceStructureID":82305,"TargetStructureID":31161,"Label":"82305-31161 via Conventional from 82309 -> 31248","Type":"Conventional","Directional":true,"Links":[{"SourceID":82309,"TargetID":31248,"Directional":true}]},{"ID":17440,"SourceStructureID":82305,"TargetStructureID":66888,"Label":"82305-66888 via Conventional from 82320 -> 68221","Type":"Conventional","Directional":true,"Links":[{"SourceID":82320,"TargetID":68221,"Directional":true}]},{"ID":17441,"SourceStructureID":82305,"TargetStructureID":82318,"Label":"82305-82318 via Conventional from 82317 -> 82319","Type":"Conventional","Directional":true,"Links":[{"SourceID":82317,"TargetID":82319,"Directional":true}]},{"ID":17442,"SourceStructureID":82307,"TargetStructureID":82305,"Label":"82307-82305 via Conventional from 82308 -> 82306","Type":"Conventional","Directional":true,"Links":[{"SourceID":82308,"TargetID":82306,"Directional":true}]},{"ID":17443,"SourceStructureID":82343,"TargetStructureID":593,"Label":"82343-593 via Conventional from 82344 -> 82345","Type":"Conventional","Directional":true,"Links":[{"SourceID":82344,"TargetID":82345,"Directional":true}]},{"ID":17444,"SourceStructureID":82353,"TargetStructureID":390,"Label":"82353-390 via Ribbon Synapse from 121983 -> 121984","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121983,"TargetID":121984,"Directional":true}]},{"ID":17445,"SourceStructureID":82396,"TargetStructureID":65375,"Label":"82396-65375 via Conventional from 82397 -> 82398","Type":"Conventional","Directional":true,"Links":[{"SourceID":82397,"TargetID":82398,"Directional":true}]},{"ID":17446,"SourceStructureID":82430,"TargetStructureID":67182,"Label":"82430-67182 via Ribbon Synapse from 82865 -> 82866","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82865,"TargetID":82866,"Directional":true}]},{"ID":17447,"SourceStructureID":82430,"TargetStructureID":67529,"Label":"82430-67529 via Ribbon Synapse from 82865 -> 82867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82865,"TargetID":82867,"Directional":true}]},{"ID":17448,"SourceStructureID":82430,"TargetStructureID":82868,"Label":"82430-82868 via Ribbon Synapse from 82865 -> 82869","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82865,"TargetID":82869,"Directional":true}]},{"ID":17449,"SourceStructureID":82569,"TargetStructureID":5531,"Label":"82569-5531 via Conventional from 105217 -> 105218","Type":"Conventional","Directional":true,"Links":[{"SourceID":105217,"TargetID":105218,"Directional":true}]},{"ID":17450,"SourceStructureID":82622,"TargetStructureID":6115,"Label":"82622-6115 via Conventional from 82623 -> 82624","Type":"Conventional","Directional":true,"Links":[{"SourceID":82623,"TargetID":82624,"Directional":true}]},{"ID":17451,"SourceStructureID":82634,"TargetStructureID":5528,"Label":"82634-5528 via Conventional from 94399 -> 94400","Type":"Conventional","Directional":true,"Links":[{"SourceID":94399,"TargetID":94400,"Directional":true}]},{"ID":17452,"SourceStructureID":82643,"TargetStructureID":5528,"Label":"82643-5528 via Conventional from 94405 -> 94406","Type":"Conventional","Directional":true,"Links":[{"SourceID":94405,"TargetID":94406,"Directional":true}]},{"ID":17453,"SourceStructureID":82644,"TargetStructureID":16087,"Label":"82644-16087 via Conventional from 82649 -> 82650","Type":"Conventional","Directional":true,"Links":[{"SourceID":82649,"TargetID":82650,"Directional":true}]},{"ID":17454,"SourceStructureID":82653,"TargetStructureID":6115,"Label":"82653-6115 via Conventional from 82654 -> 82655","Type":"Conventional","Directional":true,"Links":[{"SourceID":82654,"TargetID":82655,"Directional":true}]},{"ID":17455,"SourceStructureID":82665,"TargetStructureID":6115,"Label":"82665-6115 via Conventional from 82666 -> 82663","Type":"Conventional","Directional":true,"Links":[{"SourceID":82666,"TargetID":82663,"Directional":true}]},{"ID":17456,"SourceStructureID":82677,"TargetStructureID":83635,"Label":"82677-83635 via Ribbon Synapse from 83634 -> 83658","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83634,"TargetID":83658,"Directional":true}]},{"ID":17457,"SourceStructureID":82677,"TargetStructureID":83638,"Label":"82677-83638 via Ribbon Synapse from 83642 -> 83641","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83642,"TargetID":83641,"Directional":true}]},{"ID":17458,"SourceStructureID":82677,"TargetStructureID":83659,"Label":"82677-83659 via Ribbon Synapse from 83634 -> 83660","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83634,"TargetID":83660,"Directional":true}]},{"ID":17459,"SourceStructureID":82677,"TargetStructureID":83668,"Label":"82677-83668 via BC Conventional Synapse from 83671 -> 83669","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":83671,"TargetID":83669,"Directional":true}]},{"ID":17460,"SourceStructureID":82677,"TargetStructureID":83691,"Label":"82677-83691 via Ribbon Synapse from 83677 -> 83692","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83677,"TargetID":83692,"Directional":true}]},{"ID":17461,"SourceStructureID":82677,"TargetStructureID":83712,"Label":"82677-83712 via Ribbon Synapse from 83701 -> 83713","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83701,"TargetID":83713,"Directional":true}]},{"ID":17462,"SourceStructureID":82677,"TargetStructureID":83725,"Label":"82677-83725 via Ribbon Synapse from 83724 -> 83726","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83724,"TargetID":83726,"Directional":true}]},{"ID":17463,"SourceStructureID":82677,"TargetStructureID":83733,"Label":"82677-83733 via Ribbon Synapse from 83732 -> 83737","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83732,"TargetID":83737,"Directional":true}]},{"ID":17464,"SourceStructureID":82677,"TargetStructureID":83735,"Label":"82677-83735 via Ribbon Synapse from 83732 -> 83738","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83732,"TargetID":83738,"Directional":true}]},{"ID":17465,"SourceStructureID":82677,"TargetStructureID":83739,"Label":"82677-83739 via Ribbon Synapse from 83732 -> 83740","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83732,"TargetID":83740,"Directional":true}]},{"ID":17466,"SourceStructureID":82677,"TargetStructureID":83746,"Label":"82677-83746 via Ribbon Synapse from 83745 -> 83751","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83745,"TargetID":83751,"Directional":true}]},{"ID":17467,"SourceStructureID":82677,"TargetStructureID":83747,"Label":"82677-83747 via Ribbon Synapse from 83745 -> 83750","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83745,"TargetID":83750,"Directional":true}]},{"ID":17468,"SourceStructureID":82677,"TargetStructureID":83767,"Label":"82677-83767 via Ribbon Synapse from 83766 -> 83770","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83766,"TargetID":83770,"Directional":true}]},{"ID":17469,"SourceStructureID":82677,"TargetStructureID":83793,"Label":"82677-83793 via Ribbon Synapse from 83792 -> 83796","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83792,"TargetID":83796,"Directional":true}]},{"ID":17470,"SourceStructureID":82677,"TargetStructureID":83798,"Label":"82677-83798 via Ribbon Synapse from 83792 -> 83799","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83792,"TargetID":83799,"Directional":true}]},{"ID":17471,"SourceStructureID":82677,"TargetStructureID":83808,"Label":"82677-83808 via Cistern Pre from 83813 -> 83814","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":83813,"TargetID":83814,"Directional":true}]},{"ID":17472,"SourceStructureID":82677,"TargetStructureID":83819,"Label":"82677-83819 via Ribbon Synapse from 83818 -> 83822","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83818,"TargetID":83822,"Directional":true}]},{"ID":17473,"SourceStructureID":82677,"TargetStructureID":83820,"Label":"82677-83820 via Ribbon Synapse from 83818 -> 83821","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83818,"TargetID":83821,"Directional":true}]},{"ID":17474,"SourceStructureID":82677,"TargetStructureID":83828,"Label":"82677-83828 via Ribbon Synapse from 83826 -> 83830","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83826,"TargetID":83830,"Directional":true}]},{"ID":17475,"SourceStructureID":82677,"TargetStructureID":83846,"Label":"82677-83846 via Ribbon Synapse from 83841 -> 83851","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83841,"TargetID":83851,"Directional":true}]},{"ID":17476,"SourceStructureID":82677,"TargetStructureID":83852,"Label":"82677-83852 via Ribbon Synapse from 83841 -> 83853","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83841,"TargetID":83853,"Directional":true}]},{"ID":17477,"SourceStructureID":82677,"TargetStructureID":83857,"Label":"82677-83857 via Ribbon Synapse from 83856 -> 83858","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83856,"TargetID":83858,"Directional":true}]},{"ID":17478,"SourceStructureID":82677,"TargetStructureID":83865,"Label":"82677-83865 via Ribbon Synapse from 83868 -> 83867","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83868,"TargetID":83867,"Directional":true}]},{"ID":17479,"SourceStructureID":82677,"TargetStructureID":83866,"Label":"82677-83866 via BC Conventional Synapse from 83877 -> 83872","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":83877,"TargetID":83872,"Directional":true}]},{"ID":17480,"SourceStructureID":82677,"TargetStructureID":83870,"Label":"82677-83870 via Ribbon Synapse from 83864 -> 83871","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83864,"TargetID":83871,"Directional":true}]},{"ID":17481,"SourceStructureID":82677,"TargetStructureID":83873,"Label":"82677-83873 via Ribbon Synapse from 83864 -> 83874","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83864,"TargetID":83874,"Directional":true}]},{"ID":17482,"SourceStructureID":82677,"TargetStructureID":83882,"Label":"82677-83882 via Ribbon Synapse from 83885 -> 83888","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83885,"TargetID":83888,"Directional":true}]},{"ID":17483,"SourceStructureID":82677,"TargetStructureID":83988,"Label":"82677-83988 via BC Conventional Synapse from 83987 -> 83989","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":83987,"TargetID":83989,"Directional":true}]},{"ID":17484,"SourceStructureID":82677,"TargetStructureID":83992,"Label":"82677-83992 via Ribbon Synapse from 83991 -> 83994","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83991,"TargetID":83994,"Directional":true}]},{"ID":17485,"SourceStructureID":82677,"TargetStructureID":83995,"Label":"82677-83995 via Ribbon Synapse from 83991 -> 83998","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83991,"TargetID":83998,"Directional":true}]},{"ID":17486,"SourceStructureID":82677,"TargetStructureID":83996,"Label":"82677-83996 via Ribbon Synapse from 83990 -> 84007, 83991 -> 83997","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83990,"TargetID":84007,"Directional":true},{"SourceID":83991,"TargetID":83997,"Directional":true}]},{"ID":17487,"SourceStructureID":82677,"TargetStructureID":83999,"Label":"82677-83999 via Ribbon Synapse from 83990 -> 84005","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83990,"TargetID":84005,"Directional":true}]},{"ID":17488,"SourceStructureID":82677,"TargetStructureID":84004,"Label":"82677-84004 via Ribbon Synapse from 83990 -> 84006","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83990,"TargetID":84006,"Directional":true}]},{"ID":17489,"SourceStructureID":82677,"TargetStructureID":84008,"Label":"82677-84008 via Ribbon Synapse from 84014 -> 84011","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84014,"TargetID":84011,"Directional":true}]},{"ID":17490,"SourceStructureID":82677,"TargetStructureID":84012,"Label":"82677-84012 via Ribbon Synapse from 84014 -> 84013","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84014,"TargetID":84013,"Directional":true}]},{"ID":17491,"SourceStructureID":82677,"TargetStructureID":84024,"Label":"82677-84024 via Ribbon Synapse from 84015 -> 84025, 84015 -> 84026","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84015,"TargetID":84025,"Directional":true},{"SourceID":84015,"TargetID":84026,"Directional":true}]},{"ID":17492,"SourceStructureID":82677,"TargetStructureID":84052,"Label":"82677-84052 via BC Conventional Synapse from 84054 -> 84053","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84054,"TargetID":84053,"Directional":true}]},{"ID":17493,"SourceStructureID":82677,"TargetStructureID":84083,"Label":"82677-84083 via Ribbon Synapse from 84104 -> 84112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84104,"TargetID":84112,"Directional":true}]},{"ID":17494,"SourceStructureID":82677,"TargetStructureID":84088,"Label":"82677-84088 via Ribbon Synapse from 84056 -> 84092","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84056,"TargetID":84092,"Directional":true}]},{"ID":17495,"SourceStructureID":82677,"TargetStructureID":84095,"Label":"82677-84095 via BC Conventional Synapse from 84100 -> 84101","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":84100,"TargetID":84101,"Directional":true}]},{"ID":17496,"SourceStructureID":82677,"TargetStructureID":84108,"Label":"82677-84108 via Ribbon Synapse from 84104 -> 84109","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84104,"TargetID":84109,"Directional":true}]},{"ID":17497,"SourceStructureID":82677,"TargetStructureID":84110,"Label":"82677-84110 via Ribbon Synapse from 84104 -> 84111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84104,"TargetID":84111,"Directional":true}]},{"ID":17498,"SourceStructureID":82677,"TargetStructureID":84125,"Label":"82677-84125 via Ribbon Synapse from 84124 -> 84126","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84124,"TargetID":84126,"Directional":true}]},{"ID":17499,"SourceStructureID":82678,"TargetStructureID":6115,"Label":"82678-6115 via Conventional from 82679 -> 82681","Type":"Conventional","Directional":true,"Links":[{"SourceID":82679,"TargetID":82681,"Directional":true}]},{"ID":17500,"SourceStructureID":82692,"TargetStructureID":5530,"Label":"82692-5530 via Conventional from 134549 -> 134550","Type":"Conventional","Directional":true,"Links":[{"SourceID":134549,"TargetID":134550,"Directional":true}]},{"ID":17501,"SourceStructureID":82692,"TargetStructureID":82677,"Label":"82692-82677 via Conventional from 83694 -> 83693","Type":"Conventional","Directional":true,"Links":[{"SourceID":83694,"TargetID":83693,"Directional":true}]},{"ID":17502,"SourceStructureID":82717,"TargetStructureID":67460,"Label":"82717-67460 via Conventional from 82718 -> 82716","Type":"Conventional","Directional":true,"Links":[{"SourceID":82718,"TargetID":82716,"Directional":true}]},{"ID":17503,"SourceStructureID":82723,"TargetStructureID":67460,"Label":"82723-67460 via Conventional from 82725 -> 82726","Type":"Conventional","Directional":true,"Links":[{"SourceID":82725,"TargetID":82726,"Directional":true}]},{"ID":17504,"SourceStructureID":82737,"TargetStructureID":66828,"Label":"82737-66828 via Conventional from 82738 -> 82739","Type":"Conventional","Directional":true,"Links":[{"SourceID":82738,"TargetID":82739,"Directional":true}]},{"ID":17505,"SourceStructureID":82743,"TargetStructureID":82753,"Label":"82743-82753 via Conventional from 82759 -> 82760","Type":"Conventional","Directional":true,"Links":[{"SourceID":82759,"TargetID":82760,"Directional":true}]},{"ID":17506,"SourceStructureID":82743,"TargetStructureID":82761,"Label":"82743-82761 via Conventional from 82762 -> 82763","Type":"Conventional","Directional":true,"Links":[{"SourceID":82762,"TargetID":82763,"Directional":true}]},{"ID":17507,"SourceStructureID":82743,"TargetStructureID":82766,"Label":"82743-82766 via Conventional from 82767 -> 82768","Type":"Conventional","Directional":true,"Links":[{"SourceID":82767,"TargetID":82768,"Directional":true}]},{"ID":17508,"SourceStructureID":82743,"TargetStructureID":82796,"Label":"82743-82796 via Conventional from 82798 -> 82799","Type":"Conventional","Directional":true,"Links":[{"SourceID":82798,"TargetID":82799,"Directional":true}]},{"ID":17509,"SourceStructureID":82746,"TargetStructureID":82743,"Label":"82746-82743 via Conventional from 82747 -> 82748","Type":"Conventional","Directional":true,"Links":[{"SourceID":82747,"TargetID":82748,"Directional":true}]},{"ID":17510,"SourceStructureID":82753,"TargetStructureID":6050,"Label":"82753-6050 via Conventional from 127058 -> 19300","Type":"Conventional","Directional":true,"Links":[{"SourceID":127058,"TargetID":19300,"Directional":true}]},{"ID":17511,"SourceStructureID":82792,"TargetStructureID":82743,"Label":"82792-82743 via Conventional from 82793 -> 82794","Type":"Conventional","Directional":true,"Links":[{"SourceID":82793,"TargetID":82794,"Directional":true}]},{"ID":17512,"SourceStructureID":82804,"TargetStructureID":50449,"Label":"82804-50449 via Conventional from 82805 -> 50510","Type":"Conventional","Directional":true,"Links":[{"SourceID":82805,"TargetID":50510,"Directional":true}]},{"ID":17513,"SourceStructureID":82806,"TargetStructureID":67305,"Label":"82806-67305 via Conventional from 82808 -> 82809","Type":"Conventional","Directional":true,"Links":[{"SourceID":82808,"TargetID":82809,"Directional":true}]},{"ID":17514,"SourceStructureID":82813,"TargetStructureID":67305,"Label":"82813-67305 via Ribbon Synapse from 82815 -> 82816","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82815,"TargetID":82816,"Directional":true}]},{"ID":17515,"SourceStructureID":82813,"TargetStructureID":82817,"Label":"82813-82817 via Ribbon Synapse from 82815 -> 82818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82815,"TargetID":82818,"Directional":true}]},{"ID":17516,"SourceStructureID":82813,"TargetStructureID":82819,"Label":"82813-82819 via Ribbon Synapse from 82815 -> 82820","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":82815,"TargetID":82820,"Directional":true}]},{"ID":17517,"SourceStructureID":82877,"TargetStructureID":606,"Label":"82877-606 via Conventional from 92432 -> 53561","Type":"Conventional","Directional":true,"Links":[{"SourceID":92432,"TargetID":53561,"Directional":true}]},{"ID":17518,"SourceStructureID":82887,"TargetStructureID":5528,"Label":"82887-5528 via Conventional from 87134 -> 87135, 113997 -> 113996","Type":"Conventional","Directional":true,"Links":[{"SourceID":87134,"TargetID":87135,"Directional":true},{"SourceID":113997,"TargetID":113996,"Directional":true}]},{"ID":17519,"SourceStructureID":82897,"TargetStructureID":5528,"Label":"82897-5528 via Conventional from 94814 -> 94815","Type":"Conventional","Directional":true,"Links":[{"SourceID":94814,"TargetID":94815,"Directional":true}]},{"ID":17520,"SourceStructureID":82897,"TargetStructureID":5531,"Label":"82897-5531 via Conventional from 114828 -> 114829","Type":"Conventional","Directional":true,"Links":[{"SourceID":114828,"TargetID":114829,"Directional":true}]},{"ID":17521,"SourceStructureID":82907,"TargetStructureID":11042,"Label":"82907-11042 via Conventional from 82915 -> 82916","Type":"Conventional","Directional":true,"Links":[{"SourceID":82915,"TargetID":82916,"Directional":true}]},{"ID":17522,"SourceStructureID":82907,"TargetStructureID":82912,"Label":"82907-82912 via Conventional from 82913 -> 82914","Type":"Conventional","Directional":true,"Links":[{"SourceID":82913,"TargetID":82914,"Directional":true}]},{"ID":17523,"SourceStructureID":82908,"TargetStructureID":82907,"Label":"82908-82907 via Conventional from 82909 -> 82910","Type":"Conventional","Directional":true,"Links":[{"SourceID":82909,"TargetID":82910,"Directional":true}]},{"ID":17524,"SourceStructureID":82919,"TargetStructureID":67182,"Label":"82919-67182 via Conventional from 82920 -> 82918","Type":"Conventional","Directional":true,"Links":[{"SourceID":82920,"TargetID":82918,"Directional":true}]},{"ID":17525,"SourceStructureID":82922,"TargetStructureID":82919,"Label":"82922-82919 via Conventional from 82923 -> 82921","Type":"Conventional","Directional":true,"Links":[{"SourceID":82923,"TargetID":82921,"Directional":true}]},{"ID":17526,"SourceStructureID":82974,"TargetStructureID":72252,"Label":"82974-72252 via Conventional from 82975 -> 82989","Type":"Conventional","Directional":true,"Links":[{"SourceID":82975,"TargetID":82989,"Directional":true}]},{"ID":17527,"SourceStructureID":82977,"TargetStructureID":72252,"Label":"82977-72252 via Conventional from 82980 -> 82981","Type":"Conventional","Directional":true,"Links":[{"SourceID":82980,"TargetID":82981,"Directional":true}]},{"ID":17528,"SourceStructureID":82985,"TargetStructureID":39319,"Label":"82985-39319 via Conventional from 82987 -> 39685","Type":"Conventional","Directional":true,"Links":[{"SourceID":82987,"TargetID":39685,"Directional":true}]},{"ID":17529,"SourceStructureID":82985,"TargetStructureID":72252,"Label":"82985-72252 via Conventional from 82986 -> 82988","Type":"Conventional","Directional":true,"Links":[{"SourceID":82986,"TargetID":82988,"Directional":true}]},{"ID":17530,"SourceStructureID":83056,"TargetStructureID":608,"Label":"83056-608 via Conventional from 83312 -> 77007","Type":"Conventional","Directional":true,"Links":[{"SourceID":83312,"TargetID":77007,"Directional":true}]},{"ID":17531,"SourceStructureID":83056,"TargetStructureID":67150,"Label":"83056-67150 via Conventional from 83057 -> 83058","Type":"Conventional","Directional":true,"Links":[{"SourceID":83057,"TargetID":83058,"Directional":true}]},{"ID":17532,"SourceStructureID":83056,"TargetStructureID":83619,"Label":"83056-83619 via Conventional from 83621 -> 83622","Type":"Conventional","Directional":true,"Links":[{"SourceID":83621,"TargetID":83622,"Directional":true}]},{"ID":17533,"SourceStructureID":83060,"TargetStructureID":5485,"Label":"83060-5485 via Conventional from 83061 -> 9491","Type":"Conventional","Directional":true,"Links":[{"SourceID":83061,"TargetID":9491,"Directional":true}]},{"ID":17534,"SourceStructureID":83127,"TargetStructureID":6117,"Label":"83127-6117 via Conventional from 83128 -> 30866","Type":"Conventional","Directional":true,"Links":[{"SourceID":83128,"TargetID":30866,"Directional":true}]},{"ID":17535,"SourceStructureID":83147,"TargetStructureID":6117,"Label":"83147-6117 via Conventional from 83151 -> 83152","Type":"Conventional","Directional":true,"Links":[{"SourceID":83151,"TargetID":83152,"Directional":true}]},{"ID":17536,"SourceStructureID":83147,"TargetStructureID":70466,"Label":"83147-70466 via Conventional from 83148 -> 83149","Type":"Conventional","Directional":true,"Links":[{"SourceID":83148,"TargetID":83149,"Directional":true}]},{"ID":17537,"SourceStructureID":83157,"TargetStructureID":6117,"Label":"83157-6117 via Conventional from 83158 -> 83159","Type":"Conventional","Directional":true,"Links":[{"SourceID":83158,"TargetID":83159,"Directional":true}]},{"ID":17538,"SourceStructureID":83163,"TargetStructureID":83190,"Label":"83163-83190 via Conventional from 83189 -> 83191","Type":"Conventional","Directional":true,"Links":[{"SourceID":83189,"TargetID":83191,"Directional":true}]},{"ID":17539,"SourceStructureID":83165,"TargetStructureID":5279,"Label":"83165-5279 via Conventional from 96481 -> 6336","Type":"Conventional","Directional":true,"Links":[{"SourceID":96481,"TargetID":6336,"Directional":true}]},{"ID":17540,"SourceStructureID":83165,"TargetStructureID":83194,"Label":"83165-83194 via Conventional from 83193 -> 83195","Type":"Conventional","Directional":true,"Links":[{"SourceID":83193,"TargetID":83195,"Directional":true}]},{"ID":17541,"SourceStructureID":83179,"TargetStructureID":9769,"Label":"83179-9769 via Ribbon Synapse from 83180 -> 83181","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":83180,"TargetID":83181,"Directional":true}]},{"ID":17542,"SourceStructureID":83222,"TargetStructureID":6117,"Label":"83222-6117 via Conventional from 83223 -> 83224","Type":"Conventional","Directional":true,"Links":[{"SourceID":83223,"TargetID":83224,"Directional":true}]},{"ID":17543,"SourceStructureID":83238,"TargetStructureID":6117,"Label":"83238-6117 via Conventional from 83239 -> 83240","Type":"Conventional","Directional":true,"Links":[{"SourceID":83239,"TargetID":83240,"Directional":true}]},{"ID":17544,"SourceStructureID":83241,"TargetStructureID":6117,"Label":"83241-6117 via Conventional from 83242 -> 49181","Type":"Conventional","Directional":true,"Links":[{"SourceID":83242,"TargetID":49181,"Directional":true}]},{"ID":17545,"SourceStructureID":83243,"TargetStructureID":6117,"Label":"83243-6117 via Conventional from 83244 -> 30890","Type":"Conventional","Directional":true,"Links":[{"SourceID":83244,"TargetID":30890,"Directional":true}]},{"ID":17546,"SourceStructureID":83255,"TargetStructureID":6117,"Label":"83255-6117 via Conventional from 86381 -> 30903","Type":"Conventional","Directional":true,"Links":[{"SourceID":86381,"TargetID":30903,"Directional":true}]},{"ID":17547,"SourceStructureID":83257,"TargetStructureID":68480,"Label":"83257-68480 via Conventional from 83258 -> 83259","Type":"Conventional","Directional":true,"Links":[{"SourceID":83258,"TargetID":83259,"Directional":true}]},{"ID":17548,"SourceStructureID":83260,"TargetStructureID":68480,"Label":"83260-68480 via Conventional from 83261 -> 83262","Type":"Conventional","Directional":true,"Links":[{"SourceID":83261,"TargetID":83262,"Directional":true}]},{"ID":17549,"SourceStructureID":83266,"TargetStructureID":6117,"Label":"83266-6117 via Conventional from 83269 -> 70492","Type":"Conventional","Directional":true,"Links":[{"SourceID":83269,"TargetID":70492,"Directional":true}]},{"ID":17550,"SourceStructureID":83270,"TargetStructureID":5279,"Label":"83270-5279 via Conventional from 83274 -> 25798","Type":"Conventional","Directional":true,"Links":[{"SourceID":83274,"TargetID":25798,"Directional":true}]},{"ID":17551,"SourceStructureID":83288,"TargetStructureID":6117,"Label":"83288-6117 via Conventional from 83292 -> 30868","Type":"Conventional","Directional":true,"Links":[{"SourceID":83292,"TargetID":30868,"Directional":true}]},{"ID":17552,"SourceStructureID":83293,"TargetStructureID":6117,"Label":"83293-6117 via Conventional from 83297 -> 83298","Type":"Conventional","Directional":true,"Links":[{"SourceID":83297,"TargetID":83298,"Directional":true}]},{"ID":17553,"SourceStructureID":83302,"TargetStructureID":5279,"Label":"83302-5279 via Conventional from 83303 -> 35994","Type":"Conventional","Directional":true,"Links":[{"SourceID":83303,"TargetID":35994,"Directional":true}]},{"ID":17554,"SourceStructureID":83308,"TargetStructureID":5279,"Label":"83308-5279 via Conventional from 98546 -> 49207","Type":"Conventional","Directional":true,"Links":[{"SourceID":98546,"TargetID":49207,"Directional":true}]},{"ID":17555,"SourceStructureID":83308,"TargetStructureID":67182,"Label":"83308-67182 via Conventional from 83310 -> 83307","Type":"Conventional","Directional":true,"Links":[{"SourceID":83310,"TargetID":83307,"Directional":true}]},{"ID":17556,"SourceStructureID":83314,"TargetStructureID":67182,"Label":"83314-67182 via Conventional from 83315 -> 83316","Type":"Conventional","Directional":true,"Links":[{"SourceID":83315,"TargetID":83316,"Directional":true}]},{"ID":17557,"SourceStructureID":83321,"TargetStructureID":67182,"Label":"83321-67182 via Conventional from 83322 -> 83320","Type":"Conventional","Directional":true,"Links":[{"SourceID":83322,"TargetID":83320,"Directional":true}]},{"ID":17558,"SourceStructureID":83360,"TargetStructureID":83370,"Label":"83360-83370 via Conventional from 83366 -> 83371","Type":"Conventional","Directional":true,"Links":[{"SourceID":83366,"TargetID":83371,"Directional":true}]},{"ID":17559,"SourceStructureID":83368,"TargetStructureID":83360,"Label":"83368-83360 via Conventional from 83369 -> 83367","Type":"Conventional","Directional":true,"Links":[{"SourceID":83369,"TargetID":83367,"Directional":true}]},{"ID":17560,"SourceStructureID":83385,"TargetStructureID":324,"Label":"83385-324 via Conventional from 83433 -> 83434","Type":"Conventional","Directional":true,"Links":[{"SourceID":83433,"TargetID":83434,"Directional":true}]},{"ID":17561,"SourceStructureID":83386,"TargetStructureID":83406,"Label":"83386-83406 via Conventional from 83407 -> 83408","Type":"Conventional","Directional":true,"Links":[{"SourceID":83407,"TargetID":83408,"Directional":true}]},{"ID":17562,"SourceStructureID":83389,"TargetStructureID":83386,"Label":"83389-83386 via Conventional from 83391 -> 83393","Type":"Conventional","Directional":true,"Links":[{"SourceID":83391,"TargetID":83393,"Directional":true}]},{"ID":17563,"SourceStructureID":83389,"TargetStructureID":83390,"Label":"83389-83390 via Conventional from 83392 -> 83394","Type":"Conventional","Directional":true,"Links":[{"SourceID":83392,"TargetID":83394,"Directional":true}]},{"ID":17564,"SourceStructureID":83395,"TargetStructureID":83386,"Label":"83395-83386 via Conventional from 83396 -> 83397","Type":"Conventional","Directional":true,"Links":[{"SourceID":83396,"TargetID":83397,"Directional":true}]},{"ID":17565,"SourceStructureID":83409,"TargetStructureID":324,"Label":"83409-324 via Conventional from 83411 -> 83410","Type":"Conventional","Directional":true,"Links":[{"SourceID":83411,"TargetID":83410,"Directional":true}]},{"ID":17566,"SourceStructureID":83412,"TargetStructureID":324,"Label":"83412-324 via Conventional from 83414 -> 83413","Type":"Conventional","Directional":true,"Links":[{"SourceID":83414,"TargetID":83413,"Directional":true}]},{"ID":17567,"SourceStructureID":83415,"TargetStructureID":83386,"Label":"83415-83386 via Conventional from 83416 -> 83417","Type":"Conventional","Directional":true,"Links":[{"SourceID":83416,"TargetID":83417,"Directional":true}]},{"ID":17568,"SourceStructureID":83428,"TargetStructureID":324,"Label":"83428-324 via Conventional from 96949 -> 83427","Type":"Conventional","Directional":true,"Links":[{"SourceID":96949,"TargetID":83427,"Directional":true}]},{"ID":17569,"SourceStructureID":83430,"TargetStructureID":324,"Label":"83430-324 via Conventional from 96967 -> 96968","Type":"Conventional","Directional":true,"Links":[{"SourceID":96967,"TargetID":96968,"Directional":true}]},{"ID":17570,"SourceStructureID":83449,"TargetStructureID":83448,"Label":"83449-83448 via Conventional from 83450 -> 83451","Type":"Conventional","Directional":true,"Links":[{"SourceID":83450,"TargetID":83451,"Directional":true}]},{"ID":17571,"SourceStructureID":83454,"TargetStructureID":16087,"Label":"83454-16087 via Conventional from 83455 -> 83458","Type":"Conventional","Directional":true,"Links":[{"SourceID":83455,"TargetID":83458,"Directional":true}]},{"ID":17572,"SourceStructureID":83575,"TargetStructureID":324,"Label":"83575-324 via Conventional from 83576 -> 83577","Type":"Conventional","Directional":true,"Links":[{"SourceID":83576,"TargetID":83577,"Directional":true}]},{"ID":17573,"SourceStructureID":83580,"TargetStructureID":324,"Label":"83580-324 via Conventional from 83581 -> 83582","Type":"Conventional","Directional":true,"Links":[{"SourceID":83581,"TargetID":83582,"Directional":true}]},{"ID":17574,"SourceStructureID":83603,"TargetStructureID":66801,"Label":"83603-66801 via Conventional from 83604 -> 83602","Type":"Conventional","Directional":true,"Links":[{"SourceID":83604,"TargetID":83602,"Directional":true}]},{"ID":17575,"SourceStructureID":83625,"TargetStructureID":83056,"Label":"83625-83056 via Conventional from 83626 -> 83624","Type":"Conventional","Directional":true,"Links":[{"SourceID":83626,"TargetID":83624,"Directional":true}]},{"ID":17576,"SourceStructureID":83644,"TargetStructureID":82677,"Label":"83644-82677 via Conventional from 83645 -> 83643","Type":"Conventional","Directional":true,"Links":[{"SourceID":83645,"TargetID":83643,"Directional":true}]},{"ID":17577,"SourceStructureID":83648,"TargetStructureID":82677,"Label":"83648-82677 via Conventional from 83653 -> 83652","Type":"Conventional","Directional":true,"Links":[{"SourceID":83653,"TargetID":83652,"Directional":true}]},{"ID":17578,"SourceStructureID":83679,"TargetStructureID":82677,"Label":"83679-82677 via Conventional from 83680 -> 83678","Type":"Conventional","Directional":true,"Links":[{"SourceID":83680,"TargetID":83678,"Directional":true}]},{"ID":17579,"SourceStructureID":83697,"TargetStructureID":82677,"Label":"83697-82677 via Conventional from 83699 -> 83700","Type":"Conventional","Directional":true,"Links":[{"SourceID":83699,"TargetID":83700,"Directional":true}]},{"ID":17580,"SourceStructureID":83703,"TargetStructureID":82677,"Label":"83703-82677 via Conventional from 83704 -> 83702","Type":"Conventional","Directional":true,"Links":[{"SourceID":83704,"TargetID":83702,"Directional":true}]},{"ID":17581,"SourceStructureID":83706,"TargetStructureID":82677,"Label":"83706-82677 via Conventional from 83707 -> 83705","Type":"Conventional","Directional":true,"Links":[{"SourceID":83707,"TargetID":83705,"Directional":true}]},{"ID":17582,"SourceStructureID":83708,"TargetStructureID":82677,"Label":"83708-82677 via Conventional from 83709 -> 83710","Type":"Conventional","Directional":true,"Links":[{"SourceID":83709,"TargetID":83710,"Directional":true}]},{"ID":17583,"SourceStructureID":83714,"TargetStructureID":82677,"Label":"83714-82677 via Conventional from 83720 -> 83719","Type":"Conventional","Directional":true,"Links":[{"SourceID":83720,"TargetID":83719,"Directional":true}]},{"ID":17584,"SourceStructureID":83721,"TargetStructureID":74907,"Label":"83721-74907 via Conventional from 83730 -> 83731","Type":"Conventional","Directional":true,"Links":[{"SourceID":83730,"TargetID":83731,"Directional":true}]},{"ID":17585,"SourceStructureID":83733,"TargetStructureID":83735,"Label":"83733-83735 via Conventional from 83734 -> 83736","Type":"Conventional","Directional":true,"Links":[{"SourceID":83734,"TargetID":83736,"Directional":true}]},{"ID":17586,"SourceStructureID":83757,"TargetStructureID":74907,"Label":"83757-74907 via Conventional from 83863 -> 83862, 84609 -> 84610","Type":"Conventional","Directional":true,"Links":[{"SourceID":83863,"TargetID":83862,"Directional":true},{"SourceID":84609,"TargetID":84610,"Directional":true}]},{"ID":17587,"SourceStructureID":83761,"TargetStructureID":82677,"Label":"83761-82677 via Conventional from 83762 -> 83760","Type":"Conventional","Directional":true,"Links":[{"SourceID":83762,"TargetID":83760,"Directional":true}]},{"ID":17588,"SourceStructureID":83764,"TargetStructureID":82677,"Label":"83764-82677 via Conventional from 83765 -> 83763","Type":"Conventional","Directional":true,"Links":[{"SourceID":83765,"TargetID":83763,"Directional":true}]},{"ID":17589,"SourceStructureID":83767,"TargetStructureID":83772,"Label":"83767-83772 via Conventional from 83771 -> 83773","Type":"Conventional","Directional":true,"Links":[{"SourceID":83771,"TargetID":83773,"Directional":true}]},{"ID":17590,"SourceStructureID":83776,"TargetStructureID":82677,"Label":"83776-82677 via Conventional from 83778 -> 83777","Type":"Conventional","Directional":true,"Links":[{"SourceID":83778,"TargetID":83777,"Directional":true}]},{"ID":17591,"SourceStructureID":83785,"TargetStructureID":82677,"Label":"83785-82677 via Conventional from 83786 -> 83784","Type":"Conventional","Directional":true,"Links":[{"SourceID":83786,"TargetID":83784,"Directional":true}]},{"ID":17592,"SourceStructureID":83788,"TargetStructureID":6165,"Label":"83788-6165 via Conventional from 83789 -> 83787","Type":"Conventional","Directional":true,"Links":[{"SourceID":83789,"TargetID":83787,"Directional":true}]},{"ID":17593,"SourceStructureID":83807,"TargetStructureID":74907,"Label":"83807-74907 via Conventional from 83811 -> 83806","Type":"Conventional","Directional":true,"Links":[{"SourceID":83811,"TargetID":83806,"Directional":true}]},{"ID":17594,"SourceStructureID":83823,"TargetStructureID":82677,"Label":"83823-82677 via Conventional from 83824 -> 83825","Type":"Conventional","Directional":true,"Links":[{"SourceID":83824,"TargetID":83825,"Directional":true}]},{"ID":17595,"SourceStructureID":83831,"TargetStructureID":82677,"Label":"83831-82677 via Conventional from 83832 -> 83833","Type":"Conventional","Directional":true,"Links":[{"SourceID":83832,"TargetID":83833,"Directional":true}]},{"ID":17596,"SourceStructureID":83838,"TargetStructureID":82677,"Label":"83838-82677 via Conventional from 83839 -> 83837","Type":"Conventional","Directional":true,"Links":[{"SourceID":83839,"TargetID":83837,"Directional":true}]},{"ID":17597,"SourceStructureID":83838,"TargetStructureID":83852,"Label":"83838-83852 via Conventional from 83855 -> 83854","Type":"Conventional","Directional":true,"Links":[{"SourceID":83855,"TargetID":83854,"Directional":true}]},{"ID":17598,"SourceStructureID":83842,"TargetStructureID":82677,"Label":"83842-82677 via Conventional from 83843 -> 83844","Type":"Conventional","Directional":true,"Links":[{"SourceID":83843,"TargetID":83844,"Directional":true}]},{"ID":17599,"SourceStructureID":83846,"TargetStructureID":82677,"Label":"83846-82677 via Conventional from 83849 -> 83850","Type":"Conventional","Directional":true,"Links":[{"SourceID":83849,"TargetID":83850,"Directional":true}]},{"ID":17600,"SourceStructureID":83860,"TargetStructureID":82677,"Label":"83860-82677 via Conventional from 83861 -> 83859","Type":"Conventional","Directional":true,"Links":[{"SourceID":83861,"TargetID":83859,"Directional":true}]},{"ID":17601,"SourceStructureID":83882,"TargetStructureID":82677,"Label":"83882-82677 via Conventional from 83883 -> 83881","Type":"Conventional","Directional":true,"Links":[{"SourceID":83883,"TargetID":83881,"Directional":true}]},{"ID":17602,"SourceStructureID":83890,"TargetStructureID":82677,"Label":"83890-82677 via Conventional from 83904 -> 83889","Type":"Conventional","Directional":true,"Links":[{"SourceID":83904,"TargetID":83889,"Directional":true}]},{"ID":17603,"SourceStructureID":83892,"TargetStructureID":74907,"Label":"83892-74907 via Conventional from 83893 -> 83891","Type":"Conventional","Directional":true,"Links":[{"SourceID":83893,"TargetID":83891,"Directional":true}]},{"ID":17604,"SourceStructureID":83894,"TargetStructureID":74907,"Label":"83894-74907 via Conventional from 83895 -> 83896, 84445 -> 84446","Type":"Conventional","Directional":true,"Links":[{"SourceID":83895,"TargetID":83896,"Directional":true},{"SourceID":84445,"TargetID":84446,"Directional":true}]},{"ID":17605,"SourceStructureID":83898,"TargetStructureID":74907,"Label":"83898-74907 via Conventional from 83899 -> 83900","Type":"Conventional","Directional":true,"Links":[{"SourceID":83899,"TargetID":83900,"Directional":true}]},{"ID":17606,"SourceStructureID":83901,"TargetStructureID":74907,"Label":"83901-74907 via Conventional from 83902 -> 83903","Type":"Conventional","Directional":true,"Links":[{"SourceID":83902,"TargetID":83903,"Directional":true}]},{"ID":17607,"SourceStructureID":83907,"TargetStructureID":82677,"Label":"83907-82677 via Conventional from 83908 -> 83906","Type":"Conventional","Directional":true,"Links":[{"SourceID":83908,"TargetID":83906,"Directional":true}]},{"ID":17608,"SourceStructureID":83916,"TargetStructureID":5279,"Label":"83916-5279 via Conventional from 97064 -> 25986","Type":"Conventional","Directional":true,"Links":[{"SourceID":97064,"TargetID":25986,"Directional":true}]},{"ID":17609,"SourceStructureID":83916,"TargetStructureID":6117,"Label":"83916-6117 via Conventional from 83918 -> 83917","Type":"Conventional","Directional":true,"Links":[{"SourceID":83918,"TargetID":83917,"Directional":true}]},{"ID":17610,"SourceStructureID":83921,"TargetStructureID":83916,"Label":"83921-83916 via Conventional from 83923 -> 83924","Type":"Conventional","Directional":true,"Links":[{"SourceID":83923,"TargetID":83924,"Directional":true}]},{"ID":17611,"SourceStructureID":83925,"TargetStructureID":6117,"Label":"83925-6117 via Conventional from 83929 -> 83930","Type":"Conventional","Directional":true,"Links":[{"SourceID":83929,"TargetID":83930,"Directional":true}]},{"ID":17612,"SourceStructureID":83931,"TargetStructureID":6117,"Label":"83931-6117 via Conventional from 83932 -> 83933","Type":"Conventional","Directional":true,"Links":[{"SourceID":83932,"TargetID":83933,"Directional":true}]},{"ID":17613,"SourceStructureID":83941,"TargetStructureID":6117,"Label":"83941-6117 via Conventional from 83942 -> 83943","Type":"Conventional","Directional":true,"Links":[{"SourceID":83942,"TargetID":83943,"Directional":true}]},{"ID":17614,"SourceStructureID":83949,"TargetStructureID":20136,"Label":"83949-20136 via Conventional from 109035 -> 20144","Type":"Conventional","Directional":true,"Links":[{"SourceID":109035,"TargetID":20144,"Directional":true}]},{"ID":17615,"SourceStructureID":83954,"TargetStructureID":6117,"Label":"83954-6117 via Conventional from 83959 -> 83960","Type":"Conventional","Directional":true,"Links":[{"SourceID":83959,"TargetID":83960,"Directional":true}]},{"ID":17616,"SourceStructureID":83954,"TargetStructureID":20136,"Label":"83954-20136 via Conventional from 109111 -> 46007","Type":"Conventional","Directional":true,"Links":[{"SourceID":109111,"TargetID":46007,"Directional":true}]},{"ID":17617,"SourceStructureID":83965,"TargetStructureID":6117,"Label":"83965-6117 via Conventional from 83966 -> 83967","Type":"Conventional","Directional":true,"Links":[{"SourceID":83966,"TargetID":83967,"Directional":true}]},{"ID":17618,"SourceStructureID":83975,"TargetStructureID":6117,"Label":"83975-6117 via Conventional from 84179 -> 84180","Type":"Conventional","Directional":true,"Links":[{"SourceID":84179,"TargetID":84180,"Directional":true}]},{"ID":17619,"SourceStructureID":83978,"TargetStructureID":6117,"Label":"83978-6117 via Conventional from 83979 -> 83980","Type":"Conventional","Directional":true,"Links":[{"SourceID":83979,"TargetID":83980,"Directional":true}]},{"ID":17620,"SourceStructureID":83981,"TargetStructureID":6117,"Label":"83981-6117 via Conventional from 83982 -> 30872","Type":"Conventional","Directional":true,"Links":[{"SourceID":83982,"TargetID":30872,"Directional":true}]},{"ID":17621,"SourceStructureID":83985,"TargetStructureID":6117,"Label":"83985-6117 via Conventional from 84140 -> 84141","Type":"Conventional","Directional":true,"Links":[{"SourceID":84140,"TargetID":84141,"Directional":true}]},{"ID":17622,"SourceStructureID":83999,"TargetStructureID":84001,"Label":"83999-84001 via Conventional from 84000 -> 84002","Type":"Conventional","Directional":true,"Links":[{"SourceID":84000,"TargetID":84002,"Directional":true}]},{"ID":17623,"SourceStructureID":84008,"TargetStructureID":82677,"Label":"84008-82677 via Conventional from 84009 -> 84010","Type":"Conventional","Directional":true,"Links":[{"SourceID":84009,"TargetID":84010,"Directional":true}]},{"ID":17624,"SourceStructureID":84018,"TargetStructureID":82677,"Label":"84018-82677 via Conventional from 84019 -> 84017","Type":"Conventional","Directional":true,"Links":[{"SourceID":84019,"TargetID":84017,"Directional":true}]},{"ID":17625,"SourceStructureID":84029,"TargetStructureID":5534,"Label":"84029-5534 via Conventional from 84030 -> 34624","Type":"Conventional","Directional":true,"Links":[{"SourceID":84030,"TargetID":34624,"Directional":true}]},{"ID":17626,"SourceStructureID":84038,"TargetStructureID":82677,"Label":"84038-82677 via Conventional from 84039 -> 84040","Type":"Conventional","Directional":true,"Links":[{"SourceID":84039,"TargetID":84040,"Directional":true}]},{"ID":17627,"SourceStructureID":84041,"TargetStructureID":82677,"Label":"84041-82677 via Conventional from 84044 -> 84045","Type":"Conventional","Directional":true,"Links":[{"SourceID":84044,"TargetID":84045,"Directional":true}]},{"ID":17628,"SourceStructureID":84058,"TargetStructureID":82677,"Label":"84058-82677 via Conventional from 84059 -> 84057","Type":"Conventional","Directional":true,"Links":[{"SourceID":84059,"TargetID":84057,"Directional":true}]},{"ID":17629,"SourceStructureID":84063,"TargetStructureID":84061,"Label":"84063-84061 via Conventional from 84064 -> 84062","Type":"Conventional","Directional":true,"Links":[{"SourceID":84064,"TargetID":84062,"Directional":true}]},{"ID":17630,"SourceStructureID":84063,"TargetStructureID":84077,"Label":"84063-84077 via Conventional from 84065 -> 84080, 84066 -> 84081","Type":"Conventional","Directional":true,"Links":[{"SourceID":84065,"TargetID":84080,"Directional":true},{"SourceID":84066,"TargetID":84081,"Directional":true}]},{"ID":17631,"SourceStructureID":84073,"TargetStructureID":82677,"Label":"84073-82677 via Conventional from 84075 -> 84074","Type":"Conventional","Directional":true,"Links":[{"SourceID":84075,"TargetID":84074,"Directional":true}]},{"ID":17632,"SourceStructureID":84077,"TargetStructureID":82677,"Label":"84077-82677 via Conventional from 84079 -> 84078","Type":"Conventional","Directional":true,"Links":[{"SourceID":84079,"TargetID":84078,"Directional":true}]},{"ID":17633,"SourceStructureID":84082,"TargetStructureID":84083,"Label":"84082-84083 via Conventional from 84085 -> 84086","Type":"Conventional","Directional":true,"Links":[{"SourceID":84085,"TargetID":84086,"Directional":true}]},{"ID":17634,"SourceStructureID":84083,"TargetStructureID":82677,"Label":"84083-82677 via Conventional from 84084 -> 84087","Type":"Conventional","Directional":true,"Links":[{"SourceID":84084,"TargetID":84087,"Directional":true}]},{"ID":17635,"SourceStructureID":84088,"TargetStructureID":84090,"Label":"84088-84090 via Conventional from 84089 -> 84091","Type":"Conventional","Directional":true,"Links":[{"SourceID":84089,"TargetID":84091,"Directional":true}]},{"ID":17636,"SourceStructureID":84106,"TargetStructureID":82677,"Label":"84106-82677 via Conventional from 84107 -> 84105","Type":"Conventional","Directional":true,"Links":[{"SourceID":84107,"TargetID":84105,"Directional":true}]},{"ID":17637,"SourceStructureID":84115,"TargetStructureID":82677,"Label":"84115-82677 via Conventional from 84116 -> 84117","Type":"Conventional","Directional":true,"Links":[{"SourceID":84116,"TargetID":84117,"Directional":true}]},{"ID":17638,"SourceStructureID":84118,"TargetStructureID":450,"Label":"84118-450 via Conventional from 123599 -> 123600","Type":"Conventional","Directional":true,"Links":[{"SourceID":123599,"TargetID":123600,"Directional":true}]},{"ID":17639,"SourceStructureID":84118,"TargetStructureID":5468,"Label":"84118-5468 via Conventional from 123665 -> 48273","Type":"Conventional","Directional":true,"Links":[{"SourceID":123665,"TargetID":48273,"Directional":true}]},{"ID":17640,"SourceStructureID":84118,"TargetStructureID":5534,"Label":"84118-5534 via Conventional from 123630 -> 123631, 123638 -> 123637","Type":"Conventional","Directional":true,"Links":[{"SourceID":123630,"TargetID":123631,"Directional":true},{"SourceID":123638,"TargetID":123637,"Directional":true}]},{"ID":17641,"SourceStructureID":84118,"TargetStructureID":5535,"Label":"84118-5535 via Conventional from 123624 -> 42269","Type":"Conventional","Directional":true,"Links":[{"SourceID":123624,"TargetID":42269,"Directional":true}]},{"ID":17642,"SourceStructureID":84118,"TargetStructureID":5601,"Label":"84118-5601 via Conventional from 123652 -> 57495","Type":"Conventional","Directional":true,"Links":[{"SourceID":123652,"TargetID":57495,"Directional":true}]},{"ID":17643,"SourceStructureID":84118,"TargetStructureID":5637,"Label":"84118-5637 via Conventional from 123633 -> 123634, 123640 -> 123641","Type":"Conventional","Directional":true,"Links":[{"SourceID":123633,"TargetID":123634,"Directional":true},{"SourceID":123640,"TargetID":123641,"Directional":true}]},{"ID":17644,"SourceStructureID":84118,"TargetStructureID":6127,"Label":"84118-6127 via Conventional from 123608 -> 123609, 123612 -> 123613","Type":"Conventional","Directional":true,"Links":[{"SourceID":123608,"TargetID":123609,"Directional":true},{"SourceID":123612,"TargetID":123613,"Directional":true}]},{"ID":17645,"SourceStructureID":84118,"TargetStructureID":6165,"Label":"84118-6165 via Conventional from 123602 -> 123603","Type":"Conventional","Directional":true,"Links":[{"SourceID":123602,"TargetID":123603,"Directional":true}]},{"ID":17646,"SourceStructureID":84118,"TargetStructureID":8754,"Label":"84118-8754 via Conventional from 123653 -> 123654, 123657 -> 123658","Type":"Conventional","Directional":true,"Links":[{"SourceID":123653,"TargetID":123654,"Directional":true},{"SourceID":123657,"TargetID":123658,"Directional":true}]},{"ID":17647,"SourceStructureID":84118,"TargetStructureID":15976,"Label":"84118-15976 via Conventional from 123660 -> 123661, 123663 -> 123662","Type":"Conventional","Directional":true,"Links":[{"SourceID":123660,"TargetID":123661,"Directional":true},{"SourceID":123663,"TargetID":123662,"Directional":true}]},{"ID":17648,"SourceStructureID":84118,"TargetStructureID":32926,"Label":"84118-32926 via Conventional from 123626 -> 123627","Type":"Conventional","Directional":true,"Links":[{"SourceID":123626,"TargetID":123627,"Directional":true}]},{"ID":17649,"SourceStructureID":84118,"TargetStructureID":43716,"Label":"84118-43716 via Conventional from 123598 -> 123596, 123644 -> 123645","Type":"Conventional","Directional":true,"Links":[{"SourceID":123598,"TargetID":123596,"Directional":true},{"SourceID":123644,"TargetID":123645,"Directional":true}]},{"ID":17650,"SourceStructureID":84118,"TargetStructureID":82677,"Label":"84118-82677 via Conventional from 84119 -> 84120","Type":"Conventional","Directional":true,"Links":[{"SourceID":84119,"TargetID":84120,"Directional":true}]},{"ID":17651,"SourceStructureID":84121,"TargetStructureID":82677,"Label":"84121-82677 via Conventional from 84122 -> 84123","Type":"Conventional","Directional":true,"Links":[{"SourceID":84122,"TargetID":84123,"Directional":true}]},{"ID":17652,"SourceStructureID":84142,"TargetStructureID":6117,"Label":"84142-6117 via Conventional from 84146 -> 84145","Type":"Conventional","Directional":true,"Links":[{"SourceID":84146,"TargetID":84145,"Directional":true}]},{"ID":17653,"SourceStructureID":84142,"TargetStructureID":84136,"Label":"84142-84136 via Conventional from 84143 -> 84144","Type":"Conventional","Directional":true,"Links":[{"SourceID":84143,"TargetID":84144,"Directional":true}]},{"ID":17654,"SourceStructureID":84162,"TargetStructureID":7024,"Label":"84162-7024 via Conventional from 135499 -> 135498","Type":"Conventional","Directional":true,"Links":[{"SourceID":135499,"TargetID":135498,"Directional":true}]},{"ID":17655,"SourceStructureID":84162,"TargetStructureID":84174,"Label":"84162-84174 via Conventional from 84163 -> 84175","Type":"Conventional","Directional":true,"Links":[{"SourceID":84163,"TargetID":84175,"Directional":true}]},{"ID":17656,"SourceStructureID":84181,"TargetStructureID":6117,"Label":"84181-6117 via Conventional from 84182 -> 22387","Type":"Conventional","Directional":true,"Links":[{"SourceID":84182,"TargetID":22387,"Directional":true}]},{"ID":17657,"SourceStructureID":84184,"TargetStructureID":6117,"Label":"84184-6117 via Conventional from 84185 -> 22394","Type":"Conventional","Directional":true,"Links":[{"SourceID":84185,"TargetID":22394,"Directional":true}]},{"ID":17658,"SourceStructureID":84193,"TargetStructureID":5279,"Label":"84193-5279 via Conventional from 97345 -> 28314","Type":"Conventional","Directional":true,"Links":[{"SourceID":97345,"TargetID":28314,"Directional":true}]},{"ID":17659,"SourceStructureID":84193,"TargetStructureID":6117,"Label":"84193-6117 via Conventional from 84194 -> 22388","Type":"Conventional","Directional":true,"Links":[{"SourceID":84194,"TargetID":22388,"Directional":true}]},{"ID":17660,"SourceStructureID":84193,"TargetStructureID":20136,"Label":"84193-20136 via Conventional from 84195 -> 46010","Type":"Conventional","Directional":true,"Links":[{"SourceID":84195,"TargetID":46010,"Directional":true}]},{"ID":17661,"SourceStructureID":84201,"TargetStructureID":5279,"Label":"84201-5279 via Conventional from 97333 -> 6356","Type":"Conventional","Directional":true,"Links":[{"SourceID":97333,"TargetID":6356,"Directional":true}]},{"ID":17662,"SourceStructureID":84207,"TargetStructureID":6117,"Label":"84207-6117 via Conventional from 84208 -> 30877","Type":"Conventional","Directional":true,"Links":[{"SourceID":84208,"TargetID":30877,"Directional":true}]},{"ID":17663,"SourceStructureID":84209,"TargetStructureID":6117,"Label":"84209-6117 via Conventional from 84227 -> 30878","Type":"Conventional","Directional":true,"Links":[{"SourceID":84227,"TargetID":30878,"Directional":true}]},{"ID":17664,"SourceStructureID":84211,"TargetStructureID":6117,"Label":"84211-6117 via Conventional from 84212 -> 30876","Type":"Conventional","Directional":true,"Links":[{"SourceID":84212,"TargetID":30876,"Directional":true}]},{"ID":17665,"SourceStructureID":84215,"TargetStructureID":6117,"Label":"84215-6117 via Conventional from 84216 -> 30874","Type":"Conventional","Directional":true,"Links":[{"SourceID":84216,"TargetID":30874,"Directional":true}]},{"ID":17666,"SourceStructureID":84218,"TargetStructureID":6117,"Label":"84218-6117 via Conventional from 84219 -> 84220","Type":"Conventional","Directional":true,"Links":[{"SourceID":84219,"TargetID":84220,"Directional":true}]},{"ID":17667,"SourceStructureID":84224,"TargetStructureID":6117,"Label":"84224-6117 via Conventional from 84225 -> 84226","Type":"Conventional","Directional":true,"Links":[{"SourceID":84225,"TargetID":84226,"Directional":true}]},{"ID":17668,"SourceStructureID":84232,"TargetStructureID":6117,"Label":"84232-6117 via Conventional from 84233 -> 30882","Type":"Conventional","Directional":true,"Links":[{"SourceID":84233,"TargetID":30882,"Directional":true}]},{"ID":17669,"SourceStructureID":84240,"TargetStructureID":6117,"Label":"84240-6117 via Conventional from 84248 -> 84239","Type":"Conventional","Directional":true,"Links":[{"SourceID":84248,"TargetID":84239,"Directional":true}]},{"ID":17670,"SourceStructureID":84254,"TargetStructureID":5284,"Label":"84254-5284 via Conventional from 113461 -> 113459","Type":"Conventional","Directional":true,"Links":[{"SourceID":113461,"TargetID":113459,"Directional":true}]},{"ID":17671,"SourceStructureID":84254,"TargetStructureID":6117,"Label":"84254-6117 via Conventional from 84255 -> 51532","Type":"Conventional","Directional":true,"Links":[{"SourceID":84255,"TargetID":51532,"Directional":true}]},{"ID":17672,"SourceStructureID":84287,"TargetStructureID":74907,"Label":"84287-74907 via Conventional from 84288 -> 84289","Type":"Conventional","Directional":true,"Links":[{"SourceID":84288,"TargetID":84289,"Directional":true}]},{"ID":17673,"SourceStructureID":84290,"TargetStructureID":74907,"Label":"84290-74907 via Conventional from 84291 -> 84292","Type":"Conventional","Directional":true,"Links":[{"SourceID":84291,"TargetID":84292,"Directional":true}]},{"ID":17674,"SourceStructureID":84298,"TargetStructureID":74907,"Label":"84298-74907 via Conventional from 84299 -> 84300","Type":"Conventional","Directional":true,"Links":[{"SourceID":84299,"TargetID":84300,"Directional":true}]},{"ID":17675,"SourceStructureID":84304,"TargetStructureID":74907,"Label":"84304-74907 via Conventional from 84305 -> 84306","Type":"Conventional","Directional":true,"Links":[{"SourceID":84305,"TargetID":84306,"Directional":true}]},{"ID":17676,"SourceStructureID":84337,"TargetStructureID":6117,"Label":"84337-6117 via Conventional from 84339 -> 84340","Type":"Conventional","Directional":true,"Links":[{"SourceID":84339,"TargetID":84340,"Directional":true}]},{"ID":17677,"SourceStructureID":84347,"TargetStructureID":84342,"Label":"84347-84342 via Conventional from 84348 -> 84346","Type":"Conventional","Directional":true,"Links":[{"SourceID":84348,"TargetID":84346,"Directional":true}]},{"ID":17678,"SourceStructureID":84349,"TargetStructureID":6117,"Label":"84349-6117 via Conventional from 84361 -> 84362","Type":"Conventional","Directional":true,"Links":[{"SourceID":84361,"TargetID":84362,"Directional":true}]},{"ID":17679,"SourceStructureID":84349,"TargetStructureID":84337,"Label":"84349-84337 via Conventional from 84356 -> 84357","Type":"Conventional","Directional":true,"Links":[{"SourceID":84356,"TargetID":84357,"Directional":true}]},{"ID":17680,"SourceStructureID":84369,"TargetStructureID":66323,"Label":"84369-66323 via Conventional from 84370 -> 84368","Type":"Conventional","Directional":true,"Links":[{"SourceID":84370,"TargetID":84368,"Directional":true}]},{"ID":17681,"SourceStructureID":84374,"TargetStructureID":6117,"Label":"84374-6117 via Conventional from 84376 -> 84375","Type":"Conventional","Directional":true,"Links":[{"SourceID":84376,"TargetID":84375,"Directional":true}]},{"ID":17682,"SourceStructureID":84407,"TargetStructureID":73004,"Label":"84407-73004 via Conventional from 84410 -> 84411","Type":"Conventional","Directional":true,"Links":[{"SourceID":84410,"TargetID":84411,"Directional":true}]},{"ID":17683,"SourceStructureID":84418,"TargetStructureID":7594,"Label":"84418-7594 via Conventional from 84420 -> 19281","Type":"Conventional","Directional":true,"Links":[{"SourceID":84420,"TargetID":19281,"Directional":true}]},{"ID":17684,"SourceStructureID":84457,"TargetStructureID":5282,"Label":"84457-5282 via Conventional from 84458 -> 84462","Type":"Conventional","Directional":true,"Links":[{"SourceID":84458,"TargetID":84462,"Directional":true}]},{"ID":17685,"SourceStructureID":84519,"TargetStructureID":74907,"Label":"84519-74907 via Conventional from 84523 -> 84524","Type":"Conventional","Directional":true,"Links":[{"SourceID":84523,"TargetID":84524,"Directional":true}]},{"ID":17686,"SourceStructureID":84561,"TargetStructureID":593,"Label":"84561-593 via Conventional from 84563 -> 84562","Type":"Conventional","Directional":true,"Links":[{"SourceID":84563,"TargetID":84562,"Directional":true}]},{"ID":17687,"SourceStructureID":84572,"TargetStructureID":10574,"Label":"84572-10574 via Ribbon Synapse from 84573 -> 84569","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":84573,"TargetID":84569,"Directional":true}]},{"ID":17688,"SourceStructureID":84600,"TargetStructureID":74907,"Label":"84600-74907 via Conventional from 84606 -> 84607","Type":"Conventional","Directional":true,"Links":[{"SourceID":84606,"TargetID":84607,"Directional":true}]},{"ID":17689,"SourceStructureID":84621,"TargetStructureID":84623,"Label":"84621-84623 via Conventional from 84622 -> 84625","Type":"Conventional","Directional":true,"Links":[{"SourceID":84622,"TargetID":84625,"Directional":true}]},{"ID":17690,"SourceStructureID":84639,"TargetStructureID":5283,"Label":"84639-5283 via Conventional from 123767 -> 28006","Type":"Conventional","Directional":true,"Links":[{"SourceID":123767,"TargetID":28006,"Directional":true}]},{"ID":17691,"SourceStructureID":84639,"TargetStructureID":5650,"Label":"84639-5650 via Conventional from 84644 -> 23493","Type":"Conventional","Directional":true,"Links":[{"SourceID":84644,"TargetID":23493,"Directional":true}]},{"ID":17692,"SourceStructureID":84639,"TargetStructureID":6117,"Label":"84639-6117 via Conventional from 84640 -> 84641","Type":"Conventional","Directional":true,"Links":[{"SourceID":84640,"TargetID":84641,"Directional":true}]},{"ID":17693,"SourceStructureID":84642,"TargetStructureID":6117,"Label":"84642-6117 via Conventional from 84645 -> 84214","Type":"Conventional","Directional":true,"Links":[{"SourceID":84645,"TargetID":84214,"Directional":true}]},{"ID":17694,"SourceStructureID":84647,"TargetStructureID":6117,"Label":"84647-6117 via Conventional from 84648 -> 84649","Type":"Conventional","Directional":true,"Links":[{"SourceID":84648,"TargetID":84649,"Directional":true}]},{"ID":17695,"SourceStructureID":84670,"TargetStructureID":43507,"Label":"84670-43507 via Conventional from 84672 -> 43519","Type":"Conventional","Directional":true,"Links":[{"SourceID":84672,"TargetID":43519,"Directional":true}]},{"ID":17696,"SourceStructureID":84696,"TargetStructureID":11092,"Label":"84696-11092 via Conventional from 84697 -> 109972","Type":"Conventional","Directional":true,"Links":[{"SourceID":84697,"TargetID":109972,"Directional":true}]},{"ID":17697,"SourceStructureID":84740,"TargetStructureID":74907,"Label":"84740-74907 via Conventional from 84741 -> 84776","Type":"Conventional","Directional":true,"Links":[{"SourceID":84741,"TargetID":84776,"Directional":true}]},{"ID":17698,"SourceStructureID":84745,"TargetStructureID":5599,"Label":"84745-5599 via Conventional from 84746 -> 84744","Type":"Conventional","Directional":true,"Links":[{"SourceID":84746,"TargetID":84744,"Directional":true}]},{"ID":17699,"SourceStructureID":84759,"TargetStructureID":70540,"Label":"84759-70540 via Conventional from 84760 -> 84762","Type":"Conventional","Directional":true,"Links":[{"SourceID":84760,"TargetID":84762,"Directional":true}]},{"ID":17700,"SourceStructureID":84773,"TargetStructureID":84771,"Label":"84773-84771 via Conventional from 84774 -> 84775","Type":"Conventional","Directional":true,"Links":[{"SourceID":84774,"TargetID":84775,"Directional":true}]},{"ID":17701,"SourceStructureID":84780,"TargetStructureID":166,"Label":"84780-166 via Conventional from 84781 -> 84779","Type":"Conventional","Directional":true,"Links":[{"SourceID":84781,"TargetID":84779,"Directional":true}]},{"ID":17702,"SourceStructureID":84790,"TargetStructureID":32035,"Label":"84790-32035 via Conventional from 84857 -> 32042","Type":"Conventional","Directional":true,"Links":[{"SourceID":84857,"TargetID":32042,"Directional":true}]},{"ID":17703,"SourceStructureID":84822,"TargetStructureID":7859,"Label":"84822-7859 via Conventional from 84823 -> 84821","Type":"Conventional","Directional":true,"Links":[{"SourceID":84823,"TargetID":84821,"Directional":true}]},{"ID":17704,"SourceStructureID":84830,"TargetStructureID":5279,"Label":"84830-5279 via Conventional from 84843 -> 25846","Type":"Conventional","Directional":true,"Links":[{"SourceID":84843,"TargetID":25846,"Directional":true}]},{"ID":17705,"SourceStructureID":84830,"TargetStructureID":6997,"Label":"84830-6997 via Conventional from 84881 -> 21959, 84890 -> 21928, 84893 -> 84892","Type":"Conventional","Directional":true,"Links":[{"SourceID":84881,"TargetID":21959,"Directional":true},{"SourceID":84890,"TargetID":21928,"Directional":true},{"SourceID":84893,"TargetID":84892,"Directional":true}]},{"ID":17706,"SourceStructureID":84830,"TargetStructureID":11401,"Label":"84830-11401 via Conventional from 84896 -> 84897","Type":"Conventional","Directional":true,"Links":[{"SourceID":84896,"TargetID":84897,"Directional":true}]},{"ID":17707,"SourceStructureID":84830,"TargetStructureID":84876,"Label":"84830-84876 via Conventional from 84875 -> 84877","Type":"Conventional","Directional":true,"Links":[{"SourceID":84875,"TargetID":84877,"Directional":true}]},{"ID":17708,"SourceStructureID":84830,"TargetStructureID":84879,"Label":"84830-84879 via Conventional from 84878 -> 84880","Type":"Conventional","Directional":true,"Links":[{"SourceID":84878,"TargetID":84880,"Directional":true}]},{"ID":17709,"SourceStructureID":84830,"TargetStructureID":85455,"Label":"84830-85455 via Conventional from 85457 -> 85456","Type":"Conventional","Directional":true,"Links":[{"SourceID":85457,"TargetID":85456,"Directional":true}]},{"ID":17710,"SourceStructureID":84830,"TargetStructureID":85463,"Label":"84830-85463 via Conventional from 85462 -> 85464","Type":"Conventional","Directional":true,"Links":[{"SourceID":85462,"TargetID":85464,"Directional":true}]},{"ID":17711,"SourceStructureID":84830,"TargetStructureID":85473,"Label":"84830-85473 via Conventional from 85474 -> 85477","Type":"Conventional","Directional":true,"Links":[{"SourceID":85474,"TargetID":85477,"Directional":true}]},{"ID":17712,"SourceStructureID":84858,"TargetStructureID":142,"Label":"84858-142 via Conventional from 84870 -> 49772","Type":"Conventional","Directional":true,"Links":[{"SourceID":84870,"TargetID":49772,"Directional":true}]},{"ID":17713,"SourceStructureID":84876,"TargetStructureID":26079,"Label":"84876-26079 via Conventional from 102917 -> 102915","Type":"Conventional","Directional":true,"Links":[{"SourceID":102917,"TargetID":102915,"Directional":true}]},{"ID":17714,"SourceStructureID":84886,"TargetStructureID":84830,"Label":"84886-84830 via Conventional from 84887 -> 84885","Type":"Conventional","Directional":true,"Links":[{"SourceID":84887,"TargetID":84885,"Directional":true}]},{"ID":17715,"SourceStructureID":84909,"TargetStructureID":84903,"Label":"84909-84903 via Conventional from 84911 -> 84913","Type":"Conventional","Directional":true,"Links":[{"SourceID":84911,"TargetID":84913,"Directional":true}]},{"ID":17716,"SourceStructureID":84914,"TargetStructureID":84909,"Label":"84914-84909 via Conventional from 84915 -> 84912","Type":"Conventional","Directional":true,"Links":[{"SourceID":84915,"TargetID":84912,"Directional":true}]},{"ID":17717,"SourceStructureID":84919,"TargetStructureID":84830,"Label":"84919-84830 via Conventional from 84921 -> 84920","Type":"Conventional","Directional":true,"Links":[{"SourceID":84921,"TargetID":84920,"Directional":true}]},{"ID":17718,"SourceStructureID":84926,"TargetStructureID":84830,"Label":"84926-84830 via BC Conventional Synapse from 85471 -> 84929","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85471,"TargetID":84929,"Directional":true}]},{"ID":17719,"SourceStructureID":84942,"TargetStructureID":5278,"Label":"84942-5278 via Conventional from 93467 -> 50309","Type":"Conventional","Directional":true,"Links":[{"SourceID":93467,"TargetID":50309,"Directional":true}]},{"ID":17720,"SourceStructureID":84942,"TargetStructureID":6117,"Label":"84942-6117 via Conventional from 84943 -> 84944","Type":"Conventional","Directional":true,"Links":[{"SourceID":84943,"TargetID":84944,"Directional":true}]},{"ID":17721,"SourceStructureID":84942,"TargetStructureID":84946,"Label":"84942-84946 via Conventional from 84945 -> 84947","Type":"Conventional","Directional":true,"Links":[{"SourceID":84945,"TargetID":84947,"Directional":true}]},{"ID":17722,"SourceStructureID":84950,"TargetStructureID":6117,"Label":"84950-6117 via Conventional from 84951 -> 84953","Type":"Conventional","Directional":true,"Links":[{"SourceID":84951,"TargetID":84953,"Directional":true}]},{"ID":17723,"SourceStructureID":84965,"TargetStructureID":142,"Label":"84965-142 via Conventional from 84998 -> 30709","Type":"Conventional","Directional":true,"Links":[{"SourceID":84998,"TargetID":30709,"Directional":true}]},{"ID":17724,"SourceStructureID":84965,"TargetStructureID":84957,"Label":"84965-84957 via Conventional from 84968 -> 84969","Type":"Conventional","Directional":true,"Links":[{"SourceID":84968,"TargetID":84969,"Directional":true}]},{"ID":17725,"SourceStructureID":84980,"TargetStructureID":142,"Label":"84980-142 via Conventional from 84981 -> 49771","Type":"Conventional","Directional":true,"Links":[{"SourceID":84981,"TargetID":49771,"Directional":true}]},{"ID":17726,"SourceStructureID":84980,"TargetStructureID":6117,"Label":"84980-6117 via Conventional from 84993 -> 84994","Type":"Conventional","Directional":true,"Links":[{"SourceID":84993,"TargetID":84994,"Directional":true}]},{"ID":17727,"SourceStructureID":84983,"TargetStructureID":6117,"Label":"84983-6117 via Conventional from 84984 -> 30894, 84985 -> 84986","Type":"Conventional","Directional":true,"Links":[{"SourceID":84984,"TargetID":30894,"Directional":true},{"SourceID":84985,"TargetID":84986,"Directional":true}]},{"ID":17728,"SourceStructureID":85004,"TargetStructureID":142,"Label":"85004-142 via Conventional from 85007 -> 85008","Type":"Conventional","Directional":true,"Links":[{"SourceID":85007,"TargetID":85008,"Directional":true}]},{"ID":17729,"SourceStructureID":85004,"TargetStructureID":6117,"Label":"85004-6117 via Conventional from 85005 -> 85006","Type":"Conventional","Directional":true,"Links":[{"SourceID":85005,"TargetID":85006,"Directional":true}]},{"ID":17730,"SourceStructureID":85015,"TargetStructureID":6117,"Label":"85015-6117 via Conventional from 85016 -> 85017","Type":"Conventional","Directional":true,"Links":[{"SourceID":85016,"TargetID":85017,"Directional":true}]},{"ID":17731,"SourceStructureID":85062,"TargetStructureID":59333,"Label":"85062-59333 via Ribbon Synapse from 85065 -> 85061","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85065,"TargetID":85061,"Directional":true}]},{"ID":17732,"SourceStructureID":85068,"TargetStructureID":59333,"Label":"85068-59333 via Conventional from 85069 -> 85067","Type":"Conventional","Directional":true,"Links":[{"SourceID":85069,"TargetID":85067,"Directional":true}]},{"ID":17733,"SourceStructureID":85072,"TargetStructureID":85068,"Label":"85072-85068 via Conventional from 85074 -> 85075","Type":"Conventional","Directional":true,"Links":[{"SourceID":85074,"TargetID":85075,"Directional":true}]},{"ID":17734,"SourceStructureID":85082,"TargetStructureID":59333,"Label":"85082-59333 via Conventional from 85083 -> 85084","Type":"Conventional","Directional":true,"Links":[{"SourceID":85083,"TargetID":85084,"Directional":true}]},{"ID":17735,"SourceStructureID":85088,"TargetStructureID":59333,"Label":"85088-59333 via Ribbon Synapse from 85090 -> 85087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85090,"TargetID":85087,"Directional":true}]},{"ID":17736,"SourceStructureID":85094,"TargetStructureID":5405,"Label":"85094-5405 via BC Conventional Synapse from 85139 -> 85140","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85139,"TargetID":85140,"Directional":true}]},{"ID":17737,"SourceStructureID":85094,"TargetStructureID":59333,"Label":"85094-59333 via Ribbon Synapse from 85107 -> 85108","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85107,"TargetID":85108,"Directional":true}]},{"ID":17738,"SourceStructureID":85094,"TargetStructureID":85096,"Label":"85094-85096 via Ribbon Synapse from 85095 -> 85103","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85095,"TargetID":85103,"Directional":true}]},{"ID":17739,"SourceStructureID":85094,"TargetStructureID":85097,"Label":"85094-85097 via Ribbon Synapse from 85095 -> 85102","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85095,"TargetID":85102,"Directional":true}]},{"ID":17740,"SourceStructureID":85094,"TargetStructureID":85116,"Label":"85094-85116 via Ribbon Synapse from 85115 -> 85117","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85115,"TargetID":85117,"Directional":true}]},{"ID":17741,"SourceStructureID":85100,"TargetStructureID":85096,"Label":"85100-85096 via Conventional from 85101 -> 85098","Type":"Conventional","Directional":true,"Links":[{"SourceID":85101,"TargetID":85098,"Directional":true}]},{"ID":17742,"SourceStructureID":85104,"TargetStructureID":85094,"Label":"85104-85094 via Conventional from 85105 -> 85106","Type":"Conventional","Directional":true,"Links":[{"SourceID":85105,"TargetID":85106,"Directional":true}]},{"ID":17743,"SourceStructureID":85119,"TargetStructureID":5405,"Label":"85119-5405 via Ribbon Synapse from 85132 -> 85138, 85133 -> 85134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85132,"TargetID":85138,"Directional":true},{"SourceID":85133,"TargetID":85134,"Directional":true}]},{"ID":17744,"SourceStructureID":85119,"TargetStructureID":85121,"Label":"85119-85121 via Ribbon Synapse from 85132 -> 85137","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85132,"TargetID":85137,"Directional":true}]},{"ID":17745,"SourceStructureID":85119,"TargetStructureID":85124,"Label":"85119-85124 via Ribbon Synapse from 85123 -> 85125","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85123,"TargetID":85125,"Directional":true}]},{"ID":17746,"SourceStructureID":85128,"TargetStructureID":85121,"Label":"85128-85121 via Conventional from 85129 -> 85127","Type":"Conventional","Directional":true,"Links":[{"SourceID":85129,"TargetID":85127,"Directional":true}]},{"ID":17747,"SourceStructureID":85141,"TargetStructureID":85141,"Label":"85141-85141 via Conventional from 85181 -> 85179","Type":"Conventional","Directional":true,"Links":[{"SourceID":85181,"TargetID":85179,"Directional":true}]},{"ID":17748,"SourceStructureID":85141,"TargetStructureID":85144,"Label":"85141-85144 via Ribbon Synapse from 85143 -> 85145","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85143,"TargetID":85145,"Directional":true}]},{"ID":17749,"SourceStructureID":85141,"TargetStructureID":85149,"Label":"85141-85149 via Ribbon Synapse from 85148 -> 85154, 85150 -> 85151","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85148,"TargetID":85154,"Directional":true},{"SourceID":85150,"TargetID":85151,"Directional":true}]},{"ID":17750,"SourceStructureID":85141,"TargetStructureID":85170,"Label":"85141-85170 via BC Conventional Synapse from 85169 -> 85171","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85169,"TargetID":85171,"Directional":true}]},{"ID":17751,"SourceStructureID":85141,"TargetStructureID":85184,"Label":"85141-85184 via Ribbon Synapse from 85182 -> 85191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85182,"TargetID":85191,"Directional":true}]},{"ID":17752,"SourceStructureID":85141,"TargetStructureID":85185,"Label":"85141-85185 via Ribbon Synapse from 85182 -> 85192","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85182,"TargetID":85192,"Directional":true}]},{"ID":17753,"SourceStructureID":85141,"TargetStructureID":85196,"Label":"85141-85196 via Ribbon Synapse from 85195 -> 85203","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85195,"TargetID":85203,"Directional":true}]},{"ID":17754,"SourceStructureID":85141,"TargetStructureID":85197,"Label":"85141-85197 via Ribbon Synapse from 85195 -> 85204","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85195,"TargetID":85204,"Directional":true}]},{"ID":17755,"SourceStructureID":85141,"TargetStructureID":85206,"Label":"85141-85206 via BC Conventional Synapse from 85205 -> 85207","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85205,"TargetID":85207,"Directional":true}]},{"ID":17756,"SourceStructureID":85141,"TargetStructureID":85214,"Label":"85141-85214 via Ribbon Synapse from 85213 -> 85215","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85213,"TargetID":85215,"Directional":true}]},{"ID":17757,"SourceStructureID":85141,"TargetStructureID":85216,"Label":"85141-85216 via Ribbon Synapse from 85213 -> 85217","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85213,"TargetID":85217,"Directional":true}]},{"ID":17758,"SourceStructureID":85141,"TargetStructureID":85233,"Label":"85141-85233 via Ribbon Synapse from 85211 -> 85234","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85211,"TargetID":85234,"Directional":true}]},{"ID":17759,"SourceStructureID":85141,"TargetStructureID":85250,"Label":"85141-85250 via BC Conventional Synapse from 85247 -> 85251","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85247,"TargetID":85251,"Directional":true}]},{"ID":17760,"SourceStructureID":85141,"TargetStructureID":85258,"Label":"85141-85258 via Ribbon Synapse from 85257 -> 85263","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85257,"TargetID":85263,"Directional":true}]},{"ID":17761,"SourceStructureID":85141,"TargetStructureID":85259,"Label":"85141-85259 via Ribbon Synapse from 85257 -> 85261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85257,"TargetID":85261,"Directional":true}]},{"ID":17762,"SourceStructureID":85141,"TargetStructureID":85289,"Label":"85141-85289 via Ribbon Synapse from 85288 -> 85290","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85288,"TargetID":85290,"Directional":true}]},{"ID":17763,"SourceStructureID":85141,"TargetStructureID":85333,"Label":"85141-85333 via Ribbon Synapse from 85332 -> 85335","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85332,"TargetID":85335,"Directional":true}]},{"ID":17764,"SourceStructureID":85141,"TargetStructureID":85334,"Label":"85141-85334 via Ribbon Synapse from 85332 -> 85336","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85332,"TargetID":85336,"Directional":true}]},{"ID":17765,"SourceStructureID":85141,"TargetStructureID":85346,"Label":"85141-85346 via Ribbon Synapse from 85278 -> 85347","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85278,"TargetID":85347,"Directional":true}]},{"ID":17766,"SourceStructureID":85141,"TargetStructureID":85357,"Label":"85141-85357 via Ribbon Synapse from 85294 -> 85358","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85294,"TargetID":85358,"Directional":true}]},{"ID":17767,"SourceStructureID":85141,"TargetStructureID":85372,"Label":"85141-85372 via Ribbon Synapse from 85371 -> 85373","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85371,"TargetID":85373,"Directional":true}]},{"ID":17768,"SourceStructureID":85141,"TargetStructureID":85388,"Label":"85141-85388 via Ribbon Synapse from 85246 -> 85389","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85246,"TargetID":85389,"Directional":true}]},{"ID":17769,"SourceStructureID":85141,"TargetStructureID":85391,"Label":"85141-85391 via Ribbon Synapse from 85245 -> 85392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85245,"TargetID":85392,"Directional":true}]},{"ID":17770,"SourceStructureID":85144,"TargetStructureID":85141,"Label":"85144-85141 via Conventional from 85146 -> 85147","Type":"Conventional","Directional":true,"Links":[{"SourceID":85146,"TargetID":85147,"Directional":true}]},{"ID":17771,"SourceStructureID":85149,"TargetStructureID":85141,"Label":"85149-85141 via Conventional from 85156 -> 85155","Type":"Conventional","Directional":true,"Links":[{"SourceID":85156,"TargetID":85155,"Directional":true}]},{"ID":17772,"SourceStructureID":85172,"TargetStructureID":85141,"Label":"85172-85141 via Conventional from 85175 -> 85176","Type":"Conventional","Directional":true,"Links":[{"SourceID":85175,"TargetID":85176,"Directional":true}]},{"ID":17773,"SourceStructureID":85184,"TargetStructureID":85141,"Label":"85184-85141 via Conventional from 85188 -> 85183","Type":"Conventional","Directional":true,"Links":[{"SourceID":85188,"TargetID":85183,"Directional":true}]},{"ID":17774,"SourceStructureID":85185,"TargetStructureID":85184,"Label":"85185-85184 via Conventional from 85186 -> 85187","Type":"Conventional","Directional":true,"Links":[{"SourceID":85186,"TargetID":85187,"Directional":true}]},{"ID":17775,"SourceStructureID":85197,"TargetStructureID":85200,"Label":"85197-85200 via Conventional from 85198 -> 85202","Type":"Conventional","Directional":true,"Links":[{"SourceID":85198,"TargetID":85202,"Directional":true}]},{"ID":17776,"SourceStructureID":85214,"TargetStructureID":85141,"Label":"85214-85141 via Conventional from 85395 -> 85396","Type":"Conventional","Directional":true,"Links":[{"SourceID":85395,"TargetID":85396,"Directional":true}]},{"ID":17777,"SourceStructureID":85231,"TargetStructureID":85141,"Label":"85231-85141 via Conventional from 85232 -> 85230","Type":"Conventional","Directional":true,"Links":[{"SourceID":85232,"TargetID":85230,"Directional":true}]},{"ID":17778,"SourceStructureID":85259,"TargetStructureID":85141,"Label":"85259-85141 via Conventional from 85260 -> 85262","Type":"Conventional","Directional":true,"Links":[{"SourceID":85260,"TargetID":85262,"Directional":true}]},{"ID":17779,"SourceStructureID":85266,"TargetStructureID":6117,"Label":"85266-6117 via Conventional from 126354 -> 126355","Type":"Conventional","Directional":true,"Links":[{"SourceID":126354,"TargetID":126355,"Directional":true}]},{"ID":17780,"SourceStructureID":85284,"TargetStructureID":6117,"Label":"85284-6117 via Conventional from 85285 -> 85287","Type":"Conventional","Directional":true,"Links":[{"SourceID":85285,"TargetID":85287,"Directional":true}]},{"ID":17781,"SourceStructureID":85307,"TargetStructureID":6117,"Label":"85307-6117 via Conventional from 85309 -> 85304","Type":"Conventional","Directional":true,"Links":[{"SourceID":85309,"TargetID":85304,"Directional":true}]},{"ID":17782,"SourceStructureID":85311,"TargetStructureID":6117,"Label":"85311-6117 via Conventional from 85253 -> 30898, 85312 -> 85313","Type":"Conventional","Directional":true,"Links":[{"SourceID":85253,"TargetID":30898,"Directional":true},{"SourceID":85312,"TargetID":85313,"Directional":true}]},{"ID":17783,"SourceStructureID":85314,"TargetStructureID":6117,"Label":"85314-6117 via Conventional from 85315 -> 85316","Type":"Conventional","Directional":true,"Links":[{"SourceID":85315,"TargetID":85316,"Directional":true}]},{"ID":17784,"SourceStructureID":85334,"TargetStructureID":85141,"Label":"85334-85141 via Conventional from 85340 -> 85341","Type":"Conventional","Directional":true,"Links":[{"SourceID":85340,"TargetID":85341,"Directional":true}]},{"ID":17785,"SourceStructureID":85338,"TargetStructureID":85334,"Label":"85338-85334 via Conventional from 85339 -> 85337","Type":"Conventional","Directional":true,"Links":[{"SourceID":85339,"TargetID":85337,"Directional":true}]},{"ID":17786,"SourceStructureID":85348,"TargetStructureID":85250,"Label":"85348-85250 via Conventional from 85349 -> 85256","Type":"Conventional","Directional":true,"Links":[{"SourceID":85349,"TargetID":85256,"Directional":true}]},{"ID":17787,"SourceStructureID":85369,"TargetStructureID":85141,"Label":"85369-85141 via Conventional from 85370 -> 85368","Type":"Conventional","Directional":true,"Links":[{"SourceID":85370,"TargetID":85368,"Directional":true}]},{"ID":17788,"SourceStructureID":85377,"TargetStructureID":85141,"Label":"85377-85141 via Conventional from 85378 -> 85376","Type":"Conventional","Directional":true,"Links":[{"SourceID":85378,"TargetID":85376,"Directional":true}]},{"ID":17789,"SourceStructureID":85400,"TargetStructureID":85141,"Label":"85400-85141 via Conventional from 85402 -> 85399","Type":"Conventional","Directional":true,"Links":[{"SourceID":85402,"TargetID":85399,"Directional":true}]},{"ID":17790,"SourceStructureID":85404,"TargetStructureID":142,"Label":"85404-142 via Conventional from 85409 -> 49778","Type":"Conventional","Directional":true,"Links":[{"SourceID":85409,"TargetID":49778,"Directional":true}]},{"ID":17791,"SourceStructureID":85421,"TargetStructureID":6117,"Label":"85421-6117 via Conventional from 85422 -> 85423, 100920 -> 100919","Type":"Conventional","Directional":true,"Links":[{"SourceID":85422,"TargetID":85423,"Directional":true},{"SourceID":100920,"TargetID":100919,"Directional":true}]},{"ID":17792,"SourceStructureID":85421,"TargetStructureID":54287,"Label":"85421-54287 via Conventional from 85424 -> 85425","Type":"Conventional","Directional":true,"Links":[{"SourceID":85424,"TargetID":85425,"Directional":true}]},{"ID":17793,"SourceStructureID":85426,"TargetStructureID":6117,"Label":"85426-6117 via Conventional from 85427 -> 85428","Type":"Conventional","Directional":true,"Links":[{"SourceID":85427,"TargetID":85428,"Directional":true}]},{"ID":17794,"SourceStructureID":85429,"TargetStructureID":6117,"Label":"85429-6117 via Conventional from 85430 -> 85431","Type":"Conventional","Directional":true,"Links":[{"SourceID":85430,"TargetID":85431,"Directional":true}]},{"ID":17795,"SourceStructureID":85442,"TargetStructureID":6117,"Label":"85442-6117 via Conventional from 85443 -> 85444","Type":"Conventional","Directional":true,"Links":[{"SourceID":85443,"TargetID":85444,"Directional":true}]},{"ID":17796,"SourceStructureID":85445,"TargetStructureID":6997,"Label":"85445-6997 via Conventional from 85446 -> 21960","Type":"Conventional","Directional":true,"Links":[{"SourceID":85446,"TargetID":21960,"Directional":true}]},{"ID":17797,"SourceStructureID":85450,"TargetStructureID":84830,"Label":"85450-84830 via Conventional from 85451 -> 85449","Type":"Conventional","Directional":true,"Links":[{"SourceID":85451,"TargetID":85449,"Directional":true}]},{"ID":17798,"SourceStructureID":85455,"TargetStructureID":84830,"Label":"85455-84830 via Conventional from 85458 -> 85459","Type":"Conventional","Directional":true,"Links":[{"SourceID":85458,"TargetID":85459,"Directional":true}]},{"ID":17799,"SourceStructureID":85473,"TargetStructureID":84830,"Label":"85473-84830 via BC Conventional Synapse from 85476 -> 85475","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":85476,"TargetID":85475,"Directional":true}]},{"ID":17800,"SourceStructureID":85483,"TargetStructureID":84830,"Label":"85483-84830 via Conventional from 85484 -> 85480","Type":"Conventional","Directional":true,"Links":[{"SourceID":85484,"TargetID":85480,"Directional":true}]},{"ID":17801,"SourceStructureID":85496,"TargetStructureID":593,"Label":"85496-593 via Conventional from 85499 -> 85500","Type":"Conventional","Directional":true,"Links":[{"SourceID":85499,"TargetID":85500,"Directional":true}]},{"ID":17802,"SourceStructureID":85510,"TargetStructureID":593,"Label":"85510-593 via Conventional from 90043 -> 90044","Type":"Conventional","Directional":true,"Links":[{"SourceID":90043,"TargetID":90044,"Directional":true}]},{"ID":17803,"SourceStructureID":85523,"TargetStructureID":593,"Label":"85523-593 via Conventional from 85524 -> 85525","Type":"Conventional","Directional":true,"Links":[{"SourceID":85524,"TargetID":85525,"Directional":true}]},{"ID":17804,"SourceStructureID":85526,"TargetStructureID":593,"Label":"85526-593 via Conventional from 85527 -> 85528","Type":"Conventional","Directional":true,"Links":[{"SourceID":85527,"TargetID":85528,"Directional":true}]},{"ID":17805,"SourceStructureID":85543,"TargetStructureID":5439,"Label":"85543-5439 via Conventional from 85544 -> 85545","Type":"Conventional","Directional":true,"Links":[{"SourceID":85544,"TargetID":85545,"Directional":true}]},{"ID":17806,"SourceStructureID":85546,"TargetStructureID":59229,"Label":"85546-59229 via Ribbon Synapse from 85548 -> 85542","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85548,"TargetID":85542,"Directional":true}]},{"ID":17807,"SourceStructureID":85571,"TargetStructureID":593,"Label":"85571-593 via Conventional from 85584 -> 85585","Type":"Conventional","Directional":true,"Links":[{"SourceID":85584,"TargetID":85585,"Directional":true}]},{"ID":17808,"SourceStructureID":85601,"TargetStructureID":5439,"Label":"85601-5439 via Conventional from 85602 -> 85599","Type":"Conventional","Directional":true,"Links":[{"SourceID":85602,"TargetID":85599,"Directional":true}]},{"ID":17809,"SourceStructureID":85620,"TargetStructureID":5439,"Label":"85620-5439 via Conventional from 85621 -> 85619","Type":"Conventional","Directional":true,"Links":[{"SourceID":85621,"TargetID":85619,"Directional":true}]},{"ID":17810,"SourceStructureID":85622,"TargetStructureID":5439,"Label":"85622-5439 via Conventional from 85625 -> 85626","Type":"Conventional","Directional":true,"Links":[{"SourceID":85625,"TargetID":85626,"Directional":true}]},{"ID":17811,"SourceStructureID":85658,"TargetStructureID":6117,"Label":"85658-6117 via Conventional from 85659 -> 85660","Type":"Conventional","Directional":true,"Links":[{"SourceID":85659,"TargetID":85660,"Directional":true}]},{"ID":17812,"SourceStructureID":85666,"TargetStructureID":6117,"Label":"85666-6117 via Conventional from 85883 -> 85884","Type":"Conventional","Directional":true,"Links":[{"SourceID":85883,"TargetID":85884,"Directional":true}]},{"ID":17813,"SourceStructureID":85671,"TargetStructureID":5439,"Label":"85671-5439 via Conventional from 85672 -> 85670","Type":"Conventional","Directional":true,"Links":[{"SourceID":85672,"TargetID":85670,"Directional":true}]},{"ID":17814,"SourceStructureID":85680,"TargetStructureID":5439,"Label":"85680-5439 via Conventional from 85681 -> 85679","Type":"Conventional","Directional":true,"Links":[{"SourceID":85681,"TargetID":85679,"Directional":true}]},{"ID":17815,"SourceStructureID":85683,"TargetStructureID":5439,"Label":"85683-5439 via Conventional from 85684 -> 85682","Type":"Conventional","Directional":true,"Links":[{"SourceID":85684,"TargetID":85682,"Directional":true}]},{"ID":17816,"SourceStructureID":85691,"TargetStructureID":5439,"Label":"85691-5439 via Conventional from 85692 -> 85690","Type":"Conventional","Directional":true,"Links":[{"SourceID":85692,"TargetID":85690,"Directional":true}]},{"ID":17817,"SourceStructureID":85695,"TargetStructureID":5439,"Label":"85695-5439 via Conventional from 85696 -> 85694","Type":"Conventional","Directional":true,"Links":[{"SourceID":85696,"TargetID":85694,"Directional":true}]},{"ID":17818,"SourceStructureID":85698,"TargetStructureID":5439,"Label":"85698-5439 via Conventional from 85699 -> 85697","Type":"Conventional","Directional":true,"Links":[{"SourceID":85699,"TargetID":85697,"Directional":true}]},{"ID":17819,"SourceStructureID":85703,"TargetStructureID":5439,"Label":"85703-5439 via Conventional from 85704 -> 85702","Type":"Conventional","Directional":true,"Links":[{"SourceID":85704,"TargetID":85702,"Directional":true}]},{"ID":17820,"SourceStructureID":85730,"TargetStructureID":71519,"Label":"85730-71519 via Conventional from 85744 -> 85745","Type":"Conventional","Directional":true,"Links":[{"SourceID":85744,"TargetID":85745,"Directional":true}]},{"ID":17821,"SourceStructureID":85730,"TargetStructureID":85629,"Label":"85730-85629 via Conventional from 85733 -> 85729","Type":"Conventional","Directional":true,"Links":[{"SourceID":85733,"TargetID":85729,"Directional":true}]},{"ID":17822,"SourceStructureID":85735,"TargetStructureID":5439,"Label":"85735-5439 via Conventional from 85736 -> 85734","Type":"Conventional","Directional":true,"Links":[{"SourceID":85736,"TargetID":85734,"Directional":true}]},{"ID":17823,"SourceStructureID":85740,"TargetStructureID":85730,"Label":"85740-85730 via Conventional from 85741 -> 85739","Type":"Conventional","Directional":true,"Links":[{"SourceID":85741,"TargetID":85739,"Directional":true}]},{"ID":17824,"SourceStructureID":85748,"TargetStructureID":483,"Label":"85748-483 via Conventional from 85761 -> 26825, 103536 -> 103537","Type":"Conventional","Directional":true,"Links":[{"SourceID":85761,"TargetID":26825,"Directional":true},{"SourceID":103536,"TargetID":103537,"Directional":true}]},{"ID":17825,"SourceStructureID":85748,"TargetStructureID":485,"Label":"85748-485 via Conventional from 85777 -> 85778, 85779 -> 85781, 85785 -> 100227","Type":"Conventional","Directional":true,"Links":[{"SourceID":85777,"TargetID":85778,"Directional":true},{"SourceID":85779,"TargetID":85781,"Directional":true},{"SourceID":85785,"TargetID":100227,"Directional":true}]},{"ID":17826,"SourceStructureID":85748,"TargetStructureID":85775,"Label":"85748-85775 via Conventional from 85774 -> 85776","Type":"Conventional","Directional":true,"Links":[{"SourceID":85774,"TargetID":85776,"Directional":true}]},{"ID":17827,"SourceStructureID":85748,"TargetStructureID":85783,"Label":"85748-85783 via Conventional from 85782 -> 85784","Type":"Conventional","Directional":true,"Links":[{"SourceID":85782,"TargetID":85784,"Directional":true}]},{"ID":17828,"SourceStructureID":85750,"TargetStructureID":85748,"Label":"85750-85748 via Conventional from 85751 -> 85749","Type":"Conventional","Directional":true,"Links":[{"SourceID":85751,"TargetID":85749,"Directional":true}]},{"ID":17829,"SourceStructureID":85755,"TargetStructureID":85748,"Label":"85755-85748 via Conventional from 85756 -> 85754","Type":"Conventional","Directional":true,"Links":[{"SourceID":85756,"TargetID":85754,"Directional":true}]},{"ID":17830,"SourceStructureID":85771,"TargetStructureID":85748,"Label":"85771-85748 via Conventional from 85772 -> 85770","Type":"Conventional","Directional":true,"Links":[{"SourceID":85772,"TargetID":85770,"Directional":true}]},{"ID":17831,"SourceStructureID":85792,"TargetStructureID":85730,"Label":"85792-85730 via Ribbon Synapse from 85794 -> 85791, 85798 -> 85797","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":85794,"TargetID":85791,"Directional":true},{"SourceID":85798,"TargetID":85797,"Directional":true}]},{"ID":17832,"SourceStructureID":85852,"TargetStructureID":85629,"Label":"85852-85629 via Conventional from 85853 -> 85850, 85855 -> 85854","Type":"Conventional","Directional":true,"Links":[{"SourceID":85853,"TargetID":85850,"Directional":true},{"SourceID":85855,"TargetID":85854,"Directional":true}]},{"ID":17833,"SourceStructureID":85861,"TargetStructureID":85856,"Label":"85861-85856 via Conventional from 85862 -> 85858","Type":"Conventional","Directional":true,"Links":[{"SourceID":85862,"TargetID":85858,"Directional":true}]},{"ID":17834,"SourceStructureID":85906,"TargetStructureID":6117,"Label":"85906-6117 via Conventional from 85908 -> 85918","Type":"Conventional","Directional":true,"Links":[{"SourceID":85908,"TargetID":85918,"Directional":true}]},{"ID":17835,"SourceStructureID":85906,"TargetStructureID":85909,"Label":"85906-85909 via Conventional from 85908 -> 85916","Type":"Conventional","Directional":true,"Links":[{"SourceID":85908,"TargetID":85916,"Directional":true}]},{"ID":17836,"SourceStructureID":85924,"TargetStructureID":6117,"Label":"85924-6117 via Conventional from 85926 -> 85927","Type":"Conventional","Directional":true,"Links":[{"SourceID":85926,"TargetID":85927,"Directional":true}]},{"ID":17837,"SourceStructureID":85958,"TargetStructureID":6117,"Label":"85958-6117 via Conventional from 85963 -> 58807","Type":"Conventional","Directional":true,"Links":[{"SourceID":85963,"TargetID":58807,"Directional":true}]},{"ID":17838,"SourceStructureID":85979,"TargetStructureID":6117,"Label":"85979-6117 via Conventional from 85980 -> 85981","Type":"Conventional","Directional":true,"Links":[{"SourceID":85980,"TargetID":85981,"Directional":true}]},{"ID":17839,"SourceStructureID":85982,"TargetStructureID":6117,"Label":"85982-6117 via Conventional from 85983 -> 58814","Type":"Conventional","Directional":true,"Links":[{"SourceID":85983,"TargetID":58814,"Directional":true}]},{"ID":17840,"SourceStructureID":85997,"TargetStructureID":6117,"Label":"85997-6117 via Conventional from 147479 -> 147478","Type":"Conventional","Directional":true,"Links":[{"SourceID":147479,"TargetID":147478,"Directional":true}]},{"ID":17841,"SourceStructureID":86001,"TargetStructureID":84790,"Label":"86001-84790 via Conventional from 86002 -> 86003","Type":"Conventional","Directional":true,"Links":[{"SourceID":86002,"TargetID":86003,"Directional":true}]},{"ID":17842,"SourceStructureID":86036,"TargetStructureID":6117,"Label":"86036-6117 via Conventional from 86037 -> 10536, 86039 -> 10533","Type":"Conventional","Directional":true,"Links":[{"SourceID":86037,"TargetID":10536,"Directional":true},{"SourceID":86039,"TargetID":10533,"Directional":true}]},{"ID":17843,"SourceStructureID":86045,"TargetStructureID":86047,"Label":"86045-86047 via Conventional from 86046 -> 86048","Type":"Conventional","Directional":true,"Links":[{"SourceID":86046,"TargetID":86048,"Directional":true}]},{"ID":17844,"SourceStructureID":86050,"TargetStructureID":6117,"Label":"86050-6117 via Conventional from 86052 -> 10535, 86065 -> 86066","Type":"Conventional","Directional":true,"Links":[{"SourceID":86052,"TargetID":10535,"Directional":true},{"SourceID":86065,"TargetID":86066,"Directional":true}]},{"ID":17845,"SourceStructureID":86060,"TargetStructureID":6117,"Label":"86060-6117 via Conventional from 86061 -> 86015","Type":"Conventional","Directional":true,"Links":[{"SourceID":86061,"TargetID":86015,"Directional":true}]},{"ID":17846,"SourceStructureID":86068,"TargetStructureID":6117,"Label":"86068-6117 via Conventional from 86069 -> 86067","Type":"Conventional","Directional":true,"Links":[{"SourceID":86069,"TargetID":86067,"Directional":true}]},{"ID":17847,"SourceStructureID":86098,"TargetStructureID":6117,"Label":"86098-6117 via Conventional from 86100 -> 20567","Type":"Conventional","Directional":true,"Links":[{"SourceID":86100,"TargetID":20567,"Directional":true}]},{"ID":17848,"SourceStructureID":86098,"TargetStructureID":86110,"Label":"86098-86110 via Conventional from 86118 -> 86119","Type":"Conventional","Directional":true,"Links":[{"SourceID":86118,"TargetID":86119,"Directional":true}]},{"ID":17849,"SourceStructureID":86114,"TargetStructureID":86110,"Label":"86114-86110 via Conventional from 86115 -> 86116","Type":"Conventional","Directional":true,"Links":[{"SourceID":86115,"TargetID":86116,"Directional":true}]},{"ID":17850,"SourceStructureID":86128,"TargetStructureID":6117,"Label":"86128-6117 via Conventional from 86130 -> 86131","Type":"Conventional","Directional":true,"Links":[{"SourceID":86130,"TargetID":86131,"Directional":true}]},{"ID":17851,"SourceStructureID":86128,"TargetStructureID":86110,"Label":"86128-86110 via Conventional from 86129 -> 86132","Type":"Conventional","Directional":true,"Links":[{"SourceID":86129,"TargetID":86132,"Directional":true}]},{"ID":17852,"SourceStructureID":86134,"TargetStructureID":58592,"Label":"86134-58592 via Conventional from 86135 -> 58635","Type":"Conventional","Directional":true,"Links":[{"SourceID":86135,"TargetID":58635,"Directional":true}]},{"ID":17853,"SourceStructureID":86134,"TargetStructureID":86110,"Label":"86134-86110 via Conventional from 86136 -> 86137","Type":"Conventional","Directional":true,"Links":[{"SourceID":86136,"TargetID":86137,"Directional":true}]},{"ID":17854,"SourceStructureID":86162,"TargetStructureID":6117,"Label":"86162-6117 via Conventional from 86164 -> 20575, 86169 -> 86170","Type":"Conventional","Directional":true,"Links":[{"SourceID":86164,"TargetID":20575,"Directional":true},{"SourceID":86169,"TargetID":86170,"Directional":true}]},{"ID":17855,"SourceStructureID":86165,"TargetStructureID":58714,"Label":"86165-58714 via Conventional from 86166 -> 58721","Type":"Conventional","Directional":true,"Links":[{"SourceID":86166,"TargetID":58721,"Directional":true}]},{"ID":17856,"SourceStructureID":86171,"TargetStructureID":86174,"Label":"86171-86174 via Conventional from 86176 -> 86175","Type":"Conventional","Directional":true,"Links":[{"SourceID":86176,"TargetID":86175,"Directional":true}]},{"ID":17857,"SourceStructureID":86192,"TargetStructureID":6117,"Label":"86192-6117 via Conventional from 86193 -> 86200","Type":"Conventional","Directional":true,"Links":[{"SourceID":86193,"TargetID":86200,"Directional":true}]},{"ID":17858,"SourceStructureID":86192,"TargetStructureID":32035,"Label":"86192-32035 via Conventional from 86194 -> 86196","Type":"Conventional","Directional":true,"Links":[{"SourceID":86194,"TargetID":86196,"Directional":true}]},{"ID":17859,"SourceStructureID":86201,"TargetStructureID":35894,"Label":"86201-35894 via Conventional from 86207 -> 35932","Type":"Conventional","Directional":true,"Links":[{"SourceID":86207,"TargetID":35932,"Directional":true}]},{"ID":17860,"SourceStructureID":86205,"TargetStructureID":6117,"Label":"86205-6117 via Conventional from 86206 -> 86204","Type":"Conventional","Directional":true,"Links":[{"SourceID":86206,"TargetID":86204,"Directional":true}]},{"ID":17861,"SourceStructureID":86215,"TargetStructureID":86218,"Label":"86215-86218 via Conventional from 86217 -> 86219","Type":"Conventional","Directional":true,"Links":[{"SourceID":86217,"TargetID":86219,"Directional":true}]},{"ID":17862,"SourceStructureID":86218,"TargetStructureID":6117,"Label":"86218-6117 via Conventional from 86227 -> 86082","Type":"Conventional","Directional":true,"Links":[{"SourceID":86227,"TargetID":86082,"Directional":true}]},{"ID":17863,"SourceStructureID":86218,"TargetStructureID":6300,"Label":"86218-6300 via Conventional from 86220 -> 86221","Type":"Conventional","Directional":true,"Links":[{"SourceID":86220,"TargetID":86221,"Directional":true}]},{"ID":17864,"SourceStructureID":86224,"TargetStructureID":6117,"Label":"86224-6117 via Conventional from 86226 -> 86225","Type":"Conventional","Directional":true,"Links":[{"SourceID":86226,"TargetID":86225,"Directional":true}]},{"ID":17865,"SourceStructureID":86228,"TargetStructureID":6117,"Label":"86228-6117 via Conventional from 86229 -> 86230","Type":"Conventional","Directional":true,"Links":[{"SourceID":86229,"TargetID":86230,"Directional":true}]},{"ID":17866,"SourceStructureID":86231,"TargetStructureID":6117,"Label":"86231-6117 via Conventional from 86232 -> 20586","Type":"Conventional","Directional":true,"Links":[{"SourceID":86232,"TargetID":20586,"Directional":true}]},{"ID":17867,"SourceStructureID":86231,"TargetStructureID":7594,"Label":"86231-7594 via Conventional from 86233 -> 86236","Type":"Conventional","Directional":true,"Links":[{"SourceID":86233,"TargetID":86236,"Directional":true}]},{"ID":17868,"SourceStructureID":86239,"TargetStructureID":4877,"Label":"86239-4877 via Conventional from 86240 -> 46579","Type":"Conventional","Directional":true,"Links":[{"SourceID":86240,"TargetID":46579,"Directional":true}]},{"ID":17869,"SourceStructureID":86244,"TargetStructureID":6117,"Label":"86244-6117 via Conventional from 86245 -> 20588","Type":"Conventional","Directional":true,"Links":[{"SourceID":86245,"TargetID":20588,"Directional":true}]},{"ID":17870,"SourceStructureID":86256,"TargetStructureID":3756,"Label":"86256-3756 via Conventional from 120455 -> 116216","Type":"Conventional","Directional":true,"Links":[{"SourceID":120455,"TargetID":116216,"Directional":true}]},{"ID":17871,"SourceStructureID":86256,"TargetStructureID":6117,"Label":"86256-6117 via Conventional from 86257 -> 86258","Type":"Conventional","Directional":true,"Links":[{"SourceID":86257,"TargetID":86258,"Directional":true}]},{"ID":17872,"SourceStructureID":86260,"TargetStructureID":6117,"Label":"86260-6117 via Conventional from 86261 -> 86259","Type":"Conventional","Directional":true,"Links":[{"SourceID":86261,"TargetID":86259,"Directional":true}]},{"ID":17873,"SourceStructureID":86268,"TargetStructureID":6117,"Label":"86268-6117 via Conventional from 86270 -> 86271","Type":"Conventional","Directional":true,"Links":[{"SourceID":86270,"TargetID":86271,"Directional":true}]},{"ID":17874,"SourceStructureID":86276,"TargetStructureID":6117,"Label":"86276-6117 via Conventional from 86277 -> 86278","Type":"Conventional","Directional":true,"Links":[{"SourceID":86277,"TargetID":86278,"Directional":true}]},{"ID":17875,"SourceStructureID":86311,"TargetStructureID":142,"Label":"86311-142 via Conventional from 126025 -> 126024","Type":"Conventional","Directional":true,"Links":[{"SourceID":126025,"TargetID":126024,"Directional":true}]},{"ID":17876,"SourceStructureID":86315,"TargetStructureID":142,"Label":"86315-142 via Conventional from 86318 -> 31800","Type":"Conventional","Directional":true,"Links":[{"SourceID":86318,"TargetID":31800,"Directional":true}]},{"ID":17877,"SourceStructureID":86315,"TargetStructureID":606,"Label":"86315-606 via Conventional from 99409 -> 99410, 99411 -> 39887","Type":"Conventional","Directional":true,"Links":[{"SourceID":99409,"TargetID":99410,"Directional":true},{"SourceID":99411,"TargetID":39887,"Directional":true}]},{"ID":17878,"SourceStructureID":86315,"TargetStructureID":6117,"Label":"86315-6117 via Conventional from 86316 -> 86317","Type":"Conventional","Directional":true,"Links":[{"SourceID":86316,"TargetID":86317,"Directional":true}]},{"ID":17879,"SourceStructureID":86327,"TargetStructureID":142,"Label":"86327-142 via Conventional from 86328 -> 31798","Type":"Conventional","Directional":true,"Links":[{"SourceID":86328,"TargetID":31798,"Directional":true}]},{"ID":17880,"SourceStructureID":86334,"TargetStructureID":142,"Label":"86334-142 via Conventional from 86335 -> 31796","Type":"Conventional","Directional":true,"Links":[{"SourceID":86335,"TargetID":31796,"Directional":true}]},{"ID":17881,"SourceStructureID":86353,"TargetStructureID":6117,"Label":"86353-6117 via Conventional from 86354 -> 86355","Type":"Conventional","Directional":true,"Links":[{"SourceID":86354,"TargetID":86355,"Directional":true}]},{"ID":17882,"SourceStructureID":86356,"TargetStructureID":86624,"Label":"86356-86624 via Conventional from 86623 -> 86625","Type":"Conventional","Directional":true,"Links":[{"SourceID":86623,"TargetID":86625,"Directional":true}]},{"ID":17883,"SourceStructureID":86369,"TargetStructureID":6117,"Label":"86369-6117 via Conventional from 86371 -> 86368","Type":"Conventional","Directional":true,"Links":[{"SourceID":86371,"TargetID":86368,"Directional":true}]},{"ID":17884,"SourceStructureID":86369,"TargetStructureID":58714,"Label":"86369-58714 via Conventional from 86370 -> 58735","Type":"Conventional","Directional":true,"Links":[{"SourceID":86370,"TargetID":58735,"Directional":true}]},{"ID":17885,"SourceStructureID":86389,"TargetStructureID":6117,"Label":"86389-6117 via Conventional from 86390 -> 86393","Type":"Conventional","Directional":true,"Links":[{"SourceID":86390,"TargetID":86393,"Directional":true}]},{"ID":17886,"SourceStructureID":86389,"TargetStructureID":86391,"Label":"86389-86391 via Conventional from 86390 -> 86392","Type":"Conventional","Directional":true,"Links":[{"SourceID":86390,"TargetID":86392,"Directional":true}]},{"ID":17887,"SourceStructureID":86420,"TargetStructureID":6117,"Label":"86420-6117 via Conventional from 86421 -> 30912","Type":"Conventional","Directional":true,"Links":[{"SourceID":86421,"TargetID":30912,"Directional":true}]},{"ID":17888,"SourceStructureID":86438,"TargetStructureID":40602,"Label":"86438-40602 via Conventional from 86439 -> 41445, 86440 -> 41444","Type":"Conventional","Directional":true,"Links":[{"SourceID":86439,"TargetID":41445,"Directional":true},{"SourceID":86440,"TargetID":41444,"Directional":true}]},{"ID":17889,"SourceStructureID":86466,"TargetStructureID":6117,"Label":"86466-6117 via Conventional from 86468 -> 86469","Type":"Conventional","Directional":true,"Links":[{"SourceID":86468,"TargetID":86469,"Directional":true}]},{"ID":17890,"SourceStructureID":86473,"TargetStructureID":5374,"Label":"86473-5374 via Conventional from 86476 -> 69023","Type":"Conventional","Directional":true,"Links":[{"SourceID":86476,"TargetID":69023,"Directional":true}]},{"ID":17891,"SourceStructureID":86473,"TargetStructureID":6117,"Label":"86473-6117 via Conventional from 86474 -> 86091","Type":"Conventional","Directional":true,"Links":[{"SourceID":86474,"TargetID":86091,"Directional":true}]},{"ID":17892,"SourceStructureID":86479,"TargetStructureID":86481,"Label":"86479-86481 via Conventional from 86483 -> 86482","Type":"Conventional","Directional":true,"Links":[{"SourceID":86483,"TargetID":86482,"Directional":true}]},{"ID":17893,"SourceStructureID":86485,"TargetStructureID":6117,"Label":"86485-6117 via Conventional from 86486 -> 86487","Type":"Conventional","Directional":true,"Links":[{"SourceID":86486,"TargetID":86487,"Directional":true}]},{"ID":17894,"SourceStructureID":86496,"TargetStructureID":6117,"Label":"86496-6117 via Conventional from 86497 -> 86498","Type":"Conventional","Directional":true,"Links":[{"SourceID":86497,"TargetID":86498,"Directional":true}]},{"ID":17895,"SourceStructureID":86512,"TargetStructureID":6117,"Label":"86512-6117 via Conventional from 86513 -> 30918","Type":"Conventional","Directional":true,"Links":[{"SourceID":86513,"TargetID":30918,"Directional":true}]},{"ID":17896,"SourceStructureID":86563,"TargetStructureID":6117,"Label":"86563-6117 via Conventional from 86567 -> 86568","Type":"Conventional","Directional":true,"Links":[{"SourceID":86567,"TargetID":86568,"Directional":true}]},{"ID":17897,"SourceStructureID":86580,"TargetStructureID":308,"Label":"86580-308 via Conventional from 86581 -> 86578","Type":"Conventional","Directional":true,"Links":[{"SourceID":86581,"TargetID":86578,"Directional":true}]},{"ID":17898,"SourceStructureID":86582,"TargetStructureID":7594,"Label":"86582-7594 via Conventional from 86589 -> 86590","Type":"Conventional","Directional":true,"Links":[{"SourceID":86589,"TargetID":86590,"Directional":true}]},{"ID":17899,"SourceStructureID":86607,"TargetStructureID":6117,"Label":"86607-6117 via Conventional from 86608 -> 30919","Type":"Conventional","Directional":true,"Links":[{"SourceID":86608,"TargetID":30919,"Directional":true}]},{"ID":17900,"SourceStructureID":86609,"TargetStructureID":6117,"Label":"86609-6117 via Conventional from 86611 -> 30920","Type":"Conventional","Directional":true,"Links":[{"SourceID":86611,"TargetID":30920,"Directional":true}]},{"ID":17901,"SourceStructureID":86614,"TargetStructureID":6117,"Label":"86614-6117 via Conventional from 86617 -> 30923","Type":"Conventional","Directional":true,"Links":[{"SourceID":86617,"TargetID":30923,"Directional":true}]},{"ID":17902,"SourceStructureID":86615,"TargetStructureID":6117,"Label":"86615-6117 via Conventional from 86616 -> 30921","Type":"Conventional","Directional":true,"Links":[{"SourceID":86616,"TargetID":30921,"Directional":true}]},{"ID":17903,"SourceStructureID":86626,"TargetStructureID":308,"Label":"86626-308 via Conventional from 86627 -> 31861","Type":"Conventional","Directional":true,"Links":[{"SourceID":86627,"TargetID":31861,"Directional":true}]},{"ID":17904,"SourceStructureID":86628,"TargetStructureID":308,"Label":"86628-308 via Conventional from 86629 -> 31863","Type":"Conventional","Directional":true,"Links":[{"SourceID":86629,"TargetID":31863,"Directional":true}]},{"ID":17905,"SourceStructureID":86630,"TargetStructureID":308,"Label":"86630-308 via Conventional from 86631 -> 31868","Type":"Conventional","Directional":true,"Links":[{"SourceID":86631,"TargetID":31868,"Directional":true}]},{"ID":17906,"SourceStructureID":86632,"TargetStructureID":308,"Label":"86632-308 via Conventional from 86633 -> 31869","Type":"Conventional","Directional":true,"Links":[{"SourceID":86633,"TargetID":31869,"Directional":true}]},{"ID":17907,"SourceStructureID":86634,"TargetStructureID":483,"Label":"86634-483 via Conventional from 102383 -> 102385","Type":"Conventional","Directional":true,"Links":[{"SourceID":102383,"TargetID":102385,"Directional":true}]},{"ID":17908,"SourceStructureID":86634,"TargetStructureID":485,"Label":"86634-485 via Conventional from 86687 -> 50885","Type":"Conventional","Directional":true,"Links":[{"SourceID":86687,"TargetID":50885,"Directional":true}]},{"ID":17909,"SourceStructureID":86634,"TargetStructureID":46823,"Label":"86634-46823 via Conventional from 86688 -> 86689","Type":"Conventional","Directional":true,"Links":[{"SourceID":86688,"TargetID":86689,"Directional":true}]},{"ID":17910,"SourceStructureID":86634,"TargetStructureID":86662,"Label":"86634-86662 via Conventional from 86661 -> 86663","Type":"Conventional","Directional":true,"Links":[{"SourceID":86661,"TargetID":86663,"Directional":true}]},{"ID":17911,"SourceStructureID":86634,"TargetStructureID":86685,"Label":"86634-86685 via Conventional from 86684 -> 86686","Type":"Conventional","Directional":true,"Links":[{"SourceID":86684,"TargetID":86686,"Directional":true}]},{"ID":17912,"SourceStructureID":86637,"TargetStructureID":308,"Label":"86637-308 via Conventional from 86638 -> 43097","Type":"Conventional","Directional":true,"Links":[{"SourceID":86638,"TargetID":43097,"Directional":true}]},{"ID":17913,"SourceStructureID":86640,"TargetStructureID":86634,"Label":"86640-86634 via Conventional from 86641 -> 86639","Type":"Conventional","Directional":true,"Links":[{"SourceID":86641,"TargetID":86639,"Directional":true}]},{"ID":17914,"SourceStructureID":86644,"TargetStructureID":308,"Label":"86644-308 via Conventional from 86645 -> 43368","Type":"Conventional","Directional":true,"Links":[{"SourceID":86645,"TargetID":43368,"Directional":true}]},{"ID":17915,"SourceStructureID":86644,"TargetStructureID":71954,"Label":"86644-71954 via Conventional from 86650 -> 86651","Type":"Conventional","Directional":true,"Links":[{"SourceID":86650,"TargetID":86651,"Directional":true}]},{"ID":17916,"SourceStructureID":86667,"TargetStructureID":86634,"Label":"86667-86634 via Conventional from 86669 -> 86670","Type":"Conventional","Directional":true,"Links":[{"SourceID":86669,"TargetID":86670,"Directional":true}]},{"ID":17917,"SourceStructureID":86672,"TargetStructureID":86634,"Label":"86672-86634 via Conventional from 86673 -> 86671","Type":"Conventional","Directional":true,"Links":[{"SourceID":86673,"TargetID":86671,"Directional":true}]},{"ID":17918,"SourceStructureID":86675,"TargetStructureID":86634,"Label":"86675-86634 via Conventional from 86678 -> 86674","Type":"Conventional","Directional":true,"Links":[{"SourceID":86678,"TargetID":86674,"Directional":true}]},{"ID":17919,"SourceStructureID":86691,"TargetStructureID":86634,"Label":"86691-86634 via Conventional from 86692 -> 86690","Type":"Conventional","Directional":true,"Links":[{"SourceID":86692,"TargetID":86690,"Directional":true}]},{"ID":17920,"SourceStructureID":86691,"TargetStructureID":101050,"Label":"86691-101050 via Conventional from 101061 -> 101060","Type":"Conventional","Directional":true,"Links":[{"SourceID":101061,"TargetID":101060,"Directional":true}]},{"ID":17921,"SourceStructureID":86697,"TargetStructureID":10596,"Label":"86697-10596 via Conventional from 86698 -> 86696","Type":"Conventional","Directional":true,"Links":[{"SourceID":86698,"TargetID":86696,"Directional":true}]},{"ID":17922,"SourceStructureID":86712,"TargetStructureID":308,"Label":"86712-308 via Conventional from 86713 -> 42631","Type":"Conventional","Directional":true,"Links":[{"SourceID":86713,"TargetID":42631,"Directional":true}]},{"ID":17923,"SourceStructureID":86741,"TargetStructureID":593,"Label":"86741-593 via Conventional from 115737 -> 115736","Type":"Conventional","Directional":true,"Links":[{"SourceID":115737,"TargetID":115736,"Directional":true}]},{"ID":17924,"SourceStructureID":86747,"TargetStructureID":10959,"Label":"86747-10959 via Conventional from 86748 -> 16368, 86749 -> 16371","Type":"Conventional","Directional":true,"Links":[{"SourceID":86748,"TargetID":16368,"Directional":true},{"SourceID":86749,"TargetID":16371,"Directional":true}]},{"ID":17925,"SourceStructureID":86761,"TargetStructureID":10959,"Label":"86761-10959 via Conventional from 86762 -> 86760, 86765 -> 16376, 86766 -> 16377","Type":"Conventional","Directional":true,"Links":[{"SourceID":86762,"TargetID":86760,"Directional":true},{"SourceID":86765,"TargetID":16376,"Directional":true},{"SourceID":86766,"TargetID":16377,"Directional":true}]},{"ID":17926,"SourceStructureID":86767,"TargetStructureID":10959,"Label":"86767-10959 via Conventional from 86768 -> 16375","Type":"Conventional","Directional":true,"Links":[{"SourceID":86768,"TargetID":16375,"Directional":true}]},{"ID":17927,"SourceStructureID":86775,"TargetStructureID":10959,"Label":"86775-10959 via Conventional from 86911 -> 86912","Type":"Conventional","Directional":true,"Links":[{"SourceID":86911,"TargetID":86912,"Directional":true}]},{"ID":17928,"SourceStructureID":86783,"TargetStructureID":10959,"Label":"86783-10959 via Conventional from 86784 -> 86782, 86790 -> 86793, 86791 -> 86792, 86798 -> 16554","Type":"Conventional","Directional":true,"Links":[{"SourceID":86784,"TargetID":86782,"Directional":true},{"SourceID":86790,"TargetID":86793,"Directional":true},{"SourceID":86791,"TargetID":86792,"Directional":true},{"SourceID":86798,"TargetID":16554,"Directional":true}]},{"ID":17929,"SourceStructureID":86799,"TargetStructureID":10959,"Label":"86799-10959 via Conventional from 86800 -> 16552, 86801 -> 16553, 86803 -> 86804, 87717 -> 87718","Type":"Conventional","Directional":true,"Links":[{"SourceID":86800,"TargetID":16552,"Directional":true},{"SourceID":86801,"TargetID":16553,"Directional":true},{"SourceID":86803,"TargetID":86804,"Directional":true},{"SourceID":87717,"TargetID":87718,"Directional":true}]},{"ID":17930,"SourceStructureID":86806,"TargetStructureID":10959,"Label":"86806-10959 via Conventional from 86807 -> 16556","Type":"Conventional","Directional":true,"Links":[{"SourceID":86807,"TargetID":16556,"Directional":true}]},{"ID":17931,"SourceStructureID":86812,"TargetStructureID":10959,"Label":"86812-10959 via Conventional from 86813 -> 86811","Type":"Conventional","Directional":true,"Links":[{"SourceID":86813,"TargetID":86811,"Directional":true}]},{"ID":17932,"SourceStructureID":86816,"TargetStructureID":10959,"Label":"86816-10959 via Conventional from 86817 -> 86815","Type":"Conventional","Directional":true,"Links":[{"SourceID":86817,"TargetID":86815,"Directional":true}]},{"ID":17933,"SourceStructureID":86818,"TargetStructureID":10959,"Label":"86818-10959 via Conventional from 86819 -> 86814, 86821 -> 86820","Type":"Conventional","Directional":true,"Links":[{"SourceID":86819,"TargetID":86814,"Directional":true},{"SourceID":86821,"TargetID":86820,"Directional":true}]},{"ID":17934,"SourceStructureID":86822,"TargetStructureID":10959,"Label":"86822-10959 via Conventional from 86831 -> 86832","Type":"Conventional","Directional":true,"Links":[{"SourceID":86831,"TargetID":86832,"Directional":true}]},{"ID":17935,"SourceStructureID":86838,"TargetStructureID":10959,"Label":"86838-10959 via Conventional from 86840 -> 86841, 86842 -> 86843, 86844 -> 86845, 86846 -> 86847, 86848 -> 86849, 86851 -> 86852","Type":"Conventional","Directional":true,"Links":[{"SourceID":86840,"TargetID":86841,"Directional":true},{"SourceID":86842,"TargetID":86843,"Directional":true},{"SourceID":86844,"TargetID":86845,"Directional":true},{"SourceID":86846,"TargetID":86847,"Directional":true},{"SourceID":86848,"TargetID":86849,"Directional":true},{"SourceID":86851,"TargetID":86852,"Directional":true}]},{"ID":17936,"SourceStructureID":86854,"TargetStructureID":10959,"Label":"86854-10959 via Conventional from 86855 -> 86853","Type":"Conventional","Directional":true,"Links":[{"SourceID":86855,"TargetID":86853,"Directional":true}]},{"ID":17937,"SourceStructureID":86857,"TargetStructureID":170,"Label":"86857-170 via Conventional from 86959 -> 1112","Type":"Conventional","Directional":true,"Links":[{"SourceID":86959,"TargetID":1112,"Directional":true}]},{"ID":17938,"SourceStructureID":86857,"TargetStructureID":23512,"Label":"86857-23512 via Conventional from 86955 -> 23513","Type":"Conventional","Directional":true,"Links":[{"SourceID":86955,"TargetID":23513,"Directional":true}]},{"ID":17939,"SourceStructureID":86858,"TargetStructureID":10959,"Label":"86858-10959 via Conventional from 86859 -> 16391","Type":"Conventional","Directional":true,"Links":[{"SourceID":86859,"TargetID":16391,"Directional":true}]},{"ID":17940,"SourceStructureID":86868,"TargetStructureID":10959,"Label":"86868-10959 via Conventional from 86869 -> 86870","Type":"Conventional","Directional":true,"Links":[{"SourceID":86869,"TargetID":86870,"Directional":true}]},{"ID":17941,"SourceStructureID":86871,"TargetStructureID":10959,"Label":"86871-10959 via Conventional from 86874 -> 86875","Type":"Conventional","Directional":true,"Links":[{"SourceID":86874,"TargetID":86875,"Directional":true}]},{"ID":17942,"SourceStructureID":86876,"TargetStructureID":10959,"Label":"86876-10959 via Conventional from 86878 -> 86879, 86885 -> 86886","Type":"Conventional","Directional":true,"Links":[{"SourceID":86878,"TargetID":86879,"Directional":true},{"SourceID":86885,"TargetID":86886,"Directional":true}]},{"ID":17943,"SourceStructureID":86888,"TargetStructureID":10959,"Label":"86888-10959 via Conventional from 86889 -> 86887","Type":"Conventional","Directional":true,"Links":[{"SourceID":86889,"TargetID":86887,"Directional":true}]},{"ID":17944,"SourceStructureID":86891,"TargetStructureID":10959,"Label":"86891-10959 via Conventional from 86894 -> 86895, 86896 -> 86897","Type":"Conventional","Directional":true,"Links":[{"SourceID":86894,"TargetID":86895,"Directional":true},{"SourceID":86896,"TargetID":86897,"Directional":true}]},{"ID":17945,"SourceStructureID":86898,"TargetStructureID":10959,"Label":"86898-10959 via Conventional from 86899 -> 86900","Type":"Conventional","Directional":true,"Links":[{"SourceID":86899,"TargetID":86900,"Directional":true}]},{"ID":17946,"SourceStructureID":86901,"TargetStructureID":10959,"Label":"86901-10959 via Conventional from 86902 -> 86903","Type":"Conventional","Directional":true,"Links":[{"SourceID":86902,"TargetID":86903,"Directional":true}]},{"ID":17947,"SourceStructureID":86904,"TargetStructureID":10959,"Label":"86904-10959 via Conventional from 86905 -> 86907, 86906 -> 86908","Type":"Conventional","Directional":true,"Links":[{"SourceID":86905,"TargetID":86907,"Directional":true},{"SourceID":86906,"TargetID":86908,"Directional":true}]},{"ID":17948,"SourceStructureID":86913,"TargetStructureID":10959,"Label":"86913-10959 via Conventional from 86921 -> 16588, 86922 -> 86923, 86924 -> 86925","Type":"Conventional","Directional":true,"Links":[{"SourceID":86921,"TargetID":16588,"Directional":true},{"SourceID":86922,"TargetID":86923,"Directional":true},{"SourceID":86924,"TargetID":86925,"Directional":true}]},{"ID":17949,"SourceStructureID":86915,"TargetStructureID":10959,"Label":"86915-10959 via Conventional from 86916 -> 16585, 86919 -> 16598","Type":"Conventional","Directional":true,"Links":[{"SourceID":86916,"TargetID":16585,"Directional":true},{"SourceID":86919,"TargetID":16598,"Directional":true}]},{"ID":17950,"SourceStructureID":86927,"TargetStructureID":58696,"Label":"86927-58696 via Conventional from 86928 -> 58701","Type":"Conventional","Directional":true,"Links":[{"SourceID":86928,"TargetID":58701,"Directional":true}]},{"ID":17951,"SourceStructureID":86933,"TargetStructureID":58696,"Label":"86933-58696 via Conventional from 86935 -> 58699","Type":"Conventional","Directional":true,"Links":[{"SourceID":86935,"TargetID":58699,"Directional":true}]},{"ID":17952,"SourceStructureID":86934,"TargetStructureID":58696,"Label":"86934-58696 via Conventional from 86936 -> 58700","Type":"Conventional","Directional":true,"Links":[{"SourceID":86936,"TargetID":58700,"Directional":true}]},{"ID":17953,"SourceStructureID":86940,"TargetStructureID":58696,"Label":"86940-58696 via Conventional from 86941 -> 86939","Type":"Conventional","Directional":true,"Links":[{"SourceID":86941,"TargetID":86939,"Directional":true}]},{"ID":17954,"SourceStructureID":86945,"TargetStructureID":58696,"Label":"86945-58696 via Conventional from 86946 -> 86947","Type":"Conventional","Directional":true,"Links":[{"SourceID":86946,"TargetID":86947,"Directional":true}]},{"ID":17955,"SourceStructureID":86951,"TargetStructureID":86945,"Label":"86951-86945 via Conventional from 86952 -> 86950","Type":"Conventional","Directional":true,"Links":[{"SourceID":86952,"TargetID":86950,"Directional":true}]},{"ID":17956,"SourceStructureID":86971,"TargetStructureID":58696,"Label":"86971-58696 via Conventional from 86972 -> 86970","Type":"Conventional","Directional":true,"Links":[{"SourceID":86972,"TargetID":86970,"Directional":true}]},{"ID":17957,"SourceStructureID":86980,"TargetStructureID":58696,"Label":"86980-58696 via Conventional from 86981 -> 86982","Type":"Conventional","Directional":true,"Links":[{"SourceID":86981,"TargetID":86982,"Directional":true}]},{"ID":17958,"SourceStructureID":86988,"TargetStructureID":86985,"Label":"86988-86985 via Conventional from 86989 -> 86987","Type":"Conventional","Directional":true,"Links":[{"SourceID":86989,"TargetID":86987,"Directional":true}]},{"ID":17959,"SourceStructureID":86997,"TargetStructureID":5377,"Label":"86997-5377 via Conventional from 86998 -> 22733","Type":"Conventional","Directional":true,"Links":[{"SourceID":86998,"TargetID":22733,"Directional":true}]},{"ID":17960,"SourceStructureID":87002,"TargetStructureID":86997,"Label":"87002-86997 via Conventional from 87003 -> 87001","Type":"Conventional","Directional":true,"Links":[{"SourceID":87003,"TargetID":87001,"Directional":true}]},{"ID":17961,"SourceStructureID":87005,"TargetStructureID":5377,"Label":"87005-5377 via Conventional from 87006 -> 22737","Type":"Conventional","Directional":true,"Links":[{"SourceID":87006,"TargetID":22737,"Directional":true}]},{"ID":17962,"SourceStructureID":87057,"TargetStructureID":5292,"Label":"87057-5292 via Conventional from 87058 -> 87056","Type":"Conventional","Directional":true,"Links":[{"SourceID":87058,"TargetID":87056,"Directional":true}]},{"ID":17963,"SourceStructureID":87067,"TargetStructureID":173,"Label":"87067-173 via Conventional from 87068 -> 87066","Type":"Conventional","Directional":true,"Links":[{"SourceID":87068,"TargetID":87066,"Directional":true}]},{"ID":17964,"SourceStructureID":87075,"TargetStructureID":173,"Label":"87075-173 via Conventional from 87078 -> 87074","Type":"Conventional","Directional":true,"Links":[{"SourceID":87078,"TargetID":87074,"Directional":true}]},{"ID":17965,"SourceStructureID":87076,"TargetStructureID":173,"Label":"87076-173 via Conventional from 87077 -> 87073","Type":"Conventional","Directional":true,"Links":[{"SourceID":87077,"TargetID":87073,"Directional":true}]},{"ID":17966,"SourceStructureID":87098,"TargetStructureID":5377,"Label":"87098-5377 via Ribbon Synapse from 87101 -> 87102, 87105 -> 87106","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87101,"TargetID":87102,"Directional":true},{"SourceID":87105,"TargetID":87106,"Directional":true}]},{"ID":17967,"SourceStructureID":87098,"TargetStructureID":87095,"Label":"87098-87095 via Ribbon Synapse from 87105 -> 87107","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87105,"TargetID":87107,"Directional":true}]},{"ID":17968,"SourceStructureID":87103,"TargetStructureID":87098,"Label":"87103-87098 via Conventional from 87104 -> 87100","Type":"Conventional","Directional":true,"Links":[{"SourceID":87104,"TargetID":87100,"Directional":true}]},{"ID":17969,"SourceStructureID":87137,"TargetStructureID":82887,"Label":"87137-82887 via Conventional from 87138 -> 87136","Type":"Conventional","Directional":true,"Links":[{"SourceID":87138,"TargetID":87136,"Directional":true}]},{"ID":17970,"SourceStructureID":87145,"TargetStructureID":87158,"Label":"87145-87158 via Conventional from 87157 -> 87159","Type":"Conventional","Directional":true,"Links":[{"SourceID":87157,"TargetID":87159,"Directional":true}]},{"ID":17971,"SourceStructureID":87149,"TargetStructureID":87145,"Label":"87149-87145 via Conventional from 87150 -> 87148","Type":"Conventional","Directional":true,"Links":[{"SourceID":87150,"TargetID":87148,"Directional":true}]},{"ID":17972,"SourceStructureID":87189,"TargetStructureID":87183,"Label":"87189-87183 via Conventional from 87190 -> 87185","Type":"Conventional","Directional":true,"Links":[{"SourceID":87190,"TargetID":87185,"Directional":true}]},{"ID":17973,"SourceStructureID":87208,"TargetStructureID":87183,"Label":"87208-87183 via Conventional from 87209 -> 87207","Type":"Conventional","Directional":true,"Links":[{"SourceID":87209,"TargetID":87207,"Directional":true}]},{"ID":17974,"SourceStructureID":87224,"TargetStructureID":87227,"Label":"87224-87227 via Conventional from 87226 -> 87228","Type":"Conventional","Directional":true,"Links":[{"SourceID":87226,"TargetID":87228,"Directional":true}]},{"ID":17975,"SourceStructureID":87277,"TargetStructureID":6162,"Label":"87277-6162 via Conventional from 87288 -> 87289","Type":"Conventional","Directional":true,"Links":[{"SourceID":87288,"TargetID":87289,"Directional":true}]},{"ID":17976,"SourceStructureID":87294,"TargetStructureID":5499,"Label":"87294-5499 via Conventional from 87320 -> 87322","Type":"Conventional","Directional":true,"Links":[{"SourceID":87320,"TargetID":87322,"Directional":true}]},{"ID":17977,"SourceStructureID":87294,"TargetStructureID":6118,"Label":"87294-6118 via Conventional from 87300 -> 65919, 87301 -> 87302","Type":"Conventional","Directional":true,"Links":[{"SourceID":87300,"TargetID":65919,"Directional":true},{"SourceID":87301,"TargetID":87302,"Directional":true}]},{"ID":17978,"SourceStructureID":87294,"TargetStructureID":7024,"Label":"87294-7024 via Conventional from 87323 -> 87332","Type":"Conventional","Directional":true,"Links":[{"SourceID":87323,"TargetID":87332,"Directional":true}]},{"ID":17979,"SourceStructureID":87294,"TargetStructureID":87315,"Label":"87294-87315 via Conventional from 87314 -> 87316","Type":"Conventional","Directional":true,"Links":[{"SourceID":87314,"TargetID":87316,"Directional":true}]},{"ID":17980,"SourceStructureID":87304,"TargetStructureID":87294,"Label":"87304-87294 via Conventional from 87305 -> 87303","Type":"Conventional","Directional":true,"Links":[{"SourceID":87305,"TargetID":87303,"Directional":true}]},{"ID":17981,"SourceStructureID":87312,"TargetStructureID":87309,"Label":"87312-87309 via Conventional from 87313 -> 87311","Type":"Conventional","Directional":true,"Links":[{"SourceID":87313,"TargetID":87311,"Directional":true}]},{"ID":17982,"SourceStructureID":87337,"TargetStructureID":82677,"Label":"87337-82677 via Conventional from 87338 -> 87336","Type":"Conventional","Directional":true,"Links":[{"SourceID":87338,"TargetID":87336,"Directional":true}]},{"ID":17983,"SourceStructureID":87340,"TargetStructureID":82677,"Label":"87340-82677 via Conventional from 87341 -> 87339","Type":"Conventional","Directional":true,"Links":[{"SourceID":87341,"TargetID":87339,"Directional":true}]},{"ID":17984,"SourceStructureID":87342,"TargetStructureID":87345,"Label":"87342-87345 via Conventional from 87344 -> 87346","Type":"Conventional","Directional":true,"Links":[{"SourceID":87344,"TargetID":87346,"Directional":true}]},{"ID":17985,"SourceStructureID":87342,"TargetStructureID":87361,"Label":"87342-87361 via Conventional from 87360 -> 87362","Type":"Conventional","Directional":true,"Links":[{"SourceID":87360,"TargetID":87362,"Directional":true}]},{"ID":17986,"SourceStructureID":87342,"TargetStructureID":87377,"Label":"87342-87377 via Conventional from 87376 -> 87381","Type":"Conventional","Directional":true,"Links":[{"SourceID":87376,"TargetID":87381,"Directional":true}]},{"ID":17987,"SourceStructureID":87345,"TargetStructureID":606,"Label":"87345-606 via Conventional from 87358 -> 47380","Type":"Conventional","Directional":true,"Links":[{"SourceID":87358,"TargetID":47380,"Directional":true}]},{"ID":17988,"SourceStructureID":87345,"TargetStructureID":87349,"Label":"87345-87349 via Conventional from 87348 -> 87350","Type":"Conventional","Directional":true,"Links":[{"SourceID":87348,"TargetID":87350,"Directional":true}]},{"ID":17989,"SourceStructureID":87366,"TargetStructureID":87342,"Label":"87366-87342 via Conventional from 87367 -> 87368","Type":"Conventional","Directional":true,"Links":[{"SourceID":87367,"TargetID":87368,"Directional":true}]},{"ID":17990,"SourceStructureID":87373,"TargetStructureID":87342,"Label":"87373-87342 via Conventional from 87374 -> 87372","Type":"Conventional","Directional":true,"Links":[{"SourceID":87374,"TargetID":87372,"Directional":true}]},{"ID":17991,"SourceStructureID":87379,"TargetStructureID":5150,"Label":"87379-5150 via Ribbon Synapse from 131332 -> 5228","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131332,"TargetID":5228,"Directional":true}]},{"ID":17992,"SourceStructureID":87379,"TargetStructureID":87377,"Label":"87379-87377 via Ribbon Synapse from 87380 -> 87378","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":87380,"TargetID":87378,"Directional":true}]},{"ID":17993,"SourceStructureID":87387,"TargetStructureID":87385,"Label":"87387-87385 via Conventional from 87388 -> 87386","Type":"Conventional","Directional":true,"Links":[{"SourceID":87388,"TargetID":87386,"Directional":true}]},{"ID":17994,"SourceStructureID":87390,"TargetStructureID":87385,"Label":"87390-87385 via Conventional from 87391 -> 87389","Type":"Conventional","Directional":true,"Links":[{"SourceID":87391,"TargetID":87389,"Directional":true}]},{"ID":17995,"SourceStructureID":87403,"TargetStructureID":87342,"Label":"87403-87342 via Conventional from 87404 -> 87402","Type":"Conventional","Directional":true,"Links":[{"SourceID":87404,"TargetID":87402,"Directional":true}]},{"ID":17996,"SourceStructureID":87419,"TargetStructureID":6047,"Label":"87419-6047 via Conventional from 87431 -> 61329","Type":"Conventional","Directional":true,"Links":[{"SourceID":87431,"TargetID":61329,"Directional":true}]},{"ID":17997,"SourceStructureID":87419,"TargetStructureID":6120,"Label":"87419-6120 via Conventional from 87425 -> 87427, 111510 -> 61184","Type":"Conventional","Directional":true,"Links":[{"SourceID":87425,"TargetID":87427,"Directional":true},{"SourceID":111510,"TargetID":61184,"Directional":true}]},{"ID":17998,"SourceStructureID":87419,"TargetStructureID":87428,"Label":"87419-87428 via Conventional from 87426 -> 87429","Type":"Conventional","Directional":true,"Links":[{"SourceID":87426,"TargetID":87429,"Directional":true}]},{"ID":17999,"SourceStructureID":87432,"TargetStructureID":6118,"Label":"87432-6118 via Conventional from 87443 -> 87444","Type":"Conventional","Directional":true,"Links":[{"SourceID":87443,"TargetID":87444,"Directional":true}]},{"ID":18000,"SourceStructureID":87432,"TargetStructureID":6120,"Label":"87432-6120 via Conventional from 87441 -> 61161, 87445 -> 87446","Type":"Conventional","Directional":true,"Links":[{"SourceID":87441,"TargetID":61161,"Directional":true},{"SourceID":87445,"TargetID":87446,"Directional":true}]},{"ID":18001,"SourceStructureID":87432,"TargetStructureID":87437,"Label":"87432-87437 via Conventional from 87436 -> 87438","Type":"Conventional","Directional":true,"Links":[{"SourceID":87436,"TargetID":87438,"Directional":true}]},{"ID":18002,"SourceStructureID":87447,"TargetStructureID":87454,"Label":"87447-87454 via Conventional from 87453 -> 87455","Type":"Conventional","Directional":true,"Links":[{"SourceID":87453,"TargetID":87455,"Directional":true}]},{"ID":18003,"SourceStructureID":87449,"TargetStructureID":5650,"Label":"87449-5650 via Conventional from 87451 -> 87452","Type":"Conventional","Directional":true,"Links":[{"SourceID":87451,"TargetID":87452,"Directional":true}]},{"ID":18004,"SourceStructureID":87449,"TargetStructureID":87447,"Label":"87449-87447 via Conventional from 87450 -> 87448","Type":"Conventional","Directional":true,"Links":[{"SourceID":87450,"TargetID":87448,"Directional":true}]},{"ID":18005,"SourceStructureID":87457,"TargetStructureID":87447,"Label":"87457-87447 via Conventional from 87458 -> 87456","Type":"Conventional","Directional":true,"Links":[{"SourceID":87458,"TargetID":87456,"Directional":true}]},{"ID":18006,"SourceStructureID":87487,"TargetStructureID":606,"Label":"87487-606 via Conventional from 87491 -> 47463","Type":"Conventional","Directional":true,"Links":[{"SourceID":87491,"TargetID":47463,"Directional":true}]},{"ID":18007,"SourceStructureID":87487,"TargetStructureID":6146,"Label":"87487-6146 via Conventional from 87498 -> 87507","Type":"Conventional","Directional":true,"Links":[{"SourceID":87498,"TargetID":87507,"Directional":true}]},{"ID":18008,"SourceStructureID":87493,"TargetStructureID":179,"Label":"87493-179 via Conventional from 87494 -> 87492, 87494 -> 128178","Type":"Conventional","Directional":true,"Links":[{"SourceID":87494,"TargetID":87492,"Directional":true},{"SourceID":87494,"TargetID":128178,"Directional":true}]},{"ID":18009,"SourceStructureID":87496,"TargetStructureID":173,"Label":"87496-173 via Conventional from 128145 -> 128146","Type":"Conventional","Directional":true,"Links":[{"SourceID":128145,"TargetID":128146,"Directional":true}]},{"ID":18010,"SourceStructureID":87496,"TargetStructureID":179,"Label":"87496-179 via Conventional from 87497 -> 87495","Type":"Conventional","Directional":true,"Links":[{"SourceID":87497,"TargetID":87495,"Directional":true}]},{"ID":18011,"SourceStructureID":87503,"TargetStructureID":593,"Label":"87503-593 via Conventional from 87505 -> 87506","Type":"Conventional","Directional":true,"Links":[{"SourceID":87505,"TargetID":87506,"Directional":true}]},{"ID":18012,"SourceStructureID":87531,"TargetStructureID":78909,"Label":"87531-78909 via Conventional from 87532 -> 87530","Type":"Conventional","Directional":true,"Links":[{"SourceID":87532,"TargetID":87530,"Directional":true}]},{"ID":18013,"SourceStructureID":87534,"TargetStructureID":87531,"Label":"87534-87531 via Conventional from 87535 -> 87533","Type":"Conventional","Directional":true,"Links":[{"SourceID":87535,"TargetID":87533,"Directional":true}]},{"ID":18014,"SourceStructureID":87562,"TargetStructureID":14615,"Label":"87562-14615 via Conventional from 87565 -> 87567, 87566 -> 87568","Type":"Conventional","Directional":true,"Links":[{"SourceID":87565,"TargetID":87567,"Directional":true},{"SourceID":87566,"TargetID":87568,"Directional":true}]},{"ID":18015,"SourceStructureID":87569,"TargetStructureID":11043,"Label":"87569-11043 via Conventional from 87570 -> 87571, 87575 -> 87578, 87576 -> 87577, 87579 -> 87580","Type":"Conventional","Directional":true,"Links":[{"SourceID":87570,"TargetID":87571,"Directional":true},{"SourceID":87575,"TargetID":87578,"Directional":true},{"SourceID":87576,"TargetID":87577,"Directional":true},{"SourceID":87579,"TargetID":87580,"Directional":true}]},{"ID":18016,"SourceStructureID":87590,"TargetStructureID":78909,"Label":"87590-78909 via Conventional from 87598 -> 87583","Type":"Conventional","Directional":true,"Links":[{"SourceID":87598,"TargetID":87583,"Directional":true}]},{"ID":18017,"SourceStructureID":87590,"TargetStructureID":88473,"Label":"87590-88473 via Conventional from 87595 -> 88475","Type":"Conventional","Directional":true,"Links":[{"SourceID":87595,"TargetID":88475,"Directional":true}]},{"ID":18018,"SourceStructureID":87590,"TargetStructureID":88476,"Label":"87590-88476 via Conventional from 87596 -> 88478","Type":"Conventional","Directional":true,"Links":[{"SourceID":87596,"TargetID":88478,"Directional":true}]},{"ID":18019,"SourceStructureID":87590,"TargetStructureID":88485,"Label":"87590-88485 via Conventional from 88484 -> 88487","Type":"Conventional","Directional":true,"Links":[{"SourceID":88484,"TargetID":88487,"Directional":true}]},{"ID":18020,"SourceStructureID":87590,"TargetStructureID":88516,"Label":"87590-88516 via Conventional from 88494 -> 88517","Type":"Conventional","Directional":true,"Links":[{"SourceID":88494,"TargetID":88517,"Directional":true}]},{"ID":18021,"SourceStructureID":87590,"TargetStructureID":88554,"Label":"87590-88554 via Conventional from 88547 -> 88555","Type":"Conventional","Directional":true,"Links":[{"SourceID":88547,"TargetID":88555,"Directional":true}]},{"ID":18022,"SourceStructureID":87606,"TargetStructureID":5923,"Label":"87606-5923 via Conventional from 87607 -> 9972","Type":"Conventional","Directional":true,"Links":[{"SourceID":87607,"TargetID":9972,"Directional":true}]},{"ID":18023,"SourceStructureID":87606,"TargetStructureID":11043,"Label":"87606-11043 via Conventional from 87608 -> 87609","Type":"Conventional","Directional":true,"Links":[{"SourceID":87608,"TargetID":87609,"Directional":true}]},{"ID":18024,"SourceStructureID":87612,"TargetStructureID":78909,"Label":"87612-78909 via Conventional from 87613 -> 87611","Type":"Conventional","Directional":true,"Links":[{"SourceID":87613,"TargetID":87611,"Directional":true}]},{"ID":18025,"SourceStructureID":87647,"TargetStructureID":78909,"Label":"87647-78909 via Conventional from 87648 -> 87646","Type":"Conventional","Directional":true,"Links":[{"SourceID":87648,"TargetID":87646,"Directional":true}]},{"ID":18026,"SourceStructureID":87654,"TargetStructureID":78909,"Label":"87654-78909 via Conventional from 87655 -> 87653","Type":"Conventional","Directional":true,"Links":[{"SourceID":87655,"TargetID":87653,"Directional":true}]},{"ID":18027,"SourceStructureID":87678,"TargetStructureID":273,"Label":"87678-273 via Conventional from 87680 -> 87681, 87682 -> 87683, 87684 -> 87685","Type":"Conventional","Directional":true,"Links":[{"SourceID":87680,"TargetID":87681,"Directional":true},{"SourceID":87682,"TargetID":87683,"Directional":true},{"SourceID":87684,"TargetID":87685,"Directional":true}]},{"ID":18028,"SourceStructureID":87721,"TargetStructureID":171,"Label":"87721-171 via Conventional from 87722 -> 87720","Type":"Conventional","Directional":true,"Links":[{"SourceID":87722,"TargetID":87720,"Directional":true}]},{"ID":18029,"SourceStructureID":87754,"TargetStructureID":5394,"Label":"87754-5394 via Conventional from 87755 -> 77100","Type":"Conventional","Directional":true,"Links":[{"SourceID":87755,"TargetID":77100,"Directional":true}]},{"ID":18030,"SourceStructureID":87808,"TargetStructureID":10961,"Label":"87808-10961 via Conventional from 87809 -> 87807, 87810 -> 87811","Type":"Conventional","Directional":true,"Links":[{"SourceID":87809,"TargetID":87807,"Directional":true},{"SourceID":87810,"TargetID":87811,"Directional":true}]},{"ID":18031,"SourceStructureID":87815,"TargetStructureID":177,"Label":"87815-177 via Conventional from 87816 -> 27963","Type":"Conventional","Directional":true,"Links":[{"SourceID":87816,"TargetID":27963,"Directional":true}]},{"ID":18032,"SourceStructureID":87929,"TargetStructureID":518,"Label":"87929-518 via Conventional from 87930 -> 3524, 87931 -> 3521","Type":"Conventional","Directional":true,"Links":[{"SourceID":87930,"TargetID":3524,"Directional":true},{"SourceID":87931,"TargetID":3521,"Directional":true}]},{"ID":18033,"SourceStructureID":87934,"TargetStructureID":476,"Label":"87934-476 via Conventional from 87935 -> 87933","Type":"Conventional","Directional":true,"Links":[{"SourceID":87935,"TargetID":87933,"Directional":true}]},{"ID":18034,"SourceStructureID":87972,"TargetStructureID":5107,"Label":"87972-5107 via Adherens from 88029 -> 88030","Type":"Adherens","Directional":true,"Links":[{"SourceID":88029,"TargetID":88030,"Directional":true}]},{"ID":18035,"SourceStructureID":87972,"TargetStructureID":44346,"Label":"87972-44346 via Adherens from 88043 -> 88044","Type":"Adherens","Directional":true,"Links":[{"SourceID":88043,"TargetID":88044,"Directional":true}]},{"ID":18036,"SourceStructureID":87972,"TargetStructureID":87972,"Label":"87972-87972 via Ribbon Synapse from 88039 -> 88038","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88039,"TargetID":88038,"Directional":true}]},{"ID":18037,"SourceStructureID":88003,"TargetStructureID":87972,"Label":"88003-87972 via Conventional from 88004 -> 88002","Type":"Conventional","Directional":true,"Links":[{"SourceID":88004,"TargetID":88002,"Directional":true}]},{"ID":18038,"SourceStructureID":88005,"TargetStructureID":88003,"Label":"88005-88003 via Conventional from 88006 -> 88007","Type":"Conventional","Directional":true,"Links":[{"SourceID":88006,"TargetID":88007,"Directional":true}]},{"ID":18039,"SourceStructureID":88014,"TargetStructureID":87972,"Label":"88014-87972 via Conventional from 88015 -> 88013","Type":"Conventional","Directional":true,"Links":[{"SourceID":88015,"TargetID":88013,"Directional":true}]},{"ID":18040,"SourceStructureID":88017,"TargetStructureID":69162,"Label":"88017-69162 via Conventional from 88019 -> 69234","Type":"Conventional","Directional":true,"Links":[{"SourceID":88019,"TargetID":69234,"Directional":true}]},{"ID":18041,"SourceStructureID":88017,"TargetStructureID":88014,"Label":"88017-88014 via Conventional from 88018 -> 88016","Type":"Conventional","Directional":true,"Links":[{"SourceID":88018,"TargetID":88016,"Directional":true}]},{"ID":18042,"SourceStructureID":88036,"TargetStructureID":87972,"Label":"88036-87972 via Ribbon Synapse from 88037 -> 88035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88037,"TargetID":88035,"Directional":true}]},{"ID":18043,"SourceStructureID":88055,"TargetStructureID":44346,"Label":"88055-44346 via Conventional from 88056 -> 44443","Type":"Conventional","Directional":true,"Links":[{"SourceID":88056,"TargetID":44443,"Directional":true}]},{"ID":18044,"SourceStructureID":88125,"TargetStructureID":85856,"Label":"88125-85856 via Conventional from 88126 -> 85888","Type":"Conventional","Directional":true,"Links":[{"SourceID":88126,"TargetID":85888,"Directional":true}]},{"ID":18045,"SourceStructureID":88127,"TargetStructureID":85856,"Label":"88127-85856 via Conventional from 88128 -> 11883","Type":"Conventional","Directional":true,"Links":[{"SourceID":88128,"TargetID":11883,"Directional":true}]},{"ID":18046,"SourceStructureID":88129,"TargetStructureID":88127,"Label":"88129-88127 via Conventional from 88130 -> 88131","Type":"Conventional","Directional":true,"Links":[{"SourceID":88130,"TargetID":88131,"Directional":true}]},{"ID":18047,"SourceStructureID":88132,"TargetStructureID":85856,"Label":"88132-85856 via Conventional from 88133 -> 11881","Type":"Conventional","Directional":true,"Links":[{"SourceID":88133,"TargetID":11881,"Directional":true}]},{"ID":18048,"SourceStructureID":88139,"TargetStructureID":7114,"Label":"88139-7114 via Conventional from 88140 -> 88138","Type":"Conventional","Directional":true,"Links":[{"SourceID":88140,"TargetID":88138,"Directional":true}]},{"ID":18049,"SourceStructureID":88159,"TargetStructureID":6169,"Label":"88159-6169 via Ribbon Synapse from 88163 -> 88191","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88163,"TargetID":88191,"Directional":true}]},{"ID":18050,"SourceStructureID":88159,"TargetStructureID":88154,"Label":"88159-88154 via Ribbon Synapse from 88161 -> 88158","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88161,"TargetID":88158,"Directional":true}]},{"ID":18051,"SourceStructureID":88159,"TargetStructureID":88173,"Label":"88159-88173 via Ribbon Synapse from 88176 -> 88175","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88176,"TargetID":88175,"Directional":true}]},{"ID":18052,"SourceStructureID":88199,"TargetStructureID":59482,"Label":"88199-59482 via Conventional from 88241 -> 88242","Type":"Conventional","Directional":true,"Links":[{"SourceID":88241,"TargetID":88242,"Directional":true}]},{"ID":18053,"SourceStructureID":88199,"TargetStructureID":61450,"Label":"88199-61450 via Conventional from 88243 -> 61490","Type":"Conventional","Directional":true,"Links":[{"SourceID":88243,"TargetID":61490,"Directional":true}]},{"ID":18054,"SourceStructureID":88199,"TargetStructureID":88205,"Label":"88199-88205 via Conventional from 88203 -> 88207","Type":"Conventional","Directional":true,"Links":[{"SourceID":88203,"TargetID":88207,"Directional":true}]},{"ID":18055,"SourceStructureID":88199,"TargetStructureID":88215,"Label":"88199-88215 via Conventional from 88214 -> 88216","Type":"Conventional","Directional":true,"Links":[{"SourceID":88214,"TargetID":88216,"Directional":true}]},{"ID":18056,"SourceStructureID":88199,"TargetStructureID":88223,"Label":"88199-88223 via Conventional from 88222 -> 88224","Type":"Conventional","Directional":true,"Links":[{"SourceID":88222,"TargetID":88224,"Directional":true}]},{"ID":18057,"SourceStructureID":88209,"TargetStructureID":88199,"Label":"88209-88199 via Conventional from 88210 -> 88208","Type":"Conventional","Directional":true,"Links":[{"SourceID":88210,"TargetID":88208,"Directional":true}]},{"ID":18058,"SourceStructureID":88212,"TargetStructureID":88199,"Label":"88212-88199 via Conventional from 88213 -> 88211","Type":"Conventional","Directional":true,"Links":[{"SourceID":88213,"TargetID":88211,"Directional":true}]},{"ID":18059,"SourceStructureID":88220,"TargetStructureID":88199,"Label":"88220-88199 via Conventional from 88221 -> 88219","Type":"Conventional","Directional":true,"Links":[{"SourceID":88221,"TargetID":88219,"Directional":true}]},{"ID":18060,"SourceStructureID":88226,"TargetStructureID":88199,"Label":"88226-88199 via Conventional from 88227 -> 88225","Type":"Conventional","Directional":true,"Links":[{"SourceID":88227,"TargetID":88225,"Directional":true}]},{"ID":18061,"SourceStructureID":88230,"TargetStructureID":88199,"Label":"88230-88199 via Conventional from 88231 -> 88229","Type":"Conventional","Directional":true,"Links":[{"SourceID":88231,"TargetID":88229,"Directional":true}]},{"ID":18062,"SourceStructureID":88239,"TargetStructureID":88199,"Label":"88239-88199 via Conventional from 88240 -> 88238","Type":"Conventional","Directional":true,"Links":[{"SourceID":88240,"TargetID":88238,"Directional":true}]},{"ID":18063,"SourceStructureID":88246,"TargetStructureID":88257,"Label":"88246-88257 via Conventional from 88256 -> 88258","Type":"Conventional","Directional":true,"Links":[{"SourceID":88256,"TargetID":88258,"Directional":true}]},{"ID":18064,"SourceStructureID":88247,"TargetStructureID":88252,"Label":"88247-88252 via Ribbon Synapse from 88251 -> 88253","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88251,"TargetID":88253,"Directional":true}]},{"ID":18065,"SourceStructureID":88252,"TargetStructureID":88247,"Label":"88252-88247 via Conventional from 88254 -> 88255","Type":"Conventional","Directional":true,"Links":[{"SourceID":88254,"TargetID":88255,"Directional":true}]},{"ID":18066,"SourceStructureID":88260,"TargetStructureID":176,"Label":"88260-176 via Conventional from 88262 -> 5857, 88278 -> 5894, 88282 -> 88286","Type":"Conventional","Directional":true,"Links":[{"SourceID":88262,"TargetID":5857,"Directional":true},{"SourceID":88278,"TargetID":5894,"Directional":true},{"SourceID":88282,"TargetID":88286,"Directional":true}]},{"ID":18067,"SourceStructureID":88260,"TargetStructureID":43716,"Label":"88260-43716 via Conventional from 88296 -> 43729","Type":"Conventional","Directional":true,"Links":[{"SourceID":88296,"TargetID":43729,"Directional":true}]},{"ID":18068,"SourceStructureID":88260,"TargetStructureID":88274,"Label":"88260-88274 via Conventional from 88273 -> 88275","Type":"Conventional","Directional":true,"Links":[{"SourceID":88273,"TargetID":88275,"Directional":true}]},{"ID":18069,"SourceStructureID":88260,"TargetStructureID":88290,"Label":"88260-88290 via Conventional from 88288 -> 88293","Type":"Conventional","Directional":true,"Links":[{"SourceID":88288,"TargetID":88293,"Directional":true}]},{"ID":18070,"SourceStructureID":88260,"TargetStructureID":88305,"Label":"88260-88305 via Conventional from 88304 -> 88306","Type":"Conventional","Directional":true,"Links":[{"SourceID":88304,"TargetID":88306,"Directional":true}]},{"ID":18071,"SourceStructureID":88266,"TargetStructureID":88260,"Label":"88266-88260 via Conventional from 88267 -> 88265","Type":"Conventional","Directional":true,"Links":[{"SourceID":88267,"TargetID":88265,"Directional":true}]},{"ID":18072,"SourceStructureID":88270,"TargetStructureID":10872,"Label":"88270-10872 via Conventional from 88280 -> 88281, 88283 -> 88284","Type":"Conventional","Directional":true,"Links":[{"SourceID":88280,"TargetID":88281,"Directional":true},{"SourceID":88283,"TargetID":88284,"Directional":true}]},{"ID":18073,"SourceStructureID":88274,"TargetStructureID":595,"Label":"88274-595 via Conventional from 88276 -> 46674","Type":"Conventional","Directional":true,"Links":[{"SourceID":88276,"TargetID":46674,"Directional":true}]},{"ID":18074,"SourceStructureID":88290,"TargetStructureID":5637,"Label":"88290-5637 via Conventional from 88291 -> 88292","Type":"Conventional","Directional":true,"Links":[{"SourceID":88291,"TargetID":88292,"Directional":true}]},{"ID":18075,"SourceStructureID":88300,"TargetStructureID":88260,"Label":"88300-88260 via Conventional from 88301 -> 88302","Type":"Conventional","Directional":true,"Links":[{"SourceID":88301,"TargetID":88302,"Directional":true}]},{"ID":18076,"SourceStructureID":88313,"TargetStructureID":88260,"Label":"88313-88260 via Conventional from 88314 -> 88312","Type":"Conventional","Directional":true,"Links":[{"SourceID":88314,"TargetID":88312,"Directional":true}]},{"ID":18077,"SourceStructureID":88334,"TargetStructureID":170,"Label":"88334-170 via Conventional from 88337 -> 1128","Type":"Conventional","Directional":true,"Links":[{"SourceID":88337,"TargetID":1128,"Directional":true}]},{"ID":18078,"SourceStructureID":88344,"TargetStructureID":8580,"Label":"88344-8580 via Conventional from 88345 -> 88346","Type":"Conventional","Directional":true,"Links":[{"SourceID":88345,"TargetID":88346,"Directional":true}]},{"ID":18079,"SourceStructureID":88365,"TargetStructureID":606,"Label":"88365-606 via Conventional from 88391 -> 51995","Type":"Conventional","Directional":true,"Links":[{"SourceID":88391,"TargetID":51995,"Directional":true}]},{"ID":18080,"SourceStructureID":88370,"TargetStructureID":88365,"Label":"88370-88365 via Conventional from 88373 -> 88374","Type":"Conventional","Directional":true,"Links":[{"SourceID":88373,"TargetID":88374,"Directional":true}]},{"ID":18081,"SourceStructureID":88375,"TargetStructureID":170,"Label":"88375-170 via Conventional from 88376 -> 1200","Type":"Conventional","Directional":true,"Links":[{"SourceID":88376,"TargetID":1200,"Directional":true}]},{"ID":18082,"SourceStructureID":88395,"TargetStructureID":6141,"Label":"88395-6141 via Conventional from 88452 -> 61359","Type":"Conventional","Directional":true,"Links":[{"SourceID":88452,"TargetID":61359,"Directional":true}]},{"ID":18083,"SourceStructureID":88405,"TargetStructureID":170,"Label":"88405-170 via Conventional from 88409 -> 1214","Type":"Conventional","Directional":true,"Links":[{"SourceID":88409,"TargetID":1214,"Directional":true}]},{"ID":18084,"SourceStructureID":88413,"TargetStructureID":170,"Label":"88413-170 via Conventional from 88420 -> 1212","Type":"Conventional","Directional":true,"Links":[{"SourceID":88420,"TargetID":1212,"Directional":true}]},{"ID":18085,"SourceStructureID":88450,"TargetStructureID":170,"Label":"88450-170 via Conventional from 88451 -> 1220","Type":"Conventional","Directional":true,"Links":[{"SourceID":88451,"TargetID":1220,"Directional":true}]},{"ID":18086,"SourceStructureID":88453,"TargetStructureID":170,"Label":"88453-170 via Conventional from 88454 -> 88455","Type":"Conventional","Directional":true,"Links":[{"SourceID":88454,"TargetID":88455,"Directional":true}]},{"ID":18087,"SourceStructureID":88459,"TargetStructureID":88395,"Label":"88459-88395 via Conventional from 88466 -> 88438","Type":"Conventional","Directional":true,"Links":[{"SourceID":88466,"TargetID":88438,"Directional":true}]},{"ID":18088,"SourceStructureID":88459,"TargetStructureID":88468,"Label":"88459-88468 via Conventional from 88467 -> 88469","Type":"Conventional","Directional":true,"Links":[{"SourceID":88467,"TargetID":88469,"Directional":true}]},{"ID":18089,"SourceStructureID":88462,"TargetStructureID":170,"Label":"88462-170 via Conventional from 88465 -> 1225","Type":"Conventional","Directional":true,"Links":[{"SourceID":88465,"TargetID":1225,"Directional":true}]},{"ID":18090,"SourceStructureID":88493,"TargetStructureID":170,"Label":"88493-170 via Conventional from 88496 -> 51173","Type":"Conventional","Directional":true,"Links":[{"SourceID":88496,"TargetID":51173,"Directional":true}]},{"ID":18091,"SourceStructureID":88513,"TargetStructureID":170,"Label":"88513-170 via Conventional from 88514 -> 47931","Type":"Conventional","Directional":true,"Links":[{"SourceID":88514,"TargetID":47931,"Directional":true}]},{"ID":18092,"SourceStructureID":88521,"TargetStructureID":170,"Label":"88521-170 via Conventional from 88526 -> 47932","Type":"Conventional","Directional":true,"Links":[{"SourceID":88526,"TargetID":47932,"Directional":true}]},{"ID":18093,"SourceStructureID":88550,"TargetStructureID":170,"Label":"88550-170 via Conventional from 88551 -> 88552","Type":"Conventional","Directional":true,"Links":[{"SourceID":88551,"TargetID":88552,"Directional":true}]},{"ID":18094,"SourceStructureID":88553,"TargetStructureID":170,"Label":"88553-170 via Conventional from 88557 -> 1231","Type":"Conventional","Directional":true,"Links":[{"SourceID":88557,"TargetID":1231,"Directional":true}]},{"ID":18095,"SourceStructureID":88594,"TargetStructureID":277,"Label":"88594-277 via Conventional from 88605 -> 88607, 123546 -> 123545","Type":"Conventional","Directional":true,"Links":[{"SourceID":88605,"TargetID":88607,"Directional":true},{"SourceID":123546,"TargetID":123545,"Directional":true}]},{"ID":18096,"SourceStructureID":88594,"TargetStructureID":88597,"Label":"88594-88597 via Conventional from 88596 -> 88598","Type":"Conventional","Directional":true,"Links":[{"SourceID":88596,"TargetID":88598,"Directional":true}]},{"ID":18097,"SourceStructureID":88594,"TargetStructureID":88618,"Label":"88594-88618 via Conventional from 88617 -> 88619","Type":"Conventional","Directional":true,"Links":[{"SourceID":88617,"TargetID":88619,"Directional":true}]},{"ID":18098,"SourceStructureID":88608,"TargetStructureID":277,"Label":"88608-277 via Conventional from 88610 -> 88612","Type":"Conventional","Directional":true,"Links":[{"SourceID":88610,"TargetID":88612,"Directional":true}]},{"ID":18099,"SourceStructureID":88614,"TargetStructureID":88608,"Label":"88614-88608 via Conventional from 88616 -> 88613","Type":"Conventional","Directional":true,"Links":[{"SourceID":88616,"TargetID":88613,"Directional":true}]},{"ID":18100,"SourceStructureID":88646,"TargetStructureID":5606,"Label":"88646-5606 via Conventional from 88650 -> 53864","Type":"Conventional","Directional":true,"Links":[{"SourceID":88650,"TargetID":53864,"Directional":true}]},{"ID":18101,"SourceStructureID":88666,"TargetStructureID":88675,"Label":"88666-88675 via Conventional from 88674 -> 88676","Type":"Conventional","Directional":true,"Links":[{"SourceID":88674,"TargetID":88676,"Directional":true}]},{"ID":18102,"SourceStructureID":88666,"TargetStructureID":88726,"Label":"88666-88726 via Conventional from 88725 -> 88727","Type":"Conventional","Directional":true,"Links":[{"SourceID":88725,"TargetID":88727,"Directional":true}]},{"ID":18103,"SourceStructureID":88669,"TargetStructureID":88666,"Label":"88669-88666 via Conventional from 88670 -> 88668","Type":"Conventional","Directional":true,"Links":[{"SourceID":88670,"TargetID":88668,"Directional":true}]},{"ID":18104,"SourceStructureID":88678,"TargetStructureID":88666,"Label":"88678-88666 via Conventional from 88679 -> 88677","Type":"Conventional","Directional":true,"Links":[{"SourceID":88679,"TargetID":88677,"Directional":true}]},{"ID":18105,"SourceStructureID":88682,"TargetStructureID":170,"Label":"88682-170 via Conventional from 88686 -> 88688","Type":"Conventional","Directional":true,"Links":[{"SourceID":88686,"TargetID":88688,"Directional":true}]},{"ID":18106,"SourceStructureID":88684,"TargetStructureID":11238,"Label":"88684-11238 via Ribbon Synapse from 88685 -> 88683","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":88685,"TargetID":88683,"Directional":true}]},{"ID":18107,"SourceStructureID":88690,"TargetStructureID":170,"Label":"88690-170 via Conventional from 88691 -> 28365","Type":"Conventional","Directional":true,"Links":[{"SourceID":88691,"TargetID":28365,"Directional":true}]},{"ID":18108,"SourceStructureID":88695,"TargetStructureID":88666,"Label":"88695-88666 via Conventional from 88696 -> 88694","Type":"Conventional","Directional":true,"Links":[{"SourceID":88696,"TargetID":88694,"Directional":true}]},{"ID":18109,"SourceStructureID":88711,"TargetStructureID":170,"Label":"88711-170 via Conventional from 88712 -> 1240","Type":"Conventional","Directional":true,"Links":[{"SourceID":88712,"TargetID":1240,"Directional":true}]},{"ID":18110,"SourceStructureID":88715,"TargetStructureID":170,"Label":"88715-170 via Conventional from 88716 -> 1241","Type":"Conventional","Directional":true,"Links":[{"SourceID":88716,"TargetID":1241,"Directional":true}]},{"ID":18111,"SourceStructureID":88715,"TargetStructureID":606,"Label":"88715-606 via Conventional from 99419 -> 52076","Type":"Conventional","Directional":true,"Links":[{"SourceID":99419,"TargetID":52076,"Directional":true}]},{"ID":18112,"SourceStructureID":88723,"TargetStructureID":88666,"Label":"88723-88666 via Conventional from 88724 -> 88722","Type":"Conventional","Directional":true,"Links":[{"SourceID":88724,"TargetID":88722,"Directional":true}]},{"ID":18113,"SourceStructureID":88740,"TargetStructureID":606,"Label":"88740-606 via Conventional from 88742 -> 54149","Type":"Conventional","Directional":true,"Links":[{"SourceID":88742,"TargetID":54149,"Directional":true}]},{"ID":18114,"SourceStructureID":88740,"TargetStructureID":88737,"Label":"88740-88737 via Conventional from 88741 -> 88739","Type":"Conventional","Directional":true,"Links":[{"SourceID":88741,"TargetID":88739,"Directional":true}]},{"ID":18115,"SourceStructureID":88747,"TargetStructureID":170,"Label":"88747-170 via Conventional from 88748 -> 88749","Type":"Conventional","Directional":true,"Links":[{"SourceID":88748,"TargetID":88749,"Directional":true}]},{"ID":18116,"SourceStructureID":88761,"TargetStructureID":422,"Label":"88761-422 via Conventional from 88791 -> 5690, 88796 -> 5691","Type":"Conventional","Directional":true,"Links":[{"SourceID":88791,"TargetID":5690,"Directional":true},{"SourceID":88796,"TargetID":5691,"Directional":true}]},{"ID":18117,"SourceStructureID":88761,"TargetStructureID":464,"Label":"88761-464 via Conventional from 88824 -> 87802, 88825 -> 87802","Type":"Conventional","Directional":true,"Links":[{"SourceID":88824,"TargetID":87802,"Directional":true},{"SourceID":88825,"TargetID":87802,"Directional":true}]},{"ID":18118,"SourceStructureID":88762,"TargetStructureID":88774,"Label":"88762-88774 via Conventional from 88773 -> 88780","Type":"Conventional","Directional":true,"Links":[{"SourceID":88773,"TargetID":88780,"Directional":true}]},{"ID":18119,"SourceStructureID":88781,"TargetStructureID":170,"Label":"88781-170 via Conventional from 88786 -> 87284","Type":"Conventional","Directional":true,"Links":[{"SourceID":88786,"TargetID":87284,"Directional":true}]},{"ID":18120,"SourceStructureID":88790,"TargetStructureID":170,"Label":"88790-170 via Conventional from 88792 -> 45396","Type":"Conventional","Directional":true,"Links":[{"SourceID":88792,"TargetID":45396,"Directional":true}]},{"ID":18121,"SourceStructureID":88801,"TargetStructureID":170,"Label":"88801-170 via Conventional from 88802 -> 88803","Type":"Conventional","Directional":true,"Links":[{"SourceID":88802,"TargetID":88803,"Directional":true}]},{"ID":18122,"SourceStructureID":88805,"TargetStructureID":170,"Label":"88805-170 via Conventional from 88806 -> 87286","Type":"Conventional","Directional":true,"Links":[{"SourceID":88806,"TargetID":87286,"Directional":true}]},{"ID":18123,"SourceStructureID":88817,"TargetStructureID":170,"Label":"88817-170 via Conventional from 88820 -> 1336","Type":"Conventional","Directional":true,"Links":[{"SourceID":88820,"TargetID":1336,"Directional":true}]},{"ID":18124,"SourceStructureID":88822,"TargetStructureID":170,"Label":"88822-170 via Conventional from 88944 -> 28376","Type":"Conventional","Directional":true,"Links":[{"SourceID":88944,"TargetID":28376,"Directional":true}]},{"ID":18125,"SourceStructureID":88833,"TargetStructureID":517,"Label":"88833-517 via Conventional from 88834 -> 88832","Type":"Conventional","Directional":true,"Links":[{"SourceID":88834,"TargetID":88832,"Directional":true}]},{"ID":18126,"SourceStructureID":88833,"TargetStructureID":61868,"Label":"88833-61868 via Conventional from 123157 -> 81982","Type":"Conventional","Directional":true,"Links":[{"SourceID":123157,"TargetID":81982,"Directional":true}]},{"ID":18127,"SourceStructureID":88841,"TargetStructureID":11250,"Label":"88841-11250 via Conventional from 88842 -> 88840","Type":"Conventional","Directional":true,"Links":[{"SourceID":88842,"TargetID":88840,"Directional":true}]},{"ID":18128,"SourceStructureID":88864,"TargetStructureID":579,"Label":"88864-579 via Conventional from 88865 -> 88866, 88872 -> 88871","Type":"Conventional","Directional":true,"Links":[{"SourceID":88865,"TargetID":88866,"Directional":true},{"SourceID":88872,"TargetID":88871,"Directional":true}]},{"ID":18129,"SourceStructureID":88912,"TargetStructureID":5451,"Label":"88912-5451 via Conventional from 88914 -> 44953","Type":"Conventional","Directional":true,"Links":[{"SourceID":88914,"TargetID":44953,"Directional":true}]},{"ID":18130,"SourceStructureID":88915,"TargetStructureID":88912,"Label":"88915-88912 via Conventional from 88916 -> 88913","Type":"Conventional","Directional":true,"Links":[{"SourceID":88916,"TargetID":88913,"Directional":true}]},{"ID":18131,"SourceStructureID":88919,"TargetStructureID":88929,"Label":"88919-88929 via Conventional from 88920 -> 88930","Type":"Conventional","Directional":true,"Links":[{"SourceID":88920,"TargetID":88930,"Directional":true}]},{"ID":18132,"SourceStructureID":88919,"TargetStructureID":88936,"Label":"88919-88936 via Conventional from 88938 -> 88937","Type":"Conventional","Directional":true,"Links":[{"SourceID":88938,"TargetID":88937,"Directional":true}]},{"ID":18133,"SourceStructureID":88923,"TargetStructureID":88919,"Label":"88923-88919 via Conventional from 88924 -> 88921","Type":"Conventional","Directional":true,"Links":[{"SourceID":88924,"TargetID":88921,"Directional":true}]},{"ID":18134,"SourceStructureID":88933,"TargetStructureID":88919,"Label":"88933-88919 via Conventional from 88934 -> 88932","Type":"Conventional","Directional":true,"Links":[{"SourceID":88934,"TargetID":88932,"Directional":true}]},{"ID":18135,"SourceStructureID":88945,"TargetStructureID":170,"Label":"88945-170 via Conventional from 88963 -> 88964","Type":"Conventional","Directional":true,"Links":[{"SourceID":88963,"TargetID":88964,"Directional":true}]},{"ID":18136,"SourceStructureID":88947,"TargetStructureID":170,"Label":"88947-170 via Conventional from 88961 -> 88962","Type":"Conventional","Directional":true,"Links":[{"SourceID":88961,"TargetID":88962,"Directional":true}]},{"ID":18137,"SourceStructureID":88954,"TargetStructureID":170,"Label":"88954-170 via Conventional from 88955 -> 88956","Type":"Conventional","Directional":true,"Links":[{"SourceID":88955,"TargetID":88956,"Directional":true}]},{"ID":18138,"SourceStructureID":88957,"TargetStructureID":170,"Label":"88957-170 via Conventional from 88958 -> 88959","Type":"Conventional","Directional":true,"Links":[{"SourceID":88958,"TargetID":88959,"Directional":true}]},{"ID":18139,"SourceStructureID":88965,"TargetStructureID":170,"Label":"88965-170 via Conventional from 88966 -> 88967","Type":"Conventional","Directional":true,"Links":[{"SourceID":88966,"TargetID":88967,"Directional":true}]},{"ID":18140,"SourceStructureID":88984,"TargetStructureID":606,"Label":"88984-606 via Conventional from 88989 -> 47417","Type":"Conventional","Directional":true,"Links":[{"SourceID":88989,"TargetID":47417,"Directional":true}]},{"ID":18141,"SourceStructureID":88984,"TargetStructureID":5645,"Label":"88984-5645 via Conventional from 88987 -> 39487","Type":"Conventional","Directional":true,"Links":[{"SourceID":88987,"TargetID":39487,"Directional":true}]},{"ID":18142,"SourceStructureID":88996,"TargetStructureID":170,"Label":"88996-170 via Conventional from 88997 -> 88998","Type":"Conventional","Directional":true,"Links":[{"SourceID":88997,"TargetID":88998,"Directional":true}]},{"ID":18143,"SourceStructureID":89000,"TargetStructureID":170,"Label":"89000-170 via Conventional from 89001 -> 89002","Type":"Conventional","Directional":true,"Links":[{"SourceID":89001,"TargetID":89002,"Directional":true}]},{"ID":18144,"SourceStructureID":89008,"TargetStructureID":4569,"Label":"89008-4569 via Conventional from 99020 -> 47550","Type":"Conventional","Directional":true,"Links":[{"SourceID":99020,"TargetID":47550,"Directional":true}]},{"ID":18145,"SourceStructureID":89016,"TargetStructureID":170,"Label":"89016-170 via Conventional from 133913 -> 133912","Type":"Conventional","Directional":true,"Links":[{"SourceID":133913,"TargetID":133912,"Directional":true}]},{"ID":18146,"SourceStructureID":89024,"TargetStructureID":170,"Label":"89024-170 via Conventional from 89025 -> 89026","Type":"Conventional","Directional":true,"Links":[{"SourceID":89025,"TargetID":89026,"Directional":true}]},{"ID":18147,"SourceStructureID":89032,"TargetStructureID":49184,"Label":"89032-49184 via Conventional from 118213 -> 49353","Type":"Conventional","Directional":true,"Links":[{"SourceID":118213,"TargetID":49353,"Directional":true}]},{"ID":18148,"SourceStructureID":89032,"TargetStructureID":89029,"Label":"89032-89029 via Conventional from 89033 -> 89031","Type":"Conventional","Directional":true,"Links":[{"SourceID":89033,"TargetID":89031,"Directional":true}]},{"ID":18149,"SourceStructureID":89039,"TargetStructureID":176,"Label":"89039-176 via Conventional from 89053 -> 5847","Type":"Conventional","Directional":true,"Links":[{"SourceID":89053,"TargetID":5847,"Directional":true}]},{"ID":18150,"SourceStructureID":89039,"TargetStructureID":595,"Label":"89039-595 via Conventional from 89054 -> 46689","Type":"Conventional","Directional":true,"Links":[{"SourceID":89054,"TargetID":46689,"Directional":true}]},{"ID":18151,"SourceStructureID":89039,"TargetStructureID":89046,"Label":"89039-89046 via Conventional from 89043 -> 89047","Type":"Conventional","Directional":true,"Links":[{"SourceID":89043,"TargetID":89047,"Directional":true}]},{"ID":18152,"SourceStructureID":89042,"TargetStructureID":170,"Label":"89042-170 via Conventional from 89044 -> 1350","Type":"Conventional","Directional":true,"Links":[{"SourceID":89044,"TargetID":1350,"Directional":true}]},{"ID":18153,"SourceStructureID":89066,"TargetStructureID":170,"Label":"89066-170 via Conventional from 89067 -> 89065","Type":"Conventional","Directional":true,"Links":[{"SourceID":89067,"TargetID":89065,"Directional":true}]},{"ID":18154,"SourceStructureID":89066,"TargetStructureID":89063,"Label":"89066-89063 via Conventional from 89067 -> 89068","Type":"Conventional","Directional":true,"Links":[{"SourceID":89067,"TargetID":89068,"Directional":true}]},{"ID":18155,"SourceStructureID":89073,"TargetStructureID":170,"Label":"89073-170 via Conventional from 89076 -> 89069","Type":"Conventional","Directional":true,"Links":[{"SourceID":89076,"TargetID":89069,"Directional":true}]},{"ID":18156,"SourceStructureID":89085,"TargetStructureID":170,"Label":"89085-170 via Conventional from 89515 -> 1248","Type":"Conventional","Directional":true,"Links":[{"SourceID":89515,"TargetID":1248,"Directional":true}]},{"ID":18157,"SourceStructureID":89086,"TargetStructureID":89175,"Label":"89086-89175 via Conventional from 89176 -> 89177","Type":"Conventional","Directional":true,"Links":[{"SourceID":89176,"TargetID":89177,"Directional":true}]},{"ID":18158,"SourceStructureID":89097,"TargetStructureID":5284,"Label":"89097-5284 via Conventional from 89099 -> 23495","Type":"Conventional","Directional":true,"Links":[{"SourceID":89099,"TargetID":23495,"Directional":true}]},{"ID":18159,"SourceStructureID":89097,"TargetStructureID":53407,"Label":"89097-53407 via Conventional from 89098 -> 53409","Type":"Conventional","Directional":true,"Links":[{"SourceID":89098,"TargetID":53409,"Directional":true}]},{"ID":18160,"SourceStructureID":89106,"TargetStructureID":70500,"Label":"89106-70500 via Conventional from 89109 -> 89103, 89110 -> 89104, 89111 -> 89105","Type":"Conventional","Directional":true,"Links":[{"SourceID":89109,"TargetID":89103,"Directional":true},{"SourceID":89110,"TargetID":89104,"Directional":true},{"SourceID":89111,"TargetID":89105,"Directional":true}]},{"ID":18161,"SourceStructureID":89120,"TargetStructureID":89133,"Label":"89120-89133 via Ribbon Synapse from 89132 -> 89134","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89132,"TargetID":89134,"Directional":true}]},{"ID":18162,"SourceStructureID":89122,"TargetStructureID":89119,"Label":"89122-89119 via Conventional from 89123 -> 89121","Type":"Conventional","Directional":true,"Links":[{"SourceID":89123,"TargetID":89121,"Directional":true}]},{"ID":18163,"SourceStructureID":89124,"TargetStructureID":1021,"Label":"89124-1021 via Conventional from 125651 -> 125652","Type":"Conventional","Directional":true,"Links":[{"SourceID":125651,"TargetID":125652,"Directional":true}]},{"ID":18164,"SourceStructureID":89124,"TargetStructureID":6120,"Label":"89124-6120 via Conventional from 89339 -> 110556","Type":"Conventional","Directional":true,"Links":[{"SourceID":89339,"TargetID":110556,"Directional":true}]},{"ID":18165,"SourceStructureID":89124,"TargetStructureID":22974,"Label":"89124-22974 via Conventional from 89330 -> 89331","Type":"Conventional","Directional":true,"Links":[{"SourceID":89330,"TargetID":89331,"Directional":true}]},{"ID":18166,"SourceStructureID":89124,"TargetStructureID":89355,"Label":"89124-89355 via Conventional from 89353 -> 89357","Type":"Conventional","Directional":true,"Links":[{"SourceID":89353,"TargetID":89357,"Directional":true}]},{"ID":18167,"SourceStructureID":89127,"TargetStructureID":89124,"Label":"89127-89124 via Cistern Pre from 89131 -> 89130","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":89131,"TargetID":89130,"Directional":true}]},{"ID":18168,"SourceStructureID":89127,"TargetStructureID":89124,"Label":"89127-89124 via Conventional from 89128 -> 89126","Type":"Conventional","Directional":true,"Links":[{"SourceID":89128,"TargetID":89126,"Directional":true}]},{"ID":18169,"SourceStructureID":89136,"TargetStructureID":87224,"Label":"89136-87224 via Conventional from 89138 -> 89139","Type":"Conventional","Directional":true,"Links":[{"SourceID":89138,"TargetID":89139,"Directional":true}]},{"ID":18170,"SourceStructureID":89136,"TargetStructureID":89133,"Label":"89136-89133 via Conventional from 89137 -> 89135","Type":"Conventional","Directional":true,"Links":[{"SourceID":89137,"TargetID":89135,"Directional":true}]},{"ID":18171,"SourceStructureID":89157,"TargetStructureID":168,"Label":"89157-168 via Conventional from 89158 -> 89169","Type":"Conventional","Directional":true,"Links":[{"SourceID":89158,"TargetID":89169,"Directional":true}]},{"ID":18172,"SourceStructureID":89160,"TargetStructureID":89120,"Label":"89160-89120 via Conventional from 89162 -> 89159","Type":"Conventional","Directional":true,"Links":[{"SourceID":89162,"TargetID":89159,"Directional":true}]},{"ID":18173,"SourceStructureID":89175,"TargetStructureID":170,"Label":"89175-170 via Conventional from 89178 -> 28367","Type":"Conventional","Directional":true,"Links":[{"SourceID":89178,"TargetID":28367,"Directional":true}]},{"ID":18174,"SourceStructureID":89181,"TargetStructureID":170,"Label":"89181-170 via Conventional from 89184 -> 1358","Type":"Conventional","Directional":true,"Links":[{"SourceID":89184,"TargetID":1358,"Directional":true}]},{"ID":18175,"SourceStructureID":89185,"TargetStructureID":170,"Label":"89185-170 via Conventional from 89186 -> 28377","Type":"Conventional","Directional":true,"Links":[{"SourceID":89186,"TargetID":28377,"Directional":true}]},{"ID":18176,"SourceStructureID":89193,"TargetStructureID":170,"Label":"89193-170 via Conventional from 89194 -> 89195","Type":"Conventional","Directional":true,"Links":[{"SourceID":89194,"TargetID":89195,"Directional":true}]},{"ID":18177,"SourceStructureID":89193,"TargetStructureID":71882,"Label":"89193-71882 via Conventional from 90414 -> 90413","Type":"Conventional","Directional":true,"Links":[{"SourceID":90414,"TargetID":90413,"Directional":true}]},{"ID":18178,"SourceStructureID":89199,"TargetStructureID":170,"Label":"89199-170 via Conventional from 89200 -> 1356","Type":"Conventional","Directional":true,"Links":[{"SourceID":89200,"TargetID":1356,"Directional":true}]},{"ID":18179,"SourceStructureID":89222,"TargetStructureID":170,"Label":"89222-170 via Conventional from 89223 -> 28378","Type":"Conventional","Directional":true,"Links":[{"SourceID":89223,"TargetID":28378,"Directional":true}]},{"ID":18180,"SourceStructureID":89231,"TargetStructureID":170,"Label":"89231-170 via Conventional from 89237 -> 28381","Type":"Conventional","Directional":true,"Links":[{"SourceID":89237,"TargetID":28381,"Directional":true}]},{"ID":18181,"SourceStructureID":89233,"TargetStructureID":419,"Label":"89233-419 via Conventional from 89238 -> 89242","Type":"Conventional","Directional":true,"Links":[{"SourceID":89238,"TargetID":89242,"Directional":true}]},{"ID":18182,"SourceStructureID":89233,"TargetStructureID":5118,"Label":"89233-5118 via Conventional from 89241 -> 6541","Type":"Conventional","Directional":true,"Links":[{"SourceID":89241,"TargetID":6541,"Directional":true}]},{"ID":18183,"SourceStructureID":89240,"TargetStructureID":170,"Label":"89240-170 via Conventional from 89245 -> 28380","Type":"Conventional","Directional":true,"Links":[{"SourceID":89245,"TargetID":28380,"Directional":true}]},{"ID":18184,"SourceStructureID":89248,"TargetStructureID":170,"Label":"89248-170 via Conventional from 89249 -> 1281","Type":"Conventional","Directional":true,"Links":[{"SourceID":89249,"TargetID":1281,"Directional":true}]},{"ID":18185,"SourceStructureID":89253,"TargetStructureID":591,"Label":"89253-591 via Ribbon Synapse from 89254 -> 10298","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89254,"TargetID":10298,"Directional":true}]},{"ID":18186,"SourceStructureID":89285,"TargetStructureID":11246,"Label":"89285-11246 via Conventional from 89286 -> 89281, 89287 -> 89282","Type":"Conventional","Directional":true,"Links":[{"SourceID":89286,"TargetID":89281,"Directional":true},{"SourceID":89287,"TargetID":89282,"Directional":true}]},{"ID":18187,"SourceStructureID":89305,"TargetStructureID":5514,"Label":"89305-5514 via Conventional from 89308 -> 89309","Type":"Conventional","Directional":true,"Links":[{"SourceID":89308,"TargetID":89309,"Directional":true}]},{"ID":18188,"SourceStructureID":89305,"TargetStructureID":10826,"Label":"89305-10826 via Conventional from 89306 -> 89307","Type":"Conventional","Directional":true,"Links":[{"SourceID":89306,"TargetID":89307,"Directional":true}]},{"ID":18189,"SourceStructureID":89317,"TargetStructureID":89124,"Label":"89317-89124 via Conventional from 89321 -> 89316","Type":"Conventional","Directional":true,"Links":[{"SourceID":89321,"TargetID":89316,"Directional":true}]},{"ID":18190,"SourceStructureID":89328,"TargetStructureID":89124,"Label":"89328-89124 via Conventional from 89329 -> 89327","Type":"Conventional","Directional":true,"Links":[{"SourceID":89329,"TargetID":89327,"Directional":true}]},{"ID":18191,"SourceStructureID":89347,"TargetStructureID":6120,"Label":"89347-6120 via Conventional from 89348 -> 110551","Type":"Conventional","Directional":true,"Links":[{"SourceID":89348,"TargetID":110551,"Directional":true}]},{"ID":18192,"SourceStructureID":89359,"TargetStructureID":170,"Label":"89359-170 via Conventional from 89361 -> 89362","Type":"Conventional","Directional":true,"Links":[{"SourceID":89361,"TargetID":89362,"Directional":true}]},{"ID":18193,"SourceStructureID":89372,"TargetStructureID":170,"Label":"89372-170 via Conventional from 89373 -> 89374","Type":"Conventional","Directional":true,"Links":[{"SourceID":89373,"TargetID":89374,"Directional":true}]},{"ID":18194,"SourceStructureID":89378,"TargetStructureID":4569,"Label":"89378-4569 via Conventional from 98923 -> 30852","Type":"Conventional","Directional":true,"Links":[{"SourceID":98923,"TargetID":30852,"Directional":true}]},{"ID":18195,"SourceStructureID":89388,"TargetStructureID":170,"Label":"89388-170 via Conventional from 89389 -> 89390","Type":"Conventional","Directional":true,"Links":[{"SourceID":89389,"TargetID":89390,"Directional":true}]},{"ID":18196,"SourceStructureID":89388,"TargetStructureID":4569,"Label":"89388-4569 via Conventional from 98957 -> 98956","Type":"Conventional","Directional":true,"Links":[{"SourceID":98957,"TargetID":98956,"Directional":true}]},{"ID":18197,"SourceStructureID":89391,"TargetStructureID":170,"Label":"89391-170 via Conventional from 89393 -> 89394","Type":"Conventional","Directional":true,"Links":[{"SourceID":89393,"TargetID":89394,"Directional":true}]},{"ID":18198,"SourceStructureID":89397,"TargetStructureID":170,"Label":"89397-170 via Conventional from 89398 -> 89399","Type":"Conventional","Directional":true,"Links":[{"SourceID":89398,"TargetID":89399,"Directional":true}]},{"ID":18199,"SourceStructureID":89407,"TargetStructureID":4569,"Label":"89407-4569 via Conventional from 98673 -> 98672","Type":"Conventional","Directional":true,"Links":[{"SourceID":98673,"TargetID":98672,"Directional":true}]},{"ID":18200,"SourceStructureID":89411,"TargetStructureID":170,"Label":"89411-170 via Conventional from 89415 -> 89416","Type":"Conventional","Directional":true,"Links":[{"SourceID":89415,"TargetID":89416,"Directional":true}]},{"ID":18201,"SourceStructureID":89413,"TargetStructureID":5396,"Label":"89413-5396 via Conventional from 89414 -> 89412","Type":"Conventional","Directional":true,"Links":[{"SourceID":89414,"TargetID":89412,"Directional":true}]},{"ID":18202,"SourceStructureID":89420,"TargetStructureID":518,"Label":"89420-518 via Conventional from 89422 -> 89421, 89423 -> 3422, 89424 -> 3496","Type":"Conventional","Directional":true,"Links":[{"SourceID":89422,"TargetID":89421,"Directional":true},{"SourceID":89423,"TargetID":3422,"Directional":true},{"SourceID":89424,"TargetID":3496,"Directional":true}]},{"ID":18203,"SourceStructureID":89427,"TargetStructureID":5396,"Label":"89427-5396 via Conventional from 89428 -> 24587","Type":"Conventional","Directional":true,"Links":[{"SourceID":89428,"TargetID":24587,"Directional":true}]},{"ID":18204,"SourceStructureID":89463,"TargetStructureID":170,"Label":"89463-170 via Conventional from 89464 -> 89465","Type":"Conventional","Directional":true,"Links":[{"SourceID":89464,"TargetID":89465,"Directional":true}]},{"ID":18205,"SourceStructureID":89478,"TargetStructureID":170,"Label":"89478-170 via Conventional from 89487 -> 89488","Type":"Conventional","Directional":true,"Links":[{"SourceID":89487,"TargetID":89488,"Directional":true}]},{"ID":18206,"SourceStructureID":89485,"TargetStructureID":170,"Label":"89485-170 via Conventional from 89486 -> 1291","Type":"Conventional","Directional":true,"Links":[{"SourceID":89486,"TargetID":1291,"Directional":true}]},{"ID":18207,"SourceStructureID":89501,"TargetStructureID":170,"Label":"89501-170 via Conventional from 89506 -> 89507","Type":"Conventional","Directional":true,"Links":[{"SourceID":89506,"TargetID":89507,"Directional":true}]},{"ID":18208,"SourceStructureID":89503,"TargetStructureID":170,"Label":"89503-170 via Conventional from 89505 -> 1246","Type":"Conventional","Directional":true,"Links":[{"SourceID":89505,"TargetID":1246,"Directional":true}]},{"ID":18209,"SourceStructureID":89511,"TargetStructureID":170,"Label":"89511-170 via Conventional from 89514 -> 1256","Type":"Conventional","Directional":true,"Links":[{"SourceID":89514,"TargetID":1256,"Directional":true}]},{"ID":18210,"SourceStructureID":89516,"TargetStructureID":6129,"Label":"89516-6129 via Conventional from 91030 -> 91031","Type":"Conventional","Directional":true,"Links":[{"SourceID":91030,"TargetID":91031,"Directional":true}]},{"ID":18211,"SourceStructureID":89524,"TargetStructureID":89522,"Label":"89524-89522 via Ribbon Synapse from 89526 -> 89529","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89526,"TargetID":89529,"Directional":true}]},{"ID":18212,"SourceStructureID":89536,"TargetStructureID":5396,"Label":"89536-5396 via Ribbon Synapse from 89537 -> 89535","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89537,"TargetID":89535,"Directional":true}]},{"ID":18213,"SourceStructureID":89536,"TargetStructureID":89538,"Label":"89536-89538 via Ribbon Synapse from 89537 -> 89539","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89537,"TargetID":89539,"Directional":true}]},{"ID":18214,"SourceStructureID":89544,"TargetStructureID":89546,"Label":"89544-89546 via Conventional from 89545 -> 89549","Type":"Conventional","Directional":true,"Links":[{"SourceID":89545,"TargetID":89549,"Directional":true}]},{"ID":18215,"SourceStructureID":89617,"TargetStructureID":64452,"Label":"89617-64452 via Conventional from 89618 -> 89616","Type":"Conventional","Directional":true,"Links":[{"SourceID":89618,"TargetID":89616,"Directional":true}]},{"ID":18216,"SourceStructureID":89631,"TargetStructureID":5729,"Label":"89631-5729 via Conventional from 89633 -> 89629","Type":"Conventional","Directional":true,"Links":[{"SourceID":89633,"TargetID":89629,"Directional":true}]},{"ID":18217,"SourceStructureID":89644,"TargetStructureID":89638,"Label":"89644-89638 via Conventional from 89645 -> 89643","Type":"Conventional","Directional":true,"Links":[{"SourceID":89645,"TargetID":89643,"Directional":true}]},{"ID":18218,"SourceStructureID":89648,"TargetStructureID":89638,"Label":"89648-89638 via Conventional from 89649 -> 89647","Type":"Conventional","Directional":true,"Links":[{"SourceID":89649,"TargetID":89647,"Directional":true}]},{"ID":18219,"SourceStructureID":89652,"TargetStructureID":89638,"Label":"89652-89638 via Conventional from 89653 -> 89651","Type":"Conventional","Directional":true,"Links":[{"SourceID":89653,"TargetID":89651,"Directional":true}]},{"ID":18220,"SourceStructureID":89654,"TargetStructureID":170,"Label":"89654-170 via Conventional from 89657 -> 89658","Type":"Conventional","Directional":true,"Links":[{"SourceID":89657,"TargetID":89658,"Directional":true}]},{"ID":18221,"SourceStructureID":89660,"TargetStructureID":170,"Label":"89660-170 via Conventional from 89661 -> 89662","Type":"Conventional","Directional":true,"Links":[{"SourceID":89661,"TargetID":89662,"Directional":true}]},{"ID":18222,"SourceStructureID":89664,"TargetStructureID":170,"Label":"89664-170 via Conventional from 89665 -> 89666","Type":"Conventional","Directional":true,"Links":[{"SourceID":89665,"TargetID":89666,"Directional":true}]},{"ID":18223,"SourceStructureID":89670,"TargetStructureID":6203,"Label":"89670-6203 via Conventional from 125779 -> 125778","Type":"Conventional","Directional":true,"Links":[{"SourceID":125779,"TargetID":125778,"Directional":true}]},{"ID":18224,"SourceStructureID":89676,"TargetStructureID":170,"Label":"89676-170 via Conventional from 89678 -> 89679","Type":"Conventional","Directional":true,"Links":[{"SourceID":89678,"TargetID":89679,"Directional":true}]},{"ID":18225,"SourceStructureID":89694,"TargetStructureID":6141,"Label":"89694-6141 via Conventional from 89699 -> 61351","Type":"Conventional","Directional":true,"Links":[{"SourceID":89699,"TargetID":61351,"Directional":true}]},{"ID":18226,"SourceStructureID":89701,"TargetStructureID":170,"Label":"89701-170 via Conventional from 89702 -> 89703","Type":"Conventional","Directional":true,"Links":[{"SourceID":89702,"TargetID":89703,"Directional":true}]},{"ID":18227,"SourceStructureID":89705,"TargetStructureID":170,"Label":"89705-170 via Conventional from 89710 -> 89711","Type":"Conventional","Directional":true,"Links":[{"SourceID":89710,"TargetID":89711,"Directional":true}]},{"ID":18228,"SourceStructureID":89707,"TargetStructureID":33272,"Label":"89707-33272 via Conventional from 89708 -> 33275","Type":"Conventional","Directional":true,"Links":[{"SourceID":89708,"TargetID":33275,"Directional":true}]},{"ID":18229,"SourceStructureID":89720,"TargetStructureID":170,"Label":"89720-170 via Conventional from 89725 -> 1254","Type":"Conventional","Directional":true,"Links":[{"SourceID":89725,"TargetID":1254,"Directional":true}]},{"ID":18230,"SourceStructureID":89735,"TargetStructureID":170,"Label":"89735-170 via Conventional from 89736 -> 1324","Type":"Conventional","Directional":true,"Links":[{"SourceID":89736,"TargetID":1324,"Directional":true}]},{"ID":18231,"SourceStructureID":89756,"TargetStructureID":170,"Label":"89756-170 via Conventional from 89758 -> 89759","Type":"Conventional","Directional":true,"Links":[{"SourceID":89758,"TargetID":89759,"Directional":true}]},{"ID":18232,"SourceStructureID":89757,"TargetStructureID":170,"Label":"89757-170 via Conventional from 89767 -> 1267, 89767 -> 1268","Type":"Conventional","Directional":true,"Links":[{"SourceID":89767,"TargetID":1267,"Directional":true},{"SourceID":89767,"TargetID":1268,"Directional":true}]},{"ID":18233,"SourceStructureID":89760,"TargetStructureID":170,"Label":"89760-170 via Conventional from 89766 -> 1265","Type":"Conventional","Directional":true,"Links":[{"SourceID":89766,"TargetID":1265,"Directional":true}]},{"ID":18234,"SourceStructureID":89775,"TargetStructureID":6142,"Label":"89775-6142 via Conventional from 89783 -> 16114","Type":"Conventional","Directional":true,"Links":[{"SourceID":89783,"TargetID":16114,"Directional":true}]},{"ID":18235,"SourceStructureID":89775,"TargetStructureID":10412,"Label":"89775-10412 via Conventional from 89806 -> 89807","Type":"Conventional","Directional":true,"Links":[{"SourceID":89806,"TargetID":89807,"Directional":true}]},{"ID":18236,"SourceStructureID":89775,"TargetStructureID":89788,"Label":"89775-89788 via Conventional from 89787 -> 89789","Type":"Conventional","Directional":true,"Links":[{"SourceID":89787,"TargetID":89789,"Directional":true}]},{"ID":18237,"SourceStructureID":89775,"TargetStructureID":89809,"Label":"89775-89809 via Conventional from 89808 -> 89810","Type":"Conventional","Directional":true,"Links":[{"SourceID":89808,"TargetID":89810,"Directional":true}]},{"ID":18238,"SourceStructureID":89780,"TargetStructureID":89775,"Label":"89780-89775 via Conventional from 89781 -> 89779","Type":"Conventional","Directional":true,"Links":[{"SourceID":89781,"TargetID":89779,"Directional":true}]},{"ID":18239,"SourceStructureID":89791,"TargetStructureID":89775,"Label":"89791-89775 via Conventional from 89794 -> 89795","Type":"Conventional","Directional":true,"Links":[{"SourceID":89794,"TargetID":89795,"Directional":true}]},{"ID":18240,"SourceStructureID":89804,"TargetStructureID":89775,"Label":"89804-89775 via Conventional from 89805 -> 89803","Type":"Conventional","Directional":true,"Links":[{"SourceID":89805,"TargetID":89803,"Directional":true}]},{"ID":18241,"SourceStructureID":89811,"TargetStructureID":89814,"Label":"89811-89814 via Conventional from 89813 -> 89817","Type":"Conventional","Directional":true,"Links":[{"SourceID":89813,"TargetID":89817,"Directional":true}]},{"ID":18242,"SourceStructureID":89822,"TargetStructureID":89820,"Label":"89822-89820 via Ribbon Synapse from 89823 -> 89824","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89823,"TargetID":89824,"Directional":true}]},{"ID":18243,"SourceStructureID":89833,"TargetStructureID":89831,"Label":"89833-89831 via Conventional from 89834 -> 89832","Type":"Conventional","Directional":true,"Links":[{"SourceID":89834,"TargetID":89832,"Directional":true}]},{"ID":18244,"SourceStructureID":89836,"TargetStructureID":89831,"Label":"89836-89831 via Conventional from 89843 -> 89842","Type":"Conventional","Directional":true,"Links":[{"SourceID":89843,"TargetID":89842,"Directional":true}]},{"ID":18245,"SourceStructureID":89838,"TargetStructureID":89831,"Label":"89838-89831 via Conventional from 89840 -> 89837","Type":"Conventional","Directional":true,"Links":[{"SourceID":89840,"TargetID":89837,"Directional":true}]},{"ID":18246,"SourceStructureID":89851,"TargetStructureID":55319,"Label":"89851-55319 via Conventional from 89982 -> 55322","Type":"Conventional","Directional":true,"Links":[{"SourceID":89982,"TargetID":55322,"Directional":true}]},{"ID":18247,"SourceStructureID":89851,"TargetStructureID":89938,"Label":"89851-89938 via Conventional from 89937 -> 89939","Type":"Conventional","Directional":true,"Links":[{"SourceID":89937,"TargetID":89939,"Directional":true}]},{"ID":18248,"SourceStructureID":89855,"TargetStructureID":170,"Label":"89855-170 via Conventional from 89870 -> 89871","Type":"Conventional","Directional":true,"Links":[{"SourceID":89870,"TargetID":89871,"Directional":true}]},{"ID":18249,"SourceStructureID":89860,"TargetStructureID":170,"Label":"89860-170 via Conventional from 89875 -> 89876","Type":"Conventional","Directional":true,"Links":[{"SourceID":89875,"TargetID":89876,"Directional":true}]},{"ID":18250,"SourceStructureID":89868,"TargetStructureID":89851,"Label":"89868-89851 via Conventional from 89869 -> 89867","Type":"Conventional","Directional":true,"Links":[{"SourceID":89869,"TargetID":89867,"Directional":true}]},{"ID":18251,"SourceStructureID":89872,"TargetStructureID":170,"Label":"89872-170 via Conventional from 89873 -> 89874","Type":"Conventional","Directional":true,"Links":[{"SourceID":89873,"TargetID":89874,"Directional":true}]},{"ID":18252,"SourceStructureID":89877,"TargetStructureID":170,"Label":"89877-170 via Conventional from 89880 -> 89881","Type":"Conventional","Directional":true,"Links":[{"SourceID":89880,"TargetID":89881,"Directional":true}]},{"ID":18253,"SourceStructureID":89882,"TargetStructureID":170,"Label":"89882-170 via Conventional from 89885 -> 89886","Type":"Conventional","Directional":true,"Links":[{"SourceID":89885,"TargetID":89886,"Directional":true}]},{"ID":18254,"SourceStructureID":89887,"TargetStructureID":517,"Label":"89887-517 via Conventional from 89891 -> 89892","Type":"Conventional","Directional":true,"Links":[{"SourceID":89891,"TargetID":89892,"Directional":true}]},{"ID":18255,"SourceStructureID":89902,"TargetStructureID":170,"Label":"89902-170 via Conventional from 89904 -> 89905","Type":"Conventional","Directional":true,"Links":[{"SourceID":89904,"TargetID":89905,"Directional":true}]},{"ID":18256,"SourceStructureID":89907,"TargetStructureID":89851,"Label":"89907-89851 via Conventional from 89908 -> 89906","Type":"Conventional","Directional":true,"Links":[{"SourceID":89908,"TargetID":89906,"Directional":true}]},{"ID":18257,"SourceStructureID":89910,"TargetStructureID":89851,"Label":"89910-89851 via Conventional from 89913 -> 89914","Type":"Conventional","Directional":true,"Links":[{"SourceID":89913,"TargetID":89914,"Directional":true}]},{"ID":18258,"SourceStructureID":89912,"TargetStructureID":3679,"Label":"89912-3679 via Conventional from 89945 -> 4709","Type":"Conventional","Directional":true,"Links":[{"SourceID":89945,"TargetID":4709,"Directional":true}]},{"ID":18259,"SourceStructureID":89915,"TargetStructureID":170,"Label":"89915-170 via Conventional from 89918 -> 89919","Type":"Conventional","Directional":true,"Links":[{"SourceID":89918,"TargetID":89919,"Directional":true}]},{"ID":18260,"SourceStructureID":89921,"TargetStructureID":170,"Label":"89921-170 via Conventional from 89922 -> 89923","Type":"Conventional","Directional":true,"Links":[{"SourceID":89922,"TargetID":89923,"Directional":true}]},{"ID":18261,"SourceStructureID":89928,"TargetStructureID":89851,"Label":"89928-89851 via Ribbon Synapse from 89932 -> 89926","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":89932,"TargetID":89926,"Directional":true}]},{"ID":18262,"SourceStructureID":89941,"TargetStructureID":170,"Label":"89941-170 via Conventional from 89942 -> 89943","Type":"Conventional","Directional":true,"Links":[{"SourceID":89942,"TargetID":89943,"Directional":true}]},{"ID":18263,"SourceStructureID":89944,"TargetStructureID":170,"Label":"89944-170 via Conventional from 89946 -> 89947","Type":"Conventional","Directional":true,"Links":[{"SourceID":89946,"TargetID":89947,"Directional":true}]},{"ID":18264,"SourceStructureID":89952,"TargetStructureID":170,"Label":"89952-170 via Conventional from 89954 -> 89955","Type":"Conventional","Directional":true,"Links":[{"SourceID":89954,"TargetID":89955,"Directional":true}]},{"ID":18265,"SourceStructureID":89965,"TargetStructureID":170,"Label":"89965-170 via Conventional from 89967 -> 89968","Type":"Conventional","Directional":true,"Links":[{"SourceID":89967,"TargetID":89968,"Directional":true}]},{"ID":18266,"SourceStructureID":89984,"TargetStructureID":471,"Label":"89984-471 via Conventional from 90016 -> 90025, 90026 -> 90027, 90028 -> 90029, 90030 -> 8236, 90031 -> 90032","Type":"Conventional","Directional":true,"Links":[{"SourceID":90016,"TargetID":90025,"Directional":true},{"SourceID":90026,"TargetID":90027,"Directional":true},{"SourceID":90028,"TargetID":90029,"Directional":true},{"SourceID":90030,"TargetID":8236,"Directional":true},{"SourceID":90031,"TargetID":90032,"Directional":true}]},{"ID":18267,"SourceStructureID":89988,"TargetStructureID":170,"Label":"89988-170 via Conventional from 89995 -> 89996","Type":"Conventional","Directional":true,"Links":[{"SourceID":89995,"TargetID":89996,"Directional":true}]},{"ID":18268,"SourceStructureID":89989,"TargetStructureID":431,"Label":"89989-431 via Conventional from 90042 -> 14376, 90087 -> 12672, 90099 -> 90104","Type":"Conventional","Directional":true,"Links":[{"SourceID":90042,"TargetID":14376,"Directional":true},{"SourceID":90087,"TargetID":12672,"Directional":true},{"SourceID":90099,"TargetID":90104,"Directional":true}]},{"ID":18269,"SourceStructureID":89989,"TargetStructureID":90040,"Label":"89989-90040 via Conventional from 90039 -> 90041","Type":"Conventional","Directional":true,"Links":[{"SourceID":90039,"TargetID":90041,"Directional":true}]},{"ID":18270,"SourceStructureID":90004,"TargetStructureID":4569,"Label":"90004-4569 via Conventional from 98482 -> 98483","Type":"Conventional","Directional":true,"Links":[{"SourceID":98482,"TargetID":98483,"Directional":true}]},{"ID":18271,"SourceStructureID":90013,"TargetStructureID":4569,"Label":"90013-4569 via Conventional from 98549 -> 47496","Type":"Conventional","Directional":true,"Links":[{"SourceID":98549,"TargetID":47496,"Directional":true}]},{"ID":18272,"SourceStructureID":90047,"TargetStructureID":170,"Label":"90047-170 via Conventional from 90056 -> 1270","Type":"Conventional","Directional":true,"Links":[{"SourceID":90056,"TargetID":1270,"Directional":true}]},{"ID":18273,"SourceStructureID":90049,"TargetStructureID":170,"Label":"90049-170 via Conventional from 90050 -> 90051","Type":"Conventional","Directional":true,"Links":[{"SourceID":90050,"TargetID":90051,"Directional":true}]},{"ID":18274,"SourceStructureID":90061,"TargetStructureID":595,"Label":"90061-595 via Conventional from 90458 -> 90459","Type":"Conventional","Directional":true,"Links":[{"SourceID":90458,"TargetID":90459,"Directional":true}]},{"ID":18275,"SourceStructureID":90066,"TargetStructureID":170,"Label":"90066-170 via Conventional from 90067 -> 90068","Type":"Conventional","Directional":true,"Links":[{"SourceID":90067,"TargetID":90068,"Directional":true}]},{"ID":18276,"SourceStructureID":90079,"TargetStructureID":170,"Label":"90079-170 via Conventional from 90083 -> 28371","Type":"Conventional","Directional":true,"Links":[{"SourceID":90083,"TargetID":28371,"Directional":true}]},{"ID":18277,"SourceStructureID":90102,"TargetStructureID":431,"Label":"90102-431 via Conventional from 90103 -> 90101","Type":"Conventional","Directional":true,"Links":[{"SourceID":90103,"TargetID":90101,"Directional":true}]},{"ID":18278,"SourceStructureID":90108,"TargetStructureID":89989,"Label":"90108-89989 via Conventional from 90109 -> 90107","Type":"Conventional","Directional":true,"Links":[{"SourceID":90109,"TargetID":90107,"Directional":true}]},{"ID":18279,"SourceStructureID":90111,"TargetStructureID":90118,"Label":"90111-90118 via Conventional from 90117 -> 90119","Type":"Conventional","Directional":true,"Links":[{"SourceID":90117,"TargetID":90119,"Directional":true}]},{"ID":18280,"SourceStructureID":90113,"TargetStructureID":90111,"Label":"90113-90111 via Ribbon Synapse from 90114 -> 90112","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90114,"TargetID":90112,"Directional":true}]},{"ID":18281,"SourceStructureID":90118,"TargetStructureID":90149,"Label":"90118-90149 via Conventional from 90147 -> 90150","Type":"Conventional","Directional":true,"Links":[{"SourceID":90147,"TargetID":90150,"Directional":true}]},{"ID":18282,"SourceStructureID":90122,"TargetStructureID":90118,"Label":"90122-90118 via Conventional from 90131 -> 90130","Type":"Conventional","Directional":true,"Links":[{"SourceID":90131,"TargetID":90130,"Directional":true}]},{"ID":18283,"SourceStructureID":90134,"TargetStructureID":90118,"Label":"90134-90118 via Conventional from 90135 -> 90133","Type":"Conventional","Directional":true,"Links":[{"SourceID":90135,"TargetID":90133,"Directional":true}]},{"ID":18284,"SourceStructureID":90138,"TargetStructureID":90118,"Label":"90138-90118 via Conventional from 90139 -> 90136","Type":"Conventional","Directional":true,"Links":[{"SourceID":90139,"TargetID":90136,"Directional":true}]},{"ID":18285,"SourceStructureID":90140,"TargetStructureID":90118,"Label":"90140-90118 via Conventional from 90141 -> 90137","Type":"Conventional","Directional":true,"Links":[{"SourceID":90141,"TargetID":90137,"Directional":true}]},{"ID":18286,"SourceStructureID":90151,"TargetStructureID":328,"Label":"90151-328 via Conventional from 90159 -> 90160","Type":"Conventional","Directional":true,"Links":[{"SourceID":90159,"TargetID":90160,"Directional":true}]},{"ID":18287,"SourceStructureID":90151,"TargetStructureID":90156,"Label":"90151-90156 via Conventional from 90155 -> 90157","Type":"Conventional","Directional":true,"Links":[{"SourceID":90155,"TargetID":90157,"Directional":true}]},{"ID":18288,"SourceStructureID":90234,"TargetStructureID":71882,"Label":"90234-71882 via Conventional from 90235 -> 90233","Type":"Conventional","Directional":true,"Links":[{"SourceID":90235,"TargetID":90233,"Directional":true}]},{"ID":18289,"SourceStructureID":90243,"TargetStructureID":170,"Label":"90243-170 via Conventional from 90244 -> 90245","Type":"Conventional","Directional":true,"Links":[{"SourceID":90244,"TargetID":90245,"Directional":true}]},{"ID":18290,"SourceStructureID":90271,"TargetStructureID":170,"Label":"90271-170 via Conventional from 90276 -> 1402","Type":"Conventional","Directional":true,"Links":[{"SourceID":90276,"TargetID":1402,"Directional":true}]},{"ID":18291,"SourceStructureID":90284,"TargetStructureID":4569,"Label":"90284-4569 via Conventional from 98467 -> 52508","Type":"Conventional","Directional":true,"Links":[{"SourceID":98467,"TargetID":52508,"Directional":true}]},{"ID":18292,"SourceStructureID":90296,"TargetStructureID":170,"Label":"90296-170 via Conventional from 90297 -> 90298","Type":"Conventional","Directional":true,"Links":[{"SourceID":90297,"TargetID":90298,"Directional":true}]},{"ID":18293,"SourceStructureID":90303,"TargetStructureID":170,"Label":"90303-170 via Conventional from 90306 -> 90305","Type":"Conventional","Directional":true,"Links":[{"SourceID":90306,"TargetID":90305,"Directional":true}]},{"ID":18294,"SourceStructureID":90311,"TargetStructureID":170,"Label":"90311-170 via Conventional from 90313 -> 92477","Type":"Conventional","Directional":true,"Links":[{"SourceID":90313,"TargetID":92477,"Directional":true}]},{"ID":18295,"SourceStructureID":90328,"TargetStructureID":16026,"Label":"90328-16026 via Conventional from 90412 -> 134808","Type":"Conventional","Directional":true,"Links":[{"SourceID":90412,"TargetID":134808,"Directional":true}]},{"ID":18296,"SourceStructureID":90347,"TargetStructureID":170,"Label":"90347-170 via Conventional from 90348 -> 90349","Type":"Conventional","Directional":true,"Links":[{"SourceID":90348,"TargetID":90349,"Directional":true}]},{"ID":18297,"SourceStructureID":90363,"TargetStructureID":170,"Label":"90363-170 via Conventional from 90364 -> 90365","Type":"Conventional","Directional":true,"Links":[{"SourceID":90364,"TargetID":90365,"Directional":true}]},{"ID":18298,"SourceStructureID":90368,"TargetStructureID":170,"Label":"90368-170 via Conventional from 90369 -> 1407","Type":"Conventional","Directional":true,"Links":[{"SourceID":90369,"TargetID":1407,"Directional":true}]},{"ID":18299,"SourceStructureID":90381,"TargetStructureID":170,"Label":"90381-170 via Conventional from 90382 -> 90385","Type":"Conventional","Directional":true,"Links":[{"SourceID":90382,"TargetID":90385,"Directional":true}]},{"ID":18300,"SourceStructureID":90393,"TargetStructureID":170,"Label":"90393-170 via Conventional from 90398 -> 90400","Type":"Conventional","Directional":true,"Links":[{"SourceID":90398,"TargetID":90400,"Directional":true}]},{"ID":18301,"SourceStructureID":90396,"TargetStructureID":71882,"Label":"90396-71882 via Ribbon Synapse from 90397 -> 90395","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90397,"TargetID":90395,"Directional":true}]},{"ID":18302,"SourceStructureID":90396,"TargetStructureID":90389,"Label":"90396-90389 via Ribbon Synapse from 90397 -> 90392","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":90397,"TargetID":90392,"Directional":true}]},{"ID":18303,"SourceStructureID":90420,"TargetStructureID":170,"Label":"90420-170 via Conventional from 92481 -> 92483","Type":"Conventional","Directional":true,"Links":[{"SourceID":92481,"TargetID":92483,"Directional":true}]},{"ID":18304,"SourceStructureID":90420,"TargetStructureID":324,"Label":"90420-324 via Conventional from 92481 -> 92482","Type":"Conventional","Directional":true,"Links":[{"SourceID":92481,"TargetID":92482,"Directional":true}]},{"ID":18305,"SourceStructureID":90430,"TargetStructureID":71882,"Label":"90430-71882 via Conventional from 90432 -> 90429","Type":"Conventional","Directional":true,"Links":[{"SourceID":90432,"TargetID":90429,"Directional":true}]},{"ID":18306,"SourceStructureID":90436,"TargetStructureID":170,"Label":"90436-170 via Conventional from 90437 -> 90438","Type":"Conventional","Directional":true,"Links":[{"SourceID":90437,"TargetID":90438,"Directional":true}]},{"ID":18307,"SourceStructureID":90440,"TargetStructureID":170,"Label":"90440-170 via Conventional from 90442 -> 90443","Type":"Conventional","Directional":true,"Links":[{"SourceID":90442,"TargetID":90443,"Directional":true}]},{"ID":18308,"SourceStructureID":90460,"TargetStructureID":4569,"Label":"90460-4569 via Conventional from 98397 -> 30828","Type":"Conventional","Directional":true,"Links":[{"SourceID":98397,"TargetID":30828,"Directional":true}]},{"ID":18309,"SourceStructureID":90468,"TargetStructureID":170,"Label":"90468-170 via Conventional from 90469 -> 90470","Type":"Conventional","Directional":true,"Links":[{"SourceID":90469,"TargetID":90470,"Directional":true}]},{"ID":18310,"SourceStructureID":90483,"TargetStructureID":372,"Label":"90483-372 via Conventional from 90495 -> 90496, 90498 -> 45646","Type":"Conventional","Directional":true,"Links":[{"SourceID":90495,"TargetID":90496,"Directional":true},{"SourceID":90498,"TargetID":45646,"Directional":true}]},{"ID":18311,"SourceStructureID":90483,"TargetStructureID":4569,"Label":"90483-4569 via Conventional from 90484 -> 53683","Type":"Conventional","Directional":true,"Links":[{"SourceID":90484,"TargetID":53683,"Directional":true}]},{"ID":18312,"SourceStructureID":90488,"TargetStructureID":90487,"Label":"90488-90487 via Conventional from 90491 -> 90492","Type":"Conventional","Directional":true,"Links":[{"SourceID":90491,"TargetID":90492,"Directional":true}]},{"ID":18313,"SourceStructureID":90526,"TargetStructureID":53115,"Label":"90526-53115 via Conventional from 90527 -> 90524","Type":"Conventional","Directional":true,"Links":[{"SourceID":90527,"TargetID":90524,"Directional":true}]},{"ID":18314,"SourceStructureID":90543,"TargetStructureID":170,"Label":"90543-170 via Conventional from 90545 -> 90546","Type":"Conventional","Directional":true,"Links":[{"SourceID":90545,"TargetID":90546,"Directional":true}]},{"ID":18315,"SourceStructureID":90544,"TargetStructureID":170,"Label":"90544-170 via Conventional from 90548 -> 90547","Type":"Conventional","Directional":true,"Links":[{"SourceID":90548,"TargetID":90547,"Directional":true}]},{"ID":18316,"SourceStructureID":90563,"TargetStructureID":170,"Label":"90563-170 via Conventional from 90564 -> 1417","Type":"Conventional","Directional":true,"Links":[{"SourceID":90564,"TargetID":1417,"Directional":true}]},{"ID":18317,"SourceStructureID":90568,"TargetStructureID":170,"Label":"90568-170 via Conventional from 90569 -> 1429","Type":"Conventional","Directional":true,"Links":[{"SourceID":90569,"TargetID":1429,"Directional":true}]},{"ID":18318,"SourceStructureID":90585,"TargetStructureID":170,"Label":"90585-170 via Conventional from 90586 -> 1421","Type":"Conventional","Directional":true,"Links":[{"SourceID":90586,"TargetID":1421,"Directional":true}]},{"ID":18319,"SourceStructureID":90587,"TargetStructureID":170,"Label":"90587-170 via Conventional from 90593 -> 90594","Type":"Conventional","Directional":true,"Links":[{"SourceID":90593,"TargetID":90594,"Directional":true}]},{"ID":18320,"SourceStructureID":90588,"TargetStructureID":170,"Label":"90588-170 via Conventional from 90589 -> 90590","Type":"Conventional","Directional":true,"Links":[{"SourceID":90589,"TargetID":90590,"Directional":true}]},{"ID":18321,"SourceStructureID":90597,"TargetStructureID":170,"Label":"90597-170 via Conventional from 90598 -> 90599","Type":"Conventional","Directional":true,"Links":[{"SourceID":90598,"TargetID":90599,"Directional":true}]},{"ID":18322,"SourceStructureID":90602,"TargetStructureID":90604,"Label":"90602-90604 via Conventional from 90605 -> 90606","Type":"Conventional","Directional":true,"Links":[{"SourceID":90605,"TargetID":90606,"Directional":true}]},{"ID":18323,"SourceStructureID":90607,"TargetStructureID":170,"Label":"90607-170 via Conventional from 90608 -> 90609","Type":"Conventional","Directional":true,"Links":[{"SourceID":90608,"TargetID":90609,"Directional":true}]},{"ID":18324,"SourceStructureID":90615,"TargetStructureID":170,"Label":"90615-170 via Conventional from 90616 -> 90617","Type":"Conventional","Directional":true,"Links":[{"SourceID":90616,"TargetID":90617,"Directional":true}]},{"ID":18325,"SourceStructureID":90618,"TargetStructureID":170,"Label":"90618-170 via Conventional from 90619 -> 90620","Type":"Conventional","Directional":true,"Links":[{"SourceID":90619,"TargetID":90620,"Directional":true}]},{"ID":18326,"SourceStructureID":90642,"TargetStructureID":6115,"Label":"90642-6115 via Conventional from 90643 -> 90641","Type":"Conventional","Directional":true,"Links":[{"SourceID":90643,"TargetID":90641,"Directional":true}]},{"ID":18327,"SourceStructureID":90657,"TargetStructureID":352,"Label":"90657-352 via Conventional from 90659 -> 90662","Type":"Conventional","Directional":true,"Links":[{"SourceID":90659,"TargetID":90662,"Directional":true}]},{"ID":18328,"SourceStructureID":90715,"TargetStructureID":452,"Label":"90715-452 via Conventional from 90760 -> 43187","Type":"Conventional","Directional":true,"Links":[{"SourceID":90760,"TargetID":43187,"Directional":true}]},{"ID":18329,"SourceStructureID":90715,"TargetStructureID":4943,"Label":"90715-4943 via Conventional from 91315 -> 8512","Type":"Conventional","Directional":true,"Links":[{"SourceID":91315,"TargetID":8512,"Directional":true}]},{"ID":18330,"SourceStructureID":90761,"TargetStructureID":180,"Label":"90761-180 via Conventional from 90762 -> 90758","Type":"Conventional","Directional":true,"Links":[{"SourceID":90762,"TargetID":90758,"Directional":true}]},{"ID":18331,"SourceStructureID":90769,"TargetStructureID":180,"Label":"90769-180 via Conventional from 90770 -> 90768","Type":"Conventional","Directional":true,"Links":[{"SourceID":90770,"TargetID":90768,"Directional":true}]},{"ID":18332,"SourceStructureID":90772,"TargetStructureID":180,"Label":"90772-180 via Conventional from 90773 -> 90771","Type":"Conventional","Directional":true,"Links":[{"SourceID":90773,"TargetID":90771,"Directional":true}]},{"ID":18333,"SourceStructureID":90789,"TargetStructureID":180,"Label":"90789-180 via Conventional from 90790 -> 90788","Type":"Conventional","Directional":true,"Links":[{"SourceID":90790,"TargetID":90788,"Directional":true}]},{"ID":18334,"SourceStructureID":90800,"TargetStructureID":180,"Label":"90800-180 via Conventional from 90802 -> 90799","Type":"Conventional","Directional":true,"Links":[{"SourceID":90802,"TargetID":90799,"Directional":true}]},{"ID":18335,"SourceStructureID":90806,"TargetStructureID":180,"Label":"90806-180 via Conventional from 90807 -> 90805","Type":"Conventional","Directional":true,"Links":[{"SourceID":90807,"TargetID":90805,"Directional":true}]},{"ID":18336,"SourceStructureID":90819,"TargetStructureID":180,"Label":"90819-180 via Conventional from 90820 -> 6572","Type":"Conventional","Directional":true,"Links":[{"SourceID":90820,"TargetID":6572,"Directional":true}]},{"ID":18337,"SourceStructureID":90819,"TargetStructureID":90822,"Label":"90819-90822 via Conventional from 90821 -> 90826","Type":"Conventional","Directional":true,"Links":[{"SourceID":90821,"TargetID":90826,"Directional":true}]},{"ID":18338,"SourceStructureID":90827,"TargetStructureID":180,"Label":"90827-180 via Conventional from 90828 -> 6571","Type":"Conventional","Directional":true,"Links":[{"SourceID":90828,"TargetID":6571,"Directional":true}]},{"ID":18339,"SourceStructureID":90829,"TargetStructureID":166,"Label":"90829-166 via Conventional from 90832 -> 39350","Type":"Conventional","Directional":true,"Links":[{"SourceID":90832,"TargetID":39350,"Directional":true}]},{"ID":18340,"SourceStructureID":90829,"TargetStructureID":180,"Label":"90829-180 via Conventional from 90830 -> 6064","Type":"Conventional","Directional":true,"Links":[{"SourceID":90830,"TargetID":6064,"Directional":true}]},{"ID":18341,"SourceStructureID":90835,"TargetStructureID":180,"Label":"90835-180 via Conventional from 90836 -> 90837","Type":"Conventional","Directional":true,"Links":[{"SourceID":90836,"TargetID":90837,"Directional":true}]},{"ID":18342,"SourceStructureID":90839,"TargetStructureID":180,"Label":"90839-180 via Conventional from 95876 -> 6570","Type":"Conventional","Directional":true,"Links":[{"SourceID":95876,"TargetID":6570,"Directional":true}]},{"ID":18343,"SourceStructureID":90844,"TargetStructureID":180,"Label":"90844-180 via Conventional from 95720 -> 95721","Type":"Conventional","Directional":true,"Links":[{"SourceID":95720,"TargetID":95721,"Directional":true}]},{"ID":18344,"SourceStructureID":90877,"TargetStructureID":180,"Label":"90877-180 via Conventional from 90878 -> 90876","Type":"Conventional","Directional":true,"Links":[{"SourceID":90878,"TargetID":90876,"Directional":true}]},{"ID":18345,"SourceStructureID":90919,"TargetStructureID":180,"Label":"90919-180 via Conventional from 90920 -> 90918","Type":"Conventional","Directional":true,"Links":[{"SourceID":90920,"TargetID":90918,"Directional":true}]},{"ID":18346,"SourceStructureID":90928,"TargetStructureID":6857,"Label":"90928-6857 via Conventional from 90929 -> 7501","Type":"Conventional","Directional":true,"Links":[{"SourceID":90929,"TargetID":7501,"Directional":true}]},{"ID":18347,"SourceStructureID":90932,"TargetStructureID":180,"Label":"90932-180 via Conventional from 90933 -> 90931","Type":"Conventional","Directional":true,"Links":[{"SourceID":90933,"TargetID":90931,"Directional":true}]},{"ID":18348,"SourceStructureID":90937,"TargetStructureID":180,"Label":"90937-180 via Conventional from 90940 -> 90941","Type":"Conventional","Directional":true,"Links":[{"SourceID":90940,"TargetID":90941,"Directional":true}]},{"ID":18349,"SourceStructureID":90943,"TargetStructureID":180,"Label":"90943-180 via Conventional from 90944 -> 90942","Type":"Conventional","Directional":true,"Links":[{"SourceID":90944,"TargetID":90942,"Directional":true}]},{"ID":18350,"SourceStructureID":90956,"TargetStructureID":90952,"Label":"90956-90952 via Conventional from 90958 -> 90955","Type":"Conventional","Directional":true,"Links":[{"SourceID":90958,"TargetID":90955,"Directional":true}]},{"ID":18351,"SourceStructureID":90961,"TargetStructureID":180,"Label":"90961-180 via Conventional from 90962 -> 56871","Type":"Conventional","Directional":true,"Links":[{"SourceID":90962,"TargetID":56871,"Directional":true}]},{"ID":18352,"SourceStructureID":90969,"TargetStructureID":180,"Label":"90969-180 via Conventional from 90970 -> 56875, 95508 -> 95509","Type":"Conventional","Directional":true,"Links":[{"SourceID":90970,"TargetID":56875,"Directional":true},{"SourceID":95508,"TargetID":95509,"Directional":true}]},{"ID":18353,"SourceStructureID":90975,"TargetStructureID":180,"Label":"90975-180 via Conventional from 90976 -> 56876","Type":"Conventional","Directional":true,"Links":[{"SourceID":90976,"TargetID":56876,"Directional":true}]},{"ID":18354,"SourceStructureID":90979,"TargetStructureID":180,"Label":"90979-180 via Conventional from 90980 -> 90978","Type":"Conventional","Directional":true,"Links":[{"SourceID":90980,"TargetID":90978,"Directional":true}]},{"ID":18355,"SourceStructureID":90981,"TargetStructureID":180,"Label":"90981-180 via Conventional from 95514 -> 90977","Type":"Conventional","Directional":true,"Links":[{"SourceID":95514,"TargetID":90977,"Directional":true}]},{"ID":18356,"SourceStructureID":90984,"TargetStructureID":180,"Label":"90984-180 via Conventional from 90985 -> 90983","Type":"Conventional","Directional":true,"Links":[{"SourceID":90985,"TargetID":90983,"Directional":true}]},{"ID":18357,"SourceStructureID":90989,"TargetStructureID":180,"Label":"90989-180 via Conventional from 90990 -> 90988","Type":"Conventional","Directional":true,"Links":[{"SourceID":90990,"TargetID":90988,"Directional":true}]},{"ID":18358,"SourceStructureID":90991,"TargetStructureID":180,"Label":"90991-180 via Conventional from 90992 -> 90987","Type":"Conventional","Directional":true,"Links":[{"SourceID":90992,"TargetID":90987,"Directional":true}]},{"ID":18359,"SourceStructureID":91000,"TargetStructureID":180,"Label":"91000-180 via Conventional from 91001 -> 90999","Type":"Conventional","Directional":true,"Links":[{"SourceID":91001,"TargetID":90999,"Directional":true}]},{"ID":18360,"SourceStructureID":91032,"TargetStructureID":16026,"Label":"91032-16026 via Conventional from 91033 -> 24097","Type":"Conventional","Directional":true,"Links":[{"SourceID":91033,"TargetID":24097,"Directional":true}]},{"ID":18361,"SourceStructureID":91036,"TargetStructureID":16026,"Label":"91036-16026 via Conventional from 91040 -> 25735","Type":"Conventional","Directional":true,"Links":[{"SourceID":91040,"TargetID":25735,"Directional":true}]},{"ID":18362,"SourceStructureID":91060,"TargetStructureID":91056,"Label":"91060-91056 via Conventional from 91064 -> 91058","Type":"Conventional","Directional":true,"Links":[{"SourceID":91064,"TargetID":91058,"Directional":true}]},{"ID":18363,"SourceStructureID":91071,"TargetStructureID":16026,"Label":"91071-16026 via Conventional from 91072 -> 91070","Type":"Conventional","Directional":true,"Links":[{"SourceID":91072,"TargetID":91070,"Directional":true}]},{"ID":18364,"SourceStructureID":91103,"TargetStructureID":16026,"Label":"91103-16026 via Conventional from 91105 -> 25715","Type":"Conventional","Directional":true,"Links":[{"SourceID":91105,"TargetID":25715,"Directional":true}]},{"ID":18365,"SourceStructureID":91114,"TargetStructureID":16026,"Label":"91114-16026 via Conventional from 91115 -> 91113","Type":"Conventional","Directional":true,"Links":[{"SourceID":91115,"TargetID":91113,"Directional":true}]},{"ID":18366,"SourceStructureID":91167,"TargetStructureID":16026,"Label":"91167-16026 via Conventional from 91169 -> 91170","Type":"Conventional","Directional":true,"Links":[{"SourceID":91169,"TargetID":91170,"Directional":true}]},{"ID":18367,"SourceStructureID":91176,"TargetStructureID":2610,"Label":"91176-2610 via Conventional from 91177 -> 2933","Type":"Conventional","Directional":true,"Links":[{"SourceID":91177,"TargetID":2933,"Directional":true}]},{"ID":18368,"SourceStructureID":91220,"TargetStructureID":90715,"Label":"91220-90715 via Ribbon Synapse from 91221 -> 91028","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91221,"TargetID":91028,"Directional":true}]},{"ID":18369,"SourceStructureID":91405,"TargetStructureID":6997,"Label":"91405-6997 via Conventional from 91413 -> 70890","Type":"Conventional","Directional":true,"Links":[{"SourceID":91413,"TargetID":70890,"Directional":true}]},{"ID":18370,"SourceStructureID":91446,"TargetStructureID":5601,"Label":"91446-5601 via Conventional from 91447 -> 91445","Type":"Conventional","Directional":true,"Links":[{"SourceID":91447,"TargetID":91445,"Directional":true}]},{"ID":18371,"SourceStructureID":91459,"TargetStructureID":4876,"Label":"91459-4876 via Conventional from 91461 -> 91458","Type":"Conventional","Directional":true,"Links":[{"SourceID":91461,"TargetID":91458,"Directional":true}]},{"ID":18372,"SourceStructureID":91507,"TargetStructureID":5601,"Label":"91507-5601 via Conventional from 91509 -> 91350","Type":"Conventional","Directional":true,"Links":[{"SourceID":91509,"TargetID":91350,"Directional":true}]},{"ID":18373,"SourceStructureID":91537,"TargetStructureID":593,"Label":"91537-593 via Conventional from 91538 -> 7744","Type":"Conventional","Directional":true,"Links":[{"SourceID":91538,"TargetID":7744,"Directional":true}]},{"ID":18374,"SourceStructureID":91542,"TargetStructureID":3116,"Label":"91542-3116 via Conventional from 91543 -> 23809","Type":"Conventional","Directional":true,"Links":[{"SourceID":91543,"TargetID":23809,"Directional":true}]},{"ID":18375,"SourceStructureID":91551,"TargetStructureID":166,"Label":"91551-166 via Conventional from 91552 -> 91553","Type":"Conventional","Directional":true,"Links":[{"SourceID":91552,"TargetID":91553,"Directional":true}]},{"ID":18376,"SourceStructureID":91566,"TargetStructureID":21299,"Label":"91566-21299 via Conventional from 91568 -> 91565","Type":"Conventional","Directional":true,"Links":[{"SourceID":91568,"TargetID":91565,"Directional":true}]},{"ID":18377,"SourceStructureID":91597,"TargetStructureID":1620,"Label":"91597-1620 via Conventional from 91602 -> 16868","Type":"Conventional","Directional":true,"Links":[{"SourceID":91602,"TargetID":16868,"Directional":true}]},{"ID":18378,"SourceStructureID":91701,"TargetStructureID":21299,"Label":"91701-21299 via Conventional from 92847 -> 48968","Type":"Conventional","Directional":true,"Links":[{"SourceID":92847,"TargetID":48968,"Directional":true}]},{"ID":18379,"SourceStructureID":91730,"TargetStructureID":1620,"Label":"91730-1620 via Ribbon Synapse from 91731 -> 16854","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91731,"TargetID":16854,"Directional":true}]},{"ID":18380,"SourceStructureID":91730,"TargetStructureID":41474,"Label":"91730-41474 via Ribbon Synapse from 91731 -> 41516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":91731,"TargetID":41516,"Directional":true}]},{"ID":18381,"SourceStructureID":91746,"TargetStructureID":21299,"Label":"91746-21299 via Conventional from 91749 -> 48800","Type":"Conventional","Directional":true,"Links":[{"SourceID":91749,"TargetID":48800,"Directional":true}]},{"ID":18382,"SourceStructureID":91746,"TargetStructureID":91743,"Label":"91746-91743 via Conventional from 91747 -> 91745","Type":"Conventional","Directional":true,"Links":[{"SourceID":91747,"TargetID":91745,"Directional":true}]},{"ID":18383,"SourceStructureID":91805,"TargetStructureID":5292,"Label":"91805-5292 via Conventional from 92854 -> 51569","Type":"Conventional","Directional":true,"Links":[{"SourceID":92854,"TargetID":51569,"Directional":true}]},{"ID":18384,"SourceStructureID":91812,"TargetStructureID":5650,"Label":"91812-5650 via Conventional from 103887 -> 103888","Type":"Conventional","Directional":true,"Links":[{"SourceID":103887,"TargetID":103888,"Directional":true}]},{"ID":18385,"SourceStructureID":91983,"TargetStructureID":176,"Label":"91983-176 via Conventional from 128744 -> 128743","Type":"Conventional","Directional":true,"Links":[{"SourceID":128744,"TargetID":128743,"Directional":true}]},{"ID":18386,"SourceStructureID":92035,"TargetStructureID":6050,"Label":"92035-6050 via Conventional from 92036 -> 56072","Type":"Conventional","Directional":true,"Links":[{"SourceID":92036,"TargetID":56072,"Directional":true}]},{"ID":18387,"SourceStructureID":92091,"TargetStructureID":16026,"Label":"92091-16026 via Conventional from 134452 -> 134451","Type":"Conventional","Directional":true,"Links":[{"SourceID":134452,"TargetID":134451,"Directional":true}]},{"ID":18388,"SourceStructureID":92223,"TargetStructureID":16026,"Label":"92223-16026 via Conventional from 92803 -> 92764","Type":"Conventional","Directional":true,"Links":[{"SourceID":92803,"TargetID":92764,"Directional":true}]},{"ID":18389,"SourceStructureID":92239,"TargetStructureID":16026,"Label":"92239-16026 via Conventional from 92811 -> 25541","Type":"Conventional","Directional":true,"Links":[{"SourceID":92811,"TargetID":25541,"Directional":true}]},{"ID":18390,"SourceStructureID":92245,"TargetStructureID":16026,"Label":"92245-16026 via Conventional from 92819 -> 92820, 134417 -> 134416","Type":"Conventional","Directional":true,"Links":[{"SourceID":92819,"TargetID":92820,"Directional":true},{"SourceID":134417,"TargetID":134416,"Directional":true}]},{"ID":18391,"SourceStructureID":92361,"TargetStructureID":16026,"Label":"92361-16026 via Conventional from 92812 -> 92813","Type":"Conventional","Directional":true,"Links":[{"SourceID":92812,"TargetID":92813,"Directional":true}]},{"ID":18392,"SourceStructureID":92380,"TargetStructureID":5283,"Label":"92380-5283 via Conventional from 123948 -> 123947","Type":"Conventional","Directional":true,"Links":[{"SourceID":123948,"TargetID":123947,"Directional":true}]},{"ID":18393,"SourceStructureID":92572,"TargetStructureID":16026,"Label":"92572-16026 via Conventional from 134760 -> 134759","Type":"Conventional","Directional":true,"Links":[{"SourceID":134760,"TargetID":134759,"Directional":true}]},{"ID":18394,"SourceStructureID":92638,"TargetStructureID":5279,"Label":"92638-5279 via Conventional from 92859 -> 92858","Type":"Conventional","Directional":true,"Links":[{"SourceID":92859,"TargetID":92858,"Directional":true}]},{"ID":18395,"SourceStructureID":92785,"TargetStructureID":16026,"Label":"92785-16026 via Conventional from 92786 -> 92787","Type":"Conventional","Directional":true,"Links":[{"SourceID":92786,"TargetID":92787,"Directional":true}]},{"ID":18396,"SourceStructureID":92865,"TargetStructureID":16026,"Label":"92865-16026 via Conventional from 134709 -> 134708","Type":"Conventional","Directional":true,"Links":[{"SourceID":134709,"TargetID":134708,"Directional":true}]},{"ID":18397,"SourceStructureID":92942,"TargetStructureID":10943,"Label":"92942-10943 via Conventional from 92945 -> 92946","Type":"Conventional","Directional":true,"Links":[{"SourceID":92945,"TargetID":92946,"Directional":true}]},{"ID":18398,"SourceStructureID":92954,"TargetStructureID":23870,"Label":"92954-23870 via Ribbon Synapse from 92955 -> 92953","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":92955,"TargetID":92953,"Directional":true}]},{"ID":18399,"SourceStructureID":92970,"TargetStructureID":5294,"Label":"92970-5294 via Cistern Pre from 93030 -> 93031","Type":"Cistern Pre","Directional":true,"Links":[{"SourceID":93030,"TargetID":93031,"Directional":true}]},{"ID":18400,"SourceStructureID":93069,"TargetStructureID":5592,"Label":"93069-5592 via Conventional from 93070 -> 45968","Type":"Conventional","Directional":true,"Links":[{"SourceID":93070,"TargetID":45968,"Directional":true}]},{"ID":18401,"SourceStructureID":93099,"TargetStructureID":400,"Label":"93099-400 via Conventional from 93110 -> 1935","Type":"Conventional","Directional":true,"Links":[{"SourceID":93110,"TargetID":1935,"Directional":true}]},{"ID":18402,"SourceStructureID":93099,"TargetStructureID":6617,"Label":"93099-6617 via Conventional from 93107 -> 93108","Type":"Conventional","Directional":true,"Links":[{"SourceID":93107,"TargetID":93108,"Directional":true}]},{"ID":18403,"SourceStructureID":93099,"TargetStructureID":8749,"Label":"93099-8749 via Conventional from 93100 -> 93101, 93102 -> 93103","Type":"Conventional","Directional":true,"Links":[{"SourceID":93100,"TargetID":93101,"Directional":true},{"SourceID":93102,"TargetID":93103,"Directional":true}]},{"ID":18404,"SourceStructureID":93112,"TargetStructureID":5294,"Label":"93112-5294 via Conventional from 93113 -> 32333","Type":"Conventional","Directional":true,"Links":[{"SourceID":93113,"TargetID":32333,"Directional":true}]},{"ID":18405,"SourceStructureID":93139,"TargetStructureID":16026,"Label":"93139-16026 via Conventional from 134836 -> 134835, 134839 -> 25565","Type":"Conventional","Directional":true,"Links":[{"SourceID":134836,"TargetID":134835,"Directional":true},{"SourceID":134839,"TargetID":25565,"Directional":true}]},{"ID":18406,"SourceStructureID":93172,"TargetStructureID":15976,"Label":"93172-15976 via Conventional from 93173 -> 93171","Type":"Conventional","Directional":true,"Links":[{"SourceID":93173,"TargetID":93171,"Directional":true}]},{"ID":18407,"SourceStructureID":93277,"TargetStructureID":3679,"Label":"93277-3679 via Conventional from 93278 -> 14919","Type":"Conventional","Directional":true,"Links":[{"SourceID":93278,"TargetID":14919,"Directional":true}]},{"ID":18408,"SourceStructureID":93315,"TargetStructureID":5297,"Label":"93315-5297 via Conventional from 93316 -> 53666","Type":"Conventional","Directional":true,"Links":[{"SourceID":93316,"TargetID":53666,"Directional":true}]},{"ID":18409,"SourceStructureID":93325,"TargetStructureID":5297,"Label":"93325-5297 via Conventional from 93326 -> 50318","Type":"Conventional","Directional":true,"Links":[{"SourceID":93326,"TargetID":50318,"Directional":true}]},{"ID":18410,"SourceStructureID":93336,"TargetStructureID":5297,"Label":"93336-5297 via Conventional from 93338 -> 53695","Type":"Conventional","Directional":true,"Links":[{"SourceID":93338,"TargetID":53695,"Directional":true}]},{"ID":18411,"SourceStructureID":93371,"TargetStructureID":5297,"Label":"93371-5297 via Conventional from 93372 -> 53650","Type":"Conventional","Directional":true,"Links":[{"SourceID":93372,"TargetID":53650,"Directional":true}]},{"ID":18412,"SourceStructureID":93386,"TargetStructureID":5297,"Label":"93386-5297 via Conventional from 93387 -> 53651","Type":"Conventional","Directional":true,"Links":[{"SourceID":93387,"TargetID":53651,"Directional":true}]},{"ID":18413,"SourceStructureID":93396,"TargetStructureID":5278,"Label":"93396-5278 via Conventional from 93406 -> 50312","Type":"Conventional","Directional":true,"Links":[{"SourceID":93406,"TargetID":50312,"Directional":true}]},{"ID":18414,"SourceStructureID":93403,"TargetStructureID":5278,"Label":"93403-5278 via Conventional from 93405 -> 50311","Type":"Conventional","Directional":true,"Links":[{"SourceID":93405,"TargetID":50311,"Directional":true}]},{"ID":18415,"SourceStructureID":93407,"TargetStructureID":5278,"Label":"93407-5278 via Conventional from 93410 -> 50310","Type":"Conventional","Directional":true,"Links":[{"SourceID":93410,"TargetID":50310,"Directional":true}]},{"ID":18416,"SourceStructureID":93407,"TargetStructureID":93413,"Label":"93407-93413 via Conventional from 147310 -> 147311","Type":"Conventional","Directional":true,"Links":[{"SourceID":147310,"TargetID":147311,"Directional":true}]},{"ID":18417,"SourceStructureID":93456,"TargetStructureID":5711,"Label":"93456-5711 via Conventional from 93457 -> 93458","Type":"Conventional","Directional":true,"Links":[{"SourceID":93457,"TargetID":93458,"Directional":true}]},{"ID":18418,"SourceStructureID":93465,"TargetStructureID":5278,"Label":"93465-5278 via Conventional from 93466 -> 53599","Type":"Conventional","Directional":true,"Links":[{"SourceID":93466,"TargetID":53599,"Directional":true}]},{"ID":18419,"SourceStructureID":93489,"TargetStructureID":93486,"Label":"93489-93486 via Ribbon Synapse from 93490 -> 93487","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":93490,"TargetID":93487,"Directional":true}]},{"ID":18420,"SourceStructureID":93494,"TargetStructureID":93486,"Label":"93494-93486 via Conventional from 93500 -> 93501","Type":"Conventional","Directional":true,"Links":[{"SourceID":93500,"TargetID":93501,"Directional":true}]},{"ID":18421,"SourceStructureID":93555,"TargetStructureID":5528,"Label":"93555-5528 via Conventional from 93556 -> 36391","Type":"Conventional","Directional":true,"Links":[{"SourceID":93556,"TargetID":36391,"Directional":true}]},{"ID":18422,"SourceStructureID":93557,"TargetStructureID":5528,"Label":"93557-5528 via Conventional from 93558 -> 36392","Type":"Conventional","Directional":true,"Links":[{"SourceID":93558,"TargetID":36392,"Directional":true}]},{"ID":18423,"SourceStructureID":93574,"TargetStructureID":5468,"Label":"93574-5468 via Conventional from 93576 -> 45721","Type":"Conventional","Directional":true,"Links":[{"SourceID":93576,"TargetID":45721,"Directional":true}]},{"ID":18424,"SourceStructureID":93634,"TargetStructureID":64939,"Label":"93634-64939 via Conventional from 93635 -> 93632","Type":"Conventional","Directional":true,"Links":[{"SourceID":93635,"TargetID":93632,"Directional":true}]},{"ID":18425,"SourceStructureID":93685,"TargetStructureID":7040,"Label":"93685-7040 via Conventional from 93689 -> 93683","Type":"Conventional","Directional":true,"Links":[{"SourceID":93689,"TargetID":93683,"Directional":true}]},{"ID":18426,"SourceStructureID":93920,"TargetStructureID":5528,"Label":"93920-5528 via Conventional from 93921 -> 93919","Type":"Conventional","Directional":true,"Links":[{"SourceID":93921,"TargetID":93919,"Directional":true}]},{"ID":18427,"SourceStructureID":93923,"TargetStructureID":5528,"Label":"93923-5528 via Conventional from 93930 -> 93599","Type":"Conventional","Directional":true,"Links":[{"SourceID":93930,"TargetID":93599,"Directional":true}]},{"ID":18428,"SourceStructureID":93928,"TargetStructureID":25402,"Label":"93928-25402 via Conventional from 93929 -> 32277","Type":"Conventional","Directional":true,"Links":[{"SourceID":93929,"TargetID":32277,"Directional":true}]},{"ID":18429,"SourceStructureID":93931,"TargetStructureID":5528,"Label":"93931-5528 via Conventional from 93934 -> 93596","Type":"Conventional","Directional":true,"Links":[{"SourceID":93934,"TargetID":93596,"Directional":true}]},{"ID":18430,"SourceStructureID":93935,"TargetStructureID":5528,"Label":"93935-5528 via Conventional from 93936 -> 93595","Type":"Conventional","Directional":true,"Links":[{"SourceID":93936,"TargetID":93595,"Directional":true}]},{"ID":18431,"SourceStructureID":93938,"TargetStructureID":5528,"Label":"93938-5528 via Conventional from 93939 -> 93597","Type":"Conventional","Directional":true,"Links":[{"SourceID":93939,"TargetID":93597,"Directional":true}]},{"ID":18432,"SourceStructureID":93938,"TargetStructureID":5530,"Label":"93938-5530 via Conventional from 126445 -> 126443","Type":"Conventional","Directional":true,"Links":[{"SourceID":126445,"TargetID":126443,"Directional":true}]},{"ID":18433,"SourceStructureID":93964,"TargetStructureID":5528,"Label":"93964-5528 via Conventional from 93965 -> 93955","Type":"Conventional","Directional":true,"Links":[{"SourceID":93965,"TargetID":93955,"Directional":true}]},{"ID":18434,"SourceStructureID":93975,"TargetStructureID":5528,"Label":"93975-5528 via Conventional from 93986 -> 93985","Type":"Conventional","Directional":true,"Links":[{"SourceID":93986,"TargetID":93985,"Directional":true}]},{"ID":18435,"SourceStructureID":93979,"TargetStructureID":5528,"Label":"93979-5528 via Conventional from 93980 -> 93981","Type":"Conventional","Directional":true,"Links":[{"SourceID":93980,"TargetID":93981,"Directional":true}]},{"ID":18436,"SourceStructureID":93991,"TargetStructureID":5528,"Label":"93991-5528 via Conventional from 93992 -> 93598","Type":"Conventional","Directional":true,"Links":[{"SourceID":93992,"TargetID":93598,"Directional":true}]},{"ID":18437,"SourceStructureID":94005,"TargetStructureID":5528,"Label":"94005-5528 via Conventional from 94006 -> 93594","Type":"Conventional","Directional":true,"Links":[{"SourceID":94006,"TargetID":93594,"Directional":true}]},{"ID":18438,"SourceStructureID":94007,"TargetStructureID":5528,"Label":"94007-5528 via Conventional from 94014 -> 93593","Type":"Conventional","Directional":true,"Links":[{"SourceID":94014,"TargetID":93593,"Directional":true}]},{"ID":18439,"SourceStructureID":94008,"TargetStructureID":5528,"Label":"94008-5528 via Conventional from 94009 -> 93590","Type":"Conventional","Directional":true,"Links":[{"SourceID":94009,"TargetID":93590,"Directional":true}]},{"ID":18440,"SourceStructureID":94010,"TargetStructureID":5528,"Label":"94010-5528 via Conventional from 94011 -> 93589","Type":"Conventional","Directional":true,"Links":[{"SourceID":94011,"TargetID":93589,"Directional":true}]},{"ID":18441,"SourceStructureID":94023,"TargetStructureID":5528,"Label":"94023-5528 via Conventional from 94024 -> 93581","Type":"Conventional","Directional":true,"Links":[{"SourceID":94024,"TargetID":93581,"Directional":true}]},{"ID":18442,"SourceStructureID":94031,"TargetStructureID":5528,"Label":"94031-5528 via Conventional from 94032 -> 94033","Type":"Conventional","Directional":true,"Links":[{"SourceID":94032,"TargetID":94033,"Directional":true}]},{"ID":18443,"SourceStructureID":94035,"TargetStructureID":5528,"Label":"94035-5528 via Conventional from 94036 -> 94037","Type":"Conventional","Directional":true,"Links":[{"SourceID":94036,"TargetID":94037,"Directional":true}]},{"ID":18444,"SourceStructureID":94048,"TargetStructureID":5528,"Label":"94048-5528 via Conventional from 94049 -> 94050","Type":"Conventional","Directional":true,"Links":[{"SourceID":94049,"TargetID":94050,"Directional":true}]},{"ID":18445,"SourceStructureID":94116,"TargetStructureID":5528,"Label":"94116-5528 via Conventional from 94117 -> 93600","Type":"Conventional","Directional":true,"Links":[{"SourceID":94117,"TargetID":93600,"Directional":true}]},{"ID":18446,"SourceStructureID":94118,"TargetStructureID":5528,"Label":"94118-5528 via Conventional from 94119 -> 94120","Type":"Conventional","Directional":true,"Links":[{"SourceID":94119,"TargetID":94120,"Directional":true}]},{"ID":18447,"SourceStructureID":94130,"TargetStructureID":5528,"Label":"94130-5528 via Conventional from 94132 -> 94133","Type":"Conventional","Directional":true,"Links":[{"SourceID":94132,"TargetID":94133,"Directional":true}]},{"ID":18448,"SourceStructureID":94136,"TargetStructureID":5528,"Label":"94136-5528 via Conventional from 94137 -> 94138","Type":"Conventional","Directional":true,"Links":[{"SourceID":94137,"TargetID":94138,"Directional":true}]},{"ID":18449,"SourceStructureID":94139,"TargetStructureID":5528,"Label":"94139-5528 via Conventional from 94140 -> 94141","Type":"Conventional","Directional":true,"Links":[{"SourceID":94140,"TargetID":94141,"Directional":true}]},{"ID":18450,"SourceStructureID":94153,"TargetStructureID":5528,"Label":"94153-5528 via Conventional from 94175 -> 94176","Type":"Conventional","Directional":true,"Links":[{"SourceID":94175,"TargetID":94176,"Directional":true}]},{"ID":18451,"SourceStructureID":94165,"TargetStructureID":5528,"Label":"94165-5528 via Conventional from 94171 -> 94172","Type":"Conventional","Directional":true,"Links":[{"SourceID":94171,"TargetID":94172,"Directional":true}]},{"ID":18452,"SourceStructureID":94178,"TargetStructureID":5528,"Label":"94178-5528 via Conventional from 94180 -> 94179","Type":"Conventional","Directional":true,"Links":[{"SourceID":94180,"TargetID":94179,"Directional":true}]},{"ID":18453,"SourceStructureID":94252,"TargetStructureID":5528,"Label":"94252-5528 via Conventional from 94278 -> 94280","Type":"Conventional","Directional":true,"Links":[{"SourceID":94278,"TargetID":94280,"Directional":true}]},{"ID":18454,"SourceStructureID":94255,"TargetStructureID":5528,"Label":"94255-5528 via Conventional from 94259 -> 94260","Type":"Conventional","Directional":true,"Links":[{"SourceID":94259,"TargetID":94260,"Directional":true}]},{"ID":18455,"SourceStructureID":94270,"TargetStructureID":5528,"Label":"94270-5528 via Conventional from 94276 -> 94277","Type":"Conventional","Directional":true,"Links":[{"SourceID":94276,"TargetID":94277,"Directional":true}]},{"ID":18456,"SourceStructureID":94281,"TargetStructureID":5528,"Label":"94281-5528 via Conventional from 94282 -> 94283","Type":"Conventional","Directional":true,"Links":[{"SourceID":94282,"TargetID":94283,"Directional":true}]},{"ID":18457,"SourceStructureID":94288,"TargetStructureID":5528,"Label":"94288-5528 via Conventional from 94289 -> 94290","Type":"Conventional","Directional":true,"Links":[{"SourceID":94289,"TargetID":94290,"Directional":true}]},{"ID":18458,"SourceStructureID":94297,"TargetStructureID":5528,"Label":"94297-5528 via Conventional from 94302 -> 94301","Type":"Conventional","Directional":true,"Links":[{"SourceID":94302,"TargetID":94301,"Directional":true}]},{"ID":18459,"SourceStructureID":94312,"TargetStructureID":5528,"Label":"94312-5528 via Conventional from 94313 -> 94314","Type":"Conventional","Directional":true,"Links":[{"SourceID":94313,"TargetID":94314,"Directional":true}]},{"ID":18460,"SourceStructureID":94320,"TargetStructureID":5528,"Label":"94320-5528 via Conventional from 94321 -> 94322","Type":"Conventional","Directional":true,"Links":[{"SourceID":94321,"TargetID":94322,"Directional":true}]},{"ID":18461,"SourceStructureID":94331,"TargetStructureID":5528,"Label":"94331-5528 via Conventional from 94332 -> 94333","Type":"Conventional","Directional":true,"Links":[{"SourceID":94332,"TargetID":94333,"Directional":true}]},{"ID":18462,"SourceStructureID":94334,"TargetStructureID":5528,"Label":"94334-5528 via Conventional from 94335 -> 94336","Type":"Conventional","Directional":true,"Links":[{"SourceID":94335,"TargetID":94336,"Directional":true}]},{"ID":18463,"SourceStructureID":94337,"TargetStructureID":5528,"Label":"94337-5528 via Conventional from 94338 -> 94339","Type":"Conventional","Directional":true,"Links":[{"SourceID":94338,"TargetID":94339,"Directional":true}]},{"ID":18464,"SourceStructureID":94340,"TargetStructureID":5528,"Label":"94340-5528 via Conventional from 94341 -> 94342","Type":"Conventional","Directional":true,"Links":[{"SourceID":94341,"TargetID":94342,"Directional":true}]},{"ID":18465,"SourceStructureID":94346,"TargetStructureID":5528,"Label":"94346-5528 via Conventional from 94347 -> 94348","Type":"Conventional","Directional":true,"Links":[{"SourceID":94347,"TargetID":94348,"Directional":true}]},{"ID":18466,"SourceStructureID":94365,"TargetStructureID":5528,"Label":"94365-5528 via Conventional from 94367 -> 94366, 94368 -> 94369","Type":"Conventional","Directional":true,"Links":[{"SourceID":94367,"TargetID":94366,"Directional":true},{"SourceID":94368,"TargetID":94369,"Directional":true}]},{"ID":18467,"SourceStructureID":94385,"TargetStructureID":5528,"Label":"94385-5528 via Conventional from 94387 -> 91644","Type":"Conventional","Directional":true,"Links":[{"SourceID":94387,"TargetID":91644,"Directional":true}]},{"ID":18468,"SourceStructureID":94385,"TargetStructureID":6129,"Label":"94385-6129 via Conventional from 94386 -> 17859","Type":"Conventional","Directional":true,"Links":[{"SourceID":94386,"TargetID":17859,"Directional":true}]},{"ID":18469,"SourceStructureID":94388,"TargetStructureID":5528,"Label":"94388-5528 via Conventional from 94389 -> 94390","Type":"Conventional","Directional":true,"Links":[{"SourceID":94389,"TargetID":94390,"Directional":true}]},{"ID":18470,"SourceStructureID":94391,"TargetStructureID":5528,"Label":"94391-5528 via Conventional from 94392 -> 94393","Type":"Conventional","Directional":true,"Links":[{"SourceID":94392,"TargetID":94393,"Directional":true}]},{"ID":18471,"SourceStructureID":94414,"TargetStructureID":5528,"Label":"94414-5528 via Conventional from 94415 -> 94416","Type":"Conventional","Directional":true,"Links":[{"SourceID":94415,"TargetID":94416,"Directional":true}]},{"ID":18472,"SourceStructureID":94417,"TargetStructureID":94417,"Label":"94417-94417 via Conventional from 94420 -> 94419","Type":"Conventional","Directional":true,"Links":[{"SourceID":94420,"TargetID":94419,"Directional":true}]},{"ID":18473,"SourceStructureID":94422,"TargetStructureID":5528,"Label":"94422-5528 via Conventional from 94423 -> 94424","Type":"Conventional","Directional":true,"Links":[{"SourceID":94423,"TargetID":94424,"Directional":true}]},{"ID":18474,"SourceStructureID":94425,"TargetStructureID":5528,"Label":"94425-5528 via Conventional from 94426 -> 94427","Type":"Conventional","Directional":true,"Links":[{"SourceID":94426,"TargetID":94427,"Directional":true}]},{"ID":18475,"SourceStructureID":94474,"TargetStructureID":5528,"Label":"94474-5528 via Conventional from 94476 -> 94477","Type":"Conventional","Directional":true,"Links":[{"SourceID":94476,"TargetID":94477,"Directional":true}]},{"ID":18476,"SourceStructureID":94479,"TargetStructureID":5528,"Label":"94479-5528 via Conventional from 94480 -> 94481","Type":"Conventional","Directional":true,"Links":[{"SourceID":94480,"TargetID":94481,"Directional":true}]},{"ID":18477,"SourceStructureID":94490,"TargetStructureID":5528,"Label":"94490-5528 via Conventional from 94492 -> 94491","Type":"Conventional","Directional":true,"Links":[{"SourceID":94492,"TargetID":94491,"Directional":true}]},{"ID":18478,"SourceStructureID":94500,"TargetStructureID":5528,"Label":"94500-5528 via Conventional from 94505 -> 94506","Type":"Conventional","Directional":true,"Links":[{"SourceID":94505,"TargetID":94506,"Directional":true}]},{"ID":18479,"SourceStructureID":94507,"TargetStructureID":5528,"Label":"94507-5528 via Conventional from 94508 -> 94509","Type":"Conventional","Directional":true,"Links":[{"SourceID":94508,"TargetID":94509,"Directional":true}]},{"ID":18480,"SourceStructureID":94512,"TargetStructureID":5528,"Label":"94512-5528 via Conventional from 94513 -> 94514","Type":"Conventional","Directional":true,"Links":[{"SourceID":94513,"TargetID":94514,"Directional":true}]},{"ID":18481,"SourceStructureID":94525,"TargetStructureID":5528,"Label":"94525-5528 via Conventional from 94526 -> 94528","Type":"Conventional","Directional":true,"Links":[{"SourceID":94526,"TargetID":94528,"Directional":true}]},{"ID":18482,"SourceStructureID":94536,"TargetStructureID":5528,"Label":"94536-5528 via Conventional from 94537 -> 94538","Type":"Conventional","Directional":true,"Links":[{"SourceID":94537,"TargetID":94538,"Directional":true}]},{"ID":18483,"SourceStructureID":94582,"TargetStructureID":180,"Label":"94582-180 via Conventional from 94620 -> 843","Type":"Conventional","Directional":true,"Links":[{"SourceID":94620,"TargetID":843,"Directional":true}]},{"ID":18484,"SourceStructureID":94583,"TargetStructureID":180,"Label":"94583-180 via Conventional from 94621 -> 23645","Type":"Conventional","Directional":true,"Links":[{"SourceID":94621,"TargetID":23645,"Directional":true}]},{"ID":18485,"SourceStructureID":94635,"TargetStructureID":5528,"Label":"94635-5528 via Conventional from 94644 -> 94645","Type":"Conventional","Directional":true,"Links":[{"SourceID":94644,"TargetID":94645,"Directional":true}]},{"ID":18486,"SourceStructureID":94641,"TargetStructureID":180,"Label":"94641-180 via Conventional from 94642 -> 94643","Type":"Conventional","Directional":true,"Links":[{"SourceID":94642,"TargetID":94643,"Directional":true}]},{"ID":18487,"SourceStructureID":94649,"TargetStructureID":5528,"Label":"94649-5528 via Conventional from 94650 -> 94651","Type":"Conventional","Directional":true,"Links":[{"SourceID":94650,"TargetID":94651,"Directional":true}]},{"ID":18488,"SourceStructureID":94652,"TargetStructureID":5528,"Label":"94652-5528 via Conventional from 94657 -> 94658","Type":"Conventional","Directional":true,"Links":[{"SourceID":94657,"TargetID":94658,"Directional":true}]},{"ID":18489,"SourceStructureID":94660,"TargetStructureID":5528,"Label":"94660-5528 via Conventional from 94661 -> 94662","Type":"Conventional","Directional":true,"Links":[{"SourceID":94661,"TargetID":94662,"Directional":true}]},{"ID":18490,"SourceStructureID":94663,"TargetStructureID":5528,"Label":"94663-5528 via Conventional from 94665 -> 94666","Type":"Conventional","Directional":true,"Links":[{"SourceID":94665,"TargetID":94666,"Directional":true}]},{"ID":18491,"SourceStructureID":94664,"TargetStructureID":180,"Label":"94664-180 via Conventional from 94706 -> 94707, 94896 -> 94897, 133042 -> 133041","Type":"Conventional","Directional":true,"Links":[{"SourceID":94706,"TargetID":94707,"Directional":true},{"SourceID":94896,"TargetID":94897,"Directional":true},{"SourceID":133042,"TargetID":133041,"Directional":true}]},{"ID":18492,"SourceStructureID":94670,"TargetStructureID":5528,"Label":"94670-5528 via Conventional from 94671 -> 94672","Type":"Conventional","Directional":true,"Links":[{"SourceID":94671,"TargetID":94672,"Directional":true}]},{"ID":18493,"SourceStructureID":94692,"TargetStructureID":180,"Label":"94692-180 via Conventional from 94693 -> 94694","Type":"Conventional","Directional":true,"Links":[{"SourceID":94693,"TargetID":94694,"Directional":true}]},{"ID":18494,"SourceStructureID":94695,"TargetStructureID":180,"Label":"94695-180 via Conventional from 94696 -> 94697","Type":"Conventional","Directional":true,"Links":[{"SourceID":94696,"TargetID":94697,"Directional":true}]},{"ID":18495,"SourceStructureID":94698,"TargetStructureID":180,"Label":"94698-180 via Conventional from 94699 -> 94700","Type":"Conventional","Directional":true,"Links":[{"SourceID":94699,"TargetID":94700,"Directional":true}]},{"ID":18496,"SourceStructureID":94705,"TargetStructureID":5528,"Label":"94705-5528 via Conventional from 94711 -> 94712","Type":"Conventional","Directional":true,"Links":[{"SourceID":94711,"TargetID":94712,"Directional":true}]},{"ID":18497,"SourceStructureID":94713,"TargetStructureID":5528,"Label":"94713-5528 via Conventional from 94714 -> 94715","Type":"Conventional","Directional":true,"Links":[{"SourceID":94714,"TargetID":94715,"Directional":true}]},{"ID":18498,"SourceStructureID":94735,"TargetStructureID":5528,"Label":"94735-5528 via Conventional from 94736 -> 94737","Type":"Conventional","Directional":true,"Links":[{"SourceID":94736,"TargetID":94737,"Directional":true}]},{"ID":18499,"SourceStructureID":94741,"TargetStructureID":5528,"Label":"94741-5528 via Conventional from 94788 -> 94789","Type":"Conventional","Directional":true,"Links":[{"SourceID":94788,"TargetID":94789,"Directional":true}]},{"ID":18500,"SourceStructureID":94784,"TargetStructureID":5623,"Label":"94784-5623 via Conventional from 94785 -> 94783","Type":"Conventional","Directional":true,"Links":[{"SourceID":94785,"TargetID":94783,"Directional":true}]},{"ID":18501,"SourceStructureID":94791,"TargetStructureID":5528,"Label":"94791-5528 via Conventional from 94801 -> 94802","Type":"Conventional","Directional":true,"Links":[{"SourceID":94801,"TargetID":94802,"Directional":true}]},{"ID":18502,"SourceStructureID":94796,"TargetStructureID":5528,"Label":"94796-5528 via Conventional from 94799 -> 94800","Type":"Conventional","Directional":true,"Links":[{"SourceID":94799,"TargetID":94800,"Directional":true}]},{"ID":18503,"SourceStructureID":94796,"TargetStructureID":94741,"Label":"94796-94741 via Conventional from 94797 -> 94798","Type":"Conventional","Directional":true,"Links":[{"SourceID":94797,"TargetID":94798,"Directional":true}]},{"ID":18504,"SourceStructureID":94803,"TargetStructureID":5528,"Label":"94803-5528 via Conventional from 94804 -> 94805","Type":"Conventional","Directional":true,"Links":[{"SourceID":94804,"TargetID":94805,"Directional":true}]},{"ID":18505,"SourceStructureID":94818,"TargetStructureID":5528,"Label":"94818-5528 via Conventional from 94819 -> 94820","Type":"Conventional","Directional":true,"Links":[{"SourceID":94819,"TargetID":94820,"Directional":true}]},{"ID":18506,"SourceStructureID":94821,"TargetStructureID":5528,"Label":"94821-5528 via Conventional from 94822 -> 94823","Type":"Conventional","Directional":true,"Links":[{"SourceID":94822,"TargetID":94823,"Directional":true}]},{"ID":18507,"SourceStructureID":94824,"TargetStructureID":5528,"Label":"94824-5528 via Conventional from 94825 -> 94826","Type":"Conventional","Directional":true,"Links":[{"SourceID":94825,"TargetID":94826,"Directional":true}]},{"ID":18508,"SourceStructureID":94831,"TargetStructureID":5528,"Label":"94831-5528 via Conventional from 94832 -> 94833","Type":"Conventional","Directional":true,"Links":[{"SourceID":94832,"TargetID":94833,"Directional":true}]},{"ID":18509,"SourceStructureID":94865,"TargetStructureID":5528,"Label":"94865-5528 via Conventional from 94866 -> 8251","Type":"Conventional","Directional":true,"Links":[{"SourceID":94866,"TargetID":8251,"Directional":true}]},{"ID":18510,"SourceStructureID":94867,"TargetStructureID":5528,"Label":"94867-5528 via Conventional from 94868 -> 36395","Type":"Conventional","Directional":true,"Links":[{"SourceID":94868,"TargetID":36395,"Directional":true}]},{"ID":18511,"SourceStructureID":94900,"TargetStructureID":180,"Label":"94900-180 via Conventional from 94901 -> 94902","Type":"Conventional","Directional":true,"Links":[{"SourceID":94901,"TargetID":94902,"Directional":true}]},{"ID":18512,"SourceStructureID":94903,"TargetStructureID":180,"Label":"94903-180 via Conventional from 94906 -> 94907","Type":"Conventional","Directional":true,"Links":[{"SourceID":94906,"TargetID":94907,"Directional":true}]},{"ID":18513,"SourceStructureID":94918,"TargetStructureID":180,"Label":"94918-180 via Conventional from 94924 -> 94925","Type":"Conventional","Directional":true,"Links":[{"SourceID":94924,"TargetID":94925,"Directional":true}]},{"ID":18514,"SourceStructureID":94930,"TargetStructureID":94930,"Label":"94930-94930 via Conventional from 133103 -> 133102","Type":"Conventional","Directional":true,"Links":[{"SourceID":133103,"TargetID":133102,"Directional":true}]},{"ID":18515,"SourceStructureID":94944,"TargetStructureID":180,"Label":"94944-180 via Conventional from 94945 -> 91021","Type":"Conventional","Directional":true,"Links":[{"SourceID":94945,"TargetID":91021,"Directional":true}]},{"ID":18516,"SourceStructureID":94948,"TargetStructureID":180,"Label":"94948-180 via Conventional from 94949 -> 7546","Type":"Conventional","Directional":true,"Links":[{"SourceID":94949,"TargetID":7546,"Directional":true}]},{"ID":18517,"SourceStructureID":94959,"TargetStructureID":180,"Label":"94959-180 via Conventional from 94960 -> 94961","Type":"Conventional","Directional":true,"Links":[{"SourceID":94960,"TargetID":94961,"Directional":true}]},{"ID":18518,"SourceStructureID":94962,"TargetStructureID":180,"Label":"94962-180 via Conventional from 94963 -> 29255","Type":"Conventional","Directional":true,"Links":[{"SourceID":94963,"TargetID":29255,"Directional":true}]},{"ID":18519,"SourceStructureID":94968,"TargetStructureID":180,"Label":"94968-180 via Conventional from 94969 -> 94970","Type":"Conventional","Directional":true,"Links":[{"SourceID":94969,"TargetID":94970,"Directional":true}]},{"ID":18520,"SourceStructureID":94974,"TargetStructureID":180,"Label":"94974-180 via Conventional from 94976 -> 29254","Type":"Conventional","Directional":true,"Links":[{"SourceID":94976,"TargetID":29254,"Directional":true}]},{"ID":18521,"SourceStructureID":94978,"TargetStructureID":6169,"Label":"94978-6169 via Conventional from 123358 -> 14939","Type":"Conventional","Directional":true,"Links":[{"SourceID":123358,"TargetID":14939,"Directional":true}]},{"ID":18522,"SourceStructureID":94983,"TargetStructureID":180,"Label":"94983-180 via Conventional from 94984 -> 29265","Type":"Conventional","Directional":true,"Links":[{"SourceID":94984,"TargetID":29265,"Directional":true}]},{"ID":18523,"SourceStructureID":94983,"TargetStructureID":6169,"Label":"94983-6169 via Conventional from 132929 -> 132930","Type":"Conventional","Directional":true,"Links":[{"SourceID":132929,"TargetID":132930,"Directional":true}]},{"ID":18524,"SourceStructureID":94985,"TargetStructureID":180,"Label":"94985-180 via Conventional from 94986 -> 94987","Type":"Conventional","Directional":true,"Links":[{"SourceID":94986,"TargetID":94987,"Directional":true}]},{"ID":18525,"SourceStructureID":94988,"TargetStructureID":180,"Label":"94988-180 via Conventional from 94989 -> 29256","Type":"Conventional","Directional":true,"Links":[{"SourceID":94989,"TargetID":29256,"Directional":true}]},{"ID":18526,"SourceStructureID":94991,"TargetStructureID":180,"Label":"94991-180 via Conventional from 94992 -> 29260","Type":"Conventional","Directional":true,"Links":[{"SourceID":94992,"TargetID":29260,"Directional":true}]},{"ID":18527,"SourceStructureID":94999,"TargetStructureID":180,"Label":"94999-180 via Conventional from 95000 -> 59665","Type":"Conventional","Directional":true,"Links":[{"SourceID":95000,"TargetID":59665,"Directional":true}]},{"ID":18528,"SourceStructureID":95001,"TargetStructureID":180,"Label":"95001-180 via Conventional from 118490 -> 29264","Type":"Conventional","Directional":true,"Links":[{"SourceID":118490,"TargetID":29264,"Directional":true}]},{"ID":18529,"SourceStructureID":95062,"TargetStructureID":5528,"Label":"95062-5528 via Conventional from 95063 -> 25296","Type":"Conventional","Directional":true,"Links":[{"SourceID":95063,"TargetID":25296,"Directional":true}]},{"ID":18530,"SourceStructureID":95097,"TargetStructureID":5528,"Label":"95097-5528 via Conventional from 95100 -> 36396","Type":"Conventional","Directional":true,"Links":[{"SourceID":95100,"TargetID":36396,"Directional":true}]},{"ID":18531,"SourceStructureID":95107,"TargetStructureID":5528,"Label":"95107-5528 via Conventional from 95108 -> 25297","Type":"Conventional","Directional":true,"Links":[{"SourceID":95108,"TargetID":25297,"Directional":true}]},{"ID":18532,"SourceStructureID":95117,"TargetStructureID":5528,"Label":"95117-5528 via Conventional from 95118 -> 95120","Type":"Conventional","Directional":true,"Links":[{"SourceID":95118,"TargetID":95120,"Directional":true}]},{"ID":18533,"SourceStructureID":95121,"TargetStructureID":5528,"Label":"95121-5528 via Conventional from 95122 -> 95123, 95125 -> 95124","Type":"Conventional","Directional":true,"Links":[{"SourceID":95122,"TargetID":95123,"Directional":true},{"SourceID":95125,"TargetID":95124,"Directional":true}]},{"ID":18534,"SourceStructureID":95149,"TargetStructureID":5528,"Label":"95149-5528 via Conventional from 95150 -> 68790","Type":"Conventional","Directional":true,"Links":[{"SourceID":95150,"TargetID":68790,"Directional":true}]},{"ID":18535,"SourceStructureID":95159,"TargetStructureID":95159,"Label":"95159-95159 via Conventional from 95160 -> 95161","Type":"Conventional","Directional":true,"Links":[{"SourceID":95160,"TargetID":95161,"Directional":true}]},{"ID":18536,"SourceStructureID":95162,"TargetStructureID":5528,"Label":"95162-5528 via Conventional from 95164 -> 95163","Type":"Conventional","Directional":true,"Links":[{"SourceID":95164,"TargetID":95163,"Directional":true}]},{"ID":18537,"SourceStructureID":95175,"TargetStructureID":5528,"Label":"95175-5528 via Conventional from 95176 -> 95177","Type":"Conventional","Directional":true,"Links":[{"SourceID":95176,"TargetID":95177,"Directional":true}]},{"ID":18538,"SourceStructureID":95190,"TargetStructureID":5528,"Label":"95190-5528 via Conventional from 95193 -> 95194","Type":"Conventional","Directional":true,"Links":[{"SourceID":95193,"TargetID":95194,"Directional":true}]},{"ID":18539,"SourceStructureID":95195,"TargetStructureID":5531,"Label":"95195-5531 via Conventional from 147426 -> 147425","Type":"Conventional","Directional":true,"Links":[{"SourceID":147426,"TargetID":147425,"Directional":true}]},{"ID":18540,"SourceStructureID":95197,"TargetStructureID":5528,"Label":"95197-5528 via Conventional from 95198 -> 95199","Type":"Conventional","Directional":true,"Links":[{"SourceID":95198,"TargetID":95199,"Directional":true}]},{"ID":18541,"SourceStructureID":95243,"TargetStructureID":180,"Label":"95243-180 via Conventional from 95244 -> 29250","Type":"Conventional","Directional":true,"Links":[{"SourceID":95244,"TargetID":29250,"Directional":true}]},{"ID":18542,"SourceStructureID":95260,"TargetStructureID":180,"Label":"95260-180 via Conventional from 95261 -> 95262","Type":"Conventional","Directional":true,"Links":[{"SourceID":95261,"TargetID":95262,"Directional":true}]},{"ID":18543,"SourceStructureID":95266,"TargetStructureID":180,"Label":"95266-180 via Conventional from 95267 -> 95268","Type":"Conventional","Directional":true,"Links":[{"SourceID":95267,"TargetID":95268,"Directional":true}]},{"ID":18544,"SourceStructureID":95269,"TargetStructureID":180,"Label":"95269-180 via Conventional from 95271 -> 95272","Type":"Conventional","Directional":true,"Links":[{"SourceID":95271,"TargetID":95272,"Directional":true}]},{"ID":18545,"SourceStructureID":95273,"TargetStructureID":180,"Label":"95273-180 via Conventional from 95274 -> 95297","Type":"Conventional","Directional":true,"Links":[{"SourceID":95274,"TargetID":95297,"Directional":true}]},{"ID":18546,"SourceStructureID":95292,"TargetStructureID":180,"Label":"95292-180 via Conventional from 95295 -> 95296","Type":"Conventional","Directional":true,"Links":[{"SourceID":95295,"TargetID":95296,"Directional":true}]},{"ID":18547,"SourceStructureID":95299,"TargetStructureID":180,"Label":"95299-180 via Conventional from 132855 -> 132856","Type":"Conventional","Directional":true,"Links":[{"SourceID":132855,"TargetID":132856,"Directional":true}]},{"ID":18548,"SourceStructureID":95307,"TargetStructureID":180,"Label":"95307-180 via Conventional from 95308 -> 95309","Type":"Conventional","Directional":true,"Links":[{"SourceID":95308,"TargetID":95309,"Directional":true}]},{"ID":18549,"SourceStructureID":95310,"TargetStructureID":180,"Label":"95310-180 via Conventional from 95316 -> 95317","Type":"Conventional","Directional":true,"Links":[{"SourceID":95316,"TargetID":95317,"Directional":true}]},{"ID":18550,"SourceStructureID":95319,"TargetStructureID":180,"Label":"95319-180 via Conventional from 95320 -> 59673","Type":"Conventional","Directional":true,"Links":[{"SourceID":95320,"TargetID":59673,"Directional":true}]},{"ID":18551,"SourceStructureID":95323,"TargetStructureID":180,"Label":"95323-180 via Conventional from 133110 -> 133109","Type":"Conventional","Directional":true,"Links":[{"SourceID":133110,"TargetID":133109,"Directional":true}]},{"ID":18552,"SourceStructureID":95323,"TargetStructureID":95319,"Label":"95323-95319 via Conventional from 133107 -> 133108","Type":"Conventional","Directional":true,"Links":[{"SourceID":133107,"TargetID":133108,"Directional":true}]},{"ID":18553,"SourceStructureID":95326,"TargetStructureID":180,"Label":"95326-180 via Conventional from 95327 -> 59675","Type":"Conventional","Directional":true,"Links":[{"SourceID":95327,"TargetID":59675,"Directional":true}]},{"ID":18554,"SourceStructureID":95328,"TargetStructureID":180,"Label":"95328-180 via Conventional from 95329 -> 59676","Type":"Conventional","Directional":true,"Links":[{"SourceID":95329,"TargetID":59676,"Directional":true}]},{"ID":18555,"SourceStructureID":95334,"TargetStructureID":180,"Label":"95334-180 via Conventional from 95335 -> 95336","Type":"Conventional","Directional":true,"Links":[{"SourceID":95335,"TargetID":95336,"Directional":true}]},{"ID":18556,"SourceStructureID":95387,"TargetStructureID":180,"Label":"95387-180 via Conventional from 95388 -> 860","Type":"Conventional","Directional":true,"Links":[{"SourceID":95388,"TargetID":860,"Directional":true}]},{"ID":18557,"SourceStructureID":95390,"TargetStructureID":180,"Label":"95390-180 via Conventional from 95396 -> 95397","Type":"Conventional","Directional":true,"Links":[{"SourceID":95396,"TargetID":95397,"Directional":true}]},{"ID":18558,"SourceStructureID":95391,"TargetStructureID":180,"Label":"95391-180 via Conventional from 95392 -> 95393","Type":"Conventional","Directional":true,"Links":[{"SourceID":95392,"TargetID":95393,"Directional":true}]},{"ID":18559,"SourceStructureID":95416,"TargetStructureID":180,"Label":"95416-180 via Conventional from 95417 -> 873","Type":"Conventional","Directional":true,"Links":[{"SourceID":95417,"TargetID":873,"Directional":true}]},{"ID":18560,"SourceStructureID":95429,"TargetStructureID":180,"Label":"95429-180 via Conventional from 95430 -> 876","Type":"Conventional","Directional":true,"Links":[{"SourceID":95430,"TargetID":876,"Directional":true}]},{"ID":18561,"SourceStructureID":95431,"TargetStructureID":180,"Label":"95431-180 via Conventional from 95432 -> 880","Type":"Conventional","Directional":true,"Links":[{"SourceID":95432,"TargetID":880,"Directional":true}]},{"ID":18562,"SourceStructureID":95436,"TargetStructureID":180,"Label":"95436-180 via Conventional from 95438 -> 886, 95439 -> 888","Type":"Conventional","Directional":true,"Links":[{"SourceID":95438,"TargetID":886,"Directional":true},{"SourceID":95439,"TargetID":888,"Directional":true}]},{"ID":18563,"SourceStructureID":95440,"TargetStructureID":44346,"Label":"95440-44346 via Conventional from 95450 -> 44407, 95451 -> 95452","Type":"Conventional","Directional":true,"Links":[{"SourceID":95450,"TargetID":44407,"Directional":true},{"SourceID":95451,"TargetID":95452,"Directional":true}]},{"ID":18564,"SourceStructureID":95443,"TargetStructureID":180,"Label":"95443-180 via Conventional from 95444 -> 893","Type":"Conventional","Directional":true,"Links":[{"SourceID":95444,"TargetID":893,"Directional":true}]},{"ID":18565,"SourceStructureID":95457,"TargetStructureID":180,"Label":"95457-180 via Conventional from 132898 -> 132897","Type":"Conventional","Directional":true,"Links":[{"SourceID":132898,"TargetID":132897,"Directional":true}]},{"ID":18566,"SourceStructureID":95465,"TargetStructureID":5528,"Label":"95465-5528 via Conventional from 95466 -> 95467","Type":"Conventional","Directional":true,"Links":[{"SourceID":95466,"TargetID":95467,"Directional":true}]},{"ID":18567,"SourceStructureID":95473,"TargetStructureID":5528,"Label":"95473-5528 via Conventional from 95474 -> 95475","Type":"Conventional","Directional":true,"Links":[{"SourceID":95474,"TargetID":95475,"Directional":true}]},{"ID":18568,"SourceStructureID":95476,"TargetStructureID":5528,"Label":"95476-5528 via Conventional from 95477 -> 95478","Type":"Conventional","Directional":true,"Links":[{"SourceID":95477,"TargetID":95478,"Directional":true}]},{"ID":18569,"SourceStructureID":95479,"TargetStructureID":5528,"Label":"95479-5528 via Conventional from 95480 -> 95631","Type":"Conventional","Directional":true,"Links":[{"SourceID":95480,"TargetID":95631,"Directional":true}]},{"ID":18570,"SourceStructureID":95482,"TargetStructureID":485,"Label":"95482-485 via Conventional from 148063 -> 148064","Type":"Conventional","Directional":true,"Links":[{"SourceID":148063,"TargetID":148064,"Directional":true}]},{"ID":18571,"SourceStructureID":95482,"TargetStructureID":6997,"Label":"95482-6997 via Conventional from 136658 -> 136277","Type":"Conventional","Directional":true,"Links":[{"SourceID":136658,"TargetID":136277,"Directional":true}]},{"ID":18572,"SourceStructureID":95485,"TargetStructureID":6997,"Label":"95485-6997 via Conventional from 95486 -> 95484","Type":"Conventional","Directional":true,"Links":[{"SourceID":95486,"TargetID":95484,"Directional":true}]},{"ID":18573,"SourceStructureID":95495,"TargetStructureID":180,"Label":"95495-180 via Conventional from 95496 -> 56874","Type":"Conventional","Directional":true,"Links":[{"SourceID":95496,"TargetID":56874,"Directional":true}]},{"ID":18574,"SourceStructureID":95502,"TargetStructureID":180,"Label":"95502-180 via Conventional from 95503 -> 95504","Type":"Conventional","Directional":true,"Links":[{"SourceID":95503,"TargetID":95504,"Directional":true}]},{"ID":18575,"SourceStructureID":95512,"TargetStructureID":180,"Label":"95512-180 via Conventional from 132868 -> 132867","Type":"Conventional","Directional":true,"Links":[{"SourceID":132868,"TargetID":132867,"Directional":true}]},{"ID":18576,"SourceStructureID":95523,"TargetStructureID":180,"Label":"95523-180 via Conventional from 95525 -> 95526","Type":"Conventional","Directional":true,"Links":[{"SourceID":95525,"TargetID":95526,"Directional":true}]},{"ID":18577,"SourceStructureID":95540,"TargetStructureID":180,"Label":"95540-180 via Conventional from 95541 -> 95542","Type":"Conventional","Directional":true,"Links":[{"SourceID":95541,"TargetID":95542,"Directional":true}]},{"ID":18578,"SourceStructureID":95548,"TargetStructureID":180,"Label":"95548-180 via Conventional from 95549 -> 95550","Type":"Conventional","Directional":true,"Links":[{"SourceID":95549,"TargetID":95550,"Directional":true}]},{"ID":18579,"SourceStructureID":95551,"TargetStructureID":180,"Label":"95551-180 via Conventional from 95552 -> 95553","Type":"Conventional","Directional":true,"Links":[{"SourceID":95552,"TargetID":95553,"Directional":true}]},{"ID":18580,"SourceStructureID":95556,"TargetStructureID":180,"Label":"95556-180 via Conventional from 95557 -> 95558","Type":"Conventional","Directional":true,"Links":[{"SourceID":95557,"TargetID":95558,"Directional":true}]},{"ID":18581,"SourceStructureID":95566,"TargetStructureID":180,"Label":"95566-180 via Conventional from 95567 -> 95569","Type":"Conventional","Directional":true,"Links":[{"SourceID":95567,"TargetID":95569,"Directional":true}]},{"ID":18582,"SourceStructureID":95573,"TargetStructureID":180,"Label":"95573-180 via Conventional from 95574 -> 95575","Type":"Conventional","Directional":true,"Links":[{"SourceID":95574,"TargetID":95575,"Directional":true}]},{"ID":18583,"SourceStructureID":95578,"TargetStructureID":180,"Label":"95578-180 via Conventional from 95582 -> 95583","Type":"Conventional","Directional":true,"Links":[{"SourceID":95582,"TargetID":95583,"Directional":true}]},{"ID":18584,"SourceStructureID":95579,"TargetStructureID":180,"Label":"95579-180 via Conventional from 95580 -> 95581","Type":"Conventional","Directional":true,"Links":[{"SourceID":95580,"TargetID":95581,"Directional":true}]},{"ID":18585,"SourceStructureID":95593,"TargetStructureID":180,"Label":"95593-180 via Conventional from 95594 -> 4928","Type":"Conventional","Directional":true,"Links":[{"SourceID":95594,"TargetID":4928,"Directional":true}]},{"ID":18586,"SourceStructureID":95597,"TargetStructureID":180,"Label":"95597-180 via Conventional from 95598 -> 95599","Type":"Conventional","Directional":true,"Links":[{"SourceID":95598,"TargetID":95599,"Directional":true}]},{"ID":18587,"SourceStructureID":95600,"TargetStructureID":180,"Label":"95600-180 via Unknown from 95602 -> 95601","Type":"Unknown","Directional":true,"Links":[{"SourceID":95602,"TargetID":95601,"Directional":true}]},{"ID":18588,"SourceStructureID":95609,"TargetStructureID":180,"Label":"95609-180 via Conventional from 95610 -> 95611","Type":"Conventional","Directional":true,"Links":[{"SourceID":95610,"TargetID":95611,"Directional":true}]},{"ID":18589,"SourceStructureID":95615,"TargetStructureID":180,"Label":"95615-180 via Conventional from 95616 -> 95617","Type":"Conventional","Directional":true,"Links":[{"SourceID":95616,"TargetID":95617,"Directional":true}]},{"ID":18590,"SourceStructureID":95633,"TargetStructureID":5528,"Label":"95633-5528 via Conventional from 95636 -> 95635","Type":"Conventional","Directional":true,"Links":[{"SourceID":95636,"TargetID":95635,"Directional":true}]},{"ID":18591,"SourceStructureID":95648,"TargetStructureID":180,"Label":"95648-180 via Conventional from 95649 -> 95650","Type":"Conventional","Directional":true,"Links":[{"SourceID":95649,"TargetID":95650,"Directional":true}]},{"ID":18592,"SourceStructureID":95651,"TargetStructureID":180,"Label":"95651-180 via Conventional from 95653 -> 95654, 132992 -> 132993","Type":"Conventional","Directional":true,"Links":[{"SourceID":95653,"TargetID":95654,"Directional":true},{"SourceID":132992,"TargetID":132993,"Directional":true}]},{"ID":18593,"SourceStructureID":95673,"TargetStructureID":5528,"Label":"95673-5528 via Conventional from 95675 -> 8266","Type":"Conventional","Directional":true,"Links":[{"SourceID":95675,"TargetID":8266,"Directional":true}]},{"ID":18594,"SourceStructureID":95676,"TargetStructureID":5528,"Label":"95676-5528 via Conventional from 95680 -> 95681","Type":"Conventional","Directional":true,"Links":[{"SourceID":95680,"TargetID":95681,"Directional":true}]},{"ID":18595,"SourceStructureID":95683,"TargetStructureID":180,"Label":"95683-180 via Conventional from 95686 -> 95687","Type":"Conventional","Directional":true,"Links":[{"SourceID":95686,"TargetID":95687,"Directional":true}]},{"ID":18596,"SourceStructureID":95688,"TargetStructureID":5528,"Label":"95688-5528 via Conventional from 95689 -> 8263","Type":"Conventional","Directional":true,"Links":[{"SourceID":95689,"TargetID":8263,"Directional":true}]},{"ID":18597,"SourceStructureID":95690,"TargetStructureID":5528,"Label":"95690-5528 via Conventional from 95691 -> 8262","Type":"Conventional","Directional":true,"Links":[{"SourceID":95691,"TargetID":8262,"Directional":true}]},{"ID":18598,"SourceStructureID":95698,"TargetStructureID":5528,"Label":"95698-5528 via Conventional from 96166 -> 8259","Type":"Conventional","Directional":true,"Links":[{"SourceID":96166,"TargetID":8259,"Directional":true}]},{"ID":18599,"SourceStructureID":95699,"TargetStructureID":5528,"Label":"95699-5528 via Conventional from 96163 -> 8260","Type":"Conventional","Directional":true,"Links":[{"SourceID":96163,"TargetID":8260,"Directional":true}]},{"ID":18600,"SourceStructureID":95699,"TargetStructureID":5531,"Label":"95699-5531 via Conventional from 114687 -> 114688","Type":"Conventional","Directional":true,"Links":[{"SourceID":114687,"TargetID":114688,"Directional":true}]},{"ID":18601,"SourceStructureID":95700,"TargetStructureID":5528,"Label":"95700-5528 via Conventional from 96162 -> 8268","Type":"Conventional","Directional":true,"Links":[{"SourceID":96162,"TargetID":8268,"Directional":true}]},{"ID":18602,"SourceStructureID":95708,"TargetStructureID":180,"Label":"95708-180 via Conventional from 95709 -> 95710","Type":"Conventional","Directional":true,"Links":[{"SourceID":95709,"TargetID":95710,"Directional":true}]},{"ID":18603,"SourceStructureID":95711,"TargetStructureID":180,"Label":"95711-180 via Conventional from 95712 -> 95713","Type":"Conventional","Directional":true,"Links":[{"SourceID":95712,"TargetID":95713,"Directional":true}]},{"ID":18604,"SourceStructureID":95729,"TargetStructureID":180,"Label":"95729-180 via Conventional from 95730 -> 95731","Type":"Conventional","Directional":true,"Links":[{"SourceID":95730,"TargetID":95731,"Directional":true}]},{"ID":18605,"SourceStructureID":95746,"TargetStructureID":180,"Label":"95746-180 via Conventional from 95748 -> 95749","Type":"Conventional","Directional":true,"Links":[{"SourceID":95748,"TargetID":95749,"Directional":true}]},{"ID":18606,"SourceStructureID":95751,"TargetStructureID":180,"Label":"95751-180 via Conventional from 95754 -> 95755","Type":"Conventional","Directional":true,"Links":[{"SourceID":95754,"TargetID":95755,"Directional":true}]},{"ID":18607,"SourceStructureID":95807,"TargetStructureID":180,"Label":"95807-180 via Conventional from 95808 -> 88068","Type":"Conventional","Directional":true,"Links":[{"SourceID":95808,"TargetID":88068,"Directional":true}]},{"ID":18608,"SourceStructureID":95815,"TargetStructureID":180,"Label":"95815-180 via Conventional from 95816 -> 95817","Type":"Conventional","Directional":true,"Links":[{"SourceID":95816,"TargetID":95817,"Directional":true}]},{"ID":18609,"SourceStructureID":95818,"TargetStructureID":180,"Label":"95818-180 via Conventional from 95819 -> 88069","Type":"Conventional","Directional":true,"Links":[{"SourceID":95819,"TargetID":88069,"Directional":true}]},{"ID":18610,"SourceStructureID":95820,"TargetStructureID":180,"Label":"95820-180 via Conventional from 95822 -> 95821","Type":"Conventional","Directional":true,"Links":[{"SourceID":95822,"TargetID":95821,"Directional":true}]},{"ID":18611,"SourceStructureID":95823,"TargetStructureID":180,"Label":"95823-180 via Conventional from 95826 -> 88074","Type":"Conventional","Directional":true,"Links":[{"SourceID":95826,"TargetID":88074,"Directional":true}]},{"ID":18612,"SourceStructureID":95824,"TargetStructureID":180,"Label":"95824-180 via Conventional from 132960 -> 132959","Type":"Conventional","Directional":true,"Links":[{"SourceID":132960,"TargetID":132959,"Directional":true}]},{"ID":18613,"SourceStructureID":95829,"TargetStructureID":180,"Label":"95829-180 via Conventional from 95830 -> 88073","Type":"Conventional","Directional":true,"Links":[{"SourceID":95830,"TargetID":88073,"Directional":true}]},{"ID":18614,"SourceStructureID":95836,"TargetStructureID":180,"Label":"95836-180 via Conventional from 95838 -> 95837","Type":"Conventional","Directional":true,"Links":[{"SourceID":95838,"TargetID":95837,"Directional":true}]},{"ID":18615,"SourceStructureID":95846,"TargetStructureID":180,"Label":"95846-180 via Conventional from 95847 -> 95848","Type":"Conventional","Directional":true,"Links":[{"SourceID":95847,"TargetID":95848,"Directional":true}]},{"ID":18616,"SourceStructureID":95851,"TargetStructureID":180,"Label":"95851-180 via Conventional from 95853 -> 88075","Type":"Conventional","Directional":true,"Links":[{"SourceID":95853,"TargetID":88075,"Directional":true}]},{"ID":18617,"SourceStructureID":95866,"TargetStructureID":180,"Label":"95866-180 via Conventional from 95867 -> 95869, 133007 -> 133006","Type":"Conventional","Directional":true,"Links":[{"SourceID":95867,"TargetID":95869,"Directional":true},{"SourceID":133007,"TargetID":133006,"Directional":true}]},{"ID":18618,"SourceStructureID":95871,"TargetStructureID":180,"Label":"95871-180 via Conventional from 95873 -> 6568","Type":"Conventional","Directional":true,"Links":[{"SourceID":95873,"TargetID":6568,"Directional":true}]},{"ID":18619,"SourceStructureID":95874,"TargetStructureID":180,"Label":"95874-180 via Conventional from 95875 -> 6569","Type":"Conventional","Directional":true,"Links":[{"SourceID":95875,"TargetID":6569,"Directional":true}]},{"ID":18620,"SourceStructureID":95877,"TargetStructureID":180,"Label":"95877-180 via Conventional from 95880 -> 95881","Type":"Conventional","Directional":true,"Links":[{"SourceID":95880,"TargetID":95881,"Directional":true}]},{"ID":18621,"SourceStructureID":95895,"TargetStructureID":180,"Label":"95895-180 via Conventional from 95898 -> 95899","Type":"Conventional","Directional":true,"Links":[{"SourceID":95898,"TargetID":95899,"Directional":true}]},{"ID":18622,"SourceStructureID":95900,"TargetStructureID":180,"Label":"95900-180 via Conventional from 95901 -> 95902","Type":"Conventional","Directional":true,"Links":[{"SourceID":95901,"TargetID":95902,"Directional":true}]},{"ID":18623,"SourceStructureID":95907,"TargetStructureID":180,"Label":"95907-180 via Conventional from 95908 -> 95909","Type":"Conventional","Directional":true,"Links":[{"SourceID":95908,"TargetID":95909,"Directional":true}]},{"ID":18624,"SourceStructureID":95910,"TargetStructureID":180,"Label":"95910-180 via Conventional from 95913 -> 95914","Type":"Conventional","Directional":true,"Links":[{"SourceID":95913,"TargetID":95914,"Directional":true}]},{"ID":18625,"SourceStructureID":95917,"TargetStructureID":180,"Label":"95917-180 via Conventional from 95920 -> 95921","Type":"Conventional","Directional":true,"Links":[{"SourceID":95920,"TargetID":95921,"Directional":true}]},{"ID":18626,"SourceStructureID":95922,"TargetStructureID":166,"Label":"95922-166 via Conventional from 132918 -> 132917","Type":"Conventional","Directional":true,"Links":[{"SourceID":132918,"TargetID":132917,"Directional":true}]},{"ID":18627,"SourceStructureID":95922,"TargetStructureID":180,"Label":"95922-180 via Conventional from 95925 -> 14141","Type":"Conventional","Directional":true,"Links":[{"SourceID":95925,"TargetID":14141,"Directional":true}]},{"ID":18628,"SourceStructureID":95930,"TargetStructureID":180,"Label":"95930-180 via Conventional from 95937 -> 14138, 95957 -> 14146","Type":"Conventional","Directional":true,"Links":[{"SourceID":95937,"TargetID":14138,"Directional":true},{"SourceID":95957,"TargetID":14146,"Directional":true}]},{"ID":18629,"SourceStructureID":95945,"TargetStructureID":180,"Label":"95945-180 via Conventional from 95946 -> 14140","Type":"Conventional","Directional":true,"Links":[{"SourceID":95946,"TargetID":14140,"Directional":true}]},{"ID":18630,"SourceStructureID":95947,"TargetStructureID":180,"Label":"95947-180 via Conventional from 95948 -> 14145","Type":"Conventional","Directional":true,"Links":[{"SourceID":95948,"TargetID":14145,"Directional":true}]},{"ID":18631,"SourceStructureID":95959,"TargetStructureID":180,"Label":"95959-180 via Conventional from 95961 -> 95962","Type":"Conventional","Directional":true,"Links":[{"SourceID":95961,"TargetID":95962,"Directional":true}]},{"ID":18632,"SourceStructureID":95963,"TargetStructureID":180,"Label":"95963-180 via Conventional from 95964 -> 95965","Type":"Conventional","Directional":true,"Links":[{"SourceID":95964,"TargetID":95965,"Directional":true}]},{"ID":18633,"SourceStructureID":95966,"TargetStructureID":180,"Label":"95966-180 via Conventional from 95968 -> 14159","Type":"Conventional","Directional":true,"Links":[{"SourceID":95968,"TargetID":14159,"Directional":true}]},{"ID":18634,"SourceStructureID":95971,"TargetStructureID":180,"Label":"95971-180 via Conventional from 95972 -> 14158","Type":"Conventional","Directional":true,"Links":[{"SourceID":95972,"TargetID":14158,"Directional":true}]},{"ID":18635,"SourceStructureID":95977,"TargetStructureID":180,"Label":"95977-180 via Conventional from 96009 -> 96010","Type":"Conventional","Directional":true,"Links":[{"SourceID":96009,"TargetID":96010,"Directional":true}]},{"ID":18636,"SourceStructureID":95978,"TargetStructureID":180,"Label":"95978-180 via Conventional from 95979 -> 14148","Type":"Conventional","Directional":true,"Links":[{"SourceID":95979,"TargetID":14148,"Directional":true}]},{"ID":18637,"SourceStructureID":95991,"TargetStructureID":180,"Label":"95991-180 via Conventional from 95993 -> 95994","Type":"Conventional","Directional":true,"Links":[{"SourceID":95993,"TargetID":95994,"Directional":true}]},{"ID":18638,"SourceStructureID":95997,"TargetStructureID":180,"Label":"95997-180 via Conventional from 96001 -> 14160","Type":"Conventional","Directional":true,"Links":[{"SourceID":96001,"TargetID":14160,"Directional":true}]},{"ID":18639,"SourceStructureID":95997,"TargetStructureID":6169,"Label":"95997-6169 via Conventional from 132841 -> 132840","Type":"Conventional","Directional":true,"Links":[{"SourceID":132841,"TargetID":132840,"Directional":true}]},{"ID":18640,"SourceStructureID":96011,"TargetStructureID":180,"Label":"96011-180 via Conventional from 96012 -> 14153","Type":"Conventional","Directional":true,"Links":[{"SourceID":96012,"TargetID":14153,"Directional":true}]},{"ID":18641,"SourceStructureID":96039,"TargetStructureID":180,"Label":"96039-180 via Conventional from 96040 -> 96041","Type":"Conventional","Directional":true,"Links":[{"SourceID":96040,"TargetID":96041,"Directional":true}]},{"ID":18642,"SourceStructureID":96143,"TargetStructureID":5528,"Label":"96143-5528 via Conventional from 96158 -> 8270","Type":"Conventional","Directional":true,"Links":[{"SourceID":96158,"TargetID":8270,"Directional":true}]},{"ID":18643,"SourceStructureID":96152,"TargetStructureID":595,"Label":"96152-595 via Conventional from 125162 -> 125161","Type":"Conventional","Directional":true,"Links":[{"SourceID":125162,"TargetID":125161,"Directional":true}]},{"ID":18644,"SourceStructureID":96152,"TargetStructureID":5528,"Label":"96152-5528 via Conventional from 96159 -> 8271","Type":"Conventional","Directional":true,"Links":[{"SourceID":96159,"TargetID":8271,"Directional":true}]},{"ID":18645,"SourceStructureID":96164,"TargetStructureID":5528,"Label":"96164-5528 via Conventional from 96165 -> 8261","Type":"Conventional","Directional":true,"Links":[{"SourceID":96165,"TargetID":8261,"Directional":true}]},{"ID":18646,"SourceStructureID":96164,"TargetStructureID":82832,"Label":"96164-82832 via Conventional from 107187 -> 107185","Type":"Conventional","Directional":true,"Links":[{"SourceID":107187,"TargetID":107185,"Directional":true}]},{"ID":18647,"SourceStructureID":96175,"TargetStructureID":5517,"Label":"96175-5517 via Conventional from 96176 -> 96174","Type":"Conventional","Directional":true,"Links":[{"SourceID":96176,"TargetID":96174,"Directional":true}]},{"ID":18648,"SourceStructureID":96184,"TargetStructureID":5528,"Label":"96184-5528 via Conventional from 96186 -> 96187","Type":"Conventional","Directional":true,"Links":[{"SourceID":96186,"TargetID":96187,"Directional":true}]},{"ID":18649,"SourceStructureID":96199,"TargetStructureID":5517,"Label":"96199-5517 via Conventional from 96200 -> 96197","Type":"Conventional","Directional":true,"Links":[{"SourceID":96200,"TargetID":96197,"Directional":true}]},{"ID":18650,"SourceStructureID":96202,"TargetStructureID":5517,"Label":"96202-5517 via Conventional from 96203 -> 96198","Type":"Conventional","Directional":true,"Links":[{"SourceID":96203,"TargetID":96198,"Directional":true}]},{"ID":18651,"SourceStructureID":96224,"TargetStructureID":5528,"Label":"96224-5528 via Conventional from 96225 -> 96226","Type":"Conventional","Directional":true,"Links":[{"SourceID":96225,"TargetID":96226,"Directional":true}]},{"ID":18652,"SourceStructureID":96224,"TargetStructureID":5531,"Label":"96224-5531 via Conventional from 114542 -> 114543","Type":"Conventional","Directional":true,"Links":[{"SourceID":114542,"TargetID":114543,"Directional":true}]},{"ID":18653,"SourceStructureID":96243,"TargetStructureID":5528,"Label":"96243-5528 via Conventional from 96244 -> 96245","Type":"Conventional","Directional":true,"Links":[{"SourceID":96244,"TargetID":96245,"Directional":true}]},{"ID":18654,"SourceStructureID":96246,"TargetStructureID":5528,"Label":"96246-5528 via Conventional from 96247 -> 96248","Type":"Conventional","Directional":true,"Links":[{"SourceID":96247,"TargetID":96248,"Directional":true}]},{"ID":18655,"SourceStructureID":96249,"TargetStructureID":5528,"Label":"96249-5528 via Conventional from 96250 -> 96251","Type":"Conventional","Directional":true,"Links":[{"SourceID":96250,"TargetID":96251,"Directional":true}]},{"ID":18656,"SourceStructureID":96255,"TargetStructureID":5528,"Label":"96255-5528 via Conventional from 96256 -> 96257","Type":"Conventional","Directional":true,"Links":[{"SourceID":96256,"TargetID":96257,"Directional":true}]},{"ID":18657,"SourceStructureID":96266,"TargetStructureID":5528,"Label":"96266-5528 via Conventional from 96267 -> 8274","Type":"Conventional","Directional":true,"Links":[{"SourceID":96267,"TargetID":8274,"Directional":true}]},{"ID":18658,"SourceStructureID":96266,"TargetStructureID":5531,"Label":"96266-5531 via Conventional from 107150 -> 107149","Type":"Conventional","Directional":true,"Links":[{"SourceID":107150,"TargetID":107149,"Directional":true}]},{"ID":18659,"SourceStructureID":96268,"TargetStructureID":5528,"Label":"96268-5528 via Conventional from 96269 -> 8275","Type":"Conventional","Directional":true,"Links":[{"SourceID":96269,"TargetID":8275,"Directional":true}]},{"ID":18660,"SourceStructureID":96270,"TargetStructureID":5528,"Label":"96270-5528 via Conventional from 96271 -> 8273","Type":"Conventional","Directional":true,"Links":[{"SourceID":96271,"TargetID":8273,"Directional":true}]},{"ID":18661,"SourceStructureID":96272,"TargetStructureID":5528,"Label":"96272-5528 via Conventional from 96273 -> 8281","Type":"Conventional","Directional":true,"Links":[{"SourceID":96273,"TargetID":8281,"Directional":true}]},{"ID":18662,"SourceStructureID":96285,"TargetStructureID":5528,"Label":"96285-5528 via Conventional from 96286 -> 8277","Type":"Conventional","Directional":true,"Links":[{"SourceID":96286,"TargetID":8277,"Directional":true}]},{"ID":18663,"SourceStructureID":96287,"TargetStructureID":5528,"Label":"96287-5528 via Conventional from 96289 -> 8276","Type":"Conventional","Directional":true,"Links":[{"SourceID":96289,"TargetID":8276,"Directional":true}]},{"ID":18664,"SourceStructureID":96293,"TargetStructureID":5528,"Label":"96293-5528 via Conventional from 96294 -> 96295","Type":"Conventional","Directional":true,"Links":[{"SourceID":96294,"TargetID":96295,"Directional":true}]},{"ID":18665,"SourceStructureID":96293,"TargetStructureID":5531,"Label":"96293-5531 via Conventional from 107093 -> 107090","Type":"Conventional","Directional":true,"Links":[{"SourceID":107093,"TargetID":107090,"Directional":true}]},{"ID":18666,"SourceStructureID":96296,"TargetStructureID":5528,"Label":"96296-5528 via Conventional from 96297 -> 96298","Type":"Conventional","Directional":true,"Links":[{"SourceID":96297,"TargetID":96298,"Directional":true}]},{"ID":18667,"SourceStructureID":96308,"TargetStructureID":5517,"Label":"96308-5517 via Conventional from 96309 -> 96307","Type":"Conventional","Directional":true,"Links":[{"SourceID":96309,"TargetID":96307,"Directional":true}]},{"ID":18668,"SourceStructureID":96310,"TargetStructureID":5517,"Label":"96310-5517 via Conventional from 96313 -> 96215, 96327 -> 96110","Type":"Conventional","Directional":true,"Links":[{"SourceID":96313,"TargetID":96215,"Directional":true},{"SourceID":96327,"TargetID":96110,"Directional":true}]},{"ID":18669,"SourceStructureID":96311,"TargetStructureID":5517,"Label":"96311-5517 via Conventional from 96312 -> 96216","Type":"Conventional","Directional":true,"Links":[{"SourceID":96312,"TargetID":96216,"Directional":true}]},{"ID":18670,"SourceStructureID":96315,"TargetStructureID":5517,"Label":"96315-5517 via Conventional from 96316 -> 96314","Type":"Conventional","Directional":true,"Links":[{"SourceID":96316,"TargetID":96314,"Directional":true}]},{"ID":18671,"SourceStructureID":96319,"TargetStructureID":5517,"Label":"96319-5517 via Conventional from 96320 -> 96318","Type":"Conventional","Directional":true,"Links":[{"SourceID":96320,"TargetID":96318,"Directional":true}]},{"ID":18672,"SourceStructureID":96321,"TargetStructureID":5517,"Label":"96321-5517 via Conventional from 96322 -> 96111","Type":"Conventional","Directional":true,"Links":[{"SourceID":96322,"TargetID":96111,"Directional":true}]},{"ID":18673,"SourceStructureID":96325,"TargetStructureID":5517,"Label":"96325-5517 via Conventional from 96326 -> 96112","Type":"Conventional","Directional":true,"Links":[{"SourceID":96326,"TargetID":96112,"Directional":true}]},{"ID":18674,"SourceStructureID":96337,"TargetStructureID":5517,"Label":"96337-5517 via Conventional from 96339 -> 96059","Type":"Conventional","Directional":true,"Links":[{"SourceID":96339,"TargetID":96059,"Directional":true}]},{"ID":18675,"SourceStructureID":96341,"TargetStructureID":5517,"Label":"96341-5517 via Conventional from 96342 -> 96060","Type":"Conventional","Directional":true,"Links":[{"SourceID":96342,"TargetID":96060,"Directional":true}]},{"ID":18676,"SourceStructureID":96357,"TargetStructureID":5279,"Label":"96357-5279 via Conventional from 96358 -> 6906","Type":"Conventional","Directional":true,"Links":[{"SourceID":96358,"TargetID":6906,"Directional":true}]},{"ID":18677,"SourceStructureID":96373,"TargetStructureID":5279,"Label":"96373-5279 via Conventional from 96402 -> 40191","Type":"Conventional","Directional":true,"Links":[{"SourceID":96402,"TargetID":40191,"Directional":true}]},{"ID":18678,"SourceStructureID":96379,"TargetStructureID":5279,"Label":"96379-5279 via Conventional from 96382 -> 49233","Type":"Conventional","Directional":true,"Links":[{"SourceID":96382,"TargetID":49233,"Directional":true}]},{"ID":18679,"SourceStructureID":96383,"TargetStructureID":5279,"Label":"96383-5279 via Conventional from 96384 -> 26006","Type":"Conventional","Directional":true,"Links":[{"SourceID":96384,"TargetID":26006,"Directional":true}]},{"ID":18680,"SourceStructureID":96407,"TargetStructureID":5279,"Label":"96407-5279 via Conventional from 96410 -> 49235, 96411 -> 49235","Type":"Conventional","Directional":true,"Links":[{"SourceID":96410,"TargetID":49235,"Directional":true},{"SourceID":96411,"TargetID":49235,"Directional":true}]},{"ID":18681,"SourceStructureID":96421,"TargetStructureID":5279,"Label":"96421-5279 via Conventional from 96422 -> 49237","Type":"Conventional","Directional":true,"Links":[{"SourceID":96422,"TargetID":49237,"Directional":true}]},{"ID":18682,"SourceStructureID":96435,"TargetStructureID":5278,"Label":"96435-5278 via Conventional from 114314 -> 114473","Type":"Conventional","Directional":true,"Links":[{"SourceID":114314,"TargetID":114473,"Directional":true}]},{"ID":18683,"SourceStructureID":96435,"TargetStructureID":5279,"Label":"96435-5279 via Conventional from 96436 -> 49240","Type":"Conventional","Directional":true,"Links":[{"SourceID":96436,"TargetID":49240,"Directional":true}]},{"ID":18684,"SourceStructureID":96437,"TargetStructureID":5279,"Label":"96437-5279 via Conventional from 96438 -> 49243","Type":"Conventional","Directional":true,"Links":[{"SourceID":96438,"TargetID":49243,"Directional":true}]},{"ID":18685,"SourceStructureID":96442,"TargetStructureID":5279,"Label":"96442-5279 via Conventional from 96443 -> 96444","Type":"Conventional","Directional":true,"Links":[{"SourceID":96443,"TargetID":96444,"Directional":true}]},{"ID":18686,"SourceStructureID":96453,"TargetStructureID":5279,"Label":"96453-5279 via Conventional from 96454 -> 49244","Type":"Conventional","Directional":true,"Links":[{"SourceID":96454,"TargetID":49244,"Directional":true}]},{"ID":18687,"SourceStructureID":96473,"TargetStructureID":5279,"Label":"96473-5279 via Conventional from 96474 -> 6334","Type":"Conventional","Directional":true,"Links":[{"SourceID":96474,"TargetID":6334,"Directional":true}]},{"ID":18688,"SourceStructureID":96485,"TargetStructureID":5279,"Label":"96485-5279 via Conventional from 96486 -> 6337","Type":"Conventional","Directional":true,"Links":[{"SourceID":96486,"TargetID":6337,"Directional":true}]},{"ID":18689,"SourceStructureID":96516,"TargetStructureID":332,"Label":"96516-332 via Conventional from 96518 -> 96515","Type":"Conventional","Directional":true,"Links":[{"SourceID":96518,"TargetID":96515,"Directional":true}]},{"ID":18690,"SourceStructureID":96519,"TargetStructureID":5279,"Label":"96519-5279 via Conventional from 96998 -> 28311","Type":"Conventional","Directional":true,"Links":[{"SourceID":96998,"TargetID":28311,"Directional":true}]},{"ID":18691,"SourceStructureID":96522,"TargetStructureID":332,"Label":"96522-332 via Conventional from 96523 -> 96477","Type":"Conventional","Directional":true,"Links":[{"SourceID":96523,"TargetID":96477,"Directional":true}]},{"ID":18692,"SourceStructureID":96524,"TargetStructureID":324,"Label":"96524-324 via Conventional from 96526 -> 96378","Type":"Conventional","Directional":true,"Links":[{"SourceID":96526,"TargetID":96378,"Directional":true}]},{"ID":18693,"SourceStructureID":96534,"TargetStructureID":332,"Label":"96534-332 via Conventional from 96535 -> 96536, 96540 -> 82186","Type":"Conventional","Directional":true,"Links":[{"SourceID":96535,"TargetID":96536,"Directional":true},{"SourceID":96540,"TargetID":82186,"Directional":true}]},{"ID":18694,"SourceStructureID":96560,"TargetStructureID":332,"Label":"96560-332 via Conventional from 96561 -> 96558","Type":"Conventional","Directional":true,"Links":[{"SourceID":96561,"TargetID":96558,"Directional":true}]},{"ID":18695,"SourceStructureID":96562,"TargetStructureID":332,"Label":"96562-332 via Conventional from 96563 -> 96559","Type":"Conventional","Directional":true,"Links":[{"SourceID":96563,"TargetID":96559,"Directional":true}]},{"ID":18696,"SourceStructureID":96565,"TargetStructureID":332,"Label":"96565-332 via Conventional from 97366 -> 97367","Type":"Conventional","Directional":true,"Links":[{"SourceID":97366,"TargetID":97367,"Directional":true}]},{"ID":18697,"SourceStructureID":96589,"TargetStructureID":332,"Label":"96589-332 via Conventional from 96590 -> 96588","Type":"Conventional","Directional":true,"Links":[{"SourceID":96590,"TargetID":96588,"Directional":true}]},{"ID":18698,"SourceStructureID":96589,"TargetStructureID":461,"Label":"96589-461 via Conventional from 96591 -> 96592","Type":"Conventional","Directional":true,"Links":[{"SourceID":96591,"TargetID":96592,"Directional":true}]},{"ID":18699,"SourceStructureID":96600,"TargetStructureID":483,"Label":"96600-483 via Conventional from 96601 -> 96599","Type":"Conventional","Directional":true,"Links":[{"SourceID":96601,"TargetID":96599,"Directional":true}]},{"ID":18700,"SourceStructureID":96600,"TargetStructureID":6997,"Label":"96600-6997 via Conventional from 96602 -> 96603","Type":"Conventional","Directional":true,"Links":[{"SourceID":96602,"TargetID":96603,"Directional":true}]},{"ID":18701,"SourceStructureID":96610,"TargetStructureID":483,"Label":"96610-483 via Conventional from 96612 -> 96606","Type":"Conventional","Directional":true,"Links":[{"SourceID":96612,"TargetID":96606,"Directional":true}]},{"ID":18702,"SourceStructureID":96617,"TargetStructureID":483,"Label":"96617-483 via Conventional from 96618 -> 96608","Type":"Conventional","Directional":true,"Links":[{"SourceID":96618,"TargetID":96608,"Directional":true}]},{"ID":18703,"SourceStructureID":96619,"TargetStructureID":483,"Label":"96619-483 via Conventional from 96620 -> 96607","Type":"Conventional","Directional":true,"Links":[{"SourceID":96620,"TargetID":96607,"Directional":true}]},{"ID":18704,"SourceStructureID":96621,"TargetStructureID":483,"Label":"96621-483 via Conventional from 96622 -> 96623","Type":"Conventional","Directional":true,"Links":[{"SourceID":96622,"TargetID":96623,"Directional":true}]},{"ID":18705,"SourceStructureID":96621,"TargetStructureID":525,"Label":"96621-525 via Conventional from 96625 -> 6222","Type":"Conventional","Directional":true,"Links":[{"SourceID":96625,"TargetID":6222,"Directional":true}]},{"ID":18706,"SourceStructureID":96629,"TargetStructureID":6857,"Label":"96629-6857 via Conventional from 96631 -> 6873","Type":"Conventional","Directional":true,"Links":[{"SourceID":96631,"TargetID":6873,"Directional":true}]},{"ID":18707,"SourceStructureID":96638,"TargetStructureID":483,"Label":"96638-483 via Conventional from 96641 -> 96637","Type":"Conventional","Directional":true,"Links":[{"SourceID":96641,"TargetID":96637,"Directional":true}]},{"ID":18708,"SourceStructureID":96642,"TargetStructureID":483,"Label":"96642-483 via Conventional from 96643 -> 92352","Type":"Conventional","Directional":true,"Links":[{"SourceID":96643,"TargetID":92352,"Directional":true}]},{"ID":18709,"SourceStructureID":96647,"TargetStructureID":483,"Label":"96647-483 via Conventional from 96648 -> 96646","Type":"Conventional","Directional":true,"Links":[{"SourceID":96648,"TargetID":96646,"Directional":true}]},{"ID":18710,"SourceStructureID":96649,"TargetStructureID":483,"Label":"96649-483 via Conventional from 96650 -> 92348","Type":"Conventional","Directional":true,"Links":[{"SourceID":96650,"TargetID":92348,"Directional":true}]},{"ID":18711,"SourceStructureID":96657,"TargetStructureID":483,"Label":"96657-483 via Conventional from 96658 -> 96659","Type":"Conventional","Directional":true,"Links":[{"SourceID":96658,"TargetID":96659,"Directional":true}]},{"ID":18712,"SourceStructureID":96663,"TargetStructureID":483,"Label":"96663-483 via Conventional from 96664 -> 96662","Type":"Conventional","Directional":true,"Links":[{"SourceID":96664,"TargetID":96662,"Directional":true}]},{"ID":18713,"SourceStructureID":96679,"TargetStructureID":5499,"Label":"96679-5499 via Conventional from 96680 -> 96678","Type":"Conventional","Directional":true,"Links":[{"SourceID":96680,"TargetID":96678,"Directional":true}]},{"ID":18714,"SourceStructureID":96699,"TargetStructureID":5499,"Label":"96699-5499 via Conventional from 96700 -> 96698","Type":"Conventional","Directional":true,"Links":[{"SourceID":96700,"TargetID":96698,"Directional":true}]},{"ID":18715,"SourceStructureID":96705,"TargetStructureID":96708,"Label":"96705-96708 via Conventional from 96707 -> 96710","Type":"Conventional","Directional":true,"Links":[{"SourceID":96707,"TargetID":96710,"Directional":true}]},{"ID":18716,"SourceStructureID":96736,"TargetStructureID":5499,"Label":"96736-5499 via Conventional from 96737 -> 96726","Type":"Conventional","Directional":true,"Links":[{"SourceID":96737,"TargetID":96726,"Directional":true}]},{"ID":18717,"SourceStructureID":96768,"TargetStructureID":5561,"Label":"96768-5561 via Conventional from 96770 -> 96771","Type":"Conventional","Directional":true,"Links":[{"SourceID":96770,"TargetID":96771,"Directional":true}]},{"ID":18718,"SourceStructureID":96779,"TargetStructureID":5561,"Label":"96779-5561 via Conventional from 96780 -> 29892","Type":"Conventional","Directional":true,"Links":[{"SourceID":96780,"TargetID":29892,"Directional":true}]},{"ID":18719,"SourceStructureID":96786,"TargetStructureID":5561,"Label":"96786-5561 via Conventional from 96787 -> 46156","Type":"Conventional","Directional":true,"Links":[{"SourceID":96787,"TargetID":46156,"Directional":true}]},{"ID":18720,"SourceStructureID":96788,"TargetStructureID":10872,"Label":"96788-10872 via Conventional from 96819 -> 15029, 96821 -> 15026, 96824 -> 96825","Type":"Conventional","Directional":true,"Links":[{"SourceID":96819,"TargetID":15029,"Directional":true},{"SourceID":96821,"TargetID":15026,"Directional":true},{"SourceID":96824,"TargetID":96825,"Directional":true}]},{"ID":18721,"SourceStructureID":96788,"TargetStructureID":11248,"Label":"96788-11248 via Conventional from 96859 -> 96860, 96861 -> 96862, 96863 -> 96864, 96865 -> 96867","Type":"Conventional","Directional":true,"Links":[{"SourceID":96859,"TargetID":96860,"Directional":true},{"SourceID":96861,"TargetID":96862,"Directional":true},{"SourceID":96863,"TargetID":96864,"Directional":true},{"SourceID":96865,"TargetID":96867,"Directional":true}]},{"ID":18722,"SourceStructureID":96799,"TargetStructureID":5561,"Label":"96799-5561 via Conventional from 96800 -> 46262","Type":"Conventional","Directional":true,"Links":[{"SourceID":96800,"TargetID":46262,"Directional":true}]},{"ID":18723,"SourceStructureID":96801,"TargetStructureID":5561,"Label":"96801-5561 via Conventional from 96802 -> 46265","Type":"Conventional","Directional":true,"Links":[{"SourceID":96802,"TargetID":46265,"Directional":true}]},{"ID":18724,"SourceStructureID":96805,"TargetStructureID":5561,"Label":"96805-5561 via Conventional from 96806 -> 46283","Type":"Conventional","Directional":true,"Links":[{"SourceID":96806,"TargetID":46283,"Directional":true}]},{"ID":18725,"SourceStructureID":96807,"TargetStructureID":5561,"Label":"96807-5561 via Conventional from 96808 -> 29895","Type":"Conventional","Directional":true,"Links":[{"SourceID":96808,"TargetID":29895,"Directional":true}]},{"ID":18726,"SourceStructureID":96810,"TargetStructureID":5561,"Label":"96810-5561 via Conventional from 96811 -> 46291","Type":"Conventional","Directional":true,"Links":[{"SourceID":96811,"TargetID":46291,"Directional":true}]},{"ID":18727,"SourceStructureID":96822,"TargetStructureID":5561,"Label":"96822-5561 via Conventional from 96823 -> 46286","Type":"Conventional","Directional":true,"Links":[{"SourceID":96823,"TargetID":46286,"Directional":true}]},{"ID":18728,"SourceStructureID":96829,"TargetStructureID":5561,"Label":"96829-5561 via Conventional from 96835 -> 46290","Type":"Conventional","Directional":true,"Links":[{"SourceID":96835,"TargetID":46290,"Directional":true}]},{"ID":18729,"SourceStructureID":96848,"TargetStructureID":5528,"Label":"96848-5528 via Conventional from 96849 -> 8286","Type":"Conventional","Directional":true,"Links":[{"SourceID":96849,"TargetID":8286,"Directional":true}]},{"ID":18730,"SourceStructureID":96852,"TargetStructureID":5528,"Label":"96852-5528 via Conventional from 96866 -> 8287","Type":"Conventional","Directional":true,"Links":[{"SourceID":96866,"TargetID":8287,"Directional":true}]},{"ID":18731,"SourceStructureID":96855,"TargetStructureID":5561,"Label":"96855-5561 via Conventional from 96856 -> 46284","Type":"Conventional","Directional":true,"Links":[{"SourceID":96856,"TargetID":46284,"Directional":true}]},{"ID":18732,"SourceStructureID":96869,"TargetStructureID":5528,"Label":"96869-5528 via Conventional from 96871 -> 8288","Type":"Conventional","Directional":true,"Links":[{"SourceID":96871,"TargetID":8288,"Directional":true}]},{"ID":18733,"SourceStructureID":96872,"TargetStructureID":5528,"Label":"96872-5528 via Conventional from 96874 -> 8289","Type":"Conventional","Directional":true,"Links":[{"SourceID":96874,"TargetID":8289,"Directional":true}]},{"ID":18734,"SourceStructureID":96872,"TargetStructureID":7576,"Label":"96872-7576 via Conventional from 107174 -> 55052","Type":"Conventional","Directional":true,"Links":[{"SourceID":107174,"TargetID":55052,"Directional":true}]},{"ID":18735,"SourceStructureID":96875,"TargetStructureID":5528,"Label":"96875-5528 via Conventional from 96876 -> 8294","Type":"Conventional","Directional":true,"Links":[{"SourceID":96876,"TargetID":8294,"Directional":true}]},{"ID":18736,"SourceStructureID":96898,"TargetStructureID":5528,"Label":"96898-5528 via Conventional from 96899 -> 96900","Type":"Conventional","Directional":true,"Links":[{"SourceID":96899,"TargetID":96900,"Directional":true}]},{"ID":18737,"SourceStructureID":96919,"TargetStructureID":5565,"Label":"96919-5565 via Conventional from 96920 -> 50279","Type":"Conventional","Directional":true,"Links":[{"SourceID":96920,"TargetID":50279,"Directional":true}]},{"ID":18738,"SourceStructureID":96921,"TargetStructureID":5561,"Label":"96921-5561 via Conventional from 96922 -> 48939","Type":"Conventional","Directional":true,"Links":[{"SourceID":96922,"TargetID":48939,"Directional":true}]},{"ID":18739,"SourceStructureID":96924,"TargetStructureID":5561,"Label":"96924-5561 via Conventional from 96925 -> 96926","Type":"Conventional","Directional":true,"Links":[{"SourceID":96925,"TargetID":96926,"Directional":true}]},{"ID":18740,"SourceStructureID":96930,"TargetStructureID":5561,"Label":"96930-5561 via Conventional from 96931 -> 29897","Type":"Conventional","Directional":true,"Links":[{"SourceID":96931,"TargetID":29897,"Directional":true}]},{"ID":18741,"SourceStructureID":96932,"TargetStructureID":5561,"Label":"96932-5561 via Conventional from 96933 -> 48934","Type":"Conventional","Directional":true,"Links":[{"SourceID":96933,"TargetID":48934,"Directional":true}]},{"ID":18742,"SourceStructureID":96941,"TargetStructureID":5561,"Label":"96941-5561 via Conventional from 96942 -> 46264","Type":"Conventional","Directional":true,"Links":[{"SourceID":96942,"TargetID":46264,"Directional":true}]},{"ID":18743,"SourceStructureID":96950,"TargetStructureID":5561,"Label":"96950-5561 via Conventional from 96951 -> 46269","Type":"Conventional","Directional":true,"Links":[{"SourceID":96951,"TargetID":46269,"Directional":true}]},{"ID":18744,"SourceStructureID":96955,"TargetStructureID":5561,"Label":"96955-5561 via Conventional from 148165 -> 148164","Type":"Conventional","Directional":true,"Links":[{"SourceID":148165,"TargetID":148164,"Directional":true}]},{"ID":18745,"SourceStructureID":96955,"TargetStructureID":20136,"Label":"96955-20136 via Conventional from 96957 -> 46036","Type":"Conventional","Directional":true,"Links":[{"SourceID":96957,"TargetID":46036,"Directional":true}]},{"ID":18746,"SourceStructureID":96958,"TargetStructureID":5561,"Label":"96958-5561 via Conventional from 96959 -> 46268","Type":"Conventional","Directional":true,"Links":[{"SourceID":96959,"TargetID":46268,"Directional":true}]},{"ID":18747,"SourceStructureID":96960,"TargetStructureID":5561,"Label":"96960-5561 via Conventional from 96961 -> 46267","Type":"Conventional","Directional":true,"Links":[{"SourceID":96961,"TargetID":46267,"Directional":true}]},{"ID":18748,"SourceStructureID":96964,"TargetStructureID":5561,"Label":"96964-5561 via Conventional from 96965 -> 46270","Type":"Conventional","Directional":true,"Links":[{"SourceID":96965,"TargetID":46270,"Directional":true}]},{"ID":18749,"SourceStructureID":96976,"TargetStructureID":5561,"Label":"96976-5561 via Conventional from 96977 -> 46272","Type":"Conventional","Directional":true,"Links":[{"SourceID":96977,"TargetID":46272,"Directional":true}]},{"ID":18750,"SourceStructureID":96980,"TargetStructureID":5561,"Label":"96980-5561 via Conventional from 96982 -> 46274","Type":"Conventional","Directional":true,"Links":[{"SourceID":96982,"TargetID":46274,"Directional":true}]},{"ID":18751,"SourceStructureID":96984,"TargetStructureID":5561,"Label":"96984-5561 via Conventional from 96985 -> 46275","Type":"Conventional","Directional":true,"Links":[{"SourceID":96985,"TargetID":46275,"Directional":true}]},{"ID":18752,"SourceStructureID":96986,"TargetStructureID":5561,"Label":"96986-5561 via Conventional from 96987 -> 46276","Type":"Conventional","Directional":true,"Links":[{"SourceID":96987,"TargetID":46276,"Directional":true}]},{"ID":18753,"SourceStructureID":96995,"TargetStructureID":5561,"Label":"96995-5561 via Conventional from 96996 -> 49479","Type":"Conventional","Directional":true,"Links":[{"SourceID":96996,"TargetID":49479,"Directional":true}]},{"ID":18754,"SourceStructureID":96997,"TargetStructureID":5561,"Label":"96997-5561 via Conventional from 96999 -> 49480","Type":"Conventional","Directional":true,"Links":[{"SourceID":96999,"TargetID":49480,"Directional":true}]},{"ID":18755,"SourceStructureID":97003,"TargetStructureID":5279,"Label":"97003-5279 via Conventional from 97004 -> 25797","Type":"Conventional","Directional":true,"Links":[{"SourceID":97004,"TargetID":25797,"Directional":true}]},{"ID":18756,"SourceStructureID":97005,"TargetStructureID":5561,"Label":"97005-5561 via Conventional from 97008 -> 46278, 97009 -> 46282","Type":"Conventional","Directional":true,"Links":[{"SourceID":97008,"TargetID":46278,"Directional":true},{"SourceID":97009,"TargetID":46282,"Directional":true}]},{"ID":18757,"SourceStructureID":97011,"TargetStructureID":5279,"Label":"97011-5279 via Conventional from 97017 -> 25803","Type":"Conventional","Directional":true,"Links":[{"SourceID":97017,"TargetID":25803,"Directional":true}]},{"ID":18758,"SourceStructureID":97015,"TargetStructureID":5561,"Label":"97015-5561 via Conventional from 97016 -> 46280","Type":"Conventional","Directional":true,"Links":[{"SourceID":97016,"TargetID":46280,"Directional":true}]},{"ID":18759,"SourceStructureID":97020,"TargetStructureID":5561,"Label":"97020-5561 via Conventional from 97021 -> 46281","Type":"Conventional","Directional":true,"Links":[{"SourceID":97021,"TargetID":46281,"Directional":true}]},{"ID":18760,"SourceStructureID":97024,"TargetStructureID":471,"Label":"97024-471 via Conventional from 97095 -> 97097, 97101 -> 97102, 97106 -> 16285, 97112 -> 16286","Type":"Conventional","Directional":true,"Links":[{"SourceID":97095,"TargetID":97097,"Directional":true},{"SourceID":97101,"TargetID":97102,"Directional":true},{"SourceID":97106,"TargetID":16285,"Directional":true},{"SourceID":97112,"TargetID":16286,"Directional":true}]},{"ID":18761,"SourceStructureID":97024,"TargetStructureID":476,"Label":"97024-476 via Conventional from 97077 -> 97075","Type":"Conventional","Directional":true,"Links":[{"SourceID":97077,"TargetID":97075,"Directional":true}]},{"ID":18762,"SourceStructureID":97032,"TargetStructureID":5561,"Label":"97032-5561 via Conventional from 97033 -> 48868","Type":"Conventional","Directional":true,"Links":[{"SourceID":97033,"TargetID":48868,"Directional":true}]},{"ID":18763,"SourceStructureID":97037,"TargetStructureID":5561,"Label":"97037-5561 via Conventional from 97038 -> 49637","Type":"Conventional","Directional":true,"Links":[{"SourceID":97038,"TargetID":49637,"Directional":true}]},{"ID":18764,"SourceStructureID":97037,"TargetStructureID":5562,"Label":"97037-5562 via Conventional from 97040 -> 63746","Type":"Conventional","Directional":true,"Links":[{"SourceID":97040,"TargetID":63746,"Directional":true}]},{"ID":18765,"SourceStructureID":97041,"TargetStructureID":5279,"Label":"97041-5279 via Conventional from 97044 -> 25800","Type":"Conventional","Directional":true,"Links":[{"SourceID":97044,"TargetID":25800,"Directional":true}]},{"ID":18766,"SourceStructureID":97046,"TargetStructureID":5561,"Label":"97046-5561 via Conventional from 97047 -> 46158","Type":"Conventional","Directional":true,"Links":[{"SourceID":97047,"TargetID":46158,"Directional":true}]},{"ID":18767,"SourceStructureID":97048,"TargetStructureID":5279,"Label":"97048-5279 via Conventional from 97049 -> 25799","Type":"Conventional","Directional":true,"Links":[{"SourceID":97049,"TargetID":25799,"Directional":true}]},{"ID":18768,"SourceStructureID":97050,"TargetStructureID":5279,"Label":"97050-5279 via Conventional from 97052 -> 97053","Type":"Conventional","Directional":true,"Links":[{"SourceID":97052,"TargetID":97053,"Directional":true}]},{"ID":18769,"SourceStructureID":97061,"TargetStructureID":5561,"Label":"97061-5561 via Conventional from 97062 -> 46165","Type":"Conventional","Directional":true,"Links":[{"SourceID":97062,"TargetID":46165,"Directional":true}]},{"ID":18770,"SourceStructureID":97068,"TargetStructureID":5561,"Label":"97068-5561 via Conventional from 97080 -> 46197","Type":"Conventional","Directional":true,"Links":[{"SourceID":97080,"TargetID":46197,"Directional":true}]},{"ID":18771,"SourceStructureID":97069,"TargetStructureID":5279,"Label":"97069-5279 via Conventional from 97074 -> 25804, 97076 -> 97078","Type":"Conventional","Directional":true,"Links":[{"SourceID":97074,"TargetID":25804,"Directional":true},{"SourceID":97076,"TargetID":97078,"Directional":true}]},{"ID":18772,"SourceStructureID":97079,"TargetStructureID":5279,"Label":"97079-5279 via Conventional from 97081 -> 6339","Type":"Conventional","Directional":true,"Links":[{"SourceID":97081,"TargetID":6339,"Directional":true}]},{"ID":18773,"SourceStructureID":97086,"TargetStructureID":5279,"Label":"97086-5279 via Conventional from 97088 -> 6338","Type":"Conventional","Directional":true,"Links":[{"SourceID":97088,"TargetID":6338,"Directional":true}]},{"ID":18774,"SourceStructureID":97087,"TargetStructureID":5561,"Label":"97087-5561 via Conventional from 97089 -> 97084","Type":"Conventional","Directional":true,"Links":[{"SourceID":97089,"TargetID":97084,"Directional":true}]},{"ID":18775,"SourceStructureID":97099,"TargetStructureID":5279,"Label":"97099-5279 via Conventional from 97104 -> 25839","Type":"Conventional","Directional":true,"Links":[{"SourceID":97104,"TargetID":25839,"Directional":true}]},{"ID":18776,"SourceStructureID":97105,"TargetStructureID":5279,"Label":"97105-5279 via Conventional from 97109 -> 97108","Type":"Conventional","Directional":true,"Links":[{"SourceID":97109,"TargetID":97108,"Directional":true}]},{"ID":18777,"SourceStructureID":97126,"TargetStructureID":5279,"Label":"97126-5279 via Conventional from 97133 -> 25806","Type":"Conventional","Directional":true,"Links":[{"SourceID":97133,"TargetID":25806,"Directional":true}]},{"ID":18778,"SourceStructureID":97131,"TargetStructureID":5561,"Label":"97131-5561 via Conventional from 97134 -> 97135","Type":"Conventional","Directional":true,"Links":[{"SourceID":97134,"TargetID":97135,"Directional":true}]},{"ID":18779,"SourceStructureID":97139,"TargetStructureID":5279,"Label":"97139-5279 via Conventional from 97140 -> 25808","Type":"Conventional","Directional":true,"Links":[{"SourceID":97140,"TargetID":25808,"Directional":true}]},{"ID":18780,"SourceStructureID":97143,"TargetStructureID":5279,"Label":"97143-5279 via Conventional from 97149 -> 25810","Type":"Conventional","Directional":true,"Links":[{"SourceID":97149,"TargetID":25810,"Directional":true}]},{"ID":18781,"SourceStructureID":97146,"TargetStructureID":5561,"Label":"97146-5561 via Conventional from 97147 -> 46190","Type":"Conventional","Directional":true,"Links":[{"SourceID":97147,"TargetID":46190,"Directional":true}]},{"ID":18782,"SourceStructureID":97148,"TargetStructureID":5561,"Label":"97148-5561 via Conventional from 97150 -> 97151","Type":"Conventional","Directional":true,"Links":[{"SourceID":97150,"TargetID":97151,"Directional":true}]},{"ID":18783,"SourceStructureID":97155,"TargetStructureID":5561,"Label":"97155-5561 via Conventional from 97157 -> 46191","Type":"Conventional","Directional":true,"Links":[{"SourceID":97157,"TargetID":46191,"Directional":true}]},{"ID":18784,"SourceStructureID":97161,"TargetStructureID":5561,"Label":"97161-5561 via Conventional from 97164 -> 46175","Type":"Conventional","Directional":true,"Links":[{"SourceID":97164,"TargetID":46175,"Directional":true}]},{"ID":18785,"SourceStructureID":97175,"TargetStructureID":5279,"Label":"97175-5279 via Conventional from 97183 -> 49252","Type":"Conventional","Directional":true,"Links":[{"SourceID":97183,"TargetID":49252,"Directional":true}]},{"ID":18786,"SourceStructureID":97188,"TargetStructureID":5561,"Label":"97188-5561 via Conventional from 97189 -> 46171","Type":"Conventional","Directional":true,"Links":[{"SourceID":97189,"TargetID":46171,"Directional":true}]},{"ID":18787,"SourceStructureID":97194,"TargetStructureID":5561,"Label":"97194-5561 via Conventional from 97195 -> 46179","Type":"Conventional","Directional":true,"Links":[{"SourceID":97195,"TargetID":46179,"Directional":true}]},{"ID":18788,"SourceStructureID":97198,"TargetStructureID":5561,"Label":"97198-5561 via Conventional from 97199 -> 55345","Type":"Conventional","Directional":true,"Links":[{"SourceID":97199,"TargetID":55345,"Directional":true}]},{"ID":18789,"SourceStructureID":97209,"TargetStructureID":5561,"Label":"97209-5561 via Conventional from 97210 -> 97208","Type":"Conventional","Directional":true,"Links":[{"SourceID":97210,"TargetID":97208,"Directional":true}]},{"ID":18790,"SourceStructureID":97212,"TargetStructureID":5561,"Label":"97212-5561 via Conventional from 97213 -> 97211","Type":"Conventional","Directional":true,"Links":[{"SourceID":97213,"TargetID":97211,"Directional":true}]},{"ID":18791,"SourceStructureID":97221,"TargetStructureID":5561,"Label":"97221-5561 via Conventional from 97222 -> 46182","Type":"Conventional","Directional":true,"Links":[{"SourceID":97222,"TargetID":46182,"Directional":true}]},{"ID":18792,"SourceStructureID":97227,"TargetStructureID":5561,"Label":"97227-5561 via Conventional from 97230 -> 46183","Type":"Conventional","Directional":true,"Links":[{"SourceID":97230,"TargetID":46183,"Directional":true}]},{"ID":18793,"SourceStructureID":97228,"TargetStructureID":5279,"Label":"97228-5279 via Conventional from 97264 -> 6344","Type":"Conventional","Directional":true,"Links":[{"SourceID":97264,"TargetID":6344,"Directional":true}]},{"ID":18794,"SourceStructureID":97232,"TargetStructureID":5561,"Label":"97232-5561 via Conventional from 97259 -> 46184","Type":"Conventional","Directional":true,"Links":[{"SourceID":97259,"TargetID":46184,"Directional":true}]},{"ID":18795,"SourceStructureID":97233,"TargetStructureID":5279,"Label":"97233-5279 via Conventional from 97239 -> 6349","Type":"Conventional","Directional":true,"Links":[{"SourceID":97239,"TargetID":6349,"Directional":true}]},{"ID":18796,"SourceStructureID":97234,"TargetStructureID":5528,"Label":"97234-5528 via Conventional from 97235 -> 97238","Type":"Conventional","Directional":true,"Links":[{"SourceID":97235,"TargetID":97238,"Directional":true}]},{"ID":18797,"SourceStructureID":97240,"TargetStructureID":5279,"Label":"97240-5279 via Conventional from 97250 -> 6350","Type":"Conventional","Directional":true,"Links":[{"SourceID":97250,"TargetID":6350,"Directional":true}]},{"ID":18798,"SourceStructureID":97253,"TargetStructureID":5279,"Label":"97253-5279 via Conventional from 97256 -> 6348","Type":"Conventional","Directional":true,"Links":[{"SourceID":97256,"TargetID":6348,"Directional":true}]},{"ID":18799,"SourceStructureID":97265,"TargetStructureID":5528,"Label":"97265-5528 via Conventional from 97267 -> 97268","Type":"Conventional","Directional":true,"Links":[{"SourceID":97267,"TargetID":97268,"Directional":true}]},{"ID":18800,"SourceStructureID":97275,"TargetStructureID":5561,"Label":"97275-5561 via Conventional from 97276 -> 46161","Type":"Conventional","Directional":true,"Links":[{"SourceID":97276,"TargetID":46161,"Directional":true}]},{"ID":18801,"SourceStructureID":97278,"TargetStructureID":5561,"Label":"97278-5561 via Conventional from 97279 -> 46160","Type":"Conventional","Directional":true,"Links":[{"SourceID":97279,"TargetID":46160,"Directional":true}]},{"ID":18802,"SourceStructureID":97293,"TargetStructureID":5528,"Label":"97293-5528 via Conventional from 97306 -> 97307","Type":"Conventional","Directional":true,"Links":[{"SourceID":97306,"TargetID":97307,"Directional":true}]},{"ID":18803,"SourceStructureID":97295,"TargetStructureID":5561,"Label":"97295-5561 via Conventional from 97304 -> 49640","Type":"Conventional","Directional":true,"Links":[{"SourceID":97304,"TargetID":49640,"Directional":true}]},{"ID":18804,"SourceStructureID":97295,"TargetStructureID":97381,"Label":"97295-97381 via Conventional from 97380 -> 97382","Type":"Conventional","Directional":true,"Links":[{"SourceID":97380,"TargetID":97382,"Directional":true}]},{"ID":18805,"SourceStructureID":97299,"TargetStructureID":5279,"Label":"97299-5279 via Conventional from 97300 -> 6352, 97321 -> 6352","Type":"Conventional","Directional":true,"Links":[{"SourceID":97300,"TargetID":6352,"Directional":true},{"SourceID":97321,"TargetID":6352,"Directional":true}]},{"ID":18806,"SourceStructureID":97318,"TargetStructureID":5279,"Label":"97318-5279 via Conventional from 97326 -> 25814","Type":"Conventional","Directional":true,"Links":[{"SourceID":97326,"TargetID":25814,"Directional":true}]},{"ID":18807,"SourceStructureID":97322,"TargetStructureID":5279,"Label":"97322-5279 via Conventional from 97323 -> 25815","Type":"Conventional","Directional":true,"Links":[{"SourceID":97323,"TargetID":25815,"Directional":true}]},{"ID":18808,"SourceStructureID":97324,"TargetStructureID":5561,"Label":"97324-5561 via Conventional from 97325 -> 46201","Type":"Conventional","Directional":true,"Links":[{"SourceID":97325,"TargetID":46201,"Directional":true}]},{"ID":18809,"SourceStructureID":97343,"TargetStructureID":5561,"Label":"97343-5561 via Conventional from 97344 -> 46125","Type":"Conventional","Directional":true,"Links":[{"SourceID":97344,"TargetID":46125,"Directional":true}]},{"ID":18810,"SourceStructureID":97346,"TargetStructureID":5279,"Label":"97346-5279 via Conventional from 97349 -> 49264","Type":"Conventional","Directional":true,"Links":[{"SourceID":97349,"TargetID":49264,"Directional":true}]},{"ID":18811,"SourceStructureID":97352,"TargetStructureID":59362,"Label":"97352-59362 via Conventional from 122453 -> 122454","Type":"Conventional","Directional":true,"Links":[{"SourceID":122453,"TargetID":122454,"Directional":true}]},{"ID":18812,"SourceStructureID":97361,"TargetStructureID":5279,"Label":"97361-5279 via Conventional from 97362 -> 49256","Type":"Conventional","Directional":true,"Links":[{"SourceID":97362,"TargetID":49256,"Directional":true}]},{"ID":18813,"SourceStructureID":97370,"TargetStructureID":5279,"Label":"97370-5279 via Conventional from 97371 -> 49259","Type":"Conventional","Directional":true,"Links":[{"SourceID":97371,"TargetID":49259,"Directional":true}]},{"ID":18814,"SourceStructureID":97372,"TargetStructureID":5279,"Label":"97372-5279 via Conventional from 97373 -> 49260","Type":"Conventional","Directional":true,"Links":[{"SourceID":97373,"TargetID":49260,"Directional":true}]},{"ID":18815,"SourceStructureID":97386,"TargetStructureID":5279,"Label":"97386-5279 via Conventional from 97387 -> 97572","Type":"Conventional","Directional":true,"Links":[{"SourceID":97387,"TargetID":97572,"Directional":true}]},{"ID":18816,"SourceStructureID":97401,"TargetStructureID":5561,"Label":"97401-5561 via Conventional from 97403 -> 48871","Type":"Conventional","Directional":true,"Links":[{"SourceID":97403,"TargetID":48871,"Directional":true}]},{"ID":18817,"SourceStructureID":97401,"TargetStructureID":5565,"Label":"97401-5565 via Conventional from 97404 -> 53983","Type":"Conventional","Directional":true,"Links":[{"SourceID":97404,"TargetID":53983,"Directional":true}]},{"ID":18818,"SourceStructureID":97407,"TargetStructureID":5561,"Label":"97407-5561 via Conventional from 97408 -> 46203","Type":"Conventional","Directional":true,"Links":[{"SourceID":97408,"TargetID":46203,"Directional":true}]},{"ID":18819,"SourceStructureID":97417,"TargetStructureID":5561,"Label":"97417-5561 via Conventional from 97418 -> 46202","Type":"Conventional","Directional":true,"Links":[{"SourceID":97418,"TargetID":46202,"Directional":true}]},{"ID":18820,"SourceStructureID":97420,"TargetStructureID":5561,"Label":"97420-5561 via Conventional from 97422 -> 97423","Type":"Conventional","Directional":true,"Links":[{"SourceID":97422,"TargetID":97423,"Directional":true}]},{"ID":18821,"SourceStructureID":97420,"TargetStructureID":5565,"Label":"97420-5565 via Conventional from 97421 -> 53979","Type":"Conventional","Directional":true,"Links":[{"SourceID":97421,"TargetID":53979,"Directional":true}]},{"ID":18822,"SourceStructureID":97439,"TargetStructureID":5561,"Label":"97439-5561 via Conventional from 97440 -> 46206","Type":"Conventional","Directional":true,"Links":[{"SourceID":97440,"TargetID":46206,"Directional":true}]},{"ID":18823,"SourceStructureID":97448,"TargetStructureID":5561,"Label":"97448-5561 via Conventional from 97449 -> 46210","Type":"Conventional","Directional":true,"Links":[{"SourceID":97449,"TargetID":46210,"Directional":true}]},{"ID":18824,"SourceStructureID":97461,"TargetStructureID":5561,"Label":"97461-5561 via Conventional from 97462 -> 46209","Type":"Conventional","Directional":true,"Links":[{"SourceID":97462,"TargetID":46209,"Directional":true}]},{"ID":18825,"SourceStructureID":97464,"TargetStructureID":5561,"Label":"97464-5561 via Conventional from 97465 -> 46215","Type":"Conventional","Directional":true,"Links":[{"SourceID":97465,"TargetID":46215,"Directional":true}]},{"ID":18826,"SourceStructureID":97466,"TargetStructureID":5561,"Label":"97466-5561 via Conventional from 97468 -> 46216","Type":"Conventional","Directional":true,"Links":[{"SourceID":97468,"TargetID":46216,"Directional":true}]},{"ID":18827,"SourceStructureID":97475,"TargetStructureID":5561,"Label":"97475-5561 via Conventional from 97476 -> 148255, 97478 -> 97474","Type":"Conventional","Directional":true,"Links":[{"SourceID":97476,"TargetID":148255,"Directional":true},{"SourceID":97478,"TargetID":97474,"Directional":true}]},{"ID":18828,"SourceStructureID":97479,"TargetStructureID":5561,"Label":"97479-5561 via Conventional from 97480 -> 97473","Type":"Conventional","Directional":true,"Links":[{"SourceID":97480,"TargetID":97473,"Directional":true}]},{"ID":18829,"SourceStructureID":97479,"TargetStructureID":97475,"Label":"97479-97475 via Conventional from 97481 -> 97477","Type":"Conventional","Directional":true,"Links":[{"SourceID":97481,"TargetID":97477,"Directional":true}]},{"ID":18830,"SourceStructureID":97482,"TargetStructureID":5561,"Label":"97482-5561 via Conventional from 97483 -> 97471","Type":"Conventional","Directional":true,"Links":[{"SourceID":97483,"TargetID":97471,"Directional":true}]},{"ID":18831,"SourceStructureID":97484,"TargetStructureID":5279,"Label":"97484-5279 via Conventional from 97491 -> 97490","Type":"Conventional","Directional":true,"Links":[{"SourceID":97491,"TargetID":97490,"Directional":true}]},{"ID":18832,"SourceStructureID":97485,"TargetStructureID":5561,"Label":"97485-5561 via Conventional from 99342 -> 148253","Type":"Conventional","Directional":true,"Links":[{"SourceID":99342,"TargetID":148253,"Directional":true}]},{"ID":18833,"SourceStructureID":97492,"TargetStructureID":5561,"Label":"97492-5561 via Conventional from 97493 -> 97470","Type":"Conventional","Directional":true,"Links":[{"SourceID":97493,"TargetID":97470,"Directional":true}]},{"ID":18834,"SourceStructureID":97494,"TargetStructureID":5279,"Label":"97494-5279 via Conventional from 97511 -> 27446","Type":"Conventional","Directional":true,"Links":[{"SourceID":97511,"TargetID":27446,"Directional":true}]},{"ID":18835,"SourceStructureID":97498,"TargetStructureID":5561,"Label":"97498-5561 via Conventional from 97499 -> 46240","Type":"Conventional","Directional":true,"Links":[{"SourceID":97499,"TargetID":46240,"Directional":true}]},{"ID":18836,"SourceStructureID":97500,"TargetStructureID":97503,"Label":"97500-97503 via Conventional from 97501 -> 97504","Type":"Conventional","Directional":true,"Links":[{"SourceID":97501,"TargetID":97504,"Directional":true}]},{"ID":18837,"SourceStructureID":97507,"TargetStructureID":5561,"Label":"97507-5561 via Conventional from 97508 -> 46227","Type":"Conventional","Directional":true,"Links":[{"SourceID":97508,"TargetID":46227,"Directional":true}]},{"ID":18838,"SourceStructureID":97509,"TargetStructureID":5561,"Label":"97509-5561 via Conventional from 97510 -> 46229","Type":"Conventional","Directional":true,"Links":[{"SourceID":97510,"TargetID":46229,"Directional":true}]},{"ID":18839,"SourceStructureID":97522,"TargetStructureID":5279,"Label":"97522-5279 via Conventional from 97526 -> 97525","Type":"Conventional","Directional":true,"Links":[{"SourceID":97526,"TargetID":97525,"Directional":true}]},{"ID":18840,"SourceStructureID":97528,"TargetStructureID":5279,"Label":"97528-5279 via Conventional from 97529 -> 97530","Type":"Conventional","Directional":true,"Links":[{"SourceID":97529,"TargetID":97530,"Directional":true}]},{"ID":18841,"SourceStructureID":97532,"TargetStructureID":5279,"Label":"97532-5279 via Conventional from 97534 -> 97535","Type":"Conventional","Directional":true,"Links":[{"SourceID":97534,"TargetID":97535,"Directional":true}]},{"ID":18842,"SourceStructureID":97536,"TargetStructureID":5561,"Label":"97536-5561 via Conventional from 97539 -> 46245","Type":"Conventional","Directional":true,"Links":[{"SourceID":97539,"TargetID":46245,"Directional":true}]},{"ID":18843,"SourceStructureID":97543,"TargetStructureID":5561,"Label":"97543-5561 via Conventional from 97544 -> 46247","Type":"Conventional","Directional":true,"Links":[{"SourceID":97544,"TargetID":46247,"Directional":true}]},{"ID":18844,"SourceStructureID":97546,"TargetStructureID":5561,"Label":"97546-5561 via Conventional from 97547 -> 46248","Type":"Conventional","Directional":true,"Links":[{"SourceID":97547,"TargetID":46248,"Directional":true}]},{"ID":18845,"SourceStructureID":97554,"TargetStructureID":5561,"Label":"97554-5561 via Conventional from 97555 -> 46242","Type":"Conventional","Directional":true,"Links":[{"SourceID":97555,"TargetID":46242,"Directional":true}]},{"ID":18846,"SourceStructureID":97558,"TargetStructureID":5561,"Label":"97558-5561 via Conventional from 97565 -> 46250, 97567 -> 46254","Type":"Conventional","Directional":true,"Links":[{"SourceID":97565,"TargetID":46250,"Directional":true},{"SourceID":97567,"TargetID":46254,"Directional":true}]},{"ID":18847,"SourceStructureID":97568,"TargetStructureID":5499,"Label":"97568-5499 via Conventional from 106547 -> 49666","Type":"Conventional","Directional":true,"Links":[{"SourceID":106547,"TargetID":49666,"Directional":true}]},{"ID":18848,"SourceStructureID":97568,"TargetStructureID":5561,"Label":"97568-5561 via Conventional from 97569 -> 97570","Type":"Conventional","Directional":true,"Links":[{"SourceID":97569,"TargetID":97570,"Directional":true}]},{"ID":18849,"SourceStructureID":97568,"TargetStructureID":7024,"Label":"97568-7024 via Conventional from 106606 -> 106607","Type":"Conventional","Directional":true,"Links":[{"SourceID":106606,"TargetID":106607,"Directional":true}]},{"ID":18850,"SourceStructureID":97573,"TargetStructureID":97568,"Label":"97573-97568 via Conventional from 97574 -> 97571","Type":"Conventional","Directional":true,"Links":[{"SourceID":97574,"TargetID":97571,"Directional":true}]},{"ID":18851,"SourceStructureID":97575,"TargetStructureID":5561,"Label":"97575-5561 via Conventional from 97576 -> 46255","Type":"Conventional","Directional":true,"Links":[{"SourceID":97576,"TargetID":46255,"Directional":true}]},{"ID":18852,"SourceStructureID":97578,"TargetStructureID":5561,"Label":"97578-5561 via Conventional from 97581 -> 46256","Type":"Conventional","Directional":true,"Links":[{"SourceID":97581,"TargetID":46256,"Directional":true}]},{"ID":18853,"SourceStructureID":97582,"TargetStructureID":5561,"Label":"97582-5561 via Conventional from 97583 -> 46252","Type":"Conventional","Directional":true,"Links":[{"SourceID":97583,"TargetID":46252,"Directional":true}]},{"ID":18854,"SourceStructureID":97597,"TargetStructureID":5279,"Label":"97597-5279 via Conventional from 97598 -> 97599","Type":"Conventional","Directional":true,"Links":[{"SourceID":97598,"TargetID":97599,"Directional":true}]},{"ID":18855,"SourceStructureID":97605,"TargetStructureID":5279,"Label":"97605-5279 via Conventional from 97606 -> 97607","Type":"Conventional","Directional":true,"Links":[{"SourceID":97606,"TargetID":97607,"Directional":true}]},{"ID":18856,"SourceStructureID":97615,"TargetStructureID":5279,"Label":"97615-5279 via Conventional from 97616 -> 97617","Type":"Conventional","Directional":true,"Links":[{"SourceID":97616,"TargetID":97617,"Directional":true}]},{"ID":18857,"SourceStructureID":97620,"TargetStructureID":5279,"Label":"97620-5279 via Conventional from 97621 -> 97622","Type":"Conventional","Directional":true,"Links":[{"SourceID":97621,"TargetID":97622,"Directional":true}]},{"ID":18858,"SourceStructureID":97627,"TargetStructureID":5279,"Label":"97627-5279 via BC Conventional Synapse from 97628 -> 97629","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":97628,"TargetID":97629,"Directional":true}]},{"ID":18859,"SourceStructureID":97638,"TargetStructureID":5279,"Label":"97638-5279 via Conventional from 97643 -> 49202","Type":"Conventional","Directional":true,"Links":[{"SourceID":97643,"TargetID":49202,"Directional":true}]},{"ID":18860,"SourceStructureID":97646,"TargetStructureID":5279,"Label":"97646-5279 via Conventional from 97647 -> 49219","Type":"Conventional","Directional":true,"Links":[{"SourceID":97647,"TargetID":49219,"Directional":true}]},{"ID":18861,"SourceStructureID":97671,"TargetStructureID":5561,"Label":"97671-5561 via Conventional from 97672 -> 46044","Type":"Conventional","Directional":true,"Links":[{"SourceID":97672,"TargetID":46044,"Directional":true}]},{"ID":18862,"SourceStructureID":97676,"TargetStructureID":909,"Label":"97676-909 via Conventional from 130893 -> 45895","Type":"Conventional","Directional":true,"Links":[{"SourceID":130893,"TargetID":45895,"Directional":true}]},{"ID":18863,"SourceStructureID":97676,"TargetStructureID":5561,"Label":"97676-5561 via Conventional from 97677 -> 46045","Type":"Conventional","Directional":true,"Links":[{"SourceID":97677,"TargetID":46045,"Directional":true}]},{"ID":18864,"SourceStructureID":97680,"TargetStructureID":5561,"Label":"97680-5561 via Conventional from 97681 -> 46305","Type":"Conventional","Directional":true,"Links":[{"SourceID":97681,"TargetID":46305,"Directional":true}]},{"ID":18865,"SourceStructureID":97684,"TargetStructureID":5561,"Label":"97684-5561 via Conventional from 97685 -> 48982","Type":"Conventional","Directional":true,"Links":[{"SourceID":97685,"TargetID":48982,"Directional":true}]},{"ID":18866,"SourceStructureID":97691,"TargetStructureID":5561,"Label":"97691-5561 via Conventional from 97692 -> 46300","Type":"Conventional","Directional":true,"Links":[{"SourceID":97692,"TargetID":46300,"Directional":true}]},{"ID":18867,"SourceStructureID":97691,"TargetStructureID":20136,"Label":"97691-20136 via Conventional from 97693 -> 97694","Type":"Conventional","Directional":true,"Links":[{"SourceID":97693,"TargetID":97694,"Directional":true}]},{"ID":18868,"SourceStructureID":97722,"TargetStructureID":5561,"Label":"97722-5561 via Conventional from 97723 -> 97718","Type":"Conventional","Directional":true,"Links":[{"SourceID":97723,"TargetID":97718,"Directional":true}]},{"ID":18869,"SourceStructureID":97727,"TargetStructureID":5561,"Label":"97727-5561 via Conventional from 97728 -> 97721","Type":"Conventional","Directional":true,"Links":[{"SourceID":97728,"TargetID":97721,"Directional":true}]},{"ID":18870,"SourceStructureID":97730,"TargetStructureID":5561,"Label":"97730-5561 via Conventional from 97733 -> 97719","Type":"Conventional","Directional":true,"Links":[{"SourceID":97733,"TargetID":97719,"Directional":true}]},{"ID":18871,"SourceStructureID":97730,"TargetStructureID":61450,"Label":"97730-61450 via Conventional from 97739 -> 61491","Type":"Conventional","Directional":true,"Links":[{"SourceID":97739,"TargetID":61491,"Directional":true}]},{"ID":18872,"SourceStructureID":97743,"TargetStructureID":5561,"Label":"97743-5561 via Conventional from 97744 -> 97742","Type":"Conventional","Directional":true,"Links":[{"SourceID":97744,"TargetID":97742,"Directional":true}]},{"ID":18873,"SourceStructureID":97750,"TargetStructureID":5561,"Label":"97750-5561 via Conventional from 97751 -> 46297","Type":"Conventional","Directional":true,"Links":[{"SourceID":97751,"TargetID":46297,"Directional":true}]},{"ID":18874,"SourceStructureID":97764,"TargetStructureID":5561,"Label":"97764-5561 via Conventional from 97766 -> 97763","Type":"Conventional","Directional":true,"Links":[{"SourceID":97766,"TargetID":97763,"Directional":true}]},{"ID":18875,"SourceStructureID":97774,"TargetStructureID":4569,"Label":"97774-4569 via Conventional from 97775 -> 4746","Type":"Conventional","Directional":true,"Links":[{"SourceID":97775,"TargetID":4746,"Directional":true}]},{"ID":18876,"SourceStructureID":97780,"TargetStructureID":4569,"Label":"97780-4569 via Conventional from 97781 -> 14966","Type":"Conventional","Directional":true,"Links":[{"SourceID":97781,"TargetID":14966,"Directional":true}]},{"ID":18877,"SourceStructureID":97786,"TargetStructureID":4569,"Label":"97786-4569 via Conventional from 97787 -> 4740","Type":"Conventional","Directional":true,"Links":[{"SourceID":97787,"TargetID":4740,"Directional":true}]},{"ID":18878,"SourceStructureID":97790,"TargetStructureID":4569,"Label":"97790-4569 via Conventional from 97791 -> 4743","Type":"Conventional","Directional":true,"Links":[{"SourceID":97791,"TargetID":4743,"Directional":true}]},{"ID":18879,"SourceStructureID":97792,"TargetStructureID":4569,"Label":"97792-4569 via Conventional from 97793 -> 52452","Type":"Conventional","Directional":true,"Links":[{"SourceID":97793,"TargetID":52452,"Directional":true}]},{"ID":18880,"SourceStructureID":97797,"TargetStructureID":4569,"Label":"97797-4569 via Conventional from 97799 -> 52457","Type":"Conventional","Directional":true,"Links":[{"SourceID":97799,"TargetID":52457,"Directional":true}]},{"ID":18881,"SourceStructureID":97803,"TargetStructureID":4569,"Label":"97803-4569 via Conventional from 97804 -> 52463","Type":"Conventional","Directional":true,"Links":[{"SourceID":97804,"TargetID":52463,"Directional":true}]},{"ID":18882,"SourceStructureID":97814,"TargetStructureID":4569,"Label":"97814-4569 via Conventional from 97815 -> 52466","Type":"Conventional","Directional":true,"Links":[{"SourceID":97815,"TargetID":52466,"Directional":true}]},{"ID":18883,"SourceStructureID":97853,"TargetStructureID":5278,"Label":"97853-5278 via Conventional from 97857 -> 20023","Type":"Conventional","Directional":true,"Links":[{"SourceID":97857,"TargetID":20023,"Directional":true}]},{"ID":18884,"SourceStructureID":97858,"TargetStructureID":4569,"Label":"97858-4569 via Conventional from 97859 -> 97860, 97863 -> 4739","Type":"Conventional","Directional":true,"Links":[{"SourceID":97859,"TargetID":97860,"Directional":true},{"SourceID":97863,"TargetID":4739,"Directional":true}]},{"ID":18885,"SourceStructureID":97913,"TargetStructureID":5278,"Label":"97913-5278 via Conventional from 97919 -> 20016","Type":"Conventional","Directional":true,"Links":[{"SourceID":97919,"TargetID":20016,"Directional":true}]},{"ID":18886,"SourceStructureID":97928,"TargetStructureID":5278,"Label":"97928-5278 via Conventional from 97929 -> 11220","Type":"Conventional","Directional":true,"Links":[{"SourceID":97929,"TargetID":11220,"Directional":true}]},{"ID":18887,"SourceStructureID":97933,"TargetStructureID":5278,"Label":"97933-5278 via Conventional from 97943 -> 11219","Type":"Conventional","Directional":true,"Links":[{"SourceID":97943,"TargetID":11219,"Directional":true}]},{"ID":18888,"SourceStructureID":97938,"TargetStructureID":5278,"Label":"97938-5278 via Conventional from 97939 -> 97940","Type":"Conventional","Directional":true,"Links":[{"SourceID":97939,"TargetID":97940,"Directional":true}]},{"ID":18889,"SourceStructureID":97951,"TargetStructureID":5278,"Label":"97951-5278 via Conventional from 97954 -> 97955","Type":"Conventional","Directional":true,"Links":[{"SourceID":97954,"TargetID":97955,"Directional":true}]},{"ID":18890,"SourceStructureID":97956,"TargetStructureID":5278,"Label":"97956-5278 via Conventional from 98809 -> 11228","Type":"Conventional","Directional":true,"Links":[{"SourceID":98809,"TargetID":11228,"Directional":true}]},{"ID":18891,"SourceStructureID":98016,"TargetStructureID":5279,"Label":"98016-5279 via Conventional from 98018 -> 25820","Type":"Conventional","Directional":true,"Links":[{"SourceID":98018,"TargetID":25820,"Directional":true}]},{"ID":18892,"SourceStructureID":98035,"TargetStructureID":5279,"Label":"98035-5279 via Conventional from 98036 -> 25824","Type":"Conventional","Directional":true,"Links":[{"SourceID":98036,"TargetID":25824,"Directional":true}]},{"ID":18893,"SourceStructureID":98064,"TargetStructureID":5279,"Label":"98064-5279 via Conventional from 98067 -> 25827","Type":"Conventional","Directional":true,"Links":[{"SourceID":98067,"TargetID":25827,"Directional":true}]},{"ID":18894,"SourceStructureID":98068,"TargetStructureID":5279,"Label":"98068-5279 via Conventional from 98070 -> 11480","Type":"Conventional","Directional":true,"Links":[{"SourceID":98070,"TargetID":11480,"Directional":true}]},{"ID":18895,"SourceStructureID":98100,"TargetStructureID":5279,"Label":"98100-5279 via Conventional from 98104 -> 11478","Type":"Conventional","Directional":true,"Links":[{"SourceID":98104,"TargetID":11478,"Directional":true}]},{"ID":18896,"SourceStructureID":98122,"TargetStructureID":5279,"Label":"98122-5279 via Conventional from 98504 -> 11477","Type":"Conventional","Directional":true,"Links":[{"SourceID":98504,"TargetID":11477,"Directional":true}]},{"ID":18897,"SourceStructureID":98127,"TargetStructureID":10957,"Label":"98127-10957 via Conventional from 98885 -> 98886, 98887 -> 98888, 98889 -> 98890","Type":"Conventional","Directional":true,"Links":[{"SourceID":98885,"TargetID":98886,"Directional":true},{"SourceID":98887,"TargetID":98888,"Directional":true},{"SourceID":98889,"TargetID":98890,"Directional":true}]},{"ID":18898,"SourceStructureID":98147,"TargetStructureID":4569,"Label":"98147-4569 via Conventional from 98149 -> 23790","Type":"Conventional","Directional":true,"Links":[{"SourceID":98149,"TargetID":23790,"Directional":true}]},{"ID":18899,"SourceStructureID":98151,"TargetStructureID":4569,"Label":"98151-4569 via Conventional from 98152 -> 23789","Type":"Conventional","Directional":true,"Links":[{"SourceID":98152,"TargetID":23789,"Directional":true}]},{"ID":18900,"SourceStructureID":98163,"TargetStructureID":1620,"Label":"98163-1620 via Conventional from 98166 -> 16848","Type":"Conventional","Directional":true,"Links":[{"SourceID":98166,"TargetID":16848,"Directional":true}]},{"ID":18901,"SourceStructureID":98171,"TargetStructureID":4569,"Label":"98171-4569 via Conventional from 98172 -> 23785","Type":"Conventional","Directional":true,"Links":[{"SourceID":98172,"TargetID":23785,"Directional":true}]},{"ID":18902,"SourceStructureID":98180,"TargetStructureID":4569,"Label":"98180-4569 via Conventional from 98181 -> 47441","Type":"Conventional","Directional":true,"Links":[{"SourceID":98181,"TargetID":47441,"Directional":true}]},{"ID":18903,"SourceStructureID":98186,"TargetStructureID":4569,"Label":"98186-4569 via Conventional from 98187 -> 23799","Type":"Conventional","Directional":true,"Links":[{"SourceID":98187,"TargetID":23799,"Directional":true}]},{"ID":18904,"SourceStructureID":98188,"TargetStructureID":4569,"Label":"98188-4569 via Conventional from 98189 -> 47487","Type":"Conventional","Directional":true,"Links":[{"SourceID":98189,"TargetID":47487,"Directional":true}]},{"ID":18905,"SourceStructureID":98190,"TargetStructureID":4569,"Label":"98190-4569 via Conventional from 98191 -> 23800","Type":"Conventional","Directional":true,"Links":[{"SourceID":98191,"TargetID":23800,"Directional":true}]},{"ID":18906,"SourceStructureID":98193,"TargetStructureID":4569,"Label":"98193-4569 via Conventional from 98194 -> 23803","Type":"Conventional","Directional":true,"Links":[{"SourceID":98194,"TargetID":23803,"Directional":true}]},{"ID":18907,"SourceStructureID":98203,"TargetStructureID":4569,"Label":"98203-4569 via Conventional from 98204 -> 23801","Type":"Conventional","Directional":true,"Links":[{"SourceID":98204,"TargetID":23801,"Directional":true}]},{"ID":18908,"SourceStructureID":98216,"TargetStructureID":4569,"Label":"98216-4569 via Conventional from 98218 -> 23806","Type":"Conventional","Directional":true,"Links":[{"SourceID":98218,"TargetID":23806,"Directional":true}]},{"ID":18909,"SourceStructureID":98235,"TargetStructureID":4569,"Label":"98235-4569 via Conventional from 98236 -> 23791","Type":"Conventional","Directional":true,"Links":[{"SourceID":98236,"TargetID":23791,"Directional":true}]},{"ID":18910,"SourceStructureID":98238,"TargetStructureID":4569,"Label":"98238-4569 via Conventional from 98239 -> 98237","Type":"Conventional","Directional":true,"Links":[{"SourceID":98239,"TargetID":98237,"Directional":true}]},{"ID":18911,"SourceStructureID":98251,"TargetStructureID":4569,"Label":"98251-4569 via Conventional from 98252 -> 23793","Type":"Conventional","Directional":true,"Links":[{"SourceID":98252,"TargetID":23793,"Directional":true}]},{"ID":18912,"SourceStructureID":98258,"TargetStructureID":4569,"Label":"98258-4569 via Conventional from 98260 -> 47415","Type":"Conventional","Directional":true,"Links":[{"SourceID":98260,"TargetID":47415,"Directional":true}]},{"ID":18913,"SourceStructureID":98270,"TargetStructureID":4569,"Label":"98270-4569 via Conventional from 98273 -> 52483","Type":"Conventional","Directional":true,"Links":[{"SourceID":98273,"TargetID":52483,"Directional":true}]},{"ID":18914,"SourceStructureID":98278,"TargetStructureID":4569,"Label":"98278-4569 via Conventional from 98281 -> 47433","Type":"Conventional","Directional":true,"Links":[{"SourceID":98281,"TargetID":47433,"Directional":true}]},{"ID":18915,"SourceStructureID":98279,"TargetStructureID":4569,"Label":"98279-4569 via Conventional from 98280 -> 47434","Type":"Conventional","Directional":true,"Links":[{"SourceID":98280,"TargetID":47434,"Directional":true}]},{"ID":18916,"SourceStructureID":98289,"TargetStructureID":4569,"Label":"98289-4569 via Conventional from 98295 -> 47437","Type":"Conventional","Directional":true,"Links":[{"SourceID":98295,"TargetID":47437,"Directional":true}]},{"ID":18917,"SourceStructureID":98297,"TargetStructureID":4569,"Label":"98297-4569 via Conventional from 98298 -> 47438","Type":"Conventional","Directional":true,"Links":[{"SourceID":98298,"TargetID":47438,"Directional":true}]},{"ID":18918,"SourceStructureID":98329,"TargetStructureID":4569,"Label":"98329-4569 via Conventional from 98330 -> 4748","Type":"Conventional","Directional":true,"Links":[{"SourceID":98330,"TargetID":4748,"Directional":true}]},{"ID":18919,"SourceStructureID":98337,"TargetStructureID":4569,"Label":"98337-4569 via Conventional from 98338 -> 30815","Type":"Conventional","Directional":true,"Links":[{"SourceID":98338,"TargetID":30815,"Directional":true}]},{"ID":18920,"SourceStructureID":98339,"TargetStructureID":4569,"Label":"98339-4569 via Conventional from 98340 -> 98341","Type":"Conventional","Directional":true,"Links":[{"SourceID":98340,"TargetID":98341,"Directional":true}]},{"ID":18921,"SourceStructureID":98345,"TargetStructureID":4569,"Label":"98345-4569 via Conventional from 98346 -> 47490","Type":"Conventional","Directional":true,"Links":[{"SourceID":98346,"TargetID":47490,"Directional":true}]},{"ID":18922,"SourceStructureID":98348,"TargetStructureID":4569,"Label":"98348-4569 via Conventional from 98349 -> 15993","Type":"Conventional","Directional":true,"Links":[{"SourceID":98349,"TargetID":15993,"Directional":true}]},{"ID":18923,"SourceStructureID":98350,"TargetStructureID":4569,"Label":"98350-4569 via Conventional from 98351 -> 47491","Type":"Conventional","Directional":true,"Links":[{"SourceID":98351,"TargetID":47491,"Directional":true}]},{"ID":18924,"SourceStructureID":98359,"TargetStructureID":4569,"Label":"98359-4569 via Conventional from 98360 -> 52506","Type":"Conventional","Directional":true,"Links":[{"SourceID":98360,"TargetID":52506,"Directional":true}]},{"ID":18925,"SourceStructureID":98363,"TargetStructureID":4569,"Label":"98363-4569 via Conventional from 98364 -> 30824","Type":"Conventional","Directional":true,"Links":[{"SourceID":98364,"TargetID":30824,"Directional":true}]},{"ID":18926,"SourceStructureID":98365,"TargetStructureID":4569,"Label":"98365-4569 via Conventional from 98366 -> 30823","Type":"Conventional","Directional":true,"Links":[{"SourceID":98366,"TargetID":30823,"Directional":true}]},{"ID":18927,"SourceStructureID":98372,"TargetStructureID":4569,"Label":"98372-4569 via Conventional from 98374 -> 30825","Type":"Conventional","Directional":true,"Links":[{"SourceID":98374,"TargetID":30825,"Directional":true}]},{"ID":18928,"SourceStructureID":98395,"TargetStructureID":4569,"Label":"98395-4569 via Conventional from 98396 -> 30826","Type":"Conventional","Directional":true,"Links":[{"SourceID":98396,"TargetID":30826,"Directional":true}]},{"ID":18929,"SourceStructureID":98409,"TargetStructureID":4569,"Label":"98409-4569 via Conventional from 98410 -> 30829","Type":"Conventional","Directional":true,"Links":[{"SourceID":98410,"TargetID":30829,"Directional":true}]},{"ID":18930,"SourceStructureID":98411,"TargetStructureID":4569,"Label":"98411-4569 via Conventional from 98412 -> 47494","Type":"Conventional","Directional":true,"Links":[{"SourceID":98412,"TargetID":47494,"Directional":true}]},{"ID":18931,"SourceStructureID":98413,"TargetStructureID":142,"Label":"98413-142 via Conventional from 98414 -> 98416","Type":"Conventional","Directional":true,"Links":[{"SourceID":98414,"TargetID":98416,"Directional":true}]},{"ID":18932,"SourceStructureID":98418,"TargetStructureID":4569,"Label":"98418-4569 via Conventional from 98419 -> 30831","Type":"Conventional","Directional":true,"Links":[{"SourceID":98419,"TargetID":30831,"Directional":true}]},{"ID":18933,"SourceStructureID":98434,"TargetStructureID":4569,"Label":"98434-4569 via Conventional from 98435 -> 98433","Type":"Conventional","Directional":true,"Links":[{"SourceID":98435,"TargetID":98433,"Directional":true}]},{"ID":18934,"SourceStructureID":98438,"TargetStructureID":4569,"Label":"98438-4569 via Conventional from 98439 -> 98440","Type":"Conventional","Directional":true,"Links":[{"SourceID":98439,"TargetID":98440,"Directional":true}]},{"ID":18935,"SourceStructureID":98444,"TargetStructureID":4569,"Label":"98444-4569 via Conventional from 98445 -> 92753","Type":"Conventional","Directional":true,"Links":[{"SourceID":98445,"TargetID":92753,"Directional":true}]},{"ID":18936,"SourceStructureID":98459,"TargetStructureID":168,"Label":"98459-168 via Conventional from 119055 -> 119054","Type":"Conventional","Directional":true,"Links":[{"SourceID":119055,"TargetID":119054,"Directional":true}]},{"ID":18937,"SourceStructureID":98459,"TargetStructureID":4569,"Label":"98459-4569 via Conventional from 98460 -> 98457","Type":"Conventional","Directional":true,"Links":[{"SourceID":98460,"TargetID":98457,"Directional":true}]},{"ID":18938,"SourceStructureID":98465,"TargetStructureID":4569,"Label":"98465-4569 via Conventional from 98466 -> 52507","Type":"Conventional","Directional":true,"Links":[{"SourceID":98466,"TargetID":52507,"Directional":true}]},{"ID":18939,"SourceStructureID":98478,"TargetStructureID":4569,"Label":"98478-4569 via Conventional from 98479 -> 30834","Type":"Conventional","Directional":true,"Links":[{"SourceID":98479,"TargetID":30834,"Directional":true}]},{"ID":18940,"SourceStructureID":98484,"TargetStructureID":4569,"Label":"98484-4569 via Conventional from 98485 -> 65200","Type":"Conventional","Directional":true,"Links":[{"SourceID":98485,"TargetID":65200,"Directional":true}]},{"ID":18941,"SourceStructureID":98486,"TargetStructureID":4569,"Label":"98486-4569 via Conventional from 98487 -> 98488","Type":"Conventional","Directional":true,"Links":[{"SourceID":98487,"TargetID":98488,"Directional":true}]},{"ID":18942,"SourceStructureID":98511,"TargetStructureID":4569,"Label":"98511-4569 via Conventional from 98512 -> 98510","Type":"Conventional","Directional":true,"Links":[{"SourceID":98512,"TargetID":98510,"Directional":true}]},{"ID":18943,"SourceStructureID":98524,"TargetStructureID":5279,"Label":"98524-5279 via Conventional from 98532 -> 49208","Type":"Conventional","Directional":true,"Links":[{"SourceID":98532,"TargetID":49208,"Directional":true}]},{"ID":18944,"SourceStructureID":98530,"TargetStructureID":4569,"Label":"98530-4569 via Conventional from 98531 -> 98529","Type":"Conventional","Directional":true,"Links":[{"SourceID":98531,"TargetID":98529,"Directional":true}]},{"ID":18945,"SourceStructureID":98535,"TargetStructureID":4569,"Label":"98535-4569 via Conventional from 98540 -> 98533","Type":"Conventional","Directional":true,"Links":[{"SourceID":98540,"TargetID":98533,"Directional":true}]},{"ID":18946,"SourceStructureID":98535,"TargetStructureID":5118,"Label":"98535-5118 via Conventional from 98541 -> 6520","Type":"Conventional","Directional":true,"Links":[{"SourceID":98541,"TargetID":6520,"Directional":true}]},{"ID":18947,"SourceStructureID":98537,"TargetStructureID":5279,"Label":"98537-5279 via Conventional from 98542 -> 49205","Type":"Conventional","Directional":true,"Links":[{"SourceID":98542,"TargetID":49205,"Directional":true}]},{"ID":18948,"SourceStructureID":98550,"TargetStructureID":4569,"Label":"98550-4569 via Conventional from 98551 -> 47497","Type":"Conventional","Directional":true,"Links":[{"SourceID":98551,"TargetID":47497,"Directional":true}]},{"ID":18949,"SourceStructureID":98555,"TargetStructureID":4569,"Label":"98555-4569 via Conventional from 98557 -> 98554","Type":"Conventional","Directional":true,"Links":[{"SourceID":98557,"TargetID":98554,"Directional":true}]},{"ID":18950,"SourceStructureID":98559,"TargetStructureID":4569,"Label":"98559-4569 via Conventional from 98561 -> 47498","Type":"Conventional","Directional":true,"Links":[{"SourceID":98561,"TargetID":47498,"Directional":true}]},{"ID":18951,"SourceStructureID":98565,"TargetStructureID":5279,"Label":"98565-5279 via Conventional from 98567 -> 98566","Type":"Conventional","Directional":true,"Links":[{"SourceID":98567,"TargetID":98566,"Directional":true}]},{"ID":18952,"SourceStructureID":98574,"TargetStructureID":4569,"Label":"98574-4569 via Conventional from 98575 -> 47503","Type":"Conventional","Directional":true,"Links":[{"SourceID":98575,"TargetID":47503,"Directional":true}]},{"ID":18953,"SourceStructureID":98584,"TargetStructureID":5279,"Label":"98584-5279 via Conventional from 98588 -> 25844","Type":"Conventional","Directional":true,"Links":[{"SourceID":98588,"TargetID":25844,"Directional":true}]},{"ID":18954,"SourceStructureID":98585,"TargetStructureID":4569,"Label":"98585-4569 via Conventional from 98596 -> 47502","Type":"Conventional","Directional":true,"Links":[{"SourceID":98596,"TargetID":47502,"Directional":true}]},{"ID":18955,"SourceStructureID":98590,"TargetStructureID":13525,"Label":"98590-13525 via Conventional from 98591 -> 84663","Type":"Conventional","Directional":true,"Links":[{"SourceID":98591,"TargetID":84663,"Directional":true}]},{"ID":18956,"SourceStructureID":98595,"TargetStructureID":5279,"Label":"98595-5279 via Conventional from 98598 -> 25843","Type":"Conventional","Directional":true,"Links":[{"SourceID":98598,"TargetID":25843,"Directional":true}]},{"ID":18957,"SourceStructureID":98599,"TargetStructureID":1724,"Label":"98599-1724 via Conventional from 100287 -> 47400","Type":"Conventional","Directional":true,"Links":[{"SourceID":100287,"TargetID":47400,"Directional":true}]},{"ID":18958,"SourceStructureID":98604,"TargetStructureID":4569,"Label":"98604-4569 via Conventional from 98615 -> 47499","Type":"Conventional","Directional":true,"Links":[{"SourceID":98615,"TargetID":47499,"Directional":true}]},{"ID":18959,"SourceStructureID":98611,"TargetStructureID":4569,"Label":"98611-4569 via Conventional from 98613 -> 47500","Type":"Conventional","Directional":true,"Links":[{"SourceID":98613,"TargetID":47500,"Directional":true}]},{"ID":18960,"SourceStructureID":98618,"TargetStructureID":4569,"Label":"98618-4569 via Conventional from 98620 -> 47505","Type":"Conventional","Directional":true,"Links":[{"SourceID":98620,"TargetID":47505,"Directional":true}]},{"ID":18961,"SourceStructureID":98622,"TargetStructureID":5279,"Label":"98622-5279 via Conventional from 98623 -> 25988","Type":"Conventional","Directional":true,"Links":[{"SourceID":98623,"TargetID":25988,"Directional":true}]},{"ID":18962,"SourceStructureID":98624,"TargetStructureID":5279,"Label":"98624-5279 via Conventional from 98625 -> 98626","Type":"Conventional","Directional":true,"Links":[{"SourceID":98625,"TargetID":98626,"Directional":true}]},{"ID":18963,"SourceStructureID":98632,"TargetStructureID":1724,"Label":"98632-1724 via Conventional from 100293 -> 100294","Type":"Conventional","Directional":true,"Links":[{"SourceID":100293,"TargetID":100294,"Directional":true}]},{"ID":18964,"SourceStructureID":98636,"TargetStructureID":5279,"Label":"98636-5279 via Conventional from 98637 -> 25849","Type":"Conventional","Directional":true,"Links":[{"SourceID":98637,"TargetID":25849,"Directional":true}]},{"ID":18965,"SourceStructureID":98641,"TargetStructureID":30477,"Label":"98641-30477 via Conventional from 98642 -> 30485","Type":"Conventional","Directional":true,"Links":[{"SourceID":98642,"TargetID":30485,"Directional":true}]},{"ID":18966,"SourceStructureID":98650,"TargetStructureID":4569,"Label":"98650-4569 via Conventional from 98651 -> 98649","Type":"Conventional","Directional":true,"Links":[{"SourceID":98651,"TargetID":98649,"Directional":true}]},{"ID":18967,"SourceStructureID":98655,"TargetStructureID":4569,"Label":"98655-4569 via Conventional from 98656 -> 98654","Type":"Conventional","Directional":true,"Links":[{"SourceID":98656,"TargetID":98654,"Directional":true}]},{"ID":18968,"SourceStructureID":98660,"TargetStructureID":5279,"Label":"98660-5279 via Conventional from 98662 -> 25847","Type":"Conventional","Directional":true,"Links":[{"SourceID":98662,"TargetID":25847,"Directional":true}]},{"ID":18969,"SourceStructureID":98674,"TargetStructureID":4569,"Label":"98674-4569 via Conventional from 98677 -> 98669","Type":"Conventional","Directional":true,"Links":[{"SourceID":98677,"TargetID":98669,"Directional":true}]},{"ID":18970,"SourceStructureID":98676,"TargetStructureID":5279,"Label":"98676-5279 via Conventional from 98702 -> 25993","Type":"Conventional","Directional":true,"Links":[{"SourceID":98702,"TargetID":25993,"Directional":true}]},{"ID":18971,"SourceStructureID":98683,"TargetStructureID":4569,"Label":"98683-4569 via Conventional from 98686 -> 98681","Type":"Conventional","Directional":true,"Links":[{"SourceID":98686,"TargetID":98681,"Directional":true}]},{"ID":18972,"SourceStructureID":98694,"TargetStructureID":4569,"Label":"98694-4569 via Conventional from 98695 -> 98696","Type":"Conventional","Directional":true,"Links":[{"SourceID":98695,"TargetID":98696,"Directional":true}]},{"ID":18973,"SourceStructureID":98703,"TargetStructureID":5645,"Label":"98703-5645 via Adherens from 98711 -> 98712","Type":"Adherens","Directional":true,"Links":[{"SourceID":98711,"TargetID":98712,"Directional":true}]},{"ID":18974,"SourceStructureID":98703,"TargetStructureID":5645,"Label":"98703-5645 via Conventional from 98704 -> 98705","Type":"Conventional","Directional":true,"Links":[{"SourceID":98704,"TargetID":98705,"Directional":true}]},{"ID":18975,"SourceStructureID":98707,"TargetStructureID":98703,"Label":"98707-98703 via Conventional from 98708 -> 98709","Type":"Conventional","Directional":true,"Links":[{"SourceID":98708,"TargetID":98709,"Directional":true}]},{"ID":18976,"SourceStructureID":98720,"TargetStructureID":5279,"Label":"98720-5279 via Conventional from 98721 -> 25996","Type":"Conventional","Directional":true,"Links":[{"SourceID":98721,"TargetID":25996,"Directional":true}]},{"ID":18977,"SourceStructureID":98722,"TargetStructureID":5279,"Label":"98722-5279 via Conventional from 98723 -> 25995","Type":"Conventional","Directional":true,"Links":[{"SourceID":98723,"TargetID":25995,"Directional":true}]},{"ID":18978,"SourceStructureID":98725,"TargetStructureID":4569,"Label":"98725-4569 via Conventional from 98726 -> 98724","Type":"Conventional","Directional":true,"Links":[{"SourceID":98726,"TargetID":98724,"Directional":true}]},{"ID":18979,"SourceStructureID":98735,"TargetStructureID":4569,"Label":"98735-4569 via Conventional from 98736 -> 47509","Type":"Conventional","Directional":true,"Links":[{"SourceID":98736,"TargetID":47509,"Directional":true}]},{"ID":18980,"SourceStructureID":98740,"TargetStructureID":364,"Label":"98740-364 via Conventional from 98742 -> 14069","Type":"Conventional","Directional":true,"Links":[{"SourceID":98742,"TargetID":14069,"Directional":true}]},{"ID":18981,"SourceStructureID":98749,"TargetStructureID":4569,"Label":"98749-4569 via Conventional from 98750 -> 47513","Type":"Conventional","Directional":true,"Links":[{"SourceID":98750,"TargetID":47513,"Directional":true}]},{"ID":18982,"SourceStructureID":98751,"TargetStructureID":431,"Label":"98751-431 via Conventional from 98753 -> 119072","Type":"Conventional","Directional":true,"Links":[{"SourceID":98753,"TargetID":119072,"Directional":true}]},{"ID":18983,"SourceStructureID":98756,"TargetStructureID":431,"Label":"98756-431 via Conventional from 98757 -> 119068","Type":"Conventional","Directional":true,"Links":[{"SourceID":98757,"TargetID":119068,"Directional":true}]},{"ID":18984,"SourceStructureID":98758,"TargetStructureID":431,"Label":"98758-431 via Conventional from 98760 -> 119066","Type":"Conventional","Directional":true,"Links":[{"SourceID":98760,"TargetID":119066,"Directional":true}]},{"ID":18985,"SourceStructureID":98759,"TargetStructureID":431,"Label":"98759-431 via Conventional from 98761 -> 119067","Type":"Conventional","Directional":true,"Links":[{"SourceID":98761,"TargetID":119067,"Directional":true}]},{"ID":18986,"SourceStructureID":98762,"TargetStructureID":1724,"Label":"98762-1724 via Conventional from 98764 -> 47386","Type":"Conventional","Directional":true,"Links":[{"SourceID":98764,"TargetID":47386,"Directional":true}]},{"ID":18987,"SourceStructureID":98770,"TargetStructureID":431,"Label":"98770-431 via Conventional from 98771 -> 119064","Type":"Conventional","Directional":true,"Links":[{"SourceID":98771,"TargetID":119064,"Directional":true}]},{"ID":18988,"SourceStructureID":98786,"TargetStructureID":431,"Label":"98786-431 via Conventional from 98787 -> 98785","Type":"Conventional","Directional":true,"Links":[{"SourceID":98787,"TargetID":98785,"Directional":true}]},{"ID":18989,"SourceStructureID":98800,"TargetStructureID":4569,"Label":"98800-4569 via Conventional from 98801 -> 30863","Type":"Conventional","Directional":true,"Links":[{"SourceID":98801,"TargetID":30863,"Directional":true}]},{"ID":18990,"SourceStructureID":98823,"TargetStructureID":1637,"Label":"98823-1637 via Conventional from 98824 -> 4076","Type":"Conventional","Directional":true,"Links":[{"SourceID":98824,"TargetID":4076,"Directional":true}]},{"ID":18991,"SourceStructureID":98823,"TargetStructureID":5278,"Label":"98823-5278 via Conventional from 98826 -> 20034","Type":"Conventional","Directional":true,"Links":[{"SourceID":98826,"TargetID":20034,"Directional":true}]},{"ID":18992,"SourceStructureID":98833,"TargetStructureID":5278,"Label":"98833-5278 via Conventional from 98834 -> 20043, 98835 -> 98832","Type":"Conventional","Directional":true,"Links":[{"SourceID":98834,"TargetID":20043,"Directional":true},{"SourceID":98835,"TargetID":98832,"Directional":true}]},{"ID":18993,"SourceStructureID":98836,"TargetStructureID":4569,"Label":"98836-4569 via Conventional from 98837 -> 47518","Type":"Conventional","Directional":true,"Links":[{"SourceID":98837,"TargetID":47518,"Directional":true}]},{"ID":18994,"SourceStructureID":98838,"TargetStructureID":4569,"Label":"98838-4569 via Unknown from 98841 -> 47519","Type":"Unknown","Directional":true,"Links":[{"SourceID":98841,"TargetID":47519,"Directional":true}]},{"ID":18995,"SourceStructureID":98843,"TargetStructureID":4569,"Label":"98843-4569 via Conventional from 98844 -> 98842","Type":"Conventional","Directional":true,"Links":[{"SourceID":98844,"TargetID":98842,"Directional":true}]},{"ID":18996,"SourceStructureID":98849,"TargetStructureID":13525,"Label":"98849-13525 via Conventional from 98863 -> 13529","Type":"Conventional","Directional":true,"Links":[{"SourceID":98863,"TargetID":13529,"Directional":true}]},{"ID":18997,"SourceStructureID":98850,"TargetStructureID":4569,"Label":"98850-4569 via Conventional from 98851 -> 52512","Type":"Conventional","Directional":true,"Links":[{"SourceID":98851,"TargetID":52512,"Directional":true}]},{"ID":18998,"SourceStructureID":98858,"TargetStructureID":4569,"Label":"98858-4569 via Conventional from 98859 -> 52514","Type":"Conventional","Directional":true,"Links":[{"SourceID":98859,"TargetID":52514,"Directional":true}]},{"ID":18999,"SourceStructureID":98864,"TargetStructureID":4569,"Label":"98864-4569 via Conventional from 98865 -> 47540","Type":"Conventional","Directional":true,"Links":[{"SourceID":98865,"TargetID":47540,"Directional":true}]},{"ID":19000,"SourceStructureID":98869,"TargetStructureID":4569,"Label":"98869-4569 via Conventional from 98871 -> 47541","Type":"Conventional","Directional":true,"Links":[{"SourceID":98871,"TargetID":47541,"Directional":true}]},{"ID":19001,"SourceStructureID":98872,"TargetStructureID":4569,"Label":"98872-4569 via Conventional from 98873 -> 30843","Type":"Conventional","Directional":true,"Links":[{"SourceID":98873,"TargetID":30843,"Directional":true}]},{"ID":19002,"SourceStructureID":98891,"TargetStructureID":4569,"Label":"98891-4569 via Conventional from 98893 -> 30849","Type":"Conventional","Directional":true,"Links":[{"SourceID":98893,"TargetID":30849,"Directional":true}]},{"ID":19003,"SourceStructureID":98894,"TargetStructureID":4569,"Label":"98894-4569 via Conventional from 98895 -> 30848","Type":"Conventional","Directional":true,"Links":[{"SourceID":98895,"TargetID":30848,"Directional":true}]},{"ID":19004,"SourceStructureID":98908,"TargetStructureID":4569,"Label":"98908-4569 via Conventional from 98909 -> 30846","Type":"Conventional","Directional":true,"Links":[{"SourceID":98909,"TargetID":30846,"Directional":true}]},{"ID":19005,"SourceStructureID":98914,"TargetStructureID":4569,"Label":"98914-4569 via Conventional from 98915 -> 52542","Type":"Conventional","Directional":true,"Links":[{"SourceID":98915,"TargetID":52542,"Directional":true}]},{"ID":19006,"SourceStructureID":98917,"TargetStructureID":4569,"Label":"98917-4569 via Conventional from 98918 -> 30850","Type":"Conventional","Directional":true,"Links":[{"SourceID":98918,"TargetID":30850,"Directional":true}]},{"ID":19007,"SourceStructureID":98920,"TargetStructureID":4569,"Label":"98920-4569 via Conventional from 98921 -> 30851","Type":"Conventional","Directional":true,"Links":[{"SourceID":98921,"TargetID":30851,"Directional":true}]},{"ID":19008,"SourceStructureID":98924,"TargetStructureID":4569,"Label":"98924-4569 via Conventional from 98925 -> 47552","Type":"Conventional","Directional":true,"Links":[{"SourceID":98925,"TargetID":47552,"Directional":true}]},{"ID":19009,"SourceStructureID":98929,"TargetStructureID":4569,"Label":"98929-4569 via Conventional from 98930 -> 98931, 98938 -> 30856","Type":"Conventional","Directional":true,"Links":[{"SourceID":98930,"TargetID":98931,"Directional":true},{"SourceID":98938,"TargetID":30856,"Directional":true}]},{"ID":19010,"SourceStructureID":98932,"TargetStructureID":4569,"Label":"98932-4569 via Conventional from 98933 -> 98935, 98934 -> 52549","Type":"Conventional","Directional":true,"Links":[{"SourceID":98933,"TargetID":98935,"Directional":true},{"SourceID":98934,"TargetID":52549,"Directional":true}]},{"ID":19011,"SourceStructureID":98936,"TargetStructureID":4569,"Label":"98936-4569 via Conventional from 98937 -> 30855","Type":"Conventional","Directional":true,"Links":[{"SourceID":98937,"TargetID":30855,"Directional":true}]},{"ID":19012,"SourceStructureID":98958,"TargetStructureID":4569,"Label":"98958-4569 via Conventional from 98959 -> 47548","Type":"Conventional","Directional":true,"Links":[{"SourceID":98959,"TargetID":47548,"Directional":true}]},{"ID":19013,"SourceStructureID":98960,"TargetStructureID":4569,"Label":"98960-4569 via Conventional from 98961 -> 30857","Type":"Conventional","Directional":true,"Links":[{"SourceID":98961,"TargetID":30857,"Directional":true}]},{"ID":19014,"SourceStructureID":98962,"TargetStructureID":4569,"Label":"98962-4569 via Conventional from 98963 -> 47549","Type":"Conventional","Directional":true,"Links":[{"SourceID":98963,"TargetID":47549,"Directional":true}]},{"ID":19015,"SourceStructureID":98980,"TargetStructureID":5279,"Label":"98980-5279 via Conventional from 98981 -> 25998","Type":"Conventional","Directional":true,"Links":[{"SourceID":98981,"TargetID":25998,"Directional":true}]},{"ID":19016,"SourceStructureID":98983,"TargetStructureID":5279,"Label":"98983-5279 via Conventional from 98984 -> 25997","Type":"Conventional","Directional":true,"Links":[{"SourceID":98984,"TargetID":25997,"Directional":true}]},{"ID":19017,"SourceStructureID":98987,"TargetStructureID":5279,"Label":"98987-5279 via Conventional from 98988 -> 26000","Type":"Conventional","Directional":true,"Links":[{"SourceID":98988,"TargetID":26000,"Directional":true}]},{"ID":19018,"SourceStructureID":98991,"TargetStructureID":5279,"Label":"98991-5279 via Conventional from 98992 -> 26001","Type":"Conventional","Directional":true,"Links":[{"SourceID":98992,"TargetID":26001,"Directional":true}]},{"ID":19019,"SourceStructureID":98997,"TargetStructureID":5279,"Label":"98997-5279 via Conventional from 99035 -> 99036","Type":"Conventional","Directional":true,"Links":[{"SourceID":99035,"TargetID":99036,"Directional":true}]},{"ID":19020,"SourceStructureID":99010,"TargetStructureID":4569,"Label":"99010-4569 via Conventional from 99011 -> 30861","Type":"Conventional","Directional":true,"Links":[{"SourceID":99011,"TargetID":30861,"Directional":true}]},{"ID":19021,"SourceStructureID":99012,"TargetStructureID":4569,"Label":"99012-4569 via Conventional from 99013 -> 30862","Type":"Conventional","Directional":true,"Links":[{"SourceID":99013,"TargetID":30862,"Directional":true}]},{"ID":19022,"SourceStructureID":99039,"TargetStructureID":5279,"Label":"99039-5279 via Conventional from 99042 -> 99043","Type":"Conventional","Directional":true,"Links":[{"SourceID":99042,"TargetID":99043,"Directional":true}]},{"ID":19023,"SourceStructureID":99040,"TargetStructureID":4569,"Label":"99040-4569 via Conventional from 99041 -> 30842","Type":"Conventional","Directional":true,"Links":[{"SourceID":99041,"TargetID":30842,"Directional":true}]},{"ID":19024,"SourceStructureID":99047,"TargetStructureID":4569,"Label":"99047-4569 via Conventional from 99049 -> 30865","Type":"Conventional","Directional":true,"Links":[{"SourceID":99049,"TargetID":30865,"Directional":true}]},{"ID":19025,"SourceStructureID":99062,"TargetStructureID":5279,"Label":"99062-5279 via Conventional from 99063 -> 99064","Type":"Conventional","Directional":true,"Links":[{"SourceID":99063,"TargetID":99064,"Directional":true}]},{"ID":19026,"SourceStructureID":99065,"TargetStructureID":5279,"Label":"99065-5279 via Conventional from 99074 -> 49222","Type":"Conventional","Directional":true,"Links":[{"SourceID":99074,"TargetID":49222,"Directional":true}]},{"ID":19027,"SourceStructureID":99069,"TargetStructureID":4569,"Label":"99069-4569 via Conventional from 99070 -> 6299","Type":"Conventional","Directional":true,"Links":[{"SourceID":99070,"TargetID":6299,"Directional":true}]},{"ID":19028,"SourceStructureID":99072,"TargetStructureID":4569,"Label":"99072-4569 via Conventional from 99073 -> 30817","Type":"Conventional","Directional":true,"Links":[{"SourceID":99073,"TargetID":30817,"Directional":true}]},{"ID":19029,"SourceStructureID":99076,"TargetStructureID":5279,"Label":"99076-5279 via Conventional from 99085 -> 49223","Type":"Conventional","Directional":true,"Links":[{"SourceID":99085,"TargetID":49223,"Directional":true}]},{"ID":19030,"SourceStructureID":99077,"TargetStructureID":4569,"Label":"99077-4569 via Conventional from 99079 -> 99078","Type":"Conventional","Directional":true,"Links":[{"SourceID":99079,"TargetID":99078,"Directional":true}]},{"ID":19031,"SourceStructureID":99091,"TargetStructureID":5279,"Label":"99091-5279 via Conventional from 99104 -> 99105","Type":"Conventional","Directional":true,"Links":[{"SourceID":99104,"TargetID":99105,"Directional":true}]},{"ID":19032,"SourceStructureID":99092,"TargetStructureID":4569,"Label":"99092-4569 via Conventional from 99093 -> 30818","Type":"Conventional","Directional":true,"Links":[{"SourceID":99093,"TargetID":30818,"Directional":true}]},{"ID":19033,"SourceStructureID":99092,"TargetStructureID":38949,"Label":"99092-38949 via Conventional from 112743 -> 39031","Type":"Conventional","Directional":true,"Links":[{"SourceID":112743,"TargetID":39031,"Directional":true}]},{"ID":19034,"SourceStructureID":99094,"TargetStructureID":4569,"Label":"99094-4569 via Conventional from 99095 -> 23563","Type":"Conventional","Directional":true,"Links":[{"SourceID":99095,"TargetID":23563,"Directional":true}]},{"ID":19035,"SourceStructureID":99096,"TargetStructureID":4569,"Label":"99096-4569 via Conventional from 99097 -> 23562","Type":"Conventional","Directional":true,"Links":[{"SourceID":99097,"TargetID":23562,"Directional":true}]},{"ID":19036,"SourceStructureID":99098,"TargetStructureID":4569,"Label":"99098-4569 via Conventional from 99099 -> 23571","Type":"Conventional","Directional":true,"Links":[{"SourceID":99099,"TargetID":23571,"Directional":true}]},{"ID":19037,"SourceStructureID":99102,"TargetStructureID":4569,"Label":"99102-4569 via Conventional from 99103 -> 30819","Type":"Conventional","Directional":true,"Links":[{"SourceID":99103,"TargetID":30819,"Directional":true}]},{"ID":19038,"SourceStructureID":99115,"TargetStructureID":5279,"Label":"99115-5279 via Conventional from 99116 -> 49227","Type":"Conventional","Directional":true,"Links":[{"SourceID":99116,"TargetID":49227,"Directional":true}]},{"ID":19039,"SourceStructureID":99117,"TargetStructureID":4569,"Label":"99117-4569 via Conventional from 99119 -> 30820","Type":"Conventional","Directional":true,"Links":[{"SourceID":99119,"TargetID":30820,"Directional":true}]},{"ID":19040,"SourceStructureID":99118,"TargetStructureID":5279,"Label":"99118-5279 via Conventional from 99124 -> 49230","Type":"Conventional","Directional":true,"Links":[{"SourceID":99124,"TargetID":49230,"Directional":true}]},{"ID":19041,"SourceStructureID":99125,"TargetStructureID":5279,"Label":"99125-5279 via Conventional from 99126 -> 49228","Type":"Conventional","Directional":true,"Links":[{"SourceID":99126,"TargetID":49228,"Directional":true}]},{"ID":19042,"SourceStructureID":99132,"TargetStructureID":5279,"Label":"99132-5279 via Conventional from 99133 -> 99134","Type":"Conventional","Directional":true,"Links":[{"SourceID":99133,"TargetID":99134,"Directional":true}]},{"ID":19043,"SourceStructureID":99136,"TargetStructureID":5279,"Label":"99136-5279 via Conventional from 99137 -> 49225","Type":"Conventional","Directional":true,"Links":[{"SourceID":99137,"TargetID":49225,"Directional":true}]},{"ID":19044,"SourceStructureID":99147,"TargetStructureID":5279,"Label":"99147-5279 via Conventional from 99148 -> 99149","Type":"Conventional","Directional":true,"Links":[{"SourceID":99148,"TargetID":99149,"Directional":true}]},{"ID":19045,"SourceStructureID":99225,"TargetStructureID":485,"Label":"99225-485 via Conventional from 99226 -> 38781","Type":"Conventional","Directional":true,"Links":[{"SourceID":99226,"TargetID":38781,"Directional":true}]},{"ID":19046,"SourceStructureID":99237,"TargetStructureID":5278,"Label":"99237-5278 via Conventional from 99244 -> 20041","Type":"Conventional","Directional":true,"Links":[{"SourceID":99244,"TargetID":20041,"Directional":true}]},{"ID":19047,"SourceStructureID":99243,"TargetStructureID":1724,"Label":"99243-1724 via Conventional from 99245 -> 1762","Type":"Conventional","Directional":true,"Links":[{"SourceID":99245,"TargetID":1762,"Directional":true}]},{"ID":19048,"SourceStructureID":99255,"TargetStructureID":5278,"Label":"99255-5278 via Conventional from 99258 -> 20046","Type":"Conventional","Directional":true,"Links":[{"SourceID":99258,"TargetID":20046,"Directional":true}]},{"ID":19049,"SourceStructureID":99261,"TargetStructureID":1724,"Label":"99261-1724 via Conventional from 99263 -> 1773","Type":"Conventional","Directional":true,"Links":[{"SourceID":99263,"TargetID":1773,"Directional":true}]},{"ID":19050,"SourceStructureID":99266,"TargetStructureID":1724,"Label":"99266-1724 via Conventional from 99267 -> 99269","Type":"Conventional","Directional":true,"Links":[{"SourceID":99267,"TargetID":99269,"Directional":true}]},{"ID":19051,"SourceStructureID":99278,"TargetStructureID":485,"Label":"99278-485 via Conventional from 99279 -> 99277","Type":"Conventional","Directional":true,"Links":[{"SourceID":99279,"TargetID":99277,"Directional":true}]},{"ID":19052,"SourceStructureID":99307,"TargetStructureID":1724,"Label":"99307-1724 via Conventional from 100560 -> 48480","Type":"Conventional","Directional":true,"Links":[{"SourceID":100560,"TargetID":48480,"Directional":true}]},{"ID":19053,"SourceStructureID":99307,"TargetStructureID":5278,"Label":"99307-5278 via Conventional from 99308 -> 20115","Type":"Conventional","Directional":true,"Links":[{"SourceID":99308,"TargetID":20115,"Directional":true}]},{"ID":19054,"SourceStructureID":99316,"TargetStructureID":1724,"Label":"99316-1724 via Conventional from 99317 -> 47375","Type":"Conventional","Directional":true,"Links":[{"SourceID":99317,"TargetID":47375,"Directional":true}]},{"ID":19055,"SourceStructureID":99319,"TargetStructureID":1724,"Label":"99319-1724 via Conventional from 99324 -> 55462","Type":"Conventional","Directional":true,"Links":[{"SourceID":99324,"TargetID":55462,"Directional":true}]},{"ID":19056,"SourceStructureID":99320,"TargetStructureID":1724,"Label":"99320-1724 via Conventional from 99321 -> 99322","Type":"Conventional","Directional":true,"Links":[{"SourceID":99321,"TargetID":99322,"Directional":true}]},{"ID":19057,"SourceStructureID":99325,"TargetStructureID":1724,"Label":"99325-1724 via Conventional from 99326 -> 4040","Type":"Conventional","Directional":true,"Links":[{"SourceID":99326,"TargetID":4040,"Directional":true}]},{"ID":19058,"SourceStructureID":99329,"TargetStructureID":1724,"Label":"99329-1724 via Conventional from 99330 -> 99331","Type":"Conventional","Directional":true,"Links":[{"SourceID":99330,"TargetID":99331,"Directional":true}]},{"ID":19059,"SourceStructureID":99332,"TargetStructureID":1724,"Label":"99332-1724 via Conventional from 99333 -> 4048, 99518 -> 47945","Type":"Conventional","Directional":true,"Links":[{"SourceID":99333,"TargetID":4048,"Directional":true},{"SourceID":99518,"TargetID":47945,"Directional":true}]},{"ID":19060,"SourceStructureID":99332,"TargetStructureID":6156,"Label":"99332-6156 via Conventional from 133369 -> 133368","Type":"Conventional","Directional":true,"Links":[{"SourceID":133369,"TargetID":133368,"Directional":true}]},{"ID":19061,"SourceStructureID":99343,"TargetStructureID":33625,"Label":"99343-33625 via Conventional from 99344 -> 33651","Type":"Conventional","Directional":true,"Links":[{"SourceID":99344,"TargetID":33651,"Directional":true}]},{"ID":19062,"SourceStructureID":99361,"TargetStructureID":1724,"Label":"99361-1724 via Conventional from 99369 -> 47384","Type":"Conventional","Directional":true,"Links":[{"SourceID":99369,"TargetID":47384,"Directional":true}]},{"ID":19063,"SourceStructureID":99364,"TargetStructureID":1724,"Label":"99364-1724 via Conventional from 99420 -> 47387","Type":"Conventional","Directional":true,"Links":[{"SourceID":99420,"TargetID":47387,"Directional":true}]},{"ID":19064,"SourceStructureID":99375,"TargetStructureID":485,"Label":"99375-485 via Conventional from 99386 -> 99374","Type":"Conventional","Directional":true,"Links":[{"SourceID":99386,"TargetID":99374,"Directional":true}]},{"ID":19065,"SourceStructureID":99388,"TargetStructureID":485,"Label":"99388-485 via Conventional from 99389 -> 99387","Type":"Conventional","Directional":true,"Links":[{"SourceID":99389,"TargetID":99387,"Directional":true}]},{"ID":19066,"SourceStructureID":99395,"TargetStructureID":485,"Label":"99395-485 via Conventional from 99396 -> 99393","Type":"Conventional","Directional":true,"Links":[{"SourceID":99396,"TargetID":99393,"Directional":true}]},{"ID":19067,"SourceStructureID":99426,"TargetStructureID":1724,"Label":"99426-1724 via Conventional from 99427 -> 99428","Type":"Conventional","Directional":true,"Links":[{"SourceID":99427,"TargetID":99428,"Directional":true}]},{"ID":19068,"SourceStructureID":99435,"TargetStructureID":1724,"Label":"99435-1724 via Conventional from 99436 -> 47389","Type":"Conventional","Directional":true,"Links":[{"SourceID":99436,"TargetID":47389,"Directional":true}]},{"ID":19069,"SourceStructureID":99435,"TargetStructureID":6406,"Label":"99435-6406 via Conventional from 101690 -> 101691","Type":"Conventional","Directional":true,"Links":[{"SourceID":101690,"TargetID":101691,"Directional":true}]},{"ID":19070,"SourceStructureID":99443,"TargetStructureID":485,"Label":"99443-485 via Conventional from 99444 -> 50863","Type":"Conventional","Directional":true,"Links":[{"SourceID":99444,"TargetID":50863,"Directional":true}]},{"ID":19071,"SourceStructureID":99447,"TargetStructureID":485,"Label":"99447-485 via Conventional from 99448 -> 50864","Type":"Conventional","Directional":true,"Links":[{"SourceID":99448,"TargetID":50864,"Directional":true}]},{"ID":19072,"SourceStructureID":99453,"TargetStructureID":485,"Label":"99453-485 via Conventional from 99455 -> 50862","Type":"Conventional","Directional":true,"Links":[{"SourceID":99455,"TargetID":50862,"Directional":true}]},{"ID":19073,"SourceStructureID":99463,"TargetStructureID":485,"Label":"99463-485 via Conventional from 99464 -> 50882","Type":"Conventional","Directional":true,"Links":[{"SourceID":99464,"TargetID":50882,"Directional":true}]},{"ID":19074,"SourceStructureID":99465,"TargetStructureID":485,"Label":"99465-485 via Conventional from 99466 -> 50881","Type":"Conventional","Directional":true,"Links":[{"SourceID":99466,"TargetID":50881,"Directional":true}]},{"ID":19075,"SourceStructureID":99468,"TargetStructureID":1724,"Label":"99468-1724 via Conventional from 99469 -> 99470, 99503 -> 4069","Type":"Conventional","Directional":true,"Links":[{"SourceID":99469,"TargetID":99470,"Directional":true},{"SourceID":99503,"TargetID":4069,"Directional":true}]},{"ID":19076,"SourceStructureID":99480,"TargetStructureID":1724,"Label":"99480-1724 via Conventional from 99486 -> 4066, 99487 -> 4066","Type":"Conventional","Directional":true,"Links":[{"SourceID":99486,"TargetID":4066,"Directional":true},{"SourceID":99487,"TargetID":4066,"Directional":true}]},{"ID":19077,"SourceStructureID":99482,"TargetStructureID":309,"Label":"99482-309 via Conventional from 99483 -> 13393","Type":"Conventional","Directional":true,"Links":[{"SourceID":99483,"TargetID":13393,"Directional":true}]},{"ID":19078,"SourceStructureID":99488,"TargetStructureID":1724,"Label":"99488-1724 via Conventional from 99490 -> 4064","Type":"Conventional","Directional":true,"Links":[{"SourceID":99490,"TargetID":4064,"Directional":true}]},{"ID":19079,"SourceStructureID":99498,"TargetStructureID":6156,"Label":"99498-6156 via Conventional from 133370 -> 23270","Type":"Conventional","Directional":true,"Links":[{"SourceID":133370,"TargetID":23270,"Directional":true}]},{"ID":19080,"SourceStructureID":99501,"TargetStructureID":1724,"Label":"99501-1724 via Conventional from 99502 -> 4068","Type":"Conventional","Directional":true,"Links":[{"SourceID":99502,"TargetID":4068,"Directional":true}]},{"ID":19081,"SourceStructureID":99504,"TargetStructureID":1724,"Label":"99504-1724 via Conventional from 99505 -> 4072","Type":"Conventional","Directional":true,"Links":[{"SourceID":99505,"TargetID":4072,"Directional":true}]},{"ID":19082,"SourceStructureID":99513,"TargetStructureID":142,"Label":"99513-142 via Conventional from 129645 -> 92375","Type":"Conventional","Directional":true,"Links":[{"SourceID":129645,"TargetID":92375,"Directional":true}]},{"ID":19083,"SourceStructureID":99513,"TargetStructureID":1724,"Label":"99513-1724 via Conventional from 99514 -> 4050, 101986 -> 101987, 129620 -> 129621","Type":"Conventional","Directional":true,"Links":[{"SourceID":99514,"TargetID":4050,"Directional":true},{"SourceID":101986,"TargetID":101987,"Directional":true},{"SourceID":129620,"TargetID":129621,"Directional":true}]},{"ID":19084,"SourceStructureID":99513,"TargetStructureID":5279,"Label":"99513-5279 via Conventional from 96393 -> 96394, 129640 -> 98658","Type":"Conventional","Directional":true,"Links":[{"SourceID":96393,"TargetID":96394,"Directional":true},{"SourceID":129640,"TargetID":98658,"Directional":true}]},{"ID":19085,"SourceStructureID":99513,"TargetStructureID":6117,"Label":"99513-6117 via Conventional from 129641 -> 129642","Type":"Conventional","Directional":true,"Links":[{"SourceID":129641,"TargetID":129642,"Directional":true}]},{"ID":19086,"SourceStructureID":99513,"TargetStructureID":6912,"Label":"99513-6912 via Conventional from 129622 -> 51139, 129625 -> 48369, 129629 -> 51060","Type":"Conventional","Directional":true,"Links":[{"SourceID":129622,"TargetID":51139,"Directional":true},{"SourceID":129625,"TargetID":48369,"Directional":true},{"SourceID":129629,"TargetID":51060,"Directional":true}]},{"ID":19087,"SourceStructureID":99513,"TargetStructureID":28886,"Label":"99513-28886 via Conventional from 129635 -> 129637","Type":"Conventional","Directional":true,"Links":[{"SourceID":129635,"TargetID":129637,"Directional":true}]},{"ID":19088,"SourceStructureID":99513,"TargetStructureID":37466,"Label":"99513-37466 via Conventional from 129618 -> 37470","Type":"Conventional","Directional":true,"Links":[{"SourceID":129618,"TargetID":37470,"Directional":true}]},{"ID":19089,"SourceStructureID":99513,"TargetStructureID":122484,"Label":"99513-122484 via Conventional from 129633 -> 129634","Type":"Conventional","Directional":true,"Links":[{"SourceID":129633,"TargetID":129634,"Directional":true}]},{"ID":19090,"SourceStructureID":99515,"TargetStructureID":1724,"Label":"99515-1724 via Conventional from 99517 -> 4051","Type":"Conventional","Directional":true,"Links":[{"SourceID":99517,"TargetID":4051,"Directional":true}]},{"ID":19091,"SourceStructureID":99523,"TargetStructureID":485,"Label":"99523-485 via Conventional from 99524 -> 99521","Type":"Conventional","Directional":true,"Links":[{"SourceID":99524,"TargetID":99521,"Directional":true}]},{"ID":19092,"SourceStructureID":99531,"TargetStructureID":1724,"Label":"99531-1724 via Conventional from 99532 -> 4056","Type":"Conventional","Directional":true,"Links":[{"SourceID":99532,"TargetID":4056,"Directional":true}]},{"ID":19093,"SourceStructureID":99536,"TargetStructureID":1724,"Label":"99536-1724 via Conventional from 99537 -> 1801","Type":"Conventional","Directional":true,"Links":[{"SourceID":99537,"TargetID":1801,"Directional":true}]},{"ID":19094,"SourceStructureID":99541,"TargetStructureID":1724,"Label":"99541-1724 via Conventional from 99542 -> 1777","Type":"Conventional","Directional":true,"Links":[{"SourceID":99542,"TargetID":1777,"Directional":true}]},{"ID":19095,"SourceStructureID":99546,"TargetStructureID":1724,"Label":"99546-1724 via Conventional from 99568 -> 1786","Type":"Conventional","Directional":true,"Links":[{"SourceID":99568,"TargetID":1786,"Directional":true}]},{"ID":19096,"SourceStructureID":99560,"TargetStructureID":1724,"Label":"99560-1724 via Conventional from 99561 -> 1794","Type":"Conventional","Directional":true,"Links":[{"SourceID":99561,"TargetID":1794,"Directional":true}]},{"ID":19097,"SourceStructureID":99575,"TargetStructureID":1724,"Label":"99575-1724 via Conventional from 99576 -> 1780, 99580 -> 99581","Type":"Conventional","Directional":true,"Links":[{"SourceID":99576,"TargetID":1780,"Directional":true},{"SourceID":99580,"TargetID":99581,"Directional":true}]},{"ID":19098,"SourceStructureID":99577,"TargetStructureID":1724,"Label":"99577-1724 via Conventional from 99578 -> 99579","Type":"Conventional","Directional":true,"Links":[{"SourceID":99578,"TargetID":99579,"Directional":true}]},{"ID":19099,"SourceStructureID":99586,"TargetStructureID":1724,"Label":"99586-1724 via Conventional from 99587 -> 3976","Type":"Conventional","Directional":true,"Links":[{"SourceID":99587,"TargetID":3976,"Directional":true}]},{"ID":19100,"SourceStructureID":99589,"TargetStructureID":5278,"Label":"99589-5278 via Conventional from 99591 -> 99590","Type":"Conventional","Directional":true,"Links":[{"SourceID":99591,"TargetID":99590,"Directional":true}]},{"ID":19101,"SourceStructureID":99596,"TargetStructureID":5278,"Label":"99596-5278 via Conventional from 99597 -> 92114","Type":"Conventional","Directional":true,"Links":[{"SourceID":99597,"TargetID":92114,"Directional":true}]},{"ID":19102,"SourceStructureID":99602,"TargetStructureID":5278,"Label":"99602-5278 via Conventional from 99603 -> 99604","Type":"Conventional","Directional":true,"Links":[{"SourceID":99603,"TargetID":99604,"Directional":true}]},{"ID":19103,"SourceStructureID":99614,"TargetStructureID":5278,"Label":"99614-5278 via Conventional from 99615 -> 20074","Type":"Conventional","Directional":true,"Links":[{"SourceID":99615,"TargetID":20074,"Directional":true}]},{"ID":19104,"SourceStructureID":99617,"TargetStructureID":485,"Label":"99617-485 via Conventional from 99618 -> 99616","Type":"Conventional","Directional":true,"Links":[{"SourceID":99618,"TargetID":99616,"Directional":true}]},{"ID":19105,"SourceStructureID":99617,"TargetStructureID":99621,"Label":"99617-99621 via Conventional from 99620 -> 99622","Type":"Conventional","Directional":true,"Links":[{"SourceID":99620,"TargetID":99622,"Directional":true}]},{"ID":19106,"SourceStructureID":99628,"TargetStructureID":485,"Label":"99628-485 via Conventional from 99629 -> 99630","Type":"Conventional","Directional":true,"Links":[{"SourceID":99629,"TargetID":99630,"Directional":true}]},{"ID":19107,"SourceStructureID":99632,"TargetStructureID":408,"Label":"99632-408 via Conventional from 99634 -> 35773","Type":"Conventional","Directional":true,"Links":[{"SourceID":99634,"TargetID":35773,"Directional":true}]},{"ID":19108,"SourceStructureID":99632,"TargetStructureID":485,"Label":"99632-485 via Conventional from 99633 -> 99636","Type":"Conventional","Directional":true,"Links":[{"SourceID":99633,"TargetID":99636,"Directional":true}]},{"ID":19109,"SourceStructureID":99642,"TargetStructureID":485,"Label":"99642-485 via Conventional from 99643 -> 99637","Type":"Conventional","Directional":true,"Links":[{"SourceID":99643,"TargetID":99637,"Directional":true}]},{"ID":19110,"SourceStructureID":99644,"TargetStructureID":485,"Label":"99644-485 via Conventional from 99645 -> 99640","Type":"Conventional","Directional":true,"Links":[{"SourceID":99645,"TargetID":99640,"Directional":true}]},{"ID":19111,"SourceStructureID":99647,"TargetStructureID":485,"Label":"99647-485 via Conventional from 99649 -> 99638","Type":"Conventional","Directional":true,"Links":[{"SourceID":99649,"TargetID":99638,"Directional":true}]},{"ID":19112,"SourceStructureID":99701,"TargetStructureID":485,"Label":"99701-485 via Conventional from 99702 -> 99686","Type":"Conventional","Directional":true,"Links":[{"SourceID":99702,"TargetID":99686,"Directional":true}]},{"ID":19113,"SourceStructureID":99703,"TargetStructureID":485,"Label":"99703-485 via Conventional from 99704 -> 99687","Type":"Conventional","Directional":true,"Links":[{"SourceID":99704,"TargetID":99687,"Directional":true}]},{"ID":19114,"SourceStructureID":99719,"TargetStructureID":485,"Label":"99719-485 via Conventional from 99720 -> 99689","Type":"Conventional","Directional":true,"Links":[{"SourceID":99720,"TargetID":99689,"Directional":true}]},{"ID":19115,"SourceStructureID":99722,"TargetStructureID":485,"Label":"99722-485 via Conventional from 99723 -> 99721","Type":"Conventional","Directional":true,"Links":[{"SourceID":99723,"TargetID":99721,"Directional":true}]},{"ID":19116,"SourceStructureID":99737,"TargetStructureID":485,"Label":"99737-485 via Conventional from 99738 -> 99736","Type":"Conventional","Directional":true,"Links":[{"SourceID":99738,"TargetID":99736,"Directional":true}]},{"ID":19117,"SourceStructureID":99741,"TargetStructureID":485,"Label":"99741-485 via Conventional from 99745 -> 99740","Type":"Conventional","Directional":true,"Links":[{"SourceID":99745,"TargetID":99740,"Directional":true}]},{"ID":19118,"SourceStructureID":99741,"TargetStructureID":99737,"Label":"99741-99737 via Conventional from 99743 -> 99744","Type":"Conventional","Directional":true,"Links":[{"SourceID":99743,"TargetID":99744,"Directional":true}]},{"ID":19119,"SourceStructureID":99742,"TargetStructureID":5278,"Label":"99742-5278 via Conventional from 99746 -> 20078","Type":"Conventional","Directional":true,"Links":[{"SourceID":99746,"TargetID":20078,"Directional":true}]},{"ID":19120,"SourceStructureID":99753,"TargetStructureID":485,"Label":"99753-485 via Conventional from 99754 -> 99747","Type":"Conventional","Directional":true,"Links":[{"SourceID":99754,"TargetID":99747,"Directional":true}]},{"ID":19121,"SourceStructureID":99769,"TargetStructureID":5278,"Label":"99769-5278 via Conventional from 99770 -> 20084","Type":"Conventional","Directional":true,"Links":[{"SourceID":99770,"TargetID":20084,"Directional":true}]},{"ID":19122,"SourceStructureID":99771,"TargetStructureID":5278,"Label":"99771-5278 via Conventional from 99772 -> 20083","Type":"Conventional","Directional":true,"Links":[{"SourceID":99772,"TargetID":20083,"Directional":true}]},{"ID":19123,"SourceStructureID":99783,"TargetStructureID":485,"Label":"99783-485 via Conventional from 99833 -> 99834","Type":"Conventional","Directional":true,"Links":[{"SourceID":99833,"TargetID":99834,"Directional":true}]},{"ID":19124,"SourceStructureID":99801,"TargetStructureID":5278,"Label":"99801-5278 via Conventional from 99814 -> 99815","Type":"Conventional","Directional":true,"Links":[{"SourceID":99814,"TargetID":99815,"Directional":true}]},{"ID":19125,"SourceStructureID":99801,"TargetStructureID":5279,"Label":"99801-5279 via Conventional from 99802 -> 99803","Type":"Conventional","Directional":true,"Links":[{"SourceID":99802,"TargetID":99803,"Directional":true}]},{"ID":19126,"SourceStructureID":99804,"TargetStructureID":5279,"Label":"99804-5279 via Conventional from 99805 -> 92677","Type":"Conventional","Directional":true,"Links":[{"SourceID":99805,"TargetID":92677,"Directional":true}]},{"ID":19127,"SourceStructureID":99816,"TargetStructureID":5278,"Label":"99816-5278 via Conventional from 99817 -> 20159","Type":"Conventional","Directional":true,"Links":[{"SourceID":99817,"TargetID":20159,"Directional":true}]},{"ID":19128,"SourceStructureID":99818,"TargetStructureID":5278,"Label":"99818-5278 via Conventional from 99819 -> 20156","Type":"Conventional","Directional":true,"Links":[{"SourceID":99819,"TargetID":20156,"Directional":true}]},{"ID":19129,"SourceStructureID":99829,"TargetStructureID":5278,"Label":"99829-5278 via Conventional from 99830 -> 20167","Type":"Conventional","Directional":true,"Links":[{"SourceID":99830,"TargetID":20167,"Directional":true}]},{"ID":19130,"SourceStructureID":99831,"TargetStructureID":5278,"Label":"99831-5278 via Conventional from 100137 -> 20169","Type":"Conventional","Directional":true,"Links":[{"SourceID":100137,"TargetID":20169,"Directional":true}]},{"ID":19131,"SourceStructureID":99835,"TargetStructureID":485,"Label":"99835-485 via Conventional from 99836 -> 99778","Type":"Conventional","Directional":true,"Links":[{"SourceID":99836,"TargetID":99778,"Directional":true}]},{"ID":19132,"SourceStructureID":99844,"TargetStructureID":485,"Label":"99844-485 via Conventional from 99845 -> 99843, 99846 -> 50684","Type":"Conventional","Directional":true,"Links":[{"SourceID":99845,"TargetID":99843,"Directional":true},{"SourceID":99846,"TargetID":50684,"Directional":true}]},{"ID":19133,"SourceStructureID":99847,"TargetStructureID":485,"Label":"99847-485 via Conventional from 148044 -> 148043","Type":"Conventional","Directional":true,"Links":[{"SourceID":148044,"TargetID":148043,"Directional":true}]},{"ID":19134,"SourceStructureID":99865,"TargetStructureID":485,"Label":"99865-485 via Conventional from 99867 -> 99868","Type":"Conventional","Directional":true,"Links":[{"SourceID":99867,"TargetID":99868,"Directional":true}]},{"ID":19135,"SourceStructureID":99870,"TargetStructureID":485,"Label":"99870-485 via Conventional from 99871 -> 99869","Type":"Conventional","Directional":true,"Links":[{"SourceID":99871,"TargetID":99869,"Directional":true}]},{"ID":19136,"SourceStructureID":99872,"TargetStructureID":485,"Label":"99872-485 via Conventional from 99873 -> 99685","Type":"Conventional","Directional":true,"Links":[{"SourceID":99873,"TargetID":99685,"Directional":true}]},{"ID":19137,"SourceStructureID":99888,"TargetStructureID":485,"Label":"99888-485 via Conventional from 99889 -> 99890","Type":"Conventional","Directional":true,"Links":[{"SourceID":99889,"TargetID":99890,"Directional":true}]},{"ID":19138,"SourceStructureID":99891,"TargetStructureID":485,"Label":"99891-485 via Conventional from 99892 -> 99893","Type":"Conventional","Directional":true,"Links":[{"SourceID":99892,"TargetID":99893,"Directional":true}]},{"ID":19139,"SourceStructureID":99898,"TargetStructureID":99898,"Label":"99898-99898 via BC Conventional Synapse from 99899 -> 99900","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":99899,"TargetID":99900,"Directional":true}]},{"ID":19140,"SourceStructureID":99901,"TargetStructureID":485,"Label":"99901-485 via Conventional from 148023 -> 148022","Type":"Conventional","Directional":true,"Links":[{"SourceID":148023,"TargetID":148022,"Directional":true}]},{"ID":19141,"SourceStructureID":99922,"TargetStructureID":485,"Label":"99922-485 via Conventional from 99923 -> 99921","Type":"Conventional","Directional":true,"Links":[{"SourceID":99923,"TargetID":99921,"Directional":true}]},{"ID":19142,"SourceStructureID":99930,"TargetStructureID":485,"Label":"99930-485 via Conventional from 99931 -> 99929","Type":"Conventional","Directional":true,"Links":[{"SourceID":99931,"TargetID":99929,"Directional":true}]},{"ID":19143,"SourceStructureID":99941,"TargetStructureID":485,"Label":"99941-485 via Conventional from 99942 -> 99940","Type":"Conventional","Directional":true,"Links":[{"SourceID":99942,"TargetID":99940,"Directional":true}]},{"ID":19144,"SourceStructureID":99941,"TargetStructureID":46823,"Label":"99941-46823 via Conventional from 99947 -> 46851","Type":"Conventional","Directional":true,"Links":[{"SourceID":99947,"TargetID":46851,"Directional":true}]},{"ID":19145,"SourceStructureID":99948,"TargetStructureID":485,"Label":"99948-485 via Conventional from 99949 -> 99950","Type":"Conventional","Directional":true,"Links":[{"SourceID":99949,"TargetID":99950,"Directional":true}]},{"ID":19146,"SourceStructureID":99960,"TargetStructureID":18576,"Label":"99960-18576 via Conventional from 99962 -> 99964","Type":"Conventional","Directional":true,"Links":[{"SourceID":99962,"TargetID":99964,"Directional":true}]},{"ID":19147,"SourceStructureID":99970,"TargetStructureID":485,"Label":"99970-485 via Conventional from 99971 -> 99969","Type":"Conventional","Directional":true,"Links":[{"SourceID":99971,"TargetID":99969,"Directional":true}]},{"ID":19148,"SourceStructureID":99981,"TargetStructureID":485,"Label":"99981-485 via Conventional from 99982 -> 99980","Type":"Conventional","Directional":true,"Links":[{"SourceID":99982,"TargetID":99980,"Directional":true}]},{"ID":19149,"SourceStructureID":99984,"TargetStructureID":606,"Label":"99984-606 via Conventional from 148019 -> 45518","Type":"Conventional","Directional":true,"Links":[{"SourceID":148019,"TargetID":45518,"Directional":true}]},{"ID":19150,"SourceStructureID":99995,"TargetStructureID":485,"Label":"99995-485 via Conventional from 134099 -> 134100","Type":"Conventional","Directional":true,"Links":[{"SourceID":134099,"TargetID":134100,"Directional":true}]},{"ID":19151,"SourceStructureID":100006,"TargetStructureID":485,"Label":"100006-485 via Conventional from 100008 -> 99904","Type":"Conventional","Directional":true,"Links":[{"SourceID":100008,"TargetID":99904,"Directional":true}]},{"ID":19152,"SourceStructureID":100010,"TargetStructureID":485,"Label":"100010-485 via Conventional from 100011 -> 100012","Type":"Conventional","Directional":true,"Links":[{"SourceID":100011,"TargetID":100012,"Directional":true}]},{"ID":19153,"SourceStructureID":100014,"TargetStructureID":485,"Label":"100014-485 via Conventional from 100015 -> 29182","Type":"Conventional","Directional":true,"Links":[{"SourceID":100015,"TargetID":29182,"Directional":true}]},{"ID":19154,"SourceStructureID":100018,"TargetStructureID":485,"Label":"100018-485 via Conventional from 100019 -> 29183","Type":"Conventional","Directional":true,"Links":[{"SourceID":100019,"TargetID":29183,"Directional":true}]},{"ID":19155,"SourceStructureID":100020,"TargetStructureID":485,"Label":"100020-485 via Conventional from 100021 -> 29185","Type":"Conventional","Directional":true,"Links":[{"SourceID":100021,"TargetID":29185,"Directional":true}]},{"ID":19156,"SourceStructureID":100027,"TargetStructureID":485,"Label":"100027-485 via Conventional from 100028 -> 100026","Type":"Conventional","Directional":true,"Links":[{"SourceID":100028,"TargetID":100026,"Directional":true}]},{"ID":19157,"SourceStructureID":100029,"TargetStructureID":485,"Label":"100029-485 via Conventional from 100030 -> 100025","Type":"Conventional","Directional":true,"Links":[{"SourceID":100030,"TargetID":100025,"Directional":true}]},{"ID":19158,"SourceStructureID":100035,"TargetStructureID":485,"Label":"100035-485 via Conventional from 100036 -> 100031, 100037 -> 29188","Type":"Conventional","Directional":true,"Links":[{"SourceID":100036,"TargetID":100031,"Directional":true},{"SourceID":100037,"TargetID":29188,"Directional":true}]},{"ID":19159,"SourceStructureID":100038,"TargetStructureID":485,"Label":"100038-485 via Conventional from 100039 -> 29187","Type":"Conventional","Directional":true,"Links":[{"SourceID":100039,"TargetID":29187,"Directional":true}]},{"ID":19160,"SourceStructureID":100055,"TargetStructureID":485,"Label":"100055-485 via Conventional from 100056 -> 100054","Type":"Conventional","Directional":true,"Links":[{"SourceID":100056,"TargetID":100054,"Directional":true}]},{"ID":19161,"SourceStructureID":100067,"TargetStructureID":485,"Label":"100067-485 via Conventional from 148033 -> 148032","Type":"Conventional","Directional":true,"Links":[{"SourceID":148033,"TargetID":148032,"Directional":true}]},{"ID":19162,"SourceStructureID":100075,"TargetStructureID":309,"Label":"100075-309 via Conventional from 100079 -> 13370","Type":"Conventional","Directional":true,"Links":[{"SourceID":100079,"TargetID":13370,"Directional":true}]},{"ID":19163,"SourceStructureID":100075,"TargetStructureID":485,"Label":"100075-485 via Conventional from 100080 -> 29191","Type":"Conventional","Directional":true,"Links":[{"SourceID":100080,"TargetID":29191,"Directional":true}]},{"ID":19164,"SourceStructureID":100076,"TargetStructureID":330,"Label":"100076-330 via Conventional from 100078 -> 25916","Type":"Conventional","Directional":true,"Links":[{"SourceID":100078,"TargetID":25916,"Directional":true}]},{"ID":19165,"SourceStructureID":100076,"TargetStructureID":45629,"Label":"100076-45629 via Conventional from 100077 -> 45635","Type":"Conventional","Directional":true,"Links":[{"SourceID":100077,"TargetID":45635,"Directional":true}]},{"ID":19166,"SourceStructureID":100084,"TargetStructureID":485,"Label":"100084-485 via Conventional from 100085 -> 100086","Type":"Conventional","Directional":true,"Links":[{"SourceID":100085,"TargetID":100086,"Directional":true}]},{"ID":19167,"SourceStructureID":100092,"TargetStructureID":485,"Label":"100092-485 via Conventional from 100093 -> 100091","Type":"Conventional","Directional":true,"Links":[{"SourceID":100093,"TargetID":100091,"Directional":true}]},{"ID":19168,"SourceStructureID":100102,"TargetStructureID":485,"Label":"100102-485 via Conventional from 100103 -> 100101","Type":"Conventional","Directional":true,"Links":[{"SourceID":100103,"TargetID":100101,"Directional":true}]},{"ID":19169,"SourceStructureID":100108,"TargetStructureID":485,"Label":"100108-485 via Conventional from 100109 -> 51029","Type":"Conventional","Directional":true,"Links":[{"SourceID":100109,"TargetID":51029,"Directional":true}]},{"ID":19170,"SourceStructureID":100110,"TargetStructureID":5278,"Label":"100110-5278 via Conventional from 100120 -> 20175","Type":"Conventional","Directional":true,"Links":[{"SourceID":100120,"TargetID":20175,"Directional":true}]},{"ID":19171,"SourceStructureID":100113,"TargetStructureID":485,"Label":"100113-485 via Conventional from 100114 -> 51070","Type":"Conventional","Directional":true,"Links":[{"SourceID":100114,"TargetID":51070,"Directional":true}]},{"ID":19172,"SourceStructureID":100135,"TargetStructureID":485,"Label":"100135-485 via Conventional from 100136 -> 100138","Type":"Conventional","Directional":true,"Links":[{"SourceID":100136,"TargetID":100138,"Directional":true}]},{"ID":19173,"SourceStructureID":100146,"TargetStructureID":485,"Label":"100146-485 via Conventional from 100150 -> 50922","Type":"Conventional","Directional":true,"Links":[{"SourceID":100150,"TargetID":50922,"Directional":true}]},{"ID":19174,"SourceStructureID":100147,"TargetStructureID":485,"Label":"100147-485 via Conventional from 100148 -> 50921","Type":"Conventional","Directional":true,"Links":[{"SourceID":100148,"TargetID":50921,"Directional":true}]},{"ID":19175,"SourceStructureID":100152,"TargetStructureID":5278,"Label":"100152-5278 via Conventional from 100155 -> 20166","Type":"Conventional","Directional":true,"Links":[{"SourceID":100155,"TargetID":20166,"Directional":true}]},{"ID":19176,"SourceStructureID":100153,"TargetStructureID":485,"Label":"100153-485 via Conventional from 100154 -> 51072","Type":"Conventional","Directional":true,"Links":[{"SourceID":100154,"TargetID":51072,"Directional":true}]},{"ID":19177,"SourceStructureID":100173,"TargetStructureID":485,"Label":"100173-485 via Conventional from 100185 -> 50691","Type":"Conventional","Directional":true,"Links":[{"SourceID":100185,"TargetID":50691,"Directional":true}]},{"ID":19178,"SourceStructureID":100176,"TargetStructureID":485,"Label":"100176-485 via Conventional from 100177 -> 50852, 100178 -> 50692","Type":"Conventional","Directional":true,"Links":[{"SourceID":100177,"TargetID":50852,"Directional":true},{"SourceID":100178,"TargetID":50692,"Directional":true}]},{"ID":19179,"SourceStructureID":100180,"TargetStructureID":485,"Label":"100180-485 via Conventional from 100181 -> 50688","Type":"Conventional","Directional":true,"Links":[{"SourceID":100181,"TargetID":50688,"Directional":true}]},{"ID":19180,"SourceStructureID":100182,"TargetStructureID":42423,"Label":"100182-42423 via Conventional from 100183 -> 42430","Type":"Conventional","Directional":true,"Links":[{"SourceID":100183,"TargetID":42430,"Directional":true}]},{"ID":19181,"SourceStructureID":100187,"TargetStructureID":485,"Label":"100187-485 via Conventional from 100188 -> 100190","Type":"Conventional","Directional":true,"Links":[{"SourceID":100188,"TargetID":100190,"Directional":true}]},{"ID":19182,"SourceStructureID":100189,"TargetStructureID":42423,"Label":"100189-42423 via Ribbon Synapse from 100191 -> 100184","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":100191,"TargetID":100184,"Directional":true}]},{"ID":19183,"SourceStructureID":100217,"TargetStructureID":485,"Label":"100217-485 via Conventional from 100219 -> 100220","Type":"Conventional","Directional":true,"Links":[{"SourceID":100219,"TargetID":100220,"Directional":true}]},{"ID":19184,"SourceStructureID":100239,"TargetStructureID":1724,"Label":"100239-1724 via Conventional from 100240 -> 100241","Type":"Conventional","Directional":true,"Links":[{"SourceID":100240,"TargetID":100241,"Directional":true}]},{"ID":19185,"SourceStructureID":100254,"TargetStructureID":1724,"Label":"100254-1724 via Conventional from 100255 -> 43310","Type":"Conventional","Directional":true,"Links":[{"SourceID":100255,"TargetID":43310,"Directional":true}]},{"ID":19186,"SourceStructureID":100256,"TargetStructureID":1724,"Label":"100256-1724 via Conventional from 100259 -> 47395","Type":"Conventional","Directional":true,"Links":[{"SourceID":100259,"TargetID":47395,"Directional":true}]},{"ID":19187,"SourceStructureID":100264,"TargetStructureID":485,"Label":"100264-485 via Conventional from 100265 -> 100224, 100267 -> 100268","Type":"Conventional","Directional":true,"Links":[{"SourceID":100265,"TargetID":100224,"Directional":true},{"SourceID":100267,"TargetID":100268,"Directional":true}]},{"ID":19188,"SourceStructureID":100266,"TargetStructureID":1724,"Label":"100266-1724 via Conventional from 100269 -> 100270","Type":"Conventional","Directional":true,"Links":[{"SourceID":100269,"TargetID":100270,"Directional":true}]},{"ID":19189,"SourceStructureID":100275,"TargetStructureID":1724,"Label":"100275-1724 via Conventional from 100276 -> 43313","Type":"Conventional","Directional":true,"Links":[{"SourceID":100276,"TargetID":43313,"Directional":true}]},{"ID":19190,"SourceStructureID":100278,"TargetStructureID":1724,"Label":"100278-1724 via Conventional from 100285 -> 100286","Type":"Conventional","Directional":true,"Links":[{"SourceID":100285,"TargetID":100286,"Directional":true}]},{"ID":19191,"SourceStructureID":100282,"TargetStructureID":485,"Label":"100282-485 via Conventional from 100283 -> 100281","Type":"Conventional","Directional":true,"Links":[{"SourceID":100283,"TargetID":100281,"Directional":true}]},{"ID":19192,"SourceStructureID":100296,"TargetStructureID":485,"Label":"100296-485 via Conventional from 100297 -> 100298","Type":"Conventional","Directional":true,"Links":[{"SourceID":100297,"TargetID":100298,"Directional":true}]},{"ID":19193,"SourceStructureID":100302,"TargetStructureID":485,"Label":"100302-485 via Conventional from 100303 -> 100301","Type":"Conventional","Directional":true,"Links":[{"SourceID":100303,"TargetID":100301,"Directional":true}]},{"ID":19194,"SourceStructureID":100304,"TargetStructureID":485,"Label":"100304-485 via Conventional from 100306 -> 100307","Type":"Conventional","Directional":true,"Links":[{"SourceID":100306,"TargetID":100307,"Directional":true}]},{"ID":19195,"SourceStructureID":100308,"TargetStructureID":485,"Label":"100308-485 via Conventional from 100309 -> 47650","Type":"Conventional","Directional":true,"Links":[{"SourceID":100309,"TargetID":47650,"Directional":true}]},{"ID":19196,"SourceStructureID":100310,"TargetStructureID":1724,"Label":"100310-1724 via Conventional from 100319 -> 100320","Type":"Conventional","Directional":true,"Links":[{"SourceID":100319,"TargetID":100320,"Directional":true}]},{"ID":19197,"SourceStructureID":100322,"TargetStructureID":485,"Label":"100322-485 via Conventional from 100326 -> 51155","Type":"Conventional","Directional":true,"Links":[{"SourceID":100326,"TargetID":51155,"Directional":true}]},{"ID":19198,"SourceStructureID":100332,"TargetStructureID":485,"Label":"100332-485 via Conventional from 100334 -> 100331","Type":"Conventional","Directional":true,"Links":[{"SourceID":100334,"TargetID":100331,"Directional":true}]},{"ID":19199,"SourceStructureID":100335,"TargetStructureID":1724,"Label":"100335-1724 via Conventional from 100336 -> 47366","Type":"Conventional","Directional":true,"Links":[{"SourceID":100336,"TargetID":47366,"Directional":true}]},{"ID":19200,"SourceStructureID":100353,"TargetStructureID":1724,"Label":"100353-1724 via Conventional from 100354 -> 3932","Type":"Conventional","Directional":true,"Links":[{"SourceID":100354,"TargetID":3932,"Directional":true}]},{"ID":19201,"SourceStructureID":100357,"TargetStructureID":485,"Label":"100357-485 via Conventional from 100358 -> 100359","Type":"Conventional","Directional":true,"Links":[{"SourceID":100358,"TargetID":100359,"Directional":true}]},{"ID":19202,"SourceStructureID":100366,"TargetStructureID":1724,"Label":"100366-1724 via Conventional from 100375 -> 100376","Type":"Conventional","Directional":true,"Links":[{"SourceID":100375,"TargetID":100376,"Directional":true}]},{"ID":19203,"SourceStructureID":100371,"TargetStructureID":485,"Label":"100371-485 via Conventional from 100373 -> 100367","Type":"Conventional","Directional":true,"Links":[{"SourceID":100373,"TargetID":100367,"Directional":true}]},{"ID":19204,"SourceStructureID":100374,"TargetStructureID":5278,"Label":"100374-5278 via Conventional from 100377 -> 100378","Type":"Conventional","Directional":true,"Links":[{"SourceID":100377,"TargetID":100378,"Directional":true}]},{"ID":19205,"SourceStructureID":100379,"TargetStructureID":1724,"Label":"100379-1724 via Conventional from 100383 -> 47368","Type":"Conventional","Directional":true,"Links":[{"SourceID":100383,"TargetID":47368,"Directional":true}]},{"ID":19206,"SourceStructureID":100400,"TargetStructureID":5278,"Label":"100400-5278 via Conventional from 100403 -> 8979","Type":"Conventional","Directional":true,"Links":[{"SourceID":100403,"TargetID":8979,"Directional":true}]},{"ID":19207,"SourceStructureID":100401,"TargetStructureID":485,"Label":"100401-485 via Conventional from 100402 -> 51050","Type":"Conventional","Directional":true,"Links":[{"SourceID":100402,"TargetID":51050,"Directional":true}]},{"ID":19208,"SourceStructureID":100413,"TargetStructureID":1724,"Label":"100413-1724 via Conventional from 100415 -> 4025","Type":"Conventional","Directional":true,"Links":[{"SourceID":100415,"TargetID":4025,"Directional":true}]},{"ID":19209,"SourceStructureID":100414,"TargetStructureID":5278,"Label":"100414-5278 via Conventional from 100434 -> 8978","Type":"Conventional","Directional":true,"Links":[{"SourceID":100434,"TargetID":8978,"Directional":true}]},{"ID":19210,"SourceStructureID":100419,"TargetStructureID":1724,"Label":"100419-1724 via Conventional from 100420 -> 100421","Type":"Conventional","Directional":true,"Links":[{"SourceID":100420,"TargetID":100421,"Directional":true}]},{"ID":19211,"SourceStructureID":100426,"TargetStructureID":485,"Label":"100426-485 via Conventional from 100431 -> 51154","Type":"Conventional","Directional":true,"Links":[{"SourceID":100431,"TargetID":51154,"Directional":true}]},{"ID":19212,"SourceStructureID":100445,"TargetStructureID":5278,"Label":"100445-5278 via Conventional from 100446 -> 100447","Type":"Conventional","Directional":true,"Links":[{"SourceID":100446,"TargetID":100447,"Directional":true}]},{"ID":19213,"SourceStructureID":100448,"TargetStructureID":485,"Label":"100448-485 via Conventional from 100449 -> 51151","Type":"Conventional","Directional":true,"Links":[{"SourceID":100449,"TargetID":51151,"Directional":true}]},{"ID":19214,"SourceStructureID":100450,"TargetStructureID":5278,"Label":"100450-5278 via Conventional from 100457 -> 100458","Type":"Conventional","Directional":true,"Links":[{"SourceID":100457,"TargetID":100458,"Directional":true}]},{"ID":19215,"SourceStructureID":100467,"TargetStructureID":18576,"Label":"100467-18576 via Conventional from 100468 -> 100466","Type":"Conventional","Directional":true,"Links":[{"SourceID":100468,"TargetID":100466,"Directional":true}]},{"ID":19216,"SourceStructureID":100479,"TargetStructureID":485,"Label":"100479-485 via Conventional from 100480 -> 100478","Type":"Conventional","Directional":true,"Links":[{"SourceID":100480,"TargetID":100478,"Directional":true}]},{"ID":19217,"SourceStructureID":100498,"TargetStructureID":485,"Label":"100498-485 via Conventional from 100505 -> 100507","Type":"Conventional","Directional":true,"Links":[{"SourceID":100505,"TargetID":100507,"Directional":true}]},{"ID":19218,"SourceStructureID":100503,"TargetStructureID":5278,"Label":"100503-5278 via Conventional from 100504 -> 92148","Type":"Conventional","Directional":true,"Links":[{"SourceID":100504,"TargetID":92148,"Directional":true}]},{"ID":19219,"SourceStructureID":100512,"TargetStructureID":485,"Label":"100512-485 via Conventional from 100513 -> 100506","Type":"Conventional","Directional":true,"Links":[{"SourceID":100513,"TargetID":100506,"Directional":true}]},{"ID":19220,"SourceStructureID":100516,"TargetStructureID":1724,"Label":"100516-1724 via Conventional from 100517 -> 4019","Type":"Conventional","Directional":true,"Links":[{"SourceID":100517,"TargetID":4019,"Directional":true}]},{"ID":19221,"SourceStructureID":100524,"TargetStructureID":5278,"Label":"100524-5278 via Conventional from 100525 -> 100526","Type":"Conventional","Directional":true,"Links":[{"SourceID":100525,"TargetID":100526,"Directional":true}]},{"ID":19222,"SourceStructureID":100541,"TargetStructureID":485,"Label":"100541-485 via Conventional from 100542 -> 100535","Type":"Conventional","Directional":true,"Links":[{"SourceID":100542,"TargetID":100535,"Directional":true}]},{"ID":19223,"SourceStructureID":100546,"TargetStructureID":1724,"Label":"100546-1724 via Conventional from 100549 -> 3978","Type":"Conventional","Directional":true,"Links":[{"SourceID":100549,"TargetID":3978,"Directional":true}]},{"ID":19224,"SourceStructureID":100548,"TargetStructureID":5278,"Label":"100548-5278 via Conventional from 100756 -> 100757","Type":"Conventional","Directional":true,"Links":[{"SourceID":100756,"TargetID":100757,"Directional":true}]},{"ID":19225,"SourceStructureID":100557,"TargetStructureID":1724,"Label":"100557-1724 via Conventional from 100558 -> 3980","Type":"Conventional","Directional":true,"Links":[{"SourceID":100558,"TargetID":3980,"Directional":true}]},{"ID":19226,"SourceStructureID":100564,"TargetStructureID":1724,"Label":"100564-1724 via Conventional from 100571 -> 3936","Type":"Conventional","Directional":true,"Links":[{"SourceID":100571,"TargetID":3936,"Directional":true}]},{"ID":19227,"SourceStructureID":100572,"TargetStructureID":1724,"Label":"100572-1724 via Conventional from 100583 -> 100584","Type":"Conventional","Directional":true,"Links":[{"SourceID":100583,"TargetID":100584,"Directional":true}]},{"ID":19228,"SourceStructureID":100578,"TargetStructureID":485,"Label":"100578-485 via Conventional from 100579 -> 100532","Type":"Conventional","Directional":true,"Links":[{"SourceID":100579,"TargetID":100532,"Directional":true}]},{"ID":19229,"SourceStructureID":100588,"TargetStructureID":100588,"Label":"100588-100588 via Conventional from 148050 -> 100589","Type":"Conventional","Directional":true,"Links":[{"SourceID":148050,"TargetID":100589,"Directional":true}]},{"ID":19230,"SourceStructureID":100593,"TargetStructureID":1724,"Label":"100593-1724 via Conventional from 100598 -> 3942","Type":"Conventional","Directional":true,"Links":[{"SourceID":100598,"TargetID":3942,"Directional":true}]},{"ID":19231,"SourceStructureID":100596,"TargetStructureID":485,"Label":"100596-485 via Conventional from 100597 -> 100595","Type":"Conventional","Directional":true,"Links":[{"SourceID":100597,"TargetID":100595,"Directional":true}]},{"ID":19232,"SourceStructureID":100644,"TargetStructureID":485,"Label":"100644-485 via Conventional from 100645 -> 100643","Type":"Conventional","Directional":true,"Links":[{"SourceID":100645,"TargetID":100643,"Directional":true}]},{"ID":19233,"SourceStructureID":100648,"TargetStructureID":485,"Label":"100648-485 via Conventional from 100649 -> 100650","Type":"Conventional","Directional":true,"Links":[{"SourceID":100649,"TargetID":100650,"Directional":true}]},{"ID":19234,"SourceStructureID":100651,"TargetStructureID":1724,"Label":"100651-1724 via Conventional from 100660 -> 3950","Type":"Conventional","Directional":true,"Links":[{"SourceID":100660,"TargetID":3950,"Directional":true}]},{"ID":19235,"SourceStructureID":100654,"TargetStructureID":485,"Label":"100654-485 via Conventional from 100656 -> 100670","Type":"Conventional","Directional":true,"Links":[{"SourceID":100656,"TargetID":100670,"Directional":true}]},{"ID":19236,"SourceStructureID":100664,"TargetStructureID":1724,"Label":"100664-1724 via Conventional from 100665 -> 100666","Type":"Conventional","Directional":true,"Links":[{"SourceID":100665,"TargetID":100666,"Directional":true}]},{"ID":19237,"SourceStructureID":100667,"TargetStructureID":1724,"Label":"100667-1724 via Conventional from 100668 -> 3953","Type":"Conventional","Directional":true,"Links":[{"SourceID":100668,"TargetID":3953,"Directional":true}]},{"ID":19238,"SourceStructureID":100669,"TargetStructureID":1724,"Label":"100669-1724 via Conventional from 100673 -> 3945","Type":"Conventional","Directional":true,"Links":[{"SourceID":100673,"TargetID":3945,"Directional":true}]},{"ID":19239,"SourceStructureID":100674,"TargetStructureID":1724,"Label":"100674-1724 via Conventional from 100675 -> 100676","Type":"Conventional","Directional":true,"Links":[{"SourceID":100675,"TargetID":100676,"Directional":true}]},{"ID":19240,"SourceStructureID":100677,"TargetStructureID":485,"Label":"100677-485 via Conventional from 100678 -> 100652","Type":"Conventional","Directional":true,"Links":[{"SourceID":100678,"TargetID":100652,"Directional":true}]},{"ID":19241,"SourceStructureID":100692,"TargetStructureID":1724,"Label":"100692-1724 via Conventional from 100694 -> 100696","Type":"Conventional","Directional":true,"Links":[{"SourceID":100694,"TargetID":100696,"Directional":true}]},{"ID":19242,"SourceStructureID":100706,"TargetStructureID":485,"Label":"100706-485 via Conventional from 100707 -> 51089","Type":"Conventional","Directional":true,"Links":[{"SourceID":100707,"TargetID":51089,"Directional":true}]},{"ID":19243,"SourceStructureID":100709,"TargetStructureID":485,"Label":"100709-485 via Conventional from 100710 -> 100708","Type":"Conventional","Directional":true,"Links":[{"SourceID":100710,"TargetID":100708,"Directional":true}]},{"ID":19244,"SourceStructureID":100713,"TargetStructureID":485,"Label":"100713-485 via Conventional from 100714 -> 51087","Type":"Conventional","Directional":true,"Links":[{"SourceID":100714,"TargetID":51087,"Directional":true}]},{"ID":19245,"SourceStructureID":100729,"TargetStructureID":485,"Label":"100729-485 via Conventional from 100730 -> 100728","Type":"Conventional","Directional":true,"Links":[{"SourceID":100730,"TargetID":100728,"Directional":true}]},{"ID":19246,"SourceStructureID":100733,"TargetStructureID":100737,"Label":"100733-100737 via Conventional from 100736 -> 100738","Type":"Conventional","Directional":true,"Links":[{"SourceID":100736,"TargetID":100738,"Directional":true}]},{"ID":19247,"SourceStructureID":100741,"TargetStructureID":485,"Label":"100741-485 via Conventional from 100742 -> 47524","Type":"Conventional","Directional":true,"Links":[{"SourceID":100742,"TargetID":47524,"Directional":true}]},{"ID":19248,"SourceStructureID":100741,"TargetStructureID":24401,"Label":"100741-24401 via Conventional from 100743 -> 34747","Type":"Conventional","Directional":true,"Links":[{"SourceID":100743,"TargetID":34747,"Directional":true}]},{"ID":19249,"SourceStructureID":100744,"TargetStructureID":485,"Label":"100744-485 via Conventional from 100755 -> 47527","Type":"Conventional","Directional":true,"Links":[{"SourceID":100755,"TargetID":47527,"Directional":true}]},{"ID":19250,"SourceStructureID":100745,"TargetStructureID":485,"Label":"100745-485 via Conventional from 100760 -> 47526","Type":"Conventional","Directional":true,"Links":[{"SourceID":100760,"TargetID":47526,"Directional":true}]},{"ID":19251,"SourceStructureID":100763,"TargetStructureID":5278,"Label":"100763-5278 via Conventional from 147291 -> 147292","Type":"Conventional","Directional":true,"Links":[{"SourceID":147291,"TargetID":147292,"Directional":true}]},{"ID":19252,"SourceStructureID":100765,"TargetStructureID":3116,"Label":"100765-3116 via Conventional from 100766 -> 28000","Type":"Conventional","Directional":true,"Links":[{"SourceID":100766,"TargetID":28000,"Directional":true}]},{"ID":19253,"SourceStructureID":100771,"TargetStructureID":485,"Label":"100771-485 via Conventional from 100772 -> 100770","Type":"Conventional","Directional":true,"Links":[{"SourceID":100772,"TargetID":100770,"Directional":true}]},{"ID":19254,"SourceStructureID":100771,"TargetStructureID":100787,"Label":"100771-100787 via Conventional from 100784 -> 100789","Type":"Conventional","Directional":true,"Links":[{"SourceID":100784,"TargetID":100789,"Directional":true}]},{"ID":19255,"SourceStructureID":100775,"TargetStructureID":5278,"Label":"100775-5278 via Conventional from 147294 -> 147293","Type":"Conventional","Directional":true,"Links":[{"SourceID":147294,"TargetID":147293,"Directional":true}]},{"ID":19256,"SourceStructureID":100780,"TargetStructureID":5279,"Label":"100780-5279 via Conventional from 100783 -> 49214","Type":"Conventional","Directional":true,"Links":[{"SourceID":100783,"TargetID":49214,"Directional":true}]},{"ID":19257,"SourceStructureID":100808,"TargetStructureID":4568,"Label":"100808-4568 via Conventional from 100809 -> 11579","Type":"Conventional","Directional":true,"Links":[{"SourceID":100809,"TargetID":11579,"Directional":true}]},{"ID":19258,"SourceStructureID":100816,"TargetStructureID":5278,"Label":"100816-5278 via Conventional from 147302 -> 147301","Type":"Conventional","Directional":true,"Links":[{"SourceID":147302,"TargetID":147301,"Directional":true}]},{"ID":19259,"SourceStructureID":100819,"TargetStructureID":485,"Label":"100819-485 via Conventional from 100821 -> 47620","Type":"Conventional","Directional":true,"Links":[{"SourceID":100821,"TargetID":47620,"Directional":true}]},{"ID":19260,"SourceStructureID":100820,"TargetStructureID":485,"Label":"100820-485 via Conventional from 100823 -> 47619","Type":"Conventional","Directional":true,"Links":[{"SourceID":100823,"TargetID":47619,"Directional":true}]},{"ID":19261,"SourceStructureID":100826,"TargetStructureID":485,"Label":"100826-485 via Conventional from 100827 -> 100833","Type":"Conventional","Directional":true,"Links":[{"SourceID":100827,"TargetID":100833,"Directional":true}]},{"ID":19262,"SourceStructureID":100828,"TargetStructureID":5278,"Label":"100828-5278 via Conventional from 103961 -> 103962","Type":"Conventional","Directional":true,"Links":[{"SourceID":103961,"TargetID":103962,"Directional":true}]},{"ID":19263,"SourceStructureID":100834,"TargetStructureID":142,"Label":"100834-142 via Conventional from 126139 -> 126138","Type":"Conventional","Directional":true,"Links":[{"SourceID":126139,"TargetID":126138,"Directional":true}]},{"ID":19264,"SourceStructureID":100835,"TargetStructureID":485,"Label":"100835-485 via Conventional from 100836 -> 47627","Type":"Conventional","Directional":true,"Links":[{"SourceID":100836,"TargetID":47627,"Directional":true}]},{"ID":19265,"SourceStructureID":100837,"TargetStructureID":485,"Label":"100837-485 via Conventional from 100838 -> 47624, 100869 -> 100855","Type":"Conventional","Directional":true,"Links":[{"SourceID":100838,"TargetID":47624,"Directional":true},{"SourceID":100869,"TargetID":100855,"Directional":true}]},{"ID":19266,"SourceStructureID":100846,"TargetStructureID":1724,"Label":"100846-1724 via Conventional from 100849 -> 20184","Type":"Conventional","Directional":true,"Links":[{"SourceID":100849,"TargetID":20184,"Directional":true}]},{"ID":19267,"SourceStructureID":100850,"TargetStructureID":485,"Label":"100850-485 via Conventional from 100854 -> 100848","Type":"Conventional","Directional":true,"Links":[{"SourceID":100854,"TargetID":100848,"Directional":true}]},{"ID":19268,"SourceStructureID":100852,"TargetStructureID":1724,"Label":"100852-1724 via Conventional from 100863 -> 100864","Type":"Conventional","Directional":true,"Links":[{"SourceID":100863,"TargetID":100864,"Directional":true}]},{"ID":19269,"SourceStructureID":100853,"TargetStructureID":1724,"Label":"100853-1724 via Conventional from 100858 -> 100859","Type":"Conventional","Directional":true,"Links":[{"SourceID":100858,"TargetID":100859,"Directional":true}]},{"ID":19270,"SourceStructureID":100865,"TargetStructureID":1724,"Label":"100865-1724 via Conventional from 100866 -> 100867","Type":"Conventional","Directional":true,"Links":[{"SourceID":100866,"TargetID":100867,"Directional":true}]},{"ID":19271,"SourceStructureID":100871,"TargetStructureID":1724,"Label":"100871-1724 via Conventional from 100872 -> 20188","Type":"Conventional","Directional":true,"Links":[{"SourceID":100872,"TargetID":20188,"Directional":true}]},{"ID":19272,"SourceStructureID":100874,"TargetStructureID":1724,"Label":"100874-1724 via Conventional from 100875 -> 100876","Type":"Conventional","Directional":true,"Links":[{"SourceID":100875,"TargetID":100876,"Directional":true}]},{"ID":19273,"SourceStructureID":100882,"TargetStructureID":1724,"Label":"100882-1724 via Conventional from 100886 -> 20190","Type":"Conventional","Directional":true,"Links":[{"SourceID":100886,"TargetID":20190,"Directional":true}]},{"ID":19274,"SourceStructureID":100888,"TargetStructureID":1724,"Label":"100888-1724 via Conventional from 100889 -> 100890","Type":"Conventional","Directional":true,"Links":[{"SourceID":100889,"TargetID":100890,"Directional":true}]},{"ID":19275,"SourceStructureID":100895,"TargetStructureID":485,"Label":"100895-485 via Conventional from 100904 -> 100905","Type":"Conventional","Directional":true,"Links":[{"SourceID":100904,"TargetID":100905,"Directional":true}]},{"ID":19276,"SourceStructureID":100896,"TargetStructureID":1724,"Label":"100896-1724 via Conventional from 100897 -> 100898","Type":"Conventional","Directional":true,"Links":[{"SourceID":100897,"TargetID":100898,"Directional":true}]},{"ID":19277,"SourceStructureID":100913,"TargetStructureID":485,"Label":"100913-485 via Conventional from 100914 -> 100912","Type":"Conventional","Directional":true,"Links":[{"SourceID":100914,"TargetID":100912,"Directional":true}]},{"ID":19278,"SourceStructureID":100931,"TargetStructureID":485,"Label":"100931-485 via Conventional from 100932 -> 100930","Type":"Conventional","Directional":true,"Links":[{"SourceID":100932,"TargetID":100930,"Directional":true}]},{"ID":19279,"SourceStructureID":100934,"TargetStructureID":485,"Label":"100934-485 via Conventional from 100935 -> 100933","Type":"Conventional","Directional":true,"Links":[{"SourceID":100935,"TargetID":100933,"Directional":true}]},{"ID":19280,"SourceStructureID":100953,"TargetStructureID":485,"Label":"100953-485 via Conventional from 100958 -> 100951","Type":"Conventional","Directional":true,"Links":[{"SourceID":100958,"TargetID":100951,"Directional":true}]},{"ID":19281,"SourceStructureID":100953,"TargetStructureID":101015,"Label":"100953-101015 via Conventional from 101019 -> 101018","Type":"Conventional","Directional":true,"Links":[{"SourceID":101019,"TargetID":101018,"Directional":true}]},{"ID":19282,"SourceStructureID":100972,"TargetStructureID":485,"Label":"100972-485 via Conventional from 100973 -> 100970","Type":"Conventional","Directional":true,"Links":[{"SourceID":100973,"TargetID":100970,"Directional":true}]},{"ID":19283,"SourceStructureID":100972,"TargetStructureID":100913,"Label":"100972-100913 via Conventional from 100974 -> 100916","Type":"Conventional","Directional":true,"Links":[{"SourceID":100974,"TargetID":100916,"Directional":true}]},{"ID":19284,"SourceStructureID":100981,"TargetStructureID":485,"Label":"100981-485 via Conventional from 100982 -> 100983","Type":"Conventional","Directional":true,"Links":[{"SourceID":100982,"TargetID":100983,"Directional":true}]},{"ID":19285,"SourceStructureID":101000,"TargetStructureID":485,"Label":"101000-485 via Conventional from 101001 -> 101002","Type":"Conventional","Directional":true,"Links":[{"SourceID":101001,"TargetID":101002,"Directional":true}]},{"ID":19286,"SourceStructureID":101004,"TargetStructureID":485,"Label":"101004-485 via Conventional from 101005 -> 101003","Type":"Conventional","Directional":true,"Links":[{"SourceID":101005,"TargetID":101003,"Directional":true}]},{"ID":19287,"SourceStructureID":101015,"TargetStructureID":485,"Label":"101015-485 via Conventional from 101016 -> 101014","Type":"Conventional","Directional":true,"Links":[{"SourceID":101016,"TargetID":101014,"Directional":true}]},{"ID":19288,"SourceStructureID":101034,"TargetStructureID":485,"Label":"101034-485 via Conventional from 101035 -> 101036","Type":"Conventional","Directional":true,"Links":[{"SourceID":101035,"TargetID":101036,"Directional":true}]},{"ID":19289,"SourceStructureID":101041,"TargetStructureID":485,"Label":"101041-485 via Conventional from 101044 -> 101037","Type":"Conventional","Directional":true,"Links":[{"SourceID":101044,"TargetID":101037,"Directional":true}]},{"ID":19290,"SourceStructureID":101045,"TargetStructureID":485,"Label":"101045-485 via Conventional from 101046 -> 101038","Type":"Conventional","Directional":true,"Links":[{"SourceID":101046,"TargetID":101038,"Directional":true}]},{"ID":19291,"SourceStructureID":101050,"TargetStructureID":485,"Label":"101050-485 via Conventional from 101051 -> 101049, 101056 -> 101057","Type":"Conventional","Directional":true,"Links":[{"SourceID":101051,"TargetID":101049,"Directional":true},{"SourceID":101056,"TargetID":101057,"Directional":true}]},{"ID":19292,"SourceStructureID":101075,"TargetStructureID":485,"Label":"101075-485 via Conventional from 101076 -> 101077","Type":"Conventional","Directional":true,"Links":[{"SourceID":101076,"TargetID":101077,"Directional":true}]},{"ID":19293,"SourceStructureID":101085,"TargetStructureID":485,"Label":"101085-485 via Conventional from 101086 -> 101084","Type":"Conventional","Directional":true,"Links":[{"SourceID":101086,"TargetID":101084,"Directional":true}]},{"ID":19294,"SourceStructureID":101090,"TargetStructureID":485,"Label":"101090-485 via Conventional from 101091 -> 50886","Type":"Conventional","Directional":true,"Links":[{"SourceID":101091,"TargetID":50886,"Directional":true}]},{"ID":19295,"SourceStructureID":101099,"TargetStructureID":485,"Label":"101099-485 via Conventional from 101100 -> 101098","Type":"Conventional","Directional":true,"Links":[{"SourceID":101100,"TargetID":101098,"Directional":true}]},{"ID":19296,"SourceStructureID":101108,"TargetStructureID":485,"Label":"101108-485 via Conventional from 101109 -> 101110","Type":"Conventional","Directional":true,"Links":[{"SourceID":101109,"TargetID":101110,"Directional":true}]},{"ID":19297,"SourceStructureID":101115,"TargetStructureID":485,"Label":"101115-485 via Conventional from 101116 -> 35123","Type":"Conventional","Directional":true,"Links":[{"SourceID":101116,"TargetID":35123,"Directional":true}]},{"ID":19298,"SourceStructureID":101117,"TargetStructureID":485,"Label":"101117-485 via Conventional from 101118 -> 35125","Type":"Conventional","Directional":true,"Links":[{"SourceID":101118,"TargetID":35125,"Directional":true}]},{"ID":19299,"SourceStructureID":101124,"TargetStructureID":485,"Label":"101124-485 via Conventional from 101125 -> 101123","Type":"Conventional","Directional":true,"Links":[{"SourceID":101125,"TargetID":101123,"Directional":true}]},{"ID":19300,"SourceStructureID":101129,"TargetStructureID":485,"Label":"101129-485 via Conventional from 101131 -> 47542","Type":"Conventional","Directional":true,"Links":[{"SourceID":101131,"TargetID":47542,"Directional":true}]},{"ID":19301,"SourceStructureID":101142,"TargetStructureID":485,"Label":"101142-485 via Conventional from 101143 -> 101141","Type":"Conventional","Directional":true,"Links":[{"SourceID":101143,"TargetID":101141,"Directional":true}]},{"ID":19302,"SourceStructureID":101161,"TargetStructureID":485,"Label":"101161-485 via Conventional from 101167 -> 101160","Type":"Conventional","Directional":true,"Links":[{"SourceID":101167,"TargetID":101160,"Directional":true}]},{"ID":19303,"SourceStructureID":101187,"TargetStructureID":483,"Label":"101187-483 via Conventional from 101188 -> 92325","Type":"Conventional","Directional":true,"Links":[{"SourceID":101188,"TargetID":92325,"Directional":true}]},{"ID":19304,"SourceStructureID":101190,"TargetStructureID":485,"Label":"101190-485 via Conventional from 101192 -> 101193","Type":"Conventional","Directional":true,"Links":[{"SourceID":101192,"TargetID":101193,"Directional":true}]},{"ID":19305,"SourceStructureID":101194,"TargetStructureID":485,"Label":"101194-485 via Conventional from 101196 -> 101198","Type":"Conventional","Directional":true,"Links":[{"SourceID":101196,"TargetID":101198,"Directional":true}]},{"ID":19306,"SourceStructureID":101201,"TargetStructureID":485,"Label":"101201-485 via Conventional from 101202 -> 101203","Type":"Conventional","Directional":true,"Links":[{"SourceID":101202,"TargetID":101203,"Directional":true}]},{"ID":19307,"SourceStructureID":101213,"TargetStructureID":485,"Label":"101213-485 via Conventional from 101214 -> 101215","Type":"Conventional","Directional":true,"Links":[{"SourceID":101214,"TargetID":101215,"Directional":true}]},{"ID":19308,"SourceStructureID":101218,"TargetStructureID":485,"Label":"101218-485 via Conventional from 101219 -> 101217","Type":"Conventional","Directional":true,"Links":[{"SourceID":101219,"TargetID":101217,"Directional":true}]},{"ID":19309,"SourceStructureID":101230,"TargetStructureID":485,"Label":"101230-485 via Conventional from 101231 -> 101232","Type":"Conventional","Directional":true,"Links":[{"SourceID":101231,"TargetID":101232,"Directional":true}]},{"ID":19310,"SourceStructureID":101234,"TargetStructureID":419,"Label":"101234-419 via Conventional from 133538 -> 133537","Type":"Conventional","Directional":true,"Links":[{"SourceID":133538,"TargetID":133537,"Directional":true}]},{"ID":19311,"SourceStructureID":101234,"TargetStructureID":485,"Label":"101234-485 via Conventional from 101235 -> 101233","Type":"Conventional","Directional":true,"Links":[{"SourceID":101235,"TargetID":101233,"Directional":true}]},{"ID":19312,"SourceStructureID":101238,"TargetStructureID":101220,"Label":"101238-101220 via Conventional from 101240 -> 101241","Type":"Conventional","Directional":true,"Links":[{"SourceID":101240,"TargetID":101241,"Directional":true}]},{"ID":19313,"SourceStructureID":101243,"TargetStructureID":485,"Label":"101243-485 via Conventional from 101244 -> 101242","Type":"Conventional","Directional":true,"Links":[{"SourceID":101244,"TargetID":101242,"Directional":true}]},{"ID":19314,"SourceStructureID":101247,"TargetStructureID":5563,"Label":"101247-5563 via Conventional from 101293 -> 101297","Type":"Conventional","Directional":true,"Links":[{"SourceID":101293,"TargetID":101297,"Directional":true}]},{"ID":19315,"SourceStructureID":101247,"TargetStructureID":5563,"Label":"101247-5563 via Unknown from 101300 -> 101301","Type":"Unknown","Directional":true,"Links":[{"SourceID":101300,"TargetID":101301,"Directional":true}]},{"ID":19316,"SourceStructureID":101249,"TargetStructureID":485,"Label":"101249-485 via Conventional from 101250 -> 101251","Type":"Conventional","Directional":true,"Links":[{"SourceID":101250,"TargetID":101251,"Directional":true}]},{"ID":19317,"SourceStructureID":101257,"TargetStructureID":485,"Label":"101257-485 via Conventional from 101260 -> 101256","Type":"Conventional","Directional":true,"Links":[{"SourceID":101260,"TargetID":101256,"Directional":true}]},{"ID":19318,"SourceStructureID":101257,"TargetStructureID":101261,"Label":"101257-101261 via Conventional from 101258 -> 101264","Type":"Conventional","Directional":true,"Links":[{"SourceID":101258,"TargetID":101264,"Directional":true}]},{"ID":19319,"SourceStructureID":101277,"TargetStructureID":485,"Label":"101277-485 via Conventional from 101278 -> 101276","Type":"Conventional","Directional":true,"Links":[{"SourceID":101278,"TargetID":101276,"Directional":true}]},{"ID":19320,"SourceStructureID":101287,"TargetStructureID":485,"Label":"101287-485 via Conventional from 101288 -> 101286","Type":"Conventional","Directional":true,"Links":[{"SourceID":101288,"TargetID":101286,"Directional":true}]},{"ID":19321,"SourceStructureID":101314,"TargetStructureID":485,"Label":"101314-485 via Conventional from 101316 -> 101317","Type":"Conventional","Directional":true,"Links":[{"SourceID":101316,"TargetID":101317,"Directional":true}]},{"ID":19322,"SourceStructureID":101318,"TargetStructureID":485,"Label":"101318-485 via Conventional from 101319 -> 47554","Type":"Conventional","Directional":true,"Links":[{"SourceID":101319,"TargetID":47554,"Directional":true}]},{"ID":19323,"SourceStructureID":101324,"TargetStructureID":485,"Label":"101324-485 via Conventional from 101329 -> 101323","Type":"Conventional","Directional":true,"Links":[{"SourceID":101329,"TargetID":101323,"Directional":true}]},{"ID":19324,"SourceStructureID":101325,"TargetStructureID":6156,"Label":"101325-6156 via Conventional from 101327 -> 101280","Type":"Conventional","Directional":true,"Links":[{"SourceID":101327,"TargetID":101280,"Directional":true}]},{"ID":19325,"SourceStructureID":101331,"TargetStructureID":485,"Label":"101331-485 via Conventional from 101335 -> 47547","Type":"Conventional","Directional":true,"Links":[{"SourceID":101335,"TargetID":47547,"Directional":true}]},{"ID":19326,"SourceStructureID":101332,"TargetStructureID":380,"Label":"101332-380 via Conventional from 101333 -> 101334","Type":"Conventional","Directional":true,"Links":[{"SourceID":101333,"TargetID":101334,"Directional":true}]},{"ID":19327,"SourceStructureID":101339,"TargetStructureID":17533,"Label":"101339-17533 via Conventional from 101387 -> 101388","Type":"Conventional","Directional":true,"Links":[{"SourceID":101387,"TargetID":101388,"Directional":true}]},{"ID":19328,"SourceStructureID":101341,"TargetStructureID":485,"Label":"101341-485 via Conventional from 101342 -> 101340","Type":"Conventional","Directional":true,"Links":[{"SourceID":101342,"TargetID":101340,"Directional":true}]},{"ID":19329,"SourceStructureID":101355,"TargetStructureID":485,"Label":"101355-485 via Conventional from 101356 -> 101354","Type":"Conventional","Directional":true,"Links":[{"SourceID":101356,"TargetID":101354,"Directional":true}]},{"ID":19330,"SourceStructureID":101360,"TargetStructureID":485,"Label":"101360-485 via Conventional from 101361 -> 101359","Type":"Conventional","Directional":true,"Links":[{"SourceID":101361,"TargetID":101359,"Directional":true}]},{"ID":19331,"SourceStructureID":101368,"TargetStructureID":485,"Label":"101368-485 via Conventional from 101372 -> 101367","Type":"Conventional","Directional":true,"Links":[{"SourceID":101372,"TargetID":101367,"Directional":true}]},{"ID":19332,"SourceStructureID":101378,"TargetStructureID":485,"Label":"101378-485 via Conventional from 101379 -> 101377","Type":"Conventional","Directional":true,"Links":[{"SourceID":101379,"TargetID":101377,"Directional":true}]},{"ID":19333,"SourceStructureID":101384,"TargetStructureID":485,"Label":"101384-485 via Conventional from 101385 -> 101386","Type":"Conventional","Directional":true,"Links":[{"SourceID":101385,"TargetID":101386,"Directional":true}]},{"ID":19334,"SourceStructureID":101392,"TargetStructureID":485,"Label":"101392-485 via Conventional from 101393 -> 101391","Type":"Conventional","Directional":true,"Links":[{"SourceID":101393,"TargetID":101391,"Directional":true}]},{"ID":19335,"SourceStructureID":101396,"TargetStructureID":485,"Label":"101396-485 via Conventional from 101397 -> 101395","Type":"Conventional","Directional":true,"Links":[{"SourceID":101397,"TargetID":101395,"Directional":true}]},{"ID":19336,"SourceStructureID":101401,"TargetStructureID":11401,"Label":"101401-11401 via Conventional from 102104 -> 102106","Type":"Conventional","Directional":true,"Links":[{"SourceID":102104,"TargetID":102106,"Directional":true}]},{"ID":19337,"SourceStructureID":101402,"TargetStructureID":2610,"Label":"101402-2610 via Conventional from 101403 -> 2833","Type":"Conventional","Directional":true,"Links":[{"SourceID":101403,"TargetID":2833,"Directional":true}]},{"ID":19338,"SourceStructureID":101402,"TargetStructureID":10826,"Label":"101402-10826 via Conventional from 102074 -> 102076, 102075 -> 102077","Type":"Conventional","Directional":true,"Links":[{"SourceID":102074,"TargetID":102076,"Directional":true},{"SourceID":102075,"TargetID":102077,"Directional":true}]},{"ID":19339,"SourceStructureID":101428,"TargetStructureID":485,"Label":"101428-485 via Conventional from 101429 -> 101427, 101432 -> 101433","Type":"Conventional","Directional":true,"Links":[{"SourceID":101429,"TargetID":101427,"Directional":true},{"SourceID":101432,"TargetID":101433,"Directional":true}]},{"ID":19340,"SourceStructureID":101439,"TargetStructureID":485,"Label":"101439-485 via Conventional from 101451 -> 101450","Type":"Conventional","Directional":true,"Links":[{"SourceID":101451,"TargetID":101450,"Directional":true}]},{"ID":19341,"SourceStructureID":101439,"TargetStructureID":6997,"Label":"101439-6997 via Conventional from 101444 -> 101445","Type":"Conventional","Directional":true,"Links":[{"SourceID":101444,"TargetID":101445,"Directional":true}]},{"ID":19342,"SourceStructureID":101439,"TargetStructureID":9693,"Label":"101439-9693 via Conventional from 101441 -> 9890","Type":"Conventional","Directional":true,"Links":[{"SourceID":101441,"TargetID":9890,"Directional":true}]},{"ID":19343,"SourceStructureID":101455,"TargetStructureID":485,"Label":"101455-485 via Conventional from 101456 -> 101454","Type":"Conventional","Directional":true,"Links":[{"SourceID":101456,"TargetID":101454,"Directional":true}]},{"ID":19344,"SourceStructureID":101458,"TargetStructureID":485,"Label":"101458-485 via Conventional from 101459 -> 101457","Type":"Conventional","Directional":true,"Links":[{"SourceID":101459,"TargetID":101457,"Directional":true}]},{"ID":19345,"SourceStructureID":101461,"TargetStructureID":485,"Label":"101461-485 via Conventional from 101462 -> 101460","Type":"Conventional","Directional":true,"Links":[{"SourceID":101462,"TargetID":101460,"Directional":true}]},{"ID":19346,"SourceStructureID":101464,"TargetStructureID":485,"Label":"101464-485 via Conventional from 101465 -> 101463","Type":"Conventional","Directional":true,"Links":[{"SourceID":101465,"TargetID":101463,"Directional":true}]},{"ID":19347,"SourceStructureID":101470,"TargetStructureID":485,"Label":"101470-485 via Conventional from 101471 -> 101469","Type":"Conventional","Directional":true,"Links":[{"SourceID":101471,"TargetID":101469,"Directional":true}]},{"ID":19348,"SourceStructureID":101489,"TargetStructureID":485,"Label":"101489-485 via Conventional from 101490 -> 101491","Type":"Conventional","Directional":true,"Links":[{"SourceID":101490,"TargetID":101491,"Directional":true}]},{"ID":19349,"SourceStructureID":101507,"TargetStructureID":1724,"Label":"101507-1724 via Conventional from 101508 -> 20192","Type":"Conventional","Directional":true,"Links":[{"SourceID":101508,"TargetID":20192,"Directional":true}]},{"ID":19350,"SourceStructureID":101509,"TargetStructureID":1724,"Label":"101509-1724 via Conventional from 101510 -> 20196","Type":"Conventional","Directional":true,"Links":[{"SourceID":101510,"TargetID":20196,"Directional":true}]},{"ID":19351,"SourceStructureID":101513,"TargetStructureID":1724,"Label":"101513-1724 via Conventional from 101514 -> 101515","Type":"Conventional","Directional":true,"Links":[{"SourceID":101514,"TargetID":101515,"Directional":true}]},{"ID":19352,"SourceStructureID":101521,"TargetStructureID":1724,"Label":"101521-1724 via Conventional from 101523 -> 20195","Type":"Conventional","Directional":true,"Links":[{"SourceID":101523,"TargetID":20195,"Directional":true}]},{"ID":19353,"SourceStructureID":101522,"TargetStructureID":1724,"Label":"101522-1724 via Conventional from 101525 -> 20199","Type":"Conventional","Directional":true,"Links":[{"SourceID":101525,"TargetID":20199,"Directional":true}]},{"ID":19354,"SourceStructureID":101527,"TargetStructureID":304,"Label":"101527-304 via Conventional from 101534 -> 101535","Type":"Conventional","Directional":true,"Links":[{"SourceID":101534,"TargetID":101535,"Directional":true}]},{"ID":19355,"SourceStructureID":101528,"TargetStructureID":1724,"Label":"101528-1724 via Conventional from 101529 -> 101530","Type":"Conventional","Directional":true,"Links":[{"SourceID":101529,"TargetID":101530,"Directional":true}]},{"ID":19356,"SourceStructureID":101547,"TargetStructureID":1724,"Label":"101547-1724 via Conventional from 101548 -> 47339","Type":"Conventional","Directional":true,"Links":[{"SourceID":101548,"TargetID":47339,"Directional":true}]},{"ID":19357,"SourceStructureID":101552,"TargetStructureID":1724,"Label":"101552-1724 via Conventional from 101554 -> 1740","Type":"Conventional","Directional":true,"Links":[{"SourceID":101554,"TargetID":1740,"Directional":true}]},{"ID":19358,"SourceStructureID":101553,"TargetStructureID":10897,"Label":"101553-10897 via Conventional from 101562 -> 101563, 101564 -> 101565","Type":"Conventional","Directional":true,"Links":[{"SourceID":101562,"TargetID":101563,"Directional":true},{"SourceID":101564,"TargetID":101565,"Directional":true}]},{"ID":19359,"SourceStructureID":101567,"TargetStructureID":1724,"Label":"101567-1724 via Conventional from 101568 -> 1743","Type":"Conventional","Directional":true,"Links":[{"SourceID":101568,"TargetID":1743,"Directional":true}]},{"ID":19360,"SourceStructureID":101570,"TargetStructureID":1724,"Label":"101570-1724 via Conventional from 101571 -> 3064","Type":"Conventional","Directional":true,"Links":[{"SourceID":101571,"TargetID":3064,"Directional":true}]},{"ID":19361,"SourceStructureID":101574,"TargetStructureID":1724,"Label":"101574-1724 via Conventional from 101575 -> 101576","Type":"Conventional","Directional":true,"Links":[{"SourceID":101575,"TargetID":101576,"Directional":true}]},{"ID":19362,"SourceStructureID":101583,"TargetStructureID":1724,"Label":"101583-1724 via Conventional from 101584 -> 101586","Type":"Conventional","Directional":true,"Links":[{"SourceID":101584,"TargetID":101586,"Directional":true}]},{"ID":19363,"SourceStructureID":101587,"TargetStructureID":1724,"Label":"101587-1724 via Conventional from 101588 -> 101589","Type":"Conventional","Directional":true,"Links":[{"SourceID":101588,"TargetID":101589,"Directional":true}]},{"ID":19364,"SourceStructureID":101590,"TargetStructureID":30477,"Label":"101590-30477 via Conventional from 101591 -> 30482","Type":"Conventional","Directional":true,"Links":[{"SourceID":101591,"TargetID":30482,"Directional":true}]},{"ID":19365,"SourceStructureID":101596,"TargetStructureID":1724,"Label":"101596-1724 via Conventional from 101597 -> 1754","Type":"Conventional","Directional":true,"Links":[{"SourceID":101597,"TargetID":1754,"Directional":true}]},{"ID":19366,"SourceStructureID":101598,"TargetStructureID":1724,"Label":"101598-1724 via Conventional from 101599 -> 1750","Type":"Conventional","Directional":true,"Links":[{"SourceID":101599,"TargetID":1750,"Directional":true}]},{"ID":19367,"SourceStructureID":101600,"TargetStructureID":1724,"Label":"101600-1724 via Conventional from 101601 -> 1752","Type":"Conventional","Directional":true,"Links":[{"SourceID":101601,"TargetID":1752,"Directional":true}]},{"ID":19368,"SourceStructureID":101602,"TargetStructureID":1724,"Label":"101602-1724 via Conventional from 101603 -> 1756","Type":"Conventional","Directional":true,"Links":[{"SourceID":101603,"TargetID":1756,"Directional":true}]},{"ID":19369,"SourceStructureID":101604,"TargetStructureID":1724,"Label":"101604-1724 via Conventional from 101605 -> 47935","Type":"Conventional","Directional":true,"Links":[{"SourceID":101605,"TargetID":47935,"Directional":true}]},{"ID":19370,"SourceStructureID":101606,"TargetStructureID":1724,"Label":"101606-1724 via Conventional from 101607 -> 47936","Type":"Conventional","Directional":true,"Links":[{"SourceID":101607,"TargetID":47936,"Directional":true}]},{"ID":19371,"SourceStructureID":101613,"TargetStructureID":1724,"Label":"101613-1724 via Conventional from 101614 -> 47344","Type":"Conventional","Directional":true,"Links":[{"SourceID":101614,"TargetID":47344,"Directional":true}]},{"ID":19372,"SourceStructureID":101615,"TargetStructureID":1724,"Label":"101615-1724 via Conventional from 101616 -> 47343","Type":"Conventional","Directional":true,"Links":[{"SourceID":101616,"TargetID":47343,"Directional":true}]},{"ID":19373,"SourceStructureID":101623,"TargetStructureID":1724,"Label":"101623-1724 via Conventional from 101628 -> 48483","Type":"Conventional","Directional":true,"Links":[{"SourceID":101628,"TargetID":48483,"Directional":true}]},{"ID":19374,"SourceStructureID":101625,"TargetStructureID":13525,"Label":"101625-13525 via Conventional from 101626 -> 13528","Type":"Conventional","Directional":true,"Links":[{"SourceID":101626,"TargetID":13528,"Directional":true}]},{"ID":19375,"SourceStructureID":101632,"TargetStructureID":30477,"Label":"101632-30477 via Conventional from 101633 -> 30483","Type":"Conventional","Directional":true,"Links":[{"SourceID":101633,"TargetID":30483,"Directional":true}]},{"ID":19376,"SourceStructureID":101640,"TargetStructureID":1724,"Label":"101640-1724 via Conventional from 101641 -> 3987","Type":"Conventional","Directional":true,"Links":[{"SourceID":101641,"TargetID":3987,"Directional":true}]},{"ID":19377,"SourceStructureID":101642,"TargetStructureID":1724,"Label":"101642-1724 via Conventional from 101646 -> 47341","Type":"Conventional","Directional":true,"Links":[{"SourceID":101646,"TargetID":47341,"Directional":true}]},{"ID":19378,"SourceStructureID":101644,"TargetStructureID":31305,"Label":"101644-31305 via Conventional from 101645 -> 101643","Type":"Conventional","Directional":true,"Links":[{"SourceID":101645,"TargetID":101643,"Directional":true}]},{"ID":19379,"SourceStructureID":101647,"TargetStructureID":1724,"Label":"101647-1724 via Conventional from 101649 -> 3990","Type":"Conventional","Directional":true,"Links":[{"SourceID":101649,"TargetID":3990,"Directional":true}]},{"ID":19380,"SourceStructureID":101657,"TargetStructureID":1724,"Label":"101657-1724 via Conventional from 101660 -> 3994","Type":"Conventional","Directional":true,"Links":[{"SourceID":101660,"TargetID":3994,"Directional":true}]},{"ID":19381,"SourceStructureID":101661,"TargetStructureID":1724,"Label":"101661-1724 via Conventional from 101663 -> 4000","Type":"Conventional","Directional":true,"Links":[{"SourceID":101663,"TargetID":4000,"Directional":true}]},{"ID":19382,"SourceStructureID":101662,"TargetStructureID":1724,"Label":"101662-1724 via Conventional from 101665 -> 3998","Type":"Conventional","Directional":true,"Links":[{"SourceID":101665,"TargetID":3998,"Directional":true}]},{"ID":19383,"SourceStructureID":101668,"TargetStructureID":1724,"Label":"101668-1724 via Conventional from 101671 -> 4002","Type":"Conventional","Directional":true,"Links":[{"SourceID":101671,"TargetID":4002,"Directional":true}]},{"ID":19384,"SourceStructureID":101672,"TargetStructureID":1724,"Label":"101672-1724 via Conventional from 101674 -> 4006","Type":"Conventional","Directional":true,"Links":[{"SourceID":101674,"TargetID":4006,"Directional":true}]},{"ID":19385,"SourceStructureID":101677,"TargetStructureID":1724,"Label":"101677-1724 via Conventional from 101678 -> 101679","Type":"Conventional","Directional":true,"Links":[{"SourceID":101678,"TargetID":101679,"Directional":true}]},{"ID":19386,"SourceStructureID":101681,"TargetStructureID":1724,"Label":"101681-1724 via Conventional from 101682 -> 4010","Type":"Conventional","Directional":true,"Links":[{"SourceID":101682,"TargetID":4010,"Directional":true}]},{"ID":19387,"SourceStructureID":101692,"TargetStructureID":1724,"Label":"101692-1724 via Conventional from 101725 -> 47348","Type":"Conventional","Directional":true,"Links":[{"SourceID":101725,"TargetID":47348,"Directional":true}]},{"ID":19388,"SourceStructureID":101693,"TargetStructureID":1724,"Label":"101693-1724 via Conventional from 101694 -> 23719","Type":"Conventional","Directional":true,"Links":[{"SourceID":101694,"TargetID":23719,"Directional":true}]},{"ID":19389,"SourceStructureID":101696,"TargetStructureID":1724,"Label":"101696-1724 via Conventional from 101894 -> 101895","Type":"Conventional","Directional":true,"Links":[{"SourceID":101894,"TargetID":101895,"Directional":true}]},{"ID":19390,"SourceStructureID":101697,"TargetStructureID":1724,"Label":"101697-1724 via Conventional from 101838 -> 23720","Type":"Conventional","Directional":true,"Links":[{"SourceID":101838,"TargetID":23720,"Directional":true}]},{"ID":19391,"SourceStructureID":101707,"TargetStructureID":18282,"Label":"101707-18282 via Conventional from 101709 -> 18304","Type":"Conventional","Directional":true,"Links":[{"SourceID":101709,"TargetID":18304,"Directional":true}]},{"ID":19392,"SourceStructureID":101711,"TargetStructureID":485,"Label":"101711-485 via Conventional from 101712 -> 101710","Type":"Conventional","Directional":true,"Links":[{"SourceID":101712,"TargetID":101710,"Directional":true}]},{"ID":19393,"SourceStructureID":101744,"TargetStructureID":485,"Label":"101744-485 via Conventional from 101745 -> 47557","Type":"Conventional","Directional":true,"Links":[{"SourceID":101745,"TargetID":47557,"Directional":true}]},{"ID":19394,"SourceStructureID":101747,"TargetStructureID":485,"Label":"101747-485 via Conventional from 101748 -> 47556","Type":"Conventional","Directional":true,"Links":[{"SourceID":101748,"TargetID":47556,"Directional":true}]},{"ID":19395,"SourceStructureID":101757,"TargetStructureID":1724,"Label":"101757-1724 via Conventional from 101760 -> 101759","Type":"Conventional","Directional":true,"Links":[{"SourceID":101760,"TargetID":101759,"Directional":true}]},{"ID":19396,"SourceStructureID":101765,"TargetStructureID":485,"Label":"101765-485 via Conventional from 101766 -> 101764","Type":"Conventional","Directional":true,"Links":[{"SourceID":101766,"TargetID":101764,"Directional":true}]},{"ID":19397,"SourceStructureID":101785,"TargetStructureID":485,"Label":"101785-485 via Conventional from 101786 -> 101784, 101810 -> 47565","Type":"Conventional","Directional":true,"Links":[{"SourceID":101786,"TargetID":101784,"Directional":true},{"SourceID":101810,"TargetID":47565,"Directional":true}]},{"ID":19398,"SourceStructureID":101789,"TargetStructureID":1724,"Label":"101789-1724 via Conventional from 101792 -> 101794","Type":"Conventional","Directional":true,"Links":[{"SourceID":101792,"TargetID":101794,"Directional":true}]},{"ID":19399,"SourceStructureID":101790,"TargetStructureID":485,"Label":"101790-485 via Conventional from 101791 -> 101783","Type":"Conventional","Directional":true,"Links":[{"SourceID":101791,"TargetID":101783,"Directional":true}]},{"ID":19400,"SourceStructureID":101802,"TargetStructureID":1724,"Label":"101802-1724 via Conventional from 101803 -> 4098","Type":"Conventional","Directional":true,"Links":[{"SourceID":101803,"TargetID":4098,"Directional":true}]},{"ID":19401,"SourceStructureID":101808,"TargetStructureID":1724,"Label":"101808-1724 via Conventional from 101811 -> 101812","Type":"Conventional","Directional":true,"Links":[{"SourceID":101811,"TargetID":101812,"Directional":true}]},{"ID":19402,"SourceStructureID":101815,"TargetStructureID":485,"Label":"101815-485 via Conventional from 101816 -> 47566, 101911 -> 101912","Type":"Conventional","Directional":true,"Links":[{"SourceID":101816,"TargetID":47566,"Directional":true},{"SourceID":101911,"TargetID":101912,"Directional":true}]},{"ID":19403,"SourceStructureID":101818,"TargetStructureID":1724,"Label":"101818-1724 via Conventional from 101822 -> 101823","Type":"Conventional","Directional":true,"Links":[{"SourceID":101822,"TargetID":101823,"Directional":true}]},{"ID":19404,"SourceStructureID":101819,"TargetStructureID":485,"Label":"101819-485 via Conventional from 101820 -> 101813","Type":"Conventional","Directional":true,"Links":[{"SourceID":101820,"TargetID":101813,"Directional":true}]},{"ID":19405,"SourceStructureID":101826,"TargetStructureID":1724,"Label":"101826-1724 via Conventional from 101827 -> 47349","Type":"Conventional","Directional":true,"Links":[{"SourceID":101827,"TargetID":47349,"Directional":true}]},{"ID":19406,"SourceStructureID":101842,"TargetStructureID":1724,"Label":"101842-1724 via Conventional from 101847 -> 101848","Type":"Conventional","Directional":true,"Links":[{"SourceID":101847,"TargetID":101848,"Directional":true}]},{"ID":19407,"SourceStructureID":101849,"TargetStructureID":1724,"Label":"101849-1724 via Conventional from 101851 -> 101852","Type":"Conventional","Directional":true,"Links":[{"SourceID":101851,"TargetID":101852,"Directional":true}]},{"ID":19408,"SourceStructureID":101850,"TargetStructureID":485,"Label":"101850-485 via Conventional from 101858 -> 23147","Type":"Conventional","Directional":true,"Links":[{"SourceID":101858,"TargetID":23147,"Directional":true}]},{"ID":19409,"SourceStructureID":101855,"TargetStructureID":1724,"Label":"101855-1724 via Conventional from 101857 -> 47374","Type":"Conventional","Directional":true,"Links":[{"SourceID":101857,"TargetID":47374,"Directional":true}]},{"ID":19410,"SourceStructureID":101873,"TargetStructureID":485,"Label":"101873-485 via Conventional from 101874 -> 101871","Type":"Conventional","Directional":true,"Links":[{"SourceID":101874,"TargetID":101871,"Directional":true}]},{"ID":19411,"SourceStructureID":101876,"TargetStructureID":485,"Label":"101876-485 via Conventional from 101877 -> 101878","Type":"Conventional","Directional":true,"Links":[{"SourceID":101877,"TargetID":101878,"Directional":true}]},{"ID":19412,"SourceStructureID":101879,"TargetStructureID":1724,"Label":"101879-1724 via Conventional from 101882 -> 47373","Type":"Conventional","Directional":true,"Links":[{"SourceID":101882,"TargetID":47373,"Directional":true}]},{"ID":19413,"SourceStructureID":101888,"TargetStructureID":1724,"Label":"101888-1724 via Conventional from 101889 -> 32231, 101901 -> 101902","Type":"Conventional","Directional":true,"Links":[{"SourceID":101889,"TargetID":32231,"Directional":true},{"SourceID":101901,"TargetID":101902,"Directional":true}]},{"ID":19414,"SourceStructureID":101913,"TargetStructureID":485,"Label":"101913-485 via Conventional from 101914 -> 101915","Type":"Conventional","Directional":true,"Links":[{"SourceID":101914,"TargetID":101915,"Directional":true}]},{"ID":19415,"SourceStructureID":101926,"TargetStructureID":485,"Label":"101926-485 via Conventional from 101927 -> 101925","Type":"Conventional","Directional":true,"Links":[{"SourceID":101927,"TargetID":101925,"Directional":true}]},{"ID":19416,"SourceStructureID":101935,"TargetStructureID":13525,"Label":"101935-13525 via Conventional from 101943 -> 13530","Type":"Conventional","Directional":true,"Links":[{"SourceID":101943,"TargetID":13530,"Directional":true}]},{"ID":19417,"SourceStructureID":101936,"TargetStructureID":485,"Label":"101936-485 via Conventional from 101937 -> 101939","Type":"Conventional","Directional":true,"Links":[{"SourceID":101937,"TargetID":101939,"Directional":true}]},{"ID":19418,"SourceStructureID":101938,"TargetStructureID":1724,"Label":"101938-1724 via Conventional from 101949 -> 47352","Type":"Conventional","Directional":true,"Links":[{"SourceID":101949,"TargetID":47352,"Directional":true}]},{"ID":19419,"SourceStructureID":101941,"TargetStructureID":485,"Label":"101941-485 via Conventional from 101942 -> 101940","Type":"Conventional","Directional":true,"Links":[{"SourceID":101942,"TargetID":101940,"Directional":true}]},{"ID":19420,"SourceStructureID":101946,"TargetStructureID":1724,"Label":"101946-1724 via Conventional from 101947 -> 101948","Type":"Conventional","Directional":true,"Links":[{"SourceID":101947,"TargetID":101948,"Directional":true}]},{"ID":19421,"SourceStructureID":101952,"TargetStructureID":485,"Label":"101952-485 via Conventional from 101956 -> 101950","Type":"Conventional","Directional":true,"Links":[{"SourceID":101956,"TargetID":101950,"Directional":true}]},{"ID":19422,"SourceStructureID":101958,"TargetStructureID":485,"Label":"101958-485 via Conventional from 101959 -> 101957","Type":"Conventional","Directional":true,"Links":[{"SourceID":101959,"TargetID":101957,"Directional":true}]},{"ID":19423,"SourceStructureID":101961,"TargetStructureID":485,"Label":"101961-485 via Conventional from 101962 -> 101960","Type":"Conventional","Directional":true,"Links":[{"SourceID":101962,"TargetID":101960,"Directional":true}]},{"ID":19424,"SourceStructureID":101969,"TargetStructureID":1724,"Label":"101969-1724 via Conventional from 101970 -> 101971","Type":"Conventional","Directional":true,"Links":[{"SourceID":101970,"TargetID":101971,"Directional":true}]},{"ID":19425,"SourceStructureID":101978,"TargetStructureID":1724,"Label":"101978-1724 via Conventional from 101979 -> 4114","Type":"Conventional","Directional":true,"Links":[{"SourceID":101979,"TargetID":4114,"Directional":true}]},{"ID":19426,"SourceStructureID":101982,"TargetStructureID":1724,"Label":"101982-1724 via Conventional from 101988 -> 4108","Type":"Conventional","Directional":true,"Links":[{"SourceID":101988,"TargetID":4108,"Directional":true}]},{"ID":19427,"SourceStructureID":101985,"TargetStructureID":485,"Label":"101985-485 via Conventional from 101990 -> 101984","Type":"Conventional","Directional":true,"Links":[{"SourceID":101990,"TargetID":101984,"Directional":true}]},{"ID":19428,"SourceStructureID":101989,"TargetStructureID":13525,"Label":"101989-13525 via Conventional from 101991 -> 85365","Type":"Conventional","Directional":true,"Links":[{"SourceID":101991,"TargetID":85365,"Directional":true}]},{"ID":19429,"SourceStructureID":101993,"TargetStructureID":1724,"Label":"101993-1724 via Conventional from 101994 -> 101995","Type":"Conventional","Directional":true,"Links":[{"SourceID":101994,"TargetID":101995,"Directional":true}]},{"ID":19430,"SourceStructureID":102011,"TargetStructureID":1724,"Label":"102011-1724 via Conventional from 102012 -> 4118","Type":"Conventional","Directional":true,"Links":[{"SourceID":102012,"TargetID":4118,"Directional":true}]},{"ID":19431,"SourceStructureID":102014,"TargetStructureID":485,"Label":"102014-485 via Conventional from 102018 -> 102017","Type":"Conventional","Directional":true,"Links":[{"SourceID":102018,"TargetID":102017,"Directional":true}]},{"ID":19432,"SourceStructureID":102020,"TargetStructureID":485,"Label":"102020-485 via Conventional from 102021 -> 49910","Type":"Conventional","Directional":true,"Links":[{"SourceID":102021,"TargetID":49910,"Directional":true}]},{"ID":19433,"SourceStructureID":102036,"TargetStructureID":1724,"Label":"102036-1724 via Conventional from 102489 -> 47362, 102494 -> 30432","Type":"Conventional","Directional":true,"Links":[{"SourceID":102489,"TargetID":47362,"Directional":true},{"SourceID":102494,"TargetID":30432,"Directional":true}]},{"ID":19434,"SourceStructureID":102039,"TargetStructureID":483,"Label":"102039-483 via Conventional from 102040 -> 6710","Type":"Conventional","Directional":true,"Links":[{"SourceID":102040,"TargetID":6710,"Directional":true}]},{"ID":19435,"SourceStructureID":102057,"TargetStructureID":483,"Label":"102057-483 via Conventional from 102058 -> 6818","Type":"Conventional","Directional":true,"Links":[{"SourceID":102058,"TargetID":6818,"Directional":true}]},{"ID":19436,"SourceStructureID":102065,"TargetStructureID":483,"Label":"102065-483 via Conventional from 102066 -> 6823","Type":"Conventional","Directional":true,"Links":[{"SourceID":102066,"TargetID":6823,"Directional":true}]},{"ID":19437,"SourceStructureID":102067,"TargetStructureID":483,"Label":"102067-483 via Conventional from 102068 -> 6827","Type":"Conventional","Directional":true,"Links":[{"SourceID":102068,"TargetID":6827,"Directional":true}]},{"ID":19438,"SourceStructureID":102092,"TargetStructureID":483,"Label":"102092-483 via Conventional from 102093 -> 6829","Type":"Conventional","Directional":true,"Links":[{"SourceID":102093,"TargetID":6829,"Directional":true}]},{"ID":19439,"SourceStructureID":102099,"TargetStructureID":483,"Label":"102099-483 via Conventional from 102100 -> 6844","Type":"Conventional","Directional":true,"Links":[{"SourceID":102100,"TargetID":6844,"Directional":true}]},{"ID":19440,"SourceStructureID":102101,"TargetStructureID":483,"Label":"102101-483 via Conventional from 102105 -> 6843","Type":"Conventional","Directional":true,"Links":[{"SourceID":102105,"TargetID":6843,"Directional":true}]},{"ID":19441,"SourceStructureID":102108,"TargetStructureID":483,"Label":"102108-483 via Conventional from 102109 -> 6846","Type":"Conventional","Directional":true,"Links":[{"SourceID":102109,"TargetID":6846,"Directional":true}]},{"ID":19442,"SourceStructureID":102110,"TargetStructureID":483,"Label":"102110-483 via Conventional from 102111 -> 6845","Type":"Conventional","Directional":true,"Links":[{"SourceID":102111,"TargetID":6845,"Directional":true}]},{"ID":19443,"SourceStructureID":102116,"TargetStructureID":11043,"Label":"102116-11043 via Conventional from 102144 -> 33709","Type":"Conventional","Directional":true,"Links":[{"SourceID":102144,"TargetID":33709,"Directional":true}]},{"ID":19444,"SourceStructureID":102118,"TargetStructureID":483,"Label":"102118-483 via Conventional from 102121 -> 102117","Type":"Conventional","Directional":true,"Links":[{"SourceID":102121,"TargetID":102117,"Directional":true}]},{"ID":19445,"SourceStructureID":102125,"TargetStructureID":483,"Label":"102125-483 via Conventional from 102126 -> 102124","Type":"Conventional","Directional":true,"Links":[{"SourceID":102126,"TargetID":102124,"Directional":true}]},{"ID":19446,"SourceStructureID":102127,"TargetStructureID":483,"Label":"102127-483 via Conventional from 102128 -> 58614","Type":"Conventional","Directional":true,"Links":[{"SourceID":102128,"TargetID":58614,"Directional":true}]},{"ID":19447,"SourceStructureID":102129,"TargetStructureID":483,"Label":"102129-483 via Conventional from 102131 -> 102132","Type":"Conventional","Directional":true,"Links":[{"SourceID":102131,"TargetID":102132,"Directional":true}]},{"ID":19448,"SourceStructureID":102140,"TargetStructureID":483,"Label":"102140-483 via Conventional from 102141 -> 102139","Type":"Conventional","Directional":true,"Links":[{"SourceID":102141,"TargetID":102139,"Directional":true}]},{"ID":19449,"SourceStructureID":102143,"TargetStructureID":483,"Label":"102143-483 via Conventional from 102145 -> 102142","Type":"Conventional","Directional":true,"Links":[{"SourceID":102145,"TargetID":102142,"Directional":true}]},{"ID":19450,"SourceStructureID":102149,"TargetStructureID":13525,"Label":"102149-13525 via Conventional from 102152 -> 85364","Type":"Conventional","Directional":true,"Links":[{"SourceID":102152,"TargetID":85364,"Directional":true}]},{"ID":19451,"SourceStructureID":102150,"TargetStructureID":483,"Label":"102150-483 via Conventional from 102161 -> 6831","Type":"Conventional","Directional":true,"Links":[{"SourceID":102161,"TargetID":6831,"Directional":true}]},{"ID":19452,"SourceStructureID":102162,"TargetStructureID":483,"Label":"102162-483 via Conventional from 102163 -> 6833","Type":"Conventional","Directional":true,"Links":[{"SourceID":102163,"TargetID":6833,"Directional":true}]},{"ID":19453,"SourceStructureID":102164,"TargetStructureID":483,"Label":"102164-483 via Conventional from 102167 -> 6834","Type":"Conventional","Directional":true,"Links":[{"SourceID":102167,"TargetID":6834,"Directional":true}]},{"ID":19454,"SourceStructureID":102168,"TargetStructureID":13525,"Label":"102168-13525 via Conventional from 102170 -> 84282","Type":"Conventional","Directional":true,"Links":[{"SourceID":102170,"TargetID":84282,"Directional":true}]},{"ID":19455,"SourceStructureID":102171,"TargetStructureID":13525,"Label":"102171-13525 via Conventional from 102172 -> 95780","Type":"Conventional","Directional":true,"Links":[{"SourceID":102172,"TargetID":95780,"Directional":true}]},{"ID":19456,"SourceStructureID":102175,"TargetStructureID":13525,"Label":"102175-13525 via Conventional from 102176 -> 95791","Type":"Conventional","Directional":true,"Links":[{"SourceID":102176,"TargetID":95791,"Directional":true}]},{"ID":19457,"SourceStructureID":102179,"TargetStructureID":483,"Label":"102179-483 via Conventional from 102181 -> 6840","Type":"Conventional","Directional":true,"Links":[{"SourceID":102181,"TargetID":6840,"Directional":true}]},{"ID":19458,"SourceStructureID":102191,"TargetStructureID":483,"Label":"102191-483 via Conventional from 102192 -> 26798","Type":"Conventional","Directional":true,"Links":[{"SourceID":102192,"TargetID":26798,"Directional":true}]},{"ID":19459,"SourceStructureID":102196,"TargetStructureID":483,"Label":"102196-483 via Conventional from 102200 -> 102201","Type":"Conventional","Directional":true,"Links":[{"SourceID":102200,"TargetID":102201,"Directional":true}]},{"ID":19460,"SourceStructureID":102202,"TargetStructureID":483,"Label":"102202-483 via Conventional from 102204 -> 26791","Type":"Conventional","Directional":true,"Links":[{"SourceID":102204,"TargetID":26791,"Directional":true}]},{"ID":19461,"SourceStructureID":102206,"TargetStructureID":483,"Label":"102206-483 via Conventional from 102207 -> 102205","Type":"Conventional","Directional":true,"Links":[{"SourceID":102207,"TargetID":102205,"Directional":true}]},{"ID":19462,"SourceStructureID":102209,"TargetStructureID":483,"Label":"102209-483 via Conventional from 102210 -> 102208","Type":"Conventional","Directional":true,"Links":[{"SourceID":102210,"TargetID":102208,"Directional":true}]},{"ID":19463,"SourceStructureID":102218,"TargetStructureID":483,"Label":"102218-483 via Conventional from 102220 -> 26799","Type":"Conventional","Directional":true,"Links":[{"SourceID":102220,"TargetID":26799,"Directional":true}]},{"ID":19464,"SourceStructureID":102222,"TargetStructureID":483,"Label":"102222-483 via Conventional from 102223 -> 102221","Type":"Conventional","Directional":true,"Links":[{"SourceID":102223,"TargetID":102221,"Directional":true}]},{"ID":19465,"SourceStructureID":102224,"TargetStructureID":483,"Label":"102224-483 via Conventional from 102225 -> 26792","Type":"Conventional","Directional":true,"Links":[{"SourceID":102225,"TargetID":26792,"Directional":true}]},{"ID":19466,"SourceStructureID":102230,"TargetStructureID":483,"Label":"102230-483 via Conventional from 102231 -> 26789","Type":"Conventional","Directional":true,"Links":[{"SourceID":102231,"TargetID":26789,"Directional":true}]},{"ID":19467,"SourceStructureID":102235,"TargetStructureID":483,"Label":"102235-483 via Conventional from 102236 -> 26788","Type":"Conventional","Directional":true,"Links":[{"SourceID":102236,"TargetID":26788,"Directional":true}]},{"ID":19468,"SourceStructureID":102250,"TargetStructureID":483,"Label":"102250-483 via Conventional from 102251 -> 102246","Type":"Conventional","Directional":true,"Links":[{"SourceID":102251,"TargetID":102246,"Directional":true}]},{"ID":19469,"SourceStructureID":102254,"TargetStructureID":483,"Label":"102254-483 via Conventional from 102255 -> 26794","Type":"Conventional","Directional":true,"Links":[{"SourceID":102255,"TargetID":26794,"Directional":true}]},{"ID":19470,"SourceStructureID":102272,"TargetStructureID":483,"Label":"102272-483 via Conventional from 102273 -> 26805","Type":"Conventional","Directional":true,"Links":[{"SourceID":102273,"TargetID":26805,"Directional":true}]},{"ID":19471,"SourceStructureID":102274,"TargetStructureID":483,"Label":"102274-483 via Conventional from 102275 -> 26804","Type":"Conventional","Directional":true,"Links":[{"SourceID":102275,"TargetID":26804,"Directional":true}]},{"ID":19472,"SourceStructureID":102276,"TargetStructureID":483,"Label":"102276-483 via Conventional from 102277 -> 26808","Type":"Conventional","Directional":true,"Links":[{"SourceID":102277,"TargetID":26808,"Directional":true}]},{"ID":19473,"SourceStructureID":102278,"TargetStructureID":483,"Label":"102278-483 via Conventional from 102284 -> 26800","Type":"Conventional","Directional":true,"Links":[{"SourceID":102284,"TargetID":26800,"Directional":true}]},{"ID":19474,"SourceStructureID":102282,"TargetStructureID":483,"Label":"102282-483 via Conventional from 102292 -> 26809","Type":"Conventional","Directional":true,"Links":[{"SourceID":102292,"TargetID":26809,"Directional":true}]},{"ID":19475,"SourceStructureID":102286,"TargetStructureID":483,"Label":"102286-483 via Conventional from 102287 -> 102285","Type":"Conventional","Directional":true,"Links":[{"SourceID":102287,"TargetID":102285,"Directional":true}]},{"ID":19476,"SourceStructureID":102295,"TargetStructureID":483,"Label":"102295-483 via Conventional from 102296 -> 102297","Type":"Conventional","Directional":true,"Links":[{"SourceID":102296,"TargetID":102297,"Directional":true}]},{"ID":19477,"SourceStructureID":102310,"TargetStructureID":483,"Label":"102310-483 via Conventional from 102311 -> 26806","Type":"Conventional","Directional":true,"Links":[{"SourceID":102311,"TargetID":26806,"Directional":true}]},{"ID":19478,"SourceStructureID":102314,"TargetStructureID":483,"Label":"102314-483 via Conventional from 102315 -> 26814","Type":"Conventional","Directional":true,"Links":[{"SourceID":102315,"TargetID":26814,"Directional":true}]},{"ID":19479,"SourceStructureID":102316,"TargetStructureID":483,"Label":"102316-483 via Conventional from 102317 -> 26813","Type":"Conventional","Directional":true,"Links":[{"SourceID":102317,"TargetID":26813,"Directional":true}]},{"ID":19480,"SourceStructureID":102321,"TargetStructureID":483,"Label":"102321-483 via Conventional from 102322 -> 26816","Type":"Conventional","Directional":true,"Links":[{"SourceID":102322,"TargetID":26816,"Directional":true}]},{"ID":19481,"SourceStructureID":102341,"TargetStructureID":483,"Label":"102341-483 via Conventional from 102342 -> 6841","Type":"Conventional","Directional":true,"Links":[{"SourceID":102342,"TargetID":6841,"Directional":true}]},{"ID":19482,"SourceStructureID":102354,"TargetStructureID":483,"Label":"102354-483 via Conventional from 102355 -> 102356","Type":"Conventional","Directional":true,"Links":[{"SourceID":102355,"TargetID":102356,"Directional":true}]},{"ID":19483,"SourceStructureID":102361,"TargetStructureID":13525,"Label":"102361-13525 via Conventional from 102367 -> 95924","Type":"Conventional","Directional":true,"Links":[{"SourceID":102367,"TargetID":95924,"Directional":true}]},{"ID":19484,"SourceStructureID":102362,"TargetStructureID":483,"Label":"102362-483 via Conventional from 102363 -> 26834","Type":"Conventional","Directional":true,"Links":[{"SourceID":102363,"TargetID":26834,"Directional":true}]},{"ID":19485,"SourceStructureID":102381,"TargetStructureID":483,"Label":"102381-483 via Conventional from 102394 -> 20342","Type":"Conventional","Directional":true,"Links":[{"SourceID":102394,"TargetID":20342,"Directional":true}]},{"ID":19486,"SourceStructureID":102391,"TargetStructureID":102387,"Label":"102391-102387 via Conventional from 102393 -> 102390","Type":"Conventional","Directional":true,"Links":[{"SourceID":102393,"TargetID":102390,"Directional":true}]},{"ID":19487,"SourceStructureID":102395,"TargetStructureID":483,"Label":"102395-483 via Conventional from 102396 -> 20343","Type":"Conventional","Directional":true,"Links":[{"SourceID":102396,"TargetID":20343,"Directional":true}]},{"ID":19488,"SourceStructureID":102397,"TargetStructureID":483,"Label":"102397-483 via Conventional from 102398 -> 20344","Type":"Conventional","Directional":true,"Links":[{"SourceID":102398,"TargetID":20344,"Directional":true}]},{"ID":19489,"SourceStructureID":102399,"TargetStructureID":419,"Label":"102399-419 via Conventional from 102400 -> 10164","Type":"Conventional","Directional":true,"Links":[{"SourceID":102400,"TargetID":10164,"Directional":true}]},{"ID":19490,"SourceStructureID":102405,"TargetStructureID":483,"Label":"102405-483 via Conventional from 102406 -> 20348","Type":"Conventional","Directional":true,"Links":[{"SourceID":102406,"TargetID":20348,"Directional":true}]},{"ID":19491,"SourceStructureID":102414,"TargetStructureID":483,"Label":"102414-483 via Conventional from 102415 -> 20346","Type":"Conventional","Directional":true,"Links":[{"SourceID":102415,"TargetID":20346,"Directional":true}]},{"ID":19492,"SourceStructureID":102416,"TargetStructureID":483,"Label":"102416-483 via Conventional from 102419 -> 26838","Type":"Conventional","Directional":true,"Links":[{"SourceID":102419,"TargetID":26838,"Directional":true}]},{"ID":19493,"SourceStructureID":102417,"TargetStructureID":13525,"Label":"102417-13525 via Conventional from 102418 -> 95923","Type":"Conventional","Directional":true,"Links":[{"SourceID":102418,"TargetID":95923,"Directional":true}]},{"ID":19494,"SourceStructureID":102421,"TargetStructureID":483,"Label":"102421-483 via Conventional from 102422 -> 102420","Type":"Conventional","Directional":true,"Links":[{"SourceID":102422,"TargetID":102420,"Directional":true}]},{"ID":19495,"SourceStructureID":102425,"TargetStructureID":483,"Label":"102425-483 via Conventional from 102427 -> 102428","Type":"Conventional","Directional":true,"Links":[{"SourceID":102427,"TargetID":102428,"Directional":true}]},{"ID":19496,"SourceStructureID":102425,"TargetStructureID":102545,"Label":"102425-102545 via Conventional from 102426 -> 102547","Type":"Conventional","Directional":true,"Links":[{"SourceID":102426,"TargetID":102547,"Directional":true}]},{"ID":19497,"SourceStructureID":102429,"TargetStructureID":483,"Label":"102429-483 via Conventional from 102430 -> 20347","Type":"Conventional","Directional":true,"Links":[{"SourceID":102430,"TargetID":20347,"Directional":true}]},{"ID":19498,"SourceStructureID":102431,"TargetStructureID":483,"Label":"102431-483 via Conventional from 102433 -> 20391","Type":"Conventional","Directional":true,"Links":[{"SourceID":102433,"TargetID":20391,"Directional":true}]},{"ID":19499,"SourceStructureID":102437,"TargetStructureID":483,"Label":"102437-483 via Conventional from 102438 -> 102439","Type":"Conventional","Directional":true,"Links":[{"SourceID":102438,"TargetID":102439,"Directional":true}]},{"ID":19500,"SourceStructureID":102451,"TargetStructureID":483,"Label":"102451-483 via Conventional from 102452 -> 51182","Type":"Conventional","Directional":true,"Links":[{"SourceID":102452,"TargetID":51182,"Directional":true}]},{"ID":19501,"SourceStructureID":102456,"TargetStructureID":483,"Label":"102456-483 via Conventional from 102458 -> 102457","Type":"Conventional","Directional":true,"Links":[{"SourceID":102458,"TargetID":102457,"Directional":true}]},{"ID":19502,"SourceStructureID":102461,"TargetStructureID":483,"Label":"102461-483 via Conventional from 102462 -> 20351","Type":"Conventional","Directional":true,"Links":[{"SourceID":102462,"TargetID":20351,"Directional":true}]},{"ID":19503,"SourceStructureID":102463,"TargetStructureID":483,"Label":"102463-483 via Conventional from 102465 -> 26781, 102465 -> 26839","Type":"Conventional","Directional":true,"Links":[{"SourceID":102465,"TargetID":26781,"Directional":true},{"SourceID":102465,"TargetID":26839,"Directional":true}]},{"ID":19504,"SourceStructureID":102467,"TargetStructureID":1724,"Label":"102467-1724 via Conventional from 102468 -> 47360","Type":"Conventional","Directional":true,"Links":[{"SourceID":102468,"TargetID":47360,"Directional":true}]},{"ID":19505,"SourceStructureID":102476,"TargetStructureID":1724,"Label":"102476-1724 via Conventional from 102486 -> 47363, 102490 -> 30431","Type":"Conventional","Directional":true,"Links":[{"SourceID":102486,"TargetID":47363,"Directional":true},{"SourceID":102490,"TargetID":30431,"Directional":true}]},{"ID":19506,"SourceStructureID":102477,"TargetStructureID":483,"Label":"102477-483 via Conventional from 102478 -> 20354","Type":"Conventional","Directional":true,"Links":[{"SourceID":102478,"TargetID":20354,"Directional":true}]},{"ID":19507,"SourceStructureID":102479,"TargetStructureID":483,"Label":"102479-483 via Conventional from 102480 -> 26840","Type":"Conventional","Directional":true,"Links":[{"SourceID":102480,"TargetID":26840,"Directional":true}]},{"ID":19508,"SourceStructureID":102482,"TargetStructureID":483,"Label":"102482-483 via Conventional from 102483 -> 20362","Type":"Conventional","Directional":true,"Links":[{"SourceID":102483,"TargetID":20362,"Directional":true}]},{"ID":19509,"SourceStructureID":102498,"TargetStructureID":1724,"Label":"102498-1724 via Conventional from 102506 -> 102507","Type":"Conventional","Directional":true,"Links":[{"SourceID":102506,"TargetID":102507,"Directional":true}]},{"ID":19510,"SourceStructureID":102504,"TargetStructureID":483,"Label":"102504-483 via Conventional from 102505 -> 20353","Type":"Conventional","Directional":true,"Links":[{"SourceID":102505,"TargetID":20353,"Directional":true}]},{"ID":19511,"SourceStructureID":102513,"TargetStructureID":483,"Label":"102513-483 via Conventional from 102519 -> 20356","Type":"Conventional","Directional":true,"Links":[{"SourceID":102519,"TargetID":20356,"Directional":true}]},{"ID":19512,"SourceStructureID":102534,"TargetStructureID":483,"Label":"102534-483 via Conventional from 102535 -> 20359","Type":"Conventional","Directional":true,"Links":[{"SourceID":102535,"TargetID":20359,"Directional":true}]},{"ID":19513,"SourceStructureID":102543,"TargetStructureID":483,"Label":"102543-483 via Conventional from 102544 -> 102542","Type":"Conventional","Directional":true,"Links":[{"SourceID":102544,"TargetID":102542,"Directional":true}]},{"ID":19514,"SourceStructureID":102552,"TargetStructureID":483,"Label":"102552-483 via Conventional from 102553 -> 102551","Type":"Conventional","Directional":true,"Links":[{"SourceID":102553,"TargetID":102551,"Directional":true}]},{"ID":19515,"SourceStructureID":102555,"TargetStructureID":8575,"Label":"102555-8575 via Conventional from 102559 -> 61560","Type":"Conventional","Directional":true,"Links":[{"SourceID":102559,"TargetID":61560,"Directional":true}]},{"ID":19516,"SourceStructureID":102577,"TargetStructureID":483,"Label":"102577-483 via Conventional from 102578 -> 15167","Type":"Conventional","Directional":true,"Links":[{"SourceID":102578,"TargetID":15167,"Directional":true}]},{"ID":19517,"SourceStructureID":102577,"TargetStructureID":5107,"Label":"102577-5107 via Conventional from 102579 -> 23033","Type":"Conventional","Directional":true,"Links":[{"SourceID":102579,"TargetID":23033,"Directional":true}]},{"ID":19518,"SourceStructureID":102586,"TargetStructureID":483,"Label":"102586-483 via Conventional from 102587 -> 6716","Type":"Conventional","Directional":true,"Links":[{"SourceID":102587,"TargetID":6716,"Directional":true}]},{"ID":19519,"SourceStructureID":102588,"TargetStructureID":483,"Label":"102588-483 via Conventional from 102589 -> 6718","Type":"Conventional","Directional":true,"Links":[{"SourceID":102589,"TargetID":6718,"Directional":true}]},{"ID":19520,"SourceStructureID":102599,"TargetStructureID":517,"Label":"102599-517 via Conventional from 102608 -> 102609","Type":"Conventional","Directional":true,"Links":[{"SourceID":102608,"TargetID":102609,"Directional":true}]},{"ID":19521,"SourceStructureID":102600,"TargetStructureID":483,"Label":"102600-483 via Conventional from 102601 -> 6722","Type":"Conventional","Directional":true,"Links":[{"SourceID":102601,"TargetID":6722,"Directional":true}]},{"ID":19522,"SourceStructureID":102603,"TargetStructureID":483,"Label":"102603-483 via Conventional from 102605 -> 6723","Type":"Conventional","Directional":true,"Links":[{"SourceID":102605,"TargetID":6723,"Directional":true}]},{"ID":19523,"SourceStructureID":102635,"TargetStructureID":483,"Label":"102635-483 via Conventional from 102637 -> 102633","Type":"Conventional","Directional":true,"Links":[{"SourceID":102637,"TargetID":102633,"Directional":true}]},{"ID":19524,"SourceStructureID":102639,"TargetStructureID":483,"Label":"102639-483 via Conventional from 102640 -> 102638","Type":"Conventional","Directional":true,"Links":[{"SourceID":102640,"TargetID":102638,"Directional":true}]},{"ID":19525,"SourceStructureID":102655,"TargetStructureID":483,"Label":"102655-483 via Conventional from 102656 -> 6746","Type":"Conventional","Directional":true,"Links":[{"SourceID":102656,"TargetID":6746,"Directional":true}]},{"ID":19526,"SourceStructureID":102658,"TargetStructureID":483,"Label":"102658-483 via Conventional from 102660 -> 6747","Type":"Conventional","Directional":true,"Links":[{"SourceID":102660,"TargetID":6747,"Directional":true}]},{"ID":19527,"SourceStructureID":102671,"TargetStructureID":5650,"Label":"102671-5650 via Conventional from 102678 -> 102679, 102681 -> 102682","Type":"Conventional","Directional":true,"Links":[{"SourceID":102678,"TargetID":102679,"Directional":true},{"SourceID":102681,"TargetID":102682,"Directional":true}]},{"ID":19528,"SourceStructureID":102683,"TargetStructureID":5650,"Label":"102683-5650 via Conventional from 102684 -> 102685","Type":"Conventional","Directional":true,"Links":[{"SourceID":102684,"TargetID":102685,"Directional":true}]},{"ID":19529,"SourceStructureID":102687,"TargetStructureID":483,"Label":"102687-483 via Conventional from 102688 -> 6758","Type":"Conventional","Directional":true,"Links":[{"SourceID":102688,"TargetID":6758,"Directional":true}]},{"ID":19530,"SourceStructureID":102703,"TargetStructureID":5650,"Label":"102703-5650 via Conventional from 102707 -> 102708","Type":"Conventional","Directional":true,"Links":[{"SourceID":102707,"TargetID":102708,"Directional":true}]},{"ID":19531,"SourceStructureID":102704,"TargetStructureID":483,"Label":"102704-483 via Conventional from 102705 -> 26785","Type":"Conventional","Directional":true,"Links":[{"SourceID":102705,"TargetID":26785,"Directional":true}]},{"ID":19532,"SourceStructureID":102709,"TargetStructureID":483,"Label":"102709-483 via Conventional from 102713 -> 6752","Type":"Conventional","Directional":true,"Links":[{"SourceID":102713,"TargetID":6752,"Directional":true}]},{"ID":19533,"SourceStructureID":102710,"TargetStructureID":5650,"Label":"102710-5650 via Conventional from 102714 -> 102715, 102716 -> 102717","Type":"Conventional","Directional":true,"Links":[{"SourceID":102714,"TargetID":102715,"Directional":true},{"SourceID":102716,"TargetID":102717,"Directional":true}]},{"ID":19534,"SourceStructureID":102724,"TargetStructureID":483,"Label":"102724-483 via Conventional from 102725 -> 6749","Type":"Conventional","Directional":true,"Links":[{"SourceID":102725,"TargetID":6749,"Directional":true}]},{"ID":19535,"SourceStructureID":102727,"TargetStructureID":5650,"Label":"102727-5650 via Conventional from 102728 -> 102729","Type":"Conventional","Directional":true,"Links":[{"SourceID":102728,"TargetID":102729,"Directional":true}]},{"ID":19536,"SourceStructureID":102730,"TargetStructureID":5650,"Label":"102730-5650 via Conventional from 102738 -> 102740","Type":"Conventional","Directional":true,"Links":[{"SourceID":102738,"TargetID":102740,"Directional":true}]},{"ID":19537,"SourceStructureID":102736,"TargetStructureID":483,"Label":"102736-483 via Conventional from 102737 -> 6756","Type":"Conventional","Directional":true,"Links":[{"SourceID":102737,"TargetID":6756,"Directional":true}]},{"ID":19538,"SourceStructureID":102741,"TargetStructureID":483,"Label":"102741-483 via Conventional from 102742 -> 6759","Type":"Conventional","Directional":true,"Links":[{"SourceID":102742,"TargetID":6759,"Directional":true}]},{"ID":19539,"SourceStructureID":102744,"TargetStructureID":483,"Label":"102744-483 via Conventional from 102754 -> 6760","Type":"Conventional","Directional":true,"Links":[{"SourceID":102754,"TargetID":6760,"Directional":true}]},{"ID":19540,"SourceStructureID":102748,"TargetStructureID":102748,"Label":"102748-102748 via BC Conventional Synapse from 102770 -> 102772","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":102770,"TargetID":102772,"Directional":true}]},{"ID":19541,"SourceStructureID":102756,"TargetStructureID":483,"Label":"102756-483 via Conventional from 102758 -> 6765","Type":"Conventional","Directional":true,"Links":[{"SourceID":102758,"TargetID":6765,"Directional":true}]},{"ID":19542,"SourceStructureID":102757,"TargetStructureID":5650,"Label":"102757-5650 via Conventional from 102778 -> 102779","Type":"Conventional","Directional":true,"Links":[{"SourceID":102778,"TargetID":102779,"Directional":true}]},{"ID":19543,"SourceStructureID":102759,"TargetStructureID":483,"Label":"102759-483 via Conventional from 102760 -> 6766","Type":"Conventional","Directional":true,"Links":[{"SourceID":102760,"TargetID":6766,"Directional":true}]},{"ID":19544,"SourceStructureID":102761,"TargetStructureID":5650,"Label":"102761-5650 via Conventional from 102768 -> 102769","Type":"Conventional","Directional":true,"Links":[{"SourceID":102768,"TargetID":102769,"Directional":true}]},{"ID":19545,"SourceStructureID":102764,"TargetStructureID":5650,"Label":"102764-5650 via Conventional from 102766 -> 102767","Type":"Conventional","Directional":true,"Links":[{"SourceID":102766,"TargetID":102767,"Directional":true}]},{"ID":19546,"SourceStructureID":102775,"TargetStructureID":483,"Label":"102775-483 via Conventional from 102777 -> 26787","Type":"Conventional","Directional":true,"Links":[{"SourceID":102777,"TargetID":26787,"Directional":true}]},{"ID":19547,"SourceStructureID":102785,"TargetStructureID":5650,"Label":"102785-5650 via Conventional from 102800 -> 102801","Type":"Conventional","Directional":true,"Links":[{"SourceID":102800,"TargetID":102801,"Directional":true}]},{"ID":19548,"SourceStructureID":102787,"TargetStructureID":5650,"Label":"102787-5650 via Conventional from 102815 -> 102816","Type":"Conventional","Directional":true,"Links":[{"SourceID":102815,"TargetID":102816,"Directional":true}]},{"ID":19549,"SourceStructureID":102820,"TargetStructureID":483,"Label":"102820-483 via Conventional from 102823 -> 102819","Type":"Conventional","Directional":true,"Links":[{"SourceID":102823,"TargetID":102819,"Directional":true}]},{"ID":19550,"SourceStructureID":102838,"TargetStructureID":102838,"Label":"102838-102838 via Conventional from 102839 -> 102840","Type":"Conventional","Directional":true,"Links":[{"SourceID":102839,"TargetID":102840,"Directional":true}]},{"ID":19551,"SourceStructureID":102845,"TargetStructureID":483,"Label":"102845-483 via Conventional from 102846 -> 102844","Type":"Conventional","Directional":true,"Links":[{"SourceID":102846,"TargetID":102844,"Directional":true}]},{"ID":19552,"SourceStructureID":102859,"TargetStructureID":483,"Label":"102859-483 via Conventional from 102860 -> 102858","Type":"Conventional","Directional":true,"Links":[{"SourceID":102860,"TargetID":102858,"Directional":true}]},{"ID":19553,"SourceStructureID":102863,"TargetStructureID":483,"Label":"102863-483 via Conventional from 102865 -> 102862","Type":"Conventional","Directional":true,"Links":[{"SourceID":102865,"TargetID":102862,"Directional":true}]},{"ID":19554,"SourceStructureID":102877,"TargetStructureID":483,"Label":"102877-483 via Conventional from 102878 -> 102876","Type":"Conventional","Directional":true,"Links":[{"SourceID":102878,"TargetID":102876,"Directional":true}]},{"ID":19555,"SourceStructureID":102879,"TargetStructureID":483,"Label":"102879-483 via Conventional from 102883 -> 102882","Type":"Conventional","Directional":true,"Links":[{"SourceID":102883,"TargetID":102882,"Directional":true}]},{"ID":19556,"SourceStructureID":102879,"TargetStructureID":69537,"Label":"102879-69537 via Conventional from 102896 -> 69764","Type":"Conventional","Directional":true,"Links":[{"SourceID":102896,"TargetID":69764,"Directional":true}]},{"ID":19557,"SourceStructureID":102884,"TargetStructureID":483,"Label":"102884-483 via Conventional from 102885 -> 102872","Type":"Conventional","Directional":true,"Links":[{"SourceID":102885,"TargetID":102872,"Directional":true}]},{"ID":19558,"SourceStructureID":102890,"TargetStructureID":5650,"Label":"102890-5650 via Conventional from 102904 -> 38284","Type":"Conventional","Directional":true,"Links":[{"SourceID":102904,"TargetID":38284,"Directional":true}]},{"ID":19559,"SourceStructureID":102897,"TargetStructureID":483,"Label":"102897-483 via Conventional from 102902 -> 51181","Type":"Conventional","Directional":true,"Links":[{"SourceID":102902,"TargetID":51181,"Directional":true}]},{"ID":19560,"SourceStructureID":102912,"TargetStructureID":5650,"Label":"102912-5650 via Conventional from 102919 -> 102920","Type":"Conventional","Directional":true,"Links":[{"SourceID":102919,"TargetID":102920,"Directional":true}]},{"ID":19561,"SourceStructureID":102932,"TargetStructureID":5513,"Label":"102932-5513 via Conventional from 102934 -> 46784","Type":"Conventional","Directional":true,"Links":[{"SourceID":102934,"TargetID":46784,"Directional":true}]},{"ID":19562,"SourceStructureID":102932,"TargetStructureID":26079,"Label":"102932-26079 via Conventional from 102933 -> 102924","Type":"Conventional","Directional":true,"Links":[{"SourceID":102933,"TargetID":102924,"Directional":true}]},{"ID":19563,"SourceStructureID":102935,"TargetStructureID":5650,"Label":"102935-5650 via Conventional from 102944 -> 102945","Type":"Conventional","Directional":true,"Links":[{"SourceID":102944,"TargetID":102945,"Directional":true}]},{"ID":19564,"SourceStructureID":102946,"TargetStructureID":5650,"Label":"102946-5650 via Conventional from 102947 -> 102948","Type":"Conventional","Directional":true,"Links":[{"SourceID":102947,"TargetID":102948,"Directional":true}]},{"ID":19565,"SourceStructureID":102949,"TargetStructureID":5650,"Label":"102949-5650 via Conventional from 102950 -> 102951","Type":"Conventional","Directional":true,"Links":[{"SourceID":102950,"TargetID":102951,"Directional":true}]},{"ID":19566,"SourceStructureID":102952,"TargetStructureID":5650,"Label":"102952-5650 via Conventional from 102954 -> 102955","Type":"Conventional","Directional":true,"Links":[{"SourceID":102954,"TargetID":102955,"Directional":true}]},{"ID":19567,"SourceStructureID":102953,"TargetStructureID":5650,"Label":"102953-5650 via Conventional from 102973 -> 102974","Type":"Conventional","Directional":true,"Links":[{"SourceID":102973,"TargetID":102974,"Directional":true}]},{"ID":19568,"SourceStructureID":102956,"TargetStructureID":5650,"Label":"102956-5650 via Conventional from 102957 -> 102958","Type":"Conventional","Directional":true,"Links":[{"SourceID":102957,"TargetID":102958,"Directional":true}]},{"ID":19569,"SourceStructureID":102975,"TargetStructureID":5650,"Label":"102975-5650 via Conventional from 102980 -> 102981","Type":"Conventional","Directional":true,"Links":[{"SourceID":102980,"TargetID":102981,"Directional":true}]},{"ID":19570,"SourceStructureID":102985,"TargetStructureID":5650,"Label":"102985-5650 via Conventional from 102987 -> 102988","Type":"Conventional","Directional":true,"Links":[{"SourceID":102987,"TargetID":102988,"Directional":true}]},{"ID":19571,"SourceStructureID":103001,"TargetStructureID":5650,"Label":"103001-5650 via Conventional from 103004 -> 61076","Type":"Conventional","Directional":true,"Links":[{"SourceID":103004,"TargetID":61076,"Directional":true}]},{"ID":19572,"SourceStructureID":103008,"TargetStructureID":103008,"Label":"103008-103008 via Conventional from 103009 -> 103010","Type":"Conventional","Directional":true,"Links":[{"SourceID":103009,"TargetID":103010,"Directional":true}]},{"ID":19573,"SourceStructureID":103011,"TargetStructureID":5650,"Label":"103011-5650 via Conventional from 103012 -> 103013","Type":"Conventional","Directional":true,"Links":[{"SourceID":103012,"TargetID":103013,"Directional":true}]},{"ID":19574,"SourceStructureID":103014,"TargetStructureID":5650,"Label":"103014-5650 via Conventional from 103015 -> 103016","Type":"Conventional","Directional":true,"Links":[{"SourceID":103015,"TargetID":103016,"Directional":true}]},{"ID":19575,"SourceStructureID":103032,"TargetStructureID":5650,"Label":"103032-5650 via Conventional from 103034 -> 103035","Type":"Conventional","Directional":true,"Links":[{"SourceID":103034,"TargetID":103035,"Directional":true}]},{"ID":19576,"SourceStructureID":103037,"TargetStructureID":5650,"Label":"103037-5650 via Conventional from 103040 -> 103041","Type":"Conventional","Directional":true,"Links":[{"SourceID":103040,"TargetID":103041,"Directional":true}]},{"ID":19577,"SourceStructureID":103047,"TargetStructureID":5650,"Label":"103047-5650 via Conventional from 103048 -> 103049","Type":"Conventional","Directional":true,"Links":[{"SourceID":103048,"TargetID":103049,"Directional":true}]},{"ID":19578,"SourceStructureID":103064,"TargetStructureID":483,"Label":"103064-483 via Conventional from 103065 -> 103063","Type":"Conventional","Directional":true,"Links":[{"SourceID":103065,"TargetID":103063,"Directional":true}]},{"ID":19579,"SourceStructureID":103070,"TargetStructureID":483,"Label":"103070-483 via Conventional from 103071 -> 103069","Type":"Conventional","Directional":true,"Links":[{"SourceID":103071,"TargetID":103069,"Directional":true}]},{"ID":19580,"SourceStructureID":103076,"TargetStructureID":483,"Label":"103076-483 via Conventional from 103077 -> 103075","Type":"Conventional","Directional":true,"Links":[{"SourceID":103077,"TargetID":103075,"Directional":true}]},{"ID":19581,"SourceStructureID":103076,"TargetStructureID":41042,"Label":"103076-41042 via Conventional from 115809 -> 91422","Type":"Conventional","Directional":true,"Links":[{"SourceID":115809,"TargetID":91422,"Directional":true}]},{"ID":19582,"SourceStructureID":103090,"TargetStructureID":483,"Label":"103090-483 via Conventional from 103091 -> 6724","Type":"Conventional","Directional":true,"Links":[{"SourceID":103091,"TargetID":6724,"Directional":true}]},{"ID":19583,"SourceStructureID":103097,"TargetStructureID":46823,"Label":"103097-46823 via Conventional from 103100 -> 103101","Type":"Conventional","Directional":true,"Links":[{"SourceID":103100,"TargetID":103101,"Directional":true}]},{"ID":19584,"SourceStructureID":103102,"TargetStructureID":483,"Label":"103102-483 via Conventional from 103103 -> 6730","Type":"Conventional","Directional":true,"Links":[{"SourceID":103103,"TargetID":6730,"Directional":true}]},{"ID":19585,"SourceStructureID":103105,"TargetStructureID":483,"Label":"103105-483 via Conventional from 103106 -> 6740","Type":"Conventional","Directional":true,"Links":[{"SourceID":103106,"TargetID":6740,"Directional":true}]},{"ID":19586,"SourceStructureID":103122,"TargetStructureID":483,"Label":"103122-483 via Conventional from 103124 -> 103125","Type":"Conventional","Directional":true,"Links":[{"SourceID":103124,"TargetID":103125,"Directional":true}]},{"ID":19587,"SourceStructureID":103128,"TargetStructureID":483,"Label":"103128-483 via Conventional from 103130 -> 6744","Type":"Conventional","Directional":true,"Links":[{"SourceID":103130,"TargetID":6744,"Directional":true}]},{"ID":19588,"SourceStructureID":103132,"TargetStructureID":483,"Label":"103132-483 via Conventional from 103133 -> 103131","Type":"Conventional","Directional":true,"Links":[{"SourceID":103133,"TargetID":103131,"Directional":true}]},{"ID":19589,"SourceStructureID":103182,"TargetStructureID":483,"Label":"103182-483 via Conventional from 103184 -> 6732","Type":"Conventional","Directional":true,"Links":[{"SourceID":103184,"TargetID":6732,"Directional":true}]},{"ID":19590,"SourceStructureID":103187,"TargetStructureID":483,"Label":"103187-483 via Conventional from 103188 -> 6731","Type":"Conventional","Directional":true,"Links":[{"SourceID":103188,"TargetID":6731,"Directional":true}]},{"ID":19591,"SourceStructureID":103203,"TargetStructureID":483,"Label":"103203-483 via Conventional from 103207 -> 28766","Type":"Conventional","Directional":true,"Links":[{"SourceID":103207,"TargetID":28766,"Directional":true}]},{"ID":19592,"SourceStructureID":103228,"TargetStructureID":483,"Label":"103228-483 via Conventional from 103230 -> 28768","Type":"Conventional","Directional":true,"Links":[{"SourceID":103230,"TargetID":28768,"Directional":true}]},{"ID":19593,"SourceStructureID":103240,"TargetStructureID":483,"Label":"103240-483 via Conventional from 103251 -> 103252","Type":"Conventional","Directional":true,"Links":[{"SourceID":103251,"TargetID":103252,"Directional":true}]},{"ID":19594,"SourceStructureID":103244,"TargetStructureID":483,"Label":"103244-483 via Conventional from 103246 -> 103247","Type":"Conventional","Directional":true,"Links":[{"SourceID":103246,"TargetID":103247,"Directional":true}]},{"ID":19595,"SourceStructureID":103244,"TargetStructureID":7568,"Label":"103244-7568 via Conventional from 103245 -> 27088","Type":"Conventional","Directional":true,"Links":[{"SourceID":103245,"TargetID":27088,"Directional":true}]},{"ID":19596,"SourceStructureID":103248,"TargetStructureID":483,"Label":"103248-483 via Conventional from 134085 -> 134084","Type":"Conventional","Directional":true,"Links":[{"SourceID":134085,"TargetID":134084,"Directional":true}]},{"ID":19597,"SourceStructureID":103254,"TargetStructureID":483,"Label":"103254-483 via Conventional from 103255 -> 28769","Type":"Conventional","Directional":true,"Links":[{"SourceID":103255,"TargetID":28769,"Directional":true}]},{"ID":19598,"SourceStructureID":103258,"TargetStructureID":606,"Label":"103258-606 via Conventional from 103260 -> 53208","Type":"Conventional","Directional":true,"Links":[{"SourceID":103260,"TargetID":53208,"Directional":true}]},{"ID":19599,"SourceStructureID":103265,"TargetStructureID":483,"Label":"103265-483 via Conventional from 103266 -> 103267","Type":"Conventional","Directional":true,"Links":[{"SourceID":103266,"TargetID":103267,"Directional":true}]},{"ID":19600,"SourceStructureID":103269,"TargetStructureID":483,"Label":"103269-483 via Conventional from 103270 -> 103268","Type":"Conventional","Directional":true,"Links":[{"SourceID":103270,"TargetID":103268,"Directional":true}]},{"ID":19601,"SourceStructureID":103274,"TargetStructureID":483,"Label":"103274-483 via Conventional from 103278 -> 103279","Type":"Conventional","Directional":true,"Links":[{"SourceID":103278,"TargetID":103279,"Directional":true}]},{"ID":19602,"SourceStructureID":103281,"TargetStructureID":483,"Label":"103281-483 via Conventional from 103282 -> 103280","Type":"Conventional","Directional":true,"Links":[{"SourceID":103282,"TargetID":103280,"Directional":true}]},{"ID":19603,"SourceStructureID":103287,"TargetStructureID":483,"Label":"103287-483 via Conventional from 103289 -> 103286","Type":"Conventional","Directional":true,"Links":[{"SourceID":103289,"TargetID":103286,"Directional":true}]},{"ID":19604,"SourceStructureID":103313,"TargetStructureID":483,"Label":"103313-483 via Conventional from 103315 -> 103312","Type":"Conventional","Directional":true,"Links":[{"SourceID":103315,"TargetID":103312,"Directional":true}]},{"ID":19605,"SourceStructureID":103316,"TargetStructureID":483,"Label":"103316-483 via Conventional from 103317 -> 103318","Type":"Conventional","Directional":true,"Links":[{"SourceID":103317,"TargetID":103318,"Directional":true}]},{"ID":19606,"SourceStructureID":103331,"TargetStructureID":483,"Label":"103331-483 via Conventional from 103332 -> 6093","Type":"Conventional","Directional":true,"Links":[{"SourceID":103332,"TargetID":6093,"Directional":true}]},{"ID":19607,"SourceStructureID":103339,"TargetStructureID":483,"Label":"103339-483 via Conventional from 103340 -> 6089","Type":"Conventional","Directional":true,"Links":[{"SourceID":103340,"TargetID":6089,"Directional":true}]},{"ID":19608,"SourceStructureID":103352,"TargetStructureID":483,"Label":"103352-483 via Conventional from 103353 -> 6769","Type":"Conventional","Directional":true,"Links":[{"SourceID":103353,"TargetID":6769,"Directional":true}]},{"ID":19609,"SourceStructureID":103358,"TargetStructureID":483,"Label":"103358-483 via Conventional from 103361 -> 6085","Type":"Conventional","Directional":true,"Links":[{"SourceID":103361,"TargetID":6085,"Directional":true}]},{"ID":19610,"SourceStructureID":103362,"TargetStructureID":483,"Label":"103362-483 via Conventional from 103366 -> 6084","Type":"Conventional","Directional":true,"Links":[{"SourceID":103366,"TargetID":6084,"Directional":true}]},{"ID":19611,"SourceStructureID":103367,"TargetStructureID":483,"Label":"103367-483 via Conventional from 103368 -> 6082","Type":"Conventional","Directional":true,"Links":[{"SourceID":103368,"TargetID":6082,"Directional":true}]},{"ID":19612,"SourceStructureID":103381,"TargetStructureID":483,"Label":"103381-483 via Conventional from 103382 -> 6775","Type":"Conventional","Directional":true,"Links":[{"SourceID":103382,"TargetID":6775,"Directional":true}]},{"ID":19613,"SourceStructureID":103399,"TargetStructureID":483,"Label":"103399-483 via Conventional from 103400 -> 6071","Type":"Conventional","Directional":true,"Links":[{"SourceID":103400,"TargetID":6071,"Directional":true}]},{"ID":19614,"SourceStructureID":103411,"TargetStructureID":483,"Label":"103411-483 via Conventional from 103414 -> 6772","Type":"Conventional","Directional":true,"Links":[{"SourceID":103414,"TargetID":6772,"Directional":true}]},{"ID":19615,"SourceStructureID":103417,"TargetStructureID":483,"Label":"103417-483 via Conventional from 103418 -> 6774","Type":"Conventional","Directional":true,"Links":[{"SourceID":103418,"TargetID":6774,"Directional":true}]},{"ID":19616,"SourceStructureID":103440,"TargetStructureID":483,"Label":"103440-483 via Conventional from 103441 -> 49799","Type":"Conventional","Directional":true,"Links":[{"SourceID":103441,"TargetID":49799,"Directional":true}]},{"ID":19617,"SourceStructureID":103458,"TargetStructureID":483,"Label":"103458-483 via Conventional from 103459 -> 97736","Type":"Conventional","Directional":true,"Links":[{"SourceID":103459,"TargetID":97736,"Directional":true}]},{"ID":19618,"SourceStructureID":103462,"TargetStructureID":483,"Label":"103462-483 via Conventional from 103463 -> 97732","Type":"Conventional","Directional":true,"Links":[{"SourceID":103463,"TargetID":97732,"Directional":true}]},{"ID":19619,"SourceStructureID":103475,"TargetStructureID":483,"Label":"103475-483 via Conventional from 103476 -> 97769","Type":"Conventional","Directional":true,"Links":[{"SourceID":103476,"TargetID":97769,"Directional":true}]},{"ID":19620,"SourceStructureID":103485,"TargetStructureID":483,"Label":"103485-483 via Conventional from 103488 -> 92316","Type":"Conventional","Directional":true,"Links":[{"SourceID":103488,"TargetID":92316,"Directional":true}]},{"ID":19621,"SourceStructureID":103514,"TargetStructureID":483,"Label":"103514-483 via Conventional from 103515 -> 97778","Type":"Conventional","Directional":true,"Links":[{"SourceID":103515,"TargetID":97778,"Directional":true}]},{"ID":19622,"SourceStructureID":103517,"TargetStructureID":483,"Label":"103517-483 via Conventional from 103518 -> 103516","Type":"Conventional","Directional":true,"Links":[{"SourceID":103518,"TargetID":103516,"Directional":true}]},{"ID":19623,"SourceStructureID":103526,"TargetStructureID":483,"Label":"103526-483 via Conventional from 103527 -> 97436","Type":"Conventional","Directional":true,"Links":[{"SourceID":103527,"TargetID":97436,"Directional":true}]},{"ID":19624,"SourceStructureID":103532,"TargetStructureID":483,"Label":"103532-483 via Conventional from 103533 -> 92338","Type":"Conventional","Directional":true,"Links":[{"SourceID":103533,"TargetID":92338,"Directional":true}]},{"ID":19625,"SourceStructureID":103541,"TargetStructureID":483,"Label":"103541-483 via Conventional from 103542 -> 97437","Type":"Conventional","Directional":true,"Links":[{"SourceID":103542,"TargetID":97437,"Directional":true}]},{"ID":19626,"SourceStructureID":103557,"TargetStructureID":5649,"Label":"103557-5649 via Conventional from 103765 -> 103763","Type":"Conventional","Directional":true,"Links":[{"SourceID":103765,"TargetID":103763,"Directional":true}]},{"ID":19627,"SourceStructureID":103563,"TargetStructureID":5650,"Label":"103563-5650 via Conventional from 103568 -> 103569","Type":"Conventional","Directional":true,"Links":[{"SourceID":103568,"TargetID":103569,"Directional":true}]},{"ID":19628,"SourceStructureID":103595,"TargetStructureID":5650,"Label":"103595-5650 via Conventional from 103596 -> 103597","Type":"Conventional","Directional":true,"Links":[{"SourceID":103596,"TargetID":103597,"Directional":true}]},{"ID":19629,"SourceStructureID":103603,"TargetStructureID":5650,"Label":"103603-5650 via Conventional from 103607 -> 103608","Type":"Conventional","Directional":true,"Links":[{"SourceID":103607,"TargetID":103608,"Directional":true}]},{"ID":19630,"SourceStructureID":103613,"TargetStructureID":5650,"Label":"103613-5650 via Conventional from 103633 -> 103634","Type":"Conventional","Directional":true,"Links":[{"SourceID":103633,"TargetID":103634,"Directional":true}]},{"ID":19631,"SourceStructureID":103639,"TargetStructureID":5650,"Label":"103639-5650 via Conventional from 103640 -> 103641","Type":"Conventional","Directional":true,"Links":[{"SourceID":103640,"TargetID":103641,"Directional":true}]},{"ID":19632,"SourceStructureID":103642,"TargetStructureID":5650,"Label":"103642-5650 via Conventional from 103643 -> 103644","Type":"Conventional","Directional":true,"Links":[{"SourceID":103643,"TargetID":103644,"Directional":true}]},{"ID":19633,"SourceStructureID":103651,"TargetStructureID":5650,"Label":"103651-5650 via Conventional from 103652 -> 103653","Type":"Conventional","Directional":true,"Links":[{"SourceID":103652,"TargetID":103653,"Directional":true}]},{"ID":19634,"SourceStructureID":103669,"TargetStructureID":5650,"Label":"103669-5650 via Conventional from 103670 -> 103672","Type":"Conventional","Directional":true,"Links":[{"SourceID":103670,"TargetID":103672,"Directional":true}]},{"ID":19635,"SourceStructureID":103680,"TargetStructureID":5650,"Label":"103680-5650 via Conventional from 103683 -> 103684","Type":"Conventional","Directional":true,"Links":[{"SourceID":103683,"TargetID":103684,"Directional":true}]},{"ID":19636,"SourceStructureID":103680,"TargetStructureID":12897,"Label":"103680-12897 via Ribbon Synapse from 103686 -> 103685","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":103686,"TargetID":103685,"Directional":true}]},{"ID":19637,"SourceStructureID":103687,"TargetStructureID":5650,"Label":"103687-5650 via Conventional from 103696 -> 103697","Type":"Conventional","Directional":true,"Links":[{"SourceID":103696,"TargetID":103697,"Directional":true}]},{"ID":19638,"SourceStructureID":103701,"TargetStructureID":5650,"Label":"103701-5650 via Conventional from 103702 -> 103703","Type":"Conventional","Directional":true,"Links":[{"SourceID":103702,"TargetID":103703,"Directional":true}]},{"ID":19639,"SourceStructureID":103707,"TargetStructureID":5650,"Label":"103707-5650 via Conventional from 103708 -> 103709","Type":"Conventional","Directional":true,"Links":[{"SourceID":103708,"TargetID":103709,"Directional":true}]},{"ID":19640,"SourceStructureID":103728,"TargetStructureID":6857,"Label":"103728-6857 via Conventional from 103729 -> 103730","Type":"Conventional","Directional":true,"Links":[{"SourceID":103729,"TargetID":103730,"Directional":true}]},{"ID":19641,"SourceStructureID":103734,"TargetStructureID":483,"Label":"103734-483 via Conventional from 103735 -> 103733","Type":"Conventional","Directional":true,"Links":[{"SourceID":103735,"TargetID":103733,"Directional":true}]},{"ID":19642,"SourceStructureID":103738,"TargetStructureID":483,"Label":"103738-483 via Conventional from 103739 -> 103727","Type":"Conventional","Directional":true,"Links":[{"SourceID":103739,"TargetID":103727,"Directional":true}]},{"ID":19643,"SourceStructureID":103750,"TargetStructureID":483,"Label":"103750-483 via Conventional from 103751 -> 103752","Type":"Conventional","Directional":true,"Links":[{"SourceID":103751,"TargetID":103752,"Directional":true}]},{"ID":19644,"SourceStructureID":103754,"TargetStructureID":483,"Label":"103754-483 via Conventional from 103755 -> 103753","Type":"Conventional","Directional":true,"Links":[{"SourceID":103755,"TargetID":103753,"Directional":true}]},{"ID":19645,"SourceStructureID":103771,"TargetStructureID":12897,"Label":"103771-12897 via Ribbon Synapse from 135376 -> 135375","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135376,"TargetID":135375,"Directional":true}]},{"ID":19646,"SourceStructureID":103830,"TargetStructureID":5650,"Label":"103830-5650 via Conventional from 103831 -> 103832","Type":"Conventional","Directional":true,"Links":[{"SourceID":103831,"TargetID":103832,"Directional":true}]},{"ID":19647,"SourceStructureID":103834,"TargetStructureID":5650,"Label":"103834-5650 via Conventional from 103835 -> 103836","Type":"Conventional","Directional":true,"Links":[{"SourceID":103835,"TargetID":103836,"Directional":true}]},{"ID":19648,"SourceStructureID":103841,"TargetStructureID":5650,"Label":"103841-5650 via Conventional from 103842 -> 103843","Type":"Conventional","Directional":true,"Links":[{"SourceID":103842,"TargetID":103843,"Directional":true}]},{"ID":19649,"SourceStructureID":103846,"TargetStructureID":5650,"Label":"103846-5650 via Conventional from 103847 -> 103848","Type":"Conventional","Directional":true,"Links":[{"SourceID":103847,"TargetID":103848,"Directional":true}]},{"ID":19650,"SourceStructureID":103846,"TargetStructureID":112819,"Label":"103846-112819 via Conventional from 112822 -> 112821","Type":"Conventional","Directional":true,"Links":[{"SourceID":112822,"TargetID":112821,"Directional":true}]},{"ID":19651,"SourceStructureID":103853,"TargetStructureID":5650,"Label":"103853-5650 via Conventional from 103854 -> 103855","Type":"Conventional","Directional":true,"Links":[{"SourceID":103854,"TargetID":103855,"Directional":true}]},{"ID":19652,"SourceStructureID":103856,"TargetStructureID":5650,"Label":"103856-5650 via Conventional from 103867 -> 103868","Type":"Conventional","Directional":true,"Links":[{"SourceID":103867,"TargetID":103868,"Directional":true}]},{"ID":19653,"SourceStructureID":103869,"TargetStructureID":5650,"Label":"103869-5650 via Conventional from 103870 -> 103871","Type":"Conventional","Directional":true,"Links":[{"SourceID":103870,"TargetID":103871,"Directional":true}]},{"ID":19654,"SourceStructureID":103872,"TargetStructureID":5650,"Label":"103872-5650 via Conventional from 103878 -> 103879","Type":"Conventional","Directional":true,"Links":[{"SourceID":103878,"TargetID":103879,"Directional":true}]},{"ID":19655,"SourceStructureID":103875,"TargetStructureID":5650,"Label":"103875-5650 via Conventional from 103876 -> 103877","Type":"Conventional","Directional":true,"Links":[{"SourceID":103876,"TargetID":103877,"Directional":true}]},{"ID":19656,"SourceStructureID":103880,"TargetStructureID":5650,"Label":"103880-5650 via Conventional from 103881 -> 103882","Type":"Conventional","Directional":true,"Links":[{"SourceID":103881,"TargetID":103882,"Directional":true}]},{"ID":19657,"SourceStructureID":103896,"TargetStructureID":5650,"Label":"103896-5650 via Conventional from 103904 -> 23487","Type":"Conventional","Directional":true,"Links":[{"SourceID":103904,"TargetID":23487,"Directional":true}]},{"ID":19658,"SourceStructureID":103907,"TargetStructureID":5650,"Label":"103907-5650 via Conventional from 103908 -> 103909","Type":"Conventional","Directional":true,"Links":[{"SourceID":103908,"TargetID":103909,"Directional":true}]},{"ID":19659,"SourceStructureID":103913,"TargetStructureID":5650,"Label":"103913-5650 via Conventional from 103914 -> 23491","Type":"Conventional","Directional":true,"Links":[{"SourceID":103914,"TargetID":23491,"Directional":true}]},{"ID":19660,"SourceStructureID":103915,"TargetStructureID":5650,"Label":"103915-5650 via Conventional from 103916 -> 103917","Type":"Conventional","Directional":true,"Links":[{"SourceID":103916,"TargetID":103917,"Directional":true}]},{"ID":19661,"SourceStructureID":103920,"TargetStructureID":5650,"Label":"103920-5650 via Conventional from 103921 -> 23489","Type":"Conventional","Directional":true,"Links":[{"SourceID":103921,"TargetID":23489,"Directional":true}]},{"ID":19662,"SourceStructureID":103922,"TargetStructureID":5650,"Label":"103922-5650 via Conventional from 103923 -> 23494","Type":"Conventional","Directional":true,"Links":[{"SourceID":103923,"TargetID":23494,"Directional":true}]},{"ID":19663,"SourceStructureID":103951,"TargetStructureID":5650,"Label":"103951-5650 via Conventional from 103953 -> 103954","Type":"Conventional","Directional":true,"Links":[{"SourceID":103953,"TargetID":103954,"Directional":true}]},{"ID":19664,"SourceStructureID":103956,"TargetStructureID":5650,"Label":"103956-5650 via Conventional from 103957 -> 23482","Type":"Conventional","Directional":true,"Links":[{"SourceID":103957,"TargetID":23482,"Directional":true}]},{"ID":19665,"SourceStructureID":103958,"TargetStructureID":5650,"Label":"103958-5650 via Conventional from 103959 -> 103960","Type":"Conventional","Directional":true,"Links":[{"SourceID":103959,"TargetID":103960,"Directional":true}]},{"ID":19666,"SourceStructureID":103969,"TargetStructureID":5650,"Label":"103969-5650 via Conventional from 103970 -> 103971","Type":"Conventional","Directional":true,"Links":[{"SourceID":103970,"TargetID":103971,"Directional":true}]},{"ID":19667,"SourceStructureID":103975,"TargetStructureID":5650,"Label":"103975-5650 via Conventional from 103979 -> 103980","Type":"Conventional","Directional":true,"Links":[{"SourceID":103979,"TargetID":103980,"Directional":true}]},{"ID":19668,"SourceStructureID":103987,"TargetStructureID":5650,"Label":"103987-5650 via Conventional from 104018 -> 104019","Type":"Conventional","Directional":true,"Links":[{"SourceID":104018,"TargetID":104019,"Directional":true}]},{"ID":19669,"SourceStructureID":103992,"TargetStructureID":5278,"Label":"103992-5278 via Conventional from 104000 -> 104001","Type":"Conventional","Directional":true,"Links":[{"SourceID":104000,"TargetID":104001,"Directional":true}]},{"ID":19670,"SourceStructureID":103999,"TargetStructureID":5278,"Label":"103999-5278 via Conventional from 104004 -> 11189","Type":"Conventional","Directional":true,"Links":[{"SourceID":104004,"TargetID":11189,"Directional":true}]},{"ID":19671,"SourceStructureID":104013,"TargetStructureID":5650,"Label":"104013-5650 via Conventional from 104016 -> 104017","Type":"Conventional","Directional":true,"Links":[{"SourceID":104016,"TargetID":104017,"Directional":true}]},{"ID":19672,"SourceStructureID":104043,"TargetStructureID":5650,"Label":"104043-5650 via Conventional from 104047 -> 104048","Type":"Conventional","Directional":true,"Links":[{"SourceID":104047,"TargetID":104048,"Directional":true}]},{"ID":19673,"SourceStructureID":104049,"TargetStructureID":5278,"Label":"104049-5278 via Conventional from 104065 -> 104067","Type":"Conventional","Directional":true,"Links":[{"SourceID":104065,"TargetID":104067,"Directional":true}]},{"ID":19674,"SourceStructureID":104056,"TargetStructureID":5650,"Label":"104056-5650 via Conventional from 104058 -> 104061","Type":"Conventional","Directional":true,"Links":[{"SourceID":104058,"TargetID":104061,"Directional":true}]},{"ID":19675,"SourceStructureID":104062,"TargetStructureID":5278,"Label":"104062-5278 via Conventional from 104864 -> 104865","Type":"Conventional","Directional":true,"Links":[{"SourceID":104864,"TargetID":104865,"Directional":true}]},{"ID":19676,"SourceStructureID":104063,"TargetStructureID":5650,"Label":"104063-5650 via Conventional from 104077 -> 104078","Type":"Conventional","Directional":true,"Links":[{"SourceID":104077,"TargetID":104078,"Directional":true}]},{"ID":19677,"SourceStructureID":104082,"TargetStructureID":5650,"Label":"104082-5650 via Conventional from 104085 -> 104086","Type":"Conventional","Directional":true,"Links":[{"SourceID":104085,"TargetID":104086,"Directional":true}]},{"ID":19678,"SourceStructureID":104084,"TargetStructureID":104079,"Label":"104084-104079 via Conventional from 104087 -> 104088","Type":"Conventional","Directional":true,"Links":[{"SourceID":104087,"TargetID":104088,"Directional":true}]},{"ID":19679,"SourceStructureID":104090,"TargetStructureID":104089,"Label":"104090-104089 via Conventional from 104091 -> 104092","Type":"Conventional","Directional":true,"Links":[{"SourceID":104091,"TargetID":104092,"Directional":true}]},{"ID":19680,"SourceStructureID":104097,"TargetStructureID":5650,"Label":"104097-5650 via Conventional from 104102 -> 30146","Type":"Conventional","Directional":true,"Links":[{"SourceID":104102,"TargetID":30146,"Directional":true}]},{"ID":19681,"SourceStructureID":104103,"TargetStructureID":5650,"Label":"104103-5650 via Conventional from 104104 -> 30147","Type":"Conventional","Directional":true,"Links":[{"SourceID":104104,"TargetID":30147,"Directional":true}]},{"ID":19682,"SourceStructureID":104109,"TargetStructureID":1021,"Label":"104109-1021 via Conventional from 125238 -> 125237","Type":"Conventional","Directional":true,"Links":[{"SourceID":125238,"TargetID":125237,"Directional":true}]},{"ID":19683,"SourceStructureID":104109,"TargetStructureID":5650,"Label":"104109-5650 via Conventional from 104111 -> 30144","Type":"Conventional","Directional":true,"Links":[{"SourceID":104111,"TargetID":30144,"Directional":true}]},{"ID":19684,"SourceStructureID":104117,"TargetStructureID":5278,"Label":"104117-5278 via Conventional from 104150 -> 20127","Type":"Conventional","Directional":true,"Links":[{"SourceID":104150,"TargetID":20127,"Directional":true}]},{"ID":19685,"SourceStructureID":104118,"TargetStructureID":5650,"Label":"104118-5650 via Conventional from 104119 -> 30148","Type":"Conventional","Directional":true,"Links":[{"SourceID":104119,"TargetID":30148,"Directional":true}]},{"ID":19686,"SourceStructureID":104131,"TargetStructureID":5650,"Label":"104131-5650 via Conventional from 104135 -> 104136","Type":"Conventional","Directional":true,"Links":[{"SourceID":104135,"TargetID":104136,"Directional":true}]},{"ID":19687,"SourceStructureID":104140,"TargetStructureID":5650,"Label":"104140-5650 via Conventional from 104145 -> 104147","Type":"Conventional","Directional":true,"Links":[{"SourceID":104145,"TargetID":104147,"Directional":true}]},{"ID":19688,"SourceStructureID":104143,"TargetStructureID":5278,"Label":"104143-5278 via Conventional from 104148 -> 11209","Type":"Conventional","Directional":true,"Links":[{"SourceID":104148,"TargetID":11209,"Directional":true}]},{"ID":19689,"SourceStructureID":104155,"TargetStructureID":6120,"Label":"104155-6120 via Conventional from 111226 -> 111225","Type":"Conventional","Directional":true,"Links":[{"SourceID":111226,"TargetID":111225,"Directional":true}]},{"ID":19690,"SourceStructureID":104157,"TargetStructureID":5650,"Label":"104157-5650 via Conventional from 104158 -> 104159, 104165 -> 30157","Type":"Conventional","Directional":true,"Links":[{"SourceID":104158,"TargetID":104159,"Directional":true},{"SourceID":104165,"TargetID":30157,"Directional":true}]},{"ID":19691,"SourceStructureID":104160,"TargetStructureID":5650,"Label":"104160-5650 via Conventional from 104161 -> 104162","Type":"Conventional","Directional":true,"Links":[{"SourceID":104161,"TargetID":104162,"Directional":true}]},{"ID":19692,"SourceStructureID":104168,"TargetStructureID":5278,"Label":"104168-5278 via Conventional from 104169 -> 11197","Type":"Conventional","Directional":true,"Links":[{"SourceID":104169,"TargetID":11197,"Directional":true}]},{"ID":19693,"SourceStructureID":104170,"TargetStructureID":5278,"Label":"104170-5278 via Conventional from 104173 -> 11198","Type":"Conventional","Directional":true,"Links":[{"SourceID":104173,"TargetID":11198,"Directional":true}]},{"ID":19694,"SourceStructureID":104180,"TargetStructureID":5278,"Label":"104180-5278 via Conventional from 104181 -> 20130","Type":"Conventional","Directional":true,"Links":[{"SourceID":104181,"TargetID":20130,"Directional":true}]},{"ID":19695,"SourceStructureID":104208,"TargetStructureID":5278,"Label":"104208-5278 via Conventional from 104209 -> 104210","Type":"Conventional","Directional":true,"Links":[{"SourceID":104209,"TargetID":104210,"Directional":true}]},{"ID":19696,"SourceStructureID":104211,"TargetStructureID":142,"Label":"104211-142 via Conventional from 104862 -> 92451","Type":"Conventional","Directional":true,"Links":[{"SourceID":104862,"TargetID":92451,"Directional":true}]},{"ID":19697,"SourceStructureID":104211,"TargetStructureID":5278,"Label":"104211-5278 via Conventional from 104860 -> 11207","Type":"Conventional","Directional":true,"Links":[{"SourceID":104860,"TargetID":11207,"Directional":true}]},{"ID":19698,"SourceStructureID":104223,"TargetStructureID":5278,"Label":"104223-5278 via Conventional from 104224 -> 11205","Type":"Conventional","Directional":true,"Links":[{"SourceID":104224,"TargetID":11205,"Directional":true}]},{"ID":19699,"SourceStructureID":104266,"TargetStructureID":5650,"Label":"104266-5650 via Conventional from 104267 -> 104268","Type":"Conventional","Directional":true,"Links":[{"SourceID":104267,"TargetID":104268,"Directional":true}]},{"ID":19700,"SourceStructureID":104273,"TargetStructureID":5650,"Label":"104273-5650 via Conventional from 104274 -> 104275","Type":"Conventional","Directional":true,"Links":[{"SourceID":104274,"TargetID":104275,"Directional":true}]},{"ID":19701,"SourceStructureID":104276,"TargetStructureID":5278,"Label":"104276-5278 via Conventional from 104279 -> 104280","Type":"Conventional","Directional":true,"Links":[{"SourceID":104279,"TargetID":104280,"Directional":true}]},{"ID":19702,"SourceStructureID":104285,"TargetStructureID":5650,"Label":"104285-5650 via Conventional from 126391 -> 126390","Type":"Conventional","Directional":true,"Links":[{"SourceID":126391,"TargetID":126390,"Directional":true}]},{"ID":19703,"SourceStructureID":104289,"TargetStructureID":5650,"Label":"104289-5650 via Conventional from 104291 -> 104293","Type":"Conventional","Directional":true,"Links":[{"SourceID":104291,"TargetID":104293,"Directional":true}]},{"ID":19704,"SourceStructureID":104335,"TargetStructureID":5650,"Label":"104335-5650 via Conventional from 104341 -> 104342","Type":"Conventional","Directional":true,"Links":[{"SourceID":104341,"TargetID":104342,"Directional":true}]},{"ID":19705,"SourceStructureID":104340,"TargetStructureID":5278,"Label":"104340-5278 via Conventional from 104343 -> 92264","Type":"Conventional","Directional":true,"Links":[{"SourceID":104343,"TargetID":92264,"Directional":true}]},{"ID":19706,"SourceStructureID":104346,"TargetStructureID":5278,"Label":"104346-5278 via Conventional from 104349 -> 92265","Type":"Conventional","Directional":true,"Links":[{"SourceID":104349,"TargetID":92265,"Directional":true}]},{"ID":19707,"SourceStructureID":104352,"TargetStructureID":5650,"Label":"104352-5650 via Conventional from 104357 -> 104358","Type":"Conventional","Directional":true,"Links":[{"SourceID":104357,"TargetID":104358,"Directional":true}]},{"ID":19708,"SourceStructureID":104359,"TargetStructureID":5650,"Label":"104359-5650 via Conventional from 104360 -> 104361","Type":"Conventional","Directional":true,"Links":[{"SourceID":104360,"TargetID":104361,"Directional":true}]},{"ID":19709,"SourceStructureID":104364,"TargetStructureID":5650,"Label":"104364-5650 via Conventional from 104365 -> 104366","Type":"Conventional","Directional":true,"Links":[{"SourceID":104365,"TargetID":104366,"Directional":true}]},{"ID":19710,"SourceStructureID":104368,"TargetStructureID":5650,"Label":"104368-5650 via Conventional from 104369 -> 29903","Type":"Conventional","Directional":true,"Links":[{"SourceID":104369,"TargetID":29903,"Directional":true}]},{"ID":19711,"SourceStructureID":104373,"TargetStructureID":5650,"Label":"104373-5650 via Conventional from 104374 -> 29902","Type":"Conventional","Directional":true,"Links":[{"SourceID":104374,"TargetID":29902,"Directional":true}]},{"ID":19712,"SourceStructureID":104388,"TargetStructureID":5278,"Label":"104388-5278 via Conventional from 104389 -> 104390","Type":"Conventional","Directional":true,"Links":[{"SourceID":104389,"TargetID":104390,"Directional":true}]},{"ID":19713,"SourceStructureID":104399,"TargetStructureID":5278,"Label":"104399-5278 via Conventional from 104400 -> 92195","Type":"Conventional","Directional":true,"Links":[{"SourceID":104400,"TargetID":92195,"Directional":true}]},{"ID":19714,"SourceStructureID":104410,"TargetStructureID":5278,"Label":"104410-5278 via Conventional from 104413 -> 104415","Type":"Conventional","Directional":true,"Links":[{"SourceID":104413,"TargetID":104415,"Directional":true}]},{"ID":19715,"SourceStructureID":104414,"TargetStructureID":5650,"Label":"104414-5650 via Conventional from 104422 -> 104424","Type":"Conventional","Directional":true,"Links":[{"SourceID":104422,"TargetID":104424,"Directional":true}]},{"ID":19716,"SourceStructureID":104430,"TargetStructureID":5278,"Label":"104430-5278 via Conventional from 104431 -> 104432","Type":"Conventional","Directional":true,"Links":[{"SourceID":104431,"TargetID":104432,"Directional":true}]},{"ID":19717,"SourceStructureID":104434,"TargetStructureID":5278,"Label":"104434-5278 via Conventional from 104436 -> 92167","Type":"Conventional","Directional":true,"Links":[{"SourceID":104436,"TargetID":92167,"Directional":true}]},{"ID":19718,"SourceStructureID":104435,"TargetStructureID":5284,"Label":"104435-5284 via Conventional from 113310 -> 113306","Type":"Conventional","Directional":true,"Links":[{"SourceID":113310,"TargetID":113306,"Directional":true}]},{"ID":19719,"SourceStructureID":104444,"TargetStructureID":5278,"Label":"104444-5278 via Conventional from 104447 -> 104528","Type":"Conventional","Directional":true,"Links":[{"SourceID":104447,"TargetID":104528,"Directional":true}]},{"ID":19720,"SourceStructureID":104462,"TargetStructureID":5650,"Label":"104462-5650 via Conventional from 104463 -> 104464","Type":"Conventional","Directional":true,"Links":[{"SourceID":104463,"TargetID":104464,"Directional":true}]},{"ID":19721,"SourceStructureID":104468,"TargetStructureID":5650,"Label":"104468-5650 via Conventional from 104470 -> 29905","Type":"Conventional","Directional":true,"Links":[{"SourceID":104470,"TargetID":29905,"Directional":true}]},{"ID":19722,"SourceStructureID":104473,"TargetStructureID":5650,"Label":"104473-5650 via Conventional from 104474 -> 29917","Type":"Conventional","Directional":true,"Links":[{"SourceID":104474,"TargetID":29917,"Directional":true}]},{"ID":19723,"SourceStructureID":104477,"TargetStructureID":5649,"Label":"104477-5649 via Conventional from 135452 -> 135451","Type":"Conventional","Directional":true,"Links":[{"SourceID":135452,"TargetID":135451,"Directional":true}]},{"ID":19724,"SourceStructureID":104484,"TargetStructureID":5649,"Label":"104484-5649 via Conventional from 104486 -> 104487","Type":"Conventional","Directional":true,"Links":[{"SourceID":104486,"TargetID":104487,"Directional":true}]},{"ID":19725,"SourceStructureID":104505,"TargetStructureID":5649,"Label":"104505-5649 via Conventional from 104506 -> 104504","Type":"Conventional","Directional":true,"Links":[{"SourceID":104506,"TargetID":104504,"Directional":true}]},{"ID":19726,"SourceStructureID":104507,"TargetStructureID":5278,"Label":"104507-5278 via Conventional from 104510 -> 92165","Type":"Conventional","Directional":true,"Links":[{"SourceID":104510,"TargetID":92165,"Directional":true}]},{"ID":19727,"SourceStructureID":104509,"TargetStructureID":104523,"Label":"104509-104523 via Conventional from 104522 -> 104524","Type":"Conventional","Directional":true,"Links":[{"SourceID":104522,"TargetID":104524,"Directional":true}]},{"ID":19728,"SourceStructureID":104523,"TargetStructureID":5649,"Label":"104523-5649 via Conventional from 104548 -> 104549","Type":"Conventional","Directional":true,"Links":[{"SourceID":104548,"TargetID":104549,"Directional":true}]},{"ID":19729,"SourceStructureID":104526,"TargetStructureID":5649,"Label":"104526-5649 via Conventional from 104527 -> 104525","Type":"Conventional","Directional":true,"Links":[{"SourceID":104527,"TargetID":104525,"Directional":true}]},{"ID":19730,"SourceStructureID":104534,"TargetStructureID":5649,"Label":"104534-5649 via Conventional from 104535 -> 104533","Type":"Conventional","Directional":true,"Links":[{"SourceID":104535,"TargetID":104533,"Directional":true}]},{"ID":19731,"SourceStructureID":104538,"TargetStructureID":104541,"Label":"104538-104541 via Conventional from 104539 -> 104542","Type":"Conventional","Directional":true,"Links":[{"SourceID":104539,"TargetID":104542,"Directional":true}]},{"ID":19732,"SourceStructureID":104554,"TargetStructureID":5649,"Label":"104554-5649 via Conventional from 104555 -> 104550","Type":"Conventional","Directional":true,"Links":[{"SourceID":104555,"TargetID":104550,"Directional":true}]},{"ID":19733,"SourceStructureID":104556,"TargetStructureID":5649,"Label":"104556-5649 via Conventional from 104558 -> 104553","Type":"Conventional","Directional":true,"Links":[{"SourceID":104558,"TargetID":104553,"Directional":true}]},{"ID":19734,"SourceStructureID":104559,"TargetStructureID":5649,"Label":"104559-5649 via Conventional from 135454 -> 135453","Type":"Conventional","Directional":true,"Links":[{"SourceID":135454,"TargetID":135453,"Directional":true}]},{"ID":19735,"SourceStructureID":104565,"TargetStructureID":5649,"Label":"104565-5649 via Conventional from 104566 -> 104564","Type":"Conventional","Directional":true,"Links":[{"SourceID":104566,"TargetID":104564,"Directional":true}]},{"ID":19736,"SourceStructureID":104572,"TargetStructureID":5649,"Label":"104572-5649 via Conventional from 104574 -> 104552","Type":"Conventional","Directional":true,"Links":[{"SourceID":104574,"TargetID":104552,"Directional":true}]},{"ID":19737,"SourceStructureID":104580,"TargetStructureID":5649,"Label":"104580-5649 via Conventional from 104581 -> 104579","Type":"Conventional","Directional":true,"Links":[{"SourceID":104581,"TargetID":104579,"Directional":true}]},{"ID":19738,"SourceStructureID":104587,"TargetStructureID":5278,"Label":"104587-5278 via Conventional from 104590 -> 92220","Type":"Conventional","Directional":true,"Links":[{"SourceID":104590,"TargetID":92220,"Directional":true}]},{"ID":19739,"SourceStructureID":104591,"TargetStructureID":5278,"Label":"104591-5278 via Conventional from 104592 -> 92221, 104597 -> 92221","Type":"Conventional","Directional":true,"Links":[{"SourceID":104592,"TargetID":92221,"Directional":true},{"SourceID":104597,"TargetID":92221,"Directional":true}]},{"ID":19740,"SourceStructureID":104593,"TargetStructureID":5278,"Label":"104593-5278 via Conventional from 104594 -> 104595","Type":"Conventional","Directional":true,"Links":[{"SourceID":104594,"TargetID":104595,"Directional":true}]},{"ID":19741,"SourceStructureID":104616,"TargetStructureID":5649,"Label":"104616-5649 via Conventional from 104617 -> 104615","Type":"Conventional","Directional":true,"Links":[{"SourceID":104617,"TargetID":104615,"Directional":true}]},{"ID":19742,"SourceStructureID":104619,"TargetStructureID":5649,"Label":"104619-5649 via Conventional from 104620 -> 104618, 136133 -> 136132","Type":"Conventional","Directional":true,"Links":[{"SourceID":104620,"TargetID":104618,"Directional":true},{"SourceID":136133,"TargetID":136132,"Directional":true}]},{"ID":19743,"SourceStructureID":104633,"TargetStructureID":5649,"Label":"104633-5649 via Conventional from 135413 -> 135412","Type":"Conventional","Directional":true,"Links":[{"SourceID":135413,"TargetID":135412,"Directional":true}]},{"ID":19744,"SourceStructureID":104638,"TargetStructureID":5649,"Label":"104638-5649 via Conventional from 104639 -> 53841","Type":"Conventional","Directional":true,"Links":[{"SourceID":104639,"TargetID":53841,"Directional":true}]},{"ID":19745,"SourceStructureID":104648,"TargetStructureID":5649,"Label":"104648-5649 via Conventional from 104650 -> 53840","Type":"Conventional","Directional":true,"Links":[{"SourceID":104650,"TargetID":53840,"Directional":true}]},{"ID":19746,"SourceStructureID":104651,"TargetStructureID":5649,"Label":"104651-5649 via Conventional from 104652 -> 53837","Type":"Conventional","Directional":true,"Links":[{"SourceID":104652,"TargetID":53837,"Directional":true}]},{"ID":19747,"SourceStructureID":104669,"TargetStructureID":5649,"Label":"104669-5649 via Conventional from 104670 -> 104668","Type":"Conventional","Directional":true,"Links":[{"SourceID":104670,"TargetID":104668,"Directional":true}]},{"ID":19748,"SourceStructureID":104677,"TargetStructureID":13525,"Label":"104677-13525 via Conventional from 104683 -> 85667","Type":"Conventional","Directional":true,"Links":[{"SourceID":104683,"TargetID":85667,"Directional":true}]},{"ID":19749,"SourceStructureID":104690,"TargetStructureID":5649,"Label":"104690-5649 via Conventional from 104697 -> 104698","Type":"Conventional","Directional":true,"Links":[{"SourceID":104697,"TargetID":104698,"Directional":true}]},{"ID":19750,"SourceStructureID":104693,"TargetStructureID":13525,"Label":"104693-13525 via Conventional from 104694 -> 85944","Type":"Conventional","Directional":true,"Links":[{"SourceID":104694,"TargetID":85944,"Directional":true}]},{"ID":19751,"SourceStructureID":104706,"TargetStructureID":13525,"Label":"104706-13525 via Conventional from 104708 -> 85367","Type":"Conventional","Directional":true,"Links":[{"SourceID":104708,"TargetID":85367,"Directional":true}]},{"ID":19752,"SourceStructureID":104715,"TargetStructureID":5649,"Label":"104715-5649 via Conventional from 104716 -> 53890","Type":"Conventional","Directional":true,"Links":[{"SourceID":104716,"TargetID":53890,"Directional":true}]},{"ID":19753,"SourceStructureID":104719,"TargetStructureID":13525,"Label":"104719-13525 via Conventional from 104720 -> 13527","Type":"Conventional","Directional":true,"Links":[{"SourceID":104720,"TargetID":13527,"Directional":true}]},{"ID":19754,"SourceStructureID":104726,"TargetStructureID":13525,"Label":"104726-13525 via Conventional from 104727 -> 84665","Type":"Conventional","Directional":true,"Links":[{"SourceID":104727,"TargetID":84665,"Directional":true}]},{"ID":19755,"SourceStructureID":104733,"TargetStructureID":5649,"Label":"104733-5649 via Conventional from 104734 -> 53885","Type":"Conventional","Directional":true,"Links":[{"SourceID":104734,"TargetID":53885,"Directional":true}]},{"ID":19756,"SourceStructureID":104735,"TargetStructureID":15942,"Label":"104735-15942 via Conventional from 104756 -> 16763, 104757 -> 16764","Type":"Conventional","Directional":true,"Links":[{"SourceID":104756,"TargetID":16763,"Directional":true},{"SourceID":104757,"TargetID":16764,"Directional":true}]},{"ID":19757,"SourceStructureID":104739,"TargetStructureID":5649,"Label":"104739-5649 via Conventional from 104741 -> 104743","Type":"Conventional","Directional":true,"Links":[{"SourceID":104741,"TargetID":104743,"Directional":true}]},{"ID":19758,"SourceStructureID":104740,"TargetStructureID":433,"Label":"104740-433 via Conventional from 111132 -> 21589, 111206 -> 21549","Type":"Conventional","Directional":true,"Links":[{"SourceID":111132,"TargetID":21589,"Directional":true},{"SourceID":111206,"TargetID":21549,"Directional":true}]},{"ID":19759,"SourceStructureID":104740,"TargetStructureID":6128,"Label":"104740-6128 via Conventional from 114830 -> 137121, 114836 -> 33753, 114841 -> 21102, 118100 -> 33754","Type":"Conventional","Directional":true,"Links":[{"SourceID":114830,"TargetID":137121,"Directional":true},{"SourceID":114836,"TargetID":33753,"Directional":true},{"SourceID":114841,"TargetID":21102,"Directional":true},{"SourceID":118100,"TargetID":33754,"Directional":true}]},{"ID":19760,"SourceStructureID":104740,"TargetStructureID":9260,"Label":"104740-9260 via Conventional from 111138 -> 88116","Type":"Conventional","Directional":true,"Links":[{"SourceID":111138,"TargetID":88116,"Directional":true}]},{"ID":19761,"SourceStructureID":104740,"TargetStructureID":13525,"Label":"104740-13525 via Conventional from 104742 -> 86080","Type":"Conventional","Directional":true,"Links":[{"SourceID":104742,"TargetID":86080,"Directional":true}]},{"ID":19762,"SourceStructureID":104740,"TargetStructureID":46741,"Label":"104740-46741 via Conventional from 114840 -> 137108","Type":"Conventional","Directional":true,"Links":[{"SourceID":114840,"TargetID":137108,"Directional":true}]},{"ID":19763,"SourceStructureID":104744,"TargetStructureID":13525,"Label":"104744-13525 via Conventional from 104745 -> 86730","Type":"Conventional","Directional":true,"Links":[{"SourceID":104745,"TargetID":86730,"Directional":true}]},{"ID":19764,"SourceStructureID":104749,"TargetStructureID":5649,"Label":"104749-5649 via Conventional from 104750 -> 104748","Type":"Conventional","Directional":true,"Links":[{"SourceID":104750,"TargetID":104748,"Directional":true}]},{"ID":19765,"SourceStructureID":104751,"TargetStructureID":458,"Label":"104751-458 via Conventional from 111088 -> 36275","Type":"Conventional","Directional":true,"Links":[{"SourceID":111088,"TargetID":36275,"Directional":true}]},{"ID":19766,"SourceStructureID":104751,"TargetStructureID":5545,"Label":"104751-5545 via Conventional from 104752 -> 87174","Type":"Conventional","Directional":true,"Links":[{"SourceID":104752,"TargetID":87174,"Directional":true}]},{"ID":19767,"SourceStructureID":104751,"TargetStructureID":137122,"Label":"104751-137122 via Conventional from 111086 -> 137135, 111087 -> 137134","Type":"Conventional","Directional":true,"Links":[{"SourceID":111086,"TargetID":137135,"Directional":true},{"SourceID":111087,"TargetID":137134,"Directional":true}]},{"ID":19768,"SourceStructureID":104754,"TargetStructureID":13525,"Label":"104754-13525 via Conventional from 104755 -> 94216","Type":"Conventional","Directional":true,"Links":[{"SourceID":104755,"TargetID":94216,"Directional":true}]},{"ID":19769,"SourceStructureID":104774,"TargetStructureID":5649,"Label":"104774-5649 via Conventional from 104775 -> 104773","Type":"Conventional","Directional":true,"Links":[{"SourceID":104775,"TargetID":104773,"Directional":true}]},{"ID":19770,"SourceStructureID":104804,"TargetStructureID":5649,"Label":"104804-5649 via Conventional from 104805 -> 104803","Type":"Conventional","Directional":true,"Links":[{"SourceID":104805,"TargetID":104803,"Directional":true}]},{"ID":19771,"SourceStructureID":104808,"TargetStructureID":5278,"Label":"104808-5278 via Conventional from 104809 -> 104810","Type":"Conventional","Directional":true,"Links":[{"SourceID":104809,"TargetID":104810,"Directional":true}]},{"ID":19772,"SourceStructureID":104823,"TargetStructureID":5278,"Label":"104823-5278 via Conventional from 104824 -> 104825, 104826 -> 92276","Type":"Conventional","Directional":true,"Links":[{"SourceID":104824,"TargetID":104825,"Directional":true},{"SourceID":104826,"TargetID":92276,"Directional":true}]},{"ID":19773,"SourceStructureID":104834,"TargetStructureID":5278,"Label":"104834-5278 via Conventional from 104835 -> 104836, 104837 -> 104838","Type":"Conventional","Directional":true,"Links":[{"SourceID":104835,"TargetID":104836,"Directional":true},{"SourceID":104837,"TargetID":104838,"Directional":true}]},{"ID":19774,"SourceStructureID":104842,"TargetStructureID":5278,"Label":"104842-5278 via Conventional from 104843 -> 104844","Type":"Conventional","Directional":true,"Links":[{"SourceID":104843,"TargetID":104844,"Directional":true}]},{"ID":19775,"SourceStructureID":104869,"TargetStructureID":6155,"Label":"104869-6155 via Conventional from 104871 -> 48258","Type":"Conventional","Directional":true,"Links":[{"SourceID":104871,"TargetID":48258,"Directional":true}]},{"ID":19776,"SourceStructureID":104879,"TargetStructureID":6155,"Label":"104879-6155 via Conventional from 104880 -> 49058","Type":"Conventional","Directional":true,"Links":[{"SourceID":104880,"TargetID":49058,"Directional":true}]},{"ID":19777,"SourceStructureID":104886,"TargetStructureID":6155,"Label":"104886-6155 via Conventional from 104889 -> 15380","Type":"Conventional","Directional":true,"Links":[{"SourceID":104889,"TargetID":15380,"Directional":true}]},{"ID":19778,"SourceStructureID":104900,"TargetStructureID":6155,"Label":"104900-6155 via Conventional from 104901 -> 49084","Type":"Conventional","Directional":true,"Links":[{"SourceID":104901,"TargetID":49084,"Directional":true}]},{"ID":19779,"SourceStructureID":104906,"TargetStructureID":6155,"Label":"104906-6155 via Conventional from 104907 -> 104908","Type":"Conventional","Directional":true,"Links":[{"SourceID":104907,"TargetID":104908,"Directional":true}]},{"ID":19780,"SourceStructureID":104912,"TargetStructureID":6155,"Label":"104912-6155 via Conventional from 104913 -> 48321","Type":"Conventional","Directional":true,"Links":[{"SourceID":104913,"TargetID":48321,"Directional":true}]},{"ID":19781,"SourceStructureID":104926,"TargetStructureID":6155,"Label":"104926-6155 via Conventional from 104927 -> 104928, 104929 -> 104930","Type":"Conventional","Directional":true,"Links":[{"SourceID":104927,"TargetID":104928,"Directional":true},{"SourceID":104929,"TargetID":104930,"Directional":true}]},{"ID":19782,"SourceStructureID":104933,"TargetStructureID":6155,"Label":"104933-6155 via Conventional from 104934 -> 15687","Type":"Conventional","Directional":true,"Links":[{"SourceID":104934,"TargetID":15687,"Directional":true}]},{"ID":19783,"SourceStructureID":104949,"TargetStructureID":6155,"Label":"104949-6155 via Conventional from 104950 -> 15815","Type":"Conventional","Directional":true,"Links":[{"SourceID":104950,"TargetID":15815,"Directional":true}]},{"ID":19784,"SourceStructureID":104970,"TargetStructureID":6155,"Label":"104970-6155 via Conventional from 104973 -> 15613","Type":"Conventional","Directional":true,"Links":[{"SourceID":104973,"TargetID":15613,"Directional":true}]},{"ID":19785,"SourceStructureID":104974,"TargetStructureID":6155,"Label":"104974-6155 via Conventional from 104975 -> 48320","Type":"Conventional","Directional":true,"Links":[{"SourceID":104975,"TargetID":48320,"Directional":true}]},{"ID":19786,"SourceStructureID":104990,"TargetStructureID":5650,"Label":"104990-5650 via Conventional from 104991 -> 104992","Type":"Conventional","Directional":true,"Links":[{"SourceID":104991,"TargetID":104992,"Directional":true}]},{"ID":19787,"SourceStructureID":104995,"TargetStructureID":5650,"Label":"104995-5650 via Conventional from 104996 -> 104997","Type":"Conventional","Directional":true,"Links":[{"SourceID":104996,"TargetID":104997,"Directional":true}]},{"ID":19788,"SourceStructureID":104998,"TargetStructureID":5284,"Label":"104998-5284 via Conventional from 113277 -> 113276","Type":"Conventional","Directional":true,"Links":[{"SourceID":113277,"TargetID":113276,"Directional":true}]},{"ID":19789,"SourceStructureID":104998,"TargetStructureID":5650,"Label":"104998-5650 via Conventional from 104999 -> 105000","Type":"Conventional","Directional":true,"Links":[{"SourceID":104999,"TargetID":105000,"Directional":true}]},{"ID":19790,"SourceStructureID":105004,"TargetStructureID":5650,"Label":"105004-5650 via Conventional from 105005 -> 105006","Type":"Conventional","Directional":true,"Links":[{"SourceID":105005,"TargetID":105006,"Directional":true}]},{"ID":19791,"SourceStructureID":105007,"TargetStructureID":5650,"Label":"105007-5650 via Conventional from 105008 -> 105009","Type":"Conventional","Directional":true,"Links":[{"SourceID":105008,"TargetID":105009,"Directional":true}]},{"ID":19792,"SourceStructureID":105010,"TargetStructureID":5650,"Label":"105010-5650 via Conventional from 105011 -> 105012","Type":"Conventional","Directional":true,"Links":[{"SourceID":105011,"TargetID":105012,"Directional":true}]},{"ID":19793,"SourceStructureID":105016,"TargetStructureID":5650,"Label":"105016-5650 via Conventional from 105017 -> 105018","Type":"Conventional","Directional":true,"Links":[{"SourceID":105017,"TargetID":105018,"Directional":true}]},{"ID":19794,"SourceStructureID":105022,"TargetStructureID":5650,"Label":"105022-5650 via Conventional from 105026 -> 105027, 105028 -> 105029","Type":"Conventional","Directional":true,"Links":[{"SourceID":105026,"TargetID":105027,"Directional":true},{"SourceID":105028,"TargetID":105029,"Directional":true}]},{"ID":19795,"SourceStructureID":105030,"TargetStructureID":5650,"Label":"105030-5650 via Conventional from 105032 -> 105033","Type":"Conventional","Directional":true,"Links":[{"SourceID":105032,"TargetID":105033,"Directional":true}]},{"ID":19796,"SourceStructureID":105036,"TargetStructureID":5650,"Label":"105036-5650 via Conventional from 105037 -> 105038","Type":"Conventional","Directional":true,"Links":[{"SourceID":105037,"TargetID":105038,"Directional":true}]},{"ID":19797,"SourceStructureID":105040,"TargetStructureID":5650,"Label":"105040-5650 via Conventional from 105041 -> 105042","Type":"Conventional","Directional":true,"Links":[{"SourceID":105041,"TargetID":105042,"Directional":true}]},{"ID":19798,"SourceStructureID":105044,"TargetStructureID":5650,"Label":"105044-5650 via Conventional from 105045 -> 105046","Type":"Conventional","Directional":true,"Links":[{"SourceID":105045,"TargetID":105046,"Directional":true}]},{"ID":19799,"SourceStructureID":105053,"TargetStructureID":5650,"Label":"105053-5650 via Conventional from 105054 -> 105055","Type":"Conventional","Directional":true,"Links":[{"SourceID":105054,"TargetID":105055,"Directional":true}]},{"ID":19800,"SourceStructureID":105058,"TargetStructureID":5650,"Label":"105058-5650 via Conventional from 105059 -> 105060","Type":"Conventional","Directional":true,"Links":[{"SourceID":105059,"TargetID":105060,"Directional":true}]},{"ID":19801,"SourceStructureID":105064,"TargetStructureID":5650,"Label":"105064-5650 via Conventional from 118211 -> 118210","Type":"Conventional","Directional":true,"Links":[{"SourceID":118211,"TargetID":118210,"Directional":true}]},{"ID":19802,"SourceStructureID":105067,"TargetStructureID":5650,"Label":"105067-5650 via Conventional from 105068 -> 105069","Type":"Conventional","Directional":true,"Links":[{"SourceID":105068,"TargetID":105069,"Directional":true}]},{"ID":19803,"SourceStructureID":105075,"TargetStructureID":5650,"Label":"105075-5650 via Conventional from 105076 -> 105077","Type":"Conventional","Directional":true,"Links":[{"SourceID":105076,"TargetID":105077,"Directional":true}]},{"ID":19804,"SourceStructureID":105075,"TargetStructureID":128803,"Label":"105075-128803 via Conventional from 128806 -> 128805","Type":"Conventional","Directional":true,"Links":[{"SourceID":128806,"TargetID":128805,"Directional":true}]},{"ID":19805,"SourceStructureID":105078,"TargetStructureID":5650,"Label":"105078-5650 via Conventional from 105079 -> 105080","Type":"Conventional","Directional":true,"Links":[{"SourceID":105079,"TargetID":105080,"Directional":true}]},{"ID":19806,"SourceStructureID":105081,"TargetStructureID":5650,"Label":"105081-5650 via Conventional from 105082 -> 105083","Type":"Conventional","Directional":true,"Links":[{"SourceID":105082,"TargetID":105083,"Directional":true}]},{"ID":19807,"SourceStructureID":105087,"TargetStructureID":5650,"Label":"105087-5650 via Conventional from 105088 -> 105089","Type":"Conventional","Directional":true,"Links":[{"SourceID":105088,"TargetID":105089,"Directional":true}]},{"ID":19808,"SourceStructureID":105090,"TargetStructureID":1021,"Label":"105090-1021 via Conventional from 125084 -> 125082","Type":"Conventional","Directional":true,"Links":[{"SourceID":125084,"TargetID":125082,"Directional":true}]},{"ID":19809,"SourceStructureID":105090,"TargetStructureID":5650,"Label":"105090-5650 via Conventional from 105091 -> 105092","Type":"Conventional","Directional":true,"Links":[{"SourceID":105091,"TargetID":105092,"Directional":true}]},{"ID":19810,"SourceStructureID":105095,"TargetStructureID":5650,"Label":"105095-5650 via Conventional from 105096 -> 105097","Type":"Conventional","Directional":true,"Links":[{"SourceID":105096,"TargetID":105097,"Directional":true}]},{"ID":19811,"SourceStructureID":105095,"TargetStructureID":6047,"Label":"105095-6047 via Conventional from 112338 -> 112336","Type":"Conventional","Directional":true,"Links":[{"SourceID":112338,"TargetID":112336,"Directional":true}]},{"ID":19812,"SourceStructureID":105095,"TargetStructureID":112389,"Label":"105095-112389 via Conventional from 126696 -> 126698","Type":"Conventional","Directional":true,"Links":[{"SourceID":126696,"TargetID":126698,"Directional":true}]},{"ID":19813,"SourceStructureID":105102,"TargetStructureID":5650,"Label":"105102-5650 via Conventional from 105103 -> 105104","Type":"Conventional","Directional":true,"Links":[{"SourceID":105103,"TargetID":105104,"Directional":true}]},{"ID":19814,"SourceStructureID":105108,"TargetStructureID":5650,"Label":"105108-5650 via Conventional from 105109 -> 105110","Type":"Conventional","Directional":true,"Links":[{"SourceID":105109,"TargetID":105110,"Directional":true}]},{"ID":19815,"SourceStructureID":105119,"TargetStructureID":5650,"Label":"105119-5650 via Conventional from 105120 -> 105121","Type":"Conventional","Directional":true,"Links":[{"SourceID":105120,"TargetID":105121,"Directional":true}]},{"ID":19816,"SourceStructureID":105122,"TargetStructureID":5650,"Label":"105122-5650 via Conventional from 120571 -> 105124","Type":"Conventional","Directional":true,"Links":[{"SourceID":120571,"TargetID":105124,"Directional":true}]},{"ID":19817,"SourceStructureID":105128,"TargetStructureID":5650,"Label":"105128-5650 via Conventional from 105129 -> 105130","Type":"Conventional","Directional":true,"Links":[{"SourceID":105129,"TargetID":105130,"Directional":true}]},{"ID":19818,"SourceStructureID":105131,"TargetStructureID":5650,"Label":"105131-5650 via Conventional from 105133 -> 105134","Type":"Conventional","Directional":true,"Links":[{"SourceID":105133,"TargetID":105134,"Directional":true}]},{"ID":19819,"SourceStructureID":105135,"TargetStructureID":5650,"Label":"105135-5650 via Conventional from 105136 -> 105137","Type":"Conventional","Directional":true,"Links":[{"SourceID":105136,"TargetID":105137,"Directional":true}]},{"ID":19820,"SourceStructureID":105140,"TargetStructureID":5650,"Label":"105140-5650 via Conventional from 105141 -> 105142","Type":"Conventional","Directional":true,"Links":[{"SourceID":105141,"TargetID":105142,"Directional":true}]},{"ID":19821,"SourceStructureID":105146,"TargetStructureID":6047,"Label":"105146-6047 via Conventional from 112403 -> 19730","Type":"Conventional","Directional":true,"Links":[{"SourceID":112403,"TargetID":19730,"Directional":true}]},{"ID":19822,"SourceStructureID":105148,"TargetStructureID":6050,"Label":"105148-6050 via Conventional from 114364 -> 114363","Type":"Conventional","Directional":true,"Links":[{"SourceID":114364,"TargetID":114363,"Directional":true}]},{"ID":19823,"SourceStructureID":105153,"TargetStructureID":5650,"Label":"105153-5650 via Conventional from 105154 -> 105155","Type":"Conventional","Directional":true,"Links":[{"SourceID":105154,"TargetID":105155,"Directional":true}]},{"ID":19824,"SourceStructureID":105161,"TargetStructureID":5650,"Label":"105161-5650 via Conventional from 105162 -> 105163","Type":"Conventional","Directional":true,"Links":[{"SourceID":105162,"TargetID":105163,"Directional":true}]},{"ID":19825,"SourceStructureID":105171,"TargetStructureID":5650,"Label":"105171-5650 via Conventional from 105175 -> 105176","Type":"Conventional","Directional":true,"Links":[{"SourceID":105175,"TargetID":105176,"Directional":true}]},{"ID":19826,"SourceStructureID":105177,"TargetStructureID":5650,"Label":"105177-5650 via Conventional from 105178 -> 105179","Type":"Conventional","Directional":true,"Links":[{"SourceID":105178,"TargetID":105179,"Directional":true}]},{"ID":19827,"SourceStructureID":105180,"TargetStructureID":5650,"Label":"105180-5650 via Conventional from 105181 -> 105182","Type":"Conventional","Directional":true,"Links":[{"SourceID":105181,"TargetID":105182,"Directional":true}]},{"ID":19828,"SourceStructureID":105188,"TargetStructureID":5650,"Label":"105188-5650 via Conventional from 105194 -> 105195","Type":"Conventional","Directional":true,"Links":[{"SourceID":105194,"TargetID":105195,"Directional":true}]},{"ID":19829,"SourceStructureID":105188,"TargetStructureID":6050,"Label":"105188-6050 via Conventional from 114352 -> 114005","Type":"Conventional","Directional":true,"Links":[{"SourceID":114352,"TargetID":114005,"Directional":true}]},{"ID":19830,"SourceStructureID":105210,"TargetStructureID":133891,"Label":"105210-133891 via Conventional from 133897 -> 133896","Type":"Conventional","Directional":true,"Links":[{"SourceID":133897,"TargetID":133896,"Directional":true}]},{"ID":19831,"SourceStructureID":105212,"TargetStructureID":469,"Label":"105212-469 via Conventional from 105770 -> 105784, 106222 -> 106225, 106229 -> 106236","Type":"Conventional","Directional":true,"Links":[{"SourceID":105770,"TargetID":105784,"Directional":true},{"SourceID":106222,"TargetID":106225,"Directional":true},{"SourceID":106229,"TargetID":106236,"Directional":true}]},{"ID":19832,"SourceStructureID":105212,"TargetStructureID":10957,"Label":"105212-10957 via Conventional from 105708 -> 105709","Type":"Conventional","Directional":true,"Links":[{"SourceID":105708,"TargetID":105709,"Directional":true}]},{"ID":19833,"SourceStructureID":105219,"TargetStructureID":5531,"Label":"105219-5531 via Conventional from 105220 -> 105221","Type":"Conventional","Directional":true,"Links":[{"SourceID":105220,"TargetID":105221,"Directional":true}]},{"ID":19834,"SourceStructureID":105228,"TargetStructureID":5531,"Label":"105228-5531 via Conventional from 105229 -> 105231","Type":"Conventional","Directional":true,"Links":[{"SourceID":105229,"TargetID":105231,"Directional":true}]},{"ID":19835,"SourceStructureID":105246,"TargetStructureID":5531,"Label":"105246-5531 via Conventional from 105247 -> 105248","Type":"Conventional","Directional":true,"Links":[{"SourceID":105247,"TargetID":105248,"Directional":true}]},{"ID":19836,"SourceStructureID":105250,"TargetStructureID":5531,"Label":"105250-5531 via Conventional from 105251 -> 105252","Type":"Conventional","Directional":true,"Links":[{"SourceID":105251,"TargetID":105252,"Directional":true}]},{"ID":19837,"SourceStructureID":105279,"TargetStructureID":5531,"Label":"105279-5531 via Conventional from 105282 -> 105284","Type":"Conventional","Directional":true,"Links":[{"SourceID":105282,"TargetID":105284,"Directional":true}]},{"ID":19838,"SourceStructureID":105280,"TargetStructureID":5531,"Label":"105280-5531 via Conventional from 105281 -> 105283","Type":"Conventional","Directional":true,"Links":[{"SourceID":105281,"TargetID":105283,"Directional":true}]},{"ID":19839,"SourceStructureID":105294,"TargetStructureID":5531,"Label":"105294-5531 via Conventional from 105295 -> 105296","Type":"Conventional","Directional":true,"Links":[{"SourceID":105295,"TargetID":105296,"Directional":true}]},{"ID":19840,"SourceStructureID":105297,"TargetStructureID":5531,"Label":"105297-5531 via Conventional from 105298 -> 105299","Type":"Conventional","Directional":true,"Links":[{"SourceID":105298,"TargetID":105299,"Directional":true}]},{"ID":19841,"SourceStructureID":105300,"TargetStructureID":5531,"Label":"105300-5531 via Conventional from 105301 -> 105302","Type":"Conventional","Directional":true,"Links":[{"SourceID":105301,"TargetID":105302,"Directional":true}]},{"ID":19842,"SourceStructureID":105313,"TargetStructureID":5531,"Label":"105313-5531 via Conventional from 106202 -> 106203","Type":"Conventional","Directional":true,"Links":[{"SourceID":106202,"TargetID":106203,"Directional":true}]},{"ID":19843,"SourceStructureID":105322,"TargetStructureID":5649,"Label":"105322-5649 via Conventional from 105323 -> 105321","Type":"Conventional","Directional":true,"Links":[{"SourceID":105323,"TargetID":105321,"Directional":true}]},{"ID":19844,"SourceStructureID":105326,"TargetStructureID":5649,"Label":"105326-5649 via Conventional from 105328 -> 105318","Type":"Conventional","Directional":true,"Links":[{"SourceID":105328,"TargetID":105318,"Directional":true}]},{"ID":19845,"SourceStructureID":105339,"TargetStructureID":5649,"Label":"105339-5649 via Conventional from 105340 -> 105338","Type":"Conventional","Directional":true,"Links":[{"SourceID":105340,"TargetID":105338,"Directional":true}]},{"ID":19846,"SourceStructureID":105341,"TargetStructureID":5531,"Label":"105341-5531 via Conventional from 105344 -> 62922","Type":"Conventional","Directional":true,"Links":[{"SourceID":105344,"TargetID":62922,"Directional":true}]},{"ID":19847,"SourceStructureID":105343,"TargetStructureID":5649,"Label":"105343-5649 via Conventional from 105345 -> 105342","Type":"Conventional","Directional":true,"Links":[{"SourceID":105345,"TargetID":105342,"Directional":true}]},{"ID":19848,"SourceStructureID":105363,"TargetStructureID":5531,"Label":"105363-5531 via Conventional from 105364 -> 105365","Type":"Conventional","Directional":true,"Links":[{"SourceID":105364,"TargetID":105365,"Directional":true}]},{"ID":19849,"SourceStructureID":105376,"TargetStructureID":5649,"Label":"105376-5649 via Conventional from 105377 -> 105375","Type":"Conventional","Directional":true,"Links":[{"SourceID":105377,"TargetID":105375,"Directional":true}]},{"ID":19850,"SourceStructureID":105382,"TargetStructureID":5649,"Label":"105382-5649 via Conventional from 105383 -> 105381","Type":"Conventional","Directional":true,"Links":[{"SourceID":105383,"TargetID":105381,"Directional":true}]},{"ID":19851,"SourceStructureID":105421,"TargetStructureID":5649,"Label":"105421-5649 via Conventional from 105422 -> 105420","Type":"Conventional","Directional":true,"Links":[{"SourceID":105422,"TargetID":105420,"Directional":true}]},{"ID":19852,"SourceStructureID":105426,"TargetStructureID":5649,"Label":"105426-5649 via Conventional from 105427 -> 55718","Type":"Conventional","Directional":true,"Links":[{"SourceID":105427,"TargetID":55718,"Directional":true}]},{"ID":19853,"SourceStructureID":105434,"TargetStructureID":5649,"Label":"105434-5649 via Conventional from 105435 -> 105433","Type":"Conventional","Directional":true,"Links":[{"SourceID":105435,"TargetID":105433,"Directional":true}]},{"ID":19854,"SourceStructureID":105438,"TargetStructureID":5649,"Label":"105438-5649 via Conventional from 105439 -> 55729","Type":"Conventional","Directional":true,"Links":[{"SourceID":105439,"TargetID":55729,"Directional":true}]},{"ID":19855,"SourceStructureID":105447,"TargetStructureID":5649,"Label":"105447-5649 via Conventional from 105448 -> 105449","Type":"Conventional","Directional":true,"Links":[{"SourceID":105448,"TargetID":105449,"Directional":true}]},{"ID":19856,"SourceStructureID":105450,"TargetStructureID":5649,"Label":"105450-5649 via Conventional from 105451 -> 105453","Type":"Conventional","Directional":true,"Links":[{"SourceID":105451,"TargetID":105453,"Directional":true}]},{"ID":19857,"SourceStructureID":105458,"TargetStructureID":5499,"Label":"105458-5499 via Conventional from 105459 -> 105457","Type":"Conventional","Directional":true,"Links":[{"SourceID":105459,"TargetID":105457,"Directional":true}]},{"ID":19858,"SourceStructureID":105464,"TargetStructureID":105467,"Label":"105464-105467 via Ribbon Synapse from 105465 -> 105469","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":105465,"TargetID":105469,"Directional":true}]},{"ID":19859,"SourceStructureID":105464,"TargetStructureID":105474,"Label":"105464-105474 via BC Conventional Synapse from 105473 -> 105475","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":105473,"TargetID":105475,"Directional":true}]},{"ID":19860,"SourceStructureID":105467,"TargetStructureID":105464,"Label":"105467-105464 via Conventional from 105468 -> 105466","Type":"Conventional","Directional":true,"Links":[{"SourceID":105468,"TargetID":105466,"Directional":true}]},{"ID":19861,"SourceStructureID":105471,"TargetStructureID":105464,"Label":"105471-105464 via Conventional from 105472 -> 105470","Type":"Conventional","Directional":true,"Links":[{"SourceID":105472,"TargetID":105470,"Directional":true}]},{"ID":19862,"SourceStructureID":105477,"TargetStructureID":105464,"Label":"105477-105464 via Conventional from 105478 -> 105476","Type":"Conventional","Directional":true,"Links":[{"SourceID":105478,"TargetID":105476,"Directional":true}]},{"ID":19863,"SourceStructureID":105509,"TargetStructureID":105509,"Label":"105509-105509 via Conventional from 105834 -> 105833","Type":"Conventional","Directional":true,"Links":[{"SourceID":105834,"TargetID":105833,"Directional":true}]},{"ID":19864,"SourceStructureID":105511,"TargetStructureID":5499,"Label":"105511-5499 via Conventional from 105512 -> 105513","Type":"Conventional","Directional":true,"Links":[{"SourceID":105512,"TargetID":105513,"Directional":true}]},{"ID":19865,"SourceStructureID":105521,"TargetStructureID":5499,"Label":"105521-5499 via Conventional from 105522 -> 105520","Type":"Conventional","Directional":true,"Links":[{"SourceID":105522,"TargetID":105520,"Directional":true}]},{"ID":19866,"SourceStructureID":105526,"TargetStructureID":5499,"Label":"105526-5499 via Conventional from 105527 -> 105519","Type":"Conventional","Directional":true,"Links":[{"SourceID":105527,"TargetID":105519,"Directional":true}]},{"ID":19867,"SourceStructureID":105547,"TargetStructureID":5649,"Label":"105547-5649 via Conventional from 105550 -> 105546","Type":"Conventional","Directional":true,"Links":[{"SourceID":105550,"TargetID":105546,"Directional":true}]},{"ID":19868,"SourceStructureID":105548,"TargetStructureID":5649,"Label":"105548-5649 via Conventional from 105549 -> 105545","Type":"Conventional","Directional":true,"Links":[{"SourceID":105549,"TargetID":105545,"Directional":true}]},{"ID":19869,"SourceStructureID":105553,"TargetStructureID":5649,"Label":"105553-5649 via Conventional from 105554 -> 105552","Type":"Conventional","Directional":true,"Links":[{"SourceID":105554,"TargetID":105552,"Directional":true}]},{"ID":19870,"SourceStructureID":105558,"TargetStructureID":5649,"Label":"105558-5649 via Conventional from 105559 -> 105556","Type":"Conventional","Directional":true,"Links":[{"SourceID":105559,"TargetID":105556,"Directional":true}]},{"ID":19871,"SourceStructureID":105580,"TargetStructureID":5649,"Label":"105580-5649 via Conventional from 105581 -> 105579","Type":"Conventional","Directional":true,"Links":[{"SourceID":105581,"TargetID":105579,"Directional":true}]},{"ID":19872,"SourceStructureID":105588,"TargetStructureID":5649,"Label":"105588-5649 via Conventional from 105589 -> 105587","Type":"Conventional","Directional":true,"Links":[{"SourceID":105589,"TargetID":105587,"Directional":true}]},{"ID":19873,"SourceStructureID":105604,"TargetStructureID":5649,"Label":"105604-5649 via Conventional from 105607 -> 105593","Type":"Conventional","Directional":true,"Links":[{"SourceID":105607,"TargetID":105593,"Directional":true}]},{"ID":19874,"SourceStructureID":105612,"TargetStructureID":5649,"Label":"105612-5649 via Conventional from 105613 -> 105614","Type":"Conventional","Directional":true,"Links":[{"SourceID":105613,"TargetID":105614,"Directional":true}]},{"ID":19875,"SourceStructureID":105624,"TargetStructureID":5499,"Label":"105624-5499 via Conventional from 105625 -> 105623","Type":"Conventional","Directional":true,"Links":[{"SourceID":105625,"TargetID":105623,"Directional":true}]},{"ID":19876,"SourceStructureID":105633,"TargetStructureID":5649,"Label":"105633-5649 via Conventional from 105654 -> 53903","Type":"Conventional","Directional":true,"Links":[{"SourceID":105654,"TargetID":53903,"Directional":true}]},{"ID":19877,"SourceStructureID":105635,"TargetStructureID":5514,"Label":"105635-5514 via Conventional from 105638 -> 50697","Type":"Conventional","Directional":true,"Links":[{"SourceID":105638,"TargetID":50697,"Directional":true}]},{"ID":19878,"SourceStructureID":105635,"TargetStructureID":45672,"Label":"105635-45672 via Conventional from 105636 -> 105634","Type":"Conventional","Directional":true,"Links":[{"SourceID":105636,"TargetID":105634,"Directional":true}]},{"ID":19879,"SourceStructureID":105640,"TargetStructureID":5649,"Label":"105640-5649 via Conventional from 105641 -> 105639","Type":"Conventional","Directional":true,"Links":[{"SourceID":105641,"TargetID":105639,"Directional":true}]},{"ID":19880,"SourceStructureID":105643,"TargetStructureID":5649,"Label":"105643-5649 via Conventional from 105644 -> 105642","Type":"Conventional","Directional":true,"Links":[{"SourceID":105644,"TargetID":105642,"Directional":true}]},{"ID":19881,"SourceStructureID":105663,"TargetStructureID":5649,"Label":"105663-5649 via Conventional from 105664 -> 53906","Type":"Conventional","Directional":true,"Links":[{"SourceID":105664,"TargetID":53906,"Directional":true}]},{"ID":19882,"SourceStructureID":105670,"TargetStructureID":5649,"Label":"105670-5649 via Conventional from 105671 -> 55734","Type":"Conventional","Directional":true,"Links":[{"SourceID":105671,"TargetID":55734,"Directional":true}]},{"ID":19883,"SourceStructureID":105679,"TargetStructureID":5649,"Label":"105679-5649 via Conventional from 105680 -> 105682","Type":"Conventional","Directional":true,"Links":[{"SourceID":105680,"TargetID":105682,"Directional":true}]},{"ID":19884,"SourceStructureID":105694,"TargetStructureID":5649,"Label":"105694-5649 via Conventional from 105695 -> 105693","Type":"Conventional","Directional":true,"Links":[{"SourceID":105695,"TargetID":105693,"Directional":true}]},{"ID":19885,"SourceStructureID":105696,"TargetStructureID":5649,"Label":"105696-5649 via Conventional from 105697 -> 53939","Type":"Conventional","Directional":true,"Links":[{"SourceID":105697,"TargetID":53939,"Directional":true}]},{"ID":19886,"SourceStructureID":105706,"TargetStructureID":5649,"Label":"105706-5649 via Conventional from 105707 -> 53940","Type":"Conventional","Directional":true,"Links":[{"SourceID":105707,"TargetID":53940,"Directional":true}]},{"ID":19887,"SourceStructureID":105719,"TargetStructureID":5649,"Label":"105719-5649 via Conventional from 105720 -> 53944","Type":"Conventional","Directional":true,"Links":[{"SourceID":105720,"TargetID":53944,"Directional":true}]},{"ID":19888,"SourceStructureID":105729,"TargetStructureID":5649,"Label":"105729-5649 via Conventional from 105730 -> 105728","Type":"Conventional","Directional":true,"Links":[{"SourceID":105730,"TargetID":105728,"Directional":true}]},{"ID":19889,"SourceStructureID":105739,"TargetStructureID":5649,"Label":"105739-5649 via Conventional from 105858 -> 105738","Type":"Conventional","Directional":true,"Links":[{"SourceID":105858,"TargetID":105738,"Directional":true}]},{"ID":19890,"SourceStructureID":105745,"TargetStructureID":5649,"Label":"105745-5649 via Conventional from 105849 -> 105744","Type":"Conventional","Directional":true,"Links":[{"SourceID":105849,"TargetID":105744,"Directional":true}]},{"ID":19891,"SourceStructureID":105749,"TargetStructureID":5729,"Label":"105749-5729 via Conventional from 105750 -> 105748","Type":"Conventional","Directional":true,"Links":[{"SourceID":105750,"TargetID":105748,"Directional":true}]},{"ID":19892,"SourceStructureID":105780,"TargetStructureID":6857,"Label":"105780-6857 via Ribbon Synapse from 108553 -> 108554","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":108553,"TargetID":108554,"Directional":true}]},{"ID":19893,"SourceStructureID":105788,"TargetStructureID":5649,"Label":"105788-5649 via Conventional from 105800 -> 105787","Type":"Conventional","Directional":true,"Links":[{"SourceID":105800,"TargetID":105787,"Directional":true}]},{"ID":19894,"SourceStructureID":105838,"TargetStructureID":6155,"Label":"105838-6155 via Conventional from 105839 -> 49086","Type":"Conventional","Directional":true,"Links":[{"SourceID":105839,"TargetID":49086,"Directional":true}]},{"ID":19895,"SourceStructureID":105855,"TargetStructureID":6155,"Label":"105855-6155 via Conventional from 105859 -> 30581","Type":"Conventional","Directional":true,"Links":[{"SourceID":105859,"TargetID":30581,"Directional":true}]},{"ID":19896,"SourceStructureID":105873,"TargetStructureID":6155,"Label":"105873-6155 via Conventional from 105874 -> 49087","Type":"Conventional","Directional":true,"Links":[{"SourceID":105874,"TargetID":49087,"Directional":true}]},{"ID":19897,"SourceStructureID":105875,"TargetStructureID":5649,"Label":"105875-5649 via Conventional from 105876 -> 53956","Type":"Conventional","Directional":true,"Links":[{"SourceID":105876,"TargetID":53956,"Directional":true}]},{"ID":19898,"SourceStructureID":105877,"TargetStructureID":6155,"Label":"105877-6155 via Conventional from 105880 -> 16877","Type":"Conventional","Directional":true,"Links":[{"SourceID":105880,"TargetID":16877,"Directional":true}]},{"ID":19899,"SourceStructureID":105878,"TargetStructureID":5649,"Label":"105878-5649 via Conventional from 105879 -> 53951","Type":"Conventional","Directional":true,"Links":[{"SourceID":105879,"TargetID":53951,"Directional":true}]},{"ID":19900,"SourceStructureID":105881,"TargetStructureID":6155,"Label":"105881-6155 via Conventional from 105882 -> 105883","Type":"Conventional","Directional":true,"Links":[{"SourceID":105882,"TargetID":105883,"Directional":true}]},{"ID":19901,"SourceStructureID":105884,"TargetStructureID":5649,"Label":"105884-5649 via Conventional from 105885 -> 53965","Type":"Conventional","Directional":true,"Links":[{"SourceID":105885,"TargetID":53965,"Directional":true}]},{"ID":19902,"SourceStructureID":105893,"TargetStructureID":5649,"Label":"105893-5649 via Conventional from 105894 -> 53963","Type":"Conventional","Directional":true,"Links":[{"SourceID":105894,"TargetID":53963,"Directional":true}]},{"ID":19903,"SourceStructureID":105907,"TargetStructureID":5649,"Label":"105907-5649 via Conventional from 105909 -> 105918","Type":"Conventional","Directional":true,"Links":[{"SourceID":105909,"TargetID":105918,"Directional":true}]},{"ID":19904,"SourceStructureID":105924,"TargetStructureID":5649,"Label":"105924-5649 via Conventional from 105925 -> 105923","Type":"Conventional","Directional":true,"Links":[{"SourceID":105925,"TargetID":105923,"Directional":true}]},{"ID":19905,"SourceStructureID":105927,"TargetStructureID":5649,"Label":"105927-5649 via Conventional from 105929 -> 105926","Type":"Conventional","Directional":true,"Links":[{"SourceID":105929,"TargetID":105926,"Directional":true}]},{"ID":19906,"SourceStructureID":105927,"TargetStructureID":6047,"Label":"105927-6047 via Conventional from 112178 -> 112179","Type":"Conventional","Directional":true,"Links":[{"SourceID":112178,"TargetID":112179,"Directional":true}]},{"ID":19907,"SourceStructureID":105928,"TargetStructureID":6155,"Label":"105928-6155 via Conventional from 106002 -> 15600, 106047 -> 48325","Type":"Conventional","Directional":true,"Links":[{"SourceID":106002,"TargetID":15600,"Directional":true},{"SourceID":106047,"TargetID":48325,"Directional":true}]},{"ID":19908,"SourceStructureID":105936,"TargetStructureID":5649,"Label":"105936-5649 via Conventional from 105937 -> 53975","Type":"Conventional","Directional":true,"Links":[{"SourceID":105937,"TargetID":53975,"Directional":true}]},{"ID":19909,"SourceStructureID":105968,"TargetStructureID":5649,"Label":"105968-5649 via Conventional from 105969 -> 105967","Type":"Conventional","Directional":true,"Links":[{"SourceID":105969,"TargetID":105967,"Directional":true}]},{"ID":19910,"SourceStructureID":105970,"TargetStructureID":6155,"Label":"105970-6155 via Conventional from 105984 -> 29759, 105987 -> 48317","Type":"Conventional","Directional":true,"Links":[{"SourceID":105984,"TargetID":29759,"Directional":true},{"SourceID":105987,"TargetID":48317,"Directional":true}]},{"ID":19911,"SourceStructureID":105971,"TargetStructureID":6155,"Label":"105971-6155 via Conventional from 105994 -> 48316","Type":"Conventional","Directional":true,"Links":[{"SourceID":105994,"TargetID":48316,"Directional":true}]},{"ID":19912,"SourceStructureID":105972,"TargetStructureID":6155,"Label":"105972-6155 via Conventional from 105981 -> 15602","Type":"Conventional","Directional":true,"Links":[{"SourceID":105981,"TargetID":15602,"Directional":true}]},{"ID":19913,"SourceStructureID":105982,"TargetStructureID":5649,"Label":"105982-5649 via Conventional from 105983 -> 54000","Type":"Conventional","Directional":true,"Links":[{"SourceID":105983,"TargetID":54000,"Directional":true}]},{"ID":19914,"SourceStructureID":105990,"TargetStructureID":5649,"Label":"105990-5649 via Conventional from 105991 -> 105988","Type":"Conventional","Directional":true,"Links":[{"SourceID":105991,"TargetID":105988,"Directional":true}]},{"ID":19915,"SourceStructureID":106000,"TargetStructureID":5649,"Label":"106000-5649 via Conventional from 106001 -> 105999","Type":"Conventional","Directional":true,"Links":[{"SourceID":106001,"TargetID":105999,"Directional":true}]},{"ID":19916,"SourceStructureID":106007,"TargetStructureID":5649,"Label":"106007-5649 via Conventional from 106009 -> 54001","Type":"Conventional","Directional":true,"Links":[{"SourceID":106009,"TargetID":54001,"Directional":true}]},{"ID":19917,"SourceStructureID":106023,"TargetStructureID":6142,"Label":"106023-6142 via Conventional from 106024 -> 23335","Type":"Conventional","Directional":true,"Links":[{"SourceID":106024,"TargetID":23335,"Directional":true}]},{"ID":19918,"SourceStructureID":106027,"TargetStructureID":5649,"Label":"106027-5649 via Conventional from 106028 -> 106026","Type":"Conventional","Directional":true,"Links":[{"SourceID":106028,"TargetID":106026,"Directional":true}]},{"ID":19919,"SourceStructureID":106041,"TargetStructureID":5649,"Label":"106041-5649 via Conventional from 106042 -> 106040","Type":"Conventional","Directional":true,"Links":[{"SourceID":106042,"TargetID":106040,"Directional":true}]},{"ID":19920,"SourceStructureID":106070,"TargetStructureID":6155,"Label":"106070-6155 via Conventional from 106071 -> 29760","Type":"Conventional","Directional":true,"Links":[{"SourceID":106071,"TargetID":29760,"Directional":true}]},{"ID":19921,"SourceStructureID":106075,"TargetStructureID":6155,"Label":"106075-6155 via Conventional from 106076 -> 15758","Type":"Conventional","Directional":true,"Links":[{"SourceID":106076,"TargetID":15758,"Directional":true}]},{"ID":19922,"SourceStructureID":106087,"TargetStructureID":6155,"Label":"106087-6155 via Conventional from 106088 -> 106089","Type":"Conventional","Directional":true,"Links":[{"SourceID":106088,"TargetID":106089,"Directional":true}]},{"ID":19923,"SourceStructureID":106090,"TargetStructureID":6155,"Label":"106090-6155 via Conventional from 106091 -> 106092","Type":"Conventional","Directional":true,"Links":[{"SourceID":106091,"TargetID":106092,"Directional":true}]},{"ID":19924,"SourceStructureID":106107,"TargetStructureID":5649,"Label":"106107-5649 via Conventional from 106108 -> 31041","Type":"Conventional","Directional":true,"Links":[{"SourceID":106108,"TargetID":31041,"Directional":true}]},{"ID":19925,"SourceStructureID":106127,"TargetStructureID":32035,"Label":"106127-32035 via Conventional from 106129 -> 41670","Type":"Conventional","Directional":true,"Links":[{"SourceID":106129,"TargetID":41670,"Directional":true}]},{"ID":19926,"SourceStructureID":106127,"TargetStructureID":32945,"Label":"106127-32945 via Conventional from 106128 -> 106126","Type":"Conventional","Directional":true,"Links":[{"SourceID":106128,"TargetID":106126,"Directional":true}]},{"ID":19927,"SourceStructureID":106131,"TargetStructureID":5649,"Label":"106131-5649 via Conventional from 106132 -> 106130","Type":"Conventional","Directional":true,"Links":[{"SourceID":106132,"TargetID":106130,"Directional":true}]},{"ID":19928,"SourceStructureID":106143,"TargetStructureID":5531,"Label":"106143-5531 via Conventional from 106144 -> 62924","Type":"Conventional","Directional":true,"Links":[{"SourceID":106144,"TargetID":62924,"Directional":true}]},{"ID":19929,"SourceStructureID":106153,"TargetStructureID":5531,"Label":"106153-5531 via Conventional from 106154 -> 106155","Type":"Conventional","Directional":true,"Links":[{"SourceID":106154,"TargetID":106155,"Directional":true}]},{"ID":19930,"SourceStructureID":106158,"TargetStructureID":5531,"Label":"106158-5531 via Conventional from 106159 -> 106160","Type":"Conventional","Directional":true,"Links":[{"SourceID":106159,"TargetID":106160,"Directional":true}]},{"ID":19931,"SourceStructureID":106170,"TargetStructureID":5531,"Label":"106170-5531 via Conventional from 106171 -> 62927","Type":"Conventional","Directional":true,"Links":[{"SourceID":106171,"TargetID":62927,"Directional":true}]},{"ID":19932,"SourceStructureID":106218,"TargetStructureID":5531,"Label":"106218-5531 via Conventional from 106219 -> 106220","Type":"Conventional","Directional":true,"Links":[{"SourceID":106219,"TargetID":106220,"Directional":true}]},{"ID":19933,"SourceStructureID":106230,"TargetStructureID":5531,"Label":"106230-5531 via Conventional from 106231 -> 106232","Type":"Conventional","Directional":true,"Links":[{"SourceID":106231,"TargetID":106232,"Directional":true}]},{"ID":19934,"SourceStructureID":106240,"TargetStructureID":5531,"Label":"106240-5531 via Conventional from 106241 -> 106242","Type":"Conventional","Directional":true,"Links":[{"SourceID":106241,"TargetID":106242,"Directional":true}]},{"ID":19935,"SourceStructureID":106240,"TargetStructureID":5637,"Label":"106240-5637 via Conventional from 120205 -> 120204","Type":"Conventional","Directional":true,"Links":[{"SourceID":120205,"TargetID":120204,"Directional":true}]},{"ID":19936,"SourceStructureID":106247,"TargetStructureID":5649,"Label":"106247-5649 via Conventional from 106254 -> 106245","Type":"Conventional","Directional":true,"Links":[{"SourceID":106254,"TargetID":106245,"Directional":true}]},{"ID":19937,"SourceStructureID":106256,"TargetStructureID":5531,"Label":"106256-5531 via Conventional from 106259 -> 106260","Type":"Conventional","Directional":true,"Links":[{"SourceID":106259,"TargetID":106260,"Directional":true}]},{"ID":19938,"SourceStructureID":106258,"TargetStructureID":5649,"Label":"106258-5649 via Conventional from 106261 -> 54091","Type":"Conventional","Directional":true,"Links":[{"SourceID":106261,"TargetID":54091,"Directional":true}]},{"ID":19939,"SourceStructureID":106291,"TargetStructureID":5649,"Label":"106291-5649 via Conventional from 106292 -> 54184","Type":"Conventional","Directional":true,"Links":[{"SourceID":106292,"TargetID":54184,"Directional":true}]},{"ID":19940,"SourceStructureID":106296,"TargetStructureID":5649,"Label":"106296-5649 via Conventional from 106297 -> 106294","Type":"Conventional","Directional":true,"Links":[{"SourceID":106297,"TargetID":106294,"Directional":true}]},{"ID":19941,"SourceStructureID":106313,"TargetStructureID":5649,"Label":"106313-5649 via Conventional from 106314 -> 54095","Type":"Conventional","Directional":true,"Links":[{"SourceID":106314,"TargetID":54095,"Directional":true}]},{"ID":19942,"SourceStructureID":106326,"TargetStructureID":5649,"Label":"106326-5649 via Conventional from 106327 -> 54182","Type":"Conventional","Directional":true,"Links":[{"SourceID":106327,"TargetID":54182,"Directional":true}]},{"ID":19943,"SourceStructureID":106329,"TargetStructureID":5650,"Label":"106329-5650 via Conventional from 106331 -> 106332","Type":"Conventional","Directional":true,"Links":[{"SourceID":106331,"TargetID":106332,"Directional":true}]},{"ID":19944,"SourceStructureID":106333,"TargetStructureID":5649,"Label":"106333-5649 via Conventional from 106334 -> 106322","Type":"Conventional","Directional":true,"Links":[{"SourceID":106334,"TargetID":106322,"Directional":true}]},{"ID":19945,"SourceStructureID":106336,"TargetStructureID":5650,"Label":"106336-5650 via Conventional from 106338 -> 29937","Type":"Conventional","Directional":true,"Links":[{"SourceID":106338,"TargetID":29937,"Directional":true}]},{"ID":19946,"SourceStructureID":106347,"TargetStructureID":5649,"Label":"106347-5649 via Conventional from 106348 -> 54121","Type":"Conventional","Directional":true,"Links":[{"SourceID":106348,"TargetID":54121,"Directional":true}]},{"ID":19947,"SourceStructureID":106350,"TargetStructureID":5649,"Label":"106350-5649 via Conventional from 106351 -> 106349","Type":"Conventional","Directional":true,"Links":[{"SourceID":106351,"TargetID":106349,"Directional":true}]},{"ID":19948,"SourceStructureID":106355,"TargetStructureID":5650,"Label":"106355-5650 via Conventional from 106358 -> 29929","Type":"Conventional","Directional":true,"Links":[{"SourceID":106358,"TargetID":29929,"Directional":true}]},{"ID":19949,"SourceStructureID":106355,"TargetStructureID":6050,"Label":"106355-6050 via Conventional from 127637 -> 54411","Type":"Conventional","Directional":true,"Links":[{"SourceID":127637,"TargetID":54411,"Directional":true}]},{"ID":19950,"SourceStructureID":106369,"TargetStructureID":5650,"Label":"106369-5650 via Conventional from 106373 -> 106374","Type":"Conventional","Directional":true,"Links":[{"SourceID":106373,"TargetID":106374,"Directional":true}]},{"ID":19951,"SourceStructureID":106370,"TargetStructureID":5650,"Label":"106370-5650 via Conventional from 106371 -> 106372","Type":"Conventional","Directional":true,"Links":[{"SourceID":106371,"TargetID":106372,"Directional":true}]},{"ID":19952,"SourceStructureID":106375,"TargetStructureID":1021,"Label":"106375-1021 via Conventional from 126683 -> 126682","Type":"Conventional","Directional":true,"Links":[{"SourceID":126683,"TargetID":126682,"Directional":true}]},{"ID":19953,"SourceStructureID":106375,"TargetStructureID":5650,"Label":"106375-5650 via Conventional from 106376 -> 106377","Type":"Conventional","Directional":true,"Links":[{"SourceID":106376,"TargetID":106377,"Directional":true}]},{"ID":19954,"SourceStructureID":106384,"TargetStructureID":106387,"Label":"106384-106387 via Ribbon Synapse from 106386 -> 106388","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":106386,"TargetID":106388,"Directional":true}]},{"ID":19955,"SourceStructureID":106387,"TargetStructureID":6155,"Label":"106387-6155 via Conventional from 106389 -> 106390","Type":"Conventional","Directional":true,"Links":[{"SourceID":106389,"TargetID":106390,"Directional":true}]},{"ID":19956,"SourceStructureID":106394,"TargetStructureID":6155,"Label":"106394-6155 via Conventional from 106403 -> 106404","Type":"Conventional","Directional":true,"Links":[{"SourceID":106403,"TargetID":106404,"Directional":true}]},{"ID":19957,"SourceStructureID":106397,"TargetStructureID":5649,"Label":"106397-5649 via Conventional from 106409 -> 54113","Type":"Conventional","Directional":true,"Links":[{"SourceID":106409,"TargetID":54113,"Directional":true}]},{"ID":19958,"SourceStructureID":106398,"TargetStructureID":6155,"Label":"106398-6155 via Conventional from 106399 -> 106400","Type":"Conventional","Directional":true,"Links":[{"SourceID":106399,"TargetID":106400,"Directional":true}]},{"ID":19959,"SourceStructureID":106413,"TargetStructureID":6155,"Label":"106413-6155 via Conventional from 106414 -> 106415","Type":"Conventional","Directional":true,"Links":[{"SourceID":106414,"TargetID":106415,"Directional":true}]},{"ID":19960,"SourceStructureID":106418,"TargetStructureID":6155,"Label":"106418-6155 via Conventional from 106423 -> 15763","Type":"Conventional","Directional":true,"Links":[{"SourceID":106423,"TargetID":15763,"Directional":true}]},{"ID":19961,"SourceStructureID":106421,"TargetStructureID":5649,"Label":"106421-5649 via Conventional from 106422 -> 54110","Type":"Conventional","Directional":true,"Links":[{"SourceID":106422,"TargetID":54110,"Directional":true}]},{"ID":19962,"SourceStructureID":106424,"TargetStructureID":6155,"Label":"106424-6155 via Conventional from 106425 -> 106426","Type":"Conventional","Directional":true,"Links":[{"SourceID":106425,"TargetID":106426,"Directional":true}]},{"ID":19963,"SourceStructureID":106427,"TargetStructureID":6155,"Label":"106427-6155 via Conventional from 106429 -> 106430","Type":"Conventional","Directional":true,"Links":[{"SourceID":106429,"TargetID":106430,"Directional":true}]},{"ID":19964,"SourceStructureID":106438,"TargetStructureID":4569,"Label":"106438-4569 via Conventional from 106439 -> 131403","Type":"Conventional","Directional":true,"Links":[{"SourceID":106439,"TargetID":131403,"Directional":true}]},{"ID":19965,"SourceStructureID":106446,"TargetStructureID":6155,"Label":"106446-6155 via Conventional from 106447 -> 30582","Type":"Conventional","Directional":true,"Links":[{"SourceID":106447,"TargetID":30582,"Directional":true}]},{"ID":19966,"SourceStructureID":106454,"TargetStructureID":6155,"Label":"106454-6155 via Conventional from 106455 -> 15807","Type":"Conventional","Directional":true,"Links":[{"SourceID":106455,"TargetID":15807,"Directional":true}]},{"ID":19967,"SourceStructureID":106456,"TargetStructureID":6155,"Label":"106456-6155 via Conventional from 106457 -> 15800","Type":"Conventional","Directional":true,"Links":[{"SourceID":106457,"TargetID":15800,"Directional":true}]},{"ID":19968,"SourceStructureID":106458,"TargetStructureID":6155,"Label":"106458-6155 via Conventional from 106462 -> 15802","Type":"Conventional","Directional":true,"Links":[{"SourceID":106462,"TargetID":15802,"Directional":true}]},{"ID":19969,"SourceStructureID":106463,"TargetStructureID":6155,"Label":"106463-6155 via Conventional from 106465 -> 15765","Type":"Conventional","Directional":true,"Links":[{"SourceID":106465,"TargetID":15765,"Directional":true}]},{"ID":19970,"SourceStructureID":106466,"TargetStructureID":6155,"Label":"106466-6155 via Conventional from 106467 -> 48329","Type":"Conventional","Directional":true,"Links":[{"SourceID":106467,"TargetID":48329,"Directional":true}]},{"ID":19971,"SourceStructureID":106468,"TargetStructureID":6155,"Label":"106468-6155 via Conventional from 106469 -> 29763","Type":"Conventional","Directional":true,"Links":[{"SourceID":106469,"TargetID":29763,"Directional":true}]},{"ID":19972,"SourceStructureID":106470,"TargetStructureID":6155,"Label":"106470-6155 via Conventional from 106471 -> 49045","Type":"Conventional","Directional":true,"Links":[{"SourceID":106471,"TargetID":49045,"Directional":true}]},{"ID":19973,"SourceStructureID":106472,"TargetStructureID":6155,"Label":"106472-6155 via Conventional from 106475 -> 106476","Type":"Conventional","Directional":true,"Links":[{"SourceID":106475,"TargetID":106476,"Directional":true}]},{"ID":19974,"SourceStructureID":106478,"TargetStructureID":6155,"Label":"106478-6155 via Conventional from 106479 -> 15804","Type":"Conventional","Directional":true,"Links":[{"SourceID":106479,"TargetID":15804,"Directional":true}]},{"ID":19975,"SourceStructureID":106490,"TargetStructureID":5531,"Label":"106490-5531 via Conventional from 106491 -> 106492","Type":"Conventional","Directional":true,"Links":[{"SourceID":106491,"TargetID":106492,"Directional":true}]},{"ID":19976,"SourceStructureID":106541,"TargetStructureID":5649,"Label":"106541-5649 via Conventional from 106542 -> 54104","Type":"Conventional","Directional":true,"Links":[{"SourceID":106542,"TargetID":54104,"Directional":true}]},{"ID":19977,"SourceStructureID":106577,"TargetStructureID":6155,"Label":"106577-6155 via Conventional from 106578 -> 48328","Type":"Conventional","Directional":true,"Links":[{"SourceID":106578,"TargetID":48328,"Directional":true}]},{"ID":19978,"SourceStructureID":106580,"TargetStructureID":6155,"Label":"106580-6155 via Conventional from 106582 -> 15801","Type":"Conventional","Directional":true,"Links":[{"SourceID":106582,"TargetID":15801,"Directional":true}]},{"ID":19979,"SourceStructureID":106597,"TargetStructureID":5531,"Label":"106597-5531 via Conventional from 106598 -> 106599","Type":"Conventional","Directional":true,"Links":[{"SourceID":106598,"TargetID":106599,"Directional":true}]},{"ID":19980,"SourceStructureID":106616,"TargetStructureID":5649,"Label":"106616-5649 via Conventional from 106658 -> 106615","Type":"Conventional","Directional":true,"Links":[{"SourceID":106658,"TargetID":106615,"Directional":true}]},{"ID":19981,"SourceStructureID":106619,"TargetStructureID":106617,"Label":"106619-106617 via Conventional from 106620 -> 106621, 106622 -> 106623","Type":"Conventional","Directional":true,"Links":[{"SourceID":106620,"TargetID":106621,"Directional":true},{"SourceID":106622,"TargetID":106623,"Directional":true}]},{"ID":19982,"SourceStructureID":106637,"TargetStructureID":5531,"Label":"106637-5531 via Conventional from 106640 -> 106641","Type":"Conventional","Directional":true,"Links":[{"SourceID":106640,"TargetID":106641,"Directional":true}]},{"ID":19983,"SourceStructureID":106659,"TargetStructureID":5531,"Label":"106659-5531 via Conventional from 106660 -> 54563","Type":"Conventional","Directional":true,"Links":[{"SourceID":106660,"TargetID":54563,"Directional":true}]},{"ID":19984,"SourceStructureID":106661,"TargetStructureID":5649,"Label":"106661-5649 via Conventional from 106663 -> 106662","Type":"Conventional","Directional":true,"Links":[{"SourceID":106663,"TargetID":106662,"Directional":true}]},{"ID":19985,"SourceStructureID":106665,"TargetStructureID":5649,"Label":"106665-5649 via Conventional from 106668 -> 106601","Type":"Conventional","Directional":true,"Links":[{"SourceID":106668,"TargetID":106601,"Directional":true}]},{"ID":19986,"SourceStructureID":106675,"TargetStructureID":5649,"Label":"106675-5649 via Conventional from 135456 -> 135455","Type":"Conventional","Directional":true,"Links":[{"SourceID":135456,"TargetID":135455,"Directional":true}]},{"ID":19987,"SourceStructureID":106696,"TargetStructureID":5649,"Label":"106696-5649 via Conventional from 106699 -> 106695","Type":"Conventional","Directional":true,"Links":[{"SourceID":106699,"TargetID":106695,"Directional":true}]},{"ID":19988,"SourceStructureID":106711,"TargetStructureID":6155,"Label":"106711-6155 via Conventional from 106714 -> 15516","Type":"Conventional","Directional":true,"Links":[{"SourceID":106714,"TargetID":15516,"Directional":true}]},{"ID":19989,"SourceStructureID":106712,"TargetStructureID":5649,"Label":"106712-5649 via Conventional from 106713 -> 106614","Type":"Conventional","Directional":true,"Links":[{"SourceID":106713,"TargetID":106614,"Directional":true}]},{"ID":19990,"SourceStructureID":106715,"TargetStructureID":5531,"Label":"106715-5531 via Conventional from 106724 -> 54544","Type":"Conventional","Directional":true,"Links":[{"SourceID":106724,"TargetID":54544,"Directional":true}]},{"ID":19991,"SourceStructureID":106717,"TargetStructureID":6155,"Label":"106717-6155 via Conventional from 106722 -> 48277","Type":"Conventional","Directional":true,"Links":[{"SourceID":106722,"TargetID":48277,"Directional":true}]},{"ID":19992,"SourceStructureID":106727,"TargetStructureID":6155,"Label":"106727-6155 via Conventional from 106739 -> 15517","Type":"Conventional","Directional":true,"Links":[{"SourceID":106739,"TargetID":15517,"Directional":true}]},{"ID":19993,"SourceStructureID":106727,"TargetStructureID":24401,"Label":"106727-24401 via Conventional from 106740 -> 48042","Type":"Conventional","Directional":true,"Links":[{"SourceID":106740,"TargetID":48042,"Directional":true}]},{"ID":19994,"SourceStructureID":106775,"TargetStructureID":5531,"Label":"106775-5531 via Conventional from 106796 -> 54533","Type":"Conventional","Directional":true,"Links":[{"SourceID":106796,"TargetID":54533,"Directional":true}]},{"ID":19995,"SourceStructureID":106781,"TargetStructureID":5649,"Label":"106781-5649 via Conventional from 106795 -> 106794","Type":"Conventional","Directional":true,"Links":[{"SourceID":106795,"TargetID":106794,"Directional":true}]},{"ID":19996,"SourceStructureID":106792,"TargetStructureID":5531,"Label":"106792-5531 via Conventional from 106793 -> 54534","Type":"Conventional","Directional":true,"Links":[{"SourceID":106793,"TargetID":54534,"Directional":true}]},{"ID":19997,"SourceStructureID":106801,"TargetStructureID":5649,"Label":"106801-5649 via Conventional from 106803 -> 106800","Type":"Conventional","Directional":true,"Links":[{"SourceID":106803,"TargetID":106800,"Directional":true}]},{"ID":19998,"SourceStructureID":106809,"TargetStructureID":6155,"Label":"106809-6155 via Conventional from 106810 -> 16130","Type":"Conventional","Directional":true,"Links":[{"SourceID":106810,"TargetID":16130,"Directional":true}]},{"ID":19999,"SourceStructureID":106813,"TargetStructureID":5531,"Label":"106813-5531 via Conventional from 106825 -> 54530","Type":"Conventional","Directional":true,"Links":[{"SourceID":106825,"TargetID":54530,"Directional":true}]},{"ID":20000,"SourceStructureID":106835,"TargetStructureID":5531,"Label":"106835-5531 via Conventional from 106844 -> 54543","Type":"Conventional","Directional":true,"Links":[{"SourceID":106844,"TargetID":54543,"Directional":true}]},{"ID":20001,"SourceStructureID":106839,"TargetStructureID":5531,"Label":"106839-5531 via Conventional from 106841 -> 54529","Type":"Conventional","Directional":true,"Links":[{"SourceID":106841,"TargetID":54529,"Directional":true}]},{"ID":20002,"SourceStructureID":106848,"TargetStructureID":6155,"Label":"106848-6155 via Conventional from 106852 -> 16135","Type":"Conventional","Directional":true,"Links":[{"SourceID":106852,"TargetID":16135,"Directional":true}]},{"ID":20003,"SourceStructureID":106855,"TargetStructureID":5531,"Label":"106855-5531 via Conventional from 106857 -> 54541","Type":"Conventional","Directional":true,"Links":[{"SourceID":106857,"TargetID":54541,"Directional":true}]},{"ID":20004,"SourceStructureID":106863,"TargetStructureID":5531,"Label":"106863-5531 via Conventional from 106865 -> 54542","Type":"Conventional","Directional":true,"Links":[{"SourceID":106865,"TargetID":54542,"Directional":true}]},{"ID":20005,"SourceStructureID":106877,"TargetStructureID":6155,"Label":"106877-6155 via Conventional from 106878 -> 106876","Type":"Conventional","Directional":true,"Links":[{"SourceID":106878,"TargetID":106876,"Directional":true}]},{"ID":20006,"SourceStructureID":106886,"TargetStructureID":5649,"Label":"106886-5649 via Conventional from 106899 -> 106885","Type":"Conventional","Directional":true,"Links":[{"SourceID":106899,"TargetID":106885,"Directional":true}]},{"ID":20007,"SourceStructureID":106890,"TargetStructureID":176,"Label":"106890-176 via Conventional from 128267 -> 128268","Type":"Conventional","Directional":true,"Links":[{"SourceID":128267,"TargetID":128268,"Directional":true}]},{"ID":20008,"SourceStructureID":106890,"TargetStructureID":5531,"Label":"106890-5531 via Conventional from 106892 -> 54577, 106893 -> 54566","Type":"Conventional","Directional":true,"Links":[{"SourceID":106892,"TargetID":54577,"Directional":true},{"SourceID":106893,"TargetID":54566,"Directional":true}]},{"ID":20009,"SourceStructureID":106896,"TargetStructureID":5531,"Label":"106896-5531 via Conventional from 106897 -> 54570","Type":"Conventional","Directional":true,"Links":[{"SourceID":106897,"TargetID":54570,"Directional":true}]},{"ID":20010,"SourceStructureID":106903,"TargetStructureID":5531,"Label":"106903-5531 via Conventional from 106905 -> 106906","Type":"Conventional","Directional":true,"Links":[{"SourceID":106905,"TargetID":106906,"Directional":true}]},{"ID":20011,"SourceStructureID":106909,"TargetStructureID":5531,"Label":"106909-5531 via Conventional from 106910 -> 106911","Type":"Conventional","Directional":true,"Links":[{"SourceID":106910,"TargetID":106911,"Directional":true}]},{"ID":20012,"SourceStructureID":106913,"TargetStructureID":5649,"Label":"106913-5649 via Conventional from 106916 -> 106917","Type":"Conventional","Directional":true,"Links":[{"SourceID":106916,"TargetID":106917,"Directional":true}]},{"ID":20013,"SourceStructureID":106924,"TargetStructureID":176,"Label":"106924-176 via Conventional from 128261 -> 128260","Type":"Conventional","Directional":true,"Links":[{"SourceID":128261,"TargetID":128260,"Directional":true}]},{"ID":20014,"SourceStructureID":106924,"TargetStructureID":5531,"Label":"106924-5531 via Conventional from 106928 -> 106929","Type":"Conventional","Directional":true,"Links":[{"SourceID":106928,"TargetID":106929,"Directional":true}]},{"ID":20015,"SourceStructureID":106926,"TargetStructureID":5649,"Label":"106926-5649 via Conventional from 106927 -> 106925","Type":"Conventional","Directional":true,"Links":[{"SourceID":106927,"TargetID":106925,"Directional":true}]},{"ID":20016,"SourceStructureID":107045,"TargetStructureID":5649,"Label":"107045-5649 via Conventional from 107048 -> 107049","Type":"Conventional","Directional":true,"Links":[{"SourceID":107048,"TargetID":107049,"Directional":true}]},{"ID":20017,"SourceStructureID":107051,"TargetStructureID":5649,"Label":"107051-5649 via Conventional from 107052 -> 107050","Type":"Conventional","Directional":true,"Links":[{"SourceID":107052,"TargetID":107050,"Directional":true}]},{"ID":20018,"SourceStructureID":107061,"TargetStructureID":5649,"Label":"107061-5649 via Conventional from 107068 -> 107065","Type":"Conventional","Directional":true,"Links":[{"SourceID":107068,"TargetID":107065,"Directional":true}]},{"ID":20019,"SourceStructureID":107071,"TargetStructureID":5649,"Label":"107071-5649 via Conventional from 107072 -> 107070","Type":"Conventional","Directional":true,"Links":[{"SourceID":107072,"TargetID":107070,"Directional":true}]},{"ID":20020,"SourceStructureID":107074,"TargetStructureID":5649,"Label":"107074-5649 via Conventional from 107075 -> 107073","Type":"Conventional","Directional":true,"Links":[{"SourceID":107075,"TargetID":107073,"Directional":true}]},{"ID":20021,"SourceStructureID":107092,"TargetStructureID":5649,"Label":"107092-5649 via Conventional from 107095 -> 107091","Type":"Conventional","Directional":true,"Links":[{"SourceID":107095,"TargetID":107091,"Directional":true}]},{"ID":20022,"SourceStructureID":107099,"TargetStructureID":5649,"Label":"107099-5649 via Conventional from 107113 -> 107112","Type":"Conventional","Directional":true,"Links":[{"SourceID":107113,"TargetID":107112,"Directional":true}]},{"ID":20023,"SourceStructureID":107102,"TargetStructureID":5649,"Label":"107102-5649 via Conventional from 107104 -> 107087","Type":"Conventional","Directional":true,"Links":[{"SourceID":107104,"TargetID":107087,"Directional":true}]},{"ID":20024,"SourceStructureID":107108,"TargetStructureID":5649,"Label":"107108-5649 via Conventional from 107109 -> 107088","Type":"Conventional","Directional":true,"Links":[{"SourceID":107109,"TargetID":107088,"Directional":true}]},{"ID":20025,"SourceStructureID":107121,"TargetStructureID":5649,"Label":"107121-5649 via Conventional from 135457 -> 107120","Type":"Conventional","Directional":true,"Links":[{"SourceID":135457,"TargetID":107120,"Directional":true}]},{"ID":20026,"SourceStructureID":107126,"TargetStructureID":5649,"Label":"107126-5649 via Conventional from 107128 -> 107125","Type":"Conventional","Directional":true,"Links":[{"SourceID":107128,"TargetID":107125,"Directional":true}]},{"ID":20027,"SourceStructureID":107132,"TargetStructureID":5649,"Label":"107132-5649 via Conventional from 107138 -> 107131","Type":"Conventional","Directional":true,"Links":[{"SourceID":107138,"TargetID":107131,"Directional":true}]},{"ID":20028,"SourceStructureID":107152,"TargetStructureID":5649,"Label":"107152-5649 via Conventional from 107154 -> 107151","Type":"Conventional","Directional":true,"Links":[{"SourceID":107154,"TargetID":107151,"Directional":true}]},{"ID":20029,"SourceStructureID":107156,"TargetStructureID":595,"Label":"107156-595 via Conventional from 107158 -> 107155","Type":"Conventional","Directional":true,"Links":[{"SourceID":107158,"TargetID":107155,"Directional":true}]},{"ID":20030,"SourceStructureID":107162,"TargetStructureID":5649,"Label":"107162-5649 via Conventional from 107163 -> 54302","Type":"Conventional","Directional":true,"Links":[{"SourceID":107163,"TargetID":54302,"Directional":true}]},{"ID":20031,"SourceStructureID":107176,"TargetStructureID":5649,"Label":"107176-5649 via Conventional from 107177 -> 107175","Type":"Conventional","Directional":true,"Links":[{"SourceID":107177,"TargetID":107175,"Directional":true}]},{"ID":20032,"SourceStructureID":107179,"TargetStructureID":5649,"Label":"107179-5649 via Conventional from 107180 -> 107178","Type":"Conventional","Directional":true,"Links":[{"SourceID":107180,"TargetID":107178,"Directional":true}]},{"ID":20033,"SourceStructureID":107195,"TargetStructureID":5649,"Label":"107195-5649 via Conventional from 107197 -> 107181","Type":"Conventional","Directional":true,"Links":[{"SourceID":107197,"TargetID":107181,"Directional":true}]},{"ID":20034,"SourceStructureID":107196,"TargetStructureID":5531,"Label":"107196-5531 via Conventional from 107199 -> 107193","Type":"Conventional","Directional":true,"Links":[{"SourceID":107199,"TargetID":107193,"Directional":true}]},{"ID":20035,"SourceStructureID":107222,"TargetStructureID":5649,"Label":"107222-5649 via Conventional from 107224 -> 107225","Type":"Conventional","Directional":true,"Links":[{"SourceID":107224,"TargetID":107225,"Directional":true}]},{"ID":20036,"SourceStructureID":107248,"TargetStructureID":5649,"Label":"107248-5649 via Conventional from 107249 -> 107243","Type":"Conventional","Directional":true,"Links":[{"SourceID":107249,"TargetID":107243,"Directional":true}]},{"ID":20037,"SourceStructureID":107253,"TargetStructureID":5649,"Label":"107253-5649 via Conventional from 107254 -> 107252","Type":"Conventional","Directional":true,"Links":[{"SourceID":107254,"TargetID":107252,"Directional":true}]},{"ID":20038,"SourceStructureID":107262,"TargetStructureID":5649,"Label":"107262-5649 via Conventional from 107263 -> 107261","Type":"Conventional","Directional":true,"Links":[{"SourceID":107263,"TargetID":107261,"Directional":true}]},{"ID":20039,"SourceStructureID":107265,"TargetStructureID":5649,"Label":"107265-5649 via Conventional from 107278 -> 107264","Type":"Conventional","Directional":true,"Links":[{"SourceID":107278,"TargetID":107264,"Directional":true}]},{"ID":20040,"SourceStructureID":107267,"TargetStructureID":5649,"Label":"107267-5649 via Conventional from 107268 -> 107266","Type":"Conventional","Directional":true,"Links":[{"SourceID":107268,"TargetID":107266,"Directional":true}]},{"ID":20041,"SourceStructureID":107275,"TargetStructureID":5649,"Label":"107275-5649 via Conventional from 107293 -> 107292","Type":"Conventional","Directional":true,"Links":[{"SourceID":107293,"TargetID":107292,"Directional":true}]},{"ID":20042,"SourceStructureID":107297,"TargetStructureID":5649,"Label":"107297-5649 via Conventional from 107298 -> 107299","Type":"Conventional","Directional":true,"Links":[{"SourceID":107298,"TargetID":107299,"Directional":true}]},{"ID":20043,"SourceStructureID":107306,"TargetStructureID":5649,"Label":"107306-5649 via Conventional from 107308 -> 107309","Type":"Conventional","Directional":true,"Links":[{"SourceID":107308,"TargetID":107309,"Directional":true}]},{"ID":20044,"SourceStructureID":107314,"TargetStructureID":5649,"Label":"107314-5649 via Conventional from 107315 -> 70013","Type":"Conventional","Directional":true,"Links":[{"SourceID":107315,"TargetID":70013,"Directional":true}]},{"ID":20045,"SourceStructureID":107321,"TargetStructureID":5649,"Label":"107321-5649 via Conventional from 107322 -> 107323","Type":"Conventional","Directional":true,"Links":[{"SourceID":107322,"TargetID":107323,"Directional":true}]},{"ID":20046,"SourceStructureID":107324,"TargetStructureID":5649,"Label":"107324-5649 via Conventional from 107325 -> 107326","Type":"Conventional","Directional":true,"Links":[{"SourceID":107325,"TargetID":107326,"Directional":true}]},{"ID":20047,"SourceStructureID":107328,"TargetStructureID":5649,"Label":"107328-5649 via Conventional from 107329 -> 70007","Type":"Conventional","Directional":true,"Links":[{"SourceID":107329,"TargetID":70007,"Directional":true}]},{"ID":20048,"SourceStructureID":107330,"TargetStructureID":5649,"Label":"107330-5649 via Conventional from 107331 -> 70006","Type":"Conventional","Directional":true,"Links":[{"SourceID":107331,"TargetID":70006,"Directional":true}]},{"ID":20049,"SourceStructureID":107332,"TargetStructureID":5649,"Label":"107332-5649 via Conventional from 107347 -> 70009","Type":"Conventional","Directional":true,"Links":[{"SourceID":107347,"TargetID":70009,"Directional":true}]},{"ID":20050,"SourceStructureID":107337,"TargetStructureID":5649,"Label":"107337-5649 via Conventional from 107338 -> 107318","Type":"Conventional","Directional":true,"Links":[{"SourceID":107338,"TargetID":107318,"Directional":true}]},{"ID":20051,"SourceStructureID":107360,"TargetStructureID":5649,"Label":"107360-5649 via Conventional from 107362 -> 70010","Type":"Conventional","Directional":true,"Links":[{"SourceID":107362,"TargetID":70010,"Directional":true}]},{"ID":20052,"SourceStructureID":107363,"TargetStructureID":5649,"Label":"107363-5649 via Conventional from 107364 -> 70017","Type":"Conventional","Directional":true,"Links":[{"SourceID":107364,"TargetID":70017,"Directional":true}]},{"ID":20053,"SourceStructureID":107367,"TargetStructureID":13525,"Label":"107367-13525 via Ribbon Synapse from 107368 -> 86729","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":107368,"TargetID":86729,"Directional":true}]},{"ID":20054,"SourceStructureID":107377,"TargetStructureID":5531,"Label":"107377-5531 via Conventional from 107380 -> 107381","Type":"Conventional","Directional":true,"Links":[{"SourceID":107380,"TargetID":107381,"Directional":true}]},{"ID":20055,"SourceStructureID":107378,"TargetStructureID":5503,"Label":"107378-5503 via Conventional from 107379 -> 36627","Type":"Conventional","Directional":true,"Links":[{"SourceID":107379,"TargetID":36627,"Directional":true}]},{"ID":20056,"SourceStructureID":107383,"TargetStructureID":5503,"Label":"107383-5503 via Conventional from 107384 -> 36631","Type":"Conventional","Directional":true,"Links":[{"SourceID":107384,"TargetID":36631,"Directional":true}]},{"ID":20057,"SourceStructureID":107397,"TargetStructureID":5531,"Label":"107397-5531 via Conventional from 107398 -> 54585","Type":"Conventional","Directional":true,"Links":[{"SourceID":107398,"TargetID":54585,"Directional":true}]},{"ID":20058,"SourceStructureID":107399,"TargetStructureID":5531,"Label":"107399-5531 via Conventional from 107400 -> 54586","Type":"Conventional","Directional":true,"Links":[{"SourceID":107400,"TargetID":54586,"Directional":true}]},{"ID":20059,"SourceStructureID":107401,"TargetStructureID":5531,"Label":"107401-5531 via Conventional from 107402 -> 107403","Type":"Conventional","Directional":true,"Links":[{"SourceID":107402,"TargetID":107403,"Directional":true}]},{"ID":20060,"SourceStructureID":107408,"TargetStructureID":5531,"Label":"107408-5531 via Conventional from 107409 -> 54576","Type":"Conventional","Directional":true,"Links":[{"SourceID":107409,"TargetID":54576,"Directional":true}]},{"ID":20061,"SourceStructureID":107418,"TargetStructureID":5531,"Label":"107418-5531 via Conventional from 107419 -> 54581","Type":"Conventional","Directional":true,"Links":[{"SourceID":107419,"TargetID":54581,"Directional":true}]},{"ID":20062,"SourceStructureID":107429,"TargetStructureID":5531,"Label":"107429-5531 via Conventional from 107430 -> 91681","Type":"Conventional","Directional":true,"Links":[{"SourceID":107430,"TargetID":91681,"Directional":true}]},{"ID":20063,"SourceStructureID":107431,"TargetStructureID":595,"Label":"107431-595 via Conventional from 107435 -> 46696","Type":"Conventional","Directional":true,"Links":[{"SourceID":107435,"TargetID":46696,"Directional":true}]},{"ID":20064,"SourceStructureID":107433,"TargetStructureID":5503,"Label":"107433-5503 via Conventional from 107434 -> 60732","Type":"Conventional","Directional":true,"Links":[{"SourceID":107434,"TargetID":60732,"Directional":true}]},{"ID":20065,"SourceStructureID":107444,"TargetStructureID":5503,"Label":"107444-5503 via Conventional from 107488 -> 60735","Type":"Conventional","Directional":true,"Links":[{"SourceID":107488,"TargetID":60735,"Directional":true}]},{"ID":20066,"SourceStructureID":107445,"TargetStructureID":5531,"Label":"107445-5531 via Conventional from 107446 -> 107447","Type":"Conventional","Directional":true,"Links":[{"SourceID":107446,"TargetID":107447,"Directional":true}]},{"ID":20067,"SourceStructureID":107455,"TargetStructureID":5503,"Label":"107455-5503 via Conventional from 107457 -> 60731","Type":"Conventional","Directional":true,"Links":[{"SourceID":107457,"TargetID":60731,"Directional":true}]},{"ID":20068,"SourceStructureID":107476,"TargetStructureID":5531,"Label":"107476-5531 via Conventional from 107481 -> 107482","Type":"Conventional","Directional":true,"Links":[{"SourceID":107481,"TargetID":107482,"Directional":true}]},{"ID":20069,"SourceStructureID":107477,"TargetStructureID":5503,"Label":"107477-5503 via Conventional from 107479 -> 60733, 107480 -> 60730","Type":"Conventional","Directional":true,"Links":[{"SourceID":107479,"TargetID":60733,"Directional":true},{"SourceID":107480,"TargetID":60730,"Directional":true}]},{"ID":20070,"SourceStructureID":107483,"TargetStructureID":176,"Label":"107483-176 via Conventional from 107486 -> 5869","Type":"Conventional","Directional":true,"Links":[{"SourceID":107486,"TargetID":5869,"Directional":true}]},{"ID":20071,"SourceStructureID":107483,"TargetStructureID":5531,"Label":"107483-5531 via Conventional from 107536 -> 107537","Type":"Conventional","Directional":true,"Links":[{"SourceID":107536,"TargetID":107537,"Directional":true}]},{"ID":20072,"SourceStructureID":107487,"TargetStructureID":176,"Label":"107487-176 via Conventional from 107492 -> 107493","Type":"Conventional","Directional":true,"Links":[{"SourceID":107492,"TargetID":107493,"Directional":true}]},{"ID":20073,"SourceStructureID":107490,"TargetStructureID":5503,"Label":"107490-5503 via Conventional from 107491 -> 107489","Type":"Conventional","Directional":true,"Links":[{"SourceID":107491,"TargetID":107489,"Directional":true}]},{"ID":20074,"SourceStructureID":107494,"TargetStructureID":5503,"Label":"107494-5503 via Conventional from 107495 -> 60734","Type":"Conventional","Directional":true,"Links":[{"SourceID":107495,"TargetID":60734,"Directional":true}]},{"ID":20075,"SourceStructureID":107512,"TargetStructureID":176,"Label":"107512-176 via Conventional from 128664 -> 125434","Type":"Conventional","Directional":true,"Links":[{"SourceID":128664,"TargetID":125434,"Directional":true}]},{"ID":20076,"SourceStructureID":107512,"TargetStructureID":5531,"Label":"107512-5531 via Conventional from 107513 -> 107514","Type":"Conventional","Directional":true,"Links":[{"SourceID":107513,"TargetID":107514,"Directional":true}]},{"ID":20077,"SourceStructureID":107525,"TargetStructureID":5503,"Label":"107525-5503 via Conventional from 107526 -> 60706","Type":"Conventional","Directional":true,"Links":[{"SourceID":107526,"TargetID":60706,"Directional":true}]},{"ID":20078,"SourceStructureID":107530,"TargetStructureID":176,"Label":"107530-176 via Conventional from 120263 -> 120262","Type":"Conventional","Directional":true,"Links":[{"SourceID":120263,"TargetID":120262,"Directional":true}]},{"ID":20079,"SourceStructureID":107530,"TargetStructureID":5531,"Label":"107530-5531 via Conventional from 107531 -> 107532","Type":"Conventional","Directional":true,"Links":[{"SourceID":107531,"TargetID":107532,"Directional":true}]},{"ID":20080,"SourceStructureID":107543,"TargetStructureID":176,"Label":"107543-176 via Conventional from 128677 -> 125447","Type":"Conventional","Directional":true,"Links":[{"SourceID":128677,"TargetID":125447,"Directional":true}]},{"ID":20081,"SourceStructureID":107543,"TargetStructureID":5531,"Label":"107543-5531 via Conventional from 107544 -> 107545","Type":"Conventional","Directional":true,"Links":[{"SourceID":107544,"TargetID":107545,"Directional":true}]},{"ID":20082,"SourceStructureID":107560,"TargetStructureID":5531,"Label":"107560-5531 via Conventional from 107561 -> 107562","Type":"Conventional","Directional":true,"Links":[{"SourceID":107561,"TargetID":107562,"Directional":true}]},{"ID":20083,"SourceStructureID":107583,"TargetStructureID":176,"Label":"107583-176 via Conventional from 125440 -> 5877","Type":"Conventional","Directional":true,"Links":[{"SourceID":125440,"TargetID":5877,"Directional":true}]},{"ID":20084,"SourceStructureID":107597,"TargetStructureID":6155,"Label":"107597-6155 via Conventional from 107743 -> 48269","Type":"Conventional","Directional":true,"Links":[{"SourceID":107743,"TargetID":48269,"Directional":true}]},{"ID":20085,"SourceStructureID":107612,"TargetStructureID":6155,"Label":"107612-6155 via Conventional from 107613 -> 15391","Type":"Conventional","Directional":true,"Links":[{"SourceID":107613,"TargetID":15391,"Directional":true}]},{"ID":20086,"SourceStructureID":107628,"TargetStructureID":6155,"Label":"107628-6155 via Conventional from 107629 -> 48268","Type":"Conventional","Directional":true,"Links":[{"SourceID":107629,"TargetID":48268,"Directional":true}]},{"ID":20087,"SourceStructureID":107641,"TargetStructureID":5531,"Label":"107641-5531 via Conventional from 107642 -> 107643","Type":"Conventional","Directional":true,"Links":[{"SourceID":107642,"TargetID":107643,"Directional":true}]},{"ID":20088,"SourceStructureID":107649,"TargetStructureID":5531,"Label":"107649-5531 via Conventional from 107650 -> 107651","Type":"Conventional","Directional":true,"Links":[{"SourceID":107650,"TargetID":107651,"Directional":true}]},{"ID":20089,"SourceStructureID":107661,"TargetStructureID":5531,"Label":"107661-5531 via Conventional from 107662 -> 107663","Type":"Conventional","Directional":true,"Links":[{"SourceID":107662,"TargetID":107663,"Directional":true}]},{"ID":20090,"SourceStructureID":107687,"TargetStructureID":5531,"Label":"107687-5531 via Conventional from 107688 -> 107689","Type":"Conventional","Directional":true,"Links":[{"SourceID":107688,"TargetID":107689,"Directional":true}]},{"ID":20091,"SourceStructureID":107693,"TargetStructureID":5531,"Label":"107693-5531 via Conventional from 107694 -> 107695","Type":"Conventional","Directional":true,"Links":[{"SourceID":107694,"TargetID":107695,"Directional":true}]},{"ID":20092,"SourceStructureID":107706,"TargetStructureID":5531,"Label":"107706-5531 via Conventional from 107707 -> 107708","Type":"Conventional","Directional":true,"Links":[{"SourceID":107707,"TargetID":107708,"Directional":true}]},{"ID":20093,"SourceStructureID":107712,"TargetStructureID":5531,"Label":"107712-5531 via Conventional from 107713 -> 107714","Type":"Conventional","Directional":true,"Links":[{"SourceID":107713,"TargetID":107714,"Directional":true}]},{"ID":20094,"SourceStructureID":107727,"TargetStructureID":5531,"Label":"107727-5531 via Conventional from 107728 -> 107729","Type":"Conventional","Directional":true,"Links":[{"SourceID":107728,"TargetID":107729,"Directional":true}]},{"ID":20095,"SourceStructureID":107736,"TargetStructureID":5531,"Label":"107736-5531 via Conventional from 107737 -> 107738","Type":"Conventional","Directional":true,"Links":[{"SourceID":107737,"TargetID":107738,"Directional":true}]},{"ID":20096,"SourceStructureID":107753,"TargetStructureID":6155,"Label":"107753-6155 via Conventional from 107777 -> 107778","Type":"Conventional","Directional":true,"Links":[{"SourceID":107777,"TargetID":107778,"Directional":true}]},{"ID":20097,"SourceStructureID":107755,"TargetStructureID":6155,"Label":"107755-6155 via Conventional from 107756 -> 48272","Type":"Conventional","Directional":true,"Links":[{"SourceID":107756,"TargetID":48272,"Directional":true}]},{"ID":20098,"SourceStructureID":107757,"TargetStructureID":6155,"Label":"107757-6155 via Conventional from 107761 -> 15396","Type":"Conventional","Directional":true,"Links":[{"SourceID":107761,"TargetID":15396,"Directional":true}]},{"ID":20099,"SourceStructureID":107758,"TargetStructureID":6155,"Label":"107758-6155 via Conventional from 107759 -> 107760","Type":"Conventional","Directional":true,"Links":[{"SourceID":107759,"TargetID":107760,"Directional":true}]},{"ID":20100,"SourceStructureID":107762,"TargetStructureID":6155,"Label":"107762-6155 via Conventional from 107763 -> 15434","Type":"Conventional","Directional":true,"Links":[{"SourceID":107763,"TargetID":15434,"Directional":true}]},{"ID":20101,"SourceStructureID":107792,"TargetStructureID":6155,"Label":"107792-6155 via Conventional from 107793 -> 15426","Type":"Conventional","Directional":true,"Links":[{"SourceID":107793,"TargetID":15426,"Directional":true}]},{"ID":20102,"SourceStructureID":107794,"TargetStructureID":6155,"Label":"107794-6155 via Conventional from 107795 -> 15428","Type":"Conventional","Directional":true,"Links":[{"SourceID":107795,"TargetID":15428,"Directional":true}]},{"ID":20103,"SourceStructureID":107796,"TargetStructureID":6155,"Label":"107796-6155 via Conventional from 107797 -> 15402","Type":"Conventional","Directional":true,"Links":[{"SourceID":107797,"TargetID":15402,"Directional":true}]},{"ID":20104,"SourceStructureID":107815,"TargetStructureID":6155,"Label":"107815-6155 via Conventional from 107816 -> 16131","Type":"Conventional","Directional":true,"Links":[{"SourceID":107816,"TargetID":16131,"Directional":true}]},{"ID":20105,"SourceStructureID":107820,"TargetStructureID":6155,"Label":"107820-6155 via Conventional from 107821 -> 49070","Type":"Conventional","Directional":true,"Links":[{"SourceID":107821,"TargetID":49070,"Directional":true}]},{"ID":20106,"SourceStructureID":107822,"TargetStructureID":6155,"Label":"107822-6155 via Conventional from 107823 -> 23086","Type":"Conventional","Directional":true,"Links":[{"SourceID":107823,"TargetID":23086,"Directional":true}]},{"ID":20107,"SourceStructureID":107827,"TargetStructureID":6155,"Label":"107827-6155 via Conventional from 107828 -> 107829","Type":"Conventional","Directional":true,"Links":[{"SourceID":107828,"TargetID":107829,"Directional":true}]},{"ID":20108,"SourceStructureID":107831,"TargetStructureID":6155,"Label":"107831-6155 via Conventional from 107832 -> 48260","Type":"Conventional","Directional":true,"Links":[{"SourceID":107832,"TargetID":48260,"Directional":true}]},{"ID":20109,"SourceStructureID":107833,"TargetStructureID":6155,"Label":"107833-6155 via Conventional from 107835 -> 107830","Type":"Conventional","Directional":true,"Links":[{"SourceID":107835,"TargetID":107830,"Directional":true}]},{"ID":20110,"SourceStructureID":107833,"TargetStructureID":9260,"Label":"107833-9260 via Conventional from 107834 -> 9474","Type":"Conventional","Directional":true,"Links":[{"SourceID":107834,"TargetID":9474,"Directional":true}]},{"ID":20111,"SourceStructureID":107836,"TargetStructureID":6155,"Label":"107836-6155 via Conventional from 107837 -> 47940","Type":"Conventional","Directional":true,"Links":[{"SourceID":107837,"TargetID":47940,"Directional":true}]},{"ID":20112,"SourceStructureID":107843,"TargetStructureID":6155,"Label":"107843-6155 via Conventional from 107844 -> 15502","Type":"Conventional","Directional":true,"Links":[{"SourceID":107844,"TargetID":15502,"Directional":true}]},{"ID":20113,"SourceStructureID":107845,"TargetStructureID":6155,"Label":"107845-6155 via Conventional from 107846 -> 48262","Type":"Conventional","Directional":true,"Links":[{"SourceID":107846,"TargetID":48262,"Directional":true}]},{"ID":20114,"SourceStructureID":107849,"TargetStructureID":6155,"Label":"107849-6155 via Conventional from 107851 -> 107852","Type":"Conventional","Directional":true,"Links":[{"SourceID":107851,"TargetID":107852,"Directional":true}]},{"ID":20115,"SourceStructureID":107853,"TargetStructureID":6155,"Label":"107853-6155 via Conventional from 107854 -> 15503","Type":"Conventional","Directional":true,"Links":[{"SourceID":107854,"TargetID":15503,"Directional":true}]},{"ID":20116,"SourceStructureID":107855,"TargetStructureID":6155,"Label":"107855-6155 via Conventional from 107856 -> 48261","Type":"Conventional","Directional":true,"Links":[{"SourceID":107856,"TargetID":48261,"Directional":true}]},{"ID":20117,"SourceStructureID":107865,"TargetStructureID":6155,"Label":"107865-6155 via Conventional from 107866 -> 15500","Type":"Conventional","Directional":true,"Links":[{"SourceID":107866,"TargetID":15500,"Directional":true}]},{"ID":20118,"SourceStructureID":107865,"TargetStructureID":107845,"Label":"107865-107845 via Conventional from 107867 -> 107868","Type":"Conventional","Directional":true,"Links":[{"SourceID":107867,"TargetID":107868,"Directional":true}]},{"ID":20119,"SourceStructureID":107875,"TargetStructureID":6155,"Label":"107875-6155 via Conventional from 107876 -> 15514","Type":"Conventional","Directional":true,"Links":[{"SourceID":107876,"TargetID":15514,"Directional":true}]},{"ID":20120,"SourceStructureID":107879,"TargetStructureID":6155,"Label":"107879-6155 via Conventional from 107880 -> 15504","Type":"Conventional","Directional":true,"Links":[{"SourceID":107880,"TargetID":15504,"Directional":true}]},{"ID":20121,"SourceStructureID":107882,"TargetStructureID":6155,"Label":"107882-6155 via Conventional from 107884 -> 107883","Type":"Conventional","Directional":true,"Links":[{"SourceID":107884,"TargetID":107883,"Directional":true}]},{"ID":20122,"SourceStructureID":107887,"TargetStructureID":6155,"Label":"107887-6155 via Conventional from 107888 -> 15513","Type":"Conventional","Directional":true,"Links":[{"SourceID":107888,"TargetID":15513,"Directional":true}]},{"ID":20123,"SourceStructureID":107908,"TargetStructureID":6155,"Label":"107908-6155 via Conventional from 107909 -> 15505","Type":"Conventional","Directional":true,"Links":[{"SourceID":107909,"TargetID":15505,"Directional":true}]},{"ID":20124,"SourceStructureID":107910,"TargetStructureID":6155,"Label":"107910-6155 via Conventional from 107911 -> 15544, 107921 -> 30584","Type":"Conventional","Directional":true,"Links":[{"SourceID":107911,"TargetID":15544,"Directional":true},{"SourceID":107921,"TargetID":30584,"Directional":true}]},{"ID":20125,"SourceStructureID":107922,"TargetStructureID":6155,"Label":"107922-6155 via Conventional from 107923 -> 15506","Type":"Conventional","Directional":true,"Links":[{"SourceID":107923,"TargetID":15506,"Directional":true}]},{"ID":20126,"SourceStructureID":107926,"TargetStructureID":6155,"Label":"107926-6155 via Conventional from 107927 -> 15515","Type":"Conventional","Directional":true,"Links":[{"SourceID":107927,"TargetID":15515,"Directional":true}]},{"ID":20127,"SourceStructureID":107930,"TargetStructureID":6155,"Label":"107930-6155 via Conventional from 107931 -> 107932","Type":"Conventional","Directional":true,"Links":[{"SourceID":107931,"TargetID":107932,"Directional":true}]},{"ID":20128,"SourceStructureID":107937,"TargetStructureID":6155,"Label":"107937-6155 via Conventional from 107938 -> 15538","Type":"Conventional","Directional":true,"Links":[{"SourceID":107938,"TargetID":15538,"Directional":true}]},{"ID":20129,"SourceStructureID":107939,"TargetStructureID":6155,"Label":"107939-6155 via Conventional from 107940 -> 15582","Type":"Conventional","Directional":true,"Links":[{"SourceID":107940,"TargetID":15582,"Directional":true}]},{"ID":20130,"SourceStructureID":107941,"TargetStructureID":6155,"Label":"107941-6155 via Conventional from 107942 -> 107943","Type":"Conventional","Directional":true,"Links":[{"SourceID":107942,"TargetID":107943,"Directional":true}]},{"ID":20131,"SourceStructureID":107950,"TargetStructureID":6155,"Label":"107950-6155 via Conventional from 107951 -> 48279","Type":"Conventional","Directional":true,"Links":[{"SourceID":107951,"TargetID":48279,"Directional":true}]},{"ID":20132,"SourceStructureID":107955,"TargetStructureID":6155,"Label":"107955-6155 via Conventional from 107956 -> 48280","Type":"Conventional","Directional":true,"Links":[{"SourceID":107956,"TargetID":48280,"Directional":true}]},{"ID":20133,"SourceStructureID":107957,"TargetStructureID":5503,"Label":"107957-5503 via Conventional from 107960 -> 60708","Type":"Conventional","Directional":true,"Links":[{"SourceID":107960,"TargetID":60708,"Directional":true}]},{"ID":20134,"SourceStructureID":107961,"TargetStructureID":5503,"Label":"107961-5503 via Conventional from 107962 -> 60709","Type":"Conventional","Directional":true,"Links":[{"SourceID":107962,"TargetID":60709,"Directional":true}]},{"ID":20135,"SourceStructureID":107973,"TargetStructureID":5503,"Label":"107973-5503 via Conventional from 107975 -> 60719","Type":"Conventional","Directional":true,"Links":[{"SourceID":107975,"TargetID":60719,"Directional":true}]},{"ID":20136,"SourceStructureID":107974,"TargetStructureID":6155,"Label":"107974-6155 via Conventional from 107976 -> 15542","Type":"Conventional","Directional":true,"Links":[{"SourceID":107976,"TargetID":15542,"Directional":true}]},{"ID":20137,"SourceStructureID":107977,"TargetStructureID":5503,"Label":"107977-5503 via Conventional from 107978 -> 60724","Type":"Conventional","Directional":true,"Links":[{"SourceID":107978,"TargetID":60724,"Directional":true}]},{"ID":20138,"SourceStructureID":107981,"TargetStructureID":5503,"Label":"107981-5503 via Conventional from 107987 -> 60720","Type":"Conventional","Directional":true,"Links":[{"SourceID":107987,"TargetID":60720,"Directional":true}]},{"ID":20139,"SourceStructureID":107982,"TargetStructureID":6155,"Label":"107982-6155 via Conventional from 107985 -> 107986","Type":"Conventional","Directional":true,"Links":[{"SourceID":107985,"TargetID":107986,"Directional":true}]},{"ID":20140,"SourceStructureID":107988,"TargetStructureID":5503,"Label":"107988-5503 via Conventional from 107993 -> 60721","Type":"Conventional","Directional":true,"Links":[{"SourceID":107993,"TargetID":60721,"Directional":true}]},{"ID":20141,"SourceStructureID":108017,"TargetStructureID":5503,"Label":"108017-5503 via Conventional from 108018 -> 108016","Type":"Conventional","Directional":true,"Links":[{"SourceID":108018,"TargetID":108016,"Directional":true}]},{"ID":20142,"SourceStructureID":108038,"TargetStructureID":5531,"Label":"108038-5531 via Conventional from 108042 -> 108037","Type":"Conventional","Directional":true,"Links":[{"SourceID":108042,"TargetID":108037,"Directional":true}]},{"ID":20143,"SourceStructureID":108040,"TargetStructureID":6155,"Label":"108040-6155 via Conventional from 108043 -> 49079","Type":"Conventional","Directional":true,"Links":[{"SourceID":108043,"TargetID":49079,"Directional":true}]},{"ID":20144,"SourceStructureID":108041,"TargetStructureID":5503,"Label":"108041-5503 via Conventional from 108082 -> 60718","Type":"Conventional","Directional":true,"Links":[{"SourceID":108082,"TargetID":60718,"Directional":true}]},{"ID":20145,"SourceStructureID":108048,"TargetStructureID":6155,"Label":"108048-6155 via Conventional from 108049 -> 48298","Type":"Conventional","Directional":true,"Links":[{"SourceID":108049,"TargetID":48298,"Directional":true}]},{"ID":20146,"SourceStructureID":108083,"TargetStructureID":5501,"Label":"108083-5501 via Conventional from 110221 -> 110215","Type":"Conventional","Directional":true,"Links":[{"SourceID":110221,"TargetID":110215,"Directional":true}]},{"ID":20147,"SourceStructureID":108083,"TargetStructureID":5503,"Label":"108083-5503 via Conventional from 108086 -> 60717","Type":"Conventional","Directional":true,"Links":[{"SourceID":108086,"TargetID":60717,"Directional":true}]},{"ID":20148,"SourceStructureID":108089,"TargetStructureID":6155,"Label":"108089-6155 via Conventional from 108090 -> 15545","Type":"Conventional","Directional":true,"Links":[{"SourceID":108090,"TargetID":15545,"Directional":true}]},{"ID":20149,"SourceStructureID":108094,"TargetStructureID":6155,"Label":"108094-6155 via Conventional from 108095 -> 30585","Type":"Conventional","Directional":true,"Links":[{"SourceID":108095,"TargetID":30585,"Directional":true}]},{"ID":20150,"SourceStructureID":108097,"TargetStructureID":6155,"Label":"108097-6155 via Conventional from 108104 -> 48287","Type":"Conventional","Directional":true,"Links":[{"SourceID":108104,"TargetID":48287,"Directional":true}]},{"ID":20151,"SourceStructureID":108100,"TargetStructureID":5503,"Label":"108100-5503 via Conventional from 108102 -> 108099","Type":"Conventional","Directional":true,"Links":[{"SourceID":108102,"TargetID":108099,"Directional":true}]},{"ID":20152,"SourceStructureID":108108,"TargetStructureID":5503,"Label":"108108-5503 via Conventional from 108127 -> 108105","Type":"Conventional","Directional":true,"Links":[{"SourceID":108127,"TargetID":108105,"Directional":true}]},{"ID":20153,"SourceStructureID":108109,"TargetStructureID":6155,"Label":"108109-6155 via Conventional from 108110 -> 15547","Type":"Conventional","Directional":true,"Links":[{"SourceID":108110,"TargetID":15547,"Directional":true}]},{"ID":20154,"SourceStructureID":108111,"TargetStructureID":6155,"Label":"108111-6155 via Conventional from 108112 -> 48288","Type":"Conventional","Directional":true,"Links":[{"SourceID":108112,"TargetID":48288,"Directional":true}]},{"ID":20155,"SourceStructureID":108131,"TargetStructureID":6155,"Label":"108131-6155 via Conventional from 119491 -> 49080","Type":"Conventional","Directional":true,"Links":[{"SourceID":119491,"TargetID":49080,"Directional":true}]},{"ID":20156,"SourceStructureID":108143,"TargetStructureID":5649,"Label":"108143-5649 via Conventional from 108144 -> 108141","Type":"Conventional","Directional":true,"Links":[{"SourceID":108144,"TargetID":108141,"Directional":true}]},{"ID":20157,"SourceStructureID":108147,"TargetStructureID":5503,"Label":"108147-5503 via Conventional from 108148 -> 108146","Type":"Conventional","Directional":true,"Links":[{"SourceID":108148,"TargetID":108146,"Directional":true}]},{"ID":20158,"SourceStructureID":108151,"TargetStructureID":6155,"Label":"108151-6155 via Conventional from 108152 -> 34793","Type":"Conventional","Directional":true,"Links":[{"SourceID":108152,"TargetID":34793,"Directional":true}]},{"ID":20159,"SourceStructureID":108154,"TargetStructureID":5503,"Label":"108154-5503 via Conventional from 108155 -> 108153","Type":"Conventional","Directional":true,"Links":[{"SourceID":108155,"TargetID":108153,"Directional":true}]},{"ID":20160,"SourceStructureID":108157,"TargetStructureID":6155,"Label":"108157-6155 via Conventional from 108159 -> 48297","Type":"Conventional","Directional":true,"Links":[{"SourceID":108159,"TargetID":48297,"Directional":true}]},{"ID":20161,"SourceStructureID":108165,"TargetStructureID":5503,"Label":"108165-5503 via Conventional from 108168 -> 108169","Type":"Conventional","Directional":true,"Links":[{"SourceID":108168,"TargetID":108169,"Directional":true}]},{"ID":20162,"SourceStructureID":108166,"TargetStructureID":6155,"Label":"108166-6155 via Conventional from 108167 -> 34790","Type":"Conventional","Directional":true,"Links":[{"SourceID":108167,"TargetID":34790,"Directional":true}]},{"ID":20163,"SourceStructureID":108170,"TargetStructureID":6155,"Label":"108170-6155 via Conventional from 108175 -> 34792","Type":"Conventional","Directional":true,"Links":[{"SourceID":108175,"TargetID":34792,"Directional":true}]},{"ID":20164,"SourceStructureID":108178,"TargetStructureID":6155,"Label":"108178-6155 via Conventional from 108179 -> 34784, 108200 -> 34784","Type":"Conventional","Directional":true,"Links":[{"SourceID":108179,"TargetID":34784,"Directional":true},{"SourceID":108200,"TargetID":34784,"Directional":true}]},{"ID":20165,"SourceStructureID":108182,"TargetStructureID":5503,"Label":"108182-5503 via Conventional from 108186 -> 108181","Type":"Conventional","Directional":true,"Links":[{"SourceID":108186,"TargetID":108181,"Directional":true}]},{"ID":20166,"SourceStructureID":108194,"TargetStructureID":5503,"Label":"108194-5503 via Conventional from 108199 -> 108193","Type":"Conventional","Directional":true,"Links":[{"SourceID":108199,"TargetID":108193,"Directional":true}]},{"ID":20167,"SourceStructureID":108209,"TargetStructureID":6155,"Label":"108209-6155 via Conventional from 108212 -> 48295","Type":"Conventional","Directional":true,"Links":[{"SourceID":108212,"TargetID":48295,"Directional":true}]},{"ID":20168,"SourceStructureID":108215,"TargetStructureID":6155,"Label":"108215-6155 via Conventional from 108223 -> 34783","Type":"Conventional","Directional":true,"Links":[{"SourceID":108223,"TargetID":34783,"Directional":true}]},{"ID":20169,"SourceStructureID":108225,"TargetStructureID":6155,"Label":"108225-6155 via Conventional from 108227 -> 34788","Type":"Conventional","Directional":true,"Links":[{"SourceID":108227,"TargetID":34788,"Directional":true}]},{"ID":20170,"SourceStructureID":108229,"TargetStructureID":6155,"Label":"108229-6155 via Conventional from 108231 -> 34791","Type":"Conventional","Directional":true,"Links":[{"SourceID":108231,"TargetID":34791,"Directional":true}]},{"ID":20171,"SourceStructureID":108248,"TargetStructureID":6155,"Label":"108248-6155 via Conventional from 108250 -> 34789","Type":"Conventional","Directional":true,"Links":[{"SourceID":108250,"TargetID":34789,"Directional":true}]},{"ID":20172,"SourceStructureID":108254,"TargetStructureID":6155,"Label":"108254-6155 via Conventional from 108262 -> 32003","Type":"Conventional","Directional":true,"Links":[{"SourceID":108262,"TargetID":32003,"Directional":true}]},{"ID":20173,"SourceStructureID":108273,"TargetStructureID":6155,"Label":"108273-6155 via Conventional from 108280 -> 48307","Type":"Conventional","Directional":true,"Links":[{"SourceID":108280,"TargetID":48307,"Directional":true}]},{"ID":20174,"SourceStructureID":108284,"TargetStructureID":6155,"Label":"108284-6155 via Conventional from 108285 -> 48308","Type":"Conventional","Directional":true,"Links":[{"SourceID":108285,"TargetID":48308,"Directional":true}]},{"ID":20175,"SourceStructureID":108294,"TargetStructureID":6155,"Label":"108294-6155 via Conventional from 108295 -> 15529","Type":"Conventional","Directional":true,"Links":[{"SourceID":108295,"TargetID":15529,"Directional":true}]},{"ID":20176,"SourceStructureID":108298,"TargetStructureID":6155,"Label":"108298-6155 via Conventional from 108305 -> 15528","Type":"Conventional","Directional":true,"Links":[{"SourceID":108305,"TargetID":15528,"Directional":true}]},{"ID":20177,"SourceStructureID":108306,"TargetStructureID":6155,"Label":"108306-6155 via Conventional from 108307 -> 108308","Type":"Conventional","Directional":true,"Links":[{"SourceID":108307,"TargetID":108308,"Directional":true}]},{"ID":20178,"SourceStructureID":108309,"TargetStructureID":6155,"Label":"108309-6155 via Conventional from 108330 -> 29776","Type":"Conventional","Directional":true,"Links":[{"SourceID":108330,"TargetID":29776,"Directional":true}]},{"ID":20179,"SourceStructureID":108317,"TargetStructureID":6155,"Label":"108317-6155 via Conventional from 108322 -> 30583","Type":"Conventional","Directional":true,"Links":[{"SourceID":108322,"TargetID":30583,"Directional":true}]},{"ID":20180,"SourceStructureID":108327,"TargetStructureID":6155,"Label":"108327-6155 via Conventional from 108328 -> 29777","Type":"Conventional","Directional":true,"Links":[{"SourceID":108328,"TargetID":29777,"Directional":true}]},{"ID":20181,"SourceStructureID":108331,"TargetStructureID":6155,"Label":"108331-6155 via Conventional from 108334 -> 48313","Type":"Conventional","Directional":true,"Links":[{"SourceID":108334,"TargetID":48313,"Directional":true}]},{"ID":20182,"SourceStructureID":108336,"TargetStructureID":6155,"Label":"108336-6155 via Conventional from 108337 -> 48310","Type":"Conventional","Directional":true,"Links":[{"SourceID":108337,"TargetID":48310,"Directional":true}]},{"ID":20183,"SourceStructureID":108357,"TargetStructureID":6155,"Label":"108357-6155 via Conventional from 108359 -> 108358","Type":"Conventional","Directional":true,"Links":[{"SourceID":108359,"TargetID":108358,"Directional":true}]},{"ID":20184,"SourceStructureID":108374,"TargetStructureID":5503,"Label":"108374-5503 via Conventional from 108375 -> 108373","Type":"Conventional","Directional":true,"Links":[{"SourceID":108375,"TargetID":108373,"Directional":true}]},{"ID":20185,"SourceStructureID":108396,"TargetStructureID":5503,"Label":"108396-5503 via Conventional from 108397 -> 108395","Type":"Conventional","Directional":true,"Links":[{"SourceID":108397,"TargetID":108395,"Directional":true}]},{"ID":20186,"SourceStructureID":108398,"TargetStructureID":20136,"Label":"108398-20136 via Conventional from 108402 -> 20139","Type":"Conventional","Directional":true,"Links":[{"SourceID":108402,"TargetID":20139,"Directional":true}]},{"ID":20187,"SourceStructureID":108403,"TargetStructureID":20136,"Label":"108403-20136 via Conventional from 108404 -> 20140","Type":"Conventional","Directional":true,"Links":[{"SourceID":108404,"TargetID":20140,"Directional":true}]},{"ID":20188,"SourceStructureID":108415,"TargetStructureID":5503,"Label":"108415-5503 via Conventional from 108416 -> 108414","Type":"Conventional","Directional":true,"Links":[{"SourceID":108416,"TargetID":108414,"Directional":true}]},{"ID":20189,"SourceStructureID":108418,"TargetStructureID":5503,"Label":"108418-5503 via Conventional from 108419 -> 108406","Type":"Conventional","Directional":true,"Links":[{"SourceID":108419,"TargetID":108406,"Directional":true}]},{"ID":20190,"SourceStructureID":108429,"TargetStructureID":20136,"Label":"108429-20136 via Conventional from 108430 -> 20142","Type":"Conventional","Directional":true,"Links":[{"SourceID":108430,"TargetID":20142,"Directional":true}]},{"ID":20191,"SourceStructureID":108437,"TargetStructureID":5503,"Label":"108437-5503 via Conventional from 108439 -> 108436","Type":"Conventional","Directional":true,"Links":[{"SourceID":108439,"TargetID":108436,"Directional":true}]},{"ID":20192,"SourceStructureID":108442,"TargetStructureID":5503,"Label":"108442-5503 via Conventional from 108443 -> 108441","Type":"Conventional","Directional":true,"Links":[{"SourceID":108443,"TargetID":108441,"Directional":true}]},{"ID":20193,"SourceStructureID":108485,"TargetStructureID":5503,"Label":"108485-5503 via Conventional from 108491 -> 60634","Type":"Conventional","Directional":true,"Links":[{"SourceID":108491,"TargetID":60634,"Directional":true}]},{"ID":20194,"SourceStructureID":108498,"TargetStructureID":5503,"Label":"108498-5503 via Conventional from 108499 -> 108497","Type":"Conventional","Directional":true,"Links":[{"SourceID":108499,"TargetID":108497,"Directional":true}]},{"ID":20195,"SourceStructureID":108522,"TargetStructureID":5503,"Label":"108522-5503 via Conventional from 108567 -> 108463","Type":"Conventional","Directional":true,"Links":[{"SourceID":108567,"TargetID":108463,"Directional":true}]},{"ID":20196,"SourceStructureID":108529,"TargetStructureID":5503,"Label":"108529-5503 via Conventional from 108530 -> 60664","Type":"Conventional","Directional":true,"Links":[{"SourceID":108530,"TargetID":60664,"Directional":true}]},{"ID":20197,"SourceStructureID":108531,"TargetStructureID":5503,"Label":"108531-5503 via Conventional from 108532 -> 60631","Type":"Conventional","Directional":true,"Links":[{"SourceID":108532,"TargetID":60631,"Directional":true}]},{"ID":20198,"SourceStructureID":108533,"TargetStructureID":5503,"Label":"108533-5503 via Conventional from 108535 -> 60630","Type":"Conventional","Directional":true,"Links":[{"SourceID":108535,"TargetID":60630,"Directional":true}]},{"ID":20199,"SourceStructureID":108539,"TargetStructureID":5645,"Label":"108539-5645 via Conventional from 108541 -> 108538","Type":"Conventional","Directional":true,"Links":[{"SourceID":108541,"TargetID":108538,"Directional":true}]},{"ID":20200,"SourceStructureID":108616,"TargetStructureID":6857,"Label":"108616-6857 via Conventional from 108617 -> 7558","Type":"Conventional","Directional":true,"Links":[{"SourceID":108617,"TargetID":7558,"Directional":true}]},{"ID":20201,"SourceStructureID":108701,"TargetStructureID":5503,"Label":"108701-5503 via Conventional from 108702 -> 108700","Type":"Conventional","Directional":true,"Links":[{"SourceID":108702,"TargetID":108700,"Directional":true}]},{"ID":20202,"SourceStructureID":108715,"TargetStructureID":5503,"Label":"108715-5503 via Conventional from 108721 -> 108714","Type":"Conventional","Directional":true,"Links":[{"SourceID":108721,"TargetID":108714,"Directional":true}]},{"ID":20203,"SourceStructureID":108724,"TargetStructureID":5499,"Label":"108724-5499 via Conventional from 108725 -> 105786","Type":"Conventional","Directional":true,"Links":[{"SourceID":108725,"TargetID":105786,"Directional":true}]},{"ID":20204,"SourceStructureID":108730,"TargetStructureID":5499,"Label":"108730-5499 via Conventional from 108733 -> 105742","Type":"Conventional","Directional":true,"Links":[{"SourceID":108733,"TargetID":105742,"Directional":true}]},{"ID":20205,"SourceStructureID":108745,"TargetStructureID":5916,"Label":"108745-5916 via Conventional from 108746 -> 37976","Type":"Conventional","Directional":true,"Links":[{"SourceID":108746,"TargetID":37976,"Directional":true}]},{"ID":20206,"SourceStructureID":108787,"TargetStructureID":5503,"Label":"108787-5503 via Conventional from 108788 -> 36636","Type":"Conventional","Directional":true,"Links":[{"SourceID":108788,"TargetID":36636,"Directional":true}]},{"ID":20207,"SourceStructureID":108799,"TargetStructureID":5503,"Label":"108799-5503 via Conventional from 108815 -> 36640","Type":"Conventional","Directional":true,"Links":[{"SourceID":108815,"TargetID":36640,"Directional":true}]},{"ID":20208,"SourceStructureID":108800,"TargetStructureID":20136,"Label":"108800-20136 via Conventional from 108801 -> 108802","Type":"Conventional","Directional":true,"Links":[{"SourceID":108801,"TargetID":108802,"Directional":true}]},{"ID":20209,"SourceStructureID":108804,"TargetStructureID":20136,"Label":"108804-20136 via Conventional from 108807 -> 108808","Type":"Conventional","Directional":true,"Links":[{"SourceID":108807,"TargetID":108808,"Directional":true}]},{"ID":20210,"SourceStructureID":108814,"TargetStructureID":20136,"Label":"108814-20136 via Conventional from 108816 -> 108817","Type":"Conventional","Directional":true,"Links":[{"SourceID":108816,"TargetID":108817,"Directional":true}]},{"ID":20211,"SourceStructureID":108822,"TargetStructureID":5503,"Label":"108822-5503 via Conventional from 108823 -> 36642","Type":"Conventional","Directional":true,"Links":[{"SourceID":108823,"TargetID":36642,"Directional":true}]},{"ID":20212,"SourceStructureID":108825,"TargetStructureID":20136,"Label":"108825-20136 via Conventional from 108829 -> 108830","Type":"Conventional","Directional":true,"Links":[{"SourceID":108829,"TargetID":108830,"Directional":true}]},{"ID":20213,"SourceStructureID":108865,"TargetStructureID":5503,"Label":"108865-5503 via Conventional from 108868 -> 36643","Type":"Conventional","Directional":true,"Links":[{"SourceID":108868,"TargetID":36643,"Directional":true}]},{"ID":20214,"SourceStructureID":108869,"TargetStructureID":20136,"Label":"108869-20136 via Conventional from 108872 -> 108873","Type":"Conventional","Directional":true,"Links":[{"SourceID":108872,"TargetID":108873,"Directional":true}]},{"ID":20215,"SourceStructureID":108871,"TargetStructureID":5503,"Label":"108871-5503 via Conventional from 108874 -> 36647","Type":"Conventional","Directional":true,"Links":[{"SourceID":108874,"TargetID":36647,"Directional":true}]},{"ID":20216,"SourceStructureID":108932,"TargetStructureID":5503,"Label":"108932-5503 via Conventional from 108934 -> 108931","Type":"Conventional","Directional":true,"Links":[{"SourceID":108934,"TargetID":108931,"Directional":true}]},{"ID":20217,"SourceStructureID":108936,"TargetStructureID":5503,"Label":"108936-5503 via Conventional from 108940 -> 108935","Type":"Conventional","Directional":true,"Links":[{"SourceID":108940,"TargetID":108935,"Directional":true}]},{"ID":20218,"SourceStructureID":108937,"TargetStructureID":20136,"Label":"108937-20136 via Conventional from 108938 -> 108939","Type":"Conventional","Directional":true,"Links":[{"SourceID":108938,"TargetID":108939,"Directional":true}]},{"ID":20219,"SourceStructureID":108941,"TargetStructureID":20136,"Label":"108941-20136 via Conventional from 108942 -> 108943","Type":"Conventional","Directional":true,"Links":[{"SourceID":108942,"TargetID":108943,"Directional":true}]},{"ID":20220,"SourceStructureID":108944,"TargetStructureID":20136,"Label":"108944-20136 via Conventional from 108957 -> 108958","Type":"Conventional","Directional":true,"Links":[{"SourceID":108957,"TargetID":108958,"Directional":true}]},{"ID":20221,"SourceStructureID":108988,"TargetStructureID":20136,"Label":"108988-20136 via Conventional from 108990 -> 45997","Type":"Conventional","Directional":true,"Links":[{"SourceID":108990,"TargetID":45997,"Directional":true}]},{"ID":20222,"SourceStructureID":108993,"TargetStructureID":20136,"Label":"108993-20136 via Conventional from 108995 -> 45999","Type":"Conventional","Directional":true,"Links":[{"SourceID":108995,"TargetID":45999,"Directional":true}]},{"ID":20223,"SourceStructureID":108996,"TargetStructureID":20136,"Label":"108996-20136 via Conventional from 108997 -> 46002","Type":"Conventional","Directional":true,"Links":[{"SourceID":108997,"TargetID":46002,"Directional":true}]},{"ID":20224,"SourceStructureID":109001,"TargetStructureID":20136,"Label":"109001-20136 via Conventional from 109002 -> 46001","Type":"Conventional","Directional":true,"Links":[{"SourceID":109002,"TargetID":46001,"Directional":true}]},{"ID":20225,"SourceStructureID":109004,"TargetStructureID":20136,"Label":"109004-20136 via Conventional from 109005 -> 45998","Type":"Conventional","Directional":true,"Links":[{"SourceID":109005,"TargetID":45998,"Directional":true}]},{"ID":20226,"SourceStructureID":109029,"TargetStructureID":20136,"Label":"109029-20136 via Conventional from 109093 -> 109095","Type":"Conventional","Directional":true,"Links":[{"SourceID":109093,"TargetID":109095,"Directional":true}]},{"ID":20227,"SourceStructureID":109030,"TargetStructureID":20136,"Label":"109030-20136 via Conventional from 109036 -> 20148","Type":"Conventional","Directional":true,"Links":[{"SourceID":109036,"TargetID":20148,"Directional":true}]},{"ID":20228,"SourceStructureID":109039,"TargetStructureID":5916,"Label":"109039-5916 via Conventional from 109041 -> 108930","Type":"Conventional","Directional":true,"Links":[{"SourceID":109041,"TargetID":108930,"Directional":true}]},{"ID":20229,"SourceStructureID":109068,"TargetStructureID":5916,"Label":"109068-5916 via Conventional from 109069 -> 109067","Type":"Conventional","Directional":true,"Links":[{"SourceID":109069,"TargetID":109067,"Directional":true}]},{"ID":20230,"SourceStructureID":109079,"TargetStructureID":5916,"Label":"109079-5916 via Conventional from 109082 -> 109081","Type":"Conventional","Directional":true,"Links":[{"SourceID":109082,"TargetID":109081,"Directional":true}]},{"ID":20231,"SourceStructureID":109097,"TargetStructureID":20136,"Label":"109097-20136 via Conventional from 109099 -> 46009","Type":"Conventional","Directional":true,"Links":[{"SourceID":109099,"TargetID":46009,"Directional":true}]},{"ID":20232,"SourceStructureID":109147,"TargetStructureID":109149,"Label":"109147-109149 via Ribbon Synapse from 109148 -> 109150","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109148,"TargetID":109150,"Directional":true}]},{"ID":20233,"SourceStructureID":109210,"TargetStructureID":20136,"Label":"109210-20136 via Conventional from 109212 -> 46029, 109233 -> 109234","Type":"Conventional","Directional":true,"Links":[{"SourceID":109212,"TargetID":46029,"Directional":true},{"SourceID":109233,"TargetID":109234,"Directional":true}]},{"ID":20234,"SourceStructureID":109216,"TargetStructureID":20136,"Label":"109216-20136 via Conventional from 109217 -> 109219","Type":"Conventional","Directional":true,"Links":[{"SourceID":109217,"TargetID":109219,"Directional":true}]},{"ID":20235,"SourceStructureID":109239,"TargetStructureID":20136,"Label":"109239-20136 via Conventional from 109241 -> 109242","Type":"Conventional","Directional":true,"Links":[{"SourceID":109241,"TargetID":109242,"Directional":true}]},{"ID":20236,"SourceStructureID":109239,"TargetStructureID":38502,"Label":"109239-38502 via Conventional from 109240 -> 38505","Type":"Conventional","Directional":true,"Links":[{"SourceID":109240,"TargetID":38505,"Directional":true}]},{"ID":20237,"SourceStructureID":109245,"TargetStructureID":20136,"Label":"109245-20136 via Conventional from 109246 -> 97821","Type":"Conventional","Directional":true,"Links":[{"SourceID":109246,"TargetID":97821,"Directional":true}]},{"ID":20238,"SourceStructureID":109257,"TargetStructureID":606,"Label":"109257-606 via Conventional from 109258 -> 51584","Type":"Conventional","Directional":true,"Links":[{"SourceID":109258,"TargetID":51584,"Directional":true}]},{"ID":20239,"SourceStructureID":109267,"TargetStructureID":20136,"Label":"109267-20136 via Conventional from 109272 -> 46033","Type":"Conventional","Directional":true,"Links":[{"SourceID":109272,"TargetID":46033,"Directional":true}]},{"ID":20240,"SourceStructureID":109271,"TargetStructureID":20136,"Label":"109271-20136 via Conventional from 109273 -> 46035","Type":"Conventional","Directional":true,"Links":[{"SourceID":109273,"TargetID":46035,"Directional":true}]},{"ID":20241,"SourceStructureID":109277,"TargetStructureID":5561,"Label":"109277-5561 via Conventional from 109278 -> 97839","Type":"Conventional","Directional":true,"Links":[{"SourceID":109278,"TargetID":97839,"Directional":true}]},{"ID":20242,"SourceStructureID":109308,"TargetStructureID":5916,"Label":"109308-5916 via Conventional from 109311 -> 109310","Type":"Conventional","Directional":true,"Links":[{"SourceID":109311,"TargetID":109310,"Directional":true}]},{"ID":20243,"SourceStructureID":109341,"TargetStructureID":20136,"Label":"109341-20136 via Conventional from 109343 -> 109342","Type":"Conventional","Directional":true,"Links":[{"SourceID":109343,"TargetID":109342,"Directional":true}]},{"ID":20244,"SourceStructureID":109419,"TargetStructureID":20136,"Label":"109419-20136 via Conventional from 109434 -> 109433","Type":"Conventional","Directional":true,"Links":[{"SourceID":109434,"TargetID":109433,"Directional":true}]},{"ID":20245,"SourceStructureID":109450,"TargetStructureID":20136,"Label":"109450-20136 via Conventional from 109451 -> 46023","Type":"Conventional","Directional":true,"Links":[{"SourceID":109451,"TargetID":46023,"Directional":true}]},{"ID":20246,"SourceStructureID":109458,"TargetStructureID":5517,"Label":"109458-5517 via Conventional from 109460 -> 49453","Type":"Conventional","Directional":true,"Links":[{"SourceID":109460,"TargetID":49453,"Directional":true}]},{"ID":20247,"SourceStructureID":109483,"TargetStructureID":20136,"Label":"109483-20136 via Conventional from 109484 -> 109485","Type":"Conventional","Directional":true,"Links":[{"SourceID":109484,"TargetID":109485,"Directional":true}]},{"ID":20248,"SourceStructureID":109488,"TargetStructureID":20136,"Label":"109488-20136 via Conventional from 109495 -> 46022","Type":"Conventional","Directional":true,"Links":[{"SourceID":109495,"TargetID":46022,"Directional":true}]},{"ID":20249,"SourceStructureID":109497,"TargetStructureID":20136,"Label":"109497-20136 via Conventional from 109498 -> 109499","Type":"Conventional","Directional":true,"Links":[{"SourceID":109498,"TargetID":109499,"Directional":true}]},{"ID":20250,"SourceStructureID":109534,"TargetStructureID":20136,"Label":"109534-20136 via Conventional from 109537 -> 46019","Type":"Conventional","Directional":true,"Links":[{"SourceID":109537,"TargetID":46019,"Directional":true}]},{"ID":20251,"SourceStructureID":109540,"TargetStructureID":20136,"Label":"109540-20136 via Conventional from 109542 -> 109543","Type":"Conventional","Directional":true,"Links":[{"SourceID":109542,"TargetID":109543,"Directional":true}]},{"ID":20252,"SourceStructureID":109559,"TargetStructureID":20136,"Label":"109559-20136 via Conventional from 109560 -> 46018","Type":"Conventional","Directional":true,"Links":[{"SourceID":109560,"TargetID":46018,"Directional":true}]},{"ID":20253,"SourceStructureID":109565,"TargetStructureID":20136,"Label":"109565-20136 via Conventional from 109571 -> 109572","Type":"Conventional","Directional":true,"Links":[{"SourceID":109571,"TargetID":109572,"Directional":true}]},{"ID":20254,"SourceStructureID":109565,"TargetStructureID":109559,"Label":"109565-109559 via Ribbon Synapse from 109652 -> 109659","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109652,"TargetID":109659,"Directional":true}]},{"ID":20255,"SourceStructureID":109565,"TargetStructureID":109565,"Label":"109565-109565 via Ribbon Synapse from 109652 -> 109653","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109652,"TargetID":109653,"Directional":true}]},{"ID":20256,"SourceStructureID":109565,"TargetStructureID":109597,"Label":"109565-109597 via Ribbon Synapse from 109652 -> 109658","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":109652,"TargetID":109658,"Directional":true}]},{"ID":20257,"SourceStructureID":109574,"TargetStructureID":20136,"Label":"109574-20136 via Conventional from 109613 -> 109614","Type":"Conventional","Directional":true,"Links":[{"SourceID":109613,"TargetID":109614,"Directional":true}]},{"ID":20258,"SourceStructureID":109597,"TargetStructureID":20136,"Label":"109597-20136 via Conventional from 109598 -> 109605","Type":"Conventional","Directional":true,"Links":[{"SourceID":109598,"TargetID":109605,"Directional":true}]},{"ID":20259,"SourceStructureID":109608,"TargetStructureID":20136,"Label":"109608-20136 via Conventional from 109670 -> 109671","Type":"Conventional","Directional":true,"Links":[{"SourceID":109670,"TargetID":109671,"Directional":true}]},{"ID":20260,"SourceStructureID":109608,"TargetStructureID":109575,"Label":"109608-109575 via Conventional from 109610 -> 109612","Type":"Conventional","Directional":true,"Links":[{"SourceID":109610,"TargetID":109612,"Directional":true}]},{"ID":20261,"SourceStructureID":109660,"TargetStructureID":5517,"Label":"109660-5517 via Conventional from 109663 -> 22922","Type":"Conventional","Directional":true,"Links":[{"SourceID":109663,"TargetID":22922,"Directional":true}]},{"ID":20262,"SourceStructureID":109678,"TargetStructureID":5503,"Label":"109678-5503 via Conventional from 109680 -> 109677","Type":"Conventional","Directional":true,"Links":[{"SourceID":109680,"TargetID":109677,"Directional":true}]},{"ID":20263,"SourceStructureID":109681,"TargetStructureID":5503,"Label":"109681-5503 via Conventional from 109685 -> 60692","Type":"Conventional","Directional":true,"Links":[{"SourceID":109685,"TargetID":60692,"Directional":true}]},{"ID":20264,"SourceStructureID":109696,"TargetStructureID":5916,"Label":"109696-5916 via Conventional from 109699 -> 109698","Type":"Conventional","Directional":true,"Links":[{"SourceID":109699,"TargetID":109698,"Directional":true}]},{"ID":20265,"SourceStructureID":109710,"TargetStructureID":5503,"Label":"109710-5503 via Conventional from 109711 -> 109709","Type":"Conventional","Directional":true,"Links":[{"SourceID":109711,"TargetID":109709,"Directional":true}]},{"ID":20266,"SourceStructureID":109730,"TargetStructureID":5503,"Label":"109730-5503 via Conventional from 109739 -> 60693","Type":"Conventional","Directional":true,"Links":[{"SourceID":109739,"TargetID":60693,"Directional":true}]},{"ID":20267,"SourceStructureID":109742,"TargetStructureID":5503,"Label":"109742-5503 via Conventional from 109743 -> 60694","Type":"Conventional","Directional":true,"Links":[{"SourceID":109743,"TargetID":60694,"Directional":true}]},{"ID":20268,"SourceStructureID":109750,"TargetStructureID":5503,"Label":"109750-5503 via Conventional from 109757 -> 109748, 110027 -> 110026","Type":"Conventional","Directional":true,"Links":[{"SourceID":109757,"TargetID":109748,"Directional":true},{"SourceID":110027,"TargetID":110026,"Directional":true}]},{"ID":20269,"SourceStructureID":109762,"TargetStructureID":109305,"Label":"109762-109305 via Conventional from 109763 -> 109764","Type":"Conventional","Directional":true,"Links":[{"SourceID":109763,"TargetID":109764,"Directional":true}]},{"ID":20270,"SourceStructureID":109778,"TargetStructureID":20136,"Label":"109778-20136 via Conventional from 109780 -> 109360","Type":"Conventional","Directional":true,"Links":[{"SourceID":109780,"TargetID":109360,"Directional":true}]},{"ID":20271,"SourceStructureID":109781,"TargetStructureID":20136,"Label":"109781-20136 via Conventional from 109782 -> 109783","Type":"Conventional","Directional":true,"Links":[{"SourceID":109782,"TargetID":109783,"Directional":true}]},{"ID":20272,"SourceStructureID":109788,"TargetStructureID":20136,"Label":"109788-20136 via Conventional from 109790 -> 109791","Type":"Conventional","Directional":true,"Links":[{"SourceID":109790,"TargetID":109791,"Directional":true}]},{"ID":20273,"SourceStructureID":109793,"TargetStructureID":108831,"Label":"109793-108831 via Conventional from 109794 -> 109795","Type":"Conventional","Directional":true,"Links":[{"SourceID":109794,"TargetID":109795,"Directional":true}]},{"ID":20274,"SourceStructureID":109802,"TargetStructureID":20136,"Label":"109802-20136 via Conventional from 109803 -> 109374, 109864 -> 29152","Type":"Conventional","Directional":true,"Links":[{"SourceID":109803,"TargetID":109374,"Directional":true},{"SourceID":109864,"TargetID":29152,"Directional":true}]},{"ID":20275,"SourceStructureID":109804,"TargetStructureID":5503,"Label":"109804-5503 via Conventional from 109806 -> 60666","Type":"Conventional","Directional":true,"Links":[{"SourceID":109806,"TargetID":60666,"Directional":true}]},{"ID":20276,"SourceStructureID":109809,"TargetStructureID":5503,"Label":"109809-5503 via Conventional from 109811 -> 60671, 109849 -> 109840","Type":"Conventional","Directional":true,"Links":[{"SourceID":109811,"TargetID":60671,"Directional":true},{"SourceID":109849,"TargetID":109840,"Directional":true}]},{"ID":20277,"SourceStructureID":109814,"TargetStructureID":5503,"Label":"109814-5503 via Conventional from 109817 -> 60670","Type":"Conventional","Directional":true,"Links":[{"SourceID":109817,"TargetID":60670,"Directional":true}]},{"ID":20278,"SourceStructureID":109825,"TargetStructureID":5503,"Label":"109825-5503 via Conventional from 109828 -> 60668","Type":"Conventional","Directional":true,"Links":[{"SourceID":109828,"TargetID":60668,"Directional":true}]},{"ID":20279,"SourceStructureID":109831,"TargetStructureID":20136,"Label":"109831-20136 via Conventional from 109832 -> 109833","Type":"Conventional","Directional":true,"Links":[{"SourceID":109832,"TargetID":109833,"Directional":true}]},{"ID":20280,"SourceStructureID":109834,"TargetStructureID":5503,"Label":"109834-5503 via Conventional from 109836 -> 60669","Type":"Conventional","Directional":true,"Links":[{"SourceID":109836,"TargetID":60669,"Directional":true}]},{"ID":20281,"SourceStructureID":109881,"TargetStructureID":20136,"Label":"109881-20136 via Conventional from 109882 -> 109883","Type":"Conventional","Directional":true,"Links":[{"SourceID":109882,"TargetID":109883,"Directional":true}]},{"ID":20282,"SourceStructureID":109887,"TargetStructureID":20136,"Label":"109887-20136 via Conventional from 109892 -> 46014","Type":"Conventional","Directional":true,"Links":[{"SourceID":109892,"TargetID":46014,"Directional":true}]},{"ID":20283,"SourceStructureID":109893,"TargetStructureID":5503,"Label":"109893-5503 via Conventional from 109918 -> 109916","Type":"Conventional","Directional":true,"Links":[{"SourceID":109918,"TargetID":109916,"Directional":true}]},{"ID":20284,"SourceStructureID":109900,"TargetStructureID":20136,"Label":"109900-20136 via Conventional from 109901 -> 46015","Type":"Conventional","Directional":true,"Links":[{"SourceID":109901,"TargetID":46015,"Directional":true}]},{"ID":20285,"SourceStructureID":109913,"TargetStructureID":5503,"Label":"109913-5503 via Conventional from 109915 -> 60686","Type":"Conventional","Directional":true,"Links":[{"SourceID":109915,"TargetID":60686,"Directional":true}]},{"ID":20286,"SourceStructureID":109922,"TargetStructureID":5503,"Label":"109922-5503 via Conventional from 109923 -> 60676","Type":"Conventional","Directional":true,"Links":[{"SourceID":109923,"TargetID":60676,"Directional":true}]},{"ID":20287,"SourceStructureID":109924,"TargetStructureID":5503,"Label":"109924-5503 via Conventional from 109925 -> 60681","Type":"Conventional","Directional":true,"Links":[{"SourceID":109925,"TargetID":60681,"Directional":true}]},{"ID":20288,"SourceStructureID":109926,"TargetStructureID":5503,"Label":"109926-5503 via Conventional from 109928 -> 60677","Type":"Conventional","Directional":true,"Links":[{"SourceID":109928,"TargetID":60677,"Directional":true}]},{"ID":20289,"SourceStructureID":109926,"TargetStructureID":5916,"Label":"109926-5916 via Conventional from 109927 -> 109633","Type":"Conventional","Directional":true,"Links":[{"SourceID":109927,"TargetID":109633,"Directional":true}]},{"ID":20290,"SourceStructureID":109932,"TargetStructureID":5503,"Label":"109932-5503 via Conventional from 109933 -> 60685","Type":"Conventional","Directional":true,"Links":[{"SourceID":109933,"TargetID":60685,"Directional":true}]},{"ID":20291,"SourceStructureID":109932,"TargetStructureID":5916,"Label":"109932-5916 via Conventional from 109934 -> 109632","Type":"Conventional","Directional":true,"Links":[{"SourceID":109934,"TargetID":109632,"Directional":true}]},{"ID":20292,"SourceStructureID":109936,"TargetStructureID":5503,"Label":"109936-5503 via Conventional from 109937 -> 109935","Type":"Conventional","Directional":true,"Links":[{"SourceID":109937,"TargetID":109935,"Directional":true}]},{"ID":20293,"SourceStructureID":109941,"TargetStructureID":5503,"Label":"109941-5503 via Conventional from 109942 -> 60680","Type":"Conventional","Directional":true,"Links":[{"SourceID":109942,"TargetID":60680,"Directional":true}]},{"ID":20294,"SourceStructureID":109943,"TargetStructureID":5503,"Label":"109943-5503 via Conventional from 109944 -> 60679","Type":"Conventional","Directional":true,"Links":[{"SourceID":109944,"TargetID":60679,"Directional":true}]},{"ID":20295,"SourceStructureID":109949,"TargetStructureID":5503,"Label":"109949-5503 via Conventional from 109950 -> 109948","Type":"Conventional","Directional":true,"Links":[{"SourceID":109950,"TargetID":109948,"Directional":true}]},{"ID":20296,"SourceStructureID":109949,"TargetStructureID":109952,"Label":"109949-109952 via Conventional from 109955 -> 109953","Type":"Conventional","Directional":true,"Links":[{"SourceID":109955,"TargetID":109953,"Directional":true}]},{"ID":20297,"SourceStructureID":109956,"TargetStructureID":5503,"Label":"109956-5503 via Conventional from 109957 -> 36646","Type":"Conventional","Directional":true,"Links":[{"SourceID":109957,"TargetID":36646,"Directional":true}]},{"ID":20298,"SourceStructureID":109980,"TargetStructureID":5503,"Label":"109980-5503 via Conventional from 109981 -> 109979","Type":"Conventional","Directional":true,"Links":[{"SourceID":109981,"TargetID":109979,"Directional":true}]},{"ID":20299,"SourceStructureID":109986,"TargetStructureID":109980,"Label":"109986-109980 via Conventional from 109988 -> 109989","Type":"Conventional","Directional":true,"Links":[{"SourceID":109988,"TargetID":109989,"Directional":true}]},{"ID":20300,"SourceStructureID":109991,"TargetStructureID":5503,"Label":"109991-5503 via Conventional from 114842 -> 109992","Type":"Conventional","Directional":true,"Links":[{"SourceID":114842,"TargetID":109992,"Directional":true}]},{"ID":20301,"SourceStructureID":110010,"TargetStructureID":5503,"Label":"110010-5503 via Conventional from 110011 -> 110009","Type":"Conventional","Directional":true,"Links":[{"SourceID":110011,"TargetID":110009,"Directional":true}]},{"ID":20302,"SourceStructureID":110022,"TargetStructureID":5503,"Label":"110022-5503 via Conventional from 110023 -> 61133","Type":"Conventional","Directional":true,"Links":[{"SourceID":110023,"TargetID":61133,"Directional":true}]},{"ID":20303,"SourceStructureID":110024,"TargetStructureID":5503,"Label":"110024-5503 via Conventional from 110025 -> 61132","Type":"Conventional","Directional":true,"Links":[{"SourceID":110025,"TargetID":61132,"Directional":true}]},{"ID":20304,"SourceStructureID":110035,"TargetStructureID":5503,"Label":"110035-5503 via Conventional from 110036 -> 110034","Type":"Conventional","Directional":true,"Links":[{"SourceID":110036,"TargetID":110034,"Directional":true}]},{"ID":20305,"SourceStructureID":110037,"TargetStructureID":5503,"Label":"110037-5503 via Conventional from 110038 -> 110033","Type":"Conventional","Directional":true,"Links":[{"SourceID":110038,"TargetID":110033,"Directional":true}]},{"ID":20306,"SourceStructureID":110040,"TargetStructureID":5503,"Label":"110040-5503 via Conventional from 110041 -> 110039","Type":"Conventional","Directional":true,"Links":[{"SourceID":110041,"TargetID":110039,"Directional":true}]},{"ID":20307,"SourceStructureID":110054,"TargetStructureID":5503,"Label":"110054-5503 via Conventional from 110055 -> 110053","Type":"Conventional","Directional":true,"Links":[{"SourceID":110055,"TargetID":110053,"Directional":true}]},{"ID":20308,"SourceStructureID":110064,"TargetStructureID":5503,"Label":"110064-5503 via Conventional from 110291 -> 60695","Type":"Conventional","Directional":true,"Links":[{"SourceID":110291,"TargetID":60695,"Directional":true}]},{"ID":20309,"SourceStructureID":110066,"TargetStructureID":5503,"Label":"110066-5503 via Conventional from 110067 -> 36582","Type":"Conventional","Directional":true,"Links":[{"SourceID":110067,"TargetID":36582,"Directional":true}]},{"ID":20310,"SourceStructureID":110069,"TargetStructureID":5503,"Label":"110069-5503 via Conventional from 110070 -> 110068","Type":"Conventional","Directional":true,"Links":[{"SourceID":110070,"TargetID":110068,"Directional":true}]},{"ID":20311,"SourceStructureID":110072,"TargetStructureID":5503,"Label":"110072-5503 via Conventional from 110073 -> 36589","Type":"Conventional","Directional":true,"Links":[{"SourceID":110073,"TargetID":36589,"Directional":true}]},{"ID":20312,"SourceStructureID":110081,"TargetStructureID":5501,"Label":"110081-5501 via Conventional from 110083 -> 36586","Type":"Conventional","Directional":true,"Links":[{"SourceID":110083,"TargetID":36586,"Directional":true}]},{"ID":20313,"SourceStructureID":110081,"TargetStructureID":5503,"Label":"110081-5503 via Conventional from 110082 -> 110080","Type":"Conventional","Directional":true,"Links":[{"SourceID":110082,"TargetID":110080,"Directional":true}]},{"ID":20314,"SourceStructureID":110095,"TargetStructureID":5503,"Label":"110095-5503 via Conventional from 110096 -> 110094","Type":"Conventional","Directional":true,"Links":[{"SourceID":110096,"TargetID":110094,"Directional":true}]},{"ID":20315,"SourceStructureID":110099,"TargetStructureID":5503,"Label":"110099-5503 via Conventional from 110101 -> 110102","Type":"Conventional","Directional":true,"Links":[{"SourceID":110101,"TargetID":110102,"Directional":true}]},{"ID":20316,"SourceStructureID":110104,"TargetStructureID":5503,"Label":"110104-5503 via Conventional from 110105 -> 110103","Type":"Conventional","Directional":true,"Links":[{"SourceID":110105,"TargetID":110103,"Directional":true}]},{"ID":20317,"SourceStructureID":110107,"TargetStructureID":5503,"Label":"110107-5503 via Conventional from 110108 -> 110106","Type":"Conventional","Directional":true,"Links":[{"SourceID":110108,"TargetID":110106,"Directional":true}]},{"ID":20318,"SourceStructureID":110112,"TargetStructureID":5503,"Label":"110112-5503 via Conventional from 110118 -> 110119","Type":"Conventional","Directional":true,"Links":[{"SourceID":110118,"TargetID":110119,"Directional":true}]},{"ID":20319,"SourceStructureID":110115,"TargetStructureID":5503,"Label":"110115-5503 via Conventional from 110116 -> 110114","Type":"Conventional","Directional":true,"Links":[{"SourceID":110116,"TargetID":110114,"Directional":true}]},{"ID":20320,"SourceStructureID":110121,"TargetStructureID":5503,"Label":"110121-5503 via Conventional from 110122 -> 110120","Type":"Conventional","Directional":true,"Links":[{"SourceID":110122,"TargetID":110120,"Directional":true}]},{"ID":20321,"SourceStructureID":110124,"TargetStructureID":5503,"Label":"110124-5503 via Conventional from 110125 -> 110123","Type":"Conventional","Directional":true,"Links":[{"SourceID":110125,"TargetID":110123,"Directional":true}]},{"ID":20322,"SourceStructureID":110127,"TargetStructureID":5503,"Label":"110127-5503 via Conventional from 110128 -> 110126","Type":"Conventional","Directional":true,"Links":[{"SourceID":110128,"TargetID":110126,"Directional":true}]},{"ID":20323,"SourceStructureID":110134,"TargetStructureID":5503,"Label":"110134-5503 via Conventional from 110135 -> 110133","Type":"Conventional","Directional":true,"Links":[{"SourceID":110135,"TargetID":110133,"Directional":true}]},{"ID":20324,"SourceStructureID":110137,"TargetStructureID":5503,"Label":"110137-5503 via Conventional from 110138 -> 110136","Type":"Conventional","Directional":true,"Links":[{"SourceID":110138,"TargetID":110136,"Directional":true}]},{"ID":20325,"SourceStructureID":110140,"TargetStructureID":5503,"Label":"110140-5503 via Conventional from 110141 -> 110139","Type":"Conventional","Directional":true,"Links":[{"SourceID":110141,"TargetID":110139,"Directional":true}]},{"ID":20326,"SourceStructureID":110151,"TargetStructureID":5503,"Label":"110151-5503 via Conventional from 110152 -> 110150","Type":"Conventional","Directional":true,"Links":[{"SourceID":110152,"TargetID":110150,"Directional":true}]},{"ID":20327,"SourceStructureID":110155,"TargetStructureID":5503,"Label":"110155-5503 via Conventional from 110156 -> 110154","Type":"Conventional","Directional":true,"Links":[{"SourceID":110156,"TargetID":110154,"Directional":true}]},{"ID":20328,"SourceStructureID":110169,"TargetStructureID":5503,"Label":"110169-5503 via Conventional from 110171 -> 110168","Type":"Conventional","Directional":true,"Links":[{"SourceID":110171,"TargetID":110168,"Directional":true}]},{"ID":20329,"SourceStructureID":110173,"TargetStructureID":20136,"Label":"110173-20136 via Conventional from 110180 -> 110184","Type":"Conventional","Directional":true,"Links":[{"SourceID":110180,"TargetID":110184,"Directional":true}]},{"ID":20330,"SourceStructureID":110175,"TargetStructureID":5503,"Label":"110175-5503 via Conventional from 110178 -> 110174","Type":"Conventional","Directional":true,"Links":[{"SourceID":110178,"TargetID":110174,"Directional":true}]},{"ID":20331,"SourceStructureID":110181,"TargetStructureID":5503,"Label":"110181-5503 via Conventional from 110183 -> 110172","Type":"Conventional","Directional":true,"Links":[{"SourceID":110183,"TargetID":110172,"Directional":true}]},{"ID":20332,"SourceStructureID":110233,"TargetStructureID":20136,"Label":"110233-20136 via Conventional from 110234 -> 110235","Type":"Conventional","Directional":true,"Links":[{"SourceID":110234,"TargetID":110235,"Directional":true}]},{"ID":20333,"SourceStructureID":110259,"TargetStructureID":5503,"Label":"110259-5503 via Conventional from 110261 -> 110258","Type":"Conventional","Directional":true,"Links":[{"SourceID":110261,"TargetID":110258,"Directional":true}]},{"ID":20334,"SourceStructureID":110271,"TargetStructureID":20136,"Label":"110271-20136 via Conventional from 110283 -> 110284","Type":"Conventional","Directional":true,"Links":[{"SourceID":110283,"TargetID":110284,"Directional":true}]},{"ID":20335,"SourceStructureID":110277,"TargetStructureID":5503,"Label":"110277-5503 via Conventional from 110278 -> 110276","Type":"Conventional","Directional":true,"Links":[{"SourceID":110278,"TargetID":110276,"Directional":true}]},{"ID":20336,"SourceStructureID":110307,"TargetStructureID":5503,"Label":"110307-5503 via Conventional from 110308 -> 20085","Type":"Conventional","Directional":true,"Links":[{"SourceID":110308,"TargetID":20085,"Directional":true}]},{"ID":20337,"SourceStructureID":110312,"TargetStructureID":909,"Label":"110312-909 via Conventional from 130937 -> 130936","Type":"Conventional","Directional":true,"Links":[{"SourceID":130937,"TargetID":130936,"Directional":true}]},{"ID":20338,"SourceStructureID":110312,"TargetStructureID":20136,"Label":"110312-20136 via Conventional from 110324 -> 110325","Type":"Conventional","Directional":true,"Links":[{"SourceID":110324,"TargetID":110325,"Directional":true}]},{"ID":20339,"SourceStructureID":110313,"TargetStructureID":5503,"Label":"110313-5503 via Conventional from 110314 -> 20089","Type":"Conventional","Directional":true,"Links":[{"SourceID":110314,"TargetID":20089,"Directional":true}]},{"ID":20340,"SourceStructureID":110316,"TargetStructureID":20136,"Label":"110316-20136 via Conventional from 110322 -> 110323","Type":"Conventional","Directional":true,"Links":[{"SourceID":110322,"TargetID":110323,"Directional":true}]},{"ID":20341,"SourceStructureID":110331,"TargetStructureID":20136,"Label":"110331-20136 via Conventional from 110332 -> 110334","Type":"Conventional","Directional":true,"Links":[{"SourceID":110332,"TargetID":110334,"Directional":true}]},{"ID":20342,"SourceStructureID":110333,"TargetStructureID":5503,"Label":"110333-5503 via Conventional from 110337 -> 60702","Type":"Conventional","Directional":true,"Links":[{"SourceID":110337,"TargetID":60702,"Directional":true}]},{"ID":20343,"SourceStructureID":110356,"TargetStructureID":20136,"Label":"110356-20136 via Conventional from 110361 -> 110362","Type":"Conventional","Directional":true,"Links":[{"SourceID":110361,"TargetID":110362,"Directional":true}]},{"ID":20344,"SourceStructureID":110374,"TargetStructureID":20136,"Label":"110374-20136 via Conventional from 110375 -> 110382","Type":"Conventional","Directional":true,"Links":[{"SourceID":110375,"TargetID":110382,"Directional":true}]},{"ID":20345,"SourceStructureID":110378,"TargetStructureID":20136,"Label":"110378-20136 via Conventional from 110383 -> 110384","Type":"Conventional","Directional":true,"Links":[{"SourceID":110383,"TargetID":110384,"Directional":true}]},{"ID":20346,"SourceStructureID":110379,"TargetStructureID":5503,"Label":"110379-5503 via Conventional from 110380 -> 60701","Type":"Conventional","Directional":true,"Links":[{"SourceID":110380,"TargetID":60701,"Directional":true}]},{"ID":20347,"SourceStructureID":110381,"TargetStructureID":5503,"Label":"110381-5503 via Conventional from 110420 -> 60700","Type":"Conventional","Directional":true,"Links":[{"SourceID":110420,"TargetID":60700,"Directional":true}]},{"ID":20348,"SourceStructureID":110394,"TargetStructureID":20136,"Label":"110394-20136 via Conventional from 110395 -> 110396","Type":"Conventional","Directional":true,"Links":[{"SourceID":110395,"TargetID":110396,"Directional":true}]},{"ID":20349,"SourceStructureID":110422,"TargetStructureID":5503,"Label":"110422-5503 via Conventional from 110423 -> 110421","Type":"Conventional","Directional":true,"Links":[{"SourceID":110423,"TargetID":110421,"Directional":true}]},{"ID":20350,"SourceStructureID":110429,"TargetStructureID":20136,"Label":"110429-20136 via Conventional from 110431 -> 110432","Type":"Conventional","Directional":true,"Links":[{"SourceID":110431,"TargetID":110432,"Directional":true}]},{"ID":20351,"SourceStructureID":110437,"TargetStructureID":5503,"Label":"110437-5503 via Conventional from 110439 -> 110440","Type":"Conventional","Directional":true,"Links":[{"SourceID":110439,"TargetID":110440,"Directional":true}]},{"ID":20352,"SourceStructureID":110441,"TargetStructureID":5503,"Label":"110441-5503 via Conventional from 110442 -> 52807","Type":"Conventional","Directional":true,"Links":[{"SourceID":110442,"TargetID":52807,"Directional":true}]},{"ID":20353,"SourceStructureID":110451,"TargetStructureID":5503,"Label":"110451-5503 via Conventional from 110452 -> 110450","Type":"Conventional","Directional":true,"Links":[{"SourceID":110452,"TargetID":110450,"Directional":true}]},{"ID":20354,"SourceStructureID":110466,"TargetStructureID":5501,"Label":"110466-5501 via Conventional from 110467 -> 36561","Type":"Conventional","Directional":true,"Links":[{"SourceID":110467,"TargetID":36561,"Directional":true}]},{"ID":20355,"SourceStructureID":110472,"TargetStructureID":5503,"Label":"110472-5503 via Conventional from 110473 -> 110471","Type":"Conventional","Directional":true,"Links":[{"SourceID":110473,"TargetID":110471,"Directional":true}]},{"ID":20356,"SourceStructureID":110475,"TargetStructureID":5503,"Label":"110475-5503 via Conventional from 110476 -> 110474","Type":"Conventional","Directional":true,"Links":[{"SourceID":110476,"TargetID":110474,"Directional":true}]},{"ID":20357,"SourceStructureID":110484,"TargetStructureID":5503,"Label":"110484-5503 via Conventional from 110485 -> 110483","Type":"Conventional","Directional":true,"Links":[{"SourceID":110485,"TargetID":110483,"Directional":true}]},{"ID":20358,"SourceStructureID":110493,"TargetStructureID":6120,"Label":"110493-6120 via Conventional from 110494 -> 37230","Type":"Conventional","Directional":true,"Links":[{"SourceID":110494,"TargetID":37230,"Directional":true}]},{"ID":20359,"SourceStructureID":110496,"TargetStructureID":6120,"Label":"110496-6120 via Conventional from 110498 -> 37232","Type":"Conventional","Directional":true,"Links":[{"SourceID":110498,"TargetID":37232,"Directional":true}]},{"ID":20360,"SourceStructureID":110516,"TargetStructureID":6120,"Label":"110516-6120 via Conventional from 111665 -> 111664","Type":"Conventional","Directional":true,"Links":[{"SourceID":111665,"TargetID":111664,"Directional":true}]},{"ID":20361,"SourceStructureID":110521,"TargetStructureID":6120,"Label":"110521-6120 via Conventional from 110522 -> 37241","Type":"Conventional","Directional":true,"Links":[{"SourceID":110522,"TargetID":37241,"Directional":true}]},{"ID":20362,"SourceStructureID":110525,"TargetStructureID":6120,"Label":"110525-6120 via Conventional from 110527 -> 110524","Type":"Conventional","Directional":true,"Links":[{"SourceID":110527,"TargetID":110524,"Directional":true}]},{"ID":20363,"SourceStructureID":110544,"TargetStructureID":6120,"Label":"110544-6120 via Conventional from 110545 -> 110530","Type":"Conventional","Directional":true,"Links":[{"SourceID":110545,"TargetID":110530,"Directional":true}]},{"ID":20364,"SourceStructureID":110554,"TargetStructureID":6120,"Label":"110554-6120 via Conventional from 110555 -> 110550","Type":"Conventional","Directional":true,"Links":[{"SourceID":110555,"TargetID":110550,"Directional":true}]},{"ID":20365,"SourceStructureID":110559,"TargetStructureID":6120,"Label":"110559-6120 via Conventional from 110560 -> 110552","Type":"Conventional","Directional":true,"Links":[{"SourceID":110560,"TargetID":110552,"Directional":true}]},{"ID":20366,"SourceStructureID":110562,"TargetStructureID":6120,"Label":"110562-6120 via Conventional from 110563 -> 110561","Type":"Conventional","Directional":true,"Links":[{"SourceID":110563,"TargetID":110561,"Directional":true}]},{"ID":20367,"SourceStructureID":110580,"TargetStructureID":6120,"Label":"110580-6120 via Conventional from 110582 -> 37249","Type":"Conventional","Directional":true,"Links":[{"SourceID":110582,"TargetID":37249,"Directional":true}]},{"ID":20368,"SourceStructureID":110586,"TargetStructureID":110593,"Label":"110586-110593 via Conventional from 110588 -> 110594","Type":"Conventional","Directional":true,"Links":[{"SourceID":110588,"TargetID":110594,"Directional":true}]},{"ID":20369,"SourceStructureID":110600,"TargetStructureID":6120,"Label":"110600-6120 via Conventional from 110601 -> 37252","Type":"Conventional","Directional":true,"Links":[{"SourceID":110601,"TargetID":37252,"Directional":true}]},{"ID":20370,"SourceStructureID":110610,"TargetStructureID":6120,"Label":"110610-6120 via Conventional from 110611 -> 110609","Type":"Conventional","Directional":true,"Links":[{"SourceID":110611,"TargetID":110609,"Directional":true}]},{"ID":20371,"SourceStructureID":110617,"TargetStructureID":6120,"Label":"110617-6120 via Conventional from 110618 -> 110616","Type":"Conventional","Directional":true,"Links":[{"SourceID":110618,"TargetID":110616,"Directional":true}]},{"ID":20372,"SourceStructureID":110622,"TargetStructureID":6120,"Label":"110622-6120 via Conventional from 110625 -> 110620","Type":"Conventional","Directional":true,"Links":[{"SourceID":110625,"TargetID":110620,"Directional":true}]},{"ID":20373,"SourceStructureID":110623,"TargetStructureID":6120,"Label":"110623-6120 via Conventional from 110624 -> 110621","Type":"Conventional","Directional":true,"Links":[{"SourceID":110624,"TargetID":110621,"Directional":true}]},{"ID":20374,"SourceStructureID":110630,"TargetStructureID":6120,"Label":"110630-6120 via Conventional from 110631 -> 110629","Type":"Conventional","Directional":true,"Links":[{"SourceID":110631,"TargetID":110629,"Directional":true}]},{"ID":20375,"SourceStructureID":110638,"TargetStructureID":6120,"Label":"110638-6120 via Conventional from 110640 -> 110637","Type":"Conventional","Directional":true,"Links":[{"SourceID":110640,"TargetID":110637,"Directional":true}]},{"ID":20376,"SourceStructureID":110646,"TargetStructureID":6120,"Label":"110646-6120 via Conventional from 110647 -> 110636","Type":"Conventional","Directional":true,"Links":[{"SourceID":110647,"TargetID":110636,"Directional":true}]},{"ID":20377,"SourceStructureID":110648,"TargetStructureID":5531,"Label":"110648-5531 via Conventional from 136318 -> 136317","Type":"Conventional","Directional":true,"Links":[{"SourceID":136318,"TargetID":136317,"Directional":true}]},{"ID":20378,"SourceStructureID":110652,"TargetStructureID":5531,"Label":"110652-5531 via Conventional from 110653 -> 110654","Type":"Conventional","Directional":true,"Links":[{"SourceID":110653,"TargetID":110654,"Directional":true}]},{"ID":20379,"SourceStructureID":110668,"TargetStructureID":5531,"Label":"110668-5531 via Conventional from 110669 -> 110670","Type":"Conventional","Directional":true,"Links":[{"SourceID":110669,"TargetID":110670,"Directional":true}]},{"ID":20380,"SourceStructureID":110686,"TargetStructureID":5531,"Label":"110686-5531 via Conventional from 110687 -> 110688","Type":"Conventional","Directional":true,"Links":[{"SourceID":110687,"TargetID":110688,"Directional":true}]},{"ID":20381,"SourceStructureID":110703,"TargetStructureID":5531,"Label":"110703-5531 via Conventional from 110704 -> 110705","Type":"Conventional","Directional":true,"Links":[{"SourceID":110704,"TargetID":110705,"Directional":true}]},{"ID":20382,"SourceStructureID":110709,"TargetStructureID":5531,"Label":"110709-5531 via Conventional from 110710 -> 110711","Type":"Conventional","Directional":true,"Links":[{"SourceID":110710,"TargetID":110711,"Directional":true}]},{"ID":20383,"SourceStructureID":110720,"TargetStructureID":6120,"Label":"110720-6120 via Conventional from 110721 -> 40733","Type":"Conventional","Directional":true,"Links":[{"SourceID":110721,"TargetID":40733,"Directional":true}]},{"ID":20384,"SourceStructureID":110722,"TargetStructureID":6120,"Label":"110722-6120 via Conventional from 110723 -> 110724","Type":"Conventional","Directional":true,"Links":[{"SourceID":110723,"TargetID":110724,"Directional":true}]},{"ID":20385,"SourceStructureID":110726,"TargetStructureID":6120,"Label":"110726-6120 via Conventional from 110727 -> 110725","Type":"Conventional","Directional":true,"Links":[{"SourceID":110727,"TargetID":110725,"Directional":true}]},{"ID":20386,"SourceStructureID":110728,"TargetStructureID":6120,"Label":"110728-6120 via Conventional from 110729 -> 110730","Type":"Conventional","Directional":true,"Links":[{"SourceID":110729,"TargetID":110730,"Directional":true}]},{"ID":20387,"SourceStructureID":110736,"TargetStructureID":6120,"Label":"110736-6120 via Conventional from 110737 -> 110735","Type":"Conventional","Directional":true,"Links":[{"SourceID":110737,"TargetID":110735,"Directional":true}]},{"ID":20388,"SourceStructureID":110743,"TargetStructureID":606,"Label":"110743-606 via Conventional from 110745 -> 51503","Type":"Conventional","Directional":true,"Links":[{"SourceID":110745,"TargetID":51503,"Directional":true}]},{"ID":20389,"SourceStructureID":110743,"TargetStructureID":6120,"Label":"110743-6120 via Conventional from 110744 -> 110740","Type":"Conventional","Directional":true,"Links":[{"SourceID":110744,"TargetID":110740,"Directional":true}]},{"ID":20390,"SourceStructureID":110755,"TargetStructureID":6120,"Label":"110755-6120 via Conventional from 110756 -> 61157","Type":"Conventional","Directional":true,"Links":[{"SourceID":110756,"TargetID":61157,"Directional":true}]},{"ID":20391,"SourceStructureID":110769,"TargetStructureID":6120,"Label":"110769-6120 via Conventional from 110770 -> 110768","Type":"Conventional","Directional":true,"Links":[{"SourceID":110770,"TargetID":110768,"Directional":true}]},{"ID":20392,"SourceStructureID":110783,"TargetStructureID":6120,"Label":"110783-6120 via Conventional from 110784 -> 110782","Type":"Conventional","Directional":true,"Links":[{"SourceID":110784,"TargetID":110782,"Directional":true}]},{"ID":20393,"SourceStructureID":110791,"TargetStructureID":6120,"Label":"110791-6120 via Conventional from 110792 -> 61162","Type":"Conventional","Directional":true,"Links":[{"SourceID":110792,"TargetID":61162,"Directional":true}]},{"ID":20394,"SourceStructureID":110793,"TargetStructureID":69162,"Label":"110793-69162 via Conventional from 110794 -> 69277","Type":"Conventional","Directional":true,"Links":[{"SourceID":110794,"TargetID":69277,"Directional":true}]},{"ID":20395,"SourceStructureID":110796,"TargetStructureID":6120,"Label":"110796-6120 via Conventional from 110797 -> 61159","Type":"Conventional","Directional":true,"Links":[{"SourceID":110797,"TargetID":61159,"Directional":true}]},{"ID":20396,"SourceStructureID":110800,"TargetStructureID":69162,"Label":"110800-69162 via Conventional from 110801 -> 69275","Type":"Conventional","Directional":true,"Links":[{"SourceID":110801,"TargetID":69275,"Directional":true}]},{"ID":20397,"SourceStructureID":110805,"TargetStructureID":6120,"Label":"110805-6120 via Conventional from 110806 -> 110804","Type":"Conventional","Directional":true,"Links":[{"SourceID":110806,"TargetID":110804,"Directional":true}]},{"ID":20398,"SourceStructureID":110807,"TargetStructureID":6120,"Label":"110807-6120 via Conventional from 110808 -> 61155","Type":"Conventional","Directional":true,"Links":[{"SourceID":110808,"TargetID":61155,"Directional":true}]},{"ID":20399,"SourceStructureID":110809,"TargetStructureID":6120,"Label":"110809-6120 via Conventional from 110844 -> 61152","Type":"Conventional","Directional":true,"Links":[{"SourceID":110844,"TargetID":61152,"Directional":true}]},{"ID":20400,"SourceStructureID":110819,"TargetStructureID":6120,"Label":"110819-6120 via Conventional from 110821 -> 110818","Type":"Conventional","Directional":true,"Links":[{"SourceID":110821,"TargetID":110818,"Directional":true}]},{"ID":20401,"SourceStructureID":110824,"TargetStructureID":6120,"Label":"110824-6120 via Conventional from 110825 -> 110826","Type":"Conventional","Directional":true,"Links":[{"SourceID":110825,"TargetID":110826,"Directional":true}]},{"ID":20402,"SourceStructureID":110828,"TargetStructureID":5107,"Label":"110828-5107 via Conventional from 110834 -> 65008","Type":"Conventional","Directional":true,"Links":[{"SourceID":110834,"TargetID":65008,"Directional":true}]},{"ID":20403,"SourceStructureID":110830,"TargetStructureID":11092,"Label":"110830-11092 via Conventional from 123695 -> 128600, 123696 -> 130357","Type":"Conventional","Directional":true,"Links":[{"SourceID":123695,"TargetID":128600,"Directional":true},{"SourceID":123696,"TargetID":130357,"Directional":true}]},{"ID":20404,"SourceStructureID":110830,"TargetStructureID":13525,"Label":"110830-13525 via Conventional from 110831 -> 84664","Type":"Conventional","Directional":true,"Links":[{"SourceID":110831,"TargetID":84664,"Directional":true}]},{"ID":20405,"SourceStructureID":110851,"TargetStructureID":6120,"Label":"110851-6120 via Conventional from 110852 -> 110850","Type":"Conventional","Directional":true,"Links":[{"SourceID":110852,"TargetID":110850,"Directional":true}]},{"ID":20406,"SourceStructureID":110857,"TargetStructureID":5729,"Label":"110857-5729 via Conventional from 110861 -> 110862","Type":"Conventional","Directional":true,"Links":[{"SourceID":110861,"TargetID":110862,"Directional":true}]},{"ID":20407,"SourceStructureID":110867,"TargetStructureID":5729,"Label":"110867-5729 via Conventional from 110871 -> 37844","Type":"Conventional","Directional":true,"Links":[{"SourceID":110871,"TargetID":37844,"Directional":true}]},{"ID":20408,"SourceStructureID":110879,"TargetStructureID":5729,"Label":"110879-5729 via Conventional from 110883 -> 110881","Type":"Conventional","Directional":true,"Links":[{"SourceID":110883,"TargetID":110881,"Directional":true}]},{"ID":20409,"SourceStructureID":110880,"TargetStructureID":5729,"Label":"110880-5729 via Conventional from 110884 -> 37839","Type":"Conventional","Directional":true,"Links":[{"SourceID":110884,"TargetID":37839,"Directional":true}]},{"ID":20410,"SourceStructureID":110892,"TargetStructureID":110880,"Label":"110892-110880 via Conventional from 110895 -> 110896","Type":"Conventional","Directional":true,"Links":[{"SourceID":110895,"TargetID":110896,"Directional":true}]},{"ID":20411,"SourceStructureID":110899,"TargetStructureID":5729,"Label":"110899-5729 via Conventional from 110902 -> 37845","Type":"Conventional","Directional":true,"Links":[{"SourceID":110902,"TargetID":37845,"Directional":true}]},{"ID":20412,"SourceStructureID":110903,"TargetStructureID":5729,"Label":"110903-5729 via Conventional from 110904 -> 37846","Type":"Conventional","Directional":true,"Links":[{"SourceID":110904,"TargetID":37846,"Directional":true}]},{"ID":20413,"SourceStructureID":110905,"TargetStructureID":5729,"Label":"110905-5729 via Conventional from 110906 -> 110907","Type":"Conventional","Directional":true,"Links":[{"SourceID":110906,"TargetID":110907,"Directional":true}]},{"ID":20414,"SourceStructureID":110908,"TargetStructureID":5729,"Label":"110908-5729 via Conventional from 110909 -> 110910, 110915 -> 110916","Type":"Conventional","Directional":true,"Links":[{"SourceID":110909,"TargetID":110910,"Directional":true},{"SourceID":110915,"TargetID":110916,"Directional":true}]},{"ID":20415,"SourceStructureID":110934,"TargetStructureID":606,"Label":"110934-606 via Conventional from 130671 -> 47250","Type":"Conventional","Directional":true,"Links":[{"SourceID":130671,"TargetID":47250,"Directional":true}]},{"ID":20416,"SourceStructureID":110934,"TargetStructureID":5729,"Label":"110934-5729 via Conventional from 110935 -> 110936","Type":"Conventional","Directional":true,"Links":[{"SourceID":110935,"TargetID":110936,"Directional":true}]},{"ID":20417,"SourceStructureID":110937,"TargetStructureID":5729,"Label":"110937-5729 via Conventional from 110938 -> 110939","Type":"Conventional","Directional":true,"Links":[{"SourceID":110938,"TargetID":110939,"Directional":true}]},{"ID":20418,"SourceStructureID":110940,"TargetStructureID":5729,"Label":"110940-5729 via Conventional from 110941 -> 37855","Type":"Conventional","Directional":true,"Links":[{"SourceID":110941,"TargetID":37855,"Directional":true}]},{"ID":20419,"SourceStructureID":110944,"TargetStructureID":5729,"Label":"110944-5729 via Conventional from 110945 -> 37849","Type":"Conventional","Directional":true,"Links":[{"SourceID":110945,"TargetID":37849,"Directional":true}]},{"ID":20420,"SourceStructureID":110961,"TargetStructureID":5729,"Label":"110961-5729 via Conventional from 110962 -> 110963","Type":"Conventional","Directional":true,"Links":[{"SourceID":110962,"TargetID":110963,"Directional":true}]},{"ID":20421,"SourceStructureID":110964,"TargetStructureID":5729,"Label":"110964-5729 via Conventional from 110965 -> 110966","Type":"Conventional","Directional":true,"Links":[{"SourceID":110965,"TargetID":110966,"Directional":true}]},{"ID":20422,"SourceStructureID":110967,"TargetStructureID":5729,"Label":"110967-5729 via Conventional from 110968 -> 110969","Type":"Conventional","Directional":true,"Links":[{"SourceID":110968,"TargetID":110969,"Directional":true}]},{"ID":20423,"SourceStructureID":110970,"TargetStructureID":5729,"Label":"110970-5729 via Conventional from 110971 -> 110972","Type":"Conventional","Directional":true,"Links":[{"SourceID":110971,"TargetID":110972,"Directional":true}]},{"ID":20424,"SourceStructureID":110977,"TargetStructureID":6120,"Label":"110977-6120 via Conventional from 110983 -> 110874","Type":"Conventional","Directional":true,"Links":[{"SourceID":110983,"TargetID":110874,"Directional":true}]},{"ID":20425,"SourceStructureID":110977,"TargetStructureID":110979,"Label":"110977-110979 via Conventional from 110978 -> 110980","Type":"Conventional","Directional":true,"Links":[{"SourceID":110978,"TargetID":110980,"Directional":true}]},{"ID":20426,"SourceStructureID":110988,"TargetStructureID":6120,"Label":"110988-6120 via Conventional from 110990 -> 110987","Type":"Conventional","Directional":true,"Links":[{"SourceID":110990,"TargetID":110987,"Directional":true}]},{"ID":20427,"SourceStructureID":111001,"TargetStructureID":6120,"Label":"111001-6120 via Conventional from 111002 -> 61151, 111095 -> 111094","Type":"Conventional","Directional":true,"Links":[{"SourceID":111002,"TargetID":61151,"Directional":true},{"SourceID":111095,"TargetID":111094,"Directional":true}]},{"ID":20428,"SourceStructureID":111006,"TargetStructureID":6120,"Label":"111006-6120 via Conventional from 111007 -> 61149","Type":"Conventional","Directional":true,"Links":[{"SourceID":111007,"TargetID":61149,"Directional":true}]},{"ID":20429,"SourceStructureID":111037,"TargetStructureID":6120,"Label":"111037-6120 via Conventional from 111038 -> 61130","Type":"Conventional","Directional":true,"Links":[{"SourceID":111038,"TargetID":61130,"Directional":true}]},{"ID":20430,"SourceStructureID":111054,"TargetStructureID":5729,"Label":"111054-5729 via Conventional from 111056 -> 111053","Type":"Conventional","Directional":true,"Links":[{"SourceID":111056,"TargetID":111053,"Directional":true}]},{"ID":20431,"SourceStructureID":111054,"TargetStructureID":6162,"Label":"111054-6162 via Conventional from 111055 -> 29109","Type":"Conventional","Directional":true,"Links":[{"SourceID":111055,"TargetID":29109,"Directional":true}]},{"ID":20432,"SourceStructureID":111059,"TargetStructureID":5729,"Label":"111059-5729 via Conventional from 111060 -> 47244","Type":"Conventional","Directional":true,"Links":[{"SourceID":111060,"TargetID":47244,"Directional":true}]},{"ID":20433,"SourceStructureID":111070,"TargetStructureID":5729,"Label":"111070-5729 via Conventional from 111071 -> 47246","Type":"Conventional","Directional":true,"Links":[{"SourceID":111071,"TargetID":47246,"Directional":true}]},{"ID":20434,"SourceStructureID":111075,"TargetStructureID":5729,"Label":"111075-5729 via Conventional from 111076 -> 111077","Type":"Conventional","Directional":true,"Links":[{"SourceID":111076,"TargetID":111077,"Directional":true}]},{"ID":20435,"SourceStructureID":111084,"TargetStructureID":5729,"Label":"111084-5729 via Conventional from 111144 -> 111145, 111153 -> 111154","Type":"Conventional","Directional":true,"Links":[{"SourceID":111144,"TargetID":111145,"Directional":true},{"SourceID":111153,"TargetID":111154,"Directional":true}]},{"ID":20436,"SourceStructureID":111098,"TargetStructureID":6120,"Label":"111098-6120 via Conventional from 111099 -> 61142","Type":"Conventional","Directional":true,"Links":[{"SourceID":111099,"TargetID":61142,"Directional":true}]},{"ID":20437,"SourceStructureID":111100,"TargetStructureID":6120,"Label":"111100-6120 via Conventional from 111101 -> 61141","Type":"Conventional","Directional":true,"Links":[{"SourceID":111101,"TargetID":61141,"Directional":true}]},{"ID":20438,"SourceStructureID":111102,"TargetStructureID":6120,"Label":"111102-6120 via Conventional from 111103 -> 61136","Type":"Conventional","Directional":true,"Links":[{"SourceID":111103,"TargetID":61136,"Directional":true}]},{"ID":20439,"SourceStructureID":111130,"TargetStructureID":6120,"Label":"111130-6120 via Conventional from 111131 -> 111129","Type":"Conventional","Directional":true,"Links":[{"SourceID":111131,"TargetID":111129,"Directional":true}]},{"ID":20440,"SourceStructureID":111135,"TargetStructureID":6120,"Label":"111135-6120 via Conventional from 111234 -> 111233, 111244 -> 57386","Type":"Conventional","Directional":true,"Links":[{"SourceID":111234,"TargetID":111233,"Directional":true},{"SourceID":111244,"TargetID":57386,"Directional":true}]},{"ID":20441,"SourceStructureID":111142,"TargetStructureID":6120,"Label":"111142-6120 via Conventional from 111143 -> 61178","Type":"Conventional","Directional":true,"Links":[{"SourceID":111143,"TargetID":61178,"Directional":true}]},{"ID":20442,"SourceStructureID":111146,"TargetStructureID":5729,"Label":"111146-5729 via Conventional from 111147 -> 111148","Type":"Conventional","Directional":true,"Links":[{"SourceID":111147,"TargetID":111148,"Directional":true}]},{"ID":20443,"SourceStructureID":111149,"TargetStructureID":5729,"Label":"111149-5729 via Conventional from 111150 -> 111151","Type":"Conventional","Directional":true,"Links":[{"SourceID":111150,"TargetID":111151,"Directional":true}]},{"ID":20444,"SourceStructureID":111165,"TargetStructureID":5729,"Label":"111165-5729 via Conventional from 111173 -> 47247","Type":"Conventional","Directional":true,"Links":[{"SourceID":111173,"TargetID":47247,"Directional":true}]},{"ID":20445,"SourceStructureID":111187,"TargetStructureID":5729,"Label":"111187-5729 via Conventional from 111188 -> 111189","Type":"Conventional","Directional":true,"Links":[{"SourceID":111188,"TargetID":111189,"Directional":true}]},{"ID":20446,"SourceStructureID":111198,"TargetStructureID":5729,"Label":"111198-5729 via Conventional from 111199 -> 111197","Type":"Conventional","Directional":true,"Links":[{"SourceID":111199,"TargetID":111197,"Directional":true}]},{"ID":20447,"SourceStructureID":111207,"TargetStructureID":13525,"Label":"111207-13525 via Conventional from 125798 -> 118140","Type":"Conventional","Directional":true,"Links":[{"SourceID":125798,"TargetID":118140,"Directional":true}]},{"ID":20448,"SourceStructureID":111212,"TargetStructureID":6120,"Label":"111212-6120 via Conventional from 111213 -> 61183","Type":"Conventional","Directional":true,"Links":[{"SourceID":111213,"TargetID":61183,"Directional":true}]},{"ID":20449,"SourceStructureID":111214,"TargetStructureID":6120,"Label":"111214-6120 via Conventional from 111215 -> 61182","Type":"Conventional","Directional":true,"Links":[{"SourceID":111215,"TargetID":61182,"Directional":true}]},{"ID":20450,"SourceStructureID":111218,"TargetStructureID":6120,"Label":"111218-6120 via Conventional from 111219 -> 111220","Type":"Conventional","Directional":true,"Links":[{"SourceID":111219,"TargetID":111220,"Directional":true}]},{"ID":20451,"SourceStructureID":111223,"TargetStructureID":6120,"Label":"111223-6120 via Conventional from 111224 -> 61181","Type":"Conventional","Directional":true,"Links":[{"SourceID":111224,"TargetID":61181,"Directional":true}]},{"ID":20452,"SourceStructureID":111231,"TargetStructureID":6120,"Label":"111231-6120 via Conventional from 111232 -> 61179","Type":"Conventional","Directional":true,"Links":[{"SourceID":111232,"TargetID":61179,"Directional":true}]},{"ID":20453,"SourceStructureID":111238,"TargetStructureID":111135,"Label":"111238-111135 via Conventional from 111241 -> 116727","Type":"Conventional","Directional":true,"Links":[{"SourceID":111241,"TargetID":116727,"Directional":true}]},{"ID":20454,"SourceStructureID":111248,"TargetStructureID":6120,"Label":"111248-6120 via Conventional from 111249 -> 111247","Type":"Conventional","Directional":true,"Links":[{"SourceID":111249,"TargetID":111247,"Directional":true}]},{"ID":20455,"SourceStructureID":111256,"TargetStructureID":6120,"Label":"111256-6120 via Conventional from 111257 -> 111255","Type":"Conventional","Directional":true,"Links":[{"SourceID":111257,"TargetID":111255,"Directional":true}]},{"ID":20456,"SourceStructureID":111264,"TargetStructureID":6120,"Label":"111264-6120 via Conventional from 111265 -> 111263","Type":"Conventional","Directional":true,"Links":[{"SourceID":111265,"TargetID":111263,"Directional":true}]},{"ID":20457,"SourceStructureID":111269,"TargetStructureID":111356,"Label":"111269-111356 via Conventional from 111275 -> 111357","Type":"Conventional","Directional":true,"Links":[{"SourceID":111275,"TargetID":111357,"Directional":true}]},{"ID":20458,"SourceStructureID":111270,"TargetStructureID":6120,"Label":"111270-6120 via Conventional from 111271 -> 111267","Type":"Conventional","Directional":true,"Links":[{"SourceID":111271,"TargetID":111267,"Directional":true}]},{"ID":20459,"SourceStructureID":111276,"TargetStructureID":6120,"Label":"111276-6120 via Conventional from 111277 -> 57392","Type":"Conventional","Directional":true,"Links":[{"SourceID":111277,"TargetID":57392,"Directional":true}]},{"ID":20460,"SourceStructureID":111278,"TargetStructureID":6120,"Label":"111278-6120 via Conventional from 111279 -> 57391","Type":"Conventional","Directional":true,"Links":[{"SourceID":111279,"TargetID":57391,"Directional":true}]},{"ID":20461,"SourceStructureID":111294,"TargetStructureID":5729,"Label":"111294-5729 via Conventional from 111295 -> 37812","Type":"Conventional","Directional":true,"Links":[{"SourceID":111295,"TargetID":37812,"Directional":true}]},{"ID":20462,"SourceStructureID":111299,"TargetStructureID":5729,"Label":"111299-5729 via Conventional from 111300 -> 111301","Type":"Conventional","Directional":true,"Links":[{"SourceID":111300,"TargetID":111301,"Directional":true}]},{"ID":20463,"SourceStructureID":111303,"TargetStructureID":5729,"Label":"111303-5729 via Conventional from 111304 -> 111305","Type":"Conventional","Directional":true,"Links":[{"SourceID":111304,"TargetID":111305,"Directional":true}]},{"ID":20464,"SourceStructureID":111306,"TargetStructureID":5729,"Label":"111306-5729 via Conventional from 111307 -> 37818","Type":"Conventional","Directional":true,"Links":[{"SourceID":111307,"TargetID":37818,"Directional":true}]},{"ID":20465,"SourceStructureID":111314,"TargetStructureID":5729,"Label":"111314-5729 via Conventional from 111315 -> 111316","Type":"Conventional","Directional":true,"Links":[{"SourceID":111315,"TargetID":111316,"Directional":true}]},{"ID":20466,"SourceStructureID":111318,"TargetStructureID":111312,"Label":"111318-111312 via Conventional from 111320 -> 111321","Type":"Conventional","Directional":true,"Links":[{"SourceID":111320,"TargetID":111321,"Directional":true}]},{"ID":20467,"SourceStructureID":111324,"TargetStructureID":5729,"Label":"111324-5729 via Conventional from 111325 -> 37827","Type":"Conventional","Directional":true,"Links":[{"SourceID":111325,"TargetID":37827,"Directional":true}]},{"ID":20468,"SourceStructureID":111328,"TargetStructureID":5729,"Label":"111328-5729 via Conventional from 111338 -> 37826, 111434 -> 111435","Type":"Conventional","Directional":true,"Links":[{"SourceID":111338,"TargetID":37826,"Directional":true},{"SourceID":111434,"TargetID":111435,"Directional":true}]},{"ID":20469,"SourceStructureID":111330,"TargetStructureID":5729,"Label":"111330-5729 via Conventional from 111331 -> 37821","Type":"Conventional","Directional":true,"Links":[{"SourceID":111331,"TargetID":37821,"Directional":true}]},{"ID":20470,"SourceStructureID":111342,"TargetStructureID":6120,"Label":"111342-6120 via Conventional from 111343 -> 111341","Type":"Conventional","Directional":true,"Links":[{"SourceID":111343,"TargetID":111341,"Directional":true}]},{"ID":20471,"SourceStructureID":111344,"TargetStructureID":6120,"Label":"111344-6120 via Conventional from 111345 -> 57393","Type":"Conventional","Directional":true,"Links":[{"SourceID":111345,"TargetID":57393,"Directional":true}]},{"ID":20472,"SourceStructureID":111356,"TargetStructureID":6120,"Label":"111356-6120 via Conventional from 111366 -> 111365","Type":"Conventional","Directional":true,"Links":[{"SourceID":111366,"TargetID":111365,"Directional":true}]},{"ID":20473,"SourceStructureID":111361,"TargetStructureID":6120,"Label":"111361-6120 via Conventional from 111362 -> 111360","Type":"Conventional","Directional":true,"Links":[{"SourceID":111362,"TargetID":111360,"Directional":true}]},{"ID":20474,"SourceStructureID":111369,"TargetStructureID":6120,"Label":"111369-6120 via Conventional from 111370 -> 111368","Type":"Conventional","Directional":true,"Links":[{"SourceID":111370,"TargetID":111368,"Directional":true}]},{"ID":20475,"SourceStructureID":111371,"TargetStructureID":6120,"Label":"111371-6120 via Conventional from 111372 -> 111367","Type":"Conventional","Directional":true,"Links":[{"SourceID":111372,"TargetID":111367,"Directional":true}]},{"ID":20476,"SourceStructureID":111379,"TargetStructureID":6120,"Label":"111379-6120 via Conventional from 111380 -> 111381","Type":"Conventional","Directional":true,"Links":[{"SourceID":111380,"TargetID":111381,"Directional":true}]},{"ID":20477,"SourceStructureID":111382,"TargetStructureID":6120,"Label":"111382-6120 via Conventional from 111383 -> 111384","Type":"Conventional","Directional":true,"Links":[{"SourceID":111383,"TargetID":111384,"Directional":true}]},{"ID":20478,"SourceStructureID":111386,"TargetStructureID":6120,"Label":"111386-6120 via Conventional from 111387 -> 111385","Type":"Conventional","Directional":true,"Links":[{"SourceID":111387,"TargetID":111385,"Directional":true}]},{"ID":20479,"SourceStructureID":111394,"TargetStructureID":6120,"Label":"111394-6120 via Conventional from 111395 -> 40735","Type":"Conventional","Directional":true,"Links":[{"SourceID":111395,"TargetID":40735,"Directional":true}]},{"ID":20480,"SourceStructureID":111394,"TargetStructureID":52410,"Label":"111394-52410 via Conventional from 125663 -> 125662","Type":"Conventional","Directional":true,"Links":[{"SourceID":125663,"TargetID":125662,"Directional":true}]},{"ID":20481,"SourceStructureID":111396,"TargetStructureID":6120,"Label":"111396-6120 via Conventional from 111397 -> 61202","Type":"Conventional","Directional":true,"Links":[{"SourceID":111397,"TargetID":61202,"Directional":true}]},{"ID":20482,"SourceStructureID":111401,"TargetStructureID":6120,"Label":"111401-6120 via Conventional from 111728 -> 111727","Type":"Conventional","Directional":true,"Links":[{"SourceID":111728,"TargetID":111727,"Directional":true}]},{"ID":20483,"SourceStructureID":111410,"TargetStructureID":5729,"Label":"111410-5729 via Conventional from 111425 -> 111426","Type":"Conventional","Directional":true,"Links":[{"SourceID":111425,"TargetID":111426,"Directional":true}]},{"ID":20484,"SourceStructureID":111414,"TargetStructureID":5729,"Label":"111414-5729 via Conventional from 111415 -> 37832","Type":"Conventional","Directional":true,"Links":[{"SourceID":111415,"TargetID":37832,"Directional":true}]},{"ID":20485,"SourceStructureID":111421,"TargetStructureID":6120,"Label":"111421-6120 via Conventional from 111422 -> 61194","Type":"Conventional","Directional":true,"Links":[{"SourceID":111422,"TargetID":61194,"Directional":true}]},{"ID":20486,"SourceStructureID":111424,"TargetStructureID":6120,"Label":"111424-6120 via Conventional from 111477 -> 111404","Type":"Conventional","Directional":true,"Links":[{"SourceID":111477,"TargetID":111404,"Directional":true}]},{"ID":20487,"SourceStructureID":111424,"TargetStructureID":111479,"Label":"111424-111479 via Conventional from 111478 -> 111480","Type":"Conventional","Directional":true,"Links":[{"SourceID":111478,"TargetID":111480,"Directional":true}]},{"ID":20488,"SourceStructureID":111430,"TargetStructureID":5729,"Label":"111430-5729 via Conventional from 111431 -> 111432","Type":"Conventional","Directional":true,"Links":[{"SourceID":111431,"TargetID":111432,"Directional":true}]},{"ID":20489,"SourceStructureID":111444,"TargetStructureID":5729,"Label":"111444-5729 via Conventional from 111445 -> 47292","Type":"Conventional","Directional":true,"Links":[{"SourceID":111445,"TargetID":47292,"Directional":true}]},{"ID":20490,"SourceStructureID":111448,"TargetStructureID":5499,"Label":"111448-5499 via Conventional from 111449 -> 105530","Type":"Conventional","Directional":true,"Links":[{"SourceID":111449,"TargetID":105530,"Directional":true}]},{"ID":20491,"SourceStructureID":111448,"TargetStructureID":5729,"Label":"111448-5729 via Conventional from 111450 -> 47294","Type":"Conventional","Directional":true,"Links":[{"SourceID":111450,"TargetID":47294,"Directional":true}]},{"ID":20492,"SourceStructureID":111452,"TargetStructureID":5729,"Label":"111452-5729 via Conventional from 111453 -> 111454","Type":"Conventional","Directional":true,"Links":[{"SourceID":111453,"TargetID":111454,"Directional":true}]},{"ID":20493,"SourceStructureID":111455,"TargetStructureID":5729,"Label":"111455-5729 via Conventional from 111456 -> 111457","Type":"Conventional","Directional":true,"Links":[{"SourceID":111456,"TargetID":111457,"Directional":true}]},{"ID":20494,"SourceStructureID":111455,"TargetStructureID":108426,"Label":"111455-108426 via Conventional from 111458 -> 111459","Type":"Conventional","Directional":true,"Links":[{"SourceID":111458,"TargetID":111459,"Directional":true}]},{"ID":20495,"SourceStructureID":111462,"TargetStructureID":606,"Label":"111462-606 via Conventional from 111463 -> 47276","Type":"Conventional","Directional":true,"Links":[{"SourceID":111463,"TargetID":47276,"Directional":true}]},{"ID":20496,"SourceStructureID":111462,"TargetStructureID":5729,"Label":"111462-5729 via Conventional from 111464 -> 37829","Type":"Conventional","Directional":true,"Links":[{"SourceID":111464,"TargetID":37829,"Directional":true}]},{"ID":20497,"SourceStructureID":111468,"TargetStructureID":5729,"Label":"111468-5729 via Conventional from 111469 -> 37833","Type":"Conventional","Directional":true,"Links":[{"SourceID":111469,"TargetID":37833,"Directional":true}]},{"ID":20498,"SourceStructureID":111479,"TargetStructureID":6120,"Label":"111479-6120 via Conventional from 111481 -> 111406","Type":"Conventional","Directional":true,"Links":[{"SourceID":111481,"TargetID":111406,"Directional":true}]},{"ID":20499,"SourceStructureID":111482,"TargetStructureID":6120,"Label":"111482-6120 via Conventional from 111483 -> 111405","Type":"Conventional","Directional":true,"Links":[{"SourceID":111483,"TargetID":111405,"Directional":true}]},{"ID":20500,"SourceStructureID":111493,"TargetStructureID":6120,"Label":"111493-6120 via Conventional from 111494 -> 111492","Type":"Conventional","Directional":true,"Links":[{"SourceID":111494,"TargetID":111492,"Directional":true}]},{"ID":20501,"SourceStructureID":111496,"TargetStructureID":5643,"Label":"111496-5643 via Conventional from 111505 -> 111507","Type":"Conventional","Directional":true,"Links":[{"SourceID":111505,"TargetID":111507,"Directional":true}]},{"ID":20502,"SourceStructureID":111496,"TargetStructureID":6120,"Label":"111496-6120 via Conventional from 111499 -> 61200","Type":"Conventional","Directional":true,"Links":[{"SourceID":111499,"TargetID":61200,"Directional":true}]},{"ID":20503,"SourceStructureID":111497,"TargetStructureID":6120,"Label":"111497-6120 via Conventional from 111498 -> 111500","Type":"Conventional","Directional":true,"Links":[{"SourceID":111498,"TargetID":111500,"Directional":true}]},{"ID":20504,"SourceStructureID":111501,"TargetStructureID":6120,"Label":"111501-6120 via Conventional from 111502 -> 61201","Type":"Conventional","Directional":true,"Links":[{"SourceID":111502,"TargetID":61201,"Directional":true}]},{"ID":20505,"SourceStructureID":111511,"TargetStructureID":6120,"Label":"111511-6120 via Conventional from 111512 -> 61187","Type":"Conventional","Directional":true,"Links":[{"SourceID":111512,"TargetID":61187,"Directional":true}]},{"ID":20506,"SourceStructureID":111528,"TargetStructureID":6120,"Label":"111528-6120 via Conventional from 111529 -> 111527","Type":"Conventional","Directional":true,"Links":[{"SourceID":111529,"TargetID":111527,"Directional":true}]},{"ID":20507,"SourceStructureID":111531,"TargetStructureID":6120,"Label":"111531-6120 via Conventional from 111532 -> 111530","Type":"Conventional","Directional":true,"Links":[{"SourceID":111532,"TargetID":111530,"Directional":true}]},{"ID":20508,"SourceStructureID":111539,"TargetStructureID":6120,"Label":"111539-6120 via Conventional from 111540 -> 61199","Type":"Conventional","Directional":true,"Links":[{"SourceID":111540,"TargetID":61199,"Directional":true}]},{"ID":20509,"SourceStructureID":111539,"TargetStructureID":6121,"Label":"111539-6121 via Conventional from 127709 -> 127710","Type":"Conventional","Directional":true,"Links":[{"SourceID":127709,"TargetID":127710,"Directional":true}]},{"ID":20510,"SourceStructureID":111539,"TargetStructureID":6146,"Label":"111539-6146 via Conventional from 127711 -> 127712","Type":"Conventional","Directional":true,"Links":[{"SourceID":127711,"TargetID":127712,"Directional":true}]},{"ID":20511,"SourceStructureID":111544,"TargetStructureID":6120,"Label":"111544-6120 via Conventional from 111545 -> 111543","Type":"Conventional","Directional":true,"Links":[{"SourceID":111545,"TargetID":111543,"Directional":true}]},{"ID":20512,"SourceStructureID":111546,"TargetStructureID":6120,"Label":"111546-6120 via Conventional from 111548 -> 111549","Type":"Conventional","Directional":true,"Links":[{"SourceID":111548,"TargetID":111549,"Directional":true}]},{"ID":20513,"SourceStructureID":111551,"TargetStructureID":6120,"Label":"111551-6120 via Conventional from 111552 -> 111550","Type":"Conventional","Directional":true,"Links":[{"SourceID":111552,"TargetID":111550,"Directional":true}]},{"ID":20514,"SourceStructureID":111560,"TargetStructureID":111557,"Label":"111560-111557 via Conventional from 111562 -> 111559","Type":"Conventional","Directional":true,"Links":[{"SourceID":111562,"TargetID":111559,"Directional":true}]},{"ID":20515,"SourceStructureID":111568,"TargetStructureID":6120,"Label":"111568-6120 via Conventional from 111569 -> 51507","Type":"Conventional","Directional":true,"Links":[{"SourceID":111569,"TargetID":51507,"Directional":true}]},{"ID":20516,"SourceStructureID":111572,"TargetStructureID":6120,"Label":"111572-6120 via Conventional from 111573 -> 111571","Type":"Conventional","Directional":true,"Links":[{"SourceID":111573,"TargetID":111571,"Directional":true}]},{"ID":20517,"SourceStructureID":111576,"TargetStructureID":6120,"Label":"111576-6120 via Conventional from 111577 -> 111575","Type":"Conventional","Directional":true,"Links":[{"SourceID":111577,"TargetID":111575,"Directional":true}]},{"ID":20518,"SourceStructureID":111584,"TargetStructureID":6120,"Label":"111584-6120 via Conventional from 111585 -> 111583","Type":"Conventional","Directional":true,"Links":[{"SourceID":111585,"TargetID":111583,"Directional":true}]},{"ID":20519,"SourceStructureID":111587,"TargetStructureID":6120,"Label":"111587-6120 via Conventional from 111588 -> 111586","Type":"Conventional","Directional":true,"Links":[{"SourceID":111588,"TargetID":111586,"Directional":true}]},{"ID":20520,"SourceStructureID":111590,"TargetStructureID":6120,"Label":"111590-6120 via Conventional from 111591 -> 111589","Type":"Conventional","Directional":true,"Links":[{"SourceID":111591,"TargetID":111589,"Directional":true}]},{"ID":20521,"SourceStructureID":111595,"TargetStructureID":6120,"Label":"111595-6120 via Conventional from 111596 -> 111594","Type":"Conventional","Directional":true,"Links":[{"SourceID":111596,"TargetID":111594,"Directional":true}]},{"ID":20522,"SourceStructureID":111602,"TargetStructureID":6120,"Label":"111602-6120 via Conventional from 111603 -> 111601","Type":"Conventional","Directional":true,"Links":[{"SourceID":111603,"TargetID":111601,"Directional":true}]},{"ID":20523,"SourceStructureID":111604,"TargetStructureID":5729,"Label":"111604-5729 via Conventional from 111610 -> 105755","Type":"Conventional","Directional":true,"Links":[{"SourceID":111610,"TargetID":105755,"Directional":true}]},{"ID":20524,"SourceStructureID":111604,"TargetStructureID":6162,"Label":"111604-6162 via Conventional from 116585 -> 116587","Type":"Conventional","Directional":true,"Links":[{"SourceID":116585,"TargetID":116587,"Directional":true}]},{"ID":20525,"SourceStructureID":111611,"TargetStructureID":5729,"Label":"111611-5729 via Conventional from 111612 -> 105754","Type":"Conventional","Directional":true,"Links":[{"SourceID":111612,"TargetID":105754,"Directional":true}]},{"ID":20526,"SourceStructureID":111616,"TargetStructureID":5729,"Label":"111616-5729 via Conventional from 111619 -> 105758","Type":"Conventional","Directional":true,"Links":[{"SourceID":111619,"TargetID":105758,"Directional":true}]},{"ID":20527,"SourceStructureID":111623,"TargetStructureID":6120,"Label":"111623-6120 via Conventional from 111628 -> 111622","Type":"Conventional","Directional":true,"Links":[{"SourceID":111628,"TargetID":111622,"Directional":true}]},{"ID":20528,"SourceStructureID":111630,"TargetStructureID":6120,"Label":"111630-6120 via Conventional from 111633 -> 111627","Type":"Conventional","Directional":true,"Links":[{"SourceID":111633,"TargetID":111627,"Directional":true}]},{"ID":20529,"SourceStructureID":111638,"TargetStructureID":5729,"Label":"111638-5729 via Conventional from 111639 -> 111640","Type":"Conventional","Directional":true,"Links":[{"SourceID":111639,"TargetID":111640,"Directional":true}]},{"ID":20530,"SourceStructureID":111667,"TargetStructureID":6120,"Label":"111667-6120 via Conventional from 111668 -> 111666","Type":"Conventional","Directional":true,"Links":[{"SourceID":111668,"TargetID":111666,"Directional":true}]},{"ID":20531,"SourceStructureID":111672,"TargetStructureID":31334,"Label":"111672-31334 via Conventional from 111702 -> 111701","Type":"Conventional","Directional":true,"Links":[{"SourceID":111702,"TargetID":111701,"Directional":true}]},{"ID":20532,"SourceStructureID":111677,"TargetStructureID":6120,"Label":"111677-6120 via Conventional from 111680 -> 111676","Type":"Conventional","Directional":true,"Links":[{"SourceID":111680,"TargetID":111676,"Directional":true}]},{"ID":20533,"SourceStructureID":111687,"TargetStructureID":6120,"Label":"111687-6120 via Conventional from 111688 -> 111686","Type":"Conventional","Directional":true,"Links":[{"SourceID":111688,"TargetID":111686,"Directional":true}]},{"ID":20534,"SourceStructureID":111693,"TargetStructureID":6120,"Label":"111693-6120 via Conventional from 111695 -> 111689","Type":"Conventional","Directional":true,"Links":[{"SourceID":111695,"TargetID":111689,"Directional":true}]},{"ID":20535,"SourceStructureID":111696,"TargetStructureID":6120,"Label":"111696-6120 via Conventional from 111697 -> 111670","Type":"Conventional","Directional":true,"Links":[{"SourceID":111697,"TargetID":111670,"Directional":true}]},{"ID":20536,"SourceStructureID":111698,"TargetStructureID":5107,"Label":"111698-5107 via Conventional from 111699 -> 65066","Type":"Conventional","Directional":true,"Links":[{"SourceID":111699,"TargetID":65066,"Directional":true}]},{"ID":20537,"SourceStructureID":111708,"TargetStructureID":68539,"Label":"111708-68539 via Conventional from 111709 -> 69147","Type":"Conventional","Directional":true,"Links":[{"SourceID":111709,"TargetID":69147,"Directional":true}]},{"ID":20538,"SourceStructureID":111717,"TargetStructureID":6120,"Label":"111717-6120 via Conventional from 111721 -> 111716","Type":"Conventional","Directional":true,"Links":[{"SourceID":111721,"TargetID":111716,"Directional":true}]},{"ID":20539,"SourceStructureID":111734,"TargetStructureID":6120,"Label":"111734-6120 via Conventional from 111863 -> 111864","Type":"Conventional","Directional":true,"Links":[{"SourceID":111863,"TargetID":111864,"Directional":true}]},{"ID":20540,"SourceStructureID":111735,"TargetStructureID":5729,"Label":"111735-5729 via Conventional from 111736 -> 111737","Type":"Conventional","Directional":true,"Links":[{"SourceID":111736,"TargetID":111737,"Directional":true}]},{"ID":20541,"SourceStructureID":111740,"TargetStructureID":5729,"Label":"111740-5729 via Conventional from 111742 -> 111745","Type":"Conventional","Directional":true,"Links":[{"SourceID":111742,"TargetID":111745,"Directional":true}]},{"ID":20542,"SourceStructureID":111767,"TargetStructureID":5729,"Label":"111767-5729 via Conventional from 111768 -> 111766","Type":"Conventional","Directional":true,"Links":[{"SourceID":111768,"TargetID":111766,"Directional":true}]},{"ID":20543,"SourceStructureID":111769,"TargetStructureID":5729,"Label":"111769-5729 via Conventional from 111770 -> 111771","Type":"Conventional","Directional":true,"Links":[{"SourceID":111770,"TargetID":111771,"Directional":true}]},{"ID":20544,"SourceStructureID":111785,"TargetStructureID":5729,"Label":"111785-5729 via Conventional from 111786 -> 111787","Type":"Conventional","Directional":true,"Links":[{"SourceID":111786,"TargetID":111787,"Directional":true}]},{"ID":20545,"SourceStructureID":111799,"TargetStructureID":5729,"Label":"111799-5729 via Conventional from 111800 -> 111798","Type":"Conventional","Directional":true,"Links":[{"SourceID":111800,"TargetID":111798,"Directional":true}]},{"ID":20546,"SourceStructureID":111803,"TargetStructureID":5531,"Label":"111803-5531 via Conventional from 111804 -> 111805","Type":"Conventional","Directional":true,"Links":[{"SourceID":111804,"TargetID":111805,"Directional":true}]},{"ID":20547,"SourceStructureID":111823,"TargetStructureID":5531,"Label":"111823-5531 via Conventional from 111826 -> 111825","Type":"Conventional","Directional":true,"Links":[{"SourceID":111826,"TargetID":111825,"Directional":true}]},{"ID":20548,"SourceStructureID":111827,"TargetStructureID":5531,"Label":"111827-5531 via Conventional from 111828 -> 56798","Type":"Conventional","Directional":true,"Links":[{"SourceID":111828,"TargetID":56798,"Directional":true}]},{"ID":20549,"SourceStructureID":111829,"TargetStructureID":5531,"Label":"111829-5531 via Conventional from 111830 -> 111831, 111832 -> 111833","Type":"Conventional","Directional":true,"Links":[{"SourceID":111830,"TargetID":111831,"Directional":true},{"SourceID":111832,"TargetID":111833,"Directional":true}]},{"ID":20550,"SourceStructureID":111835,"TargetStructureID":5531,"Label":"111835-5531 via Conventional from 111840 -> 111841","Type":"Conventional","Directional":true,"Links":[{"SourceID":111840,"TargetID":111841,"Directional":true}]},{"ID":20551,"SourceStructureID":111842,"TargetStructureID":5531,"Label":"111842-5531 via Conventional from 111843 -> 56800","Type":"Conventional","Directional":true,"Links":[{"SourceID":111843,"TargetID":56800,"Directional":true}]},{"ID":20552,"SourceStructureID":111848,"TargetStructureID":5531,"Label":"111848-5531 via Conventional from 111849 -> 111850","Type":"Conventional","Directional":true,"Links":[{"SourceID":111849,"TargetID":111850,"Directional":true}]},{"ID":20553,"SourceStructureID":111856,"TargetStructureID":5531,"Label":"111856-5531 via Conventional from 111858 -> 111859","Type":"Conventional","Directional":true,"Links":[{"SourceID":111858,"TargetID":111859,"Directional":true}]},{"ID":20554,"SourceStructureID":111869,"TargetStructureID":6120,"Label":"111869-6120 via Conventional from 111870 -> 111868","Type":"Conventional","Directional":true,"Links":[{"SourceID":111870,"TargetID":111868,"Directional":true}]},{"ID":20555,"SourceStructureID":111872,"TargetStructureID":6120,"Label":"111872-6120 via Conventional from 111873 -> 111871","Type":"Conventional","Directional":true,"Links":[{"SourceID":111873,"TargetID":111871,"Directional":true}]},{"ID":20556,"SourceStructureID":111876,"TargetStructureID":6120,"Label":"111876-6120 via Conventional from 111877 -> 111875","Type":"Conventional","Directional":true,"Links":[{"SourceID":111877,"TargetID":111875,"Directional":true}]},{"ID":20557,"SourceStructureID":111883,"TargetStructureID":6120,"Label":"111883-6120 via Conventional from 111884 -> 111882","Type":"Conventional","Directional":true,"Links":[{"SourceID":111884,"TargetID":111882,"Directional":true}]},{"ID":20558,"SourceStructureID":111899,"TargetStructureID":6120,"Label":"111899-6120 via Conventional from 111900 -> 111901","Type":"Conventional","Directional":true,"Links":[{"SourceID":111900,"TargetID":111901,"Directional":true}]},{"ID":20559,"SourceStructureID":111899,"TargetStructureID":6121,"Label":"111899-6121 via Conventional from 125224 -> 125222","Type":"Conventional","Directional":true,"Links":[{"SourceID":125224,"TargetID":125222,"Directional":true}]},{"ID":20560,"SourceStructureID":111926,"TargetStructureID":6047,"Label":"111926-6047 via Conventional from 111927 -> 19622","Type":"Conventional","Directional":true,"Links":[{"SourceID":111927,"TargetID":19622,"Directional":true}]},{"ID":20561,"SourceStructureID":111931,"TargetStructureID":6047,"Label":"111931-6047 via Conventional from 111932 -> 111928","Type":"Conventional","Directional":true,"Links":[{"SourceID":111932,"TargetID":111928,"Directional":true}]},{"ID":20562,"SourceStructureID":111937,"TargetStructureID":6047,"Label":"111937-6047 via Conventional from 111938 -> 111936","Type":"Conventional","Directional":true,"Links":[{"SourceID":111938,"TargetID":111936,"Directional":true}]},{"ID":20563,"SourceStructureID":111939,"TargetStructureID":6047,"Label":"111939-6047 via Conventional from 112015 -> 112016","Type":"Conventional","Directional":true,"Links":[{"SourceID":112015,"TargetID":112016,"Directional":true}]},{"ID":20564,"SourceStructureID":111953,"TargetStructureID":5729,"Label":"111953-5729 via Conventional from 111954 -> 111955","Type":"Conventional","Directional":true,"Links":[{"SourceID":111954,"TargetID":111955,"Directional":true}]},{"ID":20565,"SourceStructureID":111963,"TargetStructureID":5729,"Label":"111963-5729 via Conventional from 111966 -> 89607","Type":"Conventional","Directional":true,"Links":[{"SourceID":111966,"TargetID":89607,"Directional":true}]},{"ID":20566,"SourceStructureID":111968,"TargetStructureID":5729,"Label":"111968-5729 via Conventional from 111969 -> 89613","Type":"Conventional","Directional":true,"Links":[{"SourceID":111969,"TargetID":89613,"Directional":true}]},{"ID":20567,"SourceStructureID":111970,"TargetStructureID":5729,"Label":"111970-5729 via Conventional from 111971 -> 111972, 112004 -> 112003","Type":"Conventional","Directional":true,"Links":[{"SourceID":111971,"TargetID":111972,"Directional":true},{"SourceID":112004,"TargetID":112003,"Directional":true}]},{"ID":20568,"SourceStructureID":111994,"TargetStructureID":5729,"Label":"111994-5729 via Conventional from 111995 -> 89614","Type":"Conventional","Directional":true,"Links":[{"SourceID":111995,"TargetID":89614,"Directional":true}]},{"ID":20569,"SourceStructureID":112005,"TargetStructureID":5520,"Label":"112005-5520 via Conventional from 113802 -> 113801","Type":"Conventional","Directional":true,"Links":[{"SourceID":113802,"TargetID":113801,"Directional":true}]},{"ID":20570,"SourceStructureID":112005,"TargetStructureID":5729,"Label":"112005-5729 via Conventional from 112006 -> 112007","Type":"Conventional","Directional":true,"Links":[{"SourceID":112006,"TargetID":112007,"Directional":true}]},{"ID":20571,"SourceStructureID":112017,"TargetStructureID":6047,"Label":"112017-6047 via Conventional from 112019 -> 19709","Type":"Conventional","Directional":true,"Links":[{"SourceID":112019,"TargetID":19709,"Directional":true}]},{"ID":20572,"SourceStructureID":112028,"TargetStructureID":6047,"Label":"112028-6047 via Conventional from 112029 -> 112027","Type":"Conventional","Directional":true,"Links":[{"SourceID":112029,"TargetID":112027,"Directional":true}]},{"ID":20573,"SourceStructureID":112032,"TargetStructureID":6047,"Label":"112032-6047 via Conventional from 112033 -> 112031","Type":"Conventional","Directional":true,"Links":[{"SourceID":112033,"TargetID":112031,"Directional":true}]},{"ID":20574,"SourceStructureID":112042,"TargetStructureID":6047,"Label":"112042-6047 via Conventional from 112043 -> 112040","Type":"Conventional","Directional":true,"Links":[{"SourceID":112043,"TargetID":112040,"Directional":true}]},{"ID":20575,"SourceStructureID":112045,"TargetStructureID":6047,"Label":"112045-6047 via Conventional from 112048 -> 112039","Type":"Conventional","Directional":true,"Links":[{"SourceID":112048,"TargetID":112039,"Directional":true}]},{"ID":20576,"SourceStructureID":112045,"TargetStructureID":112042,"Label":"112045-112042 via Conventional from 112046 -> 112047","Type":"Conventional","Directional":true,"Links":[{"SourceID":112046,"TargetID":112047,"Directional":true}]},{"ID":20577,"SourceStructureID":112057,"TargetStructureID":6047,"Label":"112057-6047 via Conventional from 112059 -> 112056","Type":"Conventional","Directional":true,"Links":[{"SourceID":112059,"TargetID":112056,"Directional":true}]},{"ID":20578,"SourceStructureID":112057,"TargetStructureID":6203,"Label":"112057-6203 via Conventional from 112058 -> 112067","Type":"Conventional","Directional":true,"Links":[{"SourceID":112058,"TargetID":112067,"Directional":true}]},{"ID":20579,"SourceStructureID":112062,"TargetStructureID":6047,"Label":"112062-6047 via Conventional from 112063 -> 112061","Type":"Conventional","Directional":true,"Links":[{"SourceID":112063,"TargetID":112061,"Directional":true}]},{"ID":20580,"SourceStructureID":112071,"TargetStructureID":6047,"Label":"112071-6047 via Conventional from 112072 -> 19696","Type":"Conventional","Directional":true,"Links":[{"SourceID":112072,"TargetID":19696,"Directional":true}]},{"ID":20581,"SourceStructureID":112073,"TargetStructureID":6047,"Label":"112073-6047 via Conventional from 112074 -> 19698","Type":"Conventional","Directional":true,"Links":[{"SourceID":112074,"TargetID":19698,"Directional":true}]},{"ID":20582,"SourceStructureID":112077,"TargetStructureID":6047,"Label":"112077-6047 via Conventional from 112079 -> 19699","Type":"Conventional","Directional":true,"Links":[{"SourceID":112079,"TargetID":19699,"Directional":true}]},{"ID":20583,"SourceStructureID":112081,"TargetStructureID":6047,"Label":"112081-6047 via Conventional from 112082 -> 19701","Type":"Conventional","Directional":true,"Links":[{"SourceID":112082,"TargetID":19701,"Directional":true}]},{"ID":20584,"SourceStructureID":112084,"TargetStructureID":6047,"Label":"112084-6047 via Conventional from 112086 -> 19702","Type":"Conventional","Directional":true,"Links":[{"SourceID":112086,"TargetID":19702,"Directional":true}]},{"ID":20585,"SourceStructureID":112087,"TargetStructureID":6047,"Label":"112087-6047 via Conventional from 112088 -> 19704","Type":"Conventional","Directional":true,"Links":[{"SourceID":112088,"TargetID":19704,"Directional":true}]},{"ID":20586,"SourceStructureID":112089,"TargetStructureID":6047,"Label":"112089-6047 via Conventional from 112090 -> 19705","Type":"Conventional","Directional":true,"Links":[{"SourceID":112090,"TargetID":19705,"Directional":true}]},{"ID":20587,"SourceStructureID":112094,"TargetStructureID":6047,"Label":"112094-6047 via Conventional from 112095 -> 112093","Type":"Conventional","Directional":true,"Links":[{"SourceID":112095,"TargetID":112093,"Directional":true}]},{"ID":20588,"SourceStructureID":112096,"TargetStructureID":6047,"Label":"112096-6047 via Conventional from 112097 -> 19700","Type":"Conventional","Directional":true,"Links":[{"SourceID":112097,"TargetID":19700,"Directional":true}]},{"ID":20589,"SourceStructureID":112099,"TargetStructureID":6047,"Label":"112099-6047 via Conventional from 112100 -> 112098","Type":"Conventional","Directional":true,"Links":[{"SourceID":112100,"TargetID":112098,"Directional":true}]},{"ID":20590,"SourceStructureID":112105,"TargetStructureID":6047,"Label":"112105-6047 via Conventional from 112106 -> 19707","Type":"Conventional","Directional":true,"Links":[{"SourceID":112106,"TargetID":19707,"Directional":true}]},{"ID":20591,"SourceStructureID":112108,"TargetStructureID":6047,"Label":"112108-6047 via Conventional from 112109 -> 112107","Type":"Conventional","Directional":true,"Links":[{"SourceID":112109,"TargetID":112107,"Directional":true}]},{"ID":20592,"SourceStructureID":112108,"TargetStructureID":22994,"Label":"112108-22994 via Conventional from 112110 -> 75941","Type":"Conventional","Directional":true,"Links":[{"SourceID":112110,"TargetID":75941,"Directional":true}]},{"ID":20593,"SourceStructureID":112111,"TargetStructureID":6047,"Label":"112111-6047 via Conventional from 112112 -> 112114","Type":"Conventional","Directional":true,"Links":[{"SourceID":112112,"TargetID":112114,"Directional":true}]},{"ID":20594,"SourceStructureID":112111,"TargetStructureID":6141,"Label":"112111-6141 via Conventional from 112113 -> 57399","Type":"Conventional","Directional":true,"Links":[{"SourceID":112113,"TargetID":57399,"Directional":true}]},{"ID":20595,"SourceStructureID":112115,"TargetStructureID":6047,"Label":"112115-6047 via Conventional from 112116 -> 19677","Type":"Conventional","Directional":true,"Links":[{"SourceID":112116,"TargetID":19677,"Directional":true}]},{"ID":20596,"SourceStructureID":112128,"TargetStructureID":6047,"Label":"112128-6047 via Conventional from 112129 -> 19678","Type":"Conventional","Directional":true,"Links":[{"SourceID":112129,"TargetID":19678,"Directional":true}]},{"ID":20597,"SourceStructureID":112130,"TargetStructureID":6047,"Label":"112130-6047 via Conventional from 112131 -> 19679","Type":"Conventional","Directional":true,"Links":[{"SourceID":112131,"TargetID":19679,"Directional":true}]},{"ID":20598,"SourceStructureID":112133,"TargetStructureID":6047,"Label":"112133-6047 via Conventional from 112134 -> 112132","Type":"Conventional","Directional":true,"Links":[{"SourceID":112134,"TargetID":112132,"Directional":true}]},{"ID":20599,"SourceStructureID":112155,"TargetStructureID":6047,"Label":"112155-6047 via Conventional from 112156 -> 112154","Type":"Conventional","Directional":true,"Links":[{"SourceID":112156,"TargetID":112154,"Directional":true}]},{"ID":20600,"SourceStructureID":112160,"TargetStructureID":6047,"Label":"112160-6047 via Conventional from 112161 -> 19682","Type":"Conventional","Directional":true,"Links":[{"SourceID":112161,"TargetID":19682,"Directional":true}]},{"ID":20601,"SourceStructureID":112164,"TargetStructureID":6047,"Label":"112164-6047 via Conventional from 112165 -> 19683","Type":"Conventional","Directional":true,"Links":[{"SourceID":112165,"TargetID":19683,"Directional":true}]},{"ID":20602,"SourceStructureID":112166,"TargetStructureID":6047,"Label":"112166-6047 via Conventional from 112167 -> 57404","Type":"Conventional","Directional":true,"Links":[{"SourceID":112167,"TargetID":57404,"Directional":true}]},{"ID":20603,"SourceStructureID":112166,"TargetStructureID":112172,"Label":"112166-112172 via Conventional from 112174 -> 112173","Type":"Conventional","Directional":true,"Links":[{"SourceID":112174,"TargetID":112173,"Directional":true}]},{"ID":20604,"SourceStructureID":112168,"TargetStructureID":6047,"Label":"112168-6047 via Conventional from 112169 -> 19685","Type":"Conventional","Directional":true,"Links":[{"SourceID":112169,"TargetID":19685,"Directional":true}]},{"ID":20605,"SourceStructureID":112180,"TargetStructureID":6047,"Label":"112180-6047 via Conventional from 112181 -> 19667","Type":"Conventional","Directional":true,"Links":[{"SourceID":112181,"TargetID":19667,"Directional":true}]},{"ID":20606,"SourceStructureID":112182,"TargetStructureID":6047,"Label":"112182-6047 via Cistern Post from 112183 -> 19668","Type":"Cistern Post","Directional":true,"Links":[{"SourceID":112183,"TargetID":19668,"Directional":true}]},{"ID":20607,"SourceStructureID":112184,"TargetStructureID":6047,"Label":"112184-6047 via Conventional from 112185 -> 19674","Type":"Conventional","Directional":true,"Links":[{"SourceID":112185,"TargetID":19674,"Directional":true}]},{"ID":20608,"SourceStructureID":112186,"TargetStructureID":6047,"Label":"112186-6047 via Conventional from 112187 -> 19672","Type":"Conventional","Directional":true,"Links":[{"SourceID":112187,"TargetID":19672,"Directional":true}]},{"ID":20609,"SourceStructureID":112188,"TargetStructureID":6047,"Label":"112188-6047 via Conventional from 112189 -> 19670, 112490 -> 112489","Type":"Conventional","Directional":true,"Links":[{"SourceID":112189,"TargetID":19670,"Directional":true},{"SourceID":112490,"TargetID":112489,"Directional":true}]},{"ID":20610,"SourceStructureID":112205,"TargetStructureID":3756,"Label":"112205-3756 via Conventional from 120378 -> 116120","Type":"Conventional","Directional":true,"Links":[{"SourceID":120378,"TargetID":116120,"Directional":true}]},{"ID":20611,"SourceStructureID":112205,"TargetStructureID":6047,"Label":"112205-6047 via Conventional from 112206 -> 19710","Type":"Conventional","Directional":true,"Links":[{"SourceID":112206,"TargetID":19710,"Directional":true}]},{"ID":20612,"SourceStructureID":112207,"TargetStructureID":6047,"Label":"112207-6047 via Conventional from 112208 -> 19712","Type":"Conventional","Directional":true,"Links":[{"SourceID":112208,"TargetID":19712,"Directional":true}]},{"ID":20613,"SourceStructureID":112217,"TargetStructureID":6047,"Label":"112217-6047 via Conventional from 112218 -> 19714, 112220 -> 61337","Type":"Conventional","Directional":true,"Links":[{"SourceID":112218,"TargetID":19714,"Directional":true},{"SourceID":112220,"TargetID":61337,"Directional":true}]},{"ID":20614,"SourceStructureID":112221,"TargetStructureID":112217,"Label":"112221-112217 via Conventional from 112222 -> 112223","Type":"Conventional","Directional":true,"Links":[{"SourceID":112222,"TargetID":112223,"Directional":true}]},{"ID":20615,"SourceStructureID":112230,"TargetStructureID":6047,"Label":"112230-6047 via Conventional from 112231 -> 61336","Type":"Conventional","Directional":true,"Links":[{"SourceID":112231,"TargetID":61336,"Directional":true}]},{"ID":20616,"SourceStructureID":112233,"TargetStructureID":6047,"Label":"112233-6047 via Unknown from 113692 -> 113691","Type":"Unknown","Directional":true,"Links":[{"SourceID":113692,"TargetID":113691,"Directional":true}]},{"ID":20617,"SourceStructureID":112241,"TargetStructureID":6047,"Label":"112241-6047 via Conventional from 112242 -> 112240","Type":"Conventional","Directional":true,"Links":[{"SourceID":112242,"TargetID":112240,"Directional":true}]},{"ID":20618,"SourceStructureID":112244,"TargetStructureID":6047,"Label":"112244-6047 via Conventional from 112245 -> 61331","Type":"Conventional","Directional":true,"Links":[{"SourceID":112245,"TargetID":61331,"Directional":true}]},{"ID":20619,"SourceStructureID":112246,"TargetStructureID":6047,"Label":"112246-6047 via Conventional from 112247 -> 61325","Type":"Conventional","Directional":true,"Links":[{"SourceID":112247,"TargetID":61325,"Directional":true}]},{"ID":20620,"SourceStructureID":112253,"TargetStructureID":6047,"Label":"112253-6047 via Conventional from 112254 -> 61328","Type":"Conventional","Directional":true,"Links":[{"SourceID":112254,"TargetID":61328,"Directional":true}]},{"ID":20621,"SourceStructureID":112255,"TargetStructureID":6047,"Label":"112255-6047 via Conventional from 112256 -> 61330","Type":"Conventional","Directional":true,"Links":[{"SourceID":112256,"TargetID":61330,"Directional":true}]},{"ID":20622,"SourceStructureID":112271,"TargetStructureID":6047,"Label":"112271-6047 via Conventional from 112272 -> 61334","Type":"Conventional","Directional":true,"Links":[{"SourceID":112272,"TargetID":61334,"Directional":true}]},{"ID":20623,"SourceStructureID":112273,"TargetStructureID":6047,"Label":"112273-6047 via Conventional from 112274 -> 61333","Type":"Conventional","Directional":true,"Links":[{"SourceID":112274,"TargetID":61333,"Directional":true}]},{"ID":20624,"SourceStructureID":112282,"TargetStructureID":6047,"Label":"112282-6047 via Conventional from 112283 -> 53631","Type":"Conventional","Directional":true,"Links":[{"SourceID":112283,"TargetID":53631,"Directional":true}]},{"ID":20625,"SourceStructureID":112284,"TargetStructureID":6047,"Label":"112284-6047 via Conventional from 112285 -> 61324","Type":"Conventional","Directional":true,"Links":[{"SourceID":112285,"TargetID":61324,"Directional":true}]},{"ID":20626,"SourceStructureID":112286,"TargetStructureID":6047,"Label":"112286-6047 via Conventional from 112287 -> 112289","Type":"Conventional","Directional":true,"Links":[{"SourceID":112287,"TargetID":112289,"Directional":true}]},{"ID":20627,"SourceStructureID":112290,"TargetStructureID":6047,"Label":"112290-6047 via Conventional from 112291 -> 53632","Type":"Conventional","Directional":true,"Links":[{"SourceID":112291,"TargetID":53632,"Directional":true}]},{"ID":20628,"SourceStructureID":112297,"TargetStructureID":5729,"Label":"112297-5729 via Conventional from 112298 -> 112299","Type":"Conventional","Directional":true,"Links":[{"SourceID":112298,"TargetID":112299,"Directional":true}]},{"ID":20629,"SourceStructureID":112319,"TargetStructureID":6047,"Label":"112319-6047 via Conventional from 112320 -> 61323","Type":"Conventional","Directional":true,"Links":[{"SourceID":112320,"TargetID":61323,"Directional":true}]},{"ID":20630,"SourceStructureID":112322,"TargetStructureID":6047,"Label":"112322-6047 via Conventional from 112323 -> 112321","Type":"Conventional","Directional":true,"Links":[{"SourceID":112323,"TargetID":112321,"Directional":true}]},{"ID":20631,"SourceStructureID":112351,"TargetStructureID":6047,"Label":"112351-6047 via Conventional from 112352 -> 112353","Type":"Conventional","Directional":true,"Links":[{"SourceID":112352,"TargetID":112353,"Directional":true}]},{"ID":20632,"SourceStructureID":112355,"TargetStructureID":6047,"Label":"112355-6047 via Conventional from 112356 -> 112354","Type":"Conventional","Directional":true,"Links":[{"SourceID":112356,"TargetID":112354,"Directional":true}]},{"ID":20633,"SourceStructureID":112364,"TargetStructureID":6047,"Label":"112364-6047 via Conventional from 112366 -> 19717","Type":"Conventional","Directional":true,"Links":[{"SourceID":112366,"TargetID":19717,"Directional":true}]},{"ID":20634,"SourceStructureID":112374,"TargetStructureID":6047,"Label":"112374-6047 via Conventional from 112375 -> 112373","Type":"Conventional","Directional":true,"Links":[{"SourceID":112375,"TargetID":112373,"Directional":true}]},{"ID":20635,"SourceStructureID":112379,"TargetStructureID":6047,"Label":"112379-6047 via Conventional from 112380 -> 19724","Type":"Conventional","Directional":true,"Links":[{"SourceID":112380,"TargetID":19724,"Directional":true}]},{"ID":20636,"SourceStructureID":112384,"TargetStructureID":6047,"Label":"112384-6047 via Conventional from 112385 -> 112383","Type":"Conventional","Directional":true,"Links":[{"SourceID":112385,"TargetID":112383,"Directional":true}]},{"ID":20637,"SourceStructureID":112386,"TargetStructureID":6047,"Label":"112386-6047 via Conventional from 112387 -> 19725","Type":"Conventional","Directional":true,"Links":[{"SourceID":112387,"TargetID":19725,"Directional":true}]},{"ID":20638,"SourceStructureID":112392,"TargetStructureID":6047,"Label":"112392-6047 via Conventional from 112393 -> 19727","Type":"Conventional","Directional":true,"Links":[{"SourceID":112393,"TargetID":19727,"Directional":true}]},{"ID":20639,"SourceStructureID":112402,"TargetStructureID":6047,"Label":"112402-6047 via Conventional from 112406 -> 19740","Type":"Conventional","Directional":true,"Links":[{"SourceID":112406,"TargetID":19740,"Directional":true}]},{"ID":20640,"SourceStructureID":112404,"TargetStructureID":6047,"Label":"112404-6047 via Conventional from 112405 -> 19736","Type":"Conventional","Directional":true,"Links":[{"SourceID":112405,"TargetID":19736,"Directional":true}]},{"ID":20641,"SourceStructureID":112407,"TargetStructureID":6047,"Label":"112407-6047 via Conventional from 112408 -> 19735","Type":"Conventional","Directional":true,"Links":[{"SourceID":112408,"TargetID":19735,"Directional":true}]},{"ID":20642,"SourceStructureID":112419,"TargetStructureID":6047,"Label":"112419-6047 via Conventional from 112420 -> 19741","Type":"Conventional","Directional":true,"Links":[{"SourceID":112420,"TargetID":19741,"Directional":true}]},{"ID":20643,"SourceStructureID":112447,"TargetStructureID":112447,"Label":"112447-112447 via Postsynapse from 112448 -> 112452","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":112448,"TargetID":112452,"Directional":true}]},{"ID":20644,"SourceStructureID":112468,"TargetStructureID":5531,"Label":"112468-5531 via Conventional from 112469 -> 112470","Type":"Conventional","Directional":true,"Links":[{"SourceID":112469,"TargetID":112470,"Directional":true}]},{"ID":20645,"SourceStructureID":112474,"TargetStructureID":6047,"Label":"112474-6047 via Conventional from 112475 -> 19664","Type":"Conventional","Directional":true,"Links":[{"SourceID":112475,"TargetID":19664,"Directional":true}]},{"ID":20646,"SourceStructureID":112476,"TargetStructureID":3756,"Label":"112476-3756 via Conventional from 116112 -> 116111","Type":"Conventional","Directional":true,"Links":[{"SourceID":116112,"TargetID":116111,"Directional":true}]},{"ID":20647,"SourceStructureID":112476,"TargetStructureID":6047,"Label":"112476-6047 via Conventional from 112477 -> 19665, 129320 -> 129319","Type":"Conventional","Directional":true,"Links":[{"SourceID":112477,"TargetID":19665,"Directional":true},{"SourceID":129320,"TargetID":129319,"Directional":true}]},{"ID":20648,"SourceStructureID":112478,"TargetStructureID":6047,"Label":"112478-6047 via Conventional from 112479 -> 19666","Type":"Conventional","Directional":true,"Links":[{"SourceID":112479,"TargetID":19666,"Directional":true}]},{"ID":20649,"SourceStructureID":112496,"TargetStructureID":6047,"Label":"112496-6047 via Conventional from 112510 -> 112495","Type":"Conventional","Directional":true,"Links":[{"SourceID":112510,"TargetID":112495,"Directional":true}]},{"ID":20650,"SourceStructureID":112515,"TargetStructureID":6047,"Label":"112515-6047 via Conventional from 112517 -> 112516","Type":"Conventional","Directional":true,"Links":[{"SourceID":112517,"TargetID":112516,"Directional":true}]},{"ID":20651,"SourceStructureID":112525,"TargetStructureID":6047,"Label":"112525-6047 via Conventional from 112527 -> 112526","Type":"Conventional","Directional":true,"Links":[{"SourceID":112527,"TargetID":112526,"Directional":true}]},{"ID":20652,"SourceStructureID":112525,"TargetStructureID":43261,"Label":"112525-43261 via Conventional from 122046 -> 122045","Type":"Conventional","Directional":true,"Links":[{"SourceID":122046,"TargetID":122045,"Directional":true}]},{"ID":20653,"SourceStructureID":112545,"TargetStructureID":6047,"Label":"112545-6047 via Conventional from 112546 -> 19662","Type":"Conventional","Directional":true,"Links":[{"SourceID":112546,"TargetID":19662,"Directional":true}]},{"ID":20654,"SourceStructureID":112560,"TargetStructureID":6047,"Label":"112560-6047 via Conventional from 112561 -> 19658","Type":"Conventional","Directional":true,"Links":[{"SourceID":112561,"TargetID":19658,"Directional":true}]},{"ID":20655,"SourceStructureID":112577,"TargetStructureID":6047,"Label":"112577-6047 via Conventional from 112578 -> 19663","Type":"Conventional","Directional":true,"Links":[{"SourceID":112578,"TargetID":19663,"Directional":true}]},{"ID":20656,"SourceStructureID":112584,"TargetStructureID":6047,"Label":"112584-6047 via Conventional from 112585 -> 19657","Type":"Conventional","Directional":true,"Links":[{"SourceID":112585,"TargetID":19657,"Directional":true}]},{"ID":20657,"SourceStructureID":112594,"TargetStructureID":5729,"Label":"112594-5729 via Conventional from 112595 -> 64932","Type":"Conventional","Directional":true,"Links":[{"SourceID":112595,"TargetID":64932,"Directional":true}]},{"ID":20658,"SourceStructureID":112607,"TargetStructureID":3116,"Label":"112607-3116 via Conventional from 112608 -> 23813","Type":"Conventional","Directional":true,"Links":[{"SourceID":112608,"TargetID":23813,"Directional":true}]},{"ID":20659,"SourceStructureID":112610,"TargetStructureID":168,"Label":"112610-168 via Conventional from 112611 -> 4328, 112612 -> 4328, 112613 -> 49067","Type":"Conventional","Directional":true,"Links":[{"SourceID":112611,"TargetID":4328,"Directional":true},{"SourceID":112612,"TargetID":4328,"Directional":true},{"SourceID":112613,"TargetID":49067,"Directional":true}]},{"ID":20660,"SourceStructureID":112634,"TargetStructureID":5729,"Label":"112634-5729 via Conventional from 112636 -> 112630","Type":"Conventional","Directional":true,"Links":[{"SourceID":112636,"TargetID":112630,"Directional":true}]},{"ID":20661,"SourceStructureID":112638,"TargetStructureID":5729,"Label":"112638-5729 via Conventional from 112640 -> 112621","Type":"Conventional","Directional":true,"Links":[{"SourceID":112640,"TargetID":112621,"Directional":true}]},{"ID":20662,"SourceStructureID":112648,"TargetStructureID":5729,"Label":"112648-5729 via Conventional from 112649 -> 112653","Type":"Conventional","Directional":true,"Links":[{"SourceID":112649,"TargetID":112653,"Directional":true}]},{"ID":20663,"SourceStructureID":112650,"TargetStructureID":5729,"Label":"112650-5729 via Conventional from 112651 -> 112652","Type":"Conventional","Directional":true,"Links":[{"SourceID":112651,"TargetID":112652,"Directional":true}]},{"ID":20664,"SourceStructureID":112661,"TargetStructureID":5729,"Label":"112661-5729 via Conventional from 112663 -> 112660","Type":"Conventional","Directional":true,"Links":[{"SourceID":112663,"TargetID":112660,"Directional":true}]},{"ID":20665,"SourceStructureID":112664,"TargetStructureID":5729,"Label":"112664-5729 via Conventional from 112665 -> 112662","Type":"Conventional","Directional":true,"Links":[{"SourceID":112665,"TargetID":112662,"Directional":true}]},{"ID":20666,"SourceStructureID":112677,"TargetStructureID":5729,"Label":"112677-5729 via Conventional from 112680 -> 64512","Type":"Conventional","Directional":true,"Links":[{"SourceID":112680,"TargetID":64512,"Directional":true}]},{"ID":20667,"SourceStructureID":112684,"TargetStructureID":5729,"Label":"112684-5729 via Conventional from 112685 -> 64508","Type":"Conventional","Directional":true,"Links":[{"SourceID":112685,"TargetID":64508,"Directional":true}]},{"ID":20668,"SourceStructureID":112684,"TargetStructureID":89586,"Label":"112684-89586 via Conventional from 112687 -> 112688","Type":"Conventional","Directional":true,"Links":[{"SourceID":112687,"TargetID":112688,"Directional":true}]},{"ID":20669,"SourceStructureID":112689,"TargetStructureID":5729,"Label":"112689-5729 via Conventional from 112691 -> 64526","Type":"Conventional","Directional":true,"Links":[{"SourceID":112691,"TargetID":64526,"Directional":true}]},{"ID":20670,"SourceStructureID":112694,"TargetStructureID":5729,"Label":"112694-5729 via Conventional from 112695 -> 64500","Type":"Conventional","Directional":true,"Links":[{"SourceID":112695,"TargetID":64500,"Directional":true}]},{"ID":20671,"SourceStructureID":112696,"TargetStructureID":5729,"Label":"112696-5729 via Conventional from 112697 -> 64483","Type":"Conventional","Directional":true,"Links":[{"SourceID":112697,"TargetID":64483,"Directional":true}]},{"ID":20672,"SourceStructureID":112700,"TargetStructureID":5729,"Label":"112700-5729 via Conventional from 112701 -> 64485","Type":"Conventional","Directional":true,"Links":[{"SourceID":112701,"TargetID":64485,"Directional":true}]},{"ID":20673,"SourceStructureID":112703,"TargetStructureID":112696,"Label":"112703-112696 via Conventional from 112705 -> 112706","Type":"Conventional","Directional":true,"Links":[{"SourceID":112705,"TargetID":112706,"Directional":true}]},{"ID":20674,"SourceStructureID":112709,"TargetStructureID":5729,"Label":"112709-5729 via Conventional from 112710 -> 64481","Type":"Conventional","Directional":true,"Links":[{"SourceID":112710,"TargetID":64481,"Directional":true}]},{"ID":20675,"SourceStructureID":112712,"TargetStructureID":5729,"Label":"112712-5729 via Conventional from 112720 -> 64499","Type":"Conventional","Directional":true,"Links":[{"SourceID":112720,"TargetID":64499,"Directional":true}]},{"ID":20676,"SourceStructureID":112718,"TargetStructureID":5729,"Label":"112718-5729 via Conventional from 112719 -> 64525","Type":"Conventional","Directional":true,"Links":[{"SourceID":112719,"TargetID":64525,"Directional":true}]},{"ID":20677,"SourceStructureID":112727,"TargetStructureID":5729,"Label":"112727-5729 via Conventional from 112728 -> 64478","Type":"Conventional","Directional":true,"Links":[{"SourceID":112728,"TargetID":64478,"Directional":true}]},{"ID":20678,"SourceStructureID":112729,"TargetStructureID":5729,"Label":"112729-5729 via Conventional from 112731 -> 64468","Type":"Conventional","Directional":true,"Links":[{"SourceID":112731,"TargetID":64468,"Directional":true}]},{"ID":20679,"SourceStructureID":112737,"TargetStructureID":5729,"Label":"112737-5729 via Conventional from 112738 -> 64462","Type":"Conventional","Directional":true,"Links":[{"SourceID":112738,"TargetID":64462,"Directional":true}]},{"ID":20680,"SourceStructureID":112739,"TargetStructureID":168,"Label":"112739-168 via Conventional from 112740 -> 4332","Type":"Conventional","Directional":true,"Links":[{"SourceID":112740,"TargetID":4332,"Directional":true}]},{"ID":20681,"SourceStructureID":112753,"TargetStructureID":6047,"Label":"112753-6047 via Conventional from 112754 -> 61342","Type":"Conventional","Directional":true,"Links":[{"SourceID":112754,"TargetID":61342,"Directional":true}]},{"ID":20682,"SourceStructureID":112761,"TargetStructureID":6047,"Label":"112761-6047 via Conventional from 112762 -> 61340","Type":"Conventional","Directional":true,"Links":[{"SourceID":112762,"TargetID":61340,"Directional":true}]},{"ID":20683,"SourceStructureID":112766,"TargetStructureID":6047,"Label":"112766-6047 via Conventional from 112767 -> 61346","Type":"Conventional","Directional":true,"Links":[{"SourceID":112767,"TargetID":61346,"Directional":true}]},{"ID":20684,"SourceStructureID":112775,"TargetStructureID":6047,"Label":"112775-6047 via Conventional from 112776 -> 19653","Type":"Conventional","Directional":true,"Links":[{"SourceID":112776,"TargetID":19653,"Directional":true}]},{"ID":20685,"SourceStructureID":112777,"TargetStructureID":6047,"Label":"112777-6047 via Conventional from 112778 -> 19652","Type":"Conventional","Directional":true,"Links":[{"SourceID":112778,"TargetID":19652,"Directional":true}]},{"ID":20686,"SourceStructureID":112784,"TargetStructureID":6047,"Label":"112784-6047 via Conventional from 112787 -> 19648","Type":"Conventional","Directional":true,"Links":[{"SourceID":112787,"TargetID":19648,"Directional":true}]},{"ID":20687,"SourceStructureID":112824,"TargetStructureID":6047,"Label":"112824-6047 via Conventional from 112830 -> 19645","Type":"Conventional","Directional":true,"Links":[{"SourceID":112830,"TargetID":19645,"Directional":true}]},{"ID":20688,"SourceStructureID":112843,"TargetStructureID":3756,"Label":"112843-3756 via Conventional from 120368 -> 116097","Type":"Conventional","Directional":true,"Links":[{"SourceID":120368,"TargetID":116097,"Directional":true}]},{"ID":20689,"SourceStructureID":112843,"TargetStructureID":6047,"Label":"112843-6047 via Conventional from 112844 -> 19642","Type":"Conventional","Directional":true,"Links":[{"SourceID":112844,"TargetID":19642,"Directional":true}]},{"ID":20690,"SourceStructureID":112880,"TargetStructureID":5729,"Label":"112880-5729 via Conventional from 112883 -> 64464","Type":"Conventional","Directional":true,"Links":[{"SourceID":112883,"TargetID":64464,"Directional":true}]},{"ID":20691,"SourceStructureID":112903,"TargetStructureID":5729,"Label":"112903-5729 via Conventional from 112905 -> 65014","Type":"Conventional","Directional":true,"Links":[{"SourceID":112905,"TargetID":65014,"Directional":true}]},{"ID":20692,"SourceStructureID":112912,"TargetStructureID":5729,"Label":"112912-5729 via Conventional from 112913 -> 64586","Type":"Conventional","Directional":true,"Links":[{"SourceID":112913,"TargetID":64586,"Directional":true}]},{"ID":20693,"SourceStructureID":112938,"TargetStructureID":5729,"Label":"112938-5729 via Conventional from 112940 -> 64533","Type":"Conventional","Directional":true,"Links":[{"SourceID":112940,"TargetID":64533,"Directional":true}]},{"ID":20694,"SourceStructureID":112942,"TargetStructureID":5729,"Label":"112942-5729 via Conventional from 112948 -> 64530","Type":"Conventional","Directional":true,"Links":[{"SourceID":112948,"TargetID":64530,"Directional":true}]},{"ID":20695,"SourceStructureID":112964,"TargetStructureID":5729,"Label":"112964-5729 via Conventional from 112965 -> 112963","Type":"Conventional","Directional":true,"Links":[{"SourceID":112965,"TargetID":112963,"Directional":true}]},{"ID":20696,"SourceStructureID":112966,"TargetStructureID":5729,"Label":"112966-5729 via Conventional from 112967 -> 112968","Type":"Conventional","Directional":true,"Links":[{"SourceID":112967,"TargetID":112968,"Directional":true}]},{"ID":20697,"SourceStructureID":112969,"TargetStructureID":5729,"Label":"112969-5729 via Conventional from 112970 -> 112971","Type":"Conventional","Directional":true,"Links":[{"SourceID":112970,"TargetID":112971,"Directional":true}]},{"ID":20698,"SourceStructureID":112986,"TargetStructureID":5729,"Label":"112986-5729 via Conventional from 112987 -> 112974","Type":"Conventional","Directional":true,"Links":[{"SourceID":112987,"TargetID":112974,"Directional":true}]},{"ID":20699,"SourceStructureID":112989,"TargetStructureID":5729,"Label":"112989-5729 via Conventional from 112990 -> 112988","Type":"Conventional","Directional":true,"Links":[{"SourceID":112990,"TargetID":112988,"Directional":true}]},{"ID":20700,"SourceStructureID":112995,"TargetStructureID":61904,"Label":"112995-61904 via Conventional from 112997 -> 82214","Type":"Conventional","Directional":true,"Links":[{"SourceID":112997,"TargetID":82214,"Directional":true}]},{"ID":20701,"SourceStructureID":113068,"TargetStructureID":5284,"Label":"113068-5284 via Conventional from 113069 -> 112871, 113073 -> 112875","Type":"Conventional","Directional":true,"Links":[{"SourceID":113069,"TargetID":112871,"Directional":true},{"SourceID":113073,"TargetID":112875,"Directional":true}]},{"ID":20702,"SourceStructureID":113088,"TargetStructureID":5729,"Label":"113088-5729 via Conventional from 113089 -> 113090","Type":"Conventional","Directional":true,"Links":[{"SourceID":113089,"TargetID":113090,"Directional":true}]},{"ID":20703,"SourceStructureID":113091,"TargetStructureID":5729,"Label":"113091-5729 via Conventional from 113102 -> 113101","Type":"Conventional","Directional":true,"Links":[{"SourceID":113102,"TargetID":113101,"Directional":true}]},{"ID":20704,"SourceStructureID":113103,"TargetStructureID":5729,"Label":"113103-5729 via Conventional from 113104 -> 113093","Type":"Conventional","Directional":true,"Links":[{"SourceID":113104,"TargetID":113093,"Directional":true}]},{"ID":20705,"SourceStructureID":113120,"TargetStructureID":6047,"Label":"113120-6047 via Conventional from 113121 -> 19640","Type":"Conventional","Directional":true,"Links":[{"SourceID":113121,"TargetID":19640,"Directional":true}]},{"ID":20706,"SourceStructureID":113129,"TargetStructureID":6047,"Label":"113129-6047 via Conventional from 113130 -> 19635","Type":"Conventional","Directional":true,"Links":[{"SourceID":113130,"TargetID":19635,"Directional":true}]},{"ID":20707,"SourceStructureID":113131,"TargetStructureID":6047,"Label":"113131-6047 via Conventional from 113132 -> 19629","Type":"Conventional","Directional":true,"Links":[{"SourceID":113132,"TargetID":19629,"Directional":true}]},{"ID":20708,"SourceStructureID":113133,"TargetStructureID":6047,"Label":"113133-6047 via Conventional from 113134 -> 19636","Type":"Conventional","Directional":true,"Links":[{"SourceID":113134,"TargetID":19636,"Directional":true}]},{"ID":20709,"SourceStructureID":113135,"TargetStructureID":6047,"Label":"113135-6047 via Conventional from 113136 -> 19630","Type":"Conventional","Directional":true,"Links":[{"SourceID":113136,"TargetID":19630,"Directional":true}]},{"ID":20710,"SourceStructureID":113147,"TargetStructureID":6047,"Label":"113147-6047 via Conventional from 113148 -> 19639","Type":"Conventional","Directional":true,"Links":[{"SourceID":113148,"TargetID":19639,"Directional":true}]},{"ID":20711,"SourceStructureID":113156,"TargetStructureID":6047,"Label":"113156-6047 via Conventional from 113157 -> 19626, 113157 -> 113158","Type":"Conventional","Directional":true,"Links":[{"SourceID":113157,"TargetID":19626,"Directional":true},{"SourceID":113157,"TargetID":113158,"Directional":true}]},{"ID":20712,"SourceStructureID":113159,"TargetStructureID":6047,"Label":"113159-6047 via Conventional from 113161 -> 19625","Type":"Conventional","Directional":true,"Links":[{"SourceID":113161,"TargetID":19625,"Directional":true}]},{"ID":20713,"SourceStructureID":113164,"TargetStructureID":6047,"Label":"113164-6047 via Conventional from 113165 -> 27778","Type":"Conventional","Directional":true,"Links":[{"SourceID":113165,"TargetID":27778,"Directional":true}]},{"ID":20714,"SourceStructureID":113167,"TargetStructureID":6047,"Label":"113167-6047 via Conventional from 113168 -> 113166","Type":"Conventional","Directional":true,"Links":[{"SourceID":113168,"TargetID":113166,"Directional":true}]},{"ID":20715,"SourceStructureID":113173,"TargetStructureID":6047,"Label":"113173-6047 via Conventional from 113174 -> 113175","Type":"Conventional","Directional":true,"Links":[{"SourceID":113174,"TargetID":113175,"Directional":true}]},{"ID":20716,"SourceStructureID":113179,"TargetStructureID":6047,"Label":"113179-6047 via Conventional from 113181 -> 19632","Type":"Conventional","Directional":true,"Links":[{"SourceID":113181,"TargetID":19632,"Directional":true}]},{"ID":20717,"SourceStructureID":113186,"TargetStructureID":3756,"Label":"113186-3756 via Conventional from 129368 -> 129367","Type":"Conventional","Directional":true,"Links":[{"SourceID":129368,"TargetID":129367,"Directional":true}]},{"ID":20718,"SourceStructureID":113186,"TargetStructureID":6047,"Label":"113186-6047 via Conventional from 113187 -> 19631","Type":"Conventional","Directional":true,"Links":[{"SourceID":113187,"TargetID":19631,"Directional":true}]},{"ID":20719,"SourceStructureID":113228,"TargetStructureID":6047,"Label":"113228-6047 via Conventional from 113229 -> 19692","Type":"Conventional","Directional":true,"Links":[{"SourceID":113229,"TargetID":19692,"Directional":true}]},{"ID":20720,"SourceStructureID":113242,"TargetStructureID":13525,"Label":"113242-13525 via Conventional from 118475 -> 118476","Type":"Conventional","Directional":true,"Links":[{"SourceID":118475,"TargetID":118476,"Directional":true}]},{"ID":20721,"SourceStructureID":113332,"TargetStructureID":5284,"Label":"113332-5284 via Conventional from 113333 -> 65904, 113335 -> 113323, 113336 -> 49926","Type":"Conventional","Directional":true,"Links":[{"SourceID":113333,"TargetID":65904,"Directional":true},{"SourceID":113335,"TargetID":113323,"Directional":true},{"SourceID":113336,"TargetID":49926,"Directional":true}]},{"ID":20722,"SourceStructureID":113342,"TargetStructureID":5284,"Label":"113342-5284 via Conventional from 113343 -> 54354, 113348 -> 60786","Type":"Conventional","Directional":true,"Links":[{"SourceID":113343,"TargetID":54354,"Directional":true},{"SourceID":113348,"TargetID":60786,"Directional":true}]},{"ID":20723,"SourceStructureID":113393,"TargetStructureID":5284,"Label":"113393-5284 via Conventional from 113395 -> 113394","Type":"Conventional","Directional":true,"Links":[{"SourceID":113395,"TargetID":113394,"Directional":true}]},{"ID":20724,"SourceStructureID":113547,"TargetStructureID":67291,"Label":"113547-67291 via BC Conventional Synapse from 120526 -> 68362","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":120526,"TargetID":68362,"Directional":true}]},{"ID":20725,"SourceStructureID":114564,"TargetStructureID":5531,"Label":"114564-5531 via Conventional from 114565 -> 114566","Type":"Conventional","Directional":true,"Links":[{"SourceID":114565,"TargetID":114566,"Directional":true}]},{"ID":20726,"SourceStructureID":114568,"TargetStructureID":5531,"Label":"114568-5531 via Conventional from 114569 -> 114570","Type":"Conventional","Directional":true,"Links":[{"SourceID":114569,"TargetID":114570,"Directional":true}]},{"ID":20727,"SourceStructureID":114576,"TargetStructureID":5531,"Label":"114576-5531 via Conventional from 114577 -> 114578","Type":"Conventional","Directional":true,"Links":[{"SourceID":114577,"TargetID":114578,"Directional":true}]},{"ID":20728,"SourceStructureID":114698,"TargetStructureID":5531,"Label":"114698-5531 via Conventional from 114699 -> 114700","Type":"Conventional","Directional":true,"Links":[{"SourceID":114699,"TargetID":114700,"Directional":true}]},{"ID":20729,"SourceStructureID":114726,"TargetStructureID":5531,"Label":"114726-5531 via Conventional from 114727 -> 114728, 114766 -> 114765","Type":"Conventional","Directional":true,"Links":[{"SourceID":114727,"TargetID":114728,"Directional":true},{"SourceID":114766,"TargetID":114765,"Directional":true}]},{"ID":20730,"SourceStructureID":114729,"TargetStructureID":5531,"Label":"114729-5531 via Conventional from 114730 -> 114731","Type":"Conventional","Directional":true,"Links":[{"SourceID":114730,"TargetID":114731,"Directional":true}]},{"ID":20731,"SourceStructureID":114745,"TargetStructureID":5531,"Label":"114745-5531 via Conventional from 114754 -> 114755","Type":"Conventional","Directional":true,"Links":[{"SourceID":114754,"TargetID":114755,"Directional":true}]},{"ID":20732,"SourceStructureID":114747,"TargetStructureID":5531,"Label":"114747-5531 via Conventional from 114750 -> 114751","Type":"Conventional","Directional":true,"Links":[{"SourceID":114750,"TargetID":114751,"Directional":true}]},{"ID":20733,"SourceStructureID":114757,"TargetStructureID":5531,"Label":"114757-5531 via Conventional from 114758 -> 54649","Type":"Conventional","Directional":true,"Links":[{"SourceID":114758,"TargetID":54649,"Directional":true}]},{"ID":20734,"SourceStructureID":114925,"TargetStructureID":6164,"Label":"114925-6164 via Conventional from 114926 -> 26861, 114929 -> 114930","Type":"Conventional","Directional":true,"Links":[{"SourceID":114926,"TargetID":26861,"Directional":true},{"SourceID":114929,"TargetID":114930,"Directional":true}]},{"ID":20735,"SourceStructureID":114931,"TargetStructureID":6164,"Label":"114931-6164 via Conventional from 114932 -> 26650","Type":"Conventional","Directional":true,"Links":[{"SourceID":114932,"TargetID":26650,"Directional":true}]},{"ID":20736,"SourceStructureID":115013,"TargetStructureID":6164,"Label":"115013-6164 via Conventional from 115014 -> 114934, 115015 -> 26859","Type":"Conventional","Directional":true,"Links":[{"SourceID":115014,"TargetID":114934,"Directional":true},{"SourceID":115015,"TargetID":26859,"Directional":true}]},{"ID":20737,"SourceStructureID":115133,"TargetStructureID":5468,"Label":"115133-5468 via Conventional from 124224 -> 48221","Type":"Conventional","Directional":true,"Links":[{"SourceID":124224,"TargetID":48221,"Directional":true}]},{"ID":20738,"SourceStructureID":115133,"TargetStructureID":5598,"Label":"115133-5598 via Conventional from 124223 -> 57125","Type":"Conventional","Directional":true,"Links":[{"SourceID":124223,"TargetID":57125,"Directional":true}]},{"ID":20739,"SourceStructureID":115430,"TargetStructureID":115432,"Label":"115430-115432 via Conventional from 115431 -> 115433","Type":"Conventional","Directional":true,"Links":[{"SourceID":115431,"TargetID":115433,"Directional":true}]},{"ID":20740,"SourceStructureID":115581,"TargetStructureID":13525,"Label":"115581-13525 via Ribbon Synapse from 115582 -> 87165","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":115582,"TargetID":87165,"Directional":true}]},{"ID":20741,"SourceStructureID":115691,"TargetStructureID":5499,"Label":"115691-5499 via Conventional from 115692 -> 98021","Type":"Conventional","Directional":true,"Links":[{"SourceID":115692,"TargetID":98021,"Directional":true}]},{"ID":20742,"SourceStructureID":115801,"TargetStructureID":5599,"Label":"115801-5599 via Conventional from 115802 -> 115803","Type":"Conventional","Directional":true,"Links":[{"SourceID":115802,"TargetID":115803,"Directional":true}]},{"ID":20743,"SourceStructureID":115810,"TargetStructureID":166,"Label":"115810-166 via Conventional from 115811 -> 49166","Type":"Conventional","Directional":true,"Links":[{"SourceID":115811,"TargetID":49166,"Directional":true}]},{"ID":20744,"SourceStructureID":115855,"TargetStructureID":909,"Label":"115855-909 via Conventional from 115856 -> 115857","Type":"Conventional","Directional":true,"Links":[{"SourceID":115856,"TargetID":115857,"Directional":true}]},{"ID":20745,"SourceStructureID":115870,"TargetStructureID":909,"Label":"115870-909 via Conventional from 116377 -> 116375, 129491 -> 129492","Type":"Conventional","Directional":true,"Links":[{"SourceID":116377,"TargetID":116375,"Directional":true},{"SourceID":129491,"TargetID":129492,"Directional":true}]},{"ID":20746,"SourceStructureID":115870,"TargetStructureID":115860,"Label":"115870-115860 via Conventional from 129488 -> 129489","Type":"Conventional","Directional":true,"Links":[{"SourceID":129488,"TargetID":129489,"Directional":true}]},{"ID":20747,"SourceStructureID":115878,"TargetStructureID":909,"Label":"115878-909 via Conventional from 129501 -> 129500","Type":"Conventional","Directional":true,"Links":[{"SourceID":129501,"TargetID":129500,"Directional":true}]},{"ID":20748,"SourceStructureID":115888,"TargetStructureID":909,"Label":"115888-909 via Conventional from 115889 -> 45838","Type":"Conventional","Directional":true,"Links":[{"SourceID":115889,"TargetID":45838,"Directional":true}]},{"ID":20749,"SourceStructureID":115900,"TargetStructureID":909,"Label":"115900-909 via Conventional from 115901 -> 40120","Type":"Conventional","Directional":true,"Links":[{"SourceID":115901,"TargetID":40120,"Directional":true}]},{"ID":20750,"SourceStructureID":115949,"TargetStructureID":909,"Label":"115949-909 via Conventional from 115950 -> 45942","Type":"Conventional","Directional":true,"Links":[{"SourceID":115950,"TargetID":45942,"Directional":true}]},{"ID":20751,"SourceStructureID":115953,"TargetStructureID":909,"Label":"115953-909 via Conventional from 115954 -> 45943","Type":"Conventional","Directional":true,"Links":[{"SourceID":115954,"TargetID":45943,"Directional":true}]},{"ID":20752,"SourceStructureID":115953,"TargetStructureID":5279,"Label":"115953-5279 via Conventional from 119110 -> 119109","Type":"Conventional","Directional":true,"Links":[{"SourceID":119110,"TargetID":119109,"Directional":true}]},{"ID":20753,"SourceStructureID":115974,"TargetStructureID":909,"Label":"115974-909 via Conventional from 115975 -> 115972","Type":"Conventional","Directional":true,"Links":[{"SourceID":115975,"TargetID":115972,"Directional":true}]},{"ID":20754,"SourceStructureID":115977,"TargetStructureID":909,"Label":"115977-909 via Conventional from 115980 -> 115976","Type":"Conventional","Directional":true,"Links":[{"SourceID":115980,"TargetID":115976,"Directional":true}]},{"ID":20755,"SourceStructureID":115983,"TargetStructureID":909,"Label":"115983-909 via Conventional from 117245 -> 115981","Type":"Conventional","Directional":true,"Links":[{"SourceID":117245,"TargetID":115981,"Directional":true}]},{"ID":20756,"SourceStructureID":116395,"TargetStructureID":909,"Label":"116395-909 via Conventional from 116396 -> 116303","Type":"Conventional","Directional":true,"Links":[{"SourceID":116396,"TargetID":116303,"Directional":true}]},{"ID":20757,"SourceStructureID":116400,"TargetStructureID":909,"Label":"116400-909 via Conventional from 116765 -> 116302","Type":"Conventional","Directional":true,"Links":[{"SourceID":116765,"TargetID":116302,"Directional":true}]},{"ID":20758,"SourceStructureID":116403,"TargetStructureID":909,"Label":"116403-909 via Conventional from 116404 -> 116401","Type":"Conventional","Directional":true,"Links":[{"SourceID":116404,"TargetID":116401,"Directional":true}]},{"ID":20759,"SourceStructureID":116451,"TargetStructureID":7167,"Label":"116451-7167 via Conventional from 116452 -> 116450","Type":"Conventional","Directional":true,"Links":[{"SourceID":116452,"TargetID":116450,"Directional":true}]},{"ID":20760,"SourceStructureID":116729,"TargetStructureID":3116,"Label":"116729-3116 via Conventional from 116730 -> 116728","Type":"Conventional","Directional":true,"Links":[{"SourceID":116730,"TargetID":116728,"Directional":true}]},{"ID":20761,"SourceStructureID":116788,"TargetStructureID":909,"Label":"116788-909 via Conventional from 116789 -> 116782","Type":"Conventional","Directional":true,"Links":[{"SourceID":116789,"TargetID":116782,"Directional":true}]},{"ID":20762,"SourceStructureID":116791,"TargetStructureID":909,"Label":"116791-909 via Conventional from 116792 -> 116790","Type":"Conventional","Directional":true,"Links":[{"SourceID":116792,"TargetID":116790,"Directional":true}]},{"ID":20763,"SourceStructureID":116919,"TargetStructureID":5551,"Label":"116919-5551 via Conventional from 116920 -> 116921","Type":"Conventional","Directional":true,"Links":[{"SourceID":116920,"TargetID":116921,"Directional":true}]},{"ID":20764,"SourceStructureID":116925,"TargetStructureID":5551,"Label":"116925-5551 via Conventional from 116928 -> 116924","Type":"Conventional","Directional":true,"Links":[{"SourceID":116928,"TargetID":116924,"Directional":true}]},{"ID":20765,"SourceStructureID":117065,"TargetStructureID":5557,"Label":"117065-5557 via Conventional from 117066 -> 117067","Type":"Conventional","Directional":true,"Links":[{"SourceID":117066,"TargetID":117067,"Directional":true}]},{"ID":20766,"SourceStructureID":117112,"TargetStructureID":8720,"Label":"117112-8720 via Ribbon Synapse from 117183 -> 63467","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117183,"TargetID":63467,"Directional":true}]},{"ID":20767,"SourceStructureID":117127,"TargetStructureID":63978,"Label":"117127-63978 via Ribbon Synapse from 117146 -> 64000","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117146,"TargetID":64000,"Directional":true}]},{"ID":20768,"SourceStructureID":117214,"TargetStructureID":909,"Label":"117214-909 via Conventional from 117215 -> 117216","Type":"Conventional","Directional":true,"Links":[{"SourceID":117215,"TargetID":117216,"Directional":true}]},{"ID":20769,"SourceStructureID":117218,"TargetStructureID":909,"Label":"117218-909 via Conventional from 117219 -> 117220","Type":"Conventional","Directional":true,"Links":[{"SourceID":117219,"TargetID":117220,"Directional":true}]},{"ID":20770,"SourceStructureID":117223,"TargetStructureID":909,"Label":"117223-909 via Conventional from 117228 -> 117229, 131032 -> 118644","Type":"Conventional","Directional":true,"Links":[{"SourceID":117228,"TargetID":117229,"Directional":true},{"SourceID":131032,"TargetID":118644,"Directional":true}]},{"ID":20771,"SourceStructureID":117239,"TargetStructureID":909,"Label":"117239-909 via Conventional from 117240 -> 117238","Type":"Conventional","Directional":true,"Links":[{"SourceID":117240,"TargetID":117238,"Directional":true}]},{"ID":20772,"SourceStructureID":117242,"TargetStructureID":909,"Label":"117242-909 via Conventional from 131066 -> 131065","Type":"Conventional","Directional":true,"Links":[{"SourceID":131066,"TargetID":131065,"Directional":true}]},{"ID":20773,"SourceStructureID":117242,"TargetStructureID":117204,"Label":"117242-117204 via Conventional from 117243 -> 117244","Type":"Conventional","Directional":true,"Links":[{"SourceID":117243,"TargetID":117244,"Directional":true}]},{"ID":20774,"SourceStructureID":117285,"TargetStructureID":909,"Label":"117285-909 via Conventional from 117286 -> 117276","Type":"Conventional","Directional":true,"Links":[{"SourceID":117286,"TargetID":117276,"Directional":true}]},{"ID":20775,"SourceStructureID":117399,"TargetStructureID":909,"Label":"117399-909 via Conventional from 117400 -> 117396","Type":"Conventional","Directional":true,"Links":[{"SourceID":117400,"TargetID":117396,"Directional":true}]},{"ID":20776,"SourceStructureID":117401,"TargetStructureID":909,"Label":"117401-909 via Conventional from 117403 -> 117397","Type":"Conventional","Directional":true,"Links":[{"SourceID":117403,"TargetID":117397,"Directional":true}]},{"ID":20777,"SourceStructureID":117404,"TargetStructureID":909,"Label":"117404-909 via Conventional from 117405 -> 117398","Type":"Conventional","Directional":true,"Links":[{"SourceID":117405,"TargetID":117398,"Directional":true}]},{"ID":20778,"SourceStructureID":117406,"TargetStructureID":909,"Label":"117406-909 via Conventional from 117407 -> 53732","Type":"Conventional","Directional":true,"Links":[{"SourceID":117407,"TargetID":53732,"Directional":true}]},{"ID":20779,"SourceStructureID":117406,"TargetStructureID":117411,"Label":"117406-117411 via Conventional from 130224 -> 130225","Type":"Conventional","Directional":true,"Links":[{"SourceID":130224,"TargetID":130225,"Directional":true}]},{"ID":20780,"SourceStructureID":117411,"TargetStructureID":909,"Label":"117411-909 via Conventional from 117412 -> 117414","Type":"Conventional","Directional":true,"Links":[{"SourceID":117412,"TargetID":117414,"Directional":true}]},{"ID":20781,"SourceStructureID":117429,"TargetStructureID":909,"Label":"117429-909 via Conventional from 117430 -> 117428","Type":"Conventional","Directional":true,"Links":[{"SourceID":117430,"TargetID":117428,"Directional":true}]},{"ID":20782,"SourceStructureID":117440,"TargetStructureID":909,"Label":"117440-909 via Conventional from 117441 -> 117442","Type":"Conventional","Directional":true,"Links":[{"SourceID":117441,"TargetID":117442,"Directional":true}]},{"ID":20783,"SourceStructureID":117463,"TargetStructureID":909,"Label":"117463-909 via Conventional from 117464 -> 53743","Type":"Conventional","Directional":true,"Links":[{"SourceID":117464,"TargetID":53743,"Directional":true}]},{"ID":20784,"SourceStructureID":117466,"TargetStructureID":909,"Label":"117466-909 via Conventional from 117467 -> 53744","Type":"Conventional","Directional":true,"Links":[{"SourceID":117467,"TargetID":53744,"Directional":true}]},{"ID":20785,"SourceStructureID":117470,"TargetStructureID":909,"Label":"117470-909 via Conventional from 117471 -> 53745, 130086 -> 130087","Type":"Conventional","Directional":true,"Links":[{"SourceID":117471,"TargetID":53745,"Directional":true},{"SourceID":130086,"TargetID":130087,"Directional":true}]},{"ID":20786,"SourceStructureID":117476,"TargetStructureID":909,"Label":"117476-909 via Conventional from 117477 -> 117478","Type":"Conventional","Directional":true,"Links":[{"SourceID":117477,"TargetID":117478,"Directional":true}]},{"ID":20787,"SourceStructureID":117659,"TargetStructureID":909,"Label":"117659-909 via Conventional from 117660 -> 117661","Type":"Conventional","Directional":true,"Links":[{"SourceID":117660,"TargetID":117661,"Directional":true}]},{"ID":20788,"SourceStructureID":117679,"TargetStructureID":909,"Label":"117679-909 via Conventional from 117680 -> 117457","Type":"Conventional","Directional":true,"Links":[{"SourceID":117680,"TargetID":117457,"Directional":true}]},{"ID":20789,"SourceStructureID":117689,"TargetStructureID":909,"Label":"117689-909 via Conventional from 117690 -> 53754, 120173 -> 120172","Type":"Conventional","Directional":true,"Links":[{"SourceID":117690,"TargetID":53754,"Directional":true},{"SourceID":120173,"TargetID":120172,"Directional":true}]},{"ID":20790,"SourceStructureID":117778,"TargetStructureID":28950,"Label":"117778-28950 via Ribbon Synapse from 117788 -> 28992, 117789 -> 28992","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117788,"TargetID":28992,"Directional":true},{"SourceID":117789,"TargetID":28992,"Directional":true}]},{"ID":20791,"SourceStructureID":117803,"TargetStructureID":7129,"Label":"117803-7129 via Conventional from 127741 -> 127742","Type":"Conventional","Directional":true,"Links":[{"SourceID":127741,"TargetID":127742,"Directional":true}]},{"ID":20792,"SourceStructureID":117820,"TargetStructureID":909,"Label":"117820-909 via Conventional from 117821 -> 117822","Type":"Conventional","Directional":true,"Links":[{"SourceID":117821,"TargetID":117822,"Directional":true}]},{"ID":20793,"SourceStructureID":117851,"TargetStructureID":909,"Label":"117851-909 via Conventional from 130282 -> 130283","Type":"Conventional","Directional":true,"Links":[{"SourceID":130282,"TargetID":130283,"Directional":true}]},{"ID":20794,"SourceStructureID":117851,"TargetStructureID":5297,"Label":"117851-5297 via Conventional from 121469 -> 61482","Type":"Conventional","Directional":true,"Links":[{"SourceID":121469,"TargetID":61482,"Directional":true}]},{"ID":20795,"SourceStructureID":117858,"TargetStructureID":909,"Label":"117858-909 via Conventional from 117859 -> 117828","Type":"Conventional","Directional":true,"Links":[{"SourceID":117859,"TargetID":117828,"Directional":true}]},{"ID":20796,"SourceStructureID":117860,"TargetStructureID":909,"Label":"117860-909 via Conventional from 117861 -> 117850","Type":"Conventional","Directional":true,"Links":[{"SourceID":117861,"TargetID":117850,"Directional":true}]},{"ID":20797,"SourceStructureID":117860,"TargetStructureID":5297,"Label":"117860-5297 via Conventional from 121335 -> 116445","Type":"Conventional","Directional":true,"Links":[{"SourceID":121335,"TargetID":116445,"Directional":true}]},{"ID":20798,"SourceStructureID":117876,"TargetStructureID":909,"Label":"117876-909 via Conventional from 117877 -> 117870, 117886 -> 117885","Type":"Conventional","Directional":true,"Links":[{"SourceID":117877,"TargetID":117870,"Directional":true},{"SourceID":117886,"TargetID":117885,"Directional":true}]},{"ID":20799,"SourceStructureID":117887,"TargetStructureID":909,"Label":"117887-909 via Conventional from 117888 -> 53795","Type":"Conventional","Directional":true,"Links":[{"SourceID":117888,"TargetID":53795,"Directional":true}]},{"ID":20800,"SourceStructureID":117906,"TargetStructureID":909,"Label":"117906-909 via Conventional from 117908 -> 117909","Type":"Conventional","Directional":true,"Links":[{"SourceID":117908,"TargetID":117909,"Directional":true}]},{"ID":20801,"SourceStructureID":117919,"TargetStructureID":909,"Label":"117919-909 via Conventional from 117920 -> 117918","Type":"Conventional","Directional":true,"Links":[{"SourceID":117920,"TargetID":117918,"Directional":true}]},{"ID":20802,"SourceStructureID":117919,"TargetStructureID":5284,"Label":"117919-5284 via Conventional from 117921 -> 64591","Type":"Conventional","Directional":true,"Links":[{"SourceID":117921,"TargetID":64591,"Directional":true}]},{"ID":20803,"SourceStructureID":117990,"TargetStructureID":7861,"Label":"117990-7861 via Ribbon Synapse from 117994 -> 117995","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":117994,"TargetID":117995,"Directional":true}]},{"ID":20804,"SourceStructureID":118258,"TargetStructureID":118258,"Label":"118258-118258 via Conventional from 127800 -> 127801","Type":"Conventional","Directional":true,"Links":[{"SourceID":127800,"TargetID":127801,"Directional":true}]},{"ID":20805,"SourceStructureID":118258,"TargetStructureID":127796,"Label":"118258-127796 via Ribbon Synapse from 127802 -> 127803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127802,"TargetID":127803,"Directional":true}]},{"ID":20806,"SourceStructureID":118395,"TargetStructureID":909,"Label":"118395-909 via Conventional from 118397 -> 53803","Type":"Conventional","Directional":true,"Links":[{"SourceID":118397,"TargetID":53803,"Directional":true}]},{"ID":20807,"SourceStructureID":118446,"TargetStructureID":909,"Label":"118446-909 via Conventional from 118451 -> 118452","Type":"Conventional","Directional":true,"Links":[{"SourceID":118451,"TargetID":118452,"Directional":true}]},{"ID":20808,"SourceStructureID":118949,"TargetStructureID":26079,"Label":"118949-26079 via Conventional from 118950 -> 118948","Type":"Conventional","Directional":true,"Links":[{"SourceID":118950,"TargetID":118948,"Directional":true}]},{"ID":20809,"SourceStructureID":118952,"TargetStructureID":5513,"Label":"118952-5513 via Conventional from 118953 -> 29591","Type":"Conventional","Directional":true,"Links":[{"SourceID":118953,"TargetID":29591,"Directional":true}]},{"ID":20810,"SourceStructureID":118997,"TargetStructureID":31700,"Label":"118997-31700 via Conventional from 118998 -> 118996","Type":"Conventional","Directional":true,"Links":[{"SourceID":118998,"TargetID":118996,"Directional":true}]},{"ID":20811,"SourceStructureID":119000,"TargetStructureID":330,"Label":"119000-330 via Conventional from 119003 -> 119004","Type":"Conventional","Directional":true,"Links":[{"SourceID":119003,"TargetID":119004,"Directional":true}]},{"ID":20812,"SourceStructureID":119000,"TargetStructureID":606,"Label":"119000-606 via Conventional from 119014 -> 9796","Type":"Conventional","Directional":true,"Links":[{"SourceID":119014,"TargetID":9796,"Directional":true}]},{"ID":20813,"SourceStructureID":119000,"TargetStructureID":6165,"Label":"119000-6165 via Conventional from 119039 -> 119040","Type":"Conventional","Directional":true,"Links":[{"SourceID":119039,"TargetID":119040,"Directional":true}]},{"ID":20814,"SourceStructureID":119000,"TargetStructureID":31700,"Label":"119000-31700 via Conventional from 119001 -> 118999","Type":"Conventional","Directional":true,"Links":[{"SourceID":119001,"TargetID":118999,"Directional":true}]},{"ID":20815,"SourceStructureID":119000,"TargetStructureID":119008,"Label":"119000-119008 via Conventional from 119007 -> 119010","Type":"Conventional","Directional":true,"Links":[{"SourceID":119007,"TargetID":119010,"Directional":true}]},{"ID":20816,"SourceStructureID":119000,"TargetStructureID":119017,"Label":"119000-119017 via Conventional from 119016 -> 119018","Type":"Conventional","Directional":true,"Links":[{"SourceID":119016,"TargetID":119018,"Directional":true}]},{"ID":20817,"SourceStructureID":119000,"TargetStructureID":119020,"Label":"119000-119020 via Conventional from 119019 -> 119021","Type":"Conventional","Directional":true,"Links":[{"SourceID":119019,"TargetID":119021,"Directional":true}]},{"ID":20818,"SourceStructureID":119008,"TargetStructureID":330,"Label":"119008-330 via Conventional from 119009 -> 119011","Type":"Conventional","Directional":true,"Links":[{"SourceID":119009,"TargetID":119011,"Directional":true}]},{"ID":20819,"SourceStructureID":119154,"TargetStructureID":64673,"Label":"119154-64673 via Conventional from 119168 -> 64681","Type":"Conventional","Directional":true,"Links":[{"SourceID":119168,"TargetID":64681,"Directional":true}]},{"ID":20820,"SourceStructureID":119241,"TargetStructureID":52257,"Label":"119241-52257 via Conventional from 119242 -> 119245, 119243 -> 119244","Type":"Conventional","Directional":true,"Links":[{"SourceID":119242,"TargetID":119245,"Directional":true},{"SourceID":119243,"TargetID":119244,"Directional":true}]},{"ID":20821,"SourceStructureID":119270,"TargetStructureID":5281,"Label":"119270-5281 via Conventional from 119271 -> 36784","Type":"Conventional","Directional":true,"Links":[{"SourceID":119271,"TargetID":36784,"Directional":true}]},{"ID":20822,"SourceStructureID":119388,"TargetStructureID":13525,"Label":"119388-13525 via Conventional from 119409 -> 119406","Type":"Conventional","Directional":true,"Links":[{"SourceID":119409,"TargetID":119406,"Directional":true}]},{"ID":20823,"SourceStructureID":119517,"TargetStructureID":5487,"Label":"119517-5487 via BC Conventional Synapse from 119526 -> 119525","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":119526,"TargetID":119525,"Directional":true}]},{"ID":20824,"SourceStructureID":119517,"TargetStructureID":6300,"Label":"119517-6300 via Ribbon Synapse from 119520 -> 119516","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119520,"TargetID":119516,"Directional":true}]},{"ID":20825,"SourceStructureID":119517,"TargetStructureID":54969,"Label":"119517-54969 via Ribbon Synapse from 119521 -> 54970","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119521,"TargetID":54970,"Directional":true}]},{"ID":20826,"SourceStructureID":119547,"TargetStructureID":8035,"Label":"119547-8035 via Ribbon Synapse from 119555 -> 25020","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":119555,"TargetID":25020,"Directional":true}]},{"ID":20827,"SourceStructureID":119945,"TargetStructureID":119943,"Label":"119945-119943 via Conventional from 119946 -> 119944","Type":"Conventional","Directional":true,"Links":[{"SourceID":119946,"TargetID":119944,"Directional":true}]},{"ID":20828,"SourceStructureID":119971,"TargetStructureID":5281,"Label":"119971-5281 via Conventional from 119972 -> 119970","Type":"Conventional","Directional":true,"Links":[{"SourceID":119972,"TargetID":119970,"Directional":true}]},{"ID":20829,"SourceStructureID":120194,"TargetStructureID":909,"Label":"120194-909 via Conventional from 120195 -> 118423","Type":"Conventional","Directional":true,"Links":[{"SourceID":120195,"TargetID":118423,"Directional":true}]},{"ID":20830,"SourceStructureID":120197,"TargetStructureID":909,"Label":"120197-909 via Conventional from 120198 -> 120181","Type":"Conventional","Directional":true,"Links":[{"SourceID":120198,"TargetID":120181,"Directional":true}]},{"ID":20831,"SourceStructureID":120253,"TargetStructureID":3756,"Label":"120253-3756 via Conventional from 120254 -> 116038","Type":"Conventional","Directional":true,"Links":[{"SourceID":120254,"TargetID":116038,"Directional":true}]},{"ID":20832,"SourceStructureID":120256,"TargetStructureID":5531,"Label":"120256-5531 via Conventional from 120257 -> 107201","Type":"Conventional","Directional":true,"Links":[{"SourceID":120257,"TargetID":107201,"Directional":true}]},{"ID":20833,"SourceStructureID":120270,"TargetStructureID":5531,"Label":"120270-5531 via Conventional from 120272 -> 108023","Type":"Conventional","Directional":true,"Links":[{"SourceID":120272,"TargetID":108023,"Directional":true}]},{"ID":20834,"SourceStructureID":120282,"TargetStructureID":3756,"Label":"120282-3756 via Conventional from 120283 -> 116006, 120308 -> 116023","Type":"Conventional","Directional":true,"Links":[{"SourceID":120283,"TargetID":116006,"Directional":true},{"SourceID":120308,"TargetID":116023,"Directional":true}]},{"ID":20835,"SourceStructureID":120285,"TargetStructureID":3756,"Label":"120285-3756 via Conventional from 120287 -> 116010","Type":"Conventional","Directional":true,"Links":[{"SourceID":120287,"TargetID":116010,"Directional":true}]},{"ID":20836,"SourceStructureID":120288,"TargetStructureID":3756,"Label":"120288-3756 via Conventional from 120290 -> 116013","Type":"Conventional","Directional":true,"Links":[{"SourceID":120290,"TargetID":116013,"Directional":true}]},{"ID":20837,"SourceStructureID":120291,"TargetStructureID":3756,"Label":"120291-3756 via Conventional from 120294 -> 116014, 120298 -> 116016","Type":"Conventional","Directional":true,"Links":[{"SourceID":120294,"TargetID":116014,"Directional":true},{"SourceID":120298,"TargetID":116016,"Directional":true}]},{"ID":20838,"SourceStructureID":120299,"TargetStructureID":3756,"Label":"120299-3756 via Conventional from 120300 -> 116019","Type":"Conventional","Directional":true,"Links":[{"SourceID":120300,"TargetID":116019,"Directional":true}]},{"ID":20839,"SourceStructureID":120299,"TargetStructureID":5297,"Label":"120299-5297 via Conventional from 121361 -> 116513","Type":"Conventional","Directional":true,"Links":[{"SourceID":121361,"TargetID":116513,"Directional":true}]},{"ID":20840,"SourceStructureID":120303,"TargetStructureID":3756,"Label":"120303-3756 via Conventional from 120307 -> 116020","Type":"Conventional","Directional":true,"Links":[{"SourceID":120307,"TargetID":116020,"Directional":true}]},{"ID":20841,"SourceStructureID":120309,"TargetStructureID":3756,"Label":"120309-3756 via Conventional from 120310 -> 116028","Type":"Conventional","Directional":true,"Links":[{"SourceID":120310,"TargetID":116028,"Directional":true}]},{"ID":20842,"SourceStructureID":120318,"TargetStructureID":3756,"Label":"120318-3756 via Conventional from 120319 -> 116032","Type":"Conventional","Directional":true,"Links":[{"SourceID":120319,"TargetID":116032,"Directional":true}]},{"ID":20843,"SourceStructureID":120321,"TargetStructureID":6050,"Label":"120321-6050 via Conventional from 128794 -> 127649","Type":"Conventional","Directional":true,"Links":[{"SourceID":128794,"TargetID":127649,"Directional":true}]},{"ID":20844,"SourceStructureID":120323,"TargetStructureID":3756,"Label":"120323-3756 via Conventional from 120324 -> 116040, 120325 -> 116040","Type":"Conventional","Directional":true,"Links":[{"SourceID":120324,"TargetID":116040,"Directional":true},{"SourceID":120325,"TargetID":116040,"Directional":true}]},{"ID":20845,"SourceStructureID":120329,"TargetStructureID":3756,"Label":"120329-3756 via Conventional from 120330 -> 116049","Type":"Conventional","Directional":true,"Links":[{"SourceID":120330,"TargetID":116049,"Directional":true}]},{"ID":20846,"SourceStructureID":120331,"TargetStructureID":3756,"Label":"120331-3756 via Conventional from 120332 -> 116053","Type":"Conventional","Directional":true,"Links":[{"SourceID":120332,"TargetID":116053,"Directional":true}]},{"ID":20847,"SourceStructureID":120334,"TargetStructureID":3756,"Label":"120334-3756 via Conventional from 120336 -> 116055","Type":"Conventional","Directional":true,"Links":[{"SourceID":120336,"TargetID":116055,"Directional":true}]},{"ID":20848,"SourceStructureID":120334,"TargetStructureID":5598,"Label":"120334-5598 via Conventional from 120335 -> 115254","Type":"Conventional","Directional":true,"Links":[{"SourceID":120335,"TargetID":115254,"Directional":true}]},{"ID":20849,"SourceStructureID":120337,"TargetStructureID":3756,"Label":"120337-3756 via Conventional from 120338 -> 116056","Type":"Conventional","Directional":true,"Links":[{"SourceID":120338,"TargetID":116056,"Directional":true}]},{"ID":20850,"SourceStructureID":120339,"TargetStructureID":3756,"Label":"120339-3756 via Conventional from 120340 -> 116057","Type":"Conventional","Directional":true,"Links":[{"SourceID":120340,"TargetID":116057,"Directional":true}]},{"ID":20851,"SourceStructureID":120343,"TargetStructureID":3756,"Label":"120343-3756 via Conventional from 120344 -> 116066","Type":"Conventional","Directional":true,"Links":[{"SourceID":120344,"TargetID":116066,"Directional":true}]},{"ID":20852,"SourceStructureID":120343,"TargetStructureID":116142,"Label":"120343-116142 via Conventional from 129180 -> 129178","Type":"Conventional","Directional":true,"Links":[{"SourceID":129180,"TargetID":129178,"Directional":true}]},{"ID":20853,"SourceStructureID":120347,"TargetStructureID":3756,"Label":"120347-3756 via Conventional from 120348 -> 116067","Type":"Conventional","Directional":true,"Links":[{"SourceID":120348,"TargetID":116067,"Directional":true}]},{"ID":20854,"SourceStructureID":120355,"TargetStructureID":3756,"Label":"120355-3756 via Conventional from 120356 -> 116081","Type":"Conventional","Directional":true,"Links":[{"SourceID":120356,"TargetID":116081,"Directional":true}]},{"ID":20855,"SourceStructureID":120359,"TargetStructureID":3756,"Label":"120359-3756 via Conventional from 120360 -> 116083","Type":"Conventional","Directional":true,"Links":[{"SourceID":120360,"TargetID":116083,"Directional":true}]},{"ID":20856,"SourceStructureID":120361,"TargetStructureID":3756,"Label":"120361-3756 via Conventional from 120362 -> 116096","Type":"Conventional","Directional":true,"Links":[{"SourceID":120362,"TargetID":116096,"Directional":true}]},{"ID":20857,"SourceStructureID":120370,"TargetStructureID":3756,"Label":"120370-3756 via Conventional from 120371 -> 116100","Type":"Conventional","Directional":true,"Links":[{"SourceID":120371,"TargetID":116100,"Directional":true}]},{"ID":20858,"SourceStructureID":120372,"TargetStructureID":3756,"Label":"120372-3756 via Conventional from 120373 -> 116109","Type":"Conventional","Directional":true,"Links":[{"SourceID":120373,"TargetID":116109,"Directional":true}]},{"ID":20859,"SourceStructureID":120375,"TargetStructureID":3756,"Label":"120375-3756 via Conventional from 120376 -> 116114","Type":"Conventional","Directional":true,"Links":[{"SourceID":120376,"TargetID":116114,"Directional":true}]},{"ID":20860,"SourceStructureID":120379,"TargetStructureID":3756,"Label":"120379-3756 via Conventional from 120380 -> 116130, 120384 -> 116139","Type":"Conventional","Directional":true,"Links":[{"SourceID":120380,"TargetID":116130,"Directional":true},{"SourceID":120384,"TargetID":116139,"Directional":true}]},{"ID":20861,"SourceStructureID":120379,"TargetStructureID":116142,"Label":"120379-116142 via Conventional from 120386 -> 120943","Type":"Conventional","Directional":true,"Links":[{"SourceID":120386,"TargetID":120943,"Directional":true}]},{"ID":20862,"SourceStructureID":120389,"TargetStructureID":3756,"Label":"120389-3756 via Conventional from 120390 -> 116141","Type":"Conventional","Directional":true,"Links":[{"SourceID":120390,"TargetID":116141,"Directional":true}]},{"ID":20863,"SourceStructureID":120393,"TargetStructureID":3756,"Label":"120393-3756 via Conventional from 120394 -> 116148, 129412 -> 129411","Type":"Conventional","Directional":true,"Links":[{"SourceID":120394,"TargetID":116148,"Directional":true},{"SourceID":129412,"TargetID":129411,"Directional":true}]},{"ID":20864,"SourceStructureID":120393,"TargetStructureID":6047,"Label":"120393-6047 via Conventional from 120395 -> 113351","Type":"Conventional","Directional":true,"Links":[{"SourceID":120395,"TargetID":113351,"Directional":true}]},{"ID":20865,"SourceStructureID":120396,"TargetStructureID":3756,"Label":"120396-3756 via Conventional from 120397 -> 116152","Type":"Conventional","Directional":true,"Links":[{"SourceID":120397,"TargetID":116152,"Directional":true}]},{"ID":20866,"SourceStructureID":120398,"TargetStructureID":3756,"Label":"120398-3756 via Conventional from 120399 -> 116157","Type":"Conventional","Directional":true,"Links":[{"SourceID":120399,"TargetID":116157,"Directional":true}]},{"ID":20867,"SourceStructureID":120400,"TargetStructureID":3756,"Label":"120400-3756 via Conventional from 120401 -> 116159","Type":"Conventional","Directional":true,"Links":[{"SourceID":120401,"TargetID":116159,"Directional":true}]},{"ID":20868,"SourceStructureID":120403,"TargetStructureID":3756,"Label":"120403-3756 via Conventional from 120404 -> 116161","Type":"Conventional","Directional":true,"Links":[{"SourceID":120404,"TargetID":116161,"Directional":true}]},{"ID":20869,"SourceStructureID":120409,"TargetStructureID":3756,"Label":"120409-3756 via Conventional from 120414 -> 116162","Type":"Conventional","Directional":true,"Links":[{"SourceID":120414,"TargetID":116162,"Directional":true}]},{"ID":20870,"SourceStructureID":120416,"TargetStructureID":3756,"Label":"120416-3756 via Conventional from 120418 -> 116165, 120558 -> 56909","Type":"Conventional","Directional":true,"Links":[{"SourceID":120418,"TargetID":116165,"Directional":true},{"SourceID":120558,"TargetID":56909,"Directional":true}]},{"ID":20871,"SourceStructureID":120420,"TargetStructureID":3756,"Label":"120420-3756 via Conventional from 120421 -> 116167","Type":"Conventional","Directional":true,"Links":[{"SourceID":120421,"TargetID":116167,"Directional":true}]},{"ID":20872,"SourceStructureID":120423,"TargetStructureID":3756,"Label":"120423-3756 via Conventional from 120424 -> 116175","Type":"Conventional","Directional":true,"Links":[{"SourceID":120424,"TargetID":116175,"Directional":true}]},{"ID":20873,"SourceStructureID":120425,"TargetStructureID":3756,"Label":"120425-3756 via Conventional from 120426 -> 116176","Type":"Conventional","Directional":true,"Links":[{"SourceID":120426,"TargetID":116176,"Directional":true}]},{"ID":20874,"SourceStructureID":120431,"TargetStructureID":3756,"Label":"120431-3756 via Conventional from 120434 -> 116188","Type":"Conventional","Directional":true,"Links":[{"SourceID":120434,"TargetID":116188,"Directional":true}]},{"ID":20875,"SourceStructureID":120439,"TargetStructureID":3756,"Label":"120439-3756 via Conventional from 120440 -> 116189","Type":"Conventional","Directional":true,"Links":[{"SourceID":120440,"TargetID":116189,"Directional":true}]},{"ID":20876,"SourceStructureID":120445,"TargetStructureID":3756,"Label":"120445-3756 via Conventional from 120446 -> 116205","Type":"Conventional","Directional":true,"Links":[{"SourceID":120446,"TargetID":116205,"Directional":true}]},{"ID":20877,"SourceStructureID":120445,"TargetStructureID":6050,"Label":"120445-6050 via Conventional from 120447 -> 113894","Type":"Conventional","Directional":true,"Links":[{"SourceID":120447,"TargetID":113894,"Directional":true}]},{"ID":20878,"SourceStructureID":120448,"TargetStructureID":3756,"Label":"120448-3756 via Conventional from 120449 -> 116207","Type":"Conventional","Directional":true,"Links":[{"SourceID":120449,"TargetID":116207,"Directional":true}]},{"ID":20879,"SourceStructureID":120448,"TargetStructureID":6050,"Label":"120448-6050 via Conventional from 127247 -> 127246","Type":"Conventional","Directional":true,"Links":[{"SourceID":127247,"TargetID":127246,"Directional":true}]},{"ID":20880,"SourceStructureID":120452,"TargetStructureID":3756,"Label":"120452-3756 via Conventional from 128971 -> 116215","Type":"Conventional","Directional":true,"Links":[{"SourceID":128971,"TargetID":116215,"Directional":true}]},{"ID":20881,"SourceStructureID":120452,"TargetStructureID":6050,"Label":"120452-6050 via Conventional from 120453 -> 51665","Type":"Conventional","Directional":true,"Links":[{"SourceID":120453,"TargetID":51665,"Directional":true}]},{"ID":20882,"SourceStructureID":120456,"TargetStructureID":3756,"Label":"120456-3756 via Conventional from 120457 -> 116222","Type":"Conventional","Directional":true,"Links":[{"SourceID":120457,"TargetID":116222,"Directional":true}]},{"ID":20883,"SourceStructureID":120458,"TargetStructureID":3756,"Label":"120458-3756 via Conventional from 120459 -> 116227","Type":"Conventional","Directional":true,"Links":[{"SourceID":120459,"TargetID":116227,"Directional":true}]},{"ID":20884,"SourceStructureID":120458,"TargetStructureID":6050,"Label":"120458-6050 via Conventional from 120460 -> 114310","Type":"Conventional","Directional":true,"Links":[{"SourceID":120460,"TargetID":114310,"Directional":true}]},{"ID":20885,"SourceStructureID":120461,"TargetStructureID":3756,"Label":"120461-3756 via Conventional from 120462 -> 116230","Type":"Conventional","Directional":true,"Links":[{"SourceID":120462,"TargetID":116230,"Directional":true}]},{"ID":20886,"SourceStructureID":120464,"TargetStructureID":3756,"Label":"120464-3756 via Conventional from 120465 -> 116231","Type":"Conventional","Directional":true,"Links":[{"SourceID":120465,"TargetID":116231,"Directional":true}]},{"ID":20887,"SourceStructureID":120466,"TargetStructureID":3756,"Label":"120466-3756 via Conventional from 120467 -> 116232","Type":"Conventional","Directional":true,"Links":[{"SourceID":120467,"TargetID":116232,"Directional":true}]},{"ID":20888,"SourceStructureID":120466,"TargetStructureID":6050,"Label":"120466-6050 via Conventional from 127107 -> 127106","Type":"Conventional","Directional":true,"Links":[{"SourceID":127107,"TargetID":127106,"Directional":true}]},{"ID":20889,"SourceStructureID":120470,"TargetStructureID":3756,"Label":"120470-3756 via Conventional from 120471 -> 116241","Type":"Conventional","Directional":true,"Links":[{"SourceID":120471,"TargetID":116241,"Directional":true}]},{"ID":20890,"SourceStructureID":120472,"TargetStructureID":3756,"Label":"120472-3756 via Conventional from 120473 -> 116250","Type":"Conventional","Directional":true,"Links":[{"SourceID":120473,"TargetID":116250,"Directional":true}]},{"ID":20891,"SourceStructureID":120474,"TargetStructureID":3756,"Label":"120474-3756 via Conventional from 120475 -> 116252","Type":"Conventional","Directional":true,"Links":[{"SourceID":120475,"TargetID":116252,"Directional":true}]},{"ID":20892,"SourceStructureID":120476,"TargetStructureID":3756,"Label":"120476-3756 via Conventional from 120477 -> 116267","Type":"Conventional","Directional":true,"Links":[{"SourceID":120477,"TargetID":116267,"Directional":true}]},{"ID":20893,"SourceStructureID":120478,"TargetStructureID":3756,"Label":"120478-3756 via Conventional from 120479 -> 116268","Type":"Conventional","Directional":true,"Links":[{"SourceID":120479,"TargetID":116268,"Directional":true}]},{"ID":20894,"SourceStructureID":120480,"TargetStructureID":3756,"Label":"120480-3756 via Conventional from 120481 -> 116274","Type":"Conventional","Directional":true,"Links":[{"SourceID":120481,"TargetID":116274,"Directional":true}]},{"ID":20895,"SourceStructureID":120482,"TargetStructureID":3756,"Label":"120482-3756 via Conventional from 120483 -> 116276","Type":"Conventional","Directional":true,"Links":[{"SourceID":120483,"TargetID":116276,"Directional":true}]},{"ID":20896,"SourceStructureID":120484,"TargetStructureID":3756,"Label":"120484-3756 via Conventional from 120485 -> 116282","Type":"Conventional","Directional":true,"Links":[{"SourceID":120485,"TargetID":116282,"Directional":true}]},{"ID":20897,"SourceStructureID":120489,"TargetStructureID":3756,"Label":"120489-3756 via Conventional from 120490 -> 116285","Type":"Conventional","Directional":true,"Links":[{"SourceID":120490,"TargetID":116285,"Directional":true}]},{"ID":20898,"SourceStructureID":120489,"TargetStructureID":24174,"Label":"120489-24174 via Conventional from 129115 -> 129116, 129115 -> 129118","Type":"Conventional","Directional":true,"Links":[{"SourceID":129115,"TargetID":129116,"Directional":true},{"SourceID":129115,"TargetID":129118,"Directional":true}]},{"ID":20899,"SourceStructureID":120489,"TargetStructureID":120497,"Label":"120489-120497 via Conventional from 129121 -> 129122","Type":"Conventional","Directional":true,"Links":[{"SourceID":129121,"TargetID":129122,"Directional":true}]},{"ID":20900,"SourceStructureID":120494,"TargetStructureID":3756,"Label":"120494-3756 via Conventional from 120496 -> 116288","Type":"Conventional","Directional":true,"Links":[{"SourceID":120496,"TargetID":116288,"Directional":true}]},{"ID":20901,"SourceStructureID":120494,"TargetStructureID":5598,"Label":"120494-5598 via Conventional from 120495 -> 114607","Type":"Conventional","Directional":true,"Links":[{"SourceID":120495,"TargetID":114607,"Directional":true}]},{"ID":20902,"SourceStructureID":120497,"TargetStructureID":3756,"Label":"120497-3756 via Conventional from 120498 -> 116291","Type":"Conventional","Directional":true,"Links":[{"SourceID":120498,"TargetID":116291,"Directional":true}]},{"ID":20903,"SourceStructureID":120499,"TargetStructureID":3756,"Label":"120499-3756 via Conventional from 120504 -> 116295","Type":"Conventional","Directional":true,"Links":[{"SourceID":120504,"TargetID":116295,"Directional":true}]},{"ID":20904,"SourceStructureID":120499,"TargetStructureID":120523,"Label":"120499-120523 via Conventional from 129163 -> 129164","Type":"Conventional","Directional":true,"Links":[{"SourceID":129163,"TargetID":129164,"Directional":true}]},{"ID":20905,"SourceStructureID":120507,"TargetStructureID":3756,"Label":"120507-3756 via Conventional from 120508 -> 116301","Type":"Conventional","Directional":true,"Links":[{"SourceID":120508,"TargetID":116301,"Directional":true}]},{"ID":20906,"SourceStructureID":120509,"TargetStructureID":3756,"Label":"120509-3756 via Conventional from 120512 -> 119334","Type":"Conventional","Directional":true,"Links":[{"SourceID":120512,"TargetID":119334,"Directional":true}]},{"ID":20907,"SourceStructureID":120513,"TargetStructureID":3756,"Label":"120513-3756 via Conventional from 120515 -> 119337, 129241 -> 129240","Type":"Conventional","Directional":true,"Links":[{"SourceID":120515,"TargetID":119337,"Directional":true},{"SourceID":129241,"TargetID":129240,"Directional":true}]},{"ID":20908,"SourceStructureID":120518,"TargetStructureID":3756,"Label":"120518-3756 via Conventional from 120519 -> 119339, 129236 -> 129235","Type":"Conventional","Directional":true,"Links":[{"SourceID":120519,"TargetID":119339,"Directional":true},{"SourceID":129236,"TargetID":129235,"Directional":true}]},{"ID":20909,"SourceStructureID":120521,"TargetStructureID":3756,"Label":"120521-3756 via Conventional from 120522 -> 120295","Type":"Conventional","Directional":true,"Links":[{"SourceID":120522,"TargetID":120295,"Directional":true}]},{"ID":20910,"SourceStructureID":120523,"TargetStructureID":3756,"Label":"120523-3756 via Conventional from 120524 -> 35856","Type":"Conventional","Directional":true,"Links":[{"SourceID":120524,"TargetID":35856,"Directional":true}]},{"ID":20911,"SourceStructureID":120534,"TargetStructureID":3756,"Label":"120534-3756 via Conventional from 120535 -> 37804","Type":"Conventional","Directional":true,"Links":[{"SourceID":120535,"TargetID":37804,"Directional":true}]},{"ID":20912,"SourceStructureID":120538,"TargetStructureID":3756,"Label":"120538-3756 via Conventional from 120541 -> 54432","Type":"Conventional","Directional":true,"Links":[{"SourceID":120541,"TargetID":54432,"Directional":true}]},{"ID":20913,"SourceStructureID":120542,"TargetStructureID":3756,"Label":"120542-3756 via Conventional from 120543 -> 54433","Type":"Conventional","Directional":true,"Links":[{"SourceID":120543,"TargetID":54433,"Directional":true}]},{"ID":20914,"SourceStructureID":120544,"TargetStructureID":3756,"Label":"120544-3756 via Conventional from 120545 -> 54435","Type":"Conventional","Directional":true,"Links":[{"SourceID":120545,"TargetID":54435,"Directional":true}]},{"ID":20915,"SourceStructureID":120546,"TargetStructureID":3756,"Label":"120546-3756 via Conventional from 120547 -> 54436","Type":"Conventional","Directional":true,"Links":[{"SourceID":120547,"TargetID":54436,"Directional":true}]},{"ID":20916,"SourceStructureID":120548,"TargetStructureID":3756,"Label":"120548-3756 via Conventional from 120549 -> 54447","Type":"Conventional","Directional":true,"Links":[{"SourceID":120549,"TargetID":54447,"Directional":true}]},{"ID":20917,"SourceStructureID":120552,"TargetStructureID":3756,"Label":"120552-3756 via Conventional from 120553 -> 56889","Type":"Conventional","Directional":true,"Links":[{"SourceID":120553,"TargetID":56889,"Directional":true}]},{"ID":20918,"SourceStructureID":120552,"TargetStructureID":6050,"Label":"120552-6050 via Conventional from 127434 -> 113930","Type":"Conventional","Directional":true,"Links":[{"SourceID":127434,"TargetID":113930,"Directional":true}]},{"ID":20919,"SourceStructureID":120554,"TargetStructureID":3756,"Label":"120554-3756 via Conventional from 120555 -> 56900","Type":"Conventional","Directional":true,"Links":[{"SourceID":120555,"TargetID":56900,"Directional":true}]},{"ID":20920,"SourceStructureID":120556,"TargetStructureID":3756,"Label":"120556-3756 via Conventional from 120557 -> 56903, 129372 -> 129371","Type":"Conventional","Directional":true,"Links":[{"SourceID":120557,"TargetID":56903,"Directional":true},{"SourceID":129372,"TargetID":129371,"Directional":true}]},{"ID":20921,"SourceStructureID":120559,"TargetStructureID":3756,"Label":"120559-3756 via Conventional from 120560 -> 56911","Type":"Conventional","Directional":true,"Links":[{"SourceID":120560,"TargetID":56911,"Directional":true}]},{"ID":20922,"SourceStructureID":120561,"TargetStructureID":3756,"Label":"120561-3756 via Conventional from 120562 -> 56916","Type":"Conventional","Directional":true,"Links":[{"SourceID":120562,"TargetID":56916,"Directional":true}]},{"ID":20923,"SourceStructureID":120563,"TargetStructureID":3756,"Label":"120563-3756 via Conventional from 120564 -> 56917","Type":"Conventional","Directional":true,"Links":[{"SourceID":120564,"TargetID":56917,"Directional":true}]},{"ID":20924,"SourceStructureID":120565,"TargetStructureID":3756,"Label":"120565-3756 via Conventional from 120566 -> 98367","Type":"Conventional","Directional":true,"Links":[{"SourceID":120566,"TargetID":98367,"Directional":true}]},{"ID":20925,"SourceStructureID":120630,"TargetStructureID":5531,"Label":"120630-5531 via Conventional from 120631 -> 113844","Type":"Conventional","Directional":true,"Links":[{"SourceID":120631,"TargetID":113844,"Directional":true}]},{"ID":20926,"SourceStructureID":120632,"TargetStructureID":5531,"Label":"120632-5531 via Conventional from 120633 -> 113852","Type":"Conventional","Directional":true,"Links":[{"SourceID":120633,"TargetID":113852,"Directional":true}]},{"ID":20927,"SourceStructureID":120634,"TargetStructureID":5531,"Label":"120634-5531 via Conventional from 120635 -> 113854","Type":"Conventional","Directional":true,"Links":[{"SourceID":120635,"TargetID":113854,"Directional":true}]},{"ID":20928,"SourceStructureID":120639,"TargetStructureID":5531,"Label":"120639-5531 via Conventional from 120640 -> 45216","Type":"Conventional","Directional":true,"Links":[{"SourceID":120640,"TargetID":45216,"Directional":true}]},{"ID":20929,"SourceStructureID":120674,"TargetStructureID":5531,"Label":"120674-5531 via Conventional from 120675 -> 54589","Type":"Conventional","Directional":true,"Links":[{"SourceID":120675,"TargetID":54589,"Directional":true}]},{"ID":20930,"SourceStructureID":120777,"TargetStructureID":5278,"Label":"120777-5278 via Conventional from 120778 -> 114167","Type":"Conventional","Directional":true,"Links":[{"SourceID":120778,"TargetID":114167,"Directional":true}]},{"ID":20931,"SourceStructureID":120779,"TargetStructureID":5278,"Label":"120779-5278 via Conventional from 120780 -> 114170","Type":"Conventional","Directional":true,"Links":[{"SourceID":120780,"TargetID":114170,"Directional":true}]},{"ID":20932,"SourceStructureID":120783,"TargetStructureID":5278,"Label":"120783-5278 via Conventional from 120887 -> 114183, 120927 -> 92305","Type":"Conventional","Directional":true,"Links":[{"SourceID":120887,"TargetID":114183,"Directional":true},{"SourceID":120927,"TargetID":92305,"Directional":true}]},{"ID":20933,"SourceStructureID":120885,"TargetStructureID":5278,"Label":"120885-5278 via Conventional from 120886 -> 114184","Type":"Conventional","Directional":true,"Links":[{"SourceID":120886,"TargetID":114184,"Directional":true}]},{"ID":20934,"SourceStructureID":120888,"TargetStructureID":5278,"Label":"120888-5278 via Conventional from 120889 -> 114192","Type":"Conventional","Directional":true,"Links":[{"SourceID":120889,"TargetID":114192,"Directional":true}]},{"ID":20935,"SourceStructureID":120890,"TargetStructureID":5278,"Label":"120890-5278 via Conventional from 120891 -> 114200","Type":"Conventional","Directional":true,"Links":[{"SourceID":120891,"TargetID":114200,"Directional":true}]},{"ID":20936,"SourceStructureID":120892,"TargetStructureID":5278,"Label":"120892-5278 via Conventional from 120893 -> 114514","Type":"Conventional","Directional":true,"Links":[{"SourceID":120893,"TargetID":114514,"Directional":true}]},{"ID":20937,"SourceStructureID":120894,"TargetStructureID":5278,"Label":"120894-5278 via Conventional from 120895 -> 114515","Type":"Conventional","Directional":true,"Links":[{"SourceID":120895,"TargetID":114515,"Directional":true}]},{"ID":20938,"SourceStructureID":120896,"TargetStructureID":5278,"Label":"120896-5278 via Conventional from 120897 -> 114519","Type":"Conventional","Directional":true,"Links":[{"SourceID":120897,"TargetID":114519,"Directional":true}]},{"ID":20939,"SourceStructureID":120898,"TargetStructureID":5278,"Label":"120898-5278 via Conventional from 120900 -> 114522","Type":"Conventional","Directional":true,"Links":[{"SourceID":120900,"TargetID":114522,"Directional":true}]},{"ID":20940,"SourceStructureID":120901,"TargetStructureID":5278,"Label":"120901-5278 via Conventional from 120902 -> 114523","Type":"Conventional","Directional":true,"Links":[{"SourceID":120902,"TargetID":114523,"Directional":true}]},{"ID":20941,"SourceStructureID":120903,"TargetStructureID":5278,"Label":"120903-5278 via Conventional from 120904 -> 114528","Type":"Conventional","Directional":true,"Links":[{"SourceID":120904,"TargetID":114528,"Directional":true}]},{"ID":20942,"SourceStructureID":120906,"TargetStructureID":5278,"Label":"120906-5278 via Conventional from 120907 -> 50286, 120908 -> 50286","Type":"Conventional","Directional":true,"Links":[{"SourceID":120907,"TargetID":50286,"Directional":true},{"SourceID":120908,"TargetID":50286,"Directional":true}]},{"ID":20943,"SourceStructureID":120909,"TargetStructureID":5278,"Label":"120909-5278 via Conventional from 120910 -> 50288","Type":"Conventional","Directional":true,"Links":[{"SourceID":120910,"TargetID":50288,"Directional":true}]},{"ID":20944,"SourceStructureID":120911,"TargetStructureID":5278,"Label":"120911-5278 via Conventional from 120912 -> 50289, 120912 -> 92397","Type":"Conventional","Directional":true,"Links":[{"SourceID":120912,"TargetID":50289,"Directional":true},{"SourceID":120912,"TargetID":92397,"Directional":true}]},{"ID":20945,"SourceStructureID":120913,"TargetStructureID":5278,"Label":"120913-5278 via Conventional from 120914 -> 50290","Type":"Conventional","Directional":true,"Links":[{"SourceID":120914,"TargetID":50290,"Directional":true}]},{"ID":20946,"SourceStructureID":120915,"TargetStructureID":5278,"Label":"120915-5278 via Conventional from 120916 -> 50291","Type":"Conventional","Directional":true,"Links":[{"SourceID":120916,"TargetID":50291,"Directional":true}]},{"ID":20947,"SourceStructureID":120917,"TargetStructureID":5278,"Label":"120917-5278 via Conventional from 120919 -> 53692","Type":"Conventional","Directional":true,"Links":[{"SourceID":120919,"TargetID":53692,"Directional":true}]},{"ID":20948,"SourceStructureID":120920,"TargetStructureID":5278,"Label":"120920-5278 via Conventional from 120921 -> 92020","Type":"Conventional","Directional":true,"Links":[{"SourceID":120921,"TargetID":92020,"Directional":true}]},{"ID":20949,"SourceStructureID":120923,"TargetStructureID":5278,"Label":"120923-5278 via Conventional from 120924 -> 92298","Type":"Conventional","Directional":true,"Links":[{"SourceID":120924,"TargetID":92298,"Directional":true}]},{"ID":20950,"SourceStructureID":120925,"TargetStructureID":5278,"Label":"120925-5278 via Conventional from 120926 -> 92299","Type":"Conventional","Directional":true,"Links":[{"SourceID":120926,"TargetID":92299,"Directional":true}]},{"ID":20951,"SourceStructureID":121009,"TargetStructureID":906,"Label":"121009-906 via Conventional from 121010 -> 121008","Type":"Conventional","Directional":true,"Links":[{"SourceID":121010,"TargetID":121008,"Directional":true}]},{"ID":20952,"SourceStructureID":121082,"TargetStructureID":6050,"Label":"121082-6050 via Conventional from 121084 -> 98388","Type":"Conventional","Directional":true,"Links":[{"SourceID":121084,"TargetID":98388,"Directional":true}]},{"ID":20953,"SourceStructureID":121111,"TargetStructureID":5297,"Label":"121111-5297 via Conventional from 121112 -> 103212","Type":"Conventional","Directional":true,"Links":[{"SourceID":121112,"TargetID":103212,"Directional":true}]},{"ID":20954,"SourceStructureID":121113,"TargetStructureID":5297,"Label":"121113-5297 via Conventional from 121114 -> 103213","Type":"Conventional","Directional":true,"Links":[{"SourceID":121114,"TargetID":103213,"Directional":true}]},{"ID":20955,"SourceStructureID":121117,"TargetStructureID":5297,"Label":"121117-5297 via Conventional from 121118 -> 113611","Type":"Conventional","Directional":true,"Links":[{"SourceID":121118,"TargetID":113611,"Directional":true}]},{"ID":20956,"SourceStructureID":121121,"TargetStructureID":5297,"Label":"121121-5297 via Conventional from 121122 -> 116321","Type":"Conventional","Directional":true,"Links":[{"SourceID":121122,"TargetID":116321,"Directional":true}]},{"ID":20957,"SourceStructureID":121123,"TargetStructureID":5297,"Label":"121123-5297 via Conventional from 121125 -> 116322","Type":"Conventional","Directional":true,"Links":[{"SourceID":121125,"TargetID":116322,"Directional":true}]},{"ID":20958,"SourceStructureID":121265,"TargetStructureID":121265,"Label":"121265-121265 via Ribbon Synapse from 121267 -> 121268","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121267,"TargetID":121268,"Directional":true}]},{"ID":20959,"SourceStructureID":121282,"TargetStructureID":5284,"Label":"121282-5284 via Conventional from 121284 -> 113421","Type":"Conventional","Directional":true,"Links":[{"SourceID":121284,"TargetID":113421,"Directional":true}]},{"ID":20960,"SourceStructureID":121286,"TargetStructureID":5297,"Label":"121286-5297 via Conventional from 121287 -> 116335","Type":"Conventional","Directional":true,"Links":[{"SourceID":121287,"TargetID":116335,"Directional":true}]},{"ID":20961,"SourceStructureID":121288,"TargetStructureID":5297,"Label":"121288-5297 via Conventional from 121289 -> 116344","Type":"Conventional","Directional":true,"Links":[{"SourceID":121289,"TargetID":116344,"Directional":true}]},{"ID":20962,"SourceStructureID":121288,"TargetStructureID":5405,"Label":"121288-5405 via Conventional from 121291 -> 11185","Type":"Conventional","Directional":true,"Links":[{"SourceID":121291,"TargetID":11185,"Directional":true}]},{"ID":20963,"SourceStructureID":121292,"TargetStructureID":5297,"Label":"121292-5297 via Conventional from 121293 -> 116345","Type":"Conventional","Directional":true,"Links":[{"SourceID":121293,"TargetID":116345,"Directional":true}]},{"ID":20964,"SourceStructureID":121294,"TargetStructureID":5297,"Label":"121294-5297 via Conventional from 121295 -> 116349","Type":"Conventional","Directional":true,"Links":[{"SourceID":121295,"TargetID":116349,"Directional":true}]},{"ID":20965,"SourceStructureID":121303,"TargetStructureID":5297,"Label":"121303-5297 via Conventional from 121304 -> 116350","Type":"Conventional","Directional":true,"Links":[{"SourceID":121304,"TargetID":116350,"Directional":true}]},{"ID":20966,"SourceStructureID":121305,"TargetStructureID":5283,"Label":"121305-5283 via Conventional from 123765 -> 22383","Type":"Conventional","Directional":true,"Links":[{"SourceID":123765,"TargetID":22383,"Directional":true}]},{"ID":20967,"SourceStructureID":121305,"TargetStructureID":5297,"Label":"121305-5297 via Conventional from 121306 -> 116357","Type":"Conventional","Directional":true,"Links":[{"SourceID":121306,"TargetID":116357,"Directional":true}]},{"ID":20968,"SourceStructureID":121307,"TargetStructureID":5297,"Label":"121307-5297 via Conventional from 121308 -> 116359","Type":"Conventional","Directional":true,"Links":[{"SourceID":121308,"TargetID":116359,"Directional":true}]},{"ID":20969,"SourceStructureID":121309,"TargetStructureID":5297,"Label":"121309-5297 via Conventional from 121310 -> 116419","Type":"Conventional","Directional":true,"Links":[{"SourceID":121310,"TargetID":116419,"Directional":true}]},{"ID":20970,"SourceStructureID":121313,"TargetStructureID":5297,"Label":"121313-5297 via Conventional from 121314 -> 116421","Type":"Conventional","Directional":true,"Links":[{"SourceID":121314,"TargetID":116421,"Directional":true}]},{"ID":20971,"SourceStructureID":121315,"TargetStructureID":5297,"Label":"121315-5297 via Conventional from 121319 -> 116426","Type":"Conventional","Directional":true,"Links":[{"SourceID":121319,"TargetID":116426,"Directional":true}]},{"ID":20972,"SourceStructureID":121321,"TargetStructureID":5297,"Label":"121321-5297 via Conventional from 121322 -> 116428","Type":"Conventional","Directional":true,"Links":[{"SourceID":121322,"TargetID":116428,"Directional":true}]},{"ID":20973,"SourceStructureID":121323,"TargetStructureID":5297,"Label":"121323-5297 via Conventional from 121324 -> 116438","Type":"Conventional","Directional":true,"Links":[{"SourceID":121324,"TargetID":116438,"Directional":true}]},{"ID":20974,"SourceStructureID":121325,"TargetStructureID":5297,"Label":"121325-5297 via Conventional from 121326 -> 116440","Type":"Conventional","Directional":true,"Links":[{"SourceID":121326,"TargetID":116440,"Directional":true}]},{"ID":20975,"SourceStructureID":121331,"TargetStructureID":5297,"Label":"121331-5297 via Conventional from 121332 -> 116442","Type":"Conventional","Directional":true,"Links":[{"SourceID":121332,"TargetID":116442,"Directional":true}]},{"ID":20976,"SourceStructureID":121336,"TargetStructureID":5297,"Label":"121336-5297 via Conventional from 121338 -> 116449","Type":"Conventional","Directional":true,"Links":[{"SourceID":121338,"TargetID":116449,"Directional":true}]},{"ID":20977,"SourceStructureID":121339,"TargetStructureID":5297,"Label":"121339-5297 via Conventional from 121340 -> 116468","Type":"Conventional","Directional":true,"Links":[{"SourceID":121340,"TargetID":116468,"Directional":true}]},{"ID":20978,"SourceStructureID":121343,"TargetStructureID":5297,"Label":"121343-5297 via Conventional from 121344 -> 116469","Type":"Conventional","Directional":true,"Links":[{"SourceID":121344,"TargetID":116469,"Directional":true}]},{"ID":20979,"SourceStructureID":121345,"TargetStructureID":5297,"Label":"121345-5297 via Conventional from 121346 -> 116471","Type":"Conventional","Directional":true,"Links":[{"SourceID":121346,"TargetID":116471,"Directional":true}]},{"ID":20980,"SourceStructureID":121348,"TargetStructureID":5297,"Label":"121348-5297 via Conventional from 121352 -> 116482","Type":"Conventional","Directional":true,"Links":[{"SourceID":121352,"TargetID":116482,"Directional":true}]},{"ID":20981,"SourceStructureID":121353,"TargetStructureID":5297,"Label":"121353-5297 via Conventional from 121354 -> 116484","Type":"Conventional","Directional":true,"Links":[{"SourceID":121354,"TargetID":116484,"Directional":true}]},{"ID":20982,"SourceStructureID":121356,"TargetStructureID":5297,"Label":"121356-5297 via Conventional from 121357 -> 116500","Type":"Conventional","Directional":true,"Links":[{"SourceID":121357,"TargetID":116500,"Directional":true}]},{"ID":20983,"SourceStructureID":121362,"TargetStructureID":5297,"Label":"121362-5297 via Conventional from 121364 -> 116516","Type":"Conventional","Directional":true,"Links":[{"SourceID":121364,"TargetID":116516,"Directional":true}]},{"ID":20984,"SourceStructureID":121362,"TargetStructureID":6050,"Label":"121362-6050 via Conventional from 121363 -> 114244","Type":"Conventional","Directional":true,"Links":[{"SourceID":121363,"TargetID":114244,"Directional":true}]},{"ID":20985,"SourceStructureID":121365,"TargetStructureID":5297,"Label":"121365-5297 via Conventional from 121366 -> 116596","Type":"Conventional","Directional":true,"Links":[{"SourceID":121366,"TargetID":116596,"Directional":true}]},{"ID":20986,"SourceStructureID":121367,"TargetStructureID":5297,"Label":"121367-5297 via Conventional from 121368 -> 116606","Type":"Conventional","Directional":true,"Links":[{"SourceID":121368,"TargetID":116606,"Directional":true}]},{"ID":20987,"SourceStructureID":121369,"TargetStructureID":142,"Label":"121369-142 via Conventional from 121370 -> 30719","Type":"Conventional","Directional":true,"Links":[{"SourceID":121370,"TargetID":30719,"Directional":true}]},{"ID":20988,"SourceStructureID":121369,"TargetStructureID":5297,"Label":"121369-5297 via Conventional from 121371 -> 116607","Type":"Conventional","Directional":true,"Links":[{"SourceID":121371,"TargetID":116607,"Directional":true}]},{"ID":20989,"SourceStructureID":121372,"TargetStructureID":5297,"Label":"121372-5297 via Conventional from 121373 -> 116609","Type":"Conventional","Directional":true,"Links":[{"SourceID":121373,"TargetID":116609,"Directional":true}]},{"ID":20990,"SourceStructureID":121375,"TargetStructureID":5297,"Label":"121375-5297 via Conventional from 121377 -> 116611","Type":"Conventional","Directional":true,"Links":[{"SourceID":121377,"TargetID":116611,"Directional":true}]},{"ID":20991,"SourceStructureID":121380,"TargetStructureID":5297,"Label":"121380-5297 via Conventional from 121381 -> 116640","Type":"Conventional","Directional":true,"Links":[{"SourceID":121381,"TargetID":116640,"Directional":true}]},{"ID":20992,"SourceStructureID":121382,"TargetStructureID":5297,"Label":"121382-5297 via Conventional from 121384 -> 116642","Type":"Conventional","Directional":true,"Links":[{"SourceID":121384,"TargetID":116642,"Directional":true}]},{"ID":20993,"SourceStructureID":121387,"TargetStructureID":5297,"Label":"121387-5297 via Conventional from 121390 -> 116655","Type":"Conventional","Directional":true,"Links":[{"SourceID":121390,"TargetID":116655,"Directional":true}]},{"ID":20994,"SourceStructureID":121394,"TargetStructureID":5297,"Label":"121394-5297 via Conventional from 121396 -> 116666, 121410 -> 116695","Type":"Conventional","Directional":true,"Links":[{"SourceID":121396,"TargetID":116666,"Directional":true},{"SourceID":121410,"TargetID":116695,"Directional":true}]},{"ID":20995,"SourceStructureID":121397,"TargetStructureID":5297,"Label":"121397-5297 via Conventional from 121400 -> 116669","Type":"Conventional","Directional":true,"Links":[{"SourceID":121400,"TargetID":116669,"Directional":true}]},{"ID":20996,"SourceStructureID":121404,"TargetStructureID":5297,"Label":"121404-5297 via Conventional from 121406 -> 116674","Type":"Conventional","Directional":true,"Links":[{"SourceID":121406,"TargetID":116674,"Directional":true}]},{"ID":20997,"SourceStructureID":121407,"TargetStructureID":5297,"Label":"121407-5297 via Conventional from 121408 -> 116694","Type":"Conventional","Directional":true,"Links":[{"SourceID":121408,"TargetID":116694,"Directional":true}]},{"ID":20998,"SourceStructureID":121411,"TargetStructureID":5297,"Label":"121411-5297 via Conventional from 121412 -> 37622","Type":"Conventional","Directional":true,"Links":[{"SourceID":121412,"TargetID":37622,"Directional":true}]},{"ID":20999,"SourceStructureID":121413,"TargetStructureID":5297,"Label":"121413-5297 via Conventional from 121414 -> 37623","Type":"Conventional","Directional":true,"Links":[{"SourceID":121414,"TargetID":37623,"Directional":true}]},{"ID":21000,"SourceStructureID":121415,"TargetStructureID":5297,"Label":"121415-5297 via Conventional from 121418 -> 37666","Type":"Conventional","Directional":true,"Links":[{"SourceID":121418,"TargetID":37666,"Directional":true}]},{"ID":21001,"SourceStructureID":121420,"TargetStructureID":5297,"Label":"121420-5297 via Conventional from 121421 -> 39414","Type":"Conventional","Directional":true,"Links":[{"SourceID":121421,"TargetID":39414,"Directional":true}]},{"ID":21002,"SourceStructureID":121422,"TargetStructureID":5292,"Label":"121422-5292 via Conventional from 121424 -> 54394","Type":"Conventional","Directional":true,"Links":[{"SourceID":121424,"TargetID":54394,"Directional":true}]},{"ID":21003,"SourceStructureID":121422,"TargetStructureID":5297,"Label":"121422-5297 via Conventional from 121423 -> 39418","Type":"Conventional","Directional":true,"Links":[{"SourceID":121423,"TargetID":39418,"Directional":true}]},{"ID":21004,"SourceStructureID":121432,"TargetStructureID":5297,"Label":"121432-5297 via Conventional from 121435 -> 39434","Type":"Conventional","Directional":true,"Links":[{"SourceID":121435,"TargetID":39434,"Directional":true}]},{"ID":21005,"SourceStructureID":121437,"TargetStructureID":5297,"Label":"121437-5297 via Conventional from 121439 -> 40174","Type":"Conventional","Directional":true,"Links":[{"SourceID":121439,"TargetID":40174,"Directional":true}]},{"ID":21006,"SourceStructureID":121444,"TargetStructureID":5297,"Label":"121444-5297 via Conventional from 121446 -> 42720","Type":"Conventional","Directional":true,"Links":[{"SourceID":121446,"TargetID":42720,"Directional":true}]},{"ID":21007,"SourceStructureID":121448,"TargetStructureID":5297,"Label":"121448-5297 via Conventional from 121451 -> 42722","Type":"Conventional","Directional":true,"Links":[{"SourceID":121451,"TargetID":42722,"Directional":true}]},{"ID":21008,"SourceStructureID":121452,"TargetStructureID":5297,"Label":"121452-5297 via Conventional from 121453 -> 50321","Type":"Conventional","Directional":true,"Links":[{"SourceID":121453,"TargetID":50321,"Directional":true}]},{"ID":21009,"SourceStructureID":121454,"TargetStructureID":5297,"Label":"121454-5297 via Conventional from 121456 -> 50322","Type":"Conventional","Directional":true,"Links":[{"SourceID":121456,"TargetID":50322,"Directional":true}]},{"ID":21010,"SourceStructureID":121457,"TargetStructureID":5297,"Label":"121457-5297 via Conventional from 121458 -> 50323","Type":"Conventional","Directional":true,"Links":[{"SourceID":121458,"TargetID":50323,"Directional":true}]},{"ID":21011,"SourceStructureID":121459,"TargetStructureID":5297,"Label":"121459-5297 via Conventional from 121460 -> 53700","Type":"Conventional","Directional":true,"Links":[{"SourceID":121460,"TargetID":53700,"Directional":true}]},{"ID":21012,"SourceStructureID":121461,"TargetStructureID":5297,"Label":"121461-5297 via Conventional from 121462 -> 53701","Type":"Conventional","Directional":true,"Links":[{"SourceID":121462,"TargetID":53701,"Directional":true}]},{"ID":21013,"SourceStructureID":121463,"TargetStructureID":5297,"Label":"121463-5297 via Conventional from 121464 -> 56808","Type":"Conventional","Directional":true,"Links":[{"SourceID":121464,"TargetID":56808,"Directional":true}]},{"ID":21014,"SourceStructureID":121465,"TargetStructureID":5297,"Label":"121465-5297 via Conventional from 121466 -> 56809","Type":"Conventional","Directional":true,"Links":[{"SourceID":121466,"TargetID":56809,"Directional":true}]},{"ID":21015,"SourceStructureID":121467,"TargetStructureID":5297,"Label":"121467-5297 via Conventional from 121468 -> 56811","Type":"Conventional","Directional":true,"Links":[{"SourceID":121468,"TargetID":56811,"Directional":true}]},{"ID":21016,"SourceStructureID":121470,"TargetStructureID":5297,"Label":"121470-5297 via Conventional from 121471 -> 92303","Type":"Conventional","Directional":true,"Links":[{"SourceID":121471,"TargetID":92303,"Directional":true}]},{"ID":21017,"SourceStructureID":121472,"TargetStructureID":5297,"Label":"121472-5297 via Conventional from 121476 -> 93239","Type":"Conventional","Directional":true,"Links":[{"SourceID":121476,"TargetID":93239,"Directional":true}]},{"ID":21018,"SourceStructureID":121477,"TargetStructureID":5297,"Label":"121477-5297 via Conventional from 121483 -> 93240","Type":"Conventional","Directional":true,"Links":[{"SourceID":121483,"TargetID":93240,"Directional":true}]},{"ID":21019,"SourceStructureID":121484,"TargetStructureID":5297,"Label":"121484-5297 via Conventional from 121485 -> 93244","Type":"Conventional","Directional":true,"Links":[{"SourceID":121485,"TargetID":93244,"Directional":true}]},{"ID":21020,"SourceStructureID":121486,"TargetStructureID":5297,"Label":"121486-5297 via Conventional from 121487 -> 93245, 121535 -> 98344","Type":"Conventional","Directional":true,"Links":[{"SourceID":121487,"TargetID":93245,"Directional":true},{"SourceID":121535,"TargetID":98344,"Directional":true}]},{"ID":21021,"SourceStructureID":121488,"TargetStructureID":5297,"Label":"121488-5297 via Conventional from 121489 -> 93254","Type":"Conventional","Directional":true,"Links":[{"SourceID":121489,"TargetID":93254,"Directional":true}]},{"ID":21022,"SourceStructureID":121490,"TargetStructureID":5297,"Label":"121490-5297 via Conventional from 121492 -> 98255, 121503 -> 98282","Type":"Conventional","Directional":true,"Links":[{"SourceID":121492,"TargetID":98255,"Directional":true},{"SourceID":121503,"TargetID":98282,"Directional":true}]},{"ID":21023,"SourceStructureID":121499,"TargetStructureID":5297,"Label":"121499-5297 via Conventional from 121500 -> 98274","Type":"Conventional","Directional":true,"Links":[{"SourceID":121500,"TargetID":98274,"Directional":true}]},{"ID":21024,"SourceStructureID":121501,"TargetStructureID":5297,"Label":"121501-5297 via Conventional from 121502 -> 98275","Type":"Conventional","Directional":true,"Links":[{"SourceID":121502,"TargetID":98275,"Directional":true}]},{"ID":21025,"SourceStructureID":121511,"TargetStructureID":5297,"Label":"121511-5297 via Conventional from 121514 -> 98294, 121515 -> 98294","Type":"Conventional","Directional":true,"Links":[{"SourceID":121514,"TargetID":98294,"Directional":true},{"SourceID":121515,"TargetID":98294,"Directional":true}]},{"ID":21026,"SourceStructureID":121516,"TargetStructureID":5297,"Label":"121516-5297 via Conventional from 121518 -> 98296","Type":"Conventional","Directional":true,"Links":[{"SourceID":121518,"TargetID":98296,"Directional":true}]},{"ID":21027,"SourceStructureID":121519,"TargetStructureID":5297,"Label":"121519-5297 via Conventional from 121521 -> 98299","Type":"Conventional","Directional":true,"Links":[{"SourceID":121521,"TargetID":98299,"Directional":true}]},{"ID":21028,"SourceStructureID":121522,"TargetStructureID":5297,"Label":"121522-5297 via Conventional from 121523 -> 98301","Type":"Conventional","Directional":true,"Links":[{"SourceID":121523,"TargetID":98301,"Directional":true}]},{"ID":21029,"SourceStructureID":121524,"TargetStructureID":5297,"Label":"121524-5297 via Conventional from 121525 -> 98313","Type":"Conventional","Directional":true,"Links":[{"SourceID":121525,"TargetID":98313,"Directional":true}]},{"ID":21030,"SourceStructureID":121526,"TargetStructureID":5297,"Label":"121526-5297 via Conventional from 121527 -> 98332","Type":"Conventional","Directional":true,"Links":[{"SourceID":121527,"TargetID":98332,"Directional":true}]},{"ID":21031,"SourceStructureID":121530,"TargetStructureID":5297,"Label":"121530-5297 via Conventional from 121531 -> 98342","Type":"Conventional","Directional":true,"Links":[{"SourceID":121531,"TargetID":98342,"Directional":true}]},{"ID":21032,"SourceStructureID":121536,"TargetStructureID":5297,"Label":"121536-5297 via Conventional from 121537 -> 98472","Type":"Conventional","Directional":true,"Links":[{"SourceID":121537,"TargetID":98472,"Directional":true}]},{"ID":21033,"SourceStructureID":121663,"TargetStructureID":598,"Label":"121663-598 via Ribbon Synapse from 121665 -> 38790","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":121665,"TargetID":38790,"Directional":true}]},{"ID":21034,"SourceStructureID":121946,"TargetStructureID":121948,"Label":"121946-121948 via Conventional from 121947 -> 121949","Type":"Conventional","Directional":true,"Links":[{"SourceID":121947,"TargetID":121949,"Directional":true}]},{"ID":21035,"SourceStructureID":121952,"TargetStructureID":75130,"Label":"121952-75130 via Conventional from 121953 -> 121951","Type":"Conventional","Directional":true,"Links":[{"SourceID":121953,"TargetID":121951,"Directional":true}]},{"ID":21036,"SourceStructureID":121955,"TargetStructureID":75130,"Label":"121955-75130 via Conventional from 121956 -> 121954","Type":"Conventional","Directional":true,"Links":[{"SourceID":121956,"TargetID":121954,"Directional":true}]},{"ID":21037,"SourceStructureID":121958,"TargetStructureID":75130,"Label":"121958-75130 via Conventional from 121959 -> 121957","Type":"Conventional","Directional":true,"Links":[{"SourceID":121959,"TargetID":121957,"Directional":true}]},{"ID":21038,"SourceStructureID":121961,"TargetStructureID":75130,"Label":"121961-75130 via Conventional from 121962 -> 121960","Type":"Conventional","Directional":true,"Links":[{"SourceID":121962,"TargetID":121960,"Directional":true}]},{"ID":21039,"SourceStructureID":121967,"TargetStructureID":75130,"Label":"121967-75130 via Conventional from 121968 -> 121966","Type":"Conventional","Directional":true,"Links":[{"SourceID":121968,"TargetID":121966,"Directional":true}]},{"ID":21040,"SourceStructureID":121975,"TargetStructureID":35164,"Label":"121975-35164 via Conventional from 121976 -> 45636","Type":"Conventional","Directional":true,"Links":[{"SourceID":121976,"TargetID":45636,"Directional":true}]},{"ID":21041,"SourceStructureID":122073,"TargetStructureID":13525,"Label":"122073-13525 via Conventional from 122074 -> 122075","Type":"Conventional","Directional":true,"Links":[{"SourceID":122074,"TargetID":122075,"Directional":true}]},{"ID":21042,"SourceStructureID":122081,"TargetStructureID":43205,"Label":"122081-43205 via Ribbon Synapse from 122082 -> 122080","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122082,"TargetID":122080,"Directional":true}]},{"ID":21043,"SourceStructureID":122091,"TargetStructureID":42966,"Label":"122091-42966 via Ribbon Synapse from 122100 -> 122099","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122100,"TargetID":122099,"Directional":true}]},{"ID":21044,"SourceStructureID":122091,"TargetStructureID":42971,"Label":"122091-42971 via Ribbon Synapse from 122092 -> 122090","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122092,"TargetID":122090,"Directional":true}]},{"ID":21045,"SourceStructureID":122104,"TargetStructureID":13159,"Label":"122104-13159 via Ribbon Synapse from 122105 -> 20788","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122105,"TargetID":20788,"Directional":true}]},{"ID":21046,"SourceStructureID":122207,"TargetStructureID":7134,"Label":"122207-7134 via Ribbon Synapse from 122208 -> 122209","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122208,"TargetID":122209,"Directional":true}]},{"ID":21047,"SourceStructureID":122242,"TargetStructureID":7134,"Label":"122242-7134 via Ribbon Synapse from 122243 -> 122241","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122243,"TargetID":122241,"Directional":true}]},{"ID":21048,"SourceStructureID":122459,"TargetStructureID":3257,"Label":"122459-3257 via Conventional from 122462 -> 8238","Type":"Conventional","Directional":true,"Links":[{"SourceID":122462,"TargetID":8238,"Directional":true}]},{"ID":21049,"SourceStructureID":122459,"TargetStructureID":4570,"Label":"122459-4570 via Conventional from 122460 -> 10671","Type":"Conventional","Directional":true,"Links":[{"SourceID":122460,"TargetID":10671,"Directional":true}]},{"ID":21050,"SourceStructureID":122463,"TargetStructureID":906,"Label":"122463-906 via Ribbon Synapse from 122464 -> 24115","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122464,"TargetID":24115,"Directional":true}]},{"ID":21051,"SourceStructureID":122469,"TargetStructureID":4850,"Label":"122469-4850 via Conventional from 122473 -> 14538","Type":"Conventional","Directional":true,"Links":[{"SourceID":122473,"TargetID":14538,"Directional":true}]},{"ID":21052,"SourceStructureID":122488,"TargetStructureID":18693,"Label":"122488-18693 via Ribbon Synapse from 122491 -> 18823","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122491,"TargetID":18823,"Directional":true}]},{"ID":21053,"SourceStructureID":122705,"TargetStructureID":179,"Label":"122705-179 via Conventional from 122706 -> 103809","Type":"Conventional","Directional":true,"Links":[{"SourceID":122706,"TargetID":103809,"Directional":true}]},{"ID":21054,"SourceStructureID":122707,"TargetStructureID":179,"Label":"122707-179 via Conventional from 122708 -> 103810","Type":"Conventional","Directional":true,"Links":[{"SourceID":122708,"TargetID":103810,"Directional":true}]},{"ID":21055,"SourceStructureID":122707,"TargetStructureID":122711,"Label":"122707-122711 via Conventional from 122709 -> 122713","Type":"Conventional","Directional":true,"Links":[{"SourceID":122709,"TargetID":122713,"Directional":true}]},{"ID":21056,"SourceStructureID":122707,"TargetStructureID":122716,"Label":"122707-122716 via Conventional from 122719 -> 122720","Type":"Conventional","Directional":true,"Links":[{"SourceID":122719,"TargetID":122720,"Directional":true}]},{"ID":21057,"SourceStructureID":122711,"TargetStructureID":122707,"Label":"122711-122707 via Ribbon Synapse from 122712 -> 122710","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122712,"TargetID":122710,"Directional":true}]},{"ID":21058,"SourceStructureID":122716,"TargetStructureID":122707,"Label":"122716-122707 via Ribbon Synapse from 122717 -> 122715","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122717,"TargetID":122715,"Directional":true}]},{"ID":21059,"SourceStructureID":122750,"TargetStructureID":8720,"Label":"122750-8720 via Ribbon Synapse from 63458 -> 63456","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":63458,"TargetID":63456,"Directional":true}]},{"ID":21060,"SourceStructureID":122756,"TargetStructureID":5600,"Label":"122756-5600 via Conventional from 122757 -> 122755","Type":"Conventional","Directional":true,"Links":[{"SourceID":122757,"TargetID":122755,"Directional":true}]},{"ID":21061,"SourceStructureID":122760,"TargetStructureID":5600,"Label":"122760-5600 via Conventional from 122766 -> 122767","Type":"Conventional","Directional":true,"Links":[{"SourceID":122766,"TargetID":122767,"Directional":true}]},{"ID":21062,"SourceStructureID":122768,"TargetStructureID":10412,"Label":"122768-10412 via Conventional from 122773 -> 122774","Type":"Conventional","Directional":true,"Links":[{"SourceID":122773,"TargetID":122774,"Directional":true}]},{"ID":21063,"SourceStructureID":122777,"TargetStructureID":122768,"Label":"122777-122768 via Conventional from 122778 -> 122779","Type":"Conventional","Directional":true,"Links":[{"SourceID":122778,"TargetID":122779,"Directional":true}]},{"ID":21064,"SourceStructureID":122801,"TargetStructureID":122768,"Label":"122801-122768 via Conventional from 122802 -> 122800","Type":"Conventional","Directional":true,"Links":[{"SourceID":122802,"TargetID":122800,"Directional":true}]},{"ID":21065,"SourceStructureID":122803,"TargetStructureID":122801,"Label":"122803-122801 via Conventional from 122804 -> 122805","Type":"Conventional","Directional":true,"Links":[{"SourceID":122804,"TargetID":122805,"Directional":true}]},{"ID":21066,"SourceStructureID":122829,"TargetStructureID":5283,"Label":"122829-5283 via Postsynapse from 122879 -> 28099","Type":"Postsynapse","Directional":true,"Links":[{"SourceID":122879,"TargetID":28099,"Directional":true}]},{"ID":21067,"SourceStructureID":122849,"TargetStructureID":5374,"Label":"122849-5374 via Ribbon Synapse from 130523 -> 130522","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130523,"TargetID":130522,"Directional":true}]},{"ID":21068,"SourceStructureID":122849,"TargetStructureID":7147,"Label":"122849-7147 via Ribbon Synapse from 130523 -> 130521","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130523,"TargetID":130521,"Directional":true}]},{"ID":21069,"SourceStructureID":122849,"TargetStructureID":122829,"Label":"122849-122829 via Ribbon Synapse from 122850 -> 122845, 122855 -> 122854, 122857 -> 122858","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122850,"TargetID":122845,"Directional":true},{"SourceID":122855,"TargetID":122854,"Directional":true},{"SourceID":122857,"TargetID":122858,"Directional":true}]},{"ID":21070,"SourceStructureID":122868,"TargetStructureID":122829,"Label":"122868-122829 via Ribbon Synapse from 132408 -> 132407, 132411 -> 132412, 132413 -> 132414","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132408,"TargetID":132407,"Directional":true},{"SourceID":132411,"TargetID":132412,"Directional":true},{"SourceID":132413,"TargetID":132414,"Directional":true}]},{"ID":21071,"SourceStructureID":122893,"TargetStructureID":7114,"Label":"122893-7114 via Ribbon Synapse from 122894 -> 122896, 122895 -> 122897","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":122894,"TargetID":122896,"Directional":true},{"SourceID":122895,"TargetID":122897,"Directional":true}]},{"ID":21072,"SourceStructureID":122930,"TargetStructureID":5394,"Label":"122930-5394 via Conventional from 122931 -> 77081","Type":"Conventional","Directional":true,"Links":[{"SourceID":122931,"TargetID":77081,"Directional":true}]},{"ID":21073,"SourceStructureID":122930,"TargetStructureID":6122,"Label":"122930-6122 via Conventional from 122935 -> 122936","Type":"Conventional","Directional":true,"Links":[{"SourceID":122935,"TargetID":122936,"Directional":true}]},{"ID":21074,"SourceStructureID":122930,"TargetStructureID":122933,"Label":"122930-122933 via Conventional from 122932 -> 122934","Type":"Conventional","Directional":true,"Links":[{"SourceID":122932,"TargetID":122934,"Directional":true}]},{"ID":21075,"SourceStructureID":123146,"TargetStructureID":519,"Label":"123146-519 via Conventional from 123147 -> 26764","Type":"Conventional","Directional":true,"Links":[{"SourceID":123147,"TargetID":26764,"Directional":true}]},{"ID":21076,"SourceStructureID":123181,"TargetStructureID":8749,"Label":"123181-8749 via Conventional from 123182 -> 8799","Type":"Conventional","Directional":true,"Links":[{"SourceID":123182,"TargetID":8799,"Directional":true}]},{"ID":21077,"SourceStructureID":123183,"TargetStructureID":8749,"Label":"123183-8749 via Conventional from 123184 -> 8800","Type":"Conventional","Directional":true,"Links":[{"SourceID":123184,"TargetID":8800,"Directional":true}]},{"ID":21078,"SourceStructureID":123186,"TargetStructureID":8749,"Label":"123186-8749 via Conventional from 123187 -> 8802","Type":"Conventional","Directional":true,"Links":[{"SourceID":123187,"TargetID":8802,"Directional":true}]},{"ID":21079,"SourceStructureID":123189,"TargetStructureID":514,"Label":"123189-514 via Conventional from 123190 -> 123191","Type":"Conventional","Directional":true,"Links":[{"SourceID":123190,"TargetID":123191,"Directional":true}]},{"ID":21080,"SourceStructureID":123192,"TargetStructureID":8749,"Label":"123192-8749 via Conventional from 123193 -> 8846","Type":"Conventional","Directional":true,"Links":[{"SourceID":123193,"TargetID":8846,"Directional":true}]},{"ID":21081,"SourceStructureID":123194,"TargetStructureID":8749,"Label":"123194-8749 via Conventional from 123195 -> 123196","Type":"Conventional","Directional":true,"Links":[{"SourceID":123195,"TargetID":123196,"Directional":true}]},{"ID":21082,"SourceStructureID":123197,"TargetStructureID":8749,"Label":"123197-8749 via Conventional from 123198 -> 8859","Type":"Conventional","Directional":true,"Links":[{"SourceID":123198,"TargetID":8859,"Directional":true}]},{"ID":21083,"SourceStructureID":123199,"TargetStructureID":8749,"Label":"123199-8749 via Conventional from 123200 -> 8868","Type":"Conventional","Directional":true,"Links":[{"SourceID":123200,"TargetID":8868,"Directional":true}]},{"ID":21084,"SourceStructureID":123201,"TargetStructureID":8749,"Label":"123201-8749 via Conventional from 123203 -> 123204","Type":"Conventional","Directional":true,"Links":[{"SourceID":123203,"TargetID":123204,"Directional":true}]},{"ID":21085,"SourceStructureID":123209,"TargetStructureID":8749,"Label":"123209-8749 via Conventional from 123210 -> 8848","Type":"Conventional","Directional":true,"Links":[{"SourceID":123210,"TargetID":8848,"Directional":true}]},{"ID":21086,"SourceStructureID":123212,"TargetStructureID":8749,"Label":"123212-8749 via Conventional from 123213 -> 123214","Type":"Conventional","Directional":true,"Links":[{"SourceID":123213,"TargetID":123214,"Directional":true}]},{"ID":21087,"SourceStructureID":123215,"TargetStructureID":8749,"Label":"123215-8749 via Conventional from 123216 -> 8826","Type":"Conventional","Directional":true,"Links":[{"SourceID":123216,"TargetID":8826,"Directional":true}]},{"ID":21088,"SourceStructureID":123217,"TargetStructureID":8749,"Label":"123217-8749 via Conventional from 123218 -> 123219","Type":"Conventional","Directional":true,"Links":[{"SourceID":123218,"TargetID":123219,"Directional":true}]},{"ID":21089,"SourceStructureID":123217,"TargetStructureID":38395,"Label":"123217-38395 via Adherens from 123221 -> 123220","Type":"Adherens","Directional":true,"Links":[{"SourceID":123221,"TargetID":123220,"Directional":true}]},{"ID":21090,"SourceStructureID":123223,"TargetStructureID":2610,"Label":"123223-2610 via Conventional from 123226 -> 2781","Type":"Conventional","Directional":true,"Links":[{"SourceID":123226,"TargetID":2781,"Directional":true}]},{"ID":21091,"SourceStructureID":123223,"TargetStructureID":8749,"Label":"123223-8749 via Conventional from 123224 -> 123225","Type":"Conventional","Directional":true,"Links":[{"SourceID":123224,"TargetID":123225,"Directional":true}]},{"ID":21092,"SourceStructureID":123227,"TargetStructureID":8749,"Label":"123227-8749 via Conventional from 123229 -> 123230","Type":"Conventional","Directional":true,"Links":[{"SourceID":123229,"TargetID":123230,"Directional":true}]},{"ID":21093,"SourceStructureID":123317,"TargetStructureID":171,"Label":"123317-171 via Conventional from 123318 -> 123319","Type":"Conventional","Directional":true,"Links":[{"SourceID":123318,"TargetID":123319,"Directional":true}]},{"ID":21094,"SourceStructureID":123573,"TargetStructureID":15977,"Label":"123573-15977 via Conventional from 123574 -> 123575","Type":"Conventional","Directional":true,"Links":[{"SourceID":123574,"TargetID":123575,"Directional":true}]},{"ID":21095,"SourceStructureID":123576,"TargetStructureID":15977,"Label":"123576-15977 via Conventional from 123577 -> 123578","Type":"Conventional","Directional":true,"Links":[{"SourceID":123577,"TargetID":123578,"Directional":true}]},{"ID":21096,"SourceStructureID":123579,"TargetStructureID":15977,"Label":"123579-15977 via Conventional from 123580 -> 123581","Type":"Conventional","Directional":true,"Links":[{"SourceID":123580,"TargetID":123581,"Directional":true}]},{"ID":21097,"SourceStructureID":123582,"TargetStructureID":15977,"Label":"123582-15977 via Conventional from 123583 -> 123584","Type":"Conventional","Directional":true,"Links":[{"SourceID":123583,"TargetID":123584,"Directional":true}]},{"ID":21098,"SourceStructureID":123675,"TargetStructureID":43716,"Label":"123675-43716 via Conventional from 123677 -> 123672","Type":"Conventional","Directional":true,"Links":[{"SourceID":123677,"TargetID":123672,"Directional":true}]},{"ID":21099,"SourceStructureID":124069,"TargetStructureID":5595,"Label":"124069-5595 via Conventional from 126915 -> 15287","Type":"Conventional","Directional":true,"Links":[{"SourceID":126915,"TargetID":15287,"Directional":true}]},{"ID":21100,"SourceStructureID":124486,"TargetStructureID":5598,"Label":"124486-5598 via Conventional from 124487 -> 115069","Type":"Conventional","Directional":true,"Links":[{"SourceID":124487,"TargetID":115069,"Directional":true}]},{"ID":21101,"SourceStructureID":124547,"TargetStructureID":176,"Label":"124547-176 via Conventional from 124548 -> 5815","Type":"Conventional","Directional":true,"Links":[{"SourceID":124548,"TargetID":5815,"Directional":true}]},{"ID":21102,"SourceStructureID":124780,"TargetStructureID":16026,"Label":"124780-16026 via Conventional from 124781 -> 25762","Type":"Conventional","Directional":true,"Links":[{"SourceID":124781,"TargetID":25762,"Directional":true}]},{"ID":21103,"SourceStructureID":125157,"TargetStructureID":6128,"Label":"125157-6128 via Conventional from 125269 -> 33739","Type":"Conventional","Directional":true,"Links":[{"SourceID":125269,"TargetID":33739,"Directional":true}]},{"ID":21104,"SourceStructureID":125157,"TargetStructureID":6132,"Label":"125157-6132 via Conventional from 125478 -> 88419","Type":"Conventional","Directional":true,"Links":[{"SourceID":125478,"TargetID":88419,"Directional":true}]},{"ID":21105,"SourceStructureID":125157,"TargetStructureID":7346,"Label":"125157-7346 via Conventional from 125250 -> 44113, 125268 -> 44052","Type":"Conventional","Directional":true,"Links":[{"SourceID":125250,"TargetID":44113,"Directional":true},{"SourceID":125268,"TargetID":44052,"Directional":true}]},{"ID":21106,"SourceStructureID":125157,"TargetStructureID":13525,"Label":"125157-13525 via Conventional from 125158 -> 84295","Type":"Conventional","Directional":true,"Links":[{"SourceID":125158,"TargetID":84295,"Directional":true}]},{"ID":21107,"SourceStructureID":125157,"TargetStructureID":44117,"Label":"125157-44117 via Conventional from 125249 -> 44120","Type":"Conventional","Directional":true,"Links":[{"SourceID":125249,"TargetID":44120,"Directional":true}]},{"ID":21108,"SourceStructureID":125389,"TargetStructureID":6047,"Label":"125389-6047 via Conventional from 125391 -> 125390","Type":"Conventional","Directional":true,"Links":[{"SourceID":125391,"TargetID":125390,"Directional":true}]},{"ID":21109,"SourceStructureID":125685,"TargetStructureID":1021,"Label":"125685-1021 via Conventional from 125687 -> 125688","Type":"Conventional","Directional":true,"Links":[{"SourceID":125687,"TargetID":125688,"Directional":true}]},{"ID":21110,"SourceStructureID":125767,"TargetStructureID":6203,"Label":"125767-6203 via Conventional from 125769 -> 125770","Type":"Conventional","Directional":true,"Links":[{"SourceID":125769,"TargetID":125770,"Directional":true}]},{"ID":21111,"SourceStructureID":125981,"TargetStructureID":166,"Label":"125981-166 via Conventional from 93091 -> 4450","Type":"Conventional","Directional":true,"Links":[{"SourceID":93091,"TargetID":4450,"Directional":true}]},{"ID":21112,"SourceStructureID":125981,"TargetStructureID":606,"Label":"125981-606 via Conventional from 52174 -> 10051","Type":"Conventional","Directional":true,"Links":[{"SourceID":52174,"TargetID":10051,"Directional":true}]},{"ID":21113,"SourceStructureID":126012,"TargetStructureID":142,"Label":"126012-142 via Conventional from 126014 -> 126011","Type":"Conventional","Directional":true,"Links":[{"SourceID":126014,"TargetID":126011,"Directional":true}]},{"ID":21114,"SourceStructureID":126012,"TargetStructureID":595,"Label":"126012-595 via Conventional from 126013 -> 125266","Type":"Conventional","Directional":true,"Links":[{"SourceID":126013,"TargetID":125266,"Directional":true}]},{"ID":21115,"SourceStructureID":126047,"TargetStructureID":142,"Label":"126047-142 via Conventional from 126049 -> 31782","Type":"Conventional","Directional":true,"Links":[{"SourceID":126049,"TargetID":31782,"Directional":true}]},{"ID":21116,"SourceStructureID":126646,"TargetStructureID":56710,"Label":"126646-56710 via Conventional from 136507 -> 136506","Type":"Conventional","Directional":true,"Links":[{"SourceID":136507,"TargetID":136506,"Directional":true}]},{"ID":21117,"SourceStructureID":126901,"TargetStructureID":5600,"Label":"126901-5600 via Conventional from 126904 -> 126905, 126906 -> 124235","Type":"Conventional","Directional":true,"Links":[{"SourceID":126904,"TargetID":126905,"Directional":true},{"SourceID":126906,"TargetID":124235,"Directional":true}]},{"ID":21118,"SourceStructureID":127070,"TargetStructureID":6050,"Label":"127070-6050 via Conventional from 127071 -> 127072","Type":"Conventional","Directional":true,"Links":[{"SourceID":127071,"TargetID":127072,"Directional":true}]},{"ID":21119,"SourceStructureID":127240,"TargetStructureID":5601,"Label":"127240-5601 via Conventional from 127241 -> 127205","Type":"Conventional","Directional":true,"Links":[{"SourceID":127241,"TargetID":127205,"Directional":true}]},{"ID":21120,"SourceStructureID":127253,"TargetStructureID":6050,"Label":"127253-6050 via Conventional from 127254 -> 51663","Type":"Conventional","Directional":true,"Links":[{"SourceID":127254,"TargetID":51663,"Directional":true}]},{"ID":21121,"SourceStructureID":127256,"TargetStructureID":176,"Label":"127256-176 via Conventional from 127257 -> 5807","Type":"Conventional","Directional":true,"Links":[{"SourceID":127257,"TargetID":5807,"Directional":true}]},{"ID":21122,"SourceStructureID":127262,"TargetStructureID":170,"Label":"127262-170 via Conventional from 127264 -> 127261","Type":"Conventional","Directional":true,"Links":[{"SourceID":127264,"TargetID":127261,"Directional":true}]},{"ID":21123,"SourceStructureID":127277,"TargetStructureID":6050,"Label":"127277-6050 via Conventional from 127278 -> 113580","Type":"Conventional","Directional":true,"Links":[{"SourceID":127278,"TargetID":113580,"Directional":true}]},{"ID":21124,"SourceStructureID":127302,"TargetStructureID":78409,"Label":"127302-78409 via Conventional from 127303 -> 106785","Type":"Conventional","Directional":true,"Links":[{"SourceID":127303,"TargetID":106785,"Directional":true}]},{"ID":21125,"SourceStructureID":127304,"TargetStructureID":6050,"Label":"127304-6050 via Conventional from 127305 -> 126984","Type":"Conventional","Directional":true,"Links":[{"SourceID":127305,"TargetID":126984,"Directional":true}]},{"ID":21126,"SourceStructureID":127306,"TargetStructureID":176,"Label":"127306-176 via Conventional from 127307 -> 5863","Type":"Conventional","Directional":true,"Links":[{"SourceID":127307,"TargetID":5863,"Directional":true}]},{"ID":21127,"SourceStructureID":127417,"TargetStructureID":6050,"Label":"127417-6050 via Conventional from 127418 -> 113916","Type":"Conventional","Directional":true,"Links":[{"SourceID":127418,"TargetID":113916,"Directional":true}]},{"ID":21128,"SourceStructureID":127650,"TargetStructureID":6050,"Label":"127650-6050 via Conventional from 127651 -> 114262","Type":"Conventional","Directional":true,"Links":[{"SourceID":127651,"TargetID":114262,"Directional":true}]},{"ID":21129,"SourceStructureID":127653,"TargetStructureID":6050,"Label":"127653-6050 via Conventional from 127654 -> 114262","Type":"Conventional","Directional":true,"Links":[{"SourceID":127654,"TargetID":114262,"Directional":true}]},{"ID":21130,"SourceStructureID":127719,"TargetStructureID":45672,"Label":"127719-45672 via Ribbon Synapse from 127720 -> 127734","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127720,"TargetID":127734,"Directional":true}]},{"ID":21131,"SourceStructureID":127749,"TargetStructureID":45672,"Label":"127749-45672 via Ribbon Synapse from 127750 -> 127748","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127750,"TargetID":127748,"Directional":true}]},{"ID":21132,"SourceStructureID":127764,"TargetStructureID":3756,"Label":"127764-3756 via Conventional from 128957 -> 128958","Type":"Conventional","Directional":true,"Links":[{"SourceID":128957,"TargetID":128958,"Directional":true}]},{"ID":21133,"SourceStructureID":127764,"TargetStructureID":5601,"Label":"127764-5601 via Conventional from 129274 -> 127157","Type":"Conventional","Directional":true,"Links":[{"SourceID":129274,"TargetID":127157,"Directional":true}]},{"ID":21134,"SourceStructureID":127764,"TargetStructureID":9376,"Label":"127764-9376 via Conventional from 127765 -> 62747, 127766 -> 62746","Type":"Conventional","Directional":true,"Links":[{"SourceID":127765,"TargetID":62747,"Directional":true},{"SourceID":127766,"TargetID":62746,"Directional":true}]},{"ID":21135,"SourceStructureID":127776,"TargetStructureID":469,"Label":"127776-469 via Conventional from 127777 -> 127778","Type":"Conventional","Directional":true,"Links":[{"SourceID":127777,"TargetID":127778,"Directional":true}]},{"ID":21136,"SourceStructureID":127781,"TargetStructureID":15979,"Label":"127781-15979 via Conventional from 127782 -> 33790","Type":"Conventional","Directional":true,"Links":[{"SourceID":127782,"TargetID":33790,"Directional":true}]},{"ID":21137,"SourceStructureID":127783,"TargetStructureID":6164,"Label":"127783-6164 via Conventional from 127784 -> 26862","Type":"Conventional","Directional":true,"Links":[{"SourceID":127784,"TargetID":26862,"Directional":true}]},{"ID":21138,"SourceStructureID":127796,"TargetStructureID":579,"Label":"127796-579 via Conventional from 127797 -> 127798, 127811 -> 127812","Type":"Conventional","Directional":true,"Links":[{"SourceID":127797,"TargetID":127798,"Directional":true},{"SourceID":127811,"TargetID":127812,"Directional":true}]},{"ID":21139,"SourceStructureID":127796,"TargetStructureID":46388,"Label":"127796-46388 via Conventional from 127809 -> 127810","Type":"Conventional","Directional":true,"Links":[{"SourceID":127809,"TargetID":127810,"Directional":true}]},{"ID":21140,"SourceStructureID":127813,"TargetStructureID":579,"Label":"127813-579 via Conventional from 127814 -> 127815","Type":"Conventional","Directional":true,"Links":[{"SourceID":127814,"TargetID":127815,"Directional":true}]},{"ID":21141,"SourceStructureID":127813,"TargetStructureID":5623,"Label":"127813-5623 via Conventional from 127819 -> 127820","Type":"Conventional","Directional":true,"Links":[{"SourceID":127819,"TargetID":127820,"Directional":true}]},{"ID":21142,"SourceStructureID":127832,"TargetStructureID":2610,"Label":"127832-2610 via Conventional from 127837 -> 17226","Type":"Conventional","Directional":true,"Links":[{"SourceID":127837,"TargetID":17226,"Directional":true}]},{"ID":21143,"SourceStructureID":127832,"TargetStructureID":15100,"Label":"127832-15100 via Conventional from 127833 -> 127834","Type":"Conventional","Directional":true,"Links":[{"SourceID":127833,"TargetID":127834,"Directional":true}]},{"ID":21144,"SourceStructureID":127841,"TargetStructureID":6997,"Label":"127841-6997 via Conventional from 127844 -> 22253","Type":"Conventional","Directional":true,"Links":[{"SourceID":127844,"TargetID":22253,"Directional":true}]},{"ID":21145,"SourceStructureID":127841,"TargetStructureID":15100,"Label":"127841-15100 via Conventional from 127842 -> 17105","Type":"Conventional","Directional":true,"Links":[{"SourceID":127842,"TargetID":17105,"Directional":true}]},{"ID":21146,"SourceStructureID":127846,"TargetStructureID":485,"Label":"127846-485 via Conventional from 127871 -> 101870","Type":"Conventional","Directional":true,"Links":[{"SourceID":127871,"TargetID":101870,"Directional":true}]},{"ID":21147,"SourceStructureID":127846,"TargetStructureID":6589,"Label":"127846-6589 via Conventional from 127860 -> 9582","Type":"Conventional","Directional":true,"Links":[{"SourceID":127860,"TargetID":9582,"Directional":true}]},{"ID":21148,"SourceStructureID":127846,"TargetStructureID":8749,"Label":"127846-8749 via Conventional from 127868 -> 127869","Type":"Conventional","Directional":true,"Links":[{"SourceID":127868,"TargetID":127869,"Directional":true}]},{"ID":21149,"SourceStructureID":127846,"TargetStructureID":15100,"Label":"127846-15100 via Conventional from 127847 -> 15105","Type":"Conventional","Directional":true,"Links":[{"SourceID":127847,"TargetID":15105,"Directional":true}]},{"ID":21150,"SourceStructureID":127846,"TargetStructureID":17183,"Label":"127846-17183 via Conventional from 127853 -> 127859","Type":"Conventional","Directional":true,"Links":[{"SourceID":127853,"TargetID":127859,"Directional":true}]},{"ID":21151,"SourceStructureID":127946,"TargetStructureID":46514,"Label":"127946-46514 via Ribbon Synapse from 127948 -> 127951, 127949 -> 127950","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127948,"TargetID":127951,"Directional":true},{"SourceID":127949,"TargetID":127950,"Directional":true}]},{"ID":21152,"SourceStructureID":127953,"TargetStructureID":46517,"Label":"127953-46517 via Ribbon Synapse from 127954 -> 127952","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127954,"TargetID":127952,"Directional":true}]},{"ID":21153,"SourceStructureID":127964,"TargetStructureID":46379,"Label":"127964-46379 via Ribbon Synapse from 127965 -> 127963","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":127965,"TargetID":127963,"Directional":true}]},{"ID":21154,"SourceStructureID":127999,"TargetStructureID":179,"Label":"127999-179 via Conventional from 128000 -> 11676","Type":"Conventional","Directional":true,"Links":[{"SourceID":128000,"TargetID":11676,"Directional":true}]},{"ID":21155,"SourceStructureID":128006,"TargetStructureID":179,"Label":"128006-179 via Conventional from 128007 -> 103807","Type":"Conventional","Directional":true,"Links":[{"SourceID":128007,"TargetID":103807,"Directional":true}]},{"ID":21156,"SourceStructureID":128015,"TargetStructureID":478,"Label":"128015-478 via Conventional from 128040 -> 19426","Type":"Conventional","Directional":true,"Links":[{"SourceID":128040,"TargetID":19426,"Directional":true}]},{"ID":21157,"SourceStructureID":128015,"TargetStructureID":128044,"Label":"128015-128044 via Conventional from 128043 -> 128045","Type":"Conventional","Directional":true,"Links":[{"SourceID":128043,"TargetID":128045,"Directional":true}]},{"ID":21158,"SourceStructureID":128060,"TargetStructureID":179,"Label":"128060-179 via Conventional from 128061 -> 103815","Type":"Conventional","Directional":true,"Links":[{"SourceID":128061,"TargetID":103815,"Directional":true}]},{"ID":21159,"SourceStructureID":128060,"TargetStructureID":9787,"Label":"128060-9787 via Conventional from 128096 -> 18053","Type":"Conventional","Directional":true,"Links":[{"SourceID":128096,"TargetID":18053,"Directional":true}]},{"ID":21160,"SourceStructureID":128060,"TargetStructureID":128082,"Label":"128060-128082 via Conventional from 128081 -> 128085","Type":"Conventional","Directional":true,"Links":[{"SourceID":128081,"TargetID":128085,"Directional":true}]},{"ID":21161,"SourceStructureID":128097,"TargetStructureID":179,"Label":"128097-179 via Conventional from 128098 -> 128099","Type":"Conventional","Directional":true,"Links":[{"SourceID":128098,"TargetID":128099,"Directional":true}]},{"ID":21162,"SourceStructureID":128101,"TargetStructureID":173,"Label":"128101-173 via Conventional from 128103 -> 128104","Type":"Conventional","Directional":true,"Links":[{"SourceID":128103,"TargetID":128104,"Directional":true}]},{"ID":21163,"SourceStructureID":128101,"TargetStructureID":179,"Label":"128101-179 via Conventional from 128102 -> 87472","Type":"Conventional","Directional":true,"Links":[{"SourceID":128102,"TargetID":87472,"Directional":true}]},{"ID":21164,"SourceStructureID":128107,"TargetStructureID":179,"Label":"128107-179 via Conventional from 128108 -> 87467","Type":"Conventional","Directional":true,"Links":[{"SourceID":128108,"TargetID":87467,"Directional":true}]},{"ID":21165,"SourceStructureID":128122,"TargetStructureID":179,"Label":"128122-179 via Conventional from 128124 -> 87466","Type":"Conventional","Directional":true,"Links":[{"SourceID":128124,"TargetID":87466,"Directional":true}]},{"ID":21166,"SourceStructureID":128150,"TargetStructureID":179,"Label":"128150-179 via Conventional from 128151 -> 87501","Type":"Conventional","Directional":true,"Links":[{"SourceID":128151,"TargetID":87501,"Directional":true}]},{"ID":21167,"SourceStructureID":128152,"TargetStructureID":173,"Label":"128152-173 via Conventional from 128159 -> 12123, 128162 -> 128163","Type":"Conventional","Directional":true,"Links":[{"SourceID":128159,"TargetID":12123,"Directional":true},{"SourceID":128162,"TargetID":128163,"Directional":true}]},{"ID":21168,"SourceStructureID":128152,"TargetStructureID":175,"Label":"128152-175 via Conventional from 128166 -> 128170","Type":"Conventional","Directional":true,"Links":[{"SourceID":128166,"TargetID":128170,"Directional":true}]},{"ID":21169,"SourceStructureID":128152,"TargetStructureID":179,"Label":"128152-179 via Conventional from 128153 -> 87502","Type":"Conventional","Directional":true,"Links":[{"SourceID":128153,"TargetID":87502,"Directional":true}]},{"ID":21170,"SourceStructureID":128171,"TargetStructureID":591,"Label":"128171-591 via Conventional from 128172 -> 10216","Type":"Conventional","Directional":true,"Links":[{"SourceID":128172,"TargetID":10216,"Directional":true}]},{"ID":21171,"SourceStructureID":128184,"TargetStructureID":173,"Label":"128184-173 via Conventional from 128186 -> 128187","Type":"Conventional","Directional":true,"Links":[{"SourceID":128186,"TargetID":128187,"Directional":true}]},{"ID":21172,"SourceStructureID":128184,"TargetStructureID":179,"Label":"128184-179 via Conventional from 128185 -> 87504","Type":"Conventional","Directional":true,"Links":[{"SourceID":128185,"TargetID":87504,"Directional":true}]},{"ID":21173,"SourceStructureID":128189,"TargetStructureID":179,"Label":"128189-179 via Conventional from 128190 -> 11679","Type":"Conventional","Directional":true,"Links":[{"SourceID":128190,"TargetID":11679,"Directional":true}]},{"ID":21174,"SourceStructureID":128191,"TargetStructureID":179,"Label":"128191-179 via Conventional from 128192 -> 104768","Type":"Conventional","Directional":true,"Links":[{"SourceID":128192,"TargetID":104768,"Directional":true}]},{"ID":21175,"SourceStructureID":128685,"TargetStructureID":176,"Label":"128685-176 via Conventional from 128687 -> 125453","Type":"Conventional","Directional":true,"Links":[{"SourceID":128687,"TargetID":125453,"Directional":true}]},{"ID":21176,"SourceStructureID":128685,"TargetStructureID":4877,"Label":"128685-4877 via Conventional from 128686 -> 33372","Type":"Conventional","Directional":true,"Links":[{"SourceID":128686,"TargetID":33372,"Directional":true}]},{"ID":21177,"SourceStructureID":128800,"TargetStructureID":3756,"Label":"128800-3756 via Conventional from 128801 -> 128799","Type":"Conventional","Directional":true,"Links":[{"SourceID":128801,"TargetID":128799,"Directional":true}]},{"ID":21178,"SourceStructureID":129144,"TargetStructureID":579,"Label":"129144-579 via Conventional from 129145 -> 129146, 129147 -> 129149, 129148 -> 129150","Type":"Conventional","Directional":true,"Links":[{"SourceID":129145,"TargetID":129146,"Directional":true},{"SourceID":129147,"TargetID":129149,"Directional":true},{"SourceID":129148,"TargetID":129150,"Directional":true}]},{"ID":21179,"SourceStructureID":129154,"TargetStructureID":514,"Label":"129154-514 via Conventional from 129157 -> 3248","Type":"Conventional","Directional":true,"Links":[{"SourceID":129157,"TargetID":3248,"Directional":true}]},{"ID":21180,"SourceStructureID":129154,"TargetStructureID":2610,"Label":"129154-2610 via Conventional from 129156 -> 13803","Type":"Conventional","Directional":true,"Links":[{"SourceID":129156,"TargetID":13803,"Directional":true}]},{"ID":21181,"SourceStructureID":129154,"TargetStructureID":8749,"Label":"129154-8749 via Conventional from 129155 -> 8831","Type":"Conventional","Directional":true,"Links":[{"SourceID":129155,"TargetID":8831,"Directional":true}]},{"ID":21182,"SourceStructureID":129192,"TargetStructureID":30477,"Label":"129192-30477 via Conventional from 129193 -> 30492","Type":"Conventional","Directional":true,"Links":[{"SourceID":129193,"TargetID":30492,"Directional":true}]},{"ID":21183,"SourceStructureID":129199,"TargetStructureID":34159,"Label":"129199-34159 via Conventional from 129200 -> 34161","Type":"Conventional","Directional":true,"Links":[{"SourceID":129200,"TargetID":34161,"Directional":true}]},{"ID":21184,"SourceStructureID":129201,"TargetStructureID":34159,"Label":"129201-34159 via Conventional from 129202 -> 34162","Type":"Conventional","Directional":true,"Links":[{"SourceID":129202,"TargetID":34162,"Directional":true}]},{"ID":21185,"SourceStructureID":129292,"TargetStructureID":13525,"Label":"129292-13525 via Ribbon Synapse from 130091 -> 129291","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130091,"TargetID":129291,"Directional":true}]},{"ID":21186,"SourceStructureID":129292,"TargetStructureID":130237,"Label":"129292-130237 via Ribbon Synapse from 130093 -> 130397","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130093,"TargetID":130397,"Directional":true}]},{"ID":21187,"SourceStructureID":129466,"TargetStructureID":3756,"Label":"129466-3756 via Conventional from 129467 -> 129464","Type":"Conventional","Directional":true,"Links":[{"SourceID":129467,"TargetID":129464,"Directional":true}]},{"ID":21188,"SourceStructureID":129563,"TargetStructureID":13525,"Label":"129563-13525 via Conventional from 130051 -> 129562","Type":"Conventional","Directional":true,"Links":[{"SourceID":130051,"TargetID":129562,"Directional":true}]},{"ID":21189,"SourceStructureID":129648,"TargetStructureID":181,"Label":"129648-181 via Conventional from 129650 -> 10319, 129655 -> 10319","Type":"Conventional","Directional":true,"Links":[{"SourceID":129650,"TargetID":10319,"Directional":true},{"SourceID":129655,"TargetID":10319,"Directional":true}]},{"ID":21190,"SourceStructureID":129648,"TargetStructureID":968,"Label":"129648-968 via Conventional from 129657 -> 129658","Type":"Conventional","Directional":true,"Links":[{"SourceID":129657,"TargetID":129658,"Directional":true}]},{"ID":21191,"SourceStructureID":129648,"TargetStructureID":3865,"Label":"129648-3865 via Conventional from 129651 -> 36122","Type":"Conventional","Directional":true,"Links":[{"SourceID":129651,"TargetID":36122,"Directional":true}]},{"ID":21192,"SourceStructureID":129648,"TargetStructureID":129721,"Label":"129648-129721 via Conventional from 129719 -> 129724, 129729 -> 129726","Type":"Conventional","Directional":true,"Links":[{"SourceID":129719,"TargetID":129724,"Directional":true},{"SourceID":129729,"TargetID":129726,"Directional":true}]},{"ID":21193,"SourceStructureID":129648,"TargetStructureID":129738,"Label":"129648-129738 via Conventional from 129743 -> 129744","Type":"Conventional","Directional":true,"Links":[{"SourceID":129743,"TargetID":129744,"Directional":true}]},{"ID":21194,"SourceStructureID":129648,"TargetStructureID":129746,"Label":"129648-129746 via Conventional from 129751 -> 129752","Type":"Conventional","Directional":true,"Links":[{"SourceID":129751,"TargetID":129752,"Directional":true}]},{"ID":21195,"SourceStructureID":129648,"TargetStructureID":129755,"Label":"129648-129755 via Conventional from 129754 -> 129757","Type":"Conventional","Directional":true,"Links":[{"SourceID":129754,"TargetID":129757,"Directional":true}]},{"ID":21196,"SourceStructureID":129648,"TargetStructureID":129762,"Label":"129648-129762 via Conventional from 129761 -> 129766","Type":"Conventional","Directional":true,"Links":[{"SourceID":129761,"TargetID":129766,"Directional":true}]},{"ID":21197,"SourceStructureID":129660,"TargetStructureID":129648,"Label":"129660-129648 via Conventional from 129661 -> 129659","Type":"Conventional","Directional":true,"Links":[{"SourceID":129661,"TargetID":129659,"Directional":true}]},{"ID":21198,"SourceStructureID":129666,"TargetStructureID":129648,"Label":"129666-129648 via Conventional from 129667 -> 129665","Type":"Conventional","Directional":true,"Links":[{"SourceID":129667,"TargetID":129665,"Directional":true}]},{"ID":21199,"SourceStructureID":129676,"TargetStructureID":40604,"Label":"129676-40604 via Ribbon Synapse from 129677 -> 129678","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129677,"TargetID":129678,"Directional":true}]},{"ID":21200,"SourceStructureID":129676,"TargetStructureID":129648,"Label":"129676-129648 via Ribbon Synapse from 129679 -> 129675","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129679,"TargetID":129675,"Directional":true}]},{"ID":21201,"SourceStructureID":129696,"TargetStructureID":129648,"Label":"129696-129648 via Ribbon Synapse from 129697 -> 129695","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129697,"TargetID":129695,"Directional":true}]},{"ID":21202,"SourceStructureID":129721,"TargetStructureID":16073,"Label":"129721-16073 via BC Conventional Synapse from 129723 -> 24191","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":129723,"TargetID":24191,"Directional":true}]},{"ID":21203,"SourceStructureID":129721,"TargetStructureID":129648,"Label":"129721-129648 via Ribbon Synapse from 129722 -> 129720","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129722,"TargetID":129720,"Directional":true}]},{"ID":21204,"SourceStructureID":129738,"TargetStructureID":129648,"Label":"129738-129648 via Conventional from 129742 -> 129737","Type":"Conventional","Directional":true,"Links":[{"SourceID":129742,"TargetID":129737,"Directional":true}]},{"ID":21205,"SourceStructureID":129740,"TargetStructureID":129738,"Label":"129740-129738 via Conventional from 129741 -> 129739","Type":"Conventional","Directional":true,"Links":[{"SourceID":129741,"TargetID":129739,"Directional":true}]},{"ID":21206,"SourceStructureID":129746,"TargetStructureID":129648,"Label":"129746-129648 via Ribbon Synapse from 129747 -> 129745","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129747,"TargetID":129745,"Directional":true}]},{"ID":21207,"SourceStructureID":129755,"TargetStructureID":129648,"Label":"129755-129648 via Conventional from 129756 -> 129753","Type":"Conventional","Directional":true,"Links":[{"SourceID":129756,"TargetID":129753,"Directional":true}]},{"ID":21208,"SourceStructureID":129762,"TargetStructureID":129755,"Label":"129762-129755 via Ribbon Synapse from 129764 -> 129759","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129764,"TargetID":129759,"Directional":true}]},{"ID":21209,"SourceStructureID":129775,"TargetStructureID":173,"Label":"129775-173 via Conventional from 129779 -> 129780","Type":"Conventional","Directional":true,"Links":[{"SourceID":129779,"TargetID":129780,"Directional":true}]},{"ID":21210,"SourceStructureID":129775,"TargetStructureID":181,"Label":"129775-181 via Conventional from 129776 -> 20466","Type":"Conventional","Directional":true,"Links":[{"SourceID":129776,"TargetID":20466,"Directional":true}]},{"ID":21211,"SourceStructureID":129781,"TargetStructureID":175,"Label":"129781-175 via Conventional from 129782 -> 21887","Type":"Conventional","Directional":true,"Links":[{"SourceID":129782,"TargetID":21887,"Directional":true}]},{"ID":21212,"SourceStructureID":129781,"TargetStructureID":129788,"Label":"129781-129788 via Conventional from 129787 -> 129790","Type":"Conventional","Directional":true,"Links":[{"SourceID":129787,"TargetID":129790,"Directional":true}]},{"ID":21213,"SourceStructureID":129798,"TargetStructureID":138,"Label":"129798-138 via Conventional from 129846 -> 129845","Type":"Conventional","Directional":true,"Links":[{"SourceID":129846,"TargetID":129845,"Directional":true}]},{"ID":21214,"SourceStructureID":129798,"TargetStructureID":5585,"Label":"129798-5585 via Conventional from 129810 -> 129811","Type":"Conventional","Directional":true,"Links":[{"SourceID":129810,"TargetID":129811,"Directional":true}]},{"ID":21215,"SourceStructureID":129798,"TargetStructureID":129800,"Label":"129798-129800 via Conventional from 129799 -> 129801","Type":"Conventional","Directional":true,"Links":[{"SourceID":129799,"TargetID":129801,"Directional":true}]},{"ID":21216,"SourceStructureID":129798,"TargetStructureID":129827,"Label":"129798-129827 via Conventional from 129825 -> 129829","Type":"Conventional","Directional":true,"Links":[{"SourceID":129825,"TargetID":129829,"Directional":true}]},{"ID":21217,"SourceStructureID":129800,"TargetStructureID":129798,"Label":"129800-129798 via Ribbon Synapse from 129802 -> 129803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129802,"TargetID":129803,"Directional":true}]},{"ID":21218,"SourceStructureID":129840,"TargetStructureID":129798,"Label":"129840-129798 via Ribbon Synapse from 129842 -> 129843","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":129842,"TargetID":129843,"Directional":true}]},{"ID":21219,"SourceStructureID":129851,"TargetStructureID":129927,"Label":"129851-129927 via Conventional from 129852 -> 129853","Type":"Conventional","Directional":true,"Links":[{"SourceID":129852,"TargetID":129853,"Directional":true}]},{"ID":21220,"SourceStructureID":129877,"TargetStructureID":129875,"Label":"129877-129875 via Conventional from 129878 -> 129876","Type":"Conventional","Directional":true,"Links":[{"SourceID":129878,"TargetID":129876,"Directional":true}]},{"ID":21221,"SourceStructureID":129924,"TargetStructureID":5499,"Label":"129924-5499 via Conventional from 129925 -> 97184","Type":"Conventional","Directional":true,"Links":[{"SourceID":129925,"TargetID":97184,"Directional":true}]},{"ID":21222,"SourceStructureID":129927,"TargetStructureID":138,"Label":"129927-138 via Conventional from 129934 -> 11468","Type":"Conventional","Directional":true,"Links":[{"SourceID":129934,"TargetID":11468,"Directional":true}]},{"ID":21223,"SourceStructureID":129927,"TargetStructureID":173,"Label":"129927-173 via Conventional from 129936 -> 12142","Type":"Conventional","Directional":true,"Links":[{"SourceID":129936,"TargetID":12142,"Directional":true}]},{"ID":21224,"SourceStructureID":129927,"TargetStructureID":5499,"Label":"129927-5499 via Conventional from 129928 -> 97180, 129941 -> 129942, 129943 -> 106898","Type":"Conventional","Directional":true,"Links":[{"SourceID":129928,"TargetID":97180,"Directional":true},{"SourceID":129941,"TargetID":129942,"Directional":true},{"SourceID":129943,"TargetID":106898,"Directional":true}]},{"ID":21225,"SourceStructureID":129952,"TargetStructureID":13525,"Label":"129952-13525 via Conventional from 130052 -> 129951","Type":"Conventional","Directional":true,"Links":[{"SourceID":130052,"TargetID":129951,"Directional":true}]},{"ID":21226,"SourceStructureID":129954,"TargetStructureID":13525,"Label":"129954-13525 via Ribbon Synapse from 130155 -> 133803","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130155,"TargetID":133803,"Directional":true}]},{"ID":21227,"SourceStructureID":129956,"TargetStructureID":5421,"Label":"129956-5421 via Conventional from 130145 -> 130942","Type":"Conventional","Directional":true,"Links":[{"SourceID":130145,"TargetID":130942,"Directional":true}]},{"ID":21228,"SourceStructureID":129956,"TargetStructureID":13525,"Label":"129956-13525 via Conventional from 130056 -> 129955","Type":"Conventional","Directional":true,"Links":[{"SourceID":130056,"TargetID":129955,"Directional":true}]},{"ID":21229,"SourceStructureID":129961,"TargetStructureID":13525,"Label":"129961-13525 via Conventional from 130058 -> 129960","Type":"Conventional","Directional":true,"Links":[{"SourceID":130058,"TargetID":129960,"Directional":true}]},{"ID":21230,"SourceStructureID":129967,"TargetStructureID":13525,"Label":"129967-13525 via Conventional from 129968 -> 129966","Type":"Conventional","Directional":true,"Links":[{"SourceID":129968,"TargetID":129966,"Directional":true}]},{"ID":21231,"SourceStructureID":129995,"TargetStructureID":129994,"Label":"129995-129994 via Conventional from 129996 -> 129997","Type":"Conventional","Directional":true,"Links":[{"SourceID":129996,"TargetID":129997,"Directional":true}]},{"ID":21232,"SourceStructureID":130006,"TargetStructureID":13525,"Label":"130006-13525 via Conventional from 130147 -> 130005","Type":"Conventional","Directional":true,"Links":[{"SourceID":130147,"TargetID":130005,"Directional":true}]},{"ID":21233,"SourceStructureID":130006,"TargetStructureID":130371,"Label":"130006-130371 via Conventional from 130148 -> 130374","Type":"Conventional","Directional":true,"Links":[{"SourceID":130148,"TargetID":130374,"Directional":true}]},{"ID":21234,"SourceStructureID":130038,"TargetStructureID":130039,"Label":"130038-130039 via Conventional from 130040 -> 130041","Type":"Conventional","Directional":true,"Links":[{"SourceID":130040,"TargetID":130041,"Directional":true}]},{"ID":21235,"SourceStructureID":130125,"TargetStructureID":179,"Label":"130125-179 via Conventional from 6369 -> 105202","Type":"Conventional","Directional":true,"Links":[{"SourceID":6369,"TargetID":105202,"Directional":true}]},{"ID":21236,"SourceStructureID":130150,"TargetStructureID":13525,"Label":"130150-13525 via Conventional from 130151 -> 129288","Type":"Conventional","Directional":true,"Links":[{"SourceID":130151,"TargetID":129288,"Directional":true}]},{"ID":21237,"SourceStructureID":130152,"TargetStructureID":13525,"Label":"130152-13525 via Conventional from 130153 -> 129026","Type":"Conventional","Directional":true,"Links":[{"SourceID":130153,"TargetID":129026,"Directional":true}]},{"ID":21238,"SourceStructureID":130200,"TargetStructureID":166,"Label":"130200-166 via Conventional from 130201 -> 4552","Type":"Conventional","Directional":true,"Links":[{"SourceID":130201,"TargetID":4552,"Directional":true}]},{"ID":21239,"SourceStructureID":130200,"TargetStructureID":56822,"Label":"130200-56822 via Conventional from 130202 -> 56824","Type":"Conventional","Directional":true,"Links":[{"SourceID":130202,"TargetID":56824,"Directional":true}]},{"ID":21240,"SourceStructureID":130203,"TargetStructureID":5117,"Label":"130203-5117 via Conventional from 130204 -> 28796","Type":"Conventional","Directional":true,"Links":[{"SourceID":130204,"TargetID":28796,"Directional":true}]},{"ID":21241,"SourceStructureID":130205,"TargetStructureID":273,"Label":"130205-273 via Conventional from 130207 -> 130206","Type":"Conventional","Directional":true,"Links":[{"SourceID":130207,"TargetID":130206,"Directional":true}]},{"ID":21242,"SourceStructureID":130208,"TargetStructureID":5551,"Label":"130208-5551 via Conventional from 130209 -> 130210","Type":"Conventional","Directional":true,"Links":[{"SourceID":130209,"TargetID":130210,"Directional":true}]},{"ID":21243,"SourceStructureID":130228,"TargetStructureID":5282,"Label":"130228-5282 via Conventional from 130229 -> 87560","Type":"Conventional","Directional":true,"Links":[{"SourceID":130229,"TargetID":87560,"Directional":true}]},{"ID":21244,"SourceStructureID":130237,"TargetStructureID":7577,"Label":"130237-7577 via Conventional from 130309 -> 130692","Type":"Conventional","Directional":true,"Links":[{"SourceID":130309,"TargetID":130692,"Directional":true}]},{"ID":21245,"SourceStructureID":130237,"TargetStructureID":13525,"Label":"130237-13525 via Conventional from 130308 -> 130236","Type":"Conventional","Directional":true,"Links":[{"SourceID":130308,"TargetID":130236,"Directional":true}]},{"ID":21246,"SourceStructureID":130239,"TargetStructureID":7568,"Label":"130239-7568 via Conventional from 130359 -> 41761, 130360 -> 41762","Type":"Conventional","Directional":true,"Links":[{"SourceID":130359,"TargetID":41761,"Directional":true},{"SourceID":130360,"TargetID":41762,"Directional":true}]},{"ID":21247,"SourceStructureID":130239,"TargetStructureID":13525,"Label":"130239-13525 via Conventional from 130311 -> 129545","Type":"Conventional","Directional":true,"Links":[{"SourceID":130311,"TargetID":129545,"Directional":true}]},{"ID":21248,"SourceStructureID":130255,"TargetStructureID":13525,"Label":"130255-13525 via Conventional from 130314 -> 129559","Type":"Conventional","Directional":true,"Links":[{"SourceID":130314,"TargetID":129559,"Directional":true}]},{"ID":21249,"SourceStructureID":130256,"TargetStructureID":13525,"Label":"130256-13525 via Ribbon Synapse from 130655 -> 129560","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130655,"TargetID":129560,"Directional":true}]},{"ID":21250,"SourceStructureID":130389,"TargetStructureID":11092,"Label":"130389-11092 via Conventional from 130392 -> 130393","Type":"Conventional","Directional":true,"Links":[{"SourceID":130392,"TargetID":130393,"Directional":true}]},{"ID":21251,"SourceStructureID":130472,"TargetStructureID":130256,"Label":"130472-130256 via Ribbon Synapse from 130485 -> 130331","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130485,"TargetID":130331,"Directional":true}]},{"ID":21252,"SourceStructureID":130644,"TargetStructureID":22554,"Label":"130644-22554 via Ribbon Synapse from 130645 -> 130646","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":130645,"TargetID":130646,"Directional":true}]},{"ID":21253,"SourceStructureID":130941,"TargetStructureID":35188,"Label":"130941-35188 via Conventional from 131048 -> 35190","Type":"Conventional","Directional":true,"Links":[{"SourceID":131048,"TargetID":35190,"Directional":true}]},{"ID":21254,"SourceStructureID":131244,"TargetStructureID":9787,"Label":"131244-9787 via Conventional from 131252 -> 18133","Type":"Conventional","Directional":true,"Links":[{"SourceID":131252,"TargetID":18133,"Directional":true}]},{"ID":21255,"SourceStructureID":131246,"TargetStructureID":36130,"Label":"131246-36130 via Conventional from 131254 -> 36146","Type":"Conventional","Directional":true,"Links":[{"SourceID":131254,"TargetID":36146,"Directional":true}]},{"ID":21256,"SourceStructureID":131284,"TargetStructureID":131286,"Label":"131284-131286 via Conventional from 131285 -> 131289","Type":"Conventional","Directional":true,"Links":[{"SourceID":131285,"TargetID":131289,"Directional":true}]},{"ID":21257,"SourceStructureID":131364,"TargetStructureID":608,"Label":"131364-608 via Conventional from 131365 -> 131363","Type":"Conventional","Directional":true,"Links":[{"SourceID":131365,"TargetID":131363,"Directional":true}]},{"ID":21258,"SourceStructureID":131496,"TargetStructureID":7568,"Label":"131496-7568 via Ribbon Synapse from 131500 -> 27079","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131500,"TargetID":27079,"Directional":true}]},{"ID":21259,"SourceStructureID":131516,"TargetStructureID":5285,"Label":"131516-5285 via Ribbon Synapse from 131528 -> 5302","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131528,"TargetID":5302,"Directional":true}]},{"ID":21260,"SourceStructureID":131516,"TargetStructureID":9787,"Label":"131516-9787 via Ribbon Synapse from 131518 -> 18035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131518,"TargetID":18035,"Directional":true}]},{"ID":21261,"SourceStructureID":131516,"TargetStructureID":10574,"Label":"131516-10574 via Ribbon Synapse from 131528 -> 84555","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131528,"TargetID":84555,"Directional":true}]},{"ID":21262,"SourceStructureID":131568,"TargetStructureID":41778,"Label":"131568-41778 via Ribbon Synapse from 131588 -> 41779","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":131588,"TargetID":41779,"Directional":true}]},{"ID":21263,"SourceStructureID":131642,"TargetStructureID":5283,"Label":"131642-5283 via Conventional from 131647 -> 131646","Type":"Conventional","Directional":true,"Links":[{"SourceID":131647,"TargetID":131646,"Directional":true}]},{"ID":21264,"SourceStructureID":131642,"TargetStructureID":67361,"Label":"131642-67361 via Conventional from 131644 -> 131645","Type":"Conventional","Directional":true,"Links":[{"SourceID":131644,"TargetID":131645,"Directional":true}]},{"ID":21265,"SourceStructureID":132158,"TargetStructureID":5283,"Label":"132158-5283 via Conventional from 132161 -> 132160","Type":"Conventional","Directional":true,"Links":[{"SourceID":132161,"TargetID":132160,"Directional":true}]},{"ID":21266,"SourceStructureID":132202,"TargetStructureID":165,"Label":"132202-165 via Conventional from 132203 -> 12538","Type":"Conventional","Directional":true,"Links":[{"SourceID":132203,"TargetID":12538,"Directional":true}]},{"ID":21267,"SourceStructureID":132220,"TargetStructureID":3865,"Label":"132220-3865 via Ribbon Synapse from 132221 -> 132222","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":132221,"TargetID":132222,"Directional":true}]},{"ID":21268,"SourceStructureID":133264,"TargetStructureID":6156,"Label":"133264-6156 via Conventional from 133266 -> 23185","Type":"Conventional","Directional":true,"Links":[{"SourceID":133266,"TargetID":23185,"Directional":true}]},{"ID":21269,"SourceStructureID":133304,"TargetStructureID":6156,"Label":"133304-6156 via Conventional from 133305 -> 133303","Type":"Conventional","Directional":true,"Links":[{"SourceID":133305,"TargetID":133303,"Directional":true}]},{"ID":21270,"SourceStructureID":133755,"TargetStructureID":133757,"Label":"133755-133757 via Conventional from 133756 -> 133758","Type":"Conventional","Directional":true,"Links":[{"SourceID":133756,"TargetID":133758,"Directional":true}]},{"ID":21271,"SourceStructureID":133779,"TargetStructureID":13525,"Label":"133779-13525 via Conventional from 133781 -> 129031","Type":"Conventional","Directional":true,"Links":[{"SourceID":133781,"TargetID":129031,"Directional":true}]},{"ID":21272,"SourceStructureID":133782,"TargetStructureID":13525,"Label":"133782-13525 via Conventional from 133783 -> 129043","Type":"Conventional","Directional":true,"Links":[{"SourceID":133783,"TargetID":129043,"Directional":true}]},{"ID":21273,"SourceStructureID":133784,"TargetStructureID":13525,"Label":"133784-13525 via Conventional from 133785 -> 129130","Type":"Conventional","Directional":true,"Links":[{"SourceID":133785,"TargetID":129130,"Directional":true}]},{"ID":21274,"SourceStructureID":133786,"TargetStructureID":13525,"Label":"133786-13525 via Conventional from 133787 -> 130233","Type":"Conventional","Directional":true,"Links":[{"SourceID":133787,"TargetID":130233,"Directional":true}]},{"ID":21275,"SourceStructureID":133804,"TargetStructureID":13525,"Label":"133804-13525 via Conventional from 133805 -> 129027","Type":"Conventional","Directional":true,"Links":[{"SourceID":133805,"TargetID":129027,"Directional":true}]},{"ID":21276,"SourceStructureID":134553,"TargetStructureID":7129,"Label":"134553-7129 via Conventional from 3695 -> 54019, 3758 -> 54029","Type":"Conventional","Directional":true,"Links":[{"SourceID":3695,"TargetID":54019,"Directional":true},{"SourceID":3758,"TargetID":54029,"Directional":true}]},{"ID":21277,"SourceStructureID":134553,"TargetStructureID":16026,"Label":"134553-16026 via Conventional from 3697 -> 22328","Type":"Conventional","Directional":true,"Links":[{"SourceID":3697,"TargetID":22328,"Directional":true}]},{"ID":21278,"SourceStructureID":135183,"TargetStructureID":70987,"Label":"135183-70987 via Conventional from 135184 -> 71022","Type":"Conventional","Directional":true,"Links":[{"SourceID":135184,"TargetID":71022,"Directional":true}]},{"ID":21279,"SourceStructureID":135186,"TargetStructureID":135183,"Label":"135186-135183 via Conventional from 135187 -> 135185","Type":"Conventional","Directional":true,"Links":[{"SourceID":135187,"TargetID":135185,"Directional":true}]},{"ID":21280,"SourceStructureID":135196,"TargetStructureID":334,"Label":"135196-334 via Conventional from 135197 -> 135198","Type":"Conventional","Directional":true,"Links":[{"SourceID":135197,"TargetID":135198,"Directional":true}]},{"ID":21281,"SourceStructureID":135208,"TargetStructureID":5117,"Label":"135208-5117 via Conventional from 135209 -> 135206","Type":"Conventional","Directional":true,"Links":[{"SourceID":135209,"TargetID":135206,"Directional":true}]},{"ID":21282,"SourceStructureID":135213,"TargetStructureID":5117,"Label":"135213-5117 via Ribbon Synapse from 135217 -> 135218","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135217,"TargetID":135218,"Directional":true}]},{"ID":21283,"SourceStructureID":135225,"TargetStructureID":135862,"Label":"135225-135862 via Conventional from 135864 -> 135863","Type":"Conventional","Directional":true,"Links":[{"SourceID":135864,"TargetID":135863,"Directional":true}]},{"ID":21284,"SourceStructureID":135225,"TargetStructureID":135884,"Label":"135225-135884 via Conventional from 135883 -> 135885","Type":"Conventional","Directional":true,"Links":[{"SourceID":135883,"TargetID":135885,"Directional":true}]},{"ID":21285,"SourceStructureID":135225,"TargetStructureID":135909,"Label":"135225-135909 via Conventional from 135234 -> 135910","Type":"Conventional","Directional":true,"Links":[{"SourceID":135234,"TargetID":135910,"Directional":true}]},{"ID":21286,"SourceStructureID":135225,"TargetStructureID":135924,"Label":"135225-135924 via Conventional from 135235 -> 135925","Type":"Conventional","Directional":true,"Links":[{"SourceID":135235,"TargetID":135925,"Directional":true}]},{"ID":21287,"SourceStructureID":135225,"TargetStructureID":135982,"Label":"135225-135982 via Conventional from 135828 -> 135983","Type":"Conventional","Directional":true,"Links":[{"SourceID":135828,"TargetID":135983,"Directional":true}]},{"ID":21288,"SourceStructureID":135225,"TargetStructureID":136005,"Label":"135225-136005 via Conventional from 136004 -> 136006","Type":"Conventional","Directional":true,"Links":[{"SourceID":136004,"TargetID":136006,"Directional":true}]},{"ID":21289,"SourceStructureID":135225,"TargetStructureID":136042,"Label":"135225-136042 via Conventional from 135252 -> 136043","Type":"Conventional","Directional":true,"Links":[{"SourceID":135252,"TargetID":136043,"Directional":true}]},{"ID":21290,"SourceStructureID":135225,"TargetStructureID":136046,"Label":"135225-136046 via Conventional from 135251 -> 136048","Type":"Conventional","Directional":true,"Links":[{"SourceID":135251,"TargetID":136048,"Directional":true}]},{"ID":21291,"SourceStructureID":135229,"TargetStructureID":135225,"Label":"135229-135225 via Conventional from 135230 -> 135228","Type":"Conventional","Directional":true,"Links":[{"SourceID":135230,"TargetID":135228,"Directional":true}]},{"ID":21292,"SourceStructureID":135258,"TargetStructureID":135225,"Label":"135258-135225 via Conventional from 135259 -> 135257","Type":"Conventional","Directional":true,"Links":[{"SourceID":135259,"TargetID":135257,"Directional":true}]},{"ID":21293,"SourceStructureID":135281,"TargetStructureID":135225,"Label":"135281-135225 via Conventional from 135283 -> 135279","Type":"Conventional","Directional":true,"Links":[{"SourceID":135283,"TargetID":135279,"Directional":true}]},{"ID":21294,"SourceStructureID":135563,"TargetStructureID":5530,"Label":"135563-5530 via Conventional from 135565 -> 135564","Type":"Conventional","Directional":true,"Links":[{"SourceID":135565,"TargetID":135564,"Directional":true}]},{"ID":21295,"SourceStructureID":135877,"TargetStructureID":135225,"Label":"135877-135225 via Ribbon Synapse from 135881 -> 135882","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135881,"TargetID":135882,"Directional":true}]},{"ID":21296,"SourceStructureID":135877,"TargetStructureID":135876,"Label":"135877-135876 via Ribbon Synapse from 135879 -> 135880","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":135879,"TargetID":135880,"Directional":true}]},{"ID":21297,"SourceStructureID":135941,"TargetStructureID":135225,"Label":"135941-135225 via Conventional from 135945 -> 135946","Type":"Conventional","Directional":true,"Links":[{"SourceID":135945,"TargetID":135946,"Directional":true}]},{"ID":21298,"SourceStructureID":135994,"TargetStructureID":135225,"Label":"135994-135225 via Conventional from 135996 -> 135997","Type":"Conventional","Directional":true,"Links":[{"SourceID":135996,"TargetID":135997,"Directional":true}]},{"ID":21299,"SourceStructureID":136026,"TargetStructureID":135225,"Label":"136026-135225 via Conventional from 136027 -> 135246","Type":"Conventional","Directional":true,"Links":[{"SourceID":136027,"TargetID":135246,"Directional":true}]},{"ID":21300,"SourceStructureID":136033,"TargetStructureID":135225,"Label":"136033-135225 via Ribbon Synapse from 136034 -> 136035","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136034,"TargetID":136035,"Directional":true}]},{"ID":21301,"SourceStructureID":136037,"TargetStructureID":135225,"Label":"136037-135225 via Conventional from 136038 -> 135249","Type":"Conventional","Directional":true,"Links":[{"SourceID":136038,"TargetID":135249,"Directional":true}]},{"ID":21302,"SourceStructureID":136075,"TargetStructureID":135225,"Label":"136075-135225 via Conventional from 136076 -> 135277","Type":"Conventional","Directional":true,"Links":[{"SourceID":136076,"TargetID":135277,"Directional":true}]},{"ID":21303,"SourceStructureID":136127,"TargetStructureID":11238,"Label":"136127-11238 via Ribbon Synapse from 136129 -> 136124","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136129,"TargetID":136124,"Directional":true}]},{"ID":21304,"SourceStructureID":136140,"TargetStructureID":11238,"Label":"136140-11238 via Ribbon Synapse from 136141 -> 136139","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136141,"TargetID":136139,"Directional":true}]},{"ID":21305,"SourceStructureID":136256,"TargetStructureID":7361,"Label":"136256-7361 via Conventional from 136257 -> 136255, 136259 -> 136258","Type":"Conventional","Directional":true,"Links":[{"SourceID":136257,"TargetID":136255,"Directional":true},{"SourceID":136259,"TargetID":136258,"Directional":true}]},{"ID":21306,"SourceStructureID":136291,"TargetStructureID":11238,"Label":"136291-11238 via Ribbon Synapse from 136292 -> 136293","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136292,"TargetID":136293,"Directional":true}]},{"ID":21307,"SourceStructureID":136362,"TargetStructureID":28950,"Label":"136362-28950 via Conventional from 136363 -> 136360","Type":"Conventional","Directional":true,"Links":[{"SourceID":136363,"TargetID":136360,"Directional":true}]},{"ID":21308,"SourceStructureID":136381,"TargetStructureID":5582,"Label":"136381-5582 via Conventional from 136382 -> 136380","Type":"Conventional","Directional":true,"Links":[{"SourceID":136382,"TargetID":136380,"Directional":true}]},{"ID":21309,"SourceStructureID":136513,"TargetStructureID":136432,"Label":"136513-136432 via Ribbon Synapse from 136514 -> 136512","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136514,"TargetID":136512,"Directional":true}]},{"ID":21310,"SourceStructureID":136529,"TargetStructureID":136432,"Label":"136529-136432 via Ribbon Synapse from 136530 -> 136528","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136530,"TargetID":136528,"Directional":true}]},{"ID":21311,"SourceStructureID":136674,"TargetStructureID":525,"Label":"136674-525 via Conventional from 136675 -> 6236","Type":"Conventional","Directional":true,"Links":[{"SourceID":136675,"TargetID":6236,"Directional":true}]},{"ID":21312,"SourceStructureID":136674,"TargetStructureID":6997,"Label":"136674-6997 via Unknown from 136676 -> 136562","Type":"Unknown","Directional":true,"Links":[{"SourceID":136676,"TargetID":136562,"Directional":true}]},{"ID":21313,"SourceStructureID":136796,"TargetStructureID":5515,"Label":"136796-5515 via Conventional from 136811 -> 119383","Type":"Conventional","Directional":true,"Links":[{"SourceID":136811,"TargetID":119383,"Directional":true}]},{"ID":21314,"SourceStructureID":136843,"TargetStructureID":138,"Label":"136843-138 via Conventional from 136844 -> 136842","Type":"Conventional","Directional":true,"Links":[{"SourceID":136844,"TargetID":136842,"Directional":true}]},{"ID":21315,"SourceStructureID":136884,"TargetStructureID":8575,"Label":"136884-8575 via Ribbon Synapse from 136885 -> 62261","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136885,"TargetID":62261,"Directional":true}]},{"ID":21316,"SourceStructureID":136913,"TargetStructureID":10963,"Label":"136913-10963 via Conventional from 136915 -> 136911","Type":"Conventional","Directional":true,"Links":[{"SourceID":136915,"TargetID":136911,"Directional":true}]},{"ID":21317,"SourceStructureID":136917,"TargetStructureID":10963,"Label":"136917-10963 via Conventional from 136918 -> 136916","Type":"Conventional","Directional":true,"Links":[{"SourceID":136918,"TargetID":136916,"Directional":true}]},{"ID":21318,"SourceStructureID":136927,"TargetStructureID":136931,"Label":"136927-136931 via Ribbon Synapse from 136929 -> 136935","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136929,"TargetID":136935,"Directional":true}]},{"ID":21319,"SourceStructureID":136936,"TargetStructureID":136931,"Label":"136936-136931 via Ribbon Synapse from 136937 -> 136938","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136937,"TargetID":136938,"Directional":true}]},{"ID":21320,"SourceStructureID":136947,"TargetStructureID":46741,"Label":"136947-46741 via Ribbon Synapse from 136948 -> 136946","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136948,"TargetID":136946,"Directional":true}]},{"ID":21321,"SourceStructureID":136952,"TargetStructureID":46741,"Label":"136952-46741 via Ribbon Synapse from 136953 -> 136951, 136960 -> 136961","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":136953,"TargetID":136951,"Directional":true},{"SourceID":136960,"TargetID":136961,"Directional":true}]},{"ID":21322,"SourceStructureID":136956,"TargetStructureID":165,"Label":"136956-165 via Conventional from 136957 -> 21667","Type":"Conventional","Directional":true,"Links":[{"SourceID":136957,"TargetID":21667,"Directional":true}]},{"ID":21323,"SourceStructureID":136970,"TargetStructureID":165,"Label":"136970-165 via Conventional from 136971 -> 21665","Type":"Conventional","Directional":true,"Links":[{"SourceID":136971,"TargetID":21665,"Directional":true}]},{"ID":21324,"SourceStructureID":136970,"TargetStructureID":5543,"Label":"136970-5543 via Conventional from 136991 -> 17079","Type":"Conventional","Directional":true,"Links":[{"SourceID":136991,"TargetID":17079,"Directional":true}]},{"ID":21325,"SourceStructureID":136970,"TargetStructureID":11092,"Label":"136970-11092 via Conventional from 136992 -> 128637","Type":"Conventional","Directional":true,"Links":[{"SourceID":136992,"TargetID":128637,"Directional":true}]},{"ID":21326,"SourceStructureID":136970,"TargetStructureID":46741,"Label":"136970-46741 via Conventional from 136972 -> 136959","Type":"Conventional","Directional":true,"Links":[{"SourceID":136972,"TargetID":136959,"Directional":true}]},{"ID":21327,"SourceStructureID":136970,"TargetStructureID":98127,"Label":"136970-98127 via Conventional from 136975 -> 98916","Type":"Conventional","Directional":true,"Links":[{"SourceID":136975,"TargetID":98916,"Directional":true}]},{"ID":21328,"SourceStructureID":136970,"TargetStructureID":158774,"Label":"136970-158774 via Conventional from 136973 -> 158775","Type":"Conventional","Directional":true,"Links":[{"SourceID":136973,"TargetID":158775,"Directional":true}]},{"ID":21329,"SourceStructureID":137002,"TargetStructureID":46741,"Label":"137002-46741 via Ribbon Synapse from 137003 -> 137001","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137003,"TargetID":137001,"Directional":true}]},{"ID":21330,"SourceStructureID":137007,"TargetStructureID":28950,"Label":"137007-28950 via Conventional from 137008 -> 29042","Type":"Conventional","Directional":true,"Links":[{"SourceID":137008,"TargetID":29042,"Directional":true}]},{"ID":21331,"SourceStructureID":137009,"TargetStructureID":6128,"Label":"137009-6128 via Conventional from 137011 -> 33749","Type":"Conventional","Directional":true,"Links":[{"SourceID":137011,"TargetID":33749,"Directional":true}]},{"ID":21332,"SourceStructureID":137009,"TargetStructureID":28950,"Label":"137009-28950 via Conventional from 137010 -> 29040","Type":"Conventional","Directional":true,"Links":[{"SourceID":137010,"TargetID":29040,"Directional":true}]},{"ID":21333,"SourceStructureID":137012,"TargetStructureID":11092,"Label":"137012-11092 via Conventional from 137014 -> 128646","Type":"Conventional","Directional":true,"Links":[{"SourceID":137014,"TargetID":128646,"Directional":true}]},{"ID":21334,"SourceStructureID":137040,"TargetStructureID":137024,"Label":"137040-137024 via Ribbon Synapse from 137041 -> 137039","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137041,"TargetID":137039,"Directional":true}]},{"ID":21335,"SourceStructureID":137070,"TargetStructureID":7861,"Label":"137070-7861 via Ribbon Synapse from 137082 -> 137083","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137082,"TargetID":137083,"Directional":true}]},{"ID":21336,"SourceStructureID":137070,"TargetStructureID":137084,"Label":"137070-137084 via Ribbon Synapse from 137086 -> 137087","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137086,"TargetID":137087,"Directional":true}]},{"ID":21337,"SourceStructureID":137084,"TargetStructureID":137070,"Label":"137084-137070 via Conventional from 137085 -> 137081","Type":"Conventional","Directional":true,"Links":[{"SourceID":137085,"TargetID":137081,"Directional":true}]},{"ID":21338,"SourceStructureID":137099,"TargetStructureID":46741,"Label":"137099-46741 via Conventional from 137100 -> 137097","Type":"Conventional","Directional":true,"Links":[{"SourceID":137100,"TargetID":137097,"Directional":true}]},{"ID":21339,"SourceStructureID":137113,"TargetStructureID":341,"Label":"137113-341 via Conventional from 137114 -> 30055","Type":"Conventional","Directional":true,"Links":[{"SourceID":137114,"TargetID":30055,"Directional":true}]},{"ID":21340,"SourceStructureID":137147,"TargetStructureID":137122,"Label":"137147-137122 via Conventional from 137148 -> 137149","Type":"Conventional","Directional":true,"Links":[{"SourceID":137148,"TargetID":137149,"Directional":true}]},{"ID":21341,"SourceStructureID":137155,"TargetStructureID":137122,"Label":"137155-137122 via Ribbon Synapse from 137156 -> 137153","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137156,"TargetID":137153,"Directional":true}]},{"ID":21342,"SourceStructureID":137159,"TargetStructureID":968,"Label":"137159-968 via Conventional from 31350 -> 12181","Type":"Conventional","Directional":true,"Links":[{"SourceID":31350,"TargetID":12181,"Directional":true}]},{"ID":21343,"SourceStructureID":137159,"TargetStructureID":137122,"Label":"137159-137122 via Conventional from 137160 -> 137158","Type":"Conventional","Directional":true,"Links":[{"SourceID":137160,"TargetID":137158,"Directional":true}]},{"ID":21344,"SourceStructureID":137159,"TargetStructureID":147217,"Label":"137159-147217 via Conventional from 147216 -> 147218","Type":"Conventional","Directional":true,"Links":[{"SourceID":147216,"TargetID":147218,"Directional":true}]},{"ID":21345,"SourceStructureID":137162,"TargetStructureID":137159,"Label":"137162-137159 via Ribbon Synapse from 137163 -> 137161","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137163,"TargetID":137161,"Directional":true}]},{"ID":21346,"SourceStructureID":137168,"TargetStructureID":137122,"Label":"137168-137122 via Ribbon Synapse from 137169 -> 137167","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137169,"TargetID":137167,"Directional":true}]},{"ID":21347,"SourceStructureID":137189,"TargetStructureID":38810,"Label":"137189-38810 via BC Conventional Synapse from 137195 -> 137188","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":137195,"TargetID":137188,"Directional":true}]},{"ID":21348,"SourceStructureID":137189,"TargetStructureID":137192,"Label":"137189-137192 via Ribbon Synapse from 137191 -> 137193","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":137191,"TargetID":137193,"Directional":true}]},{"ID":21349,"SourceStructureID":137192,"TargetStructureID":137189,"Label":"137192-137189 via Conventional from 137194 -> 137190","Type":"Conventional","Directional":true,"Links":[{"SourceID":137194,"TargetID":137190,"Directional":true}]},{"ID":21350,"SourceStructureID":147203,"TargetStructureID":38810,"Label":"147203-38810 via Conventional from 147204 -> 137186","Type":"Conventional","Directional":true,"Links":[{"SourceID":147204,"TargetID":137186,"Directional":true}]},{"ID":21351,"SourceStructureID":147213,"TargetStructureID":115,"Label":"147213-115 via Ribbon Synapse from 147215 -> 42778","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147215,"TargetID":42778,"Directional":true}]},{"ID":21352,"SourceStructureID":147213,"TargetStructureID":137159,"Label":"147213-137159 via Ribbon Synapse from 147214 -> 147212","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147214,"TargetID":147212,"Directional":true}]},{"ID":21353,"SourceStructureID":147220,"TargetStructureID":8575,"Label":"147220-8575 via BC Conventional Synapse from 147223 -> 147219","Type":"BC Conventional Synapse","Directional":true,"Links":[{"SourceID":147223,"TargetID":147219,"Directional":true}]},{"ID":21354,"SourceStructureID":147696,"TargetStructureID":168,"Label":"147696-168 via Conventional from 147736 -> 147737, 147738 -> 4224","Type":"Conventional","Directional":true,"Links":[{"SourceID":147736,"TargetID":147737,"Directional":true},{"SourceID":147738,"TargetID":4224,"Directional":true}]},{"ID":21355,"SourceStructureID":147696,"TargetStructureID":170,"Label":"147696-170 via Conventional from 88972 -> 88973, 147743 -> 1333","Type":"Conventional","Directional":true,"Links":[{"SourceID":88972,"TargetID":88973,"Directional":true},{"SourceID":147743,"TargetID":1333,"Directional":true}]},{"ID":21356,"SourceStructureID":147696,"TargetStructureID":176,"Label":"147696-176 via Conventional from 147707 -> 125825, 147710 -> 5887, 147715 -> 5882, 147732 -> 20030","Type":"Conventional","Directional":true,"Links":[{"SourceID":147707,"TargetID":125825,"Directional":true},{"SourceID":147710,"TargetID":5887,"Directional":true},{"SourceID":147715,"TargetID":5882,"Directional":true},{"SourceID":147732,"TargetID":20030,"Directional":true}]},{"ID":21357,"SourceStructureID":147696,"TargetStructureID":464,"Label":"147696-464 via Conventional from 147754 -> 8068","Type":"Conventional","Directional":true,"Links":[{"SourceID":147754,"TargetID":8068,"Directional":true}]},{"ID":21358,"SourceStructureID":147696,"TargetStructureID":595,"Label":"147696-595 via Conventional from 147741 -> 46636","Type":"Conventional","Directional":true,"Links":[{"SourceID":147741,"TargetID":46636,"Directional":true}]},{"ID":21359,"SourceStructureID":147696,"TargetStructureID":5530,"Label":"147696-5530 via Conventional from 147728 -> 42147","Type":"Conventional","Directional":true,"Links":[{"SourceID":147728,"TargetID":42147,"Directional":true}]},{"ID":21360,"SourceStructureID":147696,"TargetStructureID":5601,"Label":"147696-5601 via Conventional from 147700 -> 127429","Type":"Conventional","Directional":true,"Links":[{"SourceID":147700,"TargetID":127429,"Directional":true}]},{"ID":21361,"SourceStructureID":147696,"TargetStructureID":8580,"Label":"147696-8580 via Conventional from 147705 -> 147706","Type":"Conventional","Directional":true,"Links":[{"SourceID":147705,"TargetID":147706,"Directional":true}]},{"ID":21362,"SourceStructureID":147696,"TargetStructureID":43716,"Label":"147696-43716 via Conventional from 147697 -> 147695","Type":"Conventional","Directional":true,"Links":[{"SourceID":147697,"TargetID":147695,"Directional":true}]},{"ID":21363,"SourceStructureID":147696,"TargetStructureID":81014,"Label":"147696-81014 via Conventional from 147726 -> 147727","Type":"Conventional","Directional":true,"Links":[{"SourceID":147726,"TargetID":147727,"Directional":true}]},{"ID":21364,"SourceStructureID":147696,"TargetStructureID":88954,"Label":"147696-88954 via Conventional from 147744 -> 147745","Type":"Conventional","Directional":true,"Links":[{"SourceID":147744,"TargetID":147745,"Directional":true}]},{"ID":21365,"SourceStructureID":147696,"TargetStructureID":127764,"Label":"147696-127764 via Conventional from 147711 -> 129275","Type":"Conventional","Directional":true,"Links":[{"SourceID":147711,"TargetID":129275,"Directional":true}]},{"ID":21366,"SourceStructureID":147696,"TargetStructureID":147713,"Label":"147696-147713 via Conventional from 147712 -> 147716","Type":"Conventional","Directional":true,"Links":[{"SourceID":147712,"TargetID":147716,"Directional":true}]},{"ID":21367,"SourceStructureID":147696,"TargetStructureID":147750,"Label":"147696-147750 via Conventional from 147749 -> 147752","Type":"Conventional","Directional":true,"Links":[{"SourceID":147749,"TargetID":147752,"Directional":true}]},{"ID":21368,"SourceStructureID":147698,"TargetStructureID":5601,"Label":"147698-5601 via Conventional from 147699 -> 23970","Type":"Conventional","Directional":true,"Links":[{"SourceID":147699,"TargetID":23970,"Directional":true}]},{"ID":21369,"SourceStructureID":147718,"TargetStructureID":147696,"Label":"147718-147696 via Conventional from 147719 -> 147717","Type":"Conventional","Directional":true,"Links":[{"SourceID":147719,"TargetID":147717,"Directional":true}]},{"ID":21370,"SourceStructureID":147734,"TargetStructureID":147696,"Label":"147734-147696 via Conventional from 147735 -> 147733","Type":"Conventional","Directional":true,"Links":[{"SourceID":147735,"TargetID":147733,"Directional":true}]},{"ID":21371,"SourceStructureID":147750,"TargetStructureID":41905,"Label":"147750-41905 via Conventional from 147751 -> 41907","Type":"Conventional","Directional":true,"Links":[{"SourceID":147751,"TargetID":41907,"Directional":true}]},{"ID":21372,"SourceStructureID":147765,"TargetStructureID":15796,"Label":"147765-15796 via Conventional from 147766 -> 147764","Type":"Conventional","Directional":true,"Links":[{"SourceID":147766,"TargetID":147764,"Directional":true}]},{"ID":21373,"SourceStructureID":147769,"TargetStructureID":15796,"Label":"147769-15796 via Conventional from 147770 -> 147768","Type":"Conventional","Directional":true,"Links":[{"SourceID":147770,"TargetID":147768,"Directional":true}]},{"ID":21374,"SourceStructureID":147776,"TargetStructureID":15796,"Label":"147776-15796 via Conventional from 147777 -> 147775","Type":"Conventional","Directional":true,"Links":[{"SourceID":147777,"TargetID":147775,"Directional":true}]},{"ID":21375,"SourceStructureID":147781,"TargetStructureID":15796,"Label":"147781-15796 via Conventional from 147782 -> 147780","Type":"Conventional","Directional":true,"Links":[{"SourceID":147782,"TargetID":147780,"Directional":true}]},{"ID":21376,"SourceStructureID":147781,"TargetStructureID":120347,"Label":"147781-120347 via Conventional from 147783 -> 147784","Type":"Conventional","Directional":true,"Links":[{"SourceID":147783,"TargetID":147784,"Directional":true}]},{"ID":21377,"SourceStructureID":147788,"TargetStructureID":15796,"Label":"147788-15796 via Conventional from 147789 -> 147787","Type":"Conventional","Directional":true,"Links":[{"SourceID":147789,"TargetID":147787,"Directional":true}]},{"ID":21378,"SourceStructureID":147793,"TargetStructureID":5107,"Label":"147793-5107 via Conventional from 147794 -> 5143","Type":"Conventional","Directional":true,"Links":[{"SourceID":147794,"TargetID":5143,"Directional":true}]},{"ID":21379,"SourceStructureID":147796,"TargetStructureID":5107,"Label":"147796-5107 via Ribbon Synapse from 147797 -> 147795","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147797,"TargetID":147795,"Directional":true}]},{"ID":21380,"SourceStructureID":147805,"TargetStructureID":5107,"Label":"147805-5107 via Conventional from 147806 -> 64968","Type":"Conventional","Directional":true,"Links":[{"SourceID":147806,"TargetID":64968,"Directional":true}]},{"ID":21381,"SourceStructureID":147809,"TargetStructureID":476,"Label":"147809-476 via Ribbon Synapse from 147811 -> 147812","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147811,"TargetID":147812,"Directional":true}]},{"ID":21382,"SourceStructureID":147809,"TargetStructureID":5107,"Label":"147809-5107 via Ribbon Synapse from 147810 -> 147808","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147810,"TargetID":147808,"Directional":true}]},{"ID":21383,"SourceStructureID":147809,"TargetStructureID":5421,"Label":"147809-5421 via Ribbon Synapse from 147810 -> 130890","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":147810,"TargetID":130890,"Directional":true}]},{"ID":21384,"SourceStructureID":148302,"TargetStructureID":6123,"Label":"148302-6123 via Conventional from 148305 -> 148299","Type":"Conventional","Directional":true,"Links":[{"SourceID":148305,"TargetID":148299,"Directional":true}]},{"ID":21385,"SourceStructureID":148314,"TargetStructureID":5107,"Label":"148314-5107 via Conventional from 148315 -> 148313","Type":"Conventional","Directional":true,"Links":[{"SourceID":148315,"TargetID":148313,"Directional":true}]},{"ID":21386,"SourceStructureID":148317,"TargetStructureID":5107,"Label":"148317-5107 via Conventional from 148318 -> 148319","Type":"Conventional","Directional":true,"Links":[{"SourceID":148318,"TargetID":148319,"Directional":true}]},{"ID":21387,"SourceStructureID":148330,"TargetStructureID":5107,"Label":"148330-5107 via Conventional from 148331 -> 148329","Type":"Conventional","Directional":true,"Links":[{"SourceID":148331,"TargetID":148329,"Directional":true}]},{"ID":21388,"SourceStructureID":148332,"TargetStructureID":5107,"Label":"148332-5107 via Conventional from 148333 -> 148328","Type":"Conventional","Directional":true,"Links":[{"SourceID":148333,"TargetID":148328,"Directional":true}]},{"ID":21389,"SourceStructureID":148335,"TargetStructureID":5107,"Label":"148335-5107 via Conventional from 148336 -> 148334","Type":"Conventional","Directional":true,"Links":[{"SourceID":148336,"TargetID":148334,"Directional":true}]},{"ID":21390,"SourceStructureID":148337,"TargetStructureID":5107,"Label":"148337-5107 via Conventional from 148338 -> 148339","Type":"Conventional","Directional":true,"Links":[{"SourceID":148338,"TargetID":148339,"Directional":true}]},{"ID":21391,"SourceStructureID":148343,"TargetStructureID":148335,"Label":"148343-148335 via Conventional from 148344 -> 148342","Type":"Conventional","Directional":true,"Links":[{"SourceID":148344,"TargetID":148342,"Directional":true}]},{"ID":21392,"SourceStructureID":148346,"TargetStructureID":5107,"Label":"148346-5107 via Conventional from 148347 -> 148345","Type":"Conventional","Directional":true,"Links":[{"SourceID":148347,"TargetID":148345,"Directional":true}]},{"ID":21393,"SourceStructureID":148351,"TargetStructureID":5107,"Label":"148351-5107 via Conventional from 148352 -> 148350","Type":"Conventional","Directional":true,"Links":[{"SourceID":148352,"TargetID":148350,"Directional":true}]},{"ID":21394,"SourceStructureID":148354,"TargetStructureID":5107,"Label":"148354-5107 via Conventional from 148355 -> 148356","Type":"Conventional","Directional":true,"Links":[{"SourceID":148355,"TargetID":148356,"Directional":true}]},{"ID":21395,"SourceStructureID":148358,"TargetStructureID":5107,"Label":"148358-5107 via Conventional from 148359 -> 148357","Type":"Conventional","Directional":true,"Links":[{"SourceID":148359,"TargetID":148357,"Directional":true}]},{"ID":21396,"SourceStructureID":148361,"TargetStructureID":5107,"Label":"148361-5107 via Conventional from 148362 -> 148360","Type":"Conventional","Directional":true,"Links":[{"SourceID":148362,"TargetID":148360,"Directional":true}]},{"ID":21397,"SourceStructureID":148364,"TargetStructureID":5107,"Label":"148364-5107 via Conventional from 148365 -> 148363","Type":"Conventional","Directional":true,"Links":[{"SourceID":148365,"TargetID":148363,"Directional":true}]},{"ID":21398,"SourceStructureID":148367,"TargetStructureID":5107,"Label":"148367-5107 via Conventional from 148368 -> 148366","Type":"Conventional","Directional":true,"Links":[{"SourceID":148368,"TargetID":148366,"Directional":true}]},{"ID":21399,"SourceStructureID":148371,"TargetStructureID":5107,"Label":"148371-5107 via Conventional from 148372 -> 148370","Type":"Conventional","Directional":true,"Links":[{"SourceID":148372,"TargetID":148370,"Directional":true}]},{"ID":21400,"SourceStructureID":148374,"TargetStructureID":148371,"Label":"148374-148371 via Conventional from 148375 -> 148373","Type":"Conventional","Directional":true,"Links":[{"SourceID":148375,"TargetID":148373,"Directional":true}]},{"ID":21401,"SourceStructureID":148377,"TargetStructureID":148374,"Label":"148377-148374 via Ribbon Synapse from 148378 -> 148376","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148378,"TargetID":148376,"Directional":true}]},{"ID":21402,"SourceStructureID":148381,"TargetStructureID":148374,"Label":"148381-148374 via Conventional from 148382 -> 148380","Type":"Conventional","Directional":true,"Links":[{"SourceID":148382,"TargetID":148380,"Directional":true}]},{"ID":21403,"SourceStructureID":148384,"TargetStructureID":148374,"Label":"148384-148374 via Ribbon Synapse from 148385 -> 148383","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148385,"TargetID":148383,"Directional":true}]},{"ID":21404,"SourceStructureID":148389,"TargetStructureID":85629,"Label":"148389-85629 via Ribbon Synapse from 148390 -> 85840","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148390,"TargetID":85840,"Directional":true}]},{"ID":21405,"SourceStructureID":148397,"TargetStructureID":148374,"Label":"148397-148374 via Ribbon Synapse from 148398 -> 148399","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":148398,"TargetID":148399,"Directional":true}]},{"ID":21406,"SourceStructureID":148402,"TargetStructureID":148374,"Label":"148402-148374 via Conventional from 148403 -> 148401","Type":"Conventional","Directional":true,"Links":[{"SourceID":148403,"TargetID":148401,"Directional":true}]},{"ID":21407,"SourceStructureID":158498,"TargetStructureID":13525,"Label":"158498-13525 via Conventional from 158499 -> 158500","Type":"Conventional","Directional":true,"Links":[{"SourceID":158499,"TargetID":158500,"Directional":true}]},{"ID":21408,"SourceStructureID":158503,"TargetStructureID":158472,"Label":"158503-158472 via Conventional from 158504 -> 158502","Type":"Conventional","Directional":true,"Links":[{"SourceID":158504,"TargetID":158502,"Directional":true}]},{"ID":21409,"SourceStructureID":158507,"TargetStructureID":158472,"Label":"158507-158472 via Conventional from 158508 -> 158506","Type":"Conventional","Directional":true,"Links":[{"SourceID":158508,"TargetID":158506,"Directional":true}]},{"ID":21410,"SourceStructureID":158518,"TargetStructureID":13525,"Label":"158518-13525 via Ribbon Synapse from 158519 -> 158501, 158533 -> 158534","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":158519,"TargetID":158501,"Directional":true},{"SourceID":158533,"TargetID":158534,"Directional":true}]},{"ID":21411,"SourceStructureID":158846,"TargetStructureID":7157,"Label":"158846-7157 via Ribbon Synapse from 158849 -> 8211, 158851 -> 8209, 158852 -> 8208","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":158849,"TargetID":8211,"Directional":true},{"SourceID":158851,"TargetID":8209,"Directional":true},{"SourceID":158852,"TargetID":8208,"Directional":true}]},{"ID":21412,"SourceStructureID":158878,"TargetStructureID":30015,"Label":"158878-30015 via Ribbon Synapse from 158882 -> 30030","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":158882,"TargetID":30030,"Directional":true}]},{"ID":21413,"SourceStructureID":158899,"TargetStructureID":5435,"Label":"158899-5435 via Ribbon Synapse from 158903 -> 41816, 158964 -> 41818","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":158903,"TargetID":41816,"Directional":true},{"SourceID":158964,"TargetID":41818,"Directional":true}]},{"ID":21414,"SourceStructureID":159028,"TargetStructureID":61270,"Label":"159028-61270 via Ribbon Synapse from 159029 -> 68864","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":159029,"TargetID":68864,"Directional":true}]},{"ID":21415,"SourceStructureID":159045,"TargetStructureID":115,"Label":"159045-115 via Ribbon Synapse from 159071 -> 8113, 159074 -> 8111","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":159071,"TargetID":8113,"Directional":true},{"SourceID":159074,"TargetID":8111,"Directional":true}]},{"ID":21416,"SourceStructureID":159118,"TargetStructureID":158477,"Label":"159118-158477 via Conventional from 159119 -> 158478","Type":"Conventional","Directional":true,"Links":[{"SourceID":159119,"TargetID":158478,"Directional":true}]},{"ID":21417,"SourceStructureID":159123,"TargetStructureID":158477,"Label":"159123-158477 via Conventional from 159124 -> 158509","Type":"Conventional","Directional":true,"Links":[{"SourceID":159124,"TargetID":158509,"Directional":true}]},{"ID":21418,"SourceStructureID":159125,"TargetStructureID":158473,"Label":"159125-158473 via Ribbon Synapse from 159126 -> 158511","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":159126,"TargetID":158511,"Directional":true}]},{"ID":21419,"SourceStructureID":159146,"TargetStructureID":158515,"Label":"159146-158515 via Conventional from 159147 -> 158516","Type":"Conventional","Directional":true,"Links":[{"SourceID":159147,"TargetID":158516,"Directional":true}]},{"ID":21420,"SourceStructureID":159150,"TargetStructureID":13525,"Label":"159150-13525 via Ribbon Synapse from 159151 -> 158474","Type":"Ribbon Synapse","Directional":true,"Links":[{"SourceID":159151,"TargetID":158474,"Directional":true}]}]}} \ No newline at end of file +{ + "query": { + "availableNumHops": [1, 2, 3], + "selectedNumHops": 2, + "nodes": ["CBb.*", "YAC Ai", "CBb.*"], + "edges": [".*", ".*"] + }, + "matrix": { + "source_ids": [6153, 2610, 410, 324, 321, 309, 307, 299, 284, 223, 276, 286, 332, 4835, 7157, 30102], + "matrix": [ + [ + [ + [6153, 795, 223] + ], + [ + [6153, 866, 284] + ] + ], + [ + [ + [2610, 794, 223] + ], + [] + ], + [ + [ + [410, 792, 223] + ], + [] + ], + [ + [ + [324, 787, 223] + ], + [ + [324, 857, 284] + ] + ], + [ + [ + [321, 786, 223] + ], + [ + [321, 854, 284] + ] + ], + [ + [ + [309, 784, 223] + ], + [ + [309, 853, 284] + ] + ], + [ + [ + [307, 782, 223] + ], + [] + ], + [ + [ + [299, 779, 223] + ], + [] + ], + [ + [ + [284, 778, 223] + ], + [] + ], + [ + [], + [ + [223, 777, 284] + ] + ], + [ + [], + [ + [276, 809, 284] + ] + ], + [ + [], + [ + [286, 850, 284] + ] + ], + [ + [], + [ + [332, 860, 284] + ] + ], + [ + [], + [ + [4835, 862, 284] + ] + ], + [ + [], + [ + [7157, 871, 284] + ] + ], + [ + [], + [ + [30102, 872, 284] + ] + ] + ], + "target_ids": [223, 284] + }, + "graph": { + "nodes": [{ + "HullArea": 576074887.998755, + "StructureID": 284, + "ID": 284, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(284L)", + "Label": "GAC Aii" + }, { + "HullArea": 18405197.9158806, + "StructureID": 30102, + "ID": 30102, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(30102L)", + "Label": "CBb4w" + }, { + "HullArea": 271322411.380455, + "StructureID": 276, + "ID": 276, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(276L)", + "Label": "CBb6" + }, { + "HullArea": 463507549.086105, + "StructureID": 332, + "ID": 332, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(332L)", + "Label": "CBb5" + }, { + "HullArea": 727909185.079524, + "StructureID": 410, + "ID": 410, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(410L)", + "Label": "GAC Aii" + }, { + "HullArea": 127564659.372802, + "StructureID": 299, + "ID": 299, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(299L)", + "Label": "CBb3n" + }, { + "HullArea": 744336029.285149, + "StructureID": 6153, + "ID": 6153, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(6153L)", + "Label": "GAC Aii" + }, { + "HullArea": 256364716.284775, + "StructureID": 307, + "ID": 307, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(307L)", + "Label": "CBb4w" + }, { + "HullArea": 735293612.358319, + "StructureID": 7157, + "ID": 7157, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(7157L)", + "Label": "GAC Aii" + }, { + "HullArea": 244061675.180231, + "StructureID": 309, + "ID": 309, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(309L)", + "Label": "CBb6" + }, { + "HullArea": 400934415.859849, + "StructureID": 324, + "ID": 324, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(324L)", + "Label": "CBb4w" + }, { + "HullArea": 285587564.527793, + "StructureID": 286, + "ID": 286, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(286L)", + "Label": "CBb5" + }, { + "HullArea": 321651156.940365, + "StructureID": 223, + "ID": 223, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(223L)", + "Label": "GAC Aii" + }, { + "HullArea": 867692614.832515, + "StructureID": 4835, + "ID": 4835, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(4835L)", + "Label": "GAC Aii" + }, { + "HullArea": 823912058.921718, + "StructureID": 2610, + "ID": 2610, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(2610L)", + "Label": "GAC Aii" + }, { + "HullArea": 228148237.674384, + "StructureID": 321, + "ID": 321, + "Structure": "http://websvc1.connectomes.utah.edu/RC1/OData/ConnectomeData.svc/Structures(321L)", + "Label": "CBb3n" + }], + "edges": [{ + "TargetSizes": [31308.9451626985], + "SourceID": 4835, + "Type": "Gap Junction", + "SourceSizes": [26064.3596520369], + "LinkedStructures": " 29608 -> 29607\r", + "SourceStructureID": 4835, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 862 + }, { + "TargetSizes": [92714.5787032651, 94778.8895688309], + "SourceID": 332, + "Type": "Gap Junction", + "SourceSizes": [102694.599118224, 94778.6885692744], + "LinkedStructures": " 29526 -> 29525\r 95191 -> 95192\r", + "SourceStructureID": 332, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 860 + }, { + "TargetSizes": [21385.7201776529, 46696.3391731195, 34330.6867499462, 34811.0494588163], + "SourceID": 223, + "Type": "Gap Junction", + "SourceSizes": [21385.7258684296, 46696.3433984048, 17845.0476349797, 31968.7669197468], + "LinkedStructures": " 17519 -> 17518\r 17520 -> 14350\r 17521 -> 17419\r 131778 -> 131779\r", + "SourceStructureID": 223, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 777 + }, { + "TargetSizes": [30546.5523795957], + "SourceID": 321, + "Type": "Gap Junction", + "SourceSizes": [30546.5471076884], + "LinkedStructures": " 115571 -> 115570\r", + "SourceStructureID": 321, + "TargetID": 223, + "TargetStructureID": 223, + "ID": 786 + }, { + "TargetSizes": [52312.3204382367], + "SourceID": 309, + "Type": "Gap Junction", + "SourceSizes": [52312.3134450583], + "LinkedStructures": " 122310 -> 122309\r", + "SourceStructureID": 309, + "TargetID": 223, + "TargetStructureID": 223, + "ID": 784 + }, { + "TargetSizes": [172098.42643885, 17366.1563281033, 98779.588232117], + "SourceID": 276, + "Type": "Gap Junction", + "SourceSizes": [172098.424497736, 17366.1454550044, 98779.5319400795], + "LinkedStructures": " 29537 -> 29536\r 122164 -> 122165\r 122166 -> 29530\r", + "SourceStructureID": 276, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 809 + }, { + "TargetSizes": [57413.7025226681, 85659.3280315424, 176580.900808767, 138523.448468204, 145646.142329139, 216392.996071871], + "SourceID": 6153, + "Type": "Gap Junction", + "SourceSizes": [57413.869834994, 85659.3459911782, 176580.830122334, 106698.829172662, 159160.355322978, 174244.84155422], + "LinkedStructures": " 17455 -> 17454\r 17463 -> 17462\r 17509 -> 14371\r 17510 -> 14369\r 29498 -> 29479\r 29542 -> 29520\r", + "SourceStructureID": 6153, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 866 + }, { + "TargetSizes": [177809.420896753], + "SourceID": 299, + "Type": "Gap Junction", + "SourceSizes": [175167.507818716], + "LinkedStructures": " 47093 -> 17659\r", + "SourceStructureID": 299, + "TargetID": 223, + "TargetStructureID": 223, + "ID": 779 + }, { + "TargetSizes": [48426.7433090414, 506800.470705722, 197795.733557926, 92457.3147050307, 21053.4513018711, 46564.8591139168], + "SourceID": 410, + "Type": "Gap Junction", + "SourceSizes": [40201.2606670532, 506800.219079308, 197795.71473937, 25213.6773722743, 21053.4434689604, 46564.8848077924], + "LinkedStructures": " 14347 -> 14346\r 17661 -> 17660\r 17665 -> 9225\r 18373 -> 17818\r 18378 -> 18377\r 18543 -> 18542\r", + "SourceStructureID": 410, + "TargetID": 223, + "TargetStructureID": 223, + "ID": 792 + }, { + "TargetSizes": [21385.7201776529, 46696.3391731195, 34330.6867499462, 34811.0494588163], + "SourceID": 284, + "Type": "Gap Junction", + "SourceSizes": [21385.7258684296, 46696.3433984048, 17845.0476349797, 31968.7669197468], + "LinkedStructures": " 17519 -> 17518\r 17520 -> 14350\r 17521 -> 17419\r 131778 -> 131779\r", + "SourceStructureID": 284, + "TargetID": 223, + "TargetStructureID": 223, + "ID": 778 + }, { + "TargetSizes": [102804.745571566, 53885.3353329905, 241808.298311656, 52113.5622390643, 49766.6113637178], + "SourceID": 286, + "Type": "Gap Junction", + "SourceSizes": [84133.4605517574, 53885.3630258788, 241808.306921479, 27978.1444015911, 49766.6023176137], + "LinkedStructures": " 29486 -> 29483\r 58621 -> 58620\r 95220 -> 26281\r 95376 -> 95369\r 95380 -> 95381\r", + "SourceStructureID": 286, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 850 + }, { + "TargetSizes": [91316.5396448786], + "SourceID": 309, + "Type": "Gap Junction", + "SourceSizes": [91316.536002277], + "LinkedStructures": " 17467 -> 13484\r", + "SourceStructureID": 309, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 853 + }, { + "TargetSizes": [58035.3673775968], + "SourceID": 324, + "Type": "Gap Junction", + "SourceSizes": [58035.3687401047], + "LinkedStructures": " 29482 -> 93910\r", + "SourceStructureID": 324, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 857 + }, { + "TargetSizes": [111098.009027458], + "SourceID": 2610, + "Type": "Gap Junction", + "SourceSizes": [111097.974797885], + "LinkedStructures": " 17673 -> 17674\r", + "SourceStructureID": 2610, + "TargetID": 223, + "TargetStructureID": 223, + "ID": 794 + }, { + "TargetSizes": [53394.0123299946, 36449.9981726498, 42489.8980697741], + "SourceID": 324, + "Type": "Gap Junction", + "SourceSizes": [53394.3894053365, 36449.9870514561, 42489.9040974349], + "LinkedStructures": " 94219 -> 94218\r 96133 -> 96134\r 96137 -> 96136\r", + "SourceStructureID": 324, + "TargetID": 223, + "TargetStructureID": 223, + "ID": 787 + }, { + "TargetSizes": [101037.155281357, 127030.538626532, 33135.5919843235, 32428.808886887, 125548.829837634, 58135.6623254742, 51612.4157077199, 36517.8726774617, 145588.257144997, 16217.4536420433], + "SourceID": 321, + "Type": "Gap Junction", + "SourceSizes": [101037.294459029, 73485.9811481792, 33135.5726649258, 32428.8033198595, 125548.831063086, 58135.6534635232, 51612.4337057643, 36517.976022135, 145588.025054431, 16217.4465762744], + "LinkedStructures": " 23038 -> 17434\r 55211 -> 29481\r 115553 -> 115552\r 115568 -> 115569\r 115572 -> 17433\r 122181 -> 122180\r 122187 -> 122184\r 122201 -> 122202\r 122213 -> 17430\r 122215 -> 122214\r", + "SourceStructureID": 321, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 854 + }, { + "TargetSizes": [28571.182224771], + "SourceID": 30102, + "Type": "Gap Junction", + "SourceSizes": [24393.8453463491], + "LinkedStructures": " 30107 -> 30106\r", + "SourceStructureID": 30102, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 872 + }, { + "TargetSizes": [46932.6020570212], + "SourceID": 307, + "Type": "Gap Junction", + "SourceSizes": [46932.6034370312], + "LinkedStructures": " 96375 -> 96374\r", + "SourceStructureID": 307, + "TargetID": 223, + "TargetStructureID": 223, + "ID": 782 + }, { + "TargetSizes": [254414.758444589, 29058.9834974194, 27734.8741667085, 41264.5754621723], + "SourceID": 7157, + "Type": "Gap Junction", + "SourceSizes": [78197.6346337507, 29058.9819189716, 25751.0074932212, 41289.3424581906], + "LinkedStructures": " 29580 -> 26271\r 29586 -> 29585\r 29610 -> 29611\r 131781 -> 131780\r", + "SourceStructureID": 7157, + "TargetID": 284, + "TargetStructureID": 284, + "ID": 871 + }, { + "TargetSizes": [71844.6659179404, 91058.9677753185, 44052.5291620448, 27017.2343524332], + "SourceID": 6153, + "Type": "Gap Junction", + "SourceSizes": [71844.5621025662, 91058.7023309178, 44052.7170467478, 27017.2343524331], + "LinkedStructures": " 17489 -> 17488\r 17837 -> 16621\r 29593 -> 29592\r 29599 -> 29598\r", + "SourceStructureID": 6153, + "TargetID": 223, + "TargetStructureID": 223, + "ID": 795 + }], + "edge_attributes": [{ + "DataType": "index", + "Type": "int", + "Unique": "true", + "DisplayName": "id", + "Name": "ID" + }, { + "DataType": "source-index", + "Type": "int", + "Unique": "false", + "DisplayName": "source id", + "Name": "SourceID" + }, { + "DataType": "target-index", + "Type": "int", + "Unique": "true", + "DisplayName": "target id", + "Name": "TargetID" + }, { + "DataType": "target-index", + "Type": "int", + "Unique": "true", + "DisplayName": "target id", + "Name": "TargetID" + }, { + "DataType": "categorical", + "Type": "string", + "Unique": "false", + "DisplayName": "edge type", + "Name": "type" + }, { + "DataType": "string", + "Type": "string", + "Unique": "false", + "DisplayName": "structures", + "Name": "LinkedStructures" + }], + "node_attributes": [{ + "DisplayName": "id", + "Name": "ID", + "DataType": "index", + "DatabaseName": "id", + "Unique": "true", + "Type": "int" + }, { + "DisplayName": "label", + "Name": "Label", + "DataType": "categorical", + "DatabaseName": "label", + "Unique": "false", + "Type": "string" + }, { + "DisplayName": "structure uri", + "Name": "Structure", + "DataType": "id", + "DatabaseName": "structure", + "Unique": "true", + "Type": "string" + }, { + "DisplayName": "id", + "Name": "StructureID", + "DataType": "id", + "DatabaseName": "id", + "Unique": "true", + "Type": "int" + }, { + "DisplayName": "area", + "Name": "HullArea", + "DataType": "quantitative", + "DatabaseName": "hull", + "Unique": "false", + "Type": "float" + }] + }, + "data": { + "name": "/assets/mock/2018.01.23-network-all-hops.json", + "nodes": [{ + "StructureID": 115, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 138, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 142, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 146, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 153, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, { + "StructureID": 161, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 162, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 165, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 166, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 168, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 170, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 171, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 172, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 173, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 174, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 175, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, { + "StructureID": 176, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 177, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 178, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 179, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 180, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 181, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 184, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 222, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 223, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 250, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 260, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 268, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 269, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 273, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 276, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 277, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 278, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 280, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 284, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 285, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 286, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 288, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 289, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 293, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 294, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 298, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 299, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 304, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 307, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 308, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 309, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 310, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 311, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 314, + "TypeID": 1, + "Label": "GC diving", + "Tags": "" + }, { + "StructureID": 318, + "TypeID": 1, + "Label": "YAC ON", + "Tags": "" + }, { + "StructureID": 321, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 324, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 325, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 327, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 328, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 330, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 332, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 334, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 335, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 341, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 342, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 344, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 345, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 350, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 352, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 353, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 354, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 359, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 360, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 364, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 365, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 366, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 369, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 372, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 373, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 375, + "TypeID": 1, + "Label": "YAC ON/OFF", + "Tags": "" + }, { + "StructureID": 380, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 382, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 389, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 390, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 391, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 397, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 398, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 399, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 400, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 405, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 407, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 408, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 410, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 412, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 415, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 418, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 419, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 421, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 422, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 424, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 425, + "TypeID": 1, + "Label": "CBa2-3", + "Tags": "" + }, { + "StructureID": 426, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 428, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 431, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 432, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 433, + "TypeID": 1, + "Label": "CBab2-3w", + "Tags": "" + }, { + "StructureID": 434, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 437, + "TypeID": 1, + "Label": "CBab2-4", + "Tags": "" + }, { + "StructureID": 440, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 441, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 443, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 445, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 446, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 447, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 450, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 452, + "TypeID": 1, + "Label": "CBab2-4w", + "Tags": "" + }, { + "StructureID": 453, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 455, + "TypeID": 1, + "Label": "CBab2-3", + "Tags": "" + }, { + "StructureID": 456, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 458, + "TypeID": 1, + "Label": "CBab2-5", + "Tags": "" + }, { + "StructureID": 460, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 461, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 463, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 464, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 468, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 469, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 471, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 473, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, { + "StructureID": 475, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 476, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 478, + "TypeID": 1, + "Label": "CBabw", + "Tags": "" + }, { + "StructureID": 479, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 483, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 485, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 488, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 492, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 514, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 516, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 517, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 518, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 519, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 525, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 545, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 572, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 573, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 579, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 582, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 591, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 592, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 593, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 595, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 596, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 597, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, { + "StructureID": 598, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 605, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 606, + "TypeID": 1, + "Label": "GC ON", + "Tags": "" + }, { + "StructureID": 608, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 611, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 906, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 907, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 909, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 911, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 968, + "TypeID": 1, + "Label": "CBab2-4", + "Tags": "" + }, { + "StructureID": 989, + "TypeID": 1, + "Label": "CBabw", + "Tags": "" + }, { + "StructureID": 992, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 999, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 1021, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 1610, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 1620, + "TypeID": 1, + "Label": "YAC ON/OFF", + "Tags": "" + }, { + "StructureID": 1637, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 1724, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 2063, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 2064, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 2065, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 2610, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 3116, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 3257, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 3679, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 3756, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 3865, + "TypeID": 1, + "Label": "GAC/YAC", + "Tags": "" + }, { + "StructureID": 3881, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 3928, + "TypeID": 1, + "Label": "CBab2-4", + "Tags": "" + }, { + "StructureID": 4567, + "TypeID": 1, + "Label": "CBa1w", + "Tags": "" + }, { + "StructureID": 4568, + "TypeID": 1, + "Label": "CBab2-4", + "Tags": "" + }, { + "StructureID": 4569, + "TypeID": 1, + "Label": "CBb3n ", + "Tags": "" + }, { + "StructureID": 4570, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 4835, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 4849, + "TypeID": 1, + "Label": "CBa1-2", + "Tags": "" + }, { + "StructureID": 4850, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, { + "StructureID": 4876, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 4877, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 4890, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, { + "StructureID": 4941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 4942, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 4943, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 5006, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, { + "StructureID": 5017, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 5057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 5107, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 5117, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, { + "StructureID": 5118, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 5150, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 5278, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 5279, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5280, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5281, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5282, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5283, + "TypeID": 1, + "Label": "CBbwf", + "Tags": "" + }, { + "StructureID": 5284, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5285, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 5292, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 5294, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5295, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, { + "StructureID": 5297, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 5303, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, { + "StructureID": 5315, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5325, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 5331, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 5338, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5345, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 5350, + "TypeID": 1, + "Label": "YAC ON", + "Tags": "" + }, { + "StructureID": 5351, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5352, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 5372, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5374, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5377, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, { + "StructureID": 5382, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5388, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5390, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5394, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 5396, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5402, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 5405, + "TypeID": 1, + "Label": "YAC ON/OFF", + "Tags": "" + }, { + "StructureID": 5410, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5411, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5413, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5421, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5422, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, { + "StructureID": 5423, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5427, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5435, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5436, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5437, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5439, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5441, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5442, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5450, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5451, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5452, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5453, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5454, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5456, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 5457, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, { + "StructureID": 5458, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5464, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 5468, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 5470, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5473, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 5480, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5481, + "TypeID": 1, + "Label": "YAC ON", + "Tags": "" + }, { + "StructureID": 5482, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 5485, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5486, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5487, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5489, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5491, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5496, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5497, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5498, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 5499, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 5500, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5501, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 5502, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5503, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5504, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5506, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5507, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5509, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 5511, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5513, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 5514, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5515, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 5516, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 5517, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5519, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, { + "StructureID": 5520, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5522, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 5528, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5530, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 5531, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 5532, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 5534, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 5535, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5536, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 5537, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 5538, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5539, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 5541, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 5542, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5543, + "TypeID": 1, + "Label": "CBab2-5", + "Tags": "" + }, { + "StructureID": 5544, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, { + "StructureID": 5545, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 5551, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 5556, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 5557, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 5561, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5562, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 5563, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 5565, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5566, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 5568, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 5575, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5579, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 5582, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 5584, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 5585, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5587, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 5592, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5595, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 5596, + "TypeID": 1, + "Label": "CBa1-2", + "Tags": "" + }, { + "StructureID": 5598, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5599, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 5600, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 5601, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 5602, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5604, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 5606, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 5607, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5608, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 5609, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 5611, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 5614, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 5618, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5622, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 5623, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 5630, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 5631, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5634, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 5635, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 5636, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5637, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 5638, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 5639, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5640, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 5641, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 5643, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 5645, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 5648, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 5649, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 5650, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 5671, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 5711, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 5729, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 5737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 5775, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 5794, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 5838, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 5860, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 5909, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 5916, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 5919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 5922, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 5923, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 6011, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 6046, + "TypeID": 1, + "Label": "CBa2-3", + "Tags": "" + }, { + "StructureID": 6047, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6048, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 6050, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 6115, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 6117, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 6118, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6120, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6121, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 6122, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 6123, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 6125, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 6127, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6128, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, { + "StructureID": 6129, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 6131, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 6132, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 6133, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 6134, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 6135, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 6136, + "TypeID": 1, + "Label": "CBab2-3", + "Tags": "" + }, { + "StructureID": 6138, + "TypeID": 1, + "Label": "CBa1-2", + "Tags": "" + }, { + "StructureID": 6140, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 6141, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6142, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 6146, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6150, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 6153, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 6155, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6156, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 6158, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6160, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 6162, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 6163, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 6164, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 6165, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 6166, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 6169, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 6203, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6204, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 6300, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 6406, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 6561, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 6589, + "TypeID": 1, + "Label": "CBbwf", + "Tags": "" + }, { + "StructureID": 6617, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 6618, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 6656, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 6850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 6857, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 6909, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6910, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 6911, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 6912, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 6957, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 6958, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 6961, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 6964, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 6965, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 6997, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 7024, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 7040, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 7043, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 7050, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7054, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 7073, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7075, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 7111, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7112, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7113, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7114, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7122, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7129, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7134, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7139, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7144, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 7145, + "TypeID": 1, + "Label": "GAC Aii -doubtful", + "Tags": "" + }, { + "StructureID": 7147, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7149, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 7157, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7167, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7174, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 7188, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7203, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 7204, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 7215, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7225, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7231, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 7274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 7279, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 7344, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 7345, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7346, + "TypeID": 1, + "Label": "CBa2w", + "Tags": "" + }, { + "StructureID": 7361, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 7362, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 7446, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 7461, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7464, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7468, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7561, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 7564, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7565, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7568, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 7577, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7587, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 7594, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 7688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 7691, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7693, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7703, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 7858, + "TypeID": 1, + "Label": "GAC ON/OFF", + "Tags": "" + }, { + "StructureID": 7859, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 7860, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7861, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 7897, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 7904, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 7951, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 8027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 8032, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 8033, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 8035, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 8037, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 8038, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 8040, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 8045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 8059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 8080, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 8212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 8218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 8485, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 8504, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 8551, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 8575, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 8576, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, { + "StructureID": 8577, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, { + "StructureID": 8578, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 8579, + "TypeID": 1, + "Label": "YAC Starburst ", + "Tags": "" + }, { + "StructureID": 8580, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 8586, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 8588, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 8589, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 8720, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 8749, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 8754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 8990, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 9023, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 9124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 9129, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 9183, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 9226, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 9228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 9260, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 9347, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 9376, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 9492, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 9504, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 9604, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 9606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 9614, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 9643, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 9693, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 9769, + "TypeID": 1, + "Label": "YAC IAC", + "Tags": "" + }, { + "StructureID": 9787, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 9810, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 10142, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10146, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10335, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 10371, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 10412, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10559, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 10565, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 10574, + "TypeID": 1, + "Label": "YAC IAC", + "Tags": "" + }, { + "StructureID": 10590, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10596, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 10625, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10632, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10720, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 10815, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10826, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10840, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10872, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10897, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10931, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10943, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10945, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 10950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 10953, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10954, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, { + "StructureID": 10956, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10957, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10959, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10960, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10961, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10962, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10963, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 10964, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10966, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, { + "StructureID": 10969, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 10970, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, { + "StructureID": 11011, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, { + "StructureID": 11015, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, { + "StructureID": 11017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 11020, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11021, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11022, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11023, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, { + "StructureID": 11024, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, { + "StructureID": 11030, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11031, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11033, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11037, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11038, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11042, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11043, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11044, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11049, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11063, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11066, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 11071, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 11072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 11073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 11074, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 11085, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11089, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11092, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 11172, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11222, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 11229, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 11234, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11235, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11238, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 11244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 11246, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11248, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11250, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11321, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11401, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 11408, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 11485, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 11531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 11645, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 11650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 11651, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 11657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 11683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 11696, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 11803, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 12072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 12099, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 12113, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 12192, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 12203, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 12208, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 12210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 12298, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 12408, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 12461, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 12492, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 12563, + "TypeID": 1, + "Label": "HC", + "Tags": "" + }, { + "StructureID": 12564, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 12687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 12696, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 12804, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 12897, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 13000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 13015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 13056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 13130, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 13134, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 13150, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 13154, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 13159, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 13180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 13215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 13313, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 13444, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, { + "StructureID": 13448, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 13469, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 13485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 13492, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 13499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 13521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 13525, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 13624, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 13855, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 13858, + "TypeID": 1, + "Label": "GC OFF", + "Tags": "" + }, { + "StructureID": 14034, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 14291, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 14293, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 14607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 14615, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 14725, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 14894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 15100, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 15130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 15377, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 15394, + "TypeID": 1, + "Label": "GC ON", + "Tags": "" + }, { + "StructureID": 15412, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 15475, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 15614, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 15653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 15779, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 15796, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 15942, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 15969, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 15976, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 15977, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 15979, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 16002, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 16026, + "TypeID": 1, + "Label": "CBb6", + "Tags": "" + }, { + "StructureID": 16073, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 16087, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 16446, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 16940, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 17183, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 17228, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 17527, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 17533, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 18150, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 18282, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 18471, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 18472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 18576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 18693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 19203, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 19351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 19362, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 19383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 19571, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 19572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 20136, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 20299, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 20311, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 20327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 20413, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 20537, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 20608, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 20614, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 20681, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 20728, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 21094, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 21155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 21159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 21163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 21299, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 21314, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 21384, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 21386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 21778, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 21779, + "TypeID": 1, + "Label": "GC ON/OFF", + "Tags": "" + }, { + "StructureID": 21817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 21824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 21855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 21874, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 22210, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 22225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 22349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22358, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22368, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 22374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22554, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 22590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22634, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 22760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 22974, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 22994, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 23323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 23512, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 23566, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 23836, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 23870, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 24148, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 24174, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 24241, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 24303, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 24366, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 24381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 24401, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 24898, + "TypeID": 1, + "Label": "GC OFF", + "Tags": "" + }, { + "StructureID": 24909, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 24947, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 25155, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 25182, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25293, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25327, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25342, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 25352, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25355, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 25359, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25364, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 25367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25382, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 25385, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25392, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25402, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 25405, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 25410, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25429, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25529, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25551, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25561, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25575, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25669, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 25688, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 25858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25861, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 25879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 26079, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 26304, + "TypeID": 1, + "Label": "CBa2", + "Tags": "" + }, { + "StructureID": 26497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 26971, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 27288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 27304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 28382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 28886, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 28913, + "TypeID": 1, + "Label": "GC Delta L1", + "Tags": "" + }, { + "StructureID": 28950, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 29198, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 29277, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 29340, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 29702, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, { + "StructureID": 29783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 29791, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 29805, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 29827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 30015, + "TypeID": 1, + "Label": "YAC WF ON/OFF", + "Tags": "" + }, { + "StructureID": 30102, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 30130, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 30177, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 30332, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 30370, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, { + "StructureID": 30379, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, { + "StructureID": 30477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 30495, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 30499, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, { + "StructureID": 30513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 30518, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 30526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 30567, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31024, + "TypeID": 1, + "Label": "GC ON", + "Tags": "" + }, { + "StructureID": 31157, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 31161, + "TypeID": 1, + "Label": "YAC Starburst", + "Tags": "" + }, { + "StructureID": 31256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31305, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31356, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31389, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 31471, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 31483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 31486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31603, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31605, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31665, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31679, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31694, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 31700, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 31702, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31710, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 31804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31874, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 31915, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31944, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 31960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 31969, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 31994, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32046, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32141, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32144, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, { + "StructureID": 32147, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 32160, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32172, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 32187, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32227, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32258, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 32273, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32312, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, { + "StructureID": 32354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32359, + "TypeID": 1, + "Label": "CBab2-3", + "Tags": "" + }, { + "StructureID": 32371, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 32379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32383, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32405, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32409, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32422, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32445, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32451, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32547, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32581, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32608, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32643, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32654, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 32660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32666, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32668, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32681, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 32719, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 32726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32734, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32739, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32773, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32787, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32795, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32802, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32848, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 32853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32862, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32871, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32874, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32892, + "TypeID": 1, + "Label": "AC OFF", + "Tags": "" + }, { + "StructureID": 32900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32911, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32916, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32926, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32938, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32945, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32959, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 32970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 32987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 32994, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33003, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 33039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 33072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 33088, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 33117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 33127, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 33148, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33161, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 33198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 33200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 33217, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 33272, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 33333, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 33588, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 33615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 33625, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 33675, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33714, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33873, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 33881, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34028, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34034, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 34036, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34055, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34138, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34148, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34159, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34164, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 34165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34253, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34300, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34306, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34311, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 34315, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34336, + "TypeID": 1, + "Label": "GC ON/OFF", + "Tags": "" + }, { + "StructureID": 34337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34452, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 34494, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34509, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 34527, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34601, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34621, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34756, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 34761, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 34847, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34868, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 34882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34893, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34899, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34914, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 34919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34940, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 34978, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 34982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35046, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 35064, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35068, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35076, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35084, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35138, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35142, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35145, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 35149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35176, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35188, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35193, + "TypeID": 1, + "Label": "YAC ON", + "Tags": "" + }, { + "StructureID": 35208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35212, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35240, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 35283, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35305, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 35308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35335, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35348, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35392, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 35395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35400, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35418, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35428, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35510, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35513, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35526, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35534, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35550, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 35555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35576, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 35597, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 35653, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35681, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 35696, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 35751, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35775, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 35811, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35887, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35894, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 35966, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 35969, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 35972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 35975, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 36130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 36151, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 36153, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 36158, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 36162, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 36170, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 36222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 36228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 36234, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 36276, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36293, + "TypeID": 1, + "Label": "YAC A1", + "Tags": "" + }, { + "StructureID": 36299, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36419, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 36421, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 36481, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36501, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36508, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36512, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 36650, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36661, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36664, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 36683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 36688, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 36700, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 36714, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36724, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 36746, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 37012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 37021, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 37042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 37127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 37135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 37183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 37192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 37286, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 37288, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 37295, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 37309, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 37440, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 37461, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 37466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38200, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38231, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38236, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38245, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 38302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38345, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38357, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38404, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38483, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38502, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 38600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38605, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38632, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38698, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 38703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38727, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 38735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38799, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 38810, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 38848, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 38906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 38911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 38949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39168, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39192, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39196, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39201, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39208, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39216, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 39226, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39244, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39252, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39285, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39319, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 39324, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39331, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39342, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39345, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 39516, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39520, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39523, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39528, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39530, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39560, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39575, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39581, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39590, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39596, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39602, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39610, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39615, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39688, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39696, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 39706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39717, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39724, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39737, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39745, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39748, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39752, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39759, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39764, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39774, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39787, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39790, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39794, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 39798, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39802, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39807, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39811, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39816, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39824, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39830, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39835, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39838, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 39841, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39862, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 39867, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39915, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 39917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39922, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 39931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39939, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 39957, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 39963, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39968, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39982, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 39998, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40018, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40033, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40041, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40044, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40051, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40053, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40059, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40439, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40444, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40455, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 40469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40480, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 40482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40495, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 40498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40602, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40604, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 40606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40631, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40640, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40844, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40851, + "TypeID": 1, + "Label": "YAC Ai ", + "Tags": "" + }, { + "StructureID": 40856, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40863, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 40880, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40884, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40896, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40901, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40911, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40917, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 40919, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40927, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40934, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40947, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40951, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40956, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 40965, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 40988, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 40991, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 41003, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 41009, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 41031, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 41039, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 41042, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 41058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 41126, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 41159, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 41474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 41583, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 41587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 41608, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 41636, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 41778, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 41882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 41891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 41905, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 41999, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 42001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 42094, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 42159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 42387, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 42404, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 42406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 42416, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 42423, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 42432, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 42450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 42523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 42527, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 42576, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 42586, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 42615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 42711, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 42715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 42770, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, { + "StructureID": 42776, + "TypeID": 1, + "Label": "AC OFF", + "Tags": "" + }, { + "StructureID": 42795, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 42819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 42846, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 42866, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42871, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 42873, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42877, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42890, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 42927, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42948, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 42951, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42953, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 42966, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42968, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42971, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42977, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42980, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 42985, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 43114, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 43127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 43130, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 43132, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 43134, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 43142, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 43198, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 43201, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 43203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 43205, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 43207, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 43259, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 43261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 43297, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43314, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43327, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 43334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 43404, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 43445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 43601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43631, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 43700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43716, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 43747, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 43770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 43874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 44095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 44117, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 44205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 44212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 44222, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 44229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 44237, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 44241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 44256, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 44329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 44338, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 44346, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 44893, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 44895, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 44901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 44912, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 44965, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 44970, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 45007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 45220, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 45326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 45336, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 45358, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 45406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 45536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 45551, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 45555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 45568, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 45571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 45574, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 45617, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 45629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 45672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 45677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 45680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 45731, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 45847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 45894, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 46050, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46052, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46054, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46057, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 46059, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46062, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 46070, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46074, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46090, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46093, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46098, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 46105, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 46107, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46116, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46118, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46121, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46186, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 46261, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 46347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46351, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46359, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46373, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 46379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46384, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 46386, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46388, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 46389, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46391, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46443, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46449, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46461, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 46468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46498, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46502, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46504, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46508, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 46512, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 46514, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46517, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46527, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 46530, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46589, + "TypeID": 1, + "Label": "AC ON", + "Tags": "" + }, { + "StructureID": 46670, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46682, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46693, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 46741, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 46797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46801, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 46804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46817, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46933, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 46943, + "TypeID": 1, + "Label": "CBa1", + "Tags": "" + }, { + "StructureID": 46955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46979, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46982, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 46984, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 46998, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 47002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 47004, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 47007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 47010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 47013, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 47095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 47104, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 47109, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 47195, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 47204, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, { + "StructureID": 47445, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 47593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 47833, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 47908, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 48416, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 48455, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 48516, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 48573, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 48612, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 49184, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 49185, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 49186, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 49487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 49489, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 49554, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 49600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 50240, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 50449, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 50894, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 50982, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 51100, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 51617, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 51667, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 51700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 51711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 51715, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 51808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 51812, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 51923, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 52147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 52152, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 52247, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 52257, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 52262, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 52410, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 52921, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 52929, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 52932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 52955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 52960, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 52991, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53000, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 53127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53166, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53169, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53173, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53178, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53182, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 53186, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53195, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53202, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 53218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 53221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 53224, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53229, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53235, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53241, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53250, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53252, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53257, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53259, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53263, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53330, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 53344, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 53395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 53399, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 53403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53416, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53436, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 53439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 53441, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53443, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 53768, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 53778, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 53828, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 53872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 53987, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 53991, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 54006, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 54074, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54078, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 54245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54252, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54264, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54356, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54428, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54469, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54482, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 54492, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54622, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54681, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54695, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 54698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54744, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 54776, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54778, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54813, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 54818, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 54850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54859, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54862, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 54874, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 54877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54881, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54895, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54904, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54908, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54913, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 54925, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 54958, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54967, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 54969, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 55034, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 55098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 55108, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 55132, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55154, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 55166, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 55176, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55185, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55191, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 55197, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55201, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55208, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55212, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55218, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 55221, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55223, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 55232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 55279, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55308, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55311, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55317, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55319, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55330, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55347, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, { + "StructureID": 55359, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 55366, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55517, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55610, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 55686, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 55697, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55830, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 55837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 55933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 56078, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 56081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 56084, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 56086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 56093, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 56108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 56148, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 56191, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 56211, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 56328, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 56486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 56583, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 56598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 56600, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 56631, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 56643, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 56653, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 56704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 56710, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, { + "StructureID": 56712, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 56714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 56802, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 56822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 56841, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 56955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 56973, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 56975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57027, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 57034, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 57035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57063, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 57064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57133, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57148, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57169, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 57178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57226, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57353, + "TypeID": 1, + "Label": "CBb3", + "Tags": "" + }, { + "StructureID": 57360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 57487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 58441, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 58592, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58642, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 58682, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 58687, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58709, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58714, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58723, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58741, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 58745, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58773, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 58775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 58777, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58782, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58784, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58825, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 58827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 58829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59008, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 59012, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 59096, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59121, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 59125, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59130, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59139, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 59145, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 59147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59163, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 59208, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 59211, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 59219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59223, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 59225, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 59229, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59247, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59251, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59262, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 59271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59278, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59289, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 59294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59333, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 59340, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59362, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 59371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59377, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 59389, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 59392, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 59419, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 59422, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 59429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59432, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59439, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59455, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59471, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59474, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 59477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59491, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59499, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 59507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59510, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59518, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59524, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 59531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59535, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59629, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59638, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 59696, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59726, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59751, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 59756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59796, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59801, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59811, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59813, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59825, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59841, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59862, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 59890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59910, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59916, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 59919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59929, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59932, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 59966, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 59974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60074, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60083, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60088, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60100, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60104, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60191, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60193, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60200, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60221, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60225, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60236, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60306, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60319, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60344, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60346, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60348, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60350, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60354, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60358, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60363, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60386, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60432, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60434, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60440, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60463, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 60466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60487, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 60491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60494, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60523, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 60535, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60547, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60558, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 60572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60645, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60657, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 60798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60863, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 60873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60967, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 60976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 60989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61214, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 61227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61231, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 61270, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 61313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61439, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 61450, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 61462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61500, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61530, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 61583, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61598, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61627, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61630, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 61632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61638, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 61642, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61656, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 61666, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 61672, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61703, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 61705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61709, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 61716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61719, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 61740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61752, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61758, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 61763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61765, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61773, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61775, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 61777, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61779, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61793, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 61797, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61809, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61811, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61813, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61817, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61823, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 61827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61836, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 61840, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 61842, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61845, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61847, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61849, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61853, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61862, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61864, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 61868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61878, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 61880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61886, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61897, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61898, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 61904, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61908, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61914, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61926, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61930, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61940, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61942, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61951, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61954, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61960, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61972, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 61982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 61989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 62012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62019, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 62026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62035, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 62038, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 62043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62049, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62052, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62120, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 62150, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62169, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62325, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 62337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62344, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 62420, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 62423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62433, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 62436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62456, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62458, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62464, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62478, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 62483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62492, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62500, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 62511, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 62515, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 62531, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 62540, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 62574, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62578, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 62599, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 62617, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62627, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 62632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62655, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 62659, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 62704, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 62707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 62710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62764, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 62777, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 62786, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 62807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62842, + "TypeID": 1, + "Label": "GC direction selective-like", + "Tags": "" + }, { + "StructureID": 62896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62956, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 62964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 62992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63016, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63060, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 63199, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 63209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 63274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63371, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 63423, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 63440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 63445, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 63451, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 63460, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 63465, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 63469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63473, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 63485, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 63487, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 63513, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 63516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63521, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 63542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63573, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 63592, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 63594, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 63612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 63628, + "TypeID": 1, + "Label": "AC ON/OFF", + "Tags": "" + }, { + "StructureID": 63799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 63806, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 63956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 63978, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 63991, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 64196, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 64268, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64362, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64371, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 64387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64409, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64414, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 64417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64492, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 64520, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64547, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 64549, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64626, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64654, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64670, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64673, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 64690, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 64698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64777, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 64787, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 64795, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 64841, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 64887, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 64920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 64923, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 64939, + "TypeID": 1, + "Label": "CBb4", + "Tags": "" + }, { + "StructureID": 65002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65047, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65134, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 65138, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65156, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65172, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 65181, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65218, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 65245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65247, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65250, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65267, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 65271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65276, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 65278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65284, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 65287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65309, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65320, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65338, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65351, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65358, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65376, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65398, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65404, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65408, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65411, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65464, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65484, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65514, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65519, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 65522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65532, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65555, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65569, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65579, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65591, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65594, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65612, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65616, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65623, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65648, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65742, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 65751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65768, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65816, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 65819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65826, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65835, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 65849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65866, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65883, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65890, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65893, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65899, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65910, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 65920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65963, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 65971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66024, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66031, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66044, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66053, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66075, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 66079, + "TypeID": 1, + "Label": "YAC ", + "Tags": "" + }, { + "StructureID": 66085, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66089, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66096, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66100, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66104, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66114, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66138, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 66165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66184, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 66193, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66199, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 66214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66303, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66323, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66425, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66464, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66473, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66487, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66493, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66503, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66510, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66513, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66516, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 66520, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66535, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 66539, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 66542, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66634, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 66640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66647, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66660, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66665, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66682, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66685, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66699, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66702, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66710, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66713, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66723, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66731, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66756, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 66760, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66768, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66779, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66785, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 66788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66795, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66801, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66809, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66828, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66840, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66852, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66871, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66888, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 66896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66905, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 66910, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66927, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66930, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 66933, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 66937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66942, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 66946, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66952, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66955, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66958, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 66962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66983, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 66988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 66992, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67007, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67016, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67019, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67042, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67051, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67080, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67101, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67109, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67119, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67121, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67123, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67128, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67131, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67137, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67150, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67152, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67157, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67159, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67161, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67182, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67187, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67190, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67201, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67206, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67219, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67227, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67234, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67246, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67252, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67254, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67258, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67266, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67269, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67284, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67298, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67301, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67305, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67328, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67350, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67352, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67354, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67361, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67364, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67404, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67410, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67423, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67425, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67433, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67438, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67452, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67455, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67458, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67469, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67491, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67494, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67500, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67502, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67504, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67506, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67508, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67520, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67529, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67546, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67551, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67557, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67575, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67585, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 67586, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67591, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67595, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67626, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67663, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 67666, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67671, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67683, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67686, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67705, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67711, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67736, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67752, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67762, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67765, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67768, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67784, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67786, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67789, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67806, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67809, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67815, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 67818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67823, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67833, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67839, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67854, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67871, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67883, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 67886, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 67890, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 67892, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67915, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67918, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67920, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67932, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67947, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67952, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67959, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67970, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 67973, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 67978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67981, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 67983, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67992, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67996, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 67999, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68003, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68009, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 68014, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68020, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68023, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68031, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68042, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68056, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68068, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68087, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68093, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68101, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68135, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68144, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68148, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68150, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68153, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 68161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68188, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68202, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68210, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68214, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68238, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68249, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68263, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68266, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68273, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68277, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68286, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68289, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68292, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68296, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68300, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68302, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68306, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68335, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68350, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 68353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68359, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68366, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68380, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68391, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68393, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68399, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68433, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68435, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68453, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68461, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68492, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68497, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68501, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68504, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68511, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68527, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68537, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68539, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 68543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68550, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68555, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68566, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68585, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68594, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68618, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68623, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 68632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68667, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68669, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68678, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68679, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 68686, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68728, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68734, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68748, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68761, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 68766, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 68771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68781, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 68785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68793, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 68799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68888, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 68891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68914, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68929, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68944, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68948, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68955, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 68974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 68978, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 68988, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 69003, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69019, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69030, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69049, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69162, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 69181, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69235, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69325, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69332, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69355, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69382, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69385, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69428, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 69431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69434, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69436, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69443, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69446, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69450, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69454, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 69456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69461, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69464, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69467, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69469, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69478, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69480, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69503, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69508, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69532, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69534, + "TypeID": 1, + "Label": "YAC OFF", + "Tags": "" + }, { + "StructureID": 69537, + "TypeID": 1, + "Label": "GC OFF", + "Tags": "" + }, { + "StructureID": 69543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69666, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69695, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69697, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69708, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69710, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69720, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69721, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69728, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69733, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69742, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69783, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69895, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69899, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69902, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69910, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69917, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69930, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69934, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69955, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69966, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69967, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 69972, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69979, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69986, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 69998, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70003, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70046, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70065, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70079, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70084, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70095, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 70111, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70114, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 70116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70120, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70134, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70139, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70171, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70176, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70182, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70205, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 70219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70221, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70302, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70308, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70323, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70335, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70340, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70346, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70352, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70357, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70372, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70398, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70403, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 70415, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70418, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70422, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70427, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70432, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70436, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70449, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70462, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 70466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70469, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70471, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70481, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70487, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70500, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 70501, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 70514, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70529, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70533, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70535, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70540, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70552, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70562, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70566, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70570, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70581, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70593, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70599, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70601, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70605, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70612, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70615, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70621, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70628, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70632, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70646, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70651, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70653, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70655, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70674, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70682, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70684, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70697, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70699, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70712, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70732, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70743, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70745, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70768, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70770, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70774, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70778, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70780, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70789, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70820, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70833, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70840, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70845, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70878, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 70901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70906, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 70909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 70924, + "TypeID": 1, + "Label": "GC ON/OFF", + "Tags": "" + }, { + "StructureID": 70987, + "TypeID": 1, + "Label": "GC fragment ", + "Tags": "" + }, { + "StructureID": 71041, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71063, + "TypeID": 1, + "Label": "YAC WF", + "Tags": "" + }, { + "StructureID": 71073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71091, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71108, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71135, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 71145, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71153, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71155, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71202, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71213, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71219, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71227, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71241, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 71242, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71281, + "TypeID": 1, + "Label": "TH1", + "Tags": "" + }, { + "StructureID": 71284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71351, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 71357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71362, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71369, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71377, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71411, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71435, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71491, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71497, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71513, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71517, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71535, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71538, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71541, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71545, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71574, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71583, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71594, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71597, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 71600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71610, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71618, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71625, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71626, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71632, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71634, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71640, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71671, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71686, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71730, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 71738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71825, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 71830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71877, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71882, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 71891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71906, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 71908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71927, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 71935, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 71953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71985, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 71997, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 71998, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72003, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72031, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72036, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 72043, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72074, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72076, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72082, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72087, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72109, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72124, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72142, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72154, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72162, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72168, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72173, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 72176, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72188, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72210, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72226, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72252, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 72259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72271, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72281, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72306, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72326, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72335, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72342, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72344, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72350, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72358, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72363, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72384, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72385, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72402, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 72408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72427, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72458, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72492, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72518, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 72523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72529, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72592, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72594, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72612, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 72614, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72640, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72647, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72694, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72724, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72742, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72765, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72778, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72787, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72799, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72821, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72834, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72841, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72873, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72934, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72939, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72941, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, { + "StructureID": 72949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72964, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72965, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72973, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72975, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 72989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72992, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 72994, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 73004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73006, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73025, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73030, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73086, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73099, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73133, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73146, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73163, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73250, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73270, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73276, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73342, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73348, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73416, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73443, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73453, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73467, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73488, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73494, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73509, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73514, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73573, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73580, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73583, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73594, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73605, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73611, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73613, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73617, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 73619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73620, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73621, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73635, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73639, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73646, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73649, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73658, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73662, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73676, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73687, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73702, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73704, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73710, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73713, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73722, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 73732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73739, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73742, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73759, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73764, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 73810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73825, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73833, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73838, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73906, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 73909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73926, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73979, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 73994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74023, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74047, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 74049, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74081, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74082, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74088, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74104, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74135, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74141, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 74165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74203, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74211, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74213, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74216, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74225, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74231, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74233, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74237, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74238, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74241, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74276, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74279, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74412, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74416, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74471, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74480, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74493, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74499, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74508, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74511, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74536, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74558, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74567, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74573, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74584, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74593, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74614, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74618, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74624, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74625, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74635, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74639, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 74645, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74670, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74694, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74699, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74701, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74706, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74724, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74726, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74815, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74825, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74828, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74854, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74859, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74863, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74866, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74886, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74890, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74899, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74902, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74904, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74907, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 74909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74939, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74943, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 74957, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74969, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 74994, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75001, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75012, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75015, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75017, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75021, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75028, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75052, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75062, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75065, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75082, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75085, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75099, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75104, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75120, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75130, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 75133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75150, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75158, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75168, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75173, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75179, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75196, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75199, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75214, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75268, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75272, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 75273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75300, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75307, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75320, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75326, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75350, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75359, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75387, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75390, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75395, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 75400, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75404, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75440, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75442, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75467, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75485, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75515, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75517, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 75519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75525, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75530, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75578, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75583, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75603, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75625, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 75630, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75648, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75695, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75700, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75713, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 75721, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75739, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75742, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75752, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75760, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75782, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75792, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75825, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75830, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75833, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75841, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75893, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75902, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75911, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75917, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 75939, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 75988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76024, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76056, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76060, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76066, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76071, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76086, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76088, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76091, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76103, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76120, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76127, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 76137, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, { + "StructureID": 76141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76211, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76245, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76251, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76277, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76291, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76294, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76298, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76300, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76319, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76336, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76378, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76394, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76409, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76432, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76473, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76489, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 76492, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76495, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76505, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 76510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76517, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76520, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76530, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76574, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76582, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76591, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76677, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76724, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76742, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76749, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76752, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76766, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76778, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76786, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76808, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76811, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76837, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76859, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76862, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76867, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76886, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 76895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76956, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76958, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76973, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 76977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76980, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76983, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 76996, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77023, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77068, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 77077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77109, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77116, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77120, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77130, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77132, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77134, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77179, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77199, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77270, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77276, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77332, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77342, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77370, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77378, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77393, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77456, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77488, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77504, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77507, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77513, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77529, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77536, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77555, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77578, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77603, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77619, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77623, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77625, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77637, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77642, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77656, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77658, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77664, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77669, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77674, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77682, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77695, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77708, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77712, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77714, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77718, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77747, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77765, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77790, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77816, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77836, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77840, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77914, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77918, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77981, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 77988, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 77992, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78021, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78028, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78038, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78067, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78074, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78080, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78083, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78088, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78098, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 78102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78109, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78126, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78134, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78146, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78179, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78191, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78196, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78224, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78244, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78249, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 78252, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78261, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78283, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78295, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78298, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78303, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78316, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78327, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78330, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78336, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78355, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78378, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78400, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78409, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78415, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78423, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78428, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78444, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78467, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78471, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78478, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78506, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 78507, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78514, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78520, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78529, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78532, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78552, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78578, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78594, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78617, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78647, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78681, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78686, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78699, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78701, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78709, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78710, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 78715, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78725, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78749, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78787, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78797, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78825, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78839, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78899, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78909, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78910, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78926, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78932, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78964, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 78966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 78997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79004, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79008, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79022, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79061, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79064, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79068, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, { + "StructureID": 79069, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, { + "StructureID": 79071, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, { + "StructureID": 79072, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, { + "StructureID": 79073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79074, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, { + "StructureID": 79091, + "TypeID": 1, + "Label": "MG", + "Tags": "" + }, { + "StructureID": 79106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79159, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79171, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79196, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79209, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79245, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79259, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79309, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79319, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79370, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 79373, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 79382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79427, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79431, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79433, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 79450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79457, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79461, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79464, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79470, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79493, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 79498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79502, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79509, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79545, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79551, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79553, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79558, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79584, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79601, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79631, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79645, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79686, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79725, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79726, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79747, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79799, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79802, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79813, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79863, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79869, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79914, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79955, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 79958, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79984, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 79993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80016, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80034, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80049, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80060, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80065, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80067, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80071, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80074, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80083, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80088, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80090, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80094, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80101, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80153, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80154, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80167, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80174, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80185, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80190, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80197, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80209, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80213, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80245, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80248, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80263, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80276, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80293, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80294, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80338, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80348, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80378, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80399, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, { + "StructureID": 80400, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80417, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80425, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80434, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80467, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80509, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80532, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80534, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 80548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80562, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80582, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80591, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80592, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80596, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80604, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80607, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80609, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80646, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80657, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80665, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80755, + "TypeID": 1, + "Label": "CBb5", + "Tags": "" + }, { + "StructureID": 80764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80799, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80816, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80833, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80836, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80839, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80859, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80896, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 80897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80935, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80974, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 80980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80983, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80990, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 80997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81003, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81008, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81017, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81038, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81048, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81051, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81066, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81081, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81085, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81091, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81095, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81120, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81136, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81142, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81146, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81153, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 81160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81169, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81187, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81193, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81196, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81200, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81211, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81234, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81250, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81300, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81304, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 81308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81348, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81393, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81402, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81429, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 81430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81433, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81489, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81494, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81528, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81532, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81533, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81566, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81569, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81584, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81605, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81612, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81615, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81622, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81629, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81637, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81649, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81661, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81667, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81685, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81690, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81704, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81708, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81731, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81743, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81753, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, { + "StructureID": 81758, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, { + "StructureID": 81763, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81768, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81825, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81834, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81839, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81862, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81887, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 81894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81925, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 81996, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82006, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82025, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82050, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82060, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82061, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82143, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82172, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82181, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82188, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82216, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 82217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82229, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 82241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82252, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82281, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82289, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82305, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82353, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 82362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82430, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, { + "StructureID": 82432, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82442, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82569, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82643, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82644, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82653, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82677, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 82678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82692, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82717, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82723, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82789, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82803, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82806, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82813, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 82817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82887, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82897, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82977, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 82978, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 82999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83049, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83056, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83060, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83133, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83157, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83163, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83179, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 83186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83214, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83222, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83226, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83234, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83238, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83241, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83248, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 83253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83255, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83266, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83293, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83302, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83329, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 83331, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 83352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83360, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83375, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83386, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 83389, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83409, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83412, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83415, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83449, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83461, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 83470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83514, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 83535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83591, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83603, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83625, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83644, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83668, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83679, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83697, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83708, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83714, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83721, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83725, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83733, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83747, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83764, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83767, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83776, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83788, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83803, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83823, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83828, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83842, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83860, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83890, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83892, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83898, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83907, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83911, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83916, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83921, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83925, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83954, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83975, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83978, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83981, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83992, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 83995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83996, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 83999, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84008, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84018, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84024, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84029, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84038, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84041, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84052, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84058, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84061, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84063, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84077, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84082, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84083, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84088, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84106, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84108, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84136, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84142, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84148, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84162, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84181, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84184, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84188, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84193, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84203, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84238, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84254, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84260, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84280, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84283, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84290, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84298, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84316, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 84335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84369, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84394, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84418, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84427, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84457, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84508, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84514, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84519, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84520, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84572, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 84579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84621, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84639, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84696, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84745, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84759, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84773, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84780, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84790, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84802, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84825, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 84828, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84830, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84886, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84909, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84914, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84926, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, { + "StructureID": 84937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84942, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84965, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84983, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 84988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 84995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85004, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85009, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85015, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85062, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, { + "StructureID": 85068, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85082, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85088, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, { + "StructureID": 85094, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 85096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85100, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85104, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85116, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85119, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 85121, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85128, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85141, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, { + "StructureID": 85144, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85149, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85172, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85184, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85185, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85196, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85197, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85216, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85231, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85250, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85259, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85279, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85284, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85298, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85311, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85338, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85348, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85369, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85377, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85400, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85404, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85426, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85442, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85445, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85450, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85455, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85473, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, { + "StructureID": 85483, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85508, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85510, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85534, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85546, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 85549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85604, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85620, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85629, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 85634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85666, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85671, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85680, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85683, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85730, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 85735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85740, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 85748, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85755, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85771, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85792, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 85831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85852, + "TypeID": 1, + "Label": "SAC", + "Tags": "" + }, { + "StructureID": 85856, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 85861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85924, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85932, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85946, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 85955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85958, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85979, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85982, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 85991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 85997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86001, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86036, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86047, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86050, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86060, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86114, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86128, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86134, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86145, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86162, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86171, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86192, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86201, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86209, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86224, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86231, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86244, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86260, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86268, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86276, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 86282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86315, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86327, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86345, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86353, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86356, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86369, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86418, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86420, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86438, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86444, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86464, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86473, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86485, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86496, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86512, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86582, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86607, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86609, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86614, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86634, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86662, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86667, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86672, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86685, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86744, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86767, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86783, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86799, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 86806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86812, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86854, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86862, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86871, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86888, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86891, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86898, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86904, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86915, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86927, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86934, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86940, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86945, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86951, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86971, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 86985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 86997, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87002, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87005, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87052, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87067, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87076, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87098, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, { + "StructureID": 87103, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87130, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87137, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87145, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87149, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87158, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87176, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87189, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87208, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87231, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87238, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87249, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87268, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87277, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87312, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87340, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87342, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87345, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87366, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87373, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87379, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 87385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87390, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87413, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87419, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87432, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87437, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87447, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 87449, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87457, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87487, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87496, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 87503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87562, + "TypeID": 1, + "Label": "AI-like", + "Tags": "" + }, { + "StructureID": 87569, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 87589, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 87590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87612, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87626, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 87635, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 87647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87654, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87667, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 87678, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 87721, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87808, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 87815, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 87929, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 87934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87972, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 87979, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 87999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88003, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88036, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88055, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88082, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88132, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88139, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88154, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 88159, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 88173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88226, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88230, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88247, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 88252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88260, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88266, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88270, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88290, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88300, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88313, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88344, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88365, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88370, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88375, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88413, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88485, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 88493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88513, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88594, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88608, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88614, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88642, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88666, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88669, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88682, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88684, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 88689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88690, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88692, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88695, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88711, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88715, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88717, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88723, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88726, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88759, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88762, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88790, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88817, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88833, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88841, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 88864, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 88905, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 88912, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88923, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88929, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88945, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88984, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 88986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 88996, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89008, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89016, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89024, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89058, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89066, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89085, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89086, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89113, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89119, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89120, + "TypeID": 1, + "Label": "CBb3n", + "Tags": "" + }, { + "StructureID": 89122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89124, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89133, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89136, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89157, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89181, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89193, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89231, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89248, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89279, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 89285, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 89292, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 89305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89312, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 89317, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89328, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89336, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89355, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 89359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89378, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89400, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89411, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89413, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89420, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 89427, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89447, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89478, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89501, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89503, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89516, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 89522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89524, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 89533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89536, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 89538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89567, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89599, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89617, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89631, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89644, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89652, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89654, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89677, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89694, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89720, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89760, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89780, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89788, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 89791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89822, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 89827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89833, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89868, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89887, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89902, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89907, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89910, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89915, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89921, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89928, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 89935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89984, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 89988, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 89993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90004, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90013, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90047, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90049, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90061, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90066, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90077, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90079, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90111, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90113, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 90118, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90134, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90138, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90140, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90151, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90177, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90217, + "TypeID": 1, + "Label": "GC?", + "Tags": "" + }, { + "StructureID": 90234, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90278, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90284, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90363, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90366, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90396, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 90409, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90420, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90440, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90471, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90475, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90483, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90526, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90558, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90568, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90585, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90587, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90591, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90597, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90602, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90604, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90615, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90618, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90631, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90642, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90645, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90715, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 90739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90744, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90769, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90772, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90789, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90800, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90806, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90835, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90839, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90859, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90877, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90891, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 90905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90917, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 90919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90937, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90943, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90956, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90961, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90969, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90973, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90975, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90979, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 90984, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 90991, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91036, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91060, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91080, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91085, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91103, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91114, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91132, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91138, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91145, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91150, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91156, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 91167, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91176, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91178, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91188, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91191, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91207, + "TypeID": 1, + "Label": "GAC Aii?", + "Tags": "" + }, { + "StructureID": 91213, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91232, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 91240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91280, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 91376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91446, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91537, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91544, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91578, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91585, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 91588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91597, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91653, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91692, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91694, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91727, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91730, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 91737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91742, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 91743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91746, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91754, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91768, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91805, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91832, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91867, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 91870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91913, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 91918, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91959, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 91964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91979, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 91983, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 91994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92031, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92100, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92149, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92169, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92186, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 92193, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92226, + "TypeID": 1, + "Label": "GAC Aii?", + "Tags": "" + }, { + "StructureID": 92233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92250, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92295, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 92313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92353, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92372, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92380, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92400, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92427, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92434, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 92445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92542, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92631, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92789, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92899, + "TypeID": 1, + "Label": "AC extension 91150", + "Tags": "" + }, { + "StructureID": 92908, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 92926, + "TypeID": 1, + "Label": "AC 92899 extension", + "Tags": "" + }, { + "StructureID": 92935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92942, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 92954, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 92970, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 93053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93065, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93074, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93076, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93099, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 93112, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93139, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93172, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93248, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 93277, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93281, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93315, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93325, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93336, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93355, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93386, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93392, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93407, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93413, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93416, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93420, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93431, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93456, + "TypeID": 1, + "Label": "Aii", + "Tags": "" + }, { + "StructureID": 93463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93489, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 93494, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93514, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 93523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93544, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93555, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93557, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93574, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93634, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93685, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93779, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93881, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 93915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93923, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93927, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93935, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93945, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93957, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93975, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93979, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 93991, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 93993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94003, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94005, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94007, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94018, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 94021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94031, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94038, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94048, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94082, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94136, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94153, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94220, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94231, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94234, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94251, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94252, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94279, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94281, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94297, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94320, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94326, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94344, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94365, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94391, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94409, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94414, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94417, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94462, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94500, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94507, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94525, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94536, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94583, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94649, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94652, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94660, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94664, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94692, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94705, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94741, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94784, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94794, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94796, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94803, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94824, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94838, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94867, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94878, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94918, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94926, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94939, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94956, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94962, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 94981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94983, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 94999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95062, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95066, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95072, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 95097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95134, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95238, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95250, + "TypeID": 1, + "Label": "GAC Aii?", + "Tags": "" + }, { + "StructureID": 95256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95260, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95307, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95319, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95323, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95343, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 95349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95411, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95416, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95556, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95562, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95578, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95603, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95605, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95640, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95662, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95670, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95673, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95676, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95688, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95690, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95696, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95699, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95700, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95701, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 95703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95708, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95717, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95759, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95863, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95877, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95895, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95910, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95911, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95922, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95927, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95945, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95959, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95983, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 95997, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 95999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96011, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96036, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96083, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96143, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96152, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96202, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96212, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96234, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96238, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96249, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96268, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96270, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96293, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96308, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96310, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96311, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96315, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96319, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96325, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96341, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96357, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96407, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96413, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96435, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96442, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96494, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96506, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96519, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96522, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96555, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96562, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96589, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96617, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96619, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96621, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96629, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96649, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96657, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96668, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96679, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96688, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96699, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96705, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96708, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96711, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96736, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96738, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96768, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96779, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96786, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96788, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96794, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96801, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96805, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96807, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96812, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 96822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96848, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96852, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96914, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96921, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96927, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96930, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96943, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96955, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96958, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96976, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96984, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96986, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 96995, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 96997, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97003, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97005, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97011, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97015, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97020, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97024, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97025, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97041, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97046, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97048, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97054, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97061, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97065, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97068, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97086, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97087, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97105, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97113, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97139, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97146, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97148, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97155, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97171, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97188, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97193, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97194, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97198, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97212, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97221, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97227, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97232, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97234, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97261, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97265, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97275, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97294, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97295, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97352, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 97355, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97358, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97363, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97417, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97420, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97439, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97464, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97475, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97485, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97492, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97494, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97500, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97509, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97514, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97532, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97546, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97548, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97558, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97568, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97575, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97578, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97597, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97605, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97627, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97671, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97676, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97684, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97722, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97730, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97743, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97764, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97774, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97780, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97786, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97790, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97792, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97794, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97797, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97803, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97814, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97828, + "TypeID": 1, + "Label": "BCx", + "Tags": "" + }, { + "StructureID": 97853, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97925, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97927, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97938, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 97951, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 97959, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98016, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98030, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98041, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98074, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98100, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98151, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98171, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98186, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98188, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98190, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98193, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98216, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98235, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98238, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98251, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98258, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98262, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 98270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98279, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98289, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98314, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98321, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98345, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98348, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98365, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98372, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98375, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98409, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98411, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98413, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98418, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98434, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98438, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98456, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98471, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98484, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98530, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98534, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98535, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98537, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98550, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98574, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98585, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98589, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98599, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98611, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98618, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98627, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98655, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98663, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98694, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98725, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98749, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98751, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98754, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98758, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98759, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98762, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 98766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98786, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98800, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98823, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98833, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98843, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98849, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98864, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98878, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98891, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98914, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98917, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98924, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98927, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98929, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98958, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98960, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98962, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 98983, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 98999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99004, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99012, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99016, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99025, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99040, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99047, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99048, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99054, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99062, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99065, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99076, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 99077, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99080, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99088, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99094, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99096, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99100, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99106, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 99112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99125, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99132, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99136, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99142, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99225, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99237, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99240, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99249, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99255, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99261, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99268, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99314, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99316, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99319, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99325, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99338, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99356, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 99361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99370, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 99375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99435, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99443, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99453, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99461, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99468, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99482, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99501, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99504, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99513, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 99515, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99546, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99575, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99584, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99586, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99589, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99600, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99614, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99617, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99621, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99628, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99632, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99639, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 99642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99644, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99719, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99722, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99741, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99742, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99753, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99769, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99771, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99773, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99783, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99789, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99792, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99799, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99801, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99824, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99831, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99835, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99841, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99844, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99847, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99850, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99862, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99870, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99891, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99922, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99930, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99938, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99948, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99958, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99960, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99984, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 99987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 99995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100006, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100014, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100018, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100029, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100038, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100041, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100047, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100055, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100062, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100076, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100084, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100110, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100113, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100128, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100146, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100152, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100153, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100173, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100176, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100187, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100189, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 100195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100205, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100207, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100209, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100210, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100217, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100231, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100250, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100254, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100261, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100264, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100266, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100275, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100278, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100279, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100282, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, { + "StructureID": 100289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100296, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100302, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100308, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100310, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100332, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100338, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100355, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100357, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100366, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100396, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100400, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100413, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100414, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100419, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100426, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100441, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100445, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100450, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100455, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100460, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100467, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100503, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100512, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100524, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100536, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100541, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100546, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100557, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100562, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100574, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100578, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100591, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100593, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100596, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100605, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100614, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100634, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100644, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100651, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100654, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, { + "StructureID": 100664, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100667, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100669, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100679, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100685, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100692, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100709, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100713, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100717, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100729, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100733, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100737, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100741, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100744, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100752, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100765, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100771, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100787, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100788, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100803, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100808, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100816, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100820, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100826, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100828, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100834, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100835, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100837, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100874, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100877, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100878, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100882, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100888, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100895, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100901, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100911, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100918, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100934, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100942, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100953, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100972, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100981, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 100987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 100994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101000, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101004, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101015, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101031, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101041, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101050, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101085, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101090, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101124, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101129, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101138, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101142, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101145, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101161, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101187, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101190, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101194, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101201, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101206, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101213, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101228, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101230, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101234, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101238, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101243, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101249, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101257, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101261, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101277, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101294, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101360, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101368, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101369, + "TypeID": 1, + "Label": "GCX", + "Tags": "" + }, { + "StructureID": 101375, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101378, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101384, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101392, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101394, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101401, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101428, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101437, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101439, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101455, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101464, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101470, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101489, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101509, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101536, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101544, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101552, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101553, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 101558, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101567, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101570, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101574, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101578, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101581, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101583, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101592, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101594, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101596, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101598, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101602, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101606, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101613, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101615, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101617, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101623, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101625, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101644, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 101647, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101651, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101657, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101661, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101662, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101668, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101681, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101686, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101692, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101697, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101711, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101742, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101744, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101751, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101765, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101789, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101790, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101802, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101808, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101815, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101826, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101830, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101833, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101837, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101849, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101850, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101888, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101896, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101935, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101938, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101951, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101952, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101958, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101961, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101978, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101982, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 101989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 101993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102011, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102034, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102036, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102039, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102055, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102065, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102085, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102101, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102110, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102113, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102129, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102135, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102136, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102149, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102150, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102153, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102162, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102168, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102171, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102179, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102191, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102196, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102202, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102206, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102216, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102222, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102224, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102226, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102230, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102235, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102250, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102254, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102276, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102286, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102290, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102295, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102298, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102307, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102310, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102314, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102323, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102343, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102354, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102358, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102391, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102405, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102414, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102416, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102417, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102423, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102425, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102429, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102437, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102440, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102451, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102459, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 102461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102467, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102504, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102509, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102524, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102527, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102529, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102545, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102555, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102565, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102586, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102596, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102599, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102600, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102603, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102607, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102631, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102635, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102639, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102650, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102655, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102658, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102671, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102683, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102687, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102704, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102709, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102710, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102724, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102726, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102730, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102736, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102741, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102744, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102759, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102764, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102785, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102787, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102795, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102813, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102820, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102825, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102828, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102845, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102859, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102863, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102867, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102869, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102912, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102932, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102946, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102985, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 102990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102993, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 102999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103001, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103008, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103011, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103047, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103054, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103058, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103060, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103064, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103070, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103076, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103084, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103090, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103105, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103108, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103128, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103132, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103136, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103158, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103179, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103182, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103185, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103240, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103244, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103254, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103265, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103274, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103281, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103287, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103291, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103307, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103313, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103316, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103319, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103326, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103334, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103352, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103358, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103362, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103392, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103411, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103417, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103427, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103437, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103444, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103462, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103508, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103514, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103517, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103532, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103534, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103541, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103543, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103557, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103592, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103595, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103601, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103603, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103613, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103648, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103675, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103690, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103699, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103725, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103728, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103734, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103738, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103743, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103754, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103820, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103823, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103830, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103834, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103841, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103869, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103880, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103907, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103951, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103958, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103969, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 103975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 103999, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104009, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104013, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104038, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104043, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104049, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104056, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104062, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104063, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104082, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104084, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104109, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104120, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104130, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104140, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104143, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104155, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104157, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104160, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104168, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104170, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104208, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104211, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104216, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104244, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104250, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104266, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104273, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104276, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104285, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104289, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104299, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104340, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104346, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104352, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104368, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104410, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104411, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104430, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104434, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104435, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104452, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104462, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104468, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104473, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104480, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104484, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104489, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104505, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104509, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104526, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104538, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104541, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104556, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104565, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104571, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104572, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104580, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104587, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104591, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104593, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104616, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104619, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104633, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104636, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104651, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104655, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104662, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104669, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104690, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104717, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104719, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104721, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104724, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104733, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104735, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104739, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104744, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104751, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104754, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104774, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104788, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104794, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104808, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104823, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104834, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104842, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104850, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104914, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104933, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104979, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104981, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104985, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104990, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 104995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 104998, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105007, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105016, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105022, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105023, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105030, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105036, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105040, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105044, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105048, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105058, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105062, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105067, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105078, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105081, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105090, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105095, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105100, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105119, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105128, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105131, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105140, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105146, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105148, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105153, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105161, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105167, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105171, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105177, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105188, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105210, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105212, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 105219, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105226, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105234, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105239, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105241, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105250, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105265, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105279, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105280, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105294, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105297, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105300, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105320, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105324, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105341, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105346, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105349, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105359, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105376, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105418, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105426, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105429, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105434, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105443, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105447, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105450, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105464, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 105467, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105471, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105509, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105511, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105526, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105547, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105553, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105558, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105580, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105585, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105588, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105609, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105612, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105624, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105633, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105635, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105640, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105643, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105666, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105670, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105679, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105694, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105729, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105739, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105745, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105773, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105780, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 105788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105838, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105862, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105871, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105873, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105875, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105878, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105881, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105884, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105906, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105907, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105927, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105928, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105942, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105968, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105971, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105972, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105982, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105990, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 105992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 105996, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106000, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106007, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106023, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106041, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106048, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106056, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106059, + "TypeID": 1, + "Label": "GAC?", + "Tags": "" + }, { + "StructureID": 106060, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106067, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106070, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106075, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106080, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106083, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106087, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106090, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106098, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106105, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106107, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106112, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106119, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106131, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106134, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106143, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106153, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106158, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106161, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106165, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106168, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106170, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106175, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106177, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106179, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106213, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106224, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106240, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106247, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106249, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 106253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106256, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106258, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106273, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106277, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106285, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106291, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106296, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106298, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106303, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106308, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106313, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106315, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106326, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106329, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106333, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106336, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106345, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106370, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106375, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106378, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106384, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106387, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106413, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106418, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106424, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106427, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106435, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106438, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106446, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106454, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106456, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106458, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106466, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106468, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106480, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106490, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106493, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106495, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106528, + "TypeID": 1, + "Label": "CBax", + "Tags": "" + }, { + "StructureID": 106531, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106532, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106541, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106562, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106571, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106574, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106580, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106586, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106597, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106604, + "TypeID": 1, + "Label": " AC", + "Tags": "" + }, { + "StructureID": 106612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106616, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106617, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106619, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106637, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106651, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106659, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106661, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106665, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106675, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 106689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106711, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106712, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106715, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106717, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106720, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106742, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106744, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106752, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106761, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106778, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106792, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106801, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106809, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106813, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106835, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106836, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106839, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106848, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106859, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106863, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106877, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106886, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106887, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106890, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106903, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106924, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 106931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 106941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107051, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107054, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107059, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107061, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107063, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107071, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107074, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107078, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107085, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 107092, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107102, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107121, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107126, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107132, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107134, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107156, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107176, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107179, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107196, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107213, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107222, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107246, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107248, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107253, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107262, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107265, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107267, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107275, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107280, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107306, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107328, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107330, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107344, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107360, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107363, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107367, + "TypeID": 1, + "Label": "BC", + "Tags": "" + }, { + "StructureID": 107370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107377, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107378, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107383, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107408, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107418, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107420, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107429, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107431, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107433, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107438, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107442, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107445, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107455, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107460, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107490, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107494, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107502, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107504, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107508, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107512, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107525, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107530, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107543, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107551, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107567, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107583, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107587, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107597, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107612, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107619, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107622, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107661, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107665, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107686, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107687, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107699, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107706, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107712, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107719, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107725, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107736, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107747, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107753, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107755, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107758, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107762, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107789, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107792, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107794, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107796, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107802, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107815, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107820, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107833, + "TypeID": 1, + "Label": " AC", + "Tags": "" + }, { + "StructureID": 107836, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107838, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107840, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107843, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107845, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107853, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107855, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107875, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107882, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107887, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107900, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107908, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107910, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107915, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107918, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107930, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107933, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107937, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107939, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107950, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107957, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107961, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107966, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107968, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107973, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107974, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107979, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107981, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107982, + "TypeID": 1, + "Label": "AC ", + "Tags": "" + }, { + "StructureID": 107988, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 107989, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 107999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108010, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108011, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108031, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108032, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108038, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108040, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108041, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108048, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108061, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108066, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108072, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108076, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108079, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108083, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108089, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108094, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108100, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108108, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108109, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108111, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108114, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108119, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108143, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108151, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108154, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108170, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108178, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108194, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108196, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108209, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108215, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108225, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108229, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108254, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108273, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108284, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108298, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108300, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108306, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108309, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108317, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108325, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108327, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108336, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108357, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108374, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108398, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108408, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108415, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108418, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108426, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108429, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108434, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108442, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108448, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108464, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108469, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108485, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108498, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108522, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108529, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108533, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108539, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108569, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108616, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108701, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108715, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108724, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108727, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108730, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108745, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108749, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108766, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108768, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108770, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108771, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108787, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108800, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108814, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108818, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108822, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108825, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108826, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108835, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108839, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108845, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108849, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108861, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108865, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108871, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108899, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108937, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108944, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108963, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108988, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 108993, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108996, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 108999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109004, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109016, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109021, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109029, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109030, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109053, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109065, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109068, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109079, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109084, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109097, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109116, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109119, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109135, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109147, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 109149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109163, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109166, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109190, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109210, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109214, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109216, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109220, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109223, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109225, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109226, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109237, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109245, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109251, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109252, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109257, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109271, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109274, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109277, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109291, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109293, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109305, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109308, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109316, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109318, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109341, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109347, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109350, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109419, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109420, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109424, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109445, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109450, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109456, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109468, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109483, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109488, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109491, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109504, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109528, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109530, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109540, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109554, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109559, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109565, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109574, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109575, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109597, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109608, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109678, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109681, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109696, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109706, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109710, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109716, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109730, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109742, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109750, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109762, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109778, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109781, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109793, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109797, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109799, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109802, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109804, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109809, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109814, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109816, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109825, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109831, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109834, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109839, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109851, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109858, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109865, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109872, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109879, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109887, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109893, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109895, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109922, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109924, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109932, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109936, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109943, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109952, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 109956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109980, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109986, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 109991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 109997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110013, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110019, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110022, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110024, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110035, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110040, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110050, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110054, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110062, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110066, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110072, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110081, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110087, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110095, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110104, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110107, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110112, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110115, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110121, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110124, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110127, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110129, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110134, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110137, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110140, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110142, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110151, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110155, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110159, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110169, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110175, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110181, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110247, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110248, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110259, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110265, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110271, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110277, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110281, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110289, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110295, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110301, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110312, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110313, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110316, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110327, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110352, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110354, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110356, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110378, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110385, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110392, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110403, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110406, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110416, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110418, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110422, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110429, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110441, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110444, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110451, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110457, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110459, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110463, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110475, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110479, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110484, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110488, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110490, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110493, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110496, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110499, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110501, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110506, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110512, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110535, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110562, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110566, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110567, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110570, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110580, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110583, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110586, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110595, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110600, + "TypeID": 1, + "Label": "Ac", + "Tags": "" + }, { + "StructureID": 110607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110610, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110614, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110617, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110622, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110623, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110630, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110646, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110648, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110649, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110652, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110666, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110668, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110676, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110686, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110694, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110697, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110720, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110722, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110728, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110736, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110743, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110747, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110755, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110769, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110783, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110793, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110796, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110798, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110800, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110805, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110807, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110809, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110816, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110819, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110824, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110828, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110830, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110835, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110842, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110857, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110867, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110869, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110879, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110880, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110899, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110903, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110905, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110908, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110940, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110944, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110959, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110964, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110970, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110977, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 110979, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 110999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111001, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111006, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111029, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111035, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111037, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111043, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111049, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111054, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111057, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111059, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111070, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111078, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111080, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111084, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111092, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111098, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111100, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111110, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111111, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111117, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111139, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111142, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111146, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111149, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111160, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111164, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111165, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111171, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111174, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111178, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111180, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111183, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 111187, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111207, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111212, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111216, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111218, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111231, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111235, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111238, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111248, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111251, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111260, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111264, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111269, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111276, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111278, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111286, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111288, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111296, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111298, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111299, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111303, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111306, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111311, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111312, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111324, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111328, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111330, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111335, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111339, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111344, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111356, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111369, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111371, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111377, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111379, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111382, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111386, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111399, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111414, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111421, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111424, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111428, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111452, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111455, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111462, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111468, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111470, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111474, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111479, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111485, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111493, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111496, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111497, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111501, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111521, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111528, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111531, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111533, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111539, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111546, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111551, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111564, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111568, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111572, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111580, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111584, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111587, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111590, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111595, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111598, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111602, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111604, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111611, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111615, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111616, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111620, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111623, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111629, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111630, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111662, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111672, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111684, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111687, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111708, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111717, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111734, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111735, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111740, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111746, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111751, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111753, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111755, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111767, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111788, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111791, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111799, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111803, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111806, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111808, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111812, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111813, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111814, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111821, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111827, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111829, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111835, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111838, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111842, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111848, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111852, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111856, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111866, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111869, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111872, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111883, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111887, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 111890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111894, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111899, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111908, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111912, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111914, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111920, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111926, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111929, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111931, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111937, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111939, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111953, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111957, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111963, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111968, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 111974, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111976, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111980, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111986, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 111997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112005, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112010, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112017, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112020, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112024, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112028, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112032, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112036, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112042, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112045, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112049, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112057, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112062, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112069, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112071, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112077, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112081, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112084, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112087, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112089, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112094, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112096, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112102, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112105, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112108, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112111, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112115, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112120, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112122, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112126, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112128, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112130, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112142, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112144, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112151, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112155, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112157, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112160, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112166, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112168, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112170, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112172, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112176, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112180, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112182, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112184, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112186, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112188, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112197, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112199, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112203, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112205, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112207, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112209, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112211, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112217, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112221, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112230, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112232, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112241, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112244, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112253, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112255, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112267, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112271, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112273, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112275, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112284, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112286, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112290, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112292, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112297, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112310, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112313, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112319, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112322, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112328, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112333, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112340, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112342, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112351, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112358, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112360, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112362, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112370, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112374, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112384, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112386, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112392, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112395, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112402, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112404, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112409, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112411, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112415, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112419, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112425, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112427, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112436, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112447, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112455, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112458, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112468, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112480, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112481, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112496, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112500, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112505, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112507, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112518, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112523, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112525, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112545, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112549, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112560, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112577, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112584, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112593, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112594, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112607, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112625, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112628, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112632, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112634, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112638, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112648, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112656, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112661, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112666, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112677, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112684, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112689, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112692, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112694, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112700, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112703, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112712, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112727, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112729, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112737, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112748, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 112753, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112756, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112761, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112764, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112766, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112777, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112784, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112824, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112835, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112841, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112843, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112859, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112880, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112887, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112898, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112903, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112912, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112925, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112937, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112938, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112942, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112964, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112966, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112969, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112978, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112984, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112986, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112989, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 112991, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 112995, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113068, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113086, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113088, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113091, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113095, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113099, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113103, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113120, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113122, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113129, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113131, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113135, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113140, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113147, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113149, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113153, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113156, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113159, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113164, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113167, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113170, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113173, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113176, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113179, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113186, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113242, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113332, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113342, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113541, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 113547, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 113689, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113693, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 113810, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 113841, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113939, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 113965, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114221, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114230, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114242, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114540, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114547, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114556, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114558, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114560, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114564, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 114568, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 114573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114576, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 114618, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114692, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114695, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114698, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 114702, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114705, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114709, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114721, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114724, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114726, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 114729, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 114732, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114741, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114745, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 114747, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 114748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114757, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 114760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114925, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 114931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 114996, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115013, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 115118, + "TypeID": 1, + "Label": "GAC AII", + "Tags": "" + }, { + "StructureID": 115133, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115195, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115206, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115424, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 115430, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115432, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115487, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115504, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 115510, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115525, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115529, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115537, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115574, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115577, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115581, + "TypeID": 1, + "Label": "BC", + "Tags": "" + }, { + "StructureID": 115602, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115605, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115613, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115626, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115641, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115647, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115658, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115691, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115701, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115810, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115853, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115855, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115860, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115870, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115875, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115878, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115880, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115888, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115890, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115895, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 115897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115900, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115919, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115921, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115922, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115923, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115928, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115935, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115940, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115942, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115944, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115946, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115949, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115953, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115969, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115974, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115977, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115983, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 115984, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115990, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 115992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116142, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 116279, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116368, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116373, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116378, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116381, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116387, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 116400, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 116403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 116451, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116475, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 116504, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 116581, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116729, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116769, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116775, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116778, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116785, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 116788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 116791, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 116835, + "TypeID": 1, + "Label": "Aii extension", + "Tags": "" + }, { + "StructureID": 116919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 116925, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 117065, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117091, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117093, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117112, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 117127, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 117132, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 117200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117202, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117204, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117214, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117218, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117233, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117242, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117248, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117263, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117269, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117272, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117285, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117287, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117390, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117394, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117399, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117404, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117406, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117408, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117411, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117421, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117429, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117433, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117440, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117450, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117461, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117470, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117476, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117637, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117639, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117643, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117645, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117659, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117662, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117668, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117670, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117672, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117678, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117679, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117683, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117689, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117774, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 117778, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 117780, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117803, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117805, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117811, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117813, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117820, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117835, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117851, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117854, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117858, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117860, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117863, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117868, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117873, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117876, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117883, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117887, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117892, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117904, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 117919, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 117990, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 117999, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 118014, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118058, + "TypeID": 1, + "Label": "CBb4w", + "Tags": "" + }, { + "StructureID": 118087, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 118258, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 118301, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 118315, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 118372, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118380, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118388, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118391, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118395, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 118398, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118405, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118410, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118414, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118446, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118449, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118453, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118588, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118590, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118654, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 118682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118949, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 118997, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 119000, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 119008, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 119017, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 119020, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 119028, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 119154, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 119241, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 119270, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 119388, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 119517, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 119547, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 119943, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 119945, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 119971, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120194, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120197, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120253, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120270, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120285, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120291, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120299, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120303, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120309, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120311, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120318, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120323, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120329, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120334, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120337, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120347, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120355, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120359, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120361, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120370, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120372, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120379, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120389, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120393, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120396, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120398, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120400, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120403, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120409, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120416, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120420, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120423, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120425, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120439, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120445, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120452, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120456, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120458, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120464, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120466, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120470, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120474, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120476, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120478, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120480, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120482, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120484, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120489, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120494, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120497, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120499, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120507, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120509, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120513, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120518, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120521, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120523, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120534, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120538, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120542, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120544, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120546, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120548, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120552, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120554, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120556, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120559, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120561, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120565, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120630, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120632, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120634, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120639, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120674, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120777, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120779, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120783, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120885, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120888, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120890, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120892, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120894, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120896, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120898, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120903, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120906, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120909, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120911, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120913, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120915, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120917, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120920, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120923, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120925, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120945, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120948, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120956, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120960, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120963, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 120987, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120997, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 120999, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121001, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121006, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121009, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121048, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121051, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121064, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121066, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121073, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121075, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 121082, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121101, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121103, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121106, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121111, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121113, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121117, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121121, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121123, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121135, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121141, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121155, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 121177, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 121258, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121265, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121282, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121286, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121288, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121292, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121294, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121303, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121305, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121307, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121309, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121313, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121315, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121321, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121323, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121325, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121331, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121336, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121339, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121345, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121348, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121353, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121356, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121362, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121365, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121367, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121369, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121372, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121375, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121380, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121382, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121387, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121394, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121397, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121404, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121407, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121411, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121413, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121415, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121420, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121422, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121432, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121437, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121444, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121448, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121452, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121454, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121457, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121461, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121463, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121465, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121467, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121470, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121472, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121477, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121484, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121486, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121488, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121490, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121499, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121501, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121511, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121516, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121519, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121522, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121524, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121526, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121530, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121536, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 121541, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 121635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121647, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121660, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 121663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121714, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121723, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121727, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121757, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121823, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121827, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121864, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121866, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 121881, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121889, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121893, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121899, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 121913, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 121916, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121946, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 121948, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 121952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121955, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121958, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121967, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 121978, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122018, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122073, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 122081, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122091, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 122104, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 122173, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122207, + "TypeID": 1, + "Label": "CB", + "Tags": "" + }, { + "StructureID": 122242, + "TypeID": 1, + "Label": "CBab", + "Tags": "" + }, { + "StructureID": 122353, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122415, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 122420, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 122424, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 122431, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 122459, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 122463, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 122467, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 122469, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 122484, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 122488, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 122564, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 122595, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 122663, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122705, + "TypeID": 1, + "Label": "XAC", + "Tags": "" + }, { + "StructureID": 122707, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 122711, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 122716, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 122750, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 122756, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 122760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122768, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 122777, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122801, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122803, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122829, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 122849, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 122868, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 122893, + "TypeID": 1, + "Label": "Rod BC", + "Tags": "" + }, { + "StructureID": 122930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 122933, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 123146, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 123181, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 123183, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 123186, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 123189, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 123192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123194, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123197, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 123199, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123209, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 123212, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 123215, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123223, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 123227, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123243, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123317, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123322, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123499, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 123551, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 123552, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123573, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123576, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123579, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 123675, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 124069, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 124198, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 124282, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 124301, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 124313, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 124402, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 124486, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 124547, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 124780, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 125157, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 125389, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 125397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 125685, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 125767, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 125857, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 125934, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 125981, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 126012, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 126047, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 126536, + "TypeID": 1, + "Label": "CBax", + "Tags": "" + }, { + "StructureID": 126582, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 126585, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 126646, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 126711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 126763, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 126886, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 126901, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 127070, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127148, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 127240, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127253, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 127256, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 127262, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127277, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127302, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 127304, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 127306, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127417, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127650, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127653, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127719, + "TypeID": 1, + "Label": "CBx 127719", + "Tags": "" + }, { + "StructureID": 127749, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127764, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 127776, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127781, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127783, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127796, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 127813, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127832, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127841, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 127846, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 127897, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127930, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 127940, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 127946, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 127953, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127964, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 127972, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 127999, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 128006, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128015, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 128044, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128060, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128082, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 128097, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128101, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128107, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128122, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 128150, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 128152, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128171, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 128184, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128191, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128193, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128205, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 128278, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128682, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128685, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 128696, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128758, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128800, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128803, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128816, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 128843, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128961, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 128992, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 129048, + "TypeID": 1, + "Label": "CBb", + "Tags": "" + }, { + "StructureID": 129144, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 129154, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 129181, + "TypeID": 1, + "Label": "CBax", + "Tags": "" + }, { + "StructureID": 129192, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 129199, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 129201, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 129292, + "TypeID": 1, + "Label": "BC", + "Tags": "" + }, { + "StructureID": 129340, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 129465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 129466, + "TypeID": 35, + "Label": null, + "Tags": "" + }, { + "StructureID": 129484, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 129563, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 129610, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 129648, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 129660, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 129666, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 129676, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 129696, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 129721, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 129738, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 129740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 129746, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 129755, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 129762, + "TypeID": 1, + "Label": "CB", + "Tags": "" + }, { + "StructureID": 129775, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 129781, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 129788, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 129798, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 129800, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 129827, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 129840, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 129851, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 129875, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 129877, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 129924, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 129927, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 129952, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 129954, + "TypeID": 1, + "Label": "BC", + "Tags": "" + }, { + "StructureID": 129956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 129961, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 129967, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 129994, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 129995, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 130006, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130012, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130038, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130039, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130125, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130150, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130152, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130189, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 130200, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130205, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130208, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130228, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130237, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130239, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130255, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130256, + "TypeID": 1, + "Label": "BC", + "Tags": "" + }, { + "StructureID": 130365, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130371, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 130383, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130389, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130408, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130472, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 130644, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130710, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130755, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130760, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130762, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130772, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130885, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130930, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130941, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 130964, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 130975, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131156, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131177, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 131244, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 131246, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 131284, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 131286, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 131364, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 131496, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131516, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131568, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131630, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 131635, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131638, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131642, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 131664, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 131704, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131708, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 131740, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 131886, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 131988, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 132009, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 132021, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 132038, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 132081, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 132123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 132135, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 132158, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 132162, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 132202, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 132220, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 132255, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 132257, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 132259, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 132712, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 132722, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 132740, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 132773, + "TypeID": 1, + "Label": "GAC AII?", + "Tags": "" + }, { + "StructureID": 133015, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133027, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133192, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133260, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133264, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133304, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133451, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 133550, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133553, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133557, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133744, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133755, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 133757, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 133779, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133782, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133784, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133786, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133804, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 133891, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134553, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 134654, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134657, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134659, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134662, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134664, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134667, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134669, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134671, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134674, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134677, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134681, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134687, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134691, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134693, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134701, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134703, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134706, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134713, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134715, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134718, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134950, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 134952, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 134954, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135039, + "TypeID": 1, + "Label": "GAC AII?", + "Tags": "" + }, { + "StructureID": 135052, + "TypeID": 1, + "Label": "GAC AII?", + "Tags": "" + }, { + "StructureID": 135183, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135186, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135196, + "TypeID": 1, + "Label": "YAC Ai", + "Tags": "" + }, { + "StructureID": 135208, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135213, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135219, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 135225, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 135229, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 135258, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 135281, + "TypeID": 1, + "Label": "GAC", + "Tags": "" + }, { + "StructureID": 135295, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 135401, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 135563, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135829, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135862, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135876, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135877, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 135884, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135909, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135924, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135941, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135956, + "TypeID": 1, + "Label": "GAC?", + "Tags": "" + }, { + "StructureID": 135982, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 135994, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136005, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136026, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136033, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136037, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136042, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136046, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136075, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136127, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136140, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 136169, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136177, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 136236, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136256, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 136291, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136331, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136351, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 136362, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 136381, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 136393, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136418, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 136427, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 136432, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 136465, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136486, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, { + "StructureID": 136513, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 136529, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 136531, + "TypeID": 1, + "Label": "AC?", + "Tags": "" + }, { + "StructureID": 136659, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 136667, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 136674, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 136677, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136680, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136688, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 136700, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136707, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136711, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136728, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136731, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136733, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136736, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136739, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136742, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 136748, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136759, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136766, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136786, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 136790, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136796, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136817, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136819, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136822, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136824, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136826, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 136843, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 136884, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 136913, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136917, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136927, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136931, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136936, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136947, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136952, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 136956, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 136970, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 137002, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 137007, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 137009, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 137012, + "TypeID": 1, + "Label": "GAC Aii", + "Tags": "" + }, { + "StructureID": 137024, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 137040, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 137070, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 137084, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 137099, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 137113, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 137122, + "TypeID": 1, + "Label": "GC", + "Tags": "" + }, { + "StructureID": 137147, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 137155, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 137159, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 137162, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 137168, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 137189, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 137192, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 147203, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 147213, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 147217, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 147220, + "TypeID": 1, + "Label": "CBx", + "Tags": "" + }, { + "StructureID": 147412, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 147696, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 147698, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 147713, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 147718, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 147734, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 147750, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 147765, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 147769, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 147776, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 147781, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 147788, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 147793, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 147796, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 147805, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 147809, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 147818, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148300, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148302, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 148314, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148317, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148330, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 148332, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148335, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148337, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148343, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148346, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148351, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 148354, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148358, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148361, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 148364, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 148367, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 148371, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148374, + "TypeID": 1, + "Label": "YAC", + "Tags": "" + }, { + "StructureID": 148377, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 148381, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 148384, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 148389, + "TypeID": 1, + "Label": "CBa", + "Tags": "" + }, { + "StructureID": 148397, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 148402, + "TypeID": 1, + "Label": "AC", + "Tags": "" + }, { + "StructureID": 158472, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158473, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158477, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158498, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158503, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158507, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158515, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158518, + "TypeID": 1, + "Label": "BC ASB", + "Tags": "" + }, { + "StructureID": 158538, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158673, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158774, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158844, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158846, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158859, + "TypeID": 1, + "Label": "", + "Tags": "" + }, { + "StructureID": 158878, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158899, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 158907, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 159028, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 159045, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 159084, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 159118, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 159123, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 159125, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 159146, + "TypeID": 1, + "Label": null, + "Tags": "" + }, { + "StructureID": 159150, + "TypeID": 1, + "Label": null, + "Tags": "" + }], + "edges": [{ + "ID": 0, + "SourceStructureID": 8551, + "TargetStructureID": 115, + "Label": "8551-115 via Gap Junction from 43755 -> 43754", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 43755, + "TargetID": 43754, + "Directional": false + }] + }, { + "ID": 1, + "SourceStructureID": 138, + "TargetStructureID": 138, + "Label": "138-138 via Gap Junction from 60162 -> 60163", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60162, + "TargetID": 60163, + "Directional": false + }] + }, { + "ID": 2, + "SourceStructureID": 173, + "TargetStructureID": 138, + "Label": "173-138 via Gap Junction from 46416 -> 46415", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46416, + "TargetID": 46415, + "Directional": false + }] + }, { + "ID": 3, + "SourceStructureID": 181, + "TargetStructureID": 138, + "Label": "181-138 via Gap Junction from 20559 -> 20560", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 20559, + "TargetID": 20560, + "Directional": false + }] + }, { + "ID": 4, + "SourceStructureID": 138, + "TargetStructureID": 11803, + "Label": "138-11803 via Gap Junction from 11474 -> 11804", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 11474, + "TargetID": 11804, + "Directional": false + }] + }, { + "ID": 5, + "SourceStructureID": 142, + "TargetStructureID": 142, + "Label": "142-142 via Gap Junction from 125969 -> 125970", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 125969, + "TargetID": 125970, + "Directional": false + }] + }, { + "ID": 6, + "SourceStructureID": 142, + "TargetStructureID": 3116, + "Label": "142-3116 via Gap Junction from 92141 -> 126379", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92141, + "TargetID": 126379, + "Directional": false + }] + }, { + "ID": 7, + "SourceStructureID": 142, + "TargetStructureID": 3257, + "Label": "142-3257 via Adherens from 125956 -> 125955, 125958 -> 125959", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125956, + "TargetID": 125955, + "Directional": false + }, { + "SourceID": 125958, + "TargetID": 125959, + "Directional": false + }] + }, { + "ID": 8, + "SourceStructureID": 3257, + "TargetStructureID": 142, + "Label": "3257-142 via Gap Junction from 9132 -> 119596, 119589 -> 88058, 126034 -> 126033, 126035 -> 126036", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 9132, + "TargetID": 119596, + "Directional": false + }, { + "SourceID": 119589, + "TargetID": 88058, + "Directional": false + }, { + "SourceID": 126034, + "TargetID": 126033, + "Directional": false + }, { + "SourceID": 126035, + "TargetID": 126036, + "Directional": false + }] + }, { + "ID": 9, + "SourceStructureID": 142, + "TargetStructureID": 3679, + "Label": "142-3679 via Gap Junction from 33028 -> 33027", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 33028, + "TargetID": 33027, + "Directional": false + }] + }, { + "ID": 10, + "SourceStructureID": 5278, + "TargetStructureID": 142, + "Label": "5278-142 via Adherens from 114532 -> 114533", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 114532, + "TargetID": 114533, + "Directional": false + }] + }, { + "ID": 11, + "SourceStructureID": 142, + "TargetStructureID": 5278, + "Label": "142-5278 via Gap Junction from 49731 -> 20124, 50308 -> 49773, 92394 -> 49740, 92395 -> 92396, 92934 -> 92933, 98430 -> 98431, 104867 -> 104868, 114493 -> 114492, 125976 -> 125977, 126121 -> 126122", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49731, + "TargetID": 20124, + "Directional": false + }, { + "SourceID": 50308, + "TargetID": 49773, + "Directional": false + }, { + "SourceID": 92394, + "TargetID": 49740, + "Directional": false + }, { + "SourceID": 92395, + "TargetID": 92396, + "Directional": false + }, { + "SourceID": 92934, + "TargetID": 92933, + "Directional": false + }, { + "SourceID": 98430, + "TargetID": 98431, + "Directional": false + }, { + "SourceID": 104867, + "TargetID": 104868, + "Directional": false + }, { + "SourceID": 114493, + "TargetID": 114492, + "Directional": false + }, { + "SourceID": 125976, + "TargetID": 125977, + "Directional": false + }, { + "SourceID": 126121, + "TargetID": 126122, + "Directional": false + }] + }, { + "ID": 12, + "SourceStructureID": 5279, + "TargetStructureID": 142, + "Label": "5279-142 via Gap Junction from 147688 -> 147689", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 147688, + "TargetID": 147689, + "Directional": false + }] + }, { + "ID": 13, + "SourceStructureID": 5284, + "TargetStructureID": 142, + "Label": "5284-142 via Gap Junction from 92382 -> 49782", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92382, + "TargetID": 49782, + "Directional": false + }] + }, { + "ID": 14, + "SourceStructureID": 142, + "TargetStructureID": 5292, + "Label": "142-5292 via Adherens from 126364 -> 126365", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126364, + "TargetID": 126365, + "Directional": false + }] + }, { + "ID": 15, + "SourceStructureID": 5292, + "TargetStructureID": 142, + "Label": "5292-142 via Gap Junction from 49790 -> 49786, 92051 -> 92050", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49790, + "TargetID": 49786, + "Directional": false + }, { + "SourceID": 92051, + "TargetID": 92050, + "Directional": false + }] + }, { + "ID": 16, + "SourceStructureID": 5297, + "TargetStructureID": 142, + "Label": "5297-142 via Adherens from 126348 -> 126347, 126669 -> 126670", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126348, + "TargetID": 126347, + "Directional": false + }, { + "SourceID": 126669, + "TargetID": 126670, + "Directional": false + }] + }, { + "ID": 17, + "SourceStructureID": 5297, + "TargetStructureID": 142, + "Label": "5297-142 via Gap Junction from 50315 -> 49774, 50320 -> 49776, 53605 -> 53604, 56813 -> 49755, 65989 -> 65990, 92328 -> 92329, 126234 -> 126235", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50315, + "TargetID": 49774, + "Directional": false + }, { + "SourceID": 50320, + "TargetID": 49776, + "Directional": false + }, { + "SourceID": 53605, + "TargetID": 53604, + "Directional": false + }, { + "SourceID": 56813, + "TargetID": 49755, + "Directional": false + }, { + "SourceID": 65989, + "TargetID": 65990, + "Directional": false + }, { + "SourceID": 92328, + "TargetID": 92329, + "Directional": false + }, { + "SourceID": 126234, + "TargetID": 126235, + "Directional": false + }] + }, { + "ID": 18, + "SourceStructureID": 5487, + "TargetStructureID": 142, + "Label": "5487-142 via Gap Junction from 91673 -> 50126", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91673, + "TargetID": 50126, + "Directional": false + }] + }, { + "ID": 19, + "SourceStructureID": 6117, + "TargetStructureID": 142, + "Label": "6117-142 via Gap Junction from 125921 -> 125920, 126023 -> 126022", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 125921, + "TargetID": 125920, + "Directional": false + }, { + "SourceID": 126023, + "TargetID": 126022, + "Directional": false + }] + }, { + "ID": 20, + "SourceStructureID": 142, + "TargetStructureID": 6169, + "Label": "142-6169 via Adherens from 126242 -> 126243, 147685 -> 147686", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126242, + "TargetID": 126243, + "Directional": false + }, { + "SourceID": 147685, + "TargetID": 147686, + "Directional": false + }] + }, { + "ID": 21, + "SourceStructureID": 6169, + "TargetStructureID": 142, + "Label": "6169-142 via Gap Junction from 16159 -> 11190, 20020 -> 20019, 31777 -> 16240, 32086 -> 24646, 35929 -> 11950, 49702 -> 49703, 49714 -> 16172, 49720 -> 49721, 49738 -> 18390, 56833 -> 56832, 88053 -> 16174, 126103 -> 9468, 126224 -> 126223, 126228 -> 126226", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16159, + "TargetID": 11190, + "Directional": false + }, { + "SourceID": 20020, + "TargetID": 20019, + "Directional": false + }, { + "SourceID": 31777, + "TargetID": 16240, + "Directional": false + }, { + "SourceID": 32086, + "TargetID": 24646, + "Directional": false + }, { + "SourceID": 35929, + "TargetID": 11950, + "Directional": false + }, { + "SourceID": 49702, + "TargetID": 49703, + "Directional": false + }, { + "SourceID": 49714, + "TargetID": 16172, + "Directional": false + }, { + "SourceID": 49720, + "TargetID": 49721, + "Directional": false + }, { + "SourceID": 49738, + "TargetID": 18390, + "Directional": false + }, { + "SourceID": 56833, + "TargetID": 56832, + "Directional": false + }, { + "SourceID": 88053, + "TargetID": 16174, + "Directional": false + }, { + "SourceID": 126103, + "TargetID": 9468, + "Directional": false + }, { + "SourceID": 126224, + "TargetID": 126223, + "Directional": false + }, { + "SourceID": 126228, + "TargetID": 126226, + "Directional": false + }] + }, { + "ID": 22, + "SourceStructureID": 142, + "TargetStructureID": 9347, + "Label": "142-9347 via Unknown from 126313 -> 126312, 126317 -> 126309", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126313, + "TargetID": 126312, + "Directional": false + }, { + "SourceID": 126317, + "TargetID": 126309, + "Directional": false + }] + }, { + "ID": 23, + "SourceStructureID": 142, + "TargetStructureID": 18693, + "Label": "142-18693 via Adherens from 126218 -> 27331", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126218, + "TargetID": 27331, + "Directional": false + }] + }, { + "ID": 24, + "SourceStructureID": 21299, + "TargetStructureID": 142, + "Label": "21299-142 via Adherens from 125928 -> 125927, 126368 -> 126367, 147690 -> 147691", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125928, + "TargetID": 125927, + "Directional": false + }, { + "SourceID": 126368, + "TargetID": 126367, + "Directional": false + }, { + "SourceID": 147690, + "TargetID": 147691, + "Directional": false + }] + }, { + "ID": 25, + "SourceStructureID": 142, + "TargetStructureID": 21299, + "Label": "142-21299 via Gap Junction from 44447 -> 44446, 49712 -> 49713, 50125 -> 48925, 91659 -> 91657, 92441 -> 92440, 125945 -> 125946, 125947 -> 125948, 125953 -> 125952, 126009 -> 126010, 126154 -> 126155, 126157 -> 126158", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 44447, + "TargetID": 44446, + "Directional": false + }, { + "SourceID": 49712, + "TargetID": 49713, + "Directional": false + }, { + "SourceID": 50125, + "TargetID": 48925, + "Directional": false + }, { + "SourceID": 91659, + "TargetID": 91657, + "Directional": false + }, { + "SourceID": 92441, + "TargetID": 92440, + "Directional": false + }, { + "SourceID": 125945, + "TargetID": 125946, + "Directional": false + }, { + "SourceID": 125947, + "TargetID": 125948, + "Directional": false + }, { + "SourceID": 125953, + "TargetID": 125952, + "Directional": false + }, { + "SourceID": 126009, + "TargetID": 126010, + "Directional": false + }, { + "SourceID": 126154, + "TargetID": 126155, + "Directional": false + }, { + "SourceID": 126157, + "TargetID": 126158, + "Directional": false + }] + }, { + "ID": 26, + "SourceStructureID": 142, + "TargetStructureID": 21299, + "Label": "142-21299 via Touch from 125936 -> 125937", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 125936, + "TargetID": 125937, + "Directional": false + }] + }, { + "ID": 27, + "SourceStructureID": 142, + "TargetStructureID": 30513, + "Label": "142-30513 via Unknown from 125916 -> 125917", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125916, + "TargetID": 125917, + "Directional": false + }] + }, { + "ID": 28, + "SourceStructureID": 142, + "TargetStructureID": 39192, + "Label": "142-39192 via Unknown from 125963 -> 125964", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125963, + "TargetID": 125964, + "Directional": false + }] + }, { + "ID": 29, + "SourceStructureID": 142, + "TargetStructureID": 66743, + "Label": "142-66743 via Unknown from 126334 -> 126335", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126334, + "TargetID": 126335, + "Directional": false + }] + }, { + "ID": 30, + "SourceStructureID": 86334, + "TargetStructureID": 142, + "Label": "86334-142 via Adherens from 126028 -> 126027", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126028, + "TargetID": 126027, + "Directional": false + }] + }, { + "ID": 31, + "SourceStructureID": 91613, + "TargetStructureID": 142, + "Label": "91613-142 via Unknown from 98421 -> 98422", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98421, + "TargetID": 98422, + "Directional": false + }] + }, { + "ID": 32, + "SourceStructureID": 92295, + "TargetStructureID": 142, + "Label": "92295-142 via Gap Junction from 127679 -> 126086", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 127679, + "TargetID": 126086, + "Directional": false + }] + }, { + "ID": 33, + "SourceStructureID": 142, + "TargetStructureID": 92295, + "Label": "142-92295 via Unknown from 126095 -> 126096", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126095, + "TargetID": 126096, + "Directional": false + }] + }, { + "ID": 34, + "SourceStructureID": 142, + "TargetStructureID": 92434, + "Label": "142-92434 via Adherens from 126463 -> 126464", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126463, + "TargetID": 126464, + "Directional": false + }] + }, { + "ID": 35, + "SourceStructureID": 92434, + "TargetStructureID": 142, + "Label": "92434-142 via Gap Junction from 92435 -> 92436", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92435, + "TargetID": 92436, + "Directional": false + }] + }, { + "ID": 36, + "SourceStructureID": 142, + "TargetStructureID": 93355, + "Label": "142-93355 via Unknown from 126642 -> 126643", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126642, + "TargetID": 126643, + "Directional": false + }] + }, { + "ID": 37, + "SourceStructureID": 104053, + "TargetStructureID": 142, + "Label": "104053-142 via Unknown from 126147 -> 126148", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126147, + "TargetID": 126148, + "Directional": false + }] + }, { + "ID": 38, + "SourceStructureID": 142, + "TargetStructureID": 127667, + "Label": "142-127667 via Adherens from 127670 -> 127669, 127673 -> 127672", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127670, + "TargetID": 127669, + "Directional": false + }, { + "SourceID": 127673, + "TargetID": 127672, + "Directional": false + }] + }, { + "ID": 39, + "SourceStructureID": 142, + "TargetStructureID": 127667, + "Label": "142-127667 via Gap Junction from 53597 -> 127674", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53597, + "TargetID": 127674, + "Directional": false + }] + }, { + "ID": 40, + "SourceStructureID": 142, + "TargetStructureID": 131177, + "Label": "142-131177 via Unknown from 126006 -> 131179, 131184 -> 126040", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126006, + "TargetID": 131179, + "Directional": false + }, { + "SourceID": 131184, + "TargetID": 126040, + "Directional": false + }] + }, { + "ID": 41, + "SourceStructureID": 153, + "TargetStructureID": 79068, + "Label": "153-79068 via Adherens from 79120 -> 79121, 79122 -> 79124, 79143 -> 79142, 79145 -> 79146, 79267 -> 79268, 79288 -> 79287, 79290 -> 79291, 79335 -> 79336", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79120, + "TargetID": 79121, + "Directional": false + }, { + "SourceID": 79122, + "TargetID": 79124, + "Directional": false + }, { + "SourceID": 79143, + "TargetID": 79142, + "Directional": false + }, { + "SourceID": 79145, + "TargetID": 79146, + "Directional": false + }, { + "SourceID": 79267, + "TargetID": 79268, + "Directional": false + }, { + "SourceID": 79288, + "TargetID": 79287, + "Directional": false + }, { + "SourceID": 79290, + "TargetID": 79291, + "Directional": false + }, { + "SourceID": 79335, + "TargetID": 79336, + "Directional": false + }] + }, { + "ID": 42, + "SourceStructureID": 79069, + "TargetStructureID": 153, + "Label": "79069-153 via Adherens from 79078 -> 79077, 79119 -> 79118, 79289 -> 79288", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79078, + "TargetID": 79077, + "Directional": false + }, { + "SourceID": 79119, + "TargetID": 79118, + "Directional": false + }, { + "SourceID": 79289, + "TargetID": 79288, + "Directional": false + }] + }, { + "ID": 43, + "SourceStructureID": 79071, + "TargetStructureID": 153, + "Label": "79071-153 via Adherens from 79085 -> 79086, 79087 -> 79088, 79089 -> 79090, 79128 -> 79127, 79130 -> 79129, 79131 -> 79132, 79301 -> 79300, 79307 -> 79305", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79085, + "TargetID": 79086, + "Directional": false + }, { + "SourceID": 79087, + "TargetID": 79088, + "Directional": false + }, { + "SourceID": 79089, + "TargetID": 79090, + "Directional": false + }, { + "SourceID": 79128, + "TargetID": 79127, + "Directional": false + }, { + "SourceID": 79130, + "TargetID": 79129, + "Directional": false + }, { + "SourceID": 79131, + "TargetID": 79132, + "Directional": false + }, { + "SourceID": 79301, + "TargetID": 79300, + "Directional": false + }, { + "SourceID": 79307, + "TargetID": 79305, + "Directional": false + }] + }, { + "ID": 44, + "SourceStructureID": 153, + "TargetStructureID": 79072, + "Label": "153-79072 via Adherens from 79307 -> 79306", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79307, + "TargetID": 79306, + "Directional": false + }] + }, { + "ID": 45, + "SourceStructureID": 153, + "TargetStructureID": 79091, + "Label": "153-79091 via Adherens from 79096 -> 79095, 79108 -> 79107, 79125 -> 79126, 79268 -> 79266, 79299 -> 79298, 79334 -> 79333", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79096, + "TargetID": 79095, + "Directional": false + }, { + "SourceID": 79108, + "TargetID": 79107, + "Directional": false + }, { + "SourceID": 79125, + "TargetID": 79126, + "Directional": false + }, { + "SourceID": 79268, + "TargetID": 79266, + "Directional": false + }, { + "SourceID": 79299, + "TargetID": 79298, + "Directional": false + }, { + "SourceID": 79334, + "TargetID": 79333, + "Directional": false + }] + }, { + "ID": 46, + "SourceStructureID": 161, + "TargetStructureID": 5502, + "Label": "161-5502 via Gap Junction from 27223 -> 27257", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 27223, + "TargetID": 27257, + "Directional": false + }] + }, { + "ID": 47, + "SourceStructureID": 161, + "TargetStructureID": 11803, + "Label": "161-11803 via Gap Junction from 39074 -> 39073", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 39074, + "TargetID": 39073, + "Directional": false + }] + }, { + "ID": 48, + "SourceStructureID": 598, + "TargetStructureID": 162, + "Label": "598-162 via Adherens from 70260 -> 70259", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70260, + "TargetID": 70259, + "Directional": false + }] + }, { + "ID": 49, + "SourceStructureID": 606, + "TargetStructureID": 162, + "Label": "606-162 via Adherens from 51960 -> 51961", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 51960, + "TargetID": 51961, + "Directional": false + }] + }, { + "ID": 50, + "SourceStructureID": 162, + "TargetStructureID": 5292, + "Label": "162-5292 via Unknown from 133975 -> 126332", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133975, + "TargetID": 126332, + "Directional": false + }] + }, { + "ID": 51, + "SourceStructureID": 6203, + "TargetStructureID": 162, + "Label": "6203-162 via Unknown from 125787 -> 125788", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125787, + "TargetID": 125788, + "Directional": false + }] + }, { + "ID": 52, + "SourceStructureID": 162, + "TargetStructureID": 20136, + "Label": "162-20136 via Adherens from 109344 -> 109345", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109344, + "TargetID": 109345, + "Directional": false + }] + }, { + "ID": 53, + "SourceStructureID": 162, + "TargetStructureID": 20136, + "Label": "162-20136 via Unknown from 109353 -> 109352, 109357 -> 109358", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109353, + "TargetID": 109352, + "Directional": false + }, { + "SourceID": 109357, + "TargetID": 109358, + "Directional": false + }] + }, { + "ID": 54, + "SourceStructureID": 175, + "TargetStructureID": 165, + "Label": "175-165 via Gap Junction from 21725 -> 21717", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 21725, + "TargetID": 21717, + "Directional": false + }] + }, { + "ID": 55, + "SourceStructureID": 478, + "TargetStructureID": 165, + "Label": "478-165 via Gap Junction from 19425 -> 21714", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 19425, + "TargetID": 21714, + "Directional": false + }] + }, { + "ID": 56, + "SourceStructureID": 4567, + "TargetStructureID": 165, + "Label": "4567-165 via Gap Junction from 60859 -> 12550", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60859, + "TargetID": 12550, + "Directional": false + }] + }, { + "ID": 57, + "SourceStructureID": 5544, + "TargetStructureID": 165, + "Label": "5544-165 via Gap Junction from 136926 -> 20845", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136926, + "TargetID": 20845, + "Directional": false + }] + }, { + "ID": 58, + "SourceStructureID": 64690, + "TargetStructureID": 165, + "Label": "64690-165 via Gap Junction from 64694 -> 12592", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 64694, + "TargetID": 12592, + "Directional": false + }] + }, { + "ID": 59, + "SourceStructureID": 166, + "TargetStructureID": 166, + "Label": "166-166 via Gap Junction from 60037 -> 60039, 84786 -> 62878", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60037, + "TargetID": 60039, + "Directional": false + }, { + "SourceID": 84786, + "TargetID": 62878, + "Directional": false + }] + }, { + "ID": 60, + "SourceStructureID": 166, + "TargetStructureID": 461, + "Label": "166-461 via Gap Junction from 49829 -> 49828, 120406 -> 120405", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49829, + "TargetID": 49828, + "Directional": false + }, { + "SourceID": 120406, + "TargetID": 120405, + "Directional": false + }] + }, { + "ID": 61, + "SourceStructureID": 166, + "TargetStructureID": 461, + "Label": "166-461 via Touch from 99164 -> 99163", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 99164, + "TargetID": 99163, + "Directional": false + }] + }, { + "ID": 62, + "SourceStructureID": 483, + "TargetStructureID": 166, + "Label": "483-166 via Gap Junction from 49148 -> 49149, 70964 -> 70962", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49148, + "TargetID": 49149, + "Directional": false + }, { + "SourceID": 70964, + "TargetID": 70962, + "Directional": false + }] + }, { + "ID": 63, + "SourceStructureID": 593, + "TargetStructureID": 166, + "Label": "593-166 via Gap Junction from 59690 -> 60010, 60047 -> 60046", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59690, + "TargetID": 60010, + "Directional": false + }, { + "SourceID": 60047, + "TargetID": 60046, + "Directional": false + }] + }, { + "ID": 64, + "SourceStructureID": 166, + "TargetStructureID": 3257, + "Label": "166-3257 via Gap Junction from 15455 -> 15454, 59879 -> 59880, 71485 -> 71484, 71931 -> 71930", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 15455, + "TargetID": 15454, + "Directional": false + }, { + "SourceID": 59879, + "TargetID": 59880, + "Directional": false + }, { + "SourceID": 71485, + "TargetID": 71484, + "Directional": false + }, { + "SourceID": 71931, + "TargetID": 71930, + "Directional": false + }] + }, { + "ID": 65, + "SourceStructureID": 166, + "TargetStructureID": 4570, + "Label": "166-4570 via Gap Junction from 131394 -> 158463", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131394, + "TargetID": 158463, + "Directional": false + }] + }, { + "ID": 66, + "SourceStructureID": 5437, + "TargetStructureID": 166, + "Label": "5437-166 via Unknown from 120349 -> 120350", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120349, + "TargetID": 120350, + "Directional": false + }] + }, { + "ID": 67, + "SourceStructureID": 5635, + "TargetStructureID": 166, + "Label": "5635-166 via Adherens from 131174 -> 131173", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131174, + "TargetID": 131173, + "Directional": false + }] + }, { + "ID": 68, + "SourceStructureID": 5635, + "TargetStructureID": 166, + "Label": "5635-166 via Gap Junction from 55950 -> 55949, 59899 -> 59900", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55950, + "TargetID": 55949, + "Directional": false + }, { + "SourceID": 59899, + "TargetID": 59900, + "Directional": false + }] + }, { + "ID": 69, + "SourceStructureID": 6115, + "TargetStructureID": 166, + "Label": "6115-166 via Gap Junction from 59987 -> 59986", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59987, + "TargetID": 59986, + "Directional": false + }] + }, { + "ID": 70, + "SourceStructureID": 166, + "TargetStructureID": 6169, + "Label": "166-6169 via Gap Junction from 16163 -> 16160, 16245 -> 16246, 59969 -> 59967, 59981 -> 59982, 59990 -> 59989, 60001 -> 60002, 60041 -> 60040, 60044 -> 60043", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16163, + "TargetID": 16160, + "Directional": false + }, { + "SourceID": 16245, + "TargetID": 16246, + "Directional": false + }, { + "SourceID": 59969, + "TargetID": 59967, + "Directional": false + }, { + "SourceID": 59981, + "TargetID": 59982, + "Directional": false + }, { + "SourceID": 59990, + "TargetID": 59989, + "Directional": false + }, { + "SourceID": 60001, + "TargetID": 60002, + "Directional": false + }, { + "SourceID": 60041, + "TargetID": 60040, + "Directional": false + }, { + "SourceID": 60044, + "TargetID": 60043, + "Directional": false + }] + }, { + "ID": 71, + "SourceStructureID": 8579, + "TargetStructureID": 166, + "Label": "8579-166 via Adherens from 132997 -> 132998", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132997, + "TargetID": 132998, + "Directional": false + }] + }, { + "ID": 72, + "SourceStructureID": 166, + "TargetStructureID": 29198, + "Label": "166-29198 via Unknown from 94756 -> 94757", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94756, + "TargetID": 94757, + "Directional": false + }] + }, { + "ID": 73, + "SourceStructureID": 39596, + "TargetStructureID": 166, + "Label": "39596-166 via Unknown from 120351 -> 120352", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120351, + "TargetID": 120352, + "Directional": false + }] + }, { + "ID": 74, + "SourceStructureID": 66278, + "TargetStructureID": 166, + "Label": "66278-166 via Adherens from 81898 -> 81899, 81901 -> 81900", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81898, + "TargetID": 81899, + "Directional": false + }, { + "SourceID": 81901, + "TargetID": 81900, + "Directional": false + }] + }, { + "ID": 75, + "SourceStructureID": 66731, + "TargetStructureID": 166, + "Label": "66731-166 via Adherens from 66738 -> 66739", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66738, + "TargetID": 66739, + "Directional": false + }] + }, { + "ID": 76, + "SourceStructureID": 166, + "TargetStructureID": 71426, + "Label": "166-71426 via Unknown from 120345 -> 120346", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120345, + "TargetID": 120346, + "Directional": false + }] + }, { + "ID": 77, + "SourceStructureID": 71438, + "TargetStructureID": 166, + "Label": "71438-166 via Adherens from 71451 -> 71450", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71451, + "TargetID": 71450, + "Directional": false + }] + }, { + "ID": 78, + "SourceStructureID": 71445, + "TargetStructureID": 166, + "Label": "71445-166 via Adherens from 71459 -> 71460", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71459, + "TargetID": 71460, + "Directional": false + }] + }, { + "ID": 79, + "SourceStructureID": 71825, + "TargetStructureID": 166, + "Label": "71825-166 via Gap Junction from 71826 -> 71824", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71826, + "TargetID": 71824, + "Directional": false + }] + }, { + "ID": 80, + "SourceStructureID": 90829, + "TargetStructureID": 166, + "Label": "90829-166 via Adherens from 90833 -> 90834", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90833, + "TargetID": 90834, + "Directional": false + }] + }, { + "ID": 81, + "SourceStructureID": 166, + "TargetStructureID": 135052, + "Label": "166-135052 via Gap Junction from 132042 -> 135053", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132042, + "TargetID": 135053, + "Directional": false + }] + }, { + "ID": 82, + "SourceStructureID": 168, + "TargetStructureID": 168, + "Label": "168-168 via Gap Junction from 93063 -> 93062", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93063, + "TargetID": 93062, + "Directional": false + }] + }, { + "ID": 83, + "SourceStructureID": 168, + "TargetStructureID": 170, + "Label": "168-170 via Gap Junction from 88340 -> 88339", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88340, + "TargetID": 88339, + "Directional": false + }] + }, { + "ID": 84, + "SourceStructureID": 168, + "TargetStructureID": 176, + "Label": "168-176 via Gap Junction from 119633 -> 119632", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119633, + "TargetID": 119632, + "Directional": false + }] + }, { + "ID": 85, + "SourceStructureID": 595, + "TargetStructureID": 168, + "Label": "595-168 via Adherens from 81950 -> 81949, 82491 -> 82492, 91198 -> 91197, 135697 -> 135696", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81950, + "TargetID": 81949, + "Directional": false + }, { + "SourceID": 82491, + "TargetID": 82492, + "Directional": false + }, { + "SourceID": 91198, + "TargetID": 91197, + "Directional": false + }, { + "SourceID": 135697, + "TargetID": 135696, + "Directional": false + }] + }, { + "ID": 86, + "SourceStructureID": 168, + "TargetStructureID": 595, + "Label": "168-595 via Gap Junction from 50954 -> 50955, 81947 -> 81948, 82489 -> 82490, 90915 -> 90914, 91135 -> 91136, 91200 -> 91199, 91238 -> 91239, 91752 -> 91753, 92613 -> 92612, 92769 -> 92770, 92821 -> 92822, 94436 -> 91248, 125198 -> 125199, 125725 -> 125724", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50954, + "TargetID": 50955, + "Directional": false + }, { + "SourceID": 81947, + "TargetID": 81948, + "Directional": false + }, { + "SourceID": 82489, + "TargetID": 82490, + "Directional": false + }, { + "SourceID": 90915, + "TargetID": 90914, + "Directional": false + }, { + "SourceID": 91135, + "TargetID": 91136, + "Directional": false + }, { + "SourceID": 91200, + "TargetID": 91199, + "Directional": false + }, { + "SourceID": 91238, + "TargetID": 91239, + "Directional": false + }, { + "SourceID": 91752, + "TargetID": 91753, + "Directional": false + }, { + "SourceID": 92613, + "TargetID": 92612, + "Directional": false + }, { + "SourceID": 92769, + "TargetID": 92770, + "Directional": false + }, { + "SourceID": 92821, + "TargetID": 92822, + "Directional": false + }, { + "SourceID": 94436, + "TargetID": 91248, + "Directional": false + }, { + "SourceID": 125198, + "TargetID": 125199, + "Directional": false + }, { + "SourceID": 125725, + "TargetID": 125724, + "Directional": false + }] + }, { + "ID": 87, + "SourceStructureID": 168, + "TargetStructureID": 3116, + "Label": "168-3116 via Gap Junction from 92532 -> 92533", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92532, + "TargetID": 92533, + "Directional": false + }] + }, { + "ID": 88, + "SourceStructureID": 168, + "TargetStructureID": 3257, + "Label": "168-3257 via Gap Junction from 4172 -> 14932, 4210 -> 14931, 4334 -> 92504, 6701 -> 6702, 9123 -> 4202, 34080 -> 34081, 39016 -> 39015, 49161 -> 49162, 50963 -> 49164, 56980 -> 4288, 56982 -> 56981, 92505 -> 92506, 92537 -> 92538, 92746 -> 92747, 92756 -> 92755, 92792 -> 92791", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 4172, + "TargetID": 14932, + "Directional": false + }, { + "SourceID": 4210, + "TargetID": 14931, + "Directional": false + }, { + "SourceID": 4334, + "TargetID": 92504, + "Directional": false + }, { + "SourceID": 6701, + "TargetID": 6702, + "Directional": false + }, { + "SourceID": 9123, + "TargetID": 4202, + "Directional": false + }, { + "SourceID": 34080, + "TargetID": 34081, + "Directional": false + }, { + "SourceID": 39016, + "TargetID": 39015, + "Directional": false + }, { + "SourceID": 49161, + "TargetID": 49162, + "Directional": false + }, { + "SourceID": 50963, + "TargetID": 49164, + "Directional": false + }, { + "SourceID": 56980, + "TargetID": 4288, + "Directional": false + }, { + "SourceID": 56982, + "TargetID": 56981, + "Directional": false + }, { + "SourceID": 92505, + "TargetID": 92506, + "Directional": false + }, { + "SourceID": 92537, + "TargetID": 92538, + "Directional": false + }, { + "SourceID": 92746, + "TargetID": 92747, + "Directional": false + }, { + "SourceID": 92756, + "TargetID": 92755, + "Directional": false + }, { + "SourceID": 92792, + "TargetID": 92791, + "Directional": false + }] + }, { + "ID": 89, + "SourceStructureID": 168, + "TargetStructureID": 4569, + "Label": "168-4569 via Gap Junction from 119045 -> 119046, 119056 -> 119057", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119045, + "TargetID": 119046, + "Directional": false + }, { + "SourceID": 119056, + "TargetID": 119057, + "Directional": false + }] + }, { + "ID": 90, + "SourceStructureID": 168, + "TargetStructureID": 4835, + "Label": "168-4835 via Gap Junction from 92767 -> 92766", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92767, + "TargetID": 92766, + "Directional": false + }] + }, { + "ID": 91, + "SourceStructureID": 5487, + "TargetStructureID": 168, + "Label": "5487-168 via Adherens from 92758 -> 50117, 119053 -> 119052", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92758, + "TargetID": 50117, + "Directional": false + }, { + "SourceID": 119053, + "TargetID": 119052, + "Directional": false + }] + }, { + "ID": 92, + "SourceStructureID": 5530, + "TargetStructureID": 168, + "Label": "5530-168 via Adherens from 82010 -> 82011", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82010, + "TargetID": 82011, + "Directional": false + }] + }, { + "ID": 93, + "SourceStructureID": 168, + "TargetStructureID": 5860, + "Label": "168-5860 via Gap Junction from 50947 -> 29862", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50947, + "TargetID": 29862, + "Directional": false + }] + }, { + "ID": 94, + "SourceStructureID": 7564, + "TargetStructureID": 168, + "Label": "7564-168 via Gap Junction from 29685 -> 4252, 50939 -> 50938, 125723 -> 29686", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29685, + "TargetID": 4252, + "Directional": false + }, { + "SourceID": 50939, + "TargetID": 50938, + "Directional": false + }, { + "SourceID": 125723, + "TargetID": 29686, + "Directional": false + }] + }, { + "ID": 95, + "SourceStructureID": 168, + "TargetStructureID": 7576, + "Label": "168-7576 via Adherens from 54837 -> 54836, 55931 -> 55932", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54837, + "TargetID": 54836, + "Directional": false + }, { + "SourceID": 55931, + "TargetID": 55932, + "Directional": false + }] + }, { + "ID": 96, + "SourceStructureID": 7576, + "TargetStructureID": 168, + "Label": "7576-168 via Gap Junction from 55004 -> 55005", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55004, + "TargetID": 55005, + "Directional": false + }] + }, { + "ID": 97, + "SourceStructureID": 7576, + "TargetStructureID": 168, + "Label": "7576-168 via Unknown from 54975 -> 54976", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 54975, + "TargetID": 54976, + "Directional": false + }] + }, { + "ID": 98, + "SourceStructureID": 168, + "TargetStructureID": 8720, + "Label": "168-8720 via Unknown from 82014 -> 82015, 92894 -> 92896", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82014, + "TargetID": 82015, + "Directional": false + }, { + "SourceID": 92894, + "TargetID": 92896, + "Directional": false + }] + }, { + "ID": 99, + "SourceStructureID": 168, + "TargetStructureID": 21299, + "Label": "168-21299 via Gap Junction from 30062 -> 30061, 35829 -> 35828, 48831 -> 48830, 49062 -> 48872, 50940 -> 50941, 56969 -> 56970, 91584 -> 91583, 91626 -> 91625, 91636 -> 91635", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 30062, + "TargetID": 30061, + "Directional": false + }, { + "SourceID": 35829, + "TargetID": 35828, + "Directional": false + }, { + "SourceID": 48831, + "TargetID": 48830, + "Directional": false + }, { + "SourceID": 49062, + "TargetID": 48872, + "Directional": false + }, { + "SourceID": 50940, + "TargetID": 50941, + "Directional": false + }, { + "SourceID": 56969, + "TargetID": 56970, + "Directional": false + }, { + "SourceID": 91584, + "TargetID": 91583, + "Directional": false + }, { + "SourceID": 91626, + "TargetID": 91625, + "Directional": false + }, { + "SourceID": 91636, + "TargetID": 91635, + "Directional": false + }] + }, { + "ID": 100, + "SourceStructureID": 21299, + "TargetStructureID": 168, + "Label": "21299-168 via Touch from 91664 -> 91663", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 91664, + "TargetID": 91663, + "Directional": false + }] + }, { + "ID": 101, + "SourceStructureID": 34055, + "TargetStructureID": 168, + "Label": "34055-168 via Adherens from 82001 -> 82000", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82001, + "TargetID": 82000, + "Directional": false + }] + }, { + "ID": 102, + "SourceStructureID": 54021, + "TargetStructureID": 168, + "Label": "54021-168 via Gap Junction from 115666 -> 54020", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115666, + "TargetID": 54020, + "Directional": false + }] + }, { + "ID": 103, + "SourceStructureID": 168, + "TargetStructureID": 81917, + "Label": "168-81917 via Adherens from 81938 -> 81937", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81938, + "TargetID": 81937, + "Directional": false + }] + }, { + "ID": 104, + "SourceStructureID": 168, + "TargetStructureID": 81917, + "Label": "168-81917 via Gap Junction from 81933 -> 81934, 81936 -> 81935", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 81933, + "TargetID": 81934, + "Directional": false + }, { + "SourceID": 81936, + "TargetID": 81935, + "Directional": false + }] + }, { + "ID": 105, + "SourceStructureID": 168, + "TargetStructureID": 81924, + "Label": "168-81924 via Unknown from 81959 -> 81960", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81959, + "TargetID": 81960, + "Directional": false + }] + }, { + "ID": 106, + "SourceStructureID": 168, + "TargetStructureID": 82018, + "Label": "168-82018 via Adherens from 82020 -> 82019", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82020, + "TargetID": 82019, + "Directional": false + }] + }, { + "ID": 107, + "SourceStructureID": 91178, + "TargetStructureID": 168, + "Label": "91178-168 via Adherens from 92608 -> 92609", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92608, + "TargetID": 92609, + "Directional": false + }] + }, { + "ID": 108, + "SourceStructureID": 168, + "TargetStructureID": 91593, + "Label": "168-91593 via Adherens from 92592 -> 92591", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92592, + "TargetID": 92591, + "Directional": false + }] + }, { + "ID": 109, + "SourceStructureID": 91742, + "TargetStructureID": 168, + "Label": "91742-168 via Adherens from 92772 -> 92771", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92772, + "TargetID": 92771, + "Directional": false + }] + }, { + "ID": 110, + "SourceStructureID": 168, + "TargetStructureID": 92530, + "Label": "168-92530 via Unknown from 92529 -> 92531", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92529, + "TargetID": 92531, + "Directional": false + }] + }, { + "ID": 111, + "SourceStructureID": 92734, + "TargetStructureID": 168, + "Label": "92734-168 via Adherens from 92735 -> 92733", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92735, + "TargetID": 92733, + "Directional": false + }] + }, { + "ID": 112, + "SourceStructureID": 92780, + "TargetStructureID": 168, + "Label": "92780-168 via Unknown from 92781 -> 92779", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92781, + "TargetID": 92779, + "Directional": false + }] + }, { + "ID": 113, + "SourceStructureID": 92789, + "TargetStructureID": 168, + "Label": "92789-168 via Gap Junction from 92790 -> 92788", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92790, + "TargetID": 92788, + "Directional": false + }] + }, { + "ID": 114, + "SourceStructureID": 168, + "TargetStructureID": 93065, + "Label": "168-93065 via Unknown from 93064 -> 93066", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93064, + "TargetID": 93066, + "Directional": false + }] + }, { + "ID": 115, + "SourceStructureID": 170, + "TargetStructureID": 170, + "Label": "170-170 via Adherens from 92499 -> 92500", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92499, + "TargetID": 92500, + "Directional": false + }] + }, { + "ID": 116, + "SourceStructureID": 170, + "TargetStructureID": 170, + "Label": "170-170 via Gap Junction from 1306 -> 89715, 89214 -> 1354, 90300 -> 90301, 90321 -> 90320, 90611 -> 90612, 134000 -> 134001", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 1306, + "TargetID": 89715, + "Directional": false + }, { + "SourceID": 89214, + "TargetID": 1354, + "Directional": false + }, { + "SourceID": 90300, + "TargetID": 90301, + "Directional": false + }, { + "SourceID": 90321, + "TargetID": 90320, + "Directional": false + }, { + "SourceID": 90611, + "TargetID": 90612, + "Directional": false + }, { + "SourceID": 134000, + "TargetID": 134001, + "Directional": false + }] + }, { + "ID": 117, + "SourceStructureID": 170, + "TargetStructureID": 324, + "Label": "170-324 via Adherens from 135518 -> 135517", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135518, + "TargetID": 135517, + "Directional": false + }] + }, { + "ID": 118, + "SourceStructureID": 324, + "TargetStructureID": 170, + "Label": "324-170 via Gap Junction from 16014 -> 15994, 30752 -> 10789, 43318 -> 43317", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16014, + "TargetID": 15994, + "Directional": false + }, { + "SourceID": 30752, + "TargetID": 10789, + "Directional": false + }, { + "SourceID": 43318, + "TargetID": 43317, + "Directional": false + }] + }, { + "ID": 119, + "SourceStructureID": 330, + "TargetStructureID": 170, + "Label": "330-170 via Gap Junction from 38575 -> 89027, 89211 -> 89212", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38575, + "TargetID": 89027, + "Directional": false + }, { + "SourceID": 89211, + "TargetID": 89212, + "Directional": false + }] + }, { + "ID": 120, + "SourceStructureID": 364, + "TargetStructureID": 170, + "Label": "364-170 via Gap Junction from 89189 -> 89188, 90541 -> 90542, 92473 -> 89395, 133998 -> 133999", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89189, + "TargetID": 89188, + "Directional": false + }, { + "SourceID": 90541, + "TargetID": 90542, + "Directional": false + }, { + "SourceID": 92473, + "TargetID": 89395, + "Directional": false + }, { + "SourceID": 133998, + "TargetID": 133999, + "Directional": false + }] + }, { + "ID": 121, + "SourceStructureID": 366, + "TargetStructureID": 170, + "Label": "366-170 via Touch from 135522 -> 135521", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 135522, + "TargetID": 135521, + "Directional": false + }] + }, { + "ID": 122, + "SourceStructureID": 170, + "TargetStructureID": 428, + "Label": "170-428 via Touch from 90456 -> 90457", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 90456, + "TargetID": 90457, + "Directional": false + }] + }, { + "ID": 123, + "SourceStructureID": 476, + "TargetStructureID": 170, + "Label": "476-170 via Gap Junction from 14970 -> 15998, 15996 -> 14972", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14970, + "TargetID": 15998, + "Directional": false + }, { + "SourceID": 15996, + "TargetID": 14972, + "Directional": false + }] + }, { + "ID": 124, + "SourceStructureID": 170, + "TargetStructureID": 595, + "Label": "170-595 via Adherens from 88342 -> 88341, 88509 -> 88508, 88531 -> 88532", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88342, + "TargetID": 88341, + "Directional": false + }, { + "SourceID": 88509, + "TargetID": 88508, + "Directional": false + }, { + "SourceID": 88531, + "TargetID": 88532, + "Directional": false + }] + }, { + "ID": 125, + "SourceStructureID": 595, + "TargetStructureID": 170, + "Label": "595-170 via Gap Junction from 46640 -> 1195, 47919 -> 47804, 89084 -> 1249, 92687 -> 92688, 133939 -> 133940, 133942 -> 133941", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46640, + "TargetID": 1195, + "Directional": false + }, { + "SourceID": 47919, + "TargetID": 47804, + "Directional": false + }, { + "SourceID": 89084, + "TargetID": 1249, + "Directional": false + }, { + "SourceID": 92687, + "TargetID": 92688, + "Directional": false + }, { + "SourceID": 133939, + "TargetID": 133940, + "Directional": false + }, { + "SourceID": 133942, + "TargetID": 133941, + "Directional": false + }] + }, { + "ID": 126, + "SourceStructureID": 606, + "TargetStructureID": 170, + "Label": "606-170 via Adherens from 47809 -> 47808, 53196 -> 53197, 53363 -> 90268, 53367 -> 53368", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 47809, + "TargetID": 47808, + "Directional": false + }, { + "SourceID": 53196, + "TargetID": 53197, + "Directional": false + }, { + "SourceID": 53363, + "TargetID": 90268, + "Directional": false + }, { + "SourceID": 53367, + "TargetID": 53368, + "Directional": false + }] + }, { + "ID": 127, + "SourceStructureID": 170, + "TargetStructureID": 606, + "Label": "170-606 via Unknown from 133908 -> 133909", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133908, + "TargetID": 133909, + "Directional": false + }] + }, { + "ID": 128, + "SourceStructureID": 170, + "TargetStructureID": 3116, + "Label": "170-3116 via Adherens from 83178 -> 46568, 89673 -> 89674, 90267 -> 90266, 90293 -> 90291, 90295 -> 90294, 90434 -> 90433", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83178, + "TargetID": 46568, + "Directional": false + }, { + "SourceID": 89673, + "TargetID": 89674, + "Directional": false + }, { + "SourceID": 90267, + "TargetID": 90266, + "Directional": false + }, { + "SourceID": 90293, + "TargetID": 90291, + "Directional": false + }, { + "SourceID": 90295, + "TargetID": 90294, + "Directional": false + }, { + "SourceID": 90434, + "TargetID": 90433, + "Directional": false + }] + }, { + "ID": 129, + "SourceStructureID": 3116, + "TargetStructureID": 170, + "Label": "3116-170 via Gap Junction from 43553 -> 43551, 43558 -> 1307, 46553 -> 1387, 89722 -> 89723, 90264 -> 90263, 90265 -> 90262, 90405 -> 90406, 134002 -> 134003", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 43553, + "TargetID": 43551, + "Directional": false + }, { + "SourceID": 43558, + "TargetID": 1307, + "Directional": false + }, { + "SourceID": 46553, + "TargetID": 1387, + "Directional": false + }, { + "SourceID": 89722, + "TargetID": 89723, + "Directional": false + }, { + "SourceID": 90264, + "TargetID": 90263, + "Directional": false + }, { + "SourceID": 90265, + "TargetID": 90262, + "Directional": false + }, { + "SourceID": 90405, + "TargetID": 90406, + "Directional": false + }, { + "SourceID": 134002, + "TargetID": 134003, + "Directional": false + }] + }, { + "ID": 130, + "SourceStructureID": 3257, + "TargetStructureID": 170, + "Label": "3257-170 via Gap Junction from 86963 -> 1114", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 86963, + "TargetID": 1114, + "Directional": false + }] + }, { + "ID": 131, + "SourceStructureID": 170, + "TargetStructureID": 4569, + "Label": "170-4569 via Gap Junction from 43552 -> 52519, 90486 -> 90485", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 43552, + "TargetID": 52519, + "Directional": false + }, { + "SourceID": 90486, + "TargetID": 90485, + "Directional": false + }] + }, { + "ID": 132, + "SourceStructureID": 170, + "TargetStructureID": 5481, + "Label": "170-5481 via Adherens from 90624 -> 90625", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90624, + "TargetID": 90625, + "Directional": false + }] + }, { + "ID": 133, + "SourceStructureID": 170, + "TargetStructureID": 5530, + "Label": "170-5530 via Adherens from 135540 -> 135539, 135542 -> 135541", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135540, + "TargetID": 135539, + "Directional": false + }, { + "SourceID": 135542, + "TargetID": 135541, + "Directional": false + }] + }, { + "ID": 134, + "SourceStructureID": 5530, + "TargetStructureID": 170, + "Label": "5530-170 via Gap Junction from 45398 -> 45397, 47934 -> 47256, 74897 -> 74754, 75496 -> 82529, 76746 -> 76745, 82374 -> 75528, 82484 -> 82485", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45398, + "TargetID": 45397, + "Directional": false + }, { + "SourceID": 47934, + "TargetID": 47256, + "Directional": false + }, { + "SourceID": 74897, + "TargetID": 74754, + "Directional": false + }, { + "SourceID": 75496, + "TargetID": 82529, + "Directional": false + }, { + "SourceID": 76746, + "TargetID": 76745, + "Directional": false + }, { + "SourceID": 82374, + "TargetID": 75528, + "Directional": false + }, { + "SourceID": 82484, + "TargetID": 82485, + "Directional": false + }] + }, { + "ID": 135, + "SourceStructureID": 7564, + "TargetStructureID": 170, + "Label": "7564-170 via Adherens from 135544 -> 135545", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135544, + "TargetID": 135545, + "Directional": false + }] + }, { + "ID": 136, + "SourceStructureID": 7564, + "TargetStructureID": 170, + "Label": "7564-170 via Gap Junction from 82482 -> 82483, 89208 -> 89209, 89751 -> 89752, 90072 -> 90073, 92488 -> 92487, 92491 -> 92490", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 82482, + "TargetID": 82483, + "Directional": false + }, { + "SourceID": 89208, + "TargetID": 89209, + "Directional": false + }, { + "SourceID": 89751, + "TargetID": 89752, + "Directional": false + }, { + "SourceID": 90072, + "TargetID": 90073, + "Directional": false + }, { + "SourceID": 92488, + "TargetID": 92487, + "Directional": false + }, { + "SourceID": 92491, + "TargetID": 92490, + "Directional": false + }] + }, { + "ID": 137, + "SourceStructureID": 9769, + "TargetStructureID": 170, + "Label": "9769-170 via Unknown from 88483 -> 88482, 88755 -> 88754, 89731 -> 89732, 89733 -> 89734", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88483, + "TargetID": 88482, + "Directional": false + }, { + "SourceID": 88755, + "TargetID": 88754, + "Directional": false + }, { + "SourceID": 89731, + "TargetID": 89732, + "Directional": false + }, { + "SourceID": 89733, + "TargetID": 89734, + "Directional": false + }] + }, { + "ID": 138, + "SourceStructureID": 32920, + "TargetStructureID": 170, + "Label": "32920-170 via Adherens from 88456 -> 87127", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88456, + "TargetID": 87127, + "Directional": false + }] + }, { + "ID": 139, + "SourceStructureID": 170, + "TargetStructureID": 35653, + "Label": "170-35653 via Adherens from 88363 -> 88364", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88363, + "TargetID": 88364, + "Directional": false + }] + }, { + "ID": 140, + "SourceStructureID": 38605, + "TargetStructureID": 170, + "Label": "38605-170 via Unknown from 89468 -> 89467", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89468, + "TargetID": 89467, + "Directional": false + }] + }, { + "ID": 141, + "SourceStructureID": 40439, + "TargetStructureID": 170, + "Label": "40439-170 via Unknown from 88389 -> 88387", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88389, + "TargetID": 88387, + "Directional": false + }] + }, { + "ID": 142, + "SourceStructureID": 71882, + "TargetStructureID": 170, + "Label": "71882-170 via Unknown from 90417 -> 89197", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90417, + "TargetID": 89197, + "Directional": false + }] + }, { + "ID": 143, + "SourceStructureID": 86315, + "TargetStructureID": 170, + "Label": "86315-170 via Adherens from 116720 -> 88520", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116720, + "TargetID": 88520, + "Directional": false + }] + }, { + "ID": 144, + "SourceStructureID": 88329, + "TargetStructureID": 170, + "Label": "88329-170 via Adherens from 88330 -> 88331", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88330, + "TargetID": 88331, + "Directional": false + }] + }, { + "ID": 145, + "SourceStructureID": 170, + "TargetStructureID": 88343, + "Label": "170-88343 via Unknown from 88357 -> 88358", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88357, + "TargetID": 88358, + "Directional": false + }] + }, { + "ID": 146, + "SourceStructureID": 170, + "TargetStructureID": 88424, + "Label": "170-88424 via Adherens from 88441 -> 88442", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88441, + "TargetID": 88442, + "Directional": false + }] + }, { + "ID": 147, + "SourceStructureID": 170, + "TargetStructureID": 88446, + "Label": "170-88446 via Unknown from 88448 -> 88449", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88448, + "TargetID": 88449, + "Directional": false + }] + }, { + "ID": 148, + "SourceStructureID": 88470, + "TargetStructureID": 170, + "Label": "88470-170 via Unknown from 88471 -> 88472", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88471, + "TargetID": 88472, + "Directional": false + }] + }, { + "ID": 149, + "SourceStructureID": 88546, + "TargetStructureID": 170, + "Label": "88546-170 via Adherens from 88548 -> 88549", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88548, + "TargetID": 88549, + "Directional": false + }] + }, { + "ID": 150, + "SourceStructureID": 170, + "TargetStructureID": 88550, + "Label": "170-88550 via Unknown from 88772 -> 88771", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88772, + "TargetID": 88771, + "Directional": false + }] + }, { + "ID": 151, + "SourceStructureID": 88689, + "TargetStructureID": 170, + "Label": "88689-170 via Unknown from 88701 -> 88700", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88701, + "TargetID": 88700, + "Directional": false + }] + }, { + "ID": 152, + "SourceStructureID": 170, + "TargetStructureID": 88692, + "Label": "170-88692 via Adherens from 88699 -> 88698", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88699, + "TargetID": 88698, + "Directional": false + }] + }, { + "ID": 153, + "SourceStructureID": 170, + "TargetStructureID": 88709, + "Label": "170-88709 via Adherens from 88708 -> 88710", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88708, + "TargetID": 88710, + "Directional": false + }] + }, { + "ID": 154, + "SourceStructureID": 170, + "TargetStructureID": 88711, + "Label": "170-88711 via Adherens from 88713 -> 88714", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88713, + "TargetID": 88714, + "Directional": false + }] + }, { + "ID": 155, + "SourceStructureID": 88733, + "TargetStructureID": 170, + "Label": "88733-170 via Adherens from 88734 -> 88735", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88734, + "TargetID": 88735, + "Directional": false + }] + }, { + "ID": 156, + "SourceStructureID": 170, + "TargetStructureID": 88736, + "Label": "170-88736 via Unknown from 88746 -> 88745", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88746, + "TargetID": 88745, + "Directional": false + }] + }, { + "ID": 157, + "SourceStructureID": 170, + "TargetStructureID": 88947, + "Label": "170-88947 via Unknown from 88953 -> 88952", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88953, + "TargetID": 88952, + "Directional": false + }] + }, { + "ID": 158, + "SourceStructureID": 88986, + "TargetStructureID": 170, + "Label": "88986-170 via Unknown from 88994 -> 88995", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88994, + "TargetID": 88995, + "Directional": false + }] + }, { + "ID": 159, + "SourceStructureID": 88996, + "TargetStructureID": 170, + "Label": "88996-170 via Adherens from 89003 -> 89004", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89003, + "TargetID": 89004, + "Directional": false + }] + }, { + "ID": 160, + "SourceStructureID": 89012, + "TargetStructureID": 170, + "Label": "89012-170 via Adherens from 89014 -> 89013", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89014, + "TargetID": 89013, + "Directional": false + }] + }, { + "ID": 161, + "SourceStructureID": 89018, + "TargetStructureID": 170, + "Label": "89018-170 via Unknown from 89023 -> 89022", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89023, + "TargetID": 89022, + "Directional": false + }] + }, { + "ID": 162, + "SourceStructureID": 170, + "TargetStructureID": 89073, + "Label": "170-89073 via Unknown from 89070 -> 89077, 89080 -> 89081", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89070, + "TargetID": 89077, + "Directional": false + }, { + "SourceID": 89080, + "TargetID": 89081, + "Directional": false + }] + }, { + "ID": 163, + "SourceStructureID": 89086, + "TargetStructureID": 170, + "Label": "89086-170 via Unknown from 89174 -> 89172", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89174, + "TargetID": 89172, + "Directional": false + }] + }, { + "ID": 164, + "SourceStructureID": 170, + "TargetStructureID": 89181, + "Label": "170-89181 via Adherens from 89183 -> 89182", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89183, + "TargetID": 89182, + "Directional": false + }] + }, { + "ID": 165, + "SourceStructureID": 170, + "TargetStructureID": 89190, + "Label": "170-89190 via Adherens from 89192 -> 89191", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89192, + "TargetID": 89191, + "Directional": false + }] + }, { + "ID": 166, + "SourceStructureID": 89199, + "TargetStructureID": 170, + "Label": "89199-170 via Adherens from 135537 -> 135536", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135537, + "TargetID": 135536, + "Directional": false + }] + }, { + "ID": 167, + "SourceStructureID": 170, + "TargetStructureID": 89225, + "Label": "170-89225 via Postsynapse from 89226 -> 89227", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 89226, + "TargetID": 89227, + "Directional": false + }] + }, { + "ID": 168, + "SourceStructureID": 170, + "TargetStructureID": 89228, + "Label": "170-89228 via Unknown from 89230 -> 89229", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89230, + "TargetID": 89229, + "Directional": false + }] + }, { + "ID": 169, + "SourceStructureID": 89232, + "TargetStructureID": 170, + "Label": "89232-170 via Unknown from 89234 -> 89235", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89234, + "TargetID": 89235, + "Directional": false + }] + }, { + "ID": 170, + "SourceStructureID": 170, + "TargetStructureID": 89359, + "Label": "170-89359 via Adherens from 89364 -> 89363, 89365 -> 89366", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89364, + "TargetID": 89363, + "Directional": false + }, { + "SourceID": 89365, + "TargetID": 89366, + "Directional": false + }] + }, { + "ID": 171, + "SourceStructureID": 170, + "TargetStructureID": 89377, + "Label": "170-89377 via Adherens from 89380 -> 89381", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89380, + "TargetID": 89381, + "Directional": false + }] + }, { + "ID": 172, + "SourceStructureID": 170, + "TargetStructureID": 89457, + "Label": "170-89457 via Adherens from 89458 -> 89459", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89458, + "TargetID": 89459, + "Directional": false + }] + }, { + "ID": 173, + "SourceStructureID": 89460, + "TargetStructureID": 170, + "Label": "89460-170 via Adherens from 89461 -> 89462", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89461, + "TargetID": 89462, + "Directional": false + }] + }, { + "ID": 174, + "SourceStructureID": 170, + "TargetStructureID": 89501, + "Label": "170-89501 via Adherens from 89500 -> 89502, 89510 -> 89509", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89500, + "TargetID": 89502, + "Directional": false + }, { + "SourceID": 89510, + "TargetID": 89509, + "Directional": false + }] + }, { + "ID": 175, + "SourceStructureID": 89503, + "TargetStructureID": 170, + "Label": "89503-170 via Adherens from 89504 -> 88718", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89504, + "TargetID": 88718, + "Directional": false + }] + }, { + "ID": 176, + "SourceStructureID": 170, + "TargetStructureID": 89511, + "Label": "170-89511 via Adherens from 89512 -> 89513", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89512, + "TargetID": 89513, + "Directional": false + }] + }, { + "ID": 177, + "SourceStructureID": 89516, + "TargetStructureID": 170, + "Label": "89516-170 via Unknown from 89517 -> 1258", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89517, + "TargetID": 1258, + "Directional": false + }] + }, { + "ID": 178, + "SourceStructureID": 89682, + "TargetStructureID": 170, + "Label": "89682-170 via Unknown from 89684 -> 89685", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89684, + "TargetID": 89685, + "Directional": false + }] + }, { + "ID": 179, + "SourceStructureID": 170, + "TargetStructureID": 89713, + "Label": "170-89713 via Unknown from 92474 -> 92475", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92474, + "TargetID": 92475, + "Directional": false + }] + }, { + "ID": 180, + "SourceStructureID": 170, + "TargetStructureID": 89760, + "Label": "170-89760 via Unknown from 90063 -> 90064", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90063, + "TargetID": 90064, + "Directional": false + }] + }, { + "ID": 181, + "SourceStructureID": 170, + "TargetStructureID": 89877, + "Label": "170-89877 via Adherens from 89878 -> 89879", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89878, + "TargetID": 89879, + "Directional": false + }] + }, { + "ID": 182, + "SourceStructureID": 170, + "TargetStructureID": 89915, + "Label": "170-89915 via Unknown from 89916 -> 89917", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89916, + "TargetID": 89917, + "Directional": false + }] + }, { + "ID": 183, + "SourceStructureID": 89962, + "TargetStructureID": 170, + "Label": "89962-170 via Unknown from 89963 -> 89964", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89963, + "TargetID": 89964, + "Directional": false + }] + }, { + "ID": 184, + "SourceStructureID": 89970, + "TargetStructureID": 170, + "Label": "89970-170 via Unknown from 89971 -> 89972", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89971, + "TargetID": 89972, + "Directional": false + }] + }, { + "ID": 185, + "SourceStructureID": 170, + "TargetStructureID": 89985, + "Label": "170-89985 via Adherens from 90001 -> 90002", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90001, + "TargetID": 90002, + "Directional": false + }] + }, { + "ID": 186, + "SourceStructureID": 170, + "TargetStructureID": 90004, + "Label": "170-90004 via Adherens from 90003 -> 90010", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90003, + "TargetID": 90010, + "Directional": false + }] + }, { + "ID": 187, + "SourceStructureID": 90013, + "TargetStructureID": 170, + "Label": "90013-170 via Unknown from 90015 -> 90014", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90015, + "TargetID": 90014, + "Directional": false + }] + }, { + "ID": 188, + "SourceStructureID": 170, + "TargetStructureID": 90047, + "Label": "170-90047 via Adherens from 90069 -> 90070", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90069, + "TargetID": 90070, + "Directional": false + }] + }, { + "ID": 189, + "SourceStructureID": 170, + "TargetStructureID": 90053, + "Label": "170-90053 via Unknown from 90054 -> 90055", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90054, + "TargetID": 90055, + "Directional": false + }] + }, { + "ID": 190, + "SourceStructureID": 170, + "TargetStructureID": 90075, + "Label": "170-90075 via Unknown from 90074 -> 90076", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90074, + "TargetID": 90076, + "Directional": false + }] + }, { + "ID": 191, + "SourceStructureID": 170, + "TargetStructureID": 90248, + "Label": "170-90248 via Adherens from 90250 -> 90252", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90250, + "TargetID": 90252, + "Directional": false + }] + }, { + "ID": 192, + "SourceStructureID": 170, + "TargetStructureID": 90254, + "Label": "170-90254 via Unknown from 90256 -> 90255", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90256, + "TargetID": 90255, + "Directional": false + }] + }, { + "ID": 193, + "SourceStructureID": 90280, + "TargetStructureID": 170, + "Label": "90280-170 via Unknown from 90281 -> 90282", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90281, + "TargetID": 90282, + "Directional": false + }] + }, { + "ID": 194, + "SourceStructureID": 170, + "TargetStructureID": 90312, + "Label": "170-90312 via BC Conventional Synapse from 92476 -> 90316", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 92476, + "TargetID": 90316, + "Directional": false + }] + }, { + "ID": 195, + "SourceStructureID": 170, + "TargetStructureID": 90339, + "Label": "170-90339 via Adherens from 90338 -> 90344", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90338, + "TargetID": 90344, + "Directional": false + }] + }, { + "ID": 196, + "SourceStructureID": 170, + "TargetStructureID": 90373, + "Label": "170-90373 via Unknown from 90377 -> 90375", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90377, + "TargetID": 90375, + "Directional": false + }] + }, { + "ID": 197, + "SourceStructureID": 90381, + "TargetStructureID": 170, + "Label": "90381-170 via Adherens from 90386 -> 90387", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90386, + "TargetID": 90387, + "Directional": false + }] + }, { + "ID": 198, + "SourceStructureID": 90463, + "TargetStructureID": 170, + "Label": "90463-170 via Adherens from 90465 -> 90464", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90465, + "TargetID": 90464, + "Directional": false + }] + }, { + "ID": 199, + "SourceStructureID": 170, + "TargetStructureID": 90471, + "Label": "170-90471 via Unknown from 90472 -> 90473", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90472, + "TargetID": 90473, + "Directional": false + }] + }, { + "ID": 200, + "SourceStructureID": 90474, + "TargetStructureID": 170, + "Label": "90474-170 via Adherens from 90476 -> 90477", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90476, + "TargetID": 90477, + "Directional": false + }] + }, { + "ID": 201, + "SourceStructureID": 90487, + "TargetStructureID": 170, + "Label": "90487-170 via Unknown from 90493 -> 90494", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90493, + "TargetID": 90494, + "Directional": false + }] + }, { + "ID": 202, + "SourceStructureID": 170, + "TargetStructureID": 90488, + "Label": "170-90488 via Unknown from 90538 -> 90539", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90538, + "TargetID": 90539, + "Directional": false + }] + }, { + "ID": 203, + "SourceStructureID": 90561, + "TargetStructureID": 170, + "Label": "90561-170 via Adherens from 90562 -> 90560", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90562, + "TargetID": 90560, + "Directional": false + }] + }, { + "ID": 204, + "SourceStructureID": 170, + "TargetStructureID": 90568, + "Label": "170-90568 via Unknown from 90574 -> 90575", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90574, + "TargetID": 90575, + "Directional": false + }] + }, { + "ID": 205, + "SourceStructureID": 170, + "TargetStructureID": 90582, + "Label": "170-90582 via Adherens from 90581 -> 90583", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90581, + "TargetID": 90583, + "Directional": false + }] + }, { + "ID": 206, + "SourceStructureID": 90585, + "TargetStructureID": 170, + "Label": "90585-170 via Unknown from 90595 -> 90596", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90595, + "TargetID": 90596, + "Directional": false + }] + }, { + "ID": 207, + "SourceStructureID": 92568, + "TargetStructureID": 170, + "Label": "92568-170 via Unknown from 92569 -> 92567", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92569, + "TargetID": 92567, + "Directional": false + }] + }, { + "ID": 208, + "SourceStructureID": 171, + "TargetStructureID": 171, + "Label": "171-171 via Gap Junction from 94458 -> 94459", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94458, + "TargetID": 94459, + "Directional": false + }] + }, { + "ID": 209, + "SourceStructureID": 171, + "TargetStructureID": 171, + "Label": "171-171 via Unknown from 94449 -> 94448", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94449, + "TargetID": 94448, + "Directional": false + }] + }, { + "ID": 210, + "SourceStructureID": 172, + "TargetStructureID": 172, + "Label": "172-172 via Gap Junction from 84542 -> 84543", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 84542, + "TargetID": 84543, + "Directional": false + }] + }, { + "ID": 211, + "SourceStructureID": 173, + "TargetStructureID": 176, + "Label": "173-176 via Unknown from 128239 -> 128240", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128239, + "TargetID": 128240, + "Directional": false + }] + }, { + "ID": 212, + "SourceStructureID": 173, + "TargetStructureID": 12099, + "Label": "173-12099 via Gap Junction from 12097 -> 12100", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 12097, + "TargetID": 12100, + "Directional": false + }] + }, { + "ID": 213, + "SourceStructureID": 41159, + "TargetStructureID": 173, + "Label": "41159-173 via Gap Junction from 41165 -> 12006", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 41165, + "TargetID": 12006, + "Directional": false + }] + }, { + "ID": 214, + "SourceStructureID": 60071, + "TargetStructureID": 173, + "Label": "60071-173 via Adherens from 60073 -> 60070", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60073, + "TargetID": 60070, + "Directional": false + }] + }, { + "ID": 215, + "SourceStructureID": 60071, + "TargetStructureID": 173, + "Label": "60071-173 via Gap Junction from 60072 -> 60069", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60072, + "TargetID": 60069, + "Directional": false + }] + }, { + "ID": 216, + "SourceStructureID": 173, + "TargetStructureID": 88159, + "Label": "173-88159 via Gap Junction from 88168 -> 88167, 88182 -> 88181", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88168, + "TargetID": 88167, + "Directional": false + }, { + "SourceID": 88182, + "TargetID": 88181, + "Directional": false + }] + }, { + "ID": 217, + "SourceStructureID": 116475, + "TargetStructureID": 173, + "Label": "116475-173 via Gap Junction from 116480 -> 12003", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116480, + "TargetID": 12003, + "Directional": false + }] + }, { + "ID": 218, + "SourceStructureID": 122242, + "TargetStructureID": 173, + "Label": "122242-173 via Gap Junction from 122246 -> 122245", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122246, + "TargetID": 122245, + "Directional": false + }] + }, { + "ID": 219, + "SourceStructureID": 595, + "TargetStructureID": 176, + "Label": "595-176 via Gap Junction from 46663 -> 46664, 119651 -> 119652, 128286 -> 128287", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46663, + "TargetID": 46664, + "Directional": false + }, { + "SourceID": 119651, + "TargetID": 119652, + "Directional": false + }, { + "SourceID": 128286, + "TargetID": 128287, + "Directional": false + }] + }, { + "ID": 220, + "SourceStructureID": 176, + "TargetStructureID": 4877, + "Label": "176-4877 via Adherens from 91306 -> 91305, 128071 -> 128072, 128670 -> 128669, 128737 -> 128736", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91306, + "TargetID": 91305, + "Directional": false + }, { + "SourceID": 128071, + "TargetID": 128072, + "Directional": false + }, { + "SourceID": 128670, + "TargetID": 128669, + "Directional": false + }, { + "SourceID": 128737, + "TargetID": 128736, + "Directional": false + }] + }, { + "ID": 221, + "SourceStructureID": 176, + "TargetStructureID": 4877, + "Label": "176-4877 via Gap Junction from 62753 -> 62752, 91294 -> 91295, 91298 -> 91296, 91337 -> 91336, 124694 -> 124693, 125451 -> 125450", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 62753, + "TargetID": 62752, + "Directional": false + }, { + "SourceID": 91294, + "TargetID": 91295, + "Directional": false + }, { + "SourceID": 91298, + "TargetID": 91296, + "Directional": false + }, { + "SourceID": 91337, + "TargetID": 91336, + "Directional": false + }, { + "SourceID": 124694, + "TargetID": 124693, + "Directional": false + }, { + "SourceID": 125451, + "TargetID": 125450, + "Directional": false + }] + }, { + "ID": 222, + "SourceStructureID": 176, + "TargetStructureID": 5442, + "Label": "176-5442 via Adherens from 124631 -> 124632", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124631, + "TargetID": 124632, + "Directional": false + }] + }, { + "ID": 223, + "SourceStructureID": 5442, + "TargetStructureID": 176, + "Label": "5442-176 via Unknown from 128231 -> 128230", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128231, + "TargetID": 128230, + "Directional": false + }] + }, { + "ID": 224, + "SourceStructureID": 176, + "TargetStructureID": 5481, + "Label": "176-5481 via Adherens from 125367 -> 125368, 125411 -> 125410", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125367, + "TargetID": 125368, + "Directional": false + }, { + "SourceID": 125411, + "TargetID": 125410, + "Directional": false + }] + }, { + "ID": 225, + "SourceStructureID": 176, + "TargetStructureID": 5482, + "Label": "176-5482 via Unknown from 128005 -> 128004", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128005, + "TargetID": 128004, + "Directional": false + }] + }, { + "ID": 226, + "SourceStructureID": 176, + "TargetStructureID": 5530, + "Label": "176-5530 via Gap Junction from 119655 -> 119654, 124562 -> 124563, 124870 -> 124871, 124892 -> 124891, 128281 -> 128280, 135583 -> 135582", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119655, + "TargetID": 119654, + "Directional": false + }, { + "SourceID": 124562, + "TargetID": 124563, + "Directional": false + }, { + "SourceID": 124870, + "TargetID": 124871, + "Directional": false + }, { + "SourceID": 124892, + "TargetID": 124891, + "Directional": false + }, { + "SourceID": 128281, + "TargetID": 128280, + "Directional": false + }, { + "SourceID": 135583, + "TargetID": 135582, + "Directional": false + }] + }, { + "ID": 227, + "SourceStructureID": 176, + "TargetStructureID": 5531, + "Label": "176-5531 via Adherens from 125430 -> 125431, 125441 -> 125442, 128262 -> 128263, 128667 -> 128668, 128707 -> 128706, 128726 -> 128727, 147468 -> 147469", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125430, + "TargetID": 125431, + "Directional": false + }, { + "SourceID": 125441, + "TargetID": 125442, + "Directional": false + }, { + "SourceID": 128262, + "TargetID": 128263, + "Directional": false + }, { + "SourceID": 128667, + "TargetID": 128668, + "Directional": false + }, { + "SourceID": 128707, + "TargetID": 128706, + "Directional": false + }, { + "SourceID": 128726, + "TargetID": 128727, + "Directional": false + }, { + "SourceID": 147468, + "TargetID": 147469, + "Directional": false + }] + }, { + "ID": 228, + "SourceStructureID": 176, + "TargetStructureID": 5531, + "Label": "176-5531 via Gap Junction from 56488 -> 54567, 62930 -> 62931, 91661 -> 91660, 91672 -> 91670, 91686 -> 91688, 91697 -> 91696, 91706 -> 91707, 91717 -> 91718, 91877 -> 91876, 91911 -> 91909, 93441 -> 93440, 106919 -> 106920, 119678 -> 119679, 125388 -> 125387, 125818 -> 125817, 128333 -> 128334, 128438 -> 128437, 128445 -> 128444, 128665 -> 128666, 128678 -> 128679, 147467 -> 147466, 147471 -> 147470", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56488, + "TargetID": 54567, + "Directional": false + }, { + "SourceID": 62930, + "TargetID": 62931, + "Directional": false + }, { + "SourceID": 91661, + "TargetID": 91660, + "Directional": false + }, { + "SourceID": 91672, + "TargetID": 91670, + "Directional": false + }, { + "SourceID": 91686, + "TargetID": 91688, + "Directional": false + }, { + "SourceID": 91697, + "TargetID": 91696, + "Directional": false + }, { + "SourceID": 91706, + "TargetID": 91707, + "Directional": false + }, { + "SourceID": 91717, + "TargetID": 91718, + "Directional": false + }, { + "SourceID": 91877, + "TargetID": 91876, + "Directional": false + }, { + "SourceID": 91911, + "TargetID": 91909, + "Directional": false + }, { + "SourceID": 93441, + "TargetID": 93440, + "Directional": false + }, { + "SourceID": 106919, + "TargetID": 106920, + "Directional": false + }, { + "SourceID": 119678, + "TargetID": 119679, + "Directional": false + }, { + "SourceID": 125388, + "TargetID": 125387, + "Directional": false + }, { + "SourceID": 125818, + "TargetID": 125817, + "Directional": false + }, { + "SourceID": 128333, + "TargetID": 128334, + "Directional": false + }, { + "SourceID": 128438, + "TargetID": 128437, + "Directional": false + }, { + "SourceID": 128445, + "TargetID": 128444, + "Directional": false + }, { + "SourceID": 128665, + "TargetID": 128666, + "Directional": false + }, { + "SourceID": 128678, + "TargetID": 128679, + "Directional": false + }, { + "SourceID": 147467, + "TargetID": 147466, + "Directional": false + }, { + "SourceID": 147471, + "TargetID": 147470, + "Directional": false + }] + }, { + "ID": 229, + "SourceStructureID": 5531, + "TargetStructureID": 176, + "Label": "5531-176 via Touch from 147945 -> 147946", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 147945, + "TargetID": 147946, + "Directional": false + }] + }, { + "ID": 230, + "SourceStructureID": 5601, + "TargetStructureID": 176, + "Label": "5601-176 via Gap Junction from 128738 -> 125849, 135585 -> 135584", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 128738, + "TargetID": 125849, + "Directional": false + }, { + "SourceID": 135585, + "TargetID": 135584, + "Directional": false + }] + }, { + "ID": 231, + "SourceStructureID": 176, + "TargetStructureID": 5601, + "Label": "176-5601 via Touch from 128740 -> 128741", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 128740, + "TargetID": 128741, + "Directional": false + }] + }, { + "ID": 232, + "SourceStructureID": 5641, + "TargetStructureID": 176, + "Label": "5641-176 via Adherens from 124097 -> 124136", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124097, + "TargetID": 124136, + "Directional": false + }] + }, { + "ID": 233, + "SourceStructureID": 5641, + "TargetStructureID": 176, + "Label": "5641-176 via Gap Junction from 124098 -> 124134", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 124098, + "TargetID": 124134, + "Directional": false + }] + }, { + "ID": 234, + "SourceStructureID": 176, + "TargetStructureID": 5860, + "Label": "176-5860 via Adherens from 92002 -> 92001, 124388 -> 124389, 128251 -> 128250, 128316 -> 128320", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92002, + "TargetID": 92001, + "Directional": false + }, { + "SourceID": 124388, + "TargetID": 124389, + "Directional": false + }, { + "SourceID": 128251, + "TargetID": 128250, + "Directional": false + }, { + "SourceID": 128316, + "TargetID": 128320, + "Directional": false + }] + }, { + "ID": 235, + "SourceStructureID": 5860, + "TargetStructureID": 176, + "Label": "5860-176 via Gap Junction from 20029 -> 20028, 24729 -> 5859, 54989 -> 54991, 77002 -> 6197, 91777 -> 91776, 91886 -> 91885, 92000 -> 54726, 119644 -> 119645, 119657 -> 119656, 119661 -> 6969, 128247 -> 128246, 128299 -> 128300", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 20029, + "TargetID": 20028, + "Directional": false + }, { + "SourceID": 24729, + "TargetID": 5859, + "Directional": false + }, { + "SourceID": 54989, + "TargetID": 54991, + "Directional": false + }, { + "SourceID": 77002, + "TargetID": 6197, + "Directional": false + }, { + "SourceID": 91777, + "TargetID": 91776, + "Directional": false + }, { + "SourceID": 91886, + "TargetID": 91885, + "Directional": false + }, { + "SourceID": 92000, + "TargetID": 54726, + "Directional": false + }, { + "SourceID": 119644, + "TargetID": 119645, + "Directional": false + }, { + "SourceID": 119657, + "TargetID": 119656, + "Directional": false + }, { + "SourceID": 119661, + "TargetID": 6969, + "Directional": false + }, { + "SourceID": 128247, + "TargetID": 128246, + "Directional": false + }, { + "SourceID": 128299, + "TargetID": 128300, + "Directional": false + }] + }, { + "ID": 236, + "SourceStructureID": 176, + "TargetStructureID": 6117, + "Label": "176-6117 via Gap Junction from 58716 -> 58717, 135550 -> 135549", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 58716, + "TargetID": 58717, + "Directional": false + }, { + "SourceID": 135550, + "TargetID": 135549, + "Directional": false + }] + }, { + "ID": 237, + "SourceStructureID": 176, + "TargetStructureID": 6117, + "Label": "176-6117 via Touch from 91854 -> 91853", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 91854, + "TargetID": 91853, + "Directional": false + }] + }, { + "ID": 238, + "SourceStructureID": 6169, + "TargetStructureID": 176, + "Label": "6169-176 via Gap Junction from 35845 -> 35844", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 35845, + "TargetID": 35844, + "Directional": false + }] + }, { + "ID": 239, + "SourceStructureID": 176, + "TargetStructureID": 7113, + "Label": "176-7113 via Adherens from 128095 -> 128094", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128095, + "TargetID": 128094, + "Directional": false + }] + }, { + "ID": 240, + "SourceStructureID": 7113, + "TargetStructureID": 176, + "Label": "7113-176 via Gap Junction from 58657 -> 58656, 58802 -> 58801, 91927 -> 91926, 91977 -> 91975", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 58657, + "TargetID": 58656, + "Directional": false + }, { + "SourceID": 58802, + "TargetID": 58801, + "Directional": false + }, { + "SourceID": 91927, + "TargetID": 91926, + "Directional": false + }, { + "SourceID": 91977, + "TargetID": 91975, + "Directional": false + }] + }, { + "ID": 241, + "SourceStructureID": 11229, + "TargetStructureID": 176, + "Label": "11229-176 via Gap Junction from 15635 -> 128724", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 15635, + "TargetID": 128724, + "Directional": false + }] + }, { + "ID": 242, + "SourceStructureID": 21299, + "TargetStructureID": 176, + "Label": "21299-176 via Adherens from 128292 -> 128291", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128292, + "TargetID": 128291, + "Directional": false + }] + }, { + "ID": 243, + "SourceStructureID": 21299, + "TargetStructureID": 176, + "Label": "21299-176 via Gap Junction from 54956 -> 54955, 91570 -> 91569", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54956, + "TargetID": 54955, + "Directional": false + }, { + "SourceID": 91570, + "TargetID": 91569, + "Directional": false + }] + }, { + "ID": 244, + "SourceStructureID": 176, + "TargetStructureID": 38949, + "Label": "176-38949 via Adherens from 128265 -> 128266", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128265, + "TargetID": 128266, + "Directional": false + }] + }, { + "ID": 245, + "SourceStructureID": 176, + "TargetStructureID": 38949, + "Label": "176-38949 via Unknown from 128272 -> 128273", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128272, + "TargetID": 128273, + "Directional": false + }] + }, { + "ID": 246, + "SourceStructureID": 176, + "TargetStructureID": 44970, + "Label": "176-44970 via Unknown from 124536 -> 128223", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124536, + "TargetID": 128223, + "Directional": false + }] + }, { + "ID": 247, + "SourceStructureID": 54895, + "TargetStructureID": 176, + "Label": "54895-176 via Adherens from 124769 -> 124768", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124769, + "TargetID": 124768, + "Directional": false + }] + }, { + "ID": 248, + "SourceStructureID": 54948, + "TargetStructureID": 176, + "Label": "54948-176 via Adherens from 128290 -> 128289", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128290, + "TargetID": 128289, + "Directional": false + }] + }, { + "ID": 249, + "SourceStructureID": 56802, + "TargetStructureID": 176, + "Label": "56802-176 via Adherens from 128031 -> 128030", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128031, + "TargetID": 128030, + "Directional": false + }] + }, { + "ID": 250, + "SourceStructureID": 56802, + "TargetStructureID": 176, + "Label": "56802-176 via Unknown from 119621 -> 119622, 119623 -> 119624", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 119621, + "TargetID": 119622, + "Directional": false + }, { + "SourceID": 119623, + "TargetID": 119624, + "Directional": false + }] + }, { + "ID": 251, + "SourceStructureID": 176, + "TargetStructureID": 58642, + "Label": "176-58642 via Unknown from 128232 -> 128233", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128232, + "TargetID": 128233, + "Directional": false + }] + }, { + "ID": 252, + "SourceStructureID": 58709, + "TargetStructureID": 176, + "Label": "58709-176 via Adherens from 128221 -> 124551", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128221, + "TargetID": 124551, + "Directional": false + }] + }, { + "ID": 253, + "SourceStructureID": 176, + "TargetStructureID": 80609, + "Label": "176-80609 via Adherens from 124580 -> 124581", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124580, + "TargetID": 124581, + "Directional": false + }] + }, { + "ID": 254, + "SourceStructureID": 82577, + "TargetStructureID": 176, + "Label": "82577-176 via Conventional from 82579 -> 82578", + "Type": "Conventional", + "Directional": false, + "Links": [{ + "SourceID": 82579, + "TargetID": 82578, + "Directional": false + }] + }, { + "ID": 255, + "SourceStructureID": 176, + "TargetStructureID": 82877, + "Label": "176-82877 via Unknown from 128423 -> 128424", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128423, + "TargetID": 128424, + "Directional": false + }] + }, { + "ID": 256, + "SourceStructureID": 176, + "TargetStructureID": 86565, + "Label": "176-86565 via Unknown from 124697 -> 124698", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124697, + "TargetID": 124698, + "Directional": false + }] + }, { + "ID": 257, + "SourceStructureID": 91793, + "TargetStructureID": 176, + "Label": "91793-176 via Unknown from 91794 -> 91792", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91794, + "TargetID": 91792, + "Directional": false + }] + }, { + "ID": 258, + "SourceStructureID": 91832, + "TargetStructureID": 176, + "Label": "91832-176 via Unknown from 91833 -> 91831", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91833, + "TargetID": 91831, + "Directional": false + }] + }, { + "ID": 259, + "SourceStructureID": 176, + "TargetStructureID": 91843, + "Label": "176-91843 via Adherens from 128093 -> 128092", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128093, + "TargetID": 128092, + "Directional": false + }] + }, { + "ID": 260, + "SourceStructureID": 91843, + "TargetStructureID": 176, + "Label": "91843-176 via Unknown from 91844 -> 91842", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91844, + "TargetID": 91842, + "Directional": false + }] + }, { + "ID": 261, + "SourceStructureID": 176, + "TargetStructureID": 91846, + "Label": "176-91846 via Unknown from 91845 -> 91847", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91845, + "TargetID": 91847, + "Directional": false + }] + }, { + "ID": 262, + "SourceStructureID": 176, + "TargetStructureID": 91856, + "Label": "176-91856 via Unknown from 91863 -> 91862, 124718 -> 124719", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91863, + "TargetID": 91862, + "Directional": false + }, { + "SourceID": 124718, + "TargetID": 124719, + "Directional": false + }] + }, { + "ID": 263, + "SourceStructureID": 91867, + "TargetStructureID": 176, + "Label": "91867-176 via Unknown from 128215 -> 128214", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128215, + "TargetID": 128214, + "Directional": false + }] + }, { + "ID": 264, + "SourceStructureID": 91871, + "TargetStructureID": 176, + "Label": "91871-176 via Unknown from 91874 -> 5897", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91874, + "TargetID": 5897, + "Directional": false + }] + }, { + "ID": 265, + "SourceStructureID": 91888, + "TargetStructureID": 176, + "Label": "91888-176 via Unknown from 91889 -> 91887, 124954 -> 124953", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91889, + "TargetID": 91887, + "Directional": false + }, { + "SourceID": 124954, + "TargetID": 124953, + "Directional": false + }] + }, { + "ID": 266, + "SourceStructureID": 91918, + "TargetStructureID": 176, + "Label": "91918-176 via Unknown from 125806 -> 125805", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125806, + "TargetID": 125805, + "Directional": false + }] + }, { + "ID": 267, + "SourceStructureID": 91921, + "TargetStructureID": 176, + "Label": "91921-176 via Unknown from 91922 -> 91736, 128458 -> 128459", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91922, + "TargetID": 91736, + "Directional": false + }, { + "SourceID": 128458, + "TargetID": 128459, + "Directional": false + }] + }, { + "ID": 268, + "SourceStructureID": 91924, + "TargetStructureID": 176, + "Label": "91924-176 via Unknown from 91925 -> 91923", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91925, + "TargetID": 91923, + "Directional": false + }] + }, { + "ID": 269, + "SourceStructureID": 91930, + "TargetStructureID": 176, + "Label": "91930-176 via Adherens from 128676 -> 128675", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128676, + "TargetID": 128675, + "Directional": false + }] + }, { + "ID": 270, + "SourceStructureID": 91930, + "TargetStructureID": 176, + "Label": "91930-176 via Unknown from 91931 -> 91929", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91931, + "TargetID": 91929, + "Directional": false + }] + }, { + "ID": 271, + "SourceStructureID": 91959, + "TargetStructureID": 176, + "Label": "91959-176 via Adherens from 125810 -> 125811", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125810, + "TargetID": 125811, + "Directional": false + }] + }, { + "ID": 272, + "SourceStructureID": 91990, + "TargetStructureID": 176, + "Label": "91990-176 via Unknown from 91991 -> 91989", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91991, + "TargetID": 91989, + "Directional": false + }] + }, { + "ID": 273, + "SourceStructureID": 91994, + "TargetStructureID": 176, + "Label": "91994-176 via Unknown from 91995 -> 91993", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91995, + "TargetID": 91993, + "Directional": false + }] + }, { + "ID": 274, + "SourceStructureID": 93437, + "TargetStructureID": 176, + "Label": "93437-176 via Unknown from 124938 -> 124937", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124938, + "TargetID": 124937, + "Directional": false + }] + }, { + "ID": 275, + "SourceStructureID": 107476, + "TargetStructureID": 176, + "Label": "107476-176 via Adherens from 128454 -> 128453", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128454, + "TargetID": 128453, + "Directional": false + }] + }, { + "ID": 276, + "SourceStructureID": 107483, + "TargetStructureID": 176, + "Label": "107483-176 via Adherens from 125395 -> 125394", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125395, + "TargetID": 125394, + "Directional": false + }] + }, { + "ID": 277, + "SourceStructureID": 176, + "TargetStructureID": 107587, + "Label": "176-107587 via Adherens from 125416 -> 125444", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125416, + "TargetID": 125444, + "Directional": false + }] + }, { + "ID": 278, + "SourceStructureID": 176, + "TargetStructureID": 107587, + "Label": "176-107587 via Unknown from 125437 -> 125438", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125437, + "TargetID": 125438, + "Directional": false + }] + }, { + "ID": 279, + "SourceStructureID": 176, + "TargetStructureID": 107672, + "Label": "176-107672 via Adherens from 91903 -> 125346", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91903, + "TargetID": 125346, + "Directional": false + }] + }, { + "ID": 280, + "SourceStructureID": 128685, + "TargetStructureID": 176, + "Label": "128685-176 via Adherens from 128688 -> 125452", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128688, + "TargetID": 125452, + "Directional": false + }] + }, { + "ID": 281, + "SourceStructureID": 136680, + "TargetStructureID": 176, + "Label": "136680-176 via Adherens from 136681 -> 124559", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136681, + "TargetID": 124559, + "Directional": false + }] + }, { + "ID": 282, + "SourceStructureID": 136680, + "TargetStructureID": 176, + "Label": "136680-176 via Gap Junction from 136683 -> 128243", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136683, + "TargetID": 128243, + "Directional": false + }] + }, { + "ID": 283, + "SourceStructureID": 176, + "TargetStructureID": 147412, + "Label": "176-147412 via Unknown from 125386 -> 147417, 147414 -> 128455", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125386, + "TargetID": 147417, + "Directional": false + }, { + "SourceID": 147414, + "TargetID": 128455, + "Directional": false + }] + }, { + "ID": 284, + "SourceStructureID": 177, + "TargetStructureID": 177, + "Label": "177-177 via Gap Junction from 117761 -> 117757", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117761, + "TargetID": 117757, + "Directional": false + }] + }, { + "ID": 285, + "SourceStructureID": 177, + "TargetStructureID": 5860, + "Label": "177-5860 via Gap Junction from 5731 -> 54996, 5938 -> 8809, 117763 -> 117762", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 5731, + "TargetID": 54996, + "Directional": false + }, { + "SourceID": 5938, + "TargetID": 8809, + "Directional": false + }, { + "SourceID": 117763, + "TargetID": 117762, + "Directional": false + }] + }, { + "ID": 286, + "SourceStructureID": 7113, + "TargetStructureID": 177, + "Label": "7113-177 via Gap Junction from 101841 -> 5964, 117755 -> 117754, 131420 -> 131419", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 101841, + "TargetID": 5964, + "Directional": false + }, { + "SourceID": 117755, + "TargetID": 117754, + "Directional": false + }, { + "SourceID": 131420, + "TargetID": 131419, + "Directional": false + }] + }, { + "ID": 287, + "SourceStructureID": 514, + "TargetStructureID": 179, + "Label": "514-179 via Adherens from 103814 -> 103813", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103814, + "TargetID": 103813, + "Directional": false + }] + }, { + "ID": 288, + "SourceStructureID": 5303, + "TargetStructureID": 179, + "Label": "5303-179 via Gap Junction from 101399 -> 104984", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 101399, + "TargetID": 104984, + "Directional": false + }] + }, { + "ID": 289, + "SourceStructureID": 179, + "TargetStructureID": 5860, + "Label": "179-5860 via Adherens from 87475 -> 87476", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87475, + "TargetID": 87476, + "Directional": false + }] + }, { + "ID": 290, + "SourceStructureID": 6169, + "TargetStructureID": 179, + "Label": "6169-179 via Adherens from 87474 -> 87473", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87474, + "TargetID": 87473, + "Directional": false + }] + }, { + "ID": 291, + "SourceStructureID": 10897, + "TargetStructureID": 179, + "Label": "10897-179 via Unknown from 104878 -> 104877", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104878, + "TargetID": 104877, + "Directional": false + }] + }, { + "ID": 292, + "SourceStructureID": 16446, + "TargetStructureID": 179, + "Label": "16446-179 via Unknown from 103860 -> 103859, 103864 -> 103863", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103860, + "TargetID": 103859, + "Directional": false + }, { + "SourceID": 103864, + "TargetID": 103863, + "Directional": false + }] + }, { + "ID": 293, + "SourceStructureID": 46062, + "TargetStructureID": 179, + "Label": "46062-179 via Adherens from 104654 -> 104653", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104654, + "TargetID": 104653, + "Directional": false + }] + }, { + "ID": 294, + "SourceStructureID": 130125, + "TargetStructureID": 179, + "Label": "130125-179 via Adherens from 105205 -> 105204", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 105205, + "TargetID": 105204, + "Directional": false + }] + }, { + "ID": 295, + "SourceStructureID": 180, + "TargetStructureID": 180, + "Label": "180-180 via Gap Junction from 132865 -> 132866", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132865, + "TargetID": 132866, + "Directional": false + }] + }, { + "ID": 296, + "SourceStructureID": 180, + "TargetStructureID": 318, + "Label": "180-318 via Adherens from 90896 -> 90895, 90897 -> 90894", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90896, + "TargetID": 90895, + "Directional": false + }, { + "SourceID": 90897, + "TargetID": 90894, + "Directional": false + }] + }, { + "ID": 297, + "SourceStructureID": 593, + "TargetStructureID": 180, + "Label": "593-180 via Gap Junction from 59789 -> 59790", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59789, + "TargetID": 59790, + "Directional": false + }] + }, { + "ID": 298, + "SourceStructureID": 180, + "TargetStructureID": 3257, + "Label": "180-3257 via Gap Junction from 56880 -> 15453, 90864 -> 90863", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56880, + "TargetID": 15453, + "Directional": false + }, { + "SourceID": 90864, + "TargetID": 90863, + "Directional": false + }] + }, { + "ID": 299, + "SourceStructureID": 180, + "TargetStructureID": 3679, + "Label": "180-3679 via Adherens from 133136 -> 133135", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133136, + "TargetID": 133135, + "Directional": false + }] + }, { + "ID": 300, + "SourceStructureID": 180, + "TargetStructureID": 3679, + "Label": "180-3679 via Gap Junction from 14925 -> 14924, 65608 -> 65609, 90964 -> 90963, 90998 -> 90997, 132920 -> 132919", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14925, + "TargetID": 14924, + "Directional": false + }, { + "SourceID": 65608, + "TargetID": 65609, + "Directional": false + }, { + "SourceID": 90964, + "TargetID": 90963, + "Directional": false + }, { + "SourceID": 90998, + "TargetID": 90997, + "Directional": false + }, { + "SourceID": 132920, + "TargetID": 132919, + "Directional": false + }] + }, { + "ID": 301, + "SourceStructureID": 180, + "TargetStructureID": 4570, + "Label": "180-4570 via Adherens from 90858 -> 14419", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90858, + "TargetID": 14419, + "Directional": false + }] + }, { + "ID": 302, + "SourceStructureID": 4850, + "TargetStructureID": 180, + "Label": "4850-180 via Unknown from 132923 -> 132922, 132981 -> 132980", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132923, + "TargetID": 132922, + "Directional": false + }, { + "SourceID": 132981, + "TargetID": 132980, + "Directional": false + }] + }, { + "ID": 303, + "SourceStructureID": 5283, + "TargetStructureID": 180, + "Label": "5283-180 via Adherens from 66309 -> 66308", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66309, + "TargetID": 66308, + "Directional": false + }] + }, { + "ID": 304, + "SourceStructureID": 180, + "TargetStructureID": 5303, + "Label": "180-5303 via Unknown from 133124 -> 133125", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133124, + "TargetID": 133125, + "Directional": false + }] + }, { + "ID": 305, + "SourceStructureID": 180, + "TargetStructureID": 5618, + "Label": "180-5618 via Adherens from 65981 -> 65980", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65981, + "TargetID": 65980, + "Directional": false + }] + }, { + "ID": 306, + "SourceStructureID": 180, + "TargetStructureID": 5618, + "Label": "180-5618 via Unknown from 94654 -> 94653, 94690 -> 94691", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94654, + "TargetID": 94653, + "Directional": false + }, { + "SourceID": 94690, + "TargetID": 94691, + "Directional": false + }] + }, { + "ID": 307, + "SourceStructureID": 6169, + "TargetStructureID": 180, + "Label": "6169-180 via Adherens from 29259 -> 29258, 95289 -> 95288, 95345 -> 95346, 133133 -> 133134, 135068 -> 135067", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 29259, + "TargetID": 29258, + "Directional": false + }, { + "SourceID": 95289, + "TargetID": 95288, + "Directional": false + }, { + "SourceID": 95345, + "TargetID": 95346, + "Directional": false + }, { + "SourceID": 133133, + "TargetID": 133134, + "Directional": false + }, { + "SourceID": 135068, + "TargetID": 135067, + "Directional": false + }] + }, { + "ID": 308, + "SourceStructureID": 180, + "TargetStructureID": 6169, + "Label": "180-6169 via Gap Junction from 11942 -> 11949, 16167 -> 16166, 29257 -> 14940, 31102 -> 18393, 59670 -> 59671, 59678 -> 59677, 92724 -> 92725, 95555 -> 95554, 95974 -> 95973, 132843 -> 132842, 133066 -> 132900, 133116 -> 133117", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 11942, + "TargetID": 11949, + "Directional": false + }, { + "SourceID": 16167, + "TargetID": 16166, + "Directional": false + }, { + "SourceID": 29257, + "TargetID": 14940, + "Directional": false + }, { + "SourceID": 31102, + "TargetID": 18393, + "Directional": false + }, { + "SourceID": 59670, + "TargetID": 59671, + "Directional": false + }, { + "SourceID": 59678, + "TargetID": 59677, + "Directional": false + }, { + "SourceID": 92724, + "TargetID": 92725, + "Directional": false + }, { + "SourceID": 95555, + "TargetID": 95554, + "Directional": false + }, { + "SourceID": 95974, + "TargetID": 95973, + "Directional": false + }, { + "SourceID": 132843, + "TargetID": 132842, + "Directional": false + }, { + "SourceID": 133066, + "TargetID": 132900, + "Directional": false + }, { + "SourceID": 133116, + "TargetID": 133117, + "Directional": false + }] + }, { + "ID": 309, + "SourceStructureID": 8579, + "TargetStructureID": 180, + "Label": "8579-180 via Adherens from 90888 -> 90887", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90888, + "TargetID": 90887, + "Directional": false + }] + }, { + "ID": 310, + "SourceStructureID": 180, + "TargetStructureID": 9347, + "Label": "180-9347 via Adherens from 90731 -> 90733, 90752 -> 90750", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90731, + "TargetID": 90733, + "Directional": false + }, { + "SourceID": 90752, + "TargetID": 90750, + "Directional": false + }] + }, { + "ID": 311, + "SourceStructureID": 9347, + "TargetStructureID": 180, + "Label": "9347-180 via Unknown from 90742 -> 90741, 90767 -> 90766", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90742, + "TargetID": 90741, + "Directional": false + }, { + "SourceID": 90767, + "TargetID": 90766, + "Directional": false + }] + }, { + "ID": 312, + "SourceStructureID": 13492, + "TargetStructureID": 180, + "Label": "13492-180 via Unknown from 94617 -> 94616", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94617, + "TargetID": 94616, + "Directional": false + }] + }, { + "ID": 313, + "SourceStructureID": 29277, + "TargetStructureID": 180, + "Label": "29277-180 via Adherens from 132932 -> 132933", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132932, + "TargetID": 132933, + "Directional": false + }] + }, { + "ID": 314, + "SourceStructureID": 29277, + "TargetStructureID": 180, + "Label": "29277-180 via Unknown from 132877 -> 132876", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132877, + "TargetID": 132876, + "Directional": false + }] + }, { + "ID": 315, + "SourceStructureID": 180, + "TargetStructureID": 30518, + "Label": "180-30518 via Adherens from 90846 -> 90847", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90846, + "TargetID": 90847, + "Directional": false + }] + }, { + "ID": 316, + "SourceStructureID": 34601, + "TargetStructureID": 180, + "Label": "34601-180 via Adherens from 95753 -> 95752", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95753, + "TargetID": 95752, + "Directional": false + }] + }, { + "ID": 317, + "SourceStructureID": 41042, + "TargetStructureID": 180, + "Label": "41042-180 via Unknown from 133121 -> 95814", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133121, + "TargetID": 95814, + "Directional": false + }] + }, { + "ID": 318, + "SourceStructureID": 59422, + "TargetStructureID": 180, + "Label": "59422-180 via Unknown from 95855 -> 95854", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95855, + "TargetID": 95854, + "Directional": false + }] + }, { + "ID": 319, + "SourceStructureID": 60535, + "TargetStructureID": 180, + "Label": "60535-180 via Unknown from 95666 -> 95665", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95666, + "TargetID": 95665, + "Directional": false + }] + }, { + "ID": 320, + "SourceStructureID": 180, + "TargetStructureID": 64492, + "Label": "180-64492 via Adherens from 133044 -> 133043", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133044, + "TargetID": 133043, + "Directional": false + }] + }, { + "ID": 321, + "SourceStructureID": 65963, + "TargetStructureID": 180, + "Label": "65963-180 via Adherens from 65967 -> 65968", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65967, + "TargetID": 65968, + "Directional": false + }] + }, { + "ID": 322, + "SourceStructureID": 65963, + "TargetStructureID": 180, + "Label": "65963-180 via Unknown from 94689 -> 94688", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94689, + "TargetID": 94688, + "Directional": false + }] + }, { + "ID": 323, + "SourceStructureID": 65971, + "TargetStructureID": 180, + "Label": "65971-180 via Adherens from 133040 -> 133039", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133040, + "TargetID": 133039, + "Directional": false + }] + }, { + "ID": 324, + "SourceStructureID": 66535, + "TargetStructureID": 180, + "Label": "66535-180 via Unknown from 66536 -> 59666", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 66536, + "TargetID": 59666, + "Directional": false + }] + }, { + "ID": 325, + "SourceStructureID": 180, + "TargetStructureID": 71517, + "Label": "180-71517 via Adherens from 75051 -> 75050", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75051, + "TargetID": 75050, + "Directional": false + }] + }, { + "ID": 326, + "SourceStructureID": 180, + "TargetStructureID": 75339, + "Label": "180-75339 via Adherens from 95233 -> 95232", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95233, + "TargetID": 95232, + "Directional": false + }] + }, { + "ID": 327, + "SourceStructureID": 180, + "TargetStructureID": 84802, + "Label": "180-84802 via Unknown from 132874 -> 132873", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132874, + "TargetID": 132873, + "Directional": false + }] + }, { + "ID": 328, + "SourceStructureID": 180, + "TargetStructureID": 90800, + "Label": "180-90800 via Adherens from 90804 -> 90803", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90804, + "TargetID": 90803, + "Directional": false + }] + }, { + "ID": 329, + "SourceStructureID": 90809, + "TargetStructureID": 180, + "Label": "90809-180 via Unknown from 90810 -> 90808", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90810, + "TargetID": 90808, + "Directional": false + }] + }, { + "ID": 330, + "SourceStructureID": 90844, + "TargetStructureID": 180, + "Label": "90844-180 via Adherens from 132994 -> 132995", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132994, + "TargetID": 132995, + "Directional": false + }] + }, { + "ID": 331, + "SourceStructureID": 90883, + "TargetStructureID": 180, + "Label": "90883-180 via Adherens from 90885 -> 90882", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90885, + "TargetID": 90882, + "Directional": false + }] + }, { + "ID": 332, + "SourceStructureID": 180, + "TargetStructureID": 90937, + "Label": "180-90937 via Adherens from 90939 -> 90938", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90939, + "TargetID": 90938, + "Directional": false + }] + }, { + "ID": 333, + "SourceStructureID": 94613, + "TargetStructureID": 180, + "Label": "94613-180 via Unknown from 94614 -> 94615", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94614, + "TargetID": 94615, + "Directional": false + }] + }, { + "ID": 334, + "SourceStructureID": 94637, + "TargetStructureID": 180, + "Label": "94637-180 via Unknown from 94639 -> 94638", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94639, + "TargetID": 94638, + "Directional": false + }] + }, { + "ID": 335, + "SourceStructureID": 180, + "TargetStructureID": 94664, + "Label": "180-94664 via Unknown from 132893 -> 132892", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132893, + "TargetID": 132892, + "Directional": false + }] + }, { + "ID": 336, + "SourceStructureID": 180, + "TargetStructureID": 94698, + "Label": "180-94698 via Adherens from 132978 -> 132979", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132978, + "TargetID": 132979, + "Directional": false + }] + }, { + "ID": 337, + "SourceStructureID": 94702, + "TargetStructureID": 180, + "Label": "94702-180 via Adherens from 94885 -> 94884", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94885, + "TargetID": 94884, + "Directional": false + }] + }, { + "ID": 338, + "SourceStructureID": 94702, + "TargetStructureID": 180, + "Label": "94702-180 via Unknown from 94703 -> 94704", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94703, + "TargetID": 94704, + "Directional": false + }] + }, { + "ID": 339, + "SourceStructureID": 180, + "TargetStructureID": 94926, + "Label": "180-94926 via Unknown from 59661 -> 94929", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 59661, + "TargetID": 94929, + "Directional": false + }] + }, { + "ID": 340, + "SourceStructureID": 180, + "TargetStructureID": 94935, + "Label": "180-94935 via Adherens from 91020 -> 94937", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91020, + "TargetID": 94937, + "Directional": false + }] + }, { + "ID": 341, + "SourceStructureID": 94952, + "TargetStructureID": 180, + "Label": "94952-180 via Adherens from 94955 -> 94954", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94955, + "TargetID": 94954, + "Directional": false + }] + }, { + "ID": 342, + "SourceStructureID": 180, + "TargetStructureID": 94956, + "Label": "180-94956 via Unknown from 94958 -> 94957", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94958, + "TargetID": 94957, + "Directional": false + }] + }, { + "ID": 343, + "SourceStructureID": 94962, + "TargetStructureID": 180, + "Label": "94962-180 via Adherens from 132925 -> 132924", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132925, + "TargetID": 132924, + "Directional": false + }] + }, { + "ID": 344, + "SourceStructureID": 94978, + "TargetStructureID": 180, + "Label": "94978-180 via Unknown from 132854 -> 132853", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132854, + "TargetID": 132853, + "Directional": false + }] + }, { + "ID": 345, + "SourceStructureID": 180, + "TargetStructureID": 94991, + "Label": "180-94991 via Adherens from 132926 -> 132927", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132926, + "TargetID": 132927, + "Directional": false + }] + }, { + "ID": 346, + "SourceStructureID": 94993, + "TargetStructureID": 180, + "Label": "94993-180 via Adherens from 94994 -> 29261", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94994, + "TargetID": 29261, + "Directional": false + }] + }, { + "ID": 347, + "SourceStructureID": 95241, + "TargetStructureID": 180, + "Label": "95241-180 via Unknown from 95242 -> 95240", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95242, + "TargetID": 95240, + "Directional": false + }] + }, { + "ID": 348, + "SourceStructureID": 180, + "TargetStructureID": 95250, + "Label": "180-95250 via Gap Junction from 133105 -> 133106", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 133105, + "TargetID": 133106, + "Directional": false + }] + }, { + "ID": 349, + "SourceStructureID": 95299, + "TargetStructureID": 180, + "Label": "95299-180 via Adherens from 95301 -> 95300", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95301, + "TargetID": 95300, + "Directional": false + }] + }, { + "ID": 350, + "SourceStructureID": 95299, + "TargetStructureID": 180, + "Label": "95299-180 via Unknown from 132857 -> 132858", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132857, + "TargetID": 132858, + "Directional": false + }] + }, { + "ID": 351, + "SourceStructureID": 180, + "TargetStructureID": 95311, + "Label": "180-95311 via Unknown from 95312 -> 95313, 132859 -> 132858", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95312, + "TargetID": 95313, + "Directional": false + }, { + "SourceID": 132859, + "TargetID": 132858, + "Directional": false + }] + }, { + "ID": 352, + "SourceStructureID": 180, + "TargetStructureID": 95334, + "Label": "180-95334 via Unknown from 95338 -> 95339, 95340 -> 95341, 132861 -> 132860", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95338, + "TargetID": 95339, + "Directional": false + }, { + "SourceID": 95340, + "TargetID": 95341, + "Directional": false + }, { + "SourceID": 132861, + "TargetID": 132860, + "Directional": false + }] + }, { + "ID": 353, + "SourceStructureID": 95349, + "TargetStructureID": 180, + "Label": "95349-180 via Adherens from 132895 -> 132894", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132895, + "TargetID": 132894, + "Directional": false + }] + }, { + "ID": 354, + "SourceStructureID": 180, + "TargetStructureID": 95390, + "Label": "180-95390 via Adherens from 95395 -> 95394, 132982 -> 132983", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95395, + "TargetID": 95394, + "Directional": false + }, { + "SourceID": 132982, + "TargetID": 132983, + "Directional": false + }] + }, { + "ID": 355, + "SourceStructureID": 180, + "TargetStructureID": 95419, + "Label": "180-95419 via Adherens from 95423 -> 95422", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95423, + "TargetID": 95422, + "Directional": false + }] + }, { + "ID": 356, + "SourceStructureID": 180, + "TargetStructureID": 95431, + "Label": "180-95431 via Adherens from 95434 -> 95433", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95434, + "TargetID": 95433, + "Directional": false + }] + }, { + "ID": 357, + "SourceStructureID": 95457, + "TargetStructureID": 180, + "Label": "95457-180 via Unknown from 95459 -> 95458", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95459, + "TargetID": 95458, + "Directional": false + }] + }, { + "ID": 358, + "SourceStructureID": 180, + "TargetStructureID": 95490, + "Label": "180-95490 via Unknown from 95492 -> 95491", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95492, + "TargetID": 95491, + "Directional": false + }] + }, { + "ID": 359, + "SourceStructureID": 180, + "TargetStructureID": 95500, + "Label": "180-95500 via Unknown from 95506 -> 95507", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95506, + "TargetID": 95507, + "Directional": false + }] + }, { + "ID": 360, + "SourceStructureID": 180, + "TargetStructureID": 95512, + "Label": "180-95512 via Adherens from 95511 -> 95513", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95511, + "TargetID": 95513, + "Directional": false + }] + }, { + "ID": 361, + "SourceStructureID": 95530, + "TargetStructureID": 180, + "Label": "95530-180 via Unknown from 95532 -> 95531", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95532, + "TargetID": 95531, + "Directional": false + }] + }, { + "ID": 362, + "SourceStructureID": 180, + "TargetStructureID": 95540, + "Label": "180-95540 via Adherens from 132985 -> 132986", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132985, + "TargetID": 132986, + "Directional": false + }] + }, { + "ID": 363, + "SourceStructureID": 180, + "TargetStructureID": 95573, + "Label": "180-95573 via Adherens from 132988 -> 132989", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132988, + "TargetID": 132989, + "Directional": false + }] + }, { + "ID": 364, + "SourceStructureID": 95612, + "TargetStructureID": 180, + "Label": "95612-180 via Unknown from 95614 -> 95613", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95614, + "TargetID": 95613, + "Directional": false + }] + }, { + "ID": 365, + "SourceStructureID": 95626, + "TargetStructureID": 180, + "Label": "95626-180 via Conventional from 95630 -> 95632", + "Type": "Conventional", + "Directional": false, + "Links": [{ + "SourceID": 95630, + "TargetID": 95632, + "Directional": false + }] + }, { + "ID": 366, + "SourceStructureID": 180, + "TargetStructureID": 95634, + "Label": "180-95634 via Unknown from 132990 -> 132991", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132990, + "TargetID": 132991, + "Directional": false + }] + }, { + "ID": 367, + "SourceStructureID": 180, + "TargetStructureID": 95643, + "Label": "180-95643 via Unknown from 95645 -> 95644", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95645, + "TargetID": 95644, + "Directional": false + }] + }, { + "ID": 368, + "SourceStructureID": 180, + "TargetStructureID": 95703, + "Label": "180-95703 via Adherens from 95707 -> 95706", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95707, + "TargetID": 95706, + "Directional": false + }] + }, { + "ID": 369, + "SourceStructureID": 180, + "TargetStructureID": 95717, + "Label": "180-95717 via Unknown from 132906 -> 132907", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132906, + "TargetID": 132907, + "Directional": false + }] + }, { + "ID": 370, + "SourceStructureID": 95723, + "TargetStructureID": 180, + "Label": "95723-180 via Unknown from 95725 -> 95724", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95725, + "TargetID": 95724, + "Directional": false + }] + }, { + "ID": 371, + "SourceStructureID": 95751, + "TargetStructureID": 180, + "Label": "95751-180 via Adherens from 132908 -> 132909", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132908, + "TargetID": 132909, + "Directional": false + }] + }, { + "ID": 372, + "SourceStructureID": 95804, + "TargetStructureID": 180, + "Label": "95804-180 via Unknown from 95805 -> 95806", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95805, + "TargetID": 95806, + "Directional": false + }] + }, { + "ID": 373, + "SourceStructureID": 95807, + "TargetStructureID": 180, + "Label": "95807-180 via Adherens from 132955 -> 132954", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132955, + "TargetID": 132954, + "Directional": false + }] + }, { + "ID": 374, + "SourceStructureID": 180, + "TargetStructureID": 95810, + "Label": "180-95810 via Unknown from 133019 -> 133020", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133019, + "TargetID": 133020, + "Directional": false + }] + }, { + "ID": 375, + "SourceStructureID": 180, + "TargetStructureID": 95829, + "Label": "180-95829 via Adherens from 132962 -> 132963", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132962, + "TargetID": 132963, + "Directional": false + }] + }, { + "ID": 376, + "SourceStructureID": 95840, + "TargetStructureID": 180, + "Label": "95840-180 via Unknown from 132872 -> 132871", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132872, + "TargetID": 132871, + "Directional": false + }] + }, { + "ID": 377, + "SourceStructureID": 95863, + "TargetStructureID": 180, + "Label": "95863-180 via Unknown from 95865 -> 95864", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95865, + "TargetID": 95864, + "Directional": false + }] + }, { + "ID": 378, + "SourceStructureID": 180, + "TargetStructureID": 95866, + "Label": "180-95866 via Adherens from 133002 -> 133001, 133003 -> 133004", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133002, + "TargetID": 133001, + "Directional": false + }, { + "SourceID": 133003, + "TargetID": 133004, + "Directional": false + }] + }, { + "ID": 379, + "SourceStructureID": 95883, + "TargetStructureID": 180, + "Label": "95883-180 via Unknown from 95885 -> 95884", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95885, + "TargetID": 95884, + "Directional": false + }] + }, { + "ID": 380, + "SourceStructureID": 180, + "TargetStructureID": 95910, + "Label": "180-95910 via Unknown from 95918 -> 95919", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95918, + "TargetID": 95919, + "Directional": false + }] + }, { + "ID": 381, + "SourceStructureID": 95911, + "TargetStructureID": 180, + "Label": "95911-180 via Unknown from 95912 -> 90890", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95912, + "TargetID": 90890, + "Directional": false + }] + }, { + "ID": 382, + "SourceStructureID": 180, + "TargetStructureID": 95915, + "Label": "180-95915 via Unknown from 114317 -> 114316", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114317, + "TargetID": 114316, + "Directional": false + }] + }, { + "ID": 383, + "SourceStructureID": 95917, + "TargetStructureID": 180, + "Label": "95917-180 via Adherens from 132848 -> 90886", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132848, + "TargetID": 90886, + "Directional": false + }] + }, { + "ID": 384, + "SourceStructureID": 95951, + "TargetStructureID": 180, + "Label": "95951-180 via Unknown from 95955 -> 95956", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95955, + "TargetID": 95956, + "Directional": false + }] + }, { + "ID": 385, + "SourceStructureID": 180, + "TargetStructureID": 95978, + "Label": "180-95978 via Unknown from 133137 -> 133138", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133137, + "TargetID": 133138, + "Directional": false + }] + }, { + "ID": 386, + "SourceStructureID": 95986, + "TargetStructureID": 180, + "Label": "95986-180 via Unknown from 95988 -> 95989", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95988, + "TargetID": 95989, + "Directional": false + }] + }, { + "ID": 387, + "SourceStructureID": 180, + "TargetStructureID": 95990, + "Label": "180-95990 via Unknown from 95996 -> 95995", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95996, + "TargetID": 95995, + "Directional": false + }] + }, { + "ID": 388, + "SourceStructureID": 180, + "TargetStructureID": 95997, + "Label": "180-95997 via Adherens from 96007 -> 96008, 116600 -> 116599", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96007, + "TargetID": 96008, + "Directional": false + }, { + "SourceID": 116600, + "TargetID": 116599, + "Directional": false + }] + }, { + "ID": 389, + "SourceStructureID": 180, + "TargetStructureID": 96011, + "Label": "180-96011 via Unknown from 96032 -> 96031", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96032, + "TargetID": 96031, + "Directional": false + }] + }, { + "ID": 390, + "SourceStructureID": 96023, + "TargetStructureID": 180, + "Label": "96023-180 via Adherens from 96024 -> 96025", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96024, + "TargetID": 96025, + "Directional": false + }] + }, { + "ID": 391, + "SourceStructureID": 5278, + "TargetStructureID": 181, + "Label": "5278-181 via Touch from 120264 -> 120265", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 120264, + "TargetID": 120265, + "Directional": false + }] + }, { + "ID": 392, + "SourceStructureID": 181, + "TargetStructureID": 92169, + "Label": "181-92169 via Touch from 92172 -> 92171", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 92172, + "TargetID": 92171, + "Directional": false + }] + }, { + "ID": 393, + "SourceStructureID": 92175, + "TargetStructureID": 181, + "Label": "92175-181 via Gap Junction from 92179 -> 92180", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92179, + "TargetID": 92180, + "Directional": false + }] + }, { + "ID": 394, + "SourceStructureID": 223, + "TargetStructureID": 284, + "Label": "223-284 via Gap Junction from 17519 -> 17518, 17520 -> 14350, 17521 -> 17419, 131778 -> 131779", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17519, + "TargetID": 17518, + "Directional": false + }, { + "SourceID": 17520, + "TargetID": 14350, + "Directional": false + }, { + "SourceID": 17521, + "TargetID": 17419, + "Directional": false + }, { + "SourceID": 131778, + "TargetID": 131779, + "Directional": false + }] + }, { + "ID": 395, + "SourceStructureID": 299, + "TargetStructureID": 223, + "Label": "299-223 via Gap Junction from 47093 -> 17659", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47093, + "TargetID": 17659, + "Directional": false + }] + }, { + "ID": 396, + "SourceStructureID": 223, + "TargetStructureID": 307, + "Label": "223-307 via Gap Junction from 96375 -> 96374", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96375, + "TargetID": 96374, + "Directional": false + }] + }, { + "ID": 397, + "SourceStructureID": 223, + "TargetStructureID": 309, + "Label": "223-309 via Gap Junction from 122310 -> 122309", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122310, + "TargetID": 122309, + "Directional": false + }] + }, { + "ID": 398, + "SourceStructureID": 223, + "TargetStructureID": 321, + "Label": "223-321 via Gap Junction from 115571 -> 115570", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115571, + "TargetID": 115570, + "Directional": false + }] + }, { + "ID": 399, + "SourceStructureID": 324, + "TargetStructureID": 223, + "Label": "324-223 via Gap Junction from 94219 -> 94218, 96133 -> 96134, 96137 -> 96136", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94219, + "TargetID": 94218, + "Directional": false + }, { + "SourceID": 96133, + "TargetID": 96134, + "Directional": false + }, { + "SourceID": 96137, + "TargetID": 96136, + "Directional": false + }] + }, { + "ID": 400, + "SourceStructureID": 223, + "TargetStructureID": 410, + "Label": "223-410 via Adherens from 17663 -> 17664", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 17663, + "TargetID": 17664, + "Directional": false + }] + }, { + "ID": 401, + "SourceStructureID": 223, + "TargetStructureID": 410, + "Label": "223-410 via Gap Junction from 14347 -> 14346, 17661 -> 17660, 17665 -> 9225, 18373 -> 17818, 18378 -> 18377, 18543 -> 18542", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14347, + "TargetID": 14346, + "Directional": false + }, { + "SourceID": 17661, + "TargetID": 17660, + "Directional": false + }, { + "SourceID": 17665, + "TargetID": 9225, + "Directional": false + }, { + "SourceID": 18373, + "TargetID": 17818, + "Directional": false + }, { + "SourceID": 18378, + "TargetID": 18377, + "Directional": false + }, { + "SourceID": 18543, + "TargetID": 18542, + "Directional": false + }] + }, { + "ID": 402, + "SourceStructureID": 223, + "TargetStructureID": 2610, + "Label": "223-2610 via Gap Junction from 17673 -> 17674", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17673, + "TargetID": 17674, + "Directional": false + }] + }, { + "ID": 403, + "SourceStructureID": 6153, + "TargetStructureID": 223, + "Label": "6153-223 via Gap Junction from 17489 -> 17488, 17837 -> 16621, 29593 -> 29592, 29599 -> 29598", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17489, + "TargetID": 17488, + "Directional": false + }, { + "SourceID": 17837, + "TargetID": 16621, + "Directional": false + }, { + "SourceID": 29593, + "TargetID": 29592, + "Directional": false + }, { + "SourceID": 29599, + "TargetID": 29598, + "Directional": false + }] + }, { + "ID": 404, + "SourceStructureID": 47195, + "TargetStructureID": 223, + "Label": "47195-223 via Gap Junction from 47197 -> 47194, 47198 -> 58750", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47197, + "TargetID": 47194, + "Directional": false + }, { + "SourceID": 47198, + "TargetID": 58750, + "Directional": false + }] + }, { + "ID": 405, + "SourceStructureID": 332, + "TargetStructureID": 268, + "Label": "332-268 via Gap Junction from 94947 -> 43466", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94947, + "TargetID": 43466, + "Directional": false + }] + }, { + "ID": 406, + "SourceStructureID": 353, + "TargetStructureID": 268, + "Label": "353-268 via Gap Junction from 122636 -> 122160", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122636, + "TargetID": 122160, + "Directional": false + }] + }, { + "ID": 407, + "SourceStructureID": 268, + "TargetStructureID": 7157, + "Label": "268-7157 via Gap Junction from 122162 -> 122161", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122162, + "TargetID": 122161, + "Directional": false + }] + }, { + "ID": 408, + "SourceStructureID": 352, + "TargetStructureID": 273, + "Label": "352-273 via Gap Junction from 94520 -> 94519", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94520, + "TargetID": 94519, + "Directional": false + }] + }, { + "ID": 409, + "SourceStructureID": 276, + "TargetStructureID": 284, + "Label": "276-284 via Adherens from 29539 -> 29538", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 29539, + "TargetID": 29538, + "Directional": false + }] + }, { + "ID": 410, + "SourceStructureID": 276, + "TargetStructureID": 284, + "Label": "276-284 via Gap Junction from 29537 -> 29536, 122164 -> 122165, 122166 -> 29530", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29537, + "TargetID": 29536, + "Directional": false + }, { + "SourceID": 122164, + "TargetID": 122165, + "Directional": false + }, { + "SourceID": 122166, + "TargetID": 29530, + "Directional": false + }] + }, { + "ID": 411, + "SourceStructureID": 276, + "TargetStructureID": 332, + "Label": "276-332 via Touch from 122170 -> 122169", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 122170, + "TargetID": 122169, + "Directional": false + }] + }, { + "ID": 412, + "SourceStructureID": 276, + "TargetStructureID": 6153, + "Label": "276-6153 via Gap Junction from 122163 -> 29473", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122163, + "TargetID": 29473, + "Directional": false + }] + }, { + "ID": 413, + "SourceStructureID": 7157, + "TargetStructureID": 276, + "Label": "7157-276 via Gap Junction from 31642 -> 31644, 31670 -> 31669", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 31642, + "TargetID": 31644, + "Directional": false + }, { + "SourceID": 31670, + "TargetID": 31669, + "Directional": false + }] + }, { + "ID": 414, + "SourceStructureID": 277, + "TargetStructureID": 277, + "Label": "277-277 via Gap Junction from 115500 -> 115499", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115500, + "TargetID": 115499, + "Directional": false + }] + }, { + "ID": 415, + "SourceStructureID": 277, + "TargetStructureID": 278, + "Label": "277-278 via Adherens from 39019 -> 39018", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 39019, + "TargetID": 39018, + "Directional": false + }] + }, { + "ID": 416, + "SourceStructureID": 327, + "TargetStructureID": 277, + "Label": "327-277 via Adherens from 115507 -> 115506", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115507, + "TargetID": 115506, + "Directional": false + }] + }, { + "ID": 417, + "SourceStructureID": 277, + "TargetStructureID": 327, + "Label": "277-327 via Gap Junction from 23396 -> 23397, 58591 -> 58590, 115502 -> 115501, 115518 -> 115517, 115541 -> 115539, 115551 -> 115546, 122135 -> 122133, 122136 -> 122137", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 23396, + "TargetID": 23397, + "Directional": false + }, { + "SourceID": 58591, + "TargetID": 58590, + "Directional": false + }, { + "SourceID": 115502, + "TargetID": 115501, + "Directional": false + }, { + "SourceID": 115518, + "TargetID": 115517, + "Directional": false + }, { + "SourceID": 115541, + "TargetID": 115539, + "Directional": false + }, { + "SourceID": 115551, + "TargetID": 115546, + "Directional": false + }, { + "SourceID": 122135, + "TargetID": 122133, + "Directional": false + }, { + "SourceID": 122136, + "TargetID": 122137, + "Directional": false + }] + }, { + "ID": 418, + "SourceStructureID": 327, + "TargetStructureID": 277, + "Label": "327-277 via Unknown from 115498 -> 115497", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115498, + "TargetID": 115497, + "Directional": false + }] + }, { + "ID": 419, + "SourceStructureID": 277, + "TargetStructureID": 335, + "Label": "277-335 via Gap Junction from 115492 -> 115491, 122132 -> 122131", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115492, + "TargetID": 115491, + "Directional": false + }, { + "SourceID": 122132, + "TargetID": 122131, + "Directional": false + }] + }, { + "ID": 420, + "SourceStructureID": 277, + "TargetStructureID": 366, + "Label": "277-366 via Gap Junction from 56520 -> 13609, 56521 -> 13609", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56520, + "TargetID": 13609, + "Directional": false + }, { + "SourceID": 56521, + "TargetID": 13609, + "Directional": false + }] + }, { + "ID": 421, + "SourceStructureID": 431, + "TargetStructureID": 277, + "Label": "431-277 via Gap Junction from 115544 -> 115543", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115544, + "TargetID": 115543, + "Directional": false + }] + }, { + "ID": 422, + "SourceStructureID": 7157, + "TargetStructureID": 277, + "Label": "7157-277 via Gap Junction from 26194 -> 26032, 26248 -> 26247, 29972 -> 29971, 115490 -> 115489, 115545 -> 115542, 130658 -> 26067", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 26194, + "TargetID": 26032, + "Directional": false + }, { + "SourceID": 26248, + "TargetID": 26247, + "Directional": false + }, { + "SourceID": 29972, + "TargetID": 29971, + "Directional": false + }, { + "SourceID": 115490, + "TargetID": 115489, + "Directional": false + }, { + "SourceID": 115545, + "TargetID": 115542, + "Directional": false + }, { + "SourceID": 130658, + "TargetID": 26067, + "Directional": false + }] + }, { + "ID": 423, + "SourceStructureID": 115504, + "TargetStructureID": 277, + "Label": "115504-277 via Gap Junction from 115505 -> 115503", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115505, + "TargetID": 115503, + "Directional": false + }] + }, { + "ID": 424, + "SourceStructureID": 115519, + "TargetStructureID": 277, + "Label": "115519-277 via Gap Junction from 115521 -> 115520", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115521, + "TargetID": 115520, + "Directional": false + }] + }, { + "ID": 425, + "SourceStructureID": 115525, + "TargetStructureID": 277, + "Label": "115525-277 via Gap Junction from 115527 -> 115524", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115527, + "TargetID": 115524, + "Directional": false + }] + }, { + "ID": 426, + "SourceStructureID": 115529, + "TargetStructureID": 277, + "Label": "115529-277 via Gap Junction from 115530 -> 115528", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115530, + "TargetID": 115528, + "Directional": false + }] + }, { + "ID": 427, + "SourceStructureID": 115537, + "TargetStructureID": 277, + "Label": "115537-277 via Gap Junction from 115538 -> 115536", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115538, + "TargetID": 115536, + "Directional": false + }] + }, { + "ID": 428, + "SourceStructureID": 327, + "TargetStructureID": 278, + "Label": "327-278 via Unknown from 122130 -> 122127", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 122130, + "TargetID": 122127, + "Directional": false + }] + }, { + "ID": 429, + "SourceStructureID": 5439, + "TargetStructureID": 280, + "Label": "5439-280 via Adherens from 85708 -> 85709", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85708, + "TargetID": 85709, + "Directional": false + }] + }, { + "ID": 430, + "SourceStructureID": 32566, + "TargetStructureID": 280, + "Label": "32566-280 via Adherens from 64562 -> 64561, 64564 -> 64563, 64566 -> 64565", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64562, + "TargetID": 64561, + "Directional": false + }, { + "SourceID": 64564, + "TargetID": 64563, + "Directional": false + }, { + "SourceID": 64566, + "TargetID": 64565, + "Directional": false + }] + }, { + "ID": 431, + "SourceStructureID": 286, + "TargetStructureID": 284, + "Label": "286-284 via Gap Junction from 29486 -> 29483, 58621 -> 58620, 95220 -> 26281, 95376 -> 95369, 95380 -> 95381", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29486, + "TargetID": 29483, + "Directional": false + }, { + "SourceID": 58621, + "TargetID": 58620, + "Directional": false + }, { + "SourceID": 95220, + "TargetID": 26281, + "Directional": false + }, { + "SourceID": 95376, + "TargetID": 95369, + "Directional": false + }, { + "SourceID": 95380, + "TargetID": 95381, + "Directional": false + }] + }, { + "ID": 432, + "SourceStructureID": 284, + "TargetStructureID": 309, + "Label": "284-309 via Gap Junction from 17467 -> 13484", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17467, + "TargetID": 13484, + "Directional": false + }] + }, { + "ID": 433, + "SourceStructureID": 321, + "TargetStructureID": 284, + "Label": "321-284 via Gap Junction from 23038 -> 17434, 55211 -> 29481, 115553 -> 115552, 115568 -> 115569, 115572 -> 17433, 122181 -> 122180, 122187 -> 122184, 122201 -> 122202, 122213 -> 17430, 122215 -> 122214", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 23038, + "TargetID": 17434, + "Directional": false + }, { + "SourceID": 55211, + "TargetID": 29481, + "Directional": false + }, { + "SourceID": 115553, + "TargetID": 115552, + "Directional": false + }, { + "SourceID": 115568, + "TargetID": 115569, + "Directional": false + }, { + "SourceID": 115572, + "TargetID": 17433, + "Directional": false + }, { + "SourceID": 122181, + "TargetID": 122180, + "Directional": false + }, { + "SourceID": 122187, + "TargetID": 122184, + "Directional": false + }, { + "SourceID": 122201, + "TargetID": 122202, + "Directional": false + }, { + "SourceID": 122213, + "TargetID": 17430, + "Directional": false + }, { + "SourceID": 122215, + "TargetID": 122214, + "Directional": false + }] + }, { + "ID": 434, + "SourceStructureID": 284, + "TargetStructureID": 324, + "Label": "284-324 via Gap Junction from 29482 -> 93910", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29482, + "TargetID": 93910, + "Directional": false + }] + }, { + "ID": 435, + "SourceStructureID": 332, + "TargetStructureID": 284, + "Label": "332-284 via Adherens from 29528 -> 29527", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 29528, + "TargetID": 29527, + "Directional": false + }] + }, { + "ID": 436, + "SourceStructureID": 332, + "TargetStructureID": 284, + "Label": "332-284 via Gap Junction from 29526 -> 29525, 95191 -> 95192", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29526, + "TargetID": 29525, + "Directional": false + }, { + "SourceID": 95191, + "TargetID": 95192, + "Directional": false + }] + }, { + "ID": 437, + "SourceStructureID": 4835, + "TargetStructureID": 284, + "Label": "4835-284 via Gap Junction from 29608 -> 29607", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29608, + "TargetID": 29607, + "Directional": false + }] + }, { + "ID": 438, + "SourceStructureID": 284, + "TargetStructureID": 6153, + "Label": "284-6153 via Adherens from 29544 -> 29543", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 29544, + "TargetID": 29543, + "Directional": false + }] + }, { + "ID": 439, + "SourceStructureID": 6153, + "TargetStructureID": 284, + "Label": "6153-284 via Gap Junction from 17455 -> 17454, 17463 -> 17462, 17509 -> 14371, 17510 -> 14369, 29498 -> 29479, 29542 -> 29520", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17455, + "TargetID": 17454, + "Directional": false + }, { + "SourceID": 17463, + "TargetID": 17462, + "Directional": false + }, { + "SourceID": 17509, + "TargetID": 14371, + "Directional": false + }, { + "SourceID": 17510, + "TargetID": 14369, + "Directional": false + }, { + "SourceID": 29498, + "TargetID": 29479, + "Directional": false + }, { + "SourceID": 29542, + "TargetID": 29520, + "Directional": false + }] + }, { + "ID": 440, + "SourceStructureID": 7157, + "TargetStructureID": 284, + "Label": "7157-284 via Adherens from 26298 -> 26297, 26300 -> 26299", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 26298, + "TargetID": 26297, + "Directional": false + }, { + "SourceID": 26300, + "TargetID": 26299, + "Directional": false + }] + }, { + "ID": 441, + "SourceStructureID": 284, + "TargetStructureID": 7157, + "Label": "284-7157 via Gap Junction from 29580 -> 26271, 29586 -> 29585, 29610 -> 29611, 131781 -> 131780", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29580, + "TargetID": 26271, + "Directional": false + }, { + "SourceID": 29586, + "TargetID": 29585, + "Directional": false + }, { + "SourceID": 29610, + "TargetID": 29611, + "Directional": false + }, { + "SourceID": 131781, + "TargetID": 131780, + "Directional": false + }] + }, { + "ID": 442, + "SourceStructureID": 30102, + "TargetStructureID": 284, + "Label": "30102-284 via Gap Junction from 30107 -> 30106", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 30107, + "TargetID": 30106, + "Directional": false + }] + }, { + "ID": 443, + "SourceStructureID": 284, + "TargetStructureID": 71870, + "Label": "284-71870 via Adherens from 71869 -> 71871", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71869, + "TargetID": 71871, + "Directional": false + }] + }, { + "ID": 444, + "SourceStructureID": 76127, + "TargetStructureID": 284, + "Label": "76127-284 via Adherens from 76131 -> 76130", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76131, + "TargetID": 76130, + "Directional": false + }] + }, { + "ID": 445, + "SourceStructureID": 76127, + "TargetStructureID": 284, + "Label": "76127-284 via Gap Junction from 76129 -> 76125", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 76129, + "TargetID": 76125, + "Directional": false + }] + }, { + "ID": 446, + "SourceStructureID": 286, + "TargetStructureID": 286, + "Label": "286-286 via Gap Junction from 95347 -> 95348", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 95347, + "TargetID": 95348, + "Directional": false + }] + }, { + "ID": 447, + "SourceStructureID": 327, + "TargetStructureID": 286, + "Label": "327-286 via Unknown from 58607 -> 58606", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 58607, + "TargetID": 58606, + "Directional": false + }] + }, { + "ID": 448, + "SourceStructureID": 286, + "TargetStructureID": 332, + "Label": "286-332 via Gap Junction from 58600 -> 58602, 58619 -> 58618, 95286 -> 95287, 95291 -> 94916", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 58600, + "TargetID": 58602, + "Directional": false + }, { + "SourceID": 58619, + "TargetID": 58618, + "Directional": false + }, { + "SourceID": 95286, + "TargetID": 95287, + "Directional": false + }, { + "SourceID": 95291, + "TargetID": 94916, + "Directional": false + }] + }, { + "ID": 449, + "SourceStructureID": 286, + "TargetStructureID": 419, + "Label": "286-419 via Adherens from 133490 -> 131776, 133494 -> 133493", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133490, + "TargetID": 131776, + "Directional": false + }, { + "SourceID": 133494, + "TargetID": 133493, + "Directional": false + }] + }, { + "ID": 450, + "SourceStructureID": 419, + "TargetStructureID": 286, + "Label": "419-286 via Gap Junction from 133491 -> 133492", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 133491, + "TargetID": 133492, + "Directional": false + }] + }, { + "ID": 451, + "SourceStructureID": 483, + "TargetStructureID": 286, + "Label": "483-286 via Gap Junction from 58615 -> 58608", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 58615, + "TargetID": 58608, + "Directional": false + }] + }, { + "ID": 452, + "SourceStructureID": 5439, + "TargetStructureID": 286, + "Label": "5439-286 via Adherens from 85712 -> 85714", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85712, + "TargetID": 85714, + "Directional": false + }] + }, { + "ID": 453, + "SourceStructureID": 6153, + "TargetStructureID": 286, + "Label": "6153-286 via Gap Junction from 121621 -> 121620", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121621, + "TargetID": 121620, + "Directional": false + }] + }, { + "ID": 454, + "SourceStructureID": 95246, + "TargetStructureID": 286, + "Label": "95246-286 via Unknown from 95247 -> 95245", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95247, + "TargetID": 95245, + "Directional": false + }] + }, { + "ID": 455, + "SourceStructureID": 95282, + "TargetStructureID": 286, + "Label": "95282-286 via Unknown from 95285 -> 95281", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95285, + "TargetID": 95281, + "Directional": false + }] + }, { + "ID": 456, + "SourceStructureID": 286, + "TargetStructureID": 95304, + "Label": "286-95304 via Unknown from 120358 -> 120357", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120358, + "TargetID": 120357, + "Directional": false + }] + }, { + "ID": 457, + "SourceStructureID": 95343, + "TargetStructureID": 286, + "Label": "95343-286 via Unknown from 120364 -> 120363", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120364, + "TargetID": 120363, + "Directional": false + }] + }, { + "ID": 458, + "SourceStructureID": 294, + "TargetStructureID": 25440, + "Label": "294-25440 via Touch from 25465 -> 25464", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 25465, + "TargetID": 25464, + "Directional": false + }] + }, { + "ID": 459, + "SourceStructureID": 298, + "TargetStructureID": 299, + "Label": "298-299 via Gap Junction from 122733 -> 122734, 122739 -> 122738, 122776 -> 122775", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122733, + "TargetID": 122734, + "Directional": false + }, { + "SourceID": 122739, + "TargetID": 122738, + "Directional": false + }, { + "SourceID": 122776, + "TargetID": 122775, + "Directional": false + }] + }, { + "ID": 460, + "SourceStructureID": 298, + "TargetStructureID": 47095, + "Label": "298-47095 via Gap Junction from 122759 -> 122758", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122759, + "TargetID": 122758, + "Directional": false + }] + }, { + "ID": 461, + "SourceStructureID": 304, + "TargetStructureID": 299, + "Label": "304-299 via Gap Junction from 16572 -> 16576, 16574 -> 7224", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16572, + "TargetID": 16576, + "Directional": false + }, { + "SourceID": 16574, + "TargetID": 7224, + "Directional": false + }] + }, { + "ID": 462, + "SourceStructureID": 299, + "TargetStructureID": 397, + "Label": "299-397 via Gap Junction from 55353 -> 55352, 122704 -> 122703", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55353, + "TargetID": 55352, + "Directional": false + }, { + "SourceID": 122704, + "TargetID": 122703, + "Directional": false + }] + }, { + "ID": 463, + "SourceStructureID": 299, + "TargetStructureID": 410, + "Label": "299-410 via Gap Junction from 21402 -> 9285", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 21402, + "TargetID": 9285, + "Directional": false + }] + }, { + "ID": 464, + "SourceStructureID": 307, + "TargetStructureID": 304, + "Label": "307-304 via Gap Junction from 16367 -> 16474, 16570 -> 16573", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16367, + "TargetID": 16474, + "Directional": false + }, { + "SourceID": 16570, + "TargetID": 16573, + "Directional": false + }] + }, { + "ID": 465, + "SourceStructureID": 304, + "TargetStructureID": 397, + "Label": "304-397 via Gap Junction from 46882 -> 46881, 46895 -> 17276, 71051 -> 71050, 122394 -> 122395, 122653 -> 122654, 122670 -> 122671, 122675 -> 122674, 122699 -> 122698, 122702 -> 122701", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46882, + "TargetID": 46881, + "Directional": false + }, { + "SourceID": 46895, + "TargetID": 17276, + "Directional": false + }, { + "SourceID": 71051, + "TargetID": 71050, + "Directional": false + }, { + "SourceID": 122394, + "TargetID": 122395, + "Directional": false + }, { + "SourceID": 122653, + "TargetID": 122654, + "Directional": false + }, { + "SourceID": 122670, + "TargetID": 122671, + "Directional": false + }, { + "SourceID": 122675, + "TargetID": 122674, + "Directional": false + }, { + "SourceID": 122699, + "TargetID": 122698, + "Directional": false + }, { + "SourceID": 122702, + "TargetID": 122701, + "Directional": false + }] + }, { + "ID": 466, + "SourceStructureID": 304, + "TargetStructureID": 400, + "Label": "304-400 via Gap Junction from 17187 -> 18766, 17278 -> 17277, 130579 -> 130578, 130603 -> 130602, 132753 -> 132754", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17187, + "TargetID": 18766, + "Directional": false + }, { + "SourceID": 17278, + "TargetID": 17277, + "Directional": false + }, { + "SourceID": 130579, + "TargetID": 130578, + "Directional": false + }, { + "SourceID": 130603, + "TargetID": 130602, + "Directional": false + }, { + "SourceID": 132753, + "TargetID": 132754, + "Directional": false + }] + }, { + "ID": 467, + "SourceStructureID": 410, + "TargetStructureID": 304, + "Label": "410-304 via Gap Junction from 17576 -> 17575, 17658 -> 17657, 17691 -> 17690, 17721 -> 17720, 17726 -> 17712, 17728 -> 17729, 17746 -> 17745, 18333 -> 18332, 18338 -> 18329, 18342 -> 18341, 18345 -> 18344, 18522 -> 18521, 19142 -> 19141, 22492 -> 22493, 22496 -> 22495, 22504 -> 22503", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17576, + "TargetID": 17575, + "Directional": false + }, { + "SourceID": 17658, + "TargetID": 17657, + "Directional": false + }, { + "SourceID": 17691, + "TargetID": 17690, + "Directional": false + }, { + "SourceID": 17721, + "TargetID": 17720, + "Directional": false + }, { + "SourceID": 17726, + "TargetID": 17712, + "Directional": false + }, { + "SourceID": 17728, + "TargetID": 17729, + "Directional": false + }, { + "SourceID": 17746, + "TargetID": 17745, + "Directional": false + }, { + "SourceID": 18333, + "TargetID": 18332, + "Directional": false + }, { + "SourceID": 18338, + "TargetID": 18329, + "Directional": false + }, { + "SourceID": 18342, + "TargetID": 18341, + "Directional": false + }, { + "SourceID": 18345, + "TargetID": 18344, + "Directional": false + }, { + "SourceID": 18522, + "TargetID": 18521, + "Directional": false + }, { + "SourceID": 19142, + "TargetID": 19141, + "Directional": false + }, { + "SourceID": 22492, + "TargetID": 22493, + "Directional": false + }, { + "SourceID": 22496, + "TargetID": 22495, + "Directional": false + }, { + "SourceID": 22504, + "TargetID": 22503, + "Directional": false + }] + }, { + "ID": 468, + "SourceStructureID": 304, + "TargetStructureID": 419, + "Label": "304-419 via Adherens from 133532 -> 132581", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133532, + "TargetID": 132581, + "Directional": false + }] + }, { + "ID": 469, + "SourceStructureID": 304, + "TargetStructureID": 419, + "Label": "304-419 via Gap Junction from 131790 -> 131789, 133534 -> 133533", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131790, + "TargetID": 131789, + "Directional": false + }, { + "SourceID": 133534, + "TargetID": 133533, + "Directional": false + }] + }, { + "ID": 470, + "SourceStructureID": 304, + "TargetStructureID": 573, + "Label": "304-573 via Gap Junction from 18358 -> 18357, 20758 -> 18350, 135016 -> 135015", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 18358, + "TargetID": 18357, + "Directional": false + }, { + "SourceID": 20758, + "TargetID": 18350, + "Directional": false + }, { + "SourceID": 135016, + "TargetID": 135015, + "Directional": false + }] + }, { + "ID": 471, + "SourceStructureID": 2610, + "TargetStructureID": 304, + "Label": "2610-304 via Gap Junction from 2992 -> 17913, 17200 -> 17199, 17208 -> 17209, 17211 -> 17210, 17646 -> 3008, 17957 -> 2949, 17961 -> 2958, 18220 -> 18219, 18234 -> 18233, 18879 -> 18878", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 2992, + "TargetID": 17913, + "Directional": false + }, { + "SourceID": 17200, + "TargetID": 17199, + "Directional": false + }, { + "SourceID": 17208, + "TargetID": 17209, + "Directional": false + }, { + "SourceID": 17211, + "TargetID": 17210, + "Directional": false + }, { + "SourceID": 17646, + "TargetID": 3008, + "Directional": false + }, { + "SourceID": 17957, + "TargetID": 2949, + "Directional": false + }, { + "SourceID": 17961, + "TargetID": 2958, + "Directional": false + }, { + "SourceID": 18220, + "TargetID": 18219, + "Directional": false + }, { + "SourceID": 18234, + "TargetID": 18233, + "Directional": false + }, { + "SourceID": 18879, + "TargetID": 18878, + "Directional": false + }] + }, { + "ID": 472, + "SourceStructureID": 304, + "TargetStructureID": 6589, + "Label": "304-6589 via Gap Junction from 123722 -> 123721, 130588 -> 130587, 130596 -> 130595, 132757 -> 132756, 132772 -> 132771", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123722, + "TargetID": 123721, + "Directional": false + }, { + "SourceID": 130588, + "TargetID": 130587, + "Directional": false + }, { + "SourceID": 130596, + "TargetID": 130595, + "Directional": false + }, { + "SourceID": 132757, + "TargetID": 132756, + "Directional": false + }, { + "SourceID": 132772, + "TargetID": 132771, + "Directional": false + }] + }, { + "ID": 473, + "SourceStructureID": 304, + "TargetStructureID": 9693, + "Label": "304-9693 via Adherens from 135026 -> 135027", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135026, + "TargetID": 135027, + "Directional": false + }] + }, { + "ID": 474, + "SourceStructureID": 9693, + "TargetStructureID": 304, + "Label": "9693-304 via Gap Junction from 39224 -> 39223, 59563 -> 59564, 134725 -> 119902", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 39224, + "TargetID": 39223, + "Directional": false + }, { + "SourceID": 59563, + "TargetID": 59564, + "Directional": false + }, { + "SourceID": 134725, + "TargetID": 119902, + "Directional": false + }] + }, { + "ID": 475, + "SourceStructureID": 304, + "TargetStructureID": 15394, + "Label": "304-15394 via Adherens from 135017 -> 135018", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135017, + "TargetID": 135018, + "Directional": false + }] + }, { + "ID": 476, + "SourceStructureID": 17527, + "TargetStructureID": 304, + "Label": "17527-304 via Gap Junction from 17748 -> 17747", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17748, + "TargetID": 17747, + "Directional": false + }] + }, { + "ID": 477, + "SourceStructureID": 32654, + "TargetStructureID": 304, + "Label": "32654-304 via Gap Junction from 32656 -> 32655, 116365 -> 16469", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 32656, + "TargetID": 32655, + "Directional": false + }, { + "SourceID": 116365, + "TargetID": 16469, + "Directional": false + }] + }, { + "ID": 478, + "SourceStructureID": 40919, + "TargetStructureID": 304, + "Label": "40919-304 via Adherens from 60517 -> 60516", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60517, + "TargetID": 60516, + "Directional": false + }] + }, { + "ID": 479, + "SourceStructureID": 91176, + "TargetStructureID": 304, + "Label": "91176-304 via Gap Junction from 91184 -> 91185", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91184, + "TargetID": 91185, + "Directional": false + }] + }, { + "ID": 480, + "SourceStructureID": 324, + "TargetStructureID": 307, + "Label": "324-307 via Gap Junction from 32640 -> 32639, 83334 -> 83185", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 32640, + "TargetID": 32639, + "Directional": false + }, { + "SourceID": 83334, + "TargetID": 83185, + "Directional": false + }] + }, { + "ID": 481, + "SourceStructureID": 408, + "TargetStructureID": 307, + "Label": "408-307 via Gap Junction from 35766 -> 35767", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 35766, + "TargetID": 35767, + "Directional": false + }] + }, { + "ID": 482, + "SourceStructureID": 307, + "TargetStructureID": 410, + "Label": "307-410 via Gap Junction from 17693 -> 17692", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17693, + "TargetID": 17692, + "Directional": false + }] + }, { + "ID": 483, + "SourceStructureID": 606, + "TargetStructureID": 307, + "Label": "606-307 via Adherens from 45532 -> 45533", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 45532, + "TargetID": 45533, + "Directional": false + }] + }, { + "ID": 484, + "SourceStructureID": 307, + "TargetStructureID": 5513, + "Label": "307-5513 via Gap Junction from 16021 -> 12344, 16789 -> 60663", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16021, + "TargetID": 12344, + "Directional": false + }, { + "SourceID": 16789, + "TargetID": 60663, + "Directional": false + }] + }, { + "ID": 485, + "SourceStructureID": 307, + "TargetStructureID": 9769, + "Label": "307-9769 via Adherens from 15956 -> 15957", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 15956, + "TargetID": 15957, + "Directional": false + }] + }, { + "ID": 486, + "SourceStructureID": 307, + "TargetStructureID": 24303, + "Label": "307-24303 via Gap Junction from 121669 -> 121668, 122479 -> 122478, 122482 -> 122481", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121669, + "TargetID": 121668, + "Directional": false + }, { + "SourceID": 122479, + "TargetID": 122478, + "Directional": false + }, { + "SourceID": 122482, + "TargetID": 122481, + "Directional": false + }] + }, { + "ID": 487, + "SourceStructureID": 308, + "TargetStructureID": 308, + "Label": "308-308 via Adherens from 42581 -> 42582", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 42581, + "TargetID": 42582, + "Directional": false + }] + }, { + "ID": 488, + "SourceStructureID": 422, + "TargetStructureID": 308, + "Label": "422-308 via Adherens from 43100 -> 43099, 64542 -> 64541", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 43100, + "TargetID": 43099, + "Directional": false + }, { + "SourceID": 64542, + "TargetID": 64541, + "Directional": false + }] + }, { + "ID": 489, + "SourceStructureID": 308, + "TargetStructureID": 514, + "Label": "308-514 via Adherens from 42534 -> 13815, 43448 -> 43449, 43452 -> 43453, 43455 -> 43454, 43740 -> 43741, 86717 -> 42537", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 42534, + "TargetID": 13815, + "Directional": false + }, { + "SourceID": 43448, + "TargetID": 43449, + "Directional": false + }, { + "SourceID": 43452, + "TargetID": 43453, + "Directional": false + }, { + "SourceID": 43455, + "TargetID": 43454, + "Directional": false + }, { + "SourceID": 43740, + "TargetID": 43741, + "Directional": false + }, { + "SourceID": 86717, + "TargetID": 42537, + "Directional": false + }] + }, { + "ID": 490, + "SourceStructureID": 308, + "TargetStructureID": 573, + "Label": "308-573 via Adherens from 43530 -> 43531, 43532 -> 43533, 43549 -> 43539", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 43530, + "TargetID": 43531, + "Directional": false + }, { + "SourceID": 43532, + "TargetID": 43533, + "Directional": false + }, { + "SourceID": 43549, + "TargetID": 43539, + "Directional": false + }] + }, { + "ID": 491, + "SourceStructureID": 606, + "TargetStructureID": 308, + "Label": "606-308 via Touch from 86694 -> 86695", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 86694, + "TargetID": 86695, + "Directional": false + }] + }, { + "ID": 492, + "SourceStructureID": 2610, + "TargetStructureID": 308, + "Label": "2610-308 via Adherens from 43773 -> 43772, 43778 -> 43777", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 43773, + "TargetID": 43772, + "Directional": false + }, { + "SourceID": 43778, + "TargetID": 43777, + "Directional": false + }] + }, { + "ID": 493, + "SourceStructureID": 308, + "TargetStructureID": 3257, + "Label": "308-3257 via Adherens from 107207 -> 107208, 107210 -> 107209", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107207, + "TargetID": 107208, + "Directional": false + }, { + "SourceID": 107210, + "TargetID": 107209, + "Directional": false + }] + }, { + "ID": 494, + "SourceStructureID": 308, + "TargetStructureID": 5017, + "Label": "308-5017 via Adherens from 42562 -> 42563", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 42562, + "TargetID": 42563, + "Directional": false + }] + }, { + "ID": 495, + "SourceStructureID": 308, + "TargetStructureID": 6153, + "Label": "308-6153 via Adherens from 43106 -> 43107, 43108 -> 43109", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 43106, + "TargetID": 43107, + "Directional": false + }, { + "SourceID": 43108, + "TargetID": 43109, + "Directional": false + }] + }, { + "ID": 496, + "SourceStructureID": 308, + "TargetStructureID": 8749, + "Label": "308-8749 via Adherens from 42574 -> 42575, 42579 -> 42578, 43734 -> 43735", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 42574, + "TargetID": 42575, + "Directional": false + }, { + "SourceID": 42579, + "TargetID": 42578, + "Directional": false + }, { + "SourceID": 43734, + "TargetID": 43735, + "Directional": false + }] + }, { + "ID": 497, + "SourceStructureID": 17228, + "TargetStructureID": 308, + "Label": "17228-308 via Adherens from 43593 -> 43592, 43595 -> 43594", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 43593, + "TargetID": 43592, + "Directional": false + }, { + "SourceID": 43595, + "TargetID": 43594, + "Directional": false + }] + }, { + "ID": 498, + "SourceStructureID": 308, + "TargetStructureID": 18282, + "Label": "308-18282 via Touch from 86643 -> 86642", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 86643, + "TargetID": 86642, + "Directional": false + }] + }, { + "ID": 499, + "SourceStructureID": 25688, + "TargetStructureID": 308, + "Label": "25688-308 via Adherens from 42544 -> 42543", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 42544, + "TargetID": 42543, + "Directional": false + }] + }, { + "ID": 500, + "SourceStructureID": 308, + "TargetStructureID": 90409, + "Label": "308-90409 via Adherens from 107205 -> 107206", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107205, + "TargetID": 107206, + "Directional": false + }] + }, { + "ID": 501, + "SourceStructureID": 309, + "TargetStructureID": 309, + "Label": "309-309 via Adherens from 122368 -> 122367", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 122368, + "TargetID": 122367, + "Directional": false + }] + }, { + "ID": 502, + "SourceStructureID": 400, + "TargetStructureID": 309, + "Label": "400-309 via Adherens from 122373 -> 13267", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 122373, + "TargetID": 13267, + "Directional": false + }] + }, { + "ID": 503, + "SourceStructureID": 309, + "TargetStructureID": 410, + "Label": "309-410 via Gap Junction from 121624 -> 121625, 122293 -> 122294", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121624, + "TargetID": 121625, + "Directional": false + }, { + "SourceID": 122293, + "TargetID": 122294, + "Directional": false + }] + }, { + "ID": 504, + "SourceStructureID": 483, + "TargetStructureID": 309, + "Label": "483-309 via Touch from 122372 -> 122371", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 122372, + "TargetID": 122371, + "Directional": false + }] + }, { + "ID": 505, + "SourceStructureID": 309, + "TargetStructureID": 485, + "Label": "309-485 via Touch from 100045 -> 100044, 148007 -> 148006", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 100045, + "TargetID": 100044, + "Directional": false + }, { + "SourceID": 148007, + "TargetID": 148006, + "Directional": false + }] + }, { + "ID": 506, + "SourceStructureID": 309, + "TargetStructureID": 6153, + "Label": "309-6153 via Gap Junction from 13371 -> 14365, 121622 -> 13408", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 13371, + "TargetID": 14365, + "Directional": false + }, { + "SourceID": 121622, + "TargetID": 13408, + "Directional": false + }] + }, { + "ID": 507, + "SourceStructureID": 122353, + "TargetStructureID": 309, + "Label": "122353-309 via Gap Junction from 122354 -> 13388", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122354, + "TargetID": 13388, + "Directional": false + }] + }, { + "ID": 508, + "SourceStructureID": 318, + "TargetStructureID": 483, + "Label": "318-483 via Unknown from 135080 -> 135079", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135080, + "TargetID": 135079, + "Directional": false + }] + }, { + "ID": 509, + "SourceStructureID": 321, + "TargetStructureID": 324, + "Label": "321-324 via Gap Junction from 93940 -> 93941", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93940, + "TargetID": 93941, + "Directional": false + }] + }, { + "ID": 510, + "SourceStructureID": 324, + "TargetStructureID": 321, + "Label": "324-321 via Unknown from 96340 -> 96338", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96340, + "TargetID": 96338, + "Directional": false + }] + }, { + "ID": 511, + "SourceStructureID": 321, + "TargetStructureID": 327, + "Label": "321-327 via Adherens from 66264 -> 66263", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66264, + "TargetID": 66263, + "Directional": false + }] + }, { + "ID": 512, + "SourceStructureID": 327, + "TargetStructureID": 321, + "Label": "327-321 via Gap Junction from 66262 -> 65955, 115555 -> 115554, 122189 -> 122188", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 66262, + "TargetID": 65955, + "Directional": false + }, { + "SourceID": 115555, + "TargetID": 115554, + "Directional": false + }, { + "SourceID": 122189, + "TargetID": 122188, + "Directional": false + }] + }, { + "ID": 513, + "SourceStructureID": 327, + "TargetStructureID": 321, + "Label": "327-321 via Unknown from 115562 -> 115561", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115562, + "TargetID": 115561, + "Directional": false + }] + }, { + "ID": 514, + "SourceStructureID": 321, + "TargetStructureID": 366, + "Label": "321-366 via Gap Junction from 115564 -> 115563", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115564, + "TargetID": 115563, + "Directional": false + }] + }, { + "ID": 515, + "SourceStructureID": 479, + "TargetStructureID": 321, + "Label": "479-321 via Gap Junction from 38512 -> 38511, 56547 -> 56546", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38512, + "TargetID": 38511, + "Directional": false + }, { + "SourceID": 56547, + "TargetID": 56546, + "Directional": false + }] + }, { + "ID": 516, + "SourceStructureID": 321, + "TargetStructureID": 6153, + "Label": "321-6153 via Gap Junction from 115565 -> 17441, 115567 -> 115566", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115565, + "TargetID": 17441, + "Directional": false + }, { + "SourceID": 115567, + "TargetID": 115566, + "Directional": false + }] + }, { + "ID": 517, + "SourceStructureID": 32566, + "TargetStructureID": 321, + "Label": "32566-321 via Gap Junction from 122200 -> 122199", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122200, + "TargetID": 122199, + "Directional": false + }] + }, { + "ID": 518, + "SourceStructureID": 115557, + "TargetStructureID": 321, + "Label": "115557-321 via Gap Junction from 115558 -> 115556", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115558, + "TargetID": 115556, + "Directional": false + }] + }, { + "ID": 519, + "SourceStructureID": 115574, + "TargetStructureID": 321, + "Label": "115574-321 via Gap Junction from 115575 -> 115573", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115575, + "TargetID": 115573, + "Directional": false + }] + }, { + "ID": 520, + "SourceStructureID": 115577, + "TargetStructureID": 321, + "Label": "115577-321 via Unknown from 115578 -> 115576", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115578, + "TargetID": 115576, + "Directional": false + }] + }, { + "ID": 521, + "SourceStructureID": 324, + "TargetStructureID": 324, + "Label": "324-324 via Gap Junction from 12382 -> 93943, 55179 -> 53295, 93925 -> 93926, 96364 -> 96363", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 12382, + "TargetID": 93943, + "Directional": false + }, { + "SourceID": 55179, + "TargetID": 53295, + "Directional": false + }, { + "SourceID": 93925, + "TargetID": 93926, + "Directional": false + }, { + "SourceID": 96364, + "TargetID": 96363, + "Directional": false + }] + }, { + "ID": 522, + "SourceStructureID": 330, + "TargetStructureID": 324, + "Label": "330-324 via Gap Junction from 93778 -> 93777, 94056 -> 94055, 100805 -> 100804", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93778, + "TargetID": 93777, + "Directional": false + }, { + "SourceID": 94056, + "TargetID": 94055, + "Directional": false + }, { + "SourceID": 100805, + "TargetID": 100804, + "Directional": false + }] + }, { + "ID": 523, + "SourceStructureID": 330, + "TargetStructureID": 324, + "Label": "330-324 via Unknown from 94058 -> 94057", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94058, + "TargetID": 94057, + "Directional": false + }] + }, { + "ID": 524, + "SourceStructureID": 324, + "TargetStructureID": 364, + "Label": "324-364 via Adherens from 90351 -> 12817", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90351, + "TargetID": 12817, + "Directional": false + }] + }, { + "ID": 525, + "SourceStructureID": 364, + "TargetStructureID": 324, + "Label": "364-324 via Gap Junction from 90353 -> 90352, 93551 -> 93552", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90353, + "TargetID": 90352, + "Directional": false + }, { + "SourceID": 93551, + "TargetID": 93552, + "Directional": false + }] + }, { + "ID": 526, + "SourceStructureID": 324, + "TargetStructureID": 364, + "Label": "324-364 via Unknown from 94247 -> 94246", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94247, + "TargetID": 94246, + "Directional": false + }] + }, { + "ID": 527, + "SourceStructureID": 366, + "TargetStructureID": 324, + "Label": "366-324 via Gap Junction from 94078 -> 94079, 122251 -> 122252", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94078, + "TargetID": 94079, + "Directional": false + }, { + "SourceID": 122251, + "TargetID": 122252, + "Directional": false + }] + }, { + "ID": 528, + "SourceStructureID": 366, + "TargetStructureID": 324, + "Label": "366-324 via Touch from 135524 -> 135523", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 135524, + "TargetID": 135523, + "Directional": false + }] + }, { + "ID": 529, + "SourceStructureID": 372, + "TargetStructureID": 324, + "Label": "372-324 via Adherens from 94544 -> 94543", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94544, + "TargetID": 94543, + "Directional": false + }] + }, { + "ID": 530, + "SourceStructureID": 372, + "TargetStructureID": 324, + "Label": "372-324 via Unknown from 93541 -> 93540, 94103 -> 94102, 94455 -> 122343, 96381 -> 96380, 96391 -> 96392", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93541, + "TargetID": 93540, + "Directional": false + }, { + "SourceID": 94103, + "TargetID": 94102, + "Directional": false + }, { + "SourceID": 94455, + "TargetID": 122343, + "Directional": false + }, { + "SourceID": 96381, + "TargetID": 96380, + "Directional": false + }, { + "SourceID": 96391, + "TargetID": 96392, + "Directional": false + }] + }, { + "ID": 531, + "SourceStructureID": 324, + "TargetStructureID": 428, + "Label": "324-428 via Unknown from 94071 -> 94070", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94071, + "TargetID": 94070, + "Directional": false + }] + }, { + "ID": 532, + "SourceStructureID": 324, + "TargetStructureID": 476, + "Label": "324-476 via Gap Junction from 43559 -> 43560", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 43559, + "TargetID": 43560, + "Directional": false + }] + }, { + "ID": 533, + "SourceStructureID": 324, + "TargetStructureID": 476, + "Label": "324-476 via Unknown from 96947 -> 96948", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96947, + "TargetID": 96948, + "Directional": false + }] + }, { + "ID": 534, + "SourceStructureID": 324, + "TargetStructureID": 606, + "Label": "324-606 via Adherens from 53310 -> 53309, 53311 -> 53304", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 53310, + "TargetID": 53309, + "Directional": false + }, { + "SourceID": 53311, + "TargetID": 53304, + "Directional": false + }] + }, { + "ID": 535, + "SourceStructureID": 3116, + "TargetStructureID": 324, + "Label": "3116-324 via Gap Junction from 93704 -> 93703, 94450 -> 94451, 122347 -> 122348, 122349 -> 122350, 122352 -> 122351", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93704, + "TargetID": 93703, + "Directional": false + }, { + "SourceID": 94450, + "TargetID": 94451, + "Directional": false + }, { + "SourceID": 122347, + "TargetID": 122348, + "Directional": false + }, { + "SourceID": 122349, + "TargetID": 122350, + "Directional": false + }, { + "SourceID": 122352, + "TargetID": 122351, + "Directional": false + }] + }, { + "ID": 536, + "SourceStructureID": 4569, + "TargetStructureID": 324, + "Label": "4569-324 via Unknown from 94504 -> 94503", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94504, + "TargetID": 94503, + "Directional": false + }] + }, { + "ID": 537, + "SourceStructureID": 324, + "TargetStructureID": 4835, + "Label": "324-4835 via Gap Junction from 93554 -> 93553", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93554, + "TargetID": 93553, + "Directional": false + }] + }, { + "ID": 538, + "SourceStructureID": 324, + "TargetStructureID": 4835, + "Label": "324-4835 via Unknown from 94257 -> 94256", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94257, + "TargetID": 94256, + "Directional": false + }] + }, { + "ID": 539, + "SourceStructureID": 324, + "TargetStructureID": 6153, + "Label": "324-6153 via Gap Junction from 94096 -> 94095, 120592 -> 120591, 122331 -> 122330", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94096, + "TargetID": 94095, + "Directional": false + }, { + "SourceID": 120592, + "TargetID": 120591, + "Directional": false + }, { + "SourceID": 122331, + "TargetID": 122330, + "Directional": false + }] + }, { + "ID": 540, + "SourceStructureID": 324, + "TargetStructureID": 6153, + "Label": "324-6153 via Unknown from 93543 -> 93542", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93543, + "TargetID": 93542, + "Directional": false + }] + }, { + "ID": 541, + "SourceStructureID": 324, + "TargetStructureID": 9769, + "Label": "324-9769 via Adherens from 120596 -> 120597", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 120596, + "TargetID": 120597, + "Directional": false + }] + }, { + "ID": 542, + "SourceStructureID": 9769, + "TargetStructureID": 324, + "Label": "9769-324 via Unknown from 94113 -> 94112", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94113, + "TargetID": 94112, + "Directional": false + }] + }, { + "ID": 543, + "SourceStructureID": 30102, + "TargetStructureID": 324, + "Label": "30102-324 via Gap Junction from 30756 -> 30755", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 30756, + "TargetID": 30755, + "Directional": false + }] + }, { + "ID": 544, + "SourceStructureID": 32566, + "TargetStructureID": 324, + "Label": "32566-324 via Unknown from 93913 -> 93912", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93913, + "TargetID": 93912, + "Directional": false + }] + }, { + "ID": 545, + "SourceStructureID": 32608, + "TargetStructureID": 324, + "Label": "32608-324 via Unknown from 94067 -> 94066", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94067, + "TargetID": 94066, + "Directional": false + }] + }, { + "ID": 546, + "SourceStructureID": 324, + "TargetStructureID": 34263, + "Label": "324-34263 via Adherens from 94087 -> 94088", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94087, + "TargetID": 94088, + "Directional": false + }] + }, { + "ID": 547, + "SourceStructureID": 324, + "TargetStructureID": 34263, + "Label": "324-34263 via Unknown from 94086 -> 94085", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94086, + "TargetID": 94085, + "Directional": false + }] + }, { + "ID": 548, + "SourceStructureID": 324, + "TargetStructureID": 38632, + "Label": "324-38632 via Unknown from 93620 -> 93619, 94230 -> 94229", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93620, + "TargetID": 93619, + "Directional": false + }, { + "SourceID": 94230, + "TargetID": 94229, + "Directional": false + }] + }, { + "ID": 549, + "SourceStructureID": 324, + "TargetStructureID": 55517, + "Label": "324-55517 via Unknown from 122115 -> 122114", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 122115, + "TargetID": 122114, + "Directional": false + }] + }, { + "ID": 550, + "SourceStructureID": 66193, + "TargetStructureID": 324, + "Label": "66193-324 via Adherens from 94075 -> 94074", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94075, + "TargetID": 94074, + "Directional": false + }] + }, { + "ID": 551, + "SourceStructureID": 66193, + "TargetStructureID": 324, + "Label": "66193-324 via Unknown from 94077 -> 94076, 122117 -> 122116", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94077, + "TargetID": 94076, + "Directional": false + }, { + "SourceID": 122117, + "TargetID": 122116, + "Directional": false + }] + }, { + "ID": 552, + "SourceStructureID": 83375, + "TargetStructureID": 324, + "Label": "83375-324 via Unknown from 83377 -> 83376", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83377, + "TargetID": 83376, + "Directional": false + }] + }, { + "ID": 553, + "SourceStructureID": 324, + "TargetStructureID": 83382, + "Label": "324-83382 via Unknown from 96936 -> 96937", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96936, + "TargetID": 96937, + "Directional": false + }] + }, { + "ID": 554, + "SourceStructureID": 324, + "TargetStructureID": 83385, + "Label": "324-83385 via Adherens from 83403 -> 83404, 83436 -> 83437", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83403, + "TargetID": 83404, + "Directional": false + }, { + "SourceID": 83436, + "TargetID": 83437, + "Directional": false + }] + }, { + "ID": 555, + "SourceStructureID": 324, + "TargetStructureID": 83399, + "Label": "324-83399 via Adherens from 83400 -> 83401", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83400, + "TargetID": 83401, + "Directional": false + }] + }, { + "ID": 556, + "SourceStructureID": 83487, + "TargetStructureID": 324, + "Label": "83487-324 via Unknown from 83488 -> 83486", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83488, + "TargetID": 83486, + "Directional": false + }] + }, { + "ID": 557, + "SourceStructureID": 324, + "TargetStructureID": 83489, + "Label": "324-83489 via Unknown from 96969 -> 96970", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96969, + "TargetID": 96970, + "Directional": false + }] + }, { + "ID": 558, + "SourceStructureID": 324, + "TargetStructureID": 83541, + "Label": "324-83541 via Unknown from 83588 -> 83589, 96544 -> 96542", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83588, + "TargetID": 83589, + "Directional": false + }, { + "SourceID": 96544, + "TargetID": 96542, + "Directional": false + }] + }, { + "ID": 559, + "SourceStructureID": 83554, + "TargetStructureID": 324, + "Label": "83554-324 via Unknown from 83557 -> 83556", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83557, + "TargetID": 83556, + "Directional": false + }] + }, { + "ID": 560, + "SourceStructureID": 324, + "TargetStructureID": 83569, + "Label": "324-83569 via Adherens from 83570 -> 83571", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83570, + "TargetID": 83571, + "Directional": false + }] + }, { + "ID": 561, + "SourceStructureID": 324, + "TargetStructureID": 83572, + "Label": "324-83572 via Adherens from 83573 -> 83574", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83573, + "TargetID": 83574, + "Directional": false + }] + }, { + "ID": 562, + "SourceStructureID": 324, + "TargetStructureID": 90463, + "Label": "324-90463 via Unknown from 94486 -> 94487", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94486, + "TargetID": 94487, + "Directional": false + }] + }, { + "ID": 563, + "SourceStructureID": 93544, + "TargetStructureID": 324, + "Label": "93544-324 via Unknown from 93546 -> 93545", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93546, + "TargetID": 93545, + "Directional": false + }] + }, { + "ID": 564, + "SourceStructureID": 93621, + "TargetStructureID": 324, + "Label": "93621-324 via Unknown from 93622 -> 93623", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93622, + "TargetID": 93623, + "Directional": false + }] + }, { + "ID": 565, + "SourceStructureID": 324, + "TargetStructureID": 93915, + "Label": "324-93915 via Unknown from 93917 -> 93916", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93917, + "TargetID": 93916, + "Directional": false + }] + }, { + "ID": 566, + "SourceStructureID": 324, + "TargetStructureID": 93927, + "Label": "324-93927 via Unknown from 93933 -> 93932", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93933, + "TargetID": 93932, + "Directional": false + }] + }, { + "ID": 567, + "SourceStructureID": 93957, + "TargetStructureID": 324, + "Label": "93957-324 via Unknown from 93959 -> 93958", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93959, + "TargetID": 93958, + "Directional": false + }] + }, { + "ID": 568, + "SourceStructureID": 324, + "TargetStructureID": 94059, + "Label": "324-94059 via Unknown from 94062 -> 94061", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94062, + "TargetID": 94061, + "Directional": false + }] + }, { + "ID": 569, + "SourceStructureID": 94063, + "TargetStructureID": 324, + "Label": "94063-324 via Adherens from 94069 -> 94068", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94069, + "TargetID": 94068, + "Directional": false + }] + }, { + "ID": 570, + "SourceStructureID": 324, + "TargetStructureID": 94063, + "Label": "324-94063 via Unknown from 94064 -> 94065", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94064, + "TargetID": 94065, + "Directional": false + }] + }, { + "ID": 571, + "SourceStructureID": 94082, + "TargetStructureID": 324, + "Label": "94082-324 via Adherens from 94083 -> 94080", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94083, + "TargetID": 94080, + "Directional": false + }] + }, { + "ID": 572, + "SourceStructureID": 94090, + "TargetStructureID": 324, + "Label": "94090-324 via Unknown from 94091 -> 94089", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94091, + "TargetID": 94089, + "Directional": false + }] + }, { + "ID": 573, + "SourceStructureID": 324, + "TargetStructureID": 94097, + "Label": "324-94097 via Unknown from 94098 -> 94099", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94098, + "TargetID": 94099, + "Directional": false + }] + }, { + "ID": 574, + "SourceStructureID": 324, + "TargetStructureID": 94105, + "Label": "324-94105 via Unknown from 94107 -> 94106", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94107, + "TargetID": 94106, + "Directional": false + }] + }, { + "ID": 575, + "SourceStructureID": 324, + "TargetStructureID": 94220, + "Label": "324-94220 via Unknown from 94225 -> 94224", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94225, + "TargetID": 94224, + "Directional": false + }] + }, { + "ID": 576, + "SourceStructureID": 324, + "TargetStructureID": 94221, + "Label": "324-94221 via Unknown from 94222 -> 94223", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94222, + "TargetID": 94223, + "Directional": false + }] + }, { + "ID": 577, + "SourceStructureID": 94231, + "TargetStructureID": 324, + "Label": "94231-324 via Unknown from 94233 -> 94232, 94240 -> 94239", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94233, + "TargetID": 94232, + "Directional": false + }, { + "SourceID": 94240, + "TargetID": 94239, + "Directional": false + }] + }, { + "ID": 578, + "SourceStructureID": 94234, + "TargetStructureID": 324, + "Label": "94234-324 via Adherens from 94236 -> 94235", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94236, + "TargetID": 94235, + "Directional": false + }] + }, { + "ID": 579, + "SourceStructureID": 94234, + "TargetStructureID": 324, + "Label": "94234-324 via Unknown from 94238 -> 94237", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94238, + "TargetID": 94237, + "Directional": false + }] + }, { + "ID": 580, + "SourceStructureID": 94248, + "TargetStructureID": 324, + "Label": "94248-324 via Unknown from 94250 -> 94249", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94250, + "TargetID": 94249, + "Directional": false + }] + }, { + "ID": 581, + "SourceStructureID": 94279, + "TargetStructureID": 324, + "Label": "94279-324 via Unknown from 94287 -> 94286", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94287, + "TargetID": 94286, + "Directional": false + }] + }, { + "ID": 582, + "SourceStructureID": 94296, + "TargetStructureID": 324, + "Label": "94296-324 via Unknown from 94298 -> 94299", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94298, + "TargetID": 94299, + "Directional": false + }] + }, { + "ID": 583, + "SourceStructureID": 94453, + "TargetStructureID": 324, + "Label": "94453-324 via Unknown from 94454 -> 94452", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94454, + "TargetID": 94452, + "Directional": false + }] + }, { + "ID": 584, + "SourceStructureID": 324, + "TargetStructureID": 94462, + "Label": "324-94462 via Unknown from 94464 -> 94463", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94464, + "TargetID": 94463, + "Directional": false + }] + }, { + "ID": 585, + "SourceStructureID": 324, + "TargetStructureID": 94465, + "Label": "324-94465 via Unknown from 94467 -> 94466", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94467, + "TargetID": 94466, + "Directional": false + }] + }, { + "ID": 586, + "SourceStructureID": 327, + "TargetStructureID": 330, + "Label": "327-330 via Adherens from 25969 -> 25968", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 25969, + "TargetID": 25968, + "Directional": false + }] + }, { + "ID": 587, + "SourceStructureID": 327, + "TargetStructureID": 335, + "Label": "327-335 via Gap Junction from 122151 -> 122152", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122151, + "TargetID": 122152, + "Directional": false + }] + }, { + "ID": 588, + "SourceStructureID": 327, + "TargetStructureID": 335, + "Label": "327-335 via Unknown from 115618 -> 115619", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115618, + "TargetID": 115619, + "Directional": false + }] + }, { + "ID": 589, + "SourceStructureID": 327, + "TargetStructureID": 366, + "Label": "327-366 via Adherens from 115624 -> 115623", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115624, + "TargetID": 115623, + "Directional": false + }] + }, { + "ID": 590, + "SourceStructureID": 327, + "TargetStructureID": 366, + "Label": "327-366 via Gap Junction from 115622 -> 115616", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115622, + "TargetID": 115616, + "Directional": false + }] + }, { + "ID": 591, + "SourceStructureID": 431, + "TargetStructureID": 327, + "Label": "431-327 via Gap Junction from 14185 -> 14184, 115549 -> 115548", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14185, + "TargetID": 14184, + "Directional": false + }, { + "SourceID": 115549, + "TargetID": 115548, + "Directional": false + }] + }, { + "ID": 592, + "SourceStructureID": 327, + "TargetStructureID": 90007, + "Label": "327-90007 via Adherens from 122150 -> 90008", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 122150, + "TargetID": 90008, + "Directional": false + }] + }, { + "ID": 593, + "SourceStructureID": 327, + "TargetStructureID": 90007, + "Label": "327-90007 via Gap Junction from 122149 -> 90009", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122149, + "TargetID": 90009, + "Directional": false + }] + }, { + "ID": 594, + "SourceStructureID": 330, + "TargetStructureID": 330, + "Label": "330-330 via Gap Junction from 25910 -> 25909, 117832 -> 117831, 122140 -> 12353", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 25910, + "TargetID": 25909, + "Directional": false + }, { + "SourceID": 117832, + "TargetID": 117831, + "Directional": false + }, { + "SourceID": 122140, + "TargetID": 12353, + "Directional": false + }] + }, { + "ID": 595, + "SourceStructureID": 335, + "TargetStructureID": 330, + "Label": "335-330 via Adherens from 26138 -> 26137", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 26138, + "TargetID": 26137, + "Directional": false + }] + }, { + "ID": 596, + "SourceStructureID": 335, + "TargetStructureID": 330, + "Label": "335-330 via Gap Junction from 14170 -> 14171, 26136 -> 1042, 30088 -> 30087, 38710 -> 38709, 60054 -> 60055, 117815 -> 117816, 122118 -> 122119, 122121 -> 122120", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14170, + "TargetID": 14171, + "Directional": false + }, { + "SourceID": 26136, + "TargetID": 1042, + "Directional": false + }, { + "SourceID": 30088, + "TargetID": 30087, + "Directional": false + }, { + "SourceID": 38710, + "TargetID": 38709, + "Directional": false + }, { + "SourceID": 60054, + "TargetID": 60055, + "Directional": false + }, { + "SourceID": 117815, + "TargetID": 117816, + "Directional": false + }, { + "SourceID": 122118, + "TargetID": 122119, + "Directional": false + }, { + "SourceID": 122121, + "TargetID": 122120, + "Directional": false + }] + }, { + "ID": 597, + "SourceStructureID": 364, + "TargetStructureID": 330, + "Label": "364-330 via Adherens from 12868 -> 12869", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 12868, + "TargetID": 12869, + "Directional": false + }] + }, { + "ID": 598, + "SourceStructureID": 364, + "TargetStructureID": 330, + "Label": "364-330 via Gap Junction from 38681 -> 26199, 122825 -> 122826, 122827 -> 122828, 122843 -> 26182", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38681, + "TargetID": 26199, + "Directional": false + }, { + "SourceID": 122825, + "TargetID": 122826, + "Directional": false + }, { + "SourceID": 122827, + "TargetID": 122828, + "Directional": false + }, { + "SourceID": 122843, + "TargetID": 26182, + "Directional": false + }] + }, { + "ID": 599, + "SourceStructureID": 606, + "TargetStructureID": 330, + "Label": "606-330 via Adherens from 52981 -> 52982", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 52981, + "TargetID": 52982, + "Directional": false + }] + }, { + "ID": 600, + "SourceStructureID": 330, + "TargetStructureID": 6165, + "Label": "330-6165 via Gap Junction from 118055 -> 118054", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118055, + "TargetID": 118054, + "Directional": false + }] + }, { + "ID": 601, + "SourceStructureID": 330, + "TargetStructureID": 7157, + "Label": "330-7157 via Gap Junction from 25967 -> 21440, 26195 -> 26116, 122142 -> 122141", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 25967, + "TargetID": 21440, + "Directional": false + }, { + "SourceID": 26195, + "TargetID": 26116, + "Directional": false + }, { + "SourceID": 122142, + "TargetID": 122141, + "Directional": false + }] + }, { + "ID": 602, + "SourceStructureID": 38632, + "TargetStructureID": 330, + "Label": "38632-330 via Adherens from 38668 -> 26160, 38669 -> 26159", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 38668, + "TargetID": 26160, + "Directional": false + }, { + "SourceID": 38669, + "TargetID": 26159, + "Directional": false + }] + }, { + "ID": 603, + "SourceStructureID": 330, + "TargetStructureID": 118058, + "Label": "330-118058 via Gap Junction from 38692 -> 118059, 118063 -> 118061", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38692, + "TargetID": 118059, + "Directional": false + }, { + "SourceID": 118063, + "TargetID": 118061, + "Directional": false + }] + }, { + "ID": 604, + "SourceStructureID": 332, + "TargetStructureID": 461, + "Label": "332-461 via Adherens from 94872 -> 14884", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94872, + "TargetID": 14884, + "Directional": false + }] + }, { + "ID": 605, + "SourceStructureID": 461, + "TargetStructureID": 332, + "Label": "461-332 via Gap Junction from 60147 -> 60146", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60147, + "TargetID": 60146, + "Directional": false + }] + }, { + "ID": 606, + "SourceStructureID": 461, + "TargetStructureID": 332, + "Label": "461-332 via Unknown from 94875 -> 94874", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94875, + "TargetID": 94874, + "Directional": false + }] + }, { + "ID": 607, + "SourceStructureID": 332, + "TargetStructureID": 483, + "Label": "332-483 via Gap Junction from 60149 -> 60150", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60149, + "TargetID": 60150, + "Directional": false + }] + }, { + "ID": 608, + "SourceStructureID": 4835, + "TargetStructureID": 332, + "Label": "4835-332 via Gap Junction from 35170 -> 35169", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 35170, + "TargetID": 35169, + "Directional": false + }] + }, { + "ID": 609, + "SourceStructureID": 6153, + "TargetStructureID": 332, + "Label": "6153-332 via Gap Junction from 95005 -> 25138", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 95005, + "TargetID": 25138, + "Directional": false + }] + }, { + "ID": 610, + "SourceStructureID": 332, + "TargetStructureID": 7157, + "Label": "332-7157 via Gap Junction from 24535 -> 24534, 26257 -> 26256, 33183 -> 33182, 94893 -> 94892, 94928 -> 94927, 95031 -> 95032, 95202 -> 95201", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24535, + "TargetID": 24534, + "Directional": false + }, { + "SourceID": 26257, + "TargetID": 26256, + "Directional": false + }, { + "SourceID": 33183, + "TargetID": 33182, + "Directional": false + }, { + "SourceID": 94893, + "TargetID": 94892, + "Directional": false + }, { + "SourceID": 94928, + "TargetID": 94927, + "Directional": false + }, { + "SourceID": 95031, + "TargetID": 95032, + "Directional": false + }, { + "SourceID": 95202, + "TargetID": 95201, + "Directional": false + }] + }, { + "ID": 611, + "SourceStructureID": 332, + "TargetStructureID": 7468, + "Label": "332-7468 via Gap Junction from 95111 -> 31744", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 95111, + "TargetID": 31744, + "Directional": false + }] + }, { + "ID": 612, + "SourceStructureID": 48416, + "TargetStructureID": 332, + "Label": "48416-332 via Gap Junction from 48417 -> 48415", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48417, + "TargetID": 48415, + "Directional": false + }] + }, { + "ID": 613, + "SourceStructureID": 332, + "TargetStructureID": 95019, + "Label": "332-95019 via Unknown from 95018 -> 95026", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95018, + "TargetID": 95026, + "Directional": false + }] + }, { + "ID": 614, + "SourceStructureID": 95205, + "TargetStructureID": 332, + "Label": "95205-332 via Gap Junction from 95206 -> 95204", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 95206, + "TargetID": 95204, + "Directional": false + }] + }, { + "ID": 615, + "SourceStructureID": 332, + "TargetStructureID": 95207, + "Label": "332-95207 via Unknown from 95209 -> 95208", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95209, + "TargetID": 95208, + "Directional": false + }] + }, { + "ID": 616, + "SourceStructureID": 96487, + "TargetStructureID": 332, + "Label": "96487-332 via Adherens from 96490 -> 94877", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96490, + "TargetID": 94877, + "Directional": false + }] + }, { + "ID": 617, + "SourceStructureID": 332, + "TargetStructureID": 96487, + "Label": "332-96487 via Gap Junction from 96496 -> 96495", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96496, + "TargetID": 96495, + "Directional": false + }] + }, { + "ID": 618, + "SourceStructureID": 96506, + "TargetStructureID": 332, + "Label": "96506-332 via Unknown from 96510 -> 96511", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96510, + "TargetID": 96511, + "Directional": false + }] + }, { + "ID": 619, + "SourceStructureID": 96528, + "TargetStructureID": 332, + "Label": "96528-332 via Unknown from 96529 -> 96527", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96529, + "TargetID": 96527, + "Directional": false + }] + }, { + "ID": 620, + "SourceStructureID": 96565, + "TargetStructureID": 332, + "Label": "96565-332 via Adherens from 96566 -> 96564", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96566, + "TargetID": 96564, + "Directional": false + }] + }, { + "ID": 621, + "SourceStructureID": 332, + "TargetStructureID": 96584, + "Label": "332-96584 via Gap Junction from 96586 -> 96585", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96586, + "TargetID": 96585, + "Directional": false + }] + }, { + "ID": 622, + "SourceStructureID": 32681, + "TargetStructureID": 334, + "Label": "32681-334 via Adherens from 64578 -> 64579", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64578, + "TargetID": 64579, + "Directional": false + }] + }, { + "ID": 623, + "SourceStructureID": 335, + "TargetStructureID": 344, + "Label": "335-344 via Gap Junction from 117833 -> 117827", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117833, + "TargetID": 117827, + "Directional": false + }] + }, { + "ID": 624, + "SourceStructureID": 366, + "TargetStructureID": 335, + "Label": "366-335 via Adherens from 13617 -> 13640", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 13617, + "TargetID": 13640, + "Directional": false + }] + }, { + "ID": 625, + "SourceStructureID": 24366, + "TargetStructureID": 335, + "Label": "24366-335 via Gap Junction from 122154 -> 122153", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122154, + "TargetID": 122153, + "Directional": false + }] + }, { + "ID": 626, + "SourceStructureID": 31710, + "TargetStructureID": 335, + "Label": "31710-335 via Gap Junction from 52672 -> 52673", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52672, + "TargetID": 52673, + "Directional": false + }] + }, { + "ID": 627, + "SourceStructureID": 440, + "TargetStructureID": 344, + "Label": "440-344 via Gap Junction from 117829 -> 117830", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117829, + "TargetID": 117830, + "Directional": false + }] + }, { + "ID": 628, + "SourceStructureID": 344, + "TargetStructureID": 7157, + "Label": "344-7157 via Gap Junction from 119037 -> 122641", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119037, + "TargetID": 122641, + "Directional": false + }] + }, { + "ID": 629, + "SourceStructureID": 344, + "TargetStructureID": 7468, + "Label": "344-7468 via Gap Junction from 31740 -> 31739, 31742 -> 31741, 47853 -> 31736, 117819 -> 117818", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 31740, + "TargetID": 31739, + "Directional": false + }, { + "SourceID": 31742, + "TargetID": 31741, + "Directional": false + }, { + "SourceID": 47853, + "TargetID": 31736, + "Directional": false + }, { + "SourceID": 117819, + "TargetID": 117818, + "Directional": false + }] + }, { + "ID": 630, + "SourceStructureID": 344, + "TargetStructureID": 118058, + "Label": "344-118058 via Gap Junction from 122610 -> 118065", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122610, + "TargetID": 118065, + "Directional": false + }] + }, { + "ID": 631, + "SourceStructureID": 119028, + "TargetStructureID": 344, + "Label": "119028-344 via Gap Junction from 119030 -> 119027", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119030, + "TargetID": 119027, + "Directional": false + }] + }, { + "ID": 632, + "SourceStructureID": 5860, + "TargetStructureID": 352, + "Label": "5860-352 via Adherens from 90689 -> 90688, 90691 -> 90690, 90693 -> 90692", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90689, + "TargetID": 90688, + "Directional": false + }, { + "SourceID": 90691, + "TargetID": 90690, + "Directional": false + }, { + "SourceID": 90693, + "TargetID": 90692, + "Directional": false + }] + }, { + "ID": 633, + "SourceStructureID": 9260, + "TargetStructureID": 352, + "Label": "9260-352 via Adherens from 90687 -> 90686", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90687, + "TargetID": 90686, + "Directional": false + }] + }, { + "ID": 634, + "SourceStructureID": 11238, + "TargetStructureID": 353, + "Label": "11238-353 via Adherens from 136121 -> 136122", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136121, + "TargetID": 136122, + "Directional": false + }] + }, { + "ID": 635, + "SourceStructureID": 135225, + "TargetStructureID": 354, + "Label": "135225-354 via Touch from 135913 -> 135912", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 135913, + "TargetID": 135912, + "Directional": false + }] + }, { + "ID": 636, + "SourceStructureID": 364, + "TargetStructureID": 364, + "Label": "364-364 via Unknown from 92580 -> 92581", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92580, + "TargetID": 92581, + "Directional": false + }] + }, { + "ID": 637, + "SourceStructureID": 364, + "TargetStructureID": 366, + "Label": "364-366 via Gap Junction from 14073 -> 14057, 115637 -> 115638", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14073, + "TargetID": 14057, + "Directional": false + }, { + "SourceID": 115637, + "TargetID": 115638, + "Directional": false + }] + }, { + "ID": 638, + "SourceStructureID": 364, + "TargetStructureID": 366, + "Label": "364-366 via Unknown from 115640 -> 115639", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115640, + "TargetID": 115639, + "Directional": false + }] + }, { + "ID": 639, + "SourceStructureID": 364, + "TargetStructureID": 431, + "Label": "364-431 via Adherens from 12870 -> 12790", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 12870, + "TargetID": 12790, + "Directional": false + }] + }, { + "ID": 640, + "SourceStructureID": 431, + "TargetStructureID": 364, + "Label": "431-364 via Gap Junction from 38580 -> 12893, 55262 -> 12896, 120609 -> 120606, 120610 -> 120611, 122814 -> 122813, 122837 -> 122836, 122864 -> 122863", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38580, + "TargetID": 12893, + "Directional": false + }, { + "SourceID": 55262, + "TargetID": 12896, + "Directional": false + }, { + "SourceID": 120609, + "TargetID": 120606, + "Directional": false + }, { + "SourceID": 120610, + "TargetID": 120611, + "Directional": false + }, { + "SourceID": 122814, + "TargetID": 122813, + "Directional": false + }, { + "SourceID": 122837, + "TargetID": 122836, + "Directional": false + }, { + "SourceID": 122864, + "TargetID": 122863, + "Directional": false + }] + }, { + "ID": 641, + "SourceStructureID": 364, + "TargetStructureID": 3116, + "Label": "364-3116 via Gap Junction from 92472 -> 46562", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92472, + "TargetID": 46562, + "Directional": false + }] + }, { + "ID": 642, + "SourceStructureID": 4569, + "TargetStructureID": 364, + "Label": "4569-364 via Gap Junction from 98737 -> 98738", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98737, + "TargetID": 98738, + "Directional": false + }] + }, { + "ID": 643, + "SourceStructureID": 364, + "TargetStructureID": 4569, + "Label": "364-4569 via Unknown from 98948 -> 98947", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98948, + "TargetID": 98947, + "Directional": false + }] + }, { + "ID": 644, + "SourceStructureID": 364, + "TargetStructureID": 20299, + "Label": "364-20299 via Adherens from 55260 -> 55259", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 55260, + "TargetID": 55259, + "Directional": false + }] + }, { + "ID": 645, + "SourceStructureID": 372, + "TargetStructureID": 366, + "Label": "372-366 via Gap Junction from 71880 -> 71879, 122296 -> 122290, 122305 -> 122306", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71880, + "TargetID": 71879, + "Directional": false + }, { + "SourceID": 122296, + "TargetID": 122290, + "Directional": false + }, { + "SourceID": 122305, + "TargetID": 122306, + "Directional": false + }] + }, { + "ID": 646, + "SourceStructureID": 419, + "TargetStructureID": 366, + "Label": "419-366 via Touch from 131762 -> 131763, 131764 -> 131765", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 131762, + "TargetID": 131763, + "Directional": false + }, { + "SourceID": 131764, + "TargetID": 131765, + "Directional": false + }] + }, { + "ID": 647, + "SourceStructureID": 366, + "TargetStructureID": 428, + "Label": "366-428 via Adherens from 13650 -> 13651, 13968 -> 13969", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 13650, + "TargetID": 13651, + "Directional": false + }, { + "SourceID": 13968, + "TargetID": 13969, + "Directional": false + }] + }, { + "ID": 648, + "SourceStructureID": 428, + "TargetStructureID": 366, + "Label": "428-366 via Gap Junction from 114672 -> 114671, 115612 -> 115611, 115646 -> 115645", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 114672, + "TargetID": 114671, + "Directional": false + }, { + "SourceID": 115612, + "TargetID": 115611, + "Directional": false + }, { + "SourceID": 115646, + "TargetID": 115645, + "Directional": false + }] + }, { + "ID": 649, + "SourceStructureID": 428, + "TargetStructureID": 366, + "Label": "428-366 via Unknown from 115650 -> 115649", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115650, + "TargetID": 115649, + "Directional": false + }] + }, { + "ID": 650, + "SourceStructureID": 479, + "TargetStructureID": 366, + "Label": "479-366 via Gap Junction from 115653 -> 115651", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115653, + "TargetID": 115651, + "Directional": false + }] + }, { + "ID": 651, + "SourceStructureID": 366, + "TargetStructureID": 6153, + "Label": "366-6153 via Gap Junction from 13665 -> 17472, 17444 -> 13981, 122250 -> 122249, 122303 -> 122304", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 13665, + "TargetID": 17472, + "Directional": false + }, { + "SourceID": 17444, + "TargetID": 13981, + "Directional": false + }, { + "SourceID": 122250, + "TargetID": 122249, + "Directional": false + }, { + "SourceID": 122303, + "TargetID": 122304, + "Directional": false + }] + }, { + "ID": 652, + "SourceStructureID": 7157, + "TargetStructureID": 366, + "Label": "7157-366 via Gap Junction from 18168 -> 18169", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 18168, + "TargetID": 18169, + "Directional": false + }] + }, { + "ID": 653, + "SourceStructureID": 20299, + "TargetStructureID": 366, + "Label": "20299-366 via Adherens from 55261 -> 14103", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 55261, + "TargetID": 14103, + "Directional": false + }] + }, { + "ID": 654, + "SourceStructureID": 366, + "TargetStructureID": 33148, + "Label": "366-33148 via Unknown from 115609 -> 115610", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115609, + "TargetID": 115610, + "Directional": false + }] + }, { + "ID": 655, + "SourceStructureID": 366, + "TargetStructureID": 66138, + "Label": "366-66138 via Gap Junction from 66187 -> 66188", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 66187, + "TargetID": 66188, + "Directional": false + }] + }, { + "ID": 656, + "SourceStructureID": 115602, + "TargetStructureID": 366, + "Label": "115602-366 via Gap Junction from 115603 -> 115601, 115608 -> 115607", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115603, + "TargetID": 115601, + "Directional": false + }, { + "SourceID": 115608, + "TargetID": 115607, + "Directional": false + }] + }, { + "ID": 657, + "SourceStructureID": 115605, + "TargetStructureID": 366, + "Label": "115605-366 via Gap Junction from 115606 -> 115604", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115606, + "TargetID": 115604, + "Directional": false + }] + }, { + "ID": 658, + "SourceStructureID": 366, + "TargetStructureID": 115613, + "Label": "366-115613 via Unknown from 115615 -> 115614", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115615, + "TargetID": 115614, + "Directional": false + }] + }, { + "ID": 659, + "SourceStructureID": 115626, + "TargetStructureID": 366, + "Label": "115626-366 via Gap Junction from 115627 -> 115625", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115627, + "TargetID": 115625, + "Directional": false + }] + }, { + "ID": 660, + "SourceStructureID": 115641, + "TargetStructureID": 366, + "Label": "115641-366 via Gap Junction from 115643 -> 13947", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115643, + "TargetID": 13947, + "Directional": false + }] + }, { + "ID": 661, + "SourceStructureID": 366, + "TargetStructureID": 115647, + "Label": "366-115647 via Gap Junction from 14104 -> 115648", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14104, + "TargetID": 115648, + "Directional": false + }] + }, { + "ID": 662, + "SourceStructureID": 115658, + "TargetStructureID": 366, + "Label": "115658-366 via Unknown from 115659 -> 115657", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115659, + "TargetID": 115657, + "Directional": false + }] + }, { + "ID": 663, + "SourceStructureID": 115660, + "TargetStructureID": 366, + "Label": "115660-366 via Gap Junction from 115661 -> 13623", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115661, + "TargetID": 13623, + "Directional": false + }] + }, { + "ID": 664, + "SourceStructureID": 372, + "TargetStructureID": 410, + "Label": "372-410 via Gap Junction from 21365 -> 17300", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 21365, + "TargetID": 17300, + "Directional": false + }] + }, { + "ID": 665, + "SourceStructureID": 372, + "TargetStructureID": 412, + "Label": "372-412 via Unknown from 122389 -> 122388", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 122389, + "TargetID": 122388, + "Directional": false + }] + }, { + "ID": 666, + "SourceStructureID": 372, + "TargetStructureID": 428, + "Label": "372-428 via Gap Junction from 122297 -> 122291, 122342 -> 122341", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122297, + "TargetID": 122291, + "Directional": false + }, { + "SourceID": 122342, + "TargetID": 122341, + "Directional": false + }] + }, { + "ID": 667, + "SourceStructureID": 479, + "TargetStructureID": 372, + "Label": "479-372 via Gap Junction from 58760 -> 58759, 58791 -> 58792, 71860 -> 71859, 121783 -> 121784, 122320 -> 122319", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 58760, + "TargetID": 58759, + "Directional": false + }, { + "SourceID": 58791, + "TargetID": 58792, + "Directional": false + }, { + "SourceID": 71860, + "TargetID": 71859, + "Directional": false + }, { + "SourceID": 121783, + "TargetID": 121784, + "Directional": false + }, { + "SourceID": 122320, + "TargetID": 122319, + "Directional": false + }] + }, { + "ID": 668, + "SourceStructureID": 372, + "TargetStructureID": 3116, + "Label": "372-3116 via Gap Junction from 55066 -> 122362, 122334 -> 122333", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55066, + "TargetID": 122362, + "Directional": false + }, { + "SourceID": 122334, + "TargetID": 122333, + "Directional": false + }] + }, { + "ID": 669, + "SourceStructureID": 372, + "TargetStructureID": 6153, + "Label": "372-6153 via Gap Junction from 30978 -> 8404, 30983 -> 13785, 46909 -> 55341, 115631 -> 8405, 122327 -> 8403, 131410 -> 131409", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 30978, + "TargetID": 8404, + "Directional": false + }, { + "SourceID": 30983, + "TargetID": 13785, + "Directional": false + }, { + "SourceID": 46909, + "TargetID": 55341, + "Directional": false + }, { + "SourceID": 115631, + "TargetID": 8405, + "Directional": false + }, { + "SourceID": 122327, + "TargetID": 8403, + "Directional": false + }, { + "SourceID": 131410, + "TargetID": 131409, + "Directional": false + }] + }, { + "ID": 670, + "SourceStructureID": 24401, + "TargetStructureID": 372, + "Label": "24401-372 via Gap Junction from 121696 -> 121693", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121696, + "TargetID": 121693, + "Directional": false + }] + }, { + "ID": 671, + "SourceStructureID": 372, + "TargetStructureID": 32577, + "Label": "372-32577 via Adherens from 71840 -> 71839", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71840, + "TargetID": 71839, + "Directional": false + }] + }, { + "ID": 672, + "SourceStructureID": 372, + "TargetStructureID": 71531, + "Label": "372-71531 via Adherens from 71532 -> 71533", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71532, + "TargetID": 71533, + "Directional": false + }] + }, { + "ID": 673, + "SourceStructureID": 372, + "TargetStructureID": 71541, + "Label": "372-71541 via Adherens from 71864 -> 71863", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71864, + "TargetID": 71863, + "Directional": false + }] + }, { + "ID": 674, + "SourceStructureID": 372, + "TargetStructureID": 71556, + "Label": "372-71556 via Adherens from 71858 -> 71857", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71858, + "TargetID": 71857, + "Directional": false + }] + }, { + "ID": 675, + "SourceStructureID": 372, + "TargetStructureID": 71566, + "Label": "372-71566 via Adherens from 71875 -> 71876", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71875, + "TargetID": 71876, + "Directional": false + }] + }, { + "ID": 676, + "SourceStructureID": 380, + "TargetStructureID": 410, + "Label": "380-410 via Adherens from 23132 -> 23131", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 23132, + "TargetID": 23131, + "Directional": false + }] + }, { + "ID": 677, + "SourceStructureID": 8575, + "TargetStructureID": 389, + "Label": "8575-389 via Adherens from 62130 -> 62131, 62143 -> 62142", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 62130, + "TargetID": 62131, + "Directional": false + }, { + "SourceID": 62143, + "TargetID": 62142, + "Directional": false + }] + }, { + "ID": 678, + "SourceStructureID": 390, + "TargetStructureID": 483, + "Label": "390-483 via Unknown from 134075 -> 134076", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134075, + "TargetID": 134076, + "Directional": false + }] + }, { + "ID": 679, + "SourceStructureID": 6156, + "TargetStructureID": 390, + "Label": "6156-390 via Adherens from 133428 -> 133429", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133428, + "TargetID": 133429, + "Directional": false + }] + }, { + "ID": 680, + "SourceStructureID": 390, + "TargetStructureID": 6156, + "Label": "390-6156 via Unknown from 133166 -> 133167", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133166, + "TargetID": 133167, + "Directional": false + }] + }, { + "ID": 681, + "SourceStructureID": 9693, + "TargetStructureID": 390, + "Label": "9693-390 via Adherens from 119706 -> 119707", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 119706, + "TargetID": 119707, + "Directional": false + }] + }, { + "ID": 682, + "SourceStructureID": 390, + "TargetStructureID": 9693, + "Label": "390-9693 via Unknown from 134743 -> 119831", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134743, + "TargetID": 119831, + "Directional": false + }] + }, { + "ID": 683, + "SourceStructureID": 391, + "TargetStructureID": 2610, + "Label": "391-2610 via Adherens from 108206 -> 108207", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108206, + "TargetID": 108207, + "Directional": false + }] + }, { + "ID": 684, + "SourceStructureID": 391, + "TargetStructureID": 2610, + "Label": "391-2610 via Unknown from 108313 -> 108314", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108313, + "TargetID": 108314, + "Directional": false + }] + }, { + "ID": 685, + "SourceStructureID": 5345, + "TargetStructureID": 391, + "Label": "5345-391 via Adherens from 108202 -> 108201, 108203 -> 108204, 108537 -> 108536", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108202, + "TargetID": 108201, + "Directional": false + }, { + "SourceID": 108203, + "TargetID": 108204, + "Directional": false + }, { + "SourceID": 108537, + "TargetID": 108536, + "Directional": false + }] + }, { + "ID": 686, + "SourceStructureID": 391, + "TargetStructureID": 10897, + "Label": "391-10897 via Adherens from 108376 -> 108377", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108376, + "TargetID": 108377, + "Directional": false + }] + }, { + "ID": 687, + "SourceStructureID": 391, + "TargetStructureID": 10897, + "Label": "391-10897 via Unknown from 108366 -> 108367, 108391 -> 108392", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108366, + "TargetID": 108367, + "Directional": false + }, { + "SourceID": 108391, + "TargetID": 108392, + "Directional": false + }] + }, { + "ID": 688, + "SourceStructureID": 391, + "TargetStructureID": 20728, + "Label": "391-20728 via Unknown from 108176 -> 108177", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108176, + "TargetID": 108177, + "Directional": false + }] + }, { + "ID": 689, + "SourceStructureID": 391, + "TargetStructureID": 89305, + "Label": "391-89305 via Unknown from 108509 -> 108510", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108509, + "TargetID": 108510, + "Directional": false + }] + }, { + "ID": 690, + "SourceStructureID": 398, + "TargetStructureID": 397, + "Label": "398-397 via Gap Junction from 122656 -> 122655, 122667 -> 122666, 122680 -> 122679, 122684 -> 122683, 122694 -> 122695", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122656, + "TargetID": 122655, + "Directional": false + }, { + "SourceID": 122667, + "TargetID": 122666, + "Directional": false + }, { + "SourceID": 122680, + "TargetID": 122679, + "Directional": false + }, { + "SourceID": 122684, + "TargetID": 122683, + "Directional": false + }, { + "SourceID": 122694, + "TargetID": 122695, + "Directional": false + }] + }, { + "ID": 691, + "SourceStructureID": 397, + "TargetStructureID": 24303, + "Label": "397-24303 via Gap Junction from 55335 -> 122393, 55348 -> 55338", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55335, + "TargetID": 122393, + "Directional": false + }, { + "SourceID": 55348, + "TargetID": 55338, + "Directional": false + }] + }, { + "ID": 692, + "SourceStructureID": 398, + "TargetStructureID": 398, + "Label": "398-398 via Gap Junction from 122691 -> 122692", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122691, + "TargetID": 122692, + "Directional": false + }] + }, { + "ID": 693, + "SourceStructureID": 398, + "TargetStructureID": 45731, + "Label": "398-45731 via Gap Junction from 122696 -> 122697", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122696, + "TargetID": 122697, + "Directional": false + }] + }, { + "ID": 694, + "SourceStructureID": 6589, + "TargetStructureID": 400, + "Label": "6589-400 via Adherens from 130599 -> 130604", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130599, + "TargetID": 130604, + "Directional": false + }] + }, { + "ID": 695, + "SourceStructureID": 400, + "TargetStructureID": 9693, + "Label": "400-9693 via Adherens from 59566 -> 59565, 130580 -> 130581, 131733 -> 120120", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59566, + "TargetID": 59565, + "Directional": false + }, { + "SourceID": 130580, + "TargetID": 130581, + "Directional": false + }, { + "SourceID": 131733, + "TargetID": 120120, + "Directional": false + }] + }, { + "ID": 696, + "SourceStructureID": 405, + "TargetStructureID": 408, + "Label": "405-408 via Adherens from 37589 -> 37590", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 37589, + "TargetID": 37590, + "Directional": false + }] + }, { + "ID": 697, + "SourceStructureID": 410, + "TargetStructureID": 408, + "Label": "410-408 via Gap Junction from 8355 -> 22509, 25883 -> 8357, 35795 -> 8356, 35808 -> 8350, 35898 -> 17694, 47120 -> 9364", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 8355, + "TargetID": 22509, + "Directional": false + }, { + "SourceID": 25883, + "TargetID": 8357, + "Directional": false + }, { + "SourceID": 35795, + "TargetID": 8356, + "Directional": false + }, { + "SourceID": 35808, + "TargetID": 8350, + "Directional": false + }, { + "SourceID": 35898, + "TargetID": 17694, + "Directional": false + }, { + "SourceID": 47120, + "TargetID": 9364, + "Directional": false + }] + }, { + "ID": 698, + "SourceStructureID": 408, + "TargetStructureID": 479, + "Label": "408-479 via Gap Junction from 121738 -> 121737", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121738, + "TargetID": 121737, + "Directional": false + }] + }, { + "ID": 699, + "SourceStructureID": 408, + "TargetStructureID": 6155, + "Label": "408-6155 via Gap Junction from 49029 -> 48312, 121222 -> 52878", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49029, + "TargetID": 48312, + "Directional": false + }, { + "SourceID": 121222, + "TargetID": 52878, + "Directional": false + }] + }, { + "ID": 700, + "SourceStructureID": 24303, + "TargetStructureID": 408, + "Label": "24303-408 via Gap Junction from 35794 -> 35793, 122397 -> 122396, 122474 -> 122475, 122476 -> 122477", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 35794, + "TargetID": 35793, + "Directional": false + }, { + "SourceID": 122397, + "TargetID": 122396, + "Directional": false + }, { + "SourceID": 122474, + "TargetID": 122475, + "Directional": false + }, { + "SourceID": 122476, + "TargetID": 122477, + "Directional": false + }] + }, { + "ID": 701, + "SourceStructureID": 24401, + "TargetStructureID": 408, + "Label": "24401-408 via Gap Junction from 34805 -> 34806, 34813 -> 121161, 35804 -> 35803, 48142 -> 48141, 52864 -> 52865, 121186 -> 52870, 121204 -> 121205, 121716 -> 121717", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 34805, + "TargetID": 34806, + "Directional": false + }, { + "SourceID": 34813, + "TargetID": 121161, + "Directional": false + }, { + "SourceID": 35804, + "TargetID": 35803, + "Directional": false + }, { + "SourceID": 48142, + "TargetID": 48141, + "Directional": false + }, { + "SourceID": 52864, + "TargetID": 52865, + "Directional": false + }, { + "SourceID": 121186, + "TargetID": 52870, + "Directional": false + }, { + "SourceID": 121204, + "TargetID": 121205, + "Directional": false + }, { + "SourceID": 121716, + "TargetID": 121717, + "Directional": false + }] + }, { + "ID": 702, + "SourceStructureID": 408, + "TargetStructureID": 28886, + "Label": "408-28886 via Gap Junction from 51630 -> 45766", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51630, + "TargetID": 45766, + "Directional": false + }] + }, { + "ID": 703, + "SourceStructureID": 408, + "TargetStructureID": 39862, + "Label": "408-39862 via Gap Junction from 29276 -> 51253, 53034 -> 51245", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29276, + "TargetID": 51253, + "Directional": false + }, { + "SourceID": 53034, + "TargetID": 51245, + "Directional": false + }] + }, { + "ID": 704, + "SourceStructureID": 121155, + "TargetStructureID": 408, + "Label": "121155-408 via Gap Junction from 121695 -> 121694", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121695, + "TargetID": 121694, + "Directional": false + }] + }, { + "ID": 705, + "SourceStructureID": 408, + "TargetStructureID": 121663, + "Label": "408-121663 via Gap Junction from 121667 -> 121666, 121670 -> 29272", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121667, + "TargetID": 121666, + "Directional": false + }, { + "SourceID": 121670, + "TargetID": 29272, + "Directional": false + }] + }, { + "ID": 706, + "SourceStructureID": 410, + "TargetStructureID": 419, + "Label": "410-419 via Adherens from 10136 -> 10135, 133706 -> 133707, 135091 -> 133711", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 10136, + "TargetID": 10135, + "Directional": false + }, { + "SourceID": 133706, + "TargetID": 133707, + "Directional": false + }, { + "SourceID": 135091, + "TargetID": 133711, + "Directional": false + }] + }, { + "ID": 707, + "SourceStructureID": 419, + "TargetStructureID": 410, + "Label": "419-410 via Gap Junction from 10131 -> 10132, 14602 -> 8366, 131492 -> 131491, 131797 -> 131796, 132589 -> 132590, 133539 -> 133540", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10131, + "TargetID": 10132, + "Directional": false + }, { + "SourceID": 14602, + "TargetID": 8366, + "Directional": false + }, { + "SourceID": 131492, + "TargetID": 131491, + "Directional": false + }, { + "SourceID": 131797, + "TargetID": 131796, + "Directional": false + }, { + "SourceID": 132589, + "TargetID": 132590, + "Directional": false + }, { + "SourceID": 133539, + "TargetID": 133540, + "Directional": false + }] + }, { + "ID": 708, + "SourceStructureID": 410, + "TargetStructureID": 476, + "Label": "410-476 via Gap Junction from 8370 -> 17490, 8380 -> 8347, 10439 -> 10440, 16480 -> 8376, 16502 -> 8354, 16515 -> 16514, 17347 -> 17346, 19117 -> 19116, 32738 -> 32736", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 8370, + "TargetID": 17490, + "Directional": false + }, { + "SourceID": 8380, + "TargetID": 8347, + "Directional": false + }, { + "SourceID": 10439, + "TargetID": 10440, + "Directional": false + }, { + "SourceID": 16480, + "TargetID": 8376, + "Directional": false + }, { + "SourceID": 16502, + "TargetID": 8354, + "Directional": false + }, { + "SourceID": 16515, + "TargetID": 16514, + "Directional": false + }, { + "SourceID": 17347, + "TargetID": 17346, + "Directional": false + }, { + "SourceID": 19117, + "TargetID": 19116, + "Directional": false + }, { + "SourceID": 32738, + "TargetID": 32736, + "Directional": false + }] + }, { + "ID": 709, + "SourceStructureID": 410, + "TargetStructureID": 483, + "Label": "410-483 via Gap Junction from 94746 -> 94747", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94746, + "TargetID": 94747, + "Directional": false + }] + }, { + "ID": 710, + "SourceStructureID": 410, + "TargetStructureID": 485, + "Label": "410-485 via Gap Junction from 8362 -> 8348, 8363 -> 50880, 94053 -> 94052, 148013 -> 148014, 148077 -> 148078, 148426 -> 148427, 148429 -> 148430, 148435 -> 148436", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 8362, + "TargetID": 8348, + "Directional": false + }, { + "SourceID": 8363, + "TargetID": 50880, + "Directional": false + }, { + "SourceID": 94053, + "TargetID": 94052, + "Directional": false + }, { + "SourceID": 148013, + "TargetID": 148014, + "Directional": false + }, { + "SourceID": 148077, + "TargetID": 148078, + "Directional": false + }, { + "SourceID": 148426, + "TargetID": 148427, + "Directional": false + }, { + "SourceID": 148429, + "TargetID": 148430, + "Directional": false + }, { + "SourceID": 148435, + "TargetID": 148436, + "Directional": false + }] + }, { + "ID": 711, + "SourceStructureID": 514, + "TargetStructureID": 410, + "Label": "514-410 via Adherens from 15088 -> 15087", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 15088, + "TargetID": 15087, + "Directional": false + }] + }, { + "ID": 712, + "SourceStructureID": 514, + "TargetStructureID": 410, + "Label": "514-410 via Gap Junction from 15098 -> 15097", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 15098, + "TargetID": 15097, + "Directional": false + }] + }, { + "ID": 713, + "SourceStructureID": 410, + "TargetStructureID": 2610, + "Label": "410-2610 via Gap Junction from 17501 -> 17500, 22675 -> 22676", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17501, + "TargetID": 17500, + "Directional": false + }, { + "SourceID": 22675, + "TargetID": 22676, + "Directional": false + }] + }, { + "ID": 714, + "SourceStructureID": 410, + "TargetStructureID": 4850, + "Label": "410-4850 via Gap Junction from 97993 -> 97992", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 97993, + "TargetID": 97992, + "Directional": false + }] + }, { + "ID": 715, + "SourceStructureID": 410, + "TargetStructureID": 6153, + "Label": "410-6153 via Gap Junction from 9189 -> 8410, 16671 -> 16670, 16701 -> 16700, 17352 -> 17351, 17830 -> 17829", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 9189, + "TargetID": 8410, + "Directional": false + }, { + "SourceID": 16671, + "TargetID": 16670, + "Directional": false + }, { + "SourceID": 16701, + "TargetID": 16700, + "Directional": false + }, { + "SourceID": 17352, + "TargetID": 17351, + "Directional": false + }, { + "SourceID": 17830, + "TargetID": 17829, + "Directional": false + }] + }, { + "ID": 716, + "SourceStructureID": 410, + "TargetStructureID": 6589, + "Label": "410-6589 via Gap Junction from 132734 -> 132733", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132734, + "TargetID": 132733, + "Directional": false + }] + }, { + "ID": 717, + "SourceStructureID": 410, + "TargetStructureID": 9693, + "Label": "410-9693 via Adherens from 131490 -> 131489", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131490, + "TargetID": 131489, + "Directional": false + }] + }, { + "ID": 718, + "SourceStructureID": 410, + "TargetStructureID": 9693, + "Label": "410-9693 via Gap Junction from 131488 -> 119862", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131488, + "TargetID": 119862, + "Directional": false + }] + }, { + "ID": 719, + "SourceStructureID": 17527, + "TargetStructureID": 410, + "Label": "17527-410 via Gap Junction from 17535 -> 17534, 17792 -> 17791, 17890 -> 17889, 18366 -> 18365", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17535, + "TargetID": 17534, + "Directional": false + }, { + "SourceID": 17792, + "TargetID": 17791, + "Directional": false + }, { + "SourceID": 17890, + "TargetID": 17889, + "Directional": false + }, { + "SourceID": 18366, + "TargetID": 18365, + "Directional": false + }] + }, { + "ID": 720, + "SourceStructureID": 410, + "TargetStructureID": 25688, + "Label": "410-25688 via Adherens from 25700 -> 25699", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 25700, + "TargetID": 25699, + "Directional": false + }] + }, { + "ID": 721, + "SourceStructureID": 101332, + "TargetStructureID": 410, + "Label": "101332-410 via Unknown from 101336 -> 101337", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101336, + "TargetID": 101337, + "Directional": false + }] + }, { + "ID": 722, + "SourceStructureID": 121177, + "TargetStructureID": 410, + "Label": "121177-410 via Gap Junction from 121179 -> 9528", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121179, + "TargetID": 9528, + "Directional": false + }] + }, { + "ID": 723, + "SourceStructureID": 419, + "TargetStructureID": 412, + "Label": "419-412 via Unknown from 132512 -> 133693", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132512, + "TargetID": 133693, + "Directional": false + }] + }, { + "ID": 724, + "SourceStructureID": 479, + "TargetStructureID": 412, + "Label": "479-412 via Unknown from 122390 -> 122391", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 122390, + "TargetID": 122391, + "Directional": false + }] + }, { + "ID": 725, + "SourceStructureID": 412, + "TargetStructureID": 24401, + "Label": "412-24401 via Gap Junction from 133690 -> 133691", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 133690, + "TargetID": 133691, + "Directional": false + }] + }, { + "ID": 726, + "SourceStructureID": 121155, + "TargetStructureID": 412, + "Label": "121155-412 via Gap Junction from 133689 -> 133692", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 133689, + "TargetID": 133692, + "Directional": false + }] + }, { + "ID": 727, + "SourceStructureID": 419, + "TargetStructureID": 419, + "Label": "419-419 via Gap Junction from 131773 -> 131774, 131792 -> 131791", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131773, + "TargetID": 131774, + "Directional": false + }, { + "SourceID": 131792, + "TargetID": 131791, + "Directional": false + }] + }, { + "ID": 728, + "SourceStructureID": 476, + "TargetStructureID": 419, + "Label": "476-419 via Adherens from 133683 -> 132385, 133709 -> 133708", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133683, + "TargetID": 132385, + "Directional": false + }, { + "SourceID": 133709, + "TargetID": 133708, + "Directional": false + }] + }, { + "ID": 729, + "SourceStructureID": 476, + "TargetStructureID": 419, + "Label": "476-419 via Gap Junction from 10123 -> 10122, 10459 -> 14594, 14599 -> 2293, 20365 -> 8396, 32135 -> 32136, 65186 -> 10463, 131466 -> 131465, 131832 -> 131833, 132384 -> 133682, 133581 -> 133582, 133705 -> 131853", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10123, + "TargetID": 10122, + "Directional": false + }, { + "SourceID": 10459, + "TargetID": 14594, + "Directional": false + }, { + "SourceID": 14599, + "TargetID": 2293, + "Directional": false + }, { + "SourceID": 20365, + "TargetID": 8396, + "Directional": false + }, { + "SourceID": 32135, + "TargetID": 32136, + "Directional": false + }, { + "SourceID": 65186, + "TargetID": 10463, + "Directional": false + }, { + "SourceID": 131466, + "TargetID": 131465, + "Directional": false + }, { + "SourceID": 131832, + "TargetID": 131833, + "Directional": false + }, { + "SourceID": 132384, + "TargetID": 133682, + "Directional": false + }, { + "SourceID": 133581, + "TargetID": 133582, + "Directional": false + }, { + "SourceID": 133705, + "TargetID": 131853, + "Directional": false + }] + }, { + "ID": 730, + "SourceStructureID": 483, + "TargetStructureID": 419, + "Label": "483-419 via Gap Junction from 131756 -> 131757", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131756, + "TargetID": 131757, + "Directional": false + }] + }, { + "ID": 731, + "SourceStructureID": 485, + "TargetStructureID": 419, + "Label": "485-419 via Adherens from 131494 -> 131495", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131494, + "TargetID": 131495, + "Directional": false + }] + }, { + "ID": 732, + "SourceStructureID": 419, + "TargetStructureID": 485, + "Label": "419-485 via Touch from 133677 -> 133678", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 133677, + "TargetID": 133678, + "Directional": false + }] + }, { + "ID": 733, + "SourceStructureID": 419, + "TargetStructureID": 2610, + "Label": "419-2610 via Gap Junction from 70525 -> 70526, 131798 -> 131799, 133725 -> 133726", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 70525, + "TargetID": 70526, + "Directional": false + }, { + "SourceID": 131798, + "TargetID": 131799, + "Directional": false + }, { + "SourceID": 133725, + "TargetID": 133726, + "Directional": false + }] + }, { + "ID": 734, + "SourceStructureID": 419, + "TargetStructureID": 4890, + "Label": "419-4890 via Unknown from 133543 -> 133544", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133543, + "TargetID": 133544, + "Directional": false + }] + }, { + "ID": 735, + "SourceStructureID": 419, + "TargetStructureID": 5118, + "Label": "419-5118 via Unknown from 131843 -> 131844", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131843, + "TargetID": 131844, + "Directional": false + }] + }, { + "ID": 736, + "SourceStructureID": 419, + "TargetStructureID": 6153, + "Label": "419-6153 via Adherens from 133701 -> 133702, 133714 -> 133713, 133715 -> 133716", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133701, + "TargetID": 133702, + "Directional": false + }, { + "SourceID": 133714, + "TargetID": 133713, + "Directional": false + }, { + "SourceID": 133715, + "TargetID": 133716, + "Directional": false + }] + }, { + "ID": 737, + "SourceStructureID": 419, + "TargetStructureID": 6153, + "Label": "419-6153 via Gap Junction from 10161 -> 10162, 20389 -> 17474, 131750 -> 131749, 131761 -> 131759, 131785 -> 131786, 133600 -> 133601", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10161, + "TargetID": 10162, + "Directional": false + }, { + "SourceID": 20389, + "TargetID": 17474, + "Directional": false + }, { + "SourceID": 131750, + "TargetID": 131749, + "Directional": false + }, { + "SourceID": 131761, + "TargetID": 131759, + "Directional": false + }, { + "SourceID": 131785, + "TargetID": 131786, + "Directional": false + }, { + "SourceID": 133600, + "TargetID": 133601, + "Directional": false + }] + }, { + "ID": 738, + "SourceStructureID": 6156, + "TargetStructureID": 419, + "Label": "6156-419 via Adherens from 115066 -> 115067", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115066, + "TargetID": 115067, + "Directional": false + }] + }, { + "ID": 739, + "SourceStructureID": 6156, + "TargetStructureID": 419, + "Label": "6156-419 via Gap Junction from 131464 -> 131463", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131464, + "TargetID": 131463, + "Directional": false + }] + }, { + "ID": 740, + "SourceStructureID": 6589, + "TargetStructureID": 419, + "Label": "6589-419 via Touch from 133559 -> 133560", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 133559, + "TargetID": 133560, + "Directional": false + }] + }, { + "ID": 741, + "SourceStructureID": 7157, + "TargetStructureID": 419, + "Label": "7157-419 via Gap Junction from 131769 -> 131768", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131769, + "TargetID": 131768, + "Directional": false + }] + }, { + "ID": 742, + "SourceStructureID": 419, + "TargetStructureID": 13855, + "Label": "419-13855 via Adherens from 14902 -> 14903, 133521 -> 132514", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 14902, + "TargetID": 14903, + "Directional": false + }, { + "SourceID": 133521, + "TargetID": 132514, + "Directional": false + }] + }, { + "ID": 743, + "SourceStructureID": 419, + "TargetStructureID": 18576, + "Label": "419-18576 via Unknown from 132269 -> 133674, 133681 -> 132380", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132269, + "TargetID": 133674, + "Directional": false + }, { + "SourceID": 133681, + "TargetID": 132380, + "Directional": false + }] + }, { + "ID": 744, + "SourceStructureID": 419, + "TargetStructureID": 25869, + "Label": "419-25869 via Unknown from 133526 -> 133525", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133526, + "TargetID": 133525, + "Directional": false + }] + }, { + "ID": 745, + "SourceStructureID": 419, + "TargetStructureID": 32172, + "Label": "419-32172 via Adherens from 132477 -> 132478", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132477, + "TargetID": 132478, + "Directional": false + }] + }, { + "ID": 746, + "SourceStructureID": 419, + "TargetStructureID": 36421, + "Label": "419-36421 via Unknown from 133516 -> 133517", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133516, + "TargetID": 133517, + "Directional": false + }] + }, { + "ID": 747, + "SourceStructureID": 37286, + "TargetStructureID": 419, + "Label": "37286-419 via Unknown from 132362 -> 132361", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132362, + "TargetID": 132361, + "Directional": false + }] + }, { + "ID": 748, + "SourceStructureID": 419, + "TargetStructureID": 60185, + "Label": "419-60185 via Adherens from 60190 -> 60189", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60190, + "TargetID": 60189, + "Directional": false + }] + }, { + "ID": 749, + "SourceStructureID": 70518, + "TargetStructureID": 419, + "Label": "70518-419 via Adherens from 132647 -> 132646", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132647, + "TargetID": 132646, + "Directional": false + }] + }, { + "ID": 750, + "SourceStructureID": 419, + "TargetStructureID": 70518, + "Label": "419-70518 via Unknown from 132594 -> 132595", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132594, + "TargetID": 132595, + "Directional": false + }] + }, { + "ID": 751, + "SourceStructureID": 70833, + "TargetStructureID": 419, + "Label": "70833-419 via Adherens from 133653 -> 133654", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133653, + "TargetID": 133654, + "Directional": false + }] + }, { + "ID": 752, + "SourceStructureID": 70901, + "TargetStructureID": 419, + "Label": "70901-419 via Adherens from 132480 -> 132479", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132480, + "TargetID": 132479, + "Directional": false + }] + }, { + "ID": 753, + "SourceStructureID": 71041, + "TargetStructureID": 419, + "Label": "71041-419 via Unknown from 131483 -> 131482, 133638 -> 133639", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131483, + "TargetID": 131482, + "Directional": false + }, { + "SourceID": 133638, + "TargetID": 133639, + "Directional": false + }] + }, { + "ID": 754, + "SourceStructureID": 419, + "TargetStructureID": 89233, + "Label": "419-89233 via Unknown from 89244 -> 89243", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89244, + "TargetID": 89243, + "Directional": false + }] + }, { + "ID": 755, + "SourceStructureID": 419, + "TargetStructureID": 101234, + "Label": "419-101234 via Adherens from 132644 -> 132645", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132644, + "TargetID": 132645, + "Directional": false + }] + }, { + "ID": 756, + "SourceStructureID": 102524, + "TargetStructureID": 419, + "Label": "102524-419 via Unknown from 133604 -> 133603", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133604, + "TargetID": 133603, + "Directional": false + }] + }, { + "ID": 757, + "SourceStructureID": 133553, + "TargetStructureID": 419, + "Label": "133553-419 via Adherens from 133555 -> 132505, 133580 -> 133579", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133555, + "TargetID": 132505, + "Directional": false + }, { + "SourceID": 133580, + "TargetID": 133579, + "Directional": false + }] + }, { + "ID": 758, + "SourceStructureID": 422, + "TargetStructureID": 422, + "Label": "422-422 via Adherens from 107067 -> 107066", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107067, + "TargetID": 107066, + "Directional": false + }] + }, { + "ID": 759, + "SourceStructureID": 488, + "TargetStructureID": 422, + "Label": "488-422 via Conventional from 87793 -> 87794", + "Type": "Conventional", + "Directional": false, + "Links": [{ + "SourceID": 87793, + "TargetID": 87794, + "Directional": false + }] + }, { + "ID": 760, + "SourceStructureID": 463, + "TargetStructureID": 425, + "Label": "463-425 via Adherens from 12979 -> 12980", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 12979, + "TargetID": 12980, + "Directional": false + }] + }, { + "ID": 761, + "SourceStructureID": 463, + "TargetStructureID": 425, + "Label": "463-425 via Gap Junction from 74162 -> 74163", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 74162, + "TargetID": 74163, + "Directional": false + }] + }, { + "ID": 762, + "SourceStructureID": 431, + "TargetStructureID": 428, + "Label": "431-428 via Adherens from 12624 -> 12625", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 12624, + "TargetID": 12625, + "Directional": false + }] + }, { + "ID": 763, + "SourceStructureID": 431, + "TargetStructureID": 428, + "Label": "431-428 via Gap Junction from 12595 -> 12596, 52737 -> 52736", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 12595, + "TargetID": 12596, + "Directional": false + }, { + "SourceID": 52737, + "TargetID": 52736, + "Directional": false + }] + }, { + "ID": 764, + "SourceStructureID": 606, + "TargetStructureID": 428, + "Label": "606-428 via Adherens from 53150 -> 53151", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 53150, + "TargetID": 53151, + "Directional": false + }] + }, { + "ID": 765, + "SourceStructureID": 428, + "TargetStructureID": 4569, + "Label": "428-4569 via Gap Junction from 52682 -> 52550, 58598 -> 58599, 98371 -> 98370", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52682, + "TargetID": 52550, + "Directional": false + }, { + "SourceID": 58598, + "TargetID": 58599, + "Directional": false + }, { + "SourceID": 98371, + "TargetID": 98370, + "Directional": false + }] + }, { + "ID": 766, + "SourceStructureID": 428, + "TargetStructureID": 59497, + "Label": "428-59497 via Adherens from 59504 -> 59503", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59504, + "TargetID": 59503, + "Directional": false + }] + }, { + "ID": 767, + "SourceStructureID": 59497, + "TargetStructureID": 428, + "Label": "59497-428 via Gap Junction from 59498 -> 52793", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59498, + "TargetID": 52793, + "Directional": false + }] + }, { + "ID": 768, + "SourceStructureID": 66138, + "TargetStructureID": 428, + "Label": "66138-428 via Adherens from 66192 -> 66182", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66192, + "TargetID": 66182, + "Directional": false + }] + }, { + "ID": 769, + "SourceStructureID": 428, + "TargetStructureID": 66138, + "Label": "428-66138 via Gap Junction from 66181 -> 66189", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 66181, + "TargetID": 66189, + "Directional": false + }] + }, { + "ID": 770, + "SourceStructureID": 428, + "TargetStructureID": 66214, + "Label": "428-66214 via Gap Junction from 66216 -> 66215", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 66216, + "TargetID": 66215, + "Directional": false + }] + }, { + "ID": 771, + "SourceStructureID": 431, + "TargetStructureID": 440, + "Label": "431-440 via Gap Junction from 12676 -> 60299, 18604 -> 122817, 38595 -> 18613, 60300 -> 12678, 60301 -> 12677, 60324 -> 60325, 122852 -> 122853, 122869 -> 122870", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 12676, + "TargetID": 60299, + "Directional": false + }, { + "SourceID": 18604, + "TargetID": 122817, + "Directional": false + }, { + "SourceID": 38595, + "TargetID": 18613, + "Directional": false + }, { + "SourceID": 60300, + "TargetID": 12678, + "Directional": false + }, { + "SourceID": 60301, + "TargetID": 12677, + "Directional": false + }, { + "SourceID": 60324, + "TargetID": 60325, + "Directional": false + }, { + "SourceID": 122852, + "TargetID": 122853, + "Directional": false + }, { + "SourceID": 122869, + "TargetID": 122870, + "Directional": false + }] + }, { + "ID": 772, + "SourceStructureID": 431, + "TargetStructureID": 4835, + "Label": "431-4835 via Gap Junction from 12633 -> 12634, 12740 -> 8387, 12759 -> 12760, 12773 -> 8381, 12796 -> 8382, 38587 -> 38586, 122816 -> 122815", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 12633, + "TargetID": 12634, + "Directional": false + }, { + "SourceID": 12740, + "TargetID": 8387, + "Directional": false + }, { + "SourceID": 12759, + "TargetID": 12760, + "Directional": false + }, { + "SourceID": 12773, + "TargetID": 8381, + "Directional": false + }, { + "SourceID": 12796, + "TargetID": 8382, + "Directional": false + }, { + "SourceID": 38587, + "TargetID": 38586, + "Directional": false + }, { + "SourceID": 122816, + "TargetID": 122815, + "Directional": false + }] + }, { + "ID": 773, + "SourceStructureID": 431, + "TargetStructureID": 7157, + "Label": "431-7157 via Gap Junction from 12703 -> 12704, 12709 -> 12710", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 12703, + "TargetID": 12704, + "Directional": false + }, { + "SourceID": 12709, + "TargetID": 12710, + "Directional": false + }] + }, { + "ID": 774, + "SourceStructureID": 431, + "TargetStructureID": 8720, + "Label": "431-8720 via Adherens from 60269 -> 60268", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60269, + "TargetID": 60268, + "Directional": false + }] + }, { + "ID": 775, + "SourceStructureID": 71882, + "TargetStructureID": 431, + "Label": "71882-431 via Adherens from 90361 -> 90362", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90361, + "TargetID": 90362, + "Directional": false + }] + }, { + "ID": 776, + "SourceStructureID": 115641, + "TargetStructureID": 431, + "Label": "115641-431 via Gap Junction from 115642 -> 12724", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115642, + "TargetID": 12724, + "Directional": false + }] + }, { + "ID": 777, + "SourceStructureID": 440, + "TargetStructureID": 440, + "Label": "440-440 via Gap Junction from 122601 -> 122600", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122601, + "TargetID": 122600, + "Directional": false + }] + }, { + "ID": 778, + "SourceStructureID": 450, + "TargetStructureID": 440, + "Label": "450-440 via Gap Junction from 118072 -> 118075, 118080 -> 118077, 122536 -> 122514", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118072, + "TargetID": 118075, + "Directional": false + }, { + "SourceID": 118080, + "TargetID": 118077, + "Directional": false + }, { + "SourceID": 122536, + "TargetID": 122514, + "Directional": false + }] + }, { + "ID": 779, + "SourceStructureID": 458, + "TargetStructureID": 440, + "Label": "458-440 via Adherens from 64824 -> 64825", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64824, + "TargetID": 64825, + "Directional": false + }] + }, { + "ID": 780, + "SourceStructureID": 7215, + "TargetStructureID": 440, + "Label": "7215-440 via Gap Junction from 118079 -> 118078", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118079, + "TargetID": 118078, + "Directional": false + }] + }, { + "ID": 781, + "SourceStructureID": 8720, + "TargetStructureID": 440, + "Label": "8720-440 via Adherens from 60296 -> 60295", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60296, + "TargetID": 60295, + "Directional": false + }] + }, { + "ID": 782, + "SourceStructureID": 440, + "TargetStructureID": 61752, + "Label": "440-61752 via Unknown from 122518 -> 122517", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 122518, + "TargetID": 122517, + "Directional": false + }] + }, { + "ID": 783, + "SourceStructureID": 446, + "TargetStructureID": 7860, + "Label": "446-7860 via Gap Junction from 47915 -> 29659, 118019 -> 118018, 118025 -> 118027, 118028 -> 118023", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47915, + "TargetID": 29659, + "Directional": false + }, { + "SourceID": 118019, + "TargetID": 118018, + "Directional": false + }, { + "SourceID": 118025, + "TargetID": 118027, + "Directional": false + }, { + "SourceID": 118028, + "TargetID": 118023, + "Directional": false + }] + }, { + "ID": 784, + "SourceStructureID": 118014, + "TargetStructureID": 446, + "Label": "118014-446 via Gap Junction from 118015 -> 118013, 118017 -> 118016", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118015, + "TargetID": 118013, + "Directional": false + }, { + "SourceID": 118017, + "TargetID": 118016, + "Directional": false + }] + }, { + "ID": 785, + "SourceStructureID": 32273, + "TargetStructureID": 447, + "Label": "32273-447 via Adherens from 32280 -> 32281", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 32280, + "TargetID": 32281, + "Directional": false + }] + }, { + "ID": 786, + "SourceStructureID": 450, + "TargetStructureID": 450, + "Label": "450-450 via Gap Junction from 118074 -> 118073", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118074, + "TargetID": 118073, + "Directional": false + }] + }, { + "ID": 787, + "SourceStructureID": 6129, + "TargetStructureID": 450, + "Label": "6129-450 via Gap Junction from 117977 -> 117976", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117977, + "TargetID": 117976, + "Directional": false + }] + }, { + "ID": 788, + "SourceStructureID": 6165, + "TargetStructureID": 450, + "Label": "6165-450 via Gap Junction from 118049 -> 118048, 122568 -> 122569", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118049, + "TargetID": 118048, + "Directional": false + }, { + "SourceID": 122568, + "TargetID": 122569, + "Directional": false + }] + }, { + "ID": 789, + "SourceStructureID": 7861, + "TargetStructureID": 450, + "Label": "7861-450 via Gap Junction from 10553 -> 10552, 20404 -> 20403, 122583 -> 122581", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10553, + "TargetID": 10552, + "Directional": false + }, { + "SourceID": 20404, + "TargetID": 20403, + "Directional": false + }, { + "SourceID": 122583, + "TargetID": 122581, + "Directional": false + }] + }, { + "ID": 790, + "SourceStructureID": 450, + "TargetStructureID": 82677, + "Label": "450-82677 via Gap Junction from 122579 -> 122580", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122579, + "TargetID": 122580, + "Directional": false + }] + }, { + "ID": 791, + "SourceStructureID": 450, + "TargetStructureID": 117990, + "Label": "450-117990 via Gap Junction from 122572 -> 122571", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122572, + "TargetID": 122571, + "Directional": false + }] + }, { + "ID": 792, + "SourceStructureID": 450, + "TargetStructureID": 122564, + "Label": "450-122564 via Gap Junction from 118076 -> 122640, 122565 -> 122566", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118076, + "TargetID": 122640, + "Directional": false + }, { + "SourceID": 122565, + "TargetID": 122566, + "Directional": false + }] + }, { + "ID": 793, + "SourceStructureID": 6128, + "TargetStructureID": 452, + "Label": "6128-452 via Gap Junction from 20955 -> 21245, 21249 -> 21248, 21251 -> 21250", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 20955, + "TargetID": 21245, + "Directional": false + }, { + "SourceID": 21249, + "TargetID": 21248, + "Directional": false + }, { + "SourceID": 21251, + "TargetID": 21250, + "Directional": false + }] + }, { + "ID": 794, + "SourceStructureID": 455, + "TargetStructureID": 458, + "Label": "455-458 via Gap Junction from 14563 -> 14535", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14563, + "TargetID": 14535, + "Directional": false + }] + }, { + "ID": 795, + "SourceStructureID": 5545, + "TargetStructureID": 455, + "Label": "5545-455 via Gap Junction from 123783 -> 123784", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123783, + "TargetID": 123784, + "Directional": false + }] + }, { + "ID": 796, + "SourceStructureID": 455, + "TargetStructureID": 130256, + "Label": "455-130256 via Gap Junction from 158485 -> 158484", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 158485, + "TargetID": 158484, + "Directional": false + }] + }, { + "ID": 797, + "SourceStructureID": 456, + "TargetStructureID": 9787, + "Label": "456-9787 via Adherens from 12047 -> 12046", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 12047, + "TargetID": 12046, + "Directional": false + }] + }, { + "ID": 798, + "SourceStructureID": 458, + "TargetStructureID": 460, + "Label": "458-460 via Adherens from 37518 -> 27151", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 37518, + "TargetID": 27151, + "Directional": false + }] + }, { + "ID": 799, + "SourceStructureID": 458, + "TargetStructureID": 460, + "Label": "458-460 via Gap Junction from 46324 -> 46317, 46329 -> 46328", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46324, + "TargetID": 46317, + "Directional": false + }, { + "SourceID": 46329, + "TargetID": 46328, + "Directional": false + }] + }, { + "ID": 800, + "SourceStructureID": 968, + "TargetStructureID": 458, + "Label": "968-458 via Adherens from 37519 -> 37520", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 37519, + "TargetID": 37520, + "Directional": false + }] + }, { + "ID": 801, + "SourceStructureID": 131503, + "TargetStructureID": 458, + "Label": "131503-458 via Adherens from 131609 -> 14501", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131609, + "TargetID": 14501, + "Directional": false + }] + }, { + "ID": 802, + "SourceStructureID": 968, + "TargetStructureID": 460, + "Label": "968-460 via Gap Junction from 59860 -> 59859", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59860, + "TargetID": 59859, + "Directional": false + }] + }, { + "ID": 803, + "SourceStructureID": 461, + "TargetStructureID": 483, + "Label": "461-483 via Gap Junction from 49767 -> 49797", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49767, + "TargetID": 49797, + "Directional": false + }] + }, { + "ID": 804, + "SourceStructureID": 461, + "TargetStructureID": 4835, + "Label": "461-4835 via Gap Junction from 14685 -> 14686, 14880 -> 9042, 94774 -> 94773, 114684 -> 114683, 114782 -> 114686, 120415 -> 60131, 120417 -> 60127", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14685, + "TargetID": 14686, + "Directional": false + }, { + "SourceID": 14880, + "TargetID": 9042, + "Directional": false + }, { + "SourceID": 94774, + "TargetID": 94773, + "Directional": false + }, { + "SourceID": 114684, + "TargetID": 114683, + "Directional": false + }, { + "SourceID": 114782, + "TargetID": 114686, + "Directional": false + }, { + "SourceID": 120415, + "TargetID": 60131, + "Directional": false + }, { + "SourceID": 120417, + "TargetID": 60127, + "Directional": false + }] + }, { + "ID": 805, + "SourceStructureID": 7564, + "TargetStructureID": 461, + "Label": "7564-461 via Gap Junction from 94853 -> 14847", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94853, + "TargetID": 14847, + "Directional": false + }] + }, { + "ID": 806, + "SourceStructureID": 461, + "TargetStructureID": 71935, + "Label": "461-71935 via Unknown from 94778 -> 94779", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94778, + "TargetID": 94779, + "Directional": false + }] + }, { + "ID": 807, + "SourceStructureID": 88082, + "TargetStructureID": 461, + "Label": "88082-461 via Unknown from 95155 -> 95154", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95155, + "TargetID": 95154, + "Directional": false + }] + }, { + "ID": 808, + "SourceStructureID": 86799, + "TargetStructureID": 469, + "Label": "86799-469 via Touch from 87716 -> 87715", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 87716, + "TargetID": 87715, + "Directional": false + }] + }, { + "ID": 809, + "SourceStructureID": 469, + "TargetStructureID": 105212, + "Label": "469-105212 via Unknown from 106217 -> 106215", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106217, + "TargetID": 106215, + "Directional": false + }] + }, { + "ID": 810, + "SourceStructureID": 471, + "TargetStructureID": 9643, + "Label": "471-9643 via Unknown from 96047 -> 96046", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96047, + "TargetID": 96046, + "Directional": false + }] + }, { + "ID": 811, + "SourceStructureID": 39530, + "TargetStructureID": 471, + "Label": "39530-471 via Adherens from 83499 -> 83500", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83499, + "TargetID": 83500, + "Directional": false + }] + }, { + "ID": 812, + "SourceStructureID": 473, + "TargetStructureID": 9260, + "Label": "473-9260 via Neuroglial adherens from 79543 -> 79544", + "Type": "Neuroglial adherens", + "Directional": false, + "Links": [{ + "SourceID": 79543, + "TargetID": 79544, + "Directional": false + }] + }, { + "ID": 813, + "SourceStructureID": 475, + "TargetStructureID": 4567, + "Label": "475-4567 via Unknown from 133743 -> 133742", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133743, + "TargetID": 133742, + "Directional": false + }] + }, { + "ID": 814, + "SourceStructureID": 476, + "TargetStructureID": 476, + "Label": "476-476 via Adherens from 133712 -> 8397", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133712, + "TargetID": 8397, + "Directional": false + }] + }, { + "ID": 815, + "SourceStructureID": 476, + "TargetStructureID": 476, + "Label": "476-476 via Gap Junction from 10473 -> 10445", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10473, + "TargetID": 10445, + "Directional": false + }] + }, { + "ID": 816, + "SourceStructureID": 476, + "TargetStructureID": 476, + "Label": "476-476 via Postsynapse from 2336 -> 2337", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 2336, + "TargetID": 2337, + "Directional": false + }] + }, { + "ID": 817, + "SourceStructureID": 476, + "TargetStructureID": 483, + "Label": "476-483 via Adherens from 135082 -> 135081", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135082, + "TargetID": 135081, + "Directional": false + }] + }, { + "ID": 818, + "SourceStructureID": 476, + "TargetStructureID": 483, + "Label": "476-483 via Gap Junction from 5728 -> 6726, 6733 -> 5667, 65196 -> 14974, 65204 -> 5707, 92335 -> 92336, 131479 -> 131480, 133741 -> 133740, 136295 -> 136296", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 5728, + "TargetID": 6726, + "Directional": false + }, { + "SourceID": 6733, + "TargetID": 5667, + "Directional": false + }, { + "SourceID": 65196, + "TargetID": 14974, + "Directional": false + }, { + "SourceID": 65204, + "TargetID": 5707, + "Directional": false + }, { + "SourceID": 92335, + "TargetID": 92336, + "Directional": false + }, { + "SourceID": 131479, + "TargetID": 131480, + "Directional": false + }, { + "SourceID": 133741, + "TargetID": 133740, + "Directional": false + }, { + "SourceID": 136295, + "TargetID": 136296, + "Directional": false + }] + }, { + "ID": 819, + "SourceStructureID": 485, + "TargetStructureID": 476, + "Label": "485-476 via Adherens from 148003 -> 148002", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148003, + "TargetID": 148002, + "Directional": false + }] + }, { + "ID": 820, + "SourceStructureID": 485, + "TargetStructureID": 476, + "Label": "485-476 via Gap Junction from 65188 -> 2287, 134217 -> 134218", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 65188, + "TargetID": 2287, + "Directional": false + }, { + "SourceID": 134217, + "TargetID": 134218, + "Directional": false + }] + }, { + "ID": 821, + "SourceStructureID": 476, + "TargetStructureID": 514, + "Label": "476-514 via Adherens from 16545 -> 16544", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 16545, + "TargetID": 16544, + "Directional": false + }] + }, { + "ID": 822, + "SourceStructureID": 476, + "TargetStructureID": 514, + "Label": "476-514 via Gap Junction from 2397 -> 515, 2439 -> 5755, 2472 -> 5047, 3219 -> 2463, 3279 -> 3320, 3344 -> 5786, 5724 -> 2239, 5754 -> 3568, 5760 -> 3546, 6170 -> 3528, 9233 -> 3331, 10628 -> 10629, 15069 -> 15068, 16543 -> 16542", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 2397, + "TargetID": 515, + "Directional": false + }, { + "SourceID": 2439, + "TargetID": 5755, + "Directional": false + }, { + "SourceID": 2472, + "TargetID": 5047, + "Directional": false + }, { + "SourceID": 3219, + "TargetID": 2463, + "Directional": false + }, { + "SourceID": 3279, + "TargetID": 3320, + "Directional": false + }, { + "SourceID": 3344, + "TargetID": 5786, + "Directional": false + }, { + "SourceID": 5724, + "TargetID": 2239, + "Directional": false + }, { + "SourceID": 5754, + "TargetID": 3568, + "Directional": false + }, { + "SourceID": 5760, + "TargetID": 3546, + "Directional": false + }, { + "SourceID": 6170, + "TargetID": 3528, + "Directional": false + }, { + "SourceID": 9233, + "TargetID": 3331, + "Directional": false + }, { + "SourceID": 10628, + "TargetID": 10629, + "Directional": false + }, { + "SourceID": 15069, + "TargetID": 15068, + "Directional": false + }, { + "SourceID": 16543, + "TargetID": 16542, + "Directional": false + }] + }, { + "ID": 823, + "SourceStructureID": 476, + "TargetStructureID": 591, + "Label": "476-591 via Adherens from 24131 -> 24130, 133685 -> 133686", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 24131, + "TargetID": 24130, + "Directional": false + }, { + "SourceID": 133685, + "TargetID": 133686, + "Directional": false + }] + }, { + "ID": 824, + "SourceStructureID": 476, + "TargetStructureID": 2610, + "Label": "476-2610 via Gap Junction from 7025 -> 2757, 17912 -> 17911", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 7025, + "TargetID": 2757, + "Directional": false + }, { + "SourceID": 17912, + "TargetID": 17911, + "Directional": false + }] + }, { + "ID": 825, + "SourceStructureID": 476, + "TargetStructureID": 3257, + "Label": "476-3257 via Gap Junction from 3201 -> 18387, 8231 -> 8230, 8232 -> 3180, 8500 -> 4798, 14345 -> 14344, 16578 -> 3200, 16578 -> 3526, 18386 -> 18385, 65184 -> 3168", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 3201, + "TargetID": 18387, + "Directional": false + }, { + "SourceID": 8231, + "TargetID": 8230, + "Directional": false + }, { + "SourceID": 8232, + "TargetID": 3180, + "Directional": false + }, { + "SourceID": 8500, + "TargetID": 4798, + "Directional": false + }, { + "SourceID": 14345, + "TargetID": 14344, + "Directional": false + }, { + "SourceID": 16578, + "TargetID": 3200, + "Directional": false + }, { + "SourceID": 16578, + "TargetID": 3526, + "Directional": false + }, { + "SourceID": 18386, + "TargetID": 18385, + "Directional": false + }, { + "SourceID": 65184, + "TargetID": 3168, + "Directional": false + }] + }, { + "ID": 826, + "SourceStructureID": 3679, + "TargetStructureID": 476, + "Label": "3679-476 via Gap Junction from 5051 -> 2470", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 5051, + "TargetID": 2470, + "Directional": false + }] + }, { + "ID": 827, + "SourceStructureID": 4569, + "TargetStructureID": 476, + "Label": "4569-476 via Gap Junction from 4747 -> 3158, 4749 -> 3160, 14963 -> 14968, 15992 -> 14971, 47501 -> 5666, 52503 -> 2209, 65203 -> 5708", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 4747, + "TargetID": 3158, + "Directional": false + }, { + "SourceID": 4749, + "TargetID": 3160, + "Directional": false + }, { + "SourceID": 14963, + "TargetID": 14968, + "Directional": false + }, { + "SourceID": 15992, + "TargetID": 14971, + "Directional": false + }, { + "SourceID": 47501, + "TargetID": 5666, + "Directional": false + }, { + "SourceID": 52503, + "TargetID": 2209, + "Directional": false + }, { + "SourceID": 65203, + "TargetID": 5708, + "Directional": false + }] + }, { + "ID": 828, + "SourceStructureID": 4570, + "TargetStructureID": 476, + "Label": "4570-476 via Gap Junction from 65185 -> 3170, 123176 -> 5712, 131478 -> 14984", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 65185, + "TargetID": 3170, + "Directional": false + }, { + "SourceID": 123176, + "TargetID": 5712, + "Directional": false + }, { + "SourceID": 131478, + "TargetID": 14984, + "Directional": false + }] + }, { + "ID": 829, + "SourceStructureID": 476, + "TargetStructureID": 4835, + "Label": "476-4835 via Gap Junction from 8395 -> 8394, 36737 -> 36736, 36740 -> 36739, 36744 -> 14962", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 8395, + "TargetID": 8394, + "Directional": false + }, { + "SourceID": 36737, + "TargetID": 36736, + "Directional": false + }, { + "SourceID": 36740, + "TargetID": 36739, + "Directional": false + }, { + "SourceID": 36744, + "TargetID": 14962, + "Directional": false + }] + }, { + "ID": 830, + "SourceStructureID": 5281, + "TargetStructureID": 476, + "Label": "5281-476 via Adherens from 65195 -> 2228", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65195, + "TargetID": 2228, + "Directional": false + }] + }, { + "ID": 831, + "SourceStructureID": 476, + "TargetStructureID": 5394, + "Label": "476-5394 via Adherens from 87747 -> 87746, 87749 -> 3205", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87747, + "TargetID": 87746, + "Directional": false + }, { + "SourceID": 87749, + "TargetID": 3205, + "Directional": false + }] + }, { + "ID": 832, + "SourceStructureID": 6153, + "TargetStructureID": 476, + "Label": "6153-476 via Gap Junction from 8433 -> 5684, 16483 -> 8420, 17355 -> 17354, 31959 -> 5676, 65198 -> 8398", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 8433, + "TargetID": 5684, + "Directional": false + }, { + "SourceID": 16483, + "TargetID": 8420, + "Directional": false + }, { + "SourceID": 17355, + "TargetID": 17354, + "Directional": false + }, { + "SourceID": 31959, + "TargetID": 5676, + "Directional": false + }, { + "SourceID": 65198, + "TargetID": 8398, + "Directional": false + }] + }, { + "ID": 833, + "SourceStructureID": 6155, + "TargetStructureID": 476, + "Label": "6155-476 via Gap Junction from 15608 -> 2281, 16577 -> 2279, 48315 -> 2285, 49085 -> 2283, 108247 -> 108246", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 15608, + "TargetID": 2281, + "Directional": false + }, { + "SourceID": 16577, + "TargetID": 2279, + "Directional": false + }, { + "SourceID": 48315, + "TargetID": 2285, + "Directional": false + }, { + "SourceID": 49085, + "TargetID": 2283, + "Directional": false + }, { + "SourceID": 108247, + "TargetID": 108246, + "Directional": false + }] + }, { + "ID": 834, + "SourceStructureID": 476, + "TargetStructureID": 6156, + "Label": "476-6156 via Adherens from 133434 -> 133435, 133482 -> 15060, 135151 -> 135150", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133434, + "TargetID": 133435, + "Directional": false + }, { + "SourceID": 133482, + "TargetID": 15060, + "Directional": false + }, { + "SourceID": 135151, + "TargetID": 135150, + "Directional": false + }] + }, { + "ID": 835, + "SourceStructureID": 6156, + "TargetStructureID": 476, + "Label": "6156-476 via Gap Junction from 18011 -> 3314, 65194 -> 5726, 117560 -> 117559, 117586 -> 117587, 133202 -> 133201, 133218 -> 133217, 133220 -> 133219", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 18011, + "TargetID": 3314, + "Directional": false + }, { + "SourceID": 65194, + "TargetID": 5726, + "Directional": false + }, { + "SourceID": 117560, + "TargetID": 117559, + "Directional": false + }, { + "SourceID": 117586, + "TargetID": 117587, + "Directional": false + }, { + "SourceID": 133202, + "TargetID": 133201, + "Directional": false + }, { + "SourceID": 133218, + "TargetID": 133217, + "Directional": false + }, { + "SourceID": 133220, + "TargetID": 133219, + "Directional": false + }] + }, { + "ID": 836, + "SourceStructureID": 476, + "TargetStructureID": 9643, + "Label": "476-9643 via Adherens from 9666 -> 9665", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 9666, + "TargetID": 9665, + "Directional": false + }] + }, { + "ID": 837, + "SourceStructureID": 31960, + "TargetStructureID": 476, + "Label": "31960-476 via Adherens from 31964 -> 5682, 31965 -> 5681", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 31964, + "TargetID": 5682, + "Directional": false + }, { + "SourceID": 31965, + "TargetID": 5681, + "Directional": false + }] + }, { + "ID": 838, + "SourceStructureID": 36276, + "TargetStructureID": 476, + "Label": "36276-476 via Adherens from 36279 -> 2299", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 36279, + "TargetID": 2299, + "Directional": false + }] + }, { + "ID": 839, + "SourceStructureID": 476, + "TargetStructureID": 36293, + "Label": "476-36293 via Adherens from 135092 -> 135093", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135092, + "TargetID": 135093, + "Directional": false + }] + }, { + "ID": 840, + "SourceStructureID": 36512, + "TargetStructureID": 476, + "Label": "36512-476 via Adherens from 36515 -> 2392", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 36515, + "TargetID": 2392, + "Directional": false + }] + }, { + "ID": 841, + "SourceStructureID": 36650, + "TargetStructureID": 476, + "Label": "36650-476 via Adherens from 93021 -> 93022", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93021, + "TargetID": 93022, + "Directional": false + }] + }, { + "ID": 842, + "SourceStructureID": 476, + "TargetStructureID": 46741, + "Label": "476-46741 via Touch from 90194 -> 90193", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 90194, + "TargetID": 90193, + "Directional": false + }] + }, { + "ID": 843, + "SourceStructureID": 71935, + "TargetStructureID": 476, + "Label": "71935-476 via Gap Junction from 71940 -> 71939", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71940, + "TargetID": 71939, + "Directional": false + }] + }, { + "ID": 844, + "SourceStructureID": 89420, + "TargetStructureID": 476, + "Label": "89420-476 via Unknown from 89435 -> 89436", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89435, + "TargetID": 89436, + "Directional": false + }] + }, { + "ID": 845, + "SourceStructureID": 89984, + "TargetStructureID": 476, + "Label": "89984-476 via Adherens from 90095 -> 90096", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90095, + "TargetID": 90096, + "Directional": false + }] + }, { + "ID": 846, + "SourceStructureID": 89984, + "TargetStructureID": 476, + "Label": "89984-476 via Unknown from 90018 -> 90017, 90020 -> 90019, 90021 -> 90022, 90023 -> 90024", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90018, + "TargetID": 90017, + "Directional": false + }, { + "SourceID": 90020, + "TargetID": 90019, + "Directional": false + }, { + "SourceID": 90021, + "TargetID": 90022, + "Directional": false + }, { + "SourceID": 90023, + "TargetID": 90024, + "Directional": false + }] + }, { + "ID": 847, + "SourceStructureID": 476, + "TargetStructureID": 97024, + "Label": "476-97024 via Adherens from 97070 -> 97067, 97120 -> 97121, 97122 -> 97123", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97070, + "TargetID": 97067, + "Directional": false + }, { + "SourceID": 97120, + "TargetID": 97121, + "Directional": false + }, { + "SourceID": 97122, + "TargetID": 97123, + "Directional": false + }] + }, { + "ID": 848, + "SourceStructureID": 98127, + "TargetStructureID": 476, + "Label": "98127-476 via Adherens from 98135 -> 5662", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98135, + "TargetID": 5662, + "Directional": false + }] + }, { + "ID": 849, + "SourceStructureID": 4568, + "TargetStructureID": 478, + "Label": "4568-478 via Gap Junction from 21695 -> 21696", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 21695, + "TargetID": 21696, + "Directional": false + }] + }, { + "ID": 850, + "SourceStructureID": 83461, + "TargetStructureID": 478, + "Label": "83461-478 via Gap Junction from 83468 -> 83469", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 83468, + "TargetID": 83469, + "Directional": false + }] + }, { + "ID": 851, + "SourceStructureID": 97828, + "TargetStructureID": 478, + "Label": "97828-478 via Unknown from 97842 -> 97843", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97842, + "TargetID": 97843, + "Directional": false + }] + }, { + "ID": 852, + "SourceStructureID": 479, + "TargetStructureID": 6155, + "Label": "479-6155 via Unknown from 121707 -> 121706", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121707, + "TargetID": 121706, + "Directional": false + }] + }, { + "ID": 853, + "SourceStructureID": 479, + "TargetStructureID": 47195, + "Label": "479-47195 via Gap Junction from 58753 -> 58752", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 58753, + "TargetID": 58752, + "Directional": false + }] + }, { + "ID": 854, + "SourceStructureID": 479, + "TargetStructureID": 121714, + "Label": "479-121714 via Gap Junction from 56497 -> 121715", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56497, + "TargetID": 121715, + "Directional": false + }] + }, { + "ID": 855, + "SourceStructureID": 121723, + "TargetStructureID": 479, + "Label": "121723-479 via Unknown from 121724 -> 121722", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121724, + "TargetID": 121722, + "Directional": false + }] + }, { + "ID": 856, + "SourceStructureID": 121727, + "TargetStructureID": 479, + "Label": "121727-479 via Unknown from 121728 -> 121729", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121728, + "TargetID": 121729, + "Directional": false + }] + }, { + "ID": 857, + "SourceStructureID": 121749, + "TargetStructureID": 479, + "Label": "121749-479 via Gap Junction from 121750 -> 121748", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121750, + "TargetID": 121748, + "Directional": false + }] + }, { + "ID": 858, + "SourceStructureID": 121757, + "TargetStructureID": 479, + "Label": "121757-479 via Gap Junction from 121758 -> 115655", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121758, + "TargetID": 115655, + "Directional": false + }] + }, { + "ID": 859, + "SourceStructureID": 479, + "TargetStructureID": 121763, + "Label": "479-121763 via Unknown from 121762 -> 121764", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121762, + "TargetID": 121764, + "Directional": false + }] + }, { + "ID": 860, + "SourceStructureID": 121779, + "TargetStructureID": 479, + "Label": "121779-479 via Gap Junction from 121780 -> 121778", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121780, + "TargetID": 121778, + "Directional": false + }] + }, { + "ID": 861, + "SourceStructureID": 483, + "TargetStructureID": 483, + "Label": "483-483 via Gap Junction from 134091 -> 134090", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 134091, + "TargetID": 134090, + "Directional": false + }] + }, { + "ID": 862, + "SourceStructureID": 485, + "TargetStructureID": 483, + "Label": "485-483 via Adherens from 101726 -> 101727", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 101726, + "TargetID": 101727, + "Directional": false + }] + }, { + "ID": 863, + "SourceStructureID": 483, + "TargetStructureID": 485, + "Label": "483-485 via Gap Junction from 50436 -> 50435, 99195 -> 99196, 101720 -> 101719", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50436, + "TargetID": 50435, + "Directional": false + }, { + "SourceID": 99195, + "TargetID": 99196, + "Directional": false + }, { + "SourceID": 101720, + "TargetID": 101719, + "Directional": false + }] + }, { + "ID": 864, + "SourceStructureID": 483, + "TargetStructureID": 514, + "Label": "483-514 via Gap Junction from 6806 -> 3342", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 6806, + "TargetID": 3342, + "Directional": false + }] + }, { + "ID": 865, + "SourceStructureID": 483, + "TargetStructureID": 525, + "Label": "483-525 via BC Conventional Synapse from 97783 -> 97782", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 97783, + "TargetID": 97782, + "Directional": false + }] + }, { + "ID": 866, + "SourceStructureID": 483, + "TargetStructureID": 1724, + "Label": "483-1724 via Adherens from 101900 -> 101899", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 101900, + "TargetID": 101899, + "Directional": false + }] + }, { + "ID": 867, + "SourceStructureID": 4570, + "TargetStructureID": 483, + "Label": "4570-483 via Adherens from 136301 -> 136300", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136301, + "TargetID": 136300, + "Directional": false + }] + }, { + "ID": 868, + "SourceStructureID": 4570, + "TargetStructureID": 483, + "Label": "4570-483 via Gap Junction from 94573 -> 94572", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94573, + "TargetID": 94572, + "Directional": false + }] + }, { + "ID": 869, + "SourceStructureID": 4570, + "TargetStructureID": 483, + "Label": "4570-483 via Touch from 94588 -> 94587", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 94588, + "TargetID": 94587, + "Directional": false + }] + }, { + "ID": 870, + "SourceStructureID": 483, + "TargetStructureID": 4890, + "Label": "483-4890 via Adherens from 134020 -> 134021, 134044 -> 134043", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134020, + "TargetID": 134021, + "Directional": false + }, { + "SourceID": 134044, + "TargetID": 134043, + "Directional": false + }] + }, { + "ID": 871, + "SourceStructureID": 483, + "TargetStructureID": 4890, + "Label": "483-4890 via Unknown from 134072 -> 134073", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134072, + "TargetID": 134073, + "Directional": false + }] + }, { + "ID": 872, + "SourceStructureID": 483, + "TargetStructureID": 5117, + "Label": "483-5117 via Adherens from 71280 -> 71278", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71280, + "TargetID": 71278, + "Directional": false + }] + }, { + "ID": 873, + "SourceStructureID": 5487, + "TargetStructureID": 483, + "Label": "5487-483 via Unknown from 134070 -> 134071", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134070, + "TargetID": 134071, + "Directional": false + }] + }, { + "ID": 874, + "SourceStructureID": 483, + "TargetStructureID": 6073, + "Label": "483-6073 via Adherens from 103380 -> 103379", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103380, + "TargetID": 103379, + "Directional": false + }] + }, { + "ID": 875, + "SourceStructureID": 483, + "TargetStructureID": 6153, + "Label": "483-6153 via Gap Junction from 8426 -> 8425, 20338 -> 20339, 94708 -> 94709, 94742 -> 94743", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 8426, + "TargetID": 8425, + "Directional": false + }, { + "SourceID": 20338, + "TargetID": 20339, + "Directional": false + }, { + "SourceID": 94708, + "TargetID": 94709, + "Directional": false + }, { + "SourceID": 94742, + "TargetID": 94743, + "Directional": false + }] + }, { + "ID": 876, + "SourceStructureID": 6997, + "TargetStructureID": 483, + "Label": "6997-483 via Adherens from 22142 -> 81486", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 22142, + "TargetID": 81486, + "Directional": false + }] + }, { + "ID": 877, + "SourceStructureID": 6997, + "TargetStructureID": 483, + "Label": "6997-483 via Gap Junction from 97784 -> 97785", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 97784, + "TargetID": 97785, + "Directional": false + }] + }, { + "ID": 878, + "SourceStructureID": 18282, + "TargetStructureID": 483, + "Label": "18282-483 via Adherens from 102475 -> 20352", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 102475, + "TargetID": 20352, + "Directional": false + }] + }, { + "ID": 879, + "SourceStructureID": 483, + "TargetStructureID": 34601, + "Label": "483-34601 via Gap Junction from 60640 -> 60639", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60640, + "TargetID": 60639, + "Directional": false + }] + }, { + "ID": 880, + "SourceStructureID": 40010, + "TargetStructureID": 483, + "Label": "40010-483 via Adherens from 71350 -> 71349", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71350, + "TargetID": 71349, + "Directional": false + }] + }, { + "ID": 881, + "SourceStructureID": 49489, + "TargetStructureID": 483, + "Label": "49489-483 via Adherens from 103714 -> 60198", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103714, + "TargetID": 60198, + "Directional": false + }] + }, { + "ID": 882, + "SourceStructureID": 59285, + "TargetStructureID": 483, + "Label": "59285-483 via Adherens from 59288 -> 59287", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59288, + "TargetID": 59287, + "Directional": false + }] + }, { + "ID": 883, + "SourceStructureID": 59422, + "TargetStructureID": 483, + "Label": "59422-483 via Adherens from 134089 -> 134088", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134089, + "TargetID": 134088, + "Directional": false + }] + }, { + "ID": 884, + "SourceStructureID": 59429, + "TargetStructureID": 483, + "Label": "59429-483 via Postsynapse from 59430 -> 59428", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 59430, + "TargetID": 59428, + "Directional": false + }] + }, { + "ID": 885, + "SourceStructureID": 59455, + "TargetStructureID": 483, + "Label": "59455-483 via Adherens from 59456 -> 59454", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59456, + "TargetID": 59454, + "Directional": false + }] + }, { + "ID": 886, + "SourceStructureID": 59629, + "TargetStructureID": 483, + "Label": "59629-483 via Adherens from 134095 -> 134094", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134095, + "TargetID": 134094, + "Directional": false + }] + }, { + "ID": 887, + "SourceStructureID": 60215, + "TargetStructureID": 483, + "Label": "60215-483 via Adherens from 60216 -> 60214", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60216, + "TargetID": 60214, + "Directional": false + }] + }, { + "ID": 888, + "SourceStructureID": 60218, + "TargetStructureID": 483, + "Label": "60218-483 via Adherens from 148237 -> 148238", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148237, + "TargetID": 148238, + "Directional": false + }] + }, { + "ID": 889, + "SourceStructureID": 60334, + "TargetStructureID": 483, + "Label": "60334-483 via Adherens from 60335 -> 60333", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60335, + "TargetID": 60333, + "Directional": false + }] + }, { + "ID": 890, + "SourceStructureID": 483, + "TargetStructureID": 60368, + "Label": "483-60368 via Adherens from 60367 -> 60369", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60367, + "TargetID": 60369, + "Directional": false + }] + }, { + "ID": 891, + "SourceStructureID": 483, + "TargetStructureID": 61960, + "Label": "483-61960 via Adherens from 96604 -> 96605", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96604, + "TargetID": 96605, + "Directional": false + }] + }, { + "ID": 892, + "SourceStructureID": 65267, + "TargetStructureID": 483, + "Label": "65267-483 via Unknown from 134053 -> 134052, 134068 -> 134069, 148234 -> 148235", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134053, + "TargetID": 134052, + "Directional": false + }, { + "SourceID": 134068, + "TargetID": 134069, + "Directional": false + }, { + "SourceID": 148234, + "TargetID": 148235, + "Directional": false + }] + }, { + "ID": 893, + "SourceStructureID": 483, + "TargetStructureID": 70599, + "Label": "483-70599 via Unknown from 134057 -> 134056", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134057, + "TargetID": 134056, + "Directional": false + }] + }, { + "ID": 894, + "SourceStructureID": 483, + "TargetStructureID": 71133, + "Label": "483-71133 via Adherens from 71131 -> 71134", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71131, + "TargetID": 71134, + "Directional": false + }] + }, { + "ID": 895, + "SourceStructureID": 71215, + "TargetStructureID": 483, + "Label": "71215-483 via Unknown from 134096 -> 134097", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134096, + "TargetID": 134097, + "Directional": false + }] + }, { + "ID": 896, + "SourceStructureID": 71288, + "TargetStructureID": 483, + "Label": "71288-483 via Adherens from 71289 -> 71287, 71292 -> 71293", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71289, + "TargetID": 71287, + "Directional": false + }, { + "SourceID": 71292, + "TargetID": 71293, + "Directional": false + }] + }, { + "ID": 897, + "SourceStructureID": 483, + "TargetStructureID": 71357, + "Label": "483-71357 via Unknown from 71356 -> 71358", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 71356, + "TargetID": 71358, + "Directional": false + }] + }, { + "ID": 898, + "SourceStructureID": 71379, + "TargetStructureID": 483, + "Label": "71379-483 via Gap Junction from 71380 -> 71381", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71380, + "TargetID": 71381, + "Directional": false + }] + }, { + "ID": 899, + "SourceStructureID": 483, + "TargetStructureID": 85748, + "Label": "483-85748 via Adherens from 85762 -> 85763", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85762, + "TargetID": 85763, + "Directional": false + }] + }, { + "ID": 900, + "SourceStructureID": 92313, + "TargetStructureID": 483, + "Label": "92313-483 via Gap Junction from 92314 -> 92312", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92314, + "TargetID": 92312, + "Directional": false + }] + }, { + "ID": 901, + "SourceStructureID": 483, + "TargetStructureID": 92313, + "Label": "483-92313 via Unknown from 92318 -> 92317", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92318, + "TargetID": 92317, + "Directional": false + }] + }, { + "ID": 902, + "SourceStructureID": 92320, + "TargetStructureID": 483, + "Label": "92320-483 via Unknown from 92321 -> 92319", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92321, + "TargetID": 92319, + "Directional": false + }] + }, { + "ID": 903, + "SourceStructureID": 483, + "TargetStructureID": 92331, + "Label": "483-92331 via Gap Junction from 92330 -> 92333", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92330, + "TargetID": 92333, + "Directional": false + }] + }, { + "ID": 904, + "SourceStructureID": 483, + "TargetStructureID": 94601, + "Label": "483-94601 via Unknown from 134037 -> 134038", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134037, + "TargetID": 134038, + "Directional": false + }] + }, { + "ID": 905, + "SourceStructureID": 483, + "TargetStructureID": 94607, + "Label": "483-94607 via Gap Junction from 94606 -> 94608, 94609 -> 94605", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94606, + "TargetID": 94608, + "Directional": false + }, { + "SourceID": 94609, + "TargetID": 94605, + "Directional": false + }] + }, { + "ID": 906, + "SourceStructureID": 96610, + "TargetStructureID": 483, + "Label": "96610-483 via Adherens from 96611 -> 96609", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96611, + "TargetID": 96609, + "Directional": false + }] + }, { + "ID": 907, + "SourceStructureID": 483, + "TargetStructureID": 97753, + "Label": "483-97753 via Unknown from 97752 -> 97756", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97752, + "TargetID": 97756, + "Directional": false + }] + }, { + "ID": 908, + "SourceStructureID": 483, + "TargetStructureID": 102042, + "Label": "483-102042 via Adherens from 102044 -> 102043", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 102044, + "TargetID": 102043, + "Directional": false + }] + }, { + "ID": 909, + "SourceStructureID": 102042, + "TargetStructureID": 483, + "Label": "102042-483 via Gap Junction from 102047 -> 94563, 102049 -> 102048", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 102047, + "TargetID": 94563, + "Directional": false + }, { + "SourceID": 102049, + "TargetID": 102048, + "Directional": false + }] + }, { + "ID": 910, + "SourceStructureID": 483, + "TargetStructureID": 102194, + "Label": "483-102194 via Unknown from 134004 -> 134005", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134004, + "TargetID": 134005, + "Directional": false + }] + }, { + "ID": 911, + "SourceStructureID": 483, + "TargetStructureID": 102269, + "Label": "483-102269 via Unknown from 102271 -> 102270", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102271, + "TargetID": 102270, + "Directional": false + }] + }, { + "ID": 912, + "SourceStructureID": 483, + "TargetStructureID": 102307, + "Label": "483-102307 via Unknown from 102309 -> 102308", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102309, + "TargetID": 102308, + "Directional": false + }] + }, { + "ID": 913, + "SourceStructureID": 483, + "TargetStructureID": 102318, + "Label": "483-102318 via Adherens from 134006 -> 134007", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134006, + "TargetID": 134007, + "Directional": false + }] + }, { + "ID": 914, + "SourceStructureID": 483, + "TargetStructureID": 102399, + "Label": "483-102399 via Unknown from 102401 -> 102402", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102401, + "TargetID": 102402, + "Directional": false + }] + }, { + "ID": 915, + "SourceStructureID": 102412, + "TargetStructureID": 483, + "Label": "102412-483 via Unknown from 134077 -> 134078", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134077, + "TargetID": 134078, + "Directional": false + }] + }, { + "ID": 916, + "SourceStructureID": 483, + "TargetStructureID": 102440, + "Label": "483-102440 via Unknown from 102448 -> 102447, 134081 -> 134080", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102448, + "TargetID": 102447, + "Directional": false + }, { + "SourceID": 134081, + "TargetID": 134080, + "Directional": false + }] + }, { + "ID": 917, + "SourceStructureID": 102531, + "TargetStructureID": 483, + "Label": "102531-483 via Unknown from 102537 -> 102536", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102537, + "TargetID": 102536, + "Directional": false + }] + }, { + "ID": 918, + "SourceStructureID": 102565, + "TargetStructureID": 483, + "Label": "102565-483 via Adherens from 102566 -> 6712", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 102566, + "TargetID": 6712, + "Directional": false + }] + }, { + "ID": 919, + "SourceStructureID": 102615, + "TargetStructureID": 483, + "Label": "102615-483 via Adherens from 102624 -> 94565", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 102624, + "TargetID": 94565, + "Directional": false + }] + }, { + "ID": 920, + "SourceStructureID": 483, + "TargetStructureID": 102618, + "Label": "483-102618 via Unknown from 102620 -> 102619", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102620, + "TargetID": 102619, + "Directional": false + }] + }, { + "ID": 921, + "SourceStructureID": 102629, + "TargetStructureID": 483, + "Label": "102629-483 via Unknown from 134010 -> 134009", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134010, + "TargetID": 134009, + "Directional": false + }] + }, { + "ID": 922, + "SourceStructureID": 483, + "TargetStructureID": 102720, + "Label": "483-102720 via Unknown from 134011 -> 134012", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134011, + "TargetID": 134012, + "Directional": false + }] + }, { + "ID": 923, + "SourceStructureID": 102773, + "TargetStructureID": 483, + "Label": "102773-483 via Adherens from 134014 -> 134013", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134014, + "TargetID": 134013, + "Directional": false + }] + }, { + "ID": 924, + "SourceStructureID": 483, + "TargetStructureID": 102782, + "Label": "483-102782 via Unknown from 102784 -> 102783", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102784, + "TargetID": 102783, + "Directional": false + }] + }, { + "ID": 925, + "SourceStructureID": 102828, + "TargetStructureID": 483, + "Label": "102828-483 via Unknown from 102831 -> 102830", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102831, + "TargetID": 102830, + "Directional": false + }] + }, { + "ID": 926, + "SourceStructureID": 102832, + "TargetStructureID": 483, + "Label": "102832-483 via Adherens from 102837 -> 102836", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 102837, + "TargetID": 102836, + "Directional": false + }] + }, { + "ID": 927, + "SourceStructureID": 102832, + "TargetStructureID": 483, + "Label": "102832-483 via Unknown from 102834 -> 102835", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102834, + "TargetID": 102835, + "Directional": false + }] + }, { + "ID": 928, + "SourceStructureID": 102848, + "TargetStructureID": 483, + "Label": "102848-483 via Adherens from 102852 -> 94569", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 102852, + "TargetID": 94569, + "Directional": false + }] + }, { + "ID": 929, + "SourceStructureID": 102848, + "TargetStructureID": 483, + "Label": "102848-483 via Unknown from 134059 -> 134058", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134059, + "TargetID": 134058, + "Directional": false + }] + }, { + "ID": 930, + "SourceStructureID": 483, + "TargetStructureID": 102873, + "Label": "483-102873 via Unknown from 102875 -> 102874", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102875, + "TargetID": 102874, + "Directional": false + }] + }, { + "ID": 931, + "SourceStructureID": 483, + "TargetStructureID": 103050, + "Label": "483-103050 via Unknown from 103052 -> 103051", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103052, + "TargetID": 103051, + "Directional": false + }] + }, { + "ID": 932, + "SourceStructureID": 103054, + "TargetStructureID": 483, + "Label": "103054-483 via Adherens from 134018 -> 134017", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134018, + "TargetID": 134017, + "Directional": false + }] + }, { + "ID": 933, + "SourceStructureID": 103084, + "TargetStructureID": 483, + "Label": "103084-483 via Adherens from 134019 -> 94585", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134019, + "TargetID": 94585, + "Directional": false + }] + }, { + "ID": 934, + "SourceStructureID": 483, + "TargetStructureID": 103185, + "Label": "483-103185 via Unknown from 134062 -> 134063", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134062, + "TargetID": 134063, + "Directional": false + }] + }, { + "ID": 935, + "SourceStructureID": 103195, + "TargetStructureID": 483, + "Label": "103195-483 via Adherens from 103199 -> 103198", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103199, + "TargetID": 103198, + "Directional": false + }] + }, { + "ID": 936, + "SourceStructureID": 483, + "TargetStructureID": 103258, + "Label": "483-103258 via Adherens from 134025 -> 134026", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134025, + "TargetID": 134026, + "Directional": false + }] + }, { + "ID": 937, + "SourceStructureID": 103284, + "TargetStructureID": 483, + "Label": "103284-483 via Gap Junction from 103285 -> 103283", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 103285, + "TargetID": 103283, + "Directional": false + }] + }, { + "ID": 938, + "SourceStructureID": 483, + "TargetStructureID": 103293, + "Label": "483-103293 via Unknown from 134027 -> 134028", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134027, + "TargetID": 134028, + "Directional": false + }] + }, { + "ID": 939, + "SourceStructureID": 483, + "TargetStructureID": 103319, + "Label": "483-103319 via Unknown from 134065 -> 134064, 148240 -> 148239", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134065, + "TargetID": 134064, + "Directional": false + }, { + "SourceID": 148240, + "TargetID": 148239, + "Directional": false + }] + }, { + "ID": 940, + "SourceStructureID": 103324, + "TargetStructureID": 483, + "Label": "103324-483 via Unknown from 103325 -> 103323", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103325, + "TargetID": 103323, + "Directional": false + }] + }, { + "ID": 941, + "SourceStructureID": 483, + "TargetStructureID": 103342, + "Label": "483-103342 via Unknown from 134031 -> 134032", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134031, + "TargetID": 134032, + "Directional": false + }] + }, { + "ID": 942, + "SourceStructureID": 103356, + "TargetStructureID": 483, + "Label": "103356-483 via Unknown from 134034 -> 134033", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134034, + "TargetID": 134033, + "Directional": false + }] + }, { + "ID": 943, + "SourceStructureID": 483, + "TargetStructureID": 103376, + "Label": "483-103376 via Unknown from 134036 -> 134035", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134036, + "TargetID": 134035, + "Directional": false + }] + }, { + "ID": 944, + "SourceStructureID": 483, + "TargetStructureID": 103402, + "Label": "483-103402 via Adherens from 134086 -> 134087", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134086, + "TargetID": 134087, + "Directional": false + }] + }, { + "ID": 945, + "SourceStructureID": 483, + "TargetStructureID": 103452, + "Label": "483-103452 via Unknown from 134066 -> 134067", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134066, + "TargetID": 134067, + "Directional": false + }] + }, { + "ID": 946, + "SourceStructureID": 103498, + "TargetStructureID": 483, + "Label": "103498-483 via Unknown from 103499 -> 97454", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103499, + "TargetID": 97454, + "Directional": false + }] + }, { + "ID": 947, + "SourceStructureID": 103534, + "TargetStructureID": 483, + "Label": "103534-483 via Unknown from 103535 -> 97434", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103535, + "TargetID": 97434, + "Directional": false + }] + }, { + "ID": 948, + "SourceStructureID": 483, + "TargetStructureID": 103720, + "Label": "483-103720 via Unknown from 134047 -> 134046", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134047, + "TargetID": 134046, + "Directional": false + }] + }, { + "ID": 949, + "SourceStructureID": 483, + "TargetStructureID": 103732, + "Label": "483-103732 via Unknown from 134051 -> 134050", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134051, + "TargetID": 134050, + "Directional": false + }] + }, { + "ID": 950, + "SourceStructureID": 483, + "TargetStructureID": 103745, + "Label": "483-103745 via Adherens from 134048 -> 134049", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134048, + "TargetID": 134049, + "Directional": false + }] + }, { + "ID": 951, + "SourceStructureID": 136790, + "TargetStructureID": 483, + "Label": "136790-483 via Gap Junction from 136791 -> 94567", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136791, + "TargetID": 94567, + "Directional": false + }] + }, { + "ID": 952, + "SourceStructureID": 485, + "TargetStructureID": 485, + "Label": "485-485 via Gap Junction from 51073 -> 51076, 94094 -> 94093, 99953 -> 46848, 100612 -> 100613, 148414 -> 148413, 148417 -> 148416", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51073, + "TargetID": 51076, + "Directional": false + }, { + "SourceID": 94094, + "TargetID": 94093, + "Directional": false + }, { + "SourceID": 99953, + "TargetID": 46848, + "Directional": false + }, { + "SourceID": 100612, + "TargetID": 100613, + "Directional": false + }, { + "SourceID": 148414, + "TargetID": 148413, + "Directional": false + }, { + "SourceID": 148417, + "TargetID": 148416, + "Directional": false + }] + }, { + "ID": 953, + "SourceStructureID": 485, + "TargetStructureID": 514, + "Label": "485-514 via Gap Junction from 49905 -> 49906, 148412 -> 148411", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49905, + "TargetID": 49906, + "Directional": false + }, { + "SourceID": 148412, + "TargetID": 148411, + "Directional": false + }] + }, { + "ID": 954, + "SourceStructureID": 2610, + "TargetStructureID": 485, + "Label": "2610-485 via Gap Junction from 94242 -> 94241, 94264 -> 94263, 148061 -> 148060", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94242, + "TargetID": 94241, + "Directional": false + }, { + "SourceID": 94264, + "TargetID": 94263, + "Directional": false + }, { + "SourceID": 148061, + "TargetID": 148060, + "Directional": false + }] + }, { + "ID": 955, + "SourceStructureID": 485, + "TargetStructureID": 4890, + "Label": "485-4890 via Adherens from 148247 -> 148246, 148249 -> 148248", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148247, + "TargetID": 148246, + "Directional": false + }, { + "SourceID": 148249, + "TargetID": 148248, + "Directional": false + }] + }, { + "ID": 956, + "SourceStructureID": 485, + "TargetStructureID": 4890, + "Label": "485-4890 via Unknown from 134171 -> 134172", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134171, + "TargetID": 134172, + "Directional": false + }] + }, { + "ID": 957, + "SourceStructureID": 485, + "TargetStructureID": 5117, + "Label": "485-5117 via Adherens from 99894 -> 99895", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99894, + "TargetID": 99895, + "Directional": false + }] + }, { + "ID": 958, + "SourceStructureID": 5575, + "TargetStructureID": 485, + "Label": "5575-485 via Unknown from 134117 -> 134118", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134117, + "TargetID": 134118, + "Directional": false + }] + }, { + "ID": 959, + "SourceStructureID": 485, + "TargetStructureID": 6153, + "Label": "485-6153 via Adherens from 148010 -> 148009", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148010, + "TargetID": 148009, + "Directional": false + }] + }, { + "ID": 960, + "SourceStructureID": 6153, + "TargetStructureID": 485, + "Label": "6153-485 via Gap Junction from 94203 -> 94202, 94205 -> 94204", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94203, + "TargetID": 94202, + "Directional": false + }, { + "SourceID": 94205, + "TargetID": 94204, + "Directional": false + }] + }, { + "ID": 961, + "SourceStructureID": 485, + "TargetStructureID": 6155, + "Label": "485-6155 via Touch from 121216 -> 121217", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 121216, + "TargetID": 121217, + "Directional": false + }] + }, { + "ID": 962, + "SourceStructureID": 485, + "TargetStructureID": 6997, + "Label": "485-6997 via Adherens from 136830 -> 136831", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136830, + "TargetID": 136831, + "Directional": false + }] + }, { + "ID": 963, + "SourceStructureID": 6997, + "TargetStructureID": 485, + "Label": "6997-485 via Gap Junction from 94253 -> 94267, 148054 -> 148053", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94253, + "TargetID": 94267, + "Directional": false + }, { + "SourceID": 148054, + "TargetID": 148053, + "Directional": false + }] + }, { + "ID": 964, + "SourceStructureID": 485, + "TargetStructureID": 18282, + "Label": "485-18282 via Adherens from 120436 -> 120435, 134213 -> 134214", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 120436, + "TargetID": 120435, + "Directional": false + }, { + "SourceID": 134213, + "TargetID": 134214, + "Directional": false + }] + }, { + "ID": 965, + "SourceStructureID": 18282, + "TargetStructureID": 485, + "Label": "18282-485 via Unknown from 134194 -> 134195", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134194, + "TargetID": 134195, + "Directional": false + }] + }, { + "ID": 966, + "SourceStructureID": 22554, + "TargetStructureID": 485, + "Label": "22554-485 via Adherens from 99751 -> 99750", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99751, + "TargetID": 99750, + "Directional": false + }] + }, { + "ID": 967, + "SourceStructureID": 22554, + "TargetStructureID": 485, + "Label": "22554-485 via Unknown from 94209 -> 94208", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94209, + "TargetID": 94208, + "Directional": false + }] + }, { + "ID": 968, + "SourceStructureID": 32654, + "TargetStructureID": 485, + "Label": "32654-485 via Gap Junction from 100603 -> 100602", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 100603, + "TargetID": 100602, + "Directional": false + }] + }, { + "ID": 969, + "SourceStructureID": 485, + "TargetStructureID": 85748, + "Label": "485-85748 via Unknown from 134197 -> 134198", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134197, + "TargetID": 134198, + "Directional": false + }] + }, { + "ID": 970, + "SourceStructureID": 95482, + "TargetStructureID": 485, + "Label": "95482-485 via Adherens from 101435 -> 101436", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 101435, + "TargetID": 101436, + "Directional": false + }] + }, { + "ID": 971, + "SourceStructureID": 99401, + "TargetStructureID": 485, + "Label": "99401-485 via Adherens from 148017 -> 148016", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148017, + "TargetID": 148016, + "Directional": false + }] + }, { + "ID": 972, + "SourceStructureID": 99401, + "TargetStructureID": 485, + "Label": "99401-485 via Gap Junction from 99402 -> 99400", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 99402, + "TargetID": 99400, + "Directional": false + }] + }, { + "ID": 973, + "SourceStructureID": 99438, + "TargetStructureID": 485, + "Label": "99438-485 via Adherens from 99439 -> 99437", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99439, + "TargetID": 99437, + "Directional": false + }] + }, { + "ID": 974, + "SourceStructureID": 99489, + "TargetStructureID": 485, + "Label": "99489-485 via Unknown from 99497 -> 50883", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99497, + "TargetID": 50883, + "Directional": false + }] + }, { + "ID": 975, + "SourceStructureID": 99763, + "TargetStructureID": 485, + "Label": "99763-485 via Unknown from 134200 -> 134199", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134200, + "TargetID": 134199, + "Directional": false + }] + }, { + "ID": 976, + "SourceStructureID": 99783, + "TargetStructureID": 485, + "Label": "99783-485 via Adherens from 134201 -> 134202", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134201, + "TargetID": 134202, + "Directional": false + }] + }, { + "ID": 977, + "SourceStructureID": 99850, + "TargetStructureID": 485, + "Label": "99850-485 via Adherens from 99855 -> 99856", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99855, + "TargetID": 99856, + "Directional": false + }] + }, { + "ID": 978, + "SourceStructureID": 99882, + "TargetStructureID": 485, + "Label": "99882-485 via Adherens from 99883 -> 99881", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99883, + "TargetID": 99881, + "Directional": false + }] + }, { + "ID": 979, + "SourceStructureID": 485, + "TargetStructureID": 99884, + "Label": "485-99884 via Unknown from 99887 -> 99886", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99887, + "TargetID": 99886, + "Directional": false + }] + }, { + "ID": 980, + "SourceStructureID": 485, + "TargetStructureID": 99901, + "Label": "485-99901 via Unknown from 99903 -> 99902", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99903, + "TargetID": 99902, + "Directional": false + }] + }, { + "ID": 981, + "SourceStructureID": 485, + "TargetStructureID": 99909, + "Label": "485-99909 via Adherens from 134219 -> 134220", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134219, + "TargetID": 134220, + "Directional": false + }] + }, { + "ID": 982, + "SourceStructureID": 485, + "TargetStructureID": 99916, + "Label": "485-99916 via Unknown from 134210 -> 134209", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134210, + "TargetID": 134209, + "Directional": false + }] + }, { + "ID": 983, + "SourceStructureID": 99967, + "TargetStructureID": 485, + "Label": "99967-485 via Unknown from 99968 -> 99966", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99968, + "TargetID": 99966, + "Directional": false + }] + }, { + "ID": 984, + "SourceStructureID": 99984, + "TargetStructureID": 485, + "Label": "99984-485 via Gap Junction from 136792 -> 99986", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136792, + "TargetID": 99986, + "Directional": false + }] + }, { + "ID": 985, + "SourceStructureID": 485, + "TargetStructureID": 100059, + "Label": "485-100059 via Unknown from 100061 -> 100060", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100061, + "TargetID": 100060, + "Directional": false + }] + }, { + "ID": 986, + "SourceStructureID": 485, + "TargetStructureID": 100198, + "Label": "485-100198 via Adherens from 147997 -> 147998", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147997, + "TargetID": 147998, + "Directional": false + }] + }, { + "ID": 987, + "SourceStructureID": 100198, + "TargetStructureID": 485, + "Label": "100198-485 via Gap Junction from 100204 -> 100203", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 100204, + "TargetID": 100203, + "Directional": false + }] + }, { + "ID": 988, + "SourceStructureID": 100205, + "TargetStructureID": 485, + "Label": "100205-485 via Unknown from 100206 -> 50687", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100206, + "TargetID": 50687, + "Directional": false + }] + }, { + "ID": 989, + "SourceStructureID": 485, + "TargetStructureID": 100261, + "Label": "485-100261 via Adherens from 100263 -> 100262", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100263, + "TargetID": 100262, + "Directional": false + }] + }, { + "ID": 990, + "SourceStructureID": 100345, + "TargetStructureID": 485, + "Label": "100345-485 via Adherens from 100347 -> 51160", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100347, + "TargetID": 51160, + "Directional": false + }] + }, { + "ID": 991, + "SourceStructureID": 485, + "TargetStructureID": 100596, + "Label": "485-100596 via Unknown from 134103 -> 134104", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134103, + "TargetID": 134104, + "Directional": false + }] + }, { + "ID": 992, + "SourceStructureID": 100733, + "TargetStructureID": 485, + "Label": "100733-485 via Gap Junction from 100734 -> 94002", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 100734, + "TargetID": 94002, + "Directional": false + }] + }, { + "ID": 993, + "SourceStructureID": 485, + "TargetStructureID": 100895, + "Label": "485-100895 via Adherens from 134115 -> 134116", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134115, + "TargetID": 134116, + "Directional": false + }] + }, { + "ID": 994, + "SourceStructureID": 100907, + "TargetStructureID": 485, + "Label": "100907-485 via Unknown from 100908 -> 100909", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100908, + "TargetID": 100909, + "Directional": false + }] + }, { + "ID": 995, + "SourceStructureID": 485, + "TargetStructureID": 100942, + "Label": "485-100942 via Unknown from 100944 -> 100943", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100944, + "TargetID": 100943, + "Directional": false + }] + }, { + "ID": 996, + "SourceStructureID": 100946, + "TargetStructureID": 485, + "Label": "100946-485 via Unknown from 134106 -> 134105", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134106, + "TargetID": 134105, + "Directional": false + }] + }, { + "ID": 997, + "SourceStructureID": 485, + "TargetStructureID": 100960, + "Label": "485-100960 via Adherens from 134108 -> 134107", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134108, + "TargetID": 134107, + "Directional": false + }] + }, { + "ID": 998, + "SourceStructureID": 485, + "TargetStructureID": 100987, + "Label": "485-100987 via Unknown from 100989 -> 100988", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100989, + "TargetID": 100988, + "Directional": false + }] + }, { + "ID": 999, + "SourceStructureID": 485, + "TargetStructureID": 100990, + "Label": "485-100990 via Unknown from 134109 -> 134110", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134109, + "TargetID": 134110, + "Directional": false + }] + }, { + "ID": 1000, + "SourceStructureID": 485, + "TargetStructureID": 101007, + "Label": "485-101007 via Unknown from 134112 -> 134111", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134112, + "TargetID": 134111, + "Directional": false + }] + }, { + "ID": 1001, + "SourceStructureID": 101102, + "TargetStructureID": 485, + "Label": "101102-485 via Unknown from 101104 -> 101106", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101104, + "TargetID": 101106, + "Directional": false + }] + }, { + "ID": 1002, + "SourceStructureID": 485, + "TargetStructureID": 101145, + "Label": "485-101145 via Adherens from 148000 -> 147999", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148000, + "TargetID": 147999, + "Directional": false + }] + }, { + "ID": 1003, + "SourceStructureID": 485, + "TargetStructureID": 101180, + "Label": "485-101180 via Unknown from 134215 -> 134216", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134215, + "TargetID": 134216, + "Directional": false + }] + }, { + "ID": 1004, + "SourceStructureID": 485, + "TargetStructureID": 101220, + "Label": "485-101220 via Gap Junction from 101224 -> 101223", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 101224, + "TargetID": 101223, + "Directional": false + }] + }, { + "ID": 1005, + "SourceStructureID": 485, + "TargetStructureID": 101220, + "Label": "485-101220 via Unknown from 101226 -> 101225", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101226, + "TargetID": 101225, + "Directional": false + }] + }, { + "ID": 1006, + "SourceStructureID": 101238, + "TargetStructureID": 485, + "Label": "101238-485 via Unknown from 101245 -> 101246", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101245, + "TargetID": 101246, + "Directional": false + }] + }, { + "ID": 1007, + "SourceStructureID": 485, + "TargetStructureID": 101253, + "Label": "485-101253 via Unknown from 101255 -> 101254", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101255, + "TargetID": 101254, + "Directional": false + }] + }, { + "ID": 1008, + "SourceStructureID": 101314, + "TargetStructureID": 485, + "Label": "101314-485 via Adherens from 148059 -> 148058", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148059, + "TargetID": 148058, + "Directional": false + }] + }, { + "ID": 1009, + "SourceStructureID": 101423, + "TargetStructureID": 485, + "Label": "101423-485 via Unknown from 101425 -> 101424", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101425, + "TargetID": 101424, + "Directional": false + }] + }, { + "ID": 1010, + "SourceStructureID": 485, + "TargetStructureID": 101486, + "Label": "485-101486 via Adherens from 134174 -> 134175", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134174, + "TargetID": 134175, + "Directional": false + }] + }, { + "ID": 1011, + "SourceStructureID": 101498, + "TargetStructureID": 485, + "Label": "101498-485 via Unknown from 134176 -> 134177", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134176, + "TargetID": 134177, + "Directional": false + }] + }, { + "ID": 1012, + "SourceStructureID": 485, + "TargetStructureID": 101728, + "Label": "485-101728 via Gap Junction from 94361 -> 101729", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94361, + "TargetID": 101729, + "Directional": false + }] + }, { + "ID": 1013, + "SourceStructureID": 485, + "TargetStructureID": 101728, + "Label": "485-101728 via Unknown from 134178 -> 134179, 134181 -> 134180", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134178, + "TargetID": 134179, + "Directional": false + }, { + "SourceID": 134181, + "TargetID": 134180, + "Directional": false + }] + }, { + "ID": 1014, + "SourceStructureID": 485, + "TargetStructureID": 101751, + "Label": "485-101751 via Unknown from 101763 -> 101762, 134182 -> 134183", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101763, + "TargetID": 101762, + "Directional": false + }, { + "SourceID": 134182, + "TargetID": 134183, + "Directional": false + }] + }, { + "ID": 1015, + "SourceStructureID": 485, + "TargetStructureID": 101798, + "Label": "485-101798 via Unknown from 134184 -> 134185", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134184, + "TargetID": 134185, + "Directional": false + }] + }, { + "ID": 1016, + "SourceStructureID": 101801, + "TargetStructureID": 485, + "Label": "101801-485 via Unknown from 134187 -> 134186", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134187, + "TargetID": 134186, + "Directional": false + }] + }, { + "ID": 1017, + "SourceStructureID": 101845, + "TargetStructureID": 485, + "Label": "101845-485 via Adherens from 101846 -> 101844", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 101846, + "TargetID": 101844, + "Directional": false + }] + }, { + "ID": 1018, + "SourceStructureID": 101868, + "TargetStructureID": 485, + "Label": "101868-485 via Unknown from 101869 -> 49917", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101869, + "TargetID": 49917, + "Directional": false + }] + }, { + "ID": 1019, + "SourceStructureID": 485, + "TargetStructureID": 101881, + "Label": "485-101881 via Unknown from 101883 -> 101884", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101883, + "TargetID": 101884, + "Directional": false + }] + }, { + "ID": 1020, + "SourceStructureID": 101886, + "TargetStructureID": 485, + "Label": "101886-485 via Unknown from 134190 -> 134191", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134190, + "TargetID": 134191, + "Directional": false + }] + }, { + "ID": 1021, + "SourceStructureID": 485, + "TargetStructureID": 101906, + "Label": "485-101906 via Unknown from 101909 -> 101908", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101909, + "TargetID": 101908, + "Directional": false + }] + }, { + "ID": 1022, + "SourceStructureID": 485, + "TargetStructureID": 101920, + "Label": "485-101920 via Unknown from 134193 -> 134192", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134193, + "TargetID": 134192, + "Directional": false + }] + }, { + "ID": 1023, + "SourceStructureID": 488, + "TargetStructureID": 488, + "Label": "488-488 via Adherens from 87799 -> 87798", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87799, + "TargetID": 87798, + "Directional": false + }] + }, { + "ID": 1024, + "SourceStructureID": 488, + "TargetStructureID": 4850, + "Label": "488-4850 via Unknown from 97816 -> 97817", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97816, + "TargetID": 97817, + "Directional": false + }] + }, { + "ID": 1025, + "SourceStructureID": 6153, + "TargetStructureID": 488, + "Label": "6153-488 via Adherens from 87791 -> 87790", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87791, + "TargetID": 87790, + "Directional": false + }] + }, { + "ID": 1026, + "SourceStructureID": 514, + "TargetStructureID": 593, + "Label": "514-593 via Gap Junction from 2559 -> 52461, 15894 -> 3077, 115747 -> 115746", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 2559, + "TargetID": 52461, + "Directional": false + }, { + "SourceID": 15894, + "TargetID": 3077, + "Directional": false + }, { + "SourceID": 115747, + "TargetID": 115746, + "Directional": false + }] + }, { + "ID": 1027, + "SourceStructureID": 514, + "TargetStructureID": 1724, + "Label": "514-1724 via Gap Junction from 1004 -> 43309, 1806 -> 1803, 4016 -> 4018, 4034 -> 4035, 4122 -> 1009, 20014 -> 3972, 22606 -> 3242, 47345 -> 1447, 47377 -> 1442, 47401 -> 3072, 48675 -> 48674, 100237 -> 100238", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 1004, + "TargetID": 43309, + "Directional": false + }, { + "SourceID": 1806, + "TargetID": 1803, + "Directional": false + }, { + "SourceID": 4016, + "TargetID": 4018, + "Directional": false + }, { + "SourceID": 4034, + "TargetID": 4035, + "Directional": false + }, { + "SourceID": 4122, + "TargetID": 1009, + "Directional": false + }, { + "SourceID": 20014, + "TargetID": 3972, + "Directional": false + }, { + "SourceID": 22606, + "TargetID": 3242, + "Directional": false + }, { + "SourceID": 47345, + "TargetID": 1447, + "Directional": false + }, { + "SourceID": 47377, + "TargetID": 1442, + "Directional": false + }, { + "SourceID": 47401, + "TargetID": 3072, + "Directional": false + }, { + "SourceID": 48675, + "TargetID": 48674, + "Directional": false + }, { + "SourceID": 100237, + "TargetID": 100238, + "Directional": false + }] + }, { + "ID": 1028, + "SourceStructureID": 514, + "TargetStructureID": 2610, + "Label": "514-2610 via Gap Junction from 1452 -> 13805, 2511 -> 135028, 15093 -> 2793, 16540 -> 16539, 17039 -> 13793, 17051 -> 17050, 17101 -> 17072, 17102 -> 17085, 17170 -> 17169, 17223 -> 17222, 17939 -> 2885, 17976 -> 17975, 18000 -> 18001, 19055 -> 19056, 29762 -> 29761, 134993 -> 134992", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 1452, + "TargetID": 13805, + "Directional": false + }, { + "SourceID": 2511, + "TargetID": 135028, + "Directional": false + }, { + "SourceID": 15093, + "TargetID": 2793, + "Directional": false + }, { + "SourceID": 16540, + "TargetID": 16539, + "Directional": false + }, { + "SourceID": 17039, + "TargetID": 13793, + "Directional": false + }, { + "SourceID": 17051, + "TargetID": 17050, + "Directional": false + }, { + "SourceID": 17101, + "TargetID": 17072, + "Directional": false + }, { + "SourceID": 17102, + "TargetID": 17085, + "Directional": false + }, { + "SourceID": 17170, + "TargetID": 17169, + "Directional": false + }, { + "SourceID": 17223, + "TargetID": 17222, + "Directional": false + }, { + "SourceID": 17939, + "TargetID": 2885, + "Directional": false + }, { + "SourceID": 17976, + "TargetID": 17975, + "Directional": false + }, { + "SourceID": 18000, + "TargetID": 18001, + "Directional": false + }, { + "SourceID": 19055, + "TargetID": 19056, + "Directional": false + }, { + "SourceID": 29762, + "TargetID": 29761, + "Directional": false + }, { + "SourceID": 134993, + "TargetID": 134992, + "Directional": false + }] + }, { + "ID": 1029, + "SourceStructureID": 3257, + "TargetStructureID": 514, + "Label": "3257-514 via Gap Junction from 10860 -> 10850, 16199 -> 10844", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10860, + "TargetID": 10850, + "Directional": false + }, { + "SourceID": 16199, + "TargetID": 10844, + "Directional": false + }] + }, { + "ID": 1030, + "SourceStructureID": 3679, + "TargetStructureID": 514, + "Label": "3679-514 via Adherens from 16344 -> 16343", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 16344, + "TargetID": 16343, + "Directional": false + }] + }, { + "ID": 1031, + "SourceStructureID": 3679, + "TargetStructureID": 514, + "Label": "3679-514 via Gap Junction from 5050 -> 3253, 8005 -> 3094, 10926 -> 3802, 10941 -> 5225, 11595 -> 4704, 11596 -> 4705, 13832 -> 13831, 16436 -> 16435, 16439 -> 5013, 18425 -> 10920", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 5050, + "TargetID": 3253, + "Directional": false + }, { + "SourceID": 8005, + "TargetID": 3094, + "Directional": false + }, { + "SourceID": 10926, + "TargetID": 3802, + "Directional": false + }, { + "SourceID": 10941, + "TargetID": 5225, + "Directional": false + }, { + "SourceID": 11595, + "TargetID": 4704, + "Directional": false + }, { + "SourceID": 11596, + "TargetID": 4705, + "Directional": false + }, { + "SourceID": 13832, + "TargetID": 13831, + "Directional": false + }, { + "SourceID": 16436, + "TargetID": 16435, + "Directional": false + }, { + "SourceID": 16439, + "TargetID": 5013, + "Directional": false + }, { + "SourceID": 18425, + "TargetID": 10920, + "Directional": false + }] + }, { + "ID": 1032, + "SourceStructureID": 4835, + "TargetStructureID": 514, + "Label": "4835-514 via Gap Junction from 36741 -> 14961", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 36741, + "TargetID": 14961, + "Directional": false + }] + }, { + "ID": 1033, + "SourceStructureID": 5017, + "TargetStructureID": 514, + "Label": "5017-514 via Adherens from 61240 -> 61239, 158799 -> 158790", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 61240, + "TargetID": 61239, + "Directional": false + }, { + "SourceID": 158799, + "TargetID": 158790, + "Directional": false + }] + }, { + "ID": 1034, + "SourceStructureID": 514, + "TargetStructureID": 5150, + "Label": "514-5150 via Adherens from 15406 -> 15405", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 15406, + "TargetID": 15405, + "Directional": false + }] + }, { + "ID": 1035, + "SourceStructureID": 514, + "TargetStructureID": 5279, + "Label": "514-5279 via Adherens from 147957 -> 147958", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147957, + "TargetID": 147958, + "Directional": false + }] + }, { + "ID": 1036, + "SourceStructureID": 5279, + "TargetStructureID": 514, + "Label": "5279-514 via Gap Junction from 6171 -> 1008, 92617 -> 3075", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 6171, + "TargetID": 1008, + "Directional": false + }, { + "SourceID": 92617, + "TargetID": 3075, + "Directional": false + }] + }, { + "ID": 1037, + "SourceStructureID": 514, + "TargetStructureID": 5279, + "Label": "514-5279 via Touch from 33857 -> 33856", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 33857, + "TargetID": 33856, + "Directional": false + }] + }, { + "ID": 1038, + "SourceStructureID": 5283, + "TargetStructureID": 514, + "Label": "5283-514 via Gap Junction from 132182 -> 132184", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132182, + "TargetID": 132184, + "Directional": false + }] + }, { + "ID": 1039, + "SourceStructureID": 5303, + "TargetStructureID": 514, + "Label": "5303-514 via Adherens from 35630 -> 35631", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 35630, + "TargetID": 35631, + "Directional": false + }] + }, { + "ID": 1040, + "SourceStructureID": 5345, + "TargetStructureID": 514, + "Label": "5345-514 via Gap Junction from 8057 -> 2599", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 8057, + "TargetID": 2599, + "Directional": false + }] + }, { + "ID": 1041, + "SourceStructureID": 514, + "TargetStructureID": 5517, + "Label": "514-5517 via Gap Junction from 1014 -> 49362, 24400 -> 24399, 96078 -> 96077", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 1014, + "TargetID": 49362, + "Directional": false + }, { + "SourceID": 24400, + "TargetID": 24399, + "Directional": false + }, { + "SourceID": 96078, + "TargetID": 96077, + "Directional": false + }] + }, { + "ID": 1042, + "SourceStructureID": 5609, + "TargetStructureID": 514, + "Label": "5609-514 via Adherens from 115745 -> 115744", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115745, + "TargetID": 115744, + "Directional": false + }] + }, { + "ID": 1043, + "SourceStructureID": 514, + "TargetStructureID": 6117, + "Label": "514-6117 via Gap Junction from 83251 -> 49180", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 83251, + "TargetID": 49180, + "Directional": false + }] + }, { + "ID": 1044, + "SourceStructureID": 514, + "TargetStructureID": 6156, + "Label": "514-6156 via Adherens from 133282 -> 133283, 133332 -> 133331, 133457 -> 133458, 133486 -> 133487", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133282, + "TargetID": 133283, + "Directional": false + }, { + "SourceID": 133332, + "TargetID": 133331, + "Directional": false + }, { + "SourceID": 133457, + "TargetID": 133458, + "Directional": false + }, { + "SourceID": 133486, + "TargetID": 133487, + "Directional": false + }] + }, { + "ID": 1045, + "SourceStructureID": 6156, + "TargetStructureID": 514, + "Label": "6156-514 via Gap Junction from 16403 -> 15305, 22575 -> 8874, 22598 -> 2561, 23157 -> 23156, 23159 -> 2541, 23172 -> 23171, 23249 -> 23248, 23266 -> 23267, 117530 -> 117531, 117563 -> 117564, 117610 -> 117611, 133163 -> 117347, 133243 -> 133244, 133346 -> 133345, 133382 -> 133383", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16403, + "TargetID": 15305, + "Directional": false + }, { + "SourceID": 22575, + "TargetID": 8874, + "Directional": false + }, { + "SourceID": 22598, + "TargetID": 2561, + "Directional": false + }, { + "SourceID": 23157, + "TargetID": 23156, + "Directional": false + }, { + "SourceID": 23159, + "TargetID": 2541, + "Directional": false + }, { + "SourceID": 23172, + "TargetID": 23171, + "Directional": false + }, { + "SourceID": 23249, + "TargetID": 23248, + "Directional": false + }, { + "SourceID": 23266, + "TargetID": 23267, + "Directional": false + }, { + "SourceID": 117530, + "TargetID": 117531, + "Directional": false + }, { + "SourceID": 117563, + "TargetID": 117564, + "Directional": false + }, { + "SourceID": 117610, + "TargetID": 117611, + "Directional": false + }, { + "SourceID": 133163, + "TargetID": 117347, + "Directional": false + }, { + "SourceID": 133243, + "TargetID": 133244, + "Directional": false + }, { + "SourceID": 133346, + "TargetID": 133345, + "Directional": false + }, { + "SourceID": 133382, + "TargetID": 133383, + "Directional": false + }] + }, { + "ID": 1046, + "SourceStructureID": 6169, + "TargetStructureID": 514, + "Label": "6169-514 via Gap Junction from 9456 -> 1002, 10838 -> 1583, 11625 -> 1117, 16331 -> 549, 18161 -> 3090, 31071 -> 31069", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 9456, + "TargetID": 1002, + "Directional": false + }, { + "SourceID": 10838, + "TargetID": 1583, + "Directional": false + }, { + "SourceID": 11625, + "TargetID": 1117, + "Directional": false + }, { + "SourceID": 16331, + "TargetID": 549, + "Directional": false + }, { + "SourceID": 18161, + "TargetID": 3090, + "Directional": false + }, { + "SourceID": 31071, + "TargetID": 31069, + "Directional": false + }] + }, { + "ID": 1047, + "SourceStructureID": 514, + "TargetStructureID": 6997, + "Label": "514-6997 via Gap Junction from 133247 -> 133250, 135076 -> 135077", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 133247, + "TargetID": 133250, + "Directional": false + }, { + "SourceID": 135076, + "TargetID": 135077, + "Directional": false + }] + }, { + "ID": 1048, + "SourceStructureID": 8037, + "TargetStructureID": 514, + "Label": "8037-514 via Gap Junction from 10871 -> 2529, 29757 -> 29756", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10871, + "TargetID": 2529, + "Directional": false + }, { + "SourceID": 29757, + "TargetID": 29756, + "Directional": false + }] + }, { + "ID": 1049, + "SourceStructureID": 8749, + "TargetStructureID": 514, + "Label": "8749-514 via Adherens from 43457 -> 43456", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 43457, + "TargetID": 43456, + "Directional": false + }] + }, { + "ID": 1050, + "SourceStructureID": 8990, + "TargetStructureID": 514, + "Label": "8990-514 via Adherens from 32011 -> 32010", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 32011, + "TargetID": 32010, + "Directional": false + }] + }, { + "ID": 1051, + "SourceStructureID": 9023, + "TargetStructureID": 514, + "Label": "9023-514 via Adherens from 36675 -> 36674", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 36675, + "TargetID": 36674, + "Directional": false + }] + }, { + "ID": 1052, + "SourceStructureID": 514, + "TargetStructureID": 9226, + "Label": "514-9226 via Adherens from 9661 -> 9662", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 9661, + "TargetID": 9662, + "Directional": false + }] + }, { + "ID": 1053, + "SourceStructureID": 514, + "TargetStructureID": 9693, + "Label": "514-9693 via Gap Junction from 134722 -> 119837, 134994 -> 134995", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 134722, + "TargetID": 119837, + "Directional": false + }, { + "SourceID": 134994, + "TargetID": 134995, + "Directional": false + }] + }, { + "ID": 1054, + "SourceStructureID": 514, + "TargetStructureID": 25392, + "Label": "514-25392 via Adherens from 25398 -> 25397", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 25398, + "TargetID": 25397, + "Directional": false + }] + }, { + "ID": 1055, + "SourceStructureID": 514, + "TargetStructureID": 25529, + "Label": "514-25529 via Adherens from 25537 -> 25536", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 25537, + "TargetID": 25536, + "Directional": false + }] + }, { + "ID": 1056, + "SourceStructureID": 32371, + "TargetStructureID": 514, + "Label": "32371-514 via Adherens from 32376 -> 1585", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 32376, + "TargetID": 1585, + "Directional": false + }] + }, { + "ID": 1057, + "SourceStructureID": 514, + "TargetStructureID": 32719, + "Label": "514-32719 via Adherens from 32723 -> 32722", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 32723, + "TargetID": 32722, + "Directional": false + }] + }, { + "ID": 1058, + "SourceStructureID": 514, + "TargetStructureID": 40863, + "Label": "514-40863 via Gap Junction from 40873 -> 40872", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 40873, + "TargetID": 40872, + "Directional": false + }] + }, { + "ID": 1059, + "SourceStructureID": 514, + "TargetStructureID": 40988, + "Label": "514-40988 via Adherens from 91261 -> 91262", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91261, + "TargetID": 91262, + "Directional": false + }] + }, { + "ID": 1060, + "SourceStructureID": 514, + "TargetStructureID": 61231, + "Label": "514-61231 via Adherens from 61239 -> 61238", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 61239, + "TargetID": 61238, + "Directional": false + }] + }, { + "ID": 1061, + "SourceStructureID": 68031, + "TargetStructureID": 514, + "Label": "68031-514 via Adherens from 135100 -> 135099", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135100, + "TargetID": 135099, + "Directional": false + }] + }, { + "ID": 1062, + "SourceStructureID": 514, + "TargetStructureID": 77019, + "Label": "514-77019 via Adherens from 77022 -> 77021", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77022, + "TargetID": 77021, + "Directional": false + }] + }, { + "ID": 1063, + "SourceStructureID": 514, + "TargetStructureID": 123146, + "Label": "514-123146 via Adherens from 123149 -> 123148", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123149, + "TargetID": 123148, + "Directional": false + }] + }, { + "ID": 1064, + "SourceStructureID": 5303, + "TargetStructureID": 517, + "Label": "5303-517 via Adherens from 60499 -> 60498", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60499, + "TargetID": 60498, + "Directional": false + }] + }, { + "ID": 1065, + "SourceStructureID": 25440, + "TargetStructureID": 517, + "Label": "25440-517 via Touch from 25455 -> 25457", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 25455, + "TargetID": 25457, + "Directional": false + }] + }, { + "ID": 1066, + "SourceStructureID": 40951, + "TargetStructureID": 517, + "Label": "40951-517 via Adherens from 60533 -> 60532", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60533, + "TargetID": 60532, + "Directional": false + }] + }, { + "ID": 1067, + "SourceStructureID": 518, + "TargetStructureID": 13855, + "Label": "518-13855 via Touch from 36323 -> 36322", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 36323, + "TargetID": 36322, + "Directional": false + }] + }, { + "ID": 1068, + "SourceStructureID": 518, + "TargetStructureID": 36650, + "Label": "518-36650 via Adherens from 64555 -> 64556", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64555, + "TargetID": 64556, + "Directional": false + }] + }, { + "ID": 1069, + "SourceStructureID": 25359, + "TargetStructureID": 519, + "Label": "25359-519 via Adherens from 64489 -> 64490", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64489, + "TargetID": 64490, + "Directional": false + }] + }, { + "ID": 1070, + "SourceStructureID": 25865, + "TargetStructureID": 519, + "Label": "25865-519 via Adherens from 64510 -> 64509", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64510, + "TargetID": 64509, + "Directional": false + }] + }, { + "ID": 1071, + "SourceStructureID": 525, + "TargetStructureID": 6589, + "Label": "525-6589 via Unknown from 132624 -> 132623, 132705 -> 132706", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132624, + "TargetID": 132623, + "Directional": false + }, { + "SourceID": 132705, + "TargetID": 132706, + "Directional": false + }] + }, { + "ID": 1072, + "SourceStructureID": 2610, + "TargetStructureID": 573, + "Label": "2610-573 via Gap Junction from 2995 -> 19095, 17920 -> 17919, 17933 -> 17932, 17936 -> 17935", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 2995, + "TargetID": 19095, + "Directional": false + }, { + "SourceID": 17920, + "TargetID": 17919, + "Directional": false + }, { + "SourceID": 17933, + "TargetID": 17932, + "Directional": false + }, { + "SourceID": 17936, + "TargetID": 17935, + "Directional": false + }] + }, { + "ID": 1073, + "SourceStructureID": 573, + "TargetStructureID": 5345, + "Label": "573-5345 via Gap Junction from 8476 -> 8475, 11431 -> 11432", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 8476, + "TargetID": 8475, + "Directional": false + }, { + "SourceID": 11431, + "TargetID": 11432, + "Directional": false + }] + }, { + "ID": 1074, + "SourceStructureID": 573, + "TargetStructureID": 5515, + "Label": "573-5515 via Gap Junction from 60113 -> 60112", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60113, + "TargetID": 60112, + "Directional": false + }] + }, { + "ID": 1075, + "SourceStructureID": 573, + "TargetStructureID": 6589, + "Label": "573-6589 via Gap Junction from 132822 -> 132821", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132822, + "TargetID": 132821, + "Directional": false + }] + }, { + "ID": 1076, + "SourceStructureID": 9693, + "TargetStructureID": 573, + "Label": "9693-573 via Gap Junction from 134765 -> 134766", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 134765, + "TargetID": 134766, + "Directional": false + }] + }, { + "ID": 1077, + "SourceStructureID": 28886, + "TargetStructureID": 573, + "Label": "28886-573 via Gap Junction from 51450 -> 47761", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51450, + "TargetID": 47761, + "Directional": false + }] + }, { + "ID": 1078, + "SourceStructureID": 96788, + "TargetStructureID": 573, + "Label": "96788-573 via Unknown from 96815 -> 96814", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96815, + "TargetID": 96814, + "Directional": false + }] + }, { + "ID": 1079, + "SourceStructureID": 593, + "TargetStructureID": 593, + "Label": "593-593 via Adherens from 135108 -> 135109", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135108, + "TargetID": 135109, + "Directional": false + }] + }, { + "ID": 1080, + "SourceStructureID": 593, + "TargetStructureID": 593, + "Label": "593-593 via Gap Junction from 63044 -> 63043", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63044, + "TargetID": 63043, + "Directional": false + }] + }, { + "ID": 1081, + "SourceStructureID": 3679, + "TargetStructureID": 593, + "Label": "3679-593 via Adherens from 135103 -> 135104", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135103, + "TargetID": 135104, + "Directional": false + }] + }, { + "ID": 1082, + "SourceStructureID": 593, + "TargetStructureID": 3679, + "Label": "593-3679 via Gap Junction from 7715 -> 6360, 7723 -> 5187, 52475 -> 52474, 52476 -> 52473, 59594 -> 59593, 61831 -> 61832, 67238 -> 3770, 83349 -> 83348", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 7715, + "TargetID": 6360, + "Directional": false + }, { + "SourceID": 7723, + "TargetID": 5187, + "Directional": false + }, { + "SourceID": 52475, + "TargetID": 52474, + "Directional": false + }, { + "SourceID": 52476, + "TargetID": 52473, + "Directional": false + }, { + "SourceID": 59594, + "TargetID": 59593, + "Directional": false + }, { + "SourceID": 61831, + "TargetID": 61832, + "Directional": false + }, { + "SourceID": 67238, + "TargetID": 3770, + "Directional": false + }, { + "SourceID": 83349, + "TargetID": 83348, + "Directional": false + }] + }, { + "ID": 1083, + "SourceStructureID": 593, + "TargetStructureID": 5279, + "Label": "593-5279 via Gap Junction from 92636 -> 92635", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92636, + "TargetID": 92635, + "Directional": false + }] + }, { + "ID": 1084, + "SourceStructureID": 593, + "TargetStructureID": 5562, + "Label": "593-5562 via Adherens from 133746 -> 133747", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133746, + "TargetID": 133747, + "Directional": false + }] + }, { + "ID": 1085, + "SourceStructureID": 593, + "TargetStructureID": 5562, + "Label": "593-5562 via Gap Junction from 49434 -> 49433, 79658 -> 79659", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49434, + "TargetID": 49433, + "Directional": false + }, { + "SourceID": 79658, + "TargetID": 79659, + "Directional": false + }] + }, { + "ID": 1086, + "SourceStructureID": 593, + "TargetStructureID": 5575, + "Label": "593-5575 via Unknown from 62879 -> 62880", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 62879, + "TargetID": 62880, + "Directional": false + }] + }, { + "ID": 1087, + "SourceStructureID": 593, + "TargetStructureID": 5649, + "Label": "593-5649 via Gap Junction from 53818 -> 53826", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53818, + "TargetID": 53826, + "Directional": false + }] + }, { + "ID": 1088, + "SourceStructureID": 6115, + "TargetStructureID": 593, + "Label": "6115-593 via Adherens from 131170 -> 131171", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131170, + "TargetID": 131171, + "Directional": false + }] + }, { + "ID": 1089, + "SourceStructureID": 6115, + "TargetStructureID": 593, + "Label": "6115-593 via Gap Junction from 55890 -> 59799, 72656 -> 72657", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55890, + "TargetID": 59799, + "Directional": false + }, { + "SourceID": 72656, + "TargetID": 72657, + "Directional": false + }] + }, { + "ID": 1090, + "SourceStructureID": 6997, + "TargetStructureID": 593, + "Label": "6997-593 via Adherens from 135105 -> 135106", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135105, + "TargetID": 135106, + "Directional": false + }] + }, { + "ID": 1091, + "SourceStructureID": 6997, + "TargetStructureID": 593, + "Label": "6997-593 via Gap Junction from 52442 -> 52441, 59747 -> 59749", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52442, + "TargetID": 52441, + "Directional": false + }, { + "SourceID": 59747, + "TargetID": 59749, + "Directional": false + }] + }, { + "ID": 1092, + "SourceStructureID": 8588, + "TargetStructureID": 593, + "Label": "8588-593 via Unknown from 83345 -> 83344", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83345, + "TargetID": 83344, + "Directional": false + }] + }, { + "ID": 1093, + "SourceStructureID": 16026, + "TargetStructureID": 593, + "Label": "16026-593 via Adherens from 68605 -> 68603", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68605, + "TargetID": 68603, + "Directional": false + }] + }, { + "ID": 1094, + "SourceStructureID": 18282, + "TargetStructureID": 593, + "Label": "18282-593 via Unknown from 115788 -> 115787", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115788, + "TargetID": 115787, + "Directional": false + }] + }, { + "ID": 1095, + "SourceStructureID": 593, + "TargetStructureID": 30477, + "Label": "593-30477 via Adherens from 50448 -> 61959", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 50448, + "TargetID": 61959, + "Directional": false + }] + }, { + "ID": 1096, + "SourceStructureID": 36516, + "TargetStructureID": 593, + "Label": "36516-593 via Adherens from 67369 -> 67368", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67369, + "TargetID": 67368, + "Directional": false + }] + }, { + "ID": 1097, + "SourceStructureID": 593, + "TargetStructureID": 49489, + "Label": "593-49489 via Adherens from 61948 -> 61947", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 61948, + "TargetID": 61947, + "Directional": false + }] + }, { + "ID": 1098, + "SourceStructureID": 59096, + "TargetStructureID": 593, + "Label": "59096-593 via Touch from 59555 -> 59554", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 59555, + "TargetID": 59554, + "Directional": false + }] + }, { + "ID": 1099, + "SourceStructureID": 59097, + "TargetStructureID": 593, + "Label": "59097-593 via Touch from 59119 -> 59118", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 59119, + "TargetID": 59118, + "Directional": false + }] + }, { + "ID": 1100, + "SourceStructureID": 59121, + "TargetStructureID": 593, + "Label": "59121-593 via Adherens from 59123 -> 59120", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59123, + "TargetID": 59120, + "Directional": false + }] + }, { + "ID": 1101, + "SourceStructureID": 59139, + "TargetStructureID": 593, + "Label": "59139-593 via Adherens from 59143 -> 59142", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59143, + "TargetID": 59142, + "Directional": false + }] + }, { + "ID": 1102, + "SourceStructureID": 593, + "TargetStructureID": 59333, + "Label": "593-59333 via Adherens from 59335 -> 59334", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59335, + "TargetID": 59334, + "Directional": false + }] + }, { + "ID": 1103, + "SourceStructureID": 593, + "TargetStructureID": 59333, + "Label": "593-59333 via Touch from 59545 -> 59546", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 59545, + "TargetID": 59546, + "Directional": false + }] + }, { + "ID": 1104, + "SourceStructureID": 593, + "TargetStructureID": 59422, + "Label": "593-59422 via Unknown from 85578 -> 85580", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85578, + "TargetID": 85580, + "Directional": false + }] + }, { + "ID": 1105, + "SourceStructureID": 61777, + "TargetStructureID": 593, + "Label": "61777-593 via Unknown from 79442 -> 79443", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79442, + "TargetID": 79443, + "Directional": false + }] + }, { + "ID": 1106, + "SourceStructureID": 593, + "TargetStructureID": 61816, + "Label": "593-61816 via Adherens from 68390 -> 68389, 86763 -> 86764", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68390, + "TargetID": 68389, + "Directional": false + }, { + "SourceID": 86763, + "TargetID": 86764, + "Directional": false + }] + }, { + "ID": 1107, + "SourceStructureID": 593, + "TargetStructureID": 61849, + "Label": "593-61849 via Unknown from 83356 -> 83355", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83356, + "TargetID": 83355, + "Directional": false + }] + }, { + "ID": 1108, + "SourceStructureID": 593, + "TargetStructureID": 61860, + "Label": "593-61860 via Unknown from 61859 -> 61861", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 61859, + "TargetID": 61861, + "Directional": false + }] + }, { + "ID": 1109, + "SourceStructureID": 61882, + "TargetStructureID": 593, + "Label": "61882-593 via Unknown from 61884 -> 52433", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 61884, + "TargetID": 52433, + "Directional": false + }] + }, { + "ID": 1110, + "SourceStructureID": 61926, + "TargetStructureID": 593, + "Label": "61926-593 via Unknown from 115740 -> 115741", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115740, + "TargetID": 115741, + "Directional": false + }] + }, { + "ID": 1111, + "SourceStructureID": 61933, + "TargetStructureID": 593, + "Label": "61933-593 via Adherens from 68079 -> 68080, 115700 -> 115699", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68079, + "TargetID": 68080, + "Directional": false + }, { + "SourceID": 115700, + "TargetID": 115699, + "Directional": false + }] + }, { + "ID": 1112, + "SourceStructureID": 593, + "TargetStructureID": 61940, + "Label": "593-61940 via Adherens from 61945 -> 61946", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 61945, + "TargetID": 61946, + "Directional": false + }] + }, { + "ID": 1113, + "SourceStructureID": 593, + "TargetStructureID": 61965, + "Label": "593-61965 via Adherens from 68417 -> 68418", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68417, + "TargetID": 68418, + "Directional": false + }] + }, { + "ID": 1114, + "SourceStructureID": 61975, + "TargetStructureID": 593, + "Label": "61975-593 via Adherens from 61977 -> 61974", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 61977, + "TargetID": 61974, + "Directional": false + }] + }, { + "ID": 1115, + "SourceStructureID": 593, + "TargetStructureID": 61978, + "Label": "593-61978 via Adherens from 75344 -> 75343", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75344, + "TargetID": 75343, + "Directional": false + }] + }, { + "ID": 1116, + "SourceStructureID": 61982, + "TargetStructureID": 593, + "Label": "61982-593 via Unknown from 61983 -> 61981", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 61983, + "TargetID": 61981, + "Directional": false + }] + }, { + "ID": 1117, + "SourceStructureID": 593, + "TargetStructureID": 62896, + "Label": "593-62896 via Unknown from 115759 -> 115760", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115759, + "TargetID": 115760, + "Directional": false + }] + }, { + "ID": 1118, + "SourceStructureID": 65134, + "TargetStructureID": 593, + "Label": "65134-593 via Unknown from 65149 -> 65146", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 65149, + "TargetID": 65146, + "Directional": false + }] + }, { + "ID": 1119, + "SourceStructureID": 65320, + "TargetStructureID": 593, + "Label": "65320-593 via Adherens from 65345 -> 65344", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65345, + "TargetID": 65344, + "Directional": false + }] + }, { + "ID": 1120, + "SourceStructureID": 593, + "TargetStructureID": 65324, + "Label": "593-65324 via Adherens from 65327 -> 65326", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65327, + "TargetID": 65326, + "Directional": false + }] + }, { + "ID": 1121, + "SourceStructureID": 65398, + "TargetStructureID": 593, + "Label": "65398-593 via Unknown from 83579 -> 83578", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83579, + "TargetID": 83578, + "Directional": false + }] + }, { + "ID": 1122, + "SourceStructureID": 65461, + "TargetStructureID": 593, + "Label": "65461-593 via Adherens from 69858 -> 65400", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 69858, + "TargetID": 65400, + "Directional": false + }] + }, { + "ID": 1123, + "SourceStructureID": 593, + "TargetStructureID": 65464, + "Label": "593-65464 via Adherens from 65466 -> 65465, 65574 -> 65573, 82122 -> 82121, 83586 -> 65568", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65466, + "TargetID": 65465, + "Directional": false + }, { + "SourceID": 65574, + "TargetID": 65573, + "Directional": false + }, { + "SourceID": 82122, + "TargetID": 82121, + "Directional": false + }, { + "SourceID": 83586, + "TargetID": 65568, + "Directional": false + }] + }, { + "ID": 1124, + "SourceStructureID": 65536, + "TargetStructureID": 593, + "Label": "65536-593 via Unknown from 67083 -> 67084", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 67083, + "TargetID": 67084, + "Directional": false + }] + }, { + "ID": 1125, + "SourceStructureID": 65576, + "TargetStructureID": 593, + "Label": "65576-593 via Unknown from 84269 -> 84270", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84269, + "TargetID": 84270, + "Directional": false + }] + }, { + "ID": 1126, + "SourceStructureID": 593, + "TargetStructureID": 66089, + "Label": "593-66089 via Unknown from 115782 -> 115783, 115785 -> 115784", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115782, + "TargetID": 115783, + "Directional": false + }, { + "SourceID": 115785, + "TargetID": 115784, + "Directional": false + }] + }, { + "ID": 1127, + "SourceStructureID": 593, + "TargetStructureID": 66096, + "Label": "593-66096 via Adherens from 67027 -> 67026, 67029 -> 67028, 67030 -> 67031", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67027, + "TargetID": 67026, + "Directional": false + }, { + "SourceID": 67029, + "TargetID": 67028, + "Directional": false + }, { + "SourceID": 67030, + "TargetID": 67031, + "Directional": false + }] + }, { + "ID": 1128, + "SourceStructureID": 66096, + "TargetStructureID": 593, + "Label": "66096-593 via Unknown from 115763 -> 115764, 135101 -> 135102", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115763, + "TargetID": 115764, + "Directional": false + }, { + "SourceID": 135101, + "TargetID": 135102, + "Directional": false + }] + }, { + "ID": 1129, + "SourceStructureID": 593, + "TargetStructureID": 66299, + "Label": "593-66299 via Adherens from 66326 -> 66327", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66326, + "TargetID": 66327, + "Directional": false + }] + }, { + "ID": 1130, + "SourceStructureID": 66303, + "TargetStructureID": 593, + "Label": "66303-593 via Unknown from 84307 -> 59791", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84307, + "TargetID": 59791, + "Directional": false + }] + }, { + "ID": 1131, + "SourceStructureID": 593, + "TargetStructureID": 66316, + "Label": "593-66316 via Adherens from 66319 -> 66318", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66319, + "TargetID": 66318, + "Directional": false + }] + }, { + "ID": 1132, + "SourceStructureID": 66401, + "TargetStructureID": 593, + "Label": "66401-593 via Adherens from 68370 -> 68372", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68370, + "TargetID": 68372, + "Directional": false + }] + }, { + "ID": 1133, + "SourceStructureID": 66407, + "TargetStructureID": 593, + "Label": "66407-593 via Adherens from 68378 -> 68376", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68378, + "TargetID": 68376, + "Directional": false + }] + }, { + "ID": 1134, + "SourceStructureID": 66510, + "TargetStructureID": 593, + "Label": "66510-593 via Unknown from 84321 -> 84322", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84321, + "TargetID": 84322, + "Directional": false + }] + }, { + "ID": 1135, + "SourceStructureID": 593, + "TargetStructureID": 66513, + "Label": "593-66513 via Unknown from 84329 -> 84328", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84329, + "TargetID": 84328, + "Directional": false + }] + }, { + "ID": 1136, + "SourceStructureID": 593, + "TargetStructureID": 66743, + "Label": "593-66743 via Adherens from 84354 -> 84353", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84354, + "TargetID": 84353, + "Directional": false + }] + }, { + "ID": 1137, + "SourceStructureID": 593, + "TargetStructureID": 66754, + "Label": "593-66754 via Unknown from 115753 -> 115752, 115757 -> 115756", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115753, + "TargetID": 115752, + "Directional": false + }, { + "SourceID": 115757, + "TargetID": 115756, + "Directional": false + }] + }, { + "ID": 1138, + "SourceStructureID": 593, + "TargetStructureID": 66756, + "Label": "593-66756 via Unknown from 115755 -> 115754", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115755, + "TargetID": 115754, + "Directional": false + }] + }, { + "ID": 1139, + "SourceStructureID": 593, + "TargetStructureID": 66764, + "Label": "593-66764 via Adherens from 66763 -> 66765", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66763, + "TargetID": 66765, + "Directional": false + }] + }, { + "ID": 1140, + "SourceStructureID": 66768, + "TargetStructureID": 593, + "Label": "66768-593 via Adherens from 67540 -> 67541, 67570 -> 67569, 68425 -> 68426", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67540, + "TargetID": 67541, + "Directional": false + }, { + "SourceID": 67570, + "TargetID": 67569, + "Directional": false + }, { + "SourceID": 68425, + "TargetID": 68426, + "Directional": false + }] + }, { + "ID": 1141, + "SourceStructureID": 66779, + "TargetStructureID": 593, + "Label": "66779-593 via Unknown from 115770 -> 115769", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115770, + "TargetID": 115769, + "Directional": false + }] + }, { + "ID": 1142, + "SourceStructureID": 593, + "TargetStructureID": 66828, + "Label": "593-66828 via Unknown from 83338 -> 83339", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83338, + "TargetID": 83339, + "Directional": false + }] + }, { + "ID": 1143, + "SourceStructureID": 593, + "TargetStructureID": 66848, + "Label": "593-66848 via Adherens from 66851 -> 66850", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66851, + "TargetID": 66850, + "Directional": false + }] + }, { + "ID": 1144, + "SourceStructureID": 66852, + "TargetStructureID": 593, + "Label": "66852-593 via Adherens from 66856 -> 66855", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66856, + "TargetID": 66855, + "Directional": false + }] + }, { + "ID": 1145, + "SourceStructureID": 593, + "TargetStructureID": 66888, + "Label": "593-66888 via Unknown from 66892 -> 66890, 115777 -> 115776", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 66892, + "TargetID": 66890, + "Directional": false + }, { + "SourceID": 115777, + "TargetID": 115776, + "Directional": false + }] + }, { + "ID": 1146, + "SourceStructureID": 66905, + "TargetStructureID": 593, + "Label": "66905-593 via Adherens from 82123 -> 82124", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82123, + "TargetID": 82124, + "Directional": false + }] + }, { + "ID": 1147, + "SourceStructureID": 66933, + "TargetStructureID": 593, + "Label": "66933-593 via Unknown from 83342 -> 83343", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83342, + "TargetID": 83343, + "Directional": false + }] + }, { + "ID": 1148, + "SourceStructureID": 593, + "TargetStructureID": 66942, + "Label": "593-66942 via BC Conventional Synapse from 66945 -> 66944", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 66945, + "TargetID": 66944, + "Directional": false + }] + }, { + "ID": 1149, + "SourceStructureID": 66958, + "TargetStructureID": 593, + "Label": "66958-593 via Adherens from 70023 -> 66960", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70023, + "TargetID": 66960, + "Directional": false + }] + }, { + "ID": 1150, + "SourceStructureID": 593, + "TargetStructureID": 66976, + "Label": "593-66976 via Unknown from 66982 -> 66981, 115714 -> 115715", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 66982, + "TargetID": 66981, + "Directional": false + }, { + "SourceID": 115714, + "TargetID": 115715, + "Directional": false + }] + }, { + "ID": 1151, + "SourceStructureID": 593, + "TargetStructureID": 67016, + "Label": "593-67016 via Adherens from 67021 -> 67022", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67021, + "TargetID": 67022, + "Directional": false + }] + }, { + "ID": 1152, + "SourceStructureID": 67042, + "TargetStructureID": 593, + "Label": "67042-593 via Adherens from 76196 -> 76197, 76465 -> 68496", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76196, + "TargetID": 76197, + "Directional": false + }, { + "SourceID": 76465, + "TargetID": 68496, + "Directional": false + }] + }, { + "ID": 1153, + "SourceStructureID": 593, + "TargetStructureID": 67042, + "Label": "593-67042 via Unknown from 76468 -> 76467", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76468, + "TargetID": 76467, + "Directional": false + }] + }, { + "ID": 1154, + "SourceStructureID": 593, + "TargetStructureID": 67090, + "Label": "593-67090 via Unknown from 115766 -> 115765", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115766, + "TargetID": 115765, + "Directional": false + }] + }, { + "ID": 1155, + "SourceStructureID": 593, + "TargetStructureID": 67093, + "Label": "593-67093 via Unknown from 83340 -> 83341", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83340, + "TargetID": 83341, + "Directional": false + }] + }, { + "ID": 1156, + "SourceStructureID": 67112, + "TargetStructureID": 593, + "Label": "67112-593 via Unknown from 67115 -> 67116", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 67115, + "TargetID": 67116, + "Directional": false + }] + }, { + "ID": 1157, + "SourceStructureID": 67121, + "TargetStructureID": 593, + "Label": "67121-593 via Adherens from 85520 -> 85519", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85520, + "TargetID": 85519, + "Directional": false + }] + }, { + "ID": 1158, + "SourceStructureID": 593, + "TargetStructureID": 67161, + "Label": "593-67161 via Adherens from 67170 -> 67169, 67451 -> 67450", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67170, + "TargetID": 67169, + "Directional": false + }, { + "SourceID": 67451, + "TargetID": 67450, + "Directional": false + }] + }, { + "ID": 1159, + "SourceStructureID": 67161, + "TargetStructureID": 593, + "Label": "67161-593 via Unknown from 67162 -> 67163", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 67162, + "TargetID": 67163, + "Directional": false + }] + }, { + "ID": 1160, + "SourceStructureID": 593, + "TargetStructureID": 67182, + "Label": "593-67182 via Adherens from 67186 -> 67185", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67186, + "TargetID": 67185, + "Directional": false + }] + }, { + "ID": 1161, + "SourceStructureID": 67190, + "TargetStructureID": 593, + "Label": "67190-593 via Unknown from 67191 -> 67189", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 67191, + "TargetID": 67189, + "Directional": false + }] + }, { + "ID": 1162, + "SourceStructureID": 593, + "TargetStructureID": 67230, + "Label": "593-67230 via Unknown from 90675 -> 90674", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90675, + "TargetID": 90674, + "Directional": false + }] + }, { + "ID": 1163, + "SourceStructureID": 593, + "TargetStructureID": 67274, + "Label": "593-67274 via Adherens from 67276 -> 67275", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67276, + "TargetID": 67275, + "Directional": false + }] + }, { + "ID": 1164, + "SourceStructureID": 67331, + "TargetStructureID": 593, + "Label": "67331-593 via Postsynapse from 67332 -> 67333", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 67332, + "TargetID": 67333, + "Directional": false + }] + }, { + "ID": 1165, + "SourceStructureID": 593, + "TargetStructureID": 67337, + "Label": "593-67337 via Adherens from 68376 -> 68375", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68376, + "TargetID": 68375, + "Directional": false + }] + }, { + "ID": 1166, + "SourceStructureID": 67337, + "TargetStructureID": 593, + "Label": "67337-593 via Unknown from 115781 -> 115780", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115781, + "TargetID": 115780, + "Directional": false + }] + }, { + "ID": 1167, + "SourceStructureID": 67354, + "TargetStructureID": 593, + "Label": "67354-593 via Unknown from 67355 -> 63026, 85189 -> 85190", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 67355, + "TargetID": 63026, + "Directional": false + }, { + "SourceID": 85189, + "TargetID": 85190, + "Directional": false + }] + }, { + "ID": 1168, + "SourceStructureID": 593, + "TargetStructureID": 67364, + "Label": "593-67364 via Unknown from 115768 -> 115767", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115768, + "TargetID": 115767, + "Directional": false + }] + }, { + "ID": 1169, + "SourceStructureID": 593, + "TargetStructureID": 67404, + "Label": "593-67404 via Unknown from 83346 -> 83347", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83346, + "TargetID": 83347, + "Directional": false + }] + }, { + "ID": 1170, + "SourceStructureID": 593, + "TargetStructureID": 67406, + "Label": "593-67406 via Adherens from 135097 -> 135098", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135097, + "TargetID": 135098, + "Directional": false + }] + }, { + "ID": 1171, + "SourceStructureID": 67423, + "TargetStructureID": 593, + "Label": "67423-593 via Adherens from 115735 -> 115734", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115735, + "TargetID": 115734, + "Directional": false + }] + }, { + "ID": 1172, + "SourceStructureID": 67425, + "TargetStructureID": 593, + "Label": "67425-593 via Adherens from 67426 -> 67427", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67426, + "TargetID": 67427, + "Directional": false + }] + }, { + "ID": 1173, + "SourceStructureID": 67444, + "TargetStructureID": 593, + "Label": "67444-593 via Unknown from 86530 -> 86529", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86530, + "TargetID": 86529, + "Directional": false + }] + }, { + "ID": 1174, + "SourceStructureID": 67502, + "TargetStructureID": 593, + "Label": "67502-593 via Unknown from 86740 -> 86739", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86740, + "TargetID": 86739, + "Directional": false + }] + }, { + "ID": 1175, + "SourceStructureID": 593, + "TargetStructureID": 67504, + "Label": "593-67504 via Unknown from 63036 -> 67505", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 63036, + "TargetID": 67505, + "Directional": false + }] + }, { + "ID": 1176, + "SourceStructureID": 67572, + "TargetStructureID": 593, + "Label": "67572-593 via Unknown from 85225 -> 85224", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85225, + "TargetID": 85224, + "Directional": false + }] + }, { + "ID": 1177, + "SourceStructureID": 67661, + "TargetStructureID": 593, + "Label": "67661-593 via Unknown from 67662 -> 63037", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 67662, + "TargetID": 63037, + "Directional": false + }] + }, { + "ID": 1178, + "SourceStructureID": 593, + "TargetStructureID": 67756, + "Label": "593-67756 via Adherens from 67966 -> 67965, 68510 -> 68509", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67966, + "TargetID": 67965, + "Directional": false + }, { + "SourceID": 68510, + "TargetID": 68509, + "Directional": false + }] + }, { + "ID": 1179, + "SourceStructureID": 593, + "TargetStructureID": 67796, + "Label": "593-67796 via Unknown from 115771 -> 115772", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115771, + "TargetID": 115772, + "Directional": false + }] + }, { + "ID": 1180, + "SourceStructureID": 67815, + "TargetStructureID": 593, + "Label": "67815-593 via Adherens from 67825 -> 67826", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67825, + "TargetID": 67826, + "Directional": false + }] + }, { + "ID": 1181, + "SourceStructureID": 593, + "TargetStructureID": 67815, + "Label": "593-67815 via Unknown from 87251 -> 87252", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 87251, + "TargetID": 87252, + "Directional": false + }] + }, { + "ID": 1182, + "SourceStructureID": 67823, + "TargetStructureID": 593, + "Label": "67823-593 via Adherens from 82395 -> 82394", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82395, + "TargetID": 82394, + "Directional": false + }] + }, { + "ID": 1183, + "SourceStructureID": 67871, + "TargetStructureID": 593, + "Label": "67871-593 via Postsynapse from 68019 -> 68018", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 68019, + "TargetID": 68018, + "Directional": false + }] + }, { + "ID": 1184, + "SourceStructureID": 593, + "TargetStructureID": 67886, + "Label": "593-67886 via Adherens from 67888 -> 67887", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67888, + "TargetID": 67887, + "Directional": false + }] + }, { + "ID": 1185, + "SourceStructureID": 67894, + "TargetStructureID": 593, + "Label": "67894-593 via Adherens from 67898 -> 67899", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67898, + "TargetID": 67899, + "Directional": false + }] + }, { + "ID": 1186, + "SourceStructureID": 67932, + "TargetStructureID": 593, + "Label": "67932-593 via Adherens from 87281 -> 87282", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87281, + "TargetID": 87282, + "Directional": false + }] + }, { + "ID": 1187, + "SourceStructureID": 67952, + "TargetStructureID": 593, + "Label": "67952-593 via Adherens from 67953 -> 67951", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67953, + "TargetID": 67951, + "Directional": false + }] + }, { + "ID": 1188, + "SourceStructureID": 593, + "TargetStructureID": 67973, + "Label": "593-67973 via Unknown from 67974 -> 67975", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 67974, + "TargetID": 67975, + "Directional": false + }] + }, { + "ID": 1189, + "SourceStructureID": 593, + "TargetStructureID": 68009, + "Label": "593-68009 via Adherens from 68011 -> 68010", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68011, + "TargetID": 68010, + "Directional": false + }] + }, { + "ID": 1190, + "SourceStructureID": 68059, + "TargetStructureID": 593, + "Label": "68059-593 via Unknown from 68060 -> 68061", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 68060, + "TargetID": 68061, + "Directional": false + }] + }, { + "ID": 1191, + "SourceStructureID": 593, + "TargetStructureID": 68072, + "Label": "593-68072 via Unknown from 82256 -> 82255", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82256, + "TargetID": 82255, + "Directional": false + }] + }, { + "ID": 1192, + "SourceStructureID": 593, + "TargetStructureID": 68150, + "Label": "593-68150 via BC Conventional Synapse from 68152 -> 68151", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 68152, + "TargetID": 68151, + "Directional": false + }] + }, { + "ID": 1193, + "SourceStructureID": 593, + "TargetStructureID": 68198, + "Label": "593-68198 via Adherens from 68197 -> 68199", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68197, + "TargetID": 68199, + "Directional": false + }] + }, { + "ID": 1194, + "SourceStructureID": 68206, + "TargetStructureID": 593, + "Label": "68206-593 via Unknown from 115775 -> 115774", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115775, + "TargetID": 115774, + "Directional": false + }] + }, { + "ID": 1195, + "SourceStructureID": 593, + "TargetStructureID": 68255, + "Label": "593-68255 via Unknown from 52454 -> 68256", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 52454, + "TargetID": 68256, + "Directional": false + }] + }, { + "ID": 1196, + "SourceStructureID": 68282, + "TargetStructureID": 593, + "Label": "68282-593 via Adherens from 68285 -> 52447", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68285, + "TargetID": 52447, + "Directional": false + }] + }, { + "ID": 1197, + "SourceStructureID": 68353, + "TargetStructureID": 593, + "Label": "68353-593 via Unknown from 68354 -> 68352", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 68354, + "TargetID": 68352, + "Directional": false + }] + }, { + "ID": 1198, + "SourceStructureID": 68461, + "TargetStructureID": 593, + "Label": "68461-593 via Unknown from 68462 -> 63029", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 68462, + "TargetID": 63029, + "Directional": false + }] + }, { + "ID": 1199, + "SourceStructureID": 68497, + "TargetStructureID": 593, + "Label": "68497-593 via Adherens from 79303 -> 79304", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79303, + "TargetID": 79304, + "Directional": false + }] + }, { + "ID": 1200, + "SourceStructureID": 593, + "TargetStructureID": 68506, + "Label": "593-68506 via Unknown from 68508 -> 68507", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 68508, + "TargetID": 68507, + "Directional": false + }] + }, { + "ID": 1201, + "SourceStructureID": 593, + "TargetStructureID": 68531, + "Label": "593-68531 via BC Conventional Synapse from 63045 -> 68532", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 63045, + "TargetID": 68532, + "Directional": false + }] + }, { + "ID": 1202, + "SourceStructureID": 593, + "TargetStructureID": 68548, + "Label": "593-68548 via Adherens from 67699 -> 73569", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67699, + "TargetID": 73569, + "Directional": false + }] + }, { + "ID": 1203, + "SourceStructureID": 593, + "TargetStructureID": 68550, + "Label": "593-68550 via Unknown from 63046 -> 68551", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 63046, + "TargetID": 68551, + "Directional": false + }] + }, { + "ID": 1204, + "SourceStructureID": 593, + "TargetStructureID": 68667, + "Label": "593-68667 via Unknown from 86534 -> 86533", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86534, + "TargetID": 86533, + "Directional": false + }] + }, { + "ID": 1205, + "SourceStructureID": 69200, + "TargetStructureID": 593, + "Label": "69200-593 via Unknown from 86557 -> 86556", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86557, + "TargetID": 86556, + "Directional": false + }] + }, { + "ID": 1206, + "SourceStructureID": 69382, + "TargetStructureID": 593, + "Label": "69382-593 via Unknown from 85226 -> 85228", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85226, + "TargetID": 85228, + "Directional": false + }] + }, { + "ID": 1207, + "SourceStructureID": 83352, + "TargetStructureID": 593, + "Label": "83352-593 via Unknown from 83353 -> 83354", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83353, + "TargetID": 83354, + "Directional": false + }] + }, { + "ID": 1208, + "SourceStructureID": 593, + "TargetStructureID": 83362, + "Label": "593-83362 via Unknown from 83363 -> 83364", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83363, + "TargetID": 83364, + "Directional": false + }] + }, { + "ID": 1209, + "SourceStructureID": 83443, + "TargetStructureID": 593, + "Label": "83443-593 via Adherens from 86378 -> 67236", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86378, + "TargetID": 67236, + "Directional": false + }] + }, { + "ID": 1210, + "SourceStructureID": 593, + "TargetStructureID": 83470, + "Label": "593-83470 via Unknown from 83472 -> 83471", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83472, + "TargetID": 83471, + "Directional": false + }] + }, { + "ID": 1211, + "SourceStructureID": 593, + "TargetStructureID": 83476, + "Label": "593-83476 via Unknown from 83479 -> 83480", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83479, + "TargetID": 83480, + "Directional": false + }] + }, { + "ID": 1212, + "SourceStructureID": 593, + "TargetStructureID": 83547, + "Label": "593-83547 via Unknown from 83548 -> 83549", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83548, + "TargetID": 83549, + "Directional": false + }] + }, { + "ID": 1213, + "SourceStructureID": 84127, + "TargetStructureID": 593, + "Label": "84127-593 via Unknown from 84584 -> 84583", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84584, + "TargetID": 84583, + "Directional": false + }] + }, { + "ID": 1214, + "SourceStructureID": 84260, + "TargetStructureID": 593, + "Label": "84260-593 via Unknown from 84264 -> 52746", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84264, + "TargetID": 52746, + "Directional": false + }] + }, { + "ID": 1215, + "SourceStructureID": 84301, + "TargetStructureID": 593, + "Label": "84301-593 via Adherens from 84302 -> 84303", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84302, + "TargetID": 84303, + "Directional": false + }] + }, { + "ID": 1216, + "SourceStructureID": 593, + "TargetStructureID": 84335, + "Label": "593-84335 via Unknown from 84334 -> 84338", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84334, + "TargetID": 84338, + "Directional": false + }] + }, { + "ID": 1217, + "SourceStructureID": 593, + "TargetStructureID": 84579, + "Label": "593-84579 via Unknown from 84578 -> 84580", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84578, + "TargetID": 84580, + "Directional": false + }] + }, { + "ID": 1218, + "SourceStructureID": 593, + "TargetStructureID": 84587, + "Label": "593-84587 via Unknown from 84588 -> 84589", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84588, + "TargetID": 84589, + "Directional": false + }] + }, { + "ID": 1219, + "SourceStructureID": 593, + "TargetStructureID": 84624, + "Label": "593-84624 via Unknown from 84626 -> 84627", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84626, + "TargetID": 84627, + "Directional": false + }] + }, { + "ID": 1220, + "SourceStructureID": 593, + "TargetStructureID": 85210, + "Label": "593-85210 via Unknown from 85209 -> 85218", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85209, + "TargetID": 85218, + "Directional": false + }] + }, { + "ID": 1221, + "SourceStructureID": 85359, + "TargetStructureID": 593, + "Label": "85359-593 via Unknown from 85360 -> 85361", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85360, + "TargetID": 85361, + "Directional": false + }] + }, { + "ID": 1222, + "SourceStructureID": 85501, + "TargetStructureID": 593, + "Label": "85501-593 via Unknown from 85502 -> 85503", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85502, + "TargetID": 85503, + "Directional": false + }] + }, { + "ID": 1223, + "SourceStructureID": 85510, + "TargetStructureID": 593, + "Label": "85510-593 via Unknown from 85532 -> 85531", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85532, + "TargetID": 85531, + "Directional": false + }] + }, { + "ID": 1224, + "SourceStructureID": 85565, + "TargetStructureID": 593, + "Label": "85565-593 via Unknown from 85567 -> 85568", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85567, + "TargetID": 85568, + "Directional": false + }] + }, { + "ID": 1225, + "SourceStructureID": 593, + "TargetStructureID": 85571, + "Label": "593-85571 via Adherens from 85573 -> 85574", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85573, + "TargetID": 85574, + "Directional": false + }] + }, { + "ID": 1226, + "SourceStructureID": 593, + "TargetStructureID": 86535, + "Label": "593-86535 via Unknown from 86536 -> 86537", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86536, + "TargetID": 86537, + "Directional": false + }] + }, { + "ID": 1227, + "SourceStructureID": 86538, + "TargetStructureID": 593, + "Label": "86538-593 via Unknown from 86542 -> 86543", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86542, + "TargetID": 86543, + "Directional": false + }] + }, { + "ID": 1228, + "SourceStructureID": 86539, + "TargetStructureID": 593, + "Label": "86539-593 via Unknown from 86540 -> 86541", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86540, + "TargetID": 86541, + "Directional": false + }] + }, { + "ID": 1229, + "SourceStructureID": 86736, + "TargetStructureID": 593, + "Label": "86736-593 via Adherens from 86737 -> 86735", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86737, + "TargetID": 86735, + "Directional": false + }] + }, { + "ID": 1230, + "SourceStructureID": 593, + "TargetStructureID": 86744, + "Label": "593-86744 via Unknown from 86746 -> 86745", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86746, + "TargetID": 86745, + "Directional": false + }] + }, { + "ID": 1231, + "SourceStructureID": 86757, + "TargetStructureID": 593, + "Label": "86757-593 via Unknown from 86758 -> 86759", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86758, + "TargetID": 86759, + "Directional": false + }] + }, { + "ID": 1232, + "SourceStructureID": 87217, + "TargetStructureID": 593, + "Label": "87217-593 via Unknown from 87218 -> 87219", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 87218, + "TargetID": 87219, + "Directional": false + }] + }, { + "ID": 1233, + "SourceStructureID": 87274, + "TargetStructureID": 593, + "Label": "87274-593 via Unknown from 87276 -> 87275", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 87276, + "TargetID": 87275, + "Directional": false + }] + }, { + "ID": 1234, + "SourceStructureID": 593, + "TargetStructureID": 115992, + "Label": "593-115992 via Unknown from 120240 -> 120241", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120240, + "TargetID": 120241, + "Directional": false + }] + }, { + "ID": 1235, + "SourceStructureID": 595, + "TargetStructureID": 595, + "Label": "595-595 via Adherens from 91257 -> 91258, 92829 -> 92830", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91257, + "TargetID": 91258, + "Directional": false + }, { + "SourceID": 92829, + "TargetID": 92830, + "Directional": false + }] + }, { + "ID": 1236, + "SourceStructureID": 595, + "TargetStructureID": 595, + "Label": "595-595 via Gap Junction from 125576 -> 125577, 135531 -> 135530", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 125576, + "TargetID": 125577, + "Directional": false + }, { + "SourceID": 135531, + "TargetID": 135530, + "Directional": false + }] + }, { + "ID": 1237, + "SourceStructureID": 606, + "TargetStructureID": 595, + "Label": "606-595 via Unknown from 125096 -> 125095", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125096, + "TargetID": 125095, + "Directional": false + }] + }, { + "ID": 1238, + "SourceStructureID": 5528, + "TargetStructureID": 595, + "Label": "5528-595 via Adherens from 8283 -> 8282, 91360 -> 91359, 135741 -> 135740, 135743 -> 135744, 135745 -> 135746", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 8283, + "TargetID": 8282, + "Directional": false + }, { + "SourceID": 91360, + "TargetID": 91359, + "Directional": false + }, { + "SourceID": 135741, + "TargetID": 135740, + "Directional": false + }, { + "SourceID": 135743, + "TargetID": 135744, + "Directional": false + }, { + "SourceID": 135745, + "TargetID": 135746, + "Directional": false + }] + }, { + "ID": 1239, + "SourceStructureID": 595, + "TargetStructureID": 5528, + "Label": "595-5528 via Gap Junction from 46704 -> 55016, 54872 -> 54643, 91273 -> 91272, 91361 -> 91362, 91375 -> 91520, 94739 -> 94740, 113993 -> 113992, 133948 -> 133949, 135713 -> 135712", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46704, + "TargetID": 55016, + "Directional": false + }, { + "SourceID": 54872, + "TargetID": 54643, + "Directional": false + }, { + "SourceID": 91273, + "TargetID": 91272, + "Directional": false + }, { + "SourceID": 91361, + "TargetID": 91362, + "Directional": false + }, { + "SourceID": 91375, + "TargetID": 91520, + "Directional": false + }, { + "SourceID": 94739, + "TargetID": 94740, + "Directional": false + }, { + "SourceID": 113993, + "TargetID": 113992, + "Directional": false + }, { + "SourceID": 133948, + "TargetID": 133949, + "Directional": false + }, { + "SourceID": 135713, + "TargetID": 135712, + "Directional": false + }] + }, { + "ID": 1240, + "SourceStructureID": 5530, + "TargetStructureID": 595, + "Label": "5530-595 via Adherens from 74852 -> 74853, 75907 -> 75906, 80469 -> 80470, 80621 -> 80620, 81025 -> 81024, 81032 -> 81031, 82340 -> 82341, 125900 -> 125899, 135554 -> 135553, 135560 -> 135559, 135593 -> 135594", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74852, + "TargetID": 74853, + "Directional": false + }, { + "SourceID": 75907, + "TargetID": 75906, + "Directional": false + }, { + "SourceID": 80469, + "TargetID": 80470, + "Directional": false + }, { + "SourceID": 80621, + "TargetID": 80620, + "Directional": false + }, { + "SourceID": 81025, + "TargetID": 81024, + "Directional": false + }, { + "SourceID": 81032, + "TargetID": 81031, + "Directional": false + }, { + "SourceID": 82340, + "TargetID": 82341, + "Directional": false + }, { + "SourceID": 125900, + "TargetID": 125899, + "Directional": false + }, { + "SourceID": 135554, + "TargetID": 135553, + "Directional": false + }, { + "SourceID": 135560, + "TargetID": 135559, + "Directional": false + }, { + "SourceID": 135593, + "TargetID": 135594, + "Directional": false + }] + }, { + "ID": 1241, + "SourceStructureID": 595, + "TargetStructureID": 5530, + "Label": "595-5530 via Gap Junction from 40652 -> 40551, 46668 -> 46667, 47212 -> 47211, 74746 -> 74747, 75038 -> 75036, 76835 -> 76834, 80239 -> 80238, 80619 -> 80618, 81023 -> 81021, 81029 -> 81030, 82339 -> 75412, 125890 -> 125889, 128283 -> 128282, 133932 -> 133931, 133934 -> 133933, 133936 -> 133935, 133937 -> 133938, 133943 -> 133944, 133951 -> 133950, 133953 -> 133952, 133954 -> 133955, 133957 -> 133956, 133959 -> 133958, 133961 -> 133960, 133963 -> 133962, 133965 -> 133964, 135723 -> 135722", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 40652, + "TargetID": 40551, + "Directional": false + }, { + "SourceID": 46668, + "TargetID": 46667, + "Directional": false + }, { + "SourceID": 47212, + "TargetID": 47211, + "Directional": false + }, { + "SourceID": 74746, + "TargetID": 74747, + "Directional": false + }, { + "SourceID": 75038, + "TargetID": 75036, + "Directional": false + }, { + "SourceID": 76835, + "TargetID": 76834, + "Directional": false + }, { + "SourceID": 80239, + "TargetID": 80238, + "Directional": false + }, { + "SourceID": 80619, + "TargetID": 80618, + "Directional": false + }, { + "SourceID": 81023, + "TargetID": 81021, + "Directional": false + }, { + "SourceID": 81029, + "TargetID": 81030, + "Directional": false + }, { + "SourceID": 82339, + "TargetID": 75412, + "Directional": false + }, { + "SourceID": 125890, + "TargetID": 125889, + "Directional": false + }, { + "SourceID": 128283, + "TargetID": 128282, + "Directional": false + }, { + "SourceID": 133932, + "TargetID": 133931, + "Directional": false + }, { + "SourceID": 133934, + "TargetID": 133933, + "Directional": false + }, { + "SourceID": 133936, + "TargetID": 133935, + "Directional": false + }, { + "SourceID": 133937, + "TargetID": 133938, + "Directional": false + }, { + "SourceID": 133943, + "TargetID": 133944, + "Directional": false + }, { + "SourceID": 133951, + "TargetID": 133950, + "Directional": false + }, { + "SourceID": 133953, + "TargetID": 133952, + "Directional": false + }, { + "SourceID": 133954, + "TargetID": 133955, + "Directional": false + }, { + "SourceID": 133957, + "TargetID": 133956, + "Directional": false + }, { + "SourceID": 133959, + "TargetID": 133958, + "Directional": false + }, { + "SourceID": 133961, + "TargetID": 133960, + "Directional": false + }, { + "SourceID": 133963, + "TargetID": 133962, + "Directional": false + }, { + "SourceID": 133965, + "TargetID": 133964, + "Directional": false + }, { + "SourceID": 135723, + "TargetID": 135722, + "Directional": false + }] + }, { + "ID": 1242, + "SourceStructureID": 5531, + "TargetStructureID": 595, + "Label": "5531-595 via Gap Junction from 91490 -> 91489", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91490, + "TargetID": 91489, + "Directional": false + }] + }, { + "ID": 1243, + "SourceStructureID": 6117, + "TargetStructureID": 595, + "Label": "6117-595 via Adherens from 86348 -> 47258", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86348, + "TargetID": 47258, + "Directional": false + }] + }, { + "ID": 1244, + "SourceStructureID": 6117, + "TargetStructureID": 595, + "Label": "6117-595 via Gap Junction from 86347 -> 47259", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 86347, + "TargetID": 47259, + "Directional": false + }] + }, { + "ID": 1245, + "SourceStructureID": 6129, + "TargetStructureID": 595, + "Label": "6129-595 via Adherens from 125180 -> 125179", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125180, + "TargetID": 125179, + "Directional": false + }] + }, { + "ID": 1246, + "SourceStructureID": 7576, + "TargetStructureID": 595, + "Label": "7576-595 via Adherens from 91399 -> 91398, 125164 -> 125163, 135728 -> 135729", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91399, + "TargetID": 91398, + "Directional": false + }, { + "SourceID": 125164, + "TargetID": 125163, + "Directional": false + }, { + "SourceID": 135728, + "TargetID": 135729, + "Directional": false + }] + }, { + "ID": 1247, + "SourceStructureID": 595, + "TargetStructureID": 7576, + "Label": "595-7576 via Gap Junction from 54868 -> 54869, 54883 -> 54884, 55020 -> 55019, 133946 -> 133945, 135727 -> 135726", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54868, + "TargetID": 54869, + "Directional": false + }, { + "SourceID": 54883, + "TargetID": 54884, + "Directional": false + }, { + "SourceID": 55020, + "TargetID": 55019, + "Directional": false + }, { + "SourceID": 133946, + "TargetID": 133945, + "Directional": false + }, { + "SourceID": 135727, + "TargetID": 135726, + "Directional": false + }] + }, { + "ID": 1248, + "SourceStructureID": 9769, + "TargetStructureID": 595, + "Label": "9769-595 via Unknown from 135558 -> 135557", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135558, + "TargetID": 135557, + "Directional": false + }] + }, { + "ID": 1249, + "SourceStructureID": 15796, + "TargetStructureID": 595, + "Label": "15796-595 via Unknown from 91407 -> 91408", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91407, + "TargetID": 91408, + "Directional": false + }] + }, { + "ID": 1250, + "SourceStructureID": 21299, + "TargetStructureID": 595, + "Label": "21299-595 via Gap Junction from 91650 -> 91649", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91650, + "TargetID": 91649, + "Directional": false + }] + }, { + "ID": 1251, + "SourceStructureID": 595, + "TargetStructureID": 51617, + "Label": "595-51617 via Unknown from 125306 -> 125307", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125306, + "TargetID": 125307, + "Directional": false + }] + }, { + "ID": 1252, + "SourceStructureID": 90061, + "TargetStructureID": 595, + "Label": "90061-595 via Adherens from 135591 -> 135592", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135591, + "TargetID": 135592, + "Directional": false + }] + }, { + "ID": 1253, + "SourceStructureID": 90891, + "TargetStructureID": 595, + "Label": "90891-595 via Unknown from 90892 -> 90893", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90892, + "TargetID": 90893, + "Directional": false + }] + }, { + "ID": 1254, + "SourceStructureID": 90905, + "TargetStructureID": 595, + "Label": "90905-595 via Unknown from 90907 -> 90908", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90907, + "TargetID": 90908, + "Directional": false + }] + }, { + "ID": 1255, + "SourceStructureID": 90917, + "TargetStructureID": 595, + "Label": "90917-595 via Adherens from 91127 -> 91126", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91127, + "TargetID": 91126, + "Directional": false + }] + }, { + "ID": 1256, + "SourceStructureID": 90917, + "TargetStructureID": 595, + "Label": "90917-595 via Gap Junction from 91124 -> 91125", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91124, + "TargetID": 91125, + "Directional": false + }] + }, { + "ID": 1257, + "SourceStructureID": 91132, + "TargetStructureID": 595, + "Label": "91132-595 via Unknown from 91134 -> 91133", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91134, + "TargetID": 91133, + "Directional": false + }] + }, { + "ID": 1258, + "SourceStructureID": 595, + "TargetStructureID": 91138, + "Label": "595-91138 via Adherens from 135735 -> 135736", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135735, + "TargetID": 135736, + "Directional": false + }] + }, { + "ID": 1259, + "SourceStructureID": 595, + "TargetStructureID": 91138, + "Label": "595-91138 via Gap Junction from 91139 -> 91140", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91139, + "TargetID": 91140, + "Directional": false + }] + }, { + "ID": 1260, + "SourceStructureID": 595, + "TargetStructureID": 91156, + "Label": "595-91156 via Unknown from 91157 -> 91158", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91157, + "TargetID": 91158, + "Directional": false + }] + }, { + "ID": 1261, + "SourceStructureID": 91178, + "TargetStructureID": 595, + "Label": "91178-595 via Adherens from 135525 -> 135526", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135525, + "TargetID": 135526, + "Directional": false + }] + }, { + "ID": 1262, + "SourceStructureID": 595, + "TargetStructureID": 91178, + "Label": "595-91178 via Gap Junction from 46644 -> 91179, 135527 -> 135528", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46644, + "TargetID": 91179, + "Directional": false + }, { + "SourceID": 135527, + "TargetID": 135528, + "Directional": false + }] + }, { + "ID": 1263, + "SourceStructureID": 91188, + "TargetStructureID": 595, + "Label": "91188-595 via Unknown from 91189 -> 91190", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91189, + "TargetID": 91190, + "Directional": false + }] + }, { + "ID": 1264, + "SourceStructureID": 91191, + "TargetStructureID": 595, + "Label": "91191-595 via Gap Junction from 91193 -> 91192", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91193, + "TargetID": 91192, + "Directional": false + }] + }, { + "ID": 1265, + "SourceStructureID": 595, + "TargetStructureID": 91232, + "Label": "595-91232 via Unknown from 91234 -> 91233, 92604 -> 92603", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91234, + "TargetID": 91233, + "Directional": false + }, { + "SourceID": 92604, + "TargetID": 92603, + "Directional": false + }] + }, { + "ID": 1266, + "SourceStructureID": 91376, + "TargetStructureID": 595, + "Label": "91376-595 via Unknown from 91377 -> 91378", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91377, + "TargetID": 91378, + "Directional": false + }] + }, { + "ID": 1267, + "SourceStructureID": 91414, + "TargetStructureID": 595, + "Label": "91414-595 via Unknown from 91416 -> 91415", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91416, + "TargetID": 91415, + "Directional": false + }] + }, { + "ID": 1268, + "SourceStructureID": 91497, + "TargetStructureID": 595, + "Label": "91497-595 via Unknown from 91498 -> 91499", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91498, + "TargetID": 91499, + "Directional": false + }] + }, { + "ID": 1269, + "SourceStructureID": 595, + "TargetStructureID": 91521, + "Label": "595-91521 via Gap Junction from 91522 -> 91523", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91522, + "TargetID": 91523, + "Directional": false + }] + }, { + "ID": 1270, + "SourceStructureID": 96290, + "TargetStructureID": 595, + "Label": "96290-595 via Unknown from 147408 -> 147407", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147408, + "TargetID": 147407, + "Directional": false + }] + }, { + "ID": 1271, + "SourceStructureID": 106778, + "TargetStructureID": 595, + "Label": "106778-595 via Unknown from 125072 -> 125071", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125072, + "TargetID": 125071, + "Directional": false + }] + }, { + "ID": 1272, + "SourceStructureID": 598, + "TargetStructureID": 606, + "Label": "598-606 via Adherens from 131144 -> 131143", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131144, + "TargetID": 131143, + "Directional": false + }] + }, { + "ID": 1273, + "SourceStructureID": 598, + "TargetStructureID": 606, + "Label": "598-606 via Gap Junction from 50909 -> 50908", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50909, + "TargetID": 50908, + "Directional": false + }] + }, { + "ID": 1274, + "SourceStructureID": 598, + "TargetStructureID": 5396, + "Label": "598-5396 via Adherens from 89483 -> 89482", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89483, + "TargetID": 89482, + "Directional": false + }] + }, { + "ID": 1275, + "SourceStructureID": 606, + "TargetStructureID": 5292, + "Label": "606-5292 via Adherens from 51389 -> 51390", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 51389, + "TargetID": 51390, + "Directional": false + }] + }, { + "ID": 1276, + "SourceStructureID": 5442, + "TargetStructureID": 606, + "Label": "5442-606 via Adherens from 55117 -> 55116, 73982 -> 73983", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 55117, + "TargetID": 55116, + "Directional": false + }, { + "SourceID": 73982, + "TargetID": 73983, + "Directional": false + }] + }, { + "ID": 1277, + "SourceStructureID": 606, + "TargetStructureID": 5442, + "Label": "606-5442 via Gap Junction from 48006 -> 55113, 48007 -> 55114, 48098 -> 55126", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48006, + "TargetID": 55113, + "Directional": false + }, { + "SourceID": 48007, + "TargetID": 55114, + "Directional": false + }, { + "SourceID": 48098, + "TargetID": 55126, + "Directional": false + }] + }, { + "ID": 1278, + "SourceStructureID": 5450, + "TargetStructureID": 606, + "Label": "5450-606 via Adherens from 53877 -> 53876", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 53877, + "TargetID": 53876, + "Directional": false + }] + }, { + "ID": 1279, + "SourceStructureID": 5451, + "TargetStructureID": 606, + "Label": "5451-606 via Adherens from 54332 -> 54331, 88729 -> 88728", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54332, + "TargetID": 54331, + "Directional": false + }, { + "SourceID": 88729, + "TargetID": 88728, + "Directional": false + }] + }, { + "ID": 1280, + "SourceStructureID": 606, + "TargetStructureID": 5451, + "Label": "606-5451 via Gap Junction from 44310 -> 44312, 44956 -> 44960, 45214 -> 55152, 54319 -> 54318, 54329 -> 49808, 55173 -> 49621", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 44310, + "TargetID": 44312, + "Directional": false + }, { + "SourceID": 44956, + "TargetID": 44960, + "Directional": false + }, { + "SourceID": 45214, + "TargetID": 55152, + "Directional": false + }, { + "SourceID": 54319, + "TargetID": 54318, + "Directional": false + }, { + "SourceID": 54329, + "TargetID": 49808, + "Directional": false + }, { + "SourceID": 55173, + "TargetID": 49621, + "Directional": false + }] + }, { + "ID": 1281, + "SourceStructureID": 606, + "TargetStructureID": 5468, + "Label": "606-5468 via Adherens from 51772 -> 51773, 51848 -> 51847", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 51772, + "TargetID": 51773, + "Directional": false + }, { + "SourceID": 51848, + "TargetID": 51847, + "Directional": false + }] + }, { + "ID": 1282, + "SourceStructureID": 606, + "TargetStructureID": 5481, + "Label": "606-5481 via Adherens from 53380 -> 53381, 53419 -> 53420", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 53380, + "TargetID": 53381, + "Directional": false + }, { + "SourceID": 53419, + "TargetID": 53420, + "Directional": false + }] + }, { + "ID": 1283, + "SourceStructureID": 606, + "TargetStructureID": 5481, + "Label": "606-5481 via Gap Junction from 52403 -> 52516, 52404 -> 52518, 52527 -> 52528, 53064 -> 90173, 53360 -> 53359, 53365 -> 53364, 53371 -> 53372", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52403, + "TargetID": 52516, + "Directional": false + }, { + "SourceID": 52404, + "TargetID": 52518, + "Directional": false + }, { + "SourceID": 52527, + "TargetID": 52528, + "Directional": false + }, { + "SourceID": 53064, + "TargetID": 90173, + "Directional": false + }, { + "SourceID": 53360, + "TargetID": 53359, + "Directional": false + }, { + "SourceID": 53365, + "TargetID": 53364, + "Directional": false + }, { + "SourceID": 53371, + "TargetID": 53372, + "Directional": false + }] + }, { + "ID": 1284, + "SourceStructureID": 5530, + "TargetStructureID": 606, + "Label": "5530-606 via Adherens from 52525 -> 52524, 52529 -> 52531, 53483 -> 53482, 53525 -> 53524, 53526 -> 53527, 54030 -> 54031, 54048 -> 54049, 54050 -> 54051", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 52525, + "TargetID": 52524, + "Directional": false + }, { + "SourceID": 52529, + "TargetID": 52531, + "Directional": false + }, { + "SourceID": 53483, + "TargetID": 53482, + "Directional": false + }, { + "SourceID": 53525, + "TargetID": 53524, + "Directional": false + }, { + "SourceID": 53526, + "TargetID": 53527, + "Directional": false + }, { + "SourceID": 54030, + "TargetID": 54031, + "Directional": false + }, { + "SourceID": 54048, + "TargetID": 54049, + "Directional": false + }, { + "SourceID": 54050, + "TargetID": 54051, + "Directional": false + }] + }, { + "ID": 1285, + "SourceStructureID": 606, + "TargetStructureID": 5530, + "Label": "606-5530 via Unknown from 82555 -> 80970, 82684 -> 77469, 82882 -> 81107, 82885 -> 81135, 125893 -> 125892", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82555, + "TargetID": 80970, + "Directional": false + }, { + "SourceID": 82684, + "TargetID": 77469, + "Directional": false + }, { + "SourceID": 82882, + "TargetID": 81107, + "Directional": false + }, { + "SourceID": 82885, + "TargetID": 81135, + "Directional": false + }, { + "SourceID": 125893, + "TargetID": 125892, + "Directional": false + }] + }, { + "ID": 1286, + "SourceStructureID": 606, + "TargetStructureID": 5541, + "Label": "606-5541 via Adherens from 53711 -> 53712, 53713 -> 53714", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 53711, + "TargetID": 53712, + "Directional": false + }, { + "SourceID": 53713, + "TargetID": 53714, + "Directional": false + }] + }, { + "ID": 1287, + "SourceStructureID": 5601, + "TargetStructureID": 606, + "Label": "5601-606 via Adherens from 54552 -> 54551, 54600 -> 54599", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54552, + "TargetID": 54551, + "Directional": false + }, { + "SourceID": 54600, + "TargetID": 54599, + "Directional": false + }] + }, { + "ID": 1288, + "SourceStructureID": 606, + "TargetStructureID": 5601, + "Label": "606-5601 via Unknown from 134827 -> 127147", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134827, + "TargetID": 127147, + "Directional": false + }] + }, { + "ID": 1289, + "SourceStructureID": 606, + "TargetStructureID": 5650, + "Label": "606-5650 via Adherens from 51463 -> 51464", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 51463, + "TargetID": 51464, + "Directional": false + }] + }, { + "ID": 1290, + "SourceStructureID": 606, + "TargetStructureID": 5729, + "Label": "606-5729 via Adherens from 47225 -> 47230", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 47225, + "TargetID": 47230, + "Directional": false + }] + }, { + "ID": 1291, + "SourceStructureID": 606, + "TargetStructureID": 5729, + "Label": "606-5729 via Unknown from 111447 -> 111446", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111447, + "TargetID": 111446, + "Directional": false + }] + }, { + "ID": 1292, + "SourceStructureID": 606, + "TargetStructureID": 6117, + "Label": "606-6117 via Adherens from 12320 -> 86263, 51203 -> 51204, 51295 -> 51294", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 12320, + "TargetID": 86263, + "Directional": false + }, { + "SourceID": 51203, + "TargetID": 51204, + "Directional": false + }, { + "SourceID": 51295, + "TargetID": 51294, + "Directional": false + }] + }, { + "ID": 1293, + "SourceStructureID": 606, + "TargetStructureID": 6117, + "Label": "606-6117 via Unknown from 84161 -> 84160", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84161, + "TargetID": 84160, + "Directional": false + }] + }, { + "ID": 1294, + "SourceStructureID": 6120, + "TargetStructureID": 606, + "Label": "6120-606 via Adherens from 51498 -> 51499, 51509 -> 51508", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 51498, + "TargetID": 51499, + "Directional": false + }, { + "SourceID": 51509, + "TargetID": 51508, + "Directional": false + }] + }, { + "ID": 1295, + "SourceStructureID": 6204, + "TargetStructureID": 606, + "Label": "6204-606 via Adherens from 51975 -> 51976", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 51975, + "TargetID": 51976, + "Directional": false + }] + }, { + "ID": 1296, + "SourceStructureID": 606, + "TargetStructureID": 7024, + "Label": "606-7024 via Adherens from 47474 -> 47473", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 47474, + "TargetID": 47473, + "Directional": false + }] + }, { + "ID": 1297, + "SourceStructureID": 606, + "TargetStructureID": 7576, + "Label": "606-7576 via Adherens from 54840 -> 54841", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54840, + "TargetID": 54841, + "Directional": false + }] + }, { + "ID": 1298, + "SourceStructureID": 7594, + "TargetStructureID": 606, + "Label": "7594-606 via Adherens from 47611 -> 47612, 51097 -> 51098, 51421 -> 51422, 51745 -> 51746, 51800 -> 51799, 52500 -> 52501, 53560 -> 53548, 54445 -> 54446", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 47611, + "TargetID": 47612, + "Directional": false + }, { + "SourceID": 51097, + "TargetID": 51098, + "Directional": false + }, { + "SourceID": 51421, + "TargetID": 51422, + "Directional": false + }, { + "SourceID": 51745, + "TargetID": 51746, + "Directional": false + }, { + "SourceID": 51800, + "TargetID": 51799, + "Directional": false + }, { + "SourceID": 52500, + "TargetID": 52501, + "Directional": false + }, { + "SourceID": 53560, + "TargetID": 53548, + "Directional": false + }, { + "SourceID": 54445, + "TargetID": 54446, + "Directional": false + }] + }, { + "ID": 1299, + "SourceStructureID": 9769, + "TargetStructureID": 606, + "Label": "9769-606 via Adherens from 12397 -> 12398, 48505 -> 48506, 49123 -> 49124, 51235 -> 51236, 51303 -> 51302, 51307 -> 51306, 51432 -> 51433, 51785 -> 51786, 53047 -> 53046, 53048 -> 53045, 53049 -> 53044, 53059 -> 53060, 53076 -> 53075, 53079 -> 53078, 53088 -> 53089", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 12397, + "TargetID": 12398, + "Directional": false + }, { + "SourceID": 48505, + "TargetID": 48506, + "Directional": false + }, { + "SourceID": 49123, + "TargetID": 49124, + "Directional": false + }, { + "SourceID": 51235, + "TargetID": 51236, + "Directional": false + }, { + "SourceID": 51303, + "TargetID": 51302, + "Directional": false + }, { + "SourceID": 51307, + "TargetID": 51306, + "Directional": false + }, { + "SourceID": 51432, + "TargetID": 51433, + "Directional": false + }, { + "SourceID": 51785, + "TargetID": 51786, + "Directional": false + }, { + "SourceID": 53047, + "TargetID": 53046, + "Directional": false + }, { + "SourceID": 53048, + "TargetID": 53045, + "Directional": false + }, { + "SourceID": 53049, + "TargetID": 53044, + "Directional": false + }, { + "SourceID": 53059, + "TargetID": 53060, + "Directional": false + }, { + "SourceID": 53076, + "TargetID": 53075, + "Directional": false + }, { + "SourceID": 53079, + "TargetID": 53078, + "Directional": false + }, { + "SourceID": 53088, + "TargetID": 53089, + "Directional": false + }] + }, { + "ID": 1300, + "SourceStructureID": 9769, + "TargetStructureID": 606, + "Label": "9769-606 via Gap Junction from 12396 -> 12348, 12399 -> 12323, 44269 -> 44268, 45318 -> 45316, 48503 -> 48504, 49118 -> 49119, 49183 -> 49182, 50695 -> 50694, 50919 -> 50971, 51312 -> 51313, 51330 -> 51329, 51425 -> 51426, 51474 -> 51473, 51487 -> 51488, 51489 -> 51490, 51588 -> 51589, 51595 -> 51594, 51596 -> 51597, 51788 -> 51789, 51792 -> 89637, 51863 -> 51864, 52393 -> 52394, 52759 -> 49023, 52886 -> 56077, 53004 -> 49179, 53051 -> 53050, 53073 -> 53074, 53511 -> 53510, 53533 -> 53530, 53932 -> 53933, 54489 -> 54490", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 12396, + "TargetID": 12348, + "Directional": false + }, { + "SourceID": 12399, + "TargetID": 12323, + "Directional": false + }, { + "SourceID": 44269, + "TargetID": 44268, + "Directional": false + }, { + "SourceID": 45318, + "TargetID": 45316, + "Directional": false + }, { + "SourceID": 48503, + "TargetID": 48504, + "Directional": false + }, { + "SourceID": 49118, + "TargetID": 49119, + "Directional": false + }, { + "SourceID": 49183, + "TargetID": 49182, + "Directional": false + }, { + "SourceID": 50695, + "TargetID": 50694, + "Directional": false + }, { + "SourceID": 50919, + "TargetID": 50971, + "Directional": false + }, { + "SourceID": 51312, + "TargetID": 51313, + "Directional": false + }, { + "SourceID": 51330, + "TargetID": 51329, + "Directional": false + }, { + "SourceID": 51425, + "TargetID": 51426, + "Directional": false + }, { + "SourceID": 51474, + "TargetID": 51473, + "Directional": false + }, { + "SourceID": 51487, + "TargetID": 51488, + "Directional": false + }, { + "SourceID": 51489, + "TargetID": 51490, + "Directional": false + }, { + "SourceID": 51588, + "TargetID": 51589, + "Directional": false + }, { + "SourceID": 51595, + "TargetID": 51594, + "Directional": false + }, { + "SourceID": 51596, + "TargetID": 51597, + "Directional": false + }, { + "SourceID": 51788, + "TargetID": 51789, + "Directional": false + }, { + "SourceID": 51792, + "TargetID": 89637, + "Directional": false + }, { + "SourceID": 51863, + "TargetID": 51864, + "Directional": false + }, { + "SourceID": 52393, + "TargetID": 52394, + "Directional": false + }, { + "SourceID": 52759, + "TargetID": 49023, + "Directional": false + }, { + "SourceID": 52886, + "TargetID": 56077, + "Directional": false + }, { + "SourceID": 53004, + "TargetID": 49179, + "Directional": false + }, { + "SourceID": 53051, + "TargetID": 53050, + "Directional": false + }, { + "SourceID": 53073, + "TargetID": 53074, + "Directional": false + }, { + "SourceID": 53511, + "TargetID": 53510, + "Directional": false + }, { + "SourceID": 53533, + "TargetID": 53530, + "Directional": false + }, { + "SourceID": 53932, + "TargetID": 53933, + "Directional": false + }, { + "SourceID": 54489, + "TargetID": 54490, + "Directional": false + }] + }, { + "ID": 1301, + "SourceStructureID": 10559, + "TargetStructureID": 606, + "Label": "10559-606 via Adherens from 54370 -> 54371", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54370, + "TargetID": 54371, + "Directional": false + }] + }, { + "ID": 1302, + "SourceStructureID": 10559, + "TargetStructureID": 606, + "Label": "10559-606 via Gap Junction from 44315 -> 44313, 54278 -> 54281, 54383 -> 54384", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 44315, + "TargetID": 44313, + "Directional": false + }, { + "SourceID": 54278, + "TargetID": 54281, + "Directional": false + }, { + "SourceID": 54383, + "TargetID": 54384, + "Directional": false + }] + }, { + "ID": 1303, + "SourceStructureID": 606, + "TargetStructureID": 12408, + "Label": "606-12408 via Adherens from 52813 -> 52814, 52816 -> 52815", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 52813, + "TargetID": 52814, + "Directional": false + }, { + "SourceID": 52816, + "TargetID": 52815, + "Directional": false + }] + }, { + "ID": 1304, + "SourceStructureID": 606, + "TargetStructureID": 12564, + "Label": "606-12564 via Gap Junction from 49606 -> 88665, 50892 -> 53254, 53247 -> 53213", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49606, + "TargetID": 88665, + "Directional": false + }, { + "SourceID": 50892, + "TargetID": 53254, + "Directional": false + }, { + "SourceID": 53247, + "TargetID": 53213, + "Directional": false + }] + }, { + "ID": 1305, + "SourceStructureID": 22974, + "TargetStructureID": 606, + "Label": "22974-606 via Adherens from 51478 -> 51477", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 51478, + "TargetID": 51477, + "Directional": false + }] + }, { + "ID": 1306, + "SourceStructureID": 30130, + "TargetStructureID": 606, + "Label": "30130-606 via Adherens from 52209 -> 52208", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 52209, + "TargetID": 52208, + "Directional": false + }] + }, { + "ID": 1307, + "SourceStructureID": 606, + "TargetStructureID": 34302, + "Label": "606-34302 via Adherens from 52607 -> 52608", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 52607, + "TargetID": 52608, + "Directional": false + }] + }, { + "ID": 1308, + "SourceStructureID": 34315, + "TargetStructureID": 606, + "Label": "34315-606 via Adherens from 52381 -> 52380", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 52381, + "TargetID": 52380, + "Directional": false + }] + }, { + "ID": 1309, + "SourceStructureID": 38632, + "TargetStructureID": 606, + "Label": "38632-606 via Adherens from 52620 -> 52619, 53119 -> 53118, 90534 -> 90533", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 52620, + "TargetID": 52619, + "Directional": false + }, { + "SourceID": 53119, + "TargetID": 53118, + "Directional": false + }, { + "SourceID": 90534, + "TargetID": 90533, + "Directional": false + }] + }, { + "ID": 1310, + "SourceStructureID": 606, + "TargetStructureID": 38632, + "Label": "606-38632 via Gap Junction from 53112 -> 53111", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53112, + "TargetID": 53111, + "Directional": false + }] + }, { + "ID": 1311, + "SourceStructureID": 606, + "TargetStructureID": 39900, + "Label": "606-39900 via Adherens from 54144 -> 54145", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54144, + "TargetID": 54145, + "Directional": false + }] + }, { + "ID": 1312, + "SourceStructureID": 606, + "TargetStructureID": 40051, + "Label": "606-40051 via Adherens from 128560 -> 128561", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128560, + "TargetID": 128561, + "Directional": false + }] + }, { + "ID": 1313, + "SourceStructureID": 40057, + "TargetStructureID": 606, + "Label": "40057-606 via Adherens from 45485 -> 45484", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 45485, + "TargetID": 45484, + "Directional": false + }] + }, { + "ID": 1314, + "SourceStructureID": 44222, + "TargetStructureID": 606, + "Label": "44222-606 via Adherens from 44226 -> 45016, 53921 -> 53922", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 44226, + "TargetID": 45016, + "Directional": false + }, { + "SourceID": 53921, + "TargetID": 53922, + "Directional": false + }] + }, { + "ID": 1315, + "SourceStructureID": 44222, + "TargetStructureID": 606, + "Label": "44222-606 via Gap Junction from 44218 -> 44216, 44223 -> 44221, 44225 -> 44224", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 44218, + "TargetID": 44216, + "Directional": false + }, { + "SourceID": 44223, + "TargetID": 44221, + "Directional": false + }, { + "SourceID": 44225, + "TargetID": 44224, + "Directional": false + }] + }, { + "ID": 1316, + "SourceStructureID": 606, + "TargetStructureID": 44329, + "Label": "606-44329 via Adherens from 44327 -> 44331", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 44327, + "TargetID": 44331, + "Directional": false + }] + }, { + "ID": 1317, + "SourceStructureID": 44329, + "TargetStructureID": 606, + "Label": "44329-606 via Gap Junction from 44330 -> 44328", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 44330, + "TargetID": 44328, + "Directional": false + }] + }, { + "ID": 1318, + "SourceStructureID": 44970, + "TargetStructureID": 606, + "Label": "44970-606 via Gap Junction from 51174 -> 51175", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51174, + "TargetID": 51175, + "Directional": false + }] + }, { + "ID": 1319, + "SourceStructureID": 606, + "TargetStructureID": 45220, + "Label": "606-45220 via Gap Junction from 49624 -> 54058, 52405 -> 52406, 54046 -> 54045, 55181 -> 54037", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49624, + "TargetID": 54058, + "Directional": false + }, { + "SourceID": 52405, + "TargetID": 52406, + "Directional": false + }, { + "SourceID": 54046, + "TargetID": 54045, + "Directional": false + }, { + "SourceID": 55181, + "TargetID": 54037, + "Directional": false + }] + }, { + "ID": 1320, + "SourceStructureID": 45406, + "TargetStructureID": 606, + "Label": "45406-606 via Gap Junction from 45407 -> 10516", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45407, + "TargetID": 10516, + "Directional": false + }] + }, { + "ID": 1321, + "SourceStructureID": 46105, + "TargetStructureID": 606, + "Label": "46105-606 via Adherens from 46244 -> 46243", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 46244, + "TargetID": 46243, + "Directional": false + }] + }, { + "ID": 1322, + "SourceStructureID": 606, + "TargetStructureID": 46589, + "Label": "606-46589 via Gap Junction from 46586 -> 56003, 46591 -> 46584", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46586, + "TargetID": 56003, + "Directional": false + }, { + "SourceID": 46591, + "TargetID": 46584, + "Directional": false + }] + }, { + "ID": 1323, + "SourceStructureID": 47013, + "TargetStructureID": 606, + "Label": "47013-606 via Gap Junction from 88245 -> 47583", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88245, + "TargetID": 47583, + "Directional": false + }] + }, { + "ID": 1324, + "SourceStructureID": 606, + "TargetStructureID": 47445, + "Label": "606-47445 via Adherens from 47452 -> 47453", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 47452, + "TargetID": 47453, + "Directional": false + }] + }, { + "ID": 1325, + "SourceStructureID": 606, + "TargetStructureID": 51923, + "Label": "606-51923 via Adherens from 51928 -> 51929", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 51928, + "TargetID": 51929, + "Directional": false + }] + }, { + "ID": 1326, + "SourceStructureID": 606, + "TargetStructureID": 51923, + "Label": "606-51923 via Gap Junction from 48296 -> 51924, 51932 -> 51931", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48296, + "TargetID": 51924, + "Directional": false + }, { + "SourceID": 51932, + "TargetID": 51931, + "Directional": false + }] + }, { + "ID": 1327, + "SourceStructureID": 606, + "TargetStructureID": 53115, + "Label": "606-53115 via Gap Junction from 53114 -> 53139, 53145 -> 53146, 90523 -> 53165", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53114, + "TargetID": 53139, + "Directional": false + }, { + "SourceID": 53145, + "TargetID": 53146, + "Directional": false + }, { + "SourceID": 90523, + "TargetID": 53165, + "Directional": false + }] + }, { + "ID": 1328, + "SourceStructureID": 606, + "TargetStructureID": 55098, + "Label": "606-55098 via Gap Junction from 50907 -> 55099", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50907, + "TargetID": 55099, + "Directional": false + }] + }, { + "ID": 1329, + "SourceStructureID": 606, + "TargetStructureID": 55232, + "Label": "606-55232 via Adherens from 47224 -> 55240, 55246 -> 55247", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 47224, + "TargetID": 55240, + "Directional": false + }, { + "SourceID": 55246, + "TargetID": 55247, + "Directional": false + }] + }, { + "ID": 1330, + "SourceStructureID": 606, + "TargetStructureID": 55232, + "Label": "606-55232 via Gap Junction from 47213 -> 55233, 47219 -> 55236, 55251 -> 47234", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47213, + "TargetID": 55233, + "Directional": false + }, { + "SourceID": 47219, + "TargetID": 55236, + "Directional": false + }, { + "SourceID": 55251, + "TargetID": 47234, + "Directional": false + }] + }, { + "ID": 1331, + "SourceStructureID": 606, + "TargetStructureID": 55403, + "Label": "606-55403 via Adherens from 53268 -> 55409, 53276 -> 55408", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 53268, + "TargetID": 55409, + "Directional": false + }, { + "SourceID": 53276, + "TargetID": 55408, + "Directional": false + }] + }, { + "ID": 1332, + "SourceStructureID": 606, + "TargetStructureID": 55403, + "Label": "606-55403 via Gap Junction from 53273 -> 55404", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53273, + "TargetID": 55404, + "Directional": false + }] + }, { + "ID": 1333, + "SourceStructureID": 606, + "TargetStructureID": 55517, + "Label": "606-55517 via Gap Junction from 53312 -> 55521, 55518 -> 53308", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53312, + "TargetID": 55521, + "Directional": false + }, { + "SourceID": 55518, + "TargetID": 53308, + "Directional": false + }] + }, { + "ID": 1334, + "SourceStructureID": 55610, + "TargetStructureID": 606, + "Label": "55610-606 via Gap Junction from 55614 -> 49676, 55615 -> 49675, 55616 -> 54164, 55867 -> 54170", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55614, + "TargetID": 49676, + "Directional": false + }, { + "SourceID": 55615, + "TargetID": 49675, + "Directional": false + }, { + "SourceID": 55616, + "TargetID": 54164, + "Directional": false + }, { + "SourceID": 55867, + "TargetID": 54170, + "Directional": false + }] + }, { + "ID": 1335, + "SourceStructureID": 59471, + "TargetStructureID": 606, + "Label": "59471-606 via Gap Junction from 89095 -> 51316", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89095, + "TargetID": 51316, + "Directional": false + }] + }, { + "ID": 1336, + "SourceStructureID": 59482, + "TargetStructureID": 606, + "Label": "59482-606 via Gap Junction from 59485 -> 51385, 89116 -> 51380, 89117 -> 51381", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59485, + "TargetID": 51385, + "Directional": false + }, { + "SourceID": 89116, + "TargetID": 51380, + "Directional": false + }, { + "SourceID": 89117, + "TargetID": 51381, + "Directional": false + }] + }, { + "ID": 1337, + "SourceStructureID": 59499, + "TargetStructureID": 606, + "Label": "59499-606 via Gap Junction from 59500 -> 53306, 90557 -> 53286", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59500, + "TargetID": 53306, + "Directional": false + }, { + "SourceID": 90557, + "TargetID": 53286, + "Directional": false + }] + }, { + "ID": 1338, + "SourceStructureID": 606, + "TargetStructureID": 65358, + "Label": "606-65358 via Adherens from 47477 -> 65361", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 47477, + "TargetID": 65361, + "Directional": false + }] + }, { + "ID": 1339, + "SourceStructureID": 606, + "TargetStructureID": 66665, + "Label": "606-66665 via Adherens from 53383 -> 66666", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 53383, + "TargetID": 66666, + "Directional": false + }] + }, { + "ID": 1340, + "SourceStructureID": 606, + "TargetStructureID": 70454, + "Label": "606-70454 via Gap Junction from 51539 -> 89552", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51539, + "TargetID": 89552, + "Directional": false + }] + }, { + "ID": 1341, + "SourceStructureID": 78909, + "TargetStructureID": 606, + "Label": "78909-606 via Gap Junction from 87508 -> 47478", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87508, + "TargetID": 47478, + "Directional": false + }] + }, { + "ID": 1342, + "SourceStructureID": 80182, + "TargetStructureID": 606, + "Label": "80182-606 via Gap Junction from 88940 -> 50900", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88940, + "TargetID": 50900, + "Directional": false + }] + }, { + "ID": 1343, + "SourceStructureID": 80600, + "TargetStructureID": 606, + "Label": "80600-606 via Gap Junction from 89061 -> 51721", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89061, + "TargetID": 51721, + "Directional": false + }] + }, { + "ID": 1344, + "SourceStructureID": 82887, + "TargetStructureID": 606, + "Label": "82887-606 via Gap Junction from 87133 -> 45165", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87133, + "TargetID": 45165, + "Directional": false + }] + }, { + "ID": 1345, + "SourceStructureID": 87130, + "TargetStructureID": 606, + "Label": "87130-606 via Gap Junction from 87131 -> 10698", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87131, + "TargetID": 10698, + "Directional": false + }] + }, { + "ID": 1346, + "SourceStructureID": 87141, + "TargetStructureID": 606, + "Label": "87141-606 via Gap Junction from 87142 -> 45500", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87142, + "TargetID": 45500, + "Directional": false + }] + }, { + "ID": 1347, + "SourceStructureID": 606, + "TargetStructureID": 87143, + "Label": "606-87143 via Gap Junction from 45546 -> 87144", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45546, + "TargetID": 87144, + "Directional": false + }] + }, { + "ID": 1348, + "SourceStructureID": 87145, + "TargetStructureID": 606, + "Label": "87145-606 via Gap Junction from 87146 -> 45592", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87146, + "TargetID": 45592, + "Directional": false + }] + }, { + "ID": 1349, + "SourceStructureID": 606, + "TargetStructureID": 87162, + "Label": "606-87162 via Gap Junction from 45692 -> 87163", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45692, + "TargetID": 87163, + "Directional": false + }] + }, { + "ID": 1350, + "SourceStructureID": 87172, + "TargetStructureID": 606, + "Label": "87172-606 via Gap Junction from 87175 -> 45745", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87175, + "TargetID": 45745, + "Directional": false + }] + }, { + "ID": 1351, + "SourceStructureID": 87176, + "TargetStructureID": 606, + "Label": "87176-606 via Gap Junction from 87177 -> 45746", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87177, + "TargetID": 45746, + "Directional": false + }] + }, { + "ID": 1352, + "SourceStructureID": 606, + "TargetStructureID": 87178, + "Label": "606-87178 via Gap Junction from 46028 -> 87181, 87180 -> 46027, 87182 -> 46601", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46028, + "TargetID": 87181, + "Directional": false + }, { + "SourceID": 87180, + "TargetID": 46027, + "Directional": false + }, { + "SourceID": 87182, + "TargetID": 46601, + "Directional": false + }] + }, { + "ID": 1353, + "SourceStructureID": 87183, + "TargetStructureID": 606, + "Label": "87183-606 via Gap Junction from 87184 -> 46406", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87184, + "TargetID": 46406, + "Directional": false + }] + }, { + "ID": 1354, + "SourceStructureID": 87224, + "TargetStructureID": 606, + "Label": "87224-606 via Gap Junction from 87225 -> 46470, 87241 -> 46587", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87225, + "TargetID": 46470, + "Directional": false + }, { + "SourceID": 87241, + "TargetID": 46587, + "Directional": false + }] + }, { + "ID": 1355, + "SourceStructureID": 606, + "TargetStructureID": 87231, + "Label": "606-87231 via Gap Junction from 46485 -> 87232", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46485, + "TargetID": 87232, + "Directional": false + }] + }, { + "ID": 1356, + "SourceStructureID": 87247, + "TargetStructureID": 606, + "Label": "87247-606 via Gap Junction from 87248 -> 46614", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87248, + "TargetID": 46614, + "Directional": false + }] + }, { + "ID": 1357, + "SourceStructureID": 606, + "TargetStructureID": 87249, + "Label": "606-87249 via Adherens from 87257 -> 87256", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87257, + "TargetID": 87256, + "Directional": false + }] + }, { + "ID": 1358, + "SourceStructureID": 87249, + "TargetStructureID": 606, + "Label": "87249-606 via Gap Junction from 87250 -> 46635", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87250, + "TargetID": 46635, + "Directional": false + }] + }, { + "ID": 1359, + "SourceStructureID": 87268, + "TargetStructureID": 606, + "Label": "87268-606 via Gap Junction from 87269 -> 47249", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87269, + "TargetID": 47249, + "Directional": false + }] + }, { + "ID": 1360, + "SourceStructureID": 87277, + "TargetStructureID": 606, + "Label": "87277-606 via Gap Junction from 87278 -> 47300", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87278, + "TargetID": 47300, + "Directional": false + }] + }, { + "ID": 1361, + "SourceStructureID": 87294, + "TargetStructureID": 606, + "Label": "87294-606 via Gap Junction from 87295 -> 47306", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87295, + "TargetID": 47306, + "Directional": false + }] + }, { + "ID": 1362, + "SourceStructureID": 87342, + "TargetStructureID": 606, + "Label": "87342-606 via Gap Junction from 87343 -> 47372", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87343, + "TargetID": 47372, + "Directional": false + }] + }, { + "ID": 1363, + "SourceStructureID": 87408, + "TargetStructureID": 606, + "Label": "87408-606 via Adherens from 87410 -> 87411", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87410, + "TargetID": 87411, + "Directional": false + }] + }, { + "ID": 1364, + "SourceStructureID": 87408, + "TargetStructureID": 606, + "Label": "87408-606 via Gap Junction from 87409 -> 47429", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87409, + "TargetID": 47429, + "Directional": false + }] + }, { + "ID": 1365, + "SourceStructureID": 606, + "TargetStructureID": 87413, + "Label": "606-87413 via Gap Junction from 47454 -> 87416", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47454, + "TargetID": 87416, + "Directional": false + }] + }, { + "ID": 1366, + "SourceStructureID": 606, + "TargetStructureID": 87432, + "Label": "606-87432 via Gap Junction from 47462 -> 87434", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47462, + "TargetID": 87434, + "Directional": false + }] + }, { + "ID": 1367, + "SourceStructureID": 87487, + "TargetStructureID": 606, + "Label": "87487-606 via Gap Junction from 87489 -> 47469", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87489, + "TargetID": 47469, + "Directional": false + }] + }, { + "ID": 1368, + "SourceStructureID": 88246, + "TargetStructureID": 606, + "Label": "88246-606 via Adherens from 88249 -> 47877", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88249, + "TargetID": 47877, + "Directional": false + }] + }, { + "ID": 1369, + "SourceStructureID": 88246, + "TargetStructureID": 606, + "Label": "88246-606 via Gap Junction from 88248 -> 47625", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88248, + "TargetID": 47625, + "Directional": false + }] + }, { + "ID": 1370, + "SourceStructureID": 88260, + "TargetStructureID": 606, + "Label": "88260-606 via Gap Junction from 88264 -> 47749", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88264, + "TargetID": 47749, + "Directional": false + }] + }, { + "ID": 1371, + "SourceStructureID": 88327, + "TargetStructureID": 606, + "Label": "88327-606 via Gap Junction from 88328 -> 47995", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88328, + "TargetID": 47995, + "Directional": false + }] + }, { + "ID": 1372, + "SourceStructureID": 88344, + "TargetStructureID": 606, + "Label": "88344-606 via Adherens from 88347 -> 88348", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88347, + "TargetID": 88348, + "Directional": false + }] + }, { + "ID": 1373, + "SourceStructureID": 88344, + "TargetStructureID": 606, + "Label": "88344-606 via Gap Junction from 88350 -> 48314", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88350, + "TargetID": 48314, + "Directional": false + }] + }, { + "ID": 1374, + "SourceStructureID": 88354, + "TargetStructureID": 606, + "Label": "88354-606 via Gap Junction from 88355 -> 48322", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88355, + "TargetID": 48322, + "Directional": false + }] + }, { + "ID": 1375, + "SourceStructureID": 606, + "TargetStructureID": 88365, + "Label": "606-88365 via Gap Junction from 51981 -> 88385, 88381 -> 48323, 88388 -> 51993", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51981, + "TargetID": 88385, + "Directional": false + }, { + "SourceID": 88381, + "TargetID": 48323, + "Directional": false + }, { + "SourceID": 88388, + "TargetID": 51993, + "Directional": false + }] + }, { + "ID": 1376, + "SourceStructureID": 88395, + "TargetStructureID": 606, + "Label": "88395-606 via Gap Junction from 88422 -> 48324", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88422, + "TargetID": 48324, + "Directional": false + }] + }, { + "ID": 1377, + "SourceStructureID": 88459, + "TargetStructureID": 606, + "Label": "88459-606 via Gap Junction from 88460 -> 48330", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88460, + "TargetID": 48330, + "Directional": false + }] + }, { + "ID": 1378, + "SourceStructureID": 88565, + "TargetStructureID": 606, + "Label": "88565-606 via Gap Junction from 88567 -> 48508", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88567, + "TargetID": 48508, + "Directional": false + }] + }, { + "ID": 1379, + "SourceStructureID": 88594, + "TargetStructureID": 606, + "Label": "88594-606 via Gap Junction from 88595 -> 48797", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88595, + "TargetID": 48797, + "Directional": false + }] + }, { + "ID": 1380, + "SourceStructureID": 88621, + "TargetStructureID": 606, + "Label": "88621-606 via Adherens from 88622 -> 88620", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88622, + "TargetID": 88620, + "Directional": false + }] + }, { + "ID": 1381, + "SourceStructureID": 88621, + "TargetStructureID": 606, + "Label": "88621-606 via Gap Junction from 88623 -> 48955", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88623, + "TargetID": 48955, + "Directional": false + }] + }, { + "ID": 1382, + "SourceStructureID": 88628, + "TargetStructureID": 606, + "Label": "88628-606 via Gap Junction from 88629 -> 49024", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88629, + "TargetID": 49024, + "Directional": false + }] + }, { + "ID": 1383, + "SourceStructureID": 606, + "TargetStructureID": 88630, + "Label": "606-88630 via Adherens from 88633 -> 88632", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88633, + "TargetID": 88632, + "Directional": false + }] + }, { + "ID": 1384, + "SourceStructureID": 88630, + "TargetStructureID": 606, + "Label": "88630-606 via Gap Junction from 88631 -> 49026", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88631, + "TargetID": 49026, + "Directional": false + }] + }, { + "ID": 1385, + "SourceStructureID": 88642, + "TargetStructureID": 606, + "Label": "88642-606 via Gap Junction from 88643 -> 49556", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88643, + "TargetID": 49556, + "Directional": false + }] + }, { + "ID": 1386, + "SourceStructureID": 88646, + "TargetStructureID": 606, + "Label": "88646-606 via Adherens from 88649 -> 53851, 88652 -> 53862, 88653 -> 53863", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88649, + "TargetID": 53851, + "Directional": false + }, { + "SourceID": 88652, + "TargetID": 53862, + "Directional": false + }, { + "SourceID": 88653, + "TargetID": 53863, + "Directional": false + }] + }, { + "ID": 1387, + "SourceStructureID": 88646, + "TargetStructureID": 606, + "Label": "88646-606 via Gap Junction from 88647 -> 53850, 88648 -> 49592", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88647, + "TargetID": 53850, + "Directional": false + }, { + "SourceID": 88648, + "TargetID": 49592, + "Directional": false + }] + }, { + "ID": 1388, + "SourceStructureID": 88661, + "TargetStructureID": 606, + "Label": "88661-606 via Adherens from 88663 -> 49593", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88663, + "TargetID": 49593, + "Directional": false + }] + }, { + "ID": 1389, + "SourceStructureID": 88661, + "TargetStructureID": 606, + "Label": "88661-606 via Gap Junction from 88662 -> 49594", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88662, + "TargetID": 49594, + "Directional": false + }] + }, { + "ID": 1390, + "SourceStructureID": 606, + "TargetStructureID": 88666, + "Label": "606-88666 via Gap Junction from 49609 -> 88667", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49609, + "TargetID": 88667, + "Directional": false + }] + }, { + "ID": 1391, + "SourceStructureID": 88730, + "TargetStructureID": 606, + "Label": "88730-606 via Gap Junction from 88732 -> 49622", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88732, + "TargetID": 49622, + "Directional": false + }] + }, { + "ID": 1392, + "SourceStructureID": 606, + "TargetStructureID": 88737, + "Label": "606-88737 via Gap Junction from 54159 -> 88750, 88738 -> 49625, 88744 -> 54158", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54159, + "TargetID": 88750, + "Directional": false + }, { + "SourceID": 88738, + "TargetID": 49625, + "Directional": false + }, { + "SourceID": 88744, + "TargetID": 54158, + "Directional": false + }] + }, { + "ID": 1393, + "SourceStructureID": 606, + "TargetStructureID": 88762, + "Label": "606-88762 via Adherens from 54216 -> 88768", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54216, + "TargetID": 88768, + "Directional": false + }] + }, { + "ID": 1394, + "SourceStructureID": 88762, + "TargetStructureID": 606, + "Label": "88762-606 via Gap Junction from 88765 -> 49684, 88807 -> 54217", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88765, + "TargetID": 49684, + "Directional": false + }, { + "SourceID": 88807, + "TargetID": 54217, + "Directional": false + }] + }, { + "ID": 1395, + "SourceStructureID": 88808, + "TargetStructureID": 606, + "Label": "88808-606 via Gap Junction from 88809 -> 49794", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88809, + "TargetID": 49794, + "Directional": false + }] + }, { + "ID": 1396, + "SourceStructureID": 88941, + "TargetStructureID": 606, + "Label": "88941-606 via Adherens from 88943 -> 53540", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88943, + "TargetID": 53540, + "Directional": false + }] + }, { + "ID": 1397, + "SourceStructureID": 88941, + "TargetStructureID": 606, + "Label": "88941-606 via Gap Junction from 88942 -> 50904", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88942, + "TargetID": 50904, + "Directional": false + }] + }, { + "ID": 1398, + "SourceStructureID": 88981, + "TargetStructureID": 606, + "Label": "88981-606 via Gap Junction from 88983 -> 51018", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88983, + "TargetID": 51018, + "Directional": false + }] + }, { + "ID": 1399, + "SourceStructureID": 88984, + "TargetStructureID": 606, + "Label": "88984-606 via Gap Junction from 88990 -> 51074", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88990, + "TargetID": 51074, + "Directional": false + }] + }, { + "ID": 1400, + "SourceStructureID": 606, + "TargetStructureID": 89039, + "Label": "606-89039 via Gap Junction from 51189 -> 89040", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51189, + "TargetID": 89040, + "Directional": false + }] + }, { + "ID": 1401, + "SourceStructureID": 89071, + "TargetStructureID": 606, + "Label": "89071-606 via Gap Junction from 89074 -> 51225", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89074, + "TargetID": 51225, + "Directional": false + }] + }, { + "ID": 1402, + "SourceStructureID": 89093, + "TargetStructureID": 606, + "Label": "89093-606 via Gap Junction from 89094 -> 51243", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89094, + "TargetID": 51243, + "Directional": false + }] + }, { + "ID": 1403, + "SourceStructureID": 89107, + "TargetStructureID": 606, + "Label": "89107-606 via Gap Junction from 89108 -> 51354", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89108, + "TargetID": 51354, + "Directional": false + }] + }, { + "ID": 1404, + "SourceStructureID": 89113, + "TargetStructureID": 606, + "Label": "89113-606 via Gap Junction from 89114 -> 51344", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89114, + "TargetID": 51344, + "Directional": false + }] + }, { + "ID": 1405, + "SourceStructureID": 89124, + "TargetStructureID": 606, + "Label": "89124-606 via Gap Junction from 89125 -> 51494, 89542 -> 51497", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89125, + "TargetID": 51494, + "Directional": false + }, { + "SourceID": 89542, + "TargetID": 51497, + "Directional": false + }] + }, { + "ID": 1406, + "SourceStructureID": 89543, + "TargetStructureID": 606, + "Label": "89543-606 via Gap Junction from 89551 -> 51515", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89551, + "TargetID": 51515, + "Directional": false + }] + }, { + "ID": 1407, + "SourceStructureID": 606, + "TargetStructureID": 89567, + "Label": "606-89567 via Gap Junction from 51586 -> 89568", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51586, + "TargetID": 89568, + "Directional": false + }] + }, { + "ID": 1408, + "SourceStructureID": 89569, + "TargetStructureID": 606, + "Label": "89569-606 via Gap Junction from 89570 -> 51601", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89570, + "TargetID": 51601, + "Directional": false + }] + }, { + "ID": 1409, + "SourceStructureID": 89571, + "TargetStructureID": 606, + "Label": "89571-606 via Gap Junction from 89576 -> 51620", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89576, + "TargetID": 51620, + "Directional": false + }] + }, { + "ID": 1410, + "SourceStructureID": 89577, + "TargetStructureID": 606, + "Label": "89577-606 via Gap Junction from 89578 -> 51638", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89578, + "TargetID": 51638, + "Directional": false + }] + }, { + "ID": 1411, + "SourceStructureID": 89582, + "TargetStructureID": 606, + "Label": "89582-606 via Adherens from 89584 -> 89585", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89584, + "TargetID": 89585, + "Directional": false + }] + }, { + "ID": 1412, + "SourceStructureID": 89582, + "TargetStructureID": 606, + "Label": "89582-606 via Gap Junction from 89583 -> 51664", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89583, + "TargetID": 51664, + "Directional": false + }] + }, { + "ID": 1413, + "SourceStructureID": 606, + "TargetStructureID": 89586, + "Label": "606-89586 via Gap Junction from 51698 -> 89588", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51698, + "TargetID": 89588, + "Directional": false + }] + }, { + "ID": 1414, + "SourceStructureID": 89638, + "TargetStructureID": 606, + "Label": "89638-606 via Gap Junction from 89639 -> 51798", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89639, + "TargetID": 51798, + "Directional": false + }] + }, { + "ID": 1415, + "SourceStructureID": 89677, + "TargetStructureID": 606, + "Label": "89677-606 via Adherens from 89683 -> 51971", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89683, + "TargetID": 51971, + "Directional": false + }] + }, { + "ID": 1416, + "SourceStructureID": 89677, + "TargetStructureID": 606, + "Label": "89677-606 via Gap Junction from 89680 -> 51962, 89681 -> 51969", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89680, + "TargetID": 51962, + "Directional": false + }, { + "SourceID": 89681, + "TargetID": 51969, + "Directional": false + }] + }, { + "ID": 1417, + "SourceStructureID": 89775, + "TargetStructureID": 606, + "Label": "89775-606 via Adherens from 89777 -> 89778", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89777, + "TargetID": 89778, + "Directional": false + }] + }, { + "ID": 1418, + "SourceStructureID": 89775, + "TargetStructureID": 606, + "Label": "89775-606 via Gap Junction from 89776 -> 51973", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89776, + "TargetID": 51973, + "Directional": false + }] + }, { + "ID": 1419, + "SourceStructureID": 89811, + "TargetStructureID": 606, + "Label": "89811-606 via Gap Junction from 89812 -> 52338", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89812, + "TargetID": 52338, + "Directional": false + }] + }, { + "ID": 1420, + "SourceStructureID": 89820, + "TargetStructureID": 606, + "Label": "89820-606 via Gap Junction from 89821 -> 52345", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89821, + "TargetID": 52345, + "Directional": false + }] + }, { + "ID": 1421, + "SourceStructureID": 89827, + "TargetStructureID": 606, + "Label": "89827-606 via Gap Junction from 89828 -> 52372", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89828, + "TargetID": 52372, + "Directional": false + }] + }, { + "ID": 1422, + "SourceStructureID": 89831, + "TargetStructureID": 606, + "Label": "89831-606 via Gap Junction from 89844 -> 52574", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89844, + "TargetID": 52574, + "Directional": false + }] + }, { + "ID": 1423, + "SourceStructureID": 89845, + "TargetStructureID": 606, + "Label": "89845-606 via Gap Junction from 89847 -> 52610", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89847, + "TargetID": 52610, + "Directional": false + }] + }, { + "ID": 1424, + "SourceStructureID": 89848, + "TargetStructureID": 606, + "Label": "89848-606 via Gap Junction from 89849 -> 52617", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89849, + "TargetID": 52617, + "Directional": false + }] + }, { + "ID": 1425, + "SourceStructureID": 89851, + "TargetStructureID": 606, + "Label": "89851-606 via Gap Junction from 89852 -> 52671", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89852, + "TargetID": 52671, + "Directional": false + }] + }, { + "ID": 1426, + "SourceStructureID": 89989, + "TargetStructureID": 606, + "Label": "89989-606 via Gap Junction from 89990 -> 52720", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89990, + "TargetID": 52720, + "Directional": false + }] + }, { + "ID": 1427, + "SourceStructureID": 90111, + "TargetStructureID": 606, + "Label": "90111-606 via Gap Junction from 90116 -> 52819", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90116, + "TargetID": 52819, + "Directional": false + }] + }, { + "ID": 1428, + "SourceStructureID": 90118, + "TargetStructureID": 606, + "Label": "90118-606 via Gap Junction from 90128 -> 52844", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90128, + "TargetID": 52844, + "Directional": false + }] + }, { + "ID": 1429, + "SourceStructureID": 90151, + "TargetStructureID": 606, + "Label": "90151-606 via Adherens from 90153 -> 52916", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90153, + "TargetID": 52916, + "Directional": false + }] + }, { + "ID": 1430, + "SourceStructureID": 90151, + "TargetStructureID": 606, + "Label": "90151-606 via Gap Junction from 90152 -> 52954", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90152, + "TargetID": 52954, + "Directional": false + }] + }, { + "ID": 1431, + "SourceStructureID": 90466, + "TargetStructureID": 606, + "Label": "90466-606 via Gap Junction from 90467 -> 53093", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90467, + "TargetID": 53093, + "Directional": false + }] + }, { + "ID": 1432, + "SourceStructureID": 90475, + "TargetStructureID": 606, + "Label": "90475-606 via Gap Junction from 90479 -> 53098", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90479, + "TargetID": 53098, + "Directional": false + }] + }, { + "ID": 1433, + "SourceStructureID": 90519, + "TargetStructureID": 606, + "Label": "90519-606 via Gap Junction from 90520 -> 53099", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90520, + "TargetID": 53099, + "Directional": false + }] + }, { + "ID": 1434, + "SourceStructureID": 90528, + "TargetStructureID": 606, + "Label": "90528-606 via Gap Junction from 90529 -> 53109", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90529, + "TargetID": 53109, + "Directional": false + }] + }, { + "ID": 1435, + "SourceStructureID": 606, + "TargetStructureID": 90530, + "Label": "606-90530 via Adherens from 90534 -> 90532", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90534, + "TargetID": 90532, + "Directional": false + }] + }, { + "ID": 1436, + "SourceStructureID": 90530, + "TargetStructureID": 606, + "Label": "90530-606 via Gap Junction from 90531 -> 53113", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90531, + "TargetID": 53113, + "Directional": false + }] + }, { + "ID": 1437, + "SourceStructureID": 90535, + "TargetStructureID": 606, + "Label": "90535-606 via Gap Junction from 90536 -> 53277", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90536, + "TargetID": 53277, + "Directional": false + }] + }, { + "ID": 1438, + "SourceStructureID": 91507, + "TargetStructureID": 606, + "Label": "91507-606 via Adherens from 91508 -> 51737", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91508, + "TargetID": 51737, + "Directional": false + }] + }, { + "ID": 1439, + "SourceStructureID": 608, + "TargetStructureID": 7054, + "Label": "608-7054 via Touch from 43248 -> 43247", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 43248, + "TargetID": 43247, + "Directional": false + }] + }, { + "ID": 1440, + "SourceStructureID": 906, + "TargetStructureID": 7568, + "Label": "906-7568 via Adherens from 27038 -> 27037", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 27038, + "TargetID": 27037, + "Directional": false + }] + }, { + "ID": 1441, + "SourceStructureID": 909, + "TargetStructureID": 909, + "Label": "909-909 via Gap Junction from 131057 -> 131059", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131057, + "TargetID": 131059, + "Directional": false + }] + }, { + "ID": 1442, + "SourceStructureID": 909, + "TargetStructureID": 909, + "Label": "909-909 via Touch from 117455 -> 130134", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 117455, + "TargetID": 130134, + "Directional": false + }] + }, { + "ID": 1443, + "SourceStructureID": 909, + "TargetStructureID": 1637, + "Label": "909-1637 via Gap Junction from 115903 -> 129571, 129580 -> 129581, 129583 -> 129582", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115903, + "TargetID": 129571, + "Directional": false + }, { + "SourceID": 129580, + "TargetID": 129581, + "Directional": false + }, { + "SourceID": 129583, + "TargetID": 129582, + "Directional": false + }] + }, { + "ID": 1444, + "SourceStructureID": 3679, + "TargetStructureID": 909, + "Label": "3679-909 via Touch from 135798 -> 135797", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 135798, + "TargetID": 135797, + "Directional": false + }] + }, { + "ID": 1445, + "SourceStructureID": 5279, + "TargetStructureID": 909, + "Label": "5279-909 via Adherens from 115910 -> 115909", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115910, + "TargetID": 115909, + "Directional": false + }] + }, { + "ID": 1446, + "SourceStructureID": 909, + "TargetStructureID": 5279, + "Label": "909-5279 via Gap Junction from 92559 -> 92558, 129578 -> 129577, 129614 -> 147694, 129971 -> 129972", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92559, + "TargetID": 92558, + "Directional": false + }, { + "SourceID": 129578, + "TargetID": 129577, + "Directional": false + }, { + "SourceID": 129614, + "TargetID": 147694, + "Directional": false + }, { + "SourceID": 129971, + "TargetID": 129972, + "Directional": false + }] + }, { + "ID": 1447, + "SourceStructureID": 909, + "TargetStructureID": 5282, + "Label": "909-5282 via Adherens from 117265 -> 117266, 118620 -> 131088, 130222 -> 130221, 136339 -> 118495", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117265, + "TargetID": 117266, + "Directional": false + }, { + "SourceID": 118620, + "TargetID": 131088, + "Directional": false + }, { + "SourceID": 130222, + "TargetID": 130221, + "Directional": false + }, { + "SourceID": 136339, + "TargetID": 118495, + "Directional": false + }] + }, { + "ID": 1448, + "SourceStructureID": 5282, + "TargetStructureID": 909, + "Label": "5282-909 via Gap Junction from 87559 -> 87558, 131086 -> 131087, 136338 -> 130894, 136349 -> 136350", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87559, + "TargetID": 87558, + "Directional": false + }, { + "SourceID": 131086, + "TargetID": 131087, + "Directional": false + }, { + "SourceID": 136338, + "TargetID": 130894, + "Directional": false + }, { + "SourceID": 136349, + "TargetID": 136350, + "Directional": false + }] + }, { + "ID": 1449, + "SourceStructureID": 5282, + "TargetStructureID": 909, + "Label": "5282-909 via Unknown from 124663 -> 124664, 130293 -> 117695, 131073 -> 131074", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124663, + "TargetID": 124664, + "Directional": false + }, { + "SourceID": 130293, + "TargetID": 117695, + "Directional": false + }, { + "SourceID": 131073, + "TargetID": 131074, + "Directional": false + }] + }, { + "ID": 1450, + "SourceStructureID": 909, + "TargetStructureID": 5284, + "Label": "909-5284 via Adherens from 127891 -> 127892", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127891, + "TargetID": 127892, + "Directional": false + }] + }, { + "ID": 1451, + "SourceStructureID": 909, + "TargetStructureID": 5284, + "Label": "909-5284 via Gap Junction from 53737 -> 64336, 53784 -> 53785, 64601 -> 64602, 113603 -> 113602, 113640 -> 113639, 113645 -> 113644", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53737, + "TargetID": 64336, + "Directional": false + }, { + "SourceID": 53784, + "TargetID": 53785, + "Directional": false + }, { + "SourceID": 64601, + "TargetID": 64602, + "Directional": false + }, { + "SourceID": 113603, + "TargetID": 113602, + "Directional": false + }, { + "SourceID": 113640, + "TargetID": 113639, + "Directional": false + }, { + "SourceID": 113645, + "TargetID": 113644, + "Directional": false + }] + }, { + "ID": 1452, + "SourceStructureID": 5292, + "TargetStructureID": 909, + "Label": "5292-909 via Gap Junction from 130247 -> 130248", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130247, + "TargetID": 130248, + "Directional": false + }] + }, { + "ID": 1453, + "SourceStructureID": 5297, + "TargetStructureID": 909, + "Label": "5297-909 via Adherens from 116443 -> 117847", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116443, + "TargetID": 117847, + "Directional": false + }] + }, { + "ID": 1454, + "SourceStructureID": 5297, + "TargetStructureID": 909, + "Label": "5297-909 via Gap Junction from 121062 -> 121063, 130288 -> 130289", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121062, + "TargetID": 121063, + "Directional": false + }, { + "SourceID": 130288, + "TargetID": 130289, + "Directional": false + }] + }, { + "ID": 1455, + "SourceStructureID": 5405, + "TargetStructureID": 909, + "Label": "5405-909 via Unknown from 130138 -> 130137", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130138, + "TargetID": 130137, + "Directional": false + }] + }, { + "ID": 1456, + "SourceStructureID": 909, + "TargetStructureID": 5515, + "Label": "909-5515 via Touch from 136325 -> 136326", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 136325, + "TargetID": 136326, + "Directional": false + }] + }, { + "ID": 1457, + "SourceStructureID": 909, + "TargetStructureID": 5517, + "Label": "909-5517 via Adherens from 130968 -> 130969", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130968, + "TargetID": 130969, + "Directional": false + }] + }, { + "ID": 1458, + "SourceStructureID": 5517, + "TargetStructureID": 909, + "Label": "5517-909 via Gap Junction from 49484 -> 49485, 59117 -> 59115, 130856 -> 130857", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49484, + "TargetID": 49485, + "Directional": false + }, { + "SourceID": 59117, + "TargetID": 59115, + "Directional": false + }, { + "SourceID": 130856, + "TargetID": 130857, + "Directional": false + }] + }, { + "ID": 1459, + "SourceStructureID": 909, + "TargetStructureID": 5561, + "Label": "909-5561 via Adherens from 130082 -> 130083, 131003 -> 131004, 131075 -> 131076, 131094 -> 118629", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130082, + "TargetID": 130083, + "Directional": false + }, { + "SourceID": 131003, + "TargetID": 131004, + "Directional": false + }, { + "SourceID": 131075, + "TargetID": 131076, + "Directional": false + }, { + "SourceID": 131094, + "TargetID": 118629, + "Directional": false + }] + }, { + "ID": 1460, + "SourceStructureID": 909, + "TargetStructureID": 5561, + "Label": "909-5561 via Gap Junction from 53747 -> 97760, 53767 -> 117649, 96433 -> 96434, 97058 -> 97057, 97138 -> 97136, 97651 -> 97650, 97713 -> 97712, 113680 -> 113681, 119279 -> 119280, 130896 -> 130898, 130907 -> 130908, 130922 -> 130923, 131002 -> 131001, 131009 -> 131008, 131020 -> 131019, 131093 -> 131092", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53747, + "TargetID": 97760, + "Directional": false + }, { + "SourceID": 53767, + "TargetID": 117649, + "Directional": false + }, { + "SourceID": 96433, + "TargetID": 96434, + "Directional": false + }, { + "SourceID": 97058, + "TargetID": 97057, + "Directional": false + }, { + "SourceID": 97138, + "TargetID": 97136, + "Directional": false + }, { + "SourceID": 97651, + "TargetID": 97650, + "Directional": false + }, { + "SourceID": 97713, + "TargetID": 97712, + "Directional": false + }, { + "SourceID": 113680, + "TargetID": 113681, + "Directional": false + }, { + "SourceID": 119279, + "TargetID": 119280, + "Directional": false + }, { + "SourceID": 130896, + "TargetID": 130898, + "Directional": false + }, { + "SourceID": 130907, + "TargetID": 130908, + "Directional": false + }, { + "SourceID": 130922, + "TargetID": 130923, + "Directional": false + }, { + "SourceID": 131002, + "TargetID": 131001, + "Directional": false + }, { + "SourceID": 131009, + "TargetID": 131008, + "Directional": false + }, { + "SourceID": 131020, + "TargetID": 131019, + "Directional": false + }, { + "SourceID": 131093, + "TargetID": 131092, + "Directional": false + }] + }, { + "ID": 1461, + "SourceStructureID": 909, + "TargetStructureID": 7129, + "Label": "909-7129 via Unknown from 130297 -> 130296", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130297, + "TargetID": 130296, + "Directional": false + }] + }, { + "ID": 1462, + "SourceStructureID": 909, + "TargetStructureID": 14293, + "Label": "909-14293 via Touch from 130999 -> 131000", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 130999, + "TargetID": 131000, + "Directional": false + }] + }, { + "ID": 1463, + "SourceStructureID": 909, + "TargetStructureID": 16073, + "Label": "909-16073 via Unknown from 118400 -> 118401", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 118400, + "TargetID": 118401, + "Directional": false + }] + }, { + "ID": 1464, + "SourceStructureID": 20136, + "TargetStructureID": 909, + "Label": "20136-909 via Adherens from 128750 -> 128751", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128750, + "TargetID": 128751, + "Directional": false + }] + }, { + "ID": 1465, + "SourceStructureID": 909, + "TargetStructureID": 20136, + "Label": "909-20136 via Gap Junction from 110149 -> 110148, 115851 -> 115849, 130466 -> 130465", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 110149, + "TargetID": 110148, + "Directional": false + }, { + "SourceID": 115851, + "TargetID": 115849, + "Directional": false + }, { + "SourceID": 130466, + "TargetID": 130465, + "Directional": false + }] + }, { + "ID": 1466, + "SourceStructureID": 909, + "TargetStructureID": 20136, + "Label": "909-20136 via Touch from 130852 -> 130851", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 130852, + "TargetID": 130851, + "Directional": false + }] + }, { + "ID": 1467, + "SourceStructureID": 909, + "TargetStructureID": 32911, + "Label": "909-32911 via Unknown from 135775 -> 135774", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135775, + "TargetID": 135774, + "Directional": false + }] + }, { + "ID": 1468, + "SourceStructureID": 909, + "TargetStructureID": 55347, + "Label": "909-55347 via Adherens from 129964 -> 129963", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129964, + "TargetID": 129963, + "Directional": false + }] + }, { + "ID": 1469, + "SourceStructureID": 55347, + "TargetStructureID": 909, + "Label": "55347-909 via Gap Junction from 115957 -> 115955", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115957, + "TargetID": 115955, + "Directional": false + }] + }, { + "ID": 1470, + "SourceStructureID": 909, + "TargetStructureID": 59147, + "Label": "909-59147 via Adherens from 115848 -> 115847", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115848, + "TargetID": 115847, + "Directional": false + }] + }, { + "ID": 1471, + "SourceStructureID": 909, + "TargetStructureID": 61439, + "Label": "909-61439 via Unknown from 120086 -> 120087", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120086, + "TargetID": 120087, + "Directional": false + }] + }, { + "ID": 1472, + "SourceStructureID": 909, + "TargetStructureID": 62578, + "Label": "909-62578 via Unknown from 117654 -> 117655", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117654, + "TargetID": 117655, + "Directional": false + }] + }, { + "ID": 1473, + "SourceStructureID": 66942, + "TargetStructureID": 909, + "Label": "66942-909 via Unknown from 117254 -> 117253", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117254, + "TargetID": 117253, + "Directional": false + }] + }, { + "ID": 1474, + "SourceStructureID": 67057, + "TargetStructureID": 909, + "Label": "67057-909 via Unknown from 130850 -> 118470", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130850, + "TargetID": 118470, + "Directional": false + }] + }, { + "ID": 1475, + "SourceStructureID": 67112, + "TargetStructureID": 909, + "Label": "67112-909 via Adherens from 130836 -> 130835", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130836, + "TargetID": 130835, + "Directional": false + }] + }, { + "ID": 1476, + "SourceStructureID": 909, + "TargetStructureID": 67291, + "Label": "909-67291 via Unknown from 130029 -> 130028", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130029, + "TargetID": 130028, + "Directional": false + }] + }, { + "ID": 1477, + "SourceStructureID": 67777, + "TargetStructureID": 909, + "Label": "67777-909 via Unknown from 117808 -> 117807", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117808, + "TargetID": 117807, + "Directional": false + }] + }, { + "ID": 1478, + "SourceStructureID": 909, + "TargetStructureID": 68198, + "Label": "909-68198 via Unknown from 117922 -> 117923", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117922, + "TargetID": 117923, + "Directional": false + }] + }, { + "ID": 1479, + "SourceStructureID": 83925, + "TargetStructureID": 909, + "Label": "83925-909 via Adherens from 115960 -> 115959", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115960, + "TargetID": 115959, + "Directional": false + }] + }, { + "ID": 1480, + "SourceStructureID": 84624, + "TargetStructureID": 909, + "Label": "84624-909 via Unknown from 130027 -> 130026", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130027, + "TargetID": 130026, + "Directional": false + }] + }, { + "ID": 1481, + "SourceStructureID": 85551, + "TargetStructureID": 909, + "Label": "85551-909 via Adherens from 130845 -> 118468", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130845, + "TargetID": 118468, + "Directional": false + }] + }, { + "ID": 1482, + "SourceStructureID": 89119, + "TargetStructureID": 909, + "Label": "89119-909 via Unknown from 120163 -> 120162", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120163, + "TargetID": 120162, + "Directional": false + }] + }, { + "ID": 1483, + "SourceStructureID": 909, + "TargetStructureID": 96489, + "Label": "909-96489 via Adherens from 115951 -> 115961", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115951, + "TargetID": 115961, + "Directional": false + }] + }, { + "ID": 1484, + "SourceStructureID": 96943, + "TargetStructureID": 909, + "Label": "96943-909 via Adherens from 136343 -> 118506", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136343, + "TargetID": 118506, + "Directional": false + }] + }, { + "ID": 1485, + "SourceStructureID": 96943, + "TargetStructureID": 909, + "Label": "96943-909 via Gap Junction from 131007 -> 131006", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131007, + "TargetID": 131006, + "Directional": false + }] + }, { + "ID": 1486, + "SourceStructureID": 97113, + "TargetStructureID": 909, + "Label": "97113-909 via Unknown from 115963 -> 115962", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115963, + "TargetID": 115962, + "Directional": false + }] + }, { + "ID": 1487, + "SourceStructureID": 909, + "TargetStructureID": 97124, + "Label": "909-97124 via Unknown from 115964 -> 115965", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115964, + "TargetID": 115965, + "Directional": false + }] + }, { + "ID": 1488, + "SourceStructureID": 909, + "TargetStructureID": 97636, + "Label": "909-97636 via Adherens from 97640 -> 97639, 97642 -> 97641", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97640, + "TargetID": 97639, + "Directional": false + }, { + "SourceID": 97642, + "TargetID": 97641, + "Directional": false + }] + }, { + "ID": 1489, + "SourceStructureID": 99106, + "TargetStructureID": 909, + "Label": "99106-909 via Adherens from 115912 -> 115911, 129575 -> 129576", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115912, + "TargetID": 115911, + "Directional": false + }, { + "SourceID": 129575, + "TargetID": 129576, + "Directional": false + }] + }, { + "ID": 1490, + "SourceStructureID": 99106, + "TargetStructureID": 909, + "Label": "99106-909 via Gap Junction from 136369 -> 57020", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136369, + "TargetID": 57020, + "Directional": false + }] + }, { + "ID": 1491, + "SourceStructureID": 99440, + "TargetStructureID": 909, + "Label": "99440-909 via Adherens from 136329 -> 136328", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136329, + "TargetID": 136328, + "Directional": false + }] + }, { + "ID": 1492, + "SourceStructureID": 99440, + "TargetStructureID": 909, + "Label": "99440-909 via Gap Junction from 115906 -> 115904", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115906, + "TargetID": 115904, + "Directional": false + }] + }, { + "ID": 1493, + "SourceStructureID": 909, + "TargetStructureID": 113086, + "Label": "909-113086 via Unknown from 118384 -> 118386, 118387 -> 113108, 118393 -> 118394", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 118384, + "TargetID": 118386, + "Directional": false + }, { + "SourceID": 118387, + "TargetID": 113108, + "Directional": false + }, { + "SourceID": 118393, + "TargetID": 118394, + "Directional": false + }] + }, { + "ID": 1494, + "SourceStructureID": 115206, + "TargetStructureID": 909, + "Label": "115206-909 via Adherens from 117648 -> 117647", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117648, + "TargetID": 117647, + "Directional": false + }] + }, { + "ID": 1495, + "SourceStructureID": 115206, + "TargetStructureID": 909, + "Label": "115206-909 via Unknown from 117666 -> 117665, 130085 -> 130084", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117666, + "TargetID": 117665, + "Directional": false + }, { + "SourceID": 130085, + "TargetID": 130084, + "Directional": false + }] + }, { + "ID": 1496, + "SourceStructureID": 115860, + "TargetStructureID": 909, + "Label": "115860-909 via Adherens from 130463 -> 130464", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130463, + "TargetID": 130464, + "Directional": false + }] + }, { + "ID": 1497, + "SourceStructureID": 115870, + "TargetStructureID": 909, + "Label": "115870-909 via Adherens from 129490 -> 115869", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129490, + "TargetID": 115869, + "Directional": false + }] + }, { + "ID": 1498, + "SourceStructureID": 115870, + "TargetStructureID": 909, + "Label": "115870-909 via Unknown from 130844 -> 130843", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130844, + "TargetID": 130843, + "Directional": false + }] + }, { + "ID": 1499, + "SourceStructureID": 115875, + "TargetStructureID": 909, + "Label": "115875-909 via Adherens from 115876 -> 115874", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115876, + "TargetID": 115874, + "Directional": false + }] + }, { + "ID": 1500, + "SourceStructureID": 115890, + "TargetStructureID": 909, + "Label": "115890-909 via Adherens from 115891 -> 115892", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115891, + "TargetID": 115892, + "Directional": false + }] + }, { + "ID": 1501, + "SourceStructureID": 909, + "TargetStructureID": 115919, + "Label": "909-115919 via Unknown from 115918 -> 129579", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115918, + "TargetID": 129579, + "Directional": false + }] + }, { + "ID": 1502, + "SourceStructureID": 115935, + "TargetStructureID": 909, + "Label": "115935-909 via Adherens from 115936 -> 115934", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115936, + "TargetID": 115934, + "Directional": false + }] + }, { + "ID": 1503, + "SourceStructureID": 909, + "TargetStructureID": 115940, + "Label": "909-115940 via Unknown from 129612 -> 129613", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129612, + "TargetID": 129613, + "Directional": false + }] + }, { + "ID": 1504, + "SourceStructureID": 909, + "TargetStructureID": 115942, + "Label": "909-115942 via Adherens from 115938 -> 115943", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115938, + "TargetID": 115943, + "Directional": false + }] + }, { + "ID": 1505, + "SourceStructureID": 115946, + "TargetStructureID": 909, + "Label": "115946-909 via Unknown from 115948 -> 115947", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115948, + "TargetID": 115947, + "Directional": false + }] + }, { + "ID": 1506, + "SourceStructureID": 909, + "TargetStructureID": 115953, + "Label": "909-115953 via Adherens from 115952 -> 115958", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115952, + "TargetID": 115958, + "Directional": false + }] + }, { + "ID": 1507, + "SourceStructureID": 909, + "TargetStructureID": 115992, + "Label": "909-115992 via Adherens from 115993 -> 115994, 115995 -> 115996", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115993, + "TargetID": 115994, + "Directional": false + }, { + "SourceID": 115995, + "TargetID": 115996, + "Directional": false + }] + }, { + "ID": 1508, + "SourceStructureID": 909, + "TargetStructureID": 116368, + "Label": "909-116368 via Unknown from 116367 -> 130007", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116367, + "TargetID": 130007, + "Directional": false + }] + }, { + "ID": 1509, + "SourceStructureID": 116381, + "TargetStructureID": 909, + "Label": "116381-909 via Adherens from 116389 -> 116384", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116389, + "TargetID": 116384, + "Directional": false + }] + }, { + "ID": 1510, + "SourceStructureID": 116381, + "TargetStructureID": 909, + "Label": "116381-909 via Unknown from 116382 -> 116383", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116382, + "TargetID": 116383, + "Directional": false + }] + }, { + "ID": 1511, + "SourceStructureID": 909, + "TargetStructureID": 116762, + "Label": "909-116762 via Unknown from 116763 -> 116764", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116763, + "TargetID": 116764, + "Directional": false + }] + }, { + "ID": 1512, + "SourceStructureID": 909, + "TargetStructureID": 116778, + "Label": "909-116778 via Unknown from 116777 -> 116779", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116777, + "TargetID": 116779, + "Directional": false + }] + }, { + "ID": 1513, + "SourceStructureID": 117204, + "TargetStructureID": 909, + "Label": "117204-909 via Adherens from 117205 -> 117206, 131028 -> 118641", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117205, + "TargetID": 117206, + "Directional": false + }, { + "SourceID": 131028, + "TargetID": 118641, + "Directional": false + }] + }, { + "ID": 1514, + "SourceStructureID": 909, + "TargetStructureID": 117223, + "Label": "909-117223 via Adherens from 131068 -> 131069", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131068, + "TargetID": 131069, + "Directional": false + }] + }, { + "ID": 1515, + "SourceStructureID": 909, + "TargetStructureID": 117223, + "Label": "909-117223 via Unknown from 117222 -> 117230, 131030 -> 131029", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117222, + "TargetID": 117230, + "Directional": false + }, { + "SourceID": 131030, + "TargetID": 131029, + "Directional": false + }] + }, { + "ID": 1516, + "SourceStructureID": 909, + "TargetStructureID": 117236, + "Label": "909-117236 via Unknown from 117235 -> 117237", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117235, + "TargetID": 117237, + "Directional": false + }] + }, { + "ID": 1517, + "SourceStructureID": 117248, + "TargetStructureID": 909, + "Label": "117248-909 via Unknown from 117249 -> 117250", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117249, + "TargetID": 117250, + "Directional": false + }] + }, { + "ID": 1518, + "SourceStructureID": 909, + "TargetStructureID": 117287, + "Label": "909-117287 via Unknown from 117436 -> 117437", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117436, + "TargetID": 117437, + "Directional": false + }] + }, { + "ID": 1519, + "SourceStructureID": 117408, + "TargetStructureID": 909, + "Label": "117408-909 via Unknown from 117410 -> 117409, 117416 -> 117417", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117410, + "TargetID": 117409, + "Directional": false + }, { + "SourceID": 117416, + "TargetID": 117417, + "Directional": false + }] + }, { + "ID": 1520, + "SourceStructureID": 909, + "TargetStructureID": 117421, + "Label": "909-117421 via Adherens from 117420 -> 117423", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117420, + "TargetID": 117423, + "Directional": false + }] + }, { + "ID": 1521, + "SourceStructureID": 117431, + "TargetStructureID": 909, + "Label": "117431-909 via Unknown from 130238 -> 120165", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130238, + "TargetID": 120165, + "Directional": false + }] + }, { + "ID": 1522, + "SourceStructureID": 909, + "TargetStructureID": 117470, + "Label": "909-117470 via Adherens from 117474 -> 117475", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117474, + "TargetID": 117475, + "Directional": false + }] + }, { + "ID": 1523, + "SourceStructureID": 909, + "TargetStructureID": 117662, + "Label": "909-117662 via Unknown from 130127 -> 130128", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130127, + "TargetID": 130128, + "Directional": false + }] + }, { + "ID": 1524, + "SourceStructureID": 117673, + "TargetStructureID": 909, + "Label": "117673-909 via Unknown from 117674 -> 117675", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117674, + "TargetID": 117675, + "Directional": false + }] + }, { + "ID": 1525, + "SourceStructureID": 117678, + "TargetStructureID": 909, + "Label": "117678-909 via Unknown from 117688 -> 117687", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117688, + "TargetID": 117687, + "Directional": false + }] + }, { + "ID": 1526, + "SourceStructureID": 909, + "TargetStructureID": 117679, + "Label": "909-117679 via Adherens from 117681 -> 117682", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117681, + "TargetID": 117682, + "Directional": false + }] + }, { + "ID": 1527, + "SourceStructureID": 117683, + "TargetStructureID": 909, + "Label": "117683-909 via Adherens from 117684 -> 117458", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117684, + "TargetID": 117458, + "Directional": false + }] + }, { + "ID": 1528, + "SourceStructureID": 117800, + "TargetStructureID": 909, + "Label": "117800-909 via Adherens from 117801 -> 117799", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117801, + "TargetID": 117799, + "Directional": false + }] + }, { + "ID": 1529, + "SourceStructureID": 117803, + "TargetStructureID": 909, + "Label": "117803-909 via Adherens from 117804 -> 117802", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117804, + "TargetID": 117802, + "Directional": false + }] + }, { + "ID": 1530, + "SourceStructureID": 909, + "TargetStructureID": 117805, + "Label": "909-117805 via Adherens from 117790 -> 117806", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117790, + "TargetID": 117806, + "Directional": false + }] + }, { + "ID": 1531, + "SourceStructureID": 117813, + "TargetStructureID": 909, + "Label": "117813-909 via Unknown from 117814 -> 117810", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117814, + "TargetID": 117810, + "Directional": false + }] + }, { + "ID": 1532, + "SourceStructureID": 909, + "TargetStructureID": 117843, + "Label": "909-117843 via Unknown from 130286 -> 130287, 130290 -> 130291", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130286, + "TargetID": 130287, + "Directional": false + }, { + "SourceID": 130290, + "TargetID": 130291, + "Directional": false + }] + }, { + "ID": 1533, + "SourceStructureID": 117851, + "TargetStructureID": 909, + "Label": "117851-909 via Adherens from 130284 -> 130285", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130284, + "TargetID": 130285, + "Directional": false + }] + }, { + "ID": 1534, + "SourceStructureID": 909, + "TargetStructureID": 117854, + "Label": "909-117854 via Unknown from 130281 -> 130280", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130281, + "TargetID": 130280, + "Directional": false + }] + }, { + "ID": 1535, + "SourceStructureID": 117863, + "TargetStructureID": 909, + "Label": "117863-909 via Unknown from 117864 -> 117862", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117864, + "TargetID": 117862, + "Directional": false + }] + }, { + "ID": 1536, + "SourceStructureID": 117873, + "TargetStructureID": 909, + "Label": "117873-909 via Adherens from 117874 -> 53792", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117874, + "TargetID": 53792, + "Directional": false + }] + }, { + "ID": 1537, + "SourceStructureID": 909, + "TargetStructureID": 117876, + "Label": "909-117876 via Unknown from 117871 -> 117878", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117871, + "TargetID": 117878, + "Directional": false + }] + }, { + "ID": 1538, + "SourceStructureID": 909, + "TargetStructureID": 117892, + "Label": "909-117892 via Adherens from 117891 -> 117893", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117891, + "TargetID": 117893, + "Directional": false + }] + }, { + "ID": 1539, + "SourceStructureID": 117892, + "TargetStructureID": 909, + "Label": "117892-909 via Unknown from 117903 -> 117825, 130264 -> 130263", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117903, + "TargetID": 117825, + "Directional": false + }, { + "SourceID": 130264, + "TargetID": 130263, + "Directional": false + }] + }, { + "ID": 1540, + "SourceStructureID": 117904, + "TargetStructureID": 909, + "Label": "117904-909 via Unknown from 130258 -> 130257", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130258, + "TargetID": 130257, + "Directional": false + }] + }, { + "ID": 1541, + "SourceStructureID": 909, + "TargetStructureID": 117906, + "Label": "909-117906 via Adherens from 117823 -> 117907", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117823, + "TargetID": 117907, + "Directional": false + }] + }, { + "ID": 1542, + "SourceStructureID": 909, + "TargetStructureID": 118405, + "Label": "909-118405 via Adherens from 130303 -> 130304", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130303, + "TargetID": 130304, + "Directional": false + }] + }, { + "ID": 1543, + "SourceStructureID": 118405, + "TargetStructureID": 909, + "Label": "118405-909 via Unknown from 130301 -> 130300", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130301, + "TargetID": 130300, + "Directional": false + }] + }, { + "ID": 1544, + "SourceStructureID": 909, + "TargetStructureID": 118414, + "Label": "909-118414 via Unknown from 118408 -> 118415", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 118408, + "TargetID": 118415, + "Directional": false + }] + }, { + "ID": 1545, + "SourceStructureID": 909, + "TargetStructureID": 118449, + "Label": "909-118449 via Unknown from 118445 -> 118450", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 118445, + "TargetID": 118450, + "Directional": false + }] + }, { + "ID": 1546, + "SourceStructureID": 129610, + "TargetStructureID": 909, + "Label": "129610-909 via Unknown from 129611 -> 129609", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129611, + "TargetID": 129609, + "Directional": false + }] + }, { + "ID": 1547, + "SourceStructureID": 909, + "TargetStructureID": 130228, + "Label": "909-130228 via Unknown from 117392 -> 130230", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117392, + "TargetID": 130230, + "Directional": false + }] + }, { + "ID": 1548, + "SourceStructureID": 909, + "TargetStructureID": 136331, + "Label": "909-136331 via Gap Junction from 120188 -> 136332", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120188, + "TargetID": 136332, + "Directional": false + }] + }, { + "ID": 1549, + "SourceStructureID": 136331, + "TargetStructureID": 909, + "Label": "136331-909 via Unknown from 136336 -> 136335", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136336, + "TargetID": 136335, + "Directional": false + }] + }, { + "ID": 1550, + "SourceStructureID": 136884, + "TargetStructureID": 992, + "Label": "136884-992 via Gap Junction from 136890 -> 136889", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136890, + "TargetID": 136889, + "Directional": false + }] + }, { + "ID": 1551, + "SourceStructureID": 1021, + "TargetStructureID": 1021, + "Label": "1021-1021 via Adherens from 125245 -> 125244, 125315 -> 125316, 125412 -> 125413, 125516 -> 125517, 135754 -> 135753", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125245, + "TargetID": 125244, + "Directional": false + }, { + "SourceID": 125315, + "TargetID": 125316, + "Directional": false + }, { + "SourceID": 125412, + "TargetID": 125413, + "Directional": false + }, { + "SourceID": 125516, + "TargetID": 125517, + "Directional": false + }, { + "SourceID": 135754, + "TargetID": 135753, + "Directional": false + }] + }, { + "ID": 1552, + "SourceStructureID": 1021, + "TargetStructureID": 1021, + "Label": "1021-1021 via Gap Junction from 19759 -> 115346, 115350 -> 115344, 118162 -> 118163, 124939 -> 124940, 125081 -> 19780, 125110 -> 125111, 125153 -> 125154, 125252 -> 125251, 125345 -> 125339, 125360 -> 125364, 125514 -> 125515, 125690 -> 125689, 125753 -> 125752", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 19759, + "TargetID": 115346, + "Directional": false + }, { + "SourceID": 115350, + "TargetID": 115344, + "Directional": false + }, { + "SourceID": 118162, + "TargetID": 118163, + "Directional": false + }, { + "SourceID": 124939, + "TargetID": 124940, + "Directional": false + }, { + "SourceID": 125081, + "TargetID": 19780, + "Directional": false + }, { + "SourceID": 125110, + "TargetID": 125111, + "Directional": false + }, { + "SourceID": 125153, + "TargetID": 125154, + "Directional": false + }, { + "SourceID": 125252, + "TargetID": 125251, + "Directional": false + }, { + "SourceID": 125345, + "TargetID": 125339, + "Directional": false + }, { + "SourceID": 125360, + "TargetID": 125364, + "Directional": false + }, { + "SourceID": 125514, + "TargetID": 125515, + "Directional": false + }, { + "SourceID": 125690, + "TargetID": 125689, + "Directional": false + }, { + "SourceID": 125753, + "TargetID": 125752, + "Directional": false + }] + }, { + "ID": 1553, + "SourceStructureID": 1021, + "TargetStructureID": 3756, + "Label": "1021-3756 via Gap Junction from 19783 -> 56518, 124934 -> 124935, 128797 -> 128796", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 19783, + "TargetID": 56518, + "Directional": false + }, { + "SourceID": 124934, + "TargetID": 124935, + "Directional": false + }, { + "SourceID": 128797, + "TargetID": 128796, + "Directional": false + }] + }, { + "ID": 1554, + "SourceStructureID": 5650, + "TargetStructureID": 1021, + "Label": "5650-1021 via Adherens from 61079 -> 61078, 124876 -> 124875, 126791 -> 126790, 126792 -> 126793, 126794 -> 126795, 126848 -> 103030", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 61079, + "TargetID": 61078, + "Directional": false + }, { + "SourceID": 124876, + "TargetID": 124875, + "Directional": false + }, { + "SourceID": 126791, + "TargetID": 126790, + "Directional": false + }, { + "SourceID": 126792, + "TargetID": 126793, + "Directional": false + }, { + "SourceID": 126794, + "TargetID": 126795, + "Directional": false + }, { + "SourceID": 126848, + "TargetID": 103030, + "Directional": false + }] + }, { + "ID": 1555, + "SourceStructureID": 5650, + "TargetStructureID": 1021, + "Label": "5650-1021 via Gap Junction from 39022 -> 39021, 52604 -> 52603, 61072 -> 61071, 61075 -> 28363, 61106 -> 61105, 103027 -> 103028, 104076 -> 104075, 105057 -> 105056, 105066 -> 105065, 105085 -> 105086, 106368 -> 29930, 118191 -> 118190, 124975 -> 124976, 125086 -> 125087", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 39022, + "TargetID": 39021, + "Directional": false + }, { + "SourceID": 52604, + "TargetID": 52603, + "Directional": false + }, { + "SourceID": 61072, + "TargetID": 61071, + "Directional": false + }, { + "SourceID": 61075, + "TargetID": 28363, + "Directional": false + }, { + "SourceID": 61106, + "TargetID": 61105, + "Directional": false + }, { + "SourceID": 103027, + "TargetID": 103028, + "Directional": false + }, { + "SourceID": 104076, + "TargetID": 104075, + "Directional": false + }, { + "SourceID": 105057, + "TargetID": 105056, + "Directional": false + }, { + "SourceID": 105066, + "TargetID": 105065, + "Directional": false + }, { + "SourceID": 105085, + "TargetID": 105086, + "Directional": false + }, { + "SourceID": 106368, + "TargetID": 29930, + "Directional": false + }, { + "SourceID": 118191, + "TargetID": 118190, + "Directional": false + }, { + "SourceID": 124975, + "TargetID": 124976, + "Directional": false + }, { + "SourceID": 125086, + "TargetID": 125087, + "Directional": false + }] + }, { + "ID": 1556, + "SourceStructureID": 6047, + "TargetStructureID": 1021, + "Label": "6047-1021 via Adherens from 125529 -> 125530, 135750 -> 135749", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125529, + "TargetID": 125530, + "Directional": false + }, { + "SourceID": 135750, + "TargetID": 135749, + "Directional": false + }] + }, { + "ID": 1557, + "SourceStructureID": 1021, + "TargetStructureID": 6047, + "Label": "1021-6047 via Gap Junction from 19747 -> 19703, 112119 -> 112118, 113143 -> 113146, 113239 -> 113232, 124994 -> 124993", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 19747, + "TargetID": 19703, + "Directional": false + }, { + "SourceID": 112119, + "TargetID": 112118, + "Directional": false + }, { + "SourceID": 113143, + "TargetID": 113146, + "Directional": false + }, { + "SourceID": 113239, + "TargetID": 113232, + "Directional": false + }, { + "SourceID": 124994, + "TargetID": 124993, + "Directional": false + }] + }, { + "ID": 1558, + "SourceStructureID": 6050, + "TargetStructureID": 1021, + "Label": "6050-1021 via Adherens from 124968 -> 124967, 126797 -> 126796, 127479 -> 127478, 135751 -> 127479", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124968, + "TargetID": 124967, + "Directional": false + }, { + "SourceID": 126797, + "TargetID": 126796, + "Directional": false + }, { + "SourceID": 127479, + "TargetID": 127478, + "Directional": false + }, { + "SourceID": 135751, + "TargetID": 127479, + "Directional": false + }] + }, { + "ID": 1559, + "SourceStructureID": 6050, + "TargetStructureID": 1021, + "Label": "6050-1021 via Gap Junction from 51644 -> 51645, 113990 -> 113988, 114037 -> 114036, 114361 -> 114360, 114435 -> 114434, 124887 -> 124888", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51644, + "TargetID": 51645, + "Directional": false + }, { + "SourceID": 113990, + "TargetID": 113988, + "Directional": false + }, { + "SourceID": 114037, + "TargetID": 114036, + "Directional": false + }, { + "SourceID": 114361, + "TargetID": 114360, + "Directional": false + }, { + "SourceID": 114435, + "TargetID": 114434, + "Directional": false + }, { + "SourceID": 124887, + "TargetID": 124888, + "Directional": false + }] + }, { + "ID": 1560, + "SourceStructureID": 1021, + "TargetStructureID": 6120, + "Label": "1021-6120 via Adherens from 125497 -> 125498, 125499 -> 125500, 125649 -> 125650, 125716 -> 125714, 135748 -> 135747", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125497, + "TargetID": 125498, + "Directional": false + }, { + "SourceID": 125499, + "TargetID": 125500, + "Directional": false + }, { + "SourceID": 125649, + "TargetID": 125650, + "Directional": false + }, { + "SourceID": 125716, + "TargetID": 125714, + "Directional": false + }, { + "SourceID": 135748, + "TargetID": 135747, + "Directional": false + }] + }, { + "ID": 1561, + "SourceStructureID": 1021, + "TargetStructureID": 6120, + "Label": "1021-6120 via Gap Junction from 19768 -> 56517, 30185 -> 30186, 56516 -> 19745, 57384 -> 57385, 58794 -> 58793, 61081 -> 61082, 110742 -> 110741, 111016 -> 111015, 111227 -> 111228, 115314 -> 119478, 125523 -> 125524, 125631 -> 125632, 125664 -> 125665", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 19768, + "TargetID": 56517, + "Directional": false + }, { + "SourceID": 30185, + "TargetID": 30186, + "Directional": false + }, { + "SourceID": 56516, + "TargetID": 19745, + "Directional": false + }, { + "SourceID": 57384, + "TargetID": 57385, + "Directional": false + }, { + "SourceID": 58794, + "TargetID": 58793, + "Directional": false + }, { + "SourceID": 61081, + "TargetID": 61082, + "Directional": false + }, { + "SourceID": 110742, + "TargetID": 110741, + "Directional": false + }, { + "SourceID": 111016, + "TargetID": 111015, + "Directional": false + }, { + "SourceID": 111227, + "TargetID": 111228, + "Directional": false + }, { + "SourceID": 115314, + "TargetID": 119478, + "Directional": false + }, { + "SourceID": 125523, + "TargetID": 125524, + "Directional": false + }, { + "SourceID": 125631, + "TargetID": 125632, + "Directional": false + }, { + "SourceID": 125664, + "TargetID": 125665, + "Directional": false + }] + }, { + "ID": 1562, + "SourceStructureID": 1021, + "TargetStructureID": 6120, + "Label": "1021-6120 via Touch from 111730 -> 111729", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 111730, + "TargetID": 111729, + "Directional": false + }] + }, { + "ID": 1563, + "SourceStructureID": 6121, + "TargetStructureID": 1021, + "Label": "6121-1021 via Gap Junction from 125232 -> 125233, 125275 -> 125276, 125304 -> 125305, 125745 -> 125746", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 125232, + "TargetID": 125233, + "Directional": false + }, { + "SourceID": 125275, + "TargetID": 125276, + "Directional": false + }, { + "SourceID": 125304, + "TargetID": 125305, + "Directional": false + }, { + "SourceID": 125745, + "TargetID": 125746, + "Directional": false + }] + }, { + "ID": 1564, + "SourceStructureID": 6121, + "TargetStructureID": 1021, + "Label": "6121-1021 via Touch from 125718 -> 125719", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 125718, + "TargetID": 125719, + "Directional": false + }] + }, { + "ID": 1565, + "SourceStructureID": 1021, + "TargetStructureID": 6203, + "Label": "1021-6203 via Gap Junction from 125427 -> 125426", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 125427, + "TargetID": 125426, + "Directional": false + }] + }, { + "ID": 1566, + "SourceStructureID": 6204, + "TargetStructureID": 1021, + "Label": "6204-1021 via Adherens from 125419 -> 125420", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125419, + "TargetID": 125420, + "Directional": false + }] + }, { + "ID": 1567, + "SourceStructureID": 6204, + "TargetStructureID": 1021, + "Label": "6204-1021 via Gap Junction from 118161 -> 115390", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118161, + "TargetID": 115390, + "Directional": false + }] + }, { + "ID": 1568, + "SourceStructureID": 7134, + "TargetStructureID": 1021, + "Label": "7134-1021 via Unknown from 125113 -> 125114", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125113, + "TargetID": 125114, + "Directional": false + }] + }, { + "ID": 1569, + "SourceStructureID": 9769, + "TargetStructureID": 1021, + "Label": "9769-1021 via Adherens from 126889 -> 126888", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126889, + "TargetID": 126888, + "Directional": false + }] + }, { + "ID": 1570, + "SourceStructureID": 16073, + "TargetStructureID": 1021, + "Label": "16073-1021 via Unknown from 125764 -> 125507", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125764, + "TargetID": 125507, + "Directional": false + }] + }, { + "ID": 1571, + "SourceStructureID": 22994, + "TargetStructureID": 1021, + "Label": "22994-1021 via Adherens from 126820 -> 126821", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126820, + "TargetID": 126821, + "Directional": false + }] + }, { + "ID": 1572, + "SourceStructureID": 1021, + "TargetStructureID": 22994, + "Label": "1021-22994 via Gap Junction from 61125 -> 118121", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 61125, + "TargetID": 118121, + "Directional": false + }] + }, { + "ID": 1573, + "SourceStructureID": 43716, + "TargetStructureID": 1021, + "Label": "43716-1021 via Adherens from 125538 -> 125537", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125538, + "TargetID": 125537, + "Directional": false + }] + }, { + "ID": 1574, + "SourceStructureID": 1021, + "TargetStructureID": 53182, + "Label": "1021-53182 via Adherens from 124974 -> 124973", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124974, + "TargetID": 124973, + "Directional": false + }] + }, { + "ID": 1575, + "SourceStructureID": 1021, + "TargetStructureID": 71351, + "Label": "1021-71351 via Unknown from 125123 -> 125124", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125123, + "TargetID": 125124, + "Directional": false + }] + }, { + "ID": 1576, + "SourceStructureID": 1021, + "TargetStructureID": 103029, + "Label": "1021-103029 via Adherens from 126848 -> 103031", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126848, + "TargetID": 103031, + "Directional": false + }] + }, { + "ID": 1577, + "SourceStructureID": 1021, + "TargetStructureID": 103029, + "Label": "1021-103029 via Unknown from 115317 -> 115318", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115317, + "TargetID": 115318, + "Directional": false + }] + }, { + "ID": 1578, + "SourceStructureID": 1021, + "TargetStructureID": 105048, + "Label": "1021-105048 via Adherens from 125138 -> 125139", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125138, + "TargetID": 125139, + "Directional": false + }] + }, { + "ID": 1579, + "SourceStructureID": 1021, + "TargetStructureID": 105048, + "Label": "1021-105048 via Unknown from 125134 -> 125135", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125134, + "TargetID": 125135, + "Directional": false + }] + }, { + "ID": 1580, + "SourceStructureID": 105070, + "TargetStructureID": 1021, + "Label": "105070-1021 via Adherens from 125129 -> 125128", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125129, + "TargetID": 125128, + "Directional": false + }] + }, { + "ID": 1581, + "SourceStructureID": 105095, + "TargetStructureID": 1021, + "Label": "105095-1021 via Unknown from 126697 -> 124992", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126697, + "TargetID": 124992, + "Directional": false + }] + }, { + "ID": 1582, + "SourceStructureID": 110607, + "TargetStructureID": 1021, + "Label": "110607-1021 via Unknown from 125630 -> 125629", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125630, + "TargetID": 125629, + "Directional": false + }] + }, { + "ID": 1583, + "SourceStructureID": 1021, + "TargetStructureID": 110997, + "Label": "1021-110997 via Adherens from 125287 -> 125286", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125287, + "TargetID": 125286, + "Directional": false + }] + }, { + "ID": 1584, + "SourceStructureID": 110997, + "TargetStructureID": 1021, + "Label": "110997-1021 via Gap Junction from 125284 -> 125285", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 125284, + "TargetID": 125285, + "Directional": false + }] + }, { + "ID": 1585, + "SourceStructureID": 1021, + "TargetStructureID": 111012, + "Label": "1021-111012 via Adherens from 125264 -> 125265", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125264, + "TargetID": 125265, + "Directional": false + }] + }, { + "ID": 1586, + "SourceStructureID": 1021, + "TargetStructureID": 112182, + "Label": "1021-112182 via Adherens from 125373 -> 125374", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125373, + "TargetID": 125374, + "Directional": false + }] + }, { + "ID": 1587, + "SourceStructureID": 112284, + "TargetStructureID": 1021, + "Label": "112284-1021 via Adherens from 124997 -> 124996", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124997, + "TargetID": 124996, + "Directional": false + }] + }, { + "ID": 1588, + "SourceStructureID": 112389, + "TargetStructureID": 1021, + "Label": "112389-1021 via Unknown from 126699 -> 124995", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126699, + "TargetID": 124995, + "Directional": false + }] + }, { + "ID": 1589, + "SourceStructureID": 113140, + "TargetStructureID": 1021, + "Label": "113140-1021 via Unknown from 124924 -> 124923", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124924, + "TargetID": 124923, + "Directional": false + }] + }, { + "ID": 1590, + "SourceStructureID": 1637, + "TargetStructureID": 1637, + "Label": "1637-1637 via Adherens from 117326 -> 117327", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117326, + "TargetID": 117327, + "Directional": false + }] + }, { + "ID": 1591, + "SourceStructureID": 1637, + "TargetStructureID": 1637, + "Label": "1637-1637 via Gap Junction from 116898 -> 116897", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116898, + "TargetID": 116897, + "Directional": false + }] + }, { + "ID": 1592, + "SourceStructureID": 1637, + "TargetStructureID": 1637, + "Label": "1637-1637 via Unknown from 117300 -> 117299", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117300, + "TargetID": 117299, + "Directional": false + }] + }, { + "ID": 1593, + "SourceStructureID": 1637, + "TargetStructureID": 1724, + "Label": "1637-1724 via Gap Junction from 23707 -> 23708, 23718 -> 23722, 23732 -> 23733, 28625 -> 28626, 30416 -> 30417, 30419 -> 30420, 30429 -> 30433, 99327 -> 99328, 99432 -> 99433, 100274 -> 100273, 116751 -> 116750, 116753 -> 116752", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 23707, + "TargetID": 23708, + "Directional": false + }, { + "SourceID": 23718, + "TargetID": 23722, + "Directional": false + }, { + "SourceID": 23732, + "TargetID": 23733, + "Directional": false + }, { + "SourceID": 28625, + "TargetID": 28626, + "Directional": false + }, { + "SourceID": 30416, + "TargetID": 30417, + "Directional": false + }, { + "SourceID": 30419, + "TargetID": 30420, + "Directional": false + }, { + "SourceID": 30429, + "TargetID": 30433, + "Directional": false + }, { + "SourceID": 99327, + "TargetID": 99328, + "Directional": false + }, { + "SourceID": 99432, + "TargetID": 99433, + "Directional": false + }, { + "SourceID": 100274, + "TargetID": 100273, + "Directional": false + }, { + "SourceID": 116751, + "TargetID": 116750, + "Directional": false + }, { + "SourceID": 116753, + "TargetID": 116752, + "Directional": false + }] + }, { + "ID": 1594, + "SourceStructureID": 5278, + "TargetStructureID": 1637, + "Label": "5278-1637 via Adherens from 117323 -> 117322, 147317 -> 147318", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117323, + "TargetID": 117322, + "Directional": false + }, { + "SourceID": 147317, + "TargetID": 147318, + "Directional": false + }] + }, { + "ID": 1595, + "SourceStructureID": 5278, + "TargetStructureID": 1637, + "Label": "5278-1637 via Touch from 147312 -> 147313", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 147312, + "TargetID": 147313, + "Directional": false + }] + }, { + "ID": 1596, + "SourceStructureID": 5279, + "TargetStructureID": 1637, + "Label": "5279-1637 via Gap Junction from 98653 -> 98652, 133850 -> 133851, 133863 -> 133862, 148026 -> 148025", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98653, + "TargetID": 98652, + "Directional": false + }, { + "SourceID": 133850, + "TargetID": 133851, + "Directional": false + }, { + "SourceID": 133863, + "TargetID": 133862, + "Directional": false + }, { + "SourceID": 148026, + "TargetID": 148025, + "Directional": false + }] + }, { + "ID": 1597, + "SourceStructureID": 5517, + "TargetStructureID": 1637, + "Label": "5517-1637 via Gap Junction from 49508 -> 49630, 49634 -> 49268, 116861 -> 116860", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49508, + "TargetID": 49630, + "Directional": false + }, { + "SourceID": 49634, + "TargetID": 49268, + "Directional": false + }, { + "SourceID": 116861, + "TargetID": 116860, + "Directional": false + }] + }, { + "ID": 1598, + "SourceStructureID": 5517, + "TargetStructureID": 1637, + "Label": "5517-1637 via Unknown from 116814 -> 116813, 116854 -> 116853", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116814, + "TargetID": 116813, + "Directional": false + }, { + "SourceID": 116854, + "TargetID": 116853, + "Directional": false + }] + }, { + "ID": 1599, + "SourceStructureID": 1637, + "TargetStructureID": 6155, + "Label": "1637-6155 via Gap Junction from 30421 -> 30422", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 30421, + "TargetID": 30422, + "Directional": false + }] + }, { + "ID": 1600, + "SourceStructureID": 20136, + "TargetStructureID": 1637, + "Label": "20136-1637 via Adherens from 109770 -> 109771", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109770, + "TargetID": 109771, + "Directional": false + }] + }, { + "ID": 1601, + "SourceStructureID": 1637, + "TargetStructureID": 26079, + "Label": "1637-26079 via Unknown from 116803 -> 116802", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116803, + "TargetID": 116802, + "Directional": false + }] + }, { + "ID": 1602, + "SourceStructureID": 1637, + "TargetStructureID": 48455, + "Label": "1637-48455 via Unknown from 119544 -> 119543", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 119544, + "TargetID": 119543, + "Directional": false + }] + }, { + "ID": 1603, + "SourceStructureID": 61933, + "TargetStructureID": 1637, + "Label": "61933-1637 via Unknown from 117318 -> 117317", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117318, + "TargetID": 117317, + "Directional": false + }] + }, { + "ID": 1604, + "SourceStructureID": 1637, + "TargetStructureID": 99440, + "Label": "1637-99440 via Unknown from 136322 -> 136321", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136322, + "TargetID": 136321, + "Directional": false + }] + }, { + "ID": 1605, + "SourceStructureID": 1724, + "TargetStructureID": 1724, + "Label": "1724-1724 via Gap Junction from 20015 -> 3968, 47944 -> 48454, 48679 -> 48678", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 20015, + "TargetID": 3968, + "Directional": false + }, { + "SourceID": 47944, + "TargetID": 48454, + "Directional": false + }, { + "SourceID": 48679, + "TargetID": 48678, + "Directional": false + }] + }, { + "ID": 1606, + "SourceStructureID": 3116, + "TargetStructureID": 1724, + "Label": "3116-1724 via Gap Junction from 30353 -> 23757, 119084 -> 119083", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 30353, + "TargetID": 23757, + "Directional": false + }, { + "SourceID": 119084, + "TargetID": 119083, + "Directional": false + }] + }, { + "ID": 1607, + "SourceStructureID": 1724, + "TargetStructureID": 5278, + "Label": "1724-5278 via Adherens from 147270 -> 147269, 147275 -> 147276", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147270, + "TargetID": 147269, + "Directional": false + }, { + "SourceID": 147275, + "TargetID": 147276, + "Directional": false + }] + }, { + "ID": 1608, + "SourceStructureID": 5278, + "TargetStructureID": 1724, + "Label": "5278-1724 via Gap Junction from 48476 -> 48475, 69857 -> 69856, 92135 -> 92134", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48476, + "TargetID": 48475, + "Directional": false + }, { + "SourceID": 69857, + "TargetID": 69856, + "Directional": false + }, { + "SourceID": 92135, + "TargetID": 92134, + "Directional": false + }] + }, { + "ID": 1609, + "SourceStructureID": 1724, + "TargetStructureID": 5279, + "Label": "1724-5279 via Gap Junction from 48677 -> 48676", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48677, + "TargetID": 48676, + "Directional": false + }] + }, { + "ID": 1610, + "SourceStructureID": 5579, + "TargetStructureID": 1724, + "Label": "5579-1724 via Adherens from 36806 -> 36807", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 36806, + "TargetID": 36807, + "Directional": false + }] + }, { + "ID": 1611, + "SourceStructureID": 5579, + "TargetStructureID": 1724, + "Label": "5579-1724 via Unknown from 100363 -> 100362, 114173 -> 114174, 119152 -> 119151", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100363, + "TargetID": 100362, + "Directional": false + }, { + "SourceID": 114173, + "TargetID": 114174, + "Directional": false + }, { + "SourceID": 119152, + "TargetID": 119151, + "Directional": false + }] + }, { + "ID": 1612, + "SourceStructureID": 6155, + "TargetStructureID": 1724, + "Label": "6155-1724 via Gap Junction from 15689 -> 49046, 47939 -> 47938", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 15689, + "TargetID": 49046, + "Directional": false + }, { + "SourceID": 47939, + "TargetID": 47938, + "Directional": false + }] + }, { + "ID": 1613, + "SourceStructureID": 1724, + "TargetStructureID": 21299, + "Label": "1724-21299 via Gap Junction from 48682 -> 48681", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48682, + "TargetID": 48681, + "Directional": false + }] + }, { + "ID": 1614, + "SourceStructureID": 1724, + "TargetStructureID": 26079, + "Label": "1724-26079 via Gap Junction from 47361 -> 102030, 102004 -> 102003, 102008 -> 102009, 102930 -> 102929", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47361, + "TargetID": 102030, + "Directional": false + }, { + "SourceID": 102004, + "TargetID": 102003, + "Directional": false + }, { + "SourceID": 102008, + "TargetID": 102009, + "Directional": false + }, { + "SourceID": 102930, + "TargetID": 102929, + "Directional": false + }] + }, { + "ID": 1615, + "SourceStructureID": 42527, + "TargetStructureID": 1724, + "Label": "42527-1724 via Adherens from 42528 -> 42526", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 42528, + "TargetID": 42526, + "Directional": false + }] + }, { + "ID": 1616, + "SourceStructureID": 1724, + "TargetStructureID": 43314, + "Label": "1724-43314 via Unknown from 100252 -> 100253", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100252, + "TargetID": 100253, + "Directional": false + }] + }, { + "ID": 1617, + "SourceStructureID": 1724, + "TargetStructureID": 99106, + "Label": "1724-99106 via Adherens from 99522 -> 99520", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99522, + "TargetID": 99520, + "Directional": false + }] + }, { + "ID": 1618, + "SourceStructureID": 1724, + "TargetStructureID": 99106, + "Label": "1724-99106 via Gap Junction from 48474 -> 119133", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48474, + "TargetID": 119133, + "Directional": false + }] + }, { + "ID": 1619, + "SourceStructureID": 1724, + "TargetStructureID": 99106, + "Label": "1724-99106 via Unknown from 99535 -> 99534", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99535, + "TargetID": 99534, + "Directional": false + }] + }, { + "ID": 1620, + "SourceStructureID": 1724, + "TargetStructureID": 99233, + "Label": "1724-99233 via Unknown from 99235 -> 99234", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99235, + "TargetID": 99234, + "Directional": false + }] + }, { + "ID": 1621, + "SourceStructureID": 99236, + "TargetStructureID": 1724, + "Label": "99236-1724 via Adherens from 99239 -> 99238", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99239, + "TargetID": 99238, + "Directional": false + }] + }, { + "ID": 1622, + "SourceStructureID": 99240, + "TargetStructureID": 1724, + "Label": "99240-1724 via Unknown from 99242 -> 99241, 100325 -> 100324", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99242, + "TargetID": 99241, + "Directional": false + }, { + "SourceID": 100325, + "TargetID": 100324, + "Directional": false + }] + }, { + "ID": 1623, + "SourceStructureID": 99325, + "TargetStructureID": 1724, + "Label": "99325-1724 via Adherens from 99337 -> 99336", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99337, + "TargetID": 99336, + "Directional": false + }] + }, { + "ID": 1624, + "SourceStructureID": 99346, + "TargetStructureID": 1724, + "Label": "99346-1724 via Unknown from 99353 -> 99352", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99353, + "TargetID": 99352, + "Directional": false + }] + }, { + "ID": 1625, + "SourceStructureID": 1724, + "TargetStructureID": 99538, + "Label": "1724-99538 via Unknown from 99539 -> 99540", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99539, + "TargetID": 99540, + "Directional": false + }] + }, { + "ID": 1626, + "SourceStructureID": 99543, + "TargetStructureID": 1724, + "Label": "99543-1724 via Gap Junction from 99545 -> 99544", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 99545, + "TargetID": 99544, + "Directional": false + }] + }, { + "ID": 1627, + "SourceStructureID": 1724, + "TargetStructureID": 99543, + "Label": "1724-99543 via Unknown from 99562 -> 99563", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99562, + "TargetID": 99563, + "Directional": false + }] + }, { + "ID": 1628, + "SourceStructureID": 99551, + "TargetStructureID": 1724, + "Label": "99551-1724 via Unknown from 99553 -> 99552", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99553, + "TargetID": 99552, + "Directional": false + }] + }, { + "ID": 1629, + "SourceStructureID": 99557, + "TargetStructureID": 1724, + "Label": "99557-1724 via Unknown from 99558 -> 99559", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99558, + "TargetID": 99559, + "Directional": false + }] + }, { + "ID": 1630, + "SourceStructureID": 1724, + "TargetStructureID": 99571, + "Label": "1724-99571 via Adherens from 99572 -> 99573", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99572, + "TargetID": 99573, + "Directional": false + }] + }, { + "ID": 1631, + "SourceStructureID": 1724, + "TargetStructureID": 100242, + "Label": "1724-100242 via Unknown from 100246 -> 100247", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100246, + "TargetID": 100247, + "Directional": false + }] + }, { + "ID": 1632, + "SourceStructureID": 1724, + "TargetStructureID": 100243, + "Label": "1724-100243 via Unknown from 100244 -> 100245", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100244, + "TargetID": 100245, + "Directional": false + }] + }, { + "ID": 1633, + "SourceStructureID": 100327, + "TargetStructureID": 1724, + "Label": "100327-1724 via Unknown from 100329 -> 100328", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100329, + "TargetID": 100328, + "Directional": false + }] + }, { + "ID": 1634, + "SourceStructureID": 100477, + "TargetStructureID": 1724, + "Label": "100477-1724 via BC Conventional Synapse from 100482 -> 100481", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 100482, + "TargetID": 100481, + "Directional": false + }] + }, { + "ID": 1635, + "SourceStructureID": 1724, + "TargetStructureID": 100486, + "Label": "1724-100486 via Unknown from 100514 -> 100515", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100514, + "TargetID": 100515, + "Directional": false + }] + }, { + "ID": 1636, + "SourceStructureID": 1724, + "TargetStructureID": 100528, + "Label": "1724-100528 via Unknown from 119155 -> 119156", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 119155, + "TargetID": 119156, + "Directional": false + }] + }, { + "ID": 1637, + "SourceStructureID": 1724, + "TargetStructureID": 100679, + "Label": "1724-100679 via Unknown from 100681 -> 100680", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100681, + "TargetID": 100680, + "Directional": false + }] + }, { + "ID": 1638, + "SourceStructureID": 1724, + "TargetStructureID": 100752, + "Label": "1724-100752 via Unknown from 100753 -> 100754", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100753, + "TargetID": 100754, + "Directional": false + }] + }, { + "ID": 1639, + "SourceStructureID": 100860, + "TargetStructureID": 1724, + "Label": "100860-1724 via Adherens from 100861 -> 100862", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100861, + "TargetID": 100862, + "Directional": false + }] + }, { + "ID": 1640, + "SourceStructureID": 100868, + "TargetStructureID": 1724, + "Label": "100868-1724 via Gap Junction from 100870 -> 20186", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 100870, + "TargetID": 20186, + "Directional": false + }] + }, { + "ID": 1641, + "SourceStructureID": 1724, + "TargetStructureID": 101501, + "Label": "1724-101501 via Unknown from 101503 -> 101502", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101503, + "TargetID": 101502, + "Directional": false + }] + }, { + "ID": 1642, + "SourceStructureID": 1724, + "TargetStructureID": 101531, + "Label": "1724-101531 via Unknown from 101533 -> 101532", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101533, + "TargetID": 101532, + "Directional": false + }] + }, { + "ID": 1643, + "SourceStructureID": 1724, + "TargetStructureID": 101536, + "Label": "1724-101536 via Adherens from 101539 -> 101538", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 101539, + "TargetID": 101538, + "Directional": false + }] + }, { + "ID": 1644, + "SourceStructureID": 1724, + "TargetStructureID": 101541, + "Label": "1724-101541 via Unknown from 101542 -> 101543", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101542, + "TargetID": 101543, + "Directional": false + }] + }, { + "ID": 1645, + "SourceStructureID": 101544, + "TargetStructureID": 1724, + "Label": "101544-1724 via Unknown from 101546 -> 101545", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101546, + "TargetID": 101545, + "Directional": false + }] + }, { + "ID": 1646, + "SourceStructureID": 101578, + "TargetStructureID": 1724, + "Label": "101578-1724 via Adherens from 101580 -> 101579", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 101580, + "TargetID": 101579, + "Directional": false + }] + }, { + "ID": 1647, + "SourceStructureID": 1724, + "TargetStructureID": 101592, + "Label": "1724-101592 via Adherens from 47937 -> 101593", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 47937, + "TargetID": 101593, + "Directional": false + }] + }, { + "ID": 1648, + "SourceStructureID": 101617, + "TargetStructureID": 1724, + "Label": "101617-1724 via Adherens from 101619 -> 101618", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 101619, + "TargetID": 101618, + "Directional": false + }] + }, { + "ID": 1649, + "SourceStructureID": 101620, + "TargetStructureID": 1724, + "Label": "101620-1724 via Adherens from 101622 -> 101621", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 101622, + "TargetID": 101621, + "Directional": false + }] + }, { + "ID": 1650, + "SourceStructureID": 1724, + "TargetStructureID": 101654, + "Label": "1724-101654 via Unknown from 101655 -> 101656", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101655, + "TargetID": 101656, + "Directional": false + }] + }, { + "ID": 1651, + "SourceStructureID": 101683, + "TargetStructureID": 1724, + "Label": "101683-1724 via Unknown from 101685 -> 101684", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101685, + "TargetID": 101684, + "Directional": false + }] + }, { + "ID": 1652, + "SourceStructureID": 1724, + "TargetStructureID": 101896, + "Label": "1724-101896 via Adherens from 101898 -> 101897", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 101898, + "TargetID": 101897, + "Directional": false + }] + }, { + "ID": 1653, + "SourceStructureID": 102517, + "TargetStructureID": 1724, + "Label": "102517-1724 via Adherens from 102521 -> 102520, 102523 -> 47941", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 102521, + "TargetID": 102520, + "Directional": false + }, { + "SourceID": 102523, + "TargetID": 47941, + "Directional": false + }] + }, { + "ID": 1654, + "SourceStructureID": 2064, + "TargetStructureID": 6155, + "Label": "2064-6155 via Unknown from 108354 -> 108356", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108354, + "TargetID": 108356, + "Directional": false + }] + }, { + "ID": 1655, + "SourceStructureID": 9504, + "TargetStructureID": 2065, + "Label": "9504-2065 via Gap Junction from 36356 -> 36355", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 36356, + "TargetID": 36355, + "Directional": false + }] + }, { + "ID": 1656, + "SourceStructureID": 2610, + "TargetStructureID": 3679, + "Label": "2610-3679 via Gap Junction from 17968 -> 17967, 17969 -> 3862", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 17968, + "TargetID": 17967, + "Directional": false + }, { + "SourceID": 17969, + "TargetID": 3862, + "Directional": false + }] + }, { + "ID": 1657, + "SourceStructureID": 5345, + "TargetStructureID": 2610, + "Label": "5345-2610 via Gap Junction from 15673 -> 15669, 15680 -> 15670, 16811 -> 2843, 16820 -> 2829, 19040 -> 19039", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 15673, + "TargetID": 15669, + "Directional": false + }, { + "SourceID": 15680, + "TargetID": 15670, + "Directional": false + }, { + "SourceID": 16811, + "TargetID": 2843, + "Directional": false + }, { + "SourceID": 16820, + "TargetID": 2829, + "Directional": false + }, { + "SourceID": 19040, + "TargetID": 19039, + "Directional": false + }] + }, { + "ID": 1658, + "SourceStructureID": 2610, + "TargetStructureID": 5513, + "Label": "2610-5513 via Gap Junction from 2767 -> 15016, 15018 -> 2773", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 2767, + "TargetID": 15016, + "Directional": false + }, { + "SourceID": 15018, + "TargetID": 2773, + "Directional": false + }] + }, { + "ID": 1659, + "SourceStructureID": 2610, + "TargetStructureID": 5517, + "Label": "2610-5517 via Gap Junction from 15015 -> 96058, 96502 -> 96501", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 15015, + "TargetID": 96058, + "Directional": false + }, { + "SourceID": 96502, + "TargetID": 96501, + "Directional": false + }] + }, { + "ID": 1660, + "SourceStructureID": 6589, + "TargetStructureID": 2610, + "Label": "6589-2610 via Gap Junction from 6592 -> 6588, 9550 -> 9549, 17173 -> 6597, 130607 -> 130606, 132636 -> 132635, 132694 -> 132695", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 6592, + "TargetID": 6588, + "Directional": false + }, { + "SourceID": 9550, + "TargetID": 9549, + "Directional": false + }, { + "SourceID": 17173, + "TargetID": 6597, + "Directional": false + }, { + "SourceID": 130607, + "TargetID": 130606, + "Directional": false + }, { + "SourceID": 132636, + "TargetID": 132635, + "Directional": false + }, { + "SourceID": 132694, + "TargetID": 132695, + "Directional": false + }] + }, { + "ID": 1661, + "SourceStructureID": 6912, + "TargetStructureID": 2610, + "Label": "6912-2610 via Gap Junction from 6938 -> 2735, 32378 -> 2923, 33145 -> 2771, 48353 -> 2768, 48366 -> 2776, 51077 -> 18216, 94439 -> 51135, 120870 -> 120869, 135037 -> 135035", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 6938, + "TargetID": 2735, + "Directional": false + }, { + "SourceID": 32378, + "TargetID": 2923, + "Directional": false + }, { + "SourceID": 33145, + "TargetID": 2771, + "Directional": false + }, { + "SourceID": 48353, + "TargetID": 2768, + "Directional": false + }, { + "SourceID": 48366, + "TargetID": 2776, + "Directional": false + }, { + "SourceID": 51077, + "TargetID": 18216, + "Directional": false + }, { + "SourceID": 94439, + "TargetID": 51135, + "Directional": false + }, { + "SourceID": 120870, + "TargetID": 120869, + "Directional": false + }, { + "SourceID": 135037, + "TargetID": 135035, + "Directional": false + }] + }, { + "ID": 1662, + "SourceStructureID": 6997, + "TargetStructureID": 2610, + "Label": "6997-2610 via Adherens from 136835 -> 136836", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136835, + "TargetID": 136836, + "Directional": false + }] + }, { + "ID": 1663, + "SourceStructureID": 2610, + "TargetStructureID": 6997, + "Label": "2610-6997 via Gap Junction from 9396 -> 31420, 22019 -> 22018, 22280 -> 22279, 22851 -> 21923, 56986 -> 56985, 56993 -> 56992, 95585 -> 95584, 99172 -> 99171, 135004 -> 135009, 135034 -> 135033", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 9396, + "TargetID": 31420, + "Directional": false + }, { + "SourceID": 22019, + "TargetID": 22018, + "Directional": false + }, { + "SourceID": 22280, + "TargetID": 22279, + "Directional": false + }, { + "SourceID": 22851, + "TargetID": 21923, + "Directional": false + }, { + "SourceID": 56986, + "TargetID": 56985, + "Directional": false + }, { + "SourceID": 56993, + "TargetID": 56992, + "Directional": false + }, { + "SourceID": 95585, + "TargetID": 95584, + "Directional": false + }, { + "SourceID": 99172, + "TargetID": 99171, + "Directional": false + }, { + "SourceID": 135004, + "TargetID": 135009, + "Directional": false + }, { + "SourceID": 135034, + "TargetID": 135033, + "Directional": false + }] + }, { + "ID": 1664, + "SourceStructureID": 8037, + "TargetStructureID": 2610, + "Label": "8037-2610 via Gap Junction from 11384 -> 2847, 15668 -> 15667, 17903 -> 17902", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 11384, + "TargetID": 2847, + "Directional": false + }, { + "SourceID": 15668, + "TargetID": 15667, + "Directional": false + }, { + "SourceID": 17903, + "TargetID": 17902, + "Directional": false + }] + }, { + "ID": 1665, + "SourceStructureID": 2610, + "TargetStructureID": 8990, + "Label": "2610-8990 via Adherens from 95939 -> 95938, 95943 -> 95942, 95944 -> 17958", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95939, + "TargetID": 95938, + "Directional": false + }, { + "SourceID": 95943, + "TargetID": 95942, + "Directional": false + }, { + "SourceID": 95944, + "TargetID": 17958, + "Directional": false + }] + }, { + "ID": 1666, + "SourceStructureID": 2610, + "TargetStructureID": 8990, + "Label": "2610-8990 via Unknown from 95941 -> 95940", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95941, + "TargetID": 95940, + "Directional": false + }] + }, { + "ID": 1667, + "SourceStructureID": 9693, + "TargetStructureID": 2610, + "Label": "9693-2610 via Adherens from 120074 -> 120079, 134728 -> 134729, 135023 -> 135024", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 120074, + "TargetID": 120079, + "Directional": false + }, { + "SourceID": 134728, + "TargetID": 134729, + "Directional": false + }, { + "SourceID": 135023, + "TargetID": 135024, + "Directional": false + }] + }, { + "ID": 1668, + "SourceStructureID": 9693, + "TargetStructureID": 2610, + "Label": "9693-2610 via Gap Junction from 9760 -> 9761, 15012 -> 2861, 18732 -> 18733, 101442 -> 101443, 119819 -> 17221, 120073 -> 120078, 120076 -> 120077, 134723 -> 119839, 134727 -> 120088, 134731 -> 95761, 134990 -> 134991", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 9760, + "TargetID": 9761, + "Directional": false + }, { + "SourceID": 15012, + "TargetID": 2861, + "Directional": false + }, { + "SourceID": 18732, + "TargetID": 18733, + "Directional": false + }, { + "SourceID": 101442, + "TargetID": 101443, + "Directional": false + }, { + "SourceID": 119819, + "TargetID": 17221, + "Directional": false + }, { + "SourceID": 120073, + "TargetID": 120078, + "Directional": false + }, { + "SourceID": 120076, + "TargetID": 120077, + "Directional": false + }, { + "SourceID": 134723, + "TargetID": 119839, + "Directional": false + }, { + "SourceID": 134727, + "TargetID": 120088, + "Directional": false + }, { + "SourceID": 134731, + "TargetID": 95761, + "Directional": false + }, { + "SourceID": 134990, + "TargetID": 134991, + "Directional": false + }] + }, { + "ID": 1669, + "SourceStructureID": 2610, + "TargetStructureID": 25405, + "Label": "2610-25405 via Adherens from 25409 -> 25408", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 25409, + "TargetID": 25408, + "Directional": false + }] + }, { + "ID": 1670, + "SourceStructureID": 2610, + "TargetStructureID": 25466, + "Label": "2610-25466 via Adherens from 25472 -> 25471", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 25472, + "TargetID": 25471, + "Directional": false + }] + }, { + "ID": 1671, + "SourceStructureID": 25669, + "TargetStructureID": 2610, + "Label": "25669-2610 via Adherens from 25684 -> 17982", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 25684, + "TargetID": 17982, + "Directional": false + }] + }, { + "ID": 1672, + "SourceStructureID": 2610, + "TargetStructureID": 28886, + "Label": "2610-28886 via Adherens from 135006 -> 135007", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135006, + "TargetID": 135007, + "Directional": false + }] + }, { + "ID": 1673, + "SourceStructureID": 28886, + "TargetStructureID": 2610, + "Label": "28886-2610 via Gap Junction from 51296 -> 51297, 51324 -> 51323, 51370 -> 2924, 135008 -> 135005", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51296, + "TargetID": 51297, + "Directional": false + }, { + "SourceID": 51324, + "TargetID": 51323, + "Directional": false + }, { + "SourceID": 51370, + "TargetID": 2924, + "Directional": false + }, { + "SourceID": 135008, + "TargetID": 135005, + "Directional": false + }] + }, { + "ID": 1674, + "SourceStructureID": 39530, + "TargetStructureID": 2610, + "Label": "39530-2610 via Adherens from 39554 -> 39546", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 39554, + "TargetID": 39546, + "Directional": false + }] + }, { + "ID": 1675, + "SourceStructureID": 45894, + "TargetStructureID": 2610, + "Label": "45894-2610 via Gap Junction from 46929 -> 2971", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46929, + "TargetID": 2971, + "Directional": false + }] + }, { + "ID": 1676, + "SourceStructureID": 3116, + "TargetStructureID": 3116, + "Label": "3116-3116 via Gap Junction from 123280 -> 123281", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123280, + "TargetID": 123281, + "Directional": false + }] + }, { + "ID": 1677, + "SourceStructureID": 4569, + "TargetStructureID": 3116, + "Label": "4569-3116 via Gap Junction from 23807 -> 23821, 23827 -> 23828, 23830 -> 23831, 46762 -> 46761, 47842 -> 23787, 52504 -> 52505, 52538 -> 52540", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 23807, + "TargetID": 23821, + "Directional": false + }, { + "SourceID": 23827, + "TargetID": 23828, + "Directional": false + }, { + "SourceID": 23830, + "TargetID": 23831, + "Directional": false + }, { + "SourceID": 46762, + "TargetID": 46761, + "Directional": false + }, { + "SourceID": 47842, + "TargetID": 23787, + "Directional": false + }, { + "SourceID": 52504, + "TargetID": 52505, + "Directional": false + }, { + "SourceID": 52538, + "TargetID": 52540, + "Directional": false + }] + }, { + "ID": 1678, + "SourceStructureID": 3116, + "TargetStructureID": 5278, + "Label": "3116-5278 via Touch from 92154 -> 92153", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 92154, + "TargetID": 92153, + "Directional": false + }] + }, { + "ID": 1679, + "SourceStructureID": 3116, + "TargetStructureID": 6155, + "Label": "3116-6155 via Gap Junction from 122365 -> 122364", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122365, + "TargetID": 122364, + "Directional": false + }] + }, { + "ID": 1680, + "SourceStructureID": 3116, + "TargetStructureID": 6155, + "Label": "3116-6155 via Touch from 106444 -> 106445", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 106444, + "TargetID": 106445, + "Directional": false + }] + }, { + "ID": 1681, + "SourceStructureID": 29827, + "TargetStructureID": 3116, + "Label": "29827-3116 via Unknown from 135534 -> 135533", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135534, + "TargetID": 135533, + "Directional": false + }] + }, { + "ID": 1682, + "SourceStructureID": 83179, + "TargetStructureID": 3116, + "Label": "83179-3116 via Unknown from 92479 -> 92480", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92479, + "TargetID": 92480, + "Directional": false + }] + }, { + "ID": 1683, + "SourceStructureID": 91449, + "TargetStructureID": 3116, + "Label": "91449-3116 via Adherens from 91450 -> 91451", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91450, + "TargetID": 91451, + "Directional": false + }] + }, { + "ID": 1684, + "SourceStructureID": 91544, + "TargetStructureID": 3116, + "Label": "91544-3116 via Adherens from 91546 -> 91545", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91546, + "TargetID": 91545, + "Directional": false + }] + }, { + "ID": 1685, + "SourceStructureID": 98898, + "TargetStructureID": 3116, + "Label": "98898-3116 via Gap Junction from 98903 -> 98904", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98903, + "TargetID": 98904, + "Directional": false + }] + }, { + "ID": 1686, + "SourceStructureID": 3116, + "TargetStructureID": 99025, + "Label": "3116-99025 via Gap Junction from 99027 -> 99026", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 99027, + "TargetID": 99026, + "Directional": false + }] + }, { + "ID": 1687, + "SourceStructureID": 3257, + "TargetStructureID": 4569, + "Label": "3257-4569 via Gap Junction from 16373 -> 52526, 47488 -> 47489, 98447 -> 98446, 99087 -> 99086", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16373, + "TargetID": 52526, + "Directional": false + }, { + "SourceID": 47488, + "TargetID": 47489, + "Directional": false + }, { + "SourceID": 98447, + "TargetID": 98446, + "Directional": false + }, { + "SourceID": 99087, + "TargetID": 99086, + "Directional": false + }] + }, { + "ID": 1688, + "SourceStructureID": 4570, + "TargetStructureID": 3257, + "Label": "4570-3257 via Gap Junction from 10669 -> 8239, 10868 -> 10852, 14407 -> 14406", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10669, + "TargetID": 8239, + "Directional": false + }, { + "SourceID": 10868, + "TargetID": 10852, + "Directional": false + }, { + "SourceID": 14407, + "TargetID": 14406, + "Directional": false + }] + }, { + "ID": 1689, + "SourceStructureID": 3257, + "TargetStructureID": 4850, + "Label": "3257-4850 via Adherens from 97990 -> 14565", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97990, + "TargetID": 14565, + "Directional": false + }] + }, { + "ID": 1690, + "SourceStructureID": 5635, + "TargetStructureID": 3257, + "Label": "5635-3257 via Gap Junction from 55981 -> 55980", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55981, + "TargetID": 55980, + "Directional": false + }] + }, { + "ID": 1691, + "SourceStructureID": 3257, + "TargetStructureID": 5860, + "Label": "3257-5860 via Gap Junction from 29681 -> 6198, 29682 -> 29683", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29681, + "TargetID": 6198, + "Directional": false + }, { + "SourceID": 29682, + "TargetID": 29683, + "Directional": false + }] + }, { + "ID": 1692, + "SourceStructureID": 6117, + "TargetStructureID": 3257, + "Label": "6117-3257 via Gap Junction from 59088 -> 59083", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59088, + "TargetID": 59083, + "Directional": false + }] + }, { + "ID": 1693, + "SourceStructureID": 6169, + "TargetStructureID": 3257, + "Label": "6169-3257 via Gap Junction from 16193 -> 16203, 16225 -> 16214, 18413 -> 18412, 23058 -> 11912, 29696 -> 29695, 39559 -> 16213, 92700 -> 92699, 133080 -> 9142", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16193, + "TargetID": 16203, + "Directional": false + }, { + "SourceID": 16225, + "TargetID": 16214, + "Directional": false + }, { + "SourceID": 18413, + "TargetID": 18412, + "Directional": false + }, { + "SourceID": 23058, + "TargetID": 11912, + "Directional": false + }, { + "SourceID": 29696, + "TargetID": 29695, + "Directional": false + }, { + "SourceID": 39559, + "TargetID": 16213, + "Directional": false + }, { + "SourceID": 92700, + "TargetID": 92699, + "Directional": false + }, { + "SourceID": 133080, + "TargetID": 9142, + "Directional": false + }] + }, { + "ID": 1694, + "SourceStructureID": 7564, + "TargetStructureID": 3257, + "Label": "7564-3257 via Gap Junction from 29691 -> 29690", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29691, + "TargetID": 29690, + "Directional": false + }] + }, { + "ID": 1695, + "SourceStructureID": 3257, + "TargetStructureID": 10959, + "Label": "3257-10959 via Adherens from 86796 -> 86795", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86796, + "TargetID": 86795, + "Directional": false + }] + }, { + "ID": 1696, + "SourceStructureID": 3257, + "TargetStructureID": 42432, + "Label": "3257-42432 via Adherens from 42436 -> 42435, 42441 -> 42440", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 42436, + "TargetID": 42435, + "Directional": false + }, { + "SourceID": 42441, + "TargetID": 42440, + "Directional": false + }] + }, { + "ID": 1697, + "SourceStructureID": 79317, + "TargetStructureID": 3257, + "Label": "79317-3257 via Gap Junction from 98985 -> 98986", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98985, + "TargetID": 98986, + "Directional": false + }] + }, { + "ID": 1698, + "SourceStructureID": 86305, + "TargetStructureID": 3257, + "Label": "86305-3257 via Adherens from 86306 -> 86307", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86306, + "TargetID": 86307, + "Directional": false + }] + }, { + "ID": 1699, + "SourceStructureID": 86751, + "TargetStructureID": 3257, + "Label": "86751-3257 via Adherens from 86752 -> 16372", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86752, + "TargetID": 16372, + "Directional": false + }] + }, { + "ID": 1700, + "SourceStructureID": 86761, + "TargetStructureID": 3257, + "Label": "86761-3257 via Adherens from 86772 -> 9174", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86772, + "TargetID": 9174, + "Directional": false + }] + }, { + "ID": 1701, + "SourceStructureID": 86822, + "TargetStructureID": 3257, + "Label": "86822-3257 via Adherens from 86823 -> 86825, 86824 -> 86826, 86827 -> 86828, 86830 -> 86829", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86823, + "TargetID": 86825, + "Directional": false + }, { + "SourceID": 86824, + "TargetID": 86826, + "Directional": false + }, { + "SourceID": 86827, + "TargetID": 86828, + "Directional": false + }, { + "SourceID": 86830, + "TargetID": 86829, + "Directional": false + }] + }, { + "ID": 1702, + "SourceStructureID": 86876, + "TargetStructureID": 3257, + "Label": "86876-3257 via Adherens from 86880 -> 86881, 86882 -> 9173, 86884 -> 86883", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86880, + "TargetID": 86881, + "Directional": false + }, { + "SourceID": 86882, + "TargetID": 9173, + "Directional": false + }, { + "SourceID": 86884, + "TargetID": 86883, + "Directional": false + }] + }, { + "ID": 1703, + "SourceStructureID": 3257, + "TargetStructureID": 98127, + "Label": "3257-98127 via Adherens from 98900 -> 98899", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98900, + "TargetID": 98899, + "Directional": false + }] + }, { + "ID": 1704, + "SourceStructureID": 135052, + "TargetStructureID": 3257, + "Label": "135052-3257 via Gap Junction from 135057 -> 15461", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 135057, + "TargetID": 15461, + "Directional": false + }] + }, { + "ID": 1705, + "SourceStructureID": 3679, + "TargetStructureID": 3679, + "Label": "3679-3679 via Adherens from 13461 -> 130120", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 13461, + "TargetID": 130120, + "Directional": false + }] + }, { + "ID": 1706, + "SourceStructureID": 3679, + "TargetStructureID": 3679, + "Label": "3679-3679 via Gap Junction from 33033 -> 14922, 33035 -> 33034, 33037 -> 33036, 62877 -> 33029", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 33033, + "TargetID": 14922, + "Directional": false + }, { + "SourceID": 33035, + "TargetID": 33034, + "Directional": false + }, { + "SourceID": 33037, + "TargetID": 33036, + "Directional": false + }, { + "SourceID": 62877, + "TargetID": 33029, + "Directional": false + }] + }, { + "ID": 1707, + "SourceStructureID": 3679, + "TargetStructureID": 3679, + "Label": "3679-3679 via Unknown from 92720 -> 92721", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92720, + "TargetID": 92721, + "Directional": false + }] + }, { + "ID": 1708, + "SourceStructureID": 4850, + "TargetStructureID": 3679, + "Label": "4850-3679 via Adherens from 14212 -> 8016", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 14212, + "TargetID": 8016, + "Directional": false + }] + }, { + "ID": 1709, + "SourceStructureID": 3679, + "TargetStructureID": 5017, + "Label": "3679-5017 via Adherens from 115709 -> 115708", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115709, + "TargetID": 115708, + "Directional": false + }] + }, { + "ID": 1710, + "SourceStructureID": 3679, + "TargetStructureID": 5150, + "Label": "3679-5150 via Adherens from 131324 -> 131325", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131324, + "TargetID": 131325, + "Directional": false + }] + }, { + "ID": 1711, + "SourceStructureID": 5279, + "TargetStructureID": 3679, + "Label": "5279-3679 via Gap Junction from 6340 -> 3709, 6359 -> 6355, 49258 -> 3784, 92540 -> 92539, 97206 -> 97207, 97531 -> 3779, 97577 -> 27431, 133860 -> 133861, 147965 -> 3782", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 6340, + "TargetID": 3709, + "Directional": false + }, { + "SourceID": 6359, + "TargetID": 6355, + "Directional": false + }, { + "SourceID": 49258, + "TargetID": 3784, + "Directional": false + }, { + "SourceID": 92540, + "TargetID": 92539, + "Directional": false + }, { + "SourceID": 97206, + "TargetID": 97207, + "Directional": false + }, { + "SourceID": 97531, + "TargetID": 3779, + "Directional": false + }, { + "SourceID": 97577, + "TargetID": 27431, + "Directional": false + }, { + "SourceID": 133860, + "TargetID": 133861, + "Directional": false + }, { + "SourceID": 147965, + "TargetID": 3782, + "Directional": false + }] + }, { + "ID": 1712, + "SourceStructureID": 5283, + "TargetStructureID": 3679, + "Label": "5283-3679 via Adherens from 124154 -> 135063, 132179 -> 132178", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124154, + "TargetID": 135063, + "Directional": false + }, { + "SourceID": 132179, + "TargetID": 132178, + "Directional": false + }] + }, { + "ID": 1713, + "SourceStructureID": 5283, + "TargetStructureID": 3679, + "Label": "5283-3679 via Gap Junction from 22413 -> 22412, 130542 -> 130541, 131659 -> 131658, 131696 -> 131697, 132090 -> 66991, 132176 -> 132177, 132193 -> 132192, 132293 -> 132292, 132308 -> 132307, 132310 -> 132309", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 22413, + "TargetID": 22412, + "Directional": false + }, { + "SourceID": 130542, + "TargetID": 130541, + "Directional": false + }, { + "SourceID": 131659, + "TargetID": 131658, + "Directional": false + }, { + "SourceID": 131696, + "TargetID": 131697, + "Directional": false + }, { + "SourceID": 132090, + "TargetID": 66991, + "Directional": false + }, { + "SourceID": 132176, + "TargetID": 132177, + "Directional": false + }, { + "SourceID": 132193, + "TargetID": 132192, + "Directional": false + }, { + "SourceID": 132293, + "TargetID": 132292, + "Directional": false + }, { + "SourceID": 132308, + "TargetID": 132307, + "Directional": false + }, { + "SourceID": 132310, + "TargetID": 132309, + "Directional": false + }] + }, { + "ID": 1714, + "SourceStructureID": 3679, + "TargetStructureID": 5284, + "Label": "3679-5284 via Gap Junction from 7952 -> 113470, 23458 -> 5186, 61065 -> 7953, 113408 -> 113407, 113630 -> 113629, 113647 -> 113646", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 7952, + "TargetID": 113470, + "Directional": false + }, { + "SourceID": 23458, + "TargetID": 5186, + "Directional": false + }, { + "SourceID": 61065, + "TargetID": 7953, + "Directional": false + }, { + "SourceID": 113408, + "TargetID": 113407, + "Directional": false + }, { + "SourceID": 113630, + "TargetID": 113629, + "Directional": false + }, { + "SourceID": 113647, + "TargetID": 113646, + "Directional": false + }] + }, { + "ID": 1715, + "SourceStructureID": 5303, + "TargetStructureID": 3679, + "Label": "5303-3679 via Adherens from 102641 -> 102642", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 102641, + "TargetID": 102642, + "Directional": false + }] + }, { + "ID": 1716, + "SourceStructureID": 3679, + "TargetStructureID": 5394, + "Label": "3679-5394 via Adherens from 7961 -> 77065, 77066 -> 7963, 87954 -> 87953", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 7961, + "TargetID": 77065, + "Directional": false + }, { + "SourceID": 77066, + "TargetID": 7963, + "Directional": false + }, { + "SourceID": 87954, + "TargetID": 87953, + "Directional": false + }] + }, { + "ID": 1717, + "SourceStructureID": 5561, + "TargetStructureID": 3679, + "Label": "5561-3679 via Gap Junction from 97096 -> 97103", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 97096, + "TargetID": 97103, + "Directional": false + }] + }, { + "ID": 1718, + "SourceStructureID": 3679, + "TargetStructureID": 6117, + "Label": "3679-6117 via Gap Junction from 22393 -> 22392, 30881 -> 7955, 83145 -> 83144, 83947 -> 83946, 134148 -> 134147", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 22393, + "TargetID": 22392, + "Directional": false + }, { + "SourceID": 30881, + "TargetID": 7955, + "Directional": false + }, { + "SourceID": 83145, + "TargetID": 83144, + "Directional": false + }, { + "SourceID": 83947, + "TargetID": 83946, + "Directional": false + }, { + "SourceID": 134148, + "TargetID": 134147, + "Directional": false + }] + }, { + "ID": 1719, + "SourceStructureID": 6169, + "TargetStructureID": 3679, + "Label": "6169-3679 via Gap Junction from 10839 -> 3729, 14913 -> 3719, 14927 -> 9697, 14942 -> 9699, 16326 -> 8023, 16438 -> 16437, 16761 -> 16760, 18159 -> 18157, 18404 -> 18403, 24657 -> 9695, 29706 -> 29705, 41036 -> 3725, 87743 -> 3752, 87744 -> 3755, 133064 -> 132902", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10839, + "TargetID": 3729, + "Directional": false + }, { + "SourceID": 14913, + "TargetID": 3719, + "Directional": false + }, { + "SourceID": 14927, + "TargetID": 9697, + "Directional": false + }, { + "SourceID": 14942, + "TargetID": 9699, + "Directional": false + }, { + "SourceID": 16326, + "TargetID": 8023, + "Directional": false + }, { + "SourceID": 16438, + "TargetID": 16437, + "Directional": false + }, { + "SourceID": 16761, + "TargetID": 16760, + "Directional": false + }, { + "SourceID": 18159, + "TargetID": 18157, + "Directional": false + }, { + "SourceID": 18404, + "TargetID": 18403, + "Directional": false + }, { + "SourceID": 24657, + "TargetID": 9695, + "Directional": false + }, { + "SourceID": 29706, + "TargetID": 29705, + "Directional": false + }, { + "SourceID": 41036, + "TargetID": 3725, + "Directional": false + }, { + "SourceID": 87743, + "TargetID": 3752, + "Directional": false + }, { + "SourceID": 87744, + "TargetID": 3755, + "Directional": false + }, { + "SourceID": 133064, + "TargetID": 132902, + "Directional": false + }] + }, { + "ID": 1720, + "SourceStructureID": 3679, + "TargetStructureID": 7050, + "Label": "3679-7050 via Gap Junction from 7998 -> 24612", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 7998, + "TargetID": 24612, + "Directional": false + }] + }, { + "ID": 1721, + "SourceStructureID": 3679, + "TargetStructureID": 8037, + "Label": "3679-8037 via Gap Junction from 148174 -> 148173", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 148174, + "TargetID": 148173, + "Directional": false + }] + }, { + "ID": 1722, + "SourceStructureID": 3679, + "TargetStructureID": 9643, + "Label": "3679-9643 via Adherens from 9656 -> 9655", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 9656, + "TargetID": 9655, + "Directional": false + }] + }, { + "ID": 1723, + "SourceStructureID": 12897, + "TargetStructureID": 3679, + "Label": "12897-3679 via Gap Junction from 24625 -> 24624, 24746 -> 5208, 24751 -> 24750, 24755 -> 24754, 132303 -> 132304, 132312 -> 132313", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24625, + "TargetID": 24624, + "Directional": false + }, { + "SourceID": 24746, + "TargetID": 5208, + "Directional": false + }, { + "SourceID": 24751, + "TargetID": 24750, + "Directional": false + }, { + "SourceID": 24755, + "TargetID": 24754, + "Directional": false + }, { + "SourceID": 132303, + "TargetID": 132304, + "Directional": false + }, { + "SourceID": 132312, + "TargetID": 132313, + "Directional": false + }] + }, { + "ID": 1724, + "SourceStructureID": 16026, + "TargetStructureID": 3679, + "Label": "16026-3679 via Adherens from 91106 -> 134570, 92902 -> 92903, 134570 -> 91107, 134686 -> 134685", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91106, + "TargetID": 134570, + "Directional": false + }, { + "SourceID": 92902, + "TargetID": 92903, + "Directional": false + }, { + "SourceID": 134570, + "TargetID": 91107, + "Directional": false + }, { + "SourceID": 134686, + "TargetID": 134685, + "Directional": false + }] + }, { + "ID": 1725, + "SourceStructureID": 16026, + "TargetStructureID": 3679, + "Label": "16026-3679 via Gap Junction from 24594 -> 5189, 66411 -> 66410, 91052 -> 91051, 91054 -> 91053, 91108 -> 91109, 91131 -> 91141, 91259 -> 91250, 91325 -> 91174, 92566 -> 92565, 92761 -> 92760, 124831 -> 124832, 134441 -> 134440", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24594, + "TargetID": 5189, + "Directional": false + }, { + "SourceID": 66411, + "TargetID": 66410, + "Directional": false + }, { + "SourceID": 91052, + "TargetID": 91051, + "Directional": false + }, { + "SourceID": 91054, + "TargetID": 91053, + "Directional": false + }, { + "SourceID": 91108, + "TargetID": 91109, + "Directional": false + }, { + "SourceID": 91131, + "TargetID": 91141, + "Directional": false + }, { + "SourceID": 91259, + "TargetID": 91250, + "Directional": false + }, { + "SourceID": 91325, + "TargetID": 91174, + "Directional": false + }, { + "SourceID": 92566, + "TargetID": 92565, + "Directional": false + }, { + "SourceID": 92761, + "TargetID": 92760, + "Directional": false + }, { + "SourceID": 124831, + "TargetID": 124832, + "Directional": false + }, { + "SourceID": 134441, + "TargetID": 134440, + "Directional": false + }] + }, { + "ID": 1726, + "SourceStructureID": 20136, + "TargetStructureID": 3679, + "Label": "20136-3679 via Gap Junction from 120517 -> 120516", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120517, + "TargetID": 120516, + "Directional": false + }] + }, { + "ID": 1727, + "SourceStructureID": 3679, + "TargetStructureID": 39331, + "Label": "3679-39331 via Adherens from 39334 -> 39333", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 39334, + "TargetID": 39333, + "Directional": false + }] + }, { + "ID": 1728, + "SourceStructureID": 3679, + "TargetStructureID": 40931, + "Label": "3679-40931 via Adherens from 123159 -> 123158", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123159, + "TargetID": 123158, + "Directional": false + }] + }, { + "ID": 1729, + "SourceStructureID": 3679, + "TargetStructureID": 40965, + "Label": "3679-40965 via Adherens from 40972 -> 40971", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 40972, + "TargetID": 40971, + "Directional": false + }] + }, { + "ID": 1730, + "SourceStructureID": 3679, + "TargetStructureID": 79382, + "Label": "3679-79382 via Adherens from 79381 -> 79383", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79381, + "TargetID": 79383, + "Directional": false + }] + }, { + "ID": 1731, + "SourceStructureID": 83603, + "TargetStructureID": 3679, + "Label": "83603-3679 via Adherens from 134923 -> 134922", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134923, + "TargetID": 134922, + "Directional": false + }] + }, { + "ID": 1732, + "SourceStructureID": 3679, + "TargetStructureID": 97683, + "Label": "3679-97683 via Adherens from 97697 -> 97696", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97697, + "TargetID": 97696, + "Directional": false + }] + }, { + "ID": 1733, + "SourceStructureID": 3679, + "TargetStructureID": 101553, + "Label": "3679-101553 via Unknown from 101573 -> 101572", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 101573, + "TargetID": 101572, + "Directional": false + }] + }, { + "ID": 1734, + "SourceStructureID": 102599, + "TargetStructureID": 3679, + "Label": "102599-3679 via Adherens from 123152 -> 123153", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123152, + "TargetID": 123153, + "Directional": false + }] + }, { + "ID": 1735, + "SourceStructureID": 3756, + "TargetStructureID": 3756, + "Label": "3756-3756 via Gap Junction from 128841 -> 128842, 129197 -> 129198", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 128841, + "TargetID": 128842, + "Directional": false + }, { + "SourceID": 129197, + "TargetID": 129198, + "Directional": false + }] + }, { + "ID": 1736, + "SourceStructureID": 4877, + "TargetStructureID": 3756, + "Label": "4877-3756 via Gap Junction from 128983 -> 128984", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 128983, + "TargetID": 128984, + "Directional": false + }] + }, { + "ID": 1737, + "SourceStructureID": 3756, + "TargetStructureID": 5297, + "Label": "3756-5297 via Gap Junction from 120974 -> 120973", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120974, + "TargetID": 120973, + "Directional": false + }] + }, { + "ID": 1738, + "SourceStructureID": 3756, + "TargetStructureID": 5297, + "Label": "3756-5297 via Touch from 120972 -> 120971", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 120972, + "TargetID": 120971, + "Directional": false + }] + }, { + "ID": 1739, + "SourceStructureID": 5442, + "TargetStructureID": 3756, + "Label": "5442-3756 via Unknown from 129078 -> 129079", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129078, + "TargetID": 129079, + "Directional": false + }] + }, { + "ID": 1740, + "SourceStructureID": 3756, + "TargetStructureID": 5598, + "Label": "3756-5598 via Adherens from 126952 -> 127665", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126952, + "TargetID": 127665, + "Directional": false + }] + }, { + "ID": 1741, + "SourceStructureID": 5598, + "TargetStructureID": 3756, + "Label": "5598-3756 via Gap Junction from 56921 -> 56920, 116059 -> 120935, 119328 -> 119327, 120966 -> 120967, 120968 -> 120969, 123880 -> 123881, 124481 -> 124480", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56921, + "TargetID": 56920, + "Directional": false + }, { + "SourceID": 116059, + "TargetID": 120935, + "Directional": false + }, { + "SourceID": 119328, + "TargetID": 119327, + "Directional": false + }, { + "SourceID": 120966, + "TargetID": 120967, + "Directional": false + }, { + "SourceID": 120968, + "TargetID": 120969, + "Directional": false + }, { + "SourceID": 123880, + "TargetID": 123881, + "Directional": false + }, { + "SourceID": 124481, + "TargetID": 124480, + "Directional": false + }] + }, { + "ID": 1742, + "SourceStructureID": 5598, + "TargetStructureID": 3756, + "Label": "5598-3756 via Touch from 116061 -> 116060", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 116061, + "TargetID": 116060, + "Directional": false + }] + }, { + "ID": 1743, + "SourceStructureID": 5599, + "TargetStructureID": 3756, + "Label": "5599-3756 via Touch from 129089 -> 129088", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 129089, + "TargetID": 129088, + "Directional": false + }] + }, { + "ID": 1744, + "SourceStructureID": 3756, + "TargetStructureID": 6047, + "Label": "3756-6047 via Adherens from 113241 -> 113240, 129270 -> 129271, 129362 -> 129363, 129391 -> 129390", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 113241, + "TargetID": 113240, + "Directional": false + }, { + "SourceID": 129270, + "TargetID": 129271, + "Directional": false + }, { + "SourceID": 129362, + "TargetID": 129363, + "Directional": false + }, { + "SourceID": 129391, + "TargetID": 129390, + "Directional": false + }] + }, { + "ID": 1745, + "SourceStructureID": 3756, + "TargetStructureID": 6047, + "Label": "3756-6047 via Gap Junction from 53625 -> 53634, 57306 -> 57340, 112532 -> 112533, 112833 -> 112832, 113189 -> 113188, 116147 -> 116146, 120982 -> 120983, 129304 -> 129305, 129351 -> 129350, 129353 -> 129354, 129376 -> 56902, 129386 -> 129387, 129450 -> 129451", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53625, + "TargetID": 53634, + "Directional": false + }, { + "SourceID": 57306, + "TargetID": 57340, + "Directional": false + }, { + "SourceID": 112532, + "TargetID": 112533, + "Directional": false + }, { + "SourceID": 112833, + "TargetID": 112832, + "Directional": false + }, { + "SourceID": 113189, + "TargetID": 113188, + "Directional": false + }, { + "SourceID": 116147, + "TargetID": 116146, + "Directional": false + }, { + "SourceID": 120982, + "TargetID": 120983, + "Directional": false + }, { + "SourceID": 129304, + "TargetID": 129305, + "Directional": false + }, { + "SourceID": 129351, + "TargetID": 129350, + "Directional": false + }, { + "SourceID": 129353, + "TargetID": 129354, + "Directional": false + }, { + "SourceID": 129376, + "TargetID": 56902, + "Directional": false + }, { + "SourceID": 129386, + "TargetID": 129387, + "Directional": false + }, { + "SourceID": 129450, + "TargetID": 129451, + "Directional": false + }] + }, { + "ID": 1746, + "SourceStructureID": 3756, + "TargetStructureID": 6050, + "Label": "3756-6050 via Adherens from 56075 -> 56074, 113566 -> 127287, 127050 -> 127049, 127060 -> 127059, 127179 -> 127178, 127227 -> 127226, 127471 -> 127472, 127484 -> 127483, 127504 -> 127503, 127635 -> 127636, 127640 -> 127641, 127644 -> 127645, 128888 -> 128889", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 56075, + "TargetID": 56074, + "Directional": false + }, { + "SourceID": 113566, + "TargetID": 127287, + "Directional": false + }, { + "SourceID": 127050, + "TargetID": 127049, + "Directional": false + }, { + "SourceID": 127060, + "TargetID": 127059, + "Directional": false + }, { + "SourceID": 127179, + "TargetID": 127178, + "Directional": false + }, { + "SourceID": 127227, + "TargetID": 127226, + "Directional": false + }, { + "SourceID": 127471, + "TargetID": 127472, + "Directional": false + }, { + "SourceID": 127484, + "TargetID": 127483, + "Directional": false + }, { + "SourceID": 127504, + "TargetID": 127503, + "Directional": false + }, { + "SourceID": 127635, + "TargetID": 127636, + "Directional": false + }, { + "SourceID": 127640, + "TargetID": 127641, + "Directional": false + }, { + "SourceID": 127644, + "TargetID": 127645, + "Directional": false + }, { + "SourceID": 128888, + "TargetID": 128889, + "Directional": false + }] + }, { + "ID": 1747, + "SourceStructureID": 6050, + "TargetStructureID": 3756, + "Label": "6050-3756 via Gap Junction from 54413 -> 54453, 54449 -> 54450, 54454 -> 54455, 56044 -> 56042, 56070 -> 56071, 56722 -> 56052, 69843 -> 69841, 69851 -> 69850, 113879 -> 113878, 113888 -> 113887, 113893 -> 113892, 113912 -> 113911, 114002 -> 114001, 114019 -> 114016, 114042 -> 114040, 114249 -> 54443, 114252 -> 114251, 114263 -> 93261, 115758 -> 113970, 119690 -> 119689, 127101 -> 127100, 127118 -> 127119, 127535 -> 127533, 128955 -> 128956", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54413, + "TargetID": 54453, + "Directional": false + }, { + "SourceID": 54449, + "TargetID": 54450, + "Directional": false + }, { + "SourceID": 54454, + "TargetID": 54455, + "Directional": false + }, { + "SourceID": 56044, + "TargetID": 56042, + "Directional": false + }, { + "SourceID": 56070, + "TargetID": 56071, + "Directional": false + }, { + "SourceID": 56722, + "TargetID": 56052, + "Directional": false + }, { + "SourceID": 69843, + "TargetID": 69841, + "Directional": false + }, { + "SourceID": 69851, + "TargetID": 69850, + "Directional": false + }, { + "SourceID": 113879, + "TargetID": 113878, + "Directional": false + }, { + "SourceID": 113888, + "TargetID": 113887, + "Directional": false + }, { + "SourceID": 113893, + "TargetID": 113892, + "Directional": false + }, { + "SourceID": 113912, + "TargetID": 113911, + "Directional": false + }, { + "SourceID": 114002, + "TargetID": 114001, + "Directional": false + }, { + "SourceID": 114019, + "TargetID": 114016, + "Directional": false + }, { + "SourceID": 114042, + "TargetID": 114040, + "Directional": false + }, { + "SourceID": 114249, + "TargetID": 54443, + "Directional": false + }, { + "SourceID": 114252, + "TargetID": 114251, + "Directional": false + }, { + "SourceID": 114263, + "TargetID": 93261, + "Directional": false + }, { + "SourceID": 115758, + "TargetID": 113970, + "Directional": false + }, { + "SourceID": 119690, + "TargetID": 119689, + "Directional": false + }, { + "SourceID": 127101, + "TargetID": 127100, + "Directional": false + }, { + "SourceID": 127118, + "TargetID": 127119, + "Directional": false + }, { + "SourceID": 127535, + "TargetID": 127533, + "Directional": false + }, { + "SourceID": 128955, + "TargetID": 128956, + "Directional": false + }] + }, { + "ID": 1748, + "SourceStructureID": 3756, + "TargetStructureID": 6050, + "Label": "3756-6050 via Touch from 128931 -> 128932", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 128931, + "TargetID": 128932, + "Directional": false + }] + }, { + "ID": 1749, + "SourceStructureID": 3756, + "TargetStructureID": 6115, + "Label": "3756-6115 via Touch from 128950 -> 128951, 135159 -> 135158", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 128950, + "TargetID": 128951, + "Directional": false + }, { + "SourceID": 135159, + "TargetID": 135158, + "Directional": false + }] + }, { + "ID": 1750, + "SourceStructureID": 6203, + "TargetStructureID": 3756, + "Label": "6203-3756 via Gap Junction from 116195 -> 116194, 125383 -> 56915", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116195, + "TargetID": 116194, + "Directional": false + }, { + "SourceID": 125383, + "TargetID": 56915, + "Directional": false + }] + }, { + "ID": 1751, + "SourceStructureID": 7113, + "TargetStructureID": 3756, + "Label": "7113-3756 via Touch from 131386 -> 131387", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 131386, + "TargetID": 131387, + "Directional": false + }] + }, { + "ID": 1752, + "SourceStructureID": 3756, + "TargetStructureID": 7147, + "Label": "3756-7147 via Touch from 136498 -> 136499", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 136498, + "TargetID": 136499, + "Directional": false + }] + }, { + "ID": 1753, + "SourceStructureID": 56710, + "TargetStructureID": 3756, + "Label": "56710-3756 via Adherens from 120985 -> 120986", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 120985, + "TargetID": 120986, + "Directional": false + }] + }, { + "ID": 1754, + "SourceStructureID": 56710, + "TargetStructureID": 3756, + "Label": "56710-3756 via Unknown from 135966 -> 135967", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135966, + "TargetID": 135967, + "Directional": false + }] + }, { + "ID": 1755, + "SourceStructureID": 57034, + "TargetStructureID": 3756, + "Label": "57034-3756 via Unknown from 128809 -> 128808", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128809, + "TargetID": 128808, + "Directional": false + }] + }, { + "ID": 1756, + "SourceStructureID": 3756, + "TargetStructureID": 57063, + "Label": "3756-57063 via Adherens from 129067 -> 129068, 129080 -> 129081", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129067, + "TargetID": 129068, + "Directional": false + }, { + "SourceID": 129080, + "TargetID": 129081, + "Directional": false + }] + }, { + "ID": 1757, + "SourceStructureID": 3756, + "TargetStructureID": 57063, + "Label": "3756-57063 via Gap Junction from 116265 -> 116266", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116265, + "TargetID": 116266, + "Directional": false + }] + }, { + "ID": 1758, + "SourceStructureID": 3756, + "TargetStructureID": 57063, + "Label": "3756-57063 via Unknown from 129085 -> 129084", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129085, + "TargetID": 129084, + "Directional": false + }] + }, { + "ID": 1759, + "SourceStructureID": 3756, + "TargetStructureID": 57064, + "Label": "3756-57064 via Adherens from 128923 -> 128925, 128953 -> 128954", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128923, + "TargetID": 128925, + "Directional": false + }, { + "SourceID": 128953, + "TargetID": 128954, + "Directional": false + }] + }, { + "ID": 1760, + "SourceStructureID": 3756, + "TargetStructureID": 57064, + "Label": "3756-57064 via Gap Junction from 69852 -> 69853", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 69852, + "TargetID": 69853, + "Directional": false + }] + }, { + "ID": 1761, + "SourceStructureID": 3756, + "TargetStructureID": 57064, + "Label": "3756-57064 via Unknown from 127368 -> 128929, 128948 -> 128949, 136480 -> 127103, 136536 -> 136537", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127368, + "TargetID": 128929, + "Directional": false + }, { + "SourceID": 128948, + "TargetID": 128949, + "Directional": false + }, { + "SourceID": 136480, + "TargetID": 127103, + "Directional": false + }, { + "SourceID": 136536, + "TargetID": 136537, + "Directional": false + }] + }, { + "ID": 1762, + "SourceStructureID": 68539, + "TargetStructureID": 3756, + "Label": "68539-3756 via Adherens from 129284 -> 129283", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129284, + "TargetID": 129283, + "Directional": false + }] + }, { + "ID": 1763, + "SourceStructureID": 91578, + "TargetStructureID": 3756, + "Label": "91578-3756 via Adherens from 129195 -> 129194", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129195, + "TargetID": 129194, + "Directional": false + }] + }, { + "ID": 1764, + "SourceStructureID": 91867, + "TargetStructureID": 3756, + "Label": "91867-3756 via Unknown from 91868 -> 91869, 128966 -> 128967, 128974 -> 128975", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91868, + "TargetID": 91869, + "Directional": false + }, { + "SourceID": 128966, + "TargetID": 128967, + "Directional": false + }, { + "SourceID": 128974, + "TargetID": 128975, + "Directional": false + }] + }, { + "ID": 1765, + "SourceStructureID": 3756, + "TargetStructureID": 112756, + "Label": "3756-112756 via Unknown from 112759 -> 112758", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112759, + "TargetID": 112758, + "Directional": false + }] + }, { + "ID": 1766, + "SourceStructureID": 3756, + "TargetStructureID": 113140, + "Label": "3756-113140 via Adherens from 129388 -> 129389", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129388, + "TargetID": 129389, + "Directional": false + }] + }, { + "ID": 1767, + "SourceStructureID": 113153, + "TargetStructureID": 3756, + "Label": "113153-3756 via Adherens from 120978 -> 120977", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 120978, + "TargetID": 120977, + "Directional": false + }] + }, { + "ID": 1768, + "SourceStructureID": 113153, + "TargetStructureID": 3756, + "Label": "113153-3756 via Unknown from 129260 -> 129259", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129260, + "TargetID": 129259, + "Directional": false + }] + }, { + "ID": 1769, + "SourceStructureID": 3756, + "TargetStructureID": 114221, + "Label": "3756-114221 via Unknown from 136493 -> 136494", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136493, + "TargetID": 136494, + "Directional": false + }] + }, { + "ID": 1770, + "SourceStructureID": 3756, + "TargetStructureID": 116142, + "Label": "3756-116142 via Adherens from 116135 -> 129356, 116143 -> 116144, 129187 -> 129188, 129243 -> 129244, 129269 -> 129268, 129369 -> 129370", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116135, + "TargetID": 129356, + "Directional": false + }, { + "SourceID": 116143, + "TargetID": 116144, + "Directional": false + }, { + "SourceID": 129187, + "TargetID": 129188, + "Directional": false + }, { + "SourceID": 129243, + "TargetID": 129244, + "Directional": false + }, { + "SourceID": 129269, + "TargetID": 129268, + "Directional": false + }, { + "SourceID": 129369, + "TargetID": 129370, + "Directional": false + }] + }, { + "ID": 1771, + "SourceStructureID": 3756, + "TargetStructureID": 116142, + "Label": "3756-116142 via Gap Junction from 56893 -> 129357, 56919 -> 129186, 129267 -> 56891", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56893, + "TargetID": 129357, + "Directional": false + }, { + "SourceID": 56919, + "TargetID": 129186, + "Directional": false + }, { + "SourceID": 129267, + "TargetID": 56891, + "Directional": false + }] + }, { + "ID": 1772, + "SourceStructureID": 3756, + "TargetStructureID": 116142, + "Label": "3756-116142 via Unknown from 126911 -> 126912, 129230 -> 129231, 129250 -> 129245, 129279 -> 129281, 129402 -> 129401, 129408 -> 129407, 129427 -> 129428", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126911, + "TargetID": 126912, + "Directional": false + }, { + "SourceID": 129230, + "TargetID": 129231, + "Directional": false + }, { + "SourceID": 129250, + "TargetID": 129245, + "Directional": false + }, { + "SourceID": 129279, + "TargetID": 129281, + "Directional": false + }, { + "SourceID": 129402, + "TargetID": 129401, + "Directional": false + }, { + "SourceID": 129408, + "TargetID": 129407, + "Directional": false + }, { + "SourceID": 129427, + "TargetID": 129428, + "Directional": false + }] + }, { + "ID": 1773, + "SourceStructureID": 116279, + "TargetStructureID": 3756, + "Label": "116279-3756 via Adherens from 129103 -> 129102", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129103, + "TargetID": 129102, + "Directional": false + }] + }, { + "ID": 1774, + "SourceStructureID": 116279, + "TargetStructureID": 3756, + "Label": "116279-3756 via Gap Junction from 116280 -> 116278", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116280, + "TargetID": 116278, + "Directional": false + }] + }, { + "ID": 1775, + "SourceStructureID": 3756, + "TargetStructureID": 120303, + "Label": "3756-120303 via Unknown from 128898 -> 128899", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128898, + "TargetID": 128899, + "Directional": false + }] + }, { + "ID": 1776, + "SourceStructureID": 3756, + "TargetStructureID": 120311, + "Label": "3756-120311 via Unknown from 128787 -> 128788", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128787, + "TargetID": 128788, + "Directional": false + }] + }, { + "ID": 1777, + "SourceStructureID": 120339, + "TargetStructureID": 3756, + "Label": "120339-3756 via Unknown from 120342 -> 120341", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120342, + "TargetID": 120341, + "Directional": false + }] + }, { + "ID": 1778, + "SourceStructureID": 120359, + "TargetStructureID": 3756, + "Label": "120359-3756 via Adherens from 129220 -> 129219, 129225 -> 129226", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129220, + "TargetID": 129219, + "Directional": false + }, { + "SourceID": 129225, + "TargetID": 129226, + "Directional": false + }] + }, { + "ID": 1779, + "SourceStructureID": 3756, + "TargetStructureID": 120452, + "Label": "3756-120452 via Adherens from 128972 -> 128973", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128972, + "TargetID": 128973, + "Directional": false + }] + }, { + "ID": 1780, + "SourceStructureID": 120482, + "TargetStructureID": 3756, + "Label": "120482-3756 via Unknown from 129108 -> 129107", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129108, + "TargetID": 129107, + "Directional": false + }] + }, { + "ID": 1781, + "SourceStructureID": 3756, + "TargetStructureID": 120556, + "Label": "3756-120556 via Adherens from 129377 -> 129378", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129377, + "TargetID": 129378, + "Directional": false + }] + }, { + "ID": 1782, + "SourceStructureID": 3756, + "TargetStructureID": 120559, + "Label": "3756-120559 via Adherens from 129438 -> 129437", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129438, + "TargetID": 129437, + "Directional": false + }] + }, { + "ID": 1783, + "SourceStructureID": 3756, + "TargetStructureID": 120931, + "Label": "3756-120931 via Adherens from 128774 -> 128773", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128774, + "TargetID": 128773, + "Directional": false + }] + }, { + "ID": 1784, + "SourceStructureID": 3756, + "TargetStructureID": 120931, + "Label": "3756-120931 via Gap Junction from 116001 -> 120932", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116001, + "TargetID": 120932, + "Directional": false + }] + }, { + "ID": 1785, + "SourceStructureID": 120936, + "TargetStructureID": 3756, + "Label": "120936-3756 via Adherens from 129266 -> 129265", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129266, + "TargetID": 129265, + "Directional": false + }] + }, { + "ID": 1786, + "SourceStructureID": 120936, + "TargetStructureID": 3756, + "Label": "120936-3756 via Unknown from 129299 -> 129298", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129299, + "TargetID": 129298, + "Directional": false + }] + }, { + "ID": 1787, + "SourceStructureID": 3756, + "TargetStructureID": 120945, + "Label": "3756-120945 via Unknown from 129444 -> 129445", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129444, + "TargetID": 129445, + "Directional": false + }] + }, { + "ID": 1788, + "SourceStructureID": 3756, + "TargetStructureID": 120948, + "Label": "3756-120948 via Unknown from 120950 -> 120951", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120950, + "TargetID": 120951, + "Directional": false + }] + }, { + "ID": 1789, + "SourceStructureID": 3756, + "TargetStructureID": 120953, + "Label": "3756-120953 via Adherens from 116234 -> 128936, 128935 -> 128934", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116234, + "TargetID": 128936, + "Directional": false + }, { + "SourceID": 128935, + "TargetID": 128934, + "Directional": false + }] + }, { + "ID": 1790, + "SourceStructureID": 3756, + "TargetStructureID": 120953, + "Label": "3756-120953 via Gap Junction from 116235 -> 120954", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116235, + "TargetID": 120954, + "Directional": false + }] + }, { + "ID": 1791, + "SourceStructureID": 120956, + "TargetStructureID": 3756, + "Label": "120956-3756 via Adherens from 128938 -> 57030", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 128938, + "TargetID": 57030, + "Directional": false + }] + }, { + "ID": 1792, + "SourceStructureID": 120956, + "TargetStructureID": 3756, + "Label": "120956-3756 via Gap Junction from 120958 -> 116236", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120958, + "TargetID": 116236, + "Directional": false + }] + }, { + "ID": 1793, + "SourceStructureID": 120956, + "TargetStructureID": 3756, + "Label": "120956-3756 via Unknown from 128988 -> 128987", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128988, + "TargetID": 128987, + "Directional": false + }] + }, { + "ID": 1794, + "SourceStructureID": 120960, + "TargetStructureID": 3756, + "Label": "120960-3756 via Unknown from 129073 -> 129072", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129073, + "TargetID": 129072, + "Directional": false + }] + }, { + "ID": 1795, + "SourceStructureID": 3756, + "TargetStructureID": 124198, + "Label": "3756-124198 via Unknown from 116287 -> 124203, 127286 -> 116277, 129109 -> 129110", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116287, + "TargetID": 124203, + "Directional": false + }, { + "SourceID": 127286, + "TargetID": 116277, + "Directional": false + }, { + "SourceID": 129109, + "TargetID": 129110, + "Directional": false + }] + }, { + "ID": 1796, + "SourceStructureID": 128961, + "TargetStructureID": 3756, + "Label": "128961-3756 via Unknown from 128963 -> 120952, 128964 -> 128965", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128963, + "TargetID": 120952, + "Directional": false + }, { + "SourceID": 128964, + "TargetID": 128965, + "Directional": false + }] + }, { + "ID": 1797, + "SourceStructureID": 136486, + "TargetStructureID": 3756, + "Label": "136486-3756 via Adherens from 136488 -> 120970", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136488, + "TargetID": 120970, + "Directional": false + }] + }, { + "ID": 1798, + "SourceStructureID": 136486, + "TargetStructureID": 3756, + "Label": "136486-3756 via Gap Junction from 136487 -> 128772", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136487, + "TargetID": 128772, + "Directional": false + }] + }, { + "ID": 1799, + "SourceStructureID": 3756, + "TargetStructureID": 136531, + "Label": "3756-136531 via Gap Junction from 56914 -> 136532", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56914, + "TargetID": 136532, + "Directional": false + }] + }, { + "ID": 1800, + "SourceStructureID": 3881, + "TargetStructureID": 5609, + "Label": "3881-5609 via Adherens from 64537 -> 64538", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64537, + "TargetID": 64538, + "Directional": false + }] + }, { + "ID": 1801, + "SourceStructureID": 8580, + "TargetStructureID": 3881, + "Label": "8580-3881 via Touch from 59832 -> 59833", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 59832, + "TargetID": 59833, + "Directional": false + }] + }, { + "ID": 1802, + "SourceStructureID": 88666, + "TargetStructureID": 3928, + "Label": "88666-3928 via Adherens from 88672 -> 41256", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88672, + "TargetID": 41256, + "Directional": false + }] + }, { + "ID": 1803, + "SourceStructureID": 117778, + "TargetStructureID": 3928, + "Label": "117778-3928 via Gap Junction from 117782 -> 57008, 117785 -> 117786", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117782, + "TargetID": 57008, + "Directional": false + }, { + "SourceID": 117785, + "TargetID": 117786, + "Directional": false + }] + }, { + "ID": 1804, + "SourceStructureID": 97828, + "TargetStructureID": 4568, + "Label": "97828-4568 via Gap Junction from 97832 -> 97831", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 97832, + "TargetID": 97831, + "Directional": false + }] + }, { + "ID": 1805, + "SourceStructureID": 4569, + "TargetStructureID": 4569, + "Label": "4569-4569 via Adherens from 97777 -> 97776", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97777, + "TargetID": 97776, + "Directional": false + }] + }, { + "ID": 1806, + "SourceStructureID": 4835, + "TargetStructureID": 4569, + "Label": "4835-4569 via Gap Junction from 98688 -> 98687, 98965 -> 98964", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98688, + "TargetID": 98687, + "Directional": false + }, { + "SourceID": 98965, + "TargetID": 98964, + "Directional": false + }] + }, { + "ID": 1807, + "SourceStructureID": 4569, + "TargetStructureID": 6155, + "Label": "4569-6155 via Unknown from 131404 -> 131405", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131404, + "TargetID": 131405, + "Directional": false + }] + }, { + "ID": 1808, + "SourceStructureID": 6300, + "TargetStructureID": 4569, + "Label": "6300-4569 via Adherens from 99068 -> 6298", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99068, + "TargetID": 6298, + "Directional": false + }] + }, { + "ID": 1809, + "SourceStructureID": 4569, + "TargetStructureID": 21299, + "Label": "4569-21299 via Gap Junction from 23795 -> 48486, 46343 -> 46342, 48491 -> 48492, 48869 -> 91770, 91761 -> 91762, 91763 -> 91764", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 23795, + "TargetID": 48486, + "Directional": false + }, { + "SourceID": 46343, + "TargetID": 46342, + "Directional": false + }, { + "SourceID": 48491, + "TargetID": 48492, + "Directional": false + }, { + "SourceID": 48869, + "TargetID": 91770, + "Directional": false + }, { + "SourceID": 91761, + "TargetID": 91762, + "Directional": false + }, { + "SourceID": 91763, + "TargetID": 91764, + "Directional": false + }] + }, { + "ID": 1810, + "SourceStructureID": 4569, + "TargetStructureID": 21299, + "Label": "4569-21299 via Unknown from 92842 -> 92843", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92842, + "TargetID": 92843, + "Directional": false + }] + }, { + "ID": 1811, + "SourceStructureID": 97800, + "TargetStructureID": 4569, + "Label": "97800-4569 via Unknown from 97802 -> 97801", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97802, + "TargetID": 97801, + "Directional": false + }] + }, { + "ID": 1812, + "SourceStructureID": 97828, + "TargetStructureID": 4569, + "Label": "97828-4569 via Adherens from 97829 -> 97827", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97829, + "TargetID": 97827, + "Directional": false + }] + }, { + "ID": 1813, + "SourceStructureID": 4569, + "TargetStructureID": 98161, + "Label": "4569-98161 via Gap Junction from 52490 -> 98162", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52490, + "TargetID": 98162, + "Directional": false + }] + }, { + "ID": 1814, + "SourceStructureID": 4569, + "TargetStructureID": 98167, + "Label": "4569-98167 via Adherens from 98170 -> 98169", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98170, + "TargetID": 98169, + "Directional": false + }] + }, { + "ID": 1815, + "SourceStructureID": 4569, + "TargetStructureID": 98314, + "Label": "4569-98314 via Unknown from 98316 -> 98315", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98316, + "TargetID": 98315, + "Directional": false + }] + }, { + "ID": 1816, + "SourceStructureID": 98317, + "TargetStructureID": 4569, + "Label": "98317-4569 via Unknown from 98318 -> 98319", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98318, + "TargetID": 98319, + "Directional": false + }] + }, { + "ID": 1817, + "SourceStructureID": 4569, + "TargetStructureID": 98321, + "Label": "4569-98321 via Unknown from 98320 -> 98322", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98320, + "TargetID": 98322, + "Directional": false + }] + }, { + "ID": 1818, + "SourceStructureID": 98505, + "TargetStructureID": 4569, + "Label": "98505-4569 via Gap Junction from 98506 -> 65201", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98506, + "TargetID": 65201, + "Directional": false + }] + }, { + "ID": 1819, + "SourceStructureID": 4569, + "TargetStructureID": 98663, + "Label": "4569-98663 via Adherens from 98666 -> 98665", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98666, + "TargetID": 98665, + "Directional": false + }] + }, { + "ID": 1820, + "SourceStructureID": 4569, + "TargetStructureID": 98679, + "Label": "4569-98679 via Gap Junction from 98678 -> 98680", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98678, + "TargetID": 98680, + "Directional": false + }] + }, { + "ID": 1821, + "SourceStructureID": 98949, + "TargetStructureID": 4569, + "Label": "98949-4569 via Gap Junction from 98952 -> 52545", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98952, + "TargetID": 52545, + "Directional": false + }] + }, { + "ID": 1822, + "SourceStructureID": 99016, + "TargetStructureID": 4569, + "Label": "99016-4569 via Adherens from 99017 -> 99015", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99017, + "TargetID": 99015, + "Directional": false + }] + }, { + "ID": 1823, + "SourceStructureID": 99025, + "TargetStructureID": 4569, + "Label": "99025-4569 via Adherens from 99028 -> 99024", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99028, + "TargetID": 99024, + "Directional": false + }] + }, { + "ID": 1824, + "SourceStructureID": 4569, + "TargetStructureID": 99032, + "Label": "4569-99032 via Adherens from 99038 -> 99037", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99038, + "TargetID": 99037, + "Directional": false + }] + }, { + "ID": 1825, + "SourceStructureID": 4569, + "TargetStructureID": 106438, + "Label": "4569-106438 via Adherens from 131401 -> 106440", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131401, + "TargetID": 106440, + "Directional": false + }] + }, { + "ID": 1826, + "SourceStructureID": 4570, + "TargetStructureID": 29277, + "Label": "4570-29277 via Adherens from 29299 -> 29298", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 29299, + "TargetID": 29298, + "Directional": false + }] + }, { + "ID": 1827, + "SourceStructureID": 60798, + "TargetStructureID": 4570, + "Label": "60798-4570 via Touch from 60800 -> 60801", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 60800, + "TargetID": 60801, + "Directional": false + }] + }, { + "ID": 1828, + "SourceStructureID": 4835, + "TargetStructureID": 4835, + "Label": "4835-4835 via Gap Junction from 12777 -> 8394", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 12777, + "TargetID": 8394, + "Directional": false + }] + }, { + "ID": 1829, + "SourceStructureID": 5457, + "TargetStructureID": 4835, + "Label": "5457-4835 via Adherens from 87844 -> 87843, 87852 -> 87851", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87844, + "TargetID": 87843, + "Directional": false + }, { + "SourceID": 87852, + "TargetID": 87851, + "Directional": false + }] + }, { + "ID": 1830, + "SourceStructureID": 4835, + "TargetStructureID": 6153, + "Label": "4835-6153 via Gap Junction from 29515 -> 17476, 29606 -> 17479", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29515, + "TargetID": 17476, + "Directional": false + }, { + "SourceID": 29606, + "TargetID": 17479, + "Directional": false + }] + }, { + "ID": 1831, + "SourceStructureID": 7157, + "TargetStructureID": 4835, + "Label": "7157-4835 via Gap Junction from 24539 -> 24538", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24539, + "TargetID": 24538, + "Directional": false + }] + }, { + "ID": 1832, + "SourceStructureID": 4835, + "TargetStructureID": 7564, + "Label": "4835-7564 via Gap Junction from 29642 -> 29641, 29673 -> 29671", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29642, + "TargetID": 29641, + "Directional": false + }, { + "SourceID": 29673, + "TargetID": 29671, + "Directional": false + }] + }, { + "ID": 1833, + "SourceStructureID": 7860, + "TargetStructureID": 4835, + "Label": "7860-4835 via Gap Junction from 29668 -> 29667", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29668, + "TargetID": 29667, + "Directional": false + }] + }, { + "ID": 1834, + "SourceStructureID": 7861, + "TargetStructureID": 4835, + "Label": "7861-4835 via Gap Junction from 29646 -> 29645", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29646, + "TargetID": 29645, + "Directional": false + }] + }, { + "ID": 1835, + "SourceStructureID": 71935, + "TargetStructureID": 4835, + "Label": "71935-4835 via Gap Junction from 71944 -> 71945, 95218 -> 8392, 120387 -> 120388, 120391 -> 120392", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71944, + "TargetID": 71945, + "Directional": false + }, { + "SourceID": 95218, + "TargetID": 8392, + "Directional": false + }, { + "SourceID": 120387, + "TargetID": 120388, + "Directional": false + }, { + "SourceID": 120391, + "TargetID": 120392, + "Directional": false + }] + }, { + "ID": 1836, + "SourceStructureID": 105212, + "TargetStructureID": 4835, + "Label": "105212-4835 via Unknown from 105760 -> 105761", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105760, + "TargetID": 105761, + "Directional": false + }] + }, { + "ID": 1837, + "SourceStructureID": 122595, + "TargetStructureID": 4835, + "Label": "122595-4835 via Gap Junction from 122597 -> 122596, 122599 -> 122598", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122597, + "TargetID": 122596, + "Directional": false + }, { + "SourceID": 122599, + "TargetID": 122598, + "Directional": false + }] + }, { + "ID": 1838, + "SourceStructureID": 4835, + "TargetStructureID": 135225, + "Label": "4835-135225 via Touch from 135238 -> 135237", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 135238, + "TargetID": 135237, + "Directional": false + }] + }, { + "ID": 1839, + "SourceStructureID": 4850, + "TargetStructureID": 6169, + "Label": "4850-6169 via Adherens from 14197 -> 14198, 33897 -> 33896, 98115 -> 9467, 98117 -> 9463", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 14197, + "TargetID": 14198, + "Directional": false + }, { + "SourceID": 33897, + "TargetID": 33896, + "Directional": false + }, { + "SourceID": 98115, + "TargetID": 9467, + "Directional": false + }, { + "SourceID": 98117, + "TargetID": 9463, + "Directional": false + }] + }, { + "ID": 1840, + "SourceStructureID": 40896, + "TargetStructureID": 4850, + "Label": "40896-4850 via Gap Junction from 89980 -> 89981", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89980, + "TargetID": 89981, + "Directional": false + }] + }, { + "ID": 1841, + "SourceStructureID": 40896, + "TargetStructureID": 4850, + "Label": "40896-4850 via Unknown from 98124 -> 98123", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98124, + "TargetID": 98123, + "Directional": false + }] + }, { + "ID": 1842, + "SourceStructureID": 4877, + "TargetStructureID": 4877, + "Label": "4877-4877 via Adherens from 135639 -> 135640", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135639, + "TargetID": 135640, + "Directional": false + }] + }, { + "ID": 1843, + "SourceStructureID": 4877, + "TargetStructureID": 4877, + "Label": "4877-4877 via Gap Junction from 126623 -> 126622, 126755 -> 126756, 126869 -> 126868, 134129 -> 134128, 135637 -> 135638", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 126623, + "TargetID": 126622, + "Directional": false + }, { + "SourceID": 126755, + "TargetID": 126756, + "Directional": false + }, { + "SourceID": 126869, + "TargetID": 126868, + "Directional": false + }, { + "SourceID": 134129, + "TargetID": 134128, + "Directional": false + }, { + "SourceID": 135637, + "TargetID": 135638, + "Directional": false + }] + }, { + "ID": 1844, + "SourceStructureID": 5107, + "TargetStructureID": 4877, + "Label": "5107-4877 via Adherens from 91355 -> 91354", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91355, + "TargetID": 91354, + "Directional": false + }] + }, { + "ID": 1845, + "SourceStructureID": 4877, + "TargetStructureID": 5442, + "Label": "4877-5442 via Unknown from 126637 -> 126638", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126637, + "TargetID": 126638, + "Directional": false + }] + }, { + "ID": 1846, + "SourceStructureID": 5468, + "TargetStructureID": 4877, + "Label": "5468-4877 via Adherens from 135969 -> 135968", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135969, + "TargetID": 135968, + "Directional": false + }] + }, { + "ID": 1847, + "SourceStructureID": 5468, + "TargetStructureID": 4877, + "Label": "5468-4877 via Gap Junction from 54712 -> 54711", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54712, + "TargetID": 54711, + "Directional": false + }] + }, { + "ID": 1848, + "SourceStructureID": 4877, + "TargetStructureID": 5598, + "Label": "4877-5598 via Adherens from 126734 -> 126735, 126942 -> 126943, 126949 -> 126950, 135949 -> 135948, 135970 -> 135971, 135974 -> 135973", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126734, + "TargetID": 126735, + "Directional": false + }, { + "SourceID": 126942, + "TargetID": 126943, + "Directional": false + }, { + "SourceID": 126949, + "TargetID": 126950, + "Directional": false + }, { + "SourceID": 135949, + "TargetID": 135948, + "Directional": false + }, { + "SourceID": 135970, + "TargetID": 135971, + "Directional": false + }, { + "SourceID": 135974, + "TargetID": 135973, + "Directional": false + }] + }, { + "ID": 1849, + "SourceStructureID": 4877, + "TargetStructureID": 5598, + "Label": "4877-5598 via Gap Junction from 56784 -> 56782, 57080 -> 56792, 59063 -> 59062, 91383 -> 91382, 91394 -> 91393, 114980 -> 114979, 114993 -> 114992, 115163 -> 115164, 123794 -> 123793, 124259 -> 124258, 126740 -> 126739", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56784, + "TargetID": 56782, + "Directional": false + }, { + "SourceID": 57080, + "TargetID": 56792, + "Directional": false + }, { + "SourceID": 59063, + "TargetID": 59062, + "Directional": false + }, { + "SourceID": 91383, + "TargetID": 91382, + "Directional": false + }, { + "SourceID": 91394, + "TargetID": 91393, + "Directional": false + }, { + "SourceID": 114980, + "TargetID": 114979, + "Directional": false + }, { + "SourceID": 114993, + "TargetID": 114992, + "Directional": false + }, { + "SourceID": 115163, + "TargetID": 115164, + "Directional": false + }, { + "SourceID": 123794, + "TargetID": 123793, + "Directional": false + }, { + "SourceID": 124259, + "TargetID": 124258, + "Directional": false + }, { + "SourceID": 126740, + "TargetID": 126739, + "Directional": false + }] + }, { + "ID": 1850, + "SourceStructureID": 4877, + "TargetStructureID": 5601, + "Label": "4877-5601 via Adherens from 91402 -> 91403, 135621 -> 135622, 135649 -> 135650, 135656 -> 135657, 135661 -> 135660, 135664 -> 135663, 135665 -> 135666, 135668 -> 135667, 135669 -> 135670, 135672 -> 135673", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91402, + "TargetID": 91403, + "Directional": false + }, { + "SourceID": 135621, + "TargetID": 135622, + "Directional": false + }, { + "SourceID": 135649, + "TargetID": 135650, + "Directional": false + }, { + "SourceID": 135656, + "TargetID": 135657, + "Directional": false + }, { + "SourceID": 135661, + "TargetID": 135660, + "Directional": false + }, { + "SourceID": 135664, + "TargetID": 135663, + "Directional": false + }, { + "SourceID": 135665, + "TargetID": 135666, + "Directional": false + }, { + "SourceID": 135668, + "TargetID": 135667, + "Directional": false + }, { + "SourceID": 135669, + "TargetID": 135670, + "Directional": false + }, { + "SourceID": 135672, + "TargetID": 135673, + "Directional": false + }] + }, { + "ID": 1851, + "SourceStructureID": 5601, + "TargetStructureID": 4877, + "Label": "5601-4877 via Gap Junction from 24363 -> 23962, 56637 -> 56597, 57189 -> 57188, 59060 -> 59059, 91309 -> 91308, 91330 -> 91329, 91333 -> 91332, 91335 -> 91334, 91347 -> 91299, 91389 -> 91387, 91411 -> 91410, 91421 -> 91420, 91437 -> 126483, 91438 -> 91439, 91525 -> 91526, 92510 -> 92511, 92513 -> 92512, 126512 -> 126513, 126529 -> 126530, 126579 -> 126580, 126690 -> 126691, 126803 -> 126804, 126825 -> 126826, 134124 -> 134125, 134136 -> 134137", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24363, + "TargetID": 23962, + "Directional": false + }, { + "SourceID": 56637, + "TargetID": 56597, + "Directional": false + }, { + "SourceID": 57189, + "TargetID": 57188, + "Directional": false + }, { + "SourceID": 59060, + "TargetID": 59059, + "Directional": false + }, { + "SourceID": 91309, + "TargetID": 91308, + "Directional": false + }, { + "SourceID": 91330, + "TargetID": 91329, + "Directional": false + }, { + "SourceID": 91333, + "TargetID": 91332, + "Directional": false + }, { + "SourceID": 91335, + "TargetID": 91334, + "Directional": false + }, { + "SourceID": 91347, + "TargetID": 91299, + "Directional": false + }, { + "SourceID": 91389, + "TargetID": 91387, + "Directional": false + }, { + "SourceID": 91411, + "TargetID": 91410, + "Directional": false + }, { + "SourceID": 91421, + "TargetID": 91420, + "Directional": false + }, { + "SourceID": 91437, + "TargetID": 126483, + "Directional": false + }, { + "SourceID": 91438, + "TargetID": 91439, + "Directional": false + }, { + "SourceID": 91525, + "TargetID": 91526, + "Directional": false + }, { + "SourceID": 92510, + "TargetID": 92511, + "Directional": false + }, { + "SourceID": 92513, + "TargetID": 92512, + "Directional": false + }, { + "SourceID": 126512, + "TargetID": 126513, + "Directional": false + }, { + "SourceID": 126529, + "TargetID": 126530, + "Directional": false + }, { + "SourceID": 126579, + "TargetID": 126580, + "Directional": false + }, { + "SourceID": 126690, + "TargetID": 126691, + "Directional": false + }, { + "SourceID": 126803, + "TargetID": 126804, + "Directional": false + }, { + "SourceID": 126825, + "TargetID": 126826, + "Directional": false + }, { + "SourceID": 134124, + "TargetID": 134125, + "Directional": false + }, { + "SourceID": 134136, + "TargetID": 134137, + "Directional": false + }] + }, { + "ID": 1852, + "SourceStructureID": 5601, + "TargetStructureID": 4877, + "Label": "5601-4877 via Touch from 126523 -> 126522", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 126523, + "TargetID": 126522, + "Directional": false + }] + }, { + "ID": 1853, + "SourceStructureID": 5637, + "TargetStructureID": 4877, + "Label": "5637-4877 via Gap Junction from 134134 -> 134135, 135632 -> 135633", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 134134, + "TargetID": 134135, + "Directional": false + }, { + "SourceID": 135632, + "TargetID": 135633, + "Directional": false + }] + }, { + "ID": 1854, + "SourceStructureID": 4877, + "TargetStructureID": 6117, + "Label": "4877-6117 via Adherens from 131113 -> 131114, 134131 -> 134130", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131113, + "TargetID": 131114, + "Directional": false + }, { + "SourceID": 134131, + "TargetID": 134130, + "Directional": false + }] + }, { + "ID": 1855, + "SourceStructureID": 4877, + "TargetStructureID": 6117, + "Label": "4877-6117 via Gap Junction from 46602 -> 46408, 56788 -> 56787, 134133 -> 134132", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46602, + "TargetID": 46408, + "Directional": false + }, { + "SourceID": 56788, + "TargetID": 56787, + "Directional": false + }, { + "SourceID": 134133, + "TargetID": 134132, + "Directional": false + }] + }, { + "ID": 1856, + "SourceStructureID": 6117, + "TargetStructureID": 4877, + "Label": "6117-4877 via Touch from 134144 -> 134143", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 134144, + "TargetID": 134143, + "Directional": false + }] + }, { + "ID": 1857, + "SourceStructureID": 7113, + "TargetStructureID": 4877, + "Label": "7113-4877 via Gap Junction from 91366 -> 91365", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91366, + "TargetID": 91365, + "Directional": false + }] + }, { + "ID": 1858, + "SourceStructureID": 7114, + "TargetStructureID": 4877, + "Label": "7114-4877 via Gap Junction from 91563 -> 91564, 135965 -> 135644", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91563, + "TargetID": 91564, + "Directional": false + }, { + "SourceID": 135965, + "TargetID": 135644, + "Directional": false + }] + }, { + "ID": 1859, + "SourceStructureID": 4877, + "TargetStructureID": 7114, + "Label": "4877-7114 via Touch from 126832 -> 126833", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 126832, + "TargetID": 126833, + "Directional": false + }] + }, { + "ID": 1860, + "SourceStructureID": 15796, + "TargetStructureID": 4877, + "Label": "15796-4877 via Postsynapse from 46583 -> 46582", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 46583, + "TargetID": 46582, + "Directional": false + }] + }, { + "ID": 1861, + "SourceStructureID": 15976, + "TargetStructureID": 4877, + "Label": "15976-4877 via Gap Junction from 54718 -> 54719", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54718, + "TargetID": 54719, + "Directional": false + }] + }, { + "ID": 1862, + "SourceStructureID": 4877, + "TargetStructureID": 23836, + "Label": "4877-23836 via Unknown from 126806 -> 126807", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126806, + "TargetID": 126807, + "Directional": false + }] + }, { + "ID": 1863, + "SourceStructureID": 4877, + "TargetStructureID": 35212, + "Label": "4877-35212 via Unknown from 126554 -> 126555", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126554, + "TargetID": 126555, + "Directional": false + }] + }, { + "ID": 1864, + "SourceStructureID": 54776, + "TargetStructureID": 4877, + "Label": "54776-4877 via Unknown from 126831 -> 126830", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126831, + "TargetID": 126830, + "Directional": false + }] + }, { + "ID": 1865, + "SourceStructureID": 4877, + "TargetStructureID": 56710, + "Label": "4877-56710 via Gap Junction from 46580 -> 56711", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46580, + "TargetID": 56711, + "Directional": false + }] + }, { + "ID": 1866, + "SourceStructureID": 56712, + "TargetStructureID": 4877, + "Label": "56712-4877 via Gap Junction from 56713 -> 46599", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56713, + "TargetID": 46599, + "Directional": false + }] + }, { + "ID": 1867, + "SourceStructureID": 4877, + "TargetStructureID": 56712, + "Label": "4877-56712 via Unknown from 91418 -> 91417", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91418, + "TargetID": 91417, + "Directional": false + }] + }, { + "ID": 1868, + "SourceStructureID": 4877, + "TargetStructureID": 58714, + "Label": "4877-58714 via Adherens from 126617 -> 126618", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126617, + "TargetID": 126618, + "Directional": false + }] + }, { + "ID": 1869, + "SourceStructureID": 60590, + "TargetStructureID": 4877, + "Label": "60590-4877 via Unknown from 91386 -> 91385", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91386, + "TargetID": 91385, + "Directional": false + }] + }, { + "ID": 1870, + "SourceStructureID": 4877, + "TargetStructureID": 91380, + "Label": "4877-91380 via Unknown from 91379 -> 91381", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91379, + "TargetID": 91381, + "Directional": false + }] + }, { + "ID": 1871, + "SourceStructureID": 124069, + "TargetStructureID": 4877, + "Label": "124069-4877 via Adherens from 126665 -> 126664", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126665, + "TargetID": 126664, + "Directional": false + }] + }, { + "ID": 1872, + "SourceStructureID": 126536, + "TargetStructureID": 4877, + "Label": "126536-4877 via Adherens from 126539 -> 126535", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126539, + "TargetID": 126535, + "Directional": false + }] + }, { + "ID": 1873, + "SourceStructureID": 4877, + "TargetStructureID": 126585, + "Label": "4877-126585 via Unknown from 126584 -> 126587", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126584, + "TargetID": 126587, + "Directional": false + }] + }, { + "ID": 1874, + "SourceStructureID": 126646, + "TargetStructureID": 4877, + "Label": "126646-4877 via Adherens from 135954 -> 135953", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135954, + "TargetID": 135953, + "Directional": false + }] + }, { + "ID": 1875, + "SourceStructureID": 126763, + "TargetStructureID": 4877, + "Label": "126763-4877 via Postsynapse from 126764 -> 126762", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 126764, + "TargetID": 126762, + "Directional": false + }] + }, { + "ID": 1876, + "SourceStructureID": 135956, + "TargetStructureID": 4877, + "Label": "135956-4877 via Adherens from 135957 -> 135635", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135957, + "TargetID": 135635, + "Directional": false + }] + }, { + "ID": 1877, + "SourceStructureID": 135956, + "TargetStructureID": 4877, + "Label": "135956-4877 via Gap Junction from 135958 -> 135634", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 135958, + "TargetID": 135634, + "Directional": false + }] + }, { + "ID": 1878, + "SourceStructureID": 4890, + "TargetStructureID": 5117, + "Label": "4890-5117 via Adherens from 28783 -> 28782, 28786 -> 28785, 28789 -> 4899, 28791 -> 28790, 28792 -> 4901, 28794 -> 4902, 28795 -> 4903", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 28783, + "TargetID": 28782, + "Directional": false + }, { + "SourceID": 28786, + "TargetID": 28785, + "Directional": false + }, { + "SourceID": 28789, + "TargetID": 4899, + "Directional": false + }, { + "SourceID": 28791, + "TargetID": 28790, + "Directional": false + }, { + "SourceID": 28792, + "TargetID": 4901, + "Directional": false + }, { + "SourceID": 28794, + "TargetID": 4902, + "Directional": false + }, { + "SourceID": 28795, + "TargetID": 4903, + "Directional": false + }] + }, { + "ID": 1879, + "SourceStructureID": 6156, + "TargetStructureID": 4890, + "Label": "6156-4890 via Unknown from 133441 -> 133442, 133468 -> 133467", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133441, + "TargetID": 133442, + "Directional": false + }, { + "SourceID": 133468, + "TargetID": 133467, + "Directional": false + }] + }, { + "ID": 1880, + "SourceStructureID": 8576, + "TargetStructureID": 4890, + "Label": "8576-4890 via Adherens from 20064 -> 20065", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 20064, + "TargetID": 20065, + "Directional": false + }] + }, { + "ID": 1881, + "SourceStructureID": 4890, + "TargetStructureID": 8577, + "Label": "4890-8577 via Adherens from 31019 -> 31018, 71060 -> 7922", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 31019, + "TargetID": 31018, + "Directional": false + }, { + "SourceID": 71060, + "TargetID": 7922, + "Directional": false + }] + }, { + "ID": 1882, + "SourceStructureID": 4943, + "TargetStructureID": 5634, + "Label": "4943-5634 via Adherens from 8722 -> 8721", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 8722, + "TargetID": 8721, + "Directional": false + }] + }, { + "ID": 1883, + "SourceStructureID": 42968, + "TargetStructureID": 4943, + "Label": "42968-4943 via Adherens from 60813 -> 60812", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60813, + "TargetID": 60812, + "Directional": false + }] + }, { + "ID": 1884, + "SourceStructureID": 5017, + "TargetStructureID": 5017, + "Label": "5017-5017 via Adherens from 92258 -> 92259", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92258, + "TargetID": 92259, + "Directional": false + }] + }, { + "ID": 1885, + "SourceStructureID": 35176, + "TargetStructureID": 5017, + "Label": "35176-5017 via Adherens from 158798 -> 158788", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 158798, + "TargetID": 158788, + "Directional": false + }] + }, { + "ID": 1886, + "SourceStructureID": 5017, + "TargetStructureID": 61214, + "Label": "5017-61214 via Adherens from 61218 -> 61217", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 61218, + "TargetID": 61217, + "Directional": false + }] + }, { + "ID": 1887, + "SourceStructureID": 5017, + "TargetStructureID": 61231, + "Label": "5017-61231 via Adherens from 61240 -> 61238", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 61240, + "TargetID": 61238, + "Directional": false + }] + }, { + "ID": 1888, + "SourceStructureID": 5107, + "TargetStructureID": 61836, + "Label": "5107-61836 via Adherens from 67515 -> 67514", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67515, + "TargetID": 67514, + "Directional": false + }] + }, { + "ID": 1889, + "SourceStructureID": 5107, + "TargetStructureID": 68023, + "Label": "5107-68023 via Adherens from 68659 -> 68658", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68659, + "TargetID": 68658, + "Directional": false + }] + }, { + "ID": 1890, + "SourceStructureID": 68548, + "TargetStructureID": 5107, + "Label": "68548-5107 via Adherens from 75692 -> 75693", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75692, + "TargetID": 75693, + "Directional": false + }] + }, { + "ID": 1891, + "SourceStructureID": 5107, + "TargetStructureID": 87972, + "Label": "5107-87972 via Adherens from 88026 -> 88025", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88026, + "TargetID": 88025, + "Directional": false + }] + }, { + "ID": 1892, + "SourceStructureID": 5107, + "TargetStructureID": 112937, + "Label": "5107-112937 via Adherens from 112932 -> 112939", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112932, + "TargetID": 112939, + "Directional": false + }] + }, { + "ID": 1893, + "SourceStructureID": 5107, + "TargetStructureID": 148337, + "Label": "5107-148337 via Adherens from 148341 -> 148340", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148341, + "TargetID": 148340, + "Directional": false + }] + }, { + "ID": 1894, + "SourceStructureID": 5117, + "TargetStructureID": 5117, + "Label": "5117-5117 via Unknown from 131397 -> 131398", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131397, + "TargetID": 131398, + "Directional": false + }] + }, { + "ID": 1895, + "SourceStructureID": 5118, + "TargetStructureID": 5117, + "Label": "5118-5117 via Gap Junction from 133235 -> 133236", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 133235, + "TargetID": 133236, + "Directional": false + }] + }, { + "ID": 1896, + "SourceStructureID": 7157, + "TargetStructureID": 5117, + "Label": "7157-5117 via Touch from 135195 -> 135194", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 135195, + "TargetID": 135194, + "Directional": false + }] + }, { + "ID": 1897, + "SourceStructureID": 5117, + "TargetStructureID": 8579, + "Label": "5117-8579 via Adherens from 66344 -> 66345, 66346 -> 66347, 66350 -> 66351", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66344, + "TargetID": 66345, + "Directional": false + }, { + "SourceID": 66346, + "TargetID": 66347, + "Directional": false + }, { + "SourceID": 66350, + "TargetID": 66351, + "Directional": false + }] + }, { + "ID": 1898, + "SourceStructureID": 5117, + "TargetStructureID": 16026, + "Label": "5117-16026 via Unknown from 114666 -> 114665", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114666, + "TargetID": 114665, + "Directional": false + }] + }, { + "ID": 1899, + "SourceStructureID": 5117, + "TargetStructureID": 61864, + "Label": "5117-61864 via Adherens from 69336 -> 69339, 69337 -> 69340, 69338 -> 69341", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 69336, + "TargetID": 69339, + "Directional": false + }, { + "SourceID": 69337, + "TargetID": 69340, + "Directional": false + }, { + "SourceID": 69338, + "TargetID": 69341, + "Directional": false + }] + }, { + "ID": 1900, + "SourceStructureID": 68548, + "TargetStructureID": 5117, + "Label": "68548-5117 via Adherens from 73581 -> 65507", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73581, + "TargetID": 65507, + "Directional": false + }] + }, { + "ID": 1901, + "SourceStructureID": 5117, + "TargetStructureID": 135196, + "Label": "5117-135196 via Touch from 135201 -> 135200", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 135201, + "TargetID": 135200, + "Directional": false + }] + }, { + "ID": 1902, + "SourceStructureID": 135208, + "TargetStructureID": 5117, + "Label": "135208-5117 via Adherens from 135210 -> 135207", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135210, + "TargetID": 135207, + "Directional": false + }] + }, { + "ID": 1903, + "SourceStructureID": 5439, + "TargetStructureID": 5118, + "Label": "5439-5118 via Adherens from 85506 -> 85507", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85506, + "TargetID": 85507, + "Directional": false + }] + }, { + "ID": 1904, + "SourceStructureID": 5118, + "TargetStructureID": 5531, + "Label": "5118-5531 via Adherens from 133886 -> 133885", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133886, + "TargetID": 133885, + "Directional": false + }] + }, { + "ID": 1905, + "SourceStructureID": 6115, + "TargetStructureID": 5118, + "Label": "6115-5118 via Adherens from 74793 -> 74794", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74793, + "TargetID": 74794, + "Directional": false + }] + }, { + "ID": 1906, + "SourceStructureID": 6115, + "TargetStructureID": 5118, + "Label": "6115-5118 via Unknown from 73258 -> 73259", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73258, + "TargetID": 73259, + "Directional": false + }] + }, { + "ID": 1907, + "SourceStructureID": 7147, + "TargetStructureID": 5118, + "Label": "7147-5118 via Touch from 52235 -> 52234", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 52235, + "TargetID": 52234, + "Directional": false + }] + }, { + "ID": 1908, + "SourceStructureID": 5118, + "TargetStructureID": 8579, + "Label": "5118-8579 via Adherens from 62682 -> 62681", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 62682, + "TargetID": 62681, + "Directional": false + }] + }, { + "ID": 1909, + "SourceStructureID": 5118, + "TargetStructureID": 9769, + "Label": "5118-9769 via Touch from 52625 -> 52624", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 52625, + "TargetID": 52624, + "Directional": false + }] + }, { + "ID": 1910, + "SourceStructureID": 65134, + "TargetStructureID": 5118, + "Label": "65134-5118 via Gap Junction from 65135 -> 65136", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 65135, + "TargetID": 65136, + "Directional": false + }] + }, { + "ID": 1911, + "SourceStructureID": 5150, + "TargetStructureID": 5150, + "Label": "5150-5150 via Postsynapse from 5240 -> 5241", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 5240, + "TargetID": 5241, + "Directional": false + }] + }, { + "ID": 1912, + "SourceStructureID": 22590, + "TargetStructureID": 5150, + "Label": "22590-5150 via Gap Junction from 56183 -> 56181", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56183, + "TargetID": 56181, + "Directional": false + }] + }, { + "ID": 1913, + "SourceStructureID": 56211, + "TargetStructureID": 5150, + "Label": "56211-5150 via Gap Junction from 56212 -> 56210, 56213 -> 56214, 56218 -> 56219, 56221 -> 56220, 56252 -> 56251", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56212, + "TargetID": 56210, + "Directional": false + }, { + "SourceID": 56213, + "TargetID": 56214, + "Directional": false + }, { + "SourceID": 56218, + "TargetID": 56219, + "Directional": false + }, { + "SourceID": 56221, + "TargetID": 56220, + "Directional": false + }, { + "SourceID": 56252, + "TargetID": 56251, + "Directional": false + }] + }, { + "ID": 1914, + "SourceStructureID": 5278, + "TargetStructureID": 5278, + "Label": "5278-5278 via Gap Junction from 92279 -> 92278", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92279, + "TargetID": 92278, + "Directional": false + }] + }, { + "ID": 1915, + "SourceStructureID": 5278, + "TargetStructureID": 5279, + "Label": "5278-5279 via Gap Junction from 20153 -> 92674, 92710 -> 92712, 133801 -> 133800, 133848 -> 133849, 133852 -> 133853, 133855 -> 133854, 133857 -> 133856, 133859 -> 133858, 147296 -> 147297", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 20153, + "TargetID": 92674, + "Directional": false + }, { + "SourceID": 92710, + "TargetID": 92712, + "Directional": false + }, { + "SourceID": 133801, + "TargetID": 133800, + "Directional": false + }, { + "SourceID": 133848, + "TargetID": 133849, + "Directional": false + }, { + "SourceID": 133852, + "TargetID": 133853, + "Directional": false + }, { + "SourceID": 133855, + "TargetID": 133854, + "Directional": false + }, { + "SourceID": 133857, + "TargetID": 133856, + "Directional": false + }, { + "SourceID": 133859, + "TargetID": 133858, + "Directional": false + }, { + "SourceID": 147296, + "TargetID": 147297, + "Directional": false + }] + }, { + "ID": 1916, + "SourceStructureID": 5278, + "TargetStructureID": 5279, + "Label": "5278-5279 via Touch from 147909 -> 147908", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 147909, + "TargetID": 147908, + "Directional": false + }] + }, { + "ID": 1917, + "SourceStructureID": 5278, + "TargetStructureID": 5579, + "Label": "5278-5579 via Adherens from 92157 -> 92158, 92159 -> 92160, 114175 -> 36805", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92157, + "TargetID": 92158, + "Directional": false + }, { + "SourceID": 92159, + "TargetID": 92160, + "Directional": false + }, { + "SourceID": 114175, + "TargetID": 36805, + "Directional": false + }] + }, { + "ID": 1918, + "SourceStructureID": 5278, + "TargetStructureID": 5579, + "Label": "5278-5579 via Unknown from 114176 -> 147249", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114176, + "TargetID": 147249, + "Directional": false + }] + }, { + "ID": 1919, + "SourceStructureID": 8575, + "TargetStructureID": 5278, + "Label": "8575-5278 via Unknown from 100167 -> 100168", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100167, + "TargetID": 100168, + "Directional": false + }] + }, { + "ID": 1920, + "SourceStructureID": 5278, + "TargetStructureID": 9347, + "Label": "5278-9347 via Unknown from 92268 -> 92267, 104394 -> 104395, 114182 -> 114181, 114481 -> 114482, 126310 -> 126320, 133902 -> 133903", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92268, + "TargetID": 92267, + "Directional": false + }, { + "SourceID": 104394, + "TargetID": 104395, + "Directional": false + }, { + "SourceID": 114182, + "TargetID": 114181, + "Directional": false + }, { + "SourceID": 114481, + "TargetID": 114482, + "Directional": false + }, { + "SourceID": 126310, + "TargetID": 126320, + "Directional": false + }, { + "SourceID": 133902, + "TargetID": 133903, + "Directional": false + }] + }, { + "ID": 1921, + "SourceStructureID": 5278, + "TargetStructureID": 15796, + "Label": "5278-15796 via Unknown from 97941 -> 97942", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97941, + "TargetID": 97942, + "Directional": false + }] + }, { + "ID": 1922, + "SourceStructureID": 16073, + "TargetStructureID": 5278, + "Label": "16073-5278 via Unknown from 99593 -> 99594, 133879 -> 133878", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99593, + "TargetID": 99594, + "Directional": false + }, { + "SourceID": 133879, + "TargetID": 133878, + "Directional": false + }] + }, { + "ID": 1923, + "SourceStructureID": 21299, + "TargetStructureID": 5278, + "Label": "21299-5278 via Adherens from 48827 -> 48828", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 48827, + "TargetID": 48828, + "Directional": false + }] + }, { + "ID": 1924, + "SourceStructureID": 5278, + "TargetStructureID": 35894, + "Label": "5278-35894 via Unknown from 100461 -> 100462", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100461, + "TargetID": 100462, + "Directional": false + }] + }, { + "ID": 1925, + "SourceStructureID": 39192, + "TargetStructureID": 5278, + "Label": "39192-5278 via Unknown from 104200 -> 104198", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104200, + "TargetID": 104198, + "Directional": false + }] + }, { + "ID": 1926, + "SourceStructureID": 5278, + "TargetStructureID": 73363, + "Label": "5278-73363 via Unknown from 91633 -> 91632", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91633, + "TargetID": 91632, + "Directional": false + }] + }, { + "ID": 1927, + "SourceStructureID": 5278, + "TargetStructureID": 73380, + "Label": "5278-73380 via Unknown from 92283 -> 92286", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92283, + "TargetID": 92286, + "Directional": false + }] + }, { + "ID": 1928, + "SourceStructureID": 86042, + "TargetStructureID": 5278, + "Label": "86042-5278 via Unknown from 104226 -> 104225", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104226, + "TargetID": 104225, + "Directional": false + }] + }, { + "ID": 1929, + "SourceStructureID": 90217, + "TargetStructureID": 5278, + "Label": "90217-5278 via Unknown from 104230 -> 104231", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104230, + "TargetID": 104231, + "Directional": false + }] + }, { + "ID": 1930, + "SourceStructureID": 91613, + "TargetStructureID": 5278, + "Label": "91613-5278 via Adherens from 91615 -> 91616", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91615, + "TargetID": 91616, + "Directional": false + }] + }, { + "ID": 1931, + "SourceStructureID": 91634, + "TargetStructureID": 5278, + "Label": "91634-5278 via Adherens from 91637 -> 91638", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91637, + "TargetID": 91638, + "Directional": false + }] + }, { + "ID": 1932, + "SourceStructureID": 5278, + "TargetStructureID": 91639, + "Label": "5278-91639 via Gap Junction from 91640 -> 91641", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91640, + "TargetID": 91641, + "Directional": false + }] + }, { + "ID": 1933, + "SourceStructureID": 5278, + "TargetStructureID": 92008, + "Label": "5278-92008 via Unknown from 92010 -> 92009", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92010, + "TargetID": 92009, + "Directional": false + }] + }, { + "ID": 1934, + "SourceStructureID": 92098, + "TargetStructureID": 5278, + "Label": "92098-5278 via Unknown from 92099 -> 92097", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92099, + "TargetID": 92097, + "Directional": false + }] + }, { + "ID": 1935, + "SourceStructureID": 5278, + "TargetStructureID": 92100, + "Label": "5278-92100 via Adherens from 20033 -> 92101", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 20033, + "TargetID": 92101, + "Directional": false + }] + }, { + "ID": 1936, + "SourceStructureID": 92103, + "TargetStructureID": 5278, + "Label": "92103-5278 via Unknown from 92104 -> 92102", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92104, + "TargetID": 92102, + "Directional": false + }] + }, { + "ID": 1937, + "SourceStructureID": 5278, + "TargetStructureID": 92116, + "Label": "5278-92116 via Adherens from 92119 -> 92118", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92119, + "TargetID": 92118, + "Directional": false + }] + }, { + "ID": 1938, + "SourceStructureID": 5278, + "TargetStructureID": 92116, + "Label": "5278-92116 via Gap Junction from 20111 -> 92117", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 20111, + "TargetID": 92117, + "Directional": false + }] + }, { + "ID": 1939, + "SourceStructureID": 92121, + "TargetStructureID": 5278, + "Label": "92121-5278 via Unknown from 92122 -> 92120", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92122, + "TargetID": 92120, + "Directional": false + }] + }, { + "ID": 1940, + "SourceStructureID": 92149, + "TargetStructureID": 5278, + "Label": "92149-5278 via Unknown from 147278 -> 147277", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147278, + "TargetID": 147277, + "Directional": false + }] + }, { + "ID": 1941, + "SourceStructureID": 92169, + "TargetStructureID": 5278, + "Label": "92169-5278 via Unknown from 92170 -> 92168, 92281 -> 92282", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92170, + "TargetID": 92168, + "Directional": false + }, { + "SourceID": 92281, + "TargetID": 92282, + "Directional": false + }] + }, { + "ID": 1942, + "SourceStructureID": 5278, + "TargetStructureID": 92175, + "Label": "5278-92175 via Unknown from 92174 -> 92176", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92174, + "TargetID": 92176, + "Directional": false + }] + }, { + "ID": 1943, + "SourceStructureID": 92183, + "TargetStructureID": 5278, + "Label": "92183-5278 via Unknown from 92184 -> 92182", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92184, + "TargetID": 92182, + "Directional": false + }] + }, { + "ID": 1944, + "SourceStructureID": 92186, + "TargetStructureID": 5278, + "Label": "92186-5278 via Unknown from 92187 -> 92185, 92189 -> 92188", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92187, + "TargetID": 92185, + "Directional": false + }, { + "SourceID": 92189, + "TargetID": 92188, + "Directional": false + }] + }, { + "ID": 1945, + "SourceStructureID": 92207, + "TargetStructureID": 5278, + "Label": "92207-5278 via Unknown from 92208 -> 92202", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92208, + "TargetID": 92202, + "Directional": false + }] + }, { + "ID": 1946, + "SourceStructureID": 92272, + "TargetStructureID": 5278, + "Label": "92272-5278 via Adherens from 104813 -> 104814, 104831 -> 104832, 133906 -> 133907", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104813, + "TargetID": 104814, + "Directional": false + }, { + "SourceID": 104831, + "TargetID": 104832, + "Directional": false + }, { + "SourceID": 133906, + "TargetID": 133907, + "Directional": false + }] + }, { + "ID": 1947, + "SourceStructureID": 5278, + "TargetStructureID": 92272, + "Label": "5278-92272 via Gap Junction from 147279 -> 147280", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 147279, + "TargetID": 147280, + "Directional": false + }] + }, { + "ID": 1948, + "SourceStructureID": 92280, + "TargetStructureID": 5278, + "Label": "92280-5278 via Adherens from 104846 -> 104847", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104846, + "TargetID": 104847, + "Directional": false + }] + }, { + "ID": 1949, + "SourceStructureID": 92295, + "TargetStructureID": 5278, + "Label": "92295-5278 via Adherens from 127677 -> 127676, 147321 -> 147322", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127677, + "TargetID": 127676, + "Directional": false + }, { + "SourceID": 147321, + "TargetID": 147322, + "Directional": false + }] + }, { + "ID": 1950, + "SourceStructureID": 92295, + "TargetStructureID": 5278, + "Label": "92295-5278 via Gap Junction from 147263 -> 147264", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 147263, + "TargetID": 147264, + "Directional": false + }] + }, { + "ID": 1951, + "SourceStructureID": 92295, + "TargetStructureID": 5278, + "Label": "92295-5278 via Unknown from 114291 -> 114290", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114291, + "TargetID": 114290, + "Directional": false + }] + }, { + "ID": 1952, + "SourceStructureID": 93413, + "TargetStructureID": 5278, + "Label": "93413-5278 via Unknown from 114506 -> 114507", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114506, + "TargetID": 114507, + "Directional": false + }] + }, { + "ID": 1953, + "SourceStructureID": 5278, + "TargetStructureID": 95824, + "Label": "5278-95824 via Adherens from 100464 -> 100473", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100464, + "TargetID": 100473, + "Directional": false + }] + }, { + "ID": 1954, + "SourceStructureID": 5278, + "TargetStructureID": 95824, + "Label": "5278-95824 via Unknown from 100529 -> 100530", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100529, + "TargetID": 100530, + "Directional": false + }] + }, { + "ID": 1955, + "SourceStructureID": 5278, + "TargetStructureID": 96446, + "Label": "5278-96446 via Unknown from 104419 -> 104418", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104419, + "TargetID": 104418, + "Directional": false + }] + }, { + "ID": 1956, + "SourceStructureID": 5278, + "TargetStructureID": 97853, + "Label": "5278-97853 via Adherens from 97861 -> 97862", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97861, + "TargetID": 97862, + "Directional": false + }] + }, { + "ID": 1957, + "SourceStructureID": 5278, + "TargetStructureID": 97947, + "Label": "5278-97947 via Unknown from 97949 -> 97948", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97949, + "TargetID": 97948, + "Directional": false + }] + }, { + "ID": 1958, + "SourceStructureID": 5278, + "TargetStructureID": 97951, + "Label": "5278-97951 via Adherens from 133880 -> 133881", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133880, + "TargetID": 133881, + "Directional": false + }] + }, { + "ID": 1959, + "SourceStructureID": 5278, + "TargetStructureID": 98821, + "Label": "5278-98821 via Unknown from 98820 -> 98822", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98820, + "TargetID": 98822, + "Directional": false + }] + }, { + "ID": 1960, + "SourceStructureID": 5278, + "TargetStructureID": 98823, + "Label": "5278-98823 via Unknown from 98829 -> 98828", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98829, + "TargetID": 98828, + "Directional": false + }] + }, { + "ID": 1961, + "SourceStructureID": 5278, + "TargetStructureID": 98830, + "Label": "5278-98830 via Adherens from 20044 -> 98831", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 20044, + "TargetID": 98831, + "Directional": false + }] + }, { + "ID": 1962, + "SourceStructureID": 5278, + "TargetStructureID": 98830, + "Label": "5278-98830 via Gap Junction from 99251 -> 99252", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 99251, + "TargetID": 99252, + "Directional": false + }] + }, { + "ID": 1963, + "SourceStructureID": 5278, + "TargetStructureID": 98833, + "Label": "5278-98833 via Adherens from 99280 -> 99281", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99280, + "TargetID": 99281, + "Directional": false + }] + }, { + "ID": 1964, + "SourceStructureID": 5278, + "TargetStructureID": 99262, + "Label": "5278-99262 via Unknown from 92713 -> 99272", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92713, + "TargetID": 99272, + "Directional": false + }] + }, { + "ID": 1965, + "SourceStructureID": 99274, + "TargetStructureID": 5278, + "Label": "99274-5278 via Unknown from 99275 -> 99276", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99275, + "TargetID": 99276, + "Directional": false + }] + }, { + "ID": 1966, + "SourceStructureID": 99290, + "TargetStructureID": 5278, + "Label": "99290-5278 via Unknown from 99291 -> 92109", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99291, + "TargetID": 92109, + "Directional": false + }] + }, { + "ID": 1967, + "SourceStructureID": 5278, + "TargetStructureID": 99293, + "Label": "5278-99293 via Unknown from 99292 -> 99294", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99292, + "TargetID": 99294, + "Directional": false + }] + }, { + "ID": 1968, + "SourceStructureID": 5278, + "TargetStructureID": 99305, + "Label": "5278-99305 via Unknown from 99304 -> 99306", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99304, + "TargetID": 99306, + "Directional": false + }] + }, { + "ID": 1969, + "SourceStructureID": 99596, + "TargetStructureID": 5278, + "Label": "99596-5278 via Unknown from 99599 -> 99598", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99599, + "TargetID": 99598, + "Directional": false + }] + }, { + "ID": 1970, + "SourceStructureID": 5278, + "TargetStructureID": 99749, + "Label": "5278-99749 via Adherens from 20090 -> 104863, 99752 -> 99748, 99767 -> 99768", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 20090, + "TargetID": 104863, + "Directional": false + }, { + "SourceID": 99752, + "TargetID": 99748, + "Directional": false + }, { + "SourceID": 99767, + "TargetID": 99768, + "Directional": false + }] + }, { + "ID": 1971, + "SourceStructureID": 99771, + "TargetStructureID": 5278, + "Label": "99771-5278 via Adherens from 99775 -> 20087, 99780 -> 99782", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99775, + "TargetID": 20087, + "Directional": false + }, { + "SourceID": 99780, + "TargetID": 99782, + "Directional": false + }] + }, { + "ID": 1972, + "SourceStructureID": 99789, + "TargetStructureID": 5278, + "Label": "99789-5278 via Unknown from 99790 -> 99791", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99790, + "TargetID": 99791, + "Directional": false + }] + }, { + "ID": 1973, + "SourceStructureID": 5278, + "TargetStructureID": 99795, + "Label": "5278-99795 via Gap Junction from 20154 -> 115403", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 20154, + "TargetID": 115403, + "Directional": false + }] + }, { + "ID": 1974, + "SourceStructureID": 5278, + "TargetStructureID": 100124, + "Label": "5278-100124 via Adherens from 100126 -> 100125", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100126, + "TargetID": 100125, + "Directional": false + }] + }, { + "ID": 1975, + "SourceStructureID": 100210, + "TargetStructureID": 5278, + "Label": "100210-5278 via Gap Junction from 100216 -> 100215", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 100216, + "TargetID": 100215, + "Directional": false + }] + }, { + "ID": 1976, + "SourceStructureID": 100210, + "TargetStructureID": 5278, + "Label": "100210-5278 via Unknown from 147268 -> 147267", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147268, + "TargetID": 147267, + "Directional": false + }] + }, { + "ID": 1977, + "SourceStructureID": 5278, + "TargetStructureID": 100231, + "Label": "5278-100231 via Unknown from 100232 -> 100233", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100232, + "TargetID": 100233, + "Directional": false + }] + }, { + "ID": 1978, + "SourceStructureID": 5278, + "TargetStructureID": 100360, + "Label": "5278-100360 via Adherens from 20205 -> 100361", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 20205, + "TargetID": 100361, + "Directional": false + }] + }, { + "ID": 1979, + "SourceStructureID": 5278, + "TargetStructureID": 100414, + "Label": "5278-100414 via Adherens from 20131 -> 100430", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 20131, + "TargetID": 100430, + "Directional": false + }] + }, { + "ID": 1980, + "SourceStructureID": 100476, + "TargetStructureID": 5278, + "Label": "100476-5278 via Adherens from 100483 -> 100484", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100483, + "TargetID": 100484, + "Directional": false + }] + }, { + "ID": 1981, + "SourceStructureID": 5278, + "TargetStructureID": 100496, + "Label": "5278-100496 via Unknown from 147253 -> 147254", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147253, + "TargetID": 147254, + "Directional": false + }] + }, { + "ID": 1982, + "SourceStructureID": 100788, + "TargetStructureID": 5278, + "Label": "100788-5278 via Adherens from 100800 -> 100801", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100800, + "TargetID": 100801, + "Directional": false + }] + }, { + "ID": 1983, + "SourceStructureID": 5278, + "TargetStructureID": 100797, + "Label": "5278-100797 via Unknown from 100799 -> 100798", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100799, + "TargetID": 100798, + "Directional": false + }] + }, { + "ID": 1984, + "SourceStructureID": 5278, + "TargetStructureID": 100803, + "Label": "5278-100803 via Adherens from 100812 -> 100814", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100812, + "TargetID": 100814, + "Directional": false + }] + }, { + "ID": 1985, + "SourceStructureID": 5278, + "TargetStructureID": 100807, + "Label": "5278-100807 via Unknown from 100811 -> 100810", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100811, + "TargetID": 100810, + "Directional": false + }] + }, { + "ID": 1986, + "SourceStructureID": 5278, + "TargetStructureID": 103964, + "Label": "5278-103964 via Unknown from 103966 -> 103967", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103966, + "TargetID": 103967, + "Directional": false + }] + }, { + "ID": 1987, + "SourceStructureID": 5278, + "TargetStructureID": 103992, + "Label": "5278-103992 via Adherens from 103995 -> 103994, 103997 -> 103998", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103995, + "TargetID": 103994, + "Directional": false + }, { + "SourceID": 103997, + "TargetID": 103998, + "Directional": false + }] + }, { + "ID": 1988, + "SourceStructureID": 5278, + "TargetStructureID": 104032, + "Label": "5278-104032 via Unknown from 104031 -> 104033", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104031, + "TargetID": 104033, + "Directional": false + }] + }, { + "ID": 1989, + "SourceStructureID": 5278, + "TargetStructureID": 104053, + "Label": "5278-104053 via Adherens from 104052 -> 104054", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104052, + "TargetID": 104054, + "Directional": false + }] + }, { + "ID": 1990, + "SourceStructureID": 104057, + "TargetStructureID": 5278, + "Label": "104057-5278 via Unknown from 104059 -> 104060", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104059, + "TargetID": 104060, + "Directional": false + }] + }, { + "ID": 1991, + "SourceStructureID": 104062, + "TargetStructureID": 5278, + "Label": "104062-5278 via Adherens from 104866 -> 92161", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104866, + "TargetID": 92161, + "Directional": false + }] + }, { + "ID": 1992, + "SourceStructureID": 104072, + "TargetStructureID": 5278, + "Label": "104072-5278 via Unknown from 104073 -> 104071", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104073, + "TargetID": 104071, + "Directional": false + }] + }, { + "ID": 1993, + "SourceStructureID": 104139, + "TargetStructureID": 5278, + "Label": "104139-5278 via Unknown from 104141 -> 104142", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104141, + "TargetID": 104142, + "Directional": false + }] + }, { + "ID": 1994, + "SourceStructureID": 104143, + "TargetStructureID": 5278, + "Label": "104143-5278 via Adherens from 104144 -> 104146", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104144, + "TargetID": 104146, + "Directional": false + }] + }, { + "ID": 1995, + "SourceStructureID": 104151, + "TargetStructureID": 5278, + "Label": "104151-5278 via Adherens from 104163 -> 104164", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104163, + "TargetID": 104164, + "Directional": false + }] + }, { + "ID": 1996, + "SourceStructureID": 104170, + "TargetStructureID": 5278, + "Label": "104170-5278 via Adherens from 104171 -> 104172", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104171, + "TargetID": 104172, + "Directional": false + }] + }, { + "ID": 1997, + "SourceStructureID": 104190, + "TargetStructureID": 5278, + "Label": "104190-5278 via Unknown from 104191 -> 104192", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104191, + "TargetID": 104192, + "Directional": false + }] + }, { + "ID": 1998, + "SourceStructureID": 5278, + "TargetStructureID": 104232, + "Label": "5278-104232 via Unknown from 104234 -> 104233", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104234, + "TargetID": 104233, + "Directional": false + }] + }, { + "ID": 1999, + "SourceStructureID": 5278, + "TargetStructureID": 104236, + "Label": "5278-104236 via Unknown from 104238 -> 104237", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104238, + "TargetID": 104237, + "Directional": false + }] + }, { + "ID": 2000, + "SourceStructureID": 5278, + "TargetStructureID": 104292, + "Label": "5278-104292 via Unknown from 104290 -> 104294", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104290, + "TargetID": 104294, + "Directional": false + }] + }, { + "ID": 2001, + "SourceStructureID": 5278, + "TargetStructureID": 104295, + "Label": "5278-104295 via Adherens from 104296 -> 104297", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104296, + "TargetID": 104297, + "Directional": false + }] + }, { + "ID": 2002, + "SourceStructureID": 5278, + "TargetStructureID": 104324, + "Label": "5278-104324 via Unknown from 92261 -> 104356, 147256 -> 147255", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92261, + "TargetID": 104356, + "Directional": false + }, { + "SourceID": 147256, + "TargetID": 147255, + "Directional": false + }] + }, { + "ID": 2003, + "SourceStructureID": 104327, + "TargetStructureID": 5278, + "Label": "104327-5278 via Adherens from 104328 -> 104329", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104328, + "TargetID": 104329, + "Directional": false + }] + }, { + "ID": 2004, + "SourceStructureID": 5278, + "TargetStructureID": 104337, + "Label": "5278-104337 via Adherens from 104338 -> 104339", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104338, + "TargetID": 104339, + "Directional": false + }] + }, { + "ID": 2005, + "SourceStructureID": 5278, + "TargetStructureID": 104377, + "Label": "5278-104377 via Adherens from 104378 -> 104379", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104378, + "TargetID": 104379, + "Directional": false + }] + }, { + "ID": 2006, + "SourceStructureID": 104391, + "TargetStructureID": 5278, + "Label": "104391-5278 via Unknown from 104392 -> 104393", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104392, + "TargetID": 104393, + "Directional": false + }] + }, { + "ID": 2007, + "SourceStructureID": 5278, + "TargetStructureID": 104512, + "Label": "5278-104512 via Adherens from 104511 -> 104513", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104511, + "TargetID": 104513, + "Directional": false + }] + }, { + "ID": 2008, + "SourceStructureID": 5278, + "TargetStructureID": 104530, + "Label": "5278-104530 via Adherens from 104537 -> 104536", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104537, + "TargetID": 104536, + "Directional": false + }] + }, { + "ID": 2009, + "SourceStructureID": 5278, + "TargetStructureID": 104587, + "Label": "5278-104587 via Adherens from 104588 -> 104589", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104588, + "TargetID": 104589, + "Directional": false + }] + }, { + "ID": 2010, + "SourceStructureID": 5278, + "TargetStructureID": 104815, + "Label": "5278-104815 via Unknown from 104818 -> 104819", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104818, + "TargetID": 104819, + "Directional": false + }] + }, { + "ID": 2011, + "SourceStructureID": 5278, + "TargetStructureID": 120898, + "Label": "5278-120898 via Unknown from 114525 -> 120899", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114525, + "TargetID": 120899, + "Directional": false + }] + }, { + "ID": 2012, + "SourceStructureID": 136728, + "TargetStructureID": 5278, + "Label": "136728-5278 via Adherens from 147271 -> 147272", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147271, + "TargetID": 147272, + "Directional": false + }] + }, { + "ID": 2013, + "SourceStructureID": 136731, + "TargetStructureID": 5278, + "Label": "136731-5278 via Adherens from 147273 -> 114531", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147273, + "TargetID": 114531, + "Directional": false + }] + }, { + "ID": 2014, + "SourceStructureID": 136731, + "TargetStructureID": 5278, + "Label": "136731-5278 via Gap Junction from 136732 -> 56585", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136732, + "TargetID": 56585, + "Directional": false + }] + }, { + "ID": 2015, + "SourceStructureID": 136733, + "TargetStructureID": 5278, + "Label": "136733-5278 via Adherens from 147259 -> 114205", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147259, + "TargetID": 114205, + "Directional": false + }] + }, { + "ID": 2016, + "SourceStructureID": 136733, + "TargetStructureID": 5278, + "Label": "136733-5278 via Unknown from 147258 -> 147257", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147258, + "TargetID": 147257, + "Directional": false + }] + }, { + "ID": 2017, + "SourceStructureID": 5279, + "TargetStructureID": 5279, + "Label": "5279-5279 via Adherens from 49262 -> 49249", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 49262, + "TargetID": 49249, + "Directional": false + }] + }, { + "ID": 2018, + "SourceStructureID": 5279, + "TargetStructureID": 5280, + "Label": "5279-5280 via Adherens from 96388 -> 96389", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96388, + "TargetID": 96389, + "Directional": false + }] + }, { + "ID": 2019, + "SourceStructureID": 5279, + "TargetStructureID": 5280, + "Label": "5279-5280 via Unknown from 96401 -> 96400", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96401, + "TargetID": 96400, + "Directional": false + }] + }, { + "ID": 2020, + "SourceStructureID": 5292, + "TargetStructureID": 5279, + "Label": "5292-5279 via Adherens from 131185 -> 131186", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131185, + "TargetID": 131186, + "Directional": false + }] + }, { + "ID": 2021, + "SourceStructureID": 5292, + "TargetStructureID": 5279, + "Label": "5292-5279 via Gap Junction from 51550 -> 49266", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51550, + "TargetID": 49266, + "Directional": false + }] + }, { + "ID": 2022, + "SourceStructureID": 5297, + "TargetStructureID": 5279, + "Label": "5297-5279 via Gap Junction from 92308 -> 92292", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92308, + "TargetID": 92292, + "Directional": false + }] + }, { + "ID": 2023, + "SourceStructureID": 5279, + "TargetStructureID": 5517, + "Label": "5279-5517 via Gap Junction from 49267 -> 49275", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49267, + "TargetID": 49275, + "Directional": false + }] + }, { + "ID": 2024, + "SourceStructureID": 6117, + "TargetStructureID": 5279, + "Label": "6117-5279 via Gap Junction from 97142 -> 97141, 98034 -> 98033, 133845 -> 133844, 133847 -> 133846", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 97142, + "TargetID": 97141, + "Directional": false + }, { + "SourceID": 98034, + "TargetID": 98033, + "Directional": false + }, { + "SourceID": 133845, + "TargetID": 133844, + "Directional": false + }, { + "SourceID": 133847, + "TargetID": 133846, + "Directional": false + }] + }, { + "ID": 2025, + "SourceStructureID": 6169, + "TargetStructureID": 5279, + "Label": "6169-5279 via Gap Junction from 9469 -> 92670, 49239 -> 47143, 49241 -> 49242, 92667 -> 9470", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 9469, + "TargetID": 92670, + "Directional": false + }, { + "SourceID": 49239, + "TargetID": 47143, + "Directional": false + }, { + "SourceID": 49241, + "TargetID": 49242, + "Directional": false + }, { + "SourceID": 92667, + "TargetID": 9470, + "Directional": false + }] + }, { + "ID": 2026, + "SourceStructureID": 5279, + "TargetStructureID": 9347, + "Label": "5279-9347 via Unknown from 96458 -> 96457", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96458, + "TargetID": 96457, + "Directional": false + }] + }, { + "ID": 2027, + "SourceStructureID": 5279, + "TargetStructureID": 20136, + "Label": "5279-20136 via Gap Junction from 49514 -> 49515, 147952 -> 49263", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49514, + "TargetID": 49515, + "Directional": false + }, { + "SourceID": 147952, + "TargetID": 49263, + "Directional": false + }] + }, { + "ID": 2028, + "SourceStructureID": 5279, + "TargetStructureID": 39957, + "Label": "5279-39957 via Adherens from 97626 -> 97625, 133769 -> 133770", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97626, + "TargetID": 97625, + "Directional": false + }, { + "SourceID": 133769, + "TargetID": 133770, + "Directional": false + }] + }, { + "ID": 2029, + "SourceStructureID": 5279, + "TargetStructureID": 39957, + "Label": "5279-39957 via Unknown from 133771 -> 133772", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133771, + "TargetID": 133772, + "Directional": false + }] + }, { + "ID": 2030, + "SourceStructureID": 41009, + "TargetStructureID": 5279, + "Label": "41009-5279 via Adherens from 96479 -> 96478", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96479, + "TargetID": 96478, + "Directional": false + }] + }, { + "ID": 2031, + "SourceStructureID": 55347, + "TargetStructureID": 5279, + "Label": "55347-5279 via Adherens from 97595 -> 97594", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97595, + "TargetID": 97594, + "Directional": false + }] + }, { + "ID": 2032, + "SourceStructureID": 55347, + "TargetStructureID": 5279, + "Label": "55347-5279 via Unknown from 97593 -> 97592", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97593, + "TargetID": 97592, + "Directional": false + }] + }, { + "ID": 2033, + "SourceStructureID": 56841, + "TargetStructureID": 5279, + "Label": "56841-5279 via Unknown from 99219 -> 99220", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99219, + "TargetID": 99220, + "Directional": false + }] + }, { + "ID": 2034, + "SourceStructureID": 5279, + "TargetStructureID": 57027, + "Label": "5279-57027 via Unknown from 99130 -> 99131", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99130, + "TargetID": 99131, + "Directional": false + }] + }, { + "ID": 2035, + "SourceStructureID": 5279, + "TargetStructureID": 59012, + "Label": "5279-59012 via Adherens from 92698 -> 92697", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92698, + "TargetID": 92697, + "Directional": false + }] + }, { + "ID": 2036, + "SourceStructureID": 5279, + "TargetStructureID": 61836, + "Label": "5279-61836 via Unknown from 133773 -> 133774", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133773, + "TargetID": 133774, + "Directional": false + }] + }, { + "ID": 2037, + "SourceStructureID": 68663, + "TargetStructureID": 5279, + "Label": "68663-5279 via Conventional from 97281 -> 97282", + "Type": "Conventional", + "Directional": false, + "Links": [{ + "SourceID": 97281, + "TargetID": 97282, + "Directional": false + }] + }, { + "ID": 2038, + "SourceStructureID": 5279, + "TargetStructureID": 85974, + "Label": "5279-85974 via Adherens from 85976 -> 85975", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85976, + "TargetID": 85975, + "Directional": false + }] + }, { + "ID": 2039, + "SourceStructureID": 91634, + "TargetStructureID": 5279, + "Label": "91634-5279 via Adherens from 92656 -> 92655", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92656, + "TargetID": 92655, + "Directional": false + }] + }, { + "ID": 2040, + "SourceStructureID": 5279, + "TargetStructureID": 92183, + "Label": "5279-92183 via Unknown from 96455 -> 96456", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96455, + "TargetID": 96456, + "Directional": false + }] + }, { + "ID": 2041, + "SourceStructureID": 92207, + "TargetStructureID": 5279, + "Label": "92207-5279 via Unknown from 126098 -> 126097", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126098, + "TargetID": 126097, + "Directional": false + }] + }, { + "ID": 2042, + "SourceStructureID": 5279, + "TargetStructureID": 92295, + "Label": "5279-92295 via Adherens from 126427 -> 127680", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126427, + "TargetID": 127680, + "Directional": false + }] + }, { + "ID": 2043, + "SourceStructureID": 5279, + "TargetStructureID": 92535, + "Label": "5279-92535 via Adherens from 133833 -> 133834", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133833, + "TargetID": 133834, + "Directional": false + }] + }, { + "ID": 2044, + "SourceStructureID": 92542, + "TargetStructureID": 5279, + "Label": "92542-5279 via Unknown from 92543 -> 92541", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92543, + "TargetID": 92541, + "Directional": false + }] + }, { + "ID": 2045, + "SourceStructureID": 92553, + "TargetStructureID": 5279, + "Label": "92553-5279 via Unknown from 92554 -> 92552", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92554, + "TargetID": 92552, + "Directional": false + }] + }, { + "ID": 2046, + "SourceStructureID": 5279, + "TargetStructureID": 92631, + "Label": "5279-92631 via Unknown from 92630 -> 92632", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92630, + "TargetID": 92632, + "Directional": false + }] + }, { + "ID": 2047, + "SourceStructureID": 92681, + "TargetStructureID": 5279, + "Label": "92681-5279 via Adherens from 92686 -> 92678", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92686, + "TargetID": 92678, + "Directional": false + }] + }, { + "ID": 2048, + "SourceStructureID": 92681, + "TargetStructureID": 5279, + "Label": "92681-5279 via Unknown from 92685 -> 92679", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92685, + "TargetID": 92679, + "Directional": false + }] + }, { + "ID": 2049, + "SourceStructureID": 5279, + "TargetStructureID": 92695, + "Label": "5279-92695 via Unknown from 92694 -> 92696", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92694, + "TargetID": 92696, + "Directional": false + }] + }, { + "ID": 2050, + "SourceStructureID": 92705, + "TargetStructureID": 5279, + "Label": "92705-5279 via Unknown from 92706 -> 92707", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92706, + "TargetID": 92707, + "Directional": false + }] + }, { + "ID": 2051, + "SourceStructureID": 5279, + "TargetStructureID": 92715, + "Label": "5279-92715 via Unknown from 133796 -> 133797", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133796, + "TargetID": 133797, + "Directional": false + }] + }, { + "ID": 2052, + "SourceStructureID": 5279, + "TargetStructureID": 96370, + "Label": "5279-96370 via Adherens from 96372 -> 96371", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96372, + "TargetID": 96371, + "Directional": false + }] + }, { + "ID": 2053, + "SourceStructureID": 5279, + "TargetStructureID": 96385, + "Label": "5279-96385 via Unknown from 96387 -> 96386", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96387, + "TargetID": 96386, + "Directional": false + }] + }, { + "ID": 2054, + "SourceStructureID": 5279, + "TargetStructureID": 96403, + "Label": "5279-96403 via Adherens from 96406 -> 96405", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96406, + "TargetID": 96405, + "Directional": false + }] + }, { + "ID": 2055, + "SourceStructureID": 96407, + "TargetStructureID": 5279, + "Label": "96407-5279 via Adherens from 96409 -> 96408", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96409, + "TargetID": 96408, + "Directional": false + }] + }, { + "ID": 2056, + "SourceStructureID": 5279, + "TargetStructureID": 96429, + "Label": "5279-96429 via Adherens from 96432 -> 96430", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96432, + "TargetID": 96430, + "Directional": false + }] + }, { + "ID": 2057, + "SourceStructureID": 96446, + "TargetStructureID": 5279, + "Label": "96446-5279 via Adherens from 147960 -> 147961", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147960, + "TargetID": 147961, + "Directional": false + }] + }, { + "ID": 2058, + "SourceStructureID": 5279, + "TargetStructureID": 96450, + "Label": "5279-96450 via Unknown from 96451 -> 96452", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96451, + "TargetID": 96452, + "Directional": false + }] + }, { + "ID": 2059, + "SourceStructureID": 5279, + "TargetStructureID": 96459, + "Label": "5279-96459 via Unknown from 96461 -> 96460", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96461, + "TargetID": 96460, + "Directional": false + }] + }, { + "ID": 2060, + "SourceStructureID": 5279, + "TargetStructureID": 96489, + "Label": "5279-96489 via Unknown from 96492 -> 96491", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96492, + "TargetID": 96491, + "Directional": false + }] + }, { + "ID": 2061, + "SourceStructureID": 5279, + "TargetStructureID": 97054, + "Label": "5279-97054 via Unknown from 97055 -> 97056", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97055, + "TargetID": 97056, + "Directional": false + }] + }, { + "ID": 2062, + "SourceStructureID": 5279, + "TargetStructureID": 97113, + "Label": "5279-97113 via Unknown from 97115 -> 97114, 97117 -> 97118", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97115, + "TargetID": 97114, + "Directional": false + }, { + "SourceID": 97117, + "TargetID": 97118, + "Directional": false + }] + }, { + "ID": 2063, + "SourceStructureID": 5279, + "TargetStructureID": 97190, + "Label": "5279-97190 via Unknown from 97192 -> 97191", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97192, + "TargetID": 97191, + "Directional": false + }] + }, { + "ID": 2064, + "SourceStructureID": 5279, + "TargetStructureID": 97193, + "Label": "5279-97193 via Unknown from 97197 -> 97196", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97197, + "TargetID": 97196, + "Directional": false + }] + }, { + "ID": 2065, + "SourceStructureID": 97269, + "TargetStructureID": 5279, + "Label": "97269-5279 via Unknown from 97273 -> 97274", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97273, + "TargetID": 97274, + "Directional": false + }] + }, { + "ID": 2066, + "SourceStructureID": 97286, + "TargetStructureID": 5279, + "Label": "97286-5279 via Unknown from 97289 -> 97288", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97289, + "TargetID": 97288, + "Directional": false + }] + }, { + "ID": 2067, + "SourceStructureID": 97311, + "TargetStructureID": 5279, + "Label": "97311-5279 via Unknown from 133776 -> 133775", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133776, + "TargetID": 133775, + "Directional": false + }] + }, { + "ID": 2068, + "SourceStructureID": 97358, + "TargetStructureID": 5279, + "Label": "97358-5279 via Adherens from 133777 -> 133791", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133777, + "TargetID": 133791, + "Directional": false + }] + }, { + "ID": 2069, + "SourceStructureID": 97363, + "TargetStructureID": 5279, + "Label": "97363-5279 via Unknown from 97365 -> 97364", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97365, + "TargetID": 97364, + "Directional": false + }] + }, { + "ID": 2070, + "SourceStructureID": 5279, + "TargetStructureID": 97600, + "Label": "5279-97600 via Adherens from 97602 -> 97601", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97602, + "TargetID": 97601, + "Directional": false + }] + }, { + "ID": 2071, + "SourceStructureID": 5279, + "TargetStructureID": 97600, + "Label": "5279-97600 via Unknown from 133792 -> 133793", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133792, + "TargetID": 133793, + "Directional": false + }] + }, { + "ID": 2072, + "SourceStructureID": 97646, + "TargetStructureID": 5279, + "Label": "97646-5279 via Adherens from 98012 -> 98011", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98012, + "TargetID": 98011, + "Directional": false + }] + }, { + "ID": 2073, + "SourceStructureID": 98008, + "TargetStructureID": 5279, + "Label": "98008-5279 via Unknown from 98010 -> 98009", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98010, + "TargetID": 98009, + "Directional": false + }] + }, { + "ID": 2074, + "SourceStructureID": 5279, + "TargetStructureID": 98041, + "Label": "5279-98041 via Adherens from 98055 -> 98052", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98055, + "TargetID": 98052, + "Directional": false + }] + }, { + "ID": 2075, + "SourceStructureID": 5279, + "TargetStructureID": 98100, + "Label": "5279-98100 via Adherens from 133841 -> 133842", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133841, + "TargetID": 133842, + "Directional": false + }] + }, { + "ID": 2076, + "SourceStructureID": 5279, + "TargetStructureID": 98106, + "Label": "5279-98106 via Adherens from 133840 -> 133839", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133840, + "TargetID": 133839, + "Directional": false + }] + }, { + "ID": 2077, + "SourceStructureID": 5279, + "TargetStructureID": 98111, + "Label": "5279-98111 via Unknown from 133795 -> 133794", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133795, + "TargetID": 133794, + "Directional": false + }] + }, { + "ID": 2078, + "SourceStructureID": 5279, + "TargetStructureID": 98122, + "Label": "5279-98122 via Adherens from 98126 -> 98125", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98126, + "TargetID": 98125, + "Directional": false + }] + }, { + "ID": 2079, + "SourceStructureID": 5279, + "TargetStructureID": 98573, + "Label": "5279-98573 via Adherens from 98577 -> 98576", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98577, + "TargetID": 98576, + "Directional": false + }] + }, { + "ID": 2080, + "SourceStructureID": 98627, + "TargetStructureID": 5279, + "Label": "98627-5279 via Unknown from 98629 -> 98628", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98629, + "TargetID": 98628, + "Directional": false + }] + }, { + "ID": 2081, + "SourceStructureID": 98667, + "TargetStructureID": 5279, + "Label": "98667-5279 via Unknown from 98670 -> 98668", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98670, + "TargetID": 98668, + "Directional": false + }] + }, { + "ID": 2082, + "SourceStructureID": 98976, + "TargetStructureID": 5279, + "Label": "98976-5279 via Unknown from 98977 -> 98978", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98977, + "TargetID": 98978, + "Directional": false + }] + }, { + "ID": 2083, + "SourceStructureID": 5279, + "TargetStructureID": 99048, + "Label": "5279-99048 via Unknown from 99050 -> 99051", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99050, + "TargetID": 99051, + "Directional": false + }] + }, { + "ID": 2084, + "SourceStructureID": 5279, + "TargetStructureID": 99056, + "Label": "5279-99056 via Unknown from 99046 -> 133843", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99046, + "TargetID": 133843, + "Directional": false + }] + }, { + "ID": 2085, + "SourceStructureID": 5279, + "TargetStructureID": 99080, + "Label": "5279-99080 via Unknown from 99082 -> 99083", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99082, + "TargetID": 99083, + "Directional": false + }] + }, { + "ID": 2086, + "SourceStructureID": 99106, + "TargetStructureID": 5279, + "Label": "99106-5279 via Unknown from 129573 -> 129572", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129573, + "TargetID": 129572, + "Directional": false + }] + }, { + "ID": 2087, + "SourceStructureID": 99112, + "TargetStructureID": 5279, + "Label": "99112-5279 via Unknown from 99114 -> 99113", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99114, + "TargetID": 99113, + "Directional": false + }] + }, { + "ID": 2088, + "SourceStructureID": 99144, + "TargetStructureID": 5279, + "Label": "99144-5279 via Unknown from 99146 -> 99145", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99146, + "TargetID": 99145, + "Directional": false + }] + }, { + "ID": 2089, + "SourceStructureID": 99795, + "TargetStructureID": 5279, + "Label": "99795-5279 via Adherens from 99810 -> 99811", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 99810, + "TargetID": 99811, + "Directional": false + }] + }, { + "ID": 2090, + "SourceStructureID": 100780, + "TargetStructureID": 5279, + "Label": "100780-5279 via Adherens from 100785 -> 92665", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100785, + "TargetID": 92665, + "Directional": false + }] + }, { + "ID": 2091, + "SourceStructureID": 136667, + "TargetStructureID": 5279, + "Label": "136667-5279 via Gap Junction from 136668 -> 126473", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136668, + "TargetID": 126473, + "Directional": false + }] + }, { + "ID": 2092, + "SourceStructureID": 5281, + "TargetStructureID": 6117, + "Label": "5281-6117 via Adherens from 83168 -> 83167", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83168, + "TargetID": 83167, + "Directional": false + }] + }, { + "ID": 2093, + "SourceStructureID": 5281, + "TargetStructureID": 6117, + "Label": "5281-6117 via Unknown from 83203 -> 83202", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83203, + "TargetID": 83202, + "Directional": false + }] + }, { + "ID": 2094, + "SourceStructureID": 5281, + "TargetStructureID": 25402, + "Label": "5281-25402 via Adherens from 98587 -> 98586", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98587, + "TargetID": 98586, + "Directional": false + }] + }, { + "ID": 2095, + "SourceStructureID": 5282, + "TargetStructureID": 5284, + "Label": "5282-5284 via Unknown from 124720 -> 112914", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124720, + "TargetID": 112914, + "Directional": false + }] + }, { + "ID": 2096, + "SourceStructureID": 5561, + "TargetStructureID": 5282, + "Label": "5561-5282 via Adherens from 148146 -> 148147", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148146, + "TargetID": 148147, + "Directional": false + }] + }, { + "ID": 2097, + "SourceStructureID": 5282, + "TargetStructureID": 5561, + "Label": "5282-5561 via Gap Junction from 136727 -> 135827", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136727, + "TargetID": 135827, + "Directional": false + }] + }, { + "ID": 2098, + "SourceStructureID": 5282, + "TargetStructureID": 5561, + "Label": "5282-5561 via Unknown from 136340 -> 130899", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136340, + "TargetID": 130899, + "Directional": false + }] + }, { + "ID": 2099, + "SourceStructureID": 8037, + "TargetStructureID": 5282, + "Label": "8037-5282 via Adherens from 148178 -> 148179", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148178, + "TargetID": 148179, + "Directional": false + }] + }, { + "ID": 2100, + "SourceStructureID": 5282, + "TargetStructureID": 20136, + "Label": "5282-20136 via Adherens from 109280 -> 109281", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109280, + "TargetID": 109281, + "Directional": false + }] + }, { + "ID": 2101, + "SourceStructureID": 5282, + "TargetStructureID": 20136, + "Label": "5282-20136 via Gap Junction from 108858 -> 108859", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 108858, + "TargetID": 108859, + "Directional": false + }] + }, { + "ID": 2102, + "SourceStructureID": 5282, + "TargetStructureID": 20136, + "Label": "5282-20136 via Unknown from 136348 -> 136347", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136348, + "TargetID": 136347, + "Directional": false + }] + }, { + "ID": 2103, + "SourceStructureID": 5283, + "TargetStructureID": 5283, + "Label": "5283-5283 via Adherens from 123933 -> 131662, 130539 -> 130538", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123933, + "TargetID": 131662, + "Directional": false + }, { + "SourceID": 130539, + "TargetID": 130538, + "Directional": false + }] + }, { + "ID": 2104, + "SourceStructureID": 5374, + "TargetStructureID": 5283, + "Label": "5374-5283 via Adherens from 123991 -> 123990, 123997 -> 123996", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123991, + "TargetID": 123990, + "Directional": false + }, { + "SourceID": 123997, + "TargetID": 123996, + "Directional": false + }] + }, { + "ID": 2105, + "SourceStructureID": 5374, + "TargetStructureID": 5283, + "Label": "5374-5283 via Unknown from 123985 -> 123984", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 123985, + "TargetID": 123984, + "Directional": false + }] + }, { + "ID": 2106, + "SourceStructureID": 5515, + "TargetStructureID": 5283, + "Label": "5515-5283 via Adherens from 22458 -> 22457, 132170 -> 132171, 132244 -> 132245", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 22458, + "TargetID": 22457, + "Directional": false + }, { + "SourceID": 132170, + "TargetID": 132171, + "Directional": false + }, { + "SourceID": 132244, + "TargetID": 132245, + "Directional": false + }] + }, { + "ID": 2107, + "SourceStructureID": 5515, + "TargetStructureID": 5283, + "Label": "5515-5283 via Gap Junction from 132172 -> 132173", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132172, + "TargetID": 132173, + "Directional": false + }] + }, { + "ID": 2108, + "SourceStructureID": 5283, + "TargetStructureID": 5562, + "Label": "5283-5562 via Gap Junction from 132076 -> 132075", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132076, + "TargetID": 132075, + "Directional": false + }] + }, { + "ID": 2109, + "SourceStructureID": 5283, + "TargetStructureID": 5860, + "Label": "5283-5860 via Gap Junction from 124352 -> 124353, 131715 -> 131716", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 124352, + "TargetID": 124353, + "Directional": false + }, { + "SourceID": 131715, + "TargetID": 131716, + "Directional": false + }] + }, { + "ID": 2110, + "SourceStructureID": 5283, + "TargetStructureID": 6156, + "Label": "5283-6156 via Adherens from 123894 -> 123895", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123894, + "TargetID": 123895, + "Directional": false + }] + }, { + "ID": 2111, + "SourceStructureID": 5283, + "TargetStructureID": 6156, + "Label": "5283-6156 via Gap Junction from 132207 -> 132206", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132207, + "TargetID": 132206, + "Directional": false + }] + }, { + "ID": 2112, + "SourceStructureID": 5283, + "TargetStructureID": 6589, + "Label": "5283-6589 via Adherens from 123847 -> 123848", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123847, + "TargetID": 123848, + "Directional": false + }] + }, { + "ID": 2113, + "SourceStructureID": 7043, + "TargetStructureID": 5283, + "Label": "7043-5283 via Adherens from 118744 -> 118745", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 118744, + "TargetID": 118745, + "Directional": false + }] + }, { + "ID": 2114, + "SourceStructureID": 5283, + "TargetStructureID": 7043, + "Label": "5283-7043 via Touch from 131648 -> 131649", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 131648, + "TargetID": 131649, + "Directional": false + }] + }, { + "ID": 2115, + "SourceStructureID": 8033, + "TargetStructureID": 5283, + "Label": "8033-5283 via Adherens from 132111 -> 132144", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132111, + "TargetID": 132144, + "Directional": false + }] + }, { + "ID": 2116, + "SourceStructureID": 8037, + "TargetStructureID": 5283, + "Label": "8037-5283 via Gap Junction from 131684 -> 131685", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131684, + "TargetID": 131685, + "Directional": false + }] + }, { + "ID": 2117, + "SourceStructureID": 5283, + "TargetStructureID": 9693, + "Label": "5283-9693 via Adherens from 135014 -> 135013", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135014, + "TargetID": 135013, + "Directional": false + }] + }, { + "ID": 2118, + "SourceStructureID": 5283, + "TargetStructureID": 12897, + "Label": "5283-12897 via Gap Junction from 108236 -> 108237, 132086 -> 132087, 132197 -> 132196", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 108236, + "TargetID": 108237, + "Directional": false + }, { + "SourceID": 132086, + "TargetID": 132087, + "Directional": false + }, { + "SourceID": 132197, + "TargetID": 132196, + "Directional": false + }] + }, { + "ID": 2119, + "SourceStructureID": 16026, + "TargetStructureID": 5283, + "Label": "16026-5283 via Adherens from 65548 -> 65547, 123763 -> 123762, 131661 -> 131660", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65548, + "TargetID": 65547, + "Directional": false + }, { + "SourceID": 123763, + "TargetID": 123762, + "Directional": false + }, { + "SourceID": 131661, + "TargetID": 131660, + "Directional": false + }] + }, { + "ID": 2120, + "SourceStructureID": 16026, + "TargetStructureID": 5283, + "Label": "16026-5283 via Gap Junction from 131656 -> 131657, 134526 -> 134527, 134842 -> 134843", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131656, + "TargetID": 131657, + "Directional": false + }, { + "SourceID": 134526, + "TargetID": 134527, + "Directional": false + }, { + "SourceID": 134842, + "TargetID": 134843, + "Directional": false + }] + }, { + "ID": 2121, + "SourceStructureID": 5283, + "TargetStructureID": 16026, + "Label": "5283-16026 via Touch from 132092 -> 132093", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 132092, + "TargetID": 132093, + "Directional": false + }] + }, { + "ID": 2122, + "SourceStructureID": 5283, + "TargetStructureID": 22554, + "Label": "5283-22554 via Unknown from 131687 -> 131688, 132180 -> 123903", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131687, + "TargetID": 131688, + "Directional": false + }, { + "SourceID": 132180, + "TargetID": 123903, + "Directional": false + }] + }, { + "ID": 2123, + "SourceStructureID": 5283, + "TargetStructureID": 64371, + "Label": "5283-64371 via Adherens from 124033 -> 131675, 131676 -> 131677", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124033, + "TargetID": 131675, + "Directional": false + }, { + "SourceID": 131676, + "TargetID": 131677, + "Directional": false + }] + }, { + "ID": 2124, + "SourceStructureID": 5283, + "TargetStructureID": 64371, + "Label": "5283-64371 via Unknown from 123932 -> 135062", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 123932, + "TargetID": 135062, + "Directional": false + }] + }, { + "ID": 2125, + "SourceStructureID": 5283, + "TargetStructureID": 65555, + "Label": "5283-65555 via Unknown from 132133 -> 132134", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132133, + "TargetID": 132134, + "Directional": false + }] + }, { + "ID": 2126, + "SourceStructureID": 5283, + "TargetStructureID": 66303, + "Label": "5283-66303 via Adherens from 66314 -> 66313", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66314, + "TargetID": 66313, + "Directional": false + }] + }, { + "ID": 2127, + "SourceStructureID": 67361, + "TargetStructureID": 5283, + "Label": "67361-5283 via Adherens from 130545 -> 124163", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130545, + "TargetID": 124163, + "Directional": false + }] + }, { + "ID": 2128, + "SourceStructureID": 5283, + "TargetStructureID": 67361, + "Label": "5283-67361 via Unknown from 130547 -> 130546, 132198 -> 124188, 132199 -> 124196", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130547, + "TargetID": 130546, + "Directional": false + }, { + "SourceID": 132198, + "TargetID": 124188, + "Directional": false + }, { + "SourceID": 132199, + "TargetID": 124196, + "Directional": false + }] + }, { + "ID": 2129, + "SourceStructureID": 68087, + "TargetStructureID": 5283, + "Label": "68087-5283 via Adherens from 80145 -> 80144", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80145, + "TargetID": 80144, + "Directional": false + }] + }, { + "ID": 2130, + "SourceStructureID": 5283, + "TargetStructureID": 68087, + "Label": "5283-68087 via Unknown from 132119 -> 132120", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132119, + "TargetID": 132120, + "Directional": false + }] + }, { + "ID": 2131, + "SourceStructureID": 5283, + "TargetStructureID": 68435, + "Label": "5283-68435 via Adherens from 79879 -> 68452", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79879, + "TargetID": 68452, + "Directional": false + }] + }, { + "ID": 2132, + "SourceStructureID": 5283, + "TargetStructureID": 68435, + "Label": "5283-68435 via Unknown from 80058 -> 80059", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80058, + "TargetID": 80059, + "Directional": false + }] + }, { + "ID": 2133, + "SourceStructureID": 68463, + "TargetStructureID": 5283, + "Label": "68463-5283 via Unknown from 132209 -> 79891", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132209, + "TargetID": 79891, + "Directional": false + }] + }, { + "ID": 2134, + "SourceStructureID": 5283, + "TargetStructureID": 80079, + "Label": "5283-80079 via Adherens from 80078 -> 80080", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80078, + "TargetID": 80080, + "Directional": false + }] + }, { + "ID": 2135, + "SourceStructureID": 5283, + "TargetStructureID": 80079, + "Label": "5283-80079 via Unknown from 131654 -> 131655", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131654, + "TargetID": 131655, + "Directional": false + }] + }, { + "ID": 2136, + "SourceStructureID": 80098, + "TargetStructureID": 5283, + "Label": "80098-5283 via Adherens from 131718 -> 131717", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131718, + "TargetID": 131717, + "Directional": false + }] + }, { + "ID": 2137, + "SourceStructureID": 80101, + "TargetStructureID": 5283, + "Label": "80101-5283 via Adherens from 80102 -> 80100", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80102, + "TargetID": 80100, + "Directional": false + }] + }, { + "ID": 2138, + "SourceStructureID": 80115, + "TargetStructureID": 5283, + "Label": "80115-5283 via Adherens from 80117 -> 80118", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80117, + "TargetID": 80118, + "Directional": false + }] + }, { + "ID": 2139, + "SourceStructureID": 5283, + "TargetStructureID": 80123, + "Label": "5283-80123 via Adherens from 80127 -> 80128", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80127, + "TargetID": 80128, + "Directional": false + }] + }, { + "ID": 2140, + "SourceStructureID": 80137, + "TargetStructureID": 5283, + "Label": "80137-5283 via Unknown from 132118 -> 132117", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132118, + "TargetID": 132117, + "Directional": false + }] + }, { + "ID": 2141, + "SourceStructureID": 5283, + "TargetStructureID": 80153, + "Label": "5283-80153 via Adherens from 80152 -> 80156", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80152, + "TargetID": 80156, + "Directional": false + }] + }, { + "ID": 2142, + "SourceStructureID": 80154, + "TargetStructureID": 5283, + "Label": "80154-5283 via Adherens from 80155 -> 80151", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80155, + "TargetID": 80151, + "Directional": false + }] + }, { + "ID": 2143, + "SourceStructureID": 5283, + "TargetStructureID": 80167, + "Label": "5283-80167 via Unknown from 131700 -> 131701", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131700, + "TargetID": 131701, + "Directional": false + }] + }, { + "ID": 2144, + "SourceStructureID": 5283, + "TargetStructureID": 80412, + "Label": "5283-80412 via Unknown from 124178 -> 124177", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124178, + "TargetID": 124177, + "Directional": false + }] + }, { + "ID": 2145, + "SourceStructureID": 5283, + "TargetStructureID": 85551, + "Label": "5283-85551 via Adherens from 123777 -> 123778", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123777, + "TargetID": 123778, + "Directional": false + }] + }, { + "ID": 2146, + "SourceStructureID": 5283, + "TargetStructureID": 94935, + "Label": "5283-94935 via Adherens from 124337 -> 124338, 131690 -> 124233", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124337, + "TargetID": 124338, + "Directional": false + }, { + "SourceID": 131690, + "TargetID": 124233, + "Directional": false + }] + }, { + "ID": 2147, + "SourceStructureID": 5283, + "TargetStructureID": 122829, + "Label": "5283-122829 via Unknown from 123980 -> 123981, 131672 -> 131671", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 123980, + "TargetID": 123981, + "Directional": false + }, { + "SourceID": 131672, + "TargetID": 131671, + "Directional": false + }] + }, { + "ID": 2148, + "SourceStructureID": 5283, + "TargetStructureID": 131630, + "Label": "5283-131630 via Unknown from 131629 -> 131634", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131629, + "TargetID": 131634, + "Directional": false + }] + }, { + "ID": 2149, + "SourceStructureID": 131664, + "TargetStructureID": 5283, + "Label": "131664-5283 via Adherens from 131667 -> 123959", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131667, + "TargetID": 123959, + "Directional": false + }] + }, { + "ID": 2150, + "SourceStructureID": 5283, + "TargetStructureID": 131664, + "Label": "5283-131664 via Unknown from 131663 -> 131666", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131663, + "TargetID": 131666, + "Directional": false + }] + }, { + "ID": 2151, + "SourceStructureID": 131708, + "TargetStructureID": 5283, + "Label": "131708-5283 via Adherens from 131710 -> 131709", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131710, + "TargetID": 131709, + "Directional": false + }] + }, { + "ID": 2152, + "SourceStructureID": 5283, + "TargetStructureID": 132081, + "Label": "5283-132081 via Gap Junction from 132080 -> 132082", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132080, + "TargetID": 132082, + "Directional": false + }] + }, { + "ID": 2153, + "SourceStructureID": 132158, + "TargetStructureID": 5283, + "Label": "132158-5283 via Unknown from 132159 -> 123804", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132159, + "TargetID": 123804, + "Directional": false + }] + }, { + "ID": 2154, + "SourceStructureID": 5283, + "TargetStructureID": 135039, + "Label": "5283-135039 via Gap Junction from 135038 -> 135041", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 135038, + "TargetID": 135041, + "Directional": false + }] + }, { + "ID": 2155, + "SourceStructureID": 135052, + "TargetStructureID": 5283, + "Label": "135052-5283 via Gap Junction from 135054 -> 131695", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 135054, + "TargetID": 131695, + "Directional": false + }] + }, { + "ID": 2156, + "SourceStructureID": 5284, + "TargetStructureID": 5284, + "Label": "5284-5284 via Adherens from 124692 -> 124691", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124692, + "TargetID": 124691, + "Directional": false + }] + }, { + "ID": 2157, + "SourceStructureID": 5284, + "TargetStructureID": 5284, + "Label": "5284-5284 via Gap Junction from 53431 -> 53430", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53431, + "TargetID": 53430, + "Directional": false + }] + }, { + "ID": 2158, + "SourceStructureID": 5284, + "TargetStructureID": 5292, + "Label": "5284-5292 via Adherens from 39425 -> 51576, 91803 -> 91804, 124684 -> 124685, 124706 -> 124705, 127703 -> 127702, 127850 -> 127851, 127881 -> 127882, 127885 -> 127884, 135763 -> 135764, 135768 -> 135767", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 39425, + "TargetID": 51576, + "Directional": false + }, { + "SourceID": 91803, + "TargetID": 91804, + "Directional": false + }, { + "SourceID": 124684, + "TargetID": 124685, + "Directional": false + }, { + "SourceID": 124706, + "TargetID": 124705, + "Directional": false + }, { + "SourceID": 127703, + "TargetID": 127702, + "Directional": false + }, { + "SourceID": 127850, + "TargetID": 127851, + "Directional": false + }, { + "SourceID": 127881, + "TargetID": 127882, + "Directional": false + }, { + "SourceID": 127885, + "TargetID": 127884, + "Directional": false + }, { + "SourceID": 135763, + "TargetID": 135764, + "Directional": false + }, { + "SourceID": 135768, + "TargetID": 135767, + "Directional": false + }] + }, { + "ID": 2159, + "SourceStructureID": 5284, + "TargetStructureID": 5292, + "Label": "5284-5292 via Gap Junction from 49823 -> 49822, 49851 -> 49846, 49861 -> 49928, 49933 -> 49836, 51575 -> 39424, 54349 -> 49895, 54390 -> 91948, 60816 -> 98225, 91596 -> 91594, 91802 -> 51566, 91810 -> 91811, 91881 -> 91882, 91884 -> 91883, 98153 -> 49880, 112877 -> 112878, 113223 -> 49897, 113371 -> 113372, 113619 -> 113620, 124715 -> 124716, 127732 -> 127733", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49823, + "TargetID": 49822, + "Directional": false + }, { + "SourceID": 49851, + "TargetID": 49846, + "Directional": false + }, { + "SourceID": 49861, + "TargetID": 49928, + "Directional": false + }, { + "SourceID": 49933, + "TargetID": 49836, + "Directional": false + }, { + "SourceID": 51575, + "TargetID": 39424, + "Directional": false + }, { + "SourceID": 54349, + "TargetID": 49895, + "Directional": false + }, { + "SourceID": 54390, + "TargetID": 91948, + "Directional": false + }, { + "SourceID": 60816, + "TargetID": 98225, + "Directional": false + }, { + "SourceID": 91596, + "TargetID": 91594, + "Directional": false + }, { + "SourceID": 91802, + "TargetID": 51566, + "Directional": false + }, { + "SourceID": 91810, + "TargetID": 91811, + "Directional": false + }, { + "SourceID": 91881, + "TargetID": 91882, + "Directional": false + }, { + "SourceID": 91884, + "TargetID": 91883, + "Directional": false + }, { + "SourceID": 98153, + "TargetID": 49880, + "Directional": false + }, { + "SourceID": 112877, + "TargetID": 112878, + "Directional": false + }, { + "SourceID": 113223, + "TargetID": 49897, + "Directional": false + }, { + "SourceID": 113371, + "TargetID": 113372, + "Directional": false + }, { + "SourceID": 113619, + "TargetID": 113620, + "Directional": false + }, { + "SourceID": 124715, + "TargetID": 124716, + "Directional": false + }, { + "SourceID": 127732, + "TargetID": 127733, + "Directional": false + }] + }, { + "ID": 2160, + "SourceStructureID": 5284, + "TargetStructureID": 5297, + "Label": "5284-5297 via Adherens from 127726 -> 127727, 127736 -> 127735", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127726, + "TargetID": 127727, + "Directional": false + }, { + "SourceID": 127736, + "TargetID": 127735, + "Directional": false + }] + }, { + "ID": 2161, + "SourceStructureID": 5284, + "TargetStructureID": 5297, + "Label": "5284-5297 via Gap Junction from 39428 -> 39427, 68601 -> 68599, 92300 -> 92302, 98142 -> 98143, 98150 -> 60839, 112541 -> 112542, 112850 -> 112851, 112910 -> 112909, 113217 -> 113216, 113366 -> 113365, 113378 -> 113377, 113401 -> 113400, 113436 -> 113437, 113522 -> 113521, 113613 -> 113612, 116316 -> 116315, 121068 -> 121069, 124676 -> 121058, 127785 -> 127786", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 39428, + "TargetID": 39427, + "Directional": false + }, { + "SourceID": 68601, + "TargetID": 68599, + "Directional": false + }, { + "SourceID": 92300, + "TargetID": 92302, + "Directional": false + }, { + "SourceID": 98142, + "TargetID": 98143, + "Directional": false + }, { + "SourceID": 98150, + "TargetID": 60839, + "Directional": false + }, { + "SourceID": 112541, + "TargetID": 112542, + "Directional": false + }, { + "SourceID": 112850, + "TargetID": 112851, + "Directional": false + }, { + "SourceID": 112910, + "TargetID": 112909, + "Directional": false + }, { + "SourceID": 113217, + "TargetID": 113216, + "Directional": false + }, { + "SourceID": 113366, + "TargetID": 113365, + "Directional": false + }, { + "SourceID": 113378, + "TargetID": 113377, + "Directional": false + }, { + "SourceID": 113401, + "TargetID": 113400, + "Directional": false + }, { + "SourceID": 113436, + "TargetID": 113437, + "Directional": false + }, { + "SourceID": 113522, + "TargetID": 113521, + "Directional": false + }, { + "SourceID": 113613, + "TargetID": 113612, + "Directional": false + }, { + "SourceID": 116316, + "TargetID": 116315, + "Directional": false + }, { + "SourceID": 121068, + "TargetID": 121069, + "Directional": false + }, { + "SourceID": 124676, + "TargetID": 121058, + "Directional": false + }, { + "SourceID": 127785, + "TargetID": 127786, + "Directional": false + }] + }, { + "ID": 2162, + "SourceStructureID": 5284, + "TargetStructureID": 5297, + "Label": "5284-5297 via Touch from 127874 -> 127875", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 127874, + "TargetID": 127875, + "Directional": false + }] + }, { + "ID": 2163, + "SourceStructureID": 5501, + "TargetStructureID": 5284, + "Label": "5501-5284 via Gap Junction from 113022 -> 113021, 127936 -> 127935", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 113022, + "TargetID": 113021, + "Directional": false + }, { + "SourceID": 127936, + "TargetID": 127935, + "Directional": false + }] + }, { + "ID": 2164, + "SourceStructureID": 5284, + "TargetStructureID": 5503, + "Label": "5284-5503 via Adherens from 127938 -> 127939", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127938, + "TargetID": 127939, + "Directional": false + }] + }, { + "ID": 2165, + "SourceStructureID": 5284, + "TargetStructureID": 5503, + "Label": "5284-5503 via Gap Junction from 60783 -> 52801", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60783, + "TargetID": 52801, + "Directional": false + }] + }, { + "ID": 2166, + "SourceStructureID": 5284, + "TargetStructureID": 5562, + "Label": "5284-5562 via Touch from 77601 -> 77600", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 77601, + "TargetID": 77600, + "Directional": false + }] + }, { + "ID": 2167, + "SourceStructureID": 6050, + "TargetStructureID": 5284, + "Label": "6050-5284 via Adherens from 127079 -> 127080", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127079, + "TargetID": 127080, + "Directional": false + }] + }, { + "ID": 2168, + "SourceStructureID": 6050, + "TargetStructureID": 5284, + "Label": "6050-5284 via Gap Junction from 57065 -> 60795, 92876 -> 98221, 92879 -> 92878, 92888 -> 57071, 113221 -> 113220", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57065, + "TargetID": 60795, + "Directional": false + }, { + "SourceID": 92876, + "TargetID": 98221, + "Directional": false + }, { + "SourceID": 92879, + "TargetID": 92878, + "Directional": false + }, { + "SourceID": 92888, + "TargetID": 57071, + "Directional": false + }, { + "SourceID": 113221, + "TargetID": 113220, + "Directional": false + }] + }, { + "ID": 2169, + "SourceStructureID": 5284, + "TargetStructureID": 8720, + "Label": "5284-8720 via Unknown from 127824 -> 127825", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127824, + "TargetID": 127825, + "Directional": false + }] + }, { + "ID": 2170, + "SourceStructureID": 12897, + "TargetStructureID": 5284, + "Label": "12897-5284 via Gap Junction from 12905 -> 112902, 24615 -> 112812", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 12905, + "TargetID": 112902, + "Directional": false + }, { + "SourceID": 24615, + "TargetID": 112812, + "Directional": false + }] + }, { + "ID": 2171, + "SourceStructureID": 15796, + "TargetStructureID": 5284, + "Label": "15796-5284 via Unknown from 124727 -> 113052", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124727, + "TargetID": 113052, + "Directional": false + }] + }, { + "ID": 2172, + "SourceStructureID": 16026, + "TargetStructureID": 5284, + "Label": "16026-5284 via Adherens from 133823 -> 133822", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133823, + "TargetID": 133822, + "Directional": false + }] + }, { + "ID": 2173, + "SourceStructureID": 16026, + "TargetStructureID": 5284, + "Label": "16026-5284 via Gap Junction from 113384 -> 113383", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 113384, + "TargetID": 113383, + "Directional": false + }] + }, { + "ID": 2174, + "SourceStructureID": 5284, + "TargetStructureID": 16073, + "Label": "5284-16073 via Unknown from 113076 -> 113075", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113076, + "TargetID": 113075, + "Directional": false + }] + }, { + "ID": 2175, + "SourceStructureID": 5284, + "TargetStructureID": 20136, + "Label": "5284-20136 via Gap Junction from 127751 -> 127752", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 127751, + "TargetID": 127752, + "Directional": false + }] + }, { + "ID": 2176, + "SourceStructureID": 38379, + "TargetStructureID": 5284, + "Label": "38379-5284 via Adherens from 127790 -> 127789", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127790, + "TargetID": 127789, + "Directional": false + }] + }, { + "ID": 2177, + "SourceStructureID": 5284, + "TargetStructureID": 38379, + "Label": "5284-38379 via Unknown from 124737 -> 124738", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124737, + "TargetID": 124738, + "Directional": false + }] + }, { + "ID": 2178, + "SourceStructureID": 53218, + "TargetStructureID": 5284, + "Label": "53218-5284 via Unknown from 113084 -> 113083", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113084, + "TargetID": 113083, + "Directional": false + }] + }, { + "ID": 2179, + "SourceStructureID": 5284, + "TargetStructureID": 54074, + "Label": "5284-54074 via Adherens from 113426 -> 113427", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 113426, + "TargetID": 113427, + "Directional": false + }] + }, { + "ID": 2180, + "SourceStructureID": 54252, + "TargetStructureID": 5284, + "Label": "54252-5284 via Unknown from 113535 -> 113534", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113535, + "TargetID": 113534, + "Directional": false + }] + }, { + "ID": 2181, + "SourceStructureID": 5284, + "TargetStructureID": 60843, + "Label": "5284-60843 via Unknown from 113212 -> 113211", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113212, + "TargetID": 113211, + "Directional": false + }] + }, { + "ID": 2182, + "SourceStructureID": 5284, + "TargetStructureID": 67818, + "Label": "5284-67818 via Gap Junction from 127730 -> 127731", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 127730, + "TargetID": 127731, + "Directional": false + }] + }, { + "ID": 2183, + "SourceStructureID": 68093, + "TargetStructureID": 5284, + "Label": "68093-5284 via Unknown from 124609 -> 124608", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124609, + "TargetID": 124608, + "Directional": false + }] + }, { + "ID": 2184, + "SourceStructureID": 68135, + "TargetStructureID": 5284, + "Label": "68135-5284 via Adherens from 113589 -> 113588", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 113589, + "TargetID": 113588, + "Directional": false + }] + }, { + "ID": 2185, + "SourceStructureID": 5284, + "TargetStructureID": 68135, + "Label": "5284-68135 via Gap Junction from 113587 -> 113586", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 113587, + "TargetID": 113586, + "Directional": false + }] + }, { + "ID": 2186, + "SourceStructureID": 5284, + "TargetStructureID": 68198, + "Label": "5284-68198 via Adherens from 68201 -> 68200", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68201, + "TargetID": 68200, + "Directional": false + }] + }, { + "ID": 2187, + "SourceStructureID": 70379, + "TargetStructureID": 5284, + "Label": "70379-5284 via Adherens from 113397 -> 113396, 127684 -> 127685", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 113397, + "TargetID": 113396, + "Directional": false + }, { + "SourceID": 127684, + "TargetID": 127685, + "Directional": false + }] + }, { + "ID": 2188, + "SourceStructureID": 5284, + "TargetStructureID": 77603, + "Label": "5284-77603 via Adherens from 64649 -> 113111", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64649, + "TargetID": 113111, + "Directional": false + }] + }, { + "ID": 2189, + "SourceStructureID": 5284, + "TargetStructureID": 85311, + "Label": "5284-85311 via Unknown from 113200 -> 113202", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113200, + "TargetID": 113202, + "Directional": false + }] + }, { + "ID": 2190, + "SourceStructureID": 5284, + "TargetStructureID": 92092, + "Label": "5284-92092 via Adherens from 113064 -> 113065, 127861 -> 127862", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 113064, + "TargetID": 113065, + "Directional": false + }, { + "SourceID": 127861, + "TargetID": 127862, + "Directional": false + }] + }, { + "ID": 2191, + "SourceStructureID": 5284, + "TargetStructureID": 92092, + "Label": "5284-92092 via Unknown from 112802 -> 112804, 113062 -> 113061, 113316 -> 113315", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112802, + "TargetID": 112804, + "Directional": false + }, { + "SourceID": 113062, + "TargetID": 113061, + "Directional": false + }, { + "SourceID": 113316, + "TargetID": 113315, + "Directional": false + }] + }, { + "ID": 2192, + "SourceStructureID": 92872, + "TargetStructureID": 5284, + "Label": "92872-5284 via Unknown from 92873 -> 98179, 127700 -> 98185", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92873, + "TargetID": 98179, + "Directional": false + }, { + "SourceID": 127700, + "TargetID": 98185, + "Directional": false + }] + }, { + "ID": 2193, + "SourceStructureID": 113086, + "TargetStructureID": 5284, + "Label": "113086-5284 via Adherens from 113117 -> 64609", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 113117, + "TargetID": 64609, + "Directional": false + }] + }, { + "ID": 2194, + "SourceStructureID": 5284, + "TargetStructureID": 113086, + "Label": "5284-113086 via Unknown from 127894 -> 127893", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127894, + "TargetID": 127893, + "Directional": false + }] + }, { + "ID": 2195, + "SourceStructureID": 5284, + "TargetStructureID": 113332, + "Label": "5284-113332 via Adherens from 113327 -> 113334", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 113327, + "TargetID": 113334, + "Directional": false + }] + }, { + "ID": 2196, + "SourceStructureID": 113541, + "TargetStructureID": 5284, + "Label": "113541-5284 via Adherens from 127690 -> 127689", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127690, + "TargetID": 127689, + "Directional": false + }] + }, { + "ID": 2197, + "SourceStructureID": 5284, + "TargetStructureID": 113541, + "Label": "5284-113541 via Gap Junction from 56720 -> 113542", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56720, + "TargetID": 113542, + "Directional": false + }] + }, { + "ID": 2198, + "SourceStructureID": 113547, + "TargetStructureID": 5284, + "Label": "113547-5284 via Gap Junction from 113553 -> 113552", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 113553, + "TargetID": 113552, + "Directional": false + }] + }, { + "ID": 2199, + "SourceStructureID": 117803, + "TargetStructureID": 5284, + "Label": "117803-5284 via Unknown from 124757 -> 113643, 124758 -> 113641", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124757, + "TargetID": 113643, + "Directional": false + }, { + "SourceID": 124758, + "TargetID": 113641, + "Directional": false + }] + }, { + "ID": 2200, + "SourceStructureID": 5284, + "TargetStructureID": 117892, + "Label": "5284-117892 via Unknown from 113081 -> 130260", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113081, + "TargetID": 130260, + "Directional": false + }] + }, { + "ID": 2201, + "SourceStructureID": 121006, + "TargetStructureID": 5284, + "Label": "121006-5284 via Unknown from 124751 -> 113392", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124751, + "TargetID": 113392, + "Directional": false + }] + }, { + "ID": 2202, + "SourceStructureID": 5284, + "TargetStructureID": 121044, + "Label": "5284-121044 via Adherens from 124615 -> 124616, 124618 -> 98177", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124615, + "TargetID": 124616, + "Directional": false + }, { + "SourceID": 124618, + "TargetID": 98177, + "Directional": false + }] + }, { + "ID": 2203, + "SourceStructureID": 134553, + "TargetStructureID": 5284, + "Label": "134553-5284 via Unknown from 147972 -> 147973", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147972, + "TargetID": 147973, + "Directional": false + }] + }, { + "ID": 2204, + "SourceStructureID": 136736, + "TargetStructureID": 5284, + "Label": "136736-5284 via Unknown from 136737 -> 112555", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136737, + "TargetID": 112555, + "Directional": false + }] + }, { + "ID": 2205, + "SourceStructureID": 5292, + "TargetStructureID": 5292, + "Label": "5292-5292 via Adherens from 49793 -> 49792, 92062 -> 92063", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 49793, + "TargetID": 49792, + "Directional": false + }, { + "SourceID": 92062, + "TargetID": 92063, + "Directional": false + }] + }, { + "ID": 2206, + "SourceStructureID": 5292, + "TargetStructureID": 5292, + "Label": "5292-5292 via Gap Junction from 51544 -> 51545, 92359 -> 92360", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51544, + "TargetID": 51545, + "Directional": false + }, { + "SourceID": 92359, + "TargetID": 92360, + "Directional": false + }] + }, { + "ID": 2207, + "SourceStructureID": 5297, + "TargetStructureID": 5292, + "Label": "5297-5292 via Gap Junction from 56838 -> 56837, 68598 -> 68597, 121089 -> 121090, 121093 -> 121094, 133983 -> 133982", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56838, + "TargetID": 56837, + "Directional": false + }, { + "SourceID": 68598, + "TargetID": 68597, + "Directional": false + }, { + "SourceID": 121089, + "TargetID": 121090, + "Directional": false + }, { + "SourceID": 121093, + "TargetID": 121094, + "Directional": false + }, { + "SourceID": 133983, + "TargetID": 133982, + "Directional": false + }] + }, { + "ID": 2208, + "SourceStructureID": 5485, + "TargetStructureID": 5292, + "Label": "5485-5292 via Unknown from 91850 -> 91849", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91850, + "TargetID": 91849, + "Directional": false + }] + }, { + "ID": 2209, + "SourceStructureID": 5292, + "TargetStructureID": 5650, + "Label": "5292-5650 via Adherens from 91905 -> 91904, 103884 -> 103883, 135612 -> 135611, 135615 -> 135614, 135616 -> 135617, 135618 -> 135619, 135762 -> 135761", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91905, + "TargetID": 91904, + "Directional": false + }, { + "SourceID": 103884, + "TargetID": 103883, + "Directional": false + }, { + "SourceID": 135612, + "TargetID": 135611, + "Directional": false + }, { + "SourceID": 135615, + "TargetID": 135614, + "Directional": false + }, { + "SourceID": 135616, + "TargetID": 135617, + "Directional": false + }, { + "SourceID": 135618, + "TargetID": 135619, + "Directional": false + }, { + "SourceID": 135762, + "TargetID": 135761, + "Directional": false + }] + }, { + "ID": 2210, + "SourceStructureID": 5650, + "TargetStructureID": 5292, + "Label": "5650-5292 via Gap Junction from 29919 -> 29918, 49830 -> 49831, 49868 -> 49867, 54334 -> 54335, 56724 -> 56723, 56836 -> 91939, 133969 -> 133968, 133970 -> 133971, 133973 -> 133974, 135759 -> 135760", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29919, + "TargetID": 29918, + "Directional": false + }, { + "SourceID": 49830, + "TargetID": 49831, + "Directional": false + }, { + "SourceID": 49868, + "TargetID": 49867, + "Directional": false + }, { + "SourceID": 54334, + "TargetID": 54335, + "Directional": false + }, { + "SourceID": 56724, + "TargetID": 56723, + "Directional": false + }, { + "SourceID": 56836, + "TargetID": 91939, + "Directional": false + }, { + "SourceID": 133969, + "TargetID": 133968, + "Directional": false + }, { + "SourceID": 133970, + "TargetID": 133971, + "Directional": false + }, { + "SourceID": 133973, + "TargetID": 133974, + "Directional": false + }, { + "SourceID": 135759, + "TargetID": 135760, + "Directional": false + }] + }, { + "ID": 2211, + "SourceStructureID": 6050, + "TargetStructureID": 5292, + "Label": "6050-5292 via Adherens from 70298 -> 15322, 127077 -> 127078, 127081 -> 127082, 127542 -> 127541, 127624 -> 127625, 135770 -> 135769, 135772 -> 135771", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70298, + "TargetID": 15322, + "Directional": false + }, { + "SourceID": 127077, + "TargetID": 127078, + "Directional": false + }, { + "SourceID": 127081, + "TargetID": 127082, + "Directional": false + }, { + "SourceID": 127542, + "TargetID": 127541, + "Directional": false + }, { + "SourceID": 127624, + "TargetID": 127625, + "Directional": false + }, { + "SourceID": 135770, + "TargetID": 135769, + "Directional": false + }, { + "SourceID": 135772, + "TargetID": 135771, + "Directional": false + }] + }, { + "ID": 2212, + "SourceStructureID": 5292, + "TargetStructureID": 6050, + "Label": "5292-6050 via Gap Junction from 45545 -> 45544, 51896 -> 51897, 54393 -> 91940, 66163 -> 66161, 66361 -> 66360, 91962 -> 91963, 92029 -> 92030, 92043 -> 92044, 92057 -> 92056, 92367 -> 92368, 114278 -> 114279, 133986 -> 133987", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45545, + "TargetID": 45544, + "Directional": false + }, { + "SourceID": 51896, + "TargetID": 51897, + "Directional": false + }, { + "SourceID": 54393, + "TargetID": 91940, + "Directional": false + }, { + "SourceID": 66163, + "TargetID": 66161, + "Directional": false + }, { + "SourceID": 66361, + "TargetID": 66360, + "Directional": false + }, { + "SourceID": 91962, + "TargetID": 91963, + "Directional": false + }, { + "SourceID": 92029, + "TargetID": 92030, + "Directional": false + }, { + "SourceID": 92043, + "TargetID": 92044, + "Directional": false + }, { + "SourceID": 92057, + "TargetID": 92056, + "Directional": false + }, { + "SourceID": 92367, + "TargetID": 92368, + "Directional": false + }, { + "SourceID": 114278, + "TargetID": 114279, + "Directional": false + }, { + "SourceID": 133986, + "TargetID": 133987, + "Directional": false + }] + }, { + "ID": 2213, + "SourceStructureID": 5292, + "TargetStructureID": 6117, + "Label": "5292-6117 via Adherens from 84387 -> 84388, 135493 -> 135492", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84387, + "TargetID": 84388, + "Directional": false + }, { + "SourceID": 135493, + "TargetID": 135492, + "Directional": false + }] + }, { + "ID": 2214, + "SourceStructureID": 5292, + "TargetStructureID": 6117, + "Label": "5292-6117 via Gap Junction from 49884 -> 47287, 51345 -> 51346, 51361 -> 51531, 91857 -> 85420, 133976 -> 133977, 133979 -> 133978, 133980 -> 133981, 133985 -> 133984, 147852 -> 147851", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49884, + "TargetID": 47287, + "Directional": false + }, { + "SourceID": 51345, + "TargetID": 51346, + "Directional": false + }, { + "SourceID": 51361, + "TargetID": 51531, + "Directional": false + }, { + "SourceID": 91857, + "TargetID": 85420, + "Directional": false + }, { + "SourceID": 133976, + "TargetID": 133977, + "Directional": false + }, { + "SourceID": 133979, + "TargetID": 133978, + "Directional": false + }, { + "SourceID": 133980, + "TargetID": 133981, + "Directional": false + }, { + "SourceID": 133985, + "TargetID": 133984, + "Directional": false + }, { + "SourceID": 147852, + "TargetID": 147851, + "Directional": false + }] + }, { + "ID": 2215, + "SourceStructureID": 5292, + "TargetStructureID": 6117, + "Label": "5292-6117 via Touch from 92409 -> 92410", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 92409, + "TargetID": 92410, + "Directional": false + }] + }, { + "ID": 2216, + "SourceStructureID": 5292, + "TargetStructureID": 7073, + "Label": "5292-7073 via Unknown from 91590 -> 113182", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91590, + "TargetID": 113182, + "Directional": false + }] + }, { + "ID": 2217, + "SourceStructureID": 30130, + "TargetStructureID": 5292, + "Label": "30130-5292 via Unknown from 91591 -> 91592", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91591, + "TargetID": 91592, + "Directional": false + }] + }, { + "ID": 2218, + "SourceStructureID": 5292, + "TargetStructureID": 55132, + "Label": "5292-55132 via Adherens from 91899 -> 91897", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91899, + "TargetID": 91897, + "Directional": false + }] + }, { + "ID": 2219, + "SourceStructureID": 55132, + "TargetStructureID": 5292, + "Label": "55132-5292 via Gap Junction from 55141 -> 49864", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55141, + "TargetID": 49864, + "Directional": false + }] + }, { + "ID": 2220, + "SourceStructureID": 5292, + "TargetStructureID": 59482, + "Label": "5292-59482 via Adherens from 89118 -> 59493", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89118, + "TargetID": 59493, + "Directional": false + }] + }, { + "ID": 2221, + "SourceStructureID": 67818, + "TargetStructureID": 5292, + "Label": "67818-5292 via Unknown from 91608 -> 91607", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91608, + "TargetID": 91607, + "Directional": false + }] + }, { + "ID": 2222, + "SourceStructureID": 5292, + "TargetStructureID": 68531, + "Label": "5292-68531 via Unknown from 68535 -> 68534", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 68535, + "TargetID": 68534, + "Directional": false + }] + }, { + "ID": 2223, + "SourceStructureID": 76811, + "TargetStructureID": 5292, + "Label": "76811-5292 via Unknown from 133972 -> 124687", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133972, + "TargetID": 124687, + "Directional": false + }] + }, { + "ID": 2224, + "SourceStructureID": 91805, + "TargetStructureID": 5292, + "Label": "91805-5292 via Unknown from 91807 -> 91806", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91807, + "TargetID": 91806, + "Directional": false + }] + }, { + "ID": 2225, + "SourceStructureID": 91812, + "TargetStructureID": 5292, + "Label": "91812-5292 via Unknown from 91816 -> 91815", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91816, + "TargetID": 91815, + "Directional": false + }] + }, { + "ID": 2226, + "SourceStructureID": 91817, + "TargetStructureID": 5292, + "Label": "91817-5292 via Unknown from 91819 -> 91818", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91819, + "TargetID": 91818, + "Directional": false + }] + }, { + "ID": 2227, + "SourceStructureID": 5292, + "TargetStructureID": 91823, + "Label": "5292-91823 via Unknown from 91824 -> 91825", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91824, + "TargetID": 91825, + "Directional": false + }] + }, { + "ID": 2228, + "SourceStructureID": 5292, + "TargetStructureID": 91870, + "Label": "5292-91870 via Gap Junction from 91873 -> 91872", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91873, + "TargetID": 91872, + "Directional": false + }] + }, { + "ID": 2229, + "SourceStructureID": 91890, + "TargetStructureID": 5292, + "Label": "91890-5292 via Unknown from 91894 -> 91895", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91894, + "TargetID": 91895, + "Directional": false + }] + }, { + "ID": 2230, + "SourceStructureID": 91891, + "TargetStructureID": 5292, + "Label": "91891-5292 via Unknown from 91893 -> 91896", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91893, + "TargetID": 91896, + "Directional": false + }] + }, { + "ID": 2231, + "SourceStructureID": 91933, + "TargetStructureID": 5292, + "Label": "91933-5292 via Unknown from 91937 -> 91936", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91937, + "TargetID": 91936, + "Directional": false + }] + }, { + "ID": 2232, + "SourceStructureID": 91964, + "TargetStructureID": 5292, + "Label": "91964-5292 via Unknown from 91965 -> 91966", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91965, + "TargetID": 91966, + "Directional": false + }] + }, { + "ID": 2233, + "SourceStructureID": 5292, + "TargetStructureID": 91967, + "Label": "5292-91967 via Adherens from 91971 -> 91970", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91971, + "TargetID": 91970, + "Directional": false + }] + }, { + "ID": 2234, + "SourceStructureID": 5292, + "TargetStructureID": 91967, + "Label": "5292-91967 via Gap Junction from 91969 -> 91968", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91969, + "TargetID": 91968, + "Directional": false + }] + }, { + "ID": 2235, + "SourceStructureID": 5292, + "TargetStructureID": 92031, + "Label": "5292-92031 via Adherens from 92033 -> 92032", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92033, + "TargetID": 92032, + "Directional": false + }] + }, { + "ID": 2236, + "SourceStructureID": 92058, + "TargetStructureID": 5292, + "Label": "92058-5292 via Unknown from 92060 -> 92059", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92060, + "TargetID": 92059, + "Directional": false + }] + }, { + "ID": 2237, + "SourceStructureID": 5292, + "TargetStructureID": 92064, + "Label": "5292-92064 via Unknown from 92065 -> 92066", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92065, + "TargetID": 92066, + "Directional": false + }] + }, { + "ID": 2238, + "SourceStructureID": 92073, + "TargetStructureID": 5292, + "Label": "92073-5292 via Adherens from 127662 -> 127661", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127662, + "TargetID": 127661, + "Directional": false + }] + }, { + "ID": 2239, + "SourceStructureID": 92073, + "TargetStructureID": 5292, + "Label": "92073-5292 via Unknown from 127659 -> 127660", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127659, + "TargetID": 127660, + "Directional": false + }] + }, { + "ID": 2240, + "SourceStructureID": 97358, + "TargetStructureID": 5292, + "Label": "97358-5292 via Adherens from 131187 -> 131188", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131187, + "TargetID": 131188, + "Directional": false + }] + }, { + "ID": 2241, + "SourceStructureID": 97358, + "TargetStructureID": 5292, + "Label": "97358-5292 via Gap Junction from 131183 -> 131182", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131183, + "TargetID": 131182, + "Directional": false + }] + }, { + "ID": 2242, + "SourceStructureID": 113541, + "TargetStructureID": 5292, + "Label": "113541-5292 via Gap Junction from 113544 -> 60809", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 113544, + "TargetID": 60809, + "Directional": false + }] + }, { + "ID": 2243, + "SourceStructureID": 5295, + "TargetStructureID": 5519, + "Label": "5295-5519 via Gap Junction from 59182 -> 59157", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59182, + "TargetID": 59157, + "Directional": false + }] + }, { + "ID": 2244, + "SourceStructureID": 59145, + "TargetStructureID": 5295, + "Label": "59145-5295 via Touch from 59178 -> 59177", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 59178, + "TargetID": 59177, + "Directional": false + }] + }, { + "ID": 2245, + "SourceStructureID": 59163, + "TargetStructureID": 5295, + "Label": "59163-5295 via Gap Junction from 59165 -> 59181", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59165, + "TargetID": 59181, + "Directional": false + }] + }, { + "ID": 2246, + "SourceStructureID": 59793, + "TargetStructureID": 5295, + "Label": "59793-5295 via Gap Junction from 59794 -> 59792", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59794, + "TargetID": 59792, + "Directional": false + }] + }, { + "ID": 2247, + "SourceStructureID": 5297, + "TargetStructureID": 5297, + "Label": "5297-5297 via Adherens from 98136 -> 98137", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98136, + "TargetID": 98137, + "Directional": false + }] + }, { + "ID": 2248, + "SourceStructureID": 5297, + "TargetStructureID": 5297, + "Label": "5297-5297 via Gap Junction from 116424 -> 116423, 147335 -> 147334", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116424, + "TargetID": 116423, + "Directional": false + }, { + "SourceID": 147335, + "TargetID": 147334, + "Directional": false + }] + }, { + "ID": 2249, + "SourceStructureID": 5297, + "TargetStructureID": 5297, + "Label": "5297-5297 via Touch from 147351 -> 147352", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 147351, + "TargetID": 147352, + "Directional": false + }] + }, { + "ID": 2250, + "SourceStructureID": 5618, + "TargetStructureID": 5297, + "Label": "5618-5297 via Unknown from 147356 -> 147355", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147356, + "TargetID": 147355, + "Directional": false + }] + }, { + "ID": 2251, + "SourceStructureID": 5297, + "TargetStructureID": 6050, + "Label": "5297-6050 via Gap Junction from 98392 -> 98389, 121109 -> 121110", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98392, + "TargetID": 98389, + "Directional": false + }, { + "SourceID": 121109, + "TargetID": 121110, + "Directional": false + }] + }, { + "ID": 2252, + "SourceStructureID": 5297, + "TargetStructureID": 6117, + "Label": "5297-6117 via Gap Junction from 121056 -> 121055", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121056, + "TargetID": 121055, + "Directional": false + }] + }, { + "ID": 2253, + "SourceStructureID": 5297, + "TargetStructureID": 9347, + "Label": "5297-9347 via Gap Junction from 116499 -> 120996", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116499, + "TargetID": 120996, + "Directional": false + }] + }, { + "ID": 2254, + "SourceStructureID": 16026, + "TargetStructureID": 5297, + "Label": "16026-5297 via Touch from 134515 -> 134516, 134523 -> 134524", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 134515, + "TargetID": 134516, + "Directional": false + }, { + "SourceID": 134523, + "TargetID": 134524, + "Directional": false + }] + }, { + "ID": 2255, + "SourceStructureID": 5297, + "TargetStructureID": 61450, + "Label": "5297-61450 via Unknown from 134290 -> 134289", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134290, + "TargetID": 134289, + "Directional": false + }] + }, { + "ID": 2256, + "SourceStructureID": 66111, + "TargetStructureID": 5297, + "Label": "66111-5297 via Unknown from 116494 -> 116493", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116494, + "TargetID": 116493, + "Directional": false + }] + }, { + "ID": 2257, + "SourceStructureID": 67818, + "TargetStructureID": 5297, + "Label": "67818-5297 via Unknown from 147358 -> 147357", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147358, + "TargetID": 147357, + "Directional": false + }] + }, { + "ID": 2258, + "SourceStructureID": 92193, + "TargetStructureID": 5297, + "Label": "92193-5297 via Adherens from 147377 -> 147376", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147377, + "TargetID": 147376, + "Directional": false + }] + }, { + "ID": 2259, + "SourceStructureID": 92935, + "TargetStructureID": 5297, + "Label": "92935-5297 via Unknown from 147373 -> 147372", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147373, + "TargetID": 147372, + "Directional": false + }] + }, { + "ID": 2260, + "SourceStructureID": 93248, + "TargetStructureID": 5297, + "Label": "93248-5297 via Unknown from 147359 -> 147360, 147381 -> 147380", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147359, + "TargetID": 147360, + "Directional": false + }, { + "SourceID": 147381, + "TargetID": 147380, + "Directional": false + }] + }, { + "ID": 2261, + "SourceStructureID": 93301, + "TargetStructureID": 5297, + "Label": "93301-5297 via Unknown from 93304 -> 93300, 147382 -> 147383", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93304, + "TargetID": 93300, + "Directional": false + }, { + "SourceID": 147382, + "TargetID": 147383, + "Directional": false + }] + }, { + "ID": 2262, + "SourceStructureID": 93312, + "TargetStructureID": 5297, + "Label": "93312-5297 via Unknown from 93314 -> 93310", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93314, + "TargetID": 93310, + "Directional": false + }] + }, { + "ID": 2263, + "SourceStructureID": 93321, + "TargetStructureID": 5297, + "Label": "93321-5297 via Unknown from 93322 -> 93320", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93322, + "TargetID": 93320, + "Directional": false + }] + }, { + "ID": 2264, + "SourceStructureID": 93329, + "TargetStructureID": 5297, + "Label": "93329-5297 via Adherens from 147374 -> 147375", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147374, + "TargetID": 147375, + "Directional": false + }] + }, { + "ID": 2265, + "SourceStructureID": 5297, + "TargetStructureID": 93329, + "Label": "5297-93329 via Gap Junction from 53663 -> 93332", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53663, + "TargetID": 93332, + "Directional": false + }] + }, { + "ID": 2266, + "SourceStructureID": 5297, + "TargetStructureID": 93333, + "Label": "5297-93333 via Unknown from 134292 -> 134291", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134292, + "TargetID": 134291, + "Directional": false + }] + }, { + "ID": 2267, + "SourceStructureID": 5297, + "TargetStructureID": 93355, + "Label": "5297-93355 via Unknown from 134298 -> 134299", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134298, + "TargetID": 134299, + "Directional": false + }] + }, { + "ID": 2268, + "SourceStructureID": 5297, + "TargetStructureID": 97358, + "Label": "5297-97358 via Unknown from 134275 -> 134276", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134275, + "TargetID": 134276, + "Directional": false + }] + }, { + "ID": 2269, + "SourceStructureID": 5297, + "TargetStructureID": 116504, + "Label": "5297-116504 via Unknown from 120275 -> 120276", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120275, + "TargetID": 120276, + "Directional": false + }] + }, { + "ID": 2270, + "SourceStructureID": 120987, + "TargetStructureID": 5297, + "Label": "120987-5297 via Unknown from 134301 -> 134300", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134301, + "TargetID": 134300, + "Directional": false + }] + }, { + "ID": 2271, + "SourceStructureID": 120992, + "TargetStructureID": 5297, + "Label": "120992-5297 via Unknown from 147338 -> 147339", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147338, + "TargetID": 147339, + "Directional": false + }] + }, { + "ID": 2272, + "SourceStructureID": 5297, + "TargetStructureID": 120997, + "Label": "5297-120997 via Adherens from 147341 -> 147342", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147341, + "TargetID": 147342, + "Directional": false + }] + }, { + "ID": 2273, + "SourceStructureID": 120997, + "TargetStructureID": 5297, + "Label": "120997-5297 via Gap Junction from 120998 -> 116515", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120998, + "TargetID": 116515, + "Directional": false + }] + }, { + "ID": 2274, + "SourceStructureID": 120999, + "TargetStructureID": 5297, + "Label": "120999-5297 via Unknown from 147346 -> 147345", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147346, + "TargetID": 147345, + "Directional": false + }] + }, { + "ID": 2275, + "SourceStructureID": 5297, + "TargetStructureID": 121001, + "Label": "5297-121001 via Unknown from 121002 -> 121003", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121002, + "TargetID": 121003, + "Directional": false + }] + }, { + "ID": 2276, + "SourceStructureID": 5297, + "TargetStructureID": 121006, + "Label": "5297-121006 via Adherens from 127725 -> 127724, 147366 -> 147365", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127725, + "TargetID": 127724, + "Directional": false + }, { + "SourceID": 147366, + "TargetID": 147365, + "Directional": false + }] + }, { + "ID": 2277, + "SourceStructureID": 121006, + "TargetStructureID": 5297, + "Label": "121006-5297 via Unknown from 127722 -> 127723", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127722, + "TargetID": 127723, + "Directional": false + }] + }, { + "ID": 2278, + "SourceStructureID": 121044, + "TargetStructureID": 5297, + "Label": "121044-5297 via Unknown from 147368 -> 147367", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147368, + "TargetID": 147367, + "Directional": false + }] + }, { + "ID": 2279, + "SourceStructureID": 5297, + "TargetStructureID": 121046, + "Label": "5297-121046 via Unknown from 147370 -> 147371", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147370, + "TargetID": 147371, + "Directional": false + }] + }, { + "ID": 2280, + "SourceStructureID": 121048, + "TargetStructureID": 5297, + "Label": "121048-5297 via Adherens from 147379 -> 147378", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147379, + "TargetID": 147378, + "Directional": false + }] + }, { + "ID": 2281, + "SourceStructureID": 5297, + "TargetStructureID": 121048, + "Label": "5297-121048 via Gap Junction from 92307 -> 121049", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92307, + "TargetID": 121049, + "Directional": false + }] + }, { + "ID": 2282, + "SourceStructureID": 5297, + "TargetStructureID": 121051, + "Label": "5297-121051 via Adherens from 147384 -> 147385", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147384, + "TargetID": 147385, + "Directional": false + }] + }, { + "ID": 2283, + "SourceStructureID": 5297, + "TargetStructureID": 121051, + "Label": "5297-121051 via Gap Junction from 98141 -> 121052", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98141, + "TargetID": 121052, + "Directional": false + }] + }, { + "ID": 2284, + "SourceStructureID": 5297, + "TargetStructureID": 121064, + "Label": "5297-121064 via Unknown from 116497 -> 121065", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116497, + "TargetID": 121065, + "Directional": false + }] + }, { + "ID": 2285, + "SourceStructureID": 5297, + "TargetStructureID": 121066, + "Label": "5297-121066 via Unknown from 116501 -> 121067", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116501, + "TargetID": 121067, + "Directional": false + }] + }, { + "ID": 2286, + "SourceStructureID": 5297, + "TargetStructureID": 121070, + "Label": "5297-121070 via Adherens from 121071 -> 121072", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 121071, + "TargetID": 121072, + "Directional": false + }] + }, { + "ID": 2287, + "SourceStructureID": 121073, + "TargetStructureID": 5297, + "Label": "121073-5297 via Unknown from 121108 -> 98305", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121108, + "TargetID": 98305, + "Directional": false + }] + }, { + "ID": 2288, + "SourceStructureID": 121075, + "TargetStructureID": 5297, + "Label": "121075-5297 via Touch from 147354 -> 147353", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 147354, + "TargetID": 147353, + "Directional": false + }] + }, { + "ID": 2289, + "SourceStructureID": 5297, + "TargetStructureID": 121082, + "Label": "5297-121082 via Unknown from 116520 -> 121083", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116520, + "TargetID": 121083, + "Directional": false + }] + }, { + "ID": 2290, + "SourceStructureID": 5297, + "TargetStructureID": 121097, + "Label": "5297-121097 via Unknown from 147363 -> 147364", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147363, + "TargetID": 147364, + "Directional": false + }] + }, { + "ID": 2291, + "SourceStructureID": 5297, + "TargetStructureID": 121101, + "Label": "5297-121101 via Unknown from 98261 -> 121102", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98261, + "TargetID": 121102, + "Directional": false + }] + }, { + "ID": 2292, + "SourceStructureID": 121103, + "TargetStructureID": 5297, + "Label": "121103-5297 via Unknown from 121105 -> 98277", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121105, + "TargetID": 98277, + "Directional": false + }] + }, { + "ID": 2293, + "SourceStructureID": 121106, + "TargetStructureID": 5297, + "Label": "121106-5297 via Unknown from 121107 -> 98293", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121107, + "TargetID": 98293, + "Directional": false + }] + }, { + "ID": 2294, + "SourceStructureID": 5297, + "TargetStructureID": 121111, + "Label": "5297-121111 via Unknown from 103215 -> 134302", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103215, + "TargetID": 134302, + "Directional": false + }] + }, { + "ID": 2295, + "SourceStructureID": 134553, + "TargetStructureID": 5297, + "Label": "134553-5297 via Adherens from 116432 -> 116431", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116432, + "TargetID": 116431, + "Directional": false + }] + }, { + "ID": 2296, + "SourceStructureID": 5297, + "TargetStructureID": 136736, + "Label": "5297-136736 via Unknown from 147336 -> 147337", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147336, + "TargetID": 147337, + "Directional": false + }] + }, { + "ID": 2297, + "SourceStructureID": 7147, + "TargetStructureID": 5303, + "Label": "7147-5303 via Unknown from 100702 -> 100703", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100702, + "TargetID": 100703, + "Directional": false + }] + }, { + "ID": 2298, + "SourceStructureID": 5325, + "TargetStructureID": 68761, + "Label": "5325-68761 via Gap Junction from 68765 -> 68764", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 68765, + "TargetID": 68764, + "Directional": false + }] + }, { + "ID": 2299, + "SourceStructureID": 63020, + "TargetStructureID": 5338, + "Label": "63020-5338 via Gap Junction from 63021 -> 63005", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63021, + "TargetID": 63005, + "Directional": false + }] + }, { + "ID": 2300, + "SourceStructureID": 5345, + "TargetStructureID": 5345, + "Label": "5345-5345 via Gap Junction from 88854 -> 8484", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 88854, + "TargetID": 8484, + "Directional": false + }] + }, { + "ID": 2301, + "SourceStructureID": 5345, + "TargetStructureID": 5513, + "Label": "5345-5513 via Gap Junction from 30674 -> 30673", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 30674, + "TargetID": 30673, + "Directional": false + }] + }, { + "ID": 2302, + "SourceStructureID": 5514, + "TargetStructureID": 5345, + "Label": "5514-5345 via Gap Junction from 38764 -> 14579, 94552 -> 38766, 94553 -> 94554, 120847 -> 120846, 121561 -> 33783, 121649 -> 14580", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38764, + "TargetID": 14579, + "Directional": false + }, { + "SourceID": 94552, + "TargetID": 38766, + "Directional": false + }, { + "SourceID": 94553, + "TargetID": 94554, + "Directional": false + }, { + "SourceID": 120847, + "TargetID": 120846, + "Directional": false + }, { + "SourceID": 121561, + "TargetID": 33783, + "Directional": false + }, { + "SourceID": 121649, + "TargetID": 14580, + "Directional": false + }] + }, { + "ID": 2303, + "SourceStructureID": 5345, + "TargetStructureID": 5515, + "Label": "5345-5515 via Gap Junction from 119166 -> 119165, 119183 -> 119182, 119221 -> 119219, 119348 -> 119347, 119351 -> 119350, 119434 -> 119433", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119166, + "TargetID": 119165, + "Directional": false + }, { + "SourceID": 119183, + "TargetID": 119182, + "Directional": false + }, { + "SourceID": 119221, + "TargetID": 119219, + "Directional": false + }, { + "SourceID": 119348, + "TargetID": 119347, + "Directional": false + }, { + "SourceID": 119351, + "TargetID": 119350, + "Directional": false + }, { + "SourceID": 119434, + "TargetID": 119433, + "Directional": false + }] + }, { + "ID": 2304, + "SourceStructureID": 5345, + "TargetStructureID": 5517, + "Label": "5345-5517 via Gap Junction from 96100 -> 96099", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96100, + "TargetID": 96099, + "Directional": false + }] + }, { + "ID": 2305, + "SourceStructureID": 5623, + "TargetStructureID": 5345, + "Label": "5623-5345 via Gap Junction from 32819 -> 8488, 88883 -> 40387, 94782 -> 123706, 123700 -> 123701", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 32819, + "TargetID": 8488, + "Directional": false + }, { + "SourceID": 88883, + "TargetID": 40387, + "Directional": false + }, { + "SourceID": 94782, + "TargetID": 123706, + "Directional": false + }, { + "SourceID": 123700, + "TargetID": 123701, + "Directional": false + }] + }, { + "ID": 2306, + "SourceStructureID": 6589, + "TargetStructureID": 5345, + "Label": "6589-5345 via Gap Junction from 14574 -> 14591, 120044 -> 120043", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14574, + "TargetID": 14591, + "Directional": false + }, { + "SourceID": 120044, + "TargetID": 120043, + "Directional": false + }] + }, { + "ID": 2307, + "SourceStructureID": 5345, + "TargetStructureID": 6997, + "Label": "5345-6997 via Gap Junction from 22158 -> 22157, 57002 -> 57003", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 22158, + "TargetID": 22157, + "Directional": false + }, { + "SourceID": 57002, + "TargetID": 57003, + "Directional": false + }] + }, { + "ID": 2308, + "SourceStructureID": 6997, + "TargetStructureID": 5345, + "Label": "6997-5345 via Unknown from 83072 -> 79980", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83072, + "TargetID": 79980, + "Directional": false + }] + }, { + "ID": 2309, + "SourceStructureID": 8037, + "TargetStructureID": 5345, + "Label": "8037-5345 via Adherens from 88898 -> 88892", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88898, + "TargetID": 88892, + "Directional": false + }] + }, { + "ID": 2310, + "SourceStructureID": 8037, + "TargetStructureID": 5345, + "Label": "8037-5345 via Gap Junction from 15683 -> 15682, 19229 -> 7569, 88896 -> 88891, 130639 -> 130638", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 15683, + "TargetID": 15682, + "Directional": false + }, { + "SourceID": 19229, + "TargetID": 7569, + "Directional": false + }, { + "SourceID": 88896, + "TargetID": 88891, + "Directional": false + }, { + "SourceID": 130639, + "TargetID": 130638, + "Directional": false + }] + }, { + "ID": 2311, + "SourceStructureID": 9693, + "TargetStructureID": 5345, + "Label": "9693-5345 via Gap Junction from 119785 -> 119786, 132765 -> 132764, 135000 -> 134999", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119785, + "TargetID": 119786, + "Directional": false + }, { + "SourceID": 132765, + "TargetID": 132764, + "Directional": false + }, { + "SourceID": 135000, + "TargetID": 134999, + "Directional": false + }] + }, { + "ID": 2312, + "SourceStructureID": 28886, + "TargetStructureID": 5345, + "Label": "28886-5345 via Gap Junction from 51299 -> 52347", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51299, + "TargetID": 52347, + "Directional": false + }] + }, { + "ID": 2313, + "SourceStructureID": 46801, + "TargetStructureID": 5345, + "Label": "46801-5345 via Gap Junction from 118256 -> 118255", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118256, + "TargetID": 118255, + "Directional": false + }] + }, { + "ID": 2314, + "SourceStructureID": 88864, + "TargetStructureID": 5345, + "Label": "88864-5345 via Adherens from 88867 -> 88862, 88868 -> 88863", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88867, + "TargetID": 88862, + "Directional": false + }, { + "SourceID": 88868, + "TargetID": 88863, + "Directional": false + }] + }, { + "ID": 2315, + "SourceStructureID": 5345, + "TargetStructureID": 132773, + "Label": "5345-132773 via Gap Junction from 132783 -> 132782", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132783, + "TargetID": 132782, + "Directional": false + }] + }, { + "ID": 2316, + "SourceStructureID": 6117, + "TargetStructureID": 5377, + "Label": "6117-5377 via Unknown from 134139 -> 83233", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134139, + "TargetID": 83233, + "Directional": false + }] + }, { + "ID": 2317, + "SourceStructureID": 83234, + "TargetStructureID": 5377, + "Label": "83234-5377 via Unknown from 83235 -> 83233", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83235, + "TargetID": 83233, + "Directional": false + }] + }, { + "ID": 2318, + "SourceStructureID": 86997, + "TargetStructureID": 5377, + "Label": "86997-5377 via Adherens from 86999 -> 87000", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86999, + "TargetID": 87000, + "Directional": false + }] + }, { + "ID": 2319, + "SourceStructureID": 87008, + "TargetStructureID": 5377, + "Label": "87008-5377 via Adherens from 87009 -> 87007", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87009, + "TargetID": 87007, + "Directional": false + }] + }, { + "ID": 2320, + "SourceStructureID": 5377, + "TargetStructureID": 87020, + "Label": "5377-87020 via Adherens from 87022 -> 87023", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87022, + "TargetID": 87023, + "Directional": false + }] + }, { + "ID": 2321, + "SourceStructureID": 5916, + "TargetStructureID": 5390, + "Label": "5916-5390 via Adherens from 108762 -> 108763", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108762, + "TargetID": 108763, + "Directional": false + }] + }, { + "ID": 2322, + "SourceStructureID": 7951, + "TargetStructureID": 5394, + "Label": "7951-5394 via Adherens from 77093 -> 77092, 77095 -> 77094", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77093, + "TargetID": 77092, + "Directional": false + }, { + "SourceID": 77095, + "TargetID": 77094, + "Directional": false + }] + }, { + "ID": 2323, + "SourceStructureID": 7594, + "TargetStructureID": 5396, + "Label": "7594-5396 via Adherens from 89453 -> 89452", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89453, + "TargetID": 89452, + "Directional": false + }] + }, { + "ID": 2324, + "SourceStructureID": 5396, + "TargetStructureID": 89433, + "Label": "5396-89433 via Unknown from 89432 -> 89434", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89432, + "TargetID": 89434, + "Directional": false + }] + }, { + "ID": 2325, + "SourceStructureID": 5396, + "TargetStructureID": 89438, + "Label": "5396-89438 via Adherens from 89437 -> 89439", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89437, + "TargetID": 89439, + "Directional": false + }] + }, { + "ID": 2326, + "SourceStructureID": 89443, + "TargetStructureID": 5396, + "Label": "89443-5396 via Adherens from 89444 -> 89442", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89444, + "TargetID": 89442, + "Directional": false + }] + }, { + "ID": 2327, + "SourceStructureID": 89447, + "TargetStructureID": 5396, + "Label": "89447-5396 via Adherens from 89448 -> 89445", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89448, + "TargetID": 89445, + "Directional": false + }] + }, { + "ID": 2328, + "SourceStructureID": 89449, + "TargetStructureID": 5396, + "Label": "89449-5396 via Adherens from 89450 -> 89446", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89450, + "TargetID": 89446, + "Directional": false + }] + }, { + "ID": 2329, + "SourceStructureID": 89522, + "TargetStructureID": 5396, + "Label": "89522-5396 via Adherens from 89523 -> 89521", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89523, + "TargetID": 89521, + "Directional": false + }] + }, { + "ID": 2330, + "SourceStructureID": 89533, + "TargetStructureID": 5396, + "Label": "89533-5396 via Adherens from 89534 -> 89532", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89534, + "TargetID": 89532, + "Directional": false + }] + }, { + "ID": 2331, + "SourceStructureID": 5402, + "TargetStructureID": 14615, + "Label": "5402-14615 via Adherens from 76603 -> 76604", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76603, + "TargetID": 76604, + "Directional": false + }] + }, { + "ID": 2332, + "SourceStructureID": 5405, + "TargetStructureID": 5405, + "Label": "5405-5405 via Adherens from 120202 -> 120203", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 120202, + "TargetID": 120203, + "Directional": false + }] + }, { + "ID": 2333, + "SourceStructureID": 5405, + "TargetStructureID": 8575, + "Label": "5405-8575 via Adherens from 62802 -> 62801", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 62802, + "TargetID": 62801, + "Directional": false + }] + }, { + "ID": 2334, + "SourceStructureID": 82130, + "TargetStructureID": 5410, + "Label": "82130-5410 via Adherens from 82132 -> 82133", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82132, + "TargetID": 82133, + "Directional": false + }] + }, { + "ID": 2335, + "SourceStructureID": 82143, + "TargetStructureID": 5410, + "Label": "82143-5410 via Adherens from 82144 -> 82142", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82144, + "TargetID": 82142, + "Directional": false + }] + }, { + "ID": 2336, + "SourceStructureID": 5410, + "TargetStructureID": 82159, + "Label": "5410-82159 via Adherens from 82158 -> 82160", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82158, + "TargetID": 82160, + "Directional": false + }] + }, { + "ID": 2337, + "SourceStructureID": 5410, + "TargetStructureID": 82170, + "Label": "5410-82170 via Adherens from 82169 -> 82171", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82169, + "TargetID": 82171, + "Directional": false + }] + }, { + "ID": 2338, + "SourceStructureID": 5410, + "TargetStructureID": 82181, + "Label": "5410-82181 via Adherens from 82180 -> 82183", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82180, + "TargetID": 82183, + "Directional": false + }] + }, { + "ID": 2339, + "SourceStructureID": 5530, + "TargetStructureID": 5423, + "Label": "5530-5423 via Unknown from 80494 -> 126454", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80494, + "TargetID": 126454, + "Directional": false + }] + }, { + "ID": 2340, + "SourceStructureID": 5530, + "TargetStructureID": 5435, + "Label": "5530-5435 via Unknown from 81646 -> 82993", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81646, + "TargetID": 82993, + "Directional": false + }] + }, { + "ID": 2341, + "SourceStructureID": 29340, + "TargetStructureID": 5435, + "Label": "29340-5435 via Gap Junction from 41220 -> 41219", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 41220, + "TargetID": 41219, + "Directional": false + }] + }, { + "ID": 2342, + "SourceStructureID": 5528, + "TargetStructureID": 5436, + "Label": "5528-5436 via Adherens from 94284 -> 94285", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94284, + "TargetID": 94285, + "Directional": false + }] + }, { + "ID": 2343, + "SourceStructureID": 7568, + "TargetStructureID": 5439, + "Label": "7568-5439 via Adherens from 85513 -> 85514", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85513, + "TargetID": 85514, + "Directional": false + }] + }, { + "ID": 2344, + "SourceStructureID": 70535, + "TargetStructureID": 5439, + "Label": "70535-5439 via Adherens from 70539 -> 70538", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70539, + "TargetID": 70538, + "Directional": false + }] + }, { + "ID": 2345, + "SourceStructureID": 70547, + "TargetStructureID": 5439, + "Label": "70547-5439 via Adherens from 70548 -> 70549", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70548, + "TargetID": 70549, + "Directional": false + }] + }, { + "ID": 2346, + "SourceStructureID": 70547, + "TargetStructureID": 5439, + "Label": "70547-5439 via Gap Junction from 70550 -> 70551", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 70550, + "TargetID": 70551, + "Directional": false + }] + }, { + "ID": 2347, + "SourceStructureID": 70552, + "TargetStructureID": 5439, + "Label": "70552-5439 via Adherens from 70555 -> 70556", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70555, + "TargetID": 70556, + "Directional": false + }] + }, { + "ID": 2348, + "SourceStructureID": 70586, + "TargetStructureID": 5439, + "Label": "70586-5439 via Gap Junction from 70587 -> 66577", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 70587, + "TargetID": 66577, + "Directional": false + }] + }, { + "ID": 2349, + "SourceStructureID": 5439, + "TargetStructureID": 70628, + "Label": "5439-70628 via Adherens from 70630 -> 70631", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70630, + "TargetID": 70631, + "Directional": false + }] + }, { + "ID": 2350, + "SourceStructureID": 5439, + "TargetStructureID": 70663, + "Label": "5439-70663 via Adherens from 70665 -> 70664", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70665, + "TargetID": 70664, + "Directional": false + }] + }, { + "ID": 2351, + "SourceStructureID": 70671, + "TargetStructureID": 5439, + "Label": "70671-5439 via Adherens from 70672 -> 70670", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70672, + "TargetID": 70670, + "Directional": false + }] + }, { + "ID": 2352, + "SourceStructureID": 70801, + "TargetStructureID": 5439, + "Label": "70801-5439 via Adherens from 70802 -> 70803, 70806 -> 70805", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70802, + "TargetID": 70803, + "Directional": false + }, { + "SourceID": 70806, + "TargetID": 70805, + "Directional": false + }] + }, { + "ID": 2353, + "SourceStructureID": 5439, + "TargetStructureID": 70822, + "Label": "5439-70822 via Adherens from 70824 -> 70823", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70824, + "TargetID": 70823, + "Directional": false + }] + }, { + "ID": 2354, + "SourceStructureID": 70837, + "TargetStructureID": 5439, + "Label": "70837-5439 via Adherens from 70838 -> 70839", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70838, + "TargetID": 70839, + "Directional": false + }] + }, { + "ID": 2355, + "SourceStructureID": 70840, + "TargetStructureID": 5439, + "Label": "70840-5439 via Adherens from 70844 -> 70843", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70844, + "TargetID": 70843, + "Directional": false + }] + }, { + "ID": 2356, + "SourceStructureID": 70845, + "TargetStructureID": 5439, + "Label": "70845-5439 via Adherens from 70848 -> 70849", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70848, + "TargetID": 70849, + "Directional": false + }] + }, { + "ID": 2357, + "SourceStructureID": 85601, + "TargetStructureID": 5439, + "Label": "85601-5439 via Adherens from 85610 -> 85611", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85610, + "TargetID": 85611, + "Directional": false + }] + }, { + "ID": 2358, + "SourceStructureID": 85735, + "TargetStructureID": 5439, + "Label": "85735-5439 via Adherens from 85737 -> 85731", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85737, + "TargetID": 85731, + "Directional": false + }] + }, { + "ID": 2359, + "SourceStructureID": 5439, + "TargetStructureID": 96652, + "Label": "5439-96652 via Adherens from 96656 -> 96655", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96656, + "TargetID": 96655, + "Directional": false + }] + }, { + "ID": 2360, + "SourceStructureID": 5468, + "TargetStructureID": 5442, + "Label": "5468-5442 via Adherens from 55140 -> 55139", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 55140, + "TargetID": 55139, + "Directional": false + }] + }, { + "ID": 2361, + "SourceStructureID": 5442, + "TargetStructureID": 5598, + "Label": "5442-5598 via Adherens from 126961 -> 115190", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126961, + "TargetID": 115190, + "Directional": false + }] + }, { + "ID": 2362, + "SourceStructureID": 6050, + "TargetStructureID": 5442, + "Label": "6050-5442 via Unknown from 127109 -> 127110, 127458 -> 127459, 127524 -> 127523", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127109, + "TargetID": 127110, + "Directional": false + }, { + "SourceID": 127458, + "TargetID": 127459, + "Directional": false + }, { + "SourceID": 127524, + "TargetID": 127523, + "Directional": false + }] + }, { + "ID": 2363, + "SourceStructureID": 5442, + "TargetStructureID": 15796, + "Label": "5442-15796 via Adherens from 56692 -> 56693", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 56692, + "TargetID": 56693, + "Directional": false + }] + }, { + "ID": 2364, + "SourceStructureID": 5442, + "TargetStructureID": 23870, + "Label": "5442-23870 via Adherens from 55136 -> 55137, 55920 -> 55921, 56672 -> 56671, 56673 -> 56674", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 55136, + "TargetID": 55137, + "Directional": false + }, { + "SourceID": 55920, + "TargetID": 55921, + "Directional": false + }, { + "SourceID": 56672, + "TargetID": 56671, + "Directional": false + }, { + "SourceID": 56673, + "TargetID": 56674, + "Directional": false + }] + }, { + "ID": 2365, + "SourceStructureID": 5442, + "TargetStructureID": 23870, + "Label": "5442-23870 via Gap Junction from 55150 -> 55149, 56676 -> 56675, 66273 -> 66270, 66274 -> 66275", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55150, + "TargetID": 55149, + "Directional": false + }, { + "SourceID": 56676, + "TargetID": 56675, + "Directional": false + }, { + "SourceID": 66273, + "TargetID": 66270, + "Directional": false + }, { + "SourceID": 66274, + "TargetID": 66275, + "Directional": false + }] + }, { + "ID": 2366, + "SourceStructureID": 5442, + "TargetStructureID": 23870, + "Label": "5442-23870 via Unknown from 74435 -> 74437, 74445 -> 74443", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74435, + "TargetID": 74437, + "Directional": false + }, { + "SourceID": 74445, + "TargetID": 74443, + "Directional": false + }] + }, { + "ID": 2367, + "SourceStructureID": 35811, + "TargetStructureID": 5442, + "Label": "35811-5442 via Adherens from 55120 -> 55119, 73964 -> 73963, 73990 -> 73989", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 55120, + "TargetID": 55119, + "Directional": false + }, { + "SourceID": 73964, + "TargetID": 73963, + "Directional": false + }, { + "SourceID": 73990, + "TargetID": 73989, + "Directional": false + }] + }, { + "ID": 2368, + "SourceStructureID": 5442, + "TargetStructureID": 35894, + "Label": "5442-35894 via Adherens from 56684 -> 56685, 56686 -> 56687, 56689 -> 56690", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 56684, + "TargetID": 56685, + "Directional": false + }, { + "SourceID": 56686, + "TargetID": 56687, + "Directional": false + }, { + "SourceID": 56689, + "TargetID": 56690, + "Directional": false + }] + }, { + "ID": 2369, + "SourceStructureID": 62396, + "TargetStructureID": 5442, + "Label": "62396-5442 via Adherens from 62399 -> 56660, 62400 -> 62401", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 62399, + "TargetID": 56660, + "Directional": false + }, { + "SourceID": 62400, + "TargetID": 62401, + "Directional": false + }] + }, { + "ID": 2370, + "SourceStructureID": 5442, + "TargetStructureID": 73580, + "Label": "5442-73580 via Adherens from 73585 -> 73586, 73587 -> 73588", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73585, + "TargetID": 73586, + "Directional": false + }, { + "SourceID": 73587, + "TargetID": 73588, + "Directional": false + }] + }, { + "ID": 2371, + "SourceStructureID": 74047, + "TargetStructureID": 5442, + "Label": "74047-5442 via Unknown from 74048 -> 74038, 74355 -> 74354", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74048, + "TargetID": 74038, + "Directional": false + }, { + "SourceID": 74355, + "TargetID": 74354, + "Directional": false + }] + }, { + "ID": 2372, + "SourceStructureID": 5451, + "TargetStructureID": 7122, + "Label": "5451-7122 via Gap Junction from 45105 -> 45106", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45105, + "TargetID": 45106, + "Directional": false + }] + }, { + "ID": 2373, + "SourceStructureID": 5451, + "TargetStructureID": 28950, + "Label": "5451-28950 via Adherens from 55922 -> 55923", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 55922, + "TargetID": 55923, + "Directional": false + }] + }, { + "ID": 2374, + "SourceStructureID": 28950, + "TargetStructureID": 5451, + "Label": "28950-5451 via Touch from 55938 -> 131110", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 55938, + "TargetID": 131110, + "Directional": false + }] + }, { + "ID": 2375, + "SourceStructureID": 5531, + "TargetStructureID": 5453, + "Label": "5531-5453 via Unknown from 105367 -> 105368", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105367, + "TargetID": 105368, + "Directional": false + }] + }, { + "ID": 2376, + "SourceStructureID": 5453, + "TargetStructureID": 5543, + "Label": "5453-5543 via Adherens from 18658 -> 18673", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 18658, + "TargetID": 18673, + "Directional": false + }] + }, { + "ID": 2377, + "SourceStructureID": 5531, + "TargetStructureID": 5454, + "Label": "5531-5454 via Unknown from 106655 -> 106654", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106655, + "TargetID": 106654, + "Directional": false + }] + }, { + "ID": 2378, + "SourceStructureID": 7345, + "TargetStructureID": 5456, + "Label": "7345-5456 via Gap Junction from 122790 -> 122780", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122790, + "TargetID": 122780, + "Directional": false + }] + }, { + "ID": 2379, + "SourceStructureID": 7564, + "TargetStructureID": 5457, + "Label": "7564-5457 via Adherens from 29159 -> 103141", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 29159, + "TargetID": 103141, + "Directional": false + }] + }, { + "ID": 2380, + "SourceStructureID": 5464, + "TargetStructureID": 5464, + "Label": "5464-5464 via Gap Junction from 116615 -> 116616", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116615, + "TargetID": 116616, + "Directional": false + }] + }, { + "ID": 2381, + "SourceStructureID": 5464, + "TargetStructureID": 5592, + "Label": "5464-5592 via Gap Junction from 121815 -> 121814, 121817 -> 121816", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121815, + "TargetID": 121814, + "Directional": false + }, { + "SourceID": 121817, + "TargetID": 121816, + "Directional": false + }] + }, { + "ID": 2382, + "SourceStructureID": 6047, + "TargetStructureID": 5464, + "Label": "6047-5464 via Gap Junction from 113268 -> 129331, 115796 -> 113247, 129339 -> 117225", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 113268, + "TargetID": 129331, + "Directional": false + }, { + "SourceID": 115796, + "TargetID": 113247, + "Directional": false + }, { + "SourceID": 129339, + "TargetID": 117225, + "Directional": false + }] + }, { + "ID": 2383, + "SourceStructureID": 5464, + "TargetStructureID": 6141, + "Label": "5464-6141 via Gap Junction from 118159 -> 61415", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118159, + "TargetID": 61415, + "Directional": false + }] + }, { + "ID": 2384, + "SourceStructureID": 5464, + "TargetStructureID": 6203, + "Label": "5464-6203 via Gap Junction from 47827 -> 11969, 57254 -> 57242, 57270 -> 57264, 116622 -> 116621, 116623 -> 116624, 116627 -> 116628, 118158 -> 118157, 121821 -> 121820, 131400 -> 131399", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47827, + "TargetID": 11969, + "Directional": false + }, { + "SourceID": 57254, + "TargetID": 57242, + "Directional": false + }, { + "SourceID": 57270, + "TargetID": 57264, + "Directional": false + }, { + "SourceID": 116622, + "TargetID": 116621, + "Directional": false + }, { + "SourceID": 116623, + "TargetID": 116624, + "Directional": false + }, { + "SourceID": 116627, + "TargetID": 116628, + "Directional": false + }, { + "SourceID": 118158, + "TargetID": 118157, + "Directional": false + }, { + "SourceID": 121821, + "TargetID": 121820, + "Directional": false + }, { + "SourceID": 131400, + "TargetID": 131399, + "Directional": false + }] + }, { + "ID": 2385, + "SourceStructureID": 6204, + "TargetStructureID": 5464, + "Label": "6204-5464 via Adherens from 132033 -> 132034", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132033, + "TargetID": 132034, + "Directional": false + }] + }, { + "ID": 2386, + "SourceStructureID": 5464, + "TargetStructureID": 6204, + "Label": "5464-6204 via Gap Junction from 52638 -> 52635, 116625 -> 116626, 118083 -> 118082, 118112 -> 118111, 118160 -> 118156, 121818 -> 121819", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52638, + "TargetID": 52635, + "Directional": false + }, { + "SourceID": 116625, + "TargetID": 116626, + "Directional": false + }, { + "SourceID": 118083, + "TargetID": 118082, + "Directional": false + }, { + "SourceID": 118112, + "TargetID": 118111, + "Directional": false + }, { + "SourceID": 118160, + "TargetID": 118156, + "Directional": false + }, { + "SourceID": 121818, + "TargetID": 121819, + "Directional": false + }] + }, { + "ID": 2387, + "SourceStructureID": 5464, + "TargetStructureID": 6958, + "Label": "5464-6958 via Gap Junction from 116632 -> 116631", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116632, + "TargetID": 116631, + "Directional": false + }] + }, { + "ID": 2388, + "SourceStructureID": 5464, + "TargetStructureID": 7147, + "Label": "5464-7147 via Gap Junction from 129335 -> 117226", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 129335, + "TargetID": 117226, + "Directional": false + }] + }, { + "ID": 2389, + "SourceStructureID": 57353, + "TargetStructureID": 5464, + "Label": "57353-5464 via Touch from 124062 -> 124063", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 124062, + "TargetID": 124063, + "Directional": false + }] + }, { + "ID": 2390, + "SourceStructureID": 5464, + "TargetStructureID": 57353, + "Label": "5464-57353 via Unknown from 124300 -> 124299", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124300, + "TargetID": 124299, + "Directional": false + }] + }, { + "ID": 2391, + "SourceStructureID": 5468, + "TargetStructureID": 5468, + "Label": "5468-5468 via Gap Junction from 57456 -> 57455", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57456, + "TargetID": 57455, + "Directional": false + }] + }, { + "ID": 2392, + "SourceStructureID": 5473, + "TargetStructureID": 5468, + "Label": "5473-5468 via Gap Junction from 23883 -> 23882, 57147 -> 48271", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 23883, + "TargetID": 23882, + "Directional": false + }, { + "SourceID": 57147, + "TargetID": 48271, + "Directional": false + }] + }, { + "ID": 2393, + "SourceStructureID": 5584, + "TargetStructureID": 5468, + "Label": "5584-5468 via Touch from 93534 -> 93532", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 93534, + "TargetID": 93532, + "Directional": false + }] + }, { + "ID": 2394, + "SourceStructureID": 5592, + "TargetStructureID": 5468, + "Label": "5592-5468 via Gap Junction from 36843 -> 36844, 118106 -> 118105, 121791 -> 121790", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 36843, + "TargetID": 36844, + "Directional": false + }, { + "SourceID": 118106, + "TargetID": 118105, + "Directional": false + }, { + "SourceID": 121791, + "TargetID": 121790, + "Directional": false + }] + }, { + "ID": 2395, + "SourceStructureID": 5598, + "TargetStructureID": 5468, + "Label": "5598-5468 via Gap Junction from 52983 -> 48220", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52983, + "TargetID": 48220, + "Directional": false + }] + }, { + "ID": 2396, + "SourceStructureID": 5601, + "TargetStructureID": 5468, + "Label": "5601-5468 via Adherens from 135658 -> 135659, 135676 -> 135675", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135658, + "TargetID": 135659, + "Directional": false + }, { + "SourceID": 135676, + "TargetID": 135675, + "Directional": false + }] + }, { + "ID": 2397, + "SourceStructureID": 5468, + "TargetStructureID": 5601, + "Label": "5468-5601 via Gap Junction from 57440 -> 57442, 57466 -> 57465, 123284 -> 91465", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57440, + "TargetID": 57442, + "Directional": false + }, { + "SourceID": 57466, + "TargetID": 57465, + "Directional": false + }, { + "SourceID": 123284, + "TargetID": 91465, + "Directional": false + }] + }, { + "ID": 2398, + "SourceStructureID": 5468, + "TargetStructureID": 5601, + "Label": "5468-5601 via Touch from 91467 -> 91466", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 91467, + "TargetID": 91466, + "Directional": false + }] + }, { + "ID": 2399, + "SourceStructureID": 6203, + "TargetStructureID": 5468, + "Label": "6203-5468 via Gap Junction from 118109 -> 118108", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118109, + "TargetID": 118108, + "Directional": false + }] + }, { + "ID": 2400, + "SourceStructureID": 6204, + "TargetStructureID": 5468, + "Label": "6204-5468 via Gap Junction from 118168 -> 23878, 118169 -> 118110", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118168, + "TargetID": 23878, + "Directional": false + }, { + "SourceID": 118169, + "TargetID": 118110, + "Directional": false + }] + }, { + "ID": 2401, + "SourceStructureID": 7114, + "TargetStructureID": 5468, + "Label": "7114-5468 via Gap Junction from 48215 -> 48214, 51774 -> 48129, 93531 -> 93530, 118114 -> 118115, 121812 -> 121811", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48215, + "TargetID": 48214, + "Directional": false + }, { + "SourceID": 51774, + "TargetID": 48129, + "Directional": false + }, { + "SourceID": 93531, + "TargetID": 93530, + "Directional": false + }, { + "SourceID": 118114, + "TargetID": 118115, + "Directional": false + }, { + "SourceID": 121812, + "TargetID": 121811, + "Directional": false + }] + }, { + "ID": 2402, + "SourceStructureID": 15976, + "TargetStructureID": 5468, + "Label": "15976-5468 via Gap Junction from 54714 -> 54713", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54714, + "TargetID": 54713, + "Directional": false + }] + }, { + "ID": 2403, + "SourceStructureID": 5468, + "TargetStructureID": 33057, + "Label": "5468-33057 via Adherens from 48225 -> 48226", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 48225, + "TargetID": 48226, + "Directional": false + }] + }, { + "ID": 2404, + "SourceStructureID": 57148, + "TargetStructureID": 5468, + "Label": "57148-5468 via Gap Junction from 57149 -> 48289", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57149, + "TargetID": 48289, + "Directional": false + }] + }, { + "ID": 2405, + "SourceStructureID": 5468, + "TargetStructureID": 74047, + "Label": "5468-74047 via Adherens from 74394 -> 74393", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74394, + "TargetID": 74393, + "Directional": false + }] + }, { + "ID": 2406, + "SourceStructureID": 89638, + "TargetStructureID": 5468, + "Label": "89638-5468 via Adherens from 89640 -> 89641", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89640, + "TargetID": 89641, + "Directional": false + }] + }, { + "ID": 2407, + "SourceStructureID": 5468, + "TargetStructureID": 93574, + "Label": "5468-93574 via Adherens from 48238 -> 93577", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 48238, + "TargetID": 93577, + "Directional": false + }] + }, { + "ID": 2408, + "SourceStructureID": 5468, + "TargetStructureID": 93574, + "Label": "5468-93574 via Gap Junction from 48266 -> 93575", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48266, + "TargetID": 93575, + "Directional": false + }] + }, { + "ID": 2409, + "SourceStructureID": 5473, + "TargetStructureID": 5592, + "Label": "5473-5592 via Gap Junction from 23895 -> 23891", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 23895, + "TargetID": 23891, + "Directional": false + }] + }, { + "ID": 2410, + "SourceStructureID": 5473, + "TargetStructureID": 5638, + "Label": "5473-5638 via Gap Junction from 116863 -> 56467, 117099 -> 117098", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116863, + "TargetID": 56467, + "Directional": false + }, { + "SourceID": 117099, + "TargetID": 117098, + "Directional": false + }] + }, { + "ID": 2411, + "SourceStructureID": 5473, + "TargetStructureID": 6958, + "Label": "5473-6958 via Gap Junction from 27460 -> 27461, 116540 -> 116539", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 27460, + "TargetID": 27461, + "Directional": false + }, { + "SourceID": 116540, + "TargetID": 116539, + "Directional": false + }] + }, { + "ID": 2412, + "SourceStructureID": 15976, + "TargetStructureID": 5473, + "Label": "15976-5473 via Gap Junction from 23888 -> 23887, 57152 -> 23886, 93195 -> 57146, 93309 -> 57412, 121834 -> 121833", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 23888, + "TargetID": 23887, + "Directional": false + }, { + "SourceID": 57152, + "TargetID": 23886, + "Directional": false + }, { + "SourceID": 93195, + "TargetID": 57146, + "Directional": false + }, { + "SourceID": 93309, + "TargetID": 57412, + "Directional": false + }, { + "SourceID": 121834, + "TargetID": 121833, + "Directional": false + }] + }, { + "ID": 2413, + "SourceStructureID": 5473, + "TargetStructureID": 15977, + "Label": "5473-15977 via Gap Junction from 117175 -> 117174", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117175, + "TargetID": 117174, + "Directional": false + }] + }, { + "ID": 2414, + "SourceStructureID": 5473, + "TargetStructureID": 57143, + "Label": "5473-57143 via Gap Junction from 57145 -> 57144", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57145, + "TargetID": 57144, + "Directional": false + }] + }, { + "ID": 2415, + "SourceStructureID": 117127, + "TargetStructureID": 5473, + "Label": "117127-5473 via Gap Junction from 117140 -> 117141", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117140, + "TargetID": 117141, + "Directional": false + }] + }, { + "ID": 2416, + "SourceStructureID": 66663, + "TargetStructureID": 5481, + "Label": "66663-5481 via Adherens from 66664 -> 66662", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66664, + "TargetID": 66662, + "Directional": false + }] + }, { + "ID": 2417, + "SourceStructureID": 71882, + "TargetStructureID": 5481, + "Label": "71882-5481 via Adherens from 71887 -> 71886, 90318 -> 90200", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71887, + "TargetID": 71886, + "Directional": false + }, { + "SourceID": 90318, + "TargetID": 90200, + "Directional": false + }] + }, { + "ID": 2418, + "SourceStructureID": 71882, + "TargetStructureID": 5481, + "Label": "71882-5481 via Gap Junction from 71885 -> 71884", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71885, + "TargetID": 71884, + "Directional": false + }] + }, { + "ID": 2419, + "SourceStructureID": 82071, + "TargetStructureID": 5481, + "Label": "82071-5481 via Unknown from 82499 -> 82500", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82499, + "TargetID": 82500, + "Directional": false + }] + }, { + "ID": 2420, + "SourceStructureID": 5485, + "TargetStructureID": 8575, + "Label": "5485-8575 via Adherens from 62293 -> 62292", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 62293, + "TargetID": 62292, + "Directional": false + }] + }, { + "ID": 2421, + "SourceStructureID": 34336, + "TargetStructureID": 5485, + "Label": "34336-5485 via Adherens from 34368 -> 34367", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 34368, + "TargetID": 34367, + "Directional": false + }] + }, { + "ID": 2422, + "SourceStructureID": 40604, + "TargetStructureID": 5485, + "Label": "40604-5485 via Adherens from 43820 -> 43821", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 43820, + "TargetID": 43821, + "Directional": false + }] + }, { + "ID": 2423, + "SourceStructureID": 5487, + "TargetStructureID": 21299, + "Label": "5487-21299 via Adherens from 91667 -> 48900, 91674 -> 91675, 91677 -> 91676", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91667, + "TargetID": 48900, + "Directional": false + }, { + "SourceID": 91674, + "TargetID": 91675, + "Directional": false + }, { + "SourceID": 91677, + "TargetID": 91676, + "Directional": false + }] + }, { + "ID": 2424, + "SourceStructureID": 5487, + "TargetStructureID": 21299, + "Label": "5487-21299 via Gap Junction from 91620 -> 91617, 91671 -> 48924, 126385 -> 48829", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91620, + "TargetID": 91617, + "Directional": false + }, { + "SourceID": 91671, + "TargetID": 48924, + "Directional": false + }, { + "SourceID": 126385, + "TargetID": 48829, + "Directional": false + }] + }, { + "ID": 2425, + "SourceStructureID": 68497, + "TargetStructureID": 5489, + "Label": "68497-5489 via Adherens from 81597 -> 81596", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81597, + "TargetID": 81596, + "Directional": false + }] + }, { + "ID": 2426, + "SourceStructureID": 5531, + "TargetStructureID": 5491, + "Label": "5531-5491 via Unknown from 113839 -> 113838", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113839, + "TargetID": 113838, + "Directional": false + }] + }, { + "ID": 2427, + "SourceStructureID": 5499, + "TargetStructureID": 5496, + "Label": "5499-5496 via BC Conventional Synapse from 96686 -> 96687", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 96686, + "TargetID": 96687, + "Directional": false + }] + }, { + "ID": 2428, + "SourceStructureID": 5497, + "TargetStructureID": 62500, + "Label": "5497-62500 via Adherens from 62503 -> 62502", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 62503, + "TargetID": 62502, + "Directional": false + }] + }, { + "ID": 2429, + "SourceStructureID": 5497, + "TargetStructureID": 85044, + "Label": "5497-85044 via Adherens from 85046 -> 85045", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85046, + "TargetID": 85045, + "Directional": false + }] + }, { + "ID": 2430, + "SourceStructureID": 5499, + "TargetStructureID": 5499, + "Label": "5499-5499 via Adherens from 136221 -> 136220", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136221, + "TargetID": 136220, + "Directional": false + }] + }, { + "ID": 2431, + "SourceStructureID": 5499, + "TargetStructureID": 5499, + "Label": "5499-5499 via Gap Junction from 96743 -> 98072, 97868 -> 97867, 106633 -> 106632", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96743, + "TargetID": 98072, + "Directional": false + }, { + "SourceID": 97868, + "TargetID": 97867, + "Directional": false + }, { + "SourceID": 106633, + "TargetID": 106632, + "Directional": false + }] + }, { + "ID": 2432, + "SourceStructureID": 5499, + "TargetStructureID": 5501, + "Label": "5499-5501 via Adherens from 136151 -> 136150", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136151, + "TargetID": 136150, + "Directional": false + }] + }, { + "ID": 2433, + "SourceStructureID": 5499, + "TargetStructureID": 5501, + "Label": "5499-5501 via Gap Junction from 105503 -> 105504", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 105503, + "TargetID": 105504, + "Directional": false + }] + }, { + "ID": 2434, + "SourceStructureID": 5499, + "TargetStructureID": 5503, + "Label": "5499-5503 via Adherens from 105606 -> 105605, 136193 -> 136192, 136209 -> 136208", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 105606, + "TargetID": 105605, + "Directional": false + }, { + "SourceID": 136193, + "TargetID": 136192, + "Directional": false + }, { + "SourceID": 136209, + "TargetID": 136208, + "Directional": false + }] + }, { + "ID": 2435, + "SourceStructureID": 5503, + "TargetStructureID": 5499, + "Label": "5503-5499 via Gap Junction from 52805 -> 49674, 60620 -> 60619, 60628 -> 60625, 105489 -> 105490", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52805, + "TargetID": 49674, + "Directional": false + }, { + "SourceID": 60620, + "TargetID": 60619, + "Directional": false + }, { + "SourceID": 60628, + "TargetID": 60625, + "Directional": false + }, { + "SourceID": 105489, + "TargetID": 105490, + "Directional": false + }] + }, { + "ID": 2436, + "SourceStructureID": 5520, + "TargetStructureID": 5499, + "Label": "5520-5499 via Adherens from 136146 -> 136145, 136148 -> 136149, 136153 -> 136152", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136146, + "TargetID": 136145, + "Directional": false + }, { + "SourceID": 136148, + "TargetID": 136149, + "Directional": false + }, { + "SourceID": 136153, + "TargetID": 136152, + "Directional": false + }] + }, { + "ID": 2437, + "SourceStructureID": 5520, + "TargetStructureID": 5499, + "Label": "5520-5499 via Gap Junction from 40147 -> 40146, 61019 -> 61018, 97894 -> 115689, 97904 -> 97905, 98013 -> 96749, 105455 -> 105456, 105484 -> 105485, 105487 -> 105486, 105603 -> 105601, 105829 -> 105828", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 40147, + "TargetID": 40146, + "Directional": false + }, { + "SourceID": 61019, + "TargetID": 61018, + "Directional": false + }, { + "SourceID": 97894, + "TargetID": 115689, + "Directional": false + }, { + "SourceID": 97904, + "TargetID": 97905, + "Directional": false + }, { + "SourceID": 98013, + "TargetID": 96749, + "Directional": false + }, { + "SourceID": 105455, + "TargetID": 105456, + "Directional": false + }, { + "SourceID": 105484, + "TargetID": 105485, + "Directional": false + }, { + "SourceID": 105487, + "TargetID": 105486, + "Directional": false + }, { + "SourceID": 105603, + "TargetID": 105601, + "Directional": false + }, { + "SourceID": 105829, + "TargetID": 105828, + "Directional": false + }] + }, { + "ID": 2438, + "SourceStructureID": 5499, + "TargetStructureID": 5561, + "Label": "5499-5561 via Adherens from 136190 -> 136191", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136190, + "TargetID": 136191, + "Directional": false + }] + }, { + "ID": 2439, + "SourceStructureID": 5499, + "TargetStructureID": 5561, + "Label": "5499-5561 via Gap Junction from 49668 -> 49641, 96742 -> 96741, 97524 -> 97523, 106536 -> 106535, 119258 -> 97177", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49668, + "TargetID": 49641, + "Directional": false + }, { + "SourceID": 96742, + "TargetID": 96741, + "Directional": false + }, { + "SourceID": 97524, + "TargetID": 97523, + "Directional": false + }, { + "SourceID": 106536, + "TargetID": 106535, + "Directional": false + }, { + "SourceID": 119258, + "TargetID": 97177, + "Directional": false + }] + }, { + "ID": 2440, + "SourceStructureID": 5565, + "TargetStructureID": 5499, + "Label": "5565-5499 via Gap Junction from 50815 -> 50816, 50843 -> 50844, 50981 -> 107009, 106799 -> 106798, 106936 -> 106937, 106954 -> 106955, 106957 -> 106956, 106971 -> 106972, 106974 -> 106973, 107008 -> 107007", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50815, + "TargetID": 50816, + "Directional": false + }, { + "SourceID": 50843, + "TargetID": 50844, + "Directional": false + }, { + "SourceID": 50981, + "TargetID": 107009, + "Directional": false + }, { + "SourceID": 106799, + "TargetID": 106798, + "Directional": false + }, { + "SourceID": 106936, + "TargetID": 106937, + "Directional": false + }, { + "SourceID": 106954, + "TargetID": 106955, + "Directional": false + }, { + "SourceID": 106957, + "TargetID": 106956, + "Directional": false + }, { + "SourceID": 106971, + "TargetID": 106972, + "Directional": false + }, { + "SourceID": 106974, + "TargetID": 106973, + "Directional": false + }, { + "SourceID": 107008, + "TargetID": 107007, + "Directional": false + }] + }, { + "ID": 2441, + "SourceStructureID": 5499, + "TargetStructureID": 5565, + "Label": "5499-5565 via Touch from 98102 -> 98103", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 98102, + "TargetID": 98103, + "Directional": false + }] + }, { + "ID": 2442, + "SourceStructureID": 5499, + "TargetStructureID": 5568, + "Label": "5499-5568 via Gap Junction from 121312 -> 121311", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121312, + "TargetID": 121311, + "Directional": false + }] + }, { + "ID": 2443, + "SourceStructureID": 5729, + "TargetStructureID": 5499, + "Label": "5729-5499 via Adherens from 136205 -> 136206", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136205, + "TargetID": 136206, + "Directional": false + }] + }, { + "ID": 2444, + "SourceStructureID": 5499, + "TargetStructureID": 5729, + "Label": "5499-5729 via Gap Junction from 60621 -> 60623", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60621, + "TargetID": 60623, + "Directional": false + }] + }, { + "ID": 2445, + "SourceStructureID": 7024, + "TargetStructureID": 5499, + "Label": "7024-5499 via Adherens from 113489 -> 113490, 113506 -> 113507, 135692 -> 135693, 136188 -> 136189, 136211 -> 136210, 136217 -> 136216", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 113489, + "TargetID": 113490, + "Directional": false + }, { + "SourceID": 113506, + "TargetID": 113507, + "Directional": false + }, { + "SourceID": 135692, + "TargetID": 135693, + "Directional": false + }, { + "SourceID": 136188, + "TargetID": 136189, + "Directional": false + }, { + "SourceID": 136211, + "TargetID": 136210, + "Directional": false + }, { + "SourceID": 136217, + "TargetID": 136216, + "Directional": false + }] + }, { + "ID": 2446, + "SourceStructureID": 5499, + "TargetStructureID": 7024, + "Label": "5499-7024 via Gap Junction from 40161 -> 40160, 47337 -> 47336, 54972 -> 40163, 93823 -> 93822, 93825 -> 93824, 93865 -> 93864, 93866 -> 93867, 93997 -> 93996, 93998 -> 97869, 106609 -> 106544, 106610 -> 49667, 106755 -> 106754, 106829 -> 106828, 106959 -> 106958, 106966 -> 106965, 113717 -> 113718", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 40161, + "TargetID": 40160, + "Directional": false + }, { + "SourceID": 47337, + "TargetID": 47336, + "Directional": false + }, { + "SourceID": 54972, + "TargetID": 40163, + "Directional": false + }, { + "SourceID": 93823, + "TargetID": 93822, + "Directional": false + }, { + "SourceID": 93825, + "TargetID": 93824, + "Directional": false + }, { + "SourceID": 93865, + "TargetID": 93864, + "Directional": false + }, { + "SourceID": 93866, + "TargetID": 93867, + "Directional": false + }, { + "SourceID": 93997, + "TargetID": 93996, + "Directional": false + }, { + "SourceID": 93998, + "TargetID": 97869, + "Directional": false + }, { + "SourceID": 106609, + "TargetID": 106544, + "Directional": false + }, { + "SourceID": 106610, + "TargetID": 49667, + "Directional": false + }, { + "SourceID": 106755, + "TargetID": 106754, + "Directional": false + }, { + "SourceID": 106829, + "TargetID": 106828, + "Directional": false + }, { + "SourceID": 106959, + "TargetID": 106958, + "Directional": false + }, { + "SourceID": 106966, + "TargetID": 106965, + "Directional": false + }, { + "SourceID": 113717, + "TargetID": 113718, + "Directional": false + }] + }, { + "ID": 2447, + "SourceStructureID": 5499, + "TargetStructureID": 7040, + "Label": "5499-7040 via Gap Junction from 136161 -> 136159", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136161, + "TargetID": 136159, + "Directional": false + }] + }, { + "ID": 2448, + "SourceStructureID": 7050, + "TargetStructureID": 5499, + "Label": "7050-5499 via Adherens from 136183 -> 136184, 136187 -> 136186", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136183, + "TargetID": 136184, + "Directional": false + }, { + "SourceID": 136187, + "TargetID": 136186, + "Directional": false + }] + }, { + "ID": 2449, + "SourceStructureID": 5499, + "TargetStructureID": 7050, + "Label": "5499-7050 via Gap Junction from 40145 -> 24576, 40148 -> 40149, 97988 -> 97987", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 40145, + "TargetID": 24576, + "Directional": false + }, { + "SourceID": 40148, + "TargetID": 40149, + "Directional": false + }, { + "SourceID": 97988, + "TargetID": 97987, + "Directional": false + }] + }, { + "ID": 2450, + "SourceStructureID": 5499, + "TargetStructureID": 20136, + "Label": "5499-20136 via Adherens from 158466 -> 158465", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 158466, + "TargetID": 158465, + "Directional": false + }] + }, { + "ID": 2451, + "SourceStructureID": 5499, + "TargetStructureID": 20136, + "Label": "5499-20136 via Gap Junction from 96715 -> 96717", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96715, + "TargetID": 96717, + "Directional": false + }] + }, { + "ID": 2452, + "SourceStructureID": 48516, + "TargetStructureID": 5499, + "Label": "48516-5499 via Adherens from 136232 -> 136231", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136232, + "TargetID": 136231, + "Directional": false + }] + }, { + "ID": 2453, + "SourceStructureID": 48516, + "TargetStructureID": 5499, + "Label": "48516-5499 via Gap Junction from 93786 -> 93788, 136230 -> 97873, 136233 -> 136234", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93786, + "TargetID": 93788, + "Directional": false + }, { + "SourceID": 136230, + "TargetID": 97873, + "Directional": false + }, { + "SourceID": 136233, + "TargetID": 136234, + "Directional": false + }] + }, { + "ID": 2454, + "SourceStructureID": 5499, + "TargetStructureID": 87294, + "Label": "5499-87294 via Adherens from 87329 -> 87328", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87329, + "TargetID": 87328, + "Directional": false + }] + }, { + "ID": 2455, + "SourceStructureID": 5499, + "TargetStructureID": 96730, + "Label": "5499-96730 via Adherens from 96725 -> 96731", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96725, + "TargetID": 96731, + "Directional": false + }] + }, { + "ID": 2456, + "SourceStructureID": 5499, + "TargetStructureID": 105790, + "Label": "5499-105790 via Unknown from 105789 -> 105791", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105789, + "TargetID": 105791, + "Directional": false + }] + }, { + "ID": 2457, + "SourceStructureID": 5499, + "TargetStructureID": 110463, + "Label": "5499-110463 via Gap Junction from 106736 -> 136154", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 106736, + "TargetID": 136154, + "Directional": false + }] + }, { + "ID": 2458, + "SourceStructureID": 136169, + "TargetStructureID": 5499, + "Label": "136169-5499 via Adherens from 136170 -> 136168", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136170, + "TargetID": 136168, + "Directional": false + }] + }, { + "ID": 2459, + "SourceStructureID": 5499, + "TargetStructureID": 136169, + "Label": "5499-136169 via Gap Junction from 106953 -> 136171", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 106953, + "TargetID": 136171, + "Directional": false + }] + }, { + "ID": 2460, + "SourceStructureID": 136177, + "TargetStructureID": 5499, + "Label": "136177-5499 via Gap Junction from 136180 -> 106975", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136180, + "TargetID": 106975, + "Directional": false + }] + }, { + "ID": 2461, + "SourceStructureID": 5499, + "TargetStructureID": 136236, + "Label": "5499-136236 via Gap Junction from 97914 -> 136238", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 97914, + "TargetID": 136238, + "Directional": false + }] + }, { + "ID": 2462, + "SourceStructureID": 5500, + "TargetStructureID": 59362, + "Label": "5500-59362 via Adherens from 59367 -> 59366, 59405 -> 59404", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59367, + "TargetID": 59366, + "Directional": false + }, { + "SourceID": 59405, + "TargetID": 59404, + "Directional": false + }] + }, { + "ID": 2463, + "SourceStructureID": 5500, + "TargetStructureID": 59362, + "Label": "5500-59362 via Gap Junction from 59365 -> 59364, 59368 -> 59369, 59406 -> 59407", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59365, + "TargetID": 59364, + "Directional": false + }, { + "SourceID": 59368, + "TargetID": 59369, + "Directional": false + }, { + "SourceID": 59406, + "TargetID": 59407, + "Directional": false + }] + }, { + "ID": 2464, + "SourceStructureID": 5500, + "TargetStructureID": 59377, + "Label": "5500-59377 via Gap Junction from 59378 -> 59379", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59378, + "TargetID": 59379, + "Directional": false + }] + }, { + "ID": 2465, + "SourceStructureID": 59392, + "TargetStructureID": 5500, + "Label": "59392-5500 via Gap Junction from 59393 -> 59391, 59400 -> 59399", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59393, + "TargetID": 59391, + "Directional": false + }, { + "SourceID": 59400, + "TargetID": 59399, + "Directional": false + }] + }, { + "ID": 2466, + "SourceStructureID": 59419, + "TargetStructureID": 5500, + "Label": "59419-5500 via Gap Junction from 59420 -> 59421", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59420, + "TargetID": 59421, + "Directional": false + }] + }, { + "ID": 2467, + "SourceStructureID": 85032, + "TargetStructureID": 5500, + "Label": "85032-5500 via Adherens from 85033 -> 85031", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85033, + "TargetID": 85031, + "Directional": false + }] + }, { + "ID": 2468, + "SourceStructureID": 5503, + "TargetStructureID": 5501, + "Label": "5503-5501 via Adherens from 36562 -> 36563, 36565 -> 36566, 36611 -> 60689, 114052 -> 114053", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 36562, + "TargetID": 36563, + "Directional": false + }, { + "SourceID": 36565, + "TargetID": 36566, + "Directional": false + }, { + "SourceID": 36611, + "TargetID": 60689, + "Directional": false + }, { + "SourceID": 114052, + "TargetID": 114053, + "Directional": false + }] + }, { + "ID": 2469, + "SourceStructureID": 5501, + "TargetStructureID": 5503, + "Label": "5501-5503 via Gap Junction from 36580 -> 36581, 36587 -> 36588, 108134 -> 108133, 108220 -> 108218, 108224 -> 108222, 109970 -> 109969, 110001 -> 109999, 110003 -> 110002, 110176 -> 110177, 110201 -> 110161, 110273 -> 110272, 110275 -> 110274, 110448 -> 110447, 131429 -> 131425, 131438 -> 131439", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 36580, + "TargetID": 36581, + "Directional": false + }, { + "SourceID": 36587, + "TargetID": 36588, + "Directional": false + }, { + "SourceID": 108134, + "TargetID": 108133, + "Directional": false + }, { + "SourceID": 108220, + "TargetID": 108218, + "Directional": false + }, { + "SourceID": 108224, + "TargetID": 108222, + "Directional": false + }, { + "SourceID": 109970, + "TargetID": 109969, + "Directional": false + }, { + "SourceID": 110001, + "TargetID": 109999, + "Directional": false + }, { + "SourceID": 110003, + "TargetID": 110002, + "Directional": false + }, { + "SourceID": 110176, + "TargetID": 110177, + "Directional": false + }, { + "SourceID": 110201, + "TargetID": 110161, + "Directional": false + }, { + "SourceID": 110273, + "TargetID": 110272, + "Directional": false + }, { + "SourceID": 110275, + "TargetID": 110274, + "Directional": false + }, { + "SourceID": 110448, + "TargetID": 110447, + "Directional": false + }, { + "SourceID": 131429, + "TargetID": 131425, + "Directional": false + }, { + "SourceID": 131438, + "TargetID": 131439, + "Directional": false + }] + }, { + "ID": 2470, + "SourceStructureID": 5501, + "TargetStructureID": 5503, + "Label": "5501-5503 via Touch from 131441 -> 131442", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 131441, + "TargetID": 131442, + "Directional": false + }] + }, { + "ID": 2471, + "SourceStructureID": 5501, + "TargetStructureID": 5503, + "Label": "5501-5503 via Unknown from 108698 -> 108697, 109676 -> 109675, 109940 -> 109939, 110346 -> 110345, 110469 -> 110470", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108698, + "TargetID": 108697, + "Directional": false + }, { + "SourceID": 109676, + "TargetID": 109675, + "Directional": false + }, { + "SourceID": 109940, + "TargetID": 109939, + "Directional": false + }, { + "SourceID": 110346, + "TargetID": 110345, + "Directional": false + }, { + "SourceID": 110469, + "TargetID": 110470, + "Directional": false + }] + }, { + "ID": 2472, + "SourceStructureID": 5501, + "TargetStructureID": 5520, + "Label": "5501-5520 via Adherens from 60410 -> 60401", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60410, + "TargetID": 60401, + "Directional": false + }] + }, { + "ID": 2473, + "SourceStructureID": 5501, + "TargetStructureID": 5520, + "Label": "5501-5520 via Gap Junction from 60411 -> 60400, 60414 -> 60405, 60613 -> 60612, 60775 -> 60761, 110206 -> 105551, 119753 -> 119752", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60411, + "TargetID": 60400, + "Directional": false + }, { + "SourceID": 60414, + "TargetID": 60405, + "Directional": false + }, { + "SourceID": 60613, + "TargetID": 60612, + "Directional": false + }, { + "SourceID": 60775, + "TargetID": 60761, + "Directional": false + }, { + "SourceID": 110206, + "TargetID": 105551, + "Directional": false + }, { + "SourceID": 119753, + "TargetID": 119752, + "Directional": false + }] + }, { + "ID": 2474, + "SourceStructureID": 5520, + "TargetStructureID": 5501, + "Label": "5520-5501 via Unknown from 105823 -> 105822", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105823, + "TargetID": 105822, + "Directional": false + }] + }, { + "ID": 2475, + "SourceStructureID": 5561, + "TargetStructureID": 5501, + "Label": "5561-5501 via Adherens from 148183 -> 148182", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148183, + "TargetID": 148182, + "Directional": false + }] + }, { + "ID": 2476, + "SourceStructureID": 5501, + "TargetStructureID": 5561, + "Label": "5501-5561 via Gap Junction from 97187 -> 97145, 97328 -> 48870, 97591 -> 97590, 148153 -> 148152, 148154 -> 148155", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 97187, + "TargetID": 97145, + "Directional": false + }, { + "SourceID": 97328, + "TargetID": 48870, + "Directional": false + }, { + "SourceID": 97591, + "TargetID": 97590, + "Directional": false + }, { + "SourceID": 148153, + "TargetID": 148152, + "Directional": false + }, { + "SourceID": 148154, + "TargetID": 148155, + "Directional": false + }] + }, { + "ID": 2477, + "SourceStructureID": 5501, + "TargetStructureID": 5650, + "Label": "5501-5650 via Touch from 131434 -> 131433", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 131434, + "TargetID": 131433, + "Directional": false + }] + }, { + "ID": 2478, + "SourceStructureID": 5501, + "TargetStructureID": 6120, + "Label": "5501-6120 via Gap Junction from 111109 -> 61138", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 111109, + "TargetID": 61138, + "Directional": false + }] + }, { + "ID": 2479, + "SourceStructureID": 108032, + "TargetStructureID": 5501, + "Label": "108032-5501 via Adherens from 110226 -> 110225", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110226, + "TargetID": 110225, + "Directional": false + }] + }, { + "ID": 2480, + "SourceStructureID": 5503, + "TargetStructureID": 5503, + "Label": "5503-5503 via Gap Junction from 108695 -> 108694, 110005 -> 110004", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 108695, + "TargetID": 108694, + "Directional": false + }, { + "SourceID": 110005, + "TargetID": 110004, + "Directional": false + }] + }, { + "ID": 2481, + "SourceStructureID": 5503, + "TargetStructureID": 5503, + "Label": "5503-5503 via Unknown from 110060 -> 110059", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110060, + "TargetID": 110059, + "Directional": false + }] + }, { + "ID": 2482, + "SourceStructureID": 5520, + "TargetStructureID": 5503, + "Label": "5520-5503 via Gap Junction from 38987 -> 37959, 60726 -> 105482, 105544 -> 105543", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38987, + "TargetID": 37959, + "Directional": false + }, { + "SourceID": 60726, + "TargetID": 105482, + "Directional": false + }, { + "SourceID": 105544, + "TargetID": 105543, + "Directional": false + }] + }, { + "ID": 2483, + "SourceStructureID": 5650, + "TargetStructureID": 5503, + "Label": "5650-5503 via Gap Junction from 38549 -> 60675, 102690 -> 102689, 102942 -> 102943", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38549, + "TargetID": 60675, + "Directional": false + }, { + "SourceID": 102690, + "TargetID": 102689, + "Directional": false + }, { + "SourceID": 102942, + "TargetID": 102943, + "Directional": false + }] + }, { + "ID": 2484, + "SourceStructureID": 5503, + "TargetStructureID": 5729, + "Label": "5503-5729 via Gap Junction from 105747 -> 105746, 108424 -> 108423", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 105747, + "TargetID": 105746, + "Directional": false + }, { + "SourceID": 108424, + "TargetID": 108423, + "Directional": false + }] + }, { + "ID": 2485, + "SourceStructureID": 6118, + "TargetStructureID": 5503, + "Label": "6118-5503 via Gap Junction from 108560 -> 108555", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 108560, + "TargetID": 108555, + "Directional": false + }] + }, { + "ID": 2486, + "SourceStructureID": 6120, + "TargetStructureID": 5503, + "Label": "6120-5503 via Gap Junction from 61135 -> 61134, 131424 -> 61139", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 61135, + "TargetID": 61134, + "Directional": false + }, { + "SourceID": 131424, + "TargetID": 61139, + "Directional": false + }] + }, { + "ID": 2487, + "SourceStructureID": 5503, + "TargetStructureID": 7951, + "Label": "5503-7951 via BC Conventional Synapse from 108704 -> 108705", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 108704, + "TargetID": 108705, + "Directional": false + }] + }, { + "ID": 2488, + "SourceStructureID": 12897, + "TargetStructureID": 5503, + "Label": "12897-5503 via Gap Junction from 24665 -> 52803, 24668 -> 20088, 24721 -> 24667, 24835 -> 20211, 24853 -> 24736, 24859 -> 24858, 61316 -> 61318, 108137 -> 24854, 110045 -> 54100, 110047 -> 110046, 110166 -> 110167, 113660 -> 113659, 113662 -> 113661", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24665, + "TargetID": 52803, + "Directional": false + }, { + "SourceID": 24668, + "TargetID": 20088, + "Directional": false + }, { + "SourceID": 24721, + "TargetID": 24667, + "Directional": false + }, { + "SourceID": 24835, + "TargetID": 20211, + "Directional": false + }, { + "SourceID": 24853, + "TargetID": 24736, + "Directional": false + }, { + "SourceID": 24859, + "TargetID": 24858, + "Directional": false + }, { + "SourceID": 61316, + "TargetID": 61318, + "Directional": false + }, { + "SourceID": 108137, + "TargetID": 24854, + "Directional": false + }, { + "SourceID": 110045, + "TargetID": 54100, + "Directional": false + }, { + "SourceID": 110047, + "TargetID": 110046, + "Directional": false + }, { + "SourceID": 110166, + "TargetID": 110167, + "Directional": false + }, { + "SourceID": 113660, + "TargetID": 113659, + "Directional": false + }, { + "SourceID": 113662, + "TargetID": 113661, + "Directional": false + }] + }, { + "ID": 2489, + "SourceStructureID": 87294, + "TargetStructureID": 5503, + "Label": "87294-5503 via Adherens from 87296 -> 87297", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87296, + "TargetID": 87297, + "Directional": false + }] + }, { + "ID": 2490, + "SourceStructureID": 5503, + "TargetStructureID": 102795, + "Label": "5503-102795 via Unknown from 110018 -> 110017", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110018, + "TargetID": 110017, + "Directional": false + }] + }, { + "ID": 2491, + "SourceStructureID": 5503, + "TargetStructureID": 107414, + "Label": "5503-107414 via Adherens from 107428 -> 107427", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107428, + "TargetID": 107427, + "Directional": false + }] + }, { + "ID": 2492, + "SourceStructureID": 5503, + "TargetStructureID": 107508, + "Label": "5503-107508 via Adherens from 60705 -> 107511", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60705, + "TargetID": 107511, + "Directional": false + }] + }, { + "ID": 2493, + "SourceStructureID": 107508, + "TargetStructureID": 5503, + "Label": "107508-5503 via Unknown from 107524 -> 107523", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107524, + "TargetID": 107523, + "Directional": false + }] + }, { + "ID": 2494, + "SourceStructureID": 5503, + "TargetStructureID": 109693, + "Label": "5503-109693 via Unknown from 109695 -> 109694", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109695, + "TargetID": 109694, + "Directional": false + }] + }, { + "ID": 2495, + "SourceStructureID": 5503, + "TargetStructureID": 109793, + "Label": "5503-109793 via Unknown from 109792 -> 109796", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109792, + "TargetID": 109796, + "Directional": false + }] + }, { + "ID": 2496, + "SourceStructureID": 109858, + "TargetStructureID": 5503, + "Label": "109858-5503 via Adherens from 109861 -> 109856", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109861, + "TargetID": 109856, + "Directional": false + }] + }, { + "ID": 2497, + "SourceStructureID": 109952, + "TargetStructureID": 5503, + "Label": "109952-5503 via Gap Junction from 109954 -> 60683", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 109954, + "TargetID": 60683, + "Directional": false + }] + }, { + "ID": 2498, + "SourceStructureID": 109997, + "TargetStructureID": 5503, + "Label": "109997-5503 via Unknown from 109998 -> 109996", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109998, + "TargetID": 109996, + "Directional": false + }] + }, { + "ID": 2499, + "SourceStructureID": 110142, + "TargetStructureID": 5503, + "Label": "110142-5503 via Unknown from 113667 -> 113666", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113667, + "TargetID": 113666, + "Directional": false + }] + }, { + "ID": 2500, + "SourceStructureID": 5503, + "TargetStructureID": 110232, + "Label": "5503-110232 via Unknown from 110240 -> 110239", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110240, + "TargetID": 110239, + "Directional": false + }] + }, { + "ID": 2501, + "SourceStructureID": 110313, + "TargetStructureID": 5503, + "Label": "110313-5503 via Gap Junction from 115798 -> 60704", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115798, + "TargetID": 60704, + "Directional": false + }] + }, { + "ID": 2502, + "SourceStructureID": 5503, + "TargetStructureID": 110477, + "Label": "5503-110477 via Adherens from 110482 -> 110481", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110482, + "TargetID": 110481, + "Directional": false + }] + }, { + "ID": 2503, + "SourceStructureID": 5504, + "TargetStructureID": 87366, + "Label": "5504-87366 via Adherens from 87370 -> 87369", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87370, + "TargetID": 87369, + "Directional": false + }] + }, { + "ID": 2504, + "SourceStructureID": 5504, + "TargetStructureID": 93514, + "Label": "5504-93514 via Gap Junction from 93516 -> 93515", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93516, + "TargetID": 93515, + "Directional": false + }] + }, { + "ID": 2505, + "SourceStructureID": 5506, + "TargetStructureID": 28886, + "Label": "5506-28886 via Gap Junction from 52343 -> 51403", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52343, + "TargetID": 51403, + "Directional": false + }] + }, { + "ID": 2506, + "SourceStructureID": 5515, + "TargetStructureID": 5507, + "Label": "5515-5507 via Unknown from 119059 -> 119060", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 119059, + "TargetID": 119060, + "Directional": false + }] + }, { + "ID": 2507, + "SourceStructureID": 6997, + "TargetStructureID": 5507, + "Label": "6997-5507 via Adherens from 28386 -> 28385", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 28386, + "TargetID": 28385, + "Directional": false + }] + }, { + "ID": 2508, + "SourceStructureID": 5516, + "TargetStructureID": 5509, + "Label": "5516-5509 via Gap Junction from 120865 -> 120866", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120865, + "TargetID": 120866, + "Directional": false + }] + }, { + "ID": 2509, + "SourceStructureID": 5509, + "TargetStructureID": 5517, + "Label": "5509-5517 via Adherens from 37526 -> 37525", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 37526, + "TargetID": 37525, + "Directional": false + }] + }, { + "ID": 2510, + "SourceStructureID": 19203, + "TargetStructureID": 5509, + "Label": "19203-5509 via Adherens from 135814 -> 135813", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135814, + "TargetID": 135813, + "Directional": false + }] + }, { + "ID": 2511, + "SourceStructureID": 5509, + "TargetStructureID": 19203, + "Label": "5509-19203 via Unknown from 135812 -> 135811", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135812, + "TargetID": 135811, + "Directional": false + }] + }, { + "ID": 2512, + "SourceStructureID": 5922, + "TargetStructureID": 5511, + "Label": "5922-5511 via Adherens from 37159 -> 37160", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 37159, + "TargetID": 37160, + "Directional": false + }] + }, { + "ID": 2513, + "SourceStructureID": 5513, + "TargetStructureID": 5516, + "Label": "5513-5516 via Gap Junction from 118224 -> 120867, 118249 -> 50072, 120868 -> 118245", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118224, + "TargetID": 120867, + "Directional": false + }, { + "SourceID": 118249, + "TargetID": 50072, + "Directional": false + }, { + "SourceID": 120868, + "TargetID": 118245, + "Directional": false + }] + }, { + "ID": 2514, + "SourceStructureID": 5513, + "TargetStructureID": 5517, + "Label": "5513-5517 via Gap Junction from 118228 -> 118227", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118228, + "TargetID": 118227, + "Directional": false + }] + }, { + "ID": 2515, + "SourceStructureID": 5517, + "TargetStructureID": 5513, + "Label": "5517-5513 via Unknown from 96063 -> 96064", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96063, + "TargetID": 96064, + "Directional": false + }] + }, { + "ID": 2516, + "SourceStructureID": 7024, + "TargetStructureID": 5513, + "Label": "7024-5513 via Gap Junction from 40165 -> 40169", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 40165, + "TargetID": 40169, + "Directional": false + }] + }, { + "ID": 2517, + "SourceStructureID": 20136, + "TargetStructureID": 5513, + "Label": "20136-5513 via Gap Junction from 109412 -> 109413", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 109412, + "TargetID": 109413, + "Directional": false + }] + }, { + "ID": 2518, + "SourceStructureID": 5513, + "TargetStructureID": 24303, + "Label": "5513-24303 via Gap Junction from 38777 -> 38776", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38777, + "TargetID": 38776, + "Directional": false + }] + }, { + "ID": 2519, + "SourceStructureID": 5513, + "TargetStructureID": 26079, + "Label": "5513-26079 via Gap Junction from 102966 -> 102965, 120627 -> 120628, 121199 -> 121198", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 102966, + "TargetID": 102965, + "Directional": false + }, { + "SourceID": 120627, + "TargetID": 120628, + "Directional": false + }, { + "SourceID": 121199, + "TargetID": 121198, + "Directional": false + }] + }, { + "ID": 2520, + "SourceStructureID": 5513, + "TargetStructureID": 26079, + "Label": "5513-26079 via Unknown from 121232 -> 121231", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121232, + "TargetID": 121231, + "Directional": false + }] + }, { + "ID": 2521, + "SourceStructureID": 28886, + "TargetStructureID": 5513, + "Label": "28886-5513 via Gap Junction from 118235 -> 118234", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118235, + "TargetID": 118234, + "Directional": false + }] + }, { + "ID": 2522, + "SourceStructureID": 5513, + "TargetStructureID": 46801, + "Label": "5513-46801 via Gap Junction from 118252 -> 118254, 119747 -> 118247", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118252, + "TargetID": 118254, + "Directional": false + }, { + "SourceID": 119747, + "TargetID": 118247, + "Directional": false + }] + }, { + "ID": 2523, + "SourceStructureID": 96069, + "TargetStructureID": 5513, + "Label": "96069-5513 via Unknown from 96070 -> 96068", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96070, + "TargetID": 96068, + "Directional": false + }] + }, { + "ID": 2524, + "SourceStructureID": 5516, + "TargetStructureID": 5514, + "Label": "5516-5514 via Gap Junction from 50037 -> 119724, 50790 -> 50789, 89300 -> 89299, 119719 -> 119714, 119722 -> 119721, 119727 -> 119726, 119745 -> 119743, 120863 -> 120864", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50037, + "TargetID": 119724, + "Directional": false + }, { + "SourceID": 50790, + "TargetID": 50789, + "Directional": false + }, { + "SourceID": 89300, + "TargetID": 89299, + "Directional": false + }, { + "SourceID": 119719, + "TargetID": 119714, + "Directional": false + }, { + "SourceID": 119722, + "TargetID": 119721, + "Directional": false + }, { + "SourceID": 119727, + "TargetID": 119726, + "Directional": false + }, { + "SourceID": 119745, + "TargetID": 119743, + "Directional": false + }, { + "SourceID": 120863, + "TargetID": 120864, + "Directional": false + }] + }, { + "ID": 2525, + "SourceStructureID": 5514, + "TargetStructureID": 5568, + "Label": "5514-5568 via Gap Junction from 50421 -> 49941, 50671 -> 49995, 50866 -> 49992, 62137 -> 62138, 62379 -> 62378, 121547 -> 121548, 121570 -> 121569, 121578 -> 121579", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50421, + "TargetID": 49941, + "Directional": false + }, { + "SourceID": 50671, + "TargetID": 49995, + "Directional": false + }, { + "SourceID": 50866, + "TargetID": 49992, + "Directional": false + }, { + "SourceID": 62137, + "TargetID": 62138, + "Directional": false + }, { + "SourceID": 62379, + "TargetID": 62378, + "Directional": false + }, { + "SourceID": 121547, + "TargetID": 121548, + "Directional": false + }, { + "SourceID": 121570, + "TargetID": 121569, + "Directional": false + }, { + "SourceID": 121578, + "TargetID": 121579, + "Directional": false + }] + }, { + "ID": 2526, + "SourceStructureID": 19203, + "TargetStructureID": 5514, + "Label": "19203-5514 via Gap Junction from 119699 -> 119691, 119712 -> 119711, 121566 -> 121565, 121601 -> 121609, 121639 -> 121640", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119699, + "TargetID": 119691, + "Directional": false + }, { + "SourceID": 119712, + "TargetID": 119711, + "Directional": false + }, { + "SourceID": 121566, + "TargetID": 121565, + "Directional": false + }, { + "SourceID": 121601, + "TargetID": 121609, + "Directional": false + }, { + "SourceID": 121639, + "TargetID": 121640, + "Directional": false + }] + }, { + "ID": 2527, + "SourceStructureID": 5515, + "TargetStructureID": 5515, + "Label": "5515-5515 via Adherens from 119287 -> 119288, 119308 -> 119307", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 119287, + "TargetID": 119288, + "Directional": false + }, { + "SourceID": 119308, + "TargetID": 119307, + "Directional": false + }] + }, { + "ID": 2528, + "SourceStructureID": 5515, + "TargetStructureID": 5623, + "Label": "5515-5623 via Gap Junction from 119263 -> 119264", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119263, + "TargetID": 119264, + "Directional": false + }] + }, { + "ID": 2529, + "SourceStructureID": 5515, + "TargetStructureID": 5623, + "Label": "5515-5623 via Unknown from 119423 -> 119424", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 119423, + "TargetID": 119424, + "Directional": false + }] + }, { + "ID": 2530, + "SourceStructureID": 5515, + "TargetStructureID": 6589, + "Label": "5515-6589 via Adherens from 119273 -> 119272, 130627 -> 130626", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 119273, + "TargetID": 119272, + "Directional": false + }, { + "SourceID": 130627, + "TargetID": 130626, + "Directional": false + }] + }, { + "ID": 2531, + "SourceStructureID": 5515, + "TargetStructureID": 8037, + "Label": "5515-8037 via Adherens from 130642 -> 130643", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130642, + "TargetID": 130643, + "Directional": false + }] + }, { + "ID": 2532, + "SourceStructureID": 8037, + "TargetStructureID": 5515, + "Label": "8037-5515 via Gap Junction from 11370 -> 11366, 56515 -> 56506, 130640 -> 130641", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 11370, + "TargetID": 11366, + "Directional": false + }, { + "SourceID": 56515, + "TargetID": 56506, + "Directional": false + }, { + "SourceID": 130640, + "TargetID": 130641, + "Directional": false + }] + }, { + "ID": 2533, + "SourceStructureID": 8038, + "TargetStructureID": 5515, + "Label": "8038-5515 via Gap Junction from 119666 -> 119665", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119666, + "TargetID": 119665, + "Directional": false + }] + }, { + "ID": 2534, + "SourceStructureID": 136786, + "TargetStructureID": 5515, + "Label": "136786-5515 via Gap Junction from 136799 -> 136798", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136799, + "TargetID": 136798, + "Directional": false + }] + }, { + "ID": 2535, + "SourceStructureID": 136796, + "TargetStructureID": 5515, + "Label": "136796-5515 via Gap Junction from 136797 -> 56504", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136797, + "TargetID": 56504, + "Directional": false + }] + }, { + "ID": 2536, + "SourceStructureID": 5515, + "TargetStructureID": 136817, + "Label": "5515-136817 via Gap Junction from 56509 -> 136818", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56509, + "TargetID": 136818, + "Directional": false + }] + }, { + "ID": 2537, + "SourceStructureID": 136819, + "TargetStructureID": 5515, + "Label": "136819-5515 via Gap Junction from 136820 -> 56511", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136820, + "TargetID": 56511, + "Directional": false + }] + }, { + "ID": 2538, + "SourceStructureID": 5515, + "TargetStructureID": 136824, + "Label": "5515-136824 via Gap Junction from 119419 -> 136825", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119419, + "TargetID": 136825, + "Directional": false + }] + }, { + "ID": 2539, + "SourceStructureID": 136826, + "TargetStructureID": 5515, + "Label": "136826-5515 via Gap Junction from 136829 -> 119448", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136829, + "TargetID": 119448, + "Directional": false + }] + }, { + "ID": 2540, + "SourceStructureID": 5516, + "TargetStructureID": 5516, + "Label": "5516-5516 via Gap Junction from 148199 -> 148198", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 148199, + "TargetID": 148198, + "Directional": false + }] + }, { + "ID": 2541, + "SourceStructureID": 5517, + "TargetStructureID": 5516, + "Label": "5517-5516 via Gap Junction from 96114 -> 96115", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96114, + "TargetID": 96115, + "Directional": false + }] + }, { + "ID": 2542, + "SourceStructureID": 5516, + "TargetStructureID": 7024, + "Label": "5516-7024 via Adherens from 93838 -> 93837, 113763 -> 113762, 148208 -> 148207", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93838, + "TargetID": 93837, + "Directional": false + }, { + "SourceID": 113763, + "TargetID": 113762, + "Directional": false + }, { + "SourceID": 148208, + "TargetID": 148207, + "Directional": false + }] + }, { + "ID": 2543, + "SourceStructureID": 7024, + "TargetStructureID": 5516, + "Label": "7024-5516 via Gap Junction from 63394 -> 50097, 93828 -> 93829, 93830 -> 93831, 93840 -> 93839, 93843 -> 93842, 93877 -> 93876, 114156 -> 120862, 114195 -> 114196, 120845 -> 115085, 148201 -> 114105, 148220 -> 148219, 148230 -> 148229", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63394, + "TargetID": 50097, + "Directional": false + }, { + "SourceID": 93828, + "TargetID": 93829, + "Directional": false + }, { + "SourceID": 93830, + "TargetID": 93831, + "Directional": false + }, { + "SourceID": 93840, + "TargetID": 93839, + "Directional": false + }, { + "SourceID": 93843, + "TargetID": 93842, + "Directional": false + }, { + "SourceID": 93877, + "TargetID": 93876, + "Directional": false + }, { + "SourceID": 114156, + "TargetID": 120862, + "Directional": false + }, { + "SourceID": 114195, + "TargetID": 114196, + "Directional": false + }, { + "SourceID": 120845, + "TargetID": 115085, + "Directional": false + }, { + "SourceID": 148201, + "TargetID": 114105, + "Directional": false + }, { + "SourceID": 148220, + "TargetID": 148219, + "Directional": false + }, { + "SourceID": 148230, + "TargetID": 148229, + "Directional": false + }] + }, { + "ID": 2544, + "SourceStructureID": 20136, + "TargetStructureID": 5516, + "Label": "20136-5516 via Adherens from 135780 -> 135781", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135780, + "TargetID": 135781, + "Directional": false + }] + }, { + "ID": 2545, + "SourceStructureID": 20136, + "TargetStructureID": 5516, + "Label": "20136-5516 via Gap Junction from 110146 -> 110434", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 110146, + "TargetID": 110434, + "Directional": false + }] + }, { + "ID": 2546, + "SourceStructureID": 5516, + "TargetStructureID": 46388, + "Label": "5516-46388 via Gap Junction from 121441 -> 121440", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121441, + "TargetID": 121440, + "Directional": false + }] + }, { + "ID": 2547, + "SourceStructureID": 50449, + "TargetStructureID": 5516, + "Label": "50449-5516 via Gap Junction from 50638 -> 50639", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50638, + "TargetID": 50639, + "Directional": false + }] + }, { + "ID": 2548, + "SourceStructureID": 5516, + "TargetStructureID": 96217, + "Label": "5516-96217 via Unknown from 120487 -> 120488", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120487, + "TargetID": 120488, + "Directional": false + }] + }, { + "ID": 2549, + "SourceStructureID": 5517, + "TargetStructureID": 5561, + "Label": "5517-5561 via Gap Junction from 49476 -> 49477, 49478 -> 49483, 49499 -> 49498", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49476, + "TargetID": 49477, + "Directional": false + }, { + "SourceID": 49478, + "TargetID": 49483, + "Directional": false + }, { + "SourceID": 49499, + "TargetID": 49498, + "Directional": false + }] + }, { + "ID": 2550, + "SourceStructureID": 6912, + "TargetStructureID": 5517, + "Label": "6912-5517 via Unknown from 96067 -> 96066", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96067, + "TargetID": 96066, + "Directional": false + }] + }, { + "ID": 2551, + "SourceStructureID": 8037, + "TargetStructureID": 5517, + "Label": "8037-5517 via Gap Junction from 10870 -> 96119, 96120 -> 96118", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10870, + "TargetID": 96119, + "Directional": false + }, { + "SourceID": 96120, + "TargetID": 96118, + "Directional": false + }] + }, { + "ID": 2552, + "SourceStructureID": 5517, + "TargetStructureID": 18693, + "Label": "5517-18693 via Gap Junction from 49502 -> 49635", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49502, + "TargetID": 49635, + "Directional": false + }] + }, { + "ID": 2553, + "SourceStructureID": 19203, + "TargetStructureID": 5517, + "Label": "19203-5517 via Gap Junction from 38537 -> 38536, 49427 -> 49633, 120872 -> 120873, 121626 -> 121627, 135808 -> 135807", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38537, + "TargetID": 38536, + "Directional": false + }, { + "SourceID": 49427, + "TargetID": 49633, + "Directional": false + }, { + "SourceID": 120872, + "TargetID": 120873, + "Directional": false + }, { + "SourceID": 121626, + "TargetID": 121627, + "Directional": false + }, { + "SourceID": 135808, + "TargetID": 135807, + "Directional": false + }] + }, { + "ID": 2554, + "SourceStructureID": 19203, + "TargetStructureID": 5517, + "Label": "19203-5517 via Unknown from 96097 -> 96096", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96097, + "TargetID": 96096, + "Directional": false + }] + }, { + "ID": 2555, + "SourceStructureID": 20136, + "TargetStructureID": 5517, + "Label": "20136-5517 via Adherens from 133994 -> 133993, 135803 -> 135804", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133994, + "TargetID": 133993, + "Directional": false + }, { + "SourceID": 135803, + "TargetID": 135804, + "Directional": false + }] + }, { + "ID": 2556, + "SourceStructureID": 20136, + "TargetStructureID": 5517, + "Label": "20136-5517 via Gap Junction from 29147 -> 29148, 109361 -> 109362, 109720 -> 109721, 109786 -> 109787, 133991 -> 133992, 135786 -> 135784", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29147, + "TargetID": 29148, + "Directional": false + }, { + "SourceID": 109361, + "TargetID": 109362, + "Directional": false + }, { + "SourceID": 109720, + "TargetID": 109721, + "Directional": false + }, { + "SourceID": 109786, + "TargetID": 109787, + "Directional": false + }, { + "SourceID": 133991, + "TargetID": 133992, + "Directional": false + }, { + "SourceID": 135786, + "TargetID": 135784, + "Directional": false + }] + }, { + "ID": 2557, + "SourceStructureID": 5517, + "TargetStructureID": 26079, + "Label": "5517-26079 via Gap Junction from 49298 -> 49299, 96056 -> 96055", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49298, + "TargetID": 49299, + "Directional": false + }, { + "SourceID": 96056, + "TargetID": 96055, + "Directional": false + }] + }, { + "ID": 2558, + "SourceStructureID": 26079, + "TargetStructureID": 5517, + "Label": "26079-5517 via Unknown from 96062 -> 96061", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96062, + "TargetID": 96061, + "Directional": false + }] + }, { + "ID": 2559, + "SourceStructureID": 96072, + "TargetStructureID": 5517, + "Label": "96072-5517 via Adherens from 96073 -> 96071", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96073, + "TargetID": 96071, + "Directional": false + }] + }, { + "ID": 2560, + "SourceStructureID": 96083, + "TargetStructureID": 5517, + "Label": "96083-5517 via Gap Junction from 96084 -> 96082", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96084, + "TargetID": 96082, + "Directional": false + }] + }, { + "ID": 2561, + "SourceStructureID": 96093, + "TargetStructureID": 5517, + "Label": "96093-5517 via Unknown from 96094 -> 96092", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96094, + "TargetID": 96092, + "Directional": false + }] + }, { + "ID": 2562, + "SourceStructureID": 5517, + "TargetStructureID": 96102, + "Label": "5517-96102 via Gap Junction from 96108 -> 96107, 96173 -> 96172, 96191 -> 96190, 135783 -> 135782", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96108, + "TargetID": 96107, + "Directional": false + }, { + "SourceID": 96173, + "TargetID": 96172, + "Directional": false + }, { + "SourceID": 96191, + "TargetID": 96190, + "Directional": false + }, { + "SourceID": 135783, + "TargetID": 135782, + "Directional": false + }] + }, { + "ID": 2563, + "SourceStructureID": 5517, + "TargetStructureID": 96102, + "Label": "5517-96102 via Unknown from 96101 -> 96103, 135791 -> 135790", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96101, + "TargetID": 96103, + "Directional": false + }, { + "SourceID": 135791, + "TargetID": 135790, + "Directional": false + }] + }, { + "ID": 2564, + "SourceStructureID": 96122, + "TargetStructureID": 5517, + "Label": "96122-5517 via Gap Junction from 96123 -> 96121", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96123, + "TargetID": 96121, + "Directional": false + }] + }, { + "ID": 2565, + "SourceStructureID": 96347, + "TargetStructureID": 5517, + "Label": "96347-5517 via Gap Junction from 96348 -> 96346", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96348, + "TargetID": 96346, + "Directional": false + }] + }, { + "ID": 2566, + "SourceStructureID": 96351, + "TargetStructureID": 5517, + "Label": "96351-5517 via Unknown from 96352 -> 96350", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96352, + "TargetID": 96350, + "Directional": false + }] + }, { + "ID": 2567, + "SourceStructureID": 5519, + "TargetStructureID": 5566, + "Label": "5519-5566 via Adherens from 59197 -> 59198", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59197, + "TargetID": 59198, + "Directional": false + }] + }, { + "ID": 2568, + "SourceStructureID": 5566, + "TargetStructureID": 5519, + "Label": "5566-5519 via Gap Junction from 33670 -> 33671, 59203 -> 59202, 59319 -> 59320", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 33670, + "TargetID": 33671, + "Directional": false + }, { + "SourceID": 59203, + "TargetID": 59202, + "Directional": false + }, { + "SourceID": 59319, + "TargetID": 59320, + "Directional": false + }] + }, { + "ID": 2569, + "SourceStructureID": 59163, + "TargetStructureID": 5519, + "Label": "59163-5519 via Gap Junction from 59164 -> 59162", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59164, + "TargetID": 59162, + "Directional": false + }] + }, { + "ID": 2570, + "SourceStructureID": 5519, + "TargetStructureID": 59208, + "Label": "5519-59208 via Gap Junction from 59207 -> 59209", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59207, + "TargetID": 59209, + "Directional": false + }] + }, { + "ID": 2571, + "SourceStructureID": 5519, + "TargetStructureID": 59211, + "Label": "5519-59211 via Gap Junction from 59210 -> 59212", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59210, + "TargetID": 59212, + "Directional": false + }] + }, { + "ID": 2572, + "SourceStructureID": 5729, + "TargetStructureID": 5520, + "Label": "5729-5520 via Gap Junction from 60391 -> 60383, 93223 -> 93221", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60391, + "TargetID": 60383, + "Directional": false + }, { + "SourceID": 93223, + "TargetID": 93221, + "Directional": false + }] + }, { + "ID": 2573, + "SourceStructureID": 7040, + "TargetStructureID": 5520, + "Label": "7040-5520 via Gap Junction from 93708 -> 61048, 93711 -> 93714, 97909 -> 97910, 115360 -> 93232, 119748 -> 119749", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93708, + "TargetID": 61048, + "Directional": false + }, { + "SourceID": 93711, + "TargetID": 93714, + "Directional": false + }, { + "SourceID": 97909, + "TargetID": 97910, + "Directional": false + }, { + "SourceID": 115360, + "TargetID": 93232, + "Directional": false + }, { + "SourceID": 119748, + "TargetID": 119749, + "Directional": false + }] + }, { + "ID": 2574, + "SourceStructureID": 7040, + "TargetStructureID": 5520, + "Label": "7040-5520 via Unknown from 93729 -> 37951", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93729, + "TargetID": 37951, + "Directional": false + }] + }, { + "ID": 2575, + "SourceStructureID": 7050, + "TargetStructureID": 5520, + "Label": "7050-5520 via Gap Junction from 24879 -> 97908, 24892 -> 24891, 60373 -> 60374, 60757 -> 24582, 61008 -> 10067, 61028 -> 61027, 105806 -> 105804, 120822 -> 24876", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24879, + "TargetID": 97908, + "Directional": false + }, { + "SourceID": 24892, + "TargetID": 24891, + "Directional": false + }, { + "SourceID": 60373, + "TargetID": 60374, + "Directional": false + }, { + "SourceID": 60757, + "TargetID": 24582, + "Directional": false + }, { + "SourceID": 61008, + "TargetID": 10067, + "Directional": false + }, { + "SourceID": 61028, + "TargetID": 61027, + "Directional": false + }, { + "SourceID": 105806, + "TargetID": 105804, + "Directional": false + }, { + "SourceID": 120822, + "TargetID": 24876, + "Directional": false + }] + }, { + "ID": 2576, + "SourceStructureID": 5520, + "TargetStructureID": 12897, + "Label": "5520-12897 via Gap Junction from 60606 -> 24723, 119754 -> 60607", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60606, + "TargetID": 24723, + "Directional": false + }, { + "SourceID": 119754, + "TargetID": 60607, + "Directional": false + }] + }, { + "ID": 2577, + "SourceStructureID": 60370, + "TargetStructureID": 5520, + "Label": "60370-5520 via Gap Junction from 60371 -> 37937", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60371, + "TargetID": 37937, + "Directional": false + }] + }, { + "ID": 2578, + "SourceStructureID": 60397, + "TargetStructureID": 5520, + "Label": "60397-5520 via Gap Junction from 60398 -> 60396", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60398, + "TargetID": 60396, + "Directional": false + }] + }, { + "ID": 2579, + "SourceStructureID": 64939, + "TargetStructureID": 5520, + "Label": "64939-5520 via Gap Junction from 93226 -> 93225, 93713 -> 93712", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93226, + "TargetID": 93225, + "Directional": false + }, { + "SourceID": 93713, + "TargetID": 93712, + "Directional": false + }] + }, { + "ID": 2580, + "SourceStructureID": 5522, + "TargetStructureID": 5562, + "Label": "5522-5562 via Adherens from 63127 -> 63126, 80269 -> 80270, 84527 -> 84528", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63127, + "TargetID": 63126, + "Directional": false + }, { + "SourceID": 80269, + "TargetID": 80270, + "Directional": false + }, { + "SourceID": 84527, + "TargetID": 84528, + "Directional": false + }] + }, { + "ID": 2581, + "SourceStructureID": 5562, + "TargetStructureID": 5522, + "Label": "5562-5522 via Gap Junction from 40266 -> 63131, 63124 -> 63087, 63321 -> 43496, 134643 -> 134642", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 40266, + "TargetID": 63131, + "Directional": false + }, { + "SourceID": 63124, + "TargetID": 63087, + "Directional": false + }, { + "SourceID": 63321, + "TargetID": 43496, + "Directional": false + }, { + "SourceID": 134643, + "TargetID": 134642, + "Directional": false + }] + }, { + "ID": 2582, + "SourceStructureID": 7050, + "TargetStructureID": 5522, + "Label": "7050-5522 via Gap Junction from 63163 -> 63162", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63163, + "TargetID": 63162, + "Directional": false + }] + }, { + "ID": 2583, + "SourceStructureID": 8038, + "TargetStructureID": 5522, + "Label": "8038-5522 via Gap Junction from 113050 -> 64180", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 113050, + "TargetID": 64180, + "Directional": false + }] + }, { + "ID": 2584, + "SourceStructureID": 18282, + "TargetStructureID": 5522, + "Label": "18282-5522 via Adherens from 63111 -> 63110", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63111, + "TargetID": 63110, + "Directional": false + }] + }, { + "ID": 2585, + "SourceStructureID": 5522, + "TargetStructureID": 32804, + "Label": "5522-32804 via Adherens from 64132 -> 64133, 64225 -> 64226, 64260 -> 64261, 64262 -> 64265, 64264 -> 64263, 64306 -> 64305, 64307 -> 64308", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64132, + "TargetID": 64133, + "Directional": false + }, { + "SourceID": 64225, + "TargetID": 64226, + "Directional": false + }, { + "SourceID": 64260, + "TargetID": 64261, + "Directional": false + }, { + "SourceID": 64262, + "TargetID": 64265, + "Directional": false + }, { + "SourceID": 64264, + "TargetID": 64263, + "Directional": false + }, { + "SourceID": 64306, + "TargetID": 64305, + "Directional": false + }, { + "SourceID": 64307, + "TargetID": 64308, + "Directional": false + }] + }, { + "ID": 2586, + "SourceStructureID": 5528, + "TargetStructureID": 5528, + "Label": "5528-5528 via Gap Junction from 135710 -> 135709", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 135710, + "TargetID": 135709, + "Directional": false + }] + }, { + "ID": 2587, + "SourceStructureID": 5528, + "TargetStructureID": 5528, + "Label": "5528-5528 via Unknown from 94025 -> 94026", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94025, + "TargetID": 94026, + "Directional": false + }] + }, { + "ID": 2588, + "SourceStructureID": 5530, + "TargetStructureID": 5528, + "Label": "5530-5528 via Gap Junction from 75888 -> 82614, 81192 -> 81191", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 75888, + "TargetID": 82614, + "Directional": false + }, { + "SourceID": 81192, + "TargetID": 81191, + "Directional": false + }] + }, { + "ID": 2589, + "SourceStructureID": 5531, + "TargetStructureID": 5528, + "Label": "5531-5528 via Adherens from 96154 -> 96155, 97241 -> 97242, 147406 -> 147405, 147443 -> 147444", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96154, + "TargetID": 96155, + "Directional": false + }, { + "SourceID": 97241, + "TargetID": 97242, + "Directional": false + }, { + "SourceID": 147406, + "TargetID": 147405, + "Directional": false + }, { + "SourceID": 147443, + "TargetID": 147444, + "Directional": false + }] + }, { + "ID": 2590, + "SourceStructureID": 5531, + "TargetStructureID": 5528, + "Label": "5531-5528 via Gap Junction from 54650 -> 8257, 54683 -> 54682, 54720 -> 54721, 54768 -> 54769, 94845 -> 94846, 95110 -> 95109, 107143 -> 107144, 108006 -> 108005, 112471 -> 93732, 113954 -> 113953, 119238 -> 119237, 131262 -> 131261, 131274 -> 131273, 133923 -> 133922, 133924 -> 133925, 133926 -> 133927, 147473 -> 147472", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54650, + "TargetID": 8257, + "Directional": false + }, { + "SourceID": 54683, + "TargetID": 54682, + "Directional": false + }, { + "SourceID": 54720, + "TargetID": 54721, + "Directional": false + }, { + "SourceID": 54768, + "TargetID": 54769, + "Directional": false + }, { + "SourceID": 94845, + "TargetID": 94846, + "Directional": false + }, { + "SourceID": 95110, + "TargetID": 95109, + "Directional": false + }, { + "SourceID": 107143, + "TargetID": 107144, + "Directional": false + }, { + "SourceID": 108006, + "TargetID": 108005, + "Directional": false + }, { + "SourceID": 112471, + "TargetID": 93732, + "Directional": false + }, { + "SourceID": 113954, + "TargetID": 113953, + "Directional": false + }, { + "SourceID": 119238, + "TargetID": 119237, + "Directional": false + }, { + "SourceID": 131262, + "TargetID": 131261, + "Directional": false + }, { + "SourceID": 131274, + "TargetID": 131273, + "Directional": false + }, { + "SourceID": 133923, + "TargetID": 133922, + "Directional": false + }, { + "SourceID": 133924, + "TargetID": 133925, + "Directional": false + }, { + "SourceID": 133926, + "TargetID": 133927, + "Directional": false + }, { + "SourceID": 147473, + "TargetID": 147472, + "Directional": false + }] + }, { + "ID": 2591, + "SourceStructureID": 5534, + "TargetStructureID": 5528, + "Label": "5534-5528 via Gap Junction from 54418 -> 94655", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54418, + "TargetID": 94655, + "Directional": false + }] + }, { + "ID": 2592, + "SourceStructureID": 5537, + "TargetStructureID": 5528, + "Label": "5537-5528 via Gap Junction from 94701 -> 94682", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94701, + "TargetID": 94682, + "Directional": false + }] + }, { + "ID": 2593, + "SourceStructureID": 5528, + "TargetStructureID": 5860, + "Label": "5528-5860 via Adherens from 97287 -> 97285", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97287, + "TargetID": 97285, + "Directional": false + }] + }, { + "ID": 2594, + "SourceStructureID": 5528, + "TargetStructureID": 5860, + "Label": "5528-5860 via Gap Junction from 8290 -> 8249, 8778 -> 135718, 54725 -> 54724, 94830 -> 93722", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 8290, + "TargetID": 8249, + "Directional": false + }, { + "SourceID": 8778, + "TargetID": 135718, + "Directional": false + }, { + "SourceID": 54725, + "TargetID": 54724, + "Directional": false + }, { + "SourceID": 94830, + "TargetID": 93722, + "Directional": false + }] + }, { + "ID": 2595, + "SourceStructureID": 5528, + "TargetStructureID": 5860, + "Label": "5528-5860 via Unknown from 97316 -> 97317", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97316, + "TargetID": 97317, + "Directional": false + }] + }, { + "ID": 2596, + "SourceStructureID": 5528, + "TargetStructureID": 6129, + "Label": "5528-6129 via Adherens from 94294 -> 94295, 94411 -> 94412", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94294, + "TargetID": 94295, + "Directional": false + }, { + "SourceID": 94411, + "TargetID": 94412, + "Directional": false + }] + }, { + "ID": 2597, + "SourceStructureID": 5528, + "TargetStructureID": 6129, + "Label": "5528-6129 via Unknown from 93591 -> 93592, 93954 -> 93953, 94143 -> 94144, 94146 -> 94145, 94292 -> 94293, 94329 -> 94330, 94378 -> 94379, 95146 -> 95147, 95181 -> 95182", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93591, + "TargetID": 93592, + "Directional": false + }, { + "SourceID": 93954, + "TargetID": 93953, + "Directional": false + }, { + "SourceID": 94143, + "TargetID": 94144, + "Directional": false + }, { + "SourceID": 94146, + "TargetID": 94145, + "Directional": false + }, { + "SourceID": 94292, + "TargetID": 94293, + "Directional": false + }, { + "SourceID": 94329, + "TargetID": 94330, + "Directional": false + }, { + "SourceID": 94378, + "TargetID": 94379, + "Directional": false + }, { + "SourceID": 95146, + "TargetID": 95147, + "Directional": false + }, { + "SourceID": 95181, + "TargetID": 95182, + "Directional": false + }] + }, { + "ID": 2598, + "SourceStructureID": 7225, + "TargetStructureID": 5528, + "Label": "7225-5528 via Gap Junction from 10026 -> 55031, 34318 -> 10028, 94494 -> 94493", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10026, + "TargetID": 55031, + "Directional": false + }, { + "SourceID": 34318, + "TargetID": 10028, + "Directional": false + }, { + "SourceID": 94494, + "TargetID": 94493, + "Directional": false + }] + }, { + "ID": 2599, + "SourceStructureID": 7564, + "TargetStructureID": 5528, + "Label": "7564-5528 via Gap Junction from 84673 -> 84671", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 84673, + "TargetID": 84671, + "Directional": false + }] + }, { + "ID": 2600, + "SourceStructureID": 5528, + "TargetStructureID": 7576, + "Label": "5528-7576 via Adherens from 54885 -> 54886, 55029 -> 55028, 55046 -> 55045, 55095 -> 55096, 55929 -> 55928, 96847 -> 96846", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54885, + "TargetID": 54886, + "Directional": false + }, { + "SourceID": 55029, + "TargetID": 55028, + "Directional": false + }, { + "SourceID": 55046, + "TargetID": 55045, + "Directional": false + }, { + "SourceID": 55095, + "TargetID": 55096, + "Directional": false + }, { + "SourceID": 55929, + "TargetID": 55928, + "Directional": false + }, { + "SourceID": 96847, + "TargetID": 96846, + "Directional": false + }] + }, { + "ID": 2601, + "SourceStructureID": 7576, + "TargetStructureID": 5528, + "Label": "7576-5528 via Gap Junction from 54742 -> 54743, 54750 -> 54751, 54854 -> 54853, 55018 -> 55017, 55027 -> 55026, 55032 -> 55033, 55067 -> 55068, 92623 -> 92622", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54742, + "TargetID": 54743, + "Directional": false + }, { + "SourceID": 54750, + "TargetID": 54751, + "Directional": false + }, { + "SourceID": 54854, + "TargetID": 54853, + "Directional": false + }, { + "SourceID": 55018, + "TargetID": 55017, + "Directional": false + }, { + "SourceID": 55027, + "TargetID": 55026, + "Directional": false + }, { + "SourceID": 55032, + "TargetID": 55033, + "Directional": false + }, { + "SourceID": 55067, + "TargetID": 55068, + "Directional": false + }, { + "SourceID": 92623, + "TargetID": 92622, + "Directional": false + }] + }, { + "ID": 2602, + "SourceStructureID": 5528, + "TargetStructureID": 7576, + "Label": "5528-7576 via Unknown from 94407 -> 94408, 94535 -> 94534, 95057 -> 95056, 95461 -> 95460", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94407, + "TargetID": 94408, + "Directional": false + }, { + "SourceID": 94535, + "TargetID": 94534, + "Directional": false + }, { + "SourceID": 95057, + "TargetID": 95056, + "Directional": false + }, { + "SourceID": 95461, + "TargetID": 95460, + "Directional": false + }] + }, { + "ID": 2603, + "SourceStructureID": 5528, + "TargetStructureID": 7594, + "Label": "5528-7594 via Unknown from 95185 -> 95186", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95185, + "TargetID": 95186, + "Directional": false + }] + }, { + "ID": 2604, + "SourceStructureID": 25293, + "TargetStructureID": 5528, + "Label": "25293-5528 via Adherens from 95656 -> 95655", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95656, + "TargetID": 95655, + "Directional": false + }] + }, { + "ID": 2605, + "SourceStructureID": 5528, + "TargetStructureID": 33217, + "Label": "5528-33217 via Unknown from 94192 -> 94193", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94192, + "TargetID": 94193, + "Directional": false + }] + }, { + "ID": 2606, + "SourceStructureID": 5528, + "TargetStructureID": 43716, + "Label": "5528-43716 via Adherens from 95170 -> 95180", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95170, + "TargetID": 95180, + "Directional": false + }] + }, { + "ID": 2607, + "SourceStructureID": 64414, + "TargetStructureID": 5528, + "Label": "64414-5528 via Unknown from 93973 -> 93974", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93973, + "TargetID": 93974, + "Directional": false + }] + }, { + "ID": 2608, + "SourceStructureID": 68785, + "TargetStructureID": 5528, + "Label": "68785-5528 via Adherens from 95129 -> 95130", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95129, + "TargetID": 95130, + "Directional": false + }] + }, { + "ID": 2609, + "SourceStructureID": 5528, + "TargetStructureID": 68793, + "Label": "5528-68793 via Unknown from 95088 -> 95089", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95088, + "TargetID": 95089, + "Directional": false + }] + }, { + "ID": 2610, + "SourceStructureID": 82832, + "TargetStructureID": 5528, + "Label": "82832-5528 via Adherens from 96264 -> 96265", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96264, + "TargetID": 96265, + "Directional": false + }] + }, { + "ID": 2611, + "SourceStructureID": 91376, + "TargetStructureID": 5528, + "Label": "91376-5528 via Unknown from 133947 -> 95646", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133947, + "TargetID": 95646, + "Directional": false + }] + }, { + "ID": 2612, + "SourceStructureID": 5528, + "TargetStructureID": 93557, + "Label": "5528-93557 via Unknown from 93560 -> 93561", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93560, + "TargetID": 93561, + "Directional": false + }] + }, { + "ID": 2613, + "SourceStructureID": 93563, + "TargetStructureID": 5528, + "Label": "93563-5528 via Adherens from 93564 -> 93562", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93564, + "TargetID": 93562, + "Directional": false + }] + }, { + "ID": 2614, + "SourceStructureID": 5528, + "TargetStructureID": 93961, + "Label": "5528-93961 via Unknown from 93960 -> 93963", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93960, + "TargetID": 93963, + "Directional": false + }] + }, { + "ID": 2615, + "SourceStructureID": 93966, + "TargetStructureID": 5528, + "Label": "93966-5528 via Adherens from 93971 -> 93972", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93971, + "TargetID": 93972, + "Directional": false + }] + }, { + "ID": 2616, + "SourceStructureID": 5528, + "TargetStructureID": 93987, + "Label": "5528-93987 via Gap Junction from 93584 -> 94016, 93989 -> 93990, 94151 -> 94152, 94174 -> 94173", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93584, + "TargetID": 94016, + "Directional": false + }, { + "SourceID": 93989, + "TargetID": 93990, + "Directional": false + }, { + "SourceID": 94151, + "TargetID": 94152, + "Directional": false + }, { + "SourceID": 94174, + "TargetID": 94173, + "Directional": false + }] + }, { + "ID": 2617, + "SourceStructureID": 5528, + "TargetStructureID": 94012, + "Label": "5528-94012 via Unknown from 93588 -> 94013", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93588, + "TargetID": 94013, + "Directional": false + }] + }, { + "ID": 2618, + "SourceStructureID": 5528, + "TargetStructureID": 94018, + "Label": "5528-94018 via Adherens from 93586 -> 94019", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93586, + "TargetID": 94019, + "Directional": false + }] + }, { + "ID": 2619, + "SourceStructureID": 94027, + "TargetStructureID": 5528, + "Label": "94027-5528 via Adherens from 94028 -> 93602", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94028, + "TargetID": 93602, + "Directional": false + }] + }, { + "ID": 2620, + "SourceStructureID": 5528, + "TargetStructureID": 94046, + "Label": "5528-94046 via Unknown from 94121 -> 94122", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94121, + "TargetID": 94122, + "Directional": false + }] + }, { + "ID": 2621, + "SourceStructureID": 94130, + "TargetStructureID": 5528, + "Label": "94130-5528 via Unknown from 94131 -> 94129", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94131, + "TargetID": 94129, + "Directional": false + }] + }, { + "ID": 2622, + "SourceStructureID": 5528, + "TargetStructureID": 94164, + "Label": "5528-94164 via Unknown from 94163 -> 94364", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94163, + "TargetID": 94364, + "Directional": false + }] + }, { + "ID": 2623, + "SourceStructureID": 94165, + "TargetStructureID": 5528, + "Label": "94165-5528 via Adherens from 94166 -> 94167", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94166, + "TargetID": 94167, + "Directional": false + }] + }, { + "ID": 2624, + "SourceStructureID": 94168, + "TargetStructureID": 5528, + "Label": "94168-5528 via Unknown from 94170 -> 94169", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94170, + "TargetID": 94169, + "Directional": false + }] + }, { + "ID": 2625, + "SourceStructureID": 5528, + "TargetStructureID": 94178, + "Label": "5528-94178 via Adherens from 94181 -> 94183", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94181, + "TargetID": 94183, + "Directional": false + }] + }, { + "ID": 2626, + "SourceStructureID": 94184, + "TargetStructureID": 5528, + "Label": "94184-5528 via Adherens from 94185 -> 94186", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94185, + "TargetID": 94186, + "Directional": false + }] + }, { + "ID": 2627, + "SourceStructureID": 5528, + "TargetStructureID": 94184, + "Label": "5528-94184 via Unknown from 94187 -> 94188", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94187, + "TargetID": 94188, + "Directional": false + }] + }, { + "ID": 2628, + "SourceStructureID": 5528, + "TargetStructureID": 94189, + "Label": "5528-94189 via Unknown from 94190 -> 94191", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94190, + "TargetID": 94191, + "Directional": false + }] + }, { + "ID": 2629, + "SourceStructureID": 94194, + "TargetStructureID": 5528, + "Label": "94194-5528 via Unknown from 94197 -> 94196", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94197, + "TargetID": 94196, + "Directional": false + }] + }, { + "ID": 2630, + "SourceStructureID": 94251, + "TargetStructureID": 5528, + "Label": "94251-5528 via Unknown from 94254 -> 94196", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94254, + "TargetID": 94196, + "Directional": false + }] + }, { + "ID": 2631, + "SourceStructureID": 5528, + "TargetStructureID": 94270, + "Label": "5528-94270 via Adherens from 94272 -> 94271", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94272, + "TargetID": 94271, + "Directional": false + }] + }, { + "ID": 2632, + "SourceStructureID": 94303, + "TargetStructureID": 5528, + "Label": "94303-5528 via Adherens from 94306 -> 94307", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94306, + "TargetID": 94307, + "Directional": false + }] + }, { + "ID": 2633, + "SourceStructureID": 94312, + "TargetStructureID": 5528, + "Label": "94312-5528 via Adherens from 94317 -> 94316, 94318 -> 94319", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94317, + "TargetID": 94316, + "Directional": false + }, { + "SourceID": 94318, + "TargetID": 94319, + "Directional": false + }] + }, { + "ID": 2634, + "SourceStructureID": 94323, + "TargetStructureID": 5528, + "Label": "94323-5528 via Gap Junction from 94324 -> 94325", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 94324, + "TargetID": 94325, + "Directional": false + }] + }, { + "ID": 2635, + "SourceStructureID": 94326, + "TargetStructureID": 5528, + "Label": "94326-5528 via Adherens from 94327 -> 94328", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94327, + "TargetID": 94328, + "Directional": false + }] + }, { + "ID": 2636, + "SourceStructureID": 5528, + "TargetStructureID": 94344, + "Label": "5528-94344 via Adherens from 94343 -> 94345, 94383 -> 94384", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94343, + "TargetID": 94345, + "Directional": false + }, { + "SourceID": 94383, + "TargetID": 94384, + "Directional": false + }] + }, { + "ID": 2637, + "SourceStructureID": 94349, + "TargetStructureID": 5528, + "Label": "94349-5528 via Adherens from 94350 -> 94351", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94350, + "TargetID": 94351, + "Directional": false + }] + }, { + "ID": 2638, + "SourceStructureID": 94396, + "TargetStructureID": 5528, + "Label": "94396-5528 via Unknown from 94397 -> 94398", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94397, + "TargetID": 94398, + "Directional": false + }] + }, { + "ID": 2639, + "SourceStructureID": 94482, + "TargetStructureID": 5528, + "Label": "94482-5528 via Adherens from 94488 -> 94489", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94488, + "TargetID": 94489, + "Directional": false + }] + }, { + "ID": 2640, + "SourceStructureID": 5528, + "TargetStructureID": 94497, + "Label": "5528-94497 via Adherens from 94498 -> 94499", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94498, + "TargetID": 94499, + "Directional": false + }] + }, { + "ID": 2641, + "SourceStructureID": 5528, + "TargetStructureID": 94531, + "Label": "5528-94531 via Unknown from 94532 -> 94533", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94532, + "TargetID": 94533, + "Directional": false + }] + }, { + "ID": 2642, + "SourceStructureID": 94646, + "TargetStructureID": 5528, + "Label": "94646-5528 via Unknown from 94647 -> 94648", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94647, + "TargetID": 94648, + "Directional": false + }] + }, { + "ID": 2643, + "SourceStructureID": 5528, + "TargetStructureID": 94675, + "Label": "5528-94675 via Unknown from 94676 -> 94678", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94676, + "TargetID": 94678, + "Directional": false + }] + }, { + "ID": 2644, + "SourceStructureID": 94713, + "TargetStructureID": 5528, + "Label": "94713-5528 via Adherens from 94716 -> 94717", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94716, + "TargetID": 94717, + "Directional": false + }] + }, { + "ID": 2645, + "SourceStructureID": 5528, + "TargetStructureID": 94722, + "Label": "5528-94722 via Unknown from 94725 -> 94726", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94725, + "TargetID": 94726, + "Directional": false + }] + }, { + "ID": 2646, + "SourceStructureID": 94794, + "TargetStructureID": 5528, + "Label": "94794-5528 via Unknown from 94809 -> 94810", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94809, + "TargetID": 94810, + "Directional": false + }] + }, { + "ID": 2647, + "SourceStructureID": 94806, + "TargetStructureID": 5528, + "Label": "94806-5528 via Unknown from 94807 -> 94808", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94807, + "TargetID": 94808, + "Directional": false + }] + }, { + "ID": 2648, + "SourceStructureID": 94811, + "TargetStructureID": 5528, + "Label": "94811-5528 via Unknown from 94812 -> 94813", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94812, + "TargetID": 94813, + "Directional": false + }] + }, { + "ID": 2649, + "SourceStructureID": 94834, + "TargetStructureID": 5528, + "Label": "94834-5528 via Unknown from 94835 -> 94836", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94835, + "TargetID": 94836, + "Directional": false + }] + }, { + "ID": 2650, + "SourceStructureID": 94838, + "TargetStructureID": 5528, + "Label": "94838-5528 via Adherens from 94840 -> 94841, 94863 -> 94864", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94840, + "TargetID": 94841, + "Directional": false + }, { + "SourceID": 94863, + "TargetID": 94864, + "Directional": false + }] + }, { + "ID": 2651, + "SourceStructureID": 94838, + "TargetStructureID": 5528, + "Label": "94838-5528 via Unknown from 94842 -> 94843", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94842, + "TargetID": 94843, + "Directional": false + }] + }, { + "ID": 2652, + "SourceStructureID": 5528, + "TargetStructureID": 94848, + "Label": "5528-94848 via Unknown from 94860 -> 94861", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94860, + "TargetID": 94861, + "Directional": false + }] + }, { + "ID": 2653, + "SourceStructureID": 95062, + "TargetStructureID": 5528, + "Label": "95062-5528 via Adherens from 95064 -> 95065", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95064, + "TargetID": 95065, + "Directional": false + }] + }, { + "ID": 2654, + "SourceStructureID": 5528, + "TargetStructureID": 95066, + "Label": "5528-95066 via Adherens from 95067 -> 95068", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95067, + "TargetID": 95068, + "Directional": false + }] + }, { + "ID": 2655, + "SourceStructureID": 95070, + "TargetStructureID": 5528, + "Label": "95070-5528 via Unknown from 95077 -> 95079", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95077, + "TargetID": 95079, + "Directional": false + }] + }, { + "ID": 2656, + "SourceStructureID": 5528, + "TargetStructureID": 95131, + "Label": "5528-95131 via Adherens from 68789 -> 95143, 95145 -> 68788", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68789, + "TargetID": 95143, + "Directional": false + }, { + "SourceID": 95145, + "TargetID": 68788, + "Directional": false + }] + }, { + "ID": 2657, + "SourceStructureID": 5528, + "TargetStructureID": 95131, + "Label": "5528-95131 via Unknown from 95146 -> 95148", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95146, + "TargetID": 95148, + "Directional": false + }] + }, { + "ID": 2658, + "SourceStructureID": 95157, + "TargetStructureID": 5528, + "Label": "95157-5528 via Unknown from 95158 -> 95156", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95158, + "TargetID": 95156, + "Directional": false + }] + }, { + "ID": 2659, + "SourceStructureID": 95195, + "TargetStructureID": 5528, + "Label": "95195-5528 via Adherens from 95471 -> 95472", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95471, + "TargetID": 95472, + "Directional": false + }] + }, { + "ID": 2660, + "SourceStructureID": 5528, + "TargetStructureID": 95623, + "Label": "5528-95623 via Adherens from 95628 -> 95629", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95628, + "TargetID": 95629, + "Directional": false + }] + }, { + "ID": 2661, + "SourceStructureID": 5528, + "TargetStructureID": 95623, + "Label": "5528-95623 via Gap Junction from 95624 -> 95625", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 95624, + "TargetID": 95625, + "Directional": false + }] + }, { + "ID": 2662, + "SourceStructureID": 95640, + "TargetStructureID": 5528, + "Label": "95640-5528 via Unknown from 95642 -> 95641", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95642, + "TargetID": 95641, + "Directional": false + }] + }, { + "ID": 2663, + "SourceStructureID": 95693, + "TargetStructureID": 5528, + "Label": "95693-5528 via Unknown from 95694 -> 95692", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 95694, + "TargetID": 95692, + "Directional": false + }] + }, { + "ID": 2664, + "SourceStructureID": 5528, + "TargetStructureID": 96143, + "Label": "5528-96143 via Unknown from 96160 -> 96161", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96160, + "TargetID": 96161, + "Directional": false + }] + }, { + "ID": 2665, + "SourceStructureID": 96170, + "TargetStructureID": 5528, + "Label": "96170-5528 via Adherens from 96171 -> 96169", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96171, + "TargetID": 96169, + "Directional": false + }] + }, { + "ID": 2666, + "SourceStructureID": 5528, + "TargetStructureID": 96189, + "Label": "5528-96189 via Adherens from 96192 -> 96193", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96192, + "TargetID": 96193, + "Directional": false + }] + }, { + "ID": 2667, + "SourceStructureID": 96194, + "TargetStructureID": 5528, + "Label": "96194-5528 via Unknown from 96195 -> 96196", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96195, + "TargetID": 96196, + "Directional": false + }] + }, { + "ID": 2668, + "SourceStructureID": 5528, + "TargetStructureID": 96201, + "Label": "5528-96201 via Gap Junction from 96205 -> 96204", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96205, + "TargetID": 96204, + "Directional": false + }] + }, { + "ID": 2669, + "SourceStructureID": 96210, + "TargetStructureID": 5528, + "Label": "96210-5528 via Unknown from 96211 -> 96209", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96211, + "TargetID": 96209, + "Directional": false + }] + }, { + "ID": 2670, + "SourceStructureID": 5528, + "TargetStructureID": 96220, + "Label": "5528-96220 via Unknown from 96219 -> 96223", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96219, + "TargetID": 96223, + "Directional": false + }] + }, { + "ID": 2671, + "SourceStructureID": 5528, + "TargetStructureID": 96240, + "Label": "5528-96240 via Unknown from 96260 -> 96261, 96262 -> 96263", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96260, + "TargetID": 96261, + "Directional": false + }, { + "SourceID": 96262, + "TargetID": 96263, + "Directional": false + }] + }, { + "ID": 2672, + "SourceStructureID": 96270, + "TargetStructureID": 5528, + "Label": "96270-5528 via Adherens from 96275 -> 96274", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96275, + "TargetID": 96274, + "Directional": false + }] + }, { + "ID": 2673, + "SourceStructureID": 5528, + "TargetStructureID": 96290, + "Label": "5528-96290 via Adherens from 96842 -> 96843", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96842, + "TargetID": 96843, + "Directional": false + }] + }, { + "ID": 2674, + "SourceStructureID": 5528, + "TargetStructureID": 96290, + "Label": "5528-96290 via Gap Junction from 96845 -> 96844", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96845, + "TargetID": 96844, + "Directional": false + }] + }, { + "ID": 2675, + "SourceStructureID": 96303, + "TargetStructureID": 5528, + "Label": "96303-5528 via Adherens from 96840 -> 96841", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96840, + "TargetID": 96841, + "Directional": false + }] + }, { + "ID": 2676, + "SourceStructureID": 96883, + "TargetStructureID": 5528, + "Label": "96883-5528 via Adherens from 96888 -> 96889, 96890 -> 96887", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96888, + "TargetID": 96889, + "Directional": false + }, { + "SourceID": 96890, + "TargetID": 96887, + "Directional": false + }] + }, { + "ID": 2677, + "SourceStructureID": 96893, + "TargetStructureID": 5528, + "Label": "96893-5528 via Adherens from 96917 -> 96916", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96917, + "TargetID": 96916, + "Directional": false + }] + }, { + "ID": 2678, + "SourceStructureID": 96898, + "TargetStructureID": 5528, + "Label": "96898-5528 via Gap Junction from 96901 -> 96902", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96901, + "TargetID": 96902, + "Directional": false + }] + }, { + "ID": 2679, + "SourceStructureID": 96914, + "TargetStructureID": 5528, + "Label": "96914-5528 via Adherens from 96915 -> 8293", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96915, + "TargetID": 8293, + "Directional": false + }] + }, { + "ID": 2680, + "SourceStructureID": 97290, + "TargetStructureID": 5528, + "Label": "97290-5528 via Adherens from 97291 -> 97292", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97291, + "TargetID": 97292, + "Directional": false + }] + }, { + "ID": 2681, + "SourceStructureID": 5528, + "TargetStructureID": 97310, + "Label": "5528-97310 via Adherens from 97312 -> 97313", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97312, + "TargetID": 97313, + "Directional": false + }] + }, { + "ID": 2682, + "SourceStructureID": 5530, + "TargetStructureID": 5530, + "Label": "5530-5530 via Adherens from 125895 -> 125896, 135588 -> 135587, 135603 -> 135604", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125895, + "TargetID": 125896, + "Directional": false + }, { + "SourceID": 135588, + "TargetID": 135587, + "Directional": false + }, { + "SourceID": 135603, + "TargetID": 135604, + "Directional": false + }] + }, { + "ID": 2683, + "SourceStructureID": 5530, + "TargetStructureID": 5530, + "Label": "5530-5530 via Gap Junction from 44246 -> 44245, 74588 -> 74587, 80973 -> 50905, 81253 -> 81254, 81568 -> 54071, 81865 -> 81870", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 44246, + "TargetID": 44245, + "Directional": false + }, { + "SourceID": 74588, + "TargetID": 74587, + "Directional": false + }, { + "SourceID": 80973, + "TargetID": 50905, + "Directional": false + }, { + "SourceID": 81253, + "TargetID": 81254, + "Directional": false + }, { + "SourceID": 81568, + "TargetID": 54071, + "Directional": false + }, { + "SourceID": 81865, + "TargetID": 81870, + "Directional": false + }] + }, { + "ID": 2684, + "SourceStructureID": 5531, + "TargetStructureID": 5530, + "Label": "5531-5530 via Adherens from 82571 -> 81621", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82571, + "TargetID": 81621, + "Directional": false + }] + }, { + "ID": 2685, + "SourceStructureID": 5534, + "TargetStructureID": 5530, + "Label": "5534-5530 via Adherens from 135581 -> 135580", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135581, + "TargetID": 135580, + "Directional": false + }] + }, { + "ID": 2686, + "SourceStructureID": 5530, + "TargetStructureID": 5534, + "Label": "5530-5534 via Gap Junction from 38271 -> 77931, 45323 -> 45322, 76798 -> 76797, 82053 -> 82054, 82056 -> 82055, 134307 -> 134308", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38271, + "TargetID": 77931, + "Directional": false + }, { + "SourceID": 45323, + "TargetID": 45322, + "Directional": false + }, { + "SourceID": 76798, + "TargetID": 76797, + "Directional": false + }, { + "SourceID": 82053, + "TargetID": 82054, + "Directional": false + }, { + "SourceID": 82056, + "TargetID": 82055, + "Directional": false + }, { + "SourceID": 134307, + "TargetID": 134308, + "Directional": false + }] + }, { + "ID": 2687, + "SourceStructureID": 5530, + "TargetStructureID": 5537, + "Label": "5530-5537 via Adherens from 81221 -> 81222, 135574 -> 135573", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81221, + "TargetID": 81222, + "Directional": false + }, { + "SourceID": 135574, + "TargetID": 135573, + "Directional": false + }] + }, { + "ID": 2688, + "SourceStructureID": 5530, + "TargetStructureID": 5537, + "Label": "5530-5537 via Gap Junction from 81219 -> 81220, 81261 -> 81260, 134568 -> 134569", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 81219, + "TargetID": 81220, + "Directional": false + }, { + "SourceID": 81261, + "TargetID": 81260, + "Directional": false + }, { + "SourceID": 134568, + "TargetID": 134569, + "Directional": false + }] + }, { + "ID": 2689, + "SourceStructureID": 5530, + "TargetStructureID": 5601, + "Label": "5530-5601 via Gap Junction from 45399 -> 38527, 54097 -> 54096, 81266 -> 81265", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45399, + "TargetID": 38527, + "Directional": false + }, { + "SourceID": 54097, + "TargetID": 54096, + "Directional": false + }, { + "SourceID": 81266, + "TargetID": 81265, + "Directional": false + }] + }, { + "ID": 2690, + "SourceStructureID": 5530, + "TargetStructureID": 5860, + "Label": "5530-5860 via Adherens from 126466 -> 126467", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126466, + "TargetID": 126467, + "Directional": false + }] + }, { + "ID": 2691, + "SourceStructureID": 5530, + "TargetStructureID": 5860, + "Label": "5530-5860 via Gap Junction from 29865 -> 29864, 30115 -> 30116, 79573 -> 79574, 80188 -> 82437, 80707 -> 80706, 82881 -> 81028", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29865, + "TargetID": 29864, + "Directional": false + }, { + "SourceID": 30115, + "TargetID": 30116, + "Directional": false + }, { + "SourceID": 79573, + "TargetID": 79574, + "Directional": false + }, { + "SourceID": 80188, + "TargetID": 82437, + "Directional": false + }, { + "SourceID": 80707, + "TargetID": 80706, + "Directional": false + }, { + "SourceID": 82881, + "TargetID": 81028, + "Directional": false + }] + }, { + "ID": 2692, + "SourceStructureID": 5530, + "TargetStructureID": 6117, + "Label": "5530-6117 via Gap Junction from 46332 -> 30905, 80449 -> 82856", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46332, + "TargetID": 30905, + "Directional": false + }, { + "SourceID": 80449, + "TargetID": 82856, + "Directional": false + }] + }, { + "ID": 2693, + "SourceStructureID": 5530, + "TargetStructureID": 7564, + "Label": "5530-7564 via Adherens from 75895 -> 75896", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75895, + "TargetID": 75896, + "Directional": false + }] + }, { + "ID": 2694, + "SourceStructureID": 5530, + "TargetStructureID": 7564, + "Label": "5530-7564 via Gap Junction from 29174 -> 29173, 76741 -> 76740, 77648 -> 77649", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29174, + "TargetID": 29173, + "Directional": false + }, { + "SourceID": 76741, + "TargetID": 76740, + "Directional": false + }, { + "SourceID": 77648, + "TargetID": 77649, + "Directional": false + }] + }, { + "ID": 2695, + "SourceStructureID": 5530, + "TargetStructureID": 9769, + "Label": "5530-9769 via Adherens from 74661 -> 74660, 126447 -> 126448", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74661, + "TargetID": 74660, + "Directional": false + }, { + "SourceID": 126447, + "TargetID": 126448, + "Directional": false + }] + }, { + "ID": 2696, + "SourceStructureID": 9769, + "TargetStructureID": 5530, + "Label": "9769-5530 via Unknown from 74607 -> 74606, 82886 -> 81144", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74607, + "TargetID": 74606, + "Directional": false + }, { + "SourceID": 82886, + "TargetID": 81144, + "Directional": false + }] + }, { + "ID": 2697, + "SourceStructureID": 5530, + "TargetStructureID": 10596, + "Label": "5530-10596 via Adherens from 76525 -> 82375", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76525, + "TargetID": 82375, + "Directional": false + }] + }, { + "ID": 2698, + "SourceStructureID": 10596, + "TargetStructureID": 5530, + "Label": "10596-5530 via Unknown from 82621 -> 76547", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82621, + "TargetID": 76547, + "Directional": false + }] + }, { + "ID": 2699, + "SourceStructureID": 12564, + "TargetStructureID": 5530, + "Label": "12564-5530 via Adherens from 76825 -> 76826", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76825, + "TargetID": 76826, + "Directional": false + }] + }, { + "ID": 2700, + "SourceStructureID": 5530, + "TargetStructureID": 18693, + "Label": "5530-18693 via Unknown from 77628 -> 77629", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77628, + "TargetID": 77629, + "Directional": false + }] + }, { + "ID": 2701, + "SourceStructureID": 23512, + "TargetStructureID": 5530, + "Label": "23512-5530 via Unknown from 82618 -> 76524", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82618, + "TargetID": 76524, + "Directional": false + }] + }, { + "ID": 2702, + "SourceStructureID": 5530, + "TargetStructureID": 23836, + "Label": "5530-23836 via Adherens from 81177 -> 81176, 81178 -> 81179, 81185 -> 81184", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81177, + "TargetID": 81176, + "Directional": false + }, { + "SourceID": 81178, + "TargetID": 81179, + "Directional": false + }, { + "SourceID": 81185, + "TargetID": 81184, + "Directional": false + }] + }, { + "ID": 2703, + "SourceStructureID": 23836, + "TargetStructureID": 5530, + "Label": "23836-5530 via Unknown from 83002 -> 82049", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83002, + "TargetID": 82049, + "Directional": false + }] + }, { + "ID": 2704, + "SourceStructureID": 5530, + "TargetStructureID": 25293, + "Label": "5530-25293 via Unknown from 81118 -> 82883", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81118, + "TargetID": 82883, + "Directional": false + }] + }, { + "ID": 2705, + "SourceStructureID": 5530, + "TargetStructureID": 34315, + "Label": "5530-34315 via Adherens from 81205 -> 81204", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81205, + "TargetID": 81204, + "Directional": false + }] + }, { + "ID": 2706, + "SourceStructureID": 35240, + "TargetStructureID": 5530, + "Label": "35240-5530 via Adherens from 126441 -> 126442", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126441, + "TargetID": 126442, + "Directional": false + }] + }, { + "ID": 2707, + "SourceStructureID": 5530, + "TargetStructureID": 35240, + "Label": "5530-35240 via Unknown from 80177 -> 82838, 82425 -> 79271, 82836 -> 79547, 82837 -> 79548", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80177, + "TargetID": 82838, + "Directional": false + }, { + "SourceID": 82425, + "TargetID": 79271, + "Directional": false + }, { + "SourceID": 82836, + "TargetID": 79547, + "Directional": false + }, { + "SourceID": 82837, + "TargetID": 79548, + "Directional": false + }] + }, { + "ID": 2708, + "SourceStructureID": 35539, + "TargetStructureID": 5530, + "Label": "35539-5530 via Unknown from 82823 -> 79054", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82823, + "TargetID": 79054, + "Directional": false + }] + }, { + "ID": 2709, + "SourceStructureID": 5530, + "TargetStructureID": 40039, + "Label": "5530-40039 via Adherens from 82524 -> 82525, 84360 -> 84359", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82524, + "TargetID": 82525, + "Directional": false + }, { + "SourceID": 84360, + "TargetID": 84359, + "Directional": false + }] + }, { + "ID": 2710, + "SourceStructureID": 40039, + "TargetStructureID": 5530, + "Label": "40039-5530 via Conventional from 82610 -> 75773", + "Type": "Conventional", + "Directional": false, + "Links": [{ + "SourceID": 82610, + "TargetID": 75773, + "Directional": false + }] + }, { + "ID": 2711, + "SourceStructureID": 40039, + "TargetStructureID": 5530, + "Label": "40039-5530 via Unknown from 82379 -> 80508, 82511 -> 80567, 82673 -> 82674, 82844 -> 80200", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82379, + "TargetID": 80508, + "Directional": false + }, { + "SourceID": 82511, + "TargetID": 80567, + "Directional": false + }, { + "SourceID": 82673, + "TargetID": 82674, + "Directional": false + }, { + "SourceID": 82844, + "TargetID": 80200, + "Directional": false + }] + }, { + "ID": 2712, + "SourceStructureID": 44237, + "TargetStructureID": 5530, + "Label": "44237-5530 via Adherens from 77354 -> 77355", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77354, + "TargetID": 77355, + "Directional": false + }] + }, { + "ID": 2713, + "SourceStructureID": 5530, + "TargetStructureID": 45220, + "Label": "5530-45220 via Unknown from 81214 -> 82896, 82900 -> 81611", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81214, + "TargetID": 82896, + "Directional": false + }, { + "SourceID": 82900, + "TargetID": 81611, + "Directional": false + }] + }, { + "ID": 2714, + "SourceStructureID": 69953, + "TargetStructureID": 5530, + "Label": "69953-5530 via Unknown from 82850 -> 80405, 126462 -> 126461", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82850, + "TargetID": 80405, + "Directional": false + }, { + "SourceID": 126462, + "TargetID": 126461, + "Directional": false + }] + }, { + "ID": 2715, + "SourceStructureID": 74056, + "TargetStructureID": 5530, + "Label": "74056-5530 via Adherens from 81710 -> 81711", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81710, + "TargetID": 81711, + "Directional": false + }] + }, { + "ID": 2716, + "SourceStructureID": 5530, + "TargetStructureID": 74213, + "Label": "5530-74213 via Unknown from 74612 -> 74613", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74612, + "TargetID": 74613, + "Directional": false + }] + }, { + "ID": 2717, + "SourceStructureID": 74225, + "TargetStructureID": 5530, + "Label": "74225-5530 via Unknown from 74227 -> 74226", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74227, + "TargetID": 74226, + "Directional": false + }] + }, { + "ID": 2718, + "SourceStructureID": 5530, + "TargetStructureID": 74584, + "Label": "5530-74584 via Adherens from 82316 -> 74585", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82316, + "TargetID": 74585, + "Directional": false + }] + }, { + "ID": 2719, + "SourceStructureID": 74694, + "TargetStructureID": 5530, + "Label": "74694-5530 via Unknown from 74715 -> 74718", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74715, + "TargetID": 74718, + "Directional": false + }] + }, { + "ID": 2720, + "SourceStructureID": 5530, + "TargetStructureID": 75001, + "Label": "5530-75001 via Unknown from 77325 -> 82641, 82424 -> 75778", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77325, + "TargetID": 82641, + "Directional": false + }, { + "SourceID": 82424, + "TargetID": 75778, + "Directional": false + }] + }, { + "ID": 2721, + "SourceStructureID": 75488, + "TargetStructureID": 5530, + "Label": "75488-5530 via Unknown from 82601 -> 75495", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82601, + "TargetID": 75495, + "Directional": false + }] + }, { + "ID": 2722, + "SourceStructureID": 5530, + "TargetStructureID": 75512, + "Label": "5530-75512 via Adherens from 75514 -> 75513", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75514, + "TargetID": 75513, + "Directional": false + }] + }, { + "ID": 2723, + "SourceStructureID": 5530, + "TargetStructureID": 75515, + "Label": "5530-75515 via Unknown from 75516 -> 82602", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75516, + "TargetID": 82602, + "Directional": false + }] + }, { + "ID": 2724, + "SourceStructureID": 75796, + "TargetStructureID": 5530, + "Label": "75796-5530 via Adherens from 125904 -> 125903, 125906 -> 125907", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 125904, + "TargetID": 125903, + "Directional": false + }, { + "SourceID": 125906, + "TargetID": 125907, + "Directional": false + }] + }, { + "ID": 2725, + "SourceStructureID": 75796, + "TargetStructureID": 5530, + "Label": "75796-5530 via Unknown from 82611 -> 75809", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82611, + "TargetID": 75809, + "Directional": false + }] + }, { + "ID": 2726, + "SourceStructureID": 75915, + "TargetStructureID": 5530, + "Label": "75915-5530 via Unknown from 115791 -> 75916", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115791, + "TargetID": 75916, + "Directional": false + }] + }, { + "ID": 2727, + "SourceStructureID": 5530, + "TargetStructureID": 76530, + "Label": "5530-76530 via Unknown from 76551 -> 82627", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76551, + "TargetID": 82627, + "Directional": false + }] + }, { + "ID": 2728, + "SourceStructureID": 76771, + "TargetStructureID": 5530, + "Label": "76771-5530 via Unknown from 82537 -> 76774", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82537, + "TargetID": 76774, + "Directional": false + }] + }, { + "ID": 2729, + "SourceStructureID": 77329, + "TargetStructureID": 5530, + "Label": "77329-5530 via Adherens from 77330 -> 77331", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77330, + "TargetID": 77331, + "Directional": false + }] + }, { + "ID": 2730, + "SourceStructureID": 77329, + "TargetStructureID": 5530, + "Label": "77329-5530 via Unknown from 82651 -> 77327", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82651, + "TargetID": 77327, + "Directional": false + }] + }, { + "ID": 2731, + "SourceStructureID": 77332, + "TargetStructureID": 5530, + "Label": "77332-5530 via Adherens from 77335 -> 77336", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77335, + "TargetID": 77336, + "Directional": false + }] + }, { + "ID": 2732, + "SourceStructureID": 5530, + "TargetStructureID": 77332, + "Label": "5530-77332 via Unknown from 77353 -> 82652", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77353, + "TargetID": 82652, + "Directional": false + }] + }, { + "ID": 2733, + "SourceStructureID": 5530, + "TargetStructureID": 77393, + "Label": "5530-77393 via Unknown from 77396 -> 82661", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77396, + "TargetID": 82661, + "Directional": false + }] + }, { + "ID": 2734, + "SourceStructureID": 77407, + "TargetStructureID": 5530, + "Label": "77407-5530 via Unknown from 82675 -> 77410", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82675, + "TargetID": 77410, + "Directional": false + }] + }, { + "ID": 2735, + "SourceStructureID": 5530, + "TargetStructureID": 77412, + "Label": "5530-77412 via Unknown from 77618 -> 82689", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77618, + "TargetID": 82689, + "Directional": false + }] + }, { + "ID": 2736, + "SourceStructureID": 5530, + "TargetStructureID": 77632, + "Label": "5530-77632 via Unknown from 77636 -> 82697", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77636, + "TargetID": 82697, + "Directional": false + }] + }, { + "ID": 2737, + "SourceStructureID": 77914, + "TargetStructureID": 5530, + "Label": "77914-5530 via Adherens from 77915 -> 77913", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77915, + "TargetID": 77913, + "Directional": false + }] + }, { + "ID": 2738, + "SourceStructureID": 5530, + "TargetStructureID": 77932, + "Label": "5530-77932 via Adherens from 77935 -> 77936", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77935, + "TargetID": 77936, + "Directional": false + }] + }, { + "ID": 2739, + "SourceStructureID": 5530, + "TargetStructureID": 79073, + "Label": "5530-79073 via Unknown from 79098 -> 82829", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79098, + "TargetID": 82829, + "Directional": false + }] + }, { + "ID": 2740, + "SourceStructureID": 5530, + "TargetStructureID": 79106, + "Label": "5530-79106 via Unknown from 79117 -> 82377", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79117, + "TargetID": 82377, + "Directional": false + }] + }, { + "ID": 2741, + "SourceStructureID": 5530, + "TargetStructureID": 79152, + "Label": "5530-79152 via Adherens from 79153 -> 79154", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79153, + "TargetID": 79154, + "Directional": false + }] + }, { + "ID": 2742, + "SourceStructureID": 79159, + "TargetStructureID": 5530, + "Label": "79159-5530 via Adherens from 79162 -> 79163", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79162, + "TargetID": 79163, + "Directional": false + }] + }, { + "ID": 2743, + "SourceStructureID": 79159, + "TargetStructureID": 5530, + "Label": "79159-5530 via Unknown from 82857 -> 80623", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82857, + "TargetID": 80623, + "Directional": false + }] + }, { + "ID": 2744, + "SourceStructureID": 79256, + "TargetStructureID": 5530, + "Label": "79256-5530 via Adherens from 79262 -> 79263", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79262, + "TargetID": 79263, + "Directional": false + }] + }, { + "ID": 2745, + "SourceStructureID": 79256, + "TargetStructureID": 5530, + "Label": "79256-5530 via Unknown from 134559 -> 79258", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134559, + "TargetID": 79258, + "Directional": false + }] + }, { + "ID": 2746, + "SourceStructureID": 5530, + "TargetStructureID": 79551, + "Label": "5530-79551 via Adherens from 126451 -> 126452", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126451, + "TargetID": 126452, + "Directional": false + }] + }, { + "ID": 2747, + "SourceStructureID": 80180, + "TargetStructureID": 5530, + "Label": "80180-5530 via Unknown from 82841 -> 80181", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82841, + "TargetID": 80181, + "Directional": false + }] + }, { + "ID": 2748, + "SourceStructureID": 80276, + "TargetStructureID": 5530, + "Label": "80276-5530 via Unknown from 82847 -> 80314", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82847, + "TargetID": 80314, + "Directional": false + }] + }, { + "ID": 2749, + "SourceStructureID": 80422, + "TargetStructureID": 5530, + "Label": "80422-5530 via Adherens from 80423 -> 80424", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80423, + "TargetID": 80424, + "Directional": false + }] + }, { + "ID": 2750, + "SourceStructureID": 5530, + "TargetStructureID": 80495, + "Label": "5530-80495 via Adherens from 126455 -> 126456", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126455, + "TargetID": 126456, + "Directional": false + }] + }, { + "ID": 2751, + "SourceStructureID": 5530, + "TargetStructureID": 80602, + "Label": "5530-80602 via Unknown from 46335 -> 80603", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 46335, + "TargetID": 80603, + "Directional": false + }] + }, { + "ID": 2752, + "SourceStructureID": 80607, + "TargetStructureID": 5530, + "Label": "80607-5530 via Unknown from 82438 -> 80598", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82438, + "TargetID": 80598, + "Directional": false + }] + }, { + "ID": 2753, + "SourceStructureID": 5530, + "TargetStructureID": 80609, + "Label": "5530-80609 via Unknown from 46338 -> 80610", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 46338, + "TargetID": 80610, + "Directional": false + }] + }, { + "ID": 2754, + "SourceStructureID": 80977, + "TargetStructureID": 5530, + "Label": "80977-5530 via Adherens from 80978 -> 80979", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80978, + "TargetID": 80979, + "Directional": false + }] + }, { + "ID": 2755, + "SourceStructureID": 80983, + "TargetStructureID": 5530, + "Label": "80983-5530 via Adherens from 80984 -> 80985", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80984, + "TargetID": 80985, + "Directional": false + }] + }, { + "ID": 2756, + "SourceStructureID": 5530, + "TargetStructureID": 80997, + "Label": "5530-80997 via Unknown from 80998 -> 82879", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80998, + "TargetID": 82879, + "Directional": false + }] + }, { + "ID": 2757, + "SourceStructureID": 81008, + "TargetStructureID": 5530, + "Label": "81008-5530 via Unknown from 82880 -> 81016", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82880, + "TargetID": 81016, + "Directional": false + }] + }, { + "ID": 2758, + "SourceStructureID": 5530, + "TargetStructureID": 81142, + "Label": "5530-81142 via Unknown from 81143 -> 82526", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81143, + "TargetID": 82526, + "Directional": false + }] + }, { + "ID": 2759, + "SourceStructureID": 5530, + "TargetStructureID": 81566, + "Label": "5530-81566 via Adherens from 126470 -> 126471", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126470, + "TargetID": 126471, + "Directional": false + }] + }, { + "ID": 2760, + "SourceStructureID": 81566, + "TargetStructureID": 5530, + "Label": "81566-5530 via Unknown from 82899 -> 81579", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82899, + "TargetID": 81579, + "Directional": false + }] + }, { + "ID": 2761, + "SourceStructureID": 81618, + "TargetStructureID": 5530, + "Label": "81618-5530 via Adherens from 81619 -> 81620", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81619, + "TargetID": 81620, + "Directional": false + }] + }, { + "ID": 2762, + "SourceStructureID": 5530, + "TargetStructureID": 81622, + "Label": "5530-81622 via Unknown from 81627 -> 82990", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81627, + "TargetID": 82990, + "Directional": false + }] + }, { + "ID": 2763, + "SourceStructureID": 5530, + "TargetStructureID": 81629, + "Label": "5530-81629 via Unknown from 81628 -> 82991", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81628, + "TargetID": 82991, + "Directional": false + }] + }, { + "ID": 2764, + "SourceStructureID": 82046, + "TargetStructureID": 5530, + "Label": "82046-5530 via Adherens from 82047 -> 82048", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82047, + "TargetID": 82048, + "Directional": false + }] + }, { + "ID": 2765, + "SourceStructureID": 82046, + "TargetStructureID": 5530, + "Label": "82046-5530 via Unknown from 83001 -> 81884", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83001, + "TargetID": 81884, + "Directional": false + }] + }, { + "ID": 2766, + "SourceStructureID": 5530, + "TargetStructureID": 82070, + "Label": "5530-82070 via Unknown from 82066 -> 82507, 82082 -> 82083", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82066, + "TargetID": 82507, + "Directional": false + }, { + "SourceID": 82082, + "TargetID": 82083, + "Directional": false + }] + }, { + "ID": 2767, + "SourceStructureID": 82071, + "TargetStructureID": 5530, + "Label": "82071-5530 via Unknown from 82073 -> 82074", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82073, + "TargetID": 82074, + "Directional": false + }] + }, { + "ID": 2768, + "SourceStructureID": 82442, + "TargetStructureID": 5530, + "Label": "82442-5530 via Unknown from 82552 -> 78874", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82552, + "TargetID": 78874, + "Directional": false + }] + }, { + "ID": 2769, + "SourceStructureID": 5530, + "TargetStructureID": 82577, + "Label": "5530-82577 via Unknown from 80487 -> 82581", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80487, + "TargetID": 82581, + "Directional": false + }] + }, { + "ID": 2770, + "SourceStructureID": 5530, + "TargetStructureID": 82595, + "Label": "5530-82595 via Unknown from 81885 -> 82596", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81885, + "TargetID": 82596, + "Directional": false + }] + }, { + "ID": 2771, + "SourceStructureID": 82598, + "TargetStructureID": 5530, + "Label": "82598-5530 via Unknown from 82599 -> 74869", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82599, + "TargetID": 74869, + "Directional": false + }] + }, { + "ID": 2772, + "SourceStructureID": 5530, + "TargetStructureID": 82619, + "Label": "5530-82619 via Unknown from 76529 -> 82620", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76529, + "TargetID": 82620, + "Directional": false + }] + }, { + "ID": 2773, + "SourceStructureID": 82625, + "TargetStructureID": 5530, + "Label": "82625-5530 via Unknown from 82626 -> 76550", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82626, + "TargetID": 76550, + "Directional": false + }] + }, { + "ID": 2774, + "SourceStructureID": 82628, + "TargetStructureID": 5530, + "Label": "82628-5530 via Unknown from 82629 -> 76748", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82629, + "TargetID": 76748, + "Directional": false + }] + }, { + "ID": 2775, + "SourceStructureID": 5530, + "TargetStructureID": 82630, + "Label": "5530-82630 via Unknown from 76784 -> 82631", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76784, + "TargetID": 82631, + "Directional": false + }] + }, { + "ID": 2776, + "SourceStructureID": 5530, + "TargetStructureID": 82632, + "Label": "5530-82632 via Unknown from 76791 -> 82633", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76791, + "TargetID": 82633, + "Directional": false + }] + }, { + "ID": 2777, + "SourceStructureID": 5530, + "TargetStructureID": 82636, + "Label": "5530-82636 via Unknown from 77324 -> 82638", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77324, + "TargetID": 82638, + "Directional": false + }] + }, { + "ID": 2778, + "SourceStructureID": 82643, + "TargetStructureID": 5530, + "Label": "82643-5530 via Unknown from 82648 -> 77326", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82648, + "TargetID": 77326, + "Directional": false + }] + }, { + "ID": 2779, + "SourceStructureID": 82656, + "TargetStructureID": 5530, + "Label": "82656-5530 via Unknown from 82657 -> 77392", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82657, + "TargetID": 77392, + "Directional": false + }] + }, { + "ID": 2780, + "SourceStructureID": 5530, + "TargetStructureID": 82664, + "Label": "5530-82664 via Unknown from 77402 -> 82672", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77402, + "TargetID": 82672, + "Directional": false + }] + }, { + "ID": 2781, + "SourceStructureID": 5530, + "TargetStructureID": 82677, + "Label": "5530-82677 via Gap Junction from 77466 -> 82680", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 77466, + "TargetID": 82680, + "Directional": false + }] + }, { + "ID": 2782, + "SourceStructureID": 82695, + "TargetStructureID": 5530, + "Label": "82695-5530 via Unknown from 82696 -> 77630", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82696, + "TargetID": 77630, + "Directional": false + }] + }, { + "ID": 2783, + "SourceStructureID": 5530, + "TargetStructureID": 82827, + "Label": "5530-82827 via Unknown from 79060 -> 82828", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79060, + "TargetID": 82828, + "Directional": false + }] + }, { + "ID": 2784, + "SourceStructureID": 82830, + "TargetStructureID": 5530, + "Label": "82830-5530 via Unknown from 82831 -> 79137", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82831, + "TargetID": 79137, + "Directional": false + }] + }, { + "ID": 2785, + "SourceStructureID": 82832, + "TargetStructureID": 5530, + "Label": "82832-5530 via Unknown from 82833 -> 79157", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82833, + "TargetID": 79157, + "Directional": false + }] + }, { + "ID": 2786, + "SourceStructureID": 82834, + "TargetStructureID": 5530, + "Label": "82834-5530 via Unknown from 82835 -> 79270", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82835, + "TargetID": 79270, + "Directional": false + }] + }, { + "ID": 2787, + "SourceStructureID": 5530, + "TargetStructureID": 82848, + "Label": "5530-82848 via Unknown from 80404 -> 82849", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80404, + "TargetID": 82849, + "Directional": false + }] + }, { + "ID": 2788, + "SourceStructureID": 82858, + "TargetStructureID": 5530, + "Label": "82858-5530 via Unknown from 82859 -> 80708", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82859, + "TargetID": 80708, + "Directional": false + }] + }, { + "ID": 2789, + "SourceStructureID": 5530, + "TargetStructureID": 82887, + "Label": "5530-82887 via Unknown from 81186 -> 82888", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81186, + "TargetID": 82888, + "Directional": false + }] + }, { + "ID": 2790, + "SourceStructureID": 82889, + "TargetStructureID": 5530, + "Label": "82889-5530 via Unknown from 82892 -> 81209", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82892, + "TargetID": 81209, + "Directional": false + }] + }, { + "ID": 2791, + "SourceStructureID": 5530, + "TargetStructureID": 82894, + "Label": "5530-82894 via Unknown from 81210 -> 82895", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81210, + "TargetID": 82895, + "Directional": false + }] + }, { + "ID": 2792, + "SourceStructureID": 5530, + "TargetStructureID": 82897, + "Label": "5530-82897 via Unknown from 81217 -> 82898", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81217, + "TargetID": 82898, + "Directional": false + }] + }, { + "ID": 2793, + "SourceStructureID": 82901, + "TargetStructureID": 5530, + "Label": "82901-5530 via Unknown from 82902 -> 81626", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82902, + "TargetID": 81626, + "Directional": false + }] + }, { + "ID": 2794, + "SourceStructureID": 82995, + "TargetStructureID": 5530, + "Label": "82995-5530 via Unknown from 82996 -> 81871", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82996, + "TargetID": 81871, + "Directional": false + }] + }, { + "ID": 2795, + "SourceStructureID": 5530, + "TargetStructureID": 82997, + "Label": "5530-82997 via Unknown from 81879 -> 82998", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81879, + "TargetID": 82998, + "Directional": false + }] + }, { + "ID": 2796, + "SourceStructureID": 5530, + "TargetStructureID": 82999, + "Label": "5530-82999 via Unknown from 81880 -> 83000", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81880, + "TargetID": 83000, + "Directional": false + }] + }, { + "ID": 2797, + "SourceStructureID": 83045, + "TargetStructureID": 5530, + "Label": "83045-5530 via Unknown from 83046 -> 81203", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83046, + "TargetID": 81203, + "Directional": false + }] + }, { + "ID": 2798, + "SourceStructureID": 5531, + "TargetStructureID": 5531, + "Label": "5531-5531 via Adherens from 54538 -> 54539, 147464 -> 147465", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54538, + "TargetID": 54539, + "Directional": false + }, { + "SourceID": 147464, + "TargetID": 147465, + "Directional": false + }] + }, { + "ID": 2799, + "SourceStructureID": 5531, + "TargetStructureID": 5535, + "Label": "5531-5535 via Gap Junction from 107705 -> 32352", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 107705, + "TargetID": 32352, + "Directional": false + }] + }, { + "ID": 2800, + "SourceStructureID": 5601, + "TargetStructureID": 5531, + "Label": "5601-5531 via Adherens from 127133 -> 127134", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127133, + "TargetID": 127134, + "Directional": false + }] + }, { + "ID": 2801, + "SourceStructureID": 5531, + "TargetStructureID": 5637, + "Label": "5531-5637 via Adherens from 147446 -> 147445", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147446, + "TargetID": 147445, + "Directional": false + }] + }, { + "ID": 2802, + "SourceStructureID": 5637, + "TargetStructureID": 5531, + "Label": "5637-5531 via Gap Junction from 59571 -> 59570", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59571, + "TargetID": 59570, + "Directional": false + }] + }, { + "ID": 2803, + "SourceStructureID": 5531, + "TargetStructureID": 7274, + "Label": "5531-7274 via Unknown from 107200 -> 107202", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107200, + "TargetID": 107202, + "Directional": false + }] + }, { + "ID": 2804, + "SourceStructureID": 7576, + "TargetStructureID": 5531, + "Label": "7576-5531 via Adherens from 133920 -> 133919, 147459 -> 55055", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133920, + "TargetID": 133919, + "Directional": false + }, { + "SourceID": 147459, + "TargetID": 55055, + "Directional": false + }] + }, { + "ID": 2805, + "SourceStructureID": 7576, + "TargetStructureID": 5531, + "Label": "7576-5531 via Gap Junction from 54807 -> 54732, 54880 -> 54876, 55050 -> 55049, 133917 -> 133918", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54807, + "TargetID": 54732, + "Directional": false + }, { + "SourceID": 54880, + "TargetID": 54876, + "Directional": false + }, { + "SourceID": 55050, + "TargetID": 55049, + "Directional": false + }, { + "SourceID": 133917, + "TargetID": 133918, + "Directional": false + }] + }, { + "ID": 2806, + "SourceStructureID": 5531, + "TargetStructureID": 32405, + "Label": "5531-32405 via Adherens from 147430 -> 147431", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147430, + "TargetID": 147431, + "Directional": false + }] + }, { + "ID": 2807, + "SourceStructureID": 32405, + "TargetStructureID": 5531, + "Label": "32405-5531 via Gap Junction from 91880 -> 91879", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91880, + "TargetID": 91879, + "Directional": false + }] + }, { + "ID": 2808, + "SourceStructureID": 56802, + "TargetStructureID": 5531, + "Label": "56802-5531 via Adherens from 106900 -> 106901, 147439 -> 147440, 147442 -> 147441", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106900, + "TargetID": 106901, + "Directional": false + }, { + "SourceID": 147439, + "TargetID": 147440, + "Directional": false + }, { + "SourceID": 147442, + "TargetID": 147441, + "Directional": false + }] + }, { + "ID": 2809, + "SourceStructureID": 5531, + "TargetStructureID": 56802, + "Label": "5531-56802 via Gap Junction from 54578 -> 107416, 107425 -> 54579", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54578, + "TargetID": 107416, + "Directional": false + }, { + "SourceID": 107425, + "TargetID": 54579, + "Directional": false + }] + }, { + "ID": 2810, + "SourceStructureID": 56802, + "TargetStructureID": 5531, + "Label": "56802-5531 via Unknown from 119620 -> 119619", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 119620, + "TargetID": 119619, + "Directional": false + }] + }, { + "ID": 2811, + "SourceStructureID": 5531, + "TargetStructureID": 82897, + "Label": "5531-82897 via Adherens from 114827 -> 114826", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 114827, + "TargetID": 114826, + "Directional": false + }] + }, { + "ID": 2812, + "SourceStructureID": 91913, + "TargetStructureID": 5531, + "Label": "91913-5531 via Adherens from 147452 -> 147453", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147452, + "TargetID": 147453, + "Directional": false + }] + }, { + "ID": 2813, + "SourceStructureID": 91913, + "TargetStructureID": 5531, + "Label": "91913-5531 via Gap Junction from 93447 -> 91912", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93447, + "TargetID": 91912, + "Directional": false + }] + }, { + "ID": 2814, + "SourceStructureID": 91918, + "TargetStructureID": 5531, + "Label": "91918-5531 via Unknown from 107578 -> 107577", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107578, + "TargetID": 107577, + "Directional": false + }] + }, { + "ID": 2815, + "SourceStructureID": 5531, + "TargetStructureID": 91921, + "Label": "5531-91921 via Adherens from 107549 -> 107548", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107549, + "TargetID": 107548, + "Directional": false + }] + }, { + "ID": 2816, + "SourceStructureID": 5531, + "TargetStructureID": 91959, + "Label": "5531-91959 via Adherens from 106146 -> 106145, 106147 -> 106148", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106146, + "TargetID": 106145, + "Directional": false + }, { + "SourceID": 106147, + "TargetID": 106148, + "Directional": false + }] + }, { + "ID": 2817, + "SourceStructureID": 5531, + "TargetStructureID": 91959, + "Label": "5531-91959 via Unknown from 128710 -> 128711, 147448 -> 147449", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128710, + "TargetID": 128711, + "Directional": false + }, { + "SourceID": 147448, + "TargetID": 147449, + "Directional": false + }] + }, { + "ID": 2818, + "SourceStructureID": 5531, + "TargetStructureID": 91994, + "Label": "5531-91994 via Unknown from 147435 -> 147436", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147435, + "TargetID": 147436, + "Directional": false + }] + }, { + "ID": 2819, + "SourceStructureID": 93431, + "TargetStructureID": 5531, + "Label": "93431-5531 via Unknown from 147458 -> 147457", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147458, + "TargetID": 147457, + "Directional": false + }] + }, { + "ID": 2820, + "SourceStructureID": 93437, + "TargetStructureID": 5531, + "Label": "93437-5531 via Adherens from 93438 -> 93436", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93438, + "TargetID": 93436, + "Directional": false + }] + }, { + "ID": 2821, + "SourceStructureID": 95195, + "TargetStructureID": 5531, + "Label": "95195-5531 via Unknown from 114552 -> 114551", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114552, + "TargetID": 114551, + "Directional": false + }] + }, { + "ID": 2822, + "SourceStructureID": 96240, + "TargetStructureID": 5531, + "Label": "96240-5531 via Unknown from 114555 -> 114554", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114555, + "TargetID": 114554, + "Directional": false + }] + }, { + "ID": 2823, + "SourceStructureID": 5531, + "TargetStructureID": 96290, + "Label": "5531-96290 via Unknown from 147410 -> 147409", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147410, + "TargetID": 147409, + "Directional": false + }] + }, { + "ID": 2824, + "SourceStructureID": 96895, + "TargetStructureID": 5531, + "Label": "96895-5531 via Adherens from 147422 -> 147421", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147422, + "TargetID": 147421, + "Directional": false + }] + }, { + "ID": 2825, + "SourceStructureID": 5531, + "TargetStructureID": 96914, + "Label": "5531-96914 via Unknown from 133904 -> 107165", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133904, + "TargetID": 107165, + "Directional": false + }] + }, { + "ID": 2826, + "SourceStructureID": 5531, + "TargetStructureID": 105258, + "Label": "5531-105258 via Unknown from 105261 -> 105260", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105261, + "TargetID": 105260, + "Directional": false + }] + }, { + "ID": 2827, + "SourceStructureID": 106161, + "TargetStructureID": 5531, + "Label": "106161-5531 via Postsynapse from 106162 -> 106163", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 106162, + "TargetID": 106163, + "Directional": false + }] + }, { + "ID": 2828, + "SourceStructureID": 106164, + "TargetStructureID": 5531, + "Label": "106164-5531 via Adherens from 106188 -> 106187", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106188, + "TargetID": 106187, + "Directional": false + }] + }, { + "ID": 2829, + "SourceStructureID": 5531, + "TargetStructureID": 106172, + "Label": "5531-106172 via Unknown from 106173 -> 106174", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106173, + "TargetID": 106174, + "Directional": false + }] + }, { + "ID": 2830, + "SourceStructureID": 106237, + "TargetStructureID": 5531, + "Label": "106237-5531 via Adherens from 147387 -> 147386", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147387, + "TargetID": 147386, + "Directional": false + }] + }, { + "ID": 2831, + "SourceStructureID": 5531, + "TargetStructureID": 106237, + "Label": "5531-106237 via Unknown from 147389 -> 147388", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147389, + "TargetID": 147388, + "Directional": false + }] + }, { + "ID": 2832, + "SourceStructureID": 5531, + "TargetStructureID": 106249, + "Label": "5531-106249 via Unknown from 147393 -> 147394", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147393, + "TargetID": 147394, + "Directional": false + }] + }, { + "ID": 2833, + "SourceStructureID": 106502, + "TargetStructureID": 5531, + "Label": "106502-5531 via Adherens from 106504 -> 106503", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106504, + "TargetID": 106503, + "Directional": false + }] + }, { + "ID": 2834, + "SourceStructureID": 106588, + "TargetStructureID": 5531, + "Label": "106588-5531 via Unknown from 147395 -> 147396", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147395, + "TargetID": 147396, + "Directional": false + }] + }, { + "ID": 2835, + "SourceStructureID": 5531, + "TargetStructureID": 106651, + "Label": "5531-106651 via Unknown from 125868 -> 125869", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125868, + "TargetID": 125869, + "Directional": false + }] + }, { + "ID": 2836, + "SourceStructureID": 5531, + "TargetStructureID": 106715, + "Label": "5531-106715 via Unknown from 106728 -> 106729, 106735 -> 106734", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106728, + "TargetID": 106729, + "Directional": false + }, { + "SourceID": 106735, + "TargetID": 106734, + "Directional": false + }] + }, { + "ID": 2837, + "SourceStructureID": 5531, + "TargetStructureID": 106922, + "Label": "5531-106922 via Unknown from 106948 -> 106947", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106948, + "TargetID": 106947, + "Directional": false + }] + }, { + "ID": 2838, + "SourceStructureID": 106931, + "TargetStructureID": 5531, + "Label": "106931-5531 via Unknown from 106933 -> 106932", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106933, + "TargetID": 106932, + "Directional": false + }] + }, { + "ID": 2839, + "SourceStructureID": 106935, + "TargetStructureID": 5531, + "Label": "106935-5531 via Unknown from 106938 -> 106939", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106938, + "TargetID": 106939, + "Directional": false + }] + }, { + "ID": 2840, + "SourceStructureID": 5531, + "TargetStructureID": 107388, + "Label": "5531-107388 via Gap Junction from 107389 -> 107390", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 107389, + "TargetID": 107390, + "Directional": false + }] + }, { + "ID": 2841, + "SourceStructureID": 5531, + "TargetStructureID": 107391, + "Label": "5531-107391 via Unknown from 107392 -> 107394", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107392, + "TargetID": 107394, + "Directional": false + }] + }, { + "ID": 2842, + "SourceStructureID": 107420, + "TargetStructureID": 5531, + "Label": "107420-5531 via Adherens from 107421 -> 107422", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107421, + "TargetID": 107422, + "Directional": false + }] + }, { + "ID": 2843, + "SourceStructureID": 107438, + "TargetStructureID": 5531, + "Label": "107438-5531 via Unknown from 107441 -> 107440", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107441, + "TargetID": 107440, + "Directional": false + }] + }, { + "ID": 2844, + "SourceStructureID": 107570, + "TargetStructureID": 5531, + "Label": "107570-5531 via Unknown from 107572 -> 107571", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107572, + "TargetID": 107571, + "Directional": false + }] + }, { + "ID": 2845, + "SourceStructureID": 5531, + "TargetStructureID": 107582, + "Label": "5531-107582 via Unknown from 107586 -> 107585", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107586, + "TargetID": 107585, + "Directional": false + }] + }, { + "ID": 2846, + "SourceStructureID": 107587, + "TargetStructureID": 5531, + "Label": "107587-5531 via Unknown from 107590 -> 107589", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107590, + "TargetID": 107589, + "Directional": false + }] + }, { + "ID": 2847, + "SourceStructureID": 5531, + "TargetStructureID": 107672, + "Label": "5531-107672 via Unknown from 107673 -> 107674", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107673, + "TargetID": 107674, + "Directional": false + }] + }, { + "ID": 2848, + "SourceStructureID": 5531, + "TargetStructureID": 107683, + "Label": "5531-107683 via Unknown from 107685 -> 107684", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107685, + "TargetID": 107684, + "Directional": false + }] + }, { + "ID": 2849, + "SourceStructureID": 107693, + "TargetStructureID": 5531, + "Label": "107693-5531 via Unknown from 147420 -> 147419", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147420, + "TargetID": 147419, + "Directional": false + }] + }, { + "ID": 2850, + "SourceStructureID": 107699, + "TargetStructureID": 5531, + "Label": "107699-5531 via Adherens from 107702 -> 107701", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107702, + "TargetID": 107701, + "Directional": false + }] + }, { + "ID": 2851, + "SourceStructureID": 5531, + "TargetStructureID": 107699, + "Label": "5531-107699 via Unknown from 107703 -> 107704", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107703, + "TargetID": 107704, + "Directional": false + }] + }, { + "ID": 2852, + "SourceStructureID": 5531, + "TargetStructureID": 108045, + "Label": "5531-108045 via Unknown from 108058 -> 108055", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108058, + "TargetID": 108055, + "Directional": false + }] + }, { + "ID": 2853, + "SourceStructureID": 110648, + "TargetStructureID": 5531, + "Label": "110648-5531 via Unknown from 110655 -> 110656", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110655, + "TargetID": 110656, + "Directional": false + }] + }, { + "ID": 2854, + "SourceStructureID": 110649, + "TargetStructureID": 5531, + "Label": "110649-5531 via Unknown from 110651 -> 110650", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110651, + "TargetID": 110650, + "Directional": false + }] + }, { + "ID": 2855, + "SourceStructureID": 110671, + "TargetStructureID": 5531, + "Label": "110671-5531 via Unknown from 110673 -> 110672", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110673, + "TargetID": 110672, + "Directional": false + }] + }, { + "ID": 2856, + "SourceStructureID": 110676, + "TargetStructureID": 5531, + "Label": "110676-5531 via Unknown from 110677 -> 110678", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110677, + "TargetID": 110678, + "Directional": false + }] + }, { + "ID": 2857, + "SourceStructureID": 5531, + "TargetStructureID": 110691, + "Label": "5531-110691 via Unknown from 110692 -> 110693", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110692, + "TargetID": 110693, + "Directional": false + }] + }, { + "ID": 2858, + "SourceStructureID": 110694, + "TargetStructureID": 5531, + "Label": "110694-5531 via Unknown from 110695 -> 110696", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110695, + "TargetID": 110696, + "Directional": false + }] + }, { + "ID": 2859, + "SourceStructureID": 110697, + "TargetStructureID": 5531, + "Label": "110697-5531 via Unknown from 110698 -> 110699", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110698, + "TargetID": 110699, + "Directional": false + }] + }, { + "ID": 2860, + "SourceStructureID": 5531, + "TargetStructureID": 110700, + "Label": "5531-110700 via Unknown from 110702 -> 110701", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110702, + "TargetID": 110701, + "Directional": false + }] + }, { + "ID": 2861, + "SourceStructureID": 110707, + "TargetStructureID": 5531, + "Label": "110707-5531 via Unknown from 110713 -> 110712", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110713, + "TargetID": 110712, + "Directional": false + }] + }, { + "ID": 2862, + "SourceStructureID": 5531, + "TargetStructureID": 110714, + "Label": "5531-110714 via Unknown from 110719 -> 110718", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110719, + "TargetID": 110718, + "Directional": false + }] + }, { + "ID": 2863, + "SourceStructureID": 5531, + "TargetStructureID": 110715, + "Label": "5531-110715 via Unknown from 110717 -> 110716", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110717, + "TargetID": 110716, + "Directional": false + }] + }, { + "ID": 2864, + "SourceStructureID": 5531, + "TargetStructureID": 111842, + "Label": "5531-111842 via Unknown from 111844 -> 111845", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111844, + "TargetID": 111845, + "Directional": false + }] + }, { + "ID": 2865, + "SourceStructureID": 5531, + "TargetStructureID": 111860, + "Label": "5531-111860 via Unknown from 111861 -> 111862", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111861, + "TargetID": 111862, + "Directional": false + }] + }, { + "ID": 2866, + "SourceStructureID": 5531, + "TargetStructureID": 113841, + "Label": "5531-113841 via Unknown from 113840 -> 113842", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113840, + "TargetID": 113842, + "Directional": false + }] + }, { + "ID": 2867, + "SourceStructureID": 114547, + "TargetStructureID": 5531, + "Label": "114547-5531 via Unknown from 114548 -> 114546", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114548, + "TargetID": 114546, + "Directional": false + }] + }, { + "ID": 2868, + "SourceStructureID": 5531, + "TargetStructureID": 114692, + "Label": "5531-114692 via Unknown from 114694 -> 114693", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114694, + "TargetID": 114693, + "Directional": false + }] + }, { + "ID": 2869, + "SourceStructureID": 5531, + "TargetStructureID": 114713, + "Label": "5531-114713 via Unknown from 114714 -> 114715, 114716 -> 114717", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114714, + "TargetID": 114715, + "Directional": false + }, { + "SourceID": 114716, + "TargetID": 114717, + "Directional": false + }] + }, { + "ID": 2870, + "SourceStructureID": 5531, + "TargetStructureID": 114734, + "Label": "5531-114734 via Unknown from 147428 -> 147427", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147428, + "TargetID": 147427, + "Directional": false + }] + }, { + "ID": 2871, + "SourceStructureID": 5531, + "TargetStructureID": 114741, + "Label": "5531-114741 via Unknown from 114742 -> 114743", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114742, + "TargetID": 114743, + "Directional": false + }] + }, { + "ID": 2872, + "SourceStructureID": 5531, + "TargetStructureID": 114760, + "Label": "5531-114760 via Unknown from 114759 -> 114762", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114759, + "TargetID": 114762, + "Directional": false + }] + }, { + "ID": 2873, + "SourceStructureID": 120256, + "TargetStructureID": 5531, + "Label": "120256-5531 via Unknown from 133911 -> 107203", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133911, + "TargetID": 107203, + "Directional": false + }] + }, { + "ID": 2874, + "SourceStructureID": 5531, + "TargetStructureID": 133891, + "Label": "5531-133891 via Unknown from 147433 -> 147434", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147433, + "TargetID": 147434, + "Directional": false + }] + }, { + "ID": 2875, + "SourceStructureID": 5531, + "TargetStructureID": 147412, + "Label": "5531-147412 via Unknown from 147411 -> 147418, 147415 -> 147416", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147411, + "TargetID": 147418, + "Directional": false + }, { + "SourceID": 147415, + "TargetID": 147416, + "Directional": false + }] + }, { + "ID": 2876, + "SourceStructureID": 5535, + "TargetStructureID": 5534, + "Label": "5535-5534 via Gap Junction from 55255 -> 55254", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55255, + "TargetID": 55254, + "Directional": false + }] + }, { + "ID": 2877, + "SourceStructureID": 5534, + "TargetStructureID": 5537, + "Label": "5534-5537 via Adherens from 118319 -> 118318", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 118319, + "TargetID": 118318, + "Directional": false + }] + }, { + "ID": 2878, + "SourceStructureID": 5534, + "TargetStructureID": 5537, + "Label": "5534-5537 via Gap Junction from 117971 -> 117970, 117973 -> 117972, 118273 -> 118272, 118321 -> 118320, 118326 -> 118325, 118331 -> 118330, 118333 -> 118332", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117971, + "TargetID": 117970, + "Directional": false + }, { + "SourceID": 117973, + "TargetID": 117972, + "Directional": false + }, { + "SourceID": 118273, + "TargetID": 118272, + "Directional": false + }, { + "SourceID": 118321, + "TargetID": 118320, + "Directional": false + }, { + "SourceID": 118326, + "TargetID": 118325, + "Directional": false + }, { + "SourceID": 118331, + "TargetID": 118330, + "Directional": false + }, { + "SourceID": 118333, + "TargetID": 118332, + "Directional": false + }] + }, { + "ID": 2879, + "SourceStructureID": 5601, + "TargetStructureID": 5534, + "Label": "5601-5534 via Adherens from 92992 -> 92991", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92992, + "TargetID": 92991, + "Directional": false + }] + }, { + "ID": 2880, + "SourceStructureID": 5601, + "TargetStructureID": 5534, + "Label": "5601-5534 via Gap Junction from 57499 -> 54623, 58586 -> 54680", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57499, + "TargetID": 54623, + "Directional": false + }, { + "SourceID": 58586, + "TargetID": 54680, + "Directional": false + }] + }, { + "ID": 2881, + "SourceStructureID": 5606, + "TargetStructureID": 5534, + "Label": "5606-5534 via Gap Junction from 36932 -> 34674, 56519 -> 38945, 118347 -> 118346, 118349 -> 118348", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 36932, + "TargetID": 34674, + "Directional": false + }, { + "SourceID": 56519, + "TargetID": 38945, + "Directional": false + }, { + "SourceID": 118347, + "TargetID": 118346, + "Directional": false + }, { + "SourceID": 118349, + "TargetID": 118348, + "Directional": false + }] + }, { + "ID": 2882, + "SourceStructureID": 6127, + "TargetStructureID": 5534, + "Label": "6127-5534 via Gap Junction from 118297 -> 118296, 122616 -> 122615", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118297, + "TargetID": 118296, + "Directional": false + }, { + "SourceID": 122616, + "TargetID": 122615, + "Directional": false + }] + }, { + "ID": 2883, + "SourceStructureID": 7225, + "TargetStructureID": 5534, + "Label": "7225-5534 via Gap Junction from 118276 -> 118277, 118285 -> 118284", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118276, + "TargetID": 118277, + "Directional": false + }, { + "SourceID": 118285, + "TargetID": 118284, + "Directional": false + }] + }, { + "ID": 2884, + "SourceStructureID": 5534, + "TargetStructureID": 7279, + "Label": "5534-7279 via Gap Junction from 34673 -> 34739", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 34673, + "TargetID": 34739, + "Directional": false + }] + }, { + "ID": 2885, + "SourceStructureID": 5534, + "TargetStructureID": 11229, + "Label": "5534-11229 via Gap Junction from 118323 -> 118324", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118323, + "TargetID": 118324, + "Directional": false + }] + }, { + "ID": 2886, + "SourceStructureID": 5534, + "TargetStructureID": 25155, + "Label": "5534-25155 via Gap Junction from 34643 -> 34642, 118278 -> 118279, 118282 -> 118280", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 34643, + "TargetID": 34642, + "Directional": false + }, { + "SourceID": 118278, + "TargetID": 118279, + "Directional": false + }, { + "SourceID": 118282, + "TargetID": 118280, + "Directional": false + }] + }, { + "ID": 2887, + "SourceStructureID": 44256, + "TargetStructureID": 5534, + "Label": "44256-5534 via Gap Junction from 118337 -> 118336, 118338 -> 118339, 118340 -> 118341, 123115 -> 123116", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118337, + "TargetID": 118336, + "Directional": false + }, { + "SourceID": 118338, + "TargetID": 118339, + "Directional": false + }, { + "SourceID": 118340, + "TargetID": 118341, + "Directional": false + }, { + "SourceID": 123115, + "TargetID": 123116, + "Directional": false + }] + }, { + "ID": 2888, + "SourceStructureID": 53828, + "TargetStructureID": 5534, + "Label": "53828-5534 via Gap Junction from 118345 -> 118344", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118345, + "TargetID": 118344, + "Directional": false + }] + }, { + "ID": 2889, + "SourceStructureID": 77625, + "TargetStructureID": 5534, + "Label": "77625-5534 via Adherens from 135572 -> 135571", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135572, + "TargetID": 135571, + "Directional": false + }] + }, { + "ID": 2890, + "SourceStructureID": 5534, + "TargetStructureID": 118301, + "Label": "5534-118301 via Gap Junction from 118299 -> 118305, 118304 -> 118300", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118299, + "TargetID": 118305, + "Directional": false + }, { + "SourceID": 118304, + "TargetID": 118300, + "Directional": false + }] + }, { + "ID": 2891, + "SourceStructureID": 5535, + "TargetStructureID": 5537, + "Label": "5535-5537 via Gap Junction from 38183 -> 38184, 59580 -> 59575, 82497 -> 82498, 118269 -> 118268, 122946 -> 122947, 122959 -> 122960, 122985 -> 122986, 122988 -> 122987", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38183, + "TargetID": 38184, + "Directional": false + }, { + "SourceID": 59580, + "TargetID": 59575, + "Directional": false + }, { + "SourceID": 82497, + "TargetID": 82498, + "Directional": false + }, { + "SourceID": 118269, + "TargetID": 118268, + "Directional": false + }, { + "SourceID": 122946, + "TargetID": 122947, + "Directional": false + }, { + "SourceID": 122959, + "TargetID": 122960, + "Directional": false + }, { + "SourceID": 122985, + "TargetID": 122986, + "Directional": false + }, { + "SourceID": 122988, + "TargetID": 122987, + "Directional": false + }] + }, { + "ID": 2892, + "SourceStructureID": 5535, + "TargetStructureID": 5608, + "Label": "5535-5608 via Gap Junction from 121845 -> 121844", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121845, + "TargetID": 121844, + "Directional": false + }] + }, { + "ID": 2893, + "SourceStructureID": 5637, + "TargetStructureID": 5535, + "Label": "5637-5535 via Gap Junction from 56006 -> 59574", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56006, + "TargetID": 59574, + "Directional": false + }] + }, { + "ID": 2894, + "SourceStructureID": 5535, + "TargetStructureID": 6909, + "Label": "5535-6909 via Gap Junction from 122689 -> 122687, 122953 -> 122952", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122689, + "TargetID": 122687, + "Directional": false + }, { + "SourceID": 122953, + "TargetID": 122952, + "Directional": false + }] + }, { + "ID": 2895, + "SourceStructureID": 6964, + "TargetStructureID": 5535, + "Label": "6964-5535 via Gap Junction from 122951 -> 122950", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122951, + "TargetID": 122950, + "Directional": false + }] + }, { + "ID": 2896, + "SourceStructureID": 6965, + "TargetStructureID": 5535, + "Label": "6965-5535 via Gap Junction from 122998 -> 122982, 123004 -> 122992, 123006 -> 123007", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122998, + "TargetID": 122982, + "Directional": false + }, { + "SourceID": 123004, + "TargetID": 122992, + "Directional": false + }, { + "SourceID": 123006, + "TargetID": 123007, + "Directional": false + }] + }, { + "ID": 2897, + "SourceStructureID": 5535, + "TargetStructureID": 7225, + "Label": "5535-7225 via Gap Junction from 38440 -> 38441, 122980 -> 122981", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38440, + "TargetID": 38441, + "Directional": false + }, { + "SourceID": 122980, + "TargetID": 122981, + "Directional": false + }] + }, { + "ID": 2898, + "SourceStructureID": 7345, + "TargetStructureID": 5535, + "Label": "7345-5535 via Gap Junction from 47840 -> 122954", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47840, + "TargetID": 122954, + "Directional": false + }] + }, { + "ID": 2899, + "SourceStructureID": 5535, + "TargetStructureID": 11229, + "Label": "5535-11229 via Gap Junction from 32349 -> 28977", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 32349, + "TargetID": 28977, + "Directional": false + }] + }, { + "ID": 2900, + "SourceStructureID": 25155, + "TargetStructureID": 5535, + "Label": "25155-5535 via Gap Junction from 122983 -> 122984, 122990 -> 122991", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122983, + "TargetID": 122984, + "Directional": false + }, { + "SourceID": 122990, + "TargetID": 122991, + "Directional": false + }] + }, { + "ID": 2901, + "SourceStructureID": 5536, + "TargetStructureID": 5536, + "Label": "5536-5536 via Gap Junction from 121918 -> 121920", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121918, + "TargetID": 121920, + "Directional": false + }] + }, { + "ID": 2902, + "SourceStructureID": 7225, + "TargetStructureID": 5536, + "Label": "7225-5536 via Gap Junction from 158865 -> 122501", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 158865, + "TargetID": 122501, + "Directional": false + }] + }, { + "ID": 2903, + "SourceStructureID": 19571, + "TargetStructureID": 5536, + "Label": "19571-5536 via Adherens from 22710 -> 22703", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 22710, + "TargetID": 22703, + "Directional": false + }] + }, { + "ID": 2904, + "SourceStructureID": 121913, + "TargetStructureID": 5536, + "Label": "121913-5536 via Gap Junction from 121914 -> 116945", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121914, + "TargetID": 116945, + "Directional": false + }] + }, { + "ID": 2905, + "SourceStructureID": 121916, + "TargetStructureID": 5536, + "Label": "121916-5536 via Gap Junction from 121917 -> 121915", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121917, + "TargetID": 121915, + "Directional": false + }] + }, { + "ID": 2906, + "SourceStructureID": 25155, + "TargetStructureID": 5537, + "Label": "25155-5537 via Adherens from 38194 -> 38193", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 38194, + "TargetID": 38193, + "Directional": false + }] + }, { + "ID": 2907, + "SourceStructureID": 25155, + "TargetStructureID": 5537, + "Label": "25155-5537 via Gap Junction from 38186 -> 38185, 38191 -> 38192, 38196 -> 38197", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38186, + "TargetID": 38185, + "Directional": false + }, { + "SourceID": 38191, + "TargetID": 38192, + "Directional": false + }, { + "SourceID": 38196, + "TargetID": 38197, + "Directional": false + }] + }, { + "ID": 2908, + "SourceStructureID": 5537, + "TargetStructureID": 44256, + "Label": "5537-44256 via Gap Junction from 120584 -> 44264", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120584, + "TargetID": 44264, + "Directional": false + }] + }, { + "ID": 2909, + "SourceStructureID": 7564, + "TargetStructureID": 5541, + "Label": "7564-5541 via Gap Junction from 118940 -> 118939, 118942 -> 118941", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118940, + "TargetID": 118939, + "Directional": false + }, { + "SourceID": 118942, + "TargetID": 118941, + "Directional": false + }] + }, { + "ID": 2910, + "SourceStructureID": 19383, + "TargetStructureID": 5541, + "Label": "19383-5541 via Adherens from 38831 -> 38830", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 38831, + "TargetID": 38830, + "Directional": false + }] + }, { + "ID": 2911, + "SourceStructureID": 130365, + "TargetStructureID": 5542, + "Label": "130365-5542 via Adherens from 130366 -> 130364", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130366, + "TargetID": 130364, + "Directional": false + }] + }, { + "ID": 2912, + "SourceStructureID": 11092, + "TargetStructureID": 5543, + "Label": "11092-5543 via Gap Junction from 129520 -> 123343, 136324 -> 136323", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 129520, + "TargetID": 123343, + "Directional": false + }, { + "SourceID": 136324, + "TargetID": 136323, + "Directional": false + }] + }, { + "ID": 2913, + "SourceStructureID": 5544, + "TargetStructureID": 7564, + "Label": "5544-7564 via Unknown from 123788 -> 123787", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 123788, + "TargetID": 123787, + "Directional": false + }] + }, { + "ID": 2914, + "SourceStructureID": 13525, + "TargetStructureID": 5544, + "Label": "13525-5544 via Unknown from 158493 -> 158492", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 158493, + "TargetID": 158492, + "Directional": false + }] + }, { + "ID": 2915, + "SourceStructureID": 5545, + "TargetStructureID": 10963, + "Label": "5545-10963 via Gap Junction from 158489 -> 158490", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 158489, + "TargetID": 158490, + "Directional": false + }] + }, { + "ID": 2916, + "SourceStructureID": 5551, + "TargetStructureID": 5636, + "Label": "5551-5636 via Gap Junction from 116934 -> 116935", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116934, + "TargetID": 116935, + "Directional": false + }] + }, { + "ID": 2917, + "SourceStructureID": 5551, + "TargetStructureID": 7279, + "Label": "5551-7279 via Cistern Pre from 116917 -> 116918", + "Type": "Cistern Pre", + "Directional": false, + "Links": [{ + "SourceID": 116917, + "TargetID": 116918, + "Directional": false + }] + }, { + "ID": 2918, + "SourceStructureID": 5556, + "TargetStructureID": 34888, + "Label": "5556-34888 via Touch from 34891 -> 34890", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 34891, + "TargetID": 34890, + "Directional": false + }] + }, { + "ID": 2919, + "SourceStructureID": 5561, + "TargetStructureID": 5561, + "Label": "5561-5561 via Gap Junction from 148189 -> 148190", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 148189, + "TargetID": 148190, + "Directional": false + }] + }, { + "ID": 2920, + "SourceStructureID": 5562, + "TargetStructureID": 5561, + "Label": "5562-5561 via Touch from 148272 -> 148273", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 148272, + "TargetID": 148273, + "Directional": false + }] + }, { + "ID": 2921, + "SourceStructureID": 5565, + "TargetStructureID": 5561, + "Label": "5565-5561 via Adherens from 148158 -> 148159", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148158, + "TargetID": 148159, + "Directional": false + }] + }, { + "ID": 2922, + "SourceStructureID": 5565, + "TargetStructureID": 5561, + "Label": "5565-5561 via Gap Junction from 50283 -> 50282, 54005 -> 54004, 97426 -> 97424, 97430 -> 97429, 97442 -> 97441, 119256 -> 119255, 148188 -> 148187, 148202 -> 148203, 148267 -> 148268", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50283, + "TargetID": 50282, + "Directional": false + }, { + "SourceID": 54005, + "TargetID": 54004, + "Directional": false + }, { + "SourceID": 97426, + "TargetID": 97424, + "Directional": false + }, { + "SourceID": 97430, + "TargetID": 97429, + "Directional": false + }, { + "SourceID": 97442, + "TargetID": 97441, + "Directional": false + }, { + "SourceID": 119256, + "TargetID": 119255, + "Directional": false + }, { + "SourceID": 148188, + "TargetID": 148187, + "Directional": false + }, { + "SourceID": 148202, + "TargetID": 148203, + "Directional": false + }, { + "SourceID": 148267, + "TargetID": 148268, + "Directional": false + }] + }, { + "ID": 2923, + "SourceStructureID": 5568, + "TargetStructureID": 5561, + "Label": "5568-5561 via Gap Junction from 96753 -> 96752, 121247 -> 121246", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96753, + "TargetID": 96752, + "Directional": false + }, { + "SourceID": 121247, + "TargetID": 121246, + "Directional": false + }] + }, { + "ID": 2924, + "SourceStructureID": 5561, + "TargetStructureID": 6117, + "Label": "5561-6117 via Touch from 147482 -> 147483", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 147482, + "TargetID": 147483, + "Directional": false + }] + }, { + "ID": 2925, + "SourceStructureID": 7024, + "TargetStructureID": 5561, + "Label": "7024-5561 via Adherens from 114366 -> 114367", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 114366, + "TargetID": 114367, + "Directional": false + }] + }, { + "ID": 2926, + "SourceStructureID": 7024, + "TargetStructureID": 5561, + "Label": "7024-5561 via Gap Junction from 45178 -> 45177, 93898 -> 93896", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45178, + "TargetID": 45177, + "Directional": false + }, { + "SourceID": 93898, + "TargetID": 93896, + "Directional": false + }] + }, { + "ID": 2927, + "SourceStructureID": 7024, + "TargetStructureID": 5561, + "Label": "7024-5561 via Touch from 148217 -> 148216", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 148217, + "TargetID": 148216, + "Directional": false + }] + }, { + "ID": 2928, + "SourceStructureID": 7050, + "TargetStructureID": 5561, + "Label": "7050-5561 via Adherens from 148261 -> 148260", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148261, + "TargetID": 148260, + "Directional": false + }] + }, { + "ID": 2929, + "SourceStructureID": 5561, + "TargetStructureID": 7050, + "Label": "5561-7050 via Gap Junction from 148262 -> 14313", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 148262, + "TargetID": 14313, + "Directional": false + }] + }, { + "ID": 2930, + "SourceStructureID": 8037, + "TargetStructureID": 5561, + "Label": "8037-5561 via Adherens from 148149 -> 148148", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148149, + "TargetID": 148148, + "Directional": false + }] + }, { + "ID": 2931, + "SourceStructureID": 8037, + "TargetStructureID": 5561, + "Label": "8037-5561 via Gap Junction from 29899 -> 29898, 48966 -> 48965, 49481 -> 49482, 148177 -> 148176", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29899, + "TargetID": 29898, + "Directional": false + }, { + "SourceID": 48966, + "TargetID": 48965, + "Directional": false + }, { + "SourceID": 49481, + "TargetID": 49482, + "Directional": false + }, { + "SourceID": 148177, + "TargetID": 148176, + "Directional": false + }] + }, { + "ID": 2932, + "SourceStructureID": 5561, + "TargetStructureID": 12897, + "Label": "5561-12897 via Gap Junction from 46185 -> 49636", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46185, + "TargetID": 49636, + "Directional": false + }] + }, { + "ID": 2933, + "SourceStructureID": 20136, + "TargetStructureID": 5561, + "Label": "20136-5561 via Adherens from 119291 -> 119290, 135794 -> 135793, 135801 -> 135802", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 119291, + "TargetID": 119290, + "Directional": false + }, { + "SourceID": 135794, + "TargetID": 135793, + "Directional": false + }, { + "SourceID": 135801, + "TargetID": 135802, + "Directional": false + }] + }, { + "ID": 2934, + "SourceStructureID": 5561, + "TargetStructureID": 20136, + "Label": "5561-20136 via Gap Junction from 46046 -> 29124, 96953 -> 96952, 97689 -> 97688, 115380 -> 115378, 119285 -> 119286", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46046, + "TargetID": 29124, + "Directional": false + }, { + "SourceID": 96953, + "TargetID": 96952, + "Directional": false + }, { + "SourceID": 97689, + "TargetID": 97688, + "Directional": false + }, { + "SourceID": 115380, + "TargetID": 115378, + "Directional": false + }, { + "SourceID": 119285, + "TargetID": 119286, + "Directional": false + }] + }, { + "ID": 2935, + "SourceStructureID": 5561, + "TargetStructureID": 96855, + "Label": "5561-96855 via Adherens from 115215 -> 115216", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115215, + "TargetID": 115216, + "Directional": false + }] + }, { + "ID": 2936, + "SourceStructureID": 96964, + "TargetStructureID": 5561, + "Label": "96964-5561 via Adherens from 96966 -> 96963", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96966, + "TargetID": 96963, + "Directional": false + }] + }, { + "ID": 2937, + "SourceStructureID": 96976, + "TargetStructureID": 5561, + "Label": "96976-5561 via Adherens from 96979 -> 96978", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 96979, + "TargetID": 96978, + "Directional": false + }] + }, { + "ID": 2938, + "SourceStructureID": 96993, + "TargetStructureID": 5561, + "Label": "96993-5561 via Gap Junction from 96994 -> 96992", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96994, + "TargetID": 96992, + "Directional": false + }] + }, { + "ID": 2939, + "SourceStructureID": 5561, + "TargetStructureID": 97012, + "Label": "5561-97012 via Adherens from 97010 -> 97013", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97010, + "TargetID": 97013, + "Directional": false + }] + }, { + "ID": 2940, + "SourceStructureID": 97025, + "TargetStructureID": 5561, + "Label": "97025-5561 via Unknown from 97028 -> 97027", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97028, + "TargetID": 97027, + "Directional": false + }] + }, { + "ID": 2941, + "SourceStructureID": 97029, + "TargetStructureID": 5561, + "Label": "97029-5561 via Unknown from 97030 -> 97027", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97030, + "TargetID": 97027, + "Directional": false + }] + }, { + "ID": 2942, + "SourceStructureID": 97159, + "TargetStructureID": 5561, + "Label": "97159-5561 via Gap Junction from 97160 -> 97144", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 97160, + "TargetID": 97144, + "Directional": false + }] + }, { + "ID": 2943, + "SourceStructureID": 5561, + "TargetStructureID": 97308, + "Label": "5561-97308 via Unknown from 97320 -> 97319", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97320, + "TargetID": 97319, + "Directional": false + }] + }, { + "ID": 2944, + "SourceStructureID": 5561, + "TargetStructureID": 97352, + "Label": "5561-97352 via Gap Junction from 46120 -> 97353", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46120, + "TargetID": 97353, + "Directional": false + }] + }, { + "ID": 2945, + "SourceStructureID": 97407, + "TargetStructureID": 5561, + "Label": "97407-5561 via Adherens from 97412 -> 97410", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97412, + "TargetID": 97410, + "Directional": false + }] + }, { + "ID": 2946, + "SourceStructureID": 5561, + "TargetStructureID": 97457, + "Label": "5561-97457 via Unknown from 97460 -> 97459", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97460, + "TargetID": 97459, + "Directional": false + }] + }, { + "ID": 2947, + "SourceStructureID": 5561, + "TargetStructureID": 97486, + "Label": "5561-97486 via Adherens from 115209 -> 115210", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115209, + "TargetID": 115210, + "Directional": false + }] + }, { + "ID": 2948, + "SourceStructureID": 97657, + "TargetStructureID": 5561, + "Label": "97657-5561 via Unknown from 97658 -> 97656", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97658, + "TargetID": 97656, + "Directional": false + }] + }, { + "ID": 2949, + "SourceStructureID": 115206, + "TargetStructureID": 5561, + "Label": "115206-5561 via Unknown from 130130 -> 130129", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130130, + "TargetID": 130129, + "Directional": false + }] + }, { + "ID": 2950, + "SourceStructureID": 5562, + "TargetStructureID": 5562, + "Label": "5562-5562 via Gap Junction from 134645 -> 134644", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 134645, + "TargetID": 134644, + "Directional": false + }] + }, { + "ID": 2951, + "SourceStructureID": 5562, + "TargetStructureID": 5623, + "Label": "5562-5623 via Gap Junction from 48462 -> 40359, 63537 -> 63540", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48462, + "TargetID": 40359, + "Directional": false + }, { + "SourceID": 63537, + "TargetID": 63540, + "Directional": false + }] + }, { + "ID": 2952, + "SourceStructureID": 5649, + "TargetStructureID": 5562, + "Label": "5649-5562 via Adherens from 80301 -> 80302, 80337 -> 80336", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80301, + "TargetID": 80302, + "Directional": false + }, { + "SourceID": 80337, + "TargetID": 80336, + "Directional": false + }] + }, { + "ID": 2953, + "SourceStructureID": 5562, + "TargetStructureID": 5649, + "Label": "5562-5649 via Gap Junction from 63241 -> 63240, 100704 -> 100705", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63241, + "TargetID": 63240, + "Directional": false + }, { + "SourceID": 100704, + "TargetID": 100705, + "Directional": false + }] + }, { + "ID": 2954, + "SourceStructureID": 5916, + "TargetStructureID": 5562, + "Label": "5916-5562 via Gap Junction from 54190 -> 54188, 63136 -> 63137", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54190, + "TargetID": 54188, + "Directional": false + }, { + "SourceID": 63136, + "TargetID": 63137, + "Directional": false + }] + }, { + "ID": 2955, + "SourceStructureID": 5562, + "TargetStructureID": 6997, + "Label": "5562-6997 via Adherens from 135119 -> 135118", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135119, + "TargetID": 135118, + "Directional": false + }] + }, { + "ID": 2956, + "SourceStructureID": 6997, + "TargetStructureID": 5562, + "Label": "6997-5562 via Gap Junction from 63939 -> 48974, 99170 -> 99169", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63939, + "TargetID": 48974, + "Directional": false + }, { + "SourceID": 99170, + "TargetID": 99169, + "Directional": false + }] + }, { + "ID": 2957, + "SourceStructureID": 5562, + "TargetStructureID": 7050, + "Label": "5562-7050 via Gap Junction from 80243 -> 80242, 80257 -> 80258, 134641 -> 134640, 134653 -> 134652", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 80243, + "TargetID": 80242, + "Directional": false + }, { + "SourceID": 80257, + "TargetID": 80258, + "Directional": false + }, { + "SourceID": 134641, + "TargetID": 134640, + "Directional": false + }, { + "SourceID": 134653, + "TargetID": 134652, + "Directional": false + }] + }, { + "ID": 2958, + "SourceStructureID": 5562, + "TargetStructureID": 8037, + "Label": "5562-8037 via Adherens from 78642 -> 78643, 135126 -> 135125, 135141 -> 135140", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78642, + "TargetID": 78643, + "Directional": false + }, { + "SourceID": 135126, + "TargetID": 135125, + "Directional": false + }, { + "SourceID": 135141, + "TargetID": 135140, + "Directional": false + }] + }, { + "ID": 2959, + "SourceStructureID": 5562, + "TargetStructureID": 8037, + "Label": "5562-8037 via Gap Junction from 31056 -> 24601, 48941 -> 48940, 49538 -> 49007, 63670 -> 14326, 63864 -> 49104, 78640 -> 78641, 134466 -> 134465, 134498 -> 134499", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 31056, + "TargetID": 24601, + "Directional": false + }, { + "SourceID": 48941, + "TargetID": 48940, + "Directional": false + }, { + "SourceID": 49538, + "TargetID": 49007, + "Directional": false + }, { + "SourceID": 63670, + "TargetID": 14326, + "Directional": false + }, { + "SourceID": 63864, + "TargetID": 49104, + "Directional": false + }, { + "SourceID": 78640, + "TargetID": 78641, + "Directional": false + }, { + "SourceID": 134466, + "TargetID": 134465, + "Directional": false + }, { + "SourceID": 134498, + "TargetID": 134499, + "Directional": false + }] + }, { + "ID": 2960, + "SourceStructureID": 5562, + "TargetStructureID": 8576, + "Label": "5562-8576 via Unknown from 77752 -> 77753, 77902 -> 77903", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77752, + "TargetID": 77753, + "Directional": false + }, { + "SourceID": 77902, + "TargetID": 77903, + "Directional": false + }] + }, { + "ID": 2961, + "SourceStructureID": 5562, + "TargetStructureID": 11531, + "Label": "5562-11531 via Unknown from 78160 -> 78161", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78160, + "TargetID": 78161, + "Directional": false + }] + }, { + "ID": 2962, + "SourceStructureID": 5562, + "TargetStructureID": 12897, + "Label": "5562-12897 via Adherens from 135133 -> 135132", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135133, + "TargetID": 135132, + "Directional": false + }] + }, { + "ID": 2963, + "SourceStructureID": 12897, + "TargetStructureID": 5562, + "Label": "12897-5562 via Gap Junction from 24675 -> 47290, 25323 -> 25322, 63248 -> 63247", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24675, + "TargetID": 47290, + "Directional": false + }, { + "SourceID": 25323, + "TargetID": 25322, + "Directional": false + }, { + "SourceID": 63248, + "TargetID": 63247, + "Directional": false + }] + }, { + "ID": 2964, + "SourceStructureID": 5562, + "TargetStructureID": 31024, + "Label": "5562-31024 via Adherens from 76376 -> 76377, 76412 -> 76411, 78451 -> 78452", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76376, + "TargetID": 76377, + "Directional": false + }, { + "SourceID": 76412, + "TargetID": 76411, + "Directional": false + }, { + "SourceID": 78451, + "TargetID": 78452, + "Directional": false + }] + }, { + "ID": 2965, + "SourceStructureID": 31024, + "TargetStructureID": 5562, + "Label": "31024-5562 via Unknown from 77818 -> 77819, 78447 -> 78448", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77818, + "TargetID": 77819, + "Directional": false + }, { + "SourceID": 78447, + "TargetID": 78448, + "Directional": false + }] + }, { + "ID": 2966, + "SourceStructureID": 5562, + "TargetStructureID": 36516, + "Label": "5562-36516 via Unknown from 79663 -> 79664", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79663, + "TargetID": 79664, + "Directional": false + }] + }, { + "ID": 2967, + "SourceStructureID": 58696, + "TargetStructureID": 5562, + "Label": "58696-5562 via Unknown from 134484 -> 79215", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134484, + "TargetID": 79215, + "Directional": false + }] + }, { + "ID": 2968, + "SourceStructureID": 61816, + "TargetStructureID": 5562, + "Label": "61816-5562 via Adherens from 80726 -> 77195, 80728 -> 76441", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80726, + "TargetID": 77195, + "Directional": false + }, { + "SourceID": 80728, + "TargetID": 76441, + "Directional": false + }] + }, { + "ID": 2969, + "SourceStructureID": 5562, + "TargetStructureID": 61816, + "Label": "5562-61816 via Unknown from 80732 -> 80733", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80732, + "TargetID": 80733, + "Directional": false + }] + }, { + "ID": 2970, + "SourceStructureID": 63371, + "TargetStructureID": 5562, + "Label": "63371-5562 via Adherens from 63739 -> 63738, 63903 -> 63902", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63739, + "TargetID": 63738, + "Directional": false + }, { + "SourceID": 63903, + "TargetID": 63902, + "Directional": false + }] + }, { + "ID": 2971, + "SourceStructureID": 65369, + "TargetStructureID": 5562, + "Label": "65369-5562 via Unknown from 78914 -> 78915", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78914, + "TargetID": 78915, + "Directional": false + }] + }, { + "ID": 2972, + "SourceStructureID": 5562, + "TargetStructureID": 67269, + "Label": "5562-67269 via Adherens from 80289 -> 80288", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80289, + "TargetID": 80288, + "Directional": false + }] + }, { + "ID": 2973, + "SourceStructureID": 5562, + "TargetStructureID": 67269, + "Label": "5562-67269 via Unknown from 80277 -> 80278", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80277, + "TargetID": 80278, + "Directional": false + }] + }, { + "ID": 2974, + "SourceStructureID": 67469, + "TargetStructureID": 5562, + "Label": "67469-5562 via Unknown from 78795 -> 78794", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78795, + "TargetID": 78794, + "Directional": false + }] + }, { + "ID": 2975, + "SourceStructureID": 67705, + "TargetStructureID": 5562, + "Label": "67705-5562 via Adherens from 81797 -> 77558", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81797, + "TargetID": 77558, + "Directional": false + }] + }, { + "ID": 2976, + "SourceStructureID": 68188, + "TargetStructureID": 5562, + "Label": "68188-5562 via Adherens from 77585 -> 77586", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77585, + "TargetID": 77586, + "Directional": false + }] + }, { + "ID": 2977, + "SourceStructureID": 5562, + "TargetStructureID": 68188, + "Label": "5562-68188 via Unknown from 77587 -> 77588", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77587, + "TargetID": 77588, + "Directional": false + }] + }, { + "ID": 2978, + "SourceStructureID": 68480, + "TargetStructureID": 5562, + "Label": "68480-5562 via Adherens from 84036 -> 76685, 84047 -> 77155", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84036, + "TargetID": 76685, + "Directional": false + }, { + "SourceID": 84047, + "TargetID": 77155, + "Directional": false + }] + }, { + "ID": 2979, + "SourceStructureID": 68480, + "TargetStructureID": 5562, + "Label": "68480-5562 via Unknown from 84037 -> 76692, 116711 -> 76926, 134314 -> 76686", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84037, + "TargetID": 76692, + "Directional": false + }, { + "SourceID": 116711, + "TargetID": 76926, + "Directional": false + }, { + "SourceID": 134314, + "TargetID": 76686, + "Directional": false + }] + }, { + "ID": 2980, + "SourceStructureID": 69537, + "TargetStructureID": 5562, + "Label": "69537-5562 via Touch from 69617 -> 69618", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 69617, + "TargetID": 69618, + "Directional": false + }] + }, { + "ID": 2981, + "SourceStructureID": 76255, + "TargetStructureID": 5562, + "Label": "76255-5562 via Unknown from 135129 -> 135128", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135129, + "TargetID": 135128, + "Directional": false + }] + }, { + "ID": 2982, + "SourceStructureID": 76257, + "TargetStructureID": 5562, + "Label": "76257-5562 via Adherens from 76258 -> 76259", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76258, + "TargetID": 76259, + "Directional": false + }] + }, { + "ID": 2983, + "SourceStructureID": 5562, + "TargetStructureID": 76286, + "Label": "5562-76286 via Unknown from 76285 -> 76287", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76285, + "TargetID": 76287, + "Directional": false + }] + }, { + "ID": 2984, + "SourceStructureID": 76288, + "TargetStructureID": 5562, + "Label": "76288-5562 via Unknown from 76289 -> 76290", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76289, + "TargetID": 76290, + "Directional": false + }] + }, { + "ID": 2985, + "SourceStructureID": 76302, + "TargetStructureID": 5562, + "Label": "76302-5562 via Adherens from 76303 -> 76304", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76303, + "TargetID": 76304, + "Directional": false + }] + }, { + "ID": 2986, + "SourceStructureID": 76315, + "TargetStructureID": 5562, + "Label": "76315-5562 via Unknown from 76316 -> 76314", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76316, + "TargetID": 76314, + "Directional": false + }] + }, { + "ID": 2987, + "SourceStructureID": 76332, + "TargetStructureID": 5562, + "Label": "76332-5562 via Unknown from 76333 -> 76331", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76333, + "TargetID": 76331, + "Directional": false + }] + }, { + "ID": 2988, + "SourceStructureID": 5562, + "TargetStructureID": 76334, + "Label": "5562-76334 via Adherens from 54193 -> 76335", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54193, + "TargetID": 76335, + "Directional": false + }] + }, { + "ID": 2989, + "SourceStructureID": 76340, + "TargetStructureID": 5562, + "Label": "76340-5562 via Unknown from 76342 -> 76343", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76342, + "TargetID": 76343, + "Directional": false + }] + }, { + "ID": 2990, + "SourceStructureID": 5562, + "TargetStructureID": 76349, + "Label": "5562-76349 via Unknown from 76354 -> 76355", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76354, + "TargetID": 76355, + "Directional": false + }] + }, { + "ID": 2991, + "SourceStructureID": 76351, + "TargetStructureID": 5562, + "Label": "76351-5562 via Adherens from 76353 -> 76352", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76353, + "TargetID": 76352, + "Directional": false + }] + }, { + "ID": 2992, + "SourceStructureID": 76356, + "TargetStructureID": 5562, + "Label": "76356-5562 via Unknown from 76361 -> 76360", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76361, + "TargetID": 76360, + "Directional": false + }] + }, { + "ID": 2993, + "SourceStructureID": 76357, + "TargetStructureID": 5562, + "Label": "76357-5562 via Unknown from 76359 -> 76358", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76359, + "TargetID": 76358, + "Directional": false + }] + }, { + "ID": 2994, + "SourceStructureID": 5562, + "TargetStructureID": 76379, + "Label": "5562-76379 via Unknown from 76380 -> 76381", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76380, + "TargetID": 76381, + "Directional": false + }] + }, { + "ID": 2995, + "SourceStructureID": 76386, + "TargetStructureID": 5562, + "Label": "76386-5562 via Adherens from 76388 -> 76389", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76388, + "TargetID": 76389, + "Directional": false + }] + }, { + "ID": 2996, + "SourceStructureID": 76399, + "TargetStructureID": 5562, + "Label": "76399-5562 via Unknown from 76400 -> 76398", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76400, + "TargetID": 76398, + "Directional": false + }] + }, { + "ID": 2997, + "SourceStructureID": 5562, + "TargetStructureID": 76414, + "Label": "5562-76414 via Adherens from 76417 -> 76418", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76417, + "TargetID": 76418, + "Directional": false + }] + }, { + "ID": 2998, + "SourceStructureID": 5562, + "TargetStructureID": 76426, + "Label": "5562-76426 via Adherens from 76428 -> 76429", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76428, + "TargetID": 76429, + "Directional": false + }] + }, { + "ID": 2999, + "SourceStructureID": 5562, + "TargetStructureID": 76448, + "Label": "5562-76448 via Adherens from 76447 -> 76449", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76447, + "TargetID": 76449, + "Directional": false + }] + }, { + "ID": 3000, + "SourceStructureID": 5562, + "TargetStructureID": 76503, + "Label": "5562-76503 via Unknown from 76501 -> 76504", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76501, + "TargetID": 76504, + "Directional": false + }] + }, { + "ID": 3001, + "SourceStructureID": 5562, + "TargetStructureID": 76533, + "Label": "5562-76533 via Adherens from 76535 -> 76534, 76536 -> 76537, 76538 -> 76539", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76535, + "TargetID": 76534, + "Directional": false + }, { + "SourceID": 76536, + "TargetID": 76537, + "Directional": false + }, { + "SourceID": 76538, + "TargetID": 76539, + "Directional": false + }] + }, { + "ID": 3002, + "SourceStructureID": 5562, + "TargetStructureID": 76543, + "Label": "5562-76543 via Adherens from 76587 -> 76588, 76589 -> 76590", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76587, + "TargetID": 76588, + "Directional": false + }, { + "SourceID": 76589, + "TargetID": 76590, + "Directional": false + }] + }, { + "ID": 3003, + "SourceStructureID": 5562, + "TargetStructureID": 76543, + "Label": "5562-76543 via Unknown from 76542 -> 76544", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76542, + "TargetID": 76544, + "Directional": false + }] + }, { + "ID": 3004, + "SourceStructureID": 5562, + "TargetStructureID": 76552, + "Label": "5562-76552 via Unknown from 76559 -> 76585", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76559, + "TargetID": 76585, + "Directional": false + }] + }, { + "ID": 3005, + "SourceStructureID": 5562, + "TargetStructureID": 76556, + "Label": "5562-76556 via Unknown from 76558 -> 76557", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76558, + "TargetID": 76557, + "Directional": false + }] + }, { + "ID": 3006, + "SourceStructureID": 76561, + "TargetStructureID": 5562, + "Label": "76561-5562 via Adherens from 76564 -> 76565", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76564, + "TargetID": 76565, + "Directional": false + }] + }, { + "ID": 3007, + "SourceStructureID": 5562, + "TargetStructureID": 76638, + "Label": "5562-76638 via Unknown from 76642 -> 76641", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76642, + "TargetID": 76641, + "Directional": false + }] + }, { + "ID": 3008, + "SourceStructureID": 5562, + "TargetStructureID": 76670, + "Label": "5562-76670 via Gap Junction from 63219 -> 76674", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63219, + "TargetID": 76674, + "Directional": false + }] + }, { + "ID": 3009, + "SourceStructureID": 76671, + "TargetStructureID": 5562, + "Label": "76671-5562 via Adherens from 76694 -> 76695", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76694, + "TargetID": 76695, + "Directional": false + }] + }, { + "ID": 3010, + "SourceStructureID": 76671, + "TargetStructureID": 5562, + "Label": "76671-5562 via Unknown from 76696 -> 76697", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76696, + "TargetID": 76697, + "Directional": false + }] + }, { + "ID": 3011, + "SourceStructureID": 5562, + "TargetStructureID": 76688, + "Label": "5562-76688 via Unknown from 76690 -> 76691", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76690, + "TargetID": 76691, + "Directional": false + }] + }, { + "ID": 3012, + "SourceStructureID": 76698, + "TargetStructureID": 5562, + "Label": "76698-5562 via Unknown from 76700 -> 76699", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76700, + "TargetID": 76699, + "Directional": false + }] + }, { + "ID": 3013, + "SourceStructureID": 5562, + "TargetStructureID": 76711, + "Label": "5562-76711 via Adherens from 76714 -> 76713", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76714, + "TargetID": 76713, + "Directional": false + }] + }, { + "ID": 3014, + "SourceStructureID": 5562, + "TargetStructureID": 76719, + "Label": "5562-76719 via Adherens from 76892 -> 76893", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76892, + "TargetID": 76893, + "Directional": false + }] + }, { + "ID": 3015, + "SourceStructureID": 5562, + "TargetStructureID": 76724, + "Label": "5562-76724 via Unknown from 76726 -> 76725", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76726, + "TargetID": 76725, + "Directional": false + }] + }, { + "ID": 3016, + "SourceStructureID": 76728, + "TargetStructureID": 5562, + "Label": "76728-5562 via Unknown from 76729 -> 76727, 76907 -> 76906", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76729, + "TargetID": 76727, + "Directional": false + }, { + "SourceID": 76907, + "TargetID": 76906, + "Directional": false + }] + }, { + "ID": 3017, + "SourceStructureID": 76730, + "TargetStructureID": 5562, + "Label": "76730-5562 via Adherens from 76909 -> 76908", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76909, + "TargetID": 76908, + "Directional": false + }] + }, { + "ID": 3018, + "SourceStructureID": 5562, + "TargetStructureID": 76735, + "Label": "5562-76735 via Unknown from 76897 -> 76898", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76897, + "TargetID": 76898, + "Directional": false + }] + }, { + "ID": 3019, + "SourceStructureID": 76895, + "TargetStructureID": 5562, + "Label": "76895-5562 via Unknown from 76896 -> 76894", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76896, + "TargetID": 76894, + "Directional": false + }] + }, { + "ID": 3020, + "SourceStructureID": 76919, + "TargetStructureID": 5562, + "Label": "76919-5562 via Adherens from 76921 -> 76920, 76922 -> 76923", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76921, + "TargetID": 76920, + "Directional": false + }, { + "SourceID": 76922, + "TargetID": 76923, + "Directional": false + }] + }, { + "ID": 3021, + "SourceStructureID": 5562, + "TargetStructureID": 76931, + "Label": "5562-76931 via Adherens from 76930 -> 76932", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76930, + "TargetID": 76932, + "Directional": false + }] + }, { + "ID": 3022, + "SourceStructureID": 5562, + "TargetStructureID": 76931, + "Label": "5562-76931 via BC Conventional Synapse from 134315 -> 134316", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 134315, + "TargetID": 134316, + "Directional": false + }] + }, { + "ID": 3023, + "SourceStructureID": 5562, + "TargetStructureID": 76938, + "Label": "5562-76938 via Unknown from 76937 -> 76939", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76937, + "TargetID": 76939, + "Directional": false + }] + }, { + "ID": 3024, + "SourceStructureID": 5562, + "TargetStructureID": 76944, + "Label": "5562-76944 via Unknown from 135300 -> 134317", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135300, + "TargetID": 134317, + "Directional": false + }] + }, { + "ID": 3025, + "SourceStructureID": 76953, + "TargetStructureID": 5562, + "Label": "76953-5562 via Adherens from 76954 -> 76955", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76954, + "TargetID": 76955, + "Directional": false + }] + }, { + "ID": 3026, + "SourceStructureID": 5562, + "TargetStructureID": 76958, + "Label": "5562-76958 via Unknown from 76960 -> 76959", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76960, + "TargetID": 76959, + "Directional": false + }] + }, { + "ID": 3027, + "SourceStructureID": 5562, + "TargetStructureID": 77116, + "Label": "5562-77116 via Unknown from 77115 -> 77117", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77115, + "TargetID": 77117, + "Directional": false + }] + }, { + "ID": 3028, + "SourceStructureID": 5562, + "TargetStructureID": 77124, + "Label": "5562-77124 via Adherens from 63228 -> 77125", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63228, + "TargetID": 77125, + "Directional": false + }] + }, { + "ID": 3029, + "SourceStructureID": 5562, + "TargetStructureID": 77126, + "Label": "5562-77126 via Unknown from 77127 -> 81504", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77127, + "TargetID": 81504, + "Directional": false + }] + }, { + "ID": 3030, + "SourceStructureID": 5562, + "TargetStructureID": 77156, + "Label": "5562-77156 via Unknown from 77158 -> 77157", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77158, + "TargetID": 77157, + "Directional": false + }] + }, { + "ID": 3031, + "SourceStructureID": 77160, + "TargetStructureID": 5562, + "Label": "77160-5562 via Unknown from 77161 -> 77159, 77193 -> 77194, 77198 -> 77192", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77161, + "TargetID": 77159, + "Directional": false + }, { + "SourceID": 77193, + "TargetID": 77194, + "Directional": false + }, { + "SourceID": 77198, + "TargetID": 77192, + "Directional": false + }] + }, { + "ID": 3032, + "SourceStructureID": 77163, + "TargetStructureID": 5562, + "Label": "77163-5562 via Unknown from 77164 -> 77162", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77164, + "TargetID": 77162, + "Directional": false + }] + }, { + "ID": 3033, + "SourceStructureID": 5562, + "TargetStructureID": 77179, + "Label": "5562-77179 via Adherens from 77178 -> 77180", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77178, + "TargetID": 77180, + "Directional": false + }] + }, { + "ID": 3034, + "SourceStructureID": 5562, + "TargetStructureID": 77179, + "Label": "5562-77179 via Gap Junction from 77181 -> 77182", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 77181, + "TargetID": 77182, + "Directional": false + }] + }, { + "ID": 3035, + "SourceStructureID": 5562, + "TargetStructureID": 77202, + "Label": "5562-77202 via Unknown from 77203 -> 77204", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77203, + "TargetID": 77204, + "Directional": false + }] + }, { + "ID": 3036, + "SourceStructureID": 5562, + "TargetStructureID": 77236, + "Label": "5562-77236 via Adherens from 77235 -> 77237", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77235, + "TargetID": 77237, + "Directional": false + }] + }, { + "ID": 3037, + "SourceStructureID": 5562, + "TargetStructureID": 77236, + "Label": "5562-77236 via Unknown from 77251 -> 134321", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77251, + "TargetID": 134321, + "Directional": false + }] + }, { + "ID": 3038, + "SourceStructureID": 77262, + "TargetStructureID": 5562, + "Label": "77262-5562 via Adherens from 77263 -> 77261", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77263, + "TargetID": 77261, + "Directional": false + }] + }, { + "ID": 3039, + "SourceStructureID": 5562, + "TargetStructureID": 77266, + "Label": "5562-77266 via Unknown from 77265 -> 77267", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77265, + "TargetID": 77267, + "Directional": false + }] + }, { + "ID": 3040, + "SourceStructureID": 5562, + "TargetStructureID": 77270, + "Label": "5562-77270 via Adherens from 77282 -> 77283", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77282, + "TargetID": 77283, + "Directional": false + }] + }, { + "ID": 3041, + "SourceStructureID": 5562, + "TargetStructureID": 77286, + "Label": "5562-77286 via Adherens from 77288 -> 77287", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77288, + "TargetID": 77287, + "Directional": false + }] + }, { + "ID": 3042, + "SourceStructureID": 5562, + "TargetStructureID": 77289, + "Label": "5562-77289 via Unknown from 77290 -> 77291", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77290, + "TargetID": 77291, + "Directional": false + }] + }, { + "ID": 3043, + "SourceStructureID": 5562, + "TargetStructureID": 77296, + "Label": "5562-77296 via Unknown from 77429 -> 77430", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77429, + "TargetID": 77430, + "Directional": false + }] + }, { + "ID": 3044, + "SourceStructureID": 5562, + "TargetStructureID": 77299, + "Label": "5562-77299 via Unknown from 77301 -> 77302", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77301, + "TargetID": 77302, + "Directional": false + }] + }, { + "ID": 3045, + "SourceStructureID": 5562, + "TargetStructureID": 77310, + "Label": "5562-77310 via Unknown from 77311 -> 77312", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77311, + "TargetID": 77312, + "Directional": false + }] + }, { + "ID": 3046, + "SourceStructureID": 77321, + "TargetStructureID": 5562, + "Label": "77321-5562 via Unknown from 134322 -> 77319", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134322, + "TargetID": 77319, + "Directional": false + }] + }, { + "ID": 3047, + "SourceStructureID": 5562, + "TargetStructureID": 77417, + "Label": "5562-77417 via Unknown from 77416 -> 77418", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77416, + "TargetID": 77418, + "Directional": false + }] + }, { + "ID": 3048, + "SourceStructureID": 77423, + "TargetStructureID": 5562, + "Label": "77423-5562 via Unknown from 77424 -> 77425", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77424, + "TargetID": 77425, + "Directional": false + }] + }, { + "ID": 3049, + "SourceStructureID": 77446, + "TargetStructureID": 5562, + "Label": "77446-5562 via Unknown from 77447 -> 77445", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77447, + "TargetID": 77445, + "Directional": false + }] + }, { + "ID": 3050, + "SourceStructureID": 5562, + "TargetStructureID": 77450, + "Label": "5562-77450 via Adherens from 77449 -> 77451", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77449, + "TargetID": 77451, + "Directional": false + }] + }, { + "ID": 3051, + "SourceStructureID": 5562, + "TargetStructureID": 77456, + "Label": "5562-77456 via Unknown from 77452 -> 77457", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77452, + "TargetID": 77457, + "Directional": false + }] + }, { + "ID": 3052, + "SourceStructureID": 77473, + "TargetStructureID": 5562, + "Label": "77473-5562 via Unknown from 77474 -> 77472", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77474, + "TargetID": 77472, + "Directional": false + }] + }, { + "ID": 3053, + "SourceStructureID": 77507, + "TargetStructureID": 5562, + "Label": "77507-5562 via Unknown from 77508 -> 77509", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77508, + "TargetID": 77509, + "Directional": false + }] + }, { + "ID": 3054, + "SourceStructureID": 5562, + "TargetStructureID": 77510, + "Label": "5562-77510 via Unknown from 134577 -> 134578", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134577, + "TargetID": 134578, + "Directional": false + }] + }, { + "ID": 3055, + "SourceStructureID": 5562, + "TargetStructureID": 77516, + "Label": "5562-77516 via Adherens from 77517 -> 77518", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77517, + "TargetID": 77518, + "Directional": false + }] + }, { + "ID": 3056, + "SourceStructureID": 5562, + "TargetStructureID": 77519, + "Label": "5562-77519 via Unknown from 77520 -> 77521", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77520, + "TargetID": 77521, + "Directional": false + }] + }, { + "ID": 3057, + "SourceStructureID": 5562, + "TargetStructureID": 77522, + "Label": "5562-77522 via Unknown from 77524 -> 77523", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77524, + "TargetID": 77523, + "Directional": false + }] + }, { + "ID": 3058, + "SourceStructureID": 77533, + "TargetStructureID": 5562, + "Label": "77533-5562 via Unknown from 77584 -> 77583", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77584, + "TargetID": 77583, + "Directional": false + }] + }, { + "ID": 3059, + "SourceStructureID": 5562, + "TargetStructureID": 77536, + "Label": "5562-77536 via Unknown from 77538 -> 77537", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77538, + "TargetID": 77537, + "Directional": false + }] + }, { + "ID": 3060, + "SourceStructureID": 5562, + "TargetStructureID": 77550, + "Label": "5562-77550 via Unknown from 77554 -> 77553", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77554, + "TargetID": 77553, + "Directional": false + }] + }, { + "ID": 3061, + "SourceStructureID": 5562, + "TargetStructureID": 77561, + "Label": "5562-77561 via Adherens from 77560 -> 77562, 77581 -> 77582", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77560, + "TargetID": 77562, + "Directional": false + }, { + "SourceID": 77581, + "TargetID": 77582, + "Directional": false + }] + }, { + "ID": 3062, + "SourceStructureID": 5562, + "TargetStructureID": 77572, + "Label": "5562-77572 via Unknown from 77573 -> 77574", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77573, + "TargetID": 77574, + "Directional": false + }] + }, { + "ID": 3063, + "SourceStructureID": 5562, + "TargetStructureID": 77578, + "Label": "5562-77578 via Unknown from 77580 -> 77579", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77580, + "TargetID": 77579, + "Directional": false + }] + }, { + "ID": 3064, + "SourceStructureID": 5562, + "TargetStructureID": 77612, + "Label": "5562-77612 via Unknown from 77616 -> 77617", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77616, + "TargetID": 77617, + "Directional": false + }] + }, { + "ID": 3065, + "SourceStructureID": 5562, + "TargetStructureID": 77726, + "Label": "5562-77726 via Unknown from 77725 -> 77727", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77725, + "TargetID": 77727, + "Directional": false + }] + }, { + "ID": 3066, + "SourceStructureID": 5562, + "TargetStructureID": 77731, + "Label": "5562-77731 via Unknown from 77730 -> 77732", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77730, + "TargetID": 77732, + "Directional": false + }] + }, { + "ID": 3067, + "SourceStructureID": 77733, + "TargetStructureID": 5562, + "Label": "77733-5562 via Unknown from 77735 -> 77734", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77735, + "TargetID": 77734, + "Directional": false + }] + }, { + "ID": 3068, + "SourceStructureID": 5562, + "TargetStructureID": 77736, + "Label": "5562-77736 via Unknown from 77739 -> 77740", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77739, + "TargetID": 77740, + "Directional": false + }] + }, { + "ID": 3069, + "SourceStructureID": 77745, + "TargetStructureID": 5562, + "Label": "77745-5562 via Unknown from 77746 -> 77744", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77746, + "TargetID": 77744, + "Directional": false + }] + }, { + "ID": 3070, + "SourceStructureID": 5562, + "TargetStructureID": 77765, + "Label": "5562-77765 via Unknown from 77768 -> 77769", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77768, + "TargetID": 77769, + "Directional": false + }] + }, { + "ID": 3071, + "SourceStructureID": 77786, + "TargetStructureID": 5562, + "Label": "77786-5562 via Unknown from 77787 -> 77788", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77787, + "TargetID": 77788, + "Directional": false + }] + }, { + "ID": 3072, + "SourceStructureID": 5562, + "TargetStructureID": 77790, + "Label": "5562-77790 via Unknown from 77789 -> 77791", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77789, + "TargetID": 77791, + "Directional": false + }] + }, { + "ID": 3073, + "SourceStructureID": 5562, + "TargetStructureID": 77811, + "Label": "5562-77811 via Unknown from 77813 -> 77814", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77813, + "TargetID": 77814, + "Directional": false + }] + }, { + "ID": 3074, + "SourceStructureID": 5562, + "TargetStructureID": 77816, + "Label": "5562-77816 via Adherens from 77815 -> 77817", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77815, + "TargetID": 77817, + "Directional": false + }] + }, { + "ID": 3075, + "SourceStructureID": 5562, + "TargetStructureID": 77826, + "Label": "5562-77826 via Adherens from 77829 -> 77830", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77829, + "TargetID": 77830, + "Directional": false + }] + }, { + "ID": 3076, + "SourceStructureID": 5562, + "TargetStructureID": 77840, + "Label": "5562-77840 via Adherens from 63277 -> 82417, 77880 -> 82416", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63277, + "TargetID": 82417, + "Directional": false + }, { + "SourceID": 77880, + "TargetID": 82416, + "Directional": false + }] + }, { + "ID": 3077, + "SourceStructureID": 5562, + "TargetStructureID": 77840, + "Label": "5562-77840 via Gap Junction from 63067 -> 76282, 77863 -> 82415", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63067, + "TargetID": 76282, + "Directional": false + }, { + "SourceID": 77863, + "TargetID": 82415, + "Directional": false + }] + }, { + "ID": 3078, + "SourceStructureID": 5562, + "TargetStructureID": 77846, + "Label": "5562-77846 via Unknown from 77845 -> 77847", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77845, + "TargetID": 77847, + "Directional": false + }] + }, { + "ID": 3079, + "SourceStructureID": 77848, + "TargetStructureID": 5562, + "Label": "77848-5562 via Adherens from 134427 -> 134426", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134427, + "TargetID": 134426, + "Directional": false + }] + }, { + "ID": 3080, + "SourceStructureID": 77855, + "TargetStructureID": 5562, + "Label": "77855-5562 via Unknown from 77856 -> 77854", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77856, + "TargetID": 77854, + "Directional": false + }] + }, { + "ID": 3081, + "SourceStructureID": 5562, + "TargetStructureID": 77858, + "Label": "5562-77858 via Unknown from 77857 -> 77859", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77857, + "TargetID": 77859, + "Directional": false + }] + }, { + "ID": 3082, + "SourceStructureID": 5562, + "TargetStructureID": 77865, + "Label": "5562-77865 via Adherens from 77866 -> 77867", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77866, + "TargetID": 77867, + "Directional": false + }] + }, { + "ID": 3083, + "SourceStructureID": 5562, + "TargetStructureID": 77872, + "Label": "5562-77872 via Unknown from 77874 -> 77873", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77874, + "TargetID": 77873, + "Directional": false + }] + }, { + "ID": 3084, + "SourceStructureID": 5562, + "TargetStructureID": 77885, + "Label": "5562-77885 via Adherens from 77886 -> 77887", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77886, + "TargetID": 77887, + "Directional": false + }] + }, { + "ID": 3085, + "SourceStructureID": 5562, + "TargetStructureID": 77889, + "Label": "5562-77889 via Unknown from 77891 -> 77890", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77891, + "TargetID": 77890, + "Directional": false + }] + }, { + "ID": 3086, + "SourceStructureID": 5562, + "TargetStructureID": 77893, + "Label": "5562-77893 via Adherens from 77895 -> 77894", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77895, + "TargetID": 77894, + "Directional": false + }] + }, { + "ID": 3087, + "SourceStructureID": 5562, + "TargetStructureID": 78098, + "Label": "5562-78098 via Gap Junction from 78101 -> 78100", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 78101, + "TargetID": 78100, + "Directional": false + }] + }, { + "ID": 3088, + "SourceStructureID": 5562, + "TargetStructureID": 78098, + "Label": "5562-78098 via Unknown from 78097 -> 78099", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78097, + "TargetID": 78099, + "Directional": false + }] + }, { + "ID": 3089, + "SourceStructureID": 5562, + "TargetStructureID": 78102, + "Label": "5562-78102 via Unknown from 78104 -> 78103", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78104, + "TargetID": 78103, + "Directional": false + }] + }, { + "ID": 3090, + "SourceStructureID": 78107, + "TargetStructureID": 5562, + "Label": "78107-5562 via Unknown from 78121 -> 78120", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78121, + "TargetID": 78120, + "Directional": false + }] + }, { + "ID": 3091, + "SourceStructureID": 5562, + "TargetStructureID": 78109, + "Label": "5562-78109 via Adherens from 78111 -> 78110", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78111, + "TargetID": 78110, + "Directional": false + }] + }, { + "ID": 3092, + "SourceStructureID": 5562, + "TargetStructureID": 78124, + "Label": "5562-78124 via Adherens from 63338 -> 78125, 78138 -> 78137", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63338, + "TargetID": 78125, + "Directional": false + }, { + "SourceID": 78138, + "TargetID": 78137, + "Directional": false + }] + }, { + "ID": 3093, + "SourceStructureID": 5562, + "TargetStructureID": 78126, + "Label": "5562-78126 via Adherens from 49536 -> 78846, 63658 -> 78546", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 49536, + "TargetID": 78846, + "Directional": false + }, { + "SourceID": 63658, + "TargetID": 78546, + "Directional": false + }] + }, { + "ID": 3094, + "SourceStructureID": 78126, + "TargetStructureID": 5562, + "Label": "78126-5562 via Gap Junction from 78547 -> 63657, 135139 -> 135138", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 78547, + "TargetID": 63657, + "Directional": false + }, { + "SourceID": 135139, + "TargetID": 135138, + "Directional": false + }] + }, { + "ID": 3095, + "SourceStructureID": 5562, + "TargetStructureID": 78126, + "Label": "5562-78126 via Unknown from 78127 -> 78128, 78577 -> 78576, 135137 -> 78504", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78127, + "TargetID": 78128, + "Directional": false + }, { + "SourceID": 78577, + "TargetID": 78576, + "Directional": false + }, { + "SourceID": 135137, + "TargetID": 78504, + "Directional": false + }] + }, { + "ID": 3096, + "SourceStructureID": 78129, + "TargetStructureID": 5562, + "Label": "78129-5562 via Adherens from 78130 -> 78131", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78130, + "TargetID": 78131, + "Directional": false + }] + }, { + "ID": 3097, + "SourceStructureID": 5562, + "TargetStructureID": 78143, + "Label": "5562-78143 via Unknown from 78144 -> 78145", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78144, + "TargetID": 78145, + "Directional": false + }] + }, { + "ID": 3098, + "SourceStructureID": 78146, + "TargetStructureID": 5562, + "Label": "78146-5562 via Adherens from 78148 -> 78147", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78148, + "TargetID": 78147, + "Directional": false + }] + }, { + "ID": 3099, + "SourceStructureID": 5562, + "TargetStructureID": 78149, + "Label": "5562-78149 via Unknown from 78150 -> 78151", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78150, + "TargetID": 78151, + "Directional": false + }] + }, { + "ID": 3100, + "SourceStructureID": 5562, + "TargetStructureID": 78152, + "Label": "5562-78152 via Unknown from 78154 -> 78153", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78154, + "TargetID": 78153, + "Directional": false + }] + }, { + "ID": 3101, + "SourceStructureID": 5562, + "TargetStructureID": 78157, + "Label": "5562-78157 via Adherens from 78159 -> 78158", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78159, + "TargetID": 78158, + "Directional": false + }] + }, { + "ID": 3102, + "SourceStructureID": 5562, + "TargetStructureID": 78183, + "Label": "5562-78183 via Unknown from 78184 -> 78185", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78184, + "TargetID": 78185, + "Directional": false + }] + }, { + "ID": 3103, + "SourceStructureID": 5562, + "TargetStructureID": 78200, + "Label": "5562-78200 via Adherens from 78237 -> 78238", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78237, + "TargetID": 78238, + "Directional": false + }] + }, { + "ID": 3104, + "SourceStructureID": 78220, + "TargetStructureID": 5562, + "Label": "78220-5562 via Unknown from 78221 -> 78213", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78221, + "TargetID": 78213, + "Directional": false + }] + }, { + "ID": 3105, + "SourceStructureID": 5562, + "TargetStructureID": 78222, + "Label": "5562-78222 via Unknown from 63353 -> 78231", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 63353, + "TargetID": 78231, + "Directional": false + }] + }, { + "ID": 3106, + "SourceStructureID": 78239, + "TargetStructureID": 5562, + "Label": "78239-5562 via Unknown from 78241 -> 78240", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78241, + "TargetID": 78240, + "Directional": false + }] + }, { + "ID": 3107, + "SourceStructureID": 5562, + "TargetStructureID": 78248, + "Label": "5562-78248 via Unknown from 78259 -> 78260", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78259, + "TargetID": 78260, + "Directional": false + }] + }, { + "ID": 3108, + "SourceStructureID": 78261, + "TargetStructureID": 5562, + "Label": "78261-5562 via Unknown from 78269 -> 78270", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78269, + "TargetID": 78270, + "Directional": false + }] + }, { + "ID": 3109, + "SourceStructureID": 5562, + "TargetStructureID": 78262, + "Label": "5562-78262 via Adherens from 78606 -> 78605", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78606, + "TargetID": 78605, + "Directional": false + }] + }, { + "ID": 3110, + "SourceStructureID": 78262, + "TargetStructureID": 5562, + "Label": "78262-5562 via Unknown from 78268 -> 78267, 79901 -> 79902", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78268, + "TargetID": 78267, + "Directional": false + }, { + "SourceID": 79901, + "TargetID": 79902, + "Directional": false + }] + }, { + "ID": 3111, + "SourceStructureID": 78263, + "TargetStructureID": 5562, + "Label": "78263-5562 via Unknown from 78264 -> 78266", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78264, + "TargetID": 78266, + "Directional": false + }] + }, { + "ID": 3112, + "SourceStructureID": 5562, + "TargetStructureID": 78275, + "Label": "5562-78275 via Adherens from 78274 -> 78276", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78274, + "TargetID": 78276, + "Directional": false + }] + }, { + "ID": 3113, + "SourceStructureID": 5562, + "TargetStructureID": 78275, + "Label": "5562-78275 via Unknown from 78279 -> 78280", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78279, + "TargetID": 78280, + "Directional": false + }] + }, { + "ID": 3114, + "SourceStructureID": 5562, + "TargetStructureID": 78334, + "Label": "5562-78334 via Adherens from 78287 -> 78341, 78340 -> 78342", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78287, + "TargetID": 78341, + "Directional": false + }, { + "SourceID": 78340, + "TargetID": 78342, + "Directional": false + }] + }, { + "ID": 3115, + "SourceStructureID": 78336, + "TargetStructureID": 5562, + "Label": "78336-5562 via Unknown from 78337 -> 78339", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78337, + "TargetID": 78339, + "Directional": false + }] + }, { + "ID": 3116, + "SourceStructureID": 5562, + "TargetStructureID": 78355, + "Label": "5562-78355 via Unknown from 78356 -> 78357", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78356, + "TargetID": 78357, + "Directional": false + }] + }, { + "ID": 3117, + "SourceStructureID": 5562, + "TargetStructureID": 78359, + "Label": "5562-78359 via Unknown from 78358 -> 78360, 78361 -> 78362", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78358, + "TargetID": 78360, + "Directional": false + }, { + "SourceID": 78361, + "TargetID": 78362, + "Directional": false + }] + }, { + "ID": 3118, + "SourceStructureID": 5562, + "TargetStructureID": 78364, + "Label": "5562-78364 via Adherens from 78363 -> 78365", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78363, + "TargetID": 78365, + "Directional": false + }] + }, { + "ID": 3119, + "SourceStructureID": 78377, + "TargetStructureID": 5562, + "Label": "78377-5562 via Unknown from 78382 -> 78381", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78382, + "TargetID": 78381, + "Directional": false + }] + }, { + "ID": 3120, + "SourceStructureID": 5562, + "TargetStructureID": 78378, + "Label": "5562-78378 via Unknown from 78379 -> 78380", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78379, + "TargetID": 78380, + "Directional": false + }] + }, { + "ID": 3121, + "SourceStructureID": 5562, + "TargetStructureID": 78387, + "Label": "5562-78387 via Adherens from 78386 -> 78388", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78386, + "TargetID": 78388, + "Directional": false + }] + }, { + "ID": 3122, + "SourceStructureID": 78387, + "TargetStructureID": 5562, + "Label": "78387-5562 via Unknown from 78390 -> 78389", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78390, + "TargetID": 78389, + "Directional": false + }] + }, { + "ID": 3123, + "SourceStructureID": 5562, + "TargetStructureID": 78391, + "Label": "5562-78391 via BC Conventional Synapse from 63538 -> 78392", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 63538, + "TargetID": 78392, + "Directional": false + }] + }, { + "ID": 3124, + "SourceStructureID": 5562, + "TargetStructureID": 78398, + "Label": "5562-78398 via Unknown from 78441 -> 78442", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78441, + "TargetID": 78442, + "Directional": false + }] + }, { + "ID": 3125, + "SourceStructureID": 5562, + "TargetStructureID": 78400, + "Label": "5562-78400 via Unknown from 78403 -> 78402", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78403, + "TargetID": 78402, + "Directional": false + }] + }, { + "ID": 3126, + "SourceStructureID": 5562, + "TargetStructureID": 78409, + "Label": "5562-78409 via Unknown from 49398 -> 78410", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 49398, + "TargetID": 78410, + "Directional": false + }] + }, { + "ID": 3127, + "SourceStructureID": 5562, + "TargetStructureID": 78444, + "Label": "5562-78444 via Unknown from 78443 -> 78445", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78443, + "TargetID": 78445, + "Directional": false + }] + }, { + "ID": 3128, + "SourceStructureID": 78457, + "TargetStructureID": 5562, + "Label": "78457-5562 via Unknown from 78458 -> 78456", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78458, + "TargetID": 78456, + "Directional": false + }] + }, { + "ID": 3129, + "SourceStructureID": 78459, + "TargetStructureID": 5562, + "Label": "78459-5562 via Adherens from 78460 -> 78461", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78460, + "TargetID": 78461, + "Directional": false + }] + }, { + "ID": 3130, + "SourceStructureID": 78462, + "TargetStructureID": 5562, + "Label": "78462-5562 via Unknown from 78464 -> 78463", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78464, + "TargetID": 78463, + "Directional": false + }] + }, { + "ID": 3131, + "SourceStructureID": 5562, + "TargetStructureID": 78467, + "Label": "5562-78467 via Adherens from 63645 -> 78468", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63645, + "TargetID": 78468, + "Directional": false + }] + }, { + "ID": 3132, + "SourceStructureID": 5562, + "TargetStructureID": 78478, + "Label": "5562-78478 via Unknown from 78480 -> 78481", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78480, + "TargetID": 78481, + "Directional": false + }] + }, { + "ID": 3133, + "SourceStructureID": 5562, + "TargetStructureID": 78506, + "Label": "5562-78506 via Unknown from 78834 -> 78835", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78834, + "TargetID": 78835, + "Directional": false + }] + }, { + "ID": 3134, + "SourceStructureID": 5562, + "TargetStructureID": 78507, + "Label": "5562-78507 via Unknown from 78508 -> 78509", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78508, + "TargetID": 78509, + "Directional": false + }] + }, { + "ID": 3135, + "SourceStructureID": 78510, + "TargetStructureID": 5562, + "Label": "78510-5562 via Adherens from 78511 -> 78512", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78511, + "TargetID": 78512, + "Directional": false + }] + }, { + "ID": 3136, + "SourceStructureID": 78520, + "TargetStructureID": 5562, + "Label": "78520-5562 via Unknown from 78538 -> 78539", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78538, + "TargetID": 78539, + "Directional": false + }] + }, { + "ID": 3137, + "SourceStructureID": 5562, + "TargetStructureID": 78526, + "Label": "5562-78526 via Unknown from 78527 -> 78528", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78527, + "TargetID": 78528, + "Directional": false + }] + }, { + "ID": 3138, + "SourceStructureID": 5562, + "TargetStructureID": 78529, + "Label": "5562-78529 via Unknown from 78530 -> 78531", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78530, + "TargetID": 78531, + "Directional": false + }] + }, { + "ID": 3139, + "SourceStructureID": 5562, + "TargetStructureID": 78532, + "Label": "5562-78532 via Unknown from 78534 -> 78533", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78534, + "TargetID": 78533, + "Directional": false + }] + }, { + "ID": 3140, + "SourceStructureID": 78552, + "TargetStructureID": 5562, + "Label": "78552-5562 via Unknown from 78563 -> 78562", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78563, + "TargetID": 78562, + "Directional": false + }] + }, { + "ID": 3141, + "SourceStructureID": 5562, + "TargetStructureID": 78568, + "Label": "5562-78568 via Adherens from 78567 -> 78569", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78567, + "TargetID": 78569, + "Directional": false + }] + }, { + "ID": 3142, + "SourceStructureID": 5562, + "TargetStructureID": 78578, + "Label": "5562-78578 via Adherens from 63665 -> 78579", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63665, + "TargetID": 78579, + "Directional": false + }] + }, { + "ID": 3143, + "SourceStructureID": 5562, + "TargetStructureID": 78582, + "Label": "5562-78582 via Adherens from 63668 -> 78583", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63668, + "TargetID": 78583, + "Directional": false + }] + }, { + "ID": 3144, + "SourceStructureID": 78588, + "TargetStructureID": 5562, + "Label": "78588-5562 via Unknown from 78592 -> 78593", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78592, + "TargetID": 78593, + "Directional": false + }] + }, { + "ID": 3145, + "SourceStructureID": 78607, + "TargetStructureID": 5562, + "Label": "78607-5562 via Adherens from 78608 -> 78609", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78608, + "TargetID": 78609, + "Directional": false + }] + }, { + "ID": 3146, + "SourceStructureID": 78610, + "TargetStructureID": 5562, + "Label": "78610-5562 via Adherens from 132074 -> 132073", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132074, + "TargetID": 132073, + "Directional": false + }] + }, { + "ID": 3147, + "SourceStructureID": 5562, + "TargetStructureID": 78617, + "Label": "5562-78617 via Unknown from 78619 -> 78620", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78619, + "TargetID": 78620, + "Directional": false + }] + }, { + "ID": 3148, + "SourceStructureID": 5562, + "TargetStructureID": 78638, + "Label": "5562-78638 via Unknown from 78637 -> 78639", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78637, + "TargetID": 78639, + "Directional": false + }] + }, { + "ID": 3149, + "SourceStructureID": 78644, + "TargetStructureID": 5562, + "Label": "78644-5562 via Unknown from 78646 -> 78645", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78646, + "TargetID": 78645, + "Directional": false + }] + }, { + "ID": 3150, + "SourceStructureID": 5562, + "TargetStructureID": 78660, + "Label": "5562-78660 via Unknown from 78661 -> 78662", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78661, + "TargetID": 78662, + "Directional": false + }] + }, { + "ID": 3151, + "SourceStructureID": 5562, + "TargetStructureID": 78679, + "Label": "5562-78679 via Adherens from 63711 -> 78680", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63711, + "TargetID": 78680, + "Directional": false + }] + }, { + "ID": 3152, + "SourceStructureID": 78681, + "TargetStructureID": 5562, + "Label": "78681-5562 via Unknown from 78682 -> 78683", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78682, + "TargetID": 78683, + "Directional": false + }] + }, { + "ID": 3153, + "SourceStructureID": 5562, + "TargetStructureID": 78686, + "Label": "5562-78686 via Unknown from 78690 -> 78687, 78691 -> 78692", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78690, + "TargetID": 78687, + "Directional": false + }, { + "SourceID": 78691, + "TargetID": 78692, + "Directional": false + }] + }, { + "ID": 3154, + "SourceStructureID": 5562, + "TargetStructureID": 78701, + "Label": "5562-78701 via Unknown from 78702 -> 78703", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78702, + "TargetID": 78703, + "Directional": false + }] + }, { + "ID": 3155, + "SourceStructureID": 5562, + "TargetStructureID": 78704, + "Label": "5562-78704 via Adherens from 63723 -> 78705", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63723, + "TargetID": 78705, + "Directional": false + }] + }, { + "ID": 3156, + "SourceStructureID": 5562, + "TargetStructureID": 78735, + "Label": "5562-78735 via Unknown from 78745 -> 78743, 78758 -> 78756", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78745, + "TargetID": 78743, + "Directional": false + }, { + "SourceID": 78758, + "TargetID": 78756, + "Directional": false + }] + }, { + "ID": 3157, + "SourceStructureID": 78749, + "TargetStructureID": 5562, + "Label": "78749-5562 via Unknown from 78750 -> 63722", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78750, + "TargetID": 63722, + "Directional": false + }] + }, { + "ID": 3158, + "SourceStructureID": 5562, + "TargetStructureID": 78766, + "Label": "5562-78766 via Unknown from 78767 -> 78768, 78772 -> 78771", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78767, + "TargetID": 78768, + "Directional": false + }, { + "SourceID": 78772, + "TargetID": 78771, + "Directional": false + }] + }, { + "ID": 3159, + "SourceStructureID": 5562, + "TargetStructureID": 78775, + "Label": "5562-78775 via Adherens from 78778 -> 78779", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78778, + "TargetID": 78779, + "Directional": false + }] + }, { + "ID": 3160, + "SourceStructureID": 5562, + "TargetStructureID": 78785, + "Label": "5562-78785 via Unknown from 78817 -> 78818", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78817, + "TargetID": 78818, + "Directional": false + }] + }, { + "ID": 3161, + "SourceStructureID": 78787, + "TargetStructureID": 5562, + "Label": "78787-5562 via Unknown from 78789 -> 78788", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78789, + "TargetID": 78788, + "Directional": false + }] + }, { + "ID": 3162, + "SourceStructureID": 5562, + "TargetStructureID": 78790, + "Label": "5562-78790 via Unknown from 78802 -> 78803", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78802, + "TargetID": 78803, + "Directional": false + }] + }, { + "ID": 3163, + "SourceStructureID": 78791, + "TargetStructureID": 5562, + "Label": "78791-5562 via Unknown from 78793 -> 78792", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78793, + "TargetID": 78792, + "Directional": false + }] + }, { + "ID": 3164, + "SourceStructureID": 5562, + "TargetStructureID": 78804, + "Label": "5562-78804 via Unknown from 78808 -> 78809", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78808, + "TargetID": 78809, + "Directional": false + }] + }, { + "ID": 3165, + "SourceStructureID": 5562, + "TargetStructureID": 78822, + "Label": "5562-78822 via Unknown from 78832 -> 78833", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78832, + "TargetID": 78833, + "Directional": false + }] + }, { + "ID": 3166, + "SourceStructureID": 78829, + "TargetStructureID": 5562, + "Label": "78829-5562 via Unknown from 78831 -> 78830", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78831, + "TargetID": 78830, + "Directional": false + }] + }, { + "ID": 3167, + "SourceStructureID": 5562, + "TargetStructureID": 78837, + "Label": "5562-78837 via BC Conventional Synapse from 78836 -> 78838", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 78836, + "TargetID": 78838, + "Directional": false + }] + }, { + "ID": 3168, + "SourceStructureID": 5562, + "TargetStructureID": 78839, + "Label": "5562-78839 via Unknown from 135302 -> 134468", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135302, + "TargetID": 134468, + "Directional": false + }] + }, { + "ID": 3169, + "SourceStructureID": 78840, + "TargetStructureID": 5562, + "Label": "78840-5562 via Unknown from 134467 -> 78841", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134467, + "TargetID": 78841, + "Directional": false + }] + }, { + "ID": 3170, + "SourceStructureID": 5562, + "TargetStructureID": 78852, + "Label": "5562-78852 via Unknown from 78854 -> 78853", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78854, + "TargetID": 78853, + "Directional": false + }] + }, { + "ID": 3171, + "SourceStructureID": 78856, + "TargetStructureID": 5562, + "Label": "78856-5562 via Unknown from 78857 -> 78855", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78857, + "TargetID": 78855, + "Directional": false + }] + }, { + "ID": 3172, + "SourceStructureID": 5562, + "TargetStructureID": 78860, + "Label": "5562-78860 via Adherens from 78861 -> 78862", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78861, + "TargetID": 78862, + "Directional": false + }] + }, { + "ID": 3173, + "SourceStructureID": 78894, + "TargetStructureID": 5562, + "Label": "78894-5562 via Adherens from 78895 -> 63757", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78895, + "TargetID": 63757, + "Directional": false + }] + }, { + "ID": 3174, + "SourceStructureID": 78894, + "TargetStructureID": 5562, + "Label": "78894-5562 via Unknown from 78904 -> 78903", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78904, + "TargetID": 78903, + "Directional": false + }] + }, { + "ID": 3175, + "SourceStructureID": 5562, + "TargetStructureID": 78909, + "Label": "5562-78909 via Unknown from 77255 -> 87509, 87515 -> 77462", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 77255, + "TargetID": 87509, + "Directional": false + }, { + "SourceID": 87515, + "TargetID": 77462, + "Directional": false + }] + }, { + "ID": 3176, + "SourceStructureID": 5562, + "TargetStructureID": 78917, + "Label": "5562-78917 via Adherens from 78916 -> 78918", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78916, + "TargetID": 78918, + "Directional": false + }] + }, { + "ID": 3177, + "SourceStructureID": 78924, + "TargetStructureID": 5562, + "Label": "78924-5562 via Adherens from 78925 -> 63772", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78925, + "TargetID": 63772, + "Directional": false + }] + }, { + "ID": 3178, + "SourceStructureID": 5562, + "TargetStructureID": 78930, + "Label": "5562-78930 via Adherens from 63773 -> 78934", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63773, + "TargetID": 78934, + "Directional": false + }] + }, { + "ID": 3179, + "SourceStructureID": 78938, + "TargetStructureID": 5562, + "Label": "78938-5562 via Adherens from 78994 -> 78995", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78994, + "TargetID": 78995, + "Directional": false + }] + }, { + "ID": 3180, + "SourceStructureID": 78946, + "TargetStructureID": 5562, + "Label": "78946-5562 via Unknown from 78960 -> 78958", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78960, + "TargetID": 78958, + "Directional": false + }] + }, { + "ID": 3181, + "SourceStructureID": 78969, + "TargetStructureID": 5562, + "Label": "78969-5562 via Unknown from 78971 -> 78970", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78971, + "TargetID": 78970, + "Directional": false + }] + }, { + "ID": 3182, + "SourceStructureID": 5562, + "TargetStructureID": 78988, + "Label": "5562-78988 via Unknown from 78989 -> 78990", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78989, + "TargetID": 78990, + "Directional": false + }] + }, { + "ID": 3183, + "SourceStructureID": 5562, + "TargetStructureID": 78991, + "Label": "5562-78991 via BC Conventional Synapse from 63781 -> 78992", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 63781, + "TargetID": 78992, + "Directional": false + }] + }, { + "ID": 3184, + "SourceStructureID": 5562, + "TargetStructureID": 79017, + "Label": "5562-79017 via Adherens from 79164 -> 79165", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79164, + "TargetID": 79165, + "Directional": false + }] + }, { + "ID": 3185, + "SourceStructureID": 5562, + "TargetStructureID": 79026, + "Label": "5562-79026 via Unknown from 134583 -> 134584", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134583, + "TargetID": 134584, + "Directional": false + }] + }, { + "ID": 3186, + "SourceStructureID": 5562, + "TargetStructureID": 79170, + "Label": "5562-79170 via Adherens from 79174 -> 79173", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79174, + "TargetID": 79173, + "Directional": false + }] + }, { + "ID": 3187, + "SourceStructureID": 79175, + "TargetStructureID": 5562, + "Label": "79175-5562 via Adherens from 93088 -> 63836", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93088, + "TargetID": 63836, + "Directional": false + }] + }, { + "ID": 3188, + "SourceStructureID": 5562, + "TargetStructureID": 79189, + "Label": "5562-79189 via Adherens from 63842 -> 79191", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63842, + "TargetID": 79191, + "Directional": false + }] + }, { + "ID": 3189, + "SourceStructureID": 5562, + "TargetStructureID": 79196, + "Label": "5562-79196 via Adherens from 79199 -> 79198", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79199, + "TargetID": 79198, + "Directional": false + }] + }, { + "ID": 3190, + "SourceStructureID": 5562, + "TargetStructureID": 79196, + "Label": "5562-79196 via Unknown from 63845 -> 79197", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 63845, + "TargetID": 79197, + "Directional": false + }] + }, { + "ID": 3191, + "SourceStructureID": 5562, + "TargetStructureID": 79209, + "Label": "5562-79209 via Adherens from 79214 -> 79213", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79214, + "TargetID": 79213, + "Directional": false + }] + }, { + "ID": 3192, + "SourceStructureID": 5562, + "TargetStructureID": 79222, + "Label": "5562-79222 via Adherens from 79221 -> 79223", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79221, + "TargetID": 79223, + "Directional": false + }] + }, { + "ID": 3193, + "SourceStructureID": 5562, + "TargetStructureID": 79224, + "Label": "5562-79224 via Unknown from 79225 -> 79226", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79225, + "TargetID": 79226, + "Directional": false + }] + }, { + "ID": 3194, + "SourceStructureID": 79227, + "TargetStructureID": 5562, + "Label": "79227-5562 via Adherens from 79231 -> 63855", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79231, + "TargetID": 63855, + "Directional": false + }] + }, { + "ID": 3195, + "SourceStructureID": 79623, + "TargetStructureID": 5562, + "Label": "79623-5562 via Adherens from 79624 -> 79622", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79624, + "TargetID": 79622, + "Directional": false + }] + }, { + "ID": 3196, + "SourceStructureID": 79643, + "TargetStructureID": 5562, + "Label": "79643-5562 via Adherens from 79644 -> 63873", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79644, + "TargetID": 63873, + "Directional": false + }] + }, { + "ID": 3197, + "SourceStructureID": 79695, + "TargetStructureID": 5562, + "Label": "79695-5562 via Adherens from 79696 -> 79697", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79696, + "TargetID": 79697, + "Directional": false + }] + }, { + "ID": 3198, + "SourceStructureID": 79735, + "TargetStructureID": 5562, + "Label": "79735-5562 via Adherens from 79736 -> 79737", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79736, + "TargetID": 79737, + "Directional": false + }] + }, { + "ID": 3199, + "SourceStructureID": 79738, + "TargetStructureID": 5562, + "Label": "79738-5562 via Adherens from 79739 -> 79740", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79739, + "TargetID": 79740, + "Directional": false + }] + }, { + "ID": 3200, + "SourceStructureID": 5562, + "TargetStructureID": 79741, + "Label": "5562-79741 via Adherens from 81867 -> 81868", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81867, + "TargetID": 81868, + "Directional": false + }] + }, { + "ID": 3201, + "SourceStructureID": 5562, + "TargetStructureID": 79747, + "Label": "5562-79747 via Adherens from 63891 -> 79748", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63891, + "TargetID": 79748, + "Directional": false + }] + }, { + "ID": 3202, + "SourceStructureID": 5562, + "TargetStructureID": 79758, + "Label": "5562-79758 via Unknown from 79759 -> 79760", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79759, + "TargetID": 79760, + "Directional": false + }] + }, { + "ID": 3203, + "SourceStructureID": 79761, + "TargetStructureID": 5562, + "Label": "79761-5562 via Adherens from 79762 -> 79763", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79762, + "TargetID": 79763, + "Directional": false + }] + }, { + "ID": 3204, + "SourceStructureID": 5562, + "TargetStructureID": 79770, + "Label": "5562-79770 via Unknown from 79769 -> 79771", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79769, + "TargetID": 79771, + "Directional": false + }] + }, { + "ID": 3205, + "SourceStructureID": 79772, + "TargetStructureID": 5562, + "Label": "79772-5562 via Adherens from 79774 -> 79775", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79774, + "TargetID": 79775, + "Directional": false + }] + }, { + "ID": 3206, + "SourceStructureID": 5562, + "TargetStructureID": 79776, + "Label": "5562-79776 via Unknown from 79777 -> 79778", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79777, + "TargetID": 79778, + "Directional": false + }] + }, { + "ID": 3207, + "SourceStructureID": 5562, + "TargetStructureID": 79791, + "Label": "5562-79791 via Unknown from 79789 -> 79792", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79789, + "TargetID": 79792, + "Directional": false + }] + }, { + "ID": 3208, + "SourceStructureID": 5562, + "TargetStructureID": 79797, + "Label": "5562-79797 via Adherens from 63916 -> 79801", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 63916, + "TargetID": 79801, + "Directional": false + }] + }, { + "ID": 3209, + "SourceStructureID": 79805, + "TargetStructureID": 5562, + "Label": "79805-5562 via Unknown from 79806 -> 79807", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79806, + "TargetID": 79807, + "Directional": false + }] + }, { + "ID": 3210, + "SourceStructureID": 79808, + "TargetStructureID": 5562, + "Label": "79808-5562 via Unknown from 79831 -> 79812", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79831, + "TargetID": 79812, + "Directional": false + }] + }, { + "ID": 3211, + "SourceStructureID": 5562, + "TargetStructureID": 79818, + "Label": "5562-79818 via Unknown from 79819 -> 79820", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79819, + "TargetID": 79820, + "Directional": false + }] + }, { + "ID": 3212, + "SourceStructureID": 79837, + "TargetStructureID": 5562, + "Label": "79837-5562 via Unknown from 79839 -> 79838", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79839, + "TargetID": 79838, + "Directional": false + }] + }, { + "ID": 3213, + "SourceStructureID": 5562, + "TargetStructureID": 79898, + "Label": "5562-79898 via Unknown from 79897 -> 79899", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79897, + "TargetID": 79899, + "Directional": false + }] + }, { + "ID": 3214, + "SourceStructureID": 5562, + "TargetStructureID": 80209, + "Label": "5562-80209 via Adherens from 80225 -> 80226", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80225, + "TargetID": 80226, + "Directional": false + }] + }, { + "ID": 3215, + "SourceStructureID": 5562, + "TargetStructureID": 80213, + "Label": "5562-80213 via Unknown from 80216 -> 80217", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80216, + "TargetID": 80217, + "Directional": false + }] + }, { + "ID": 3216, + "SourceStructureID": 80229, + "TargetStructureID": 5562, + "Label": "80229-5562 via Unknown from 80230 -> 80227", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80230, + "TargetID": 80227, + "Directional": false + }] + }, { + "ID": 3217, + "SourceStructureID": 80232, + "TargetStructureID": 5562, + "Label": "80232-5562 via Adherens from 80234 -> 80233", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80234, + "TargetID": 80233, + "Directional": false + }] + }, { + "ID": 3218, + "SourceStructureID": 80253, + "TargetStructureID": 5562, + "Label": "80253-5562 via Unknown from 80271 -> 80272", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80271, + "TargetID": 80272, + "Directional": false + }] + }, { + "ID": 3219, + "SourceStructureID": 5562, + "TargetStructureID": 80296, + "Label": "5562-80296 via Unknown from 80298 -> 80300", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80298, + "TargetID": 80300, + "Directional": false + }] + }, { + "ID": 3220, + "SourceStructureID": 80331, + "TargetStructureID": 5562, + "Label": "80331-5562 via Adherens from 80332 -> 80330", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80332, + "TargetID": 80330, + "Directional": false + }] + }, { + "ID": 3221, + "SourceStructureID": 80338, + "TargetStructureID": 5562, + "Label": "80338-5562 via Adherens from 80339 -> 80340", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80339, + "TargetID": 80340, + "Directional": false + }] + }, { + "ID": 3222, + "SourceStructureID": 80350, + "TargetStructureID": 5562, + "Label": "80350-5562 via Adherens from 80351 -> 80352", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80351, + "TargetID": 80352, + "Directional": false + }] + }, { + "ID": 3223, + "SourceStructureID": 5562, + "TargetStructureID": 80359, + "Label": "5562-80359 via Unknown from 63296 -> 80360", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 63296, + "TargetID": 80360, + "Directional": false + }] + }, { + "ID": 3224, + "SourceStructureID": 5562, + "TargetStructureID": 80364, + "Label": "5562-80364 via Unknown from 80370 -> 80371", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80370, + "TargetID": 80371, + "Directional": false + }] + }, { + "ID": 3225, + "SourceStructureID": 5562, + "TargetStructureID": 80368, + "Label": "5562-80368 via Unknown from 80367 -> 80369", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80367, + "TargetID": 80369, + "Directional": false + }] + }, { + "ID": 3226, + "SourceStructureID": 5562, + "TargetStructureID": 80374, + "Label": "5562-80374 via Unknown from 80375 -> 80376", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80375, + "TargetID": 80376, + "Directional": false + }] + }, { + "ID": 3227, + "SourceStructureID": 80378, + "TargetStructureID": 5562, + "Label": "80378-5562 via Adherens from 93087 -> 80377", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93087, + "TargetID": 80377, + "Directional": false + }] + }, { + "ID": 3228, + "SourceStructureID": 5562, + "TargetStructureID": 80399, + "Label": "5562-80399 via Gap Junction from 63284 -> 80676", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63284, + "TargetID": 80676, + "Directional": false + }] + }, { + "ID": 3229, + "SourceStructureID": 80401, + "TargetStructureID": 5562, + "Label": "80401-5562 via Unknown from 80694 -> 80695", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80694, + "TargetID": 80695, + "Directional": false + }] + }, { + "ID": 3230, + "SourceStructureID": 80697, + "TargetStructureID": 5562, + "Label": "80697-5562 via Unknown from 80698 -> 80699", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80698, + "TargetID": 80699, + "Directional": false + }] + }, { + "ID": 3231, + "SourceStructureID": 80702, + "TargetStructureID": 5562, + "Label": "80702-5562 via Unknown from 80704 -> 80705", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80704, + "TargetID": 80705, + "Directional": false + }] + }, { + "ID": 3232, + "SourceStructureID": 80795, + "TargetStructureID": 5562, + "Label": "80795-5562 via Adherens from 80796 -> 63312", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80796, + "TargetID": 63312, + "Directional": false + }] + }, { + "ID": 3233, + "SourceStructureID": 80811, + "TargetStructureID": 5562, + "Label": "80811-5562 via Adherens from 80812 -> 80813", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80812, + "TargetID": 80813, + "Directional": false + }] + }, { + "ID": 3234, + "SourceStructureID": 5562, + "TargetStructureID": 80823, + "Label": "5562-80823 via Adherens from 80822 -> 80824", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80822, + "TargetID": 80824, + "Directional": false + }] + }, { + "ID": 3235, + "SourceStructureID": 5562, + "TargetStructureID": 80836, + "Label": "5562-80836 via Unknown from 80837 -> 80838", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80837, + "TargetID": 80838, + "Directional": false + }] + }, { + "ID": 3236, + "SourceStructureID": 5562, + "TargetStructureID": 80839, + "Label": "5562-80839 via Unknown from 80840 -> 80841", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80840, + "TargetID": 80841, + "Directional": false + }] + }, { + "ID": 3237, + "SourceStructureID": 5562, + "TargetStructureID": 80876, + "Label": "5562-80876 via Adherens from 80888 -> 80887", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80888, + "TargetID": 80887, + "Directional": false + }] + }, { + "ID": 3238, + "SourceStructureID": 5562, + "TargetStructureID": 80885, + "Label": "5562-80885 via Unknown from 126890 -> 126891", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126890, + "TargetID": 126891, + "Directional": false + }] + }, { + "ID": 3239, + "SourceStructureID": 80900, + "TargetStructureID": 5562, + "Label": "80900-5562 via Adherens from 134633 -> 134632", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134633, + "TargetID": 134632, + "Directional": false + }] + }, { + "ID": 3240, + "SourceStructureID": 80900, + "TargetStructureID": 5562, + "Label": "80900-5562 via Unknown from 80901 -> 64194", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80901, + "TargetID": 64194, + "Directional": false + }] + }, { + "ID": 3241, + "SourceStructureID": 5562, + "TargetStructureID": 81712, + "Label": "5562-81712 via Unknown from 78544 -> 81713", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78544, + "TargetID": 81713, + "Directional": false + }] + }, { + "ID": 3242, + "SourceStructureID": 81799, + "TargetStructureID": 5562, + "Label": "81799-5562 via Unknown from 81843 -> 81841", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81843, + "TargetID": 81841, + "Directional": false + }] + }, { + "ID": 3243, + "SourceStructureID": 5562, + "TargetStructureID": 81810, + "Label": "5562-81810 via Adherens from 77243 -> 81812", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77243, + "TargetID": 81812, + "Directional": false + }] + }, { + "ID": 3244, + "SourceStructureID": 84530, + "TargetStructureID": 5562, + "Label": "84530-5562 via Unknown from 134651 -> 134650", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134651, + "TargetID": 134650, + "Directional": false + }] + }, { + "ID": 3245, + "SourceStructureID": 89312, + "TargetStructureID": 5562, + "Label": "89312-5562 via Unknown from 116713 -> 78189", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116713, + "TargetID": 78189, + "Directional": false + }] + }, { + "ID": 3246, + "SourceStructureID": 5563, + "TargetStructureID": 8037, + "Label": "5563-8037 via Adherens from 32392 -> 32391", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 32392, + "TargetID": 32391, + "Directional": false + }] + }, { + "ID": 3247, + "SourceStructureID": 5565, + "TargetStructureID": 5568, + "Label": "5565-5568 via Gap Junction from 50174 -> 50374, 50847 -> 50364, 121318 -> 121317", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50174, + "TargetID": 50374, + "Directional": false + }, { + "SourceID": 50847, + "TargetID": 50364, + "Directional": false + }, { + "SourceID": 121318, + "TargetID": 121317, + "Directional": false + }] + }, { + "ID": 3248, + "SourceStructureID": 7024, + "TargetStructureID": 5565, + "Label": "7024-5565 via Gap Junction from 114150 -> 115305", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 114150, + "TargetID": 115305, + "Directional": false + }] + }, { + "ID": 3249, + "SourceStructureID": 5565, + "TargetStructureID": 7040, + "Label": "5565-7040 via Gap Junction from 37692 -> 50890, 50191 -> 50316, 136157 -> 50192, 136164 -> 136163", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 37692, + "TargetID": 50890, + "Directional": false + }, { + "SourceID": 50191, + "TargetID": 50316, + "Directional": false + }, { + "SourceID": 136157, + "TargetID": 50192, + "Directional": false + }, { + "SourceID": 136164, + "TargetID": 136163, + "Directional": false + }] + }, { + "ID": 3250, + "SourceStructureID": 5565, + "TargetStructureID": 7050, + "Label": "5565-7050 via Gap Junction from 32484 -> 14312", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 32484, + "TargetID": 14312, + "Directional": false + }] + }, { + "ID": 3251, + "SourceStructureID": 5565, + "TargetStructureID": 8037, + "Label": "5565-8037 via Gap Junction from 50235 -> 50236, 50814 -> 136198, 50823 -> 50822, 50827 -> 24600, 50839 -> 50838, 136194 -> 136197, 136196 -> 136195, 148264 -> 148265", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50235, + "TargetID": 50236, + "Directional": false + }, { + "SourceID": 50814, + "TargetID": 136198, + "Directional": false + }, { + "SourceID": 50823, + "TargetID": 50822, + "Directional": false + }, { + "SourceID": 50827, + "TargetID": 24600, + "Directional": false + }, { + "SourceID": 50839, + "TargetID": 50838, + "Directional": false + }, { + "SourceID": 136194, + "TargetID": 136197, + "Directional": false + }, { + "SourceID": 136196, + "TargetID": 136195, + "Directional": false + }, { + "SourceID": 148264, + "TargetID": 148265, + "Directional": false + }] + }, { + "ID": 3252, + "SourceStructureID": 5565, + "TargetStructureID": 8038, + "Label": "5565-8038 via Gap Junction from 37694 -> 50330, 37708 -> 37709, 37710 -> 37711, 50169 -> 50980, 68923 -> 68922", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 37694, + "TargetID": 50330, + "Directional": false + }, { + "SourceID": 37708, + "TargetID": 37709, + "Directional": false + }, { + "SourceID": 37710, + "TargetID": 37711, + "Directional": false + }, { + "SourceID": 50169, + "TargetID": 50980, + "Directional": false + }, { + "SourceID": 68923, + "TargetID": 68922, + "Directional": false + }] + }, { + "ID": 3253, + "SourceStructureID": 5566, + "TargetStructureID": 59262, + "Label": "5566-59262 via Gap Junction from 59266 -> 59264, 59324 -> 59322", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59266, + "TargetID": 59264, + "Directional": false + }, { + "SourceID": 59324, + "TargetID": 59322, + "Directional": false + }] + }, { + "ID": 3254, + "SourceStructureID": 5566, + "TargetStructureID": 59278, + "Label": "5566-59278 via Gap Junction from 59269 -> 59279", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59269, + "TargetID": 59279, + "Directional": false + }] + }, { + "ID": 3255, + "SourceStructureID": 59280, + "TargetStructureID": 5566, + "Label": "59280-5566 via Gap Junction from 59281 -> 59267", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59281, + "TargetID": 59267, + "Directional": false + }] + }, { + "ID": 3256, + "SourceStructureID": 59310, + "TargetStructureID": 5566, + "Label": "59310-5566 via Gap Junction from 59311 -> 59309", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59311, + "TargetID": 59309, + "Directional": false + }] + }, { + "ID": 3257, + "SourceStructureID": 8037, + "TargetStructureID": 5568, + "Label": "8037-5568 via Touch from 148214 -> 148213", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 148214, + "TargetID": 148213, + "Directional": false + }] + }, { + "ID": 3258, + "SourceStructureID": 5568, + "TargetStructureID": 46388, + "Label": "5568-46388 via Gap Junction from 121399 -> 121398, 121429 -> 121428, 121475 -> 121474, 121482 -> 121481", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121399, + "TargetID": 121398, + "Directional": false + }, { + "SourceID": 121429, + "TargetID": 121428, + "Directional": false + }, { + "SourceID": 121475, + "TargetID": 121474, + "Directional": false + }, { + "SourceID": 121482, + "TargetID": 121481, + "Directional": false + }] + }, { + "ID": 3259, + "SourceStructureID": 5568, + "TargetStructureID": 50449, + "Label": "5568-50449 via Gap Junction from 49971 -> 50487, 50389 -> 50659, 99185 -> 50622, 120841 -> 120840, 120850 -> 99176, 120853 -> 120852, 121342 -> 121341, 121360 -> 121358, 121417 -> 121416, 121479 -> 121478, 121512 -> 121513, 121532 -> 121533", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49971, + "TargetID": 50487, + "Directional": false + }, { + "SourceID": 50389, + "TargetID": 50659, + "Directional": false + }, { + "SourceID": 99185, + "TargetID": 50622, + "Directional": false + }, { + "SourceID": 120841, + "TargetID": 120840, + "Directional": false + }, { + "SourceID": 120850, + "TargetID": 99176, + "Directional": false + }, { + "SourceID": 120853, + "TargetID": 120852, + "Directional": false + }, { + "SourceID": 121342, + "TargetID": 121341, + "Directional": false + }, { + "SourceID": 121360, + "TargetID": 121358, + "Directional": false + }, { + "SourceID": 121417, + "TargetID": 121416, + "Directional": false + }, { + "SourceID": 121479, + "TargetID": 121478, + "Directional": false + }, { + "SourceID": 121512, + "TargetID": 121513, + "Directional": false + }, { + "SourceID": 121532, + "TargetID": 121533, + "Directional": false + }] + }, { + "ID": 3260, + "SourceStructureID": 5568, + "TargetStructureID": 56714, + "Label": "5568-56714 via Unknown from 121225 -> 121226", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121225, + "TargetID": 121226, + "Directional": false + }] + }, { + "ID": 3261, + "SourceStructureID": 5575, + "TargetStructureID": 5575, + "Label": "5575-5575 via Adherens from 22963 -> 22962", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 22963, + "TargetID": 22962, + "Directional": false + }] + }, { + "ID": 3262, + "SourceStructureID": 6156, + "TargetStructureID": 5575, + "Label": "6156-5575 via Unknown from 133149 -> 133150", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133149, + "TargetID": 133150, + "Directional": false + }] + }, { + "ID": 3263, + "SourceStructureID": 5575, + "TargetStructureID": 7568, + "Label": "5575-7568 via Adherens from 27063 -> 27062, 27065 -> 27064", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 27063, + "TargetID": 27062, + "Directional": false + }, { + "SourceID": 27065, + "TargetID": 27064, + "Directional": false + }] + }, { + "ID": 3264, + "SourceStructureID": 5584, + "TargetStructureID": 5584, + "Label": "5584-5584 via Gap Junction from 126922 -> 126923", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 126922, + "TargetID": 126923, + "Directional": false + }] + }, { + "ID": 3265, + "SourceStructureID": 5584, + "TargetStructureID": 5592, + "Label": "5584-5592 via Gap Junction from 38964 -> 36845, 121801 -> 121800, 121802 -> 57409, 121804 -> 121803, 121807 -> 121806", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38964, + "TargetID": 36845, + "Directional": false + }, { + "SourceID": 121801, + "TargetID": 121800, + "Directional": false + }, { + "SourceID": 121802, + "TargetID": 57409, + "Directional": false + }, { + "SourceID": 121804, + "TargetID": 121803, + "Directional": false + }, { + "SourceID": 121807, + "TargetID": 121806, + "Directional": false + }] + }, { + "ID": 3266, + "SourceStructureID": 5598, + "TargetStructureID": 5584, + "Label": "5598-5584 via Adherens from 123871 -> 123870, 124473 -> 124474, 126934 -> 126935, 126953 -> 126954", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123871, + "TargetID": 123870, + "Directional": false + }, { + "SourceID": 124473, + "TargetID": 124474, + "Directional": false + }, { + "SourceID": 126934, + "TargetID": 126935, + "Directional": false + }, { + "SourceID": 126953, + "TargetID": 126954, + "Directional": false + }] + }, { + "ID": 3267, + "SourceStructureID": 5584, + "TargetStructureID": 5598, + "Label": "5584-5598 via Gap Junction from 37927 -> 37926, 57124 -> 57123, 114469 -> 114468, 114472 -> 114471, 114479 -> 114476, 114585 -> 114584, 115077 -> 115076, 115131 -> 57183, 123820 -> 123821, 124250 -> 124251, 126920 -> 126921, 147989 -> 147990", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 37927, + "TargetID": 37926, + "Directional": false + }, { + "SourceID": 57124, + "TargetID": 57123, + "Directional": false + }, { + "SourceID": 114469, + "TargetID": 114468, + "Directional": false + }, { + "SourceID": 114472, + "TargetID": 114471, + "Directional": false + }, { + "SourceID": 114479, + "TargetID": 114476, + "Directional": false + }, { + "SourceID": 114585, + "TargetID": 114584, + "Directional": false + }, { + "SourceID": 115077, + "TargetID": 115076, + "Directional": false + }, { + "SourceID": 115131, + "TargetID": 57183, + "Directional": false + }, { + "SourceID": 123820, + "TargetID": 123821, + "Directional": false + }, { + "SourceID": 124250, + "TargetID": 124251, + "Directional": false + }, { + "SourceID": 126920, + "TargetID": 126921, + "Directional": false + }, { + "SourceID": 147989, + "TargetID": 147990, + "Directional": false + }] + }, { + "ID": 3268, + "SourceStructureID": 5584, + "TargetStructureID": 5598, + "Label": "5584-5598 via Touch from 123875 -> 123876", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 123875, + "TargetID": 123876, + "Directional": false + }] + }, { + "ID": 3269, + "SourceStructureID": 6047, + "TargetStructureID": 5584, + "Label": "6047-5584 via Gap Junction from 113320 -> 113321", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 113320, + "TargetID": 113321, + "Directional": false + }] + }, { + "ID": 3270, + "SourceStructureID": 6203, + "TargetStructureID": 5584, + "Label": "6203-5584 via Gap Junction from 57221 -> 57220", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57221, + "TargetID": 57220, + "Directional": false + }] + }, { + "ID": 3271, + "SourceStructureID": 7114, + "TargetStructureID": 5584, + "Label": "7114-5584 via Adherens from 124464 -> 124465", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124464, + "TargetID": 124465, + "Directional": false + }] + }, { + "ID": 3272, + "SourceStructureID": 15976, + "TargetStructureID": 5584, + "Label": "15976-5584 via Gap Junction from 57357 -> 57356", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57357, + "TargetID": 57356, + "Directional": false + }] + }, { + "ID": 3273, + "SourceStructureID": 57178, + "TargetStructureID": 5584, + "Label": "57178-5584 via Unknown from 124248 -> 124249", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124248, + "TargetID": 124249, + "Directional": false + }] + }, { + "ID": 3274, + "SourceStructureID": 57218, + "TargetStructureID": 5584, + "Label": "57218-5584 via Gap Junction from 57219 -> 57217", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57219, + "TargetID": 57217, + "Directional": false + }] + }, { + "ID": 3275, + "SourceStructureID": 57360, + "TargetStructureID": 5584, + "Label": "57360-5584 via Gap Junction from 57361 -> 57359, 57363 -> 57362", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57361, + "TargetID": 57359, + "Directional": false + }, { + "SourceID": 57363, + "TargetID": 57362, + "Directional": false + }] + }, { + "ID": 3276, + "SourceStructureID": 57487, + "TargetStructureID": 5584, + "Label": "57487-5584 via Gap Junction from 57488 -> 57406", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57488, + "TargetID": 57406, + "Directional": false + }] + }, { + "ID": 3277, + "SourceStructureID": 126901, + "TargetStructureID": 5584, + "Label": "126901-5584 via Adherens from 126929 -> 126930", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126929, + "TargetID": 126930, + "Directional": false + }] + }, { + "ID": 3278, + "SourceStructureID": 5584, + "TargetStructureID": 126901, + "Label": "5584-126901 via Unknown from 126908 -> 126909", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126908, + "TargetID": 126909, + "Directional": false + }] + }, { + "ID": 3279, + "SourceStructureID": 136465, + "TargetStructureID": 5587, + "Label": "136465-5587 via Gap Junction from 136468 -> 136464", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136468, + "TargetID": 136464, + "Directional": false + }] + }, { + "ID": 3280, + "SourceStructureID": 5592, + "TargetStructureID": 5592, + "Label": "5592-5592 via Gap Junction from 121797 -> 121798", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121797, + "TargetID": 121798, + "Directional": false + }] + }, { + "ID": 3281, + "SourceStructureID": 5592, + "TargetStructureID": 15976, + "Label": "5592-15976 via Gap Junction from 57490 -> 57493", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57490, + "TargetID": 57493, + "Directional": false + }] + }, { + "ID": 3282, + "SourceStructureID": 92954, + "TargetStructureID": 5592, + "Label": "92954-5592 via Gap Junction from 92958 -> 92961, 121756 -> 121755", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92958, + "TargetID": 92961, + "Directional": false + }, { + "SourceID": 121756, + "TargetID": 121755, + "Directional": false + }] + }, { + "ID": 3283, + "SourceStructureID": 122018, + "TargetStructureID": 5596, + "Label": "122018-5596 via Gap Junction from 122019 -> 122017", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122019, + "TargetID": 122017, + "Directional": false + }] + }, { + "ID": 3284, + "SourceStructureID": 5598, + "TargetStructureID": 5598, + "Label": "5598-5598 via Gap Junction from 115287 -> 45199, 124164 -> 124165", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115287, + "TargetID": 45199, + "Directional": false + }, { + "SourceID": 124164, + "TargetID": 124165, + "Directional": false + }] + }, { + "ID": 3285, + "SourceStructureID": 5598, + "TargetStructureID": 5601, + "Label": "5598-5601 via Gap Junction from 123806 -> 123805", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123806, + "TargetID": 123805, + "Directional": false + }] + }, { + "ID": 3286, + "SourceStructureID": 5598, + "TargetStructureID": 5641, + "Label": "5598-5641 via Adherens from 124052 -> 124053, 126939 -> 126940, 147995 -> 147996", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124052, + "TargetID": 124053, + "Directional": false + }, { + "SourceID": 126939, + "TargetID": 126940, + "Directional": false + }, { + "SourceID": 147995, + "TargetID": 147996, + "Directional": false + }] + }, { + "ID": 3287, + "SourceStructureID": 5641, + "TargetStructureID": 5598, + "Label": "5641-5598 via Gap Junction from 57507 -> 57484, 114964 -> 114966, 114971 -> 114970, 114985 -> 114986, 114999 -> 114998, 115011 -> 115010, 115030 -> 115028, 115047 -> 115046, 123810 -> 114962, 123816 -> 114967, 124229 -> 124228, 124230 -> 124231, 124241 -> 124242, 124438 -> 124437, 124443 -> 124444, 124478 -> 124479", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57507, + "TargetID": 57484, + "Directional": false + }, { + "SourceID": 114964, + "TargetID": 114966, + "Directional": false + }, { + "SourceID": 114971, + "TargetID": 114970, + "Directional": false + }, { + "SourceID": 114985, + "TargetID": 114986, + "Directional": false + }, { + "SourceID": 114999, + "TargetID": 114998, + "Directional": false + }, { + "SourceID": 115011, + "TargetID": 115010, + "Directional": false + }, { + "SourceID": 115030, + "TargetID": 115028, + "Directional": false + }, { + "SourceID": 115047, + "TargetID": 115046, + "Directional": false + }, { + "SourceID": 123810, + "TargetID": 114962, + "Directional": false + }, { + "SourceID": 123816, + "TargetID": 114967, + "Directional": false + }, { + "SourceID": 124229, + "TargetID": 124228, + "Directional": false + }, { + "SourceID": 124230, + "TargetID": 124231, + "Directional": false + }, { + "SourceID": 124241, + "TargetID": 124242, + "Directional": false + }, { + "SourceID": 124438, + "TargetID": 124437, + "Directional": false + }, { + "SourceID": 124443, + "TargetID": 124444, + "Directional": false + }, { + "SourceID": 124478, + "TargetID": 124479, + "Directional": false + }] + }, { + "ID": 3288, + "SourceStructureID": 5598, + "TargetStructureID": 6047, + "Label": "5598-6047 via Gap Junction from 45200 -> 30637, 113319 -> 113318, 113793 -> 113792", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45200, + "TargetID": 30637, + "Directional": false + }, { + "SourceID": 113319, + "TargetID": 113318, + "Directional": false + }, { + "SourceID": 113793, + "TargetID": 113792, + "Directional": false + }] + }, { + "ID": 3289, + "SourceStructureID": 5598, + "TargetStructureID": 6203, + "Label": "5598-6203 via Gap Junction from 124470 -> 124469", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 124470, + "TargetID": 124469, + "Directional": false + }] + }, { + "ID": 3290, + "SourceStructureID": 7113, + "TargetStructureID": 5598, + "Label": "7113-5598 via Adherens from 126938 -> 126937, 126958 -> 126957, 126959 -> 126960", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126938, + "TargetID": 126937, + "Directional": false + }, { + "SourceID": 126958, + "TargetID": 126957, + "Directional": false + }, { + "SourceID": 126959, + "TargetID": 126960, + "Directional": false + }] + }, { + "ID": 3291, + "SourceStructureID": 7113, + "TargetStructureID": 5598, + "Label": "7113-5598 via Gap Junction from 24311 -> 115032, 32417 -> 27344, 32418 -> 27343, 36023 -> 27342, 36024 -> 36025, 57082 -> 27353, 82080 -> 82081, 91506 -> 91505, 114600 -> 27345, 115005 -> 115004, 115017 -> 115016, 115036 -> 115035, 124078 -> 124077, 124083 -> 124082, 124092 -> 124091, 124247 -> 124246", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24311, + "TargetID": 115032, + "Directional": false + }, { + "SourceID": 32417, + "TargetID": 27344, + "Directional": false + }, { + "SourceID": 32418, + "TargetID": 27343, + "Directional": false + }, { + "SourceID": 36023, + "TargetID": 27342, + "Directional": false + }, { + "SourceID": 36024, + "TargetID": 36025, + "Directional": false + }, { + "SourceID": 57082, + "TargetID": 27353, + "Directional": false + }, { + "SourceID": 82080, + "TargetID": 82081, + "Directional": false + }, { + "SourceID": 91506, + "TargetID": 91505, + "Directional": false + }, { + "SourceID": 114600, + "TargetID": 27345, + "Directional": false + }, { + "SourceID": 115005, + "TargetID": 115004, + "Directional": false + }, { + "SourceID": 115017, + "TargetID": 115016, + "Directional": false + }, { + "SourceID": 115036, + "TargetID": 115035, + "Directional": false + }, { + "SourceID": 124078, + "TargetID": 124077, + "Directional": false + }, { + "SourceID": 124083, + "TargetID": 124082, + "Directional": false + }, { + "SourceID": 124092, + "TargetID": 124091, + "Directional": false + }, { + "SourceID": 124247, + "TargetID": 124246, + "Directional": false + }] + }, { + "ID": 3292, + "SourceStructureID": 5598, + "TargetStructureID": 7114, + "Label": "5598-7114 via Gap Junction from 12557 -> 12522, 52987 -> 52986, 57186 -> 115116, 59068 -> 59067, 115153 -> 115152, 124186 -> 26610, 124208 -> 124209, 124446 -> 124447, 124467 -> 124466", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 12557, + "TargetID": 12522, + "Directional": false + }, { + "SourceID": 52987, + "TargetID": 52986, + "Directional": false + }, { + "SourceID": 57186, + "TargetID": 115116, + "Directional": false + }, { + "SourceID": 59068, + "TargetID": 59067, + "Directional": false + }, { + "SourceID": 115153, + "TargetID": 115152, + "Directional": false + }, { + "SourceID": 124186, + "TargetID": 26610, + "Directional": false + }, { + "SourceID": 124208, + "TargetID": 124209, + "Directional": false + }, { + "SourceID": 124446, + "TargetID": 124447, + "Directional": false + }, { + "SourceID": 124467, + "TargetID": 124466, + "Directional": false + }] + }, { + "ID": 3293, + "SourceStructureID": 5598, + "TargetStructureID": 15977, + "Label": "5598-15977 via Touch from 126945 -> 126946", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 126945, + "TargetID": 126946, + "Directional": false + }] + }, { + "ID": 3294, + "SourceStructureID": 5598, + "TargetStructureID": 35811, + "Label": "5598-35811 via Unknown from 124484 -> 126918", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124484, + "TargetID": 126918, + "Directional": false + }] + }, { + "ID": 3295, + "SourceStructureID": 38949, + "TargetStructureID": 5598, + "Label": "38949-5598 via Adherens from 124476 -> 124475", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124476, + "TargetID": 124475, + "Directional": false + }] + }, { + "ID": 3296, + "SourceStructureID": 5598, + "TargetStructureID": 54698, + "Label": "5598-54698 via Unknown from 115172 -> 115173", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115172, + "TargetID": 115173, + "Directional": false + }] + }, { + "ID": 3297, + "SourceStructureID": 5598, + "TargetStructureID": 57178, + "Label": "5598-57178 via Unknown from 57177 -> 57181", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 57177, + "TargetID": 57181, + "Directional": false + }] + }, { + "ID": 3298, + "SourceStructureID": 57299, + "TargetStructureID": 5598, + "Label": "57299-5598 via Adherens from 123855 -> 123856", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123855, + "TargetID": 123856, + "Directional": false + }] + }, { + "ID": 3299, + "SourceStructureID": 73348, + "TargetStructureID": 5598, + "Label": "73348-5598 via Adherens from 124603 -> 124602", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124603, + "TargetID": 124602, + "Directional": false + }] + }, { + "ID": 3300, + "SourceStructureID": 91578, + "TargetStructureID": 5598, + "Label": "91578-5598 via Adherens from 114939 -> 114938", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 114939, + "TargetID": 114938, + "Directional": false + }] + }, { + "ID": 3301, + "SourceStructureID": 5598, + "TargetStructureID": 114618, + "Label": "5598-114618 via Unknown from 57104 -> 114619", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 57104, + "TargetID": 114619, + "Directional": false + }] + }, { + "ID": 3302, + "SourceStructureID": 5598, + "TargetStructureID": 114996, + "Label": "5598-114996 via Adherens from 115034 -> 123790", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115034, + "TargetID": 123790, + "Directional": false + }] + }, { + "ID": 3303, + "SourceStructureID": 114996, + "TargetStructureID": 5598, + "Label": "114996-5598 via Unknown from 124049 -> 124048, 124051 -> 124050", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124049, + "TargetID": 124048, + "Directional": false + }, { + "SourceID": 124051, + "TargetID": 124050, + "Directional": false + }] + }, { + "ID": 3304, + "SourceStructureID": 5598, + "TargetStructureID": 115007, + "Label": "5598-115007 via Adherens from 115009 -> 115008", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 115009, + "TargetID": 115008, + "Directional": false + }] + }, { + "ID": 3305, + "SourceStructureID": 5598, + "TargetStructureID": 115118, + "Label": "5598-115118 via Gap Junction from 148028 -> 148029, 148031 -> 148030", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 148028, + "TargetID": 148029, + "Directional": false + }, { + "SourceID": 148031, + "TargetID": 148030, + "Directional": false + }] + }, { + "ID": 3306, + "SourceStructureID": 115291, + "TargetStructureID": 5598, + "Label": "115291-5598 via Unknown from 124193 -> 124192", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124193, + "TargetID": 124192, + "Directional": false + }] + }, { + "ID": 3307, + "SourceStructureID": 116142, + "TargetStructureID": 5598, + "Label": "116142-5598 via Unknown from 115281 -> 115279, 124194 -> 124195", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115281, + "TargetID": 115279, + "Directional": false + }, { + "SourceID": 124194, + "TargetID": 124195, + "Directional": false + }] + }, { + "ID": 3308, + "SourceStructureID": 5598, + "TargetStructureID": 124069, + "Label": "5598-124069 via Unknown from 124072 -> 124073, 124090 -> 126916, 126913 -> 124081, 147987 -> 147988", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124072, + "TargetID": 124073, + "Directional": false + }, { + "SourceID": 124090, + "TargetID": 126916, + "Directional": false + }, { + "SourceID": 126913, + "TargetID": 124081, + "Directional": false + }, { + "SourceID": 147987, + "TargetID": 147988, + "Directional": false + }] + }, { + "ID": 3309, + "SourceStructureID": 5598, + "TargetStructureID": 126901, + "Label": "5598-126901 via Unknown from 124605 -> 126932, 126907 -> 114453, 126910 -> 114583", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124605, + "TargetID": 126932, + "Directional": false + }, { + "SourceID": 126907, + "TargetID": 114453, + "Directional": false + }, { + "SourceID": 126910, + "TargetID": 114583, + "Directional": false + }] + }, { + "ID": 3310, + "SourceStructureID": 5601, + "TargetStructureID": 5599, + "Label": "5601-5599 via Gap Junction from 92521 -> 92522", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92521, + "TargetID": 92522, + "Directional": false + }] + }, { + "ID": 3311, + "SourceStructureID": 5599, + "TargetStructureID": 5635, + "Label": "5599-5635 via Gap Junction from 55948 -> 55947, 66592 -> 66593, 117765 -> 117764, 117766 -> 56138, 117772 -> 117769", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55948, + "TargetID": 55947, + "Directional": false + }, { + "SourceID": 66592, + "TargetID": 66593, + "Directional": false + }, { + "SourceID": 117765, + "TargetID": 117764, + "Directional": false + }, { + "SourceID": 117766, + "TargetID": 56138, + "Directional": false + }, { + "SourceID": 117772, + "TargetID": 117769, + "Directional": false + }] + }, { + "ID": 3312, + "SourceStructureID": 5638, + "TargetStructureID": 5599, + "Label": "5638-5599 via Gap Junction from 117195 -> 117194", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117195, + "TargetID": 117194, + "Directional": false + }] + }, { + "ID": 3313, + "SourceStructureID": 5860, + "TargetStructureID": 5599, + "Label": "5860-5599 via Gap Junction from 38332 -> 38331, 118432 -> 118431", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38332, + "TargetID": 38331, + "Directional": false + }, { + "SourceID": 118432, + "TargetID": 118431, + "Directional": false + }] + }, { + "ID": 3314, + "SourceStructureID": 5599, + "TargetStructureID": 6115, + "Label": "5599-6115 via Adherens from 72333 -> 72334, 73231 -> 73232, 73954 -> 73955, 75846 -> 75847, 135178 -> 135179", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72333, + "TargetID": 72334, + "Directional": false + }, { + "SourceID": 73231, + "TargetID": 73232, + "Directional": false + }, { + "SourceID": 73954, + "TargetID": 73955, + "Directional": false + }, { + "SourceID": 75846, + "TargetID": 75847, + "Directional": false + }, { + "SourceID": 135178, + "TargetID": 135179, + "Directional": false + }] + }, { + "ID": 3315, + "SourceStructureID": 6115, + "TargetStructureID": 5599, + "Label": "6115-5599 via Gap Junction from 56158 -> 56157, 56258 -> 74006, 56308 -> 73944, 73234 -> 73233, 75511 -> 75510, 116741 -> 116742, 116745 -> 116746", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56158, + "TargetID": 56157, + "Directional": false + }, { + "SourceID": 56258, + "TargetID": 74006, + "Directional": false + }, { + "SourceID": 56308, + "TargetID": 73944, + "Directional": false + }, { + "SourceID": 73234, + "TargetID": 73233, + "Directional": false + }, { + "SourceID": 75511, + "TargetID": 75510, + "Directional": false + }, { + "SourceID": 116741, + "TargetID": 116742, + "Directional": false + }, { + "SourceID": 116745, + "TargetID": 116746, + "Directional": false + }] + }, { + "ID": 3316, + "SourceStructureID": 5599, + "TargetStructureID": 7113, + "Label": "5599-7113 via Gap Junction from 27352 -> 27351, 37913 -> 37912, 118424 -> 118425, 118430 -> 118429, 128734 -> 128735", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 27352, + "TargetID": 27351, + "Directional": false + }, { + "SourceID": 37913, + "TargetID": 37912, + "Directional": false + }, { + "SourceID": 118424, + "TargetID": 118425, + "Directional": false + }, { + "SourceID": 118430, + "TargetID": 118429, + "Directional": false + }, { + "SourceID": 128734, + "TargetID": 128735, + "Directional": false + }] + }, { + "ID": 3317, + "SourceStructureID": 7114, + "TargetStructureID": 5599, + "Label": "7114-5599 via Gap Junction from 116822 -> 116821", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116822, + "TargetID": 116821, + "Directional": false + }] + }, { + "ID": 3318, + "SourceStructureID": 5599, + "TargetStructureID": 7231, + "Label": "5599-7231 via Adherens from 117017 -> 117016", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117017, + "TargetID": 117016, + "Directional": false + }] + }, { + "ID": 3319, + "SourceStructureID": 15977, + "TargetStructureID": 5599, + "Label": "15977-5599 via Adherens from 116938 -> 116937, 117192 -> 117191", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116938, + "TargetID": 116937, + "Directional": false + }, { + "SourceID": 117192, + "TargetID": 117191, + "Directional": false + }] + }, { + "ID": 3320, + "SourceStructureID": 15977, + "TargetStructureID": 5599, + "Label": "15977-5599 via Gap Junction from 33955 -> 115585, 56319 -> 56321, 117193 -> 117189", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 33955, + "TargetID": 115585, + "Directional": false + }, { + "SourceID": 56319, + "TargetID": 56321, + "Directional": false + }, { + "SourceID": 117193, + "TargetID": 117189, + "Directional": false + }] + }, { + "ID": 3321, + "SourceStructureID": 5599, + "TargetStructureID": 72299, + "Label": "5599-72299 via Gap Junction from 56154 -> 82116", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56154, + "TargetID": 82116, + "Directional": false + }] + }, { + "ID": 3322, + "SourceStructureID": 5599, + "TargetStructureID": 131156, + "Label": "5599-131156 via Gap Junction from 56126 -> 133802", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56126, + "TargetID": 133802, + "Directional": false + }] + }, { + "ID": 3323, + "SourceStructureID": 5600, + "TargetStructureID": 6958, + "Label": "5600-6958 via Adherens from 116668 -> 116636, 116687 -> 116686", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116668, + "TargetID": 116636, + "Directional": false + }, { + "SourceID": 116687, + "TargetID": 116686, + "Directional": false + }] + }, { + "ID": 3324, + "SourceStructureID": 5600, + "TargetStructureID": 7113, + "Label": "5600-7113 via Gap Junction from 117246 -> 27356", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117246, + "TargetID": 27356, + "Directional": false + }] + }, { + "ID": 3325, + "SourceStructureID": 7114, + "TargetStructureID": 5600, + "Label": "7114-5600 via Gap Junction from 26617 -> 26623, 71355 -> 26616, 116685 -> 122902, 116826 -> 116825, 116830 -> 116824, 124449 -> 124450, 124451 -> 124452", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 26617, + "TargetID": 26623, + "Directional": false + }, { + "SourceID": 71355, + "TargetID": 26616, + "Directional": false + }, { + "SourceID": 116685, + "TargetID": 122902, + "Directional": false + }, { + "SourceID": 116826, + "TargetID": 116825, + "Directional": false + }, { + "SourceID": 116830, + "TargetID": 116824, + "Directional": false + }, { + "SourceID": 124449, + "TargetID": 124450, + "Directional": false + }, { + "SourceID": 124451, + "TargetID": 124452, + "Directional": false + }] + }, { + "ID": 3326, + "SourceStructureID": 7231, + "TargetStructureID": 5600, + "Label": "7231-5600 via Unknown from 116998 -> 116997", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 116998, + "TargetID": 116997, + "Directional": false + }] + }, { + "ID": 3327, + "SourceStructureID": 39319, + "TargetStructureID": 5600, + "Label": "39319-5600 via Adherens from 121945 -> 121944", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 121945, + "TargetID": 121944, + "Directional": false + }] + }, { + "ID": 3328, + "SourceStructureID": 5601, + "TargetStructureID": 5601, + "Label": "5601-5601 via Gap Junction from 127568 -> 135646", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 127568, + "TargetID": 135646, + "Directional": false + }] + }, { + "ID": 3329, + "SourceStructureID": 5601, + "TargetStructureID": 5637, + "Label": "5601-5637 via Gap Junction from 56029 -> 56028, 127622 -> 127623", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56029, + "TargetID": 56028, + "Directional": false + }, { + "SourceID": 127622, + "TargetID": 127623, + "Directional": false + }] + }, { + "ID": 3330, + "SourceStructureID": 5637, + "TargetStructureID": 5601, + "Label": "5637-5601 via Touch from 91482 -> 91481, 135630 -> 135631", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 91482, + "TargetID": 91481, + "Directional": false + }, { + "SourceID": 135630, + "TargetID": 135631, + "Directional": false + }] + }, { + "ID": 3331, + "SourceStructureID": 5650, + "TargetStructureID": 5601, + "Label": "5650-5601 via Gap Junction from 56107 -> 56106", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56107, + "TargetID": 56106, + "Directional": false + }] + }, { + "ID": 3332, + "SourceStructureID": 5601, + "TargetStructureID": 6117, + "Label": "5601-6117 via Gap Junction from 45391 -> 30915, 60117 -> 60056", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45391, + "TargetID": 30915, + "Directional": false + }, { + "SourceID": 60117, + "TargetID": 60056, + "Directional": false + }] + }, { + "ID": 3333, + "SourceStructureID": 5601, + "TargetStructureID": 7113, + "Label": "5601-7113 via Gap Junction from 15250 -> 15246, 29944 -> 29946, 29945 -> 29942, 54474 -> 54473, 54801 -> 54800, 91431 -> 91430, 92106 -> 127187, 124059 -> 124058", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 15250, + "TargetID": 15246, + "Directional": false + }, { + "SourceID": 29944, + "TargetID": 29946, + "Directional": false + }, { + "SourceID": 29945, + "TargetID": 29942, + "Directional": false + }, { + "SourceID": 54474, + "TargetID": 54473, + "Directional": false + }, { + "SourceID": 54801, + "TargetID": 54800, + "Directional": false + }, { + "SourceID": 91431, + "TargetID": 91430, + "Directional": false + }, { + "SourceID": 92106, + "TargetID": 127187, + "Directional": false + }, { + "SourceID": 124059, + "TargetID": 124058, + "Directional": false + }] + }, { + "ID": 3334, + "SourceStructureID": 5601, + "TargetStructureID": 7114, + "Label": "5601-7114 via Gap Junction from 36037 -> 122807, 57372 -> 57371, 134797 -> 127519", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 36037, + "TargetID": 122807, + "Directional": false + }, { + "SourceID": 57372, + "TargetID": 57371, + "Directional": false + }, { + "SourceID": 134797, + "TargetID": 127519, + "Directional": false + }] + }, { + "ID": 3335, + "SourceStructureID": 7114, + "TargetStructureID": 5601, + "Label": "7114-5601 via Touch from 135628 -> 135629", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 135628, + "TargetID": 135629, + "Directional": false + }] + }, { + "ID": 3336, + "SourceStructureID": 9769, + "TargetStructureID": 5601, + "Label": "9769-5601 via Adherens from 127377 -> 127376, 127561 -> 127562", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127377, + "TargetID": 127376, + "Directional": false + }, { + "SourceID": 127561, + "TargetID": 127562, + "Directional": false + }] + }, { + "ID": 3337, + "SourceStructureID": 9769, + "TargetStructureID": 5601, + "Label": "9769-5601 via Unknown from 127211 -> 127210, 127566 -> 127567", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127211, + "TargetID": 127210, + "Directional": false + }, { + "SourceID": 127566, + "TargetID": 127567, + "Directional": false + }] + }, { + "ID": 3338, + "SourceStructureID": 5601, + "TargetStructureID": 11229, + "Label": "5601-11229 via Gap Junction from 58588 -> 58587, 91444 -> 15633, 91480 -> 135680", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 58588, + "TargetID": 58587, + "Directional": false + }, { + "SourceID": 91444, + "TargetID": 15633, + "Directional": false + }, { + "SourceID": 91480, + "TargetID": 135680, + "Directional": false + }] + }, { + "ID": 3339, + "SourceStructureID": 5601, + "TargetStructureID": 23836, + "Label": "5601-23836 via Adherens from 127427 -> 127431", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127427, + "TargetID": 127431, + "Directional": false + }] + }, { + "ID": 3340, + "SourceStructureID": 33057, + "TargetStructureID": 5601, + "Label": "33057-5601 via Unknown from 127564 -> 127563", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127564, + "TargetID": 127563, + "Directional": false + }] + }, { + "ID": 3341, + "SourceStructureID": 34055, + "TargetStructureID": 5601, + "Label": "34055-5601 via Unknown from 127166 -> 127165", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127166, + "TargetID": 127165, + "Directional": false + }] + }, { + "ID": 3342, + "SourceStructureID": 5601, + "TargetStructureID": 35180, + "Label": "5601-35180 via Unknown from 127576 -> 127577", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127576, + "TargetID": 127577, + "Directional": false + }] + }, { + "ID": 3343, + "SourceStructureID": 56108, + "TargetStructureID": 5601, + "Label": "56108-5601 via Unknown from 56109 -> 56105", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 56109, + "TargetID": 56105, + "Directional": false + }] + }, { + "ID": 3344, + "SourceStructureID": 5601, + "TargetStructureID": 58757, + "Label": "5601-58757 via Adherens from 127416 -> 127420", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127416, + "TargetID": 127420, + "Directional": false + }] + }, { + "ID": 3345, + "SourceStructureID": 5601, + "TargetStructureID": 84118, + "Label": "5601-84118 via Adherens from 127617 -> 127618", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127617, + "TargetID": 127618, + "Directional": false + }] + }, { + "ID": 3346, + "SourceStructureID": 5601, + "TargetStructureID": 158859, + "Label": "5601-158859 via Unknown from 126894 -> 158860", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126894, + "TargetID": 158860, + "Directional": false + }] + }, { + "ID": 3347, + "SourceStructureID": 5606, + "TargetStructureID": 5607, + "Label": "5606-5607 via Adherens from 36905 -> 38962", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 36905, + "TargetID": 38962, + "Directional": false + }] + }, { + "ID": 3348, + "SourceStructureID": 5606, + "TargetStructureID": 5607, + "Label": "5606-5607 via Gap Junction from 36907 -> 38963, 38946 -> 38944, 43051 -> 43050, 121851 -> 121850", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 36907, + "TargetID": 38963, + "Directional": false + }, { + "SourceID": 38946, + "TargetID": 38944, + "Directional": false + }, { + "SourceID": 43051, + "TargetID": 43050, + "Directional": false + }, { + "SourceID": 121851, + "TargetID": 121850, + "Directional": false + }] + }, { + "ID": 3349, + "SourceStructureID": 5606, + "TargetStructureID": 5608, + "Label": "5606-5608 via Gap Junction from 42843 -> 42842, 120880 -> 120879", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 42843, + "TargetID": 42842, + "Directional": false + }, { + "SourceID": 120880, + "TargetID": 120879, + "Directional": false + }] + }, { + "ID": 3350, + "SourceStructureID": 5637, + "TargetStructureID": 5606, + "Label": "5637-5606 via Gap Junction from 92987 -> 92988", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92987, + "TargetID": 92988, + "Directional": false + }] + }, { + "ID": 3351, + "SourceStructureID": 5607, + "TargetStructureID": 5637, + "Label": "5607-5637 via Gap Junction from 121841 -> 121840", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121841, + "TargetID": 121840, + "Directional": false + }] + }, { + "ID": 3352, + "SourceStructureID": 5607, + "TargetStructureID": 7149, + "Label": "5607-7149 via Gap Junction from 121831 -> 121829", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121831, + "TargetID": 121829, + "Directional": false + }] + }, { + "ID": 3353, + "SourceStructureID": 7279, + "TargetStructureID": 5607, + "Label": "7279-5607 via Gap Junction from 38943 -> 38942, 121847 -> 121846, 121849 -> 121848, 123519 -> 123518", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38943, + "TargetID": 38942, + "Directional": false + }, { + "SourceID": 121847, + "TargetID": 121846, + "Directional": false + }, { + "SourceID": 121849, + "TargetID": 121848, + "Directional": false + }, { + "SourceID": 123519, + "TargetID": 123518, + "Directional": false + }] + }, { + "ID": 3354, + "SourceStructureID": 58682, + "TargetStructureID": 5607, + "Label": "58682-5607 via Gap Junction from 58683 -> 54865", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 58683, + "TargetID": 54865, + "Directional": false + }] + }, { + "ID": 3355, + "SourceStructureID": 5637, + "TargetStructureID": 5608, + "Label": "5637-5608 via Gap Junction from 56013 -> 147523, 121837 -> 121836, 121842 -> 121843, 147525 -> 147524, 147527 -> 147526", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56013, + "TargetID": 147523, + "Directional": false + }, { + "SourceID": 121837, + "TargetID": 121836, + "Directional": false + }, { + "SourceID": 121842, + "TargetID": 121843, + "Directional": false + }, { + "SourceID": 147525, + "TargetID": 147524, + "Directional": false + }, { + "SourceID": 147527, + "TargetID": 147526, + "Directional": false + }] + }, { + "ID": 3356, + "SourceStructureID": 5608, + "TargetStructureID": 44256, + "Label": "5608-44256 via Gap Junction from 118335 -> 120572, 123110 -> 123108, 123111 -> 123112, 123113 -> 123114", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118335, + "TargetID": 120572, + "Directional": false + }, { + "SourceID": 123110, + "TargetID": 123108, + "Directional": false + }, { + "SourceID": 123111, + "TargetID": 123112, + "Directional": false + }, { + "SourceID": 123113, + "TargetID": 123114, + "Directional": false + }] + }, { + "ID": 3357, + "SourceStructureID": 7113, + "TargetStructureID": 5609, + "Label": "7113-5609 via Adherens from 54796 -> 54797", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54796, + "TargetID": 54797, + "Directional": false + }] + }, { + "ID": 3358, + "SourceStructureID": 30332, + "TargetStructureID": 5618, + "Label": "30332-5618 via Gap Junction from 66008 -> 66007", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 66008, + "TargetID": 66007, + "Directional": false + }] + }, { + "ID": 3359, + "SourceStructureID": 5618, + "TargetStructureID": 66004, + "Label": "5618-66004 via Adherens from 66003 -> 66005", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66003, + "TargetID": 66005, + "Directional": false + }] + }, { + "ID": 3360, + "SourceStructureID": 5623, + "TargetStructureID": 5623, + "Label": "5623-5623 via Gap Junction from 123704 -> 123702", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123704, + "TargetID": 123702, + "Directional": false + }] + }, { + "ID": 3361, + "SourceStructureID": 5623, + "TargetStructureID": 6589, + "Label": "5623-6589 via Gap Junction from 130631 -> 130630", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130631, + "TargetID": 130630, + "Directional": false + }] + }, { + "ID": 3362, + "SourceStructureID": 5623, + "TargetStructureID": 6997, + "Label": "5623-6997 via Adherens from 136653 -> 136652, 136768 -> 136769", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136653, + "TargetID": 136652, + "Directional": false + }, { + "SourceID": 136768, + "TargetID": 136769, + "Directional": false + }] + }, { + "ID": 3363, + "SourceStructureID": 6997, + "TargetStructureID": 5623, + "Label": "6997-5623 via Gap Junction from 40384 -> 40383, 52738 -> 52739", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 40384, + "TargetID": 40383, + "Directional": false + }, { + "SourceID": 52738, + "TargetID": 52739, + "Directional": false + }] + }, { + "ID": 3364, + "SourceStructureID": 5623, + "TargetStructureID": 94784, + "Label": "5623-94784 via Adherens from 94786 -> 94787", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 94786, + "TargetID": 94787, + "Directional": false + }] + }, { + "ID": 3365, + "SourceStructureID": 5631, + "TargetStructureID": 69537, + "Label": "5631-69537 via Adherens from 69594 -> 69593", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 69594, + "TargetID": 69593, + "Directional": false + }] + }, { + "ID": 3366, + "SourceStructureID": 5860, + "TargetStructureID": 5635, + "Label": "5860-5635 via Gap Junction from 28806 -> 28805, 55960 -> 55959, 135577 -> 135578, 147677 -> 24728", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 28806, + "TargetID": 28805, + "Directional": false + }, { + "SourceID": 55960, + "TargetID": 55959, + "Directional": false + }, { + "SourceID": 135577, + "TargetID": 135578, + "Directional": false + }, { + "SourceID": 147677, + "TargetID": 24728, + "Directional": false + }] + }, { + "ID": 3367, + "SourceStructureID": 5637, + "TargetStructureID": 5641, + "Label": "5637-5641 via Gap Junction from 54787 -> 39054, 54789 -> 54788, 55820 -> 55819, 58566 -> 58565", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54787, + "TargetID": 39054, + "Directional": false + }, { + "SourceID": 54789, + "TargetID": 54788, + "Directional": false + }, { + "SourceID": 55820, + "TargetID": 55819, + "Directional": false + }, { + "SourceID": 58566, + "TargetID": 58565, + "Directional": false + }] + }, { + "ID": 3368, + "SourceStructureID": 7113, + "TargetStructureID": 5637, + "Label": "7113-5637 via Gap Junction from 54799 -> 54794", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54799, + "TargetID": 54794, + "Directional": false + }] + }, { + "ID": 3369, + "SourceStructureID": 5637, + "TargetStructureID": 7114, + "Label": "5637-7114 via Gap Junction from 31387 -> 31386, 135627 -> 56056", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 31387, + "TargetID": 31386, + "Directional": false + }, { + "SourceID": 135627, + "TargetID": 56056, + "Directional": false + }] + }, { + "ID": 3370, + "SourceStructureID": 5637, + "TargetStructureID": 11229, + "Label": "5637-11229 via Gap Junction from 39082 -> 39083, 58575 -> 58574, 135679 -> 56047, 135681 -> 56040", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 39082, + "TargetID": 39083, + "Directional": false + }, { + "SourceID": 58575, + "TargetID": 58574, + "Directional": false + }, { + "SourceID": 135679, + "TargetID": 56047, + "Directional": false + }, { + "SourceID": 135681, + "TargetID": 56040, + "Directional": false + }] + }, { + "ID": 3371, + "SourceStructureID": 5638, + "TargetStructureID": 7279, + "Label": "5638-7279 via Gap Junction from 117181 -> 118943", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117181, + "TargetID": 118943, + "Directional": false + }] + }, { + "ID": 3372, + "SourceStructureID": 15977, + "TargetStructureID": 5638, + "Label": "15977-5638 via Adherens from 33976 -> 33975", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 33976, + "TargetID": 33975, + "Directional": false + }] + }, { + "ID": 3373, + "SourceStructureID": 5638, + "TargetStructureID": 15977, + "Label": "5638-15977 via Gap Junction from 56419 -> 56418, 60603 -> 60602, 117089 -> 117088, 117103 -> 117102, 117177 -> 117176", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56419, + "TargetID": 56418, + "Directional": false + }, { + "SourceID": 60603, + "TargetID": 60602, + "Directional": false + }, { + "SourceID": 117089, + "TargetID": 117088, + "Directional": false + }, { + "SourceID": 117103, + "TargetID": 117102, + "Directional": false + }, { + "SourceID": 117177, + "TargetID": 117176, + "Directional": false + }] + }, { + "ID": 3374, + "SourceStructureID": 25182, + "TargetStructureID": 5638, + "Label": "25182-5638 via Adherens from 25187 -> 66242", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 25187, + "TargetID": 66242, + "Directional": false + }] + }, { + "ID": 3375, + "SourceStructureID": 71411, + "TargetStructureID": 5638, + "Label": "71411-5638 via Gap Junction from 71959 -> 71404", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71959, + "TargetID": 71404, + "Directional": false + }] + }, { + "ID": 3376, + "SourceStructureID": 117112, + "TargetStructureID": 5638, + "Label": "117112-5638 via Gap Junction from 117114 -> 117111, 117116 -> 117115", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117114, + "TargetID": 117111, + "Directional": false + }, { + "SourceID": 117116, + "TargetID": 117115, + "Directional": false + }] + }, { + "ID": 3377, + "SourceStructureID": 117127, + "TargetStructureID": 5638, + "Label": "117127-5638 via Gap Junction from 117128 -> 117126", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117128, + "TargetID": 117126, + "Directional": false + }] + }, { + "ID": 3378, + "SourceStructureID": 5640, + "TargetStructureID": 5640, + "Label": "5640-5640 via Gap Junction from 136431 -> 136430", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136431, + "TargetID": 136430, + "Directional": false + }] + }, { + "ID": 3379, + "SourceStructureID": 136427, + "TargetStructureID": 5640, + "Label": "136427-5640 via Gap Junction from 136428 -> 136426", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136428, + "TargetID": 136426, + "Directional": false + }] + }, { + "ID": 3380, + "SourceStructureID": 7113, + "TargetStructureID": 5641, + "Label": "7113-5641 via Postsynapse from 124054 -> 124055", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 124054, + "TargetID": 124055, + "Directional": false + }] + }, { + "ID": 3381, + "SourceStructureID": 15976, + "TargetStructureID": 5641, + "Label": "15976-5641 via Gap Junction from 57520 -> 57519, 58564 -> 57516", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57520, + "TargetID": 57519, + "Directional": false + }, { + "SourceID": 58564, + "TargetID": 57516, + "Directional": false + }] + }, { + "ID": 3382, + "SourceStructureID": 124069, + "TargetStructureID": 5641, + "Label": "124069-5641 via Unknown from 147985 -> 147986", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 147985, + "TargetID": 147986, + "Directional": false + }] + }, { + "ID": 3383, + "SourceStructureID": 30177, + "TargetStructureID": 5643, + "Label": "30177-5643 via Gap Junction from 131968 -> 131969", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131968, + "TargetID": 131969, + "Directional": false + }] + }, { + "ID": 3384, + "SourceStructureID": 5645, + "TargetStructureID": 5645, + "Label": "5645-5645 via Gap Junction from 47100 -> 47099, 135383 -> 135382", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47100, + "TargetID": 47099, + "Directional": false + }, { + "SourceID": 135383, + "TargetID": 135382, + "Directional": false + }] + }, { + "ID": 3385, + "SourceStructureID": 5645, + "TargetStructureID": 5649, + "Label": "5645-5649 via Adherens from 135434 -> 135433", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135434, + "TargetID": 135433, + "Directional": false + }] + }, { + "ID": 3386, + "SourceStructureID": 5645, + "TargetStructureID": 5649, + "Label": "5645-5649 via Gap Junction from 54526 -> 54297, 108495 -> 108484, 108496 -> 108486", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54526, + "TargetID": 54297, + "Directional": false + }, { + "SourceID": 108495, + "TargetID": 108484, + "Directional": false + }, { + "SourceID": 108496, + "TargetID": 108486, + "Directional": false + }] + }, { + "ID": 3387, + "SourceStructureID": 5645, + "TargetStructureID": 5916, + "Label": "5645-5916 via Gap Junction from 109476 -> 109473", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 109476, + "TargetID": 109473, + "Directional": false + }] + }, { + "ID": 3388, + "SourceStructureID": 6121, + "TargetStructureID": 5645, + "Label": "6121-5645 via Touch from 147839 -> 147838", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 147839, + "TargetID": 147838, + "Directional": false + }] + }, { + "ID": 3389, + "SourceStructureID": 6142, + "TargetStructureID": 5645, + "Label": "6142-5645 via Gap Junction from 108667 -> 108647", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 108667, + "TargetID": 108647, + "Directional": false + }] + }, { + "ID": 3390, + "SourceStructureID": 7904, + "TargetStructureID": 5645, + "Label": "7904-5645 via Gap Junction from 54315 -> 54314, 105842 -> 105841, 108583 -> 108581, 108591 -> 108588, 122376 -> 122377, 130621 -> 130620", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54315, + "TargetID": 54314, + "Directional": false + }, { + "SourceID": 105842, + "TargetID": 105841, + "Directional": false + }, { + "SourceID": 108583, + "TargetID": 108581, + "Directional": false + }, { + "SourceID": 108591, + "TargetID": 108588, + "Directional": false + }, { + "SourceID": 122376, + "TargetID": 122377, + "Directional": false + }, { + "SourceID": 130621, + "TargetID": 130620, + "Directional": false + }] + }, { + "ID": 3391, + "SourceStructureID": 5645, + "TargetStructureID": 7951, + "Label": "5645-7951 via Gap Junction from 47695 -> 118977, 118976 -> 118975, 118978 -> 47719, 118987 -> 47750", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47695, + "TargetID": 118977, + "Directional": false + }, { + "SourceID": 118976, + "TargetID": 118975, + "Directional": false + }, { + "SourceID": 118978, + "TargetID": 47719, + "Directional": false + }, { + "SourceID": 118987, + "TargetID": 47750, + "Directional": false + }] + }, { + "ID": 3392, + "SourceStructureID": 8032, + "TargetStructureID": 5645, + "Label": "8032-5645 via Gap Junction from 147836 -> 147835", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 147836, + "TargetID": 147835, + "Directional": false + }] + }, { + "ID": 3393, + "SourceStructureID": 31334, + "TargetStructureID": 5645, + "Label": "31334-5645 via Gap Junction from 47409 -> 31333", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47409, + "TargetID": 31333, + "Directional": false + }] + }, { + "ID": 3394, + "SourceStructureID": 77664, + "TargetStructureID": 5645, + "Label": "77664-5645 via Adherens from 77666 -> 77667", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77666, + "TargetID": 77667, + "Directional": false + }] + }, { + "ID": 3395, + "SourceStructureID": 105780, + "TargetStructureID": 5645, + "Label": "105780-5645 via Gap Junction from 108552 -> 108551", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 108552, + "TargetID": 108551, + "Directional": false + }] + }, { + "ID": 3396, + "SourceStructureID": 5648, + "TargetStructureID": 13469, + "Label": "5648-13469 via Adherens from 130122 -> 130121", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130122, + "TargetID": 130121, + "Directional": false + }] + }, { + "ID": 3397, + "SourceStructureID": 13469, + "TargetStructureID": 5648, + "Label": "13469-5648 via Gap Junction from 130123 -> 130124", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130123, + "TargetID": 130124, + "Directional": false + }] + }, { + "ID": 3398, + "SourceStructureID": 5649, + "TargetStructureID": 5649, + "Label": "5649-5649 via Adherens from 104603 -> 104604", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104603, + "TargetID": 104604, + "Directional": false + }] + }, { + "ID": 3399, + "SourceStructureID": 5649, + "TargetStructureID": 5649, + "Label": "5649-5649 via Gap Junction from 108489 -> 108488, 134965 -> 134966", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 108489, + "TargetID": 108488, + "Directional": false + }, { + "SourceID": 134965, + "TargetID": 134966, + "Directional": false + }] + }, { + "ID": 3400, + "SourceStructureID": 5649, + "TargetStructureID": 5916, + "Label": "5649-5916 via Adherens from 134978 -> 134977", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134978, + "TargetID": 134977, + "Directional": false + }] + }, { + "ID": 3401, + "SourceStructureID": 5649, + "TargetStructureID": 5916, + "Label": "5649-5916 via Gap Junction from 54116 -> 71971, 71973 -> 71972", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54116, + "TargetID": 71971, + "Directional": false + }, { + "SourceID": 71973, + "TargetID": 71972, + "Directional": false + }] + }, { + "ID": 3402, + "SourceStructureID": 6115, + "TargetStructureID": 5649, + "Label": "6115-5649 via Adherens from 131168 -> 131169", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131168, + "TargetID": 131169, + "Directional": false + }] + }, { + "ID": 3403, + "SourceStructureID": 6115, + "TargetStructureID": 5649, + "Label": "6115-5649 via Gap Junction from 55753 -> 55752, 55888 -> 55886, 60057 -> 76140, 75439 -> 105395, 134958 -> 134957", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55753, + "TargetID": 55752, + "Directional": false + }, { + "SourceID": 55888, + "TargetID": 55886, + "Directional": false + }, { + "SourceID": 60057, + "TargetID": 76140, + "Directional": false + }, { + "SourceID": 75439, + "TargetID": 105395, + "Directional": false + }, { + "SourceID": 134958, + "TargetID": 134957, + "Directional": false + }] + }, { + "ID": 3404, + "SourceStructureID": 5649, + "TargetStructureID": 6120, + "Label": "5649-6120 via Gap Junction from 111023 -> 114843", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 111023, + "TargetID": 114843, + "Directional": false + }] + }, { + "ID": 3405, + "SourceStructureID": 5649, + "TargetStructureID": 6142, + "Label": "5649-6142 via Gap Junction from 38492 -> 38491, 106031 -> 106030", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38492, + "TargetID": 38491, + "Directional": false + }, { + "SourceID": 106031, + "TargetID": 106030, + "Directional": false + }] + }, { + "ID": 3406, + "SourceStructureID": 7147, + "TargetStructureID": 5649, + "Label": "7147-5649 via Gap Junction from 30302 -> 55750, 134960 -> 134959", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 30302, + "TargetID": 55750, + "Directional": false + }, { + "SourceID": 134960, + "TargetID": 134959, + "Directional": false + }] + }, { + "ID": 3407, + "SourceStructureID": 5649, + "TargetStructureID": 12897, + "Label": "5649-12897 via Gap Junction from 54101 -> 54099, 107217 -> 107216, 107366 -> 107365, 134407 -> 134406, 134967 -> 134968", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54101, + "TargetID": 54099, + "Directional": false + }, { + "SourceID": 107217, + "TargetID": 107216, + "Directional": false + }, { + "SourceID": 107366, + "TargetID": 107365, + "Directional": false + }, { + "SourceID": 134407, + "TargetID": 134406, + "Directional": false + }, { + "SourceID": 134967, + "TargetID": 134968, + "Directional": false + }] + }, { + "ID": 3408, + "SourceStructureID": 5649, + "TargetStructureID": 16026, + "Label": "5649-16026 via Adherens from 124801 -> 124800", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124801, + "TargetID": 124800, + "Directional": false + }] + }, { + "ID": 3409, + "SourceStructureID": 16026, + "TargetStructureID": 5649, + "Label": "16026-5649 via Touch from 134438 -> 134439", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 134438, + "TargetID": 134439, + "Directional": false + }] + }, { + "ID": 3410, + "SourceStructureID": 35064, + "TargetStructureID": 5649, + "Label": "35064-5649 via Unknown from 53902 -> 53901", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 53902, + "TargetID": 53901, + "Directional": false + }] + }, { + "ID": 3411, + "SourceStructureID": 5649, + "TargetStructureID": 65172, + "Label": "5649-65172 via Unknown from 111025 -> 111024", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111025, + "TargetID": 111024, + "Directional": false + }] + }, { + "ID": 3412, + "SourceStructureID": 67671, + "TargetStructureID": 5649, + "Label": "67671-5649 via Adherens from 78002 -> 78003", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78002, + "TargetID": 78003, + "Directional": false + }] + }, { + "ID": 3413, + "SourceStructureID": 68153, + "TargetStructureID": 5649, + "Label": "68153-5649 via Adherens from 68175 -> 68176", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68175, + "TargetID": 68176, + "Directional": false + }] + }, { + "ID": 3414, + "SourceStructureID": 5649, + "TargetStructureID": 68497, + "Label": "5649-68497 via Adherens from 81591 -> 81590", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81591, + "TargetID": 81590, + "Directional": false + }] + }, { + "ID": 3415, + "SourceStructureID": 5649, + "TargetStructureID": 73313, + "Label": "5649-73313 via Adherens from 135174 -> 135175", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135174, + "TargetID": 135175, + "Directional": false + }] + }, { + "ID": 3416, + "SourceStructureID": 5649, + "TargetStructureID": 78909, + "Label": "5649-78909 via Adherens from 87519 -> 87518", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87519, + "TargetID": 87518, + "Directional": false + }] + }, { + "ID": 3417, + "SourceStructureID": 5649, + "TargetStructureID": 92926, + "Label": "5649-92926 via Adherens from 75686 -> 75685", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75686, + "TargetID": 75685, + "Directional": false + }] + }, { + "ID": 3418, + "SourceStructureID": 5649, + "TargetStructureID": 92926, + "Label": "5649-92926 via Unknown from 53835 -> 75684", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 53835, + "TargetID": 75684, + "Directional": false + }] + }, { + "ID": 3419, + "SourceStructureID": 103774, + "TargetStructureID": 5649, + "Label": "103774-5649 via Unknown from 134837 -> 134838", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134837, + "TargetID": 134838, + "Directional": false + }] + }, { + "ID": 3420, + "SourceStructureID": 5649, + "TargetStructureID": 104480, + "Label": "5649-104480 via Unknown from 104482 -> 104481", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104482, + "TargetID": 104481, + "Directional": false + }] + }, { + "ID": 3421, + "SourceStructureID": 5649, + "TargetStructureID": 104484, + "Label": "5649-104484 via Adherens from 104483 -> 104485", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104483, + "TargetID": 104485, + "Directional": false + }] + }, { + "ID": 3422, + "SourceStructureID": 104559, + "TargetStructureID": 5649, + "Label": "104559-5649 via Unknown from 104562 -> 104563", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104562, + "TargetID": 104563, + "Directional": false + }] + }, { + "ID": 3423, + "SourceStructureID": 104616, + "TargetStructureID": 5649, + "Label": "104616-5649 via Adherens from 136135 -> 136134", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136135, + "TargetID": 136134, + "Directional": false + }] + }, { + "ID": 3424, + "SourceStructureID": 104633, + "TargetStructureID": 5649, + "Label": "104633-5649 via Unknown from 104635 -> 53842", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104635, + "TargetID": 53842, + "Directional": false + }] + }, { + "ID": 3425, + "SourceStructureID": 5649, + "TargetStructureID": 104721, + "Label": "5649-104721 via Adherens from 135419 -> 135418", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135419, + "TargetID": 135418, + "Directional": false + }] + }, { + "ID": 3426, + "SourceStructureID": 104721, + "TargetStructureID": 5649, + "Label": "104721-5649 via Gap Junction from 104722 -> 53889", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 104722, + "TargetID": 53889, + "Directional": false + }] + }, { + "ID": 3427, + "SourceStructureID": 104791, + "TargetStructureID": 5649, + "Label": "104791-5649 via Adherens from 134848 -> 134847", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134848, + "TargetID": 134847, + "Directional": false + }] + }, { + "ID": 3428, + "SourceStructureID": 104794, + "TargetStructureID": 5649, + "Label": "104794-5649 via Unknown from 104795 -> 104793", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104795, + "TargetID": 104793, + "Directional": false + }] + }, { + "ID": 3429, + "SourceStructureID": 5649, + "TargetStructureID": 104796, + "Label": "5649-104796 via Unknown from 104798 -> 104797", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104798, + "TargetID": 104797, + "Directional": false + }] + }, { + "ID": 3430, + "SourceStructureID": 5649, + "TargetStructureID": 105333, + "Label": "5649-105333 via Unknown from 134861 -> 134860", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134861, + "TargetID": 134860, + "Directional": false + }] + }, { + "ID": 3431, + "SourceStructureID": 5649, + "TargetStructureID": 105393, + "Label": "5649-105393 via Unknown from 134872 -> 134871", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134872, + "TargetID": 134871, + "Directional": false + }] + }, { + "ID": 3432, + "SourceStructureID": 5649, + "TargetStructureID": 105426, + "Label": "5649-105426 via Unknown from 135156 -> 135157", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135156, + "TargetID": 135157, + "Directional": false + }] + }, { + "ID": 3433, + "SourceStructureID": 105547, + "TargetStructureID": 5649, + "Label": "105547-5649 via Adherens from 134893 -> 134892", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134893, + "TargetID": 134892, + "Directional": false + }] + }, { + "ID": 3434, + "SourceStructureID": 105580, + "TargetStructureID": 5649, + "Label": "105580-5649 via Conventional from 105582 -> 105583", + "Type": "Conventional", + "Directional": false, + "Links": [{ + "SourceID": 105582, + "TargetID": 105583, + "Directional": false + }] + }, { + "ID": 3435, + "SourceStructureID": 105673, + "TargetStructureID": 5649, + "Label": "105673-5649 via Adherens from 105691 -> 53905", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 105691, + "TargetID": 53905, + "Directional": false + }] + }, { + "ID": 3436, + "SourceStructureID": 5649, + "TargetStructureID": 105676, + "Label": "5649-105676 via Unknown from 134899 -> 134900", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134899, + "TargetID": 134900, + "Directional": false + }] + }, { + "ID": 3437, + "SourceStructureID": 105704, + "TargetStructureID": 5649, + "Label": "105704-5649 via Unknown from 134903 -> 134902", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134903, + "TargetID": 134902, + "Directional": false + }] + }, { + "ID": 3438, + "SourceStructureID": 105706, + "TargetStructureID": 5649, + "Label": "105706-5649 via Adherens from 105732 -> 105731", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 105732, + "TargetID": 105731, + "Directional": false + }] + }, { + "ID": 3439, + "SourceStructureID": 105735, + "TargetStructureID": 5649, + "Label": "105735-5649 via Adherens from 135422 -> 135421", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135422, + "TargetID": 135421, + "Directional": false + }] + }, { + "ID": 3440, + "SourceStructureID": 5649, + "TargetStructureID": 105735, + "Label": "5649-105735 via Gap Junction from 53950 -> 105736", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 53950, + "TargetID": 105736, + "Directional": false + }] + }, { + "ID": 3441, + "SourceStructureID": 5649, + "TargetStructureID": 105906, + "Label": "5649-105906 via Unknown from 105911 -> 105910", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105911, + "TargetID": 105910, + "Directional": false + }] + }, { + "ID": 3442, + "SourceStructureID": 105908, + "TargetStructureID": 5649, + "Label": "105908-5649 via Unknown from 134910 -> 134909", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134910, + "TargetID": 134909, + "Directional": false + }] + }, { + "ID": 3443, + "SourceStructureID": 5649, + "TargetStructureID": 106005, + "Label": "5649-106005 via Adherens from 106004 -> 106006", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106004, + "TargetID": 106006, + "Directional": false + }] + }, { + "ID": 3444, + "SourceStructureID": 5649, + "TargetStructureID": 106013, + "Label": "5649-106013 via Unknown from 134961 -> 134962", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134961, + "TargetID": 134962, + "Directional": false + }] + }, { + "ID": 3445, + "SourceStructureID": 106059, + "TargetStructureID": 5649, + "Label": "106059-5649 via Adherens from 135388 -> 131925", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135388, + "TargetID": 131925, + "Directional": false + }] + }, { + "ID": 3446, + "SourceStructureID": 106059, + "TargetStructureID": 5649, + "Label": "106059-5649 via Gap Junction from 135387 -> 131926", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 135387, + "TargetID": 131926, + "Directional": false + }] + }, { + "ID": 3447, + "SourceStructureID": 5649, + "TargetStructureID": 106105, + "Label": "5649-106105 via Unknown from 134916 -> 134915", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134916, + "TargetID": 134915, + "Directional": false + }] + }, { + "ID": 3448, + "SourceStructureID": 106258, + "TargetStructureID": 5649, + "Label": "106258-5649 via Adherens from 106267 -> 106266", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106267, + "TargetID": 106266, + "Directional": false + }] + }, { + "ID": 3449, + "SourceStructureID": 5649, + "TargetStructureID": 106280, + "Label": "5649-106280 via Unknown from 134918 -> 134917", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134918, + "TargetID": 134917, + "Directional": false + }] + }, { + "ID": 3450, + "SourceStructureID": 5649, + "TargetStructureID": 106285, + "Label": "5649-106285 via Adherens from 106284 -> 106286", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106284, + "TargetID": 106286, + "Directional": false + }] + }, { + "ID": 3451, + "SourceStructureID": 106303, + "TargetStructureID": 5649, + "Label": "106303-5649 via Adherens from 106305 -> 54186", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106305, + "TargetID": 54186, + "Directional": false + }] + }, { + "ID": 3452, + "SourceStructureID": 106552, + "TargetStructureID": 5649, + "Label": "106552-5649 via Adherens from 106593 -> 106592", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106593, + "TargetID": 106592, + "Directional": false + }] + }, { + "ID": 3453, + "SourceStructureID": 106703, + "TargetStructureID": 5649, + "Label": "106703-5649 via Adherens from 106704 -> 106702", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106704, + "TargetID": 106702, + "Directional": false + }] + }, { + "ID": 3454, + "SourceStructureID": 106720, + "TargetStructureID": 5649, + "Label": "106720-5649 via Unknown from 106721 -> 106719", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106721, + "TargetID": 106719, + "Directional": false + }] + }, { + "ID": 3455, + "SourceStructureID": 106913, + "TargetStructureID": 5649, + "Label": "106913-5649 via Adherens from 106914 -> 106912", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106914, + "TargetID": 106912, + "Directional": false + }] + }, { + "ID": 3456, + "SourceStructureID": 107054, + "TargetStructureID": 5649, + "Label": "107054-5649 via Adherens from 107057 -> 107053", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107057, + "TargetID": 107053, + "Directional": false + }] + }, { + "ID": 3457, + "SourceStructureID": 5649, + "TargetStructureID": 107078, + "Label": "5649-107078 via Adherens from 107081 -> 107080", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107081, + "TargetID": 107080, + "Directional": false + }] + }, { + "ID": 3458, + "SourceStructureID": 107078, + "TargetStructureID": 5649, + "Label": "107078-5649 via Gap Junction from 131915 -> 131914", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131915, + "TargetID": 131914, + "Directional": false + }] + }, { + "ID": 3459, + "SourceStructureID": 107110, + "TargetStructureID": 5649, + "Label": "107110-5649 via Unknown from 134921 -> 134920", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134921, + "TargetID": 134920, + "Directional": false + }] + }, { + "ID": 3460, + "SourceStructureID": 107117, + "TargetStructureID": 5649, + "Label": "107117-5649 via Unknown from 131917 -> 131916", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131917, + "TargetID": 131916, + "Directional": false + }] + }, { + "ID": 3461, + "SourceStructureID": 5649, + "TargetStructureID": 107134, + "Label": "5649-107134 via Unknown from 134924 -> 134925", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134924, + "TargetID": 134925, + "Directional": false + }] + }, { + "ID": 3462, + "SourceStructureID": 5649, + "TargetStructureID": 107140, + "Label": "5649-107140 via Unknown from 134927 -> 134926", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134927, + "TargetID": 134926, + "Directional": false + }] + }, { + "ID": 3463, + "SourceStructureID": 107182, + "TargetStructureID": 5649, + "Label": "107182-5649 via Postsynapse from 107183 -> 54307", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 107183, + "TargetID": 54307, + "Directional": false + }] + }, { + "ID": 3464, + "SourceStructureID": 107213, + "TargetStructureID": 5649, + "Label": "107213-5649 via Unknown from 131923 -> 131922", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131923, + "TargetID": 131922, + "Directional": false + }] + }, { + "ID": 3465, + "SourceStructureID": 107335, + "TargetStructureID": 5649, + "Label": "107335-5649 via Adherens from 107336 -> 107334", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107336, + "TargetID": 107334, + "Directional": false + }] + }, { + "ID": 3466, + "SourceStructureID": 107339, + "TargetStructureID": 5649, + "Label": "107339-5649 via Adherens from 135369 -> 135370", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135369, + "TargetID": 135370, + "Directional": false + }] + }, { + "ID": 3467, + "SourceStructureID": 5649, + "TargetStructureID": 107339, + "Label": "5649-107339 via Gap Junction from 107317 -> 107341", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 107317, + "TargetID": 107341, + "Directional": false + }] + }, { + "ID": 3468, + "SourceStructureID": 107360, + "TargetStructureID": 5649, + "Label": "107360-5649 via Adherens from 107361 -> 70019", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107361, + "TargetID": 70019, + "Directional": false + }] + }, { + "ID": 3469, + "SourceStructureID": 134950, + "TargetStructureID": 5649, + "Label": "134950-5649 via Unknown from 134951 -> 53966", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134951, + "TargetID": 53966, + "Directional": false + }] + }, { + "ID": 3470, + "SourceStructureID": 134952, + "TargetStructureID": 5649, + "Label": "134952-5649 via Unknown from 134953 -> 54123", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134953, + "TargetID": 54123, + "Directional": false + }] + }, { + "ID": 3471, + "SourceStructureID": 134954, + "TargetStructureID": 5649, + "Label": "134954-5649 via Unknown from 134955 -> 54300", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134955, + "TargetID": 54300, + "Directional": false + }] + }, { + "ID": 3472, + "SourceStructureID": 135401, + "TargetStructureID": 5649, + "Label": "135401-5649 via Adherens from 135403 -> 108184", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135403, + "TargetID": 108184, + "Directional": false + }] + }, { + "ID": 3473, + "SourceStructureID": 135401, + "TargetStructureID": 5649, + "Label": "135401-5649 via Unknown from 135402 -> 134969", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135402, + "TargetID": 134969, + "Directional": false + }] + }, { + "ID": 3474, + "SourceStructureID": 5650, + "TargetStructureID": 5650, + "Label": "5650-5650 via Gap Junction from 103852 -> 103851, 103973 -> 103974, 104166 -> 104167, 104319 -> 104320, 104323 -> 104322, 104472 -> 104471, 105158 -> 105157, 118209 -> 118208, 126400 -> 126401", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 103852, + "TargetID": 103851, + "Directional": false + }, { + "SourceID": 103973, + "TargetID": 103974, + "Directional": false + }, { + "SourceID": 104166, + "TargetID": 104167, + "Directional": false + }, { + "SourceID": 104319, + "TargetID": 104320, + "Directional": false + }, { + "SourceID": 104323, + "TargetID": 104322, + "Directional": false + }, { + "SourceID": 104472, + "TargetID": 104471, + "Directional": false + }, { + "SourceID": 105158, + "TargetID": 105157, + "Directional": false + }, { + "SourceID": 118209, + "TargetID": 118208, + "Directional": false + }, { + "SourceID": 126400, + "TargetID": 126401, + "Directional": false + }] + }, { + "ID": 3475, + "SourceStructureID": 5650, + "TargetStructureID": 5729, + "Label": "5650-5729 via Gap Junction from 102921 -> 102928", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 102921, + "TargetID": 102928, + "Directional": false + }] + }, { + "ID": 3476, + "SourceStructureID": 6047, + "TargetStructureID": 5650, + "Label": "6047-5650 via Gap Junction from 19726 -> 105098", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 19726, + "TargetID": 105098, + "Directional": false + }] + }, { + "ID": 3477, + "SourceStructureID": 5650, + "TargetStructureID": 6117, + "Label": "5650-6117 via Gap Junction from 54324 -> 54325, 60118 -> 23474, 106295 -> 106293, 113293 -> 54317", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54324, + "TargetID": 54325, + "Directional": false + }, { + "SourceID": 60118, + "TargetID": 23474, + "Directional": false + }, { + "SourceID": 106295, + "TargetID": 106293, + "Directional": false + }, { + "SourceID": 113293, + "TargetID": 54317, + "Directional": false + }] + }, { + "ID": 3478, + "SourceStructureID": 5650, + "TargetStructureID": 6118, + "Label": "5650-6118 via Gap Junction from 118196 -> 118195", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118196, + "TargetID": 118195, + "Directional": false + }] + }, { + "ID": 3479, + "SourceStructureID": 6120, + "TargetStructureID": 5650, + "Label": "6120-5650 via Gap Junction from 104272 -> 104271", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 104272, + "TargetID": 104271, + "Directional": false + }] + }, { + "ID": 3480, + "SourceStructureID": 5650, + "TargetStructureID": 7024, + "Label": "5650-7024 via Gap Junction from 93905 -> 93901", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93905, + "TargetID": 93901, + "Directional": false + }] + }, { + "ID": 3481, + "SourceStructureID": 7073, + "TargetStructureID": 5650, + "Label": "7073-5650 via Unknown from 135608 -> 135609", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135608, + "TargetID": 135609, + "Directional": false + }] + }, { + "ID": 3482, + "SourceStructureID": 7147, + "TargetStructureID": 5650, + "Label": "7147-5650 via Gap Junction from 52599 -> 52600, 134984 -> 134983", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52599, + "TargetID": 52600, + "Directional": false + }, { + "SourceID": 134984, + "TargetID": 134983, + "Directional": false + }] + }, { + "ID": 3483, + "SourceStructureID": 9769, + "TargetStructureID": 5650, + "Label": "9769-5650 via Adherens from 104125 -> 104126, 104270 -> 104269, 105051 -> 105052, 106321 -> 106320, 126343 -> 126342, 127300 -> 127301", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104125, + "TargetID": 104126, + "Directional": false + }, { + "SourceID": 104270, + "TargetID": 104269, + "Directional": false + }, { + "SourceID": 105051, + "TargetID": 105052, + "Directional": false + }, { + "SourceID": 106321, + "TargetID": 106320, + "Directional": false + }, { + "SourceID": 126343, + "TargetID": 126342, + "Directional": false + }, { + "SourceID": 127300, + "TargetID": 127301, + "Directional": false + }] + }, { + "ID": 3484, + "SourceStructureID": 12897, + "TargetStructureID": 5650, + "Label": "12897-5650 via Gap Junction from 103664 -> 103665, 103679 -> 103678, 103682 -> 103681, 103829 -> 103828, 134981 -> 134980, 135373 -> 135374", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 103664, + "TargetID": 103665, + "Directional": false + }, { + "SourceID": 103679, + "TargetID": 103678, + "Directional": false + }, { + "SourceID": 103682, + "TargetID": 103681, + "Directional": false + }, { + "SourceID": 103829, + "TargetID": 103828, + "Directional": false + }, { + "SourceID": 134981, + "TargetID": 134980, + "Directional": false + }, { + "SourceID": 135373, + "TargetID": 135374, + "Directional": false + }] + }, { + "ID": 3485, + "SourceStructureID": 5650, + "TargetStructureID": 15796, + "Label": "5650-15796 via Unknown from 124723 -> 134985", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124723, + "TargetID": 134985, + "Directional": false + }] + }, { + "ID": 3486, + "SourceStructureID": 16073, + "TargetStructureID": 5650, + "Label": "16073-5650 via Unknown from 103903 -> 103902", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103903, + "TargetID": 103902, + "Directional": false + }] + }, { + "ID": 3487, + "SourceStructureID": 5650, + "TargetStructureID": 20136, + "Label": "5650-20136 via Gap Junction from 127754 -> 127753", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 127754, + "TargetID": 127753, + "Directional": false + }] + }, { + "ID": 3488, + "SourceStructureID": 5650, + "TargetStructureID": 30130, + "Label": "5650-30130 via Adherens from 103858 -> 103857", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103858, + "TargetID": 103857, + "Directional": false + }] + }, { + "ID": 3489, + "SourceStructureID": 35240, + "TargetStructureID": 5650, + "Label": "35240-5650 via Adherens from 104457 -> 104458", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104457, + "TargetID": 104458, + "Directional": false + }] + }, { + "ID": 3490, + "SourceStructureID": 5650, + "TargetStructureID": 53202, + "Label": "5650-53202 via Unknown from 103849 -> 103850", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103849, + "TargetID": 103850, + "Directional": false + }] + }, { + "ID": 3491, + "SourceStructureID": 5650, + "TargetStructureID": 53407, + "Label": "5650-53407 via Adherens from 103886 -> 103885", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103886, + "TargetID": 103885, + "Directional": false + }] + }, { + "ID": 3492, + "SourceStructureID": 53987, + "TargetStructureID": 5650, + "Label": "53987-5650 via Adherens from 103630 -> 103629", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103630, + "TargetID": 103629, + "Directional": false + }] + }, { + "ID": 3493, + "SourceStructureID": 5650, + "TargetStructureID": 68511, + "Label": "5650-68511 via Unknown from 68515 -> 68514", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 68515, + "TargetID": 68514, + "Directional": false + }] + }, { + "ID": 3494, + "SourceStructureID": 5650, + "TargetStructureID": 102643, + "Label": "5650-102643 via Unknown from 102645 -> 102644", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102645, + "TargetID": 102644, + "Directional": false + }] + }, { + "ID": 3495, + "SourceStructureID": 5650, + "TargetStructureID": 102661, + "Label": "5650-102661 via Unknown from 102663 -> 102662", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102663, + "TargetID": 102662, + "Directional": false + }] + }, { + "ID": 3496, + "SourceStructureID": 5650, + "TargetStructureID": 102757, + "Label": "5650-102757 via Unknown from 102781 -> 102780", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102781, + "TargetID": 102780, + "Directional": false + }] + }, { + "ID": 3497, + "SourceStructureID": 102793, + "TargetStructureID": 5650, + "Label": "102793-5650 via Unknown from 102822 -> 102821", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102822, + "TargetID": 102821, + "Directional": false + }] + }, { + "ID": 3498, + "SourceStructureID": 5650, + "TargetStructureID": 102795, + "Label": "5650-102795 via Unknown from 102797 -> 102796", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102797, + "TargetID": 102796, + "Directional": false + }] + }, { + "ID": 3499, + "SourceStructureID": 102953, + "TargetStructureID": 5650, + "Label": "102953-5650 via Adherens from 102996 -> 102995", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 102996, + "TargetID": 102995, + "Directional": false + }] + }, { + "ID": 3500, + "SourceStructureID": 5650, + "TargetStructureID": 103001, + "Label": "5650-103001 via Adherens from 103002 -> 103003", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103002, + "TargetID": 103003, + "Directional": false + }] + }, { + "ID": 3501, + "SourceStructureID": 103029, + "TargetStructureID": 5650, + "Label": "103029-5650 via Adherens from 103031 -> 103030", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103031, + "TargetID": 103030, + "Directional": false + }] + }, { + "ID": 3502, + "SourceStructureID": 5650, + "TargetStructureID": 103037, + "Label": "5650-103037 via Adherens from 103038 -> 103039", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103038, + "TargetID": 103039, + "Directional": false + }] + }, { + "ID": 3503, + "SourceStructureID": 5650, + "TargetStructureID": 103557, + "Label": "5650-103557 via Adherens from 103559 -> 103558", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103559, + "TargetID": 103558, + "Directional": false + }] + }, { + "ID": 3504, + "SourceStructureID": 103572, + "TargetStructureID": 5650, + "Label": "103572-5650 via Adherens from 103577 -> 103576", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103577, + "TargetID": 103576, + "Directional": false + }] + }, { + "ID": 3505, + "SourceStructureID": 103579, + "TargetStructureID": 5650, + "Label": "103579-5650 via Unknown from 103581 -> 103580", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103581, + "TargetID": 103580, + "Directional": false + }] + }, { + "ID": 3506, + "SourceStructureID": 5650, + "TargetStructureID": 103595, + "Label": "5650-103595 via Adherens from 103599 -> 103600", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103599, + "TargetID": 103600, + "Directional": false + }] + }, { + "ID": 3507, + "SourceStructureID": 103636, + "TargetStructureID": 5650, + "Label": "103636-5650 via Unknown from 103638 -> 103637", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103638, + "TargetID": 103637, + "Directional": false + }] + }, { + "ID": 3508, + "SourceStructureID": 103654, + "TargetStructureID": 5650, + "Label": "103654-5650 via Adherens from 103656 -> 103655", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103656, + "TargetID": 103655, + "Directional": false + }] + }, { + "ID": 3509, + "SourceStructureID": 5650, + "TargetStructureID": 103657, + "Label": "5650-103657 via Adherens from 103659 -> 103658", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103659, + "TargetID": 103658, + "Directional": false + }] + }, { + "ID": 3510, + "SourceStructureID": 5650, + "TargetStructureID": 103675, + "Label": "5650-103675 via Unknown from 103676 -> 103677", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103676, + "TargetID": 103677, + "Directional": false + }] + }, { + "ID": 3511, + "SourceStructureID": 5650, + "TargetStructureID": 103693, + "Label": "5650-103693 via Adherens from 103695 -> 103694", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103695, + "TargetID": 103694, + "Directional": false + }] + }, { + "ID": 3512, + "SourceStructureID": 103710, + "TargetStructureID": 5650, + "Label": "103710-5650 via Unknown from 103712 -> 103711", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103712, + "TargetID": 103711, + "Directional": false + }] + }, { + "ID": 3513, + "SourceStructureID": 5650, + "TargetStructureID": 103820, + "Label": "5650-103820 via Adherens from 103822 -> 103821", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 103822, + "TargetID": 103821, + "Directional": false + }] + }, { + "ID": 3514, + "SourceStructureID": 104089, + "TargetStructureID": 5650, + "Label": "104089-5650 via Adherens from 104094 -> 104093", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104094, + "TargetID": 104093, + "Directional": false + }] + }, { + "ID": 3515, + "SourceStructureID": 5650, + "TargetStructureID": 104120, + "Label": "5650-104120 via Unknown from 104121 -> 104122", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104121, + "TargetID": 104122, + "Directional": false + }] + }, { + "ID": 3516, + "SourceStructureID": 5650, + "TargetStructureID": 104304, + "Label": "5650-104304 via Unknown from 104310 -> 104308", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104310, + "TargetID": 104308, + "Directional": false + }] + }, { + "ID": 3517, + "SourceStructureID": 104330, + "TargetStructureID": 5650, + "Label": "104330-5650 via Unknown from 104334 -> 104332", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104334, + "TargetID": 104332, + "Directional": false + }] + }, { + "ID": 3518, + "SourceStructureID": 104370, + "TargetStructureID": 5650, + "Label": "104370-5650 via Unknown from 104372 -> 104371", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104372, + "TargetID": 104371, + "Directional": false + }] + }, { + "ID": 3519, + "SourceStructureID": 5650, + "TargetStructureID": 104459, + "Label": "5650-104459 via Adherens from 104461 -> 104460", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104461, + "TargetID": 104460, + "Directional": false + }] + }, { + "ID": 3520, + "SourceStructureID": 5650, + "TargetStructureID": 104465, + "Label": "5650-104465 via Adherens from 104466 -> 104467", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104466, + "TargetID": 104467, + "Directional": false + }] + }, { + "ID": 3521, + "SourceStructureID": 104987, + "TargetStructureID": 5650, + "Label": "104987-5650 via Adherens from 104989 -> 104988", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104989, + "TargetID": 104988, + "Directional": false + }] + }, { + "ID": 3522, + "SourceStructureID": 105070, + "TargetStructureID": 5650, + "Label": "105070-5650 via Adherens from 105072 -> 105071", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 105072, + "TargetID": 105071, + "Directional": false + }] + }, { + "ID": 3523, + "SourceStructureID": 105106, + "TargetStructureID": 5650, + "Label": "105106-5650 via Unknown from 105107 -> 105105", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105107, + "TargetID": 105105, + "Directional": false + }] + }, { + "ID": 3524, + "SourceStructureID": 105131, + "TargetStructureID": 5650, + "Label": "105131-5650 via Adherens from 105139 -> 105138", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 105139, + "TargetID": 105138, + "Directional": false + }] + }, { + "ID": 3525, + "SourceStructureID": 105167, + "TargetStructureID": 5650, + "Label": "105167-5650 via Unknown from 105169 -> 105168", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105169, + "TargetID": 105168, + "Directional": false + }] + }, { + "ID": 3526, + "SourceStructureID": 105199, + "TargetStructureID": 5650, + "Label": "105199-5650 via Adherens from 126406 -> 126407", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 126406, + "TargetID": 126407, + "Directional": false + }] + }, { + "ID": 3527, + "SourceStructureID": 106325, + "TargetStructureID": 5650, + "Label": "106325-5650 via Adherens from 106328 -> 106324", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106328, + "TargetID": 106324, + "Directional": false + }] + }, { + "ID": 3528, + "SourceStructureID": 106336, + "TargetStructureID": 5650, + "Label": "106336-5650 via Unknown from 106343 -> 106342", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106343, + "TargetID": 106342, + "Directional": false + }] + }, { + "ID": 3529, + "SourceStructureID": 5729, + "TargetStructureID": 5729, + "Label": "5729-5729 via Adherens from 112683 -> 64523", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112683, + "TargetID": 64523, + "Directional": false + }] + }, { + "ID": 3530, + "SourceStructureID": 5729, + "TargetStructureID": 5729, + "Label": "5729-5729 via Gap Junction from 64474 -> 64473, 105778 -> 105779", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 64474, + "TargetID": 64473, + "Directional": false + }, { + "SourceID": 105778, + "TargetID": 105779, + "Directional": false + }] + }, { + "ID": 3531, + "SourceStructureID": 6158, + "TargetStructureID": 5729, + "Label": "6158-5729 via Gap Junction from 47218 -> 47217, 111940 -> 111941, 113087 -> 111943", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 47218, + "TargetID": 47217, + "Directional": false + }, { + "SourceID": 111940, + "TargetID": 111941, + "Directional": false + }, { + "SourceID": 113087, + "TargetID": 111943, + "Directional": false + }] + }, { + "ID": 3532, + "SourceStructureID": 5729, + "TargetStructureID": 6158, + "Label": "5729-6158 via Touch from 120654 -> 120655", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 120654, + "TargetID": 120655, + "Directional": false + }] + }, { + "ID": 3533, + "SourceStructureID": 6162, + "TargetStructureID": 5729, + "Label": "6162-5729 via Adherens from 37852 -> 37853, 105759 -> 123359", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 37852, + "TargetID": 37853, + "Directional": false + }, { + "SourceID": 105759, + "TargetID": 123359, + "Directional": false + }] + }, { + "ID": 3534, + "SourceStructureID": 6162, + "TargetStructureID": 5729, + "Label": "6162-5729 via Gap Junction from 37848 -> 37847, 37851 -> 37850, 47223 -> 29108, 55252 -> 47235, 110912 -> 110913, 118170 -> 118171", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 37848, + "TargetID": 37847, + "Directional": false + }, { + "SourceID": 37851, + "TargetID": 37850, + "Directional": false + }, { + "SourceID": 47223, + "TargetID": 29108, + "Directional": false + }, { + "SourceID": 55252, + "TargetID": 47235, + "Directional": false + }, { + "SourceID": 110912, + "TargetID": 110913, + "Directional": false + }, { + "SourceID": 118170, + "TargetID": 118171, + "Directional": false + }] + }, { + "ID": 3535, + "SourceStructureID": 5729, + "TargetStructureID": 7050, + "Label": "5729-7050 via Gap Junction from 37816 -> 37815, 64587 -> 24877", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 37816, + "TargetID": 37815, + "Directional": false + }, { + "SourceID": 64587, + "TargetID": 24877, + "Directional": false + }] + }, { + "ID": 3536, + "SourceStructureID": 7897, + "TargetStructureID": 5729, + "Label": "7897-5729 via Adherens from 112012 -> 112013", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112012, + "TargetID": 112013, + "Directional": false + }] + }, { + "ID": 3537, + "SourceStructureID": 8040, + "TargetStructureID": 5729, + "Label": "8040-5729 via Adherens from 112671 -> 112672", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112671, + "TargetID": 112672, + "Directional": false + }] + }, { + "ID": 3538, + "SourceStructureID": 8040, + "TargetStructureID": 5729, + "Label": "8040-5729 via Gap Junction from 111797 -> 111796", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 111797, + "TargetID": 111796, + "Directional": false + }] + }, { + "ID": 3539, + "SourceStructureID": 11408, + "TargetStructureID": 5729, + "Label": "11408-5729 via Gap Junction from 112645 -> 112620", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 112645, + "TargetID": 112620, + "Directional": false + }] + }, { + "ID": 3540, + "SourceStructureID": 35240, + "TargetStructureID": 5729, + "Label": "35240-5729 via Adherens from 111778 -> 111779", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111778, + "TargetID": 111779, + "Directional": false + }] + }, { + "ID": 3541, + "SourceStructureID": 35428, + "TargetStructureID": 5729, + "Label": "35428-5729 via Unknown from 111952 -> 111951", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111952, + "TargetID": 111951, + "Directional": false + }] + }, { + "ID": 3542, + "SourceStructureID": 35555, + "TargetStructureID": 5729, + "Label": "35555-5729 via Adherens from 112726 -> 112725", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112726, + "TargetID": 112725, + "Directional": false + }] + }, { + "ID": 3543, + "SourceStructureID": 47445, + "TargetStructureID": 5729, + "Label": "47445-5729 via Gap Junction from 118183 -> 118178", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118183, + "TargetID": 118178, + "Directional": false + }] + }, { + "ID": 3544, + "SourceStructureID": 5729, + "TargetStructureID": 48516, + "Label": "5729-48516 via Gap Junction from 123287 -> 123297", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123287, + "TargetID": 123297, + "Directional": false + }] + }, { + "ID": 3545, + "SourceStructureID": 55232, + "TargetStructureID": 5729, + "Label": "55232-5729 via Adherens from 111155 -> 111156, 111195 -> 111194", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111155, + "TargetID": 111156, + "Directional": false + }, { + "SourceID": 111195, + "TargetID": 111194, + "Directional": false + }] + }, { + "ID": 3546, + "SourceStructureID": 5729, + "TargetStructureID": 64452, + "Label": "5729-64452 via Adherens from 111959 -> 89622, 111962 -> 111948, 111983 -> 111985", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111959, + "TargetID": 89622, + "Directional": false + }, { + "SourceID": 111962, + "TargetID": 111948, + "Directional": false + }, { + "SourceID": 111983, + "TargetID": 111985, + "Directional": false + }] + }, { + "ID": 3547, + "SourceStructureID": 64452, + "TargetStructureID": 5729, + "Label": "64452-5729 via Unknown from 111979 -> 111978", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111979, + "TargetID": 111978, + "Directional": false + }] + }, { + "ID": 3548, + "SourceStructureID": 5729, + "TargetStructureID": 64939, + "Label": "5729-64939 via Adherens from 64529 -> 112949, 112445 -> 112444", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64529, + "TargetID": 112949, + "Directional": false + }, { + "SourceID": 112445, + "TargetID": 112444, + "Directional": false + }] + }, { + "ID": 3549, + "SourceStructureID": 64939, + "TargetStructureID": 5729, + "Label": "64939-5729 via Gap Junction from 64941 -> 64466, 69661 -> 69659, 69717 -> 69718, 70022 -> 70021, 93219 -> 93218, 93606 -> 64528, 111646 -> 111647, 111960 -> 111961, 112600 -> 112601, 113797 -> 113796, 123288 -> 123289", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 64941, + "TargetID": 64466, + "Directional": false + }, { + "SourceID": 69661, + "TargetID": 69659, + "Directional": false + }, { + "SourceID": 69717, + "TargetID": 69718, + "Directional": false + }, { + "SourceID": 70022, + "TargetID": 70021, + "Directional": false + }, { + "SourceID": 93219, + "TargetID": 93218, + "Directional": false + }, { + "SourceID": 93606, + "TargetID": 64528, + "Directional": false + }, { + "SourceID": 111646, + "TargetID": 111647, + "Directional": false + }, { + "SourceID": 111960, + "TargetID": 111961, + "Directional": false + }, { + "SourceID": 112600, + "TargetID": 112601, + "Directional": false + }, { + "SourceID": 113797, + "TargetID": 113796, + "Directional": false + }, { + "SourceID": 123288, + "TargetID": 123289, + "Directional": false + }] + }, { + "ID": 3550, + "SourceStructureID": 69691, + "TargetStructureID": 5729, + "Label": "69691-5729 via Unknown from 136309 -> 136308", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136309, + "TargetID": 136308, + "Directional": false + }] + }, { + "ID": 3551, + "SourceStructureID": 5729, + "TargetStructureID": 89124, + "Label": "5729-89124 via Adherens from 111438 -> 111439", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111438, + "TargetID": 111439, + "Directional": false + }] + }, { + "ID": 3552, + "SourceStructureID": 89631, + "TargetStructureID": 5729, + "Label": "89631-5729 via Adherens from 89632 -> 89630", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89632, + "TargetID": 89630, + "Directional": false + }] + }, { + "ID": 3553, + "SourceStructureID": 100017, + "TargetStructureID": 5729, + "Label": "100017-5729 via Unknown from 100594 -> 112605", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 100594, + "TargetID": 112605, + "Directional": false + }] + }, { + "ID": 3554, + "SourceStructureID": 110842, + "TargetStructureID": 5729, + "Label": "110842-5729 via Adherens from 110846 -> 110847", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110846, + "TargetID": 110847, + "Directional": false + }] + }, { + "ID": 3555, + "SourceStructureID": 5729, + "TargetStructureID": 110899, + "Label": "5729-110899 via Adherens from 110900 -> 110901", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110900, + "TargetID": 110901, + "Directional": false + }] + }, { + "ID": 3556, + "SourceStructureID": 110903, + "TargetStructureID": 5729, + "Label": "110903-5729 via Adherens from 110917 -> 110918", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110917, + "TargetID": 110918, + "Directional": false + }] + }, { + "ID": 3557, + "SourceStructureID": 5729, + "TargetStructureID": 110924, + "Label": "5729-110924 via Adherens from 110925 -> 110926", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110925, + "TargetID": 110926, + "Directional": false + }] + }, { + "ID": 3558, + "SourceStructureID": 110928, + "TargetStructureID": 5729, + "Label": "110928-5729 via Unknown from 110929 -> 110927", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110929, + "TargetID": 110927, + "Directional": false + }] + }, { + "ID": 3559, + "SourceStructureID": 110952, + "TargetStructureID": 5729, + "Label": "110952-5729 via Unknown from 110954 -> 110953", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110954, + "TargetID": 110953, + "Directional": false + }] + }, { + "ID": 3560, + "SourceStructureID": 5729, + "TargetStructureID": 110959, + "Label": "5729-110959 via Unknown from 110958 -> 110960", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110958, + "TargetID": 110960, + "Directional": false + }] + }, { + "ID": 3561, + "SourceStructureID": 5729, + "TargetStructureID": 111040, + "Label": "5729-111040 via Adherens from 111042 -> 111041", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111042, + "TargetID": 111041, + "Directional": false + }] + }, { + "ID": 3562, + "SourceStructureID": 5729, + "TargetStructureID": 111057, + "Label": "5729-111057 via Adherens from 111063 -> 111062", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111063, + "TargetID": 111062, + "Directional": false + }] + }, { + "ID": 3563, + "SourceStructureID": 5729, + "TargetStructureID": 111059, + "Label": "5729-111059 via Adherens from 111068 -> 111069", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111068, + "TargetID": 111069, + "Directional": false + }] + }, { + "ID": 3564, + "SourceStructureID": 111064, + "TargetStructureID": 5729, + "Label": "111064-5729 via Adherens from 111066 -> 111067", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111066, + "TargetID": 111067, + "Directional": false + }] + }, { + "ID": 3565, + "SourceStructureID": 5729, + "TargetStructureID": 111078, + "Label": "5729-111078 via Adherens from 111158 -> 111159", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111158, + "TargetID": 111159, + "Directional": false + }] + }, { + "ID": 3566, + "SourceStructureID": 111160, + "TargetStructureID": 5729, + "Label": "111160-5729 via Unknown from 111161 -> 111162", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111161, + "TargetID": 111162, + "Directional": false + }] + }, { + "ID": 3567, + "SourceStructureID": 5729, + "TargetStructureID": 111165, + "Label": "5729-111165 via Adherens from 111168 -> 111169", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111168, + "TargetID": 111169, + "Directional": false + }] + }, { + "ID": 3568, + "SourceStructureID": 5729, + "TargetStructureID": 111165, + "Label": "5729-111165 via Gap Junction from 111166 -> 111167", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 111166, + "TargetID": 111167, + "Directional": false + }] + }, { + "ID": 3569, + "SourceStructureID": 5729, + "TargetStructureID": 111174, + "Label": "5729-111174 via Unknown from 111176 -> 111175", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111176, + "TargetID": 111175, + "Directional": false + }] + }, { + "ID": 3570, + "SourceStructureID": 111180, + "TargetStructureID": 5729, + "Label": "111180-5729 via Gap Junction from 111181 -> 111182", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 111181, + "TargetID": 111182, + "Directional": false + }] + }, { + "ID": 3571, + "SourceStructureID": 111183, + "TargetStructureID": 5729, + "Label": "111183-5729 via Gap Junction from 111185 -> 111186", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 111185, + "TargetID": 111186, + "Directional": false + }] + }, { + "ID": 3572, + "SourceStructureID": 111288, + "TargetStructureID": 5729, + "Label": "111288-5729 via Unknown from 111290 -> 111289", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111290, + "TargetID": 111289, + "Directional": false + }] + }, { + "ID": 3573, + "SourceStructureID": 5729, + "TargetStructureID": 111298, + "Label": "5729-111298 via Adherens from 37814 -> 111302", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 37814, + "TargetID": 111302, + "Directional": false + }] + }, { + "ID": 3574, + "SourceStructureID": 111306, + "TargetStructureID": 5729, + "Label": "111306-5729 via Adherens from 111308 -> 37819", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111308, + "TargetID": 37819, + "Directional": false + }] + }, { + "ID": 3575, + "SourceStructureID": 111311, + "TargetStructureID": 5729, + "Label": "111311-5729 via Adherens from 111326 -> 111327", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111326, + "TargetID": 111327, + "Directional": false + }] + }, { + "ID": 3576, + "SourceStructureID": 5729, + "TargetStructureID": 111312, + "Label": "5729-111312 via Adherens from 37825 -> 111323", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 37825, + "TargetID": 111323, + "Directional": false + }] + }, { + "ID": 3577, + "SourceStructureID": 5729, + "TargetStructureID": 111417, + "Label": "5729-111417 via Unknown from 111465 -> 111466", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111465, + "TargetID": 111466, + "Directional": false + }] + }, { + "ID": 3578, + "SourceStructureID": 111448, + "TargetStructureID": 5729, + "Label": "111448-5729 via Adherens from 111461 -> 111460", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111461, + "TargetID": 111460, + "Directional": false + }] + }, { + "ID": 3579, + "SourceStructureID": 111611, + "TargetStructureID": 5729, + "Label": "111611-5729 via Adherens from 111634 -> 111635", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111634, + "TargetID": 111635, + "Directional": false + }] + }, { + "ID": 3580, + "SourceStructureID": 5729, + "TargetStructureID": 111740, + "Label": "5729-111740 via Unknown from 111743 -> 111744", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111743, + "TargetID": 111744, + "Directional": false + }] + }, { + "ID": 3581, + "SourceStructureID": 111751, + "TargetStructureID": 5729, + "Label": "111751-5729 via Unknown from 111752 -> 111750", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111752, + "TargetID": 111750, + "Directional": false + }] + }, { + "ID": 3582, + "SourceStructureID": 111758, + "TargetStructureID": 5729, + "Label": "111758-5729 via Unknown from 111759 -> 111757", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111759, + "TargetID": 111757, + "Directional": false + }] + }, { + "ID": 3583, + "SourceStructureID": 111774, + "TargetStructureID": 5729, + "Label": "111774-5729 via Gap Junction from 111775 -> 111763", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 111775, + "TargetID": 111763, + "Directional": false + }] + }, { + "ID": 3584, + "SourceStructureID": 111788, + "TargetStructureID": 5729, + "Label": "111788-5729 via Adherens from 111789 -> 111790", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111789, + "TargetID": 111790, + "Directional": false + }] + }, { + "ID": 3585, + "SourceStructureID": 111791, + "TargetStructureID": 5729, + "Label": "111791-5729 via Unknown from 111792 -> 111794", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111792, + "TargetID": 111794, + "Directional": false + }] + }, { + "ID": 3586, + "SourceStructureID": 111963, + "TargetStructureID": 5729, + "Label": "111963-5729 via Adherens from 111967 -> 89612", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111967, + "TargetID": 89612, + "Directional": false + }] + }, { + "ID": 3587, + "SourceStructureID": 5729, + "TargetStructureID": 111991, + "Label": "5729-111991 via Adherens from 93224 -> 111992", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93224, + "TargetID": 111992, + "Directional": false + }] + }, { + "ID": 3588, + "SourceStructureID": 111997, + "TargetStructureID": 5729, + "Label": "111997-5729 via Unknown from 111998 -> 111999", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111998, + "TargetID": 111999, + "Directional": false + }] + }, { + "ID": 3589, + "SourceStructureID": 112000, + "TargetStructureID": 5729, + "Label": "112000-5729 via Unknown from 112001 -> 112002", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112001, + "TargetID": 112002, + "Directional": false + }] + }, { + "ID": 3590, + "SourceStructureID": 5729, + "TargetStructureID": 112310, + "Label": "5729-112310 via Adherens from 112312 -> 112311", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112312, + "TargetID": 112311, + "Directional": false + }] + }, { + "ID": 3591, + "SourceStructureID": 112313, + "TargetStructureID": 5729, + "Label": "112313-5729 via Adherens from 112314 -> 112316", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112314, + "TargetID": 112316, + "Directional": false + }] + }, { + "ID": 3592, + "SourceStructureID": 112455, + "TargetStructureID": 5729, + "Label": "112455-5729 via Adherens from 112596 -> 112597", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112596, + "TargetID": 112597, + "Directional": false + }] + }, { + "ID": 3593, + "SourceStructureID": 112632, + "TargetStructureID": 5729, + "Label": "112632-5729 via Unknown from 112633 -> 112631", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112633, + "TargetID": 112631, + "Directional": false + }] + }, { + "ID": 3594, + "SourceStructureID": 5729, + "TargetStructureID": 112641, + "Label": "5729-112641 via Adherens from 112615 -> 112643, 112618 -> 112644", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112615, + "TargetID": 112643, + "Directional": false + }, { + "SourceID": 112618, + "TargetID": 112644, + "Directional": false + }] + }, { + "ID": 3595, + "SourceStructureID": 5729, + "TargetStructureID": 112656, + "Label": "5729-112656 via Adherens from 112655 -> 112657", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112655, + "TargetID": 112657, + "Directional": false + }] + }, { + "ID": 3596, + "SourceStructureID": 112666, + "TargetStructureID": 5729, + "Label": "112666-5729 via Unknown from 112668 -> 112667", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112668, + "TargetID": 112667, + "Directional": false + }] + }, { + "ID": 3597, + "SourceStructureID": 112669, + "TargetStructureID": 5729, + "Label": "112669-5729 via Adherens from 112673 -> 112674, 112675 -> 112676", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112673, + "TargetID": 112674, + "Directional": false + }, { + "SourceID": 112675, + "TargetID": 112676, + "Directional": false + }] + }, { + "ID": 3598, + "SourceStructureID": 5729, + "TargetStructureID": 112696, + "Label": "5729-112696 via Unknown from 112698 -> 112699", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112698, + "TargetID": 112699, + "Directional": false + }] + }, { + "ID": 3599, + "SourceStructureID": 5729, + "TargetStructureID": 112703, + "Label": "5729-112703 via Unknown from 112707 -> 112708, 112735 -> 112736", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112707, + "TargetID": 112708, + "Directional": false + }, { + "SourceID": 112735, + "TargetID": 112736, + "Directional": false + }] + }, { + "ID": 3600, + "SourceStructureID": 112715, + "TargetStructureID": 5729, + "Label": "112715-5729 via Adherens from 112717 -> 64472", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112717, + "TargetID": 64472, + "Directional": false + }] + }, { + "ID": 3601, + "SourceStructureID": 5729, + "TargetStructureID": 112721, + "Label": "5729-112721 via Gap Junction from 64477 -> 112722", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 64477, + "TargetID": 112722, + "Directional": false + }] + }, { + "ID": 3602, + "SourceStructureID": 112884, + "TargetStructureID": 5729, + "Label": "112884-5729 via Adherens from 112885 -> 64463", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112885, + "TargetID": 64463, + "Directional": false + }] + }, { + "ID": 3603, + "SourceStructureID": 112916, + "TargetStructureID": 5729, + "Label": "112916-5729 via Unknown from 112922 -> 112923", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112922, + "TargetID": 112923, + "Directional": false + }] + }, { + "ID": 3604, + "SourceStructureID": 5729, + "TargetStructureID": 112925, + "Label": "5729-112925 via Adherens from 112929 -> 112930", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112929, + "TargetID": 112930, + "Directional": false + }] + }, { + "ID": 3605, + "SourceStructureID": 112934, + "TargetStructureID": 5729, + "Label": "112934-5729 via Unknown from 112946 -> 112947", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112946, + "TargetID": 112947, + "Directional": false + }] + }, { + "ID": 3606, + "SourceStructureID": 5729, + "TargetStructureID": 112942, + "Label": "5729-112942 via Adherens from 64535 -> 112960", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64535, + "TargetID": 112960, + "Directional": false + }] + }, { + "ID": 3607, + "SourceStructureID": 5729, + "TargetStructureID": 113810, + "Label": "5729-113810 via Gap Junction from 113812 -> 113811", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 113812, + "TargetID": 113811, + "Directional": false + }] + }, { + "ID": 3608, + "SourceStructureID": 115424, + "TargetStructureID": 5729, + "Label": "115424-5729 via Gap Junction from 115426 -> 113819", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115426, + "TargetID": 113819, + "Directional": false + }] + }, { + "ID": 3609, + "SourceStructureID": 136739, + "TargetStructureID": 5729, + "Label": "136739-5729 via Gap Junction from 136740 -> 112647", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136740, + "TargetID": 112647, + "Directional": false + }] + }, { + "ID": 3610, + "SourceStructureID": 5775, + "TargetStructureID": 5775, + "Label": "5775-5775 via Gap Junction from 120838 -> 120839", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120838, + "TargetID": 120839, + "Directional": false + }] + }, { + "ID": 3611, + "SourceStructureID": 5775, + "TargetStructureID": 5775, + "Label": "5775-5775 via Touch from 93768 -> 93767", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 93768, + "TargetID": 93767, + "Directional": false + }] + }, { + "ID": 3612, + "SourceStructureID": 8040, + "TargetStructureID": 5775, + "Label": "8040-5775 via Gap Junction from 48694 -> 48751, 48713 -> 49144, 48716 -> 48696, 52069 -> 48746, 93755 -> 49109, 93766 -> 48911, 120831 -> 120830, 120833 -> 120832, 120836 -> 48782", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48694, + "TargetID": 48751, + "Directional": false + }, { + "SourceID": 48713, + "TargetID": 49144, + "Directional": false + }, { + "SourceID": 48716, + "TargetID": 48696, + "Directional": false + }, { + "SourceID": 52069, + "TargetID": 48746, + "Directional": false + }, { + "SourceID": 93755, + "TargetID": 49109, + "Directional": false + }, { + "SourceID": 93766, + "TargetID": 48911, + "Directional": false + }, { + "SourceID": 120831, + "TargetID": 120830, + "Directional": false + }, { + "SourceID": 120833, + "TargetID": 120832, + "Directional": false + }, { + "SourceID": 120836, + "TargetID": 48782, + "Directional": false + }] + }, { + "ID": 3613, + "SourceStructureID": 5838, + "TargetStructureID": 5916, + "Label": "5838-5916 via Gap Junction from 109052 -> 109051", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 109052, + "TargetID": 109051, + "Directional": false + }] + }, { + "ID": 3614, + "SourceStructureID": 5916, + "TargetStructureID": 5838, + "Label": "5916-5838 via Unknown from 109101 -> 109102", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109101, + "TargetID": 109102, + "Directional": false + }] + }, { + "ID": 3615, + "SourceStructureID": 7951, + "TargetStructureID": 5838, + "Label": "7951-5838 via Gap Junction from 120669 -> 38029, 120670 -> 38030", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120669, + "TargetID": 38029, + "Directional": false + }, { + "SourceID": 120670, + "TargetID": 38030, + "Directional": false + }] + }, { + "ID": 3616, + "SourceStructureID": 102554, + "TargetStructureID": 5838, + "Label": "102554-5838 via Adherens from 102556 -> 102558", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 102556, + "TargetID": 102558, + "Directional": false + }] + }, { + "ID": 3617, + "SourceStructureID": 6169, + "TargetStructureID": 5860, + "Label": "6169-5860 via Gap Junction from 133082 -> 133083, 133085 -> 24733", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 133082, + "TargetID": 133083, + "Directional": false + }, { + "SourceID": 133085, + "TargetID": 24733, + "Directional": false + }] + }, { + "ID": 3618, + "SourceStructureID": 7113, + "TargetStructureID": 5860, + "Label": "7113-5860 via Gap Junction from 131417 -> 131416", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131417, + "TargetID": 131416, + "Directional": false + }] + }, { + "ID": 3619, + "SourceStructureID": 5860, + "TargetStructureID": 7174, + "Label": "5860-7174 via Gap Junction from 7173 -> 7175", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 7173, + "TargetID": 7175, + "Directional": false + }] + }, { + "ID": 3620, + "SourceStructureID": 5860, + "TargetStructureID": 40863, + "Label": "5860-40863 via Gap Junction from 14739 -> 40866", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 14739, + "TargetID": 40866, + "Directional": false + }] + }, { + "ID": 3621, + "SourceStructureID": 51715, + "TargetStructureID": 5860, + "Label": "51715-5860 via Gap Junction from 52097 -> 52099, 131166 -> 131165", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52097, + "TargetID": 52099, + "Directional": false + }, { + "SourceID": 131166, + "TargetID": 131165, + "Directional": false + }] + }, { + "ID": 3622, + "SourceStructureID": 98572, + "TargetStructureID": 5860, + "Label": "98572-5860 via Gap Junction from 98610 -> 98612, 98616 -> 98617", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98610, + "TargetID": 98612, + "Directional": false + }, { + "SourceID": 98616, + "TargetID": 98617, + "Directional": false + }] + }, { + "ID": 3623, + "SourceStructureID": 5916, + "TargetStructureID": 7050, + "Label": "5916-7050 via Gap Junction from 63205 -> 63204, 63969 -> 63968, 109206 -> 109207", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63205, + "TargetID": 63204, + "Directional": false + }, { + "SourceID": 63969, + "TargetID": 63968, + "Directional": false + }, { + "SourceID": 109206, + "TargetID": 109207, + "Directional": false + }] + }, { + "ID": 3624, + "SourceStructureID": 12897, + "TargetStructureID": 5916, + "Label": "12897-5916 via Gap Junction from 109380 -> 109379", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 109380, + "TargetID": 109379, + "Directional": false + }] + }, { + "ID": 3625, + "SourceStructureID": 5916, + "TargetStructureID": 63199, + "Label": "5916-63199 via Gap Junction from 147550 -> 147549", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 147550, + "TargetID": 147549, + "Directional": false + }] + }, { + "ID": 3626, + "SourceStructureID": 69049, + "TargetStructureID": 5916, + "Label": "69049-5916 via Unknown from 109194 -> 109193", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109194, + "TargetID": 109193, + "Directional": false + }] + }, { + "ID": 3627, + "SourceStructureID": 5916, + "TargetStructureID": 106339, + "Label": "5916-106339 via Adherens from 134977 -> 134975", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134977, + "TargetID": 134975, + "Directional": false + }] + }, { + "ID": 3628, + "SourceStructureID": 5916, + "TargetStructureID": 106345, + "Label": "5916-106345 via Unknown from 135446 -> 135447", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135446, + "TargetID": 135447, + "Directional": false + }] + }, { + "ID": 3629, + "SourceStructureID": 108731, + "TargetStructureID": 5916, + "Label": "108731-5916 via Unknown from 158861 -> 158862", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 158861, + "TargetID": 158862, + "Directional": false + }] + }, { + "ID": 3630, + "SourceStructureID": 109308, + "TargetStructureID": 5916, + "Label": "109308-5916 via Unknown from 109321 -> 109320", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109321, + "TargetID": 109320, + "Directional": false + }] + }, { + "ID": 3631, + "SourceStructureID": 5916, + "TargetStructureID": 109731, + "Label": "5916-109731 via Unknown from 109686 -> 109737, 109733 -> 109734, 109735 -> 109736", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109686, + "TargetID": 109737, + "Directional": false + }, { + "SourceID": 109733, + "TargetID": 109734, + "Directional": false + }, { + "SourceID": 109735, + "TargetID": 109736, + "Directional": false + }] + }, { + "ID": 3632, + "SourceStructureID": 5923, + "TargetStructureID": 33625, + "Label": "5923-33625 via Touch from 33644 -> 33643", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 33644, + "TargetID": 33643, + "Directional": false + }] + }, { + "ID": 3633, + "SourceStructureID": 6047, + "TargetStructureID": 6120, + "Label": "6047-6120 via Gap Junction from 61771 -> 57394, 110605 -> 110604, 111898 -> 111896", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 61771, + "TargetID": 57394, + "Directional": false + }, { + "SourceID": 110605, + "TargetID": 110604, + "Directional": false + }, { + "SourceID": 111898, + "TargetID": 111896, + "Directional": false + }] + }, { + "ID": 3634, + "SourceStructureID": 6141, + "TargetStructureID": 6047, + "Label": "6141-6047 via Gap Junction from 57397 -> 112030, 57398 -> 57395", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57397, + "TargetID": 112030, + "Directional": false + }, { + "SourceID": 57398, + "TargetID": 57395, + "Directional": false + }] + }, { + "ID": 3635, + "SourceStructureID": 6203, + "TargetStructureID": 6047, + "Label": "6203-6047 via Unknown from 112054 -> 112055", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112054, + "TargetID": 112055, + "Directional": false + }] + }, { + "ID": 3636, + "SourceStructureID": 6047, + "TargetStructureID": 7147, + "Label": "6047-7147 via Adherens from 129300 -> 129301", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129300, + "TargetID": 129301, + "Directional": false + }] + }, { + "ID": 3637, + "SourceStructureID": 7147, + "TargetStructureID": 6047, + "Label": "7147-6047 via Gap Junction from 16066 -> 19650, 19721 -> 19720, 19723 -> 19722, 19732 -> 19731, 61327 -> 61326, 61344 -> 61343, 117227 -> 129329, 129295 -> 129296", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16066, + "TargetID": 19650, + "Directional": false + }, { + "SourceID": 19721, + "TargetID": 19720, + "Directional": false + }, { + "SourceID": 19723, + "TargetID": 19722, + "Directional": false + }, { + "SourceID": 19732, + "TargetID": 19731, + "Directional": false + }, { + "SourceID": 61327, + "TargetID": 61326, + "Directional": false + }, { + "SourceID": 61344, + "TargetID": 61343, + "Directional": false + }, { + "SourceID": 117227, + "TargetID": 129329, + "Directional": false + }, { + "SourceID": 129295, + "TargetID": 129296, + "Directional": false + }] + }, { + "ID": 3638, + "SourceStructureID": 16073, + "TargetStructureID": 6047, + "Label": "16073-6047 via Unknown from 112229 -> 112227", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112229, + "TargetID": 112227, + "Directional": false + }] + }, { + "ID": 3639, + "SourceStructureID": 35343, + "TargetStructureID": 6047, + "Label": "35343-6047 via Unknown from 113264 -> 113263", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113264, + "TargetID": 113263, + "Directional": false + }] + }, { + "ID": 3640, + "SourceStructureID": 6047, + "TargetStructureID": 111351, + "Label": "6047-111351 via Unknown from 125494 -> 125493", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125494, + "TargetID": 125493, + "Directional": false + }] + }, { + "ID": 3641, + "SourceStructureID": 111912, + "TargetStructureID": 6047, + "Label": "111912-6047 via Unknown from 111913 -> 111911", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111913, + "TargetID": 111911, + "Directional": false + }] + }, { + "ID": 3642, + "SourceStructureID": 111920, + "TargetStructureID": 6047, + "Label": "111920-6047 via Adherens from 111921 -> 19621", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111921, + "TargetID": 19621, + "Directional": false + }] + }, { + "ID": 3643, + "SourceStructureID": 6047, + "TargetStructureID": 112064, + "Label": "6047-112064 via Unknown from 112065 -> 112066", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112065, + "TargetID": 112066, + "Directional": false + }] + }, { + "ID": 3644, + "SourceStructureID": 112069, + "TargetStructureID": 6047, + "Label": "112069-6047 via Adherens from 112070 -> 112068", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112070, + "TargetID": 112068, + "Directional": false + }] + }, { + "ID": 3645, + "SourceStructureID": 6047, + "TargetStructureID": 112081, + "Label": "6047-112081 via Gap Junction from 112080 -> 112083", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 112080, + "TargetID": 112083, + "Directional": false + }] + }, { + "ID": 3646, + "SourceStructureID": 112102, + "TargetStructureID": 6047, + "Label": "112102-6047 via Adherens from 112103 -> 112101", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112103, + "TargetID": 112101, + "Directional": false + }] + }, { + "ID": 3647, + "SourceStructureID": 112126, + "TargetStructureID": 6047, + "Label": "112126-6047 via Gap Junction from 112136 -> 112135, 112138 -> 112137, 112140 -> 112139", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 112136, + "TargetID": 112135, + "Directional": false + }, { + "SourceID": 112138, + "TargetID": 112137, + "Directional": false + }, { + "SourceID": 112140, + "TargetID": 112139, + "Directional": false + }] + }, { + "ID": 3648, + "SourceStructureID": 6047, + "TargetStructureID": 112199, + "Label": "6047-112199 via Gap Junction from 112201 -> 112200", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 112201, + "TargetID": 112200, + "Directional": false + }] + }, { + "ID": 3649, + "SourceStructureID": 112233, + "TargetStructureID": 6047, + "Label": "112233-6047 via Gap Junction from 112237 -> 112236, 112238 -> 112239", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 112237, + "TargetID": 112236, + "Directional": false + }, { + "SourceID": 112238, + "TargetID": 112239, + "Directional": false + }] + }, { + "ID": 3650, + "SourceStructureID": 6047, + "TargetStructureID": 112275, + "Label": "6047-112275 via Unknown from 112276 -> 112277", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112276, + "TargetID": 112277, + "Directional": false + }] + }, { + "ID": 3651, + "SourceStructureID": 112292, + "TargetStructureID": 6047, + "Label": "112292-6047 via Adherens from 112293 -> 56886", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112293, + "TargetID": 56886, + "Directional": false + }] + }, { + "ID": 3652, + "SourceStructureID": 6047, + "TargetStructureID": 112342, + "Label": "6047-112342 via Adherens from 112344 -> 112345", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112344, + "TargetID": 112345, + "Directional": false + }] + }, { + "ID": 3653, + "SourceStructureID": 112358, + "TargetStructureID": 6047, + "Label": "112358-6047 via Adherens from 112359 -> 112357", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112359, + "TargetID": 112357, + "Directional": false + }] + }, { + "ID": 3654, + "SourceStructureID": 6047, + "TargetStructureID": 112395, + "Label": "6047-112395 via Adherens from 112399 -> 112398", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112399, + "TargetID": 112398, + "Directional": false + }] + }, { + "ID": 3655, + "SourceStructureID": 112411, + "TargetStructureID": 6047, + "Label": "112411-6047 via Adherens from 112413 -> 112414", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112413, + "TargetID": 112414, + "Directional": false + }] + }, { + "ID": 3656, + "SourceStructureID": 112415, + "TargetStructureID": 6047, + "Label": "112415-6047 via Gap Junction from 112416 -> 112417", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 112416, + "TargetID": 112417, + "Directional": false + }] + }, { + "ID": 3657, + "SourceStructureID": 112425, + "TargetStructureID": 6047, + "Label": "112425-6047 via Adherens from 112426 -> 19738", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112426, + "TargetID": 19738, + "Directional": false + }] + }, { + "ID": 3658, + "SourceStructureID": 112427, + "TargetStructureID": 6047, + "Label": "112427-6047 via Adherens from 112429 -> 19673", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112429, + "TargetID": 19673, + "Directional": false + }] + }, { + "ID": 3659, + "SourceStructureID": 112436, + "TargetStructureID": 6047, + "Label": "112436-6047 via Gap Junction from 112437 -> 112435", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 112437, + "TargetID": 112435, + "Directional": false + }] + }, { + "ID": 3660, + "SourceStructureID": 6047, + "TargetStructureID": 112480, + "Label": "6047-112480 via Unknown from 112485 -> 112484", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112485, + "TargetID": 112484, + "Directional": false + }] + }, { + "ID": 3661, + "SourceStructureID": 6047, + "TargetStructureID": 112481, + "Label": "6047-112481 via Unknown from 112483 -> 112482", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 112483, + "TargetID": 112482, + "Directional": false + }] + }, { + "ID": 3662, + "SourceStructureID": 112540, + "TargetStructureID": 6047, + "Label": "112540-6047 via Unknown from 129322 -> 129321", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 129322, + "TargetID": 129321, + "Directional": false + }] + }, { + "ID": 3663, + "SourceStructureID": 6047, + "TargetStructureID": 112549, + "Label": "6047-112549 via Adherens from 19661 -> 112553", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 19661, + "TargetID": 112553, + "Directional": false + }] + }, { + "ID": 3664, + "SourceStructureID": 112772, + "TargetStructureID": 6047, + "Label": "112772-6047 via Gap Junction from 112773 -> 112771", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 112773, + "TargetID": 112771, + "Directional": false + }] + }, { + "ID": 3665, + "SourceStructureID": 112786, + "TargetStructureID": 6047, + "Label": "112786-6047 via Adherens from 112792 -> 112785", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112792, + "TargetID": 112785, + "Directional": false + }] + }, { + "ID": 3666, + "SourceStructureID": 6047, + "TargetStructureID": 113170, + "Label": "6047-113170 via Adherens from 113169 -> 113172", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 113169, + "TargetID": 113172, + "Directional": false + }] + }, { + "ID": 3667, + "SourceStructureID": 113179, + "TargetStructureID": 6047, + "Label": "113179-6047 via Adherens from 113180 -> 19633", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 113180, + "TargetID": 19633, + "Directional": false + }] + }, { + "ID": 3668, + "SourceStructureID": 113689, + "TargetStructureID": 6047, + "Label": "113689-6047 via Unknown from 113690 -> 113688", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113690, + "TargetID": 113688, + "Directional": false + }] + }, { + "ID": 3669, + "SourceStructureID": 6047, + "TargetStructureID": 120936, + "Label": "6047-120936 via Unknown from 120939 -> 120938", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120939, + "TargetID": 120938, + "Directional": false + }] + }, { + "ID": 3670, + "SourceStructureID": 6047, + "TargetStructureID": 129340, + "Label": "6047-129340 via Gap Junction from 129318 -> 129342", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 129318, + "TargetID": 129342, + "Directional": false + }] + }, { + "ID": 3671, + "SourceStructureID": 6050, + "TargetStructureID": 6050, + "Label": "6050-6050 via Touch from 147979 -> 147978", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 147979, + "TargetID": 147978, + "Directional": false + }] + }, { + "ID": 3672, + "SourceStructureID": 6050, + "TargetStructureID": 6115, + "Label": "6050-6115 via Touch from 127055 -> 127056", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 127055, + "TargetID": 127056, + "Directional": false + }] + }, { + "ID": 3673, + "SourceStructureID": 6050, + "TargetStructureID": 6169, + "Label": "6050-6169 via Adherens from 127012 -> 127013, 127061 -> 127062, 127065 -> 127064", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127012, + "TargetID": 127013, + "Directional": false + }, { + "SourceID": 127061, + "TargetID": 127062, + "Directional": false + }, { + "SourceID": 127065, + "TargetID": 127064, + "Directional": false + }] + }, { + "ID": 3674, + "SourceStructureID": 6050, + "TargetStructureID": 6169, + "Label": "6050-6169 via Gap Junction from 29709 -> 29708, 101828 -> 24647, 114326 -> 114325", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29709, + "TargetID": 29708, + "Directional": false + }, { + "SourceID": 101828, + "TargetID": 24647, + "Directional": false + }, { + "SourceID": 114326, + "TargetID": 114325, + "Directional": false + }] + }, { + "ID": 3675, + "SourceStructureID": 6300, + "TargetStructureID": 6050, + "Label": "6300-6050 via Adherens from 127096 -> 127097, 127098 -> 127099", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127096, + "TargetID": 127097, + "Directional": false + }, { + "SourceID": 127098, + "TargetID": 127099, + "Directional": false + }] + }, { + "ID": 3676, + "SourceStructureID": 7113, + "TargetStructureID": 6050, + "Label": "7113-6050 via Adherens from 127191 -> 127190, 127245 -> 127244", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127191, + "TargetID": 127190, + "Directional": false + }, { + "SourceID": 127245, + "TargetID": 127244, + "Directional": false + }] + }, { + "ID": 3677, + "SourceStructureID": 7113, + "TargetStructureID": 6050, + "Label": "7113-6050 via Gap Junction from 35953 -> 35952, 35954 -> 29716, 51680 -> 51681, 113574 -> 113573, 113875 -> 113874", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 35953, + "TargetID": 35952, + "Directional": false + }, { + "SourceID": 35954, + "TargetID": 29716, + "Directional": false + }, { + "SourceID": 51680, + "TargetID": 51681, + "Directional": false + }, { + "SourceID": 113574, + "TargetID": 113573, + "Directional": false + }, { + "SourceID": 113875, + "TargetID": 113874, + "Directional": false + }] + }, { + "ID": 3678, + "SourceStructureID": 7147, + "TargetStructureID": 6050, + "Label": "7147-6050 via Adherens from 127658 -> 127657", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127658, + "TargetID": 127657, + "Directional": false + }] + }, { + "ID": 3679, + "SourceStructureID": 7147, + "TargetStructureID": 6050, + "Label": "7147-6050 via Gap Junction from 51917 -> 51916, 114007 -> 114008, 114375 -> 114376", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51917, + "TargetID": 51916, + "Directional": false + }, { + "SourceID": 114007, + "TargetID": 114008, + "Directional": false + }, { + "SourceID": 114375, + "TargetID": 114376, + "Directional": false + }] + }, { + "ID": 3680, + "SourceStructureID": 9769, + "TargetStructureID": 6050, + "Label": "9769-6050 via Unknown from 126971 -> 126970, 127630 -> 127631", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126971, + "TargetID": 126970, + "Directional": false + }, { + "SourceID": 127630, + "TargetID": 127631, + "Directional": false + }] + }, { + "ID": 3681, + "SourceStructureID": 6050, + "TargetStructureID": 22974, + "Label": "6050-22974 via Adherens from 127638 -> 127639", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127638, + "TargetID": 127639, + "Directional": false + }] + }, { + "ID": 3682, + "SourceStructureID": 6050, + "TargetStructureID": 32945, + "Label": "6050-32945 via Unknown from 127027 -> 127028", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127027, + "TargetID": 127028, + "Directional": false + }] + }, { + "ID": 3683, + "SourceStructureID": 6050, + "TargetStructureID": 38302, + "Label": "6050-38302 via Adherens from 127349 -> 127350", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127349, + "TargetID": 127350, + "Directional": false + }] + }, { + "ID": 3684, + "SourceStructureID": 38307, + "TargetStructureID": 6050, + "Label": "38307-6050 via Adherens from 127282 -> 127281", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127282, + "TargetID": 127281, + "Directional": false + }] + }, { + "ID": 3685, + "SourceStructureID": 56841, + "TargetStructureID": 6050, + "Label": "56841-6050 via Unknown from 127595 -> 127594", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127595, + "TargetID": 127594, + "Directional": false + }] + }, { + "ID": 3686, + "SourceStructureID": 6050, + "TargetStructureID": 57063, + "Label": "6050-57063 via Unknown from 51657 -> 113871", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 51657, + "TargetID": 113871, + "Directional": false + }] + }, { + "ID": 3687, + "SourceStructureID": 6050, + "TargetStructureID": 57064, + "Label": "6050-57064 via Unknown from 119688 -> 128924, 127128 -> 127129, 127219 -> 113872, 127221 -> 127220, 127436 -> 127435, 128928 -> 128927, 136478 -> 127102", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 119688, + "TargetID": 128924, + "Directional": false + }, { + "SourceID": 127128, + "TargetID": 127129, + "Directional": false + }, { + "SourceID": 127219, + "TargetID": 113872, + "Directional": false + }, { + "SourceID": 127221, + "TargetID": 127220, + "Directional": false + }, { + "SourceID": 127436, + "TargetID": 127435, + "Directional": false + }, { + "SourceID": 128928, + "TargetID": 128927, + "Directional": false + }, { + "SourceID": 136478, + "TargetID": 127102, + "Directional": false + }] + }, { + "ID": 3688, + "SourceStructureID": 6050, + "TargetStructureID": 70219, + "Label": "6050-70219 via Unknown from 127040 -> 127041", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127040, + "TargetID": 127041, + "Directional": false + }] + }, { + "ID": 3689, + "SourceStructureID": 6050, + "TargetStructureID": 77658, + "Label": "6050-77658 via Unknown from 126989 -> 126988", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126989, + "TargetID": 126988, + "Directional": false + }] + }, { + "ID": 3690, + "SourceStructureID": 82091, + "TargetStructureID": 6050, + "Label": "82091-6050 via Unknown from 126997 -> 126996", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126997, + "TargetID": 126996, + "Directional": false + }] + }, { + "ID": 3691, + "SourceStructureID": 91867, + "TargetStructureID": 6050, + "Label": "91867-6050 via Adherens from 127230 -> 127231, 127233 -> 127234", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127230, + "TargetID": 127231, + "Directional": false + }, { + "SourceID": 127233, + "TargetID": 127234, + "Directional": false + }] + }, { + "ID": 3692, + "SourceStructureID": 6050, + "TargetStructureID": 91867, + "Label": "6050-91867 via Unknown from 113537 -> 128989, 113561 -> 113559", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113537, + "TargetID": 128989, + "Directional": false + }, { + "SourceID": 113561, + "TargetID": 113559, + "Directional": false + }] + }, { + "ID": 3693, + "SourceStructureID": 6050, + "TargetStructureID": 105188, + "Label": "6050-105188 via Unknown from 127481 -> 127482", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127481, + "TargetID": 127482, + "Directional": false + }] + }, { + "ID": 3694, + "SourceStructureID": 6050, + "TargetStructureID": 113939, + "Label": "6050-113939 via Adherens from 119464 -> 119463, 127462 -> 127463", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 119464, + "TargetID": 119463, + "Directional": false + }, { + "SourceID": 127462, + "TargetID": 127463, + "Directional": false + }] + }, { + "ID": 3695, + "SourceStructureID": 113939, + "TargetStructureID": 6050, + "Label": "113939-6050 via Unknown from 119462 -> 119460", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 119462, + "TargetID": 119460, + "Directional": false + }] + }, { + "ID": 3696, + "SourceStructureID": 6050, + "TargetStructureID": 113965, + "Label": "6050-113965 via Unknown from 119465 -> 119466", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 119465, + "TargetID": 119466, + "Directional": false + }] + }, { + "ID": 3697, + "SourceStructureID": 114230, + "TargetStructureID": 6050, + "Label": "114230-6050 via Unknown from 114231 -> 56067, 127544 -> 127545", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114231, + "TargetID": 56067, + "Directional": false + }, { + "SourceID": 127544, + "TargetID": 127545, + "Directional": false + }] + }, { + "ID": 3698, + "SourceStructureID": 6050, + "TargetStructureID": 114242, + "Label": "6050-114242 via Unknown from 119468 -> 119467", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 119468, + "TargetID": 119467, + "Directional": false + }] + }, { + "ID": 3699, + "SourceStructureID": 6050, + "TargetStructureID": 114259, + "Label": "6050-114259 via Unknown from 127655 -> 127656", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127655, + "TargetID": 127656, + "Directional": false + }] + }, { + "ID": 3700, + "SourceStructureID": 120956, + "TargetStructureID": 6050, + "Label": "120956-6050 via Unknown from 127252 -> 127251", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127252, + "TargetID": 127251, + "Directional": false + }] + }, { + "ID": 3701, + "SourceStructureID": 6050, + "TargetStructureID": 124198, + "Label": "6050-124198 via Unknown from 127288 -> 127289", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127288, + "TargetID": 127289, + "Directional": false + }] + }, { + "ID": 3702, + "SourceStructureID": 6050, + "TargetStructureID": 127148, + "Label": "6050-127148 via Unknown from 127150 -> 127151", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 127150, + "TargetID": 127151, + "Directional": false + }] + }, { + "ID": 3703, + "SourceStructureID": 128961, + "TargetStructureID": 6050, + "Label": "128961-6050 via Unknown from 128962 -> 128960", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128962, + "TargetID": 128960, + "Directional": false + }] + }, { + "ID": 3704, + "SourceStructureID": 6115, + "TargetStructureID": 6115, + "Label": "6115-6115 via Gap Junction from 16063 -> 55784, 72770 -> 72769", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16063, + "TargetID": 55784, + "Directional": false + }, { + "SourceID": 72770, + "TargetID": 72769, + "Directional": false + }] + }, { + "ID": 3705, + "SourceStructureID": 6115, + "TargetStructureID": 6169, + "Label": "6115-6169 via Gap Junction from 24649 -> 24648, 55853 -> 55852, 72533 -> 72532, 72675 -> 72676, 73194 -> 73193, 135173 -> 135172", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24649, + "TargetID": 24648, + "Directional": false + }, { + "SourceID": 55853, + "TargetID": 55852, + "Directional": false + }, { + "SourceID": 72533, + "TargetID": 72532, + "Directional": false + }, { + "SourceID": 72675, + "TargetID": 72676, + "Directional": false + }, { + "SourceID": 73194, + "TargetID": 73193, + "Directional": false + }, { + "SourceID": 135173, + "TargetID": 135172, + "Directional": false + }] + }, { + "ID": 3706, + "SourceStructureID": 7113, + "TargetStructureID": 6115, + "Label": "7113-6115 via Adherens from 135307 -> 135306", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135307, + "TargetID": 135306, + "Directional": false + }] + }, { + "ID": 3707, + "SourceStructureID": 6115, + "TargetStructureID": 7113, + "Label": "6115-7113 via Gap Junction from 72214 -> 72213, 73879 -> 73880, 73935 -> 80966, 74172 -> 81891", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 72214, + "TargetID": 72213, + "Directional": false + }, { + "SourceID": 73879, + "TargetID": 73880, + "Directional": false + }, { + "SourceID": 73935, + "TargetID": 80966, + "Directional": false + }, { + "SourceID": 74172, + "TargetID": 81891, + "Directional": false + }] + }, { + "ID": 3708, + "SourceStructureID": 7147, + "TargetStructureID": 6115, + "Label": "7147-6115 via Gap Junction from 52194 -> 52193, 134239 -> 134240, 134252 -> 134253, 134255 -> 134254, 134256 -> 134257", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52194, + "TargetID": 52193, + "Directional": false + }, { + "SourceID": 134239, + "TargetID": 134240, + "Directional": false + }, { + "SourceID": 134252, + "TargetID": 134253, + "Directional": false + }, { + "SourceID": 134255, + "TargetID": 134254, + "Directional": false + }, { + "SourceID": 134256, + "TargetID": 134257, + "Directional": false + }] + }, { + "ID": 3709, + "SourceStructureID": 6115, + "TargetStructureID": 8577, + "Label": "6115-8577 via Unknown from 73403 -> 73405", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73403, + "TargetID": 73405, + "Directional": false + }] + }, { + "ID": 3710, + "SourceStructureID": 6115, + "TargetStructureID": 8579, + "Label": "6115-8579 via Adherens from 81173 -> 81174", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81173, + "TargetID": 81174, + "Directional": false + }] + }, { + "ID": 3711, + "SourceStructureID": 8579, + "TargetStructureID": 6115, + "Label": "8579-6115 via Unknown from 72504 -> 72502, 72534 -> 72536, 72601 -> 72602, 73554 -> 134229", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72504, + "TargetID": 72502, + "Directional": false + }, { + "SourceID": 72534, + "TargetID": 72536, + "Directional": false + }, { + "SourceID": 72601, + "TargetID": 72602, + "Directional": false + }, { + "SourceID": 73554, + "TargetID": 134229, + "Directional": false + }] + }, { + "ID": 3712, + "SourceStructureID": 6115, + "TargetStructureID": 8720, + "Label": "6115-8720 via Unknown from 72944 -> 72945, 127791 -> 73209", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72944, + "TargetID": 72945, + "Directional": false + }, { + "SourceID": 127791, + "TargetID": 73209, + "Directional": false + }] + }, { + "ID": 3713, + "SourceStructureID": 16087, + "TargetStructureID": 6115, + "Label": "16087-6115 via Adherens from 72686 -> 72685, 75422 -> 75421", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72686, + "TargetID": 72685, + "Directional": false + }, { + "SourceID": 75422, + "TargetID": 75421, + "Directional": false + }] + }, { + "ID": 3714, + "SourceStructureID": 6115, + "TargetStructureID": 18282, + "Label": "6115-18282 via Unknown from 73239 -> 73240", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73239, + "TargetID": 73240, + "Directional": false + }] + }, { + "ID": 3715, + "SourceStructureID": 6115, + "TargetStructureID": 29702, + "Label": "6115-29702 via Adherens from 75477 -> 75476, 75542 -> 75543, 75544 -> 75545", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75477, + "TargetID": 75476, + "Directional": false + }, { + "SourceID": 75542, + "TargetID": 75543, + "Directional": false + }, { + "SourceID": 75544, + "TargetID": 75545, + "Directional": false + }] + }, { + "ID": 3716, + "SourceStructureID": 6115, + "TargetStructureID": 29702, + "Label": "6115-29702 via Unknown from 73247 -> 73248, 74102 -> 74103", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73247, + "TargetID": 73248, + "Directional": false + }, { + "SourceID": 74102, + "TargetID": 74103, + "Directional": false + }] + }, { + "ID": 3717, + "SourceStructureID": 6115, + "TargetStructureID": 32970, + "Label": "6115-32970 via Unknown from 80944 -> 80943", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80944, + "TargetID": 80943, + "Directional": false + }] + }, { + "ID": 3718, + "SourceStructureID": 6115, + "TargetStructureID": 41608, + "Label": "6115-41608 via Unknown from 72279 -> 72280, 72806 -> 72805", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72279, + "TargetID": 72280, + "Directional": false + }, { + "SourceID": 72806, + "TargetID": 72805, + "Directional": false + }] + }, { + "ID": 3719, + "SourceStructureID": 61853, + "TargetStructureID": 6115, + "Label": "61853-6115 via Adherens from 81426 -> 73776", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81426, + "TargetID": 73776, + "Directional": false + }] + }, { + "ID": 3720, + "SourceStructureID": 6115, + "TargetStructureID": 66323, + "Label": "6115-66323 via Adherens from 73129 -> 84324", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73129, + "TargetID": 84324, + "Directional": false + }] + }, { + "ID": 3721, + "SourceStructureID": 66323, + "TargetStructureID": 6115, + "Label": "66323-6115 via Unknown from 84400 -> 74274", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84400, + "TargetID": 74274, + "Directional": false + }] + }, { + "ID": 3722, + "SourceStructureID": 6115, + "TargetStructureID": 66339, + "Label": "6115-66339 via Adherens from 84272 -> 84271", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84272, + "TargetID": 84271, + "Directional": false + }] + }, { + "ID": 3723, + "SourceStructureID": 6115, + "TargetStructureID": 66339, + "Label": "6115-66339 via Unknown from 73131 -> 73132, 76008 -> 76009", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73131, + "TargetID": 73132, + "Directional": false + }, { + "SourceID": 76008, + "TargetID": 76009, + "Directional": false + }] + }, { + "ID": 3724, + "SourceStructureID": 6115, + "TargetStructureID": 66634, + "Label": "6115-66634 via Adherens from 74411 -> 74410", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74411, + "TargetID": 74410, + "Directional": false + }] + }, { + "ID": 3725, + "SourceStructureID": 6115, + "TargetStructureID": 66696, + "Label": "6115-66696 via Unknown from 72636 -> 72637", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72636, + "TargetID": 72637, + "Directional": false + }] + }, { + "ID": 3726, + "SourceStructureID": 68548, + "TargetStructureID": 6115, + "Label": "68548-6115 via Unknown from 73563 -> 73046", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73563, + "TargetID": 73046, + "Directional": false + }] + }, { + "ID": 3727, + "SourceStructureID": 6115, + "TargetStructureID": 69500, + "Label": "6115-69500 via Adherens from 81172 -> 81171", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81172, + "TargetID": 81171, + "Directional": false + }] + }, { + "ID": 3728, + "SourceStructureID": 69500, + "TargetStructureID": 6115, + "Label": "69500-6115 via Unknown from 72434 -> 72433", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72434, + "TargetID": 72433, + "Directional": false + }] + }, { + "ID": 3729, + "SourceStructureID": 6115, + "TargetStructureID": 69503, + "Label": "6115-69503 via Adherens from 72416 -> 116708", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72416, + "TargetID": 116708, + "Directional": false + }] + }, { + "ID": 3730, + "SourceStructureID": 6115, + "TargetStructureID": 69503, + "Label": "6115-69503 via Unknown from 72435 -> 72437", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72435, + "TargetID": 72437, + "Directional": false + }] + }, { + "ID": 3731, + "SourceStructureID": 6115, + "TargetStructureID": 71351, + "Label": "6115-71351 via Unknown from 74421 -> 74422, 134262 -> 75527", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74421, + "TargetID": 74422, + "Directional": false + }, { + "SourceID": 134262, + "TargetID": 75527, + "Directional": false + }] + }, { + "ID": 3732, + "SourceStructureID": 6115, + "TargetStructureID": 71615, + "Label": "6115-71615 via Unknown from 72918 -> 72919, 75983 -> 81334", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72918, + "TargetID": 72919, + "Directional": false + }, { + "SourceID": 75983, + "TargetID": 81334, + "Directional": false + }] + }, { + "ID": 3733, + "SourceStructureID": 6115, + "TargetStructureID": 72072, + "Label": "6115-72072 via Unknown from 72073 -> 134155", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72073, + "TargetID": 134155, + "Directional": false + }] + }, { + "ID": 3734, + "SourceStructureID": 6115, + "TargetStructureID": 72082, + "Label": "6115-72082 via Adherens from 72083 -> 72084", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72083, + "TargetID": 72084, + "Directional": false + }] + }, { + "ID": 3735, + "SourceStructureID": 6115, + "TargetStructureID": 72162, + "Label": "6115-72162 via Adherens from 37633 -> 82093", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 37633, + "TargetID": 82093, + "Directional": false + }] + }, { + "ID": 3736, + "SourceStructureID": 72166, + "TargetStructureID": 6115, + "Label": "72166-6115 via Adherens from 134159 -> 134158", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134159, + "TargetID": 134158, + "Directional": false + }] + }, { + "ID": 3737, + "SourceStructureID": 72176, + "TargetStructureID": 6115, + "Label": "72176-6115 via Unknown from 81157 -> 75533", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81157, + "TargetID": 75533, + "Directional": false + }] + }, { + "ID": 3738, + "SourceStructureID": 6115, + "TargetStructureID": 72180, + "Label": "6115-72180 via Adherens from 81152 -> 81151", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81152, + "TargetID": 81151, + "Directional": false + }] + }, { + "ID": 3739, + "SourceStructureID": 6115, + "TargetStructureID": 72188, + "Label": "6115-72188 via Adherens from 127273 -> 127274", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 127273, + "TargetID": 127274, + "Directional": false + }] + }, { + "ID": 3740, + "SourceStructureID": 6115, + "TargetStructureID": 72218, + "Label": "6115-72218 via Adherens from 72219 -> 72220", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72219, + "TargetID": 72220, + "Directional": false + }] + }, { + "ID": 3741, + "SourceStructureID": 72223, + "TargetStructureID": 6115, + "Label": "72223-6115 via Unknown from 80930 -> 80931", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80930, + "TargetID": 80931, + "Directional": false + }] + }, { + "ID": 3742, + "SourceStructureID": 6115, + "TargetStructureID": 72227, + "Label": "6115-72227 via Unknown from 80939 -> 80940", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80939, + "TargetID": 80940, + "Directional": false + }] + }, { + "ID": 3743, + "SourceStructureID": 6115, + "TargetStructureID": 72252, + "Label": "6115-72252 via Unknown from 72253 -> 72254", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72253, + "TargetID": 72254, + "Directional": false + }] + }, { + "ID": 3744, + "SourceStructureID": 6115, + "TargetStructureID": 72299, + "Label": "6115-72299 via Unknown from 74743 -> 74744, 134162 -> 134163", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74743, + "TargetID": 74744, + "Directional": false + }, { + "SourceID": 134162, + "TargetID": 134163, + "Directional": false + }] + }, { + "ID": 3745, + "SourceStructureID": 6115, + "TargetStructureID": 72326, + "Label": "6115-72326 via Unknown from 82370 -> 82373", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82370, + "TargetID": 82373, + "Directional": false + }] + }, { + "ID": 3746, + "SourceStructureID": 6115, + "TargetStructureID": 72331, + "Label": "6115-72331 via Adherens from 73236 -> 73235", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73236, + "TargetID": 73235, + "Directional": false + }] + }, { + "ID": 3747, + "SourceStructureID": 6115, + "TargetStructureID": 72363, + "Label": "6115-72363 via Unknown from 72374 -> 82038, 73256 -> 73257", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72374, + "TargetID": 82038, + "Directional": false + }, { + "SourceID": 73256, + "TargetID": 73257, + "Directional": false + }] + }, { + "ID": 3748, + "SourceStructureID": 72376, + "TargetStructureID": 6115, + "Label": "72376-6115 via Adherens from 75601 -> 75600", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75601, + "TargetID": 75600, + "Directional": false + }] + }, { + "ID": 3749, + "SourceStructureID": 72402, + "TargetStructureID": 6115, + "Label": "72402-6115 via Adherens from 80946 -> 80947", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80946, + "TargetID": 80947, + "Directional": false + }] + }, { + "ID": 3750, + "SourceStructureID": 72438, + "TargetStructureID": 6115, + "Label": "72438-6115 via Unknown from 72439 -> 72440", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72439, + "TargetID": 72440, + "Directional": false + }] + }, { + "ID": 3751, + "SourceStructureID": 72445, + "TargetStructureID": 6115, + "Label": "72445-6115 via Unknown from 72447 -> 72446", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72447, + "TargetID": 72446, + "Directional": false + }] + }, { + "ID": 3752, + "SourceStructureID": 72486, + "TargetStructureID": 6115, + "Label": "72486-6115 via Unknown from 72487 -> 72488", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72487, + "TargetID": 72488, + "Directional": false + }] + }, { + "ID": 3753, + "SourceStructureID": 6115, + "TargetStructureID": 72496, + "Label": "6115-72496 via Unknown from 72499 -> 72500", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72499, + "TargetID": 72500, + "Directional": false + }] + }, { + "ID": 3754, + "SourceStructureID": 6115, + "TargetStructureID": 72505, + "Label": "6115-72505 via Adherens from 72498 -> 72509, 72508 -> 72507", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72498, + "TargetID": 72509, + "Directional": false + }, { + "SourceID": 72508, + "TargetID": 72507, + "Directional": false + }] + }, { + "ID": 3755, + "SourceStructureID": 72518, + "TargetStructureID": 6115, + "Label": "72518-6115 via Unknown from 82311 -> 135176, 82313 -> 82312", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82311, + "TargetID": 135176, + "Directional": false + }, { + "SourceID": 82313, + "TargetID": 82312, + "Directional": false + }] + }, { + "ID": 3756, + "SourceStructureID": 72523, + "TargetStructureID": 6115, + "Label": "72523-6115 via Unknown from 75606 -> 75605", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75606, + "TargetID": 75605, + "Directional": false + }] + }, { + "ID": 3757, + "SourceStructureID": 6115, + "TargetStructureID": 72526, + "Label": "6115-72526 via Adherens from 72537 -> 72538", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72537, + "TargetID": 72538, + "Directional": false + }] + }, { + "ID": 3758, + "SourceStructureID": 6115, + "TargetStructureID": 72539, + "Label": "6115-72539 via BC Conventional Synapse from 72541 -> 72540", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 72541, + "TargetID": 72540, + "Directional": false + }] + }, { + "ID": 3759, + "SourceStructureID": 6115, + "TargetStructureID": 72542, + "Label": "6115-72542 via Unknown from 75613 -> 75614", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75613, + "TargetID": 75614, + "Directional": false + }] + }, { + "ID": 3760, + "SourceStructureID": 6115, + "TargetStructureID": 72556, + "Label": "6115-72556 via Unknown from 72558 -> 72557", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72558, + "TargetID": 72557, + "Directional": false + }] + }, { + "ID": 3761, + "SourceStructureID": 6115, + "TargetStructureID": 72569, + "Label": "6115-72569 via Adherens from 72579 -> 72581", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72579, + "TargetID": 72581, + "Directional": false + }] + }, { + "ID": 3762, + "SourceStructureID": 72584, + "TargetStructureID": 6115, + "Label": "72584-6115 via Unknown from 72585 -> 72586", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72585, + "TargetID": 72586, + "Directional": false + }] + }, { + "ID": 3763, + "SourceStructureID": 72592, + "TargetStructureID": 6115, + "Label": "72592-6115 via Unknown from 72597 -> 72596, 72598 -> 72599, 75656 -> 75657", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72597, + "TargetID": 72596, + "Directional": false + }, { + "SourceID": 72598, + "TargetID": 72599, + "Directional": false + }, { + "SourceID": 75656, + "TargetID": 75657, + "Directional": false + }] + }, { + "ID": 3764, + "SourceStructureID": 6115, + "TargetStructureID": 72604, + "Label": "6115-72604 via Adherens from 72603 -> 72605, 75659 -> 75660", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72603, + "TargetID": 72605, + "Directional": false + }, { + "SourceID": 75659, + "TargetID": 75660, + "Directional": false + }] + }, { + "ID": 3765, + "SourceStructureID": 72604, + "TargetStructureID": 6115, + "Label": "72604-6115 via Unknown from 72667 -> 72666, 72674 -> 72673, 75669 -> 75670", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72667, + "TargetID": 72666, + "Directional": false + }, { + "SourceID": 72674, + "TargetID": 72673, + "Directional": false + }, { + "SourceID": 75669, + "TargetID": 75670, + "Directional": false + }] + }, { + "ID": 3766, + "SourceStructureID": 6115, + "TargetStructureID": 72612, + "Label": "6115-72612 via Unknown from 72611 -> 72613", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72611, + "TargetID": 72613, + "Directional": false + }] + }, { + "ID": 3767, + "SourceStructureID": 72633, + "TargetStructureID": 6115, + "Label": "72633-6115 via Unknown from 72634 -> 72635", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72634, + "TargetID": 72635, + "Directional": false + }] + }, { + "ID": 3768, + "SourceStructureID": 6115, + "TargetStructureID": 72643, + "Label": "6115-72643 via Unknown from 73262 -> 73263", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73262, + "TargetID": 73263, + "Directional": false + }] + }, { + "ID": 3769, + "SourceStructureID": 6115, + "TargetStructureID": 72658, + "Label": "6115-72658 via Unknown from 72663 -> 72662", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72663, + "TargetID": 72662, + "Directional": false + }] + }, { + "ID": 3770, + "SourceStructureID": 72687, + "TargetStructureID": 6115, + "Label": "72687-6115 via Adherens from 72700 -> 72699", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72700, + "TargetID": 72699, + "Directional": false + }] + }, { + "ID": 3771, + "SourceStructureID": 6115, + "TargetStructureID": 72687, + "Label": "6115-72687 via Unknown from 72703 -> 72704", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72703, + "TargetID": 72704, + "Directional": false + }] + }, { + "ID": 3772, + "SourceStructureID": 6115, + "TargetStructureID": 72690, + "Label": "6115-72690 via Unknown from 81914 -> 81915", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81914, + "TargetID": 81915, + "Directional": false + }] + }, { + "ID": 3773, + "SourceStructureID": 6115, + "TargetStructureID": 72697, + "Label": "6115-72697 via Unknown from 72701 -> 72702", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72701, + "TargetID": 72702, + "Directional": false + }] + }, { + "ID": 3774, + "SourceStructureID": 6115, + "TargetStructureID": 72712, + "Label": "6115-72712 via Unknown from 72720 -> 72721", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72720, + "TargetID": 72721, + "Directional": false + }] + }, { + "ID": 3775, + "SourceStructureID": 6115, + "TargetStructureID": 72730, + "Label": "6115-72730 via Unknown from 72733 -> 72734", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72733, + "TargetID": 72734, + "Directional": false + }] + }, { + "ID": 3776, + "SourceStructureID": 72749, + "TargetStructureID": 6115, + "Label": "72749-6115 via Adherens from 72750 -> 72748", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72750, + "TargetID": 72748, + "Directional": false + }] + }, { + "ID": 3777, + "SourceStructureID": 72751, + "TargetStructureID": 6115, + "Label": "72751-6115 via Unknown from 72752 -> 72753", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72752, + "TargetID": 72753, + "Directional": false + }] + }, { + "ID": 3778, + "SourceStructureID": 6115, + "TargetStructureID": 72754, + "Label": "6115-72754 via Unknown from 72761 -> 72762", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72761, + "TargetID": 72762, + "Directional": false + }] + }, { + "ID": 3779, + "SourceStructureID": 6115, + "TargetStructureID": 72756, + "Label": "6115-72756 via Unknown from 72759 -> 72760", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72759, + "TargetID": 72760, + "Directional": false + }] + }, { + "ID": 3780, + "SourceStructureID": 6115, + "TargetStructureID": 72765, + "Label": "6115-72765 via Unknown from 72764 -> 72767", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72764, + "TargetID": 72767, + "Directional": false + }] + }, { + "ID": 3781, + "SourceStructureID": 6115, + "TargetStructureID": 72772, + "Label": "6115-72772 via Adherens from 72802 -> 72801", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72802, + "TargetID": 72801, + "Directional": false + }] + }, { + "ID": 3782, + "SourceStructureID": 6115, + "TargetStructureID": 72778, + "Label": "6115-72778 via Adherens from 72783 -> 72782", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72783, + "TargetID": 72782, + "Directional": false + }] + }, { + "ID": 3783, + "SourceStructureID": 6115, + "TargetStructureID": 72784, + "Label": "6115-72784 via Unknown from 72790 -> 72791", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72790, + "TargetID": 72791, + "Directional": false + }] + }, { + "ID": 3784, + "SourceStructureID": 72818, + "TargetStructureID": 6115, + "Label": "72818-6115 via Unknown from 134265 -> 75837", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134265, + "TargetID": 75837, + "Directional": false + }] + }, { + "ID": 3785, + "SourceStructureID": 72821, + "TargetStructureID": 6115, + "Label": "72821-6115 via Gap Junction from 72822 -> 55805", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 72822, + "TargetID": 55805, + "Directional": false + }] + }, { + "ID": 3786, + "SourceStructureID": 6115, + "TargetStructureID": 72837, + "Label": "6115-72837 via Unknown from 72838 -> 72839", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72838, + "TargetID": 72839, + "Directional": false + }] + }, { + "ID": 3787, + "SourceStructureID": 6115, + "TargetStructureID": 72844, + "Label": "6115-72844 via Unknown from 75980 -> 75981", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75980, + "TargetID": 75981, + "Directional": false + }] + }, { + "ID": 3788, + "SourceStructureID": 72847, + "TargetStructureID": 6115, + "Label": "72847-6115 via Adherens from 72911 -> 72910", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72911, + "TargetID": 72910, + "Directional": false + }] + }, { + "ID": 3789, + "SourceStructureID": 6115, + "TargetStructureID": 72901, + "Label": "6115-72901 via Unknown from 75978 -> 75979", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75978, + "TargetID": 75979, + "Directional": false + }] + }, { + "ID": 3790, + "SourceStructureID": 6115, + "TargetStructureID": 72915, + "Label": "6115-72915 via Unknown from 80941 -> 80942", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80941, + "TargetID": 80942, + "Directional": false + }] + }, { + "ID": 3791, + "SourceStructureID": 72920, + "TargetStructureID": 6115, + "Label": "72920-6115 via Unknown from 82300 -> 75984", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82300, + "TargetID": 75984, + "Directional": false + }] + }, { + "ID": 3792, + "SourceStructureID": 6115, + "TargetStructureID": 72930, + "Label": "6115-72930 via Unknown from 73039 -> 82410, 81345 -> 81346", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73039, + "TargetID": 82410, + "Directional": false + }, { + "SourceID": 81345, + "TargetID": 81346, + "Directional": false + }] + }, { + "ID": 3793, + "SourceStructureID": 6115, + "TargetStructureID": 72936, + "Label": "6115-72936 via Adherens from 76021 -> 76022", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76021, + "TargetID": 76022, + "Directional": false + }] + }, { + "ID": 3794, + "SourceStructureID": 72939, + "TargetStructureID": 6115, + "Label": "72939-6115 via Adherens from 76020 -> 76019", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76020, + "TargetID": 76019, + "Directional": false + }] + }, { + "ID": 3795, + "SourceStructureID": 72941, + "TargetStructureID": 6115, + "Label": "72941-6115 via Gap Junction from 72942 -> 72943", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 72942, + "TargetID": 72943, + "Directional": false + }] + }, { + "ID": 3796, + "SourceStructureID": 72964, + "TargetStructureID": 6115, + "Label": "72964-6115 via Adherens from 72971 -> 72972", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72971, + "TargetID": 72972, + "Directional": false + }] + }, { + "ID": 3797, + "SourceStructureID": 6115, + "TargetStructureID": 72964, + "Label": "6115-72964 via Unknown from 74306 -> 74307", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74306, + "TargetID": 74307, + "Directional": false + }] + }, { + "ID": 3798, + "SourceStructureID": 6115, + "TargetStructureID": 72969, + "Label": "6115-72969 via Unknown from 73041 -> 73042", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73041, + "TargetID": 73042, + "Directional": false + }] + }, { + "ID": 3799, + "SourceStructureID": 6115, + "TargetStructureID": 72985, + "Label": "6115-72985 via Unknown from 134269 -> 134270", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134269, + "TargetID": 134270, + "Directional": false + }] + }, { + "ID": 3800, + "SourceStructureID": 6115, + "TargetStructureID": 72987, + "Label": "6115-72987 via Unknown from 73002 -> 73003, 73049 -> 73050, 75992 -> 75993", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73002, + "TargetID": 73003, + "Directional": false + }, { + "SourceID": 73049, + "TargetID": 73050, + "Directional": false + }, { + "SourceID": 75992, + "TargetID": 75993, + "Directional": false + }] + }, { + "ID": 3801, + "SourceStructureID": 6115, + "TargetStructureID": 73010, + "Label": "6115-73010 via Unknown from 73009 -> 73011", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73009, + "TargetID": 73011, + "Directional": false + }] + }, { + "ID": 3802, + "SourceStructureID": 6115, + "TargetStructureID": 73069, + "Label": "6115-73069 via Unknown from 73070 -> 73071", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73070, + "TargetID": 73071, + "Directional": false + }] + }, { + "ID": 3803, + "SourceStructureID": 6115, + "TargetStructureID": 73086, + "Label": "6115-73086 via Unknown from 75998 -> 75999", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75998, + "TargetID": 75999, + "Directional": false + }] + }, { + "ID": 3804, + "SourceStructureID": 6115, + "TargetStructureID": 73096, + "Label": "6115-73096 via Adherens from 134221 -> 134222", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134221, + "TargetID": 134222, + "Directional": false + }] + }, { + "ID": 3805, + "SourceStructureID": 6115, + "TargetStructureID": 73096, + "Label": "6115-73096 via Unknown from 73097 -> 73098", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73097, + "TargetID": 73098, + "Directional": false + }] + }, { + "ID": 3806, + "SourceStructureID": 73118, + "TargetStructureID": 6115, + "Label": "73118-6115 via Adherens from 76006 -> 76005", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76006, + "TargetID": 76005, + "Directional": false + }] + }, { + "ID": 3807, + "SourceStructureID": 73144, + "TargetStructureID": 6115, + "Label": "73144-6115 via Adherens from 73154 -> 73155, 116698 -> 73413", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73154, + "TargetID": 73155, + "Directional": false + }, { + "SourceID": 116698, + "TargetID": 73413, + "Directional": false + }] + }, { + "ID": 3808, + "SourceStructureID": 6115, + "TargetStructureID": 73173, + "Label": "6115-73173 via Unknown from 73172 -> 73174", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73172, + "TargetID": 73174, + "Directional": false + }] + }, { + "ID": 3809, + "SourceStructureID": 6115, + "TargetStructureID": 73197, + "Label": "6115-73197 via Unknown from 73206 -> 73207", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73206, + "TargetID": 73207, + "Directional": false + }] + }, { + "ID": 3810, + "SourceStructureID": 73212, + "TargetStructureID": 6115, + "Label": "73212-6115 via Adherens from 80911 -> 80910", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80911, + "TargetID": 80910, + "Directional": false + }] + }, { + "ID": 3811, + "SourceStructureID": 6115, + "TargetStructureID": 73270, + "Label": "6115-73270 via Unknown from 73269 -> 73271", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73269, + "TargetID": 73271, + "Directional": false + }] + }, { + "ID": 3812, + "SourceStructureID": 73273, + "TargetStructureID": 6115, + "Label": "73273-6115 via Adherens from 73288 -> 73286", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73288, + "TargetID": 73286, + "Directional": false + }] + }, { + "ID": 3813, + "SourceStructureID": 73273, + "TargetStructureID": 6115, + "Label": "73273-6115 via Unknown from 73287 -> 73285", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73287, + "TargetID": 73285, + "Directional": false + }] + }, { + "ID": 3814, + "SourceStructureID": 73275, + "TargetStructureID": 6115, + "Label": "73275-6115 via Unknown from 82045 -> 73284", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82045, + "TargetID": 73284, + "Directional": false + }] + }, { + "ID": 3815, + "SourceStructureID": 6115, + "TargetStructureID": 73280, + "Label": "6115-73280 via Unknown from 73281 -> 73282", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73281, + "TargetID": 73282, + "Directional": false + }] + }, { + "ID": 3816, + "SourceStructureID": 6115, + "TargetStructureID": 73293, + "Label": "6115-73293 via Unknown from 73296 -> 73298", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73296, + "TargetID": 73298, + "Directional": false + }] + }, { + "ID": 3817, + "SourceStructureID": 6115, + "TargetStructureID": 73313, + "Label": "6115-73313 via Adherens from 73318 -> 73319", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73318, + "TargetID": 73319, + "Directional": false + }] + }, { + "ID": 3818, + "SourceStructureID": 6115, + "TargetStructureID": 73339, + "Label": "6115-73339 via Unknown from 73340 -> 73341", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73340, + "TargetID": 73341, + "Directional": false + }] + }, { + "ID": 3819, + "SourceStructureID": 73343, + "TargetStructureID": 6115, + "Label": "73343-6115 via Unknown from 73346 -> 73347", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73346, + "TargetID": 73347, + "Directional": false + }] + }, { + "ID": 3820, + "SourceStructureID": 73368, + "TargetStructureID": 6115, + "Label": "73368-6115 via Unknown from 73370 -> 73369", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73370, + "TargetID": 73369, + "Directional": false + }] + }, { + "ID": 3821, + "SourceStructureID": 6115, + "TargetStructureID": 73439, + "Label": "6115-73439 via Unknown from 73441 -> 73442", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73441, + "TargetID": 73442, + "Directional": false + }] + }, { + "ID": 3822, + "SourceStructureID": 6115, + "TargetStructureID": 73488, + "Label": "6115-73488 via Unknown from 73489 -> 73490", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73489, + "TargetID": 73490, + "Directional": false + }] + }, { + "ID": 3823, + "SourceStructureID": 73503, + "TargetStructureID": 6115, + "Label": "73503-6115 via Unknown from 73504 -> 73505", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73504, + "TargetID": 73505, + "Directional": false + }] + }, { + "ID": 3824, + "SourceStructureID": 6115, + "TargetStructureID": 73524, + "Label": "6115-73524 via Adherens from 73526 -> 73525", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73526, + "TargetID": 73525, + "Directional": false + }] + }, { + "ID": 3825, + "SourceStructureID": 6115, + "TargetStructureID": 73524, + "Label": "6115-73524 via Unknown from 73536 -> 73537", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73536, + "TargetID": 73537, + "Directional": false + }] + }, { + "ID": 3826, + "SourceStructureID": 73564, + "TargetStructureID": 6115, + "Label": "73564-6115 via Unknown from 74180 -> 74181, 74183 -> 74184", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74180, + "TargetID": 74181, + "Directional": false + }, { + "SourceID": 74183, + "TargetID": 74184, + "Directional": false + }] + }, { + "ID": 3827, + "SourceStructureID": 6115, + "TargetStructureID": 73772, + "Label": "6115-73772 via Unknown from 73778 -> 73779", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73778, + "TargetID": 73779, + "Directional": false + }] + }, { + "ID": 3828, + "SourceStructureID": 6115, + "TargetStructureID": 73796, + "Label": "6115-73796 via Unknown from 73798 -> 73799", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73798, + "TargetID": 73799, + "Directional": false + }] + }, { + "ID": 3829, + "SourceStructureID": 73804, + "TargetStructureID": 6115, + "Label": "73804-6115 via Unknown from 74201 -> 74200", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74201, + "TargetID": 74200, + "Directional": false + }] + }, { + "ID": 3830, + "SourceStructureID": 6115, + "TargetStructureID": 73807, + "Label": "6115-73807 via Unknown from 74707 -> 82108", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74707, + "TargetID": 82108, + "Directional": false + }] + }, { + "ID": 3831, + "SourceStructureID": 73825, + "TargetStructureID": 6115, + "Label": "73825-6115 via Unknown from 75844 -> 75843", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75844, + "TargetID": 75843, + "Directional": false + }] + }, { + "ID": 3832, + "SourceStructureID": 6115, + "TargetStructureID": 73846, + "Label": "6115-73846 via Adherens from 73850 -> 73849", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73850, + "TargetID": 73849, + "Directional": false + }] + }, { + "ID": 3833, + "SourceStructureID": 73864, + "TargetStructureID": 6115, + "Label": "73864-6115 via Unknown from 81335 -> 73865", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81335, + "TargetID": 73865, + "Directional": false + }] + }, { + "ID": 3834, + "SourceStructureID": 6115, + "TargetStructureID": 73868, + "Label": "6115-73868 via Unknown from 73960 -> 134235", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73960, + "TargetID": 134235, + "Directional": false + }] + }, { + "ID": 3835, + "SourceStructureID": 6115, + "TargetStructureID": 73871, + "Label": "6115-73871 via Unknown from 73876 -> 134230", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73876, + "TargetID": 134230, + "Directional": false + }] + }, { + "ID": 3836, + "SourceStructureID": 73921, + "TargetStructureID": 6115, + "Label": "73921-6115 via Unknown from 134234 -> 73922", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134234, + "TargetID": 73922, + "Directional": false + }] + }, { + "ID": 3837, + "SourceStructureID": 6115, + "TargetStructureID": 73937, + "Label": "6115-73937 via Adherens from 73936 -> 73938", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73936, + "TargetID": 73938, + "Directional": false + }] + }, { + "ID": 3838, + "SourceStructureID": 73979, + "TargetStructureID": 6115, + "Label": "73979-6115 via Adherens from 73980 -> 73981", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73980, + "TargetID": 73981, + "Directional": false + }] + }, { + "ID": 3839, + "SourceStructureID": 6115, + "TargetStructureID": 74007, + "Label": "6115-74007 via Adherens from 80937 -> 80938", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80937, + "TargetID": 80938, + "Directional": false + }] + }, { + "ID": 3840, + "SourceStructureID": 74008, + "TargetStructureID": 6115, + "Label": "74008-6115 via Unknown from 134236 -> 74011", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134236, + "TargetID": 74011, + "Directional": false + }] + }, { + "ID": 3841, + "SourceStructureID": 6115, + "TargetStructureID": 74039, + "Label": "6115-74039 via Unknown from 74040 -> 134237", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74040, + "TargetID": 134237, + "Directional": false + }] + }, { + "ID": 3842, + "SourceStructureID": 74064, + "TargetStructureID": 6115, + "Label": "74064-6115 via Adherens from 74112 -> 74111", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74112, + "TargetID": 74111, + "Directional": false + }] + }, { + "ID": 3843, + "SourceStructureID": 74082, + "TargetStructureID": 6115, + "Label": "74082-6115 via Adherens from 74108 -> 74109", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74108, + "TargetID": 74109, + "Directional": false + }] + }, { + "ID": 3844, + "SourceStructureID": 6115, + "TargetStructureID": 74082, + "Label": "6115-74082 via Unknown from 74084 -> 74085", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74084, + "TargetID": 74085, + "Directional": false + }] + }, { + "ID": 3845, + "SourceStructureID": 6115, + "TargetStructureID": 74094, + "Label": "6115-74094 via Unknown from 74095 -> 74096", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74095, + "TargetID": 74096, + "Directional": false + }] + }, { + "ID": 3846, + "SourceStructureID": 6115, + "TargetStructureID": 74104, + "Label": "6115-74104 via Unknown from 74105 -> 74106", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74105, + "TargetID": 74106, + "Directional": false + }] + }, { + "ID": 3847, + "SourceStructureID": 6115, + "TargetStructureID": 74279, + "Label": "6115-74279 via Adherens from 80948 -> 80949", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80948, + "TargetID": 80949, + "Directional": false + }] + }, { + "ID": 3848, + "SourceStructureID": 74308, + "TargetStructureID": 6115, + "Label": "74308-6115 via Unknown from 134238 -> 74311", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134238, + "TargetID": 74311, + "Directional": false + }] + }, { + "ID": 3849, + "SourceStructureID": 74313, + "TargetStructureID": 6115, + "Label": "74313-6115 via Adherens from 74314 -> 74312", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74314, + "TargetID": 74312, + "Directional": false + }] + }, { + "ID": 3850, + "SourceStructureID": 6115, + "TargetStructureID": 74328, + "Label": "6115-74328 via Unknown from 74329 -> 74330", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74329, + "TargetID": 74330, + "Directional": false + }] + }, { + "ID": 3851, + "SourceStructureID": 74402, + "TargetStructureID": 6115, + "Label": "74402-6115 via Adherens from 74405 -> 74406", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74405, + "TargetID": 74406, + "Directional": false + }] + }, { + "ID": 3852, + "SourceStructureID": 74469, + "TargetStructureID": 6115, + "Label": "74469-6115 via Adherens from 134245 -> 134244", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134245, + "TargetID": 134244, + "Directional": false + }] + }, { + "ID": 3853, + "SourceStructureID": 6115, + "TargetStructureID": 74471, + "Label": "6115-74471 via Unknown from 75871 -> 75872", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75871, + "TargetID": 75872, + "Directional": false + }] + }, { + "ID": 3854, + "SourceStructureID": 74485, + "TargetStructureID": 6115, + "Label": "74485-6115 via Unknown from 134267 -> 75875", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134267, + "TargetID": 75875, + "Directional": false + }] + }, { + "ID": 3855, + "SourceStructureID": 6115, + "TargetStructureID": 74489, + "Label": "6115-74489 via Unknown from 75876 -> 75877", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75876, + "TargetID": 75877, + "Directional": false + }] + }, { + "ID": 3856, + "SourceStructureID": 6115, + "TargetStructureID": 74502, + "Label": "6115-74502 via Adherens from 74504 -> 74503", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74504, + "TargetID": 74503, + "Directional": false + }] + }, { + "ID": 3857, + "SourceStructureID": 74508, + "TargetStructureID": 6115, + "Label": "74508-6115 via Adherens from 74510 -> 74509", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74510, + "TargetID": 74509, + "Directional": false + }] + }, { + "ID": 3858, + "SourceStructureID": 74511, + "TargetStructureID": 6115, + "Label": "74511-6115 via Adherens from 74541 -> 74542", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74541, + "TargetID": 74542, + "Directional": false + }] + }, { + "ID": 3859, + "SourceStructureID": 6115, + "TargetStructureID": 74545, + "Label": "6115-74545 via Unknown from 74544 -> 74546", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74544, + "TargetID": 74546, + "Directional": false + }] + }, { + "ID": 3860, + "SourceStructureID": 74655, + "TargetStructureID": 6115, + "Label": "74655-6115 via Adherens from 74656 -> 74657", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74656, + "TargetID": 74657, + "Directional": false + }] + }, { + "ID": 3861, + "SourceStructureID": 74687, + "TargetStructureID": 6115, + "Label": "74687-6115 via Unknown from 74692 -> 74693, 74758 -> 74757", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74692, + "TargetID": 74693, + "Directional": false + }, { + "SourceID": 74758, + "TargetID": 74757, + "Directional": false + }] + }, { + "ID": 3862, + "SourceStructureID": 6115, + "TargetStructureID": 74699, + "Label": "6115-74699 via Unknown from 74789 -> 76190", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74789, + "TargetID": 76190, + "Directional": false + }] + }, { + "ID": 3863, + "SourceStructureID": 6115, + "TargetStructureID": 74706, + "Label": "6115-74706 via Unknown from 74709 -> 74710", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74709, + "TargetID": 74710, + "Directional": false + }] + }, { + "ID": 3864, + "SourceStructureID": 6115, + "TargetStructureID": 74714, + "Label": "6115-74714 via Adherens from 74716 -> 74717", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74716, + "TargetID": 74717, + "Directional": false + }] + }, { + "ID": 3865, + "SourceStructureID": 6115, + "TargetStructureID": 74749, + "Label": "6115-74749 via Adherens from 74752 -> 74753", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74752, + "TargetID": 74753, + "Directional": false + }] + }, { + "ID": 3866, + "SourceStructureID": 6115, + "TargetStructureID": 74756, + "Label": "6115-74756 via Unknown from 74759 -> 74760", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74759, + "TargetID": 74760, + "Directional": false + }] + }, { + "ID": 3867, + "SourceStructureID": 6115, + "TargetStructureID": 74775, + "Label": "6115-74775 via Unknown from 134248 -> 134247", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134248, + "TargetID": 134247, + "Directional": false + }] + }, { + "ID": 3868, + "SourceStructureID": 6115, + "TargetStructureID": 74783, + "Label": "6115-74783 via Unknown from 74782 -> 74784", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74782, + "TargetID": 74784, + "Directional": false + }] + }, { + "ID": 3869, + "SourceStructureID": 6115, + "TargetStructureID": 74797, + "Label": "6115-74797 via Unknown from 74796 -> 134249", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74796, + "TargetID": 134249, + "Directional": false + }] + }, { + "ID": 3870, + "SourceStructureID": 6115, + "TargetStructureID": 74807, + "Label": "6115-74807 via Unknown from 74808 -> 74809", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74808, + "TargetID": 74809, + "Directional": false + }] + }, { + "ID": 3871, + "SourceStructureID": 6115, + "TargetStructureID": 74812, + "Label": "6115-74812 via Unknown from 74813 -> 74814", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74813, + "TargetID": 74814, + "Directional": false + }] + }, { + "ID": 3872, + "SourceStructureID": 74830, + "TargetStructureID": 6115, + "Label": "74830-6115 via Adherens from 80917 -> 80918", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80917, + "TargetID": 80918, + "Directional": false + }] + }, { + "ID": 3873, + "SourceStructureID": 74834, + "TargetStructureID": 6115, + "Label": "74834-6115 via Adherens from 135170 -> 135169", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135170, + "TargetID": 135169, + "Directional": false + }] + }, { + "ID": 3874, + "SourceStructureID": 74846, + "TargetStructureID": 6115, + "Label": "74846-6115 via Adherens from 74847 -> 74848", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74847, + "TargetID": 74848, + "Directional": false + }] + }, { + "ID": 3875, + "SourceStructureID": 6115, + "TargetStructureID": 74994, + "Label": "6115-74994 via Adherens from 74996 -> 74997", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74996, + "TargetID": 74997, + "Directional": false + }] + }, { + "ID": 3876, + "SourceStructureID": 75078, + "TargetStructureID": 6115, + "Label": "75078-6115 via Unknown from 135308 -> 134250", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135308, + "TargetID": 134250, + "Directional": false + }] + }, { + "ID": 3877, + "SourceStructureID": 6115, + "TargetStructureID": 75099, + "Label": "6115-75099 via Unknown from 75100 -> 80954", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75100, + "TargetID": 80954, + "Directional": false + }] + }, { + "ID": 3878, + "SourceStructureID": 6115, + "TargetStructureID": 75141, + "Label": "6115-75141 via Unknown from 75142 -> 80955", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75142, + "TargetID": 80955, + "Directional": false + }] + }, { + "ID": 3879, + "SourceStructureID": 75144, + "TargetStructureID": 6115, + "Label": "75144-6115 via Adherens from 75145 -> 75143", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75145, + "TargetID": 75143, + "Directional": false + }] + }, { + "ID": 3880, + "SourceStructureID": 75150, + "TargetStructureID": 6115, + "Label": "75150-6115 via Adherens from 75151 -> 75152", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75151, + "TargetID": 75152, + "Directional": false + }] + }, { + "ID": 3881, + "SourceStructureID": 6115, + "TargetStructureID": 75189, + "Label": "6115-75189 via Unknown from 75203 -> 75204", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75203, + "TargetID": 75204, + "Directional": false + }] + }, { + "ID": 3882, + "SourceStructureID": 6115, + "TargetStructureID": 75199, + "Label": "6115-75199 via Adherens from 75198 -> 75200", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75198, + "TargetID": 75200, + "Directional": false + }] + }, { + "ID": 3883, + "SourceStructureID": 75205, + "TargetStructureID": 6115, + "Label": "75205-6115 via Adherens from 116714 -> 80929", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116714, + "TargetID": 80929, + "Directional": false + }] + }, { + "ID": 3884, + "SourceStructureID": 6115, + "TargetStructureID": 75223, + "Label": "6115-75223 via Adherens from 75222 -> 75224", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75222, + "TargetID": 75224, + "Directional": false + }] + }, { + "ID": 3885, + "SourceStructureID": 6115, + "TargetStructureID": 75257, + "Label": "6115-75257 via Unknown from 75258 -> 75259", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75258, + "TargetID": 75259, + "Directional": false + }] + }, { + "ID": 3886, + "SourceStructureID": 6115, + "TargetStructureID": 75263, + "Label": "6115-75263 via Adherens from 75265 -> 75264", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75265, + "TargetID": 75264, + "Directional": false + }] + }, { + "ID": 3887, + "SourceStructureID": 75429, + "TargetStructureID": 6115, + "Label": "75429-6115 via Adherens from 75430 -> 75431", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75430, + "TargetID": 75431, + "Directional": false + }] + }, { + "ID": 3888, + "SourceStructureID": 6115, + "TargetStructureID": 75442, + "Label": "6115-75442 via Adherens from 75443 -> 75444", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75443, + "TargetID": 75444, + "Directional": false + }] + }, { + "ID": 3889, + "SourceStructureID": 6115, + "TargetStructureID": 75474, + "Label": "6115-75474 via Adherens from 134260 -> 134261", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134260, + "TargetID": 134261, + "Directional": false + }] + }, { + "ID": 3890, + "SourceStructureID": 75564, + "TargetStructureID": 6115, + "Label": "75564-6115 via Adherens from 75565 -> 75566", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75565, + "TargetID": 75566, + "Directional": false + }] + }, { + "ID": 3891, + "SourceStructureID": 6115, + "TargetStructureID": 75603, + "Label": "6115-75603 via Unknown from 75602 -> 75604", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75602, + "TargetID": 75604, + "Directional": false + }] + }, { + "ID": 3892, + "SourceStructureID": 75615, + "TargetStructureID": 6115, + "Label": "75615-6115 via Adherens from 75616 -> 75617, 75618 -> 75619", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75616, + "TargetID": 75617, + "Directional": false + }, { + "SourceID": 75618, + "TargetID": 75619, + "Directional": false + }] + }, { + "ID": 3893, + "SourceStructureID": 75848, + "TargetStructureID": 6115, + "Label": "75848-6115 via Adherens from 75849 -> 75850", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75849, + "TargetID": 75850, + "Directional": false + }] + }, { + "ID": 3894, + "SourceStructureID": 75885, + "TargetStructureID": 6115, + "Label": "75885-6115 via Adherens from 75886 -> 75884", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75886, + "TargetID": 75884, + "Directional": false + }] + }, { + "ID": 3895, + "SourceStructureID": 6115, + "TargetStructureID": 75953, + "Label": "6115-75953 via Adherens from 75952 -> 75954", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75952, + "TargetID": 75954, + "Directional": false + }] + }, { + "ID": 3896, + "SourceStructureID": 6115, + "TargetStructureID": 75965, + "Label": "6115-75965 via Adherens from 75964 -> 75966", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75964, + "TargetID": 75966, + "Directional": false + }] + }, { + "ID": 3897, + "SourceStructureID": 6115, + "TargetStructureID": 75968, + "Label": "6115-75968 via Unknown from 75967 -> 75969", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75967, + "TargetID": 75969, + "Directional": false + }] + }, { + "ID": 3898, + "SourceStructureID": 6115, + "TargetStructureID": 75976, + "Label": "6115-75976 via Unknown from 75975 -> 75977", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75975, + "TargetID": 75977, + "Directional": false + }] + }, { + "ID": 3899, + "SourceStructureID": 6115, + "TargetStructureID": 75988, + "Label": "6115-75988 via Unknown from 75987 -> 75989", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75987, + "TargetID": 75989, + "Directional": false + }] + }, { + "ID": 3900, + "SourceStructureID": 6115, + "TargetStructureID": 76029, + "Label": "6115-76029 via Adherens from 76028 -> 76030", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76028, + "TargetID": 76030, + "Directional": false + }] + }, { + "ID": 3901, + "SourceStructureID": 76034, + "TargetStructureID": 6115, + "Label": "76034-6115 via Unknown from 76035 -> 76033", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76035, + "TargetID": 76033, + "Directional": false + }] + }, { + "ID": 3902, + "SourceStructureID": 76095, + "TargetStructureID": 6115, + "Label": "76095-6115 via Unknown from 76100 -> 76099", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76100, + "TargetID": 76099, + "Directional": false + }] + }, { + "ID": 3903, + "SourceStructureID": 76137, + "TargetStructureID": 6115, + "Label": "76137-6115 via Gap Junction from 76167 -> 76168", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 76167, + "TargetID": 76168, + "Directional": false + }] + }, { + "ID": 3904, + "SourceStructureID": 6115, + "TargetStructureID": 76161, + "Label": "6115-76161 via Adherens from 76163 -> 76162", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76163, + "TargetID": 76162, + "Directional": false + }] + }, { + "ID": 3905, + "SourceStructureID": 6115, + "TargetStructureID": 77674, + "Label": "6115-77674 via Adherens from 90647 -> 90649", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90647, + "TargetID": 90649, + "Directional": false + }] + }, { + "ID": 3906, + "SourceStructureID": 6115, + "TargetStructureID": 80912, + "Label": "6115-80912 via Adherens from 80913 -> 80914", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80913, + "TargetID": 80914, + "Directional": false + }] + }, { + "ID": 3907, + "SourceStructureID": 6115, + "TargetStructureID": 80919, + "Label": "6115-80919 via Adherens from 80921 -> 80920", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80921, + "TargetID": 80920, + "Directional": false + }] + }, { + "ID": 3908, + "SourceStructureID": 6115, + "TargetStructureID": 80935, + "Label": "6115-80935 via Unknown from 73780 -> 80936", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73780, + "TargetID": 80936, + "Directional": false + }] + }, { + "ID": 3909, + "SourceStructureID": 6115, + "TargetStructureID": 80957, + "Label": "6115-80957 via Adherens from 80956 -> 80958", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80956, + "TargetID": 80958, + "Directional": false + }] + }, { + "ID": 3910, + "SourceStructureID": 6115, + "TargetStructureID": 80957, + "Label": "6115-80957 via Unknown from 75208 -> 80959", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75208, + "TargetID": 80959, + "Directional": false + }] + }, { + "ID": 3911, + "SourceStructureID": 6115, + "TargetStructureID": 80962, + "Label": "6115-80962 via Unknown from 75556 -> 80963", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75556, + "TargetID": 80963, + "Directional": false + }] + }, { + "ID": 3912, + "SourceStructureID": 6115, + "TargetStructureID": 81153, + "Label": "6115-81153 via Unknown from 75077 -> 81154", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75077, + "TargetID": 81154, + "Directional": false + }] + }, { + "ID": 3913, + "SourceStructureID": 6115, + "TargetStructureID": 81160, + "Label": "6115-81160 via Unknown from 76023 -> 81161", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 76023, + "TargetID": 81161, + "Directional": false + }] + }, { + "ID": 3914, + "SourceStructureID": 81165, + "TargetStructureID": 6115, + "Label": "81165-6115 via Unknown from 81166 -> 75154", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81166, + "TargetID": 75154, + "Directional": false + }] + }, { + "ID": 3915, + "SourceStructureID": 6115, + "TargetStructureID": 81167, + "Label": "6115-81167 via Unknown from 74533 -> 81168", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74533, + "TargetID": 81168, + "Directional": false + }] + }, { + "ID": 3916, + "SourceStructureID": 81169, + "TargetStructureID": 6115, + "Label": "81169-6115 via Unknown from 81170 -> 75093, 135163 -> 135164", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81170, + "TargetID": 75093, + "Directional": false + }, { + "SourceID": 135163, + "TargetID": 135164, + "Directional": false + }] + }, { + "ID": 3917, + "SourceStructureID": 81350, + "TargetStructureID": 6115, + "Label": "81350-6115 via Unknown from 82371 -> 81351", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82371, + "TargetID": 81351, + "Directional": false + }] + }, { + "ID": 3918, + "SourceStructureID": 82566, + "TargetStructureID": 6115, + "Label": "82566-6115 via Unknown from 82567 -> 74477", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82567, + "TargetID": 74477, + "Directional": false + }] + }, { + "ID": 3919, + "SourceStructureID": 6115, + "TargetStructureID": 82644, + "Label": "6115-82644 via Unknown from 90632 -> 90633", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90632, + "TargetID": 90633, + "Directional": false + }] + }, { + "ID": 3920, + "SourceStructureID": 6115, + "TargetStructureID": 82653, + "Label": "6115-82653 via Adherens from 90628 -> 90629", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90628, + "TargetID": 90629, + "Directional": false + }] + }, { + "ID": 3921, + "SourceStructureID": 6115, + "TargetStructureID": 82969, + "Label": "6115-82969 via Unknown from 72242 -> 82970", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72242, + "TargetID": 82970, + "Directional": false + }] + }, { + "ID": 3922, + "SourceStructureID": 90631, + "TargetStructureID": 6115, + "Label": "90631-6115 via Unknown from 90639 -> 90640", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90639, + "TargetID": 90640, + "Directional": false + }] + }, { + "ID": 3923, + "SourceStructureID": 90645, + "TargetStructureID": 6115, + "Label": "90645-6115 via Adherens from 90646 -> 90644", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90646, + "TargetID": 90644, + "Directional": false + }] + }, { + "ID": 3924, + "SourceStructureID": 6117, + "TargetStructureID": 6117, + "Label": "6117-6117 via Gap Junction from 134146 -> 134145", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 134146, + "TargetID": 134145, + "Directional": false + }] + }, { + "ID": 3925, + "SourceStructureID": 6169, + "TargetStructureID": 6117, + "Label": "6169-6117 via Gap Junction from 20565 -> 20566, 24645 -> 20580, 59087 -> 59084, 86222 -> 86223, 92385 -> 92386", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 20565, + "TargetID": 20566, + "Directional": false + }, { + "SourceID": 24645, + "TargetID": 20580, + "Directional": false + }, { + "SourceID": 59087, + "TargetID": 59084, + "Directional": false + }, { + "SourceID": 86222, + "TargetID": 86223, + "Directional": false + }, { + "SourceID": 92385, + "TargetID": 92386, + "Directional": false + }] + }, { + "ID": 3926, + "SourceStructureID": 7024, + "TargetStructureID": 6117, + "Label": "7024-6117 via Gap Junction from 45119 -> 30873", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45119, + "TargetID": 30873, + "Directional": false + }] + }, { + "ID": 3927, + "SourceStructureID": 7113, + "TargetStructureID": 6117, + "Label": "7113-6117 via Gap Junction from 58790 -> 58789", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 58790, + "TargetID": 58789, + "Directional": false + }] + }, { + "ID": 3928, + "SourceStructureID": 6117, + "TargetStructureID": 7594, + "Label": "6117-7594 via Adherens from 83914 -> 83915", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83914, + "TargetID": 83915, + "Directional": false + }] + }, { + "ID": 3929, + "SourceStructureID": 9769, + "TargetStructureID": 6117, + "Label": "9769-6117 via Adherens from 84243 -> 84242", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84243, + "TargetID": 84242, + "Directional": false + }] + }, { + "ID": 3930, + "SourceStructureID": 9769, + "TargetStructureID": 6117, + "Label": "9769-6117 via Unknown from 83143 -> 83142, 84172 -> 84168, 84386 -> 84385, 84638 -> 84637", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83143, + "TargetID": 83142, + "Directional": false + }, { + "SourceID": 84172, + "TargetID": 84168, + "Directional": false + }, { + "SourceID": 84386, + "TargetID": 84385, + "Directional": false + }, { + "SourceID": 84638, + "TargetID": 84637, + "Directional": false + }] + }, { + "ID": 3931, + "SourceStructureID": 6117, + "TargetStructureID": 20136, + "Label": "6117-20136 via Adherens from 86095 -> 86096", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86095, + "TargetID": 86096, + "Directional": false + }] + }, { + "ID": 3932, + "SourceStructureID": 6117, + "TargetStructureID": 20136, + "Label": "6117-20136 via Gap Junction from 83961 -> 83962, 83969 -> 83970, 83983 -> 83984, 134141 -> 134142", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 83961, + "TargetID": 83962, + "Directional": false + }, { + "SourceID": 83969, + "TargetID": 83970, + "Directional": false + }, { + "SourceID": 83983, + "TargetID": 83984, + "Directional": false + }, { + "SourceID": 134141, + "TargetID": 134142, + "Directional": false + }] + }, { + "ID": 3933, + "SourceStructureID": 32035, + "TargetStructureID": 6117, + "Label": "32035-6117 via Adherens from 32039 -> 10531, 86085 -> 86351, 86266 -> 86267", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 32039, + "TargetID": 10531, + "Directional": false + }, { + "SourceID": 86085, + "TargetID": 86351, + "Directional": false + }, { + "SourceID": 86266, + "TargetID": 86267, + "Directional": false + }] + }, { + "ID": 3934, + "SourceStructureID": 6117, + "TargetStructureID": 32035, + "Label": "6117-32035 via Unknown from 86019 -> 86020", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86019, + "TargetID": 86020, + "Directional": false + }] + }, { + "ID": 3935, + "SourceStructureID": 6117, + "TargetStructureID": 35240, + "Label": "6117-35240 via Adherens from 86471 -> 86472", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86471, + "TargetID": 86472, + "Directional": false + }] + }, { + "ID": 3936, + "SourceStructureID": 35240, + "TargetStructureID": 6117, + "Label": "35240-6117 via Unknown from 86460 -> 86461, 86478 -> 86477", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86460, + "TargetID": 86461, + "Directional": false + }, { + "SourceID": 86478, + "TargetID": 86477, + "Directional": false + }] + }, { + "ID": 3937, + "SourceStructureID": 6117, + "TargetStructureID": 35975, + "Label": "6117-35975 via Unknown from 84977 -> 84979", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84977, + "TargetID": 84979, + "Directional": false + }] + }, { + "ID": 3938, + "SourceStructureID": 6117, + "TargetStructureID": 39957, + "Label": "6117-39957 via Unknown from 86104 -> 86103", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86104, + "TargetID": 86103, + "Directional": false + }] + }, { + "ID": 3939, + "SourceStructureID": 40037, + "TargetStructureID": 6117, + "Label": "40037-6117 via Unknown from 86021 -> 86022", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86021, + "TargetID": 86022, + "Directional": false + }] + }, { + "ID": 3940, + "SourceStructureID": 6117, + "TargetStructureID": 40039, + "Label": "6117-40039 via Adherens from 86379 -> 86380", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86379, + "TargetID": 86380, + "Directional": false + }] + }, { + "ID": 3941, + "SourceStructureID": 40602, + "TargetStructureID": 6117, + "Label": "40602-6117 via Adherens from 86417 -> 86416", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86417, + "TargetID": 86416, + "Directional": false + }] + }, { + "ID": 3942, + "SourceStructureID": 40602, + "TargetStructureID": 6117, + "Label": "40602-6117 via Unknown from 86433 -> 86434", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86433, + "TargetID": 86434, + "Directional": false + }] + }, { + "ID": 3943, + "SourceStructureID": 6117, + "TargetStructureID": 45220, + "Label": "6117-45220 via Adherens from 86507 -> 86508", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86507, + "TargetID": 86508, + "Directional": false + }] + }, { + "ID": 3944, + "SourceStructureID": 6117, + "TargetStructureID": 54881, + "Label": "6117-54881 via Adherens from 86297 -> 86296", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86297, + "TargetID": 86296, + "Directional": false + }] + }, { + "ID": 3945, + "SourceStructureID": 6117, + "TargetStructureID": 58592, + "Label": "6117-58592 via Unknown from 84941 -> 84939, 86491 -> 86492", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84941, + "TargetID": 84939, + "Directional": false + }, { + "SourceID": 86491, + "TargetID": 86492, + "Directional": false + }] + }, { + "ID": 3946, + "SourceStructureID": 58691, + "TargetStructureID": 6117, + "Label": "58691-6117 via Adherens from 84933 -> 84934, 84954 -> 84955", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84933, + "TargetID": 84934, + "Directional": false + }, { + "SourceID": 84954, + "TargetID": 84955, + "Directional": false + }] + }, { + "ID": 3947, + "SourceStructureID": 6117, + "TargetStructureID": 58691, + "Label": "6117-58691 via Unknown from 84872 -> 84871", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84872, + "TargetID": 84871, + "Directional": false + }] + }, { + "ID": 3948, + "SourceStructureID": 6117, + "TargetStructureID": 58714, + "Label": "6117-58714 via Adherens from 86109 -> 86108, 86184 -> 86185, 86188 -> 86187, 86190 -> 86191, 86411 -> 86410", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86109, + "TargetID": 86108, + "Directional": false + }, { + "SourceID": 86184, + "TargetID": 86185, + "Directional": false + }, { + "SourceID": 86188, + "TargetID": 86187, + "Directional": false + }, { + "SourceID": 86190, + "TargetID": 86191, + "Directional": false + }, { + "SourceID": 86411, + "TargetID": 86410, + "Directional": false + }] + }, { + "ID": 3949, + "SourceStructureID": 6117, + "TargetStructureID": 58714, + "Label": "6117-58714 via Unknown from 86156 -> 86157, 86160 -> 86161", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86156, + "TargetID": 86157, + "Directional": false + }, { + "SourceID": 86160, + "TargetID": 86161, + "Directional": false + }] + }, { + "ID": 3950, + "SourceStructureID": 6117, + "TargetStructureID": 58757, + "Label": "6117-58757 via Adherens from 86500 -> 86501", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86500, + "TargetID": 86501, + "Directional": false + }] + }, { + "ID": 3951, + "SourceStructureID": 6117, + "TargetStructureID": 58777, + "Label": "6117-58777 via Adherens from 86510 -> 86509, 86522 -> 86523, 86560 -> 86561", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86510, + "TargetID": 86509, + "Directional": false + }, { + "SourceID": 86522, + "TargetID": 86523, + "Directional": false + }, { + "SourceID": 86560, + "TargetID": 86561, + "Directional": false + }] + }, { + "ID": 3952, + "SourceStructureID": 6117, + "TargetStructureID": 58777, + "Label": "6117-58777 via Unknown from 86520 -> 86521", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86520, + "TargetID": 86521, + "Directional": false + }] + }, { + "ID": 3953, + "SourceStructureID": 61897, + "TargetStructureID": 6117, + "Label": "61897-6117 via Unknown from 83221 -> 83220", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83221, + "TargetID": 83220, + "Directional": false + }] + }, { + "ID": 3954, + "SourceStructureID": 68691, + "TargetStructureID": 6117, + "Label": "68691-6117 via Unknown from 84159 -> 84157", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84159, + "TargetID": 84157, + "Directional": false + }] + }, { + "ID": 3955, + "SourceStructureID": 6117, + "TargetStructureID": 70469, + "Label": "6117-70469 via Adherens from 83138 -> 83141", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83138, + "TargetID": 83141, + "Directional": false + }] + }, { + "ID": 3956, + "SourceStructureID": 70653, + "TargetStructureID": 6117, + "Label": "70653-6117 via Unknown from 86363 -> 86364", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86363, + "TargetID": 86364, + "Directional": false + }] + }, { + "ID": 3957, + "SourceStructureID": 75578, + "TargetStructureID": 6117, + "Label": "75578-6117 via Unknown from 75585 -> 83187", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75585, + "TargetID": 83187, + "Directional": false + }] + }, { + "ID": 3958, + "SourceStructureID": 6117, + "TargetStructureID": 83133, + "Label": "6117-83133 via Unknown from 83132 -> 83134, 83136 -> 83137", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83132, + "TargetID": 83134, + "Directional": false + }, { + "SourceID": 83136, + "TargetID": 83137, + "Directional": false + }] + }, { + "ID": 3959, + "SourceStructureID": 83155, + "TargetStructureID": 6117, + "Label": "83155-6117 via Unknown from 83156 -> 83154", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83156, + "TargetID": 83154, + "Directional": false + }] + }, { + "ID": 3960, + "SourceStructureID": 6117, + "TargetStructureID": 83226, + "Label": "6117-83226 via Unknown from 83225 -> 83227", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83225, + "TargetID": 83227, + "Directional": false + }] + }, { + "ID": 3961, + "SourceStructureID": 6117, + "TargetStructureID": 83229, + "Label": "6117-83229 via Unknown from 83230 -> 83231", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83230, + "TargetID": 83231, + "Directional": false + }] + }, { + "ID": 3962, + "SourceStructureID": 6117, + "TargetStructureID": 83234, + "Label": "6117-83234 via Unknown from 134139 -> 83235", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134139, + "TargetID": 83235, + "Directional": false + }] + }, { + "ID": 3963, + "SourceStructureID": 83264, + "TargetStructureID": 6117, + "Label": "83264-6117 via Unknown from 83265 -> 83263", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83265, + "TargetID": 83263, + "Directional": false + }] + }, { + "ID": 3964, + "SourceStructureID": 83921, + "TargetStructureID": 6117, + "Label": "83921-6117 via Unknown from 83926 -> 83927", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83926, + "TargetID": 83927, + "Directional": false + }] + }, { + "ID": 3965, + "SourceStructureID": 6117, + "TargetStructureID": 83954, + "Label": "6117-83954 via Adherens from 83953 -> 83955", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83953, + "TargetID": 83955, + "Directional": false + }] + }, { + "ID": 3966, + "SourceStructureID": 84170, + "TargetStructureID": 6117, + "Label": "84170-6117 via Unknown from 84171 -> 84169", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84171, + "TargetID": 84169, + "Directional": false + }] + }, { + "ID": 3967, + "SourceStructureID": 6117, + "TargetStructureID": 84181, + "Label": "6117-84181 via Unknown from 84191 -> 84192", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84191, + "TargetID": 84192, + "Directional": false + }] + }, { + "ID": 3968, + "SourceStructureID": 6117, + "TargetStructureID": 84193, + "Label": "6117-84193 via Adherens from 84196 -> 84197", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84196, + "TargetID": 84197, + "Directional": false + }] + }, { + "ID": 3969, + "SourceStructureID": 6117, + "TargetStructureID": 84235, + "Label": "6117-84235 via Adherens from 84234 -> 84236", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84234, + "TargetID": 84236, + "Directional": false + }] + }, { + "ID": 3970, + "SourceStructureID": 6117, + "TargetStructureID": 84656, + "Label": "6117-84656 via Unknown from 84655 -> 84657", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84655, + "TargetID": 84657, + "Directional": false + }] + }, { + "ID": 3971, + "SourceStructureID": 84782, + "TargetStructureID": 6117, + "Label": "84782-6117 via Unknown from 84785 -> 84784", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84785, + "TargetID": 84784, + "Directional": false + }] + }, { + "ID": 3972, + "SourceStructureID": 84790, + "TargetStructureID": 6117, + "Label": "84790-6117 via Adherens from 84850 -> 84851, 84854 -> 84855, 86008 -> 86009", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84850, + "TargetID": 84851, + "Directional": false + }, { + "SourceID": 84854, + "TargetID": 84855, + "Directional": false + }, { + "SourceID": 86008, + "TargetID": 86009, + "Directional": false + }] + }, { + "ID": 3973, + "SourceStructureID": 84790, + "TargetStructureID": 6117, + "Label": "84790-6117 via Unknown from 84852 -> 84853", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84852, + "TargetID": 84853, + "Directional": false + }] + }, { + "ID": 3974, + "SourceStructureID": 6117, + "TargetStructureID": 84858, + "Label": "6117-84858 via Unknown from 84869 -> 84868", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84869, + "TargetID": 84868, + "Directional": false + }] + }, { + "ID": 3975, + "SourceStructureID": 6117, + "TargetStructureID": 84937, + "Label": "6117-84937 via Adherens from 84936 -> 84938", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84936, + "TargetID": 84938, + "Directional": false + }] + }, { + "ID": 3976, + "SourceStructureID": 6117, + "TargetStructureID": 84957, + "Label": "6117-84957 via Adherens from 84956 -> 84958", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84956, + "TargetID": 84958, + "Directional": false + }] + }, { + "ID": 3977, + "SourceStructureID": 6117, + "TargetStructureID": 84971, + "Label": "6117-84971 via Adherens from 84970 -> 84972", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84970, + "TargetID": 84972, + "Directional": false + }] + }, { + "ID": 3978, + "SourceStructureID": 84983, + "TargetStructureID": 6117, + "Label": "84983-6117 via Unknown from 84990 -> 84991", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84990, + "TargetID": 84991, + "Directional": false + }] + }, { + "ID": 3979, + "SourceStructureID": 84988, + "TargetStructureID": 6117, + "Label": "84988-6117 via Unknown from 84989 -> 84987", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84989, + "TargetID": 84987, + "Directional": false + }] + }, { + "ID": 3980, + "SourceStructureID": 6117, + "TargetStructureID": 84995, + "Label": "6117-84995 via Unknown from 84996 -> 84997", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84996, + "TargetID": 84997, + "Directional": false + }] + }, { + "ID": 3981, + "SourceStructureID": 6117, + "TargetStructureID": 85002, + "Label": "6117-85002 via Adherens from 85001 -> 85003", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85001, + "TargetID": 85003, + "Directional": false + }] + }, { + "ID": 3982, + "SourceStructureID": 85009, + "TargetStructureID": 6117, + "Label": "85009-6117 via Unknown from 85010 -> 85011", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85010, + "TargetID": 85011, + "Directional": false + }] + }, { + "ID": 3983, + "SourceStructureID": 85018, + "TargetStructureID": 6117, + "Label": "85018-6117 via Unknown from 85020 -> 85021", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85020, + "TargetID": 85021, + "Directional": false + }] + }, { + "ID": 3984, + "SourceStructureID": 6117, + "TargetStructureID": 85219, + "Label": "6117-85219 via Unknown from 85229 -> 85227", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85229, + "TargetID": 85227, + "Directional": false + }] + }, { + "ID": 3985, + "SourceStructureID": 6117, + "TargetStructureID": 85235, + "Label": "6117-85235 via Adherens from 85237 -> 85236", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85237, + "TargetID": 85236, + "Directional": false + }] + }, { + "ID": 3986, + "SourceStructureID": 6117, + "TargetStructureID": 85266, + "Label": "6117-85266 via Unknown from 85291 -> 85292", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85291, + "TargetID": 85292, + "Directional": false + }] + }, { + "ID": 3987, + "SourceStructureID": 6117, + "TargetStructureID": 85293, + "Label": "6117-85293 via Unknown from 85296 -> 85295", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85296, + "TargetID": 85295, + "Directional": false + }] + }, { + "ID": 3988, + "SourceStructureID": 85298, + "TargetStructureID": 6117, + "Label": "85298-6117 via Unknown from 85300 -> 85299", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85300, + "TargetID": 85299, + "Directional": false + }] + }, { + "ID": 3989, + "SourceStructureID": 6117, + "TargetStructureID": 85307, + "Label": "6117-85307 via Unknown from 85306 -> 85308", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85306, + "TargetID": 85308, + "Directional": false + }] + }, { + "ID": 3990, + "SourceStructureID": 6117, + "TargetStructureID": 85435, + "Label": "6117-85435 via Adherens from 85432 -> 85437", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85432, + "TargetID": 85437, + "Directional": false + }] + }, { + "ID": 3991, + "SourceStructureID": 6117, + "TargetStructureID": 85661, + "Label": "6117-85661 via Adherens from 85871 -> 85872", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85871, + "TargetID": 85872, + "Directional": false + }] + }, { + "ID": 3992, + "SourceStructureID": 6117, + "TargetStructureID": 85661, + "Label": "6117-85661 via Unknown from 85664 -> 85665", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85664, + "TargetID": 85665, + "Directional": false + }] + }, { + "ID": 3993, + "SourceStructureID": 85831, + "TargetStructureID": 6117, + "Label": "85831-6117 via Unknown from 85832 -> 85833", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85832, + "TargetID": 85833, + "Directional": false + }] + }, { + "ID": 3994, + "SourceStructureID": 6117, + "TargetStructureID": 85906, + "Label": "6117-85906 via Unknown from 85950 -> 85951", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85950, + "TargetID": 85951, + "Directional": false + }] + }, { + "ID": 3995, + "SourceStructureID": 6117, + "TargetStructureID": 85928, + "Label": "6117-85928 via Adherens from 85930 -> 85929", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85930, + "TargetID": 85929, + "Directional": false + }] + }, { + "ID": 3996, + "SourceStructureID": 85932, + "TargetStructureID": 6117, + "Label": "85932-6117 via Unknown from 85936 -> 85935", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85936, + "TargetID": 85935, + "Directional": false + }] + }, { + "ID": 3997, + "SourceStructureID": 6117, + "TargetStructureID": 85937, + "Label": "6117-85937 via Adherens from 85939 -> 85938", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85939, + "TargetID": 85938, + "Directional": false + }] + }, { + "ID": 3998, + "SourceStructureID": 85941, + "TargetStructureID": 6117, + "Label": "85941-6117 via Unknown from 85942 -> 85940", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85942, + "TargetID": 85940, + "Directional": false + }] + }, { + "ID": 3999, + "SourceStructureID": 6117, + "TargetStructureID": 85958, + "Label": "6117-85958 via Unknown from 85968 -> 85969", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85968, + "TargetID": 85969, + "Directional": false + }] + }, { + "ID": 4000, + "SourceStructureID": 6117, + "TargetStructureID": 85974, + "Label": "6117-85974 via Unknown from 85977 -> 85978", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85977, + "TargetID": 85978, + "Directional": false + }] + }, { + "ID": 4001, + "SourceStructureID": 6117, + "TargetStructureID": 85991, + "Label": "6117-85991 via Unknown from 85993 -> 85992, 86056 -> 86057", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85993, + "TargetID": 85992, + "Directional": false + }, { + "SourceID": 86056, + "TargetID": 86057, + "Directional": false + }] + }, { + "ID": 4002, + "SourceStructureID": 6117, + "TargetStructureID": 86001, + "Label": "6117-86001 via Unknown from 86000 -> 86007", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86000, + "TargetID": 86007, + "Directional": false + }] + }, { + "ID": 4003, + "SourceStructureID": 6117, + "TargetStructureID": 86026, + "Label": "6117-86026 via Unknown from 86025 -> 86027, 86029 -> 86028", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86025, + "TargetID": 86027, + "Directional": false + }, { + "SourceID": 86029, + "TargetID": 86028, + "Directional": false + }] + }, { + "ID": 4004, + "SourceStructureID": 6117, + "TargetStructureID": 86032, + "Label": "6117-86032 via Unknown from 86031 -> 86033", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86031, + "TargetID": 86033, + "Directional": false + }] + }, { + "ID": 4005, + "SourceStructureID": 86036, + "TargetStructureID": 6117, + "Label": "86036-6117 via Adherens from 86040 -> 86041", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86040, + "TargetID": 86041, + "Directional": false + }] + }, { + "ID": 4006, + "SourceStructureID": 6117, + "TargetStructureID": 86045, + "Label": "6117-86045 via Unknown from 86044 -> 86049", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86044, + "TargetID": 86049, + "Directional": false + }] + }, { + "ID": 4007, + "SourceStructureID": 6117, + "TargetStructureID": 86050, + "Label": "6117-86050 via Unknown from 86053 -> 86054", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86053, + "TargetID": 86054, + "Directional": false + }] + }, { + "ID": 4008, + "SourceStructureID": 86063, + "TargetStructureID": 6117, + "Label": "86063-6117 via Unknown from 86064 -> 86062", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86064, + "TargetID": 86062, + "Directional": false + }] + }, { + "ID": 4009, + "SourceStructureID": 86098, + "TargetStructureID": 6117, + "Label": "86098-6117 via Adherens from 86101 -> 86102", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86101, + "TargetID": 86102, + "Directional": false + }] + }, { + "ID": 4010, + "SourceStructureID": 6117, + "TargetStructureID": 86098, + "Label": "6117-86098 via Unknown from 86097 -> 86099", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86097, + "TargetID": 86099, + "Directional": false + }] + }, { + "ID": 4011, + "SourceStructureID": 86106, + "TargetStructureID": 6117, + "Label": "86106-6117 via Adherens from 86107 -> 86105", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86107, + "TargetID": 86105, + "Directional": false + }] + }, { + "ID": 4012, + "SourceStructureID": 6117, + "TargetStructureID": 86110, + "Label": "6117-86110 via Adherens from 86154 -> 86155, 86159 -> 86158", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86154, + "TargetID": 86155, + "Directional": false + }, { + "SourceID": 86159, + "TargetID": 86158, + "Directional": false + }] + }, { + "ID": 4013, + "SourceStructureID": 6117, + "TargetStructureID": 86110, + "Label": "6117-86110 via Unknown from 86124 -> 86125", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86124, + "TargetID": 86125, + "Directional": false + }] + }, { + "ID": 4014, + "SourceStructureID": 6117, + "TargetStructureID": 86134, + "Label": "6117-86134 via Unknown from 86133 -> 86138", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86133, + "TargetID": 86138, + "Directional": false + }] + }, { + "ID": 4015, + "SourceStructureID": 6117, + "TargetStructureID": 86145, + "Label": "6117-86145 via Unknown from 86152 -> 86153", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86152, + "TargetID": 86153, + "Directional": false + }] + }, { + "ID": 4016, + "SourceStructureID": 86171, + "TargetStructureID": 6117, + "Label": "86171-6117 via Unknown from 86173 -> 86172", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86173, + "TargetID": 86172, + "Directional": false + }] + }, { + "ID": 4017, + "SourceStructureID": 6117, + "TargetStructureID": 86237, + "Label": "6117-86237 via Adherens from 86242 -> 86243", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86242, + "TargetID": 86243, + "Directional": false + }] + }, { + "ID": 4018, + "SourceStructureID": 6117, + "TargetStructureID": 86293, + "Label": "6117-86293 via Unknown from 86292 -> 86294", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86292, + "TargetID": 86294, + "Directional": false + }] + }, { + "ID": 4019, + "SourceStructureID": 6117, + "TargetStructureID": 86305, + "Label": "6117-86305 via Unknown from 86304 -> 86308", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86304, + "TargetID": 86308, + "Directional": false + }] + }, { + "ID": 4020, + "SourceStructureID": 86323, + "TargetStructureID": 6117, + "Label": "86323-6117 via Unknown from 86324 -> 86325", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86324, + "TargetID": 86325, + "Directional": false + }] + }, { + "ID": 4021, + "SourceStructureID": 6117, + "TargetStructureID": 86327, + "Label": "6117-86327 via Unknown from 86326 -> 86329", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86326, + "TargetID": 86329, + "Directional": false + }] + }, { + "ID": 4022, + "SourceStructureID": 86330, + "TargetStructureID": 6117, + "Label": "86330-6117 via Unknown from 86339 -> 86338", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86339, + "TargetID": 86338, + "Directional": false + }] + }, { + "ID": 4023, + "SourceStructureID": 6117, + "TargetStructureID": 86340, + "Label": "6117-86340 via Unknown from 86341 -> 86342", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86341, + "TargetID": 86342, + "Directional": false + }] + }, { + "ID": 4024, + "SourceStructureID": 86359, + "TargetStructureID": 6117, + "Label": "86359-6117 via Adherens from 86360 -> 86362", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86360, + "TargetID": 86362, + "Directional": false + }] + }, { + "ID": 4025, + "SourceStructureID": 86385, + "TargetStructureID": 6117, + "Label": "86385-6117 via Unknown from 86387 -> 86388", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86387, + "TargetID": 86388, + "Directional": false + }] + }, { + "ID": 4026, + "SourceStructureID": 6117, + "TargetStructureID": 86489, + "Label": "6117-86489 via Unknown from 86488 -> 86490", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86488, + "TargetID": 86490, + "Directional": false + }] + }, { + "ID": 4027, + "SourceStructureID": 6117, + "TargetStructureID": 86505, + "Label": "6117-86505 via Unknown from 86504 -> 86506", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86504, + "TargetID": 86506, + "Directional": false + }] + }, { + "ID": 4028, + "SourceStructureID": 6117, + "TargetStructureID": 86512, + "Label": "6117-86512 via Unknown from 86514 -> 86515", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86514, + "TargetID": 86515, + "Directional": false + }] + }, { + "ID": 4029, + "SourceStructureID": 86524, + "TargetStructureID": 6117, + "Label": "86524-6117 via Unknown from 86546 -> 86547", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86546, + "TargetID": 86547, + "Directional": false + }] + }, { + "ID": 4030, + "SourceStructureID": 6117, + "TargetStructureID": 86569, + "Label": "6117-86569 via Unknown from 86573 -> 86575", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86573, + "TargetID": 86575, + "Directional": false + }] + }, { + "ID": 4031, + "SourceStructureID": 6117, + "TargetStructureID": 86582, + "Label": "6117-86582 via Unknown from 86591 -> 86592", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86591, + "TargetID": 86592, + "Directional": false + }] + }, { + "ID": 4032, + "SourceStructureID": 86609, + "TargetStructureID": 6117, + "Label": "86609-6117 via Unknown from 86613 -> 86612", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86613, + "TargetID": 86612, + "Directional": false + }] + }, { + "ID": 4033, + "SourceStructureID": 6120, + "TargetStructureID": 6118, + "Label": "6120-6118 via Gap Junction from 65051 -> 65050, 65170 -> 65168, 119471 -> 119470", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 65051, + "TargetID": 65050, + "Directional": false + }, { + "SourceID": 65170, + "TargetID": 65168, + "Directional": false + }, { + "SourceID": 119471, + "TargetID": 119470, + "Directional": false + }] + }, { + "ID": 4034, + "SourceStructureID": 6120, + "TargetStructureID": 6118, + "Label": "6120-6118 via Unknown from 120789 -> 120788", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120789, + "TargetID": 120788, + "Directional": false + }] + }, { + "ID": 4035, + "SourceStructureID": 6121, + "TargetStructureID": 6118, + "Label": "6121-6118 via Gap Junction from 120695 -> 120677, 120700 -> 120699, 120781 -> 120782, 120791 -> 120792, 120794 -> 120793, 125293 -> 125294", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120695, + "TargetID": 120677, + "Directional": false + }, { + "SourceID": 120700, + "TargetID": 120699, + "Directional": false + }, { + "SourceID": 120781, + "TargetID": 120782, + "Directional": false + }, { + "SourceID": 120791, + "TargetID": 120792, + "Directional": false + }, { + "SourceID": 120794, + "TargetID": 120793, + "Directional": false + }, { + "SourceID": 125293, + "TargetID": 125294, + "Directional": false + }] + }, { + "ID": 4036, + "SourceStructureID": 6118, + "TargetStructureID": 6121, + "Label": "6118-6121 via Unknown from 120685 -> 120686", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120685, + "TargetID": 120686, + "Directional": false + }] + }, { + "ID": 4037, + "SourceStructureID": 6158, + "TargetStructureID": 6118, + "Label": "6158-6118 via Unknown from 115484 -> 115485", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115484, + "TargetID": 115485, + "Directional": false + }] + }, { + "ID": 4038, + "SourceStructureID": 6118, + "TargetStructureID": 6162, + "Label": "6118-6162 via Gap Junction from 120730 -> 120731, 120733 -> 120732, 120752 -> 120751, 120758 -> 120757, 120768 -> 120769, 120784 -> 120785", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120730, + "TargetID": 120731, + "Directional": false + }, { + "SourceID": 120733, + "TargetID": 120732, + "Directional": false + }, { + "SourceID": 120752, + "TargetID": 120751, + "Directional": false + }, { + "SourceID": 120758, + "TargetID": 120757, + "Directional": false + }, { + "SourceID": 120768, + "TargetID": 120769, + "Directional": false + }, { + "SourceID": 120784, + "TargetID": 120785, + "Directional": false + }] + }, { + "ID": 4039, + "SourceStructureID": 7904, + "TargetStructureID": 6118, + "Label": "7904-6118 via Gap Junction from 119475 -> 119474, 120800 -> 120797, 120815 -> 120814, 122374 -> 122375", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119475, + "TargetID": 119474, + "Directional": false + }, { + "SourceID": 120800, + "TargetID": 120797, + "Directional": false + }, { + "SourceID": 120815, + "TargetID": 120814, + "Directional": false + }, { + "SourceID": 122374, + "TargetID": 122375, + "Directional": false + }] + }, { + "ID": 4040, + "SourceStructureID": 6118, + "TargetStructureID": 7951, + "Label": "6118-7951 via Gap Junction from 32496 -> 32495, 40002 -> 40003, 40005 -> 40004, 120642 -> 115364, 120761 -> 120760, 120763 -> 120762, 120766 -> 120765, 120776 -> 120775", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 32496, + "TargetID": 32495, + "Directional": false + }, { + "SourceID": 40002, + "TargetID": 40003, + "Directional": false + }, { + "SourceID": 40005, + "TargetID": 40004, + "Directional": false + }, { + "SourceID": 120642, + "TargetID": 115364, + "Directional": false + }, { + "SourceID": 120761, + "TargetID": 120760, + "Directional": false + }, { + "SourceID": 120763, + "TargetID": 120762, + "Directional": false + }, { + "SourceID": 120766, + "TargetID": 120765, + "Directional": false + }, { + "SourceID": 120776, + "TargetID": 120775, + "Directional": false + }] + }, { + "ID": 4041, + "SourceStructureID": 8032, + "TargetStructureID": 6118, + "Label": "8032-6118 via Gap Junction from 56502 -> 56501", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56502, + "TargetID": 56501, + "Directional": false + }] + }, { + "ID": 4042, + "SourceStructureID": 65037, + "TargetStructureID": 6118, + "Label": "65037-6118 via Adherens from 65039 -> 65038, 65040 -> 65041, 65043 -> 65042, 65044 -> 65045", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65039, + "TargetID": 65038, + "Directional": false + }, { + "SourceID": 65040, + "TargetID": 65041, + "Directional": false + }, { + "SourceID": 65043, + "TargetID": 65042, + "Directional": false + }, { + "SourceID": 65044, + "TargetID": 65045, + "Directional": false + }] + }, { + "ID": 4043, + "SourceStructureID": 6118, + "TargetStructureID": 136707, + "Label": "6118-136707 via Gap Junction from 115393 -> 136708", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115393, + "TargetID": 136708, + "Directional": false + }] + }, { + "ID": 4044, + "SourceStructureID": 136711, + "TargetStructureID": 6118, + "Label": "136711-6118 via Gap Junction from 136712 -> 120702", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136712, + "TargetID": 120702, + "Directional": false + }] + }, { + "ID": 4045, + "SourceStructureID": 6121, + "TargetStructureID": 6120, + "Label": "6121-6120 via Adherens from 111660 -> 111658, 126716 -> 126715", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111660, + "TargetID": 111658, + "Directional": false + }, { + "SourceID": 126716, + "TargetID": 126715, + "Directional": false + }] + }, { + "ID": 4046, + "SourceStructureID": 6120, + "TargetStructureID": 6121, + "Label": "6120-6121 via Gap Junction from 38106 -> 38120, 65064 -> 64353, 65166 -> 125300, 110573 -> 110572, 110776 -> 110775, 110788 -> 110787, 110822 -> 110823, 110840 -> 110839, 110872 -> 110873, 111211 -> 111210, 111392 -> 111393, 111486 -> 111487, 125230 -> 125231, 125674 -> 125673", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38106, + "TargetID": 38120, + "Directional": false + }, { + "SourceID": 65064, + "TargetID": 64353, + "Directional": false + }, { + "SourceID": 65166, + "TargetID": 125300, + "Directional": false + }, { + "SourceID": 110573, + "TargetID": 110572, + "Directional": false + }, { + "SourceID": 110776, + "TargetID": 110775, + "Directional": false + }, { + "SourceID": 110788, + "TargetID": 110787, + "Directional": false + }, { + "SourceID": 110822, + "TargetID": 110823, + "Directional": false + }, { + "SourceID": 110840, + "TargetID": 110839, + "Directional": false + }, { + "SourceID": 110872, + "TargetID": 110873, + "Directional": false + }, { + "SourceID": 111211, + "TargetID": 111210, + "Directional": false + }, { + "SourceID": 111392, + "TargetID": 111393, + "Directional": false + }, { + "SourceID": 111486, + "TargetID": 111487, + "Directional": false + }, { + "SourceID": 125230, + "TargetID": 125231, + "Directional": false + }, { + "SourceID": 125674, + "TargetID": 125673, + "Directional": false + }] + }, { + "ID": 4047, + "SourceStructureID": 6141, + "TargetStructureID": 6120, + "Label": "6141-6120 via Gap Junction from 110628 -> 64354", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 110628, + "TargetID": 64354, + "Directional": false + }] + }, { + "ID": 4048, + "SourceStructureID": 7904, + "TargetStructureID": 6120, + "Label": "7904-6120 via Gap Junction from 52426 -> 52427, 111574 -> 52425, 111593 -> 111592", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52426, + "TargetID": 52427, + "Directional": false + }, { + "SourceID": 111574, + "TargetID": 52425, + "Directional": false + }, { + "SourceID": 111593, + "TargetID": 111592, + "Directional": false + }] + }, { + "ID": 4049, + "SourceStructureID": 6120, + "TargetStructureID": 8032, + "Label": "6120-8032 via Adherens from 111538 -> 111537", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111538, + "TargetID": 111537, + "Directional": false + }] + }, { + "ID": 4050, + "SourceStructureID": 8032, + "TargetStructureID": 6120, + "Label": "8032-6120 via Gap Junction from 30181 -> 30182, 32509 -> 32507", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 30181, + "TargetID": 30182, + "Directional": false + }, { + "SourceID": 32509, + "TargetID": 32507, + "Directional": false + }] + }, { + "ID": 4051, + "SourceStructureID": 8032, + "TargetStructureID": 6120, + "Label": "8032-6120 via Unknown from 111542 -> 111541", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111542, + "TargetID": 111541, + "Directional": false + }] + }, { + "ID": 4052, + "SourceStructureID": 22994, + "TargetStructureID": 6120, + "Label": "22994-6120 via Gap Junction from 118144 -> 118148", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118144, + "TargetID": 118148, + "Directional": false + }] + }, { + "ID": 4053, + "SourceStructureID": 31334, + "TargetStructureID": 6120, + "Label": "31334-6120 via Unknown from 111704 -> 111703", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111704, + "TargetID": 111703, + "Directional": false + }] + }, { + "ID": 4054, + "SourceStructureID": 60491, + "TargetStructureID": 6120, + "Label": "60491-6120 via Adherens from 60492 -> 60490", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60492, + "TargetID": 60490, + "Directional": false + }] + }, { + "ID": 4055, + "SourceStructureID": 65172, + "TargetStructureID": 6120, + "Label": "65172-6120 via Gap Junction from 65174 -> 65171", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 65174, + "TargetID": 65171, + "Directional": false + }] + }, { + "ID": 4056, + "SourceStructureID": 6120, + "TargetStructureID": 89124, + "Label": "6120-89124 via Adherens from 110553 -> 89344", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110553, + "TargetID": 89344, + "Directional": false + }] + }, { + "ID": 4057, + "SourceStructureID": 110566, + "TargetStructureID": 6120, + "Label": "110566-6120 via Gap Junction from 110579 -> 110578", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 110579, + "TargetID": 110578, + "Directional": false + }] + }, { + "ID": 4058, + "SourceStructureID": 110607, + "TargetStructureID": 6120, + "Label": "110607-6120 via Adherens from 110608 -> 110606", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110608, + "TargetID": 110606, + "Directional": false + }] + }, { + "ID": 4059, + "SourceStructureID": 110747, + "TargetStructureID": 6120, + "Label": "110747-6120 via Adherens from 110774 -> 110773", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110774, + "TargetID": 110773, + "Directional": false + }] + }, { + "ID": 4060, + "SourceStructureID": 110779, + "TargetStructureID": 6120, + "Label": "110779-6120 via Adherens from 110780 -> 110778", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110780, + "TargetID": 110778, + "Directional": false + }] + }, { + "ID": 4061, + "SourceStructureID": 110866, + "TargetStructureID": 6120, + "Label": "110866-6120 via Adherens from 110868 -> 110865", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110868, + "TargetID": 110865, + "Directional": false + }] + }, { + "ID": 4062, + "SourceStructureID": 111269, + "TargetStructureID": 6120, + "Label": "111269-6120 via Adherens from 111364 -> 111363", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111364, + "TargetID": 111363, + "Directional": false + }] + }, { + "ID": 4063, + "SourceStructureID": 6120, + "TargetStructureID": 111351, + "Label": "6120-111351 via Unknown from 111348 -> 111347", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111348, + "TargetID": 111347, + "Directional": false + }] + }, { + "ID": 4064, + "SourceStructureID": 111374, + "TargetStructureID": 6120, + "Label": "111374-6120 via Gap Junction from 111375 -> 111373", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 111375, + "TargetID": 111373, + "Directional": false + }] + }, { + "ID": 4065, + "SourceStructureID": 6120, + "TargetStructureID": 111421, + "Label": "6120-111421 via Adherens from 111490 -> 111491", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111490, + "TargetID": 111491, + "Directional": false + }] + }, { + "ID": 4066, + "SourceStructureID": 6120, + "TargetStructureID": 111553, + "Label": "6120-111553 via Adherens from 111555 -> 111556", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111555, + "TargetID": 111556, + "Directional": false + }] + }, { + "ID": 4067, + "SourceStructureID": 6120, + "TargetStructureID": 111598, + "Label": "6120-111598 via Unknown from 111600 -> 111599", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111600, + "TargetID": 111599, + "Directional": false + }] + }, { + "ID": 4068, + "SourceStructureID": 6120, + "TargetStructureID": 111607, + "Label": "6120-111607 via Unknown from 111606 -> 111608", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 111606, + "TargetID": 111608, + "Directional": false + }] + }, { + "ID": 4069, + "SourceStructureID": 111615, + "TargetStructureID": 6120, + "Label": "111615-6120 via Adherens from 111617 -> 111597", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111617, + "TargetID": 111597, + "Directional": false + }] + }, { + "ID": 4070, + "SourceStructureID": 6120, + "TargetStructureID": 111887, + "Label": "6120-111887 via Gap Junction from 111886 -> 111888", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 111886, + "TargetID": 111888, + "Directional": false + }] + }, { + "ID": 4071, + "SourceStructureID": 6121, + "TargetStructureID": 6141, + "Label": "6121-6141 via Gap Junction from 122920 -> 61386, 122922 -> 61369", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122920, + "TargetID": 61386, + "Directional": false + }, { + "SourceID": 122922, + "TargetID": 61369, + "Directional": false + }] + }, { + "ID": 4072, + "SourceStructureID": 6146, + "TargetStructureID": 6121, + "Label": "6146-6121 via Adherens from 38107 -> 131951", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 38107, + "TargetID": 131951, + "Directional": false + }] + }, { + "ID": 4073, + "SourceStructureID": 6146, + "TargetStructureID": 6121, + "Label": "6146-6121 via Gap Junction from 38108 -> 38113, 38118 -> 38100, 120804 -> 121872, 131955 -> 131954", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38108, + "TargetID": 38113, + "Directional": false + }, { + "SourceID": 38118, + "TargetID": 38100, + "Directional": false + }, { + "SourceID": 120804, + "TargetID": 121872, + "Directional": false + }, { + "SourceID": 131955, + "TargetID": 131954, + "Directional": false + }] + }, { + "ID": 4074, + "SourceStructureID": 6146, + "TargetStructureID": 6121, + "Label": "6146-6121 via Unknown from 121860 -> 121861", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121860, + "TargetID": 121861, + "Directional": false + }] + }, { + "ID": 4075, + "SourceStructureID": 6121, + "TargetStructureID": 6158, + "Label": "6121-6158 via Gap Junction from 120717 -> 120647, 120725 -> 120645, 120753 -> 120754, 120756 -> 120755", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120717, + "TargetID": 120647, + "Directional": false + }, { + "SourceID": 120725, + "TargetID": 120645, + "Directional": false + }, { + "SourceID": 120753, + "TargetID": 120754, + "Directional": false + }, { + "SourceID": 120756, + "TargetID": 120755, + "Directional": false + }] + }, { + "ID": 4076, + "SourceStructureID": 22994, + "TargetStructureID": 6121, + "Label": "22994-6121 via Gap Junction from 118141 -> 118142", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118141, + "TargetID": 118142, + "Directional": false + }] + }, { + "ID": 4077, + "SourceStructureID": 110607, + "TargetStructureID": 6121, + "Label": "110607-6121 via Unknown from 126895 -> 126896", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 126895, + "TargetID": 126896, + "Directional": false + }] + }, { + "ID": 4078, + "SourceStructureID": 7904, + "TargetStructureID": 6123, + "Label": "7904-6123 via Gap Junction from 130622 -> 130616", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130622, + "TargetID": 130616, + "Directional": false + }] + }, { + "ID": 4079, + "SourceStructureID": 6123, + "TargetStructureID": 7951, + "Label": "6123-7951 via Gap Junction from 37208 -> 37209, 48019 -> 132456, 118986 -> 38075, 132457 -> 48038", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 37208, + "TargetID": 37209, + "Directional": false + }, { + "SourceID": 48019, + "TargetID": 132456, + "Directional": false + }, { + "SourceID": 118986, + "TargetID": 38075, + "Directional": false + }, { + "SourceID": 132457, + "TargetID": 48038, + "Directional": false + }] + }, { + "ID": 4080, + "SourceStructureID": 6123, + "TargetStructureID": 34893, + "Label": "6123-34893 via Adherens from 34897 -> 34896", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 34897, + "TargetID": 34896, + "Directional": false + }] + }, { + "ID": 4081, + "SourceStructureID": 71517, + "TargetStructureID": 6123, + "Label": "71517-6123 via Adherens from 74925 -> 74926, 74930 -> 47991", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74925, + "TargetID": 74926, + "Directional": false + }, { + "SourceID": 74930, + "TargetID": 47991, + "Directional": false + }] + }, { + "ID": 4082, + "SourceStructureID": 74957, + "TargetStructureID": 6123, + "Label": "74957-6123 via Adherens from 74960 -> 48065", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74960, + "TargetID": 48065, + "Directional": false + }] + }, { + "ID": 4083, + "SourceStructureID": 122868, + "TargetStructureID": 6123, + "Label": "122868-6123 via Adherens from 130530 -> 130531, 132436 -> 132437", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130530, + "TargetID": 130531, + "Directional": false + }, { + "SourceID": 132436, + "TargetID": 132437, + "Directional": false + }] + }, { + "ID": 4084, + "SourceStructureID": 122868, + "TargetStructureID": 6123, + "Label": "122868-6123 via Gap Junction from 130527 -> 130528", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130527, + "TargetID": 130528, + "Directional": false + }] + }, { + "ID": 4085, + "SourceStructureID": 6127, + "TargetStructureID": 6129, + "Label": "6127-6129 via Gap Junction from 118289 -> 118288, 122525 -> 122524, 122535 -> 122534", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118289, + "TargetID": 118288, + "Directional": false + }, { + "SourceID": 122525, + "TargetID": 122524, + "Directional": false + }, { + "SourceID": 122535, + "TargetID": 122534, + "Directional": false + }] + }, { + "ID": 4086, + "SourceStructureID": 7225, + "TargetStructureID": 6127, + "Label": "7225-6127 via Gap Junction from 118286 -> 118287, 118291 -> 118292, 118293 -> 118294, 122632 -> 122634", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118286, + "TargetID": 118287, + "Directional": false + }, { + "SourceID": 118291, + "TargetID": 118292, + "Directional": false + }, { + "SourceID": 118293, + "TargetID": 118294, + "Directional": false + }, { + "SourceID": 122632, + "TargetID": 122634, + "Directional": false + }] + }, { + "ID": 4087, + "SourceStructureID": 7446, + "TargetStructureID": 6127, + "Label": "7446-6127 via Gap Junction from 35670 -> 35669, 122642 -> 123057", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 35670, + "TargetID": 35669, + "Directional": false + }, { + "SourceID": 122642, + "TargetID": 123057, + "Directional": false + }] + }, { + "ID": 4088, + "SourceStructureID": 7564, + "TargetStructureID": 6127, + "Label": "7564-6127 via Gap Junction from 122540 -> 122539, 122603 -> 122604, 122606 -> 88490", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122540, + "TargetID": 122539, + "Directional": false + }, { + "SourceID": 122603, + "TargetID": 122604, + "Directional": false + }, { + "SourceID": 122606, + "TargetID": 88490, + "Directional": false + }] + }, { + "ID": 4089, + "SourceStructureID": 6127, + "TargetStructureID": 7861, + "Label": "6127-7861 via Gap Junction from 122585 -> 122586", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122585, + "TargetID": 122586, + "Directional": false + }] + }, { + "ID": 4090, + "SourceStructureID": 6127, + "TargetStructureID": 82677, + "Label": "6127-82677 via Gap Junction from 114631 -> 114630", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 114631, + "TargetID": 114630, + "Directional": false + }] + }, { + "ID": 4091, + "SourceStructureID": 94189, + "TargetStructureID": 6127, + "Label": "94189-6127 via Gap Junction from 122614 -> 122613", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122614, + "TargetID": 122613, + "Directional": false + }] + }, { + "ID": 4092, + "SourceStructureID": 7346, + "TargetStructureID": 6128, + "Label": "7346-6128 via Adherens from 45429 -> 45430", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 45429, + "TargetID": 45430, + "Directional": false + }] + }, { + "ID": 4093, + "SourceStructureID": 7346, + "TargetStructureID": 6128, + "Label": "7346-6128 via Gap Junction from 43851 -> 20869, 44028 -> 20882, 44067 -> 20890, 45230 -> 45229, 45416 -> 45418", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 43851, + "TargetID": 20869, + "Directional": false + }, { + "SourceID": 44028, + "TargetID": 20882, + "Directional": false + }, { + "SourceID": 44067, + "TargetID": 20890, + "Directional": false + }, { + "SourceID": 45230, + "TargetID": 45229, + "Directional": false + }, { + "SourceID": 45416, + "TargetID": 45418, + "Directional": false + }] + }, { + "ID": 4094, + "SourceStructureID": 32359, + "TargetStructureID": 6128, + "Label": "32359-6128 via Gap Junction from 41681 -> 21096", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 41681, + "TargetID": 21096, + "Directional": false + }] + }, { + "ID": 4095, + "SourceStructureID": 6128, + "TargetStructureID": 43207, + "Label": "6128-43207 via Adherens from 60743 -> 60742", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60743, + "TargetID": 60742, + "Directional": false + }] + }, { + "ID": 4096, + "SourceStructureID": 6129, + "TargetStructureID": 7576, + "Label": "6129-7576 via Gap Junction from 54773 -> 54774", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54773, + "TargetID": 54774, + "Directional": false + }] + }, { + "ID": 4097, + "SourceStructureID": 7576, + "TargetStructureID": 6129, + "Label": "7576-6129 via Unknown from 92621 -> 92620", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92621, + "TargetID": 92620, + "Directional": false + }] + }, { + "ID": 4098, + "SourceStructureID": 6129, + "TargetStructureID": 82677, + "Label": "6129-82677 via Adherens from 83664 -> 83663", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83664, + "TargetID": 83663, + "Directional": false + }] + }, { + "ID": 4099, + "SourceStructureID": 6129, + "TargetStructureID": 82677, + "Label": "6129-82677 via Gap Junction from 83666 -> 83665, 114632 -> 114634", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 83666, + "TargetID": 83665, + "Directional": false + }, { + "SourceID": 114632, + "TargetID": 114634, + "Directional": false + }] + }, { + "ID": 4100, + "SourceStructureID": 6131, + "TargetStructureID": 13525, + "Label": "6131-13525 via Adherens from 158491 -> 130231", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 158491, + "TargetID": 130231, + "Directional": false + }] + }, { + "ID": 4101, + "SourceStructureID": 6131, + "TargetStructureID": 32359, + "Label": "6131-32359 via Gap Junction from 43673 -> 41324", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 43673, + "TargetID": 41324, + "Directional": false + }] + }, { + "ID": 4102, + "SourceStructureID": 6133, + "TargetStructureID": 65438, + "Label": "6133-65438 via Gap Junction from 37393 -> 65442", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 37393, + "TargetID": 65442, + "Directional": false + }] + }, { + "ID": 4103, + "SourceStructureID": 6134, + "TargetStructureID": 32465, + "Label": "6134-32465 via Adherens from 32475 -> 32474", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 32475, + "TargetID": 32474, + "Directional": false + }] + }, { + "ID": 4104, + "SourceStructureID": 6138, + "TargetStructureID": 57353, + "Label": "6138-57353 via Unknown from 124274 -> 124273", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124274, + "TargetID": 124273, + "Directional": false + }] + }, { + "ID": 4105, + "SourceStructureID": 8032, + "TargetStructureID": 6141, + "Label": "8032-6141 via Gap Junction from 26703 -> 61367, 26712 -> 61362, 32522 -> 32518, 61363 -> 26713, 61390 -> 26702", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 26703, + "TargetID": 61367, + "Directional": false + }, { + "SourceID": 26712, + "TargetID": 61362, + "Directional": false + }, { + "SourceID": 32522, + "TargetID": 32518, + "Directional": false + }, { + "SourceID": 61363, + "TargetID": 26713, + "Directional": false + }, { + "SourceID": 61390, + "TargetID": 26702, + "Directional": false + }] + }, { + "ID": 4106, + "SourceStructureID": 22994, + "TargetStructureID": 6141, + "Label": "22994-6141 via Adherens from 56753 -> 56754", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 56753, + "TargetID": 56754, + "Directional": false + }] + }, { + "ID": 4107, + "SourceStructureID": 6141, + "TargetStructureID": 22994, + "Label": "6141-22994 via Gap Junction from 56752 -> 56751, 118123 -> 118124, 118138 -> 118137", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56752, + "TargetID": 56751, + "Directional": false + }, { + "SourceID": 118123, + "TargetID": 118124, + "Directional": false + }, { + "SourceID": 118138, + "TargetID": 118137, + "Directional": false + }] + }, { + "ID": 4108, + "SourceStructureID": 6141, + "TargetStructureID": 57353, + "Label": "6141-57353 via Gap Junction from 61408 -> 124291, 122938 -> 122937, 124330 -> 124331, 124397 -> 124396, 124410 -> 124409", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 61408, + "TargetID": 124291, + "Directional": false + }, { + "SourceID": 122938, + "TargetID": 122937, + "Directional": false + }, { + "SourceID": 124330, + "TargetID": 124331, + "Directional": false + }, { + "SourceID": 124397, + "TargetID": 124396, + "Directional": false + }, { + "SourceID": 124410, + "TargetID": 124409, + "Directional": false + }] + }, { + "ID": 4109, + "SourceStructureID": 6141, + "TargetStructureID": 57353, + "Label": "6141-57353 via Touch from 124424 -> 124423", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 124424, + "TargetID": 124423, + "Directional": false + }] + }, { + "ID": 4110, + "SourceStructureID": 61397, + "TargetStructureID": 6141, + "Label": "61397-6141 via Gap Junction from 61398 -> 61396", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 61398, + "TargetID": 61396, + "Directional": false + }] + }, { + "ID": 4111, + "SourceStructureID": 6142, + "TargetStructureID": 6142, + "Label": "6142-6142 via Gap Junction from 117158 -> 117154, 117161 -> 117157, 117162 -> 117152, 117169 -> 117167", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117158, + "TargetID": 117154, + "Directional": false + }, { + "SourceID": 117161, + "TargetID": 117157, + "Directional": false + }, { + "SourceID": 117162, + "TargetID": 117152, + "Directional": false + }, { + "SourceID": 117169, + "TargetID": 117167, + "Directional": false + }] + }, { + "ID": 4112, + "SourceStructureID": 6142, + "TargetStructureID": 6958, + "Label": "6142-6958 via Gap Junction from 27532 -> 27526", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 27532, + "TargetID": 27526, + "Directional": false + }] + }, { + "ID": 4113, + "SourceStructureID": 8032, + "TargetStructureID": 6142, + "Label": "8032-6142 via Gap Junction from 32523 -> 16118, 32525 -> 32524", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 32523, + "TargetID": 16118, + "Directional": false + }, { + "SourceID": 32525, + "TargetID": 32524, + "Directional": false + }] + }, { + "ID": 4114, + "SourceStructureID": 6142, + "TargetStructureID": 57353, + "Label": "6142-57353 via Unknown from 124420 -> 124419", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124420, + "TargetID": 124419, + "Directional": false + }] + }, { + "ID": 4115, + "SourceStructureID": 89775, + "TargetStructureID": 6142, + "Label": "89775-6142 via Adherens from 89784 -> 16115, 89785 -> 89786", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89784, + "TargetID": 16115, + "Directional": false + }, { + "SourceID": 89785, + "TargetID": 89786, + "Directional": false + }] + }, { + "ID": 4116, + "SourceStructureID": 6162, + "TargetStructureID": 6146, + "Label": "6162-6146 via Gap Junction from 120811 -> 120810, 121879 -> 120805, 131999 -> 132000", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120811, + "TargetID": 120810, + "Directional": false + }, { + "SourceID": 121879, + "TargetID": 120805, + "Directional": false + }, { + "SourceID": 131999, + "TargetID": 132000, + "Directional": false + }] + }, { + "ID": 4117, + "SourceStructureID": 7904, + "TargetStructureID": 6146, + "Label": "7904-6146 via Gap Junction from 120813 -> 120812, 121887 -> 120806, 131928 -> 121888", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120813, + "TargetID": 120812, + "Directional": false + }, { + "SourceID": 121887, + "TargetID": 120806, + "Directional": false + }, { + "SourceID": 131928, + "TargetID": 121888, + "Directional": false + }] + }, { + "ID": 4118, + "SourceStructureID": 8032, + "TargetStructureID": 6146, + "Label": "8032-6146 via Gap Junction from 32508 -> 56734", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 32508, + "TargetID": 56734, + "Directional": false + }] + }, { + "ID": 4119, + "SourceStructureID": 9769, + "TargetStructureID": 6146, + "Label": "9769-6146 via Adherens from 38104 -> 38103", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 38104, + "TargetID": 38103, + "Directional": false + }] + }, { + "ID": 4120, + "SourceStructureID": 22994, + "TargetStructureID": 6146, + "Label": "22994-6146 via Gap Junction from 56742 -> 56736, 56746 -> 56747", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56742, + "TargetID": 56736, + "Directional": false + }, { + "SourceID": 56746, + "TargetID": 56747, + "Directional": false + }] + }, { + "ID": 4121, + "SourceStructureID": 30177, + "TargetStructureID": 6146, + "Label": "30177-6146 via Gap Junction from 131963 -> 131964, 131970 -> 131971", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131963, + "TargetID": 131964, + "Directional": false + }, { + "SourceID": 131970, + "TargetID": 131971, + "Directional": false + }] + }, { + "ID": 4122, + "SourceStructureID": 6146, + "TargetStructureID": 87419, + "Label": "6146-87419 via Adherens from 87423 -> 87422", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87423, + "TargetID": 87422, + "Directional": false + }] + }, { + "ID": 4123, + "SourceStructureID": 6146, + "TargetStructureID": 121864, + "Label": "6146-121864 via Gap Junction from 121863 -> 121865", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121863, + "TargetID": 121865, + "Directional": false + }] + }, { + "ID": 4124, + "SourceStructureID": 6146, + "TargetStructureID": 121866, + "Label": "6146-121866 via Gap Junction from 131960 -> 131959", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131960, + "TargetID": 131959, + "Directional": false + }] + }, { + "ID": 4125, + "SourceStructureID": 6146, + "TargetStructureID": 121881, + "Label": "6146-121881 via Gap Junction from 121877 -> 121882", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121877, + "TargetID": 121882, + "Directional": false + }] + }, { + "ID": 4126, + "SourceStructureID": 121889, + "TargetStructureID": 6146, + "Label": "121889-6146 via Gap Junction from 121890 -> 120807", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121890, + "TargetID": 120807, + "Directional": false + }] + }, { + "ID": 4127, + "SourceStructureID": 6146, + "TargetStructureID": 121893, + "Label": "6146-121893 via Gap Junction from 121892 -> 121894", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121892, + "TargetID": 121894, + "Directional": false + }] + }, { + "ID": 4128, + "SourceStructureID": 6146, + "TargetStructureID": 121899, + "Label": "6146-121899 via Gap Junction from 120809 -> 121901", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120809, + "TargetID": 121901, + "Directional": false + }] + }, { + "ID": 4129, + "SourceStructureID": 6146, + "TargetStructureID": 131988, + "Label": "6146-131988 via Gap Junction from 131989 -> 131990, 131991 -> 131992", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131989, + "TargetID": 131990, + "Directional": false + }, { + "SourceID": 131991, + "TargetID": 131992, + "Directional": false + }] + }, { + "ID": 4130, + "SourceStructureID": 6153, + "TargetStructureID": 6153, + "Label": "6153-6153 via Gap Junction from 71559 -> 17468", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71559, + "TargetID": 17468, + "Directional": false + }] + }, { + "ID": 4131, + "SourceStructureID": 6153, + "TargetStructureID": 7157, + "Label": "6153-7157 via Adherens from 26520 -> 26519", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 26520, + "TargetID": 26519, + "Directional": false + }] + }, { + "ID": 4132, + "SourceStructureID": 7157, + "TargetStructureID": 6153, + "Label": "7157-6153 via Gap Junction from 24531 -> 24528, 29500 -> 29499", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24531, + "TargetID": 24528, + "Directional": false + }, { + "SourceID": 29500, + "TargetID": 29499, + "Directional": false + }] + }, { + "ID": 4133, + "SourceStructureID": 6153, + "TargetStructureID": 15412, + "Label": "6153-15412 via Adherens from 15415 -> 15414", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 15415, + "TargetID": 15414, + "Directional": false + }] + }, { + "ID": 4134, + "SourceStructureID": 6153, + "TargetStructureID": 37295, + "Label": "6153-37295 via Gap Junction from 24533 -> 130520, 39164 -> 39163", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24533, + "TargetID": 130520, + "Directional": false + }, { + "SourceID": 39164, + "TargetID": 39163, + "Directional": false + }] + }, { + "ID": 4135, + "SourceStructureID": 100055, + "TargetStructureID": 6153, + "Label": "100055-6153 via Adherens from 100057 -> 100058", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100057, + "TargetID": 100058, + "Directional": false + }] + }, { + "ID": 4136, + "SourceStructureID": 6153, + "TargetStructureID": 114925, + "Label": "6153-114925 via Adherens from 114928 -> 114927", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 114928, + "TargetID": 114927, + "Directional": false + }] + }, { + "ID": 4137, + "SourceStructureID": 6155, + "TargetStructureID": 6155, + "Label": "6155-6155 via Gap Junction from 108283 -> 108282", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 108283, + "TargetID": 108282, + "Directional": false + }] + }, { + "ID": 4138, + "SourceStructureID": 6300, + "TargetStructureID": 6155, + "Label": "6300-6155 via Adherens from 104890 -> 104891", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104890, + "TargetID": 104891, + "Directional": false + }] + }, { + "ID": 4139, + "SourceStructureID": 8720, + "TargetStructureID": 6155, + "Label": "8720-6155 via Unknown from 104924 -> 104925", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104924, + "TargetID": 104925, + "Directional": false + }] + }, { + "ID": 4140, + "SourceStructureID": 6155, + "TargetStructureID": 9260, + "Label": "6155-9260 via Unknown from 107825 -> 107826", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107825, + "TargetID": 107826, + "Directional": false + }] + }, { + "ID": 4141, + "SourceStructureID": 9769, + "TargetStructureID": 6155, + "Label": "9769-6155 via Unknown from 106039 -> 105989", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106039, + "TargetID": 105989, + "Directional": false + }] + }, { + "ID": 4142, + "SourceStructureID": 18693, + "TargetStructureID": 6155, + "Label": "18693-6155 via Adherens from 106121 -> 106122", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106121, + "TargetID": 106122, + "Directional": false + }] + }, { + "ID": 4143, + "SourceStructureID": 6155, + "TargetStructureID": 24401, + "Label": "6155-24401 via Gap Junction from 15553 -> 34748, 34786 -> 34782, 48035 -> 48036, 104939 -> 104938, 104944 -> 104946, 107924 -> 107925, 121132 -> 121131, 121133 -> 121134", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 15553, + "TargetID": 34748, + "Directional": false + }, { + "SourceID": 34786, + "TargetID": 34782, + "Directional": false + }, { + "SourceID": 48035, + "TargetID": 48036, + "Directional": false + }, { + "SourceID": 104939, + "TargetID": 104938, + "Directional": false + }, { + "SourceID": 104944, + "TargetID": 104946, + "Directional": false + }, { + "SourceID": 107924, + "TargetID": 107925, + "Directional": false + }, { + "SourceID": 121132, + "TargetID": 121131, + "Directional": false + }, { + "SourceID": 121133, + "TargetID": 121134, + "Directional": false + }] + }, { + "ID": 4144, + "SourceStructureID": 26079, + "TargetStructureID": 6155, + "Label": "26079-6155 via Adherens from 106359 -> 106360, 106405 -> 106406, 106407 -> 106408", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106359, + "TargetID": 106360, + "Directional": false + }, { + "SourceID": 106405, + "TargetID": 106406, + "Directional": false + }, { + "SourceID": 106407, + "TargetID": 106408, + "Directional": false + }] + }, { + "ID": 4145, + "SourceStructureID": 6155, + "TargetStructureID": 26079, + "Label": "6155-26079 via Gap Junction from 35911 -> 35910, 48264 -> 106869, 106052 -> 106053, 106073 -> 106074, 106401 -> 106402, 106433 -> 106434, 121240 -> 121239", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 35911, + "TargetID": 35910, + "Directional": false + }, { + "SourceID": 48264, + "TargetID": 106869, + "Directional": false + }, { + "SourceID": 106052, + "TargetID": 106053, + "Directional": false + }, { + "SourceID": 106073, + "TargetID": 106074, + "Directional": false + }, { + "SourceID": 106401, + "TargetID": 106402, + "Directional": false + }, { + "SourceID": 106433, + "TargetID": 106434, + "Directional": false + }, { + "SourceID": 121240, + "TargetID": 121239, + "Directional": false + }] + }, { + "ID": 4146, + "SourceStructureID": 26079, + "TargetStructureID": 6155, + "Label": "26079-6155 via Unknown from 106017 -> 106014, 106054 -> 106055, 107873 -> 107874, 108044 -> 108046, 121252 -> 121253", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106017, + "TargetID": 106014, + "Directional": false + }, { + "SourceID": 106054, + "TargetID": 106055, + "Directional": false + }, { + "SourceID": 107873, + "TargetID": 107874, + "Directional": false + }, { + "SourceID": 108044, + "TargetID": 108046, + "Directional": false + }, { + "SourceID": 121252, + "TargetID": 121253, + "Directional": false + }] + }, { + "ID": 4147, + "SourceStructureID": 36421, + "TargetStructureID": 6155, + "Label": "36421-6155 via Gap Junction from 108128 -> 108129", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 108128, + "TargetID": 108129, + "Directional": false + }] + }, { + "ID": 4148, + "SourceStructureID": 36421, + "TargetStructureID": 6155, + "Label": "36421-6155 via Unknown from 108135 -> 108136, 108213 -> 108214", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108135, + "TargetID": 108136, + "Directional": false + }, { + "SourceID": 108213, + "TargetID": 108214, + "Directional": false + }] + }, { + "ID": 4149, + "SourceStructureID": 6155, + "TargetStructureID": 39867, + "Label": "6155-39867 via Gap Junction from 49074 -> 49075", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49074, + "TargetID": 49075, + "Directional": false + }] + }, { + "ID": 4150, + "SourceStructureID": 101620, + "TargetStructureID": 6155, + "Label": "101620-6155 via Adherens from 107771 -> 107772", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107771, + "TargetID": 107772, + "Directional": false + }] + }, { + "ID": 4151, + "SourceStructureID": 6155, + "TargetStructureID": 104879, + "Label": "6155-104879 via Unknown from 104884 -> 104885", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104884, + "TargetID": 104885, + "Directional": false + }] + }, { + "ID": 4152, + "SourceStructureID": 6155, + "TargetStructureID": 104895, + "Label": "6155-104895 via Unknown from 104896 -> 104897", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104896, + "TargetID": 104897, + "Directional": false + }] + }, { + "ID": 4153, + "SourceStructureID": 104909, + "TargetStructureID": 6155, + "Label": "104909-6155 via Unknown from 104910 -> 104911", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104910, + "TargetID": 104911, + "Directional": false + }] + }, { + "ID": 4154, + "SourceStructureID": 6155, + "TargetStructureID": 104914, + "Label": "6155-104914 via Unknown from 104915 -> 104916", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104915, + "TargetID": 104916, + "Directional": false + }] + }, { + "ID": 4155, + "SourceStructureID": 6155, + "TargetStructureID": 104940, + "Label": "6155-104940 via Unknown from 104941 -> 104942", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104941, + "TargetID": 104942, + "Directional": false + }] + }, { + "ID": 4156, + "SourceStructureID": 104954, + "TargetStructureID": 6155, + "Label": "104954-6155 via Adherens from 104955 -> 104956", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104955, + "TargetID": 104956, + "Directional": false + }] + }, { + "ID": 4157, + "SourceStructureID": 6155, + "TargetStructureID": 104968, + "Label": "6155-104968 via Unknown from 104967 -> 104969", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104967, + "TargetID": 104969, + "Directional": false + }] + }, { + "ID": 4158, + "SourceStructureID": 104976, + "TargetStructureID": 6155, + "Label": "104976-6155 via Unknown from 104977 -> 104978", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104977, + "TargetID": 104978, + "Directional": false + }] + }, { + "ID": 4159, + "SourceStructureID": 6155, + "TargetStructureID": 105844, + "Label": "6155-105844 via Adherens from 16875 -> 105850", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 16875, + "TargetID": 105850, + "Directional": false + }] + }, { + "ID": 4160, + "SourceStructureID": 6155, + "TargetStructureID": 105865, + "Label": "6155-105865 via Unknown from 105864 -> 105866", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105864, + "TargetID": 105866, + "Directional": false + }] + }, { + "ID": 4161, + "SourceStructureID": 6155, + "TargetStructureID": 105881, + "Label": "6155-105881 via Unknown from 105887 -> 105901", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105887, + "TargetID": 105901, + "Directional": false + }] + }, { + "ID": 4162, + "SourceStructureID": 6155, + "TargetStructureID": 105904, + "Label": "6155-105904 via Adherens from 16873 -> 105905", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 16873, + "TargetID": 105905, + "Directional": false + }] + }, { + "ID": 4163, + "SourceStructureID": 6155, + "TargetStructureID": 105904, + "Label": "6155-105904 via Unknown from 105922 -> 105921", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105922, + "TargetID": 105921, + "Directional": false + }] + }, { + "ID": 4164, + "SourceStructureID": 6155, + "TargetStructureID": 105928, + "Label": "6155-105928 via Adherens from 105955 -> 105956", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 105955, + "TargetID": 105956, + "Directional": false + }] + }, { + "ID": 4165, + "SourceStructureID": 105928, + "TargetStructureID": 6155, + "Label": "105928-6155 via Unknown from 105958 -> 105957", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 105958, + "TargetID": 105957, + "Directional": false + }] + }, { + "ID": 4166, + "SourceStructureID": 6155, + "TargetStructureID": 105992, + "Label": "6155-105992 via Adherens from 16878 -> 106044", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 16878, + "TargetID": 106044, + "Directional": false + }] + }, { + "ID": 4167, + "SourceStructureID": 106008, + "TargetStructureID": 6155, + "Label": "106008-6155 via Unknown from 106010 -> 106011", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106010, + "TargetID": 106011, + "Directional": false + }] + }, { + "ID": 4168, + "SourceStructureID": 106056, + "TargetStructureID": 6155, + "Label": "106056-6155 via Unknown from 106057 -> 106058", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106057, + "TargetID": 106058, + "Directional": false + }] + }, { + "ID": 4169, + "SourceStructureID": 6155, + "TargetStructureID": 106064, + "Label": "6155-106064 via Adherens from 15759 -> 106066", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 15759, + "TargetID": 106066, + "Directional": false + }] + }, { + "ID": 4170, + "SourceStructureID": 6155, + "TargetStructureID": 106080, + "Label": "6155-106080 via Adherens from 106081 -> 106082", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106081, + "TargetID": 106082, + "Directional": false + }] + }, { + "ID": 4171, + "SourceStructureID": 6155, + "TargetStructureID": 106083, + "Label": "6155-106083 via Unknown from 106086 -> 106085", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106086, + "TargetID": 106085, + "Directional": false + }] + }, { + "ID": 4172, + "SourceStructureID": 6155, + "TargetStructureID": 106095, + "Label": "6155-106095 via Adherens from 106117 -> 106118", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106117, + "TargetID": 106118, + "Directional": false + }] + }, { + "ID": 4173, + "SourceStructureID": 6155, + "TargetStructureID": 106110, + "Label": "6155-106110 via Adherens from 106366 -> 106367", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106366, + "TargetID": 106367, + "Directional": false + }] + }, { + "ID": 4174, + "SourceStructureID": 6155, + "TargetStructureID": 106384, + "Label": "6155-106384 via Adherens from 106392 -> 106393", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106392, + "TargetID": 106393, + "Directional": false + }] + }, { + "ID": 4175, + "SourceStructureID": 106384, + "TargetStructureID": 6155, + "Label": "106384-6155 via Unknown from 106385 -> 106383", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106385, + "TargetID": 106383, + "Directional": false + }] + }, { + "ID": 4176, + "SourceStructureID": 6155, + "TargetStructureID": 106410, + "Label": "6155-106410 via Adherens from 106411 -> 106412", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106411, + "TargetID": 106412, + "Directional": false + }] + }, { + "ID": 4177, + "SourceStructureID": 6155, + "TargetStructureID": 106448, + "Label": "6155-106448 via Adherens from 106449 -> 106450", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106449, + "TargetID": 106450, + "Directional": false + }] + }, { + "ID": 4178, + "SourceStructureID": 6155, + "TargetStructureID": 106451, + "Label": "6155-106451 via Gap Junction from 106452 -> 106453", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 106452, + "TargetID": 106453, + "Directional": false + }] + }, { + "ID": 4179, + "SourceStructureID": 6155, + "TargetStructureID": 106480, + "Label": "6155-106480 via Adherens from 15811 -> 106481", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 15811, + "TargetID": 106481, + "Directional": false + }] + }, { + "ID": 4180, + "SourceStructureID": 6155, + "TargetStructureID": 106571, + "Label": "6155-106571 via Unknown from 106570 -> 106572", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106570, + "TargetID": 106572, + "Directional": false + }] + }, { + "ID": 4181, + "SourceStructureID": 6155, + "TargetStructureID": 106574, + "Label": "6155-106574 via Adherens from 106575 -> 106576", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106575, + "TargetID": 106576, + "Directional": false + }] + }, { + "ID": 4182, + "SourceStructureID": 106629, + "TargetStructureID": 6155, + "Label": "106629-6155 via Adherens from 106630 -> 106631", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106630, + "TargetID": 106631, + "Directional": false + }] + }, { + "ID": 4183, + "SourceStructureID": 6155, + "TargetStructureID": 106705, + "Label": "6155-106705 via Adherens from 106707 -> 106708", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106707, + "TargetID": 106708, + "Directional": false + }] + }, { + "ID": 4184, + "SourceStructureID": 6155, + "TargetStructureID": 106744, + "Label": "6155-106744 via Unknown from 106743 -> 106745", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106743, + "TargetID": 106745, + "Directional": false + }] + }, { + "ID": 4185, + "SourceStructureID": 6155, + "TargetStructureID": 106776, + "Label": "6155-106776 via Adherens from 108272 -> 108271", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108272, + "TargetID": 108271, + "Directional": false + }] + }, { + "ID": 4186, + "SourceStructureID": 106776, + "TargetStructureID": 6155, + "Label": "106776-6155 via Unknown from 106787 -> 106788", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106787, + "TargetID": 106788, + "Directional": false + }] + }, { + "ID": 4187, + "SourceStructureID": 106805, + "TargetStructureID": 6155, + "Label": "106805-6155 via Unknown from 106806 -> 106808", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106806, + "TargetID": 106808, + "Directional": false + }] + }, { + "ID": 4188, + "SourceStructureID": 6155, + "TargetStructureID": 106836, + "Label": "6155-106836 via Adherens from 106837 -> 106838", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 106837, + "TargetID": 106838, + "Directional": false + }] + }, { + "ID": 4189, + "SourceStructureID": 106842, + "TargetStructureID": 6155, + "Label": "106842-6155 via Unknown from 106843 -> 106840", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106843, + "TargetID": 106840, + "Directional": false + }] + }, { + "ID": 4190, + "SourceStructureID": 6155, + "TargetStructureID": 107619, + "Label": "6155-107619 via Adherens from 107620 -> 107621", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107620, + "TargetID": 107621, + "Directional": false + }] + }, { + "ID": 4191, + "SourceStructureID": 6155, + "TargetStructureID": 107753, + "Label": "6155-107753 via Adherens from 107775 -> 107776", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107775, + "TargetID": 107776, + "Directional": false + }] + }, { + "ID": 4192, + "SourceStructureID": 107769, + "TargetStructureID": 6155, + "Label": "107769-6155 via Unknown from 107773 -> 107774", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107773, + "TargetID": 107774, + "Directional": false + }] + }, { + "ID": 4193, + "SourceStructureID": 107781, + "TargetStructureID": 6155, + "Label": "107781-6155 via Adherens from 107783 -> 107782", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107783, + "TargetID": 107782, + "Directional": false + }] + }, { + "ID": 4194, + "SourceStructureID": 6155, + "TargetStructureID": 107794, + "Label": "6155-107794 via Adherens from 107813 -> 107814", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107813, + "TargetID": 107814, + "Directional": false + }] + }, { + "ID": 4195, + "SourceStructureID": 6155, + "TargetStructureID": 107802, + "Label": "6155-107802 via Adherens from 107804 -> 107803", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107804, + "TargetID": 107803, + "Directional": false + }] + }, { + "ID": 4196, + "SourceStructureID": 6155, + "TargetStructureID": 107805, + "Label": "6155-107805 via Adherens from 16132 -> 107806", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 16132, + "TargetID": 107806, + "Directional": false + }] + }, { + "ID": 4197, + "SourceStructureID": 107845, + "TargetStructureID": 6155, + "Label": "107845-6155 via Adherens from 107847 -> 107848", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107847, + "TargetID": 107848, + "Directional": false + }] + }, { + "ID": 4198, + "SourceStructureID": 6155, + "TargetStructureID": 107857, + "Label": "6155-107857 via Adherens from 107858 -> 107859", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107858, + "TargetID": 107859, + "Directional": false + }] + }, { + "ID": 4199, + "SourceStructureID": 107860, + "TargetStructureID": 6155, + "Label": "107860-6155 via Adherens from 107861 -> 107862", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107861, + "TargetID": 107862, + "Directional": false + }] + }, { + "ID": 4200, + "SourceStructureID": 6155, + "TargetStructureID": 107887, + "Label": "6155-107887 via Adherens from 107886 -> 107892", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107886, + "TargetID": 107892, + "Directional": false + }] + }, { + "ID": 4201, + "SourceStructureID": 107889, + "TargetStructureID": 6155, + "Label": "107889-6155 via Unknown from 107890 -> 107891", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107890, + "TargetID": 107891, + "Directional": false + }] + }, { + "ID": 4202, + "SourceStructureID": 6155, + "TargetStructureID": 107894, + "Label": "6155-107894 via Adherens from 107895 -> 107896", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107895, + "TargetID": 107896, + "Directional": false + }] + }, { + "ID": 4203, + "SourceStructureID": 6155, + "TargetStructureID": 107897, + "Label": "6155-107897 via Adherens from 107898 -> 107899", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107898, + "TargetID": 107899, + "Directional": false + }] + }, { + "ID": 4204, + "SourceStructureID": 107900, + "TargetStructureID": 6155, + "Label": "107900-6155 via Unknown from 107901 -> 107902", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 107901, + "TargetID": 107902, + "Directional": false + }] + }, { + "ID": 4205, + "SourceStructureID": 6155, + "TargetStructureID": 107928, + "Label": "6155-107928 via Adherens from 15539 -> 107929", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 15539, + "TargetID": 107929, + "Directional": false + }] + }, { + "ID": 4206, + "SourceStructureID": 6155, + "TargetStructureID": 107933, + "Label": "6155-107933 via Adherens from 107934 -> 107936", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107934, + "TargetID": 107936, + "Directional": false + }] + }, { + "ID": 4207, + "SourceStructureID": 107944, + "TargetStructureID": 6155, + "Label": "107944-6155 via Adherens from 107945 -> 107946", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107945, + "TargetID": 107946, + "Directional": false + }] + }, { + "ID": 4208, + "SourceStructureID": 6155, + "TargetStructureID": 107979, + "Label": "6155-107979 via Adherens from 15543 -> 107980", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 15543, + "TargetID": 107980, + "Directional": false + }] + }, { + "ID": 4209, + "SourceStructureID": 6155, + "TargetStructureID": 107989, + "Label": "6155-107989 via Adherens from 107990 -> 107991", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 107990, + "TargetID": 107991, + "Directional": false + }] + }, { + "ID": 4210, + "SourceStructureID": 6155, + "TargetStructureID": 107992, + "Label": "6155-107992 via Adherens from 15570 -> 108003", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 15570, + "TargetID": 108003, + "Directional": false + }] + }, { + "ID": 4211, + "SourceStructureID": 107999, + "TargetStructureID": 6155, + "Label": "107999-6155 via Adherens from 108002 -> 108001", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108002, + "TargetID": 108001, + "Directional": false + }] + }, { + "ID": 4212, + "SourceStructureID": 108031, + "TargetStructureID": 6155, + "Label": "108031-6155 via Adherens from 108035 -> 108036", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108035, + "TargetID": 108036, + "Directional": false + }] + }, { + "ID": 4213, + "SourceStructureID": 108053, + "TargetStructureID": 6155, + "Label": "108053-6155 via Adherens from 108054 -> 108056", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108054, + "TargetID": 108056, + "Directional": false + }] + }, { + "ID": 4214, + "SourceStructureID": 6155, + "TargetStructureID": 108064, + "Label": "6155-108064 via Gap Junction from 48306 -> 108065", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48306, + "TargetID": 108065, + "Directional": false + }] + }, { + "ID": 4215, + "SourceStructureID": 108066, + "TargetStructureID": 6155, + "Label": "108066-6155 via Adherens from 108067 -> 108068, 108071 -> 108070", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108067, + "TargetID": 108068, + "Directional": false + }, { + "SourceID": 108071, + "TargetID": 108070, + "Directional": false + }] + }, { + "ID": 4216, + "SourceStructureID": 108072, + "TargetStructureID": 6155, + "Label": "108072-6155 via Adherens from 108074 -> 108075", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108074, + "TargetID": 108075, + "Directional": false + }] + }, { + "ID": 4217, + "SourceStructureID": 6155, + "TargetStructureID": 108072, + "Label": "6155-108072 via Gap Junction from 48302 -> 108073", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48302, + "TargetID": 108073, + "Directional": false + }] + }, { + "ID": 4218, + "SourceStructureID": 6155, + "TargetStructureID": 108076, + "Label": "6155-108076 via Adherens from 49081 -> 108077", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 49081, + "TargetID": 108077, + "Directional": false + }] + }, { + "ID": 4219, + "SourceStructureID": 6155, + "TargetStructureID": 108114, + "Label": "6155-108114 via Unknown from 108116 -> 108115", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108116, + "TargetID": 108115, + "Directional": false + }] + }, { + "ID": 4220, + "SourceStructureID": 108162, + "TargetStructureID": 6155, + "Label": "108162-6155 via Unknown from 108163 -> 108161", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108163, + "TargetID": 108161, + "Directional": false + }] + }, { + "ID": 4221, + "SourceStructureID": 6155, + "TargetStructureID": 108235, + "Label": "6155-108235 via Adherens from 108245 -> 108244", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108245, + "TargetID": 108244, + "Directional": false + }] + }, { + "ID": 4222, + "SourceStructureID": 108289, + "TargetStructureID": 6155, + "Label": "108289-6155 via Adherens from 108291 -> 108290", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108291, + "TargetID": 108290, + "Directional": false + }] + }, { + "ID": 4223, + "SourceStructureID": 6155, + "TargetStructureID": 108300, + "Label": "6155-108300 via Unknown from 108303 -> 108304", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108303, + "TargetID": 108304, + "Directional": false + }] + }, { + "ID": 4224, + "SourceStructureID": 108351, + "TargetStructureID": 6155, + "Label": "108351-6155 via Unknown from 108352 -> 108350", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108352, + "TargetID": 108350, + "Directional": false + }] + }, { + "ID": 4225, + "SourceStructureID": 6857, + "TargetStructureID": 6156, + "Label": "6857-6156 via Unknown from 133425 -> 133426", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133425, + "TargetID": 133426, + "Directional": false + }] + }, { + "ID": 4226, + "SourceStructureID": 6997, + "TargetStructureID": 6156, + "Label": "6997-6156 via Gap Junction from 135075 -> 135074", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 135075, + "TargetID": 135074, + "Directional": false + }] + }, { + "ID": 4227, + "SourceStructureID": 6156, + "TargetStructureID": 6997, + "Label": "6156-6997 via Touch from 136724 -> 136725", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 136724, + "TargetID": 136725, + "Directional": false + }] + }, { + "ID": 4228, + "SourceStructureID": 6156, + "TargetStructureID": 8037, + "Label": "6156-8037 via Adherens from 133323 -> 133322", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133323, + "TargetID": 133322, + "Directional": false + }] + }, { + "ID": 4229, + "SourceStructureID": 8037, + "TargetStructureID": 6156, + "Label": "8037-6156 via Gap Junction from 117528 -> 117527", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117528, + "TargetID": 117527, + "Directional": false + }] + }, { + "ID": 4230, + "SourceStructureID": 6156, + "TargetStructureID": 12208, + "Label": "6156-12208 via Adherens from 22345 -> 22344", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 22345, + "TargetID": 22344, + "Directional": false + }] + }, { + "ID": 4231, + "SourceStructureID": 18576, + "TargetStructureID": 6156, + "Label": "18576-6156 via Adherens from 133215 -> 133214", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133215, + "TargetID": 133214, + "Directional": false + }] + }, { + "ID": 4232, + "SourceStructureID": 6156, + "TargetStructureID": 39530, + "Label": "6156-39530 via Unknown from 133376 -> 133377", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133376, + "TargetID": 133377, + "Directional": false + }] + }, { + "ID": 4233, + "SourceStructureID": 6156, + "TargetStructureID": 47104, + "Label": "6156-47104 via Unknown from 133394 -> 133395", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133394, + "TargetID": 133395, + "Directional": false + }] + }, { + "ID": 4234, + "SourceStructureID": 48612, + "TargetStructureID": 6156, + "Label": "48612-6156 via Adherens from 133340 -> 117607", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133340, + "TargetID": 117607, + "Directional": false + }] + }, { + "ID": 4235, + "SourceStructureID": 6156, + "TargetStructureID": 49600, + "Label": "6156-49600 via Adherens from 133358 -> 133359", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133358, + "TargetID": 133359, + "Directional": false + }] + }, { + "ID": 4236, + "SourceStructureID": 6156, + "TargetStructureID": 54744, + "Label": "6156-54744 via Adherens from 133373 -> 133374", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133373, + "TargetID": 133374, + "Directional": false + }] + }, { + "ID": 4237, + "SourceStructureID": 59422, + "TargetStructureID": 6156, + "Label": "59422-6156 via Adherens from 59435 -> 59436", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59435, + "TargetID": 59436, + "Directional": false + }] + }, { + "ID": 4238, + "SourceStructureID": 60201, + "TargetStructureID": 6156, + "Label": "60201-6156 via Unknown from 133231 -> 133232", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133231, + "TargetID": 133232, + "Directional": false + }] + }, { + "ID": 4239, + "SourceStructureID": 60645, + "TargetStructureID": 6156, + "Label": "60645-6156 via Adherens from 133180 -> 133179", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133180, + "TargetID": 133179, + "Directional": false + }] + }, { + "ID": 4240, + "SourceStructureID": 60657, + "TargetStructureID": 6156, + "Label": "60657-6156 via Adherens from 133174 -> 133175", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133174, + "TargetID": 133175, + "Directional": false + }] + }, { + "ID": 4241, + "SourceStructureID": 6156, + "TargetStructureID": 68042, + "Label": "6156-68042 via Unknown from 133327 -> 133326", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133327, + "TargetID": 133326, + "Directional": false + }] + }, { + "ID": 4242, + "SourceStructureID": 91267, + "TargetStructureID": 6156, + "Label": "91267-6156 via Unknown from 133444 -> 133443", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133444, + "TargetID": 133443, + "Directional": false + }] + }, { + "ID": 4243, + "SourceStructureID": 101686, + "TargetStructureID": 6156, + "Label": "101686-6156 via Adherens from 133397 -> 133396", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133397, + "TargetID": 133396, + "Directional": false + }] + }, { + "ID": 4244, + "SourceStructureID": 101707, + "TargetStructureID": 6156, + "Label": "101707-6156 via Unknown from 133199 -> 133198", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133199, + "TargetID": 133198, + "Directional": false + }] + }, { + "ID": 4245, + "SourceStructureID": 6158, + "TargetStructureID": 6162, + "Label": "6158-6162 via Gap Junction from 115480 -> 115481", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115480, + "TargetID": 115481, + "Directional": false + }] + }, { + "ID": 4246, + "SourceStructureID": 6158, + "TargetStructureID": 6162, + "Label": "6158-6162 via Unknown from 115475 -> 115476", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115475, + "TargetID": 115476, + "Directional": false + }] + }, { + "ID": 4247, + "SourceStructureID": 7951, + "TargetStructureID": 6158, + "Label": "7951-6158 via Gap Junction from 115479 -> 38074, 120644 -> 120643, 120667 -> 120666, 132454 -> 132453", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115479, + "TargetID": 38074, + "Directional": false + }, { + "SourceID": 120644, + "TargetID": 120643, + "Directional": false + }, { + "SourceID": 120667, + "TargetID": 120666, + "Directional": false + }, { + "SourceID": 132454, + "TargetID": 132453, + "Directional": false + }] + }, { + "ID": 4248, + "SourceStructureID": 69428, + "TargetStructureID": 6158, + "Label": "69428-6158 via Gap Junction from 120827 -> 120826", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120827, + "TargetID": 120826, + "Directional": false + }] + }, { + "ID": 4249, + "SourceStructureID": 115424, + "TargetStructureID": 6158, + "Label": "115424-6158 via Gap Junction from 120817 -> 120816", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120817, + "TargetID": 120816, + "Directional": false + }] + }, { + "ID": 4250, + "SourceStructureID": 115487, + "TargetStructureID": 6158, + "Label": "115487-6158 via Gap Junction from 115488 -> 115486", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115488, + "TargetID": 115486, + "Directional": false + }] + }, { + "ID": 4251, + "SourceStructureID": 6162, + "TargetStructureID": 6162, + "Label": "6162-6162 via Gap Junction from 120749 -> 120750", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120749, + "TargetID": 120750, + "Directional": false + }] + }, { + "ID": 4252, + "SourceStructureID": 6162, + "TargetStructureID": 47445, + "Label": "6162-47445 via Gap Junction from 131995 -> 131996, 132003 -> 132004, 132005 -> 132006, 132031 -> 47448", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131995, + "TargetID": 131996, + "Directional": false + }, { + "SourceID": 132003, + "TargetID": 132004, + "Directional": false + }, { + "SourceID": 132005, + "TargetID": 132006, + "Directional": false + }, { + "SourceID": 132031, + "TargetID": 47448, + "Directional": false + }] + }, { + "ID": 4253, + "SourceStructureID": 121889, + "TargetStructureID": 6162, + "Label": "121889-6162 via Gap Junction from 132001 -> 132002", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132001, + "TargetID": 132002, + "Directional": false + }] + }, { + "ID": 4254, + "SourceStructureID": 6162, + "TargetStructureID": 121899, + "Label": "6162-121899 via Gap Junction from 122378 -> 122379", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122378, + "TargetID": 122379, + "Directional": false + }] + }, { + "ID": 4255, + "SourceStructureID": 131886, + "TargetStructureID": 6162, + "Label": "131886-6162 via Gap Junction from 131887 -> 29107", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131887, + "TargetID": 29107, + "Directional": false + }] + }, { + "ID": 4256, + "SourceStructureID": 61270, + "TargetStructureID": 6163, + "Label": "61270-6163 via Touch from 61299 -> 61298", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 61299, + "TargetID": 61298, + "Directional": false + }] + }, { + "ID": 4257, + "SourceStructureID": 6165, + "TargetStructureID": 6165, + "Label": "6165-6165 via Gap Junction from 118057 -> 118056", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118057, + "TargetID": 118056, + "Directional": false + }] + }, { + "ID": 4258, + "SourceStructureID": 6169, + "TargetStructureID": 7113, + "Label": "6169-7113 via Gap Junction from 29711 -> 29710", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29711, + "TargetID": 29710, + "Directional": false + }] + }, { + "ID": 4259, + "SourceStructureID": 6169, + "TargetStructureID": 7147, + "Label": "6169-7147 via Gap Junction from 29707 -> 29697, 29714 -> 29713", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29707, + "TargetID": 29697, + "Directional": false + }, { + "SourceID": 29714, + "TargetID": 29713, + "Directional": false + }] + }, { + "ID": 4260, + "SourceStructureID": 7859, + "TargetStructureID": 6169, + "Label": "7859-6169 via Touch from 64686 -> 64687", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 64686, + "TargetID": 64687, + "Directional": false + }] + }, { + "ID": 4261, + "SourceStructureID": 6169, + "TargetStructureID": 39201, + "Label": "6169-39201 via Adherens from 16168 -> 89479", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 16168, + "TargetID": 89479, + "Directional": false + }] + }, { + "ID": 4262, + "SourceStructureID": 6169, + "TargetStructureID": 39787, + "Label": "6169-39787 via Adherens from 87739 -> 87736", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87739, + "TargetID": 87736, + "Directional": false + }] + }, { + "ID": 4263, + "SourceStructureID": 39816, + "TargetStructureID": 6169, + "Label": "39816-6169 via Unknown from 89973 -> 89974", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89973, + "TargetID": 89974, + "Directional": false + }] + }, { + "ID": 4264, + "SourceStructureID": 40896, + "TargetStructureID": 6169, + "Label": "40896-6169 via Adherens from 40900 -> 14162", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 40900, + "TargetID": 14162, + "Directional": false + }] + }, { + "ID": 4265, + "SourceStructureID": 6169, + "TargetStructureID": 60863, + "Label": "6169-60863 via Adherens from 75233 -> 75231", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75233, + "TargetID": 75231, + "Directional": false + }] + }, { + "ID": 4266, + "SourceStructureID": 6169, + "TargetStructureID": 136432, + "Label": "6169-136432 via Touch from 136541 -> 136540", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 136541, + "TargetID": 136540, + "Directional": false + }] + }, { + "ID": 4267, + "SourceStructureID": 7114, + "TargetStructureID": 6203, + "Label": "7114-6203 via Gap Junction from 57229 -> 57213", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57229, + "TargetID": 57213, + "Directional": false + }] + }, { + "ID": 4268, + "SourceStructureID": 57226, + "TargetStructureID": 6203, + "Label": "57226-6203 via Gap Junction from 57227 -> 57225", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57227, + "TargetID": 57225, + "Directional": false + }] + }, { + "ID": 4269, + "SourceStructureID": 57248, + "TargetStructureID": 6203, + "Label": "57248-6203 via Gap Junction from 57249 -> 57247", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57249, + "TargetID": 57247, + "Directional": false + }] + }, { + "ID": 4270, + "SourceStructureID": 6203, + "TargetStructureID": 57273, + "Label": "6203-57273 via Gap Junction from 57272 -> 57286", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57272, + "TargetID": 57286, + "Directional": false + }] + }, { + "ID": 4271, + "SourceStructureID": 6203, + "TargetStructureID": 57353, + "Label": "6203-57353 via Gap Junction from 52117 -> 57354, 115323 -> 115322, 124296 -> 124297", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52117, + "TargetID": 57354, + "Directional": false + }, { + "SourceID": 115323, + "TargetID": 115322, + "Directional": false + }, { + "SourceID": 124296, + "TargetID": 124297, + "Directional": false + }] + }, { + "ID": 4272, + "SourceStructureID": 6203, + "TargetStructureID": 57353, + "Label": "6203-57353 via Unknown from 124413 -> 124414", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124413, + "TargetID": 124414, + "Directional": false + }] + }, { + "ID": 4273, + "SourceStructureID": 89670, + "TargetStructureID": 6203, + "Label": "89670-6203 via Unknown from 125781 -> 125780", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125781, + "TargetID": 125780, + "Directional": false + }] + }, { + "ID": 4274, + "SourceStructureID": 6204, + "TargetStructureID": 6204, + "Label": "6204-6204 via Gap Junction from 118085 -> 57293, 118154 -> 118153", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118085, + "TargetID": 57293, + "Directional": false + }, { + "SourceID": 118154, + "TargetID": 118153, + "Directional": false + }] + }, { + "ID": 4275, + "SourceStructureID": 8032, + "TargetStructureID": 6204, + "Label": "8032-6204 via Gap Junction from 32521 -> 118116", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 32521, + "TargetID": 118116, + "Directional": false + }] + }, { + "ID": 4276, + "SourceStructureID": 22994, + "TargetStructureID": 6204, + "Label": "22994-6204 via Gap Junction from 118120 -> 118118, 118128 -> 118129, 118131 -> 118132, 118134 -> 118133", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118120, + "TargetID": 118118, + "Directional": false + }, { + "SourceID": 118128, + "TargetID": 118129, + "Directional": false + }, { + "SourceID": 118131, + "TargetID": 118132, + "Directional": false + }, { + "SourceID": 118134, + "TargetID": 118133, + "Directional": false + }] + }, { + "ID": 4277, + "SourceStructureID": 6204, + "TargetStructureID": 33039, + "Label": "6204-33039 via Gap Junction from 52633 -> 52634", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52633, + "TargetID": 52634, + "Directional": false + }] + }, { + "ID": 4278, + "SourceStructureID": 6204, + "TargetStructureID": 57353, + "Label": "6204-57353 via Touch from 124327 -> 124326", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 124327, + "TargetID": 124326, + "Directional": false + }] + }, { + "ID": 4279, + "SourceStructureID": 6204, + "TargetStructureID": 132009, + "Label": "6204-132009 via Gap Junction from 132008 -> 132010", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132008, + "TargetID": 132010, + "Directional": false + }] + }, { + "ID": 4280, + "SourceStructureID": 86634, + "TargetStructureID": 6561, + "Label": "86634-6561 via Adherens from 86706 -> 8304", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86706, + "TargetID": 8304, + "Directional": false + }] + }, { + "ID": 4281, + "SourceStructureID": 6589, + "TargetStructureID": 6589, + "Label": "6589-6589 via Adherens from 119941 -> 119940", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 119941, + "TargetID": 119940, + "Directional": false + }] + }, { + "ID": 4282, + "SourceStructureID": 6997, + "TargetStructureID": 6589, + "Label": "6997-6589 via Adherens from 130563 -> 130562", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130563, + "TargetID": 130562, + "Directional": false + }] + }, { + "ID": 4283, + "SourceStructureID": 6997, + "TargetStructureID": 6589, + "Label": "6997-6589 via Gap Junction from 130565 -> 130564, 132620 -> 132619", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130565, + "TargetID": 130564, + "Directional": false + }, { + "SourceID": 132620, + "TargetID": 132619, + "Directional": false + }] + }, { + "ID": 4284, + "SourceStructureID": 6589, + "TargetStructureID": 8037, + "Label": "6589-8037 via Adherens from 130636 -> 132615", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130636, + "TargetID": 132615, + "Directional": false + }] + }, { + "ID": 4285, + "SourceStructureID": 6589, + "TargetStructureID": 8037, + "Label": "6589-8037 via Gap Junction from 130637 -> 132616", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130637, + "TargetID": 132616, + "Directional": false + }] + }, { + "ID": 4286, + "SourceStructureID": 9693, + "TargetStructureID": 6589, + "Label": "9693-6589 via Adherens from 130583 -> 130582", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130583, + "TargetID": 130582, + "Directional": false + }] + }, { + "ID": 4287, + "SourceStructureID": 13855, + "TargetStructureID": 6589, + "Label": "13855-6589 via Unknown from 132691 -> 132690, 132708 -> 132709, 132762 -> 132763", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132691, + "TargetID": 132690, + "Directional": false + }, { + "SourceID": 132708, + "TargetID": 132709, + "Directional": false + }, { + "SourceID": 132762, + "TargetID": 132763, + "Directional": false + }] + }, { + "ID": 4288, + "SourceStructureID": 6589, + "TargetStructureID": 22554, + "Label": "6589-22554 via Unknown from 132682 -> 132683", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132682, + "TargetID": 132683, + "Directional": false + }] + }, { + "ID": 4289, + "SourceStructureID": 40469, + "TargetStructureID": 6589, + "Label": "40469-6589 via Unknown from 132701 -> 132700", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132701, + "TargetID": 132700, + "Directional": false + }] + }, { + "ID": 4290, + "SourceStructureID": 6589, + "TargetStructureID": 87158, + "Label": "6589-87158 via Unknown from 130557 -> 130558", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 130557, + "TargetID": 130558, + "Directional": false + }] + }, { + "ID": 4291, + "SourceStructureID": 6589, + "TargetStructureID": 95701, + "Label": "6589-95701 via Unknown from 132702 -> 132703", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132702, + "TargetID": 132703, + "Directional": false + }] + }, { + "ID": 4292, + "SourceStructureID": 132773, + "TargetStructureID": 6589, + "Label": "132773-6589 via Gap Junction from 132780 -> 130629", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132780, + "TargetID": 130629, + "Directional": false + }] + }, { + "ID": 4293, + "SourceStructureID": 6617, + "TargetStructureID": 8033, + "Label": "6617-8033 via Touch from 61253 -> 61254", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 61253, + "TargetID": 61254, + "Directional": false + }] + }, { + "ID": 4294, + "SourceStructureID": 6618, + "TargetStructureID": 40919, + "Label": "6618-40919 via Touch from 60506 -> 60505", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 60506, + "TargetID": 60505, + "Directional": false + }] + }, { + "ID": 4295, + "SourceStructureID": 8586, + "TargetStructureID": 6857, + "Label": "8586-6857 via Touch from 32688 -> 32687", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 32688, + "TargetID": 32687, + "Directional": false + }] + }, { + "ID": 4296, + "SourceStructureID": 6857, + "TargetStructureID": 18576, + "Label": "6857-18576 via Adherens from 100534 -> 100533", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100534, + "TargetID": 100533, + "Directional": false + }] + }, { + "ID": 4297, + "SourceStructureID": 6857, + "TargetStructureID": 71513, + "Label": "6857-71513 via Adherens from 77722 -> 77721", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77722, + "TargetID": 77721, + "Directional": false + }] + }, { + "ID": 4298, + "SourceStructureID": 6857, + "TargetStructureID": 71517, + "Label": "6857-71517 via Adherens from 66680 -> 66681, 72123 -> 72122, 74985 -> 74984, 74986 -> 74987, 75165 -> 75164", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66680, + "TargetID": 66681, + "Directional": false + }, { + "SourceID": 72123, + "TargetID": 72122, + "Directional": false + }, { + "SourceID": 74985, + "TargetID": 74984, + "Directional": false + }, { + "SourceID": 74986, + "TargetID": 74987, + "Directional": false + }, { + "SourceID": 75165, + "TargetID": 75164, + "Directional": false + }] + }, { + "ID": 4299, + "SourceStructureID": 6909, + "TargetStructureID": 6909, + "Label": "6909-6909 via Gap Junction from 122782 -> 122789", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122782, + "TargetID": 122789, + "Directional": false + }] + }, { + "ID": 4300, + "SourceStructureID": 6909, + "TargetStructureID": 6964, + "Label": "6909-6964 via Gap Junction from 122965 -> 122966, 122968 -> 122969, 122972 -> 122971, 122973 -> 122974, 122975 -> 122976, 122977 -> 121677, 123104 -> 123105", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122965, + "TargetID": 122966, + "Directional": false + }, { + "SourceID": 122968, + "TargetID": 122969, + "Directional": false + }, { + "SourceID": 122972, + "TargetID": 122971, + "Directional": false + }, { + "SourceID": 122973, + "TargetID": 122974, + "Directional": false + }, { + "SourceID": 122975, + "TargetID": 122976, + "Directional": false + }, { + "SourceID": 122977, + "TargetID": 121677, + "Directional": false + }, { + "SourceID": 123104, + "TargetID": 123105, + "Directional": false + }] + }, { + "ID": 4301, + "SourceStructureID": 6909, + "TargetStructureID": 6965, + "Label": "6909-6965 via Gap Junction from 123009 -> 123008, 123011 -> 123010, 123013 -> 123012, 123016 -> 123015, 123019 -> 123018, 123020 -> 123021, 123022 -> 123023, 123024 -> 123025", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123009, + "TargetID": 123008, + "Directional": false + }, { + "SourceID": 123011, + "TargetID": 123010, + "Directional": false + }, { + "SourceID": 123013, + "TargetID": 123012, + "Directional": false + }, { + "SourceID": 123016, + "TargetID": 123015, + "Directional": false + }, { + "SourceID": 123019, + "TargetID": 123018, + "Directional": false + }, { + "SourceID": 123020, + "TargetID": 123021, + "Directional": false + }, { + "SourceID": 123022, + "TargetID": 123023, + "Directional": false + }, { + "SourceID": 123024, + "TargetID": 123025, + "Directional": false + }] + }, { + "ID": 4302, + "SourceStructureID": 6909, + "TargetStructureID": 7345, + "Label": "6909-7345 via Gap Junction from 121675 -> 56577, 122645 -> 39139, 122788 -> 122787", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121675, + "TargetID": 56577, + "Directional": false + }, { + "SourceID": 122645, + "TargetID": 39139, + "Directional": false + }, { + "SourceID": 122788, + "TargetID": 122787, + "Directional": false + }] + }, { + "ID": 4303, + "SourceStructureID": 44256, + "TargetStructureID": 6909, + "Label": "44256-6909 via Gap Junction from 121683 -> 121682, 121687 -> 121686, 123103 -> 123107", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121683, + "TargetID": 121682, + "Directional": false + }, { + "SourceID": 121687, + "TargetID": 121686, + "Directional": false + }, { + "SourceID": 123103, + "TargetID": 123107, + "Directional": false + }] + }, { + "ID": 4304, + "SourceStructureID": 44256, + "TargetStructureID": 6909, + "Label": "44256-6909 via Unknown from 122651 -> 122650", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 122651, + "TargetID": 122650, + "Directional": false + }] + }, { + "ID": 4305, + "SourceStructureID": 44338, + "TargetStructureID": 6909, + "Label": "44338-6909 via Gap Junction from 122978 -> 122661", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122978, + "TargetID": 122661, + "Directional": false + }] + }, { + "ID": 4306, + "SourceStructureID": 122663, + "TargetStructureID": 6909, + "Label": "122663-6909 via Gap Junction from 122664 -> 122662", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122664, + "TargetID": 122662, + "Directional": false + }] + }, { + "ID": 4307, + "SourceStructureID": 24401, + "TargetStructureID": 6912, + "Label": "24401-6912 via Gap Junction from 48016 -> 48018", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48016, + "TargetID": 48018, + "Directional": false + }] + }, { + "ID": 4308, + "SourceStructureID": 26079, + "TargetStructureID": 6912, + "Label": "26079-6912 via Gap Junction from 48666 -> 48350, 48672 -> 121215, 121210 -> 51034", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48666, + "TargetID": 48350, + "Directional": false + }, { + "SourceID": 48672, + "TargetID": 121215, + "Directional": false + }, { + "SourceID": 121210, + "TargetID": 51034, + "Directional": false + }] + }, { + "ID": 4309, + "SourceStructureID": 6912, + "TargetStructureID": 39862, + "Label": "6912-39862 via Gap Junction from 51026 -> 51210, 51133 -> 51178, 51209 -> 51027", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51026, + "TargetID": 51210, + "Directional": false + }, { + "SourceID": 51133, + "TargetID": 51178, + "Directional": false + }, { + "SourceID": 51209, + "TargetID": 51027, + "Directional": false + }] + }, { + "ID": 4310, + "SourceStructureID": 6912, + "TargetStructureID": 51100, + "Label": "6912-51100 via Gap Junction from 51080 -> 51101", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51080, + "TargetID": 51101, + "Directional": false + }] + }, { + "ID": 4311, + "SourceStructureID": 7114, + "TargetStructureID": 6958, + "Label": "7114-6958 via Gap Junction from 116682 -> 116677, 117151 -> 117150, 122901 -> 116838", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116682, + "TargetID": 116677, + "Directional": false + }, { + "SourceID": 117151, + "TargetID": 117150, + "Directional": false + }, { + "SourceID": 122901, + "TargetID": 116838, + "Directional": false + }] + }, { + "ID": 4312, + "SourceStructureID": 8589, + "TargetStructureID": 6958, + "Label": "8589-6958 via Adherens from 70473 -> 70474, 71316 -> 71317", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70473, + "TargetID": 70474, + "Directional": false + }, { + "SourceID": 71316, + "TargetID": 71317, + "Directional": false + }] + }, { + "ID": 4313, + "SourceStructureID": 57169, + "TargetStructureID": 6958, + "Label": "57169-6958 via Gap Junction from 57173 -> 57175, 117083 -> 117082", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57173, + "TargetID": 57175, + "Directional": false + }, { + "SourceID": 117083, + "TargetID": 117082, + "Directional": false + }] + }, { + "ID": 4314, + "SourceStructureID": 116835, + "TargetStructureID": 6958, + "Label": "116835-6958 via Gap Junction from 116836 -> 116683", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116836, + "TargetID": 116683, + "Directional": false + }] + }, { + "ID": 4315, + "SourceStructureID": 6958, + "TargetStructureID": 118087, + "Label": "6958-118087 via Unknown from 118089 -> 118090", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 118089, + "TargetID": 118090, + "Directional": false + }] + }, { + "ID": 4316, + "SourceStructureID": 6961, + "TargetStructureID": 7279, + "Label": "6961-7279 via Gap Junction from 34731 -> 34730", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 34731, + "TargetID": 34730, + "Directional": false + }] + }, { + "ID": 4317, + "SourceStructureID": 6965, + "TargetStructureID": 6965, + "Label": "6965-6965 via Gap Junction from 123029 -> 123030", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123029, + "TargetID": 123030, + "Directional": false + }] + }, { + "ID": 4318, + "SourceStructureID": 7446, + "TargetStructureID": 6965, + "Label": "7446-6965 via Gap Junction from 64766 -> 121941, 118312 -> 121935, 118313 -> 121936, 122413 -> 122412, 123047 -> 123046, 123123 -> 123124", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 64766, + "TargetID": 121941, + "Directional": false + }, { + "SourceID": 118312, + "TargetID": 121935, + "Directional": false + }, { + "SourceID": 118313, + "TargetID": 121936, + "Directional": false + }, { + "SourceID": 122413, + "TargetID": 122412, + "Directional": false + }, { + "SourceID": 123047, + "TargetID": 123046, + "Directional": false + }, { + "SourceID": 123123, + "TargetID": 123124, + "Directional": false + }] + }, { + "ID": 4319, + "SourceStructureID": 6997, + "TargetStructureID": 8720, + "Label": "6997-8720 via Unknown from 136746 -> 136745", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136746, + "TargetID": 136745, + "Directional": false + }] + }, { + "ID": 4320, + "SourceStructureID": 6997, + "TargetStructureID": 9693, + "Label": "6997-9693 via Touch from 136665 -> 136666", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 136665, + "TargetID": 136666, + "Directional": false + }] + }, { + "ID": 4321, + "SourceStructureID": 6997, + "TargetStructureID": 19203, + "Label": "6997-19203 via Touch from 135818 -> 135819", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 135818, + "TargetID": 135819, + "Directional": false + }] + }, { + "ID": 4322, + "SourceStructureID": 32654, + "TargetStructureID": 6997, + "Label": "32654-6997 via Gap Junction from 49278 -> 22249", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49278, + "TargetID": 22249, + "Directional": false + }] + }, { + "ID": 4323, + "SourceStructureID": 32804, + "TargetStructureID": 6997, + "Label": "32804-6997 via Adherens from 136558 -> 136557", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136558, + "TargetID": 136557, + "Directional": false + }] + }, { + "ID": 4324, + "SourceStructureID": 6997, + "TargetStructureID": 56486, + "Label": "6997-56486 via Unknown from 49246 -> 56487, 136765 -> 136242", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 49246, + "TargetID": 56487, + "Directional": false + }, { + "SourceID": 136765, + "TargetID": 136242, + "Directional": false + }] + }, { + "ID": 4325, + "SourceStructureID": 6997, + "TargetStructureID": 66958, + "Label": "6997-66958 via Adherens from 83029 -> 70071", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83029, + "TargetID": 70071, + "Directional": false + }] + }, { + "ID": 4326, + "SourceStructureID": 6997, + "TargetStructureID": 66958, + "Label": "6997-66958 via Unknown from 136718 -> 136717", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136718, + "TargetID": 136717, + "Directional": false + }] + }, { + "ID": 4327, + "SourceStructureID": 68286, + "TargetStructureID": 6997, + "Label": "68286-6997 via Adherens from 80651 -> 80650", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80651, + "TargetID": 80650, + "Directional": false + }] + }, { + "ID": 4328, + "SourceStructureID": 6997, + "TargetStructureID": 68289, + "Label": "6997-68289 via Adherens from 80643 -> 80642", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80643, + "TargetID": 80642, + "Directional": false + }] + }, { + "ID": 4329, + "SourceStructureID": 6997, + "TargetStructureID": 70014, + "Label": "6997-70014 via Unknown from 96052 -> 96051", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96052, + "TargetID": 96051, + "Directional": false + }] + }, { + "ID": 4330, + "SourceStructureID": 6997, + "TargetStructureID": 70069, + "Label": "6997-70069 via Gap Junction from 83070 -> 83071", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 83070, + "TargetID": 83071, + "Directional": false + }] + }, { + "ID": 4331, + "SourceStructureID": 78303, + "TargetStructureID": 6997, + "Label": "78303-6997 via Adherens from 136272 -> 136271", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136272, + "TargetID": 136271, + "Directional": false + }] + }, { + "ID": 4332, + "SourceStructureID": 6997, + "TargetStructureID": 79916, + "Label": "6997-79916 via Adherens from 83116 -> 79919", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83116, + "TargetID": 79919, + "Directional": false + }] + }, { + "ID": 4333, + "SourceStructureID": 79928, + "TargetStructureID": 6997, + "Label": "79928-6997 via Unknown from 83101 -> 83102", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83101, + "TargetID": 83102, + "Directional": false + }] + }, { + "ID": 4334, + "SourceStructureID": 79937, + "TargetStructureID": 6997, + "Label": "79937-6997 via Adherens from 79938 -> 83103", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79938, + "TargetID": 83103, + "Directional": false + }] + }, { + "ID": 4335, + "SourceStructureID": 6997, + "TargetStructureID": 79950, + "Label": "6997-79950 via Unknown from 83110 -> 79953", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83110, + "TargetID": 79953, + "Directional": false + }] + }, { + "ID": 4336, + "SourceStructureID": 79962, + "TargetStructureID": 6997, + "Label": "79962-6997 via Adherens from 79963 -> 83092", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79963, + "TargetID": 83092, + "Directional": false + }] + }, { + "ID": 4337, + "SourceStructureID": 6997, + "TargetStructureID": 79970, + "Label": "6997-79970 via Adherens from 83075 -> 79972", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83075, + "TargetID": 79972, + "Directional": false + }] + }, { + "ID": 4338, + "SourceStructureID": 79981, + "TargetStructureID": 6997, + "Label": "79981-6997 via Unknown from 79982 -> 83074", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 79982, + "TargetID": 83074, + "Directional": false + }] + }, { + "ID": 4339, + "SourceStructureID": 79986, + "TargetStructureID": 6997, + "Label": "79986-6997 via Unknown from 80012 -> 83087", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80012, + "TargetID": 83087, + "Directional": false + }] + }, { + "ID": 4340, + "SourceStructureID": 6997, + "TargetStructureID": 79988, + "Label": "6997-79988 via Unknown from 83077 -> 79989", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83077, + "TargetID": 79989, + "Directional": false + }] + }, { + "ID": 4341, + "SourceStructureID": 6997, + "TargetStructureID": 79993, + "Label": "6997-79993 via Unknown from 83083 -> 80005, 83084 -> 83093", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83083, + "TargetID": 80005, + "Directional": false + }, { + "SourceID": 83084, + "TargetID": 83093, + "Directional": false + }] + }, { + "ID": 4342, + "SourceStructureID": 6997, + "TargetStructureID": 80007, + "Label": "6997-80007 via Unknown from 83090 -> 80010", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83090, + "TargetID": 80010, + "Directional": false + }] + }, { + "ID": 4343, + "SourceStructureID": 6997, + "TargetStructureID": 80008, + "Label": "6997-80008 via Unknown from 83090 -> 80009", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83090, + "TargetID": 80009, + "Directional": false + }] + }, { + "ID": 4344, + "SourceStructureID": 6997, + "TargetStructureID": 80013, + "Label": "6997-80013 via Unknown from 83086 -> 80015", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83086, + "TargetID": 80015, + "Directional": false + }] + }, { + "ID": 4345, + "SourceStructureID": 6997, + "TargetStructureID": 80039, + "Label": "6997-80039 via Unknown from 83028 -> 80040", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83028, + "TargetID": 80040, + "Directional": false + }] + }, { + "ID": 4346, + "SourceStructureID": 6997, + "TargetStructureID": 80046, + "Label": "6997-80046 via Adherens from 83068 -> 80047", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83068, + "TargetID": 80047, + "Directional": false + }] + }, { + "ID": 4347, + "SourceStructureID": 80049, + "TargetStructureID": 6997, + "Label": "80049-6997 via Unknown from 80050 -> 83022", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80050, + "TargetID": 83022, + "Directional": false + }] + }, { + "ID": 4348, + "SourceStructureID": 6997, + "TargetStructureID": 80051, + "Label": "6997-80051 via Unknown from 83018 -> 80052", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83018, + "TargetID": 80052, + "Directional": false + }] + }, { + "ID": 4349, + "SourceStructureID": 92331, + "TargetStructureID": 6997, + "Label": "92331-6997 via Unknown from 92332 -> 22273", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92332, + "TargetID": 22273, + "Directional": false + }] + }, { + "ID": 4350, + "SourceStructureID": 6997, + "TargetStructureID": 95482, + "Label": "6997-95482 via Adherens from 95481 -> 95483", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 95481, + "TargetID": 95483, + "Directional": false + }] + }, { + "ID": 4351, + "SourceStructureID": 6997, + "TargetStructureID": 95772, + "Label": "6997-95772 via Gap Junction from 95771 -> 95775", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 95771, + "TargetID": 95775, + "Directional": false + }] + }, { + "ID": 4352, + "SourceStructureID": 6997, + "TargetStructureID": 95999, + "Label": "6997-95999 via Adherens from 136693 -> 136694", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136693, + "TargetID": 136694, + "Directional": false + }] + }, { + "ID": 4353, + "SourceStructureID": 95999, + "TargetStructureID": 6997, + "Label": "95999-6997 via Gap Junction from 136638 -> 136639", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136638, + "TargetID": 136639, + "Directional": false + }] + }, { + "ID": 4354, + "SourceStructureID": 6997, + "TargetStructureID": 95999, + "Label": "6997-95999 via Unknown from 136695 -> 136696, 136697 -> 136698", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136695, + "TargetID": 136696, + "Directional": false + }, { + "SourceID": 136697, + "TargetID": 136698, + "Directional": false + }] + }, { + "ID": 4355, + "SourceStructureID": 96015, + "TargetStructureID": 6997, + "Label": "96015-6997 via Unknown from 96016 -> 96014", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96016, + "TargetID": 96014, + "Directional": false + }] + }, { + "ID": 4356, + "SourceStructureID": 96036, + "TargetStructureID": 6997, + "Label": "96036-6997 via Unknown from 96038 -> 96035", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96038, + "TargetID": 96035, + "Directional": false + }] + }, { + "ID": 4357, + "SourceStructureID": 6997, + "TargetStructureID": 101437, + "Label": "6997-101437 via Unknown from 136281 -> 136282", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136281, + "TargetID": 136282, + "Directional": false + }] + }, { + "ID": 4358, + "SourceStructureID": 136659, + "TargetStructureID": 6997, + "Label": "136659-6997 via Gap Junction from 136660 -> 133251", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136660, + "TargetID": 133251, + "Directional": false + }] + }, { + "ID": 4359, + "SourceStructureID": 6997, + "TargetStructureID": 136674, + "Label": "6997-136674 via Adherens from 136780 -> 136779", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136780, + "TargetID": 136779, + "Directional": false + }] + }, { + "ID": 4360, + "SourceStructureID": 136674, + "TargetStructureID": 6997, + "Label": "136674-6997 via Gap Junction from 136778 -> 56995", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136778, + "TargetID": 56995, + "Directional": false + }] + }, { + "ID": 4361, + "SourceStructureID": 136677, + "TargetStructureID": 6997, + "Label": "136677-6997 via Adherens from 136686 -> 136685", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 136686, + "TargetID": 136685, + "Directional": false + }] + }, { + "ID": 4362, + "SourceStructureID": 136677, + "TargetStructureID": 6997, + "Label": "136677-6997 via Gap Junction from 136684 -> 136595", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136684, + "TargetID": 136595, + "Directional": false + }] + }, { + "ID": 4363, + "SourceStructureID": 6997, + "TargetStructureID": 136688, + "Label": "6997-136688 via Unknown from 136623 -> 136793", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136623, + "TargetID": 136793, + "Directional": false + }] + }, { + "ID": 4364, + "SourceStructureID": 136742, + "TargetStructureID": 6997, + "Label": "136742-6997 via Unknown from 136840 -> 22189", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136840, + "TargetID": 22189, + "Directional": false + }] + }, { + "ID": 4365, + "SourceStructureID": 136748, + "TargetStructureID": 6997, + "Label": "136748-6997 via Unknown from 136749 -> 22287", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136749, + "TargetID": 22287, + "Directional": false + }] + }, { + "ID": 4366, + "SourceStructureID": 136759, + "TargetStructureID": 6997, + "Label": "136759-6997 via Unknown from 136761 -> 57004", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136761, + "TargetID": 57004, + "Directional": false + }] + }, { + "ID": 4367, + "SourceStructureID": 136766, + "TargetStructureID": 6997, + "Label": "136766-6997 via Unknown from 136767 -> 63928", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 136767, + "TargetID": 63928, + "Directional": false + }] + }, { + "ID": 4368, + "SourceStructureID": 6997, + "TargetStructureID": 136822, + "Label": "6997-136822 via Gap Junction from 63927 -> 136827", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63927, + "TargetID": 136827, + "Directional": false + }] + }, { + "ID": 4369, + "SourceStructureID": 7024, + "TargetStructureID": 7024, + "Label": "7024-7024 via Gap Junction from 54971 -> 40162, 93878 -> 93874, 114897 -> 114898, 136215 -> 136214", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54971, + "TargetID": 40162, + "Directional": false + }, { + "SourceID": 93878, + "TargetID": 93874, + "Directional": false + }, { + "SourceID": 114897, + "TargetID": 114898, + "Directional": false + }, { + "SourceID": 136215, + "TargetID": 136214, + "Directional": false + }] + }, { + "ID": 4370, + "SourceStructureID": 8037, + "TargetStructureID": 7024, + "Label": "8037-7024 via Gap Junction from 10907 -> 10906, 20235 -> 20234, 43563 -> 43564, 43566 -> 43565, 47338 -> 47335, 113487 -> 113486, 136199 -> 106964", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 10907, + "TargetID": 10906, + "Directional": false + }, { + "SourceID": 20235, + "TargetID": 20234, + "Directional": false + }, { + "SourceID": 43563, + "TargetID": 43564, + "Directional": false + }, { + "SourceID": 43566, + "TargetID": 43565, + "Directional": false + }, { + "SourceID": 47338, + "TargetID": 47335, + "Directional": false + }, { + "SourceID": 113487, + "TargetID": 113486, + "Directional": false + }, { + "SourceID": 136199, + "TargetID": 106964, + "Directional": false + }] + }, { + "ID": 4371, + "SourceStructureID": 8037, + "TargetStructureID": 7024, + "Label": "8037-7024 via Postsynapse from 114159 -> 114158", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 114159, + "TargetID": 114158, + "Directional": false + }] + }, { + "ID": 4372, + "SourceStructureID": 9769, + "TargetStructureID": 7024, + "Label": "9769-7024 via Adherens from 20239 -> 20238, 20241 -> 20240, 63404 -> 63405, 93900 -> 93899, 113728 -> 113729, 113730 -> 113731, 113738 -> 113739, 113741 -> 113742, 114133 -> 114135, 114330 -> 114329, 114333 -> 114332, 114338 -> 114337, 114369 -> 114368", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 20239, + "TargetID": 20238, + "Directional": false + }, { + "SourceID": 20241, + "TargetID": 20240, + "Directional": false + }, { + "SourceID": 63404, + "TargetID": 63405, + "Directional": false + }, { + "SourceID": 93900, + "TargetID": 93899, + "Directional": false + }, { + "SourceID": 113728, + "TargetID": 113729, + "Directional": false + }, { + "SourceID": 113730, + "TargetID": 113731, + "Directional": false + }, { + "SourceID": 113738, + "TargetID": 113739, + "Directional": false + }, { + "SourceID": 113741, + "TargetID": 113742, + "Directional": false + }, { + "SourceID": 114133, + "TargetID": 114135, + "Directional": false + }, { + "SourceID": 114330, + "TargetID": 114329, + "Directional": false + }, { + "SourceID": 114333, + "TargetID": 114332, + "Directional": false + }, { + "SourceID": 114338, + "TargetID": 114337, + "Directional": false + }, { + "SourceID": 114369, + "TargetID": 114368, + "Directional": false + }] + }, { + "ID": 4373, + "SourceStructureID": 7024, + "TargetStructureID": 9769, + "Label": "7024-9769 via Unknown from 113732 -> 113733", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 113732, + "TargetID": 113733, + "Directional": false + }] + }, { + "ID": 4374, + "SourceStructureID": 20136, + "TargetStructureID": 7024, + "Label": "20136-7024 via Gap Junction from 93849 -> 93848, 93854 -> 93850", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93849, + "TargetID": 93848, + "Directional": false + }, { + "SourceID": 93854, + "TargetID": 93850, + "Directional": false + }] + }, { + "ID": 4375, + "SourceStructureID": 31161, + "TargetStructureID": 7024, + "Label": "31161-7024 via Unknown from 106566 -> 106567", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 106566, + "TargetID": 106567, + "Directional": false + }] + }, { + "ID": 4376, + "SourceStructureID": 46388, + "TargetStructureID": 7024, + "Label": "46388-7024 via Adherens from 148227 -> 148226", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148227, + "TargetID": 148226, + "Directional": false + }] + }, { + "ID": 4377, + "SourceStructureID": 46388, + "TargetStructureID": 7024, + "Label": "46388-7024 via Gap Junction from 46428 -> 46427, 46466 -> 46465, 46610 -> 46622, 121379 -> 121378, 121426 -> 121425, 148228 -> 93884", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46428, + "TargetID": 46427, + "Directional": false + }, { + "SourceID": 46466, + "TargetID": 46465, + "Directional": false + }, { + "SourceID": 46610, + "TargetID": 46622, + "Directional": false + }, { + "SourceID": 121379, + "TargetID": 121378, + "Directional": false + }, { + "SourceID": 121426, + "TargetID": 121425, + "Directional": false + }, { + "SourceID": 148228, + "TargetID": 93884, + "Directional": false + }] + }, { + "ID": 4378, + "SourceStructureID": 7024, + "TargetStructureID": 48516, + "Label": "7024-48516 via Gap Junction from 48576 -> 48569, 93999 -> 136225", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48576, + "TargetID": 48569, + "Directional": false + }, { + "SourceID": 93999, + "TargetID": 136225, + "Directional": false + }] + }, { + "ID": 4379, + "SourceStructureID": 7024, + "TargetStructureID": 87294, + "Label": "7024-87294 via Adherens from 114152 -> 114153", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 114152, + "TargetID": 114153, + "Directional": false + }] + }, { + "ID": 4380, + "SourceStructureID": 93881, + "TargetStructureID": 7024, + "Label": "93881-7024 via Gap Junction from 93882 -> 93880", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93882, + "TargetID": 93880, + "Directional": false + }] + }, { + "ID": 4381, + "SourceStructureID": 118258, + "TargetStructureID": 7024, + "Label": "118258-7024 via Gap Junction from 118259 -> 118257", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118259, + "TargetID": 118257, + "Directional": false + }] + }, { + "ID": 4382, + "SourceStructureID": 8037, + "TargetStructureID": 7040, + "Label": "8037-7040 via Touch from 136166 -> 136165", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 136166, + "TargetID": 136165, + "Directional": false + }] + }, { + "ID": 4383, + "SourceStructureID": 8040, + "TargetStructureID": 7040, + "Label": "8040-7040 via Gap Junction from 93736 -> 93735, 93739 -> 93738, 93747 -> 93742, 120820 -> 93741", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93736, + "TargetID": 93735, + "Directional": false + }, { + "SourceID": 93739, + "TargetID": 93738, + "Directional": false + }, { + "SourceID": 93747, + "TargetID": 93742, + "Directional": false + }, { + "SourceID": 120820, + "TargetID": 93741, + "Directional": false + }] + }, { + "ID": 4384, + "SourceStructureID": 8040, + "TargetStructureID": 7040, + "Label": "8040-7040 via Unknown from 93677 -> 93676", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93677, + "TargetID": 93676, + "Directional": false + }] + }, { + "ID": 4385, + "SourceStructureID": 64939, + "TargetStructureID": 7040, + "Label": "64939-7040 via Gap Junction from 93653 -> 93652", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93653, + "TargetID": 93652, + "Directional": false + }] + }, { + "ID": 4386, + "SourceStructureID": 64939, + "TargetStructureID": 7040, + "Label": "64939-7040 via Touch from 93659 -> 93660", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 93659, + "TargetID": 93660, + "Directional": false + }] + }, { + "ID": 4387, + "SourceStructureID": 7040, + "TargetStructureID": 93647, + "Label": "7040-93647 via Adherens from 93651 -> 93650", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93651, + "TargetID": 93650, + "Directional": false + }] + }, { + "ID": 4388, + "SourceStructureID": 93665, + "TargetStructureID": 7040, + "Label": "93665-7040 via Adherens from 93669 -> 93668", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93669, + "TargetID": 93668, + "Directional": false + }] + }, { + "ID": 4389, + "SourceStructureID": 93673, + "TargetStructureID": 7040, + "Label": "93673-7040 via Adherens from 93674 -> 93672", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93674, + "TargetID": 93672, + "Directional": false + }] + }, { + "ID": 4390, + "SourceStructureID": 93679, + "TargetStructureID": 7040, + "Label": "93679-7040 via Gap Junction from 93680 -> 93678", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93680, + "TargetID": 93678, + "Directional": false + }] + }, { + "ID": 4391, + "SourceStructureID": 93685, + "TargetStructureID": 7040, + "Label": "93685-7040 via Unknown from 93686 -> 93684", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93686, + "TargetID": 93684, + "Directional": false + }] + }, { + "ID": 4392, + "SourceStructureID": 7040, + "TargetStructureID": 93719, + "Label": "7040-93719 via Gap Junction from 93718 -> 93720", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93718, + "TargetID": 93720, + "Directional": false + }] + }, { + "ID": 4393, + "SourceStructureID": 7050, + "TargetStructureID": 7043, + "Label": "7050-7043 via Gap Junction from 24883 -> 81869, 118857 -> 118856, 131446 -> 118882", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24883, + "TargetID": 81869, + "Directional": false + }, { + "SourceID": 118857, + "TargetID": 118856, + "Directional": false + }, { + "SourceID": 131446, + "TargetID": 118882, + "Directional": false + }] + }, { + "ID": 4394, + "SourceStructureID": 7043, + "TargetStructureID": 8037, + "Label": "7043-8037 via Gap Junction from 37729 -> 37730, 118753 -> 118752, 118790 -> 118789, 118812 -> 118809", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 37729, + "TargetID": 37730, + "Directional": false + }, { + "SourceID": 118753, + "TargetID": 118752, + "Directional": false + }, { + "SourceID": 118790, + "TargetID": 118789, + "Directional": false + }, { + "SourceID": 118812, + "TargetID": 118809, + "Directional": false + }] + }, { + "ID": 4395, + "SourceStructureID": 7043, + "TargetStructureID": 8038, + "Label": "7043-8038 via Gap Junction from 89290 -> 68951", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89290, + "TargetID": 68951, + "Directional": false + }] + }, { + "ID": 4396, + "SourceStructureID": 7043, + "TargetStructureID": 12897, + "Label": "7043-12897 via Gap Junction from 131458 -> 131459", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131458, + "TargetID": 131459, + "Directional": false + }] + }, { + "ID": 4397, + "SourceStructureID": 7043, + "TargetStructureID": 56653, + "Label": "7043-56653 via Gap Junction from 118860 -> 118861", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118860, + "TargetID": 118861, + "Directional": false + }] + }, { + "ID": 4398, + "SourceStructureID": 89279, + "TargetStructureID": 7043, + "Label": "89279-7043 via Gap Junction from 89288 -> 89277", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89288, + "TargetID": 89277, + "Directional": false + }] + }, { + "ID": 4399, + "SourceStructureID": 118682, + "TargetStructureID": 7043, + "Label": "118682-7043 via Gap Junction from 118684 -> 118572", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118684, + "TargetID": 118572, + "Directional": false + }] + }, { + "ID": 4400, + "SourceStructureID": 7043, + "TargetStructureID": 118736, + "Label": "7043-118736 via Gap Junction from 118725 -> 118737, 118738 -> 118728", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118725, + "TargetID": 118737, + "Directional": false + }, { + "SourceID": 118738, + "TargetID": 118728, + "Directional": false + }] + }, { + "ID": 4401, + "SourceStructureID": 7050, + "TargetStructureID": 8037, + "Label": "7050-8037 via Gap Junction from 29778 -> 29779, 32398 -> 32390, 68909 -> 14324, 68911 -> 68910", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29778, + "TargetID": 29779, + "Directional": false + }, { + "SourceID": 32398, + "TargetID": 32390, + "Directional": false + }, { + "SourceID": 68909, + "TargetID": 14324, + "Directional": false + }, { + "SourceID": 68911, + "TargetID": 68910, + "Directional": false + }] + }, { + "ID": 4402, + "SourceStructureID": 8038, + "TargetStructureID": 7050, + "Label": "8038-7050 via Gap Junction from 68939 -> 68904, 113059 -> 113056", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 68939, + "TargetID": 68904, + "Directional": false + }, { + "SourceID": 113059, + "TargetID": 113056, + "Directional": false + }] + }, { + "ID": 4403, + "SourceStructureID": 8040, + "TargetStructureID": 7050, + "Label": "8040-7050 via Gap Junction from 35465 -> 24878", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 35465, + "TargetID": 24878, + "Directional": false + }] + }, { + "ID": 4404, + "SourceStructureID": 12897, + "TargetStructureID": 7050, + "Label": "12897-7050 via Gap Junction from 24679 -> 19501, 24727 -> 24580, 24745 -> 24713, 24845 -> 24844, 24846 -> 24843, 24875 -> 24874, 29658 -> 29657", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24679, + "TargetID": 19501, + "Directional": false + }, { + "SourceID": 24727, + "TargetID": 24580, + "Directional": false + }, { + "SourceID": 24745, + "TargetID": 24713, + "Directional": false + }, { + "SourceID": 24845, + "TargetID": 24844, + "Directional": false + }, { + "SourceID": 24846, + "TargetID": 24843, + "Directional": false + }, { + "SourceID": 24875, + "TargetID": 24874, + "Directional": false + }, { + "SourceID": 29658, + "TargetID": 29657, + "Directional": false + }] + }, { + "ID": 4405, + "SourceStructureID": 15796, + "TargetStructureID": 7050, + "Label": "15796-7050 via Touch from 55669 -> 55670", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 55669, + "TargetID": 55670, + "Directional": false + }] + }, { + "ID": 4406, + "SourceStructureID": 48516, + "TargetStructureID": 7050, + "Label": "48516-7050 via Gap Junction from 93789 -> 24880", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93789, + "TargetID": 24880, + "Directional": false + }] + }, { + "ID": 4407, + "SourceStructureID": 7050, + "TargetStructureID": 63089, + "Label": "7050-63089 via Gap Junction from 63092 -> 63093", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 63092, + "TargetID": 63093, + "Directional": false + }] + }, { + "ID": 4408, + "SourceStructureID": 7147, + "TargetStructureID": 7113, + "Label": "7147-7113 via Gap Junction from 29720 -> 29719, 29724 -> 29718", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 29720, + "TargetID": 29719, + "Directional": false + }, { + "SourceID": 29724, + "TargetID": 29718, + "Directional": false + }] + }, { + "ID": 4409, + "SourceStructureID": 12203, + "TargetStructureID": 7113, + "Label": "12203-7113 via Touch from 31369 -> 31370", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 31369, + "TargetID": 31370, + "Directional": false + }] + }, { + "ID": 4410, + "SourceStructureID": 15977, + "TargetStructureID": 7114, + "Label": "15977-7114 via Gap Junction from 33950 -> 20437, 33954 -> 26611, 135959 -> 135960, 135962 -> 135963", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 33950, + "TargetID": 20437, + "Directional": false + }, { + "SourceID": 33954, + "TargetID": 26611, + "Directional": false + }, { + "SourceID": 135959, + "TargetID": 135960, + "Directional": false + }, { + "SourceID": 135962, + "TargetID": 135963, + "Directional": false + }] + }, { + "ID": 4411, + "SourceStructureID": 7114, + "TargetStructureID": 88139, + "Label": "7114-88139 via Adherens from 88142 -> 88141", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88142, + "TargetID": 88141, + "Directional": false + }] + }, { + "ID": 4412, + "SourceStructureID": 7114, + "TargetStructureID": 115118, + "Label": "7114-115118 via Gap Junction from 124174 -> 124225", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 124174, + "TargetID": 124225, + "Directional": false + }] + }, { + "ID": 4413, + "SourceStructureID": 12897, + "TargetStructureID": 7139, + "Label": "12897-7139 via Touch from 24851 -> 24850", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 24851, + "TargetID": 24850, + "Directional": false + }] + }, { + "ID": 4414, + "SourceStructureID": 7147, + "TargetStructureID": 9769, + "Label": "7147-9769 via Touch from 52594 -> 52593", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 52594, + "TargetID": 52593, + "Directional": false + }] + }, { + "ID": 4415, + "SourceStructureID": 7147, + "TargetStructureID": 12897, + "Label": "7147-12897 via Gap Junction from 24636 -> 24635, 24639 -> 24638, 92806 -> 92808, 134415 -> 134412", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24636, + "TargetID": 24635, + "Directional": false + }, { + "SourceID": 24639, + "TargetID": 24638, + "Directional": false + }, { + "SourceID": 92806, + "TargetID": 92808, + "Directional": false + }, { + "SourceID": 134415, + "TargetID": 134412, + "Directional": false + }] + }, { + "ID": 4416, + "SourceStructureID": 7147, + "TargetStructureID": 16026, + "Label": "7147-16026 via Gap Junction from 91211 -> 91209, 91246 -> 91245", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91211, + "TargetID": 91209, + "Directional": false + }, { + "SourceID": 91246, + "TargetID": 91245, + "Directional": false + }] + }, { + "ID": 4417, + "SourceStructureID": 73722, + "TargetStructureID": 7147, + "Label": "73722-7147 via Gap Junction from 112281 -> 16067", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 112281, + "TargetID": 16067, + "Directional": false + }] + }, { + "ID": 4418, + "SourceStructureID": 91207, + "TargetStructureID": 7147, + "Label": "91207-7147 via Gap Junction from 91229 -> 91228", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91229, + "TargetID": 91228, + "Directional": false + }] + }, { + "ID": 4419, + "SourceStructureID": 7147, + "TargetStructureID": 122849, + "Label": "7147-122849 via Gap Junction from 130525 -> 130524", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130525, + "TargetID": 130524, + "Directional": false + }] + }, { + "ID": 4420, + "SourceStructureID": 7149, + "TargetStructureID": 15976, + "Label": "7149-15976 via Gap Junction from 57151 -> 36042, 93346 -> 93345, 93363 -> 93361, 121767 -> 93302", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57151, + "TargetID": 36042, + "Directional": false + }, { + "SourceID": 93346, + "TargetID": 93345, + "Directional": false + }, { + "SourceID": 93363, + "TargetID": 93361, + "Directional": false + }, { + "SourceID": 121767, + "TargetID": 93302, + "Directional": false + }] + }, { + "ID": 4421, + "SourceStructureID": 7149, + "TargetStructureID": 15976, + "Label": "7149-15976 via Unknown from 93349 -> 93348, 93612 -> 93611", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93349, + "TargetID": 93348, + "Directional": false + }, { + "SourceID": 93612, + "TargetID": 93611, + "Directional": false + }] + }, { + "ID": 4422, + "SourceStructureID": 7149, + "TargetStructureID": 121823, + "Label": "7149-121823 via Gap Junction from 121822 -> 121824", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121822, + "TargetID": 121824, + "Directional": false + }] + }, { + "ID": 4423, + "SourceStructureID": 121827, + "TargetStructureID": 7149, + "Label": "121827-7149 via Gap Junction from 121828 -> 121826", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121828, + "TargetID": 121826, + "Directional": false + }] + }, { + "ID": 4424, + "SourceStructureID": 7468, + "TargetStructureID": 7157, + "Label": "7468-7157 via Adherens from 31751 -> 31750", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 31751, + "TargetID": 31750, + "Directional": false + }] + }, { + "ID": 4425, + "SourceStructureID": 7468, + "TargetStructureID": 7157, + "Label": "7468-7157 via Gap Junction from 31753 -> 31752", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 31753, + "TargetID": 31752, + "Directional": false + }] + }, { + "ID": 4426, + "SourceStructureID": 7157, + "TargetStructureID": 33588, + "Label": "7157-33588 via Adherens from 33596 -> 33595", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 33596, + "TargetID": 33595, + "Directional": false + }] + }, { + "ID": 4427, + "SourceStructureID": 37295, + "TargetStructureID": 7157, + "Label": "37295-7157 via Gap Junction from 37301 -> 37302", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 37301, + "TargetID": 37302, + "Directional": false + }] + }, { + "ID": 4428, + "SourceStructureID": 7157, + "TargetStructureID": 55403, + "Label": "7157-55403 via Adherens from 55442 -> 55441", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 55442, + "TargetID": 55441, + "Directional": false + }] + }, { + "ID": 4429, + "SourceStructureID": 87667, + "TargetStructureID": 7157, + "Label": "87667-7157 via Gap Junction from 87676 -> 87675", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 87676, + "TargetID": 87675, + "Directional": false + }] + }, { + "ID": 4430, + "SourceStructureID": 7188, + "TargetStructureID": 19571, + "Label": "7188-19571 via Adherens from 8522 -> 22717, 22719 -> 8529, 22722 -> 22721", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 8522, + "TargetID": 22717, + "Directional": false + }, { + "SourceID": 22719, + "TargetID": 8529, + "Directional": false + }, { + "SourceID": 22722, + "TargetID": 22721, + "Directional": false + }] + }, { + "ID": 4431, + "SourceStructureID": 25155, + "TargetStructureID": 7225, + "Label": "25155-7225 via Gap Junction from 25177 -> 25176", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 25177, + "TargetID": 25176, + "Directional": false + }] + }, { + "ID": 4432, + "SourceStructureID": 38245, + "TargetStructureID": 7225, + "Label": "38245-7225 via Gap Junction from 39165 -> 39167", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 39165, + "TargetID": 39167, + "Directional": false + }] + }, { + "ID": 4433, + "SourceStructureID": 7231, + "TargetStructureID": 7231, + "Label": "7231-7231 via Adherens from 117033 -> 117032", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 117033, + "TargetID": 117032, + "Directional": false + }] + }, { + "ID": 4434, + "SourceStructureID": 7231, + "TargetStructureID": 15977, + "Label": "7231-15977 via Adherens from 116989 -> 116988", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116989, + "TargetID": 116988, + "Directional": false + }] + }, { + "ID": 4435, + "SourceStructureID": 7231, + "TargetStructureID": 15977, + "Label": "7231-15977 via Gap Junction from 116965 -> 116987", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116965, + "TargetID": 116987, + "Directional": false + }] + }, { + "ID": 4436, + "SourceStructureID": 7231, + "TargetStructureID": 15977, + "Label": "7231-15977 via Unknown from 117022 -> 117021", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117022, + "TargetID": 117021, + "Directional": false + }] + }, { + "ID": 4437, + "SourceStructureID": 7279, + "TargetStructureID": 117112, + "Label": "7279-117112 via Gap Junction from 123521 -> 123520", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123521, + "TargetID": 123520, + "Directional": false + }] + }, { + "ID": 4438, + "SourceStructureID": 7346, + "TargetStructureID": 7346, + "Label": "7346-7346 via Gap Junction from 43864 -> 43866, 44122 -> 43882, 45423 -> 45422", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 43864, + "TargetID": 43866, + "Directional": false + }, { + "SourceID": 44122, + "TargetID": 43882, + "Directional": false + }, { + "SourceID": 45423, + "TargetID": 45422, + "Directional": false + }] + }, { + "ID": 4439, + "SourceStructureID": 7880, + "TargetStructureID": 7346, + "Label": "7880-7346 via Gap Junction from 45190 -> 45139, 45307 -> 45308", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45190, + "TargetID": 45139, + "Directional": false + }, { + "SourceID": 45307, + "TargetID": 45308, + "Directional": false + }] + }, { + "ID": 4440, + "SourceStructureID": 11066, + "TargetStructureID": 7346, + "Label": "11066-7346 via Gap Junction from 43951 -> 43950", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 43951, + "TargetID": 43950, + "Directional": false + }] + }, { + "ID": 4441, + "SourceStructureID": 7346, + "TargetStructureID": 44095, + "Label": "7346-44095 via Gap Junction from 45415 -> 44097", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45415, + "TargetID": 44097, + "Directional": false + }] + }, { + "ID": 4442, + "SourceStructureID": 7346, + "TargetStructureID": 44117, + "Label": "7346-44117 via Gap Junction from 44116 -> 44118", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 44116, + "TargetID": 44118, + "Directional": false + }] + }, { + "ID": 4443, + "SourceStructureID": 158538, + "TargetStructureID": 7362, + "Label": "158538-7362 via Adherens from 158539 -> 117294", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 158539, + "TargetID": 117294, + "Directional": false + }] + }, { + "ID": 4444, + "SourceStructureID": 31710, + "TargetStructureID": 7468, + "Label": "31710-7468 via Gap Junction from 121299 -> 121298, 121302 -> 121301", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121299, + "TargetID": 121298, + "Directional": false + }, { + "SourceID": 121302, + "TargetID": 121301, + "Directional": false + }] + }, { + "ID": 4445, + "SourceStructureID": 82677, + "TargetStructureID": 7564, + "Label": "82677-7564 via Gap Junction from 114626 -> 29639", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 114626, + "TargetID": 29639, + "Directional": false + }] + }, { + "ID": 4446, + "SourceStructureID": 7568, + "TargetStructureID": 10945, + "Label": "7568-10945 via Adherens from 27045 -> 27046", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 27045, + "TargetID": 27046, + "Directional": false + }] + }, { + "ID": 4447, + "SourceStructureID": 137159, + "TargetStructureID": 7568, + "Label": "137159-7568 via Adherens from 147206 -> 27082", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 147206, + "TargetID": 27082, + "Directional": false + }] + }, { + "ID": 4448, + "SourceStructureID": 7576, + "TargetStructureID": 7576, + "Label": "7576-7576 via Adherens from 54974 -> 54973, 55002 -> 55001, 55089 -> 55090", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54974, + "TargetID": 54973, + "Directional": false + }, { + "SourceID": 55002, + "TargetID": 55001, + "Directional": false + }, { + "SourceID": 55089, + "TargetID": 55090, + "Directional": false + }] + }, { + "ID": 4449, + "SourceStructureID": 7576, + "TargetStructureID": 54913, + "Label": "7576-54913 via Gap Junction from 55059 -> 55060", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 55059, + "TargetID": 55060, + "Directional": false + }] + }, { + "ID": 4450, + "SourceStructureID": 135295, + "TargetStructureID": 7587, + "Label": "135295-7587 via Gap Junction from 135296 -> 135294", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 135296, + "TargetID": 135294, + "Directional": false + }] + }, { + "ID": 4451, + "SourceStructureID": 9769, + "TargetStructureID": 7594, + "Label": "9769-7594 via Adherens from 46856 -> 46855", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 46856, + "TargetID": 46855, + "Directional": false + }] + }, { + "ID": 4452, + "SourceStructureID": 7594, + "TargetStructureID": 9769, + "Label": "7594-9769 via Touch from 52408 -> 52407", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 52408, + "TargetID": 52407, + "Directional": false + }] + }, { + "ID": 4453, + "SourceStructureID": 7850, + "TargetStructureID": 68153, + "Label": "7850-68153 via Adherens from 70037 -> 70036", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70037, + "TargetID": 70036, + "Directional": false + }] + }, { + "ID": 4454, + "SourceStructureID": 7859, + "TargetStructureID": 9787, + "Label": "7859-9787 via Gap Junction from 84682 -> 84683, 84684 -> 56330, 84685 -> 56330", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 84682, + "TargetID": 84683, + "Directional": false + }, { + "SourceID": 84684, + "TargetID": 56330, + "Directional": false + }, { + "SourceID": 84685, + "TargetID": 56330, + "Directional": false + }] + }, { + "ID": 4455, + "SourceStructureID": 28950, + "TargetStructureID": 7859, + "Label": "28950-7859 via Gap Junction from 84729 -> 84728", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 84729, + "TargetID": 84728, + "Directional": false + }] + }, { + "ID": 4456, + "SourceStructureID": 64665, + "TargetStructureID": 7859, + "Label": "64665-7859 via Adherens from 64666 -> 64663", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64666, + "TargetID": 64663, + "Directional": false + }] + }, { + "ID": 4457, + "SourceStructureID": 84825, + "TargetStructureID": 7859, + "Label": "84825-7859 via Touch from 84826 -> 84824", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 84826, + "TargetID": 84824, + "Directional": false + }] + }, { + "ID": 4458, + "SourceStructureID": 7861, + "TargetStructureID": 52152, + "Label": "7861-52152 via Gap Junction from 52153 -> 52154", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 52153, + "TargetID": 52154, + "Directional": false + }] + }, { + "ID": 4459, + "SourceStructureID": 7861, + "TargetStructureID": 82677, + "Label": "7861-82677 via Adherens from 84070 -> 84076", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84070, + "TargetID": 84076, + "Directional": false + }] + }, { + "ID": 4460, + "SourceStructureID": 7861, + "TargetStructureID": 82677, + "Label": "7861-82677 via Gap Junction from 61750 -> 114622, 84016 -> 61749, 84072 -> 84071, 114624 -> 114623, 114638 -> 114637, 118006 -> 91495", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 61750, + "TargetID": 114622, + "Directional": false + }, { + "SourceID": 84016, + "TargetID": 61749, + "Directional": false + }, { + "SourceID": 84072, + "TargetID": 84071, + "Directional": false + }, { + "SourceID": 114624, + "TargetID": 114623, + "Directional": false + }, { + "SourceID": 114638, + "TargetID": 114637, + "Directional": false + }, { + "SourceID": 118006, + "TargetID": 91495, + "Directional": false + }] + }, { + "ID": 4461, + "SourceStructureID": 7861, + "TargetStructureID": 99639, + "Label": "7861-99639 via Gap Junction from 121015 -> 101273", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121015, + "TargetID": 101273, + "Directional": false + }] + }, { + "ID": 4462, + "SourceStructureID": 7861, + "TargetStructureID": 117990, + "Label": "7861-117990 via Gap Junction from 117997 -> 117996", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117997, + "TargetID": 117996, + "Directional": false + }] + }, { + "ID": 4463, + "SourceStructureID": 122415, + "TargetStructureID": 7861, + "Label": "122415-7861 via Gap Junction from 122416 -> 122414", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122416, + "TargetID": 122414, + "Directional": false + }] + }, { + "ID": 4464, + "SourceStructureID": 7861, + "TargetStructureID": 122420, + "Label": "7861-122420 via Gap Junction from 122419 -> 122421", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122419, + "TargetID": 122421, + "Directional": false + }] + }, { + "ID": 4465, + "SourceStructureID": 122424, + "TargetStructureID": 7861, + "Label": "122424-7861 via Gap Junction from 122425 -> 122423", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122425, + "TargetID": 122423, + "Directional": false + }] + }, { + "ID": 4466, + "SourceStructureID": 7861, + "TargetStructureID": 137070, + "Label": "7861-137070 via Adherens from 137072 -> 137071", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 137072, + "TargetID": 137071, + "Directional": false + }] + }, { + "ID": 4467, + "SourceStructureID": 8033, + "TargetStructureID": 9769, + "Label": "8033-9769 via Touch from 29922 -> 29921", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 29922, + "TargetID": 29921, + "Directional": false + }] + }, { + "ID": 4468, + "SourceStructureID": 66111, + "TargetStructureID": 8033, + "Label": "66111-8033 via Adherens from 68590 -> 68591", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68590, + "TargetID": 68591, + "Directional": false + }] + }, { + "ID": 4469, + "SourceStructureID": 8038, + "TargetStructureID": 8037, + "Label": "8038-8037 via Gap Junction from 68971 -> 68970, 136200 -> 68925", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 68971, + "TargetID": 68970, + "Directional": false + }, { + "SourceID": 136200, + "TargetID": 68925, + "Directional": false + }] + }, { + "ID": 4470, + "SourceStructureID": 9693, + "TargetStructureID": 8037, + "Label": "9693-8037 via Adherens from 119773 -> 119774", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 119773, + "TargetID": 119774, + "Directional": false + }] + }, { + "ID": 4471, + "SourceStructureID": 9769, + "TargetStructureID": 8037, + "Label": "9769-8037 via Touch from 29891 -> 29890", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 29891, + "TargetID": 29890, + "Directional": false + }] + }, { + "ID": 4472, + "SourceStructureID": 8037, + "TargetStructureID": 12897, + "Label": "8037-12897 via Gap Junction from 16408 -> 24707, 24694 -> 24606, 24699 -> 24598, 24716 -> 24607, 24744 -> 15732", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 16408, + "TargetID": 24707, + "Directional": false + }, { + "SourceID": 24694, + "TargetID": 24606, + "Directional": false + }, { + "SourceID": 24699, + "TargetID": 24598, + "Directional": false + }, { + "SourceID": 24716, + "TargetID": 24607, + "Directional": false + }, { + "SourceID": 24744, + "TargetID": 15732, + "Directional": false + }] + }, { + "ID": 4473, + "SourceStructureID": 8037, + "TargetStructureID": 25410, + "Label": "8037-25410 via Adherens from 25427 -> 25419", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 25427, + "TargetID": 25419, + "Directional": false + }] + }, { + "ID": 4474, + "SourceStructureID": 50449, + "TargetStructureID": 8037, + "Label": "50449-8037 via Gap Junction from 50520 -> 120858, 120855 -> 120854, 120857 -> 120856, 148212 -> 148215", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50520, + "TargetID": 120858, + "Directional": false + }, { + "SourceID": 120855, + "TargetID": 120854, + "Directional": false + }, { + "SourceID": 120857, + "TargetID": 120856, + "Directional": false + }, { + "SourceID": 148212, + "TargetID": 148215, + "Directional": false + }] + }, { + "ID": 4475, + "SourceStructureID": 132773, + "TargetStructureID": 8037, + "Label": "132773-8037 via Adherens from 132777 -> 88897", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 132777, + "TargetID": 88897, + "Directional": false + }] + }, { + "ID": 4476, + "SourceStructureID": 132773, + "TargetStructureID": 8037, + "Label": "132773-8037 via Gap Junction from 132778 -> 130628", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132778, + "TargetID": 130628, + "Directional": false + }] + }, { + "ID": 4477, + "SourceStructureID": 8038, + "TargetStructureID": 8040, + "Label": "8038-8040 via Gap Junction from 48598 -> 48596, 113049 -> 48628", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48598, + "TargetID": 48596, + "Directional": false + }, { + "SourceID": 113049, + "TargetID": 48628, + "Directional": false + }] + }, { + "ID": 4478, + "SourceStructureID": 11246, + "TargetStructureID": 8038, + "Label": "11246-8038 via Adherens from 68963 -> 68962", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68963, + "TargetID": 68962, + "Directional": false + }] + }, { + "ID": 4479, + "SourceStructureID": 32804, + "TargetStructureID": 8038, + "Label": "32804-8038 via Touch from 32814 -> 32815", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 32814, + "TargetID": 32815, + "Directional": false + }] + }, { + "ID": 4480, + "SourceStructureID": 50449, + "TargetStructureID": 8038, + "Label": "50449-8038 via Gap Junction from 50477 -> 50478", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 50477, + "TargetID": 50478, + "Directional": false + }] + }, { + "ID": 4481, + "SourceStructureID": 70500, + "TargetStructureID": 8038, + "Label": "70500-8038 via Adherens from 129063 -> 129064, 129065 -> 129066", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129063, + "TargetID": 129064, + "Directional": false + }, { + "SourceID": 129065, + "TargetID": 129066, + "Directional": false + }] + }, { + "ID": 4482, + "SourceStructureID": 8038, + "TargetStructureID": 70500, + "Label": "8038-70500 via Gap Junction from 129062 -> 129051", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 129062, + "TargetID": 129051, + "Directional": false + }] + }, { + "ID": 4483, + "SourceStructureID": 8038, + "TargetStructureID": 118654, + "Label": "8038-118654 via Gap Junction from 118676 -> 118657", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118676, + "TargetID": 118657, + "Directional": false + }] + }, { + "ID": 4484, + "SourceStructureID": 8040, + "TargetStructureID": 8040, + "Label": "8040-8040 via Gap Junction from 120818 -> 120819", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120818, + "TargetID": 120819, + "Directional": false + }] + }, { + "ID": 4485, + "SourceStructureID": 8040, + "TargetStructureID": 64939, + "Label": "8040-64939 via Adherens from 48657 -> 65452", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 48657, + "TargetID": 65452, + "Directional": false + }] + }, { + "ID": 4486, + "SourceStructureID": 8040, + "TargetStructureID": 64939, + "Label": "8040-64939 via Gap Junction from 93631 -> 93630, 120823 -> 120824", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93631, + "TargetID": 93630, + "Directional": false + }, { + "SourceID": 120823, + "TargetID": 120824, + "Directional": false + }] + }, { + "ID": 4487, + "SourceStructureID": 102459, + "TargetStructureID": 8080, + "Label": "102459-8080 via Adherens from 129544 -> 129543", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 129544, + "TargetID": 129543, + "Directional": false + }] + }, { + "ID": 4488, + "SourceStructureID": 61672, + "TargetStructureID": 8575, + "Label": "61672-8575 via Gap Junction from 61674 -> 61671", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 61674, + "TargetID": 61671, + "Directional": false + }] + }, { + "ID": 4489, + "SourceStructureID": 61752, + "TargetStructureID": 8575, + "Label": "61752-8575 via Gap Junction from 61753 -> 61751", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 61753, + "TargetID": 61751, + "Directional": false + }] + }, { + "ID": 4490, + "SourceStructureID": 62842, + "TargetStructureID": 8575, + "Label": "62842-8575 via Adherens from 62843 -> 62841", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 62843, + "TargetID": 62841, + "Directional": false + }] + }, { + "ID": 4491, + "SourceStructureID": 8576, + "TargetStructureID": 8576, + "Label": "8576-8576 via Postsynapse from 20050 -> 37725", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 20050, + "TargetID": 37725, + "Directional": false + }] + }, { + "ID": 4492, + "SourceStructureID": 8579, + "TargetStructureID": 8577, + "Label": "8579-8577 via Adherens from 62905 -> 62904", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 62905, + "TargetID": 62904, + "Directional": false + }] + }, { + "ID": 4493, + "SourceStructureID": 8579, + "TargetStructureID": 8577, + "Label": "8579-8577 via Unknown from 132850 -> 132849", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132850, + "TargetID": 132849, + "Directional": false + }] + }, { + "ID": 4494, + "SourceStructureID": 79071, + "TargetStructureID": 8577, + "Label": "79071-8577 via Neuroglial adherens from 79331 -> 79332", + "Type": "Neuroglial adherens", + "Directional": false, + "Links": [{ + "SourceID": 79331, + "TargetID": 79332, + "Directional": false + }] + }, { + "ID": 4495, + "SourceStructureID": 8577, + "TargetStructureID": 79091, + "Label": "8577-79091 via Neuroglial adherens from 79404 -> 79403", + "Type": "Neuroglial adherens", + "Directional": false, + "Links": [{ + "SourceID": 79404, + "TargetID": 79403, + "Directional": false + }] + }, { + "ID": 4496, + "SourceStructureID": 8579, + "TargetStructureID": 8580, + "Label": "8579-8580 via Gap Junction from 72104 -> 72103", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 72104, + "TargetID": 72103, + "Directional": false + }] + }, { + "ID": 4497, + "SourceStructureID": 8579, + "TargetStructureID": 16026, + "Label": "8579-16026 via Adherens from 134329 -> 134328, 134331 -> 134330", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134329, + "TargetID": 134328, + "Directional": false + }, { + "SourceID": 134331, + "TargetID": 134330, + "Directional": false + }] + }, { + "ID": 4498, + "SourceStructureID": 8579, + "TargetStructureID": 16026, + "Label": "8579-16026 via Unknown from 134586 -> 134585, 134587 -> 134588", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134586, + "TargetID": 134585, + "Directional": false + }, { + "SourceID": 134587, + "TargetID": 134588, + "Directional": false + }] + }, { + "ID": 4499, + "SourceStructureID": 20136, + "TargetStructureID": 8579, + "Label": "20136-8579 via Unknown from 109077 -> 109078", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109077, + "TargetID": 109078, + "Directional": false + }] + }, { + "ID": 4500, + "SourceStructureID": 8579, + "TargetStructureID": 29702, + "Label": "8579-29702 via Adherens from 76076 -> 76077", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76076, + "TargetID": 76077, + "Directional": false + }] + }, { + "ID": 4501, + "SourceStructureID": 8579, + "TargetStructureID": 61864, + "Label": "8579-61864 via Adherens from 19803 -> 66331, 65490 -> 19804", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 19803, + "TargetID": 66331, + "Directional": false + }, { + "SourceID": 65490, + "TargetID": 19804, + "Directional": false + }] + }, { + "ID": 4502, + "SourceStructureID": 62933, + "TargetStructureID": 8579, + "Label": "62933-8579 via Adherens from 62936 -> 62937", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 62936, + "TargetID": 62937, + "Directional": false + }] + }, { + "ID": 4503, + "SourceStructureID": 11030, + "TargetStructureID": 8580, + "Label": "11030-8580 via Touch from 59882 -> 59881", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 59882, + "TargetID": 59881, + "Directional": false + }] + }, { + "ID": 4504, + "SourceStructureID": 11043, + "TargetStructureID": 8580, + "Label": "11043-8580 via Touch from 59893 -> 59892", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 59893, + "TargetID": 59892, + "Directional": false + }] + }, { + "ID": 4505, + "SourceStructureID": 72395, + "TargetStructureID": 8580, + "Label": "72395-8580 via Unknown from 72412 -> 72413", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 72412, + "TargetID": 72413, + "Directional": false + }] + }, { + "ID": 4506, + "SourceStructureID": 72483, + "TargetStructureID": 8580, + "Label": "72483-8580 via Adherens from 72485 -> 72484", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72485, + "TargetID": 72484, + "Directional": false + }] + }, { + "ID": 4507, + "SourceStructureID": 73678, + "TargetStructureID": 8580, + "Label": "73678-8580 via Adherens from 73679 -> 73677", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73679, + "TargetID": 73677, + "Directional": false + }] + }, { + "ID": 4508, + "SourceStructureID": 75721, + "TargetStructureID": 8580, + "Label": "75721-8580 via Adherens from 75723 -> 75720, 75725 -> 75724", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75723, + "TargetID": 75720, + "Directional": false + }, { + "SourceID": 75725, + "TargetID": 75724, + "Directional": false + }] + }, { + "ID": 4509, + "SourceStructureID": 31161, + "TargetStructureID": 8588, + "Label": "31161-8588 via Touch from 32712 -> 32711", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 32712, + "TargetID": 32711, + "Directional": false + }] + }, { + "ID": 4510, + "SourceStructureID": 66946, + "TargetStructureID": 8588, + "Label": "66946-8588 via Adherens from 83324 -> 67415", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83324, + "TargetID": 67415, + "Directional": false + }] + }, { + "ID": 4511, + "SourceStructureID": 82271, + "TargetStructureID": 8588, + "Label": "82271-8588 via Adherens from 82276 -> 80587", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82276, + "TargetID": 80587, + "Directional": false + }] + }, { + "ID": 4512, + "SourceStructureID": 8589, + "TargetStructureID": 8589, + "Label": "8589-8589 via Gap Junction from 70453 -> 70452, 71975 -> 71974", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 70453, + "TargetID": 70452, + "Directional": false + }, { + "SourceID": 71975, + "TargetID": 71974, + "Directional": false + }] + }, { + "ID": 4513, + "SourceStructureID": 70398, + "TargetStructureID": 8589, + "Label": "70398-8589 via Adherens from 70399 -> 70397", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70399, + "TargetID": 70397, + "Directional": false + }] + }, { + "ID": 4514, + "SourceStructureID": 8589, + "TargetStructureID": 70403, + "Label": "8589-70403 via Adherens from 70405 -> 70404", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70405, + "TargetID": 70404, + "Directional": false + }] + }, { + "ID": 4515, + "SourceStructureID": 8589, + "TargetStructureID": 70444, + "Label": "8589-70444 via Adherens from 71313 -> 71312, 71314 -> 71315", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71313, + "TargetID": 71312, + "Directional": false + }, { + "SourceID": 71314, + "TargetID": 71315, + "Directional": false + }] + }, { + "ID": 4516, + "SourceStructureID": 8589, + "TargetStructureID": 70444, + "Label": "8589-70444 via Gap Junction from 70447 -> 70448", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 70447, + "TargetID": 70448, + "Directional": false + }] + }, { + "ID": 4517, + "SourceStructureID": 8589, + "TargetStructureID": 70462, + "Label": "8589-70462 via Adherens from 70392 -> 70463", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70392, + "TargetID": 70463, + "Directional": false + }] + }, { + "ID": 4518, + "SourceStructureID": 8589, + "TargetStructureID": 71318, + "Label": "8589-71318 via Adherens from 71320 -> 71319", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71320, + "TargetID": 71319, + "Directional": false + }] + }, { + "ID": 4519, + "SourceStructureID": 8589, + "TargetStructureID": 71322, + "Label": "8589-71322 via Adherens from 71390 -> 71391", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71390, + "TargetID": 71391, + "Directional": false + }] + }, { + "ID": 4520, + "SourceStructureID": 71411, + "TargetStructureID": 8589, + "Label": "71411-8589 via Gap Junction from 71412 -> 71409", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71412, + "TargetID": 71409, + "Directional": false + }] + }, { + "ID": 4521, + "SourceStructureID": 71597, + "TargetStructureID": 8589, + "Label": "71597-8589 via Adherens from 71750 -> 71749", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71750, + "TargetID": 71749, + "Directional": false + }] + }, { + "ID": 4522, + "SourceStructureID": 8589, + "TargetStructureID": 71625, + "Label": "8589-71625 via Adherens from 71745 -> 71746", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71745, + "TargetID": 71746, + "Directional": false + }] + }, { + "ID": 4523, + "SourceStructureID": 16026, + "TargetStructureID": 8720, + "Label": "16026-8720 via Unknown from 114652 -> 134419", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114652, + "TargetID": 134419, + "Directional": false + }] + }, { + "ID": 4524, + "SourceStructureID": 59974, + "TargetStructureID": 8720, + "Label": "59974-8720 via Adherens from 59975 -> 59973", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59975, + "TargetID": 59973, + "Directional": false + }] + }, { + "ID": 4525, + "SourceStructureID": 9129, + "TargetStructureID": 35526, + "Label": "9129-35526 via Adherens from 64332 -> 64333", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64332, + "TargetID": 64333, + "Directional": false + }] + }, { + "ID": 4526, + "SourceStructureID": 9129, + "TargetStructureID": 74205, + "Label": "9129-74205 via Adherens from 74207 -> 74208", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74207, + "TargetID": 74208, + "Directional": false + }] + }, { + "ID": 4527, + "SourceStructureID": 122829, + "TargetStructureID": 9129, + "Label": "122829-9129 via Touch from 122847 -> 122846", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 122847, + "TargetID": 122846, + "Directional": false + }] + }, { + "ID": 4528, + "SourceStructureID": 9260, + "TargetStructureID": 9260, + "Label": "9260-9260 via Adherens from 39676 -> 39675", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 39676, + "TargetID": 39675, + "Directional": false + }] + }, { + "ID": 4529, + "SourceStructureID": 9260, + "TargetStructureID": 39285, + "Label": "9260-39285 via Unknown from 93093 -> 93092", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93093, + "TargetID": 93092, + "Directional": false + }] + }, { + "ID": 4530, + "SourceStructureID": 15394, + "TargetStructureID": 9693, + "Label": "15394-9693 via Adherens from 47699 -> 47698", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 47699, + "TargetID": 47698, + "Directional": false + }] + }, { + "ID": 4531, + "SourceStructureID": 9693, + "TargetStructureID": 15394, + "Label": "9693-15394 via Unknown from 120115 -> 120116", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 120115, + "TargetID": 120116, + "Directional": false + }] + }, { + "ID": 4532, + "SourceStructureID": 9693, + "TargetStructureID": 32739, + "Label": "9693-32739 via Adherens from 119829 -> 119833", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 119829, + "TargetID": 119833, + "Directional": false + }] + }, { + "ID": 4533, + "SourceStructureID": 134659, + "TargetStructureID": 9693, + "Label": "134659-9693 via Adherens from 134661 -> 119783", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134661, + "TargetID": 119783, + "Directional": false + }] + }, { + "ID": 4534, + "SourceStructureID": 9693, + "TargetStructureID": 134674, + "Label": "9693-134674 via Adherens from 134673 -> 134675", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134673, + "TargetID": 134675, + "Directional": false + }] + }, { + "ID": 4535, + "SourceStructureID": 134687, + "TargetStructureID": 9693, + "Label": "134687-9693 via Adherens from 134689 -> 134683", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134689, + "TargetID": 134683, + "Directional": false + }] + }, { + "ID": 4536, + "SourceStructureID": 9693, + "TargetStructureID": 134718, + "Label": "9693-134718 via Unknown from 134998 -> 134997", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134998, + "TargetID": 134997, + "Directional": false + }] + }, { + "ID": 4537, + "SourceStructureID": 45220, + "TargetStructureID": 9769, + "Label": "45220-9769 via Gap Junction from 45327 -> 45219", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45327, + "TargetID": 45219, + "Directional": false + }] + }, { + "ID": 4538, + "SourceStructureID": 9769, + "TargetStructureID": 45326, + "Label": "9769-45326 via Gap Junction from 45325 -> 45329", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45325, + "TargetID": 45329, + "Directional": false + }] + }, { + "ID": 4539, + "SourceStructureID": 45358, + "TargetStructureID": 9769, + "Label": "45358-9769 via Gap Junction from 45359 -> 45357", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 45359, + "TargetID": 45357, + "Directional": false + }] + }, { + "ID": 4540, + "SourceStructureID": 9769, + "TargetStructureID": 50982, + "Label": "9769-50982 via Adherens from 52387 -> 52388", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 52387, + "TargetID": 52388, + "Directional": false + }] + }, { + "ID": 4541, + "SourceStructureID": 9769, + "TargetStructureID": 53421, + "Label": "9769-53421 via Adherens from 53424 -> 53423", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 53424, + "TargetID": 53423, + "Directional": false + }] + }, { + "ID": 4542, + "SourceStructureID": 54264, + "TargetStructureID": 9769, + "Label": "54264-9769 via Adherens from 54265 -> 23928", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 54265, + "TargetID": 23928, + "Directional": false + }] + }, { + "ID": 4543, + "SourceStructureID": 74047, + "TargetStructureID": 9769, + "Label": "74047-9769 via Adherens from 74339 -> 74340, 74342 -> 74343", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74339, + "TargetID": 74340, + "Directional": false + }, { + "SourceID": 74342, + "TargetID": 74343, + "Directional": false + }] + }, { + "ID": 4544, + "SourceStructureID": 9769, + "TargetStructureID": 74047, + "Label": "9769-74047 via Unknown from 74332 -> 74327", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74332, + "TargetID": 74327, + "Directional": false + }] + }, { + "ID": 4545, + "SourceStructureID": 9769, + "TargetStructureID": 84401, + "Label": "9769-84401 via Adherens from 84404 -> 84403", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84404, + "TargetID": 84403, + "Directional": false + }] + }, { + "ID": 4546, + "SourceStructureID": 56211, + "TargetStructureID": 9787, + "Label": "56211-9787 via Gap Junction from 56238 -> 56239, 85606 -> 56381", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56238, + "TargetID": 56239, + "Directional": false + }, { + "SourceID": 85606, + "TargetID": 56381, + "Directional": false + }] + }, { + "ID": 4547, + "SourceStructureID": 56328, + "TargetStructureID": 9787, + "Label": "56328-9787 via Gap Junction from 56329 -> 56327", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56329, + "TargetID": 56327, + "Directional": false + }] + }, { + "ID": 4548, + "SourceStructureID": 56598, + "TargetStructureID": 9787, + "Label": "56598-9787 via Gap Junction from 75640 -> 75639", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 75640, + "TargetID": 75639, + "Directional": false + }] + }, { + "ID": 4549, + "SourceStructureID": 59229, + "TargetStructureID": 9787, + "Label": "59229-9787 via Gap Junction from 85537 -> 56379", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 85537, + "TargetID": 56379, + "Directional": false + }] + }, { + "ID": 4550, + "SourceStructureID": 85508, + "TargetStructureID": 9787, + "Label": "85508-9787 via Gap Junction from 85509 -> 56376", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 85509, + "TargetID": 56376, + "Directional": false + }] + }, { + "ID": 4551, + "SourceStructureID": 85517, + "TargetStructureID": 9787, + "Label": "85517-9787 via Gap Junction from 85518 -> 56377", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 85518, + "TargetID": 56377, + "Directional": false + }] + }, { + "ID": 4552, + "SourceStructureID": 85604, + "TargetStructureID": 9787, + "Label": "85604-9787 via Gap Junction from 85605 -> 56380", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 85605, + "TargetID": 56380, + "Directional": false + }] + }, { + "ID": 4553, + "SourceStructureID": 85607, + "TargetStructureID": 9787, + "Label": "85607-9787 via Gap Junction from 85608 -> 56382", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 85608, + "TargetID": 56382, + "Directional": false + }] + }, { + "ID": 4554, + "SourceStructureID": 49185, + "TargetStructureID": 10559, + "Label": "49185-10559 via Adherens from 49189 -> 49190, 49191 -> 49192", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 49189, + "TargetID": 49190, + "Directional": false + }, { + "SourceID": 49191, + "TargetID": 49192, + "Directional": false + }] + }, { + "ID": 4555, + "SourceStructureID": 39602, + "TargetStructureID": 10625, + "Label": "39602-10625 via Adherens from 64338 -> 64337", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64338, + "TargetID": 64337, + "Directional": false + }] + }, { + "ID": 4556, + "SourceStructureID": 96788, + "TargetStructureID": 10872, + "Label": "96788-10872 via Unknown from 96803 -> 96804", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96803, + "TargetID": 96804, + "Directional": false + }] + }, { + "ID": 4557, + "SourceStructureID": 98127, + "TargetStructureID": 10957, + "Label": "98127-10957 via Unknown from 98876 -> 98877", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98876, + "TargetID": 98877, + "Directional": false + }] + }, { + "ID": 4558, + "SourceStructureID": 10959, + "TargetStructureID": 10959, + "Label": "10959-10959 via Unknown from 94441 -> 94440", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94441, + "TargetID": 94440, + "Directional": false + }] + }, { + "ID": 4559, + "SourceStructureID": 10959, + "TargetStructureID": 86751, + "Label": "10959-86751 via Unknown from 86754 -> 86753", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86754, + "TargetID": 86753, + "Directional": false + }] + }, { + "ID": 4560, + "SourceStructureID": 86775, + "TargetStructureID": 10959, + "Label": "86775-10959 via Adherens from 86776 -> 86774", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86776, + "TargetID": 86774, + "Directional": false + }] + }, { + "ID": 4561, + "SourceStructureID": 86783, + "TargetStructureID": 10959, + "Label": "86783-10959 via Adherens from 86785 -> 86781", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86785, + "TargetID": 86781, + "Directional": false + }] + }, { + "ID": 4562, + "SourceStructureID": 10959, + "TargetStructureID": 86816, + "Label": "10959-86816 via Adherens from 86835 -> 86836", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86835, + "TargetID": 86836, + "Directional": false + }] + }, { + "ID": 4563, + "SourceStructureID": 86838, + "TargetStructureID": 10959, + "Label": "86838-10959 via Adherens from 86839 -> 86837", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86839, + "TargetID": 86837, + "Directional": false + }] + }, { + "ID": 4564, + "SourceStructureID": 86891, + "TargetStructureID": 10959, + "Label": "86891-10959 via Adherens from 86892 -> 86893", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86892, + "TargetID": 86893, + "Directional": false + }] + }, { + "ID": 4565, + "SourceStructureID": 15394, + "TargetStructureID": 10960, + "Label": "15394-10960 via Touch from 41017 -> 41018", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 41017, + "TargetID": 41018, + "Directional": false + }] + }, { + "ID": 4566, + "SourceStructureID": 10963, + "TargetStructureID": 64777, + "Label": "10963-64777 via Touch from 64810 -> 64809", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 64810, + "TargetID": 64809, + "Directional": false + }] + }, { + "ID": 4567, + "SourceStructureID": 99650, + "TargetStructureID": 11037, + "Label": "99650-11037 via Unknown from 99660 -> 99661", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 99660, + "TargetID": 99661, + "Directional": false + }] + }, { + "ID": 4568, + "SourceStructureID": 11044, + "TargetStructureID": 15796, + "Label": "11044-15796 via Touch from 32764 -> 32765", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 32764, + "TargetID": 32765, + "Directional": false + }] + }, { + "ID": 4569, + "SourceStructureID": 11074, + "TargetStructureID": 98618, + "Label": "11074-98618 via Gap Junction from 98647 -> 98646", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98647, + "TargetID": 98646, + "Directional": false + }] + }, { + "ID": 4570, + "SourceStructureID": 11092, + "TargetStructureID": 95072, + "Label": "11092-95072 via Gap Junction from 95075 -> 95076", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 95075, + "TargetID": 95076, + "Directional": false + }] + }, { + "ID": 4571, + "SourceStructureID": 11092, + "TargetStructureID": 123499, + "Label": "11092-123499 via Gap Junction from 123505 -> 123506", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123505, + "TargetID": 123506, + "Directional": false + }] + }, { + "ID": 4572, + "SourceStructureID": 11229, + "TargetStructureID": 13624, + "Label": "11229-13624 via Adherens from 15327 -> 15326", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 15327, + "TargetID": 15326, + "Directional": false + }] + }, { + "ID": 4573, + "SourceStructureID": 11229, + "TargetStructureID": 15977, + "Label": "11229-15977 via Gap Junction from 135683 -> 135682, 135684 -> 135685", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 135683, + "TargetID": 135682, + "Directional": false + }, { + "SourceID": 135684, + "TargetID": 135685, + "Directional": false + }] + }, { + "ID": 4574, + "SourceStructureID": 35418, + "TargetStructureID": 11234, + "Label": "35418-11234 via Adherens from 64610 -> 64611", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64610, + "TargetID": 64611, + "Directional": false + }] + }, { + "ID": 4575, + "SourceStructureID": 24401, + "TargetStructureID": 11485, + "Label": "24401-11485 via Adherens from 48127 -> 48128", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 48127, + "TargetID": 48128, + "Directional": false + }] + }, { + "ID": 4576, + "SourceStructureID": 38698, + "TargetStructureID": 12564, + "Label": "38698-12564 via Adherens from 55638 -> 55639", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 55638, + "TargetID": 55639, + "Directional": false + }] + }, { + "ID": 4577, + "SourceStructureID": 12897, + "TargetStructureID": 16026, + "Label": "12897-16026 via Adherens from 134422 -> 134421, 134886 -> 134885", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134422, + "TargetID": 134421, + "Directional": false + }, { + "SourceID": 134886, + "TargetID": 134885, + "Directional": false + }] + }, { + "ID": 4578, + "SourceStructureID": 16026, + "TargetStructureID": 12897, + "Label": "16026-12897 via Gap Junction from 24753 -> 24752, 91195 -> 91194, 91244 -> 24634, 92079 -> 92078, 92232 -> 92230, 92575 -> 92576, 92898 -> 92897", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24753, + "TargetID": 24752, + "Directional": false + }, { + "SourceID": 91195, + "TargetID": 91194, + "Directional": false + }, { + "SourceID": 91244, + "TargetID": 24634, + "Directional": false + }, { + "SourceID": 92079, + "TargetID": 92078, + "Directional": false + }, { + "SourceID": 92232, + "TargetID": 92230, + "Directional": false + }, { + "SourceID": 92575, + "TargetID": 92576, + "Directional": false + }, { + "SourceID": 92898, + "TargetID": 92897, + "Directional": false + }] + }, { + "ID": 4579, + "SourceStructureID": 87569, + "TargetStructureID": 12897, + "Label": "87569-12897 via Adherens from 87574 -> 24841", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87574, + "TargetID": 24841, + "Directional": false + }] + }, { + "ID": 4580, + "SourceStructureID": 12897, + "TargetStructureID": 104764, + "Label": "12897-104764 via Unknown from 134409 -> 134410", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134409, + "TargetID": 134410, + "Directional": false + }] + }, { + "ID": 4581, + "SourceStructureID": 12897, + "TargetStructureID": 122868, + "Label": "12897-122868 via Adherens from 130536 -> 130535", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 130536, + "TargetID": 130535, + "Directional": false + }] + }, { + "ID": 4582, + "SourceStructureID": 12897, + "TargetStructureID": 122868, + "Label": "12897-122868 via Gap Junction from 130534 -> 130533, 132417 -> 132419, 132421 -> 132422", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130534, + "TargetID": 130533, + "Directional": false + }, { + "SourceID": 132417, + "TargetID": 132419, + "Directional": false + }, { + "SourceID": 132421, + "TargetID": 132422, + "Directional": false + }] + }, { + "ID": 4583, + "SourceStructureID": 135039, + "TargetStructureID": 12897, + "Label": "135039-12897 via Gap Junction from 135040 -> 108243, 135043 -> 135044", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 135040, + "TargetID": 108243, + "Directional": false + }, { + "SourceID": 135043, + "TargetID": 135044, + "Directional": false + }] + }, { + "ID": 4584, + "SourceStructureID": 135039, + "TargetStructureID": 12897, + "Label": "135039-12897 via Unknown from 135049 -> 135050", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 135049, + "TargetID": 135050, + "Directional": false + }] + }, { + "ID": 4585, + "SourceStructureID": 13130, + "TargetStructureID": 59737, + "Label": "13130-59737 via Adherens from 59741 -> 59742", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 59741, + "TargetID": 59742, + "Directional": false + }] + }, { + "ID": 4586, + "SourceStructureID": 101625, + "TargetStructureID": 13525, + "Label": "101625-13525 via Adherens from 104701 -> 101624", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104701, + "TargetID": 101624, + "Directional": false + }] + }, { + "ID": 4587, + "SourceStructureID": 104677, + "TargetStructureID": 13525, + "Label": "104677-13525 via Adherens from 104679 -> 85668", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104679, + "TargetID": 85668, + "Directional": false + }] + }, { + "ID": 4588, + "SourceStructureID": 104691, + "TargetStructureID": 13525, + "Label": "104691-13525 via Adherens from 104692 -> 86728", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104692, + "TargetID": 86728, + "Directional": false + }] + }, { + "ID": 4589, + "SourceStructureID": 104693, + "TargetStructureID": 13525, + "Label": "104693-13525 via Adherens from 104695 -> 94562", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104695, + "TargetID": 94562, + "Directional": false + }] + }, { + "ID": 4590, + "SourceStructureID": 104726, + "TargetStructureID": 13525, + "Label": "104726-13525 via Adherens from 104730 -> 94557", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104730, + "TargetID": 94557, + "Directional": false + }] + }, { + "ID": 4591, + "SourceStructureID": 130371, + "TargetStructureID": 13525, + "Label": "130371-13525 via Gap Junction from 130372 -> 130370", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130372, + "TargetID": 130370, + "Directional": false + }] + }, { + "ID": 4592, + "SourceStructureID": 13525, + "TargetStructureID": 130383, + "Label": "13525-130383 via Gap Junction from 130382 -> 130384", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 130382, + "TargetID": 130384, + "Directional": false + }] + }, { + "ID": 4593, + "SourceStructureID": 13855, + "TargetStructureID": 17183, + "Label": "13855-17183 via Touch from 70918 -> 70919", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 70918, + "TargetID": 70919, + "Directional": false + }] + }, { + "ID": 4594, + "SourceStructureID": 14615, + "TargetStructureID": 14615, + "Label": "14615-14615 via Adherens from 92256 -> 92257", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92256, + "TargetID": 92257, + "Directional": false + }] + }, { + "ID": 4595, + "SourceStructureID": 14615, + "TargetStructureID": 76864, + "Label": "14615-76864 via Adherens from 76866 -> 76865", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76866, + "TargetID": 76865, + "Directional": false + }] + }, { + "ID": 4596, + "SourceStructureID": 76912, + "TargetStructureID": 14615, + "Label": "76912-14615 via Adherens from 76915 -> 76916", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76915, + "TargetID": 76916, + "Directional": false + }] + }, { + "ID": 4597, + "SourceStructureID": 33117, + "TargetStructureID": 15100, + "Label": "33117-15100 via Adherens from 64581 -> 64580", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64581, + "TargetID": 64580, + "Directional": false + }] + }, { + "ID": 4598, + "SourceStructureID": 72252, + "TargetStructureID": 15796, + "Label": "72252-15796 via Touch from 147791 -> 147792", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 147791, + "TargetID": 147792, + "Directional": false + }] + }, { + "ID": 4599, + "SourceStructureID": 15796, + "TargetStructureID": 83935, + "Label": "15796-83935 via Gap Junction from 83940 -> 83939", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 83940, + "TargetID": 83939, + "Directional": false + }] + }, { + "ID": 4600, + "SourceStructureID": 40965, + "TargetStructureID": 15942, + "Label": "40965-15942 via Unknown from 91186 -> 91187", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91186, + "TargetID": 91187, + "Directional": false + }] + }, { + "ID": 4601, + "SourceStructureID": 104735, + "TargetStructureID": 15942, + "Label": "104735-15942 via Unknown from 104759 -> 104760", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 104759, + "TargetID": 104760, + "Directional": false + }] + }, { + "ID": 4602, + "SourceStructureID": 57161, + "TargetStructureID": 15976, + "Label": "57161-15976 via Gap Junction from 57162 -> 57160", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57162, + "TargetID": 57160, + "Directional": false + }] + }, { + "ID": 4603, + "SourceStructureID": 57169, + "TargetStructureID": 15976, + "Label": "57169-15976 via Gap Junction from 57170 -> 57168, 57171 -> 57172, 117085 -> 117084", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57170, + "TargetID": 57168, + "Directional": false + }, { + "SourceID": 57171, + "TargetID": 57172, + "Directional": false + }, { + "SourceID": 117085, + "TargetID": 117084, + "Directional": false + }] + }, { + "ID": 4604, + "SourceStructureID": 15976, + "TargetStructureID": 92954, + "Label": "15976-92954 via Gap Junction from 92963 -> 92962", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92963, + "TargetID": 92962, + "Directional": false + }] + }, { + "ID": 4605, + "SourceStructureID": 15976, + "TargetStructureID": 93168, + "Label": "15976-93168 via Adherens from 93167 -> 93170", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93167, + "TargetID": 93170, + "Directional": false + }] + }, { + "ID": 4606, + "SourceStructureID": 15976, + "TargetStructureID": 93175, + "Label": "15976-93175 via Adherens from 93177 -> 93178", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93177, + "TargetID": 93178, + "Directional": false + }] + }, { + "ID": 4607, + "SourceStructureID": 15976, + "TargetStructureID": 93175, + "Label": "15976-93175 via Gap Junction from 93174 -> 93176, 93204 -> 93203", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93174, + "TargetID": 93176, + "Directional": false + }, { + "SourceID": 93204, + "TargetID": 93203, + "Directional": false + }] + }, { + "ID": 4608, + "SourceStructureID": 15976, + "TargetStructureID": 93281, + "Label": "15976-93281 via Adherens from 93285 -> 93284", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93285, + "TargetID": 93284, + "Directional": false + }] + }, { + "ID": 4609, + "SourceStructureID": 93281, + "TargetStructureID": 15976, + "Label": "93281-15976 via Gap Junction from 93283 -> 57436", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93283, + "TargetID": 57436, + "Directional": false + }] + }, { + "ID": 4610, + "SourceStructureID": 93287, + "TargetStructureID": 15976, + "Label": "93287-15976 via Gap Junction from 93288 -> 93286", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93288, + "TargetID": 93286, + "Directional": false + }] + }, { + "ID": 4611, + "SourceStructureID": 15976, + "TargetStructureID": 93290, + "Label": "15976-93290 via Gap Junction from 57163 -> 93292", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57163, + "TargetID": 93292, + "Directional": false + }] + }, { + "ID": 4612, + "SourceStructureID": 93297, + "TargetStructureID": 15976, + "Label": "93297-15976 via Gap Junction from 93299 -> 57410", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93299, + "TargetID": 57410, + "Directional": false + }] + }, { + "ID": 4613, + "SourceStructureID": 93352, + "TargetStructureID": 15976, + "Label": "93352-15976 via Gap Junction from 93353 -> 93351", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93353, + "TargetID": 93351, + "Directional": false + }] + }, { + "ID": 4614, + "SourceStructureID": 93579, + "TargetStructureID": 15976, + "Label": "93579-15976 via Unknown from 93580 -> 93578", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93580, + "TargetID": 93578, + "Directional": false + }] + }, { + "ID": 4615, + "SourceStructureID": 15977, + "TargetStructureID": 15977, + "Label": "15977-15977 via Gap Junction from 116816 -> 116817, 116939 -> 116940", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 116816, + "TargetID": 116817, + "Directional": false + }, { + "SourceID": 116939, + "TargetID": 116940, + "Directional": false + }] + }, { + "ID": 4616, + "SourceStructureID": 15977, + "TargetStructureID": 70761, + "Label": "15977-70761 via Adherens from 70764 -> 70763", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70764, + "TargetID": 70763, + "Directional": false + }] + }, { + "ID": 4617, + "SourceStructureID": 16026, + "TargetStructureID": 16026, + "Label": "16026-16026 via Adherens from 91101 -> 91100, 91107 -> 91106, 91148 -> 91147", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91101, + "TargetID": 91100, + "Directional": false + }, { + "SourceID": 91107, + "TargetID": 91106, + "Directional": false + }, { + "SourceID": 91148, + "TargetID": 91147, + "Directional": false + }] + }, { + "ID": 4618, + "SourceStructureID": 16026, + "TargetStructureID": 16026, + "Label": "16026-16026 via Gap Junction from 91162 -> 91161", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91162, + "TargetID": 91161, + "Directional": false + }] + }, { + "ID": 4619, + "SourceStructureID": 38373, + "TargetStructureID": 16026, + "Label": "38373-16026 via Unknown from 134486 -> 134485", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134486, + "TargetID": 134485, + "Directional": false + }] + }, { + "ID": 4620, + "SourceStructureID": 16026, + "TargetStructureID": 54078, + "Label": "16026-54078 via Adherens from 67860 -> 67859, 134514 -> 134513, 134694 -> 134696", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67860, + "TargetID": 67859, + "Directional": false + }, { + "SourceID": 134514, + "TargetID": 134513, + "Directional": false + }, { + "SourceID": 134694, + "TargetID": 134696, + "Directional": false + }] + }, { + "ID": 4621, + "SourceStructureID": 54078, + "TargetStructureID": 16026, + "Label": "54078-16026 via Unknown from 92919 -> 92918, 124776 -> 124777", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92919, + "TargetID": 92918, + "Directional": false + }, { + "SourceID": 124776, + "TargetID": 124777, + "Directional": false + }] + }, { + "ID": 4622, + "SourceStructureID": 56841, + "TargetStructureID": 16026, + "Label": "56841-16026 via Adherens from 134541 -> 134539", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134541, + "TargetID": 134539, + "Directional": false + }] + }, { + "ID": 4623, + "SourceStructureID": 16026, + "TargetStructureID": 61836, + "Label": "16026-61836 via Adherens from 134783 -> 134784", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134783, + "TargetID": 134784, + "Directional": false + }] + }, { + "ID": 4624, + "SourceStructureID": 16026, + "TargetStructureID": 65864, + "Label": "16026-65864 via Unknown from 134556 -> 134557", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134556, + "TargetID": 134557, + "Directional": false + }] + }, { + "ID": 4625, + "SourceStructureID": 66111, + "TargetStructureID": 16026, + "Label": "66111-16026 via Adherens from 134754 -> 134755", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134754, + "TargetID": 134755, + "Directional": false + }] + }, { + "ID": 4626, + "SourceStructureID": 66111, + "TargetStructureID": 16026, + "Label": "66111-16026 via Unknown from 92571 -> 92570", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92571, + "TargetID": 92570, + "Directional": false + }] + }, { + "ID": 4627, + "SourceStructureID": 16026, + "TargetStructureID": 66477, + "Label": "16026-66477 via Unknown from 134710 -> 134711", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134710, + "TargetID": 134711, + "Directional": false + }] + }, { + "ID": 4628, + "SourceStructureID": 16026, + "TargetStructureID": 66828, + "Label": "16026-66828 via Adherens from 66835 -> 66834, 134793 -> 134794", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66835, + "TargetID": 66834, + "Directional": false + }, { + "SourceID": 134793, + "TargetID": 134794, + "Directional": false + }] + }, { + "ID": 4629, + "SourceStructureID": 66962, + "TargetStructureID": 16026, + "Label": "66962-16026 via Adherens from 134605 -> 134604", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134605, + "TargetID": 134604, + "Directional": false + }] + }, { + "ID": 4630, + "SourceStructureID": 67354, + "TargetStructureID": 16026, + "Label": "67354-16026 via Adherens from 67358 -> 67359", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67358, + "TargetID": 67359, + "Directional": false + }] + }, { + "ID": 4631, + "SourceStructureID": 67361, + "TargetStructureID": 16026, + "Label": "67361-16026 via Adherens from 91130 -> 91129", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91130, + "TargetID": 91129, + "Directional": false + }] + }, { + "ID": 4632, + "SourceStructureID": 67595, + "TargetStructureID": 16026, + "Label": "67595-16026 via Adherens from 67637 -> 67638, 67639 -> 67640, 67650 -> 67649, 134392 -> 134393", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67637, + "TargetID": 67638, + "Directional": false + }, { + "SourceID": 67639, + "TargetID": 67640, + "Directional": false + }, { + "SourceID": 67650, + "TargetID": 67649, + "Directional": false + }, { + "SourceID": 134392, + "TargetID": 134393, + "Directional": false + }] + }, { + "ID": 4633, + "SourceStructureID": 67818, + "TargetStructureID": 16026, + "Label": "67818-16026 via Unknown from 134779 -> 134778", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134779, + "TargetID": 134778, + "Directional": false + }] + }, { + "ID": 4634, + "SourceStructureID": 16026, + "TargetStructureID": 67933, + "Label": "16026-67933 via Unknown from 134787 -> 134788", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134787, + "TargetID": 134788, + "Directional": false + }] + }, { + "ID": 4635, + "SourceStructureID": 78876, + "TargetStructureID": 16026, + "Label": "78876-16026 via Unknown from 134802 -> 134801", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134802, + "TargetID": 134801, + "Directional": false + }] + }, { + "ID": 4636, + "SourceStructureID": 80721, + "TargetStructureID": 16026, + "Label": "80721-16026 via Unknown from 125040 -> 125039", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125040, + "TargetID": 125039, + "Directional": false + }] + }, { + "ID": 4637, + "SourceStructureID": 16026, + "TargetStructureID": 81396, + "Label": "16026-81396 via Unknown from 134756 -> 134757", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134756, + "TargetID": 134757, + "Directional": false + }] + }, { + "ID": 4638, + "SourceStructureID": 16026, + "TargetStructureID": 82305, + "Label": "16026-82305 via Adherens from 82335 -> 82334", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82335, + "TargetID": 82334, + "Directional": false + }] + }, { + "ID": 4639, + "SourceStructureID": 16026, + "TargetStructureID": 83616, + "Label": "16026-83616 via Unknown from 134619 -> 134620", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134619, + "TargetID": 134620, + "Directional": false + }] + }, { + "ID": 4640, + "SourceStructureID": 84260, + "TargetStructureID": 16026, + "Label": "84260-16026 via Adherens from 91122 -> 91121", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91122, + "TargetID": 91121, + "Directional": false + }] + }, { + "ID": 4641, + "SourceStructureID": 16026, + "TargetStructureID": 84656, + "Label": "16026-84656 via Adherens from 134503 -> 134502", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134503, + "TargetID": 134502, + "Directional": false + }] + }, { + "ID": 4642, + "SourceStructureID": 91036, + "TargetStructureID": 16026, + "Label": "91036-16026 via Adherens from 91039 -> 91035", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91039, + "TargetID": 91035, + "Directional": false + }] + }, { + "ID": 4643, + "SourceStructureID": 91042, + "TargetStructureID": 16026, + "Label": "91042-16026 via Adherens from 91045 -> 91041", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91045, + "TargetID": 91041, + "Directional": false + }] + }, { + "ID": 4644, + "SourceStructureID": 91043, + "TargetStructureID": 16026, + "Label": "91043-16026 via Adherens from 91044 -> 91041", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91044, + "TargetID": 91041, + "Directional": false + }] + }, { + "ID": 4645, + "SourceStructureID": 91060, + "TargetStructureID": 16026, + "Label": "91060-16026 via Adherens from 91061 -> 91059", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91061, + "TargetID": 91059, + "Directional": false + }] + }, { + "ID": 4646, + "SourceStructureID": 91073, + "TargetStructureID": 16026, + "Label": "91073-16026 via Adherens from 92815 -> 91075", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92815, + "TargetID": 91075, + "Directional": false + }] + }, { + "ID": 4647, + "SourceStructureID": 16026, + "TargetStructureID": 91098, + "Label": "16026-91098 via Adherens from 91097 -> 91099", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91097, + "TargetID": 91099, + "Directional": false + }] + }, { + "ID": 4648, + "SourceStructureID": 91103, + "TargetStructureID": 16026, + "Label": "91103-16026 via Adherens from 91104 -> 91102", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91104, + "TargetID": 91102, + "Directional": false + }] + }, { + "ID": 4649, + "SourceStructureID": 91207, + "TargetStructureID": 16026, + "Label": "91207-16026 via Gap Junction from 91208 -> 91205", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91208, + "TargetID": 91205, + "Directional": false + }] + }, { + "ID": 4650, + "SourceStructureID": 91213, + "TargetStructureID": 16026, + "Label": "91213-16026 via Unknown from 134364 -> 134363", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134364, + "TargetID": 134363, + "Directional": false + }] + }, { + "ID": 4651, + "SourceStructureID": 16026, + "TargetStructureID": 92086, + "Label": "16026-92086 via Unknown from 134450 -> 134449", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134450, + "TargetID": 134449, + "Directional": false + }] + }, { + "ID": 4652, + "SourceStructureID": 92092, + "TargetStructureID": 16026, + "Label": "92092-16026 via Adherens from 134488 -> 134487", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134488, + "TargetID": 134487, + "Directional": false + }] + }, { + "ID": 4653, + "SourceStructureID": 92092, + "TargetStructureID": 16026, + "Label": "92092-16026 via Postsynapse from 92192 -> 92191", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 92192, + "TargetID": 92191, + "Directional": false + }] + }, { + "ID": 4654, + "SourceStructureID": 92092, + "TargetStructureID": 16026, + "Label": "92092-16026 via Unknown from 134436 -> 134435", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134436, + "TargetID": 134435, + "Directional": false + }] + }, { + "ID": 4655, + "SourceStructureID": 16026, + "TargetStructureID": 92200, + "Label": "16026-92200 via Unknown from 92204 -> 92203, 92206 -> 92205", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92204, + "TargetID": 92203, + "Directional": false + }, { + "SourceID": 92206, + "TargetID": 92205, + "Directional": false + }] + }, { + "ID": 4656, + "SourceStructureID": 16026, + "TargetStructureID": 92222, + "Label": "16026-92222 via Unknown from 134543 -> 134544", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134543, + "TargetID": 134544, + "Directional": false + }] + }, { + "ID": 4657, + "SourceStructureID": 16026, + "TargetStructureID": 92226, + "Label": "16026-92226 via Gap Junction from 92228 -> 92227", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92228, + "TargetID": 92227, + "Directional": false + }] + }, { + "ID": 4658, + "SourceStructureID": 16026, + "TargetStructureID": 92233, + "Label": "16026-92233 via Unknown from 92235 -> 92234", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92235, + "TargetID": 92234, + "Directional": false + }] + }, { + "ID": 4659, + "SourceStructureID": 16026, + "TargetStructureID": 92239, + "Label": "16026-92239 via Unknown from 114662 -> 114663", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 114662, + "TargetID": 114663, + "Directional": false + }] + }, { + "ID": 4660, + "SourceStructureID": 16026, + "TargetStructureID": 92250, + "Label": "16026-92250 via Unknown from 92251 -> 92252", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92251, + "TargetID": 92252, + "Directional": false + }] + }, { + "ID": 4661, + "SourceStructureID": 16026, + "TargetStructureID": 92253, + "Label": "16026-92253 via Unknown from 92254 -> 92255", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92254, + "TargetID": 92255, + "Directional": false + }] + }, { + "ID": 4662, + "SourceStructureID": 92353, + "TargetStructureID": 16026, + "Label": "92353-16026 via Unknown from 134383 -> 134382", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134383, + "TargetID": 134382, + "Directional": false + }] + }, { + "ID": 4663, + "SourceStructureID": 92356, + "TargetStructureID": 16026, + "Label": "92356-16026 via Unknown from 134384 -> 134385", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134384, + "TargetID": 134385, + "Directional": false + }] + }, { + "ID": 4664, + "SourceStructureID": 92361, + "TargetStructureID": 16026, + "Label": "92361-16026 via Adherens from 134349 -> 134350, 134353 -> 134352", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134349, + "TargetID": 134350, + "Directional": false + }, { + "SourceID": 134353, + "TargetID": 134352, + "Directional": false + }] + }, { + "ID": 4665, + "SourceStructureID": 16026, + "TargetStructureID": 92361, + "Label": "16026-92361 via Unknown from 134373 -> 134372", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134373, + "TargetID": 134372, + "Directional": false + }] + }, { + "ID": 4666, + "SourceStructureID": 92369, + "TargetStructureID": 16026, + "Label": "92369-16026 via Unknown from 92371 -> 92370", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92371, + "TargetID": 92370, + "Directional": false + }] + }, { + "ID": 4667, + "SourceStructureID": 16026, + "TargetStructureID": 92376, + "Label": "16026-92376 via Unknown from 92378 -> 92377", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92378, + "TargetID": 92377, + "Directional": false + }] + }, { + "ID": 4668, + "SourceStructureID": 16026, + "TargetStructureID": 92406, + "Label": "16026-92406 via Unknown from 92407 -> 92408", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92407, + "TargetID": 92408, + "Directional": false + }] + }, { + "ID": 4669, + "SourceStructureID": 16026, + "TargetStructureID": 92417, + "Label": "16026-92417 via Unknown from 92419 -> 92418", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92419, + "TargetID": 92418, + "Directional": false + }] + }, { + "ID": 4670, + "SourceStructureID": 16026, + "TargetStructureID": 92424, + "Label": "16026-92424 via Unknown from 92426 -> 92425", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92426, + "TargetID": 92425, + "Directional": false + }] + }, { + "ID": 4671, + "SourceStructureID": 92427, + "TargetStructureID": 16026, + "Label": "92427-16026 via Unknown from 134600 -> 134601", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134600, + "TargetID": 134601, + "Directional": false + }] + }, { + "ID": 4672, + "SourceStructureID": 92560, + "TargetStructureID": 16026, + "Label": "92560-16026 via Postsynapse from 92564 -> 92563", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 92564, + "TargetID": 92563, + "Directional": false + }] + }, { + "ID": 4673, + "SourceStructureID": 92577, + "TargetStructureID": 16026, + "Label": "92577-16026 via Unknown from 134895 -> 134894", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134895, + "TargetID": 134894, + "Directional": false + }] + }, { + "ID": 4674, + "SourceStructureID": 92582, + "TargetStructureID": 16026, + "Label": "92582-16026 via Unknown from 92586 -> 92585", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92586, + "TargetID": 92585, + "Directional": false + }] + }, { + "ID": 4675, + "SourceStructureID": 92587, + "TargetStructureID": 16026, + "Label": "92587-16026 via Unknown from 92589 -> 92588", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92589, + "TargetID": 92588, + "Directional": false + }] + }, { + "ID": 4676, + "SourceStructureID": 16026, + "TargetStructureID": 92595, + "Label": "16026-92595 via Unknown from 134883 -> 134884", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134883, + "TargetID": 134884, + "Directional": false + }] + }, { + "ID": 4677, + "SourceStructureID": 92899, + "TargetStructureID": 16026, + "Label": "92899-16026 via Unknown from 134829 -> 134828", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134829, + "TargetID": 134828, + "Directional": false + }] + }, { + "ID": 4678, + "SourceStructureID": 16026, + "TargetStructureID": 92908, + "Label": "16026-92908 via Unknown from 92911 -> 92910, 134649 -> 124841", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92911, + "TargetID": 92910, + "Directional": false + }, { + "SourceID": 134649, + "TargetID": 124841, + "Directional": false + }] + }, { + "ID": 4679, + "SourceStructureID": 92913, + "TargetStructureID": 16026, + "Label": "92913-16026 via Unknown from 92914 -> 92912", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92914, + "TargetID": 92912, + "Directional": false + }] + }, { + "ID": 4680, + "SourceStructureID": 16026, + "TargetStructureID": 92915, + "Label": "16026-92915 via Unknown from 92917 -> 92916", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92917, + "TargetID": 92916, + "Directional": false + }] + }, { + "ID": 4681, + "SourceStructureID": 92920, + "TargetStructureID": 16026, + "Label": "92920-16026 via Unknown from 92922 -> 92921", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92922, + "TargetID": 92921, + "Directional": false + }] + }, { + "ID": 4682, + "SourceStructureID": 16026, + "TargetStructureID": 93139, + "Label": "16026-93139 via Unknown from 125005 -> 125006", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 125005, + "TargetID": 125006, + "Directional": false + }] + }, { + "ID": 4683, + "SourceStructureID": 16026, + "TargetStructureID": 104641, + "Label": "16026-104641 via Adherens from 104643 -> 104642", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 104643, + "TargetID": 104642, + "Directional": false + }] + }, { + "ID": 4684, + "SourceStructureID": 16026, + "TargetStructureID": 122829, + "Label": "16026-122829 via Adherens from 114655 -> 134420", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 114655, + "TargetID": 134420, + "Directional": false + }] + }, { + "ID": 4685, + "SourceStructureID": 122829, + "TargetStructureID": 16026, + "Label": "122829-16026 via Unknown from 123360 -> 114658", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 123360, + "TargetID": 114658, + "Directional": false + }] + }, { + "ID": 4686, + "SourceStructureID": 16087, + "TargetStructureID": 67671, + "Label": "16087-67671 via Adherens from 78019 -> 78018", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78019, + "TargetID": 78018, + "Directional": false + }] + }, { + "ID": 4687, + "SourceStructureID": 16087, + "TargetStructureID": 67671, + "Label": "16087-67671 via Gap Junction from 78017 -> 78016", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 78017, + "TargetID": 78016, + "Directional": false + }] + }, { + "ID": 4688, + "SourceStructureID": 17527, + "TargetStructureID": 70095, + "Label": "17527-70095 via Gap Junction from 129046 -> 129045", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 129046, + "TargetID": 129045, + "Directional": false + }] + }, { + "ID": 4689, + "SourceStructureID": 129048, + "TargetStructureID": 17527, + "Label": "129048-17527 via Gap Junction from 129049 -> 129047", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 129049, + "TargetID": 129047, + "Directional": false + }] + }, { + "ID": 4690, + "SourceStructureID": 18693, + "TargetStructureID": 88702, + "Label": "18693-88702 via Gap Junction from 64739 -> 88705", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 64739, + "TargetID": 88705, + "Directional": false + }] + }, { + "ID": 4691, + "SourceStructureID": 19203, + "TargetStructureID": 19203, + "Label": "19203-19203 via Gap Junction from 121653 -> 121654", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121653, + "TargetID": 121654, + "Directional": false + }] + }, { + "ID": 4692, + "SourceStructureID": 19203, + "TargetStructureID": 28886, + "Label": "19203-28886 via Gap Junction from 51416 -> 51415, 51619 -> 51618, 51955 -> 51445, 120875 -> 51428, 121659 -> 121656", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51416, + "TargetID": 51415, + "Directional": false + }, { + "SourceID": 51619, + "TargetID": 51618, + "Directional": false + }, { + "SourceID": 51955, + "TargetID": 51445, + "Directional": false + }, { + "SourceID": 120875, + "TargetID": 51428, + "Directional": false + }, { + "SourceID": 121659, + "TargetID": 121656, + "Directional": false + }] + }, { + "ID": 4693, + "SourceStructureID": 96102, + "TargetStructureID": 19203, + "Label": "96102-19203 via Adherens from 135824 -> 135823", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135824, + "TargetID": 135823, + "Directional": false + }] + }, { + "ID": 4694, + "SourceStructureID": 121635, + "TargetStructureID": 19203, + "Label": "121635-19203 via Gap Junction from 121636 -> 121634", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121636, + "TargetID": 121634, + "Directional": false + }] + }, { + "ID": 4695, + "SourceStructureID": 19203, + "TargetStructureID": 121644, + "Label": "19203-121644 via Gap Junction from 121643 -> 121645", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121643, + "TargetID": 121645, + "Directional": false + }] + }, { + "ID": 4696, + "SourceStructureID": 19203, + "TargetStructureID": 121647, + "Label": "19203-121647 via Gap Junction from 121646 -> 121648", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121646, + "TargetID": 121648, + "Directional": false + }] + }, { + "ID": 4697, + "SourceStructureID": 121660, + "TargetStructureID": 19203, + "Label": "121660-19203 via Gap Junction from 121662 -> 51953", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121662, + "TargetID": 51953, + "Directional": false + }] + }, { + "ID": 4698, + "SourceStructureID": 20136, + "TargetStructureID": 20136, + "Label": "20136-20136 via Adherens from 135800 -> 135799", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135800, + "TargetID": 135799, + "Directional": false + }] + }, { + "ID": 4699, + "SourceStructureID": 20136, + "TargetStructureID": 20136, + "Label": "20136-20136 via Gap Junction from 92412 -> 92413, 130800 -> 130801", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 92412, + "TargetID": 92413, + "Directional": false + }, { + "SourceID": 130800, + "TargetID": 130801, + "Directional": false + }] + }, { + "ID": 4700, + "SourceStructureID": 20136, + "TargetStructureID": 32911, + "Label": "20136-32911 via Adherens from 135776 -> 135777", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 135776, + "TargetID": 135777, + "Directional": false + }] + }, { + "ID": 4701, + "SourceStructureID": 32911, + "TargetStructureID": 20136, + "Label": "32911-20136 via Gap Junction from 109157 -> 109158", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 109157, + "TargetID": 109158, + "Directional": false + }] + }, { + "ID": 4702, + "SourceStructureID": 20136, + "TargetStructureID": 68277, + "Label": "20136-68277 via Adherens from 109898 -> 109899", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109898, + "TargetID": 109899, + "Directional": false + }] + }, { + "ID": 4703, + "SourceStructureID": 20136, + "TargetStructureID": 83954, + "Label": "20136-83954 via Adherens from 109114 -> 109115", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109114, + "TargetID": 109115, + "Directional": false + }] + }, { + "ID": 4704, + "SourceStructureID": 83981, + "TargetStructureID": 20136, + "Label": "83981-20136 via Unknown from 109024 -> 109025", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109024, + "TargetID": 109025, + "Directional": false + }] + }, { + "ID": 4705, + "SourceStructureID": 96102, + "TargetStructureID": 20136, + "Label": "96102-20136 via Gap Junction from 96185 -> 110430", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 96185, + "TargetID": 110430, + "Directional": false + }] + }, { + "ID": 4706, + "SourceStructureID": 98762, + "TargetStructureID": 20136, + "Label": "98762-20136 via Adherens from 109904 -> 109903", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109904, + "TargetID": 109903, + "Directional": false + }] + }, { + "ID": 4707, + "SourceStructureID": 20136, + "TargetStructureID": 108408, + "Label": "20136-108408 via BC Conventional Synapse from 108409 -> 108410", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 108409, + "TargetID": 108410, + "Directional": false + }] + }, { + "ID": 4708, + "SourceStructureID": 20136, + "TargetStructureID": 108429, + "Label": "20136-108429 via Adherens from 108432 -> 108431", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108432, + "TargetID": 108431, + "Directional": false + }] + }, { + "ID": 4709, + "SourceStructureID": 108434, + "TargetStructureID": 20136, + "Label": "108434-20136 via Unknown from 108435 -> 108438", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108435, + "TargetID": 108438, + "Directional": false + }] + }, { + "ID": 4710, + "SourceStructureID": 108506, + "TargetStructureID": 20136, + "Label": "108506-20136 via Unknown from 108507 -> 108508", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108507, + "TargetID": 108508, + "Directional": false + }] + }, { + "ID": 4711, + "SourceStructureID": 20136, + "TargetStructureID": 108512, + "Label": "20136-108512 via Adherens from 108516 -> 108515", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108516, + "TargetID": 108515, + "Directional": false + }] + }, { + "ID": 4712, + "SourceStructureID": 20136, + "TargetStructureID": 108766, + "Label": "20136-108766 via Unknown from 108778 -> 108779", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108778, + "TargetID": 108779, + "Directional": false + }] + }, { + "ID": 4713, + "SourceStructureID": 20136, + "TargetStructureID": 108770, + "Label": "20136-108770 via Adherens from 108773 -> 108774", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108773, + "TargetID": 108774, + "Directional": false + }] + }, { + "ID": 4714, + "SourceStructureID": 20136, + "TargetStructureID": 108800, + "Label": "20136-108800 via Adherens from 108813 -> 108812", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108813, + "TargetID": 108812, + "Directional": false + }] + }, { + "ID": 4715, + "SourceStructureID": 20136, + "TargetStructureID": 108804, + "Label": "20136-108804 via Adherens from 108811 -> 108810", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108811, + "TargetID": 108810, + "Directional": false + }] + }, { + "ID": 4716, + "SourceStructureID": 20136, + "TargetStructureID": 108849, + "Label": "20136-108849 via Unknown from 108850 -> 108851", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108850, + "TargetID": 108851, + "Directional": false + }] + }, { + "ID": 4717, + "SourceStructureID": 20136, + "TargetStructureID": 108853, + "Label": "20136-108853 via Unknown from 108854 -> 108855", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108854, + "TargetID": 108855, + "Directional": false + }] + }, { + "ID": 4718, + "SourceStructureID": 20136, + "TargetStructureID": 108899, + "Label": "20136-108899 via Unknown from 108902 -> 108901", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108902, + "TargetID": 108901, + "Directional": false + }] + }, { + "ID": 4719, + "SourceStructureID": 20136, + "TargetStructureID": 108903, + "Label": "20136-108903 via Unknown from 108909 -> 108908", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108909, + "TargetID": 108908, + "Directional": false + }] + }, { + "ID": 4720, + "SourceStructureID": 108944, + "TargetStructureID": 20136, + "Label": "108944-20136 via Adherens from 108947 -> 108948", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108947, + "TargetID": 108948, + "Directional": false + }] + }, { + "ID": 4721, + "SourceStructureID": 20136, + "TargetStructureID": 108963, + "Label": "20136-108963 via Unknown from 108965 -> 108964", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108965, + "TargetID": 108964, + "Directional": false + }] + }, { + "ID": 4722, + "SourceStructureID": 20136, + "TargetStructureID": 108975, + "Label": "20136-108975 via Adherens from 108977 -> 108976", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 108977, + "TargetID": 108976, + "Directional": false + }] + }, { + "ID": 4723, + "SourceStructureID": 20136, + "TargetStructureID": 109097, + "Label": "20136-109097 via Adherens from 109100 -> 109103", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109100, + "TargetID": 109103, + "Directional": false + }] + }, { + "ID": 4724, + "SourceStructureID": 20136, + "TargetStructureID": 109116, + "Label": "20136-109116 via Adherens from 109170 -> 109171", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109170, + "TargetID": 109171, + "Directional": false + }] + }, { + "ID": 4725, + "SourceStructureID": 20136, + "TargetStructureID": 109124, + "Label": "20136-109124 via Adherens from 109174 -> 109175", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109174, + "TargetID": 109175, + "Directional": false + }] + }, { + "ID": 4726, + "SourceStructureID": 20136, + "TargetStructureID": 109190, + "Label": "20136-109190 via Unknown from 109192 -> 109191", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109192, + "TargetID": 109191, + "Directional": false + }] + }, { + "ID": 4727, + "SourceStructureID": 20136, + "TargetStructureID": 109220, + "Label": "20136-109220 via Unknown from 109222 -> 109221", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109222, + "TargetID": 109221, + "Directional": false + }] + }, { + "ID": 4728, + "SourceStructureID": 20136, + "TargetStructureID": 109223, + "Label": "20136-109223 via Unknown from 97826 -> 109224", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97826, + "TargetID": 109224, + "Directional": false + }] + }, { + "ID": 4729, + "SourceStructureID": 109225, + "TargetStructureID": 20136, + "Label": "109225-20136 via Unknown from 109250 -> 109249", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109250, + "TargetID": 109249, + "Directional": false + }] + }, { + "ID": 4730, + "SourceStructureID": 109257, + "TargetStructureID": 20136, + "Label": "109257-20136 via Adherens from 109265 -> 109266", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109265, + "TargetID": 109266, + "Directional": false + }] + }, { + "ID": 4731, + "SourceStructureID": 20136, + "TargetStructureID": 109262, + "Label": "20136-109262 via Gap Junction from 109263 -> 109264", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 109263, + "TargetID": 109264, + "Directional": false + }] + }, { + "ID": 4732, + "SourceStructureID": 20136, + "TargetStructureID": 109305, + "Label": "20136-109305 via Adherens from 109355 -> 109356", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109355, + "TargetID": 109356, + "Directional": false + }] + }, { + "ID": 4733, + "SourceStructureID": 109350, + "TargetStructureID": 20136, + "Label": "109350-20136 via Unknown from 109351 -> 109349", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109351, + "TargetID": 109349, + "Directional": false + }] + }, { + "ID": 4734, + "SourceStructureID": 20136, + "TargetStructureID": 109500, + "Label": "20136-109500 via Unknown from 109501 -> 109502", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109501, + "TargetID": 109502, + "Directional": false + }] + }, { + "ID": 4735, + "SourceStructureID": 20136, + "TargetStructureID": 109540, + "Label": "20136-109540 via Unknown from 109682 -> 109684, 133989 -> 109684", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109682, + "TargetID": 109684, + "Directional": false + }, { + "SourceID": 133989, + "TargetID": 109684, + "Directional": false + }] + }, { + "ID": 4736, + "SourceStructureID": 20136, + "TargetStructureID": 109552, + "Label": "20136-109552 via Unknown from 109556 -> 109557", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109556, + "TargetID": 109557, + "Directional": false + }] + }, { + "ID": 4737, + "SourceStructureID": 109582, + "TargetStructureID": 20136, + "Label": "109582-20136 via Unknown from 109583 -> 109584", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109583, + "TargetID": 109584, + "Directional": false + }] + }, { + "ID": 4738, + "SourceStructureID": 109588, + "TargetStructureID": 20136, + "Label": "109588-20136 via Unknown from 109592 -> 109593", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109592, + "TargetID": 109593, + "Directional": false + }] + }, { + "ID": 4739, + "SourceStructureID": 20136, + "TargetStructureID": 109674, + "Label": "20136-109674 via Unknown from 109682 -> 109683", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109682, + "TargetID": 109683, + "Directional": false + }] + }, { + "ID": 4740, + "SourceStructureID": 20136, + "TargetStructureID": 109722, + "Label": "20136-109722 via Unknown from 109725 -> 109726, 109752 -> 109751", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109725, + "TargetID": 109726, + "Directional": false + }, { + "SourceID": 109752, + "TargetID": 109751, + "Directional": false + }] + }, { + "ID": 4741, + "SourceStructureID": 109753, + "TargetStructureID": 20136, + "Label": "109753-20136 via Unknown from 109754 -> 109755", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109754, + "TargetID": 109755, + "Directional": false + }] + }, { + "ID": 4742, + "SourceStructureID": 109756, + "TargetStructureID": 20136, + "Label": "109756-20136 via Unknown from 109784 -> 109785", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109784, + "TargetID": 109785, + "Directional": false + }] + }, { + "ID": 4743, + "SourceStructureID": 20136, + "TargetStructureID": 109774, + "Label": "20136-109774 via Unknown from 109359 -> 109775", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109359, + "TargetID": 109775, + "Directional": false + }] + }, { + "ID": 4744, + "SourceStructureID": 20136, + "TargetStructureID": 109821, + "Label": "20136-109821 via Adherens from 109823 -> 109822", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109823, + "TargetID": 109822, + "Directional": false + }] + }, { + "ID": 4745, + "SourceStructureID": 109853, + "TargetStructureID": 20136, + "Label": "109853-20136 via Adherens from 109854 -> 109855, 109867 -> 109868", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 109854, + "TargetID": 109855, + "Directional": false + }, { + "SourceID": 109867, + "TargetID": 109868, + "Directional": false + }] + }, { + "ID": 4746, + "SourceStructureID": 20136, + "TargetStructureID": 109873, + "Label": "20136-109873 via Unknown from 109874 -> 109875", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109874, + "TargetID": 109875, + "Directional": false + }] + }, { + "ID": 4747, + "SourceStructureID": 109884, + "TargetStructureID": 20136, + "Label": "109884-20136 via Unknown from 109886 -> 109885", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109886, + "TargetID": 109885, + "Directional": false + }] + }, { + "ID": 4748, + "SourceStructureID": 20136, + "TargetStructureID": 109908, + "Label": "20136-109908 via Unknown from 109909 -> 109910", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 109909, + "TargetID": 109910, + "Directional": false + }] + }, { + "ID": 4749, + "SourceStructureID": 20136, + "TargetStructureID": 110227, + "Label": "20136-110227 via Unknown from 110229 -> 110230", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110229, + "TargetID": 110230, + "Directional": false + }] + }, { + "ID": 4750, + "SourceStructureID": 110233, + "TargetStructureID": 20136, + "Label": "110233-20136 via Unknown from 110268 -> 110269", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110268, + "TargetID": 110269, + "Directional": false + }] + }, { + "ID": 4751, + "SourceStructureID": 110265, + "TargetStructureID": 20136, + "Label": "110265-20136 via Unknown from 110266 -> 110267", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110266, + "TargetID": 110267, + "Directional": false + }] + }, { + "ID": 4752, + "SourceStructureID": 110271, + "TargetStructureID": 20136, + "Label": "110271-20136 via Adherens from 110279 -> 110280", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110279, + "TargetID": 110280, + "Directional": false + }] + }, { + "ID": 4753, + "SourceStructureID": 110292, + "TargetStructureID": 20136, + "Label": "110292-20136 via Adherens from 110344 -> 110264", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110344, + "TargetID": 110264, + "Directional": false + }] + }, { + "ID": 4754, + "SourceStructureID": 110309, + "TargetStructureID": 20136, + "Label": "110309-20136 via Unknown from 110310 -> 110311", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110310, + "TargetID": 110311, + "Directional": false + }] + }, { + "ID": 4755, + "SourceStructureID": 20136, + "TargetStructureID": 110327, + "Label": "20136-110327 via Adherens from 110328 -> 110329", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110328, + "TargetID": 110329, + "Directional": false + }] + }, { + "ID": 4756, + "SourceStructureID": 110335, + "TargetStructureID": 20136, + "Label": "110335-20136 via Unknown from 110336 -> 110338", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110336, + "TargetID": 110338, + "Directional": false + }] + }, { + "ID": 4757, + "SourceStructureID": 110340, + "TargetStructureID": 20136, + "Label": "110340-20136 via Adherens from 110341 -> 110342", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110341, + "TargetID": 110342, + "Directional": false + }] + }, { + "ID": 4758, + "SourceStructureID": 110356, + "TargetStructureID": 20136, + "Label": "110356-20136 via Adherens from 110397 -> 110398", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110397, + "TargetID": 110398, + "Directional": false + }] + }, { + "ID": 4759, + "SourceStructureID": 110367, + "TargetStructureID": 20136, + "Label": "110367-20136 via Gap Junction from 110369 -> 93852", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 110369, + "TargetID": 93852, + "Directional": false + }] + }, { + "ID": 4760, + "SourceStructureID": 20136, + "TargetStructureID": 110394, + "Label": "20136-110394 via Unknown from 110409 -> 133990", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110409, + "TargetID": 133990, + "Directional": false + }] + }, { + "ID": 4761, + "SourceStructureID": 20136, + "TargetStructureID": 110399, + "Label": "20136-110399 via Adherens from 110401 -> 110402", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110401, + "TargetID": 110402, + "Directional": false + }] + }, { + "ID": 4762, + "SourceStructureID": 20136, + "TargetStructureID": 110412, + "Label": "20136-110412 via Unknown from 110413 -> 110414", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 110413, + "TargetID": 110414, + "Directional": false + }] + }, { + "ID": 4763, + "SourceStructureID": 110416, + "TargetStructureID": 20136, + "Label": "110416-20136 via Adherens from 110427 -> 110428", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110427, + "TargetID": 110428, + "Directional": false + }] + }, { + "ID": 4764, + "SourceStructureID": 21299, + "TargetStructureID": 21299, + "Label": "21299-21299 via Unknown from 91629 -> 91628", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91629, + "TargetID": 91628, + "Directional": false + }] + }, { + "ID": 4765, + "SourceStructureID": 21299, + "TargetStructureID": 56583, + "Label": "21299-56583 via Unknown from 92833 -> 91739", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 92833, + "TargetID": 91739, + "Directional": false + }] + }, { + "ID": 4766, + "SourceStructureID": 21299, + "TargetStructureID": 59422, + "Label": "21299-59422 via Touch from 59460 -> 59461", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 59460, + "TargetID": 59461, + "Directional": false + }] + }, { + "ID": 4767, + "SourceStructureID": 21299, + "TargetStructureID": 88790, + "Label": "21299-88790 via Gap Junction from 48990 -> 91631", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48990, + "TargetID": 91631, + "Directional": false + }] + }, { + "ID": 4768, + "SourceStructureID": 21299, + "TargetStructureID": 91585, + "Label": "21299-91585 via Gap Junction from 48875 -> 91586", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48875, + "TargetID": 91586, + "Directional": false + }] + }, { + "ID": 4769, + "SourceStructureID": 91588, + "TargetStructureID": 21299, + "Label": "91588-21299 via Unknown from 91589 -> 91587", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91589, + "TargetID": 91587, + "Directional": false + }] + }, { + "ID": 4770, + "SourceStructureID": 21299, + "TargetStructureID": 91593, + "Label": "21299-91593 via Gap Junction from 49005 -> 92590", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 49005, + "TargetID": 92590, + "Directional": false + }] + }, { + "ID": 4771, + "SourceStructureID": 21299, + "TargetStructureID": 91593, + "Label": "21299-91593 via Unknown from 91600 -> 91599", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91600, + "TargetID": 91599, + "Directional": false + }] + }, { + "ID": 4772, + "SourceStructureID": 91651, + "TargetStructureID": 21299, + "Label": "91651-21299 via Gap Junction from 91652 -> 49019", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91652, + "TargetID": 49019, + "Directional": false + }] + }, { + "ID": 4773, + "SourceStructureID": 21299, + "TargetStructureID": 91653, + "Label": "21299-91653 via Unknown from 91656 -> 91655", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91656, + "TargetID": 91655, + "Directional": false + }] + }, { + "ID": 4774, + "SourceStructureID": 91692, + "TargetStructureID": 21299, + "Label": "91692-21299 via Unknown from 91693 -> 91684", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91693, + "TargetID": 91684, + "Directional": false + }] + }, { + "ID": 4775, + "SourceStructureID": 91694, + "TargetStructureID": 21299, + "Label": "91694-21299 via Unknown from 91695 -> 91685", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91695, + "TargetID": 91685, + "Directional": false + }] + }, { + "ID": 4776, + "SourceStructureID": 91701, + "TargetStructureID": 21299, + "Label": "91701-21299 via Unknown from 91702 -> 48964", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91702, + "TargetID": 48964, + "Directional": false + }] + }, { + "ID": 4777, + "SourceStructureID": 21299, + "TargetStructureID": 91709, + "Label": "21299-91709 via Adherens from 91714 -> 91713", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91714, + "TargetID": 91713, + "Directional": false + }] + }, { + "ID": 4778, + "SourceStructureID": 91709, + "TargetStructureID": 21299, + "Label": "91709-21299 via Gap Junction from 91710 -> 91708", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91710, + "TargetID": 91708, + "Directional": false + }] + }, { + "ID": 4779, + "SourceStructureID": 21299, + "TargetStructureID": 91723, + "Label": "21299-91723 via Gap Junction from 48841 -> 91724", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 48841, + "TargetID": 91724, + "Directional": false + }] + }, { + "ID": 4780, + "SourceStructureID": 91727, + "TargetStructureID": 21299, + "Label": "91727-21299 via Gap Junction from 91728 -> 48810", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91728, + "TargetID": 48810, + "Directional": false + }] + }, { + "ID": 4781, + "SourceStructureID": 91740, + "TargetStructureID": 21299, + "Label": "91740-21299 via Gap Junction from 91741 -> 48799", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91741, + "TargetID": 48799, + "Directional": false + }] + }, { + "ID": 4782, + "SourceStructureID": 91743, + "TargetStructureID": 21299, + "Label": "91743-21299 via Gap Junction from 91744 -> 48802", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91744, + "TargetID": 48802, + "Directional": false + }] + }, { + "ID": 4783, + "SourceStructureID": 91754, + "TargetStructureID": 21299, + "Label": "91754-21299 via Gap Junction from 91755 -> 48848", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 91755, + "TargetID": 48848, + "Directional": false + }] + }, { + "ID": 4784, + "SourceStructureID": 91768, + "TargetStructureID": 21299, + "Label": "91768-21299 via Unknown from 91769 -> 91767", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 91769, + "TargetID": 91767, + "Directional": false + }] + }, { + "ID": 4785, + "SourceStructureID": 98262, + "TargetStructureID": 21299, + "Label": "98262-21299 via Gap Junction from 98264 -> 48502", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 98264, + "TargetID": 48502, + "Directional": false + }] + }, { + "ID": 4786, + "SourceStructureID": 119517, + "TargetStructureID": 21299, + "Label": "119517-21299 via Gap Junction from 119530 -> 119529", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 119530, + "TargetID": 119529, + "Directional": false + }] + }, { + "ID": 4787, + "SourceStructureID": 131177, + "TargetStructureID": 21299, + "Label": "131177-21299 via Gap Junction from 131178 -> 131176", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 131178, + "TargetID": 131176, + "Directional": false + }] + }, { + "ID": 4788, + "SourceStructureID": 131177, + "TargetStructureID": 21299, + "Label": "131177-21299 via Unknown from 133798 -> 133799", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 133798, + "TargetID": 133799, + "Directional": false + }] + }, { + "ID": 4789, + "SourceStructureID": 21779, + "TargetStructureID": 22210, + "Label": "21779-22210 via Adherens from 32133 -> 32040", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 32133, + "TargetID": 32040, + "Directional": false + }] + }, { + "ID": 4790, + "SourceStructureID": 32273, + "TargetStructureID": 21779, + "Label": "32273-21779 via Adherens from 32275 -> 32106", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 32275, + "TargetID": 32106, + "Directional": false + }] + }, { + "ID": 4791, + "SourceStructureID": 68539, + "TargetStructureID": 22974, + "Label": "68539-22974 via Adherens from 70271 -> 68983", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70271, + "TargetID": 68983, + "Directional": false + }] + }, { + "ID": 4792, + "SourceStructureID": 22974, + "TargetStructureID": 68563, + "Label": "22974-68563 via Adherens from 68562 -> 68564", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68562, + "TargetID": 68564, + "Directional": false + }] + }, { + "ID": 4793, + "SourceStructureID": 68539, + "TargetStructureID": 22994, + "Label": "68539-22994 via Adherens from 75943 -> 75942", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75943, + "TargetID": 75942, + "Directional": false + }] + }, { + "ID": 4794, + "SourceStructureID": 22994, + "TargetStructureID": 75933, + "Label": "22994-75933 via Adherens from 75938 -> 75937", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75938, + "TargetID": 75937, + "Directional": false + }] + }, { + "ID": 4795, + "SourceStructureID": 23870, + "TargetStructureID": 73460, + "Label": "23870-73460 via Unknown from 73462 -> 73461", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73462, + "TargetID": 73461, + "Directional": false + }] + }, { + "ID": 4796, + "SourceStructureID": 24303, + "TargetStructureID": 24303, + "Label": "24303-24303 via Unknown from 122496 -> 122495", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 122496, + "TargetID": 122495, + "Directional": false + }] + }, { + "ID": 4797, + "SourceStructureID": 24303, + "TargetStructureID": 28886, + "Label": "24303-28886 via Gap Junction from 51373 -> 51372, 122498 -> 122497", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51373, + "TargetID": 51372, + "Directional": false + }, { + "SourceID": 122498, + "TargetID": 122497, + "Directional": false + }] + }, { + "ID": 4798, + "SourceStructureID": 122484, + "TargetStructureID": 24303, + "Label": "122484-24303 via Gap Junction from 122485 -> 122483", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122485, + "TargetID": 122483, + "Directional": false + }] + }, { + "ID": 4799, + "SourceStructureID": 24303, + "TargetStructureID": 122488, + "Label": "24303-122488 via Gap Junction from 122487 -> 122489", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122487, + "TargetID": 122489, + "Directional": false + }] + }, { + "ID": 4800, + "SourceStructureID": 24366, + "TargetStructureID": 24366, + "Label": "24366-24366 via Gap Junction from 24380 -> 24379", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 24380, + "TargetID": 24379, + "Directional": false + }] + }, { + "ID": 4801, + "SourceStructureID": 105844, + "TargetStructureID": 24401, + "Label": "105844-24401 via Gap Junction from 105845 -> 105846", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 105845, + "TargetID": 105846, + "Directional": false + }] + }, { + "ID": 4802, + "SourceStructureID": 121135, + "TargetStructureID": 24401, + "Label": "121135-24401 via Gap Junction from 121136 -> 48093", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121136, + "TargetID": 48093, + "Directional": false + }] + }, { + "ID": 4803, + "SourceStructureID": 121141, + "TargetStructureID": 24401, + "Label": "121141-24401 via Gap Junction from 121142 -> 121140", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121142, + "TargetID": 121140, + "Directional": false + }] + }, { + "ID": 4804, + "SourceStructureID": 24401, + "TargetStructureID": 121177, + "Label": "24401-121177 via Gap Junction from 121175 -> 121178", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121175, + "TargetID": 121178, + "Directional": false + }] + }, { + "ID": 4805, + "SourceStructureID": 25155, + "TargetStructureID": 25155, + "Label": "25155-25155 via Gap Junction from 38210 -> 38211", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 38210, + "TargetID": 38211, + "Directional": false + }] + }, { + "ID": 4806, + "SourceStructureID": 25359, + "TargetStructureID": 25342, + "Label": "25359-25342 via Unknown from 88461 -> 88463", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88461, + "TargetID": 88463, + "Directional": false + }] + }, { + "ID": 4807, + "SourceStructureID": 25367, + "TargetStructureID": 68023, + "Label": "25367-68023 via Adherens from 82355 -> 68660", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82355, + "TargetID": 68660, + "Directional": false + }] + }, { + "ID": 4808, + "SourceStructureID": 82362, + "TargetStructureID": 25367, + "Label": "82362-25367 via Unknown from 82363 -> 82361", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82363, + "TargetID": 82361, + "Directional": false + }] + }, { + "ID": 4809, + "SourceStructureID": 25440, + "TargetStructureID": 54744, + "Label": "25440-54744 via Adherens from 91008 -> 91009, 91010 -> 91011", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91008, + "TargetID": 91009, + "Directional": false + }, { + "SourceID": 91010, + "TargetID": 91011, + "Directional": false + }] + }, { + "ID": 4810, + "SourceStructureID": 25869, + "TargetStructureID": 36419, + "Label": "25869-36419 via Adherens from 118361 -> 118360, 118365 -> 118364, 118369 -> 98606, 118370 -> 98607", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 118361, + "TargetID": 118360, + "Directional": false + }, { + "SourceID": 118365, + "TargetID": 118364, + "Directional": false + }, { + "SourceID": 118369, + "TargetID": 98606, + "Directional": false + }, { + "SourceID": 118370, + "TargetID": 98607, + "Directional": false + }] + }, { + "ID": 4811, + "SourceStructureID": 26079, + "TargetStructureID": 26079, + "Label": "26079-26079 via Gap Junction from 120871 -> 47043", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 120871, + "TargetID": 47043, + "Directional": false + }] + }, { + "ID": 4812, + "SourceStructureID": 26079, + "TargetStructureID": 102007, + "Label": "26079-102007 via Unknown from 121243 -> 121244", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 121243, + "TargetID": 121244, + "Directional": false + }] + }, { + "ID": 4813, + "SourceStructureID": 102517, + "TargetStructureID": 26079, + "Label": "102517-26079 via Unknown from 102938 -> 102937", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 102938, + "TargetID": 102937, + "Directional": false + }] + }, { + "ID": 4814, + "SourceStructureID": 121258, + "TargetStructureID": 26079, + "Label": "121258-26079 via Gap Junction from 121259 -> 121257", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121259, + "TargetID": 121257, + "Directional": false + }] + }, { + "ID": 4815, + "SourceStructureID": 26079, + "TargetStructureID": 121265, + "Label": "26079-121265 via Gap Junction from 121263 -> 121266", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121263, + "TargetID": 121266, + "Directional": false + }] + }, { + "ID": 4816, + "SourceStructureID": 39862, + "TargetStructureID": 28886, + "Label": "39862-28886 via Gap Junction from 51357 -> 51356, 51386 -> 52365, 52317 -> 51336, 52368 -> 51400", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 51357, + "TargetID": 51356, + "Directional": false + }, { + "SourceID": 51386, + "TargetID": 52365, + "Directional": false + }, { + "SourceID": 52317, + "TargetID": 51336, + "Directional": false + }, { + "SourceID": 52368, + "TargetID": 51400, + "Directional": false + }] + }, { + "ID": 4817, + "SourceStructureID": 56973, + "TargetStructureID": 28886, + "Label": "56973-28886 via Gap Junction from 56974 -> 51418", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56974, + "TargetID": 51418, + "Directional": false + }] + }, { + "ID": 4818, + "SourceStructureID": 56975, + "TargetStructureID": 28886, + "Label": "56975-28886 via Gap Junction from 56976 -> 51452", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 56976, + "TargetID": 51452, + "Directional": false + }] + }, { + "ID": 4819, + "SourceStructureID": 30130, + "TargetStructureID": 68548, + "Label": "30130-68548 via Adherens from 75365 -> 75364", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75365, + "TargetID": 75364, + "Directional": false + }] + }, { + "ID": 4820, + "SourceStructureID": 31161, + "TargetStructureID": 31024, + "Label": "31161-31024 via Adherens from 31175 -> 31113", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 31175, + "TargetID": 31113, + "Directional": false + }] + }, { + "ID": 4821, + "SourceStructureID": 31024, + "TargetStructureID": 75272, + "Label": "31024-75272 via Adherens from 75278 -> 75277", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75278, + "TargetID": 75277, + "Directional": false + }] + }, { + "ID": 4822, + "SourceStructureID": 68486, + "TargetStructureID": 31161, + "Label": "68486-31161 via Adherens from 79607 -> 79606", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79607, + "TargetID": 79606, + "Directional": false + }] + }, { + "ID": 4823, + "SourceStructureID": 31702, + "TargetStructureID": 39998, + "Label": "31702-39998 via Adherens from 40001 -> 40000", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 40001, + "TargetID": 40000, + "Directional": false + }] + }, { + "ID": 4824, + "SourceStructureID": 40844, + "TargetStructureID": 32035, + "Label": "40844-32035 via Adherens from 40847 -> 32041", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 40847, + "TargetID": 32041, + "Directional": false + }] + }, { + "ID": 4825, + "SourceStructureID": 61114, + "TargetStructureID": 32383, + "Label": "61114-32383 via Gap Junction from 61115 -> 61113", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 61115, + "TargetID": 61113, + "Directional": false + }] + }, { + "ID": 4826, + "SourceStructureID": 80755, + "TargetStructureID": 32654, + "Label": "80755-32654 via Gap Junction from 80778 -> 80777", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 80778, + "TargetID": 80777, + "Directional": false + }] + }, { + "ID": 4827, + "SourceStructureID": 32804, + "TargetStructureID": 64196, + "Label": "32804-64196 via Adherens from 64212 -> 64213", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64212, + "TargetID": 64213, + "Directional": false + }] + }, { + "ID": 4828, + "SourceStructureID": 32959, + "TargetStructureID": 60535, + "Label": "32959-60535 via Adherens from 60539 -> 60538", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 60539, + "TargetID": 60538, + "Directional": false + }] + }, { + "ID": 4829, + "SourceStructureID": 68277, + "TargetStructureID": 35176, + "Label": "68277-35176 via Adherens from 82248 -> 82249", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82248, + "TargetID": 82249, + "Directional": false + }] + }, { + "ID": 4830, + "SourceStructureID": 86201, + "TargetStructureID": 35894, + "Label": "86201-35894 via Adherens from 86208 -> 35933", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86208, + "TargetID": 35933, + "Directional": false + }] + }, { + "ID": 4831, + "SourceStructureID": 82743, + "TargetStructureID": 36130, + "Label": "82743-36130 via Adherens from 82785 -> 82786", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82785, + "TargetID": 82786, + "Directional": false + }] + }, { + "ID": 4832, + "SourceStructureID": 36516, + "TargetStructureID": 67331, + "Label": "36516-67331 via Gap Junction from 67335 -> 67334", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 67335, + "TargetID": 67334, + "Directional": false + }] + }, { + "ID": 4833, + "SourceStructureID": 36516, + "TargetStructureID": 67410, + "Label": "36516-67410 via Adherens from 82771 -> 82770", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82771, + "TargetID": 82770, + "Directional": false + }] + }, { + "ID": 4834, + "SourceStructureID": 90530, + "TargetStructureID": 38632, + "Label": "90530-38632 via Adherens from 90532 -> 90533", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90532, + "TargetID": 90533, + "Directional": false + }] + }, { + "ID": 4835, + "SourceStructureID": 40934, + "TargetStructureID": 39216, + "Label": "40934-39216 via Unknown from 90144 -> 90146", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90144, + "TargetID": 90146, + "Directional": false + }] + }, { + "ID": 4836, + "SourceStructureID": 39530, + "TargetStructureID": 97024, + "Label": "39530-97024 via Unknown from 97083 -> 97082", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 97083, + "TargetID": 97082, + "Directional": false + }] + }, { + "ID": 4837, + "SourceStructureID": 116581, + "TargetStructureID": 39615, + "Label": "116581-39615 via Adherens from 116583 -> 116580", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116583, + "TargetID": 116580, + "Directional": false + }] + }, { + "ID": 4838, + "SourceStructureID": 39787, + "TargetStructureID": 39790, + "Label": "39787-39790 via Gap Junction from 93135 -> 93136", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93135, + "TargetID": 93136, + "Directional": false + }] + }, { + "ID": 4839, + "SourceStructureID": 39807, + "TargetStructureID": 39816, + "Label": "39807-39816 via Gap Junction from 89977 -> 89976", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89977, + "TargetID": 89976, + "Directional": false + }] + }, { + "ID": 4840, + "SourceStructureID": 39816, + "TargetStructureID": 39824, + "Label": "39816-39824 via Unknown from 89973 -> 89975", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89973, + "TargetID": 89975, + "Directional": false + }] + }, { + "ID": 4841, + "SourceStructureID": 40039, + "TargetStructureID": 80210, + "Label": "40039-80210 via Adherens from 84382 -> 84383", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84382, + "TargetID": 84383, + "Directional": false + }] + }, { + "ID": 4842, + "SourceStructureID": 40039, + "TargetStructureID": 82704, + "Label": "40039-82704 via Adherens from 82705 -> 82706", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82705, + "TargetID": 82706, + "Directional": false + }] + }, { + "ID": 4843, + "SourceStructureID": 40039, + "TargetStructureID": 86162, + "Label": "40039-86162 via Gap Junction from 82701 -> 86163", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 82701, + "TargetID": 86163, + "Directional": false + }] + }, { + "ID": 4844, + "SourceStructureID": 40469, + "TargetStructureID": 40469, + "Label": "40469-40469 via Adherens from 40492 -> 40491", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 40492, + "TargetID": 40491, + "Directional": false + }] + }, { + "ID": 4845, + "SourceStructureID": 40911, + "TargetStructureID": 40917, + "Label": "40911-40917 via Unknown from 93294 -> 93293", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 93294, + "TargetID": 93293, + "Directional": false + }] + }, { + "ID": 4846, + "SourceStructureID": 90328, + "TargetStructureID": 40951, + "Label": "90328-40951 via Unknown from 90342 -> 90343", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90342, + "TargetID": 90343, + "Directional": false + }] + }, { + "ID": 4847, + "SourceStructureID": 41474, + "TargetStructureID": 41474, + "Label": "41474-41474 via Gap Junction from 103300 -> 103299", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 103300, + "TargetID": 103299, + "Directional": false + }] + }, { + "ID": 4848, + "SourceStructureID": 41608, + "TargetStructureID": 66523, + "Label": "41608-66523 via Adherens from 77955 -> 77954", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77955, + "TargetID": 77954, + "Directional": false + }] + }, { + "ID": 4849, + "SourceStructureID": 68497, + "TargetStructureID": 41608, + "Label": "68497-41608 via Adherens from 81598 -> 81599", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81598, + "TargetID": 81599, + "Directional": false + }] + }, { + "ID": 4850, + "SourceStructureID": 41636, + "TargetStructureID": 85946, + "Label": "41636-85946 via Gap Junction from 85949 -> 85948", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 85949, + "TargetID": 85948, + "Directional": false + }] + }, { + "ID": 4851, + "SourceStructureID": 68444, + "TargetStructureID": 43431, + "Label": "68444-43431 via Adherens from 80455 -> 80456", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80455, + "TargetID": 80456, + "Directional": false + }] + }, { + "ID": 4852, + "SourceStructureID": 68585, + "TargetStructureID": 43712, + "Label": "68585-43712 via Adherens from 68586 -> 68584", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68586, + "TargetID": 68584, + "Directional": false + }] + }, { + "ID": 4853, + "SourceStructureID": 43716, + "TargetStructureID": 88260, + "Label": "43716-88260 via Adherens from 88298 -> 88297", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88298, + "TargetID": 88297, + "Directional": false + }] + }, { + "ID": 4854, + "SourceStructureID": 53828, + "TargetStructureID": 44256, + "Label": "53828-44256 via Gap Junction from 54664 -> 54663, 121672 -> 121673", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54664, + "TargetID": 54663, + "Directional": false + }, { + "SourceID": 121672, + "TargetID": 121673, + "Directional": false + }] + }, { + "ID": 4855, + "SourceStructureID": 44970, + "TargetStructureID": 44346, + "Label": "44970-44346 via Adherens from 44976 -> 44347", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 44976, + "TargetID": 44347, + "Directional": false + }] + }, { + "ID": 4856, + "SourceStructureID": 44346, + "TargetStructureID": 87972, + "Label": "44346-87972 via Adherens from 44367 -> 88042, 87976 -> 87977, 87984 -> 87985, 87986 -> 87987, 88041 -> 88040", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 44367, + "TargetID": 88042, + "Directional": false + }, { + "SourceID": 87976, + "TargetID": 87977, + "Directional": false + }, { + "SourceID": 87984, + "TargetID": 87985, + "Directional": false + }, { + "SourceID": 87986, + "TargetID": 87987, + "Directional": false + }, { + "SourceID": 88041, + "TargetID": 88040, + "Directional": false + }] + }, { + "ID": 4857, + "SourceStructureID": 68539, + "TargetStructureID": 45555, + "Label": "68539-45555 via Adherens from 70278 -> 70277", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70278, + "TargetID": 70277, + "Directional": false + }] + }, { + "ID": 4858, + "SourceStructureID": 68539, + "TargetStructureID": 45571, + "Label": "68539-45571 via Adherens from 76036 -> 70282", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76036, + "TargetID": 70282, + "Directional": false + }] + }, { + "ID": 4859, + "SourceStructureID": 61836, + "TargetStructureID": 45574, + "Label": "61836-45574 via Adherens from 69787 -> 69788", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 69787, + "TargetID": 69788, + "Directional": false + }] + }, { + "ID": 4860, + "SourceStructureID": 46801, + "TargetStructureID": 45894, + "Label": "46801-45894 via Gap Junction from 46802 -> 45905", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46802, + "TargetID": 45905, + "Directional": false + }] + }, { + "ID": 4861, + "SourceStructureID": 46388, + "TargetStructureID": 46105, + "Label": "46388-46105 via Gap Junction from 46397 -> 46233", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 46397, + "TargetID": 46233, + "Directional": false + }] + }, { + "ID": 4862, + "SourceStructureID": 46388, + "TargetStructureID": 50449, + "Label": "46388-50449 via Gap Junction from 121433 -> 121434, 121436 -> 120843, 121442 -> 121443", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121433, + "TargetID": 121434, + "Directional": false + }, { + "SourceID": 121436, + "TargetID": 120843, + "Directional": false + }, { + "SourceID": 121442, + "TargetID": 121443, + "Directional": false + }] + }, { + "ID": 4863, + "SourceStructureID": 89120, + "TargetStructureID": 46388, + "Label": "89120-46388 via Gap Junction from 89147 -> 46588, 122403 -> 122402", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89147, + "TargetID": 46588, + "Directional": false + }, { + "SourceID": 122403, + "TargetID": 122402, + "Directional": false + }] + }, { + "ID": 4864, + "SourceStructureID": 118258, + "TargetStructureID": 46388, + "Label": "118258-46388 via Gap Junction from 118260 -> 148231, 118261 -> 148232", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118260, + "TargetID": 148231, + "Directional": false + }, { + "SourceID": 118261, + "TargetID": 148232, + "Directional": false + }] + }, { + "ID": 4865, + "SourceStructureID": 46498, + "TargetStructureID": 136884, + "Label": "46498-136884 via Conventional from 127915 -> 136888", + "Type": "Conventional", + "Directional": false, + "Links": [{ + "SourceID": 127915, + "TargetID": 136888, + "Directional": false + }] + }, { + "ID": 4866, + "SourceStructureID": 69162, + "TargetStructureID": 47013, + "Label": "69162-47013 via Adherens from 69256 -> 47027", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 69256, + "TargetID": 47027, + "Directional": false + }] + }, { + "ID": 4867, + "SourceStructureID": 47445, + "TargetStructureID": 47445, + "Label": "47445-47445 via Gap Junction from 118185 -> 118184", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118185, + "TargetID": 118184, + "Directional": false + }] + }, { + "ID": 4868, + "SourceStructureID": 121889, + "TargetStructureID": 47445, + "Label": "121889-47445 via Gap Junction from 121891 -> 118187", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121891, + "TargetID": 118187, + "Directional": false + }] + }, { + "ID": 4869, + "SourceStructureID": 132009, + "TargetStructureID": 47445, + "Label": "132009-47445 via Gap Junction from 132024 -> 132026", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132024, + "TargetID": 132026, + "Directional": false + }] + }, { + "ID": 4870, + "SourceStructureID": 48516, + "TargetStructureID": 48516, + "Label": "48516-48516 via Adherens from 93796 -> 93798", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93796, + "TargetID": 93798, + "Directional": false + }] + }, { + "ID": 4871, + "SourceStructureID": 48516, + "TargetStructureID": 48516, + "Label": "48516-48516 via Gap Junction from 93795 -> 51691, 93800 -> 52027, 93803 -> 93802", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93795, + "TargetID": 51691, + "Directional": false + }, { + "SourceID": 93800, + "TargetID": 52027, + "Directional": false + }, { + "SourceID": 93803, + "TargetID": 93802, + "Directional": false + }] + }, { + "ID": 4872, + "SourceStructureID": 48516, + "TargetStructureID": 64939, + "Label": "48516-64939 via Gap Junction from 93818 -> 93819, 123298 -> 123299", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93818, + "TargetID": 93819, + "Directional": false + }, { + "SourceID": 123298, + "TargetID": 123299, + "Directional": false + }] + }, { + "ID": 4873, + "SourceStructureID": 93790, + "TargetStructureID": 48516, + "Label": "93790-48516 via Gap Junction from 93791 -> 93783", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 93791, + "TargetID": 93783, + "Directional": false + }] + }, { + "ID": 4874, + "SourceStructureID": 89020, + "TargetStructureID": 49184, + "Label": "89020-49184 via Gap Junction from 89021 -> 49356", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89021, + "TargetID": 49356, + "Directional": false + }] + }, { + "ID": 4875, + "SourceStructureID": 89029, + "TargetStructureID": 49184, + "Label": "89029-49184 via Gap Junction from 89030 -> 49344", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89030, + "TargetID": 49344, + "Directional": false + }] + }, { + "ID": 4876, + "SourceStructureID": 50449, + "TargetStructureID": 89120, + "Label": "50449-89120 via Gap Junction from 122407 -> 122406", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 122407, + "TargetID": 122406, + "Directional": false + }] + }, { + "ID": 4877, + "SourceStructureID": 89829, + "TargetStructureID": 50894, + "Label": "89829-50894 via Gap Junction from 89830 -> 52399", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89830, + "TargetID": 52399, + "Directional": false + }] + }, { + "ID": 4878, + "SourceStructureID": 88733, + "TargetStructureID": 51617, + "Label": "88733-51617 via Unknown from 115464 -> 115463", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 115464, + "TargetID": 115463, + "Directional": false + }] + }, { + "ID": 4879, + "SourceStructureID": 52410, + "TargetStructureID": 87294, + "Label": "52410-87294 via Adherens from 87299 -> 87298", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87299, + "TargetID": 87298, + "Directional": false + }] + }, { + "ID": 4880, + "SourceStructureID": 53828, + "TargetStructureID": 53778, + "Label": "53828-53778 via Gap Junction from 54666 -> 54665", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 54666, + "TargetID": 54665, + "Directional": false + }] + }, { + "ID": 4881, + "SourceStructureID": 53828, + "TargetStructureID": 53828, + "Label": "53828-53828 via Gap Junction from 123118 -> 123117", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 123118, + "TargetID": 123117, + "Directional": false + }] + }, { + "ID": 4882, + "SourceStructureID": 67864, + "TargetStructureID": 54078, + "Label": "67864-54078 via Adherens from 67865 -> 67863", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67865, + "TargetID": 67863, + "Directional": false + }] + }, { + "ID": 4883, + "SourceStructureID": 88975, + "TargetStructureID": 55098, + "Label": "88975-55098 via Adherens from 88976 -> 88974", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88976, + "TargetID": 88974, + "Directional": false + }] + }, { + "ID": 4884, + "SourceStructureID": 57133, + "TargetStructureID": 117127, + "Label": "57133-117127 via Gap Junction from 57138 -> 117144", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 57138, + "TargetID": 117144, + "Directional": false + }] + }, { + "ID": 4885, + "SourceStructureID": 57353, + "TargetStructureID": 57353, + "Label": "57353-57353 via Unknown from 124425 -> 124426", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124425, + "TargetID": 124426, + "Directional": false + }] + }, { + "ID": 4886, + "SourceStructureID": 61397, + "TargetStructureID": 57353, + "Label": "61397-57353 via Gap Junction from 124398 -> 124395", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 124398, + "TargetID": 124395, + "Directional": false + }] + }, { + "ID": 4887, + "SourceStructureID": 124282, + "TargetStructureID": 57353, + "Label": "124282-57353 via Gap Junction from 124283 -> 124276, 124284 -> 124285", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 124283, + "TargetID": 124276, + "Directional": false + }, { + "SourceID": 124284, + "TargetID": 124285, + "Directional": false + }] + }, { + "ID": 4888, + "SourceStructureID": 57353, + "TargetStructureID": 124301, + "Label": "57353-124301 via Adherens from 124428 -> 124429", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 124428, + "TargetID": 124429, + "Directional": false + }] + }, { + "ID": 4889, + "SourceStructureID": 124313, + "TargetStructureID": 57353, + "Label": "124313-57353 via Gap Junction from 124316 -> 124311", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 124316, + "TargetID": 124311, + "Directional": false + }] + }, { + "ID": 4890, + "SourceStructureID": 124402, + "TargetStructureID": 57353, + "Label": "124402-57353 via Gap Junction from 124403 -> 124401", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 124403, + "TargetID": 124401, + "Directional": false + }] + }, { + "ID": 4891, + "SourceStructureID": 86620, + "TargetStructureID": 58696, + "Label": "86620-58696 via Adherens from 86621 -> 86619", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86621, + "TargetID": 86619, + "Directional": false + }] + }, { + "ID": 4892, + "SourceStructureID": 86927, + "TargetStructureID": 58696, + "Label": "86927-58696 via Adherens from 86930 -> 86929", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86930, + "TargetID": 86929, + "Directional": false + }] + }, { + "ID": 4893, + "SourceStructureID": 86945, + "TargetStructureID": 58696, + "Label": "86945-58696 via Adherens from 86949 -> 86948", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86949, + "TargetID": 86948, + "Directional": false + }] + }, { + "ID": 4894, + "SourceStructureID": 86971, + "TargetStructureID": 58696, + "Label": "86971-58696 via Adherens from 86973 -> 86974, 86978 -> 86977", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86973, + "TargetID": 86974, + "Directional": false + }, { + "SourceID": 86978, + "TargetID": 86977, + "Directional": false + }] + }, { + "ID": 4895, + "SourceStructureID": 58723, + "TargetStructureID": 58714, + "Label": "58723-58714 via Adherens from 86140 -> 86139", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86140, + "TargetID": 86139, + "Directional": false + }] + }, { + "ID": 4896, + "SourceStructureID": 58784, + "TargetStructureID": 58782, + "Label": "58784-58782 via Gap Junction from 58788 -> 58787", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 58788, + "TargetID": 58787, + "Directional": false + }] + }, { + "ID": 4897, + "SourceStructureID": 59211, + "TargetStructureID": 59208, + "Label": "59211-59208 via Gap Junction from 59213 -> 59214", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59213, + "TargetID": 59214, + "Directional": false + }] + }, { + "ID": 4898, + "SourceStructureID": 59211, + "TargetStructureID": 59219, + "Label": "59211-59219 via Gap Junction from 59218 -> 59220", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59218, + "TargetID": 59220, + "Directional": false + }] + }, { + "ID": 4899, + "SourceStructureID": 59225, + "TargetStructureID": 59223, + "Label": "59225-59223 via Gap Junction from 59226 -> 59224", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59226, + "TargetID": 59224, + "Directional": false + }] + }, { + "ID": 4900, + "SourceStructureID": 59229, + "TargetStructureID": 59223, + "Label": "59229-59223 via Gap Junction from 59230 -> 59231, 59235 -> 59237, 59238 -> 59239, 59241 -> 59240", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59230, + "TargetID": 59231, + "Directional": false + }, { + "SourceID": 59235, + "TargetID": 59237, + "Directional": false + }, { + "SourceID": 59238, + "TargetID": 59239, + "Directional": false + }, { + "SourceID": 59241, + "TargetID": 59240, + "Directional": false + }] + }, { + "ID": 4901, + "SourceStructureID": 59294, + "TargetStructureID": 59262, + "Label": "59294-59262 via Unknown from 59295 -> 59293", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 59295, + "TargetID": 59293, + "Directional": false + }] + }, { + "ID": 4902, + "SourceStructureID": 59262, + "TargetStructureID": 59301, + "Label": "59262-59301 via Gap Junction from 59299 -> 59302", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59299, + "TargetID": 59302, + "Directional": false + }] + }, { + "ID": 4903, + "SourceStructureID": 59262, + "TargetStructureID": 59304, + "Label": "59262-59304 via Gap Junction from 59306 -> 59307", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59306, + "TargetID": 59307, + "Directional": false + }] + }, { + "ID": 4904, + "SourceStructureID": 59340, + "TargetStructureID": 59333, + "Label": "59340-59333 via Gap Junction from 59341 -> 59339", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59341, + "TargetID": 59339, + "Directional": false + }] + }, { + "ID": 4905, + "SourceStructureID": 85050, + "TargetStructureID": 59333, + "Label": "85050-59333 via Adherens from 85051 -> 85049", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85051, + "TargetID": 85049, + "Directional": false + }] + }, { + "ID": 4906, + "SourceStructureID": 85056, + "TargetStructureID": 59333, + "Label": "85056-59333 via Adherens from 85057 -> 85055", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85057, + "TargetID": 85055, + "Directional": false + }] + }, { + "ID": 4907, + "SourceStructureID": 59333, + "TargetStructureID": 85062, + "Label": "59333-85062 via Adherens from 85064 -> 85063", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85064, + "TargetID": 85063, + "Directional": false + }] + }, { + "ID": 4908, + "SourceStructureID": 59392, + "TargetStructureID": 59362, + "Label": "59392-59362 via Gap Junction from 59401 -> 59403, 59414 -> 59415", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59401, + "TargetID": 59403, + "Directional": false + }, { + "SourceID": 59414, + "TargetID": 59415, + "Directional": false + }] + }, { + "ID": 4909, + "SourceStructureID": 59419, + "TargetStructureID": 85141, + "Label": "59419-85141 via Adherens from 85272 -> 85271", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85272, + "TargetID": 85271, + "Directional": false + }] + }, { + "ID": 4910, + "SourceStructureID": 59419, + "TargetStructureID": 85141, + "Label": "59419-85141 via Gap Junction from 85273 -> 85267, 85384 -> 85383", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 85273, + "TargetID": 85267, + "Directional": false + }, { + "SourceID": 85384, + "TargetID": 85383, + "Directional": false + }] + }, { + "ID": 4911, + "SourceStructureID": 59419, + "TargetStructureID": 85352, + "Label": "59419-85352 via Adherens from 85355 -> 85354", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85355, + "TargetID": 85354, + "Directional": false + }] + }, { + "ID": 4912, + "SourceStructureID": 59422, + "TargetStructureID": 59469, + "Label": "59422-59469 via Gap Junction from 59472 -> 59470", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59472, + "TargetID": 59470, + "Directional": false + }] + }, { + "ID": 4913, + "SourceStructureID": 65267, + "TargetStructureID": 59455, + "Label": "65267-59455 via Gap Junction from 69949 -> 59457", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 69949, + "TargetID": 59457, + "Directional": false + }] + }, { + "ID": 4914, + "SourceStructureID": 59474, + "TargetStructureID": 59469, + "Label": "59474-59469 via Gap Junction from 59475 -> 59473", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59475, + "TargetID": 59473, + "Directional": false + }] + }, { + "ID": 4915, + "SourceStructureID": 59477, + "TargetStructureID": 59474, + "Label": "59477-59474 via Gap Junction from 59478 -> 59476, 59479 -> 59481", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59478, + "TargetID": 59476, + "Directional": false + }, { + "SourceID": 59479, + "TargetID": 59481, + "Directional": false + }] + }, { + "ID": 4916, + "SourceStructureID": 59474, + "TargetStructureID": 59491, + "Label": "59474-59491 via Gap Junction from 59496 -> 59495", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59496, + "TargetID": 59495, + "Directional": false + }] + }, { + "ID": 4917, + "SourceStructureID": 59524, + "TargetStructureID": 59523, + "Label": "59524-59523 via Gap Junction from 59527 -> 59528", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 59527, + "TargetID": 59528, + "Directional": false + }] + }, { + "ID": 4918, + "SourceStructureID": 60989, + "TargetStructureID": 60976, + "Label": "60989-60976 via Gap Junction from 60993 -> 60987", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 60993, + "TargetID": 60987, + "Directional": false + }] + }, { + "ID": 4919, + "SourceStructureID": 61108, + "TargetStructureID": 79350, + "Label": "61108-79350 via Unknown from 117738 -> 79352", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 117738, + "TargetID": 79352, + "Directional": false + }] + }, { + "ID": 4920, + "SourceStructureID": 61809, + "TargetStructureID": 61807, + "Label": "61809-61807 via Adherens from 68383 -> 68385", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68383, + "TargetID": 68385, + "Directional": false + }] + }, { + "ID": 4921, + "SourceStructureID": 61809, + "TargetStructureID": 80491, + "Label": "61809-80491 via Adherens from 80490 -> 80492", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80490, + "TargetID": 80492, + "Directional": false + }] + }, { + "ID": 4922, + "SourceStructureID": 68548, + "TargetStructureID": 61823, + "Label": "68548-61823 via Gap Junction from 73558 -> 64616", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 73558, + "TargetID": 64616, + "Directional": false + }] + }, { + "ID": 4923, + "SourceStructureID": 70317, + "TargetStructureID": 61823, + "Label": "70317-61823 via Adherens from 70320 -> 70316", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70320, + "TargetID": 70316, + "Directional": false + }] + }, { + "ID": 4924, + "SourceStructureID": 61823, + "TargetStructureID": 70343, + "Label": "61823-70343 via Adherens from 70345 -> 70344", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70345, + "TargetID": 70344, + "Directional": false + }] + }, { + "ID": 4925, + "SourceStructureID": 61864, + "TargetStructureID": 68901, + "Label": "61864-68901 via Adherens from 68913 -> 68912", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68913, + "TargetID": 68912, + "Directional": false + }] + }, { + "ID": 4926, + "SourceStructureID": 62325, + "TargetStructureID": 80516, + "Label": "62325-80516 via Adherens from 80515 -> 80517", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80515, + "TargetID": 80517, + "Directional": false + }] + }, { + "ID": 4927, + "SourceStructureID": 62325, + "TargetStructureID": 80534, + "Label": "62325-80534 via Adherens from 80909 -> 80908", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80909, + "TargetID": 80908, + "Directional": false + }] + }, { + "ID": 4928, + "SourceStructureID": 80684, + "TargetStructureID": 62325, + "Label": "80684-62325 via Unknown from 80688 -> 80687", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80688, + "TargetID": 80687, + "Directional": false + }] + }, { + "ID": 4929, + "SourceStructureID": 62325, + "TargetStructureID": 80751, + "Label": "62325-80751 via Gap Junction from 62331 -> 80752", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 62331, + "TargetID": 80752, + "Directional": false + }] + }, { + "ID": 4930, + "SourceStructureID": 62325, + "TargetStructureID": 80849, + "Label": "62325-80849 via Unknown from 80850 -> 80851", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80850, + "TargetID": 80851, + "Directional": false + }] + }, { + "ID": 4931, + "SourceStructureID": 62325, + "TargetStructureID": 80871, + "Label": "62325-80871 via Adherens from 80994 -> 80995", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80994, + "TargetID": 80995, + "Directional": false + }] + }, { + "ID": 4932, + "SourceStructureID": 80896, + "TargetStructureID": 62325, + "Label": "80896-62325 via Adherens from 80903 -> 80902", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80903, + "TargetID": 80902, + "Directional": false + }] + }, { + "ID": 4933, + "SourceStructureID": 62325, + "TargetStructureID": 80896, + "Label": "62325-80896 via Unknown from 80906 -> 80907", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 80906, + "TargetID": 80907, + "Directional": false + }] + }, { + "ID": 4934, + "SourceStructureID": 81267, + "TargetStructureID": 62325, + "Label": "81267-62325 via Adherens from 81268 -> 81269", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81268, + "TargetID": 81269, + "Directional": false + }] + }, { + "ID": 4935, + "SourceStructureID": 62325, + "TargetStructureID": 81282, + "Label": "62325-81282 via Gap Junction from 81284 -> 81283", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 81284, + "TargetID": 81283, + "Directional": false + }] + }, { + "ID": 4936, + "SourceStructureID": 62325, + "TargetStructureID": 81304, + "Label": "62325-81304 via Adherens from 81307 -> 81306, 81312 -> 81280, 81314 -> 81313", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81307, + "TargetID": 81306, + "Directional": false + }, { + "SourceID": 81312, + "TargetID": 81280, + "Directional": false + }, { + "SourceID": 81314, + "TargetID": 81313, + "Directional": false + }] + }, { + "ID": 4937, + "SourceStructureID": 81304, + "TargetStructureID": 62325, + "Label": "81304-62325 via Gap Junction from 81383 -> 81382, 81390 -> 81389", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 81383, + "TargetID": 81382, + "Directional": false + }, { + "SourceID": 81390, + "TargetID": 81389, + "Directional": false + }] + }, { + "ID": 4938, + "SourceStructureID": 81308, + "TargetStructureID": 62325, + "Label": "81308-62325 via Adherens from 81310 -> 81309", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81310, + "TargetID": 81309, + "Directional": false + }] + }, { + "ID": 4939, + "SourceStructureID": 81308, + "TargetStructureID": 62325, + "Label": "81308-62325 via Unknown from 81385 -> 81384", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81385, + "TargetID": 81384, + "Directional": false + }] + }, { + "ID": 4940, + "SourceStructureID": 62325, + "TargetStructureID": 81316, + "Label": "62325-81316 via Unknown from 81318 -> 81320", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81318, + "TargetID": 81320, + "Directional": false + }] + }, { + "ID": 4941, + "SourceStructureID": 81361, + "TargetStructureID": 62325, + "Label": "81361-62325 via Adherens from 81364 -> 81365", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81364, + "TargetID": 81365, + "Directional": false + }] + }, { + "ID": 4942, + "SourceStructureID": 62325, + "TargetStructureID": 81361, + "Label": "62325-81361 via Gap Junction from 81362 -> 81363", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 81362, + "TargetID": 81363, + "Directional": false + }] + }, { + "ID": 4943, + "SourceStructureID": 81366, + "TargetStructureID": 62325, + "Label": "81366-62325 via Gap Junction from 81369 -> 81368", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 81369, + "TargetID": 81368, + "Directional": false + }] + }, { + "ID": 4944, + "SourceStructureID": 62325, + "TargetStructureID": 81367, + "Label": "62325-81367 via Gap Junction from 81370 -> 81371", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 81370, + "TargetID": 81371, + "Directional": false + }] + }, { + "ID": 4945, + "SourceStructureID": 62325, + "TargetStructureID": 81373, + "Label": "62325-81373 via Adherens from 81376 -> 81374", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81376, + "TargetID": 81374, + "Directional": false + }] + }, { + "ID": 4946, + "SourceStructureID": 62325, + "TargetStructureID": 81422, + "Label": "62325-81422 via Unknown from 81424 -> 81423", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81424, + "TargetID": 81423, + "Directional": false + }] + }, { + "ID": 4947, + "SourceStructureID": 65351, + "TargetStructureID": 63371, + "Label": "65351-63371 via Adherens from 79032 -> 79031", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79032, + "TargetID": 79031, + "Directional": false + }] + }, { + "ID": 4948, + "SourceStructureID": 64417, + "TargetStructureID": 64414, + "Label": "64417-64414 via Adherens from 64419 -> 64416", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 64419, + "TargetID": 64416, + "Directional": false + }] + }, { + "ID": 4949, + "SourceStructureID": 89599, + "TargetStructureID": 64452, + "Label": "89599-64452 via Adherens from 89600 -> 89598", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89600, + "TargetID": 89598, + "Directional": false + }] + }, { + "ID": 4950, + "SourceStructureID": 89599, + "TargetStructureID": 64452, + "Label": "89599-64452 via Gap Junction from 89601 -> 89597", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89601, + "TargetID": 89597, + "Directional": false + }] + }, { + "ID": 4951, + "SourceStructureID": 64452, + "TargetStructureID": 89617, + "Label": "64452-89617 via Adherens from 89615 -> 89619", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89615, + "TargetID": 89619, + "Directional": false + }] + }, { + "ID": 4952, + "SourceStructureID": 111986, + "TargetStructureID": 64452, + "Label": "111986-64452 via Adherens from 111988 -> 111989", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 111988, + "TargetID": 111989, + "Directional": false + }] + }, { + "ID": 4953, + "SourceStructureID": 65576, + "TargetStructureID": 64492, + "Label": "65576-64492 via Adherens from 65583 -> 65582", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65583, + "TargetID": 65582, + "Directional": false + }] + }, { + "ID": 4954, + "SourceStructureID": 64492, + "TargetStructureID": 65963, + "Label": "64492-65963 via Adherens from 65975 -> 65976", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65975, + "TargetID": 65976, + "Directional": false + }] + }, { + "ID": 4955, + "SourceStructureID": 69428, + "TargetStructureID": 64939, + "Label": "69428-64939 via Gap Junction from 69429 -> 69420", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 69429, + "TargetID": 69420, + "Directional": false + }] + }, { + "ID": 4956, + "SourceStructureID": 69431, + "TargetStructureID": 64939, + "Label": "69431-64939 via Adherens from 69432 -> 69430", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 69432, + "TargetID": 69430, + "Directional": false + }] + }, { + "ID": 4957, + "SourceStructureID": 64939, + "TargetStructureID": 70084, + "Label": "64939-70084 via Gap Junction from 69724 -> 70085", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 69724, + "TargetID": 70085, + "Directional": false + }] + }, { + "ID": 4958, + "SourceStructureID": 74907, + "TargetStructureID": 64939, + "Label": "74907-64939 via Adherens from 83779 -> 83780", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83779, + "TargetID": 83780, + "Directional": false + }] + }, { + "ID": 4959, + "SourceStructureID": 64939, + "TargetStructureID": 74907, + "Label": "64939-74907 via Unknown from 83840 -> 83835", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83840, + "TargetID": 83835, + "Directional": false + }] + }, { + "ID": 4960, + "SourceStructureID": 66523, + "TargetStructureID": 65318, + "Label": "66523-65318 via Adherens from 77925 -> 77924", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77925, + "TargetID": 77924, + "Directional": false + }] + }, { + "ID": 4961, + "SourceStructureID": 65320, + "TargetStructureID": 67423, + "Label": "65320-67423 via Adherens from 81356 -> 81357", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81356, + "TargetID": 81357, + "Directional": false + }] + }, { + "ID": 4962, + "SourceStructureID": 67291, + "TargetStructureID": 65324, + "Label": "67291-65324 via Adherens from 67296 -> 67295", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67296, + "TargetID": 67295, + "Directional": false + }] + }, { + "ID": 4963, + "SourceStructureID": 76947, + "TargetStructureID": 65351, + "Label": "76947-65351 via Adherens from 79007 -> 79006", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79007, + "TargetID": 79006, + "Directional": false + }] + }, { + "ID": 4964, + "SourceStructureID": 78950, + "TargetStructureID": 65351, + "Label": "78950-65351 via Adherens from 78951 -> 78952", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78951, + "TargetID": 78952, + "Directional": false + }] + }, { + "ID": 4965, + "SourceStructureID": 78964, + "TargetStructureID": 65351, + "Label": "78964-65351 via Adherens from 78973 -> 78972", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78973, + "TargetID": 78972, + "Directional": false + }] + }, { + "ID": 4966, + "SourceStructureID": 78964, + "TargetStructureID": 65351, + "Label": "78964-65351 via Unknown from 78965 -> 78963", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78965, + "TargetID": 78963, + "Directional": false + }] + }, { + "ID": 4967, + "SourceStructureID": 65351, + "TargetStructureID": 78977, + "Label": "65351-78977 via Adherens from 78976 -> 78978", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78976, + "TargetID": 78978, + "Directional": false + }] + }, { + "ID": 4968, + "SourceStructureID": 65351, + "TargetStructureID": 79034, + "Label": "65351-79034 via Adherens from 79040 -> 79036", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79040, + "TargetID": 79036, + "Directional": false + }] + }, { + "ID": 4969, + "SourceStructureID": 79045, + "TargetStructureID": 65351, + "Label": "79045-65351 via Adherens from 79046 -> 79044", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79046, + "TargetID": 79044, + "Directional": false + }] + }, { + "ID": 4970, + "SourceStructureID": 65358, + "TargetStructureID": 65369, + "Label": "65358-65369 via Adherens from 65370 -> 65371", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 65370, + "TargetID": 65371, + "Directional": false + }] + }, { + "ID": 4971, + "SourceStructureID": 65470, + "TargetStructureID": 65464, + "Label": "65470-65464 via Gap Junction from 65471 -> 65469", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 65471, + "TargetID": 65469, + "Directional": false + }] + }, { + "ID": 4972, + "SourceStructureID": 116703, + "TargetStructureID": 65536, + "Label": "116703-65536 via Adherens from 116704 -> 67069", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116704, + "TargetID": 67069, + "Directional": false + }] + }, { + "ID": 4973, + "SourceStructureID": 65623, + "TargetStructureID": 65569, + "Label": "65623-65569 via Adherens from 81391 -> 81392", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81391, + "TargetID": 81392, + "Directional": false + }] + }, { + "ID": 4974, + "SourceStructureID": 83461, + "TargetStructureID": 65835, + "Label": "83461-65835 via Gap Junction from 83462 -> 83460, 83463 -> 83464", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 83462, + "TargetID": 83460, + "Directional": false + }, { + "SourceID": 83463, + "TargetID": 83464, + "Directional": false + }] + }, { + "ID": 4975, + "SourceStructureID": 67322, + "TargetStructureID": 65864, + "Label": "67322-65864 via Postsynapse from 67363 -> 65879", + "Type": "Postsynapse", + "Directional": false, + "Links": [{ + "SourceID": 67363, + "TargetID": 65879, + "Directional": false + }] + }, { + "ID": 4976, + "SourceStructureID": 65893, + "TargetStructureID": 66053, + "Label": "65893-66053 via Adherens from 84437 -> 84436", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84437, + "TargetID": 84436, + "Directional": false + }] + }, { + "ID": 4977, + "SourceStructureID": 66809, + "TargetStructureID": 66031, + "Label": "66809-66031 via Adherens from 66042 -> 66043", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66042, + "TargetID": 66043, + "Directional": false + }] + }, { + "ID": 4978, + "SourceStructureID": 68214, + "TargetStructureID": 66096, + "Label": "68214-66096 via Adherens from 68449 -> 68448", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68449, + "TargetID": 68448, + "Directional": false + }] + }, { + "ID": 4979, + "SourceStructureID": 66096, + "TargetStructureID": 68292, + "Label": "66096-68292 via Adherens from 70005 -> 68293", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70005, + "TargetID": 68293, + "Directional": false + }] + }, { + "ID": 4980, + "SourceStructureID": 66102, + "TargetStructureID": 66339, + "Label": "66102-66339 via Adherens from 84259 -> 84258", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84259, + "TargetID": 84258, + "Directional": false + }] + }, { + "ID": 4981, + "SourceStructureID": 66102, + "TargetStructureID": 67350, + "Label": "66102-67350 via Adherens from 68323 -> 68322", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68323, + "TargetID": 68322, + "Directional": false + }] + }, { + "ID": 4982, + "SourceStructureID": 66114, + "TargetStructureID": 66111, + "Label": "66114-66111 via Gap Junction from 66115 -> 66113", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 66115, + "TargetID": 66113, + "Directional": false + }] + }, { + "ID": 4983, + "SourceStructureID": 66111, + "TargetStructureID": 68444, + "Label": "66111-68444 via Adherens from 68466 -> 68465, 68472 -> 68471", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68466, + "TargetID": 68465, + "Directional": false + }, { + "SourceID": 68472, + "TargetID": 68471, + "Directional": false + }] + }, { + "ID": 4984, + "SourceStructureID": 66278, + "TargetStructureID": 66295, + "Label": "66278-66295 via Adherens from 66294 -> 66296", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66294, + "TargetID": 66296, + "Directional": false + }] + }, { + "ID": 4985, + "SourceStructureID": 66323, + "TargetStructureID": 84342, + "Label": "66323-84342 via Adherens from 84345 -> 84344", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84345, + "TargetID": 84344, + "Directional": false + }] + }, { + "ID": 4986, + "SourceStructureID": 84407, + "TargetStructureID": 66323, + "Label": "84407-66323 via Adherens from 84409 -> 84406, 84414 -> 84415", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84409, + "TargetID": 84406, + "Directional": false + }, { + "SourceID": 84414, + "TargetID": 84415, + "Directional": false + }] + }, { + "ID": 4987, + "SourceStructureID": 84427, + "TargetStructureID": 66323, + "Label": "84427-66323 via Unknown from 84428 -> 84426", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84428, + "TargetID": 84426, + "Directional": false + }] + }, { + "ID": 4988, + "SourceStructureID": 84429, + "TargetStructureID": 66323, + "Label": "84429-66323 via Unknown from 84431 -> 84430", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84431, + "TargetID": 84430, + "Directional": false + }] + }, { + "ID": 4989, + "SourceStructureID": 66477, + "TargetStructureID": 66487, + "Label": "66477-66487 via Adherens from 66491 -> 66490", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66491, + "TargetID": 66490, + "Directional": false + }] + }, { + "ID": 4990, + "SourceStructureID": 84127, + "TargetStructureID": 66477, + "Label": "84127-66477 via Adherens from 84128 -> 66491, 84133 -> 84132", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84128, + "TargetID": 66491, + "Directional": false + }, { + "SourceID": 84133, + "TargetID": 84132, + "Directional": false + }] + }, { + "ID": 4991, + "SourceStructureID": 66487, + "TargetStructureID": 66493, + "Label": "66487-66493 via Adherens from 84134 -> 84135", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84134, + "TargetID": 84135, + "Directional": false + }] + }, { + "ID": 4992, + "SourceStructureID": 84127, + "TargetStructureID": 66487, + "Label": "84127-66487 via Adherens from 84128 -> 66490, 84130 -> 84131", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84128, + "TargetID": 66490, + "Directional": false + }, { + "SourceID": 84130, + "TargetID": 84131, + "Directional": false + }] + }, { + "ID": 4993, + "SourceStructureID": 66523, + "TargetStructureID": 66520, + "Label": "66523-66520 via Adherens from 66524 -> 66525", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66524, + "TargetID": 66525, + "Directional": false + }] + }, { + "ID": 4994, + "SourceStructureID": 66523, + "TargetStructureID": 70415, + "Label": "66523-70415 via Adherens from 74884 -> 74885", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74884, + "TargetID": 74885, + "Directional": false + }] + }, { + "ID": 4995, + "SourceStructureID": 66523, + "TargetStructureID": 75307, + "Label": "66523-75307 via Adherens from 75305 -> 75308", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75305, + "TargetID": 75308, + "Directional": false + }] + }, { + "ID": 4996, + "SourceStructureID": 77965, + "TargetStructureID": 66523, + "Label": "77965-66523 via Adherens from 77969 -> 77968", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77969, + "TargetID": 77968, + "Directional": false + }] + }, { + "ID": 4997, + "SourceStructureID": 66634, + "TargetStructureID": 71345, + "Label": "66634-71345 via Adherens from 75177 -> 75176", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75177, + "TargetID": 75176, + "Directional": false + }] + }, { + "ID": 4998, + "SourceStructureID": 71351, + "TargetStructureID": 66634, + "Label": "71351-66634 via Adherens from 71914 -> 71913", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71914, + "TargetID": 71913, + "Directional": false + }] + }, { + "ID": 4999, + "SourceStructureID": 66634, + "TargetStructureID": 71517, + "Label": "66634-71517 via Adherens from 66679 -> 66678, 72117 -> 72116", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66679, + "TargetID": 66678, + "Directional": false + }, { + "SourceID": 72117, + "TargetID": 72116, + "Directional": false + }] + }, { + "ID": 5000, + "SourceStructureID": 75179, + "TargetStructureID": 66634, + "Label": "75179-66634 via Adherens from 75180 -> 75178", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75180, + "TargetID": 75178, + "Directional": false + }] + }, { + "ID": 5001, + "SourceStructureID": 66685, + "TargetStructureID": 66688, + "Label": "66685-66688 via Adherens from 83337 -> 83336", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83337, + "TargetID": 83336, + "Directional": false + }] + }, { + "ID": 5002, + "SourceStructureID": 66731, + "TargetStructureID": 66734, + "Label": "66731-66734 via Adherens from 66736 -> 66737", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66736, + "TargetID": 66737, + "Directional": false + }] + }, { + "ID": 5003, + "SourceStructureID": 66734, + "TargetStructureID": 66743, + "Label": "66734-66743 via Adherens from 66745 -> 66744", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66745, + "TargetID": 66744, + "Directional": false + }] + }, { + "ID": 5004, + "SourceStructureID": 66768, + "TargetStructureID": 68214, + "Label": "66768-68214 via Adherens from 68484 -> 68483", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68484, + "TargetID": 68483, + "Directional": false + }] + }, { + "ID": 5005, + "SourceStructureID": 66777, + "TargetStructureID": 66848, + "Label": "66777-66848 via Adherens from 66859 -> 66857", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66859, + "TargetID": 66857, + "Directional": false + }] + }, { + "ID": 5006, + "SourceStructureID": 67626, + "TargetStructureID": 66779, + "Label": "67626-66779 via Adherens from 67628 -> 67629", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67628, + "TargetID": 67629, + "Directional": false + }] + }, { + "ID": 5007, + "SourceStructureID": 66785, + "TargetStructureID": 66788, + "Label": "66785-66788 via Adherens from 66787 -> 66789", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66787, + "TargetID": 66789, + "Directional": false + }] + }, { + "ID": 5008, + "SourceStructureID": 66809, + "TargetStructureID": 66804, + "Label": "66809-66804 via Adherens from 66868 -> 66869", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66868, + "TargetID": 66869, + "Directional": false + }] + }, { + "ID": 5009, + "SourceStructureID": 66871, + "TargetStructureID": 66804, + "Label": "66871-66804 via Adherens from 66872 -> 66870, 66876 -> 66877", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66872, + "TargetID": 66870, + "Directional": false + }, { + "SourceID": 66876, + "TargetID": 66877, + "Directional": false + }] + }, { + "ID": 5010, + "SourceStructureID": 66952, + "TargetStructureID": 66809, + "Label": "66952-66809 via Unknown from 83042 -> 83043", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83042, + "TargetID": 83043, + "Directional": false + }] + }, { + "ID": 5011, + "SourceStructureID": 68444, + "TargetStructureID": 66888, + "Label": "68444-66888 via Adherens from 68473 -> 68474", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68473, + "TargetID": 68474, + "Directional": false + }] + }, { + "ID": 5012, + "SourceStructureID": 82305, + "TargetStructureID": 66888, + "Label": "82305-66888 via Adherens from 82321 -> 82322", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82321, + "TargetID": 82322, + "Directional": false + }] + }, { + "ID": 5013, + "SourceStructureID": 66910, + "TargetStructureID": 66905, + "Label": "66910-66905 via Adherens from 66911 -> 66909", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 66911, + "TargetID": 66909, + "Directional": false + }] + }, { + "ID": 5014, + "SourceStructureID": 66946, + "TargetStructureID": 68548, + "Label": "66946-68548 via Adherens from 82893 -> 75710", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82893, + "TargetID": 75710, + "Directional": false + }] + }, { + "ID": 5015, + "SourceStructureID": 67736, + "TargetStructureID": 66958, + "Label": "67736-66958 via Adherens from 67746 -> 70029", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67746, + "TargetID": 70029, + "Directional": false + }] + }, { + "ID": 5016, + "SourceStructureID": 68153, + "TargetStructureID": 66958, + "Label": "68153-66958 via Adherens from 70147 -> 70148", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70147, + "TargetID": 70148, + "Directional": false + }] + }, { + "ID": 5017, + "SourceStructureID": 69908, + "TargetStructureID": 66958, + "Label": "69908-66958 via Adherens from 69909 -> 69318", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 69909, + "TargetID": 69318, + "Directional": false + }] + }, { + "ID": 5018, + "SourceStructureID": 66958, + "TargetStructureID": 70126, + "Label": "66958-70126 via Adherens from 70128 -> 70127", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70128, + "TargetID": 70127, + "Directional": false + }] + }, { + "ID": 5019, + "SourceStructureID": 66958, + "TargetStructureID": 70134, + "Label": "66958-70134 via Adherens from 70137 -> 70136", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70137, + "TargetID": 70136, + "Directional": false + }] + }, { + "ID": 5020, + "SourceStructureID": 67042, + "TargetStructureID": 76463, + "Label": "67042-76463 via Adherens from 76462 -> 76464", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76462, + "TargetID": 76464, + "Directional": false + }] + }, { + "ID": 5021, + "SourceStructureID": 67756, + "TargetStructureID": 67045, + "Label": "67756-67045 via Adherens from 75402 -> 68698", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75402, + "TargetID": 68698, + "Directional": false + }] + }, { + "ID": 5022, + "SourceStructureID": 67140, + "TargetStructureID": 67135, + "Label": "67140-67135 via Adherens from 67141 -> 67139", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67141, + "TargetID": 67139, + "Directional": false + }] + }, { + "ID": 5023, + "SourceStructureID": 67190, + "TargetStructureID": 67585, + "Label": "67190-67585 via Adherens from 67604 -> 67603", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67604, + "TargetID": 67603, + "Directional": false + }] + }, { + "ID": 5024, + "SourceStructureID": 67266, + "TargetStructureID": 79254, + "Label": "67266-79254 via Adherens from 79253 -> 79255", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79253, + "TargetID": 79255, + "Directional": false + }] + }, { + "ID": 5025, + "SourceStructureID": 82806, + "TargetStructureID": 67305, + "Label": "82806-67305 via Adherens from 82811 -> 82810", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82811, + "TargetID": 82810, + "Directional": false + }] + }, { + "ID": 5026, + "SourceStructureID": 67350, + "TargetStructureID": 67337, + "Label": "67350-67337 via Gap Junction from 67351 -> 67349", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 67351, + "TargetID": 67349, + "Directional": false + }] + }, { + "ID": 5027, + "SourceStructureID": 84260, + "TargetStructureID": 67350, + "Label": "84260-67350 via Adherens from 84263 -> 68320", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84263, + "TargetID": 68320, + "Directional": false + }] + }, { + "ID": 5028, + "SourceStructureID": 67372, + "TargetStructureID": 67364, + "Label": "67372-67364 via Gap Junction from 67374 -> 67373", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 67374, + "TargetID": 67373, + "Directional": false + }] + }, { + "ID": 5029, + "SourceStructureID": 82717, + "TargetStructureID": 67460, + "Label": "82717-67460 via Adherens from 82719 -> 82720", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82719, + "TargetID": 82720, + "Directional": false + }] + }, { + "ID": 5030, + "SourceStructureID": 67520, + "TargetStructureID": 67508, + "Label": "67520-67508 via Adherens from 68919 -> 68918", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68919, + "TargetID": 68918, + "Directional": false + }] + }, { + "ID": 5031, + "SourceStructureID": 67666, + "TargetStructureID": 67663, + "Label": "67666-67663 via Adherens from 67667 -> 67665", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67667, + "TargetID": 67665, + "Directional": false + }] + }, { + "ID": 5032, + "SourceStructureID": 68497, + "TargetStructureID": 67671, + "Label": "68497-67671 via Adherens from 81581 -> 77356", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81581, + "TargetID": 77356, + "Directional": false + }] + }, { + "ID": 5033, + "SourceStructureID": 67671, + "TargetStructureID": 77375, + "Label": "67671-77375 via Adherens from 77997 -> 77996", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77997, + "TargetID": 77996, + "Directional": false + }] + }, { + "ID": 5034, + "SourceStructureID": 67671, + "TargetStructureID": 77378, + "Label": "67671-77378 via Adherens from 77999 -> 77998", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77999, + "TargetID": 77998, + "Directional": false + }] + }, { + "ID": 5035, + "SourceStructureID": 67671, + "TargetStructureID": 77682, + "Label": "67671-77682 via Adherens from 78001 -> 78000", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78001, + "TargetID": 78000, + "Directional": false + }] + }, { + "ID": 5036, + "SourceStructureID": 77985, + "TargetStructureID": 67671, + "Label": "77985-67671 via Adherens from 77986 -> 77987", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77986, + "TargetID": 77987, + "Directional": false + }] + }, { + "ID": 5037, + "SourceStructureID": 78005, + "TargetStructureID": 67671, + "Label": "78005-67671 via Adherens from 78006 -> 78004", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78006, + "TargetID": 78004, + "Directional": false + }] + }, { + "ID": 5038, + "SourceStructureID": 67671, + "TargetStructureID": 78021, + "Label": "67671-78021 via Adherens from 78020 -> 78022", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78020, + "TargetID": 78022, + "Directional": false + }] + }, { + "ID": 5039, + "SourceStructureID": 67671, + "TargetStructureID": 78023, + "Label": "67671-78023 via Adherens from 78027 -> 78026", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78027, + "TargetID": 78026, + "Directional": false + }] + }, { + "ID": 5040, + "SourceStructureID": 67671, + "TargetStructureID": 78042, + "Label": "67671-78042 via Adherens from 78041 -> 78044", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78041, + "TargetID": 78044, + "Directional": false + }] + }, { + "ID": 5041, + "SourceStructureID": 67671, + "TargetStructureID": 78045, + "Label": "67671-78045 via Adherens from 78056 -> 78055", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78056, + "TargetID": 78055, + "Directional": false + }] + }, { + "ID": 5042, + "SourceStructureID": 67671, + "TargetStructureID": 78074, + "Label": "67671-78074 via Adherens from 78073 -> 78076", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78073, + "TargetID": 78076, + "Directional": false + }] + }, { + "ID": 5043, + "SourceStructureID": 78080, + "TargetStructureID": 67671, + "Label": "78080-67671 via Adherens from 78081 -> 78079", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78081, + "TargetID": 78079, + "Directional": false + }] + }, { + "ID": 5044, + "SourceStructureID": 67671, + "TargetStructureID": 78228, + "Label": "67671-78228 via Adherens from 78407 -> 78408", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78407, + "TargetID": 78408, + "Directional": false + }] + }, { + "ID": 5045, + "SourceStructureID": 78415, + "TargetStructureID": 67671, + "Label": "78415-67671 via Adherens from 78416 -> 78414", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78416, + "TargetID": 78414, + "Directional": false + }] + }, { + "ID": 5046, + "SourceStructureID": 67689, + "TargetStructureID": 68548, + "Label": "67689-68548 via Adherens from 67691 -> 73570, 73571 -> 67691", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67691, + "TargetID": 73570, + "Directional": false + }, { + "SourceID": 73571, + "TargetID": 67691, + "Directional": false + }] + }, { + "ID": 5047, + "SourceStructureID": 68486, + "TargetStructureID": 67756, + "Label": "68486-67756 via Adherens from 79603 -> 79604", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79603, + "TargetID": 79604, + "Directional": false + }] + }, { + "ID": 5048, + "SourceStructureID": 67796, + "TargetStructureID": 67796, + "Label": "67796-67796 via Adherens from 67798 -> 67799", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67798, + "TargetID": 67799, + "Directional": false + }] + }, { + "ID": 5049, + "SourceStructureID": 67874, + "TargetStructureID": 67871, + "Label": "67874-67871 via Adherens from 67875 -> 67873", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 67875, + "TargetID": 67873, + "Directional": false + }] + }, { + "ID": 5050, + "SourceStructureID": 67894, + "TargetStructureID": 68096, + "Label": "67894-68096 via Adherens from 82234 -> 68108", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82234, + "TargetID": 68108, + "Directional": false + }] + }, { + "ID": 5051, + "SourceStructureID": 67952, + "TargetStructureID": 67947, + "Label": "67952-67947 via Adherens from 68092 -> 68084", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68092, + "TargetID": 68084, + "Directional": false + }] + }, { + "ID": 5052, + "SourceStructureID": 68232, + "TargetStructureID": 68087, + "Label": "68232-68087 via Adherens from 68236 -> 68237", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68236, + "TargetID": 68237, + "Directional": false + }] + }, { + "ID": 5053, + "SourceStructureID": 68093, + "TargetStructureID": 68153, + "Label": "68093-68153 via Adherens from 68174 -> 68173", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68174, + "TargetID": 68173, + "Directional": false + }] + }, { + "ID": 5054, + "SourceStructureID": 68096, + "TargetStructureID": 68101, + "Label": "68096-68101 via Gap Junction from 68103 -> 68102", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 68103, + "TargetID": 68102, + "Directional": false + }] + }, { + "ID": 5055, + "SourceStructureID": 68153, + "TargetStructureID": 68161, + "Label": "68153-68161 via Adherens from 68160 -> 68162, 68164 -> 68163", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68160, + "TargetID": 68162, + "Directional": false + }, { + "SourceID": 68164, + "TargetID": 68163, + "Directional": false + }] + }, { + "ID": 5056, + "SourceStructureID": 68168, + "TargetStructureID": 68153, + "Label": "68168-68153 via Adherens from 91164 -> 91163", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91164, + "TargetID": 91163, + "Directional": false + }] + }, { + "ID": 5057, + "SourceStructureID": 68180, + "TargetStructureID": 68153, + "Label": "68180-68153 via Adherens from 68181 -> 68179", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68181, + "TargetID": 68179, + "Directional": false + }] + }, { + "ID": 5058, + "SourceStructureID": 68153, + "TargetStructureID": 70058, + "Label": "68153-70058 via Adherens from 70056 -> 70059", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70056, + "TargetID": 70059, + "Directional": false + }] + }, { + "ID": 5059, + "SourceStructureID": 70149, + "TargetStructureID": 68153, + "Label": "70149-68153 via Adherens from 70152 -> 70151", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70152, + "TargetID": 70151, + "Directional": false + }] + }, { + "ID": 5060, + "SourceStructureID": 68153, + "TargetStructureID": 70171, + "Label": "68153-70171 via Adherens from 70168 -> 70174, 70169 -> 70173, 70170 -> 70172", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70168, + "TargetID": 70174, + "Directional": false + }, { + "SourceID": 70169, + "TargetID": 70173, + "Directional": false + }, { + "SourceID": 70170, + "TargetID": 70172, + "Directional": false + }] + }, { + "ID": 5061, + "SourceStructureID": 68153, + "TargetStructureID": 70176, + "Label": "68153-70176 via Adherens from 70180 -> 70179", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70180, + "TargetID": 70179, + "Directional": false + }] + }, { + "ID": 5062, + "SourceStructureID": 88050, + "TargetStructureID": 68153, + "Label": "88050-68153 via Adherens from 88051 -> 88048", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88051, + "TargetID": 88048, + "Directional": false + }] + }, { + "ID": 5063, + "SourceStructureID": 68238, + "TargetStructureID": 68239, + "Label": "68238-68239 via Gap Junction from 68244 -> 68245", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 68244, + "TargetID": 68245, + "Directional": false + }] + }, { + "ID": 5064, + "SourceStructureID": 68286, + "TargetStructureID": 80657, + "Label": "68286-80657 via Adherens from 80659 -> 80660", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80659, + "TargetID": 80660, + "Directional": false + }] + }, { + "ID": 5065, + "SourceStructureID": 69162, + "TargetStructureID": 68289, + "Label": "69162-68289 via Adherens from 80645 -> 80644", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80645, + "TargetID": 80644, + "Directional": false + }] + }, { + "ID": 5066, + "SourceStructureID": 68341, + "TargetStructureID": 79586, + "Label": "68341-79586 via Adherens from 80626 -> 79597", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80626, + "TargetID": 79597, + "Directional": false + }] + }, { + "ID": 5067, + "SourceStructureID": 68444, + "TargetStructureID": 80459, + "Label": "68444-80459 via Adherens from 80461 -> 80462", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80461, + "TargetID": 80462, + "Directional": false + }] + }, { + "ID": 5068, + "SourceStructureID": 80412, + "TargetStructureID": 68463, + "Label": "80412-68463 via Adherens from 80413 -> 80411", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80413, + "TargetID": 80411, + "Directional": false + }] + }, { + "ID": 5069, + "SourceStructureID": 80419, + "TargetStructureID": 68463, + "Label": "80419-68463 via Adherens from 80420 -> 80418", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 80420, + "TargetID": 80418, + "Directional": false + }] + }, { + "ID": 5070, + "SourceStructureID": 68486, + "TargetStructureID": 68669, + "Label": "68486-68669 via Adherens from 79610 -> 68674", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79610, + "TargetID": 68674, + "Directional": false + }] + }, { + "ID": 5071, + "SourceStructureID": 79370, + "TargetStructureID": 68497, + "Label": "79370-68497 via Adherens from 81602 -> 81603", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81602, + "TargetID": 81603, + "Directional": false + }] + }, { + "ID": 5072, + "SourceStructureID": 79474, + "TargetStructureID": 68497, + "Label": "79474-68497 via Adherens from 79475 -> 79473", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79475, + "TargetID": 79473, + "Directional": false + }] + }, { + "ID": 5073, + "SourceStructureID": 68497, + "TargetStructureID": 79487, + "Label": "68497-79487 via Gap Junction from 79488 -> 79489", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 79488, + "TargetID": 79489, + "Directional": false + }] + }, { + "ID": 5074, + "SourceStructureID": 68539, + "TargetStructureID": 68569, + "Label": "68539-68569 via Adherens from 68568 -> 68570", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68568, + "TargetID": 68570, + "Directional": false + }] + }, { + "ID": 5075, + "SourceStructureID": 69162, + "TargetStructureID": 68539, + "Label": "69162-68539 via Adherens from 69163 -> 69131, 69164 -> 69132", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 69163, + "TargetID": 69131, + "Directional": false + }, { + "SourceID": 69164, + "TargetID": 69132, + "Directional": false + }] + }, { + "ID": 5076, + "SourceStructureID": 68539, + "TargetStructureID": 70267, + "Label": "68539-70267 via Adherens from 70269 -> 70268", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70269, + "TargetID": 70268, + "Directional": false + }] + }, { + "ID": 5077, + "SourceStructureID": 68539, + "TargetStructureID": 70302, + "Label": "68539-70302 via Adherens from 70306 -> 70305", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70306, + "TargetID": 70305, + "Directional": false + }] + }, { + "ID": 5078, + "SourceStructureID": 68539, + "TargetStructureID": 70422, + "Label": "68539-70422 via Adherens from 76038 -> 70423", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76038, + "TargetID": 70423, + "Directional": false + }] + }, { + "ID": 5079, + "SourceStructureID": 68539, + "TargetStructureID": 73314, + "Label": "68539-73314 via Adherens from 73321 -> 73320", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73321, + "TargetID": 73320, + "Directional": false + }] + }, { + "ID": 5080, + "SourceStructureID": 68539, + "TargetStructureID": 73322, + "Label": "68539-73322 via Adherens from 73331 -> 73330", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73331, + "TargetID": 73330, + "Directional": false + }] + }, { + "ID": 5081, + "SourceStructureID": 68539, + "TargetStructureID": 73350, + "Label": "68539-73350 via Adherens from 73591 -> 73592", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73591, + "TargetID": 73592, + "Directional": false + }] + }, { + "ID": 5082, + "SourceStructureID": 73380, + "TargetStructureID": 68539, + "Label": "73380-68539 via Unknown from 73381 -> 73382", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73381, + "TargetID": 73382, + "Directional": false + }] + }, { + "ID": 5083, + "SourceStructureID": 73390, + "TargetStructureID": 68539, + "Label": "73390-68539 via Adherens from 73392 -> 73393", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73392, + "TargetID": 73393, + "Directional": false + }] + }, { + "ID": 5084, + "SourceStructureID": 73593, + "TargetStructureID": 68539, + "Label": "73593-68539 via Unknown from 73596 -> 73352", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73596, + "TargetID": 73352, + "Directional": false + }] + }, { + "ID": 5085, + "SourceStructureID": 73594, + "TargetStructureID": 68539, + "Label": "73594-68539 via Unknown from 73595 -> 73352", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73595, + "TargetID": 73352, + "Directional": false + }] + }, { + "ID": 5086, + "SourceStructureID": 73621, + "TargetStructureID": 68539, + "Label": "73621-68539 via Adherens from 73624 -> 73623", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73624, + "TargetID": 73623, + "Directional": false + }] + }, { + "ID": 5087, + "SourceStructureID": 73644, + "TargetStructureID": 68539, + "Label": "73644-68539 via Adherens from 73645 -> 73643", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73645, + "TargetID": 73643, + "Directional": false + }] + }, { + "ID": 5088, + "SourceStructureID": 73690, + "TargetStructureID": 68539, + "Label": "73690-68539 via Adherens from 73697 -> 73696", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73697, + "TargetID": 73696, + "Directional": false + }] + }, { + "ID": 5089, + "SourceStructureID": 68539, + "TargetStructureID": 74237, + "Label": "68539-74237 via Adherens from 74250 -> 74249", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74250, + "TargetID": 74249, + "Directional": false + }] + }, { + "ID": 5090, + "SourceStructureID": 74548, + "TargetStructureID": 68539, + "Label": "74548-68539 via Adherens from 74553 -> 74554", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74553, + "TargetID": 74554, + "Directional": false + }] + }, { + "ID": 5091, + "SourceStructureID": 68539, + "TargetStructureID": 74576, + "Label": "68539-74576 via Adherens from 74581 -> 74582", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74581, + "TargetID": 74582, + "Directional": false + }] + }, { + "ID": 5092, + "SourceStructureID": 68539, + "TargetStructureID": 74624, + "Label": "68539-74624 via Adherens from 74632 -> 74631", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74632, + "TargetID": 74631, + "Directional": false + }] + }, { + "ID": 5093, + "SourceStructureID": 74645, + "TargetStructureID": 68539, + "Label": "74645-68539 via Adherens from 74652 -> 74651", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74652, + "TargetID": 74651, + "Directional": false + }] + }, { + "ID": 5094, + "SourceStructureID": 74667, + "TargetStructureID": 68539, + "Label": "74667-68539 via Adherens from 74668 -> 74669", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74668, + "TargetID": 74669, + "Directional": false + }] + }, { + "ID": 5095, + "SourceStructureID": 68539, + "TargetStructureID": 74902, + "Label": "68539-74902 via Unknown from 75769 -> 75770", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 75769, + "TargetID": 75770, + "Directional": false + }] + }, { + "ID": 5096, + "SourceStructureID": 75816, + "TargetStructureID": 68539, + "Label": "75816-68539 via Adherens from 75818 -> 75817", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75818, + "TargetID": 75817, + "Directional": false + }] + }, { + "ID": 5097, + "SourceStructureID": 75825, + "TargetStructureID": 68539, + "Label": "75825-68539 via Adherens from 75829 -> 75828", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75829, + "TargetID": 75828, + "Directional": false + }] + }, { + "ID": 5098, + "SourceStructureID": 76039, + "TargetStructureID": 68539, + "Label": "76039-68539 via Adherens from 76044 -> 76045, 76046 -> 76047, 76048 -> 76049, 76050 -> 76051, 76053 -> 76054", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76044, + "TargetID": 76045, + "Directional": false + }, { + "SourceID": 76046, + "TargetID": 76047, + "Directional": false + }, { + "SourceID": 76048, + "TargetID": 76049, + "Directional": false + }, { + "SourceID": 76050, + "TargetID": 76051, + "Directional": false + }, { + "SourceID": 76053, + "TargetID": 76054, + "Directional": false + }] + }, { + "ID": 5099, + "SourceStructureID": 76103, + "TargetStructureID": 68539, + "Label": "76103-68539 via Adherens from 76104 -> 76102", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76104, + "TargetID": 76102, + "Directional": false + }] + }, { + "ID": 5100, + "SourceStructureID": 68548, + "TargetStructureID": 73528, + "Label": "68548-73528 via Adherens from 75727 -> 75726", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75727, + "TargetID": 75726, + "Directional": false + }] + }, { + "ID": 5101, + "SourceStructureID": 68548, + "TargetStructureID": 74902, + "Label": "68548-74902 via Adherens from 76191 -> 76192", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76191, + "TargetID": 76192, + "Directional": false + }] + }, { + "ID": 5102, + "SourceStructureID": 68548, + "TargetStructureID": 75359, + "Label": "68548-75359 via Adherens from 75715 -> 75716", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75715, + "TargetID": 75716, + "Directional": false + }] + }, { + "ID": 5103, + "SourceStructureID": 68548, + "TargetStructureID": 75367, + "Label": "68548-75367 via Adherens from 75366 -> 75368", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75366, + "TargetID": 75368, + "Directional": false + }] + }, { + "ID": 5104, + "SourceStructureID": 75678, + "TargetStructureID": 68548, + "Label": "75678-68548 via Adherens from 75680 -> 75681", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75680, + "TargetID": 75681, + "Directional": false + }] + }, { + "ID": 5105, + "SourceStructureID": 68548, + "TargetStructureID": 75689, + "Label": "68548-75689 via Adherens from 75691 -> 75690", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75691, + "TargetID": 75690, + "Directional": false + }] + }, { + "ID": 5106, + "SourceStructureID": 75695, + "TargetStructureID": 68548, + "Label": "75695-68548 via Adherens from 75698 -> 75697", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75698, + "TargetID": 75697, + "Directional": false + }] + }, { + "ID": 5107, + "SourceStructureID": 68548, + "TargetStructureID": 75700, + "Label": "68548-75700 via Adherens from 75706 -> 75707", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75706, + "TargetID": 75707, + "Directional": false + }] + }, { + "ID": 5108, + "SourceStructureID": 68548, + "TargetStructureID": 75728, + "Label": "68548-75728 via Adherens from 75732 -> 75731", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75732, + "TargetID": 75731, + "Directional": false + }] + }, { + "ID": 5109, + "SourceStructureID": 75739, + "TargetStructureID": 68548, + "Label": "75739-68548 via Adherens from 75747 -> 75748", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75747, + "TargetID": 75748, + "Directional": false + }] + }, { + "ID": 5110, + "SourceStructureID": 75761, + "TargetStructureID": 68548, + "Label": "75761-68548 via Adherens from 75762 -> 75763", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75762, + "TargetID": 75763, + "Directional": false + }] + }, { + "ID": 5111, + "SourceStructureID": 68548, + "TargetStructureID": 75764, + "Label": "68548-75764 via Adherens from 75763 -> 75765", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75763, + "TargetID": 75765, + "Directional": false + }] + }, { + "ID": 5112, + "SourceStructureID": 92926, + "TargetStructureID": 68548, + "Label": "92926-68548 via Adherens from 75687 -> 75688", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75687, + "TargetID": 75688, + "Directional": false + }] + }, { + "ID": 5113, + "SourceStructureID": 68691, + "TargetStructureID": 68686, + "Label": "68691-68686 via Gap Junction from 68692 -> 68690", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 68692, + "TargetID": 68690, + "Directional": false + }] + }, { + "ID": 5114, + "SourceStructureID": 68707, + "TargetStructureID": 68705, + "Label": "68707-68705 via Adherens from 68709 -> 68708, 68711 -> 68710", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 68709, + "TargetID": 68708, + "Directional": false + }, { + "SourceID": 68711, + "TargetID": 68710, + "Directional": false + }] + }, { + "ID": 5115, + "SourceStructureID": 69030, + "TargetStructureID": 69030, + "Label": "69030-69030 via Adherens from 110297 -> 110293", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110297, + "TargetID": 110293, + "Directional": false + }] + }, { + "ID": 5116, + "SourceStructureID": 69030, + "TargetStructureID": 87345, + "Label": "69030-87345 via Adherens from 87353 -> 87354", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87353, + "TargetID": 87354, + "Directional": false + }] + }, { + "ID": 5117, + "SourceStructureID": 78262, + "TargetStructureID": 69049, + "Label": "78262-69049 via Adherens from 82556 -> 82557", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82556, + "TargetID": 82557, + "Directional": false + }] + }, { + "ID": 5118, + "SourceStructureID": 69363, + "TargetStructureID": 72384, + "Label": "69363-72384 via Adherens from 78707 -> 78708", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78707, + "TargetID": 78708, + "Directional": false + }] + }, { + "ID": 5119, + "SourceStructureID": 72975, + "TargetStructureID": 69385, + "Label": "72975-69385 via Adherens from 72979 -> 72978, 72984 -> 72983", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72979, + "TargetID": 72978, + "Directional": false + }, { + "SourceID": 72984, + "TargetID": 72983, + "Directional": false + }] + }, { + "ID": 5120, + "SourceStructureID": 72975, + "TargetStructureID": 69385, + "Label": "72975-69385 via Gap Junction from 72982 -> 72981", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 72982, + "TargetID": 72981, + "Directional": false + }] + }, { + "ID": 5121, + "SourceStructureID": 70050, + "TargetStructureID": 70046, + "Label": "70050-70046 via Adherens from 70051 -> 70049", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70051, + "TargetID": 70049, + "Directional": false + }] + }, { + "ID": 5122, + "SourceStructureID": 70418, + "TargetStructureID": 70415, + "Label": "70418-70415 via Adherens from 70419 -> 70417", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70419, + "TargetID": 70417, + "Directional": false + }] + }, { + "ID": 5123, + "SourceStructureID": 70454, + "TargetStructureID": 89554, + "Label": "70454-89554 via Adherens from 89557 -> 89556", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89557, + "TargetID": 89556, + "Directional": false + }] + }, { + "ID": 5124, + "SourceStructureID": 89120, + "TargetStructureID": 70500, + "Label": "89120-70500 via Gap Junction from 89145 -> 89115, 122404 -> 122410, 122409 -> 122408, 122411 -> 122405", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89145, + "TargetID": 89115, + "Directional": false + }, { + "SourceID": 122404, + "TargetID": 122410, + "Directional": false + }, { + "SourceID": 122409, + "TargetID": 122408, + "Directional": false + }, { + "SourceID": 122411, + "TargetID": 122405, + "Directional": false + }] + }, { + "ID": 5125, + "SourceStructureID": 70659, + "TargetStructureID": 70655, + "Label": "70659-70655 via Adherens from 70661 -> 70662", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70661, + "TargetID": 70662, + "Directional": false + }] + }, { + "ID": 5126, + "SourceStructureID": 70684, + "TargetStructureID": 70712, + "Label": "70684-70712 via Adherens from 70715 -> 70714", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70715, + "TargetID": 70714, + "Directional": false + }] + }, { + "ID": 5127, + "SourceStructureID": 70684, + "TargetStructureID": 70712, + "Label": "70684-70712 via Gap Junction from 70719 -> 70718", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 70719, + "TargetID": 70718, + "Directional": false + }] + }, { + "ID": 5128, + "SourceStructureID": 70743, + "TargetStructureID": 70745, + "Label": "70743-70745 via Adherens from 70754 -> 70753", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70754, + "TargetID": 70753, + "Directional": false + }] + }, { + "ID": 5129, + "SourceStructureID": 70789, + "TargetStructureID": 70795, + "Label": "70789-70795 via Adherens from 70794 -> 70797", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70794, + "TargetID": 70797, + "Directional": false + }] + }, { + "ID": 5130, + "SourceStructureID": 70987, + "TargetStructureID": 70924, + "Label": "70987-70924 via Adherens from 70988 -> 70929, 71002 -> 71000, 71030 -> 71029, 71039 -> 71040", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 70988, + "TargetID": 70929, + "Directional": false + }, { + "SourceID": 71002, + "TargetID": 71000, + "Directional": false + }, { + "SourceID": 71030, + "TargetID": 71029, + "Directional": false + }, { + "SourceID": 71039, + "TargetID": 71040, + "Directional": false + }] + }, { + "ID": 5131, + "SourceStructureID": 71118, + "TargetStructureID": 71063, + "Label": "71118-71063 via Gap Junction from 71120 -> 71078", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71120, + "TargetID": 71078, + "Directional": false + }] + }, { + "ID": 5132, + "SourceStructureID": 71538, + "TargetStructureID": 71517, + "Label": "71538-71517 via Adherens from 74950 -> 74949", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74950, + "TargetID": 74949, + "Directional": false + }] + }, { + "ID": 5133, + "SourceStructureID": 71517, + "TargetStructureID": 71545, + "Label": "71517-71545 via Adherens from 72119 -> 72120", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72119, + "TargetID": 72120, + "Directional": false + }] + }, { + "ID": 5134, + "SourceStructureID": 74388, + "TargetStructureID": 71517, + "Label": "74388-71517 via Adherens from 75011 -> 75010", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75011, + "TargetID": 75010, + "Directional": false + }] + }, { + "ID": 5135, + "SourceStructureID": 71517, + "TargetStructureID": 74931, + "Label": "71517-74931 via Adherens from 74932 -> 74933", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74932, + "TargetID": 74933, + "Directional": false + }] + }, { + "ID": 5136, + "SourceStructureID": 74952, + "TargetStructureID": 71517, + "Label": "74952-71517 via Gap Junction from 74954 -> 74953", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 74954, + "TargetID": 74953, + "Directional": false + }] + }, { + "ID": 5137, + "SourceStructureID": 74969, + "TargetStructureID": 71517, + "Label": "74969-71517 via Adherens from 74975 -> 74976", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74975, + "TargetID": 74976, + "Directional": false + }] + }, { + "ID": 5138, + "SourceStructureID": 75052, + "TargetStructureID": 71517, + "Label": "75052-71517 via Adherens from 75054 -> 75053", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75054, + "TargetID": 75053, + "Directional": false + }] + }, { + "ID": 5139, + "SourceStructureID": 71671, + "TargetStructureID": 71715, + "Label": "71671-71715 via Adherens from 71718 -> 71719, 71727 -> 71728", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71718, + "TargetID": 71719, + "Directional": false + }, { + "SourceID": 71727, + "TargetID": 71728, + "Directional": false + }] + }, { + "ID": 5140, + "SourceStructureID": 71771, + "TargetStructureID": 71781, + "Label": "71771-71781 via Adherens from 71813 -> 71814", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 71813, + "TargetID": 71814, + "Directional": false + }] + }, { + "ID": 5141, + "SourceStructureID": 90324, + "TargetStructureID": 71882, + "Label": "90324-71882 via Adherens from 90325 -> 90323", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90325, + "TargetID": 90323, + "Directional": false + }] + }, { + "ID": 5142, + "SourceStructureID": 90334, + "TargetStructureID": 71882, + "Label": "90334-71882 via Adherens from 90337 -> 90333", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90337, + "TargetID": 90333, + "Directional": false + }] + }, { + "ID": 5143, + "SourceStructureID": 90334, + "TargetStructureID": 71882, + "Label": "90334-71882 via Gap Junction from 90336 -> 90335", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90336, + "TargetID": 90335, + "Directional": false + }] + }, { + "ID": 5144, + "SourceStructureID": 90376, + "TargetStructureID": 71882, + "Label": "90376-71882 via Adherens from 90380 -> 90379", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90380, + "TargetID": 90379, + "Directional": false + }] + }, { + "ID": 5145, + "SourceStructureID": 90376, + "TargetStructureID": 71882, + "Label": "90376-71882 via Gap Junction from 90378 -> 90374", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90378, + "TargetID": 90374, + "Directional": false + }] + }, { + "ID": 5146, + "SourceStructureID": 90389, + "TargetStructureID": 71882, + "Label": "90389-71882 via Unknown from 90391 -> 90388", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 90391, + "TargetID": 90388, + "Directional": false + }] + }, { + "ID": 5147, + "SourceStructureID": 90446, + "TargetStructureID": 71882, + "Label": "90446-71882 via Adherens from 90447 -> 90445", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90447, + "TargetID": 90445, + "Directional": false + }] + }, { + "ID": 5148, + "SourceStructureID": 90446, + "TargetStructureID": 71882, + "Label": "90446-71882 via Gap Junction from 90448 -> 90444", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90448, + "TargetID": 90444, + "Directional": false + }] + }, { + "ID": 5149, + "SourceStructureID": 71954, + "TargetStructureID": 71953, + "Label": "71954-71953 via Gap Junction from 71956 -> 71955", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 71956, + "TargetID": 71955, + "Directional": false + }] + }, { + "ID": 5150, + "SourceStructureID": 72168, + "TargetStructureID": 82961, + "Label": "72168-82961 via Adherens from 82960 -> 82962, 82967 -> 82968", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82960, + "TargetID": 82962, + "Directional": false + }, { + "SourceID": 82967, + "TargetID": 82968, + "Directional": false + }] + }, { + "ID": 5151, + "SourceStructureID": 72994, + "TargetStructureID": 72989, + "Label": "72994-72989 via Adherens from 72999 -> 73000", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 72999, + "TargetID": 73000, + "Directional": false + }] + }, { + "ID": 5152, + "SourceStructureID": 75752, + "TargetStructureID": 73025, + "Label": "75752-73025 via Adherens from 75756 -> 75757", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75756, + "TargetID": 75757, + "Directional": false + }] + }, { + "ID": 5153, + "SourceStructureID": 73394, + "TargetStructureID": 73397, + "Label": "73394-73397 via Adherens from 73401 -> 73402", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73401, + "TargetID": 73402, + "Directional": false + }] + }, { + "ID": 5154, + "SourceStructureID": 73465, + "TargetStructureID": 73460, + "Label": "73465-73460 via Adherens from 73471 -> 73470", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73471, + "TargetID": 73470, + "Directional": false + }] + }, { + "ID": 5155, + "SourceStructureID": 73594, + "TargetStructureID": 73593, + "Label": "73594-73593 via Unknown from 73595 -> 73596", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 73595, + "TargetID": 73596, + "Directional": false + }] + }, { + "ID": 5156, + "SourceStructureID": 73655, + "TargetStructureID": 73658, + "Label": "73655-73658 via Adherens from 73657 -> 73660", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73657, + "TargetID": 73660, + "Directional": false + }] + }, { + "ID": 5157, + "SourceStructureID": 73665, + "TargetStructureID": 73662, + "Label": "73665-73662 via Adherens from 73666 -> 73664", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73666, + "TargetID": 73664, + "Directional": false + }] + }, { + "ID": 5158, + "SourceStructureID": 73681, + "TargetStructureID": 73676, + "Label": "73681-73676 via Adherens from 73682 -> 73680", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 73682, + "TargetID": 73680, + "Directional": false + }] + }, { + "ID": 5159, + "SourceStructureID": 74069, + "TargetStructureID": 74069, + "Label": "74069-74069 via Unknown from 74070 -> 74072", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 74070, + "TargetID": 74072, + "Directional": false + }] + }, { + "ID": 5160, + "SourceStructureID": 74238, + "TargetStructureID": 74237, + "Label": "74238-74237 via Adherens from 74263 -> 74262", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74263, + "TargetID": 74262, + "Directional": false + }] + }, { + "ID": 5161, + "SourceStructureID": 74238, + "TargetStructureID": 74240, + "Label": "74238-74240 via Adherens from 74260 -> 74261", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74260, + "TargetID": 74261, + "Directional": false + }] + }, { + "ID": 5162, + "SourceStructureID": 74292, + "TargetStructureID": 74282, + "Label": "74292-74282 via Adherens from 74293 -> 74294", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74293, + "TargetID": 74294, + "Directional": false + }] + }, { + "ID": 5163, + "SourceStructureID": 75130, + "TargetStructureID": 74321, + "Label": "75130-74321 via Gap Junction from 121969 -> 121970", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 121969, + "TargetID": 121970, + "Directional": false + }] + }, { + "ID": 5164, + "SourceStructureID": 74601, + "TargetStructureID": 74590, + "Label": "74601-74590 via Adherens from 74602 -> 74600", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74602, + "TargetID": 74600, + "Directional": false + }] + }, { + "ID": 5165, + "SourceStructureID": 74610, + "TargetStructureID": 74614, + "Label": "74610-74614 via Adherens from 74615 -> 74616", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 74615, + "TargetID": 74616, + "Directional": false + }] + }, { + "ID": 5166, + "SourceStructureID": 74907, + "TargetStructureID": 83698, + "Label": "74907-83698 via Adherens from 83741 -> 83742", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83741, + "TargetID": 83742, + "Directional": false + }] + }, { + "ID": 5167, + "SourceStructureID": 74907, + "TargetStructureID": 83749, + "Label": "74907-83749 via Unknown from 83755 -> 83756", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83755, + "TargetID": 83756, + "Directional": false + }] + }, { + "ID": 5168, + "SourceStructureID": 74907, + "TargetStructureID": 83757, + "Label": "74907-83757 via Adherens from 84614 -> 84615", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84614, + "TargetID": 84615, + "Directional": false + }] + }, { + "ID": 5169, + "SourceStructureID": 74907, + "TargetStructureID": 83757, + "Label": "74907-83757 via Unknown from 84617 -> 84618", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84617, + "TargetID": 84618, + "Directional": false + }] + }, { + "ID": 5170, + "SourceStructureID": 74907, + "TargetStructureID": 83790, + "Label": "74907-83790 via Adherens from 83794 -> 83795", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83794, + "TargetID": 83795, + "Directional": false + }] + }, { + "ID": 5171, + "SourceStructureID": 74907, + "TargetStructureID": 83790, + "Label": "74907-83790 via Gap Junction from 115439 -> 115440", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 115439, + "TargetID": 115440, + "Directional": false + }] + }, { + "ID": 5172, + "SourceStructureID": 83834, + "TargetStructureID": 74907, + "Label": "83834-74907 via Unknown from 83836 -> 83835", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83836, + "TargetID": 83835, + "Directional": false + }] + }, { + "ID": 5173, + "SourceStructureID": 74907, + "TargetStructureID": 83845, + "Label": "74907-83845 via Unknown from 83847 -> 83848", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83847, + "TargetID": 83848, + "Directional": false + }] + }, { + "ID": 5174, + "SourceStructureID": 74907, + "TargetStructureID": 83894, + "Label": "74907-83894 via Adherens from 84448 -> 84447", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84448, + "TargetID": 84447, + "Directional": false + }] + }, { + "ID": 5175, + "SourceStructureID": 83894, + "TargetStructureID": 74907, + "Label": "83894-74907 via Unknown from 84476 -> 84475", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84476, + "TargetID": 84475, + "Directional": false + }] + }, { + "ID": 5176, + "SourceStructureID": 74907, + "TargetStructureID": 83898, + "Label": "74907-83898 via Unknown from 84452 -> 84453", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84452, + "TargetID": 84453, + "Directional": false + }] + }, { + "ID": 5177, + "SourceStructureID": 74907, + "TargetStructureID": 83911, + "Label": "74907-83911 via Unknown from 84468 -> 84469", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84468, + "TargetID": 84469, + "Directional": false + }] + }, { + "ID": 5178, + "SourceStructureID": 74907, + "TargetStructureID": 84280, + "Label": "74907-84280 via Unknown from 84470 -> 84471", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84470, + "TargetID": 84471, + "Directional": false + }] + }, { + "ID": 5179, + "SourceStructureID": 84294, + "TargetStructureID": 74907, + "Label": "84294-74907 via Adherens from 84479 -> 84480", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84479, + "TargetID": 84480, + "Directional": false + }] + }, { + "ID": 5180, + "SourceStructureID": 74907, + "TargetStructureID": 84308, + "Label": "74907-84308 via Adherens from 84315 -> 84314", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84315, + "TargetID": 84314, + "Directional": false + }] + }, { + "ID": 5181, + "SourceStructureID": 74907, + "TargetStructureID": 84308, + "Label": "74907-84308 via Gap Junction from 84312 -> 84313", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 84312, + "TargetID": 84313, + "Directional": false + }] + }, { + "ID": 5182, + "SourceStructureID": 74907, + "TargetStructureID": 84316, + "Label": "74907-84316 via Gap Junction from 84319 -> 84320, 84333 -> 84332", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 84319, + "TargetID": 84320, + "Directional": false + }, { + "SourceID": 84333, + "TargetID": 84332, + "Directional": false + }] + }, { + "ID": 5183, + "SourceStructureID": 74907, + "TargetStructureID": 84316, + "Label": "74907-84316 via Unknown from 84326 -> 84327", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84326, + "TargetID": 84327, + "Directional": false + }] + }, { + "ID": 5184, + "SourceStructureID": 74907, + "TargetStructureID": 84449, + "Label": "74907-84449 via Unknown from 84454 -> 84455", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84454, + "TargetID": 84455, + "Directional": false + }] + }, { + "ID": 5185, + "SourceStructureID": 74907, + "TargetStructureID": 84514, + "Label": "74907-84514 via Unknown from 84595 -> 84594", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84595, + "TargetID": 84594, + "Directional": false + }] + }, { + "ID": 5186, + "SourceStructureID": 74907, + "TargetStructureID": 84570, + "Label": "74907-84570 via Unknown from 84474 -> 84571", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84474, + "TargetID": 84571, + "Directional": false + }] + }, { + "ID": 5187, + "SourceStructureID": 74907, + "TargetStructureID": 84586, + "Label": "74907-84586 via Unknown from 84772 -> 84608", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84772, + "TargetID": 84608, + "Directional": false + }] + }, { + "ID": 5188, + "SourceStructureID": 74907, + "TargetStructureID": 84621, + "Label": "74907-84621 via Unknown from 84628 -> 84629", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84628, + "TargetID": 84629, + "Directional": false + }] + }, { + "ID": 5189, + "SourceStructureID": 74907, + "TargetStructureID": 84636, + "Label": "74907-84636 via Unknown from 83816 -> 84736", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83816, + "TargetID": 84736, + "Directional": false + }] + }, { + "ID": 5190, + "SourceStructureID": 84831, + "TargetStructureID": 74907, + "Label": "84831-74907 via Unknown from 84835 -> 84834", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84835, + "TargetID": 84834, + "Directional": false + }] + }, { + "ID": 5191, + "SourceStructureID": 75021, + "TargetStructureID": 75028, + "Label": "75021-75028 via Adherens from 75029 -> 75030", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75029, + "TargetID": 75030, + "Directional": false + }] + }, { + "ID": 5192, + "SourceStructureID": 75073, + "TargetStructureID": 81153, + "Label": "75073-81153 via Adherens from 82231 -> 82232", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82231, + "TargetID": 82232, + "Directional": false + }] + }, { + "ID": 5193, + "SourceStructureID": 75130, + "TargetStructureID": 77677, + "Label": "75130-77677 via Adherens from 77687 -> 77685", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 77687, + "TargetID": 77685, + "Directional": false + }] + }, { + "ID": 5194, + "SourceStructureID": 75395, + "TargetStructureID": 75400, + "Label": "75395-75400 via Adherens from 82527 -> 82528", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82527, + "TargetID": 82528, + "Directional": false + }] + }, { + "ID": 5195, + "SourceStructureID": 75622, + "TargetStructureID": 75621, + "Label": "75622-75621 via Gap Junction from 75624 -> 75623", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 75624, + "TargetID": 75623, + "Directional": false + }] + }, { + "ID": 5196, + "SourceStructureID": 75742, + "TargetStructureID": 75739, + "Label": "75742-75739 via Adherens from 75743 -> 75740", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75743, + "TargetID": 75740, + "Directional": false + }] + }, { + "ID": 5197, + "SourceStructureID": 75764, + "TargetStructureID": 75761, + "Label": "75764-75761 via Adherens from 75765 -> 75762", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 75765, + "TargetID": 75762, + "Directional": false + }] + }, { + "ID": 5198, + "SourceStructureID": 76877, + "TargetStructureID": 76595, + "Label": "76877-76595 via Adherens from 76879 -> 76876", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76879, + "TargetID": 76876, + "Directional": false + }] + }, { + "ID": 5199, + "SourceStructureID": 76867, + "TargetStructureID": 76752, + "Label": "76867-76752 via Unknown from 82575 -> 82576", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82575, + "TargetID": 82576, + "Directional": false + }] + }, { + "ID": 5200, + "SourceStructureID": 76829, + "TargetStructureID": 76827, + "Label": "76829-76827 via Adherens from 76830 -> 76828", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76830, + "TargetID": 76828, + "Directional": false + }] + }, { + "ID": 5201, + "SourceStructureID": 76829, + "TargetStructureID": 76832, + "Label": "76829-76832 via Adherens from 76839 -> 76840", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 76839, + "TargetID": 76840, + "Directional": false + }] + }, { + "ID": 5202, + "SourceStructureID": 76832, + "TargetStructureID": 76829, + "Label": "76832-76829 via Gap Junction from 76833 -> 76831", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 76833, + "TargetID": 76831, + "Directional": false + }] + }, { + "ID": 5203, + "SourceStructureID": 82677, + "TargetStructureID": 77403, + "Label": "82677-77403 via Adherens from 83672 -> 83673", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83672, + "TargetID": 83673, + "Directional": false + }] + }, { + "ID": 5204, + "SourceStructureID": 78367, + "TargetStructureID": 78367, + "Label": "78367-78367 via Unknown from 78368 -> 78369", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 78368, + "TargetID": 78369, + "Directional": false + }] + }, { + "ID": 5205, + "SourceStructureID": 78423, + "TargetStructureID": 78710, + "Label": "78423-78710 via Adherens from 78712 -> 78711", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78712, + "TargetID": 78711, + "Directional": false + }] + }, { + "ID": 5206, + "SourceStructureID": 78761, + "TargetStructureID": 78709, + "Label": "78761-78709 via Adherens from 78764 -> 78763", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 78764, + "TargetID": 78763, + "Directional": false + }] + }, { + "ID": 5207, + "SourceStructureID": 87545, + "TargetStructureID": 78909, + "Label": "87545-78909 via Adherens from 87546 -> 87544", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87546, + "TargetID": 87544, + "Directional": false + }] + }, { + "ID": 5208, + "SourceStructureID": 87604, + "TargetStructureID": 78909, + "Label": "87604-78909 via Adherens from 87605 -> 87603", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87605, + "TargetID": 87603, + "Directional": false + }] + }, { + "ID": 5209, + "SourceStructureID": 79069, + "TargetStructureID": 79068, + "Label": "79069-79068 via Adherens from 79076 -> 79075, 79289 -> 79287", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79076, + "TargetID": 79075, + "Directional": false + }, { + "SourceID": 79289, + "TargetID": 79287, + "Directional": false + }] + }, { + "ID": 5210, + "SourceStructureID": 79068, + "TargetStructureID": 79091, + "Label": "79068-79091 via Adherens from 79139 -> 79138, 79140 -> 79141, 79266 -> 79267, 79293 -> 79292", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79139, + "TargetID": 79138, + "Directional": false + }, { + "SourceID": 79140, + "TargetID": 79141, + "Directional": false + }, { + "SourceID": 79266, + "TargetID": 79267, + "Directional": false + }, { + "SourceID": 79293, + "TargetID": 79292, + "Directional": false + }] + }, { + "ID": 5211, + "SourceStructureID": 79072, + "TargetStructureID": 79069, + "Label": "79072-79069 via Adherens from 79100 -> 79099, 79133 -> 79134, 79272 -> 79273, 79390 -> 79392", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79100, + "TargetID": 79099, + "Directional": false + }, { + "SourceID": 79133, + "TargetID": 79134, + "Directional": false + }, { + "SourceID": 79272, + "TargetID": 79273, + "Directional": false + }, { + "SourceID": 79390, + "TargetID": 79392, + "Directional": false + }] + }, { + "ID": 5212, + "SourceStructureID": 79074, + "TargetStructureID": 79069, + "Label": "79074-79069 via Adherens from 79113 -> 79114, 79115 -> 79116, 79275 -> 79274, 79391 -> 79392, 79393 -> 79394, 79395 -> 79396", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79113, + "TargetID": 79114, + "Directional": false + }, { + "SourceID": 79115, + "TargetID": 79116, + "Directional": false + }, { + "SourceID": 79275, + "TargetID": 79274, + "Directional": false + }, { + "SourceID": 79391, + "TargetID": 79392, + "Directional": false + }, { + "SourceID": 79393, + "TargetID": 79394, + "Directional": false + }, { + "SourceID": 79395, + "TargetID": 79396, + "Directional": false + }] + }, { + "ID": 5213, + "SourceStructureID": 79072, + "TargetStructureID": 79071, + "Label": "79072-79071 via Adherens from 79306 -> 79305, 79387 -> 79386, 79388 -> 79389", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79306, + "TargetID": 79305, + "Directional": false + }, { + "SourceID": 79387, + "TargetID": 79386, + "Directional": false + }, { + "SourceID": 79388, + "TargetID": 79389, + "Directional": false + }] + }, { + "ID": 5214, + "SourceStructureID": 79074, + "TargetStructureID": 79072, + "Label": "79074-79072 via Adherens from 79079 -> 79080, 79082 -> 79081, 79084 -> 79083, 79103 -> 79101, 79104 -> 79102, 79110 -> 79109, 79136 -> 79135, 79312 -> 79314, 79313 -> 79314, 79327 -> 79328, 79344 -> 79343, 79391 -> 79390", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79079, + "TargetID": 79080, + "Directional": false + }, { + "SourceID": 79082, + "TargetID": 79081, + "Directional": false + }, { + "SourceID": 79084, + "TargetID": 79083, + "Directional": false + }, { + "SourceID": 79103, + "TargetID": 79101, + "Directional": false + }, { + "SourceID": 79104, + "TargetID": 79102, + "Directional": false + }, { + "SourceID": 79110, + "TargetID": 79109, + "Directional": false + }, { + "SourceID": 79136, + "TargetID": 79135, + "Directional": false + }, { + "SourceID": 79312, + "TargetID": 79314, + "Directional": false + }, { + "SourceID": 79313, + "TargetID": 79314, + "Directional": false + }, { + "SourceID": 79327, + "TargetID": 79328, + "Directional": false + }, { + "SourceID": 79344, + "TargetID": 79343, + "Directional": false + }, { + "SourceID": 79391, + "TargetID": 79390, + "Directional": false + }] + }, { + "ID": 5215, + "SourceStructureID": 81917, + "TargetStructureID": 79317, + "Label": "81917-79317 via Gap Junction from 99034 -> 99033", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 99034, + "TargetID": 99033, + "Directional": false + }] + }, { + "ID": 5216, + "SourceStructureID": 79559, + "TargetStructureID": 79512, + "Label": "79559-79512 via Adherens from 79569 -> 79529", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 79569, + "TargetID": 79529, + "Directional": false + }] + }, { + "ID": 5217, + "SourceStructureID": 82305, + "TargetStructureID": 79586, + "Label": "82305-79586 via Adherens from 116718 -> 79593", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 116718, + "TargetID": 79593, + "Directional": false + }] + }, { + "ID": 5218, + "SourceStructureID": 79908, + "TargetStructureID": 83121, + "Label": "79908-83121 via BC Conventional Synapse from 83120 -> 83122", + "Type": "BC Conventional Synapse", + "Directional": false, + "Links": [{ + "SourceID": 83120, + "TargetID": 83122, + "Directional": false + }] + }, { + "ID": 5219, + "SourceStructureID": 80139, + "TargetStructureID": 82271, + "Label": "80139-82271 via Adherens from 83629 -> 83630", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83629, + "TargetID": 83630, + "Directional": false + }] + }, { + "ID": 5220, + "SourceStructureID": 81304, + "TargetStructureID": 81316, + "Label": "81304-81316 via Unknown from 81317 -> 81319", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 81317, + "TargetID": 81319, + "Directional": false + }] + }, { + "ID": 5221, + "SourceStructureID": 131704, + "TargetStructureID": 81429, + "Label": "131704-81429 via Adherens from 131705 -> 81443", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131705, + "TargetID": 81443, + "Directional": false + }] + }, { + "ID": 5222, + "SourceStructureID": 81615, + "TargetStructureID": 133891, + "Label": "81615-133891 via Adherens from 133899 -> 133898", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133899, + "TargetID": 133898, + "Directional": false + }] + }, { + "ID": 5223, + "SourceStructureID": 81771, + "TargetStructureID": 81667, + "Label": "81771-81667 via Adherens from 81772 -> 81773", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81772, + "TargetID": 81773, + "Directional": false + }] + }, { + "ID": 5224, + "SourceStructureID": 81776, + "TargetStructureID": 81667, + "Label": "81776-81667 via Adherens from 81777 -> 81778", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81777, + "TargetID": 81778, + "Directional": false + }] + }, { + "ID": 5225, + "SourceStructureID": 81748, + "TargetStructureID": 81743, + "Label": "81748-81743 via Adherens from 81749 -> 81747, 81750 -> 81746", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81749, + "TargetID": 81747, + "Directional": false + }, { + "SourceID": 81750, + "TargetID": 81746, + "Directional": false + }] + }, { + "ID": 5226, + "SourceStructureID": 81808, + "TargetStructureID": 81799, + "Label": "81808-81799 via Adherens from 81809 -> 81807", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81809, + "TargetID": 81807, + "Directional": false + }] + }, { + "ID": 5227, + "SourceStructureID": 81799, + "TargetStructureID": 81831, + "Label": "81799-81831 via Adherens from 81830 -> 81832", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 81830, + "TargetID": 81832, + "Directional": false + }] + }, { + "ID": 5228, + "SourceStructureID": 82172, + "TargetStructureID": 82177, + "Label": "82172-82177 via Adherens from 82176 -> 82178", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82176, + "TargetID": 82178, + "Directional": false + }] + }, { + "ID": 5229, + "SourceStructureID": 82330, + "TargetStructureID": 82305, + "Label": "82330-82305 via Adherens from 82331 -> 82329", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82331, + "TargetID": 82329, + "Directional": false + }] + }, { + "ID": 5230, + "SourceStructureID": 82412, + "TargetStructureID": 82773, + "Label": "82412-82773 via Adherens from 82775 -> 82774", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 82775, + "TargetID": 82774, + "Directional": false + }] + }, { + "ID": 5231, + "SourceStructureID": 83638, + "TargetStructureID": 82677, + "Label": "83638-82677 via Adherens from 83639 -> 83640", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83639, + "TargetID": 83640, + "Directional": false + }] + }, { + "ID": 5232, + "SourceStructureID": 82677, + "TargetStructureID": 83674, + "Label": "82677-83674 via Adherens from 83675 -> 83676", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83675, + "TargetID": 83676, + "Directional": false + }] + }, { + "ID": 5233, + "SourceStructureID": 82677, + "TargetStructureID": 83679, + "Label": "82677-83679 via Adherens from 83695 -> 83696", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83695, + "TargetID": 83696, + "Directional": false + }] + }, { + "ID": 5234, + "SourceStructureID": 82677, + "TargetStructureID": 83714, + "Label": "82677-83714 via Adherens from 83723 -> 83722", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83723, + "TargetID": 83722, + "Directional": false + }] + }, { + "ID": 5235, + "SourceStructureID": 83725, + "TargetStructureID": 82677, + "Label": "83725-82677 via Adherens from 83728 -> 83729", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83728, + "TargetID": 83729, + "Directional": false + }] + }, { + "ID": 5236, + "SourceStructureID": 82677, + "TargetStructureID": 83767, + "Label": "82677-83767 via Adherens from 83769 -> 83768, 83775 -> 83774", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83769, + "TargetID": 83768, + "Directional": false + }, { + "SourceID": 83775, + "TargetID": 83774, + "Directional": false + }] + }, { + "ID": 5237, + "SourceStructureID": 83782, + "TargetStructureID": 82677, + "Label": "83782-82677 via Adherens from 83783 -> 83781", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83783, + "TargetID": 83781, + "Directional": false + }] + }, { + "ID": 5238, + "SourceStructureID": 83828, + "TargetStructureID": 82677, + "Label": "83828-82677 via Adherens from 83829 -> 83827", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83829, + "TargetID": 83827, + "Directional": false + }] + }, { + "ID": 5239, + "SourceStructureID": 82677, + "TargetStructureID": 83866, + "Label": "82677-83866 via Adherens from 83880 -> 83879", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83880, + "TargetID": 83879, + "Directional": false + }] + }, { + "ID": 5240, + "SourceStructureID": 84021, + "TargetStructureID": 82677, + "Label": "84021-82677 via Adherens from 84022 -> 84020", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84022, + "TargetID": 84020, + "Directional": false + }] + }, { + "ID": 5241, + "SourceStructureID": 84050, + "TargetStructureID": 82677, + "Label": "84050-82677 via Adherens from 84051 -> 84049", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84051, + "TargetID": 84049, + "Directional": false + }] + }, { + "ID": 5242, + "SourceStructureID": 82677, + "TargetStructureID": 117990, + "Label": "82677-117990 via Gap Junction from 118005 -> 118002", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118005, + "TargetID": 118002, + "Directional": false + }] + }, { + "ID": 5243, + "SourceStructureID": 82743, + "TargetStructureID": 82777, + "Label": "82743-82777 via Unknown from 82776 -> 82778", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82776, + "TargetID": 82778, + "Directional": false + }] + }, { + "ID": 5244, + "SourceStructureID": 82743, + "TargetStructureID": 82789, + "Label": "82743-82789 via Unknown from 82788 -> 82790", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 82788, + "TargetID": 82790, + "Directional": false + }] + }, { + "ID": 5245, + "SourceStructureID": 83008, + "TargetStructureID": 82743, + "Label": "83008-82743 via Unknown from 83009 -> 83007", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83009, + "TargetID": 83007, + "Directional": false + }] + }, { + "ID": 5246, + "SourceStructureID": 82743, + "TargetStructureID": 83010, + "Label": "82743-83010 via Unknown from 83006 -> 83011", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83006, + "TargetID": 83011, + "Directional": false + }] + }, { + "ID": 5247, + "SourceStructureID": 82743, + "TargetStructureID": 83012, + "Label": "82743-83012 via Unknown from 83013 -> 83014", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 83013, + "TargetID": 83014, + "Directional": false + }] + }, { + "ID": 5248, + "SourceStructureID": 83619, + "TargetStructureID": 83056, + "Label": "83619-83056 via Adherens from 83620 -> 83618", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83620, + "TargetID": 83618, + "Directional": false + }] + }, { + "ID": 5249, + "SourceStructureID": 83200, + "TargetStructureID": 83161, + "Label": "83200-83161 via Gap Junction from 83201 -> 83199", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 83201, + "TargetID": 83199, + "Directional": false + }] + }, { + "ID": 5250, + "SourceStructureID": 83329, + "TargetStructureID": 83331, + "Label": "83329-83331 via Gap Junction from 83330 -> 83332", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 83330, + "TargetID": 83332, + "Directional": false + }] + }, { + "ID": 5251, + "SourceStructureID": 83449, + "TargetStructureID": 83448, + "Label": "83449-83448 via Adherens from 83453 -> 83452", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83453, + "TargetID": 83452, + "Directional": false + }] + }, { + "ID": 5252, + "SourceStructureID": 83650, + "TargetStructureID": 83648, + "Label": "83650-83648 via Adherens from 83651 -> 83649", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 83651, + "TargetID": 83649, + "Directional": false + }] + }, { + "ID": 5253, + "SourceStructureID": 83807, + "TargetStructureID": 84636, + "Label": "83807-84636 via Unknown from 84735 -> 84734", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84735, + "TargetID": 84734, + "Directional": false + }] + }, { + "ID": 5254, + "SourceStructureID": 84082, + "TargetStructureID": 84088, + "Label": "84082-84088 via Adherens from 84094 -> 84093", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84094, + "TargetID": 84093, + "Directional": false + }] + }, { + "ID": 5255, + "SourceStructureID": 84177, + "TargetStructureID": 84165, + "Label": "84177-84165 via Adherens from 84178 -> 84176", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84178, + "TargetID": 84176, + "Directional": false + }] + }, { + "ID": 5256, + "SourceStructureID": 84751, + "TargetStructureID": 84748, + "Label": "84751-84748 via Adherens from 84752 -> 84750", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84752, + "TargetID": 84750, + "Directional": false + }] + }, { + "ID": 5257, + "SourceStructureID": 84830, + "TargetStructureID": 84847, + "Label": "84830-84847 via Adherens from 84846 -> 84848", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84846, + "TargetID": 84848, + "Directional": false + }] + }, { + "ID": 5258, + "SourceStructureID": 84900, + "TargetStructureID": 84830, + "Label": "84900-84830 via Adherens from 84901 -> 84899", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84901, + "TargetID": 84899, + "Directional": false + }] + }, { + "ID": 5259, + "SourceStructureID": 84919, + "TargetStructureID": 84830, + "Label": "84919-84830 via Adherens from 85470 -> 85469", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85470, + "TargetID": 85469, + "Directional": false + }] + }, { + "ID": 5260, + "SourceStructureID": 84924, + "TargetStructureID": 84830, + "Label": "84924-84830 via Unknown from 84925 -> 84923", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 84925, + "TargetID": 84923, + "Directional": false + }] + }, { + "ID": 5261, + "SourceStructureID": 84909, + "TargetStructureID": 84900, + "Label": "84909-84900 via Adherens from 84910 -> 84908", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84910, + "TargetID": 84908, + "Directional": false + }] + }, { + "ID": 5262, + "SourceStructureID": 84903, + "TargetStructureID": 84905, + "Label": "84903-84905 via Adherens from 84904 -> 84906", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 84904, + "TargetID": 84906, + "Directional": false + }] + }, { + "ID": 5263, + "SourceStructureID": 85053, + "TargetStructureID": 85094, + "Label": "85053-85094 via Adherens from 85111 -> 85110", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85111, + "TargetID": 85110, + "Directional": false + }] + }, { + "ID": 5264, + "SourceStructureID": 85072, + "TargetStructureID": 85068, + "Label": "85072-85068 via Adherens from 85073 -> 85071", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85073, + "TargetID": 85071, + "Directional": false + }] + }, { + "ID": 5265, + "SourceStructureID": 85079, + "TargetStructureID": 85082, + "Label": "85079-85082 via Adherens from 85086 -> 85085", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85086, + "TargetID": 85085, + "Directional": false + }] + }, { + "ID": 5266, + "SourceStructureID": 85121, + "TargetStructureID": 85119, + "Label": "85121-85119 via Adherens from 85126 -> 85120, 85130 -> 85131", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85126, + "TargetID": 85120, + "Directional": false + }, { + "SourceID": 85130, + "TargetID": 85131, + "Directional": false + }] + }, { + "ID": 5267, + "SourceStructureID": 85141, + "TargetStructureID": 85149, + "Label": "85141-85149 via Adherens from 85152 -> 85153", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85152, + "TargetID": 85153, + "Directional": false + }] + }, { + "ID": 5268, + "SourceStructureID": 85159, + "TargetStructureID": 85141, + "Label": "85159-85141 via Adherens from 85160 -> 85158", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85160, + "TargetID": 85158, + "Directional": false + }] + }, { + "ID": 5269, + "SourceStructureID": 85162, + "TargetStructureID": 85141, + "Label": "85162-85141 via Adherens from 85163 -> 85161", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85163, + "TargetID": 85161, + "Directional": false + }] + }, { + "ID": 5270, + "SourceStructureID": 85172, + "TargetStructureID": 85141, + "Label": "85172-85141 via Adherens from 85177 -> 85178", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85177, + "TargetID": 85178, + "Directional": false + }] + }, { + "ID": 5271, + "SourceStructureID": 85141, + "TargetStructureID": 85214, + "Label": "85141-85214 via Unknown from 85393 -> 85394", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 85393, + "TargetID": 85394, + "Directional": false + }] + }, { + "ID": 5272, + "SourceStructureID": 85233, + "TargetStructureID": 85141, + "Label": "85233-85141 via Adherens from 85398 -> 85397", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85398, + "TargetID": 85397, + "Directional": false + }] + }, { + "ID": 5273, + "SourceStructureID": 85352, + "TargetStructureID": 85141, + "Label": "85352-85141 via Adherens from 85353 -> 85351", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85353, + "TargetID": 85351, + "Directional": false + }] + }, { + "ID": 5274, + "SourceStructureID": 85141, + "TargetStructureID": 85386, + "Label": "85141-85386 via Adherens from 85385 -> 85387", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85385, + "TargetID": 85387, + "Directional": false + }] + }, { + "ID": 5275, + "SourceStructureID": 85750, + "TargetStructureID": 85748, + "Label": "85750-85748 via Adherens from 85753 -> 85752", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85753, + "TargetID": 85752, + "Directional": false + }] + }, { + "ID": 5276, + "SourceStructureID": 85748, + "TargetStructureID": 85766, + "Label": "85748-85766 via Adherens from 85764 -> 85767", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85764, + "TargetID": 85767, + "Directional": false + }] + }, { + "ID": 5277, + "SourceStructureID": 85771, + "TargetStructureID": 85748, + "Label": "85771-85748 via Adherens from 85773 -> 85769", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85773, + "TargetID": 85769, + "Directional": false + }] + }, { + "ID": 5278, + "SourceStructureID": 85900, + "TargetStructureID": 85856, + "Label": "85900-85856 via Gap Junction from 85901 -> 85899", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 85901, + "TargetID": 85899, + "Directional": false + }] + }, { + "ID": 5279, + "SourceStructureID": 85856, + "TargetStructureID": 136970, + "Label": "85856-136970 via Gap Junction from 136982 -> 136981", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136982, + "TargetID": 136981, + "Directional": false + }] + }, { + "ID": 5280, + "SourceStructureID": 85924, + "TargetStructureID": 85928, + "Label": "85924-85928 via Adherens from 85952 -> 85953", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 85952, + "TargetID": 85953, + "Directional": false + }] + }, { + "ID": 5281, + "SourceStructureID": 86050, + "TargetStructureID": 86036, + "Label": "86050-86036 via Adherens from 86058 -> 86051", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86058, + "TargetID": 86051, + "Directional": false + }] + }, { + "ID": 5282, + "SourceStructureID": 86634, + "TargetStructureID": 86662, + "Label": "86634-86662 via Adherens from 86664 -> 86665", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86664, + "TargetID": 86665, + "Directional": false + }] + }, { + "ID": 5283, + "SourceStructureID": 86667, + "TargetStructureID": 86634, + "Label": "86667-86634 via Adherens from 86668 -> 86666", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86668, + "TargetID": 86666, + "Directional": false + }] + }, { + "ID": 5284, + "SourceStructureID": 86672, + "TargetStructureID": 86634, + "Label": "86672-86634 via Adherens from 86682 -> 86681", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86682, + "TargetID": 86681, + "Directional": false + }] + }, { + "ID": 5285, + "SourceStructureID": 86634, + "TargetStructureID": 86675, + "Label": "86634-86675 via Adherens from 86679 -> 86680", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86679, + "TargetID": 86680, + "Directional": false + }] + }, { + "ID": 5286, + "SourceStructureID": 86702, + "TargetStructureID": 86634, + "Label": "86702-86634 via Unknown from 86703 -> 86701", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 86703, + "TargetID": 86701, + "Directional": false + }] + }, { + "ID": 5287, + "SourceStructureID": 86675, + "TargetStructureID": 86672, + "Label": "86675-86672 via Adherens from 86677 -> 86676", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86677, + "TargetID": 86676, + "Directional": false + }] + }, { + "ID": 5288, + "SourceStructureID": 86933, + "TargetStructureID": 86934, + "Label": "86933-86934 via Adherens from 86937 -> 86938", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86937, + "TargetID": 86938, + "Directional": false + }] + }, { + "ID": 5289, + "SourceStructureID": 86991, + "TargetStructureID": 86985, + "Label": "86991-86985 via Adherens from 86993 -> 86994", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 86993, + "TargetID": 86994, + "Directional": false + }] + }, { + "ID": 5290, + "SourceStructureID": 87145, + "TargetStructureID": 87149, + "Label": "87145-87149 via Adherens from 87153 -> 87152", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87153, + "TargetID": 87152, + "Directional": false + }] + }, { + "ID": 5291, + "SourceStructureID": 87189, + "TargetStructureID": 87183, + "Label": "87189-87183 via Adherens from 87191 -> 87188", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87191, + "TargetID": 87188, + "Directional": false + }] + }, { + "ID": 5292, + "SourceStructureID": 87304, + "TargetStructureID": 87294, + "Label": "87304-87294 via Adherens from 87306 -> 87307", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87306, + "TargetID": 87307, + "Directional": false + }] + }, { + "ID": 5293, + "SourceStructureID": 87309, + "TargetStructureID": 87294, + "Label": "87309-87294 via Adherens from 87310 -> 87308", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87310, + "TargetID": 87308, + "Directional": false + }] + }, { + "ID": 5294, + "SourceStructureID": 87294, + "TargetStructureID": 87318, + "Label": "87294-87318 via Unknown from 87317 -> 87319", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 87317, + "TargetID": 87319, + "Directional": false + }] + }, { + "ID": 5295, + "SourceStructureID": 89124, + "TargetStructureID": 87294, + "Label": "89124-87294 via Adherens from 89154 -> 89155", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89154, + "TargetID": 89155, + "Directional": false + }] + }, { + "ID": 5296, + "SourceStructureID": 87396, + "TargetStructureID": 87342, + "Label": "87396-87342 via Adherens from 87397 -> 87395", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87397, + "TargetID": 87395, + "Directional": false + }] + }, { + "ID": 5297, + "SourceStructureID": 87349, + "TargetStructureID": 87345, + "Label": "87349-87345 via Adherens from 87351 -> 87352", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 87351, + "TargetID": 87352, + "Directional": false + }] + }, { + "ID": 5298, + "SourceStructureID": 88199, + "TargetStructureID": 88205, + "Label": "88199-88205 via Adherens from 88204 -> 88206", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88204, + "TargetID": 88206, + "Directional": false + }] + }, { + "ID": 5299, + "SourceStructureID": 88199, + "TargetStructureID": 88215, + "Label": "88199-88215 via Adherens from 88217 -> 88218", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88217, + "TargetID": 88218, + "Directional": false + }] + }, { + "ID": 5300, + "SourceStructureID": 88230, + "TargetStructureID": 88199, + "Label": "88230-88199 via Adherens from 88233 -> 88232", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88233, + "TargetID": 88232, + "Directional": false + }] + }, { + "ID": 5301, + "SourceStructureID": 88300, + "TargetStructureID": 88260, + "Label": "88300-88260 via Adherens from 88303 -> 88295", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88303, + "TargetID": 88295, + "Directional": false + }] + }, { + "ID": 5302, + "SourceStructureID": 88305, + "TargetStructureID": 88260, + "Label": "88305-88260 via Adherens from 88307 -> 88308, 88311 -> 88310", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88307, + "TargetID": 88308, + "Directional": false + }, { + "SourceID": 88311, + "TargetID": 88310, + "Directional": false + }] + }, { + "ID": 5303, + "SourceStructureID": 88320, + "TargetStructureID": 88260, + "Label": "88320-88260 via Unknown from 88321 -> 88319", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 88321, + "TargetID": 88319, + "Directional": false + }] + }, { + "ID": 5304, + "SourceStructureID": 88323, + "TargetStructureID": 88260, + "Label": "88323-88260 via Adherens from 88324 -> 88322", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88324, + "TargetID": 88322, + "Directional": false + }] + }, { + "ID": 5305, + "SourceStructureID": 88325, + "TargetStructureID": 88323, + "Label": "88325-88323 via Adherens from 88326 -> 88324", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88326, + "TargetID": 88324, + "Directional": false + }] + }, { + "ID": 5306, + "SourceStructureID": 88600, + "TargetStructureID": 88594, + "Label": "88600-88594 via Adherens from 88601 -> 88599", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88601, + "TargetID": 88599, + "Directional": false + }] + }, { + "ID": 5307, + "SourceStructureID": 88923, + "TargetStructureID": 88919, + "Label": "88923-88919 via Adherens from 88925 -> 88922", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 88925, + "TargetID": 88922, + "Directional": false + }] + }, { + "ID": 5308, + "SourceStructureID": 89039, + "TargetStructureID": 89046, + "Label": "89039-89046 via Adherens from 89048 -> 89049", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89048, + "TargetID": 89049, + "Directional": false + }] + }, { + "ID": 5309, + "SourceStructureID": 89160, + "TargetStructureID": 89120, + "Label": "89160-89120 via Adherens from 89164 -> 89163", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89164, + "TargetID": 89163, + "Directional": false + }] + }, { + "ID": 5310, + "SourceStructureID": 89323, + "TargetStructureID": 89124, + "Label": "89323-89124 via Adherens from 89326 -> 89325", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89326, + "TargetID": 89325, + "Directional": false + }] + }, { + "ID": 5311, + "SourceStructureID": 89323, + "TargetStructureID": 89124, + "Label": "89323-89124 via Gap Junction from 89324 -> 89322", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89324, + "TargetID": 89322, + "Directional": false + }] + }, { + "ID": 5312, + "SourceStructureID": 89336, + "TargetStructureID": 89124, + "Label": "89336-89124 via Unknown from 89337 -> 89335", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89337, + "TargetID": 89335, + "Directional": false + }] + }, { + "ID": 5313, + "SourceStructureID": 89355, + "TargetStructureID": 89124, + "Label": "89355-89124 via Adherens from 89358 -> 89354", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89358, + "TargetID": 89354, + "Directional": false + }] + }, { + "ID": 5314, + "SourceStructureID": 89133, + "TargetStructureID": 89133, + "Label": "89133-89133 via Gap Junction from 89203 -> 89202", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 89203, + "TargetID": 89202, + "Directional": false + }] + }, { + "ID": 5315, + "SourceStructureID": 97959, + "TargetStructureID": 89433, + "Label": "97959-89433 via Gap Junction from 97960 -> 97958", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 97960, + "TargetID": 97958, + "Directional": false + }] + }, { + "ID": 5316, + "SourceStructureID": 89694, + "TargetStructureID": 89677, + "Label": "89694-89677 via Adherens from 89697 -> 89692", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89697, + "TargetID": 89692, + "Directional": false + }] + }, { + "ID": 5317, + "SourceStructureID": 89677, + "TargetStructureID": 89694, + "Label": "89677-89694 via Unknown from 89693 -> 89696, 89695 -> 89691", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 89693, + "TargetID": 89696, + "Directional": false + }, { + "SourceID": 89695, + "TargetID": 89691, + "Directional": false + }] + }, { + "ID": 5318, + "SourceStructureID": 89798, + "TargetStructureID": 89775, + "Label": "89798-89775 via Adherens from 89799 -> 89797", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89799, + "TargetID": 89797, + "Directional": false + }] + }, { + "ID": 5319, + "SourceStructureID": 89801, + "TargetStructureID": 89775, + "Label": "89801-89775 via Adherens from 89802 -> 89800", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89802, + "TargetID": 89800, + "Directional": false + }] + }, { + "ID": 5320, + "SourceStructureID": 89814, + "TargetStructureID": 89811, + "Label": "89814-89811 via Adherens from 89819 -> 89818", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89819, + "TargetID": 89818, + "Directional": false + }] + }, { + "ID": 5321, + "SourceStructureID": 89836, + "TargetStructureID": 89831, + "Label": "89836-89831 via Adherens from 89841 -> 89835", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89841, + "TargetID": 89835, + "Directional": false + }] + }, { + "ID": 5322, + "SourceStructureID": 89910, + "TargetStructureID": 89851, + "Label": "89910-89851 via Adherens from 89911 -> 89909", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89911, + "TargetID": 89909, + "Directional": false + }] + }, { + "ID": 5323, + "SourceStructureID": 89928, + "TargetStructureID": 89851, + "Label": "89928-89851 via Adherens from 89929 -> 89925, 89930 -> 89927", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89929, + "TargetID": 89925, + "Directional": false + }, { + "SourceID": 89930, + "TargetID": 89927, + "Directional": false + }] + }, { + "ID": 5324, + "SourceStructureID": 89993, + "TargetStructureID": 89989, + "Label": "89993-89989 via Adherens from 89994 -> 89992", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 89994, + "TargetID": 89992, + "Directional": false + }] + }, { + "ID": 5325, + "SourceStructureID": 90035, + "TargetStructureID": 89989, + "Label": "90035-89989 via Adherens from 90036 -> 90034", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90036, + "TargetID": 90034, + "Directional": false + }] + }, { + "ID": 5326, + "SourceStructureID": 90089, + "TargetStructureID": 89989, + "Label": "90089-89989 via Adherens from 90090 -> 90088", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90090, + "TargetID": 90088, + "Directional": false + }] + }, { + "ID": 5327, + "SourceStructureID": 90092, + "TargetStructureID": 89989, + "Label": "90092-89989 via Adherens from 90093 -> 90091", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90093, + "TargetID": 90091, + "Directional": false + }] + }, { + "ID": 5328, + "SourceStructureID": 90795, + "TargetStructureID": 90791, + "Label": "90795-90791 via Adherens from 90797 -> 90794", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90797, + "TargetID": 90794, + "Directional": false + }] + }, { + "ID": 5329, + "SourceStructureID": 90795, + "TargetStructureID": 90791, + "Label": "90795-90791 via Gap Junction from 90798 -> 90793", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 90798, + "TargetID": 90793, + "Directional": false + }] + }, { + "ID": 5330, + "SourceStructureID": 90956, + "TargetStructureID": 90952, + "Label": "90956-90952 via Adherens from 90957 -> 90954", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 90957, + "TargetID": 90954, + "Directional": false + }] + }, { + "ID": 5331, + "SourceStructureID": 91042, + "TargetStructureID": 91043, + "Label": "91042-91043 via Adherens from 91045 -> 91044", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91045, + "TargetID": 91044, + "Directional": false + }] + }, { + "ID": 5332, + "SourceStructureID": 91073, + "TargetStructureID": 91080, + "Label": "91073-91080 via Adherens from 91083 -> 91082", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91083, + "TargetID": 91082, + "Directional": false + }] + }, { + "ID": 5333, + "SourceStructureID": 91240, + "TargetStructureID": 91240, + "Label": "91240-91240 via Adherens from 91242 -> 91241", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 91242, + "TargetID": 91241, + "Directional": false + }] + }, { + "ID": 5334, + "SourceStructureID": 92092, + "TargetStructureID": 92092, + "Label": "92092-92092 via Adherens from 92798 -> 92797", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 92798, + "TargetID": 92797, + "Directional": false + }] + }, { + "ID": 5335, + "SourceStructureID": 113541, + "TargetStructureID": 92865, + "Label": "113541-92865 via Gap Junction from 113543 -> 92866", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 113543, + "TargetID": 92866, + "Directional": false + }] + }, { + "ID": 5336, + "SourceStructureID": 93494, + "TargetStructureID": 93486, + "Label": "93494-93486 via Adherens from 93495 -> 93493", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 93495, + "TargetID": 93493, + "Directional": false + }] + }, { + "ID": 5337, + "SourceStructureID": 94579, + "TargetStructureID": 94579, + "Label": "94579-94579 via Unknown from 94580 -> 94581", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 94580, + "TargetID": 94581, + "Directional": false + }] + }, { + "ID": 5338, + "SourceStructureID": 95299, + "TargetStructureID": 95311, + "Label": "95299-95311 via Unknown from 132857 -> 132859", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 132857, + "TargetID": 132859, + "Directional": false + }] + }, { + "ID": 5339, + "SourceStructureID": 95607, + "TargetStructureID": 95605, + "Label": "95607-95605 via Adherens from 133054 -> 133055", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 133054, + "TargetID": 133055, + "Directional": false + }] + }, { + "ID": 5340, + "SourceStructureID": 96189, + "TargetStructureID": 96212, + "Label": "96189-96212 via Unknown from 96214 -> 96213", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 96214, + "TargetID": 96213, + "Directional": false + }] + }, { + "ID": 5341, + "SourceStructureID": 108026, + "TargetStructureID": 96898, + "Label": "108026-96898 via Unknown from 108027 -> 108028", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108027, + "TargetID": 108028, + "Directional": false + }] + }, { + "ID": 5342, + "SourceStructureID": 97352, + "TargetStructureID": 97355, + "Label": "97352-97355 via Unknown from 131106 -> 131105", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 131106, + "TargetID": 131105, + "Directional": false + }] + }, { + "ID": 5343, + "SourceStructureID": 97376, + "TargetStructureID": 97541, + "Label": "97376-97541 via Adherens from 97433 -> 97542", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 97433, + "TargetID": 97542, + "Directional": false + }] + }, { + "ID": 5344, + "SourceStructureID": 98127, + "TargetStructureID": 98556, + "Label": "98127-98556 via Unknown from 98783 -> 98568", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 98783, + "TargetID": 98568, + "Directional": false + }] + }, { + "ID": 5345, + "SourceStructureID": 98505, + "TargetStructureID": 98505, + "Label": "98505-98505 via Adherens from 98508 -> 98507", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 98508, + "TargetID": 98507, + "Directional": false + }] + }, { + "ID": 5346, + "SourceStructureID": 99365, + "TargetStructureID": 99356, + "Label": "99365-99356 via Gap Junction from 99367 -> 99360", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 99367, + "TargetID": 99360, + "Directional": false + }] + }, { + "ID": 5347, + "SourceStructureID": 99831, + "TargetStructureID": 100129, + "Label": "99831-100129 via Adherens from 100133 -> 100134", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100133, + "TargetID": 100134, + "Directional": false + }] + }, { + "ID": 5348, + "SourceStructureID": 99981, + "TargetStructureID": 99981, + "Label": "99981-99981 via Adherens from 134212 -> 134211", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 134212, + "TargetID": 134211, + "Directional": false + }] + }, { + "ID": 5349, + "SourceStructureID": 100709, + "TargetStructureID": 100147, + "Label": "100709-100147 via Adherens from 100711 -> 100712", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 100711, + "TargetID": 100712, + "Directional": false + }] + }, { + "ID": 5350, + "SourceStructureID": 103084, + "TargetStructureID": 102607, + "Label": "103084-102607 via Unknown from 134061 -> 134060", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 134061, + "TargetID": 134060, + "Directional": false + }] + }, { + "ID": 5351, + "SourceStructureID": 103572, + "TargetStructureID": 103572, + "Label": "103572-103572 via Unknown from 103583 -> 103582", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 103583, + "TargetID": 103582, + "Directional": false + }] + }, { + "ID": 5352, + "SourceStructureID": 133891, + "TargetStructureID": 105210, + "Label": "133891-105210 via Gap Junction from 133892 -> 133893", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 133892, + "TargetID": 133893, + "Directional": false + }] + }, { + "ID": 5353, + "SourceStructureID": 108539, + "TargetStructureID": 108539, + "Label": "108539-108539 via Unknown from 108544 -> 108543", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 108544, + "TargetID": 108543, + "Directional": false + }] + }, { + "ID": 5354, + "SourceStructureID": 110880, + "TargetStructureID": 110879, + "Label": "110880-110879 via Adherens from 110897 -> 110898", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 110897, + "TargetID": 110898, + "Directional": false + }] + }, { + "ID": 5355, + "SourceStructureID": 112264, + "TargetStructureID": 112260, + "Label": "112264-112260 via Adherens from 112265 -> 112262", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 112265, + "TargetID": 112262, + "Directional": false + }] + }, { + "ID": 5356, + "SourceStructureID": 117093, + "TargetStructureID": 117091, + "Label": "117093-117091 via Gap Junction from 117094 -> 117092", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117094, + "TargetID": 117092, + "Directional": false + }] + }, { + "ID": 5357, + "SourceStructureID": 117132, + "TargetStructureID": 117127, + "Label": "117132-117127 via Gap Junction from 117133 -> 117131", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117133, + "TargetID": 117131, + "Directional": false + }] + }, { + "ID": 5358, + "SourceStructureID": 117778, + "TargetStructureID": 117774, + "Label": "117778-117774 via Gap Junction from 117779 -> 117777", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 117779, + "TargetID": 117777, + "Directional": false + }] + }, { + "ID": 5359, + "SourceStructureID": 117999, + "TargetStructureID": 117990, + "Label": "117999-117990 via Gap Junction from 118000 -> 117998", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118000, + "TargetID": 117998, + "Directional": false + }] + }, { + "ID": 5360, + "SourceStructureID": 118058, + "TargetStructureID": 118058, + "Label": "118058-118058 via Gap Junction from 118067 -> 118060", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 118067, + "TargetID": 118060, + "Directional": false + }] + }, { + "ID": 5361, + "SourceStructureID": 128907, + "TargetStructureID": 120291, + "Label": "128907-120291 via Unknown from 128909 -> 128910", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 128909, + "TargetID": 128910, + "Directional": false + }] + }, { + "ID": 5362, + "SourceStructureID": 136418, + "TargetStructureID": 122091, + "Label": "136418-122091 via Gap Junction from 136420 -> 136419", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 136420, + "TargetID": 136419, + "Directional": false + }] + }, { + "ID": 5363, + "SourceStructureID": 131740, + "TargetStructureID": 122868, + "Label": "131740-122868 via Adherens from 131741 -> 131739", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 131741, + "TargetID": 131739, + "Directional": false + }] + }, { + "ID": 5364, + "SourceStructureID": 123552, + "TargetStructureID": 123551, + "Label": "123552-123551 via Adherens from 123555 -> 123554", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 123555, + "TargetID": 123554, + "Directional": false + }] + }, { + "ID": 5365, + "SourceStructureID": 124301, + "TargetStructureID": 124301, + "Label": "124301-124301 via Unknown from 124435 -> 124434", + "Type": "Unknown", + "Directional": false, + "Links": [{ + "SourceID": 124435, + "TargetID": 124434, + "Directional": false + }] + }, { + "ID": 5366, + "SourceStructureID": 132009, + "TargetStructureID": 132009, + "Label": "132009-132009 via Gap Junction from 132015 -> 132016", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132015, + "TargetID": 132016, + "Directional": false + }] + }, { + "ID": 5367, + "SourceStructureID": 132009, + "TargetStructureID": 132021, + "Label": "132009-132021 via Gap Junction from 132020 -> 132022", + "Type": "Gap Junction", + "Directional": false, + "Links": [{ + "SourceID": 132020, + "TargetID": 132022, + "Directional": false + }] + }, { + "ID": 5368, + "SourceStructureID": 135829, + "TargetStructureID": 135225, + "Label": "135829-135225 via Touch from 135831 -> 135830", + "Type": "Touch", + "Directional": false, + "Links": [{ + "SourceID": 135831, + "TargetID": 135830, + "Directional": false + }] + }, { + "ID": 5369, + "SourceStructureID": 148300, + "TargetStructureID": 148300, + "Label": "148300-148300 via Adherens from 148309 -> 148308", + "Type": "Adherens", + "Directional": false, + "Links": [{ + "SourceID": 148309, + "TargetID": 148308, + "Directional": false + }] + }, { + "ID": 5370, + "SourceStructureID": 115, + "TargetStructureID": 165, + "Label": "115-165 via Conventional from 8072 -> 21678", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8072, + "TargetID": 21678, + "Directional": true + }] + }, { + "ID": 5371, + "SourceStructureID": 115, + "TargetStructureID": 359, + "Label": "115-359 via Conventional from 8127 -> 21462", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8127, + "TargetID": 21462, + "Directional": true + }] + }, { + "ID": 5372, + "SourceStructureID": 115, + "TargetStructureID": 373, + "Label": "115-373 via Conventional from 8170 -> 55275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8170, + "TargetID": 55275, + "Directional": true + }] + }, { + "ID": 5373, + "SourceStructureID": 115, + "TargetStructureID": 425, + "Label": "115-425 via Conventional from 8168 -> 87462", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8168, + "TargetID": 87462, + "Directional": true + }] + }, { + "ID": 5374, + "SourceStructureID": 115, + "TargetStructureID": 458, + "Label": "115-458 via Conventional from 8156 -> 8157", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8156, + "TargetID": 8157, + "Directional": true + }] + }, { + "ID": 5375, + "SourceStructureID": 115, + "TargetStructureID": 3928, + "Label": "115-3928 via Conventional from 8081 -> 39952", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8081, + "TargetID": 39952, + "Directional": true + }] + }, { + "ID": 5376, + "SourceStructureID": 115, + "TargetStructureID": 13469, + "Label": "115-13469 via Conventional from 10810 -> 13478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10810, + "TargetID": 13478, + "Directional": true + }] + }, { + "ID": 5377, + "SourceStructureID": 115, + "TargetStructureID": 130472, + "Label": "115-130472 via Conventional from 8115 -> 130497", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8115, + "TargetID": 130497, + "Directional": true + }] + }, { + "ID": 5378, + "SourceStructureID": 115, + "TargetStructureID": 159045, + "Label": "115-159045 via Conventional from 8112 -> 159073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8112, + "TargetID": 159073, + "Directional": true + }] + }, { + "ID": 5379, + "SourceStructureID": 138, + "TargetStructureID": 3679, + "Label": "138-3679 via Ribbon Synapse from 2213 -> 65999, 2214 -> 66001, 2403 -> 22732, 11466 -> 11868, 11472 -> 11692, 11857 -> 29405, 46421 -> 22708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 2213, + "TargetID": 65999, + "Directional": true + }, { + "SourceID": 2214, + "TargetID": 66001, + "Directional": true + }, { + "SourceID": 2403, + "TargetID": 22732, + "Directional": true + }, { + "SourceID": 11466, + "TargetID": 11868, + "Directional": true + }, { + "SourceID": 11472, + "TargetID": 11692, + "Directional": true + }, { + "SourceID": 11857, + "TargetID": 29405, + "Directional": true + }, { + "SourceID": 46421, + "TargetID": 22708, + "Directional": true + }] + }, { + "ID": 5380, + "SourceStructureID": 138, + "TargetStructureID": 7073, + "Label": "138-7073 via Ribbon Synapse from 2197 -> 11856", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 2197, + "TargetID": 11856, + "Directional": true + }] + }, { + "ID": 5381, + "SourceStructureID": 138, + "TargetStructureID": 7897, + "Label": "138-7897 via Ribbon Synapse from 46479 -> 46480, 46483 -> 46484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46479, + "TargetID": 46480, + "Directional": true + }, { + "SourceID": 46483, + "TargetID": 46484, + "Directional": true + }] + }, { + "ID": 5382, + "SourceStructureID": 138, + "TargetStructureID": 12203, + "Label": "138-12203 via Ribbon Synapse from 2187 -> 12204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 2187, + "TargetID": 12204, + "Directional": true + }] + }, { + "ID": 5383, + "SourceStructureID": 138, + "TargetStructureID": 20681, + "Label": "138-20681 via BC Conventional Synapse from 123274 -> 123275", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123274, + "TargetID": 123275, + "Directional": true + }] + }, { + "ID": 5384, + "SourceStructureID": 138, + "TargetStructureID": 29340, + "Label": "138-29340 via Ribbon Synapse from 2197 -> 29398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 2197, + "TargetID": 29398, + "Directional": true + }] + }, { + "ID": 5385, + "SourceStructureID": 138, + "TargetStructureID": 31486, + "Label": "138-31486 via Ribbon Synapse from 19565 -> 31653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19565, + "TargetID": 31653, + "Directional": true + }] + }, { + "ID": 5386, + "SourceStructureID": 138, + "TargetStructureID": 32874, + "Label": "138-32874 via Ribbon Synapse from 32887 -> 32886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32887, + "TargetID": 32886, + "Directional": true + }] + }, { + "ID": 5387, + "SourceStructureID": 138, + "TargetStructureID": 32892, + "Label": "138-32892 via Ribbon Synapse from 32887 -> 32895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32887, + "TargetID": 32895, + "Directional": true + }] + }, { + "ID": 5388, + "SourceStructureID": 138, + "TargetStructureID": 43404, + "Label": "138-43404 via Ribbon Synapse from 33284 -> 43413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33284, + "TargetID": 43413, + "Directional": true + }] + }, { + "ID": 5389, + "SourceStructureID": 138, + "TargetStructureID": 46449, + "Label": "138-46449 via Ribbon Synapse from 46460 -> 46459, 60788 -> 60789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46460, + "TargetID": 46459, + "Directional": true + }, { + "SourceID": 60788, + "TargetID": 60789, + "Directional": true + }] + }, { + "ID": 5390, + "SourceStructureID": 138, + "TargetStructureID": 54264, + "Label": "138-54264 via Ribbon Synapse from 54273 -> 54272, 54274 -> 54275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54273, + "TargetID": 54272, + "Directional": true + }, { + "SourceID": 54274, + "TargetID": 54275, + "Directional": true + }] + }, { + "ID": 5391, + "SourceStructureID": 138, + "TargetStructureID": 54622, + "Label": "138-54622 via BC Conventional Synapse from 55939 -> 55940", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55939, + "TargetID": 55940, + "Directional": true + }] + }, { + "ID": 5392, + "SourceStructureID": 138, + "TargetStructureID": 70205, + "Label": "138-70205 via Ribbon Synapse from 11449 -> 70217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11449, + "TargetID": 70217, + "Directional": true + }] + }, { + "ID": 5393, + "SourceStructureID": 138, + "TargetStructureID": 136432, + "Label": "138-136432 via Ribbon Synapse from 11857 -> 136501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11857, + "TargetID": 136501, + "Directional": true + }] + }, { + "ID": 5394, + "SourceStructureID": 142, + "TargetStructureID": 5107, + "Label": "142-5107 via Ribbon Synapse from 92448 -> 125962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92448, + "TargetID": 125962, + "Directional": true + }] + }, { + "ID": 5395, + "SourceStructureID": 142, + "TargetStructureID": 5435, + "Label": "142-5435 via BC Conventional Synapse from 125938 -> 125939", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125938, + "TargetID": 125939, + "Directional": true + }] + }, { + "ID": 5396, + "SourceStructureID": 142, + "TargetStructureID": 5485, + "Label": "142-5485 via Ribbon Synapse from 49747 -> 126181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49747, + "TargetID": 126181, + "Directional": true + }] + }, { + "ID": 5397, + "SourceStructureID": 142, + "TargetStructureID": 5487, + "Label": "142-5487 via Ribbon Synapse from 91678 -> 91680", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91678, + "TargetID": 91680, + "Directional": true + }] + }, { + "ID": 5398, + "SourceStructureID": 142, + "TargetStructureID": 5618, + "Label": "142-5618 via Ribbon Synapse from 65988 -> 65986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65988, + "TargetID": 65986, + "Directional": true + }] + }, { + "ID": 5399, + "SourceStructureID": 142, + "TargetStructureID": 6300, + "Label": "142-6300 via Ribbon Synapse from 32016 -> 125931, 50128 -> 126052, 126051 -> 126052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32016, + "TargetID": 125931, + "Directional": true + }, { + "SourceID": 50128, + "TargetID": 126052, + "Directional": true + }, { + "SourceID": 126051, + "TargetID": 126052, + "Directional": true + }] + }, { + "ID": 5400, + "SourceStructureID": 142, + "TargetStructureID": 9347, + "Label": "142-9347 via Cistern Pre from 126307 -> 126318", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 126307, + "TargetID": 126318, + "Directional": true + }] + }, { + "ID": 5401, + "SourceStructureID": 142, + "TargetStructureID": 9347, + "Label": "142-9347 via Ribbon Synapse from 30700 -> 126321, 30704 -> 126249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30700, + "TargetID": 126321, + "Directional": true + }, { + "SourceID": 30704, + "TargetID": 126249, + "Directional": true + }] + }, { + "ID": 5402, + "SourceStructureID": 142, + "TargetStructureID": 18693, + "Label": "142-18693 via BC Conventional Synapse from 126217 -> 27332", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126217, + "TargetID": 27332, + "Directional": true + }] + }, { + "ID": 5403, + "SourceStructureID": 142, + "TargetStructureID": 18693, + "Label": "142-18693 via Ribbon Synapse from 126136 -> 126135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126136, + "TargetID": 126135, + "Directional": true + }] + }, { + "ID": 5404, + "SourceStructureID": 142, + "TargetStructureID": 30513, + "Label": "142-30513 via Cistern Pre from 49704 -> 125974, 126169 -> 126170", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 49704, + "TargetID": 125974, + "Directional": true + }, { + "SourceID": 126169, + "TargetID": 126170, + "Directional": true + }] + }, { + "ID": 5405, + "SourceStructureID": 142, + "TargetStructureID": 30513, + "Label": "142-30513 via Ribbon Synapse from 10321 -> 30515", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10321, + "TargetID": 30515, + "Directional": true + }] + }, { + "ID": 5406, + "SourceStructureID": 142, + "TargetStructureID": 30567, + "Label": "142-30567 via Ribbon Synapse from 32084 -> 32083, 126239 -> 126240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32084, + "TargetID": 32083, + "Directional": true + }, { + "SourceID": 126239, + "TargetID": 126240, + "Directional": true + }] + }, { + "ID": 5407, + "SourceStructureID": 142, + "TargetStructureID": 34036, + "Label": "142-34036 via Ribbon Synapse from 31793 -> 34041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31793, + "TargetID": 34041, + "Directional": true + }] + }, { + "ID": 5408, + "SourceStructureID": 142, + "TargetStructureID": 39968, + "Label": "142-39968 via Ribbon Synapse from 125980 -> 125996", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125980, + "TargetID": 125996, + "Directional": true + }] + }, { + "ID": 5409, + "SourceStructureID": 142, + "TargetStructureID": 44346, + "Label": "142-44346 via Ribbon Synapse from 44448 -> 44445, 87994 -> 44449, 87995 -> 44449, 87995 -> 87990, 87996 -> 87998, 119585 -> 44444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44448, + "TargetID": 44445, + "Directional": true + }, { + "SourceID": 87994, + "TargetID": 44449, + "Directional": true + }, { + "SourceID": 87995, + "TargetID": 44449, + "Directional": true + }, { + "SourceID": 87995, + "TargetID": 87990, + "Directional": true + }, { + "SourceID": 87996, + "TargetID": 87998, + "Directional": true + }, { + "SourceID": 119585, + "TargetID": 44444, + "Directional": true + }] + }, { + "ID": 5410, + "SourceStructureID": 142, + "TargetStructureID": 64774, + "Label": "142-64774 via Ribbon Synapse from 126132 -> 64776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126132, + "TargetID": 64776, + "Directional": true + }] + }, { + "ID": 5411, + "SourceStructureID": 142, + "TargetStructureID": 72879, + "Label": "142-72879 via Ribbon Synapse from 35931 -> 72881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35931, + "TargetID": 72881, + "Directional": true + }] + }, { + "ID": 5412, + "SourceStructureID": 142, + "TargetStructureID": 82543, + "Label": "142-82543 via Ribbon Synapse from 49753 -> 126241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49753, + "TargetID": 126241, + "Directional": true + }] + }, { + "ID": 5413, + "SourceStructureID": 142, + "TargetStructureID": 84946, + "Label": "142-84946 via Ribbon Synapse from 30694 -> 126286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30694, + "TargetID": 126286, + "Directional": true + }] + }, { + "ID": 5414, + "SourceStructureID": 142, + "TargetStructureID": 86106, + "Label": "142-86106 via Ribbon Synapse from 49746 -> 126182", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49746, + "TargetID": 126182, + "Directional": true + }] + }, { + "ID": 5415, + "SourceStructureID": 142, + "TargetStructureID": 86110, + "Label": "142-86110 via Ribbon Synapse from 49762 -> 86126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49762, + "TargetID": 86126, + "Directional": true + }] + }, { + "ID": 5416, + "SourceStructureID": 142, + "TargetStructureID": 87972, + "Label": "142-87972 via Ribbon Synapse from 44448 -> 87983, 87994 -> 87992, 119585 -> 125954", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44448, + "TargetID": 87983, + "Directional": true + }, { + "SourceID": 87994, + "TargetID": 87992, + "Directional": true + }, { + "SourceID": 119585, + "TargetID": 125954, + "Directional": true + }] + }, { + "ID": 5417, + "SourceStructureID": 142, + "TargetStructureID": 87999, + "Label": "142-87999 via Ribbon Synapse from 87997 -> 88000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87997, + "TargetID": 88000, + "Directional": true + }] + }, { + "ID": 5418, + "SourceStructureID": 142, + "TargetStructureID": 88055, + "Label": "142-88055 via Ribbon Synapse from 50124 -> 88057", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50124, + "TargetID": 88057, + "Directional": true + }] + }, { + "ID": 5419, + "SourceStructureID": 142, + "TargetStructureID": 92295, + "Label": "142-92295 via Ribbon Synapse from 49692 -> 127678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49692, + "TargetID": 127678, + "Directional": true + }] + }, { + "ID": 5420, + "SourceStructureID": 142, + "TargetStructureID": 92434, + "Label": "142-92434 via BC Conventional Synapse from 119572 -> 119570, 126167 -> 126369", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119572, + "TargetID": 119570, + "Directional": true + }, { + "SourceID": 126167, + "TargetID": 126369, + "Directional": true + }] + }, { + "ID": 5421, + "SourceStructureID": 142, + "TargetStructureID": 92434, + "Label": "142-92434 via Ribbon Synapse from 92442 -> 126370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92442, + "TargetID": 126370, + "Directional": true + }] + }, { + "ID": 5422, + "SourceStructureID": 142, + "TargetStructureID": 92445, + "Label": "142-92445 via Unknown from 126160 -> 126159", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 126160, + "TargetID": 126159, + "Directional": true + }] + }, { + "ID": 5423, + "SourceStructureID": 142, + "TargetStructureID": 92935, + "Label": "142-92935 via Ribbon Synapse from 30704 -> 116793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30704, + "TargetID": 116793, + "Directional": true + }] + }, { + "ID": 5424, + "SourceStructureID": 142, + "TargetStructureID": 103964, + "Label": "142-103964 via Ribbon Synapse from 126140 -> 126142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126140, + "TargetID": 126142, + "Directional": true + }] + }, { + "ID": 5425, + "SourceStructureID": 142, + "TargetStructureID": 104053, + "Label": "142-104053 via Ribbon Synapse from 119568 -> 119567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119568, + "TargetID": 119567, + "Directional": true + }] + }, { + "ID": 5426, + "SourceStructureID": 142, + "TargetStructureID": 115195, + "Label": "142-115195 via Ribbon Synapse from 31803 -> 115198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31803, + "TargetID": 115198, + "Directional": true + }] + }, { + "ID": 5427, + "SourceStructureID": 142, + "TargetStructureID": 125934, + "Label": "142-125934 via Ribbon Synapse from 32016 -> 125935", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32016, + "TargetID": 125935, + "Directional": true + }] + }, { + "ID": 5428, + "SourceStructureID": 142, + "TargetStructureID": 127667, + "Label": "142-127667 via Ribbon Synapse from 31775 -> 127668, 125980 -> 127671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31775, + "TargetID": 127668, + "Directional": true + }, { + "SourceID": 125980, + "TargetID": 127671, + "Directional": true + }] + }, { + "ID": 5429, + "SourceStructureID": 142, + "TargetStructureID": 136728, + "Label": "142-136728 via Ribbon Synapse from 92929 -> 136729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92929, + "TargetID": 136729, + "Directional": true + }] + }, { + "ID": 5430, + "SourceStructureID": 146, + "TargetStructureID": 425, + "Label": "146-425 via Conventional from 22094 -> 22095", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22094, + "TargetID": 22095, + "Directional": true + }] + }, { + "ID": 5431, + "SourceStructureID": 161, + "TargetStructureID": 5377, + "Label": "161-5377 via Ribbon Synapse from 22736 -> 22734, 87016 -> 87014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22736, + "TargetID": 22734, + "Directional": true + }, { + "SourceID": 87016, + "TargetID": 87014, + "Directional": true + }] + }, { + "ID": 5432, + "SourceStructureID": 161, + "TargetStructureID": 7147, + "Label": "161-7147 via Ribbon Synapse from 11766 -> 11769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11766, + "TargetID": 11769, + "Directional": true + }] + }, { + "ID": 5433, + "SourceStructureID": 161, + "TargetStructureID": 12897, + "Label": "161-12897 via Ribbon Synapse from 22868 -> 22867, 35586 -> 22862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22868, + "TargetID": 22867, + "Directional": true + }, { + "SourceID": 35586, + "TargetID": 22862, + "Directional": true + }] + }, { + "ID": 5434, + "SourceStructureID": 161, + "TargetStructureID": 43784, + "Label": "161-43784 via Ribbon Synapse from 11780 -> 43788", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11780, + "TargetID": 43788, + "Directional": true + }] + }, { + "ID": 5435, + "SourceStructureID": 161, + "TargetStructureID": 77068, + "Label": "161-77068 via Ribbon Synapse from 77072 -> 77071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77072, + "TargetID": 77071, + "Directional": true + }] + }, { + "ID": 5436, + "SourceStructureID": 162, + "TargetStructureID": 5118, + "Label": "162-5118 via Conventional from 6435 -> 6434", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6435, + "TargetID": 6434, + "Directional": true + }] + }, { + "ID": 5437, + "SourceStructureID": 162, + "TargetStructureID": 6203, + "Label": "162-6203 via Conventional from 52645 -> 125784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52645, + "TargetID": 125784, + "Directional": true + }] + }, { + "ID": 5438, + "SourceStructureID": 162, + "TargetStructureID": 8580, + "Label": "162-8580 via Conventional from 11865 -> 59777", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11865, + "TargetID": 59777, + "Directional": true + }] + }, { + "ID": 5439, + "SourceStructureID": 165, + "TargetStructureID": 5351, + "Label": "165-5351 via Ribbon Synapse from 12544 -> 24067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12544, + "TargetID": 24067, + "Directional": true + }] + }, { + "ID": 5440, + "SourceStructureID": 165, + "TargetStructureID": 6169, + "Label": "165-6169 via Ribbon Synapse from 12559 -> 20775", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12559, + "TargetID": 20775, + "Directional": true + }] + }, { + "ID": 5441, + "SourceStructureID": 165, + "TargetStructureID": 9787, + "Label": "165-9787 via Ribbon Synapse from 12506 -> 12068, 12507 -> 12068, 12586 -> 18052, 21681 -> 21682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12506, + "TargetID": 12068, + "Directional": true + }, { + "SourceID": 12507, + "TargetID": 12068, + "Directional": true + }, { + "SourceID": 12586, + "TargetID": 18052, + "Directional": true + }, { + "SourceID": 21681, + "TargetID": 21682, + "Directional": true + }] + }, { + "ID": 5442, + "SourceStructureID": 165, + "TargetStructureID": 12210, + "Label": "165-12210 via Ribbon Synapse from 12209 -> 12211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12209, + "TargetID": 12211, + "Directional": true + }] + }, { + "ID": 5443, + "SourceStructureID": 165, + "TargetStructureID": 12492, + "Label": "165-12492 via Ribbon Synapse from 7095 -> 12499, 12489 -> 12499, 12490 -> 12499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7095, + "TargetID": 12499, + "Directional": true + }, { + "SourceID": 12489, + "TargetID": 12499, + "Directional": true + }, { + "SourceID": 12490, + "TargetID": 12499, + "Directional": true + }] + }, { + "ID": 5444, + "SourceStructureID": 165, + "TargetStructureID": 34336, + "Label": "165-34336 via Ribbon Synapse from 12503 -> 34382, 12530 -> 34381, 12531 -> 34381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12503, + "TargetID": 34382, + "Directional": true + }, { + "SourceID": 12530, + "TargetID": 34381, + "Directional": true + }, { + "SourceID": 12531, + "TargetID": 34381, + "Directional": true + }] + }, { + "ID": 5445, + "SourceStructureID": 165, + "TargetStructureID": 46741, + "Label": "165-46741 via Ribbon Synapse from 20863 -> 136949, 21664 -> 136958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20863, + "TargetID": 136949, + "Directional": true + }, { + "SourceID": 21664, + "TargetID": 136958, + "Directional": true + }] + }, { + "ID": 5446, + "SourceStructureID": 165, + "TargetStructureID": 132202, + "Label": "165-132202 via Ribbon Synapse from 12554 -> 132204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12554, + "TargetID": 132204, + "Directional": true + }] + }, { + "ID": 5447, + "SourceStructureID": 166, + "TargetStructureID": 390, + "Label": "166-390 via Ribbon Synapse from 65224 -> 65223, 94748 -> 65220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65224, + "TargetID": 65223, + "Directional": true + }, { + "SourceID": 94748, + "TargetID": 65220, + "Directional": true + }] + }, { + "ID": 5448, + "SourceStructureID": 166, + "TargetStructureID": 1620, + "Label": "166-1620 via Ribbon Synapse from 4366 -> 16859, 4374 -> 101155, 16863 -> 16862, 20626 -> 16887, 20627 -> 16870", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4366, + "TargetID": 16859, + "Directional": true + }, { + "SourceID": 4374, + "TargetID": 101155, + "Directional": true + }, { + "SourceID": 16863, + "TargetID": 16862, + "Directional": true + }, { + "SourceID": 20626, + "TargetID": 16887, + "Directional": true + }, { + "SourceID": 20627, + "TargetID": 16870, + "Directional": true + }] + }, { + "ID": 5449, + "SourceStructureID": 166, + "TargetStructureID": 4890, + "Label": "166-4890 via Ribbon Synapse from 4431 -> 5329, 5792 -> 5793, 5839 -> 4920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4431, + "TargetID": 5329, + "Directional": true + }, { + "SourceID": 5792, + "TargetID": 5793, + "Directional": true + }, { + "SourceID": 5839, + "TargetID": 4920, + "Directional": true + }] + }, { + "ID": 5450, + "SourceStructureID": 166, + "TargetStructureID": 5437, + "Label": "166-5437 via Ribbon Synapse from 4434 -> 88062, 4439 -> 88064, 101163 -> 101162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4434, + "TargetID": 88062, + "Directional": true + }, { + "SourceID": 4439, + "TargetID": 88064, + "Directional": true + }, { + "SourceID": 101163, + "TargetID": 101162, + "Directional": true + }] + }, { + "ID": 5451, + "SourceStructureID": 166, + "TargetStructureID": 5439, + "Label": "166-5439 via Ribbon Synapse from 39360 -> 70799, 70812 -> 70813, 71452 -> 71443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39360, + "TargetID": 70799, + "Directional": true + }, { + "SourceID": 70812, + "TargetID": 70813, + "Directional": true + }, { + "SourceID": 71452, + "TargetID": 71443, + "Directional": true + }] + }, { + "ID": 5452, + "SourceStructureID": 166, + "TargetStructureID": 5794, + "Label": "166-5794 via Ribbon Synapse from 5766 -> 5809, 5791 -> 5795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5766, + "TargetID": 5809, + "Directional": true + }, { + "SourceID": 5791, + "TargetID": 5795, + "Directional": true + }] + }, { + "ID": 5453, + "SourceStructureID": 166, + "TargetStructureID": 5919, + "Label": "166-5919 via Ribbon Synapse from 4126 -> 5921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4126, + "TargetID": 5921, + "Directional": true + }] + }, { + "ID": 5454, + "SourceStructureID": 166, + "TargetStructureID": 6857, + "Label": "166-6857 via BC Conventional Synapse from 71342 -> 71343", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71342, + "TargetID": 71343, + "Directional": true + }] + }, { + "ID": 5455, + "SourceStructureID": 166, + "TargetStructureID": 6857, + "Label": "166-6857 via Ribbon Synapse from 39006 -> 39007", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39006, + "TargetID": 39007, + "Directional": true + }] + }, { + "ID": 5456, + "SourceStructureID": 166, + "TargetStructureID": 8579, + "Label": "166-8579 via Ribbon Synapse from 19814 -> 19812, 19817 -> 19815, 19826 -> 19823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19814, + "TargetID": 19812, + "Directional": true + }, { + "SourceID": 19817, + "TargetID": 19815, + "Directional": true + }, { + "SourceID": 19826, + "TargetID": 19823, + "Directional": true + }] + }, { + "ID": 5457, + "SourceStructureID": 166, + "TargetStructureID": 8720, + "Label": "166-8720 via Ribbon Synapse from 4498 -> 59976", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4498, + "TargetID": 59976, + "Directional": true + }] + }, { + "ID": 5458, + "SourceStructureID": 166, + "TargetStructureID": 16087, + "Label": "166-16087 via Ribbon Synapse from 4378 -> 23106, 4409 -> 23107, 5797 -> 16088, 59886 -> 59885, 59895 -> 59894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4378, + "TargetID": 23106, + "Directional": true + }, { + "SourceID": 4409, + "TargetID": 23107, + "Directional": true + }, { + "SourceID": 5797, + "TargetID": 16088, + "Directional": true + }, { + "SourceID": 59886, + "TargetID": 59885, + "Directional": true + }, { + "SourceID": 59895, + "TargetID": 59894, + "Directional": true + }] + }, { + "ID": 5459, + "SourceStructureID": 166, + "TargetStructureID": 29198, + "Label": "166-29198 via Ribbon Synapse from 71486 -> 29218, 71851 -> 29216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71486, + "TargetID": 29218, + "Directional": true + }, { + "SourceID": 71851, + "TargetID": 29216, + "Directional": true + }] + }, { + "ID": 5460, + "SourceStructureID": 166, + "TargetStructureID": 29702, + "Label": "166-29702 via Ribbon Synapse from 72573 -> 72572, 72621 -> 72619", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72573, + "TargetID": 72572, + "Directional": true + }, { + "SourceID": 72621, + "TargetID": 72619, + "Directional": true + }] + }, { + "ID": 5461, + "SourceStructureID": 166, + "TargetStructureID": 30518, + "Label": "166-30518 via Ribbon Synapse from 30522 -> 30520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30522, + "TargetID": 30520, + "Directional": true + }] + }, { + "ID": 5462, + "SourceStructureID": 166, + "TargetStructureID": 30526, + "Label": "166-30526 via Ribbon Synapse from 4126 -> 30536, 23622 -> 30536, 23624 -> 30536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4126, + "TargetID": 30536, + "Directional": true + }, { + "SourceID": 23622, + "TargetID": 30536, + "Directional": true + }, { + "SourceID": 23624, + "TargetID": 30536, + "Directional": true + }] + }, { + "ID": 5463, + "SourceStructureID": 166, + "TargetStructureID": 32970, + "Label": "166-32970 via Ribbon Synapse from 4421 -> 32986, 4423 -> 32985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4421, + "TargetID": 32986, + "Directional": true + }, { + "SourceID": 4423, + "TargetID": 32985, + "Directional": true + }] + }, { + "ID": 5464, + "SourceStructureID": 166, + "TargetStructureID": 35222, + "Label": "166-35222 via Ribbon Synapse from 35231 -> 35226", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35231, + "TargetID": 35226, + "Directional": true + }] + }, { + "ID": 5465, + "SourceStructureID": 166, + "TargetStructureID": 39345, + "Label": "166-39345 via Ribbon Synapse from 4470 -> 39347, 4530 -> 66718, 39010 -> 39356, 39351 -> 39349, 39355 -> 39354, 39360 -> 39359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4470, + "TargetID": 39347, + "Directional": true + }, { + "SourceID": 4530, + "TargetID": 66718, + "Directional": true + }, { + "SourceID": 39010, + "TargetID": 39356, + "Directional": true + }, { + "SourceID": 39351, + "TargetID": 39349, + "Directional": true + }, { + "SourceID": 39355, + "TargetID": 39354, + "Directional": true + }, { + "SourceID": 39360, + "TargetID": 39359, + "Directional": true + }] + }, { + "ID": 5466, + "SourceStructureID": 166, + "TargetStructureID": 39596, + "Label": "166-39596 via Ribbon Synapse from 4427 -> 39599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4427, + "TargetID": 39599, + "Directional": true + }] + }, { + "ID": 5467, + "SourceStructureID": 166, + "TargetStructureID": 39602, + "Label": "166-39602 via Ribbon Synapse from 39606 -> 39604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39606, + "TargetID": 39604, + "Directional": true + }] + }, { + "ID": 5468, + "SourceStructureID": 166, + "TargetStructureID": 39615, + "Label": "166-39615 via Ribbon Synapse from 4376 -> 39646, 4454 -> 39630, 4521 -> 39635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4376, + "TargetID": 39646, + "Directional": true + }, { + "SourceID": 4454, + "TargetID": 39630, + "Directional": true + }, { + "SourceID": 4521, + "TargetID": 39635, + "Directional": true + }] + }, { + "ID": 5469, + "SourceStructureID": 166, + "TargetStructureID": 39717, + "Label": "166-39717 via Ribbon Synapse from 39723 -> 39722", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39723, + "TargetID": 39722, + "Directional": true + }] + }, { + "ID": 5470, + "SourceStructureID": 166, + "TargetStructureID": 56822, + "Label": "166-56822 via Ribbon Synapse from 4554 -> 56823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4554, + "TargetID": 56823, + "Directional": true + }] + }, { + "ID": 5471, + "SourceStructureID": 166, + "TargetStructureID": 58696, + "Label": "166-58696 via BC Conventional Synapse from 84810 -> 84811", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84810, + "TargetID": 84811, + "Directional": true + }] + }, { + "ID": 5472, + "SourceStructureID": 166, + "TargetStructureID": 58696, + "Label": "166-58696 via Ribbon Synapse from 4494 -> 66721, 58707 -> 58706, 60006 -> 66711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4494, + "TargetID": 66721, + "Directional": true + }, { + "SourceID": 58707, + "TargetID": 58706, + "Directional": true + }, { + "SourceID": 60006, + "TargetID": 66711, + "Directional": true + }] + }, { + "ID": 5473, + "SourceStructureID": 166, + "TargetStructureID": 66278, + "Label": "166-66278 via Ribbon Synapse from 28580 -> 81897, 60028 -> 66293, 81907 -> 81908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28580, + "TargetID": 81897, + "Directional": true + }, { + "SourceID": 60028, + "TargetID": 66293, + "Directional": true + }, { + "SourceID": 81907, + "TargetID": 81908, + "Directional": true + }] + }, { + "ID": 5474, + "SourceStructureID": 166, + "TargetStructureID": 66634, + "Label": "166-66634 via Ribbon Synapse from 71339 -> 71340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71339, + "TargetID": 71340, + "Directional": true + }] + }, { + "ID": 5475, + "SourceStructureID": 166, + "TargetStructureID": 66713, + "Label": "166-66713 via Ribbon Synapse from 60006 -> 66714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60006, + "TargetID": 66714, + "Directional": true + }] + }, { + "ID": 5476, + "SourceStructureID": 166, + "TargetStructureID": 69899, + "Label": "166-69899 via Ribbon Synapse from 69898 -> 69900", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69898, + "TargetID": 69900, + "Directional": true + }] + }, { + "ID": 5477, + "SourceStructureID": 166, + "TargetStructureID": 69902, + "Label": "166-69902 via Ribbon Synapse from 69901 -> 69903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69901, + "TargetID": 69903, + "Directional": true + }] + }, { + "ID": 5478, + "SourceStructureID": 166, + "TargetStructureID": 70572, + "Label": "166-70572 via Ribbon Synapse from 39006 -> 70788", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39006, + "TargetID": 70788, + "Directional": true + }] + }, { + "ID": 5479, + "SourceStructureID": 166, + "TargetStructureID": 70577, + "Label": "166-70577 via Ribbon Synapse from 70579 -> 70580", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70579, + "TargetID": 70580, + "Directional": true + }] + }, { + "ID": 5480, + "SourceStructureID": 166, + "TargetStructureID": 71351, + "Label": "166-71351 via Ribbon Synapse from 4460 -> 71903, 60013 -> 71901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4460, + "TargetID": 71903, + "Directional": true + }, { + "SourceID": 60013, + "TargetID": 71901, + "Directional": true + }] + }, { + "ID": 5481, + "SourceStructureID": 166, + "TargetStructureID": 71429, + "Label": "166-71429 via BC Conventional Synapse from 71440 -> 71441", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71440, + "TargetID": 71441, + "Directional": true + }] + }, { + "ID": 5482, + "SourceStructureID": 166, + "TargetStructureID": 71445, + "Label": "166-71445 via Ribbon Synapse from 71452 -> 71453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71452, + "TargetID": 71453, + "Directional": true + }] + }, { + "ID": 5483, + "SourceStructureID": 166, + "TargetStructureID": 71454, + "Label": "166-71454 via Ribbon Synapse from 71452 -> 71455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71452, + "TargetID": 71455, + "Directional": true + }] + }, { + "ID": 5484, + "SourceStructureID": 166, + "TargetStructureID": 75939, + "Label": "166-75939 via Ribbon Synapse from 72620 -> 75940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72620, + "TargetID": 75940, + "Directional": true + }] + }, { + "ID": 5485, + "SourceStructureID": 166, + "TargetStructureID": 88082, + "Label": "166-88082 via Ribbon Synapse from 88099 -> 88098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88099, + "TargetID": 88098, + "Directional": true + }] + }, { + "ID": 5486, + "SourceStructureID": 166, + "TargetStructureID": 101156, + "Label": "166-101156 via Ribbon Synapse from 4374 -> 101157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4374, + "TargetID": 101157, + "Directional": true + }] + }, { + "ID": 5487, + "SourceStructureID": 166, + "TargetStructureID": 116581, + "Label": "166-116581 via Ribbon Synapse from 4454 -> 116582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4454, + "TargetID": 116582, + "Directional": true + }] + }, { + "ID": 5488, + "SourceStructureID": 166, + "TargetStructureID": 123322, + "Label": "166-123322 via BC Conventional Synapse from 123321 -> 123323", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123321, + "TargetID": 123323, + "Directional": true + }] + }, { + "ID": 5489, + "SourceStructureID": 166, + "TargetStructureID": 125981, + "Label": "166-125981 via Ribbon Synapse from 4448 -> 39969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4448, + "TargetID": 39969, + "Directional": true + }] + }, { + "ID": 5490, + "SourceStructureID": 168, + "TargetStructureID": 606, + "Label": "168-606 via Ribbon Synapse from 4185 -> 53384, 33417 -> 53382, 44415 -> 53517, 53388 -> 53389, 53484 -> 53485", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4185, + "TargetID": 53384, + "Directional": true + }, { + "SourceID": 33417, + "TargetID": 53382, + "Directional": true + }, { + "SourceID": 44415, + "TargetID": 53517, + "Directional": true + }, { + "SourceID": 53388, + "TargetID": 53389, + "Directional": true + }, { + "SourceID": 53484, + "TargetID": 53485, + "Directional": true + }] + }, { + "ID": 5491, + "SourceStructureID": 168, + "TargetStructureID": 906, + "Label": "168-906 via Cistern Pre from 12453 -> 27449", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 12453, + "TargetID": 27449, + "Directional": true + }] + }, { + "ID": 5492, + "SourceStructureID": 168, + "TargetStructureID": 3257, + "Label": "168-3257 via BC Conventional Synapse from 119580 -> 119579", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119580, + "TargetID": 119579, + "Directional": true + }] + }, { + "ID": 5493, + "SourceStructureID": 168, + "TargetStructureID": 3257, + "Label": "168-3257 via Cistern Pre from 39084 -> 39085", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 39084, + "TargetID": 39085, + "Directional": true + }] + }, { + "ID": 5494, + "SourceStructureID": 168, + "TargetStructureID": 5487, + "Label": "168-5487 via BC Conventional Synapse from 126387 -> 126386", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126387, + "TargetID": 126386, + "Directional": true + }] + }, { + "ID": 5495, + "SourceStructureID": 168, + "TargetStructureID": 5487, + "Label": "168-5487 via Ribbon Synapse from 4148 -> 126388, 4185 -> 34597, 4196 -> 34596, 4206 -> 34598, 29842 -> 29843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4148, + "TargetID": 126388, + "Directional": true + }, { + "SourceID": 4185, + "TargetID": 34597, + "Directional": true + }, { + "SourceID": 4196, + "TargetID": 34596, + "Directional": true + }, { + "SourceID": 4206, + "TargetID": 34598, + "Directional": true + }, { + "SourceID": 29842, + "TargetID": 29843, + "Directional": true + }] + }, { + "ID": 5496, + "SourceStructureID": 168, + "TargetStructureID": 5489, + "Label": "168-5489 via BC Conventional Synapse from 119043 -> 119042", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119043, + "TargetID": 119042, + "Directional": true + }] + }, { + "ID": 5497, + "SourceStructureID": 168, + "TargetStructureID": 7576, + "Label": "168-7576 via Ribbon Synapse from 4304 -> 54842, 50946 -> 54834, 55007 -> 55006, 55011 -> 55009", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4304, + "TargetID": 54842, + "Directional": true + }, { + "SourceID": 50946, + "TargetID": 54834, + "Directional": true + }, { + "SourceID": 55007, + "TargetID": 55006, + "Directional": true + }, { + "SourceID": 55011, + "TargetID": 55009, + "Directional": true + }] + }, { + "ID": 5498, + "SourceStructureID": 168, + "TargetStructureID": 34055, + "Label": "168-34055 via Ribbon Synapse from 4228 -> 34086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4228, + "TargetID": 34086, + "Directional": true + }] + }, { + "ID": 5499, + "SourceStructureID": 168, + "TargetStructureID": 40444, + "Label": "168-40444 via Ribbon Synapse from 40443 -> 40445", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40443, + "TargetID": 40445, + "Directional": true + }] + }, { + "ID": 5500, + "SourceStructureID": 168, + "TargetStructureID": 44346, + "Label": "168-44346 via Ribbon Synapse from 44415 -> 44413, 44426 -> 44425", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44415, + "TargetID": 44413, + "Directional": true + }, { + "SourceID": 44426, + "TargetID": 44425, + "Directional": true + }] + }, { + "ID": 5501, + "SourceStructureID": 168, + "TargetStructureID": 54958, + "Label": "168-54958 via Ribbon Synapse from 29841 -> 54960", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29841, + "TargetID": 54960, + "Directional": true + }] + }, { + "ID": 5502, + "SourceStructureID": 168, + "TargetStructureID": 81916, + "Label": "168-81916 via Ribbon Synapse from 81918 -> 81961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81918, + "TargetID": 81961, + "Directional": true + }] + }, { + "ID": 5503, + "SourceStructureID": 168, + "TargetStructureID": 81919, + "Label": "168-81919 via Ribbon Synapse from 81918 -> 81920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81918, + "TargetID": 81920, + "Directional": true + }] + }, { + "ID": 5504, + "SourceStructureID": 168, + "TargetStructureID": 81921, + "Label": "168-81921 via Ribbon Synapse from 81918 -> 81958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81918, + "TargetID": 81958, + "Directional": true + }] + }, { + "ID": 5505, + "SourceStructureID": 168, + "TargetStructureID": 81925, + "Label": "168-81925 via BC Conventional Synapse from 81971 -> 81972", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81971, + "TargetID": 81972, + "Directional": true + }] + }, { + "ID": 5506, + "SourceStructureID": 168, + "TargetStructureID": 81925, + "Label": "168-81925 via Ribbon Synapse from 81967 -> 81970", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81967, + "TargetID": 81970, + "Directional": true + }] + }, { + "ID": 5507, + "SourceStructureID": 168, + "TargetStructureID": 81946, + "Label": "168-81946 via BC Conventional Synapse from 82221 -> 82222", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82221, + "TargetID": 82222, + "Directional": true + }] + }, { + "ID": 5508, + "SourceStructureID": 168, + "TargetStructureID": 81968, + "Label": "168-81968 via Ribbon Synapse from 81967 -> 81969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81967, + "TargetID": 81969, + "Directional": true + }] + }, { + "ID": 5509, + "SourceStructureID": 168, + "TargetStructureID": 81989, + "Label": "168-81989 via Ribbon Synapse from 4294 -> 81994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4294, + "TargetID": 81994, + "Directional": true + }] + }, { + "ID": 5510, + "SourceStructureID": 168, + "TargetStructureID": 81990, + "Label": "168-81990 via Ribbon Synapse from 4294 -> 81993", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4294, + "TargetID": 81993, + "Directional": true + }] + }, { + "ID": 5511, + "SourceStructureID": 168, + "TargetStructureID": 81991, + "Label": "168-81991 via Ribbon Synapse from 4289 -> 82225, 4294 -> 81992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4289, + "TargetID": 82225, + "Directional": true + }, { + "SourceID": 4294, + "TargetID": 81992, + "Directional": true + }] + }, { + "ID": 5512, + "SourceStructureID": 168, + "TargetStructureID": 82217, + "Label": "168-82217 via Ribbon Synapse from 82215 -> 82218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82215, + "TargetID": 82218, + "Directional": true + }] + }, { + "ID": 5513, + "SourceStructureID": 168, + "TargetStructureID": 91178, + "Label": "168-91178 via BC Conventional Synapse from 91751 -> 91750", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91751, + "TargetID": 91750, + "Directional": true + }] + }, { + "ID": 5514, + "SourceStructureID": 168, + "TargetStructureID": 91593, + "Label": "168-91593 via Ribbon Synapse from 4270 -> 91598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4270, + "TargetID": 91598, + "Directional": true + }] + }, { + "ID": 5515, + "SourceStructureID": 168, + "TargetStructureID": 91742, + "Label": "168-91742 via Ribbon Synapse from 92773 -> 92774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92773, + "TargetID": 92774, + "Directional": true + }] + }, { + "ID": 5516, + "SourceStructureID": 168, + "TargetStructureID": 112211, + "Label": "168-112211 via Ribbon Synapse from 4306 -> 112212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4306, + "TargetID": 112212, + "Directional": true + }] + }, { + "ID": 5517, + "SourceStructureID": 170, + "TargetStructureID": 606, + "Label": "170-606 via Ribbon Synapse from 1411 -> 53327, 1422 -> 53201, 47805 -> 47806, 53348 -> 53347, 53354 -> 53347, 53358 -> 53357", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1411, + "TargetID": 53327, + "Directional": true + }, { + "SourceID": 1422, + "TargetID": 53201, + "Directional": true + }, { + "SourceID": 47805, + "TargetID": 47806, + "Directional": true + }, { + "SourceID": 53348, + "TargetID": 53347, + "Directional": true + }, { + "SourceID": 53354, + "TargetID": 53347, + "Directional": true + }, { + "SourceID": 53358, + "TargetID": 53357, + "Directional": true + }] + }, { + "ID": 5518, + "SourceStructureID": 170, + "TargetStructureID": 5481, + "Label": "170-5481 via Ribbon Synapse from 39515 -> 90247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39515, + "TargetID": 90247, + "Directional": true + }] + }, { + "ID": 5519, + "SourceStructureID": 170, + "TargetStructureID": 9769, + "Label": "170-9769 via Ribbon Synapse from 1222 -> 29844, 1224 -> 54957, 1228 -> 29845, 1314 -> 29825, 1315 -> 89730, 88757 -> 88758", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1222, + "TargetID": 29844, + "Directional": true + }, { + "SourceID": 1224, + "TargetID": 54957, + "Directional": true + }, { + "SourceID": 1228, + "TargetID": 29845, + "Directional": true + }, { + "SourceID": 1314, + "TargetID": 29825, + "Directional": true + }, { + "SourceID": 1315, + "TargetID": 89730, + "Directional": true + }, { + "SourceID": 88757, + "TargetID": 88758, + "Directional": true + }] + }, { + "ID": 5520, + "SourceStructureID": 170, + "TargetStructureID": 18693, + "Label": "170-18693 via Ribbon Synapse from 1244 -> 89744, 1252 -> 89745, 89490 -> 89491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1244, + "TargetID": 89744, + "Directional": true + }, { + "SourceID": 1252, + "TargetID": 89745, + "Directional": true + }, { + "SourceID": 89490, + "TargetID": 89491, + "Directional": true + }] + }, { + "ID": 5521, + "SourceStructureID": 170, + "TargetStructureID": 23512, + "Label": "170-23512 via Ribbon Synapse from 1290 -> 23533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1290, + "TargetID": 23533, + "Directional": true + }] + }, { + "ID": 5522, + "SourceStructureID": 170, + "TargetStructureID": 29827, + "Label": "170-29827 via Ribbon Synapse from 1294 -> 29828, 1315 -> 89724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1294, + "TargetID": 29828, + "Directional": true + }, { + "SourceID": 1315, + "TargetID": 89724, + "Directional": true + }] + }, { + "ID": 5523, + "SourceStructureID": 170, + "TargetStructureID": 32920, + "Label": "170-32920 via Ribbon Synapse from 1224 -> 32922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1224, + "TargetID": 32922, + "Directional": true + }] + }, { + "ID": 5524, + "SourceStructureID": 170, + "TargetStructureID": 33675, + "Label": "170-33675 via Ribbon Synapse from 28368 -> 33678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28368, + "TargetID": 33678, + "Directional": true + }] + }, { + "ID": 5525, + "SourceStructureID": 170, + "TargetStructureID": 38949, + "Label": "170-38949 via Ribbon Synapse from 1331 -> 39032", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1331, + "TargetID": 39032, + "Directional": true + }] + }, { + "ID": 5526, + "SourceStructureID": 170, + "TargetStructureID": 51617, + "Label": "170-51617 via Ribbon Synapse from 89205 -> 89862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89205, + "TargetID": 89862, + "Directional": true + }] + }, { + "ID": 5527, + "SourceStructureID": 170, + "TargetStructureID": 71882, + "Label": "170-71882 via Ribbon Synapse from 1272 -> 90439, 1359 -> 90410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1272, + "TargetID": 90439, + "Directional": true + }, { + "SourceID": 1359, + "TargetID": 90410, + "Directional": true + }] + }, { + "ID": 5528, + "SourceStructureID": 170, + "TargetStructureID": 74727, + "Label": "170-74727 via Ribbon Synapse from 147492 -> 147493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147492, + "TargetID": 147493, + "Directional": true + }] + }, { + "ID": 5529, + "SourceStructureID": 170, + "TargetStructureID": 88367, + "Label": "170-88367 via Ribbon Synapse from 1144 -> 88369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1144, + "TargetID": 88369, + "Directional": true + }] + }, { + "ID": 5530, + "SourceStructureID": 170, + "TargetStructureID": 88424, + "Label": "170-88424 via Ribbon Synapse from 1215 -> 88428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1215, + "TargetID": 88428, + "Directional": true + }] + }, { + "ID": 5531, + "SourceStructureID": 170, + "TargetStructureID": 88457, + "Label": "170-88457 via Ribbon Synapse from 1222 -> 88458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1222, + "TargetID": 88458, + "Directional": true + }] + }, { + "ID": 5532, + "SourceStructureID": 170, + "TargetStructureID": 88479, + "Label": "170-88479 via Ribbon Synapse from 1228 -> 88481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1228, + "TargetID": 88481, + "Directional": true + }] + }, { + "ID": 5533, + "SourceStructureID": 170, + "TargetStructureID": 88559, + "Label": "170-88559 via Ribbon Synapse from 1230 -> 88560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1230, + "TargetID": 88560, + "Directional": true + }] + }, { + "ID": 5534, + "SourceStructureID": 170, + "TargetStructureID": 88584, + "Label": "170-88584 via BC Conventional Synapse from 88592 -> 88593", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88592, + "TargetID": 88593, + "Directional": true + }] + }, { + "ID": 5535, + "SourceStructureID": 170, + "TargetStructureID": 88689, + "Label": "170-88689 via Ribbon Synapse from 1237 -> 88707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1237, + "TargetID": 88707, + "Directional": true + }] + }, { + "ID": 5536, + "SourceStructureID": 170, + "TargetStructureID": 88692, + "Label": "170-88692 via Ribbon Synapse from 28364 -> 88697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28364, + "TargetID": 88697, + "Directional": true + }] + }, { + "ID": 5537, + "SourceStructureID": 170, + "TargetStructureID": 88702, + "Label": "170-88702 via Ribbon Synapse from 1234 -> 88704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1234, + "TargetID": 88704, + "Directional": true + }] + }, { + "ID": 5538, + "SourceStructureID": 170, + "TargetStructureID": 88717, + "Label": "170-88717 via Ribbon Synapse from 1244 -> 89518, 1252 -> 89519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1244, + "TargetID": 89518, + "Directional": true + }, { + "SourceID": 1252, + "TargetID": 89519, + "Directional": true + }] + }, { + "ID": 5539, + "SourceStructureID": 170, + "TargetStructureID": 88747, + "Label": "170-88747 via Ribbon Synapse from 88751 -> 88752", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88751, + "TargetID": 88752, + "Directional": true + }] + }, { + "ID": 5540, + "SourceStructureID": 170, + "TargetStructureID": 88759, + "Label": "170-88759 via Ribbon Synapse from 88757 -> 88760", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88757, + "TargetID": 88760, + "Directional": true + }] + }, { + "ID": 5541, + "SourceStructureID": 170, + "TargetStructureID": 88775, + "Label": "170-88775 via BC Conventional Synapse from 88779 -> 88776", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88779, + "TargetID": 88776, + "Directional": true + }] + }, { + "ID": 5542, + "SourceStructureID": 170, + "TargetStructureID": 88793, + "Label": "170-88793 via Ribbon Synapse from 88794 -> 88795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88794, + "TargetID": 88795, + "Directional": true + }] + }, { + "ID": 5543, + "SourceStructureID": 170, + "TargetStructureID": 88797, + "Label": "170-88797 via Ribbon Synapse from 88794 -> 88798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88794, + "TargetID": 88798, + "Directional": true + }] + }, { + "ID": 5544, + "SourceStructureID": 170, + "TargetStructureID": 88810, + "Label": "170-88810 via Ribbon Synapse from 1365 -> 88811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1365, + "TargetID": 88811, + "Directional": true + }] + }, { + "ID": 5545, + "SourceStructureID": 170, + "TargetStructureID": 88817, + "Label": "170-88817 via Ribbon Synapse from 1338 -> 88821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1338, + "TargetID": 88821, + "Directional": true + }] + }, { + "ID": 5546, + "SourceStructureID": 170, + "TargetStructureID": 88945, + "Label": "170-88945 via Ribbon Synapse from 1345 -> 88949, 28374 -> 88946, 28375 -> 88949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1345, + "TargetID": 88949, + "Directional": true + }, { + "SourceID": 28374, + "TargetID": 88946, + "Directional": true + }, { + "SourceID": 28375, + "TargetID": 88949, + "Directional": true + }] + }, { + "ID": 5547, + "SourceStructureID": 170, + "TargetStructureID": 88947, + "Label": "170-88947 via Ribbon Synapse from 1344 -> 88960, 28375 -> 88948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1344, + "TargetID": 88960, + "Directional": true + }, { + "SourceID": 28375, + "TargetID": 88948, + "Directional": true + }] + }, { + "ID": 5548, + "SourceStructureID": 170, + "TargetStructureID": 88986, + "Label": "170-88986 via Ribbon Synapse from 1342 -> 88991", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1342, + "TargetID": 88991, + "Directional": true + }] + }, { + "ID": 5549, + "SourceStructureID": 170, + "TargetStructureID": 88988, + "Label": "170-88988 via Ribbon Synapse from 1342 -> 88992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1342, + "TargetID": 88992, + "Directional": true + }] + }, { + "ID": 5550, + "SourceStructureID": 170, + "TargetStructureID": 89008, + "Label": "170-89008 via Ribbon Synapse from 89007 -> 89010", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89007, + "TargetID": 89010, + "Directional": true + }] + }, { + "ID": 5551, + "SourceStructureID": 170, + "TargetStructureID": 89034, + "Label": "170-89034 via Ribbon Synapse from 1347 -> 89035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1347, + "TargetID": 89035, + "Directional": true + }] + }, { + "ID": 5552, + "SourceStructureID": 170, + "TargetStructureID": 89078, + "Label": "170-89078 via Ribbon Synapse from 985 -> 89079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 985, + "TargetID": 89079, + "Directional": true + }] + }, { + "ID": 5553, + "SourceStructureID": 170, + "TargetStructureID": 89086, + "Label": "170-89086 via Ribbon Synapse from 28368 -> 89156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28368, + "TargetID": 89156, + "Directional": true + }] + }, { + "ID": 5554, + "SourceStructureID": 170, + "TargetStructureID": 89175, + "Label": "170-89175 via Ribbon Synapse from 1263 -> 89495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1263, + "TargetID": 89495, + "Directional": true + }] + }, { + "ID": 5555, + "SourceStructureID": 170, + "TargetStructureID": 89217, + "Label": "170-89217 via Ribbon Synapse from 1351 -> 89218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1351, + "TargetID": 89218, + "Directional": true + }] + }, { + "ID": 5556, + "SourceStructureID": 170, + "TargetStructureID": 89246, + "Label": "170-89246 via Ribbon Synapse from 1278 -> 89247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1278, + "TargetID": 89247, + "Directional": true + }] + }, { + "ID": 5557, + "SourceStructureID": 170, + "TargetStructureID": 89359, + "Label": "170-89359 via Ribbon Synapse from 1279 -> 89360", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1279, + "TargetID": 89360, + "Directional": true + }] + }, { + "ID": 5558, + "SourceStructureID": 170, + "TargetStructureID": 89367, + "Label": "170-89367 via Ribbon Synapse from 89371 -> 89368", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89371, + "TargetID": 89368, + "Directional": true + }] + }, { + "ID": 5559, + "SourceStructureID": 170, + "TargetStructureID": 89377, + "Label": "170-89377 via Ribbon Synapse from 89376 -> 89379, 89382 -> 89383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89376, + "TargetID": 89379, + "Directional": true + }, { + "SourceID": 89382, + "TargetID": 89383, + "Directional": true + }] + }, { + "ID": 5560, + "SourceStructureID": 170, + "TargetStructureID": 89400, + "Label": "170-89400 via Ribbon Synapse from 89401 -> 89403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89401, + "TargetID": 89403, + "Directional": true + }] + }, { + "ID": 5561, + "SourceStructureID": 170, + "TargetStructureID": 89402, + "Label": "170-89402 via Ribbon Synapse from 89401 -> 89404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89401, + "TargetID": 89404, + "Directional": true + }] + }, { + "ID": 5562, + "SourceStructureID": 170, + "TargetStructureID": 89407, + "Label": "170-89407 via Ribbon Synapse from 89406 -> 89408", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89406, + "TargetID": 89408, + "Directional": true + }] + }, { + "ID": 5563, + "SourceStructureID": 170, + "TargetStructureID": 89417, + "Label": "170-89417 via Ribbon Synapse from 1283 -> 89418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1283, + "TargetID": 89418, + "Directional": true + }] + }, { + "ID": 5564, + "SourceStructureID": 170, + "TargetStructureID": 89472, + "Label": "170-89472 via Ribbon Synapse from 1285 -> 89473, 1288 -> 89474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1285, + "TargetID": 89473, + "Directional": true + }, { + "SourceID": 1288, + "TargetID": 89474, + "Directional": true + }] + }, { + "ID": 5565, + "SourceStructureID": 170, + "TargetStructureID": 89475, + "Label": "170-89475 via Ribbon Synapse from 1288 -> 89476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1288, + "TargetID": 89476, + "Directional": true + }] + }, { + "ID": 5566, + "SourceStructureID": 170, + "TargetStructureID": 89496, + "Label": "170-89496 via Ribbon Synapse from 1263 -> 89497, 1275 -> 90052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1263, + "TargetID": 89497, + "Directional": true + }, { + "SourceID": 1275, + "TargetID": 90052, + "Directional": true + }] + }, { + "ID": 5567, + "SourceStructureID": 170, + "TargetStructureID": 89669, + "Label": "170-89669 via Ribbon Synapse from 1298 -> 89671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1298, + "TargetID": 89671, + "Directional": true + }] + }, { + "ID": 5568, + "SourceStructureID": 170, + "TargetStructureID": 89687, + "Label": "170-89687 via Ribbon Synapse from 1301 -> 89689, 89686 -> 89688", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1301, + "TargetID": 89689, + "Directional": true + }, { + "SourceID": 89686, + "TargetID": 89688, + "Directional": true + }] + }, { + "ID": 5569, + "SourceStructureID": 170, + "TargetStructureID": 89698, + "Label": "170-89698 via Ribbon Synapse from 1301 -> 89700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1301, + "TargetID": 89700, + "Directional": true + }] + }, { + "ID": 5570, + "SourceStructureID": 170, + "TargetStructureID": 89739, + "Label": "170-89739 via BC Conventional Synapse from 89740 -> 89741", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89740, + "TargetID": 89741, + "Directional": true + }] + }, { + "ID": 5571, + "SourceStructureID": 170, + "TargetStructureID": 89855, + "Label": "170-89855 via Ribbon Synapse from 89205 -> 89861", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89205, + "TargetID": 89861, + "Directional": true + }] + }, { + "ID": 5572, + "SourceStructureID": 170, + "TargetStructureID": 89888, + "Label": "170-89888 via Ribbon Synapse from 89206 -> 89889", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89206, + "TargetID": 89889, + "Directional": true + }] + }, { + "ID": 5573, + "SourceStructureID": 170, + "TargetStructureID": 89935, + "Label": "170-89935 via Ribbon Synapse from 89933 -> 89940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89933, + "TargetID": 89940, + "Directional": true + }] + }, { + "ID": 5574, + "SourceStructureID": 170, + "TargetStructureID": 89985, + "Label": "170-89985 via Ribbon Synapse from 89986 -> 89987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89986, + "TargetID": 89987, + "Directional": true + }] + }, { + "ID": 5575, + "SourceStructureID": 170, + "TargetStructureID": 90047, + "Label": "170-90047 via Ribbon Synapse from 28370 -> 90060, 28373 -> 90085", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28370, + "TargetID": 90060, + "Directional": true + }, { + "SourceID": 28373, + "TargetID": 90085, + "Directional": true + }] + }, { + "ID": 5576, + "SourceStructureID": 170, + "TargetStructureID": 90053, + "Label": "170-90053 via Ribbon Synapse from 1272 -> 90058, 1275 -> 90057, 28373 -> 90086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1272, + "TargetID": 90058, + "Directional": true + }, { + "SourceID": 1275, + "TargetID": 90057, + "Directional": true + }, { + "SourceID": 28373, + "TargetID": 90086, + "Directional": true + }] + }, { + "ID": 5577, + "SourceStructureID": 170, + "TargetStructureID": 90061, + "Label": "170-90061 via Ribbon Synapse from 28370 -> 90062", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28370, + "TargetID": 90062, + "Directional": true + }] + }, { + "ID": 5578, + "SourceStructureID": 170, + "TargetStructureID": 90077, + "Label": "170-90077 via Ribbon Synapse from 28372 -> 90081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28372, + "TargetID": 90081, + "Directional": true + }] + }, { + "ID": 5579, + "SourceStructureID": 170, + "TargetStructureID": 90078, + "Label": "170-90078 via Ribbon Synapse from 28372 -> 90082", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28372, + "TargetID": 90082, + "Directional": true + }] + }, { + "ID": 5580, + "SourceStructureID": 170, + "TargetStructureID": 90079, + "Label": "170-90079 via Ribbon Synapse from 28372 -> 90080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28372, + "TargetID": 90080, + "Directional": true + }] + }, { + "ID": 5581, + "SourceStructureID": 170, + "TargetStructureID": 90241, + "Label": "170-90241 via Ribbon Synapse from 39515 -> 90242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39515, + "TargetID": 90242, + "Directional": true + }] + }, { + "ID": 5582, + "SourceStructureID": 170, + "TargetStructureID": 90248, + "Label": "170-90248 via Ribbon Synapse from 1278 -> 90249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1278, + "TargetID": 90249, + "Directional": true + }] + }, { + "ID": 5583, + "SourceStructureID": 170, + "TargetStructureID": 90258, + "Label": "170-90258 via Ribbon Synapse from 90257 -> 90259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90257, + "TargetID": 90259, + "Directional": true + }] + }, { + "ID": 5584, + "SourceStructureID": 170, + "TargetStructureID": 90260, + "Label": "170-90260 via Ribbon Synapse from 90257 -> 90261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90257, + "TargetID": 90261, + "Directional": true + }] + }, { + "ID": 5585, + "SourceStructureID": 170, + "TargetStructureID": 90269, + "Label": "170-90269 via Ribbon Synapse from 53354 -> 90270", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53354, + "TargetID": 90270, + "Directional": true + }] + }, { + "ID": 5586, + "SourceStructureID": 170, + "TargetStructureID": 90273, + "Label": "170-90273 via Ribbon Synapse from 90272 -> 90277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90272, + "TargetID": 90277, + "Directional": true + }] + }, { + "ID": 5587, + "SourceStructureID": 170, + "TargetStructureID": 90278, + "Label": "170-90278 via Ribbon Synapse from 90272 -> 90279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90272, + "TargetID": 90279, + "Directional": true + }] + }, { + "ID": 5588, + "SourceStructureID": 170, + "TargetStructureID": 90287, + "Label": "170-90287 via Ribbon Synapse from 90286 -> 90288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90286, + "TargetID": 90288, + "Directional": true + }] + }, { + "ID": 5589, + "SourceStructureID": 170, + "TargetStructureID": 90296, + "Label": "170-90296 via Ribbon Synapse from 90307 -> 90308", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90307, + "TargetID": 90308, + "Directional": true + }] + }, { + "ID": 5590, + "SourceStructureID": 170, + "TargetStructureID": 90309, + "Label": "170-90309 via Ribbon Synapse from 90307 -> 90310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90307, + "TargetID": 90310, + "Directional": true + }] + }, { + "ID": 5591, + "SourceStructureID": 170, + "TargetStructureID": 90327, + "Label": "170-90327 via Ribbon Synapse from 53358 -> 90329", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53358, + "TargetID": 90329, + "Directional": true + }] + }, { + "ID": 5592, + "SourceStructureID": 170, + "TargetStructureID": 90330, + "Label": "170-90330 via Ribbon Synapse from 53358 -> 90331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53358, + "TargetID": 90331, + "Directional": true + }] + }, { + "ID": 5593, + "SourceStructureID": 170, + "TargetStructureID": 90366, + "Label": "170-90366 via Ribbon Synapse from 1404 -> 90367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1404, + "TargetID": 90367, + "Directional": true + }] + }, { + "ID": 5594, + "SourceStructureID": 170, + "TargetStructureID": 90368, + "Label": "170-90368 via Ribbon Synapse from 1411 -> 90370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1411, + "TargetID": 90370, + "Directional": true + }] + }, { + "ID": 5595, + "SourceStructureID": 170, + "TargetStructureID": 90409, + "Label": "170-90409 via Ribbon Synapse from 90407 -> 90411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90407, + "TargetID": 90411, + "Directional": true + }] + }, { + "ID": 5596, + "SourceStructureID": 170, + "TargetStructureID": 90421, + "Label": "170-90421 via Ribbon Synapse from 15995 -> 90422", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15995, + "TargetID": 90422, + "Directional": true + }] + }, { + "ID": 5597, + "SourceStructureID": 170, + "TargetStructureID": 90423, + "Label": "170-90423 via Ribbon Synapse from 90425 -> 90426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90425, + "TargetID": 90426, + "Directional": true + }] + }, { + "ID": 5598, + "SourceStructureID": 170, + "TargetStructureID": 90428, + "Label": "170-90428 via Ribbon Synapse from 90427 -> 90431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90427, + "TargetID": 90431, + "Directional": true + }] + }, { + "ID": 5599, + "SourceStructureID": 170, + "TargetStructureID": 90460, + "Label": "170-90460 via Ribbon Synapse from 15997 -> 90462", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15997, + "TargetID": 90462, + "Directional": true + }] + }, { + "ID": 5600, + "SourceStructureID": 170, + "TargetStructureID": 90550, + "Label": "170-90550 via Ribbon Synapse from 90549 -> 90556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90549, + "TargetID": 90556, + "Directional": true + }] + }, { + "ID": 5601, + "SourceStructureID": 170, + "TargetStructureID": 90558, + "Label": "170-90558 via Ribbon Synapse from 90549 -> 90559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90549, + "TargetID": 90559, + "Directional": true + }] + }, { + "ID": 5602, + "SourceStructureID": 170, + "TargetStructureID": 90563, + "Label": "170-90563 via Ribbon Synapse from 1413 -> 90565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1413, + "TargetID": 90565, + "Directional": true + }] + }, { + "ID": 5603, + "SourceStructureID": 170, + "TargetStructureID": 90566, + "Label": "170-90566 via Ribbon Synapse from 1413 -> 90567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1413, + "TargetID": 90567, + "Directional": true + }] + }, { + "ID": 5604, + "SourceStructureID": 170, + "TargetStructureID": 90570, + "Label": "170-90570 via Ribbon Synapse from 1426 -> 90571, 133996 -> 133997", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1426, + "TargetID": 90571, + "Directional": true + }, { + "SourceID": 133996, + "TargetID": 133997, + "Directional": true + }] + }, { + "ID": 5605, + "SourceStructureID": 170, + "TargetStructureID": 90572, + "Label": "170-90572 via Ribbon Synapse from 1426 -> 90573", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1426, + "TargetID": 90573, + "Directional": true + }] + }, { + "ID": 5606, + "SourceStructureID": 170, + "TargetStructureID": 90577, + "Label": "170-90577 via Ribbon Synapse from 90576 -> 90578", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90576, + "TargetID": 90578, + "Directional": true + }] + }, { + "ID": 5607, + "SourceStructureID": 170, + "TargetStructureID": 90579, + "Label": "170-90579 via Ribbon Synapse from 90576 -> 90580", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90576, + "TargetID": 90580, + "Directional": true + }] + }, { + "ID": 5608, + "SourceStructureID": 170, + "TargetStructureID": 90591, + "Label": "170-90591 via Ribbon Synapse from 1422 -> 90592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1422, + "TargetID": 90592, + "Directional": true + }] + }, { + "ID": 5609, + "SourceStructureID": 170, + "TargetStructureID": 90600, + "Label": "170-90600 via Ribbon Synapse from 1434 -> 90601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1434, + "TargetID": 90601, + "Directional": true + }] + }, { + "ID": 5610, + "SourceStructureID": 170, + "TargetStructureID": 90602, + "Label": "170-90602 via Ribbon Synapse from 1434 -> 90603", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1434, + "TargetID": 90603, + "Directional": true + }] + }, { + "ID": 5611, + "SourceStructureID": 170, + "TargetStructureID": 90622, + "Label": "170-90622 via Ribbon Synapse from 90621 -> 90623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90621, + "TargetID": 90623, + "Directional": true + }] + }, { + "ID": 5612, + "SourceStructureID": 170, + "TargetStructureID": 90626, + "Label": "170-90626 via Ribbon Synapse from 90621 -> 90627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90621, + "TargetID": 90627, + "Directional": true + }] + }, { + "ID": 5613, + "SourceStructureID": 171, + "TargetStructureID": 591, + "Label": "171-591 via Ribbon Synapse from 15443 -> 15445", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15443, + "TargetID": 15445, + "Directional": true + }] + }, { + "ID": 5614, + "SourceStructureID": 171, + "TargetStructureID": 3257, + "Label": "171-3257 via Ribbon Synapse from 15447 -> 15446, 15448 -> 15449, 15460 -> 15459, 22911 -> 22909", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15447, + "TargetID": 15446, + "Directional": true + }, { + "SourceID": 15448, + "TargetID": 15449, + "Directional": true + }, { + "SourceID": 15460, + "TargetID": 15459, + "Directional": true + }, { + "SourceID": 22911, + "TargetID": 22909, + "Directional": true + }] + }, { + "ID": 5615, + "SourceStructureID": 171, + "TargetStructureID": 5860, + "Label": "171-5860 via Ribbon Synapse from 14737 -> 14738, 87730 -> 87731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14737, + "TargetID": 14738, + "Directional": true + }, { + "SourceID": 87730, + "TargetID": 87731, + "Directional": true + }] + }, { + "ID": 5616, + "SourceStructureID": 171, + "TargetStructureID": 6169, + "Label": "171-6169 via Ribbon Synapse from 6001 -> 16244, 9713 -> 133073, 15450 -> 16241, 29467 -> 29466, 29470 -> 29469, 29471 -> 29472, 133088 -> 133087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6001, + "TargetID": 16244, + "Directional": true + }, { + "SourceID": 9713, + "TargetID": 133073, + "Directional": true + }, { + "SourceID": 15450, + "TargetID": 16241, + "Directional": true + }, { + "SourceID": 29467, + "TargetID": 29466, + "Directional": true + }, { + "SourceID": 29470, + "TargetID": 29469, + "Directional": true + }, { + "SourceID": 29471, + "TargetID": 29472, + "Directional": true + }, { + "SourceID": 133088, + "TargetID": 133087, + "Directional": true + }] + }, { + "ID": 5617, + "SourceStructureID": 172, + "TargetStructureID": 3257, + "Label": "172-3257 via Ribbon Synapse from 128138 -> 18067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128138, + "TargetID": 18067, + "Directional": true + }] + }, { + "ID": 5618, + "SourceStructureID": 172, + "TargetStructureID": 5860, + "Label": "172-5860 via Ribbon Synapse from 29464 -> 29465, 119985 -> 119986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29464, + "TargetID": 29465, + "Directional": true + }, { + "SourceID": 119985, + "TargetID": 119986, + "Directional": true + }] + }, { + "ID": 5619, + "SourceStructureID": 172, + "TargetStructureID": 6169, + "Label": "172-6169 via Ribbon Synapse from 12219 -> 12226, 46369 -> 46370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12219, + "TargetID": 12226, + "Directional": true + }, { + "SourceID": 46369, + "TargetID": 46370, + "Directional": true + }] + }, { + "ID": 5620, + "SourceStructureID": 172, + "TargetStructureID": 10574, + "Label": "172-10574 via Ribbon Synapse from 84546 -> 10598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84546, + "TargetID": 10598, + "Directional": true + }] + }, { + "ID": 5621, + "SourceStructureID": 172, + "TargetStructureID": 12203, + "Label": "172-12203 via Ribbon Synapse from 12232 -> 12205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12232, + "TargetID": 12205, + "Directional": true + }] + }, { + "ID": 5622, + "SourceStructureID": 172, + "TargetStructureID": 13448, + "Label": "172-13448 via Ribbon Synapse from 119992 -> 24298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119992, + "TargetID": 24298, + "Directional": true + }] + }, { + "ID": 5623, + "SourceStructureID": 172, + "TargetStructureID": 31486, + "Label": "172-31486 via Ribbon Synapse from 31633 -> 31534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31633, + "TargetID": 31534, + "Directional": true + }] + }, { + "ID": 5624, + "SourceStructureID": 172, + "TargetStructureID": 46359, + "Label": "172-46359 via Ribbon Synapse from 44637 -> 46365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44637, + "TargetID": 46365, + "Directional": true + }] + }, { + "ID": 5625, + "SourceStructureID": 172, + "TargetStructureID": 128122, + "Label": "172-128122 via Ribbon Synapse from 128134 -> 128132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128134, + "TargetID": 128132, + "Directional": true + }] + }, { + "ID": 5626, + "SourceStructureID": 172, + "TargetStructureID": 136432, + "Label": "172-136432 via Ribbon Synapse from 136545 -> 136544", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136545, + "TargetID": 136544, + "Directional": true + }] + }, { + "ID": 5627, + "SourceStructureID": 173, + "TargetStructureID": 5377, + "Label": "173-5377 via Ribbon Synapse from 11998 -> 87082, 12018 -> 87064, 87071 -> 87081, 128180 -> 128182", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11998, + "TargetID": 87082, + "Directional": true + }, { + "SourceID": 12018, + "TargetID": 87064, + "Directional": true + }, { + "SourceID": 87071, + "TargetID": 87081, + "Directional": true + }, { + "SourceID": 128180, + "TargetID": 128182, + "Directional": true + }] + }, { + "ID": 5628, + "SourceStructureID": 173, + "TargetStructureID": 5435, + "Label": "173-5435 via Ribbon Synapse from 12038 -> 24349, 60064 -> 60065", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12038, + "TargetID": 24349, + "Directional": true + }, { + "SourceID": 60064, + "TargetID": 60065, + "Directional": true + }] + }, { + "ID": 5629, + "SourceStructureID": 173, + "TargetStructureID": 6169, + "Label": "173-6169 via Ribbon Synapse from 5911 -> 88190, 11986 -> 60924, 12002 -> 60928", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5911, + "TargetID": 88190, + "Directional": true + }, { + "SourceID": 11986, + "TargetID": 60924, + "Directional": true + }, { + "SourceID": 12002, + "TargetID": 60928, + "Directional": true + }] + }, { + "ID": 5630, + "SourceStructureID": 173, + "TargetStructureID": 7073, + "Label": "173-7073 via Ribbon Synapse from 19588 -> 19586", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19588, + "TargetID": 19586, + "Directional": true + }] + }, { + "ID": 5631, + "SourceStructureID": 173, + "TargetStructureID": 7113, + "Label": "173-7113 via Ribbon Synapse from 12028 -> 18103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12028, + "TargetID": 18103, + "Directional": true + }] + }, { + "ID": 5632, + "SourceStructureID": 173, + "TargetStructureID": 7145, + "Label": "173-7145 via Ribbon Synapse from 12127 -> 15828", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12127, + "TargetID": 15828, + "Directional": true + }] + }, { + "ID": 5633, + "SourceStructureID": 173, + "TargetStructureID": 9787, + "Label": "173-9787 via Ribbon Synapse from 11984 -> 18085, 12028 -> 24350, 24293 -> 24292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11984, + "TargetID": 18085, + "Directional": true + }, { + "SourceID": 12028, + "TargetID": 24350, + "Directional": true + }, { + "SourceID": 24293, + "TargetID": 24292, + "Directional": true + }] + }, { + "ID": 5634, + "SourceStructureID": 173, + "TargetStructureID": 12203, + "Label": "173-12203 via Ribbon Synapse from 12035 -> 12251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12035, + "TargetID": 12251, + "Directional": true + }] + }, { + "ID": 5635, + "SourceStructureID": 173, + "TargetStructureID": 20681, + "Label": "173-20681 via BC Conventional Synapse from 12032 -> 20751", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12032, + "TargetID": 20751, + "Directional": true + }] + }, { + "ID": 5636, + "SourceStructureID": 173, + "TargetStructureID": 31486, + "Label": "173-31486 via Ribbon Synapse from 11891 -> 31643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11891, + "TargetID": 31643, + "Directional": true + }] + }, { + "ID": 5637, + "SourceStructureID": 173, + "TargetStructureID": 46389, + "Label": "173-46389 via Ribbon Synapse from 12098 -> 60744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12098, + "TargetID": 60744, + "Directional": true + }] + }, { + "ID": 5638, + "SourceStructureID": 173, + "TargetStructureID": 50240, + "Label": "173-50240 via Ribbon Synapse from 11986 -> 60925", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11986, + "TargetID": 60925, + "Directional": true + }] + }, { + "ID": 5639, + "SourceStructureID": 173, + "TargetStructureID": 54264, + "Label": "173-54264 via Ribbon Synapse from 13042 -> 54279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13042, + "TargetID": 54279, + "Directional": true + }] + }, { + "ID": 5640, + "SourceStructureID": 173, + "TargetStructureID": 85856, + "Label": "173-85856 via Ribbon Synapse from 7053 -> 11887, 11873 -> 11886, 12011 -> 32006, 32008 -> 32007, 88148 -> 88147, 136867 -> 136868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7053, + "TargetID": 11887, + "Directional": true + }, { + "SourceID": 11873, + "TargetID": 11886, + "Directional": true + }, { + "SourceID": 12011, + "TargetID": 32006, + "Directional": true + }, { + "SourceID": 32008, + "TargetID": 32007, + "Directional": true + }, { + "SourceID": 88148, + "TargetID": 88147, + "Directional": true + }, { + "SourceID": 136867, + "TargetID": 136868, + "Directional": true + }] + }, { + "ID": 5641, + "SourceStructureID": 173, + "TargetStructureID": 87076, + "Label": "173-87076 via BC Conventional Synapse from 87080 -> 87079", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87080, + "TargetID": 87079, + "Directional": true + }] + }, { + "ID": 5642, + "SourceStructureID": 173, + "TargetStructureID": 103094, + "Label": "173-103094 via Ribbon Synapse from 11925 -> 103096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11925, + "TargetID": 103096, + "Directional": true + }] + }, { + "ID": 5643, + "SourceStructureID": 173, + "TargetStructureID": 128101, + "Label": "173-128101 via Ribbon Synapse from 12013 -> 128105", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12013, + "TargetID": 128105, + "Directional": true + }] + }, { + "ID": 5644, + "SourceStructureID": 173, + "TargetStructureID": 128152, + "Label": "173-128152 via Ribbon Synapse from 12118 -> 128157, 128154 -> 128155", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12118, + "TargetID": 128157, + "Directional": true + }, { + "SourceID": 128154, + "TargetID": 128155, + "Directional": true + }] + }, { + "ID": 5645, + "SourceStructureID": 173, + "TargetStructureID": 128184, + "Label": "173-128184 via Ribbon Synapse from 11995 -> 128188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11995, + "TargetID": 128188, + "Directional": true + }] + }, { + "ID": 5646, + "SourceStructureID": 173, + "TargetStructureID": 129927, + "Label": "173-129927 via Ribbon Synapse from 12139 -> 129937", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12139, + "TargetID": 129937, + "Directional": true + }] + }, { + "ID": 5647, + "SourceStructureID": 175, + "TargetStructureID": 174, + "Label": "175-174 via Ribbon Synapse from 18811 -> 18799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18811, + "TargetID": 18799, + "Directional": true + }] + }, { + "ID": 5648, + "SourceStructureID": 175, + "TargetStructureID": 178, + "Label": "175-178 via Ribbon Synapse from 24291 -> 3271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24291, + "TargetID": 3271, + "Directional": true + }] + }, { + "ID": 5649, + "SourceStructureID": 175, + "TargetStructureID": 5351, + "Label": "175-5351 via Ribbon Synapse from 21894 -> 24073, 24072 -> 24070, 24077 -> 24076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21894, + "TargetID": 24073, + "Directional": true + }, { + "SourceID": 24072, + "TargetID": 24070, + "Directional": true + }, { + "SourceID": 24077, + "TargetID": 24076, + "Directional": true + }] + }, { + "ID": 5650, + "SourceStructureID": 175, + "TargetStructureID": 7113, + "Label": "175-7113 via Ribbon Synapse from 21886 -> 21888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21886, + "TargetID": 21888, + "Directional": true + }] + }, { + "ID": 5651, + "SourceStructureID": 175, + "TargetStructureID": 9787, + "Label": "175-9787 via Ribbon Synapse from 7070 -> 18137, 29375 -> 18141, 29379 -> 18142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7070, + "TargetID": 18137, + "Directional": true + }, { + "SourceID": 29375, + "TargetID": 18141, + "Directional": true + }, { + "SourceID": 29379, + "TargetID": 18142, + "Directional": true + }] + }, { + "ID": 5652, + "SourceStructureID": 175, + "TargetStructureID": 29340, + "Label": "175-29340 via Conventional from 33553 -> 29373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33553, + "TargetID": 29373, + "Directional": true + }] + }, { + "ID": 5653, + "SourceStructureID": 175, + "TargetStructureID": 29340, + "Label": "175-29340 via Ribbon Synapse from 19791 -> 29397, 29380 -> 29374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19791, + "TargetID": 29397, + "Directional": true + }, { + "SourceID": 29380, + "TargetID": 29374, + "Directional": true + }] + }, { + "ID": 5654, + "SourceStructureID": 175, + "TargetStructureID": 46443, + "Label": "175-46443 via Ribbon Synapse from 46448 -> 46447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46448, + "TargetID": 46447, + "Directional": true + }] + }, { + "ID": 5655, + "SourceStructureID": 175, + "TargetStructureID": 85856, + "Label": "175-85856 via Ribbon Synapse from 21718 -> 24507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21718, + "TargetID": 24507, + "Directional": true + }] + }, { + "ID": 5656, + "SourceStructureID": 176, + "TargetStructureID": 545, + "Label": "176-545 via Cistern Pre from 128013 -> 128012", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 128013, + "TargetID": 128012, + "Directional": true + }] + }, { + "ID": 5657, + "SourceStructureID": 176, + "TargetStructureID": 582, + "Label": "176-582 via Cistern Pre from 11704 -> 587", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 11704, + "TargetID": 587, + "Directional": true + }] + }, { + "ID": 5658, + "SourceStructureID": 176, + "TargetStructureID": 606, + "Label": "176-606 via Ribbon Synapse from 53563 -> 53564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53563, + "TargetID": 53564, + "Directional": true + }] + }, { + "ID": 5659, + "SourceStructureID": 176, + "TargetStructureID": 5481, + "Label": "176-5481 via Cistern Pre from 128327 -> 128328", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 128327, + "TargetID": 128328, + "Directional": true + }] + }, { + "ID": 5660, + "SourceStructureID": 176, + "TargetStructureID": 5481, + "Label": "176-5481 via Ribbon Synapse from 5870 -> 128452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5870, + "TargetID": 128452, + "Directional": true + }] + }, { + "ID": 5661, + "SourceStructureID": 176, + "TargetStructureID": 7576, + "Label": "176-7576 via BC Conventional Synapse from 55927 -> 55926", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55927, + "TargetID": 55926, + "Directional": true + }] + }, { + "ID": 5662, + "SourceStructureID": 176, + "TargetStructureID": 20327, + "Label": "176-20327 via Ribbon Synapse from 58651 -> 58652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58651, + "TargetID": 58652, + "Directional": true + }] + }, { + "ID": 5663, + "SourceStructureID": 176, + "TargetStructureID": 20537, + "Label": "176-20537 via Cistern Pre from 5836 -> 23509", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 5836, + "TargetID": 23509, + "Directional": true + }] + }, { + "ID": 5664, + "SourceStructureID": 176, + "TargetStructureID": 30567, + "Label": "176-30567 via Ribbon Synapse from 32099 -> 32090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32099, + "TargetID": 32090, + "Directional": true + }] + }, { + "ID": 5665, + "SourceStructureID": 176, + "TargetStructureID": 32405, + "Label": "176-32405 via Ribbon Synapse from 5899 -> 38528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5899, + "TargetID": 38528, + "Directional": true + }] + }, { + "ID": 5666, + "SourceStructureID": 176, + "TargetStructureID": 35212, + "Label": "176-35212 via Ribbon Synapse from 35220 -> 35219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35220, + "TargetID": 35219, + "Directional": true + }] + }, { + "ID": 5667, + "SourceStructureID": 176, + "TargetStructureID": 38949, + "Label": "176-38949 via Ribbon Synapse from 38986 -> 38985, 38992 -> 38991", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38986, + "TargetID": 38985, + "Directional": true + }, { + "SourceID": 38992, + "TargetID": 38991, + "Directional": true + }] + }, { + "ID": 5668, + "SourceStructureID": 176, + "TargetStructureID": 44893, + "Label": "176-44893 via Ribbon Synapse from 5858 -> 123328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5858, + "TargetID": 123328, + "Directional": true + }] + }, { + "ID": 5669, + "SourceStructureID": 176, + "TargetStructureID": 44912, + "Label": "176-44912 via Ribbon Synapse from 5858 -> 44914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5858, + "TargetID": 44914, + "Directional": true + }] + }, { + "ID": 5670, + "SourceStructureID": 176, + "TargetStructureID": 44970, + "Label": "176-44970 via Ribbon Synapse from 5856 -> 44975, 45005 -> 45004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5856, + "TargetID": 44975, + "Directional": true + }, { + "SourceID": 45005, + "TargetID": 45004, + "Directional": true + }] + }, { + "ID": 5671, + "SourceStructureID": 176, + "TargetStructureID": 45220, + "Label": "176-45220 via Ribbon Synapse from 91900 -> 45228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91900, + "TargetID": 45228, + "Directional": true + }] + }, { + "ID": 5672, + "SourceStructureID": 176, + "TargetStructureID": 54948, + "Label": "176-54948 via Ribbon Synapse from 54954 -> 54953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54954, + "TargetID": 54953, + "Directional": true + }] + }, { + "ID": 5673, + "SourceStructureID": 176, + "TargetStructureID": 56802, + "Label": "176-56802 via Cistern Pre from 91790 -> 128032", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 91790, + "TargetID": 128032, + "Directional": true + }] + }, { + "ID": 5674, + "SourceStructureID": 176, + "TargetStructureID": 58592, + "Label": "176-58592 via Ribbon Synapse from 34108 -> 58649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34108, + "TargetID": 58649, + "Directional": true + }] + }, { + "ID": 5675, + "SourceStructureID": 176, + "TargetStructureID": 69893, + "Label": "176-69893 via Ribbon Synapse from 69892 -> 69894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69892, + "TargetID": 69894, + "Directional": true + }] + }, { + "ID": 5676, + "SourceStructureID": 176, + "TargetStructureID": 70648, + "Label": "176-70648 via Ribbon Synapse from 128244 -> 128245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128244, + "TargetID": 128245, + "Directional": true + }] + }, { + "ID": 5677, + "SourceStructureID": 176, + "TargetStructureID": 72299, + "Label": "176-72299 via BC Conventional Synapse from 126437 -> 126438", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126437, + "TargetID": 126438, + "Directional": true + }] + }, { + "ID": 5678, + "SourceStructureID": 176, + "TargetStructureID": 80609, + "Label": "176-80609 via Ribbon Synapse from 5868 -> 82477, 82460 -> 82461, 82464 -> 82463", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5868, + "TargetID": 82477, + "Directional": true + }, { + "SourceID": 82460, + "TargetID": 82461, + "Directional": true + }, { + "SourceID": 82464, + "TargetID": 82463, + "Directional": true + }] + }, { + "ID": 5679, + "SourceStructureID": 176, + "TargetStructureID": 88260, + "Label": "176-88260 via Ribbon Synapse from 5896 -> 88277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5896, + "TargetID": 88277, + "Directional": true + }] + }, { + "ID": 5680, + "SourceStructureID": 176, + "TargetStructureID": 89039, + "Label": "176-89039 via Ribbon Synapse from 124556 -> 128241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124556, + "TargetID": 128241, + "Directional": true + }] + }, { + "ID": 5681, + "SourceStructureID": 176, + "TargetStructureID": 91780, + "Label": "176-91780 via Ribbon Synapse from 38998 -> 93039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38998, + "TargetID": 93039, + "Directional": true + }] + }, { + "ID": 5682, + "SourceStructureID": 176, + "TargetStructureID": 91832, + "Label": "176-91832 via Adherens from 124679 -> 124680", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 124679, + "TargetID": 124680, + "Directional": true + }] + }, { + "ID": 5683, + "SourceStructureID": 176, + "TargetStructureID": 91832, + "Label": "176-91832 via Ribbon Synapse from 91829 -> 91835", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91829, + "TargetID": 91835, + "Directional": true + }] + }, { + "ID": 5684, + "SourceStructureID": 176, + "TargetStructureID": 91856, + "Label": "176-91856 via BC Conventional Synapse from 91861 -> 91860, 91861 -> 124752", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91861, + "TargetID": 91860, + "Directional": true + }, { + "SourceID": 91861, + "TargetID": 124752, + "Directional": true + }] + }, { + "ID": 5685, + "SourceStructureID": 176, + "TargetStructureID": 91913, + "Label": "176-91913 via BC Conventional Synapse from 128432 -> 147451", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128432, + "TargetID": 147451, + "Directional": true + }] + }, { + "ID": 5686, + "SourceStructureID": 176, + "TargetStructureID": 91918, + "Label": "176-91918 via Ribbon Synapse from 93037 -> 93036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93037, + "TargetID": 93036, + "Directional": true + }] + }, { + "ID": 5687, + "SourceStructureID": 176, + "TargetStructureID": 91930, + "Label": "176-91930 via BC Conventional Synapse from 91951 -> 91950", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91951, + "TargetID": 91950, + "Directional": true + }] + }, { + "ID": 5688, + "SourceStructureID": 176, + "TargetStructureID": 91959, + "Label": "176-91959 via Cistern Pre from 91957 -> 128704", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 91957, + "TargetID": 128704, + "Directional": true + }] + }, { + "ID": 5689, + "SourceStructureID": 176, + "TargetStructureID": 91994, + "Label": "176-91994 via Ribbon Synapse from 91906 -> 128443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91906, + "TargetID": 128443, + "Directional": true + }] + }, { + "ID": 5690, + "SourceStructureID": 176, + "TargetStructureID": 97272, + "Label": "176-97272 via Ribbon Synapse from 91999 -> 128442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91999, + "TargetID": 128442, + "Directional": true + }] + }, { + "ID": 5691, + "SourceStructureID": 176, + "TargetStructureID": 97280, + "Label": "176-97280 via Ribbon Synapse from 91999 -> 128441", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91999, + "TargetID": 128441, + "Directional": true + }] + }, { + "ID": 5692, + "SourceStructureID": 176, + "TargetStructureID": 106922, + "Label": "176-106922 via Ribbon Synapse from 128258 -> 128259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128258, + "TargetID": 128259, + "Directional": true + }] + }, { + "ID": 5693, + "SourceStructureID": 176, + "TargetStructureID": 107438, + "Label": "176-107438 via Cistern Pre from 124930 -> 124931", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 124930, + "TargetID": 124931, + "Directional": true + }] + }, { + "ID": 5694, + "SourceStructureID": 176, + "TargetStructureID": 107639, + "Label": "176-107639 via Ribbon Synapse from 5876 -> 128672", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5876, + "TargetID": 128672, + "Directional": true + }] + }, { + "ID": 5695, + "SourceStructureID": 176, + "TargetStructureID": 107672, + "Label": "176-107672 via Ribbon Synapse from 91900 -> 128447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91900, + "TargetID": 128447, + "Directional": true + }] + }, { + "ID": 5696, + "SourceStructureID": 176, + "TargetStructureID": 125857, + "Label": "176-125857 via BC Conventional Synapse from 125858 -> 125859", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125858, + "TargetID": 125859, + "Directional": true + }] + }, { + "ID": 5697, + "SourceStructureID": 176, + "TargetStructureID": 125857, + "Label": "176-125857 via Ribbon Synapse from 124129 -> 128742", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124129, + "TargetID": 128742, + "Directional": true + }] + }, { + "ID": 5698, + "SourceStructureID": 176, + "TargetStructureID": 126585, + "Label": "176-126585 via BC Conventional Synapse from 125429 -> 126586", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125429, + "TargetID": 126586, + "Directional": true + }] + }, { + "ID": 5699, + "SourceStructureID": 176, + "TargetStructureID": 128278, + "Label": "176-128278 via Ribbon Synapse from 128277 -> 128279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128277, + "TargetID": 128279, + "Directional": true + }] + }, { + "ID": 5700, + "SourceStructureID": 176, + "TargetStructureID": 128682, + "Label": "176-128682 via Ribbon Synapse from 34108 -> 128684", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34108, + "TargetID": 128684, + "Directional": true + }] + }, { + "ID": 5701, + "SourceStructureID": 176, + "TargetStructureID": 128696, + "Label": "176-128696 via Ribbon Synapse from 125799 -> 128697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125799, + "TargetID": 128697, + "Directional": true + }] + }, { + "ID": 5702, + "SourceStructureID": 176, + "TargetStructureID": 136680, + "Label": "176-136680 via BC Conventional Synapse from 124558 -> 136682", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124558, + "TargetID": 136682, + "Directional": true + }] + }, { + "ID": 5703, + "SourceStructureID": 176, + "TargetStructureID": 147412, + "Label": "176-147412 via Ribbon Synapse from 5870 -> 147413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5870, + "TargetID": 147413, + "Directional": true + }] + }, { + "ID": 5704, + "SourceStructureID": 176, + "TargetStructureID": 147696, + "Label": "176-147696 via Ribbon Synapse from 54992 -> 147731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54992, + "TargetID": 147731, + "Directional": true + }] + }, { + "ID": 5705, + "SourceStructureID": 176, + "TargetStructureID": 147713, + "Label": "176-147713 via Ribbon Synapse from 125807 -> 147714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125807, + "TargetID": 147714, + "Directional": true + }] + }, { + "ID": 5706, + "SourceStructureID": 177, + "TargetStructureID": 606, + "Label": "177-606 via Ribbon Synapse from 5925 -> 51731, 27983 -> 51731, 47946 -> 51731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5925, + "TargetID": 51731, + "Directional": true + }, { + "SourceID": 27983, + "TargetID": 51731, + "Directional": true + }, { + "SourceID": 47946, + "TargetID": 51731, + "Directional": true + }] + }, { + "ID": 5707, + "SourceStructureID": 177, + "TargetStructureID": 7576, + "Label": "177-7576 via Ribbon Synapse from 27945 -> 55013, 27951 -> 55930, 27955 -> 54984, 27965 -> 54998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27945, + "TargetID": 55013, + "Directional": true + }, { + "SourceID": 27951, + "TargetID": 55930, + "Directional": true + }, { + "SourceID": 27955, + "TargetID": 54984, + "Directional": true + }, { + "SourceID": 27965, + "TargetID": 54998, + "Directional": true + }] + }, { + "ID": 5708, + "SourceStructureID": 177, + "TargetStructureID": 30526, + "Label": "177-30526 via Ribbon Synapse from 23642 -> 30527", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23642, + "TargetID": 30527, + "Directional": true + }] + }, { + "ID": 5709, + "SourceStructureID": 177, + "TargetStructureID": 34914, + "Label": "177-34914 via Ribbon Synapse from 5945 -> 34918, 5954 -> 34916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5945, + "TargetID": 34918, + "Directional": true + }, { + "SourceID": 5954, + "TargetID": 34916, + "Directional": true + }] + }, { + "ID": 5710, + "SourceStructureID": 177, + "TargetStructureID": 56802, + "Label": "177-56802 via BC Conventional Synapse from 119615 -> 119614", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119615, + "TargetID": 119614, + "Directional": true + }] + }, { + "ID": 5711, + "SourceStructureID": 179, + "TargetStructureID": 410, + "Label": "179-410 via Conventional from 103833 -> 23276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103833, + "TargetID": 23276, + "Directional": true + }] + }, { + "ID": 5712, + "SourceStructureID": 179, + "TargetStructureID": 517, + "Label": "179-517 via Conventional from 41026 -> 16427", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41026, + "TargetID": 16427, + "Directional": true + }] + }, { + "ID": 5713, + "SourceStructureID": 179, + "TargetStructureID": 518, + "Label": "179-518 via Conventional from 25301 -> 25304, 36506 -> 3376, 36507 -> 3508", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25301, + "TargetID": 25304, + "Directional": true + }, { + "SourceID": 36506, + "TargetID": 3376, + "Directional": true + }, { + "SourceID": 36507, + "TargetID": 3508, + "Directional": true + }] + }, { + "ID": 5714, + "SourceStructureID": 179, + "TargetStructureID": 519, + "Label": "179-519 via Conventional from 9332 -> 9305, 9333 -> 9307, 25363 -> 9238, 25786 -> 25787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9332, + "TargetID": 9305, + "Directional": true + }, { + "SourceID": 9333, + "TargetID": 9307, + "Directional": true + }, { + "SourceID": 25363, + "TargetID": 9238, + "Directional": true + }, { + "SourceID": 25786, + "TargetID": 25787, + "Directional": true + }] + }, { + "ID": 5715, + "SourceStructureID": 179, + "TargetStructureID": 6561, + "Label": "179-6561 via Conventional from 103873 -> 17306, 103874 -> 17305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103873, + "TargetID": 17306, + "Directional": true + }, { + "SourceID": 103874, + "TargetID": 17305, + "Directional": true + }] + }, { + "ID": 5716, + "SourceStructureID": 179, + "TargetStructureID": 10897, + "Label": "179-10897 via Conventional from 104881 -> 104883", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104881, + "TargetID": 104883, + "Directional": true + }] + }, { + "ID": 5717, + "SourceStructureID": 179, + "TargetStructureID": 10931, + "Label": "179-10931 via Conventional from 87469 -> 87470", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87469, + "TargetID": 87470, + "Directional": true + }] + }, { + "ID": 5718, + "SourceStructureID": 179, + "TargetStructureID": 10943, + "Label": "179-10943 via Conventional from 105528 -> 10944", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105528, + "TargetID": 10944, + "Directional": true + }] + }, { + "ID": 5719, + "SourceStructureID": 179, + "TargetStructureID": 10953, + "Label": "179-10953 via Conventional from 87482 -> 87483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87482, + "TargetID": 87483, + "Directional": true + }] + }, { + "ID": 5720, + "SourceStructureID": 179, + "TargetStructureID": 14615, + "Label": "179-14615 via Conventional from 25314 -> 25318, 33084 -> 25315", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25314, + "TargetID": 25318, + "Directional": true + }, { + "SourceID": 33084, + "TargetID": 25315, + "Directional": true + }] + }, { + "ID": 5721, + "SourceStructureID": 179, + "TargetStructureID": 15100, + "Label": "179-15100 via Conventional from 33112 -> 17995", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33112, + "TargetID": 17995, + "Directional": true + }] + }, { + "ID": 5722, + "SourceStructureID": 179, + "TargetStructureID": 15942, + "Label": "179-15942 via Conventional from 103840 -> 103839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103840, + "TargetID": 103839, + "Directional": true + }] + }, { + "ID": 5723, + "SourceStructureID": 179, + "TargetStructureID": 16446, + "Label": "179-16446 via Conventional from 103861 -> 16459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103861, + "TargetID": 16459, + "Directional": true + }] + }, { + "ID": 5724, + "SourceStructureID": 179, + "TargetStructureID": 17228, + "Label": "179-17228 via Conventional from 104932 -> 104936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104932, + "TargetID": 104936, + "Directional": true + }] + }, { + "ID": 5725, + "SourceStructureID": 179, + "TargetStructureID": 117272, + "Label": "179-117272 via Postsynapse from 130219 -> 130220", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 130219, + "TargetID": 130220, + "Directional": true + }] + }, { + "ID": 5726, + "SourceStructureID": 180, + "TargetStructureID": 318, + "Label": "180-318 via Ribbon Synapse from 14151 -> 14152, 14156 -> 14118, 84487 -> 133008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14151, + "TargetID": 14152, + "Directional": true + }, { + "SourceID": 14156, + "TargetID": 14118, + "Directional": true + }, { + "SourceID": 84487, + "TargetID": 133008, + "Directional": true + }] + }, { + "ID": 5727, + "SourceStructureID": 180, + "TargetStructureID": 606, + "Label": "180-606 via Ribbon Synapse from 51239 -> 51242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51239, + "TargetID": 51242, + "Directional": true + }] + }, { + "ID": 5728, + "SourceStructureID": 180, + "TargetStructureID": 3679, + "Label": "180-3679 via Ribbon Synapse from 56870 -> 9708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56870, + "TargetID": 9708, + "Directional": true + }] + }, { + "ID": 5729, + "SourceStructureID": 180, + "TargetStructureID": 4890, + "Label": "180-4890 via Ribbon Synapse from 4925 -> 4924, 6097 -> 6098, 14149 -> 6100, 56879 -> 6000, 95519 -> 95520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4925, + "TargetID": 4924, + "Directional": true + }, { + "SourceID": 6097, + "TargetID": 6098, + "Directional": true + }, { + "SourceID": 14149, + "TargetID": 6100, + "Directional": true + }, { + "SourceID": 56879, + "TargetID": 6000, + "Directional": true + }, { + "SourceID": 95519, + "TargetID": 95520, + "Directional": true + }] + }, { + "ID": 5730, + "SourceStructureID": 180, + "TargetStructureID": 5303, + "Label": "180-5303 via Ribbon Synapse from 847 -> 133052, 133051 -> 133052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 847, + "TargetID": 133052, + "Directional": true + }, { + "SourceID": 133051, + "TargetID": 133052, + "Directional": true + }] + }, { + "ID": 5731, + "SourceStructureID": 180, + "TargetStructureID": 5618, + "Label": "180-5618 via Ribbon Synapse from 6056 -> 65979, 65983 -> 65982, 65984 -> 65982", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6056, + "TargetID": 65979, + "Directional": true + }, { + "SourceID": 65983, + "TargetID": 65982, + "Directional": true + }, { + "SourceID": 65984, + "TargetID": 65982, + "Directional": true + }] + }, { + "ID": 5732, + "SourceStructureID": 180, + "TargetStructureID": 6169, + "Label": "180-6169 via Ribbon Synapse from 24656 -> 24653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24656, + "TargetID": 24653, + "Directional": true + }] + }, { + "ID": 5733, + "SourceStructureID": 180, + "TargetStructureID": 8577, + "Label": "180-8577 via BC Conventional Synapse from 15883 -> 15881", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15883, + "TargetID": 15881, + "Directional": true + }] + }, { + "ID": 5734, + "SourceStructureID": 180, + "TargetStructureID": 8577, + "Label": "180-8577 via Ribbon Synapse from 15885 -> 15884, 56873 -> 15876, 126090 -> 133014, 132883 -> 15879, 133126 -> 133127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15885, + "TargetID": 15884, + "Directional": true + }, { + "SourceID": 56873, + "TargetID": 15876, + "Directional": true + }, { + "SourceID": 126090, + "TargetID": 133014, + "Directional": true + }, { + "SourceID": 132883, + "TargetID": 15879, + "Directional": true + }, { + "SourceID": 133126, + "TargetID": 133127, + "Directional": true + }] + }, { + "ID": 5735, + "SourceStructureID": 180, + "TargetStructureID": 8579, + "Label": "180-8579 via Ribbon Synapse from 6055 -> 94668, 6059 -> 94891, 16128 -> 19805, 19807 -> 66082, 19810 -> 19811, 19821 -> 19820, 133100 -> 133101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6055, + "TargetID": 94668, + "Directional": true + }, { + "SourceID": 6059, + "TargetID": 94891, + "Directional": true + }, { + "SourceID": 16128, + "TargetID": 19805, + "Directional": true + }, { + "SourceID": 19807, + "TargetID": 66082, + "Directional": true + }, { + "SourceID": 19810, + "TargetID": 19811, + "Directional": true + }, { + "SourceID": 19821, + "TargetID": 19820, + "Directional": true + }, { + "SourceID": 133100, + "TargetID": 133101, + "Directional": true + }] + }, { + "ID": 5736, + "SourceStructureID": 180, + "TargetStructureID": 8720, + "Label": "180-8720 via Ribbon Synapse from 853 -> 133049, 868 -> 15292, 65604 -> 133050, 133057 -> 15292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 853, + "TargetID": 133049, + "Directional": true + }, { + "SourceID": 868, + "TargetID": 15292, + "Directional": true + }, { + "SourceID": 65604, + "TargetID": 133050, + "Directional": true + }, { + "SourceID": 133057, + "TargetID": 15292, + "Directional": true + }] + }, { + "ID": 5737, + "SourceStructureID": 180, + "TargetStructureID": 9347, + "Label": "180-9347 via Ribbon Synapse from 95404 -> 95406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95404, + "TargetID": 95406, + "Directional": true + }] + }, { + "ID": 5738, + "SourceStructureID": 180, + "TargetStructureID": 16087, + "Label": "180-16087 via Ribbon Synapse from 126090 -> 133013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126090, + "TargetID": 133013, + "Directional": true + }] + }, { + "ID": 5739, + "SourceStructureID": 180, + "TargetStructureID": 18282, + "Label": "180-18282 via Ribbon Synapse from 890 -> 18322, 133009 -> 135147", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 890, + "TargetID": 18322, + "Directional": true + }, { + "SourceID": 133009, + "TargetID": 135147, + "Directional": true + }] + }, { + "ID": 5740, + "SourceStructureID": 180, + "TargetStructureID": 25440, + "Label": "180-25440 via BC Conventional Synapse from 133113 -> 133114", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133113, + "TargetID": 133114, + "Directional": true + }] + }, { + "ID": 5741, + "SourceStructureID": 180, + "TargetStructureID": 25440, + "Label": "180-25440 via Ribbon Synapse from 91004 -> 91006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91004, + "TargetID": 91006, + "Directional": true + }] + }, { + "ID": 5742, + "SourceStructureID": 180, + "TargetStructureID": 29277, + "Label": "180-29277 via Ribbon Synapse from 29266 -> 132928, 31106 -> 29279, 90906 -> 123161, 95251 -> 115583, 95252 -> 115583, 95253 -> 115583", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29266, + "TargetID": 132928, + "Directional": true + }, { + "SourceID": 31106, + "TargetID": 29279, + "Directional": true + }, { + "SourceID": 90906, + "TargetID": 123161, + "Directional": true + }, { + "SourceID": 95251, + "TargetID": 115583, + "Directional": true + }, { + "SourceID": 95252, + "TargetID": 115583, + "Directional": true + }, { + "SourceID": 95253, + "TargetID": 115583, + "Directional": true + }] + }, { + "ID": 5743, + "SourceStructureID": 180, + "TargetStructureID": 30518, + "Label": "180-30518 via Ribbon Synapse from 6566 -> 32783", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6566, + "TargetID": 32783, + "Directional": true + }] + }, { + "ID": 5744, + "SourceStructureID": 180, + "TargetStructureID": 31024, + "Label": "180-31024 via Ribbon Synapse from 6060 -> 31066, 15885 -> 133023, 31100 -> 31072", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6060, + "TargetID": 31066, + "Directional": true + }, { + "SourceID": 15885, + "TargetID": 133023, + "Directional": true + }, { + "SourceID": 31100, + "TargetID": 31072, + "Directional": true + }] + }, { + "ID": 5745, + "SourceStructureID": 180, + "TargetStructureID": 33330, + "Label": "180-33330 via Ribbon Synapse from 33329 -> 33331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33329, + "TargetID": 33331, + "Directional": true + }] + }, { + "ID": 5746, + "SourceStructureID": 180, + "TargetStructureID": 38363, + "Label": "180-38363 via Ribbon Synapse from 31277 -> 133031", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31277, + "TargetID": 133031, + "Directional": true + }] + }, { + "ID": 5747, + "SourceStructureID": 180, + "TargetStructureID": 39345, + "Label": "180-39345 via Ribbon Synapse from 6566 -> 39348, 31283 -> 39363, 39365 -> 39364", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6566, + "TargetID": 39348, + "Directional": true + }, { + "SourceID": 31283, + "TargetID": 39363, + "Directional": true + }, { + "SourceID": 39365, + "TargetID": 39364, + "Directional": true + }] + }, { + "ID": 5748, + "SourceStructureID": 180, + "TargetStructureID": 54744, + "Label": "180-54744 via Ribbon Synapse from 91004 -> 91007", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91004, + "TargetID": 91007, + "Directional": true + }] + }, { + "ID": 5749, + "SourceStructureID": 180, + "TargetStructureID": 64492, + "Label": "180-64492 via Ribbon Synapse from 6058 -> 64498, 65586 -> 65587, 91002 -> 91003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6058, + "TargetID": 64498, + "Directional": true + }, { + "SourceID": 65586, + "TargetID": 65587, + "Directional": true + }, { + "SourceID": 91002, + "TargetID": 91003, + "Directional": true + }] + }, { + "ID": 5750, + "SourceStructureID": 180, + "TargetStructureID": 65591, + "Label": "180-65591 via Ribbon Synapse from 65590 -> 65592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65590, + "TargetID": 65592, + "Directional": true + }] + }, { + "ID": 5751, + "SourceStructureID": 180, + "TargetStructureID": 65594, + "Label": "180-65594 via Ribbon Synapse from 65593 -> 130253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65593, + "TargetID": 130253, + "Directional": true + }] + }, { + "ID": 5752, + "SourceStructureID": 180, + "TargetStructureID": 65596, + "Label": "180-65596 via Ribbon Synapse from 65593 -> 65597", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65593, + "TargetID": 65597, + "Directional": true + }] + }, { + "ID": 5753, + "SourceStructureID": 180, + "TargetStructureID": 65602, + "Label": "180-65602 via Ribbon Synapse from 133047 -> 65603", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133047, + "TargetID": 65603, + "Directional": true + }] + }, { + "ID": 5754, + "SourceStructureID": 180, + "TargetStructureID": 65864, + "Label": "180-65864 via Ribbon Synapse from 19807 -> 133024, 91024 -> 94882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19807, + "TargetID": 133024, + "Directional": true + }, { + "SourceID": 91024, + "TargetID": 94882, + "Directional": true + }] + }, { + "ID": 5755, + "SourceStructureID": 180, + "TargetStructureID": 65971, + "Label": "180-65971 via Ribbon Synapse from 59681 -> 65972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59681, + "TargetID": 65972, + "Directional": true + }] + }, { + "ID": 5756, + "SourceStructureID": 180, + "TargetStructureID": 66510, + "Label": "180-66510 via Ribbon Synapse from 91016 -> 91019", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91016, + "TargetID": 91019, + "Directional": true + }] + }, { + "ID": 5757, + "SourceStructureID": 180, + "TargetStructureID": 66634, + "Label": "180-66634 via Ribbon Synapse from 59663 -> 94943", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59663, + "TargetID": 94943, + "Directional": true + }] + }, { + "ID": 5758, + "SourceStructureID": 180, + "TargetStructureID": 70315, + "Label": "180-70315 via Ribbon Synapse from 6059 -> 94890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6059, + "TargetID": 94890, + "Directional": true + }] + }, { + "ID": 5759, + "SourceStructureID": 180, + "TargetStructureID": 71351, + "Label": "180-71351 via Ribbon Synapse from 875 -> 71902, 31270 -> 71889, 71890 -> 71894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 875, + "TargetID": 71902, + "Directional": true + }, { + "SourceID": 31270, + "TargetID": 71889, + "Directional": true + }, { + "SourceID": 71890, + "TargetID": 71894, + "Directional": true + }] + }, { + "ID": 5760, + "SourceStructureID": 180, + "TargetStructureID": 71351, + "Label": "180-71351 via Unknown from 133092 -> 95235", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 133092, + "TargetID": 95235, + "Directional": true + }] + }, { + "ID": 5761, + "SourceStructureID": 180, + "TargetStructureID": 71517, + "Label": "180-71517 via Ribbon Synapse from 31277 -> 75161, 71494 -> 71495, 72010 -> 72011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31277, + "TargetID": 75161, + "Directional": true + }, { + "SourceID": 71494, + "TargetID": 71495, + "Directional": true + }, { + "SourceID": 72010, + "TargetID": 72011, + "Directional": true + }] + }, { + "ID": 5762, + "SourceStructureID": 180, + "TargetStructureID": 72012, + "Label": "180-72012 via Ribbon Synapse from 31101 -> 132885, 132883 -> 132885", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31101, + "TargetID": 132885, + "Directional": true + }, { + "SourceID": 132883, + "TargetID": 132885, + "Directional": true + }] + }, { + "ID": 5763, + "SourceStructureID": 180, + "TargetStructureID": 72638, + "Label": "180-72638 via Ribbon Synapse from 31284 -> 133033", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31284, + "TargetID": 133033, + "Directional": true + }] + }, { + "ID": 5764, + "SourceStructureID": 180, + "TargetStructureID": 75130, + "Label": "180-75130 via Ribbon Synapse from 31277 -> 133030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31277, + "TargetID": 133030, + "Directional": true + }] + }, { + "ID": 5765, + "SourceStructureID": 180, + "TargetStructureID": 75339, + "Label": "180-75339 via Ribbon Synapse from 31274 -> 95231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31274, + "TargetID": 95231, + "Directional": true + }] + }, { + "ID": 5766, + "SourceStructureID": 180, + "TargetStructureID": 80609, + "Label": "180-80609 via Ribbon Synapse from 56879 -> 95510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56879, + "TargetID": 95510, + "Directional": true + }] + }, { + "ID": 5767, + "SourceStructureID": 180, + "TargetStructureID": 84335, + "Label": "180-84335 via Ribbon Synapse from 59664 -> 94936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59664, + "TargetID": 94936, + "Directional": true + }] + }, { + "ID": 5768, + "SourceStructureID": 180, + "TargetStructureID": 84806, + "Label": "180-84806 via Ribbon Synapse from 84809 -> 95904", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84809, + "TargetID": 95904, + "Directional": true + }] + }, { + "ID": 5769, + "SourceStructureID": 180, + "TargetStructureID": 90217, + "Label": "180-90217 via BC Conventional Synapse from 90505 -> 90504", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90505, + "TargetID": 90504, + "Directional": true + }] + }, { + "ID": 5770, + "SourceStructureID": 180, + "TargetStructureID": 90217, + "Label": "180-90217 via Ribbon Synapse from 59669 -> 95255, 132882 -> 90506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59669, + "TargetID": 95255, + "Directional": true + }, { + "SourceID": 132882, + "TargetID": 90506, + "Directional": true + }] + }, { + "ID": 5771, + "SourceStructureID": 180, + "TargetStructureID": 90739, + "Label": "180-90739 via Ribbon Synapse from 6053 -> 90740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6053, + "TargetID": 90740, + "Directional": true + }] + }, { + "ID": 5772, + "SourceStructureID": 180, + "TargetStructureID": 90743, + "Label": "180-90743 via Ribbon Synapse from 29446 -> 90745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29446, + "TargetID": 90745, + "Directional": true + }] + }, { + "ID": 5773, + "SourceStructureID": 180, + "TargetStructureID": 90744, + "Label": "180-90744 via Ribbon Synapse from 29445 -> 90747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29445, + "TargetID": 90747, + "Directional": true + }] + }, { + "ID": 5774, + "SourceStructureID": 180, + "TargetStructureID": 90753, + "Label": "180-90753 via Ribbon Synapse from 6060 -> 133045, 90749 -> 90754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6060, + "TargetID": 133045, + "Directional": true + }, { + "SourceID": 90749, + "TargetID": 90754, + "Directional": true + }] + }, { + "ID": 5775, + "SourceStructureID": 180, + "TargetStructureID": 90764, + "Label": "180-90764 via BC Conventional Synapse from 90763 -> 90765", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90763, + "TargetID": 90765, + "Directional": true + }] + }, { + "ID": 5776, + "SourceStructureID": 180, + "TargetStructureID": 90775, + "Label": "180-90775 via Ribbon Synapse from 31101 -> 90776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31101, + "TargetID": 90776, + "Directional": true + }] + }, { + "ID": 5777, + "SourceStructureID": 180, + "TargetStructureID": 90779, + "Label": "180-90779 via Ribbon Synapse from 6062 -> 90780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6062, + "TargetID": 90780, + "Directional": true + }] + }, { + "ID": 5778, + "SourceStructureID": 180, + "TargetStructureID": 90781, + "Label": "180-90781 via Ribbon Synapse from 6061 -> 90782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6061, + "TargetID": 90782, + "Directional": true + }] + }, { + "ID": 5779, + "SourceStructureID": 180, + "TargetStructureID": 90783, + "Label": "180-90783 via BC Conventional Synapse from 90785 -> 90786", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90785, + "TargetID": 90786, + "Directional": true + }] + }, { + "ID": 5780, + "SourceStructureID": 180, + "TargetStructureID": 90791, + "Label": "180-90791 via Ribbon Synapse from 81903 -> 90792, 81904 -> 90792", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81903, + "TargetID": 90792, + "Directional": true + }, { + "SourceID": 81904, + "TargetID": 90792, + "Directional": true + }] + }, { + "ID": 5781, + "SourceStructureID": 180, + "TargetStructureID": 90795, + "Label": "180-90795 via Ribbon Synapse from 81902 -> 90796", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81902, + "TargetID": 90796, + "Directional": true + }] + }, { + "ID": 5782, + "SourceStructureID": 180, + "TargetStructureID": 90811, + "Label": "180-90811 via Ribbon Synapse from 132888 -> 133018, 133119 -> 133118, 133120 -> 90812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132888, + "TargetID": 133018, + "Directional": true + }, { + "SourceID": 133119, + "TargetID": 133118, + "Directional": true + }, { + "SourceID": 133120, + "TargetID": 90812, + "Directional": true + }] + }, { + "ID": 5783, + "SourceStructureID": 180, + "TargetStructureID": 90814, + "Label": "180-90814 via Ribbon Synapse from 6065 -> 90815, 133010 -> 90815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6065, + "TargetID": 90815, + "Directional": true + }, { + "SourceID": 133010, + "TargetID": 90815, + "Directional": true + }] + }, { + "ID": 5784, + "SourceStructureID": 180, + "TargetStructureID": 90817, + "Label": "180-90817 via BC Conventional Synapse from 90816 -> 90818", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90816, + "TargetID": 90818, + "Directional": true + }] + }, { + "ID": 5785, + "SourceStructureID": 180, + "TargetStructureID": 90822, + "Label": "180-90822 via Ribbon Synapse from 5049 -> 90825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5049, + "TargetID": 90825, + "Directional": true + }] + }, { + "ID": 5786, + "SourceStructureID": 180, + "TargetStructureID": 90840, + "Label": "180-90840 via Ribbon Synapse from 90784 -> 90841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90784, + "TargetID": 90841, + "Directional": true + }] + }, { + "ID": 5787, + "SourceStructureID": 180, + "TargetStructureID": 90842, + "Label": "180-90842 via Ribbon Synapse from 6063 -> 90843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6063, + "TargetID": 90843, + "Directional": true + }] + }, { + "ID": 5788, + "SourceStructureID": 180, + "TargetStructureID": 90844, + "Label": "180-90844 via Ribbon Synapse from 6063 -> 95722", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6063, + "TargetID": 95722, + "Directional": true + }] + }, { + "ID": 5789, + "SourceStructureID": 180, + "TargetStructureID": 90851, + "Label": "180-90851 via Ribbon Synapse from 90850 -> 90852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90850, + "TargetID": 90852, + "Directional": true + }] + }, { + "ID": 5790, + "SourceStructureID": 180, + "TargetStructureID": 90853, + "Label": "180-90853 via Ribbon Synapse from 90850 -> 90854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90850, + "TargetID": 90854, + "Directional": true + }] + }, { + "ID": 5791, + "SourceStructureID": 180, + "TargetStructureID": 90856, + "Label": "180-90856 via BC Conventional Synapse from 90855 -> 90857", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90855, + "TargetID": 90857, + "Directional": true + }] + }, { + "ID": 5792, + "SourceStructureID": 180, + "TargetStructureID": 90859, + "Label": "180-90859 via BC Conventional Synapse from 90862 -> 90861", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90862, + "TargetID": 90861, + "Directional": true + }] + }, { + "ID": 5793, + "SourceStructureID": 180, + "TargetStructureID": 90867, + "Label": "180-90867 via BC Conventional Synapse from 90866 -> 90868", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90866, + "TargetID": 90868, + "Directional": true + }] + }, { + "ID": 5794, + "SourceStructureID": 180, + "TargetStructureID": 90872, + "Label": "180-90872 via Ribbon Synapse from 90870 -> 90873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90870, + "TargetID": 90873, + "Directional": true + }] + }, { + "ID": 5795, + "SourceStructureID": 180, + "TargetStructureID": 90874, + "Label": "180-90874 via Ribbon Synapse from 90870 -> 90875", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90870, + "TargetID": 90875, + "Directional": true + }] + }, { + "ID": 5796, + "SourceStructureID": 180, + "TargetStructureID": 90880, + "Label": "180-90880 via BC Conventional Synapse from 90879 -> 90881", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90879, + "TargetID": 90881, + "Directional": true + }] + }, { + "ID": 5797, + "SourceStructureID": 180, + "TargetStructureID": 90883, + "Label": "180-90883 via Ribbon Synapse from 84809 -> 90884", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84809, + "TargetID": 90884, + "Directional": true + }] + }, { + "ID": 5798, + "SourceStructureID": 180, + "TargetStructureID": 90922, + "Label": "180-90922 via Ribbon Synapse from 90921 -> 90923", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90921, + "TargetID": 90923, + "Directional": true + }] + }, { + "ID": 5799, + "SourceStructureID": 180, + "TargetStructureID": 90924, + "Label": "180-90924 via Ribbon Synapse from 4925 -> 90927, 90921 -> 90925", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4925, + "TargetID": 90927, + "Directional": true + }, { + "SourceID": 90921, + "TargetID": 90925, + "Directional": true + }] + }, { + "ID": 5800, + "SourceStructureID": 180, + "TargetStructureID": 90928, + "Label": "180-90928 via Ribbon Synapse from 4925 -> 90930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4925, + "TargetID": 90930, + "Directional": true + }] + }, { + "ID": 5801, + "SourceStructureID": 180, + "TargetStructureID": 90935, + "Label": "180-90935 via Ribbon Synapse from 132890 -> 90936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132890, + "TargetID": 90936, + "Directional": true + }] + }, { + "ID": 5802, + "SourceStructureID": 180, + "TargetStructureID": 90949, + "Label": "180-90949 via Ribbon Synapse from 902 -> 90950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 902, + "TargetID": 90950, + "Directional": true + }] + }, { + "ID": 5803, + "SourceStructureID": 180, + "TargetStructureID": 90952, + "Label": "180-90952 via Ribbon Synapse from 898 -> 90953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 898, + "TargetID": 90953, + "Directional": true + }] + }, { + "ID": 5804, + "SourceStructureID": 180, + "TargetStructureID": 90956, + "Label": "180-90956 via Ribbon Synapse from 90959 -> 92723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90959, + "TargetID": 92723, + "Directional": true + }] + }, { + "ID": 5805, + "SourceStructureID": 180, + "TargetStructureID": 90967, + "Label": "180-90967 via Ribbon Synapse from 90965 -> 90968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90965, + "TargetID": 90968, + "Directional": true + }] + }, { + "ID": 5806, + "SourceStructureID": 180, + "TargetStructureID": 90971, + "Label": "180-90971 via Ribbon Synapse from 90966 -> 90972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90966, + "TargetID": 90972, + "Directional": true + }] + }, { + "ID": 5807, + "SourceStructureID": 180, + "TargetStructureID": 90973, + "Label": "180-90973 via Ribbon Synapse from 90966 -> 90974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90966, + "TargetID": 90974, + "Directional": true + }] + }, { + "ID": 5808, + "SourceStructureID": 180, + "TargetStructureID": 90979, + "Label": "180-90979 via Ribbon Synapse from 132971 -> 132972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132971, + "TargetID": 132972, + "Directional": true + }] + }, { + "ID": 5809, + "SourceStructureID": 180, + "TargetStructureID": 91014, + "Label": "180-91014 via BC Conventional Synapse from 91013 -> 91015, 94888 -> 94889", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91013, + "TargetID": 91015, + "Directional": true + }, { + "SourceID": 94888, + "TargetID": 94889, + "Directional": true + }] + }, { + "ID": 5810, + "SourceStructureID": 180, + "TargetStructureID": 94575, + "Label": "180-94575 via Ribbon Synapse from 36173 -> 94576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36173, + "TargetID": 94576, + "Directional": true + }] + }, { + "ID": 5811, + "SourceStructureID": 180, + "TargetStructureID": 94577, + "Label": "180-94577 via Ribbon Synapse from 36175 -> 133035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36175, + "TargetID": 133035, + "Directional": true + }] + }, { + "ID": 5812, + "SourceStructureID": 180, + "TargetStructureID": 94622, + "Label": "180-94622 via Ribbon Synapse from 847 -> 94623, 133051 -> 94623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 847, + "TargetID": 94623, + "Directional": true + }, { + "SourceID": 133051, + "TargetID": 94623, + "Directional": true + }] + }, { + "ID": 5813, + "SourceStructureID": 180, + "TargetStructureID": 94633, + "Label": "180-94633 via BC Conventional Synapse from 92737 -> 94634", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92737, + "TargetID": 94634, + "Directional": true + }] + }, { + "ID": 5814, + "SourceStructureID": 180, + "TargetStructureID": 94656, + "Label": "180-94656 via Ribbon Synapse from 6056 -> 94659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6056, + "TargetID": 94659, + "Directional": true + }] + }, { + "ID": 5815, + "SourceStructureID": 180, + "TargetStructureID": 94664, + "Label": "180-94664 via Ribbon Synapse from 6055 -> 94669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6055, + "TargetID": 94669, + "Directional": true + }] + }, { + "ID": 5816, + "SourceStructureID": 180, + "TargetStructureID": 94878, + "Label": "180-94878 via Ribbon Synapse from 91024 -> 94879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91024, + "TargetID": 94879, + "Directional": true + }] + }, { + "ID": 5817, + "SourceStructureID": 180, + "TargetStructureID": 94935, + "Label": "180-94935 via Ribbon Synapse from 59662 -> 94941", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59662, + "TargetID": 94941, + "Directional": true + }] + }, { + "ID": 5818, + "SourceStructureID": 180, + "TargetStructureID": 94939, + "Label": "180-94939 via Ribbon Synapse from 59662 -> 94940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59662, + "TargetID": 94940, + "Directional": true + }] + }, { + "ID": 5819, + "SourceStructureID": 180, + "TargetStructureID": 94950, + "Label": "180-94950 via BC Conventional Synapse from 133029 -> 94951", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133029, + "TargetID": 94951, + "Directional": true + }] + }, { + "ID": 5820, + "SourceStructureID": 180, + "TargetStructureID": 94952, + "Label": "180-94952 via Ribbon Synapse from 31272 -> 94953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31272, + "TargetID": 94953, + "Directional": true + }] + }, { + "ID": 5821, + "SourceStructureID": 180, + "TargetStructureID": 94964, + "Label": "180-94964 via Ribbon Synapse from 29252 -> 94966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29252, + "TargetID": 94966, + "Directional": true + }] + }, { + "ID": 5822, + "SourceStructureID": 180, + "TargetStructureID": 94965, + "Label": "180-94965 via Ribbon Synapse from 29253 -> 94967, 133025 -> 94967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29253, + "TargetID": 94967, + "Directional": true + }, { + "SourceID": 133025, + "TargetID": 94967, + "Directional": true + }] + }, { + "ID": 5823, + "SourceStructureID": 180, + "TargetStructureID": 94981, + "Label": "180-94981 via Ribbon Synapse from 29266 -> 94982", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29266, + "TargetID": 94982, + "Directional": true + }] + }, { + "ID": 5824, + "SourceStructureID": 180, + "TargetStructureID": 94993, + "Label": "180-94993 via Ribbon Synapse from 29263 -> 94996", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29263, + "TargetID": 94996, + "Directional": true + }] + }, { + "ID": 5825, + "SourceStructureID": 180, + "TargetStructureID": 94997, + "Label": "180-94997 via BC Conventional Synapse from 126085 -> 132878", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126085, + "TargetID": 132878, + "Directional": true + }] + }, { + "ID": 5826, + "SourceStructureID": 180, + "TargetStructureID": 94997, + "Label": "180-94997 via Ribbon Synapse from 29262 -> 94998, 95259 -> 132875, 95264 -> 95265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29262, + "TargetID": 94998, + "Directional": true + }, { + "SourceID": 95259, + "TargetID": 132875, + "Directional": true + }, { + "SourceID": 95264, + "TargetID": 95265, + "Directional": true + }] + }, { + "ID": 5827, + "SourceStructureID": 180, + "TargetStructureID": 95229, + "Label": "180-95229 via Ribbon Synapse from 31274 -> 95230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31274, + "TargetID": 95230, + "Directional": true + }] + }, { + "ID": 5828, + "SourceStructureID": 180, + "TargetStructureID": 95236, + "Label": "180-95236 via Unknown from 133092 -> 95237", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 133092, + "TargetID": 95237, + "Directional": true + }] + }, { + "ID": 5829, + "SourceStructureID": 180, + "TargetStructureID": 95238, + "Label": "180-95238 via Ribbon Synapse from 31271 -> 95239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31271, + "TargetID": 95239, + "Directional": true + }] + }, { + "ID": 5830, + "SourceStructureID": 180, + "TargetStructureID": 95256, + "Label": "180-95256 via BC Conventional Synapse from 95257 -> 95258", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95257, + "TargetID": 95258, + "Directional": true + }] + }, { + "ID": 5831, + "SourceStructureID": 180, + "TargetStructureID": 95305, + "Label": "180-95305 via Ribbon Synapse from 24656 -> 95306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24656, + "TargetID": 95306, + "Directional": true + }] + }, { + "ID": 5832, + "SourceStructureID": 180, + "TargetStructureID": 95321, + "Label": "180-95321 via Ribbon Synapse from 59672 -> 133038, 59674 -> 95322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59672, + "TargetID": 133038, + "Directional": true + }, { + "SourceID": 59674, + "TargetID": 95322, + "Directional": true + }] + }, { + "ID": 5833, + "SourceStructureID": 180, + "TargetStructureID": 95326, + "Label": "180-95326 via Ribbon Synapse from 132945 -> 132946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132945, + "TargetID": 132946, + "Directional": true + }] + }, { + "ID": 5834, + "SourceStructureID": 180, + "TargetStructureID": 95330, + "Label": "180-95330 via Ribbon Synapse from 59672 -> 95331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59672, + "TargetID": 95331, + "Directional": true + }] + }, { + "ID": 5835, + "SourceStructureID": 180, + "TargetStructureID": 95332, + "Label": "180-95332 via Ribbon Synapse from 71494 -> 95333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71494, + "TargetID": 95333, + "Directional": true + }] + }, { + "ID": 5836, + "SourceStructureID": 180, + "TargetStructureID": 95334, + "Label": "180-95334 via Ribbon Synapse from 132945 -> 132947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132945, + "TargetID": 132947, + "Directional": true + }] + }, { + "ID": 5837, + "SourceStructureID": 180, + "TargetStructureID": 95349, + "Label": "180-95349 via BC Conventional Synapse from 95352 -> 95353", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95352, + "TargetID": 95353, + "Directional": true + }] + }, { + "ID": 5838, + "SourceStructureID": 180, + "TargetStructureID": 95365, + "Label": "180-95365 via Ribbon Synapse from 5735 -> 95372, 133037 -> 95372", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5735, + "TargetID": 95372, + "Directional": true + }, { + "SourceID": 133037, + "TargetID": 95372, + "Directional": true + }] + }, { + "ID": 5839, + "SourceStructureID": 180, + "TargetStructureID": 95382, + "Label": "180-95382 via Ribbon Synapse from 844 -> 95383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 844, + "TargetID": 95383, + "Directional": true + }] + }, { + "ID": 5840, + "SourceStructureID": 180, + "TargetStructureID": 95384, + "Label": "180-95384 via Ribbon Synapse from 95386 -> 95385", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95386, + "TargetID": 95385, + "Directional": true + }] + }, { + "ID": 5841, + "SourceStructureID": 180, + "TargetStructureID": 95398, + "Label": "180-95398 via Ribbon Synapse from 862 -> 95403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 862, + "TargetID": 95403, + "Directional": true + }] + }, { + "ID": 5842, + "SourceStructureID": 180, + "TargetStructureID": 95399, + "Label": "180-95399 via Ribbon Synapse from 862 -> 95402, 90916 -> 95402", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 862, + "TargetID": 95402, + "Directional": true + }, { + "SourceID": 90916, + "TargetID": 95402, + "Directional": true + }] + }, { + "ID": 5843, + "SourceStructureID": 180, + "TargetStructureID": 95408, + "Label": "180-95408 via Ribbon Synapse from 95407 -> 95410, 133057 -> 95418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95407, + "TargetID": 95410, + "Directional": true + }, { + "SourceID": 133057, + "TargetID": 95418, + "Directional": true + }] + }, { + "ID": 5844, + "SourceStructureID": 180, + "TargetStructureID": 95411, + "Label": "180-95411 via Ribbon Synapse from 867 -> 95412, 11938 -> 95413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 867, + "TargetID": 95412, + "Directional": true + }, { + "SourceID": 11938, + "TargetID": 95413, + "Directional": true + }] + }, { + "ID": 5845, + "SourceStructureID": 180, + "TargetStructureID": 95419, + "Label": "180-95419 via Ribbon Synapse from 875 -> 95420", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 875, + "TargetID": 95420, + "Directional": true + }] + }, { + "ID": 5846, + "SourceStructureID": 180, + "TargetStructureID": 95424, + "Label": "180-95424 via Ribbon Synapse from 31286 -> 95425, 95427 -> 95426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31286, + "TargetID": 95425, + "Directional": true + }, { + "SourceID": 95427, + "TargetID": 95426, + "Directional": true + }] + }, { + "ID": 5847, + "SourceStructureID": 180, + "TargetStructureID": 95441, + "Label": "180-95441 via Ribbon Synapse from 883 -> 95442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 883, + "TargetID": 95442, + "Directional": true + }] + }, { + "ID": 5848, + "SourceStructureID": 180, + "TargetStructureID": 95445, + "Label": "180-95445 via Ribbon Synapse from 132896 -> 132984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132896, + "TargetID": 132984, + "Directional": true + }] + }, { + "ID": 5849, + "SourceStructureID": 180, + "TargetStructureID": 95454, + "Label": "180-95454 via Ribbon Synapse from 897 -> 95456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 897, + "TargetID": 95456, + "Directional": true + }] + }, { + "ID": 5850, + "SourceStructureID": 180, + "TargetStructureID": 95495, + "Label": "180-95495 via BC Conventional Synapse from 132943 -> 132942", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132943, + "TargetID": 132942, + "Directional": true + }] + }, { + "ID": 5851, + "SourceStructureID": 180, + "TargetStructureID": 95498, + "Label": "180-95498 via BC Conventional Synapse from 95497 -> 95499", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95497, + "TargetID": 95499, + "Directional": true + }] + }, { + "ID": 5852, + "SourceStructureID": 180, + "TargetStructureID": 95501, + "Label": "180-95501 via Ribbon Synapse from 90959 -> 95505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90959, + "TargetID": 95505, + "Directional": true + }] + }, { + "ID": 5853, + "SourceStructureID": 180, + "TargetStructureID": 95515, + "Label": "180-95515 via BC Conventional Synapse from 95516 -> 95517", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95516, + "TargetID": 95517, + "Directional": true + }] + }, { + "ID": 5854, + "SourceStructureID": 180, + "TargetStructureID": 95527, + "Label": "180-95527 via Ribbon Synapse from 90986 -> 95529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90986, + "TargetID": 95529, + "Directional": true + }] + }, { + "ID": 5855, + "SourceStructureID": 180, + "TargetStructureID": 95530, + "Label": "180-95530 via BC Conventional Synapse from 95535 -> 95536", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95535, + "TargetID": 95536, + "Directional": true + }] + }, { + "ID": 5856, + "SourceStructureID": 180, + "TargetStructureID": 95538, + "Label": "180-95538 via Ribbon Synapse from 904 -> 95539, 95544 -> 133099", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 904, + "TargetID": 95539, + "Directional": true + }, { + "SourceID": 95544, + "TargetID": 133099, + "Directional": true + }] + }, { + "ID": 5857, + "SourceStructureID": 180, + "TargetStructureID": 95543, + "Label": "180-95543 via Ribbon Synapse from 895 -> 133058", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 895, + "TargetID": 133058, + "Directional": true + }] + }, { + "ID": 5858, + "SourceStructureID": 180, + "TargetStructureID": 95545, + "Label": "180-95545 via Ribbon Synapse from 95544 -> 133097", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95544, + "TargetID": 133097, + "Directional": true + }] + }, { + "ID": 5859, + "SourceStructureID": 180, + "TargetStructureID": 95546, + "Label": "180-95546 via Ribbon Synapse from 11939 -> 95547", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11939, + "TargetID": 95547, + "Directional": true + }] + }, { + "ID": 5860, + "SourceStructureID": 180, + "TargetStructureID": 95560, + "Label": "180-95560 via Ribbon Synapse from 95561 -> 95571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95561, + "TargetID": 95571, + "Directional": true + }] + }, { + "ID": 5861, + "SourceStructureID": 180, + "TargetStructureID": 95562, + "Label": "180-95562 via Ribbon Synapse from 95561 -> 95572", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95561, + "TargetID": 95572, + "Directional": true + }] + }, { + "ID": 5862, + "SourceStructureID": 180, + "TargetStructureID": 95563, + "Label": "180-95563 via Postsynapse from 95565 -> 95564", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 95565, + "TargetID": 95564, + "Directional": true + }] + }, { + "ID": 5863, + "SourceStructureID": 180, + "TargetStructureID": 95563, + "Label": "180-95563 via Ribbon Synapse from 95576 -> 95577", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95576, + "TargetID": 95577, + "Directional": true + }] + }, { + "ID": 5864, + "SourceStructureID": 180, + "TargetStructureID": 95586, + "Label": "180-95586 via Ribbon Synapse from 95587 -> 95588", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95587, + "TargetID": 95588, + "Directional": true + }] + }, { + "ID": 5865, + "SourceStructureID": 180, + "TargetStructureID": 95589, + "Label": "180-95589 via Cistern Pre from 132904 -> 132905", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 132904, + "TargetID": 132905, + "Directional": true + }] + }, { + "ID": 5866, + "SourceStructureID": 180, + "TargetStructureID": 95589, + "Label": "180-95589 via Ribbon Synapse from 132903 -> 95591", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132903, + "TargetID": 95591, + "Directional": true + }] + }, { + "ID": 5867, + "SourceStructureID": 180, + "TargetStructureID": 95603, + "Label": "180-95603 via Ribbon Synapse from 4926 -> 95604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4926, + "TargetID": 95604, + "Directional": true + }] + }, { + "ID": 5868, + "SourceStructureID": 180, + "TargetStructureID": 95607, + "Label": "180-95607 via Ribbon Synapse from 855 -> 95608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 855, + "TargetID": 95608, + "Directional": true + }] + }, { + "ID": 5869, + "SourceStructureID": 180, + "TargetStructureID": 95620, + "Label": "180-95620 via Ribbon Synapse from 65600 -> 133048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65600, + "TargetID": 133048, + "Directional": true + }] + }, { + "ID": 5870, + "SourceStructureID": 180, + "TargetStructureID": 95674, + "Label": "180-95674 via Ribbon Synapse from 95672 -> 95677", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95672, + "TargetID": 95677, + "Directional": true + }] + }, { + "ID": 5871, + "SourceStructureID": 180, + "TargetStructureID": 95678, + "Label": "180-95678 via Ribbon Synapse from 90909 -> 95679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90909, + "TargetID": 95679, + "Directional": true + }] + }, { + "ID": 5872, + "SourceStructureID": 180, + "TargetStructureID": 95683, + "Label": "180-95683 via Ribbon Synapse from 90910 -> 95685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90910, + "TargetID": 95685, + "Directional": true + }] + }, { + "ID": 5873, + "SourceStructureID": 180, + "TargetStructureID": 95703, + "Label": "180-95703 via Ribbon Synapse from 132869 -> 132870", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132869, + "TargetID": 132870, + "Directional": true + }] + }, { + "ID": 5874, + "SourceStructureID": 180, + "TargetStructureID": 95737, + "Label": "180-95737 via Ribbon Synapse from 132939 -> 132940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132939, + "TargetID": 132940, + "Directional": true + }] + }, { + "ID": 5875, + "SourceStructureID": 180, + "TargetStructureID": 95740, + "Label": "180-95740 via BC Conventional Synapse from 95741 -> 95742", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95741, + "TargetID": 95742, + "Directional": true + }] + }, { + "ID": 5876, + "SourceStructureID": 180, + "TargetStructureID": 95743, + "Label": "180-95743 via Ribbon Synapse from 95744 -> 95745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95744, + "TargetID": 95745, + "Directional": true + }] + }, { + "ID": 5877, + "SourceStructureID": 180, + "TargetStructureID": 95759, + "Label": "180-95759 via Ribbon Synapse from 19821 -> 95760", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19821, + "TargetID": 95760, + "Directional": true + }] + }, { + "ID": 5878, + "SourceStructureID": 180, + "TargetStructureID": 95807, + "Label": "180-95807 via Ribbon Synapse from 31100 -> 95809", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31100, + "TargetID": 95809, + "Directional": true + }] + }, { + "ID": 5879, + "SourceStructureID": 180, + "TargetStructureID": 95810, + "Label": "180-95810 via Ribbon Synapse from 31100 -> 95811, 88071 -> 95832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31100, + "TargetID": 95811, + "Directional": true + }, { + "SourceID": 88071, + "TargetID": 95832, + "Directional": true + }] + }, { + "ID": 5880, + "SourceStructureID": 180, + "TargetStructureID": 95824, + "Label": "180-95824 via Ribbon Synapse from 6097 -> 95825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6097, + "TargetID": 95825, + "Directional": true + }] + }, { + "ID": 5881, + "SourceStructureID": 180, + "TargetStructureID": 95827, + "Label": "180-95827 via BC Conventional Synapse from 88070 -> 95828", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88070, + "TargetID": 95828, + "Directional": true + }] + }, { + "ID": 5882, + "SourceStructureID": 180, + "TargetStructureID": 95829, + "Label": "180-95829 via BC Conventional Synapse from 132965 -> 132964", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132965, + "TargetID": 132964, + "Directional": true + }] + }, { + "ID": 5883, + "SourceStructureID": 180, + "TargetStructureID": 95829, + "Label": "180-95829 via Ribbon Synapse from 88071 -> 95831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88071, + "TargetID": 95831, + "Directional": true + }] + }, { + "ID": 5884, + "SourceStructureID": 180, + "TargetStructureID": 95840, + "Label": "180-95840 via Ribbon Synapse from 95842 -> 95843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95842, + "TargetID": 95843, + "Directional": true + }] + }, { + "ID": 5885, + "SourceStructureID": 180, + "TargetStructureID": 95844, + "Label": "180-95844 via Ribbon Synapse from 95842 -> 95845", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95842, + "TargetID": 95845, + "Directional": true + }] + }, { + "ID": 5886, + "SourceStructureID": 180, + "TargetStructureID": 95877, + "Label": "180-95877 via Ribbon Synapse from 95878 -> 95879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95878, + "TargetID": 95879, + "Directional": true + }] + }, { + "ID": 5887, + "SourceStructureID": 180, + "TargetStructureID": 95927, + "Label": "180-95927 via Ribbon Synapse from 14139 -> 95958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14139, + "TargetID": 95958, + "Directional": true + }] + }, { + "ID": 5888, + "SourceStructureID": 180, + "TargetStructureID": 95951, + "Label": "180-95951 via Ribbon Synapse from 95953 -> 95954", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95953, + "TargetID": 95954, + "Directional": true + }] + }, { + "ID": 5889, + "SourceStructureID": 180, + "TargetStructureID": 95978, + "Label": "180-95978 via Ribbon Synapse from 14156 -> 95982", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14156, + "TargetID": 95982, + "Directional": true + }] + }, { + "ID": 5890, + "SourceStructureID": 180, + "TargetStructureID": 95983, + "Label": "180-95983 via BC Conventional Synapse from 95984 -> 95985", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95984, + "TargetID": 95985, + "Directional": true + }] + }, { + "ID": 5891, + "SourceStructureID": 180, + "TargetStructureID": 96021, + "Label": "180-96021 via Ribbon Synapse from 14151 -> 96022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14151, + "TargetID": 96022, + "Directional": true + }] + }, { + "ID": 5892, + "SourceStructureID": 180, + "TargetStructureID": 96023, + "Label": "180-96023 via Ribbon Synapse from 81387 -> 96030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81387, + "TargetID": 96030, + "Directional": true + }] + }, { + "ID": 5893, + "SourceStructureID": 180, + "TargetStructureID": 96026, + "Label": "180-96026 via Ribbon Synapse from 14149 -> 96027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14149, + "TargetID": 96027, + "Directional": true + }] + }, { + "ID": 5894, + "SourceStructureID": 180, + "TargetStructureID": 96028, + "Label": "180-96028 via Ribbon Synapse from 14155 -> 96029", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14155, + "TargetID": 96029, + "Directional": true + }] + }, { + "ID": 5895, + "SourceStructureID": 180, + "TargetStructureID": 96033, + "Label": "180-96033 via Ribbon Synapse from 81387 -> 96034", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81387, + "TargetID": 96034, + "Directional": true + }] + }, { + "ID": 5896, + "SourceStructureID": 180, + "TargetStructureID": 133015, + "Label": "180-133015 via Ribbon Synapse from 126090 -> 133016", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126090, + "TargetID": 133016, + "Directional": true + }] + }, { + "ID": 5897, + "SourceStructureID": 180, + "TargetStructureID": 133027, + "Label": "180-133027 via Ribbon Synapse from 31272 -> 133028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31272, + "TargetID": 133028, + "Directional": true + }] + }, { + "ID": 5898, + "SourceStructureID": 181, + "TargetStructureID": 173, + "Label": "181-173 via Adherens from 20426 -> 20427, 20439 -> 20440", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 20426, + "TargetID": 20427, + "Directional": true + }, { + "SourceID": 20439, + "TargetID": 20440, + "Directional": true + }] + }, { + "ID": 5899, + "SourceStructureID": 181, + "TargetStructureID": 3865, + "Label": "181-3865 via Ribbon Synapse from 20521 -> 132174, 33291 -> 36121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20521, + "TargetID": 132174, + "Directional": true + }, { + "SourceID": 33291, + "TargetID": 36121, + "Directional": true + }] + }, { + "ID": 5900, + "SourceStructureID": 181, + "TargetStructureID": 8575, + "Label": "181-8575 via BC Conventional Synapse from 62847 -> 62846", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62847, + "TargetID": 62846, + "Directional": true + }] + }, { + "ID": 5901, + "SourceStructureID": 181, + "TargetStructureID": 8575, + "Label": "181-8575 via Ribbon Synapse from 20520 -> 62258", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20520, + "TargetID": 62258, + "Directional": true + }] + }, { + "ID": 5902, + "SourceStructureID": 181, + "TargetStructureID": 12203, + "Label": "181-12203 via Ribbon Synapse from 12244 -> 12242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12244, + "TargetID": 12242, + "Directional": true + }] + }, { + "ID": 5903, + "SourceStructureID": 181, + "TargetStructureID": 31605, + "Label": "181-31605 via Ribbon Synapse from 31621 -> 31622", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31621, + "TargetID": 31622, + "Directional": true + }] + }, { + "ID": 5904, + "SourceStructureID": 181, + "TargetStructureID": 54622, + "Label": "181-54622 via BC Conventional Synapse from 55945 -> 55946", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55945, + "TargetID": 55946, + "Directional": true + }] + }, { + "ID": 5905, + "SourceStructureID": 181, + "TargetStructureID": 56211, + "Label": "181-56211 via Ribbon Synapse from 56232 -> 56231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56232, + "TargetID": 56231, + "Directional": true + }] + }, { + "ID": 5906, + "SourceStructureID": 181, + "TargetStructureID": 129648, + "Label": "181-129648 via Ribbon Synapse from 33291 -> 129649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33291, + "TargetID": 129649, + "Directional": true + }] + }, { + "ID": 5907, + "SourceStructureID": 181, + "TargetStructureID": 136432, + "Label": "181-136432 via Ribbon Synapse from 18410 -> 136542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18410, + "TargetID": 136542, + "Directional": true + }] + }, { + "ID": 5908, + "SourceStructureID": 184, + "TargetStructureID": 9260, + "Label": "184-9260 via Conventional from 30392 -> 30391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30392, + "TargetID": 30391, + "Directional": true + }] + }, { + "ID": 5909, + "SourceStructureID": 222, + "TargetStructureID": 8720, + "Label": "222-8720 via BC Conventional Synapse from 63144 -> 15318", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63144, + "TargetID": 15318, + "Directional": true + }] + }, { + "ID": 5910, + "SourceStructureID": 223, + "TargetStructureID": 380, + "Label": "223-380 via Conventional from 26532 -> 17876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 26532, + "TargetID": 17876, + "Directional": true + }] + }, { + "ID": 5911, + "SourceStructureID": 223, + "TargetStructureID": 5150, + "Label": "223-5150 via Conventional from 131213 -> 131212", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131213, + "TargetID": 131212, + "Directional": true + }] + }, { + "ID": 5912, + "SourceStructureID": 223, + "TargetStructureID": 6163, + "Label": "223-6163 via Conventional from 34935 -> 34936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34935, + "TargetID": 34936, + "Directional": true + }] + }, { + "ID": 5913, + "SourceStructureID": 223, + "TargetStructureID": 21874, + "Label": "223-21874 via Conventional from 47086 -> 47087", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47086, + "TargetID": 47087, + "Directional": true + }] + }, { + "ID": 5914, + "SourceStructureID": 260, + "TargetStructureID": 250, + "Label": "260-250 via Ribbon Synapse from 36184 -> 36185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36184, + "TargetID": 36185, + "Directional": true + }] + }, { + "ID": 5915, + "SourceStructureID": 268, + "TargetStructureID": 5117, + "Label": "268-5117 via Ribbon Synapse from 135192 -> 135193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135192, + "TargetID": 135193, + "Directional": true + }] + }, { + "ID": 5916, + "SourceStructureID": 269, + "TargetStructureID": 7468, + "Label": "269-7468 via Ribbon Synapse from 42464 -> 29064", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42464, + "TargetID": 29064, + "Directional": true + }] + }, { + "ID": 5917, + "SourceStructureID": 273, + "TargetStructureID": 352, + "Label": "273-352 via Ribbon Synapse from 31641 -> 31654, 39992 -> 39994, 64539 -> 31654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31641, + "TargetID": 31654, + "Directional": true + }, { + "SourceID": 39992, + "TargetID": 39994, + "Directional": true + }, { + "SourceID": 64539, + "TargetID": 31654, + "Directional": true + }] + }, { + "ID": 5918, + "SourceStructureID": 273, + "TargetStructureID": 7157, + "Label": "273-7157 via Ribbon Synapse from 26221 -> 26222, 26223 -> 26224, 31641 -> 31645, 31672 -> 31671, 87624 -> 26226, 87632 -> 26239, 87641 -> 87642, 87644 -> 87643, 87651 -> 87657, 87674 -> 87677", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26221, + "TargetID": 26222, + "Directional": true + }, { + "SourceID": 26223, + "TargetID": 26224, + "Directional": true + }, { + "SourceID": 31641, + "TargetID": 31645, + "Directional": true + }, { + "SourceID": 31672, + "TargetID": 31671, + "Directional": true + }, { + "SourceID": 87624, + "TargetID": 26226, + "Directional": true + }, { + "SourceID": 87632, + "TargetID": 26239, + "Directional": true + }, { + "SourceID": 87641, + "TargetID": 87642, + "Directional": true + }, { + "SourceID": 87644, + "TargetID": 87643, + "Directional": true + }, { + "SourceID": 87651, + "TargetID": 87657, + "Directional": true + }, { + "SourceID": 87674, + "TargetID": 87677, + "Directional": true + }] + }, { + "ID": 5919, + "SourceStructureID": 273, + "TargetStructureID": 87626, + "Label": "273-87626 via Ribbon Synapse from 87624 -> 87627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87624, + "TargetID": 87627, + "Directional": true + }] + }, { + "ID": 5920, + "SourceStructureID": 273, + "TargetStructureID": 87635, + "Label": "273-87635 via Ribbon Synapse from 87634 -> 87636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87634, + "TargetID": 87636, + "Directional": true + }] + }, { + "ID": 5921, + "SourceStructureID": 273, + "TargetStructureID": 87678, + "Label": "273-87678 via Ribbon Synapse from 87674 -> 87679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87674, + "TargetID": 87679, + "Directional": true + }] + }, { + "ID": 5922, + "SourceStructureID": 276, + "TargetStructureID": 284, + "Label": "276-284 via Ribbon Synapse from 29519 -> 29535, 29534 -> 29533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29519, + "TargetID": 29535, + "Directional": true + }, { + "SourceID": 29534, + "TargetID": 29533, + "Directional": true + }] + }, { + "ID": 5923, + "SourceStructureID": 276, + "TargetStructureID": 7157, + "Label": "276-7157 via Ribbon Synapse from 94910 -> 29518", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94910, + "TargetID": 29518, + "Directional": true + }] + }, { + "ID": 5924, + "SourceStructureID": 276, + "TargetStructureID": 31399, + "Label": "276-31399 via Ribbon Synapse from 31409 -> 31408", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31409, + "TargetID": 31408, + "Directional": true + }] + }, { + "ID": 5925, + "SourceStructureID": 277, + "TargetStructureID": 278, + "Label": "277-278 via BC Conventional Synapse from 60497 -> 60496", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60497, + "TargetID": 60496, + "Directional": true + }] + }, { + "ID": 5926, + "SourceStructureID": 277, + "TargetStructureID": 278, + "Label": "277-278 via Ribbon Synapse from 26072 -> 31728", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26072, + "TargetID": 31728, + "Directional": true + }] + }, { + "ID": 5927, + "SourceStructureID": 277, + "TargetStructureID": 606, + "Label": "277-606 via Ribbon Synapse from 26011 -> 49132, 26019 -> 52851, 26065 -> 52764, 52847 -> 52829", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26011, + "TargetID": 49132, + "Directional": true + }, { + "SourceID": 26019, + "TargetID": 52851, + "Directional": true + }, { + "SourceID": 26065, + "TargetID": 52764, + "Directional": true + }, { + "SourceID": 52847, + "TargetID": 52829, + "Directional": true + }] + }, { + "ID": 5928, + "SourceStructureID": 277, + "TargetStructureID": 7568, + "Label": "277-7568 via Ribbon Synapse from 26048 -> 27147", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26048, + "TargetID": 27147, + "Directional": true + }] + }, { + "ID": 5929, + "SourceStructureID": 277, + "TargetStructureID": 31679, + "Label": "277-31679 via Ribbon Synapse from 26412 -> 31692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26412, + "TargetID": 31692, + "Directional": true + }] + }, { + "ID": 5930, + "SourceStructureID": 277, + "TargetStructureID": 70924, + "Label": "277-70924 via Ribbon Synapse from 26045 -> 71033", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26045, + "TargetID": 71033, + "Directional": true + }] + }, { + "ID": 5931, + "SourceStructureID": 278, + "TargetStructureID": 276, + "Label": "278-276 via Conventional from 46038 -> 46039", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46038, + "TargetID": 46039, + "Directional": true + }] + }, { + "ID": 5932, + "SourceStructureID": 278, + "TargetStructureID": 334, + "Label": "278-334 via Conventional from 35486 -> 35487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35486, + "TargetID": 35487, + "Directional": true + }] + }, { + "ID": 5933, + "SourceStructureID": 278, + "TargetStructureID": 342, + "Label": "278-342 via Conventional from 31726 -> 31724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31726, + "TargetID": 31724, + "Directional": true + }] + }, { + "ID": 5934, + "SourceStructureID": 280, + "TargetStructureID": 284, + "Label": "280-284 via Ribbon Synapse from 32575 -> 32574", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32575, + "TargetID": 32574, + "Directional": true + }] + }, { + "ID": 5935, + "SourceStructureID": 280, + "TargetStructureID": 7157, + "Label": "280-7157 via Ribbon Synapse from 33590 -> 26265, 87686 -> 87691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33590, + "TargetID": 26265, + "Directional": true + }, { + "SourceID": 87686, + "TargetID": 87691, + "Directional": true + }] + }, { + "ID": 5936, + "SourceStructureID": 280, + "TargetStructureID": 33588, + "Label": "280-33588 via Ribbon Synapse from 33590 -> 33589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33590, + "TargetID": 33589, + "Directional": true + }] + }, { + "ID": 5937, + "SourceStructureID": 280, + "TargetStructureID": 115519, + "Label": "280-115519 via Ribbon Synapse from 115523 -> 115522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115523, + "TargetID": 115522, + "Directional": true + }] + }, { + "ID": 5938, + "SourceStructureID": 284, + "TargetStructureID": 605, + "Label": "284-605 via Conventional from 22516 -> 22517", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22516, + "TargetID": 22517, + "Directional": true + }] + }, { + "ID": 5939, + "SourceStructureID": 284, + "TargetStructureID": 5150, + "Label": "284-5150 via Conventional from 15425 -> 5261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15425, + "TargetID": 5261, + "Directional": true + }] + }, { + "ID": 5940, + "SourceStructureID": 284, + "TargetStructureID": 9787, + "Label": "284-9787 via Conventional from 12055 -> 9844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12055, + "TargetID": 9844, + "Directional": true + }] + }, { + "ID": 5941, + "SourceStructureID": 285, + "TargetStructureID": 284, + "Label": "285-284 via Ribbon Synapse from 95373 -> 95374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95373, + "TargetID": 95374, + "Directional": true + }] + }, { + "ID": 5942, + "SourceStructureID": 285, + "TargetStructureID": 20299, + "Label": "285-20299 via Ribbon Synapse from 20310 -> 20300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20310, + "TargetID": 20300, + "Directional": true + }] + }, { + "ID": 5943, + "SourceStructureID": 286, + "TargetStructureID": 4890, + "Label": "286-4890 via Ribbon Synapse from 20294 -> 20006, 20295 -> 20007, 20522 -> 20008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20294, + "TargetID": 20006, + "Directional": true + }, { + "SourceID": 20295, + "TargetID": 20007, + "Directional": true + }, { + "SourceID": 20522, + "TargetID": 20008, + "Directional": true + }] + }, { + "ID": 5944, + "SourceStructureID": 286, + "TargetStructureID": 5439, + "Label": "286-5439 via Ribbon Synapse from 85715 -> 85716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85715, + "TargetID": 85716, + "Directional": true + }] + }, { + "ID": 5945, + "SourceStructureID": 286, + "TargetStructureID": 8579, + "Label": "286-8579 via Ribbon Synapse from 20506 -> 62673", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20506, + "TargetID": 62673, + "Directional": true + }] + }, { + "ID": 5946, + "SourceStructureID": 286, + "TargetStructureID": 15796, + "Label": "286-15796 via BC Conventional Synapse from 121619 -> 121618", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121619, + "TargetID": 121618, + "Directional": true + }] + }, { + "ID": 5947, + "SourceStructureID": 286, + "TargetStructureID": 18282, + "Label": "286-18282 via Ribbon Synapse from 20506 -> 20502, 38860 -> 38851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20506, + "TargetID": 20502, + "Directional": true + }, { + "SourceID": 38860, + "TargetID": 38851, + "Directional": true + }] + }, { + "ID": 5948, + "SourceStructureID": 286, + "TargetStructureID": 20299, + "Label": "286-20299 via Ribbon Synapse from 27669 -> 45608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27669, + "TargetID": 45608, + "Directional": true + }] + }, { + "ID": 5949, + "SourceStructureID": 286, + "TargetStructureID": 20311, + "Label": "286-20311 via Ribbon Synapse from 100586 -> 100585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100586, + "TargetID": 100585, + "Directional": true + }] + }, { + "ID": 5950, + "SourceStructureID": 286, + "TargetStructureID": 32547, + "Label": "286-32547 via Ribbon Synapse from 26452 -> 99150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26452, + "TargetID": 99150, + "Directional": true + }] + }, { + "ID": 5951, + "SourceStructureID": 286, + "TargetStructureID": 33148, + "Label": "286-33148 via BC Conventional Synapse from 129128 -> 33158", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129128, + "TargetID": 33158, + "Directional": true + }] + }, { + "ID": 5952, + "SourceStructureID": 286, + "TargetStructureID": 34138, + "Label": "286-34138 via Ribbon Synapse from 34143 -> 34142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34143, + "TargetID": 34142, + "Directional": true + }] + }, { + "ID": 5953, + "SourceStructureID": 286, + "TargetStructureID": 34148, + "Label": "286-34148 via Ribbon Synapse from 26460 -> 38751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26460, + "TargetID": 38751, + "Directional": true + }] + }, { + "ID": 5954, + "SourceStructureID": 289, + "TargetStructureID": 606, + "Label": "289-606 via Conventional from 53204 -> 53203", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53204, + "TargetID": 53203, + "Directional": true + }] + }, { + "ID": 5955, + "SourceStructureID": 293, + "TargetStructureID": 284, + "Label": "293-284 via Ribbon Synapse from 14379 -> 17507, 17425 -> 17516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14379, + "TargetID": 17507, + "Directional": true + }, { + "SourceID": 17425, + "TargetID": 17516, + "Directional": true + }] + }, { + "ID": 5956, + "SourceStructureID": 293, + "TargetStructureID": 6153, + "Label": "293-6153 via Ribbon Synapse from 17424 -> 18167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17424, + "TargetID": 18167, + "Directional": true + }] + }, { + "ID": 5957, + "SourceStructureID": 294, + "TargetStructureID": 223, + "Label": "294-223 via Ribbon Synapse from 17399 -> 17400, 17406 -> 17417, 17873 -> 17874, 120618 -> 120622, 120619 -> 120623, 120620 -> 120625, 120621 -> 120624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17399, + "TargetID": 17400, + "Directional": true + }, { + "SourceID": 17406, + "TargetID": 17417, + "Directional": true + }, { + "SourceID": 17873, + "TargetID": 17874, + "Directional": true + }, { + "SourceID": 120618, + "TargetID": 120622, + "Directional": true + }, { + "SourceID": 120619, + "TargetID": 120623, + "Directional": true + }, { + "SourceID": 120620, + "TargetID": 120625, + "Directional": true + }, { + "SourceID": 120621, + "TargetID": 120624, + "Directional": true + }] + }, { + "ID": 5958, + "SourceStructureID": 294, + "TargetStructureID": 284, + "Label": "294-284 via Ribbon Synapse from 14352 -> 21567, 17406 -> 17522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14352, + "TargetID": 21567, + "Directional": true + }, { + "SourceID": 17406, + "TargetID": 17522, + "Directional": true + }] + }, { + "ID": 5959, + "SourceStructureID": 294, + "TargetStructureID": 410, + "Label": "294-410 via Ribbon Synapse from 16665 -> 16699, 17412 -> 17411, 17413 -> 17414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16665, + "TargetID": 16699, + "Directional": true + }, { + "SourceID": 17412, + "TargetID": 17411, + "Directional": true + }, { + "SourceID": 17413, + "TargetID": 17414, + "Directional": true + }] + }, { + "ID": 5960, + "SourceStructureID": 294, + "TargetStructureID": 4850, + "Label": "294-4850 via Ribbon Synapse from 17873 -> 22540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17873, + "TargetID": 22540, + "Directional": true + }] + }, { + "ID": 5961, + "SourceStructureID": 294, + "TargetStructureID": 6153, + "Label": "294-6153 via Ribbon Synapse from 16654 -> 16655, 16656 -> 16657, 16659 -> 16660, 16664 -> 16698, 16669 -> 16668, 16709 -> 16707, 17835 -> 17834", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16654, + "TargetID": 16655, + "Directional": true + }, { + "SourceID": 16656, + "TargetID": 16657, + "Directional": true + }, { + "SourceID": 16659, + "TargetID": 16660, + "Directional": true + }, { + "SourceID": 16664, + "TargetID": 16698, + "Directional": true + }, { + "SourceID": 16669, + "TargetID": 16668, + "Directional": true + }, { + "SourceID": 16709, + "TargetID": 16707, + "Directional": true + }, { + "SourceID": 17835, + "TargetID": 17834, + "Directional": true + }] + }, { + "ID": 5962, + "SourceStructureID": 294, + "TargetStructureID": 25688, + "Label": "294-25688 via Ribbon Synapse from 17413 -> 25701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17413, + "TargetID": 25701, + "Directional": true + }] + }, { + "ID": 5963, + "SourceStructureID": 298, + "TargetStructureID": 8720, + "Label": "298-8720 via Ribbon Synapse from 63500 -> 63499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63500, + "TargetID": 63499, + "Directional": true + }] + }, { + "ID": 5964, + "SourceStructureID": 299, + "TargetStructureID": 5107, + "Label": "299-5107 via Ribbon Synapse from 7218 -> 55355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7218, + "TargetID": 55355, + "Directional": true + }] + }, { + "ID": 5965, + "SourceStructureID": 299, + "TargetStructureID": 38735, + "Label": "299-38735 via Ribbon Synapse from 38739 -> 38738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38739, + "TargetID": 38738, + "Directional": true + }] + }, { + "ID": 5966, + "SourceStructureID": 299, + "TargetStructureID": 47013, + "Label": "299-47013 via Ribbon Synapse from 47074 -> 47070, 47075 -> 47069", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47074, + "TargetID": 47070, + "Directional": true + }, { + "SourceID": 47075, + "TargetID": 47069, + "Directional": true + }] + }, { + "ID": 5967, + "SourceStructureID": 299, + "TargetStructureID": 47095, + "Label": "299-47095 via Ribbon Synapse from 47096 -> 47097", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47096, + "TargetID": 47097, + "Directional": true + }] + }, { + "ID": 5968, + "SourceStructureID": 299, + "TargetStructureID": 47104, + "Label": "299-47104 via Ribbon Synapse from 47103 -> 47105", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47103, + "TargetID": 47105, + "Directional": true + }] + }, { + "ID": 5969, + "SourceStructureID": 299, + "TargetStructureID": 47109, + "Label": "299-47109 via Ribbon Synapse from 47103 -> 47111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47103, + "TargetID": 47111, + "Directional": true + }] + }, { + "ID": 5970, + "SourceStructureID": 304, + "TargetStructureID": 28913, + "Label": "304-28913 via Conventional from 129168 -> 28923, 129174 -> 28921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129168, + "TargetID": 28923, + "Directional": true + }, { + "SourceID": 129174, + "TargetID": 28921, + "Directional": true + }] + }, { + "ID": 5971, + "SourceStructureID": 304, + "TargetStructureID": 129181, + "Label": "304-129181 via Conventional from 129182 -> 129183", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129182, + "TargetID": 129183, + "Directional": true + }] + }, { + "ID": 5972, + "SourceStructureID": 307, + "TargetStructureID": 906, + "Label": "307-906 via Ribbon Synapse from 15973 -> 15903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15973, + "TargetID": 15903, + "Directional": true + }] + }, { + "ID": 5973, + "SourceStructureID": 307, + "TargetStructureID": 7594, + "Label": "307-7594 via Ribbon Synapse from 16591 -> 46860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16591, + "TargetID": 46860, + "Directional": true + }] + }, { + "ID": 5974, + "SourceStructureID": 307, + "TargetStructureID": 9769, + "Label": "307-9769 via Ribbon Synapse from 7257 -> 55107, 7281 -> 12356, 12335 -> 12332, 12337 -> 12338, 12357 -> 12358, 15954 -> 15955, 15975 -> 55153, 16362 -> 12330, 16364 -> 12326", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7257, + "TargetID": 55107, + "Directional": true + }, { + "SourceID": 7281, + "TargetID": 12356, + "Directional": true + }, { + "SourceID": 12335, + "TargetID": 12332, + "Directional": true + }, { + "SourceID": 12337, + "TargetID": 12338, + "Directional": true + }, { + "SourceID": 12357, + "TargetID": 12358, + "Directional": true + }, { + "SourceID": 15954, + "TargetID": 15955, + "Directional": true + }, { + "SourceID": 15975, + "TargetID": 55153, + "Directional": true + }, { + "SourceID": 16362, + "TargetID": 12330, + "Directional": true + }, { + "SourceID": 16364, + "TargetID": 12326, + "Directional": true + }] + }, { + "ID": 5975, + "SourceStructureID": 307, + "TargetStructureID": 32668, + "Label": "307-32668 via Ribbon Synapse from 7253 -> 32669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7253, + "TargetID": 32669, + "Directional": true + }] + }, { + "ID": 5976, + "SourceStructureID": 307, + "TargetStructureID": 38632, + "Label": "307-38632 via Ribbon Synapse from 68703 -> 68704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68703, + "TargetID": 68704, + "Directional": true + }] + }, { + "ID": 5977, + "SourceStructureID": 307, + "TargetStructureID": 45326, + "Label": "307-45326 via Ribbon Synapse from 7233 -> 45330, 7250 -> 45333, 7264 -> 45341, 7265 -> 45342", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7233, + "TargetID": 45330, + "Directional": true + }, { + "SourceID": 7250, + "TargetID": 45333, + "Directional": true + }, { + "SourceID": 7264, + "TargetID": 45341, + "Directional": true + }, { + "SourceID": 7265, + "TargetID": 45342, + "Directional": true + }] + }, { + "ID": 5978, + "SourceStructureID": 307, + "TargetStructureID": 45336, + "Label": "307-45336 via Ribbon Synapse from 7250 -> 45338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7250, + "TargetID": 45338, + "Directional": true + }] + }, { + "ID": 5979, + "SourceStructureID": 307, + "TargetStructureID": 45358, + "Label": "307-45358 via Ribbon Synapse from 7237 -> 45363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7237, + "TargetID": 45363, + "Directional": true + }] + }, { + "ID": 5980, + "SourceStructureID": 308, + "TargetStructureID": 422, + "Label": "308-422 via Conventional from 43339 -> 43340, 43341 -> 43342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43339, + "TargetID": 43340, + "Directional": true + }, { + "SourceID": 43341, + "TargetID": 43342, + "Directional": true + }] + }, { + "ID": 5981, + "SourceStructureID": 308, + "TargetStructureID": 2610, + "Label": "308-2610 via Conventional from 43590 -> 43591, 43760 -> 43761", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43590, + "TargetID": 43591, + "Directional": true + }, { + "SourceID": 43760, + "TargetID": 43761, + "Directional": true + }] + }, { + "ID": 5982, + "SourceStructureID": 308, + "TargetStructureID": 5017, + "Label": "308-5017 via Conventional from 42551 -> 42554, 42556 -> 42557, 42558 -> 42559, 42560 -> 42561, 86721 -> 86722", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42551, + "TargetID": 42554, + "Directional": true + }, { + "SourceID": 42556, + "TargetID": 42557, + "Directional": true + }, { + "SourceID": 42558, + "TargetID": 42559, + "Directional": true + }, { + "SourceID": 42560, + "TargetID": 42561, + "Directional": true + }, { + "SourceID": 86721, + "TargetID": 86722, + "Directional": true + }] + }, { + "ID": 5983, + "SourceStructureID": 308, + "TargetStructureID": 8749, + "Label": "308-8749 via Conventional from 42571 -> 8830, 42572 -> 42573, 43459 -> 8823, 43462 -> 8821, 43465 -> 43467, 43469 -> 43468, 43470 -> 8801, 43471 -> 43472, 86718 -> 86719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42571, + "TargetID": 8830, + "Directional": true + }, { + "SourceID": 42572, + "TargetID": 42573, + "Directional": true + }, { + "SourceID": 43459, + "TargetID": 8823, + "Directional": true + }, { + "SourceID": 43462, + "TargetID": 8821, + "Directional": true + }, { + "SourceID": 43465, + "TargetID": 43467, + "Directional": true + }, { + "SourceID": 43469, + "TargetID": 43468, + "Directional": true + }, { + "SourceID": 43470, + "TargetID": 8801, + "Directional": true + }, { + "SourceID": 43471, + "TargetID": 43472, + "Directional": true + }, { + "SourceID": 86718, + "TargetID": 86719, + "Directional": true + }] + }, { + "ID": 5984, + "SourceStructureID": 308, + "TargetStructureID": 10872, + "Label": "308-10872 via Conventional from 43774 -> 15055, 43775 -> 15058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43774, + "TargetID": 15055, + "Directional": true + }, { + "SourceID": 43775, + "TargetID": 15058, + "Directional": true + }] + }, { + "ID": 5985, + "SourceStructureID": 308, + "TargetStructureID": 11042, + "Label": "308-11042 via Conventional from 42696 -> 42701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42696, + "TargetID": 42701, + "Directional": true + }] + }, { + "ID": 5986, + "SourceStructureID": 308, + "TargetStructureID": 17228, + "Label": "308-17228 via Conventional from 43535 -> 43537, 43536 -> 43538", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43535, + "TargetID": 43537, + "Directional": true + }, { + "SourceID": 43536, + "TargetID": 43538, + "Directional": true + }] + }, { + "ID": 5987, + "SourceStructureID": 309, + "TargetStructureID": 223, + "Label": "309-223 via Ribbon Synapse from 120616 -> 120617", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120616, + "TargetID": 120617, + "Directional": true + }] + }, { + "ID": 5988, + "SourceStructureID": 309, + "TargetStructureID": 310, + "Label": "309-310 via Ribbon cluster from 122253 -> 21798", + "Type": "Ribbon cluster", + "Directional": true, + "Links": [{ + "SourceID": 122253, + "TargetID": 21798, + "Directional": true + }] + }, { + "ID": 5989, + "SourceStructureID": 309, + "TargetStructureID": 310, + "Label": "309-310 via Ribbon Synapse from 6676 -> 21798, 13221 -> 21799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6676, + "TargetID": 21798, + "Directional": true + }, { + "SourceID": 13221, + "TargetID": 21799, + "Directional": true + }] + }, { + "ID": 5990, + "SourceStructureID": 309, + "TargetStructureID": 525, + "Label": "309-525 via Ribbon Synapse from 13239 -> 6270", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13239, + "TargetID": 6270, + "Directional": true + }] + }, { + "ID": 5991, + "SourceStructureID": 309, + "TargetStructureID": 5118, + "Label": "309-5118 via Ribbon Synapse from 13387 -> 6545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13387, + "TargetID": 6545, + "Directional": true + }] + }, { + "ID": 5992, + "SourceStructureID": 309, + "TargetStructureID": 18282, + "Label": "309-18282 via Ribbon Synapse from 13343 -> 20330", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13343, + "TargetID": 20330, + "Directional": true + }] + }, { + "ID": 5993, + "SourceStructureID": 309, + "TargetStructureID": 25440, + "Label": "309-25440 via Ribbon Synapse from 13331 -> 25463", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13331, + "TargetID": 25463, + "Directional": true + }] + }, { + "ID": 5994, + "SourceStructureID": 309, + "TargetStructureID": 37288, + "Label": "309-37288 via Ribbon Synapse from 13246 -> 37371, 13255 -> 37369, 13265 -> 37385, 13309 -> 37356, 28697 -> 37370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13246, + "TargetID": 37371, + "Directional": true + }, { + "SourceID": 13255, + "TargetID": 37369, + "Directional": true + }, { + "SourceID": 13265, + "TargetID": 37385, + "Directional": true + }, { + "SourceID": 13309, + "TargetID": 37356, + "Directional": true + }, { + "SourceID": 28697, + "TargetID": 37370, + "Directional": true + }] + }, { + "ID": 5995, + "SourceStructureID": 309, + "TargetStructureID": 121541, + "Label": "309-121541 via Ribbon Synapse from 13306 -> 121542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13306, + "TargetID": 121542, + "Directional": true + }] + }, { + "ID": 5996, + "SourceStructureID": 311, + "TargetStructureID": 69537, + "Label": "311-69537 via Ribbon Synapse from 69572 -> 69571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69572, + "TargetID": 69571, + "Directional": true + }] + }, { + "ID": 5997, + "SourceStructureID": 318, + "TargetStructureID": 483, + "Label": "318-483 via Conventional from 102686 -> 6757", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102686, + "TargetID": 6757, + "Directional": true + }] + }, { + "ID": 5998, + "SourceStructureID": 321, + "TargetStructureID": 288, + "Label": "321-288 via Cistern Pre from 38808 -> 38809", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 38808, + "TargetID": 38809, + "Directional": true + }] + }, { + "ID": 5999, + "SourceStructureID": 321, + "TargetStructureID": 9769, + "Label": "321-9769 via Ribbon Synapse from 30094 -> 30091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30094, + "TargetID": 30091, + "Directional": true + }] + }, { + "ID": 6000, + "SourceStructureID": 321, + "TargetStructureID": 32566, + "Label": "321-32566 via Ribbon Synapse from 99154 -> 99151", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99154, + "TargetID": 99151, + "Directional": true + }] + }, { + "ID": 6001, + "SourceStructureID": 321, + "TargetStructureID": 70924, + "Label": "321-70924 via Ribbon Synapse from 122217 -> 122216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122217, + "TargetID": 122216, + "Directional": true + }] + }, { + "ID": 6002, + "SourceStructureID": 321, + "TargetStructureID": 71882, + "Label": "321-71882 via Ribbon Synapse from 90239 -> 90236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90239, + "TargetID": 90236, + "Directional": true + }] + }, { + "ID": 6003, + "SourceStructureID": 321, + "TargetStructureID": 90151, + "Label": "321-90151 via Ribbon Synapse from 65949 -> 90158", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65949, + "TargetID": 90158, + "Directional": true + }] + }, { + "ID": 6004, + "SourceStructureID": 324, + "TargetStructureID": 606, + "Label": "324-606 via Ribbon Synapse from 12381 -> 53072, 30744 -> 53080, 50893 -> 53282, 52391 -> 52392, 53056 -> 53055, 53062 -> 53061, 53086 -> 53087, 53158 -> 53159, 53160 -> 53161, 53261 -> 53262, 53271 -> 53270, 53280 -> 53285, 53289 -> 53290, 53301 -> 53302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12381, + "TargetID": 53072, + "Directional": true + }, { + "SourceID": 30744, + "TargetID": 53080, + "Directional": true + }, { + "SourceID": 50893, + "TargetID": 53282, + "Directional": true + }, { + "SourceID": 52391, + "TargetID": 52392, + "Directional": true + }, { + "SourceID": 53056, + "TargetID": 53055, + "Directional": true + }, { + "SourceID": 53062, + "TargetID": 53061, + "Directional": true + }, { + "SourceID": 53086, + "TargetID": 53087, + "Directional": true + }, { + "SourceID": 53158, + "TargetID": 53159, + "Directional": true + }, { + "SourceID": 53160, + "TargetID": 53161, + "Directional": true + }, { + "SourceID": 53261, + "TargetID": 53262, + "Directional": true + }, { + "SourceID": 53271, + "TargetID": 53270, + "Directional": true + }, { + "SourceID": 53280, + "TargetID": 53285, + "Directional": true + }, { + "SourceID": 53289, + "TargetID": 53290, + "Directional": true + }, { + "SourceID": 53301, + "TargetID": 53302, + "Directional": true + }] + }, { + "ID": 6005, + "SourceStructureID": 324, + "TargetStructureID": 9769, + "Label": "324-9769 via Ribbon Synapse from 12369 -> 12367, 12381 -> 12375, 12383 -> 12384, 12385 -> 12386, 12387 -> 12388, 12572 -> 12390, 30744 -> 53081, 52391 -> 12371, 120594 -> 120595", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12369, + "TargetID": 12367, + "Directional": true + }, { + "SourceID": 12381, + "TargetID": 12375, + "Directional": true + }, { + "SourceID": 12383, + "TargetID": 12384, + "Directional": true + }, { + "SourceID": 12385, + "TargetID": 12386, + "Directional": true + }, { + "SourceID": 12387, + "TargetID": 12388, + "Directional": true + }, { + "SourceID": 12572, + "TargetID": 12390, + "Directional": true + }, { + "SourceID": 30744, + "TargetID": 53081, + "Directional": true + }, { + "SourceID": 52391, + "TargetID": 12371, + "Directional": true + }, { + "SourceID": 120594, + "TargetID": 120595, + "Directional": true + }] + }, { + "ID": 6006, + "SourceStructureID": 324, + "TargetStructureID": 20311, + "Label": "324-20311 via Ribbon Synapse from 30740 -> 100601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30740, + "TargetID": 100601, + "Directional": true + }] + }, { + "ID": 6007, + "SourceStructureID": 324, + "TargetStructureID": 32581, + "Label": "324-32581 via Ribbon Synapse from 32596 -> 32594", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32596, + "TargetID": 32594, + "Directional": true + }] + }, { + "ID": 6008, + "SourceStructureID": 324, + "TargetStructureID": 34494, + "Label": "324-34494 via Ribbon Synapse from 35173 -> 35172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35173, + "TargetID": 35172, + "Directional": true + }] + }, { + "ID": 6009, + "SourceStructureID": 324, + "TargetStructureID": 38632, + "Label": "324-38632 via Ribbon Synapse from 30724 -> 38661, 30726 -> 38660, 30728 -> 38663, 30731 -> 38658, 30733 -> 38653, 30734 -> 38650, 30735 -> 38648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30724, + "TargetID": 38661, + "Directional": true + }, { + "SourceID": 30726, + "TargetID": 38660, + "Directional": true + }, { + "SourceID": 30728, + "TargetID": 38663, + "Directional": true + }, { + "SourceID": 30731, + "TargetID": 38658, + "Directional": true + }, { + "SourceID": 30733, + "TargetID": 38653, + "Directional": true + }, { + "SourceID": 30734, + "TargetID": 38650, + "Directional": true + }, { + "SourceID": 30735, + "TargetID": 38648, + "Directional": true + }] + }, { + "ID": 6010, + "SourceStructureID": 324, + "TargetStructureID": 50982, + "Label": "324-50982 via Ribbon Synapse from 52383 -> 52384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52383, + "TargetID": 52384, + "Directional": true + }] + }, { + "ID": 6011, + "SourceStructureID": 324, + "TargetStructureID": 55403, + "Label": "324-55403 via Ribbon Synapse from 43562 -> 55452, 53271 -> 55406, 55416 -> 55417, 55434 -> 55433", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43562, + "TargetID": 55452, + "Directional": true + }, { + "SourceID": 53271, + "TargetID": 55406, + "Directional": true + }, { + "SourceID": 55416, + "TargetID": 55417, + "Directional": true + }, { + "SourceID": 55434, + "TargetID": 55433, + "Directional": true + }] + }, { + "ID": 6012, + "SourceStructureID": 324, + "TargetStructureID": 55517, + "Label": "324-55517 via Ribbon Synapse from 53261 -> 55525, 53301 -> 55520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53261, + "TargetID": 55525, + "Directional": true + }, { + "SourceID": 53301, + "TargetID": 55520, + "Directional": true + }] + }, { + "ID": 6013, + "SourceStructureID": 324, + "TargetStructureID": 71882, + "Label": "324-71882 via Ribbon Synapse from 90354 -> 90345", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90354, + "TargetID": 90345, + "Directional": true + }] + }, { + "ID": 6014, + "SourceStructureID": 324, + "TargetStructureID": 83385, + "Label": "324-83385 via Ribbon Synapse from 83398 -> 83438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83398, + "TargetID": 83438, + "Directional": true + }] + }, { + "ID": 6015, + "SourceStructureID": 324, + "TargetStructureID": 83409, + "Label": "324-83409 via Ribbon Synapse from 83405 -> 83442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83405, + "TargetID": 83442, + "Directional": true + }] + }, { + "ID": 6016, + "SourceStructureID": 324, + "TargetStructureID": 83421, + "Label": "324-83421 via BC Conventional Synapse from 83447 -> 83446", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83447, + "TargetID": 83446, + "Directional": true + }] + }, { + "ID": 6017, + "SourceStructureID": 324, + "TargetStructureID": 83425, + "Label": "324-83425 via Ribbon Synapse from 83424 -> 83426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83424, + "TargetID": 83426, + "Directional": true + }] + }, { + "ID": 6018, + "SourceStructureID": 324, + "TargetStructureID": 83430, + "Label": "324-83430 via Ribbon Synapse from 83597 -> 83598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83597, + "TargetID": 83598, + "Directional": true + }] + }, { + "ID": 6019, + "SourceStructureID": 324, + "TargetStructureID": 83439, + "Label": "324-83439 via Ribbon Synapse from 83402 -> 83440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83402, + "TargetID": 83440, + "Directional": true + }] + }, { + "ID": 6020, + "SourceStructureID": 324, + "TargetStructureID": 83482, + "Label": "324-83482 via Ribbon Synapse from 83481 -> 83485", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83481, + "TargetID": 83485, + "Directional": true + }] + }, { + "ID": 6021, + "SourceStructureID": 324, + "TargetStructureID": 83487, + "Label": "324-83487 via Ribbon Synapse from 83481 -> 96962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83481, + "TargetID": 96962, + "Directional": true + }] + }, { + "ID": 6022, + "SourceStructureID": 324, + "TargetStructureID": 83535, + "Label": "324-83535 via Ribbon Synapse from 83384 -> 83536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83384, + "TargetID": 83536, + "Directional": true + }] + }, { + "ID": 6023, + "SourceStructureID": 324, + "TargetStructureID": 83540, + "Label": "324-83540 via Ribbon Synapse from 83539 -> 83543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83539, + "TargetID": 83543, + "Directional": true + }] + }, { + "ID": 6024, + "SourceStructureID": 324, + "TargetStructureID": 83541, + "Label": "324-83541 via Ribbon Synapse from 83539 -> 83542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83539, + "TargetID": 83542, + "Directional": true + }] + }, { + "ID": 6025, + "SourceStructureID": 324, + "TargetStructureID": 83545, + "Label": "324-83545 via Ribbon Synapse from 83544 -> 96551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83544, + "TargetID": 96551, + "Directional": true + }] + }, { + "ID": 6026, + "SourceStructureID": 324, + "TargetStructureID": 83550, + "Label": "324-83550 via Ribbon Synapse from 83544 -> 83551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83544, + "TargetID": 83551, + "Directional": true + }] + }, { + "ID": 6027, + "SourceStructureID": 324, + "TargetStructureID": 83552, + "Label": "324-83552 via Ribbon Synapse from 83544 -> 83553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83544, + "TargetID": 83553, + "Directional": true + }] + }, { + "ID": 6028, + "SourceStructureID": 324, + "TargetStructureID": 83554, + "Label": "324-83554 via Ribbon Synapse from 83544 -> 83555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83544, + "TargetID": 83555, + "Directional": true + }] + }, { + "ID": 6029, + "SourceStructureID": 324, + "TargetStructureID": 83590, + "Label": "324-83590 via Ribbon Synapse from 83568 -> 83593", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83568, + "TargetID": 83593, + "Directional": true + }] + }, { + "ID": 6030, + "SourceStructureID": 324, + "TargetStructureID": 83591, + "Label": "324-83591 via Ribbon Synapse from 83568 -> 83592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83568, + "TargetID": 83592, + "Directional": true + }] + }, { + "ID": 6031, + "SourceStructureID": 324, + "TargetStructureID": 93779, + "Label": "324-93779 via BC Conventional Synapse from 122108 -> 122107", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122108, + "TargetID": 122107, + "Directional": true + }] + }, { + "ID": 6032, + "SourceStructureID": 325, + "TargetStructureID": 6153, + "Label": "325-6153 via Ribbon Synapse from 8173 -> 10739", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8173, + "TargetID": 10739, + "Directional": true + }] + }, { + "ID": 6033, + "SourceStructureID": 325, + "TargetStructureID": 29198, + "Label": "325-29198 via Ribbon Synapse from 29205 -> 29203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29205, + "TargetID": 29203, + "Directional": true + }] + }, { + "ID": 6034, + "SourceStructureID": 325, + "TargetStructureID": 30379, + "Label": "325-30379 via Ribbon Synapse from 29204 -> 30380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29204, + "TargetID": 30380, + "Directional": true + }] + }, { + "ID": 6035, + "SourceStructureID": 327, + "TargetStructureID": 5107, + "Label": "327-5107 via Ribbon Synapse from 23037 -> 23036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23037, + "TargetID": 23036, + "Directional": true + }] + }, { + "ID": 6036, + "SourceStructureID": 327, + "TargetStructureID": 5481, + "Label": "327-5481 via Ribbon Synapse from 14283 -> 90179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14283, + "TargetID": 90179, + "Directional": true + }] + }, { + "ID": 6037, + "SourceStructureID": 327, + "TargetStructureID": 7568, + "Label": "327-7568 via Ribbon Synapse from 27138 -> 27119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27138, + "TargetID": 27119, + "Directional": true + }] + }, { + "ID": 6038, + "SourceStructureID": 327, + "TargetStructureID": 8575, + "Label": "327-8575 via BC Conventional Synapse from 14238 -> 55281", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14238, + "TargetID": 55281, + "Directional": true + }] + }, { + "ID": 6039, + "SourceStructureID": 327, + "TargetStructureID": 9769, + "Label": "327-9769 via Ribbon Synapse from 12394 -> 12393, 31685 -> 31686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12394, + "TargetID": 12393, + "Directional": true + }, { + "SourceID": 31685, + "TargetID": 31686, + "Directional": true + }] + }, { + "ID": 6040, + "SourceStructureID": 327, + "TargetStructureID": 12564, + "Label": "327-12564 via Ribbon Synapse from 55629 -> 55628", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55629, + "TargetID": 55628, + "Directional": true + }] + }, { + "ID": 6041, + "SourceStructureID": 327, + "TargetStructureID": 32566, + "Label": "327-32566 via BC Conventional Synapse from 14308 -> 32568", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14308, + "TargetID": 32568, + "Directional": true + }] + }, { + "ID": 6042, + "SourceStructureID": 327, + "TargetStructureID": 34055, + "Label": "327-34055 via Ribbon Synapse from 122146 -> 34060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122146, + "TargetID": 34060, + "Directional": true + }] + }, { + "ID": 6043, + "SourceStructureID": 327, + "TargetStructureID": 55201, + "Label": "327-55201 via Ribbon Synapse from 14283 -> 55207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14283, + "TargetID": 55207, + "Directional": true + }] + }, { + "ID": 6044, + "SourceStructureID": 328, + "TargetStructureID": 284, + "Label": "328-284 via Ribbon Synapse from 29522 -> 29521, 31678 -> 12054", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29522, + "TargetID": 29521, + "Directional": true + }, { + "SourceID": 31678, + "TargetID": 12054, + "Directional": true + }] + }, { + "ID": 6045, + "SourceStructureID": 328, + "TargetStructureID": 6153, + "Label": "328-6153 via Ribbon Synapse from 33512 -> 37292, 33514 -> 37291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33512, + "TargetID": 37292, + "Directional": true + }, { + "SourceID": 33514, + "TargetID": 37291, + "Directional": true + }] + }, { + "ID": 6046, + "SourceStructureID": 328, + "TargetStructureID": 7157, + "Label": "328-7157 via Ribbon Synapse from 29517 -> 29516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29517, + "TargetID": 29516, + "Directional": true + }] + }, { + "ID": 6047, + "SourceStructureID": 328, + "TargetStructureID": 30370, + "Label": "328-30370 via Ribbon Synapse from 30365 -> 30374, 30367 -> 30375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30365, + "TargetID": 30374, + "Directional": true + }, { + "SourceID": 30367, + "TargetID": 30375, + "Directional": true + }] + }, { + "ID": 6048, + "SourceStructureID": 330, + "TargetStructureID": 606, + "Label": "330-606 via Ribbon Synapse from 12351 -> 12349, 25934 -> 49178, 25939 -> 52927, 25944 -> 52976, 25945 -> 52988, 25950 -> 53043, 25952 -> 53038, 25977 -> 49153, 26103 -> 52789, 26118 -> 49025, 26124 -> 9798, 26131 -> 52711, 26164 -> 53143, 26181 -> 52601, 52614 -> 52613, 52649 -> 52648, 52760 -> 52761, 52809 -> 52810, 53053 -> 53052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12351, + "TargetID": 12349, + "Directional": true + }, { + "SourceID": 25934, + "TargetID": 49178, + "Directional": true + }, { + "SourceID": 25939, + "TargetID": 52927, + "Directional": true + }, { + "SourceID": 25944, + "TargetID": 52976, + "Directional": true + }, { + "SourceID": 25945, + "TargetID": 52988, + "Directional": true + }, { + "SourceID": 25950, + "TargetID": 53043, + "Directional": true + }, { + "SourceID": 25952, + "TargetID": 53038, + "Directional": true + }, { + "SourceID": 25977, + "TargetID": 49153, + "Directional": true + }, { + "SourceID": 26103, + "TargetID": 52789, + "Directional": true + }, { + "SourceID": 26118, + "TargetID": 49025, + "Directional": true + }, { + "SourceID": 26124, + "TargetID": 9798, + "Directional": true + }, { + "SourceID": 26131, + "TargetID": 52711, + "Directional": true + }, { + "SourceID": 26164, + "TargetID": 53143, + "Directional": true + }, { + "SourceID": 26181, + "TargetID": 52601, + "Directional": true + }, { + "SourceID": 52614, + "TargetID": 52613, + "Directional": true + }, { + "SourceID": 52649, + "TargetID": 52648, + "Directional": true + }, { + "SourceID": 52760, + "TargetID": 52761, + "Directional": true + }, { + "SourceID": 52809, + "TargetID": 52810, + "Directional": true + }, { + "SourceID": 53053, + "TargetID": 53052, + "Directional": true + }] + }, { + "ID": 6049, + "SourceStructureID": 330, + "TargetStructureID": 9769, + "Label": "330-9769 via Ribbon Synapse from 25945 -> 53027, 54637 -> 55283, 122143 -> 122145, 122144 -> 122145", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25945, + "TargetID": 53027, + "Directional": true + }, { + "SourceID": 54637, + "TargetID": 55283, + "Directional": true + }, { + "SourceID": 122143, + "TargetID": 122145, + "Directional": true + }, { + "SourceID": 122144, + "TargetID": 122145, + "Directional": true + }] + }, { + "ID": 6050, + "SourceStructureID": 330, + "TargetStructureID": 12408, + "Label": "330-12408 via Ribbon Synapse from 12426 -> 12420, 52809 -> 52811, 54637 -> 55282", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12426, + "TargetID": 12420, + "Directional": true + }, { + "SourceID": 52809, + "TargetID": 52811, + "Directional": true + }, { + "SourceID": 54637, + "TargetID": 55282, + "Directional": true + }] + }, { + "ID": 6051, + "SourceStructureID": 330, + "TargetStructureID": 31679, + "Label": "330-31679 via Ribbon Synapse from 25951 -> 31682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25951, + "TargetID": 31682, + "Directional": true + }] + }, { + "ID": 6052, + "SourceStructureID": 330, + "TargetStructureID": 34055, + "Label": "330-34055 via Ribbon Synapse from 25773 -> 34069, 26174 -> 34285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25773, + "TargetID": 34069, + "Directional": true + }, { + "SourceID": 26174, + "TargetID": 34285, + "Directional": true + }] + }, { + "ID": 6053, + "SourceStructureID": 330, + "TargetStructureID": 34270, + "Label": "330-34270 via Ribbon Synapse from 26154 -> 34278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26154, + "TargetID": 34278, + "Directional": true + }] + }, { + "ID": 6054, + "SourceStructureID": 330, + "TargetStructureID": 38632, + "Label": "330-38632 via Ribbon Synapse from 26087 -> 38679, 26147 -> 38671, 26156 -> 38670, 26163 -> 38666, 38691 -> 38689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26087, + "TargetID": 38679, + "Directional": true + }, { + "SourceID": 26147, + "TargetID": 38671, + "Directional": true + }, { + "SourceID": 26156, + "TargetID": 38670, + "Directional": true + }, { + "SourceID": 26163, + "TargetID": 38666, + "Directional": true + }, { + "SourceID": 38691, + "TargetID": 38689, + "Directional": true + }] + }, { + "ID": 6055, + "SourceStructureID": 330, + "TargetStructureID": 38703, + "Label": "330-38703 via Ribbon Synapse from 25767 -> 38706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25767, + "TargetID": 38706, + "Directional": true + }] + }, { + "ID": 6056, + "SourceStructureID": 330, + "TargetStructureID": 89989, + "Label": "330-89989 via Ribbon Synapse from 26131 -> 89991", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26131, + "TargetID": 89991, + "Directional": true + }] + }, { + "ID": 6057, + "SourceStructureID": 330, + "TargetStructureID": 119008, + "Label": "330-119008 via Ribbon Synapse from 119005 -> 119012", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119005, + "TargetID": 119012, + "Directional": true + }] + }, { + "ID": 6058, + "SourceStructureID": 330, + "TargetStructureID": 147696, + "Label": "330-147696 via Ribbon Synapse from 147748 -> 147747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147748, + "TargetID": 147747, + "Directional": true + }] + }, { + "ID": 6059, + "SourceStructureID": 332, + "TargetStructureID": 4890, + "Label": "332-4890 via Ribbon Synapse from 96582 -> 96583", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96582, + "TargetID": 96583, + "Directional": true + }] + }, { + "ID": 6060, + "SourceStructureID": 332, + "TargetStructureID": 5117, + "Label": "332-5117 via Ribbon Synapse from 82147 -> 135205, 135204 -> 135203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82147, + "TargetID": 135205, + "Directional": true + }, { + "SourceID": 135204, + "TargetID": 135203, + "Directional": true + }] + }, { + "ID": 6061, + "SourceStructureID": 332, + "TargetStructureID": 5410, + "Label": "332-5410 via BC Conventional Synapse from 96531 -> 96532", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96531, + "TargetID": 96532, + "Directional": true + }] + }, { + "ID": 6062, + "SourceStructureID": 332, + "TargetStructureID": 5439, + "Label": "332-5439 via BC Conventional Synapse from 85689 -> 85687", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85689, + "TargetID": 85687, + "Directional": true + }] + }, { + "ID": 6063, + "SourceStructureID": 332, + "TargetStructureID": 18282, + "Label": "332-18282 via Ribbon Synapse from 25217 -> 38863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25217, + "TargetID": 38863, + "Directional": true + }] + }, { + "ID": 6064, + "SourceStructureID": 332, + "TargetStructureID": 31804, + "Label": "332-31804 via BC Conventional Synapse from 31812 -> 31811", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31812, + "TargetID": 31811, + "Directional": true + }] + }, { + "ID": 6065, + "SourceStructureID": 332, + "TargetStructureID": 33161, + "Label": "332-33161 via Ribbon Synapse from 33184 -> 33179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33184, + "TargetID": 33179, + "Directional": true + }] + }, { + "ID": 6066, + "SourceStructureID": 332, + "TargetStructureID": 34259, + "Label": "332-34259 via Ribbon Synapse from 127761 -> 127760", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127761, + "TargetID": 127760, + "Directional": true + }] + }, { + "ID": 6067, + "SourceStructureID": 332, + "TargetStructureID": 35103, + "Label": "332-35103 via Ribbon Synapse from 25219 -> 35109", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25219, + "TargetID": 35109, + "Directional": true + }] + }, { + "ID": 6068, + "SourceStructureID": 332, + "TargetStructureID": 35167, + "Label": "332-35167 via Ribbon Synapse from 35171 -> 35168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35171, + "TargetID": 35168, + "Directional": true + }] + }, { + "ID": 6069, + "SourceStructureID": 332, + "TargetStructureID": 38727, + "Label": "332-38727 via Ribbon Synapse from 38734 -> 38733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38734, + "TargetID": 38733, + "Directional": true + }] + }, { + "ID": 6070, + "SourceStructureID": 332, + "TargetStructureID": 41474, + "Label": "332-41474 via BC Conventional Synapse from 55944 -> 55943", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55944, + "TargetID": 55943, + "Directional": true + }] + }, { + "ID": 6071, + "SourceStructureID": 332, + "TargetStructureID": 95013, + "Label": "332-95013 via BC Conventional Synapse from 95014 -> 95015", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95014, + "TargetID": 95015, + "Directional": true + }] + }, { + "ID": 6072, + "SourceStructureID": 332, + "TargetStructureID": 96487, + "Label": "332-96487 via BC Conventional Synapse from 97255 -> 97254", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97255, + "TargetID": 97254, + "Directional": true + }] + }, { + "ID": 6073, + "SourceStructureID": 332, + "TargetStructureID": 96499, + "Label": "332-96499 via Ribbon Synapse from 96475 -> 96500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96475, + "TargetID": 96500, + "Directional": true + }] + }, { + "ID": 6074, + "SourceStructureID": 332, + "TargetStructureID": 96503, + "Label": "332-96503 via Ribbon Synapse from 96475 -> 96504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96475, + "TargetID": 96504, + "Directional": true + }] + }, { + "ID": 6075, + "SourceStructureID": 332, + "TargetStructureID": 96516, + "Label": "332-96516 via Ribbon Synapse from 94873 -> 96521, 94876 -> 96520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94873, + "TargetID": 96521, + "Directional": true + }, { + "SourceID": 94876, + "TargetID": 96520, + "Directional": true + }] + }, { + "ID": 6076, + "SourceStructureID": 332, + "TargetStructureID": 96522, + "Label": "332-96522 via Ribbon Synapse from 94873 -> 96525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94873, + "TargetID": 96525, + "Directional": true + }] + }, { + "ID": 6077, + "SourceStructureID": 332, + "TargetStructureID": 96547, + "Label": "332-96547 via BC Conventional Synapse from 97398 -> 96548", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97398, + "TargetID": 96548, + "Directional": true + }] + }, { + "ID": 6078, + "SourceStructureID": 332, + "TargetStructureID": 96547, + "Label": "332-96547 via Ribbon Synapse from 95045 -> 96548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95045, + "TargetID": 96548, + "Directional": true + }] + }, { + "ID": 6079, + "SourceStructureID": 332, + "TargetStructureID": 96550, + "Label": "332-96550 via Ribbon Synapse from 96549 -> 96552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96549, + "TargetID": 96552, + "Directional": true + }] + }, { + "ID": 6080, + "SourceStructureID": 332, + "TargetStructureID": 96554, + "Label": "332-96554 via Ribbon Synapse from 95044 -> 96557", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95044, + "TargetID": 96557, + "Directional": true + }] + }, { + "ID": 6081, + "SourceStructureID": 332, + "TargetStructureID": 96555, + "Label": "332-96555 via Ribbon Synapse from 95044 -> 96556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95044, + "TargetID": 96556, + "Directional": true + }] + }, { + "ID": 6082, + "SourceStructureID": 332, + "TargetStructureID": 96568, + "Label": "332-96568 via BC Conventional Synapse from 96567 -> 96569", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96567, + "TargetID": 96569, + "Directional": true + }] + }, { + "ID": 6083, + "SourceStructureID": 334, + "TargetStructureID": 7157, + "Label": "334-7157 via Ribbon Synapse from 26196 -> 26197, 26207 -> 26208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26196, + "TargetID": 26197, + "Directional": true + }, { + "SourceID": 26207, + "TargetID": 26208, + "Directional": true + }] + }, { + "ID": 6084, + "SourceStructureID": 334, + "TargetStructureID": 7468, + "Label": "334-7468 via Ribbon Synapse from 31757 -> 31755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31757, + "TargetID": 31755, + "Directional": true + }] + }, { + "ID": 6085, + "SourceStructureID": 334, + "TargetStructureID": 32681, + "Label": "334-32681 via Ribbon Synapse from 64571 -> 64577", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64571, + "TargetID": 64577, + "Directional": true + }] + }, { + "ID": 6086, + "SourceStructureID": 335, + "TargetStructureID": 606, + "Label": "335-606 via BC Conventional Synapse from 52683 -> 52681", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52683, + "TargetID": 52681, + "Directional": true + }] + }, { + "ID": 6087, + "SourceStructureID": 335, + "TargetStructureID": 606, + "Label": "335-606 via Ribbon Synapse from 10063 -> 9795, 49129 -> 49130, 49151 -> 49150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10063, + "TargetID": 9795, + "Directional": true + }, { + "SourceID": 49129, + "TargetID": 49130, + "Directional": true + }, { + "SourceID": 49151, + "TargetID": 49150, + "Directional": true + }] + }, { + "ID": 6088, + "SourceStructureID": 335, + "TargetStructureID": 9769, + "Label": "335-9769 via Ribbon Synapse from 12407 -> 12404, 30085 -> 30086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12407, + "TargetID": 12404, + "Directional": true + }, { + "SourceID": 30085, + "TargetID": 30086, + "Directional": true + }] + }, { + "ID": 6089, + "SourceStructureID": 335, + "TargetStructureID": 31694, + "Label": "335-31694 via Ribbon Synapse from 34134 -> 34131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34134, + "TargetID": 34131, + "Directional": true + }] + }, { + "ID": 6090, + "SourceStructureID": 335, + "TargetStructureID": 38703, + "Label": "335-38703 via Ribbon Synapse from 38708 -> 38707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38708, + "TargetID": 38707, + "Directional": true + }] + }, { + "ID": 6091, + "SourceStructureID": 335, + "TargetStructureID": 55304, + "Label": "335-55304 via Ribbon Synapse from 12407 -> 55306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12407, + "TargetID": 55306, + "Directional": true + }] + }, { + "ID": 6092, + "SourceStructureID": 335, + "TargetStructureID": 70924, + "Label": "335-70924 via Ribbon Synapse from 13635 -> 70960", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13635, + "TargetID": 70960, + "Directional": true + }] + }, { + "ID": 6093, + "SourceStructureID": 335, + "TargetStructureID": 70987, + "Label": "335-70987 via Ribbon Synapse from 34132 -> 71027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34132, + "TargetID": 71027, + "Directional": true + }] + }, { + "ID": 6094, + "SourceStructureID": 335, + "TargetStructureID": 89851, + "Label": "335-89851 via Ribbon Synapse from 33444 -> 89865, 33445 -> 89903, 89884 -> 89896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33444, + "TargetID": 89865, + "Directional": true + }, { + "SourceID": 33445, + "TargetID": 89903, + "Directional": true + }, { + "SourceID": 89884, + "TargetID": 89896, + "Directional": true + }] + }, { + "ID": 6095, + "SourceStructureID": 335, + "TargetStructureID": 89898, + "Label": "335-89898 via Ribbon Synapse from 33445 -> 89901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33445, + "TargetID": 89901, + "Directional": true + }] + }, { + "ID": 6096, + "SourceStructureID": 335, + "TargetStructureID": 90475, + "Label": "335-90475 via Ribbon Synapse from 13641 -> 90509", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13641, + "TargetID": 90509, + "Directional": true + }] + }, { + "ID": 6097, + "SourceStructureID": 341, + "TargetStructureID": 30015, + "Label": "341-30015 via Conventional from 29996 -> 30050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29996, + "TargetID": 30050, + "Directional": true + }] + }, { + "ID": 6098, + "SourceStructureID": 342, + "TargetStructureID": 7468, + "Label": "342-7468 via Ribbon Synapse from 31705 -> 121297, 31738 -> 31737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31705, + "TargetID": 121297, + "Directional": true + }, { + "SourceID": 31738, + "TargetID": 31737, + "Directional": true + }] + }, { + "ID": 6099, + "SourceStructureID": 342, + "TargetStructureID": 31700, + "Label": "342-31700 via Ribbon Synapse from 31705 -> 31704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31705, + "TargetID": 31704, + "Directional": true + }] + }, { + "ID": 6100, + "SourceStructureID": 342, + "TargetStructureID": 135219, + "Label": "342-135219 via Ribbon Synapse from 135224 -> 135223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135224, + "TargetID": 135223, + "Directional": true + }] + }, { + "ID": 6101, + "SourceStructureID": 344, + "TargetStructureID": 278, + "Label": "344-278 via Ribbon Synapse from 31735 -> 31727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31735, + "TargetID": 31727, + "Directional": true + }] + }, { + "ID": 6102, + "SourceStructureID": 344, + "TargetStructureID": 31702, + "Label": "344-31702 via Ribbon Synapse from 31723 -> 31718, 45612 -> 45611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31723, + "TargetID": 31718, + "Directional": true + }, { + "SourceID": 45612, + "TargetID": 45611, + "Directional": true + }] + }, { + "ID": 6103, + "SourceStructureID": 344, + "TargetStructureID": 35513, + "Label": "344-35513 via Ribbon Synapse from 35519 -> 35518", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35519, + "TargetID": 35518, + "Directional": true + }] + }, { + "ID": 6104, + "SourceStructureID": 344, + "TargetStructureID": 61709, + "Label": "344-61709 via Ribbon Synapse from 65746 -> 65745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65746, + "TargetID": 65745, + "Directional": true + }] + }, { + "ID": 6105, + "SourceStructureID": 352, + "TargetStructureID": 273, + "Label": "352-273 via Conventional from 31655 -> 31646, 31659 -> 31662, 31660 -> 31661", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31655, + "TargetID": 31646, + "Directional": true + }, { + "SourceID": 31659, + "TargetID": 31662, + "Directional": true + }, { + "SourceID": 31660, + "TargetID": 31661, + "Directional": true + }] + }, { + "ID": 6106, + "SourceStructureID": 352, + "TargetStructureID": 350, + "Label": "352-350 via Conventional from 20662 -> 18708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20662, + "TargetID": 18708, + "Directional": true + }] + }, { + "ID": 6107, + "SourceStructureID": 352, + "TargetStructureID": 7157, + "Label": "352-7157 via Conventional from 31656 -> 31657", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31656, + "TargetID": 31657, + "Directional": true + }] + }, { + "ID": 6108, + "SourceStructureID": 353, + "TargetStructureID": 21779, + "Label": "353-21779 via Ribbon Synapse from 25230 -> 32134, 25231 -> 32134, 25232 -> 32134, 25233 -> 32134, 25236 -> 32134, 25237 -> 32134, 25238 -> 32134, 25242 -> 32134, 25245 -> 32134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25230, + "TargetID": 32134, + "Directional": true + }, { + "SourceID": 25231, + "TargetID": 32134, + "Directional": true + }, { + "SourceID": 25232, + "TargetID": 32134, + "Directional": true + }, { + "SourceID": 25233, + "TargetID": 32134, + "Directional": true + }, { + "SourceID": 25236, + "TargetID": 32134, + "Directional": true + }, { + "SourceID": 25237, + "TargetID": 32134, + "Directional": true + }, { + "SourceID": 25238, + "TargetID": 32134, + "Directional": true + }, { + "SourceID": 25242, + "TargetID": 32134, + "Directional": true + }, { + "SourceID": 25245, + "TargetID": 32134, + "Directional": true + }] + }, { + "ID": 6109, + "SourceStructureID": 353, + "TargetStructureID": 22210, + "Label": "353-22210 via Ribbon Synapse from 6688 -> 32038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6688, + "TargetID": 32038, + "Directional": true + }] + }, { + "ID": 6110, + "SourceStructureID": 354, + "TargetStructureID": 13525, + "Label": "354-13525 via Ribbon Synapse from 133789 -> 130872", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133789, + "TargetID": 130872, + "Directional": true + }] + }, { + "ID": 6111, + "SourceStructureID": 359, + "TargetStructureID": 115, + "Label": "359-115 via Ribbon Synapse from 21461 -> 8124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21461, + "TargetID": 8124, + "Directional": true + }] + }, { + "ID": 6112, + "SourceStructureID": 359, + "TargetStructureID": 5413, + "Label": "359-5413 via Ribbon Synapse from 21431 -> 30451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21431, + "TargetID": 30451, + "Directional": true + }] + }, { + "ID": 6113, + "SourceStructureID": 359, + "TargetStructureID": 7157, + "Label": "359-7157 via Ribbon Synapse from 21426 -> 21449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21426, + "TargetID": 21449, + "Directional": true + }] + }, { + "ID": 6114, + "SourceStructureID": 359, + "TargetStructureID": 7859, + "Label": "359-7859 via Ribbon Synapse from 21432 -> 84816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21432, + "TargetID": 84816, + "Directional": true + }] + }, { + "ID": 6115, + "SourceStructureID": 360, + "TargetStructureID": 4835, + "Label": "360-4835 via Ribbon Synapse from 26575 -> 87850, 26577 -> 26578", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26575, + "TargetID": 87850, + "Directional": true + }, { + "SourceID": 26577, + "TargetID": 26578, + "Directional": true + }] + }, { + "ID": 6116, + "SourceStructureID": 360, + "TargetStructureID": 5457, + "Label": "360-5457 via Ribbon Synapse from 26575 -> 87849, 26577 -> 87845", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26575, + "TargetID": 87849, + "Directional": true + }, { + "SourceID": 26577, + "TargetID": 87845, + "Directional": true + }] + }, { + "ID": 6117, + "SourceStructureID": 360, + "TargetStructureID": 7157, + "Label": "360-7157 via Ribbon Synapse from 26215 -> 26216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26215, + "TargetID": 26216, + "Directional": true + }] + }, { + "ID": 6118, + "SourceStructureID": 360, + "TargetStructureID": 7468, + "Label": "360-7468 via Ribbon Synapse from 26599 -> 31749, 26600 -> 31747, 26601 -> 31748", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26599, + "TargetID": 31749, + "Directional": true + }, { + "SourceID": 26600, + "TargetID": 31747, + "Directional": true + }, { + "SourceID": 26601, + "TargetID": 31748, + "Directional": true + }] + }, { + "ID": 6119, + "SourceStructureID": 364, + "TargetStructureID": 5435, + "Label": "364-5435 via Ribbon Synapse from 12861 -> 41739, 32024 -> 32021, 32027 -> 32028, 32032 -> 32031, 120612 -> 41740, 120614 -> 41745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12861, + "TargetID": 41739, + "Directional": true + }, { + "SourceID": 32024, + "TargetID": 32021, + "Directional": true + }, { + "SourceID": 32027, + "TargetID": 32028, + "Directional": true + }, { + "SourceID": 32032, + "TargetID": 32031, + "Directional": true + }, { + "SourceID": 120612, + "TargetID": 41740, + "Directional": true + }, { + "SourceID": 120614, + "TargetID": 41745, + "Directional": true + }] + }, { + "ID": 6120, + "SourceStructureID": 364, + "TargetStructureID": 7568, + "Label": "364-7568 via Ribbon Synapse from 90551 -> 27083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90551, + "TargetID": 27083, + "Directional": true + }] + }, { + "ID": 6121, + "SourceStructureID": 364, + "TargetStructureID": 20299, + "Label": "364-20299 via Ribbon Synapse from 130193 -> 130192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130193, + "TargetID": 130192, + "Directional": true + }] + }, { + "ID": 6122, + "SourceStructureID": 364, + "TargetStructureID": 34055, + "Label": "364-34055 via Ribbon Synapse from 12885 -> 34072", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12885, + "TargetID": 34072, + "Directional": true + }] + }, { + "ID": 6123, + "SourceStructureID": 364, + "TargetStructureID": 35283, + "Label": "364-35283 via BC Conventional Synapse from 12876 -> 35287", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12876, + "TargetID": 35287, + "Directional": true + }] + }, { + "ID": 6124, + "SourceStructureID": 364, + "TargetStructureID": 38605, + "Label": "364-38605 via Ribbon Synapse from 14101 -> 98744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14101, + "TargetID": 98744, + "Directional": true + }] + }, { + "ID": 6125, + "SourceStructureID": 364, + "TargetStructureID": 38632, + "Label": "364-38632 via Ribbon Synapse from 38675 -> 38673, 38682 -> 38680, 38683 -> 38680", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38675, + "TargetID": 38673, + "Directional": true + }, { + "SourceID": 38682, + "TargetID": 38680, + "Directional": true + }, { + "SourceID": 38683, + "TargetID": 38680, + "Directional": true + }] + }, { + "ID": 6126, + "SourceStructureID": 364, + "TargetStructureID": 71882, + "Label": "364-71882 via Ribbon Synapse from 12798 -> 90355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12798, + "TargetID": 90355, + "Directional": true + }] + }, { + "ID": 6127, + "SourceStructureID": 364, + "TargetStructureID": 90334, + "Label": "364-90334 via Ribbon Synapse from 12818 -> 90340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12818, + "TargetID": 90340, + "Directional": true + }] + }, { + "ID": 6128, + "SourceStructureID": 365, + "TargetStructureID": 6153, + "Label": "365-6153 via Ribbon Synapse from 29504 -> 29503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29504, + "TargetID": 29503, + "Directional": true + }] + }, { + "ID": 6129, + "SourceStructureID": 365, + "TargetStructureID": 9260, + "Label": "365-9260 via Ribbon Synapse from 33601 -> 33602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33601, + "TargetID": 33602, + "Directional": true + }] + }, { + "ID": 6130, + "SourceStructureID": 366, + "TargetStructureID": 606, + "Label": "366-606 via Ribbon Synapse from 13645 -> 49154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13645, + "TargetID": 49154, + "Directional": true + }] + }, { + "ID": 6131, + "SourceStructureID": 366, + "TargetStructureID": 5481, + "Label": "366-5481 via Ribbon Synapse from 14045 -> 90205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14045, + "TargetID": 90205, + "Directional": true + }] + }, { + "ID": 6132, + "SourceStructureID": 366, + "TargetStructureID": 12564, + "Label": "366-12564 via Ribbon Synapse from 14056 -> 53240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14056, + "TargetID": 53240, + "Directional": true + }] + }, { + "ID": 6133, + "SourceStructureID": 366, + "TargetStructureID": 31804, + "Label": "366-31804 via Ribbon Synapse from 31810 -> 31809", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31810, + "TargetID": 31809, + "Directional": true + }] + }, { + "ID": 6134, + "SourceStructureID": 366, + "TargetStructureID": 32608, + "Label": "366-32608 via Ribbon Synapse from 13940 -> 32614", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13940, + "TargetID": 32614, + "Directional": true + }] + }, { + "ID": 6135, + "SourceStructureID": 366, + "TargetStructureID": 38605, + "Label": "366-38605 via Ribbon Synapse from 38610 -> 38611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38610, + "TargetID": 38611, + "Directional": true + }] + }, { + "ID": 6136, + "SourceStructureID": 366, + "TargetStructureID": 71882, + "Label": "366-71882 via Ribbon Synapse from 13559 -> 90322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13559, + "TargetID": 90322, + "Directional": true + }] + }, { + "ID": 6137, + "SourceStructureID": 369, + "TargetStructureID": 284, + "Label": "369-284 via Ribbon Synapse from 29565 -> 29548, 29567 -> 29566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29565, + "TargetID": 29548, + "Directional": true + }, { + "SourceID": 29567, + "TargetID": 29566, + "Directional": true + }] + }, { + "ID": 6138, + "SourceStructureID": 369, + "TargetStructureID": 4850, + "Label": "369-4850 via Ribbon Synapse from 29555 -> 83683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29555, + "TargetID": 83683, + "Directional": true + }] + }, { + "ID": 6139, + "SourceStructureID": 369, + "TargetStructureID": 6153, + "Label": "369-6153 via Ribbon Synapse from 29559 -> 29560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29559, + "TargetID": 29560, + "Directional": true + }] + }, { + "ID": 6140, + "SourceStructureID": 369, + "TargetStructureID": 7157, + "Label": "369-7157 via Ribbon Synapse from 29555 -> 29556, 29558 -> 29557, 29559 -> 26518, 29561 -> 18180, 29562 -> 18180, 29563 -> 45664", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29555, + "TargetID": 29556, + "Directional": true + }, { + "SourceID": 29558, + "TargetID": 29557, + "Directional": true + }, { + "SourceID": 29559, + "TargetID": 26518, + "Directional": true + }, { + "SourceID": 29561, + "TargetID": 18180, + "Directional": true + }, { + "SourceID": 29562, + "TargetID": 18180, + "Directional": true + }, { + "SourceID": 29563, + "TargetID": 45664, + "Directional": true + }] + }, { + "ID": 6141, + "SourceStructureID": 372, + "TargetStructureID": 412, + "Label": "372-412 via BC Conventional Synapse from 122387 -> 122386", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122387, + "TargetID": 122386, + "Directional": true + }] + }, { + "ID": 6142, + "SourceStructureID": 372, + "TargetStructureID": 606, + "Label": "372-606 via Ribbon Synapse from 50897 -> 50898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50897, + "TargetID": 50898, + "Directional": true + }] + }, { + "ID": 6143, + "SourceStructureID": 372, + "TargetStructureID": 34509, + "Label": "372-34509 via Ribbon Synapse from 122340 -> 45638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122340, + "TargetID": 45638, + "Directional": true + }] + }, { + "ID": 6144, + "SourceStructureID": 372, + "TargetStructureID": 38632, + "Label": "372-38632 via Ribbon Synapse from 30993 -> 38644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30993, + "TargetID": 38644, + "Directional": true + }] + }, { + "ID": 6145, + "SourceStructureID": 372, + "TargetStructureID": 59499, + "Label": "372-59499 via BC Conventional Synapse from 122358 -> 122357", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122358, + "TargetID": 122357, + "Directional": true + }] + }, { + "ID": 6146, + "SourceStructureID": 372, + "TargetStructureID": 59499, + "Label": "372-59499 via Ribbon Synapse from 122336 -> 90553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122336, + "TargetID": 90553, + "Directional": true + }] + }, { + "ID": 6147, + "SourceStructureID": 372, + "TargetStructureID": 71531, + "Label": "372-71531 via Ribbon Synapse from 71480 -> 71534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71480, + "TargetID": 71534, + "Directional": true + }] + }, { + "ID": 6148, + "SourceStructureID": 372, + "TargetStructureID": 71535, + "Label": "372-71535 via Ribbon Synapse from 71480 -> 71536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71480, + "TargetID": 71536, + "Directional": true + }] + }, { + "ID": 6149, + "SourceStructureID": 372, + "TargetStructureID": 71550, + "Label": "372-71550 via Ribbon Synapse from 71554 -> 71553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71554, + "TargetID": 71553, + "Directional": true + }] + }, { + "ID": 6150, + "SourceStructureID": 372, + "TargetStructureID": 71560, + "Label": "372-71560 via BC Conventional Synapse from 71561 -> 71562", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71561, + "TargetID": 71562, + "Directional": true + }] + }, { + "ID": 6151, + "SourceStructureID": 372, + "TargetStructureID": 71566, + "Label": "372-71566 via Ribbon Synapse from 71564 -> 71567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71564, + "TargetID": 71567, + "Directional": true + }] + }, { + "ID": 6152, + "SourceStructureID": 372, + "TargetStructureID": 71865, + "Label": "372-71865 via Ribbon Synapse from 62670 -> 71866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62670, + "TargetID": 71866, + "Directional": true + }] + }, { + "ID": 6153, + "SourceStructureID": 372, + "TargetStructureID": 71867, + "Label": "372-71867 via Ribbon Synapse from 62670 -> 71868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62670, + "TargetID": 71868, + "Directional": true + }] + }, { + "ID": 6154, + "SourceStructureID": 372, + "TargetStructureID": 71877, + "Label": "372-71877 via Ribbon Synapse from 71564 -> 71878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71564, + "TargetID": 71878, + "Directional": true + }] + }, { + "ID": 6155, + "SourceStructureID": 372, + "TargetStructureID": 108196, + "Label": "372-108196 via Ribbon Synapse from 30790 -> 122360", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30790, + "TargetID": 122360, + "Directional": true + }] + }, { + "ID": 6156, + "SourceStructureID": 373, + "TargetStructureID": 9769, + "Label": "373-9769 via Conventional from 55228 -> 12392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55228, + "TargetID": 12392, + "Directional": true + }] + }, { + "ID": 6157, + "SourceStructureID": 375, + "TargetStructureID": 479, + "Label": "375-479 via Conventional from 21839 -> 12366", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21839, + "TargetID": 12366, + "Directional": true + }] + }, { + "ID": 6158, + "SourceStructureID": 375, + "TargetStructureID": 24401, + "Label": "375-24401 via Conventional from 21841 -> 48253", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21841, + "TargetID": 48253, + "Directional": true + }] + }, { + "ID": 6159, + "SourceStructureID": 380, + "TargetStructureID": 223, + "Label": "380-223 via Ribbon Synapse from 17671 -> 17670, 19132 -> 19135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17671, + "TargetID": 17670, + "Directional": true + }, { + "SourceID": 19132, + "TargetID": 19135, + "Directional": true + }] + }, { + "ID": 6160, + "SourceStructureID": 380, + "TargetStructureID": 304, + "Label": "380-304 via Ribbon Synapse from 18279 -> 18278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18279, + "TargetID": 18278, + "Directional": true + }] + }, { + "ID": 6161, + "SourceStructureID": 380, + "TargetStructureID": 410, + "Label": "380-410 via Ribbon Synapse from 9526 -> 9525, 17677 -> 17676, 17681 -> 17680, 17878 -> 17877, 17880 -> 17879, 17882 -> 17881, 18368 -> 18367, 18370 -> 18369, 18372 -> 18371, 18514 -> 18536, 18540 -> 18539, 20944 -> 20945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9526, + "TargetID": 9525, + "Directional": true + }, { + "SourceID": 17677, + "TargetID": 17676, + "Directional": true + }, { + "SourceID": 17681, + "TargetID": 17680, + "Directional": true + }, { + "SourceID": 17878, + "TargetID": 17877, + "Directional": true + }, { + "SourceID": 17880, + "TargetID": 17879, + "Directional": true + }, { + "SourceID": 17882, + "TargetID": 17881, + "Directional": true + }, { + "SourceID": 18368, + "TargetID": 18367, + "Directional": true + }, { + "SourceID": 18370, + "TargetID": 18369, + "Directional": true + }, { + "SourceID": 18372, + "TargetID": 18371, + "Directional": true + }, { + "SourceID": 18514, + "TargetID": 18536, + "Directional": true + }, { + "SourceID": 18540, + "TargetID": 18539, + "Directional": true + }, { + "SourceID": 20944, + "TargetID": 20945, + "Directional": true + }] + }, { + "ID": 6162, + "SourceStructureID": 380, + "TargetStructureID": 17527, + "Label": "380-17527 via Ribbon Synapse from 17742 -> 38616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17742, + "TargetID": 38616, + "Directional": true + }] + }, { + "ID": 6163, + "SourceStructureID": 382, + "TargetStructureID": 2610, + "Label": "382-2610 via Ribbon Synapse from 71305 -> 71304, 71307 -> 71306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71305, + "TargetID": 71304, + "Directional": true + }, { + "SourceID": 71307, + "TargetID": 71306, + "Directional": true + }] + }, { + "ID": 6164, + "SourceStructureID": 389, + "TargetStructureID": 19203, + "Label": "389-19203 via Conventional from 62118 -> 62115", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62118, + "TargetID": 62115, + "Directional": true + }] + }, { + "ID": 6165, + "SourceStructureID": 390, + "TargetStructureID": 6857, + "Label": "390-6857 via Conventional from 65101 -> 65230, 65122 -> 7472, 65124 -> 65125, 65227 -> 133424", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65101, + "TargetID": 65230, + "Directional": true + }, { + "SourceID": 65122, + "TargetID": 7472, + "Directional": true + }, { + "SourceID": 65124, + "TargetID": 65125, + "Directional": true + }, { + "SourceID": 65227, + "TargetID": 133424, + "Directional": true + }] + }, { + "ID": 6166, + "SourceStructureID": 390, + "TargetStructureID": 31024, + "Label": "390-31024 via Conventional from 65126 -> 65127", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65126, + "TargetID": 65127, + "Directional": true + }] + }, { + "ID": 6167, + "SourceStructureID": 390, + "TargetStructureID": 65211, + "Label": "390-65211 via Conventional from 65208 -> 65212", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65208, + "TargetID": 65212, + "Directional": true + }] + }, { + "ID": 6168, + "SourceStructureID": 390, + "TargetStructureID": 65218, + "Label": "390-65218 via Conventional from 65217 -> 65219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65217, + "TargetID": 65219, + "Directional": true + }] + }, { + "ID": 6169, + "SourceStructureID": 391, + "TargetStructureID": 10826, + "Label": "391-10826 via Conventional from 108561 -> 108562, 108563 -> 108565, 108688 -> 108689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108561, + "TargetID": 108562, + "Directional": true + }, { + "SourceID": 108563, + "TargetID": 108565, + "Directional": true + }, { + "SourceID": 108688, + "TargetID": 108689, + "Directional": true + }] + }, { + "ID": 6170, + "SourceStructureID": 391, + "TargetStructureID": 10897, + "Label": "391-10897 via Conventional from 108369 -> 108370, 108389 -> 108390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108369, + "TargetID": 108370, + "Directional": true + }, { + "SourceID": 108389, + "TargetID": 108390, + "Directional": true + }] + }, { + "ID": 6171, + "SourceStructureID": 391, + "TargetStructureID": 11401, + "Label": "391-11401 via Conventional from 108197 -> 108211, 108205 -> 108216, 108210 -> 108217, 108315 -> 108316, 108318 -> 108319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108197, + "TargetID": 108211, + "Directional": true + }, { + "SourceID": 108205, + "TargetID": 108216, + "Directional": true + }, { + "SourceID": 108210, + "TargetID": 108217, + "Directional": true + }, { + "SourceID": 108315, + "TargetID": 108316, + "Directional": true + }, { + "SourceID": 108318, + "TargetID": 108319, + "Directional": true + }] + }, { + "ID": 6172, + "SourceStructureID": 397, + "TargetStructureID": 399, + "Label": "397-399 via BC Conventional Synapse from 122659 -> 122658", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122659, + "TargetID": 122658, + "Directional": true + }] + }, { + "ID": 6173, + "SourceStructureID": 397, + "TargetStructureID": 399, + "Label": "397-399 via Ribbon Synapse from 46894 -> 46890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46894, + "TargetID": 46890, + "Directional": true + }] + }, { + "ID": 6174, + "SourceStructureID": 397, + "TargetStructureID": 598, + "Label": "397-598 via Ribbon Synapse from 38788 -> 38786", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38788, + "TargetID": 38786, + "Directional": true + }] + }, { + "ID": 6175, + "SourceStructureID": 397, + "TargetStructureID": 45358, + "Label": "397-45358 via Ribbon Synapse from 46884 -> 45361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46884, + "TargetID": 45361, + "Directional": true + }] + }, { + "ID": 6176, + "SourceStructureID": 397, + "TargetStructureID": 55330, + "Label": "397-55330 via Ribbon Synapse from 55334 -> 55332", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55334, + "TargetID": 55332, + "Directional": true + }] + }, { + "ID": 6177, + "SourceStructureID": 397, + "TargetStructureID": 63628, + "Label": "397-63628 via Ribbon Synapse from 68725 -> 63825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68725, + "TargetID": 63825, + "Directional": true + }] + }, { + "ID": 6178, + "SourceStructureID": 397, + "TargetStructureID": 71043, + "Label": "397-71043 via Ribbon Synapse from 71052 -> 71048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71052, + "TargetID": 71048, + "Directional": true + }] + }, { + "ID": 6179, + "SourceStructureID": 398, + "TargetStructureID": 22358, + "Label": "398-22358 via Ribbon Synapse from 37567 -> 37568, 37569 -> 37568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37567, + "TargetID": 37568, + "Directional": true + }, { + "SourceID": 37569, + "TargetID": 37568, + "Directional": true + }] + }, { + "ID": 6180, + "SourceStructureID": 399, + "TargetStructureID": 400, + "Label": "399-400 via Conventional from 46896 -> 46900, 46897 -> 46898, 46906 -> 28483, 46907 -> 46908", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46896, + "TargetID": 46900, + "Directional": true + }, { + "SourceID": 46897, + "TargetID": 46898, + "Directional": true + }, { + "SourceID": 46906, + "TargetID": 28483, + "Directional": true + }, { + "SourceID": 46907, + "TargetID": 46908, + "Directional": true + }] + }, { + "ID": 6181, + "SourceStructureID": 400, + "TargetStructureID": 5117, + "Label": "400-5117 via Ribbon Synapse from 18767 -> 18736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18767, + "TargetID": 18736, + "Directional": true + }] + }, { + "ID": 6182, + "SourceStructureID": 400, + "TargetStructureID": 5118, + "Label": "400-5118 via Ribbon Synapse from 18769 -> 18772, 18770 -> 18772, 18771 -> 18772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18769, + "TargetID": 18772, + "Directional": true + }, { + "SourceID": 18770, + "TargetID": 18772, + "Directional": true + }, { + "SourceID": 18771, + "TargetID": 18772, + "Directional": true + }] + }, { + "ID": 6183, + "SourceStructureID": 400, + "TargetStructureID": 8033, + "Label": "400-8033 via BC Conventional Synapse from 61256 -> 61255", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61256, + "TargetID": 61255, + "Directional": true + }] + }, { + "ID": 6184, + "SourceStructureID": 400, + "TargetStructureID": 8033, + "Label": "400-8033 via Ribbon Synapse from 61248 -> 61246, 61249 -> 61246, 61250 -> 61246, 61251 -> 61252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61248, + "TargetID": 61246, + "Directional": true + }, { + "SourceID": 61249, + "TargetID": 61246, + "Directional": true + }, { + "SourceID": 61250, + "TargetID": 61246, + "Directional": true + }, { + "SourceID": 61251, + "TargetID": 61252, + "Directional": true + }] + }, { + "ID": 6185, + "SourceStructureID": 400, + "TargetStructureID": 13855, + "Label": "400-13855 via Ribbon Synapse from 70922 -> 70921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70922, + "TargetID": 70921, + "Directional": true + }] + }, { + "ID": 6186, + "SourceStructureID": 400, + "TargetStructureID": 15394, + "Label": "400-15394 via Ribbon Synapse from 18779 -> 18780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18779, + "TargetID": 18780, + "Directional": true + }] + }, { + "ID": 6187, + "SourceStructureID": 400, + "TargetStructureID": 37288, + "Label": "400-37288 via Ribbon Synapse from 1938 -> 37380, 28488 -> 37377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1938, + "TargetID": 37380, + "Directional": true + }, { + "SourceID": 28488, + "TargetID": 37377, + "Directional": true + }] + }, { + "ID": 6188, + "SourceStructureID": 400, + "TargetStructureID": 61270, + "Label": "400-61270 via Ribbon Synapse from 61269 -> 61271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61269, + "TargetID": 61271, + "Directional": true + }] + }, { + "ID": 6189, + "SourceStructureID": 407, + "TargetStructureID": 382, + "Label": "407-382 via Conventional from 41969 -> 41968", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41969, + "TargetID": 41968, + "Directional": true + }] + }, { + "ID": 6190, + "SourceStructureID": 408, + "TargetStructureID": 405, + "Label": "408-405 via BC Conventional Synapse from 122381 -> 122380, 122385 -> 122384", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122381, + "TargetID": 122380, + "Directional": true + }, { + "SourceID": 122385, + "TargetID": 122384, + "Directional": true + }] + }, { + "ID": 6191, + "SourceStructureID": 408, + "TargetStructureID": 405, + "Label": "408-405 via Ribbon Synapse from 122382 -> 122383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122382, + "TargetID": 122383, + "Directional": true + }] + }, { + "ID": 6192, + "SourceStructureID": 408, + "TargetStructureID": 598, + "Label": "408-598 via Ribbon Synapse from 38804 -> 38803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38804, + "TargetID": 38803, + "Directional": true + }] + }, { + "ID": 6193, + "SourceStructureID": 408, + "TargetStructureID": 25879, + "Label": "408-25879 via Ribbon Synapse from 25885 -> 25886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25885, + "TargetID": 25886, + "Directional": true + }] + }, { + "ID": 6194, + "SourceStructureID": 408, + "TargetStructureID": 33127, + "Label": "408-33127 via Ribbon Synapse from 33132 -> 33130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33132, + "TargetID": 33130, + "Directional": true + }] + }, { + "ID": 6195, + "SourceStructureID": 408, + "TargetStructureID": 35775, + "Label": "408-35775 via Ribbon Synapse from 35769 -> 35776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35769, + "TargetID": 35776, + "Directional": true + }] + }, { + "ID": 6196, + "SourceStructureID": 408, + "TargetStructureID": 35887, + "Label": "408-35887 via Ribbon Synapse from 35799 -> 35889", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35799, + "TargetID": 35889, + "Directional": true + }] + }, { + "ID": 6197, + "SourceStructureID": 408, + "TargetStructureID": 35894, + "Label": "408-35894 via Ribbon Synapse from 35900 -> 35901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35900, + "TargetID": 35901, + "Directional": true + }] + }, { + "ID": 6198, + "SourceStructureID": 408, + "TargetStructureID": 35966, + "Label": "408-35966 via Ribbon Synapse from 29273 -> 35967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29273, + "TargetID": 35967, + "Directional": true + }] + }, { + "ID": 6199, + "SourceStructureID": 408, + "TargetStructureID": 47013, + "Label": "408-47013 via Ribbon Synapse from 29274 -> 47014, 53023 -> 47018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29274, + "TargetID": 47014, + "Directional": true + }, { + "SourceID": 53023, + "TargetID": 47018, + "Directional": true + }] + }, { + "ID": 6200, + "SourceStructureID": 408, + "TargetStructureID": 61587, + "Label": "408-61587 via Ribbon Synapse from 52909 -> 61592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52909, + "TargetID": 61592, + "Directional": true + }] + }, { + "ID": 6201, + "SourceStructureID": 410, + "TargetStructureID": 478, + "Label": "410-478 via Conventional from 21348 -> 21349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21348, + "TargetID": 21349, + "Directional": true + }] + }, { + "ID": 6202, + "SourceStructureID": 410, + "TargetStructureID": 35046, + "Label": "410-35046 via Conventional from 20948 -> 62000, 21353 -> 61994, 21354 -> 61995, 21370 -> 61997", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20948, + "TargetID": 62000, + "Directional": true + }, { + "SourceID": 21353, + "TargetID": 61994, + "Directional": true + }, { + "SourceID": 21354, + "TargetID": 61995, + "Directional": true + }, { + "SourceID": 21370, + "TargetID": 61997, + "Directional": true + }] + }, { + "ID": 6203, + "SourceStructureID": 410, + "TargetStructureID": 70820, + "Label": "410-70820 via Conventional from 70828 -> 70827", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70828, + "TargetID": 70827, + "Directional": true + }] + }, { + "ID": 6204, + "SourceStructureID": 412, + "TargetStructureID": 308, + "Label": "412-308 via Cistern Pre from 37592 -> 107260", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 37592, + "TargetID": 107260, + "Directional": true + }] + }, { + "ID": 6205, + "SourceStructureID": 412, + "TargetStructureID": 419, + "Label": "412-419 via Conventional from 49093 -> 37809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 49093, + "TargetID": 37809, + "Directional": true + }] + }, { + "ID": 6206, + "SourceStructureID": 415, + "TargetStructureID": 12208, + "Label": "415-12208 via Conventional from 22464 -> 22463", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22464, + "TargetID": 22463, + "Directional": true + }] + }, { + "ID": 6207, + "SourceStructureID": 419, + "TargetStructureID": 179, + "Label": "419-179 via Ribbon Synapse from 132544 -> 133586", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132544, + "TargetID": 133586, + "Directional": true + }] + }, { + "ID": 6208, + "SourceStructureID": 419, + "TargetStructureID": 318, + "Label": "419-318 via Ribbon Synapse from 10187 -> 133605, 14600 -> 14601, 20372 -> 20373, 20382 -> 20384, 29317 -> 29316, 29318 -> 29316, 34959 -> 133694, 132070 -> 14601, 132236 -> 14601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10187, + "TargetID": 133605, + "Directional": true + }, { + "SourceID": 14600, + "TargetID": 14601, + "Directional": true + }, { + "SourceID": 20372, + "TargetID": 20373, + "Directional": true + }, { + "SourceID": 20382, + "TargetID": 20384, + "Directional": true + }, { + "SourceID": 29317, + "TargetID": 29316, + "Directional": true + }, { + "SourceID": 29318, + "TargetID": 29316, + "Directional": true + }, { + "SourceID": 34959, + "TargetID": 133694, + "Directional": true + }, { + "SourceID": 132070, + "TargetID": 14601, + "Directional": true + }, { + "SourceID": 132236, + "TargetID": 14601, + "Directional": true + }] + }, { + "ID": 6209, + "SourceStructureID": 419, + "TargetStructureID": 476, + "Label": "419-476 via Ribbon Synapse from 6553 -> 10073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6553, + "TargetID": 10073, + "Directional": true + }] + }, { + "ID": 6210, + "SourceStructureID": 419, + "TargetStructureID": 591, + "Label": "419-591 via Ribbon Synapse from 6553 -> 6554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6553, + "TargetID": 6554, + "Directional": true + }] + }, { + "ID": 6211, + "SourceStructureID": 419, + "TargetStructureID": 4890, + "Label": "419-4890 via BC Conventional Synapse from 133698 -> 133699", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133698, + "TargetID": 133699, + "Directional": true + }] + }, { + "ID": 6212, + "SourceStructureID": 419, + "TargetStructureID": 4890, + "Label": "419-4890 via Ribbon Synapse from 10130 -> 133637, 19989 -> 19988, 19993 -> 19992, 19996 -> 19997, 34837 -> 64863, 35022 -> 133660, 131766 -> 131767, 132319 -> 133622", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10130, + "TargetID": 133637, + "Directional": true + }, { + "SourceID": 19989, + "TargetID": 19988, + "Directional": true + }, { + "SourceID": 19993, + "TargetID": 19992, + "Directional": true + }, { + "SourceID": 19996, + "TargetID": 19997, + "Directional": true + }, { + "SourceID": 34837, + "TargetID": 64863, + "Directional": true + }, { + "SourceID": 35022, + "TargetID": 133660, + "Directional": true + }, { + "SourceID": 131766, + "TargetID": 131767, + "Directional": true + }, { + "SourceID": 132319, + "TargetID": 133622, + "Directional": true + }] + }, { + "ID": 6213, + "SourceStructureID": 419, + "TargetStructureID": 5118, + "Label": "419-5118 via Ribbon Synapse from 132333 -> 133624, 133618 -> 133673", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132333, + "TargetID": 133624, + "Directional": true + }, { + "SourceID": 133618, + "TargetID": 133673, + "Directional": true + }] + }, { + "ID": 6214, + "SourceStructureID": 419, + "TargetStructureID": 5350, + "Label": "419-5350 via Ribbon Synapse from 132537 -> 132538, 133695 -> 133696", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132537, + "TargetID": 132538, + "Directional": true + }, { + "SourceID": 133695, + "TargetID": 133696, + "Directional": true + }] + }, { + "ID": 6215, + "SourceStructureID": 419, + "TargetStructureID": 8579, + "Label": "419-8579 via Ribbon Synapse from 62667 -> 62666, 131770 -> 133571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62667, + "TargetID": 62666, + "Directional": true + }, { + "SourceID": 131770, + "TargetID": 133571, + "Directional": true + }] + }, { + "ID": 6216, + "SourceStructureID": 419, + "TargetStructureID": 9226, + "Label": "419-9226 via Ribbon Synapse from 19989 -> 132599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19989, + "TargetID": 132599, + "Directional": true + }] + }, { + "ID": 6217, + "SourceStructureID": 419, + "TargetStructureID": 13855, + "Label": "419-13855 via Ribbon Synapse from 14597 -> 14598, 14895 -> 14896, 14900 -> 14899, 34954 -> 133635, 34970 -> 133655, 132401 -> 133630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14597, + "TargetID": 14598, + "Directional": true + }, { + "SourceID": 14895, + "TargetID": 14896, + "Directional": true + }, { + "SourceID": 14900, + "TargetID": 14899, + "Directional": true + }, { + "SourceID": 34954, + "TargetID": 133635, + "Directional": true + }, { + "SourceID": 34970, + "TargetID": 133655, + "Directional": true + }, { + "SourceID": 132401, + "TargetID": 133630, + "Directional": true + }] + }, { + "ID": 6218, + "SourceStructureID": 419, + "TargetStructureID": 18282, + "Label": "419-18282 via Ribbon Synapse from 20336 -> 20335, 20387 -> 20364", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20336, + "TargetID": 20335, + "Directional": true + }, { + "SourceID": 20387, + "TargetID": 20364, + "Directional": true + }] + }, { + "ID": 6219, + "SourceStructureID": 419, + "TargetStructureID": 18576, + "Label": "419-18576 via BC Conventional Synapse from 133513 -> 133514", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133513, + "TargetID": 133514, + "Directional": true + }] + }, { + "ID": 6220, + "SourceStructureID": 419, + "TargetStructureID": 18576, + "Label": "419-18576 via Ribbon Synapse from 8937 -> 100459, 132529 -> 133585, 132530 -> 133585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8937, + "TargetID": 100459, + "Directional": true + }, { + "SourceID": 132529, + "TargetID": 133585, + "Directional": true + }, { + "SourceID": 132530, + "TargetID": 133585, + "Directional": true + }] + }, { + "ID": 6221, + "SourceStructureID": 419, + "TargetStructureID": 22554, + "Label": "419-22554 via Ribbon Synapse from 103898 -> 133610, 133606 -> 133609", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103898, + "TargetID": 133610, + "Directional": true + }, { + "SourceID": 133606, + "TargetID": 133609, + "Directional": true + }] + }, { + "ID": 6222, + "SourceStructureID": 419, + "TargetStructureID": 25869, + "Label": "419-25869 via Ribbon Synapse from 132544 -> 133587", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132544, + "TargetID": 133587, + "Directional": true + }] + }, { + "ID": 6223, + "SourceStructureID": 419, + "TargetStructureID": 29277, + "Label": "419-29277 via Ribbon Synapse from 29321 -> 29320, 29324 -> 29323, 38451 -> 29310, 65685 -> 29313, 65686 -> 29313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29321, + "TargetID": 29320, + "Directional": true + }, { + "SourceID": 29324, + "TargetID": 29323, + "Directional": true + }, { + "SourceID": 38451, + "TargetID": 29310, + "Directional": true + }, { + "SourceID": 65685, + "TargetID": 29313, + "Directional": true + }, { + "SourceID": 65686, + "TargetID": 29313, + "Directional": true + }] + }, { + "ID": 6224, + "SourceStructureID": 419, + "TargetStructureID": 34621, + "Label": "419-34621 via Ribbon Synapse from 131470 -> 38454, 131471 -> 38454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131470, + "TargetID": 38454, + "Directional": true + }, { + "SourceID": 131471, + "TargetID": 38454, + "Directional": true + }] + }, { + "ID": 6225, + "SourceStructureID": 419, + "TargetStructureID": 36234, + "Label": "419-36234 via Ribbon Synapse from 10175 -> 36236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10175, + "TargetID": 36236, + "Directional": true + }] + }, { + "ID": 6226, + "SourceStructureID": 419, + "TargetStructureID": 37286, + "Label": "419-37286 via Ribbon Synapse from 34966 -> 101667, 101670 -> 101669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34966, + "TargetID": 101667, + "Directional": true + }, { + "SourceID": 101670, + "TargetID": 101669, + "Directional": true + }] + }, { + "ID": 6227, + "SourceStructureID": 419, + "TargetStructureID": 60185, + "Label": "419-60185 via Ribbon Synapse from 60187 -> 60188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60187, + "TargetID": 60188, + "Directional": true + }] + }, { + "ID": 6228, + "SourceStructureID": 419, + "TargetStructureID": 65267, + "Label": "419-65267 via Ribbon Synapse from 132535 -> 69963", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132535, + "TargetID": 69963, + "Directional": true + }] + }, { + "ID": 6229, + "SourceStructureID": 419, + "TargetStructureID": 70518, + "Label": "419-70518 via BC Conventional Synapse from 70520 -> 70519", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70520, + "TargetID": 70519, + "Directional": true + }] + }, { + "ID": 6230, + "SourceStructureID": 419, + "TargetStructureID": 70833, + "Label": "419-70833 via Ribbon Synapse from 34969 -> 70863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34969, + "TargetID": 70863, + "Directional": true + }] + }, { + "ID": 6231, + "SourceStructureID": 419, + "TargetStructureID": 71189, + "Label": "419-71189 via Ribbon Synapse from 19989 -> 71194, 34941 -> 133650, 34951 -> 71191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19989, + "TargetID": 71194, + "Directional": true + }, { + "SourceID": 34941, + "TargetID": 133650, + "Directional": true + }, { + "SourceID": 34951, + "TargetID": 71191, + "Directional": true + }] + }, { + "ID": 6232, + "SourceStructureID": 419, + "TargetStructureID": 71882, + "Label": "419-71882 via Ribbon Synapse from 20387 -> 133642, 35002 -> 90317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20387, + "TargetID": 133642, + "Directional": true + }, { + "SourceID": 35002, + "TargetID": 90317, + "Directional": true + }] + }, { + "ID": 6233, + "SourceStructureID": 419, + "TargetStructureID": 100946, + "Label": "419-100946 via Ribbon Synapse from 10203 -> 100947, 34975 -> 133658, 132584 -> 133658", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10203, + "TargetID": 100947, + "Directional": true + }, { + "SourceID": 34975, + "TargetID": 133658, + "Directional": true + }, { + "SourceID": 132584, + "TargetID": 133658, + "Directional": true + }] + }, { + "ID": 6234, + "SourceStructureID": 419, + "TargetStructureID": 102226, + "Label": "419-102226 via Ribbon Synapse from 35005 -> 102229, 35008 -> 133659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35005, + "TargetID": 102229, + "Directional": true + }, { + "SourceID": 35008, + "TargetID": 133659, + "Directional": true + }] + }, { + "ID": 6235, + "SourceStructureID": 419, + "TargetStructureID": 102286, + "Label": "419-102286 via Ribbon Synapse from 19996 -> 133640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19996, + "TargetID": 133640, + "Directional": true + }] + }, { + "ID": 6236, + "SourceStructureID": 419, + "TargetStructureID": 102524, + "Label": "419-102524 via Ribbon Synapse from 10175 -> 133564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10175, + "TargetID": 133564, + "Directional": true + }] + }, { + "ID": 6237, + "SourceStructureID": 419, + "TargetStructureID": 103508, + "Label": "419-103508 via Ribbon Synapse from 19993 -> 103509", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19993, + "TargetID": 103509, + "Directional": true + }] + }, { + "ID": 6238, + "SourceStructureID": 419, + "TargetStructureID": 103510, + "Label": "419-103510 via BC Conventional Synapse from 103512 -> 103511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103512, + "TargetID": 103511, + "Directional": true + }] + }, { + "ID": 6239, + "SourceStructureID": 419, + "TargetStructureID": 133550, + "Label": "419-133550 via Ribbon Synapse from 20388 -> 133551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20388, + "TargetID": 133551, + "Directional": true + }] + }, { + "ID": 6240, + "SourceStructureID": 419, + "TargetStructureID": 133553, + "Label": "419-133553 via Ribbon Synapse from 34951 -> 133554, 133520 -> 133556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34951, + "TargetID": 133554, + "Directional": true + }, { + "SourceID": 133520, + "TargetID": 133556, + "Directional": true + }] + }, { + "ID": 6241, + "SourceStructureID": 419, + "TargetStructureID": 133557, + "Label": "419-133557 via Ribbon Synapse from 132558 -> 133558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132558, + "TargetID": 133558, + "Directional": true + }] + }, { + "ID": 6242, + "SourceStructureID": 422, + "TargetStructureID": 284, + "Label": "422-284 via Ribbon Synapse from 17466 -> 17465", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17466, + "TargetID": 17465, + "Directional": true + }] + }, { + "ID": 6243, + "SourceStructureID": 422, + "TargetStructureID": 308, + "Label": "422-308 via Ribbon Synapse from 10210 -> 31870, 10210 -> 43098, 10211 -> 43336, 86635 -> 86636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10210, + "TargetID": 31870, + "Directional": true + }, { + "SourceID": 10210, + "TargetID": 43098, + "Directional": true + }, { + "SourceID": 10211, + "TargetID": 43336, + "Directional": true + }, { + "SourceID": 86635, + "TargetID": 86636, + "Directional": true + }] + }, { + "ID": 6244, + "SourceStructureID": 422, + "TargetStructureID": 476, + "Label": "422-476 via Ribbon Synapse from 5685 -> 5674, 5686 -> 5687, 5696 -> 5675, 10477 -> 10442, 10478 -> 10479, 10481 -> 10444, 10484 -> 10485, 10486 -> 10468, 16550 -> 16551, 18016 -> 10454, 18017 -> 10455, 87886 -> 87887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5685, + "TargetID": 5674, + "Directional": true + }, { + "SourceID": 5686, + "TargetID": 5687, + "Directional": true + }, { + "SourceID": 5696, + "TargetID": 5675, + "Directional": true + }, { + "SourceID": 10477, + "TargetID": 10442, + "Directional": true + }, { + "SourceID": 10478, + "TargetID": 10479, + "Directional": true + }, { + "SourceID": 10481, + "TargetID": 10444, + "Directional": true + }, { + "SourceID": 10484, + "TargetID": 10485, + "Directional": true + }, { + "SourceID": 10486, + "TargetID": 10468, + "Directional": true + }, { + "SourceID": 16550, + "TargetID": 16551, + "Directional": true + }, { + "SourceID": 18016, + "TargetID": 10454, + "Directional": true + }, { + "SourceID": 18017, + "TargetID": 10455, + "Directional": true + }, { + "SourceID": 87886, + "TargetID": 87887, + "Directional": true + }] + }, { + "ID": 6245, + "SourceStructureID": 422, + "TargetStructureID": 488, + "Label": "422-488 via Ribbon Synapse from 16603 -> 87800", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16603, + "TargetID": 87800, + "Directional": true + }] + }, { + "ID": 6246, + "SourceStructureID": 422, + "TargetStructureID": 591, + "Label": "422-591 via Ribbon Synapse from 10474 -> 36444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10474, + "TargetID": 36444, + "Directional": true + }] + }, { + "ID": 6247, + "SourceStructureID": 422, + "TargetStructureID": 6153, + "Label": "422-6153 via Ribbon Synapse from 5694 -> 8437, 5695 -> 8438, 8423 -> 8424, 10210 -> 31858, 16603 -> 16605, 16611 -> 16610, 16616 -> 16617, 17477 -> 17478, 17482 -> 17483", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5694, + "TargetID": 8437, + "Directional": true + }, { + "SourceID": 5695, + "TargetID": 8438, + "Directional": true + }, { + "SourceID": 8423, + "TargetID": 8424, + "Directional": true + }, { + "SourceID": 10210, + "TargetID": 31858, + "Directional": true + }, { + "SourceID": 16603, + "TargetID": 16605, + "Directional": true + }, { + "SourceID": 16611, + "TargetID": 16610, + "Directional": true + }, { + "SourceID": 16616, + "TargetID": 16617, + "Directional": true + }, { + "SourceID": 17477, + "TargetID": 17478, + "Directional": true + }, { + "SourceID": 17482, + "TargetID": 17483, + "Directional": true + }] + }, { + "ID": 6248, + "SourceStructureID": 422, + "TargetStructureID": 7157, + "Label": "422-7157 via Ribbon Synapse from 18205 -> 18204, 18206 -> 18207, 18210 -> 18209", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18205, + "TargetID": 18204, + "Directional": true + }, { + "SourceID": 18206, + "TargetID": 18207, + "Directional": true + }, { + "SourceID": 18210, + "TargetID": 18209, + "Directional": true + }] + }, { + "ID": 6249, + "SourceStructureID": 424, + "TargetStructureID": 906, + "Label": "424-906 via Ribbon Synapse from 19520 -> 15204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19520, + "TargetID": 15204, + "Directional": true + }] + }, { + "ID": 6250, + "SourceStructureID": 424, + "TargetStructureID": 4835, + "Label": "424-4835 via Ribbon Synapse from 62984 -> 62985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62984, + "TargetID": 62985, + "Directional": true + }] + }, { + "ID": 6251, + "SourceStructureID": 424, + "TargetStructureID": 5107, + "Label": "424-5107 via Ribbon Synapse from 19511 -> 64971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19511, + "TargetID": 64971, + "Directional": true + }] + }, { + "ID": 6252, + "SourceStructureID": 424, + "TargetStructureID": 8575, + "Label": "424-8575 via BC Conventional Synapse from 61728 -> 61726", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61728, + "TargetID": 61726, + "Directional": true + }] + }, { + "ID": 6253, + "SourceStructureID": 424, + "TargetStructureID": 8575, + "Label": "424-8575 via Ribbon Synapse from 19546 -> 61581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19546, + "TargetID": 61581, + "Directional": true + }] + }, { + "ID": 6254, + "SourceStructureID": 424, + "TargetStructureID": 56211, + "Label": "424-56211 via Ribbon Synapse from 19531 -> 56223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19531, + "TargetID": 56223, + "Directional": true + }] + }, { + "ID": 6255, + "SourceStructureID": 425, + "TargetStructureID": 5486, + "Label": "425-5486 via Ribbon Synapse from 9441 -> 22099", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9441, + "TargetID": 22099, + "Directional": true + }] + }, { + "ID": 6256, + "SourceStructureID": 425, + "TargetStructureID": 8575, + "Label": "425-8575 via BC Conventional Synapse from 61686 -> 61685, 61714 -> 61713", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61686, + "TargetID": 61685, + "Directional": true + }, { + "SourceID": 61714, + "TargetID": 61713, + "Directional": true + }] + }, { + "ID": 6257, + "SourceStructureID": 425, + "TargetStructureID": 42387, + "Label": "425-42387 via Ribbon Synapse from 22083 -> 129517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22083, + "TargetID": 129517, + "Directional": true + }] + }, { + "ID": 6258, + "SourceStructureID": 426, + "TargetStructureID": 341, + "Label": "426-341 via Ribbon Synapse from 24511 -> 31834", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24511, + "TargetID": 31834, + "Directional": true + }] + }, { + "ID": 6259, + "SourceStructureID": 426, + "TargetStructureID": 5150, + "Label": "426-5150 via Ribbon Synapse from 46133 -> 46142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46133, + "TargetID": 46142, + "Directional": true + }] + }, { + "ID": 6260, + "SourceStructureID": 426, + "TargetStructureID": 5351, + "Label": "426-5351 via Ribbon Synapse from 24509 -> 24508, 24511 -> 24510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24509, + "TargetID": 24508, + "Directional": true + }, { + "SourceID": 24511, + "TargetID": 24510, + "Directional": true + }] + }, { + "ID": 6261, + "SourceStructureID": 426, + "TargetStructureID": 46741, + "Label": "426-46741 via Ribbon Synapse from 46137 -> 90213", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46137, + "TargetID": 90213, + "Directional": true + }] + }, { + "ID": 6262, + "SourceStructureID": 428, + "TargetStructureID": 606, + "Label": "428-606 via Ribbon Synapse from 50896 -> 53313, 53215 -> 53216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50896, + "TargetID": 53313, + "Directional": true + }, { + "SourceID": 53215, + "TargetID": 53216, + "Directional": true + }] + }, { + "ID": 6263, + "SourceStructureID": 428, + "TargetStructureID": 8575, + "Label": "428-8575 via BC Conventional Synapse from 61691 -> 61690", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61691, + "TargetID": 61690, + "Directional": true + }] + }, { + "ID": 6264, + "SourceStructureID": 428, + "TargetStructureID": 8720, + "Label": "428-8720 via Ribbon Synapse from 52688 -> 60254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52688, + "TargetID": 60254, + "Directional": true + }] + }, { + "ID": 6265, + "SourceStructureID": 428, + "TargetStructureID": 12564, + "Label": "428-12564 via Ribbon Synapse from 7163 -> 53238, 52712 -> 55627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7163, + "TargetID": 53238, + "Directional": true + }, { + "SourceID": 52712, + "TargetID": 55627, + "Directional": true + }] + }, { + "ID": 6266, + "SourceStructureID": 428, + "TargetStructureID": 34263, + "Label": "428-34263 via Ribbon Synapse from 34268 -> 34267", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34268, + "TargetID": 34267, + "Directional": true + }] + }, { + "ID": 6267, + "SourceStructureID": 428, + "TargetStructureID": 34940, + "Label": "428-34940 via Ribbon Synapse from 14084 -> 38523", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14084, + "TargetID": 38523, + "Directional": true + }] + }, { + "ID": 6268, + "SourceStructureID": 428, + "TargetStructureID": 53115, + "Label": "428-53115 via Ribbon Synapse from 14084 -> 53147, 14085 -> 53147", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14084, + "TargetID": 53147, + "Directional": true + }, { + "SourceID": 14085, + "TargetID": 53147, + "Directional": true + }] + }, { + "ID": 6269, + "SourceStructureID": 428, + "TargetStructureID": 59474, + "Label": "428-59474 via Ribbon Synapse from 7177 -> 59489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7177, + "TargetID": 59489, + "Directional": true + }] + }, { + "ID": 6270, + "SourceStructureID": 428, + "TargetStructureID": 70924, + "Label": "428-70924 via Ribbon Synapse from 7158 -> 70954", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7158, + "TargetID": 70954, + "Directional": true + }] + }, { + "ID": 6271, + "SourceStructureID": 428, + "TargetStructureID": 137122, + "Label": "428-137122 via Ribbon Synapse from 66180 -> 137181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66180, + "TargetID": 137181, + "Directional": true + }] + }, { + "ID": 6272, + "SourceStructureID": 428, + "TargetStructureID": 147696, + "Label": "428-147696 via Ribbon Synapse from 38599 -> 147756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38599, + "TargetID": 147756, + "Directional": true + }] + }, { + "ID": 6273, + "SourceStructureID": 431, + "TargetStructureID": 20299, + "Label": "431-20299 via Ribbon Synapse from 12764 -> 121517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12764, + "TargetID": 121517, + "Directional": true + }] + }, { + "ID": 6274, + "SourceStructureID": 431, + "TargetStructureID": 30015, + "Label": "431-30015 via Ribbon Synapse from 12684 -> 30032", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12684, + "TargetID": 30032, + "Directional": true + }] + }, { + "ID": 6275, + "SourceStructureID": 431, + "TargetStructureID": 31804, + "Label": "431-31804 via Ribbon Synapse from 31815 -> 31814", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31815, + "TargetID": 31814, + "Directional": true + }] + }, { + "ID": 6276, + "SourceStructureID": 431, + "TargetStructureID": 34055, + "Label": "431-34055 via Ribbon Synapse from 12656 -> 34064", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12656, + "TargetID": 34064, + "Directional": true + }] + }, { + "ID": 6277, + "SourceStructureID": 431, + "TargetStructureID": 34302, + "Label": "431-34302 via Ribbon Synapse from 34304 -> 34303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34304, + "TargetID": 34303, + "Directional": true + }] + }, { + "ID": 6278, + "SourceStructureID": 431, + "TargetStructureID": 34868, + "Label": "431-34868 via Ribbon Synapse from 38594 -> 38592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38594, + "TargetID": 38592, + "Directional": true + }] + }, { + "ID": 6279, + "SourceStructureID": 431, + "TargetStructureID": 38949, + "Label": "431-38949 via Ribbon Synapse from 12734 -> 39047", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12734, + "TargetID": 39047, + "Directional": true + }] + }, { + "ID": 6280, + "SourceStructureID": 431, + "TargetStructureID": 60264, + "Label": "431-60264 via Ribbon Synapse from 12684 -> 60267", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12684, + "TargetID": 60267, + "Directional": true + }] + }, { + "ID": 6281, + "SourceStructureID": 431, + "TargetStructureID": 71882, + "Label": "431-71882 via Ribbon Synapse from 12772 -> 90359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12772, + "TargetID": 90359, + "Directional": true + }] + }, { + "ID": 6282, + "SourceStructureID": 431, + "TargetStructureID": 98754, + "Label": "431-98754 via Ribbon Synapse from 119069 -> 98755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119069, + "TargetID": 98755, + "Directional": true + }] + }, { + "ID": 6283, + "SourceStructureID": 431, + "TargetStructureID": 98766, + "Label": "431-98766 via Ribbon Synapse from 119065 -> 98769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119065, + "TargetID": 98769, + "Directional": true + }] + }, { + "ID": 6284, + "SourceStructureID": 431, + "TargetStructureID": 98776, + "Label": "431-98776 via Ribbon Synapse from 119062 -> 98778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119062, + "TargetID": 98778, + "Directional": true + }] + }, { + "ID": 6285, + "SourceStructureID": 431, + "TargetStructureID": 98780, + "Label": "431-98780 via Ribbon Synapse from 119062 -> 98781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119062, + "TargetID": 98781, + "Directional": true + }] + }, { + "ID": 6286, + "SourceStructureID": 431, + "TargetStructureID": 108821, + "Label": "431-108821 via Unknown from 109656 -> 109655", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 109656, + "TargetID": 109655, + "Directional": true + }] + }, { + "ID": 6287, + "SourceStructureID": 431, + "TargetStructureID": 115510, + "Label": "431-115510 via Ribbon Synapse from 115509 -> 115511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115509, + "TargetID": 115511, + "Directional": true + }] + }, { + "ID": 6288, + "SourceStructureID": 432, + "TargetStructureID": 373, + "Label": "432-373 via Ribbon Synapse from 55235 -> 55231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55235, + "TargetID": 55231, + "Directional": true + }] + }, { + "ID": 6289, + "SourceStructureID": 432, + "TargetStructureID": 8575, + "Label": "432-8575 via BC Conventional Synapse from 55238 -> 55237, 55269 -> 55270", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55238, + "TargetID": 55237, + "Directional": true + }, { + "SourceID": 55269, + "TargetID": 55270, + "Directional": true + }] + }, { + "ID": 6290, + "SourceStructureID": 433, + "TargetStructureID": 7858, + "Label": "433-7858 via Ribbon Synapse from 21486 -> 34519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21486, + "TargetID": 34519, + "Directional": true + }] + }, { + "ID": 6291, + "SourceStructureID": 434, + "TargetStructureID": 7860, + "Label": "434-7860 via Ribbon Synapse from 29661 -> 29660, 29663 -> 29662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29661, + "TargetID": 29660, + "Directional": true + }, { + "SourceID": 29663, + "TargetID": 29662, + "Directional": true + }] + }, { + "ID": 6292, + "SourceStructureID": 437, + "TargetStructureID": 4835, + "Label": "437-4835 via Ribbon Synapse from 6641 -> 6642, 7064 -> 17614, 17602 -> 17603, 65717 -> 65736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6641, + "TargetID": 6642, + "Directional": true + }, { + "SourceID": 7064, + "TargetID": 17614, + "Directional": true + }, { + "SourceID": 17602, + "TargetID": 17603, + "Directional": true + }, { + "SourceID": 65717, + "TargetID": 65736, + "Directional": true + }] + }, { + "ID": 6293, + "SourceStructureID": 437, + "TargetStructureID": 13525, + "Label": "437-13525 via Ribbon Synapse from 96751 -> 85363, 159032 -> 158517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96751, + "TargetID": 85363, + "Directional": true + }, { + "SourceID": 159032, + "TargetID": 158517, + "Directional": true + }] + }, { + "ID": 6294, + "SourceStructureID": 437, + "TargetStructureID": 61709, + "Label": "437-61709 via Ribbon Synapse from 65707 -> 65704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65707, + "TargetID": 65704, + "Directional": true + }] + }, { + "ID": 6295, + "SourceStructureID": 437, + "TargetStructureID": 65751, + "Label": "437-65751 via Ribbon Synapse from 17579 -> 65756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17579, + "TargetID": 65756, + "Directional": true + }] + }, { + "ID": 6296, + "SourceStructureID": 440, + "TargetStructureID": 5453, + "Label": "440-5453 via Ribbon Synapse from 24458 -> 62010, 62006 -> 62007, 122528 -> 122529, 122531 -> 122529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24458, + "TargetID": 62010, + "Directional": true + }, { + "SourceID": 62006, + "TargetID": 62007, + "Directional": true + }, { + "SourceID": 122528, + "TargetID": 122529, + "Directional": true + }, { + "SourceID": 122531, + "TargetID": 122529, + "Directional": true + }] + }, { + "ID": 6297, + "SourceStructureID": 440, + "TargetStructureID": 7703, + "Label": "440-7703 via Ribbon Synapse from 18639 -> 18597, 18641 -> 18598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18639, + "TargetID": 18597, + "Directional": true + }, { + "SourceID": 18641, + "TargetID": 18598, + "Directional": true + }] + }, { + "ID": 6298, + "SourceStructureID": 440, + "TargetStructureID": 8575, + "Label": "440-8575 via BC Conventional Synapse from 62003 -> 61739", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62003, + "TargetID": 61739, + "Directional": true + }] + }, { + "ID": 6299, + "SourceStructureID": 440, + "TargetStructureID": 12563, + "Label": "440-12563 via Ribbon Synapse from 18631 -> 30506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18631, + "TargetID": 30506, + "Directional": true + }] + }, { + "ID": 6300, + "SourceStructureID": 440, + "TargetStructureID": 32581, + "Label": "440-32581 via Ribbon Synapse from 24770 -> 32606", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24770, + "TargetID": 32606, + "Directional": true + }] + }, { + "ID": 6301, + "SourceStructureID": 440, + "TargetStructureID": 33161, + "Label": "440-33161 via Ribbon Synapse from 33193 -> 33192, 33194 -> 33192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33193, + "TargetID": 33192, + "Directional": true + }, { + "SourceID": 33194, + "TargetID": 33192, + "Directional": true + }] + }, { + "ID": 6302, + "SourceStructureID": 440, + "TargetStructureID": 34311, + "Label": "440-34311 via Ribbon Synapse from 39160 -> 35502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39160, + "TargetID": 35502, + "Directional": true + }] + }, { + "ID": 6303, + "SourceStructureID": 440, + "TargetStructureID": 39998, + "Label": "440-39998 via Ribbon Synapse from 40009 -> 40008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40009, + "TargetID": 40008, + "Directional": true + }] + }, { + "ID": 6304, + "SourceStructureID": 440, + "TargetStructureID": 44346, + "Label": "440-44346 via Ribbon Synapse from 44389 -> 44388, 122875 -> 122876", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44389, + "TargetID": 44388, + "Directional": true + }, { + "SourceID": 122875, + "TargetID": 122876, + "Directional": true + }] + }, { + "ID": 6305, + "SourceStructureID": 440, + "TargetStructureID": 60272, + "Label": "440-60272 via Ribbon Synapse from 60270 -> 60273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60270, + "TargetID": 60273, + "Directional": true + }] + }, { + "ID": 6306, + "SourceStructureID": 440, + "TargetStructureID": 60283, + "Label": "440-60283 via Ribbon Synapse from 60282 -> 60285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60282, + "TargetID": 60285, + "Directional": true + }] + }, { + "ID": 6307, + "SourceStructureID": 440, + "TargetStructureID": 60288, + "Label": "440-60288 via Ribbon Synapse from 60286 -> 60290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60286, + "TargetID": 60290, + "Directional": true + }] + }, { + "ID": 6308, + "SourceStructureID": 440, + "TargetStructureID": 60292, + "Label": "440-60292 via BC Conventional Synapse from 60291 -> 60293", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60291, + "TargetID": 60293, + "Directional": true + }] + }, { + "ID": 6309, + "SourceStructureID": 440, + "TargetStructureID": 60303, + "Label": "440-60303 via Ribbon Synapse from 60302 -> 60304", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60302, + "TargetID": 60304, + "Directional": true + }] + }, { + "ID": 6310, + "SourceStructureID": 440, + "TargetStructureID": 60309, + "Label": "440-60309 via Ribbon Synapse from 60308 -> 60310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60308, + "TargetID": 60310, + "Directional": true + }] + }, { + "ID": 6311, + "SourceStructureID": 440, + "TargetStructureID": 60311, + "Label": "440-60311 via Ribbon Synapse from 60308 -> 60312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60308, + "TargetID": 60312, + "Directional": true + }] + }, { + "ID": 6312, + "SourceStructureID": 440, + "TargetStructureID": 60315, + "Label": "440-60315 via Ribbon Synapse from 60314 -> 60316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60314, + "TargetID": 60316, + "Directional": true + }] + }, { + "ID": 6313, + "SourceStructureID": 440, + "TargetStructureID": 60317, + "Label": "440-60317 via Ribbon Synapse from 60314 -> 60318", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60314, + "TargetID": 60318, + "Directional": true + }] + }, { + "ID": 6314, + "SourceStructureID": 440, + "TargetStructureID": 60319, + "Label": "440-60319 via Ribbon Synapse from 60314 -> 60320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60314, + "TargetID": 60320, + "Directional": true + }] + }, { + "ID": 6315, + "SourceStructureID": 440, + "TargetStructureID": 60322, + "Label": "440-60322 via BC Conventional Synapse from 60321 -> 60323", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60321, + "TargetID": 60323, + "Directional": true + }] + }, { + "ID": 6316, + "SourceStructureID": 441, + "TargetStructureID": 7861, + "Label": "441-7861 via Ribbon Synapse from 2051 -> 21267, 32630 -> 121012, 121020 -> 121021, 121023 -> 121022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 2051, + "TargetID": 21267, + "Directional": true + }, { + "SourceID": 32630, + "TargetID": 121012, + "Directional": true + }, { + "SourceID": 121020, + "TargetID": 121021, + "Directional": true + }, { + "SourceID": 121023, + "TargetID": 121022, + "Directional": true + }] + }, { + "ID": 6317, + "SourceStructureID": 445, + "TargetStructureID": 7861, + "Label": "445-7861 via Ribbon Synapse from 121031 -> 121029, 121034 -> 121033, 121039 -> 121038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121031, + "TargetID": 121029, + "Directional": true + }, { + "SourceID": 121034, + "TargetID": 121033, + "Directional": true + }, { + "SourceID": 121039, + "TargetID": 121038, + "Directional": true + }] + }, { + "ID": 6318, + "SourceStructureID": 446, + "TargetStructureID": 5737, + "Label": "446-5737 via Cistern Pre from 34279 -> 34280", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 34279, + "TargetID": 34280, + "Directional": true + }] + }, { + "ID": 6319, + "SourceStructureID": 446, + "TargetStructureID": 34165, + "Label": "446-34165 via Ribbon Synapse from 2020 -> 34168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 2020, + "TargetID": 34168, + "Directional": true + }] + }, { + "ID": 6320, + "SourceStructureID": 447, + "TargetStructureID": 21779, + "Label": "447-21779 via Ribbon Synapse from 32094 -> 32091, 32095 -> 32091, 32096 -> 32091, 32097 -> 32091, 32100 -> 32091, 32101 -> 32091, 32102 -> 32091, 32103 -> 32091, 32104 -> 32091, 32105 -> 32091, 123231 -> 32091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32094, + "TargetID": 32091, + "Directional": true + }, { + "SourceID": 32095, + "TargetID": 32091, + "Directional": true + }, { + "SourceID": 32096, + "TargetID": 32091, + "Directional": true + }, { + "SourceID": 32097, + "TargetID": 32091, + "Directional": true + }, { + "SourceID": 32100, + "TargetID": 32091, + "Directional": true + }, { + "SourceID": 32101, + "TargetID": 32091, + "Directional": true + }, { + "SourceID": 32102, + "TargetID": 32091, + "Directional": true + }, { + "SourceID": 32103, + "TargetID": 32091, + "Directional": true + }, { + "SourceID": 32104, + "TargetID": 32091, + "Directional": true + }, { + "SourceID": 32105, + "TargetID": 32091, + "Directional": true + }, { + "SourceID": 123231, + "TargetID": 32091, + "Directional": true + }] + }, { + "ID": 6321, + "SourceStructureID": 447, + "TargetStructureID": 32273, + "Label": "447-32273 via Ribbon Synapse from 32101 -> 32276, 32103 -> 32276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32101, + "TargetID": 32276, + "Directional": true + }, { + "SourceID": 32103, + "TargetID": 32276, + "Directional": true + }] + }, { + "ID": 6322, + "SourceStructureID": 447, + "TargetStructureID": 34336, + "Label": "447-34336 via Ribbon Synapse from 33852 -> 34341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33852, + "TargetID": 34341, + "Directional": true + }] + }, { + "ID": 6323, + "SourceStructureID": 447, + "TargetStructureID": 34337, + "Label": "447-34337 via Ribbon Synapse from 33852 -> 34338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33852, + "TargetID": 34338, + "Directional": true + }] + }, { + "ID": 6324, + "SourceStructureID": 447, + "TargetStructureID": 123243, + "Label": "447-123243 via Ribbon Synapse from 33855 -> 123245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33855, + "TargetID": 123245, + "Directional": true + }] + }, { + "ID": 6325, + "SourceStructureID": 450, + "TargetStructureID": 606, + "Label": "450-606 via Ribbon Synapse from 5075 -> 5074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5075, + "TargetID": 5074, + "Directional": true + }] + }, { + "ID": 6326, + "SourceStructureID": 450, + "TargetStructureID": 34336, + "Label": "450-34336 via Ribbon Synapse from 122508 -> 122507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122508, + "TargetID": 122507, + "Directional": true + }] + }, { + "ID": 6327, + "SourceStructureID": 453, + "TargetStructureID": 7564, + "Label": "453-7564 via Ribbon Synapse from 45628 -> 29640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45628, + "TargetID": 29640, + "Directional": true + }] + }, { + "ID": 6328, + "SourceStructureID": 455, + "TargetStructureID": 4835, + "Label": "455-4835 via Ribbon Synapse from 20591 -> 31365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20591, + "TargetID": 31365, + "Directional": true + }] + }, { + "ID": 6329, + "SourceStructureID": 455, + "TargetStructureID": 8575, + "Label": "455-8575 via BC Conventional Synapse from 55286 -> 55285", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55286, + "TargetID": 55285, + "Directional": true + }] + }, { + "ID": 6330, + "SourceStructureID": 455, + "TargetStructureID": 42795, + "Label": "455-42795 via Ribbon Synapse from 42809 -> 42806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42809, + "TargetID": 42806, + "Directional": true + }] + }, { + "ID": 6331, + "SourceStructureID": 455, + "TargetStructureID": 64777, + "Label": "455-64777 via Ribbon Synapse from 28775 -> 64802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28775, + "TargetID": 64802, + "Directional": true + }] + }, { + "ID": 6332, + "SourceStructureID": 456, + "TargetStructureID": 108821, + "Label": "456-108821 via Conventional from 109642 -> 109641", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109642, + "TargetID": 109641, + "Directional": true + }] + }, { + "ID": 6333, + "SourceStructureID": 458, + "TargetStructureID": 115, + "Label": "458-115 via Ribbon Synapse from 8155 -> 8154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8155, + "TargetID": 8154, + "Directional": true + }] + }, { + "ID": 6334, + "SourceStructureID": 458, + "TargetStructureID": 7564, + "Label": "458-7564 via Ribbon Synapse from 14470 -> 37285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14470, + "TargetID": 37285, + "Directional": true + }] + }, { + "ID": 6335, + "SourceStructureID": 458, + "TargetStructureID": 7703, + "Label": "458-7703 via Ribbon Synapse from 14471 -> 24794, 14513 -> 14530, 14517 -> 14527, 14524 -> 14525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14471, + "TargetID": 24794, + "Directional": true + }, { + "SourceID": 14513, + "TargetID": 14530, + "Directional": true + }, { + "SourceID": 14517, + "TargetID": 14527, + "Directional": true + }, { + "SourceID": 14524, + "TargetID": 14525, + "Directional": true + }] + }, { + "ID": 6336, + "SourceStructureID": 458, + "TargetStructureID": 8575, + "Label": "458-8575 via BC Conventional Synapse from 55291 -> 55290, 61738 -> 61737", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55291, + "TargetID": 55290, + "Directional": true + }, { + "SourceID": 61738, + "TargetID": 61737, + "Directional": true + }] + }, { + "ID": 6337, + "SourceStructureID": 458, + "TargetStructureID": 8575, + "Label": "458-8575 via Ribbon Synapse from 14478 -> 55289, 37284 -> 55288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14478, + "TargetID": 55289, + "Directional": true + }, { + "SourceID": 37284, + "TargetID": 55288, + "Directional": true + }] + }, { + "ID": 6338, + "SourceStructureID": 458, + "TargetStructureID": 11238, + "Label": "458-11238 via Ribbon Synapse from 14504 -> 88582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14504, + "TargetID": 88582, + "Directional": true + }] + }, { + "ID": 6339, + "SourceStructureID": 458, + "TargetStructureID": 98590, + "Label": "458-98590 via Ribbon Synapse from 14461 -> 117180", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14461, + "TargetID": 117180, + "Directional": true + }] + }, { + "ID": 6340, + "SourceStructureID": 458, + "TargetStructureID": 101369, + "Label": "458-101369 via Ribbon Synapse from 101412 -> 101405", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101412, + "TargetID": 101405, + "Directional": true + }] + }, { + "ID": 6341, + "SourceStructureID": 458, + "TargetStructureID": 137024, + "Label": "458-137024 via Ribbon Synapse from 14515 -> 137025", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14515, + "TargetID": 137025, + "Directional": true + }] + }, { + "ID": 6342, + "SourceStructureID": 458, + "TargetStructureID": 137122, + "Label": "458-137122 via BC Conventional Synapse from 137138 -> 137139, 137141 -> 137140", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137138, + "TargetID": 137139, + "Directional": true + }, { + "SourceID": 137141, + "TargetID": 137140, + "Directional": true + }] + }, { + "ID": 6343, + "SourceStructureID": 460, + "TargetStructureID": 7568, + "Label": "460-7568 via Ribbon Synapse from 14437 -> 27107, 27106 -> 27104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14437, + "TargetID": 27107, + "Directional": true + }, { + "SourceID": 27106, + "TargetID": 27104, + "Directional": true + }] + }, { + "ID": 6344, + "SourceStructureID": 460, + "TargetStructureID": 9787, + "Label": "460-9787 via Ribbon Synapse from 14443 -> 18032, 14447 -> 18649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14443, + "TargetID": 18032, + "Directional": true + }, { + "SourceID": 14447, + "TargetID": 18649, + "Directional": true + }] + }, { + "ID": 6345, + "SourceStructureID": 460, + "TargetStructureID": 11238, + "Label": "460-11238 via Ribbon Synapse from 44941 -> 88585, 44947 -> 88583, 88580 -> 88573, 88581 -> 88574", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44941, + "TargetID": 88585, + "Directional": true + }, { + "SourceID": 44947, + "TargetID": 88583, + "Directional": true + }, { + "SourceID": 88580, + "TargetID": 88573, + "Directional": true + }, { + "SourceID": 88581, + "TargetID": 88574, + "Directional": true + }] + }, { + "ID": 6346, + "SourceStructureID": 460, + "TargetStructureID": 13525, + "Label": "460-13525 via Ribbon Synapse from 130160 -> 129949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130160, + "TargetID": 129949, + "Directional": true + }] + }, { + "ID": 6347, + "SourceStructureID": 460, + "TargetStructureID": 31915, + "Label": "460-31915 via Ribbon Synapse from 31923 -> 31920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31923, + "TargetID": 31920, + "Directional": true + }] + }, { + "ID": 6348, + "SourceStructureID": 461, + "TargetStructureID": 390, + "Label": "461-390 via Ribbon Synapse from 14754 -> 65205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14754, + "TargetID": 65205, + "Directional": true + }] + }, { + "ID": 6349, + "SourceStructureID": 461, + "TargetStructureID": 606, + "Label": "461-606 via Ribbon Synapse from 49699 -> 49172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49699, + "TargetID": 49172, + "Directional": true + }] + }, { + "ID": 6350, + "SourceStructureID": 461, + "TargetStructureID": 1620, + "Label": "461-1620 via Ribbon Synapse from 14828 -> 16890, 14831 -> 16895, 14833 -> 16894, 14837 -> 16893, 20620 -> 20619, 20623 -> 20624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14828, + "TargetID": 16890, + "Directional": true + }, { + "SourceID": 14831, + "TargetID": 16895, + "Directional": true + }, { + "SourceID": 14833, + "TargetID": 16894, + "Directional": true + }, { + "SourceID": 14837, + "TargetID": 16893, + "Directional": true + }, { + "SourceID": 20620, + "TargetID": 20619, + "Directional": true + }, { + "SourceID": 20623, + "TargetID": 20624, + "Directional": true + }] + }, { + "ID": 6351, + "SourceStructureID": 461, + "TargetStructureID": 5117, + "Label": "461-5117 via Ribbon Synapse from 60138 -> 135211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60138, + "TargetID": 135211, + "Directional": true + }] + }, { + "ID": 6352, + "SourceStructureID": 461, + "TargetStructureID": 5410, + "Label": "461-5410 via Ribbon Synapse from 49581 -> 82168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49581, + "TargetID": 82168, + "Directional": true + }] + }, { + "ID": 6353, + "SourceStructureID": 461, + "TargetStructureID": 18282, + "Label": "461-18282 via Ribbon Synapse from 86710 -> 86711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86710, + "TargetID": 86711, + "Directional": true + }] + }, { + "ID": 6354, + "SourceStructureID": 461, + "TargetStructureID": 29198, + "Label": "461-29198 via Ribbon Synapse from 49795 -> 29212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49795, + "TargetID": 29212, + "Directional": true + }] + }, { + "ID": 6355, + "SourceStructureID": 461, + "TargetStructureID": 34306, + "Label": "461-34306 via Ribbon Synapse from 34310 -> 34309", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34310, + "TargetID": 34309, + "Directional": true + }] + }, { + "ID": 6356, + "SourceStructureID": 463, + "TargetStructureID": 458, + "Label": "463-458 via Ribbon Synapse from 37512 -> 37513", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37512, + "TargetID": 37513, + "Directional": true + }] + }, { + "ID": 6357, + "SourceStructureID": 463, + "TargetStructureID": 5422, + "Label": "463-5422 via Ribbon Synapse from 74131 -> 74128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74131, + "TargetID": 74128, + "Directional": true + }] + }, { + "ID": 6358, + "SourceStructureID": 463, + "TargetStructureID": 74141, + "Label": "463-74141 via Ribbon Synapse from 74140 -> 74142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74140, + "TargetID": 74142, + "Directional": true + }] + }, { + "ID": 6359, + "SourceStructureID": 464, + "TargetStructureID": 4835, + "Label": "464-4835 via Ribbon Synapse from 6653 -> 6652, 26641 -> 87868, 87870 -> 87871, 87874 -> 29509, 87876 -> 29510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6653, + "TargetID": 6652, + "Directional": true + }, { + "SourceID": 26641, + "TargetID": 87868, + "Directional": true + }, { + "SourceID": 87870, + "TargetID": 87871, + "Directional": true + }, { + "SourceID": 87874, + "TargetID": 29509, + "Directional": true + }, { + "SourceID": 87876, + "TargetID": 29510, + "Directional": true + }] + }, { + "ID": 6360, + "SourceStructureID": 468, + "TargetStructureID": 4835, + "Label": "468-4835 via Ribbon Synapse from 12926 -> 12927", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12926, + "TargetID": 12927, + "Directional": true + }] + }, { + "ID": 6361, + "SourceStructureID": 469, + "TargetStructureID": 390, + "Label": "469-390 via Ribbon Synapse from 4654 -> 65128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4654, + "TargetID": 65128, + "Directional": true + }] + }, { + "ID": 6362, + "SourceStructureID": 469, + "TargetStructureID": 476, + "Label": "469-476 via Ribbon Synapse from 4653 -> 5723, 4665 -> 15065, 4672 -> 15066, 4684 -> 16315, 4685 -> 16317, 16300 -> 16298, 16312 -> 16310, 18021 -> 18020, 18025 -> 18024", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4653, + "TargetID": 5723, + "Directional": true + }, { + "SourceID": 4665, + "TargetID": 15065, + "Directional": true + }, { + "SourceID": 4672, + "TargetID": 15066, + "Directional": true + }, { + "SourceID": 4684, + "TargetID": 16315, + "Directional": true + }, { + "SourceID": 4685, + "TargetID": 16317, + "Directional": true + }, { + "SourceID": 16300, + "TargetID": 16298, + "Directional": true + }, { + "SourceID": 16312, + "TargetID": 16310, + "Directional": true + }, { + "SourceID": 18021, + "TargetID": 18020, + "Directional": true + }, { + "SourceID": 18025, + "TargetID": 18024, + "Directional": true + }] + }, { + "ID": 6363, + "SourceStructureID": 469, + "TargetStructureID": 514, + "Label": "469-514 via Ribbon Synapse from 4645 -> 14959, 4676 -> 14959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4645, + "TargetID": 14959, + "Directional": true + }, { + "SourceID": 4676, + "TargetID": 14959, + "Directional": true + }] + }, { + "ID": 6364, + "SourceStructureID": 469, + "TargetStructureID": 3257, + "Label": "469-3257 via Ribbon Synapse from 16308 -> 16307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16308, + "TargetID": 16307, + "Directional": true + }] + }, { + "ID": 6365, + "SourceStructureID": 469, + "TargetStructureID": 4835, + "Label": "469-4835 via Ribbon Synapse from 4688 -> 36738, 36735 -> 36734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4688, + "TargetID": 36738, + "Directional": true + }, { + "SourceID": 36735, + "TargetID": 36734, + "Directional": true + }] + }, { + "ID": 6366, + "SourceStructureID": 469, + "TargetStructureID": 4943, + "Label": "469-4943 via Ribbon Synapse from 4641 -> 13432, 4676 -> 13430, 4677 -> 13431, 18025 -> 13435", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4641, + "TargetID": 13432, + "Directional": true + }, { + "SourceID": 4676, + "TargetID": 13430, + "Directional": true + }, { + "SourceID": 4677, + "TargetID": 13431, + "Directional": true + }, { + "SourceID": 18025, + "TargetID": 13435, + "Directional": true + }] + }, { + "ID": 6367, + "SourceStructureID": 469, + "TargetStructureID": 9643, + "Label": "469-9643 via Ribbon Synapse from 4653 -> 9683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4653, + "TargetID": 9683, + "Directional": true + }] + }, { + "ID": 6368, + "SourceStructureID": 469, + "TargetStructureID": 105212, + "Label": "469-105212 via Ribbon Synapse from 36735 -> 105769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36735, + "TargetID": 105769, + "Directional": true + }] + }, { + "ID": 6369, + "SourceStructureID": 471, + "TargetStructureID": 476, + "Label": "471-476 via Ribbon Synapse from 7023 -> 31971, 9649 -> 3162, 9652 -> 3163, 16035 -> 16034, 16283 -> 16284, 16295 -> 16294, 16297 -> 16296, 16302 -> 16301, 16304 -> 16303, 16316 -> 4682, 16318 -> 18009, 18006 -> 3184, 18007 -> 3182, 18008 -> 3203, 18380 -> 3171, 18380 -> 3172, 60637 -> 2235, 65180 -> 3165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7023, + "TargetID": 31971, + "Directional": true + }, { + "SourceID": 9649, + "TargetID": 3162, + "Directional": true + }, { + "SourceID": 9652, + "TargetID": 3163, + "Directional": true + }, { + "SourceID": 16035, + "TargetID": 16034, + "Directional": true + }, { + "SourceID": 16283, + "TargetID": 16284, + "Directional": true + }, { + "SourceID": 16295, + "TargetID": 16294, + "Directional": true + }, { + "SourceID": 16297, + "TargetID": 16296, + "Directional": true + }, { + "SourceID": 16302, + "TargetID": 16301, + "Directional": true + }, { + "SourceID": 16304, + "TargetID": 16303, + "Directional": true + }, { + "SourceID": 16316, + "TargetID": 4682, + "Directional": true + }, { + "SourceID": 16318, + "TargetID": 18009, + "Directional": true + }, { + "SourceID": 18006, + "TargetID": 3184, + "Directional": true + }, { + "SourceID": 18007, + "TargetID": 3182, + "Directional": true + }, { + "SourceID": 18008, + "TargetID": 3203, + "Directional": true + }, { + "SourceID": 18380, + "TargetID": 3171, + "Directional": true + }, { + "SourceID": 18380, + "TargetID": 3172, + "Directional": true + }, { + "SourceID": 60637, + "TargetID": 2235, + "Directional": true + }, { + "SourceID": 65180, + "TargetID": 3165, + "Directional": true + }] + }, { + "ID": 6370, + "SourceStructureID": 471, + "TargetStructureID": 514, + "Label": "471-514 via Ribbon Synapse from 16039 -> 3551, 16292 -> 16293, 16309 -> 3565, 88077 -> 88078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16039, + "TargetID": 3551, + "Directional": true + }, { + "SourceID": 16292, + "TargetID": 16293, + "Directional": true + }, { + "SourceID": 16309, + "TargetID": 3565, + "Directional": true + }, { + "SourceID": 88077, + "TargetID": 88078, + "Directional": true + }] + }, { + "ID": 6371, + "SourceStructureID": 471, + "TargetStructureID": 3257, + "Label": "471-3257 via Ribbon Synapse from 8234 -> 8233, 10864 -> 10863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8234, + "TargetID": 8233, + "Directional": true + }, { + "SourceID": 10864, + "TargetID": 10863, + "Directional": true + }] + }, { + "ID": 6372, + "SourceStructureID": 471, + "TargetStructureID": 9643, + "Label": "471-9643 via Ribbon Synapse from 9652 -> 9653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9652, + "TargetID": 9653, + "Directional": true + }] + }, { + "ID": 6373, + "SourceStructureID": 471, + "TargetStructureID": 39530, + "Label": "471-39530 via Ribbon Synapse from 16035 -> 83492, 60637 -> 83495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16035, + "TargetID": 83492, + "Directional": true + }, { + "SourceID": 60637, + "TargetID": 83495, + "Directional": true + }] + }, { + "ID": 6374, + "SourceStructureID": 471, + "TargetStructureID": 89984, + "Label": "471-89984 via Ribbon Synapse from 90097 -> 90098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90097, + "TargetID": 90098, + "Directional": true + }] + }, { + "ID": 6375, + "SourceStructureID": 471, + "TargetStructureID": 97024, + "Label": "471-97024 via Ribbon Synapse from 16283 -> 97116", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16283, + "TargetID": 97116, + "Directional": true + }] + }, { + "ID": 6376, + "SourceStructureID": 475, + "TargetStructureID": 476, + "Label": "475-476 via Ribbon Synapse from 43835 -> 65834, 133729 -> 133728", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43835, + "TargetID": 65834, + "Directional": true + }, { + "SourceID": 133729, + "TargetID": 133728, + "Directional": true + }] + }, { + "ID": 6377, + "SourceStructureID": 475, + "TargetStructureID": 46074, + "Label": "475-46074 via Ribbon Synapse from 60739 -> 60740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60739, + "TargetID": 60740, + "Directional": true + }] + }, { + "ID": 6378, + "SourceStructureID": 476, + "TargetStructureID": 425, + "Label": "476-425 via Conventional from 2147 -> 22046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 2147, + "TargetID": 22046, + "Directional": true + }] + }, { + "ID": 6379, + "SourceStructureID": 476, + "TargetStructureID": 460, + "Label": "476-460 via Conventional from 4714 -> 18026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 4714, + "TargetID": 18026, + "Directional": true + }] + }, { + "ID": 6380, + "SourceStructureID": 476, + "TargetStructureID": 475, + "Label": "476-475 via Conventional from 3054 -> 43837, 5053 -> 5052, 65828 -> 65829, 65832 -> 65833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 3054, + "TargetID": 43837, + "Directional": true + }, { + "SourceID": 5053, + "TargetID": 5052, + "Directional": true + }, { + "SourceID": 65828, + "TargetID": 65829, + "Directional": true + }, { + "SourceID": 65832, + "TargetID": 65833, + "Directional": true + }] + }, { + "ID": 6381, + "SourceStructureID": 476, + "TargetStructureID": 4567, + "Label": "476-4567 via Conventional from 3052 -> 15589", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 3052, + "TargetID": 15589, + "Directional": true + }] + }, { + "ID": 6382, + "SourceStructureID": 476, + "TargetStructureID": 4568, + "Label": "476-4568 via Conventional from 2117 -> 11482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 2117, + "TargetID": 11482, + "Directional": true + }] + }, { + "ID": 6383, + "SourceStructureID": 476, + "TargetStructureID": 5150, + "Label": "476-5150 via Conventional from 3040 -> 5152, 4831 -> 5155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 3040, + "TargetID": 5152, + "Directional": true + }, { + "SourceID": 4831, + "TargetID": 5155, + "Directional": true + }] + }, { + "ID": 6384, + "SourceStructureID": 476, + "TargetStructureID": 6656, + "Label": "476-6656 via Conventional from 65830 -> 40417, 65831 -> 40416", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65830, + "TargetID": 40417, + "Directional": true + }, { + "SourceID": 65831, + "TargetID": 40416, + "Directional": true + }] + }, { + "ID": 6385, + "SourceStructureID": 476, + "TargetStructureID": 65835, + "Label": "476-65835 via Conventional from 3063 -> 65836", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 3063, + "TargetID": 65836, + "Directional": true + }] + }, { + "ID": 6386, + "SourceStructureID": 476, + "TargetStructureID": 147796, + "Label": "476-147796 via Conventional from 147802 -> 147801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147802, + "TargetID": 147801, + "Directional": true + }] + }, { + "ID": 6387, + "SourceStructureID": 476, + "TargetStructureID": 147809, + "Label": "476-147809 via Conventional from 3140 -> 147814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 3140, + "TargetID": 147814, + "Directional": true + }] + }, { + "ID": 6388, + "SourceStructureID": 478, + "TargetStructureID": 906, + "Label": "478-906 via Ribbon Synapse from 19396 -> 15200, 19397 -> 19400", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19396, + "TargetID": 15200, + "Directional": true + }, { + "SourceID": 19397, + "TargetID": 19400, + "Directional": true + }] + }, { + "ID": 6389, + "SourceStructureID": 478, + "TargetStructureID": 5107, + "Label": "478-5107 via Ribbon Synapse from 724 -> 19412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 724, + "TargetID": 19412, + "Directional": true + }] + }, { + "ID": 6390, + "SourceStructureID": 478, + "TargetStructureID": 5150, + "Label": "478-5150 via Ribbon Synapse from 10947 -> 5162, 19386 -> 19385", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10947, + "TargetID": 5162, + "Directional": true + }, { + "SourceID": 19386, + "TargetID": 19385, + "Directional": true + }] + }, { + "ID": 6391, + "SourceStructureID": 478, + "TargetStructureID": 7568, + "Label": "478-7568 via Ribbon Synapse from 4622 -> 27050, 19408 -> 27077, 19414 -> 27044", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4622, + "TargetID": 27050, + "Directional": true + }, { + "SourceID": 19408, + "TargetID": 27077, + "Directional": true + }, { + "SourceID": 19414, + "TargetID": 27044, + "Directional": true + }] + }, { + "ID": 6392, + "SourceStructureID": 478, + "TargetStructureID": 7859, + "Label": "478-7859 via Ribbon Synapse from 19424 -> 64678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19424, + "TargetID": 64678, + "Directional": true + }] + }, { + "ID": 6393, + "SourceStructureID": 478, + "TargetStructureID": 10945, + "Label": "478-10945 via Ribbon Synapse from 10947 -> 10946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10947, + "TargetID": 10946, + "Directional": true + }] + }, { + "ID": 6394, + "SourceStructureID": 478, + "TargetStructureID": 22634, + "Label": "478-22634 via Ribbon Synapse from 706 -> 22641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 706, + "TargetID": 22641, + "Directional": true + }] + }, { + "ID": 6395, + "SourceStructureID": 479, + "TargetStructureID": 314, + "Label": "479-314 via Ribbon Synapse from 21861 -> 21862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21861, + "TargetID": 21862, + "Directional": true + }] + }, { + "ID": 6396, + "SourceStructureID": 479, + "TargetStructureID": 375, + "Label": "479-375 via Ribbon Synapse from 8310 -> 21838, 21866 -> 21852, 21867 -> 21852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8310, + "TargetID": 21838, + "Directional": true + }, { + "SourceID": 21866, + "TargetID": 21852, + "Directional": true + }, { + "SourceID": 21867, + "TargetID": 21852, + "Directional": true + }] + }, { + "ID": 6397, + "SourceStructureID": 479, + "TargetStructureID": 8575, + "Label": "479-8575 via BC Conventional Synapse from 61564 -> 61563, 122370 -> 122369", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61564, + "TargetID": 61563, + "Directional": true + }, { + "SourceID": 122370, + "TargetID": 122369, + "Directional": true + }] + }, { + "ID": 6398, + "SourceStructureID": 479, + "TargetStructureID": 32637, + "Label": "479-32637 via Ribbon Synapse from 34985 -> 34984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34985, + "TargetID": 34984, + "Directional": true + }] + }, { + "ID": 6399, + "SourceStructureID": 479, + "TargetStructureID": 36153, + "Label": "479-36153 via Ribbon Synapse from 45887 -> 61616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45887, + "TargetID": 61616, + "Directional": true + }] + }, { + "ID": 6400, + "SourceStructureID": 479, + "TargetStructureID": 36158, + "Label": "479-36158 via Ribbon Synapse from 8309 -> 36160", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8309, + "TargetID": 36160, + "Directional": true + }] + }, { + "ID": 6401, + "SourceStructureID": 479, + "TargetStructureID": 36162, + "Label": "479-36162 via Ribbon Synapse from 36165 -> 36164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36165, + "TargetID": 36164, + "Directional": true + }] + }, { + "ID": 6402, + "SourceStructureID": 479, + "TargetStructureID": 59568, + "Label": "479-59568 via Ribbon Synapse from 56494 -> 59569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56494, + "TargetID": 59569, + "Directional": true + }] + }, { + "ID": 6403, + "SourceStructureID": 483, + "TargetStructureID": 4890, + "Label": "483-4890 via Ribbon Synapse from 6794 -> 7921, 6798 -> 103718, 19999 -> 19998, 20001 -> 20000, 26824 -> 64860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6794, + "TargetID": 7921, + "Directional": true + }, { + "SourceID": 6798, + "TargetID": 103718, + "Directional": true + }, { + "SourceID": 19999, + "TargetID": 19998, + "Directional": true + }, { + "SourceID": 20001, + "TargetID": 20000, + "Directional": true + }, { + "SourceID": 26824, + "TargetID": 64860, + "Directional": true + }] + }, { + "ID": 6404, + "SourceStructureID": 483, + "TargetStructureID": 5350, + "Label": "483-5350 via Ribbon Synapse from 71247 -> 10674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71247, + "TargetID": 10674, + "Directional": true + }] + }, { + "ID": 6405, + "SourceStructureID": 483, + "TargetStructureID": 5439, + "Label": "483-5439 via Ribbon Synapse from 6750 -> 66578, 7469 -> 102700, 92341 -> 96636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6750, + "TargetID": 66578, + "Directional": true + }, { + "SourceID": 7469, + "TargetID": 102700, + "Directional": true + }, { + "SourceID": 92341, + "TargetID": 96636, + "Directional": true + }] + }, { + "ID": 6406, + "SourceStructureID": 483, + "TargetStructureID": 6073, + "Label": "483-6073 via Ribbon Synapse from 6072 -> 6074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6072, + "TargetID": 6074, + "Directional": true + }] + }, { + "ID": 6407, + "SourceStructureID": 483, + "TargetStructureID": 6857, + "Label": "483-6857 via Ribbon Synapse from 26824 -> 56080, 65234 -> 65231, 85758 -> 96627, 103539 -> 103540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26824, + "TargetID": 56080, + "Directional": true + }, { + "SourceID": 65234, + "TargetID": 65231, + "Directional": true + }, { + "SourceID": 85758, + "TargetID": 96627, + "Directional": true + }, { + "SourceID": 103539, + "TargetID": 103540, + "Directional": true + }] + }, { + "ID": 6408, + "SourceStructureID": 483, + "TargetStructureID": 8577, + "Label": "483-8577 via Ribbon Synapse from 6764 -> 15929, 6798 -> 15930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6764, + "TargetID": 15929, + "Directional": true + }, { + "SourceID": 6798, + "TargetID": 15930, + "Directional": true + }] + }, { + "ID": 6409, + "SourceStructureID": 483, + "TargetStructureID": 8579, + "Label": "483-8579 via Ribbon Synapse from 6770 -> 103350, 103344 -> 103347", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6770, + "TargetID": 103350, + "Directional": true + }, { + "SourceID": 103344, + "TargetID": 103347, + "Directional": true + }] + }, { + "ID": 6410, + "SourceStructureID": 483, + "TargetStructureID": 8720, + "Label": "483-8720 via Ribbon Synapse from 97748 -> 97749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97748, + "TargetID": 97749, + "Directional": true + }] + }, { + "ID": 6411, + "SourceStructureID": 483, + "TargetStructureID": 12208, + "Label": "483-12208 via BC Conventional Synapse from 97704 -> 22461", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97704, + "TargetID": 22461, + "Directional": true + }] + }, { + "ID": 6412, + "SourceStructureID": 483, + "TargetStructureID": 12208, + "Label": "483-12208 via Ribbon Synapse from 97724 -> 22460, 97726 -> 22460, 97729 -> 22460", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97724, + "TargetID": 22460, + "Directional": true + }, { + "SourceID": 97726, + "TargetID": 22460, + "Directional": true + }, { + "SourceID": 97729, + "TargetID": 22460, + "Directional": true + }] + }, { + "ID": 6413, + "SourceStructureID": 483, + "TargetStructureID": 18282, + "Label": "483-18282 via Ribbon Synapse from 6736 -> 29195, 71188 -> 71187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6736, + "TargetID": 29195, + "Directional": true + }, { + "SourceID": 71188, + "TargetID": 71187, + "Directional": true + }] + }, { + "ID": 6414, + "SourceStructureID": 483, + "TargetStructureID": 18576, + "Label": "483-18576 via Ribbon Synapse from 100555 -> 100554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100555, + "TargetID": 100554, + "Directional": true + }] + }, { + "ID": 6415, + "SourceStructureID": 483, + "TargetStructureID": 20299, + "Label": "483-20299 via Ribbon Synapse from 20355 -> 20324, 26821 -> 33598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20355, + "TargetID": 20324, + "Directional": true + }, { + "SourceID": 26821, + "TargetID": 33598, + "Directional": true + }] + }, { + "ID": 6416, + "SourceStructureID": 483, + "TargetStructureID": 29198, + "Label": "483-29198 via BC Conventional Synapse from 103394 -> 103395, 103430 -> 103431", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103394, + "TargetID": 103395, + "Directional": true + }, { + "SourceID": 103430, + "TargetID": 103431, + "Directional": true + }] + }, { + "ID": 6417, + "SourceStructureID": 483, + "TargetStructureID": 29702, + "Label": "483-29702 via Ribbon Synapse from 75947 -> 75946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75947, + "TargetID": 75946, + "Directional": true + }] + }, { + "ID": 6418, + "SourceStructureID": 483, + "TargetStructureID": 30526, + "Label": "483-30526 via Ribbon Synapse from 6707 -> 30542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6707, + "TargetID": 30542, + "Directional": true + }] + }, { + "ID": 6419, + "SourceStructureID": 483, + "TargetStructureID": 32643, + "Label": "483-32643 via Ribbon Synapse from 81493 -> 32649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81493, + "TargetID": 32649, + "Directional": true + }] + }, { + "ID": 6420, + "SourceStructureID": 483, + "TargetStructureID": 34601, + "Label": "483-34601 via Ribbon Synapse from 6804 -> 60341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6804, + "TargetID": 60341, + "Directional": true + }] + }, { + "ID": 6421, + "SourceStructureID": 483, + "TargetStructureID": 40010, + "Label": "483-40010 via Ribbon Synapse from 14986 -> 40013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14986, + "TargetID": 40013, + "Directional": true + }] + }, { + "ID": 6422, + "SourceStructureID": 483, + "TargetStructureID": 41474, + "Label": "483-41474 via BC Conventional Synapse from 103223 -> 103222", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103223, + "TargetID": 103222, + "Directional": true + }] + }, { + "ID": 6423, + "SourceStructureID": 483, + "TargetStructureID": 41474, + "Label": "483-41474 via Ribbon Synapse from 94597 -> 103298, 103194 -> 103197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94597, + "TargetID": 103298, + "Directional": true + }, { + "SourceID": 103194, + "TargetID": 103197, + "Directional": true + }] + }, { + "ID": 6424, + "SourceStructureID": 483, + "TargetStructureID": 43747, + "Label": "483-43747 via Ribbon Synapse from 6735 -> 43749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6735, + "TargetID": 43749, + "Directional": true + }] + }, { + "ID": 6425, + "SourceStructureID": 483, + "TargetStructureID": 46823, + "Label": "483-46823 via Ribbon Synapse from 6715 -> 46830, 6717 -> 46827, 6728 -> 46825, 6820 -> 46835, 26829 -> 46834, 46829 -> 46828", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6715, + "TargetID": 46830, + "Directional": true + }, { + "SourceID": 6717, + "TargetID": 46827, + "Directional": true + }, { + "SourceID": 6728, + "TargetID": 46825, + "Directional": true + }, { + "SourceID": 6820, + "TargetID": 46835, + "Directional": true + }, { + "SourceID": 26829, + "TargetID": 46834, + "Directional": true + }, { + "SourceID": 46829, + "TargetID": 46828, + "Directional": true + }] + }, { + "ID": 6426, + "SourceStructureID": 483, + "TargetStructureID": 49489, + "Label": "483-49489 via Ribbon Synapse from 6787 -> 49490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6787, + "TargetID": 49490, + "Directional": true + }] + }, { + "ID": 6427, + "SourceStructureID": 483, + "TargetStructureID": 59130, + "Label": "483-59130 via Ribbon Synapse from 23393 -> 59131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23393, + "TargetID": 59131, + "Directional": true + }] + }, { + "ID": 6428, + "SourceStructureID": 483, + "TargetStructureID": 59283, + "Label": "483-59283 via Ribbon Synapse from 6705 -> 59284, 15162 -> 59284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6705, + "TargetID": 59284, + "Directional": true + }, { + "SourceID": 15162, + "TargetID": 59284, + "Directional": true + }] + }, { + "ID": 6429, + "SourceStructureID": 483, + "TargetStructureID": 59285, + "Label": "483-59285 via Ribbon Synapse from 15162 -> 59286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15162, + "TargetID": 59286, + "Directional": true + }] + }, { + "ID": 6430, + "SourceStructureID": 483, + "TargetStructureID": 59289, + "Label": "483-59289 via Plaque-like Pre from 6706 -> 59290", + "Type": "Plaque-like Pre", + "Directional": true, + "Links": [{ + "SourceID": 6706, + "TargetID": 59290, + "Directional": true + }] + }, { + "ID": 6431, + "SourceStructureID": 483, + "TargetStructureID": 59432, + "Label": "483-59432 via Ribbon Synapse from 59431 -> 59433", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59431, + "TargetID": 59433, + "Directional": true + }] + }, { + "ID": 6432, + "SourceStructureID": 483, + "TargetStructureID": 59437, + "Label": "483-59437 via Ribbon Synapse from 6779 -> 97768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6779, + "TargetID": 97768, + "Directional": true + }] + }, { + "ID": 6433, + "SourceStructureID": 483, + "TargetStructureID": 59439, + "Label": "483-59439 via Ribbon Synapse from 6779 -> 59440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6779, + "TargetID": 59440, + "Directional": true + }] + }, { + "ID": 6434, + "SourceStructureID": 483, + "TargetStructureID": 59441, + "Label": "483-59441 via Ribbon Synapse from 6778 -> 59442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6778, + "TargetID": 59442, + "Directional": true + }] + }, { + "ID": 6435, + "SourceStructureID": 483, + "TargetStructureID": 60185, + "Label": "483-60185 via Ribbon Synapse from 6784 -> 60186", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6784, + "TargetID": 60186, + "Directional": true + }] + }, { + "ID": 6436, + "SourceStructureID": 483, + "TargetStructureID": 60200, + "Label": "483-60200 via Ribbon Synapse from 6789 -> 103553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6789, + "TargetID": 103553, + "Directional": true + }] + }, { + "ID": 6437, + "SourceStructureID": 483, + "TargetStructureID": 60201, + "Label": "483-60201 via Ribbon Synapse from 6789 -> 60202", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6789, + "TargetID": 60202, + "Directional": true + }] + }, { + "ID": 6438, + "SourceStructureID": 483, + "TargetStructureID": 60223, + "Label": "483-60223 via Ribbon Synapse from 6797 -> 60224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6797, + "TargetID": 60224, + "Directional": true + }] + }, { + "ID": 6439, + "SourceStructureID": 483, + "TargetStructureID": 60227, + "Label": "483-60227 via Ribbon Synapse from 6803 -> 60228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6803, + "TargetID": 60228, + "Directional": true + }] + }, { + "ID": 6440, + "SourceStructureID": 483, + "TargetStructureID": 60229, + "Label": "483-60229 via Ribbon Synapse from 6803 -> 60230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6803, + "TargetID": 60230, + "Directional": true + }] + }, { + "ID": 6441, + "SourceStructureID": 483, + "TargetStructureID": 60337, + "Label": "483-60337 via Ribbon Synapse from 6804 -> 60339", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6804, + "TargetID": 60339, + "Directional": true + }] + }, { + "ID": 6442, + "SourceStructureID": 483, + "TargetStructureID": 60352, + "Label": "483-60352 via Ribbon Synapse from 6812 -> 60353", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6812, + "TargetID": 60353, + "Directional": true + }] + }, { + "ID": 6443, + "SourceStructureID": 483, + "TargetStructureID": 60358, + "Label": "483-60358 via Ribbon Synapse from 60356 -> 60359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60356, + "TargetID": 60359, + "Directional": true + }] + }, { + "ID": 6444, + "SourceStructureID": 483, + "TargetStructureID": 60360, + "Label": "483-60360 via Ribbon Synapse from 60356 -> 60361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60356, + "TargetID": 60361, + "Directional": true + }] + }, { + "ID": 6445, + "SourceStructureID": 483, + "TargetStructureID": 60363, + "Label": "483-60363 via Ribbon Synapse from 60362 -> 60364", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60362, + "TargetID": 60364, + "Directional": true + }] + }, { + "ID": 6446, + "SourceStructureID": 483, + "TargetStructureID": 61816, + "Label": "483-61816 via Ribbon Synapse from 6763 -> 80744, 102803 -> 102806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6763, + "TargetID": 80744, + "Directional": true + }, { + "SourceID": 102803, + "TargetID": 102806, + "Directional": true + }] + }, { + "ID": 6447, + "SourceStructureID": 483, + "TargetStructureID": 65267, + "Label": "483-65267 via Ribbon Synapse from 26823 -> 69940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26823, + "TargetID": 69940, + "Directional": true + }] + }, { + "ID": 6448, + "SourceStructureID": 483, + "TargetStructureID": 69944, + "Label": "483-69944 via BC Conventional Synapse from 69945 -> 69946", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69945, + "TargetID": 69946, + "Directional": true + }] + }, { + "ID": 6449, + "SourceStructureID": 483, + "TargetStructureID": 70284, + "Label": "483-70284 via BC Conventional Synapse from 97738 -> 103457", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97738, + "TargetID": 103457, + "Directional": true + }] + }, { + "ID": 6450, + "SourceStructureID": 483, + "TargetStructureID": 70610, + "Label": "483-70610 via Ribbon Synapse from 102812 -> 102818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102812, + "TargetID": 102818, + "Directional": true + }] + }, { + "ID": 6451, + "SourceStructureID": 483, + "TargetStructureID": 71089, + "Label": "483-71089 via Ribbon Synapse from 71088 -> 71090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71088, + "TargetID": 71090, + "Directional": true + }] + }, { + "ID": 6452, + "SourceStructureID": 483, + "TargetStructureID": 71098, + "Label": "483-71098 via Ribbon Synapse from 71122 -> 71123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71122, + "TargetID": 71123, + "Directional": true + }] + }, { + "ID": 6453, + "SourceStructureID": 483, + "TargetStructureID": 71107, + "Label": "483-71107 via Ribbon Synapse from 71109 -> 71111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71109, + "TargetID": 71111, + "Directional": true + }] + }, { + "ID": 6454, + "SourceStructureID": 483, + "TargetStructureID": 71108, + "Label": "483-71108 via Ribbon Synapse from 71109 -> 71114", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71109, + "TargetID": 71114, + "Directional": true + }] + }, { + "ID": 6455, + "SourceStructureID": 483, + "TargetStructureID": 71115, + "Label": "483-71115 via BC Conventional Synapse from 71116 -> 71117", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71116, + "TargetID": 71117, + "Directional": true + }] + }, { + "ID": 6456, + "SourceStructureID": 483, + "TargetStructureID": 71145, + "Label": "483-71145 via Ribbon Synapse from 71144 -> 71146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71144, + "TargetID": 71146, + "Directional": true + }] + }, { + "ID": 6457, + "SourceStructureID": 483, + "TargetStructureID": 71151, + "Label": "483-71151 via Ribbon Synapse from 71144 -> 71168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71144, + "TargetID": 71168, + "Directional": true + }] + }, { + "ID": 6458, + "SourceStructureID": 483, + "TargetStructureID": 71153, + "Label": "483-71153 via Ribbon Synapse from 71144 -> 71166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71144, + "TargetID": 71166, + "Directional": true + }] + }, { + "ID": 6459, + "SourceStructureID": 483, + "TargetStructureID": 71155, + "Label": "483-71155 via Ribbon Synapse from 71144 -> 71167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71144, + "TargetID": 71167, + "Directional": true + }] + }, { + "ID": 6460, + "SourceStructureID": 483, + "TargetStructureID": 71189, + "Label": "483-71189 via Ribbon Synapse from 71188 -> 71190, 92322 -> 92323", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71188, + "TargetID": 71190, + "Directional": true + }, { + "SourceID": 92322, + "TargetID": 92323, + "Directional": true + }] + }, { + "ID": 6461, + "SourceStructureID": 483, + "TargetStructureID": 71210, + "Label": "483-71210 via Ribbon Synapse from 71201 -> 71211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71201, + "TargetID": 71211, + "Directional": true + }] + }, { + "ID": 6462, + "SourceStructureID": 483, + "TargetStructureID": 71213, + "Label": "483-71213 via Ribbon Synapse from 71201 -> 71214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71201, + "TargetID": 71214, + "Directional": true + }] + }, { + "ID": 6463, + "SourceStructureID": 483, + "TargetStructureID": 71241, + "Label": "483-71241 via BC Conventional Synapse from 71265 -> 71266", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71265, + "TargetID": 71266, + "Directional": true + }] + }, { + "ID": 6464, + "SourceStructureID": 483, + "TargetStructureID": 71243, + "Label": "483-71243 via Ribbon Synapse from 71244 -> 71245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71244, + "TargetID": 71245, + "Directional": true + }] + }, { + "ID": 6465, + "SourceStructureID": 483, + "TargetStructureID": 71288, + "Label": "483-71288 via Adherens from 71385 -> 71386", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 71385, + "TargetID": 71386, + "Directional": true + }] + }, { + "ID": 6466, + "SourceStructureID": 483, + "TargetStructureID": 71362, + "Label": "483-71362 via Ribbon Synapse from 71368 -> 71375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71368, + "TargetID": 71375, + "Directional": true + }] + }, { + "ID": 6467, + "SourceStructureID": 483, + "TargetStructureID": 71374, + "Label": "483-71374 via Ribbon Synapse from 71368 -> 71376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71368, + "TargetID": 71376, + "Directional": true + }] + }, { + "ID": 6468, + "SourceStructureID": 483, + "TargetStructureID": 81489, + "Label": "483-81489 via Ribbon Synapse from 81488 -> 81492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81488, + "TargetID": 81492, + "Directional": true + }] + }, { + "ID": 6469, + "SourceStructureID": 483, + "TargetStructureID": 81497, + "Label": "483-81497 via Ribbon Synapse from 81493 -> 81498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81493, + "TargetID": 81498, + "Directional": true + }] + }, { + "ID": 6470, + "SourceStructureID": 483, + "TargetStructureID": 85748, + "Label": "483-85748 via BC Conventional Synapse from 85760 -> 85759, 85768 -> 85765, 96632 -> 96633", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85760, + "TargetID": 85759, + "Directional": true + }, { + "SourceID": 85768, + "TargetID": 85765, + "Directional": true + }, { + "SourceID": 96632, + "TargetID": 96633, + "Directional": true + }] + }, { + "ID": 6471, + "SourceStructureID": 483, + "TargetStructureID": 86634, + "Label": "483-86634 via Ribbon Synapse from 86659 -> 102360, 86705 -> 86704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86659, + "TargetID": 102360, + "Directional": true + }, { + "SourceID": 86705, + "TargetID": 86704, + "Directional": true + }] + }, { + "ID": 6472, + "SourceStructureID": 483, + "TargetStructureID": 86654, + "Label": "483-86654 via Ribbon Synapse from 20340 -> 102366, 26833 -> 86655", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20340, + "TargetID": 102366, + "Directional": true + }, { + "SourceID": 26833, + "TargetID": 86655, + "Directional": true + }] + }, { + "ID": 6473, + "SourceStructureID": 483, + "TargetStructureID": 86702, + "Label": "483-86702 via BC Conventional Synapse from 102349 -> 102353", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102349, + "TargetID": 102353, + "Directional": true + }] + }, { + "ID": 6474, + "SourceStructureID": 483, + "TargetStructureID": 87145, + "Label": "483-87145 via Ribbon Synapse from 81493 -> 103513", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81493, + "TargetID": 103513, + "Directional": true + }] + }, { + "ID": 6475, + "SourceStructureID": 483, + "TargetStructureID": 96595, + "Label": "483-96595 via Ribbon Synapse from 81487 -> 96596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81487, + "TargetID": 96596, + "Directional": true + }] + }, { + "ID": 6476, + "SourceStructureID": 483, + "TargetStructureID": 96597, + "Label": "483-96597 via Ribbon Synapse from 81487 -> 96598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81487, + "TargetID": 96598, + "Directional": true + }] + }, { + "ID": 6477, + "SourceStructureID": 483, + "TargetStructureID": 96629, + "Label": "483-96629 via Ribbon Synapse from 96628 -> 96630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96628, + "TargetID": 96630, + "Directional": true + }] + }, { + "ID": 6478, + "SourceStructureID": 483, + "TargetStructureID": 96634, + "Label": "483-96634 via BC Conventional Synapse from 92339 -> 96635", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92339, + "TargetID": 96635, + "Directional": true + }] + }, { + "ID": 6479, + "SourceStructureID": 483, + "TargetStructureID": 96642, + "Label": "483-96642 via Ribbon Synapse from 92350 -> 103545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92350, + "TargetID": 103545, + "Directional": true + }] + }, { + "ID": 6480, + "SourceStructureID": 483, + "TargetStructureID": 96644, + "Label": "483-96644 via Ribbon Synapse from 92350 -> 96645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92350, + "TargetID": 96645, + "Directional": true + }] + }, { + "ID": 6481, + "SourceStructureID": 483, + "TargetStructureID": 96649, + "Label": "483-96649 via Ribbon Synapse from 92346 -> 96651, 96665 -> 96666", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92346, + "TargetID": 96651, + "Directional": true + }, { + "SourceID": 96665, + "TargetID": 96666, + "Directional": true + }] + }, { + "ID": 6482, + "SourceStructureID": 483, + "TargetStructureID": 96667, + "Label": "483-96667 via Ribbon Synapse from 96665 -> 96670", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96665, + "TargetID": 96670, + "Directional": true + }] + }, { + "ID": 6483, + "SourceStructureID": 483, + "TargetStructureID": 96668, + "Label": "483-96668 via Ribbon Synapse from 96665 -> 96669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96665, + "TargetID": 96669, + "Directional": true + }] + }, { + "ID": 6484, + "SourceStructureID": 483, + "TargetStructureID": 97674, + "Label": "483-97674 via Ribbon Synapse from 97673 -> 97675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97673, + "TargetID": 97675, + "Directional": true + }] + }, { + "ID": 6485, + "SourceStructureID": 483, + "TargetStructureID": 101187, + "Label": "483-101187 via Ribbon Synapse from 92326 -> 103495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92326, + "TargetID": 103495, + "Directional": true + }] + }, { + "ID": 6486, + "SourceStructureID": 483, + "TargetStructureID": 102042, + "Label": "483-102042 via Ribbon Synapse from 6711 -> 102046, 26827 -> 102045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6711, + "TargetID": 102046, + "Directional": true + }, { + "SourceID": 26827, + "TargetID": 102045, + "Directional": true + }] + }, { + "ID": 6487, + "SourceStructureID": 483, + "TargetStructureID": 102051, + "Label": "483-102051 via Ribbon Synapse from 26828 -> 102052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26828, + "TargetID": 102052, + "Directional": true + }] + }, { + "ID": 6488, + "SourceStructureID": 483, + "TargetStructureID": 102053, + "Label": "483-102053 via Ribbon Synapse from 102050 -> 102054", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102050, + "TargetID": 102054, + "Directional": true + }] + }, { + "ID": 6489, + "SourceStructureID": 483, + "TargetStructureID": 102055, + "Label": "483-102055 via Ribbon Synapse from 26828 -> 102056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26828, + "TargetID": 102056, + "Directional": true + }] + }, { + "ID": 6490, + "SourceStructureID": 483, + "TargetStructureID": 102059, + "Label": "483-102059 via Ribbon Synapse from 6820 -> 102060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6820, + "TargetID": 102060, + "Directional": true + }] + }, { + "ID": 6491, + "SourceStructureID": 483, + "TargetStructureID": 102063, + "Label": "483-102063 via BC Conventional Synapse from 102062 -> 102064", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102062, + "TargetID": 102064, + "Directional": true + }] + }, { + "ID": 6492, + "SourceStructureID": 483, + "TargetStructureID": 102067, + "Label": "483-102067 via Ribbon Synapse from 26831 -> 102069", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26831, + "TargetID": 102069, + "Directional": true + }] + }, { + "ID": 6493, + "SourceStructureID": 483, + "TargetStructureID": 102070, + "Label": "483-102070 via Ribbon Synapse from 6825 -> 102071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6825, + "TargetID": 102071, + "Directional": true + }] + }, { + "ID": 6494, + "SourceStructureID": 483, + "TargetStructureID": 102072, + "Label": "483-102072 via Ribbon Synapse from 6826 -> 102073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6826, + "TargetID": 102073, + "Directional": true + }] + }, { + "ID": 6495, + "SourceStructureID": 483, + "TargetStructureID": 102078, + "Label": "483-102078 via Ribbon Synapse from 6849 -> 102081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6849, + "TargetID": 102081, + "Directional": true + }] + }, { + "ID": 6496, + "SourceStructureID": 483, + "TargetStructureID": 102079, + "Label": "483-102079 via Ribbon Synapse from 6849 -> 102080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6849, + "TargetID": 102080, + "Directional": true + }] + }, { + "ID": 6497, + "SourceStructureID": 483, + "TargetStructureID": 102085, + "Label": "483-102085 via BC Conventional Synapse from 102084 -> 102086", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102084, + "TargetID": 102086, + "Directional": true + }] + }, { + "ID": 6498, + "SourceStructureID": 483, + "TargetStructureID": 102087, + "Label": "483-102087 via BC Conventional Synapse from 102089 -> 102088", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102089, + "TargetID": 102088, + "Directional": true + }] + }, { + "ID": 6499, + "SourceStructureID": 483, + "TargetStructureID": 102090, + "Label": "483-102090 via Ribbon Synapse from 6828 -> 102091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6828, + "TargetID": 102091, + "Directional": true + }] + }, { + "ID": 6500, + "SourceStructureID": 483, + "TargetStructureID": 102096, + "Label": "483-102096 via Ribbon Synapse from 102095 -> 134079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102095, + "TargetID": 134079, + "Directional": true + }] + }, { + "ID": 6501, + "SourceStructureID": 483, + "TargetStructureID": 102101, + "Label": "483-102101 via Ribbon Synapse from 102103 -> 102102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102103, + "TargetID": 102102, + "Directional": true + }] + }, { + "ID": 6502, + "SourceStructureID": 483, + "TargetStructureID": 102113, + "Label": "483-102113 via Ribbon Synapse from 6847 -> 102114", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6847, + "TargetID": 102114, + "Directional": true + }] + }, { + "ID": 6503, + "SourceStructureID": 483, + "TargetStructureID": 102118, + "Label": "483-102118 via Ribbon Synapse from 58611 -> 102120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58611, + "TargetID": 102120, + "Directional": true + }] + }, { + "ID": 6504, + "SourceStructureID": 483, + "TargetStructureID": 102122, + "Label": "483-102122 via Ribbon Synapse from 58611 -> 102123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58611, + "TargetID": 102123, + "Directional": true + }] + }, { + "ID": 6505, + "SourceStructureID": 483, + "TargetStructureID": 102129, + "Label": "483-102129 via Ribbon Synapse from 58613 -> 102134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58613, + "TargetID": 102134, + "Directional": true + }] + }, { + "ID": 6506, + "SourceStructureID": 483, + "TargetStructureID": 102135, + "Label": "483-102135 via Ribbon Synapse from 58612 -> 102137", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58612, + "TargetID": 102137, + "Directional": true + }] + }, { + "ID": 6507, + "SourceStructureID": 483, + "TargetStructureID": 102136, + "Label": "483-102136 via Ribbon Synapse from 58612 -> 102138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58612, + "TargetID": 102138, + "Directional": true + }] + }, { + "ID": 6508, + "SourceStructureID": 483, + "TargetStructureID": 102147, + "Label": "483-102147 via BC Conventional Synapse from 102146 -> 102148", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102146, + "TargetID": 102148, + "Directional": true + }] + }, { + "ID": 6509, + "SourceStructureID": 483, + "TargetStructureID": 102153, + "Label": "483-102153 via Ribbon Synapse from 6832 -> 102155", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6832, + "TargetID": 102155, + "Directional": true + }] + }, { + "ID": 6510, + "SourceStructureID": 483, + "TargetStructureID": 102179, + "Label": "483-102179 via Ribbon Synapse from 6842 -> 102180", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6842, + "TargetID": 102180, + "Directional": true + }] + }, { + "ID": 6511, + "SourceStructureID": 483, + "TargetStructureID": 102182, + "Label": "483-102182 via Ribbon Synapse from 6837 -> 102183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6837, + "TargetID": 102183, + "Directional": true + }] + }, { + "ID": 6512, + "SourceStructureID": 483, + "TargetStructureID": 102184, + "Label": "483-102184 via Ribbon Synapse from 6837 -> 102185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6837, + "TargetID": 102185, + "Directional": true + }] + }, { + "ID": 6513, + "SourceStructureID": 483, + "TargetStructureID": 102187, + "Label": "483-102187 via Ribbon Synapse from 6836 -> 102188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6836, + "TargetID": 102188, + "Directional": true + }] + }, { + "ID": 6514, + "SourceStructureID": 483, + "TargetStructureID": 102189, + "Label": "483-102189 via BC Conventional Synapse from 102166 -> 102190", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102166, + "TargetID": 102190, + "Directional": true + }] + }, { + "ID": 6515, + "SourceStructureID": 483, + "TargetStructureID": 102196, + "Label": "483-102196 via Ribbon Synapse from 26796 -> 102199", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26796, + "TargetID": 102199, + "Directional": true + }] + }, { + "ID": 6516, + "SourceStructureID": 483, + "TargetStructureID": 102202, + "Label": "483-102202 via Ribbon Synapse from 26796 -> 102203, 102214 -> 102215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26796, + "TargetID": 102203, + "Directional": true + }, { + "SourceID": 102214, + "TargetID": 102215, + "Directional": true + }] + }, { + "ID": 6517, + "SourceStructureID": 483, + "TargetStructureID": 102216, + "Label": "483-102216 via Ribbon Synapse from 102214 -> 102217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102214, + "TargetID": 102217, + "Directional": true + }] + }, { + "ID": 6518, + "SourceStructureID": 483, + "TargetStructureID": 102218, + "Label": "483-102218 via Ribbon Synapse from 26793 -> 102219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26793, + "TargetID": 102219, + "Directional": true + }] + }, { + "ID": 6519, + "SourceStructureID": 483, + "TargetStructureID": 102226, + "Label": "483-102226 via Ribbon Synapse from 19999 -> 102227", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19999, + "TargetID": 102227, + "Directional": true + }] + }, { + "ID": 6520, + "SourceStructureID": 483, + "TargetStructureID": 102232, + "Label": "483-102232 via BC Conventional Synapse from 102234 -> 102233", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102234, + "TargetID": 102233, + "Directional": true + }] + }, { + "ID": 6521, + "SourceStructureID": 483, + "TargetStructureID": 102235, + "Label": "483-102235 via Ribbon Synapse from 102212 -> 102239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102212, + "TargetID": 102239, + "Directional": true + }] + }, { + "ID": 6522, + "SourceStructureID": 483, + "TargetStructureID": 102237, + "Label": "483-102237 via Ribbon Synapse from 102212 -> 102240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102212, + "TargetID": 102240, + "Directional": true + }] + }, { + "ID": 6523, + "SourceStructureID": 483, + "TargetStructureID": 102241, + "Label": "483-102241 via Ribbon Synapse from 102212 -> 102242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102212, + "TargetID": 102242, + "Directional": true + }] + }, { + "ID": 6524, + "SourceStructureID": 483, + "TargetStructureID": 102244, + "Label": "483-102244 via BC Conventional Synapse from 102243 -> 102245", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102243, + "TargetID": 102245, + "Directional": true + }] + }, { + "ID": 6525, + "SourceStructureID": 483, + "TargetStructureID": 102248, + "Label": "483-102248 via Ribbon Synapse from 102247 -> 102249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102247, + "TargetID": 102249, + "Directional": true + }] + }, { + "ID": 6526, + "SourceStructureID": 483, + "TargetStructureID": 102250, + "Label": "483-102250 via BC Conventional Synapse from 102253 -> 102252", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102253, + "TargetID": 102252, + "Directional": true + }] + }, { + "ID": 6527, + "SourceStructureID": 483, + "TargetStructureID": 102257, + "Label": "483-102257 via BC Conventional Synapse from 102256 -> 102258", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102256, + "TargetID": 102258, + "Directional": true + }] + }, { + "ID": 6528, + "SourceStructureID": 483, + "TargetStructureID": 102259, + "Label": "483-102259 via Ribbon Synapse from 26795 -> 102260", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26795, + "TargetID": 102260, + "Directional": true + }] + }, { + "ID": 6529, + "SourceStructureID": 483, + "TargetStructureID": 102262, + "Label": "483-102262 via Ribbon Synapse from 26841 -> 102263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26841, + "TargetID": 102263, + "Directional": true + }] + }, { + "ID": 6530, + "SourceStructureID": 483, + "TargetStructureID": 102264, + "Label": "483-102264 via Ribbon Synapse from 102266 -> 102265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102266, + "TargetID": 102265, + "Directional": true + }] + }, { + "ID": 6531, + "SourceStructureID": 483, + "TargetStructureID": 102267, + "Label": "483-102267 via Ribbon Synapse from 102266 -> 102268", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102266, + "TargetID": 102268, + "Directional": true + }] + }, { + "ID": 6532, + "SourceStructureID": 483, + "TargetStructureID": 102280, + "Label": "483-102280 via BC Conventional Synapse from 102279 -> 102281", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102279, + "TargetID": 102281, + "Directional": true + }] + }, { + "ID": 6533, + "SourceStructureID": 483, + "TargetStructureID": 102282, + "Label": "483-102282 via Ribbon Synapse from 26801 -> 102283", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26801, + "TargetID": 102283, + "Directional": true + }] + }, { + "ID": 6534, + "SourceStructureID": 483, + "TargetStructureID": 102288, + "Label": "483-102288 via Ribbon Synapse from 26810 -> 102289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26810, + "TargetID": 102289, + "Directional": true + }] + }, { + "ID": 6535, + "SourceStructureID": 483, + "TargetStructureID": 102290, + "Label": "483-102290 via Ribbon Synapse from 26810 -> 102291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26810, + "TargetID": 102291, + "Directional": true + }] + }, { + "ID": 6536, + "SourceStructureID": 483, + "TargetStructureID": 102293, + "Label": "483-102293 via Ribbon Synapse from 26802 -> 102294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26802, + "TargetID": 102294, + "Directional": true + }] + }, { + "ID": 6537, + "SourceStructureID": 483, + "TargetStructureID": 102298, + "Label": "483-102298 via BC Conventional Synapse from 102300 -> 102299", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102300, + "TargetID": 102299, + "Directional": true + }] + }, { + "ID": 6538, + "SourceStructureID": 483, + "TargetStructureID": 102301, + "Label": "483-102301 via BC Conventional Synapse from 102305 -> 102304", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102305, + "TargetID": 102304, + "Directional": true + }] + }, { + "ID": 6539, + "SourceStructureID": 483, + "TargetStructureID": 102302, + "Label": "483-102302 via BC Conventional Synapse from 102306 -> 102303", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102306, + "TargetID": 102303, + "Directional": true + }] + }, { + "ID": 6540, + "SourceStructureID": 483, + "TargetStructureID": 102312, + "Label": "483-102312 via Ribbon Synapse from 38908 -> 102313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38908, + "TargetID": 102313, + "Directional": true + }] + }, { + "ID": 6541, + "SourceStructureID": 483, + "TargetStructureID": 102318, + "Label": "483-102318 via BC Conventional Synapse from 102320 -> 102319", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102320, + "TargetID": 102319, + "Directional": true + }] + }, { + "ID": 6542, + "SourceStructureID": 483, + "TargetStructureID": 102323, + "Label": "483-102323 via Ribbon Synapse from 26815 -> 102324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26815, + "TargetID": 102324, + "Directional": true + }] + }, { + "ID": 6543, + "SourceStructureID": 483, + "TargetStructureID": 102327, + "Label": "483-102327 via BC Conventional Synapse from 102329 -> 102328", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102329, + "TargetID": 102328, + "Directional": true + }] + }, { + "ID": 6544, + "SourceStructureID": 483, + "TargetStructureID": 102330, + "Label": "483-102330 via BC Conventional Synapse from 102332 -> 102331", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102332, + "TargetID": 102331, + "Directional": true + }] + }, { + "ID": 6545, + "SourceStructureID": 483, + "TargetStructureID": 102343, + "Label": "483-102343 via Ribbon Synapse from 26833 -> 102344", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26833, + "TargetID": 102344, + "Directional": true + }] + }, { + "ID": 6546, + "SourceStructureID": 483, + "TargetStructureID": 102358, + "Label": "483-102358 via BC Conventional Synapse from 102357 -> 102359", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102357, + "TargetID": 102359, + "Directional": true + }] + }, { + "ID": 6547, + "SourceStructureID": 483, + "TargetStructureID": 102362, + "Label": "483-102362 via Ribbon Synapse from 20341 -> 102370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20341, + "TargetID": 102370, + "Directional": true + }] + }, { + "ID": 6548, + "SourceStructureID": 483, + "TargetStructureID": 102364, + "Label": "483-102364 via Ribbon Synapse from 20340 -> 102365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20340, + "TargetID": 102365, + "Directional": true + }] + }, { + "ID": 6549, + "SourceStructureID": 483, + "TargetStructureID": 102368, + "Label": "483-102368 via Ribbon Synapse from 20341 -> 102369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20341, + "TargetID": 102369, + "Directional": true + }] + }, { + "ID": 6550, + "SourceStructureID": 483, + "TargetStructureID": 102371, + "Label": "483-102371 via Ribbon Synapse from 26837 -> 102372", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26837, + "TargetID": 102372, + "Directional": true + }] + }, { + "ID": 6551, + "SourceStructureID": 483, + "TargetStructureID": 102387, + "Label": "483-102387 via Ribbon Synapse from 26820 -> 102388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26820, + "TargetID": 102388, + "Directional": true + }] + }, { + "ID": 6552, + "SourceStructureID": 483, + "TargetStructureID": 102391, + "Label": "483-102391 via Ribbon Synapse from 26820 -> 102392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26820, + "TargetID": 102392, + "Directional": true + }] + }, { + "ID": 6553, + "SourceStructureID": 483, + "TargetStructureID": 102403, + "Label": "483-102403 via Ribbon Synapse from 20345 -> 102404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20345, + "TargetID": 102404, + "Directional": true + }] + }, { + "ID": 6554, + "SourceStructureID": 483, + "TargetStructureID": 102408, + "Label": "483-102408 via BC Conventional Synapse from 20350 -> 102409", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20350, + "TargetID": 102409, + "Directional": true + }] + }, { + "ID": 6555, + "SourceStructureID": 483, + "TargetStructureID": 102410, + "Label": "483-102410 via BC Conventional Synapse from 102407 -> 102411", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102407, + "TargetID": 102411, + "Directional": true + }] + }, { + "ID": 6556, + "SourceStructureID": 483, + "TargetStructureID": 102423, + "Label": "483-102423 via BC Conventional Synapse from 102548 -> 102424", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102548, + "TargetID": 102424, + "Directional": true + }] + }, { + "ID": 6557, + "SourceStructureID": 483, + "TargetStructureID": 102425, + "Label": "483-102425 via Ribbon Synapse from 26821 -> 102550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26821, + "TargetID": 102550, + "Directional": true + }] + }, { + "ID": 6558, + "SourceStructureID": 483, + "TargetStructureID": 102435, + "Label": "483-102435 via Ribbon Synapse from 20392 -> 102436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20392, + "TargetID": 102436, + "Directional": true + }] + }, { + "ID": 6559, + "SourceStructureID": 483, + "TargetStructureID": 102443, + "Label": "483-102443 via BC Conventional Synapse from 102434 -> 102445", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102434, + "TargetID": 102445, + "Directional": true + }] + }, { + "ID": 6560, + "SourceStructureID": 483, + "TargetStructureID": 102449, + "Label": "483-102449 via Ribbon Synapse from 20395 -> 102450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20395, + "TargetID": 102450, + "Directional": true + }] + }, { + "ID": 6561, + "SourceStructureID": 483, + "TargetStructureID": 102451, + "Label": "483-102451 via Ribbon Synapse from 20394 -> 102455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20394, + "TargetID": 102455, + "Directional": true + }] + }, { + "ID": 6562, + "SourceStructureID": 483, + "TargetStructureID": 102453, + "Label": "483-102453 via Ribbon Synapse from 20393 -> 102454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20393, + "TargetID": 102454, + "Directional": true + }] + }, { + "ID": 6563, + "SourceStructureID": 483, + "TargetStructureID": 102470, + "Label": "483-102470 via Ribbon Synapse from 26819 -> 102472, 102469 -> 102472", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26819, + "TargetID": 102472, + "Directional": true + }, { + "SourceID": 102469, + "TargetID": 102472, + "Directional": true + }] + }, { + "ID": 6564, + "SourceStructureID": 483, + "TargetStructureID": 102473, + "Label": "483-102473 via Ribbon Synapse from 102469 -> 102474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102469, + "TargetID": 102474, + "Directional": true + }] + }, { + "ID": 6565, + "SourceStructureID": 483, + "TargetStructureID": 102479, + "Label": "483-102479 via Ribbon Synapse from 26817 -> 102481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26817, + "TargetID": 102481, + "Directional": true + }] + }, { + "ID": 6566, + "SourceStructureID": 483, + "TargetStructureID": 102484, + "Label": "483-102484 via Ribbon Synapse from 26817 -> 102485", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26817, + "TargetID": 102485, + "Directional": true + }] + }, { + "ID": 6567, + "SourceStructureID": 483, + "TargetStructureID": 102487, + "Label": "483-102487 via Ribbon Synapse from 26783 -> 102488", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26783, + "TargetID": 102488, + "Directional": true + }] + }, { + "ID": 6568, + "SourceStructureID": 483, + "TargetStructureID": 102491, + "Label": "483-102491 via Ribbon Synapse from 26783 -> 102492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26783, + "TargetID": 102492, + "Directional": true + }] + }, { + "ID": 6569, + "SourceStructureID": 483, + "TargetStructureID": 102493, + "Label": "483-102493 via Ribbon Synapse from 26783 -> 102495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26783, + "TargetID": 102495, + "Directional": true + }] + }, { + "ID": 6570, + "SourceStructureID": 483, + "TargetStructureID": 102496, + "Label": "483-102496 via Ribbon Synapse from 26782 -> 102497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26782, + "TargetID": 102497, + "Directional": true + }] + }, { + "ID": 6571, + "SourceStructureID": 483, + "TargetStructureID": 102499, + "Label": "483-102499 via Ribbon Synapse from 26782 -> 102500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26782, + "TargetID": 102500, + "Directional": true + }] + }, { + "ID": 6572, + "SourceStructureID": 483, + "TargetStructureID": 102502, + "Label": "483-102502 via BC Conventional Synapse from 102501 -> 102503", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102501, + "TargetID": 102503, + "Directional": true + }] + }, { + "ID": 6573, + "SourceStructureID": 483, + "TargetStructureID": 102511, + "Label": "483-102511 via Ribbon Synapse from 20361 -> 102512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20361, + "TargetID": 102512, + "Directional": true + }] + }, { + "ID": 6574, + "SourceStructureID": 483, + "TargetStructureID": 102513, + "Label": "483-102513 via Ribbon Synapse from 20361 -> 102514", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20361, + "TargetID": 102514, + "Directional": true + }] + }, { + "ID": 6575, + "SourceStructureID": 483, + "TargetStructureID": 102524, + "Label": "483-102524 via Ribbon Synapse from 75947 -> 102525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75947, + "TargetID": 102525, + "Directional": true + }] + }, { + "ID": 6576, + "SourceStructureID": 483, + "TargetStructureID": 102527, + "Label": "483-102527 via BC Conventional Synapse from 102526 -> 102528", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102526, + "TargetID": 102528, + "Directional": true + }] + }, { + "ID": 6577, + "SourceStructureID": 483, + "TargetStructureID": 102527, + "Label": "483-102527 via Ribbon Synapse from 94710 -> 102539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94710, + "TargetID": 102539, + "Directional": true + }] + }, { + "ID": 6578, + "SourceStructureID": 483, + "TargetStructureID": 102529, + "Label": "483-102529 via Ribbon Synapse from 20358 -> 102530", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20358, + "TargetID": 102530, + "Directional": true + }] + }, { + "ID": 6579, + "SourceStructureID": 483, + "TargetStructureID": 102531, + "Label": "483-102531 via Ribbon Synapse from 20358 -> 102532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20358, + "TargetID": 102532, + "Directional": true + }] + }, { + "ID": 6580, + "SourceStructureID": 483, + "TargetStructureID": 102540, + "Label": "483-102540 via Ribbon Synapse from 94710 -> 102541", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94710, + "TargetID": 102541, + "Directional": true + }] + }, { + "ID": 6581, + "SourceStructureID": 483, + "TargetStructureID": 102545, + "Label": "483-102545 via Ribbon Synapse from 26819 -> 102546", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26819, + "TargetID": 102546, + "Directional": true + }] + }, { + "ID": 6582, + "SourceStructureID": 483, + "TargetStructureID": 102555, + "Label": "483-102555 via Ribbon Synapse from 6708 -> 102560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6708, + "TargetID": 102560, + "Directional": true + }] + }, { + "ID": 6583, + "SourceStructureID": 483, + "TargetStructureID": 102565, + "Label": "483-102565 via Ribbon Synapse from 6714 -> 102567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6714, + "TargetID": 102567, + "Directional": true + }] + }, { + "ID": 6584, + "SourceStructureID": 483, + "TargetStructureID": 102568, + "Label": "483-102568 via Ribbon Synapse from 6714 -> 102569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6714, + "TargetID": 102569, + "Directional": true + }] + }, { + "ID": 6585, + "SourceStructureID": 483, + "TargetStructureID": 102571, + "Label": "483-102571 via BC Conventional Synapse from 102570 -> 102572", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102570, + "TargetID": 102572, + "Directional": true + }] + }, { + "ID": 6586, + "SourceStructureID": 483, + "TargetStructureID": 102575, + "Label": "483-102575 via BC Conventional Synapse from 102574 -> 102576", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102574, + "TargetID": 102576, + "Directional": true + }] + }, { + "ID": 6587, + "SourceStructureID": 483, + "TargetStructureID": 102582, + "Label": "483-102582 via Ribbon Synapse from 134008 -> 102583", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134008, + "TargetID": 102583, + "Directional": true + }] + }, { + "ID": 6588, + "SourceStructureID": 483, + "TargetStructureID": 102590, + "Label": "483-102590 via Ribbon Synapse from 6721 -> 102591", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6721, + "TargetID": 102591, + "Directional": true + }] + }, { + "ID": 6589, + "SourceStructureID": 483, + "TargetStructureID": 102593, + "Label": "483-102593 via BC Conventional Synapse from 102592 -> 102594", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102592, + "TargetID": 102594, + "Directional": true + }] + }, { + "ID": 6590, + "SourceStructureID": 483, + "TargetStructureID": 102596, + "Label": "483-102596 via BC Conventional Synapse from 102595 -> 102597", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102595, + "TargetID": 102597, + "Directional": true + }] + }, { + "ID": 6591, + "SourceStructureID": 483, + "TargetStructureID": 102603, + "Label": "483-102603 via Ribbon Synapse from 6720 -> 102606", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6720, + "TargetID": 102606, + "Directional": true + }] + }, { + "ID": 6592, + "SourceStructureID": 483, + "TargetStructureID": 102607, + "Label": "483-102607 via Ribbon Synapse from 6720 -> 102611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6720, + "TargetID": 102611, + "Directional": true + }] + }, { + "ID": 6593, + "SourceStructureID": 483, + "TargetStructureID": 102626, + "Label": "483-102626 via Ribbon Synapse from 102625 -> 102627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102625, + "TargetID": 102627, + "Directional": true + }] + }, { + "ID": 6594, + "SourceStructureID": 483, + "TargetStructureID": 102631, + "Label": "483-102631 via Ribbon Synapse from 102622 -> 102632", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102622, + "TargetID": 102632, + "Directional": true + }] + }, { + "ID": 6595, + "SourceStructureID": 483, + "TargetStructureID": 102651, + "Label": "483-102651 via Ribbon Synapse from 94568 -> 102652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94568, + "TargetID": 102652, + "Directional": true + }] + }, { + "ID": 6596, + "SourceStructureID": 483, + "TargetStructureID": 102691, + "Label": "483-102691 via Ribbon Synapse from 26784 -> 102692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26784, + "TargetID": 102692, + "Directional": true + }] + }, { + "ID": 6597, + "SourceStructureID": 483, + "TargetStructureID": 102720, + "Label": "483-102720 via Ribbon Synapse from 102803 -> 102809", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102803, + "TargetID": 102809, + "Directional": true + }] + }, { + "ID": 6598, + "SourceStructureID": 483, + "TargetStructureID": 102726, + "Label": "483-102726 via Ribbon Synapse from 26786 -> 102732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26786, + "TargetID": 102732, + "Directional": true + }] + }, { + "ID": 6599, + "SourceStructureID": 483, + "TargetStructureID": 102734, + "Label": "483-102734 via BC Conventional Synapse from 102733 -> 102735", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102733, + "TargetID": 102735, + "Directional": true + }] + }, { + "ID": 6600, + "SourceStructureID": 483, + "TargetStructureID": 102741, + "Label": "483-102741 via Ribbon Synapse from 6763 -> 102743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6763, + "TargetID": 102743, + "Directional": true + }] + }, { + "ID": 6601, + "SourceStructureID": 483, + "TargetStructureID": 102748, + "Label": "483-102748 via Ribbon Synapse from 6761 -> 102765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6761, + "TargetID": 102765, + "Directional": true + }] + }, { + "ID": 6602, + "SourceStructureID": 483, + "TargetStructureID": 102773, + "Label": "483-102773 via BC Conventional Synapse from 102771 -> 102774", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102771, + "TargetID": 102774, + "Directional": true + }] + }, { + "ID": 6603, + "SourceStructureID": 483, + "TargetStructureID": 102807, + "Label": "483-102807 via Ribbon Synapse from 102803 -> 102808, 102812 -> 102817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102803, + "TargetID": 102808, + "Directional": true + }, { + "SourceID": 102812, + "TargetID": 102817, + "Directional": true + }] + }, { + "ID": 6604, + "SourceStructureID": 483, + "TargetStructureID": 102810, + "Label": "483-102810 via Ribbon Synapse from 102803 -> 102811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102803, + "TargetID": 102811, + "Directional": true + }] + }, { + "ID": 6605, + "SourceStructureID": 483, + "TargetStructureID": 102813, + "Label": "483-102813 via Ribbon Synapse from 102812 -> 102814", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102812, + "TargetID": 102814, + "Directional": true + }] + }, { + "ID": 6606, + "SourceStructureID": 483, + "TargetStructureID": 102825, + "Label": "483-102825 via Ribbon Synapse from 102824 -> 102826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102824, + "TargetID": 102826, + "Directional": true + }] + }, { + "ID": 6607, + "SourceStructureID": 483, + "TargetStructureID": 102828, + "Label": "483-102828 via BC Conventional Synapse from 102827 -> 102829", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102827, + "TargetID": 102829, + "Directional": true + }] + }, { + "ID": 6608, + "SourceStructureID": 483, + "TargetStructureID": 102838, + "Label": "483-102838 via Ribbon Synapse from 31020 -> 102841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31020, + "TargetID": 102841, + "Directional": true + }] + }, { + "ID": 6609, + "SourceStructureID": 483, + "TargetStructureID": 102845, + "Label": "483-102845 via Ribbon Synapse from 31020 -> 102847", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31020, + "TargetID": 102847, + "Directional": true + }] + }, { + "ID": 6610, + "SourceStructureID": 483, + "TargetStructureID": 102854, + "Label": "483-102854 via BC Conventional Synapse from 102853 -> 102855", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102853, + "TargetID": 102855, + "Directional": true + }] + }, { + "ID": 6611, + "SourceStructureID": 483, + "TargetStructureID": 102856, + "Label": "483-102856 via Ribbon Synapse from 102843 -> 102857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102843, + "TargetID": 102857, + "Directional": true + }] + }, { + "ID": 6612, + "SourceStructureID": 483, + "TargetStructureID": 102863, + "Label": "483-102863 via Ribbon Synapse from 92041 -> 102866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92041, + "TargetID": 102866, + "Directional": true + }] + }, { + "ID": 6613, + "SourceStructureID": 483, + "TargetStructureID": 102867, + "Label": "483-102867 via Ribbon Synapse from 92041 -> 102868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92041, + "TargetID": 102868, + "Directional": true + }] + }, { + "ID": 6614, + "SourceStructureID": 483, + "TargetStructureID": 102869, + "Label": "483-102869 via Ribbon Synapse from 92041 -> 102870", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92041, + "TargetID": 102870, + "Directional": true + }] + }, { + "ID": 6615, + "SourceStructureID": 483, + "TargetStructureID": 102879, + "Label": "483-102879 via Ribbon Synapse from 31021 -> 102887, 31022 -> 102881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31021, + "TargetID": 102887, + "Directional": true + }, { + "SourceID": 31022, + "TargetID": 102881, + "Directional": true + }] + }, { + "ID": 6616, + "SourceStructureID": 483, + "TargetStructureID": 102884, + "Label": "483-102884 via Ribbon Synapse from 31021 -> 102886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31021, + "TargetID": 102886, + "Directional": true + }] + }, { + "ID": 6617, + "SourceStructureID": 483, + "TargetStructureID": 102888, + "Label": "483-102888 via Ribbon Synapse from 31021 -> 102889", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31021, + "TargetID": 102889, + "Directional": true + }] + }, { + "ID": 6618, + "SourceStructureID": 483, + "TargetStructureID": 102892, + "Label": "483-102892 via Ribbon Synapse from 31022 -> 102893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31022, + "TargetID": 102893, + "Directional": true + }] + }, { + "ID": 6619, + "SourceStructureID": 483, + "TargetStructureID": 103056, + "Label": "483-103056 via Ribbon Synapse from 31023 -> 103057", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31023, + "TargetID": 103057, + "Directional": true + }] + }, { + "ID": 6620, + "SourceStructureID": 483, + "TargetStructureID": 103058, + "Label": "483-103058 via Ribbon Synapse from 31023 -> 103059, 103081 -> 103082", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31023, + "TargetID": 103059, + "Directional": true + }, { + "SourceID": 103081, + "TargetID": 103082, + "Directional": true + }] + }, { + "ID": 6621, + "SourceStructureID": 483, + "TargetStructureID": 103060, + "Label": "483-103060 via Ribbon Synapse from 31023 -> 103061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31023, + "TargetID": 103061, + "Directional": true + }] + }, { + "ID": 6622, + "SourceStructureID": 483, + "TargetStructureID": 103067, + "Label": "483-103067 via BC Conventional Synapse from 103066 -> 103068", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103066, + "TargetID": 103068, + "Directional": true + }] + }, { + "ID": 6623, + "SourceStructureID": 483, + "TargetStructureID": 103072, + "Label": "483-103072 via BC Conventional Synapse from 103074 -> 103073", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103074, + "TargetID": 103073, + "Directional": true + }] + }, { + "ID": 6624, + "SourceStructureID": 483, + "TargetStructureID": 103079, + "Label": "483-103079 via Ribbon Synapse from 103078 -> 103080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103078, + "TargetID": 103080, + "Directional": true + }] + }, { + "ID": 6625, + "SourceStructureID": 483, + "TargetStructureID": 103084, + "Label": "483-103084 via BC Conventional Synapse from 103092 -> 103093", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103092, + "TargetID": 103093, + "Directional": true + }] + }, { + "ID": 6626, + "SourceStructureID": 483, + "TargetStructureID": 103086, + "Label": "483-103086 via Ribbon Synapse from 6725 -> 103087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6725, + "TargetID": 103087, + "Directional": true + }] + }, { + "ID": 6627, + "SourceStructureID": 483, + "TargetStructureID": 103097, + "Label": "483-103097 via Ribbon Synapse from 6728 -> 103099", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6728, + "TargetID": 103099, + "Directional": true + }] + }, { + "ID": 6628, + "SourceStructureID": 483, + "TargetStructureID": 103102, + "Label": "483-103102 via Ribbon Synapse from 6737 -> 103104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6737, + "TargetID": 103104, + "Directional": true + }] + }, { + "ID": 6629, + "SourceStructureID": 483, + "TargetStructureID": 103105, + "Label": "483-103105 via Ribbon Synapse from 6737 -> 103107", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6737, + "TargetID": 103107, + "Directional": true + }] + }, { + "ID": 6630, + "SourceStructureID": 483, + "TargetStructureID": 103108, + "Label": "483-103108 via Ribbon Synapse from 6729 -> 103109", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6729, + "TargetID": 103109, + "Directional": true + }] + }, { + "ID": 6631, + "SourceStructureID": 483, + "TargetStructureID": 103110, + "Label": "483-103110 via Ribbon Synapse from 6729 -> 103111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6729, + "TargetID": 103111, + "Directional": true + }] + }, { + "ID": 6632, + "SourceStructureID": 483, + "TargetStructureID": 103116, + "Label": "483-103116 via BC Conventional Synapse from 103115 -> 103117", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103115, + "TargetID": 103117, + "Directional": true + }] + }, { + "ID": 6633, + "SourceStructureID": 483, + "TargetStructureID": 103122, + "Label": "483-103122 via Ribbon Synapse from 6742 -> 103123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6742, + "TargetID": 103123, + "Directional": true + }] + }, { + "ID": 6634, + "SourceStructureID": 483, + "TargetStructureID": 103126, + "Label": "483-103126 via BC Conventional Synapse from 103134 -> 103127", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103134, + "TargetID": 103127, + "Directional": true + }] + }, { + "ID": 6635, + "SourceStructureID": 483, + "TargetStructureID": 103136, + "Label": "483-103136 via BC Conventional Synapse from 103135 -> 103137", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103135, + "TargetID": 103137, + "Directional": true + }] + }, { + "ID": 6636, + "SourceStructureID": 483, + "TargetStructureID": 103136, + "Label": "483-103136 via Ribbon Synapse from 28763 -> 103138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28763, + "TargetID": 103138, + "Directional": true + }] + }, { + "ID": 6637, + "SourceStructureID": 483, + "TargetStructureID": 103152, + "Label": "483-103152 via BC Conventional Synapse from 103151 -> 103153", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103151, + "TargetID": 103153, + "Directional": true + }] + }, { + "ID": 6638, + "SourceStructureID": 483, + "TargetStructureID": 103156, + "Label": "483-103156 via Ribbon Synapse from 103161 -> 103157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103161, + "TargetID": 103157, + "Directional": true + }] + }, { + "ID": 6639, + "SourceStructureID": 483, + "TargetStructureID": 103158, + "Label": "483-103158 via Ribbon Synapse from 103161 -> 103159", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103161, + "TargetID": 103159, + "Directional": true + }] + }, { + "ID": 6640, + "SourceStructureID": 483, + "TargetStructureID": 103165, + "Label": "483-103165 via Ribbon Synapse from 103161 -> 103166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103161, + "TargetID": 103166, + "Directional": true + }] + }, { + "ID": 6641, + "SourceStructureID": 483, + "TargetStructureID": 103173, + "Label": "483-103173 via BC Conventional Synapse from 103172 -> 103175", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103172, + "TargetID": 103175, + "Directional": true + }] + }, { + "ID": 6642, + "SourceStructureID": 483, + "TargetStructureID": 103179, + "Label": "483-103179 via BC Conventional Synapse from 103177 -> 103181", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103177, + "TargetID": 103181, + "Directional": true + }] + }, { + "ID": 6643, + "SourceStructureID": 483, + "TargetStructureID": 103192, + "Label": "483-103192 via Ribbon Synapse from 28764 -> 103193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28764, + "TargetID": 103193, + "Directional": true + }] + }, { + "ID": 6644, + "SourceStructureID": 483, + "TargetStructureID": 103195, + "Label": "483-103195 via Ribbon Synapse from 103194 -> 103196", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103194, + "TargetID": 103196, + "Directional": true + }] + }, { + "ID": 6645, + "SourceStructureID": 483, + "TargetStructureID": 103203, + "Label": "483-103203 via Ribbon Synapse from 28765 -> 103214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28765, + "TargetID": 103214, + "Directional": true + }] + }, { + "ID": 6646, + "SourceStructureID": 483, + "TargetStructureID": 103228, + "Label": "483-103228 via Ribbon Synapse from 28767 -> 103229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28767, + "TargetID": 103229, + "Directional": true + }] + }, { + "ID": 6647, + "SourceStructureID": 483, + "TargetStructureID": 103240, + "Label": "483-103240 via Ribbon Synapse from 28772 -> 103253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28772, + "TargetID": 103253, + "Directional": true + }] + }, { + "ID": 6648, + "SourceStructureID": 483, + "TargetStructureID": 103242, + "Label": "483-103242 via Ribbon Synapse from 28770 -> 103243", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28770, + "TargetID": 103243, + "Directional": true + }] + }, { + "ID": 6649, + "SourceStructureID": 483, + "TargetStructureID": 103272, + "Label": "483-103272 via Ribbon Synapse from 94594 -> 103273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94594, + "TargetID": 103273, + "Directional": true + }] + }, { + "ID": 6650, + "SourceStructureID": 483, + "TargetStructureID": 103275, + "Label": "483-103275 via Ribbon Synapse from 94594 -> 103276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94594, + "TargetID": 103276, + "Directional": true + }] + }, { + "ID": 6651, + "SourceStructureID": 483, + "TargetStructureID": 103287, + "Label": "483-103287 via Ribbon Synapse from 103290 -> 103288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103290, + "TargetID": 103288, + "Directional": true + }] + }, { + "ID": 6652, + "SourceStructureID": 483, + "TargetStructureID": 103291, + "Label": "483-103291 via Ribbon Synapse from 103290 -> 103292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103290, + "TargetID": 103292, + "Directional": true + }] + }, { + "ID": 6653, + "SourceStructureID": 483, + "TargetStructureID": 103296, + "Label": "483-103296 via Ribbon Synapse from 94596 -> 103297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94596, + "TargetID": 103297, + "Directional": true + }] + }, { + "ID": 6654, + "SourceStructureID": 483, + "TargetStructureID": 103302, + "Label": "483-103302 via BC Conventional Synapse from 103301 -> 103303", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103301, + "TargetID": 103303, + "Directional": true + }] + }, { + "ID": 6655, + "SourceStructureID": 483, + "TargetStructureID": 103305, + "Label": "483-103305 via Ribbon Synapse from 94595 -> 103306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94595, + "TargetID": 103306, + "Directional": true + }] + }, { + "ID": 6656, + "SourceStructureID": 483, + "TargetStructureID": 103307, + "Label": "483-103307 via Ribbon Synapse from 94595 -> 103308", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94595, + "TargetID": 103308, + "Directional": true + }] + }, { + "ID": 6657, + "SourceStructureID": 483, + "TargetStructureID": 103310, + "Label": "483-103310 via BC Conventional Synapse from 103309 -> 103311", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103309, + "TargetID": 103311, + "Directional": true + }] + }, { + "ID": 6658, + "SourceStructureID": 483, + "TargetStructureID": 103326, + "Label": "483-103326 via Ribbon Synapse from 6091 -> 103327", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6091, + "TargetID": 103327, + "Directional": true + }] + }, { + "ID": 6659, + "SourceStructureID": 483, + "TargetStructureID": 103331, + "Label": "483-103331 via Ribbon Synapse from 6091 -> 103333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6091, + "TargetID": 103333, + "Directional": true + }] + }, { + "ID": 6660, + "SourceStructureID": 483, + "TargetStructureID": 103334, + "Label": "483-103334 via Ribbon Synapse from 6094 -> 103337", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6094, + "TargetID": 103337, + "Directional": true + }] + }, { + "ID": 6661, + "SourceStructureID": 483, + "TargetStructureID": 103335, + "Label": "483-103335 via Ribbon Synapse from 6094 -> 103336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6094, + "TargetID": 103336, + "Directional": true + }] + }, { + "ID": 6662, + "SourceStructureID": 483, + "TargetStructureID": 103345, + "Label": "483-103345 via Ribbon Synapse from 103344 -> 103346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103344, + "TargetID": 103346, + "Directional": true + }] + }, { + "ID": 6663, + "SourceStructureID": 483, + "TargetStructureID": 103362, + "Label": "483-103362 via Ribbon Synapse from 103364 -> 103365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103364, + "TargetID": 103365, + "Directional": true + }] + }, { + "ID": 6664, + "SourceStructureID": 483, + "TargetStructureID": 103369, + "Label": "483-103369 via Ribbon Synapse from 6083 -> 103370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6083, + "TargetID": 103370, + "Directional": true + }] + }, { + "ID": 6665, + "SourceStructureID": 483, + "TargetStructureID": 103372, + "Label": "483-103372 via BC Conventional Synapse from 103371 -> 103373", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103371, + "TargetID": 103373, + "Directional": true + }] + }, { + "ID": 6666, + "SourceStructureID": 483, + "TargetStructureID": 103381, + "Label": "483-103381 via Ribbon Synapse from 6776 -> 103383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6776, + "TargetID": 103383, + "Directional": true + }] + }, { + "ID": 6667, + "SourceStructureID": 483, + "TargetStructureID": 103385, + "Label": "483-103385 via BC Conventional Synapse from 103384 -> 103386", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103384, + "TargetID": 103386, + "Directional": true + }] + }, { + "ID": 6668, + "SourceStructureID": 483, + "TargetStructureID": 103387, + "Label": "483-103387 via Ribbon Synapse from 6080 -> 103388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6080, + "TargetID": 103388, + "Directional": true + }] + }, { + "ID": 6669, + "SourceStructureID": 483, + "TargetStructureID": 103389, + "Label": "483-103389 via Ribbon Synapse from 6080 -> 103390", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6080, + "TargetID": 103390, + "Directional": true + }] + }, { + "ID": 6670, + "SourceStructureID": 483, + "TargetStructureID": 103392, + "Label": "483-103392 via Ribbon Synapse from 6776 -> 103393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6776, + "TargetID": 103393, + "Directional": true + }] + }, { + "ID": 6671, + "SourceStructureID": 483, + "TargetStructureID": 103397, + "Label": "483-103397 via BC Conventional Synapse from 103396 -> 103398", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103396, + "TargetID": 103398, + "Directional": true + }] + }, { + "ID": 6672, + "SourceStructureID": 483, + "TargetStructureID": 103408, + "Label": "483-103408 via BC Conventional Synapse from 103407 -> 103409", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103407, + "TargetID": 103409, + "Directional": true + }] + }, { + "ID": 6673, + "SourceStructureID": 483, + "TargetStructureID": 103411, + "Label": "483-103411 via Ribbon Synapse from 6771 -> 103412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6771, + "TargetID": 103412, + "Directional": true + }] + }, { + "ID": 6674, + "SourceStructureID": 483, + "TargetStructureID": 103422, + "Label": "483-103422 via Ribbon Synapse from 6773 -> 103424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6773, + "TargetID": 103424, + "Directional": true + }] + }, { + "ID": 6675, + "SourceStructureID": 483, + "TargetStructureID": 103425, + "Label": "483-103425 via Ribbon Synapse from 6773 -> 103426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6773, + "TargetID": 103426, + "Directional": true + }] + }, { + "ID": 6676, + "SourceStructureID": 483, + "TargetStructureID": 103427, + "Label": "483-103427 via Ribbon Synapse from 6773 -> 103428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6773, + "TargetID": 103428, + "Directional": true + }] + }, { + "ID": 6677, + "SourceStructureID": 483, + "TargetStructureID": 103433, + "Label": "483-103433 via BC Conventional Synapse from 103432 -> 103434", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103432, + "TargetID": 103434, + "Directional": true + }] + }, { + "ID": 6678, + "SourceStructureID": 483, + "TargetStructureID": 103435, + "Label": "483-103435 via Ribbon Synapse from 6088 -> 103436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6088, + "TargetID": 103436, + "Directional": true + }] + }, { + "ID": 6679, + "SourceStructureID": 483, + "TargetStructureID": 103437, + "Label": "483-103437 via Ribbon Synapse from 6088 -> 103438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6088, + "TargetID": 103438, + "Directional": true + }] + }, { + "ID": 6680, + "SourceStructureID": 483, + "TargetStructureID": 103440, + "Label": "483-103440 via Ribbon Synapse from 49798 -> 103448, 49798 -> 103449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49798, + "TargetID": 103448, + "Directional": true + }, { + "SourceID": 49798, + "TargetID": 103449, + "Directional": true + }] + }, { + "ID": 6681, + "SourceStructureID": 483, + "TargetStructureID": 103444, + "Label": "483-103444 via Ribbon Synapse from 49802 -> 103445", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49802, + "TargetID": 103445, + "Directional": true + }] + }, { + "ID": 6682, + "SourceStructureID": 483, + "TargetStructureID": 103446, + "Label": "483-103446 via Ribbon Synapse from 49798 -> 103447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49798, + "TargetID": 103447, + "Directional": true + }] + }, { + "ID": 6683, + "SourceStructureID": 483, + "TargetStructureID": 103450, + "Label": "483-103450 via Ribbon Synapse from 49798 -> 103451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49798, + "TargetID": 103451, + "Directional": true + }] + }, { + "ID": 6684, + "SourceStructureID": 483, + "TargetStructureID": 103452, + "Label": "483-103452 via BC Conventional Synapse from 148242 -> 148241", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148242, + "TargetID": 148241, + "Directional": true + }] + }, { + "ID": 6685, + "SourceStructureID": 483, + "TargetStructureID": 103460, + "Label": "483-103460 via Ribbon Synapse from 97735 -> 103461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97735, + "TargetID": 103461, + "Directional": true + }] + }, { + "ID": 6686, + "SourceStructureID": 483, + "TargetStructureID": 103466, + "Label": "483-103466 via BC Conventional Synapse from 97699 -> 103467", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97699, + "TargetID": 103467, + "Directional": true + }] + }, { + "ID": 6687, + "SourceStructureID": 483, + "TargetStructureID": 103468, + "Label": "483-103468 via Ribbon Synapse from 97698 -> 103469", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97698, + "TargetID": 103469, + "Directional": true + }] + }, { + "ID": 6688, + "SourceStructureID": 483, + "TargetStructureID": 103470, + "Label": "483-103470 via BC Conventional Synapse from 97702 -> 103471", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97702, + "TargetID": 103471, + "Directional": true + }] + }, { + "ID": 6689, + "SourceStructureID": 483, + "TargetStructureID": 103473, + "Label": "483-103473 via Ribbon Synapse from 6778 -> 103474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6778, + "TargetID": 103474, + "Directional": true + }] + }, { + "ID": 6690, + "SourceStructureID": 483, + "TargetStructureID": 103481, + "Label": "483-103481 via Ribbon Synapse from 92311 -> 103482", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92311, + "TargetID": 103482, + "Directional": true + }] + }, { + "ID": 6691, + "SourceStructureID": 483, + "TargetStructureID": 103483, + "Label": "483-103483 via Ribbon Synapse from 92315 -> 103484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92315, + "TargetID": 103484, + "Directional": true + }] + }, { + "ID": 6692, + "SourceStructureID": 483, + "TargetStructureID": 103496, + "Label": "483-103496 via Ribbon Synapse from 92326 -> 103497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92326, + "TargetID": 103497, + "Directional": true + }] + }, { + "ID": 6693, + "SourceStructureID": 483, + "TargetStructureID": 103501, + "Label": "483-103501 via Ribbon Synapse from 92327 -> 103502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92327, + "TargetID": 103502, + "Directional": true + }] + }, { + "ID": 6694, + "SourceStructureID": 483, + "TargetStructureID": 103503, + "Label": "483-103503 via Ribbon Synapse from 92327 -> 103504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92327, + "TargetID": 103504, + "Directional": true + }] + }, { + "ID": 6695, + "SourceStructureID": 483, + "TargetStructureID": 103506, + "Label": "483-103506 via Ribbon Synapse from 103505 -> 103507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103505, + "TargetID": 103507, + "Directional": true + }] + }, { + "ID": 6696, + "SourceStructureID": 483, + "TargetStructureID": 103508, + "Label": "483-103508 via Ribbon Synapse from 81499 -> 116715", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81499, + "TargetID": 116715, + "Directional": true + }] + }, { + "ID": 6697, + "SourceStructureID": 483, + "TargetStructureID": 103530, + "Label": "483-103530 via Ribbon Synapse from 92337 -> 103531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92337, + "TargetID": 103531, + "Directional": true + }] + }, { + "ID": 6698, + "SourceStructureID": 483, + "TargetStructureID": 103543, + "Label": "483-103543 via Ribbon Synapse from 92345 -> 103544", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92345, + "TargetID": 103544, + "Directional": true + }] + }, { + "ID": 6699, + "SourceStructureID": 483, + "TargetStructureID": 103550, + "Label": "483-103550 via Ribbon Synapse from 6786 -> 103551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6786, + "TargetID": 103551, + "Directional": true + }] + }, { + "ID": 6700, + "SourceStructureID": 483, + "TargetStructureID": 103725, + "Label": "483-103725 via BC Conventional Synapse from 103724 -> 103726", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103724, + "TargetID": 103726, + "Directional": true + }] + }, { + "ID": 6701, + "SourceStructureID": 483, + "TargetStructureID": 103728, + "Label": "483-103728 via Ribbon Synapse from 65234 -> 103731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65234, + "TargetID": 103731, + "Directional": true + }] + }, { + "ID": 6702, + "SourceStructureID": 483, + "TargetStructureID": 103736, + "Label": "483-103736 via Ribbon Synapse from 94625 -> 103737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94625, + "TargetID": 103737, + "Directional": true + }] + }, { + "ID": 6703, + "SourceStructureID": 483, + "TargetStructureID": 103743, + "Label": "483-103743 via Ribbon Synapse from 94629 -> 103744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94629, + "TargetID": 103744, + "Directional": true + }] + }, { + "ID": 6704, + "SourceStructureID": 485, + "TargetStructureID": 318, + "Label": "485-318 via BC Conventional Synapse from 100891 -> 100892", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100891, + "TargetID": 100892, + "Directional": true + }] + }, { + "ID": 6705, + "SourceStructureID": 485, + "TargetStructureID": 4890, + "Label": "485-4890 via Ribbon Synapse from 15934 -> 7924, 19984 -> 19985, 99875 -> 99877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15934, + "TargetID": 7924, + "Directional": true + }, { + "SourceID": 19984, + "TargetID": 19985, + "Directional": true + }, { + "SourceID": 99875, + "TargetID": 99877, + "Directional": true + }] + }, { + "ID": 6706, + "SourceStructureID": 485, + "TargetStructureID": 5117, + "Label": "485-5117 via BC Conventional Synapse from 101211 -> 101212", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101211, + "TargetID": 101212, + "Directional": true + }] + }, { + "ID": 6707, + "SourceStructureID": 485, + "TargetStructureID": 5117, + "Label": "485-5117 via Ribbon Synapse from 50854 -> 100170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50854, + "TargetID": 100170, + "Directional": true + }] + }, { + "ID": 6708, + "SourceStructureID": 485, + "TargetStructureID": 5575, + "Label": "485-5575 via Adherens from 27204 -> 23087", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 27204, + "TargetID": 23087, + "Directional": true + }] + }, { + "ID": 6709, + "SourceStructureID": 485, + "TargetStructureID": 8577, + "Label": "485-8577 via Ribbon Synapse from 68784 -> 15931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68784, + "TargetID": 15931, + "Directional": true + }] + }, { + "ID": 6710, + "SourceStructureID": 485, + "TargetStructureID": 15796, + "Label": "485-15796 via Ribbon Synapse from 43477 -> 43478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43477, + "TargetID": 43478, + "Directional": true + }] + }, { + "ID": 6711, + "SourceStructureID": 485, + "TargetStructureID": 18282, + "Label": "485-18282 via Ribbon Synapse from 18300 -> 18301, 18311 -> 18307, 47532 -> 100938, 50888 -> 101088, 100815 -> 18303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18300, + "TargetID": 18301, + "Directional": true + }, { + "SourceID": 18311, + "TargetID": 18307, + "Directional": true + }, { + "SourceID": 47532, + "TargetID": 100938, + "Directional": true + }, { + "SourceID": 50888, + "TargetID": 101088, + "Directional": true + }, { + "SourceID": 100815, + "TargetID": 18303, + "Directional": true + }] + }, { + "ID": 6712, + "SourceStructureID": 485, + "TargetStructureID": 18576, + "Label": "485-18576 via Ribbon Synapse from 94212 -> 100471", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94212, + "TargetID": 100471, + "Directional": true + }] + }, { + "ID": 6713, + "SourceStructureID": 485, + "TargetStructureID": 22554, + "Label": "485-22554 via BC Conventional Synapse from 22567 -> 22566", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22567, + "TargetID": 22566, + "Directional": true + }] + }, { + "ID": 6714, + "SourceStructureID": 485, + "TargetStructureID": 22974, + "Label": "485-22974 via Ribbon Synapse from 100873 -> 100881, 101492 -> 101713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100873, + "TargetID": 100881, + "Directional": true + }, { + "SourceID": 101492, + "TargetID": 101713, + "Directional": true + }] + }, { + "ID": 6715, + "SourceStructureID": 485, + "TargetStructureID": 24148, + "Label": "485-24148 via Ribbon Synapse from 24166 -> 24167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24166, + "TargetID": 24167, + "Directional": true + }] + }, { + "ID": 6716, + "SourceStructureID": 485, + "TargetStructureID": 25367, + "Label": "485-25367 via Ribbon Synapse from 18310 -> 25369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18310, + "TargetID": 25369, + "Directional": true + }] + }, { + "ID": 6717, + "SourceStructureID": 485, + "TargetStructureID": 25392, + "Label": "485-25392 via Ribbon Synapse from 32297 -> 32298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32297, + "TargetID": 32298, + "Directional": true + }] + }, { + "ID": 6718, + "SourceStructureID": 485, + "TargetStructureID": 27288, + "Label": "485-27288 via Ribbon Synapse from 19984 -> 27296, 27302 -> 27303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19984, + "TargetID": 27296, + "Directional": true + }, { + "SourceID": 27302, + "TargetID": 27303, + "Directional": true + }] + }, { + "ID": 6719, + "SourceStructureID": 485, + "TargetStructureID": 34601, + "Label": "485-34601 via Ribbon Synapse from 18311 -> 35174", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18311, + "TargetID": 35174, + "Directional": true + }] + }, { + "ID": 6720, + "SourceStructureID": 485, + "TargetStructureID": 35117, + "Label": "485-35117 via Ribbon Synapse from 35124 -> 35121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35124, + "TargetID": 35121, + "Directional": true + }] + }, { + "ID": 6721, + "SourceStructureID": 485, + "TargetStructureID": 39876, + "Label": "485-39876 via Ribbon Synapse from 15934 -> 39882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15934, + "TargetID": 39882, + "Directional": true + }] + }, { + "ID": 6722, + "SourceStructureID": 485, + "TargetStructureID": 46823, + "Label": "485-46823 via Ribbon Synapse from 46845 -> 46844, 46847 -> 46846, 46850 -> 46849, 50914 -> 99499, 101009 -> 46837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46845, + "TargetID": 46844, + "Directional": true + }, { + "SourceID": 46847, + "TargetID": 46846, + "Directional": true + }, { + "SourceID": 46850, + "TargetID": 46849, + "Directional": true + }, { + "SourceID": 50914, + "TargetID": 99499, + "Directional": true + }, { + "SourceID": 101009, + "TargetID": 46837, + "Directional": true + }] + }, { + "ID": 6723, + "SourceStructureID": 485, + "TargetStructureID": 49489, + "Label": "485-49489 via Ribbon Synapse from 49532 -> 49529, 65187 -> 103713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49532, + "TargetID": 49529, + "Directional": true + }, { + "SourceID": 65187, + "TargetID": 103713, + "Directional": true + }] + }, { + "ID": 6724, + "SourceStructureID": 485, + "TargetStructureID": 60657, + "Label": "485-60657 via Ribbon Synapse from 50878 -> 99467, 61428 -> 61427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50878, + "TargetID": 99467, + "Directional": true + }, { + "SourceID": 61428, + "TargetID": 61427, + "Directional": true + }] + }, { + "ID": 6725, + "SourceStructureID": 485, + "TargetStructureID": 61270, + "Label": "485-61270 via Ribbon Synapse from 50644 -> 61295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50644, + "TargetID": 61295, + "Directional": true + }] + }, { + "ID": 6726, + "SourceStructureID": 485, + "TargetStructureID": 61864, + "Label": "485-61864 via Ribbon Synapse from 23148 -> 61866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23148, + "TargetID": 61866, + "Directional": true + }] + }, { + "ID": 6727, + "SourceStructureID": 485, + "TargetStructureID": 61960, + "Label": "485-61960 via Ribbon Synapse from 47536 -> 81467, 51159 -> 81503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47536, + "TargetID": 81467, + "Directional": true + }, { + "SourceID": 51159, + "TargetID": 81503, + "Directional": true + }] + }, { + "ID": 6728, + "SourceStructureID": 485, + "TargetStructureID": 65267, + "Label": "485-65267 via Ribbon Synapse from 47529 -> 69964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47529, + "TargetID": 69964, + "Directional": true + }] + }, { + "ID": 6729, + "SourceStructureID": 485, + "TargetStructureID": 70868, + "Label": "485-70868 via Ribbon Synapse from 70877 -> 70876", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70877, + "TargetID": 70876, + "Directional": true + }] + }, { + "ID": 6730, + "SourceStructureID": 485, + "TargetStructureID": 70878, + "Label": "485-70878 via Ribbon Synapse from 70877 -> 70880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70877, + "TargetID": 70880, + "Directional": true + }] + }, { + "ID": 6731, + "SourceStructureID": 485, + "TargetStructureID": 71189, + "Label": "485-71189 via Ribbon Synapse from 101122 -> 101126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101122, + "TargetID": 101126, + "Directional": true + }] + }, { + "ID": 6732, + "SourceStructureID": 485, + "TargetStructureID": 81459, + "Label": "485-81459 via Ribbon Synapse from 81464 -> 81466", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81464, + "TargetID": 81466, + "Directional": true + }] + }, { + "ID": 6733, + "SourceStructureID": 485, + "TargetStructureID": 85748, + "Label": "485-85748 via Ribbon Synapse from 100228 -> 85790, 148418 -> 148419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100228, + "TargetID": 85790, + "Directional": true + }, { + "SourceID": 148418, + "TargetID": 148419, + "Directional": true + }] + }, { + "ID": 6734, + "SourceStructureID": 485, + "TargetStructureID": 86634, + "Label": "485-86634 via Ribbon Synapse from 50865 -> 86707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50865, + "TargetID": 86707, + "Directional": true + }] + }, { + "ID": 6735, + "SourceStructureID": 485, + "TargetStructureID": 99217, + "Label": "485-99217 via Ribbon Synapse from 24474 -> 99221", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24474, + "TargetID": 99221, + "Directional": true + }] + }, { + "ID": 6736, + "SourceStructureID": 485, + "TargetStructureID": 99218, + "Label": "485-99218 via Ribbon Synapse from 24474 -> 99222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24474, + "TargetID": 99222, + "Directional": true + }] + }, { + "ID": 6737, + "SourceStructureID": 485, + "TargetStructureID": 99223, + "Label": "485-99223 via Ribbon Synapse from 38778 -> 99224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38778, + "TargetID": 99224, + "Directional": true + }] + }, { + "ID": 6738, + "SourceStructureID": 485, + "TargetStructureID": 99228, + "Label": "485-99228 via Ribbon Synapse from 24476 -> 99229, 24477 -> 99229, 24478 -> 99229, 24480 -> 99229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24476, + "TargetID": 99229, + "Directional": true + }, { + "SourceID": 24477, + "TargetID": 99229, + "Directional": true + }, { + "SourceID": 24478, + "TargetID": 99229, + "Directional": true + }, { + "SourceID": 24480, + "TargetID": 99229, + "Directional": true + }] + }, { + "ID": 6739, + "SourceStructureID": 485, + "TargetStructureID": 99230, + "Label": "485-99230 via Ribbon Synapse from 24480 -> 99231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24480, + "TargetID": 99231, + "Directional": true + }] + }, { + "ID": 6740, + "SourceStructureID": 485, + "TargetStructureID": 99247, + "Label": "485-99247 via Ribbon Synapse from 24482 -> 99248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24482, + "TargetID": 99248, + "Directional": true + }] + }, { + "ID": 6741, + "SourceStructureID": 485, + "TargetStructureID": 99249, + "Label": "485-99249 via Ribbon Synapse from 24481 -> 99250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24481, + "TargetID": 99250, + "Directional": true + }] + }, { + "ID": 6742, + "SourceStructureID": 485, + "TargetStructureID": 99347, + "Label": "485-99347 via Ribbon Synapse from 7032 -> 99348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7032, + "TargetID": 99348, + "Directional": true + }] + }, { + "ID": 6743, + "SourceStructureID": 485, + "TargetStructureID": 99349, + "Label": "485-99349 via Ribbon Synapse from 99283 -> 99350", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99283, + "TargetID": 99350, + "Directional": true + }] + }, { + "ID": 6744, + "SourceStructureID": 485, + "TargetStructureID": 99362, + "Label": "485-99362 via Ribbon Synapse from 99354 -> 99363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99354, + "TargetID": 99363, + "Directional": true + }] + }, { + "ID": 6745, + "SourceStructureID": 485, + "TargetStructureID": 99388, + "Label": "485-99388 via Ribbon Synapse from 7034 -> 99390", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7034, + "TargetID": 99390, + "Directional": true + }] + }, { + "ID": 6746, + "SourceStructureID": 485, + "TargetStructureID": 99391, + "Label": "485-99391 via Ribbon Synapse from 7034 -> 99392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7034, + "TargetID": 99392, + "Directional": true + }] + }, { + "ID": 6747, + "SourceStructureID": 485, + "TargetStructureID": 99397, + "Label": "485-99397 via Ribbon Synapse from 99394 -> 99398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99394, + "TargetID": 99398, + "Directional": true + }] + }, { + "ID": 6748, + "SourceStructureID": 485, + "TargetStructureID": 99403, + "Label": "485-99403 via Ribbon Synapse from 7036 -> 99404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7036, + "TargetID": 99404, + "Directional": true + }] + }, { + "ID": 6749, + "SourceStructureID": 485, + "TargetStructureID": 99406, + "Label": "485-99406 via BC Conventional Synapse from 99405 -> 99407", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99405, + "TargetID": 99407, + "Directional": true + }] + }, { + "ID": 6750, + "SourceStructureID": 485, + "TargetStructureID": 99422, + "Label": "485-99422 via Ribbon Synapse from 99421 -> 99424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99421, + "TargetID": 99424, + "Directional": true + }] + }, { + "ID": 6751, + "SourceStructureID": 485, + "TargetStructureID": 99423, + "Label": "485-99423 via Ribbon Synapse from 99421 -> 99425", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99421, + "TargetID": 99425, + "Directional": true + }] + }, { + "ID": 6752, + "SourceStructureID": 485, + "TargetStructureID": 99441, + "Label": "485-99441 via Ribbon Synapse from 50879 -> 99442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50879, + "TargetID": 99442, + "Directional": true + }] + }, { + "ID": 6753, + "SourceStructureID": 485, + "TargetStructureID": 99451, + "Label": "485-99451 via BC Conventional Synapse from 94060 -> 99452", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94060, + "TargetID": 99452, + "Directional": true + }] + }, { + "ID": 6754, + "SourceStructureID": 485, + "TargetStructureID": 99457, + "Label": "485-99457 via Ribbon Synapse from 50861 -> 99458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50861, + "TargetID": 99458, + "Directional": true + }] + }, { + "ID": 6755, + "SourceStructureID": 485, + "TargetStructureID": 99459, + "Label": "485-99459 via Ribbon Synapse from 50859 -> 99460", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50859, + "TargetID": 99460, + "Directional": true + }] + }, { + "ID": 6756, + "SourceStructureID": 485, + "TargetStructureID": 99461, + "Label": "485-99461 via Ribbon Synapse from 50859 -> 99462", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50859, + "TargetID": 99462, + "Directional": true + }] + }, { + "ID": 6757, + "SourceStructureID": 485, + "TargetStructureID": 99479, + "Label": "485-99479 via Ribbon Synapse from 50878 -> 99481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50878, + "TargetID": 99481, + "Directional": true + }] + }, { + "ID": 6758, + "SourceStructureID": 485, + "TargetStructureID": 99525, + "Label": "485-99525 via Ribbon Synapse from 7044 -> 99526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7044, + "TargetID": 99526, + "Directional": true + }] + }, { + "ID": 6759, + "SourceStructureID": 485, + "TargetStructureID": 99617, + "Label": "485-99617 via Ribbon Synapse from 50856 -> 99619", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50856, + "TargetID": 99619, + "Directional": true + }] + }, { + "ID": 6760, + "SourceStructureID": 485, + "TargetStructureID": 99621, + "Label": "485-99621 via Ribbon Synapse from 50856 -> 99623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50856, + "TargetID": 99623, + "Directional": true + }] + }, { + "ID": 6761, + "SourceStructureID": 485, + "TargetStructureID": 99624, + "Label": "485-99624 via Ribbon Synapse from 94092 -> 99627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94092, + "TargetID": 99627, + "Directional": true + }] + }, { + "ID": 6762, + "SourceStructureID": 485, + "TargetStructureID": 99625, + "Label": "485-99625 via Ribbon Synapse from 94092 -> 99626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94092, + "TargetID": 99626, + "Directional": true + }] + }, { + "ID": 6763, + "SourceStructureID": 485, + "TargetStructureID": 99644, + "Label": "485-99644 via Ribbon Synapse from 99875 -> 99876", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99875, + "TargetID": 99876, + "Directional": true + }] + }, { + "ID": 6764, + "SourceStructureID": 485, + "TargetStructureID": 99651, + "Label": "485-99651 via Ribbon Synapse from 46847 -> 99652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46847, + "TargetID": 99652, + "Directional": true + }] + }, { + "ID": 6765, + "SourceStructureID": 485, + "TargetStructureID": 99653, + "Label": "485-99653 via Ribbon Synapse from 99669 -> 99654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99669, + "TargetID": 99654, + "Directional": true + }] + }, { + "ID": 6766, + "SourceStructureID": 485, + "TargetStructureID": 99655, + "Label": "485-99655 via Ribbon Synapse from 99669 -> 99656", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99669, + "TargetID": 99656, + "Directional": true + }] + }, { + "ID": 6767, + "SourceStructureID": 485, + "TargetStructureID": 99701, + "Label": "485-99701 via Ribbon Synapse from 99691 -> 99860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99691, + "TargetID": 99860, + "Directional": true + }] + }, { + "ID": 6768, + "SourceStructureID": 485, + "TargetStructureID": 99711, + "Label": "485-99711 via Ribbon Synapse from 94111 -> 99718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94111, + "TargetID": 99718, + "Directional": true + }] + }, { + "ID": 6769, + "SourceStructureID": 485, + "TargetStructureID": 99731, + "Label": "485-99731 via Ribbon Synapse from 99730 -> 99732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99730, + "TargetID": 99732, + "Directional": true + }] + }, { + "ID": 6770, + "SourceStructureID": 485, + "TargetStructureID": 99773, + "Label": "485-99773 via Ribbon Synapse from 50689 -> 99777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50689, + "TargetID": 99777, + "Directional": true + }] + }, { + "ID": 6771, + "SourceStructureID": 485, + "TargetStructureID": 99841, + "Label": "485-99841 via Ribbon Synapse from 99840 -> 99842", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99840, + "TargetID": 99842, + "Directional": true + }] + }, { + "ID": 6772, + "SourceStructureID": 485, + "TargetStructureID": 99848, + "Label": "485-99848 via Ribbon Synapse from 51171 -> 99849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51171, + "TargetID": 99849, + "Directional": true + }] + }, { + "ID": 6773, + "SourceStructureID": 485, + "TargetStructureID": 99850, + "Label": "485-99850 via Ribbon Synapse from 50685 -> 99851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50685, + "TargetID": 99851, + "Directional": true + }] + }, { + "ID": 6774, + "SourceStructureID": 485, + "TargetStructureID": 99852, + "Label": "485-99852 via Ribbon Synapse from 50685 -> 99853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50685, + "TargetID": 99853, + "Directional": true + }] + }, { + "ID": 6775, + "SourceStructureID": 485, + "TargetStructureID": 99857, + "Label": "485-99857 via Ribbon Synapse from 99681 -> 99859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99681, + "TargetID": 99859, + "Directional": true + }] + }, { + "ID": 6776, + "SourceStructureID": 485, + "TargetStructureID": 99861, + "Label": "485-99861 via Ribbon Synapse from 50631 -> 99864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50631, + "TargetID": 99864, + "Directional": true + }] + }, { + "ID": 6777, + "SourceStructureID": 485, + "TargetStructureID": 99862, + "Label": "485-99862 via Ribbon Synapse from 50631 -> 99863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50631, + "TargetID": 99863, + "Directional": true + }] + }, { + "ID": 6778, + "SourceStructureID": 485, + "TargetStructureID": 99865, + "Label": "485-99865 via Ribbon Synapse from 50631 -> 99866, 99896 -> 99897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50631, + "TargetID": 99866, + "Directional": true + }, { + "SourceID": 99896, + "TargetID": 99897, + "Directional": true + }] + }, { + "ID": 6779, + "SourceStructureID": 485, + "TargetStructureID": 99879, + "Label": "485-99879 via BC Conventional Synapse from 99878 -> 99880", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99878, + "TargetID": 99880, + "Directional": true + }] + }, { + "ID": 6780, + "SourceStructureID": 485, + "TargetStructureID": 99906, + "Label": "485-99906 via BC Conventional Synapse from 148021 -> 148020", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148021, + "TargetID": 148020, + "Directional": true + }] + }, { + "ID": 6781, + "SourceStructureID": 485, + "TargetStructureID": 99909, + "Label": "485-99909 via Ribbon Synapse from 99908 -> 99910", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99908, + "TargetID": 99910, + "Directional": true + }] + }, { + "ID": 6782, + "SourceStructureID": 485, + "TargetStructureID": 99915, + "Label": "485-99915 via BC Conventional Synapse from 99920 -> 99919", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99920, + "TargetID": 99919, + "Directional": true + }] + }, { + "ID": 6783, + "SourceStructureID": 485, + "TargetStructureID": 99915, + "Label": "485-99915 via Ribbon Synapse from 99914 -> 99917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99914, + "TargetID": 99917, + "Directional": true + }] + }, { + "ID": 6784, + "SourceStructureID": 485, + "TargetStructureID": 99916, + "Label": "485-99916 via Ribbon Synapse from 99914 -> 99918, 99925 -> 99926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99914, + "TargetID": 99918, + "Directional": true + }, { + "SourceID": 99925, + "TargetID": 99926, + "Directional": true + }] + }, { + "ID": 6785, + "SourceStructureID": 485, + "TargetStructureID": 99933, + "Label": "485-99933 via Ribbon Synapse from 46850 -> 99934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46850, + "TargetID": 99934, + "Directional": true + }] + }, { + "ID": 6786, + "SourceStructureID": 485, + "TargetStructureID": 99936, + "Label": "485-99936 via BC Conventional Synapse from 99935 -> 99939", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99935, + "TargetID": 99939, + "Directional": true + }] + }, { + "ID": 6787, + "SourceStructureID": 485, + "TargetStructureID": 99938, + "Label": "485-99938 via BC Conventional Synapse from 99937 -> 99946", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99937, + "TargetID": 99946, + "Directional": true + }] + }, { + "ID": 6788, + "SourceStructureID": 485, + "TargetStructureID": 99944, + "Label": "485-99944 via Ribbon Synapse from 99943 -> 99945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99943, + "TargetID": 99945, + "Directional": true + }] + }, { + "ID": 6789, + "SourceStructureID": 485, + "TargetStructureID": 99958, + "Label": "485-99958 via Ribbon Synapse from 99955 -> 99959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99955, + "TargetID": 99959, + "Directional": true + }] + }, { + "ID": 6790, + "SourceStructureID": 485, + "TargetStructureID": 99960, + "Label": "485-99960 via Ribbon Synapse from 99955 -> 99961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99955, + "TargetID": 99961, + "Directional": true + }] + }, { + "ID": 6791, + "SourceStructureID": 485, + "TargetStructureID": 99975, + "Label": "485-99975 via Ribbon Synapse from 99974 -> 99978", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99974, + "TargetID": 99978, + "Directional": true + }] + }, { + "ID": 6792, + "SourceStructureID": 485, + "TargetStructureID": 99976, + "Label": "485-99976 via Ribbon Synapse from 99974 -> 99977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99974, + "TargetID": 99977, + "Directional": true + }] + }, { + "ID": 6793, + "SourceStructureID": 485, + "TargetStructureID": 99987, + "Label": "485-99987 via Ribbon Synapse from 99983 -> 99988", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99983, + "TargetID": 99988, + "Directional": true + }] + }, { + "ID": 6794, + "SourceStructureID": 485, + "TargetStructureID": 99989, + "Label": "485-99989 via Ribbon Synapse from 99983 -> 99990", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99983, + "TargetID": 99990, + "Directional": true + }] + }, { + "ID": 6795, + "SourceStructureID": 485, + "TargetStructureID": 100010, + "Label": "485-100010 via Ribbon Synapse from 94198 -> 100013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94198, + "TargetID": 100013, + "Directional": true + }] + }, { + "ID": 6796, + "SourceStructureID": 485, + "TargetStructureID": 100014, + "Label": "485-100014 via Ribbon Synapse from 29184 -> 100016", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29184, + "TargetID": 100016, + "Directional": true + }] + }, { + "ID": 6797, + "SourceStructureID": 485, + "TargetStructureID": 100023, + "Label": "485-100023 via Ribbon Synapse from 100022 -> 100024", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100022, + "TargetID": 100024, + "Directional": true + }] + }, { + "ID": 6798, + "SourceStructureID": 485, + "TargetStructureID": 100032, + "Label": "485-100032 via BC Conventional Synapse from 100034 -> 100033", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100034, + "TargetID": 100033, + "Directional": true + }] + }, { + "ID": 6799, + "SourceStructureID": 485, + "TargetStructureID": 100041, + "Label": "485-100041 via BC Conventional Synapse from 100042 -> 118443", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100042, + "TargetID": 118443, + "Directional": true + }] + }, { + "ID": 6800, + "SourceStructureID": 485, + "TargetStructureID": 100046, + "Label": "485-100046 via Ribbon Synapse from 29189 -> 100049", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29189, + "TargetID": 100049, + "Directional": true + }] + }, { + "ID": 6801, + "SourceStructureID": 485, + "TargetStructureID": 100047, + "Label": "485-100047 via Ribbon Synapse from 29189 -> 100048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29189, + "TargetID": 100048, + "Directional": true + }] + }, { + "ID": 6802, + "SourceStructureID": 485, + "TargetStructureID": 100050, + "Label": "485-100050 via Ribbon Synapse from 29189 -> 100051", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29189, + "TargetID": 100051, + "Directional": true + }] + }, { + "ID": 6803, + "SourceStructureID": 485, + "TargetStructureID": 100062, + "Label": "485-100062 via Ribbon Synapse from 29192 -> 100063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29192, + "TargetID": 100063, + "Directional": true + }] + }, { + "ID": 6804, + "SourceStructureID": 485, + "TargetStructureID": 100072, + "Label": "485-100072 via BC Conventional Synapse from 94207 -> 100073", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94207, + "TargetID": 100073, + "Directional": true + }] + }, { + "ID": 6805, + "SourceStructureID": 485, + "TargetStructureID": 100081, + "Label": "485-100081 via BC Conventional Synapse from 49524 -> 100083", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49524, + "TargetID": 100083, + "Directional": true + }] + }, { + "ID": 6806, + "SourceStructureID": 485, + "TargetStructureID": 100089, + "Label": "485-100089 via BC Conventional Synapse from 100088 -> 100090", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100088, + "TargetID": 100090, + "Directional": true + }] + }, { + "ID": 6807, + "SourceStructureID": 485, + "TargetStructureID": 100095, + "Label": "485-100095 via Ribbon Synapse from 148072 -> 148073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148072, + "TargetID": 148073, + "Directional": true + }] + }, { + "ID": 6808, + "SourceStructureID": 485, + "TargetStructureID": 100098, + "Label": "485-100098 via Ribbon Synapse from 51028 -> 100099", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51028, + "TargetID": 100099, + "Directional": true + }] + }, { + "ID": 6809, + "SourceStructureID": 485, + "TargetStructureID": 100105, + "Label": "485-100105 via BC Conventional Synapse from 100104 -> 100106", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100104, + "TargetID": 100106, + "Directional": true + }] + }, { + "ID": 6810, + "SourceStructureID": 485, + "TargetStructureID": 100111, + "Label": "485-100111 via Ribbon Synapse from 51067 -> 100112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51067, + "TargetID": 100112, + "Directional": true + }] + }, { + "ID": 6811, + "SourceStructureID": 485, + "TargetStructureID": 100116, + "Label": "485-100116 via Ribbon Synapse from 51068 -> 100119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51068, + "TargetID": 100119, + "Directional": true + }] + }, { + "ID": 6812, + "SourceStructureID": 485, + "TargetStructureID": 100117, + "Label": "485-100117 via Ribbon Synapse from 51068 -> 100118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51068, + "TargetID": 100118, + "Directional": true + }] + }, { + "ID": 6813, + "SourceStructureID": 485, + "TargetStructureID": 100128, + "Label": "485-100128 via Ribbon Synapse from 51071 -> 100130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51071, + "TargetID": 100130, + "Directional": true + }] + }, { + "ID": 6814, + "SourceStructureID": 485, + "TargetStructureID": 100131, + "Label": "485-100131 via Ribbon Synapse from 51071 -> 100132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51071, + "TargetID": 100132, + "Directional": true + }] + }, { + "ID": 6815, + "SourceStructureID": 485, + "TargetStructureID": 100135, + "Label": "485-100135 via Ribbon Synapse from 50920 -> 100139", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50920, + "TargetID": 100139, + "Directional": true + }] + }, { + "ID": 6816, + "SourceStructureID": 485, + "TargetStructureID": 100156, + "Label": "485-100156 via Ribbon Synapse from 50920 -> 100158, 51088 -> 100163", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50920, + "TargetID": 100158, + "Directional": true + }, { + "SourceID": 51088, + "TargetID": 100163, + "Directional": true + }] + }, { + "ID": 6817, + "SourceStructureID": 485, + "TargetStructureID": 100173, + "Label": "485-100173 via Ribbon Synapse from 50690 -> 100192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50690, + "TargetID": 100192, + "Directional": true + }] + }, { + "ID": 6818, + "SourceStructureID": 485, + "TargetStructureID": 100198, + "Label": "485-100198 via BC Conventional Synapse from 49531 -> 100199", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49531, + "TargetID": 100199, + "Directional": true + }] + }, { + "ID": 6819, + "SourceStructureID": 485, + "TargetStructureID": 100207, + "Label": "485-100207 via Ribbon Synapse from 50686 -> 100208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50686, + "TargetID": 100208, + "Directional": true + }] + }, { + "ID": 6820, + "SourceStructureID": 485, + "TargetStructureID": 100209, + "Label": "485-100209 via Ribbon Synapse from 50686 -> 100211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50686, + "TargetID": 100211, + "Directional": true + }] + }, { + "ID": 6821, + "SourceStructureID": 485, + "TargetStructureID": 100217, + "Label": "485-100217 via Ribbon Synapse from 99358 -> 100218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99358, + "TargetID": 100218, + "Directional": true + }] + }, { + "ID": 6822, + "SourceStructureID": 485, + "TargetStructureID": 100221, + "Label": "485-100221 via BC Conventional Synapse from 100223 -> 100222", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100223, + "TargetID": 100222, + "Directional": true + }] + }, { + "ID": 6823, + "SourceStructureID": 485, + "TargetStructureID": 100257, + "Label": "485-100257 via Ribbon Synapse from 7038 -> 100258", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7038, + "TargetID": 100258, + "Directional": true + }] + }, { + "ID": 6824, + "SourceStructureID": 485, + "TargetStructureID": 100271, + "Label": "485-100271 via Ribbon Synapse from 100226 -> 100272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100226, + "TargetID": 100272, + "Directional": true + }] + }, { + "ID": 6825, + "SourceStructureID": 485, + "TargetStructureID": 100279, + "Label": "485-100279 via Ribbon Synapse from 100277 -> 100280", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100277, + "TargetID": 100280, + "Directional": true + }] + }, { + "ID": 6826, + "SourceStructureID": 485, + "TargetStructureID": 100289, + "Label": "485-100289 via BC Conventional Synapse from 100288 -> 100290", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100288, + "TargetID": 100290, + "Directional": true + }] + }, { + "ID": 6827, + "SourceStructureID": 485, + "TargetStructureID": 100292, + "Label": "485-100292 via Ribbon Synapse from 100291 -> 100295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100291, + "TargetID": 100295, + "Directional": true + }] + }, { + "ID": 6828, + "SourceStructureID": 485, + "TargetStructureID": 100299, + "Label": "485-100299 via Ribbon Synapse from 47642 -> 100300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47642, + "TargetID": 100300, + "Directional": true + }] + }, { + "ID": 6829, + "SourceStructureID": 485, + "TargetStructureID": 100304, + "Label": "485-100304 via Ribbon Synapse from 18296 -> 100305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18296, + "TargetID": 100305, + "Directional": true + }] + }, { + "ID": 6830, + "SourceStructureID": 485, + "TargetStructureID": 100308, + "Label": "485-100308 via Ribbon Synapse from 51157 -> 100311", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51157, + "TargetID": 100311, + "Directional": true + }] + }, { + "ID": 6831, + "SourceStructureID": 485, + "TargetStructureID": 100312, + "Label": "485-100312 via Ribbon Synapse from 51159 -> 100314", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51159, + "TargetID": 100314, + "Directional": true + }] + }, { + "ID": 6832, + "SourceStructureID": 485, + "TargetStructureID": 100315, + "Label": "485-100315 via Ribbon Synapse from 47651 -> 100318", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47651, + "TargetID": 100318, + "Directional": true + }] + }, { + "ID": 6833, + "SourceStructureID": 485, + "TargetStructureID": 100316, + "Label": "485-100316 via Ribbon Synapse from 47651 -> 100317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47651, + "TargetID": 100317, + "Directional": true + }] + }, { + "ID": 6834, + "SourceStructureID": 485, + "TargetStructureID": 100322, + "Label": "485-100322 via Ribbon Synapse from 47653 -> 100323", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47653, + "TargetID": 100323, + "Directional": true + }] + }, { + "ID": 6835, + "SourceStructureID": 485, + "TargetStructureID": 100355, + "Label": "485-100355 via Ribbon Synapse from 47646 -> 100356", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47646, + "TargetID": 100356, + "Directional": true + }] + }, { + "ID": 6836, + "SourceStructureID": 485, + "TargetStructureID": 100381, + "Label": "485-100381 via Ribbon Synapse from 51156 -> 100382", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51156, + "TargetID": 100382, + "Directional": true + }] + }, { + "ID": 6837, + "SourceStructureID": 485, + "TargetStructureID": 100391, + "Label": "485-100391 via Ribbon Synapse from 51156 -> 100392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51156, + "TargetID": 100392, + "Directional": true + }] + }, { + "ID": 6838, + "SourceStructureID": 485, + "TargetStructureID": 100410, + "Label": "485-100410 via Ribbon Synapse from 47662 -> 100411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47662, + "TargetID": 100411, + "Directional": true + }] + }, { + "ID": 6839, + "SourceStructureID": 485, + "TargetStructureID": 100426, + "Label": "485-100426 via Ribbon Synapse from 51153 -> 100432", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51153, + "TargetID": 100432, + "Directional": true + }] + }, { + "ID": 6840, + "SourceStructureID": 485, + "TargetStructureID": 100436, + "Label": "485-100436 via BC Conventional Synapse from 100435 -> 100437", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100435, + "TargetID": 100437, + "Directional": true + }] + }, { + "ID": 6841, + "SourceStructureID": 485, + "TargetStructureID": 100439, + "Label": "485-100439 via BC Conventional Synapse from 100438 -> 100440", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100438, + "TargetID": 100440, + "Directional": true + }] + }, { + "ID": 6842, + "SourceStructureID": 485, + "TargetStructureID": 100441, + "Label": "485-100441 via Ribbon Synapse from 51152 -> 100442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51152, + "TargetID": 100442, + "Directional": true + }] + }, { + "ID": 6843, + "SourceStructureID": 485, + "TargetStructureID": 100460, + "Label": "485-100460 via Ribbon Synapse from 51149 -> 100472", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51149, + "TargetID": 100472, + "Directional": true + }] + }, { + "ID": 6844, + "SourceStructureID": 485, + "TargetStructureID": 100469, + "Label": "485-100469 via Ribbon Synapse from 51149 -> 100470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51149, + "TargetID": 100470, + "Directional": true + }] + }, { + "ID": 6845, + "SourceStructureID": 485, + "TargetStructureID": 100474, + "Label": "485-100474 via Ribbon Synapse from 94051 -> 100475", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94051, + "TargetID": 100475, + "Directional": true + }] + }, { + "ID": 6846, + "SourceStructureID": 485, + "TargetStructureID": 100479, + "Label": "485-100479 via Ribbon Synapse from 100489 -> 100487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100489, + "TargetID": 100487, + "Directional": true + }] + }, { + "ID": 6847, + "SourceStructureID": 485, + "TargetStructureID": 100490, + "Label": "485-100490 via Ribbon Synapse from 100489 -> 100491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100489, + "TargetID": 100491, + "Directional": true + }] + }, { + "ID": 6848, + "SourceStructureID": 485, + "TargetStructureID": 100498, + "Label": "485-100498 via Ribbon Synapse from 100497 -> 100500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100497, + "TargetID": 100500, + "Directional": true + }] + }, { + "ID": 6849, + "SourceStructureID": 485, + "TargetStructureID": 100568, + "Label": "485-100568 via Ribbon Synapse from 100539 -> 100569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100539, + "TargetID": 100569, + "Directional": true + }] + }, { + "ID": 6850, + "SourceStructureID": 485, + "TargetStructureID": 100573, + "Label": "485-100573 via Ribbon Synapse from 100577 -> 100576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100577, + "TargetID": 100576, + "Directional": true + }] + }, { + "ID": 6851, + "SourceStructureID": 485, + "TargetStructureID": 100574, + "Label": "485-100574 via Ribbon Synapse from 100577 -> 100575", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100577, + "TargetID": 100575, + "Directional": true + }] + }, { + "ID": 6852, + "SourceStructureID": 485, + "TargetStructureID": 100588, + "Label": "485-100588 via Ribbon Synapse from 100587 -> 100589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100587, + "TargetID": 100589, + "Directional": true + }] + }, { + "ID": 6853, + "SourceStructureID": 485, + "TargetStructureID": 100605, + "Label": "485-100605 via Ribbon Synapse from 100604 -> 100608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100604, + "TargetID": 100608, + "Directional": true + }] + }, { + "ID": 6854, + "SourceStructureID": 485, + "TargetStructureID": 100606, + "Label": "485-100606 via Ribbon Synapse from 100604 -> 100607", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100604, + "TargetID": 100607, + "Directional": true + }] + }, { + "ID": 6855, + "SourceStructureID": 485, + "TargetStructureID": 100614, + "Label": "485-100614 via Ribbon Synapse from 100611 -> 100617", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100611, + "TargetID": 100617, + "Directional": true + }] + }, { + "ID": 6856, + "SourceStructureID": 485, + "TargetStructureID": 100615, + "Label": "485-100615 via Ribbon Synapse from 100611 -> 100616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100611, + "TargetID": 100616, + "Directional": true + }] + }, { + "ID": 6857, + "SourceStructureID": 485, + "TargetStructureID": 100620, + "Label": "485-100620 via Ribbon Synapse from 51081 -> 100726, 100619 -> 100621", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51081, + "TargetID": 100726, + "Directional": true + }, { + "SourceID": 100619, + "TargetID": 100621, + "Directional": true + }] + }, { + "ID": 6858, + "SourceStructureID": 485, + "TargetStructureID": 100629, + "Label": "485-100629 via BC Conventional Synapse from 100628 -> 100630", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100628, + "TargetID": 100630, + "Directional": true + }] + }, { + "ID": 6859, + "SourceStructureID": 485, + "TargetStructureID": 100634, + "Label": "485-100634 via BC Conventional Synapse from 100637 -> 100635", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100637, + "TargetID": 100635, + "Directional": true + }] + }, { + "ID": 6860, + "SourceStructureID": 485, + "TargetStructureID": 100671, + "Label": "485-100671 via BC Conventional Synapse from 100653 -> 100672", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100653, + "TargetID": 100672, + "Directional": true + }] + }, { + "ID": 6861, + "SourceStructureID": 485, + "TargetStructureID": 100687, + "Label": "485-100687 via Ribbon Synapse from 100658 -> 100688, 100659 -> 100689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100658, + "TargetID": 100688, + "Directional": true + }, { + "SourceID": 100659, + "TargetID": 100689, + "Directional": true + }] + }, { + "ID": 6862, + "SourceStructureID": 485, + "TargetStructureID": 100695, + "Label": "485-100695 via BC Conventional Synapse from 100693 -> 100697", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100693, + "TargetID": 100697, + "Directional": true + }] + }, { + "ID": 6863, + "SourceStructureID": 485, + "TargetStructureID": 100715, + "Label": "485-100715 via Ribbon Synapse from 51086 -> 100719", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51086, + "TargetID": 100719, + "Directional": true + }] + }, { + "ID": 6864, + "SourceStructureID": 485, + "TargetStructureID": 100716, + "Label": "485-100716 via Ribbon Synapse from 51086 -> 100718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51086, + "TargetID": 100718, + "Directional": true + }] + }, { + "ID": 6865, + "SourceStructureID": 485, + "TargetStructureID": 100717, + "Label": "485-100717 via Ribbon Synapse from 51086 -> 100720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51086, + "TargetID": 100720, + "Directional": true + }] + }, { + "ID": 6866, + "SourceStructureID": 485, + "TargetStructureID": 100721, + "Label": "485-100721 via Ribbon Synapse from 51083 -> 100723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51083, + "TargetID": 100723, + "Directional": true + }] + }, { + "ID": 6867, + "SourceStructureID": 485, + "TargetStructureID": 100731, + "Label": "485-100731 via BC Conventional Synapse from 100727 -> 100732", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100727, + "TargetID": 100732, + "Directional": true + }] + }, { + "ID": 6868, + "SourceStructureID": 485, + "TargetStructureID": 100739, + "Label": "485-100739 via Ribbon Synapse from 47520 -> 100740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47520, + "TargetID": 100740, + "Directional": true + }] + }, { + "ID": 6869, + "SourceStructureID": 485, + "TargetStructureID": 100744, + "Label": "485-100744 via Ribbon Synapse from 7035 -> 100758", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7035, + "TargetID": 100758, + "Directional": true + }] + }, { + "ID": 6870, + "SourceStructureID": 485, + "TargetStructureID": 100762, + "Label": "485-100762 via Ribbon Synapse from 47525 -> 100764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47525, + "TargetID": 100764, + "Directional": true + }] + }, { + "ID": 6871, + "SourceStructureID": 485, + "TargetStructureID": 100767, + "Label": "485-100767 via Ribbon Synapse from 7035 -> 100769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7035, + "TargetID": 100769, + "Directional": true + }] + }, { + "ID": 6872, + "SourceStructureID": 485, + "TargetStructureID": 100771, + "Label": "485-100771 via Ribbon Synapse from 47528 -> 100782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47528, + "TargetID": 100782, + "Directional": true + }] + }, { + "ID": 6873, + "SourceStructureID": 485, + "TargetStructureID": 100787, + "Label": "485-100787 via BC Conventional Synapse from 100786 -> 100791", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100786, + "TargetID": 100791, + "Directional": true + }] + }, { + "ID": 6874, + "SourceStructureID": 485, + "TargetStructureID": 100840, + "Label": "485-100840 via Ribbon Synapse from 47623 -> 100841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47623, + "TargetID": 100841, + "Directional": true + }] + }, { + "ID": 6875, + "SourceStructureID": 485, + "TargetStructureID": 100842, + "Label": "485-100842 via Ribbon Synapse from 47528 -> 100940, 118441 -> 118442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47528, + "TargetID": 100940, + "Directional": true + }, { + "SourceID": 118441, + "TargetID": 118442, + "Directional": true + }] + }, { + "ID": 6876, + "SourceStructureID": 485, + "TargetStructureID": 100845, + "Label": "485-100845 via BC Conventional Synapse from 100844 -> 100847", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100844, + "TargetID": 100847, + "Directional": true + }] + }, { + "ID": 6877, + "SourceStructureID": 485, + "TargetStructureID": 100856, + "Label": "485-100856 via Ribbon Synapse from 47621 -> 100857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47621, + "TargetID": 100857, + "Directional": true + }] + }, { + "ID": 6878, + "SourceStructureID": 485, + "TargetStructureID": 100883, + "Label": "485-100883 via Ribbon Synapse from 100873 -> 100884", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100873, + "TargetID": 100884, + "Directional": true + }] + }, { + "ID": 6879, + "SourceStructureID": 485, + "TargetStructureID": 100885, + "Label": "485-100885 via Ribbon Synapse from 100873 -> 100887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100873, + "TargetID": 100887, + "Directional": true + }] + }, { + "ID": 6880, + "SourceStructureID": 485, + "TargetStructureID": 100895, + "Label": "485-100895 via BC Conventional Synapse from 100894 -> 100899", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100894, + "TargetID": 100899, + "Directional": true + }] + }, { + "ID": 6881, + "SourceStructureID": 485, + "TargetStructureID": 100900, + "Label": "485-100900 via Ribbon Synapse from 47628 -> 100903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47628, + "TargetID": 100903, + "Directional": true + }] + }, { + "ID": 6882, + "SourceStructureID": 485, + "TargetStructureID": 100901, + "Label": "485-100901 via Ribbon Synapse from 47628 -> 100902", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47628, + "TargetID": 100902, + "Directional": true + }] + }, { + "ID": 6883, + "SourceStructureID": 485, + "TargetStructureID": 100911, + "Label": "485-100911 via Ribbon Synapse from 100910 -> 100915", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100910, + "TargetID": 100915, + "Directional": true + }] + }, { + "ID": 6884, + "SourceStructureID": 485, + "TargetStructureID": 100918, + "Label": "485-100918 via Ribbon Synapse from 100917 -> 100968, 101020 -> 100969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100917, + "TargetID": 100968, + "Directional": true + }, { + "SourceID": 101020, + "TargetID": 100969, + "Directional": true + }] + }, { + "ID": 6885, + "SourceStructureID": 485, + "TargetStructureID": 100924, + "Label": "485-100924 via BC Conventional Synapse from 100922 -> 100925", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100922, + "TargetID": 100925, + "Directional": true + }] + }, { + "ID": 6886, + "SourceStructureID": 485, + "TargetStructureID": 100928, + "Label": "485-100928 via BC Conventional Synapse from 100927 -> 100929", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100927, + "TargetID": 100929, + "Directional": true + }] + }, { + "ID": 6887, + "SourceStructureID": 485, + "TargetStructureID": 100934, + "Label": "485-100934 via Ribbon Synapse from 47531 -> 100936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47531, + "TargetID": 100936, + "Directional": true + }] + }, { + "ID": 6888, + "SourceStructureID": 485, + "TargetStructureID": 100953, + "Label": "485-100953 via Ribbon Synapse from 100917 -> 100964, 100952 -> 100957", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100917, + "TargetID": 100964, + "Directional": true + }, { + "SourceID": 100952, + "TargetID": 100957, + "Directional": true + }] + }, { + "ID": 6889, + "SourceStructureID": 485, + "TargetStructureID": 100965, + "Label": "485-100965 via Ribbon Synapse from 100917 -> 100966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100917, + "TargetID": 100966, + "Directional": true + }] + }, { + "ID": 6890, + "SourceStructureID": 485, + "TargetStructureID": 100994, + "Label": "485-100994 via BC Conventional Synapse from 100993 -> 100995", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100993, + "TargetID": 100995, + "Directional": true + }] + }, { + "ID": 6891, + "SourceStructureID": 485, + "TargetStructureID": 101010, + "Label": "485-101010 via Ribbon Synapse from 94213 -> 101011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94213, + "TargetID": 101011, + "Directional": true + }] + }, { + "ID": 6892, + "SourceStructureID": 485, + "TargetStructureID": 101015, + "Label": "485-101015 via Ribbon Synapse from 101020 -> 101022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101020, + "TargetID": 101022, + "Directional": true + }] + }, { + "ID": 6893, + "SourceStructureID": 485, + "TargetStructureID": 101023, + "Label": "485-101023 via Ribbon Synapse from 101020 -> 101024, 101029 -> 101030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101020, + "TargetID": 101024, + "Directional": true + }, { + "SourceID": 101029, + "TargetID": 101030, + "Directional": true + }] + }, { + "ID": 6894, + "SourceStructureID": 485, + "TargetStructureID": 101027, + "Label": "485-101027 via Ribbon Synapse from 101020 -> 101028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101020, + "TargetID": 101028, + "Directional": true + }] + }, { + "ID": 6895, + "SourceStructureID": 485, + "TargetStructureID": 101031, + "Label": "485-101031 via BC Conventional Synapse from 101033 -> 101032", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101033, + "TargetID": 101032, + "Directional": true + }] + }, { + "ID": 6896, + "SourceStructureID": 485, + "TargetStructureID": 101085, + "Label": "485-101085 via Ribbon Synapse from 94214 -> 101087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94214, + "TargetID": 101087, + "Directional": true + }] + }, { + "ID": 6897, + "SourceStructureID": 485, + "TargetStructureID": 101093, + "Label": "485-101093 via BC Conventional Synapse from 101092 -> 101094", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101092, + "TargetID": 101094, + "Directional": true + }] + }, { + "ID": 6898, + "SourceStructureID": 485, + "TargetStructureID": 101095, + "Label": "485-101095 via BC Conventional Synapse from 94215 -> 101096", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94215, + "TargetID": 101096, + "Directional": true + }] + }, { + "ID": 6899, + "SourceStructureID": 485, + "TargetStructureID": 101112, + "Label": "485-101112 via BC Conventional Synapse from 101111 -> 101113", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101111, + "TargetID": 101113, + "Directional": true + }] + }, { + "ID": 6900, + "SourceStructureID": 485, + "TargetStructureID": 101127, + "Label": "485-101127 via Ribbon Synapse from 101122 -> 101128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101122, + "TargetID": 101128, + "Directional": true + }] + }, { + "ID": 6901, + "SourceStructureID": 485, + "TargetStructureID": 101129, + "Label": "485-101129 via Ribbon Synapse from 47539 -> 101130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47539, + "TargetID": 101130, + "Directional": true + }] + }, { + "ID": 6902, + "SourceStructureID": 485, + "TargetStructureID": 101137, + "Label": "485-101137 via Ribbon Synapse from 47534 -> 101139", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47534, + "TargetID": 101139, + "Directional": true + }] + }, { + "ID": 6903, + "SourceStructureID": 485, + "TargetStructureID": 101138, + "Label": "485-101138 via Ribbon Synapse from 47534 -> 101140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47534, + "TargetID": 101140, + "Directional": true + }] + }, { + "ID": 6904, + "SourceStructureID": 485, + "TargetStructureID": 101142, + "Label": "485-101142 via Ribbon Synapse from 101136 -> 101148", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101136, + "TargetID": 101148, + "Directional": true + }] + }, { + "ID": 6905, + "SourceStructureID": 485, + "TargetStructureID": 101145, + "Label": "485-101145 via Ribbon Synapse from 19986 -> 101149, 101144 -> 101152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19986, + "TargetID": 101149, + "Directional": true + }, { + "SourceID": 101144, + "TargetID": 101152, + "Directional": true + }] + }, { + "ID": 6906, + "SourceStructureID": 485, + "TargetStructureID": 101178, + "Label": "485-101178 via Ribbon Synapse from 94356 -> 101179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94356, + "TargetID": 101179, + "Directional": true + }] + }, { + "ID": 6907, + "SourceStructureID": 485, + "TargetStructureID": 101180, + "Label": "485-101180 via Ribbon Synapse from 94355 -> 101181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94355, + "TargetID": 101181, + "Directional": true + }] + }, { + "ID": 6908, + "SourceStructureID": 485, + "TargetStructureID": 101182, + "Label": "485-101182 via Ribbon Synapse from 94357 -> 101183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94357, + "TargetID": 101183, + "Directional": true + }] + }, { + "ID": 6909, + "SourceStructureID": 485, + "TargetStructureID": 101185, + "Label": "485-101185 via Ribbon Synapse from 94355 -> 101186", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94355, + "TargetID": 101186, + "Directional": true + }] + }, { + "ID": 6910, + "SourceStructureID": 485, + "TargetStructureID": 101187, + "Label": "485-101187 via Ribbon Synapse from 94354 -> 101189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94354, + "TargetID": 101189, + "Directional": true + }] + }, { + "ID": 6911, + "SourceStructureID": 485, + "TargetStructureID": 101194, + "Label": "485-101194 via Ribbon Synapse from 94354 -> 101199", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94354, + "TargetID": 101199, + "Directional": true + }] + }, { + "ID": 6912, + "SourceStructureID": 485, + "TargetStructureID": 101201, + "Label": "485-101201 via Ribbon Synapse from 101204 -> 101205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101204, + "TargetID": 101205, + "Directional": true + }] + }, { + "ID": 6913, + "SourceStructureID": 485, + "TargetStructureID": 101206, + "Label": "485-101206 via Ribbon Synapse from 101204 -> 101207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101204, + "TargetID": 101207, + "Directional": true + }] + }, { + "ID": 6914, + "SourceStructureID": 485, + "TargetStructureID": 101220, + "Label": "485-101220 via BC Conventional Synapse from 101222 -> 101221", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101222, + "TargetID": 101221, + "Directional": true + }] + }, { + "ID": 6915, + "SourceStructureID": 485, + "TargetStructureID": 101228, + "Label": "485-101228 via BC Conventional Synapse from 101227 -> 101229", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101227, + "TargetID": 101229, + "Directional": true + }] + }, { + "ID": 6916, + "SourceStructureID": 485, + "TargetStructureID": 101238, + "Label": "485-101238 via Ribbon Synapse from 101237 -> 101239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101237, + "TargetID": 101239, + "Directional": true + }] + }, { + "ID": 6917, + "SourceStructureID": 485, + "TargetStructureID": 101257, + "Label": "485-101257 via Ribbon Synapse from 43488 -> 101259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43488, + "TargetID": 101259, + "Directional": true + }] + }, { + "ID": 6918, + "SourceStructureID": 485, + "TargetStructureID": 101261, + "Label": "485-101261 via Ribbon Synapse from 43488 -> 101263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43488, + "TargetID": 101263, + "Directional": true + }] + }, { + "ID": 6919, + "SourceStructureID": 485, + "TargetStructureID": 101289, + "Label": "485-101289 via Ribbon Synapse from 101285 -> 101292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101285, + "TargetID": 101292, + "Directional": true + }] + }, { + "ID": 6920, + "SourceStructureID": 485, + "TargetStructureID": 101294, + "Label": "485-101294 via Ribbon Synapse from 101296 -> 101295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101296, + "TargetID": 101295, + "Directional": true + }] + }, { + "ID": 6921, + "SourceStructureID": 485, + "TargetStructureID": 101299, + "Label": "485-101299 via BC Conventional Synapse from 101298 -> 101302", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101298, + "TargetID": 101302, + "Directional": true + }] + }, { + "ID": 6922, + "SourceStructureID": 485, + "TargetStructureID": 101314, + "Label": "485-101314 via Ribbon Synapse from 101296 -> 101315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101296, + "TargetID": 101315, + "Directional": true + }] + }, { + "ID": 6923, + "SourceStructureID": 485, + "TargetStructureID": 101343, + "Label": "485-101343 via BC Conventional Synapse from 101338 -> 101346", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101338, + "TargetID": 101346, + "Directional": true + }] + }, { + "ID": 6924, + "SourceStructureID": 485, + "TargetStructureID": 101351, + "Label": "485-101351 via BC Conventional Synapse from 101353 -> 101352", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101353, + "TargetID": 101352, + "Directional": true + }] + }, { + "ID": 6925, + "SourceStructureID": 485, + "TargetStructureID": 101375, + "Label": "485-101375 via BC Conventional Synapse from 101373 -> 101376", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101373, + "TargetID": 101376, + "Directional": true + }] + }, { + "ID": 6926, + "SourceStructureID": 485, + "TargetStructureID": 101392, + "Label": "485-101392 via Ribbon Synapse from 94245 -> 101426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94245, + "TargetID": 101426, + "Directional": true + }] + }, { + "ID": 6927, + "SourceStructureID": 485, + "TargetStructureID": 101394, + "Label": "485-101394 via Ribbon Synapse from 94268 -> 101398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94268, + "TargetID": 101398, + "Directional": true + }] + }, { + "ID": 6928, + "SourceStructureID": 485, + "TargetStructureID": 101437, + "Label": "485-101437 via Ribbon Synapse from 101434 -> 101438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101434, + "TargetID": 101438, + "Directional": true + }] + }, { + "ID": 6929, + "SourceStructureID": 485, + "TargetStructureID": 101439, + "Label": "485-101439 via Ribbon Synapse from 94266 -> 101446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94266, + "TargetID": 101446, + "Directional": true + }] + }, { + "ID": 6930, + "SourceStructureID": 485, + "TargetStructureID": 101466, + "Label": "485-101466 via BC Conventional Synapse from 101467 -> 101468", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101467, + "TargetID": 101468, + "Directional": true + }] + }, { + "ID": 6931, + "SourceStructureID": 485, + "TargetStructureID": 101473, + "Label": "485-101473 via Ribbon Synapse from 101472 -> 101476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101472, + "TargetID": 101476, + "Directional": true + }] + }, { + "ID": 6932, + "SourceStructureID": 485, + "TargetStructureID": 101474, + "Label": "485-101474 via Ribbon Synapse from 101472 -> 101475", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101472, + "TargetID": 101475, + "Directional": true + }] + }, { + "ID": 6933, + "SourceStructureID": 485, + "TargetStructureID": 101704, + "Label": "485-101704 via Ribbon Synapse from 101703 -> 101705", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101703, + "TargetID": 101705, + "Directional": true + }] + }, { + "ID": 6934, + "SourceStructureID": 485, + "TargetStructureID": 101707, + "Label": "485-101707 via Ribbon Synapse from 101477 -> 101708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101477, + "TargetID": 101708, + "Directional": true + }] + }, { + "ID": 6935, + "SourceStructureID": 485, + "TargetStructureID": 101711, + "Label": "485-101711 via Ribbon Synapse from 101492 -> 101714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101492, + "TargetID": 101714, + "Directional": true + }] + }, { + "ID": 6936, + "SourceStructureID": 485, + "TargetStructureID": 101715, + "Label": "485-101715 via Ribbon Synapse from 101492 -> 101716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101492, + "TargetID": 101716, + "Directional": true + }] + }, { + "ID": 6937, + "SourceStructureID": 485, + "TargetStructureID": 101721, + "Label": "485-101721 via BC Conventional Synapse from 101723 -> 101722", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101723, + "TargetID": 101722, + "Directional": true + }] + }, { + "ID": 6938, + "SourceStructureID": 485, + "TargetStructureID": 101730, + "Label": "485-101730 via BC Conventional Synapse from 101731 -> 101732", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101731, + "TargetID": 101732, + "Directional": true + }] + }, { + "ID": 6939, + "SourceStructureID": 485, + "TargetStructureID": 101733, + "Label": "485-101733 via Ribbon Synapse from 47559 -> 101734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47559, + "TargetID": 101734, + "Directional": true + }] + }, { + "ID": 6940, + "SourceStructureID": 485, + "TargetStructureID": 101740, + "Label": "485-101740 via Ribbon Synapse from 47558 -> 101741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47558, + "TargetID": 101741, + "Directional": true + }] + }, { + "ID": 6941, + "SourceStructureID": 485, + "TargetStructureID": 101742, + "Label": "485-101742 via Ribbon Synapse from 47558 -> 101743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47558, + "TargetID": 101743, + "Directional": true + }] + }, { + "ID": 6942, + "SourceStructureID": 485, + "TargetStructureID": 101744, + "Label": "485-101744 via Ribbon Synapse from 47555 -> 101746", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47555, + "TargetID": 101746, + "Directional": true + }] + }, { + "ID": 6943, + "SourceStructureID": 485, + "TargetStructureID": 101751, + "Label": "485-101751 via BC Conventional Synapse from 101779 -> 101755", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101779, + "TargetID": 101755, + "Directional": true + }] + }, { + "ID": 6944, + "SourceStructureID": 485, + "TargetStructureID": 101777, + "Label": "485-101777 via Ribbon Synapse from 101776 -> 101778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101776, + "TargetID": 101778, + "Directional": true + }] + }, { + "ID": 6945, + "SourceStructureID": 485, + "TargetStructureID": 101781, + "Label": "485-101781 via BC Conventional Synapse from 101780 -> 101782", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101780, + "TargetID": 101782, + "Directional": true + }] + }, { + "ID": 6946, + "SourceStructureID": 485, + "TargetStructureID": 101785, + "Label": "485-101785 via Ribbon Synapse from 101861 -> 101862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101861, + "TargetID": 101862, + "Directional": true + }] + }, { + "ID": 6947, + "SourceStructureID": 485, + "TargetStructureID": 101793, + "Label": "485-101793 via Ribbon Synapse from 47561 -> 101795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47561, + "TargetID": 101795, + "Directional": true + }] + }, { + "ID": 6948, + "SourceStructureID": 485, + "TargetStructureID": 101796, + "Label": "485-101796 via Ribbon Synapse from 47561 -> 101797", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47561, + "TargetID": 101797, + "Directional": true + }] + }, { + "ID": 6949, + "SourceStructureID": 485, + "TargetStructureID": 101798, + "Label": "485-101798 via BC Conventional Synapse from 101800 -> 101799", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101800, + "TargetID": 101799, + "Directional": true + }] + }, { + "ID": 6950, + "SourceStructureID": 485, + "TargetStructureID": 101801, + "Label": "485-101801 via Ribbon Synapse from 47564 -> 101806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47564, + "TargetID": 101806, + "Directional": true + }] + }, { + "ID": 6951, + "SourceStructureID": 485, + "TargetStructureID": 101815, + "Label": "485-101815 via Ribbon Synapse from 101861 -> 101863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101861, + "TargetID": 101863, + "Directional": true + }] + }, { + "ID": 6952, + "SourceStructureID": 485, + "TargetStructureID": 101830, + "Label": "485-101830 via BC Conventional Synapse from 101829 -> 101832", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101829, + "TargetID": 101832, + "Directional": true + }] + }, { + "ID": 6953, + "SourceStructureID": 485, + "TargetStructureID": 101833, + "Label": "485-101833 via BC Conventional Synapse from 101831 -> 101834", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101831, + "TargetID": 101834, + "Directional": true + }] + }, { + "ID": 6954, + "SourceStructureID": 485, + "TargetStructureID": 101837, + "Label": "485-101837 via BC Conventional Synapse from 101836 -> 101840", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101836, + "TargetID": 101840, + "Directional": true + }] + }, { + "ID": 6955, + "SourceStructureID": 485, + "TargetStructureID": 101864, + "Label": "485-101864 via BC Conventional Synapse from 101856 -> 101865", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101856, + "TargetID": 101865, + "Directional": true + }] + }, { + "ID": 6956, + "SourceStructureID": 485, + "TargetStructureID": 101866, + "Label": "485-101866 via Ribbon Synapse from 23146 -> 101867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23146, + "TargetID": 101867, + "Directional": true + }] + }, { + "ID": 6957, + "SourceStructureID": 485, + "TargetStructureID": 101868, + "Label": "485-101868 via Ribbon Synapse from 23146 -> 101875", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23146, + "TargetID": 101875, + "Directional": true + }] + }, { + "ID": 6958, + "SourceStructureID": 485, + "TargetStructureID": 101903, + "Label": "485-101903 via BC Conventional Synapse from 101905 -> 101904", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101905, + "TargetID": 101904, + "Directional": true + }] + }, { + "ID": 6959, + "SourceStructureID": 485, + "TargetStructureID": 101917, + "Label": "485-101917 via Ribbon Synapse from 101916 -> 101918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101916, + "TargetID": 101918, + "Directional": true + }] + }, { + "ID": 6960, + "SourceStructureID": 485, + "TargetStructureID": 101923, + "Label": "485-101923 via BC Conventional Synapse from 101922 -> 101924", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101922, + "TargetID": 101924, + "Directional": true + }] + }, { + "ID": 6961, + "SourceStructureID": 485, + "TargetStructureID": 101933, + "Label": "485-101933 via BC Conventional Synapse from 101929 -> 101934", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101929, + "TargetID": 101934, + "Directional": true + }] + }, { + "ID": 6962, + "SourceStructureID": 485, + "TargetStructureID": 101961, + "Label": "485-101961 via Ribbon Synapse from 101963 -> 101964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101963, + "TargetID": 101964, + "Directional": true + }] + }, { + "ID": 6963, + "SourceStructureID": 485, + "TargetStructureID": 101965, + "Label": "485-101965 via Ribbon Synapse from 23149 -> 101968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23149, + "TargetID": 101968, + "Directional": true + }] + }, { + "ID": 6964, + "SourceStructureID": 485, + "TargetStructureID": 101966, + "Label": "485-101966 via Ribbon Synapse from 23149 -> 101967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23149, + "TargetID": 101967, + "Directional": true + }] + }, { + "ID": 6965, + "SourceStructureID": 485, + "TargetStructureID": 102007, + "Label": "485-102007 via Ribbon Synapse from 102006 -> 102010", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102006, + "TargetID": 102010, + "Directional": true + }] + }, { + "ID": 6966, + "SourceStructureID": 485, + "TargetStructureID": 102014, + "Label": "485-102014 via Ribbon Synapse from 18310 -> 102019", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18310, + "TargetID": 102019, + "Directional": true + }] + }, { + "ID": 6967, + "SourceStructureID": 485, + "TargetStructureID": 102023, + "Label": "485-102023 via Ribbon Synapse from 102022 -> 102031", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102022, + "TargetID": 102031, + "Directional": true + }] + }, { + "ID": 6968, + "SourceStructureID": 485, + "TargetStructureID": 102032, + "Label": "485-102032 via Ribbon Synapse from 102022 -> 102033", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102022, + "TargetID": 102033, + "Directional": true + }] + }, { + "ID": 6969, + "SourceStructureID": 485, + "TargetStructureID": 102034, + "Label": "485-102034 via Ribbon Synapse from 102022 -> 102035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102022, + "TargetID": 102035, + "Directional": true + }] + }, { + "ID": 6970, + "SourceStructureID": 485, + "TargetStructureID": 127846, + "Label": "485-127846 via Ribbon Synapse from 100539 -> 127864, 101928 -> 101931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100539, + "TargetID": 127864, + "Directional": true + }, { + "SourceID": 101928, + "TargetID": 101931, + "Directional": true + }] + }, { + "ID": 6971, + "SourceStructureID": 488, + "TargetStructureID": 422, + "Label": "488-422 via Conventional from 87795 -> 16601, 87796 -> 87797", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87795, + "TargetID": 16601, + "Directional": true + }, { + "SourceID": 87796, + "TargetID": 87797, + "Directional": true + }] + }, { + "ID": 6972, + "SourceStructureID": 488, + "TargetStructureID": 517, + "Label": "488-517 via Conventional from 40938 -> 40939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40938, + "TargetID": 40939, + "Directional": true + }] + }, { + "ID": 6973, + "SourceStructureID": 488, + "TargetStructureID": 519, + "Label": "488-519 via Conventional from 32310 -> 9298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32310, + "TargetID": 9298, + "Directional": true + }] + }, { + "ID": 6974, + "SourceStructureID": 488, + "TargetStructureID": 11250, + "Label": "488-11250 via Conventional from 40940 -> 40941", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40940, + "TargetID": 40941, + "Directional": true + }] + }, { + "ID": 6975, + "SourceStructureID": 492, + "TargetStructureID": 408, + "Label": "492-408 via Conventional from 35044 -> 35043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35044, + "TargetID": 35043, + "Directional": true + }] + }, { + "ID": 6976, + "SourceStructureID": 492, + "TargetStructureID": 6155, + "Label": "492-6155 via Conventional from 35062 -> 35063", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35062, + "TargetID": 35063, + "Directional": true + }] + }, { + "ID": 6977, + "SourceStructureID": 492, + "TargetStructureID": 7054, + "Label": "492-7054 via Conventional from 34987 -> 10895", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34987, + "TargetID": 10895, + "Directional": true + }] + }, { + "ID": 6978, + "SourceStructureID": 492, + "TargetStructureID": 26079, + "Label": "492-26079 via Conventional from 35038 -> 48669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35038, + "TargetID": 48669, + "Directional": true + }] + }, { + "ID": 6979, + "SourceStructureID": 492, + "TargetStructureID": 35046, + "Label": "492-35046 via Conventional from 61993 -> 61992", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61993, + "TargetID": 61992, + "Directional": true + }] + }, { + "ID": 6980, + "SourceStructureID": 514, + "TargetStructureID": 478, + "Label": "514-478 via Conventional from 1171 -> 19455, 1176 -> 4634, 1189 -> 4629, 4820 -> 19441, 4826 -> 19440", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 1171, + "TargetID": 19455, + "Directional": true + }, { + "SourceID": 1176, + "TargetID": 4634, + "Directional": true + }, { + "SourceID": 1189, + "TargetID": 4629, + "Directional": true + }, { + "SourceID": 4820, + "TargetID": 19441, + "Directional": true + }, { + "SourceID": 4826, + "TargetID": 19440, + "Directional": true + }] + }, { + "ID": 6981, + "SourceStructureID": 514, + "TargetStructureID": 597, + "Label": "514-597 via Conventional from 43399 -> 43400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43399, + "TargetID": 43400, + "Directional": true + }] + }, { + "ID": 6982, + "SourceStructureID": 514, + "TargetStructureID": 992, + "Label": "514-992 via Conventional from 59642 -> 15120, 59643 -> 15121", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59642, + "TargetID": 15120, + "Directional": true + }, { + "SourceID": 59643, + "TargetID": 15121, + "Directional": true + }] + }, { + "ID": 6983, + "SourceStructureID": 514, + "TargetStructureID": 4567, + "Label": "514-4567 via Conventional from 6210 -> 23293, 15469 -> 15596, 15580 -> 15573, 15581 -> 15575, 15595 -> 15594", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6210, + "TargetID": 23293, + "Directional": true + }, { + "SourceID": 15469, + "TargetID": 15596, + "Directional": true + }, { + "SourceID": 15580, + "TargetID": 15573, + "Directional": true + }, { + "SourceID": 15581, + "TargetID": 15575, + "Directional": true + }, { + "SourceID": 15595, + "TargetID": 15594, + "Directional": true + }] + }, { + "ID": 6984, + "SourceStructureID": 514, + "TargetStructureID": 4568, + "Label": "514-4568 via Conventional from 4572 -> 43402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 4572, + "TargetID": 43402, + "Directional": true + }] + }, { + "ID": 6985, + "SourceStructureID": 514, + "TargetStructureID": 5150, + "Label": "514-5150 via Conventional from 1304 -> 5172, 4576 -> 5167", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 1304, + "TargetID": 5172, + "Directional": true + }, { + "SourceID": 4576, + "TargetID": 5167, + "Directional": true + }] + }, { + "ID": 6986, + "SourceStructureID": 514, + "TargetStructureID": 6850, + "Label": "514-6850 via Conventional from 4823 -> 6854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 4823, + "TargetID": 6854, + "Directional": true + }] + }, { + "ID": 6987, + "SourceStructureID": 514, + "TargetStructureID": 8485, + "Label": "514-8485 via Conventional from 1147 -> 15366, 1151 -> 15370, 1154 -> 15371, 11666 -> 11667", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 1147, + "TargetID": 15366, + "Directional": true + }, { + "SourceID": 1151, + "TargetID": 15370, + "Directional": true + }, { + "SourceID": 1154, + "TargetID": 15371, + "Directional": true + }, { + "SourceID": 11666, + "TargetID": 11667, + "Directional": true + }] + }, { + "ID": 6988, + "SourceStructureID": 514, + "TargetStructureID": 9504, + "Label": "514-9504 via Conventional from 1370 -> 9505, 16649 -> 16648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 1370, + "TargetID": 9505, + "Directional": true + }, { + "SourceID": 16649, + "TargetID": 16648, + "Directional": true + }] + }, { + "ID": 6989, + "SourceStructureID": 514, + "TargetStructureID": 15377, + "Label": "514-15377 via Conventional from 4817 -> 15378", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 4817, + "TargetID": 15378, + "Directional": true + }] + }, { + "ID": 6990, + "SourceStructureID": 514, + "TargetStructureID": 25392, + "Label": "514-25392 via Adherens from 25396 -> 25395", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 25396, + "TargetID": 25395, + "Directional": true + }] + }, { + "ID": 6991, + "SourceStructureID": 514, + "TargetStructureID": 28913, + "Label": "514-28913 via Conventional from 28930 -> 28928", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 28930, + "TargetID": 28928, + "Directional": true + }] + }, { + "ID": 6992, + "SourceStructureID": 514, + "TargetStructureID": 60440, + "Label": "514-60440 via Conventional from 3221 -> 60444, 3222 -> 60441, 3222 -> 60443", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 3221, + "TargetID": 60444, + "Directional": true + }, { + "SourceID": 3222, + "TargetID": 60441, + "Directional": true + }, { + "SourceID": 3222, + "TargetID": 60443, + "Directional": true + }] + }, { + "ID": 6993, + "SourceStructureID": 514, + "TargetStructureID": 83461, + "Label": "514-83461 via Conventional from 4585 -> 83467", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 4585, + "TargetID": 83467, + "Directional": true + }] + }, { + "ID": 6994, + "SourceStructureID": 516, + "TargetStructureID": 514, + "Label": "516-514 via Ribbon Synapse from 10848 -> 10849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10848, + "TargetID": 10849, + "Directional": true + }] + }, { + "ID": 6995, + "SourceStructureID": 516, + "TargetStructureID": 3257, + "Label": "516-3257 via Ribbon Synapse from 6575 -> 16198, 16196 -> 16197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6575, + "TargetID": 16198, + "Directional": true + }, { + "SourceID": 16196, + "TargetID": 16197, + "Directional": true + }] + }, { + "ID": 6996, + "SourceStructureID": 516, + "TargetStructureID": 3679, + "Label": "516-3679 via Ribbon Synapse from 6188 -> 6186, 6190 -> 6189, 6510 -> 8015, 18402 -> 39335, 39329 -> 39330, 66147 -> 66148, 66149 -> 8013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6188, + "TargetID": 6186, + "Directional": true + }, { + "SourceID": 6190, + "TargetID": 6189, + "Directional": true + }, { + "SourceID": 6510, + "TargetID": 8015, + "Directional": true + }, { + "SourceID": 18402, + "TargetID": 39335, + "Directional": true + }, { + "SourceID": 39329, + "TargetID": 39330, + "Directional": true + }, { + "SourceID": 66147, + "TargetID": 66148, + "Directional": true + }, { + "SourceID": 66149, + "TargetID": 8013, + "Directional": true + }] + }, { + "ID": 6997, + "SourceStructureID": 516, + "TargetStructureID": 4850, + "Label": "516-4850 via Ribbon Synapse from 6510 -> 14208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6510, + "TargetID": 14208, + "Directional": true + }] + }, { + "ID": 6998, + "SourceStructureID": 516, + "TargetStructureID": 5331, + "Label": "516-5331 via Ribbon Synapse from 6385 -> 39172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6385, + "TargetID": 39172, + "Directional": true + }] + }, { + "ID": 6999, + "SourceStructureID": 516, + "TargetStructureID": 5860, + "Label": "516-5860 via Ribbon Synapse from 16347 -> 16348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16347, + "TargetID": 16348, + "Directional": true + }] + }, { + "ID": 7000, + "SourceStructureID": 516, + "TargetStructureID": 6169, + "Label": "516-6169 via Ribbon Synapse from 3737 -> 16330, 6384 -> 16224, 6385 -> 16223, 6391 -> 16247, 6393 -> 29692, 6399 -> 18392, 6405 -> 39341, 10833 -> 10832, 10835 -> 10836, 16177 -> 16176, 16204 -> 16205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3737, + "TargetID": 16330, + "Directional": true + }, { + "SourceID": 6384, + "TargetID": 16224, + "Directional": true + }, { + "SourceID": 6385, + "TargetID": 16223, + "Directional": true + }, { + "SourceID": 6391, + "TargetID": 16247, + "Directional": true + }, { + "SourceID": 6393, + "TargetID": 29692, + "Directional": true + }, { + "SourceID": 6399, + "TargetID": 18392, + "Directional": true + }, { + "SourceID": 6405, + "TargetID": 39341, + "Directional": true + }, { + "SourceID": 10833, + "TargetID": 10832, + "Directional": true + }, { + "SourceID": 10835, + "TargetID": 10836, + "Directional": true + }, { + "SourceID": 16177, + "TargetID": 16176, + "Directional": true + }, { + "SourceID": 16204, + "TargetID": 16205, + "Directional": true + }] + }, { + "ID": 7001, + "SourceStructureID": 516, + "TargetStructureID": 9260, + "Label": "516-9260 via Ribbon Synapse from 6398 -> 39673, 6399 -> 39674, 6401 -> 39672, 64612 -> 64613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6398, + "TargetID": 39673, + "Directional": true + }, { + "SourceID": 6399, + "TargetID": 39674, + "Directional": true + }, { + "SourceID": 6401, + "TargetID": 39672, + "Directional": true + }, { + "SourceID": 64612, + "TargetID": 64613, + "Directional": true + }] + }, { + "ID": 7002, + "SourceStructureID": 516, + "TargetStructureID": 32046, + "Label": "516-32046 via Ribbon Synapse from 6506 -> 32048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6506, + "TargetID": 32048, + "Directional": true + }] + }, { + "ID": 7003, + "SourceStructureID": 516, + "TargetStructureID": 32371, + "Label": "516-32371 via Ribbon Synapse from 3737 -> 32375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3737, + "TargetID": 32375, + "Directional": true + }] + }, { + "ID": 7004, + "SourceStructureID": 516, + "TargetStructureID": 39168, + "Label": "516-39168 via Ribbon Synapse from 6384 -> 39170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6384, + "TargetID": 39170, + "Directional": true + }] + }, { + "ID": 7005, + "SourceStructureID": 516, + "TargetStructureID": 39201, + "Label": "516-39201 via Ribbon Synapse from 16204 -> 64582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16204, + "TargetID": 64582, + "Directional": true + }] + }, { + "ID": 7006, + "SourceStructureID": 516, + "TargetStructureID": 39208, + "Label": "516-39208 via Ribbon Synapse from 6188 -> 39211, 6498 -> 39256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6188, + "TargetID": 39211, + "Directional": true + }, { + "SourceID": 6498, + "TargetID": 39256, + "Directional": true + }] + }, { + "ID": 7007, + "SourceStructureID": 516, + "TargetStructureID": 39244, + "Label": "516-39244 via Ribbon Synapse from 6507 -> 39247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6507, + "TargetID": 39247, + "Directional": true + }] + }, { + "ID": 7008, + "SourceStructureID": 516, + "TargetStructureID": 39324, + "Label": "516-39324 via Ribbon Synapse from 39329 -> 39328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39329, + "TargetID": 39328, + "Directional": true + }] + }, { + "ID": 7009, + "SourceStructureID": 516, + "TargetStructureID": 39331, + "Label": "516-39331 via Ribbon Synapse from 18402 -> 39336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18402, + "TargetID": 39336, + "Directional": true + }] + }, { + "ID": 7010, + "SourceStructureID": 516, + "TargetStructureID": 39342, + "Label": "516-39342 via Ribbon Synapse from 6391 -> 114817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6391, + "TargetID": 114817, + "Directional": true + }] + }, { + "ID": 7011, + "SourceStructureID": 516, + "TargetStructureID": 39516, + "Label": "516-39516 via Ribbon Synapse from 16177 -> 39519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16177, + "TargetID": 39519, + "Directional": true + }] + }, { + "ID": 7012, + "SourceStructureID": 516, + "TargetStructureID": 39560, + "Label": "516-39560 via Ribbon Synapse from 39566 -> 39565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39566, + "TargetID": 39565, + "Directional": true + }] + }, { + "ID": 7013, + "SourceStructureID": 516, + "TargetStructureID": 39575, + "Label": "516-39575 via Ribbon Synapse from 16347 -> 39579", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16347, + "TargetID": 39579, + "Directional": true + }] + }, { + "ID": 7014, + "SourceStructureID": 516, + "TargetStructureID": 39590, + "Label": "516-39590 via Ribbon Synapse from 6393 -> 39593", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6393, + "TargetID": 39593, + "Directional": true + }] + }, { + "ID": 7015, + "SourceStructureID": 516, + "TargetStructureID": 39688, + "Label": "516-39688 via Ribbon Synapse from 39692 -> 39691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39692, + "TargetID": 39691, + "Directional": true + }] + }, { + "ID": 7016, + "SourceStructureID": 516, + "TargetStructureID": 40856, + "Label": "516-40856 via Ribbon Synapse from 123169 -> 123168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123169, + "TargetID": 123168, + "Directional": true + }] + }, { + "ID": 7017, + "SourceStructureID": 516, + "TargetStructureID": 40863, + "Label": "516-40863 via Ribbon Synapse from 16349 -> 40864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16349, + "TargetID": 40864, + "Directional": true + }] + }, { + "ID": 7018, + "SourceStructureID": 517, + "TargetStructureID": 514, + "Label": "517-514 via Ribbon Synapse from 10812 -> 10811, 16411 -> 1591, 16421 -> 3081, 16422 -> 3082, 16575 -> 1602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10812, + "TargetID": 10811, + "Directional": true + }, { + "SourceID": 16411, + "TargetID": 1591, + "Directional": true + }, { + "SourceID": 16421, + "TargetID": 3081, + "Directional": true + }, { + "SourceID": 16422, + "TargetID": 3082, + "Directional": true + }, { + "SourceID": 16575, + "TargetID": 1602, + "Directional": true + }] + }, { + "ID": 7019, + "SourceStructureID": 517, + "TargetStructureID": 591, + "Label": "517-591 via Ribbon Synapse from 14947 -> 40892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14947, + "TargetID": 40892, + "Directional": true + }] + }, { + "ID": 7020, + "SourceStructureID": 517, + "TargetStructureID": 3679, + "Label": "517-3679 via Ribbon Synapse from 14945 -> 3714, 14946 -> 3711, 14947 -> 14915, 16420 -> 16419, 16428 -> 16429, 16442 -> 16431, 16443 -> 16432, 19155 -> 19156, 19157 -> 19160, 19158 -> 19159, 19161 -> 92719, 19163 -> 33031, 19164 -> 35626, 41038 -> 3722, 66136 -> 66137", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14945, + "TargetID": 3714, + "Directional": true + }, { + "SourceID": 14946, + "TargetID": 3711, + "Directional": true + }, { + "SourceID": 14947, + "TargetID": 14915, + "Directional": true + }, { + "SourceID": 16420, + "TargetID": 16419, + "Directional": true + }, { + "SourceID": 16428, + "TargetID": 16429, + "Directional": true + }, { + "SourceID": 16442, + "TargetID": 16431, + "Directional": true + }, { + "SourceID": 16443, + "TargetID": 16432, + "Directional": true + }, { + "SourceID": 19155, + "TargetID": 19156, + "Directional": true + }, { + "SourceID": 19157, + "TargetID": 19160, + "Directional": true + }, { + "SourceID": 19158, + "TargetID": 19159, + "Directional": true + }, { + "SourceID": 19161, + "TargetID": 92719, + "Directional": true + }, { + "SourceID": 19163, + "TargetID": 33031, + "Directional": true + }, { + "SourceID": 19164, + "TargetID": 35626, + "Directional": true + }, { + "SourceID": 41038, + "TargetID": 3722, + "Directional": true + }, { + "SourceID": 66136, + "TargetID": 66137, + "Directional": true + }] + }, { + "ID": 7021, + "SourceStructureID": 517, + "TargetStructureID": 4850, + "Label": "517-4850 via Ribbon Synapse from 11624 -> 24300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11624, + "TargetID": 24300, + "Directional": true + }] + }, { + "ID": 7022, + "SourceStructureID": 517, + "TargetStructureID": 4943, + "Label": "517-4943 via Ribbon Synapse from 19157 -> 40987, 19158 -> 40979", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19157, + "TargetID": 40987, + "Directional": true + }, { + "SourceID": 19158, + "TargetID": 40979, + "Directional": true + }] + }, { + "ID": 7023, + "SourceStructureID": 517, + "TargetStructureID": 5303, + "Label": "517-5303 via Ribbon Synapse from 19164 -> 35625", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19164, + "TargetID": 35625, + "Directional": true + }] + }, { + "ID": 7024, + "SourceStructureID": 517, + "TargetStructureID": 5609, + "Label": "517-5609 via Ribbon Synapse from 16422 -> 20659, 16428 -> 20661", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16422, + "TargetID": 20659, + "Directional": true + }, { + "SourceID": 16428, + "TargetID": 20661, + "Directional": true + }] + }, { + "ID": 7025, + "SourceStructureID": 517, + "TargetStructureID": 6169, + "Label": "517-6169 via Ribbon Synapse from 6903 -> 18158, 10814 -> 11623, 11624 -> 9460, 14165 -> 14166, 41034 -> 41035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6903, + "TargetID": 18158, + "Directional": true + }, { + "SourceID": 10814, + "TargetID": 11623, + "Directional": true + }, { + "SourceID": 11624, + "TargetID": 9460, + "Directional": true + }, { + "SourceID": 14165, + "TargetID": 14166, + "Directional": true + }, { + "SourceID": 41034, + "TargetID": 41035, + "Directional": true + }] + }, { + "ID": 7026, + "SourceStructureID": 517, + "TargetStructureID": 40896, + "Label": "517-40896 via Ribbon Synapse from 41024 -> 41023", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 41024, + "TargetID": 41023, + "Directional": true + }] + }, { + "ID": 7027, + "SourceStructureID": 517, + "TargetStructureID": 40919, + "Label": "517-40919 via Ribbon Synapse from 19165 -> 40922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19165, + "TargetID": 40922, + "Directional": true + }] + }, { + "ID": 7028, + "SourceStructureID": 517, + "TargetStructureID": 40927, + "Label": "517-40927 via Ribbon Synapse from 16421 -> 40930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16421, + "TargetID": 40930, + "Directional": true + }] + }, { + "ID": 7029, + "SourceStructureID": 517, + "TargetStructureID": 40934, + "Label": "517-40934 via Ribbon Synapse from 14946 -> 40936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14946, + "TargetID": 40936, + "Directional": true + }] + }, { + "ID": 7030, + "SourceStructureID": 517, + "TargetStructureID": 40951, + "Label": "517-40951 via Ribbon Synapse from 19163 -> 51427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19163, + "TargetID": 51427, + "Directional": true + }] + }, { + "ID": 7031, + "SourceStructureID": 517, + "TargetStructureID": 40956, + "Label": "517-40956 via Ribbon Synapse from 19162 -> 40959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19162, + "TargetID": 40959, + "Directional": true + }] + }, { + "ID": 7032, + "SourceStructureID": 517, + "TargetStructureID": 40965, + "Label": "517-40965 via Ribbon Synapse from 19155 -> 40968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19155, + "TargetID": 40968, + "Directional": true + }] + }, { + "ID": 7033, + "SourceStructureID": 517, + "TargetStructureID": 60523, + "Label": "517-60523 via Ribbon Synapse from 19166 -> 123156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19166, + "TargetID": 123156, + "Directional": true + }] + }, { + "ID": 7034, + "SourceStructureID": 517, + "TargetStructureID": 89887, + "Label": "517-89887 via Ribbon Synapse from 89893 -> 89894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89893, + "TargetID": 89894, + "Directional": true + }] + }, { + "ID": 7035, + "SourceStructureID": 518, + "TargetStructureID": 179, + "Label": "518-179 via Ribbon Synapse from 3442 -> 25302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3442, + "TargetID": 25302, + "Directional": true + }] + }, { + "ID": 7036, + "SourceStructureID": 518, + "TargetStructureID": 476, + "Label": "518-476 via Ribbon Synapse from 2303 -> 2300, 2323 -> 2331, 2325 -> 2333, 3354 -> 16029, 3371 -> 14713, 3380 -> 14741, 3387 -> 14999, 3399 -> 14998, 3413 -> 14992, 3419 -> 14996, 3439 -> 2442, 3442 -> 18012, 3445 -> 32137, 3457 -> 2414, 3459 -> 2416, 3475 -> 2448, 3487 -> 18015, 3503 -> 36695, 3519 -> 18013, 5783 -> 37191, 14722 -> 3305, 18014 -> 2441", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 2303, + "TargetID": 2300, + "Directional": true + }, { + "SourceID": 2323, + "TargetID": 2331, + "Directional": true + }, { + "SourceID": 2325, + "TargetID": 2333, + "Directional": true + }, { + "SourceID": 3354, + "TargetID": 16029, + "Directional": true + }, { + "SourceID": 3371, + "TargetID": 14713, + "Directional": true + }, { + "SourceID": 3380, + "TargetID": 14741, + "Directional": true + }, { + "SourceID": 3387, + "TargetID": 14999, + "Directional": true + }, { + "SourceID": 3399, + "TargetID": 14998, + "Directional": true + }, { + "SourceID": 3413, + "TargetID": 14992, + "Directional": true + }, { + "SourceID": 3419, + "TargetID": 14996, + "Directional": true + }, { + "SourceID": 3439, + "TargetID": 2442, + "Directional": true + }, { + "SourceID": 3442, + "TargetID": 18012, + "Directional": true + }, { + "SourceID": 3445, + "TargetID": 32137, + "Directional": true + }, { + "SourceID": 3457, + "TargetID": 2414, + "Directional": true + }, { + "SourceID": 3459, + "TargetID": 2416, + "Directional": true + }, { + "SourceID": 3475, + "TargetID": 2448, + "Directional": true + }, { + "SourceID": 3487, + "TargetID": 18015, + "Directional": true + }, { + "SourceID": 3503, + "TargetID": 36695, + "Directional": true + }, { + "SourceID": 3519, + "TargetID": 18013, + "Directional": true + }, { + "SourceID": 5783, + "TargetID": 37191, + "Directional": true + }, { + "SourceID": 14722, + "TargetID": 3305, + "Directional": true + }, { + "SourceID": 18014, + "TargetID": 2441, + "Directional": true + }] + }, { + "ID": 7037, + "SourceStructureID": 518, + "TargetStructureID": 514, + "Label": "518-514 via Ribbon Synapse from 3303 -> 3296, 3471 -> 37188, 14717 -> 1554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3303, + "TargetID": 3296, + "Directional": true + }, { + "SourceID": 3471, + "TargetID": 37188, + "Directional": true + }, { + "SourceID": 14717, + "TargetID": 1554, + "Directional": true + }] + }, { + "ID": 7038, + "SourceStructureID": 518, + "TargetStructureID": 591, + "Label": "518-591 via Ribbon Synapse from 3371 -> 36470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3371, + "TargetID": 36470, + "Directional": true + }] + }, { + "ID": 7039, + "SourceStructureID": 518, + "TargetStructureID": 4835, + "Label": "518-4835 via Ribbon Synapse from 3390 -> 36743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3390, + "TargetID": 36743, + "Directional": true + }] + }, { + "ID": 7040, + "SourceStructureID": 518, + "TargetStructureID": 4941, + "Label": "518-4941 via Ribbon Synapse from 3439 -> 118354", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3439, + "TargetID": 118354, + "Directional": true + }] + }, { + "ID": 7041, + "SourceStructureID": 518, + "TargetStructureID": 4942, + "Label": "518-4942 via Ribbon Synapse from 3475 -> 118357", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3475, + "TargetID": 118357, + "Directional": true + }] + }, { + "ID": 7042, + "SourceStructureID": 518, + "TargetStructureID": 5006, + "Label": "518-5006 via Ribbon Synapse from 3303 -> 6547, 3459 -> 18866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3303, + "TargetID": 6547, + "Directional": true + }, { + "SourceID": 3459, + "TargetID": 18866, + "Directional": true + }] + }, { + "ID": 7043, + "SourceStructureID": 518, + "TargetStructureID": 5394, + "Label": "518-5394 via Ribbon Synapse from 3380 -> 22813, 3387 -> 22814", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3380, + "TargetID": 22813, + "Directional": true + }, { + "SourceID": 3387, + "TargetID": 22814, + "Directional": true + }] + }, { + "ID": 7044, + "SourceStructureID": 518, + "TargetStructureID": 9023, + "Label": "518-9023 via Ribbon Synapse from 14722 -> 36672, 14723 -> 36673", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14722, + "TargetID": 36672, + "Directional": true + }, { + "SourceID": 14723, + "TargetID": 36673, + "Directional": true + }] + }, { + "ID": 7045, + "SourceStructureID": 518, + "TargetStructureID": 13313, + "Label": "518-13313 via Ribbon Synapse from 3449 -> 37185, 3486 -> 37190", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3449, + "TargetID": 37185, + "Directional": true + }, { + "SourceID": 3486, + "TargetID": 37190, + "Directional": true + }] + }, { + "ID": 7046, + "SourceStructureID": 518, + "TargetStructureID": 32848, + "Label": "518-32848 via Ribbon Synapse from 3354 -> 36414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3354, + "TargetID": 36414, + "Directional": true + }] + }, { + "ID": 7047, + "SourceStructureID": 518, + "TargetStructureID": 36276, + "Label": "518-36276 via Ribbon Synapse from 2303 -> 36278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 2303, + "TargetID": 36278, + "Directional": true + }] + }, { + "ID": 7048, + "SourceStructureID": 518, + "TargetStructureID": 36481, + "Label": "518-36481 via Ribbon Synapse from 2325 -> 36495, 3425 -> 36494, 3427 -> 36493, 14711 -> 36484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 2325, + "TargetID": 36495, + "Directional": true + }, { + "SourceID": 3425, + "TargetID": 36494, + "Directional": true + }, { + "SourceID": 3427, + "TargetID": 36493, + "Directional": true + }, { + "SourceID": 14711, + "TargetID": 36484, + "Directional": true + }] + }, { + "ID": 7049, + "SourceStructureID": 518, + "TargetStructureID": 36501, + "Label": "518-36501 via Ribbon Synapse from 3427 -> 36503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3427, + "TargetID": 36503, + "Directional": true + }] + }, { + "ID": 7050, + "SourceStructureID": 518, + "TargetStructureID": 36650, + "Label": "518-36650 via Ribbon Synapse from 3435 -> 36653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3435, + "TargetID": 36653, + "Directional": true + }] + }, { + "ID": 7051, + "SourceStructureID": 518, + "TargetStructureID": 36661, + "Label": "518-36661 via Ribbon Synapse from 3471 -> 42787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3471, + "TargetID": 42787, + "Directional": true + }] + }, { + "ID": 7052, + "SourceStructureID": 518, + "TargetStructureID": 36724, + "Label": "518-36724 via Ribbon Synapse from 3390 -> 36732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3390, + "TargetID": 36732, + "Directional": true + }] + }, { + "ID": 7053, + "SourceStructureID": 518, + "TargetStructureID": 37183, + "Label": "518-37183 via Ribbon Synapse from 5783 -> 118374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5783, + "TargetID": 118374, + "Directional": true + }] + }, { + "ID": 7054, + "SourceStructureID": 518, + "TargetStructureID": 49487, + "Label": "518-49487 via Ribbon Synapse from 18014 -> 118358", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18014, + "TargetID": 118358, + "Directional": true + }] + }, { + "ID": 7055, + "SourceStructureID": 518, + "TargetStructureID": 87929, + "Label": "518-87929 via Ribbon Synapse from 18867 -> 87932", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18867, + "TargetID": 87932, + "Directional": true + }] + }, { + "ID": 7056, + "SourceStructureID": 519, + "TargetStructureID": 179, + "Label": "519-179 via Conventional from 9292 -> 9338", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9292, + "TargetID": 9338, + "Directional": true + }] + }, { + "ID": 7057, + "SourceStructureID": 519, + "TargetStructureID": 179, + "Label": "519-179 via Ribbon Synapse from 9284 -> 25788, 9299 -> 9331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9284, + "TargetID": 25788, + "Directional": true + }, { + "SourceID": 9299, + "TargetID": 9331, + "Directional": true + }] + }, { + "ID": 7058, + "SourceStructureID": 519, + "TargetStructureID": 476, + "Label": "519-476 via Ribbon Synapse from 9237 -> 25373, 16518 -> 16519, 16520 -> 16521, 22616 -> 3345, 25435 -> 25434", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9237, + "TargetID": 25373, + "Directional": true + }, { + "SourceID": 16518, + "TargetID": 16519, + "Directional": true + }, { + "SourceID": 16520, + "TargetID": 16521, + "Directional": true + }, { + "SourceID": 22616, + "TargetID": 3345, + "Directional": true + }, { + "SourceID": 25435, + "TargetID": 25434, + "Directional": true + }] + }, { + "ID": 7059, + "SourceStructureID": 519, + "TargetStructureID": 488, + "Label": "519-488 via Ribbon Synapse from 9297 -> 39850", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9297, + "TargetID": 39850, + "Directional": true + }] + }, { + "ID": 7060, + "SourceStructureID": 519, + "TargetStructureID": 514, + "Label": "519-514 via Ribbon Synapse from 1376 -> 1383, 1464 -> 1466, 9237 -> 3334, 9241 -> 3335, 9243 -> 3579, 9250 -> 3340, 9278 -> 15081, 9282 -> 93914, 9299 -> 9302, 13807 -> 13806, 13810 -> 13809, 16154 -> 16155, 16156 -> 16157, 16158 -> 3596, 16520 -> 16541, 16531 -> 16522, 16533 -> 16534, 16537 -> 16536, 22589 -> 1448, 22617 -> 3282, 133246 -> 133245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1376, + "TargetID": 1383, + "Directional": true + }, { + "SourceID": 1464, + "TargetID": 1466, + "Directional": true + }, { + "SourceID": 9237, + "TargetID": 3334, + "Directional": true + }, { + "SourceID": 9241, + "TargetID": 3335, + "Directional": true + }, { + "SourceID": 9243, + "TargetID": 3579, + "Directional": true + }, { + "SourceID": 9250, + "TargetID": 3340, + "Directional": true + }, { + "SourceID": 9278, + "TargetID": 15081, + "Directional": true + }, { + "SourceID": 9282, + "TargetID": 93914, + "Directional": true + }, { + "SourceID": 9299, + "TargetID": 9302, + "Directional": true + }, { + "SourceID": 13807, + "TargetID": 13806, + "Directional": true + }, { + "SourceID": 13810, + "TargetID": 13809, + "Directional": true + }, { + "SourceID": 16154, + "TargetID": 16155, + "Directional": true + }, { + "SourceID": 16156, + "TargetID": 16157, + "Directional": true + }, { + "SourceID": 16158, + "TargetID": 3596, + "Directional": true + }, { + "SourceID": 16520, + "TargetID": 16541, + "Directional": true + }, { + "SourceID": 16531, + "TargetID": 16522, + "Directional": true + }, { + "SourceID": 16533, + "TargetID": 16534, + "Directional": true + }, { + "SourceID": 16537, + "TargetID": 16536, + "Directional": true + }, { + "SourceID": 22589, + "TargetID": 1448, + "Directional": true + }, { + "SourceID": 22617, + "TargetID": 3282, + "Directional": true + }, { + "SourceID": 133246, + "TargetID": 133245, + "Directional": true + }] + }, { + "ID": 7061, + "SourceStructureID": 519, + "TargetStructureID": 2610, + "Label": "519-2610 via Ribbon Synapse from 1468 -> 66173, 9254 -> 9255, 66171 -> 66172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1468, + "TargetID": 66173, + "Directional": true + }, { + "SourceID": 9254, + "TargetID": 9255, + "Directional": true + }, { + "SourceID": 66171, + "TargetID": 66172, + "Directional": true + }] + }, { + "ID": 7062, + "SourceStructureID": 519, + "TargetStructureID": 5303, + "Label": "519-5303 via Ribbon Synapse from 1468 -> 8744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1468, + "TargetID": 8744, + "Directional": true + }] + }, { + "ID": 7063, + "SourceStructureID": 519, + "TargetStructureID": 9260, + "Label": "519-9260 via Postsynapse from 9259 -> 9272", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 9259, + "TargetID": 9272, + "Directional": true + }] + }, { + "ID": 7064, + "SourceStructureID": 519, + "TargetStructureID": 25327, + "Label": "519-25327 via Ribbon Synapse from 16518 -> 25333, 25332 -> 25331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16518, + "TargetID": 25333, + "Directional": true + }, { + "SourceID": 25332, + "TargetID": 25331, + "Directional": true + }] + }, { + "ID": 7065, + "SourceStructureID": 519, + "TargetStructureID": 25359, + "Label": "519-25359 via Ribbon Synapse from 16533 -> 39871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16533, + "TargetID": 39871, + "Directional": true + }] + }, { + "ID": 7066, + "SourceStructureID": 519, + "TargetStructureID": 25385, + "Label": "519-25385 via Ribbon Synapse from 9278 -> 25855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9278, + "TargetID": 25855, + "Directional": true + }] + }, { + "ID": 7067, + "SourceStructureID": 519, + "TargetStructureID": 25429, + "Label": "519-25429 via Ribbon Synapse from 16531 -> 25430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16531, + "TargetID": 25430, + "Directional": true + }] + }, { + "ID": 7068, + "SourceStructureID": 519, + "TargetStructureID": 25440, + "Label": "519-25440 via Ribbon Synapse from 9243 -> 25459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9243, + "TargetID": 25459, + "Directional": true + }] + }, { + "ID": 7069, + "SourceStructureID": 519, + "TargetStructureID": 25529, + "Label": "519-25529 via Ribbon Synapse from 13807 -> 25530", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13807, + "TargetID": 25530, + "Directional": true + }] + }, { + "ID": 7070, + "SourceStructureID": 519, + "TargetStructureID": 25551, + "Label": "519-25551 via Ribbon Synapse from 25470 -> 101275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25470, + "TargetID": 101275, + "Directional": true + }] + }, { + "ID": 7071, + "SourceStructureID": 519, + "TargetStructureID": 25561, + "Label": "519-25561 via Ribbon Synapse from 25470 -> 25709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25470, + "TargetID": 25709, + "Directional": true + }] + }, { + "ID": 7072, + "SourceStructureID": 519, + "TargetStructureID": 25575, + "Label": "519-25575 via Ribbon Synapse from 16156 -> 25634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16156, + "TargetID": 25634, + "Directional": true + }] + }, { + "ID": 7073, + "SourceStructureID": 521, + "TargetStructureID": 478, + "Label": "521-478 via Conventional from 9640 -> 613", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9640, + "TargetID": 613, + "Directional": true + }] + }, { + "ID": 7074, + "SourceStructureID": 525, + "TargetStructureID": 9693, + "Label": "525-9693 via Conventional from 6293 -> 9768, 6294 -> 9767", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6293, + "TargetID": 9768, + "Directional": true + }, { + "SourceID": 6294, + "TargetID": 9767, + "Directional": true + }] + }, { + "ID": 7075, + "SourceStructureID": 525, + "TargetStructureID": 46741, + "Label": "525-46741 via Conventional from 6254 -> 46748", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6254, + "TargetID": 46748, + "Directional": true + }] + }, { + "ID": 7076, + "SourceStructureID": 525, + "TargetStructureID": 92880, + "Label": "525-92880 via Conventional from 132750 -> 132749", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132750, + "TargetID": 132749, + "Directional": true + }] + }, { + "ID": 7077, + "SourceStructureID": 545, + "TargetStructureID": 176, + "Label": "545-176 via Conventional from 546 -> 5730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 546, + "TargetID": 5730, + "Directional": true + }] + }, { + "ID": 7078, + "SourceStructureID": 545, + "TargetStructureID": 5303, + "Label": "545-5303 via Conventional from 24043 -> 24042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24043, + "TargetID": 24042, + "Directional": true + }] + }, { + "ID": 7079, + "SourceStructureID": 573, + "TargetStructureID": 572, + "Label": "573-572 via Conventional from 90169 -> 40238, 90171 -> 90172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90169, + "TargetID": 40238, + "Directional": true + }, { + "SourceID": 90171, + "TargetID": 90172, + "Directional": true + }] + }, { + "ID": 7080, + "SourceStructureID": 573, + "TargetStructureID": 6166, + "Label": "573-6166 via Conventional from 22315 -> 22320", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22315, + "TargetID": 22320, + "Directional": true + }] + }, { + "ID": 7081, + "SourceStructureID": 579, + "TargetStructureID": 5345, + "Label": "579-5345 via Ribbon Synapse from 18461 -> 18462, 18464 -> 18463, 88874 -> 88873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18461, + "TargetID": 18462, + "Directional": true + }, { + "SourceID": 18464, + "TargetID": 18463, + "Directional": true + }, { + "SourceID": 88874, + "TargetID": 88873, + "Directional": true + }] + }, { + "ID": 7082, + "SourceStructureID": 579, + "TargetStructureID": 32312, + "Label": "579-32312 via Ribbon Synapse from 11041 -> 32315, 64543 -> 32315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11041, + "TargetID": 32315, + "Directional": true + }, { + "SourceID": 64543, + "TargetID": 32315, + "Directional": true + }] + }, { + "ID": 7083, + "SourceStructureID": 579, + "TargetStructureID": 129144, + "Label": "579-129144 via Ribbon Synapse from 18461 -> 129153, 18464 -> 129152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18461, + "TargetID": 129153, + "Directional": true + }, { + "SourceID": 18464, + "TargetID": 129152, + "Directional": true + }] + }, { + "ID": 7084, + "SourceStructureID": 590, + "TargetStructureID": 2063, + "Label": "590-2063 via Conventional from 81514 -> 81515", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81514, + "TargetID": 81515, + "Directional": true + }] + }, { + "ID": 7085, + "SourceStructureID": 591, + "TargetStructureID": 171, + "Label": "591-171 via Conventional from 15442 -> 5725", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15442, + "TargetID": 5725, + "Directional": true + }] + }, { + "ID": 7086, + "SourceStructureID": 591, + "TargetStructureID": 476, + "Label": "591-476 via Conventional from 14956 -> 2386, 16445 -> 16444", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14956, + "TargetID": 2386, + "Directional": true + }, { + "SourceID": 16445, + "TargetID": 16444, + "Directional": true + }] + }, { + "ID": 7087, + "SourceStructureID": 591, + "TargetStructureID": 517, + "Label": "591-517 via Conventional from 40888 -> 40889, 40890 -> 40891", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40888, + "TargetID": 40889, + "Directional": true + }, { + "SourceID": 40890, + "TargetID": 40891, + "Directional": true + }] + }, { + "ID": 7088, + "SourceStructureID": 591, + "TargetStructureID": 518, + "Label": "591-518 via Conventional from 36441 -> 3366, 36468 -> 3362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36441, + "TargetID": 3366, + "Directional": true + }, { + "SourceID": 36468, + "TargetID": 3362, + "Directional": true + }] + }, { + "ID": 7089, + "SourceStructureID": 591, + "TargetStructureID": 6561, + "Label": "591-6561 via Conventional from 6550 -> 6563, 6550 -> 8345, 6552 -> 8301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6550, + "TargetID": 6563, + "Directional": true + }, { + "SourceID": 6550, + "TargetID": 8345, + "Directional": true + }, { + "SourceID": 6552, + "TargetID": 8301, + "Directional": true + }] + }, { + "ID": 7090, + "SourceStructureID": 591, + "TargetStructureID": 8586, + "Label": "591-8586 via Conventional from 10348 -> 10349, 10351 -> 8604", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10348, + "TargetID": 10349, + "Directional": true + }, { + "SourceID": 10351, + "TargetID": 8604, + "Directional": true + }] + }, { + "ID": 7091, + "SourceStructureID": 591, + "TargetStructureID": 10412, + "Label": "591-10412 via Conventional from 10379 -> 10420, 10423 -> 10422", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10379, + "TargetID": 10420, + "Directional": true + }, { + "SourceID": 10423, + "TargetID": 10422, + "Directional": true + }] + }, { + "ID": 7092, + "SourceStructureID": 591, + "TargetStructureID": 15942, + "Label": "591-15942 via Conventional from 10289 -> 15960, 15959 -> 15958", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10289, + "TargetID": 15960, + "Directional": true + }, { + "SourceID": 15959, + "TargetID": 15958, + "Directional": true + }] + }, { + "ID": 7093, + "SourceStructureID": 591, + "TargetStructureID": 15979, + "Label": "591-15979 via Conventional from 36445 -> 36446, 36447 -> 36448, 36452 -> 36453, 36454 -> 36455, 36459 -> 36460", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36445, + "TargetID": 36446, + "Directional": true + }, { + "SourceID": 36447, + "TargetID": 36448, + "Directional": true + }, { + "SourceID": 36452, + "TargetID": 36453, + "Directional": true + }, { + "SourceID": 36454, + "TargetID": 36455, + "Directional": true + }, { + "SourceID": 36459, + "TargetID": 36460, + "Directional": true + }] + }, { + "ID": 7094, + "SourceStructureID": 591, + "TargetStructureID": 89253, + "Label": "591-89253 via Conventional from 10299 -> 89255, 89256 -> 89257", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10299, + "TargetID": 89255, + "Directional": true + }, { + "SourceID": 89256, + "TargetID": 89257, + "Directional": true + }] + }, { + "ID": 7095, + "SourceStructureID": 592, + "TargetStructureID": 591, + "Label": "592-591 via Conventional from 10084 -> 10083", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10084, + "TargetID": 10083, + "Directional": true + }] + }, { + "ID": 7096, + "SourceStructureID": 593, + "TargetStructureID": 162, + "Label": "593-162 via Ribbon Synapse from 70257 -> 70258", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70257, + "TargetID": 70258, + "Directional": true + }] + }, { + "ID": 7097, + "SourceStructureID": 593, + "TargetStructureID": 596, + "Label": "593-596 via Ribbon Synapse from 33858 -> 59136, 59100 -> 59136, 63047 -> 68611, 68610 -> 68611, 69360 -> 59136, 115704 -> 59136", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33858, + "TargetID": 59136, + "Directional": true + }, { + "SourceID": 59100, + "TargetID": 59136, + "Directional": true + }, { + "SourceID": 63047, + "TargetID": 68611, + "Directional": true + }, { + "SourceID": 68610, + "TargetID": 68611, + "Directional": true + }, { + "SourceID": 69360, + "TargetID": 59136, + "Directional": true + }, { + "SourceID": 115704, + "TargetID": 59136, + "Directional": true + }] + }, { + "ID": 7098, + "SourceStructureID": 593, + "TargetStructureID": 4890, + "Label": "593-4890 via BC Conventional Synapse from 68139 -> 68143", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68139, + "TargetID": 68143, + "Directional": true + }] + }, { + "ID": 7099, + "SourceStructureID": 593, + "TargetStructureID": 4890, + "Label": "593-4890 via Ribbon Synapse from 7705 -> 6104, 36527 -> 6109, 49568 -> 6107, 49572 -> 64913, 130733 -> 6108", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7705, + "TargetID": 6104, + "Directional": true + }, { + "SourceID": 36527, + "TargetID": 6109, + "Directional": true + }, { + "SourceID": 49568, + "TargetID": 6107, + "Directional": true + }, { + "SourceID": 49572, + "TargetID": 64913, + "Directional": true + }, { + "SourceID": 130733, + "TargetID": 6108, + "Directional": true + }] + }, { + "ID": 7100, + "SourceStructureID": 593, + "TargetStructureID": 5117, + "Label": "593-5117 via Ribbon Synapse from 15889 -> 61805, 28430 -> 66803, 65503 -> 65504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15889, + "TargetID": 61805, + "Directional": true + }, { + "SourceID": 28430, + "TargetID": 66803, + "Directional": true + }, { + "SourceID": 65503, + "TargetID": 65504, + "Directional": true + }] + }, { + "ID": 7101, + "SourceStructureID": 593, + "TargetStructureID": 5118, + "Label": "593-5118 via Ribbon Synapse from 120216 -> 120223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120216, + "TargetID": 120223, + "Directional": true + }] + }, { + "ID": 7102, + "SourceStructureID": 593, + "TargetStructureID": 5618, + "Label": "593-5618 via BC Conventional Synapse from 65959 -> 65961", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65959, + "TargetID": 65961, + "Directional": true + }] + }, { + "ID": 7103, + "SourceStructureID": 593, + "TargetStructureID": 5618, + "Label": "593-5618 via Ribbon Synapse from 59627 -> 66508, 130874 -> 66541", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59627, + "TargetID": 66508, + "Directional": true + }, { + "SourceID": 130874, + "TargetID": 66541, + "Directional": true + }] + }, { + "ID": 7104, + "SourceStructureID": 593, + "TargetStructureID": 6857, + "Label": "593-6857 via Ribbon Synapse from 59625 -> 6886, 59626 -> 6886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59625, + "TargetID": 6886, + "Directional": true + }, { + "SourceID": 59626, + "TargetID": 6886, + "Directional": true + }] + }, { + "ID": 7105, + "SourceStructureID": 593, + "TargetStructureID": 8033, + "Label": "593-8033 via Ribbon Synapse from 130778 -> 68437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130778, + "TargetID": 68437, + "Directional": true + }] + }, { + "ID": 7106, + "SourceStructureID": 593, + "TargetStructureID": 8577, + "Label": "593-8577 via Ribbon Synapse from 15899 -> 15886, 61957 -> 61970, 61957 -> 115685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15899, + "TargetID": 15886, + "Directional": true + }, { + "SourceID": 61957, + "TargetID": 61970, + "Directional": true + }, { + "SourceID": 61957, + "TargetID": 115685, + "Directional": true + }] + }, { + "ID": 7107, + "SourceStructureID": 593, + "TargetStructureID": 8579, + "Label": "593-8579 via BC Conventional Synapse from 52498 -> 61875", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52498, + "TargetID": 61875, + "Directional": true + }] + }, { + "ID": 7108, + "SourceStructureID": 593, + "TargetStructureID": 8579, + "Label": "593-8579 via Ribbon Synapse from 7717 -> 62868, 28429 -> 59113, 61957 -> 65260, 65858 -> 65862, 66480 -> 66482, 130775 -> 61874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7717, + "TargetID": 62868, + "Directional": true + }, { + "SourceID": 28429, + "TargetID": 59113, + "Directional": true + }, { + "SourceID": 61957, + "TargetID": 65260, + "Directional": true + }, { + "SourceID": 65858, + "TargetID": 65862, + "Directional": true + }, { + "SourceID": 66480, + "TargetID": 66482, + "Directional": true + }, { + "SourceID": 130775, + "TargetID": 61874, + "Directional": true + }] + }, { + "ID": 7109, + "SourceStructureID": 593, + "TargetStructureID": 8580, + "Label": "593-8580 via BC Conventional Synapse from 115726 -> 59653", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115726, + "TargetID": 59653, + "Directional": true + }] + }, { + "ID": 7110, + "SourceStructureID": 593, + "TargetStructureID": 8580, + "Label": "593-8580 via Ribbon Synapse from 36524 -> 59648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36524, + "TargetID": 59648, + "Directional": true + }] + }, { + "ID": 7111, + "SourceStructureID": 593, + "TargetStructureID": 8588, + "Label": "593-8588 via Ribbon Synapse from 7710 -> 32714, 7764 -> 32709, 52470 -> 59729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7710, + "TargetID": 32714, + "Directional": true + }, { + "SourceID": 7764, + "TargetID": 32709, + "Directional": true + }, { + "SourceID": 52470, + "TargetID": 59729, + "Directional": true + }] + }, { + "ID": 7112, + "SourceStructureID": 593, + "TargetStructureID": 12687, + "Label": "593-12687 via BC Conventional Synapse from 130708 -> 130709", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130708, + "TargetID": 130709, + "Directional": true + }] + }, { + "ID": 7113, + "SourceStructureID": 593, + "TargetStructureID": 12804, + "Label": "593-12804 via BC Conventional Synapse from 130995 -> 115670", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130995, + "TargetID": 115670, + "Directional": true + }] + }, { + "ID": 7114, + "SourceStructureID": 593, + "TargetStructureID": 12804, + "Label": "593-12804 via Ribbon Synapse from 59700 -> 59702", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59700, + "TargetID": 59702, + "Directional": true + }] + }, { + "ID": 7115, + "SourceStructureID": 593, + "TargetStructureID": 15796, + "Label": "593-15796 via Ribbon Synapse from 62886 -> 20135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62886, + "TargetID": 20135, + "Directional": true + }] + }, { + "ID": 7116, + "SourceStructureID": 593, + "TargetStructureID": 18282, + "Label": "593-18282 via Unknown from 87215 -> 87216", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 87215, + "TargetID": 87216, + "Directional": true + }] + }, { + "ID": 7117, + "SourceStructureID": 593, + "TargetStructureID": 20537, + "Label": "593-20537 via Ribbon Synapse from 115678 -> 24138, 115679 -> 24138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115678, + "TargetID": 24138, + "Directional": true + }, { + "SourceID": 115679, + "TargetID": 24138, + "Directional": true + }] + }, { + "ID": 7118, + "SourceStructureID": 593, + "TargetStructureID": 22974, + "Label": "593-22974 via BC Conventional Synapse from 115690 -> 68546", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115690, + "TargetID": 68546, + "Directional": true + }] + }, { + "ID": 7119, + "SourceStructureID": 593, + "TargetStructureID": 22974, + "Label": "593-22974 via Ribbon Synapse from 7713 -> 61822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7713, + "TargetID": 61822, + "Directional": true + }] + }, { + "ID": 7120, + "SourceStructureID": 593, + "TargetStructureID": 24148, + "Label": "593-24148 via BC Conventional Synapse from 7842 -> 24149", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7842, + "TargetID": 24149, + "Directional": true + }] + }, { + "ID": 7121, + "SourceStructureID": 593, + "TargetStructureID": 31024, + "Label": "593-31024 via Ribbon Synapse from 28434 -> 63042", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28434, + "TargetID": 63042, + "Directional": true + }] + }, { + "ID": 7122, + "SourceStructureID": 593, + "TargetStructureID": 31161, + "Label": "593-31161 via Ribbon Synapse from 7764 -> 67545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7764, + "TargetID": 67545, + "Directional": true + }] + }, { + "ID": 7123, + "SourceStructureID": 593, + "TargetStructureID": 32913, + "Label": "593-32913 via Ribbon Synapse from 66440 -> 66442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66440, + "TargetID": 66442, + "Directional": true + }] + }, { + "ID": 7124, + "SourceStructureID": 593, + "TargetStructureID": 33092, + "Label": "593-33092 via Ribbon Synapse from 66630 -> 66631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66630, + "TargetID": 66631, + "Directional": true + }] + }, { + "ID": 7125, + "SourceStructureID": 593, + "TargetStructureID": 36516, + "Label": "593-36516 via Ribbon Synapse from 36597 -> 36595, 130712 -> 135146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36597, + "TargetID": 36595, + "Directional": true + }, { + "SourceID": 130712, + "TargetID": 135146, + "Directional": true + }] + }, { + "ID": 7126, + "SourceStructureID": 593, + "TargetStructureID": 39973, + "Label": "593-39973 via BC Conventional Synapse from 115688 -> 115687", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115688, + "TargetID": 115687, + "Directional": true + }] + }, { + "ID": 7127, + "SourceStructureID": 593, + "TargetStructureID": 45574, + "Label": "593-45574 via Ribbon Synapse from 67717 -> 67842", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67717, + "TargetID": 67842, + "Directional": true + }] + }, { + "ID": 7128, + "SourceStructureID": 593, + "TargetStructureID": 47104, + "Label": "593-47104 via Ribbon Synapse from 50442 -> 87205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50442, + "TargetID": 87205, + "Directional": true + }] + }, { + "ID": 7129, + "SourceStructureID": 593, + "TargetStructureID": 49489, + "Label": "593-49489 via Ribbon Synapse from 49598 -> 49597", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49598, + "TargetID": 49597, + "Directional": true + }] + }, { + "ID": 7130, + "SourceStructureID": 593, + "TargetStructureID": 54078, + "Label": "593-54078 via Ribbon Synapse from 53816 -> 67801, 66405 -> 66409, 67717 -> 67844", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53816, + "TargetID": 67801, + "Directional": true + }, { + "SourceID": 66405, + "TargetID": 66409, + "Directional": true + }, { + "SourceID": 67717, + "TargetID": 67844, + "Directional": true + }] + }, { + "ID": 7131, + "SourceStructureID": 593, + "TargetStructureID": 54744, + "Label": "593-54744 via Ribbon Synapse from 28394 -> 130764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28394, + "TargetID": 130764, + "Directional": true + }] + }, { + "ID": 7132, + "SourceStructureID": 593, + "TargetStructureID": 58696, + "Label": "593-58696 via Ribbon Synapse from 59619 -> 66705, 63963 -> 86962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59619, + "TargetID": 66705, + "Directional": true + }, { + "SourceID": 63963, + "TargetID": 86962, + "Directional": true + }] + }, { + "ID": 7133, + "SourceStructureID": 593, + "TargetStructureID": 59121, + "Label": "593-59121 via Ribbon Synapse from 33859 -> 59122, 59095 -> 59122", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33859, + "TargetID": 59122, + "Directional": true + }, { + "SourceID": 59095, + "TargetID": 59122, + "Directional": true + }] + }, { + "ID": 7134, + "SourceStructureID": 593, + "TargetStructureID": 59137, + "Label": "593-59137 via BC Conventional Synapse from 59104 -> 59138", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59104, + "TargetID": 59138, + "Directional": true + }] + }, { + "ID": 7135, + "SourceStructureID": 593, + "TargetStructureID": 59139, + "Label": "593-59139 via Ribbon Synapse from 7699 -> 59140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7699, + "TargetID": 59140, + "Directional": true + }] + }, { + "ID": 7136, + "SourceStructureID": 593, + "TargetStructureID": 59145, + "Label": "593-59145 via BC Conventional Synapse from 59144 -> 85026", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59144, + "TargetID": 85026, + "Directional": true + }] + }, { + "ID": 7137, + "SourceStructureID": 593, + "TargetStructureID": 59333, + "Label": "593-59333 via Ribbon Synapse from 7701 -> 59336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7701, + "TargetID": 59336, + "Directional": true + }] + }, { + "ID": 7138, + "SourceStructureID": 593, + "TargetStructureID": 59523, + "Label": "593-59523 via BC Conventional Synapse from 59529 -> 59526", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59529, + "TargetID": 59526, + "Directional": true + }] + }, { + "ID": 7139, + "SourceStructureID": 593, + "TargetStructureID": 59524, + "Label": "593-59524 via BC Conventional Synapse from 59530 -> 59525", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59530, + "TargetID": 59525, + "Directional": true + }] + }, { + "ID": 7140, + "SourceStructureID": 593, + "TargetStructureID": 59531, + "Label": "593-59531 via BC Conventional Synapse from 59530 -> 59532", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59530, + "TargetID": 59532, + "Directional": true + }] + }, { + "ID": 7141, + "SourceStructureID": 593, + "TargetStructureID": 59548, + "Label": "593-59548 via Ribbon Synapse from 7704 -> 59549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7704, + "TargetID": 59549, + "Directional": true + }] + }, { + "ID": 7142, + "SourceStructureID": 593, + "TargetStructureID": 59589, + "Label": "593-59589 via BC Conventional Synapse from 59590 -> 59591", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59590, + "TargetID": 59591, + "Directional": true + }] + }, { + "ID": 7143, + "SourceStructureID": 593, + "TargetStructureID": 59696, + "Label": "593-59696 via Ribbon Synapse from 59695 -> 59697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59695, + "TargetID": 59697, + "Directional": true + }] + }, { + "ID": 7144, + "SourceStructureID": 593, + "TargetStructureID": 61773, + "Label": "593-61773 via Ribbon Synapse from 7705 -> 130951", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7705, + "TargetID": 130951, + "Directional": true + }] + }, { + "ID": 7145, + "SourceStructureID": 593, + "TargetStructureID": 61775, + "Label": "593-61775 via Ribbon Synapse from 7810 -> 61776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7810, + "TargetID": 61776, + "Directional": true + }] + }, { + "ID": 7146, + "SourceStructureID": 593, + "TargetStructureID": 61779, + "Label": "593-61779 via Ribbon Synapse from 7816 -> 61780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7816, + "TargetID": 61780, + "Directional": true + }] + }, { + "ID": 7147, + "SourceStructureID": 593, + "TargetStructureID": 61785, + "Label": "593-61785 via Ribbon Synapse from 7819 -> 61786", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7819, + "TargetID": 61786, + "Directional": true + }] + }, { + "ID": 7148, + "SourceStructureID": 593, + "TargetStructureID": 61797, + "Label": "593-61797 via Ribbon Synapse from 15891 -> 61877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15891, + "TargetID": 61877, + "Directional": true + }] + }, { + "ID": 7149, + "SourceStructureID": 593, + "TargetStructureID": 61799, + "Label": "593-61799 via Ribbon Synapse from 15889 -> 61803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15889, + "TargetID": 61803, + "Directional": true + }] + }, { + "ID": 7150, + "SourceStructureID": 593, + "TargetStructureID": 61811, + "Label": "593-61811 via Ribbon Synapse from 28394 -> 61812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28394, + "TargetID": 61812, + "Directional": true + }] + }, { + "ID": 7151, + "SourceStructureID": 593, + "TargetStructureID": 61813, + "Label": "593-61813 via Ribbon Synapse from 7713 -> 61821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7713, + "TargetID": 61821, + "Directional": true + }] + }, { + "ID": 7152, + "SourceStructureID": 593, + "TargetStructureID": 61817, + "Label": "593-61817 via Ribbon Synapse from 7711 -> 61825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7711, + "TargetID": 61825, + "Directional": true + }] + }, { + "ID": 7153, + "SourceStructureID": 593, + "TargetStructureID": 61823, + "Label": "593-61823 via Ribbon Synapse from 7713 -> 61824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7713, + "TargetID": 61824, + "Directional": true + }] + }, { + "ID": 7154, + "SourceStructureID": 593, + "TargetStructureID": 61836, + "Label": "593-61836 via BC Conventional Synapse from 115743 -> 115742", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115743, + "TargetID": 115742, + "Directional": true + }] + }, { + "ID": 7155, + "SourceStructureID": 593, + "TargetStructureID": 61836, + "Label": "593-61836 via Ribbon Synapse from 7722 -> 67513, 53822 -> 68113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7722, + "TargetID": 67513, + "Directional": true + }, { + "SourceID": 53822, + "TargetID": 68113, + "Directional": true + }] + }, { + "ID": 7156, + "SourceStructureID": 593, + "TargetStructureID": 61840, + "Label": "593-61840 via BC Conventional Synapse from 61839 -> 61841", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61839, + "TargetID": 61841, + "Directional": true + }] + }, { + "ID": 7157, + "SourceStructureID": 593, + "TargetStructureID": 61842, + "Label": "593-61842 via Ribbon Synapse from 28423 -> 61843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28423, + "TargetID": 61843, + "Directional": true + }] + }, { + "ID": 7158, + "SourceStructureID": 593, + "TargetStructureID": 61853, + "Label": "593-61853 via Ribbon Synapse from 28418 -> 61855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28418, + "TargetID": 61855, + "Directional": true + }] + }, { + "ID": 7159, + "SourceStructureID": 593, + "TargetStructureID": 61857, + "Label": "593-61857 via Ribbon Synapse from 28404 -> 130765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28404, + "TargetID": 130765, + "Directional": true + }] + }, { + "ID": 7160, + "SourceStructureID": 593, + "TargetStructureID": 61862, + "Label": "593-61862 via BC Conventional Synapse from 65253 -> 65255", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65253, + "TargetID": 65255, + "Directional": true + }] + }, { + "ID": 7161, + "SourceStructureID": 593, + "TargetStructureID": 61864, + "Label": "593-61864 via Ribbon Synapse from 28419 -> 61865, 65312 -> 65314, 66480 -> 66486, 130784 -> 65315, 130789 -> 65476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28419, + "TargetID": 61865, + "Directional": true + }, { + "SourceID": 65312, + "TargetID": 65314, + "Directional": true + }, { + "SourceID": 66480, + "TargetID": 66486, + "Directional": true + }, { + "SourceID": 130784, + "TargetID": 65315, + "Directional": true + }, { + "SourceID": 130789, + "TargetID": 65476, + "Directional": true + }] + }, { + "ID": 7162, + "SourceStructureID": 593, + "TargetStructureID": 61868, + "Label": "593-61868 via Ribbon Synapse from 130775 -> 61872", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130775, + "TargetID": 61872, + "Directional": true + }] + }, { + "ID": 7163, + "SourceStructureID": 593, + "TargetStructureID": 61878, + "Label": "593-61878 via Ribbon Synapse from 28392 -> 61879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28392, + "TargetID": 61879, + "Directional": true + }] + }, { + "ID": 7164, + "SourceStructureID": 593, + "TargetStructureID": 61880, + "Label": "593-61880 via Ribbon Synapse from 28415 -> 61881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28415, + "TargetID": 61881, + "Directional": true + }] + }, { + "ID": 7165, + "SourceStructureID": 593, + "TargetStructureID": 61882, + "Label": "593-61882 via BC Conventional Synapse from 82196 -> 82197", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82196, + "TargetID": 82197, + "Directional": true + }] + }, { + "ID": 7166, + "SourceStructureID": 593, + "TargetStructureID": 61891, + "Label": "593-61891 via BC Conventional Synapse from 61890 -> 61893", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61890, + "TargetID": 61893, + "Directional": true + }] + }, { + "ID": 7167, + "SourceStructureID": 593, + "TargetStructureID": 61897, + "Label": "593-61897 via BC Conventional Synapse from 65256 -> 65257", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65256, + "TargetID": 65257, + "Directional": true + }] + }, { + "ID": 7168, + "SourceStructureID": 593, + "TargetStructureID": 61897, + "Label": "593-61897 via Ribbon Synapse from 130776 -> 61899", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130776, + "TargetID": 61899, + "Directional": true + }] + }, { + "ID": 7169, + "SourceStructureID": 593, + "TargetStructureID": 61898, + "Label": "593-61898 via Ribbon Synapse from 28396 -> 68398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28396, + "TargetID": 68398, + "Directional": true + }] + }, { + "ID": 7170, + "SourceStructureID": 593, + "TargetStructureID": 61914, + "Label": "593-61914 via Adherens from 61915 -> 61916", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 61915, + "TargetID": 61916, + "Directional": true + }] + }, { + "ID": 7171, + "SourceStructureID": 593, + "TargetStructureID": 61920, + "Label": "593-61920 via Ribbon Synapse from 28419 -> 83361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28419, + "TargetID": 83361, + "Directional": true + }] + }, { + "ID": 7172, + "SourceStructureID": 593, + "TargetStructureID": 61923, + "Label": "593-61923 via Ribbon Synapse from 28390 -> 61924, 115697 -> 61924", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28390, + "TargetID": 61924, + "Directional": true + }, { + "SourceID": 115697, + "TargetID": 61924, + "Directional": true + }] + }, { + "ID": 7173, + "SourceStructureID": 593, + "TargetStructureID": 61933, + "Label": "593-61933 via Ribbon Synapse from 50440 -> 68886, 68071 -> 68078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50440, + "TargetID": 68886, + "Directional": true + }, { + "SourceID": 68071, + "TargetID": 68078, + "Directional": true + }] + }, { + "ID": 7174, + "SourceStructureID": 593, + "TargetStructureID": 61936, + "Label": "593-61936 via Ribbon Synapse from 28406 -> 61937", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28406, + "TargetID": 61937, + "Directional": true + }] + }, { + "ID": 7175, + "SourceStructureID": 593, + "TargetStructureID": 61956, + "Label": "593-61956 via Ribbon Synapse from 50447 -> 61958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50447, + "TargetID": 61958, + "Directional": true + }] + }, { + "ID": 7176, + "SourceStructureID": 593, + "TargetStructureID": 61960, + "Label": "593-61960 via Ribbon Synapse from 50440 -> 61964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50440, + "TargetID": 61964, + "Directional": true + }] + }, { + "ID": 7177, + "SourceStructureID": 593, + "TargetStructureID": 61965, + "Label": "593-61965 via BC Conventional Synapse from 68411 -> 68410", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68411, + "TargetID": 68410, + "Directional": true + }] + }, { + "ID": 7178, + "SourceStructureID": 593, + "TargetStructureID": 61982, + "Label": "593-61982 via BC Conventional Synapse from 65292 -> 65293", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65292, + "TargetID": 65293, + "Directional": true + }] + }, { + "ID": 7179, + "SourceStructureID": 593, + "TargetStructureID": 64362, + "Label": "593-64362 via Ribbon Synapse from 64367 -> 64366", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64367, + "TargetID": 64366, + "Directional": true + }] + }, { + "ID": 7180, + "SourceStructureID": 593, + "TargetStructureID": 64491, + "Label": "593-64491 via Ribbon Synapse from 28421 -> 64494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28421, + "TargetID": 64494, + "Directional": true + }] + }, { + "ID": 7181, + "SourceStructureID": 593, + "TargetStructureID": 64492, + "Label": "593-64492 via Ribbon Synapse from 28421 -> 64493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28421, + "TargetID": 64493, + "Directional": true + }] + }, { + "ID": 7182, + "SourceStructureID": 593, + "TargetStructureID": 65258, + "Label": "593-65258 via Ribbon Synapse from 130776 -> 65259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130776, + "TargetID": 65259, + "Directional": true + }] + }, { + "ID": 7183, + "SourceStructureID": 593, + "TargetStructureID": 65267, + "Label": "593-65267 via BC Conventional Synapse from 115749 -> 115748", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115749, + "TargetID": 115748, + "Directional": true + }] + }, { + "ID": 7184, + "SourceStructureID": 593, + "TargetStructureID": 65267, + "Label": "593-65267 via Ribbon Synapse from 65264 -> 65268", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65264, + "TargetID": 65268, + "Directional": true + }] + }, { + "ID": 7185, + "SourceStructureID": 593, + "TargetStructureID": 65271, + "Label": "593-65271 via Ribbon Synapse from 28404 -> 65272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28404, + "TargetID": 65272, + "Directional": true + }] + }, { + "ID": 7186, + "SourceStructureID": 593, + "TargetStructureID": 65276, + "Label": "593-65276 via Ribbon Synapse from 65273 -> 65277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65273, + "TargetID": 65277, + "Directional": true + }] + }, { + "ID": 7187, + "SourceStructureID": 593, + "TargetStructureID": 65284, + "Label": "593-65284 via Ribbon Synapse from 65414 -> 65285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65414, + "TargetID": 65285, + "Directional": true + }] + }, { + "ID": 7188, + "SourceStructureID": 593, + "TargetStructureID": 65303, + "Label": "593-65303 via Ribbon Synapse from 65305 -> 65304", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65305, + "TargetID": 65304, + "Directional": true + }] + }, { + "ID": 7189, + "SourceStructureID": 593, + "TargetStructureID": 65324, + "Label": "593-65324 via Ribbon Synapse from 63033 -> 65325", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63033, + "TargetID": 65325, + "Directional": true + }] + }, { + "ID": 7190, + "SourceStructureID": 593, + "TargetStructureID": 65349, + "Label": "593-65349 via Ribbon Synapse from 65348 -> 65350", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65348, + "TargetID": 65350, + "Directional": true + }] + }, { + "ID": 7191, + "SourceStructureID": 593, + "TargetStructureID": 65351, + "Label": "593-65351 via Ribbon Synapse from 67313 -> 67316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67313, + "TargetID": 67316, + "Directional": true + }] + }, { + "ID": 7192, + "SourceStructureID": 593, + "TargetStructureID": 65375, + "Label": "593-65375 via Ribbon Synapse from 65387 -> 65386", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65387, + "TargetID": 65386, + "Directional": true + }] + }, { + "ID": 7193, + "SourceStructureID": 593, + "TargetStructureID": 65376, + "Label": "593-65376 via Ribbon Synapse from 59683 -> 65857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59683, + "TargetID": 65857, + "Directional": true + }] + }, { + "ID": 7194, + "SourceStructureID": 593, + "TargetStructureID": 65388, + "Label": "593-65388 via Ribbon Synapse from 65387 -> 65389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65387, + "TargetID": 65389, + "Directional": true + }] + }, { + "ID": 7195, + "SourceStructureID": 593, + "TargetStructureID": 65408, + "Label": "593-65408 via BC Conventional Synapse from 115723 -> 115722", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115723, + "TargetID": 115722, + "Directional": true + }] + }, { + "ID": 7196, + "SourceStructureID": 593, + "TargetStructureID": 65411, + "Label": "593-65411 via Ribbon Synapse from 130784 -> 81896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130784, + "TargetID": 81896, + "Directional": true + }] + }, { + "ID": 7197, + "SourceStructureID": 593, + "TargetStructureID": 65454, + "Label": "593-65454 via Ribbon Synapse from 65453 -> 65455, 65529 -> 65531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65453, + "TargetID": 65455, + "Directional": true + }, { + "SourceID": 65529, + "TargetID": 65531, + "Directional": true + }] + }, { + "ID": 7198, + "SourceStructureID": 593, + "TargetStructureID": 65477, + "Label": "593-65477 via Ribbon Synapse from 66429 -> 66432, 130789 -> 65478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66429, + "TargetID": 66432, + "Directional": true + }, { + "SourceID": 130789, + "TargetID": 65478, + "Directional": true + }] + }, { + "ID": 7199, + "SourceStructureID": 593, + "TargetStructureID": 65532, + "Label": "593-65532 via Ribbon Synapse from 65529 -> 65533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65529, + "TargetID": 65533, + "Directional": true + }] + }, { + "ID": 7200, + "SourceStructureID": 593, + "TargetStructureID": 65536, + "Label": "593-65536 via BC Conventional Synapse from 67087 -> 67088", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67087, + "TargetID": 67088, + "Directional": true + }] + }, { + "ID": 7201, + "SourceStructureID": 593, + "TargetStructureID": 65536, + "Label": "593-65536 via Ribbon Synapse from 66839 -> 67066", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66839, + "TargetID": 67066, + "Directional": true + }] + }, { + "ID": 7202, + "SourceStructureID": 593, + "TargetStructureID": 65561, + "Label": "593-65561 via Ribbon Synapse from 65560 -> 65562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65560, + "TargetID": 65562, + "Directional": true + }] + }, { + "ID": 7203, + "SourceStructureID": 593, + "TargetStructureID": 65579, + "Label": "593-65579 via Ribbon Synapse from 115724 -> 130757", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115724, + "TargetID": 130757, + "Directional": true + }] + }, { + "ID": 7204, + "SourceStructureID": 593, + "TargetStructureID": 65623, + "Label": "593-65623 via BC Conventional Synapse from 115778 -> 115779", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115778, + "TargetID": 115779, + "Directional": true + }] + }, { + "ID": 7205, + "SourceStructureID": 593, + "TargetStructureID": 65864, + "Label": "593-65864 via BC Conventional Synapse from 65889 -> 65888", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65889, + "TargetID": 65888, + "Directional": true + }] + }, { + "ID": 7206, + "SourceStructureID": 593, + "TargetStructureID": 65864, + "Label": "593-65864 via Ribbon Synapse from 7748 -> 65879, 65858 -> 65865", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7748, + "TargetID": 65879, + "Directional": true + }, { + "SourceID": 65858, + "TargetID": 65865, + "Directional": true + }] + }, { + "ID": 7207, + "SourceStructureID": 593, + "TargetStructureID": 66028, + "Label": "593-66028 via BC Conventional Synapse from 66027 -> 66029", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66027, + "TargetID": 66029, + "Directional": true + }] + }, { + "ID": 7208, + "SourceStructureID": 593, + "TargetStructureID": 66031, + "Label": "593-66031 via BC Conventional Synapse from 66052 -> 66051", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66052, + "TargetID": 66051, + "Directional": true + }] + }, { + "ID": 7209, + "SourceStructureID": 593, + "TargetStructureID": 66073, + "Label": "593-66073 via Ribbon Synapse from 28436 -> 68513, 65529 -> 66074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28436, + "TargetID": 68513, + "Directional": true + }, { + "SourceID": 65529, + "TargetID": 66074, + "Directional": true + }] + }, { + "ID": 7210, + "SourceStructureID": 593, + "TargetStructureID": 66089, + "Label": "593-66089 via Ribbon Synapse from 28439 -> 66091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28439, + "TargetID": 66091, + "Directional": true + }] + }, { + "ID": 7211, + "SourceStructureID": 593, + "TargetStructureID": 66100, + "Label": "593-66100 via BC Conventional Synapse from 68529 -> 68530", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68529, + "TargetID": 68530, + "Directional": true + }] + }, { + "ID": 7212, + "SourceStructureID": 593, + "TargetStructureID": 66111, + "Label": "593-66111 via Ribbon Synapse from 28443 -> 66112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28443, + "TargetID": 66112, + "Directional": true + }] + }, { + "ID": 7213, + "SourceStructureID": 593, + "TargetStructureID": 66114, + "Label": "593-66114 via Ribbon Synapse from 7738 -> 66116", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7738, + "TargetID": 66116, + "Directional": true + }] + }, { + "ID": 7214, + "SourceStructureID": 593, + "TargetStructureID": 66283, + "Label": "593-66283 via BC Conventional Synapse from 66282 -> 66284", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66282, + "TargetID": 66284, + "Directional": true + }] + }, { + "ID": 7215, + "SourceStructureID": 593, + "TargetStructureID": 66299, + "Label": "593-66299 via BC Conventional Synapse from 66298 -> 66300", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66298, + "TargetID": 66300, + "Directional": true + }] + }, { + "ID": 7216, + "SourceStructureID": 593, + "TargetStructureID": 66303, + "Label": "593-66303 via Ribbon Synapse from 59788 -> 66306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59788, + "TargetID": 66306, + "Directional": true + }] + }, { + "ID": 7217, + "SourceStructureID": 593, + "TargetStructureID": 66316, + "Label": "593-66316 via BC Conventional Synapse from 66315 -> 66317, 66320 -> 66321", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66315, + "TargetID": 66317, + "Directional": true + }, { + "SourceID": 66320, + "TargetID": 66321, + "Directional": true + }] + }, { + "ID": 7218, + "SourceStructureID": 593, + "TargetStructureID": 66323, + "Label": "593-66323 via Ribbon Synapse from 66435 -> 130869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66435, + "TargetID": 130869, + "Directional": true + }] + }, { + "ID": 7219, + "SourceStructureID": 593, + "TargetStructureID": 66371, + "Label": "593-66371 via BC Conventional Synapse from 66370 -> 66372", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66370, + "TargetID": 66372, + "Directional": true + }] + }, { + "ID": 7220, + "SourceStructureID": 593, + "TargetStructureID": 66401, + "Label": "593-66401 via Ribbon Synapse from 7760 -> 66424, 66405 -> 66406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7760, + "TargetID": 66424, + "Directional": true + }, { + "SourceID": 66405, + "TargetID": 66406, + "Directional": true + }] + }, { + "ID": 7221, + "SourceStructureID": 593, + "TargetStructureID": 66407, + "Label": "593-66407 via Ribbon Synapse from 49570 -> 67242, 66405 -> 66408, 86279 -> 130988", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49570, + "TargetID": 67242, + "Directional": true + }, { + "SourceID": 66405, + "TargetID": 66408, + "Directional": true + }, { + "SourceID": 86279, + "TargetID": 130988, + "Directional": true + }] + }, { + "ID": 7222, + "SourceStructureID": 593, + "TargetStructureID": 66436, + "Label": "593-66436 via Ribbon Synapse from 66435 -> 66437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66435, + "TargetID": 66437, + "Directional": true + }] + }, { + "ID": 7223, + "SourceStructureID": 593, + "TargetStructureID": 66443, + "Label": "593-66443 via Ribbon Synapse from 66440 -> 66444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66440, + "TargetID": 66444, + "Directional": true + }] + }, { + "ID": 7224, + "SourceStructureID": 593, + "TargetStructureID": 66496, + "Label": "593-66496 via Ribbon Synapse from 66435 -> 66497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66435, + "TargetID": 66497, + "Directional": true + }] + }, { + "ID": 7225, + "SourceStructureID": 593, + "TargetStructureID": 66498, + "Label": "593-66498 via BC Conventional Synapse from 66501 -> 66502", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66501, + "TargetID": 66502, + "Directional": true + }] + }, { + "ID": 7226, + "SourceStructureID": 593, + "TargetStructureID": 66503, + "Label": "593-66503 via Ribbon Synapse from 59627 -> 66506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59627, + "TargetID": 66506, + "Directional": true + }] + }, { + "ID": 7227, + "SourceStructureID": 593, + "TargetStructureID": 66516, + "Label": "593-66516 via Ribbon Synapse from 59622 -> 66519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59622, + "TargetID": 66519, + "Directional": true + }] + }, { + "ID": 7228, + "SourceStructureID": 593, + "TargetStructureID": 66520, + "Label": "593-66520 via Ribbon Synapse from 66522 -> 66521", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66522, + "TargetID": 66521, + "Directional": true + }] + }, { + "ID": 7229, + "SourceStructureID": 593, + "TargetStructureID": 66539, + "Label": "593-66539 via Ribbon Synapse from 130874 -> 66540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130874, + "TargetID": 66540, + "Directional": true + }] + }, { + "ID": 7230, + "SourceStructureID": 593, + "TargetStructureID": 66634, + "Label": "593-66634 via Ribbon Synapse from 59626 -> 66639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59626, + "TargetID": 66639, + "Directional": true + }] + }, { + "ID": 7231, + "SourceStructureID": 593, + "TargetStructureID": 66640, + "Label": "593-66640 via BC Conventional Synapse from 66642 -> 66641", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66642, + "TargetID": 66641, + "Directional": true + }] + }, { + "ID": 7232, + "SourceStructureID": 593, + "TargetStructureID": 66682, + "Label": "593-66682 via Ribbon Synapse from 59619 -> 66683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59619, + "TargetID": 66683, + "Directional": true + }] + }, { + "ID": 7233, + "SourceStructureID": 593, + "TargetStructureID": 66693, + "Label": "593-66693 via Ribbon Synapse from 130751 -> 66694", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130751, + "TargetID": 66694, + "Directional": true + }] + }, { + "ID": 7234, + "SourceStructureID": 593, + "TargetStructureID": 66696, + "Label": "593-66696 via Ribbon Synapse from 130751 -> 66697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130751, + "TargetID": 66697, + "Directional": true + }] + }, { + "ID": 7235, + "SourceStructureID": 593, + "TargetStructureID": 66702, + "Label": "593-66702 via Ribbon Synapse from 59618 -> 66729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59618, + "TargetID": 66729, + "Directional": true + }] + }, { + "ID": 7236, + "SourceStructureID": 593, + "TargetStructureID": 66706, + "Label": "593-66706 via Ribbon Synapse from 59619 -> 66707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59619, + "TargetID": 66707, + "Directional": true + }] + }, { + "ID": 7237, + "SourceStructureID": 593, + "TargetStructureID": 66731, + "Label": "593-66731 via BC Conventional Synapse from 115750 -> 115751", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115750, + "TargetID": 115751, + "Directional": true + }] + }, { + "ID": 7238, + "SourceStructureID": 593, + "TargetStructureID": 66764, + "Label": "593-66764 via BC Conventional Synapse from 66766 -> 66767", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66766, + "TargetID": 66767, + "Directional": true + }] + }, { + "ID": 7239, + "SourceStructureID": 593, + "TargetStructureID": 66768, + "Label": "593-66768 via BC Conventional Synapse from 115718 -> 115717", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115718, + "TargetID": 115717, + "Directional": true + }] + }, { + "ID": 7240, + "SourceStructureID": 593, + "TargetStructureID": 66768, + "Label": "593-66768 via Ribbon Synapse from 28436 -> 68428, 28439 -> 68432", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28436, + "TargetID": 68428, + "Directional": true + }, { + "SourceID": 28439, + "TargetID": 68432, + "Directional": true + }] + }, { + "ID": 7241, + "SourceStructureID": 593, + "TargetStructureID": 66774, + "Label": "593-66774 via BC Conventional Synapse from 66776 -> 66775, 66822 -> 66820", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66776, + "TargetID": 66775, + "Directional": true + }, { + "SourceID": 66822, + "TargetID": 66820, + "Directional": true + }] + }, { + "ID": 7242, + "SourceStructureID": 593, + "TargetStructureID": 66777, + "Label": "593-66777 via BC Conventional Synapse from 115703 -> 66778", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115703, + "TargetID": 66778, + "Directional": true + }] + }, { + "ID": 7243, + "SourceStructureID": 593, + "TargetStructureID": 66777, + "Label": "593-66777 via Ribbon Synapse from 28431 -> 66878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28431, + "TargetID": 66878, + "Directional": true + }] + }, { + "ID": 7244, + "SourceStructureID": 593, + "TargetStructureID": 66782, + "Label": "593-66782 via Ribbon Synapse from 28428 -> 66784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28428, + "TargetID": 66784, + "Directional": true + }] + }, { + "ID": 7245, + "SourceStructureID": 593, + "TargetStructureID": 66785, + "Label": "593-66785 via Ribbon Synapse from 28428 -> 66786", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28428, + "TargetID": 66786, + "Directional": true + }] + }, { + "ID": 7246, + "SourceStructureID": 593, + "TargetStructureID": 66795, + "Label": "593-66795 via Ribbon Synapse from 7768 -> 67568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7768, + "TargetID": 67568, + "Directional": true + }] + }, { + "ID": 7247, + "SourceStructureID": 593, + "TargetStructureID": 66804, + "Label": "593-66804 via Ribbon Synapse from 28430 -> 66805", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28430, + "TargetID": 66805, + "Directional": true + }] + }, { + "ID": 7248, + "SourceStructureID": 593, + "TargetStructureID": 66809, + "Label": "593-66809 via Ribbon Synapse from 64367 -> 66862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64367, + "TargetID": 66862, + "Directional": true + }] + }, { + "ID": 7249, + "SourceStructureID": 593, + "TargetStructureID": 66828, + "Label": "593-66828 via Ribbon Synapse from 7752 -> 66829", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7752, + "TargetID": 66829, + "Directional": true + }] + }, { + "ID": 7250, + "SourceStructureID": 593, + "TargetStructureID": 66840, + "Label": "593-66840 via Ribbon Synapse from 66839 -> 66841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66839, + "TargetID": 66841, + "Directional": true + }] + }, { + "ID": 7251, + "SourceStructureID": 593, + "TargetStructureID": 66843, + "Label": "593-66843 via BC Conventional Synapse from 115686 -> 66845, 115762 -> 115761", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115686, + "TargetID": 66845, + "Directional": true + }, { + "SourceID": 115762, + "TargetID": 115761, + "Directional": true + }] + }, { + "ID": 7252, + "SourceStructureID": 593, + "TargetStructureID": 66848, + "Label": "593-66848 via Ribbon Synapse from 66846 -> 66849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66846, + "TargetID": 66849, + "Directional": true + }] + }, { + "ID": 7253, + "SourceStructureID": 593, + "TargetStructureID": 66879, + "Label": "593-66879 via BC Conventional Synapse from 66881 -> 66880", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66881, + "TargetID": 66880, + "Directional": true + }] + }, { + "ID": 7254, + "SourceStructureID": 593, + "TargetStructureID": 66888, + "Label": "593-66888 via Ribbon Synapse from 7759 -> 68224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7759, + "TargetID": 68224, + "Directional": true + }] + }, { + "ID": 7255, + "SourceStructureID": 593, + "TargetStructureID": 66933, + "Label": "593-66933 via BC Conventional Synapse from 66932 -> 66934", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66932, + "TargetID": 66934, + "Directional": true + }] + }, { + "ID": 7256, + "SourceStructureID": 593, + "TargetStructureID": 66937, + "Label": "593-66937 via Ribbon Synapse from 7720 -> 66938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7720, + "TargetID": 66938, + "Directional": true + }] + }, { + "ID": 7257, + "SourceStructureID": 593, + "TargetStructureID": 66946, + "Label": "593-66946 via Ribbon Synapse from 7719 -> 66947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7719, + "TargetID": 66947, + "Directional": true + }] + }, { + "ID": 7258, + "SourceStructureID": 593, + "TargetStructureID": 66952, + "Label": "593-66952 via Ribbon Synapse from 7721 -> 67387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7721, + "TargetID": 67387, + "Directional": true + }] + }, { + "ID": 7259, + "SourceStructureID": 593, + "TargetStructureID": 66958, + "Label": "593-66958 via BC Conventional Synapse from 49575 -> 67040, 69922 -> 69924", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49575, + "TargetID": 67040, + "Directional": true + }, { + "SourceID": 69922, + "TargetID": 69924, + "Directional": true + }] + }, { + "ID": 7260, + "SourceStructureID": 593, + "TargetStructureID": 66958, + "Label": "593-66958 via Ribbon Synapse from 7736 -> 70028, 7768 -> 70026, 49572 -> 67044, 64367 -> 130781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7736, + "TargetID": 70028, + "Directional": true + }, { + "SourceID": 7768, + "TargetID": 70026, + "Directional": true + }, { + "SourceID": 49572, + "TargetID": 67044, + "Directional": true + }, { + "SourceID": 64367, + "TargetID": 130781, + "Directional": true + }] + }, { + "ID": 7261, + "SourceStructureID": 593, + "TargetStructureID": 66983, + "Label": "593-66983 via Ribbon Synapse from 7722 -> 66998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7722, + "TargetID": 66998, + "Directional": true + }] + }, { + "ID": 7262, + "SourceStructureID": 593, + "TargetStructureID": 67016, + "Label": "593-67016 via Ribbon Synapse from 7832 -> 67018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7832, + "TargetID": 67018, + "Directional": true + }] + }, { + "ID": 7263, + "SourceStructureID": 593, + "TargetStructureID": 67019, + "Label": "593-67019 via Ribbon Synapse from 7832 -> 67020", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7832, + "TargetID": 67020, + "Directional": true + }] + }, { + "ID": 7264, + "SourceStructureID": 593, + "TargetStructureID": 67042, + "Label": "593-67042 via Ribbon Synapse from 130884 -> 67261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130884, + "TargetID": 67261, + "Directional": true + }] + }, { + "ID": 7265, + "SourceStructureID": 593, + "TargetStructureID": 67045, + "Label": "593-67045 via Ribbon Synapse from 65503 -> 130790, 67211 -> 67217, 130960 -> 67677", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65503, + "TargetID": 130790, + "Directional": true + }, { + "SourceID": 67211, + "TargetID": 67217, + "Directional": true + }, { + "SourceID": 130960, + "TargetID": 67677, + "Directional": true + }] + }, { + "ID": 7266, + "SourceStructureID": 593, + "TargetStructureID": 67063, + "Label": "593-67063 via Ribbon Synapse from 64367 -> 67064", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64367, + "TargetID": 67064, + "Directional": true + }] + }, { + "ID": 7267, + "SourceStructureID": 593, + "TargetStructureID": 67093, + "Label": "593-67093 via BC Conventional Synapse from 67092 -> 67094", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67092, + "TargetID": 67094, + "Directional": true + }] + }, { + "ID": 7268, + "SourceStructureID": 593, + "TargetStructureID": 67095, + "Label": "593-67095 via Ribbon Synapse from 28432 -> 67096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28432, + "TargetID": 67096, + "Directional": true + }] + }, { + "ID": 7269, + "SourceStructureID": 593, + "TargetStructureID": 67101, + "Label": "593-67101 via Ribbon Synapse from 7810 -> 67103, 66621 -> 67102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7810, + "TargetID": 67103, + "Directional": true + }, { + "SourceID": 66621, + "TargetID": 67102, + "Directional": true + }] + }, { + "ID": 7270, + "SourceStructureID": 593, + "TargetStructureID": 67109, + "Label": "593-67109 via Ribbon Synapse from 67108 -> 67110", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67108, + "TargetID": 67110, + "Directional": true + }] + }, { + "ID": 7271, + "SourceStructureID": 593, + "TargetStructureID": 67112, + "Label": "593-67112 via Ribbon Synapse from 62883 -> 67114", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62883, + "TargetID": 67114, + "Directional": true + }] + }, { + "ID": 7272, + "SourceStructureID": 593, + "TargetStructureID": 67119, + "Label": "593-67119 via Ribbon Synapse from 66624 -> 67120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66624, + "TargetID": 67120, + "Directional": true + }] + }, { + "ID": 7273, + "SourceStructureID": 593, + "TargetStructureID": 67121, + "Label": "593-67121 via Ribbon Synapse from 85529 -> 85530", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85529, + "TargetID": 85530, + "Directional": true + }] + }, { + "ID": 7274, + "SourceStructureID": 593, + "TargetStructureID": 67125, + "Label": "593-67125 via BC Conventional Synapse from 67127 -> 67126", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67127, + "TargetID": 67126, + "Directional": true + }] + }, { + "ID": 7275, + "SourceStructureID": 593, + "TargetStructureID": 67128, + "Label": "593-67128 via Ribbon Synapse from 66629 -> 67129", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66629, + "TargetID": 67129, + "Directional": true + }] + }, { + "ID": 7276, + "SourceStructureID": 593, + "TargetStructureID": 67130, + "Label": "593-67130 via Ribbon Synapse from 66629 -> 67132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66629, + "TargetID": 67132, + "Directional": true + }] + }, { + "ID": 7277, + "SourceStructureID": 593, + "TargetStructureID": 67131, + "Label": "593-67131 via Ribbon Synapse from 66629 -> 67133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66629, + "TargetID": 67133, + "Directional": true + }] + }, { + "ID": 7278, + "SourceStructureID": 593, + "TargetStructureID": 67135, + "Label": "593-67135 via Ribbon Synapse from 66630 -> 67136", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66630, + "TargetID": 67136, + "Directional": true + }] + }, { + "ID": 7279, + "SourceStructureID": 593, + "TargetStructureID": 67137, + "Label": "593-67137 via Ribbon Synapse from 66630 -> 67138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66630, + "TargetID": 67138, + "Directional": true + }] + }, { + "ID": 7280, + "SourceStructureID": 593, + "TargetStructureID": 67161, + "Label": "593-67161 via Ribbon Synapse from 66652 -> 67164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66652, + "TargetID": 67164, + "Directional": true + }] + }, { + "ID": 7281, + "SourceStructureID": 593, + "TargetStructureID": 67187, + "Label": "593-67187 via Ribbon Synapse from 62887 -> 67188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62887, + "TargetID": 67188, + "Directional": true + }] + }, { + "ID": 7282, + "SourceStructureID": 593, + "TargetStructureID": 67190, + "Label": "593-67190 via Ribbon Synapse from 70257 -> 130933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70257, + "TargetID": 130933, + "Directional": true + }] + }, { + "ID": 7283, + "SourceStructureID": 593, + "TargetStructureID": 67208, + "Label": "593-67208 via BC Conventional Synapse from 67210 -> 67209", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67210, + "TargetID": 67209, + "Directional": true + }] + }, { + "ID": 7284, + "SourceStructureID": 593, + "TargetStructureID": 67219, + "Label": "593-67219 via Ribbon Synapse from 67211 -> 67220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67211, + "TargetID": 67220, + "Directional": true + }] + }, { + "ID": 7285, + "SourceStructureID": 593, + "TargetStructureID": 67221, + "Label": "593-67221 via Ribbon Synapse from 67211 -> 67222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67211, + "TargetID": 67222, + "Directional": true + }] + }, { + "ID": 7286, + "SourceStructureID": 593, + "TargetStructureID": 67227, + "Label": "593-67227 via Ribbon Synapse from 130983 -> 82754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130983, + "TargetID": 82754, + "Directional": true + }] + }, { + "ID": 7287, + "SourceStructureID": 593, + "TargetStructureID": 67246, + "Label": "593-67246 via BC Conventional Synapse from 67248 -> 67247", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67248, + "TargetID": 67247, + "Directional": true + }] + }, { + "ID": 7288, + "SourceStructureID": 593, + "TargetStructureID": 67252, + "Label": "593-67252 via Ribbon Synapse from 67251 -> 67253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67251, + "TargetID": 67253, + "Directional": true + }] + }, { + "ID": 7289, + "SourceStructureID": 593, + "TargetStructureID": 67254, + "Label": "593-67254 via Ribbon Synapse from 49573 -> 67422", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49573, + "TargetID": 67422, + "Directional": true + }] + }, { + "ID": 7290, + "SourceStructureID": 593, + "TargetStructureID": 67258, + "Label": "593-67258 via Ribbon Synapse from 7731 -> 68485, 130884 -> 67259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7731, + "TargetID": 68485, + "Directional": true + }, { + "SourceID": 130884, + "TargetID": 67259, + "Directional": true + }] + }, { + "ID": 7291, + "SourceStructureID": 593, + "TargetStructureID": 67262, + "Label": "593-67262 via BC Conventional Synapse from 130887 -> 130888", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130887, + "TargetID": 130888, + "Directional": true + }] + }, { + "ID": 7292, + "SourceStructureID": 593, + "TargetStructureID": 67262, + "Label": "593-67262 via Ribbon Synapse from 49573 -> 67416, 130884 -> 67263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49573, + "TargetID": 67416, + "Directional": true + }, { + "SourceID": 130884, + "TargetID": 67263, + "Directional": true + }] + }, { + "ID": 7293, + "SourceStructureID": 593, + "TargetStructureID": 67269, + "Label": "593-67269 via Ribbon Synapse from 67272 -> 67273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67272, + "TargetID": 67273, + "Directional": true + }] + }, { + "ID": 7294, + "SourceStructureID": 593, + "TargetStructureID": 67291, + "Label": "593-67291 via Ribbon Synapse from 68343 -> 68345, 68343 -> 130932", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68343, + "TargetID": 68345, + "Directional": true + }, { + "SourceID": 68343, + "TargetID": 130932, + "Directional": true + }] + }, { + "ID": 7295, + "SourceStructureID": 593, + "TargetStructureID": 67307, + "Label": "593-67307 via BC Conventional Synapse from 67312 -> 67311", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67312, + "TargetID": 67311, + "Directional": true + }] + }, { + "ID": 7296, + "SourceStructureID": 593, + "TargetStructureID": 67322, + "Label": "593-67322 via Ribbon Synapse from 7748 -> 67363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7748, + "TargetID": 67363, + "Directional": true + }] + }, { + "ID": 7297, + "SourceStructureID": 593, + "TargetStructureID": 67331, + "Label": "593-67331 via Ribbon Synapse from 130712 -> 67336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130712, + "TargetID": 67336, + "Directional": true + }] + }, { + "ID": 7298, + "SourceStructureID": 593, + "TargetStructureID": 67341, + "Label": "593-67341 via Ribbon Synapse from 130712 -> 67342, 130989 -> 67391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130712, + "TargetID": 67342, + "Directional": true + }, { + "SourceID": 130989, + "TargetID": 67391, + "Directional": true + }] + }, { + "ID": 7299, + "SourceStructureID": 593, + "TargetStructureID": 67352, + "Label": "593-67352 via BC Conventional Synapse from 68208 -> 68209", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68208, + "TargetID": 68209, + "Directional": true + }] + }, { + "ID": 7300, + "SourceStructureID": 593, + "TargetStructureID": 67370, + "Label": "593-67370 via Ribbon Synapse from 36597 -> 67371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36597, + "TargetID": 67371, + "Directional": true + }] + }, { + "ID": 7301, + "SourceStructureID": 593, + "TargetStructureID": 67375, + "Label": "593-67375 via Ribbon Synapse from 7764 -> 67543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7764, + "TargetID": 67543, + "Directional": true + }] + }, { + "ID": 7302, + "SourceStructureID": 593, + "TargetStructureID": 67382, + "Label": "593-67382 via Ribbon Synapse from 130989 -> 67384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130989, + "TargetID": 67384, + "Directional": true + }] + }, { + "ID": 7303, + "SourceStructureID": 593, + "TargetStructureID": 67401, + "Label": "593-67401 via BC Conventional Synapse from 67399 -> 67402", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67399, + "TargetID": 67402, + "Directional": true + }] + }, { + "ID": 7304, + "SourceStructureID": 593, + "TargetStructureID": 67406, + "Label": "593-67406 via BC Conventional Synapse from 67408 -> 67407", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67408, + "TargetID": 67407, + "Directional": true + }] + }, { + "ID": 7305, + "SourceStructureID": 593, + "TargetStructureID": 67425, + "Label": "593-67425 via BC Conventional Synapse from 67431 -> 67428", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67431, + "TargetID": 67428, + "Directional": true + }] + }, { + "ID": 7306, + "SourceStructureID": 593, + "TargetStructureID": 67430, + "Label": "593-67430 via Ribbon Synapse from 7719 -> 130953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7719, + "TargetID": 130953, + "Directional": true + }] + }, { + "ID": 7307, + "SourceStructureID": 593, + "TargetStructureID": 67455, + "Label": "593-67455 via Ribbon Synapse from 85609 -> 67456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85609, + "TargetID": 67456, + "Directional": true + }] + }, { + "ID": 7308, + "SourceStructureID": 593, + "TargetStructureID": 67458, + "Label": "593-67458 via Ribbon Synapse from 85609 -> 67459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85609, + "TargetID": 67459, + "Directional": true + }] + }, { + "ID": 7309, + "SourceStructureID": 593, + "TargetStructureID": 67466, + "Label": "593-67466 via BC Conventional Synapse from 67465 -> 67467", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67465, + "TargetID": 67467, + "Directional": true + }] + }, { + "ID": 7310, + "SourceStructureID": 593, + "TargetStructureID": 67486, + "Label": "593-67486 via BC Conventional Synapse from 67485 -> 67487", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67485, + "TargetID": 67487, + "Directional": true + }] + }, { + "ID": 7311, + "SourceStructureID": 593, + "TargetStructureID": 67494, + "Label": "593-67494 via BC Conventional Synapse from 67496 -> 67495", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67496, + "TargetID": 67495, + "Directional": true + }] + }, { + "ID": 7312, + "SourceStructureID": 593, + "TargetStructureID": 67502, + "Label": "593-67502 via Ribbon Synapse from 28408 -> 67503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28408, + "TargetID": 67503, + "Directional": true + }] + }, { + "ID": 7313, + "SourceStructureID": 593, + "TargetStructureID": 67506, + "Label": "593-67506 via Ribbon Synapse from 7821 -> 67507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7821, + "TargetID": 67507, + "Directional": true + }] + }, { + "ID": 7314, + "SourceStructureID": 593, + "TargetStructureID": 67508, + "Label": "593-67508 via Ribbon Synapse from 7815 -> 130974, 7821 -> 67509", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7815, + "TargetID": 130974, + "Directional": true + }, { + "SourceID": 7821, + "TargetID": 67509, + "Directional": true + }] + }, { + "ID": 7315, + "SourceStructureID": 593, + "TargetStructureID": 67520, + "Label": "593-67520 via Ribbon Synapse from 130917 -> 67534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130917, + "TargetID": 67534, + "Directional": true + }] + }, { + "ID": 7316, + "SourceStructureID": 593, + "TargetStructureID": 67531, + "Label": "593-67531 via Ribbon Synapse from 130917 -> 67532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130917, + "TargetID": 67532, + "Directional": true + }] + }, { + "ID": 7317, + "SourceStructureID": 593, + "TargetStructureID": 67546, + "Label": "593-67546 via BC Conventional Synapse from 7829 -> 67547", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7829, + "TargetID": 67547, + "Directional": true + }] + }, { + "ID": 7318, + "SourceStructureID": 593, + "TargetStructureID": 67551, + "Label": "593-67551 via BC Conventional Synapse from 7830 -> 67552", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7830, + "TargetID": 67552, + "Directional": true + }] + }, { + "ID": 7319, + "SourceStructureID": 593, + "TargetStructureID": 67560, + "Label": "593-67560 via BC Conventional Synapse from 67804 -> 67803", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67804, + "TargetID": 67803, + "Directional": true + }] + }, { + "ID": 7320, + "SourceStructureID": 593, + "TargetStructureID": 67575, + "Label": "593-67575 via BC Conventional Synapse from 67578 -> 67577", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67578, + "TargetID": 67577, + "Directional": true + }] + }, { + "ID": 7321, + "SourceStructureID": 593, + "TargetStructureID": 67580, + "Label": "593-67580 via Ribbon Synapse from 7835 -> 67582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7835, + "TargetID": 67582, + "Directional": true + }] + }, { + "ID": 7322, + "SourceStructureID": 593, + "TargetStructureID": 67585, + "Label": "593-67585 via BC Conventional Synapse from 134750 -> 134751", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134750, + "TargetID": 134751, + "Directional": true + }] + }, { + "ID": 7323, + "SourceStructureID": 593, + "TargetStructureID": 67586, + "Label": "593-67586 via Ribbon Synapse from 130977 -> 67587", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130977, + "TargetID": 67587, + "Directional": true + }] + }, { + "ID": 7324, + "SourceStructureID": 593, + "TargetStructureID": 67595, + "Label": "593-67595 via Ribbon Synapse from 28447 -> 67631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28447, + "TargetID": 67631, + "Directional": true + }] + }, { + "ID": 7325, + "SourceStructureID": 593, + "TargetStructureID": 67663, + "Label": "593-67663 via BC Conventional Synapse from 7807 -> 67664", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7807, + "TargetID": 67664, + "Directional": true + }] + }, { + "ID": 7326, + "SourceStructureID": 593, + "TargetStructureID": 67686, + "Label": "593-67686 via Ribbon Synapse from 7736 -> 67738, 7768 -> 67754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7736, + "TargetID": 67738, + "Directional": true + }, { + "SourceID": 7768, + "TargetID": 67754, + "Directional": true + }] + }, { + "ID": 7327, + "SourceStructureID": 593, + "TargetStructureID": 67705, + "Label": "593-67705 via BC Conventional Synapse from 82125 -> 82126", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82125, + "TargetID": 82126, + "Directional": true + }] + }, { + "ID": 7328, + "SourceStructureID": 593, + "TargetStructureID": 67711, + "Label": "593-67711 via Ribbon Synapse from 67717 -> 67718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67717, + "TargetID": 67718, + "Directional": true + }] + }, { + "ID": 7329, + "SourceStructureID": 593, + "TargetStructureID": 67729, + "Label": "593-67729 via Ribbon Synapse from 130960 -> 67730", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130960, + "TargetID": 67730, + "Directional": true + }] + }, { + "ID": 7330, + "SourceStructureID": 593, + "TargetStructureID": 67731, + "Label": "593-67731 via BC Conventional Synapse from 67733 -> 67732", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67733, + "TargetID": 67732, + "Directional": true + }] + }, { + "ID": 7331, + "SourceStructureID": 593, + "TargetStructureID": 67736, + "Label": "593-67736 via Ribbon Synapse from 7736 -> 67737, 53817 -> 67747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7736, + "TargetID": 67737, + "Directional": true + }, { + "SourceID": 53817, + "TargetID": 67747, + "Directional": true + }] + }, { + "ID": 7332, + "SourceStructureID": 593, + "TargetStructureID": 67756, + "Label": "593-67756 via Ribbon Synapse from 78293 -> 78294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78293, + "TargetID": 78294, + "Directional": true + }] + }, { + "ID": 7333, + "SourceStructureID": 593, + "TargetStructureID": 67779, + "Label": "593-67779 via BC Conventional Synapse from 67781 -> 67782", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67781, + "TargetID": 67782, + "Directional": true + }] + }, { + "ID": 7334, + "SourceStructureID": 593, + "TargetStructureID": 67779, + "Label": "593-67779 via Ribbon Synapse from 53811 -> 67783", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53811, + "TargetID": 67783, + "Directional": true + }] + }, { + "ID": 7335, + "SourceStructureID": 593, + "TargetStructureID": 67784, + "Label": "593-67784 via Ribbon Synapse from 130977 -> 67785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130977, + "TargetID": 67785, + "Directional": true + }] + }, { + "ID": 7336, + "SourceStructureID": 593, + "TargetStructureID": 67809, + "Label": "593-67809 via Ribbon Synapse from 7831 -> 67811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7831, + "TargetID": 67811, + "Directional": true + }] + }, { + "ID": 7337, + "SourceStructureID": 593, + "TargetStructureID": 67812, + "Label": "593-67812 via BC Conventional Synapse from 67814 -> 67813", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67814, + "TargetID": 67813, + "Directional": true + }] + }, { + "ID": 7338, + "SourceStructureID": 593, + "TargetStructureID": 67833, + "Label": "593-67833 via Ribbon Synapse from 87237 -> 87239, 130990 -> 87239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87237, + "TargetID": 87239, + "Directional": true + }, { + "SourceID": 130990, + "TargetID": 87239, + "Directional": true + }] + }, { + "ID": 7339, + "SourceStructureID": 593, + "TargetStructureID": 67839, + "Label": "593-67839 via Ribbon Synapse from 28411 -> 67840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28411, + "TargetID": 67840, + "Directional": true + }] + }, { + "ID": 7340, + "SourceStructureID": 593, + "TargetStructureID": 67871, + "Label": "593-67871 via Ribbon Synapse from 52488 -> 67872", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52488, + "TargetID": 67872, + "Directional": true + }] + }, { + "ID": 7341, + "SourceStructureID": 593, + "TargetStructureID": 67883, + "Label": "593-67883 via Ribbon Synapse from 130982 -> 67911", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130982, + "TargetID": 67911, + "Directional": true + }] + }, { + "ID": 7342, + "SourceStructureID": 593, + "TargetStructureID": 67890, + "Label": "593-67890 via Ribbon Synapse from 130982 -> 67908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130982, + "TargetID": 67908, + "Directional": true + }] + }, { + "ID": 7343, + "SourceStructureID": 593, + "TargetStructureID": 67892, + "Label": "593-67892 via Ribbon Synapse from 28413 -> 67893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28413, + "TargetID": 67893, + "Directional": true + }] + }, { + "ID": 7344, + "SourceStructureID": 593, + "TargetStructureID": 67915, + "Label": "593-67915 via Ribbon Synapse from 7836 -> 67916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7836, + "TargetID": 67916, + "Directional": true + }] + }, { + "ID": 7345, + "SourceStructureID": 593, + "TargetStructureID": 67918, + "Label": "593-67918 via Ribbon Synapse from 7836 -> 67919, 49855 -> 67946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7836, + "TargetID": 67919, + "Directional": true + }, { + "SourceID": 49855, + "TargetID": 67946, + "Directional": true + }] + }, { + "ID": 7346, + "SourceStructureID": 593, + "TargetStructureID": 67920, + "Label": "593-67920 via Ribbon Synapse from 7836 -> 67921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7836, + "TargetID": 67921, + "Directional": true + }] + }, { + "ID": 7347, + "SourceStructureID": 593, + "TargetStructureID": 67932, + "Label": "593-67932 via BC Conventional Synapse from 115738 -> 115739", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115738, + "TargetID": 115739, + "Directional": true + }] + }, { + "ID": 7348, + "SourceStructureID": 593, + "TargetStructureID": 67952, + "Label": "593-67952 via BC Conventional Synapse from 68139 -> 82247", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68139, + "TargetID": 82247, + "Directional": true + }] + }, { + "ID": 7349, + "SourceStructureID": 593, + "TargetStructureID": 67952, + "Label": "593-67952 via Ribbon Synapse from 7738 -> 67962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7738, + "TargetID": 67962, + "Directional": true + }] + }, { + "ID": 7350, + "SourceStructureID": 593, + "TargetStructureID": 67967, + "Label": "593-67967 via BC Conventional Synapse from 7843 -> 67968", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7843, + "TargetID": 67968, + "Directional": true + }] + }, { + "ID": 7351, + "SourceStructureID": 593, + "TargetStructureID": 67996, + "Label": "593-67996 via BC Conventional Synapse from 87283 -> 67997", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87283, + "TargetID": 67997, + "Directional": true + }] + }, { + "ID": 7352, + "SourceStructureID": 593, + "TargetStructureID": 68003, + "Label": "593-68003 via Ribbon Synapse from 52487 -> 68008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52487, + "TargetID": 68008, + "Directional": true + }] + }, { + "ID": 7353, + "SourceStructureID": 593, + "TargetStructureID": 68009, + "Label": "593-68009 via Ribbon Synapse from 52451 -> 115707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52451, + "TargetID": 115707, + "Directional": true + }] + }, { + "ID": 7354, + "SourceStructureID": 593, + "TargetStructureID": 68014, + "Label": "593-68014 via Ribbon Synapse from 52451 -> 68015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52451, + "TargetID": 68015, + "Directional": true + }] + }, { + "ID": 7355, + "SourceStructureID": 593, + "TargetStructureID": 68031, + "Label": "593-68031 via Cistern Pre from 68627 -> 68628", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 68627, + "TargetID": 68628, + "Directional": true + }] + }, { + "ID": 7356, + "SourceStructureID": 593, + "TargetStructureID": 68040, + "Label": "593-68040 via BC Conventional Synapse from 68054 -> 68055", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68054, + "TargetID": 68055, + "Directional": true + }] + }, { + "ID": 7357, + "SourceStructureID": 593, + "TargetStructureID": 68042, + "Label": "593-68042 via Ribbon Synapse from 68029 -> 68043", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68029, + "TargetID": 68043, + "Directional": true + }] + }, { + "ID": 7358, + "SourceStructureID": 593, + "TargetStructureID": 68077, + "Label": "593-68077 via BC Conventional Synapse from 68082 -> 68081", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68082, + "TargetID": 68081, + "Directional": true + }] + }, { + "ID": 7359, + "SourceStructureID": 593, + "TargetStructureID": 68093, + "Label": "593-68093 via BC Conventional Synapse from 68123 -> 68122", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68123, + "TargetID": 68122, + "Directional": true + }] + }, { + "ID": 7360, + "SourceStructureID": 593, + "TargetStructureID": 68093, + "Label": "593-68093 via Ribbon Synapse from 53816 -> 68094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53816, + "TargetID": 68094, + "Directional": true + }] + }, { + "ID": 7361, + "SourceStructureID": 593, + "TargetStructureID": 68140, + "Label": "593-68140 via BC Conventional Synapse from 68139 -> 68141", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68139, + "TargetID": 68141, + "Directional": true + }] + }, { + "ID": 7362, + "SourceStructureID": 593, + "TargetStructureID": 68153, + "Label": "593-68153 via Ribbon Synapse from 53817 -> 68154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53817, + "TargetID": 68154, + "Directional": true + }] + }, { + "ID": 7363, + "SourceStructureID": 593, + "TargetStructureID": 68202, + "Label": "593-68202 via Ribbon Synapse from 53817 -> 72576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53817, + "TargetID": 72576, + "Directional": true + }] + }, { + "ID": 7364, + "SourceStructureID": 593, + "TargetStructureID": 68214, + "Label": "593-68214 via BC Conventional Synapse from 68441 -> 68443", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68441, + "TargetID": 68443, + "Directional": true + }] + }, { + "ID": 7365, + "SourceStructureID": 593, + "TargetStructureID": 68214, + "Label": "593-68214 via Ribbon Synapse from 7759 -> 68479", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7759, + "TargetID": 68479, + "Directional": true + }] + }, { + "ID": 7366, + "SourceStructureID": 593, + "TargetStructureID": 68238, + "Label": "593-68238 via Ribbon Synapse from 130744 -> 68241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130744, + "TargetID": 68241, + "Directional": true + }] + }, { + "ID": 7367, + "SourceStructureID": 593, + "TargetStructureID": 68239, + "Label": "593-68239 via BC Conventional Synapse from 87513 -> 87514", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87513, + "TargetID": 87514, + "Directional": true + }] + }, { + "ID": 7368, + "SourceStructureID": 593, + "TargetStructureID": 68239, + "Label": "593-68239 via Ribbon Synapse from 130744 -> 68242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130744, + "TargetID": 68242, + "Directional": true + }] + }, { + "ID": 7369, + "SourceStructureID": 593, + "TargetStructureID": 68252, + "Label": "593-68252 via Ribbon Synapse from 52470 -> 68629", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52470, + "TargetID": 68629, + "Directional": true + }] + }, { + "ID": 7370, + "SourceStructureID": 593, + "TargetStructureID": 68296, + "Label": "593-68296 via Ribbon Synapse from 130742 -> 68297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130742, + "TargetID": 68297, + "Directional": true + }] + }, { + "ID": 7371, + "SourceStructureID": 593, + "TargetStructureID": 68300, + "Label": "593-68300 via Ribbon Synapse from 130742 -> 68301", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130742, + "TargetID": 68301, + "Directional": true + }] + }, { + "ID": 7372, + "SourceStructureID": 593, + "TargetStructureID": 68312, + "Label": "593-68312 via Ribbon Synapse from 68311 -> 68313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68311, + "TargetID": 68313, + "Directional": true + }] + }, { + "ID": 7373, + "SourceStructureID": 593, + "TargetStructureID": 68318, + "Label": "593-68318 via Ribbon Synapse from 28434 -> 68415", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28434, + "TargetID": 68415, + "Directional": true + }] + }, { + "ID": 7374, + "SourceStructureID": 593, + "TargetStructureID": 68326, + "Label": "593-68326 via BC Conventional Synapse from 68328 -> 68327", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68328, + "TargetID": 68327, + "Directional": true + }] + }, { + "ID": 7375, + "SourceStructureID": 593, + "TargetStructureID": 68399, + "Label": "593-68399 via BC Conventional Synapse from 115698 -> 68400", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115698, + "TargetID": 68400, + "Directional": true + }] + }, { + "ID": 7376, + "SourceStructureID": 593, + "TargetStructureID": 68412, + "Label": "593-68412 via Ribbon Synapse from 28434 -> 68413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28434, + "TargetID": 68413, + "Directional": true + }] + }, { + "ID": 7377, + "SourceStructureID": 593, + "TargetStructureID": 68433, + "Label": "593-68433 via BC Conventional Synapse from 87220 -> 68434", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87220, + "TargetID": 68434, + "Directional": true + }] + }, { + "ID": 7378, + "SourceStructureID": 593, + "TargetStructureID": 68435, + "Label": "593-68435 via Ribbon Synapse from 130778 -> 68436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130778, + "TargetID": 68436, + "Directional": true + }] + }, { + "ID": 7379, + "SourceStructureID": 593, + "TargetStructureID": 68453, + "Label": "593-68453 via Ribbon Synapse from 130778 -> 68454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130778, + "TargetID": 68454, + "Directional": true + }] + }, { + "ID": 7380, + "SourceStructureID": 593, + "TargetStructureID": 68459, + "Label": "593-68459 via Ribbon Synapse from 49882 -> 68460", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49882, + "TargetID": 68460, + "Directional": true + }] + }, { + "ID": 7381, + "SourceStructureID": 593, + "TargetStructureID": 68461, + "Label": "593-68461 via Ribbon Synapse from 67265 -> 86544, 130889 -> 86544", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67265, + "TargetID": 86544, + "Directional": true + }, { + "SourceID": 130889, + "TargetID": 86544, + "Directional": true + }] + }, { + "ID": 7382, + "SourceStructureID": 593, + "TargetStructureID": 68463, + "Label": "593-68463 via Ribbon Synapse from 67279 -> 86564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67279, + "TargetID": 86564, + "Directional": true + }] + }, { + "ID": 7383, + "SourceStructureID": 593, + "TargetStructureID": 68480, + "Label": "593-68480 via Ribbon Synapse from 63032 -> 84102, 130733 -> 84114", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63032, + "TargetID": 84102, + "Directional": true + }, { + "SourceID": 130733, + "TargetID": 84114, + "Directional": true + }] + }, { + "ID": 7384, + "SourceStructureID": 593, + "TargetStructureID": 68486, + "Label": "593-68486 via Ribbon Synapse from 130884 -> 79608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130884, + "TargetID": 79608, + "Directional": true + }] + }, { + "ID": 7385, + "SourceStructureID": 593, + "TargetStructureID": 68488, + "Label": "593-68488 via Ribbon Synapse from 7735 -> 68491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7735, + "TargetID": 68491, + "Directional": true + }] + }, { + "ID": 7386, + "SourceStructureID": 593, + "TargetStructureID": 68501, + "Label": "593-68501 via Ribbon Synapse from 7740 -> 68503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7740, + "TargetID": 68503, + "Directional": true + }] + }, { + "ID": 7387, + "SourceStructureID": 593, + "TargetStructureID": 68511, + "Label": "593-68511 via Ribbon Synapse from 7727 -> 68512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7727, + "TargetID": 68512, + "Directional": true + }] + }, { + "ID": 7388, + "SourceStructureID": 593, + "TargetStructureID": 68527, + "Label": "593-68527 via BC Conventional Synapse from 115693 -> 68528", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115693, + "TargetID": 68528, + "Directional": true + }] + }, { + "ID": 7389, + "SourceStructureID": 593, + "TargetStructureID": 68539, + "Label": "593-68539 via Ribbon Synapse from 131104 -> 68540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131104, + "TargetID": 68540, + "Directional": true + }] + }, { + "ID": 7390, + "SourceStructureID": 593, + "TargetStructureID": 68543, + "Label": "593-68543 via Ribbon Synapse from 131104 -> 68544", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131104, + "TargetID": 68544, + "Directional": true + }] + }, { + "ID": 7391, + "SourceStructureID": 593, + "TargetStructureID": 68548, + "Label": "593-68548 via BC Conventional Synapse from 68547 -> 68549", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68547, + "TargetID": 68549, + "Directional": true + }] + }, { + "ID": 7392, + "SourceStructureID": 593, + "TargetStructureID": 68548, + "Label": "593-68548 via Ribbon Synapse from 63040 -> 73568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63040, + "TargetID": 73568, + "Directional": true + }] + }, { + "ID": 7393, + "SourceStructureID": 593, + "TargetStructureID": 68613, + "Label": "593-68613 via Ribbon Synapse from 115710 -> 115711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115710, + "TargetID": 115711, + "Directional": true + }] + }, { + "ID": 7394, + "SourceStructureID": 593, + "TargetStructureID": 68655, + "Label": "593-68655 via Ribbon Synapse from 67553 -> 68657", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67553, + "TargetID": 68657, + "Directional": true + }] + }, { + "ID": 7395, + "SourceStructureID": 593, + "TargetStructureID": 68669, + "Label": "593-68669 via Ribbon Synapse from 130713 -> 68685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130713, + "TargetID": 68685, + "Directional": true + }] + }, { + "ID": 7396, + "SourceStructureID": 593, + "TargetStructureID": 68678, + "Label": "593-68678 via Ribbon Synapse from 130715 -> 68681", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130715, + "TargetID": 68681, + "Directional": true + }] + }, { + "ID": 7397, + "SourceStructureID": 593, + "TargetStructureID": 68679, + "Label": "593-68679 via Ribbon Synapse from 130713 -> 130714, 130715 -> 130714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130713, + "TargetID": 130714, + "Directional": true + }, { + "SourceID": 130715, + "TargetID": 130714, + "Directional": true + }] + }, { + "ID": 7398, + "SourceStructureID": 593, + "TargetStructureID": 68879, + "Label": "593-68879 via Ribbon Synapse from 49568 -> 68880, 130983 -> 82764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49568, + "TargetID": 68880, + "Directional": true + }, { + "SourceID": 130983, + "TargetID": 82764, + "Directional": true + }] + }, { + "ID": 7399, + "SourceStructureID": 593, + "TargetStructureID": 68988, + "Label": "593-68988 via Ribbon Synapse from 52488 -> 68989", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52488, + "TargetID": 68989, + "Directional": true + }] + }, { + "ID": 7400, + "SourceStructureID": 593, + "TargetStructureID": 70040, + "Label": "593-70040 via Ribbon Synapse from 7719 -> 70041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7719, + "TargetID": 70041, + "Directional": true + }] + }, { + "ID": 7401, + "SourceStructureID": 593, + "TargetStructureID": 71517, + "Label": "593-71517 via Ribbon Synapse from 59625 -> 66676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59625, + "TargetID": 66676, + "Directional": true + }] + }, { + "ID": 7402, + "SourceStructureID": 593, + "TargetStructureID": 75573, + "Label": "593-75573 via Ribbon Synapse from 62883 -> 78882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62883, + "TargetID": 78882, + "Directional": true + }] + }, { + "ID": 7403, + "SourceStructureID": 593, + "TargetStructureID": 79431, + "Label": "593-79431 via BC Conventional Synapse from 115721 -> 115719", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115721, + "TargetID": 115719, + "Directional": true + }] + }, { + "ID": 7404, + "SourceStructureID": 593, + "TargetStructureID": 79433, + "Label": "593-79433 via BC Conventional Synapse from 115721 -> 115720", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115721, + "TargetID": 115720, + "Directional": true + }] + }, { + "ID": 7405, + "SourceStructureID": 593, + "TargetStructureID": 79586, + "Label": "593-79586 via Ribbon Synapse from 49882 -> 79594", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49882, + "TargetID": 79594, + "Directional": true + }] + }, { + "ID": 7406, + "SourceStructureID": 593, + "TargetStructureID": 79654, + "Label": "593-79654 via Ribbon Synapse from 86287 -> 86295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86287, + "TargetID": 86295, + "Directional": true + }] + }, { + "ID": 7407, + "SourceStructureID": 593, + "TargetStructureID": 81894, + "Label": "593-81894 via Ribbon Synapse from 130784 -> 81895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130784, + "TargetID": 81895, + "Directional": true + }] + }, { + "ID": 7408, + "SourceStructureID": 593, + "TargetStructureID": 82757, + "Label": "593-82757 via BC Conventional Synapse from 130984 -> 82758", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130984, + "TargetID": 82758, + "Directional": true + }] + }, { + "ID": 7409, + "SourceStructureID": 593, + "TargetStructureID": 82757, + "Label": "593-82757 via Ribbon Synapse from 130983 -> 82758", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130983, + "TargetID": 82758, + "Directional": true + }] + }, { + "ID": 7410, + "SourceStructureID": 593, + "TargetStructureID": 83443, + "Label": "593-83443 via BC Conventional Synapse from 67199 -> 83444", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67199, + "TargetID": 83444, + "Directional": true + }] + }, { + "ID": 7411, + "SourceStructureID": 593, + "TargetStructureID": 83476, + "Label": "593-83476 via Ribbon Synapse from 49598 -> 83477", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49598, + "TargetID": 83477, + "Directional": true + }] + }, { + "ID": 7412, + "SourceStructureID": 593, + "TargetStructureID": 84275, + "Label": "593-84275 via Ribbon Synapse from 115724 -> 115725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115724, + "TargetID": 115725, + "Directional": true + }] + }, { + "ID": 7413, + "SourceStructureID": 593, + "TargetStructureID": 84613, + "Label": "593-84613 via Ribbon Synapse from 7745 -> 84616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7745, + "TargetID": 84616, + "Directional": true + }] + }, { + "ID": 7414, + "SourceStructureID": 593, + "TargetStructureID": 85220, + "Label": "593-85220 via BC Conventional Synapse from 115731 -> 115730", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115731, + "TargetID": 115730, + "Directional": true + }] + }, { + "ID": 7415, + "SourceStructureID": 593, + "TargetStructureID": 85490, + "Label": "593-85490 via BC Conventional Synapse from 85494 -> 85492, 85495 -> 85493", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85494, + "TargetID": 85492, + "Directional": true + }, { + "SourceID": 85495, + "TargetID": 85493, + "Directional": true + }] + }, { + "ID": 7416, + "SourceStructureID": 593, + "TargetStructureID": 85491, + "Label": "593-85491 via Ribbon Synapse from 66620 -> 85497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66620, + "TargetID": 85497, + "Directional": true + }] + }, { + "ID": 7417, + "SourceStructureID": 593, + "TargetStructureID": 85496, + "Label": "593-85496 via Ribbon Synapse from 66620 -> 85498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66620, + "TargetID": 85498, + "Directional": true + }] + }, { + "ID": 7418, + "SourceStructureID": 593, + "TargetStructureID": 85534, + "Label": "593-85534 via BC Conventional Synapse from 85533 -> 85535", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85533, + "TargetID": 85535, + "Directional": true + }] + }, { + "ID": 7419, + "SourceStructureID": 593, + "TargetStructureID": 85549, + "Label": "593-85549 via Ribbon Synapse from 62886 -> 85550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62886, + "TargetID": 85550, + "Directional": true + }] + }, { + "ID": 7420, + "SourceStructureID": 593, + "TargetStructureID": 85563, + "Label": "593-85563 via Ribbon Synapse from 62887 -> 85564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62887, + "TargetID": 85564, + "Directional": true + }] + }, { + "ID": 7421, + "SourceStructureID": 593, + "TargetStructureID": 85595, + "Label": "593-85595 via Ribbon Synapse from 66651 -> 85596, 85609 -> 130987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66651, + "TargetID": 85596, + "Directional": true + }, { + "SourceID": 85609, + "TargetID": 130987, + "Directional": true + }] + }, { + "ID": 7422, + "SourceStructureID": 593, + "TargetStructureID": 86545, + "Label": "593-86545 via Ribbon Synapse from 67265 -> 86553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67265, + "TargetID": 86553, + "Directional": true + }] + }, { + "ID": 7423, + "SourceStructureID": 593, + "TargetStructureID": 87200, + "Label": "593-87200 via Ribbon Synapse from 50442 -> 87202", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50442, + "TargetID": 87202, + "Directional": true + }] + }, { + "ID": 7424, + "SourceStructureID": 593, + "TargetStructureID": 87201, + "Label": "593-87201 via Ribbon Synapse from 50442 -> 87204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50442, + "TargetID": 87204, + "Directional": true + }] + }, { + "ID": 7425, + "SourceStructureID": 593, + "TargetStructureID": 87221, + "Label": "593-87221 via BC Conventional Synapse from 87222 -> 87223", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87222, + "TargetID": 87223, + "Directional": true + }] + }, { + "ID": 7426, + "SourceStructureID": 593, + "TargetStructureID": 87238, + "Label": "593-87238 via Ribbon Synapse from 87237 -> 87240, 130990 -> 87240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87237, + "TargetID": 87240, + "Directional": true + }, { + "SourceID": 130990, + "TargetID": 87240, + "Directional": true + }] + }, { + "ID": 7427, + "SourceStructureID": 593, + "TargetStructureID": 87263, + "Label": "593-87263 via Ribbon Synapse from 87262 -> 87264", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87262, + "TargetID": 87264, + "Directional": true + }] + }, { + "ID": 7428, + "SourceStructureID": 593, + "TargetStructureID": 87271, + "Label": "593-87271 via Ribbon Synapse from 7838 -> 115695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7838, + "TargetID": 115695, + "Directional": true + }] + }, { + "ID": 7429, + "SourceStructureID": 593, + "TargetStructureID": 115701, + "Label": "593-115701 via Ribbon Synapse from 28406 -> 115702", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28406, + "TargetID": 115702, + "Directional": true + }] + }, { + "ID": 7430, + "SourceStructureID": 593, + "TargetStructureID": 130710, + "Label": "593-130710 via Ribbon Synapse from 115681 -> 130711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115681, + "TargetID": 130711, + "Directional": true + }] + }, { + "ID": 7431, + "SourceStructureID": 593, + "TargetStructureID": 130739, + "Label": "593-130739 via Ribbon Synapse from 130738 -> 130740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130738, + "TargetID": 130740, + "Directional": true + }] + }, { + "ID": 7432, + "SourceStructureID": 593, + "TargetStructureID": 130755, + "Label": "593-130755 via Ribbon Synapse from 120216 -> 130756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120216, + "TargetID": 130756, + "Directional": true + }] + }, { + "ID": 7433, + "SourceStructureID": 593, + "TargetStructureID": 130760, + "Label": "593-130760 via Ribbon Synapse from 15899 -> 130761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15899, + "TargetID": 130761, + "Directional": true + }] + }, { + "ID": 7434, + "SourceStructureID": 593, + "TargetStructureID": 130762, + "Label": "593-130762 via Ribbon Synapse from 15899 -> 130763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15899, + "TargetID": 130763, + "Directional": true + }] + }, { + "ID": 7435, + "SourceStructureID": 593, + "TargetStructureID": 130772, + "Label": "593-130772 via Ribbon Synapse from 36527 -> 130773", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36527, + "TargetID": 130773, + "Directional": true + }] + }, { + "ID": 7436, + "SourceStructureID": 593, + "TargetStructureID": 130779, + "Label": "593-130779 via Ribbon Synapse from 63963 -> 130780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63963, + "TargetID": 130780, + "Directional": true + }] + }, { + "ID": 7437, + "SourceStructureID": 593, + "TargetStructureID": 130885, + "Label": "593-130885 via Ribbon Synapse from 130884 -> 130886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130884, + "TargetID": 130886, + "Directional": true + }] + }, { + "ID": 7438, + "SourceStructureID": 593, + "TargetStructureID": 130891, + "Label": "593-130891 via Ribbon Synapse from 67279 -> 130892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67279, + "TargetID": 130892, + "Directional": true + }] + }, { + "ID": 7439, + "SourceStructureID": 593, + "TargetStructureID": 130913, + "Label": "593-130913 via Ribbon Synapse from 67553 -> 130914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67553, + "TargetID": 130914, + "Directional": true + }] + }, { + "ID": 7440, + "SourceStructureID": 593, + "TargetStructureID": 130930, + "Label": "593-130930 via Ribbon Synapse from 68071 -> 130931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68071, + "TargetID": 130931, + "Directional": true + }] + }, { + "ID": 7441, + "SourceStructureID": 593, + "TargetStructureID": 130964, + "Label": "593-130964 via Ribbon Synapse from 7736 -> 130965", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7736, + "TargetID": 130965, + "Directional": true + }] + }, { + "ID": 7442, + "SourceStructureID": 593, + "TargetStructureID": 130975, + "Label": "593-130975 via Ribbon Synapse from 7815 -> 130976", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7815, + "TargetID": 130976, + "Directional": true + }] + }, { + "ID": 7443, + "SourceStructureID": 595, + "TargetStructureID": 606, + "Label": "595-606 via Ribbon Synapse from 47254 -> 47255, 53469 -> 53470, 53508 -> 53509, 53512 -> 53513, 53977 -> 53978", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47254, + "TargetID": 47255, + "Directional": true + }, { + "SourceID": 53469, + "TargetID": 53470, + "Directional": true + }, { + "SourceID": 53508, + "TargetID": 53509, + "Directional": true + }, { + "SourceID": 53512, + "TargetID": 53513, + "Directional": true + }, { + "SourceID": 53977, + "TargetID": 53978, + "Directional": true + }] + }, { + "ID": 7444, + "SourceStructureID": 595, + "TargetStructureID": 5423, + "Label": "595-5423 via Ribbon Synapse from 92825 -> 92826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92825, + "TargetID": 92826, + "Directional": true + }] + }, { + "ID": 7445, + "SourceStructureID": 595, + "TargetStructureID": 5435, + "Label": "595-5435 via Ribbon Synapse from 40656 -> 40546, 125078 -> 125080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40656, + "TargetID": 40546, + "Directional": true + }, { + "SourceID": 125078, + "TargetID": 125080, + "Directional": true + }] + }, { + "ID": 7446, + "SourceStructureID": 595, + "TargetStructureID": 5436, + "Label": "595-5436 via Ribbon Synapse from 91646 -> 23074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91646, + "TargetID": 23074, + "Directional": true + }] + }, { + "ID": 7447, + "SourceStructureID": 595, + "TargetStructureID": 5451, + "Label": "595-5451 via Ribbon Synapse from 46655 -> 55160, 46659 -> 55163, 46661 -> 55159", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46655, + "TargetID": 55160, + "Directional": true + }, { + "SourceID": 46659, + "TargetID": 55163, + "Directional": true + }, { + "SourceID": 46661, + "TargetID": 55159, + "Directional": true + }] + }, { + "ID": 7448, + "SourceStructureID": 595, + "TargetStructureID": 5481, + "Label": "595-5481 via Ribbon Synapse from 19557 -> 19555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19557, + "TargetID": 19555, + "Directional": true + }] + }, { + "ID": 7449, + "SourceStructureID": 595, + "TargetStructureID": 10565, + "Label": "595-10565 via Ribbon Synapse from 135568 -> 135569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135568, + "TargetID": 135569, + "Directional": true + }] + }, { + "ID": 7450, + "SourceStructureID": 595, + "TargetStructureID": 15796, + "Label": "595-15796 via Ribbon Synapse from 135688 -> 135690", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135688, + "TargetID": 135690, + "Directional": true + }] + }, { + "ID": 7451, + "SourceStructureID": 595, + "TargetStructureID": 34055, + "Label": "595-34055 via Ribbon Synapse from 40648 -> 40649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40648, + "TargetID": 40649, + "Directional": true + }] + }, { + "ID": 7452, + "SourceStructureID": 595, + "TargetStructureID": 44346, + "Label": "595-44346 via Ribbon Synapse from 44816 -> 44814, 125203 -> 135700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44816, + "TargetID": 44814, + "Directional": true + }, { + "SourceID": 125203, + "TargetID": 135700, + "Directional": true + }] + }, { + "ID": 7453, + "SourceStructureID": 595, + "TargetStructureID": 54925, + "Label": "595-54925 via Ribbon Synapse from 54940 -> 54939", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54940, + "TargetID": 54939, + "Directional": true + }] + }, { + "ID": 7454, + "SourceStructureID": 595, + "TargetStructureID": 74727, + "Label": "595-74727 via Ribbon Synapse from 82480 -> 82481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82480, + "TargetID": 82481, + "Directional": true + }] + }, { + "ID": 7455, + "SourceStructureID": 595, + "TargetStructureID": 79259, + "Label": "595-79259 via Ribbon Synapse from 46650 -> 135707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46650, + "TargetID": 135707, + "Directional": true + }] + }, { + "ID": 7456, + "SourceStructureID": 595, + "TargetStructureID": 88521, + "Label": "595-88521 via BC Conventional Synapse from 92684 -> 92683", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92684, + "TargetID": 92683, + "Directional": true + }] + }, { + "ID": 7457, + "SourceStructureID": 595, + "TargetStructureID": 89039, + "Label": "595-89039 via Ribbon Synapse from 46691 -> 89055", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46691, + "TargetID": 89055, + "Directional": true + }] + }, { + "ID": 7458, + "SourceStructureID": 595, + "TargetStructureID": 91132, + "Label": "595-91132 via Ribbon Synapse from 92618 -> 92619", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92618, + "TargetID": 92619, + "Directional": true + }] + }, { + "ID": 7459, + "SourceStructureID": 595, + "TargetStructureID": 91232, + "Label": "595-91232 via Ribbon Synapse from 92600 -> 92601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92600, + "TargetID": 92601, + "Directional": true + }] + }, { + "ID": 7460, + "SourceStructureID": 595, + "TargetStructureID": 91376, + "Label": "595-91376 via Ribbon Synapse from 91276 -> 92704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91276, + "TargetID": 92704, + "Directional": true + }] + }, { + "ID": 7461, + "SourceStructureID": 595, + "TargetStructureID": 96270, + "Label": "595-96270 via Ribbon Synapse from 46650 -> 135706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46650, + "TargetID": 135706, + "Directional": true + }] + }, { + "ID": 7462, + "SourceStructureID": 595, + "TargetStructureID": 126012, + "Label": "595-126012 via Ribbon Synapse from 47206 -> 126015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47206, + "TargetID": 126015, + "Directional": true + }] + }, { + "ID": 7463, + "SourceStructureID": 598, + "TargetStructureID": 408, + "Label": "598-408 via Conventional from 25881 -> 25880", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25881, + "TargetID": 25880, + "Directional": true + }] + }, { + "ID": 7464, + "SourceStructureID": 598, + "TargetStructureID": 485, + "Label": "598-485 via Conventional from 38812 -> 38814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38812, + "TargetID": 38814, + "Directional": true + }] + }, { + "ID": 7465, + "SourceStructureID": 598, + "TargetStructureID": 5396, + "Label": "598-5396 via Conventional from 32401 -> 89481", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32401, + "TargetID": 89481, + "Directional": true + }] + }, { + "ID": 7466, + "SourceStructureID": 598, + "TargetStructureID": 5563, + "Label": "598-5563 via Conventional from 32402 -> 32399", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32402, + "TargetID": 32399, + "Directional": true + }] + }, { + "ID": 7467, + "SourceStructureID": 598, + "TargetStructureID": 5650, + "Label": "598-5650 via Conventional from 6323 -> 104312", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6323, + "TargetID": 104312, + "Directional": true + }] + }, { + "ID": 7468, + "SourceStructureID": 598, + "TargetStructureID": 6120, + "Label": "598-6120 via Conventional from 6328 -> 110543", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6328, + "TargetID": 110543, + "Directional": true + }] + }, { + "ID": 7469, + "SourceStructureID": 598, + "TargetStructureID": 38810, + "Label": "598-38810 via Conventional from 38806 -> 38811", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38806, + "TargetID": 38811, + "Directional": true + }] + }, { + "ID": 7470, + "SourceStructureID": 606, + "TargetStructureID": 7594, + "Label": "606-7594 via Cistern Pre from 47615 -> 47616", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 47615, + "TargetID": 47616, + "Directional": true + }] + }, { + "ID": 7471, + "SourceStructureID": 606, + "TargetStructureID": 55517, + "Label": "606-55517 via Cistern Pre from 52853 -> 55560", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 52853, + "TargetID": 55560, + "Directional": true + }] + }, { + "ID": 7472, + "SourceStructureID": 606, + "TargetStructureID": 89554, + "Label": "606-89554 via Cistern Pre from 51540 -> 89555", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 51540, + "TargetID": 89555, + "Directional": true + }] + }, { + "ID": 7473, + "SourceStructureID": 611, + "TargetStructureID": 70205, + "Label": "611-70205 via Ribbon Synapse from 70216 -> 70214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70216, + "TargetID": 70214, + "Directional": true + }] + }, { + "ID": 7474, + "SourceStructureID": 906, + "TargetStructureID": 307, + "Label": "906-307 via Conventional from 15874 -> 15896, 15875 -> 15895, 15904 -> 15972, 15905 -> 16793", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15874, + "TargetID": 15896, + "Directional": true + }, { + "SourceID": 15875, + "TargetID": 15895, + "Directional": true + }, { + "SourceID": 15904, + "TargetID": 15972, + "Directional": true + }, { + "SourceID": 15905, + "TargetID": 16793, + "Directional": true + }] + }, { + "ID": 7475, + "SourceStructureID": 906, + "TargetStructureID": 4570, + "Label": "906-4570 via Conventional from 15194 -> 4751", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15194, + "TargetID": 4751, + "Directional": true + }] + }, { + "ID": 7476, + "SourceStructureID": 906, + "TargetStructureID": 5575, + "Label": "906-5575 via Conventional from 15229 -> 22950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15229, + "TargetID": 22950, + "Directional": true + }] + }, { + "ID": 7477, + "SourceStructureID": 906, + "TargetStructureID": 18693, + "Label": "906-18693 via Conventional from 15912 -> 18822, 15913 -> 18727, 22957 -> 22958", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15912, + "TargetID": 18822, + "Directional": true + }, { + "SourceID": 15913, + "TargetID": 18727, + "Directional": true + }, { + "SourceID": 22957, + "TargetID": 22958, + "Directional": true + }] + }, { + "ID": 7478, + "SourceStructureID": 906, + "TargetStructureID": 25392, + "Label": "906-25392 via Conventional from 15231 -> 25401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15231, + "TargetID": 25401, + "Directional": true + }] + }, { + "ID": 7479, + "SourceStructureID": 906, + "TargetStructureID": 122467, + "Label": "906-122467 via Conventional from 15172 -> 122468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15172, + "TargetID": 122468, + "Directional": true + }] + }, { + "ID": 7480, + "SourceStructureID": 906, + "TargetStructureID": 122469, + "Label": "906-122469 via Conventional from 15179 -> 122470", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15179, + "TargetID": 122470, + "Directional": true + }] + }, { + "ID": 7481, + "SourceStructureID": 907, + "TargetStructureID": 1724, + "Label": "907-1724 via Cistern Pre from 47910 -> 47909", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 47910, + "TargetID": 47909, + "Directional": true + }] + }, { + "ID": 7482, + "SourceStructureID": 907, + "TargetStructureID": 5575, + "Label": "907-5575 via Conventional from 64545 -> 64544", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64545, + "TargetID": 64544, + "Directional": true + }] + }, { + "ID": 7483, + "SourceStructureID": 909, + "TargetStructureID": 598, + "Label": "909-598 via BC Conventional Synapse from 117796 -> 117797", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117796, + "TargetID": 117797, + "Directional": true + }] + }, { + "ID": 7484, + "SourceStructureID": 909, + "TargetStructureID": 598, + "Label": "909-598 via Ribbon Synapse from 36055 -> 36056, 53772 -> 117258, 55601 -> 117795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36055, + "TargetID": 36056, + "Directional": true + }, { + "SourceID": 53772, + "TargetID": 117258, + "Directional": true + }, { + "SourceID": 55601, + "TargetID": 117795, + "Directional": true + }] + }, { + "ID": 7485, + "SourceStructureID": 909, + "TargetStructureID": 4890, + "Label": "909-4890 via Ribbon Synapse from 64915 -> 64914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64915, + "TargetID": 64914, + "Directional": true + }] + }, { + "ID": 7486, + "SourceStructureID": 909, + "TargetStructureID": 5282, + "Label": "909-5282 via Ribbon Synapse from 113682 -> 121606", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113682, + "TargetID": 121606, + "Directional": true + }] + }, { + "ID": 7487, + "SourceStructureID": 909, + "TargetStructureID": 5377, + "Label": "909-5377 via Ribbon Synapse from 87039 -> 87030, 87040 -> 87042", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87039, + "TargetID": 87030, + "Directional": true + }, { + "SourceID": 87040, + "TargetID": 87042, + "Directional": true + }] + }, { + "ID": 7488, + "SourceStructureID": 909, + "TargetStructureID": 5405, + "Label": "909-5405 via BC Conventional Synapse from 87041 -> 11177, 120200 -> 120201", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87041, + "TargetID": 11177, + "Directional": true + }, { + "SourceID": 120200, + "TargetID": 120201, + "Directional": true + }] + }, { + "ID": 7489, + "SourceStructureID": 909, + "TargetStructureID": 5405, + "Label": "909-5405 via Ribbon Synapse from 53735 -> 117427, 113675 -> 113676, 113679 -> 131025, 117275 -> 117282, 117425 -> 117426, 118645 -> 11175, 120109 -> 11181, 130018 -> 130017", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53735, + "TargetID": 117427, + "Directional": true + }, { + "SourceID": 113675, + "TargetID": 113676, + "Directional": true + }, { + "SourceID": 113679, + "TargetID": 131025, + "Directional": true + }, { + "SourceID": 117275, + "TargetID": 117282, + "Directional": true + }, { + "SourceID": 117425, + "TargetID": 117426, + "Directional": true + }, { + "SourceID": 118645, + "TargetID": 11175, + "Directional": true + }, { + "SourceID": 120109, + "TargetID": 11181, + "Directional": true + }, { + "SourceID": 130018, + "TargetID": 130017, + "Directional": true + }] + }, { + "ID": 7490, + "SourceStructureID": 909, + "TargetStructureID": 5497, + "Label": "909-5497 via Ribbon Synapse from 45938 -> 131091, 53746 -> 117469, 130118 -> 117653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45938, + "TargetID": 131091, + "Directional": true + }, { + "SourceID": 53746, + "TargetID": 117469, + "Directional": true + }, { + "SourceID": 130118, + "TargetID": 117653, + "Directional": true + }] + }, { + "ID": 7491, + "SourceStructureID": 909, + "TargetStructureID": 7134, + "Label": "909-7134 via Ribbon Synapse from 117824 -> 117900, 117911 -> 117914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117824, + "TargetID": 117900, + "Directional": true + }, { + "SourceID": 117911, + "TargetID": 117914, + "Directional": true + }] + }, { + "ID": 7492, + "SourceStructureID": 909, + "TargetStructureID": 7594, + "Label": "909-7594 via Ribbon Synapse from 55601 -> 117794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55601, + "TargetID": 117794, + "Directional": true + }] + }, { + "ID": 7493, + "SourceStructureID": 909, + "TargetStructureID": 8575, + "Label": "909-8575 via BC Conventional Synapse from 130864 -> 130865", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130864, + "TargetID": 130865, + "Directional": true + }] + }, { + "ID": 7494, + "SourceStructureID": 909, + "TargetStructureID": 8575, + "Label": "909-8575 via Ribbon cluster from 130822 -> 130821", + "Type": "Ribbon cluster", + "Directional": true, + "Links": [{ + "SourceID": 130822, + "TargetID": 130821, + "Directional": true + }] + }, { + "ID": 7495, + "SourceStructureID": 909, + "TargetStructureID": 8575, + "Label": "909-8575 via Ribbon Synapse from 62060 -> 62058, 120142 -> 120146, 129568 -> 62077, 129570 -> 62077, 130823 -> 130821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62060, + "TargetID": 62058, + "Directional": true + }, { + "SourceID": 120142, + "TargetID": 120146, + "Directional": true + }, { + "SourceID": 129568, + "TargetID": 62077, + "Directional": true + }, { + "SourceID": 129570, + "TargetID": 62077, + "Directional": true + }, { + "SourceID": 130823, + "TargetID": 130821, + "Directional": true + }] + }, { + "ID": 7496, + "SourceStructureID": 909, + "TargetStructureID": 8579, + "Label": "909-8579 via Ribbon Synapse from 36057 -> 62900", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36057, + "TargetID": 62900, + "Directional": true + }] + }, { + "ID": 7497, + "SourceStructureID": 909, + "TargetStructureID": 15796, + "Label": "909-15796 via Ribbon Synapse from 87039 -> 131063, 116366 -> 116392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87039, + "TargetID": 131063, + "Directional": true + }, { + "SourceID": 116366, + "TargetID": 116392, + "Directional": true + }] + }, { + "ID": 7498, + "SourceStructureID": 909, + "TargetStructureID": 16073, + "Label": "909-16073 via Ribbon Synapse from 116783 -> 116784, 130018 -> 130019", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116783, + "TargetID": 116784, + "Directional": true + }, { + "SourceID": 130018, + "TargetID": 130019, + "Directional": true + }] + }, { + "ID": 7499, + "SourceStructureID": 909, + "TargetStructureID": 30567, + "Label": "909-30567 via Ribbon Synapse from 30652 -> 30647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30652, + "TargetID": 30647, + "Directional": true + }] + }, { + "ID": 7500, + "SourceStructureID": 909, + "TargetStructureID": 48573, + "Label": "909-48573 via Ribbon Synapse from 45883 -> 115927", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45883, + "TargetID": 115927, + "Directional": true + }] + }, { + "ID": 7501, + "SourceStructureID": 909, + "TargetStructureID": 54078, + "Label": "909-54078 via Ribbon Synapse from 53804 -> 67802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53804, + "TargetID": 67802, + "Directional": true + }] + }, { + "ID": 7502, + "SourceStructureID": 909, + "TargetStructureID": 55517, + "Label": "909-55517 via Ribbon Synapse from 55601 -> 55602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55601, + "TargetID": 55602, + "Directional": true + }] + }, { + "ID": 7503, + "SourceStructureID": 909, + "TargetStructureID": 58592, + "Label": "909-58592 via Ribbon Synapse from 45882 -> 58626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45882, + "TargetID": 58626, + "Directional": true + }] + }, { + "ID": 7504, + "SourceStructureID": 909, + "TargetStructureID": 58829, + "Label": "909-58829 via Ribbon Synapse from 45933 -> 131079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45933, + "TargetID": 131079, + "Directional": true + }] + }, { + "ID": 7505, + "SourceStructureID": 909, + "TargetStructureID": 59145, + "Label": "909-59145 via Ribbon Synapse from 30651 -> 59146, 128748 -> 59146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30651, + "TargetID": 59146, + "Directional": true + }, { + "SourceID": 128748, + "TargetID": 59146, + "Directional": true + }] + }, { + "ID": 7506, + "SourceStructureID": 909, + "TargetStructureID": 59147, + "Label": "909-59147 via Ribbon Synapse from 30651 -> 59150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30651, + "TargetID": 59150, + "Directional": true + }] + }, { + "ID": 7507, + "SourceStructureID": 909, + "TargetStructureID": 61450, + "Label": "909-61450 via BC Conventional Synapse from 117231 -> 61492", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117231, + "TargetID": 61492, + "Directional": true + }] + }, { + "ID": 7508, + "SourceStructureID": 909, + "TargetStructureID": 61450, + "Label": "909-61450 via Ribbon Synapse from 130261 -> 117890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130261, + "TargetID": 117890, + "Directional": true + }] + }, { + "ID": 7509, + "SourceStructureID": 909, + "TargetStructureID": 61500, + "Label": "909-61500 via Ribbon Synapse from 45924 -> 130980, 61502 -> 61501, 61505 -> 61504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45924, + "TargetID": 130980, + "Directional": true + }, { + "SourceID": 61502, + "TargetID": 61501, + "Directional": true + }, { + "SourceID": 61505, + "TargetID": 61504, + "Directional": true + }] + }, { + "ID": 7510, + "SourceStructureID": 909, + "TargetStructureID": 62578, + "Label": "909-62578 via BC Conventional Synapse from 120169 -> 120168", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120169, + "TargetID": 120168, + "Directional": true + }] + }, { + "ID": 7511, + "SourceStructureID": 909, + "TargetStructureID": 62578, + "Label": "909-62578 via Ribbon Synapse from 113675 -> 62583, 117275 -> 117281, 118407 -> 118416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113675, + "TargetID": 62583, + "Directional": true + }, { + "SourceID": 117275, + "TargetID": 117281, + "Directional": true + }, { + "SourceID": 118407, + "TargetID": 118416, + "Directional": true + }] + }, { + "ID": 7512, + "SourceStructureID": 909, + "TargetStructureID": 65134, + "Label": "909-65134 via BC Conventional Synapse from 123565 -> 123564", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123565, + "TargetID": 123564, + "Directional": true + }] + }, { + "ID": 7513, + "SourceStructureID": 909, + "TargetStructureID": 66374, + "Label": "909-66374 via Ribbon Synapse from 115966 -> 66387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115966, + "TargetID": 66387, + "Directional": true + }] + }, { + "ID": 7514, + "SourceStructureID": 909, + "TargetStructureID": 66390, + "Label": "909-66390 via Ribbon Synapse from 36058 -> 66393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36058, + "TargetID": 66393, + "Directional": true + }] + }, { + "ID": 7515, + "SourceStructureID": 909, + "TargetStructureID": 67663, + "Label": "909-67663 via Ribbon Synapse from 36061 -> 69866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36061, + "TargetID": 69866, + "Directional": true + }] + }, { + "ID": 7516, + "SourceStructureID": 909, + "TargetStructureID": 68153, + "Label": "909-68153 via Ribbon Synapse from 130077 -> 130078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130077, + "TargetID": 130078, + "Directional": true + }] + }, { + "ID": 7517, + "SourceStructureID": 909, + "TargetStructureID": 69162, + "Label": "909-69162 via Ribbon Synapse from 45918 -> 69214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45918, + "TargetID": 69214, + "Directional": true + }] + }, { + "ID": 7518, + "SourceStructureID": 909, + "TargetStructureID": 69367, + "Label": "909-69367 via Ribbon Synapse from 53740 -> 72371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53740, + "TargetID": 72371, + "Directional": true + }] + }, { + "ID": 7519, + "SourceStructureID": 909, + "TargetStructureID": 75922, + "Label": "909-75922 via Ribbon Synapse from 129969 -> 129970", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129969, + "TargetID": 129970, + "Directional": true + }] + }, { + "ID": 7520, + "SourceStructureID": 909, + "TargetStructureID": 78333, + "Label": "909-78333 via BC Conventional Synapse from 117480 -> 117481", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117480, + "TargetID": 117481, + "Directional": true + }] + }, { + "ID": 7521, + "SourceStructureID": 909, + "TargetStructureID": 78709, + "Label": "909-78709 via Ribbon Synapse from 45932 -> 131021", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45932, + "TargetID": 131021, + "Directional": true + }] + }, { + "ID": 7522, + "SourceStructureID": 909, + "TargetStructureID": 81532, + "Label": "909-81532 via Ribbon Synapse from 53772 -> 117257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53772, + "TargetID": 117257, + "Directional": true + }] + }, { + "ID": 7523, + "SourceStructureID": 909, + "TargetStructureID": 96139, + "Label": "909-96139 via Ribbon Synapse from 118471 -> 130854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118471, + "TargetID": 130854, + "Directional": true + }] + }, { + "ID": 7524, + "SourceStructureID": 909, + "TargetStructureID": 97131, + "Label": "909-97131 via Ribbon Synapse from 130116 -> 130117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130116, + "TargetID": 130117, + "Directional": true + }] + }, { + "ID": 7525, + "SourceStructureID": 909, + "TargetStructureID": 97363, + "Label": "909-97363 via Ribbon Synapse from 115939 -> 129616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115939, + "TargetID": 129616, + "Directional": true + }] + }, { + "ID": 7526, + "SourceStructureID": 909, + "TargetStructureID": 99091, + "Label": "909-99091 via Ribbon Synapse from 45882 -> 129574", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45882, + "TargetID": 129574, + "Directional": true + }] + }, { + "ID": 7527, + "SourceStructureID": 909, + "TargetStructureID": 103987, + "Label": "909-103987 via Ribbon Synapse from 130073 -> 130074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130073, + "TargetID": 130074, + "Directional": true + }] + }, { + "ID": 7528, + "SourceStructureID": 909, + "TargetStructureID": 104619, + "Label": "909-104619 via Ribbon Synapse from 53802 -> 118383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53802, + "TargetID": 118383, + "Directional": true + }] + }, { + "ID": 7529, + "SourceStructureID": 909, + "TargetStructureID": 104662, + "Label": "909-104662 via Ribbon Synapse from 130266 -> 130267", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130266, + "TargetID": 130267, + "Directional": true + }] + }, { + "ID": 7530, + "SourceStructureID": 909, + "TargetStructureID": 110295, + "Label": "909-110295 via BC Conventional Synapse from 130934 -> 130935", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130934, + "TargetID": 130935, + "Directional": true + }] + }, { + "ID": 7531, + "SourceStructureID": 909, + "TargetStructureID": 115853, + "Label": "909-115853 via Ribbon Synapse from 129472 -> 115854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129472, + "TargetID": 115854, + "Directional": true + }] + }, { + "ID": 7532, + "SourceStructureID": 909, + "TargetStructureID": 115855, + "Label": "909-115855 via BC Conventional Synapse from 130471 -> 130470", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130471, + "TargetID": 130470, + "Directional": true + }] + }, { + "ID": 7533, + "SourceStructureID": 909, + "TargetStructureID": 115855, + "Label": "909-115855 via Ribbon Synapse from 38884 -> 115859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38884, + "TargetID": 115859, + "Directional": true + }] + }, { + "ID": 7534, + "SourceStructureID": 909, + "TargetStructureID": 115860, + "Label": "909-115860 via Ribbon Synapse from 40312 -> 115862, 129472 -> 129473", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40312, + "TargetID": 115862, + "Directional": true + }, { + "SourceID": 129472, + "TargetID": 129473, + "Directional": true + }] + }, { + "ID": 7535, + "SourceStructureID": 909, + "TargetStructureID": 115878, + "Label": "909-115878 via Ribbon Synapse from 115877 -> 115879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115877, + "TargetID": 115879, + "Directional": true + }] + }, { + "ID": 7536, + "SourceStructureID": 909, + "TargetStructureID": 115880, + "Label": "909-115880 via Ribbon Synapse from 115877 -> 115881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115877, + "TargetID": 115881, + "Directional": true + }] + }, { + "ID": 7537, + "SourceStructureID": 909, + "TargetStructureID": 115884, + "Label": "909-115884 via Ribbon Synapse from 115883 -> 115885", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115883, + "TargetID": 115885, + "Directional": true + }] + }, { + "ID": 7538, + "SourceStructureID": 909, + "TargetStructureID": 115886, + "Label": "909-115886 via Ribbon Synapse from 115883 -> 115887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115883, + "TargetID": 115887, + "Directional": true + }] + }, { + "ID": 7539, + "SourceStructureID": 909, + "TargetStructureID": 115890, + "Label": "909-115890 via Ribbon Synapse from 45839 -> 115893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45839, + "TargetID": 115893, + "Directional": true + }] + }, { + "ID": 7540, + "SourceStructureID": 909, + "TargetStructureID": 115895, + "Label": "909-115895 via Ribbon Synapse from 115894 -> 115898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115894, + "TargetID": 115898, + "Directional": true + }] + }, { + "ID": 7541, + "SourceStructureID": 909, + "TargetStructureID": 115897, + "Label": "909-115897 via Ribbon Synapse from 115894 -> 115899", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115894, + "TargetID": 115899, + "Directional": true + }] + }, { + "ID": 7542, + "SourceStructureID": 909, + "TargetStructureID": 115916, + "Label": "909-115916 via Ribbon Synapse from 115913 -> 115917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115913, + "TargetID": 115917, + "Directional": true + }] + }, { + "ID": 7543, + "SourceStructureID": 909, + "TargetStructureID": 115921, + "Label": "909-115921 via Ribbon Synapse from 115920 -> 115924", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115920, + "TargetID": 115924, + "Directional": true + }] + }, { + "ID": 7544, + "SourceStructureID": 909, + "TargetStructureID": 115922, + "Label": "909-115922 via Ribbon Synapse from 115920 -> 115925", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115920, + "TargetID": 115925, + "Directional": true + }] + }, { + "ID": 7545, + "SourceStructureID": 909, + "TargetStructureID": 115923, + "Label": "909-115923 via Ribbon Synapse from 115920 -> 115926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115920, + "TargetID": 115926, + "Directional": true + }] + }, { + "ID": 7546, + "SourceStructureID": 909, + "TargetStructureID": 115928, + "Label": "909-115928 via BC Conventional Synapse from 115113 -> 115932", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115113, + "TargetID": 115932, + "Directional": true + }] + }, { + "ID": 7547, + "SourceStructureID": 909, + "TargetStructureID": 115930, + "Label": "909-115930 via BC Conventional Synapse from 115114 -> 115933", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115114, + "TargetID": 115933, + "Directional": true + }] + }, { + "ID": 7548, + "SourceStructureID": 909, + "TargetStructureID": 115944, + "Label": "909-115944 via Ribbon Synapse from 115939 -> 115945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115939, + "TargetID": 115945, + "Directional": true + }] + }, { + "ID": 7549, + "SourceStructureID": 909, + "TargetStructureID": 115967, + "Label": "909-115967 via Ribbon Synapse from 115966 -> 115968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115966, + "TargetID": 115968, + "Directional": true + }] + }, { + "ID": 7550, + "SourceStructureID": 909, + "TargetStructureID": 115969, + "Label": "909-115969 via Ribbon Synapse from 36059 -> 115970", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36059, + "TargetID": 115970, + "Directional": true + }] + }, { + "ID": 7551, + "SourceStructureID": 909, + "TargetStructureID": 115984, + "Label": "909-115984 via Ribbon Synapse from 115115 -> 115985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115115, + "TargetID": 115985, + "Directional": true + }] + }, { + "ID": 7552, + "SourceStructureID": 909, + "TargetStructureID": 115990, + "Label": "909-115990 via Ribbon Synapse from 120103 -> 120102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120103, + "TargetID": 120102, + "Directional": true + }] + }, { + "ID": 7553, + "SourceStructureID": 909, + "TargetStructureID": 116373, + "Label": "909-116373 via Ribbon Synapse from 115997 -> 116374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115997, + "TargetID": 116374, + "Directional": true + }] + }, { + "ID": 7554, + "SourceStructureID": 909, + "TargetStructureID": 116378, + "Label": "909-116378 via Ribbon Synapse from 116379 -> 116380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116379, + "TargetID": 116380, + "Directional": true + }] + }, { + "ID": 7555, + "SourceStructureID": 909, + "TargetStructureID": 116387, + "Label": "909-116387 via Ribbon Synapse from 116379 -> 129975", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116379, + "TargetID": 129975, + "Directional": true + }] + }, { + "ID": 7556, + "SourceStructureID": 909, + "TargetStructureID": 116390, + "Label": "909-116390 via Ribbon Synapse from 116366 -> 116391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116366, + "TargetID": 116391, + "Directional": true + }] + }, { + "ID": 7557, + "SourceStructureID": 909, + "TargetStructureID": 116395, + "Label": "909-116395 via Ribbon Synapse from 129987 -> 116397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129987, + "TargetID": 116397, + "Directional": true + }] + }, { + "ID": 7558, + "SourceStructureID": 909, + "TargetStructureID": 116400, + "Label": "909-116400 via Ribbon Synapse from 116780 -> 116781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116780, + "TargetID": 116781, + "Directional": true + }] + }, { + "ID": 7559, + "SourceStructureID": 909, + "TargetStructureID": 116769, + "Label": "909-116769 via Ribbon Synapse from 116780 -> 116774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116780, + "TargetID": 116774, + "Directional": true + }] + }, { + "ID": 7560, + "SourceStructureID": 909, + "TargetStructureID": 116775, + "Label": "909-116775 via Ribbon Synapse from 116402 -> 116776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116402, + "TargetID": 116776, + "Directional": true + }] + }, { + "ID": 7561, + "SourceStructureID": 909, + "TargetStructureID": 116785, + "Label": "909-116785 via Ribbon Synapse from 116783 -> 116787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116783, + "TargetID": 116787, + "Directional": true + }] + }, { + "ID": 7562, + "SourceStructureID": 909, + "TargetStructureID": 117200, + "Label": "909-117200 via Ribbon Synapse from 97715 -> 117201", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97715, + "TargetID": 117201, + "Directional": true + }] + }, { + "ID": 7563, + "SourceStructureID": 909, + "TargetStructureID": 117202, + "Label": "909-117202 via Ribbon Synapse from 97715 -> 117203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97715, + "TargetID": 117203, + "Directional": true + }] + }, { + "ID": 7564, + "SourceStructureID": 909, + "TargetStructureID": 117208, + "Label": "909-117208 via BC Conventional Synapse from 117212 -> 117213", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117212, + "TargetID": 117213, + "Directional": true + }] + }, { + "ID": 7565, + "SourceStructureID": 909, + "TargetStructureID": 117214, + "Label": "909-117214 via Ribbon Synapse from 113684 -> 117217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113684, + "TargetID": 117217, + "Directional": true + }] + }, { + "ID": 7566, + "SourceStructureID": 909, + "TargetStructureID": 117218, + "Label": "909-117218 via Ribbon Synapse from 113684 -> 131067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113684, + "TargetID": 131067, + "Directional": true + }] + }, { + "ID": 7567, + "SourceStructureID": 909, + "TargetStructureID": 117233, + "Label": "909-117233 via Ribbon Synapse from 87043 -> 117234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87043, + "TargetID": 117234, + "Directional": true + }] + }, { + "ID": 7568, + "SourceStructureID": 909, + "TargetStructureID": 117263, + "Label": "909-117263 via Ribbon Synapse from 53805 -> 117264", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53805, + "TargetID": 117264, + "Directional": true + }] + }, { + "ID": 7569, + "SourceStructureID": 909, + "TargetStructureID": 117269, + "Label": "909-117269 via BC Conventional Synapse from 117267 -> 117270", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117267, + "TargetID": 117270, + "Directional": true + }] + }, { + "ID": 7570, + "SourceStructureID": 909, + "TargetStructureID": 117272, + "Label": "909-117272 via BC Conventional Synapse from 130135 -> 130136", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130135, + "TargetID": 130136, + "Directional": true + }] + }, { + "ID": 7571, + "SourceStructureID": 909, + "TargetStructureID": 117285, + "Label": "909-117285 via Ribbon Synapse from 117279 -> 117434", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117279, + "TargetID": 117434, + "Directional": true + }] + }, { + "ID": 7572, + "SourceStructureID": 909, + "TargetStructureID": 117388, + "Label": "909-117388 via Ribbon Synapse from 53736 -> 117389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53736, + "TargetID": 117389, + "Directional": true + }] + }, { + "ID": 7573, + "SourceStructureID": 909, + "TargetStructureID": 117390, + "Label": "909-117390 via Ribbon Synapse from 53736 -> 117391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53736, + "TargetID": 117391, + "Directional": true + }] + }, { + "ID": 7574, + "SourceStructureID": 909, + "TargetStructureID": 117394, + "Label": "909-117394 via Ribbon Synapse from 117393 -> 117395", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117393, + "TargetID": 117395, + "Directional": true + }] + }, { + "ID": 7575, + "SourceStructureID": 909, + "TargetStructureID": 117406, + "Label": "909-117406 via Ribbon Synapse from 53731 -> 117418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53731, + "TargetID": 117418, + "Directional": true + }] + }, { + "ID": 7576, + "SourceStructureID": 909, + "TargetStructureID": 117411, + "Label": "909-117411 via Ribbon Synapse from 53731 -> 117419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53731, + "TargetID": 117419, + "Directional": true + }] + }, { + "ID": 7577, + "SourceStructureID": 909, + "TargetStructureID": 117431, + "Label": "909-117431 via Ribbon Synapse from 117425 -> 120164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117425, + "TargetID": 120164, + "Directional": true + }] + }, { + "ID": 7578, + "SourceStructureID": 909, + "TargetStructureID": 117433, + "Label": "909-117433 via Ribbon Synapse from 117275 -> 117435", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117275, + "TargetID": 117435, + "Directional": true + }] + }, { + "ID": 7579, + "SourceStructureID": 909, + "TargetStructureID": 117450, + "Label": "909-117450 via BC Conventional Synapse from 130075 -> 130076", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130075, + "TargetID": 130076, + "Directional": true + }] + }, { + "ID": 7580, + "SourceStructureID": 909, + "TargetStructureID": 117461, + "Label": "909-117461 via Ribbon Synapse from 117460 -> 117462", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117460, + "TargetID": 117462, + "Directional": true + }] + }, { + "ID": 7581, + "SourceStructureID": 909, + "TargetStructureID": 117465, + "Label": "909-117465 via Ribbon Synapse from 117479 -> 130089", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117479, + "TargetID": 130089, + "Directional": true + }] + }, { + "ID": 7582, + "SourceStructureID": 909, + "TargetStructureID": 117470, + "Label": "909-117470 via Ribbon Synapse from 53746 -> 117473", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53746, + "TargetID": 117473, + "Directional": true + }] + }, { + "ID": 7583, + "SourceStructureID": 909, + "TargetStructureID": 117637, + "Label": "909-117637 via BC Conventional Synapse from 117636 -> 117638", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117636, + "TargetID": 117638, + "Directional": true + }] + }, { + "ID": 7584, + "SourceStructureID": 909, + "TargetStructureID": 117639, + "Label": "909-117639 via Ribbon Synapse from 130080 -> 130081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130080, + "TargetID": 130081, + "Directional": true + }] + }, { + "ID": 7585, + "SourceStructureID": 909, + "TargetStructureID": 117643, + "Label": "909-117643 via Ribbon Synapse from 117642 -> 117644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117642, + "TargetID": 117644, + "Directional": true + }] + }, { + "ID": 7586, + "SourceStructureID": 909, + "TargetStructureID": 117645, + "Label": "909-117645 via Ribbon Synapse from 117642 -> 117646", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117642, + "TargetID": 117646, + "Directional": true + }] + }, { + "ID": 7587, + "SourceStructureID": 909, + "TargetStructureID": 117650, + "Label": "909-117650 via Ribbon Synapse from 130118 -> 117651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130118, + "TargetID": 117651, + "Directional": true + }] + }, { + "ID": 7588, + "SourceStructureID": 909, + "TargetStructureID": 117668, + "Label": "909-117668 via BC Conventional Synapse from 117667 -> 117669", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117667, + "TargetID": 117669, + "Directional": true + }] + }, { + "ID": 7589, + "SourceStructureID": 909, + "TargetStructureID": 117670, + "Label": "909-117670 via BC Conventional Synapse from 117459 -> 117671, 120170 -> 120171", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117459, + "TargetID": 117671, + "Directional": true + }, { + "SourceID": 120170, + "TargetID": 120171, + "Directional": true + }] + }, { + "ID": 7590, + "SourceStructureID": 909, + "TargetStructureID": 117672, + "Label": "909-117672 via BC Conventional Synapse from 117676 -> 117677", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117676, + "TargetID": 117677, + "Directional": true + }] + }, { + "ID": 7591, + "SourceStructureID": 909, + "TargetStructureID": 117678, + "Label": "909-117678 via Ribbon Synapse from 130133 -> 130131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130133, + "TargetID": 130131, + "Directional": true + }] + }, { + "ID": 7592, + "SourceStructureID": 909, + "TargetStructureID": 117683, + "Label": "909-117683 via Ribbon Synapse from 130133 -> 130132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130133, + "TargetID": 130132, + "Directional": true + }] + }, { + "ID": 7593, + "SourceStructureID": 909, + "TargetStructureID": 117689, + "Label": "909-117689 via Ribbon Synapse from 117693 -> 120174", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117693, + "TargetID": 120174, + "Directional": true + }] + }, { + "ID": 7594, + "SourceStructureID": 909, + "TargetStructureID": 117780, + "Label": "909-117780 via Ribbon Synapse from 117696 -> 117781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117696, + "TargetID": 117781, + "Directional": true + }] + }, { + "ID": 7595, + "SourceStructureID": 909, + "TargetStructureID": 117811, + "Label": "909-117811 via Ribbon Synapse from 117809 -> 117812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117809, + "TargetID": 117812, + "Directional": true + }] + }, { + "ID": 7596, + "SourceStructureID": 909, + "TargetStructureID": 117835, + "Label": "909-117835 via BC Conventional Synapse from 117834 -> 117836", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117834, + "TargetID": 117836, + "Directional": true + }] + }, { + "ID": 7597, + "SourceStructureID": 909, + "TargetStructureID": 117843, + "Label": "909-117843 via Ribbon Synapse from 53788 -> 117848, 117844 -> 130277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53788, + "TargetID": 117848, + "Directional": true + }, { + "SourceID": 117844, + "TargetID": 130277, + "Directional": true + }] + }, { + "ID": 7598, + "SourceStructureID": 909, + "TargetStructureID": 117854, + "Label": "909-117854 via Ribbon Synapse from 117844 -> 117855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117844, + "TargetID": 117855, + "Directional": true + }] + }, { + "ID": 7599, + "SourceStructureID": 909, + "TargetStructureID": 117860, + "Label": "909-117860 via Ribbon Synapse from 117849 -> 130276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117849, + "TargetID": 130276, + "Directional": true + }] + }, { + "ID": 7600, + "SourceStructureID": 909, + "TargetStructureID": 117868, + "Label": "909-117868 via Ribbon Synapse from 117867 -> 117869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117867, + "TargetID": 117869, + "Directional": true + }] + }, { + "ID": 7601, + "SourceStructureID": 909, + "TargetStructureID": 117873, + "Label": "909-117873 via Ribbon Synapse from 130275 -> 117875", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130275, + "TargetID": 117875, + "Directional": true + }] + }, { + "ID": 7602, + "SourceStructureID": 909, + "TargetStructureID": 117876, + "Label": "909-117876 via Ribbon Synapse from 130273 -> 130274", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130273, + "TargetID": 130274, + "Directional": true + }] + }, { + "ID": 7603, + "SourceStructureID": 909, + "TargetStructureID": 117881, + "Label": "909-117881 via Ribbon Synapse from 117880 -> 117882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117880, + "TargetID": 117882, + "Directional": true + }] + }, { + "ID": 7604, + "SourceStructureID": 909, + "TargetStructureID": 117883, + "Label": "909-117883 via BC Conventional Synapse from 130269 -> 130268", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130269, + "TargetID": 130268, + "Directional": true + }] + }, { + "ID": 7605, + "SourceStructureID": 909, + "TargetStructureID": 117897, + "Label": "909-117897 via Ribbon Synapse from 117824 -> 117910, 130261 -> 130262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117824, + "TargetID": 117910, + "Directional": true + }, { + "SourceID": 130261, + "TargetID": 130262, + "Directional": true + }] + }, { + "ID": 7606, + "SourceStructureID": 909, + "TargetStructureID": 117906, + "Label": "909-117906 via Ribbon Synapse from 117911 -> 117912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117911, + "TargetID": 117912, + "Directional": true + }] + }, { + "ID": 7607, + "SourceStructureID": 909, + "TargetStructureID": 117916, + "Label": "909-117916 via Ribbon Synapse from 117915 -> 117917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117915, + "TargetID": 117917, + "Directional": true + }] + }, { + "ID": 7608, + "SourceStructureID": 909, + "TargetStructureID": 118380, + "Label": "909-118380 via Ribbon Synapse from 53800 -> 118381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53800, + "TargetID": 118381, + "Directional": true + }] + }, { + "ID": 7609, + "SourceStructureID": 909, + "TargetStructureID": 118388, + "Label": "909-118388 via BC Conventional Synapse from 118390 -> 118389", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118390, + "TargetID": 118389, + "Directional": true + }] + }, { + "ID": 7610, + "SourceStructureID": 909, + "TargetStructureID": 118391, + "Label": "909-118391 via Ribbon Synapse from 53802 -> 118392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53802, + "TargetID": 118392, + "Directional": true + }] + }, { + "ID": 7611, + "SourceStructureID": 909, + "TargetStructureID": 118398, + "Label": "909-118398 via Ribbon Synapse from 118396 -> 118399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118396, + "TargetID": 118399, + "Directional": true + }] + }, { + "ID": 7612, + "SourceStructureID": 909, + "TargetStructureID": 118402, + "Label": "909-118402 via Ribbon Synapse from 53804 -> 118403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53804, + "TargetID": 118403, + "Directional": true + }] + }, { + "ID": 7613, + "SourceStructureID": 909, + "TargetStructureID": 118410, + "Label": "909-118410 via Ribbon Synapse from 117792 -> 118411, 118409 -> 130306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117792, + "TargetID": 118411, + "Directional": true + }, { + "SourceID": 118409, + "TargetID": 130306, + "Directional": true + }] + }, { + "ID": 7614, + "SourceStructureID": 909, + "TargetStructureID": 118412, + "Label": "909-118412 via Ribbon Synapse from 118409 -> 118413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118409, + "TargetID": 118413, + "Directional": true + }] + }, { + "ID": 7615, + "SourceStructureID": 909, + "TargetStructureID": 118417, + "Label": "909-118417 via Ribbon Synapse from 117792 -> 118418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117792, + "TargetID": 118418, + "Directional": true + }] + }, { + "ID": 7616, + "SourceStructureID": 909, + "TargetStructureID": 118446, + "Label": "909-118446 via Ribbon Synapse from 45167 -> 118447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45167, + "TargetID": 118447, + "Directional": true + }] + }, { + "ID": 7617, + "SourceStructureID": 909, + "TargetStructureID": 118453, + "Label": "909-118453 via Ribbon Synapse from 45890 -> 118454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45890, + "TargetID": 118454, + "Directional": true + }] + }, { + "ID": 7618, + "SourceStructureID": 909, + "TargetStructureID": 118588, + "Label": "909-118588 via Ribbon Synapse from 118582 -> 118589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118582, + "TargetID": 118589, + "Directional": true + }] + }, { + "ID": 7619, + "SourceStructureID": 909, + "TargetStructureID": 118590, + "Label": "909-118590 via Ribbon Synapse from 118582 -> 118591", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118582, + "TargetID": 118591, + "Directional": true + }] + }, { + "ID": 7620, + "SourceStructureID": 909, + "TargetStructureID": 120197, + "Label": "909-120197 via Ribbon Synapse from 117692 -> 130241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117692, + "TargetID": 130241, + "Directional": true + }] + }, { + "ID": 7621, + "SourceStructureID": 909, + "TargetStructureID": 130012, + "Label": "909-130012 via Ribbon Synapse from 36061 -> 130015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36061, + "TargetID": 130015, + "Directional": true + }] + }, { + "ID": 7622, + "SourceStructureID": 911, + "TargetStructureID": 492, + "Label": "911-492 via Conventional from 924 -> 35036, 26675 -> 34991", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 924, + "TargetID": 35036, + "Directional": true + }, { + "SourceID": 26675, + "TargetID": 34991, + "Directional": true + }] + }, { + "ID": 7623, + "SourceStructureID": 968, + "TargetStructureID": 3865, + "Label": "968-3865 via Ribbon Synapse from 132112 -> 132104, 132114 -> 132113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132112, + "TargetID": 132104, + "Directional": true + }, { + "SourceID": 132114, + "TargetID": 132113, + "Directional": true + }] + }, { + "ID": 7624, + "SourceStructureID": 968, + "TargetStructureID": 4568, + "Label": "968-4568 via Ribbon Synapse from 12194 -> 11515, 12195 -> 11516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12194, + "TargetID": 11515, + "Directional": true + }, { + "SourceID": 12195, + "TargetID": 11516, + "Directional": true + }] + }, { + "ID": 7625, + "SourceStructureID": 968, + "TargetStructureID": 4835, + "Label": "968-4835 via Ribbon Synapse from 12312 -> 12313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12312, + "TargetID": 12313, + "Directional": true + }] + }, { + "ID": 7626, + "SourceStructureID": 968, + "TargetStructureID": 5486, + "Label": "968-5486 via Ribbon Synapse from 129873 -> 41085", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129873, + "TargetID": 41085, + "Directional": true + }] + }, { + "ID": 7627, + "SourceStructureID": 968, + "TargetStructureID": 7568, + "Label": "968-7568 via Ribbon Synapse from 27102 -> 27096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27102, + "TargetID": 27096, + "Directional": true + }] + }, { + "ID": 7628, + "SourceStructureID": 968, + "TargetStructureID": 8575, + "Label": "968-8575 via Ribbon Synapse from 12161 -> 62254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12161, + "TargetID": 62254, + "Directional": true + }] + }, { + "ID": 7629, + "SourceStructureID": 968, + "TargetStructureID": 129648, + "Label": "968-129648 via Ribbon Synapse from 12158 -> 129656", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12158, + "TargetID": 129656, + "Directional": true + }] + }, { + "ID": 7630, + "SourceStructureID": 968, + "TargetStructureID": 133744, + "Label": "968-133744 via Ribbon Synapse from 12189 -> 133745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12189, + "TargetID": 133745, + "Directional": true + }] + }, { + "ID": 7631, + "SourceStructureID": 989, + "TargetStructureID": 3257, + "Label": "989-3257 via Ribbon Synapse from 13069 -> 129881, 13092 -> 129882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13069, + "TargetID": 129881, + "Directional": true + }, { + "SourceID": 13092, + "TargetID": 129882, + "Directional": true + }] + }, { + "ID": 7632, + "SourceStructureID": 989, + "TargetStructureID": 20681, + "Label": "989-20681 via Ribbon Synapse from 13095 -> 65807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13095, + "TargetID": 65807, + "Directional": true + }] + }, { + "ID": 7633, + "SourceStructureID": 992, + "TargetStructureID": 3679, + "Label": "992-3679 via Ribbon Synapse from 23295 -> 23294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23295, + "TargetID": 23294, + "Directional": true + }] + }, { + "ID": 7634, + "SourceStructureID": 992, + "TargetStructureID": 29340, + "Label": "992-29340 via Ribbon Synapse from 29431 -> 29430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29431, + "TargetID": 29430, + "Directional": true + }] + }, { + "ID": 7635, + "SourceStructureID": 992, + "TargetStructureID": 46498, + "Label": "992-46498 via Ribbon Synapse from 127921 -> 127920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127921, + "TargetID": 127920, + "Directional": true + }] + }, { + "ID": 7636, + "SourceStructureID": 992, + "TargetStructureID": 60386, + "Label": "992-60386 via Ribbon Synapse from 60423 -> 60422", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60423, + "TargetID": 60422, + "Directional": true + }] + }, { + "ID": 7637, + "SourceStructureID": 999, + "TargetStructureID": 5405, + "Label": "999-5405 via Ribbon Synapse from 23412 -> 23409, 23413 -> 23408, 23416 -> 11054", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23412, + "TargetID": 23409, + "Directional": true + }, { + "SourceID": 23413, + "TargetID": 23408, + "Directional": true + }, { + "SourceID": 23416, + "TargetID": 11054, + "Directional": true + }] + }, { + "ID": 7638, + "SourceStructureID": 999, + "TargetStructureID": 5497, + "Label": "999-5497 via Ribbon Synapse from 23411 -> 62525, 62527 -> 62526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23411, + "TargetID": 62525, + "Directional": true + }, { + "SourceID": 62527, + "TargetID": 62526, + "Directional": true + }] + }, { + "ID": 7639, + "SourceStructureID": 1021, + "TargetStructureID": 598, + "Label": "1021-598 via Ribbon Synapse from 19754 -> 6325, 125623 -> 125628, 125654 -> 125653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19754, + "TargetID": 6325, + "Directional": true + }, { + "SourceID": 125623, + "TargetID": 125628, + "Directional": true + }, { + "SourceID": 125654, + "TargetID": 125653, + "Directional": true + }] + }, { + "ID": 7640, + "SourceStructureID": 1021, + "TargetStructureID": 606, + "Label": "1021-606 via Ribbon Synapse from 51471 -> 51468, 51475 -> 51476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51471, + "TargetID": 51468, + "Directional": true + }, { + "SourceID": 51475, + "TargetID": 51476, + "Directional": true + }] + }, { + "ID": 7641, + "SourceStructureID": 1021, + "TargetStructureID": 5377, + "Label": "1021-5377 via Ribbon Synapse from 58796 -> 87128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58796, + "TargetID": 87128, + "Directional": true + }] + }, { + "ID": 7642, + "SourceStructureID": 1021, + "TargetStructureID": 6121, + "Label": "1021-6121 via Ribbon Synapse from 125308 -> 125309", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125308, + "TargetID": 125309, + "Directional": true + }] + }, { + "ID": 7643, + "SourceStructureID": 1021, + "TargetStructureID": 7134, + "Label": "1021-7134 via Ribbon Synapse from 19766 -> 53487, 61087 -> 125711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19766, + "TargetID": 53487, + "Directional": true + }, { + "SourceID": 61087, + "TargetID": 125711, + "Directional": true + }] + }, { + "ID": 7644, + "SourceStructureID": 1021, + "TargetStructureID": 7594, + "Label": "1021-7594 via Ribbon Synapse from 19748 -> 25086, 19750 -> 125132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19748, + "TargetID": 25086, + "Directional": true + }, { + "SourceID": 19750, + "TargetID": 125132, + "Directional": true + }] + }, { + "ID": 7645, + "SourceStructureID": 1021, + "TargetStructureID": 9769, + "Label": "1021-9769 via Ribbon Synapse from 26483 -> 52609, 28348 -> 125260, 28349 -> 30150, 30187 -> 30163, 51475 -> 125332, 115343 -> 30140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26483, + "TargetID": 52609, + "Directional": true + }, { + "SourceID": 28348, + "TargetID": 125260, + "Directional": true + }, { + "SourceID": 28349, + "TargetID": 30150, + "Directional": true + }, { + "SourceID": 30187, + "TargetID": 30163, + "Directional": true + }, { + "SourceID": 51475, + "TargetID": 125332, + "Directional": true + }, { + "SourceID": 115343, + "TargetID": 30140, + "Directional": true + }] + }, { + "ID": 7646, + "SourceStructureID": 1021, + "TargetStructureID": 16073, + "Label": "1021-16073 via Ribbon Synapse from 125148 -> 19838, 125520 -> 125521, 125527 -> 125528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125148, + "TargetID": 19838, + "Directional": true + }, { + "SourceID": 125520, + "TargetID": 125521, + "Directional": true + }, { + "SourceID": 125527, + "TargetID": 125528, + "Directional": true + }] + }, { + "ID": 7647, + "SourceStructureID": 1021, + "TargetStructureID": 22974, + "Label": "1021-22974 via Ribbon Synapse from 51533 -> 125333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51533, + "TargetID": 125333, + "Directional": true + }] + }, { + "ID": 7648, + "SourceStructureID": 1021, + "TargetStructureID": 53436, + "Label": "1021-53436 via Ribbon Synapse from 55833 -> 55834, 115343 -> 125327, 115349 -> 120569, 120568 -> 53437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55833, + "TargetID": 55834, + "Directional": true + }, { + "SourceID": 115343, + "TargetID": 125327, + "Directional": true + }, { + "SourceID": 115349, + "TargetID": 120569, + "Directional": true + }, { + "SourceID": 120568, + "TargetID": 53437, + "Directional": true + }] + }, { + "ID": 7649, + "SourceStructureID": 1021, + "TargetStructureID": 53991, + "Label": "1021-53991 via Ribbon Synapse from 28349 -> 53994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28349, + "TargetID": 53994, + "Directional": true + }] + }, { + "ID": 7650, + "SourceStructureID": 1021, + "TargetStructureID": 57064, + "Label": "1021-57064 via Unknown from 124965 -> 124964", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 124965, + "TargetID": 124964, + "Directional": true + }] + }, { + "ID": 7651, + "SourceStructureID": 1021, + "TargetStructureID": 64923, + "Label": "1021-64923 via Ribbon Synapse from 103025 -> 126718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103025, + "TargetID": 126718, + "Directional": true + }] + }, { + "ID": 7652, + "SourceStructureID": 1021, + "TargetStructureID": 68539, + "Label": "1021-68539 via Ribbon Synapse from 19787 -> 72853, 125343 -> 125342, 125417 -> 125418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19787, + "TargetID": 72853, + "Directional": true + }, { + "SourceID": 125343, + "TargetID": 125342, + "Directional": true + }, { + "SourceID": 125417, + "TargetID": 125418, + "Directional": true + }] + }, { + "ID": 7653, + "SourceStructureID": 1021, + "TargetStructureID": 69162, + "Label": "1021-69162 via Ribbon Synapse from 103018 -> 125761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103018, + "TargetID": 125761, + "Directional": true + }] + }, { + "ID": 7654, + "SourceStructureID": 1021, + "TargetStructureID": 87419, + "Label": "1021-87419 via Ribbon Synapse from 58795 -> 125696", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58795, + "TargetID": 125696, + "Directional": true + }] + }, { + "ID": 7655, + "SourceStructureID": 1021, + "TargetStructureID": 89124, + "Label": "1021-89124 via Ribbon Synapse from 28323 -> 89334", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28323, + "TargetID": 89334, + "Directional": true + }] + }, { + "ID": 7656, + "SourceStructureID": 1021, + "TargetStructureID": 89124, + "Label": "1021-89124 via Unknown from 125535 -> 125533", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 125535, + "TargetID": 125533, + "Directional": true + }] + }, { + "ID": 7657, + "SourceStructureID": 1021, + "TargetStructureID": 89350, + "Label": "1021-89350 via Unknown from 125535 -> 125534", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 125535, + "TargetID": 125534, + "Directional": true + }] + }, { + "ID": 7658, + "SourceStructureID": 1021, + "TargetStructureID": 103001, + "Label": "1021-103001 via Ribbon Synapse from 28362 -> 125310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28362, + "TargetID": 125310, + "Directional": true + }] + }, { + "ID": 7659, + "SourceStructureID": 1021, + "TargetStructureID": 103008, + "Label": "1021-103008 via Ribbon Synapse from 125291 -> 125292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125291, + "TargetID": 125292, + "Directional": true + }] + }, { + "ID": 7660, + "SourceStructureID": 1021, + "TargetStructureID": 105090, + "Label": "1021-105090 via Ribbon Synapse from 19779 -> 125074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19779, + "TargetID": 125074, + "Directional": true + }] + }, { + "ID": 7661, + "SourceStructureID": 1021, + "TargetStructureID": 105553, + "Label": "1021-105553 via Ribbon Synapse from 19748 -> 125131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19748, + "TargetID": 125131, + "Directional": true + }] + }, { + "ID": 7662, + "SourceStructureID": 1021, + "TargetStructureID": 111342, + "Label": "1021-111342 via Ribbon Synapse from 28316 -> 125492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28316, + "TargetID": 125492, + "Directional": true + }] + }, { + "ID": 7663, + "SourceStructureID": 1021, + "TargetStructureID": 111351, + "Label": "1021-111351 via Unknown from 125496 -> 125495", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 125496, + "TargetID": 125495, + "Directional": true + }] + }, { + "ID": 7664, + "SourceStructureID": 1021, + "TargetStructureID": 111394, + "Label": "1021-111394 via Ribbon Synapse from 61092 -> 125661", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61092, + "TargetID": 125661, + "Directional": true + }] + }, { + "ID": 7665, + "SourceStructureID": 1021, + "TargetStructureID": 112077, + "Label": "1021-112077 via Ribbon Synapse from 19746 -> 112078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19746, + "TargetID": 112078, + "Directional": true + }] + }, { + "ID": 7666, + "SourceStructureID": 1021, + "TargetStructureID": 112342, + "Label": "1021-112342 via Ribbon Synapse from 1626 -> 125122", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1626, + "TargetID": 125122, + "Directional": true + }] + }, { + "ID": 7667, + "SourceStructureID": 1021, + "TargetStructureID": 112362, + "Label": "1021-112362 via Ribbon Synapse from 19772 -> 124990, 19773 -> 124990", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19772, + "TargetID": 124990, + "Directional": true + }, { + "SourceID": 19773, + "TargetID": 124990, + "Directional": true + }] + }, { + "ID": 7668, + "SourceStructureID": 1021, + "TargetStructureID": 113689, + "Label": "1021-113689 via Unknown from 125526 -> 125525", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 125526, + "TargetID": 125525, + "Directional": true + }] + }, { + "ID": 7669, + "SourceStructureID": 1021, + "TargetStructureID": 126711, + "Label": "1021-126711 via Ribbon Synapse from 125343 -> 126714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125343, + "TargetID": 126714, + "Directional": true + }] + }, { + "ID": 7670, + "SourceStructureID": 1021, + "TargetStructureID": 126711, + "Label": "1021-126711 via Unknown from 126713 -> 126712", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 126713, + "TargetID": 126712, + "Directional": true + }] + }, { + "ID": 7671, + "SourceStructureID": 1021, + "TargetStructureID": 126886, + "Label": "1021-126886 via Ribbon Synapse from 19754 -> 126887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19754, + "TargetID": 126887, + "Directional": true + }] + }, { + "ID": 7672, + "SourceStructureID": 1021, + "TargetStructureID": 128800, + "Label": "1021-128800 via Ribbon Synapse from 19781 -> 128802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19781, + "TargetID": 128802, + "Directional": true + }] + }, { + "ID": 7673, + "SourceStructureID": 1021, + "TargetStructureID": 128803, + "Label": "1021-128803 via Ribbon Synapse from 19781 -> 128807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19781, + "TargetID": 128807, + "Directional": true + }] + }, { + "ID": 7674, + "SourceStructureID": 1610, + "TargetStructureID": 514, + "Label": "1610-514 via Conventional from 23281 -> 23279", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23281, + "TargetID": 23279, + "Directional": true + }] + }, { + "ID": 7675, + "SourceStructureID": 1620, + "TargetStructureID": 166, + "Label": "1620-166 via Conventional from 16860 -> 4369", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16860, + "TargetID": 4369, + "Directional": true + }] + }, { + "ID": 7676, + "SourceStructureID": 1620, + "TargetStructureID": 461, + "Label": "1620-461 via Conventional from 16892 -> 14834, 20622 -> 20621", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16892, + "TargetID": 14834, + "Directional": true + }, { + "SourceID": 20622, + "TargetID": 20621, + "Directional": true + }] + }, { + "ID": 7677, + "SourceStructureID": 1620, + "TargetStructureID": 483, + "Label": "1620-483 via Conventional from 103742 -> 103741", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103742, + "TargetID": 103741, + "Directional": true + }] + }, { + "ID": 7678, + "SourceStructureID": 1620, + "TargetStructureID": 6997, + "Label": "1620-6997 via Conventional from 16842 -> 21933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16842, + "TargetID": 21933, + "Directional": true + }] + }, { + "ID": 7679, + "SourceStructureID": 1620, + "TargetStructureID": 20614, + "Label": "1620-20614 via Conventional from 16996 -> 20615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16996, + "TargetID": 20615, + "Directional": true + }] + }, { + "ID": 7680, + "SourceStructureID": 1620, + "TargetStructureID": 20728, + "Label": "1620-20728 via Conventional from 16905 -> 33074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16905, + "TargetID": 33074, + "Directional": true + }] + }, { + "ID": 7681, + "SourceStructureID": 1620, + "TargetStructureID": 29198, + "Label": "1620-29198 via Conventional from 16864 -> 29222", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16864, + "TargetID": 29222, + "Directional": true + }] + }, { + "ID": 7682, + "SourceStructureID": 1620, + "TargetStructureID": 45894, + "Label": "1620-45894 via Conventional from 16908 -> 46930", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16908, + "TargetID": 46930, + "Directional": true + }] + }, { + "ID": 7683, + "SourceStructureID": 1620, + "TargetStructureID": 91730, + "Label": "1620-91730 via Conventional from 16852 -> 91732", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16852, + "TargetID": 91732, + "Directional": true + }] + }, { + "ID": 7684, + "SourceStructureID": 1637, + "TargetStructureID": 179, + "Label": "1637-179 via Ribbon Synapse from 23704 -> 30409", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23704, + "TargetID": 30409, + "Directional": true + }] + }, { + "ID": 7685, + "SourceStructureID": 1637, + "TargetStructureID": 8575, + "Label": "1637-8575 via BC Conventional Synapse from 62088 -> 62087, 62855 -> 62854", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62088, + "TargetID": 62087, + "Directional": true + }, { + "SourceID": 62855, + "TargetID": 62854, + "Directional": true + }] + }, { + "ID": 7686, + "SourceStructureID": 1637, + "TargetStructureID": 8575, + "Label": "1637-8575 via Ribbon Synapse from 1689 -> 62073, 30198 -> 62091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1689, + "TargetID": 62073, + "Directional": true + }, { + "SourceID": 30198, + "TargetID": 62091, + "Directional": true + }] + }, { + "ID": 7687, + "SourceStructureID": 1637, + "TargetStructureID": 8577, + "Label": "1637-8577 via BC Conventional Synapse from 30406 -> 30407", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30406, + "TargetID": 30407, + "Directional": true + }] + }, { + "ID": 7688, + "SourceStructureID": 1637, + "TargetStructureID": 9347, + "Label": "1637-9347 via Ribbon Synapse from 30242 -> 30243", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30242, + "TargetID": 30243, + "Directional": true + }] + }, { + "ID": 7689, + "SourceStructureID": 1637, + "TargetStructureID": 13154, + "Label": "1637-13154 via Ribbon Synapse from 1639 -> 23698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1639, + "TargetID": 23698, + "Directional": true + }] + }, { + "ID": 7690, + "SourceStructureID": 1637, + "TargetStructureID": 22974, + "Label": "1637-22974 via Ribbon Synapse from 23710 -> 23713, 30366 -> 30368", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23710, + "TargetID": 23713, + "Directional": true + }, { + "SourceID": 30366, + "TargetID": 30368, + "Directional": true + }] + }, { + "ID": 7691, + "SourceStructureID": 1637, + "TargetStructureID": 32227, + "Label": "1637-32227 via Ribbon Synapse from 23723 -> 32229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23723, + "TargetID": 32229, + "Directional": true + }] + }, { + "ID": 7692, + "SourceStructureID": 1637, + "TargetStructureID": 39957, + "Label": "1637-39957 via Ribbon Synapse from 28277 -> 58450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28277, + "TargetID": 58450, + "Directional": true + }] + }, { + "ID": 7693, + "SourceStructureID": 1637, + "TargetStructureID": 61793, + "Label": "1637-61793 via Ribbon Synapse from 28270 -> 61795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28270, + "TargetID": 61795, + "Directional": true + }] + }, { + "ID": 7694, + "SourceStructureID": 1637, + "TargetStructureID": 61933, + "Label": "1637-61933 via Ribbon Synapse from 1707 -> 68649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1707, + "TargetID": 68649, + "Directional": true + }] + }, { + "ID": 7695, + "SourceStructureID": 1637, + "TargetStructureID": 67920, + "Label": "1637-67920 via Ribbon Synapse from 49631 -> 67958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49631, + "TargetID": 67958, + "Directional": true + }] + }, { + "ID": 7696, + "SourceStructureID": 1637, + "TargetStructureID": 67959, + "Label": "1637-67959 via Ribbon Synapse from 49631 -> 67960", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49631, + "TargetID": 67960, + "Directional": true + }] + }, { + "ID": 7697, + "SourceStructureID": 1637, + "TargetStructureID": 68277, + "Label": "1637-68277 via BC Conventional Synapse from 68281 -> 68280", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68281, + "TargetID": 68280, + "Directional": true + }] + }, { + "ID": 7698, + "SourceStructureID": 1637, + "TargetStructureID": 98762, + "Label": "1637-98762 via Ribbon Synapse from 23709 -> 98768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23709, + "TargetID": 98768, + "Directional": true + }] + }, { + "ID": 7699, + "SourceStructureID": 1724, + "TargetStructureID": 5107, + "Label": "1724-5107 via Ribbon Synapse from 3970 -> 119510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3970, + "TargetID": 119510, + "Directional": true + }] + }, { + "ID": 7700, + "SourceStructureID": 1724, + "TargetStructureID": 5579, + "Label": "1724-5579 via BC Conventional Synapse from 119148 -> 119149", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119148, + "TargetID": 119149, + "Directional": true + }] + }, { + "ID": 7701, + "SourceStructureID": 1724, + "TargetStructureID": 7594, + "Label": "1724-7594 via Ribbon Synapse from 23721 -> 101854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23721, + "TargetID": 101854, + "Directional": true + }] + }, { + "ID": 7702, + "SourceStructureID": 1724, + "TargetStructureID": 15796, + "Label": "1724-15796 via Ribbon Synapse from 4092 -> 101770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4092, + "TargetID": 101770, + "Directional": true + }] + }, { + "ID": 7703, + "SourceStructureID": 1724, + "TargetStructureID": 23512, + "Label": "1724-23512 via Ribbon Synapse from 1738 -> 23544, 4092 -> 101769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1738, + "TargetID": 23544, + "Directional": true + }, { + "SourceID": 4092, + "TargetID": 101769, + "Directional": true + }] + }, { + "ID": 7704, + "SourceStructureID": 1724, + "TargetStructureID": 32227, + "Label": "1724-32227 via Ribbon Synapse from 3984 -> 32233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3984, + "TargetID": 32233, + "Directional": true + }] + }, { + "ID": 7705, + "SourceStructureID": 1724, + "TargetStructureID": 35894, + "Label": "1724-35894 via Ribbon Synapse from 3951 -> 35917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3951, + "TargetID": 35917, + "Directional": true + }] + }, { + "ID": 7706, + "SourceStructureID": 1724, + "TargetStructureID": 41003, + "Label": "1724-41003 via Ribbon Synapse from 4094 -> 41008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4094, + "TargetID": 41008, + "Directional": true + }] + }, { + "ID": 7707, + "SourceStructureID": 1724, + "TargetStructureID": 43314, + "Label": "1724-43314 via Ribbon Synapse from 43315 -> 43316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43315, + "TargetID": 43316, + "Directional": true + }] + }, { + "ID": 7708, + "SourceStructureID": 1724, + "TargetStructureID": 47104, + "Label": "1724-47104 via Ribbon Synapse from 3995 -> 47132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3995, + "TargetID": 47132, + "Directional": true + }] + }, { + "ID": 7709, + "SourceStructureID": 1724, + "TargetStructureID": 48455, + "Label": "1724-48455 via BC Conventional Synapse from 99417 -> 99418, 101980 -> 101981, 119542 -> 119541", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99417, + "TargetID": 99418, + "Directional": true + }, { + "SourceID": 101980, + "TargetID": 101981, + "Directional": true + }, { + "SourceID": 119542, + "TargetID": 119541, + "Directional": true + }] + }, { + "ID": 7710, + "SourceStructureID": 1724, + "TargetStructureID": 48612, + "Label": "1724-48612 via Ribbon Synapse from 1736 -> 48613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1736, + "TargetID": 48613, + "Directional": true + }] + }, { + "ID": 7711, + "SourceStructureID": 1724, + "TargetStructureID": 68978, + "Label": "1724-68978 via Ribbon Synapse from 4116 -> 101977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4116, + "TargetID": 101977, + "Directional": true + }] + }, { + "ID": 7712, + "SourceStructureID": 1724, + "TargetStructureID": 99106, + "Label": "1724-99106 via BC Conventional Synapse from 99512 -> 99511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99512, + "TargetID": 99511, + "Directional": true + }] + }, { + "ID": 7713, + "SourceStructureID": 1724, + "TargetStructureID": 99256, + "Label": "1724-99256 via Ribbon Synapse from 1769 -> 99260", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1769, + "TargetID": 99260, + "Directional": true + }] + }, { + "ID": 7714, + "SourceStructureID": 1724, + "TargetStructureID": 99309, + "Label": "1724-99309 via Ribbon Synapse from 4029 -> 100404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4029, + "TargetID": 100404, + "Directional": true + }] + }, { + "ID": 7715, + "SourceStructureID": 1724, + "TargetStructureID": 99314, + "Label": "1724-99314 via Ribbon Synapse from 4037 -> 99315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4037, + "TargetID": 99315, + "Directional": true + }] + }, { + "ID": 7716, + "SourceStructureID": 1724, + "TargetStructureID": 99334, + "Label": "1724-99334 via Ribbon Synapse from 4044 -> 99335", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4044, + "TargetID": 99335, + "Directional": true + }] + }, { + "ID": 7717, + "SourceStructureID": 1724, + "TargetStructureID": 99364, + "Label": "1724-99364 via Ribbon Synapse from 47391 -> 99430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47391, + "TargetID": 99430, + "Directional": true + }] + }, { + "ID": 7718, + "SourceStructureID": 1724, + "TargetStructureID": 99429, + "Label": "1724-99429 via Ribbon Synapse from 47391 -> 99431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47391, + "TargetID": 99431, + "Directional": true + }] + }, { + "ID": 7719, + "SourceStructureID": 1724, + "TargetStructureID": 99440, + "Label": "1724-99440 via BC Conventional Synapse from 99446 -> 99449", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99446, + "TargetID": 99449, + "Directional": true + }] + }, { + "ID": 7720, + "SourceStructureID": 1724, + "TargetStructureID": 99454, + "Label": "1724-99454 via Ribbon Synapse from 47390 -> 99456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47390, + "TargetID": 99456, + "Directional": true + }] + }, { + "ID": 7721, + "SourceStructureID": 1724, + "TargetStructureID": 99468, + "Label": "1724-99468 via Ribbon Synapse from 4062 -> 99471", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4062, + "TargetID": 99471, + "Directional": true + }] + }, { + "ID": 7722, + "SourceStructureID": 1724, + "TargetStructureID": 99472, + "Label": "1724-99472 via Ribbon Synapse from 4062 -> 99478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4062, + "TargetID": 99478, + "Directional": true + }] + }, { + "ID": 7723, + "SourceStructureID": 1724, + "TargetStructureID": 99498, + "Label": "1724-99498 via Ribbon Synapse from 4060 -> 99500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4060, + "TargetID": 99500, + "Directional": true + }] + }, { + "ID": 7724, + "SourceStructureID": 1724, + "TargetStructureID": 99549, + "Label": "1724-99549 via Ribbon Synapse from 1798 -> 99550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1798, + "TargetID": 99550, + "Directional": true + }] + }, { + "ID": 7725, + "SourceStructureID": 1724, + "TargetStructureID": 99551, + "Label": "1724-99551 via Ribbon Synapse from 1792 -> 99556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1792, + "TargetID": 99556, + "Directional": true + }] + }, { + "ID": 7726, + "SourceStructureID": 1724, + "TargetStructureID": 99554, + "Label": "1724-99554 via Ribbon Synapse from 1792 -> 99555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1792, + "TargetID": 99555, + "Directional": true + }] + }, { + "ID": 7727, + "SourceStructureID": 1724, + "TargetStructureID": 99564, + "Label": "1724-99564 via Ribbon Synapse from 1788 -> 99565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1788, + "TargetID": 99565, + "Directional": true + }] + }, { + "ID": 7728, + "SourceStructureID": 1724, + "TargetStructureID": 99566, + "Label": "1724-99566 via Ribbon Synapse from 1788 -> 99567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1788, + "TargetID": 99567, + "Directional": true + }] + }, { + "ID": 7729, + "SourceStructureID": 1724, + "TargetStructureID": 99569, + "Label": "1724-99569 via Ribbon Synapse from 1783 -> 99570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1783, + "TargetID": 99570, + "Directional": true + }] + }, { + "ID": 7730, + "SourceStructureID": 1724, + "TargetStructureID": 100248, + "Label": "1724-100248 via Ribbon Synapse from 47397 -> 100249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47397, + "TargetID": 100249, + "Directional": true + }] + }, { + "ID": 7731, + "SourceStructureID": 1724, + "TargetStructureID": 100250, + "Label": "1724-100250 via Ribbon Synapse from 43315 -> 100251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43315, + "TargetID": 100251, + "Directional": true + }] + }, { + "ID": 7732, + "SourceStructureID": 1724, + "TargetStructureID": 100310, + "Label": "1724-100310 via Ribbon Synapse from 100313 -> 100321", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100313, + "TargetID": 100321, + "Directional": true + }] + }, { + "ID": 7733, + "SourceStructureID": 1724, + "TargetStructureID": 100338, + "Label": "1724-100338 via BC Conventional Synapse from 119137 -> 119136", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119137, + "TargetID": 119136, + "Directional": true + }] + }, { + "ID": 7734, + "SourceStructureID": 1724, + "TargetStructureID": 100360, + "Label": "1724-100360 via BC Conventional Synapse from 101511 -> 101512", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101511, + "TargetID": 101512, + "Directional": true + }] + }, { + "ID": 7735, + "SourceStructureID": 1724, + "TargetStructureID": 100405, + "Label": "1724-100405 via Ribbon Synapse from 4027 -> 100406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4027, + "TargetID": 100406, + "Directional": true + }] + }, { + "ID": 7736, + "SourceStructureID": 1724, + "TargetStructureID": 100486, + "Label": "1724-100486 via BC Conventional Synapse from 100494 -> 100495", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100494, + "TargetID": 100495, + "Directional": true + }] + }, { + "ID": 7737, + "SourceStructureID": 1724, + "TargetStructureID": 100562, + "Label": "1724-100562 via Ribbon Synapse from 47369 -> 100563", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47369, + "TargetID": 100563, + "Directional": true + }] + }, { + "ID": 7738, + "SourceStructureID": 1724, + "TargetStructureID": 100572, + "Label": "1724-100572 via Ribbon Synapse from 3940 -> 100590", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3940, + "TargetID": 100590, + "Directional": true + }] + }, { + "ID": 7739, + "SourceStructureID": 1724, + "TargetStructureID": 100591, + "Label": "1724-100591 via Ribbon Synapse from 20013 -> 100592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20013, + "TargetID": 100592, + "Directional": true + }] + }, { + "ID": 7740, + "SourceStructureID": 1724, + "TargetStructureID": 100682, + "Label": "1724-100682 via BC Conventional Synapse from 100683 -> 100684", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100683, + "TargetID": 100684, + "Directional": true + }] + }, { + "ID": 7741, + "SourceStructureID": 1724, + "TargetStructureID": 100685, + "Label": "1724-100685 via Ribbon Synapse from 20180 -> 100686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20180, + "TargetID": 100686, + "Directional": true + }] + }, { + "ID": 7742, + "SourceStructureID": 1724, + "TargetStructureID": 100690, + "Label": "1724-100690 via Ribbon Synapse from 20180 -> 100691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20180, + "TargetID": 100691, + "Directional": true + }] + }, { + "ID": 7743, + "SourceStructureID": 1724, + "TargetStructureID": 100748, + "Label": "1724-100748 via Ribbon Synapse from 20182 -> 100749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20182, + "TargetID": 100749, + "Directional": true + }] + }, { + "ID": 7744, + "SourceStructureID": 1724, + "TargetStructureID": 100750, + "Label": "1724-100750 via Ribbon Synapse from 20182 -> 100751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20182, + "TargetID": 100751, + "Directional": true + }] + }, { + "ID": 7745, + "SourceStructureID": 1724, + "TargetStructureID": 100846, + "Label": "1724-100846 via Ribbon Synapse from 20185 -> 100851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20185, + "TargetID": 100851, + "Directional": true + }] + }, { + "ID": 7746, + "SourceStructureID": 1724, + "TargetStructureID": 100860, + "Label": "1724-100860 via Ribbon Synapse from 20183 -> 101540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20183, + "TargetID": 101540, + "Directional": true + }] + }, { + "ID": 7747, + "SourceStructureID": 1724, + "TargetStructureID": 100871, + "Label": "1724-100871 via Ribbon Synapse from 20191 -> 100893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20191, + "TargetID": 100893, + "Directional": true + }] + }, { + "ID": 7748, + "SourceStructureID": 1724, + "TargetStructureID": 100877, + "Label": "1724-100877 via Ribbon Synapse from 20189 -> 100880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20189, + "TargetID": 100880, + "Directional": true + }] + }, { + "ID": 7749, + "SourceStructureID": 1724, + "TargetStructureID": 100878, + "Label": "1724-100878 via Ribbon Synapse from 20189 -> 100879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20189, + "TargetID": 100879, + "Directional": true + }] + }, { + "ID": 7750, + "SourceStructureID": 1724, + "TargetStructureID": 101507, + "Label": "1724-101507 via Ribbon Synapse from 20198 -> 101526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20198, + "TargetID": 101526, + "Directional": true + }] + }, { + "ID": 7751, + "SourceStructureID": 1724, + "TargetStructureID": 101516, + "Label": "1724-101516 via Ribbon Synapse from 20194 -> 101517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20194, + "TargetID": 101517, + "Directional": true + }] + }, { + "ID": 7752, + "SourceStructureID": 1724, + "TargetStructureID": 101518, + "Label": "1724-101518 via Ribbon Synapse from 20193 -> 101519, 20194 -> 101520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20193, + "TargetID": 101519, + "Directional": true + }, { + "SourceID": 20194, + "TargetID": 101520, + "Directional": true + }] + }, { + "ID": 7753, + "SourceStructureID": 1724, + "TargetStructureID": 101550, + "Label": "1724-101550 via BC Conventional Synapse from 101549 -> 101551", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101549, + "TargetID": 101551, + "Directional": true + }] + }, { + "ID": 7754, + "SourceStructureID": 1724, + "TargetStructureID": 101558, + "Label": "1724-101558 via Ribbon Synapse from 1808 -> 101561", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1808, + "TargetID": 101561, + "Directional": true + }] + }, { + "ID": 7755, + "SourceStructureID": 1724, + "TargetStructureID": 101581, + "Label": "1724-101581 via Ribbon Synapse from 1758 -> 101582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1758, + "TargetID": 101582, + "Directional": true + }] + }, { + "ID": 7756, + "SourceStructureID": 1724, + "TargetStructureID": 101594, + "Label": "1724-101594 via Ribbon Synapse from 1746 -> 101595", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 1746, + "TargetID": 101595, + "Directional": true + }] + }, { + "ID": 7757, + "SourceStructureID": 1724, + "TargetStructureID": 101675, + "Label": "1724-101675 via Ribbon Synapse from 47342 -> 101676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47342, + "TargetID": 101676, + "Directional": true + }] + }, { + "ID": 7758, + "SourceStructureID": 1724, + "TargetStructureID": 101686, + "Label": "1724-101686 via Ribbon Synapse from 4014 -> 101687", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4014, + "TargetID": 101687, + "Directional": true + }] + }, { + "ID": 7759, + "SourceStructureID": 1724, + "TargetStructureID": 101749, + "Label": "1724-101749 via BC Conventional Synapse from 101752 -> 101754", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101752, + "TargetID": 101754, + "Directional": true + }] + }, { + "ID": 7760, + "SourceStructureID": 1724, + "TargetStructureID": 101767, + "Label": "1724-101767 via Ribbon Synapse from 4094 -> 101768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4094, + "TargetID": 101768, + "Directional": true + }] + }, { + "ID": 7761, + "SourceStructureID": 1724, + "TargetStructureID": 101771, + "Label": "1724-101771 via BC Conventional Synapse from 119170 -> 119169", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119170, + "TargetID": 119169, + "Directional": true + }] + }, { + "ID": 7762, + "SourceStructureID": 1724, + "TargetStructureID": 101814, + "Label": "1724-101814 via Ribbon Synapse from 4096 -> 101817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4096, + "TargetID": 101817, + "Directional": true + }] + }, { + "ID": 7763, + "SourceStructureID": 1724, + "TargetStructureID": 101824, + "Label": "1724-101824 via Ribbon Synapse from 4103 -> 101825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4103, + "TargetID": 101825, + "Directional": true + }] + }, { + "ID": 7764, + "SourceStructureID": 1724, + "TargetStructureID": 101842, + "Label": "1724-101842 via Ribbon Synapse from 23721 -> 101853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23721, + "TargetID": 101853, + "Directional": true + }] + }, { + "ID": 7765, + "SourceStructureID": 1724, + "TargetStructureID": 101880, + "Label": "1724-101880 via Ribbon Synapse from 101890 -> 101891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101890, + "TargetID": 101891, + "Directional": true + }] + }, { + "ID": 7766, + "SourceStructureID": 1724, + "TargetStructureID": 101892, + "Label": "1724-101892 via Ribbon Synapse from 101890 -> 101893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101890, + "TargetID": 101893, + "Directional": true + }] + }, { + "ID": 7767, + "SourceStructureID": 1724, + "TargetStructureID": 101938, + "Label": "1724-101938 via BC Conventional Synapse from 119542 -> 101949", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119542, + "TargetID": 101949, + "Directional": true + }] + }, { + "ID": 7768, + "SourceStructureID": 1724, + "TargetStructureID": 101944, + "Label": "1724-101944 via Ribbon Synapse from 4105 -> 101945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4105, + "TargetID": 101945, + "Directional": true + }] + }, { + "ID": 7769, + "SourceStructureID": 1724, + "TargetStructureID": 101951, + "Label": "1724-101951 via Ribbon Synapse from 47355 -> 101953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47355, + "TargetID": 101953, + "Directional": true + }] + }, { + "ID": 7770, + "SourceStructureID": 1724, + "TargetStructureID": 101954, + "Label": "1724-101954 via Ribbon Synapse from 47356 -> 101955", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47356, + "TargetID": 101955, + "Directional": true + }] + }, { + "ID": 7771, + "SourceStructureID": 1724, + "TargetStructureID": 101972, + "Label": "1724-101972 via Ribbon Synapse from 4120 -> 101973", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4120, + "TargetID": 101973, + "Directional": true + }] + }, { + "ID": 7772, + "SourceStructureID": 1724, + "TargetStructureID": 101974, + "Label": "1724-101974 via Ribbon Synapse from 4120 -> 101976", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4120, + "TargetID": 101976, + "Directional": true + }] + }, { + "ID": 7773, + "SourceStructureID": 1724, + "TargetStructureID": 102509, + "Label": "1724-102509 via Ribbon Synapse from 102508 -> 102510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102508, + "TargetID": 102510, + "Directional": true + }] + }, { + "ID": 7774, + "SourceStructureID": 1724, + "TargetStructureID": 102517, + "Label": "1724-102517 via Ribbon Synapse from 30430 -> 102522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30430, + "TargetID": 102522, + "Directional": true + }] + }, { + "ID": 7775, + "SourceStructureID": 2063, + "TargetStructureID": 36130, + "Label": "2063-36130 via Ribbon Synapse from 36139 -> 36140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36139, + "TargetID": 36140, + "Directional": true + }] + }, { + "ID": 7776, + "SourceStructureID": 2064, + "TargetStructureID": 5575, + "Label": "2064-5575 via Conventional from 13185 -> 23054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 13185, + "TargetID": 23054, + "Directional": true + }] + }, { + "ID": 7777, + "SourceStructureID": 2064, + "TargetStructureID": 8749, + "Label": "2064-8749 via Conventional from 123206 -> 123207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123206, + "TargetID": 123207, + "Directional": true + }] + }, { + "ID": 7778, + "SourceStructureID": 2064, + "TargetStructureID": 9693, + "Label": "2064-9693 via Conventional from 13197 -> 13198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 13197, + "TargetID": 13198, + "Directional": true + }] + }, { + "ID": 7779, + "SourceStructureID": 2065, + "TargetStructureID": 8575, + "Label": "2065-8575 via BC Conventional Synapse from 62086 -> 62081", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62086, + "TargetID": 62081, + "Directional": true + }] + }, { + "ID": 7780, + "SourceStructureID": 2065, + "TargetStructureID": 59524, + "Label": "2065-59524 via Ribbon Synapse from 36345 -> 59541, 36347 -> 59542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36345, + "TargetID": 59541, + "Directional": true + }, { + "SourceID": 36347, + "TargetID": 59542, + "Directional": true + }] + }, { + "ID": 7781, + "SourceStructureID": 2065, + "TargetStructureID": 61439, + "Label": "2065-61439 via Ribbon Synapse from 120083 -> 120084", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120083, + "TargetID": 120084, + "Directional": true + }] + }, { + "ID": 7782, + "SourceStructureID": 2610, + "TargetStructureID": 382, + "Label": "2610-382 via Conventional from 2656 -> 41977", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 2656, + "TargetID": 41977, + "Directional": true + }] + }, { + "ID": 7783, + "SourceStructureID": 2610, + "TargetStructureID": 5325, + "Label": "2610-5325 via Conventional from 2679 -> 68758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 2679, + "TargetID": 68758, + "Directional": true + }] + }, { + "ID": 7784, + "SourceStructureID": 2610, + "TargetStructureID": 7594, + "Label": "2610-7594 via Touch from 25117 -> 25116", + "Type": "Touch", + "Directional": true, + "Links": [{ + "SourceID": 25117, + "TargetID": 25116, + "Directional": true + }] + }, { + "ID": 7785, + "SourceStructureID": 2610, + "TargetStructureID": 8485, + "Label": "2610-8485 via Conventional from 2630 -> 28881, 2632 -> 28879", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 2630, + "TargetID": 28881, + "Directional": true + }, { + "SourceID": 2632, + "TargetID": 28879, + "Directional": true + }] + }, { + "ID": 7786, + "SourceStructureID": 2610, + "TargetStructureID": 16940, + "Label": "2610-16940 via Conventional from 23153 -> 71260", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23153, + "TargetID": 71260, + "Directional": true + }] + }, { + "ID": 7787, + "SourceStructureID": 2610, + "TargetStructureID": 28913, + "Label": "2610-28913 via Conventional from 2634 -> 28926, 2657 -> 28914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 2634, + "TargetID": 28926, + "Directional": true + }, { + "SourceID": 2657, + "TargetID": 28914, + "Directional": true + }] + }, { + "ID": 7788, + "SourceStructureID": 2610, + "TargetStructureID": 71261, + "Label": "2610-71261 via Conventional from 23155 -> 71262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23155, + "TargetID": 71262, + "Directional": true + }] + }, { + "ID": 7789, + "SourceStructureID": 3116, + "TargetStructureID": 606, + "Label": "3116-606 via Ribbon Synapse from 46566 -> 53369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46566, + "TargetID": 53369, + "Directional": true + }] + }, { + "ID": 7790, + "SourceStructureID": 3116, + "TargetStructureID": 5107, + "Label": "3116-5107 via Ribbon Synapse from 43862 -> 43491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43862, + "TargetID": 43491, + "Directional": true + }] + }, { + "ID": 7791, + "SourceStructureID": 3116, + "TargetStructureID": 5435, + "Label": "3116-5435 via Ribbon Synapse from 126382 -> 41138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126382, + "TargetID": 41138, + "Directional": true + }] + }, { + "ID": 7792, + "SourceStructureID": 3116, + "TargetStructureID": 15796, + "Label": "3116-15796 via Ribbon Synapse from 3144 -> 19369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 3144, + "TargetID": 19369, + "Directional": true + }] + }, { + "ID": 7793, + "SourceStructureID": 3116, + "TargetStructureID": 35811, + "Label": "3116-35811 via Ribbon Synapse from 23822 -> 35816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23822, + "TargetID": 35816, + "Directional": true + }] + }, { + "ID": 7794, + "SourceStructureID": 3116, + "TargetStructureID": 68539, + "Label": "3116-68539 via Ribbon Synapse from 27995 -> 73642", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27995, + "TargetID": 73642, + "Directional": true + }] + }, { + "ID": 7795, + "SourceStructureID": 3116, + "TargetStructureID": 90254, + "Label": "3116-90254 via Ribbon Synapse from 46567 -> 116732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46567, + "TargetID": 116732, + "Directional": true + }] + }, { + "ID": 7796, + "SourceStructureID": 3116, + "TargetStructureID": 91547, + "Label": "3116-91547 via Ribbon Synapse from 23811 -> 91548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23811, + "TargetID": 91548, + "Directional": true + }] + }, { + "ID": 7797, + "SourceStructureID": 3116, + "TargetStructureID": 91549, + "Label": "3116-91549 via Ribbon Synapse from 23810 -> 91550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23810, + "TargetID": 91550, + "Directional": true + }] + }, { + "ID": 7798, + "SourceStructureID": 3116, + "TargetStructureID": 100765, + "Label": "3116-100765 via Ribbon Synapse from 27999 -> 147295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27999, + "TargetID": 147295, + "Directional": true + }] + }, { + "ID": 7799, + "SourceStructureID": 3116, + "TargetStructureID": 116729, + "Label": "3116-116729 via Ribbon Synapse from 46567 -> 116731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46567, + "TargetID": 116731, + "Directional": true + }] + }, { + "ID": 7800, + "SourceStructureID": 3257, + "TargetStructureID": 165, + "Label": "3257-165 via Conventional from 66219 -> 66224", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66219, + "TargetID": 66224, + "Directional": true + }] + }, { + "ID": 7801, + "SourceStructureID": 3257, + "TargetStructureID": 172, + "Label": "3257-172 via Conventional from 18066 -> 128137", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18066, + "TargetID": 128137, + "Directional": true + }] + }, { + "ID": 7802, + "SourceStructureID": 3257, + "TargetStructureID": 968, + "Label": "3257-968 via Conventional from 33287 -> 12174, 33289 -> 12172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33287, + "TargetID": 12174, + "Directional": true + }, { + "SourceID": 33289, + "TargetID": 12172, + "Directional": true + }] + }, { + "ID": 7803, + "SourceStructureID": 3257, + "TargetStructureID": 989, + "Label": "3257-989 via Conventional from 129880 -> 13093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129880, + "TargetID": 13093, + "Directional": true + }] + }, { + "ID": 7804, + "SourceStructureID": 3257, + "TargetStructureID": 4568, + "Label": "3257-4568 via Conventional from 21881 -> 11513, 66225 -> 11524, 130016 -> 11512", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21881, + "TargetID": 11513, + "Directional": true + }, { + "SourceID": 66225, + "TargetID": 11524, + "Directional": true + }, { + "SourceID": 130016, + "TargetID": 11512, + "Directional": true + }] + }, { + "ID": 7805, + "SourceStructureID": 3257, + "TargetStructureID": 4569, + "Label": "3257-4569 via Conventional from 47537 -> 47535", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47537, + "TargetID": 47535, + "Directional": true + }] + }, { + "ID": 7806, + "SourceStructureID": 3257, + "TargetStructureID": 9787, + "Label": "3257-9787 via Conventional from 9175 -> 12067, 18069 -> 18061, 129887 -> 18045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9175, + "TargetID": 12067, + "Directional": true + }, { + "SourceID": 18069, + "TargetID": 18061, + "Directional": true + }, { + "SourceID": 129887, + "TargetID": 18045, + "Directional": true + }] + }, { + "ID": 7807, + "SourceStructureID": 3257, + "TargetStructureID": 34336, + "Label": "3257-34336 via Conventional from 9122 -> 34376", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9122, + "TargetID": 34376, + "Directional": true + }] + }, { + "ID": 7808, + "SourceStructureID": 3679, + "TargetStructureID": 138, + "Label": "3679-138 via Conventional from 3768 -> 32877, 22701 -> 46419, 22709 -> 46420, 22726 -> 2429, 22729 -> 2219, 29401 -> 29402, 29403 -> 29404", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 3768, + "TargetID": 32877, + "Directional": true + }, { + "SourceID": 22701, + "TargetID": 46419, + "Directional": true + }, { + "SourceID": 22709, + "TargetID": 46420, + "Directional": true + }, { + "SourceID": 22726, + "TargetID": 2429, + "Directional": true + }, { + "SourceID": 22729, + "TargetID": 2219, + "Directional": true + }, { + "SourceID": 29401, + "TargetID": 29402, + "Directional": true + }, { + "SourceID": 29403, + "TargetID": 29404, + "Directional": true + }] + }, { + "ID": 7809, + "SourceStructureID": 3679, + "TargetStructureID": 161, + "Label": "3679-161 via Conventional from 7929 -> 27209, 27212 -> 27211", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 7929, + "TargetID": 27209, + "Directional": true + }, { + "SourceID": 27212, + "TargetID": 27211, + "Directional": true + }] + }, { + "ID": 7810, + "SourceStructureID": 3679, + "TargetStructureID": 992, + "Label": "3679-992 via Conventional from 5066 -> 5065, 29409 -> 29410, 29413 -> 29412, 31145 -> 31144, 31147 -> 31146, 33878 -> 33879", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 5066, + "TargetID": 5065, + "Directional": true + }, { + "SourceID": 29409, + "TargetID": 29410, + "Directional": true + }, { + "SourceID": 29413, + "TargetID": 29412, + "Directional": true + }, { + "SourceID": 31145, + "TargetID": 31144, + "Directional": true + }, { + "SourceID": 31147, + "TargetID": 31146, + "Directional": true + }, { + "SourceID": 33878, + "TargetID": 33879, + "Directional": true + }] + }, { + "ID": 7811, + "SourceStructureID": 3679, + "TargetStructureID": 2063, + "Label": "3679-2063 via Conventional from 31131 -> 21761", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31131, + "TargetID": 21761, + "Directional": true + }] + }, { + "ID": 7812, + "SourceStructureID": 3679, + "TargetStructureID": 4567, + "Label": "3679-4567 via Conventional from 29407 -> 60554, 29414 -> 21334, 29415 -> 29416, 60553 -> 60552, 60862 -> 60861", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29407, + "TargetID": 60554, + "Directional": true + }, { + "SourceID": 29414, + "TargetID": 21334, + "Directional": true + }, { + "SourceID": 29415, + "TargetID": 29416, + "Directional": true + }, { + "SourceID": 60553, + "TargetID": 60552, + "Directional": true + }, { + "SourceID": 60862, + "TargetID": 60861, + "Directional": true + }] + }, { + "ID": 7813, + "SourceStructureID": 3679, + "TargetStructureID": 4849, + "Label": "3679-4849 via Conventional from 31124 -> 31125, 31126 -> 31127, 31128 -> 31129, 130021 -> 130020", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31124, + "TargetID": 31125, + "Directional": true + }, { + "SourceID": 31126, + "TargetID": 31127, + "Directional": true + }, { + "SourceID": 31128, + "TargetID": 31129, + "Directional": true + }, { + "SourceID": 130021, + "TargetID": 130020, + "Directional": true + }] + }, { + "ID": 7814, + "SourceStructureID": 3679, + "TargetStructureID": 5150, + "Label": "3679-5150 via Conventional from 5185 -> 5183, 15437 -> 5233", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 5185, + "TargetID": 5183, + "Directional": true + }, { + "SourceID": 15437, + "TargetID": 5233, + "Directional": true + }] + }, { + "ID": 7815, + "SourceStructureID": 3679, + "TargetStructureID": 5502, + "Label": "3679-5502 via Conventional from 6374 -> 27267, 6375 -> 27263, 27261 -> 27262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6374, + "TargetID": 27267, + "Directional": true + }, { + "SourceID": 6375, + "TargetID": 27263, + "Directional": true + }, { + "SourceID": 27261, + "TargetID": 27262, + "Directional": true + }] + }, { + "ID": 7816, + "SourceStructureID": 3679, + "TargetStructureID": 5648, + "Label": "3679-5648 via Conventional from 6372 -> 23417", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6372, + "TargetID": 23417, + "Directional": true + }] + }, { + "ID": 7817, + "SourceStructureID": 3679, + "TargetStructureID": 10335, + "Label": "3679-10335 via Conventional from 10330 -> 106282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10330, + "TargetID": 106282, + "Directional": true + }] + }, { + "ID": 7818, + "SourceStructureID": 3679, + "TargetStructureID": 13469, + "Label": "3679-13469 via Conventional from 16252 -> 13471", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16252, + "TargetID": 13471, + "Directional": true + }] + }, { + "ID": 7819, + "SourceStructureID": 3679, + "TargetStructureID": 28913, + "Label": "3679-28913 via Conventional from 28936 -> 28935, 29408 -> 28934", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 28936, + "TargetID": 28935, + "Directional": true + }, { + "SourceID": 29408, + "TargetID": 28934, + "Directional": true + }] + }, { + "ID": 7820, + "SourceStructureID": 3679, + "TargetStructureID": 33881, + "Label": "3679-33881 via Conventional from 33880 -> 33926", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33880, + "TargetID": 33926, + "Directional": true + }] + }, { + "ID": 7821, + "SourceStructureID": 3756, + "TargetStructureID": 162, + "Label": "3756-162 via Ribbon Synapse from 56913 -> 129453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56913, + "TargetID": 129453, + "Directional": true + }] + }, { + "ID": 7822, + "SourceStructureID": 3756, + "TargetStructureID": 5107, + "Label": "3756-5107 via Ribbon Synapse from 116264 -> 129069, 116284 -> 129098, 129213 -> 129214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116264, + "TargetID": 129069, + "Directional": true + }, { + "SourceID": 116284, + "TargetID": 129098, + "Directional": true + }, { + "SourceID": 129213, + "TargetID": 129214, + "Directional": true + }] + }, { + "ID": 7823, + "SourceStructureID": 3756, + "TargetStructureID": 5374, + "Label": "3756-5374 via Ribbon Synapse from 127642 -> 127643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127642, + "TargetID": 127643, + "Directional": true + }] + }, { + "ID": 7824, + "SourceStructureID": 3756, + "TargetStructureID": 5405, + "Label": "3756-5405 via Ribbon Synapse from 116256 -> 129006, 116257 -> 129007, 128994 -> 128998, 128999 -> 129000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116256, + "TargetID": 129006, + "Directional": true + }, { + "SourceID": 116257, + "TargetID": 129007, + "Directional": true + }, { + "SourceID": 128994, + "TargetID": 128998, + "Directional": true + }, { + "SourceID": 128999, + "TargetID": 129000, + "Directional": true + }] + }, { + "ID": 7825, + "SourceStructureID": 3756, + "TargetStructureID": 5442, + "Label": "3756-5442 via Ribbon Synapse from 129076 -> 129077", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129076, + "TargetID": 129077, + "Directional": true + }] + }, { + "ID": 7826, + "SourceStructureID": 3756, + "TargetStructureID": 6300, + "Label": "3756-6300 via Ribbon Synapse from 129234 -> 129233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129234, + "TargetID": 129233, + "Directional": true + }] + }, { + "ID": 7827, + "SourceStructureID": 3756, + "TargetStructureID": 7134, + "Label": "3756-7134 via Ribbon Synapse from 53621 -> 53617, 122234 -> 122231, 122235 -> 122236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53621, + "TargetID": 53617, + "Directional": true + }, { + "SourceID": 122234, + "TargetID": 122231, + "Directional": true + }, { + "SourceID": 122235, + "TargetID": 122236, + "Directional": true + }] + }, { + "ID": 7828, + "SourceStructureID": 3756, + "TargetStructureID": 8575, + "Label": "3756-8575 via BC Conventional Synapse from 98368 -> 62832, 128893 -> 62811", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98368, + "TargetID": 62832, + "Directional": true + }, { + "SourceID": 128893, + "TargetID": 62811, + "Directional": true + }] + }, { + "ID": 7829, + "SourceStructureID": 3756, + "TargetStructureID": 8575, + "Label": "3756-8575 via Ribbon Synapse from 122232 -> 62848, 128868 -> 62813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122232, + "TargetID": 62848, + "Directional": true + }, { + "SourceID": 128868, + "TargetID": 62813, + "Directional": true + }] + }, { + "ID": 7830, + "SourceStructureID": 3756, + "TargetStructureID": 12203, + "Label": "3756-12203 via Ribbon Synapse from 12253 -> 12252, 129017 -> 12252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12253, + "TargetID": 12252, + "Directional": true + }, { + "SourceID": 129017, + "TargetID": 12252, + "Directional": true + }] + }, { + "ID": 7831, + "SourceStructureID": 3756, + "TargetStructureID": 15796, + "Label": "3756-15796 via BC Conventional Synapse from 119336 -> 147779", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119336, + "TargetID": 147779, + "Directional": true + }] + }, { + "ID": 7832, + "SourceStructureID": 3756, + "TargetStructureID": 15796, + "Label": "3756-15796 via Ribbon Synapse from 116206 -> 147786, 129196 -> 147785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116206, + "TargetID": 147786, + "Directional": true + }, { + "SourceID": 129196, + "TargetID": 147785, + "Directional": true + }] + }, { + "ID": 7833, + "SourceStructureID": 3756, + "TargetStructureID": 22974, + "Label": "3756-22974 via Ribbon Synapse from 54440 -> 68993, 93262 -> 128781, 127642 -> 68990", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54440, + "TargetID": 68993, + "Directional": true + }, { + "SourceID": 93262, + "TargetID": 128781, + "Directional": true + }, { + "SourceID": 127642, + "TargetID": 68990, + "Directional": true + }] + }, { + "ID": 7834, + "SourceStructureID": 3756, + "TargetStructureID": 24174, + "Label": "3756-24174 via Ribbon Synapse from 129114 -> 129116", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129114, + "TargetID": 129116, + "Directional": true + }] + }, { + "ID": 7835, + "SourceStructureID": 3756, + "TargetStructureID": 29702, + "Label": "3756-29702 via Ribbon Synapse from 128982 -> 75479", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128982, + "TargetID": 75479, + "Directional": true + }] + }, { + "ID": 7836, + "SourceStructureID": 3756, + "TargetStructureID": 35894, + "Label": "3756-35894 via Ribbon Synapse from 35960 -> 35961, 35963 -> 35962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35960, + "TargetID": 35961, + "Directional": true + }, { + "SourceID": 35963, + "TargetID": 35962, + "Directional": true + }] + }, { + "ID": 7837, + "SourceStructureID": 3756, + "TargetStructureID": 40604, + "Label": "3756-40604 via BC Conventional Synapse from 116079 -> 129211", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116079, + "TargetID": 129211, + "Directional": true + }] + }, { + "ID": 7838, + "SourceStructureID": 3756, + "TargetStructureID": 40604, + "Label": "3756-40604 via Ribbon Synapse from 116260 -> 41402", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116260, + "TargetID": 41402, + "Directional": true + }] + }, { + "ID": 7839, + "SourceStructureID": 3756, + "TargetStructureID": 45220, + "Label": "3756-45220 via Ribbon Synapse from 69849 -> 128968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69849, + "TargetID": 128968, + "Directional": true + }] + }, { + "ID": 7840, + "SourceStructureID": 3756, + "TargetStructureID": 56955, + "Label": "3756-56955 via Ribbon Synapse from 35857 -> 129127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35857, + "TargetID": 129127, + "Directional": true + }] + }, { + "ID": 7841, + "SourceStructureID": 3756, + "TargetStructureID": 57064, + "Label": "3756-57064 via BC Conventional Synapse from 128943 -> 128944", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128943, + "TargetID": 128944, + "Directional": true + }] + }, { + "ID": 7842, + "SourceStructureID": 3756, + "TargetStructureID": 61823, + "Label": "3756-61823 via Ribbon Synapse from 116008 -> 128879, 116009 -> 128878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116008, + "TargetID": 128879, + "Directional": true + }, { + "SourceID": 116009, + "TargetID": 128878, + "Directional": true + }] + }, { + "ID": 7843, + "SourceStructureID": 3756, + "TargetStructureID": 68539, + "Label": "3756-68539 via Ribbon Synapse from 129092 -> 129096, 129094 -> 129095", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129092, + "TargetID": 129096, + "Directional": true + }, { + "SourceID": 129094, + "TargetID": 129095, + "Directional": true + }] + }, { + "ID": 7844, + "SourceStructureID": 3756, + "TargetStructureID": 69845, + "Label": "3756-69845 via Ribbon Synapse from 69844 -> 69846", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69844, + "TargetID": 69846, + "Directional": true + }] + }, { + "ID": 7845, + "SourceStructureID": 3756, + "TargetStructureID": 69847, + "Label": "3756-69847 via Ribbon Synapse from 69844 -> 69848, 69849 -> 69848", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69844, + "TargetID": 69848, + "Directional": true + }, { + "SourceID": 69849, + "TargetID": 69848, + "Directional": true + }] + }, { + "ID": 7846, + "SourceStructureID": 3756, + "TargetStructureID": 82961, + "Label": "3756-82961 via Ribbon Synapse from 15639 -> 82963, 116237 -> 82963", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15639, + "TargetID": 82963, + "Directional": true + }, { + "SourceID": 116237, + "TargetID": 82963, + "Directional": true + }] + }, { + "ID": 7847, + "SourceStructureID": 3756, + "TargetStructureID": 112205, + "Label": "3756-112205 via Ribbon Synapse from 116119 -> 129349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116119, + "TargetID": 129349, + "Directional": true + }] + }, { + "ID": 7848, + "SourceStructureID": 3756, + "TargetStructureID": 112476, + "Label": "3756-112476 via Ribbon Synapse from 116113 -> 129317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116113, + "TargetID": 129317, + "Directional": true + }] + }, { + "ID": 7849, + "SourceStructureID": 3756, + "TargetStructureID": 112843, + "Label": "3756-112843 via Ribbon Synapse from 56894 -> 120367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56894, + "TargetID": 120367, + "Directional": true + }] + }, { + "ID": 7850, + "SourceStructureID": 3756, + "TargetStructureID": 113186, + "Label": "3756-113186 via Ribbon Synapse from 129392 -> 129393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129392, + "TargetID": 129393, + "Directional": true + }] + }, { + "ID": 7851, + "SourceStructureID": 3756, + "TargetStructureID": 120282, + "Label": "3756-120282 via Ribbon Synapse from 54456 -> 128821, 114043 -> 128891, 128819 -> 128820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54456, + "TargetID": 128821, + "Directional": true + }, { + "SourceID": 114043, + "TargetID": 128891, + "Directional": true + }, { + "SourceID": 128819, + "TargetID": 128820, + "Directional": true + }] + }, { + "ID": 7852, + "SourceStructureID": 3756, + "TargetStructureID": 120285, + "Label": "3756-120285 via Ribbon Synapse from 120284 -> 120286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120284, + "TargetID": 120286, + "Directional": true + }] + }, { + "ID": 7853, + "SourceStructureID": 3756, + "TargetStructureID": 120291, + "Label": "3756-120291 via Ribbon Synapse from 116017 -> 120297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116017, + "TargetID": 120297, + "Directional": true + }] + }, { + "ID": 7854, + "SourceStructureID": 3756, + "TargetStructureID": 120299, + "Label": "3756-120299 via Ribbon Synapse from 116018 -> 120302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116018, + "TargetID": 120302, + "Directional": true + }] + }, { + "ID": 7855, + "SourceStructureID": 3756, + "TargetStructureID": 120309, + "Label": "3756-120309 via Ribbon Synapse from 128782 -> 128784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128782, + "TargetID": 128784, + "Directional": true + }] + }, { + "ID": 7856, + "SourceStructureID": 3756, + "TargetStructureID": 120321, + "Label": "3756-120321 via Ribbon Synapse from 116037 -> 128795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116037, + "TargetID": 128795, + "Directional": true + }] + }, { + "ID": 7857, + "SourceStructureID": 3756, + "TargetStructureID": 120331, + "Label": "3756-120331 via Ribbon Synapse from 116052 -> 120333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116052, + "TargetID": 120333, + "Directional": true + }] + }, { + "ID": 7858, + "SourceStructureID": 3756, + "TargetStructureID": 120343, + "Label": "3756-120343 via Ribbon Synapse from 116047 -> 129232", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116047, + "TargetID": 129232, + "Directional": true + }] + }, { + "ID": 7859, + "SourceStructureID": 3756, + "TargetStructureID": 120347, + "Label": "3756-120347 via Ribbon Synapse from 56918 -> 120353", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56918, + "TargetID": 120353, + "Directional": true + }] + }, { + "ID": 7860, + "SourceStructureID": 3756, + "TargetStructureID": 120355, + "Label": "3756-120355 via Ribbon Synapse from 129209 -> 129210", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129209, + "TargetID": 129210, + "Directional": true + }] + }, { + "ID": 7861, + "SourceStructureID": 3756, + "TargetStructureID": 120372, + "Label": "3756-120372 via Ribbon Synapse from 129313 -> 129314", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129313, + "TargetID": 129314, + "Directional": true + }] + }, { + "ID": 7862, + "SourceStructureID": 3756, + "TargetStructureID": 120379, + "Label": "3756-120379 via Ribbon Synapse from 57327 -> 120385, 116131 -> 120381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57327, + "TargetID": 120385, + "Directional": true + }, { + "SourceID": 116131, + "TargetID": 120381, + "Directional": true + }] + }, { + "ID": 7863, + "SourceStructureID": 3756, + "TargetStructureID": 120393, + "Label": "3756-120393 via Ribbon Synapse from 129404 -> 129405, 129419 -> 129420", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129404, + "TargetID": 129405, + "Directional": true + }, { + "SourceID": 129419, + "TargetID": 129420, + "Directional": true + }] + }, { + "ID": 7864, + "SourceStructureID": 3756, + "TargetStructureID": 120398, + "Label": "3756-120398 via Ribbon Synapse from 116151 -> 129421", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116151, + "TargetID": 129421, + "Directional": true + }] + }, { + "ID": 7865, + "SourceStructureID": 3756, + "TargetStructureID": 120403, + "Label": "3756-120403 via Ribbon Synapse from 116163 -> 120407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116163, + "TargetID": 120407, + "Directional": true + }] + }, { + "ID": 7866, + "SourceStructureID": 3756, + "TargetStructureID": 120416, + "Label": "3756-120416 via Ribbon Synapse from 116170 -> 129429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116170, + "TargetID": 129429, + "Directional": true + }] + }, { + "ID": 7867, + "SourceStructureID": 3756, + "TargetStructureID": 120425, + "Label": "3756-120425 via Ribbon Synapse from 116180 -> 129468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116180, + "TargetID": 129468, + "Directional": true + }] + }, { + "ID": 7868, + "SourceStructureID": 3756, + "TargetStructureID": 120431, + "Label": "3756-120431 via Ribbon Synapse from 116173 -> 120438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116173, + "TargetID": 120438, + "Directional": true + }] + }, { + "ID": 7869, + "SourceStructureID": 3756, + "TargetStructureID": 120464, + "Label": "3756-120464 via Ribbon Synapse from 128940 -> 128939", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128940, + "TargetID": 128939, + "Directional": true + }] + }, { + "ID": 7870, + "SourceStructureID": 3756, + "TargetStructureID": 120478, + "Label": "3756-120478 via Ribbon Synapse from 56680 -> 129074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56680, + "TargetID": 129074, + "Directional": true + }] + }, { + "ID": 7871, + "SourceStructureID": 3756, + "TargetStructureID": 120480, + "Label": "3756-120480 via Ribbon Synapse from 129104 -> 129105", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129104, + "TargetID": 129105, + "Directional": true + }] + }, { + "ID": 7872, + "SourceStructureID": 3756, + "TargetStructureID": 120484, + "Label": "3756-120484 via Ribbon Synapse from 116272 -> 120486, 116281 -> 129100", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116272, + "TargetID": 120486, + "Directional": true + }, { + "SourceID": 116281, + "TargetID": 129100, + "Directional": true + }] + }, { + "ID": 7873, + "SourceStructureID": 3756, + "TargetStructureID": 120489, + "Label": "3756-120489 via Ribbon Synapse from 35963 -> 129123, 56954 -> 120492, 116286 -> 120493, 129114 -> 129117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35963, + "TargetID": 129123, + "Directional": true + }, { + "SourceID": 56954, + "TargetID": 120492, + "Directional": true + }, { + "SourceID": 116286, + "TargetID": 120493, + "Directional": true + }, { + "SourceID": 129114, + "TargetID": 129117, + "Directional": true + }] + }, { + "ID": 7874, + "SourceStructureID": 3756, + "TargetStructureID": 120499, + "Label": "3756-120499 via Ribbon Synapse from 35857 -> 129162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35857, + "TargetID": 129162, + "Directional": true + }] + }, { + "ID": 7875, + "SourceStructureID": 3756, + "TargetStructureID": 120518, + "Label": "3756-120518 via Ribbon Synapse from 129204 -> 129205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129204, + "TargetID": 129205, + "Directional": true + }] + }, { + "ID": 7876, + "SourceStructureID": 3756, + "TargetStructureID": 120521, + "Label": "3756-120521 via Ribbon Synapse from 116012 -> 128902", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116012, + "TargetID": 128902, + "Directional": true + }] + }, { + "ID": 7877, + "SourceStructureID": 3756, + "TargetStructureID": 120523, + "Label": "3756-120523 via Ribbon Synapse from 35857 -> 120531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35857, + "TargetID": 120531, + "Directional": true + }] + }, { + "ID": 7878, + "SourceStructureID": 3756, + "TargetStructureID": 120534, + "Label": "3756-120534 via Ribbon Synapse from 11707 -> 128754, 37801 -> 128755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11707, + "TargetID": 128754, + "Directional": true + }, { + "SourceID": 37801, + "TargetID": 128755, + "Directional": true + }] + }, { + "ID": 7879, + "SourceStructureID": 3756, + "TargetStructureID": 120536, + "Label": "3756-120536 via BC Conventional Synapse from 128769 -> 128770", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128769, + "TargetID": 128770, + "Directional": true + }] + }, { + "ID": 7880, + "SourceStructureID": 3756, + "TargetStructureID": 120536, + "Label": "3756-120536 via Ribbon Synapse from 11710 -> 128768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11710, + "TargetID": 128768, + "Directional": true + }] + }, { + "ID": 7881, + "SourceStructureID": 3756, + "TargetStructureID": 120538, + "Label": "3756-120538 via Ribbon Synapse from 116003 -> 120540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116003, + "TargetID": 120540, + "Directional": true + }] + }, { + "ID": 7882, + "SourceStructureID": 3756, + "TargetStructureID": 120544, + "Label": "3756-120544 via Ribbon Synapse from 54457 -> 128825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54457, + "TargetID": 128825, + "Directional": true + }] + }, { + "ID": 7883, + "SourceStructureID": 3756, + "TargetStructureID": 120554, + "Label": "3756-120554 via Ribbon Synapse from 56899 -> 129400", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56899, + "TargetID": 129400, + "Directional": true + }] + }, { + "ID": 7884, + "SourceStructureID": 3756, + "TargetStructureID": 120563, + "Label": "3756-120563 via Ribbon Synapse from 129001 -> 129002", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129001, + "TargetID": 129002, + "Directional": true + }] + }, { + "ID": 7885, + "SourceStructureID": 3756, + "TargetStructureID": 120953, + "Label": "3756-120953 via Ribbon Synapse from 56952 -> 120955", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56952, + "TargetID": 120955, + "Directional": true + }] + }, { + "ID": 7886, + "SourceStructureID": 3756, + "TargetStructureID": 120963, + "Label": "3756-120963 via Ribbon Synapse from 116293 -> 129166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116293, + "TargetID": 129166, + "Directional": true + }] + }, { + "ID": 7887, + "SourceStructureID": 3756, + "TargetStructureID": 125397, + "Label": "3756-125397 via Ribbon Synapse from 56913 -> 129454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56913, + "TargetID": 129454, + "Directional": true + }] + }, { + "ID": 7888, + "SourceStructureID": 3756, + "TargetStructureID": 128758, + "Label": "3756-128758 via Ribbon Synapse from 37802 -> 128759, 128760 -> 128759, 128761 -> 128759", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37802, + "TargetID": 128759, + "Directional": true + }, { + "SourceID": 128760, + "TargetID": 128759, + "Directional": true + }, { + "SourceID": 128761, + "TargetID": 128759, + "Directional": true + }] + }, { + "ID": 7889, + "SourceStructureID": 3756, + "TargetStructureID": 128790, + "Label": "3756-128790 via Ribbon Synapse from 93258 -> 128791, 93259 -> 128792, 116037 -> 128793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93258, + "TargetID": 128791, + "Directional": true + }, { + "SourceID": 93259, + "TargetID": 128792, + "Directional": true + }, { + "SourceID": 116037, + "TargetID": 128793, + "Directional": true + }] + }, { + "ID": 7890, + "SourceStructureID": 3756, + "TargetStructureID": 128803, + "Label": "3756-128803 via Ribbon Synapse from 116035 -> 128804", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116035, + "TargetID": 128804, + "Directional": true + }] + }, { + "ID": 7891, + "SourceStructureID": 3756, + "TargetStructureID": 128816, + "Label": "3756-128816 via Ribbon Synapse from 128814 -> 128818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128814, + "TargetID": 128818, + "Directional": true + }] + }, { + "ID": 7892, + "SourceStructureID": 3756, + "TargetStructureID": 128907, + "Label": "3756-128907 via Ribbon Synapse from 116017 -> 128908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116017, + "TargetID": 128908, + "Directional": true + }] + }, { + "ID": 7893, + "SourceStructureID": 3756, + "TargetStructureID": 128992, + "Label": "3756-128992 via Ribbon Synapse from 128993 -> 128995", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128993, + "TargetID": 128995, + "Directional": true + }] + }, { + "ID": 7894, + "SourceStructureID": 3756, + "TargetStructureID": 129465, + "Label": "3756-129465 via Ribbon Synapse from 129462 -> 129466", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129462, + "TargetID": 129466, + "Directional": true + }] + }, { + "ID": 7895, + "SourceStructureID": 3865, + "TargetStructureID": 181, + "Label": "3865-181 via Conventional from 36120 -> 34090", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36120, + "TargetID": 34090, + "Directional": true + }] + }, { + "ID": 7896, + "SourceStructureID": 3865, + "TargetStructureID": 968, + "Label": "3865-968 via Conventional from 132115 -> 132116", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132115, + "TargetID": 132116, + "Directional": true + }] + }, { + "ID": 7897, + "SourceStructureID": 3865, + "TargetStructureID": 5278, + "Label": "3865-5278 via Conventional from 36112 -> 114521, 99727 -> 20079, 99823 -> 20158", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36112, + "TargetID": 114521, + "Directional": true + }, { + "SourceID": 99727, + "TargetID": 20079, + "Directional": true + }, { + "SourceID": 99823, + "TargetID": 20158, + "Directional": true + }] + }, { + "ID": 7898, + "SourceStructureID": 3865, + "TargetStructureID": 6169, + "Label": "3865-6169 via Conventional from 36126 -> 36127", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36126, + "TargetID": 36127, + "Directional": true + }] + }, { + "ID": 7899, + "SourceStructureID": 3865, + "TargetStructureID": 8575, + "Label": "3865-8575 via Conventional from 132213 -> 132214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132213, + "TargetID": 132214, + "Directional": true + }] + }, { + "ID": 7900, + "SourceStructureID": 3865, + "TargetStructureID": 129648, + "Label": "3865-129648 via Conventional from 36123 -> 129652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36123, + "TargetID": 129652, + "Directional": true + }] + }, { + "ID": 7901, + "SourceStructureID": 3865, + "TargetStructureID": 132220, + "Label": "3865-132220 via Conventional from 132232 -> 132234", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132232, + "TargetID": 132234, + "Directional": true + }] + }, { + "ID": 7902, + "SourceStructureID": 3881, + "TargetStructureID": 5609, + "Label": "3881-5609 via Ribbon Synapse from 31396 -> 31395", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31396, + "TargetID": 31395, + "Directional": true + }] + }, { + "ID": 7903, + "SourceStructureID": 3881, + "TargetStructureID": 11229, + "Label": "3881-11229 via Ribbon Synapse from 28979 -> 28978, 135599 -> 135600", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28979, + "TargetID": 28978, + "Directional": true + }, { + "SourceID": 135599, + "TargetID": 135600, + "Directional": true + }] + }, { + "ID": 7904, + "SourceStructureID": 3928, + "TargetStructureID": 115, + "Label": "3928-115 via Ribbon Synapse from 42555 -> 8083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42555, + "TargetID": 8083, + "Directional": true + }] + }, { + "ID": 7905, + "SourceStructureID": 3928, + "TargetStructureID": 7225, + "Label": "3928-7225 via Ribbon Synapse from 40704 -> 42446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40704, + "TargetID": 42446, + "Directional": true + }] + }, { + "ID": 7906, + "SourceStructureID": 3928, + "TargetStructureID": 7274, + "Label": "3928-7274 via BC Conventional Synapse from 40680 -> 40676, 40823 -> 41813", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40680, + "TargetID": 40676, + "Directional": true + }, { + "SourceID": 40823, + "TargetID": 41813, + "Directional": true + }] + }, { + "ID": 7907, + "SourceStructureID": 3928, + "TargetStructureID": 7688, + "Label": "3928-7688 via BC Conventional Synapse from 36364 -> 40787", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36364, + "TargetID": 40787, + "Directional": true + }] + }, { + "ID": 7908, + "SourceStructureID": 3928, + "TargetStructureID": 8551, + "Label": "3928-8551 via Ribbon Synapse from 40707 -> 8559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40707, + "TargetID": 8559, + "Directional": true + }] + }, { + "ID": 7909, + "SourceStructureID": 3928, + "TargetStructureID": 46741, + "Label": "3928-46741 via Ribbon Synapse from 41457 -> 137006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 41457, + "TargetID": 137006, + "Directional": true + }] + }, { + "ID": 7910, + "SourceStructureID": 4568, + "TargetStructureID": 174, + "Label": "4568-174 via Ribbon Synapse from 21882 -> 21883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21882, + "TargetID": 21883, + "Directional": true + }] + }, { + "ID": 7911, + "SourceStructureID": 4568, + "TargetStructureID": 3257, + "Label": "4568-3257 via Ribbon Synapse from 11521 -> 66231, 11523 -> 12448", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11521, + "TargetID": 66231, + "Directional": true + }, { + "SourceID": 11523, + "TargetID": 12448, + "Directional": true + }] + }, { + "ID": 7912, + "SourceStructureID": 4568, + "TargetStructureID": 5435, + "Label": "4568-5435 via Ribbon Synapse from 11580 -> 41139, 11593 -> 41098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11580, + "TargetID": 41139, + "Directional": true + }, { + "SourceID": 11593, + "TargetID": 41098, + "Directional": true + }] + }, { + "ID": 7913, + "SourceStructureID": 4568, + "TargetStructureID": 6169, + "Label": "4568-6169 via Ribbon Synapse from 11551 -> 9473", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11551, + "TargetID": 9473, + "Directional": true + }] + }, { + "ID": 7914, + "SourceStructureID": 4568, + "TargetStructureID": 7859, + "Label": "4568-7859 via Ribbon Synapse from 11561 -> 64685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11561, + "TargetID": 64685, + "Directional": true + }] + }, { + "ID": 7915, + "SourceStructureID": 4568, + "TargetStructureID": 8575, + "Label": "4568-8575 via Ribbon Synapse from 11574 -> 62255", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11574, + "TargetID": 62255, + "Directional": true + }] + }, { + "ID": 7916, + "SourceStructureID": 4568, + "TargetStructureID": 43404, + "Label": "4568-43404 via Ribbon Synapse from 11521 -> 43405", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11521, + "TargetID": 43405, + "Directional": true + }] + }, { + "ID": 7917, + "SourceStructureID": 4568, + "TargetStructureID": 64777, + "Label": "4568-64777 via Ribbon Synapse from 11571 -> 64782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11571, + "TargetID": 64782, + "Directional": true + }] + }, { + "ID": 7918, + "SourceStructureID": 4569, + "TargetStructureID": 606, + "Label": "4569-606 via Ribbon Synapse from 47507 -> 50891, 53319 -> 53320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47507, + "TargetID": 50891, + "Directional": true + }, { + "SourceID": 53319, + "TargetID": 53320, + "Directional": true + }] + }, { + "ID": 7919, + "SourceStructureID": 4569, + "TargetStructureID": 6300, + "Label": "4569-6300 via Ribbon Synapse from 6296 -> 6301, 98552 -> 98553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6296, + "TargetID": 6301, + "Directional": true + }, { + "SourceID": 98552, + "TargetID": 98553, + "Directional": true + }] + }, { + "ID": 7920, + "SourceStructureID": 4569, + "TargetStructureID": 11072, + "Label": "4569-11072 via Ribbon Synapse from 11070 -> 11075", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11070, + "TargetID": 11075, + "Directional": true + }] + }, { + "ID": 7921, + "SourceStructureID": 4569, + "TargetStructureID": 18693, + "Label": "4569-18693 via Ribbon Synapse from 4738 -> 64724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4738, + "TargetID": 64724, + "Directional": true + }] + }, { + "ID": 7922, + "SourceStructureID": 4569, + "TargetStructureID": 20299, + "Label": "4569-20299 via Ribbon Synapse from 98682 -> 98691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98682, + "TargetID": 98691, + "Directional": true + }] + }, { + "ID": 7923, + "SourceStructureID": 4569, + "TargetStructureID": 38605, + "Label": "4569-38605 via Ribbon Synapse from 38615 -> 38614", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38615, + "TargetID": 38614, + "Directional": true + }] + }, { + "ID": 7924, + "SourceStructureID": 4569, + "TargetStructureID": 43327, + "Label": "4569-43327 via Ribbon Synapse from 6296 -> 43329, 6296 -> 99067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6296, + "TargetID": 43329, + "Directional": true + }, { + "SourceID": 6296, + "TargetID": 99067, + "Directional": true + }] + }, { + "ID": 7925, + "SourceStructureID": 4569, + "TargetStructureID": 89008, + "Label": "4569-89008 via Ribbon Synapse from 30860 -> 99021", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30860, + "TargetID": 99021, + "Directional": true + }] + }, { + "ID": 7926, + "SourceStructureID": 4569, + "TargetStructureID": 89388, + "Label": "4569-89388 via BC Conventional Synapse from 98954 -> 98953", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98954, + "TargetID": 98953, + "Directional": true + }] + }, { + "ID": 7927, + "SourceStructureID": 4569, + "TargetStructureID": 90280, + "Label": "4569-90280 via Ribbon Synapse from 52509 -> 98545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52509, + "TargetID": 98545, + "Directional": true + }] + }, { + "ID": 7928, + "SourceStructureID": 4569, + "TargetStructureID": 90483, + "Label": "4569-90483 via Ribbon Synapse from 38615 -> 90489, 90490 -> 90489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38615, + "TargetID": 90489, + "Directional": true + }, { + "SourceID": 90490, + "TargetID": 90489, + "Directional": true + }] + }, { + "ID": 7929, + "SourceStructureID": 4569, + "TargetStructureID": 97786, + "Label": "4569-97786 via Ribbon Synapse from 52448 -> 97789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52448, + "TargetID": 97789, + "Directional": true + }] + }, { + "ID": 7930, + "SourceStructureID": 4569, + "TargetStructureID": 97794, + "Label": "4569-97794 via Ribbon Synapse from 52460 -> 97795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52460, + "TargetID": 97795, + "Directional": true + }] + }, { + "ID": 7931, + "SourceStructureID": 4569, + "TargetStructureID": 97807, + "Label": "4569-97807 via Ribbon Synapse from 52464 -> 97808", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52464, + "TargetID": 97808, + "Directional": true + }] + }, { + "ID": 7932, + "SourceStructureID": 4569, + "TargetStructureID": 97810, + "Label": "4569-97810 via Ribbon Synapse from 97809 -> 97811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97809, + "TargetID": 97811, + "Directional": true + }] + }, { + "ID": 7933, + "SourceStructureID": 4569, + "TargetStructureID": 97812, + "Label": "4569-97812 via Ribbon Synapse from 97809 -> 97813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97809, + "TargetID": 97813, + "Directional": true + }] + }, { + "ID": 7934, + "SourceStructureID": 4569, + "TargetStructureID": 97819, + "Label": "4569-97819 via Ribbon Synapse from 52465 -> 97820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52465, + "TargetID": 97820, + "Directional": true + }] + }, { + "ID": 7935, + "SourceStructureID": 4569, + "TargetStructureID": 97855, + "Label": "4569-97855 via BC Conventional Synapse from 97854 -> 97856", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97854, + "TargetID": 97856, + "Directional": true + }] + }, { + "ID": 7936, + "SourceStructureID": 4569, + "TargetStructureID": 97864, + "Label": "4569-97864 via Ribbon Synapse from 4745 -> 97865", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4745, + "TargetID": 97865, + "Directional": true + }] + }, { + "ID": 7937, + "SourceStructureID": 4569, + "TargetStructureID": 98163, + "Label": "4569-98163 via Ribbon Synapse from 23784 -> 98164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23784, + "TargetID": 98164, + "Directional": true + }] + }, { + "ID": 7938, + "SourceStructureID": 4569, + "TargetStructureID": 98175, + "Label": "4569-98175 via Ribbon Synapse from 23788 -> 98176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23788, + "TargetID": 98176, + "Directional": true + }] + }, { + "ID": 7939, + "SourceStructureID": 4569, + "TargetStructureID": 98186, + "Label": "4569-98186 via BC Conventional Synapse from 98226 -> 98223, 98227 -> 98222", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98226, + "TargetID": 98223, + "Directional": true + }, { + "SourceID": 98227, + "TargetID": 98222, + "Directional": true + }] + }, { + "ID": 7940, + "SourceStructureID": 4569, + "TargetStructureID": 98195, + "Label": "4569-98195 via Ribbon Synapse from 23804 -> 98197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23804, + "TargetID": 98197, + "Directional": true + }] + }, { + "ID": 7941, + "SourceStructureID": 4569, + "TargetStructureID": 98208, + "Label": "4569-98208 via Ribbon Synapse from 23804 -> 98209", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23804, + "TargetID": 98209, + "Directional": true + }] + }, { + "ID": 7942, + "SourceStructureID": 4569, + "TargetStructureID": 98254, + "Label": "4569-98254 via Ribbon Synapse from 23794 -> 98256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23794, + "TargetID": 98256, + "Directional": true + }] + }, { + "ID": 7943, + "SourceStructureID": 4569, + "TargetStructureID": 98353, + "Label": "4569-98353 via Ribbon Synapse from 15999 -> 98354", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15999, + "TargetID": 98354, + "Directional": true + }] + }, { + "ID": 7944, + "SourceStructureID": 4569, + "TargetStructureID": 98372, + "Label": "4569-98372 via Ribbon Synapse from 47492 -> 98373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47492, + "TargetID": 98373, + "Directional": true + }] + }, { + "ID": 7945, + "SourceStructureID": 4569, + "TargetStructureID": 98375, + "Label": "4569-98375 via Ribbon Synapse from 47492 -> 98376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47492, + "TargetID": 98376, + "Directional": true + }] + }, { + "ID": 7946, + "SourceStructureID": 4569, + "TargetStructureID": 98377, + "Label": "4569-98377 via Ribbon Synapse from 47492 -> 98378", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47492, + "TargetID": 98378, + "Directional": true + }] + }, { + "ID": 7947, + "SourceStructureID": 4569, + "TargetStructureID": 98379, + "Label": "4569-98379 via Ribbon Synapse from 30827 -> 98380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30827, + "TargetID": 98380, + "Directional": true + }] + }, { + "ID": 7948, + "SourceStructureID": 4569, + "TargetStructureID": 98381, + "Label": "4569-98381 via Ribbon Synapse from 30827 -> 98382", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30827, + "TargetID": 98382, + "Directional": true + }] + }, { + "ID": 7949, + "SourceStructureID": 4569, + "TargetStructureID": 98424, + "Label": "4569-98424 via Ribbon Synapse from 30830 -> 98427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30830, + "TargetID": 98427, + "Directional": true + }] + }, { + "ID": 7950, + "SourceStructureID": 4569, + "TargetStructureID": 98436, + "Label": "4569-98436 via Ribbon Synapse from 92754 -> 98437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92754, + "TargetID": 98437, + "Directional": true + }] + }, { + "ID": 7951, + "SourceStructureID": 4569, + "TargetStructureID": 98449, + "Label": "4569-98449 via BC Conventional Synapse from 98448 -> 98450", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98448, + "TargetID": 98450, + "Directional": true + }] + }, { + "ID": 7952, + "SourceStructureID": 4569, + "TargetStructureID": 98453, + "Label": "4569-98453 via Ribbon Synapse from 98452 -> 98454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98452, + "TargetID": 98454, + "Directional": true + }] + }, { + "ID": 7953, + "SourceStructureID": 4569, + "TargetStructureID": 98471, + "Label": "4569-98471 via BC Conventional Synapse from 98470 -> 98473", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98470, + "TargetID": 98473, + "Directional": true + }] + }, { + "ID": 7954, + "SourceStructureID": 4569, + "TargetStructureID": 98475, + "Label": "4569-98475 via Ribbon Synapse from 30832 -> 98477", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30832, + "TargetID": 98477, + "Directional": true + }] + }, { + "ID": 7955, + "SourceStructureID": 4569, + "TargetStructureID": 98484, + "Label": "4569-98484 via Ribbon Synapse from 98481 -> 98497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98481, + "TargetID": 98497, + "Directional": true + }] + }, { + "ID": 7956, + "SourceStructureID": 4569, + "TargetStructureID": 98489, + "Label": "4569-98489 via Ribbon Synapse from 11070 -> 98490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11070, + "TargetID": 98490, + "Directional": true + }] + }, { + "ID": 7957, + "SourceStructureID": 4569, + "TargetStructureID": 98495, + "Label": "4569-98495 via Ribbon Synapse from 98481 -> 98496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98481, + "TargetID": 98496, + "Directional": true + }] + }, { + "ID": 7958, + "SourceStructureID": 4569, + "TargetStructureID": 98498, + "Label": "4569-98498 via Ribbon Synapse from 98480 -> 98499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98480, + "TargetID": 98499, + "Directional": true + }] + }, { + "ID": 7959, + "SourceStructureID": 4569, + "TargetStructureID": 98500, + "Label": "4569-98500 via Ribbon Synapse from 98480 -> 98501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98480, + "TargetID": 98501, + "Directional": true + }] + }, { + "ID": 7960, + "SourceStructureID": 4569, + "TargetStructureID": 98513, + "Label": "4569-98513 via Ribbon Synapse from 98509 -> 98514", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98509, + "TargetID": 98514, + "Directional": true + }] + }, { + "ID": 7961, + "SourceStructureID": 4569, + "TargetStructureID": 98517, + "Label": "4569-98517 via Ribbon Synapse from 98509 -> 98518", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98509, + "TargetID": 98518, + "Directional": true + }] + }, { + "ID": 7962, + "SourceStructureID": 4569, + "TargetStructureID": 98519, + "Label": "4569-98519 via Ribbon Synapse from 65202 -> 98520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65202, + "TargetID": 98520, + "Directional": true + }] + }, { + "ID": 7963, + "SourceStructureID": 4569, + "TargetStructureID": 98521, + "Label": "4569-98521 via Ribbon Synapse from 65202 -> 98522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65202, + "TargetID": 98522, + "Directional": true + }] + }, { + "ID": 7964, + "SourceStructureID": 4569, + "TargetStructureID": 98525, + "Label": "4569-98525 via BC Conventional Synapse from 98523 -> 98527", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98523, + "TargetID": 98527, + "Directional": true + }] + }, { + "ID": 7965, + "SourceStructureID": 4569, + "TargetStructureID": 98570, + "Label": "4569-98570 via BC Conventional Synapse from 98569 -> 98571", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98569, + "TargetID": 98571, + "Directional": true + }] + }, { + "ID": 7966, + "SourceStructureID": 4569, + "TargetStructureID": 98574, + "Label": "4569-98574 via Ribbon Synapse from 47504 -> 98602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47504, + "TargetID": 98602, + "Directional": true + }] + }, { + "ID": 7967, + "SourceStructureID": 4569, + "TargetStructureID": 98600, + "Label": "4569-98600 via Ribbon Synapse from 47504 -> 98601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47504, + "TargetID": 98601, + "Directional": true + }] + }, { + "ID": 7968, + "SourceStructureID": 4569, + "TargetStructureID": 98635, + "Label": "4569-98635 via Ribbon Synapse from 98634 -> 98639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98634, + "TargetID": 98639, + "Directional": true + }] + }, { + "ID": 7969, + "SourceStructureID": 4569, + "TargetStructureID": 98697, + "Label": "4569-98697 via BC Conventional Synapse from 98699 -> 98698", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98699, + "TargetID": 98698, + "Directional": true + }] + }, { + "ID": 7970, + "SourceStructureID": 4569, + "TargetStructureID": 98700, + "Label": "4569-98700 via BC Conventional Synapse from 98718 -> 98719", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98718, + "TargetID": 98719, + "Directional": true + }] + }, { + "ID": 7971, + "SourceStructureID": 4569, + "TargetStructureID": 98700, + "Label": "4569-98700 via Ribbon Synapse from 53319 -> 98701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53319, + "TargetID": 98701, + "Directional": true + }] + }, { + "ID": 7972, + "SourceStructureID": 4569, + "TargetStructureID": 98714, + "Label": "4569-98714 via Ribbon Synapse from 53682 -> 98715", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53682, + "TargetID": 98715, + "Directional": true + }] + }, { + "ID": 7973, + "SourceStructureID": 4569, + "TargetStructureID": 98716, + "Label": "4569-98716 via Ribbon Synapse from 53682 -> 98717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53682, + "TargetID": 98717, + "Directional": true + }] + }, { + "ID": 7974, + "SourceStructureID": 4569, + "TargetStructureID": 98740, + "Label": "4569-98740 via Ribbon Synapse from 98739 -> 98743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98739, + "TargetID": 98743, + "Directional": true + }] + }, { + "ID": 7975, + "SourceStructureID": 4569, + "TargetStructureID": 98745, + "Label": "4569-98745 via Ribbon Synapse from 47510 -> 98746", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47510, + "TargetID": 98746, + "Directional": true + }] + }, { + "ID": 7976, + "SourceStructureID": 4569, + "TargetStructureID": 98852, + "Label": "4569-98852 via Ribbon Synapse from 52513 -> 98853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52513, + "TargetID": 98853, + "Directional": true + }] + }, { + "ID": 7977, + "SourceStructureID": 4569, + "TargetStructureID": 98854, + "Label": "4569-98854 via Ribbon Synapse from 52515 -> 98855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52515, + "TargetID": 98855, + "Directional": true + }] + }, { + "ID": 7978, + "SourceStructureID": 4569, + "TargetStructureID": 98856, + "Label": "4569-98856 via Ribbon Synapse from 52515 -> 98857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52515, + "TargetID": 98857, + "Directional": true + }] + }, { + "ID": 7979, + "SourceStructureID": 4569, + "TargetStructureID": 98861, + "Label": "4569-98861 via Ribbon Synapse from 98860 -> 98862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98860, + "TargetID": 98862, + "Directional": true + }] + }, { + "ID": 7980, + "SourceStructureID": 4569, + "TargetStructureID": 98867, + "Label": "4569-98867 via Ribbon Synapse from 30836 -> 98868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30836, + "TargetID": 98868, + "Directional": true + }] + }, { + "ID": 7981, + "SourceStructureID": 4569, + "TargetStructureID": 98878, + "Label": "4569-98878 via Ribbon Synapse from 30838 -> 98879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30838, + "TargetID": 98879, + "Directional": true + }] + }, { + "ID": 7982, + "SourceStructureID": 4569, + "TargetStructureID": 98880, + "Label": "4569-98880 via Ribbon Synapse from 30837 -> 98881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30837, + "TargetID": 98881, + "Directional": true + }] + }, { + "ID": 7983, + "SourceStructureID": 4569, + "TargetStructureID": 98882, + "Label": "4569-98882 via Ribbon Synapse from 30837 -> 98883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30837, + "TargetID": 98883, + "Directional": true + }] + }, { + "ID": 7984, + "SourceStructureID": 4569, + "TargetStructureID": 98898, + "Label": "4569-98898 via Ribbon Synapse from 30844 -> 98906, 30845 -> 98905", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30844, + "TargetID": 98906, + "Directional": true + }, { + "SourceID": 30845, + "TargetID": 98905, + "Directional": true + }] + }, { + "ID": 7985, + "SourceStructureID": 4569, + "TargetStructureID": 98912, + "Label": "4569-98912 via Ribbon Synapse from 98911 -> 98913", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98911, + "TargetID": 98913, + "Directional": true + }] + }, { + "ID": 7986, + "SourceStructureID": 4569, + "TargetStructureID": 98927, + "Label": "4569-98927 via BC Conventional Synapse from 98926 -> 98928", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98926, + "TargetID": 98928, + "Directional": true + }] + }, { + "ID": 7987, + "SourceStructureID": 4569, + "TargetStructureID": 98929, + "Label": "4569-98929 via Ribbon Synapse from 52544 -> 98940", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52544, + "TargetID": 98940, + "Directional": true + }] + }, { + "ID": 7988, + "SourceStructureID": 4569, + "TargetStructureID": 98936, + "Label": "4569-98936 via Ribbon Synapse from 52544 -> 98939", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52544, + "TargetID": 98939, + "Directional": true + }] + }, { + "ID": 7989, + "SourceStructureID": 4569, + "TargetStructureID": 98941, + "Label": "4569-98941 via Ribbon Synapse from 52544 -> 98942", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52544, + "TargetID": 98942, + "Directional": true + }] + }, { + "ID": 7990, + "SourceStructureID": 4569, + "TargetStructureID": 98999, + "Label": "4569-98999 via Ribbon Synapse from 30858 -> 99000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30858, + "TargetID": 99000, + "Directional": true + }] + }, { + "ID": 7991, + "SourceStructureID": 4569, + "TargetStructureID": 99004, + "Label": "4569-99004 via Ribbon Synapse from 30860 -> 99005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30860, + "TargetID": 99005, + "Directional": true + }] + }, { + "ID": 7992, + "SourceStructureID": 4569, + "TargetStructureID": 99025, + "Label": "4569-99025 via BC Conventional Synapse from 99052 -> 99053", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99052, + "TargetID": 99053, + "Directional": true + }] + }, { + "ID": 7993, + "SourceStructureID": 4569, + "TargetStructureID": 99025, + "Label": "4569-99025 via Ribbon Synapse from 47533 -> 99030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47533, + "TargetID": 99030, + "Directional": true + }] + }, { + "ID": 7994, + "SourceStructureID": 4569, + "TargetStructureID": 99057, + "Label": "4569-99057 via Ribbon Synapse from 29786 -> 99060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29786, + "TargetID": 99060, + "Directional": true + }] + }, { + "ID": 7995, + "SourceStructureID": 4569, + "TargetStructureID": 99058, + "Label": "4569-99058 via Ribbon Synapse from 29786 -> 99059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29786, + "TargetID": 99059, + "Directional": true + }] + }, { + "ID": 7996, + "SourceStructureID": 4569, + "TargetStructureID": 99081, + "Label": "4569-99081 via Ribbon Synapse from 40130 -> 99084", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40130, + "TargetID": 99084, + "Directional": true + }] + }, { + "ID": 7997, + "SourceStructureID": 4569, + "TargetStructureID": 99100, + "Label": "4569-99100 via Ribbon Synapse from 23567 -> 99101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23567, + "TargetID": 99101, + "Directional": true + }] + }, { + "ID": 7998, + "SourceStructureID": 4570, + "TargetStructureID": 318, + "Label": "4570-318 via Ribbon Synapse from 4814 -> 14130, 14127 -> 14126, 14987 -> 14975", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4814, + "TargetID": 14130, + "Directional": true + }, { + "SourceID": 14127, + "TargetID": 14126, + "Directional": true + }, { + "SourceID": 14987, + "TargetID": 14975, + "Directional": true + }] + }, { + "ID": 7999, + "SourceStructureID": 4570, + "TargetStructureID": 390, + "Label": "4570-390 via Ribbon Synapse from 65216 -> 65215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65216, + "TargetID": 65215, + "Directional": true + }] + }, { + "ID": 8000, + "SourceStructureID": 4570, + "TargetStructureID": 906, + "Label": "4570-906 via Ribbon Synapse from 4750 -> 15192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4750, + "TargetID": 15192, + "Directional": true + }] + }, { + "ID": 8001, + "SourceStructureID": 4570, + "TargetStructureID": 4890, + "Label": "4570-4890 via Ribbon Synapse from 4770 -> 7910, 4771 -> 4891, 7909 -> 4892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4770, + "TargetID": 7910, + "Directional": true + }, { + "SourceID": 4771, + "TargetID": 4891, + "Directional": true + }, { + "SourceID": 7909, + "TargetID": 4892, + "Directional": true + }] + }, { + "ID": 8002, + "SourceStructureID": 4570, + "TargetStructureID": 5117, + "Label": "4570-5117 via Ribbon Synapse from 14399 -> 28793, 28537 -> 28787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14399, + "TargetID": 28793, + "Directional": true + }, { + "SourceID": 28537, + "TargetID": 28787, + "Directional": true + }] + }, { + "ID": 8003, + "SourceStructureID": 4570, + "TargetStructureID": 5118, + "Label": "4570-5118 via Ribbon Synapse from 13423 -> 6537", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13423, + "TargetID": 6537, + "Directional": true + }] + }, { + "ID": 8004, + "SourceStructureID": 4570, + "TargetStructureID": 5303, + "Label": "4570-5303 via Ribbon Synapse from 14404 -> 20762", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14404, + "TargetID": 20762, + "Directional": true + }] + }, { + "ID": 8005, + "SourceStructureID": 4570, + "TargetStructureID": 5350, + "Label": "4570-5350 via Ribbon Synapse from 4783 -> 10678, 4791 -> 10676, 10673 -> 10667", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4783, + "TargetID": 10678, + "Directional": true + }, { + "SourceID": 4791, + "TargetID": 10676, + "Directional": true + }, { + "SourceID": 10673, + "TargetID": 10667, + "Directional": true + }] + }, { + "ID": 8006, + "SourceStructureID": 4570, + "TargetStructureID": 8579, + "Label": "4570-8579 via Ribbon Synapse from 4757 -> 62657", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4757, + "TargetID": 62657, + "Directional": true + }] + }, { + "ID": 8007, + "SourceStructureID": 4570, + "TargetStructureID": 13855, + "Label": "4570-13855 via Ribbon Synapse from 4783 -> 36317, 4791 -> 36314, 14386 -> 36308", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4783, + "TargetID": 36317, + "Directional": true + }, { + "SourceID": 4791, + "TargetID": 36314, + "Directional": true + }, { + "SourceID": 14386, + "TargetID": 36308, + "Directional": true + }] + }, { + "ID": 8008, + "SourceStructureID": 4570, + "TargetStructureID": 29277, + "Label": "4570-29277 via Ribbon Synapse from 28539 -> 29302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28539, + "TargetID": 29302, + "Directional": true + }] + }, { + "ID": 8009, + "SourceStructureID": 4570, + "TargetStructureID": 29702, + "Label": "4570-29702 via Ribbon Synapse from 4761 -> 72628, 28513 -> 72628", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4761, + "TargetID": 72628, + "Directional": true + }, { + "SourceID": 28513, + "TargetID": 72628, + "Directional": true + }] + }, { + "ID": 8010, + "SourceStructureID": 4570, + "TargetStructureID": 31024, + "Label": "4570-31024 via Ribbon Synapse from 4759 -> 31085", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4759, + "TargetID": 31085, + "Directional": true + }] + }, { + "ID": 8011, + "SourceStructureID": 4570, + "TargetStructureID": 40010, + "Label": "4570-40010 via Ribbon Synapse from 14983 -> 40011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14983, + "TargetID": 40011, + "Directional": true + }] + }, { + "ID": 8012, + "SourceStructureID": 4570, + "TargetStructureID": 40858, + "Label": "4570-40858 via Ribbon Synapse from 123179 -> 123172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123179, + "TargetID": 123172, + "Directional": true + }] + }, { + "ID": 8013, + "SourceStructureID": 4570, + "TargetStructureID": 41474, + "Label": "4570-41474 via Conventional from 41529 -> 41528", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41529, + "TargetID": 41528, + "Directional": true + }] + }, { + "ID": 8014, + "SourceStructureID": 4570, + "TargetStructureID": 41474, + "Label": "4570-41474 via Ribbon Synapse from 4764 -> 41508, 123177 -> 123178", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 4764, + "TargetID": 41508, + "Directional": true + }, { + "SourceID": 123177, + "TargetID": 123178, + "Directional": true + }] + }, { + "ID": 8015, + "SourceStructureID": 4570, + "TargetStructureID": 71284, + "Label": "4570-71284 via BC Conventional Synapse from 71285 -> 71286", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71285, + "TargetID": 71286, + "Directional": true + }] + }, { + "ID": 8016, + "SourceStructureID": 4570, + "TargetStructureID": 88082, + "Label": "4570-88082 via Ribbon Synapse from 28516 -> 88083, 88086 -> 88085, 88089 -> 88090, 88091 -> 88090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28516, + "TargetID": 88083, + "Directional": true + }, { + "SourceID": 88086, + "TargetID": 88085, + "Directional": true + }, { + "SourceID": 88089, + "TargetID": 88090, + "Directional": true + }, { + "SourceID": 88091, + "TargetID": 88090, + "Directional": true + }] + }, { + "ID": 8017, + "SourceStructureID": 4835, + "TargetStructureID": 354, + "Label": "4835-354 via Conventional from 65735 -> 44673", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65735, + "TargetID": 44673, + "Directional": true + }] + }, { + "ID": 8018, + "SourceStructureID": 4835, + "TargetStructureID": 424, + "Label": "4835-424 via Conventional from 121853 -> 121852", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121853, + "TargetID": 121852, + "Directional": true + }] + }, { + "ID": 8019, + "SourceStructureID": 4835, + "TargetStructureID": 437, + "Label": "4835-437 via Conventional from 6640 -> 6634, 17604 -> 17605, 17608 -> 17606, 17609 -> 17607, 17612 -> 17613, 65738 -> 65715", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6640, + "TargetID": 6634, + "Directional": true + }, { + "SourceID": 17604, + "TargetID": 17605, + "Directional": true + }, { + "SourceID": 17608, + "TargetID": 17606, + "Directional": true + }, { + "SourceID": 17609, + "TargetID": 17607, + "Directional": true + }, { + "SourceID": 17612, + "TargetID": 17613, + "Directional": true + }, { + "SourceID": 65738, + "TargetID": 65715, + "Directional": true + }] + }, { + "ID": 8020, + "SourceStructureID": 4835, + "TargetStructureID": 455, + "Label": "4835-455 via Conventional from 21417 -> 7391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21417, + "TargetID": 7391, + "Directional": true + }] + }, { + "ID": 8021, + "SourceStructureID": 4835, + "TargetStructureID": 460, + "Label": "4835-460 via Conventional from 18034 -> 14442", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18034, + "TargetID": 14442, + "Directional": true + }] + }, { + "ID": 8022, + "SourceStructureID": 4835, + "TargetStructureID": 463, + "Label": "4835-463 via Conventional from 74144 -> 74143, 74149 -> 74148, 74151 -> 74150, 74176 -> 74175", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74144, + "TargetID": 74143, + "Directional": true + }, { + "SourceID": 74149, + "TargetID": 74148, + "Directional": true + }, { + "SourceID": 74151, + "TargetID": 74150, + "Directional": true + }, { + "SourceID": 74176, + "TargetID": 74175, + "Directional": true + }] + }, { + "ID": 8023, + "SourceStructureID": 4835, + "TargetStructureID": 9787, + "Label": "4835-9787 via Conventional from 12042 -> 12045, 12043 -> 12044, 12060 -> 9788, 18038 -> 18037, 18650 -> 12066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12042, + "TargetID": 12045, + "Directional": true + }, { + "SourceID": 12043, + "TargetID": 12044, + "Directional": true + }, { + "SourceID": 12060, + "TargetID": 9788, + "Directional": true + }, { + "SourceID": 18038, + "TargetID": 18037, + "Directional": true + }, { + "SourceID": 18650, + "TargetID": 12066, + "Directional": true + }] + }, { + "ID": 8024, + "SourceStructureID": 4835, + "TargetStructureID": 131516, + "Label": "4835-131516 via Conventional from 18043 -> 131523", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18043, + "TargetID": 131523, + "Directional": true + }] + }, { + "ID": 8025, + "SourceStructureID": 4849, + "TargetStructureID": 115, + "Label": "4849-115 via Conventional from 42566 -> 10796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42566, + "TargetID": 10796, + "Directional": true + }] + }, { + "ID": 8026, + "SourceStructureID": 4849, + "TargetStructureID": 115, + "Label": "4849-115 via Ribbon Synapse from 40563 -> 10794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40563, + "TargetID": 10794, + "Directional": true + }] + }, { + "ID": 8027, + "SourceStructureID": 4849, + "TargetStructureID": 3865, + "Label": "4849-3865 via Ribbon Synapse from 132102 -> 132098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132102, + "TargetID": 132098, + "Directional": true + }] + }, { + "ID": 8028, + "SourceStructureID": 4849, + "TargetStructureID": 5372, + "Label": "4849-5372 via Ribbon Synapse from 26120 -> 26115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26120, + "TargetID": 26115, + "Directional": true + }] + }, { + "ID": 8029, + "SourceStructureID": 4849, + "TargetStructureID": 8575, + "Label": "4849-8575 via BC Conventional Synapse from 26121 -> 62282, 62281 -> 62280", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26121, + "TargetID": 62282, + "Directional": true + }, { + "SourceID": 62281, + "TargetID": 62280, + "Directional": true + }] + }, { + "ID": 8030, + "SourceStructureID": 4850, + "TargetStructureID": 294, + "Label": "4850-294 via Conventional from 22532 -> 22534, 22533 -> 22535, 22537 -> 22536, 22538 -> 22539", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22532, + "TargetID": 22534, + "Directional": true + }, { + "SourceID": 22533, + "TargetID": 22535, + "Directional": true + }, { + "SourceID": 22537, + "TargetID": 22536, + "Directional": true + }, { + "SourceID": 22538, + "TargetID": 22539, + "Directional": true + }] + }, { + "ID": 8031, + "SourceStructureID": 4850, + "TargetStructureID": 369, + "Label": "4850-369 via Conventional from 83682 -> 29554, 83684 -> 83685, 83687 -> 83689, 83688 -> 83690", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83682, + "TargetID": 29554, + "Directional": true + }, { + "SourceID": 83684, + "TargetID": 83685, + "Directional": true + }, { + "SourceID": 83687, + "TargetID": 83689, + "Directional": true + }, { + "SourceID": 83688, + "TargetID": 83690, + "Directional": true + }] + }, { + "ID": 8032, + "SourceStructureID": 4850, + "TargetStructureID": 516, + "Label": "4850-516 via Conventional from 14209 -> 6508, 14210 -> 14211", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14209, + "TargetID": 6508, + "Directional": true + }, { + "SourceID": 14210, + "TargetID": 14211, + "Directional": true + }] + }, { + "ID": 8033, + "SourceStructureID": 4850, + "TargetStructureID": 517, + "Label": "4850-517 via Conventional from 14200 -> 14168, 14201 -> 14164, 14205 -> 14164", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14200, + "TargetID": 14168, + "Directional": true + }, { + "SourceID": 14201, + "TargetID": 14164, + "Directional": true + }, { + "SourceID": 14205, + "TargetID": 14164, + "Directional": true + }] + }, { + "ID": 8034, + "SourceStructureID": 4850, + "TargetStructureID": 5563, + "Label": "4850-5563 via Conventional from 14303 -> 14304, 14306 -> 14307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14303, + "TargetID": 14304, + "Directional": true + }, { + "SourceID": 14306, + "TargetID": 14307, + "Directional": true + }] + }, { + "ID": 8035, + "SourceStructureID": 4850, + "TargetStructureID": 6169, + "Label": "4850-6169 via Conventional from 14202 -> 14204, 14206 -> 9460", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14202, + "TargetID": 14204, + "Directional": true + }, { + "SourceID": 14206, + "TargetID": 9460, + "Directional": true + }] + }, { + "ID": 8036, + "SourceStructureID": 4850, + "TargetStructureID": 6618, + "Label": "4850-6618 via Conventional from 30712 -> 30711, 30713 -> 30710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30712, + "TargetID": 30711, + "Directional": true + }, { + "SourceID": 30713, + "TargetID": 30710, + "Directional": true + }] + }, { + "ID": 8037, + "SourceStructureID": 4850, + "TargetStructureID": 7054, + "Label": "4850-7054 via Conventional from 19465 -> 19466, 19469 -> 19472, 97847 -> 97848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 19465, + "TargetID": 19466, + "Directional": true + }, { + "SourceID": 19469, + "TargetID": 19472, + "Directional": true + }, { + "SourceID": 97847, + "TargetID": 97848, + "Directional": true + }] + }, { + "ID": 8038, + "SourceStructureID": 4850, + "TargetStructureID": 9693, + "Label": "4850-9693 via Conventional from 15389 -> 15390, 15392 -> 15076", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15389, + "TargetID": 15390, + "Directional": true + }, { + "SourceID": 15392, + "TargetID": 15076, + "Directional": true + }] + }, { + "ID": 8039, + "SourceStructureID": 4850, + "TargetStructureID": 10897, + "Label": "4850-10897 via Conventional from 22548 -> 13833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22548, + "TargetID": 13833, + "Directional": true + }] + }, { + "ID": 8040, + "SourceStructureID": 4850, + "TargetStructureID": 10931, + "Label": "4850-10931 via Conventional from 14213 -> 14214, 14222 -> 14224, 14223 -> 14225, 14231 -> 14232", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14213, + "TargetID": 14214, + "Directional": true + }, { + "SourceID": 14222, + "TargetID": 14224, + "Directional": true + }, { + "SourceID": 14223, + "TargetID": 14225, + "Directional": true + }, { + "SourceID": 14231, + "TargetID": 14232, + "Directional": true + }] + }, { + "ID": 8041, + "SourceStructureID": 4850, + "TargetStructureID": 11033, + "Label": "4850-11033 via Conventional from 33898 -> 33901, 33899 -> 33904, 33900 -> 33902", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33898, + "TargetID": 33901, + "Directional": true + }, { + "SourceID": 33899, + "TargetID": 33904, + "Directional": true + }, { + "SourceID": 33900, + "TargetID": 33902, + "Directional": true + }] + }, { + "ID": 8042, + "SourceStructureID": 4850, + "TargetStructureID": 11172, + "Label": "4850-11172 via Conventional from 22549 -> 22550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22549, + "TargetID": 22550, + "Directional": true + }] + }, { + "ID": 8043, + "SourceStructureID": 4876, + "TargetStructureID": 597, + "Label": "4876-597 via Ribbon Synapse from 60472 -> 60470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60472, + "TargetID": 60470, + "Directional": true + }] + }, { + "ID": 8044, + "SourceStructureID": 4876, + "TargetStructureID": 608, + "Label": "4876-608 via Ribbon Synapse from 131361 -> 148297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131361, + "TargetID": 148297, + "Directional": true + }] + }, { + "ID": 8045, + "SourceStructureID": 4876, + "TargetStructureID": 4876, + "Label": "4876-4876 via Ribbon Synapse from 131361 -> 44420", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131361, + "TargetID": 44420, + "Directional": true + }] + }, { + "ID": 8046, + "SourceStructureID": 4876, + "TargetStructureID": 5441, + "Label": "4876-5441 via Ribbon Synapse from 91462 -> 91452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91462, + "TargetID": 91452, + "Directional": true + }] + }, { + "ID": 8047, + "SourceStructureID": 4876, + "TargetStructureID": 6857, + "Label": "4876-6857 via Ribbon Synapse from 18997 -> 18899, 19000 -> 19001, 19002 -> 7519, 19004 -> 19005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18997, + "TargetID": 18899, + "Directional": true + }, { + "SourceID": 19000, + "TargetID": 19001, + "Directional": true + }, { + "SourceID": 19002, + "TargetID": 7519, + "Directional": true + }, { + "SourceID": 19004, + "TargetID": 19005, + "Directional": true + }] + }, { + "ID": 8048, + "SourceStructureID": 4876, + "TargetStructureID": 7147, + "Label": "4876-7147 via Ribbon Synapse from 19114 -> 52243, 114062 -> 114061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19114, + "TargetID": 52243, + "Directional": true + }, { + "SourceID": 114062, + "TargetID": 114061, + "Directional": true + }] + }, { + "ID": 8049, + "SourceStructureID": 4877, + "TargetStructureID": 5435, + "Label": "4877-5435 via Ribbon Synapse from 24357 -> 24356", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24357, + "TargetID": 24356, + "Directional": true + }] + }, { + "ID": 8050, + "SourceStructureID": 4877, + "TargetStructureID": 5491, + "Label": "4877-5491 via BC Conventional Synapse from 54709 -> 54710", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54709, + "TargetID": 54710, + "Directional": true + }] + }, { + "ID": 8051, + "SourceStructureID": 4877, + "TargetStructureID": 5491, + "Label": "4877-5491 via Ribbon Synapse from 126824 -> 135623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126824, + "TargetID": 135623, + "Directional": true + }] + }, { + "ID": 8052, + "SourceStructureID": 4877, + "TargetStructureID": 9769, + "Label": "4877-9769 via Ribbon Synapse from 23964 -> 23959, 54702 -> 54703, 91384 -> 147815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23964, + "TargetID": 23959, + "Directional": true + }, { + "SourceID": 54702, + "TargetID": 54703, + "Directional": true + }, { + "SourceID": 91384, + "TargetID": 147815, + "Directional": true + }] + }, { + "ID": 8053, + "SourceStructureID": 4877, + "TargetStructureID": 15796, + "Label": "4877-15796 via Ribbon Synapse from 20272 -> 20268, 46441 -> 46442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20272, + "TargetID": 20268, + "Directional": true + }, { + "SourceID": 46441, + "TargetID": 46442, + "Directional": true + }] + }, { + "ID": 8054, + "SourceStructureID": 4877, + "TargetStructureID": 35212, + "Label": "4877-35212 via Ribbon Synapse from 33385 -> 35217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33385, + "TargetID": 35217, + "Directional": true + }] + }, { + "ID": 8055, + "SourceStructureID": 4877, + "TargetStructureID": 38307, + "Label": "4877-38307 via Ribbon Synapse from 33305 -> 38334", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33305, + "TargetID": 38334, + "Directional": true + }] + }, { + "ID": 8056, + "SourceStructureID": 4877, + "TargetStructureID": 43716, + "Label": "4877-43716 via BC Conventional Synapse from 123571 -> 123570", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123571, + "TargetID": 123570, + "Directional": true + }] + }, { + "ID": 8057, + "SourceStructureID": 4877, + "TargetStructureID": 43716, + "Label": "4877-43716 via Ribbon Synapse from 54702 -> 54704, 54707 -> 54708, 54716 -> 54715, 56595 -> 123569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54702, + "TargetID": 54704, + "Directional": true + }, { + "SourceID": 54707, + "TargetID": 54708, + "Directional": true + }, { + "SourceID": 54716, + "TargetID": 54715, + "Directional": true + }, { + "SourceID": 56595, + "TargetID": 123569, + "Directional": true + }] + }, { + "ID": 8058, + "SourceStructureID": 4877, + "TargetStructureID": 44346, + "Label": "4877-44346 via Ribbon Synapse from 33392 -> 44455, 44453 -> 44452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33392, + "TargetID": 44455, + "Directional": true + }, { + "SourceID": 44453, + "TargetID": 44452, + "Directional": true + }] + }, { + "ID": 8059, + "SourceStructureID": 4877, + "TargetStructureID": 54778, + "Label": "4877-54778 via BC Conventional Synapse from 126850 -> 126851", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126850, + "TargetID": 126851, + "Directional": true + }] + }, { + "ID": 8060, + "SourceStructureID": 4877, + "TargetStructureID": 54818, + "Label": "4877-54818 via Ribbon Synapse from 54821 -> 54820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54821, + "TargetID": 54820, + "Directional": true + }] + }, { + "ID": 8061, + "SourceStructureID": 4877, + "TargetStructureID": 58592, + "Label": "4877-58592 via Ribbon Synapse from 33307 -> 58660", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33307, + "TargetID": 58660, + "Directional": true + }] + }, { + "ID": 8062, + "SourceStructureID": 4877, + "TargetStructureID": 58642, + "Label": "4877-58642 via Ribbon Synapse from 33385 -> 58647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33385, + "TargetID": 58647, + "Directional": true + }] + }, { + "ID": 8063, + "SourceStructureID": 4877, + "TargetStructureID": 72299, + "Label": "4877-72299 via Ribbon Synapse from 33384 -> 82117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33384, + "TargetID": 82117, + "Directional": true + }] + }, { + "ID": 8064, + "SourceStructureID": 4877, + "TargetStructureID": 82071, + "Label": "4877-82071 via Ribbon Synapse from 33311 -> 82503, 33312 -> 82504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33311, + "TargetID": 82503, + "Directional": true + }, { + "SourceID": 33312, + "TargetID": 82504, + "Directional": true + }] + }, { + "ID": 8065, + "SourceStructureID": 4877, + "TargetStructureID": 126582, + "Label": "4877-126582 via Ribbon Synapse from 126581 -> 126583", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126581, + "TargetID": 126583, + "Directional": true + }] + }, { + "ID": 8066, + "SourceStructureID": 4877, + "TargetStructureID": 127764, + "Label": "4877-127764 via Ribbon Synapse from 62755 -> 129273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62755, + "TargetID": 129273, + "Directional": true + }] + }, { + "ID": 8067, + "SourceStructureID": 4877, + "TargetStructureID": 136432, + "Label": "4877-136432 via Ribbon Synapse from 133995 -> 136534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133995, + "TargetID": 136534, + "Directional": true + }] + }, { + "ID": 8068, + "SourceStructureID": 4890, + "TargetStructureID": 397, + "Label": "4890-397 via Conventional from 71055 -> 71056", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71055, + "TargetID": 71056, + "Directional": true + }] + }, { + "ID": 8069, + "SourceStructureID": 4890, + "TargetStructureID": 5514, + "Label": "4890-5514 via Conventional from 64870 -> 50662, 64871 -> 50701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64870, + "TargetID": 50662, + "Directional": true + }, { + "SourceID": 64871, + "TargetID": 50701, + "Directional": true + }] + }, { + "ID": 8070, + "SourceStructureID": 4890, + "TargetStructureID": 5530, + "Label": "4890-5530 via Conventional from 82064 -> 82065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82064, + "TargetID": 82065, + "Directional": true + }] + }, { + "ID": 8071, + "SourceStructureID": 4890, + "TargetStructureID": 6156, + "Label": "4890-6156 via Postsynapse from 133469 -> 91270", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 133469, + "TargetID": 91270, + "Directional": true + }] + }, { + "ID": 8072, + "SourceStructureID": 4890, + "TargetStructureID": 7024, + "Label": "4890-7024 via Conventional from 64879 -> 64880", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64879, + "TargetID": 64880, + "Directional": true + }] + }, { + "ID": 8073, + "SourceStructureID": 4890, + "TargetStructureID": 50449, + "Label": "4890-50449 via Conventional from 64875 -> 50599, 64877 -> 50658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64875, + "TargetID": 50599, + "Directional": true + }, { + "SourceID": 64877, + "TargetID": 50658, + "Directional": true + }] + }, { + "ID": 8074, + "SourceStructureID": 4890, + "TargetStructureID": 62777, + "Label": "4890-62777 via Conventional from 64884 -> 64885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64884, + "TargetID": 64885, + "Directional": true + }] + }, { + "ID": 8075, + "SourceStructureID": 4890, + "TargetStructureID": 64887, + "Label": "4890-64887 via Conventional from 64886 -> 64889", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64886, + "TargetID": 64889, + "Directional": true + }] + }, { + "ID": 8076, + "SourceStructureID": 4890, + "TargetStructureID": 64923, + "Label": "4890-64923 via Conventional from 64922 -> 64924", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64922, + "TargetID": 64924, + "Directional": true + }] + }, { + "ID": 8077, + "SourceStructureID": 4890, + "TargetStructureID": 70924, + "Label": "4890-70924 via Conventional from 20525 -> 70937, 70940 -> 70939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20525, + "TargetID": 70937, + "Directional": true + }, { + "SourceID": 70940, + "TargetID": 70939, + "Directional": true + }] + }, { + "ID": 8078, + "SourceStructureID": 4941, + "TargetStructureID": 518, + "Label": "4941-518 via Conventional from 5750 -> 3464, 36660 -> 3298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 5750, + "TargetID": 3464, + "Directional": true + }, { + "SourceID": 36660, + "TargetID": 3298, + "Directional": true + }] + }, { + "ID": 8079, + "SourceStructureID": 4942, + "TargetStructureID": 518, + "Label": "4942-518 via Conventional from 5751 -> 3480, 36658 -> 3301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 5751, + "TargetID": 3480, + "Directional": true + }, { + "SourceID": 36658, + "TargetID": 3301, + "Directional": true + }] + }, { + "ID": 8080, + "SourceStructureID": 4943, + "TargetStructureID": 469, + "Label": "4943-469 via Conventional from 13426 -> 4664, 13429 -> 4673", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 13426, + "TargetID": 4664, + "Directional": true + }, { + "SourceID": 13429, + "TargetID": 4673, + "Directional": true + }] + }, { + "ID": 8081, + "SourceStructureID": 4943, + "TargetStructureID": 514, + "Label": "4943-514 via Conventional from 13433 -> 14957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 13433, + "TargetID": 14957, + "Directional": true + }] + }, { + "ID": 8082, + "SourceStructureID": 4943, + "TargetStructureID": 517, + "Label": "4943-517 via Conventional from 42786 -> 40978", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42786, + "TargetID": 40978, + "Directional": true + }] + }, { + "ID": 8083, + "SourceStructureID": 4943, + "TargetStructureID": 518, + "Label": "4943-518 via Conventional from 8501 -> 3467", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8501, + "TargetID": 3467, + "Directional": true + }] + }, { + "ID": 8084, + "SourceStructureID": 4943, + "TargetStructureID": 3881, + "Label": "4943-3881 via Conventional from 4969 -> 3883", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 4969, + "TargetID": 3883, + "Directional": true + }] + }, { + "ID": 8085, + "SourceStructureID": 4943, + "TargetStructureID": 5923, + "Label": "4943-5923 via Conventional from 4996 -> 8690", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 4996, + "TargetID": 8690, + "Directional": true + }] + }, { + "ID": 8086, + "SourceStructureID": 4943, + "TargetStructureID": 8586, + "Label": "4943-8586 via Conventional from 4967 -> 8665", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 4967, + "TargetID": 8665, + "Directional": true + }] + }, { + "ID": 8087, + "SourceStructureID": 4943, + "TargetStructureID": 10815, + "Label": "4943-10815 via Conventional from 43370 -> 43371, 43374 -> 43375, 43378 -> 43379", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43370, + "TargetID": 43371, + "Directional": true + }, { + "SourceID": 43374, + "TargetID": 43375, + "Directional": true + }, { + "SourceID": 43378, + "TargetID": 43379, + "Directional": true + }] + }, { + "ID": 8088, + "SourceStructureID": 4943, + "TargetStructureID": 10826, + "Label": "4943-10826 via Conventional from 43251 -> 43252, 43253 -> 43254", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43251, + "TargetID": 43252, + "Directional": true + }, { + "SourceID": 43253, + "TargetID": 43254, + "Directional": true + }] + }, { + "ID": 8089, + "SourceStructureID": 4943, + "TargetStructureID": 10957, + "Label": "4943-10957 via Conventional from 83508 -> 83509, 83518 -> 83521, 83519 -> 83522, 83520 -> 83523, 83524 -> 83526, 83525 -> 83527", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83508, + "TargetID": 83509, + "Directional": true + }, { + "SourceID": 83518, + "TargetID": 83521, + "Directional": true + }, { + "SourceID": 83519, + "TargetID": 83522, + "Directional": true + }, { + "SourceID": 83520, + "TargetID": 83523, + "Directional": true + }, { + "SourceID": 83524, + "TargetID": 83526, + "Directional": true + }, { + "SourceID": 83525, + "TargetID": 83527, + "Directional": true + }] + }, { + "ID": 8090, + "SourceStructureID": 4943, + "TargetStructureID": 11031, + "Label": "4943-11031 via Conventional from 40982 -> 40983", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40982, + "TargetID": 40983, + "Directional": true + }] + }, { + "ID": 8091, + "SourceStructureID": 4943, + "TargetStructureID": 15969, + "Label": "4943-15969 via Conventional from 43275 -> 43276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43275, + "TargetID": 43276, + "Directional": true + }] + }, { + "ID": 8092, + "SourceStructureID": 5006, + "TargetStructureID": 518, + "Label": "5006-518 via Conventional from 5009 -> 3300, 5010 -> 3494, 9642 -> 9641, 36656 -> 3461", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 5009, + "TargetID": 3300, + "Directional": true + }, { + "SourceID": 5010, + "TargetID": 3494, + "Directional": true + }, { + "SourceID": 9642, + "TargetID": 9641, + "Directional": true + }, { + "SourceID": 36656, + "TargetID": 3461, + "Directional": true + }] + }, { + "ID": 8093, + "SourceStructureID": 5017, + "TargetStructureID": 308, + "Label": "5017-308 via Ribbon Synapse from 42553 -> 86720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42553, + "TargetID": 86720, + "Directional": true + }] + }, { + "ID": 8094, + "SourceStructureID": 5017, + "TargetStructureID": 514, + "Label": "5017-514 via Ribbon Synapse from 5021 -> 5014, 13821 -> 13816, 13829 -> 13828, 16152 -> 16151, 17048 -> 17049, 17066 -> 17083, 17068 -> 17938, 133284 -> 133285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5021, + "TargetID": 5014, + "Directional": true + }, { + "SourceID": 13821, + "TargetID": 13816, + "Directional": true + }, { + "SourceID": 13829, + "TargetID": 13828, + "Directional": true + }, { + "SourceID": 16152, + "TargetID": 16151, + "Directional": true + }, { + "SourceID": 17048, + "TargetID": 17049, + "Directional": true + }, { + "SourceID": 17066, + "TargetID": 17083, + "Directional": true + }, { + "SourceID": 17068, + "TargetID": 17938, + "Directional": true + }, { + "SourceID": 133284, + "TargetID": 133285, + "Directional": true + }] + }, { + "ID": 8095, + "SourceStructureID": 5017, + "TargetStructureID": 2610, + "Label": "5017-2610 via Ribbon Synapse from 13818 -> 13817, 17054 -> 3616, 17065 -> 17064, 17099 -> 17100, 17104 -> 13788, 17974 -> 17973, 17987 -> 17985, 17988 -> 17986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13818, + "TargetID": 13817, + "Directional": true + }, { + "SourceID": 17054, + "TargetID": 3616, + "Directional": true + }, { + "SourceID": 17065, + "TargetID": 17064, + "Directional": true + }, { + "SourceID": 17099, + "TargetID": 17100, + "Directional": true + }, { + "SourceID": 17104, + "TargetID": 13788, + "Directional": true + }, { + "SourceID": 17974, + "TargetID": 17973, + "Directional": true + }, { + "SourceID": 17987, + "TargetID": 17985, + "Directional": true + }, { + "SourceID": 17988, + "TargetID": 17986, + "Directional": true + }] + }, { + "ID": 8096, + "SourceStructureID": 5017, + "TargetStructureID": 3679, + "Label": "5017-3679 via Ribbon Synapse from 5027 -> 66141, 17056 -> 3832, 17060 -> 3830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5027, + "TargetID": 66141, + "Directional": true + }, { + "SourceID": 17056, + "TargetID": 3832, + "Directional": true + }, { + "SourceID": 17060, + "TargetID": 3830, + "Directional": true + }] + }, { + "ID": 8097, + "SourceStructureID": 5017, + "TargetStructureID": 9260, + "Label": "5017-9260 via Ribbon Synapse from 5035 -> 96772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 5035, + "TargetID": 96772, + "Directional": true + }] + }, { + "ID": 8098, + "SourceStructureID": 5017, + "TargetStructureID": 25575, + "Label": "5017-25575 via Ribbon Synapse from 25581 -> 25580, 25583 -> 25582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25581, + "TargetID": 25580, + "Directional": true + }, { + "SourceID": 25583, + "TargetID": 25582, + "Directional": true + }] + }, { + "ID": 8099, + "SourceStructureID": 5017, + "TargetStructureID": 25669, + "Label": "5017-25669 via Ribbon Synapse from 25687 -> 25686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25687, + "TargetID": 25686, + "Directional": true + }] + }, { + "ID": 8100, + "SourceStructureID": 5017, + "TargetStructureID": 39530, + "Label": "5017-39530 via Ribbon Synapse from 17054 -> 39555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17054, + "TargetID": 39555, + "Directional": true + }] + }, { + "ID": 8101, + "SourceStructureID": 5017, + "TargetStructureID": 61214, + "Label": "5017-61214 via Ribbon Synapse from 17066 -> 61241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17066, + "TargetID": 61241, + "Directional": true + }] + }, { + "ID": 8102, + "SourceStructureID": 5057, + "TargetStructureID": 397, + "Label": "5057-397 via Conventional from 45641 -> 122673", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45641, + "TargetID": 122673, + "Directional": true + }] + }, { + "ID": 8103, + "SourceStructureID": 5057, + "TargetStructureID": 606, + "Label": "5057-606 via Conventional from 10225 -> 45602", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10225, + "TargetID": 45602, + "Directional": true + }] + }, { + "ID": 8104, + "SourceStructureID": 5057, + "TargetStructureID": 6912, + "Label": "5057-6912 via Conventional from 10224 -> 6923", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10224, + "TargetID": 6923, + "Directional": true + }] + }, { + "ID": 8105, + "SourceStructureID": 5057, + "TargetStructureID": 7594, + "Label": "5057-7594 via Conventional from 45654 -> 45655", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45654, + "TargetID": 45655, + "Directional": true + }] + }, { + "ID": 8106, + "SourceStructureID": 5107, + "TargetStructureID": 5107, + "Label": "5107-5107 via Conventional from 148322 -> 148320", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148322, + "TargetID": 148320, + "Directional": true + }] + }, { + "ID": 8107, + "SourceStructureID": 5117, + "TargetStructureID": 483, + "Label": "5117-483 via Cistern Pre from 28781 -> 28784", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 28781, + "TargetID": 28784, + "Directional": true + }] + }, { + "ID": 8108, + "SourceStructureID": 5117, + "TargetStructureID": 61864, + "Label": "5117-61864 via Conventional from 69342 -> 69343", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69342, + "TargetID": 69343, + "Directional": true + }] + }, { + "ID": 8109, + "SourceStructureID": 5278, + "TargetStructureID": 3865, + "Label": "5278-3865 via Ribbon Synapse from 20077 -> 99726, 20157 -> 99822, 95952 -> 36111, 104833 -> 104840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20077, + "TargetID": 99726, + "Directional": true + }, { + "SourceID": 20157, + "TargetID": 99822, + "Directional": true + }, { + "SourceID": 95952, + "TargetID": 36111, + "Directional": true + }, { + "SourceID": 104833, + "TargetID": 104840, + "Directional": true + }] + }, { + "ID": 8110, + "SourceStructureID": 5278, + "TargetStructureID": 5107, + "Label": "5278-5107 via Ribbon Synapse from 11208 -> 104215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11208, + "TargetID": 104215, + "Directional": true + }] + }, { + "ID": 8111, + "SourceStructureID": 5278, + "TargetStructureID": 6406, + "Label": "5278-6406 via Ribbon Synapse from 20091 -> 20093", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20091, + "TargetID": 20093, + "Directional": true + }] + }, { + "ID": 8112, + "SourceStructureID": 5278, + "TargetStructureID": 8575, + "Label": "5278-8575 via BC Conventional Synapse from 62069 -> 62068, 93411 -> 93412, 104822 -> 62259", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62069, + "TargetID": 62068, + "Directional": true + }, { + "SourceID": 93411, + "TargetID": 93412, + "Directional": true + }, { + "SourceID": 104822, + "TargetID": 62259, + "Directional": true + }] + }, { + "ID": 8113, + "SourceStructureID": 5278, + "TargetStructureID": 8579, + "Label": "5278-8579 via Ribbon Synapse from 92309 -> 114300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92309, + "TargetID": 114300, + "Directional": true + }] + }, { + "ID": 8114, + "SourceStructureID": 5278, + "TargetStructureID": 15796, + "Label": "5278-15796 via BC Conventional Synapse from 147262 -> 147261, 147320 -> 147319", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147262, + "TargetID": 147261, + "Directional": true + }, { + "SourceID": 147320, + "TargetID": 147319, + "Directional": true + }] + }, { + "ID": 8115, + "SourceStructureID": 5278, + "TargetStructureID": 16073, + "Label": "5278-16073 via BC Conventional Synapse from 19885 -> 19881, 92023 -> 19874", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19885, + "TargetID": 19881, + "Directional": true + }, { + "SourceID": 92023, + "TargetID": 19874, + "Directional": true + }] + }, { + "ID": 8116, + "SourceStructureID": 5278, + "TargetStructureID": 16073, + "Label": "5278-16073 via Ribbon Synapse from 20017 -> 20018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20017, + "TargetID": 20018, + "Directional": true + }] + }, { + "ID": 8117, + "SourceStructureID": 5278, + "TargetStructureID": 18693, + "Label": "5278-18693 via Ribbon Synapse from 8980 -> 100412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8980, + "TargetID": 100412, + "Directional": true + }] + }, { + "ID": 8118, + "SourceStructureID": 5278, + "TargetStructureID": 27304, + "Label": "5278-27304 via Ribbon Synapse from 20069 -> 27306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20069, + "TargetID": 27306, + "Directional": true + }] + }, { + "ID": 8119, + "SourceStructureID": 5278, + "TargetStructureID": 32035, + "Label": "5278-32035 via Ribbon Synapse from 11202 -> 32044", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11202, + "TargetID": 32044, + "Directional": true + }] + }, { + "ID": 8120, + "SourceStructureID": 5278, + "TargetStructureID": 34336, + "Label": "5278-34336 via BC Conventional Synapse from 147290 -> 147289", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147290, + "TargetID": 147289, + "Directional": true + }] + }, { + "ID": 8121, + "SourceStructureID": 5278, + "TargetStructureID": 35894, + "Label": "5278-35894 via Ribbon Synapse from 11191 -> 104083, 11199 -> 104177", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11191, + "TargetID": 104083, + "Directional": true + }, { + "SourceID": 11199, + "TargetID": 104177, + "Directional": true + }] + }, { + "ID": 8122, + "SourceStructureID": 5278, + "TargetStructureID": 64774, + "Label": "5278-64774 via BC Conventional Synapse from 147251 -> 147252", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147251, + "TargetID": 147252, + "Directional": true + }] + }, { + "ID": 8123, + "SourceStructureID": 5278, + "TargetStructureID": 65284, + "Label": "5278-65284 via Ribbon Synapse from 20098 -> 99611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20098, + "TargetID": 99611, + "Directional": true + }] + }, { + "ID": 8124, + "SourceStructureID": 5278, + "TargetStructureID": 67182, + "Label": "5278-67182 via Ribbon Synapse from 8984 -> 83311", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8984, + "TargetID": 83311, + "Directional": true + }] + }, { + "ID": 8125, + "SourceStructureID": 5278, + "TargetStructureID": 68539, + "Label": "5278-68539 via Ribbon Synapse from 20126 -> 104034, 104193 -> 104196", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20126, + "TargetID": 104034, + "Directional": true + }, { + "SourceID": 104193, + "TargetID": 104196, + "Directional": true + }] + }, { + "ID": 8126, + "SourceStructureID": 5278, + "TargetStructureID": 73390, + "Label": "5278-73390 via Ribbon Synapse from 20126 -> 104035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20126, + "TargetID": 104035, + "Directional": true + }] + }, { + "ID": 8127, + "SourceStructureID": 5278, + "TargetStructureID": 73593, + "Label": "5278-73593 via Ribbon Synapse from 104193 -> 104195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104193, + "TargetID": 104195, + "Directional": true + }] + }, { + "ID": 8128, + "SourceStructureID": 5278, + "TargetStructureID": 85955, + "Label": "5278-85955 via Ribbon Synapse from 104241 -> 104376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104241, + "TargetID": 104376, + "Directional": true + }] + }, { + "ID": 8129, + "SourceStructureID": 5278, + "TargetStructureID": 86042, + "Label": "5278-86042 via Ribbon Synapse from 114527 -> 89089", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114527, + "TargetID": 89089, + "Directional": true + }] + }, { + "ID": 8130, + "SourceStructureID": 5278, + "TargetStructureID": 92169, + "Label": "5278-92169 via Ribbon Synapse from 104833 -> 104841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104833, + "TargetID": 104841, + "Directional": true + }] + }, { + "ID": 8131, + "SourceStructureID": 5278, + "TargetStructureID": 93392, + "Label": "5278-93392 via Ribbon Synapse from 114502 -> 114504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114502, + "TargetID": 114504, + "Directional": true + }] + }, { + "ID": 8132, + "SourceStructureID": 5278, + "TargetStructureID": 93396, + "Label": "5278-93396 via Ribbon Synapse from 114502 -> 114503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114502, + "TargetID": 114503, + "Directional": true + }] + }, { + "ID": 8133, + "SourceStructureID": 5278, + "TargetStructureID": 93399, + "Label": "5278-93399 via Unknown from 114501 -> 93400", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 114501, + "TargetID": 93400, + "Directional": true + }] + }, { + "ID": 8134, + "SourceStructureID": 5278, + "TargetStructureID": 93401, + "Label": "5278-93401 via Unknown from 114501 -> 93402", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 114501, + "TargetID": 93402, + "Directional": true + }] + }, { + "ID": 8135, + "SourceStructureID": 5278, + "TargetStructureID": 93407, + "Label": "5278-93407 via BC Conventional Synapse from 93409 -> 93408", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93409, + "TargetID": 93408, + "Directional": true + }] + }, { + "ID": 8136, + "SourceStructureID": 5278, + "TargetStructureID": 93416, + "Label": "5278-93416 via BC Conventional Synapse from 93417 -> 93418", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93417, + "TargetID": 93418, + "Directional": true + }] + }, { + "ID": 8137, + "SourceStructureID": 5278, + "TargetStructureID": 93420, + "Label": "5278-93420 via Ribbon Synapse from 93419 -> 93421", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93419, + "TargetID": 93421, + "Directional": true + }] + }, { + "ID": 8138, + "SourceStructureID": 5278, + "TargetStructureID": 93424, + "Label": "5278-93424 via Ribbon Synapse from 93419 -> 93425", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93419, + "TargetID": 93425, + "Directional": true + }] + }, { + "ID": 8139, + "SourceStructureID": 5278, + "TargetStructureID": 93463, + "Label": "5278-93463 via Ribbon Synapse from 114497 -> 93464, 114499 -> 93464", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114497, + "TargetID": 93464, + "Directional": true + }, { + "SourceID": 114499, + "TargetID": 93464, + "Directional": true + }] + }, { + "ID": 8140, + "SourceStructureID": 5278, + "TargetStructureID": 97925, + "Label": "5278-97925 via Ribbon Synapse from 18485 -> 97926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18485, + "TargetID": 97926, + "Directional": true + }] + }, { + "ID": 8141, + "SourceStructureID": 5278, + "TargetStructureID": 97927, + "Label": "5278-97927 via BC Conventional Synapse from 147324 -> 147323", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147324, + "TargetID": 147323, + "Directional": true + }] + }, { + "ID": 8142, + "SourceStructureID": 5278, + "TargetStructureID": 97933, + "Label": "5278-97933 via Ribbon Synapse from 20032 -> 97950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20032, + "TargetID": 97950, + "Directional": true + }] + }, { + "ID": 8143, + "SourceStructureID": 5278, + "TargetStructureID": 97936, + "Label": "5278-97936 via Ribbon Synapse from 11224 -> 97937", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11224, + "TargetID": 97937, + "Directional": true + }] + }, { + "ID": 8144, + "SourceStructureID": 5278, + "TargetStructureID": 97944, + "Label": "5278-97944 via BC Conventional Synapse from 97945 -> 97946", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97945, + "TargetID": 97946, + "Directional": true + }] + }, { + "ID": 8145, + "SourceStructureID": 5278, + "TargetStructureID": 98810, + "Label": "5278-98810 via Ribbon Synapse from 92096 -> 98811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92096, + "TargetID": 98811, + "Directional": true + }] + }, { + "ID": 8146, + "SourceStructureID": 5278, + "TargetStructureID": 98812, + "Label": "5278-98812 via Ribbon Synapse from 92096 -> 98813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92096, + "TargetID": 98813, + "Directional": true + }] + }, { + "ID": 8147, + "SourceStructureID": 5278, + "TargetStructureID": 98814, + "Label": "5278-98814 via Ribbon Synapse from 11227 -> 98816, 92096 -> 98815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11227, + "TargetID": 98816, + "Directional": true + }, { + "SourceID": 92096, + "TargetID": 98815, + "Directional": true + }] + }, { + "ID": 8148, + "SourceStructureID": 5278, + "TargetStructureID": 98818, + "Label": "5278-98818 via Ribbon Synapse from 11227 -> 98819", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11227, + "TargetID": 98819, + "Directional": true + }] + }, { + "ID": 8149, + "SourceStructureID": 5278, + "TargetStructureID": 98823, + "Label": "5278-98823 via Ribbon Synapse from 20035 -> 98825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20035, + "TargetID": 98825, + "Directional": true + }] + }, { + "ID": 8150, + "SourceStructureID": 5278, + "TargetStructureID": 99237, + "Label": "5278-99237 via Ribbon cluster from 92105 -> 99246", + "Type": "Ribbon cluster", + "Directional": true, + "Links": [{ + "SourceID": 92105, + "TargetID": 99246, + "Directional": true + }] + }, { + "ID": 8151, + "SourceStructureID": 5278, + "TargetStructureID": 99262, + "Label": "5278-99262 via Ribbon Synapse from 133882 -> 133883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133882, + "TargetID": 133883, + "Directional": true + }] + }, { + "ID": 8152, + "SourceStructureID": 5278, + "TargetStructureID": 99268, + "Label": "5278-99268 via Ribbon Synapse from 133882 -> 147325", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133882, + "TargetID": 147325, + "Directional": true + }] + }, { + "ID": 8153, + "SourceStructureID": 5278, + "TargetStructureID": 99288, + "Label": "5278-99288 via Ribbon Synapse from 20048 -> 99289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20048, + "TargetID": 99289, + "Directional": true + }] + }, { + "ID": 8154, + "SourceStructureID": 5278, + "TargetStructureID": 99295, + "Label": "5278-99295 via Ribbon Synapse from 20069 -> 99296", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20069, + "TargetID": 99296, + "Directional": true + }] + }, { + "ID": 8155, + "SourceStructureID": 5278, + "TargetStructureID": 99302, + "Label": "5278-99302 via Ribbon Synapse from 20108 -> 99303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20108, + "TargetID": 99303, + "Directional": true + }] + }, { + "ID": 8156, + "SourceStructureID": 5278, + "TargetStructureID": 99309, + "Label": "5278-99309 via Ribbon Synapse from 20109 -> 99310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20109, + "TargetID": 99310, + "Directional": true + }] + }, { + "ID": 8157, + "SourceStructureID": 5278, + "TargetStructureID": 99311, + "Label": "5278-99311 via Ribbon Synapse from 20109 -> 99312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20109, + "TargetID": 99312, + "Directional": true + }] + }, { + "ID": 8158, + "SourceStructureID": 5278, + "TargetStructureID": 99513, + "Label": "5278-99513 via Ribbon Synapse from 93419 -> 129644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93419, + "TargetID": 129644, + "Directional": true + }] + }, { + "ID": 8159, + "SourceStructureID": 5278, + "TargetStructureID": 99584, + "Label": "5278-99584 via Ribbon Synapse from 20112 -> 99585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20112, + "TargetID": 99585, + "Directional": true + }] + }, { + "ID": 8160, + "SourceStructureID": 5278, + "TargetStructureID": 99586, + "Label": "5278-99586 via Ribbon Synapse from 20112 -> 99588", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20112, + "TargetID": 99588, + "Directional": true + }] + }, { + "ID": 8161, + "SourceStructureID": 5278, + "TargetStructureID": 99600, + "Label": "5278-99600 via Ribbon Synapse from 147327 -> 147328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147327, + "TargetID": 147328, + "Directional": true + }] + }, { + "ID": 8162, + "SourceStructureID": 5278, + "TargetStructureID": 99601, + "Label": "5278-99601 via Ribbon Synapse from 92115 -> 99605", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92115, + "TargetID": 99605, + "Directional": true + }] + }, { + "ID": 8163, + "SourceStructureID": 5278, + "TargetStructureID": 99609, + "Label": "5278-99609 via Ribbon Synapse from 20098 -> 99610", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20098, + "TargetID": 99610, + "Directional": true + }] + }, { + "ID": 8164, + "SourceStructureID": 5278, + "TargetStructureID": 99612, + "Label": "5278-99612 via BC Conventional Synapse from 20072 -> 99613", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20072, + "TargetID": 99613, + "Directional": true + }] + }, { + "ID": 8165, + "SourceStructureID": 5278, + "TargetStructureID": 99728, + "Label": "5278-99728 via Ribbon Synapse from 20077 -> 99729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20077, + "TargetID": 99729, + "Directional": true + }] + }, { + "ID": 8166, + "SourceStructureID": 5278, + "TargetStructureID": 99784, + "Label": "5278-99784 via Ribbon Synapse from 20091 -> 99785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20091, + "TargetID": 99785, + "Directional": true + }] + }, { + "ID": 8167, + "SourceStructureID": 5278, + "TargetStructureID": 99786, + "Label": "5278-99786 via BC Conventional Synapse from 20119 -> 99787", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20119, + "TargetID": 99787, + "Directional": true + }] + }, { + "ID": 8168, + "SourceStructureID": 5278, + "TargetStructureID": 99792, + "Label": "5278-99792 via Ribbon Synapse from 8958 -> 99794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8958, + "TargetID": 99794, + "Directional": true + }] + }, { + "ID": 8169, + "SourceStructureID": 5278, + "TargetStructureID": 99812, + "Label": "5278-99812 via Ribbon Synapse from 20155 -> 99813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20155, + "TargetID": 99813, + "Directional": true + }] + }, { + "ID": 8170, + "SourceStructureID": 5278, + "TargetStructureID": 99818, + "Label": "5278-99818 via Ribbon Synapse from 20157 -> 99820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20157, + "TargetID": 99820, + "Directional": true + }] + }, { + "ID": 8171, + "SourceStructureID": 5278, + "TargetStructureID": 99824, + "Label": "5278-99824 via Ribbon Synapse from 20161 -> 99825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20161, + "TargetID": 99825, + "Directional": true + }] + }, { + "ID": 8172, + "SourceStructureID": 5278, + "TargetStructureID": 99827, + "Label": "5278-99827 via BC Conventional Synapse from 20162 -> 99828", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20162, + "TargetID": 99828, + "Directional": true + }] + }, { + "ID": 8173, + "SourceStructureID": 5278, + "TargetStructureID": 99831, + "Label": "5278-99831 via Ribbon Synapse from 20165 -> 100140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20165, + "TargetID": 100140, + "Directional": true + }] + }, { + "ID": 8174, + "SourceStructureID": 5278, + "TargetStructureID": 100110, + "Label": "5278-100110 via Ribbon Synapse from 20164 -> 100115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20164, + "TargetID": 100115, + "Directional": true + }] + }, { + "ID": 8175, + "SourceStructureID": 5278, + "TargetStructureID": 100121, + "Label": "5278-100121 via Ribbon Synapse from 20164 -> 100122", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20164, + "TargetID": 100122, + "Directional": true + }] + }, { + "ID": 8176, + "SourceStructureID": 5278, + "TargetStructureID": 100129, + "Label": "5278-100129 via Ribbon Synapse from 20165 -> 100141", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20165, + "TargetID": 100141, + "Directional": true + }] + }, { + "ID": 8177, + "SourceStructureID": 5278, + "TargetStructureID": 100157, + "Label": "5278-100157 via Ribbon Synapse from 20163 -> 100159", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20163, + "TargetID": 100159, + "Directional": true + }] + }, { + "ID": 8178, + "SourceStructureID": 5278, + "TargetStructureID": 100195, + "Label": "5278-100195 via Ribbon Synapse from 8973 -> 100196", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8973, + "TargetID": 100196, + "Directional": true + }] + }, { + "ID": 8179, + "SourceStructureID": 5278, + "TargetStructureID": 100201, + "Label": "5278-100201 via BC Conventional Synapse from 100213 -> 100214", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100213, + "TargetID": 100214, + "Directional": true + }] + }, { + "ID": 8180, + "SourceStructureID": 5278, + "TargetStructureID": 100235, + "Label": "5278-100235 via Ribbon Synapse from 8977 -> 100236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8977, + "TargetID": 100236, + "Directional": true + }] + }, { + "ID": 8181, + "SourceStructureID": 5278, + "TargetStructureID": 100365, + "Label": "5278-100365 via Ribbon Synapse from 8982 -> 100368", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8982, + "TargetID": 100368, + "Directional": true + }] + }, { + "ID": 8182, + "SourceStructureID": 5278, + "TargetStructureID": 100374, + "Label": "5278-100374 via Ribbon Synapse from 147298 -> 147299", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147298, + "TargetID": 147299, + "Directional": true + }] + }, { + "ID": 8183, + "SourceStructureID": 5278, + "TargetStructureID": 100389, + "Label": "5278-100389 via Ribbon Synapse from 8981 -> 100394", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8981, + "TargetID": 100394, + "Directional": true + }] + }, { + "ID": 8184, + "SourceStructureID": 5278, + "TargetStructureID": 100396, + "Label": "5278-100396 via Ribbon Synapse from 8981 -> 100397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8981, + "TargetID": 100397, + "Directional": true + }] + }, { + "ID": 8185, + "SourceStructureID": 5278, + "TargetStructureID": 100400, + "Label": "5278-100400 via Ribbon Synapse from 8976 -> 100424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8976, + "TargetID": 100424, + "Directional": true + }] + }, { + "ID": 8186, + "SourceStructureID": 5278, + "TargetStructureID": 100414, + "Label": "5278-100414 via Ribbon Synapse from 8975 -> 100428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8975, + "TargetID": 100428, + "Directional": true + }] + }, { + "ID": 8187, + "SourceStructureID": 5278, + "TargetStructureID": 100422, + "Label": "5278-100422 via Ribbon Synapse from 8976 -> 100423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8976, + "TargetID": 100423, + "Directional": true + }] + }, { + "ID": 8188, + "SourceStructureID": 5278, + "TargetStructureID": 100425, + "Label": "5278-100425 via Ribbon Synapse from 8975 -> 100427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8975, + "TargetID": 100427, + "Directional": true + }] + }, { + "ID": 8189, + "SourceStructureID": 5278, + "TargetStructureID": 100450, + "Label": "5278-100450 via Ribbon Synapse from 8974 -> 100451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8974, + "TargetID": 100451, + "Directional": true + }] + }, { + "ID": 8190, + "SourceStructureID": 5278, + "TargetStructureID": 100452, + "Label": "5278-100452 via Ribbon Synapse from 8974 -> 100453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8974, + "TargetID": 100453, + "Directional": true + }] + }, { + "ID": 8191, + "SourceStructureID": 5278, + "TargetStructureID": 100455, + "Label": "5278-100455 via Ribbon Synapse from 8974 -> 100456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8974, + "TargetID": 100456, + "Directional": true + }] + }, { + "ID": 8192, + "SourceStructureID": 5278, + "TargetStructureID": 100485, + "Label": "5278-100485 via Ribbon Synapse from 147460 -> 147300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147460, + "TargetID": 147300, + "Directional": true + }] + }, { + "ID": 8193, + "SourceStructureID": 5278, + "TargetStructureID": 100521, + "Label": "5278-100521 via Ribbon Synapse from 100520 -> 100523", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100520, + "TargetID": 100523, + "Directional": true + }] + }, { + "ID": 8194, + "SourceStructureID": 5278, + "TargetStructureID": 100524, + "Label": "5278-100524 via Ribbon Synapse from 100520 -> 100531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100520, + "TargetID": 100531, + "Directional": true + }] + }, { + "ID": 8195, + "SourceStructureID": 5278, + "TargetStructureID": 100536, + "Label": "5278-100536 via Ribbon Synapse from 100545 -> 100547", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100545, + "TargetID": 100547, + "Directional": true + }] + }, { + "ID": 8196, + "SourceStructureID": 5278, + "TargetStructureID": 100548, + "Label": "5278-100548 via Ribbon Synapse from 92152 -> 100550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92152, + "TargetID": 100550, + "Directional": true + }] + }, { + "ID": 8197, + "SourceStructureID": 5278, + "TargetStructureID": 100779, + "Label": "5278-100779 via Ribbon Synapse from 92138 -> 100781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92138, + "TargetID": 100781, + "Directional": true + }] + }, { + "ID": 8198, + "SourceStructureID": 5278, + "TargetStructureID": 100788, + "Label": "5278-100788 via Ribbon Synapse from 92138 -> 100790", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92138, + "TargetID": 100790, + "Directional": true + }] + }, { + "ID": 8199, + "SourceStructureID": 5278, + "TargetStructureID": 100795, + "Label": "5278-100795 via BC Conventional Synapse from 100794 -> 100796", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100794, + "TargetID": 100796, + "Directional": true + }] + }, { + "ID": 8200, + "SourceStructureID": 5278, + "TargetStructureID": 100803, + "Label": "5278-100803 via Ribbon Synapse from 92137 -> 100806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92137, + "TargetID": 100806, + "Directional": true + }] + }, { + "ID": 8201, + "SourceStructureID": 5278, + "TargetStructureID": 100829, + "Label": "5278-100829 via Ribbon Synapse from 8984 -> 100830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8984, + "TargetID": 100830, + "Directional": true + }] + }, { + "ID": 8202, + "SourceStructureID": 5278, + "TargetStructureID": 100831, + "Label": "5278-100831 via Ribbon Synapse from 8986 -> 100832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8986, + "TargetID": 100832, + "Directional": true + }] + }, { + "ID": 8203, + "SourceStructureID": 5278, + "TargetStructureID": 104007, + "Label": "5278-104007 via Ribbon Synapse from 11188 -> 104008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11188, + "TargetID": 104008, + "Directional": true + }] + }, { + "ID": 8204, + "SourceStructureID": 5278, + "TargetStructureID": 104009, + "Label": "5278-104009 via Ribbon Synapse from 11188 -> 104010", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11188, + "TargetID": 104010, + "Directional": true + }] + }, { + "ID": 8205, + "SourceStructureID": 5278, + "TargetStructureID": 104012, + "Label": "5278-104012 via Ribbon Synapse from 8985 -> 104014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8985, + "TargetID": 104014, + "Directional": true + }] + }, { + "ID": 8206, + "SourceStructureID": 5278, + "TargetStructureID": 104015, + "Label": "5278-104015 via Ribbon Synapse from 8985 -> 104021, 20125 -> 104020", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8985, + "TargetID": 104021, + "Directional": true + }, { + "SourceID": 20125, + "TargetID": 104020, + "Directional": true + }] + }, { + "ID": 8207, + "SourceStructureID": 5278, + "TargetStructureID": 104028, + "Label": "5278-104028 via Ribbon Synapse from 20125 -> 104029", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20125, + "TargetID": 104029, + "Directional": true + }] + }, { + "ID": 8208, + "SourceStructureID": 5278, + "TargetStructureID": 104038, + "Label": "5278-104038 via Ribbon Synapse from 8988 -> 104042, 8989 -> 104039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8988, + "TargetID": 104042, + "Directional": true + }, { + "SourceID": 8989, + "TargetID": 104039, + "Directional": true + }] + }, { + "ID": 8209, + "SourceStructureID": 5278, + "TargetStructureID": 104040, + "Label": "5278-104040 via Ribbon Synapse from 8989 -> 104041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8989, + "TargetID": 104041, + "Directional": true + }] + }, { + "ID": 8210, + "SourceStructureID": 5278, + "TargetStructureID": 104044, + "Label": "5278-104044 via Ribbon Synapse from 8988 -> 104045, 8989 -> 104046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8988, + "TargetID": 104045, + "Directional": true + }, { + "SourceID": 8989, + "TargetID": 104046, + "Directional": true + }] + }, { + "ID": 8211, + "SourceStructureID": 5278, + "TargetStructureID": 104068, + "Label": "5278-104068 via Unknown from 104070 -> 104069", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 104070, + "TargetID": 104069, + "Directional": true + }] + }, { + "ID": 8212, + "SourceStructureID": 5278, + "TargetStructureID": 104079, + "Label": "5278-104079 via Ribbon Synapse from 11191 -> 104080, 11191 -> 104081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11191, + "TargetID": 104080, + "Directional": true + }, { + "SourceID": 11191, + "TargetID": 104081, + "Directional": true + }] + }, { + "ID": 8213, + "SourceStructureID": 5278, + "TargetStructureID": 104084, + "Label": "5278-104084 via Ribbon Synapse from 104099 -> 104100", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104099, + "TargetID": 104100, + "Directional": true + }] + }, { + "ID": 8214, + "SourceStructureID": 5278, + "TargetStructureID": 104095, + "Label": "5278-104095 via BC Conventional Synapse from 104098 -> 104096", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104098, + "TargetID": 104096, + "Directional": true + }] + }, { + "ID": 8215, + "SourceStructureID": 5278, + "TargetStructureID": 104105, + "Label": "5278-104105 via Ribbon Synapse from 11195 -> 104106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11195, + "TargetID": 104106, + "Directional": true + }] + }, { + "ID": 8216, + "SourceStructureID": 5278, + "TargetStructureID": 104107, + "Label": "5278-104107 via Ribbon Synapse from 11195 -> 104108", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11195, + "TargetID": 104108, + "Directional": true + }] + }, { + "ID": 8217, + "SourceStructureID": 5278, + "TargetStructureID": 104114, + "Label": "5278-104114 via BC Conventional Synapse from 104116 -> 104115", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104116, + "TargetID": 104115, + "Directional": true + }] + }, { + "ID": 8218, + "SourceStructureID": 5278, + "TargetStructureID": 104117, + "Label": "5278-104117 via Ribbon Synapse from 11211 -> 104128, 11212 -> 104132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11211, + "TargetID": 104128, + "Directional": true + }, { + "SourceID": 11212, + "TargetID": 104132, + "Directional": true + }] + }, { + "ID": 8219, + "SourceStructureID": 5278, + "TargetStructureID": 104129, + "Label": "5278-104129 via Ribbon Synapse from 11211 -> 104134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11211, + "TargetID": 104134, + "Directional": true + }] + }, { + "ID": 8220, + "SourceStructureID": 5278, + "TargetStructureID": 104137, + "Label": "5278-104137 via Ribbon Synapse from 11212 -> 104138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11212, + "TargetID": 104138, + "Directional": true + }] + }, { + "ID": 8221, + "SourceStructureID": 5278, + "TargetStructureID": 104168, + "Label": "5278-104168 via Ribbon Synapse from 20128 -> 104187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20128, + "TargetID": 104187, + "Directional": true + }] + }, { + "ID": 8222, + "SourceStructureID": 5278, + "TargetStructureID": 104170, + "Label": "5278-104170 via Ribbon Synapse from 20128 -> 104186, 20129 -> 104185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20128, + "TargetID": 104186, + "Directional": true + }, { + "SourceID": 20129, + "TargetID": 104185, + "Directional": true + }] + }, { + "ID": 8223, + "SourceStructureID": 5278, + "TargetStructureID": 104178, + "Label": "5278-104178 via Ribbon Synapse from 11199 -> 104179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11199, + "TargetID": 104179, + "Directional": true + }] + }, { + "ID": 8224, + "SourceStructureID": 5278, + "TargetStructureID": 104180, + "Label": "5278-104180 via Ribbon Synapse from 20129 -> 104184", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20129, + "TargetID": 104184, + "Directional": true + }] + }, { + "ID": 8225, + "SourceStructureID": 5278, + "TargetStructureID": 104202, + "Label": "5278-104202 via Ribbon Synapse from 104197 -> 104203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104197, + "TargetID": 104203, + "Directional": true + }] + }, { + "ID": 8226, + "SourceStructureID": 5278, + "TargetStructureID": 104204, + "Label": "5278-104204 via Ribbon Synapse from 104197 -> 104205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104197, + "TargetID": 104205, + "Directional": true + }] + }, { + "ID": 8227, + "SourceStructureID": 5278, + "TargetStructureID": 104206, + "Label": "5278-104206 via Ribbon Synapse from 11202 -> 104207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11202, + "TargetID": 104207, + "Directional": true + }] + }, { + "ID": 8228, + "SourceStructureID": 5278, + "TargetStructureID": 104216, + "Label": "5278-104216 via Ribbon Synapse from 11208 -> 104217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11208, + "TargetID": 104217, + "Directional": true + }] + }, { + "ID": 8229, + "SourceStructureID": 5278, + "TargetStructureID": 104218, + "Label": "5278-104218 via Ribbon Synapse from 11208 -> 104219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11208, + "TargetID": 104219, + "Directional": true + }] + }, { + "ID": 8230, + "SourceStructureID": 5278, + "TargetStructureID": 104222, + "Label": "5278-104222 via Ribbon Synapse from 104227 -> 104228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104227, + "TargetID": 104228, + "Directional": true + }] + }, { + "ID": 8231, + "SourceStructureID": 5278, + "TargetStructureID": 104223, + "Label": "5278-104223 via Ribbon Synapse from 11206 -> 104229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11206, + "TargetID": 104229, + "Directional": true + }] + }, { + "ID": 8232, + "SourceStructureID": 5278, + "TargetStructureID": 104235, + "Label": "5278-104235 via Ribbon Synapse from 147305 -> 147306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147305, + "TargetID": 147306, + "Directional": true + }] + }, { + "ID": 8233, + "SourceStructureID": 5278, + "TargetStructureID": 104242, + "Label": "5278-104242 via BC Conventional Synapse from 104383 -> 104382", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104383, + "TargetID": 104382, + "Directional": true + }] + }, { + "ID": 8234, + "SourceStructureID": 5278, + "TargetStructureID": 104242, + "Label": "5278-104242 via Ribbon Synapse from 104241 -> 104243", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104241, + "TargetID": 104243, + "Directional": true + }] + }, { + "ID": 8235, + "SourceStructureID": 5278, + "TargetStructureID": 104244, + "Label": "5278-104244 via Ribbon Synapse from 104245 -> 104246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104245, + "TargetID": 104246, + "Directional": true + }] + }, { + "ID": 8236, + "SourceStructureID": 5278, + "TargetStructureID": 104247, + "Label": "5278-104247 via Ribbon Synapse from 104245 -> 104248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104245, + "TargetID": 104248, + "Directional": true + }] + }, { + "ID": 8237, + "SourceStructureID": 5278, + "TargetStructureID": 104250, + "Label": "5278-104250 via Ribbon Synapse from 104249 -> 104251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104249, + "TargetID": 104251, + "Directional": true + }] + }, { + "ID": 8238, + "SourceStructureID": 5278, + "TargetStructureID": 104252, + "Label": "5278-104252 via Ribbon Synapse from 104249 -> 104253, 104254 -> 104257, 104258 -> 104262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104249, + "TargetID": 104253, + "Directional": true + }, { + "SourceID": 104254, + "TargetID": 104257, + "Directional": true + }, { + "SourceID": 104258, + "TargetID": 104262, + "Directional": true + }] + }, { + "ID": 8239, + "SourceStructureID": 5278, + "TargetStructureID": 104255, + "Label": "5278-104255 via Ribbon Synapse from 104254 -> 104256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104254, + "TargetID": 104256, + "Directional": true + }] + }, { + "ID": 8240, + "SourceStructureID": 5278, + "TargetStructureID": 104259, + "Label": "5278-104259 via Ribbon Synapse from 104249 -> 147304, 104258 -> 104260", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104249, + "TargetID": 147304, + "Directional": true + }, { + "SourceID": 104258, + "TargetID": 104260, + "Directional": true + }] + }, { + "ID": 8241, + "SourceStructureID": 5278, + "TargetStructureID": 104263, + "Label": "5278-104263 via BC Conventional Synapse from 147308 -> 147309", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147308, + "TargetID": 147309, + "Directional": true + }] + }, { + "ID": 8242, + "SourceStructureID": 5278, + "TargetStructureID": 104299, + "Label": "5278-104299 via Ribbon Synapse from 104298 -> 104311", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104298, + "TargetID": 104311, + "Directional": true + }] + }, { + "ID": 8243, + "SourceStructureID": 5278, + "TargetStructureID": 104301, + "Label": "5278-104301 via Ribbon Synapse from 104298 -> 104307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104298, + "TargetID": 104307, + "Directional": true + }] + }, { + "ID": 8244, + "SourceStructureID": 5278, + "TargetStructureID": 104302, + "Label": "5278-104302 via Ribbon Synapse from 104298 -> 104305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104298, + "TargetID": 104305, + "Directional": true + }] + }, { + "ID": 8245, + "SourceStructureID": 5278, + "TargetStructureID": 104333, + "Label": "5278-104333 via Ribbon Synapse from 104331 -> 104336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104331, + "TargetID": 104336, + "Directional": true + }] + }, { + "ID": 8246, + "SourceStructureID": 5278, + "TargetStructureID": 104346, + "Label": "5278-104346 via Ribbon Synapse from 104351 -> 104355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104351, + "TargetID": 104355, + "Directional": true + }] + }, { + "ID": 8247, + "SourceStructureID": 5278, + "TargetStructureID": 104353, + "Label": "5278-104353 via Ribbon Synapse from 104351 -> 104354", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104351, + "TargetID": 104354, + "Directional": true + }] + }, { + "ID": 8248, + "SourceStructureID": 5278, + "TargetStructureID": 104377, + "Label": "5278-104377 via Ribbon Synapse from 104384 -> 104387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104384, + "TargetID": 104387, + "Directional": true + }] + }, { + "ID": 8249, + "SourceStructureID": 5278, + "TargetStructureID": 104385, + "Label": "5278-104385 via Ribbon Synapse from 104384 -> 104386", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104384, + "TargetID": 104386, + "Directional": true + }] + }, { + "ID": 8250, + "SourceStructureID": 5278, + "TargetStructureID": 104397, + "Label": "5278-104397 via Ribbon Synapse from 92194 -> 104398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92194, + "TargetID": 104398, + "Directional": true + }] + }, { + "ID": 8251, + "SourceStructureID": 5278, + "TargetStructureID": 104402, + "Label": "5278-104402 via Ribbon Synapse from 104407 -> 104408", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104407, + "TargetID": 104408, + "Directional": true + }] + }, { + "ID": 8252, + "SourceStructureID": 5278, + "TargetStructureID": 104403, + "Label": "5278-104403 via Ribbon Synapse from 104407 -> 104409", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104407, + "TargetID": 104409, + "Directional": true + }] + }, { + "ID": 8253, + "SourceStructureID": 5278, + "TargetStructureID": 104411, + "Label": "5278-104411 via Ribbon Synapse from 92194 -> 104412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92194, + "TargetID": 104412, + "Directional": true + }] + }, { + "ID": 8254, + "SourceStructureID": 5278, + "TargetStructureID": 104421, + "Label": "5278-104421 via Ribbon Synapse from 104420 -> 104423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104420, + "TargetID": 104423, + "Directional": true + }] + }, { + "ID": 8255, + "SourceStructureID": 5278, + "TargetStructureID": 104425, + "Label": "5278-104425 via BC Conventional Synapse from 92166 -> 104426", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92166, + "TargetID": 104426, + "Directional": true + }] + }, { + "ID": 8256, + "SourceStructureID": 5278, + "TargetStructureID": 104428, + "Label": "5278-104428 via Ribbon Synapse from 92164 -> 104429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92164, + "TargetID": 104429, + "Directional": true + }] + }, { + "ID": 8257, + "SourceStructureID": 5278, + "TargetStructureID": 104444, + "Label": "5278-104444 via Ribbon Synapse from 92181 -> 104529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92181, + "TargetID": 104529, + "Directional": true + }] + }, { + "ID": 8258, + "SourceStructureID": 5278, + "TargetStructureID": 104496, + "Label": "5278-104496 via Ribbon Synapse from 92163 -> 104498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92163, + "TargetID": 104498, + "Directional": true + }] + }, { + "ID": 8259, + "SourceStructureID": 5278, + "TargetStructureID": 104499, + "Label": "5278-104499 via Ribbon Synapse from 92163 -> 104500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92163, + "TargetID": 104500, + "Directional": true + }] + }, { + "ID": 8260, + "SourceStructureID": 5278, + "TargetStructureID": 104516, + "Label": "5278-104516 via Ribbon Synapse from 104515 -> 104517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104515, + "TargetID": 104517, + "Directional": true + }] + }, { + "ID": 8261, + "SourceStructureID": 5278, + "TargetStructureID": 104521, + "Label": "5278-104521 via Ribbon Synapse from 92181 -> 116724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92181, + "TargetID": 116724, + "Directional": true + }] + }, { + "ID": 8262, + "SourceStructureID": 5278, + "TargetStructureID": 104547, + "Label": "5278-104547 via Ribbon Synapse from 104420 -> 104551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104420, + "TargetID": 104551, + "Directional": true + }] + }, { + "ID": 8263, + "SourceStructureID": 5278, + "TargetStructureID": 104568, + "Label": "5278-104568 via Ribbon Synapse from 104584 -> 104585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104584, + "TargetID": 104585, + "Directional": true + }] + }, { + "ID": 8264, + "SourceStructureID": 5278, + "TargetStructureID": 104569, + "Label": "5278-104569 via Ribbon Synapse from 92211 -> 104578", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92211, + "TargetID": 104578, + "Directional": true + }] + }, { + "ID": 8265, + "SourceStructureID": 5278, + "TargetStructureID": 104571, + "Label": "5278-104571 via Ribbon Synapse from 92211 -> 104576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92211, + "TargetID": 104576, + "Directional": true + }] + }, { + "ID": 8266, + "SourceStructureID": 5278, + "TargetStructureID": 104591, + "Label": "5278-104591 via Ribbon Synapse from 92219 -> 104596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92219, + "TargetID": 104596, + "Directional": true + }] + }, { + "ID": 8267, + "SourceStructureID": 5278, + "TargetStructureID": 104806, + "Label": "5278-104806 via Ribbon Synapse from 92219 -> 104807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92219, + "TargetID": 104807, + "Directional": true + }] + }, { + "ID": 8268, + "SourceStructureID": 5278, + "TargetStructureID": 104808, + "Label": "5278-104808 via Ribbon Synapse from 104811 -> 104821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104811, + "TargetID": 104821, + "Directional": true + }] + }, { + "ID": 8269, + "SourceStructureID": 5278, + "TargetStructureID": 104812, + "Label": "5278-104812 via Ribbon Synapse from 92216 -> 104816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92216, + "TargetID": 104816, + "Directional": true + }] + }, { + "ID": 8270, + "SourceStructureID": 5278, + "TargetStructureID": 104823, + "Label": "5278-104823 via Ribbon Synapse from 92216 -> 104827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92216, + "TargetID": 104827, + "Directional": true + }] + }, { + "ID": 8271, + "SourceStructureID": 5278, + "TargetStructureID": 104834, + "Label": "5278-104834 via Ribbon Synapse from 104833 -> 104839", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104833, + "TargetID": 104839, + "Directional": true + }] + }, { + "ID": 8272, + "SourceStructureID": 5278, + "TargetStructureID": 104842, + "Label": "5278-104842 via Ribbon Synapse from 104845 -> 104852, 104854 -> 104855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104845, + "TargetID": 104852, + "Directional": true + }, { + "SourceID": 104854, + "TargetID": 104855, + "Directional": true + }] + }, { + "ID": 8273, + "SourceStructureID": 5278, + "TargetStructureID": 104848, + "Label": "5278-104848 via Ribbon Synapse from 104845 -> 104849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104845, + "TargetID": 104849, + "Directional": true + }] + }, { + "ID": 8274, + "SourceStructureID": 5278, + "TargetStructureID": 104850, + "Label": "5278-104850 via Ribbon Synapse from 104845 -> 104851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104845, + "TargetID": 104851, + "Directional": true + }] + }, { + "ID": 8275, + "SourceStructureID": 5278, + "TargetStructureID": 104856, + "Label": "5278-104856 via Ribbon Synapse from 104854 -> 104857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104854, + "TargetID": 104857, + "Directional": true + }] + }, { + "ID": 8276, + "SourceStructureID": 5278, + "TargetStructureID": 104858, + "Label": "5278-104858 via Ribbon Synapse from 104853 -> 104859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104853, + "TargetID": 104859, + "Directional": true + }] + }, { + "ID": 8277, + "SourceStructureID": 5278, + "TargetStructureID": 120783, + "Label": "5278-120783 via Ribbon Synapse from 114179 -> 120928", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114179, + "TargetID": 120928, + "Directional": true + }] + }, { + "ID": 8278, + "SourceStructureID": 5279, + "TargetStructureID": 5107, + "Label": "5279-5107 via Ribbon Synapse from 6354 -> 97284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6354, + "TargetID": 97284, + "Directional": true + }] + }, { + "ID": 8279, + "SourceStructureID": 5279, + "TargetStructureID": 5280, + "Label": "5279-5280 via Ribbon Synapse from 25683 -> 96398, 25683 -> 96399, 25685 -> 40883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25683, + "TargetID": 96398, + "Directional": true + }, { + "SourceID": 25683, + "TargetID": 96399, + "Directional": true + }, { + "SourceID": 25685, + "TargetID": 40883, + "Directional": true + }] + }, { + "ID": 8280, + "SourceStructureID": 5279, + "TargetStructureID": 5282, + "Label": "5279-5282 via Ribbon Synapse from 6351 -> 87549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6351, + "TargetID": 87549, + "Directional": true + }] + }, { + "ID": 8281, + "SourceStructureID": 5279, + "TargetStructureID": 5489, + "Label": "5279-5489 via Ribbon Synapse from 92556 -> 119112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92556, + "TargetID": 119112, + "Directional": true + }] + }, { + "ID": 8282, + "SourceStructureID": 5279, + "TargetStructureID": 6857, + "Label": "5279-6857 via Ribbon Synapse from 59054 -> 7539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59054, + "TargetID": 7539, + "Directional": true + }] + }, { + "ID": 8283, + "SourceStructureID": 5279, + "TargetStructureID": 8579, + "Label": "5279-8579 via Ribbon Synapse from 6351 -> 62897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6351, + "TargetID": 62897, + "Directional": true + }] + }, { + "ID": 8284, + "SourceStructureID": 5279, + "TargetStructureID": 15796, + "Label": "5279-15796 via Ribbon Synapse from 27433 -> 20151", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27433, + "TargetID": 20151, + "Directional": true + }] + }, { + "ID": 8285, + "SourceStructureID": 5279, + "TargetStructureID": 37466, + "Label": "5279-37466 via Ribbon Synapse from 11479 -> 37478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11479, + "TargetID": 37478, + "Directional": true + }] + }, { + "ID": 8286, + "SourceStructureID": 5279, + "TargetStructureID": 39957, + "Label": "5279-39957 via BC Conventional Synapse from 97623 -> 97624", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97623, + "TargetID": 97624, + "Directional": true + }] + }, { + "ID": 8287, + "SourceStructureID": 5279, + "TargetStructureID": 47104, + "Label": "5279-47104 via Ribbon Synapse from 47147 -> 47146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47147, + "TargetID": 47146, + "Directional": true + }] + }, { + "ID": 8288, + "SourceStructureID": 5279, + "TargetStructureID": 55347, + "Label": "5279-55347 via Ribbon Synapse from 119116 -> 119115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119116, + "TargetID": 119115, + "Directional": true + }] + }, { + "ID": 8289, + "SourceStructureID": 5279, + "TargetStructureID": 57034, + "Label": "5279-57034 via Ribbon Synapse from 92550 -> 65397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92550, + "TargetID": 65397, + "Directional": true + }] + }, { + "ID": 8290, + "SourceStructureID": 5279, + "TargetStructureID": 58592, + "Label": "5279-58592 via Ribbon Synapse from 49229 -> 58627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49229, + "TargetID": 58627, + "Directional": true + }] + }, { + "ID": 8291, + "SourceStructureID": 5279, + "TargetStructureID": 58816, + "Label": "5279-58816 via Ribbon Synapse from 49203 -> 58824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49203, + "TargetID": 58824, + "Directional": true + }] + }, { + "ID": 8292, + "SourceStructureID": 5279, + "TargetStructureID": 59012, + "Label": "5279-59012 via Ribbon Synapse from 59016 -> 59017, 59016 -> 116767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59016, + "TargetID": 59017, + "Directional": true + }, { + "SourceID": 59016, + "TargetID": 116767, + "Directional": true + }] + }, { + "ID": 8293, + "SourceStructureID": 5279, + "TargetStructureID": 61793, + "Label": "5279-61793 via Ribbon Synapse from 130718 -> 61794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130718, + "TargetID": 61794, + "Directional": true + }] + }, { + "ID": 8294, + "SourceStructureID": 5279, + "TargetStructureID": 66395, + "Label": "5279-66395 via Ribbon Synapse from 27433 -> 97596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27433, + "TargetID": 97596, + "Directional": true + }] + }, { + "ID": 8295, + "SourceStructureID": 5279, + "TargetStructureID": 66523, + "Label": "5279-66523 via Ribbon Synapse from 97217 -> 97220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97217, + "TargetID": 97220, + "Directional": true + }] + }, { + "ID": 8296, + "SourceStructureID": 5279, + "TargetStructureID": 67182, + "Label": "5279-67182 via Ribbon Synapse from 25819 -> 92662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25819, + "TargetID": 92662, + "Directional": true + }] + }, { + "ID": 8297, + "SourceStructureID": 5279, + "TargetStructureID": 68335, + "Label": "5279-68335 via Ribbon Synapse from 130718 -> 68336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130718, + "TargetID": 68336, + "Directional": true + }] + }, { + "ID": 8298, + "SourceStructureID": 5279, + "TargetStructureID": 68430, + "Label": "5279-68430 via BC Conventional Synapse from 98089 -> 98090", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98089, + "TargetID": 98090, + "Directional": true + }] + }, { + "ID": 8299, + "SourceStructureID": 5279, + "TargetStructureID": 70360, + "Label": "5279-70360 via Ribbon Synapse from 28312 -> 97338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28312, + "TargetID": 97338, + "Directional": true + }] + }, { + "ID": 8300, + "SourceStructureID": 5279, + "TargetStructureID": 83190, + "Label": "5279-83190 via Ribbon Synapse from 92556 -> 129646", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92556, + "TargetID": 129646, + "Directional": true + }] + }, { + "ID": 8301, + "SourceStructureID": 5279, + "TargetStructureID": 83293, + "Label": "5279-83293 via Ribbon Synapse from 25795 -> 96482", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25795, + "TargetID": 96482, + "Directional": true + }] + }, { + "ID": 8302, + "SourceStructureID": 5279, + "TargetStructureID": 88565, + "Label": "5279-88565 via Ribbon Synapse from 6351 -> 97231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6351, + "TargetID": 97231, + "Directional": true + }] + }, { + "ID": 8303, + "SourceStructureID": 5279, + "TargetStructureID": 92638, + "Label": "5279-92638 via Ribbon Synapse from 25999 -> 92857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25999, + "TargetID": 92857, + "Directional": true + }] + }, { + "ID": 8304, + "SourceStructureID": 5279, + "TargetStructureID": 94878, + "Label": "5279-94878 via Ribbon Synapse from 25796 -> 96509", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25796, + "TargetID": 96509, + "Directional": true + }] + }, { + "ID": 8305, + "SourceStructureID": 5279, + "TargetStructureID": 96343, + "Label": "5279-96343 via Cistern Pre from 27529 -> 126411", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 27529, + "TargetID": 126411, + "Directional": true + }] + }, { + "ID": 8306, + "SourceStructureID": 5279, + "TargetStructureID": 96345, + "Label": "5279-96345 via Ribbon Synapse from 15122 -> 96349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15122, + "TargetID": 96349, + "Directional": true + }] + }, { + "ID": 8307, + "SourceStructureID": 5279, + "TargetStructureID": 96353, + "Label": "5279-96353 via Ribbon Synapse from 6905 -> 96355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6905, + "TargetID": 96355, + "Directional": true + }] + }, { + "ID": 8308, + "SourceStructureID": 5279, + "TargetStructureID": 96413, + "Label": "5279-96413 via Ribbon Synapse from 96412 -> 96416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96412, + "TargetID": 96416, + "Directional": true + }] + }, { + "ID": 8309, + "SourceStructureID": 5279, + "TargetStructureID": 96417, + "Label": "5279-96417 via Ribbon Synapse from 49236 -> 96418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49236, + "TargetID": 96418, + "Directional": true + }] + }, { + "ID": 8310, + "SourceStructureID": 5279, + "TargetStructureID": 96423, + "Label": "5279-96423 via Ribbon Synapse from 49238 -> 96424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49238, + "TargetID": 96424, + "Directional": true + }] + }, { + "ID": 8311, + "SourceStructureID": 5279, + "TargetStructureID": 96439, + "Label": "5279-96439 via Ribbon Synapse from 47147 -> 96441", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47147, + "TargetID": 96441, + "Directional": true + }] + }, { + "ID": 8312, + "SourceStructureID": 5279, + "TargetStructureID": 96446, + "Label": "5279-96446 via Ribbon Synapse from 147963 -> 147962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147963, + "TargetID": 147962, + "Directional": true + }] + }, { + "ID": 8313, + "SourceStructureID": 5279, + "TargetStructureID": 96465, + "Label": "5279-96465 via Ribbon Synapse from 133835 -> 133836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133835, + "TargetID": 133836, + "Directional": true + }] + }, { + "ID": 8314, + "SourceStructureID": 5279, + "TargetStructureID": 96483, + "Label": "5279-96483 via Ribbon Synapse from 25795 -> 96484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25795, + "TargetID": 96484, + "Directional": true + }] + }, { + "ID": 8315, + "SourceStructureID": 5279, + "TargetStructureID": 96493, + "Label": "5279-96493 via Ribbon Synapse from 6341 -> 96498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6341, + "TargetID": 96498, + "Directional": true + }] + }, { + "ID": 8316, + "SourceStructureID": 5279, + "TargetStructureID": 96494, + "Label": "5279-96494 via Ribbon Synapse from 6341 -> 96497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6341, + "TargetID": 96497, + "Directional": true + }] + }, { + "ID": 8317, + "SourceStructureID": 5279, + "TargetStructureID": 96505, + "Label": "5279-96505 via BC Conventional Synapse from 96514 -> 96513", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96514, + "TargetID": 96513, + "Directional": true + }] + }, { + "ID": 8318, + "SourceStructureID": 5279, + "TargetStructureID": 96505, + "Label": "5279-96505 via Ribbon Synapse from 25796 -> 96507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25796, + "TargetID": 96507, + "Directional": true + }] + }, { + "ID": 8319, + "SourceStructureID": 5279, + "TargetStructureID": 97018, + "Label": "5279-97018 via Ribbon Synapse from 25802 -> 97022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25802, + "TargetID": 97022, + "Directional": true + }] + }, { + "ID": 8320, + "SourceStructureID": 5279, + "TargetStructureID": 97034, + "Label": "5279-97034 via Ribbon Synapse from 25801 -> 97036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25801, + "TargetID": 97036, + "Directional": true + }] + }, { + "ID": 8321, + "SourceStructureID": 5279, + "TargetStructureID": 97124, + "Label": "5279-97124 via Ribbon Synapse from 25805 -> 97125", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25805, + "TargetID": 97125, + "Directional": true + }] + }, { + "ID": 8322, + "SourceStructureID": 5279, + "TargetStructureID": 97126, + "Label": "5279-97126 via Ribbon Synapse from 97127 -> 97128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97127, + "TargetID": 97128, + "Directional": true + }] + }, { + "ID": 8323, + "SourceStructureID": 5279, + "TargetStructureID": 97129, + "Label": "5279-97129 via Ribbon Synapse from 97127 -> 97132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97127, + "TargetID": 97132, + "Directional": true + }] + }, { + "ID": 8324, + "SourceStructureID": 5279, + "TargetStructureID": 97152, + "Label": "5279-97152 via Ribbon Synapse from 25809 -> 97153", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25809, + "TargetID": 97153, + "Directional": true + }] + }, { + "ID": 8325, + "SourceStructureID": 5279, + "TargetStructureID": 97156, + "Label": "5279-97156 via Ribbon Synapse from 25811 -> 97158", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25811, + "TargetID": 97158, + "Directional": true + }] + }, { + "ID": 8326, + "SourceStructureID": 5279, + "TargetStructureID": 97162, + "Label": "5279-97162 via Ribbon Synapse from 25809 -> 97163", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25809, + "TargetID": 97163, + "Directional": true + }] + }, { + "ID": 8327, + "SourceStructureID": 5279, + "TargetStructureID": 97167, + "Label": "5279-97167 via Ribbon Synapse from 97168 -> 97169", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97168, + "TargetID": 97169, + "Directional": true + }] + }, { + "ID": 8328, + "SourceStructureID": 5279, + "TargetStructureID": 97218, + "Label": "5279-97218 via Ribbon Synapse from 97217 -> 97219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97217, + "TargetID": 97219, + "Directional": true + }] + }, { + "ID": 8329, + "SourceStructureID": 5279, + "TargetStructureID": 97223, + "Label": "5279-97223 via Ribbon Synapse from 6346 -> 97224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6346, + "TargetID": 97224, + "Directional": true + }] + }, { + "ID": 8330, + "SourceStructureID": 5279, + "TargetStructureID": 97228, + "Label": "5279-97228 via Ribbon Synapse from 6346 -> 97229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6346, + "TargetID": 97229, + "Directional": true + }] + }, { + "ID": 8331, + "SourceStructureID": 5279, + "TargetStructureID": 97261, + "Label": "5279-97261 via Ribbon Synapse from 6343 -> 97262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6343, + "TargetID": 97262, + "Directional": true + }] + }, { + "ID": 8332, + "SourceStructureID": 5279, + "TargetStructureID": 97294, + "Label": "5279-97294 via Ribbon Synapse from 6353 -> 97296", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6353, + "TargetID": 97296, + "Directional": true + }] + }, { + "ID": 8333, + "SourceStructureID": 5279, + "TargetStructureID": 97302, + "Label": "5279-97302 via Ribbon Synapse from 25838 -> 97303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25838, + "TargetID": 97303, + "Directional": true + }] + }, { + "ID": 8334, + "SourceStructureID": 5279, + "TargetStructureID": 97305, + "Label": "5279-97305 via Ribbon Synapse from 25838 -> 97309", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25838, + "TargetID": 97309, + "Directional": true + }] + }, { + "ID": 8335, + "SourceStructureID": 5279, + "TargetStructureID": 97329, + "Label": "5279-97329 via Ribbon Synapse from 97330 -> 97331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97330, + "TargetID": 97331, + "Directional": true + }] + }, { + "ID": 8336, + "SourceStructureID": 5279, + "TargetStructureID": 97358, + "Label": "5279-97358 via BC Conventional Synapse from 97359 -> 97360", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97359, + "TargetID": 97360, + "Directional": true + }] + }, { + "ID": 8337, + "SourceStructureID": 5279, + "TargetStructureID": 97374, + "Label": "5279-97374 via Ribbon Synapse from 49261 -> 97375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49261, + "TargetID": 97375, + "Directional": true + }] + }, { + "ID": 8338, + "SourceStructureID": 5279, + "TargetStructureID": 97532, + "Label": "5279-97532 via Ribbon Synapse from 97527 -> 97533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97527, + "TargetID": 97533, + "Directional": true + }] + }, { + "ID": 8339, + "SourceStructureID": 5279, + "TargetStructureID": 97538, + "Label": "5279-97538 via BC Conventional Synapse from 97537 -> 97540", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97537, + "TargetID": 97540, + "Directional": true + }] + }, { + "ID": 8340, + "SourceStructureID": 5279, + "TargetStructureID": 97548, + "Label": "5279-97548 via Ribbon Synapse from 97545 -> 97551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97545, + "TargetID": 97551, + "Directional": true + }] + }, { + "ID": 8341, + "SourceStructureID": 5279, + "TargetStructureID": 97552, + "Label": "5279-97552 via Ribbon Synapse from 97545 -> 97556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97545, + "TargetID": 97556, + "Directional": true + }] + }, { + "ID": 8342, + "SourceStructureID": 5279, + "TargetStructureID": 97609, + "Label": "5279-97609 via Ribbon Synapse from 97608 -> 97612", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97608, + "TargetID": 97612, + "Directional": true + }] + }, { + "ID": 8343, + "SourceStructureID": 5279, + "TargetStructureID": 97610, + "Label": "5279-97610 via Ribbon Synapse from 97608 -> 97611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97608, + "TargetID": 97611, + "Directional": true + }] + }, { + "ID": 8344, + "SourceStructureID": 5279, + "TargetStructureID": 97615, + "Label": "5279-97615 via Ribbon Synapse from 97613 -> 97618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97613, + "TargetID": 97618, + "Directional": true + }] + }, { + "ID": 8345, + "SourceStructureID": 5279, + "TargetStructureID": 97649, + "Label": "5279-97649 via Ribbon Synapse from 25819 -> 98007", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25819, + "TargetID": 98007, + "Directional": true + }] + }, { + "ID": 8346, + "SourceStructureID": 5279, + "TargetStructureID": 98000, + "Label": "5279-98000 via Ribbon Synapse from 25818 -> 98004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25818, + "TargetID": 98004, + "Directional": true + }] + }, { + "ID": 8347, + "SourceStructureID": 5279, + "TargetStructureID": 98029, + "Label": "5279-98029 via Ribbon Synapse from 25823 -> 98032", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25823, + "TargetID": 98032, + "Directional": true + }] + }, { + "ID": 8348, + "SourceStructureID": 5279, + "TargetStructureID": 98030, + "Label": "5279-98030 via Ribbon Synapse from 25823 -> 98031", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25823, + "TargetID": 98031, + "Directional": true + }] + }, { + "ID": 8349, + "SourceStructureID": 5279, + "TargetStructureID": 98037, + "Label": "5279-98037 via Ribbon Synapse from 26005 -> 98038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26005, + "TargetID": 98038, + "Directional": true + }] + }, { + "ID": 8350, + "SourceStructureID": 5279, + "TargetStructureID": 98039, + "Label": "5279-98039 via Ribbon Synapse from 20133 -> 98044", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20133, + "TargetID": 98044, + "Directional": true + }] + }, { + "ID": 8351, + "SourceStructureID": 5279, + "TargetStructureID": 98041, + "Label": "5279-98041 via Ribbon Synapse from 20133 -> 98045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20133, + "TargetID": 98045, + "Directional": true + }] + }, { + "ID": 8352, + "SourceStructureID": 5279, + "TargetStructureID": 98074, + "Label": "5279-98074 via Ribbon Synapse from 147287 -> 147288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147287, + "TargetID": 147288, + "Directional": true + }] + }, { + "ID": 8353, + "SourceStructureID": 5279, + "TargetStructureID": 98106, + "Label": "5279-98106 via Ribbon Synapse from 11479 -> 98110", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11479, + "TargetID": 98110, + "Directional": true + }] + }, { + "ID": 8354, + "SourceStructureID": 5279, + "TargetStructureID": 98534, + "Label": "5279-98534 via Ribbon Synapse from 49209 -> 98536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49209, + "TargetID": 98536, + "Directional": true + }] + }, { + "ID": 8355, + "SourceStructureID": 5279, + "TargetStructureID": 98579, + "Label": "5279-98579 via Ribbon Synapse from 25842 -> 98580", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25842, + "TargetID": 98580, + "Directional": true + }] + }, { + "ID": 8356, + "SourceStructureID": 5279, + "TargetStructureID": 98584, + "Label": "5279-98584 via Ribbon Synapse from 25845 -> 147956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25845, + "TargetID": 147956, + "Directional": true + }] + }, { + "ID": 8357, + "SourceStructureID": 5279, + "TargetStructureID": 98589, + "Label": "5279-98589 via BC Conventional Synapse from 98593 -> 98594", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98593, + "TargetID": 98594, + "Directional": true + }] + }, { + "ID": 8358, + "SourceStructureID": 5279, + "TargetStructureID": 98599, + "Label": "5279-98599 via Ribbon Synapse from 25845 -> 98603", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25845, + "TargetID": 98603, + "Directional": true + }] + }, { + "ID": 8359, + "SourceStructureID": 5279, + "TargetStructureID": 98630, + "Label": "5279-98630 via Ribbon Synapse from 25989 -> 98631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25989, + "TargetID": 98631, + "Directional": true + }] + }, { + "ID": 8360, + "SourceStructureID": 5279, + "TargetStructureID": 98632, + "Label": "5279-98632 via Ribbon Synapse from 25989 -> 98633", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25989, + "TargetID": 98633, + "Directional": true + }] + }, { + "ID": 8361, + "SourceStructureID": 5279, + "TargetStructureID": 98644, + "Label": "5279-98644 via Ribbon Synapse from 25990 -> 98645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25990, + "TargetID": 98645, + "Directional": true + }] + }, { + "ID": 8362, + "SourceStructureID": 5279, + "TargetStructureID": 98676, + "Label": "5279-98676 via Ribbon Synapse from 25991 -> 98684", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25991, + "TargetID": 98684, + "Directional": true + }] + }, { + "ID": 8363, + "SourceStructureID": 5279, + "TargetStructureID": 98689, + "Label": "5279-98689 via Ribbon Synapse from 25992 -> 98692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25992, + "TargetID": 98692, + "Directional": true + }] + }, { + "ID": 8364, + "SourceStructureID": 5279, + "TargetStructureID": 98993, + "Label": "5279-98993 via Ribbon Synapse from 26003 -> 98994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26003, + "TargetID": 98994, + "Directional": true + }] + }, { + "ID": 8365, + "SourceStructureID": 5279, + "TargetStructureID": 99044, + "Label": "5279-99044 via Ribbon Synapse from 49231 -> 99045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49231, + "TargetID": 99045, + "Directional": true + }] + }, { + "ID": 8366, + "SourceStructureID": 5279, + "TargetStructureID": 99054, + "Label": "5279-99054 via Ribbon Synapse from 49221 -> 99055", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49221, + "TargetID": 99055, + "Directional": true + }] + }, { + "ID": 8367, + "SourceStructureID": 5279, + "TargetStructureID": 99056, + "Label": "5279-99056 via Ribbon Synapse from 49221 -> 99061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49221, + "TargetID": 99061, + "Directional": true + }] + }, { + "ID": 8368, + "SourceStructureID": 5279, + "TargetStructureID": 99088, + "Label": "5279-99088 via BC Conventional Synapse from 99089 -> 99090", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99089, + "TargetID": 99090, + "Directional": true + }] + }, { + "ID": 8369, + "SourceStructureID": 5279, + "TargetStructureID": 99106, + "Label": "5279-99106 via Ribbon Synapse from 49224 -> 99107", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49224, + "TargetID": 99107, + "Directional": true + }] + }, { + "ID": 8370, + "SourceStructureID": 5279, + "TargetStructureID": 99118, + "Label": "5279-99118 via Ribbon Synapse from 49229 -> 99120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49229, + "TargetID": 99120, + "Directional": true + }] + }, { + "ID": 8371, + "SourceStructureID": 5279, + "TargetStructureID": 99122, + "Label": "5279-99122 via Ribbon Synapse from 99121 -> 99123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99121, + "TargetID": 99123, + "Directional": true + }] + }, { + "ID": 8372, + "SourceStructureID": 5279, + "TargetStructureID": 99139, + "Label": "5279-99139 via Ribbon Synapse from 99138 -> 99140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99138, + "TargetID": 99140, + "Directional": true + }] + }, { + "ID": 8373, + "SourceStructureID": 5279, + "TargetStructureID": 99142, + "Label": "5279-99142 via Ribbon Synapse from 99138 -> 99143", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99138, + "TargetID": 99143, + "Directional": true + }] + }, { + "ID": 8374, + "SourceStructureID": 5279, + "TargetStructureID": 99795, + "Label": "5279-99795 via Ribbon Synapse from 92676 -> 99796", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92676, + "TargetID": 99796, + "Directional": true + }] + }, { + "ID": 8375, + "SourceStructureID": 5279, + "TargetStructureID": 99797, + "Label": "5279-99797 via Ribbon Synapse from 92676 -> 99798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92676, + "TargetID": 99798, + "Directional": true + }] + }, { + "ID": 8376, + "SourceStructureID": 5279, + "TargetStructureID": 99799, + "Label": "5279-99799 via Ribbon Synapse from 92676 -> 99800", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92676, + "TargetID": 99800, + "Directional": true + }] + }, { + "ID": 8377, + "SourceStructureID": 5279, + "TargetStructureID": 99806, + "Label": "5279-99806 via Ribbon Synapse from 92675 -> 99807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92675, + "TargetID": 99807, + "Directional": true + }] + }, { + "ID": 8378, + "SourceStructureID": 5279, + "TargetStructureID": 136667, + "Label": "5279-136667 via Ribbon Synapse from 92551 -> 147692, 119107 -> 147693", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92551, + "TargetID": 147692, + "Directional": true + }, { + "SourceID": 119107, + "TargetID": 147693, + "Directional": true + }] + }, { + "ID": 8379, + "SourceStructureID": 5280, + "TargetStructureID": 517, + "Label": "5280-517 via Conventional from 40877 -> 6907", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40877, + "TargetID": 6907, + "Directional": true + }] + }, { + "ID": 8380, + "SourceStructureID": 5281, + "TargetStructureID": 166, + "Label": "5281-166 via Conventional from 39262 -> 39261, 39266 -> 4402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39262, + "TargetID": 39261, + "Directional": true + }, { + "SourceID": 39266, + "TargetID": 4402, + "Directional": true + }] + }, { + "ID": 8381, + "SourceStructureID": 5281, + "TargetStructureID": 483, + "Label": "5281-483 via Conventional from 36765 -> 6754, 36766 -> 6753", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36765, + "TargetID": 6754, + "Directional": true + }, { + "SourceID": 36766, + "TargetID": 6753, + "Directional": true + }] + }, { + "ID": 8382, + "SourceStructureID": 5281, + "TargetStructureID": 516, + "Label": "5281-516 via Conventional from 39199 -> 39200, 39260 -> 39259, 116591 -> 39259, 116592 -> 39200", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39199, + "TargetID": 39200, + "Directional": true + }, { + "SourceID": 39260, + "TargetID": 39259, + "Directional": true + }, { + "SourceID": 116591, + "TargetID": 39259, + "Directional": true + }, { + "SourceID": 116592, + "TargetID": 39200, + "Directional": true + }] + }, { + "ID": 8383, + "SourceStructureID": 5281, + "TargetStructureID": 518, + "Label": "5281-518 via Conventional from 36756 -> 36757, 36758 -> 36759, 36760 -> 36761", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36756, + "TargetID": 36757, + "Directional": true + }, { + "SourceID": 36758, + "TargetID": 36759, + "Directional": true + }, { + "SourceID": 36760, + "TargetID": 36761, + "Directional": true + }] + }, { + "ID": 8384, + "SourceStructureID": 5281, + "TargetStructureID": 606, + "Label": "5281-606 via Conventional from 51280 -> 42517", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 51280, + "TargetID": 42517, + "Directional": true + }] + }, { + "ID": 8385, + "SourceStructureID": 5281, + "TargetStructureID": 5485, + "Label": "5281-5485 via Conventional from 36772 -> 36773", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36772, + "TargetID": 36773, + "Directional": true + }] + }, { + "ID": 8386, + "SourceStructureID": 5281, + "TargetStructureID": 6117, + "Label": "5281-6117 via Conventional from 39282 -> 39283, 85970 -> 85971", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39282, + "TargetID": 39283, + "Directional": true + }, { + "SourceID": 85970, + "TargetID": 85971, + "Directional": true + }] + }, { + "ID": 8387, + "SourceStructureID": 5281, + "TargetStructureID": 10625, + "Label": "5281-10625 via Conventional from 39264 -> 39263", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39264, + "TargetID": 39263, + "Directional": true + }] + }, { + "ID": 8388, + "SourceStructureID": 5281, + "TargetStructureID": 10959, + "Label": "5281-10959 via Conventional from 39272 -> 39271, 39274 -> 39273", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39272, + "TargetID": 39271, + "Directional": true + }, { + "SourceID": 39274, + "TargetID": 39273, + "Directional": true + }] + }, { + "ID": 8389, + "SourceStructureID": 5281, + "TargetStructureID": 10960, + "Label": "5281-10960 via Conventional from 39275 -> 39276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39275, + "TargetID": 39276, + "Directional": true + }] + }, { + "ID": 8390, + "SourceStructureID": 5281, + "TargetStructureID": 15796, + "Label": "5281-15796 via Conventional from 36769 -> 19831", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36769, + "TargetID": 19831, + "Directional": true + }] + }, { + "ID": 8391, + "SourceStructureID": 5281, + "TargetStructureID": 15977, + "Label": "5281-15977 via Conventional from 36791 -> 33961", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36791, + "TargetID": 33961, + "Directional": true + }] + }, { + "ID": 8392, + "SourceStructureID": 5281, + "TargetStructureID": 29277, + "Label": "5281-29277 via Conventional from 39269 -> 29286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39269, + "TargetID": 29286, + "Directional": true + }] + }, { + "ID": 8393, + "SourceStructureID": 5281, + "TargetStructureID": 40991, + "Label": "5281-40991 via Conventional from 39284 -> 40996", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39284, + "TargetID": 40996, + "Directional": true + }] + }, { + "ID": 8394, + "SourceStructureID": 5282, + "TargetStructureID": 909, + "Label": "5282-909 via Conventional from 87556 -> 53739", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87556, + "TargetID": 53739, + "Directional": true + }] + }, { + "ID": 8395, + "SourceStructureID": 5282, + "TargetStructureID": 7129, + "Label": "5282-7129 via Conventional from 87554 -> 87555", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87554, + "TargetID": 87555, + "Directional": true + }] + }, { + "ID": 8396, + "SourceStructureID": 5283, + "TargetStructureID": 3679, + "Label": "5283-3679 via Ribbon Synapse from 124118 -> 132294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124118, + "TargetID": 132294, + "Directional": true + }] + }, { + "ID": 8397, + "SourceStructureID": 5283, + "TargetStructureID": 5350, + "Label": "5283-5350 via Ribbon Synapse from 117748 -> 117749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117748, + "TargetID": 117749, + "Directional": true + }] + }, { + "ID": 8398, + "SourceStructureID": 5283, + "TargetStructureID": 8033, + "Label": "5283-8033 via Ribbon Synapse from 80063 -> 18442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80063, + "TargetID": 18442, + "Directional": true + }] + }, { + "ID": 8399, + "SourceStructureID": 5283, + "TargetStructureID": 12208, + "Label": "5283-12208 via Ribbon Synapse from 24047 -> 22367, 24048 -> 22367, 24051 -> 22367, 131706 -> 22367, 131707 -> 22367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24047, + "TargetID": 22367, + "Directional": true + }, { + "SourceID": 24048, + "TargetID": 22367, + "Directional": true + }, { + "SourceID": 24051, + "TargetID": 22367, + "Directional": true + }, { + "SourceID": 131706, + "TargetID": 22367, + "Directional": true + }, { + "SourceID": 131707, + "TargetID": 22367, + "Directional": true + }] + }, { + "ID": 8400, + "SourceStructureID": 5283, + "TargetStructureID": 20537, + "Label": "5283-20537 via Cistern Pre from 24053 -> 24134", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 24053, + "TargetID": 24134, + "Directional": true + }] + }, { + "ID": 8401, + "SourceStructureID": 5283, + "TargetStructureID": 22554, + "Label": "5283-22554 via Ribbon Synapse from 60882 -> 60883, 80165 -> 80169, 118742 -> 118743, 123819 -> 132121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60882, + "TargetID": 60883, + "Directional": true + }, { + "SourceID": 80165, + "TargetID": 80169, + "Directional": true + }, { + "SourceID": 118742, + "TargetID": 118743, + "Directional": true + }, { + "SourceID": 123819, + "TargetID": 132121, + "Directional": true + }] + }, { + "ID": 8402, + "SourceStructureID": 5283, + "TargetStructureID": 32913, + "Label": "5283-32913 via Ribbon Synapse from 28015 -> 38353, 28016 -> 38353, 28017 -> 38353, 28018 -> 38353, 28019 -> 38353", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28015, + "TargetID": 38353, + "Directional": true + }, { + "SourceID": 28016, + "TargetID": 38353, + "Directional": true + }, { + "SourceID": 28017, + "TargetID": 38353, + "Directional": true + }, { + "SourceID": 28018, + "TargetID": 38353, + "Directional": true + }, { + "SourceID": 28019, + "TargetID": 38353, + "Directional": true + }] + }, { + "ID": 8403, + "SourceStructureID": 5283, + "TargetStructureID": 33092, + "Label": "5283-33092 via Ribbon Synapse from 22430 -> 132130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22430, + "TargetID": 132130, + "Directional": true + }] + }, { + "ID": 8404, + "SourceStructureID": 5283, + "TargetStructureID": 59422, + "Label": "5283-59422 via Cistern Pre from 132094 -> 132095", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 132094, + "TargetID": 132095, + "Directional": true + }] + }, { + "ID": 8405, + "SourceStructureID": 5283, + "TargetStructureID": 61836, + "Label": "5283-61836 via Ribbon Synapse from 28097 -> 69772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28097, + "TargetID": 69772, + "Directional": true + }] + }, { + "ID": 8406, + "SourceStructureID": 5283, + "TargetStructureID": 64371, + "Label": "5283-64371 via Ribbon Synapse from 28105 -> 124036, 64376 -> 64374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28105, + "TargetID": 124036, + "Directional": true + }, { + "SourceID": 64376, + "TargetID": 64374, + "Directional": true + }] + }, { + "ID": 8407, + "SourceStructureID": 5283, + "TargetStructureID": 65538, + "Label": "5283-65538 via Ribbon Synapse from 28015 -> 65549, 28016 -> 65549, 28017 -> 65549, 28018 -> 65549, 28019 -> 65549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28015, + "TargetID": 65549, + "Directional": true + }, { + "SourceID": 28016, + "TargetID": 65549, + "Directional": true + }, { + "SourceID": 28017, + "TargetID": 65549, + "Directional": true + }, { + "SourceID": 28018, + "TargetID": 65549, + "Directional": true + }, { + "SourceID": 28019, + "TargetID": 65549, + "Directional": true + }] + }, { + "ID": 8408, + "SourceStructureID": 5283, + "TargetStructureID": 66303, + "Label": "5283-66303 via Ribbon Synapse from 66311 -> 66312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66311, + "TargetID": 66312, + "Directional": true + }] + }, { + "ID": 8409, + "SourceStructureID": 5283, + "TargetStructureID": 66828, + "Label": "5283-66828 via Ribbon Synapse from 80150 -> 82731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80150, + "TargetID": 82731, + "Directional": true + }] + }, { + "ID": 8410, + "SourceStructureID": 5283, + "TargetStructureID": 67361, + "Label": "5283-67361 via Ribbon Synapse from 118740 -> 131712, 131680 -> 131681", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118740, + "TargetID": 131712, + "Directional": true + }, { + "SourceID": 131680, + "TargetID": 131681, + "Directional": true + }] + }, { + "ID": 8411, + "SourceStructureID": 5283, + "TargetStructureID": 67973, + "Label": "5283-67973 via Ribbon Synapse from 22429 -> 67977, 22430 -> 67977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22429, + "TargetID": 67977, + "Directional": true + }, { + "SourceID": 22430, + "TargetID": 67977, + "Directional": true + }] + }, { + "ID": 8412, + "SourceStructureID": 5283, + "TargetStructureID": 68087, + "Label": "5283-68087 via Ribbon Synapse from 80150 -> 68227", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80150, + "TargetID": 68227, + "Directional": true + }] + }, { + "ID": 8413, + "SourceStructureID": 5283, + "TargetStructureID": 68435, + "Label": "5283-68435 via Ribbon Synapse from 79884 -> 68451, 80057 -> 68450, 132107 -> 68451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79884, + "TargetID": 68451, + "Directional": true + }, { + "SourceID": 80057, + "TargetID": 68450, + "Directional": true + }, { + "SourceID": 132107, + "TargetID": 68451, + "Directional": true + }] + }, { + "ID": 8414, + "SourceStructureID": 5283, + "TargetStructureID": 68453, + "Label": "5283-68453 via Ribbon Synapse from 79889 -> 68458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79889, + "TargetID": 68458, + "Directional": true + }] + }, { + "ID": 8415, + "SourceStructureID": 5283, + "TargetStructureID": 68463, + "Label": "5283-68463 via BC Conventional Synapse from 16141 -> 80406", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16141, + "TargetID": 80406, + "Directional": true + }] + }, { + "ID": 8416, + "SourceStructureID": 5283, + "TargetStructureID": 68463, + "Label": "5283-68463 via Ribbon Synapse from 79884 -> 132106, 132107 -> 132106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79884, + "TargetID": 132106, + "Directional": true + }, { + "SourceID": 132107, + "TargetID": 132106, + "Directional": true + }] + }, { + "ID": 8417, + "SourceStructureID": 5283, + "TargetStructureID": 69773, + "Label": "5283-69773 via Ribbon Synapse from 28097 -> 69774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28097, + "TargetID": 69774, + "Directional": true + }] + }, { + "ID": 8418, + "SourceStructureID": 5283, + "TargetStructureID": 71195, + "Label": "5283-71195 via Ribbon Synapse from 124159 -> 132302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124159, + "TargetID": 132302, + "Directional": true + }] + }, { + "ID": 8419, + "SourceStructureID": 5283, + "TargetStructureID": 80074, + "Label": "5283-80074 via BC Conventional Synapse from 80073 -> 80077", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80073, + "TargetID": 80077, + "Directional": true + }] + }, { + "ID": 8420, + "SourceStructureID": 5283, + "TargetStructureID": 80083, + "Label": "5283-80083 via Ribbon Synapse from 80082 -> 80084", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80082, + "TargetID": 80084, + "Directional": true + }] + }, { + "ID": 8421, + "SourceStructureID": 5283, + "TargetStructureID": 80086, + "Label": "5283-80086 via Ribbon Synapse from 80085 -> 80087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80085, + "TargetID": 80087, + "Directional": true + }] + }, { + "ID": 8422, + "SourceStructureID": 5283, + "TargetStructureID": 80123, + "Label": "5283-80123 via Ribbon Synapse from 131699 -> 131698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131699, + "TargetID": 131698, + "Directional": true + }] + }, { + "ID": 8423, + "SourceStructureID": 5283, + "TargetStructureID": 80131, + "Label": "5283-80131 via Ribbon Synapse from 80129 -> 132151, 132211 -> 132151, 132212 -> 132151", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80129, + "TargetID": 132151, + "Directional": true + }, { + "SourceID": 132211, + "TargetID": 132151, + "Directional": true + }, { + "SourceID": 132212, + "TargetID": 132151, + "Directional": true + }] + }, { + "ID": 8424, + "SourceStructureID": 5283, + "TargetStructureID": 80139, + "Label": "5283-80139 via Ribbon Synapse from 132211 -> 132210, 132212 -> 132210", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132211, + "TargetID": 132210, + "Directional": true + }, { + "SourceID": 132212, + "TargetID": 132210, + "Directional": true + }] + }, { + "ID": 8425, + "SourceStructureID": 5283, + "TargetStructureID": 80163, + "Label": "5283-80163 via Ribbon Synapse from 123897 -> 80164, 123898 -> 131652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123897, + "TargetID": 80164, + "Directional": true + }, { + "SourceID": 123898, + "TargetID": 131652, + "Directional": true + }] + }, { + "ID": 8426, + "SourceStructureID": 5283, + "TargetStructureID": 82307, + "Label": "5283-82307 via Ribbon Synapse from 80103 -> 132149", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80103, + "TargetID": 132149, + "Directional": true + }] + }, { + "ID": 8427, + "SourceStructureID": 5283, + "TargetStructureID": 122829, + "Label": "5283-122829 via Ribbon Synapse from 28100 -> 122879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28100, + "TargetID": 122879, + "Directional": true + }] + }, { + "ID": 8428, + "SourceStructureID": 5283, + "TargetStructureID": 131635, + "Label": "5283-131635 via Ribbon Synapse from 22438 -> 131636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22438, + "TargetID": 131636, + "Directional": true + }] + }, { + "ID": 8429, + "SourceStructureID": 5283, + "TargetStructureID": 131638, + "Label": "5283-131638 via Ribbon Synapse from 22436 -> 131640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22436, + "TargetID": 131640, + "Directional": true + }] + }, { + "ID": 8430, + "SourceStructureID": 5283, + "TargetStructureID": 131708, + "Label": "5283-131708 via Ribbon Synapse from 118740 -> 131711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118740, + "TargetID": 131711, + "Directional": true + }] + }, { + "ID": 8431, + "SourceStructureID": 5283, + "TargetStructureID": 132038, + "Label": "5283-132038 via Ribbon Synapse from 123377 -> 132039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123377, + "TargetID": 132039, + "Directional": true + }] + }, { + "ID": 8432, + "SourceStructureID": 5283, + "TargetStructureID": 132123, + "Label": "5283-132123 via Ribbon Synapse from 124029 -> 132124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124029, + "TargetID": 132124, + "Directional": true + }] + }, { + "ID": 8433, + "SourceStructureID": 5283, + "TargetStructureID": 132135, + "Label": "5283-132135 via Ribbon Synapse from 28062 -> 132136, 28063 -> 132136, 28064 -> 132136", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28062, + "TargetID": 132136, + "Directional": true + }, { + "SourceID": 28063, + "TargetID": 132136, + "Directional": true + }, { + "SourceID": 28064, + "TargetID": 132136, + "Directional": true + }] + }, { + "ID": 8434, + "SourceStructureID": 5283, + "TargetStructureID": 132162, + "Label": "5283-132162 via Ribbon Synapse from 22459 -> 132166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22459, + "TargetID": 132166, + "Directional": true + }] + }, { + "ID": 8435, + "SourceStructureID": 5283, + "TargetStructureID": 132255, + "Label": "5283-132255 via Ribbon Synapse from 132262 -> 132256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132262, + "TargetID": 132256, + "Directional": true + }] + }, { + "ID": 8436, + "SourceStructureID": 5283, + "TargetStructureID": 132257, + "Label": "5283-132257 via Ribbon Synapse from 124012 -> 132258", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124012, + "TargetID": 132258, + "Directional": true + }] + }, { + "ID": 8437, + "SourceStructureID": 5283, + "TargetStructureID": 132259, + "Label": "5283-132259 via Ribbon Synapse from 124012 -> 132260", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124012, + "TargetID": 132260, + "Directional": true + }] + }, { + "ID": 8438, + "SourceStructureID": 5284, + "TargetStructureID": 5107, + "Label": "5284-5107 via Ribbon Synapse from 43706 -> 43691, 53427 -> 53428, 113584 -> 113585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43706, + "TargetID": 43691, + "Directional": true + }, { + "SourceID": 53427, + "TargetID": 53428, + "Directional": true + }, { + "SourceID": 113584, + "TargetID": 113585, + "Directional": true + }] + }, { + "ID": 8439, + "SourceStructureID": 5284, + "TargetStructureID": 5292, + "Label": "5284-5292 via Adherens from 124681 -> 124683", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 124681, + "TargetID": 124683, + "Directional": true + }] + }, { + "ID": 8440, + "SourceStructureID": 5284, + "TargetStructureID": 5442, + "Label": "5284-5442 via Ribbon Synapse from 54341 -> 56698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54341, + "TargetID": 56698, + "Directional": true + }] + }, { + "ID": 8441, + "SourceStructureID": 5284, + "TargetStructureID": 7073, + "Label": "5284-7073 via Ribbon Synapse from 112565 -> 112564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112565, + "TargetID": 112564, + "Directional": true + }] + }, { + "ID": 8442, + "SourceStructureID": 5284, + "TargetStructureID": 8033, + "Label": "5284-8033 via Ribbon Synapse from 18441 -> 18438, 54375 -> 113203, 60845 -> 113357, 81526 -> 113648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18441, + "TargetID": 18438, + "Directional": true + }, { + "SourceID": 54375, + "TargetID": 113203, + "Directional": true + }, { + "SourceID": 60845, + "TargetID": 113357, + "Directional": true + }, { + "SourceID": 81526, + "TargetID": 113648, + "Directional": true + }] + }, { + "ID": 8443, + "SourceStructureID": 5284, + "TargetStructureID": 8720, + "Label": "5284-8720 via Ribbon Synapse from 54377 -> 127823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54377, + "TargetID": 127823, + "Directional": true + }] + }, { + "ID": 8444, + "SourceStructureID": 5284, + "TargetStructureID": 9769, + "Label": "5284-9769 via Ribbon Synapse from 23465 -> 23466, 23926 -> 23924, 53406 -> 53405", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23465, + "TargetID": 23466, + "Directional": true + }, { + "SourceID": 23926, + "TargetID": 23924, + "Directional": true + }, { + "SourceID": 53406, + "TargetID": 53405, + "Directional": true + }] + }, { + "ID": 8445, + "SourceStructureID": 5284, + "TargetStructureID": 16073, + "Label": "5284-16073 via Ribbon Synapse from 23463 -> 23462", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23463, + "TargetID": 23462, + "Directional": true + }] + }, { + "ID": 8446, + "SourceStructureID": 5284, + "TargetStructureID": 35367, + "Label": "5284-35367 via Ribbon Synapse from 35379 -> 35378", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35379, + "TargetID": 35378, + "Directional": true + }] + }, { + "ID": 8447, + "SourceStructureID": 5284, + "TargetStructureID": 38379, + "Label": "5284-38379 via BC Conventional Synapse from 113193 -> 124735", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113193, + "TargetID": 124735, + "Directional": true + }] + }, { + "ID": 8448, + "SourceStructureID": 5284, + "TargetStructureID": 53202, + "Label": "5284-53202 via Ribbon Synapse from 112799 -> 112801", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112799, + "TargetID": 112801, + "Directional": true + }] + }, { + "ID": 8449, + "SourceStructureID": 5284, + "TargetStructureID": 55132, + "Label": "5284-55132 via Ribbon Synapse from 113066 -> 55133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113066, + "TargetID": 55133, + "Directional": true + }] + }, { + "ID": 8450, + "SourceStructureID": 5284, + "TargetStructureID": 55517, + "Label": "5284-55517 via Ribbon Synapse from 49850 -> 55608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49850, + "TargetID": 55608, + "Directional": true + }] + }, { + "ID": 8451, + "SourceStructureID": 5284, + "TargetStructureID": 66165, + "Label": "5284-66165 via Ribbon Synapse from 92852 -> 113272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92852, + "TargetID": 113272, + "Directional": true + }] + }, { + "ID": 8452, + "SourceStructureID": 5284, + "TargetStructureID": 67045, + "Label": "5284-67045 via Ribbon Synapse from 53427 -> 81547", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53427, + "TargetID": 81547, + "Directional": true + }] + }, { + "ID": 8453, + "SourceStructureID": 5284, + "TargetStructureID": 67818, + "Label": "5284-67818 via Ribbon Synapse from 67904 -> 67905", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67904, + "TargetID": 67905, + "Directional": true + }] + }, { + "ID": 8454, + "SourceStructureID": 5284, + "TargetStructureID": 67868, + "Label": "5284-67868 via Ribbon Synapse from 67877 -> 67876", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67877, + "TargetID": 67876, + "Directional": true + }] + }, { + "ID": 8455, + "SourceStructureID": 5284, + "TargetStructureID": 68093, + "Label": "5284-68093 via Ribbon Synapse from 68128 -> 68127, 68132 -> 68133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68128, + "TargetID": 68127, + "Directional": true + }, { + "SourceID": 68132, + "TargetID": 68133, + "Directional": true + }] + }, { + "ID": 8456, + "SourceStructureID": 5284, + "TargetStructureID": 68135, + "Label": "5284-68135 via Ribbon Synapse from 113594 -> 147971, 147970 -> 147969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113594, + "TargetID": 147971, + "Directional": true + }, { + "SourceID": 147970, + "TargetID": 147969, + "Directional": true + }] + }, { + "ID": 8457, + "SourceStructureID": 5284, + "TargetStructureID": 68153, + "Label": "5284-68153 via Ribbon Synapse from 68170 -> 68171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68170, + "TargetID": 68171, + "Directional": true + }] + }, { + "ID": 8458, + "SourceStructureID": 5284, + "TargetStructureID": 68198, + "Label": "5284-68198 via Ribbon Synapse from 112873 -> 135757", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112873, + "TargetID": 135757, + "Directional": true + }] + }, { + "ID": 8459, + "SourceStructureID": 5284, + "TargetStructureID": 69162, + "Label": "5284-69162 via Ribbon Synapse from 64608 -> 69176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64608, + "TargetID": 69176, + "Directional": true + }] + }, { + "ID": 8460, + "SourceStructureID": 5284, + "TargetStructureID": 70379, + "Label": "5284-70379 via Ribbon Synapse from 70378 -> 70380, 113390 -> 113399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70378, + "TargetID": 70380, + "Directional": true + }, { + "SourceID": 113390, + "TargetID": 113399, + "Directional": true + }] + }, { + "ID": 8461, + "SourceStructureID": 5284, + "TargetStructureID": 73521, + "Label": "5284-73521 via Ribbon Synapse from 98155 -> 127693", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98155, + "TargetID": 127693, + "Directional": true + }] + }, { + "ID": 8462, + "SourceStructureID": 5284, + "TargetStructureID": 75713, + "Label": "5284-75713 via Ribbon Synapse from 113381 -> 113382", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113381, + "TargetID": 113382, + "Directional": true + }] + }, { + "ID": 8463, + "SourceStructureID": 5284, + "TargetStructureID": 76811, + "Label": "5284-76811 via Ribbon Synapse from 112926 -> 130279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112926, + "TargetID": 130279, + "Directional": true + }] + }, { + "ID": 8464, + "SourceStructureID": 5284, + "TargetStructureID": 81691, + "Label": "5284-81691 via Ribbon Synapse from 56719 -> 113374", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56719, + "TargetID": 113374, + "Directional": true + }] + }, { + "ID": 8465, + "SourceStructureID": 5284, + "TargetStructureID": 92092, + "Label": "5284-92092 via Ribbon Synapse from 112818 -> 112831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112818, + "TargetID": 112831, + "Directional": true + }] + }, { + "ID": 8466, + "SourceStructureID": 5284, + "TargetStructureID": 92865, + "Label": "5284-92865 via Ribbon Synapse from 113540 -> 127688", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113540, + "TargetID": 127688, + "Directional": true + }] + }, { + "ID": 8467, + "SourceStructureID": 5284, + "TargetStructureID": 92872, + "Label": "5284-92872 via Ribbon Synapse from 127697 -> 127698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127697, + "TargetID": 127698, + "Directional": true + }] + }, { + "ID": 8468, + "SourceStructureID": 5284, + "TargetStructureID": 104662, + "Label": "5284-104662 via BC Conventional Synapse from 112592 -> 112591", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112592, + "TargetID": 112591, + "Directional": true + }] + }, { + "ID": 8469, + "SourceStructureID": 5284, + "TargetStructureID": 112819, + "Label": "5284-112819 via Ribbon Synapse from 112818 -> 112820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112818, + "TargetID": 112820, + "Directional": true + }] + }, { + "ID": 8470, + "SourceStructureID": 5284, + "TargetStructureID": 112859, + "Label": "5284-112859 via Ribbon Synapse from 67877 -> 112864, 112872 -> 127909", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67877, + "TargetID": 112864, + "Directional": true + }, { + "SourceID": 112872, + "TargetID": 127909, + "Directional": true + }] + }, { + "ID": 8471, + "SourceStructureID": 5284, + "TargetStructureID": 113086, + "Label": "5284-113086 via Ribbon Synapse from 64590 -> 113109, 64605 -> 113116", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64590, + "TargetID": 113109, + "Directional": true + }, { + "SourceID": 64605, + "TargetID": 113116, + "Directional": true + }] + }, { + "ID": 8472, + "SourceStructureID": 5284, + "TargetStructureID": 113342, + "Label": "5284-113342 via Ribbon Synapse from 35379 -> 113349, 54355 -> 113344", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35379, + "TargetID": 113349, + "Directional": true + }, { + "SourceID": 54355, + "TargetID": 113344, + "Directional": true + }] + }, { + "ID": 8473, + "SourceStructureID": 5284, + "TargetStructureID": 117803, + "Label": "5284-117803 via Ribbon Synapse from 53406 -> 127740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53406, + "TargetID": 127740, + "Directional": true + }] + }, { + "ID": 8474, + "SourceStructureID": 5284, + "TargetStructureID": 117892, + "Label": "5284-117892 via Ribbon Synapse from 127883 -> 130259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127883, + "TargetID": 130259, + "Directional": true + }] + }, { + "ID": 8475, + "SourceStructureID": 5284, + "TargetStructureID": 118405, + "Label": "5284-118405 via BC Conventional Synapse from 113600 -> 130302", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113600, + "TargetID": 130302, + "Directional": true + }] + }, { + "ID": 8476, + "SourceStructureID": 5284, + "TargetStructureID": 120987, + "Label": "5284-120987 via Cistern Pre from 113440 -> 120989", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 113440, + "TargetID": 120989, + "Directional": true + }] + }, { + "ID": 8477, + "SourceStructureID": 5284, + "TargetStructureID": 121044, + "Label": "5284-121044 via Ribbon Synapse from 98157 -> 124617", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98157, + "TargetID": 124617, + "Directional": true + }] + }, { + "ID": 8478, + "SourceStructureID": 5284, + "TargetStructureID": 127897, + "Label": "5284-127897 via Ribbon Synapse from 112795 -> 127898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112795, + "TargetID": 127898, + "Directional": true + }] + }, { + "ID": 8479, + "SourceStructureID": 5284, + "TargetStructureID": 134553, + "Label": "5284-134553 via Ribbon Synapse from 127737 -> 127738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127737, + "TargetID": 127738, + "Directional": true + }] + }, { + "ID": 8480, + "SourceStructureID": 5285, + "TargetStructureID": 5150, + "Label": "5285-5150 via Conventional from 5286 -> 5168, 5298 -> 5161", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 5286, + "TargetID": 5168, + "Directional": true + }, { + "SourceID": 5298, + "TargetID": 5161, + "Directional": true + }] + }, { + "ID": 8481, + "SourceStructureID": 5285, + "TargetStructureID": 46741, + "Label": "5285-46741 via Conventional from 5291 -> 90189", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 5291, + "TargetID": 90189, + "Directional": true + }] + }, { + "ID": 8482, + "SourceStructureID": 5292, + "TargetStructureID": 598, + "Label": "5292-598 via Ribbon Synapse from 45606 -> 6322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45606, + "TargetID": 6322, + "Directional": true + }] + }, { + "ID": 8483, + "SourceStructureID": 5292, + "TargetStructureID": 606, + "Label": "5292-606 via Ribbon Synapse from 51341 -> 51351, 51352 -> 51353, 51366 -> 51367, 59487 -> 59488", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51341, + "TargetID": 51351, + "Directional": true + }, { + "SourceID": 51352, + "TargetID": 51353, + "Directional": true + }, { + "SourceID": 51366, + "TargetID": 51367, + "Directional": true + }, { + "SourceID": 59487, + "TargetID": 59488, + "Directional": true + }] + }, { + "ID": 8484, + "SourceStructureID": 5292, + "TargetStructureID": 5377, + "Label": "5292-5377 via Ribbon Synapse from 87050 -> 87051", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87050, + "TargetID": 87051, + "Directional": true + }] + }, { + "ID": 8485, + "SourceStructureID": 5292, + "TargetStructureID": 5618, + "Label": "5292-5618 via Ribbon Synapse from 49787 -> 65993", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49787, + "TargetID": 65993, + "Directional": true + }] + }, { + "ID": 8486, + "SourceStructureID": 5292, + "TargetStructureID": 9769, + "Label": "5292-9769 via Ribbon Synapse from 23935 -> 23934, 53649 -> 54444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23935, + "TargetID": 23934, + "Directional": true + }, { + "SourceID": 53649, + "TargetID": 54444, + "Directional": true + }] + }, { + "ID": 8487, + "SourceStructureID": 5292, + "TargetStructureID": 15796, + "Label": "5292-15796 via Ribbon Synapse from 36006 -> 36004, 51556 -> 15841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36006, + "TargetID": 36004, + "Directional": true + }, { + "SourceID": 51556, + "TargetID": 15841, + "Directional": true + }] + }, { + "ID": 8488, + "SourceStructureID": 5292, + "TargetStructureID": 35975, + "Label": "5292-35975 via Ribbon Synapse from 36006 -> 36003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36006, + "TargetID": 36003, + "Directional": true + }] + }, { + "ID": 8489, + "SourceStructureID": 5292, + "TargetStructureID": 54078, + "Label": "5292-54078 via Ribbon Synapse from 51578 -> 54082", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51578, + "TargetID": 54082, + "Directional": true + }] + }, { + "ID": 8490, + "SourceStructureID": 5292, + "TargetStructureID": 54261, + "Label": "5292-54261 via Ribbon Synapse from 54258 -> 54262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54258, + "TargetID": 54262, + "Directional": true + }] + }, { + "ID": 8491, + "SourceStructureID": 5292, + "TargetStructureID": 55098, + "Label": "5292-55098 via Ribbon Synapse from 55100 -> 55106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55100, + "TargetID": 55106, + "Directional": true + }] + }, { + "ID": 8492, + "SourceStructureID": 5292, + "TargetStructureID": 55517, + "Label": "5292-55517 via Ribbon Synapse from 49833 -> 55605", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49833, + "TargetID": 55605, + "Directional": true + }] + }, { + "ID": 8493, + "SourceStructureID": 5292, + "TargetStructureID": 59482, + "Label": "5292-59482 via Ribbon Synapse from 51366 -> 59484, 51542 -> 59483, 59487 -> 59486", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51366, + "TargetID": 59484, + "Directional": true + }, { + "SourceID": 51542, + "TargetID": 59483, + "Directional": true + }, { + "SourceID": 59487, + "TargetID": 59486, + "Directional": true + }] + }, { + "ID": 8494, + "SourceStructureID": 5292, + "TargetStructureID": 67868, + "Label": "5292-67868 via Ribbon Synapse from 49839 -> 67878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49839, + "TargetID": 67878, + "Directional": true + }] + }, { + "ID": 8495, + "SourceStructureID": 5292, + "TargetStructureID": 68539, + "Label": "5292-68539 via Ribbon Synapse from 51547 -> 84389, 70299 -> 70300, 70301 -> 70411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51547, + "TargetID": 84389, + "Directional": true + }, { + "SourceID": 70299, + "TargetID": 70300, + "Directional": true + }, { + "SourceID": 70301, + "TargetID": 70411, + "Directional": true + }] + }, { + "ID": 8496, + "SourceStructureID": 5292, + "TargetStructureID": 70331, + "Label": "5292-70331 via Ribbon Synapse from 51579 -> 70333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51579, + "TargetID": 70333, + "Directional": true + }] + }, { + "ID": 8497, + "SourceStructureID": 5292, + "TargetStructureID": 70334, + "Label": "5292-70334 via Ribbon Synapse from 51579 -> 70336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51579, + "TargetID": 70336, + "Directional": true + }] + }, { + "ID": 8498, + "SourceStructureID": 5292, + "TargetStructureID": 70454, + "Label": "5292-70454 via Ribbon Synapse from 51547 -> 89565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51547, + "TargetID": 89565, + "Directional": true + }] + }, { + "ID": 8499, + "SourceStructureID": 5292, + "TargetStructureID": 87052, + "Label": "5292-87052 via Ribbon Synapse from 87050 -> 87053", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87050, + "TargetID": 87053, + "Directional": true + }] + }, { + "ID": 8500, + "SourceStructureID": 5294, + "TargetStructureID": 579, + "Label": "5294-579 via Conventional from 32322 -> 32320", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32322, + "TargetID": 32320, + "Directional": true + }] + }, { + "ID": 8501, + "SourceStructureID": 5294, + "TargetStructureID": 5562, + "Label": "5294-5562 via Conventional from 32338 -> 32339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32338, + "TargetID": 32339, + "Directional": true + }] + }, { + "ID": 8502, + "SourceStructureID": 5294, + "TargetStructureID": 5645, + "Label": "5294-5645 via Conventional from 39474 -> 39490, 39493 -> 39494, 93040 -> 93041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39474, + "TargetID": 39490, + "Directional": true + }, { + "SourceID": 39493, + "TargetID": 39494, + "Directional": true + }, { + "SourceID": 93040, + "TargetID": 93041, + "Directional": true + }] + }, { + "ID": 8503, + "SourceStructureID": 5294, + "TargetStructureID": 5650, + "Label": "5294-5650 via Conventional from 39468 -> 39469", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39468, + "TargetID": 39469, + "Directional": true + }] + }, { + "ID": 8504, + "SourceStructureID": 5294, + "TargetStructureID": 7897, + "Label": "5294-7897 via Conventional from 93047 -> 93048", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93047, + "TargetID": 93048, + "Directional": true + }] + }, { + "ID": 8505, + "SourceStructureID": 5294, + "TargetStructureID": 15796, + "Label": "5294-15796 via Conventional from 93050 -> 93051", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93050, + "TargetID": 93051, + "Directional": true + }] + }, { + "ID": 8506, + "SourceStructureID": 5294, + "TargetStructureID": 92970, + "Label": "5294-92970 via Conventional from 92969 -> 93034", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92969, + "TargetID": 93034, + "Directional": true + }] + }, { + "ID": 8507, + "SourceStructureID": 5294, + "TargetStructureID": 93053, + "Label": "5294-93053 via Conventional from 39475 -> 93054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39475, + "TargetID": 93054, + "Directional": true + }] + }, { + "ID": 8508, + "SourceStructureID": 5294, + "TargetStructureID": 93115, + "Label": "5294-93115 via Conventional from 32328 -> 93116", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32328, + "TargetID": 93116, + "Directional": true + }] + }, { + "ID": 8509, + "SourceStructureID": 5295, + "TargetStructureID": 85629, + "Label": "5295-85629 via Ribbon Synapse from 36401 -> 85829, 36403 -> 85827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36401, + "TargetID": 85829, + "Directional": true + }, { + "SourceID": 36403, + "TargetID": 85827, + "Directional": true + }] + }, { + "ID": 8510, + "SourceStructureID": 5295, + "TargetStructureID": 85856, + "Label": "5295-85856 via Ribbon Synapse from 85864 -> 85863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85864, + "TargetID": 85863, + "Directional": true + }] + }, { + "ID": 8511, + "SourceStructureID": 5297, + "TargetStructureID": 5405, + "Label": "5297-5405 via Ribbon Synapse from 23430 -> 23429, 32225 -> 11183, 98469 -> 11187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23430, + "TargetID": 23429, + "Directional": true + }, { + "SourceID": 32225, + "TargetID": 11183, + "Directional": true + }, { + "SourceID": 98469, + "TargetID": 11187, + "Directional": true + }] + }, { + "ID": 8512, + "SourceStructureID": 5297, + "TargetStructureID": 5618, + "Label": "5297-5618 via Ribbon Synapse from 56810 -> 66006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56810, + "TargetID": 66006, + "Directional": true + }] + }, { + "ID": 8513, + "SourceStructureID": 5297, + "TargetStructureID": 7134, + "Label": "5297-7134 via Ribbon Synapse from 61483 -> 122178, 93271 -> 122221, 93276 -> 122224, 116488 -> 147934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61483, + "TargetID": 122178, + "Directional": true + }, { + "SourceID": 93271, + "TargetID": 122221, + "Directional": true + }, { + "SourceID": 93276, + "TargetID": 122224, + "Directional": true + }, { + "SourceID": 116488, + "TargetID": 147934, + "Directional": true + }] + }, { + "ID": 8514, + "SourceStructureID": 5297, + "TargetStructureID": 8575, + "Label": "5297-8575 via BC Conventional Synapse from 93339 -> 93340", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93339, + "TargetID": 93340, + "Directional": true + }] + }, { + "ID": 8515, + "SourceStructureID": 5297, + "TargetStructureID": 8575, + "Label": "5297-8575 via Ribbon Synapse from 53671 -> 62270, 93388 -> 93391, 98134 -> 62823, 98257 -> 62817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53671, + "TargetID": 62270, + "Directional": true + }, { + "SourceID": 93388, + "TargetID": 93391, + "Directional": true + }, { + "SourceID": 98134, + "TargetID": 62823, + "Directional": true + }, { + "SourceID": 98257, + "TargetID": 62817, + "Directional": true + }] + }, { + "ID": 8516, + "SourceStructureID": 5297, + "TargetStructureID": 9347, + "Label": "5297-9347 via Ribbon Synapse from 53640 -> 93341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53640, + "TargetID": 93341, + "Directional": true + }] + }, { + "ID": 8517, + "SourceStructureID": 5297, + "TargetStructureID": 9769, + "Label": "5297-9769 via Ribbon Synapse from 39422 -> 39423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39422, + "TargetID": 39423, + "Directional": true + }] + }, { + "ID": 8518, + "SourceStructureID": 5297, + "TargetStructureID": 13492, + "Label": "5297-13492 via Ribbon Synapse from 37615 -> 37616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37615, + "TargetID": 37616, + "Directional": true + }] + }, { + "ID": 8519, + "SourceStructureID": 5297, + "TargetStructureID": 22974, + "Label": "5297-22974 via BC Conventional Synapse from 116436 -> 134279", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116436, + "TargetID": 134279, + "Directional": true + }] + }, { + "ID": 8520, + "SourceStructureID": 5297, + "TargetStructureID": 22974, + "Label": "5297-22974 via Ribbon Synapse from 39431 -> 39432", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39431, + "TargetID": 39432, + "Directional": true + }] + }, { + "ID": 8521, + "SourceStructureID": 5297, + "TargetStructureID": 38379, + "Label": "5297-38379 via Ribbon Synapse from 38384 -> 38383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38384, + "TargetID": 38383, + "Directional": true + }] + }, { + "ID": 8522, + "SourceStructureID": 5297, + "TargetStructureID": 54078, + "Label": "5297-54078 via Ribbon Synapse from 54081 -> 54080, 116343 -> 134512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54081, + "TargetID": 54080, + "Directional": true + }, { + "SourceID": 116343, + "TargetID": 134512, + "Directional": true + }] + }, { + "ID": 8523, + "SourceStructureID": 5297, + "TargetStructureID": 61450, + "Label": "5297-61450 via BC Conventional Synapse from 116466 -> 61459", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116466, + "TargetID": 61459, + "Directional": true + }] + }, { + "ID": 8524, + "SourceStructureID": 5297, + "TargetStructureID": 61450, + "Label": "5297-61450 via Ribbon Synapse from 131395 -> 131396", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131395, + "TargetID": 131396, + "Directional": true + }] + }, { + "ID": 8525, + "SourceStructureID": 5297, + "TargetStructureID": 61823, + "Label": "5297-61823 via Ribbon Synapse from 64620 -> 64621, 68580 -> 68639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64620, + "TargetID": 64621, + "Directional": true + }, { + "SourceID": 68580, + "TargetID": 68639, + "Directional": true + }] + }, { + "ID": 8526, + "SourceStructureID": 5297, + "TargetStructureID": 62842, + "Label": "5297-62842 via BC Conventional Synapse from 62845 -> 62844", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62845, + "TargetID": 62844, + "Directional": true + }] + }, { + "ID": 8527, + "SourceStructureID": 5297, + "TargetStructureID": 66111, + "Label": "5297-66111 via Ribbon Synapse from 61349 -> 68592, 68593 -> 68592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61349, + "TargetID": 68592, + "Directional": true + }, { + "SourceID": 68593, + "TargetID": 68592, + "Directional": true + }] + }, { + "ID": 8528, + "SourceStructureID": 5297, + "TargetStructureID": 66523, + "Label": "5297-66523 via Ribbon Synapse from 75345 -> 75346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75345, + "TargetID": 75346, + "Directional": true + }] + }, { + "ID": 8529, + "SourceStructureID": 5297, + "TargetStructureID": 68539, + "Label": "5297-68539 via Ribbon Synapse from 68575 -> 68574, 68580 -> 68581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68575, + "TargetID": 68574, + "Directional": true + }, { + "SourceID": 68580, + "TargetID": 68581, + "Directional": true + }] + }, { + "ID": 8530, + "SourceStructureID": 5297, + "TargetStructureID": 75347, + "Label": "5297-75347 via Ribbon Synapse from 75345 -> 75348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75345, + "TargetID": 75348, + "Directional": true + }] + }, { + "ID": 8531, + "SourceStructureID": 5297, + "TargetStructureID": 93318, + "Label": "5297-93318 via Ribbon Synapse from 93317 -> 93319", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93317, + "TargetID": 93319, + "Directional": true + }] + }, { + "ID": 8532, + "SourceStructureID": 5297, + "TargetStructureID": 93325, + "Label": "5297-93325 via Ribbon Synapse from 93331 -> 98463", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93331, + "TargetID": 98463, + "Directional": true + }] + }, { + "ID": 8533, + "SourceStructureID": 5297, + "TargetStructureID": 93327, + "Label": "5297-93327 via Ribbon Synapse from 53661 -> 93328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53661, + "TargetID": 93328, + "Directional": true + }] + }, { + "ID": 8534, + "SourceStructureID": 5297, + "TargetStructureID": 93336, + "Label": "5297-93336 via Ribbon Synapse from 53696 -> 93337", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53696, + "TargetID": 93337, + "Directional": true + }] + }, { + "ID": 8535, + "SourceStructureID": 5297, + "TargetStructureID": 93342, + "Label": "5297-93342 via Ribbon Synapse from 53640 -> 93343", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53640, + "TargetID": 93343, + "Directional": true + }] + }, { + "ID": 8536, + "SourceStructureID": 5297, + "TargetStructureID": 93371, + "Label": "5297-93371 via Ribbon Synapse from 93378 -> 93376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93378, + "TargetID": 93376, + "Directional": true + }] + }, { + "ID": 8537, + "SourceStructureID": 5297, + "TargetStructureID": 93373, + "Label": "5297-93373 via Ribbon Synapse from 93378 -> 93375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93378, + "TargetID": 93375, + "Directional": true + }] + }, { + "ID": 8538, + "SourceStructureID": 5297, + "TargetStructureID": 93384, + "Label": "5297-93384 via Ribbon Synapse from 53657 -> 93385", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53657, + "TargetID": 93385, + "Directional": true + }] + }, { + "ID": 8539, + "SourceStructureID": 5297, + "TargetStructureID": 98456, + "Label": "5297-98456 via Ribbon Synapse from 93378 -> 98458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93378, + "TargetID": 98458, + "Directional": true + }] + }, { + "ID": 8540, + "SourceStructureID": 5297, + "TargetStructureID": 121070, + "Label": "5297-121070 via BC Conventional Synapse from 98266 -> 134293", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98266, + "TargetID": 134293, + "Directional": true + }] + }, { + "ID": 8541, + "SourceStructureID": 5297, + "TargetStructureID": 121288, + "Label": "5297-121288 via BC Conventional Synapse from 116355 -> 121290", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116355, + "TargetID": 121290, + "Directional": true + }] + }, { + "ID": 8542, + "SourceStructureID": 5297, + "TargetStructureID": 121294, + "Label": "5297-121294 via Ribbon Synapse from 116354 -> 121296", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116354, + "TargetID": 121296, + "Directional": true + }] + }, { + "ID": 8543, + "SourceStructureID": 5297, + "TargetStructureID": 121315, + "Label": "5297-121315 via Ribbon Synapse from 113609 -> 121320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113609, + "TargetID": 121320, + "Directional": true + }] + }, { + "ID": 8544, + "SourceStructureID": 5303, + "TargetStructureID": 471, + "Label": "5303-471 via Conventional from 32784 -> 32785", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32784, + "TargetID": 32785, + "Directional": true + }] + }, { + "ID": 8545, + "SourceStructureID": 5303, + "TargetStructureID": 476, + "Label": "5303-476 via Conventional from 102991 -> 3212", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102991, + "TargetID": 3212, + "Directional": true + }] + }, { + "ID": 8546, + "SourceStructureID": 5303, + "TargetStructureID": 517, + "Label": "5303-517 via Conventional from 35624 -> 14948", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35624, + "TargetID": 14948, + "Directional": true + }] + }, { + "ID": 8547, + "SourceStructureID": 5303, + "TargetStructureID": 519, + "Label": "5303-519 via Conventional from 8743 -> 3598", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8743, + "TargetID": 3598, + "Directional": true + }] + }, { + "ID": 8548, + "SourceStructureID": 5303, + "TargetStructureID": 5017, + "Label": "5303-5017 via Conventional from 102634 -> 5037", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102634, + "TargetID": 5037, + "Directional": true + }] + }, { + "ID": 8549, + "SourceStructureID": 5303, + "TargetStructureID": 5563, + "Label": "5303-5563 via Conventional from 6180 -> 35650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6180, + "TargetID": 35650, + "Directional": true + }] + }, { + "ID": 8550, + "SourceStructureID": 5303, + "TargetStructureID": 5592, + "Label": "5303-5592 via Conventional from 35734 -> 36841", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35734, + "TargetID": 36841, + "Directional": true + }] + }, { + "ID": 8551, + "SourceStructureID": 5303, + "TargetStructureID": 6135, + "Label": "5303-6135 via Conventional from 35638 -> 35639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35638, + "TargetID": 35639, + "Directional": true + }] + }, { + "ID": 8552, + "SourceStructureID": 5303, + "TargetStructureID": 7054, + "Label": "5303-7054 via Conventional from 30550 -> 30552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30550, + "TargetID": 30552, + "Directional": true + }] + }, { + "ID": 8553, + "SourceStructureID": 5303, + "TargetStructureID": 10625, + "Label": "5303-10625 via Conventional from 30523 -> 20760", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30523, + "TargetID": 20760, + "Directional": true + }] + }, { + "ID": 8554, + "SourceStructureID": 5303, + "TargetStructureID": 10826, + "Label": "5303-10826 via Conventional from 6182 -> 11269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6182, + "TargetID": 11269, + "Directional": true + }] + }, { + "ID": 8555, + "SourceStructureID": 5303, + "TargetStructureID": 10872, + "Label": "5303-10872 via Conventional from 30565 -> 15748, 100700 -> 15750", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30565, + "TargetID": 15748, + "Directional": true + }, { + "SourceID": 100700, + "TargetID": 15750, + "Directional": true + }] + }, { + "ID": 8556, + "SourceStructureID": 5303, + "TargetStructureID": 10897, + "Label": "5303-10897 via Conventional from 35632 -> 35633, 35634 -> 35635, 102666 -> 102667", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35632, + "TargetID": 35633, + "Directional": true + }, { + "SourceID": 35634, + "TargetID": 35635, + "Directional": true + }, { + "SourceID": 102666, + "TargetID": 102667, + "Directional": true + }] + }, { + "ID": 8557, + "SourceStructureID": 5303, + "TargetStructureID": 10943, + "Label": "5303-10943 via Conventional from 35627 -> 35628", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35627, + "TargetID": 35628, + "Directional": true + }] + }, { + "ID": 8558, + "SourceStructureID": 5303, + "TargetStructureID": 10953, + "Label": "5303-10953 via Conventional from 24054 -> 33266", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24054, + "TargetID": 33266, + "Directional": true + }] + }, { + "ID": 8559, + "SourceStructureID": 5303, + "TargetStructureID": 10956, + "Label": "5303-10956 via Conventional from 24061 -> 35652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24061, + "TargetID": 35652, + "Directional": true + }] + }, { + "ID": 8560, + "SourceStructureID": 5303, + "TargetStructureID": 10961, + "Label": "5303-10961 via Conventional from 24057 -> 33250", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24057, + "TargetID": 33250, + "Directional": true + }] + }, { + "ID": 8561, + "SourceStructureID": 5303, + "TargetStructureID": 11049, + "Label": "5303-11049 via Conventional from 35594 -> 35595, 35602 -> 35603", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35594, + "TargetID": 35595, + "Directional": true + }, { + "SourceID": 35602, + "TargetID": 35603, + "Directional": true + }] + }, { + "ID": 8562, + "SourceStructureID": 5303, + "TargetStructureID": 11085, + "Label": "5303-11085 via Conventional from 24013 -> 24026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24013, + "TargetID": 24026, + "Directional": true + }] + }, { + "ID": 8563, + "SourceStructureID": 5303, + "TargetStructureID": 11172, + "Label": "5303-11172 via Conventional from 30554 -> 100698, 33000 -> 15700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30554, + "TargetID": 100698, + "Directional": true + }, { + "SourceID": 33000, + "TargetID": 15700, + "Directional": true + }] + }, { + "ID": 8564, + "SourceStructureID": 5303, + "TargetStructureID": 14615, + "Label": "5303-14615 via Conventional from 6178 -> 35648, 6179 -> 35649, 64558 -> 64559", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6178, + "TargetID": 35648, + "Directional": true + }, { + "SourceID": 6179, + "TargetID": 35649, + "Directional": true + }, { + "SourceID": 64558, + "TargetID": 64559, + "Directional": true + }] + }, { + "ID": 8565, + "SourceStructureID": 5303, + "TargetStructureID": 15100, + "Label": "5303-15100 via Conventional from 102939 -> 102940", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102939, + "TargetID": 102940, + "Directional": true + }] + }, { + "ID": 8566, + "SourceStructureID": 5325, + "TargetStructureID": 8575, + "Label": "5325-8575 via Ribbon Synapse from 68755 -> 21634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68755, + "TargetID": 21634, + "Directional": true + }] + }, { + "ID": 8567, + "SourceStructureID": 5325, + "TargetStructureID": 40493, + "Label": "5325-40493 via Ribbon Synapse from 36409 -> 40494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36409, + "TargetID": 40494, + "Directional": true + }] + }, { + "ID": 8568, + "SourceStructureID": 5325, + "TargetStructureID": 40495, + "Label": "5325-40495 via BC Conventional Synapse from 36410 -> 40496", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36410, + "TargetID": 40496, + "Directional": true + }] + }, { + "ID": 8569, + "SourceStructureID": 5325, + "TargetStructureID": 40498, + "Label": "5325-40498 via Ribbon Synapse from 36408 -> 40499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36408, + "TargetID": 40499, + "Directional": true + }] + }, { + "ID": 8570, + "SourceStructureID": 5331, + "TargetStructureID": 5595, + "Label": "5331-5595 via Conventional from 39185 -> 33622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39185, + "TargetID": 33622, + "Directional": true + }] + }, { + "ID": 8571, + "SourceStructureID": 5331, + "TargetStructureID": 10625, + "Label": "5331-10625 via Conventional from 39174 -> 26926, 39176 -> 39177", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39174, + "TargetID": 26926, + "Directional": true + }, { + "SourceID": 39176, + "TargetID": 39177, + "Directional": true + }] + }, { + "ID": 8572, + "SourceStructureID": 5338, + "TargetStructureID": 8575, + "Label": "5338-8575 via Conventional from 63004 -> 63002, 63006 -> 21647", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63004, + "TargetID": 63002, + "Directional": true + }, { + "SourceID": 63006, + "TargetID": 21647, + "Directional": true + }] + }, { + "ID": 8573, + "SourceStructureID": 5345, + "TargetStructureID": 59229, + "Label": "5345-59229 via Conventional from 59259 -> 59260", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59259, + "TargetID": 59260, + "Directional": true + }] + }, { + "ID": 8574, + "SourceStructureID": 5350, + "TargetStructureID": 6857, + "Label": "5350-6857 via Conventional from 10635 -> 10636, 10660 -> 10661", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10635, + "TargetID": 10636, + "Directional": true + }, { + "SourceID": 10660, + "TargetID": 10661, + "Directional": true + }] + }, { + "ID": 8575, + "SourceStructureID": 5351, + "TargetStructureID": 178, + "Label": "5351-178 via Conventional from 24106 -> 3273", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24106, + "TargetID": 3273, + "Directional": true + }] + }, { + "ID": 8576, + "SourceStructureID": 5351, + "TargetStructureID": 5602, + "Label": "5351-5602 via Conventional from 24081 -> 24104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24081, + "TargetID": 24104, + "Directional": true + }] + }, { + "ID": 8577, + "SourceStructureID": 5351, + "TargetStructureID": 7073, + "Label": "5351-7073 via Conventional from 24068 -> 24066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24068, + "TargetID": 24066, + "Directional": true + }] + }, { + "ID": 8578, + "SourceStructureID": 5352, + "TargetStructureID": 5575, + "Label": "5352-5575 via Conventional from 24118 -> 24117", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24118, + "TargetID": 24117, + "Directional": true + }] + }, { + "ID": 8579, + "SourceStructureID": 5355, + "TargetStructureID": 10963, + "Label": "5355-10963 via Conventional from 5461 -> 136923", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 5461, + "TargetID": 136923, + "Directional": true + }] + }, { + "ID": 8580, + "SourceStructureID": 5372, + "TargetStructureID": 906, + "Label": "5372-906 via Conventional from 41076 -> 16627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41076, + "TargetID": 16627, + "Directional": true + }] + }, { + "ID": 8581, + "SourceStructureID": 5377, + "TargetStructureID": 161, + "Label": "5377-161 via Conventional from 22740 -> 22741, 87013 -> 22741", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22740, + "TargetID": 22741, + "Directional": true + }, { + "SourceID": 87013, + "TargetID": 22741, + "Directional": true + }] + }, { + "ID": 8582, + "SourceStructureID": 5377, + "TargetStructureID": 173, + "Label": "5377-173 via Conventional from 87063 -> 12019, 87083 -> 11999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87063, + "TargetID": 12019, + "Directional": true + }, { + "SourceID": 87083, + "TargetID": 11999, + "Directional": true + }] + }, { + "ID": 8583, + "SourceStructureID": 5377, + "TargetStructureID": 1637, + "Label": "5377-1637 via Conventional from 22774 -> 22779", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22774, + "TargetID": 22779, + "Directional": true + }] + }, { + "ID": 8584, + "SourceStructureID": 5377, + "TargetStructureID": 5118, + "Label": "5377-5118 via Conventional from 87024 -> 52227", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87024, + "TargetID": 52227, + "Directional": true + }] + }, { + "ID": 8585, + "SourceStructureID": 5377, + "TargetStructureID": 5279, + "Label": "5377-5279 via Conventional from 22751 -> 119108, 98582 -> 98583", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22751, + "TargetID": 119108, + "Directional": true + }, { + "SourceID": 98582, + "TargetID": 98583, + "Directional": true + }] + }, { + "ID": 8586, + "SourceStructureID": 5377, + "TargetStructureID": 5292, + "Label": "5377-5292 via Conventional from 22738 -> 22739", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22738, + "TargetID": 22739, + "Directional": true + }] + }, { + "ID": 8587, + "SourceStructureID": 5377, + "TargetStructureID": 5530, + "Label": "5377-5530 via Conventional from 87088 -> 42131", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87088, + "TargetID": 42131, + "Directional": true + }] + }, { + "ID": 8588, + "SourceStructureID": 5377, + "TargetStructureID": 5561, + "Label": "5377-5561 via Conventional from 97747 -> 97746", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97747, + "TargetID": 97746, + "Directional": true + }] + }, { + "ID": 8589, + "SourceStructureID": 5377, + "TargetStructureID": 20136, + "Label": "5377-20136 via Conventional from 87028 -> 87029", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87028, + "TargetID": 87029, + "Directional": true + }] + }, { + "ID": 8590, + "SourceStructureID": 5377, + "TargetStructureID": 58714, + "Label": "5377-58714 via Conventional from 87086 -> 58734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87086, + "TargetID": 58734, + "Directional": true + }] + }, { + "ID": 8591, + "SourceStructureID": 5377, + "TargetStructureID": 75583, + "Label": "5377-75583 via Conventional from 22753 -> 75592", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22753, + "TargetID": 75592, + "Directional": true + }] + }, { + "ID": 8592, + "SourceStructureID": 5377, + "TargetStructureID": 80562, + "Label": "5377-80562 via Conventional from 87089 -> 87092", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87089, + "TargetID": 87092, + "Directional": true + }] + }, { + "ID": 8593, + "SourceStructureID": 5377, + "TargetStructureID": 87020, + "Label": "5377-87020 via Conventional from 87019 -> 87021", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87019, + "TargetID": 87021, + "Directional": true + }] + }, { + "ID": 8594, + "SourceStructureID": 5377, + "TargetStructureID": 87095, + "Label": "5377-87095 via Conventional from 87094 -> 87096", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87094, + "TargetID": 87096, + "Directional": true + }] + }, { + "ID": 8595, + "SourceStructureID": 5377, + "TargetStructureID": 87098, + "Label": "5377-87098 via Conventional from 87097 -> 87099", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87097, + "TargetID": 87099, + "Directional": true + }] + }, { + "ID": 8596, + "SourceStructureID": 5377, + "TargetStructureID": 88199, + "Label": "5377-88199 via Conventional from 87044 -> 88237", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87044, + "TargetID": 88237, + "Directional": true + }] + }, { + "ID": 8597, + "SourceStructureID": 5382, + "TargetStructureID": 6857, + "Label": "5382-6857 via Conventional from 59641 -> 7526", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59641, + "TargetID": 7526, + "Directional": true + }] + }, { + "ID": 8598, + "SourceStructureID": 5388, + "TargetStructureID": 6146, + "Label": "5388-6146 via Conventional from 20215 -> 38097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20215, + "TargetID": 38097, + "Directional": true + }] + }, { + "ID": 8599, + "SourceStructureID": 5390, + "TargetStructureID": 5916, + "Label": "5390-5916 via Conventional from 55696 -> 37980", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55696, + "TargetID": 37980, + "Directional": true + }] + }, { + "ID": 8600, + "SourceStructureID": 5394, + "TargetStructureID": 518, + "Label": "5394-518 via Conventional from 22811 -> 3384", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22811, + "TargetID": 3384, + "Directional": true + }] + }, { + "ID": 8601, + "SourceStructureID": 5394, + "TargetStructureID": 10931, + "Label": "5394-10931 via Conventional from 77054 -> 77055, 77057 -> 77058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77054, + "TargetID": 77055, + "Directional": true + }, { + "SourceID": 77057, + "TargetID": 77058, + "Directional": true + }] + }, { + "ID": 8602, + "SourceStructureID": 5394, + "TargetStructureID": 10943, + "Label": "5394-10943 via Conventional from 22808 -> 22809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22808, + "TargetID": 22809, + "Directional": true + }] + }, { + "ID": 8603, + "SourceStructureID": 5394, + "TargetStructureID": 11031, + "Label": "5394-11031 via Conventional from 77060 -> 77064, 77062 -> 25443, 77063 -> 25444", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77060, + "TargetID": 77064, + "Directional": true + }, { + "SourceID": 77062, + "TargetID": 25443, + "Directional": true + }, { + "SourceID": 77063, + "TargetID": 25444, + "Directional": true + }] + }, { + "ID": 8604, + "SourceStructureID": 5394, + "TargetStructureID": 14615, + "Label": "5394-14615 via Conventional from 76804 -> 76805, 76817 -> 76818, 76819 -> 76820, 77101 -> 77102, 87951 -> 87952", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76804, + "TargetID": 76805, + "Directional": true + }, { + "SourceID": 76817, + "TargetID": 76818, + "Directional": true + }, { + "SourceID": 76819, + "TargetID": 76820, + "Directional": true + }, { + "SourceID": 77101, + "TargetID": 77102, + "Directional": true + }, { + "SourceID": 87951, + "TargetID": 87952, + "Directional": true + }] + }, { + "ID": 8605, + "SourceStructureID": 5396, + "TargetStructureID": 5565, + "Label": "5396-5565 via Conventional from 89484 -> 53961", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89484, + "TargetID": 53961, + "Directional": true + }] + }, { + "ID": 8606, + "SourceStructureID": 5396, + "TargetStructureID": 89312, + "Label": "5396-89312 via Conventional from 89454 -> 89315", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89454, + "TargetID": 89315, + "Directional": true + }] + }, { + "ID": 8607, + "SourceStructureID": 5402, + "TargetStructureID": 5563, + "Label": "5402-5563 via Conventional from 129595 -> 129597, 129596 -> 129598, 129599 -> 129600, 129602 -> 129603", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129595, + "TargetID": 129597, + "Directional": true + }, { + "SourceID": 129596, + "TargetID": 129598, + "Directional": true + }, { + "SourceID": 129599, + "TargetID": 129600, + "Directional": true + }, { + "SourceID": 129602, + "TargetID": 129603, + "Directional": true + }] + }, { + "ID": 8608, + "SourceStructureID": 5402, + "TargetStructureID": 10943, + "Label": "5402-10943 via Conventional from 129551 -> 16255, 129553 -> 16257", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129551, + "TargetID": 16255, + "Directional": true + }, { + "SourceID": 129553, + "TargetID": 16257, + "Directional": true + }] + }, { + "ID": 8609, + "SourceStructureID": 5402, + "TargetStructureID": 14615, + "Label": "5402-14615 via Conventional from 76605 -> 76910, 76606 -> 76911", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76605, + "TargetID": 76910, + "Directional": true + }, { + "SourceID": 76606, + "TargetID": 76911, + "Directional": true + }] + }, { + "ID": 8610, + "SourceStructureID": 5405, + "TargetStructureID": 909, + "Label": "5405-909 via Conventional from 11176 -> 87035, 11182 -> 120110, 117424 -> 53733, 117658 -> 53761, 131033 -> 131031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11176, + "TargetID": 87035, + "Directional": true + }, { + "SourceID": 11182, + "TargetID": 120110, + "Directional": true + }, { + "SourceID": 117424, + "TargetID": 53733, + "Directional": true + }, { + "SourceID": 117658, + "TargetID": 53761, + "Directional": true + }, { + "SourceID": 131033, + "TargetID": 131031, + "Directional": true + }] + }, { + "ID": 8611, + "SourceStructureID": 5405, + "TargetStructureID": 999, + "Label": "5405-999 via Conventional from 23406 -> 23415, 23407 -> 23414", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23406, + "TargetID": 23415, + "Directional": true + }, { + "SourceID": 23407, + "TargetID": 23414, + "Directional": true + }] + }, { + "ID": 8612, + "SourceStructureID": 5405, + "TargetStructureID": 3756, + "Label": "5405-3756 via Conventional from 116247 -> 116246, 116259 -> 116258, 120469 -> 116238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116247, + "TargetID": 116246, + "Directional": true + }, { + "SourceID": 116259, + "TargetID": 116258, + "Directional": true + }, { + "SourceID": 120469, + "TargetID": 116238, + "Directional": true + }] + }, { + "ID": 8613, + "SourceStructureID": 5405, + "TargetStructureID": 5297, + "Label": "5405-5297 via Conventional from 11184 -> 32226, 23431 -> 23432, 116496 -> 116495", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11184, + "TargetID": 32226, + "Directional": true + }, { + "SourceID": 23431, + "TargetID": 23432, + "Directional": true + }, { + "SourceID": 116496, + "TargetID": 116495, + "Directional": true + }] + }, { + "ID": 8614, + "SourceStructureID": 5405, + "TargetStructureID": 5500, + "Label": "5405-5500 via Conventional from 11171 -> 40071", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11171, + "TargetID": 40071, + "Directional": true + }] + }, { + "ID": 8615, + "SourceStructureID": 5405, + "TargetStructureID": 5501, + "Label": "5405-5501 via Conventional from 42923 -> 110209, 42929 -> 110195, 42930 -> 115368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42923, + "TargetID": 110209, + "Directional": true + }, { + "SourceID": 42929, + "TargetID": 110195, + "Directional": true + }, { + "SourceID": 42930, + "TargetID": 115368, + "Directional": true + }] + }, { + "ID": 8616, + "SourceStructureID": 5405, + "TargetStructureID": 5504, + "Label": "5405-5504 via Conventional from 42934 -> 37894", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42934, + "TargetID": 37894, + "Directional": true + }] + }, { + "ID": 8617, + "SourceStructureID": 5405, + "TargetStructureID": 5561, + "Label": "5405-5561 via Conventional from 42911 -> 46211", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42911, + "TargetID": 46211, + "Directional": true + }] + }, { + "ID": 8618, + "SourceStructureID": 5405, + "TargetStructureID": 5568, + "Label": "5405-5568 via Conventional from 11146 -> 50338", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11146, + "TargetID": 50338, + "Directional": true + }] + }, { + "ID": 8619, + "SourceStructureID": 5405, + "TargetStructureID": 5648, + "Label": "5405-5648 via Conventional from 11178 -> 23420", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11178, + "TargetID": 23420, + "Directional": true + }] + }, { + "ID": 8620, + "SourceStructureID": 5405, + "TargetStructureID": 6118, + "Label": "5405-6118 via Conventional from 42939 -> 65674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42939, + "TargetID": 65674, + "Directional": true + }] + }, { + "ID": 8621, + "SourceStructureID": 5405, + "TargetStructureID": 6121, + "Label": "5405-6121 via Conventional from 11141 -> 30184, 42944 -> 52277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11141, + "TargetID": 30184, + "Directional": true + }, { + "SourceID": 42944, + "TargetID": 52277, + "Directional": true + }] + }, { + "ID": 8622, + "SourceStructureID": 5405, + "TargetStructureID": 18693, + "Label": "5405-18693 via Conventional from 42908 -> 33807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42908, + "TargetID": 33807, + "Directional": true + }] + }, { + "ID": 8623, + "SourceStructureID": 5405, + "TargetStructureID": 59392, + "Label": "5405-59392 via Conventional from 11168 -> 59417", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11168, + "TargetID": 59417, + "Directional": true + }] + }, { + "ID": 8624, + "SourceStructureID": 5405, + "TargetStructureID": 85088, + "Label": "5405-85088 via Conventional from 11165 -> 85089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11165, + "TargetID": 85089, + "Directional": true + }] + }, { + "ID": 8625, + "SourceStructureID": 5405, + "TargetStructureID": 85119, + "Label": "5405-85119 via Conventional from 42907 -> 85135", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42907, + "TargetID": 85135, + "Directional": true + }] + }, { + "ID": 8626, + "SourceStructureID": 5410, + "TargetStructureID": 330, + "Label": "5410-330 via Cistern Pre from 82127 -> 38882", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 82127, + "TargetID": 38882, + "Directional": true + }] + }, { + "ID": 8627, + "SourceStructureID": 5410, + "TargetStructureID": 332, + "Label": "5410-332 via Conventional from 82141 -> 82146, 82152 -> 97394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82141, + "TargetID": 82146, + "Directional": true + }, { + "SourceID": 82152, + "TargetID": 97394, + "Directional": true + }] + }, { + "ID": 8628, + "SourceStructureID": 5411, + "TargetStructureID": 184, + "Label": "5411-184 via Conventional from 31764 -> 17364", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31764, + "TargetID": 17364, + "Directional": true + }] + }, { + "ID": 8629, + "SourceStructureID": 5411, + "TargetStructureID": 11244, + "Label": "5411-11244 via Conventional from 31762 -> 31761", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31762, + "TargetID": 31761, + "Directional": true + }] + }, { + "ID": 8630, + "SourceStructureID": 5413, + "TargetStructureID": 7446, + "Label": "5413-7446 via Conventional from 130915 -> 123028", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130915, + "TargetID": 123028, + "Directional": true + }] + }, { + "ID": 8631, + "SourceStructureID": 5413, + "TargetStructureID": 7461, + "Label": "5413-7461 via Conventional from 41183 -> 41132", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41183, + "TargetID": 41132, + "Directional": true + }] + }, { + "ID": 8632, + "SourceStructureID": 5413, + "TargetStructureID": 38605, + "Label": "5413-38605 via Conventional from 30436 -> 30439", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30436, + "TargetID": 30439, + "Directional": true + }] + }, { + "ID": 8633, + "SourceStructureID": 5423, + "TargetStructureID": 595, + "Label": "5423-595 via Conventional from 92827 -> 92828", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92827, + "TargetID": 92828, + "Directional": true + }] + }, { + "ID": 8634, + "SourceStructureID": 5423, + "TargetStructureID": 5530, + "Label": "5423-5530 via Conventional from 80465 -> 80466", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80465, + "TargetID": 80466, + "Directional": true + }] + }, { + "ID": 8635, + "SourceStructureID": 5435, + "TargetStructureID": 138, + "Label": "5435-138 via Conventional from 41136 -> 46417", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41136, + "TargetID": 46417, + "Directional": true + }] + }, { + "ID": 8636, + "SourceStructureID": 5435, + "TargetStructureID": 142, + "Label": "5435-142 via Cistern Pre from 147681 -> 147682", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 147681, + "TargetID": 147682, + "Directional": true + }] + }, { + "ID": 8637, + "SourceStructureID": 5435, + "TargetStructureID": 170, + "Label": "5435-170 via Conventional from 89037 -> 89038, 89999 -> 90000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89037, + "TargetID": 89038, + "Directional": true + }, { + "SourceID": 89999, + "TargetID": 90000, + "Directional": true + }] + }, { + "ID": 8638, + "SourceStructureID": 5435, + "TargetStructureID": 173, + "Label": "5435-173 via Conventional from 24346 -> 12040, 41174 -> 41175", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24346, + "TargetID": 12040, + "Directional": true + }, { + "SourceID": 41174, + "TargetID": 41175, + "Directional": true + }] + }, { + "ID": 8639, + "SourceStructureID": 5435, + "TargetStructureID": 364, + "Label": "5435-364 via Conventional from 32023 -> 32022, 32026 -> 32025, 41792 -> 120615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32023, + "TargetID": 32022, + "Directional": true + }, { + "SourceID": 32026, + "TargetID": 32025, + "Directional": true + }, { + "SourceID": 41792, + "TargetID": 120615, + "Directional": true + }] + }, { + "ID": 8640, + "SourceStructureID": 5435, + "TargetStructureID": 595, + "Label": "5435-595 via Conventional from 41147 -> 53505", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41147, + "TargetID": 53505, + "Directional": true + }] + }, { + "ID": 8641, + "SourceStructureID": 5435, + "TargetStructureID": 1724, + "Label": "5435-1724 via Conventional from 119515 -> 119514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119515, + "TargetID": 119514, + "Directional": true + }] + }, { + "ID": 8642, + "SourceStructureID": 5435, + "TargetStructureID": 4568, + "Label": "5435-4568 via Conventional from 41099 -> 36318", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41099, + "TargetID": 36318, + "Directional": true + }] + }, { + "ID": 8643, + "SourceStructureID": 5435, + "TargetStructureID": 4569, + "Label": "5435-4569 via Conventional from 41125 -> 4744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41125, + "TargetID": 4744, + "Directional": true + }] + }, { + "ID": 8644, + "SourceStructureID": 5435, + "TargetStructureID": 4877, + "Label": "5435-4877 via Conventional from 24358 -> 23963", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24358, + "TargetID": 23963, + "Directional": true + }] + }, { + "ID": 8645, + "SourceStructureID": 5435, + "TargetStructureID": 5427, + "Label": "5435-5427 via Conventional from 41679 -> 129984", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41679, + "TargetID": 129984, + "Directional": true + }] + }, { + "ID": 8646, + "SourceStructureID": 5435, + "TargetStructureID": 5534, + "Label": "5435-5534 via Conventional from 41153 -> 34629", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41153, + "TargetID": 34629, + "Directional": true + }] + }, { + "ID": 8647, + "SourceStructureID": 5435, + "TargetStructureID": 5601, + "Label": "5435-5601 via Conventional from 24359 -> 127312, 24364 -> 127321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24359, + "TargetID": 127312, + "Directional": true + }, { + "SourceID": 24364, + "TargetID": 127321, + "Directional": true + }] + }, { + "ID": 8648, + "SourceStructureID": 5435, + "TargetStructureID": 11092, + "Label": "5435-11092 via Conventional from 41152 -> 128635", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41152, + "TargetID": 128635, + "Directional": true + }] + }, { + "ID": 8649, + "SourceStructureID": 5435, + "TargetStructureID": 20136, + "Label": "5435-20136 via Conventional from 41179 -> 135513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41179, + "TargetID": 135513, + "Directional": true + }] + }, { + "ID": 8650, + "SourceStructureID": 5435, + "TargetStructureID": 59362, + "Label": "5435-59362 via Conventional from 41259 -> 63794", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41259, + "TargetID": 63794, + "Directional": true + }] + }, { + "ID": 8651, + "SourceStructureID": 5435, + "TargetStructureID": 82743, + "Label": "5435-82743 via Conventional from 41215 -> 82779", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41215, + "TargetID": 82779, + "Directional": true + }] + }, { + "ID": 8652, + "SourceStructureID": 5435, + "TargetStructureID": 85856, + "Label": "5435-85856 via Cistern Pre from 85917 -> 85919", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 85917, + "TargetID": 85919, + "Directional": true + }] + }, { + "ID": 8653, + "SourceStructureID": 5435, + "TargetStructureID": 127846, + "Label": "5435-127846 via Conventional from 41130 -> 127877", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41130, + "TargetID": 127877, + "Directional": true + }] + }, { + "ID": 8654, + "SourceStructureID": 5435, + "TargetStructureID": 131568, + "Label": "5435-131568 via Conventional from 41738 -> 131587", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41738, + "TargetID": 131587, + "Directional": true + }] + }, { + "ID": 8655, + "SourceStructureID": 5436, + "TargetStructureID": 5453, + "Label": "5436-5453 via Conventional from 23095 -> 18551", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23095, + "TargetID": 18551, + "Directional": true + }] + }, { + "ID": 8656, + "SourceStructureID": 5436, + "TargetStructureID": 5528, + "Label": "5436-5528 via Conventional from 23092 -> 94269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23092, + "TargetID": 94269, + "Directional": true + }] + }, { + "ID": 8657, + "SourceStructureID": 5436, + "TargetStructureID": 6129, + "Label": "5436-6129 via Conventional from 23089 -> 23090", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23089, + "TargetID": 23090, + "Directional": true + }] + }, { + "ID": 8658, + "SourceStructureID": 5436, + "TargetStructureID": 7215, + "Label": "5436-7215 via Conventional from 41603 -> 31578", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41603, + "TargetID": 31578, + "Directional": true + }] + }, { + "ID": 8659, + "SourceStructureID": 5436, + "TargetStructureID": 8575, + "Label": "5436-8575 via Conventional from 61663 -> 61662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61663, + "TargetID": 61662, + "Directional": true + }] + }, { + "ID": 8660, + "SourceStructureID": 5439, + "TargetStructureID": 166, + "Label": "5439-166 via Conventional from 70807 -> 70808, 71457 -> 71458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70807, + "TargetID": 70808, + "Directional": true + }, { + "SourceID": 71457, + "TargetID": 71458, + "Directional": true + }] + }, { + "ID": 8661, + "SourceStructureID": 5439, + "TargetStructureID": 280, + "Label": "5439-280 via Conventional from 85705 -> 85706", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85705, + "TargetID": 85706, + "Directional": true + }] + }, { + "ID": 8662, + "SourceStructureID": 5439, + "TargetStructureID": 332, + "Label": "5439-332 via Conventional from 85675 -> 85676, 85677 -> 85678, 85688 -> 25207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85675, + "TargetID": 85676, + "Directional": true + }, { + "SourceID": 85677, + "TargetID": 85678, + "Directional": true + }, { + "SourceID": 85688, + "TargetID": 25207, + "Directional": true + }] + }, { + "ID": 8663, + "SourceStructureID": 5439, + "TargetStructureID": 431, + "Label": "5439-431 via Conventional from 98774 -> 119074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98774, + "TargetID": 119074, + "Directional": true + }] + }, { + "ID": 8664, + "SourceStructureID": 5439, + "TargetStructureID": 5599, + "Label": "5439-5599 via Conventional from 66594 -> 70669, 70636 -> 70638", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66594, + "TargetID": 70669, + "Directional": true + }, { + "SourceID": 70636, + "TargetID": 70638, + "Directional": true + }] + }, { + "ID": 8665, + "SourceStructureID": 5439, + "TargetStructureID": 5635, + "Label": "5439-5635 via Conventional from 66555 -> 55993, 66557 -> 66558, 66562 -> 55983, 66581 -> 28818, 70636 -> 70637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66555, + "TargetID": 55993, + "Directional": true + }, { + "SourceID": 66557, + "TargetID": 66558, + "Directional": true + }, { + "SourceID": 66562, + "TargetID": 55983, + "Directional": true + }, { + "SourceID": 66581, + "TargetID": 28818, + "Directional": true + }, { + "SourceID": 70636, + "TargetID": 70637, + "Directional": true + }] + }, { + "ID": 8666, + "SourceStructureID": 5439, + "TargetStructureID": 5638, + "Label": "5439-5638 via Conventional from 66545 -> 66255, 66611 -> 39126", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66545, + "TargetID": 66255, + "Directional": true + }, { + "SourceID": 66611, + "TargetID": 39126, + "Directional": true + }] + }, { + "ID": 8667, + "SourceStructureID": 5439, + "TargetStructureID": 7568, + "Label": "5439-7568 via Conventional from 85516 -> 27087", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85516, + "TargetID": 27087, + "Directional": true + }] + }, { + "ID": 8668, + "SourceStructureID": 5439, + "TargetStructureID": 10959, + "Label": "5439-10959 via Conventional from 66572 -> 16374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66572, + "TargetID": 16374, + "Directional": true + }] + }, { + "ID": 8669, + "SourceStructureID": 5439, + "TargetStructureID": 15977, + "Label": "5439-15977 via Conventional from 66614 -> 70756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66614, + "TargetID": 70756, + "Directional": true + }] + }, { + "ID": 8670, + "SourceStructureID": 5439, + "TargetStructureID": 29198, + "Label": "5439-29198 via Conventional from 66554 -> 29226, 85589 -> 29209", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66554, + "TargetID": 29226, + "Directional": true + }, { + "SourceID": 85589, + "TargetID": 29209, + "Directional": true + }] + }, { + "ID": 8671, + "SourceStructureID": 5439, + "TargetStructureID": 32608, + "Label": "5439-32608 via Conventional from 85598 -> 85600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85598, + "TargetID": 85600, + "Directional": true + }] + }, { + "ID": 8672, + "SourceStructureID": 5439, + "TargetStructureID": 56822, + "Label": "5439-56822 via Conventional from 66561 -> 70569", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66561, + "TargetID": 70569, + "Directional": true + }] + }, { + "ID": 8673, + "SourceStructureID": 5439, + "TargetStructureID": 61816, + "Label": "5439-61816 via Conventional from 80747 -> 80748", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80747, + "TargetID": 80748, + "Directional": true + }] + }, { + "ID": 8674, + "SourceStructureID": 5439, + "TargetStructureID": 70535, + "Label": "5439-70535 via Cistern Pre from 66586 -> 70536", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 66586, + "TargetID": 70536, + "Directional": true + }] + }, { + "ID": 8675, + "SourceStructureID": 5439, + "TargetStructureID": 70557, + "Label": "5439-70557 via Conventional from 66549 -> 70558", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66549, + "TargetID": 70558, + "Directional": true + }] + }, { + "ID": 8676, + "SourceStructureID": 5439, + "TargetStructureID": 70562, + "Label": "5439-70562 via Conventional from 70561 -> 70564", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70561, + "TargetID": 70564, + "Directional": true + }] + }, { + "ID": 8677, + "SourceStructureID": 5439, + "TargetStructureID": 70572, + "Label": "5439-70572 via Conventional from 66563 -> 70574", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66563, + "TargetID": 70574, + "Directional": true + }] + }, { + "ID": 8678, + "SourceStructureID": 5439, + "TargetStructureID": 70577, + "Label": "5439-70577 via Conventional from 66570 -> 70578", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66570, + "TargetID": 70578, + "Directional": true + }] + }, { + "ID": 8679, + "SourceStructureID": 5439, + "TargetStructureID": 70610, + "Label": "5439-70610 via Conventional from 70609 -> 70611", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70609, + "TargetID": 70611, + "Directional": true + }] + }, { + "ID": 8680, + "SourceStructureID": 5439, + "TargetStructureID": 70615, + "Label": "5439-70615 via Conventional from 66579 -> 70616", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66579, + "TargetID": 70616, + "Directional": true + }] + }, { + "ID": 8681, + "SourceStructureID": 5439, + "TargetStructureID": 70618, + "Label": "5439-70618 via Conventional from 70617 -> 70619", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70617, + "TargetID": 70619, + "Directional": true + }] + }, { + "ID": 8682, + "SourceStructureID": 5439, + "TargetStructureID": 70680, + "Label": "5439-70680 via Conventional from 70679 -> 70681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70679, + "TargetID": 70681, + "Directional": true + }] + }, { + "ID": 8683, + "SourceStructureID": 5439, + "TargetStructureID": 70768, + "Label": "5439-70768 via Conventional from 66565 -> 70769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66565, + "TargetID": 70769, + "Directional": true + }] + }, { + "ID": 8684, + "SourceStructureID": 5439, + "TargetStructureID": 70776, + "Label": "5439-70776 via Conventional from 70568 -> 70777", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70568, + "TargetID": 70777, + "Directional": true + }] + }, { + "ID": 8685, + "SourceStructureID": 5439, + "TargetStructureID": 70780, + "Label": "5439-70780 via Conventional from 70782 -> 70783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70782, + "TargetID": 70783, + "Directional": true + }] + }, { + "ID": 8686, + "SourceStructureID": 5439, + "TargetStructureID": 70789, + "Label": "5439-70789 via Conventional from 66574 -> 70790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66574, + "TargetID": 70790, + "Directional": true + }] + }, { + "ID": 8687, + "SourceStructureID": 5439, + "TargetStructureID": 85634, + "Label": "5439-85634 via Conventional from 85633 -> 85635", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85633, + "TargetID": 85635, + "Directional": true + }] + }, { + "ID": 8688, + "SourceStructureID": 5439, + "TargetStructureID": 85711, + "Label": "5439-85711 via Conventional from 85710 -> 85718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85710, + "TargetID": 85718, + "Directional": true + }] + }, { + "ID": 8689, + "SourceStructureID": 5439, + "TargetStructureID": 85722, + "Label": "5439-85722 via Conventional from 85719 -> 85723", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85719, + "TargetID": 85723, + "Directional": true + }] + }, { + "ID": 8690, + "SourceStructureID": 5442, + "TargetStructureID": 5601, + "Label": "5442-5601 via Cistern Pre from 124493 -> 124492", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 124493, + "TargetID": 124492, + "Directional": true + }] + }, { + "ID": 8691, + "SourceStructureID": 5451, + "TargetStructureID": 28950, + "Label": "5451-28950 via Conventional from 44794 -> 44795, 44802 -> 28967", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44794, + "TargetID": 44795, + "Directional": true + }, { + "SourceID": 44802, + "TargetID": 28967, + "Directional": true + }] + }, { + "ID": 8692, + "SourceStructureID": 5453, + "TargetStructureID": 440, + "Label": "5453-440 via Conventional from 41728 -> 122532, 41729 -> 62005, 41730 -> 24453", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41728, + "TargetID": 122532, + "Directional": true + }, { + "SourceID": 41729, + "TargetID": 62005, + "Directional": true + }, { + "SourceID": 41730, + "TargetID": 24453, + "Directional": true + }] + }, { + "ID": 8693, + "SourceStructureID": 5453, + "TargetStructureID": 5531, + "Label": "5453-5531 via Conventional from 41698 -> 41699, 41706 -> 62362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41698, + "TargetID": 41699, + "Directional": true + }, { + "SourceID": 41706, + "TargetID": 62362, + "Directional": true + }] + }, { + "ID": 8694, + "SourceStructureID": 5453, + "TargetStructureID": 5543, + "Label": "5453-5543 via Conventional from 18564 -> 17028, 18665 -> 17098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18564, + "TargetID": 17028, + "Directional": true + }, { + "SourceID": 18665, + "TargetID": 17098, + "Directional": true + }] + }, { + "ID": 8695, + "SourceStructureID": 5453, + "TargetStructureID": 5545, + "Label": "5453-5545 via Conventional from 28778 -> 128474", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 28778, + "TargetID": 128474, + "Directional": true + }] + }, { + "ID": 8696, + "SourceStructureID": 5453, + "TargetStructureID": 5636, + "Label": "5453-5636 via Conventional from 41712 -> 34710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41712, + "TargetID": 34710, + "Directional": true + }] + }, { + "ID": 8697, + "SourceStructureID": 5453, + "TargetStructureID": 6129, + "Label": "5453-6129 via Conventional from 18541 -> 38874, 18545 -> 38871, 18552 -> 18557", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18541, + "TargetID": 38874, + "Directional": true + }, { + "SourceID": 18545, + "TargetID": 38871, + "Directional": true + }, { + "SourceID": 18552, + "TargetID": 18557, + "Directional": true + }] + }, { + "ID": 8698, + "SourceStructureID": 5454, + "TargetStructureID": 330, + "Label": "5454-330 via Conventional from 34242 -> 38690", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34242, + "TargetID": 38690, + "Directional": true + }] + }, { + "ID": 8699, + "SourceStructureID": 5454, + "TargetStructureID": 360, + "Label": "5454-360 via Conventional from 34172 -> 26584", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34172, + "TargetID": 26584, + "Directional": true + }] + }, { + "ID": 8700, + "SourceStructureID": 5454, + "TargetStructureID": 3881, + "Label": "5454-3881 via Conventional from 34205 -> 3895", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34205, + "TargetID": 3895, + "Directional": true + }] + }, { + "ID": 8701, + "SourceStructureID": 5454, + "TargetStructureID": 5536, + "Label": "5454-5536 via Conventional from 34194 -> 22654", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34194, + "TargetID": 22654, + "Directional": true + }] + }, { + "ID": 8702, + "SourceStructureID": 5454, + "TargetStructureID": 5614, + "Label": "5454-5614 via Conventional from 32461 -> 5620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32461, + "TargetID": 5620, + "Directional": true + }] + }, { + "ID": 8703, + "SourceStructureID": 5454, + "TargetStructureID": 5635, + "Label": "5454-5635 via Conventional from 34208 -> 28844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34208, + "TargetID": 28844, + "Directional": true + }] + }, { + "ID": 8704, + "SourceStructureID": 5454, + "TargetStructureID": 8575, + "Label": "5454-8575 via Conventional from 34214 -> 62327, 147397 -> 147398", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34214, + "TargetID": 62327, + "Directional": true + }, { + "SourceID": 147397, + "TargetID": 147398, + "Directional": true + }] + }, { + "ID": 8705, + "SourceStructureID": 5454, + "TargetStructureID": 10840, + "Label": "5454-10840 via Conventional from 34200 -> 33269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34200, + "TargetID": 33269, + "Directional": true + }] + }, { + "ID": 8706, + "SourceStructureID": 5454, + "TargetStructureID": 25155, + "Label": "5454-25155 via Conventional from 38438 -> 34640", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38438, + "TargetID": 34640, + "Directional": true + }] + }, { + "ID": 8707, + "SourceStructureID": 5456, + "TargetStructureID": 606, + "Label": "5456-606 via Ribbon Synapse from 38164 -> 10564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38164, + "TargetID": 10564, + "Directional": true + }] + }, { + "ID": 8708, + "SourceStructureID": 5456, + "TargetStructureID": 8720, + "Label": "5456-8720 via Ribbon Synapse from 38153 -> 63168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38153, + "TargetID": 63168, + "Directional": true + }] + }, { + "ID": 8709, + "SourceStructureID": 5457, + "TargetStructureID": 360, + "Label": "5457-360 via Conventional from 87846 -> 26579, 87847 -> 87848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87846, + "TargetID": 26579, + "Directional": true + }, { + "SourceID": 87847, + "TargetID": 87848, + "Directional": true + }] + }, { + "ID": 8710, + "SourceStructureID": 5457, + "TargetStructureID": 5614, + "Label": "5457-5614 via Conventional from 15355 -> 8734, 15356 -> 15357, 15359 -> 40810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15355, + "TargetID": 8734, + "Directional": true + }, { + "SourceID": 15356, + "TargetID": 15357, + "Directional": true + }, { + "SourceID": 15359, + "TargetID": 40810, + "Directional": true + }] + }, { + "ID": 8711, + "SourceStructureID": 5464, + "TargetStructureID": 46521, + "Label": "5464-46521 via Conventional from 46524 -> 46523", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46524, + "TargetID": 46523, + "Directional": true + }] + }, { + "ID": 8712, + "SourceStructureID": 5468, + "TargetStructureID": 606, + "Label": "5468-606 via Ribbon Synapse from 38474 -> 51782, 38476 -> 51783, 48073 -> 48077, 48112 -> 48114, 51791 -> 51790, 51852 -> 51850", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38474, + "TargetID": 51782, + "Directional": true + }, { + "SourceID": 38476, + "TargetID": 51783, + "Directional": true + }, { + "SourceID": 48073, + "TargetID": 48077, + "Directional": true + }, { + "SourceID": 48112, + "TargetID": 48114, + "Directional": true + }, { + "SourceID": 51791, + "TargetID": 51790, + "Directional": true + }, { + "SourceID": 51852, + "TargetID": 51850, + "Directional": true + }] + }, { + "ID": 8713, + "SourceStructureID": 5468, + "TargetStructureID": 5442, + "Label": "5468-5442 via Ribbon Synapse from 55127 -> 55128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55127, + "TargetID": 55128, + "Directional": true + }] + }, { + "ID": 8714, + "SourceStructureID": 5468, + "TargetStructureID": 9769, + "Label": "5468-9769 via Ribbon Synapse from 29967 -> 29966, 38476 -> 38475, 45698 -> 52857, 45702 -> 29970, 45705 -> 52856, 48300 -> 52855, 52879 -> 52880, 53121 -> 29963", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29967, + "TargetID": 29966, + "Directional": true + }, { + "SourceID": 38476, + "TargetID": 38475, + "Directional": true + }, { + "SourceID": 45698, + "TargetID": 52857, + "Directional": true + }, { + "SourceID": 45702, + "TargetID": 29970, + "Directional": true + }, { + "SourceID": 45705, + "TargetID": 52856, + "Directional": true + }, { + "SourceID": 48300, + "TargetID": 52855, + "Directional": true + }, { + "SourceID": 52879, + "TargetID": 52880, + "Directional": true + }, { + "SourceID": 53121, + "TargetID": 29963, + "Directional": true + }] + }, { + "ID": 8715, + "SourceStructureID": 5468, + "TargetStructureID": 23870, + "Label": "5468-23870 via Ribbon Synapse from 23879 -> 23873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23879, + "TargetID": 23873, + "Directional": true + }] + }, { + "ID": 8716, + "SourceStructureID": 5468, + "TargetStructureID": 33039, + "Label": "5468-33039 via Ribbon Synapse from 33044 -> 33042, 33046 -> 33045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33044, + "TargetID": 33042, + "Directional": true + }, { + "SourceID": 33046, + "TargetID": 33045, + "Directional": true + }] + }, { + "ID": 8717, + "SourceStructureID": 5468, + "TargetStructureID": 33057, + "Label": "5468-33057 via BC Conventional Synapse from 48224 -> 48227", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48224, + "TargetID": 48227, + "Directional": true + }] + }, { + "ID": 8718, + "SourceStructureID": 5468, + "TargetStructureID": 35811, + "Label": "5468-35811 via Ribbon Synapse from 23876 -> 35879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23876, + "TargetID": 35879, + "Directional": true + }] + }, { + "ID": 8719, + "SourceStructureID": 5468, + "TargetStructureID": 74047, + "Label": "5468-74047 via Ribbon Synapse from 48211 -> 74390, 55127 -> 74359, 74319 -> 74320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48211, + "TargetID": 74390, + "Directional": true + }, { + "SourceID": 55127, + "TargetID": 74359, + "Directional": true + }, { + "SourceID": 74319, + "TargetID": 74320, + "Directional": true + }] + }, { + "ID": 8720, + "SourceStructureID": 5468, + "TargetStructureID": 93067, + "Label": "5468-93067 via Ribbon Synapse from 45728 -> 93068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45728, + "TargetID": 93068, + "Directional": true + }] + }, { + "ID": 8721, + "SourceStructureID": 5468, + "TargetStructureID": 93069, + "Label": "5468-93069 via Ribbon Synapse from 45728 -> 93071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45728, + "TargetID": 93071, + "Directional": true + }] + }, { + "ID": 8722, + "SourceStructureID": 5468, + "TargetStructureID": 93072, + "Label": "5468-93072 via Ribbon Synapse from 48229 -> 93079, 48230 -> 93073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48229, + "TargetID": 93079, + "Directional": true + }, { + "SourceID": 48230, + "TargetID": 93073, + "Directional": true + }] + }, { + "ID": 8723, + "SourceStructureID": 5468, + "TargetStructureID": 93074, + "Label": "5468-93074 via Ribbon Synapse from 23876 -> 93075", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23876, + "TargetID": 93075, + "Directional": true + }] + }, { + "ID": 8724, + "SourceStructureID": 5468, + "TargetStructureID": 93076, + "Label": "5468-93076 via Ribbon Synapse from 23876 -> 93077", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23876, + "TargetID": 93077, + "Directional": true + }] + }, { + "ID": 8725, + "SourceStructureID": 5470, + "TargetStructureID": 7204, + "Label": "5470-7204 via Conventional from 54692 -> 24344", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54692, + "TargetID": 24344, + "Directional": true + }] + }, { + "ID": 8726, + "SourceStructureID": 5470, + "TargetStructureID": 9769, + "Label": "5470-9769 via Conventional from 54690 -> 23957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54690, + "TargetID": 23957, + "Directional": true + }] + }, { + "ID": 8727, + "SourceStructureID": 5473, + "TargetStructureID": 5587, + "Label": "5473-5587 via Conventional from 28956 -> 136555, 129034 -> 129033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 28956, + "TargetID": 136555, + "Directional": true + }, { + "SourceID": 129034, + "TargetID": 129033, + "Directional": true + }] + }, { + "ID": 8728, + "SourceStructureID": 5473, + "TargetStructureID": 5640, + "Label": "5473-5640 via Conventional from 37122 -> 37117", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37122, + "TargetID": 37117, + "Directional": true + }] + }, { + "ID": 8729, + "SourceStructureID": 5473, + "TargetStructureID": 28913, + "Label": "5473-28913 via Conventional from 37123 -> 28944", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37123, + "TargetID": 28944, + "Directional": true + }] + }, { + "ID": 8730, + "SourceStructureID": 5473, + "TargetStructureID": 28950, + "Label": "5473-28950 via Conventional from 23893 -> 84727, 28955 -> 28951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23893, + "TargetID": 84727, + "Directional": true + }, { + "SourceID": 28955, + "TargetID": 28951, + "Directional": true + }] + }, { + "ID": 8731, + "SourceStructureID": 5481, + "TargetStructureID": 60174, + "Label": "5481-60174 via Cistern Pre from 60173 -> 60175", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 60173, + "TargetID": 60175, + "Directional": true + }] + }, { + "ID": 8732, + "SourceStructureID": 5481, + "TargetStructureID": 90177, + "Label": "5481-90177 via Conventional from 90176 -> 90178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90176, + "TargetID": 90178, + "Directional": true + }] + }, { + "ID": 8733, + "SourceStructureID": 5481, + "TargetStructureID": 90186, + "Label": "5481-90186 via Conventional from 90185 -> 90187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90185, + "TargetID": 90187, + "Directional": true + }] + }, { + "ID": 8734, + "SourceStructureID": 5481, + "TargetStructureID": 133757, + "Label": "5481-133757 via Cistern Pre from 133760 -> 133761", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 133760, + "TargetID": 133761, + "Directional": true + }] + }, { + "ID": 8735, + "SourceStructureID": 5485, + "TargetStructureID": 5150, + "Label": "5485-5150 via Conventional from 26965 -> 5157", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 26965, + "TargetID": 5157, + "Directional": true + }] + }, { + "ID": 8736, + "SourceStructureID": 5485, + "TargetStructureID": 8575, + "Label": "5485-8575 via Conventional from 62291 -> 62290", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62291, + "TargetID": 62290, + "Directional": true + }] + }, { + "ID": 8737, + "SourceStructureID": 5485, + "TargetStructureID": 34336, + "Label": "5485-34336 via Conventional from 34366 -> 34365, 34370 -> 34369, 34392 -> 34391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34366, + "TargetID": 34365, + "Directional": true + }, { + "SourceID": 34370, + "TargetID": 34369, + "Directional": true + }, { + "SourceID": 34392, + "TargetID": 34391, + "Directional": true + }] + }, { + "ID": 8738, + "SourceStructureID": 5485, + "TargetStructureID": 84830, + "Label": "5485-84830 via Conventional from 84836 -> 84833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84836, + "TargetID": 84833, + "Directional": true + }] + }, { + "ID": 8739, + "SourceStructureID": 5486, + "TargetStructureID": 8575, + "Label": "5486-8575 via Conventional from 21140 -> 61723", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21140, + "TargetID": 61723, + "Directional": true + }] + }, { + "ID": 8740, + "SourceStructureID": 5486, + "TargetStructureID": 10959, + "Label": "5486-10959 via Cistern Pre from 86723 -> 86725", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 86723, + "TargetID": 86725, + "Directional": true + }] + }, { + "ID": 8741, + "SourceStructureID": 5486, + "TargetStructureID": 137122, + "Label": "5486-137122 via Conventional from 21152 -> 137180", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21152, + "TargetID": 137180, + "Directional": true + }] + }, { + "ID": 8742, + "SourceStructureID": 5487, + "TargetStructureID": 142, + "Label": "5487-142 via Conventional from 91679 -> 50123", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91679, + "TargetID": 50123, + "Directional": true + }] + }, { + "ID": 8743, + "SourceStructureID": 5487, + "TargetStructureID": 469, + "Label": "5487-469 via Conventional from 34563 -> 4656", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34563, + "TargetID": 4656, + "Directional": true + }] + }, { + "ID": 8744, + "SourceStructureID": 5487, + "TargetStructureID": 4570, + "Label": "5487-4570 via Conventional from 34574 -> 24487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34574, + "TargetID": 24487, + "Directional": true + }] + }, { + "ID": 8745, + "SourceStructureID": 5487, + "TargetStructureID": 5480, + "Label": "5487-5480 via Cistern Pre from 87229 -> 87230", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 87229, + "TargetID": 87230, + "Directional": true + }] + }, { + "ID": 8746, + "SourceStructureID": 5487, + "TargetStructureID": 60798, + "Label": "5487-60798 via Conventional from 34593 -> 60802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34593, + "TargetID": 60802, + "Directional": true + }] + }, { + "ID": 8747, + "SourceStructureID": 5487, + "TargetStructureID": 129995, + "Label": "5487-129995 via Conventional from 34588 -> 130001, 34588 -> 130002, 130000 -> 129998", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34588, + "TargetID": 130001, + "Directional": true + }, { + "SourceID": 34588, + "TargetID": 130002, + "Directional": true + }, { + "SourceID": 130000, + "TargetID": 129998, + "Directional": true + }] + }, { + "ID": 8748, + "SourceStructureID": 5489, + "TargetStructureID": 11222, + "Label": "5489-11222 via Conventional from 37147 -> 11223", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37147, + "TargetID": 11223, + "Directional": true + }] + }, { + "ID": 8749, + "SourceStructureID": 5489, + "TargetStructureID": 16073, + "Label": "5489-16073 via Conventional from 37148 -> 19871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37148, + "TargetID": 19871, + "Directional": true + }] + }, { + "ID": 8750, + "SourceStructureID": 5489, + "TargetStructureID": 68497, + "Label": "5489-68497 via Conventional from 81594 -> 81595", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81594, + "TargetID": 81595, + "Directional": true + }] + }, { + "ID": 8751, + "SourceStructureID": 5489, + "TargetStructureID": 128107, + "Label": "5489-128107 via Conventional from 128112 -> 128113", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128112, + "TargetID": 128113, + "Directional": true + }] + }, { + "ID": 8752, + "SourceStructureID": 5491, + "TargetStructureID": 606, + "Label": "5491-606 via Conventional from 45479 -> 53514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45479, + "TargetID": 53514, + "Directional": true + }] + }, { + "ID": 8753, + "SourceStructureID": 5491, + "TargetStructureID": 7231, + "Label": "5491-7231 via Conventional from 116958 -> 116957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116958, + "TargetID": 116957, + "Directional": true + }] + }, { + "ID": 8754, + "SourceStructureID": 5491, + "TargetStructureID": 8575, + "Label": "5491-8575 via Conventional from 62365 -> 62363, 62369 -> 62368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62365, + "TargetID": 62363, + "Directional": true + }, { + "SourceID": 62369, + "TargetID": 62368, + "Directional": true + }] + }, { + "ID": 8755, + "SourceStructureID": 5491, + "TargetStructureID": 8578, + "Label": "5491-8578 via Conventional from 54671 -> 54672", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54671, + "TargetID": 54672, + "Directional": true + }] + }, { + "ID": 8756, + "SourceStructureID": 5491, + "TargetStructureID": 44346, + "Label": "5491-44346 via Conventional from 44410 -> 44409", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44410, + "TargetID": 44409, + "Directional": true + }] + }, { + "ID": 8757, + "SourceStructureID": 5497, + "TargetStructureID": 909, + "Label": "5497-909 via Conventional from 62559 -> 45939, 62596 -> 117468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62559, + "TargetID": 45939, + "Directional": true + }, { + "SourceID": 62596, + "TargetID": 117468, + "Directional": true + }] + }, { + "ID": 8758, + "SourceStructureID": 5497, + "TargetStructureID": 5500, + "Label": "5497-5500 via Conventional from 62562 -> 62563, 62566 -> 62567", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62562, + "TargetID": 62563, + "Directional": true + }, { + "SourceID": 62566, + "TargetID": 62567, + "Directional": true + }] + }, { + "ID": 8759, + "SourceStructureID": 5497, + "TargetStructureID": 8575, + "Label": "5497-8575 via Conventional from 21735 -> 62449, 21745 -> 21744, 62543 -> 62544", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21735, + "TargetID": 62449, + "Directional": true + }, { + "SourceID": 21745, + "TargetID": 21744, + "Directional": true + }, { + "SourceID": 62543, + "TargetID": 62544, + "Directional": true + }] + }, { + "ID": 8760, + "SourceStructureID": 5497, + "TargetStructureID": 14293, + "Label": "5497-14293 via Conventional from 62549 -> 40209", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62549, + "TargetID": 40209, + "Directional": true + }] + }, { + "ID": 8761, + "SourceStructureID": 5497, + "TargetStructureID": 19203, + "Label": "5497-19203 via Conventional from 21740 -> 22890, 22941 -> 22920", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21740, + "TargetID": 22890, + "Directional": true + }, { + "SourceID": 22941, + "TargetID": 22920, + "Directional": true + }] + }, { + "ID": 8762, + "SourceStructureID": 5497, + "TargetStructureID": 62500, + "Label": "5497-62500 via Conventional from 62499 -> 62501", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62499, + "TargetID": 62501, + "Directional": true + }] + }, { + "ID": 8763, + "SourceStructureID": 5497, + "TargetStructureID": 62578, + "Label": "5497-62578 via Conventional from 62577 -> 62579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62577, + "TargetID": 62579, + "Directional": true + }] + }, { + "ID": 8764, + "SourceStructureID": 5498, + "TargetStructureID": 12192, + "Label": "5498-12192 via Ribbon Synapse from 46617 -> 46618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46617, + "TargetID": 46618, + "Directional": true + }] + }, { + "ID": 8765, + "SourceStructureID": 5498, + "TargetStructureID": 84670, + "Label": "5498-84670 via Ribbon Synapse from 59723 -> 84676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59723, + "TargetID": 84676, + "Directional": true + }] + }, { + "ID": 8766, + "SourceStructureID": 5498, + "TargetStructureID": 93125, + "Label": "5498-93125 via BC Conventional Synapse from 93140 -> 93137", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93140, + "TargetID": 93137, + "Directional": true + }] + }, { + "ID": 8767, + "SourceStructureID": 5499, + "TargetStructureID": 606, + "Label": "5499-606 via BC Conventional Synapse from 106639 -> 106638", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106639, + "TargetID": 106638, + "Directional": true + }] + }, { + "ID": 8768, + "SourceStructureID": 5499, + "TargetStructureID": 606, + "Label": "5499-606 via Ribbon Synapse from 48514 -> 48515, 48531 -> 51611, 49658 -> 47318, 49659 -> 47319, 51612 -> 51613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48514, + "TargetID": 48515, + "Directional": true + }, { + "SourceID": 48531, + "TargetID": 51611, + "Directional": true + }, { + "SourceID": 49658, + "TargetID": 47318, + "Directional": true + }, { + "SourceID": 49659, + "TargetID": 47319, + "Directional": true + }, { + "SourceID": 51612, + "TargetID": 51613, + "Directional": true + }] + }, { + "ID": 8769, + "SourceStructureID": 5499, + "TargetStructureID": 5396, + "Label": "5499-5396 via Ribbon Synapse from 40144 -> 40143", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40144, + "TargetID": 40143, + "Directional": true + }] + }, { + "ID": 8770, + "SourceStructureID": 5499, + "TargetStructureID": 7897, + "Label": "5499-7897 via Ribbon Synapse from 55722 -> 55721", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55722, + "TargetID": 55721, + "Directional": true + }] + }, { + "ID": 8771, + "SourceStructureID": 5499, + "TargetStructureID": 22232, + "Label": "5499-22232 via Ribbon Synapse from 40139 -> 68824, 49644 -> 105276, 95213 -> 68817, 96684 -> 96685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40139, + "TargetID": 68824, + "Directional": true + }, { + "SourceID": 49644, + "TargetID": 105276, + "Directional": true + }, { + "SourceID": 95213, + "TargetID": 68817, + "Directional": true + }, { + "SourceID": 96684, + "TargetID": 96685, + "Directional": true + }] + }, { + "ID": 8772, + "SourceStructureID": 5499, + "TargetStructureID": 31161, + "Label": "5499-31161 via Ribbon Synapse from 49664 -> 31220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49664, + "TargetID": 31220, + "Directional": true + }] + }, { + "ID": 8773, + "SourceStructureID": 5499, + "TargetStructureID": 55403, + "Label": "5499-55403 via Ribbon Synapse from 49664 -> 55497, 55484 -> 55485, 55488 -> 55487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49664, + "TargetID": 55497, + "Directional": true + }, { + "SourceID": 55484, + "TargetID": 55485, + "Directional": true + }, { + "SourceID": 55488, + "TargetID": 55487, + "Directional": true + }] + }, { + "ID": 8774, + "SourceStructureID": 5499, + "TargetStructureID": 68539, + "Label": "5499-68539 via Ribbon Synapse from 97896 -> 69091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97896, + "TargetID": 69091, + "Directional": true + }] + }, { + "ID": 8775, + "SourceStructureID": 5499, + "TargetStructureID": 78409, + "Label": "5499-78409 via Ribbon Synapse from 106779 -> 106780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106779, + "TargetID": 106780, + "Directional": true + }] + }, { + "ID": 8776, + "SourceStructureID": 5499, + "TargetStructureID": 85730, + "Label": "5499-85730 via Ribbon Synapse from 85743 -> 85742", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85743, + "TargetID": 85742, + "Directional": true + }] + }, { + "ID": 8777, + "SourceStructureID": 5499, + "TargetStructureID": 89571, + "Label": "5499-89571 via Ribbon Synapse from 89574 -> 89572", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89574, + "TargetID": 89572, + "Directional": true + }] + }, { + "ID": 8778, + "SourceStructureID": 5499, + "TargetStructureID": 96676, + "Label": "5499-96676 via BC Conventional Synapse from 96675 -> 96677", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96675, + "TargetID": 96677, + "Directional": true + }] + }, { + "ID": 8779, + "SourceStructureID": 5499, + "TargetStructureID": 96682, + "Label": "5499-96682 via BC Conventional Synapse from 96681 -> 96683", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96681, + "TargetID": 96683, + "Directional": true + }] + }, { + "ID": 8780, + "SourceStructureID": 5499, + "TargetStructureID": 96688, + "Label": "5499-96688 via Ribbon Synapse from 95216 -> 96689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95216, + "TargetID": 96689, + "Directional": true + }] + }, { + "ID": 8781, + "SourceStructureID": 5499, + "TargetStructureID": 96690, + "Label": "5499-96690 via Ribbon Synapse from 95213 -> 96691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95213, + "TargetID": 96691, + "Directional": true + }] + }, { + "ID": 8782, + "SourceStructureID": 5499, + "TargetStructureID": 96695, + "Label": "5499-96695 via Ribbon Synapse from 96692 -> 96696", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96692, + "TargetID": 96696, + "Directional": true + }] + }, { + "ID": 8783, + "SourceStructureID": 5499, + "TargetStructureID": 96703, + "Label": "5499-96703 via Ribbon Synapse from 96702 -> 96704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96702, + "TargetID": 96704, + "Directional": true + }] + }, { + "ID": 8784, + "SourceStructureID": 5499, + "TargetStructureID": 96705, + "Label": "5499-96705 via Ribbon Synapse from 87330 -> 96706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87330, + "TargetID": 96706, + "Directional": true + }] + }, { + "ID": 8785, + "SourceStructureID": 5499, + "TargetStructureID": 96708, + "Label": "5499-96708 via Ribbon Synapse from 87330 -> 96709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87330, + "TargetID": 96709, + "Directional": true + }] + }, { + "ID": 8786, + "SourceStructureID": 5499, + "TargetStructureID": 96711, + "Label": "5499-96711 via Ribbon Synapse from 87330 -> 96712", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87330, + "TargetID": 96712, + "Directional": true + }] + }, { + "ID": 8787, + "SourceStructureID": 5499, + "TargetStructureID": 96720, + "Label": "5499-96720 via Ribbon Synapse from 96714 -> 96722", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96714, + "TargetID": 96722, + "Directional": true + }] + }, { + "ID": 8788, + "SourceStructureID": 5499, + "TargetStructureID": 96730, + "Label": "5499-96730 via Ribbon Synapse from 96723 -> 96732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96723, + "TargetID": 96732, + "Directional": true + }] + }, { + "ID": 8789, + "SourceStructureID": 5499, + "TargetStructureID": 96733, + "Label": "5499-96733 via Ribbon Synapse from 96723 -> 96735", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96723, + "TargetID": 96735, + "Directional": true + }] + }, { + "ID": 8790, + "SourceStructureID": 5499, + "TargetStructureID": 96738, + "Label": "5499-96738 via Ribbon Synapse from 96724 -> 96739", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96724, + "TargetID": 96739, + "Directional": true + }] + }, { + "ID": 8791, + "SourceStructureID": 5499, + "TargetStructureID": 97171, + "Label": "5499-97171 via Ribbon Synapse from 97179 -> 97185, 106670 -> 106671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97179, + "TargetID": 97185, + "Directional": true + }, { + "SourceID": 106670, + "TargetID": 106671, + "Directional": true + }] + }, { + "ID": 8792, + "SourceStructureID": 5499, + "TargetStructureID": 105498, + "Label": "5499-105498 via Ribbon Synapse from 105497 -> 105499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105497, + "TargetID": 105499, + "Directional": true + }] + }, { + "ID": 8793, + "SourceStructureID": 5499, + "TargetStructureID": 105506, + "Label": "5499-105506 via Ribbon Synapse from 105505 -> 105508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105505, + "TargetID": 105508, + "Directional": true + }] + }, { + "ID": 8794, + "SourceStructureID": 5499, + "TargetStructureID": 105509, + "Label": "5499-105509 via Ribbon Synapse from 105505 -> 105510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105505, + "TargetID": 105510, + "Directional": true + }] + }, { + "ID": 8795, + "SourceStructureID": 5499, + "TargetStructureID": 105521, + "Label": "5499-105521 via Ribbon Synapse from 105523 -> 105524", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105523, + "TargetID": 105524, + "Directional": true + }] + }, { + "ID": 8796, + "SourceStructureID": 5499, + "TargetStructureID": 105526, + "Label": "5499-105526 via Ribbon Synapse from 105518 -> 105529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105518, + "TargetID": 105529, + "Directional": true + }] + }, { + "ID": 8797, + "SourceStructureID": 5499, + "TargetStructureID": 106752, + "Label": "5499-106752 via Ribbon Synapse from 40151 -> 106753", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40151, + "TargetID": 106753, + "Directional": true + }] + }, { + "ID": 8798, + "SourceStructureID": 5499, + "TargetStructureID": 108722, + "Label": "5499-108722 via BC Conventional Synapse from 105782 -> 108723", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105782, + "TargetID": 108723, + "Directional": true + }] + }, { + "ID": 8799, + "SourceStructureID": 5499, + "TargetStructureID": 108727, + "Label": "5499-108727 via Ribbon Synapse from 105741 -> 108728", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105741, + "TargetID": 108728, + "Directional": true + }] + }, { + "ID": 8800, + "SourceStructureID": 5499, + "TargetStructureID": 129927, + "Label": "5499-129927 via Ribbon Synapse from 96692 -> 96694, 106891 -> 129944", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96692, + "TargetID": 96694, + "Directional": true + }, { + "SourceID": 106891, + "TargetID": 129944, + "Directional": true + }] + }, { + "ID": 8801, + "SourceStructureID": 5500, + "TargetStructureID": 5405, + "Label": "5500-5405 via Ribbon Synapse from 40070 -> 11170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40070, + "TargetID": 11170, + "Directional": true + }] + }, { + "ID": 8802, + "SourceStructureID": 5500, + "TargetStructureID": 5497, + "Label": "5500-5497 via Ribbon Synapse from 36498 -> 62564, 59385 -> 62569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36498, + "TargetID": 62564, + "Directional": true + }, { + "SourceID": 59385, + "TargetID": 62569, + "Directional": true + }] + }, { + "ID": 8803, + "SourceStructureID": 5500, + "TargetStructureID": 59333, + "Label": "5500-59333 via Ribbon Synapse from 59358 -> 59361, 59359 -> 59360", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59358, + "TargetID": 59361, + "Directional": true + }, { + "SourceID": 59359, + "TargetID": 59360, + "Directional": true + }] + }, { + "ID": 8804, + "SourceStructureID": 5500, + "TargetStructureID": 59371, + "Label": "5500-59371 via Ribbon Synapse from 59373 -> 59372", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59373, + "TargetID": 59372, + "Directional": true + }] + }, { + "ID": 8805, + "SourceStructureID": 5500, + "TargetStructureID": 59389, + "Label": "5500-59389 via Ribbon Synapse from 59388 -> 59390", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59388, + "TargetID": 59390, + "Directional": true + }] + }, { + "ID": 8806, + "SourceStructureID": 5500, + "TargetStructureID": 61450, + "Label": "5500-61450 via BC Conventional Synapse from 61495 -> 61494", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61495, + "TargetID": 61494, + "Directional": true + }] + }, { + "ID": 8807, + "SourceStructureID": 5500, + "TargetStructureID": 85032, + "Label": "5500-85032 via Ribbon Synapse from 59358 -> 85034, 85035 -> 85036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59358, + "TargetID": 85034, + "Directional": true + }, { + "SourceID": 85035, + "TargetID": 85036, + "Directional": true + }] + }, { + "ID": 8808, + "SourceStructureID": 5501, + "TargetStructureID": 5107, + "Label": "5501-5107 via Ribbon Synapse from 131432 -> 65004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131432, + "TargetID": 65004, + "Directional": true + }] + }, { + "ID": 8809, + "SourceStructureID": 5501, + "TargetStructureID": 5405, + "Label": "5501-5405 via Ribbon Synapse from 60766 -> 42920, 110210 -> 110211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60766, + "TargetID": 42920, + "Directional": true + }, { + "SourceID": 110210, + "TargetID": 110211, + "Directional": true + }] + }, { + "ID": 8810, + "SourceStructureID": 5501, + "TargetStructureID": 7134, + "Label": "5501-7134 via Ribbon Synapse from 15775 -> 29650, 36570 -> 122193, 122458 -> 41656", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15775, + "TargetID": 29650, + "Directional": true + }, { + "SourceID": 36570, + "TargetID": 122193, + "Directional": true + }, { + "SourceID": 122458, + "TargetID": 41656, + "Directional": true + }] + }, { + "ID": 8811, + "SourceStructureID": 5501, + "TargetStructureID": 8575, + "Label": "5501-8575 via Ribbon Synapse from 62952 -> 62951", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62952, + "TargetID": 62951, + "Directional": true + }] + }, { + "ID": 8812, + "SourceStructureID": 5501, + "TargetStructureID": 31024, + "Label": "5501-31024 via BC Conventional Synapse from 110243 -> 110242", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110243, + "TargetID": 110242, + "Directional": true + }] + }, { + "ID": 8813, + "SourceStructureID": 5501, + "TargetStructureID": 68539, + "Label": "5501-68539 via Ribbon Synapse from 60408 -> 69080, 114049 -> 114048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60408, + "TargetID": 69080, + "Directional": true + }, { + "SourceID": 114049, + "TargetID": 114048, + "Directional": true + }] + }, { + "ID": 8814, + "SourceStructureID": 5501, + "TargetStructureID": 87342, + "Label": "5501-87342 via Ribbon Synapse from 36553 -> 87393, 36558 -> 87398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36553, + "TargetID": 87393, + "Directional": true + }, { + "SourceID": 36558, + "TargetID": 87398, + "Directional": true + }] + }, { + "ID": 8815, + "SourceStructureID": 5501, + "TargetStructureID": 87396, + "Label": "5501-87396 via Ribbon Synapse from 36558 -> 87399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36558, + "TargetID": 87399, + "Directional": true + }] + }, { + "ID": 8816, + "SourceStructureID": 5501, + "TargetStructureID": 102793, + "Label": "5501-102793 via Ribbon Synapse from 131435 -> 131436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131435, + "TargetID": 131436, + "Directional": true + }] + }, { + "ID": 8817, + "SourceStructureID": 5501, + "TargetStructureID": 106709, + "Label": "5501-106709 via Ribbon Synapse from 110246 -> 110255, 110252 -> 110251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110246, + "TargetID": 110255, + "Directional": true + }, { + "SourceID": 110252, + "TargetID": 110251, + "Directional": true + }] + }, { + "ID": 8818, + "SourceStructureID": 5501, + "TargetStructureID": 106732, + "Label": "5501-106732 via Ribbon Synapse from 110256 -> 110257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110256, + "TargetID": 110257, + "Directional": true + }] + }, { + "ID": 8819, + "SourceStructureID": 5501, + "TargetStructureID": 108083, + "Label": "5501-108083 via Ribbon Synapse from 110212 -> 110220, 110216 -> 110222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110212, + "TargetID": 110220, + "Directional": true + }, { + "SourceID": 110216, + "TargetID": 110222, + "Directional": true + }] + }, { + "ID": 8820, + "SourceStructureID": 5501, + "TargetStructureID": 110064, + "Label": "5501-110064 via Ribbon Synapse from 36578 -> 110065", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36578, + "TargetID": 110065, + "Directional": true + }] + }, { + "ID": 8821, + "SourceStructureID": 5502, + "TargetStructureID": 3679, + "Label": "5502-3679 via Ribbon Synapse from 27254 -> 27255", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27254, + "TargetID": 27255, + "Directional": true + }] + }, { + "ID": 8822, + "SourceStructureID": 5502, + "TargetStructureID": 59229, + "Label": "5502-59229 via Ribbon Synapse from 27283 -> 85577", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27283, + "TargetID": 85577, + "Directional": true + }] + }, { + "ID": 8823, + "SourceStructureID": 5502, + "TargetStructureID": 60657, + "Label": "5502-60657 via Ribbon Synapse from 27243 -> 61448", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27243, + "TargetID": 61448, + "Directional": true + }] + }, { + "ID": 8824, + "SourceStructureID": 5503, + "TargetStructureID": 606, + "Label": "5503-606 via Ribbon Synapse from 47378 -> 110424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47378, + "TargetID": 110424, + "Directional": true + }] + }, { + "ID": 8825, + "SourceStructureID": 5503, + "TargetStructureID": 5107, + "Label": "5503-5107 via Ribbon Synapse from 24861 -> 24863, 65000 -> 64999, 110052 -> 110056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24861, + "TargetID": 24863, + "Directional": true + }, { + "SourceID": 65000, + "TargetID": 64999, + "Directional": true + }, { + "SourceID": 110052, + "TargetID": 110056, + "Directional": true + }] + }, { + "ID": 8826, + "SourceStructureID": 5503, + "TargetStructureID": 7897, + "Label": "5503-7897 via Ribbon Synapse from 60667 -> 109891, 60690 -> 109714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60667, + "TargetID": 109891, + "Directional": true + }, { + "SourceID": 60690, + "TargetID": 109714, + "Directional": true + }] + }, { + "ID": 8827, + "SourceStructureID": 5503, + "TargetStructureID": 8575, + "Label": "5503-8575 via Ribbon Synapse from 60725 -> 62995", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60725, + "TargetID": 62995, + "Directional": true + }] + }, { + "ID": 8828, + "SourceStructureID": 5503, + "TargetStructureID": 16073, + "Label": "5503-16073 via Ribbon Synapse from 36635 -> 108919", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36635, + "TargetID": 108919, + "Directional": true + }] + }, { + "ID": 8829, + "SourceStructureID": 5503, + "TargetStructureID": 52410, + "Label": "5503-52410 via Ribbon Synapse from 52438 -> 52439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52438, + "TargetID": 52439, + "Directional": true + }] + }, { + "ID": 8830, + "SourceStructureID": 5503, + "TargetStructureID": 65002, + "Label": "5503-65002 via Ribbon Synapse from 65001 -> 110006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65001, + "TargetID": 110006, + "Directional": true + }] + }, { + "ID": 8831, + "SourceStructureID": 5503, + "TargetStructureID": 87294, + "Label": "5503-87294 via Ribbon Synapse from 52438 -> 108379, 108422 -> 108428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52438, + "TargetID": 108379, + "Directional": true + }, { + "SourceID": 108422, + "TargetID": 108428, + "Directional": true + }] + }, { + "ID": 8832, + "SourceStructureID": 5503, + "TargetStructureID": 107374, + "Label": "5503-107374 via Cistern Pre from 36624 -> 107375", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 36624, + "TargetID": 107375, + "Directional": true + }] + }, { + "ID": 8833, + "SourceStructureID": 5503, + "TargetStructureID": 107405, + "Label": "5503-107405 via Cistern Pre from 107404 -> 107407", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 107404, + "TargetID": 107407, + "Directional": true + }] + }, { + "ID": 8834, + "SourceStructureID": 5503, + "TargetStructureID": 107414, + "Label": "5503-107414 via Ribbon Synapse from 60728 -> 107426", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60728, + "TargetID": 107426, + "Directional": true + }] + }, { + "ID": 8835, + "SourceStructureID": 5503, + "TargetStructureID": 107463, + "Label": "5503-107463 via Cistern Pre from 107462 -> 107465", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 107462, + "TargetID": 107465, + "Directional": true + }] + }, { + "ID": 8836, + "SourceStructureID": 5503, + "TargetStructureID": 107510, + "Label": "5503-107510 via BC Conventional Synapse from 107509 -> 107522", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107509, + "TargetID": 107522, + "Directional": true + }] + }, { + "ID": 8837, + "SourceStructureID": 5503, + "TargetStructureID": 107525, + "Label": "5503-107525 via Ribbon Synapse from 60707 -> 107959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60707, + "TargetID": 107959, + "Directional": true + }] + }, { + "ID": 8838, + "SourceStructureID": 5503, + "TargetStructureID": 107957, + "Label": "5503-107957 via Ribbon Synapse from 60707 -> 107958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60707, + "TargetID": 107958, + "Directional": true + }] + }, { + "ID": 8839, + "SourceStructureID": 5503, + "TargetStructureID": 107964, + "Label": "5503-107964 via BC Conventional Synapse from 107963 -> 107965", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107963, + "TargetID": 107965, + "Directional": true + }] + }, { + "ID": 8840, + "SourceStructureID": 5503, + "TargetStructureID": 107966, + "Label": "5503-107966 via Ribbon Synapse from 60710 -> 107967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60710, + "TargetID": 107967, + "Directional": true + }] + }, { + "ID": 8841, + "SourceStructureID": 5503, + "TargetStructureID": 107968, + "Label": "5503-107968 via Ribbon Synapse from 60710 -> 107969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60710, + "TargetID": 107969, + "Directional": true + }] + }, { + "ID": 8842, + "SourceStructureID": 5503, + "TargetStructureID": 108011, + "Label": "5503-108011 via Ribbon Synapse from 60722 -> 108013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60722, + "TargetID": 108013, + "Directional": true + }] + }, { + "ID": 8843, + "SourceStructureID": 5503, + "TargetStructureID": 108032, + "Label": "5503-108032 via BC Conventional Synapse from 108030 -> 108033", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108030, + "TargetID": 108033, + "Directional": true + }] + }, { + "ID": 8844, + "SourceStructureID": 5503, + "TargetStructureID": 108257, + "Label": "5503-108257 via Ribbon Synapse from 37957 -> 108259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37957, + "TargetID": 108259, + "Directional": true + }] + }, { + "ID": 8845, + "SourceStructureID": 5503, + "TargetStructureID": 108260, + "Label": "5503-108260 via Ribbon Synapse from 37957 -> 108261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37957, + "TargetID": 108261, + "Directional": true + }] + }, { + "ID": 8846, + "SourceStructureID": 5503, + "TargetStructureID": 108426, + "Label": "5503-108426 via Ribbon Synapse from 108422 -> 108427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108422, + "TargetID": 108427, + "Directional": true + }] + }, { + "ID": 8847, + "SourceStructureID": 5503, + "TargetStructureID": 108464, + "Label": "5503-108464 via BC Conventional Synapse from 108460 -> 108511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108460, + "TargetID": 108511, + "Directional": true + }] + }, { + "ID": 8848, + "SourceStructureID": 5503, + "TargetStructureID": 108464, + "Label": "5503-108464 via Ribbon Synapse from 60633 -> 108683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60633, + "TargetID": 108683, + "Directional": true + }] + }, { + "ID": 8849, + "SourceStructureID": 5503, + "TargetStructureID": 108485, + "Label": "5503-108485 via Ribbon Synapse from 60635 -> 108686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60635, + "TargetID": 108686, + "Directional": true + }] + }, { + "ID": 8850, + "SourceStructureID": 5503, + "TargetStructureID": 108569, + "Label": "5503-108569 via Ribbon Synapse from 60632 -> 108570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60632, + "TargetID": 108570, + "Directional": true + }] + }, { + "ID": 8851, + "SourceStructureID": 5503, + "TargetStructureID": 108684, + "Label": "5503-108684 via Ribbon Synapse from 60635 -> 108685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60635, + "TargetID": 108685, + "Directional": true + }] + }, { + "ID": 8852, + "SourceStructureID": 5503, + "TargetStructureID": 108771, + "Label": "5503-108771 via Ribbon Synapse from 36634 -> 108772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36634, + "TargetID": 108772, + "Directional": true + }] + }, { + "ID": 8853, + "SourceStructureID": 5503, + "TargetStructureID": 108787, + "Label": "5503-108787 via Ribbon Synapse from 36637 -> 108925", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36637, + "TargetID": 108925, + "Directional": true + }] + }, { + "ID": 8854, + "SourceStructureID": 5503, + "TargetStructureID": 108826, + "Label": "5503-108826 via Ribbon Synapse from 36639 -> 108827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36639, + "TargetID": 108827, + "Directional": true + }] + }, { + "ID": 8855, + "SourceStructureID": 5503, + "TargetStructureID": 108831, + "Label": "5503-108831 via Ribbon Synapse from 36639 -> 108838", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36639, + "TargetID": 108838, + "Directional": true + }] + }, { + "ID": 8856, + "SourceStructureID": 5503, + "TargetStructureID": 108839, + "Label": "5503-108839 via Ribbon Synapse from 36641 -> 108841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36641, + "TargetID": 108841, + "Directional": true + }] + }, { + "ID": 8857, + "SourceStructureID": 5503, + "TargetStructureID": 108856, + "Label": "5503-108856 via BC Conventional Synapse from 108852 -> 108864", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108852, + "TargetID": 108864, + "Directional": true + }] + }, { + "ID": 8858, + "SourceStructureID": 5503, + "TargetStructureID": 108871, + "Label": "5503-108871 via Ribbon Synapse from 36648 -> 109961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36648, + "TargetID": 109961, + "Directional": true + }] + }, { + "ID": 8859, + "SourceStructureID": 5503, + "TargetStructureID": 108923, + "Label": "5503-108923 via Ribbon Synapse from 36637 -> 108924", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36637, + "TargetID": 108924, + "Directional": true + }] + }, { + "ID": 8860, + "SourceStructureID": 5503, + "TargetStructureID": 109693, + "Label": "5503-109693 via BC Conventional Synapse from 109690 -> 109701", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109690, + "TargetID": 109701, + "Directional": true + }] + }, { + "ID": 8861, + "SourceStructureID": 5503, + "TargetStructureID": 109703, + "Label": "5503-109703 via Ribbon Synapse from 60691 -> 109705", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60691, + "TargetID": 109705, + "Directional": true + }] + }, { + "ID": 8862, + "SourceStructureID": 5503, + "TargetStructureID": 109706, + "Label": "5503-109706 via Ribbon Synapse from 60691 -> 109707, 109744 -> 109745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60691, + "TargetID": 109707, + "Directional": true + }, { + "SourceID": 109744, + "TargetID": 109745, + "Directional": true + }] + }, { + "ID": 8863, + "SourceStructureID": 5503, + "TargetStructureID": 109746, + "Label": "5503-109746 via Ribbon Synapse from 109744 -> 109747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109744, + "TargetID": 109747, + "Directional": true + }] + }, { + "ID": 8864, + "SourceStructureID": 5503, + "TargetStructureID": 109804, + "Label": "5503-109804 via Ribbon Synapse from 60667 -> 109869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60667, + "TargetID": 109869, + "Directional": true + }] + }, { + "ID": 8865, + "SourceStructureID": 5503, + "TargetStructureID": 109870, + "Label": "5503-109870 via Ribbon Synapse from 60667 -> 109871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60667, + "TargetID": 109871, + "Directional": true + }] + }, { + "ID": 8866, + "SourceStructureID": 5503, + "TargetStructureID": 109872, + "Label": "5503-109872 via Ribbon Synapse from 60667 -> 109888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60667, + "TargetID": 109888, + "Directional": true + }] + }, { + "ID": 8867, + "SourceStructureID": 5503, + "TargetStructureID": 109893, + "Label": "5503-109893 via Ribbon Synapse from 60687 -> 109912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60687, + "TargetID": 109912, + "Directional": true + }] + }, { + "ID": 8868, + "SourceStructureID": 5503, + "TargetStructureID": 109913, + "Label": "5503-109913 via Ribbon Synapse from 60673 -> 109919", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60673, + "TargetID": 109919, + "Directional": true + }] + }, { + "ID": 8869, + "SourceStructureID": 5503, + "TargetStructureID": 109920, + "Label": "5503-109920 via Ribbon Synapse from 60673 -> 109921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60673, + "TargetID": 109921, + "Directional": true + }] + }, { + "ID": 8870, + "SourceStructureID": 5503, + "TargetStructureID": 109965, + "Label": "5503-109965 via Ribbon Synapse from 36645 -> 109966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36645, + "TargetID": 109966, + "Directional": true + }] + }, { + "ID": 8871, + "SourceStructureID": 5503, + "TargetStructureID": 109967, + "Label": "5503-109967 via Ribbon Synapse from 36644 -> 109968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36644, + "TargetID": 109968, + "Directional": true + }] + }, { + "ID": 8872, + "SourceStructureID": 5503, + "TargetStructureID": 109977, + "Label": "5503-109977 via BC Conventional Synapse from 109976 -> 109978", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109976, + "TargetID": 109978, + "Directional": true + }] + }, { + "ID": 8873, + "SourceStructureID": 5503, + "TargetStructureID": 109980, + "Label": "5503-109980 via Ribbon Synapse from 109983 -> 109985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109983, + "TargetID": 109985, + "Directional": true + }] + }, { + "ID": 8874, + "SourceStructureID": 5503, + "TargetStructureID": 109986, + "Label": "5503-109986 via Ribbon Synapse from 109983 -> 109987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109983, + "TargetID": 109987, + "Directional": true + }] + }, { + "ID": 8875, + "SourceStructureID": 5503, + "TargetStructureID": 109994, + "Label": "5503-109994 via BC Conventional Synapse from 109993 -> 109995", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109993, + "TargetID": 109995, + "Directional": true + }] + }, { + "ID": 8876, + "SourceStructureID": 5503, + "TargetStructureID": 110007, + "Label": "5503-110007 via Ribbon Synapse from 65001 -> 110008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65001, + "TargetID": 110008, + "Directional": true + }] + }, { + "ID": 8877, + "SourceStructureID": 5503, + "TargetStructureID": 110013, + "Label": "5503-110013 via BC Conventional Synapse from 110012 -> 110014", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110012, + "TargetID": 110014, + "Directional": true + }] + }, { + "ID": 8878, + "SourceStructureID": 5503, + "TargetStructureID": 110019, + "Label": "5503-110019 via BC Conventional Synapse from 110021 -> 110020", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110021, + "TargetID": 110020, + "Directional": true + }] + }, { + "ID": 8879, + "SourceStructureID": 5503, + "TargetStructureID": 110043, + "Label": "5503-110043 via BC Conventional Synapse from 110042 -> 110044", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110042, + "TargetID": 110044, + "Directional": true + }] + }, { + "ID": 8880, + "SourceStructureID": 5503, + "TargetStructureID": 110050, + "Label": "5503-110050 via Ribbon Synapse from 24861 -> 110051", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24861, + "TargetID": 110051, + "Directional": true + }] + }, { + "ID": 8881, + "SourceStructureID": 5503, + "TargetStructureID": 110062, + "Label": "5503-110062 via Ribbon Synapse from 110061 -> 110063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110061, + "TargetID": 110063, + "Directional": true + }] + }, { + "ID": 8882, + "SourceStructureID": 5503, + "TargetStructureID": 110066, + "Label": "5503-110066 via Ribbon Synapse from 36583 -> 110093", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36583, + "TargetID": 110093, + "Directional": true + }] + }, { + "ID": 8883, + "SourceStructureID": 5503, + "TargetStructureID": 110072, + "Label": "5503-110072 via Ribbon Synapse from 110085 -> 110086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110085, + "TargetID": 110086, + "Directional": true + }] + }, { + "ID": 8884, + "SourceStructureID": 5503, + "TargetStructureID": 110078, + "Label": "5503-110078 via BC Conventional Synapse from 110077 -> 110079", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110077, + "TargetID": 110079, + "Directional": true + }] + }, { + "ID": 8885, + "SourceStructureID": 5503, + "TargetStructureID": 110087, + "Label": "5503-110087 via Ribbon Synapse from 110085 -> 110088", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110085, + "TargetID": 110088, + "Directional": true + }] + }, { + "ID": 8886, + "SourceStructureID": 5503, + "TargetStructureID": 110097, + "Label": "5503-110097 via Ribbon Synapse from 61321 -> 110098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61321, + "TargetID": 110098, + "Directional": true + }] + }, { + "ID": 8887, + "SourceStructureID": 5503, + "TargetStructureID": 110110, + "Label": "5503-110110 via Ribbon Synapse from 110109 -> 110111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110109, + "TargetID": 110111, + "Directional": true + }] + }, { + "ID": 8888, + "SourceStructureID": 5503, + "TargetStructureID": 110112, + "Label": "5503-110112 via Ribbon Synapse from 110109 -> 110117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110109, + "TargetID": 110117, + "Directional": true + }] + }, { + "ID": 8889, + "SourceStructureID": 5503, + "TargetStructureID": 110129, + "Label": "5503-110129 via Ribbon Synapse from 110113 -> 110130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110113, + "TargetID": 110130, + "Directional": true + }] + }, { + "ID": 8890, + "SourceStructureID": 5503, + "TargetStructureID": 110131, + "Label": "5503-110131 via Ribbon Synapse from 110113 -> 110132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110113, + "TargetID": 110132, + "Directional": true + }] + }, { + "ID": 8891, + "SourceStructureID": 5503, + "TargetStructureID": 110157, + "Label": "5503-110157 via Ribbon Synapse from 110153 -> 110158", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110153, + "TargetID": 110158, + "Directional": true + }] + }, { + "ID": 8892, + "SourceStructureID": 5503, + "TargetStructureID": 110159, + "Label": "5503-110159 via Ribbon Synapse from 110153 -> 110162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110153, + "TargetID": 110162, + "Directional": true + }] + }, { + "ID": 8893, + "SourceStructureID": 5503, + "TargetStructureID": 110164, + "Label": "5503-110164 via Ribbon Synapse from 110163 -> 110165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110163, + "TargetID": 110165, + "Directional": true + }] + }, { + "ID": 8894, + "SourceStructureID": 5503, + "TargetStructureID": 110247, + "Label": "5503-110247 via Ribbon Synapse from 110245 -> 110250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110245, + "TargetID": 110250, + "Directional": true + }] + }, { + "ID": 8895, + "SourceStructureID": 5503, + "TargetStructureID": 110248, + "Label": "5503-110248 via Ribbon Synapse from 110245 -> 110249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110245, + "TargetID": 110249, + "Directional": true + }] + }, { + "ID": 8896, + "SourceStructureID": 5503, + "TargetStructureID": 110281, + "Label": "5503-110281 via Ribbon Synapse from 36564 -> 110286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36564, + "TargetID": 110286, + "Directional": true + }] + }, { + "ID": 8897, + "SourceStructureID": 5503, + "TargetStructureID": 110282, + "Label": "5503-110282 via Ribbon Synapse from 36564 -> 110285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36564, + "TargetID": 110285, + "Directional": true + }] + }, { + "ID": 8898, + "SourceStructureID": 5503, + "TargetStructureID": 110354, + "Label": "5503-110354 via Ribbon Synapse from 110330 -> 110365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110330, + "TargetID": 110365, + "Directional": true + }] + }, { + "ID": 8899, + "SourceStructureID": 5503, + "TargetStructureID": 110360, + "Label": "5503-110360 via Ribbon Synapse from 110330 -> 110363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110330, + "TargetID": 110363, + "Directional": true + }] + }, { + "ID": 8900, + "SourceStructureID": 5503, + "TargetStructureID": 110392, + "Label": "5503-110392 via Ribbon Synapse from 110343 -> 110393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110343, + "TargetID": 110393, + "Directional": true + }] + }, { + "ID": 8901, + "SourceStructureID": 5503, + "TargetStructureID": 110403, + "Label": "5503-110403 via Ribbon Synapse from 110400 -> 110405", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110400, + "TargetID": 110405, + "Directional": true + }] + }, { + "ID": 8902, + "SourceStructureID": 5503, + "TargetStructureID": 110406, + "Label": "5503-110406 via Ribbon Synapse from 110400 -> 110407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110400, + "TargetID": 110407, + "Directional": true + }] + }, { + "ID": 8903, + "SourceStructureID": 5503, + "TargetStructureID": 110410, + "Label": "5503-110410 via Ribbon Synapse from 110400 -> 110411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110400, + "TargetID": 110411, + "Directional": true + }] + }, { + "ID": 8904, + "SourceStructureID": 5503, + "TargetStructureID": 110444, + "Label": "5503-110444 via BC Conventional Synapse from 110446 -> 110445", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110446, + "TargetID": 110445, + "Directional": true + }] + }, { + "ID": 8905, + "SourceStructureID": 5503, + "TargetStructureID": 110449, + "Label": "5503-110449 via Ribbon Synapse from 60782 -> 110456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60782, + "TargetID": 110456, + "Directional": true + }] + }, { + "ID": 8906, + "SourceStructureID": 5503, + "TargetStructureID": 110457, + "Label": "5503-110457 via Ribbon Synapse from 52806 -> 110458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52806, + "TargetID": 110458, + "Directional": true + }] + }, { + "ID": 8907, + "SourceStructureID": 5503, + "TargetStructureID": 110459, + "Label": "5503-110459 via Ribbon Synapse from 52806 -> 110460", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52806, + "TargetID": 110460, + "Directional": true + }] + }, { + "ID": 8908, + "SourceStructureID": 5503, + "TargetStructureID": 110463, + "Label": "5503-110463 via BC Conventional Synapse from 110462 -> 110464", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110462, + "TargetID": 110464, + "Directional": true + }] + }, { + "ID": 8909, + "SourceStructureID": 5503, + "TargetStructureID": 110477, + "Label": "5503-110477 via Ribbon Synapse from 110461 -> 110478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110461, + "TargetID": 110478, + "Directional": true + }] + }, { + "ID": 8910, + "SourceStructureID": 5503, + "TargetStructureID": 110479, + "Label": "5503-110479 via Ribbon Synapse from 110461 -> 110480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110461, + "TargetID": 110480, + "Directional": true + }] + }, { + "ID": 8911, + "SourceStructureID": 5503, + "TargetStructureID": 110488, + "Label": "5503-110488 via BC Conventional Synapse from 110487 -> 110489", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110487, + "TargetID": 110489, + "Directional": true + }] + }, { + "ID": 8912, + "SourceStructureID": 5503, + "TargetStructureID": 110490, + "Label": "5503-110490 via BC Conventional Synapse from 110486 -> 110491", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110486, + "TargetID": 110491, + "Directional": true + }] + }, { + "ID": 8913, + "SourceStructureID": 5503, + "TargetStructureID": 111474, + "Label": "5503-111474 via Ribbon Synapse from 52438 -> 111475", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52438, + "TargetID": 111475, + "Directional": true + }] + }, { + "ID": 8914, + "SourceStructureID": 5504, + "TargetStructureID": 5405, + "Label": "5504-5405 via Ribbon Synapse from 11121 -> 11122", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11121, + "TargetID": 11122, + "Directional": true + }] + }, { + "ID": 8915, + "SourceStructureID": 5504, + "TargetStructureID": 8035, + "Label": "5504-8035 via Ribbon Synapse from 25014 -> 25018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25014, + "TargetID": 25018, + "Directional": true + }] + }, { + "ID": 8916, + "SourceStructureID": 5511, + "TargetStructureID": 1620, + "Label": "5511-1620 via Ribbon Synapse from 17022 -> 16998, 17025 -> 17026, 21965 -> 16998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17022, + "TargetID": 16998, + "Directional": true + }, { + "SourceID": 17025, + "TargetID": 17026, + "Directional": true + }, { + "SourceID": 21965, + "TargetID": 16998, + "Directional": true + }] + }, { + "ID": 8917, + "SourceStructureID": 5511, + "TargetStructureID": 12897, + "Label": "5511-12897 via Ribbon Synapse from 21972 -> 65175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21972, + "TargetID": 65175, + "Directional": true + }] + }, { + "ID": 8918, + "SourceStructureID": 5511, + "TargetStructureID": 20608, + "Label": "5511-20608 via Ribbon Synapse from 20609 -> 20611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20609, + "TargetID": 20611, + "Directional": true + }] + }, { + "ID": 8919, + "SourceStructureID": 5513, + "TargetStructureID": 606, + "Label": "5513-606 via Ribbon Synapse from 30666 -> 30667, 30668 -> 98784, 30670 -> 30671, 47580 -> 47581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30666, + "TargetID": 30667, + "Directional": true + }, { + "SourceID": 30668, + "TargetID": 98784, + "Directional": true + }, { + "SourceID": 30670, + "TargetID": 30671, + "Directional": true + }, { + "SourceID": 47580, + "TargetID": 47581, + "Directional": true + }] + }, { + "ID": 8920, + "SourceStructureID": 5513, + "TargetStructureID": 911, + "Label": "5513-911 via Ribbon Synapse from 35136 -> 35134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35136, + "TargetID": 35134, + "Directional": true + }] + }, { + "ID": 8921, + "SourceStructureID": 5513, + "TargetStructureID": 7594, + "Label": "5513-7594 via Ribbon Synapse from 25123 -> 25122, 29590 -> 64855, 29603 -> 64853, 29604 -> 64854, 118216 -> 25118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25123, + "TargetID": 25122, + "Directional": true + }, { + "SourceID": 29590, + "TargetID": 64855, + "Directional": true + }, { + "SourceID": 29603, + "TargetID": 64853, + "Directional": true + }, { + "SourceID": 29604, + "TargetID": 64854, + "Directional": true + }, { + "SourceID": 118216, + "TargetID": 25118, + "Directional": true + }] + }, { + "ID": 8922, + "SourceStructureID": 5513, + "TargetStructureID": 9769, + "Label": "5513-9769 via Ribbon Synapse from 12347 -> 12340, 46974 -> 12340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12347, + "TargetID": 12340, + "Directional": true + }, { + "SourceID": 46974, + "TargetID": 12340, + "Directional": true + }] + }, { + "ID": 8923, + "SourceStructureID": 5513, + "TargetStructureID": 32862, + "Label": "5513-32862 via Ribbon Synapse from 32870 -> 32869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32870, + "TargetID": 32869, + "Directional": true + }] + }, { + "ID": 8924, + "SourceStructureID": 5513, + "TargetStructureID": 33117, + "Label": "5513-33117 via Ribbon Synapse from 29614 -> 33123, 33122 -> 33121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29614, + "TargetID": 33123, + "Directional": true + }, { + "SourceID": 33122, + "TargetID": 33121, + "Directional": true + }] + }, { + "ID": 8925, + "SourceStructureID": 5513, + "TargetStructureID": 35138, + "Label": "5513-35138 via Ribbon Synapse from 29625 -> 35141", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29625, + "TargetID": 35141, + "Directional": true + }] + }, { + "ID": 8926, + "SourceStructureID": 5513, + "TargetStructureID": 37466, + "Label": "5513-37466 via Ribbon Synapse from 37469 -> 37468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37469, + "TargetID": 37468, + "Directional": true + }] + }, { + "ID": 8927, + "SourceStructureID": 5513, + "TargetStructureID": 87162, + "Label": "5513-87162 via Ribbon Synapse from 87171 -> 87164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87171, + "TargetID": 87164, + "Directional": true + }] + }, { + "ID": 8928, + "SourceStructureID": 5513, + "TargetStructureID": 99513, + "Label": "5513-99513 via Ribbon Synapse from 29612 -> 129631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29612, + "TargetID": 129631, + "Directional": true + }] + }, { + "ID": 8929, + "SourceStructureID": 5514, + "TargetStructureID": 18693, + "Label": "5514-18693 via Ribbon Synapse from 121564 -> 121563", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121564, + "TargetID": 121563, + "Directional": true + }] + }, { + "ID": 8930, + "SourceStructureID": 5514, + "TargetStructureID": 55366, + "Label": "5514-55366 via Ribbon Synapse from 55380 -> 55376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55380, + "TargetID": 55376, + "Directional": true + }] + }, { + "ID": 8931, + "SourceStructureID": 5514, + "TargetStructureID": 105635, + "Label": "5514-105635 via Ribbon Synapse from 50698 -> 105637", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50698, + "TargetID": 105637, + "Directional": true + }] + }, { + "ID": 8932, + "SourceStructureID": 5515, + "TargetStructureID": 525, + "Label": "5515-525 via Ribbon Synapse from 11333 -> 11332, 11391 -> 6246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11333, + "TargetID": 11332, + "Directional": true + }, { + "SourceID": 11391, + "TargetID": 6246, + "Directional": true + }] + }, { + "ID": 8933, + "SourceStructureID": 5515, + "TargetStructureID": 8576, + "Label": "5515-8576 via Ribbon Synapse from 11282 -> 69045, 69040 -> 69039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11282, + "TargetID": 69045, + "Directional": true + }, { + "SourceID": 69040, + "TargetID": 69039, + "Directional": true + }] + }, { + "ID": 8934, + "SourceStructureID": 5515, + "TargetStructureID": 8720, + "Label": "5515-8720 via Ribbon Synapse from 60110 -> 60108", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60110, + "TargetID": 60108, + "Directional": true + }] + }, { + "ID": 8935, + "SourceStructureID": 5515, + "TargetStructureID": 18282, + "Label": "5515-18282 via Ribbon Synapse from 31441 -> 31440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31441, + "TargetID": 31440, + "Directional": true + }] + }, { + "ID": 8936, + "SourceStructureID": 5515, + "TargetStructureID": 40480, + "Label": "5515-40480 via Ribbon Synapse from 56512 -> 59938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56512, + "TargetID": 59938, + "Directional": true + }] + }, { + "ID": 8937, + "SourceStructureID": 5515, + "TargetStructureID": 66958, + "Label": "5515-66958 via Ribbon Synapse from 70063 -> 70061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70063, + "TargetID": 70061, + "Directional": true + }] + }, { + "ID": 8938, + "SourceStructureID": 5515, + "TargetStructureID": 69049, + "Label": "5515-69049 via Ribbon Synapse from 69053 -> 69052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69053, + "TargetID": 69052, + "Directional": true + }] + }, { + "ID": 8939, + "SourceStructureID": 5515, + "TargetStructureID": 132162, + "Label": "5515-132162 via Ribbon Synapse from 132165 -> 132167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132165, + "TargetID": 132167, + "Directional": true + }] + }, { + "ID": 8940, + "SourceStructureID": 5515, + "TargetStructureID": 136742, + "Label": "5515-136742 via BC Conventional Synapse from 119130 -> 136750", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119130, + "TargetID": 136750, + "Directional": true + }] + }, { + "ID": 8941, + "SourceStructureID": 5516, + "TargetStructureID": 5345, + "Label": "5516-5345 via Ribbon Synapse from 50086 -> 88853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50086, + "TargetID": 88853, + "Directional": true + }] + }, { + "ID": 8942, + "SourceStructureID": 5516, + "TargetStructureID": 7594, + "Label": "5516-7594 via Ribbon Synapse from 50031 -> 7669, 50078 -> 7671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50031, + "TargetID": 7669, + "Directional": true + }, { + "SourceID": 50078, + "TargetID": 7671, + "Directional": true + }] + }, { + "ID": 8943, + "SourceStructureID": 5516, + "TargetStructureID": 9769, + "Label": "5516-9769 via Ribbon Synapse from 148194 -> 148195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148194, + "TargetID": 148195, + "Directional": true + }] + }, { + "ID": 8944, + "SourceStructureID": 5516, + "TargetStructureID": 40018, + "Label": "5516-40018 via Ribbon Synapse from 40028 -> 40027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40028, + "TargetID": 40027, + "Directional": true + }] + }, { + "ID": 8945, + "SourceStructureID": 5516, + "TargetStructureID": 68153, + "Label": "5516-68153 via Ribbon Synapse from 50112 -> 70155, 50113 -> 96580, 70167 -> 70161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50112, + "TargetID": 70155, + "Directional": true + }, { + "SourceID": 50113, + "TargetID": 96580, + "Directional": true + }, { + "SourceID": 70167, + "TargetID": 70161, + "Directional": true + }] + }, { + "ID": 8946, + "SourceStructureID": 5516, + "TargetStructureID": 69162, + "Label": "5516-69162 via Ribbon Synapse from 50113 -> 96581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50113, + "TargetID": 96581, + "Directional": true + }] + }, { + "ID": 8947, + "SourceStructureID": 5517, + "TargetStructureID": 598, + "Label": "5517-598 via Ribbon Synapse from 49371 -> 6319", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49371, + "TargetID": 6319, + "Directional": true + }] + }, { + "ID": 8948, + "SourceStructureID": 5517, + "TargetStructureID": 1610, + "Label": "5517-1610 via Ribbon Synapse from 96074 -> 96075", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96074, + "TargetID": 96075, + "Directional": true + }] + }, { + "ID": 8949, + "SourceStructureID": 5517, + "TargetStructureID": 5509, + "Label": "5517-5509 via Ribbon Synapse from 49404 -> 122392, 49405 -> 121911", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49404, + "TargetID": 122392, + "Directional": true + }, { + "SourceID": 49405, + "TargetID": 121911, + "Directional": true + }] + }, { + "ID": 8950, + "SourceStructureID": 5517, + "TargetStructureID": 7594, + "Label": "5517-7594 via Ribbon Synapse from 25105 -> 25103, 96065 -> 25115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25105, + "TargetID": 25103, + "Directional": true + }, { + "SourceID": 96065, + "TargetID": 25115, + "Directional": true + }] + }, { + "ID": 8951, + "SourceStructureID": 5517, + "TargetStructureID": 18693, + "Label": "5517-18693 via Ribbon Synapse from 18703 -> 18702, 23502 -> 23503, 96081 -> 96533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18703, + "TargetID": 18702, + "Directional": true + }, { + "SourceID": 23502, + "TargetID": 23503, + "Directional": true + }, { + "SourceID": 96081, + "TargetID": 96533, + "Directional": true + }] + }, { + "ID": 8952, + "SourceStructureID": 5517, + "TargetStructureID": 30567, + "Label": "5517-30567 via Ribbon Synapse from 30659 -> 30658", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30659, + "TargetID": 30658, + "Directional": true + }] + }, { + "ID": 8953, + "SourceStructureID": 5517, + "TargetStructureID": 40018, + "Label": "5517-40018 via Ribbon Synapse from 40021 -> 40020, 40025 -> 40024", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40021, + "TargetID": 40020, + "Directional": true + }, { + "SourceID": 40025, + "TargetID": 40024, + "Directional": true + }] + }, { + "ID": 8954, + "SourceStructureID": 5517, + "TargetStructureID": 53344, + "Label": "5517-53344 via Ribbon Synapse from 53343 -> 53345", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53343, + "TargetID": 53345, + "Directional": true + }] + }, { + "ID": 8955, + "SourceStructureID": 5517, + "TargetStructureID": 53395, + "Label": "5517-53395 via Ribbon Synapse from 49475 -> 53397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49475, + "TargetID": 53397, + "Directional": true + }] + }, { + "ID": 8956, + "SourceStructureID": 5517, + "TargetStructureID": 58592, + "Label": "5517-58592 via Ribbon Synapse from 49367 -> 58631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49367, + "TargetID": 58631, + "Directional": true + }] + }, { + "ID": 8957, + "SourceStructureID": 5517, + "TargetStructureID": 68277, + "Label": "5517-68277 via Ribbon Synapse from 49364 -> 68279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49364, + "TargetID": 68279, + "Directional": true + }] + }, { + "ID": 8958, + "SourceStructureID": 5517, + "TargetStructureID": 82229, + "Label": "5517-82229 via Ribbon Synapse from 49359 -> 82230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49359, + "TargetID": 82230, + "Directional": true + }] + }, { + "ID": 8959, + "SourceStructureID": 5517, + "TargetStructureID": 87972, + "Label": "5517-87972 via Ribbon Synapse from 49272 -> 88011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49272, + "TargetID": 88011, + "Directional": true + }] + }, { + "ID": 8960, + "SourceStructureID": 5517, + "TargetStructureID": 96178, + "Label": "5517-96178 via BC Conventional Synapse from 96177 -> 96179", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96177, + "TargetID": 96179, + "Directional": true + }] + }, { + "ID": 8961, + "SourceStructureID": 5517, + "TargetStructureID": 96217, + "Label": "5517-96217 via BC Conventional Synapse from 96305 -> 96306", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96305, + "TargetID": 96306, + "Directional": true + }] + }, { + "ID": 8962, + "SourceStructureID": 5517, + "TargetStructureID": 96217, + "Label": "5517-96217 via Ribbon Synapse from 96113 -> 96218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96113, + "TargetID": 96218, + "Directional": true + }] + }, { + "ID": 8963, + "SourceStructureID": 5517, + "TargetStructureID": 96323, + "Label": "5517-96323 via Ribbon Synapse from 96109 -> 96324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96109, + "TargetID": 96324, + "Directional": true + }] + }, { + "ID": 8964, + "SourceStructureID": 5517, + "TargetStructureID": 96335, + "Label": "5517-96335 via BC Conventional Synapse from 96330 -> 96336", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96330, + "TargetID": 96336, + "Directional": true + }] + }, { + "ID": 8965, + "SourceStructureID": 5517, + "TargetStructureID": 109799, + "Label": "5517-109799 via BC Conventional Synapse from 119235 -> 119236", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119235, + "TargetID": 119236, + "Directional": true + }] + }, { + "ID": 8966, + "SourceStructureID": 5517, + "TargetStructureID": 110367, + "Label": "5517-110367 via Cistern Pre from 135806 -> 135805", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 135806, + "TargetID": 135805, + "Directional": true + }] + }, { + "ID": 8967, + "SourceStructureID": 5519, + "TargetStructureID": 46741, + "Label": "5519-46741 via Ribbon Synapse from 46740 -> 46742, 46745 -> 46743, 46747 -> 46744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46740, + "TargetID": 46742, + "Directional": true + }, { + "SourceID": 46745, + "TargetID": 46743, + "Directional": true + }, { + "SourceID": 46747, + "TargetID": 46744, + "Directional": true + }] + }, { + "ID": 8968, + "SourceStructureID": 5519, + "TargetStructureID": 70501, + "Label": "5519-70501 via Ribbon Synapse from 46746 -> 70502, 70503 -> 70502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46746, + "TargetID": 70502, + "Directional": true + }, { + "SourceID": 70503, + "TargetID": 70502, + "Directional": true + }] + }, { + "ID": 8969, + "SourceStructureID": 5520, + "TargetStructureID": 5499, + "Label": "5520-5499 via Adherens from 105461 -> 105462", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 105461, + "TargetID": 105462, + "Directional": true + }] + }, { + "ID": 8970, + "SourceStructureID": 5520, + "TargetStructureID": 5520, + "Label": "5520-5520 via Cistern Pre from 37930 -> 37931", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 37930, + "TargetID": 37931, + "Directional": true + }] + }, { + "ID": 8971, + "SourceStructureID": 5520, + "TargetStructureID": 7897, + "Label": "5520-7897 via Ribbon Synapse from 119750 -> 55720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119750, + "TargetID": 55720, + "Directional": true + }] + }, { + "ID": 8972, + "SourceStructureID": 5520, + "TargetStructureID": 8575, + "Label": "5520-8575 via Ribbon Synapse from 62998 -> 62997", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62998, + "TargetID": 62997, + "Directional": true + }] + }, { + "ID": 8973, + "SourceStructureID": 5520, + "TargetStructureID": 136236, + "Label": "5520-136236 via Ribbon Synapse from 97903 -> 136237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97903, + "TargetID": 136237, + "Directional": true + }] + }, { + "ID": 8974, + "SourceStructureID": 5522, + "TargetStructureID": 18282, + "Label": "5522-18282 via Ribbon Synapse from 43504 -> 43494, 109815 -> 43494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43504, + "TargetID": 43494, + "Directional": true + }, { + "SourceID": 109815, + "TargetID": 43494, + "Directional": true + }] + }, { + "ID": 8975, + "SourceStructureID": 5522, + "TargetStructureID": 31024, + "Label": "5522-31024 via Ribbon Synapse from 63128 -> 63130, 64119 -> 31363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63128, + "TargetID": 63130, + "Directional": true + }, { + "SourceID": 64119, + "TargetID": 31363, + "Directional": true + }] + }, { + "ID": 8976, + "SourceStructureID": 5522, + "TargetStructureID": 32804, + "Label": "5522-32804 via Ribbon Synapse from 43499 -> 32809, 43500 -> 32807, 64127 -> 32806, 64137 -> 64138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43499, + "TargetID": 32809, + "Directional": true + }, { + "SourceID": 43500, + "TargetID": 32807, + "Directional": true + }, { + "SourceID": 64127, + "TargetID": 32806, + "Directional": true + }, { + "SourceID": 64137, + "TargetID": 64138, + "Directional": true + }] + }, { + "ID": 8977, + "SourceStructureID": 5522, + "TargetStructureID": 63115, + "Label": "5522-63115 via Ribbon Synapse from 63118 -> 63119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63118, + "TargetID": 63119, + "Directional": true + }] + }, { + "ID": 8978, + "SourceStructureID": 5522, + "TargetStructureID": 69554, + "Label": "5522-69554 via Ribbon Synapse from 63180 -> 69560, 63181 -> 69559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63180, + "TargetID": 69560, + "Directional": true + }, { + "SourceID": 63181, + "TargetID": 69559, + "Directional": true + }] + }, { + "ID": 8979, + "SourceStructureID": 5522, + "TargetStructureID": 75272, + "Label": "5522-75272 via Ribbon Synapse from 64320 -> 75298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64320, + "TargetID": 75298, + "Directional": true + }] + }, { + "ID": 8980, + "SourceStructureID": 5528, + "TargetStructureID": 606, + "Label": "5528-606 via Ribbon Synapse from 54722 -> 54723, 107105 -> 53568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54722, + "TargetID": 54723, + "Directional": true + }, { + "SourceID": 107105, + "TargetID": 53568, + "Directional": true + }] + }, { + "ID": 8981, + "SourceStructureID": 5528, + "TargetStructureID": 7225, + "Label": "5528-7225 via Ribbon Synapse from 94517 -> 10029", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94517, + "TargetID": 10029, + "Directional": true + }] + }, { + "ID": 8982, + "SourceStructureID": 5528, + "TargetStructureID": 7576, + "Label": "5528-7576 via BC Conventional Synapse from 55925 -> 55924, 95184 -> 95183, 95196 -> 55087", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55925, + "TargetID": 55924, + "Directional": true + }, { + "SourceID": 95184, + "TargetID": 95183, + "Directional": true + }, { + "SourceID": 95196, + "TargetID": 55087, + "Directional": true + }] + }, { + "ID": 8983, + "SourceStructureID": 5528, + "TargetStructureID": 7576, + "Label": "5528-7576 via Ribbon Synapse from 8265 -> 54809, 8272 -> 55043, 54873 -> 54870, 55024 -> 55025, 55047 -> 55048, 55086 -> 55087, 95637 -> 95639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8265, + "TargetID": 54809, + "Directional": true + }, { + "SourceID": 8272, + "TargetID": 55043, + "Directional": true + }, { + "SourceID": 54873, + "TargetID": 54870, + "Directional": true + }, { + "SourceID": 55024, + "TargetID": 55025, + "Directional": true + }, { + "SourceID": 55047, + "TargetID": 55048, + "Directional": true + }, { + "SourceID": 55086, + "TargetID": 55087, + "Directional": true + }, { + "SourceID": 95637, + "TargetID": 95639, + "Directional": true + }] + }, { + "ID": 8984, + "SourceStructureID": 5528, + "TargetStructureID": 7594, + "Label": "5528-7594 via Ribbon Synapse from 95172 -> 95174, 113943 -> 113944", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95172, + "TargetID": 95174, + "Directional": true + }, { + "SourceID": 113943, + "TargetID": 113944, + "Directional": true + }] + }, { + "ID": 8985, + "SourceStructureID": 5528, + "TargetStructureID": 33217, + "Label": "5528-33217 via Ribbon Synapse from 33237 -> 33232", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33237, + "TargetID": 33232, + "Directional": true + }] + }, { + "ID": 8986, + "SourceStructureID": 5528, + "TargetStructureID": 43716, + "Label": "5528-43716 via Ribbon Synapse from 95172 -> 95173", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95172, + "TargetID": 95173, + "Directional": true + }] + }, { + "ID": 8987, + "SourceStructureID": 5528, + "TargetStructureID": 55034, + "Label": "5528-55034 via Ribbon Synapse from 55035 -> 55036, 94721 -> 94724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55035, + "TargetID": 55036, + "Directional": true + }, { + "SourceID": 94721, + "TargetID": 94724, + "Directional": true + }] + }, { + "ID": 8988, + "SourceStructureID": 5528, + "TargetStructureID": 60243, + "Label": "5528-60243 via Ribbon Synapse from 60248 -> 96183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60248, + "TargetID": 96183, + "Directional": true + }] + }, { + "ID": 8989, + "SourceStructureID": 5528, + "TargetStructureID": 64414, + "Label": "5528-64414 via Ribbon Synapse from 93944 -> 93949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93944, + "TargetID": 93949, + "Directional": true + }] + }, { + "ID": 8990, + "SourceStructureID": 5528, + "TargetStructureID": 68793, + "Label": "5528-68793 via Ribbon Synapse from 68792 -> 68794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68792, + "TargetID": 68794, + "Directional": true + }] + }, { + "ID": 8991, + "SourceStructureID": 5528, + "TargetStructureID": 77329, + "Label": "5528-77329 via Ribbon Synapse from 94401 -> 94402", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94401, + "TargetID": 94402, + "Directional": true + }] + }, { + "ID": 8992, + "SourceStructureID": 5528, + "TargetStructureID": 77920, + "Label": "5528-77920 via Ribbon Synapse from 93944 -> 93948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93944, + "TargetID": 93948, + "Directional": true + }] + }, { + "ID": 8993, + "SourceStructureID": 5528, + "TargetStructureID": 93523, + "Label": "5528-93523 via BC Conventional Synapse from 93526 -> 93527", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93526, + "TargetID": 93527, + "Directional": true + }] + }, { + "ID": 8994, + "SourceStructureID": 5528, + "TargetStructureID": 93523, + "Label": "5528-93523 via Cistern Pre from 36390 -> 93525", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 36390, + "TargetID": 93525, + "Directional": true + }] + }, { + "ID": 8995, + "SourceStructureID": 5528, + "TargetStructureID": 93565, + "Label": "5528-93565 via Ribbon Synapse from 93567 -> 93566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93567, + "TargetID": 93566, + "Directional": true + }] + }, { + "ID": 8996, + "SourceStructureID": 5528, + "TargetStructureID": 93568, + "Label": "5528-93568 via Ribbon Synapse from 36394 -> 93569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36394, + "TargetID": 93569, + "Directional": true + }] + }, { + "ID": 8997, + "SourceStructureID": 5528, + "TargetStructureID": 93571, + "Label": "5528-93571 via Cistern Pre from 93570 -> 93572", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 93570, + "TargetID": 93572, + "Directional": true + }] + }, { + "ID": 8998, + "SourceStructureID": 5528, + "TargetStructureID": 93945, + "Label": "5528-93945 via Ribbon Synapse from 93944 -> 93946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93944, + "TargetID": 93946, + "Directional": true + }] + }, { + "ID": 8999, + "SourceStructureID": 5528, + "TargetStructureID": 93950, + "Label": "5528-93950 via BC Conventional Synapse from 93952 -> 93951", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93952, + "TargetID": 93951, + "Directional": true + }] + }, { + "ID": 9000, + "SourceStructureID": 5528, + "TargetStructureID": 93966, + "Label": "5528-93966 via Ribbon Synapse from 93956 -> 93967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93956, + "TargetID": 93967, + "Directional": true + }] + }, { + "ID": 9001, + "SourceStructureID": 5528, + "TargetStructureID": 93968, + "Label": "5528-93968 via Ribbon Synapse from 93956 -> 93969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93956, + "TargetID": 93969, + "Directional": true + }] + }, { + "ID": 9002, + "SourceStructureID": 5528, + "TargetStructureID": 93982, + "Label": "5528-93982 via BC Conventional Synapse from 93983 -> 93984", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93983, + "TargetID": 93984, + "Directional": true + }] + }, { + "ID": 9003, + "SourceStructureID": 5528, + "TargetStructureID": 93993, + "Label": "5528-93993 via Ribbon Synapse from 93582 -> 93994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93582, + "TargetID": 93994, + "Directional": true + }] + }, { + "ID": 9004, + "SourceStructureID": 5528, + "TargetStructureID": 94003, + "Label": "5528-94003 via Ribbon Synapse from 93582 -> 94004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93582, + "TargetID": 94004, + "Directional": true + }] + }, { + "ID": 9005, + "SourceStructureID": 5528, + "TargetStructureID": 94015, + "Label": "5528-94015 via Ribbon Synapse from 93585 -> 94017", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93585, + "TargetID": 94017, + "Directional": true + }] + }, { + "ID": 9006, + "SourceStructureID": 5528, + "TargetStructureID": 94021, + "Label": "5528-94021 via BC Conventional Synapse from 94020 -> 94022", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94020, + "TargetID": 94022, + "Directional": true + }] + }, { + "ID": 9007, + "SourceStructureID": 5528, + "TargetStructureID": 94029, + "Label": "5528-94029 via Ribbon Synapse from 93601 -> 94030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93601, + "TargetID": 94030, + "Directional": true + }] + }, { + "ID": 9008, + "SourceStructureID": 5528, + "TargetStructureID": 94038, + "Label": "5528-94038 via Ribbon Synapse from 94040 -> 94041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94040, + "TargetID": 94041, + "Directional": true + }] + }, { + "ID": 9009, + "SourceStructureID": 5528, + "TargetStructureID": 94039, + "Label": "5528-94039 via Ribbon Synapse from 94040 -> 94042", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94040, + "TargetID": 94042, + "Directional": true + }] + }, { + "ID": 9010, + "SourceStructureID": 5528, + "TargetStructureID": 94044, + "Label": "5528-94044 via Ribbon Synapse from 94043 -> 94045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94043, + "TargetID": 94045, + "Directional": true + }] + }, { + "ID": 9011, + "SourceStructureID": 5528, + "TargetStructureID": 94046, + "Label": "5528-94046 via Ribbon Synapse from 94043 -> 94047", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94043, + "TargetID": 94047, + "Directional": true + }] + }, { + "ID": 9012, + "SourceStructureID": 5528, + "TargetStructureID": 94123, + "Label": "5528-94123 via BC Conventional Synapse from 94125 -> 94124", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94125, + "TargetID": 94124, + "Directional": true + }] + }, { + "ID": 9013, + "SourceStructureID": 5528, + "TargetStructureID": 94123, + "Label": "5528-94123 via Ribbon Synapse from 94134 -> 94135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94134, + "TargetID": 94135, + "Directional": true + }] + }, { + "ID": 9014, + "SourceStructureID": 5528, + "TargetStructureID": 94127, + "Label": "5528-94127 via Ribbon Synapse from 94126 -> 94128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94126, + "TargetID": 94128, + "Directional": true + }] + }, { + "ID": 9015, + "SourceStructureID": 5528, + "TargetStructureID": 94155, + "Label": "5528-94155 via Ribbon Synapse from 94154 -> 94156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94154, + "TargetID": 94156, + "Directional": true + }] + }, { + "ID": 9016, + "SourceStructureID": 5528, + "TargetStructureID": 94161, + "Label": "5528-94161 via Ribbon Synapse from 94160 -> 94162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94160, + "TargetID": 94162, + "Directional": true + }] + }, { + "ID": 9017, + "SourceStructureID": 5528, + "TargetStructureID": 94194, + "Label": "5528-94194 via BC Conventional Synapse from 94275 -> 94274", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94275, + "TargetID": 94274, + "Directional": true + }] + }, { + "ID": 9018, + "SourceStructureID": 5528, + "TargetStructureID": 94262, + "Label": "5528-94262 via Ribbon Synapse from 94261 -> 94265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94261, + "TargetID": 94265, + "Directional": true + }] + }, { + "ID": 9019, + "SourceStructureID": 5528, + "TargetStructureID": 94297, + "Label": "5528-94297 via Ribbon Synapse from 94304 -> 94310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94304, + "TargetID": 94310, + "Directional": true + }] + }, { + "ID": 9020, + "SourceStructureID": 5528, + "TargetStructureID": 94303, + "Label": "5528-94303 via Ribbon Synapse from 94304 -> 94305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94304, + "TargetID": 94305, + "Directional": true + }] + }, { + "ID": 9021, + "SourceStructureID": 5528, + "TargetStructureID": 94309, + "Label": "5528-94309 via BC Conventional Synapse from 94308 -> 94311", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94308, + "TargetID": 94311, + "Directional": true + }] + }, { + "ID": 9022, + "SourceStructureID": 5528, + "TargetStructureID": 94353, + "Label": "5528-94353 via Ribbon Synapse from 94352 -> 94377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94352, + "TargetID": 94377, + "Directional": true + }] + }, { + "ID": 9023, + "SourceStructureID": 5528, + "TargetStructureID": 94381, + "Label": "5528-94381 via Ribbon Synapse from 94380 -> 94382", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94380, + "TargetID": 94382, + "Directional": true + }] + }, { + "ID": 9024, + "SourceStructureID": 5528, + "TargetStructureID": 94403, + "Label": "5528-94403 via Ribbon Synapse from 94401 -> 94404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94401, + "TargetID": 94404, + "Directional": true + }] + }, { + "ID": 9025, + "SourceStructureID": 5528, + "TargetStructureID": 94409, + "Label": "5528-94409 via Ribbon Synapse from 91643 -> 94410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91643, + "TargetID": 94410, + "Directional": true + }] + }, { + "ID": 9026, + "SourceStructureID": 5528, + "TargetStructureID": 94428, + "Label": "5528-94428 via Ribbon Synapse from 84674 -> 94429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84674, + "TargetID": 94429, + "Directional": true + }] + }, { + "ID": 9027, + "SourceStructureID": 5528, + "TargetStructureID": 94430, + "Label": "5528-94430 via BC Conventional Synapse from 94431 -> 94432", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94431, + "TargetID": 94432, + "Directional": true + }] + }, { + "ID": 9028, + "SourceStructureID": 5528, + "TargetStructureID": 94433, + "Label": "5528-94433 via BC Conventional Synapse from 94435 -> 94434", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94435, + "TargetID": 94434, + "Directional": true + }] + }, { + "ID": 9029, + "SourceStructureID": 5528, + "TargetStructureID": 94479, + "Label": "5528-94479 via BC Conventional Synapse from 94510 -> 94511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94510, + "TargetID": 94511, + "Directional": true + }] + }, { + "ID": 9030, + "SourceStructureID": 5528, + "TargetStructureID": 94479, + "Label": "5528-94479 via Ribbon Synapse from 94484 -> 94496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94484, + "TargetID": 94496, + "Directional": true + }] + }, { + "ID": 9031, + "SourceStructureID": 5528, + "TargetStructureID": 94482, + "Label": "5528-94482 via Ribbon Synapse from 55024 -> 94483", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55024, + "TargetID": 94483, + "Directional": true + }] + }, { + "ID": 9032, + "SourceStructureID": 5528, + "TargetStructureID": 94485, + "Label": "5528-94485 via Ribbon Synapse from 94484 -> 94495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94484, + "TargetID": 94495, + "Directional": true + }] + }, { + "ID": 9033, + "SourceStructureID": 5528, + "TargetStructureID": 94518, + "Label": "5528-94518 via Ribbon Synapse from 94517 -> 94522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94517, + "TargetID": 94522, + "Directional": true + }] + }, { + "ID": 9034, + "SourceStructureID": 5528, + "TargetStructureID": 94523, + "Label": "5528-94523 via Ribbon Synapse from 94517 -> 94524", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94517, + "TargetID": 94524, + "Directional": true + }] + }, { + "ID": 9035, + "SourceStructureID": 5528, + "TargetStructureID": 94719, + "Label": "5528-94719 via Ribbon Synapse from 94718 -> 94720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94718, + "TargetID": 94720, + "Directional": true + }] + }, { + "ID": 9036, + "SourceStructureID": 5528, + "TargetStructureID": 94722, + "Label": "5528-94722 via Ribbon Synapse from 94721 -> 94723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94721, + "TargetID": 94723, + "Directional": true + }] + }, { + "ID": 9037, + "SourceStructureID": 5528, + "TargetStructureID": 94729, + "Label": "5528-94729 via Ribbon Synapse from 94730 -> 94731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94730, + "TargetID": 94731, + "Directional": true + }] + }, { + "ID": 9038, + "SourceStructureID": 5528, + "TargetStructureID": 94733, + "Label": "5528-94733 via Ribbon Synapse from 94732 -> 94734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94732, + "TargetID": 94734, + "Directional": true + }] + }, { + "ID": 9039, + "SourceStructureID": 5528, + "TargetStructureID": 94741, + "Label": "5528-94741 via Ribbon Synapse from 94792 -> 94793, 94792 -> 94795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94792, + "TargetID": 94793, + "Directional": true + }, { + "SourceID": 94792, + "TargetID": 94795, + "Directional": true + }] + }, { + "ID": 9040, + "SourceStructureID": 5528, + "TargetStructureID": 94827, + "Label": "5528-94827 via BC Conventional Synapse from 94829 -> 94828", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 94829, + "TargetID": 94828, + "Directional": true + }] + }, { + "ID": 9041, + "SourceStructureID": 5528, + "TargetStructureID": 94867, + "Label": "5528-94867 via Ribbon Synapse from 8256 -> 95061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8256, + "TargetID": 95061, + "Directional": true + }] + }, { + "ID": 9042, + "SourceStructureID": 5528, + "TargetStructureID": 94870, + "Label": "5528-94870 via Ribbon Synapse from 8255 -> 95055", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8255, + "TargetID": 95055, + "Directional": true + }] + }, { + "ID": 9043, + "SourceStructureID": 5528, + "TargetStructureID": 95059, + "Label": "5528-95059 via Ribbon Synapse from 8256 -> 95060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8256, + "TargetID": 95060, + "Directional": true + }] + }, { + "ID": 9044, + "SourceStructureID": 5528, + "TargetStructureID": 95069, + "Label": "5528-95069 via Ribbon Synapse from 68792 -> 95087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68792, + "TargetID": 95087, + "Directional": true + }] + }, { + "ID": 9045, + "SourceStructureID": 5528, + "TargetStructureID": 95131, + "Label": "5528-95131 via Ribbon Synapse from 95132 -> 95133, 95141 -> 95142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95132, + "TargetID": 95133, + "Directional": true + }, { + "SourceID": 95141, + "TargetID": 95142, + "Directional": true + }] + }, { + "ID": 9046, + "SourceStructureID": 5528, + "TargetStructureID": 95134, + "Label": "5528-95134 via Ribbon Synapse from 95132 -> 95135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95132, + "TargetID": 95135, + "Directional": true + }] + }, { + "ID": 9047, + "SourceStructureID": 5528, + "TargetStructureID": 95166, + "Label": "5528-95166 via Ribbon Synapse from 95165 -> 95169", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95165, + "TargetID": 95169, + "Directional": true + }] + }, { + "ID": 9048, + "SourceStructureID": 5528, + "TargetStructureID": 95167, + "Label": "5528-95167 via Ribbon Synapse from 95165 -> 95168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95165, + "TargetID": 95168, + "Directional": true + }] + }, { + "ID": 9049, + "SourceStructureID": 5528, + "TargetStructureID": 95187, + "Label": "5528-95187 via BC Conventional Synapse from 95189 -> 95188", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95189, + "TargetID": 95188, + "Directional": true + }] + }, { + "ID": 9050, + "SourceStructureID": 5528, + "TargetStructureID": 95195, + "Label": "5528-95195 via Ribbon Synapse from 55086 -> 95464, 95637 -> 95638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55086, + "TargetID": 95464, + "Directional": true + }, { + "SourceID": 95637, + "TargetID": 95638, + "Directional": true + }] + }, { + "ID": 9051, + "SourceStructureID": 5528, + "TargetStructureID": 95435, + "Label": "5528-95435 via Ribbon Synapse from 95200 -> 95437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95200, + "TargetID": 95437, + "Directional": true + }] + }, { + "ID": 9052, + "SourceStructureID": 5528, + "TargetStructureID": 95440, + "Label": "5528-95440 via Ribbon Synapse from 95200 -> 95453, 95462 -> 95463", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95200, + "TargetID": 95453, + "Directional": true + }, { + "SourceID": 95462, + "TargetID": 95463, + "Directional": true + }] + }, { + "ID": 9053, + "SourceStructureID": 5528, + "TargetStructureID": 95468, + "Label": "5528-95468 via BC Conventional Synapse from 95470 -> 95469", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95470, + "TargetID": 95469, + "Directional": true + }] + }, { + "ID": 9054, + "SourceStructureID": 5528, + "TargetStructureID": 95659, + "Label": "5528-95659 via Ribbon Synapse from 8265 -> 95660", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8265, + "TargetID": 95660, + "Directional": true + }] + }, { + "ID": 9055, + "SourceStructureID": 5528, + "TargetStructureID": 95662, + "Label": "5528-95662 via Ribbon Synapse from 8265 -> 95663", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8265, + "TargetID": 95663, + "Directional": true + }] + }, { + "ID": 9056, + "SourceStructureID": 5528, + "TargetStructureID": 95670, + "Label": "5528-95670 via Ribbon Synapse from 8265 -> 95671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8265, + "TargetID": 95671, + "Directional": true + }] + }, { + "ID": 9057, + "SourceStructureID": 5528, + "TargetStructureID": 95693, + "Label": "5528-95693 via Ribbon Synapse from 8267 -> 95695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8267, + "TargetID": 95695, + "Directional": true + }] + }, { + "ID": 9058, + "SourceStructureID": 5528, + "TargetStructureID": 95696, + "Label": "5528-95696 via Ribbon Synapse from 8267 -> 95697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8267, + "TargetID": 95697, + "Directional": true + }] + }, { + "ID": 9059, + "SourceStructureID": 5528, + "TargetStructureID": 95698, + "Label": "5528-95698 via Ribbon Synapse from 8269 -> 96167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8269, + "TargetID": 96167, + "Directional": true + }] + }, { + "ID": 9060, + "SourceStructureID": 5528, + "TargetStructureID": 96143, + "Label": "5528-96143 via Ribbon Synapse from 8269 -> 96168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8269, + "TargetID": 96168, + "Directional": true + }] + }, { + "ID": 9061, + "SourceStructureID": 5528, + "TargetStructureID": 96207, + "Label": "5528-96207 via Ribbon Synapse from 96206 -> 96208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96206, + "TargetID": 96208, + "Directional": true + }] + }, { + "ID": 9062, + "SourceStructureID": 5528, + "TargetStructureID": 96227, + "Label": "5528-96227 via BC Conventional Synapse from 96229 -> 96230", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96229, + "TargetID": 96230, + "Directional": true + }] + }, { + "ID": 9063, + "SourceStructureID": 5528, + "TargetStructureID": 96227, + "Label": "5528-96227 via Ribbon Synapse from 96231 -> 96232", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96231, + "TargetID": 96232, + "Directional": true + }] + }, { + "ID": 9064, + "SourceStructureID": 5528, + "TargetStructureID": 96234, + "Label": "5528-96234 via Ribbon Synapse from 96233 -> 96235", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96233, + "TargetID": 96235, + "Directional": true + }] + }, { + "ID": 9065, + "SourceStructureID": 5528, + "TargetStructureID": 96236, + "Label": "5528-96236 via Ribbon Synapse from 96233 -> 96237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96233, + "TargetID": 96237, + "Directional": true + }] + }, { + "ID": 9066, + "SourceStructureID": 5528, + "TargetStructureID": 96238, + "Label": "5528-96238 via Ribbon Synapse from 96231 -> 96239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96231, + "TargetID": 96239, + "Directional": true + }] + }, { + "ID": 9067, + "SourceStructureID": 5528, + "TargetStructureID": 96240, + "Label": "5528-96240 via BC Conventional Synapse from 96241 -> 96242", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96241, + "TargetID": 96242, + "Directional": true + }] + }, { + "ID": 9068, + "SourceStructureID": 5528, + "TargetStructureID": 96252, + "Label": "5528-96252 via BC Conventional Synapse from 96253 -> 96254", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96253, + "TargetID": 96254, + "Directional": true + }] + }, { + "ID": 9069, + "SourceStructureID": 5528, + "TargetStructureID": 96280, + "Label": "5528-96280 via Ribbon Synapse from 8284 -> 96281", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8284, + "TargetID": 96281, + "Directional": true + }] + }, { + "ID": 9070, + "SourceStructureID": 5528, + "TargetStructureID": 96303, + "Label": "5528-96303 via Ribbon Synapse from 8279 -> 96831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8279, + "TargetID": 96831, + "Directional": true + }] + }, { + "ID": 9071, + "SourceStructureID": 5528, + "TargetStructureID": 96304, + "Label": "5528-96304 via Ribbon Synapse from 8279 -> 96828, 8280 -> 96827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8279, + "TargetID": 96828, + "Directional": true + }, { + "SourceID": 8280, + "TargetID": 96827, + "Directional": true + }] + }, { + "ID": 9072, + "SourceStructureID": 5528, + "TargetStructureID": 96832, + "Label": "5528-96832 via Ribbon Synapse from 107105 -> 96833", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107105, + "TargetID": 96833, + "Directional": true + }] + }, { + "ID": 9073, + "SourceStructureID": 5528, + "TargetStructureID": 96834, + "Label": "5528-96834 via Ribbon Synapse from 107105 -> 96836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107105, + "TargetID": 96836, + "Directional": true + }] + }, { + "ID": 9074, + "SourceStructureID": 5528, + "TargetStructureID": 96837, + "Label": "5528-96837 via Ribbon Synapse from 107105 -> 96838", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107105, + "TargetID": 96838, + "Directional": true + }] + }, { + "ID": 9075, + "SourceStructureID": 5528, + "TargetStructureID": 96880, + "Label": "5528-96880 via Ribbon Synapse from 8291 -> 96882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8291, + "TargetID": 96882, + "Directional": true + }] + }, { + "ID": 9076, + "SourceStructureID": 5528, + "TargetStructureID": 96883, + "Label": "5528-96883 via Ribbon Synapse from 8295 -> 96886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8295, + "TargetID": 96886, + "Directional": true + }] + }, { + "ID": 9077, + "SourceStructureID": 5528, + "TargetStructureID": 96884, + "Label": "5528-96884 via Ribbon Synapse from 8295 -> 96885", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8295, + "TargetID": 96885, + "Directional": true + }] + }, { + "ID": 9078, + "SourceStructureID": 5528, + "TargetStructureID": 96891, + "Label": "5528-96891 via Ribbon Synapse from 8292 -> 96892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8292, + "TargetID": 96892, + "Directional": true + }] + }, { + "ID": 9079, + "SourceStructureID": 5528, + "TargetStructureID": 96893, + "Label": "5528-96893 via Ribbon Synapse from 8292 -> 96913, 96894 -> 96896, 96894 -> 96897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8292, + "TargetID": 96913, + "Directional": true + }, { + "SourceID": 96894, + "TargetID": 96896, + "Directional": true + }, { + "SourceID": 96894, + "TargetID": 96897, + "Directional": true + }] + }, { + "ID": 9080, + "SourceStructureID": 5528, + "TargetStructureID": 96898, + "Label": "5528-96898 via BC Conventional Synapse from 96903 -> 96904", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96903, + "TargetID": 96904, + "Directional": true + }] + }, { + "ID": 9081, + "SourceStructureID": 5528, + "TargetStructureID": 96906, + "Label": "5528-96906 via Ribbon Synapse from 96905 -> 96907", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96905, + "TargetID": 96907, + "Directional": true + }] + }, { + "ID": 9082, + "SourceStructureID": 5528, + "TargetStructureID": 96909, + "Label": "5528-96909 via Ribbon Synapse from 8296 -> 96910", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8296, + "TargetID": 96910, + "Directional": true + }] + }, { + "ID": 9083, + "SourceStructureID": 5528, + "TargetStructureID": 96911, + "Label": "5528-96911 via Ribbon Synapse from 8296 -> 96912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8296, + "TargetID": 96912, + "Directional": true + }] + }, { + "ID": 9084, + "SourceStructureID": 5528, + "TargetStructureID": 97244, + "Label": "5528-97244 via Ribbon Synapse from 55047 -> 97251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55047, + "TargetID": 97251, + "Directional": true + }] + }, { + "ID": 9085, + "SourceStructureID": 5528, + "TargetStructureID": 97252, + "Label": "5528-97252 via Ribbon Synapse from 55047 -> 97257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55047, + "TargetID": 97257, + "Directional": true + }] + }, { + "ID": 9086, + "SourceStructureID": 5528, + "TargetStructureID": 97260, + "Label": "5528-97260 via Ribbon Synapse from 55047 -> 97263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55047, + "TargetID": 97263, + "Directional": true + }] + }, { + "ID": 9087, + "SourceStructureID": 5528, + "TargetStructureID": 97272, + "Label": "5528-97272 via Ribbon Synapse from 97270 -> 97277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97270, + "TargetID": 97277, + "Directional": true + }] + }, { + "ID": 9088, + "SourceStructureID": 5528, + "TargetStructureID": 97280, + "Label": "5528-97280 via Ribbon Synapse from 97270 -> 97283", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97270, + "TargetID": 97283, + "Directional": true + }] + }, { + "ID": 9089, + "SourceStructureID": 5528, + "TargetStructureID": 97293, + "Label": "5528-97293 via Ribbon Synapse from 54722 -> 97301", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54722, + "TargetID": 97301, + "Directional": true + }] + }, { + "ID": 9090, + "SourceStructureID": 5530, + "TargetStructureID": 606, + "Label": "5530-606 via Ribbon Synapse from 23844 -> 23840, 23859 -> 44214, 23861 -> 10514, 42097 -> 50902, 42099 -> 50903, 42141 -> 50906, 42145 -> 53541, 44215 -> 10511, 44247 -> 44243, 45233 -> 52543, 50952 -> 50950, 53413 -> 53412, 53506 -> 53507, 53543 -> 53544, 54034 -> 54035, 54043 -> 54044, 54047 -> 10518, 54055 -> 54056, 54106 -> 10521", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23844, + "TargetID": 23840, + "Directional": true + }, { + "SourceID": 23859, + "TargetID": 44214, + "Directional": true + }, { + "SourceID": 23861, + "TargetID": 10514, + "Directional": true + }, { + "SourceID": 42097, + "TargetID": 50902, + "Directional": true + }, { + "SourceID": 42099, + "TargetID": 50903, + "Directional": true + }, { + "SourceID": 42141, + "TargetID": 50906, + "Directional": true + }, { + "SourceID": 42145, + "TargetID": 53541, + "Directional": true + }, { + "SourceID": 44215, + "TargetID": 10511, + "Directional": true + }, { + "SourceID": 44247, + "TargetID": 44243, + "Directional": true + }, { + "SourceID": 45233, + "TargetID": 52543, + "Directional": true + }, { + "SourceID": 50952, + "TargetID": 50950, + "Directional": true + }, { + "SourceID": 53413, + "TargetID": 53412, + "Directional": true + }, { + "SourceID": 53506, + "TargetID": 53507, + "Directional": true + }, { + "SourceID": 53543, + "TargetID": 53544, + "Directional": true + }, { + "SourceID": 54034, + "TargetID": 54035, + "Directional": true + }, { + "SourceID": 54043, + "TargetID": 54044, + "Directional": true + }, { + "SourceID": 54047, + "TargetID": 10518, + "Directional": true + }, { + "SourceID": 54055, + "TargetID": 54056, + "Directional": true + }, { + "SourceID": 54106, + "TargetID": 10521, + "Directional": true + }] + }, { + "ID": 9091, + "SourceStructureID": 5530, + "TargetStructureID": 5435, + "Label": "5530-5435 via Ribbon Synapse from 52537 -> 82419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52537, + "TargetID": 82419, + "Directional": true + }] + }, { + "ID": 9092, + "SourceStructureID": 5530, + "TargetStructureID": 5451, + "Label": "5530-5451 via BC Conventional Synapse from 81114 -> 81116", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81114, + "TargetID": 81116, + "Directional": true + }] + }, { + "ID": 9093, + "SourceStructureID": 5530, + "TargetStructureID": 5451, + "Label": "5530-5451 via Ribbon Synapse from 55199 -> 55196", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55199, + "TargetID": 55196, + "Directional": true + }] + }, { + "ID": 9094, + "SourceStructureID": 5530, + "TargetStructureID": 7594, + "Label": "5530-7594 via Ribbon Synapse from 17906 -> 17907", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17906, + "TargetID": 17907, + "Directional": true + }] + }, { + "ID": 9095, + "SourceStructureID": 5530, + "TargetStructureID": 9769, + "Label": "5530-9769 via Ribbon Synapse from 29867 -> 29859, 30119 -> 30113, 39712 -> 126459, 45218 -> 45217, 45314 -> 45315, 74220 -> 74221, 74676 -> 74876, 80481 -> 80482", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29867, + "TargetID": 29859, + "Directional": true + }, { + "SourceID": 30119, + "TargetID": 30113, + "Directional": true + }, { + "SourceID": 39712, + "TargetID": 126459, + "Directional": true + }, { + "SourceID": 45218, + "TargetID": 45217, + "Directional": true + }, { + "SourceID": 45314, + "TargetID": 45315, + "Directional": true + }, { + "SourceID": 74220, + "TargetID": 74221, + "Directional": true + }, { + "SourceID": 74676, + "TargetID": 74876, + "Directional": true + }, { + "SourceID": 80481, + "TargetID": 80482, + "Directional": true + }] + }, { + "ID": 9096, + "SourceStructureID": 5530, + "TargetStructureID": 12564, + "Label": "5530-12564 via Ribbon Synapse from 77345 -> 77346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77345, + "TargetID": 77346, + "Directional": true + }] + }, { + "ID": 9097, + "SourceStructureID": 5530, + "TargetStructureID": 18693, + "Label": "5530-18693 via Ribbon Synapse from 77650 -> 77651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77650, + "TargetID": 77651, + "Directional": true + }] + }, { + "ID": 9098, + "SourceStructureID": 5530, + "TargetStructureID": 23512, + "Label": "5530-23512 via Ribbon Synapse from 23842 -> 23843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23842, + "TargetID": 23843, + "Directional": true + }] + }, { + "ID": 9099, + "SourceStructureID": 5530, + "TargetStructureID": 25293, + "Label": "5530-25293 via Ribbon Synapse from 23859 -> 25299", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23859, + "TargetID": 25299, + "Directional": true + }] + }, { + "ID": 9100, + "SourceStructureID": 5530, + "TargetStructureID": 35152, + "Label": "5530-35152 via Ribbon Synapse from 35163 -> 35162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35163, + "TargetID": 35162, + "Directional": true + }] + }, { + "ID": 9101, + "SourceStructureID": 5530, + "TargetStructureID": 35288, + "Label": "5530-35288 via Ribbon Synapse from 35304 -> 35303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35304, + "TargetID": 35303, + "Directional": true + }] + }, { + "ID": 9102, + "SourceStructureID": 5530, + "TargetStructureID": 35539, + "Label": "5530-35539 via Ribbon Synapse from 17906 -> 35543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17906, + "TargetID": 35543, + "Directional": true + }] + }, { + "ID": 9103, + "SourceStructureID": 5530, + "TargetStructureID": 35653, + "Label": "5530-35653 via Ribbon Synapse from 75534 -> 75535", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75534, + "TargetID": 75535, + "Directional": true + }] + }, { + "ID": 9104, + "SourceStructureID": 5530, + "TargetStructureID": 39696, + "Label": "5530-39696 via Ribbon Synapse from 39715 -> 39711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39715, + "TargetID": 39711, + "Directional": true + }] + }, { + "ID": 9105, + "SourceStructureID": 5530, + "TargetStructureID": 45220, + "Label": "5530-45220 via Ribbon Synapse from 45233 -> 45232, 54034 -> 55182, 54063 -> 81574, 55178 -> 55180, 55205 -> 55206, 81226 -> 45224, 81243 -> 81246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45233, + "TargetID": 45232, + "Directional": true + }, { + "SourceID": 54034, + "TargetID": 55182, + "Directional": true + }, { + "SourceID": 54063, + "TargetID": 81574, + "Directional": true + }, { + "SourceID": 55178, + "TargetID": 55180, + "Directional": true + }, { + "SourceID": 55205, + "TargetID": 55206, + "Directional": true + }, { + "SourceID": 81226, + "TargetID": 45224, + "Directional": true + }, { + "SourceID": 81243, + "TargetID": 81246, + "Directional": true + }] + }, { + "ID": 9106, + "SourceStructureID": 5530, + "TargetStructureID": 54925, + "Label": "5530-54925 via Ribbon Synapse from 54047 -> 54946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54047, + "TargetID": 54946, + "Directional": true + }] + }, { + "ID": 9107, + "SourceStructureID": 5530, + "TargetStructureID": 70566, + "Label": "5530-70566 via Ribbon Synapse from 80306 -> 80308", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80306, + "TargetID": 80308, + "Directional": true + }] + }, { + "ID": 9108, + "SourceStructureID": 5530, + "TargetStructureID": 71882, + "Label": "5530-71882 via Ribbon Synapse from 75909 -> 90451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75909, + "TargetID": 90451, + "Directional": true + }] + }, { + "ID": 9109, + "SourceStructureID": 5530, + "TargetStructureID": 74049, + "Label": "5530-74049 via Cistern Pre from 37805 -> 74050", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 37805, + "TargetID": 74050, + "Directional": true + }] + }, { + "ID": 9110, + "SourceStructureID": 5530, + "TargetStructureID": 74056, + "Label": "5530-74056 via BC Conventional Synapse from 74055 -> 74057", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74055, + "TargetID": 74057, + "Directional": true + }] + }, { + "ID": 9111, + "SourceStructureID": 5530, + "TargetStructureID": 74222, + "Label": "5530-74222 via Ribbon Synapse from 74220 -> 74223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74220, + "TargetID": 74223, + "Directional": true + }] + }, { + "ID": 9112, + "SourceStructureID": 5530, + "TargetStructureID": 74909, + "Label": "5530-74909 via Ribbon Synapse from 74676 -> 74910", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74676, + "TargetID": 74910, + "Directional": true + }] + }, { + "ID": 9113, + "SourceStructureID": 5530, + "TargetStructureID": 74911, + "Label": "5530-74911 via Ribbon Synapse from 45218 -> 74912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45218, + "TargetID": 74912, + "Directional": true + }] + }, { + "ID": 9114, + "SourceStructureID": 5530, + "TargetStructureID": 74978, + "Label": "5530-74978 via Adherens from 74980 -> 74982", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 74980, + "TargetID": 74982, + "Directional": true + }] + }, { + "ID": 9115, + "SourceStructureID": 5530, + "TargetStructureID": 74978, + "Label": "5530-74978 via Ribbon Synapse from 74989 -> 74988", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74989, + "TargetID": 74988, + "Directional": true + }] + }, { + "ID": 9116, + "SourceStructureID": 5530, + "TargetStructureID": 75395, + "Label": "5530-75395 via Ribbon Synapse from 75398 -> 75399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75398, + "TargetID": 75399, + "Directional": true + }] + }, { + "ID": 9117, + "SourceStructureID": 5530, + "TargetStructureID": 75400, + "Label": "5530-75400 via Ribbon Synapse from 75398 -> 75403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75398, + "TargetID": 75403, + "Directional": true + }] + }, { + "ID": 9118, + "SourceStructureID": 5530, + "TargetStructureID": 75404, + "Label": "5530-75404 via Ribbon Synapse from 75406 -> 75407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75406, + "TargetID": 75407, + "Directional": true + }] + }, { + "ID": 9119, + "SourceStructureID": 5530, + "TargetStructureID": 75488, + "Label": "5530-75488 via Ribbon Synapse from 75492 -> 75494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75492, + "TargetID": 75494, + "Directional": true + }] + }, { + "ID": 9120, + "SourceStructureID": 5530, + "TargetStructureID": 75491, + "Label": "5530-75491 via Ribbon Synapse from 75492 -> 75493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75492, + "TargetID": 75493, + "Directional": true + }] + }, { + "ID": 9121, + "SourceStructureID": 5530, + "TargetStructureID": 75517, + "Label": "5530-75517 via Ribbon Synapse from 53414 -> 75518, 75534 -> 75536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53414, + "TargetID": 75518, + "Directional": true + }, { + "SourceID": 75534, + "TargetID": 75536, + "Directional": true + }] + }, { + "ID": 9122, + "SourceStructureID": 5530, + "TargetStructureID": 75519, + "Label": "5530-75519 via Ribbon Synapse from 53414 -> 75520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53414, + "TargetID": 75520, + "Directional": true + }] + }, { + "ID": 9123, + "SourceStructureID": 5530, + "TargetStructureID": 75521, + "Label": "5530-75521 via Ribbon Synapse from 53413 -> 75523", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53413, + "TargetID": 75523, + "Directional": true + }] + }, { + "ID": 9124, + "SourceStructureID": 5530, + "TargetStructureID": 75780, + "Label": "5530-75780 via Ribbon Synapse from 75779 -> 75781, 75786 -> 75787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75779, + "TargetID": 75781, + "Directional": true + }, { + "SourceID": 75786, + "TargetID": 75787, + "Directional": true + }] + }, { + "ID": 9125, + "SourceStructureID": 5530, + "TargetStructureID": 75782, + "Label": "5530-75782 via Ribbon Synapse from 75779 -> 75785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75779, + "TargetID": 75785, + "Directional": true + }] + }, { + "ID": 9126, + "SourceStructureID": 5530, + "TargetStructureID": 75795, + "Label": "5530-75795 via Ribbon Synapse from 75800 -> 75803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75800, + "TargetID": 75803, + "Directional": true + }] + }, { + "ID": 9127, + "SourceStructureID": 5530, + "TargetStructureID": 75796, + "Label": "5530-75796 via Ribbon Synapse from 75797 -> 75798, 75800 -> 75802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75797, + "TargetID": 75798, + "Directional": true + }, { + "SourceID": 75800, + "TargetID": 75802, + "Directional": true + }] + }, { + "ID": 9128, + "SourceStructureID": 5530, + "TargetStructureID": 75890, + "Label": "5530-75890 via Ribbon Synapse from 75889 -> 75891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75889, + "TargetID": 75891, + "Directional": true + }] + }, { + "ID": 9129, + "SourceStructureID": 5530, + "TargetStructureID": 75898, + "Label": "5530-75898 via Ribbon Synapse from 75897 -> 75899", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75897, + "TargetID": 75899, + "Directional": true + }] + }, { + "ID": 9130, + "SourceStructureID": 5530, + "TargetStructureID": 75911, + "Label": "5530-75911 via Ribbon Synapse from 75909 -> 75914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75909, + "TargetID": 75914, + "Directional": true + }] + }, { + "ID": 9131, + "SourceStructureID": 5530, + "TargetStructureID": 76483, + "Label": "5530-76483 via Ribbon Synapse from 76486 -> 76487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76486, + "TargetID": 76487, + "Directional": true + }] + }, { + "ID": 9132, + "SourceStructureID": 5530, + "TargetStructureID": 76489, + "Label": "5530-76489 via Ribbon Synapse from 76486 -> 76491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76486, + "TargetID": 76491, + "Directional": true + }] + }, { + "ID": 9133, + "SourceStructureID": 5530, + "TargetStructureID": 76492, + "Label": "5530-76492 via Ribbon Synapse from 35304 -> 76493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35304, + "TargetID": 76493, + "Directional": true + }] + }, { + "ID": 9134, + "SourceStructureID": 5530, + "TargetStructureID": 76764, + "Label": "5530-76764 via Ribbon Synapse from 76763 -> 76765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76763, + "TargetID": 76765, + "Directional": true + }] + }, { + "ID": 9135, + "SourceStructureID": 5530, + "TargetStructureID": 76770, + "Label": "5530-76770 via Ribbon Synapse from 76769 -> 76772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76769, + "TargetID": 76772, + "Directional": true + }] + }, { + "ID": 9136, + "SourceStructureID": 5530, + "TargetStructureID": 76771, + "Label": "5530-76771 via Ribbon Synapse from 76769 -> 76773", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76769, + "TargetID": 76773, + "Directional": true + }] + }, { + "ID": 9137, + "SourceStructureID": 5530, + "TargetStructureID": 77332, + "Label": "5530-77332 via Ribbon Synapse from 82586 -> 82585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82586, + "TargetID": 82585, + "Directional": true + }] + }, { + "ID": 9138, + "SourceStructureID": 5530, + "TargetStructureID": 77342, + "Label": "5530-77342 via Ribbon Synapse from 77345 -> 77349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77345, + "TargetID": 77349, + "Directional": true + }] + }, { + "ID": 9139, + "SourceStructureID": 5530, + "TargetStructureID": 77347, + "Label": "5530-77347 via Ribbon Synapse from 77345 -> 77348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77345, + "TargetID": 77348, + "Directional": true + }] + }, { + "ID": 9140, + "SourceStructureID": 5530, + "TargetStructureID": 77428, + "Label": "5530-77428 via Ribbon Synapse from 44247 -> 77431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44247, + "TargetID": 77431, + "Directional": true + }] + }, { + "ID": 9141, + "SourceStructureID": 5530, + "TargetStructureID": 77632, + "Label": "5530-77632 via Ribbon Synapse from 77631 -> 77634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77631, + "TargetID": 77634, + "Directional": true + }] + }, { + "ID": 9142, + "SourceStructureID": 5530, + "TargetStructureID": 77633, + "Label": "5530-77633 via Ribbon Synapse from 77631 -> 77635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77631, + "TargetID": 77635, + "Directional": true + }] + }, { + "ID": 9143, + "SourceStructureID": 5530, + "TargetStructureID": 77641, + "Label": "5530-77641 via Ribbon Synapse from 77640 -> 77643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77640, + "TargetID": 77643, + "Directional": true + }] + }, { + "ID": 9144, + "SourceStructureID": 5530, + "TargetStructureID": 77642, + "Label": "5530-77642 via Ribbon Synapse from 77640 -> 77644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77640, + "TargetID": 77644, + "Directional": true + }] + }, { + "ID": 9145, + "SourceStructureID": 5530, + "TargetStructureID": 77652, + "Label": "5530-77652 via Ribbon Synapse from 77650 -> 77653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77650, + "TargetID": 77653, + "Directional": true + }] + }, { + "ID": 9146, + "SourceStructureID": 5530, + "TargetStructureID": 77905, + "Label": "5530-77905 via Ribbon Synapse from 17908 -> 82342", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17908, + "TargetID": 82342, + "Directional": true + }] + }, { + "ID": 9147, + "SourceStructureID": 5530, + "TargetStructureID": 77918, + "Label": "5530-77918 via Ribbon Synapse from 77917 -> 77921, 77919 -> 77921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77917, + "TargetID": 77921, + "Directional": true + }, { + "SourceID": 77919, + "TargetID": 77921, + "Directional": true + }] + }, { + "ID": 9148, + "SourceStructureID": 5530, + "TargetStructureID": 79061, + "Label": "5530-79061 via Ribbon Synapse from 50952 -> 79062", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50952, + "TargetID": 79062, + "Directional": true + }] + }, { + "ID": 9149, + "SourceStructureID": 5530, + "TargetStructureID": 79159, + "Label": "5530-79159 via Ribbon Synapse from 42137 -> 80709, 42138 -> 80709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42137, + "TargetID": 80709, + "Directional": true + }, { + "SourceID": 42138, + "TargetID": 80709, + "Directional": true + }] + }, { + "ID": 9150, + "SourceStructureID": 5530, + "TargetStructureID": 79264, + "Label": "5530-79264 via Ribbon Synapse from 126450 -> 79269", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126450, + "TargetID": 79269, + "Directional": true + }] + }, { + "ID": 9151, + "SourceStructureID": 5530, + "TargetStructureID": 79549, + "Label": "5530-79549 via Ribbon Synapse from 42108 -> 79550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42108, + "TargetID": 79550, + "Directional": true + }] + }, { + "ID": 9152, + "SourceStructureID": 5530, + "TargetStructureID": 79551, + "Label": "5530-79551 via Ribbon Synapse from 42107 -> 79552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42107, + "TargetID": 79552, + "Directional": true + }] + }, { + "ID": 9153, + "SourceStructureID": 5530, + "TargetStructureID": 79555, + "Label": "5530-79555 via Ribbon Synapse from 42106 -> 79556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42106, + "TargetID": 79556, + "Directional": true + }] + }, { + "ID": 9154, + "SourceStructureID": 5530, + "TargetStructureID": 80182, + "Label": "5530-80182 via Ribbon Synapse from 42101 -> 80183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42101, + "TargetID": 80183, + "Directional": true + }] + }, { + "ID": 9155, + "SourceStructureID": 5530, + "TargetStructureID": 80190, + "Label": "5530-80190 via Ribbon Synapse from 42104 -> 80195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42104, + "TargetID": 80195, + "Directional": true + }] + }, { + "ID": 9156, + "SourceStructureID": 5530, + "TargetStructureID": 80208, + "Label": "5530-80208 via Ribbon Synapse from 80205 -> 80212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80205, + "TargetID": 80212, + "Directional": true + }] + }, { + "ID": 9157, + "SourceStructureID": 5530, + "TargetStructureID": 80210, + "Label": "5530-80210 via Ribbon Synapse from 80205 -> 80218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80205, + "TargetID": 80218, + "Directional": true + }] + }, { + "ID": 9158, + "SourceStructureID": 5530, + "TargetStructureID": 80228, + "Label": "5530-80228 via Ribbon Synapse from 42110 -> 80231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42110, + "TargetID": 80231, + "Directional": true + }] + }, { + "ID": 9159, + "SourceStructureID": 5530, + "TargetStructureID": 80417, + "Label": "5530-80417 via Ribbon Synapse from 80415 -> 83041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80415, + "TargetID": 83041, + "Directional": true + }] + }, { + "ID": 9160, + "SourceStructureID": 5530, + "TargetStructureID": 80425, + "Label": "5530-80425 via Ribbon Synapse from 80429 -> 80430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80429, + "TargetID": 80430, + "Directional": true + }] + }, { + "ID": 9161, + "SourceStructureID": 5530, + "TargetStructureID": 80433, + "Label": "5530-80433 via Ribbon Synapse from 42117 -> 80435", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42117, + "TargetID": 80435, + "Directional": true + }] + }, { + "ID": 9162, + "SourceStructureID": 5530, + "TargetStructureID": 80436, + "Label": "5530-80436 via Ribbon Synapse from 42117 -> 80437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42117, + "TargetID": 80437, + "Directional": true + }] + }, { + "ID": 9163, + "SourceStructureID": 5530, + "TargetStructureID": 80483, + "Label": "5530-80483 via Ribbon Synapse from 42126 -> 80485", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42126, + "TargetID": 80485, + "Directional": true + }] + }, { + "ID": 9164, + "SourceStructureID": 5530, + "TargetStructureID": 80484, + "Label": "5530-80484 via Ribbon Synapse from 42126 -> 80486", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42126, + "TargetID": 80486, + "Directional": true + }] + }, { + "ID": 9165, + "SourceStructureID": 5530, + "TargetStructureID": 80495, + "Label": "5530-80495 via Ribbon Synapse from 42127 -> 80497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42127, + "TargetID": 80497, + "Directional": true + }] + }, { + "ID": 9166, + "SourceStructureID": 5530, + "TargetStructureID": 80498, + "Label": "5530-80498 via Ribbon Synapse from 30119 -> 80499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30119, + "TargetID": 80499, + "Directional": true + }] + }, { + "ID": 9167, + "SourceStructureID": 5530, + "TargetStructureID": 80501, + "Label": "5530-80501 via Ribbon Synapse from 80500 -> 80502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80500, + "TargetID": 80502, + "Directional": true + }] + }, { + "ID": 9168, + "SourceStructureID": 5530, + "TargetStructureID": 80568, + "Label": "5530-80568 via Ribbon Synapse from 39713 -> 80571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39713, + "TargetID": 80571, + "Directional": true + }] + }, { + "ID": 9169, + "SourceStructureID": 5530, + "TargetStructureID": 80569, + "Label": "5530-80569 via Ribbon Synapse from 39713 -> 80570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39713, + "TargetID": 80570, + "Directional": true + }] + }, { + "ID": 9170, + "SourceStructureID": 5530, + "TargetStructureID": 80592, + "Label": "5530-80592 via Ribbon Synapse from 39715 -> 80593", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39715, + "TargetID": 80593, + "Directional": true + }] + }, { + "ID": 9171, + "SourceStructureID": 5530, + "TargetStructureID": 80713, + "Label": "5530-80713 via Ribbon Synapse from 80715 -> 80716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80715, + "TargetID": 80716, + "Directional": true + }] + }, { + "ID": 9172, + "SourceStructureID": 5530, + "TargetStructureID": 80971, + "Label": "5530-80971 via Ribbon Synapse from 42141 -> 80972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42141, + "TargetID": 80972, + "Directional": true + }] + }, { + "ID": 9173, + "SourceStructureID": 5530, + "TargetStructureID": 80980, + "Label": "5530-80980 via Ribbon Synapse from 42139 -> 80982", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42139, + "TargetID": 80982, + "Directional": true + }] + }, { + "ID": 9174, + "SourceStructureID": 5530, + "TargetStructureID": 81003, + "Label": "5530-81003 via Ribbon Synapse from 42145 -> 81006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42145, + "TargetID": 81006, + "Directional": true + }] + }, { + "ID": 9175, + "SourceStructureID": 5530, + "TargetStructureID": 81008, + "Label": "5530-81008 via Ribbon Synapse from 42148 -> 81010", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42148, + "TargetID": 81010, + "Directional": true + }] + }, { + "ID": 9176, + "SourceStructureID": 5530, + "TargetStructureID": 81014, + "Label": "5530-81014 via Ribbon Synapse from 42148 -> 81015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42148, + "TargetID": 81015, + "Directional": true + }] + }, { + "ID": 9177, + "SourceStructureID": 5530, + "TargetStructureID": 81123, + "Label": "5530-81123 via Ribbon Synapse from 55178 -> 81126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55178, + "TargetID": 81126, + "Directional": true + }] + }, { + "ID": 9178, + "SourceStructureID": 5530, + "TargetStructureID": 81207, + "Label": "5530-81207 via Ribbon Synapse from 81206 -> 81208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81206, + "TargetID": 81208, + "Directional": true + }] + }, { + "ID": 9179, + "SourceStructureID": 5530, + "TargetStructureID": 81215, + "Label": "5530-81215 via Ribbon Synapse from 55205 -> 81216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55205, + "TargetID": 81216, + "Directional": true + }] + }, { + "ID": 9180, + "SourceStructureID": 5530, + "TargetStructureID": 81244, + "Label": "5530-81244 via Ribbon Synapse from 81243 -> 81247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81243, + "TargetID": 81247, + "Directional": true + }] + }, { + "ID": 9181, + "SourceStructureID": 5530, + "TargetStructureID": 81250, + "Label": "5530-81250 via Ribbon Synapse from 81248 -> 81251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81248, + "TargetID": 81251, + "Directional": true + }] + }, { + "ID": 9182, + "SourceStructureID": 5530, + "TargetStructureID": 81566, + "Label": "5530-81566 via Ribbon Synapse from 54063 -> 81575", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54063, + "TargetID": 81575, + "Directional": true + }] + }, { + "ID": 9183, + "SourceStructureID": 5530, + "TargetStructureID": 81637, + "Label": "5530-81637 via Ribbon Synapse from 115794 -> 115795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115794, + "TargetID": 115795, + "Directional": true + }] + }, { + "ID": 9184, + "SourceStructureID": 5530, + "TargetStructureID": 81857, + "Label": "5530-81857 via Ribbon Synapse from 130672 -> 81858", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130672, + "TargetID": 81858, + "Directional": true + }] + }, { + "ID": 9185, + "SourceStructureID": 5530, + "TargetStructureID": 81862, + "Label": "5530-81862 via Ribbon Synapse from 54055 -> 81864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54055, + "TargetID": 81864, + "Directional": true + }] + }, { + "ID": 9186, + "SourceStructureID": 5530, + "TargetStructureID": 82060, + "Label": "5530-82060 via Ribbon Synapse from 82059 -> 82063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82059, + "TargetID": 82063, + "Directional": true + }] + }, { + "ID": 9187, + "SourceStructureID": 5530, + "TargetStructureID": 82061, + "Label": "5530-82061 via Ribbon Synapse from 82059 -> 82062", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82059, + "TargetID": 82062, + "Directional": true + }] + }, { + "ID": 9188, + "SourceStructureID": 5530, + "TargetStructureID": 83051, + "Label": "5530-83051 via Ribbon Synapse from 75484 -> 83052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75484, + "TargetID": 83052, + "Directional": true + }] + }, { + "ID": 9189, + "SourceStructureID": 5530, + "TargetStructureID": 147696, + "Label": "5530-147696 via Ribbon Synapse from 42148 -> 147729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42148, + "TargetID": 147729, + "Directional": true + }] + }, { + "ID": 9190, + "SourceStructureID": 5531, + "TargetStructureID": 606, + "Label": "5531-606 via Ribbon Synapse from 45213 -> 10517, 53538 -> 53539, 53929 -> 53930, 54136 -> 54137", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45213, + "TargetID": 10517, + "Directional": true + }, { + "SourceID": 53538, + "TargetID": 53539, + "Directional": true + }, { + "SourceID": 53929, + "TargetID": 53930, + "Directional": true + }, { + "SourceID": 54136, + "TargetID": 54137, + "Directional": true + }] + }, { + "ID": 9191, + "SourceStructureID": 5531, + "TargetStructureID": 5118, + "Label": "5531-5118 via BC Conventional Synapse from 120313 -> 120314", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120313, + "TargetID": 120314, + "Directional": true + }] + }, { + "ID": 9192, + "SourceStructureID": 5531, + "TargetStructureID": 5451, + "Label": "5531-5451 via Ribbon Synapse from 55168 -> 55169", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55168, + "TargetID": 55169, + "Directional": true + }] + }, { + "ID": 9193, + "SourceStructureID": 5531, + "TargetStructureID": 5453, + "Label": "5531-5453 via Ribbon Synapse from 54536 -> 106756, 106649 -> 106650, 113849 -> 113848", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54536, + "TargetID": 106756, + "Directional": true + }, { + "SourceID": 106649, + "TargetID": 106650, + "Directional": true + }, { + "SourceID": 113849, + "TargetID": 113848, + "Directional": true + }] + }, { + "ID": 9194, + "SourceStructureID": 5531, + "TargetStructureID": 5481, + "Label": "5531-5481 via Ribbon Synapse from 62920 -> 62921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62920, + "TargetID": 62921, + "Directional": true + }] + }, { + "ID": 9195, + "SourceStructureID": 5531, + "TargetStructureID": 7274, + "Label": "5531-7274 via BC Conventional Synapse from 113967 -> 41805", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113967, + "TargetID": 41805, + "Directional": true + }] + }, { + "ID": 9196, + "SourceStructureID": 5531, + "TargetStructureID": 7274, + "Label": "5531-7274 via Ribbon Synapse from 113957 -> 41808", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113957, + "TargetID": 41808, + "Directional": true + }] + }, { + "ID": 9197, + "SourceStructureID": 5531, + "TargetStructureID": 8575, + "Label": "5531-8575 via BC Conventional Synapse from 147401 -> 147400", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147401, + "TargetID": 147400, + "Directional": true + }] + }, { + "ID": 9198, + "SourceStructureID": 5531, + "TargetStructureID": 8575, + "Label": "5531-8575 via Ribbon Synapse from 113846 -> 62359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113846, + "TargetID": 62359, + "Directional": true + }] + }, { + "ID": 9199, + "SourceStructureID": 5531, + "TargetStructureID": 15796, + "Label": "5531-15796 via BC Conventional Synapse from 125992 -> 92624", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125992, + "TargetID": 92624, + "Directional": true + }] + }, { + "ID": 9200, + "SourceStructureID": 5531, + "TargetStructureID": 15796, + "Label": "5531-15796 via Ribbon Synapse from 125914 -> 107168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125914, + "TargetID": 107168, + "Directional": true + }] + }, { + "ID": 9201, + "SourceStructureID": 5531, + "TargetStructureID": 43874, + "Label": "5531-43874 via Ribbon Synapse from 54547 -> 106741, 106746 -> 106741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54547, + "TargetID": 106741, + "Directional": true + }, { + "SourceID": 106746, + "TargetID": 106741, + "Directional": true + }] + }, { + "ID": 9202, + "SourceStructureID": 5531, + "TargetStructureID": 44346, + "Label": "5531-44346 via Ribbon Synapse from 114744 -> 44818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114744, + "TargetID": 44818, + "Directional": true + }] + }, { + "ID": 9203, + "SourceStructureID": 5531, + "TargetStructureID": 54913, + "Label": "5531-54913 via Ribbon Synapse from 54917 -> 54916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54917, + "TargetID": 54916, + "Directional": true + }] + }, { + "ID": 9204, + "SourceStructureID": 5531, + "TargetStructureID": 79256, + "Label": "5531-79256 via Ribbon Synapse from 112456 -> 112457", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112456, + "TargetID": 112457, + "Directional": true + }] + }, { + "ID": 9205, + "SourceStructureID": 5531, + "TargetStructureID": 81618, + "Label": "5531-81618 via BC Conventional Synapse from 105215 -> 105214", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105215, + "TargetID": 105214, + "Directional": true + }] + }, { + "ID": 9206, + "SourceStructureID": 5531, + "TargetStructureID": 82070, + "Label": "5531-82070 via Ribbon Synapse from 40520 -> 82508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40520, + "TargetID": 82508, + "Directional": true + }] + }, { + "ID": 9207, + "SourceStructureID": 5531, + "TargetStructureID": 82071, + "Label": "5531-82071 via Ribbon Synapse from 82501 -> 82502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82501, + "TargetID": 82502, + "Directional": true + }] + }, { + "ID": 9208, + "SourceStructureID": 5531, + "TargetStructureID": 82569, + "Label": "5531-82569 via Ribbon Synapse from 82568 -> 82570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82568, + "TargetID": 82570, + "Directional": true + }] + }, { + "ID": 9209, + "SourceStructureID": 5531, + "TargetStructureID": 82832, + "Label": "5531-82832 via Ribbon Synapse from 107190 -> 107191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107190, + "TargetID": 107191, + "Directional": true + }] + }, { + "ID": 9210, + "SourceStructureID": 5531, + "TargetStructureID": 82897, + "Label": "5531-82897 via Ribbon Synapse from 110684 -> 110685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110684, + "TargetID": 110685, + "Directional": true + }] + }, { + "ID": 9211, + "SourceStructureID": 5531, + "TargetStructureID": 88260, + "Label": "5531-88260 via Ribbon Synapse from 88272 -> 88269", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88272, + "TargetID": 88269, + "Directional": true + }] + }, { + "ID": 9212, + "SourceStructureID": 5531, + "TargetStructureID": 93431, + "Label": "5531-93431 via BC Conventional Synapse from 147455 -> 147454", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147455, + "TargetID": 147454, + "Directional": true + }] + }, { + "ID": 9213, + "SourceStructureID": 5531, + "TargetStructureID": 95195, + "Label": "5531-95195 via Ribbon Synapse from 147423 -> 147424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147423, + "TargetID": 147424, + "Directional": true + }] + }, { + "ID": 9214, + "SourceStructureID": 5531, + "TargetStructureID": 96266, + "Label": "5531-96266 via Ribbon Synapse from 96839 -> 107106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96839, + "TargetID": 107106, + "Directional": true + }] + }, { + "ID": 9215, + "SourceStructureID": 5531, + "TargetStructureID": 96832, + "Label": "5531-96832 via Ribbon Synapse from 96839 -> 96833", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96839, + "TargetID": 96833, + "Directional": true + }] + }, { + "ID": 9216, + "SourceStructureID": 5531, + "TargetStructureID": 96837, + "Label": "5531-96837 via Ribbon Synapse from 96839 -> 96838", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96839, + "TargetID": 96838, + "Directional": true + }] + }, { + "ID": 9217, + "SourceStructureID": 5531, + "TargetStructureID": 96872, + "Label": "5531-96872 via Ribbon Synapse from 106513 -> 107173", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106513, + "TargetID": 107173, + "Directional": true + }] + }, { + "ID": 9218, + "SourceStructureID": 5531, + "TargetStructureID": 96891, + "Label": "5531-96891 via Ribbon Synapse from 125914 -> 107169", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125914, + "TargetID": 107169, + "Directional": true + }] + }, { + "ID": 9219, + "SourceStructureID": 5531, + "TargetStructureID": 96893, + "Label": "5531-96893 via Ribbon Synapse from 106526 -> 107167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106526, + "TargetID": 107167, + "Directional": true + }] + }, { + "ID": 9220, + "SourceStructureID": 5531, + "TargetStructureID": 105210, + "Label": "5531-105210 via Ribbon Synapse from 82568 -> 105211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82568, + "TargetID": 105211, + "Directional": true + }] + }, { + "ID": 9221, + "SourceStructureID": 5531, + "TargetStructureID": 105222, + "Label": "5531-105222 via Ribbon Synapse from 40549 -> 105225", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40549, + "TargetID": 105225, + "Directional": true + }] + }, { + "ID": 9222, + "SourceStructureID": 5531, + "TargetStructureID": 105223, + "Label": "5531-105223 via Ribbon Synapse from 40549 -> 105224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40549, + "TargetID": 105224, + "Directional": true + }] + }, { + "ID": 9223, + "SourceStructureID": 5531, + "TargetStructureID": 105226, + "Label": "5531-105226 via Ribbon Synapse from 40550 -> 105227", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40550, + "TargetID": 105227, + "Directional": true + }] + }, { + "ID": 9224, + "SourceStructureID": 5531, + "TargetStructureID": 105232, + "Label": "5531-105232 via Ribbon Synapse from 40538 -> 105233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40538, + "TargetID": 105233, + "Directional": true + }] + }, { + "ID": 9225, + "SourceStructureID": 5531, + "TargetStructureID": 105234, + "Label": "5531-105234 via BC Conventional Synapse from 105235 -> 105236", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105235, + "TargetID": 105236, + "Directional": true + }] + }, { + "ID": 9226, + "SourceStructureID": 5531, + "TargetStructureID": 105239, + "Label": "5531-105239 via Ribbon Synapse from 105238 -> 105240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105238, + "TargetID": 105240, + "Directional": true + }] + }, { + "ID": 9227, + "SourceStructureID": 5531, + "TargetStructureID": 105241, + "Label": "5531-105241 via BC Conventional Synapse from 105242 -> 105244", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105242, + "TargetID": 105244, + "Directional": true + }] + }, { + "ID": 9228, + "SourceStructureID": 5531, + "TargetStructureID": 105241, + "Label": "5531-105241 via Ribbon Synapse from 40522 -> 147432", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40522, + "TargetID": 147432, + "Directional": true + }] + }, { + "ID": 9229, + "SourceStructureID": 5531, + "TargetStructureID": 105255, + "Label": "5531-105255 via Ribbon Synapse from 105256 -> 105257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105256, + "TargetID": 105257, + "Directional": true + }] + }, { + "ID": 9230, + "SourceStructureID": 5531, + "TargetStructureID": 105262, + "Label": "5531-105262 via Ribbon Synapse from 105263 -> 105264", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105263, + "TargetID": 105264, + "Directional": true + }] + }, { + "ID": 9231, + "SourceStructureID": 5531, + "TargetStructureID": 105265, + "Label": "5531-105265 via Ribbon Synapse from 105267 -> 105290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105267, + "TargetID": 105290, + "Directional": true + }] + }, { + "ID": 9232, + "SourceStructureID": 5531, + "TargetStructureID": 105269, + "Label": "5531-105269 via Ribbon Synapse from 105268 -> 105272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105268, + "TargetID": 105272, + "Directional": true + }] + }, { + "ID": 9233, + "SourceStructureID": 5531, + "TargetStructureID": 105273, + "Label": "5531-105273 via Ribbon Synapse from 105268 -> 105274", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105268, + "TargetID": 105274, + "Directional": true + }] + }, { + "ID": 9234, + "SourceStructureID": 5531, + "TargetStructureID": 105285, + "Label": "5531-105285 via Ribbon Synapse from 105286 -> 105289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105286, + "TargetID": 105289, + "Directional": true + }] + }, { + "ID": 9235, + "SourceStructureID": 5531, + "TargetStructureID": 105287, + "Label": "5531-105287 via Ribbon Synapse from 105286 -> 105288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105286, + "TargetID": 105288, + "Directional": true + }] + }, { + "ID": 9236, + "SourceStructureID": 5531, + "TargetStructureID": 105311, + "Label": "5531-105311 via Ribbon Synapse from 105310 -> 105312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105310, + "TargetID": 105312, + "Directional": true + }] + }, { + "ID": 9237, + "SourceStructureID": 5531, + "TargetStructureID": 105313, + "Label": "5531-105313 via Ribbon Synapse from 106200 -> 106201", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106200, + "TargetID": 106201, + "Directional": true + }] + }, { + "ID": 9238, + "SourceStructureID": 5531, + "TargetStructureID": 105324, + "Label": "5531-105324 via Ribbon Synapse from 62923 -> 105330", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62923, + "TargetID": 105330, + "Directional": true + }] + }, { + "ID": 9239, + "SourceStructureID": 5531, + "TargetStructureID": 105325, + "Label": "5531-105325 via Ribbon Synapse from 62923 -> 105327", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62923, + "TargetID": 105327, + "Directional": true + }] + }, { + "ID": 9240, + "SourceStructureID": 5531, + "TargetStructureID": 105331, + "Label": "5531-105331 via BC Conventional Synapse from 105336 -> 105334", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105336, + "TargetID": 105334, + "Directional": true + }] + }, { + "ID": 9241, + "SourceStructureID": 5531, + "TargetStructureID": 105360, + "Label": "5531-105360 via Ribbon Synapse from 105361 -> 105362", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105361, + "TargetID": 105362, + "Directional": true + }] + }, { + "ID": 9242, + "SourceStructureID": 5531, + "TargetStructureID": 106141, + "Label": "5531-106141 via Ribbon Synapse from 62929 -> 106142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62929, + "TargetID": 106142, + "Directional": true + }] + }, { + "ID": 9243, + "SourceStructureID": 5531, + "TargetStructureID": 106151, + "Label": "5531-106151 via Ribbon Synapse from 62932 -> 106152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62932, + "TargetID": 106152, + "Directional": true + }] + }, { + "ID": 9244, + "SourceStructureID": 5531, + "TargetStructureID": 106156, + "Label": "5531-106156 via Ribbon Synapse from 82501 -> 106157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82501, + "TargetID": 106157, + "Directional": true + }] + }, { + "ID": 9245, + "SourceStructureID": 5531, + "TargetStructureID": 106164, + "Label": "5531-106164 via Ribbon Synapse from 62925 -> 106167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62925, + "TargetID": 106167, + "Directional": true + }] + }, { + "ID": 9246, + "SourceStructureID": 5531, + "TargetStructureID": 106165, + "Label": "5531-106165 via Ribbon Synapse from 62925 -> 106166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62925, + "TargetID": 106166, + "Directional": true + }] + }, { + "ID": 9247, + "SourceStructureID": 5531, + "TargetStructureID": 106168, + "Label": "5531-106168 via Ribbon Synapse from 62926 -> 106169, 62926 -> 136320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62926, + "TargetID": 106169, + "Directional": true + }, { + "SourceID": 62926, + "TargetID": 136320, + "Directional": true + }] + }, { + "ID": 9248, + "SourceStructureID": 5531, + "TargetStructureID": 106175, + "Label": "5531-106175 via Ribbon Synapse from 62928 -> 106176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62928, + "TargetID": 106176, + "Directional": true + }] + }, { + "ID": 9249, + "SourceStructureID": 5531, + "TargetStructureID": 106177, + "Label": "5531-106177 via Ribbon Synapse from 62928 -> 106178", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62928, + "TargetID": 106178, + "Directional": true + }] + }, { + "ID": 9250, + "SourceStructureID": 5531, + "TargetStructureID": 106179, + "Label": "5531-106179 via Ribbon Synapse from 62928 -> 106180", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62928, + "TargetID": 106180, + "Directional": true + }] + }, { + "ID": 9251, + "SourceStructureID": 5531, + "TargetStructureID": 106189, + "Label": "5531-106189 via Ribbon Synapse from 40515 -> 106190", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40515, + "TargetID": 106190, + "Directional": true + }] + }, { + "ID": 9252, + "SourceStructureID": 5531, + "TargetStructureID": 106197, + "Label": "5531-106197 via Ribbon Synapse from 106198 -> 106199", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106198, + "TargetID": 106199, + "Directional": true + }] + }, { + "ID": 9253, + "SourceStructureID": 5531, + "TargetStructureID": 106204, + "Label": "5531-106204 via Ribbon Synapse from 40511 -> 106205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40511, + "TargetID": 106205, + "Directional": true + }] + }, { + "ID": 9254, + "SourceStructureID": 5531, + "TargetStructureID": 106206, + "Label": "5531-106206 via Ribbon Synapse from 40511 -> 106207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40511, + "TargetID": 106207, + "Directional": true + }] + }, { + "ID": 9255, + "SourceStructureID": 5531, + "TargetStructureID": 106211, + "Label": "5531-106211 via Ribbon Synapse from 40512 -> 106212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40512, + "TargetID": 106212, + "Directional": true + }] + }, { + "ID": 9256, + "SourceStructureID": 5531, + "TargetStructureID": 106213, + "Label": "5531-106213 via Ribbon Synapse from 40512 -> 106214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40512, + "TargetID": 106214, + "Directional": true + }] + }, { + "ID": 9257, + "SourceStructureID": 5531, + "TargetStructureID": 106221, + "Label": "5531-106221 via Ribbon Synapse from 40510 -> 106223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40510, + "TargetID": 106223, + "Directional": true + }] + }, { + "ID": 9258, + "SourceStructureID": 5531, + "TargetStructureID": 106224, + "Label": "5531-106224 via Ribbon Synapse from 40510 -> 106226", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40510, + "TargetID": 106226, + "Directional": true + }] + }, { + "ID": 9259, + "SourceStructureID": 5531, + "TargetStructureID": 106227, + "Label": "5531-106227 via Ribbon Synapse from 40509 -> 106228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40509, + "TargetID": 106228, + "Directional": true + }] + }, { + "ID": 9260, + "SourceStructureID": 5531, + "TargetStructureID": 106230, + "Label": "5531-106230 via BC Conventional Synapse from 120317 -> 120315", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120317, + "TargetID": 120315, + "Directional": true + }] + }, { + "ID": 9261, + "SourceStructureID": 5531, + "TargetStructureID": 106253, + "Label": "5531-106253 via Ribbon Synapse from 40514 -> 106255", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40514, + "TargetID": 106255, + "Directional": true + }] + }, { + "ID": 9262, + "SourceStructureID": 5531, + "TargetStructureID": 106256, + "Label": "5531-106256 via Ribbon Synapse from 106262 -> 106265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106262, + "TargetID": 106265, + "Directional": true + }] + }, { + "ID": 9263, + "SourceStructureID": 5531, + "TargetStructureID": 106263, + "Label": "5531-106263 via Ribbon Synapse from 106262 -> 106264", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106262, + "TargetID": 106264, + "Directional": true + }] + }, { + "ID": 9264, + "SourceStructureID": 5531, + "TargetStructureID": 106484, + "Label": "5531-106484 via BC Conventional Synapse from 91662 -> 107653", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91662, + "TargetID": 107653, + "Directional": true + }] + }, { + "ID": 9265, + "SourceStructureID": 5531, + "TargetStructureID": 106486, + "Label": "5531-106486 via Ribbon Synapse from 106485 -> 106487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106485, + "TargetID": 106487, + "Directional": true + }] + }, { + "ID": 9266, + "SourceStructureID": 5531, + "TargetStructureID": 106493, + "Label": "5531-106493 via Ribbon Synapse from 106488 -> 106494, 106499 -> 107984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106488, + "TargetID": 106494, + "Directional": true + }, { + "SourceID": 106499, + "TargetID": 107984, + "Directional": true + }] + }, { + "ID": 9267, + "SourceStructureID": 5531, + "TargetStructureID": 106495, + "Label": "5531-106495 via Ribbon Synapse from 106488 -> 106496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106488, + "TargetID": 106496, + "Directional": true + }] + }, { + "ID": 9268, + "SourceStructureID": 5531, + "TargetStructureID": 106586, + "Label": "5531-106586 via Ribbon Synapse from 106585 -> 106587", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106585, + "TargetID": 106587, + "Directional": true + }] + }, { + "ID": 9269, + "SourceStructureID": 5531, + "TargetStructureID": 106625, + "Label": "5531-106625 via Ribbon Synapse from 91668 -> 106634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91668, + "TargetID": 106634, + "Directional": true + }] + }, { + "ID": 9270, + "SourceStructureID": 5531, + "TargetStructureID": 106628, + "Label": "5531-106628 via Ribbon Synapse from 91668 -> 106635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91668, + "TargetID": 106635, + "Directional": true + }] + }, { + "ID": 9271, + "SourceStructureID": 5531, + "TargetStructureID": 106637, + "Label": "5531-106637 via Ribbon Synapse from 54587 -> 120206", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54587, + "TargetID": 120206, + "Directional": true + }] + }, { + "ID": 9272, + "SourceStructureID": 5531, + "TargetStructureID": 106651, + "Label": "5531-106651 via Ribbon Synapse from 106648 -> 106652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106648, + "TargetID": 106652, + "Directional": true + }] + }, { + "ID": 9273, + "SourceStructureID": 5531, + "TargetStructureID": 106689, + "Label": "5531-106689 via BC Conventional Synapse from 133890 -> 133889", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133890, + "TargetID": 133889, + "Directional": true + }] + }, { + "ID": 9274, + "SourceStructureID": 5531, + "TargetStructureID": 106689, + "Label": "5531-106689 via Ribbon Synapse from 106748 -> 106749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106748, + "TargetID": 106749, + "Directional": true + }] + }, { + "ID": 9275, + "SourceStructureID": 5531, + "TargetStructureID": 106697, + "Label": "5531-106697 via Ribbon Synapse from 54560 -> 106701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54560, + "TargetID": 106701, + "Directional": true + }] + }, { + "ID": 9276, + "SourceStructureID": 5531, + "TargetStructureID": 106742, + "Label": "5531-106742 via Ribbon Synapse from 106746 -> 106747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106746, + "TargetID": 106747, + "Directional": true + }] + }, { + "ID": 9277, + "SourceStructureID": 5531, + "TargetStructureID": 106757, + "Label": "5531-106757 via Ribbon Synapse from 54536 -> 106758", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54536, + "TargetID": 106758, + "Directional": true + }] + }, { + "ID": 9278, + "SourceStructureID": 5531, + "TargetStructureID": 106762, + "Label": "5531-106762 via Ribbon Synapse from 147402 -> 147403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147402, + "TargetID": 147403, + "Directional": true + }] + }, { + "ID": 9279, + "SourceStructureID": 5531, + "TargetStructureID": 106767, + "Label": "5531-106767 via Ribbon Synapse from 54537 -> 106774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54537, + "TargetID": 106774, + "Directional": true + }] + }, { + "ID": 9280, + "SourceStructureID": 5531, + "TargetStructureID": 106775, + "Label": "5531-106775 via Ribbon Synapse from 54537 -> 106777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54537, + "TargetID": 106777, + "Directional": true + }] + }, { + "ID": 9281, + "SourceStructureID": 5531, + "TargetStructureID": 106778, + "Label": "5531-106778 via Ribbon Synapse from 54535 -> 106789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54535, + "TargetID": 106789, + "Directional": true + }] + }, { + "ID": 9282, + "SourceStructureID": 5531, + "TargetStructureID": 106807, + "Label": "5531-106807 via Ribbon Synapse from 54532 -> 106811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54532, + "TargetID": 106811, + "Directional": true + }] + }, { + "ID": 9283, + "SourceStructureID": 5531, + "TargetStructureID": 106813, + "Label": "5531-106813 via Ribbon Synapse from 53538 -> 106823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53538, + "TargetID": 106823, + "Directional": true + }] + }, { + "ID": 9284, + "SourceStructureID": 5531, + "TargetStructureID": 106826, + "Label": "5531-106826 via Ribbon Synapse from 54531 -> 106830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54531, + "TargetID": 106830, + "Directional": true + }] + }, { + "ID": 9285, + "SourceStructureID": 5531, + "TargetStructureID": 106832, + "Label": "5531-106832 via Ribbon Synapse from 54528 -> 106834", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54528, + "TargetID": 106834, + "Directional": true + }] + }, { + "ID": 9286, + "SourceStructureID": 5531, + "TargetStructureID": 106835, + "Label": "5531-106835 via Ribbon Synapse from 54528 -> 106845", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54528, + "TargetID": 106845, + "Directional": true + }] + }, { + "ID": 9287, + "SourceStructureID": 5531, + "TargetStructureID": 106846, + "Label": "5531-106846 via Ribbon Synapse from 54545 -> 106850", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54545, + "TargetID": 106850, + "Directional": true + }] + }, { + "ID": 9288, + "SourceStructureID": 5531, + "TargetStructureID": 106875, + "Label": "5531-106875 via BC Conventional Synapse from 147438 -> 147437", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147438, + "TargetID": 147437, + "Directional": true + }] + }, { + "ID": 9289, + "SourceStructureID": 5531, + "TargetStructureID": 106887, + "Label": "5531-106887 via Ribbon Synapse from 54569 -> 106888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54569, + "TargetID": 106888, + "Directional": true + }] + }, { + "ID": 9290, + "SourceStructureID": 5531, + "TargetStructureID": 106890, + "Label": "5531-106890 via Ribbon Synapse from 54582 -> 107415", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54582, + "TargetID": 107415, + "Directional": true + }] + }, { + "ID": 9291, + "SourceStructureID": 5531, + "TargetStructureID": 106941, + "Label": "5531-106941 via Ribbon Synapse from 88271 -> 106943", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88271, + "TargetID": 106943, + "Directional": true + }] + }, { + "ID": 9292, + "SourceStructureID": 5531, + "TargetStructureID": 107170, + "Label": "5531-107170 via Ribbon Synapse from 106526 -> 107171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106526, + "TargetID": 107171, + "Directional": true + }] + }, { + "ID": 9293, + "SourceStructureID": 5531, + "TargetStructureID": 107370, + "Label": "5531-107370 via Ribbon Synapse from 107369 -> 107371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107369, + "TargetID": 107371, + "Directional": true + }] + }, { + "ID": 9294, + "SourceStructureID": 5531, + "TargetStructureID": 107372, + "Label": "5531-107372 via Ribbon Synapse from 107369 -> 107373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107369, + "TargetID": 107373, + "Directional": true + }] + }, { + "ID": 9295, + "SourceStructureID": 5531, + "TargetStructureID": 107382, + "Label": "5531-107382 via Ribbon Synapse from 107376 -> 107387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107376, + "TargetID": 107387, + "Directional": true + }] + }, { + "ID": 9296, + "SourceStructureID": 5531, + "TargetStructureID": 107401, + "Label": "5531-107401 via Ribbon Synapse from 54583 -> 107411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54583, + "TargetID": 107411, + "Directional": true + }] + }, { + "ID": 9297, + "SourceStructureID": 5531, + "TargetStructureID": 107408, + "Label": "5531-107408 via Ribbon Synapse from 54583 -> 107410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54583, + "TargetID": 107410, + "Directional": true + }] + }, { + "ID": 9298, + "SourceStructureID": 5531, + "TargetStructureID": 107412, + "Label": "5531-107412 via Ribbon Synapse from 54582 -> 107413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54582, + "TargetID": 107413, + "Directional": true + }] + }, { + "ID": 9299, + "SourceStructureID": 5531, + "TargetStructureID": 107431, + "Label": "5531-107431 via Ribbon Synapse from 91487 -> 107432", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91487, + "TargetID": 107432, + "Directional": true + }] + }, { + "ID": 9300, + "SourceStructureID": 5531, + "TargetStructureID": 107436, + "Label": "5531-107436 via Ribbon Synapse from 91486 -> 107437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91486, + "TargetID": 107437, + "Directional": true + }] + }, { + "ID": 9301, + "SourceStructureID": 5531, + "TargetStructureID": 107442, + "Label": "5531-107442 via BC Conventional Synapse from 91682 -> 107443", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91682, + "TargetID": 107443, + "Directional": true + }] + }, { + "ID": 9302, + "SourceStructureID": 5531, + "TargetStructureID": 107449, + "Label": "5531-107449 via Ribbon Synapse from 107448 -> 107450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107448, + "TargetID": 107450, + "Directional": true + }] + }, { + "ID": 9303, + "SourceStructureID": 5531, + "TargetStructureID": 107460, + "Label": "5531-107460 via Ribbon Synapse from 107452 -> 107464, 107459 -> 107461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107452, + "TargetID": 107464, + "Directional": true + }, { + "SourceID": 107459, + "TargetID": 107461, + "Directional": true + }] + }, { + "ID": 9304, + "SourceStructureID": 5531, + "TargetStructureID": 107468, + "Label": "5531-107468 via Ribbon Synapse from 107459 -> 107469", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107459, + "TargetID": 107469, + "Directional": true + }] + }, { + "ID": 9305, + "SourceStructureID": 5531, + "TargetStructureID": 107483, + "Label": "5531-107483 via Ribbon Synapse from 107515 -> 107518, 107516 -> 107517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107515, + "TargetID": 107518, + "Directional": true + }, { + "SourceID": 107516, + "TargetID": 107517, + "Directional": true + }] + }, { + "ID": 9306, + "SourceStructureID": 5531, + "TargetStructureID": 107502, + "Label": "5531-107502 via Ribbon Synapse from 107499 -> 107503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107499, + "TargetID": 107503, + "Directional": true + }] + }, { + "ID": 9307, + "SourceStructureID": 5531, + "TargetStructureID": 107504, + "Label": "5531-107504 via Ribbon Synapse from 107470 -> 107505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107470, + "TargetID": 107505, + "Directional": true + }] + }, { + "ID": 9308, + "SourceStructureID": 5531, + "TargetStructureID": 107533, + "Label": "5531-107533 via Ribbon Synapse from 107534 -> 107535", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107534, + "TargetID": 107535, + "Directional": true + }] + }, { + "ID": 9309, + "SourceStructureID": 5531, + "TargetStructureID": 107538, + "Label": "5531-107538 via Ribbon Synapse from 107496 -> 107539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107496, + "TargetID": 107539, + "Directional": true + }] + }, { + "ID": 9310, + "SourceStructureID": 5531, + "TargetStructureID": 107551, + "Label": "5531-107551 via Ribbon Synapse from 107550 -> 107552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107550, + "TargetID": 107552, + "Directional": true + }] + }, { + "ID": 9311, + "SourceStructureID": 5531, + "TargetStructureID": 107553, + "Label": "5531-107553 via Ribbon Synapse from 107550 -> 107554, 107563 -> 107564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107550, + "TargetID": 107554, + "Directional": true + }, { + "SourceID": 107563, + "TargetID": 107564, + "Directional": true + }] + }, { + "ID": 9312, + "SourceStructureID": 5531, + "TargetStructureID": 107557, + "Label": "5531-107557 via Ribbon Synapse from 107555 -> 107558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107555, + "TargetID": 107558, + "Directional": true + }] + }, { + "ID": 9313, + "SourceStructureID": 5531, + "TargetStructureID": 107559, + "Label": "5531-107559 via Ribbon Synapse from 107555 -> 107566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107555, + "TargetID": 107566, + "Directional": true + }] + }, { + "ID": 9314, + "SourceStructureID": 5531, + "TargetStructureID": 107560, + "Label": "5531-107560 via Ribbon Synapse from 107563 -> 107565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107563, + "TargetID": 107565, + "Directional": true + }] + }, { + "ID": 9315, + "SourceStructureID": 5531, + "TargetStructureID": 107567, + "Label": "5531-107567 via BC Conventional Synapse from 107568 -> 107569", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107568, + "TargetID": 107569, + "Directional": true + }] + }, { + "ID": 9316, + "SourceStructureID": 5531, + "TargetStructureID": 107575, + "Label": "5531-107575 via Ribbon Synapse from 91725 -> 107576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91725, + "TargetID": 107576, + "Directional": true + }] + }, { + "ID": 9317, + "SourceStructureID": 5531, + "TargetStructureID": 107580, + "Label": "5531-107580 via Ribbon Synapse from 107579 -> 107581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107579, + "TargetID": 107581, + "Directional": true + }] + }, { + "ID": 9318, + "SourceStructureID": 5531, + "TargetStructureID": 107635, + "Label": "5531-107635 via Ribbon Synapse from 107634 -> 107636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107634, + "TargetID": 107636, + "Directional": true + }] + }, { + "ID": 9319, + "SourceStructureID": 5531, + "TargetStructureID": 107639, + "Label": "5531-107639 via Ribbon Synapse from 91716 -> 107640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91716, + "TargetID": 107640, + "Directional": true + }] + }, { + "ID": 9320, + "SourceStructureID": 5531, + "TargetStructureID": 107646, + "Label": "5531-107646 via BC Conventional Synapse from 107647 -> 107648", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107647, + "TargetID": 107648, + "Directional": true + }] + }, { + "ID": 9321, + "SourceStructureID": 5531, + "TargetStructureID": 107649, + "Label": "5531-107649 via Ribbon Synapse from 91711 -> 107652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91711, + "TargetID": 107652, + "Directional": true + }] + }, { + "ID": 9322, + "SourceStructureID": 5531, + "TargetStructureID": 107654, + "Label": "5531-107654 via Ribbon Synapse from 107656 -> 107660", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107656, + "TargetID": 107660, + "Directional": true + }] + }, { + "ID": 9323, + "SourceStructureID": 5531, + "TargetStructureID": 107657, + "Label": "5531-107657 via Ribbon Synapse from 107656 -> 107659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107656, + "TargetID": 107659, + "Directional": true + }] + }, { + "ID": 9324, + "SourceStructureID": 5531, + "TargetStructureID": 107665, + "Label": "5531-107665 via Ribbon Synapse from 107664 -> 107666", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107664, + "TargetID": 107666, + "Directional": true + }] + }, { + "ID": 9325, + "SourceStructureID": 5531, + "TargetStructureID": 107667, + "Label": "5531-107667 via BC Conventional Synapse from 107671 -> 107668", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107671, + "TargetID": 107668, + "Directional": true + }] + }, { + "ID": 9326, + "SourceStructureID": 5531, + "TargetStructureID": 107667, + "Label": "5531-107667 via Ribbon Synapse from 107664 -> 107669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107664, + "TargetID": 107669, + "Directional": true + }] + }, { + "ID": 9327, + "SourceStructureID": 5531, + "TargetStructureID": 107680, + "Label": "5531-107680 via Ribbon Synapse from 107681 -> 107682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107681, + "TargetID": 107682, + "Directional": true + }] + }, { + "ID": 9328, + "SourceStructureID": 5531, + "TargetStructureID": 107686, + "Label": "5531-107686 via Ribbon Synapse from 107690 -> 107692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107690, + "TargetID": 107692, + "Directional": true + }] + }, { + "ID": 9329, + "SourceStructureID": 5531, + "TargetStructureID": 107687, + "Label": "5531-107687 via Ribbon Synapse from 107690 -> 107691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107690, + "TargetID": 107691, + "Directional": true + }] + }, { + "ID": 9330, + "SourceStructureID": 5531, + "TargetStructureID": 107699, + "Label": "5531-107699 via Ribbon Synapse from 107698 -> 107700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107698, + "TargetID": 107700, + "Directional": true + }] + }, { + "ID": 9331, + "SourceStructureID": 5531, + "TargetStructureID": 107709, + "Label": "5531-107709 via Ribbon Synapse from 107710 -> 107711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107710, + "TargetID": 107711, + "Directional": true + }] + }, { + "ID": 9332, + "SourceStructureID": 5531, + "TargetStructureID": 107715, + "Label": "5531-107715 via BC Conventional Synapse from 107716 -> 107717", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107716, + "TargetID": 107717, + "Directional": true + }] + }, { + "ID": 9333, + "SourceStructureID": 5531, + "TargetStructureID": 107715, + "Label": "5531-107715 via Ribbon Synapse from 107718 -> 107720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107718, + "TargetID": 107720, + "Directional": true + }] + }, { + "ID": 9334, + "SourceStructureID": 5531, + "TargetStructureID": 107719, + "Label": "5531-107719 via Ribbon Synapse from 107718 -> 107721", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107718, + "TargetID": 107721, + "Directional": true + }] + }, { + "ID": 9335, + "SourceStructureID": 5531, + "TargetStructureID": 107723, + "Label": "5531-107723 via Ribbon Synapse from 107722 -> 107724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107722, + "TargetID": 107724, + "Directional": true + }] + }, { + "ID": 9336, + "SourceStructureID": 5531, + "TargetStructureID": 107725, + "Label": "5531-107725 via Ribbon Synapse from 107722 -> 107726", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107722, + "TargetID": 107726, + "Directional": true + }] + }, { + "ID": 9337, + "SourceStructureID": 5531, + "TargetStructureID": 107727, + "Label": "5531-107727 via Ribbon Synapse from 107730 -> 107731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107730, + "TargetID": 107731, + "Directional": true + }] + }, { + "ID": 9338, + "SourceStructureID": 5531, + "TargetStructureID": 107732, + "Label": "5531-107732 via Ribbon Synapse from 107730 -> 107733, 107734 -> 107735", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107730, + "TargetID": 107733, + "Directional": true + }, { + "SourceID": 107734, + "TargetID": 107735, + "Directional": true + }] + }, { + "ID": 9339, + "SourceStructureID": 5531, + "TargetStructureID": 108061, + "Label": "5531-108061 via BC Conventional Synapse from 108126 -> 108125", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108126, + "TargetID": 108125, + "Directional": true + }] + }, { + "ID": 9340, + "SourceStructureID": 5531, + "TargetStructureID": 110648, + "Label": "5531-110648 via Ribbon Synapse from 147463 -> 147461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147463, + "TargetID": 147461, + "Directional": true + }] + }, { + "ID": 9341, + "SourceStructureID": 5531, + "TargetStructureID": 110666, + "Label": "5531-110666 via Ribbon Synapse from 110665 -> 110667, 147463 -> 147462", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110665, + "TargetID": 110667, + "Directional": true + }, { + "SourceID": 147463, + "TargetID": 147462, + "Directional": true + }] + }, { + "ID": 9342, + "SourceStructureID": 5531, + "TargetStructureID": 110681, + "Label": "5531-110681 via Ribbon Synapse from 110679 -> 110682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110679, + "TargetID": 110682, + "Directional": true + }] + }, { + "ID": 9343, + "SourceStructureID": 5531, + "TargetStructureID": 110686, + "Label": "5531-110686 via Ribbon Synapse from 110684 -> 114823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110684, + "TargetID": 114823, + "Directional": true + }] + }, { + "ID": 9344, + "SourceStructureID": 5531, + "TargetStructureID": 111806, + "Label": "5531-111806 via Ribbon Synapse from 87140 -> 111807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87140, + "TargetID": 111807, + "Directional": true + }] + }, { + "ID": 9345, + "SourceStructureID": 5531, + "TargetStructureID": 111808, + "Label": "5531-111808 via Ribbon Synapse from 56793 -> 111810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56793, + "TargetID": 111810, + "Directional": true + }] + }, { + "ID": 9346, + "SourceStructureID": 5531, + "TargetStructureID": 111812, + "Label": "5531-111812 via Ribbon Synapse from 56794 -> 111815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56794, + "TargetID": 111815, + "Directional": true + }] + }, { + "ID": 9347, + "SourceStructureID": 5531, + "TargetStructureID": 111813, + "Label": "5531-111813 via Ribbon Synapse from 56794 -> 111816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56794, + "TargetID": 111816, + "Directional": true + }] + }, { + "ID": 9348, + "SourceStructureID": 5531, + "TargetStructureID": 111814, + "Label": "5531-111814 via Ribbon Synapse from 111817 -> 111818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111817, + "TargetID": 111818, + "Directional": true + }] + }, { + "ID": 9349, + "SourceStructureID": 5531, + "TargetStructureID": 111821, + "Label": "5531-111821 via Ribbon Synapse from 111820 -> 111822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111820, + "TargetID": 111822, + "Directional": true + }] + }, { + "ID": 9350, + "SourceStructureID": 5531, + "TargetStructureID": 111823, + "Label": "5531-111823 via Ribbon Synapse from 56795 -> 111824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56795, + "TargetID": 111824, + "Directional": true + }] + }, { + "ID": 9351, + "SourceStructureID": 5531, + "TargetStructureID": 111835, + "Label": "5531-111835 via Ribbon Synapse from 111834 -> 111836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111834, + "TargetID": 111836, + "Directional": true + }] + }, { + "ID": 9352, + "SourceStructureID": 5531, + "TargetStructureID": 111838, + "Label": "5531-111838 via Ribbon Synapse from 111837 -> 111839", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111837, + "TargetID": 111839, + "Directional": true + }] + }, { + "ID": 9353, + "SourceStructureID": 5531, + "TargetStructureID": 111842, + "Label": "5531-111842 via Ribbon Synapse from 111846 -> 111847", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111846, + "TargetID": 111847, + "Directional": true + }] + }, { + "ID": 9354, + "SourceStructureID": 5531, + "TargetStructureID": 111852, + "Label": "5531-111852 via Ribbon Synapse from 111851 -> 111853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111851, + "TargetID": 111853, + "Directional": true + }] + }, { + "ID": 9355, + "SourceStructureID": 5531, + "TargetStructureID": 111854, + "Label": "5531-111854 via Ribbon Synapse from 56801 -> 111855", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56801, + "TargetID": 111855, + "Directional": true + }] + }, { + "ID": 9356, + "SourceStructureID": 5531, + "TargetStructureID": 111856, + "Label": "5531-111856 via Ribbon Synapse from 56801 -> 111857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56801, + "TargetID": 111857, + "Directional": true + }] + }, { + "ID": 9357, + "SourceStructureID": 5531, + "TargetStructureID": 112458, + "Label": "5531-112458 via Ribbon Synapse from 112456 -> 112459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112456, + "TargetID": 112459, + "Directional": true + }] + }, { + "ID": 9358, + "SourceStructureID": 5531, + "TargetStructureID": 112465, + "Label": "5531-112465 via BC Conventional Synapse from 112466 -> 112467", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112466, + "TargetID": 112467, + "Directional": true + }] + }, { + "ID": 9359, + "SourceStructureID": 5531, + "TargetStructureID": 112473, + "Label": "5531-112473 via Ribbon Synapse from 112472 -> 114567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112472, + "TargetID": 114567, + "Directional": true + }] + }, { + "ID": 9360, + "SourceStructureID": 5531, + "TargetStructureID": 114540, + "Label": "5531-114540 via Ribbon Synapse from 107190 -> 114541", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107190, + "TargetID": 114541, + "Directional": true + }] + }, { + "ID": 9361, + "SourceStructureID": 5531, + "TargetStructureID": 114556, + "Label": "5531-114556 via Ribbon Synapse from 112472 -> 114557", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112472, + "TargetID": 114557, + "Directional": true + }] + }, { + "ID": 9362, + "SourceStructureID": 5531, + "TargetStructureID": 114558, + "Label": "5531-114558 via Ribbon Synapse from 112472 -> 114559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112472, + "TargetID": 114559, + "Directional": true + }] + }, { + "ID": 9363, + "SourceStructureID": 5531, + "TargetStructureID": 114560, + "Label": "5531-114560 via BC Conventional Synapse from 114562 -> 114563", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114562, + "TargetID": 114563, + "Directional": true + }] + }, { + "ID": 9364, + "SourceStructureID": 5531, + "TargetStructureID": 114564, + "Label": "5531-114564 via BC Conventional Synapse from 114579 -> 114580", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114579, + "TargetID": 114580, + "Directional": true + }] + }, { + "ID": 9365, + "SourceStructureID": 5531, + "TargetStructureID": 114568, + "Label": "5531-114568 via BC Conventional Synapse from 127296 -> 127297", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127296, + "TargetID": 127297, + "Directional": true + }] + }, { + "ID": 9366, + "SourceStructureID": 5531, + "TargetStructureID": 114573, + "Label": "5531-114573 via Ribbon Synapse from 114574 -> 114575", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114574, + "TargetID": 114575, + "Directional": true + }] + }, { + "ID": 9367, + "SourceStructureID": 5531, + "TargetStructureID": 114695, + "Label": "5531-114695 via BC Conventional Synapse from 114696 -> 114697", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114696, + "TargetID": 114697, + "Directional": true + }] + }, { + "ID": 9368, + "SourceStructureID": 5531, + "TargetStructureID": 114702, + "Label": "5531-114702 via Ribbon Synapse from 114701 -> 114703", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114701, + "TargetID": 114703, + "Directional": true + }] + }, { + "ID": 9369, + "SourceStructureID": 5531, + "TargetStructureID": 114705, + "Label": "5531-114705 via Ribbon Synapse from 114704 -> 114706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114704, + "TargetID": 114706, + "Directional": true + }] + }, { + "ID": 9370, + "SourceStructureID": 5531, + "TargetStructureID": 114707, + "Label": "5531-114707 via Ribbon Synapse from 114704 -> 114708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114704, + "TargetID": 114708, + "Directional": true + }] + }, { + "ID": 9371, + "SourceStructureID": 5531, + "TargetStructureID": 114709, + "Label": "5531-114709 via BC Conventional Synapse from 114710 -> 114711", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114710, + "TargetID": 114711, + "Directional": true + }] + }, { + "ID": 9372, + "SourceStructureID": 5531, + "TargetStructureID": 114718, + "Label": "5531-114718 via Ribbon Synapse from 114719 -> 114720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114719, + "TargetID": 114720, + "Directional": true + }] + }, { + "ID": 9373, + "SourceStructureID": 5531, + "TargetStructureID": 114721, + "Label": "5531-114721 via Ribbon Synapse from 114722 -> 114723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114722, + "TargetID": 114723, + "Directional": true + }] + }, { + "ID": 9374, + "SourceStructureID": 5531, + "TargetStructureID": 114724, + "Label": "5531-114724 via Ribbon Synapse from 114722 -> 114725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114722, + "TargetID": 114725, + "Directional": true + }] + }, { + "ID": 9375, + "SourceStructureID": 5531, + "TargetStructureID": 114732, + "Label": "5531-114732 via Ribbon Synapse from 54917 -> 114733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54917, + "TargetID": 114733, + "Directional": true + }] + }, { + "ID": 9376, + "SourceStructureID": 5531, + "TargetStructureID": 114745, + "Label": "5531-114745 via Ribbon Synapse from 114746 -> 114753", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114746, + "TargetID": 114753, + "Directional": true + }] + }, { + "ID": 9377, + "SourceStructureID": 5531, + "TargetStructureID": 114747, + "Label": "5531-114747 via Ribbon Synapse from 114746 -> 114752", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114746, + "TargetID": 114752, + "Directional": true + }] + }, { + "ID": 9378, + "SourceStructureID": 5531, + "TargetStructureID": 114748, + "Label": "5531-114748 via Ribbon Synapse from 54651 -> 114749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54651, + "TargetID": 114749, + "Directional": true + }] + }, { + "ID": 9379, + "SourceStructureID": 5531, + "TargetStructureID": 114760, + "Label": "5531-114760 via Ribbon Synapse from 54648 -> 114761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54648, + "TargetID": 114761, + "Directional": true + }] + }, { + "ID": 9380, + "SourceStructureID": 5531, + "TargetStructureID": 114763, + "Label": "5531-114763 via Ribbon Synapse from 54648 -> 114764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54648, + "TargetID": 114764, + "Directional": true + }] + }, { + "ID": 9381, + "SourceStructureID": 5532, + "TargetStructureID": 13448, + "Label": "5532-13448 via Ribbon Synapse from 43394 -> 13449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43394, + "TargetID": 13449, + "Directional": true + }] + }, { + "ID": 9382, + "SourceStructureID": 5532, + "TargetStructureID": 90715, + "Label": "5532-90715 via Ribbon Synapse from 43155 -> 91311, 43394 -> 91320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43155, + "TargetID": 91311, + "Directional": true + }, { + "SourceID": 43394, + "TargetID": 91320, + "Directional": true + }] + }, { + "ID": 9383, + "SourceStructureID": 5534, + "TargetStructureID": 606, + "Label": "5534-606 via Ribbon Synapse from 34644 -> 54327, 44250 -> 44249, 44303 -> 44302, 49803 -> 49804, 53667 -> 53668, 54206 -> 44277, 54296 -> 44300, 54303 -> 54304", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34644, + "TargetID": 54327, + "Directional": true + }, { + "SourceID": 44250, + "TargetID": 44249, + "Directional": true + }, { + "SourceID": 44303, + "TargetID": 44302, + "Directional": true + }, { + "SourceID": 49803, + "TargetID": 49804, + "Directional": true + }, { + "SourceID": 53667, + "TargetID": 53668, + "Directional": true + }, { + "SourceID": 54206, + "TargetID": 44277, + "Directional": true + }, { + "SourceID": 54296, + "TargetID": 44300, + "Directional": true + }, { + "SourceID": 54303, + "TargetID": 54304, + "Directional": true + }] + }, { + "ID": 9384, + "SourceStructureID": 5534, + "TargetStructureID": 9769, + "Label": "5534-9769 via Ribbon Synapse from 29879 -> 29878, 35323 -> 29877, 45321 -> 45209", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29879, + "TargetID": 29878, + "Directional": true + }, { + "SourceID": 35323, + "TargetID": 29877, + "Directional": true + }, { + "SourceID": 45321, + "TargetID": 45209, + "Directional": true + }] + }, { + "ID": 9385, + "SourceStructureID": 5534, + "TargetStructureID": 32938, + "Label": "5534-32938 via Ribbon Synapse from 32944 -> 32943", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32944, + "TargetID": 32943, + "Directional": true + }] + }, { + "ID": 9386, + "SourceStructureID": 5534, + "TargetStructureID": 35317, + "Label": "5534-35317 via Ribbon Synapse from 35323 -> 35321", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35323, + "TargetID": 35321, + "Directional": true + }] + }, { + "ID": 9387, + "SourceStructureID": 5534, + "TargetStructureID": 45220, + "Label": "5534-45220 via Ribbon Synapse from 118274 -> 45252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118274, + "TargetID": 45252, + "Directional": true + }] + }, { + "ID": 9388, + "SourceStructureID": 5534, + "TargetStructureID": 58592, + "Label": "5534-58592 via Ribbon Synapse from 118350 -> 118351", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118350, + "TargetID": 118351, + "Directional": true + }] + }, { + "ID": 9389, + "SourceStructureID": 5534, + "TargetStructureID": 84118, + "Label": "5534-84118 via Ribbon Synapse from 123621 -> 123622", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123621, + "TargetID": 123622, + "Directional": true + }] + }, { + "ID": 9390, + "SourceStructureID": 5534, + "TargetStructureID": 88912, + "Label": "5534-88912 via Ribbon Synapse from 88917 -> 88918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88917, + "TargetID": 88918, + "Directional": true + }] + }, { + "ID": 9391, + "SourceStructureID": 5535, + "TargetStructureID": 35092, + "Label": "5535-35092 via Ribbon Synapse from 35100 -> 35098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35100, + "TargetID": 35098, + "Directional": true + }] + }, { + "ID": 9392, + "SourceStructureID": 5536, + "TargetStructureID": 19571, + "Label": "5536-19571 via Ribbon Synapse from 22697 -> 22714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22697, + "TargetID": 22714, + "Directional": true + }] + }, { + "ID": 9393, + "SourceStructureID": 5536, + "TargetStructureID": 20537, + "Label": "5536-20537 via Ribbon Synapse from 22697 -> 23528, 22711 -> 23528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22697, + "TargetID": 23528, + "Directional": true + }, { + "SourceID": 22711, + "TargetID": 23528, + "Directional": true + }] + }, { + "ID": 9394, + "SourceStructureID": 5536, + "TargetStructureID": 26971, + "Label": "5536-26971 via Ribbon Synapse from 22645 -> 26972, 27807 -> 26972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22645, + "TargetID": 26972, + "Directional": true + }, { + "SourceID": 27807, + "TargetID": 26972, + "Directional": true + }] + }, { + "ID": 9395, + "SourceStructureID": 5536, + "TargetStructureID": 70684, + "Label": "5536-70684 via Ribbon Synapse from 27813 -> 70691, 27817 -> 70689, 27822 -> 70686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27813, + "TargetID": 70691, + "Directional": true + }, { + "SourceID": 27817, + "TargetID": 70689, + "Directional": true + }, { + "SourceID": 27822, + "TargetID": 70686, + "Directional": true + }] + }, { + "ID": 9396, + "SourceStructureID": 5537, + "TargetStructureID": 606, + "Label": "5537-606 via Ribbon Synapse from 44957 -> 54330, 54381 -> 54380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44957, + "TargetID": 54330, + "Directional": true + }, { + "SourceID": 54381, + "TargetID": 54380, + "Directional": true + }] + }, { + "ID": 9397, + "SourceStructureID": 5537, + "TargetStructureID": 5451, + "Label": "5537-5451 via Ribbon Synapse from 44784 -> 44785, 44925 -> 44926, 44957 -> 44958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44784, + "TargetID": 44785, + "Directional": true + }, { + "SourceID": 44925, + "TargetID": 44926, + "Directional": true + }, { + "SourceID": 44957, + "TargetID": 44958, + "Directional": true + }] + }, { + "ID": 9398, + "SourceStructureID": 5537, + "TargetStructureID": 7594, + "Label": "5537-7594 via Ribbon Synapse from 25142 -> 24396, 38187 -> 38188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25142, + "TargetID": 24396, + "Directional": true + }, { + "SourceID": 38187, + "TargetID": 38188, + "Directional": true + }] + }, { + "ID": 9399, + "SourceStructureID": 5537, + "TargetStructureID": 10559, + "Label": "5537-10559 via Ribbon Synapse from 44317 -> 44316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44317, + "TargetID": 44316, + "Directional": true + }] + }, { + "ID": 9400, + "SourceStructureID": 5537, + "TargetStructureID": 11238, + "Label": "5537-11238 via Ribbon Synapse from 88356 -> 88318, 88382 -> 88378, 88383 -> 88384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88356, + "TargetID": 88318, + "Directional": true + }, { + "SourceID": 88382, + "TargetID": 88378, + "Directional": true + }, { + "SourceID": 88383, + "TargetID": 88384, + "Directional": true + }] + }, { + "ID": 9401, + "SourceStructureID": 5537, + "TargetStructureID": 32926, + "Label": "5537-32926 via Ribbon Synapse from 32935 -> 32934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32935, + "TargetID": 32934, + "Directional": true + }] + }, { + "ID": 9402, + "SourceStructureID": 5537, + "TargetStructureID": 35188, + "Label": "5537-35188 via Ribbon Synapse from 127762 -> 127763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127762, + "TargetID": 127763, + "Directional": true + }] + }, { + "ID": 9403, + "SourceStructureID": 5537, + "TargetStructureID": 45220, + "Label": "5537-45220 via Ribbon Synapse from 56095 -> 45247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56095, + "TargetID": 45247, + "Directional": true + }] + }, { + "ID": 9404, + "SourceStructureID": 5537, + "TargetStructureID": 56093, + "Label": "5537-56093 via Ribbon Synapse from 56095 -> 56094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56095, + "TargetID": 56094, + "Directional": true + }] + }, { + "ID": 9405, + "SourceStructureID": 5538, + "TargetStructureID": 5451, + "Label": "5538-5451 via BC Conventional Synapse from 55936 -> 55937", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55936, + "TargetID": 55937, + "Directional": true + }] + }, { + "ID": 9406, + "SourceStructureID": 5538, + "TargetStructureID": 5453, + "Label": "5538-5453 via Ribbon Synapse from 42198 -> 18509, 42202 -> 18504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42198, + "TargetID": 18509, + "Directional": true + }, { + "SourceID": 42202, + "TargetID": 18504, + "Directional": true + }] + }, { + "ID": 9407, + "SourceStructureID": 5538, + "TargetStructureID": 8504, + "Label": "5538-8504 via Ribbon Synapse from 45012 -> 8709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45012, + "TargetID": 8709, + "Directional": true + }] + }, { + "ID": 9408, + "SourceStructureID": 5538, + "TargetStructureID": 8551, + "Label": "5538-8551 via Ribbon Synapse from 8545 -> 8566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8545, + "TargetID": 8566, + "Directional": true + }] + }, { + "ID": 9409, + "SourceStructureID": 5538, + "TargetStructureID": 16073, + "Label": "5538-16073 via Ribbon Synapse from 24223 -> 24220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24223, + "TargetID": 24220, + "Directional": true + }] + }, { + "ID": 9410, + "SourceStructureID": 5538, + "TargetStructureID": 42770, + "Label": "5538-42770 via Ribbon Synapse from 24222 -> 42772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24222, + "TargetID": 42772, + "Directional": true + }] + }, { + "ID": 9411, + "SourceStructureID": 5538, + "TargetStructureID": 55933, + "Label": "5538-55933 via BC Conventional Synapse from 55935 -> 55934", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55935, + "TargetID": 55934, + "Directional": true + }] + }, { + "ID": 9412, + "SourceStructureID": 5539, + "TargetStructureID": 7188, + "Label": "5539-7188 via Ribbon Synapse from 8514 -> 7190, 8519 -> 8516, 8521 -> 7192, 9816 -> 8517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8514, + "TargetID": 7190, + "Directional": true + }, { + "SourceID": 8519, + "TargetID": 8516, + "Directional": true + }, { + "SourceID": 8521, + "TargetID": 7192, + "Directional": true + }, { + "SourceID": 9816, + "TargetID": 8517, + "Directional": true + }] + }, { + "ID": 9413, + "SourceStructureID": 5539, + "TargetStructureID": 7225, + "Label": "5539-7225 via Ribbon Synapse from 10022 -> 22689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10022, + "TargetID": 22689, + "Directional": true + }] + }, { + "ID": 9414, + "SourceStructureID": 5539, + "TargetStructureID": 19572, + "Label": "5539-19572 via Ribbon Synapse from 8521 -> 22625", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8521, + "TargetID": 22625, + "Directional": true + }] + }, { + "ID": 9415, + "SourceStructureID": 5539, + "TargetStructureID": 20681, + "Label": "5539-20681 via Ribbon Synapse from 44471 -> 65772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44471, + "TargetID": 65772, + "Directional": true + }] + }, { + "ID": 9416, + "SourceStructureID": 5541, + "TargetStructureID": 606, + "Label": "5541-606 via Ribbon Synapse from 33240 -> 44252, 33241 -> 44251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33240, + "TargetID": 44252, + "Directional": true + }, { + "SourceID": 33241, + "TargetID": 44251, + "Directional": true + }] + }, { + "ID": 9417, + "SourceStructureID": 5541, + "TargetStructureID": 4890, + "Label": "5541-4890 via Ribbon Synapse from 7914 -> 7915", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7914, + "TargetID": 7915, + "Directional": true + }] + }, { + "ID": 9418, + "SourceStructureID": 5541, + "TargetStructureID": 35325, + "Label": "5541-35325 via Ribbon Synapse from 38254 -> 38249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38254, + "TargetID": 38249, + "Directional": true + }] + }, { + "ID": 9419, + "SourceStructureID": 5541, + "TargetStructureID": 71985, + "Label": "5541-71985 via Ribbon Synapse from 72023 -> 72026", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72023, + "TargetID": 72026, + "Directional": true + }] + }, { + "ID": 9420, + "SourceStructureID": 5541, + "TargetStructureID": 72036, + "Label": "5541-72036 via Ribbon Synapse from 72038 -> 72039, 72041 -> 72040", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72038, + "TargetID": 72039, + "Directional": true + }, { + "SourceID": 72041, + "TargetID": 72040, + "Directional": true + }] + }, { + "ID": 9421, + "SourceStructureID": 5542, + "TargetStructureID": 456, + "Label": "5542-456 via Ribbon Synapse from 39990 -> 14424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39990, + "TargetID": 14424, + "Directional": true + }] + }, { + "ID": 9422, + "SourceStructureID": 5542, + "TargetStructureID": 7564, + "Label": "5542-7564 via Ribbon Synapse from 29055 -> 29049", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29055, + "TargetID": 29049, + "Directional": true + }] + }, { + "ID": 9423, + "SourceStructureID": 5542, + "TargetStructureID": 13525, + "Label": "5542-13525 via Ribbon Synapse from 95794 -> 85330, 133824 -> 129028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95794, + "TargetID": 85330, + "Directional": true + }, { + "SourceID": 133824, + "TargetID": 129028, + "Directional": true + }] + }, { + "ID": 9424, + "SourceStructureID": 5542, + "TargetStructureID": 90715, + "Label": "5542-90715 via Ribbon Synapse from 43158 -> 91225, 43164 -> 91027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43158, + "TargetID": 91225, + "Directional": true + }, { + "SourceID": 43164, + "TargetID": 91027, + "Directional": true + }] + }, { + "ID": 9425, + "SourceStructureID": 5542, + "TargetStructureID": 130365, + "Label": "5542-130365 via Ribbon Synapse from 95796 -> 130367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95796, + "TargetID": 130367, + "Directional": true + }] + }, { + "ID": 9426, + "SourceStructureID": 5542, + "TargetStructureID": 137122, + "Label": "5542-137122 via Ribbon Synapse from 137132 -> 137130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137132, + "TargetID": 137130, + "Directional": true + }] + }, { + "ID": 9427, + "SourceStructureID": 5543, + "TargetStructureID": 5453, + "Label": "5543-5453 via Ribbon Synapse from 17033 -> 18570, 17095 -> 18664, 17096 -> 18674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17033, + "TargetID": 18570, + "Directional": true + }, { + "SourceID": 17095, + "TargetID": 18664, + "Directional": true + }, { + "SourceID": 17096, + "TargetID": 18674, + "Directional": true + }] + }, { + "ID": 9428, + "SourceStructureID": 5543, + "TargetStructureID": 7703, + "Label": "5543-7703 via Ribbon Synapse from 17018 -> 17020, 17091 -> 18652, 17096 -> 18591, 17097 -> 18592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17018, + "TargetID": 17020, + "Directional": true + }, { + "SourceID": 17091, + "TargetID": 18652, + "Directional": true + }, { + "SourceID": 17096, + "TargetID": 18591, + "Directional": true + }, { + "SourceID": 17097, + "TargetID": 18592, + "Directional": true + }] + }, { + "ID": 9429, + "SourceStructureID": 5543, + "TargetStructureID": 8575, + "Label": "5543-8575 via BC Conventional Synapse from 55284 -> 37282", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55284, + "TargetID": 37282, + "Directional": true + }] + }, { + "ID": 9430, + "SourceStructureID": 5543, + "TargetStructureID": 98590, + "Label": "5543-98590 via Ribbon Synapse from 17088 -> 117185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17088, + "TargetID": 117185, + "Directional": true + }] + }, { + "ID": 9431, + "SourceStructureID": 5543, + "TargetStructureID": 101369, + "Label": "5543-101369 via Ribbon Synapse from 101421 -> 101416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101421, + "TargetID": 101416, + "Directional": true + }] + }, { + "ID": 9432, + "SourceStructureID": 5543, + "TargetStructureID": 135225, + "Label": "5543-135225 via Ribbon Synapse from 17131 -> 135241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17131, + "TargetID": 135241, + "Directional": true + }] + }, { + "ID": 9433, + "SourceStructureID": 5544, + "TargetStructureID": 458, + "Label": "5544-458 via Ribbon Synapse from 44714 -> 14491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44714, + "TargetID": 14491, + "Directional": true + }] + }, { + "ID": 9434, + "SourceStructureID": 5544, + "TargetStructureID": 5421, + "Label": "5544-5421 via Ribbon Synapse from 44703 -> 130831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44703, + "TargetID": 130831, + "Directional": true + }] + }, { + "ID": 9435, + "SourceStructureID": 5544, + "TargetStructureID": 5422, + "Label": "5544-5422 via Ribbon Synapse from 74125 -> 74124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74125, + "TargetID": 74124, + "Directional": true + }] + }, { + "ID": 9436, + "SourceStructureID": 5544, + "TargetStructureID": 7564, + "Label": "5544-7564 via Ribbon Synapse from 44703 -> 44707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44703, + "TargetID": 44707, + "Directional": true + }] + }, { + "ID": 9437, + "SourceStructureID": 5544, + "TargetStructureID": 20681, + "Label": "5544-20681 via Ribbon Synapse from 45082 -> 65811, 65804 -> 65803, 65815 -> 65814", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45082, + "TargetID": 65811, + "Directional": true + }, { + "SourceID": 65804, + "TargetID": 65803, + "Directional": true + }, { + "SourceID": 65815, + "TargetID": 65814, + "Directional": true + }] + }, { + "ID": 9438, + "SourceStructureID": 5544, + "TargetStructureID": 31931, + "Label": "5544-31931 via Ribbon Synapse from 31936 -> 31935", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31936, + "TargetID": 31935, + "Directional": true + }] + }, { + "ID": 9439, + "SourceStructureID": 5544, + "TargetStructureID": 137024, + "Label": "5544-137024 via Ribbon Synapse from 137032 -> 137031", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137032, + "TargetID": 137031, + "Directional": true + }] + }, { + "ID": 9440, + "SourceStructureID": 5545, + "TargetStructureID": 5453, + "Label": "5545-5453 via Ribbon Synapse from 128475 -> 28779", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128475, + "TargetID": 28779, + "Directional": true + }] + }, { + "ID": 9441, + "SourceStructureID": 5545, + "TargetStructureID": 7859, + "Label": "5545-7859 via Ribbon Synapse from 40080 -> 84687, 84692 -> 84693", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40080, + "TargetID": 84687, + "Directional": true + }, { + "SourceID": 84692, + "TargetID": 84693, + "Directional": true + }] + }, { + "ID": 9442, + "SourceStructureID": 5545, + "TargetStructureID": 13525, + "Label": "5545-13525 via Ribbon Synapse from 21278 -> 129965, 128463 -> 87084", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21278, + "TargetID": 129965, + "Directional": true + }, { + "SourceID": 128463, + "TargetID": 87084, + "Directional": true + }] + }, { + "ID": 9443, + "SourceStructureID": 5545, + "TargetStructureID": 22225, + "Label": "5545-22225 via Ribbon Synapse from 40078 -> 128201", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40078, + "TargetID": 128201, + "Directional": true + }] + }, { + "ID": 9444, + "SourceStructureID": 5545, + "TargetStructureID": 46741, + "Label": "5545-46741 via BC Conventional Synapse from 136955 -> 136954", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136955, + "TargetID": 136954, + "Directional": true + }] + }, { + "ID": 9445, + "SourceStructureID": 5545, + "TargetStructureID": 64777, + "Label": "5545-64777 via Ribbon Synapse from 64835 -> 64829", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64835, + "TargetID": 64829, + "Directional": true + }] + }, { + "ID": 9446, + "SourceStructureID": 5545, + "TargetStructureID": 122073, + "Label": "5545-122073 via Ribbon Synapse from 128465 -> 123252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128465, + "TargetID": 123252, + "Directional": true + }] + }, { + "ID": 9447, + "SourceStructureID": 5551, + "TargetStructureID": 116925, + "Label": "5551-116925 via Ribbon Synapse from 116923 -> 116926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116923, + "TargetID": 116926, + "Directional": true + }] + }, { + "ID": 9448, + "SourceStructureID": 5557, + "TargetStructureID": 117065, + "Label": "5557-117065 via Ribbon Synapse from 117064 -> 117068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117064, + "TargetID": 117068, + "Directional": true + }] + }, { + "ID": 9449, + "SourceStructureID": 5561, + "TargetStructureID": 606, + "Label": "5561-606 via Ribbon Synapse from 20252 -> 20253, 46263 -> 51599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20252, + "TargetID": 20253, + "Directional": true + }, { + "SourceID": 46263, + "TargetID": 51599, + "Directional": true + }] + }, { + "ID": 9450, + "SourceStructureID": 5561, + "TargetStructureID": 5282, + "Label": "5561-5282 via Ribbon Synapse from 46043 -> 97665", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46043, + "TargetID": 97665, + "Directional": true + }] + }, { + "ID": 9451, + "SourceStructureID": 5561, + "TargetStructureID": 9769, + "Label": "5561-9769 via Ribbon Synapse from 29900 -> 20229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29900, + "TargetID": 20229, + "Directional": true + }] + }, { + "ID": 9452, + "SourceStructureID": 5561, + "TargetStructureID": 53399, + "Label": "5561-53399 via Ribbon Synapse from 46301 -> 53402", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46301, + "TargetID": 53402, + "Directional": true + }] + }, { + "ID": 9453, + "SourceStructureID": 5561, + "TargetStructureID": 63594, + "Label": "5561-63594 via Ribbon Synapse from 46288 -> 63604, 49639 -> 96820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46288, + "TargetID": 63604, + "Directional": true + }, { + "SourceID": 49639, + "TargetID": 96820, + "Directional": true + }] + }, { + "ID": 9454, + "SourceStructureID": 5561, + "TargetStructureID": 69162, + "Label": "5561-69162 via Ribbon Synapse from 46308 -> 148171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46308, + "TargetID": 148171, + "Directional": true + }] + }, { + "ID": 9455, + "SourceStructureID": 5561, + "TargetStructureID": 70050, + "Label": "5561-70050 via Ribbon Synapse from 46279 -> 130901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46279, + "TargetID": 130901, + "Directional": true + }] + }, { + "ID": 9456, + "SourceStructureID": 5561, + "TargetStructureID": 96762, + "Label": "5561-96762 via Cistern Pre from 46112 -> 96763", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 46112, + "TargetID": 96763, + "Directional": true + }] + }, { + "ID": 9457, + "SourceStructureID": 5561, + "TargetStructureID": 96764, + "Label": "5561-96764 via Cistern Pre from 46115 -> 96765", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 46115, + "TargetID": 96765, + "Directional": true + }] + }, { + "ID": 9458, + "SourceStructureID": 5561, + "TargetStructureID": 96766, + "Label": "5561-96766 via Cistern Pre from 46134 -> 96767", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 46134, + "TargetID": 96767, + "Directional": true + }] + }, { + "ID": 9459, + "SourceStructureID": 5561, + "TargetStructureID": 96768, + "Label": "5561-96768 via Ribbon Synapse from 46135 -> 96769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46135, + "TargetID": 96769, + "Directional": true + }] + }, { + "ID": 9460, + "SourceStructureID": 5561, + "TargetStructureID": 96781, + "Label": "5561-96781 via Ribbon Synapse from 46145 -> 96783, 46294 -> 96782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46145, + "TargetID": 96783, + "Directional": true + }, { + "SourceID": 46294, + "TargetID": 96782, + "Directional": true + }] + }, { + "ID": 9461, + "SourceStructureID": 5561, + "TargetStructureID": 96784, + "Label": "5561-96784 via Ribbon Synapse from 46294 -> 96785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46294, + "TargetID": 96785, + "Directional": true + }] + }, { + "ID": 9462, + "SourceStructureID": 5561, + "TargetStructureID": 96786, + "Label": "5561-96786 via Ribbon Synapse from 46263 -> 96789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46263, + "TargetID": 96789, + "Directional": true + }] + }, { + "ID": 9463, + "SourceStructureID": 5561, + "TargetStructureID": 96791, + "Label": "5561-96791 via BC Conventional Synapse from 96792 -> 96793", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96792, + "TargetID": 96793, + "Directional": true + }] + }, { + "ID": 9464, + "SourceStructureID": 5561, + "TargetStructureID": 96791, + "Label": "5561-96791 via Ribbon Synapse from 46292 -> 96798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46292, + "TargetID": 96798, + "Directional": true + }] + }, { + "ID": 9465, + "SourceStructureID": 5561, + "TargetStructureID": 96794, + "Label": "5561-96794 via Ribbon Synapse from 46292 -> 96795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46292, + "TargetID": 96795, + "Directional": true + }] + }, { + "ID": 9466, + "SourceStructureID": 5561, + "TargetStructureID": 96812, + "Label": "5561-96812 via BC Conventional Synapse from 96809 -> 96813", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96809, + "TargetID": 96813, + "Directional": true + }] + }, { + "ID": 9467, + "SourceStructureID": 5561, + "TargetStructureID": 96851, + "Label": "5561-96851 via Ribbon Synapse from 96850 -> 96853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96850, + "TargetID": 96853, + "Directional": true + }] + }, { + "ID": 9468, + "SourceStructureID": 5561, + "TargetStructureID": 96927, + "Label": "5561-96927 via BC Conventional Synapse from 96929 -> 96928", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96929, + "TargetID": 96928, + "Directional": true + }] + }, { + "ID": 9469, + "SourceStructureID": 5561, + "TargetStructureID": 96934, + "Label": "5561-96934 via Ribbon Synapse from 29900 -> 96935", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29900, + "TargetID": 96935, + "Directional": true + }] + }, { + "ID": 9470, + "SourceStructureID": 5561, + "TargetStructureID": 96938, + "Label": "5561-96938 via BC Conventional Synapse from 96939 -> 96940", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96939, + "TargetID": 96940, + "Directional": true + }] + }, { + "ID": 9471, + "SourceStructureID": 5561, + "TargetStructureID": 96943, + "Label": "5561-96943 via BC Conventional Synapse from 96946 -> 96945", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96946, + "TargetID": 96945, + "Directional": true + }] + }, { + "ID": 9472, + "SourceStructureID": 5561, + "TargetStructureID": 96974, + "Label": "5561-96974 via Ribbon Synapse from 46271 -> 96975", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46271, + "TargetID": 96975, + "Directional": true + }] + }, { + "ID": 9473, + "SourceStructureID": 5561, + "TargetStructureID": 96980, + "Label": "5561-96980 via Ribbon Synapse from 46273 -> 96981", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46273, + "TargetID": 96981, + "Directional": true + }] + }, { + "ID": 9474, + "SourceStructureID": 5561, + "TargetStructureID": 96988, + "Label": "5561-96988 via Ribbon Synapse from 46277 -> 96989", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46277, + "TargetID": 96989, + "Directional": true + }] + }, { + "ID": 9475, + "SourceStructureID": 5561, + "TargetStructureID": 97001, + "Label": "5561-97001 via Ribbon Synapse from 97000 -> 97002", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97000, + "TargetID": 97002, + "Directional": true + }] + }, { + "ID": 9476, + "SourceStructureID": 5561, + "TargetStructureID": 97012, + "Label": "5561-97012 via Ribbon Synapse from 46279 -> 97014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46279, + "TargetID": 97014, + "Directional": true + }] + }, { + "ID": 9477, + "SourceStructureID": 5561, + "TargetStructureID": 97065, + "Label": "5561-97065 via BC Conventional Synapse from 46196 -> 97066", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46196, + "TargetID": 97066, + "Directional": true + }] + }, { + "ID": 9478, + "SourceStructureID": 5561, + "TargetStructureID": 97090, + "Label": "5561-97090 via Ribbon Synapse from 97085 -> 97091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97085, + "TargetID": 97091, + "Directional": true + }] + }, { + "ID": 9479, + "SourceStructureID": 5561, + "TargetStructureID": 97093, + "Label": "5561-97093 via Ribbon Synapse from 97092 -> 97094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97092, + "TargetID": 97094, + "Directional": true + }] + }, { + "ID": 9480, + "SourceStructureID": 5561, + "TargetStructureID": 97159, + "Label": "5561-97159 via Ribbon Synapse from 46172 -> 148167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46172, + "TargetID": 148167, + "Directional": true + }] + }, { + "ID": 9481, + "SourceStructureID": 5561, + "TargetStructureID": 97166, + "Label": "5561-97166 via Ribbon Synapse from 46172 -> 97170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46172, + "TargetID": 97170, + "Directional": true + }] + }, { + "ID": 9482, + "SourceStructureID": 5561, + "TargetStructureID": 97202, + "Label": "5561-97202 via BC Conventional Synapse from 97201 -> 97203", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97201, + "TargetID": 97203, + "Directional": true + }] + }, { + "ID": 9483, + "SourceStructureID": 5561, + "TargetStructureID": 97204, + "Label": "5561-97204 via Ribbon Synapse from 97200 -> 97205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97200, + "TargetID": 97205, + "Directional": true + }] + }, { + "ID": 9484, + "SourceStructureID": 5561, + "TargetStructureID": 97215, + "Label": "5561-97215 via BC Conventional Synapse from 97214 -> 97216", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97214, + "TargetID": 97216, + "Directional": true + }] + }, { + "ID": 9485, + "SourceStructureID": 5561, + "TargetStructureID": 97347, + "Label": "5561-97347 via Ribbon Synapse from 46123 -> 97348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46123, + "TargetID": 97348, + "Directional": true + }] + }, { + "ID": 9486, + "SourceStructureID": 5561, + "TargetStructureID": 97350, + "Label": "5561-97350 via Ribbon Synapse from 46123 -> 97351", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46123, + "TargetID": 97351, + "Directional": true + }] + }, { + "ID": 9487, + "SourceStructureID": 5561, + "TargetStructureID": 97381, + "Label": "5561-97381 via BC Conventional Synapse from 97384 -> 97383", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97384, + "TargetID": 97383, + "Directional": true + }] + }, { + "ID": 9488, + "SourceStructureID": 5561, + "TargetStructureID": 97391, + "Label": "5561-97391 via BC Conventional Synapse from 97393 -> 97392", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97393, + "TargetID": 97392, + "Directional": true + }] + }, { + "ID": 9489, + "SourceStructureID": 5561, + "TargetStructureID": 97443, + "Label": "5561-97443 via Ribbon Synapse from 46212 -> 97444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46212, + "TargetID": 97444, + "Directional": true + }] + }, { + "ID": 9490, + "SourceStructureID": 5561, + "TargetStructureID": 97445, + "Label": "5561-97445 via Ribbon Synapse from 46213 -> 97446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46213, + "TargetID": 97446, + "Directional": true + }] + }, { + "ID": 9491, + "SourceStructureID": 5561, + "TargetStructureID": 97485, + "Label": "5561-97485 via Ribbon Synapse from 97472 -> 97487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97472, + "TargetID": 97487, + "Directional": true + }] + }, { + "ID": 9492, + "SourceStructureID": 5561, + "TargetStructureID": 97486, + "Label": "5561-97486 via Ribbon Synapse from 97472 -> 97488", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97472, + "TargetID": 97488, + "Directional": true + }] + }, { + "ID": 9493, + "SourceStructureID": 5561, + "TargetStructureID": 97492, + "Label": "5561-97492 via Ribbon Synapse from 97469 -> 97495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97469, + "TargetID": 97495, + "Directional": true + }] + }, { + "ID": 9494, + "SourceStructureID": 5561, + "TargetStructureID": 97496, + "Label": "5561-97496 via Ribbon Synapse from 97469 -> 97497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97469, + "TargetID": 97497, + "Directional": true + }] + }, { + "ID": 9495, + "SourceStructureID": 5561, + "TargetStructureID": 97503, + "Label": "5561-97503 via Ribbon Synapse from 46231 -> 97505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46231, + "TargetID": 97505, + "Directional": true + }] + }, { + "ID": 9496, + "SourceStructureID": 5561, + "TargetStructureID": 97512, + "Label": "5561-97512 via Ribbon Synapse from 46259 -> 97513", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46259, + "TargetID": 97513, + "Directional": true + }] + }, { + "ID": 9497, + "SourceStructureID": 5561, + "TargetStructureID": 97514, + "Label": "5561-97514 via Ribbon Synapse from 46258 -> 97517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46258, + "TargetID": 97517, + "Directional": true + }] + }, { + "ID": 9498, + "SourceStructureID": 5561, + "TargetStructureID": 97515, + "Label": "5561-97515 via Ribbon Synapse from 46258 -> 97516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46258, + "TargetID": 97516, + "Directional": true + }] + }, { + "ID": 9499, + "SourceStructureID": 5561, + "TargetStructureID": 97518, + "Label": "5561-97518 via Ribbon Synapse from 46259 -> 97519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46259, + "TargetID": 97519, + "Directional": true + }] + }, { + "ID": 9500, + "SourceStructureID": 5561, + "TargetStructureID": 97558, + "Label": "5561-97558 via Ribbon Synapse from 46251 -> 97566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46251, + "TargetID": 97566, + "Directional": true + }] + }, { + "ID": 9501, + "SourceStructureID": 5561, + "TargetStructureID": 97559, + "Label": "5561-97559 via Ribbon Synapse from 46246 -> 97562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46246, + "TargetID": 97562, + "Directional": true + }] + }, { + "ID": 9502, + "SourceStructureID": 5561, + "TargetStructureID": 97560, + "Label": "5561-97560 via Ribbon Synapse from 46246 -> 97561", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46246, + "TargetID": 97561, + "Directional": true + }] + }, { + "ID": 9503, + "SourceStructureID": 5561, + "TargetStructureID": 97584, + "Label": "5561-97584 via Ribbon Synapse from 46251 -> 97589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46251, + "TargetID": 97589, + "Directional": true + }] + }, { + "ID": 9504, + "SourceStructureID": 5561, + "TargetStructureID": 97636, + "Label": "5561-97636 via BC Conventional Synapse from 97635 -> 97637", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97635, + "TargetID": 97637, + "Directional": true + }] + }, { + "ID": 9505, + "SourceStructureID": 5561, + "TargetStructureID": 97653, + "Label": "5561-97653 via Ribbon Synapse from 46309 -> 97654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46309, + "TargetID": 97654, + "Directional": true + }] + }, { + "ID": 9506, + "SourceStructureID": 5561, + "TargetStructureID": 97684, + "Label": "5561-97684 via Ribbon Synapse from 48984 -> 97686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48984, + "TargetID": 97686, + "Directional": true + }] + }, { + "ID": 9507, + "SourceStructureID": 5561, + "TargetStructureID": 97707, + "Label": "5561-97707 via Ribbon Synapse from 97705 -> 97708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97705, + "TargetID": 97708, + "Directional": true + }] + }, { + "ID": 9508, + "SourceStructureID": 5561, + "TargetStructureID": 97709, + "Label": "5561-97709 via Ribbon Synapse from 97705 -> 97710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97705, + "TargetID": 97710, + "Directional": true + }] + }, { + "ID": 9509, + "SourceStructureID": 5562, + "TargetStructureID": 5117, + "Label": "5562-5117 via BC Conventional Synapse from 77532 -> 65513", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77532, + "TargetID": 65513, + "Directional": true + }] + }, { + "ID": 9510, + "SourceStructureID": 5562, + "TargetStructureID": 5117, + "Label": "5562-5117 via Ribbon Synapse from 65511 -> 65510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65511, + "TargetID": 65510, + "Directional": true + }] + }, { + "ID": 9511, + "SourceStructureID": 5562, + "TargetStructureID": 5294, + "Label": "5562-5294 via Ribbon Synapse from 32337 -> 32336, 37649 -> 32336, 37650 -> 32336, 37651 -> 32336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32337, + "TargetID": 32336, + "Directional": true + }, { + "SourceID": 37649, + "TargetID": 32336, + "Directional": true + }, { + "SourceID": 37650, + "TargetID": 32336, + "Directional": true + }, { + "SourceID": 37651, + "TargetID": 32336, + "Directional": true + }] + }, { + "ID": 9512, + "SourceStructureID": 5562, + "TargetStructureID": 8576, + "Label": "5562-8576 via Ribbon Synapse from 20060 -> 20059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20060, + "TargetID": 20059, + "Directional": true + }] + }, { + "ID": 9513, + "SourceStructureID": 5562, + "TargetStructureID": 18282, + "Label": "5562-18282 via Ribbon Synapse from 31445 -> 31443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31445, + "TargetID": 31443, + "Directional": true + }] + }, { + "ID": 9514, + "SourceStructureID": 5562, + "TargetStructureID": 24148, + "Label": "5562-24148 via Ribbon Synapse from 48948 -> 147570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48948, + "TargetID": 147570, + "Directional": true + }] + }, { + "ID": 9515, + "SourceStructureID": 5562, + "TargetStructureID": 31024, + "Label": "5562-31024 via Ribbon Synapse from 31044 -> 31043, 31051 -> 31159, 31064 -> 31047, 31359 -> 31160, 49518 -> 78898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31044, + "TargetID": 31043, + "Directional": true + }, { + "SourceID": 31051, + "TargetID": 31159, + "Directional": true + }, { + "SourceID": 31064, + "TargetID": 31047, + "Directional": true + }, { + "SourceID": 31359, + "TargetID": 31160, + "Directional": true + }, { + "SourceID": 49518, + "TargetID": 78898, + "Directional": true + }] + }, { + "ID": 9516, + "SourceStructureID": 5562, + "TargetStructureID": 33092, + "Label": "5562-33092 via Ribbon Synapse from 25324 -> 38292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25324, + "TargetID": 38292, + "Directional": true + }] + }, { + "ID": 9517, + "SourceStructureID": 5562, + "TargetStructureID": 36516, + "Label": "5562-36516 via Ribbon Synapse from 33096 -> 36612, 36522 -> 36521", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33096, + "TargetID": 36612, + "Directional": true + }, { + "SourceID": 36522, + "TargetID": 36521, + "Directional": true + }] + }, { + "ID": 9518, + "SourceStructureID": 5562, + "TargetStructureID": 58696, + "Label": "5562-58696 via Ribbon Synapse from 63787 -> 86968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63787, + "TargetID": 86968, + "Directional": true + }] + }, { + "ID": 9519, + "SourceStructureID": 5562, + "TargetStructureID": 61816, + "Label": "5562-61816 via Ribbon Synapse from 31291 -> 116712, 63215 -> 80727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31291, + "TargetID": 116712, + "Directional": true + }, { + "SourceID": 63215, + "TargetID": 80727, + "Directional": true + }] + }, { + "ID": 9520, + "SourceStructureID": 5562, + "TargetStructureID": 63274, + "Label": "5562-63274 via BC Conventional Synapse from 80345 -> 80343", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80345, + "TargetID": 80343, + "Directional": true + }] + }, { + "ID": 9521, + "SourceStructureID": 5562, + "TargetStructureID": 63371, + "Label": "5562-63371 via BC Conventional Synapse from 63382 -> 63380, 77165 -> 63387", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63382, + "TargetID": 63380, + "Directional": true + }, { + "SourceID": 77165, + "TargetID": 63387, + "Directional": true + }] + }, { + "ID": 9522, + "SourceStructureID": 5562, + "TargetStructureID": 63371, + "Label": "5562-63371 via Ribbon Synapse from 31299 -> 63388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31299, + "TargetID": 63388, + "Directional": true + }] + }, { + "ID": 9523, + "SourceStructureID": 5562, + "TargetStructureID": 65351, + "Label": "5562-65351 via Ribbon Synapse from 77245 -> 78959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77245, + "TargetID": 78959, + "Directional": true + }] + }, { + "ID": 9524, + "SourceStructureID": 5562, + "TargetStructureID": 65366, + "Label": "5562-65366 via Ribbon Synapse from 49516 -> 78911, 49516 -> 78912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49516, + "TargetID": 78911, + "Directional": true + }, { + "SourceID": 49516, + "TargetID": 78912, + "Directional": true + }] + }, { + "ID": 9525, + "SourceStructureID": 5562, + "TargetStructureID": 66958, + "Label": "5562-66958 via Ribbon Synapse from 63876 -> 79633", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63876, + "TargetID": 79633, + "Directional": true + }] + }, { + "ID": 9526, + "SourceStructureID": 5562, + "TargetStructureID": 67269, + "Label": "5562-67269 via Ribbon Synapse from 63237 -> 69640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63237, + "TargetID": 69640, + "Directional": true + }] + }, { + "ID": 9527, + "SourceStructureID": 5562, + "TargetStructureID": 68480, + "Label": "5562-68480 via Ribbon Synapse from 65511 -> 79641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65511, + "TargetID": 79641, + "Directional": true + }] + }, { + "ID": 9528, + "SourceStructureID": 5562, + "TargetStructureID": 69049, + "Label": "5562-69049 via Ribbon Synapse from 40289 -> 76436, 63267 -> 69060, 63355 -> 69057", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40289, + "TargetID": 76436, + "Directional": true + }, { + "SourceID": 63267, + "TargetID": 69060, + "Directional": true + }, { + "SourceID": 63355, + "TargetID": 69057, + "Directional": true + }] + }, { + "ID": 9529, + "SourceStructureID": 5562, + "TargetStructureID": 69926, + "Label": "5562-69926 via Ribbon Synapse from 48959 -> 72852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48959, + "TargetID": 72852, + "Directional": true + }] + }, { + "ID": 9530, + "SourceStructureID": 5562, + "TargetStructureID": 69930, + "Label": "5562-69930 via Ribbon Synapse from 48959 -> 79638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48959, + "TargetID": 79638, + "Directional": true + }] + }, { + "ID": 9531, + "SourceStructureID": 5562, + "TargetStructureID": 76228, + "Label": "5562-76228 via Ribbon Synapse from 37636 -> 76229, 37638 -> 76229, 37639 -> 76229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37636, + "TargetID": 76229, + "Directional": true + }, { + "SourceID": 37638, + "TargetID": 76229, + "Directional": true + }, { + "SourceID": 37639, + "TargetID": 76229, + "Directional": true + }] + }, { + "ID": 9532, + "SourceStructureID": 5562, + "TargetStructureID": 76230, + "Label": "5562-76230 via Ribbon Synapse from 37637 -> 76231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37637, + "TargetID": 76231, + "Directional": true + }] + }, { + "ID": 9533, + "SourceStructureID": 5562, + "TargetStructureID": 76233, + "Label": "5562-76233 via Ribbon Synapse from 37641 -> 76234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37641, + "TargetID": 76234, + "Directional": true + }] + }, { + "ID": 9534, + "SourceStructureID": 5562, + "TargetStructureID": 76235, + "Label": "5562-76235 via BC Conventional Synapse from 76238 -> 76239", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76238, + "TargetID": 76239, + "Directional": true + }] + }, { + "ID": 9535, + "SourceStructureID": 5562, + "TargetStructureID": 76235, + "Label": "5562-76235 via Ribbon Synapse from 37642 -> 76236, 37643 -> 76236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37642, + "TargetID": 76236, + "Directional": true + }, { + "SourceID": 37643, + "TargetID": 76236, + "Directional": true + }] + }, { + "ID": 9536, + "SourceStructureID": 5562, + "TargetStructureID": 76240, + "Label": "5562-76240 via Ribbon Synapse from 37644 -> 76241, 37644 -> 76242, 37645 -> 76242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37644, + "TargetID": 76241, + "Directional": true + }, { + "SourceID": 37644, + "TargetID": 76242, + "Directional": true + }, { + "SourceID": 37645, + "TargetID": 76242, + "Directional": true + }] + }, { + "ID": 9537, + "SourceStructureID": 5562, + "TargetStructureID": 76243, + "Label": "5562-76243 via Ribbon Synapse from 63049 -> 76244", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63049, + "TargetID": 76244, + "Directional": true + }] + }, { + "ID": 9538, + "SourceStructureID": 5562, + "TargetStructureID": 76245, + "Label": "5562-76245 via Ribbon Synapse from 63049 -> 76246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63049, + "TargetID": 76246, + "Directional": true + }] + }, { + "ID": 9539, + "SourceStructureID": 5562, + "TargetStructureID": 76247, + "Label": "5562-76247 via Ribbon Synapse from 37647 -> 76250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37647, + "TargetID": 76250, + "Directional": true + }] + }, { + "ID": 9540, + "SourceStructureID": 5562, + "TargetStructureID": 76251, + "Label": "5562-76251 via Ribbon Synapse from 37649 -> 76252, 37650 -> 76252, 37651 -> 76252, 37652 -> 76252, 37652 -> 76261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37649, + "TargetID": 76252, + "Directional": true + }, { + "SourceID": 37650, + "TargetID": 76252, + "Directional": true + }, { + "SourceID": 37651, + "TargetID": 76252, + "Directional": true + }, { + "SourceID": 37652, + "TargetID": 76252, + "Directional": true + }, { + "SourceID": 37652, + "TargetID": 76261, + "Directional": true + }] + }, { + "ID": 9541, + "SourceStructureID": 5562, + "TargetStructureID": 76255, + "Label": "5562-76255 via Ribbon Synapse from 37652 -> 76260, 37653 -> 76265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37652, + "TargetID": 76260, + "Directional": true + }, { + "SourceID": 37653, + "TargetID": 76265, + "Directional": true + }] + }, { + "ID": 9542, + "SourceStructureID": 5562, + "TargetStructureID": 76262, + "Label": "5562-76262 via BC Conventional Synapse from 76264 -> 76263", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76264, + "TargetID": 76263, + "Directional": true + }] + }, { + "ID": 9543, + "SourceStructureID": 5562, + "TargetStructureID": 76275, + "Label": "5562-76275 via Ribbon Synapse from 40294 -> 76276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40294, + "TargetID": 76276, + "Directional": true + }] + }, { + "ID": 9544, + "SourceStructureID": 5562, + "TargetStructureID": 76277, + "Label": "5562-76277 via Ribbon Synapse from 40294 -> 76278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40294, + "TargetID": 76278, + "Directional": true + }] + }, { + "ID": 9545, + "SourceStructureID": 5562, + "TargetStructureID": 76291, + "Label": "5562-76291 via Ribbon Synapse from 40287 -> 76293", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40287, + "TargetID": 76293, + "Directional": true + }] + }, { + "ID": 9546, + "SourceStructureID": 5562, + "TargetStructureID": 76294, + "Label": "5562-76294 via Ribbon Synapse from 40286 -> 76295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40286, + "TargetID": 76295, + "Directional": true + }] + }, { + "ID": 9547, + "SourceStructureID": 5562, + "TargetStructureID": 76296, + "Label": "5562-76296 via Ribbon Synapse from 40286 -> 76297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40286, + "TargetID": 76297, + "Directional": true + }] + }, { + "ID": 9548, + "SourceStructureID": 5562, + "TargetStructureID": 76302, + "Label": "5562-76302 via Ribbon Synapse from 40283 -> 76305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40283, + "TargetID": 76305, + "Directional": true + }] + }, { + "ID": 9549, + "SourceStructureID": 5562, + "TargetStructureID": 76310, + "Label": "5562-76310 via Ribbon Synapse from 40285 -> 76312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40285, + "TargetID": 76312, + "Directional": true + }] + }, { + "ID": 9550, + "SourceStructureID": 5562, + "TargetStructureID": 76311, + "Label": "5562-76311 via Ribbon Synapse from 40285 -> 76313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40285, + "TargetID": 76313, + "Directional": true + }] + }, { + "ID": 9551, + "SourceStructureID": 5562, + "TargetStructureID": 76317, + "Label": "5562-76317 via Ribbon Synapse from 40282 -> 76318", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40282, + "TargetID": 76318, + "Directional": true + }] + }, { + "ID": 9552, + "SourceStructureID": 5562, + "TargetStructureID": 76319, + "Label": "5562-76319 via BC Conventional Synapse from 76320 -> 76321", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76320, + "TargetID": 76321, + "Directional": true + }] + }, { + "ID": 9553, + "SourceStructureID": 5562, + "TargetStructureID": 76322, + "Label": "5562-76322 via Ribbon Synapse from 40281 -> 76327", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40281, + "TargetID": 76327, + "Directional": true + }] + }, { + "ID": 9554, + "SourceStructureID": 5562, + "TargetStructureID": 76323, + "Label": "5562-76323 via Ribbon Synapse from 40281 -> 76325", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40281, + "TargetID": 76325, + "Directional": true + }] + }, { + "ID": 9555, + "SourceStructureID": 5562, + "TargetStructureID": 76324, + "Label": "5562-76324 via Ribbon Synapse from 40281 -> 76326", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40281, + "TargetID": 76326, + "Directional": true + }] + }, { + "ID": 9556, + "SourceStructureID": 5562, + "TargetStructureID": 76336, + "Label": "5562-76336 via Ribbon Synapse from 40280 -> 76339", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40280, + "TargetID": 76339, + "Directional": true + }] + }, { + "ID": 9557, + "SourceStructureID": 5562, + "TargetStructureID": 76337, + "Label": "5562-76337 via Ribbon Synapse from 40280 -> 76338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40280, + "TargetID": 76338, + "Directional": true + }] + }, { + "ID": 9558, + "SourceStructureID": 5562, + "TargetStructureID": 76340, + "Label": "5562-76340 via Ribbon Synapse from 40280 -> 76341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40280, + "TargetID": 76341, + "Directional": true + }] + }, { + "ID": 9559, + "SourceStructureID": 5562, + "TargetStructureID": 76365, + "Label": "5562-76365 via Ribbon Synapse from 40275 -> 76366", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40275, + "TargetID": 76366, + "Directional": true + }] + }, { + "ID": 9560, + "SourceStructureID": 5562, + "TargetStructureID": 76367, + "Label": "5562-76367 via BC Conventional Synapse from 76369 -> 76370", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76369, + "TargetID": 76370, + "Directional": true + }] + }, { + "ID": 9561, + "SourceStructureID": 5562, + "TargetStructureID": 76384, + "Label": "5562-76384 via Ribbon Synapse from 31044 -> 76385", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31044, + "TargetID": 76385, + "Directional": true + }] + }, { + "ID": 9562, + "SourceStructureID": 5562, + "TargetStructureID": 76391, + "Label": "5562-76391 via Ribbon Synapse from 40270 -> 76393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40270, + "TargetID": 76393, + "Directional": true + }] + }, { + "ID": 9563, + "SourceStructureID": 5562, + "TargetStructureID": 76394, + "Label": "5562-76394 via Ribbon Synapse from 40270 -> 76395", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40270, + "TargetID": 76395, + "Directional": true + }] + }, { + "ID": 9564, + "SourceStructureID": 5562, + "TargetStructureID": 76403, + "Label": "5562-76403 via BC Conventional Synapse from 76404 -> 76405", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76404, + "TargetID": 76405, + "Directional": true + }] + }, { + "ID": 9565, + "SourceStructureID": 5562, + "TargetStructureID": 76406, + "Label": "5562-76406 via Ribbon Synapse from 40269 -> 76408", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40269, + "TargetID": 76408, + "Directional": true + }] + }, { + "ID": 9566, + "SourceStructureID": 5562, + "TargetStructureID": 76409, + "Label": "5562-76409 via Ribbon Synapse from 40267 -> 76416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40267, + "TargetID": 76416, + "Directional": true + }] + }, { + "ID": 9567, + "SourceStructureID": 5562, + "TargetStructureID": 76414, + "Label": "5562-76414 via Ribbon Synapse from 40267 -> 76415", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40267, + "TargetID": 76415, + "Directional": true + }] + }, { + "ID": 9568, + "SourceStructureID": 5562, + "TargetStructureID": 76419, + "Label": "5562-76419 via Ribbon Synapse from 40267 -> 76420", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40267, + "TargetID": 76420, + "Directional": true + }] + }, { + "ID": 9569, + "SourceStructureID": 5562, + "TargetStructureID": 76430, + "Label": "5562-76430 via Ribbon Synapse from 40289 -> 76434", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40289, + "TargetID": 76434, + "Directional": true + }] + }, { + "ID": 9570, + "SourceStructureID": 5562, + "TargetStructureID": 76432, + "Label": "5562-76432 via Ribbon Synapse from 40289 -> 76437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40289, + "TargetID": 76437, + "Directional": true + }] + }, { + "ID": 9571, + "SourceStructureID": 5562, + "TargetStructureID": 76433, + "Label": "5562-76433 via Ribbon Synapse from 40289 -> 76435", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40289, + "TargetID": 76435, + "Directional": true + }] + }, { + "ID": 9572, + "SourceStructureID": 5562, + "TargetStructureID": 76446, + "Label": "5562-76446 via Ribbon Synapse from 76514 -> 76515", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76514, + "TargetID": 76515, + "Directional": true + }] + }, { + "ID": 9573, + "SourceStructureID": 5562, + "TargetStructureID": 76450, + "Label": "5562-76450 via Ribbon Synapse from 40292 -> 76451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40292, + "TargetID": 76451, + "Directional": true + }] + }, { + "ID": 9574, + "SourceStructureID": 5562, + "TargetStructureID": 76452, + "Label": "5562-76452 via Ribbon Synapse from 40292 -> 76453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40292, + "TargetID": 76453, + "Directional": true + }] + }, { + "ID": 9575, + "SourceStructureID": 5562, + "TargetStructureID": 76457, + "Label": "5562-76457 via BC Conventional Synapse from 76456 -> 76458", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76456, + "TargetID": 76458, + "Directional": true + }] + }, { + "ID": 9576, + "SourceStructureID": 5562, + "TargetStructureID": 76510, + "Label": "5562-76510 via Unknown from 76509 -> 76511", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 76509, + "TargetID": 76511, + "Directional": true + }] + }, { + "ID": 9577, + "SourceStructureID": 5562, + "TargetStructureID": 76526, + "Label": "5562-76526 via Ribbon Synapse from 49397 -> 76527", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49397, + "TargetID": 76527, + "Directional": true + }] + }, { + "ID": 9578, + "SourceStructureID": 5562, + "TargetStructureID": 76531, + "Label": "5562-76531 via Ribbon Synapse from 49397 -> 76532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49397, + "TargetID": 76532, + "Directional": true + }] + }, { + "ID": 9579, + "SourceStructureID": 5562, + "TargetStructureID": 76545, + "Label": "5562-76545 via Ribbon Synapse from 63212 -> 76546", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63212, + "TargetID": 76546, + "Directional": true + }] + }, { + "ID": 9580, + "SourceStructureID": 5562, + "TargetStructureID": 76548, + "Label": "5562-76548 via Ribbon Synapse from 63211 -> 76549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63211, + "TargetID": 76549, + "Directional": true + }] + }, { + "ID": 9581, + "SourceStructureID": 5562, + "TargetStructureID": 76561, + "Label": "5562-76561 via BC Conventional Synapse from 76560 -> 76562", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76560, + "TargetID": 76562, + "Directional": true + }] + }, { + "ID": 9582, + "SourceStructureID": 5562, + "TargetStructureID": 76573, + "Label": "5562-76573 via Ribbon Synapse from 49395 -> 76575", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49395, + "TargetID": 76575, + "Directional": true + }] + }, { + "ID": 9583, + "SourceStructureID": 5562, + "TargetStructureID": 76574, + "Label": "5562-76574 via Ribbon Synapse from 49395 -> 76576", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49395, + "TargetID": 76576, + "Directional": true + }] + }, { + "ID": 9584, + "SourceStructureID": 5562, + "TargetStructureID": 76593, + "Label": "5562-76593 via Ribbon Synapse from 49393 -> 76602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49393, + "TargetID": 76602, + "Directional": true + }] + }, { + "ID": 9585, + "SourceStructureID": 5562, + "TargetStructureID": 76600, + "Label": "5562-76600 via Ribbon Synapse from 49393 -> 76601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49393, + "TargetID": 76601, + "Directional": true + }] + }, { + "ID": 9586, + "SourceStructureID": 5562, + "TargetStructureID": 76610, + "Label": "5562-76610 via Unknown from 76608 -> 76611", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 76608, + "TargetID": 76611, + "Directional": true + }] + }, { + "ID": 9587, + "SourceStructureID": 5562, + "TargetStructureID": 76619, + "Label": "5562-76619 via Ribbon Synapse from 63215 -> 76624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63215, + "TargetID": 76624, + "Directional": true + }] + }, { + "ID": 9588, + "SourceStructureID": 5562, + "TargetStructureID": 76620, + "Label": "5562-76620 via Ribbon Synapse from 63215 -> 76623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63215, + "TargetID": 76623, + "Directional": true + }] + }, { + "ID": 9589, + "SourceStructureID": 5562, + "TargetStructureID": 76625, + "Label": "5562-76625 via BC Conventional Synapse from 76626 -> 76627", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76626, + "TargetID": 76627, + "Directional": true + }] + }, { + "ID": 9590, + "SourceStructureID": 5562, + "TargetStructureID": 76646, + "Label": "5562-76646 via Ribbon Synapse from 49392 -> 76647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49392, + "TargetID": 76647, + "Directional": true + }] + }, { + "ID": 9591, + "SourceStructureID": 5562, + "TargetStructureID": 76653, + "Label": "5562-76653 via BC Conventional Synapse from 76652 -> 92085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76652, + "TargetID": 92085, + "Directional": true + }] + }, { + "ID": 9592, + "SourceStructureID": 5562, + "TargetStructureID": 76663, + "Label": "5562-76663 via Ribbon Synapse from 31301 -> 76664", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31301, + "TargetID": 76664, + "Directional": true + }] + }, { + "ID": 9593, + "SourceStructureID": 5562, + "TargetStructureID": 76665, + "Label": "5562-76665 via Ribbon Synapse from 31301 -> 76666", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31301, + "TargetID": 76666, + "Directional": true + }] + }, { + "ID": 9594, + "SourceStructureID": 5562, + "TargetStructureID": 76671, + "Label": "5562-76671 via BC Conventional Synapse from 76672 -> 76673", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76672, + "TargetID": 76673, + "Directional": true + }] + }, { + "ID": 9595, + "SourceStructureID": 5562, + "TargetStructureID": 76677, + "Label": "5562-76677 via Ribbon Synapse from 76676 -> 76679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76676, + "TargetID": 76679, + "Directional": true + }] + }, { + "ID": 9596, + "SourceStructureID": 5562, + "TargetStructureID": 76704, + "Label": "5562-76704 via BC Conventional Synapse from 76705 -> 76706", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76705, + "TargetID": 76706, + "Directional": true + }] + }, { + "ID": 9597, + "SourceStructureID": 5562, + "TargetStructureID": 76711, + "Label": "5562-76711 via Ribbon Synapse from 49391 -> 76712", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49391, + "TargetID": 76712, + "Directional": true + }] + }, { + "ID": 9598, + "SourceStructureID": 5562, + "TargetStructureID": 76724, + "Label": "5562-76724 via Ribbon Synapse from 47311 -> 76716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47311, + "TargetID": 76716, + "Directional": true + }] + }, { + "ID": 9599, + "SourceStructureID": 5562, + "TargetStructureID": 76730, + "Label": "5562-76730 via Ribbon Synapse from 47359 -> 76731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47359, + "TargetID": 76731, + "Directional": true + }] + }, { + "ID": 9600, + "SourceStructureID": 5562, + "TargetStructureID": 76732, + "Label": "5562-76732 via Ribbon Synapse from 47359 -> 76734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47359, + "TargetID": 76734, + "Directional": true + }] + }, { + "ID": 9601, + "SourceStructureID": 5562, + "TargetStructureID": 76904, + "Label": "5562-76904 via Ribbon Synapse from 47305 -> 76905", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47305, + "TargetID": 76905, + "Directional": true + }] + }, { + "ID": 9602, + "SourceStructureID": 5562, + "TargetStructureID": 76917, + "Label": "5562-76917 via Ribbon Synapse from 134311 -> 76918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134311, + "TargetID": 76918, + "Directional": true + }] + }, { + "ID": 9603, + "SourceStructureID": 5562, + "TargetStructureID": 76956, + "Label": "5562-76956 via Ribbon Synapse from 63233 -> 76957", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63233, + "TargetID": 76957, + "Directional": true + }] + }, { + "ID": 9604, + "SourceStructureID": 5562, + "TargetStructureID": 77103, + "Label": "5562-77103 via Ribbon Synapse from 63233 -> 77104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63233, + "TargetID": 77104, + "Directional": true + }] + }, { + "ID": 9605, + "SourceStructureID": 5562, + "TargetStructureID": 77105, + "Label": "5562-77105 via Ribbon Synapse from 63233 -> 77106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63233, + "TargetID": 77106, + "Directional": true + }] + }, { + "ID": 9606, + "SourceStructureID": 5562, + "TargetStructureID": 77109, + "Label": "5562-77109 via Ribbon Synapse from 63230 -> 77112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63230, + "TargetID": 77112, + "Directional": true + }] + }, { + "ID": 9607, + "SourceStructureID": 5562, + "TargetStructureID": 77110, + "Label": "5562-77110 via Ribbon Synapse from 63230 -> 77111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63230, + "TargetID": 77111, + "Directional": true + }] + }, { + "ID": 9608, + "SourceStructureID": 5562, + "TargetStructureID": 77130, + "Label": "5562-77130 via Ribbon Synapse from 31296 -> 77131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31296, + "TargetID": 77131, + "Directional": true + }] + }, { + "ID": 9609, + "SourceStructureID": 5562, + "TargetStructureID": 77132, + "Label": "5562-77132 via Ribbon Synapse from 31296 -> 77133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31296, + "TargetID": 77133, + "Directional": true + }] + }, { + "ID": 9610, + "SourceStructureID": 5562, + "TargetStructureID": 77134, + "Label": "5562-77134 via BC Conventional Synapse from 77136 -> 77135", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77136, + "TargetID": 77135, + "Directional": true + }] + }, { + "ID": 9611, + "SourceStructureID": 5562, + "TargetStructureID": 77137, + "Label": "5562-77137 via Ribbon Synapse from 134318 -> 134320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134318, + "TargetID": 134320, + "Directional": true + }] + }, { + "ID": 9612, + "SourceStructureID": 5562, + "TargetStructureID": 77149, + "Label": "5562-77149 via BC Conventional Synapse from 81505 -> 81506", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81505, + "TargetID": 81506, + "Directional": true + }] + }, { + "ID": 9613, + "SourceStructureID": 5562, + "TargetStructureID": 77172, + "Label": "5562-77172 via Ribbon Synapse from 77205 -> 77208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77205, + "TargetID": 77208, + "Directional": true + }] + }, { + "ID": 9614, + "SourceStructureID": 5562, + "TargetStructureID": 77175, + "Label": "5562-77175 via Ribbon Synapse from 31291 -> 77176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31291, + "TargetID": 77176, + "Directional": true + }] + }, { + "ID": 9615, + "SourceStructureID": 5562, + "TargetStructureID": 77183, + "Label": "5562-77183 via Ribbon Synapse from 31293 -> 77184", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31293, + "TargetID": 77184, + "Directional": true + }] + }, { + "ID": 9616, + "SourceStructureID": 5562, + "TargetStructureID": 77186, + "Label": "5562-77186 via Ribbon Synapse from 134318 -> 134319", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134318, + "TargetID": 134319, + "Directional": true + }] + }, { + "ID": 9617, + "SourceStructureID": 5562, + "TargetStructureID": 77206, + "Label": "5562-77206 via Ribbon Synapse from 77205 -> 77207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77205, + "TargetID": 77207, + "Directional": true + }] + }, { + "ID": 9618, + "SourceStructureID": 5562, + "TargetStructureID": 77212, + "Label": "5562-77212 via Ribbon Synapse from 77213 -> 77214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77213, + "TargetID": 77214, + "Directional": true + }] + }, { + "ID": 9619, + "SourceStructureID": 5562, + "TargetStructureID": 77215, + "Label": "5562-77215 via Ribbon Synapse from 77213 -> 77216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77213, + "TargetID": 77216, + "Directional": true + }] + }, { + "ID": 9620, + "SourceStructureID": 5562, + "TargetStructureID": 77228, + "Label": "5562-77228 via Ribbon Synapse from 77231 -> 77234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77231, + "TargetID": 77234, + "Directional": true + }] + }, { + "ID": 9621, + "SourceStructureID": 5562, + "TargetStructureID": 77232, + "Label": "5562-77232 via Ribbon Synapse from 77231 -> 77233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77231, + "TargetID": 77233, + "Directional": true + }] + }, { + "ID": 9622, + "SourceStructureID": 5562, + "TargetStructureID": 77246, + "Label": "5562-77246 via Ribbon Synapse from 77245 -> 77247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77245, + "TargetID": 77247, + "Directional": true + }] + }, { + "ID": 9623, + "SourceStructureID": 5562, + "TargetStructureID": 77259, + "Label": "5562-77259 via Unknown from 77258 -> 77260", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 77258, + "TargetID": 77260, + "Directional": true + }] + }, { + "ID": 9624, + "SourceStructureID": 5562, + "TargetStructureID": 77272, + "Label": "5562-77272 via Ribbon Synapse from 49562 -> 77273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49562, + "TargetID": 77273, + "Directional": true + }] + }, { + "ID": 9625, + "SourceStructureID": 5562, + "TargetStructureID": 77274, + "Label": "5562-77274 via Ribbon Synapse from 49562 -> 77275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49562, + "TargetID": 77275, + "Directional": true + }] + }, { + "ID": 9626, + "SourceStructureID": 5562, + "TargetStructureID": 77276, + "Label": "5562-77276 via Ribbon Synapse from 49562 -> 77277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49562, + "TargetID": 77277, + "Directional": true + }] + }, { + "ID": 9627, + "SourceStructureID": 5562, + "TargetStructureID": 77304, + "Label": "5562-77304 via Ribbon Synapse from 49559 -> 77307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49559, + "TargetID": 77307, + "Directional": true + }] + }, { + "ID": 9628, + "SourceStructureID": 5562, + "TargetStructureID": 77305, + "Label": "5562-77305 via Ribbon Synapse from 49559 -> 77306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49559, + "TargetID": 77306, + "Directional": true + }] + }, { + "ID": 9629, + "SourceStructureID": 5562, + "TargetStructureID": 77313, + "Label": "5562-77313 via BC Conventional Synapse from 77315 -> 77314", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77315, + "TargetID": 77314, + "Directional": true + }] + }, { + "ID": 9630, + "SourceStructureID": 5562, + "TargetStructureID": 77316, + "Label": "5562-77316 via Ribbon Synapse from 25324 -> 77320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25324, + "TargetID": 77320, + "Directional": true + }] + }, { + "ID": 9631, + "SourceStructureID": 5562, + "TargetStructureID": 77321, + "Label": "5562-77321 via Ribbon Synapse from 25324 -> 77322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25324, + "TargetID": 77322, + "Directional": true + }] + }, { + "ID": 9632, + "SourceStructureID": 5562, + "TargetStructureID": 77441, + "Label": "5562-77441 via Ribbon Synapse from 49563 -> 77443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49563, + "TargetID": 77443, + "Directional": true + }] + }, { + "ID": 9633, + "SourceStructureID": 5562, + "TargetStructureID": 77463, + "Label": "5562-77463 via Ribbon Synapse from 77467 -> 77468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77467, + "TargetID": 77468, + "Directional": true + }] + }, { + "ID": 9634, + "SourceStructureID": 5562, + "TargetStructureID": 77479, + "Label": "5562-77479 via Ribbon Synapse from 77471 -> 77480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77471, + "TargetID": 77480, + "Directional": true + }] + }, { + "ID": 9635, + "SourceStructureID": 5562, + "TargetStructureID": 77481, + "Label": "5562-77481 via Ribbon Synapse from 77471 -> 77482", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77471, + "TargetID": 77482, + "Directional": true + }] + }, { + "ID": 9636, + "SourceStructureID": 5562, + "TargetStructureID": 77487, + "Label": "5562-77487 via Ribbon Synapse from 77483 -> 77491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77483, + "TargetID": 77491, + "Directional": true + }] + }, { + "ID": 9637, + "SourceStructureID": 5562, + "TargetStructureID": 77488, + "Label": "5562-77488 via Ribbon Synapse from 77483 -> 77489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77483, + "TargetID": 77489, + "Directional": true + }] + }, { + "ID": 9638, + "SourceStructureID": 5562, + "TargetStructureID": 77490, + "Label": "5562-77490 via BC Conventional Synapse from 78320 -> 78321", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78320, + "TargetID": 78321, + "Directional": true + }] + }, { + "ID": 9639, + "SourceStructureID": 5562, + "TargetStructureID": 77495, + "Label": "5562-77495 via Ribbon Synapse from 77494 -> 77498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77494, + "TargetID": 77498, + "Directional": true + }] + }, { + "ID": 9640, + "SourceStructureID": 5562, + "TargetStructureID": 77496, + "Label": "5562-77496 via Ribbon Synapse from 77494 -> 77497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77494, + "TargetID": 77497, + "Directional": true + }] + }, { + "ID": 9641, + "SourceStructureID": 5562, + "TargetStructureID": 77500, + "Label": "5562-77500 via Ribbon Synapse from 77499 -> 77501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77499, + "TargetID": 77501, + "Directional": true + }] + }, { + "ID": 9642, + "SourceStructureID": 5562, + "TargetStructureID": 77502, + "Label": "5562-77502 via Ribbon Synapse from 77499 -> 77503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77499, + "TargetID": 77503, + "Directional": true + }] + }, { + "ID": 9643, + "SourceStructureID": 5562, + "TargetStructureID": 77525, + "Label": "5562-77525 via Ribbon Synapse from 77526 -> 77527", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77526, + "TargetID": 77527, + "Directional": true + }] + }, { + "ID": 9644, + "SourceStructureID": 5562, + "TargetStructureID": 77545, + "Label": "5562-77545 via Ribbon Synapse from 76853 -> 77546", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76853, + "TargetID": 77546, + "Directional": true + }] + }, { + "ID": 9645, + "SourceStructureID": 5562, + "TargetStructureID": 77550, + "Label": "5562-77550 via BC Conventional Synapse from 77552 -> 77551", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77552, + "TargetID": 77551, + "Directional": true + }] + }, { + "ID": 9646, + "SourceStructureID": 5562, + "TargetStructureID": 77589, + "Label": "5562-77589 via BC Conventional Synapse from 77591 -> 77592", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77591, + "TargetID": 77592, + "Directional": true + }] + }, { + "ID": 9647, + "SourceStructureID": 5562, + "TargetStructureID": 77607, + "Label": "5562-77607 via Ribbon Synapse from 63252 -> 77608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63252, + "TargetID": 77608, + "Directional": true + }] + }, { + "ID": 9648, + "SourceStructureID": 5562, + "TargetStructureID": 77612, + "Label": "5562-77612 via BC Conventional Synapse from 77723 -> 77724", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77723, + "TargetID": 77724, + "Directional": true + }] + }, { + "ID": 9649, + "SourceStructureID": 5562, + "TargetStructureID": 77747, + "Label": "5562-77747 via BC Conventional Synapse from 77748 -> 77749", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77748, + "TargetID": 77749, + "Directional": true + }] + }, { + "ID": 9650, + "SourceStructureID": 5562, + "TargetStructureID": 77756, + "Label": "5562-77756 via Ribbon Synapse from 63254 -> 77761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63254, + "TargetID": 77761, + "Directional": true + }] + }, { + "ID": 9651, + "SourceStructureID": 5562, + "TargetStructureID": 77757, + "Label": "5562-77757 via Ribbon Synapse from 63254 -> 77760", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63254, + "TargetID": 77760, + "Directional": true + }] + }, { + "ID": 9652, + "SourceStructureID": 5562, + "TargetStructureID": 77758, + "Label": "5562-77758 via Ribbon Synapse from 63254 -> 77759", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63254, + "TargetID": 77759, + "Directional": true + }] + }, { + "ID": 9653, + "SourceStructureID": 5562, + "TargetStructureID": 77762, + "Label": "5562-77762 via Ribbon Synapse from 31051 -> 77763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31051, + "TargetID": 77763, + "Directional": true + }] + }, { + "ID": 9654, + "SourceStructureID": 5562, + "TargetStructureID": 77764, + "Label": "5562-77764 via Ribbon Synapse from 31052 -> 77767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31052, + "TargetID": 77767, + "Directional": true + }] + }, { + "ID": 9655, + "SourceStructureID": 5562, + "TargetStructureID": 77765, + "Label": "5562-77765 via Ribbon Synapse from 31052 -> 77766", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31052, + "TargetID": 77766, + "Directional": true + }] + }, { + "ID": 9656, + "SourceStructureID": 5562, + "TargetStructureID": 77777, + "Label": "5562-77777 via Ribbon Synapse from 63256 -> 77778, 63256 -> 77779", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63256, + "TargetID": 77778, + "Directional": true + }, { + "SourceID": 63256, + "TargetID": 77779, + "Directional": true + }] + }, { + "ID": 9657, + "SourceStructureID": 5562, + "TargetStructureID": 77780, + "Label": "5562-77780 via Ribbon Synapse from 63256 -> 77781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63256, + "TargetID": 77781, + "Directional": true + }] + }, { + "ID": 9658, + "SourceStructureID": 5562, + "TargetStructureID": 77792, + "Label": "5562-77792 via Ribbon Synapse from 63260 -> 77795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63260, + "TargetID": 77795, + "Directional": true + }] + }, { + "ID": 9659, + "SourceStructureID": 5562, + "TargetStructureID": 77793, + "Label": "5562-77793 via Ribbon Synapse from 63260 -> 77794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63260, + "TargetID": 77794, + "Directional": true + }] + }, { + "ID": 9660, + "SourceStructureID": 5562, + "TargetStructureID": 77800, + "Label": "5562-77800 via Ribbon Synapse from 63264 -> 77802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63264, + "TargetID": 77802, + "Directional": true + }] + }, { + "ID": 9661, + "SourceStructureID": 5562, + "TargetStructureID": 77805, + "Label": "5562-77805 via Ribbon Synapse from 63262 -> 77806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63262, + "TargetID": 77806, + "Directional": true + }] + }, { + "ID": 9662, + "SourceStructureID": 5562, + "TargetStructureID": 77807, + "Label": "5562-77807 via Ribbon Synapse from 37728 -> 77808", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37728, + "TargetID": 77808, + "Directional": true + }] + }, { + "ID": 9663, + "SourceStructureID": 5562, + "TargetStructureID": 77809, + "Label": "5562-77809 via Ribbon Synapse from 37728 -> 77810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37728, + "TargetID": 77810, + "Directional": true + }] + }, { + "ID": 9664, + "SourceStructureID": 5562, + "TargetStructureID": 77836, + "Label": "5562-77836 via Ribbon Synapse from 63267 -> 77837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63267, + "TargetID": 77837, + "Directional": true + }] + }, { + "ID": 9665, + "SourceStructureID": 5562, + "TargetStructureID": 77840, + "Label": "5562-77840 via BC Conventional Synapse from 77860 -> 82414, 93084 -> 93083, 135142 -> 135143", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77860, + "TargetID": 82414, + "Directional": true + }, { + "SourceID": 93084, + "TargetID": 93083, + "Directional": true + }, { + "SourceID": 135142, + "TargetID": 135143, + "Directional": true + }] + }, { + "ID": 9666, + "SourceStructureID": 5562, + "TargetStructureID": 77875, + "Label": "5562-77875 via Ribbon Synapse from 63276 -> 77878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63276, + "TargetID": 77878, + "Directional": true + }] + }, { + "ID": 9667, + "SourceStructureID": 5562, + "TargetStructureID": 77876, + "Label": "5562-77876 via Ribbon Synapse from 63276 -> 77877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63276, + "TargetID": 77877, + "Directional": true + }] + }, { + "ID": 9668, + "SourceStructureID": 5562, + "TargetStructureID": 77896, + "Label": "5562-77896 via Ribbon Synapse from 63279 -> 77897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63279, + "TargetID": 77897, + "Directional": true + }] + }, { + "ID": 9669, + "SourceStructureID": 5562, + "TargetStructureID": 77900, + "Label": "5562-77900 via Ribbon Synapse from 63279 -> 77901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63279, + "TargetID": 77901, + "Directional": true + }] + }, { + "ID": 9670, + "SourceStructureID": 5562, + "TargetStructureID": 78088, + "Label": "5562-78088 via Ribbon Synapse from 31055 -> 78089", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31055, + "TargetID": 78089, + "Directional": true + }] + }, { + "ID": 9671, + "SourceStructureID": 5562, + "TargetStructureID": 78090, + "Label": "5562-78090 via Ribbon Synapse from 31057 -> 78091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31057, + "TargetID": 78091, + "Directional": true + }] + }, { + "ID": 9672, + "SourceStructureID": 5562, + "TargetStructureID": 78098, + "Label": "5562-78098 via BC Conventional Synapse from 63329 -> 82413", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63329, + "TargetID": 82413, + "Directional": true + }] + }, { + "ID": 9673, + "SourceStructureID": 5562, + "TargetStructureID": 78105, + "Label": "5562-78105 via BC Conventional Synapse from 63335 -> 78106", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63335, + "TargetID": 78106, + "Directional": true + }] + }, { + "ID": 9674, + "SourceStructureID": 5562, + "TargetStructureID": 78112, + "Label": "5562-78112 via Ribbon Synapse from 31060 -> 78113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31060, + "TargetID": 78113, + "Directional": true + }] + }, { + "ID": 9675, + "SourceStructureID": 5562, + "TargetStructureID": 78115, + "Label": "5562-78115 via Ribbon Synapse from 63330 -> 78117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63330, + "TargetID": 78117, + "Directional": true + }] + }, { + "ID": 9676, + "SourceStructureID": 5562, + "TargetStructureID": 78124, + "Label": "5562-78124 via Ribbon Synapse from 48473 -> 78133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48473, + "TargetID": 78133, + "Directional": true + }] + }, { + "ID": 9677, + "SourceStructureID": 5562, + "TargetStructureID": 78126, + "Label": "5562-78126 via BC Conventional Synapse from 78848 -> 78849", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78848, + "TargetID": 78849, + "Directional": true + }] + }, { + "ID": 9678, + "SourceStructureID": 5562, + "TargetStructureID": 78134, + "Label": "5562-78134 via Ribbon Synapse from 48473 -> 78135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48473, + "TargetID": 78135, + "Directional": true + }] + }, { + "ID": 9679, + "SourceStructureID": 5562, + "TargetStructureID": 78139, + "Label": "5562-78139 via Ribbon Synapse from 31062 -> 78140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31062, + "TargetID": 78140, + "Directional": true + }] + }, { + "ID": 9680, + "SourceStructureID": 5562, + "TargetStructureID": 78155, + "Label": "5562-78155 via Ribbon Synapse from 63340 -> 78156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63340, + "TargetID": 78156, + "Directional": true + }] + }, { + "ID": 9681, + "SourceStructureID": 5562, + "TargetStructureID": 78166, + "Label": "5562-78166 via Ribbon Synapse from 48463 -> 78167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48463, + "TargetID": 78167, + "Directional": true + }] + }, { + "ID": 9682, + "SourceStructureID": 5562, + "TargetStructureID": 78168, + "Label": "5562-78168 via Ribbon Synapse from 63611 -> 78169", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63611, + "TargetID": 78169, + "Directional": true + }] + }, { + "ID": 9683, + "SourceStructureID": 5562, + "TargetStructureID": 78170, + "Label": "5562-78170 via Ribbon Synapse from 63611 -> 78171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63611, + "TargetID": 78171, + "Directional": true + }] + }, { + "ID": 9684, + "SourceStructureID": 5562, + "TargetStructureID": 78174, + "Label": "5562-78174 via BC Conventional Synapse from 48469 -> 78175", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48469, + "TargetID": 78175, + "Directional": true + }] + }, { + "ID": 9685, + "SourceStructureID": 5562, + "TargetStructureID": 78191, + "Label": "5562-78191 via Ribbon Synapse from 63350 -> 78193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63350, + "TargetID": 78193, + "Directional": true + }] + }, { + "ID": 9686, + "SourceStructureID": 5562, + "TargetStructureID": 78194, + "Label": "5562-78194 via Ribbon Synapse from 63350 -> 78195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63350, + "TargetID": 78195, + "Directional": true + }] + }, { + "ID": 9687, + "SourceStructureID": 5562, + "TargetStructureID": 78196, + "Label": "5562-78196 via Ribbon Synapse from 63350 -> 78197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63350, + "TargetID": 78197, + "Directional": true + }] + }, { + "ID": 9688, + "SourceStructureID": 5562, + "TargetStructureID": 78202, + "Label": "5562-78202 via BC Conventional Synapse from 134447 -> 134448", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134447, + "TargetID": 134448, + "Directional": true + }] + }, { + "ID": 9689, + "SourceStructureID": 5562, + "TargetStructureID": 78205, + "Label": "5562-78205 via Ribbon Synapse from 63354 -> 78206", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63354, + "TargetID": 78206, + "Directional": true + }] + }, { + "ID": 9690, + "SourceStructureID": 5562, + "TargetStructureID": 78220, + "Label": "5562-78220 via Ribbon Synapse from 63354 -> 82475", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63354, + "TargetID": 82475, + "Directional": true + }] + }, { + "ID": 9691, + "SourceStructureID": 5562, + "TargetStructureID": 78222, + "Label": "5562-78222 via BC Conventional Synapse from 78234 -> 78236", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78234, + "TargetID": 78236, + "Directional": true + }] + }, { + "ID": 9692, + "SourceStructureID": 5562, + "TargetStructureID": 78262, + "Label": "5562-78262 via BC Conventional Synapse from 79905 -> 79906", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79905, + "TargetID": 79906, + "Directional": true + }] + }, { + "ID": 9693, + "SourceStructureID": 5562, + "TargetStructureID": 78262, + "Label": "5562-78262 via Ribbon Synapse from 49009 -> 79768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49009, + "TargetID": 79768, + "Directional": true + }] + }, { + "ID": 9694, + "SourceStructureID": 5562, + "TargetStructureID": 78283, + "Label": "5562-78283 via Ribbon Synapse from 63364 -> 78286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63364, + "TargetID": 78286, + "Directional": true + }] + }, { + "ID": 9695, + "SourceStructureID": 5562, + "TargetStructureID": 78284, + "Label": "5562-78284 via Ribbon Synapse from 63364 -> 78285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63364, + "TargetID": 78285, + "Directional": true + }] + }, { + "ID": 9696, + "SourceStructureID": 5562, + "TargetStructureID": 78343, + "Label": "5562-78343 via Ribbon Synapse from 78347 -> 78345", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78347, + "TargetID": 78345, + "Directional": true + }] + }, { + "ID": 9697, + "SourceStructureID": 5562, + "TargetStructureID": 78355, + "Label": "5562-78355 via Ribbon Synapse from 78347 -> 82713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78347, + "TargetID": 82713, + "Directional": true + }] + }, { + "ID": 9698, + "SourceStructureID": 5562, + "TargetStructureID": 78364, + "Label": "5562-78364 via Ribbon Synapse from 63530 -> 78373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63530, + "TargetID": 78373, + "Directional": true + }] + }, { + "ID": 9699, + "SourceStructureID": 5562, + "TargetStructureID": 78374, + "Label": "5562-78374 via BC Conventional Synapse from 78376 -> 78375", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78376, + "TargetID": 78375, + "Directional": true + }] + }, { + "ID": 9700, + "SourceStructureID": 5562, + "TargetStructureID": 78398, + "Label": "5562-78398 via Ribbon Synapse from 31049 -> 78399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31049, + "TargetID": 78399, + "Directional": true + }] + }, { + "ID": 9701, + "SourceStructureID": 5562, + "TargetStructureID": 78400, + "Label": "5562-78400 via Ribbon Synapse from 31049 -> 78401", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31049, + "TargetID": 78401, + "Directional": true + }] + }, { + "ID": 9702, + "SourceStructureID": 5562, + "TargetStructureID": 78469, + "Label": "5562-78469 via Ribbon Synapse from 49537 -> 78470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49537, + "TargetID": 78470, + "Directional": true + }] + }, { + "ID": 9703, + "SourceStructureID": 5562, + "TargetStructureID": 78473, + "Label": "5562-78473 via Ribbon Synapse from 40297 -> 78474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40297, + "TargetID": 78474, + "Directional": true + }] + }, { + "ID": 9704, + "SourceStructureID": 5562, + "TargetStructureID": 78475, + "Label": "5562-78475 via BC Conventional Synapse from 78476 -> 78477", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78476, + "TargetID": 78477, + "Directional": true + }] + }, { + "ID": 9705, + "SourceStructureID": 5562, + "TargetStructureID": 78483, + "Label": "5562-78483 via BC Conventional Synapse from 134461 -> 134462", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134461, + "TargetID": 134462, + "Directional": true + }] + }, { + "ID": 9706, + "SourceStructureID": 5562, + "TargetStructureID": 78493, + "Label": "5562-78493 via Ribbon Synapse from 40298 -> 78494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40298, + "TargetID": 78494, + "Directional": true + }] + }, { + "ID": 9707, + "SourceStructureID": 5562, + "TargetStructureID": 78495, + "Label": "5562-78495 via Ribbon Synapse from 40298 -> 78496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40298, + "TargetID": 78496, + "Directional": true + }] + }, { + "ID": 9708, + "SourceStructureID": 5562, + "TargetStructureID": 78497, + "Label": "5562-78497 via Ribbon Synapse from 40299 -> 78498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40299, + "TargetID": 78498, + "Directional": true + }] + }, { + "ID": 9709, + "SourceStructureID": 5562, + "TargetStructureID": 78499, + "Label": "5562-78499 via Ribbon Synapse from 40299 -> 78500", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40299, + "TargetID": 78500, + "Directional": true + }] + }, { + "ID": 9710, + "SourceStructureID": 5562, + "TargetStructureID": 78514, + "Label": "5562-78514 via Ribbon Synapse from 63646 -> 78516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63646, + "TargetID": 78516, + "Directional": true + }] + }, { + "ID": 9711, + "SourceStructureID": 5562, + "TargetStructureID": 78515, + "Label": "5562-78515 via Ribbon Synapse from 63646 -> 78517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63646, + "TargetID": 78517, + "Directional": true + }] + }, { + "ID": 9712, + "SourceStructureID": 5562, + "TargetStructureID": 78523, + "Label": "5562-78523 via Ribbon Synapse from 63655 -> 78525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63655, + "TargetID": 78525, + "Directional": true + }] + }, { + "ID": 9713, + "SourceStructureID": 5562, + "TargetStructureID": 78548, + "Label": "5562-78548 via BC Conventional Synapse from 63659 -> 78549", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63659, + "TargetID": 78549, + "Directional": true + }] + }, { + "ID": 9714, + "SourceStructureID": 5562, + "TargetStructureID": 78556, + "Label": "5562-78556 via Ribbon Synapse from 40301 -> 78559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40301, + "TargetID": 78559, + "Directional": true + }] + }, { + "ID": 9715, + "SourceStructureID": 5562, + "TargetStructureID": 78557, + "Label": "5562-78557 via Ribbon Synapse from 40301 -> 78558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40301, + "TargetID": 78558, + "Directional": true + }] + }, { + "ID": 9716, + "SourceStructureID": 5562, + "TargetStructureID": 78564, + "Label": "5562-78564 via BC Conventional Synapse from 134463 -> 134464", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134463, + "TargetID": 134464, + "Directional": true + }] + }, { + "ID": 9717, + "SourceStructureID": 5562, + "TargetStructureID": 78582, + "Label": "5562-78582 via BC Conventional Synapse from 93090 -> 93089", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93090, + "TargetID": 93089, + "Directional": true + }] + }, { + "ID": 9718, + "SourceStructureID": 5562, + "TargetStructureID": 78596, + "Label": "5562-78596 via Ribbon Synapse from 63675 -> 78597", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63675, + "TargetID": 78597, + "Directional": true + }] + }, { + "ID": 9719, + "SourceStructureID": 5562, + "TargetStructureID": 78598, + "Label": "5562-78598 via Ribbon Synapse from 63675 -> 78599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63675, + "TargetID": 78599, + "Directional": true + }] + }, { + "ID": 9720, + "SourceStructureID": 5562, + "TargetStructureID": 78600, + "Label": "5562-78600 via Ribbon Synapse from 63673 -> 78601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63673, + "TargetID": 78601, + "Directional": true + }] + }, { + "ID": 9721, + "SourceStructureID": 5562, + "TargetStructureID": 78602, + "Label": "5562-78602 via Ribbon Synapse from 63673 -> 78603", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63673, + "TargetID": 78603, + "Directional": true + }] + }, { + "ID": 9722, + "SourceStructureID": 5562, + "TargetStructureID": 78610, + "Label": "5562-78610 via Ribbon Synapse from 132072 -> 78611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132072, + "TargetID": 78611, + "Directional": true + }] + }, { + "ID": 9723, + "SourceStructureID": 5562, + "TargetStructureID": 78621, + "Label": "5562-78621 via Ribbon Synapse from 63679 -> 78622", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63679, + "TargetID": 78622, + "Directional": true + }] + }, { + "ID": 9724, + "SourceStructureID": 5562, + "TargetStructureID": 78623, + "Label": "5562-78623 via Ribbon Synapse from 63679 -> 78624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63679, + "TargetID": 78624, + "Directional": true + }] + }, { + "ID": 9725, + "SourceStructureID": 5562, + "TargetStructureID": 78626, + "Label": "5562-78626 via BC Conventional Synapse from 78625 -> 78627", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78625, + "TargetID": 78627, + "Directional": true + }] + }, { + "ID": 9726, + "SourceStructureID": 5562, + "TargetStructureID": 78628, + "Label": "5562-78628 via Ribbon Synapse from 63681 -> 78631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63681, + "TargetID": 78631, + "Directional": true + }] + }, { + "ID": 9727, + "SourceStructureID": 5562, + "TargetStructureID": 78629, + "Label": "5562-78629 via Ribbon Synapse from 63681 -> 78630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63681, + "TargetID": 78630, + "Directional": true + }] + }, { + "ID": 9728, + "SourceStructureID": 5562, + "TargetStructureID": 78632, + "Label": "5562-78632 via BC Conventional Synapse from 78633 -> 78634", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78633, + "TargetID": 78634, + "Directional": true + }] + }, { + "ID": 9729, + "SourceStructureID": 5562, + "TargetStructureID": 78635, + "Label": "5562-78635 via Ribbon Synapse from 63680 -> 78636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63680, + "TargetID": 78636, + "Directional": true + }] + }, { + "ID": 9730, + "SourceStructureID": 5562, + "TargetStructureID": 78647, + "Label": "5562-78647 via Ribbon Synapse from 54210 -> 78649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54210, + "TargetID": 78649, + "Directional": true + }] + }, { + "ID": 9731, + "SourceStructureID": 5562, + "TargetStructureID": 78652, + "Label": "5562-78652 via Ribbon Synapse from 49416 -> 78653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49416, + "TargetID": 78653, + "Directional": true + }] + }, { + "ID": 9732, + "SourceStructureID": 5562, + "TargetStructureID": 78656, + "Label": "5562-78656 via Ribbon Synapse from 49417 -> 78657", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49417, + "TargetID": 78657, + "Directional": true + }] + }, { + "ID": 9733, + "SourceStructureID": 5562, + "TargetStructureID": 78658, + "Label": "5562-78658 via Ribbon Synapse from 49417 -> 78659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49417, + "TargetID": 78659, + "Directional": true + }] + }, { + "ID": 9734, + "SourceStructureID": 5562, + "TargetStructureID": 78663, + "Label": "5562-78663 via Ribbon Synapse from 63704 -> 78664", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63704, + "TargetID": 78664, + "Directional": true + }] + }, { + "ID": 9735, + "SourceStructureID": 5562, + "TargetStructureID": 78675, + "Label": "5562-78675 via Ribbon Synapse from 54210 -> 78676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54210, + "TargetID": 78676, + "Directional": true + }] + }, { + "ID": 9736, + "SourceStructureID": 5562, + "TargetStructureID": 78684, + "Label": "5562-78684 via Ribbon Synapse from 49566 -> 78685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49566, + "TargetID": 78685, + "Directional": true + }] + }, { + "ID": 9737, + "SourceStructureID": 5562, + "TargetStructureID": 78699, + "Label": "5562-78699 via Ribbon Synapse from 49567 -> 78700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49567, + "TargetID": 78700, + "Directional": true + }] + }, { + "ID": 9738, + "SourceStructureID": 5562, + "TargetStructureID": 78739, + "Label": "5562-78739 via Ribbon Synapse from 49566 -> 78742", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49566, + "TargetID": 78742, + "Directional": true + }] + }, { + "ID": 9739, + "SourceStructureID": 5562, + "TargetStructureID": 78785, + "Label": "5562-78785 via Ribbon Synapse from 49424 -> 78786", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49424, + "TargetID": 78786, + "Directional": true + }] + }, { + "ID": 9740, + "SourceStructureID": 5562, + "TargetStructureID": 78810, + "Label": "5562-78810 via Ribbon Synapse from 63725 -> 78811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63725, + "TargetID": 78811, + "Directional": true + }] + }, { + "ID": 9741, + "SourceStructureID": 5562, + "TargetStructureID": 78812, + "Label": "5562-78812 via Ribbon Synapse from 63725 -> 78813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63725, + "TargetID": 78813, + "Directional": true + }] + }, { + "ID": 9742, + "SourceStructureID": 5562, + "TargetStructureID": 78825, + "Label": "5562-78825 via Ribbon Synapse from 54212 -> 78828", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54212, + "TargetID": 78828, + "Directional": true + }] + }, { + "ID": 9743, + "SourceStructureID": 5562, + "TargetStructureID": 78826, + "Label": "5562-78826 via Ribbon Synapse from 54212 -> 78827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54212, + "TargetID": 78827, + "Directional": true + }] + }, { + "ID": 9744, + "SourceStructureID": 5562, + "TargetStructureID": 78858, + "Label": "5562-78858 via BC Conventional Synapse from 63747 -> 78859", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63747, + "TargetID": 78859, + "Directional": true + }] + }, { + "ID": 9745, + "SourceStructureID": 5562, + "TargetStructureID": 78864, + "Label": "5562-78864 via BC Conventional Synapse from 134469 -> 134470", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134469, + "TargetID": 134470, + "Directional": true + }] + }, { + "ID": 9746, + "SourceStructureID": 5562, + "TargetStructureID": 78867, + "Label": "5562-78867 via Ribbon Synapse from 31358 -> 78869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31358, + "TargetID": 78869, + "Directional": true + }] + }, { + "ID": 9747, + "SourceStructureID": 5562, + "TargetStructureID": 78870, + "Label": "5562-78870 via Ribbon Synapse from 31359 -> 78871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31359, + "TargetID": 78871, + "Directional": true + }] + }, { + "ID": 9748, + "SourceStructureID": 5562, + "TargetStructureID": 78896, + "Label": "5562-78896 via Ribbon Synapse from 49519 -> 78897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49519, + "TargetID": 78897, + "Directional": true + }] + }, { + "ID": 9749, + "SourceStructureID": 5562, + "TargetStructureID": 78899, + "Label": "5562-78899 via Ribbon Synapse from 49518 -> 78900", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49518, + "TargetID": 78900, + "Directional": true + }] + }, { + "ID": 9750, + "SourceStructureID": 5562, + "TargetStructureID": 78905, + "Label": "5562-78905 via Ribbon Synapse from 49517 -> 78908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49517, + "TargetID": 78908, + "Directional": true + }] + }, { + "ID": 9751, + "SourceStructureID": 5562, + "TargetStructureID": 78906, + "Label": "5562-78906 via Ribbon Synapse from 49517 -> 78907", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49517, + "TargetID": 78907, + "Directional": true + }] + }, { + "ID": 9752, + "SourceStructureID": 5562, + "TargetStructureID": 78909, + "Label": "5562-78909 via Ribbon Synapse from 77467 -> 87516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77467, + "TargetID": 87516, + "Directional": true + }] + }, { + "ID": 9753, + "SourceStructureID": 5562, + "TargetStructureID": 78920, + "Label": "5562-78920 via Ribbon Synapse from 63762 -> 78923", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63762, + "TargetID": 78923, + "Directional": true + }] + }, { + "ID": 9754, + "SourceStructureID": 5562, + "TargetStructureID": 78921, + "Label": "5562-78921 via Ribbon Synapse from 63762 -> 78922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63762, + "TargetID": 78922, + "Directional": true + }] + }, { + "ID": 9755, + "SourceStructureID": 5562, + "TargetStructureID": 78926, + "Label": "5562-78926 via Ribbon Synapse from 63767 -> 78927", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63767, + "TargetID": 78927, + "Directional": true + }] + }, { + "ID": 9756, + "SourceStructureID": 5562, + "TargetStructureID": 78928, + "Label": "5562-78928 via Ribbon Synapse from 63767 -> 78929", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63767, + "TargetID": 78929, + "Directional": true + }] + }, { + "ID": 9757, + "SourceStructureID": 5562, + "TargetStructureID": 78938, + "Label": "5562-78938 via Ribbon Synapse from 63764 -> 78939", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63764, + "TargetID": 78939, + "Directional": true + }] + }, { + "ID": 9758, + "SourceStructureID": 5562, + "TargetStructureID": 78946, + "Label": "5562-78946 via Ribbon Synapse from 63771 -> 78953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63771, + "TargetID": 78953, + "Directional": true + }] + }, { + "ID": 9759, + "SourceStructureID": 5562, + "TargetStructureID": 78954, + "Label": "5562-78954 via Ribbon Synapse from 63771 -> 78955", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63771, + "TargetID": 78955, + "Directional": true + }] + }, { + "ID": 9760, + "SourceStructureID": 5562, + "TargetStructureID": 78961, + "Label": "5562-78961 via Ribbon Synapse from 49436 -> 78962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49436, + "TargetID": 78962, + "Directional": true + }] + }, { + "ID": 9761, + "SourceStructureID": 5562, + "TargetStructureID": 78974, + "Label": "5562-78974 via BC Conventional Synapse from 63776 -> 78975", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63776, + "TargetID": 78975, + "Directional": true + }] + }, { + "ID": 9762, + "SourceStructureID": 5562, + "TargetStructureID": 78982, + "Label": "5562-78982 via BC Conventional Synapse from 78983 -> 78984", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78983, + "TargetID": 78984, + "Directional": true + }] + }, { + "ID": 9763, + "SourceStructureID": 5562, + "TargetStructureID": 78985, + "Label": "5562-78985 via Ribbon Synapse from 63783 -> 78986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63783, + "TargetID": 78986, + "Directional": true + }] + }, { + "ID": 9764, + "SourceStructureID": 5562, + "TargetStructureID": 78997, + "Label": "5562-78997 via Ribbon Synapse from 63787 -> 78998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63787, + "TargetID": 78998, + "Directional": true + }] + }, { + "ID": 9765, + "SourceStructureID": 5562, + "TargetStructureID": 79000, + "Label": "5562-79000 via BC Conventional Synapse from 134473 -> 134474", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134473, + "TargetID": 134474, + "Directional": true + }] + }, { + "ID": 9766, + "SourceStructureID": 5562, + "TargetStructureID": 79013, + "Label": "5562-79013 via Ribbon Synapse from 49106 -> 79014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49106, + "TargetID": 79014, + "Directional": true + }] + }, { + "ID": 9767, + "SourceStructureID": 5562, + "TargetStructureID": 79015, + "Label": "5562-79015 via Ribbon Synapse from 49106 -> 79016", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49106, + "TargetID": 79016, + "Directional": true + }] + }, { + "ID": 9768, + "SourceStructureID": 5562, + "TargetStructureID": 79027, + "Label": "5562-79027 via BC Conventional Synapse from 134475 -> 134476", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134475, + "TargetID": 134476, + "Directional": true + }] + }, { + "ID": 9769, + "SourceStructureID": 5562, + "TargetStructureID": 79160, + "Label": "5562-79160 via BC Conventional Synapse from 79158 -> 79161", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79158, + "TargetID": 79161, + "Directional": true + }] + }, { + "ID": 9770, + "SourceStructureID": 5562, + "TargetStructureID": 79166, + "Label": "5562-79166 via Ribbon Synapse from 63835 -> 79167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63835, + "TargetID": 79167, + "Directional": true + }] + }, { + "ID": 9771, + "SourceStructureID": 5562, + "TargetStructureID": 79185, + "Label": "5562-79185 via Ribbon Synapse from 63838 -> 79186", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63838, + "TargetID": 79186, + "Directional": true + }] + }, { + "ID": 9772, + "SourceStructureID": 5562, + "TargetStructureID": 79187, + "Label": "5562-79187 via Ribbon Synapse from 63838 -> 79188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63838, + "TargetID": 79188, + "Directional": true + }] + }, { + "ID": 9773, + "SourceStructureID": 5562, + "TargetStructureID": 79194, + "Label": "5562-79194 via Ribbon Synapse from 63844 -> 79195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63844, + "TargetID": 79195, + "Directional": true + }] + }, { + "ID": 9774, + "SourceStructureID": 5562, + "TargetStructureID": 79202, + "Label": "5562-79202 via Ribbon Synapse from 63847 -> 79203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63847, + "TargetID": 79203, + "Directional": true + }] + }, { + "ID": 9775, + "SourceStructureID": 5562, + "TargetStructureID": 79204, + "Label": "5562-79204 via BC Conventional Synapse from 63850 -> 79205", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63850, + "TargetID": 79205, + "Directional": true + }] + }, { + "ID": 9776, + "SourceStructureID": 5562, + "TargetStructureID": 79209, + "Label": "5562-79209 via Ribbon Synapse from 134309 -> 79210", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134309, + "TargetID": 79210, + "Directional": true + }] + }, { + "ID": 9777, + "SourceStructureID": 5562, + "TargetStructureID": 79211, + "Label": "5562-79211 via Ribbon Synapse from 134309 -> 79212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134309, + "TargetID": 79212, + "Directional": true + }] + }, { + "ID": 9778, + "SourceStructureID": 5562, + "TargetStructureID": 79217, + "Label": "5562-79217 via BC Conventional Synapse from 63840 -> 79218", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63840, + "TargetID": 79218, + "Directional": true + }] + }, { + "ID": 9779, + "SourceStructureID": 5562, + "TargetStructureID": 79232, + "Label": "5562-79232 via Ribbon Synapse from 48960 -> 79234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48960, + "TargetID": 79234, + "Directional": true + }] + }, { + "ID": 9780, + "SourceStructureID": 5562, + "TargetStructureID": 79235, + "Label": "5562-79235 via Ribbon Synapse from 48960 -> 79236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48960, + "TargetID": 79236, + "Directional": true + }] + }, { + "ID": 9781, + "SourceStructureID": 5562, + "TargetStructureID": 79242, + "Label": "5562-79242 via Ribbon Synapse from 36522 -> 79243", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36522, + "TargetID": 79243, + "Directional": true + }] + }, { + "ID": 9782, + "SourceStructureID": 5562, + "TargetStructureID": 79244, + "Label": "5562-79244 via Ribbon Synapse from 63862 -> 79249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63862, + "TargetID": 79249, + "Directional": true + }] + }, { + "ID": 9783, + "SourceStructureID": 5562, + "TargetStructureID": 79245, + "Label": "5562-79245 via Ribbon Synapse from 63862 -> 79246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63862, + "TargetID": 79246, + "Directional": true + }] + }, { + "ID": 9784, + "SourceStructureID": 5562, + "TargetStructureID": 79247, + "Label": "5562-79247 via Ribbon Synapse from 63862 -> 79248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63862, + "TargetID": 79248, + "Directional": true + }] + }, { + "ID": 9785, + "SourceStructureID": 5562, + "TargetStructureID": 79618, + "Label": "5562-79618 via Ribbon Synapse from 63859 -> 79619", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63859, + "TargetID": 79619, + "Directional": true + }] + }, { + "ID": 9786, + "SourceStructureID": 5562, + "TargetStructureID": 79625, + "Label": "5562-79625 via Ribbon Synapse from 63860 -> 79628", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63860, + "TargetID": 79628, + "Directional": true + }] + }, { + "ID": 9787, + "SourceStructureID": 5562, + "TargetStructureID": 79626, + "Label": "5562-79626 via Ribbon Synapse from 63860 -> 79627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63860, + "TargetID": 79627, + "Directional": true + }] + }, { + "ID": 9788, + "SourceStructureID": 5562, + "TargetStructureID": 79629, + "Label": "5562-79629 via Ribbon Synapse from 48959 -> 79642, 63876 -> 79630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48959, + "TargetID": 79642, + "Directional": true + }, { + "SourceID": 63876, + "TargetID": 79630, + "Directional": true + }] + }, { + "ID": 9789, + "SourceStructureID": 5562, + "TargetStructureID": 79631, + "Label": "5562-79631 via Ribbon Synapse from 63876 -> 79632", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63876, + "TargetID": 79632, + "Directional": true + }] + }, { + "ID": 9790, + "SourceStructureID": 5562, + "TargetStructureID": 79635, + "Label": "5562-79635 via Ribbon Synapse from 48959 -> 79636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48959, + "TargetID": 79636, + "Directional": true + }] + }, { + "ID": 9791, + "SourceStructureID": 5562, + "TargetStructureID": 79639, + "Label": "5562-79639 via Ribbon Synapse from 48959 -> 79640", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48959, + "TargetID": 79640, + "Directional": true + }] + }, { + "ID": 9792, + "SourceStructureID": 5562, + "TargetStructureID": 79645, + "Label": "5562-79645 via BC Conventional Synapse from 134490 -> 134489", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134490, + "TargetID": 134489, + "Directional": true + }] + }, { + "ID": 9793, + "SourceStructureID": 5562, + "TargetStructureID": 79651, + "Label": "5562-79651 via BC Conventional Synapse from 79652 -> 79653", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79652, + "TargetID": 79653, + "Directional": true + }] + }, { + "ID": 9794, + "SourceStructureID": 5562, + "TargetStructureID": 79654, + "Label": "5562-79654 via Ribbon Synapse from 48948 -> 79655", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48948, + "TargetID": 79655, + "Directional": true + }] + }, { + "ID": 9795, + "SourceStructureID": 5562, + "TargetStructureID": 79669, + "Label": "5562-79669 via BC Conventional Synapse from 134492 -> 134491", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134492, + "TargetID": 134491, + "Directional": true + }] + }, { + "ID": 9796, + "SourceStructureID": 5562, + "TargetStructureID": 79678, + "Label": "5562-79678 via Ribbon Synapse from 63878 -> 79679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63878, + "TargetID": 79679, + "Directional": true + }] + }, { + "ID": 9797, + "SourceStructureID": 5562, + "TargetStructureID": 79680, + "Label": "5562-79680 via Ribbon Synapse from 63878 -> 79681", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63878, + "TargetID": 79681, + "Directional": true + }] + }, { + "ID": 9798, + "SourceStructureID": 5562, + "TargetStructureID": 79688, + "Label": "5562-79688 via Ribbon Synapse from 49103 -> 79689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49103, + "TargetID": 79689, + "Directional": true + }] + }, { + "ID": 9799, + "SourceStructureID": 5562, + "TargetStructureID": 79690, + "Label": "5562-79690 via BC Conventional Synapse from 134494 -> 134493", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134494, + "TargetID": 134493, + "Directional": true + }] + }, { + "ID": 9800, + "SourceStructureID": 5562, + "TargetStructureID": 79698, + "Label": "5562-79698 via Adherens from 79701 -> 79702", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 79701, + "TargetID": 79702, + "Directional": true + }] + }, { + "ID": 9801, + "SourceStructureID": 5562, + "TargetStructureID": 79698, + "Label": "5562-79698 via BC Conventional Synapse from 134496 -> 134497", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134496, + "TargetID": 134497, + "Directional": true + }] + }, { + "ID": 9802, + "SourceStructureID": 5562, + "TargetStructureID": 79707, + "Label": "5562-79707 via BC Conventional Synapse from 134500 -> 134501", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134500, + "TargetID": 134501, + "Directional": true + }] + }, { + "ID": 9803, + "SourceStructureID": 5562, + "TargetStructureID": 79710, + "Label": "5562-79710 via Ribbon Synapse from 63886 -> 79711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63886, + "TargetID": 79711, + "Directional": true + }] + }, { + "ID": 9804, + "SourceStructureID": 5562, + "TargetStructureID": 79712, + "Label": "5562-79712 via Ribbon Synapse from 63886 -> 79713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63886, + "TargetID": 79713, + "Directional": true + }] + }, { + "ID": 9805, + "SourceStructureID": 5562, + "TargetStructureID": 79716, + "Label": "5562-79716 via Ribbon Synapse from 49011 -> 79717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49011, + "TargetID": 79717, + "Directional": true + }] + }, { + "ID": 9806, + "SourceStructureID": 5562, + "TargetStructureID": 79718, + "Label": "5562-79718 via Ribbon Synapse from 49011 -> 79719", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49011, + "TargetID": 79719, + "Directional": true + }] + }, { + "ID": 9807, + "SourceStructureID": 5562, + "TargetStructureID": 79725, + "Label": "5562-79725 via Ribbon Synapse from 79724 -> 79728", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79724, + "TargetID": 79728, + "Directional": true + }] + }, { + "ID": 9808, + "SourceStructureID": 5562, + "TargetStructureID": 79726, + "Label": "5562-79726 via Ribbon Synapse from 79724 -> 79727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79724, + "TargetID": 79727, + "Directional": true + }] + }, { + "ID": 9809, + "SourceStructureID": 5562, + "TargetStructureID": 79731, + "Label": "5562-79731 via Ribbon Synapse from 49010 -> 79734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49010, + "TargetID": 79734, + "Directional": true + }] + }, { + "ID": 9810, + "SourceStructureID": 5562, + "TargetStructureID": 79732, + "Label": "5562-79732 via Ribbon Synapse from 49010 -> 79733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49010, + "TargetID": 79733, + "Directional": true + }] + }, { + "ID": 9811, + "SourceStructureID": 5562, + "TargetStructureID": 79749, + "Label": "5562-79749 via Ribbon Synapse from 49021 -> 79752", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49021, + "TargetID": 79752, + "Directional": true + }] + }, { + "ID": 9812, + "SourceStructureID": 5562, + "TargetStructureID": 79750, + "Label": "5562-79750 via Ribbon Synapse from 49021 -> 79751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49021, + "TargetID": 79751, + "Directional": true + }] + }, { + "ID": 9813, + "SourceStructureID": 5562, + "TargetStructureID": 79753, + "Label": "5562-79753 via BC Conventional Synapse from 79754 -> 79755", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79754, + "TargetID": 79755, + "Directional": true + }] + }, { + "ID": 9814, + "SourceStructureID": 5562, + "TargetStructureID": 79764, + "Label": "5562-79764 via BC Conventional Synapse from 134505 -> 134506", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134505, + "TargetID": 134506, + "Directional": true + }] + }, { + "ID": 9815, + "SourceStructureID": 5562, + "TargetStructureID": 79781, + "Label": "5562-79781 via BC Conventional Synapse from 63381 -> 79783", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63381, + "TargetID": 79783, + "Directional": true + }] + }, { + "ID": 9816, + "SourceStructureID": 5562, + "TargetStructureID": 79802, + "Label": "5562-79802 via BC Conventional Synapse from 81751 -> 81752", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81751, + "TargetID": 81752, + "Directional": true + }] + }, { + "ID": 9817, + "SourceStructureID": 5562, + "TargetStructureID": 79813, + "Label": "5562-79813 via Ribbon Synapse from 63900 -> 79814", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63900, + "TargetID": 79814, + "Directional": true + }] + }, { + "ID": 9818, + "SourceStructureID": 5562, + "TargetStructureID": 79815, + "Label": "5562-79815 via Ribbon Synapse from 63900 -> 79816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63900, + "TargetID": 79816, + "Directional": true + }] + }, { + "ID": 9819, + "SourceStructureID": 5562, + "TargetStructureID": 79821, + "Label": "5562-79821 via Ribbon Synapse from 63906 -> 79825", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63906, + "TargetID": 79825, + "Directional": true + }] + }, { + "ID": 9820, + "SourceStructureID": 5562, + "TargetStructureID": 79822, + "Label": "5562-79822 via Ribbon Synapse from 63906 -> 79826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63906, + "TargetID": 79826, + "Directional": true + }] + }, { + "ID": 9821, + "SourceStructureID": 5562, + "TargetStructureID": 79823, + "Label": "5562-79823 via Ribbon Synapse from 63906 -> 79824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63906, + "TargetID": 79824, + "Directional": true + }] + }, { + "ID": 9822, + "SourceStructureID": 5562, + "TargetStructureID": 79827, + "Label": "5562-79827 via BC Conventional Synapse from 79829 -> 79830", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79829, + "TargetID": 79830, + "Directional": true + }] + }, { + "ID": 9823, + "SourceStructureID": 5562, + "TargetStructureID": 79832, + "Label": "5562-79832 via Ribbon Synapse from 63909 -> 79833", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63909, + "TargetID": 79833, + "Directional": true + }] + }, { + "ID": 9824, + "SourceStructureID": 5562, + "TargetStructureID": 79834, + "Label": "5562-79834 via Ribbon Synapse from 134646 -> 134647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134646, + "TargetID": 134647, + "Directional": true + }] + }, { + "ID": 9825, + "SourceStructureID": 5562, + "TargetStructureID": 79847, + "Label": "5562-79847 via BC Conventional Synapse from 79848 -> 92080", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79848, + "TargetID": 92080, + "Directional": true + }] + }, { + "ID": 9826, + "SourceStructureID": 5562, + "TargetStructureID": 79849, + "Label": "5562-79849 via Ribbon Synapse from 48997 -> 79850", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48997, + "TargetID": 79850, + "Directional": true + }] + }, { + "ID": 9827, + "SourceStructureID": 5562, + "TargetStructureID": 79851, + "Label": "5562-79851 via Ribbon Synapse from 48997 -> 79853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48997, + "TargetID": 79853, + "Directional": true + }] + }, { + "ID": 9828, + "SourceStructureID": 5562, + "TargetStructureID": 79854, + "Label": "5562-79854 via Ribbon Synapse from 48998 -> 79856", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48998, + "TargetID": 79856, + "Directional": true + }] + }, { + "ID": 9829, + "SourceStructureID": 5562, + "TargetStructureID": 79863, + "Label": "5562-79863 via Ribbon Synapse from 79860 -> 79864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79860, + "TargetID": 79864, + "Directional": true + }] + }, { + "ID": 9830, + "SourceStructureID": 5562, + "TargetStructureID": 79865, + "Label": "5562-79865 via Ribbon Synapse from 79860 -> 79866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79860, + "TargetID": 79866, + "Directional": true + }] + }, { + "ID": 9831, + "SourceStructureID": 5562, + "TargetStructureID": 79867, + "Label": "5562-79867 via Ribbon Synapse from 79860 -> 79868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79860, + "TargetID": 79868, + "Directional": true + }] + }, { + "ID": 9832, + "SourceStructureID": 5562, + "TargetStructureID": 79886, + "Label": "5562-79886 via Ribbon Synapse from 63923 -> 79887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63923, + "TargetID": 79887, + "Directional": true + }] + }, { + "ID": 9833, + "SourceStructureID": 5562, + "TargetStructureID": 79890, + "Label": "5562-79890 via Ribbon Synapse from 63923 -> 79892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63923, + "TargetID": 79892, + "Directional": true + }] + }, { + "ID": 9834, + "SourceStructureID": 5562, + "TargetStructureID": 80206, + "Label": "5562-80206 via Ribbon Synapse from 63082 -> 80207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63082, + "TargetID": 80207, + "Directional": true + }] + }, { + "ID": 9835, + "SourceStructureID": 5562, + "TargetStructureID": 80209, + "Label": "5562-80209 via Ribbon Synapse from 63082 -> 80211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63082, + "TargetID": 80211, + "Directional": true + }] + }, { + "ID": 9836, + "SourceStructureID": 5562, + "TargetStructureID": 80219, + "Label": "5562-80219 via Ribbon Synapse from 63081 -> 80222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63081, + "TargetID": 80222, + "Directional": true + }] + }, { + "ID": 9837, + "SourceStructureID": 5562, + "TargetStructureID": 80220, + "Label": "5562-80220 via Ribbon Synapse from 63081 -> 80221", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63081, + "TargetID": 80221, + "Directional": true + }] + }, { + "ID": 9838, + "SourceStructureID": 5562, + "TargetStructureID": 80252, + "Label": "5562-80252 via Ribbon Synapse from 63088 -> 80254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63088, + "TargetID": 80254, + "Directional": true + }] + }, { + "ID": 9839, + "SourceStructureID": 5562, + "TargetStructureID": 80253, + "Label": "5562-80253 via Ribbon Synapse from 63088 -> 80255", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63088, + "TargetID": 80255, + "Directional": true + }] + }, { + "ID": 9840, + "SourceStructureID": 5562, + "TargetStructureID": 80315, + "Label": "5562-80315 via Ribbon Synapse from 80317 -> 80316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80317, + "TargetID": 80316, + "Directional": true + }] + }, { + "ID": 9841, + "SourceStructureID": 5562, + "TargetStructureID": 80318, + "Label": "5562-80318 via Ribbon Synapse from 63242 -> 80319", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63242, + "TargetID": 80319, + "Directional": true + }] + }, { + "ID": 9842, + "SourceStructureID": 5562, + "TargetStructureID": 80320, + "Label": "5562-80320 via Ribbon Synapse from 63242 -> 80321", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63242, + "TargetID": 80321, + "Directional": true + }] + }, { + "ID": 9843, + "SourceStructureID": 5562, + "TargetStructureID": 80322, + "Label": "5562-80322 via Ribbon Synapse from 63242 -> 80323", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63242, + "TargetID": 80323, + "Directional": true + }] + }, { + "ID": 9844, + "SourceStructureID": 5562, + "TargetStructureID": 80348, + "Label": "5562-80348 via Ribbon Synapse from 63295 -> 80349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63295, + "TargetID": 80349, + "Directional": true + }] + }, { + "ID": 9845, + "SourceStructureID": 5562, + "TargetStructureID": 80353, + "Label": "5562-80353 via Ribbon Synapse from 63299 -> 80355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63299, + "TargetID": 80355, + "Directional": true + }] + }, { + "ID": 9846, + "SourceStructureID": 5562, + "TargetStructureID": 80359, + "Label": "5562-80359 via Ribbon Synapse from 63295 -> 81478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63295, + "TargetID": 81478, + "Directional": true + }] + }, { + "ID": 9847, + "SourceStructureID": 5562, + "TargetStructureID": 80372, + "Label": "5562-80372 via BC Conventional Synapse from 93086 -> 93085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93086, + "TargetID": 93085, + "Directional": true + }] + }, { + "ID": 9848, + "SourceStructureID": 5562, + "TargetStructureID": 80381, + "Label": "5562-80381 via Ribbon Synapse from 63307 -> 80389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63307, + "TargetID": 80389, + "Directional": true + }] + }, { + "ID": 9849, + "SourceStructureID": 5562, + "TargetStructureID": 80385, + "Label": "5562-80385 via Ribbon Synapse from 63304 -> 80386", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63304, + "TargetID": 80386, + "Directional": true + }] + }, { + "ID": 9850, + "SourceStructureID": 5562, + "TargetStructureID": 80387, + "Label": "5562-80387 via Ribbon Synapse from 63304 -> 80388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63304, + "TargetID": 80388, + "Directional": true + }] + }, { + "ID": 9851, + "SourceStructureID": 5562, + "TargetStructureID": 80390, + "Label": "5562-80390 via Ribbon Synapse from 63307 -> 80391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63307, + "TargetID": 80391, + "Directional": true + }] + }, { + "ID": 9852, + "SourceStructureID": 5562, + "TargetStructureID": 80399, + "Label": "5562-80399 via Ribbon Synapse from 63285 -> 80682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63285, + "TargetID": 80682, + "Directional": true + }] + }, { + "ID": 9853, + "SourceStructureID": 5562, + "TargetStructureID": 80673, + "Label": "5562-80673 via Ribbon Synapse from 63285 -> 80675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63285, + "TargetID": 80675, + "Directional": true + }] + }, { + "ID": 9854, + "SourceStructureID": 5562, + "TargetStructureID": 80691, + "Label": "5562-80691 via BC Conventional Synapse from 134629 -> 134630", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134629, + "TargetID": 134630, + "Directional": true + }] + }, { + "ID": 9855, + "SourceStructureID": 5562, + "TargetStructureID": 80700, + "Label": "5562-80700 via Ribbon Synapse from 63291 -> 80701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63291, + "TargetID": 80701, + "Directional": true + }] + }, { + "ID": 9856, + "SourceStructureID": 5562, + "TargetStructureID": 80799, + "Label": "5562-80799 via Ribbon Synapse from 63316 -> 80800", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63316, + "TargetID": 80800, + "Directional": true + }] + }, { + "ID": 9857, + "SourceStructureID": 5562, + "TargetStructureID": 80801, + "Label": "5562-80801 via BC Conventional Synapse from 80803 -> 80802", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80803, + "TargetID": 80802, + "Directional": true + }] + }, { + "ID": 9858, + "SourceStructureID": 5562, + "TargetStructureID": 80818, + "Label": "5562-80818 via Ribbon Synapse from 63315 -> 80821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63315, + "TargetID": 80821, + "Directional": true + }] + }, { + "ID": 9859, + "SourceStructureID": 5562, + "TargetStructureID": 80819, + "Label": "5562-80819 via Ribbon Synapse from 63315 -> 80820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63315, + "TargetID": 80820, + "Directional": true + }] + }, { + "ID": 9860, + "SourceStructureID": 5562, + "TargetStructureID": 80826, + "Label": "5562-80826 via Ribbon Synapse from 63317 -> 80830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63317, + "TargetID": 80830, + "Directional": true + }] + }, { + "ID": 9861, + "SourceStructureID": 5562, + "TargetStructureID": 80827, + "Label": "5562-80827 via Ribbon Synapse from 63317 -> 80832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63317, + "TargetID": 80832, + "Directional": true + }] + }, { + "ID": 9862, + "SourceStructureID": 5562, + "TargetStructureID": 80829, + "Label": "5562-80829 via Ribbon Synapse from 63317 -> 80831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63317, + "TargetID": 80831, + "Directional": true + }] + }, { + "ID": 9863, + "SourceStructureID": 5562, + "TargetStructureID": 80855, + "Label": "5562-80855 via Ribbon Synapse from 134634 -> 134637", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134634, + "TargetID": 134637, + "Directional": true + }] + }, { + "ID": 9864, + "SourceStructureID": 5562, + "TargetStructureID": 80856, + "Label": "5562-80856 via Ribbon Synapse from 134634 -> 134636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134634, + "TargetID": 134636, + "Directional": true + }] + }, { + "ID": 9865, + "SourceStructureID": 5562, + "TargetStructureID": 80858, + "Label": "5562-80858 via Ribbon Synapse from 134634 -> 134635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134634, + "TargetID": 134635, + "Directional": true + }] + }, { + "ID": 9866, + "SourceStructureID": 5562, + "TargetStructureID": 80859, + "Label": "5562-80859 via Ribbon Synapse from 134634 -> 134638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134634, + "TargetID": 134638, + "Directional": true + }] + }, { + "ID": 9867, + "SourceStructureID": 5562, + "TargetStructureID": 80874, + "Label": "5562-80874 via Ribbon Synapse from 63324 -> 80875", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63324, + "TargetID": 80875, + "Directional": true + }] + }, { + "ID": 9868, + "SourceStructureID": 5562, + "TargetStructureID": 80876, + "Label": "5562-80876 via Ribbon Synapse from 63324 -> 80877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63324, + "TargetID": 80877, + "Directional": true + }] + }, { + "ID": 9869, + "SourceStructureID": 5562, + "TargetStructureID": 80882, + "Label": "5562-80882 via Ribbon Synapse from 63323 -> 80883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63323, + "TargetID": 80883, + "Directional": true + }] + }, { + "ID": 9870, + "SourceStructureID": 5562, + "TargetStructureID": 80891, + "Label": "5562-80891 via Ribbon Synapse from 63325 -> 80892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63325, + "TargetID": 80892, + "Directional": true + }] + }, { + "ID": 9871, + "SourceStructureID": 5562, + "TargetStructureID": 80893, + "Label": "5562-80893 via Ribbon Synapse from 63325 -> 80895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63325, + "TargetID": 80895, + "Directional": true + }] + }, { + "ID": 9872, + "SourceStructureID": 5562, + "TargetStructureID": 81799, + "Label": "5562-81799 via Ribbon Synapse from 77220 -> 81815, 77238 -> 81806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77220, + "TargetID": 81815, + "Directional": true + }, { + "SourceID": 77238, + "TargetID": 81806, + "Directional": true + }] + }, { + "ID": 9873, + "SourceStructureID": 5562, + "TargetStructureID": 81810, + "Label": "5562-81810 via Ribbon Synapse from 77238 -> 81811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77238, + "TargetID": 81811, + "Directional": true + }] + }, { + "ID": 9874, + "SourceStructureID": 5562, + "TargetStructureID": 81852, + "Label": "5562-81852 via Unknown from 81851 -> 81853", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 81851, + "TargetID": 81853, + "Directional": true + }] + }, { + "ID": 9875, + "SourceStructureID": 5562, + "TargetStructureID": 81875, + "Label": "5562-81875 via Ribbon Synapse from 134646 -> 134648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134646, + "TargetID": 134648, + "Directional": true + }] + }, { + "ID": 9876, + "SourceStructureID": 5562, + "TargetStructureID": 82462, + "Label": "5562-82462 via Ribbon Synapse from 63731 -> 82465", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63731, + "TargetID": 82465, + "Directional": true + }] + }, { + "ID": 9877, + "SourceStructureID": 5562, + "TargetStructureID": 84520, + "Label": "5562-84520 via Ribbon Synapse from 49563 -> 84522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49563, + "TargetID": 84522, + "Directional": true + }] + }, { + "ID": 9878, + "SourceStructureID": 5562, + "TargetStructureID": 84530, + "Label": "5562-84530 via Ribbon Synapse from 31300 -> 116710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31300, + "TargetID": 116710, + "Directional": true + }] + }, { + "ID": 9879, + "SourceStructureID": 5563, + "TargetStructureID": 4850, + "Label": "5563-4850 via Ribbon Synapse from 14302 -> 14301, 19488 -> 19489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14302, + "TargetID": 14301, + "Directional": true + }, { + "SourceID": 19488, + "TargetID": 19489, + "Directional": true + }] + }, { + "ID": 9880, + "SourceStructureID": 5563, + "TargetStructureID": 5402, + "Label": "5563-5402 via Ribbon Synapse from 32387 -> 129594, 32393 -> 129601", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32387, + "TargetID": 129594, + "Directional": true + }, { + "SourceID": 32393, + "TargetID": 129601, + "Directional": true + }] + }, { + "ID": 9881, + "SourceStructureID": 5563, + "TargetStructureID": 7050, + "Label": "5563-7050 via Ribbon Synapse from 19504 -> 19503, 31447 -> 32397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19504, + "TargetID": 19503, + "Directional": true + }, { + "SourceID": 31447, + "TargetID": 32397, + "Directional": true + }] + }, { + "ID": 9882, + "SourceStructureID": 5563, + "TargetStructureID": 8037, + "Label": "5563-8037 via Ribbon Synapse from 32387 -> 32386, 32389 -> 32388, 32393 -> 32394, 32395 -> 32396, 56818 -> 56821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32387, + "TargetID": 32386, + "Directional": true + }, { + "SourceID": 32389, + "TargetID": 32388, + "Directional": true + }, { + "SourceID": 32393, + "TargetID": 32394, + "Directional": true + }, { + "SourceID": 32395, + "TargetID": 32396, + "Directional": true + }, { + "SourceID": 56818, + "TargetID": 56821, + "Directional": true + }] + }, { + "ID": 9883, + "SourceStructureID": 5563, + "TargetStructureID": 9260, + "Label": "5563-9260 via Ribbon Synapse from 66248 -> 98789, 98792 -> 98793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66248, + "TargetID": 98789, + "Directional": true + }, { + "SourceID": 98792, + "TargetID": 98793, + "Directional": true + }] + }, { + "ID": 9884, + "SourceStructureID": 5563, + "TargetStructureID": 12897, + "Label": "5563-12897 via Ribbon Synapse from 56657 -> 60636, 66250 -> 66251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56657, + "TargetID": 60636, + "Directional": true + }, { + "SourceID": 66250, + "TargetID": 66251, + "Directional": true + }] + }, { + "ID": 9885, + "SourceStructureID": 5563, + "TargetStructureID": 18282, + "Label": "5563-18282 via Ribbon Synapse from 31447 -> 31446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31447, + "TargetID": 31446, + "Directional": true + }] + }, { + "ID": 9886, + "SourceStructureID": 5565, + "TargetStructureID": 606, + "Label": "5565-606 via Ribbon Synapse from 50172 -> 39921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50172, + "TargetID": 39921, + "Directional": true + }] + }, { + "ID": 9887, + "SourceStructureID": 5565, + "TargetStructureID": 32994, + "Label": "5565-32994 via Ribbon Synapse from 35102 -> 35101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35102, + "TargetID": 35101, + "Directional": true + }] + }, { + "ID": 9888, + "SourceStructureID": 5565, + "TargetStructureID": 35232, + "Label": "5565-35232 via Ribbon Synapse from 37685 -> 35235", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37685, + "TargetID": 35235, + "Directional": true + }] + }, { + "ID": 9889, + "SourceStructureID": 5565, + "TargetStructureID": 89312, + "Label": "5565-89312 via BC Conventional Synapse from 89314 -> 89313", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89314, + "TargetID": 89313, + "Directional": true + }] + }, { + "ID": 9890, + "SourceStructureID": 5565, + "TargetStructureID": 97401, + "Label": "5565-97401 via Ribbon Synapse from 53985 -> 97402", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53985, + "TargetID": 97402, + "Directional": true + }] + }, { + "ID": 9891, + "SourceStructureID": 5566, + "TargetStructureID": 5107, + "Label": "5566-5107 via Ribbon Synapse from 148326 -> 148324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148326, + "TargetID": 148324, + "Directional": true + }] + }, { + "ID": 9892, + "SourceStructureID": 5566, + "TargetStructureID": 5497, + "Label": "5566-5497 via Ribbon Synapse from 59199 -> 59200", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59199, + "TargetID": 59200, + "Directional": true + }] + }, { + "ID": 9893, + "SourceStructureID": 5566, + "TargetStructureID": 59271, + "Label": "5566-59271 via Ribbon Synapse from 33669 -> 59272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33669, + "TargetID": 59272, + "Directional": true + }] + }, { + "ID": 9894, + "SourceStructureID": 5566, + "TargetStructureID": 59275, + "Label": "5566-59275 via Ribbon Synapse from 59274 -> 59276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59274, + "TargetID": 59276, + "Directional": true + }] + }, { + "ID": 9895, + "SourceStructureID": 5568, + "TargetStructureID": 389, + "Label": "5568-389 via BC Conventional Synapse from 62141 -> 62140", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62141, + "TargetID": 62140, + "Directional": true + }] + }, { + "ID": 9896, + "SourceStructureID": 5568, + "TargetStructureID": 4890, + "Label": "5568-4890 via Ribbon Synapse from 99177 -> 64873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99177, + "TargetID": 64873, + "Directional": true + }] + }, { + "ID": 9897, + "SourceStructureID": 5568, + "TargetStructureID": 5405, + "Label": "5568-5405 via Ribbon Synapse from 11062 -> 11061, 49987 -> 11047, 50368 -> 11149", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11062, + "TargetID": 11061, + "Directional": true + }, { + "SourceID": 49987, + "TargetID": 11047, + "Directional": true + }, { + "SourceID": 50368, + "TargetID": 11149, + "Directional": true + }] + }, { + "ID": 9898, + "SourceStructureID": 5568, + "TargetStructureID": 8575, + "Label": "5568-8575 via BC Conventional Synapse from 62139 -> 62134", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62139, + "TargetID": 62134, + "Directional": true + }] + }, { + "ID": 9899, + "SourceStructureID": 5568, + "TargetStructureID": 8575, + "Label": "5568-8575 via Ribbon Synapse from 49961 -> 62780, 62380 -> 62376, 62782 -> 62781, 121329 -> 121330, 121405 -> 43288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49961, + "TargetID": 62780, + "Directional": true + }, { + "SourceID": 62380, + "TargetID": 62376, + "Directional": true + }, { + "SourceID": 62782, + "TargetID": 62781, + "Directional": true + }, { + "SourceID": 121329, + "TargetID": 121330, + "Directional": true + }, { + "SourceID": 121405, + "TargetID": 43288, + "Directional": true + }] + }, { + "ID": 9900, + "SourceStructureID": 5568, + "TargetStructureID": 32994, + "Label": "5568-32994 via Ribbon Synapse from 99174 -> 32998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99174, + "TargetID": 32998, + "Directional": true + }] + }, { + "ID": 9901, + "SourceStructureID": 5568, + "TargetStructureID": 35475, + "Label": "5568-35475 via Ribbon Synapse from 35479 -> 35478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35479, + "TargetID": 35478, + "Directional": true + }] + }, { + "ID": 9902, + "SourceStructureID": 5568, + "TargetStructureID": 87178, + "Label": "5568-87178 via Ribbon Synapse from 121473 -> 87179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121473, + "TargetID": 87179, + "Directional": true + }] + }, { + "ID": 9903, + "SourceStructureID": 5568, + "TargetStructureID": 89571, + "Label": "5568-89571 via Ribbon Synapse from 50362 -> 89575", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50362, + "TargetID": 89575, + "Directional": true + }] + }, { + "ID": 9904, + "SourceStructureID": 5575, + "TargetStructureID": 906, + "Label": "5575-906 via Conventional from 22959 -> 15235", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22959, + "TargetID": 15235, + "Directional": true + }] + }, { + "ID": 9905, + "SourceStructureID": 5575, + "TargetStructureID": 15796, + "Label": "5575-15796 via Conventional from 23079 -> 27205", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23079, + "TargetID": 27205, + "Directional": true + }] + }, { + "ID": 9906, + "SourceStructureID": 5575, + "TargetStructureID": 18693, + "Label": "5575-18693 via Conventional from 22966 -> 18724, 23081 -> 39463", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22966, + "TargetID": 18724, + "Directional": true + }, { + "SourceID": 23081, + "TargetID": 39463, + "Directional": true + }] + }, { + "ID": 9907, + "SourceStructureID": 5575, + "TargetStructureID": 27288, + "Label": "5575-27288 via Conventional from 23088 -> 27298, 23096 -> 27295", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23088, + "TargetID": 27298, + "Directional": true + }, { + "SourceID": 23096, + "TargetID": 27295, + "Directional": true + }] + }, { + "ID": 9908, + "SourceStructureID": 5575, + "TargetStructureID": 27304, + "Label": "5575-27304 via Conventional from 22955 -> 27315", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22955, + "TargetID": 27315, + "Directional": true + }] + }, { + "ID": 9909, + "SourceStructureID": 5575, + "TargetStructureID": 47013, + "Label": "5575-47013 via Conventional from 23068 -> 47028", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23068, + "TargetID": 47028, + "Directional": true + }] + }, { + "ID": 9910, + "SourceStructureID": 5582, + "TargetStructureID": 28950, + "Label": "5582-28950 via Ribbon Synapse from 136371 -> 136364, 136395 -> 136396", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136371, + "TargetID": 136364, + "Directional": true + }, { + "SourceID": 136395, + "TargetID": 136396, + "Directional": true + }] + }, { + "ID": 9911, + "SourceStructureID": 5582, + "TargetStructureID": 136393, + "Label": "5582-136393 via Ribbon Synapse from 136392 -> 136394", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136392, + "TargetID": 136394, + "Directional": true + }] + }, { + "ID": 9912, + "SourceStructureID": 5584, + "TargetStructureID": 5107, + "Label": "5584-5107 via Ribbon Synapse from 124490 -> 124489, 126927 -> 126919", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124490, + "TargetID": 124489, + "Directional": true + }, { + "SourceID": 126927, + "TargetID": 126919, + "Directional": true + }] + }, { + "ID": 9913, + "SourceStructureID": 5584, + "TargetStructureID": 5117, + "Label": "5584-5117 via Ribbon Synapse from 126925 -> 126926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126925, + "TargetID": 126926, + "Directional": true + }] + }, { + "ID": 9914, + "SourceStructureID": 5584, + "TargetStructureID": 5442, + "Label": "5584-5442 via Ribbon Synapse from 48219 -> 15275, 55118 -> 15274", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48219, + "TargetID": 15275, + "Directional": true + }, { + "SourceID": 55118, + "TargetID": 15274, + "Directional": true + }] + }, { + "ID": 9915, + "SourceStructureID": 5584, + "TargetStructureID": 15796, + "Label": "5584-15796 via Ribbon Synapse from 55835 -> 52884, 147763 -> 147762", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55835, + "TargetID": 52884, + "Directional": true + }, { + "SourceID": 147763, + "TargetID": 147762, + "Directional": true + }] + }, { + "ID": 9916, + "SourceStructureID": 5584, + "TargetStructureID": 23870, + "Label": "5584-23870 via BC Conventional Synapse from 37925 -> 23900", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37925, + "TargetID": 23900, + "Directional": true + }] + }, { + "ID": 9917, + "SourceStructureID": 5584, + "TargetStructureID": 33272, + "Label": "5584-33272 via Ribbon Synapse from 57198 -> 33279, 89768 -> 89769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57198, + "TargetID": 33279, + "Directional": true + }, { + "SourceID": 89768, + "TargetID": 89769, + "Directional": true + }] + }, { + "ID": 9918, + "SourceStructureID": 5584, + "TargetStructureID": 35811, + "Label": "5584-35811 via Ribbon Synapse from 35881 -> 35880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35881, + "TargetID": 35880, + "Directional": true + }] + }, { + "ID": 9919, + "SourceStructureID": 5584, + "TargetStructureID": 38949, + "Label": "5584-38949 via Ribbon Synapse from 38974 -> 38971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38974, + "TargetID": 38971, + "Directional": true + }] + }, { + "ID": 9920, + "SourceStructureID": 5584, + "TargetStructureID": 56841, + "Label": "5584-56841 via Ribbon Synapse from 123795 -> 123796", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123795, + "TargetID": 123796, + "Directional": true + }] + }, { + "ID": 9921, + "SourceStructureID": 5585, + "TargetStructureID": 5351, + "Label": "5585-5351 via Ribbon Synapse from 24109 -> 24107", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24109, + "TargetID": 24107, + "Directional": true + }] + }, { + "ID": 9922, + "SourceStructureID": 5585, + "TargetStructureID": 7114, + "Label": "5585-7114 via Ribbon Synapse from 24113 -> 24112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24113, + "TargetID": 24112, + "Directional": true + }] + }, { + "ID": 9923, + "SourceStructureID": 5585, + "TargetStructureID": 85856, + "Label": "5585-85856 via Ribbon Synapse from 32436 -> 32434, 32438 -> 32437, 32439 -> 32440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32436, + "TargetID": 32434, + "Directional": true + }, { + "SourceID": 32438, + "TargetID": 32437, + "Directional": true + }, { + "SourceID": 32439, + "TargetID": 32440, + "Directional": true + }] + }, { + "ID": 9924, + "SourceStructureID": 5587, + "TargetStructureID": 7114, + "Label": "5587-7114 via Ribbon Synapse from 136454 -> 136455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136454, + "TargetID": 136455, + "Directional": true + }] + }, { + "ID": 9925, + "SourceStructureID": 5587, + "TargetStructureID": 28950, + "Label": "5587-28950 via Ribbon Synapse from 136553 -> 136551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136553, + "TargetID": 136551, + "Directional": true + }] + }, { + "ID": 9926, + "SourceStructureID": 5587, + "TargetStructureID": 129648, + "Label": "5587-129648 via Ribbon Synapse from 129733 -> 129731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129733, + "TargetID": 129731, + "Directional": true + }] + }, { + "ID": 9927, + "SourceStructureID": 5587, + "TargetStructureID": 129798, + "Label": "5587-129798 via Ribbon Synapse from 129819 -> 129818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129819, + "TargetID": 129818, + "Directional": true + }] + }, { + "ID": 9928, + "SourceStructureID": 5587, + "TargetStructureID": 136432, + "Label": "5587-136432 via Ribbon Synapse from 136443 -> 136440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136443, + "TargetID": 136440, + "Directional": true + }] + }, { + "ID": 9929, + "SourceStructureID": 5592, + "TargetStructureID": 5442, + "Label": "5592-5442 via Ribbon Synapse from 36834 -> 74425", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36834, + "TargetID": 74425, + "Directional": true + }] + }, { + "ID": 9930, + "SourceStructureID": 5592, + "TargetStructureID": 23870, + "Label": "5592-23870 via Ribbon Synapse from 92948 -> 92950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92948, + "TargetID": 92950, + "Directional": true + }] + }, { + "ID": 9931, + "SourceStructureID": 5595, + "TargetStructureID": 7113, + "Label": "5595-7113 via Ribbon Synapse from 15283 -> 34911, 15285 -> 34912, 32425 -> 32430, 32425 -> 124076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15283, + "TargetID": 34911, + "Directional": true + }, { + "SourceID": 15285, + "TargetID": 34912, + "Directional": true + }, { + "SourceID": 32425, + "TargetID": 32430, + "Directional": true + }, { + "SourceID": 32425, + "TargetID": 124076, + "Directional": true + }] + }, { + "ID": 9932, + "SourceStructureID": 5595, + "TargetStructureID": 32422, + "Label": "5595-32422 via Ribbon Synapse from 32425 -> 32424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32425, + "TargetID": 32424, + "Directional": true + }] + }, { + "ID": 9933, + "SourceStructureID": 5596, + "TargetStructureID": 7114, + "Label": "5596-7114 via Ribbon Synapse from 36871 -> 26608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36871, + "TargetID": 26608, + "Directional": true + }] + }, { + "ID": 9934, + "SourceStructureID": 5596, + "TargetStructureID": 42816, + "Label": "5596-42816 via Ribbon Synapse from 42835 -> 42836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42835, + "TargetID": 42836, + "Directional": true + }] + }, { + "ID": 9935, + "SourceStructureID": 5596, + "TargetStructureID": 60558, + "Label": "5596-60558 via Cistern Pre from 60580 -> 60582", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 60580, + "TargetID": 60582, + "Directional": true + }] + }, { + "ID": 9936, + "SourceStructureID": 5596, + "TargetStructureID": 60558, + "Label": "5596-60558 via Ribbon Synapse from 36868 -> 60579, 36870 -> 60560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36868, + "TargetID": 60579, + "Directional": true + }, { + "SourceID": 36870, + "TargetID": 60560, + "Directional": true + }] + }, { + "ID": 9937, + "SourceStructureID": 5598, + "TargetStructureID": 5107, + "Label": "5598-5107 via Ribbon Synapse from 45195 -> 53135, 52969 -> 116701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45195, + "TargetID": 53135, + "Directional": true + }, { + "SourceID": 52969, + "TargetID": 116701, + "Directional": true + }] + }, { + "ID": 9938, + "SourceStructureID": 5598, + "TargetStructureID": 5442, + "Label": "5598-5442 via Ribbon Synapse from 12549 -> 55123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12549, + "TargetID": 55123, + "Directional": true + }] + }, { + "ID": 9939, + "SourceStructureID": 5598, + "TargetStructureID": 9769, + "Label": "5598-9769 via Ribbon Synapse from 23907 -> 53125, 45196 -> 29957, 54479 -> 54481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23907, + "TargetID": 53125, + "Directional": true + }, { + "SourceID": 45196, + "TargetID": 29957, + "Directional": true + }, { + "SourceID": 54479, + "TargetID": 54481, + "Directional": true + }] + }, { + "ID": 9940, + "SourceStructureID": 5598, + "TargetStructureID": 23870, + "Label": "5598-23870 via Ribbon Synapse from 23907 -> 23906, 23908 -> 23905, 23912 -> 23911, 36018 -> 36019, 36021 -> 23915, 54479 -> 23918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23907, + "TargetID": 23906, + "Directional": true + }, { + "SourceID": 23908, + "TargetID": 23905, + "Directional": true + }, { + "SourceID": 23912, + "TargetID": 23911, + "Directional": true + }, { + "SourceID": 36018, + "TargetID": 36019, + "Directional": true + }, { + "SourceID": 36021, + "TargetID": 23915, + "Directional": true + }, { + "SourceID": 54479, + "TargetID": 23918, + "Directional": true + }] + }, { + "ID": 9941, + "SourceStructureID": 5598, + "TargetStructureID": 31605, + "Label": "5598-31605 via BC Conventional Synapse from 124087 -> 126965", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124087, + "TargetID": 126965, + "Directional": true + }] + }, { + "ID": 9942, + "SourceStructureID": 5598, + "TargetStructureID": 34055, + "Label": "5598-34055 via Ribbon Synapse from 34120 -> 34119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34120, + "TargetID": 34119, + "Directional": true + }] + }, { + "ID": 9943, + "SourceStructureID": 5598, + "TargetStructureID": 35335, + "Label": "5598-35335 via Ribbon Synapse from 35341 -> 35340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35341, + "TargetID": 35340, + "Directional": true + }] + }, { + "ID": 9944, + "SourceStructureID": 5598, + "TargetStructureID": 35811, + "Label": "5598-35811 via Ribbon Synapse from 35874 -> 35873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35874, + "TargetID": 35873, + "Directional": true + }] + }, { + "ID": 9945, + "SourceStructureID": 5598, + "TargetStructureID": 38949, + "Label": "5598-38949 via Postsynapse from 130064 -> 130063", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 130064, + "TargetID": 130063, + "Directional": true + }] + }, { + "ID": 9946, + "SourceStructureID": 5598, + "TargetStructureID": 54482, + "Label": "5598-54482 via Ribbon Synapse from 54485 -> 54484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54485, + "TargetID": 54484, + "Directional": true + }] + }, { + "ID": 9947, + "SourceStructureID": 5598, + "TargetStructureID": 57299, + "Label": "5598-57299 via Ribbon Synapse from 56774 -> 123854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56774, + "TargetID": 123854, + "Directional": true + }] + }, { + "ID": 9948, + "SourceStructureID": 5598, + "TargetStructureID": 68539, + "Label": "5598-68539 via Ribbon Synapse from 74550 -> 74552, 114936 -> 123879, 115227 -> 124257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74550, + "TargetID": 74552, + "Directional": true + }, { + "SourceID": 114936, + "TargetID": 123879, + "Directional": true + }, { + "SourceID": 115227, + "TargetID": 124257, + "Directional": true + }] + }, { + "ID": 9949, + "SourceStructureID": 5598, + "TargetStructureID": 73348, + "Label": "5598-73348 via Ribbon Synapse from 59061 -> 124604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59061, + "TargetID": 124604, + "Directional": true + }] + }, { + "ID": 9950, + "SourceStructureID": 5598, + "TargetStructureID": 74548, + "Label": "5598-74548 via Ribbon Synapse from 74550 -> 74551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74550, + "TargetID": 74551, + "Directional": true + }] + }, { + "ID": 9951, + "SourceStructureID": 5598, + "TargetStructureID": 116142, + "Label": "5598-116142 via BC Conventional Synapse from 115250 -> 123865, 115252 -> 123866, 115262 -> 120934", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115250, + "TargetID": 123865, + "Directional": true + }, { + "SourceID": 115252, + "TargetID": 123866, + "Directional": true + }, { + "SourceID": 115262, + "TargetID": 120934, + "Directional": true + }] + }, { + "ID": 9952, + "SourceStructureID": 5598, + "TargetStructureID": 116142, + "Label": "5598-116142 via Ribbon Synapse from 115283 -> 120933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115283, + "TargetID": 120933, + "Directional": true + }] + }, { + "ID": 9953, + "SourceStructureID": 5598, + "TargetStructureID": 124069, + "Label": "5598-124069 via Ribbon Synapse from 115000 -> 124071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115000, + "TargetID": 124071, + "Directional": true + }] + }, { + "ID": 9954, + "SourceStructureID": 5598, + "TargetStructureID": 124198, + "Label": "5598-124198 via BC Conventional Synapse from 114611 -> 124204", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114611, + "TargetID": 124204, + "Directional": true + }] + }, { + "ID": 9955, + "SourceStructureID": 5599, + "TargetStructureID": 4890, + "Label": "5599-4890 via Ribbon Synapse from 28842 -> 5318, 28849 -> 28838, 38327 -> 4931, 38328 -> 6095", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28842, + "TargetID": 5318, + "Directional": true + }, { + "SourceID": 28849, + "TargetID": 28838, + "Directional": true + }, { + "SourceID": 38327, + "TargetID": 4931, + "Directional": true + }, { + "SourceID": 38328, + "TargetID": 6095, + "Directional": true + }] + }, { + "ID": 9956, + "SourceStructureID": 5599, + "TargetStructureID": 5117, + "Label": "5599-5117 via Ribbon Synapse from 38330 -> 28799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38330, + "TargetID": 28799, + "Directional": true + }] + }, { + "ID": 9957, + "SourceStructureID": 5599, + "TargetStructureID": 5118, + "Label": "5599-5118 via BC Conventional Synapse from 52173 -> 52172, 56278 -> 56279", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52173, + "TargetID": 52172, + "Directional": true + }, { + "SourceID": 56278, + "TargetID": 56279, + "Directional": true + }] + }, { + "ID": 9958, + "SourceStructureID": 5599, + "TargetStructureID": 5118, + "Label": "5599-5118 via Ribbon Synapse from 52168 -> 52167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52168, + "TargetID": 52167, + "Directional": true + }] + }, { + "ID": 9959, + "SourceStructureID": 5599, + "TargetStructureID": 5374, + "Label": "5599-5374 via Ribbon Synapse from 56119 -> 131158", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56119, + "TargetID": 131158, + "Directional": true + }] + }, { + "ID": 9960, + "SourceStructureID": 5599, + "TargetStructureID": 5439, + "Label": "5599-5439 via Ribbon Synapse from 66595 -> 66596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66595, + "TargetID": 66596, + "Directional": true + }] + }, { + "ID": 9961, + "SourceStructureID": 5599, + "TargetStructureID": 8580, + "Label": "5599-8580 via BC Conventional Synapse from 73673 -> 59827, 73673 -> 73675", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73673, + "TargetID": 59827, + "Directional": true + }, { + "SourceID": 73673, + "TargetID": 73675, + "Directional": true + }] + }, { + "ID": 9962, + "SourceStructureID": 5599, + "TargetStructureID": 8580, + "Label": "5599-8580 via Ribbon Synapse from 59828 -> 59827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59828, + "TargetID": 59827, + "Directional": true + }] + }, { + "ID": 9963, + "SourceStructureID": 5599, + "TargetStructureID": 18282, + "Label": "5599-18282 via BC Conventional Synapse from 56159 -> 72340", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56159, + "TargetID": 72340, + "Directional": true + }] + }, { + "ID": 9964, + "SourceStructureID": 5599, + "TargetStructureID": 29702, + "Label": "5599-29702 via Ribbon Synapse from 75555 -> 75505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75555, + "TargetID": 75505, + "Directional": true + }] + }, { + "ID": 9965, + "SourceStructureID": 5599, + "TargetStructureID": 38307, + "Label": "5599-38307 via Ribbon Synapse from 38325 -> 38323", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38325, + "TargetID": 38323, + "Directional": true + }] + }, { + "ID": 9966, + "SourceStructureID": 5599, + "TargetStructureID": 44970, + "Label": "5599-44970 via Ribbon Synapse from 44789 -> 44992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44789, + "TargetID": 44992, + "Directional": true + }] + }, { + "ID": 9967, + "SourceStructureID": 5599, + "TargetStructureID": 63978, + "Label": "5599-63978 via Ribbon Synapse from 64005 -> 64004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64005, + "TargetID": 64004, + "Directional": true + }] + }, { + "ID": 9968, + "SourceStructureID": 5599, + "TargetStructureID": 66407, + "Label": "5599-66407 via Ribbon Synapse from 56200 -> 69492, 135180 -> 135182", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56200, + "TargetID": 69492, + "Directional": true + }, { + "SourceID": 135180, + "TargetID": 135182, + "Directional": true + }] + }, { + "ID": 9969, + "SourceStructureID": 5599, + "TargetStructureID": 66768, + "Label": "5599-66768 via Ribbon Synapse from 131159 -> 131160", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131159, + "TargetID": 131160, + "Directional": true + }] + }, { + "ID": 9970, + "SourceStructureID": 5599, + "TargetStructureID": 72299, + "Label": "5599-72299 via Ribbon Synapse from 135160 -> 135161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135160, + "TargetID": 135161, + "Directional": true + }] + }, { + "ID": 9971, + "SourceStructureID": 5599, + "TargetStructureID": 131156, + "Label": "5599-131156 via Ribbon Synapse from 56119 -> 131157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56119, + "TargetID": 131157, + "Directional": true + }] + }, { + "ID": 9972, + "SourceStructureID": 5600, + "TargetStructureID": 606, + "Label": "5600-606 via Ribbon Synapse from 51860 -> 51861", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51860, + "TargetID": 51861, + "Directional": true + }] + }, { + "ID": 9973, + "SourceStructureID": 5600, + "TargetStructureID": 5118, + "Label": "5600-5118 via BC Conventional Synapse from 52197 -> 52196, 52203 -> 52202", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52197, + "TargetID": 52196, + "Directional": true + }, { + "SourceID": 52203, + "TargetID": 52202, + "Directional": true + }] + }, { + "ID": 9974, + "SourceStructureID": 5600, + "TargetStructureID": 5118, + "Label": "5600-5118 via Ribbon Synapse from 52201 -> 52198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52201, + "TargetID": 52198, + "Directional": true + }] + }, { + "ID": 9975, + "SourceStructureID": 5600, + "TargetStructureID": 5374, + "Label": "5600-5374 via Ribbon Synapse from 20454 -> 20453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20454, + "TargetID": 20453, + "Directional": true + }] + }, { + "ID": 9976, + "SourceStructureID": 5600, + "TargetStructureID": 7114, + "Label": "5600-7114 via Ribbon Synapse from 20436 -> 7917, 26613 -> 26612, 95595 -> 95596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20436, + "TargetID": 7917, + "Directional": true + }, { + "SourceID": 26613, + "TargetID": 26612, + "Directional": true + }, { + "SourceID": 95595, + "TargetID": 95596, + "Directional": true + }] + }, { + "ID": 9977, + "SourceStructureID": 5600, + "TargetStructureID": 7231, + "Label": "5600-7231 via BC Conventional Synapse from 116993 -> 116992, 116999 -> 116996, 117004 -> 117003", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116993, + "TargetID": 116992, + "Directional": true + }, { + "SourceID": 116999, + "TargetID": 116996, + "Directional": true + }, { + "SourceID": 117004, + "TargetID": 117003, + "Directional": true + }] + }, { + "ID": 9978, + "SourceStructureID": 5600, + "TargetStructureID": 7231, + "Label": "5600-7231 via Ribbon Synapse from 37874 -> 117019, 116942 -> 117006, 116943 -> 117006, 116944 -> 116996, 116963 -> 116964, 117001 -> 116996", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37874, + "TargetID": 117019, + "Directional": true + }, { + "SourceID": 116942, + "TargetID": 117006, + "Directional": true + }, { + "SourceID": 116943, + "TargetID": 117006, + "Directional": true + }, { + "SourceID": 116944, + "TargetID": 116996, + "Directional": true + }, { + "SourceID": 116963, + "TargetID": 116964, + "Directional": true + }, { + "SourceID": 117001, + "TargetID": 116996, + "Directional": true + }] + }, { + "ID": 9979, + "SourceStructureID": 5600, + "TargetStructureID": 8579, + "Label": "5600-8579 via Ribbon Synapse from 26626 -> 62701, 62691 -> 62690, 116648 -> 63138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26626, + "TargetID": 62701, + "Directional": true + }, { + "SourceID": 62691, + "TargetID": 62690, + "Directional": true + }, { + "SourceID": 116648, + "TargetID": 63138, + "Directional": true + }] + }, { + "ID": 9980, + "SourceStructureID": 5600, + "TargetStructureID": 18282, + "Label": "5600-18282 via Ribbon Synapse from 20438 -> 20433", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20438, + "TargetID": 20433, + "Directional": true + }] + }, { + "ID": 9981, + "SourceStructureID": 5600, + "TargetStructureID": 35183, + "Label": "5600-35183 via Ribbon Synapse from 35187 -> 35186", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35187, + "TargetID": 35186, + "Directional": true + }] + }, { + "ID": 9982, + "SourceStructureID": 5600, + "TargetStructureID": 39319, + "Label": "5600-39319 via Ribbon Synapse from 39687 -> 39686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39687, + "TargetID": 39686, + "Directional": true + }] + }, { + "ID": 9983, + "SourceStructureID": 5600, + "TargetStructureID": 122760, + "Label": "5600-122760 via Ribbon Synapse from 122762 -> 122761, 122762 -> 122765, 122764 -> 122765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122762, + "TargetID": 122761, + "Directional": true + }, { + "SourceID": 122762, + "TargetID": 122765, + "Directional": true + }, { + "SourceID": 122764, + "TargetID": 122765, + "Directional": true + }] + }, { + "ID": 9984, + "SourceStructureID": 5600, + "TargetStructureID": 122768, + "Label": "5600-122768 via Ribbon Synapse from 122772 -> 122771, 122783 -> 122784, 122819 -> 122818, 122820 -> 122818, 122821 -> 122822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122772, + "TargetID": 122771, + "Directional": true + }, { + "SourceID": 122783, + "TargetID": 122784, + "Directional": true + }, { + "SourceID": 122819, + "TargetID": 122818, + "Directional": true + }, { + "SourceID": 122820, + "TargetID": 122818, + "Directional": true + }, { + "SourceID": 122821, + "TargetID": 122822, + "Directional": true + }] + }, { + "ID": 9985, + "SourceStructureID": 5600, + "TargetStructureID": 122829, + "Label": "5600-122829 via Ribbon Synapse from 122831 -> 122830, 122833 -> 122832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122831, + "TargetID": 122830, + "Directional": true + }, { + "SourceID": 122833, + "TargetID": 122832, + "Directional": true + }] + }, { + "ID": 9986, + "SourceStructureID": 5600, + "TargetStructureID": 126901, + "Label": "5600-126901 via Ribbon Synapse from 126902 -> 126903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126902, + "TargetID": 126903, + "Directional": true + }] + }, { + "ID": 9987, + "SourceStructureID": 5601, + "TargetStructureID": 606, + "Label": "5601-606 via BC Conventional Synapse from 54592 -> 54591", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54592, + "TargetID": 54591, + "Directional": true + }] + }, { + "ID": 9988, + "SourceStructureID": 5601, + "TargetStructureID": 606, + "Label": "5601-606 via Ribbon Synapse from 44282 -> 10523, 54132 -> 54134, 54151 -> 54147, 54153 -> 10522, 54154 -> 54157, 54155 -> 54156, 54487 -> 54488, 54550 -> 54488, 54568 -> 54571, 54573 -> 54575, 54603 -> 54607, 54604 -> 54607, 54605 -> 54607", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44282, + "TargetID": 10523, + "Directional": true + }, { + "SourceID": 54132, + "TargetID": 54134, + "Directional": true + }, { + "SourceID": 54151, + "TargetID": 54147, + "Directional": true + }, { + "SourceID": 54153, + "TargetID": 10522, + "Directional": true + }, { + "SourceID": 54154, + "TargetID": 54157, + "Directional": true + }, { + "SourceID": 54155, + "TargetID": 54156, + "Directional": true + }, { + "SourceID": 54487, + "TargetID": 54488, + "Directional": true + }, { + "SourceID": 54550, + "TargetID": 54488, + "Directional": true + }, { + "SourceID": 54568, + "TargetID": 54571, + "Directional": true + }, { + "SourceID": 54573, + "TargetID": 54575, + "Directional": true + }, { + "SourceID": 54603, + "TargetID": 54607, + "Directional": true + }, { + "SourceID": 54604, + "TargetID": 54607, + "Directional": true + }, { + "SourceID": 54605, + "TargetID": 54607, + "Directional": true + }] + }, { + "ID": 9989, + "SourceStructureID": 5601, + "TargetStructureID": 7594, + "Label": "5601-7594 via Ribbon Synapse from 54132 -> 7607, 54154 -> 7612, 91349 -> 7630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54132, + "TargetID": 7607, + "Directional": true + }, { + "SourceID": 54154, + "TargetID": 7612, + "Directional": true + }, { + "SourceID": 91349, + "TargetID": 7630, + "Directional": true + }] + }, { + "ID": 9990, + "SourceStructureID": 5601, + "TargetStructureID": 9769, + "Label": "5601-9769 via Ribbon Synapse from 23945 -> 23939, 23953 -> 23952, 23969 -> 23968, 23980 -> 23976, 23984 -> 23981, 23989 -> 23988, 23991 -> 23990, 29951 -> 29941, 54487 -> 23966, 54550 -> 23966, 56103 -> 75335, 93096 -> 93097", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23945, + "TargetID": 23939, + "Directional": true + }, { + "SourceID": 23953, + "TargetID": 23952, + "Directional": true + }, { + "SourceID": 23969, + "TargetID": 23968, + "Directional": true + }, { + "SourceID": 23980, + "TargetID": 23976, + "Directional": true + }, { + "SourceID": 23984, + "TargetID": 23981, + "Directional": true + }, { + "SourceID": 23989, + "TargetID": 23988, + "Directional": true + }, { + "SourceID": 23991, + "TargetID": 23990, + "Directional": true + }, { + "SourceID": 29951, + "TargetID": 29941, + "Directional": true + }, { + "SourceID": 54487, + "TargetID": 23966, + "Directional": true + }, { + "SourceID": 54550, + "TargetID": 23966, + "Directional": true + }, { + "SourceID": 56103, + "TargetID": 75335, + "Directional": true + }, { + "SourceID": 93096, + "TargetID": 93097, + "Directional": true + }] + }, { + "ID": 9991, + "SourceStructureID": 5601, + "TargetStructureID": 23870, + "Label": "5601-23870 via Ribbon Synapse from 23943 -> 23921, 23945 -> 23942, 93096 -> 93098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23943, + "TargetID": 23921, + "Directional": true + }, { + "SourceID": 23945, + "TargetID": 23942, + "Directional": true + }, { + "SourceID": 93096, + "TargetID": 93098, + "Directional": true + }] + }, { + "ID": 9992, + "SourceStructureID": 5601, + "TargetStructureID": 32409, + "Label": "5601-32409 via Ribbon Synapse from 32411 -> 32410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32411, + "TargetID": 32410, + "Directional": true + }] + }, { + "ID": 9993, + "SourceStructureID": 5601, + "TargetStructureID": 32451, + "Label": "5601-32451 via Ribbon Synapse from 32459 -> 32458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32459, + "TargetID": 32458, + "Directional": true + }] + }, { + "ID": 9994, + "SourceStructureID": 5601, + "TargetStructureID": 32787, + "Label": "5601-32787 via Ribbon Synapse from 23980 -> 32789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23980, + "TargetID": 32789, + "Directional": true + }] + }, { + "ID": 9995, + "SourceStructureID": 5601, + "TargetStructureID": 34055, + "Label": "5601-34055 via Ribbon Synapse from 34102 -> 34103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34102, + "TargetID": 34103, + "Directional": true + }] + }, { + "ID": 9996, + "SourceStructureID": 5601, + "TargetStructureID": 35526, + "Label": "5601-35526 via Ribbon Synapse from 35533 -> 35532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35533, + "TargetID": 35532, + "Directional": true + }] + }, { + "ID": 9997, + "SourceStructureID": 5601, + "TargetStructureID": 38307, + "Label": "5601-38307 via Ribbon Synapse from 38313 -> 38314", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38313, + "TargetID": 38314, + "Directional": true + }] + }, { + "ID": 9998, + "SourceStructureID": 5601, + "TargetStructureID": 54469, + "Label": "5601-54469 via Ribbon Synapse from 23947 -> 54476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23947, + "TargetID": 54476, + "Directional": true + }] + }, { + "ID": 9999, + "SourceStructureID": 5601, + "TargetStructureID": 54778, + "Label": "5601-54778 via Ribbon Synapse from 54811 -> 54810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54811, + "TargetID": 54810, + "Directional": true + }] + }, { + "ID": 10000, + "SourceStructureID": 5601, + "TargetStructureID": 62396, + "Label": "5601-62396 via Ribbon Synapse from 36015 -> 62402, 36039 -> 62414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36015, + "TargetID": 62402, + "Directional": true + }, { + "SourceID": 36039, + "TargetID": 62414, + "Directional": true + }] + }, { + "ID": 10001, + "SourceStructureID": 5601, + "TargetStructureID": 84118, + "Label": "5601-84118 via Ribbon Synapse from 57494 -> 123651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57494, + "TargetID": 123651, + "Directional": true + }] + }, { + "ID": 10002, + "SourceStructureID": 5601, + "TargetStructureID": 91979, + "Label": "5601-91979 via BC Conventional Synapse from 127154 -> 134791", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127154, + "TargetID": 134791, + "Directional": true + }] + }, { + "ID": 10003, + "SourceStructureID": 5602, + "TargetStructureID": 115, + "Label": "5602-115 via Ribbon Synapse from 10402 -> 8097", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10402, + "TargetID": 8097, + "Directional": true + }] + }, { + "ID": 10004, + "SourceStructureID": 5602, + "TargetStructureID": 5351, + "Label": "5602-5351 via Ribbon Synapse from 24105 -> 24082", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24105, + "TargetID": 24082, + "Directional": true + }] + }, { + "ID": 10005, + "SourceStructureID": 5606, + "TargetStructureID": 606, + "Label": "5606-606 via Ribbon Synapse from 36906 -> 5098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36906, + "TargetID": 5098, + "Directional": true + }] + }, { + "ID": 10006, + "SourceStructureID": 5606, + "TargetStructureID": 10559, + "Label": "5606-10559 via Ribbon Synapse from 43647 -> 44322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43647, + "TargetID": 44322, + "Directional": true + }] + }, { + "ID": 10007, + "SourceStructureID": 5607, + "TargetStructureID": 606, + "Label": "5607-606 via Ribbon Synapse from 43056 -> 44273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43056, + "TargetID": 44273, + "Directional": true + }] + }, { + "ID": 10008, + "SourceStructureID": 5607, + "TargetStructureID": 9769, + "Label": "5607-9769 via Ribbon Synapse from 24007 -> 23998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24007, + "TargetID": 23998, + "Directional": true + }] + }, { + "ID": 10009, + "SourceStructureID": 5607, + "TargetStructureID": 54862, + "Label": "5607-54862 via Ribbon Synapse from 54866 -> 54864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54866, + "TargetID": 54864, + "Directional": true + }] + }, { + "ID": 10010, + "SourceStructureID": 5608, + "TargetStructureID": 115, + "Label": "5608-115 via Ribbon Synapse from 42664 -> 8088", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42664, + "TargetID": 8088, + "Directional": true + }] + }, { + "ID": 10011, + "SourceStructureID": 5608, + "TargetStructureID": 606, + "Label": "5608-606 via BC Conventional Synapse from 54277 -> 54276", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54277, + "TargetID": 54276, + "Directional": true + }] + }, { + "ID": 10012, + "SourceStructureID": 5608, + "TargetStructureID": 606, + "Label": "5608-606 via Ribbon Synapse from 54196 -> 10525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54196, + "TargetID": 10525, + "Directional": true + }] + }, { + "ID": 10013, + "SourceStructureID": 5608, + "TargetStructureID": 5607, + "Label": "5608-5607 via Ribbon Synapse from 42839 -> 42840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42839, + "TargetID": 42840, + "Directional": true + }] + }, { + "ID": 10014, + "SourceStructureID": 5608, + "TargetStructureID": 10559, + "Label": "5608-10559 via BC Conventional Synapse from 54277 -> 54280", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54277, + "TargetID": 54280, + "Directional": true + }] + }, { + "ID": 10015, + "SourceStructureID": 5608, + "TargetStructureID": 88762, + "Label": "5608-88762 via Ribbon Synapse from 88787 -> 88783, 88788 -> 88783", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88787, + "TargetID": 88783, + "Directional": true + }, { + "SourceID": 88788, + "TargetID": 88783, + "Directional": true + }] + }, { + "ID": 10016, + "SourceStructureID": 5609, + "TargetStructureID": 517, + "Label": "5609-517 via Conventional from 20656 -> 16417, 20657 -> 20658, 20663 -> 20665, 20664 -> 20667, 61446 -> 16423", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20656, + "TargetID": 16417, + "Directional": true + }, { + "SourceID": 20657, + "TargetID": 20658, + "Directional": true + }, { + "SourceID": 20663, + "TargetID": 20665, + "Directional": true + }, { + "SourceID": 20664, + "TargetID": 20667, + "Directional": true + }, { + "SourceID": 61446, + "TargetID": 16423, + "Directional": true + }] + }, { + "ID": 10017, + "SourceStructureID": 5609, + "TargetStructureID": 3881, + "Label": "5609-3881 via Conventional from 32348 -> 31394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32348, + "TargetID": 31394, + "Directional": true + }] + }, { + "ID": 10018, + "SourceStructureID": 5609, + "TargetStructureID": 10815, + "Label": "5609-10815 via Conventional from 20642 -> 31377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20642, + "TargetID": 31377, + "Directional": true + }] + }, { + "ID": 10019, + "SourceStructureID": 5611, + "TargetStructureID": 8720, + "Label": "5611-8720 via Ribbon Synapse from 63954 -> 63952", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63954, + "TargetID": 63952, + "Directional": true + }] + }, { + "ID": 10020, + "SourceStructureID": 5614, + "TargetStructureID": 5457, + "Label": "5614-5457 via Ribbon Synapse from 8733 -> 15353, 15361 -> 15360, 15362 -> 15363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8733, + "TargetID": 15353, + "Directional": true + }, { + "SourceID": 15361, + "TargetID": 15360, + "Directional": true + }, { + "SourceID": 15362, + "TargetID": 15363, + "Directional": true + }] + }, { + "ID": 10021, + "SourceStructureID": 5614, + "TargetStructureID": 5634, + "Label": "5614-5634 via Ribbon Synapse from 8736 -> 8731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8736, + "TargetID": 8731, + "Directional": true + }] + }, { + "ID": 10022, + "SourceStructureID": 5614, + "TargetStructureID": 11229, + "Label": "5614-11229 via Ribbon Synapse from 25186 -> 25185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25186, + "TargetID": 25185, + "Directional": true + }] + }, { + "ID": 10023, + "SourceStructureID": 5618, + "TargetStructureID": 5292, + "Label": "5618-5292 via Conventional from 65991 -> 65992", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65991, + "TargetID": 65992, + "Directional": true + }] + }, { + "ID": 10024, + "SourceStructureID": 5618, + "TargetStructureID": 18693, + "Label": "5618-18693 via Conventional from 65985 -> 33819", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65985, + "TargetID": 33819, + "Directional": true + }] + }, { + "ID": 10025, + "SourceStructureID": 5622, + "TargetStructureID": 7050, + "Label": "5622-7050 via Ribbon Synapse from 113043 -> 113044", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113043, + "TargetID": 113044, + "Directional": true + }] + }, { + "ID": 10026, + "SourceStructureID": 5623, + "TargetStructureID": 8576, + "Label": "5623-8576 via Ribbon Synapse from 69042 -> 69041, 69044 -> 69043, 69047 -> 69046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69042, + "TargetID": 69041, + "Directional": true + }, { + "SourceID": 69044, + "TargetID": 69043, + "Directional": true + }, { + "SourceID": 69047, + "TargetID": 69046, + "Directional": true + }] + }, { + "ID": 10027, + "SourceStructureID": 5623, + "TargetStructureID": 32804, + "Label": "5623-32804 via Ribbon Synapse from 32817 -> 32816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32817, + "TargetID": 32816, + "Directional": true + }] + }, { + "ID": 10028, + "SourceStructureID": 5623, + "TargetStructureID": 38236, + "Label": "5623-38236 via Ribbon Synapse from 38240 -> 38239, 38244 -> 38243", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38240, + "TargetID": 38239, + "Directional": true + }, { + "SourceID": 38244, + "TargetID": 38243, + "Directional": true + }] + }, { + "ID": 10029, + "SourceStructureID": 5623, + "TargetStructureID": 66958, + "Label": "5623-66958 via Ribbon Synapse from 131980 -> 131981", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131980, + "TargetID": 131981, + "Directional": true + }] + }, { + "ID": 10030, + "SourceStructureID": 5623, + "TargetStructureID": 69049, + "Label": "5623-69049 via Ribbon Synapse from 40379 -> 69051", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40379, + "TargetID": 69051, + "Directional": true + }] + }, { + "ID": 10031, + "SourceStructureID": 5623, + "TargetStructureID": 127813, + "Label": "5623-127813 via Ribbon Synapse from 40376 -> 127818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40376, + "TargetID": 127818, + "Directional": true + }] + }, { + "ID": 10032, + "SourceStructureID": 5634, + "TargetStructureID": 5614, + "Label": "5634-5614 via Conventional from 8729 -> 8735", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8729, + "TargetID": 8735, + "Directional": true + }] + }, { + "ID": 10033, + "SourceStructureID": 5634, + "TargetStructureID": 10956, + "Label": "5634-10956 via Conventional from 33245 -> 33244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33245, + "TargetID": 33244, + "Directional": true + }] + }, { + "ID": 10034, + "SourceStructureID": 5635, + "TargetStructureID": 5117, + "Label": "5635-5117 via Ribbon Synapse from 28826 -> 28800", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28826, + "TargetID": 28800, + "Directional": true + }] + }, { + "ID": 10035, + "SourceStructureID": 5635, + "TargetStructureID": 5439, + "Label": "5635-5439 via Ribbon Synapse from 55976 -> 66556, 55984 -> 70784, 55985 -> 66560, 55995 -> 66564", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55976, + "TargetID": 66556, + "Directional": true + }, { + "SourceID": 55984, + "TargetID": 70784, + "Directional": true + }, { + "SourceID": 55985, + "TargetID": 66560, + "Directional": true + }, { + "SourceID": 55995, + "TargetID": 66564, + "Directional": true + }] + }, { + "ID": 10036, + "SourceStructureID": 5635, + "TargetStructureID": 73617, + "Label": "5635-73617 via Ribbon Synapse from 56145 -> 73618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56145, + "TargetID": 73618, + "Directional": true + }] + }, { + "ID": 10037, + "SourceStructureID": 5636, + "TargetStructureID": 7279, + "Label": "5636-7279 via Ribbon Synapse from 34725 -> 34729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34725, + "TargetID": 34729, + "Directional": true + }] + }, { + "ID": 10038, + "SourceStructureID": 5636, + "TargetStructureID": 8551, + "Label": "5636-8551 via Ribbon Synapse from 34706 -> 8581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34706, + "TargetID": 8581, + "Directional": true + }] + }, { + "ID": 10039, + "SourceStructureID": 5636, + "TargetStructureID": 31389, + "Label": "5636-31389 via Ribbon Synapse from 36975 -> 36977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36975, + "TargetID": 36977, + "Directional": true + }] + }, { + "ID": 10040, + "SourceStructureID": 5637, + "TargetStructureID": 606, + "Label": "5637-606 via Ribbon Synapse from 44293 -> 44287, 44299 -> 44297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44293, + "TargetID": 44287, + "Directional": true + }, { + "SourceID": 44299, + "TargetID": 44297, + "Directional": true + }] + }, { + "ID": 10041, + "SourceStructureID": 5637, + "TargetStructureID": 5451, + "Label": "5637-5451 via Cistern Pre from 39077 -> 39078", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 39077, + "TargetID": 39078, + "Directional": true + }] + }, { + "ID": 10042, + "SourceStructureID": 5637, + "TargetStructureID": 7594, + "Label": "5637-7594 via Ribbon Synapse from 56027 -> 7611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56027, + "TargetID": 7611, + "Directional": true + }] + }, { + "ID": 10043, + "SourceStructureID": 5637, + "TargetStructureID": 31471, + "Label": "5637-31471 via Ribbon Synapse from 44290 -> 44291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44290, + "TargetID": 44291, + "Directional": true + }] + }, { + "ID": 10044, + "SourceStructureID": 5637, + "TargetStructureID": 43716, + "Label": "5637-43716 via BC Conventional Synapse from 123647 -> 123646", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123647, + "TargetID": 123646, + "Directional": true + }] + }, { + "ID": 10045, + "SourceStructureID": 5637, + "TargetStructureID": 54776, + "Label": "5637-54776 via Ribbon Synapse from 54792 -> 54785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54792, + "TargetID": 54785, + "Directional": true + }] + }, { + "ID": 10046, + "SourceStructureID": 5638, + "TargetStructureID": 5439, + "Label": "5638-5439 via Ribbon Synapse from 39125 -> 66612, 65937 -> 66607", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39125, + "TargetID": 66612, + "Directional": true + }, { + "SourceID": 65937, + "TargetID": 66607, + "Directional": true + }] + }, { + "ID": 10047, + "SourceStructureID": 5639, + "TargetStructureID": 7113, + "Label": "5639-7113 via Ribbon Synapse from 46219 -> 46218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46219, + "TargetID": 46218, + "Directional": true + }] + }, { + "ID": 10048, + "SourceStructureID": 5639, + "TargetStructureID": 7274, + "Label": "5639-7274 via Ribbon Synapse from 36987 -> 41888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36987, + "TargetID": 41888, + "Directional": true + }] + }, { + "ID": 10049, + "SourceStructureID": 5639, + "TargetStructureID": 10574, + "Label": "5639-10574 via BC Conventional Synapse from 37010 -> 37011", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37010, + "TargetID": 37011, + "Directional": true + }] + }, { + "ID": 10050, + "SourceStructureID": 5639, + "TargetStructureID": 10574, + "Label": "5639-10574 via Ribbon Synapse from 37045 -> 38901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37045, + "TargetID": 38901, + "Directional": true + }] + }, { + "ID": 10051, + "SourceStructureID": 5639, + "TargetStructureID": 13858, + "Label": "5639-13858 via BC Conventional Synapse from 37052 -> 13915", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37052, + "TargetID": 13915, + "Directional": true + }] + }, { + "ID": 10052, + "SourceStructureID": 5639, + "TargetStructureID": 136432, + "Label": "5639-136432 via Ribbon Synapse from 37007 -> 136526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37007, + "TargetID": 136526, + "Directional": true + }] + }, { + "ID": 10053, + "SourceStructureID": 5640, + "TargetStructureID": 5473, + "Label": "5640-5473 via Ribbon Synapse from 37114 -> 37120, 37115 -> 37121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37114, + "TargetID": 37120, + "Directional": true + }, { + "SourceID": 37115, + "TargetID": 37121, + "Directional": true + }] + }, { + "ID": 10054, + "SourceStructureID": 5640, + "TargetStructureID": 7114, + "Label": "5640-7114 via Ribbon Synapse from 37059 -> 37060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37059, + "TargetID": 37060, + "Directional": true + }] + }, { + "ID": 10055, + "SourceStructureID": 5641, + "TargetStructureID": 5491, + "Label": "5641-5491 via Ribbon Synapse from 20607 -> 54812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20607, + "TargetID": 54812, + "Directional": true + }] + }, { + "ID": 10056, + "SourceStructureID": 5641, + "TargetStructureID": 7204, + "Label": "5641-7204 via Ribbon Synapse from 20647 -> 24345, 24184 -> 24338, 24342 -> 24341, 39050 -> 39051", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20647, + "TargetID": 24345, + "Directional": true + }, { + "SourceID": 24184, + "TargetID": 24338, + "Directional": true + }, { + "SourceID": 24342, + "TargetID": 24341, + "Directional": true + }, { + "SourceID": 39050, + "TargetID": 39051, + "Directional": true + }] + }, { + "ID": 10057, + "SourceStructureID": 5641, + "TargetStructureID": 8578, + "Label": "5641-8578 via Ribbon Synapse from 54499 -> 54498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54499, + "TargetID": 54498, + "Directional": true + }] + }, { + "ID": 10058, + "SourceStructureID": 5641, + "TargetStructureID": 9769, + "Label": "5641-9769 via Ribbon Synapse from 54686 -> 54687", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54686, + "TargetID": 54687, + "Directional": true + }] + }, { + "ID": 10059, + "SourceStructureID": 5641, + "TargetStructureID": 12203, + "Label": "5641-12203 via Ribbon Synapse from 20711 -> 12262, 27411 -> 12262, 27412 -> 12262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20711, + "TargetID": 12262, + "Directional": true + }, { + "SourceID": 27411, + "TargetID": 12262, + "Directional": true + }, { + "SourceID": 27412, + "TargetID": 12262, + "Directional": true + }] + }, { + "ID": 10060, + "SourceStructureID": 5641, + "TargetStructureID": 24174, + "Label": "5641-24174 via Ribbon Synapse from 20677 -> 24178, 24184 -> 24179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20677, + "TargetID": 24178, + "Directional": true + }, { + "SourceID": 24184, + "TargetID": 24179, + "Directional": true + }] + }, { + "ID": 10061, + "SourceStructureID": 5641, + "TargetStructureID": 30567, + "Label": "5641-30567 via Ribbon Synapse from 32116 -> 32110", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32116, + "TargetID": 32110, + "Directional": true + }] + }, { + "ID": 10062, + "SourceStructureID": 5641, + "TargetStructureID": 34055, + "Label": "5641-34055 via Ribbon Synapse from 27666 -> 34116", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27666, + "TargetID": 34116, + "Directional": true + }] + }, { + "ID": 10063, + "SourceStructureID": 5641, + "TargetStructureID": 35811, + "Label": "5641-35811 via Ribbon Synapse from 35867 -> 35866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35867, + "TargetID": 35866, + "Directional": true + }] + }, { + "ID": 10064, + "SourceStructureID": 5641, + "TargetStructureID": 38404, + "Label": "5641-38404 via Ribbon Synapse from 39049 -> 39048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39049, + "TargetID": 39048, + "Directional": true + }] + }, { + "ID": 10065, + "SourceStructureID": 5641, + "TargetStructureID": 54681, + "Label": "5641-54681 via Ribbon Synapse from 20666 -> 54688, 54686 -> 54685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20666, + "TargetID": 54688, + "Directional": true + }, { + "SourceID": 54686, + "TargetID": 54685, + "Directional": true + }] + }, { + "ID": 10066, + "SourceStructureID": 5641, + "TargetStructureID": 54695, + "Label": "5641-54695 via Ribbon Synapse from 57508 -> 54697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57508, + "TargetID": 54697, + "Directional": true + }] + }, { + "ID": 10067, + "SourceStructureID": 5641, + "TargetStructureID": 54818, + "Label": "5641-54818 via BC Conventional Synapse from 54849 -> 54848", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54849, + "TargetID": 54848, + "Directional": true + }] + }, { + "ID": 10068, + "SourceStructureID": 5641, + "TargetStructureID": 55610, + "Label": "5641-55610 via Ribbon Synapse from 55613 -> 55611, 55617 -> 55618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55613, + "TargetID": 55611, + "Directional": true + }, { + "SourceID": 55617, + "TargetID": 55618, + "Directional": true + }] + }, { + "ID": 10069, + "SourceStructureID": 5641, + "TargetStructureID": 112748, + "Label": "5641-112748 via Ribbon Synapse from 20603 -> 129923", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20603, + "TargetID": 129923, + "Directional": true + }] + }, { + "ID": 10070, + "SourceStructureID": 5641, + "TargetStructureID": 147696, + "Label": "5641-147696 via Ribbon Synapse from 27659 -> 147702", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27659, + "TargetID": 147702, + "Directional": true + }] + }, { + "ID": 10071, + "SourceStructureID": 5641, + "TargetStructureID": 147818, + "Label": "5641-147818 via Ribbon Synapse from 147817 -> 147819", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147817, + "TargetID": 147819, + "Directional": true + }] + }, { + "ID": 10072, + "SourceStructureID": 5643, + "TargetStructureID": 5556, + "Label": "5643-5556 via Conventional from 34907 -> 34908", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34907, + "TargetID": 34908, + "Directional": true + }] + }, { + "ID": 10073, + "SourceStructureID": 5643, + "TargetStructureID": 5650, + "Label": "5643-5650 via Conventional from 38551 -> 102749", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38551, + "TargetID": 102749, + "Directional": true + }] + }, { + "ID": 10074, + "SourceStructureID": 5643, + "TargetStructureID": 30177, + "Label": "5643-30177 via Conventional from 34909 -> 34910", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34909, + "TargetID": 34910, + "Directional": true + }] + }, { + "ID": 10075, + "SourceStructureID": 5643, + "TargetStructureID": 35440, + "Label": "5643-35440 via Conventional from 38547 -> 35448", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38547, + "TargetID": 35448, + "Directional": true + }] + }, { + "ID": 10076, + "SourceStructureID": 5645, + "TargetStructureID": 606, + "Label": "5645-606 via Ribbon Synapse from 47420 -> 47419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47420, + "TargetID": 47419, + "Directional": true + }] + }, { + "ID": 10077, + "SourceStructureID": 5645, + "TargetStructureID": 5107, + "Label": "5645-5107 via Ribbon Synapse from 108513 -> 108514", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108513, + "TargetID": 108514, + "Directional": true + }] + }, { + "ID": 10078, + "SourceStructureID": 5645, + "TargetStructureID": 5117, + "Label": "5645-5117 via Ribbon Synapse from 47763 -> 66357", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47763, + "TargetID": 66357, + "Directional": true + }] + }, { + "ID": 10079, + "SourceStructureID": 5645, + "TargetStructureID": 5294, + "Label": "5645-5294 via BC Conventional Synapse from 54504 -> 39472", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54504, + "TargetID": 39472, + "Directional": true + }] + }, { + "ID": 10080, + "SourceStructureID": 5645, + "TargetStructureID": 6857, + "Label": "5645-6857 via Ribbon Synapse from 108615 -> 6898, 108619 -> 6898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108615, + "TargetID": 6898, + "Directional": true + }, { + "SourceID": 108619, + "TargetID": 6898, + "Directional": true + }] + }, { + "ID": 10081, + "SourceStructureID": 5645, + "TargetStructureID": 22974, + "Label": "5645-22974 via Ribbon Synapse from 78061 -> 108627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78061, + "TargetID": 108627, + "Directional": true + }] + }, { + "ID": 10082, + "SourceStructureID": 5645, + "TargetStructureID": 31024, + "Label": "5645-31024 via Ribbon Synapse from 31154 -> 31118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31154, + "TargetID": 31118, + "Directional": true + }] + }, { + "ID": 10083, + "SourceStructureID": 5645, + "TargetStructureID": 31305, + "Label": "5645-31305 via Ribbon Synapse from 31327 -> 31306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31327, + "TargetID": 31306, + "Directional": true + }] + }, { + "ID": 10084, + "SourceStructureID": 5645, + "TargetStructureID": 31356, + "Label": "5645-31356 via Ribbon Synapse from 32762 -> 32761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32762, + "TargetID": 32761, + "Directional": true + }] + }, { + "ID": 10085, + "SourceStructureID": 5645, + "TargetStructureID": 35384, + "Label": "5645-35384 via Ribbon Synapse from 39480 -> 39481", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39480, + "TargetID": 39481, + "Directional": true + }] + }, { + "ID": 10086, + "SourceStructureID": 5645, + "TargetStructureID": 67671, + "Label": "5645-67671 via Ribbon Synapse from 78049 -> 78050", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78049, + "TargetID": 78050, + "Directional": true + }] + }, { + "ID": 10087, + "SourceStructureID": 5645, + "TargetStructureID": 71517, + "Label": "5645-71517 via Ribbon Synapse from 72129 -> 72127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72129, + "TargetID": 72127, + "Directional": true + }] + }, { + "ID": 10088, + "SourceStructureID": 5645, + "TargetStructureID": 72124, + "Label": "5645-72124 via Ribbon Synapse from 108572 -> 108573", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108572, + "TargetID": 108573, + "Directional": true + }] + }, { + "ID": 10089, + "SourceStructureID": 5645, + "TargetStructureID": 78051, + "Label": "5645-78051 via Ribbon Synapse from 78049 -> 78052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78049, + "TargetID": 78052, + "Directional": true + }] + }, { + "ID": 10090, + "SourceStructureID": 5645, + "TargetStructureID": 78423, + "Label": "5645-78423 via Ribbon Synapse from 72132 -> 78424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72132, + "TargetID": 78424, + "Directional": true + }] + }, { + "ID": 10091, + "SourceStructureID": 5645, + "TargetStructureID": 87432, + "Label": "5645-87432 via Ribbon Synapse from 47649 -> 87439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47649, + "TargetID": 87439, + "Directional": true + }] + }, { + "ID": 10092, + "SourceStructureID": 5645, + "TargetStructureID": 98703, + "Label": "5645-98703 via Ribbon Synapse from 31332 -> 98706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31332, + "TargetID": 98706, + "Directional": true + }] + }, { + "ID": 10093, + "SourceStructureID": 5645, + "TargetStructureID": 108539, + "Label": "5645-108539 via Ribbon Synapse from 108546 -> 108545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108546, + "TargetID": 108545, + "Directional": true + }] + }, { + "ID": 10094, + "SourceStructureID": 5645, + "TargetStructureID": 108616, + "Label": "5645-108616 via Ribbon Synapse from 108615 -> 108618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108615, + "TargetID": 108618, + "Directional": true + }] + }, { + "ID": 10095, + "SourceStructureID": 5648, + "TargetStructureID": 5405, + "Label": "5648-5405 via Ribbon Synapse from 23419 -> 11180", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23419, + "TargetID": 11180, + "Directional": true + }] + }, { + "ID": 10096, + "SourceStructureID": 5648, + "TargetStructureID": 7134, + "Label": "5648-7134 via Ribbon Synapse from 53973 -> 26672", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53973, + "TargetID": 26672, + "Directional": true + }] + }, { + "ID": 10097, + "SourceStructureID": 5648, + "TargetStructureID": 8575, + "Label": "5648-8575 via BC Conventional Synapse from 62286 -> 62285", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62286, + "TargetID": 62285, + "Directional": true + }] + }, { + "ID": 10098, + "SourceStructureID": 5648, + "TargetStructureID": 16073, + "Label": "5648-16073 via BC Conventional Synapse from 32222 -> 32221", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32222, + "TargetID": 32221, + "Directional": true + }] + }, { + "ID": 10099, + "SourceStructureID": 5648, + "TargetStructureID": 77077, + "Label": "5648-77077 via Ribbon Synapse from 77076 -> 77079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77076, + "TargetID": 77079, + "Directional": true + }] + }, { + "ID": 10100, + "SourceStructureID": 5649, + "TargetStructureID": 4890, + "Label": "5649-4890 via BC Conventional Synapse from 104702 -> 104703", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104702, + "TargetID": 104703, + "Directional": true + }] + }, { + "ID": 10101, + "SourceStructureID": 5649, + "TargetStructureID": 4890, + "Label": "5649-4890 via Ribbon Synapse from 53849 -> 104545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53849, + "TargetID": 104545, + "Directional": true + }] + }, { + "ID": 10102, + "SourceStructureID": 5649, + "TargetStructureID": 5117, + "Label": "5649-5117 via Ribbon Synapse from 66353 -> 66352", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66353, + "TargetID": 66352, + "Directional": true + }] + }, { + "ID": 10103, + "SourceStructureID": 5649, + "TargetStructureID": 6857, + "Label": "5649-6857 via Ribbon Synapse from 105764 -> 105765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105764, + "TargetID": 105765, + "Directional": true + }] + }, { + "ID": 10104, + "SourceStructureID": 5649, + "TargetStructureID": 8027, + "Label": "5649-8027 via Ribbon Synapse from 37858 -> 37857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37858, + "TargetID": 37857, + "Directional": true + }] + }, { + "ID": 10105, + "SourceStructureID": 5649, + "TargetStructureID": 8579, + "Label": "5649-8579 via Ribbon Synapse from 135350 -> 62685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135350, + "TargetID": 62685, + "Directional": true + }] + }, { + "ID": 10106, + "SourceStructureID": 5649, + "TargetStructureID": 8580, + "Label": "5649-8580 via BC Conventional Synapse from 107096 -> 107089", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107096, + "TargetID": 107089, + "Directional": true + }] + }, { + "ID": 10107, + "SourceStructureID": 5649, + "TargetStructureID": 8580, + "Label": "5649-8580 via Ribbon Synapse from 59659 -> 59658, 70012 -> 59658, 104598 -> 104607", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59659, + "TargetID": 59658, + "Directional": true + }, { + "SourceID": 70012, + "TargetID": 59658, + "Directional": true + }, { + "SourceID": 104598, + "TargetID": 104607, + "Directional": true + }] + }, { + "ID": 10108, + "SourceStructureID": 5649, + "TargetStructureID": 8588, + "Label": "5649-8588 via Ribbon Synapse from 106814 -> 106822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106814, + "TargetID": 106822, + "Directional": true + }] + }, { + "ID": 10109, + "SourceStructureID": 5649, + "TargetStructureID": 16087, + "Label": "5649-16087 via BC Conventional Synapse from 38488 -> 16096", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38488, + "TargetID": 16096, + "Directional": true + }] + }, { + "ID": 10110, + "SourceStructureID": 5649, + "TargetStructureID": 16087, + "Label": "5649-16087 via Ribbon Synapse from 53900 -> 105611, 55733 -> 16095, 78012 -> 78013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53900, + "TargetID": 105611, + "Directional": true + }, { + "SourceID": 55733, + "TargetID": 16095, + "Directional": true + }, { + "SourceID": 78012, + "TargetID": 78013, + "Directional": true + }] + }, { + "ID": 10111, + "SourceStructureID": 5649, + "TargetStructureID": 22974, + "Label": "5649-22974 via Ribbon Synapse from 23026 -> 23027, 23028 -> 23025, 53907 -> 105686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23026, + "TargetID": 23027, + "Directional": true + }, { + "SourceID": 23028, + "TargetID": 23025, + "Directional": true + }, { + "SourceID": 53907, + "TargetID": 105686, + "Directional": true + }] + }, { + "ID": 10112, + "SourceStructureID": 5649, + "TargetStructureID": 31024, + "Label": "5649-31024 via Ribbon Synapse from 31042 -> 31039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31042, + "TargetID": 31039, + "Directional": true + }] + }, { + "ID": 10113, + "SourceStructureID": 5649, + "TargetStructureID": 35064, + "Label": "5649-35064 via BC Conventional Synapse from 105775 -> 105776", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105775, + "TargetID": 105776, + "Directional": true + }] + }, { + "ID": 10114, + "SourceStructureID": 5649, + "TargetStructureID": 35064, + "Label": "5649-35064 via Ribbon Synapse from 35067 -> 35066", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35067, + "TargetID": 35066, + "Directional": true + }] + }, { + "ID": 10115, + "SourceStructureID": 5649, + "TargetStructureID": 35356, + "Label": "5649-35356 via Ribbon Synapse from 35365 -> 35364, 35366 -> 35363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35365, + "TargetID": 35364, + "Directional": true + }, { + "SourceID": 35366, + "TargetID": 35363, + "Directional": true + }] + }, { + "ID": 10116, + "SourceStructureID": 5649, + "TargetStructureID": 36516, + "Label": "5649-36516 via Ribbon Synapse from 33105 -> 36621, 33110 -> 36625", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33105, + "TargetID": 36621, + "Directional": true + }, { + "SourceID": 33110, + "TargetID": 36625, + "Directional": true + }] + }, { + "ID": 10117, + "SourceStructureID": 5649, + "TargetStructureID": 38483, + "Label": "5649-38483 via Ribbon Synapse from 38489 -> 38486, 38498 -> 38497, 106853 -> 106862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38489, + "TargetID": 38486, + "Directional": true + }, { + "SourceID": 38498, + "TargetID": 38497, + "Directional": true + }, { + "SourceID": 106853, + "TargetID": 106862, + "Directional": true + }] + }, { + "ID": 10118, + "SourceStructureID": 5649, + "TargetStructureID": 53202, + "Label": "5649-53202 via Ribbon Synapse from 81698 -> 104674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81698, + "TargetID": 104674, + "Directional": true + }] + }, { + "ID": 10119, + "SourceStructureID": 5649, + "TargetStructureID": 61836, + "Label": "5649-61836 via Ribbon Synapse from 38498 -> 69777, 68118 -> 68117, 68120 -> 68119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38498, + "TargetID": 69777, + "Directional": true + }, { + "SourceID": 68118, + "TargetID": 68117, + "Directional": true + }, { + "SourceID": 68120, + "TargetID": 68119, + "Directional": true + }] + }, { + "ID": 10120, + "SourceStructureID": 5649, + "TargetStructureID": 65576, + "Label": "5649-65576 via Ribbon Synapse from 84501 -> 84504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84501, + "TargetID": 84504, + "Directional": true + }] + }, { + "ID": 10121, + "SourceStructureID": 5649, + "TargetStructureID": 67671, + "Label": "5649-67671 via Ribbon Synapse from 53886 -> 77362, 53888 -> 104738, 53897 -> 77385, 53943 -> 105727, 53999 -> 77720, 54033 -> 77701, 76890 -> 76891, 78012 -> 78014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53886, + "TargetID": 77362, + "Directional": true + }, { + "SourceID": 53888, + "TargetID": 104738, + "Directional": true + }, { + "SourceID": 53897, + "TargetID": 77385, + "Directional": true + }, { + "SourceID": 53943, + "TargetID": 105727, + "Directional": true + }, { + "SourceID": 53999, + "TargetID": 77720, + "Directional": true + }, { + "SourceID": 54033, + "TargetID": 77701, + "Directional": true + }, { + "SourceID": 76890, + "TargetID": 76891, + "Directional": true + }, { + "SourceID": 78012, + "TargetID": 78014, + "Directional": true + }] + }, { + "ID": 10122, + "SourceStructureID": 5649, + "TargetStructureID": 67894, + "Label": "5649-67894 via Ribbon Synapse from 35365 -> 82237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35365, + "TargetID": 82237, + "Directional": true + }] + }, { + "ID": 10123, + "SourceStructureID": 5649, + "TargetStructureID": 68153, + "Label": "5649-68153 via Ribbon Synapse from 68177 -> 68178", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68177, + "TargetID": 68178, + "Directional": true + }] + }, { + "ID": 10124, + "SourceStructureID": 5649, + "TargetStructureID": 68497, + "Label": "5649-68497 via Ribbon Synapse from 81587 -> 81586", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81587, + "TargetID": 81586, + "Directional": true + }] + }, { + "ID": 10125, + "SourceStructureID": 5649, + "TargetStructureID": 68548, + "Label": "5649-68548 via BC Conventional Synapse from 73169 -> 73170", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73169, + "TargetID": 73170, + "Directional": true + }] + }, { + "ID": 10126, + "SourceStructureID": 5649, + "TargetStructureID": 71634, + "Label": "5649-71634 via Ribbon Synapse from 105699 -> 105702, 105764 -> 105763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105699, + "TargetID": 105702, + "Directional": true + }, { + "SourceID": 105764, + "TargetID": 105763, + "Directional": true + }] + }, { + "ID": 10127, + "SourceStructureID": 5649, + "TargetStructureID": 75099, + "Label": "5649-75099 via BC Conventional Synapse from 82564 -> 82565", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82564, + "TargetID": 82565, + "Directional": true + }] + }, { + "ID": 10128, + "SourceStructureID": 5649, + "TargetStructureID": 75099, + "Label": "5649-75099 via Ribbon Synapse from 105397 -> 105412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105397, + "TargetID": 105412, + "Directional": true + }] + }, { + "ID": 10129, + "SourceStructureID": 5649, + "TargetStructureID": 77688, + "Label": "5649-77688 via Ribbon Synapse from 53943 -> 105726", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53943, + "TargetID": 105726, + "Directional": true + }] + }, { + "ID": 10130, + "SourceStructureID": 5649, + "TargetStructureID": 78021, + "Label": "5649-78021 via Ribbon Synapse from 53960 -> 105903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53960, + "TargetID": 105903, + "Directional": true + }] + }, { + "ID": 10131, + "SourceStructureID": 5649, + "TargetStructureID": 78023, + "Label": "5649-78023 via Ribbon Synapse from 78025 -> 78024", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78025, + "TargetID": 78024, + "Directional": true + }] + }, { + "ID": 10132, + "SourceStructureID": 5649, + "TargetStructureID": 78032, + "Label": "5649-78032 via Ribbon Synapse from 106020 -> 106021", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106020, + "TargetID": 106021, + "Directional": true + }] + }, { + "ID": 10133, + "SourceStructureID": 5649, + "TargetStructureID": 78290, + "Label": "5649-78290 via Ribbon Synapse from 53999 -> 106003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53999, + "TargetID": 106003, + "Directional": true + }] + }, { + "ID": 10134, + "SourceStructureID": 5649, + "TargetStructureID": 78431, + "Label": "5649-78431 via Ribbon Synapse from 54308 -> 107184", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54308, + "TargetID": 107184, + "Directional": true + }] + }, { + "ID": 10135, + "SourceStructureID": 5649, + "TargetStructureID": 78909, + "Label": "5649-78909 via Ribbon Synapse from 54180 -> 106317, 54301 -> 87523", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54180, + "TargetID": 106317, + "Directional": true + }, { + "SourceID": 54301, + "TargetID": 87523, + "Directional": true + }] + }, { + "ID": 10136, + "SourceStructureID": 5649, + "TargetStructureID": 80294, + "Label": "5649-80294 via Ribbon Synapse from 54107 -> 106558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54107, + "TargetID": 106558, + "Directional": true + }] + }, { + "ID": 10137, + "SourceStructureID": 5649, + "TargetStructureID": 80338, + "Label": "5649-80338 via Ribbon Synapse from 54103 -> 106538", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54103, + "TargetID": 106538, + "Directional": true + }] + }, { + "ID": 10138, + "SourceStructureID": 5649, + "TargetStructureID": 81588, + "Label": "5649-81588 via Ribbon Synapse from 81587 -> 81589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81587, + "TargetID": 81589, + "Directional": true + }] + }, { + "ID": 10139, + "SourceStructureID": 5649, + "TargetStructureID": 81667, + "Label": "5649-81667 via BC Conventional Synapse from 81723 -> 81721", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81723, + "TargetID": 81721, + "Directional": true + }] + }, { + "ID": 10140, + "SourceStructureID": 5649, + "TargetStructureID": 81667, + "Label": "5649-81667 via Ribbon Synapse from 81698 -> 81699", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81698, + "TargetID": 81699, + "Directional": true + }] + }, { + "ID": 10141, + "SourceStructureID": 5649, + "TargetStructureID": 84502, + "Label": "5649-84502 via Ribbon Synapse from 84501 -> 84503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84501, + "TargetID": 84503, + "Directional": true + }] + }, { + "ID": 10142, + "SourceStructureID": 5649, + "TargetStructureID": 103756, + "Label": "5649-103756 via BC Conventional Synapse from 37860 -> 103757", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37860, + "TargetID": 103757, + "Directional": true + }] + }, { + "ID": 10143, + "SourceStructureID": 5649, + "TargetStructureID": 103760, + "Label": "5649-103760 via BC Conventional Synapse from 103758 -> 103761", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103758, + "TargetID": 103761, + "Directional": true + }] + }, { + "ID": 10144, + "SourceStructureID": 5649, + "TargetStructureID": 103766, + "Label": "5649-103766 via BC Conventional Synapse from 103762 -> 103767", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103762, + "TargetID": 103767, + "Directional": true + }] + }, { + "ID": 10145, + "SourceStructureID": 5649, + "TargetStructureID": 103771, + "Label": "5649-103771 via Ribbon Synapse from 53884 -> 104732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53884, + "TargetID": 104732, + "Directional": true + }] + }, { + "ID": 10146, + "SourceStructureID": 5649, + "TargetStructureID": 103777, + "Label": "5649-103777 via Ribbon Synapse from 103769 -> 103778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103769, + "TargetID": 103778, + "Directional": true + }] + }, { + "ID": 10147, + "SourceStructureID": 5649, + "TargetStructureID": 104484, + "Label": "5649-104484 via Ribbon Synapse from 104476 -> 104488", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104476, + "TargetID": 104488, + "Directional": true + }] + }, { + "ID": 10148, + "SourceStructureID": 5649, + "TargetStructureID": 104489, + "Label": "5649-104489 via Ribbon Synapse from 104475 -> 104490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104475, + "TargetID": 104490, + "Directional": true + }] + }, { + "ID": 10149, + "SourceStructureID": 5649, + "TargetStructureID": 104491, + "Label": "5649-104491 via BC Conventional Synapse from 104493 -> 104492", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104493, + "TargetID": 104492, + "Directional": true + }] + }, { + "ID": 10150, + "SourceStructureID": 5649, + "TargetStructureID": 104497, + "Label": "5649-104497 via Ribbon Synapse from 104502 -> 104501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104502, + "TargetID": 104501, + "Directional": true + }] + }, { + "ID": 10151, + "SourceStructureID": 5649, + "TargetStructureID": 104509, + "Label": "5649-104509 via Ribbon Synapse from 104508 -> 104518, 104561 -> 104570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104508, + "TargetID": 104518, + "Directional": true + }, { + "SourceID": 104561, + "TargetID": 104570, + "Directional": true + }] + }, { + "ID": 10152, + "SourceStructureID": 5649, + "TargetStructureID": 104538, + "Label": "5649-104538 via Ribbon Synapse from 53848 -> 104540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53848, + "TargetID": 104540, + "Directional": true + }] + }, { + "ID": 10153, + "SourceStructureID": 5649, + "TargetStructureID": 104541, + "Label": "5649-104541 via Ribbon Synapse from 53848 -> 104543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53848, + "TargetID": 104543, + "Directional": true + }] + }, { + "ID": 10154, + "SourceStructureID": 5649, + "TargetStructureID": 104559, + "Label": "5649-104559 via Ribbon Synapse from 104561 -> 104560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104561, + "TargetID": 104560, + "Directional": true + }] + }, { + "ID": 10155, + "SourceStructureID": 5649, + "TargetStructureID": 104575, + "Label": "5649-104575 via Ribbon Synapse from 68120 -> 104577", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68120, + "TargetID": 104577, + "Directional": true + }] + }, { + "ID": 10156, + "SourceStructureID": 5649, + "TargetStructureID": 104609, + "Label": "5649-104609 via BC Conventional Synapse from 104611 -> 104610", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104611, + "TargetID": 104610, + "Directional": true + }] + }, { + "ID": 10157, + "SourceStructureID": 5649, + "TargetStructureID": 104613, + "Label": "5649-104613 via BC Conventional Synapse from 104612 -> 104614", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104612, + "TargetID": 104614, + "Directional": true + }] + }, { + "ID": 10158, + "SourceStructureID": 5649, + "TargetStructureID": 104619, + "Label": "5649-104619 via Ribbon Synapse from 77980 -> 104621", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77980, + "TargetID": 104621, + "Directional": true + }] + }, { + "ID": 10159, + "SourceStructureID": 5649, + "TargetStructureID": 104622, + "Label": "5649-104622 via Ribbon Synapse from 76890 -> 104623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76890, + "TargetID": 104623, + "Directional": true + }] + }, { + "ID": 10160, + "SourceStructureID": 5649, + "TargetStructureID": 104633, + "Label": "5649-104633 via Ribbon Synapse from 53836 -> 104634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53836, + "TargetID": 104634, + "Directional": true + }] + }, { + "ID": 10161, + "SourceStructureID": 5649, + "TargetStructureID": 104636, + "Label": "5649-104636 via Ribbon Synapse from 53844 -> 104637", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53844, + "TargetID": 104637, + "Directional": true + }] + }, { + "ID": 10162, + "SourceStructureID": 5649, + "TargetStructureID": 104638, + "Label": "5649-104638 via Ribbon Synapse from 53844 -> 104640, 53845 -> 104645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53844, + "TargetID": 104640, + "Directional": true + }, { + "SourceID": 53845, + "TargetID": 104645, + "Directional": true + }] + }, { + "ID": 10163, + "SourceStructureID": 5649, + "TargetStructureID": 104641, + "Label": "5649-104641 via Ribbon Synapse from 53843 -> 104644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53843, + "TargetID": 104644, + "Directional": true + }] + }, { + "ID": 10164, + "SourceStructureID": 5649, + "TargetStructureID": 104646, + "Label": "5649-104646 via Ribbon Synapse from 53845 -> 104647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53845, + "TargetID": 104647, + "Directional": true + }] + }, { + "ID": 10165, + "SourceStructureID": 5649, + "TargetStructureID": 104655, + "Label": "5649-104655 via Ribbon Synapse from 104632 -> 104658", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104632, + "TargetID": 104658, + "Directional": true + }] + }, { + "ID": 10166, + "SourceStructureID": 5649, + "TargetStructureID": 104656, + "Label": "5649-104656 via Ribbon Synapse from 104632 -> 104657", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104632, + "TargetID": 104657, + "Directional": true + }] + }, { + "ID": 10167, + "SourceStructureID": 5649, + "TargetStructureID": 104659, + "Label": "5649-104659 via BC Conventional Synapse from 104664 -> 104661", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104664, + "TargetID": 104661, + "Directional": true + }] + }, { + "ID": 10168, + "SourceStructureID": 5649, + "TargetStructureID": 104662, + "Label": "5649-104662 via BC Conventional Synapse from 104665 -> 104663", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104665, + "TargetID": 104663, + "Directional": true + }] + }, { + "ID": 10169, + "SourceStructureID": 5649, + "TargetStructureID": 104676, + "Label": "5649-104676 via BC Conventional Synapse from 104675 -> 104678", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104675, + "TargetID": 104678, + "Directional": true + }] + }, { + "ID": 10170, + "SourceStructureID": 5649, + "TargetStructureID": 104680, + "Label": "5649-104680 via Ribbon Synapse from 92022 -> 104681", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92022, + "TargetID": 104681, + "Directional": true + }] + }, { + "ID": 10171, + "SourceStructureID": 5649, + "TargetStructureID": 104682, + "Label": "5649-104682 via Ribbon Synapse from 92022 -> 104689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92022, + "TargetID": 104689, + "Directional": true + }] + }, { + "ID": 10172, + "SourceStructureID": 5649, + "TargetStructureID": 104707, + "Label": "5649-104707 via BC Conventional Synapse from 104704 -> 104709", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104704, + "TargetID": 104709, + "Directional": true + }] + }, { + "ID": 10173, + "SourceStructureID": 5649, + "TargetStructureID": 104710, + "Label": "5649-104710 via BC Conventional Synapse from 104705 -> 104711", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104705, + "TargetID": 104711, + "Directional": true + }] + }, { + "ID": 10174, + "SourceStructureID": 5649, + "TargetStructureID": 104717, + "Label": "5649-104717 via Ribbon Synapse from 53883 -> 104718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53883, + "TargetID": 104718, + "Directional": true + }] + }, { + "ID": 10175, + "SourceStructureID": 5649, + "TargetStructureID": 104721, + "Label": "5649-104721 via Ribbon Synapse from 53881 -> 104723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53881, + "TargetID": 104723, + "Directional": true + }] + }, { + "ID": 10176, + "SourceStructureID": 5649, + "TargetStructureID": 104724, + "Label": "5649-104724 via Ribbon Synapse from 53881 -> 104725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53881, + "TargetID": 104725, + "Directional": true + }] + }, { + "ID": 10177, + "SourceStructureID": 5649, + "TargetStructureID": 104733, + "Label": "5649-104733 via Ribbon Synapse from 53886 -> 104737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53886, + "TargetID": 104737, + "Directional": true + }] + }, { + "ID": 10178, + "SourceStructureID": 5649, + "TargetStructureID": 104739, + "Label": "5649-104739 via Ribbon Synapse from 53888 -> 104758", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53888, + "TargetID": 104758, + "Directional": true + }] + }, { + "ID": 10179, + "SourceStructureID": 5649, + "TargetStructureID": 104746, + "Label": "5649-104746 via Ribbon Synapse from 55740 -> 104747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55740, + "TargetID": 104747, + "Directional": true + }] + }, { + "ID": 10180, + "SourceStructureID": 5649, + "TargetStructureID": 104761, + "Label": "5649-104761 via Ribbon Synapse from 23029 -> 104762", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23029, + "TargetID": 104762, + "Directional": true + }] + }, { + "ID": 10181, + "SourceStructureID": 5649, + "TargetStructureID": 104764, + "Label": "5649-104764 via Ribbon Synapse from 53891 -> 104765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53891, + "TargetID": 104765, + "Directional": true + }] + }, { + "ID": 10182, + "SourceStructureID": 5649, + "TargetStructureID": 104767, + "Label": "5649-104767 via BC Conventional Synapse from 104766 -> 104769", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104766, + "TargetID": 104769, + "Directional": true + }] + }, { + "ID": 10183, + "SourceStructureID": 5649, + "TargetStructureID": 104771, + "Label": "5649-104771 via Ribbon Synapse from 104770 -> 104772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104770, + "TargetID": 104772, + "Directional": true + }] + }, { + "ID": 10184, + "SourceStructureID": 5649, + "TargetStructureID": 104776, + "Label": "5649-104776 via BC Conventional Synapse from 104778 -> 104777", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104778, + "TargetID": 104777, + "Directional": true + }] + }, { + "ID": 10185, + "SourceStructureID": 5649, + "TargetStructureID": 104780, + "Label": "5649-104780 via BC Conventional Synapse from 104779 -> 104781", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104779, + "TargetID": 104781, + "Directional": true + }] + }, { + "ID": 10186, + "SourceStructureID": 5649, + "TargetStructureID": 104783, + "Label": "5649-104783 via BC Conventional Synapse from 104782 -> 104785", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104782, + "TargetID": 104785, + "Directional": true + }] + }, { + "ID": 10187, + "SourceStructureID": 5649, + "TargetStructureID": 104786, + "Label": "5649-104786 via Ribbon Synapse from 55731 -> 104787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55731, + "TargetID": 104787, + "Directional": true + }] + }, { + "ID": 10188, + "SourceStructureID": 5649, + "TargetStructureID": 104788, + "Label": "5649-104788 via Ribbon Synapse from 55731 -> 104789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55731, + "TargetID": 104789, + "Directional": true + }] + }, { + "ID": 10189, + "SourceStructureID": 5649, + "TargetStructureID": 104801, + "Label": "5649-104801 via BC Conventional Synapse from 104800 -> 104802", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104800, + "TargetID": 104802, + "Directional": true + }] + }, { + "ID": 10190, + "SourceStructureID": 5649, + "TargetStructureID": 105320, + "Label": "5649-105320 via BC Conventional Synapse from 105319 -> 105329", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105319, + "TargetID": 105329, + "Directional": true + }] + }, { + "ID": 10191, + "SourceStructureID": 5649, + "TargetStructureID": 105346, + "Label": "5649-105346 via Ribbon Synapse from 105317 -> 105347", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105317, + "TargetID": 105347, + "Directional": true + }] + }, { + "ID": 10192, + "SourceStructureID": 5649, + "TargetStructureID": 105349, + "Label": "5649-105349 via Ribbon Synapse from 105348 -> 105350", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105348, + "TargetID": 105350, + "Directional": true + }] + }, { + "ID": 10193, + "SourceStructureID": 5649, + "TargetStructureID": 105354, + "Label": "5649-105354 via Ribbon Synapse from 105348 -> 105355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105348, + "TargetID": 105355, + "Directional": true + }] + }, { + "ID": 10194, + "SourceStructureID": 5649, + "TargetStructureID": 105359, + "Label": "5649-105359 via Ribbon Synapse from 105358 -> 105371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105358, + "TargetID": 105371, + "Directional": true + }] + }, { + "ID": 10195, + "SourceStructureID": 5649, + "TargetStructureID": 105372, + "Label": "5649-105372 via Ribbon Synapse from 105358 -> 105373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105358, + "TargetID": 105373, + "Directional": true + }] + }, { + "ID": 10196, + "SourceStructureID": 5649, + "TargetStructureID": 105376, + "Label": "5649-105376 via Ribbon Synapse from 105374 -> 105378, 105388 -> 105389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105374, + "TargetID": 105378, + "Directional": true + }, { + "SourceID": 105388, + "TargetID": 105389, + "Directional": true + }] + }, { + "ID": 10197, + "SourceStructureID": 5649, + "TargetStructureID": 105380, + "Label": "5649-105380 via BC Conventional Synapse from 105379 -> 105387", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105379, + "TargetID": 105387, + "Directional": true + }] + }, { + "ID": 10198, + "SourceStructureID": 5649, + "TargetStructureID": 105382, + "Label": "5649-105382 via Ribbon Synapse from 105388 -> 105384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105388, + "TargetID": 105384, + "Directional": true + }] + }, { + "ID": 10199, + "SourceStructureID": 5649, + "TargetStructureID": 105390, + "Label": "5649-105390 via Ribbon Synapse from 105388 -> 105391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105388, + "TargetID": 105391, + "Directional": true + }] + }, { + "ID": 10200, + "SourceStructureID": 5649, + "TargetStructureID": 105398, + "Label": "5649-105398 via Ribbon Synapse from 105397 -> 105399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105397, + "TargetID": 105399, + "Directional": true + }] + }, { + "ID": 10201, + "SourceStructureID": 5649, + "TargetStructureID": 105403, + "Label": "5649-105403 via BC Conventional Synapse from 105405 -> 105404", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105405, + "TargetID": 105404, + "Directional": true + }] + }, { + "ID": 10202, + "SourceStructureID": 5649, + "TargetStructureID": 105410, + "Label": "5649-105410 via Ribbon Synapse from 105409 -> 105411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105409, + "TargetID": 105411, + "Directional": true + }] + }, { + "ID": 10203, + "SourceStructureID": 5649, + "TargetStructureID": 105414, + "Label": "5649-105414 via BC Conventional Synapse from 105413 -> 105415", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105413, + "TargetID": 105415, + "Directional": true + }] + }, { + "ID": 10204, + "SourceStructureID": 5649, + "TargetStructureID": 105418, + "Label": "5649-105418 via Ribbon Synapse from 105416 -> 105419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105416, + "TargetID": 105419, + "Directional": true + }] + }, { + "ID": 10205, + "SourceStructureID": 5649, + "TargetStructureID": 105426, + "Label": "5649-105426 via Ribbon Synapse from 53894 -> 105428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53894, + "TargetID": 105428, + "Directional": true + }] + }, { + "ID": 10206, + "SourceStructureID": 5649, + "TargetStructureID": 105429, + "Label": "5649-105429 via Ribbon Synapse from 53895 -> 105430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53895, + "TargetID": 105430, + "Directional": true + }] + }, { + "ID": 10207, + "SourceStructureID": 5649, + "TargetStructureID": 105436, + "Label": "5649-105436 via Ribbon Synapse from 53895 -> 105437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53895, + "TargetID": 105437, + "Directional": true + }] + }, { + "ID": 10208, + "SourceStructureID": 5649, + "TargetStructureID": 105438, + "Label": "5649-105438 via Ribbon Synapse from 53899 -> 105442", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53899, + "TargetID": 105442, + "Directional": true + }] + }, { + "ID": 10209, + "SourceStructureID": 5649, + "TargetStructureID": 105443, + "Label": "5649-105443 via Ribbon Synapse from 53899 -> 105444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53899, + "TargetID": 105444, + "Directional": true + }] + }, { + "ID": 10210, + "SourceStructureID": 5649, + "TargetStructureID": 105445, + "Label": "5649-105445 via Ribbon Synapse from 53898 -> 105446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53898, + "TargetID": 105446, + "Directional": true + }] + }, { + "ID": 10211, + "SourceStructureID": 5649, + "TargetStructureID": 105553, + "Label": "5649-105553 via BC Conventional Synapse from 134970 -> 134971", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134970, + "TargetID": 134971, + "Directional": true + }] + }, { + "ID": 10212, + "SourceStructureID": 5649, + "TargetStructureID": 105553, + "Label": "5649-105553 via Ribbon Synapse from 105557 -> 105561", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105557, + "TargetID": 105561, + "Directional": true + }] + }, { + "ID": 10213, + "SourceStructureID": 5649, + "TargetStructureID": 105558, + "Label": "5649-105558 via Ribbon Synapse from 105557 -> 105560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105557, + "TargetID": 105560, + "Directional": true + }] + }, { + "ID": 10214, + "SourceStructureID": 5649, + "TargetStructureID": 105566, + "Label": "5649-105566 via Ribbon Synapse from 105565 -> 105567", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105565, + "TargetID": 105567, + "Directional": true + }] + }, { + "ID": 10215, + "SourceStructureID": 5649, + "TargetStructureID": 105568, + "Label": "5649-105568 via Ribbon Synapse from 105565 -> 105569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105565, + "TargetID": 105569, + "Directional": true + }] + }, { + "ID": 10216, + "SourceStructureID": 5649, + "TargetStructureID": 105575, + "Label": "5649-105575 via BC Conventional Synapse from 105573 -> 105576", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105573, + "TargetID": 105576, + "Directional": true + }] + }, { + "ID": 10217, + "SourceStructureID": 5649, + "TargetStructureID": 105585, + "Label": "5649-105585 via BC Conventional Synapse from 105584 -> 105586", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105584, + "TargetID": 105586, + "Directional": true + }] + }, { + "ID": 10218, + "SourceStructureID": 5649, + "TargetStructureID": 105588, + "Label": "5649-105588 via BC Conventional Synapse from 105590 -> 105591", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105590, + "TargetID": 105591, + "Directional": true + }] + }, { + "ID": 10219, + "SourceStructureID": 5649, + "TargetStructureID": 105595, + "Label": "5649-105595 via Ribbon Synapse from 105594 -> 105596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105594, + "TargetID": 105596, + "Directional": true + }] + }, { + "ID": 10220, + "SourceStructureID": 5649, + "TargetStructureID": 105597, + "Label": "5649-105597 via Ribbon Synapse from 105594 -> 105598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105594, + "TargetID": 105598, + "Directional": true + }] + }, { + "ID": 10221, + "SourceStructureID": 5649, + "TargetStructureID": 105609, + "Label": "5649-105609 via BC Conventional Synapse from 105608 -> 105610", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105608, + "TargetID": 105610, + "Directional": true + }] + }, { + "ID": 10222, + "SourceStructureID": 5649, + "TargetStructureID": 105616, + "Label": "5649-105616 via BC Conventional Synapse from 105615 -> 105617", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105615, + "TargetID": 105617, + "Directional": true + }] + }, { + "ID": 10223, + "SourceStructureID": 5649, + "TargetStructureID": 105619, + "Label": "5649-105619 via BC Conventional Synapse from 105618 -> 105620", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105618, + "TargetID": 105620, + "Directional": true + }] + }, { + "ID": 10224, + "SourceStructureID": 5649, + "TargetStructureID": 105659, + "Label": "5649-105659 via BC Conventional Synapse from 105656 -> 105661", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105656, + "TargetID": 105661, + "Directional": true + }] + }, { + "ID": 10225, + "SourceStructureID": 5649, + "TargetStructureID": 105659, + "Label": "5649-105659 via Ribbon Synapse from 105668 -> 105662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105668, + "TargetID": 105662, + "Directional": true + }] + }, { + "ID": 10226, + "SourceStructureID": 5649, + "TargetStructureID": 105663, + "Label": "5649-105663 via Ribbon Synapse from 105668 -> 105669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105668, + "TargetID": 105669, + "Directional": true + }] + }, { + "ID": 10227, + "SourceStructureID": 5649, + "TargetStructureID": 105666, + "Label": "5649-105666 via BC Conventional Synapse from 105665 -> 105667", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105665, + "TargetID": 105667, + "Directional": true + }] + }, { + "ID": 10228, + "SourceStructureID": 5649, + "TargetStructureID": 105673, + "Label": "5649-105673 via Ribbon Synapse from 105672 -> 105674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105672, + "TargetID": 105674, + "Directional": true + }] + }, { + "ID": 10229, + "SourceStructureID": 5649, + "TargetStructureID": 105687, + "Label": "5649-105687 via Ribbon Synapse from 53904 -> 105689, 53907 -> 105688", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53904, + "TargetID": 105689, + "Directional": true + }, { + "SourceID": 53907, + "TargetID": 105688, + "Directional": true + }] + }, { + "ID": 10230, + "SourceStructureID": 5649, + "TargetStructureID": 105700, + "Label": "5649-105700 via Ribbon Synapse from 105699 -> 105701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105699, + "TargetID": 105701, + "Directional": true + }] + }, { + "ID": 10231, + "SourceStructureID": 5649, + "TargetStructureID": 105711, + "Label": "5649-105711 via Ribbon Synapse from 53945 -> 105713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53945, + "TargetID": 105713, + "Directional": true + }] + }, { + "ID": 10232, + "SourceStructureID": 5649, + "TargetStructureID": 105712, + "Label": "5649-105712 via Ribbon Synapse from 53945 -> 105714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53945, + "TargetID": 105714, + "Directional": true + }] + }, { + "ID": 10233, + "SourceStructureID": 5649, + "TargetStructureID": 105715, + "Label": "5649-105715 via Ribbon Synapse from 55733 -> 105717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55733, + "TargetID": 105717, + "Directional": true + }] + }, { + "ID": 10234, + "SourceStructureID": 5649, + "TargetStructureID": 105723, + "Label": "5649-105723 via Ribbon Synapse from 38490 -> 105724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38490, + "TargetID": 105724, + "Directional": true + }] + }, { + "ID": 10235, + "SourceStructureID": 5649, + "TargetStructureID": 105734, + "Label": "5649-105734 via BC Conventional Synapse from 105733 -> 105737", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105733, + "TargetID": 105737, + "Directional": true + }] + }, { + "ID": 10236, + "SourceStructureID": 5649, + "TargetStructureID": 105756, + "Label": "5649-105756 via BC Conventional Synapse from 105752 -> 105757", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105752, + "TargetID": 105757, + "Directional": true + }] + }, { + "ID": 10237, + "SourceStructureID": 5649, + "TargetStructureID": 105773, + "Label": "5649-105773 via BC Conventional Synapse from 105771 -> 105774", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105771, + "TargetID": 105774, + "Directional": true + }] + }, { + "ID": 10238, + "SourceStructureID": 5649, + "TargetStructureID": 105793, + "Label": "5649-105793 via BC Conventional Synapse from 105792 -> 134907", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105792, + "TargetID": 134907, + "Directional": true + }] + }, { + "ID": 10239, + "SourceStructureID": 5649, + "TargetStructureID": 105860, + "Label": "5649-105860 via Ribbon Synapse from 53947 -> 105861", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53947, + "TargetID": 105861, + "Directional": true + }] + }, { + "ID": 10240, + "SourceStructureID": 5649, + "TargetStructureID": 105862, + "Label": "5649-105862 via Ribbon Synapse from 53947 -> 105863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53947, + "TargetID": 105863, + "Directional": true + }] + }, { + "ID": 10241, + "SourceStructureID": 5649, + "TargetStructureID": 105868, + "Label": "5649-105868 via BC Conventional Synapse from 105867 -> 105869", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105867, + "TargetID": 105869, + "Directional": true + }] + }, { + "ID": 10242, + "SourceStructureID": 5649, + "TargetStructureID": 105871, + "Label": "5649-105871 via BC Conventional Synapse from 105870 -> 105872", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105870, + "TargetID": 105872, + "Directional": true + }] + }, { + "ID": 10243, + "SourceStructureID": 5649, + "TargetStructureID": 105889, + "Label": "5649-105889 via Ribbon Synapse from 53957 -> 105890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53957, + "TargetID": 105890, + "Directional": true + }] + }, { + "ID": 10244, + "SourceStructureID": 5649, + "TargetStructureID": 105897, + "Label": "5649-105897 via Ribbon Synapse from 53960 -> 105898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53960, + "TargetID": 105898, + "Directional": true + }] + }, { + "ID": 10245, + "SourceStructureID": 5649, + "TargetStructureID": 105900, + "Label": "5649-105900 via Ribbon Synapse from 53960 -> 105902", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53960, + "TargetID": 105902, + "Directional": true + }] + }, { + "ID": 10246, + "SourceStructureID": 5649, + "TargetStructureID": 105912, + "Label": "5649-105912 via Ribbon Synapse from 53952 -> 105914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53952, + "TargetID": 105914, + "Directional": true + }] + }, { + "ID": 10247, + "SourceStructureID": 5649, + "TargetStructureID": 105916, + "Label": "5649-105916 via Ribbon Synapse from 53952 -> 105917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53952, + "TargetID": 105917, + "Directional": true + }] + }, { + "ID": 10248, + "SourceStructureID": 5649, + "TargetStructureID": 105931, + "Label": "5649-105931 via Ribbon Synapse from 105930 -> 105933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105930, + "TargetID": 105933, + "Directional": true + }] + }, { + "ID": 10249, + "SourceStructureID": 5649, + "TargetStructureID": 105934, + "Label": "5649-105934 via Ribbon Synapse from 53974 -> 105935", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53974, + "TargetID": 105935, + "Directional": true + }] + }, { + "ID": 10250, + "SourceStructureID": 5649, + "TargetStructureID": 105936, + "Label": "5649-105936 via Ribbon Synapse from 53974 -> 105938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53974, + "TargetID": 105938, + "Directional": true + }] + }, { + "ID": 10251, + "SourceStructureID": 5649, + "TargetStructureID": 105940, + "Label": "5649-105940 via Ribbon Synapse from 54003 -> 105941", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54003, + "TargetID": 105941, + "Directional": true + }] + }, { + "ID": 10252, + "SourceStructureID": 5649, + "TargetStructureID": 105942, + "Label": "5649-105942 via Ribbon Synapse from 54003 -> 105943", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54003, + "TargetID": 105943, + "Directional": true + }] + }, { + "ID": 10253, + "SourceStructureID": 5649, + "TargetStructureID": 105946, + "Label": "5649-105946 via BC Conventional Synapse from 105945 -> 105948", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105945, + "TargetID": 105948, + "Directional": true + }] + }, { + "ID": 10254, + "SourceStructureID": 5649, + "TargetStructureID": 105950, + "Label": "5649-105950 via BC Conventional Synapse from 105949 -> 105951", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105949, + "TargetID": 105951, + "Directional": true + }] + }, { + "ID": 10255, + "SourceStructureID": 5649, + "TargetStructureID": 105952, + "Label": "5649-105952 via BC Conventional Synapse from 105954 -> 105953", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105954, + "TargetID": 105953, + "Directional": true + }] + }, { + "ID": 10256, + "SourceStructureID": 5649, + "TargetStructureID": 105963, + "Label": "5649-105963 via Ribbon Synapse from 105962 -> 105964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105962, + "TargetID": 105964, + "Directional": true + }] + }, { + "ID": 10257, + "SourceStructureID": 5649, + "TargetStructureID": 105982, + "Label": "5649-105982 via Ribbon Synapse from 53998 -> 105985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53998, + "TargetID": 105985, + "Directional": true + }] + }, { + "ID": 10258, + "SourceStructureID": 5649, + "TargetStructureID": 105996, + "Label": "5649-105996 via Ribbon Synapse from 105995 -> 105997", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105995, + "TargetID": 105997, + "Directional": true + }] + }, { + "ID": 10259, + "SourceStructureID": 5649, + "TargetStructureID": 106023, + "Label": "5649-106023 via BC Conventional Synapse from 106022 -> 106025", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106022, + "TargetID": 106025, + "Directional": true + }] + }, { + "ID": 10260, + "SourceStructureID": 5649, + "TargetStructureID": 106035, + "Label": "5649-106035 via Ribbon Synapse from 106034 -> 106036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106034, + "TargetID": 106036, + "Directional": true + }] + }, { + "ID": 10261, + "SourceStructureID": 5649, + "TargetStructureID": 106037, + "Label": "5649-106037 via Ribbon Synapse from 106034 -> 106038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106034, + "TargetID": 106038, + "Directional": true + }] + }, { + "ID": 10262, + "SourceStructureID": 5649, + "TargetStructureID": 106059, + "Label": "5649-106059 via Ribbon Synapse from 37867 -> 135385, 106043 -> 106063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37867, + "TargetID": 135385, + "Directional": true + }, { + "SourceID": 106043, + "TargetID": 106063, + "Directional": true + }] + }, { + "ID": 10263, + "SourceStructureID": 5649, + "TargetStructureID": 106098, + "Label": "5649-106098 via BC Conventional Synapse from 135386 -> 106100", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135386, + "TargetID": 106100, + "Directional": true + }] + }, { + "ID": 10264, + "SourceStructureID": 5649, + "TargetStructureID": 106099, + "Label": "5649-106099 via BC Conventional Synapse from 135386 -> 106101", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135386, + "TargetID": 106101, + "Directional": true + }] + }, { + "ID": 10265, + "SourceStructureID": 5649, + "TargetStructureID": 106107, + "Label": "5649-106107 via Ribbon Synapse from 31040 -> 106109", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31040, + "TargetID": 106109, + "Directional": true + }] + }, { + "ID": 10266, + "SourceStructureID": 5649, + "TargetStructureID": 106112, + "Label": "5649-106112 via Ribbon Synapse from 37867 -> 106113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37867, + "TargetID": 106113, + "Directional": true + }] + }, { + "ID": 10267, + "SourceStructureID": 5649, + "TargetStructureID": 106114, + "Label": "5649-106114 via Ribbon Synapse from 106111 -> 106115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106111, + "TargetID": 106115, + "Directional": true + }] + }, { + "ID": 10268, + "SourceStructureID": 5649, + "TargetStructureID": 106119, + "Label": "5649-106119 via Ribbon Synapse from 31040 -> 106120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31040, + "TargetID": 106120, + "Directional": true + }] + }, { + "ID": 10269, + "SourceStructureID": 5649, + "TargetStructureID": 106134, + "Label": "5649-106134 via Ribbon Synapse from 54084 -> 106135", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54084, + "TargetID": 106135, + "Directional": true + }] + }, { + "ID": 10270, + "SourceStructureID": 5649, + "TargetStructureID": 106246, + "Label": "5649-106246 via Ribbon Synapse from 54086 -> 106248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54086, + "TargetID": 106248, + "Directional": true + }] + }, { + "ID": 10271, + "SourceStructureID": 5649, + "TargetStructureID": 106247, + "Label": "5649-106247 via Ribbon Synapse from 54086 -> 106252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54086, + "TargetID": 106252, + "Directional": true + }] + }, { + "ID": 10272, + "SourceStructureID": 5649, + "TargetStructureID": 106269, + "Label": "5649-106269 via Ribbon Synapse from 33110 -> 106271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33110, + "TargetID": 106271, + "Directional": true + }] + }, { + "ID": 10273, + "SourceStructureID": 5649, + "TargetStructureID": 106272, + "Label": "5649-106272 via Ribbon Synapse from 54087 -> 106275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54087, + "TargetID": 106275, + "Directional": true + }] + }, { + "ID": 10274, + "SourceStructureID": 5649, + "TargetStructureID": 106273, + "Label": "5649-106273 via Ribbon Synapse from 54087 -> 106274", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54087, + "TargetID": 106274, + "Directional": true + }] + }, { + "ID": 10275, + "SourceStructureID": 5649, + "TargetStructureID": 106277, + "Label": "5649-106277 via Ribbon Synapse from 54090 -> 106278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54090, + "TargetID": 106278, + "Directional": true + }] + }, { + "ID": 10276, + "SourceStructureID": 5649, + "TargetStructureID": 106288, + "Label": "5649-106288 via Ribbon Synapse from 106287 -> 106289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106287, + "TargetID": 106289, + "Directional": true + }] + }, { + "ID": 10277, + "SourceStructureID": 5649, + "TargetStructureID": 106291, + "Label": "5649-106291 via Ribbon Synapse from 54093 -> 106307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54093, + "TargetID": 106307, + "Directional": true + }] + }, { + "ID": 10278, + "SourceStructureID": 5649, + "TargetStructureID": 106298, + "Label": "5649-106298 via BC Conventional Synapse from 106300 -> 106301", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106300, + "TargetID": 106301, + "Directional": true + }] + }, { + "ID": 10279, + "SourceStructureID": 5649, + "TargetStructureID": 106308, + "Label": "5649-106308 via BC Conventional Synapse from 106311 -> 106309", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106311, + "TargetID": 106309, + "Directional": true + }] + }, { + "ID": 10280, + "SourceStructureID": 5649, + "TargetStructureID": 106315, + "Label": "5649-106315 via Ribbon Synapse from 54180 -> 106316", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54180, + "TargetID": 106316, + "Directional": true + }] + }, { + "ID": 10281, + "SourceStructureID": 5649, + "TargetStructureID": 106339, + "Label": "5649-106339 via Ribbon Synapse from 54183 -> 106340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54183, + "TargetID": 106340, + "Directional": true + }] + }, { + "ID": 10282, + "SourceStructureID": 5649, + "TargetStructureID": 106352, + "Label": "5649-106352 via BC Conventional Synapse from 54114 -> 106353", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54114, + "TargetID": 106353, + "Directional": true + }] + }, { + "ID": 10283, + "SourceStructureID": 5649, + "TargetStructureID": 106419, + "Label": "5649-106419 via Ribbon Synapse from 54119 -> 106420", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54119, + "TargetID": 106420, + "Directional": true + }] + }, { + "ID": 10284, + "SourceStructureID": 5649, + "TargetStructureID": 106531, + "Label": "5649-106531 via Ribbon Synapse from 54108 -> 106533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54108, + "TargetID": 106533, + "Directional": true + }] + }, { + "ID": 10285, + "SourceStructureID": 5649, + "TargetStructureID": 106532, + "Label": "5649-106532 via Ribbon Synapse from 54108 -> 106534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54108, + "TargetID": 106534, + "Directional": true + }] + }, { + "ID": 10286, + "SourceStructureID": 5649, + "TargetStructureID": 106539, + "Label": "5649-106539 via Ribbon Synapse from 54103 -> 106540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54103, + "TargetID": 106540, + "Directional": true + }] + }, { + "ID": 10287, + "SourceStructureID": 5649, + "TargetStructureID": 106552, + "Label": "5649-106552 via Ribbon Synapse from 106551 -> 106553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106551, + "TargetID": 106553, + "Directional": true + }] + }, { + "ID": 10288, + "SourceStructureID": 5649, + "TargetStructureID": 106560, + "Label": "5649-106560 via BC Conventional Synapse from 106559 -> 106561", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106559, + "TargetID": 106561, + "Directional": true + }] + }, { + "ID": 10289, + "SourceStructureID": 5649, + "TargetStructureID": 106562, + "Label": "5649-106562 via Ribbon Synapse from 54107 -> 106563", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54107, + "TargetID": 106563, + "Directional": true + }] + }, { + "ID": 10290, + "SourceStructureID": 5649, + "TargetStructureID": 106564, + "Label": "5649-106564 via Ribbon Synapse from 54107 -> 106590", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54107, + "TargetID": 106590, + "Directional": true + }] + }, { + "ID": 10291, + "SourceStructureID": 5649, + "TargetStructureID": 106595, + "Label": "5649-106595 via Ribbon Synapse from 106594 -> 106596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106594, + "TargetID": 106596, + "Directional": true + }] + }, { + "ID": 10292, + "SourceStructureID": 5649, + "TargetStructureID": 106661, + "Label": "5649-106661 via Ribbon Synapse from 106605 -> 106664", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106605, + "TargetID": 106664, + "Directional": true + }] + }, { + "ID": 10293, + "SourceStructureID": 5649, + "TargetStructureID": 106709, + "Label": "5649-106709 via Ribbon Synapse from 106706 -> 106710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106706, + "TargetID": 106710, + "Directional": true + }] + }, { + "ID": 10294, + "SourceStructureID": 5649, + "TargetStructureID": 106761, + "Label": "5649-106761 via Ribbon Synapse from 54085 -> 106763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54085, + "TargetID": 106763, + "Directional": true + }] + }, { + "ID": 10295, + "SourceStructureID": 5649, + "TargetStructureID": 106764, + "Label": "5649-106764 via Ribbon Synapse from 54085 -> 106769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54085, + "TargetID": 106769, + "Directional": true + }] + }, { + "ID": 10296, + "SourceStructureID": 5649, + "TargetStructureID": 106770, + "Label": "5649-106770 via Ribbon Synapse from 54085 -> 106771", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54085, + "TargetID": 106771, + "Directional": true + }] + }, { + "ID": 10297, + "SourceStructureID": 5649, + "TargetStructureID": 106781, + "Label": "5649-106781 via Ribbon Synapse from 106760 -> 106783", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106760, + "TargetID": 106783, + "Directional": true + }] + }, { + "ID": 10298, + "SourceStructureID": 5649, + "TargetStructureID": 106782, + "Label": "5649-106782 via Ribbon Synapse from 106760 -> 106784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106760, + "TargetID": 106784, + "Directional": true + }] + }, { + "ID": 10299, + "SourceStructureID": 5649, + "TargetStructureID": 106801, + "Label": "5649-106801 via Ribbon Synapse from 106814 -> 106817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106814, + "TargetID": 106817, + "Directional": true + }] + }, { + "ID": 10300, + "SourceStructureID": 5649, + "TargetStructureID": 106859, + "Label": "5649-106859 via Ribbon Synapse from 106853 -> 106860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106853, + "TargetID": 106860, + "Directional": true + }] + }, { + "ID": 10301, + "SourceStructureID": 5649, + "TargetStructureID": 106873, + "Label": "5649-106873 via Ribbon Synapse from 106866 -> 106874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106866, + "TargetID": 106874, + "Directional": true + }] + }, { + "ID": 10302, + "SourceStructureID": 5649, + "TargetStructureID": 106881, + "Label": "5649-106881 via Ribbon Synapse from 106866 -> 106882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106866, + "TargetID": 106882, + "Directional": true + }] + }, { + "ID": 10303, + "SourceStructureID": 5649, + "TargetStructureID": 106883, + "Label": "5649-106883 via Ribbon Synapse from 106866 -> 106884", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106866, + "TargetID": 106884, + "Directional": true + }] + }, { + "ID": 10304, + "SourceStructureID": 5649, + "TargetStructureID": 106926, + "Label": "5649-106926 via Ribbon Synapse from 106923 -> 106930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106923, + "TargetID": 106930, + "Directional": true + }] + }, { + "ID": 10305, + "SourceStructureID": 5649, + "TargetStructureID": 107054, + "Label": "5649-107054 via Ribbon Synapse from 107055 -> 107056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107055, + "TargetID": 107056, + "Directional": true + }] + }, { + "ID": 10306, + "SourceStructureID": 5649, + "TargetStructureID": 107059, + "Label": "5649-107059 via Ribbon Synapse from 107058 -> 107060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107058, + "TargetID": 107060, + "Directional": true + }] + }, { + "ID": 10307, + "SourceStructureID": 5649, + "TargetStructureID": 107063, + "Label": "5649-107063 via Ribbon Synapse from 107058 -> 107064", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107058, + "TargetID": 107064, + "Directional": true + }] + }, { + "ID": 10308, + "SourceStructureID": 5649, + "TargetStructureID": 107074, + "Label": "5649-107074 via Ribbon Synapse from 107077 -> 107076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107077, + "TargetID": 107076, + "Directional": true + }] + }, { + "ID": 10309, + "SourceStructureID": 5649, + "TargetStructureID": 107078, + "Label": "5649-107078 via Ribbon Synapse from 107077 -> 107079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107077, + "TargetID": 107079, + "Directional": true + }] + }, { + "ID": 10310, + "SourceStructureID": 5649, + "TargetStructureID": 107085, + "Label": "5649-107085 via BC Conventional Synapse from 107097 -> 107086", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107097, + "TargetID": 107086, + "Directional": true + }] + }, { + "ID": 10311, + "SourceStructureID": 5649, + "TargetStructureID": 107122, + "Label": "5649-107122 via Ribbon Synapse from 35067 -> 107123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35067, + "TargetID": 107123, + "Directional": true + }] + }, { + "ID": 10312, + "SourceStructureID": 5649, + "TargetStructureID": 107126, + "Label": "5649-107126 via Ribbon Synapse from 54291 -> 107127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54291, + "TargetID": 107127, + "Directional": true + }] + }, { + "ID": 10313, + "SourceStructureID": 5649, + "TargetStructureID": 107129, + "Label": "5649-107129 via Ribbon Synapse from 54292 -> 107130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54292, + "TargetID": 107130, + "Directional": true + }] + }, { + "ID": 10314, + "SourceStructureID": 5649, + "TargetStructureID": 107160, + "Label": "5649-107160 via BC Conventional Synapse from 107159 -> 107161", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107159, + "TargetID": 107161, + "Directional": true + }] + }, { + "ID": 10315, + "SourceStructureID": 5649, + "TargetStructureID": 107179, + "Label": "5649-107179 via Ribbon Synapse from 135438 -> 135439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135438, + "TargetID": 135439, + "Directional": true + }] + }, { + "ID": 10316, + "SourceStructureID": 5649, + "TargetStructureID": 107213, + "Label": "5649-107213 via BC Conventional Synapse from 107212 -> 107214", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107212, + "TargetID": 107214, + "Directional": true + }] + }, { + "ID": 10317, + "SourceStructureID": 5649, + "TargetStructureID": 107220, + "Label": "5649-107220 via BC Conventional Synapse from 107219 -> 107221", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107219, + "TargetID": 107221, + "Directional": true + }] + }, { + "ID": 10318, + "SourceStructureID": 5649, + "TargetStructureID": 107222, + "Label": "5649-107222 via Ribbon Synapse from 107218 -> 107223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107218, + "TargetID": 107223, + "Directional": true + }] + }, { + "ID": 10319, + "SourceStructureID": 5649, + "TargetStructureID": 107227, + "Label": "5649-107227 via BC Conventional Synapse from 107226 -> 107228, 134972 -> 134973", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107226, + "TargetID": 107228, + "Directional": true + }, { + "SourceID": 134972, + "TargetID": 134973, + "Directional": true + }] + }, { + "ID": 10320, + "SourceStructureID": 5649, + "TargetStructureID": 107233, + "Label": "5649-107233 via Ribbon Synapse from 107231 -> 107234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107231, + "TargetID": 107234, + "Directional": true + }] + }, { + "ID": 10321, + "SourceStructureID": 5649, + "TargetStructureID": 107235, + "Label": "5649-107235 via Ribbon Synapse from 107232 -> 107236, 107269 -> 107272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107232, + "TargetID": 107236, + "Directional": true + }, { + "SourceID": 107269, + "TargetID": 107272, + "Directional": true + }] + }, { + "ID": 10322, + "SourceStructureID": 5649, + "TargetStructureID": 107237, + "Label": "5649-107237 via Ribbon Synapse from 107232 -> 107238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107232, + "TargetID": 107238, + "Directional": true + }] + }, { + "ID": 10323, + "SourceStructureID": 5649, + "TargetStructureID": 107246, + "Label": "5649-107246 via BC Conventional Synapse from 107244 -> 107247", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107244, + "TargetID": 107247, + "Directional": true + }] + }, { + "ID": 10324, + "SourceStructureID": 5649, + "TargetStructureID": 107248, + "Label": "5649-107248 via Ribbon Synapse from 107242 -> 107250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107242, + "TargetID": 107250, + "Directional": true + }] + }, { + "ID": 10325, + "SourceStructureID": 5649, + "TargetStructureID": 107257, + "Label": "5649-107257 via BC Conventional Synapse from 107251 -> 107258", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107251, + "TargetID": 107258, + "Directional": true + }] + }, { + "ID": 10326, + "SourceStructureID": 5649, + "TargetStructureID": 107262, + "Label": "5649-107262 via Ribbon Synapse from 107239 -> 107284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107239, + "TargetID": 107284, + "Directional": true + }] + }, { + "ID": 10327, + "SourceStructureID": 5649, + "TargetStructureID": 107265, + "Label": "5649-107265 via Ribbon Synapse from 107241 -> 107274, 107242 -> 107286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107241, + "TargetID": 107274, + "Directional": true + }, { + "SourceID": 107242, + "TargetID": 107286, + "Directional": true + }] + }, { + "ID": 10328, + "SourceStructureID": 5649, + "TargetStructureID": 107275, + "Label": "5649-107275 via Ribbon Synapse from 107241 -> 107276", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107241, + "TargetID": 107276, + "Directional": true + }] + }, { + "ID": 10329, + "SourceStructureID": 5649, + "TargetStructureID": 107280, + "Label": "5649-107280 via Ribbon Synapse from 107240 -> 107282", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107240, + "TargetID": 107282, + "Directional": true + }] + }, { + "ID": 10330, + "SourceStructureID": 5649, + "TargetStructureID": 107287, + "Label": "5649-107287 via Ribbon Synapse from 107242 -> 107288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107242, + "TargetID": 107288, + "Directional": true + }] + }, { + "ID": 10331, + "SourceStructureID": 5649, + "TargetStructureID": 107295, + "Label": "5649-107295 via BC Conventional Synapse from 107294 -> 107296", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107294, + "TargetID": 107296, + "Directional": true + }] + }, { + "ID": 10332, + "SourceStructureID": 5649, + "TargetStructureID": 107304, + "Label": "5649-107304 via Ribbon Synapse from 107303 -> 107305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107303, + "TargetID": 107305, + "Directional": true + }] + }, { + "ID": 10333, + "SourceStructureID": 5649, + "TargetStructureID": 107306, + "Label": "5649-107306 via Ribbon Synapse from 107303 -> 107307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107303, + "TargetID": 107307, + "Directional": true + }] + }, { + "ID": 10334, + "SourceStructureID": 5649, + "TargetStructureID": 107312, + "Label": "5649-107312 via BC Conventional Synapse from 107311 -> 107313", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107311, + "TargetID": 107313, + "Directional": true + }] + }, { + "ID": 10335, + "SourceStructureID": 5649, + "TargetStructureID": 107328, + "Label": "5649-107328 via Ribbon Synapse from 70011 -> 116725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70011, + "TargetID": 116725, + "Directional": true + }] + }, { + "ID": 10336, + "SourceStructureID": 5649, + "TargetStructureID": 107332, + "Label": "5649-107332 via Ribbon Synapse from 35366 -> 107333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35366, + "TargetID": 107333, + "Directional": true + }] + }, { + "ID": 10337, + "SourceStructureID": 5649, + "TargetStructureID": 107339, + "Label": "5649-107339 via BC Conventional Synapse from 104606 -> 104602", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104606, + "TargetID": 104602, + "Directional": true + }] + }, { + "ID": 10338, + "SourceStructureID": 5649, + "TargetStructureID": 107339, + "Label": "5649-107339 via Ribbon Synapse from 59659 -> 107340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59659, + "TargetID": 107340, + "Directional": true + }] + }, { + "ID": 10339, + "SourceStructureID": 5649, + "TargetStructureID": 107342, + "Label": "5649-107342 via Ribbon Synapse from 70012 -> 107343", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70012, + "TargetID": 107343, + "Directional": true + }] + }, { + "ID": 10340, + "SourceStructureID": 5649, + "TargetStructureID": 107344, + "Label": "5649-107344 via BC Conventional Synapse from 107346 -> 107345", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107346, + "TargetID": 107345, + "Directional": true + }] + }, { + "ID": 10341, + "SourceStructureID": 5649, + "TargetStructureID": 108143, + "Label": "5649-108143 via Ribbon Synapse from 108142 -> 108145", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108142, + "TargetID": 108145, + "Directional": true + }] + }, { + "ID": 10342, + "SourceStructureID": 5649, + "TargetStructureID": 113086, + "Label": "5649-113086 via BC Conventional Synapse from 104624 -> 104626", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104624, + "TargetID": 104626, + "Directional": true + }] + }, { + "ID": 10343, + "SourceStructureID": 5649, + "TargetStructureID": 135401, + "Label": "5649-135401 via Ribbon Synapse from 81727 -> 135404", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81727, + "TargetID": 135404, + "Directional": true + }] + }, { + "ID": 10344, + "SourceStructureID": 5650, + "TargetStructureID": 598, + "Label": "5650-598 via Ribbon Synapse from 104303 -> 6324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104303, + "TargetID": 6324, + "Directional": true + }] + }, { + "ID": 10345, + "SourceStructureID": 5650, + "TargetStructureID": 606, + "Label": "5650-606 via Ribbon Synapse from 30159 -> 51486, 51396 -> 51401, 51397 -> 51399, 51442 -> 51443, 51451 -> 51453, 51465 -> 51467, 51479 -> 51480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30159, + "TargetID": 51486, + "Directional": true + }, { + "SourceID": 51396, + "TargetID": 51401, + "Directional": true + }, { + "SourceID": 51397, + "TargetID": 51399, + "Directional": true + }, { + "SourceID": 51442, + "TargetID": 51443, + "Directional": true + }, { + "SourceID": 51451, + "TargetID": 51453, + "Directional": true + }, { + "SourceID": 51465, + "TargetID": 51467, + "Directional": true + }, { + "SourceID": 51479, + "TargetID": 51480, + "Directional": true + }] + }, { + "ID": 10346, + "SourceStructureID": 5650, + "TargetStructureID": 5643, + "Label": "5650-5643 via Ribbon Synapse from 38553 -> 38552, 102750 -> 102751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38553, + "TargetID": 38552, + "Directional": true + }, { + "SourceID": 102750, + "TargetID": 102751, + "Directional": true + }] + }, { + "ID": 10347, + "SourceStructureID": 5650, + "TargetStructureID": 7594, + "Label": "5650-7594 via Ribbon Synapse from 25090 -> 25089, 30264 -> 30273, 105061 -> 25087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25090, + "TargetID": 25089, + "Directional": true + }, { + "SourceID": 30264, + "TargetID": 30273, + "Directional": true + }, { + "SourceID": 105061, + "TargetID": 25087, + "Directional": true + }] + }, { + "ID": 10348, + "SourceStructureID": 5650, + "TargetStructureID": 9769, + "Label": "5650-9769 via Ribbon Synapse from 23470 -> 30125, 23478 -> 23479, 23480 -> 103955, 23483 -> 23484, 23486 -> 23467, 25091 -> 52588, 29913 -> 29920, 29915 -> 20262, 29931 -> 29924, 29938 -> 29936, 30123 -> 30122, 30149 -> 30143, 30154 -> 30155, 30159 -> 30160, 30217 -> 30211, 50563 -> 103838, 51442 -> 51444, 52586 -> 52587, 52606 -> 52596, 53189 -> 53190, 103625 -> 103628, 105039 -> 52590, 105196 -> 105198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23470, + "TargetID": 30125, + "Directional": true + }, { + "SourceID": 23478, + "TargetID": 23479, + "Directional": true + }, { + "SourceID": 23480, + "TargetID": 103955, + "Directional": true + }, { + "SourceID": 23483, + "TargetID": 23484, + "Directional": true + }, { + "SourceID": 23486, + "TargetID": 23467, + "Directional": true + }, { + "SourceID": 25091, + "TargetID": 52588, + "Directional": true + }, { + "SourceID": 29913, + "TargetID": 29920, + "Directional": true + }, { + "SourceID": 29915, + "TargetID": 20262, + "Directional": true + }, { + "SourceID": 29931, + "TargetID": 29924, + "Directional": true + }, { + "SourceID": 29938, + "TargetID": 29936, + "Directional": true + }, { + "SourceID": 30123, + "TargetID": 30122, + "Directional": true + }, { + "SourceID": 30149, + "TargetID": 30143, + "Directional": true + }, { + "SourceID": 30154, + "TargetID": 30155, + "Directional": true + }, { + "SourceID": 30159, + "TargetID": 30160, + "Directional": true + }, { + "SourceID": 30217, + "TargetID": 30211, + "Directional": true + }, { + "SourceID": 50563, + "TargetID": 103838, + "Directional": true + }, { + "SourceID": 51442, + "TargetID": 51444, + "Directional": true + }, { + "SourceID": 52586, + "TargetID": 52587, + "Directional": true + }, { + "SourceID": 52606, + "TargetID": 52596, + "Directional": true + }, { + "SourceID": 53189, + "TargetID": 53190, + "Directional": true + }, { + "SourceID": 103625, + "TargetID": 103628, + "Directional": true + }, { + "SourceID": 105039, + "TargetID": 52590, + "Directional": true + }, { + "SourceID": 105196, + "TargetID": 105198, + "Directional": true + }] + }, { + "ID": 10349, + "SourceStructureID": 5650, + "TargetStructureID": 12897, + "Label": "5650-12897 via BC Conventional Synapse from 102746 -> 102747", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102746, + "TargetID": 102747, + "Directional": true + }] + }, { + "ID": 10350, + "SourceStructureID": 5650, + "TargetStructureID": 16073, + "Label": "5650-16073 via Ribbon Synapse from 105172 -> 105174", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105172, + "TargetID": 105174, + "Directional": true + }] + }, { + "ID": 10351, + "SourceStructureID": 5650, + "TargetStructureID": 30130, + "Label": "5650-30130 via Postsynapse from 103827 -> 103826", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 103827, + "TargetID": 103826, + "Directional": true + }] + }, { + "ID": 10352, + "SourceStructureID": 5650, + "TargetStructureID": 30130, + "Label": "5650-30130 via Ribbon Synapse from 30137 -> 30138, 30264 -> 30263, 50563 -> 103837, 104281 -> 104284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30137, + "TargetID": 30138, + "Directional": true + }, { + "SourceID": 30264, + "TargetID": 30263, + "Directional": true + }, { + "SourceID": 50563, + "TargetID": 103837, + "Directional": true + }, { + "SourceID": 104281, + "TargetID": 104284, + "Directional": true + }] + }, { + "ID": 10353, + "SourceStructureID": 5650, + "TargetStructureID": 35240, + "Label": "5650-35240 via Ribbon Synapse from 35264 -> 35263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35264, + "TargetID": 35263, + "Directional": true + }] + }, { + "ID": 10354, + "SourceStructureID": 5650, + "TargetStructureID": 35351, + "Label": "5650-35351 via Ribbon Synapse from 50565 -> 103598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50565, + "TargetID": 103598, + "Directional": true + }] + }, { + "ID": 10355, + "SourceStructureID": 5650, + "TargetStructureID": 35440, + "Label": "5650-35440 via Ribbon Synapse from 35451 -> 35450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35451, + "TargetID": 35450, + "Directional": true + }] + }, { + "ID": 10356, + "SourceStructureID": 5650, + "TargetStructureID": 53407, + "Label": "5650-53407 via Ribbon Synapse from 23486 -> 53410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23486, + "TargetID": 53410, + "Directional": true + }] + }, { + "ID": 10357, + "SourceStructureID": 5650, + "TargetStructureID": 53443, + "Label": "5650-53443 via Ribbon Synapse from 104153 -> 104154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104153, + "TargetID": 104154, + "Directional": true + }] + }, { + "ID": 10358, + "SourceStructureID": 5650, + "TargetStructureID": 57034, + "Label": "5650-57034 via Ribbon Synapse from 57038 -> 57037, 105172 -> 105173", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57038, + "TargetID": 57037, + "Directional": true + }, { + "SourceID": 105172, + "TargetID": 105173, + "Directional": true + }] + }, { + "ID": 10359, + "SourceStructureID": 5650, + "TargetStructureID": 89097, + "Label": "5650-89097 via Ribbon Synapse from 23490 -> 89100", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23490, + "TargetID": 89100, + "Directional": true + }] + }, { + "ID": 10360, + "SourceStructureID": 5650, + "TargetStructureID": 102646, + "Label": "5650-102646 via Ribbon Synapse from 102647 -> 102648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102647, + "TargetID": 102648, + "Directional": true + }] + }, { + "ID": 10361, + "SourceStructureID": 5650, + "TargetStructureID": 102649, + "Label": "5650-102649 via Ribbon Synapse from 102657 -> 102654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102657, + "TargetID": 102654, + "Directional": true + }] + }, { + "ID": 10362, + "SourceStructureID": 5650, + "TargetStructureID": 102650, + "Label": "5650-102650 via Ribbon Synapse from 102657 -> 102653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102657, + "TargetID": 102653, + "Directional": true + }] + }, { + "ID": 10363, + "SourceStructureID": 5650, + "TargetStructureID": 102664, + "Label": "5650-102664 via Ribbon Synapse from 102668 -> 102669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102668, + "TargetID": 102669, + "Directional": true + }] + }, { + "ID": 10364, + "SourceStructureID": 5650, + "TargetStructureID": 102671, + "Label": "5650-102671 via Ribbon Synapse from 102670 -> 102673", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102670, + "TargetID": 102673, + "Directional": true + }] + }, { + "ID": 10365, + "SourceStructureID": 5650, + "TargetStructureID": 102674, + "Label": "5650-102674 via Ribbon Synapse from 102670 -> 102675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102670, + "TargetID": 102675, + "Directional": true + }] + }, { + "ID": 10366, + "SourceStructureID": 5650, + "TargetStructureID": 102693, + "Label": "5650-102693 via BC Conventional Synapse from 102701 -> 102702", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102701, + "TargetID": 102702, + "Directional": true + }] + }, { + "ID": 10367, + "SourceStructureID": 5650, + "TargetStructureID": 102697, + "Label": "5650-102697 via BC Conventional Synapse from 102698 -> 102699", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102698, + "TargetID": 102699, + "Directional": true + }] + }, { + "ID": 10368, + "SourceStructureID": 5650, + "TargetStructureID": 102761, + "Label": "5650-102761 via Ribbon Synapse from 102763 -> 102762", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102763, + "TargetID": 102762, + "Directional": true + }] + }, { + "ID": 10369, + "SourceStructureID": 5650, + "TargetStructureID": 102787, + "Label": "5650-102787 via Ribbon Synapse from 102786 -> 102794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102786, + "TargetID": 102794, + "Directional": true + }] + }, { + "ID": 10370, + "SourceStructureID": 5650, + "TargetStructureID": 102793, + "Label": "5650-102793 via Ribbon Synapse from 102798 -> 102799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102798, + "TargetID": 102799, + "Directional": true + }] + }, { + "ID": 10371, + "SourceStructureID": 5650, + "TargetStructureID": 102953, + "Label": "5650-102953 via Ribbon Synapse from 102963 -> 102972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102963, + "TargetID": 102972, + "Directional": true + }] + }, { + "ID": 10372, + "SourceStructureID": 5650, + "TargetStructureID": 102975, + "Label": "5650-102975 via Ribbon Synapse from 102978 -> 102979", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102978, + "TargetID": 102979, + "Directional": true + }] + }, { + "ID": 10373, + "SourceStructureID": 5650, + "TargetStructureID": 102982, + "Label": "5650-102982 via Ribbon Synapse from 102984 -> 102983", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102984, + "TargetID": 102983, + "Directional": true + }] + }, { + "ID": 10374, + "SourceStructureID": 5650, + "TargetStructureID": 102990, + "Label": "5650-102990 via Ribbon Synapse from 102989 -> 102992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102989, + "TargetID": 102992, + "Directional": true + }] + }, { + "ID": 10375, + "SourceStructureID": 5650, + "TargetStructureID": 102993, + "Label": "5650-102993 via Ribbon Synapse from 102989 -> 102994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102989, + "TargetID": 102994, + "Directional": true + }] + }, { + "ID": 10376, + "SourceStructureID": 5650, + "TargetStructureID": 102999, + "Label": "5650-102999 via Ribbon Synapse from 61077 -> 103000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61077, + "TargetID": 103000, + "Directional": true + }] + }, { + "ID": 10377, + "SourceStructureID": 5650, + "TargetStructureID": 103005, + "Label": "5650-103005 via Ribbon Synapse from 103006 -> 103007", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103006, + "TargetID": 103007, + "Directional": true + }] + }, { + "ID": 10378, + "SourceStructureID": 5650, + "TargetStructureID": 103043, + "Label": "5650-103043 via Ribbon Synapse from 103042 -> 103044", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103042, + "TargetID": 103044, + "Directional": true + }] + }, { + "ID": 10379, + "SourceStructureID": 5650, + "TargetStructureID": 103045, + "Label": "5650-103045 via Ribbon Synapse from 103042 -> 103046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103042, + "TargetID": 103046, + "Directional": true + }] + }, { + "ID": 10380, + "SourceStructureID": 5650, + "TargetStructureID": 103554, + "Label": "5650-103554 via Ribbon Synapse from 50567 -> 103555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50567, + "TargetID": 103555, + "Directional": true + }] + }, { + "ID": 10381, + "SourceStructureID": 5650, + "TargetStructureID": 103556, + "Label": "5650-103556 via Ribbon Synapse from 50567 -> 103560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50567, + "TargetID": 103560, + "Directional": true + }] + }, { + "ID": 10382, + "SourceStructureID": 5650, + "TargetStructureID": 103561, + "Label": "5650-103561 via Ribbon Synapse from 50570 -> 103562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50570, + "TargetID": 103562, + "Directional": true + }] + }, { + "ID": 10383, + "SourceStructureID": 5650, + "TargetStructureID": 103563, + "Label": "5650-103563 via Ribbon Synapse from 50569 -> 103584", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50569, + "TargetID": 103584, + "Directional": true + }] + }, { + "ID": 10384, + "SourceStructureID": 5650, + "TargetStructureID": 103592, + "Label": "5650-103592 via Ribbon Synapse from 50565 -> 103593", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50565, + "TargetID": 103593, + "Directional": true + }] + }, { + "ID": 10385, + "SourceStructureID": 5650, + "TargetStructureID": 103601, + "Label": "5650-103601 via Ribbon Synapse from 50564 -> 103602", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50564, + "TargetID": 103602, + "Directional": true + }] + }, { + "ID": 10386, + "SourceStructureID": 5650, + "TargetStructureID": 103603, + "Label": "5650-103603 via Ribbon Synapse from 50564 -> 103604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50564, + "TargetID": 103604, + "Directional": true + }] + }, { + "ID": 10387, + "SourceStructureID": 5650, + "TargetStructureID": 103622, + "Label": "5650-103622 via Ribbon Synapse from 50566 -> 103624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50566, + "TargetID": 103624, + "Directional": true + }] + }, { + "ID": 10388, + "SourceStructureID": 5650, + "TargetStructureID": 103626, + "Label": "5650-103626 via Ribbon Synapse from 103625 -> 103627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103625, + "TargetID": 103627, + "Directional": true + }] + }, { + "ID": 10389, + "SourceStructureID": 5650, + "TargetStructureID": 103648, + "Label": "5650-103648 via Ribbon Synapse from 103649 -> 103650", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103649, + "TargetID": 103650, + "Directional": true + }] + }, { + "ID": 10390, + "SourceStructureID": 5650, + "TargetStructureID": 103661, + "Label": "5650-103661 via Ribbon Synapse from 103660 -> 103662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103660, + "TargetID": 103662, + "Directional": true + }] + }, { + "ID": 10391, + "SourceStructureID": 5650, + "TargetStructureID": 103673, + "Label": "5650-103673 via Ribbon Synapse from 103668 -> 103674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103668, + "TargetID": 103674, + "Directional": true + }] + }, { + "ID": 10392, + "SourceStructureID": 5650, + "TargetStructureID": 103690, + "Label": "5650-103690 via Ribbon Synapse from 103688 -> 103691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103688, + "TargetID": 103691, + "Directional": true + }] + }, { + "ID": 10393, + "SourceStructureID": 5650, + "TargetStructureID": 103699, + "Label": "5650-103699 via BC Conventional Synapse from 103698 -> 103700", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103698, + "TargetID": 103700, + "Directional": true + }] + }, { + "ID": 10394, + "SourceStructureID": 5650, + "TargetStructureID": 103823, + "Label": "5650-103823 via Postsynapse from 103825 -> 103824", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 103825, + "TargetID": 103824, + "Directional": true + }] + }, { + "ID": 10395, + "SourceStructureID": 5650, + "TargetStructureID": 103841, + "Label": "5650-103841 via Ribbon Synapse from 103844 -> 103845", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103844, + "TargetID": 103845, + "Directional": true + }] + }, { + "ID": 10396, + "SourceStructureID": 5650, + "TargetStructureID": 103889, + "Label": "5650-103889 via Ribbon Synapse from 50555 -> 103890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50555, + "TargetID": 103890, + "Directional": true + }] + }, { + "ID": 10397, + "SourceStructureID": 5650, + "TargetStructureID": 103893, + "Label": "5650-103893 via Ribbon Synapse from 23488 -> 103894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23488, + "TargetID": 103894, + "Directional": true + }] + }, { + "ID": 10398, + "SourceStructureID": 5650, + "TargetStructureID": 103905, + "Label": "5650-103905 via Ribbon Synapse from 23478 -> 103906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23478, + "TargetID": 103906, + "Directional": true + }] + }, { + "ID": 10399, + "SourceStructureID": 5650, + "TargetStructureID": 103924, + "Label": "5650-103924 via Ribbon Synapse from 103927 -> 103925", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103927, + "TargetID": 103925, + "Directional": true + }] + }, { + "ID": 10400, + "SourceStructureID": 5650, + "TargetStructureID": 103987, + "Label": "5650-103987 via Ribbon Synapse from 103986 -> 104003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103986, + "TargetID": 104003, + "Directional": true + }] + }, { + "ID": 10401, + "SourceStructureID": 5650, + "TargetStructureID": 104005, + "Label": "5650-104005 via Ribbon Synapse from 103986 -> 104011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103986, + "TargetID": 104011, + "Directional": true + }] + }, { + "ID": 10402, + "SourceStructureID": 5650, + "TargetStructureID": 104123, + "Label": "5650-104123 via Ribbon Synapse from 30145 -> 104124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30145, + "TargetID": 104124, + "Directional": true + }] + }, { + "ID": 10403, + "SourceStructureID": 5650, + "TargetStructureID": 104130, + "Label": "5650-104130 via Ribbon Synapse from 104127 -> 118189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104127, + "TargetID": 118189, + "Directional": true + }] + }, { + "ID": 10404, + "SourceStructureID": 5650, + "TargetStructureID": 104149, + "Label": "5650-104149 via Ribbon Synapse from 30149 -> 104152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30149, + "TargetID": 104152, + "Directional": true + }] + }, { + "ID": 10405, + "SourceStructureID": 5650, + "TargetStructureID": 104155, + "Label": "5650-104155 via Ribbon Synapse from 104153 -> 104156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104153, + "TargetID": 104156, + "Directional": true + }] + }, { + "ID": 10406, + "SourceStructureID": 5650, + "TargetStructureID": 104282, + "Label": "5650-104282 via Ribbon Synapse from 104281 -> 104283", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104281, + "TargetID": 104283, + "Directional": true + }] + }, { + "ID": 10407, + "SourceStructureID": 5650, + "TargetStructureID": 104285, + "Label": "5650-104285 via Ribbon Synapse from 30137 -> 104286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30137, + "TargetID": 104286, + "Directional": true + }] + }, { + "ID": 10408, + "SourceStructureID": 5650, + "TargetStructureID": 104304, + "Label": "5650-104304 via Ribbon Synapse from 104303 -> 104306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104303, + "TargetID": 104306, + "Directional": true + }] + }, { + "ID": 10409, + "SourceStructureID": 5650, + "TargetStructureID": 104313, + "Label": "5650-104313 via Ribbon Synapse from 104314 -> 104315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104314, + "TargetID": 104315, + "Directional": true + }] + }, { + "ID": 10410, + "SourceStructureID": 5650, + "TargetStructureID": 104316, + "Label": "5650-104316 via Ribbon Synapse from 104314 -> 104317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104314, + "TargetID": 104317, + "Directional": true + }] + }, { + "ID": 10411, + "SourceStructureID": 5650, + "TargetStructureID": 104345, + "Label": "5650-104345 via Ribbon Synapse from 104344 -> 104347", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104344, + "TargetID": 104347, + "Directional": true + }] + }, { + "ID": 10412, + "SourceStructureID": 5650, + "TargetStructureID": 104433, + "Label": "5650-104433 via Ribbon Synapse from 104437 -> 104439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104437, + "TargetID": 104439, + "Directional": true + }] + }, { + "ID": 10413, + "SourceStructureID": 5650, + "TargetStructureID": 104435, + "Label": "5650-104435 via Ribbon Synapse from 104437 -> 104438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104437, + "TargetID": 104438, + "Directional": true + }] + }, { + "ID": 10414, + "SourceStructureID": 5650, + "TargetStructureID": 104452, + "Label": "5650-104452 via Ribbon Synapse from 29913 -> 104453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29913, + "TargetID": 104453, + "Directional": true + }] + }, { + "ID": 10415, + "SourceStructureID": 5650, + "TargetStructureID": 104454, + "Label": "5650-104454 via Ribbon Synapse from 104455 -> 104456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104455, + "TargetID": 104456, + "Directional": true + }] + }, { + "ID": 10416, + "SourceStructureID": 5650, + "TargetStructureID": 104985, + "Label": "5650-104985 via Ribbon Synapse from 29915 -> 104986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29915, + "TargetID": 104986, + "Directional": true + }] + }, { + "ID": 10417, + "SourceStructureID": 5650, + "TargetStructureID": 105002, + "Label": "5650-105002 via Ribbon Synapse from 25091 -> 105003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25091, + "TargetID": 105003, + "Directional": true + }] + }, { + "ID": 10418, + "SourceStructureID": 5650, + "TargetStructureID": 105014, + "Label": "5650-105014 via Ribbon Synapse from 105013 -> 105015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105013, + "TargetID": 105015, + "Directional": true + }] + }, { + "ID": 10419, + "SourceStructureID": 5650, + "TargetStructureID": 105022, + "Label": "5650-105022 via Ribbon Synapse from 105034 -> 105035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105034, + "TargetID": 105035, + "Directional": true + }] + }, { + "ID": 10420, + "SourceStructureID": 5650, + "TargetStructureID": 105023, + "Label": "5650-105023 via Unknown from 105025 -> 105024", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 105025, + "TargetID": 105024, + "Directional": true + }] + }, { + "ID": 10421, + "SourceStructureID": 5650, + "TargetStructureID": 105062, + "Label": "5650-105062 via Ribbon Synapse from 105061 -> 105063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105061, + "TargetID": 105063, + "Directional": true + }] + }, { + "ID": 10422, + "SourceStructureID": 5650, + "TargetStructureID": 105090, + "Label": "5650-105090 via Ribbon Synapse from 105093 -> 105094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105093, + "TargetID": 105094, + "Directional": true + }] + }, { + "ID": 10423, + "SourceStructureID": 5650, + "TargetStructureID": 105100, + "Label": "5650-105100 via Ribbon Synapse from 105099 -> 105101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105099, + "TargetID": 105101, + "Directional": true + }] + }, { + "ID": 10424, + "SourceStructureID": 5650, + "TargetStructureID": 105102, + "Label": "5650-105102 via Ribbon Synapse from 105111 -> 105115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105111, + "TargetID": 105115, + "Directional": true + }] + }, { + "ID": 10425, + "SourceStructureID": 5650, + "TargetStructureID": 105112, + "Label": "5650-105112 via Ribbon Synapse from 105111 -> 105113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105111, + "TargetID": 105113, + "Directional": true + }] + }, { + "ID": 10426, + "SourceStructureID": 5650, + "TargetStructureID": 105126, + "Label": "5650-105126 via Ribbon Synapse from 105125 -> 105127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105125, + "TargetID": 105127, + "Directional": true + }] + }, { + "ID": 10427, + "SourceStructureID": 5650, + "TargetStructureID": 105131, + "Label": "5650-105131 via Ribbon Synapse from 52606 -> 105132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52606, + "TargetID": 105132, + "Directional": true + }] + }, { + "ID": 10428, + "SourceStructureID": 5650, + "TargetStructureID": 105146, + "Label": "5650-105146 via Ribbon Synapse from 105145 -> 105147", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105145, + "TargetID": 105147, + "Directional": true + }] + }, { + "ID": 10429, + "SourceStructureID": 5650, + "TargetStructureID": 105148, + "Label": "5650-105148 via Ribbon Synapse from 105145 -> 105149", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105145, + "TargetID": 105149, + "Directional": true + }] + }, { + "ID": 10430, + "SourceStructureID": 5650, + "TargetStructureID": 105151, + "Label": "5650-105151 via Ribbon Synapse from 105150 -> 105152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105150, + "TargetID": 105152, + "Directional": true + }] + }, { + "ID": 10431, + "SourceStructureID": 5650, + "TargetStructureID": 105164, + "Label": "5650-105164 via Ribbon Synapse from 105166 -> 105165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105166, + "TargetID": 105165, + "Directional": true + }] + }, { + "ID": 10432, + "SourceStructureID": 5650, + "TargetStructureID": 105167, + "Label": "5650-105167 via Ribbon Synapse from 30216 -> 105170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30216, + "TargetID": 105170, + "Directional": true + }] + }, { + "ID": 10433, + "SourceStructureID": 5650, + "TargetStructureID": 105184, + "Label": "5650-105184 via Ribbon Synapse from 105183 -> 105185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105183, + "TargetID": 105185, + "Directional": true + }] + }, { + "ID": 10434, + "SourceStructureID": 5650, + "TargetStructureID": 105186, + "Label": "5650-105186 via Ribbon Synapse from 105183 -> 105187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105183, + "TargetID": 105187, + "Directional": true + }] + }, { + "ID": 10435, + "SourceStructureID": 5650, + "TargetStructureID": 105199, + "Label": "5650-105199 via Postsynapse from 29928 -> 105201", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 29928, + "TargetID": 105201, + "Directional": true + }] + }, { + "ID": 10436, + "SourceStructureID": 5650, + "TargetStructureID": 106336, + "Label": "5650-106336 via Ribbon Synapse from 57038 -> 106341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57038, + "TargetID": 106341, + "Directional": true + }] + }, { + "ID": 10437, + "SourceStructureID": 5650, + "TargetStructureID": 106361, + "Label": "5650-106361 via BC Conventional Synapse from 106362 -> 106363", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106362, + "TargetID": 106363, + "Directional": true + }] + }, { + "ID": 10438, + "SourceStructureID": 5650, + "TargetStructureID": 106378, + "Label": "5650-106378 via Ribbon Synapse from 29931 -> 106379", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29931, + "TargetID": 106379, + "Directional": true + }] + }, { + "ID": 10439, + "SourceStructureID": 5650, + "TargetStructureID": 106380, + "Label": "5650-106380 via Ribbon Synapse from 29932 -> 106381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29932, + "TargetID": 106381, + "Directional": true + }] + }, { + "ID": 10440, + "SourceStructureID": 5671, + "TargetStructureID": 7859, + "Label": "5671-7859 via Ribbon Synapse from 24930 -> 84705", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24930, + "TargetID": 84705, + "Directional": true + }] + }, { + "ID": 10441, + "SourceStructureID": 5671, + "TargetStructureID": 24898, + "Label": "5671-24898 via Ribbon Synapse from 24923 -> 24900", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24923, + "TargetID": 24900, + "Directional": true + }] + }, { + "ID": 10442, + "SourceStructureID": 5711, + "TargetStructureID": 71118, + "Label": "5711-71118 via Ribbon Synapse from 38129 -> 71149", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38129, + "TargetID": 71149, + "Directional": true + }] + }, { + "ID": 10443, + "SourceStructureID": 5711, + "TargetStructureID": 71152, + "Label": "5711-71152 via Ribbon Synapse from 38129 -> 71154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38129, + "TargetID": 71154, + "Directional": true + }] + }, { + "ID": 10444, + "SourceStructureID": 5711, + "TargetStructureID": 93456, + "Label": "5711-93456 via Ribbon Synapse from 38135 -> 93468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38135, + "TargetID": 93468, + "Directional": true + }] + }, { + "ID": 10445, + "SourceStructureID": 5729, + "TargetStructureID": 606, + "Label": "5729-606 via Ribbon Synapse from 37828 -> 47277, 47228 -> 47227, 47229 -> 47221, 47236 -> 47237, 47262 -> 47263, 47264 -> 47265, 47278 -> 47279, 47280 -> 47281, 47295 -> 47293, 110919 -> 110923", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37828, + "TargetID": 47277, + "Directional": true + }, { + "SourceID": 47228, + "TargetID": 47227, + "Directional": true + }, { + "SourceID": 47229, + "TargetID": 47221, + "Directional": true + }, { + "SourceID": 47236, + "TargetID": 47237, + "Directional": true + }, { + "SourceID": 47262, + "TargetID": 47263, + "Directional": true + }, { + "SourceID": 47264, + "TargetID": 47265, + "Directional": true + }, { + "SourceID": 47278, + "TargetID": 47279, + "Directional": true + }, { + "SourceID": 47280, + "TargetID": 47281, + "Directional": true + }, { + "SourceID": 47295, + "TargetID": 47293, + "Directional": true + }, { + "SourceID": 110919, + "TargetID": 110923, + "Directional": true + }] + }, { + "ID": 10446, + "SourceStructureID": 5729, + "TargetStructureID": 7594, + "Label": "5729-7594 via Ribbon Synapse from 47242 -> 110957", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47242, + "TargetID": 110957, + "Directional": true + }] + }, { + "ID": 10447, + "SourceStructureID": 5729, + "TargetStructureID": 11408, + "Label": "5729-11408 via BC Conventional Synapse from 112614 -> 112646", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112614, + "TargetID": 112646, + "Directional": true + }] + }, { + "ID": 10448, + "SourceStructureID": 5729, + "TargetStructureID": 35240, + "Label": "5729-35240 via Ribbon Synapse from 35281 -> 35280", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35281, + "TargetID": 35280, + "Directional": true + }] + }, { + "ID": 10449, + "SourceStructureID": 5729, + "TargetStructureID": 35428, + "Label": "5729-35428 via Ribbon Synapse from 89624 -> 111956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89624, + "TargetID": 111956, + "Directional": true + }] + }, { + "ID": 10450, + "SourceStructureID": 5729, + "TargetStructureID": 35440, + "Label": "5729-35440 via Ribbon Synapse from 105768 -> 111631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105768, + "TargetID": 111631, + "Directional": true + }] + }, { + "ID": 10451, + "SourceStructureID": 5729, + "TargetStructureID": 55232, + "Label": "5729-55232 via Ribbon Synapse from 47229 -> 55239, 47229 -> 111152, 47236 -> 55250, 55388 -> 55389, 55392 -> 55393", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47229, + "TargetID": 55239, + "Directional": true + }, { + "SourceID": 47229, + "TargetID": 111152, + "Directional": true + }, { + "SourceID": 47236, + "TargetID": 55250, + "Directional": true + }, { + "SourceID": 55388, + "TargetID": 55389, + "Directional": true + }, { + "SourceID": 55392, + "TargetID": 55393, + "Directional": true + }] + }, { + "ID": 10452, + "SourceStructureID": 5729, + "TargetStructureID": 55403, + "Label": "5729-55403 via Ribbon Synapse from 112616 -> 112619, 112622 -> 55472, 112623 -> 55468, 112624 -> 55468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112616, + "TargetID": 112619, + "Directional": true + }, { + "SourceID": 112622, + "TargetID": 55472, + "Directional": true + }, { + "SourceID": 112623, + "TargetID": 55468, + "Directional": true + }, { + "SourceID": 112624, + "TargetID": 55468, + "Directional": true + }] + }, { + "ID": 10453, + "SourceStructureID": 5729, + "TargetStructureID": 64447, + "Label": "5729-64447 via Ribbon Synapse from 64450 -> 64449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64450, + "TargetID": 64449, + "Directional": true + }] + }, { + "ID": 10454, + "SourceStructureID": 5729, + "TargetStructureID": 64452, + "Label": "5729-64452 via Ribbon Synapse from 64536 -> 64455, 89609 -> 89605, 89610 -> 111990, 89627 -> 111947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64536, + "TargetID": 64455, + "Directional": true + }, { + "SourceID": 89609, + "TargetID": 89605, + "Directional": true + }, { + "SourceID": 89610, + "TargetID": 111990, + "Directional": true + }, { + "SourceID": 89627, + "TargetID": 111947, + "Directional": true + }] + }, { + "ID": 10455, + "SourceStructureID": 5729, + "TargetStructureID": 64520, + "Label": "5729-64520 via Ribbon Synapse from 64511 -> 64522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64511, + "TargetID": 64522, + "Directional": true + }] + }, { + "ID": 10456, + "SourceStructureID": 5729, + "TargetStructureID": 68539, + "Label": "5729-68539 via Ribbon Synapse from 47262 -> 110933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47262, + "TargetID": 110933, + "Directional": true + }] + }, { + "ID": 10457, + "SourceStructureID": 5729, + "TargetStructureID": 87277, + "Label": "5729-87277 via Ribbon Synapse from 47295 -> 111451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47295, + "TargetID": 111451, + "Directional": true + }] + }, { + "ID": 10458, + "SourceStructureID": 5729, + "TargetStructureID": 88981, + "Label": "5729-88981 via Ribbon Synapse from 110919 -> 110920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110919, + "TargetID": 110920, + "Directional": true + }] + }, { + "ID": 10459, + "SourceStructureID": 5729, + "TargetStructureID": 89586, + "Label": "5729-89586 via Ribbon Synapse from 64507 -> 89592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64507, + "TargetID": 89592, + "Directional": true + }] + }, { + "ID": 10460, + "SourceStructureID": 5729, + "TargetStructureID": 108749, + "Label": "5729-108749 via Ribbon Synapse from 47296 -> 108750", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47296, + "TargetID": 108750, + "Directional": true + }] + }, { + "ID": 10461, + "SourceStructureID": 5729, + "TargetStructureID": 110535, + "Label": "5729-110535 via Cistern Pre from 37810 -> 110536", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 37810, + "TargetID": 110536, + "Directional": true + }] + }, { + "ID": 10462, + "SourceStructureID": 5729, + "TargetStructureID": 110540, + "Label": "5729-110540 via Ribbon Synapse from 110542 -> 110541", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110542, + "TargetID": 110541, + "Directional": true + }] + }, { + "ID": 10463, + "SourceStructureID": 5729, + "TargetStructureID": 110842, + "Label": "5729-110842 via Ribbon Synapse from 37835 -> 110849, 110848 -> 110849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37835, + "TargetID": 110849, + "Directional": true + }, { + "SourceID": 110848, + "TargetID": 110849, + "Directional": true + }] + }, { + "ID": 10464, + "SourceStructureID": 5729, + "TargetStructureID": 110854, + "Label": "5729-110854 via Ribbon Synapse from 37836 -> 110856, 37837 -> 110856", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37836, + "TargetID": 110856, + "Directional": true + }, { + "SourceID": 37837, + "TargetID": 110856, + "Directional": true + }] + }, { + "ID": 10465, + "SourceStructureID": 5729, + "TargetStructureID": 110876, + "Label": "5729-110876 via Ribbon Synapse from 37843 -> 110877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37843, + "TargetID": 110877, + "Directional": true + }] + }, { + "ID": 10466, + "SourceStructureID": 5729, + "TargetStructureID": 110879, + "Label": "5729-110879 via Ribbon Synapse from 110878 -> 110891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110878, + "TargetID": 110891, + "Directional": true + }] + }, { + "ID": 10467, + "SourceStructureID": 5729, + "TargetStructureID": 110880, + "Label": "5729-110880 via Ribbon Synapse from 37842 -> 110887, 110878 -> 110890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37842, + "TargetID": 110887, + "Directional": true + }, { + "SourceID": 110878, + "TargetID": 110890, + "Directional": true + }] + }, { + "ID": 10468, + "SourceStructureID": 5729, + "TargetStructureID": 110885, + "Label": "5729-110885 via Ribbon Synapse from 37842 -> 110886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37842, + "TargetID": 110886, + "Directional": true + }] + }, { + "ID": 10469, + "SourceStructureID": 5729, + "TargetStructureID": 110921, + "Label": "5729-110921 via Ribbon Synapse from 110919 -> 110922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110919, + "TargetID": 110922, + "Directional": true + }] + }, { + "ID": 10470, + "SourceStructureID": 5729, + "TargetStructureID": 110930, + "Label": "5729-110930 via Ribbon Synapse from 47264 -> 110931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47264, + "TargetID": 110931, + "Directional": true + }] + }, { + "ID": 10471, + "SourceStructureID": 5729, + "TargetStructureID": 110946, + "Label": "5729-110946 via Ribbon Synapse from 37854 -> 110950, 37854 -> 110951", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37854, + "TargetID": 110950, + "Directional": true + }, { + "SourceID": 37854, + "TargetID": 110951, + "Directional": true + }] + }, { + "ID": 10472, + "SourceStructureID": 5729, + "TargetStructureID": 110948, + "Label": "5729-110948 via Ribbon Synapse from 37854 -> 110949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37854, + "TargetID": 110949, + "Directional": true + }] + }, { + "ID": 10473, + "SourceStructureID": 5729, + "TargetStructureID": 111040, + "Label": "5729-111040 via Ribbon Synapse from 47240 -> 111072", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47240, + "TargetID": 111072, + "Directional": true + }] + }, { + "ID": 10474, + "SourceStructureID": 5729, + "TargetStructureID": 111043, + "Label": "5729-111043 via Ribbon Synapse from 111048 -> 111046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111048, + "TargetID": 111046, + "Directional": true + }] + }, { + "ID": 10475, + "SourceStructureID": 5729, + "TargetStructureID": 111049, + "Label": "5729-111049 via Ribbon Synapse from 111048 -> 111050", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111048, + "TargetID": 111050, + "Directional": true + }] + }, { + "ID": 10476, + "SourceStructureID": 5729, + "TargetStructureID": 111051, + "Label": "5729-111051 via Ribbon Synapse from 111048 -> 111052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111048, + "TargetID": 111052, + "Directional": true + }] + }, { + "ID": 10477, + "SourceStructureID": 5729, + "TargetStructureID": 111057, + "Label": "5729-111057 via Ribbon Synapse from 111058 -> 111061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111058, + "TargetID": 111061, + "Directional": true + }] + }, { + "ID": 10478, + "SourceStructureID": 5729, + "TargetStructureID": 111064, + "Label": "5729-111064 via Ribbon Synapse from 111058 -> 111065", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111058, + "TargetID": 111065, + "Directional": true + }] + }, { + "ID": 10479, + "SourceStructureID": 5729, + "TargetStructureID": 111073, + "Label": "5729-111073 via Ribbon Synapse from 47240 -> 111074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47240, + "TargetID": 111074, + "Directional": true + }] + }, { + "ID": 10480, + "SourceStructureID": 5729, + "TargetStructureID": 111164, + "Label": "5729-111164 via Ribbon Synapse from 111163 -> 111170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111163, + "TargetID": 111170, + "Directional": true + }] + }, { + "ID": 10481, + "SourceStructureID": 5729, + "TargetStructureID": 111171, + "Label": "5729-111171 via Ribbon Synapse from 111163 -> 111172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111163, + "TargetID": 111172, + "Directional": true + }] + }, { + "ID": 10482, + "SourceStructureID": 5729, + "TargetStructureID": 111174, + "Label": "5729-111174 via Ribbon Synapse from 55388 -> 111177", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55388, + "TargetID": 111177, + "Directional": true + }] + }, { + "ID": 10483, + "SourceStructureID": 5729, + "TargetStructureID": 111178, + "Label": "5729-111178 via Ribbon Synapse from 55388 -> 111179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55388, + "TargetID": 111179, + "Directional": true + }] + }, { + "ID": 10484, + "SourceStructureID": 5729, + "TargetStructureID": 111201, + "Label": "5729-111201 via Ribbon Synapse from 111200 -> 111202", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111200, + "TargetID": 111202, + "Directional": true + }] + }, { + "ID": 10485, + "SourceStructureID": 5729, + "TargetStructureID": 111296, + "Label": "5729-111296 via Ribbon Synapse from 37813 -> 111297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37813, + "TargetID": 111297, + "Directional": true + }] + }, { + "ID": 10486, + "SourceStructureID": 5729, + "TargetStructureID": 111309, + "Label": "5729-111309 via Ribbon Synapse from 37817 -> 111310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37817, + "TargetID": 111310, + "Directional": true + }] + }, { + "ID": 10487, + "SourceStructureID": 5729, + "TargetStructureID": 111312, + "Label": "5729-111312 via Ribbon Synapse from 37824 -> 111313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37824, + "TargetID": 111313, + "Directional": true + }] + }, { + "ID": 10488, + "SourceStructureID": 5729, + "TargetStructureID": 111314, + "Label": "5729-111314 via Ribbon Synapse from 37820 -> 111333, 37822 -> 111334, 37824 -> 111317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37820, + "TargetID": 111333, + "Directional": true + }, { + "SourceID": 37822, + "TargetID": 111334, + "Directional": true + }, { + "SourceID": 37824, + "TargetID": 111317, + "Directional": true + }] + }, { + "ID": 10489, + "SourceStructureID": 5729, + "TargetStructureID": 111318, + "Label": "5729-111318 via Ribbon Synapse from 37824 -> 111322", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37824, + "TargetID": 111322, + "Directional": true + }] + }, { + "ID": 10490, + "SourceStructureID": 5729, + "TargetStructureID": 111328, + "Label": "5729-111328 via Ribbon Synapse from 37820 -> 111329", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37820, + "TargetID": 111329, + "Directional": true + }] + }, { + "ID": 10491, + "SourceStructureID": 5729, + "TargetStructureID": 111330, + "Label": "5729-111330 via Ribbon Synapse from 37820 -> 111337", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37820, + "TargetID": 111337, + "Directional": true + }] + }, { + "ID": 10492, + "SourceStructureID": 5729, + "TargetStructureID": 111335, + "Label": "5729-111335 via Ribbon Synapse from 37822 -> 111336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37822, + "TargetID": 111336, + "Directional": true + }] + }, { + "ID": 10493, + "SourceStructureID": 5729, + "TargetStructureID": 111339, + "Label": "5729-111339 via Ribbon Synapse from 37823 -> 111340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37823, + "TargetID": 111340, + "Directional": true + }] + }, { + "ID": 10494, + "SourceStructureID": 5729, + "TargetStructureID": 111410, + "Label": "5729-111410 via Ribbon Synapse from 37830 -> 111420, 111412 -> 111413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37830, + "TargetID": 111420, + "Directional": true + }, { + "SourceID": 111412, + "TargetID": 111413, + "Directional": true + }] + }, { + "ID": 10495, + "SourceStructureID": 5729, + "TargetStructureID": 111414, + "Label": "5729-111414 via Ribbon Synapse from 37831 -> 111416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37831, + "TargetID": 111416, + "Directional": true + }] + }, { + "ID": 10496, + "SourceStructureID": 5729, + "TargetStructureID": 111417, + "Label": "5729-111417 via Ribbon Synapse from 37830 -> 111419, 37831 -> 111418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37830, + "TargetID": 111419, + "Directional": true + }, { + "SourceID": 37831, + "TargetID": 111418, + "Directional": true + }] + }, { + "ID": 10497, + "SourceStructureID": 5729, + "TargetStructureID": 111428, + "Label": "5729-111428 via Ribbon Synapse from 47278 -> 111429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47278, + "TargetID": 111429, + "Directional": true + }] + }, { + "ID": 10498, + "SourceStructureID": 5729, + "TargetStructureID": 111436, + "Label": "5729-111436 via Ribbon Synapse from 47280 -> 111437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47280, + "TargetID": 111437, + "Directional": true + }] + }, { + "ID": 10499, + "SourceStructureID": 5729, + "TargetStructureID": 111470, + "Label": "5729-111470 via Ribbon Synapse from 37834 -> 111471", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37834, + "TargetID": 111471, + "Directional": true + }] + }, { + "ID": 10500, + "SourceStructureID": 5729, + "TargetStructureID": 111472, + "Label": "5729-111472 via Ribbon Synapse from 105777 -> 111473", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105777, + "TargetID": 111473, + "Directional": true + }] + }, { + "ID": 10501, + "SourceStructureID": 5729, + "TargetStructureID": 111474, + "Label": "5729-111474 via Ribbon Synapse from 105777 -> 111476", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105777, + "TargetID": 111476, + "Directional": true + }] + }, { + "ID": 10502, + "SourceStructureID": 5729, + "TargetStructureID": 111616, + "Label": "5729-111616 via Ribbon Synapse from 102926 -> 111618, 105768 -> 111626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102926, + "TargetID": 111618, + "Directional": true + }, { + "SourceID": 105768, + "TargetID": 111626, + "Directional": true + }] + }, { + "ID": 10503, + "SourceStructureID": 5729, + "TargetStructureID": 111620, + "Label": "5729-111620 via Ribbon Synapse from 102926 -> 111621", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102926, + "TargetID": 111621, + "Directional": true + }] + }, { + "ID": 10504, + "SourceStructureID": 5729, + "TargetStructureID": 111629, + "Label": "5729-111629 via Ribbon Synapse from 105768 -> 111632", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105768, + "TargetID": 111632, + "Directional": true + }] + }, { + "ID": 10505, + "SourceStructureID": 5729, + "TargetStructureID": 111638, + "Label": "5729-111638 via Ribbon Synapse from 48384 -> 111643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48384, + "TargetID": 111643, + "Directional": true + }] + }, { + "ID": 10506, + "SourceStructureID": 5729, + "TargetStructureID": 111641, + "Label": "5729-111641 via Ribbon Synapse from 48384 -> 111642", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48384, + "TargetID": 111642, + "Directional": true + }] + }, { + "ID": 10507, + "SourceStructureID": 5729, + "TargetStructureID": 111738, + "Label": "5729-111738 via Ribbon Synapse from 48379 -> 111739", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48379, + "TargetID": 111739, + "Directional": true + }] + }, { + "ID": 10508, + "SourceStructureID": 5729, + "TargetStructureID": 111746, + "Label": "5729-111746 via Ribbon Synapse from 48379 -> 111747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48379, + "TargetID": 111747, + "Directional": true + }] + }, { + "ID": 10509, + "SourceStructureID": 5729, + "TargetStructureID": 111753, + "Label": "5729-111753 via Ribbon Synapse from 48381 -> 111754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48381, + "TargetID": 111754, + "Directional": true + }] + }, { + "ID": 10510, + "SourceStructureID": 5729, + "TargetStructureID": 111755, + "Label": "5729-111755 via Ribbon Synapse from 48381 -> 111756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48381, + "TargetID": 111756, + "Directional": true + }] + }, { + "ID": 10511, + "SourceStructureID": 5729, + "TargetStructureID": 111764, + "Label": "5729-111764 via Ribbon Synapse from 111760 -> 111765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111760, + "TargetID": 111765, + "Directional": true + }] + }, { + "ID": 10512, + "SourceStructureID": 5729, + "TargetStructureID": 111772, + "Label": "5729-111772 via Ribbon Synapse from 48383 -> 111773", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48383, + "TargetID": 111773, + "Directional": true + }] + }, { + "ID": 10513, + "SourceStructureID": 5729, + "TargetStructureID": 111776, + "Label": "5729-111776 via Ribbon Synapse from 111762 -> 111777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111762, + "TargetID": 111777, + "Directional": true + }] + }, { + "ID": 10514, + "SourceStructureID": 5729, + "TargetStructureID": 111781, + "Label": "5729-111781 via Ribbon Synapse from 35281 -> 111782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35281, + "TargetID": 111782, + "Directional": true + }] + }, { + "ID": 10515, + "SourceStructureID": 5729, + "TargetStructureID": 111783, + "Label": "5729-111783 via Ribbon Synapse from 111761 -> 111784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111761, + "TargetID": 111784, + "Directional": true + }] + }, { + "ID": 10516, + "SourceStructureID": 5729, + "TargetStructureID": 111949, + "Label": "5729-111949 via Ribbon Synapse from 89627 -> 111950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89627, + "TargetID": 111950, + "Directional": true + }] + }, { + "ID": 10517, + "SourceStructureID": 5729, + "TargetStructureID": 111957, + "Label": "5729-111957 via Ribbon Synapse from 89624 -> 111958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89624, + "TargetID": 111958, + "Directional": true + }] + }, { + "ID": 10518, + "SourceStructureID": 5729, + "TargetStructureID": 111974, + "Label": "5729-111974 via Ribbon Synapse from 111973 -> 111975", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111973, + "TargetID": 111975, + "Directional": true + }] + }, { + "ID": 10519, + "SourceStructureID": 5729, + "TargetStructureID": 111976, + "Label": "5729-111976 via Ribbon Synapse from 111973 -> 111977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111973, + "TargetID": 111977, + "Directional": true + }] + }, { + "ID": 10520, + "SourceStructureID": 5729, + "TargetStructureID": 111980, + "Label": "5729-111980 via Ribbon Synapse from 89608 -> 111981", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89608, + "TargetID": 111981, + "Directional": true + }] + }, { + "ID": 10521, + "SourceStructureID": 5729, + "TargetStructureID": 111982, + "Label": "5729-111982 via Ribbon Synapse from 89608 -> 111984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89608, + "TargetID": 111984, + "Directional": true + }] + }, { + "ID": 10522, + "SourceStructureID": 5729, + "TargetStructureID": 111986, + "Label": "5729-111986 via Ribbon Synapse from 89609 -> 111987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89609, + "TargetID": 111987, + "Directional": true + }] + }, { + "ID": 10523, + "SourceStructureID": 5729, + "TargetStructureID": 111991, + "Label": "5729-111991 via Ribbon Synapse from 89610 -> 111993", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89610, + "TargetID": 111993, + "Directional": true + }] + }, { + "ID": 10524, + "SourceStructureID": 5729, + "TargetStructureID": 112005, + "Label": "5729-112005 via Ribbon Synapse from 112008 -> 112009", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112008, + "TargetID": 112009, + "Directional": true + }] + }, { + "ID": 10525, + "SourceStructureID": 5729, + "TargetStructureID": 112010, + "Label": "5729-112010 via Ribbon Synapse from 112008 -> 112011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112008, + "TargetID": 112011, + "Directional": true + }] + }, { + "ID": 10526, + "SourceStructureID": 5729, + "TargetStructureID": 112304, + "Label": "5729-112304 via Ribbon Synapse from 112305 -> 112309", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112305, + "TargetID": 112309, + "Directional": true + }] + }, { + "ID": 10527, + "SourceStructureID": 5729, + "TargetStructureID": 112447, + "Label": "5729-112447 via Ribbon Synapse from 112446 -> 112448, 112450 -> 112452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112446, + "TargetID": 112448, + "Directional": true + }, { + "SourceID": 112450, + "TargetID": 112452, + "Directional": true + }] + }, { + "ID": 10528, + "SourceStructureID": 5729, + "TargetStructureID": 112449, + "Label": "5729-112449 via Ribbon Synapse from 112450 -> 112453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112450, + "TargetID": 112453, + "Directional": true + }] + }, { + "ID": 10529, + "SourceStructureID": 5729, + "TargetStructureID": 112593, + "Label": "5729-112593 via Ribbon Synapse from 112450 -> 112599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112450, + "TargetID": 112599, + "Directional": true + }] + }, { + "ID": 10530, + "SourceStructureID": 5729, + "TargetStructureID": 112625, + "Label": "5729-112625 via Ribbon Synapse from 112623 -> 112626, 112624 -> 112626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112623, + "TargetID": 112626, + "Directional": true + }, { + "SourceID": 112624, + "TargetID": 112626, + "Directional": true + }] + }, { + "ID": 10531, + "SourceStructureID": 5729, + "TargetStructureID": 112628, + "Label": "5729-112628 via Ribbon Synapse from 112627 -> 112629", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112627, + "TargetID": 112629, + "Directional": true + }] + }, { + "ID": 10532, + "SourceStructureID": 5729, + "TargetStructureID": 112634, + "Label": "5729-112634 via Ribbon Synapse from 112627 -> 112635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112627, + "TargetID": 112635, + "Directional": true + }] + }, { + "ID": 10533, + "SourceStructureID": 5729, + "TargetStructureID": 112638, + "Label": "5729-112638 via Ribbon Synapse from 112622 -> 112639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112622, + "TargetID": 112639, + "Directional": true + }] + }, { + "ID": 10534, + "SourceStructureID": 5729, + "TargetStructureID": 112641, + "Label": "5729-112641 via Ribbon Synapse from 112616 -> 112642, 112617 -> 112642", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112616, + "TargetID": 112642, + "Directional": true + }, { + "SourceID": 112617, + "TargetID": 112642, + "Directional": true + }] + }, { + "ID": 10535, + "SourceStructureID": 5729, + "TargetStructureID": 112658, + "Label": "5729-112658 via Ribbon Synapse from 112654 -> 112659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112654, + "TargetID": 112659, + "Directional": true + }] + }, { + "ID": 10536, + "SourceStructureID": 5729, + "TargetStructureID": 112669, + "Label": "5729-112669 via Ribbon Synapse from 64513 -> 112670", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64513, + "TargetID": 112670, + "Directional": true + }] + }, { + "ID": 10537, + "SourceStructureID": 5729, + "TargetStructureID": 112678, + "Label": "5729-112678 via Ribbon Synapse from 64511 -> 112679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64511, + "TargetID": 112679, + "Directional": true + }] + }, { + "ID": 10538, + "SourceStructureID": 5729, + "TargetStructureID": 112681, + "Label": "5729-112681 via Ribbon Synapse from 64506 -> 112682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64506, + "TargetID": 112682, + "Directional": true + }] + }, { + "ID": 10539, + "SourceStructureID": 5729, + "TargetStructureID": 112684, + "Label": "5729-112684 via Ribbon Synapse from 64507 -> 112686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64507, + "TargetID": 112686, + "Directional": true + }] + }, { + "ID": 10540, + "SourceStructureID": 5729, + "TargetStructureID": 112689, + "Label": "5729-112689 via Ribbon Synapse from 64502 -> 112690", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64502, + "TargetID": 112690, + "Directional": true + }] + }, { + "ID": 10541, + "SourceStructureID": 5729, + "TargetStructureID": 112692, + "Label": "5729-112692 via Ribbon Synapse from 64501 -> 112693", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64501, + "TargetID": 112693, + "Directional": true + }] + }, { + "ID": 10542, + "SourceStructureID": 5729, + "TargetStructureID": 112700, + "Label": "5729-112700 via Ribbon Synapse from 64484 -> 112702", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64484, + "TargetID": 112702, + "Directional": true + }] + }, { + "ID": 10543, + "SourceStructureID": 5729, + "TargetStructureID": 112703, + "Label": "5729-112703 via Ribbon Synapse from 64486 -> 112704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64486, + "TargetID": 112704, + "Directional": true + }] + }, { + "ID": 10544, + "SourceStructureID": 5729, + "TargetStructureID": 112709, + "Label": "5729-112709 via Ribbon Synapse from 64482 -> 112711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64482, + "TargetID": 112711, + "Directional": true + }] + }, { + "ID": 10545, + "SourceStructureID": 5729, + "TargetStructureID": 112715, + "Label": "5729-112715 via Ribbon Synapse from 64501 -> 112716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64501, + "TargetID": 112716, + "Directional": true + }] + }, { + "ID": 10546, + "SourceStructureID": 5729, + "TargetStructureID": 112721, + "Label": "5729-112721 via Adherens from 64476 -> 112724", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 64476, + "TargetID": 112724, + "Directional": true + }] + }, { + "ID": 10547, + "SourceStructureID": 5729, + "TargetStructureID": 112729, + "Label": "5729-112729 via Ribbon Synapse from 64469 -> 112730", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64469, + "TargetID": 112730, + "Directional": true + }] + }, { + "ID": 10548, + "SourceStructureID": 5729, + "TargetStructureID": 112732, + "Label": "5729-112732 via Ribbon Synapse from 64469 -> 112733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64469, + "TargetID": 112733, + "Directional": true + }] + }, { + "ID": 10549, + "SourceStructureID": 5729, + "TargetStructureID": 112887, + "Label": "5729-112887 via Ribbon Synapse from 64461 -> 112892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64461, + "TargetID": 112892, + "Directional": true + }] + }, { + "ID": 10550, + "SourceStructureID": 5729, + "TargetStructureID": 112898, + "Label": "5729-112898 via Ribbon Synapse from 64467 -> 112901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64467, + "TargetID": 112901, + "Directional": true + }] + }, { + "ID": 10551, + "SourceStructureID": 5729, + "TargetStructureID": 112912, + "Label": "5729-112912 via Ribbon Synapse from 64585 -> 112915", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64585, + "TargetID": 112915, + "Directional": true + }] + }, { + "ID": 10552, + "SourceStructureID": 5729, + "TargetStructureID": 112931, + "Label": "5729-112931 via Ribbon Synapse from 64532 -> 112933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64532, + "TargetID": 112933, + "Directional": true + }] + }, { + "ID": 10553, + "SourceStructureID": 5729, + "TargetStructureID": 112934, + "Label": "5729-112934 via Ribbon Synapse from 64532 -> 112935, 64536 -> 112936, 64583 -> 112959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64532, + "TargetID": 112935, + "Directional": true + }, { + "SourceID": 64536, + "TargetID": 112936, + "Directional": true + }, { + "SourceID": 64583, + "TargetID": 112959, + "Directional": true + }] + }, { + "ID": 10554, + "SourceStructureID": 5729, + "TargetStructureID": 112943, + "Label": "5729-112943 via Ribbon Synapse from 64583 -> 112945, 64584 -> 112945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64583, + "TargetID": 112945, + "Directional": true + }, { + "SourceID": 64584, + "TargetID": 112945, + "Directional": true + }] + }, { + "ID": 10555, + "SourceStructureID": 5729, + "TargetStructureID": 112950, + "Label": "5729-112950 via Ribbon Synapse from 64531 -> 112951", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64531, + "TargetID": 112951, + "Directional": true + }] + }, { + "ID": 10556, + "SourceStructureID": 5729, + "TargetStructureID": 112952, + "Label": "5729-112952 via Ribbon Synapse from 64534 -> 112953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64534, + "TargetID": 112953, + "Directional": true + }] + }, { + "ID": 10557, + "SourceStructureID": 5729, + "TargetStructureID": 112955, + "Label": "5729-112955 via Ribbon Synapse from 64584 -> 112956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64584, + "TargetID": 112956, + "Directional": true + }] + }, { + "ID": 10558, + "SourceStructureID": 5729, + "TargetStructureID": 112961, + "Label": "5729-112961 via Ribbon Synapse from 111942 -> 112962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111942, + "TargetID": 112962, + "Directional": true + }] + }, { + "ID": 10559, + "SourceStructureID": 5729, + "TargetStructureID": 112977, + "Label": "5729-112977 via Ribbon Synapse from 112976 -> 112980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112976, + "TargetID": 112980, + "Directional": true + }] + }, { + "ID": 10560, + "SourceStructureID": 5729, + "TargetStructureID": 112978, + "Label": "5729-112978 via Ribbon Synapse from 112975 -> 112981, 112976 -> 112979", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112975, + "TargetID": 112981, + "Directional": true + }, { + "SourceID": 112976, + "TargetID": 112979, + "Directional": true + }] + }, { + "ID": 10561, + "SourceStructureID": 5729, + "TargetStructureID": 112982, + "Label": "5729-112982 via Ribbon Synapse from 112975 -> 112983", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112975, + "TargetID": 112983, + "Directional": true + }] + }, { + "ID": 10562, + "SourceStructureID": 5729, + "TargetStructureID": 112984, + "Label": "5729-112984 via Ribbon Synapse from 112973 -> 112985", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112973, + "TargetID": 112985, + "Directional": true + }] + }, { + "ID": 10563, + "SourceStructureID": 5729, + "TargetStructureID": 112991, + "Label": "5729-112991 via Ribbon Synapse from 112972 -> 112992, 112975 -> 112993", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112972, + "TargetID": 112992, + "Directional": true + }, { + "SourceID": 112975, + "TargetID": 112993, + "Directional": true + }] + }, { + "ID": 10564, + "SourceStructureID": 5729, + "TargetStructureID": 113095, + "Label": "5729-113095 via Ribbon Synapse from 113092 -> 113096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113092, + "TargetID": 113096, + "Directional": true + }] + }, { + "ID": 10565, + "SourceStructureID": 5729, + "TargetStructureID": 113097, + "Label": "5729-113097 via Ribbon Synapse from 113092 -> 113098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113092, + "TargetID": 113098, + "Directional": true + }] + }, { + "ID": 10566, + "SourceStructureID": 5729, + "TargetStructureID": 113099, + "Label": "5729-113099 via Ribbon Synapse from 111795 -> 113100", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111795, + "TargetID": 113100, + "Directional": true + }] + }, { + "ID": 10567, + "SourceStructureID": 5737, + "TargetStructureID": 352, + "Label": "5737-352 via Conventional from 5741 -> 5742", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 5741, + "TargetID": 5742, + "Directional": true + }] + }, { + "ID": 10568, + "SourceStructureID": 5775, + "TargetStructureID": 8575, + "Label": "5775-8575 via BC Conventional Synapse from 62247 -> 62245", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62247, + "TargetID": 62245, + "Directional": true + }] + }, { + "ID": 10569, + "SourceStructureID": 5838, + "TargetStructureID": 5118, + "Label": "5838-5118 via BC Conventional Synapse from 52220 -> 52219", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52220, + "TargetID": 52219, + "Directional": true + }] + }, { + "ID": 10570, + "SourceStructureID": 5838, + "TargetStructureID": 5118, + "Label": "5838-5118 via Ribbon Synapse from 38041 -> 52221", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38041, + "TargetID": 52221, + "Directional": true + }] + }, { + "ID": 10571, + "SourceStructureID": 5838, + "TargetStructureID": 8579, + "Label": "5838-8579 via Ribbon Synapse from 38036 -> 62677", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38036, + "TargetID": 62677, + "Directional": true + }] + }, { + "ID": 10572, + "SourceStructureID": 5860, + "TargetStructureID": 172, + "Label": "5860-172 via Conventional from 29463 -> 29462, 119989 -> 119991", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29463, + "TargetID": 29462, + "Directional": true + }, { + "SourceID": 119989, + "TargetID": 119991, + "Directional": true + }] + }, { + "ID": 10573, + "SourceStructureID": 5860, + "TargetStructureID": 5528, + "Label": "5860-5528 via Conventional from 8248 -> 96908", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8248, + "TargetID": 96908, + "Directional": true + }] + }, { + "ID": 10574, + "SourceStructureID": 5860, + "TargetStructureID": 5544, + "Label": "5860-5544 via Conventional from 9920 -> 9916, 9922 -> 9921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9920, + "TargetID": 9916, + "Directional": true + }, { + "SourceID": 9922, + "TargetID": 9921, + "Directional": true + }] + }, { + "ID": 10575, + "SourceStructureID": 5860, + "TargetStructureID": 7075, + "Label": "5860-7075 via Conventional from 62356 -> 62355", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62356, + "TargetID": 62355, + "Directional": true + }] + }, { + "ID": 10576, + "SourceStructureID": 5860, + "TargetStructureID": 38911, + "Label": "5860-38911 via Conventional from 38910 -> 38914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38910, + "TargetID": 38914, + "Directional": true + }] + }, { + "ID": 10577, + "SourceStructureID": 5916, + "TargetStructureID": 8579, + "Label": "5916-8579 via BC Conventional Synapse from 109327 -> 109328", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109327, + "TargetID": 109328, + "Directional": true + }] + }, { + "ID": 10578, + "SourceStructureID": 5916, + "TargetStructureID": 8579, + "Label": "5916-8579 via Ribbon Synapse from 63973 -> 108279, 109435 -> 19795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63973, + "TargetID": 108279, + "Directional": true + }, { + "SourceID": 109435, + "TargetID": 19795, + "Directional": true + }] + }, { + "ID": 10579, + "SourceStructureID": 5916, + "TargetStructureID": 18282, + "Label": "5916-18282 via Ribbon Synapse from 38845 -> 38843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38845, + "TargetID": 38843, + "Directional": true + }] + }, { + "ID": 10580, + "SourceStructureID": 5916, + "TargetStructureID": 52262, + "Label": "5916-52262 via Ribbon Synapse from 37990 -> 52289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37990, + "TargetID": 52289, + "Directional": true + }] + }, { + "ID": 10581, + "SourceStructureID": 5916, + "TargetStructureID": 106352, + "Label": "5916-106352 via BC Conventional Synapse from 109645 -> 109646", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109645, + "TargetID": 109646, + "Directional": true + }] + }, { + "ID": 10582, + "SourceStructureID": 5916, + "TargetStructureID": 108734, + "Label": "5916-108734 via Ribbon Synapse from 37970 -> 108735", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37970, + "TargetID": 108735, + "Directional": true + }] + }, { + "ID": 10583, + "SourceStructureID": 5916, + "TargetStructureID": 108745, + "Label": "5916-108745 via BC Conventional Synapse from 108747 -> 108748", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108747, + "TargetID": 108748, + "Directional": true + }] + }, { + "ID": 10584, + "SourceStructureID": 5916, + "TargetStructureID": 109039, + "Label": "5916-109039 via Ribbon Synapse from 108922 -> 109044, 108933 -> 109040", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108922, + "TargetID": 109044, + "Directional": true + }, { + "SourceID": 108933, + "TargetID": 109040, + "Directional": true + }] + }, { + "ID": 10585, + "SourceStructureID": 5916, + "TargetStructureID": 109079, + "Label": "5916-109079 via Ribbon Synapse from 38001 -> 109080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38001, + "TargetID": 109080, + "Directional": true + }] + }, { + "ID": 10586, + "SourceStructureID": 5916, + "TargetStructureID": 109308, + "Label": "5916-109308 via Ribbon Synapse from 109312 -> 109313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109312, + "TargetID": 109313, + "Directional": true + }] + }, { + "ID": 10587, + "SourceStructureID": 5916, + "TargetStructureID": 109696, + "Label": "5916-109696 via Ribbon Synapse from 109702 -> 109700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109702, + "TargetID": 109700, + "Directional": true + }] + }, { + "ID": 10588, + "SourceStructureID": 5916, + "TargetStructureID": 109716, + "Label": "5916-109716 via Ribbon Synapse from 109702 -> 109719", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109702, + "TargetID": 109719, + "Directional": true + }] + }, { + "ID": 10589, + "SourceStructureID": 5919, + "TargetStructureID": 166, + "Label": "5919-166 via Conventional from 23613 -> 4128", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23613, + "TargetID": 4128, + "Directional": true + }] + }, { + "ID": 10590, + "SourceStructureID": 5922, + "TargetStructureID": 7050, + "Label": "5922-7050 via Ribbon Synapse from 68834 -> 68835", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68834, + "TargetID": 68835, + "Directional": true + }] + }, { + "ID": 10591, + "SourceStructureID": 5922, + "TargetStructureID": 22232, + "Label": "5922-22232 via Ribbon Synapse from 68829 -> 68830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68829, + "TargetID": 68830, + "Directional": true + }] + }, { + "ID": 10592, + "SourceStructureID": 5922, + "TargetStructureID": 68836, + "Label": "5922-68836 via Ribbon Synapse from 68834 -> 68839", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68834, + "TargetID": 68839, + "Directional": true + }] + }, { + "ID": 10593, + "SourceStructureID": 5923, + "TargetStructureID": 4943, + "Label": "5923-4943 via Ribbon Synapse from 8691 -> 4997, 87584 -> 4997", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8691, + "TargetID": 4997, + "Directional": true + }, { + "SourceID": 87584, + "TargetID": 4997, + "Directional": true + }] + }, { + "ID": 10594, + "SourceStructureID": 5923, + "TargetStructureID": 7050, + "Label": "5923-7050 via Ribbon Synapse from 9974 -> 10069, 10007 -> 14316, 33624 -> 55666", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9974, + "TargetID": 10069, + "Directional": true + }, { + "SourceID": 10007, + "TargetID": 14316, + "Directional": true + }, { + "SourceID": 33624, + "TargetID": 55666, + "Directional": true + }] + }, { + "ID": 10595, + "SourceStructureID": 5923, + "TargetStructureID": 12897, + "Label": "5923-12897 via Ribbon Synapse from 9961 -> 24724", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9961, + "TargetID": 24724, + "Directional": true + }] + }, { + "ID": 10596, + "SourceStructureID": 5923, + "TargetStructureID": 87589, + "Label": "5923-87589 via Ribbon Synapse from 87587 -> 98799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87587, + "TargetID": 98799, + "Directional": true + }] + }, { + "ID": 10597, + "SourceStructureID": 6011, + "TargetStructureID": 138, + "Label": "6011-138 via Conventional from 6034 -> 32880, 6035 -> 32881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6034, + "TargetID": 32880, + "Directional": true + }, { + "SourceID": 6035, + "TargetID": 32881, + "Directional": true + }] + }, { + "ID": 10598, + "SourceStructureID": 6011, + "TargetStructureID": 5640, + "Label": "6011-5640 via Conventional from 37063 -> 37062", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37063, + "TargetID": 37062, + "Directional": true + }] + }, { + "ID": 10599, + "SourceStructureID": 6011, + "TargetStructureID": 5648, + "Label": "6011-5648 via Conventional from 6037 -> 23418", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6037, + "TargetID": 23418, + "Directional": true + }] + }, { + "ID": 10600, + "SourceStructureID": 6011, + "TargetStructureID": 6050, + "Label": "6011-6050 via Conventional from 6029 -> 37632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6029, + "TargetID": 37632, + "Directional": true + }] + }, { + "ID": 10601, + "SourceStructureID": 6011, + "TargetStructureID": 6136, + "Label": "6011-6136 via Conventional from 6028 -> 10366", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6028, + "TargetID": 10366, + "Directional": true + }] + }, { + "ID": 10602, + "SourceStructureID": 6046, + "TargetStructureID": 7134, + "Label": "6046-7134 via Ribbon Synapse from 16715 -> 16747, 16716 -> 16748, 16719 -> 16745, 16726 -> 53602, 18189 -> 53593, 18191 -> 53594, 42759 -> 41648", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16715, + "TargetID": 16747, + "Directional": true + }, { + "SourceID": 16716, + "TargetID": 16748, + "Directional": true + }, { + "SourceID": 16719, + "TargetID": 16745, + "Directional": true + }, { + "SourceID": 16726, + "TargetID": 53602, + "Directional": true + }, { + "SourceID": 18189, + "TargetID": 53593, + "Directional": true + }, { + "SourceID": 18191, + "TargetID": 53594, + "Directional": true + }, { + "SourceID": 42759, + "TargetID": 41648, + "Directional": true + }] + }, { + "ID": 10603, + "SourceStructureID": 6046, + "TargetStructureID": 7145, + "Label": "6046-7145 via Ribbon Synapse from 16676 -> 16684, 16678 -> 15834", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16676, + "TargetID": 16684, + "Directional": true + }, { + "SourceID": 16678, + "TargetID": 15834, + "Directional": true + }] + }, { + "ID": 10604, + "SourceStructureID": 6046, + "TargetStructureID": 7897, + "Label": "6046-7897 via Ribbon Synapse from 11859 -> 55690", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11859, + "TargetID": 55690, + "Directional": true + }] + }, { + "ID": 10605, + "SourceStructureID": 6046, + "TargetStructureID": 16073, + "Label": "6046-16073 via Ribbon Synapse from 16729 -> 18213", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16729, + "TargetID": 18213, + "Directional": true + }] + }, { + "ID": 10606, + "SourceStructureID": 6046, + "TargetStructureID": 35576, + "Label": "6046-35576 via Ribbon Synapse from 16734 -> 35581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16734, + "TargetID": 35581, + "Directional": true + }] + }, { + "ID": 10607, + "SourceStructureID": 6046, + "TargetStructureID": 43261, + "Label": "6046-43261 via Ribbon Synapse from 18179 -> 122049", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18179, + "TargetID": 122049, + "Directional": true + }] + }, { + "ID": 10608, + "SourceStructureID": 6046, + "TargetStructureID": 61450, + "Label": "6046-61450 via BC Conventional Synapse from 61454 -> 61453", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61454, + "TargetID": 61453, + "Directional": true + }] + }, { + "ID": 10609, + "SourceStructureID": 6047, + "TargetStructureID": 5107, + "Label": "6047-5107 via Ribbon Synapse from 112034 -> 65074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112034, + "TargetID": 65074, + "Directional": true + }] + }, { + "ID": 10610, + "SourceStructureID": 6047, + "TargetStructureID": 7073, + "Label": "6047-7073 via Ribbon Synapse from 19623 -> 19624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19623, + "TargetID": 19624, + "Directional": true + }] + }, { + "ID": 10611, + "SourceStructureID": 6047, + "TargetStructureID": 9769, + "Label": "6047-9769 via Ribbon Synapse from 19680 -> 52611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19680, + "TargetID": 52611, + "Directional": true + }] + }, { + "ID": 10612, + "SourceStructureID": 6047, + "TargetStructureID": 35343, + "Label": "6047-35343 via Cistern Pre from 129332 -> 129333", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 129332, + "TargetID": 129333, + "Directional": true + }] + }, { + "ID": 10613, + "SourceStructureID": 6047, + "TargetStructureID": 47104, + "Label": "6047-47104 via Ribbon Synapse from 30639 -> 47185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30639, + "TargetID": 47185, + "Directional": true + }] + }, { + "ID": 10614, + "SourceStructureID": 6047, + "TargetStructureID": 68539, + "Label": "6047-68539 via Ribbon Synapse from 19655 -> 73768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19655, + "TargetID": 73768, + "Directional": true + }] + }, { + "ID": 10615, + "SourceStructureID": 6047, + "TargetStructureID": 74231, + "Label": "6047-74231 via Ribbon Synapse from 112493 -> 112504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112493, + "TargetID": 112504, + "Directional": true + }] + }, { + "ID": 10616, + "SourceStructureID": 6047, + "TargetStructureID": 75133, + "Label": "6047-75133 via Ribbon Synapse from 19719 -> 112377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19719, + "TargetID": 112377, + "Directional": true + }] + }, { + "ID": 10617, + "SourceStructureID": 6047, + "TargetStructureID": 111904, + "Label": "6047-111904 via Cistern Pre from 19615 -> 111906, 19617 -> 111905", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 19615, + "TargetID": 111906, + "Directional": true + }, { + "SourceID": 19617, + "TargetID": 111905, + "Directional": true + }] + }, { + "ID": 10618, + "SourceStructureID": 6047, + "TargetStructureID": 111908, + "Label": "6047-111908 via Cistern Pre from 19614 -> 111910", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 19614, + "TargetID": 111910, + "Directional": true + }] + }, { + "ID": 10619, + "SourceStructureID": 6047, + "TargetStructureID": 111914, + "Label": "6047-111914 via Ribbon Synapse from 19618 -> 111915", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19618, + "TargetID": 111915, + "Directional": true + }] + }, { + "ID": 10620, + "SourceStructureID": 6047, + "TargetStructureID": 111923, + "Label": "6047-111923 via BC Conventional Synapse from 111922 -> 111925", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111922, + "TargetID": 111925, + "Directional": true + }] + }, { + "ID": 10621, + "SourceStructureID": 6047, + "TargetStructureID": 111923, + "Label": "6047-111923 via Ribbon Synapse from 19619 -> 111924", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19619, + "TargetID": 111924, + "Directional": true + }] + }, { + "ID": 10622, + "SourceStructureID": 6047, + "TargetStructureID": 111929, + "Label": "6047-111929 via Ribbon Synapse from 19693 -> 111930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19693, + "TargetID": 111930, + "Directional": true + }] + }, { + "ID": 10623, + "SourceStructureID": 6047, + "TargetStructureID": 111934, + "Label": "6047-111934 via BC Conventional Synapse from 111933 -> 111935", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111933, + "TargetID": 111935, + "Directional": true + }] + }, { + "ID": 10624, + "SourceStructureID": 6047, + "TargetStructureID": 112020, + "Label": "6047-112020 via BC Conventional Synapse from 112022 -> 112023", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112022, + "TargetID": 112023, + "Directional": true + }] + }, { + "ID": 10625, + "SourceStructureID": 6047, + "TargetStructureID": 112020, + "Label": "6047-112020 via Ribbon Synapse from 19694 -> 112021", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19694, + "TargetID": 112021, + "Directional": true + }] + }, { + "ID": 10626, + "SourceStructureID": 6047, + "TargetStructureID": 112024, + "Label": "6047-112024 via Ribbon Synapse from 19695 -> 112025", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19695, + "TargetID": 112025, + "Directional": true + }] + }, { + "ID": 10627, + "SourceStructureID": 6047, + "TargetStructureID": 112036, + "Label": "6047-112036 via Ribbon Synapse from 112035 -> 112038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112035, + "TargetID": 112038, + "Directional": true + }] + }, { + "ID": 10628, + "SourceStructureID": 6047, + "TargetStructureID": 112049, + "Label": "6047-112049 via Ribbon Synapse from 112041 -> 112050", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112041, + "TargetID": 112050, + "Directional": true + }] + }, { + "ID": 10629, + "SourceStructureID": 6047, + "TargetStructureID": 112051, + "Label": "6047-112051 via Ribbon Synapse from 112041 -> 112052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112041, + "TargetID": 112052, + "Directional": true + }] + }, { + "ID": 10630, + "SourceStructureID": 6047, + "TargetStructureID": 112075, + "Label": "6047-112075 via Ribbon Synapse from 19697 -> 112076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19697, + "TargetID": 112076, + "Directional": true + }] + }, { + "ID": 10631, + "SourceStructureID": 6047, + "TargetStructureID": 112091, + "Label": "6047-112091 via Ribbon Synapse from 19706 -> 112092", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19706, + "TargetID": 112092, + "Directional": true + }] + }, { + "ID": 10632, + "SourceStructureID": 6047, + "TargetStructureID": 112115, + "Label": "6047-112115 via Ribbon Synapse from 19676 -> 112117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19676, + "TargetID": 112117, + "Directional": true + }] + }, { + "ID": 10633, + "SourceStructureID": 6047, + "TargetStructureID": 112120, + "Label": "6047-112120 via Ribbon Synapse from 19676 -> 112121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19676, + "TargetID": 112121, + "Directional": true + }] + }, { + "ID": 10634, + "SourceStructureID": 6047, + "TargetStructureID": 112122, + "Label": "6047-112122 via Ribbon Synapse from 19676 -> 112123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19676, + "TargetID": 112123, + "Directional": true + }] + }, { + "ID": 10635, + "SourceStructureID": 6047, + "TargetStructureID": 112142, + "Label": "6047-112142 via Ribbon Synapse from 112141 -> 112143", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112141, + "TargetID": 112143, + "Directional": true + }] + }, { + "ID": 10636, + "SourceStructureID": 6047, + "TargetStructureID": 112144, + "Label": "6047-112144 via Ribbon Synapse from 112146 -> 112145", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112146, + "TargetID": 112145, + "Directional": true + }] + }, { + "ID": 10637, + "SourceStructureID": 6047, + "TargetStructureID": 112147, + "Label": "6047-112147 via Ribbon Synapse from 112153 -> 112148", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112153, + "TargetID": 112148, + "Directional": true + }] + }, { + "ID": 10638, + "SourceStructureID": 6047, + "TargetStructureID": 112149, + "Label": "6047-112149 via Ribbon Synapse from 112153 -> 112150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112153, + "TargetID": 112150, + "Directional": true + }] + }, { + "ID": 10639, + "SourceStructureID": 6047, + "TargetStructureID": 112151, + "Label": "6047-112151 via Ribbon Synapse from 112153 -> 112152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112153, + "TargetID": 112152, + "Directional": true + }] + }, { + "ID": 10640, + "SourceStructureID": 6047, + "TargetStructureID": 112157, + "Label": "6047-112157 via BC Conventional Synapse from 148296 -> 112158", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148296, + "TargetID": 112158, + "Directional": true + }] + }, { + "ID": 10641, + "SourceStructureID": 6047, + "TargetStructureID": 112170, + "Label": "6047-112170 via Ribbon Synapse from 19684 -> 112171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19684, + "TargetID": 112171, + "Directional": true + }] + }, { + "ID": 10642, + "SourceStructureID": 6047, + "TargetStructureID": 112172, + "Label": "6047-112172 via Ribbon Synapse from 19684 -> 112175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19684, + "TargetID": 112175, + "Directional": true + }] + }, { + "ID": 10643, + "SourceStructureID": 6047, + "TargetStructureID": 112176, + "Label": "6047-112176 via Ribbon Synapse from 19684 -> 112177", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19684, + "TargetID": 112177, + "Directional": true + }] + }, { + "ID": 10644, + "SourceStructureID": 6047, + "TargetStructureID": 112188, + "Label": "6047-112188 via Ribbon Synapse from 19669 -> 112195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19669, + "TargetID": 112195, + "Directional": true + }] + }, { + "ID": 10645, + "SourceStructureID": 6047, + "TargetStructureID": 112192, + "Label": "6047-112192 via Ribbon Synapse from 19669 -> 112193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19669, + "TargetID": 112193, + "Directional": true + }] + }, { + "ID": 10646, + "SourceStructureID": 6047, + "TargetStructureID": 112197, + "Label": "6047-112197 via BC Conventional Synapse from 112196 -> 112198", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112196, + "TargetID": 112198, + "Directional": true + }] + }, { + "ID": 10647, + "SourceStructureID": 6047, + "TargetStructureID": 112203, + "Label": "6047-112203 via BC Conventional Synapse from 112202 -> 112204", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112202, + "TargetID": 112204, + "Directional": true + }] + }, { + "ID": 10648, + "SourceStructureID": 6047, + "TargetStructureID": 112209, + "Label": "6047-112209 via Ribbon Synapse from 19711 -> 112210", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19711, + "TargetID": 112210, + "Directional": true + }] + }, { + "ID": 10649, + "SourceStructureID": 6047, + "TargetStructureID": 112221, + "Label": "6047-112221 via BC Conventional Synapse from 112224 -> 112225", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112224, + "TargetID": 112225, + "Directional": true + }] + }, { + "ID": 10650, + "SourceStructureID": 6047, + "TargetStructureID": 112232, + "Label": "6047-112232 via Ribbon Synapse from 61335 -> 112235", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61335, + "TargetID": 112235, + "Directional": true + }] + }, { + "ID": 10651, + "SourceStructureID": 6047, + "TargetStructureID": 112246, + "Label": "6047-112246 via Ribbon Synapse from 112243 -> 112249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112243, + "TargetID": 112249, + "Directional": true + }] + }, { + "ID": 10652, + "SourceStructureID": 6047, + "TargetStructureID": 112253, + "Label": "6047-112253 via Ribbon Synapse from 61332 -> 112266", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61332, + "TargetID": 112266, + "Directional": true + }] + }, { + "ID": 10653, + "SourceStructureID": 6047, + "TargetStructureID": 112257, + "Label": "6047-112257 via BC Conventional Synapse from 112259 -> 112258", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112259, + "TargetID": 112258, + "Directional": true + }] + }, { + "ID": 10654, + "SourceStructureID": 6047, + "TargetStructureID": 112260, + "Label": "6047-112260 via BC Conventional Synapse from 112263 -> 112261", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112263, + "TargetID": 112261, + "Directional": true + }] + }, { + "ID": 10655, + "SourceStructureID": 6047, + "TargetStructureID": 112264, + "Label": "6047-112264 via Ribbon Synapse from 112248 -> 112269", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112248, + "TargetID": 112269, + "Directional": true + }] + }, { + "ID": 10656, + "SourceStructureID": 6047, + "TargetStructureID": 112267, + "Label": "6047-112267 via Ribbon Synapse from 61332 -> 112268", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61332, + "TargetID": 112268, + "Directional": true + }] + }, { + "ID": 10657, + "SourceStructureID": 6047, + "TargetStructureID": 112282, + "Label": "6047-112282 via Ribbon Synapse from 61332 -> 112335", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61332, + "TargetID": 112335, + "Directional": true + }] + }, { + "ID": 10658, + "SourceStructureID": 6047, + "TargetStructureID": 112284, + "Label": "6047-112284 via Ribbon Synapse from 112331 -> 126798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112331, + "TargetID": 126798, + "Directional": true + }] + }, { + "ID": 10659, + "SourceStructureID": 6047, + "TargetStructureID": 112292, + "Label": "6047-112292 via BC Conventional Synapse from 112295 -> 112294", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112295, + "TargetID": 112294, + "Directional": true + }] + }, { + "ID": 10660, + "SourceStructureID": 6047, + "TargetStructureID": 112319, + "Label": "6047-112319 via Ribbon Synapse from 61322 -> 112339", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61322, + "TargetID": 112339, + "Directional": true + }] + }, { + "ID": 10661, + "SourceStructureID": 6047, + "TargetStructureID": 112322, + "Label": "6047-112322 via Ribbon Synapse from 112327 -> 112330", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112327, + "TargetID": 112330, + "Directional": true + }] + }, { + "ID": 10662, + "SourceStructureID": 6047, + "TargetStructureID": 112328, + "Label": "6047-112328 via Ribbon Synapse from 112327 -> 112329", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112327, + "TargetID": 112329, + "Directional": true + }] + }, { + "ID": 10663, + "SourceStructureID": 6047, + "TargetStructureID": 112333, + "Label": "6047-112333 via Ribbon Synapse from 112331 -> 112334", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112331, + "TargetID": 112334, + "Directional": true + }] + }, { + "ID": 10664, + "SourceStructureID": 6047, + "TargetStructureID": 112340, + "Label": "6047-112340 via Ribbon Synapse from 61322 -> 112341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61322, + "TargetID": 112341, + "Directional": true + }] + }, { + "ID": 10665, + "SourceStructureID": 6047, + "TargetStructureID": 112342, + "Label": "6047-112342 via Ribbon Synapse from 19713 -> 112343", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19713, + "TargetID": 112343, + "Directional": true + }] + }, { + "ID": 10666, + "SourceStructureID": 6047, + "TargetStructureID": 112360, + "Label": "6047-112360 via Ribbon Synapse from 19715 -> 112361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19715, + "TargetID": 112361, + "Directional": true + }] + }, { + "ID": 10667, + "SourceStructureID": 6047, + "TargetStructureID": 112362, + "Label": "6047-112362 via Ribbon Synapse from 19715 -> 112363", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19715, + "TargetID": 112363, + "Directional": true + }] + }, { + "ID": 10668, + "SourceStructureID": 6047, + "TargetStructureID": 112364, + "Label": "6047-112364 via BC Conventional Synapse from 112367 -> 112369", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112367, + "TargetID": 112369, + "Directional": true + }] + }, { + "ID": 10669, + "SourceStructureID": 6047, + "TargetStructureID": 112370, + "Label": "6047-112370 via Ribbon Synapse from 19719 -> 112371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19719, + "TargetID": 112371, + "Directional": true + }] + }, { + "ID": 10670, + "SourceStructureID": 6047, + "TargetStructureID": 112389, + "Label": "6047-112389 via BC Conventional Synapse from 112388 -> 112391", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112388, + "TargetID": 112391, + "Directional": true + }] + }, { + "ID": 10671, + "SourceStructureID": 6047, + "TargetStructureID": 112392, + "Label": "6047-112392 via Ribbon Synapse from 19728 -> 112394", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19728, + "TargetID": 112394, + "Directional": true + }] + }, { + "ID": 10672, + "SourceStructureID": 6047, + "TargetStructureID": 112395, + "Label": "6047-112395 via Ribbon Synapse from 19728 -> 112397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19728, + "TargetID": 112397, + "Directional": true + }] + }, { + "ID": 10673, + "SourceStructureID": 6047, + "TargetStructureID": 112409, + "Label": "6047-112409 via Ribbon Synapse from 19737 -> 112410", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19737, + "TargetID": 112410, + "Directional": true + }] + }, { + "ID": 10674, + "SourceStructureID": 6047, + "TargetStructureID": 112411, + "Label": "6047-112411 via Ribbon Synapse from 19737 -> 112412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19737, + "TargetID": 112412, + "Directional": true + }] + }, { + "ID": 10675, + "SourceStructureID": 6047, + "TargetStructureID": 112419, + "Label": "6047-112419 via BC Conventional Synapse from 112421 -> 112422", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112421, + "TargetID": 112422, + "Directional": true + }] + }, { + "ID": 10676, + "SourceStructureID": 6047, + "TargetStructureID": 112436, + "Label": "6047-112436 via BC Conventional Synapse from 112536 -> 112535", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112536, + "TargetID": 112535, + "Directional": true + }] + }, { + "ID": 10677, + "SourceStructureID": 6047, + "TargetStructureID": 112500, + "Label": "6047-112500 via BC Conventional Synapse from 112499 -> 112503, 112511 -> 112501", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112499, + "TargetID": 112503, + "Directional": true + }, { + "SourceID": 112511, + "TargetID": 112501, + "Directional": true + }] + }, { + "ID": 10678, + "SourceStructureID": 6047, + "TargetStructureID": 112505, + "Label": "6047-112505 via Ribbon Synapse from 112493 -> 112506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112493, + "TargetID": 112506, + "Directional": true + }] + }, { + "ID": 10679, + "SourceStructureID": 6047, + "TargetStructureID": 112507, + "Label": "6047-112507 via Ribbon Synapse from 112493 -> 112508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112493, + "TargetID": 112508, + "Directional": true + }] + }, { + "ID": 10680, + "SourceStructureID": 6047, + "TargetStructureID": 112518, + "Label": "6047-112518 via Ribbon Synapse from 112513 -> 112522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112513, + "TargetID": 112522, + "Directional": true + }] + }, { + "ID": 10681, + "SourceStructureID": 6047, + "TargetStructureID": 112519, + "Label": "6047-112519 via Ribbon Synapse from 112513 -> 112520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112513, + "TargetID": 112520, + "Directional": true + }] + }, { + "ID": 10682, + "SourceStructureID": 6047, + "TargetStructureID": 112523, + "Label": "6047-112523 via Ribbon Synapse from 112512 -> 112524", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112512, + "TargetID": 112524, + "Directional": true + }] + }, { + "ID": 10683, + "SourceStructureID": 6047, + "TargetStructureID": 112525, + "Label": "6047-112525 via Ribbon Synapse from 112512 -> 112528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112512, + "TargetID": 112528, + "Directional": true + }] + }, { + "ID": 10684, + "SourceStructureID": 6047, + "TargetStructureID": 112549, + "Label": "6047-112549 via Ribbon Synapse from 19660 -> 112554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19660, + "TargetID": 112554, + "Directional": true + }] + }, { + "ID": 10685, + "SourceStructureID": 6047, + "TargetStructureID": 112557, + "Label": "6047-112557 via Ribbon Synapse from 19659 -> 112558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19659, + "TargetID": 112558, + "Directional": true + }] + }, { + "ID": 10686, + "SourceStructureID": 6047, + "TargetStructureID": 112582, + "Label": "6047-112582 via Ribbon Synapse from 19656 -> 112583", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19656, + "TargetID": 112583, + "Directional": true + }] + }, { + "ID": 10687, + "SourceStructureID": 6047, + "TargetStructureID": 112753, + "Label": "6047-112753 via Ribbon Synapse from 61339 -> 112755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61339, + "TargetID": 112755, + "Directional": true + }] + }, { + "ID": 10688, + "SourceStructureID": 6047, + "TargetStructureID": 112756, + "Label": "6047-112756 via Ribbon Synapse from 61339 -> 112757", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61339, + "TargetID": 112757, + "Directional": true + }] + }, { + "ID": 10689, + "SourceStructureID": 6047, + "TargetStructureID": 112764, + "Label": "6047-112764 via BC Conventional Synapse from 112763 -> 112765", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112763, + "TargetID": 112765, + "Directional": true + }] + }, { + "ID": 10690, + "SourceStructureID": 6047, + "TargetStructureID": 112769, + "Label": "6047-112769 via Ribbon Synapse from 61341 -> 112770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61341, + "TargetID": 112770, + "Directional": true + }] + }, { + "ID": 10691, + "SourceStructureID": 6047, + "TargetStructureID": 112782, + "Label": "6047-112782 via BC Conventional Synapse from 112781 -> 112783", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112781, + "TargetID": 112783, + "Directional": true + }] + }, { + "ID": 10692, + "SourceStructureID": 6047, + "TargetStructureID": 112805, + "Label": "6047-112805 via Ribbon Synapse from 19647 -> 112807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19647, + "TargetID": 112807, + "Directional": true + }] + }, { + "ID": 10693, + "SourceStructureID": 6047, + "TargetStructureID": 112824, + "Label": "6047-112824 via Ribbon Synapse from 19643 -> 112826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19643, + "TargetID": 112826, + "Directional": true + }] + }, { + "ID": 10694, + "SourceStructureID": 6047, + "TargetStructureID": 112835, + "Label": "6047-112835 via BC Conventional Synapse from 112834 -> 112840", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 112834, + "TargetID": 112840, + "Directional": true + }] + }, { + "ID": 10695, + "SourceStructureID": 6047, + "TargetStructureID": 112841, + "Label": "6047-112841 via Ribbon Synapse from 19643 -> 112842", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19643, + "TargetID": 112842, + "Directional": true + }] + }, { + "ID": 10696, + "SourceStructureID": 6047, + "TargetStructureID": 113122, + "Label": "6047-113122 via Ribbon Synapse from 19638 -> 113124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19638, + "TargetID": 113124, + "Directional": true + }] + }, { + "ID": 10697, + "SourceStructureID": 6047, + "TargetStructureID": 113125, + "Label": "6047-113125 via Ribbon Synapse from 19638 -> 113126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19638, + "TargetID": 113126, + "Directional": true + }] + }, { + "ID": 10698, + "SourceStructureID": 6047, + "TargetStructureID": 113127, + "Label": "6047-113127 via Ribbon Synapse from 19641 -> 113128", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19641, + "TargetID": 113128, + "Directional": true + }] + }, { + "ID": 10699, + "SourceStructureID": 6047, + "TargetStructureID": 113149, + "Label": "6047-113149 via Ribbon Synapse from 19637 -> 113150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19637, + "TargetID": 113150, + "Directional": true + }] + }, { + "ID": 10700, + "SourceStructureID": 6047, + "TargetStructureID": 113153, + "Label": "6047-113153 via BC Conventional Synapse from 113155 -> 113154", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113155, + "TargetID": 113154, + "Directional": true + }] + }, { + "ID": 10701, + "SourceStructureID": 6047, + "TargetStructureID": 113162, + "Label": "6047-113162 via Ribbon Synapse from 19628 -> 113163", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19628, + "TargetID": 113163, + "Directional": true + }] + }, { + "ID": 10702, + "SourceStructureID": 6047, + "TargetStructureID": 113176, + "Label": "6047-113176 via BC Conventional Synapse from 113177 -> 113178", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113177, + "TargetID": 113178, + "Directional": true + }] + }, { + "ID": 10703, + "SourceStructureID": 6047, + "TargetStructureID": 113179, + "Label": "6047-113179 via Ribbon Synapse from 19634 -> 113183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19634, + "TargetID": 113183, + "Directional": true + }] + }, { + "ID": 10704, + "SourceStructureID": 6047, + "TargetStructureID": 113184, + "Label": "6047-113184 via Ribbon Synapse from 19634 -> 113185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19634, + "TargetID": 113185, + "Directional": true + }] + }, { + "ID": 10705, + "SourceStructureID": 6047, + "TargetStructureID": 113230, + "Label": "6047-113230 via Ribbon Synapse from 19691 -> 113231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19691, + "TargetID": 113231, + "Directional": true + }] + }, { + "ID": 10706, + "SourceStructureID": 6047, + "TargetStructureID": 113693, + "Label": "6047-113693 via Ribbon Synapse from 113696 -> 113695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113696, + "TargetID": 113695, + "Directional": true + }] + }, { + "ID": 10707, + "SourceStructureID": 6048, + "TargetStructureID": 597, + "Label": "6048-597 via Ribbon Synapse from 60481 -> 60475", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60481, + "TargetID": 60475, + "Directional": true + }] + }, { + "ID": 10708, + "SourceStructureID": 6048, + "TargetStructureID": 7147, + "Label": "6048-7147 via Ribbon Synapse from 60476 -> 60477", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60476, + "TargetID": 60477, + "Directional": true + }] + }, { + "ID": 10709, + "SourceStructureID": 6050, + "TargetStructureID": 5442, + "Label": "6050-5442 via Ribbon Synapse from 51648 -> 56662", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51648, + "TargetID": 56662, + "Directional": true + }] + }, { + "ID": 10710, + "SourceStructureID": 6050, + "TargetStructureID": 6300, + "Label": "6050-6300 via Ribbon Synapse from 35946 -> 35947, 51653 -> 56097, 69795 -> 69799, 113884 -> 127104, 113890 -> 127161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35946, + "TargetID": 35947, + "Directional": true + }, { + "SourceID": 51653, + "TargetID": 56097, + "Directional": true + }, { + "SourceID": 69795, + "TargetID": 69799, + "Directional": true + }, { + "SourceID": 113884, + "TargetID": 127104, + "Directional": true + }, { + "SourceID": 113890, + "TargetID": 127161, + "Directional": true + }] + }, { + "ID": 10711, + "SourceStructureID": 6050, + "TargetStructureID": 9769, + "Label": "6050-9769 via Ribbon Synapse from 35944 -> 23938, 51887 -> 127034, 126968 -> 126969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35944, + "TargetID": 23938, + "Directional": true + }, { + "SourceID": 51887, + "TargetID": 127034, + "Directional": true + }, { + "SourceID": 126968, + "TargetID": 126969, + "Directional": true + }] + }, { + "ID": 10712, + "SourceStructureID": 6050, + "TargetStructureID": 15796, + "Label": "6050-15796 via Ribbon Synapse from 19306 -> 19282", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19306, + "TargetID": 19282, + "Directional": true + }] + }, { + "ID": 10713, + "SourceStructureID": 6050, + "TargetStructureID": 35894, + "Label": "6050-35894 via Ribbon Synapse from 119685 -> 119686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119685, + "TargetID": 119686, + "Directional": true + }] + }, { + "ID": 10714, + "SourceStructureID": 6050, + "TargetStructureID": 45536, + "Label": "6050-45536 via Ribbon Synapse from 45535 -> 45539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45535, + "TargetID": 45539, + "Directional": true + }] + }, { + "ID": 10715, + "SourceStructureID": 6050, + "TargetStructureID": 45551, + "Label": "6050-45551 via Ribbon Synapse from 45549 -> 45552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45549, + "TargetID": 45552, + "Directional": true + }] + }, { + "ID": 10716, + "SourceStructureID": 6050, + "TargetStructureID": 45555, + "Label": "6050-45555 via Ribbon Synapse from 54399 -> 127068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54399, + "TargetID": 127068, + "Directional": true + }] + }, { + "ID": 10717, + "SourceStructureID": 6050, + "TargetStructureID": 57064, + "Label": "6050-57064 via Ribbon Synapse from 51879 -> 128926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51879, + "TargetID": 128926, + "Directional": true + }] + }, { + "ID": 10718, + "SourceStructureID": 6050, + "TargetStructureID": 62396, + "Label": "6050-62396 via Ribbon Synapse from 36012 -> 62398", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36012, + "TargetID": 62398, + "Directional": true + }] + }, { + "ID": 10719, + "SourceStructureID": 6050, + "TargetStructureID": 66366, + "Label": "6050-66366 via Ribbon Synapse from 66365 -> 66367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66365, + "TargetID": 66367, + "Directional": true + }] + }, { + "ID": 10720, + "SourceStructureID": 6050, + "TargetStructureID": 66368, + "Label": "6050-66368 via Ribbon Synapse from 66153 -> 66369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66153, + "TargetID": 66369, + "Directional": true + }] + }, { + "ID": 10721, + "SourceStructureID": 6050, + "TargetStructureID": 67291, + "Label": "6050-67291 via Ribbon Synapse from 68369 -> 68368, 69794 -> 69792", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68369, + "TargetID": 68368, + "Directional": true + }, { + "SourceID": 69794, + "TargetID": 69792, + "Directional": true + }] + }, { + "ID": 10722, + "SourceStructureID": 6050, + "TargetStructureID": 74894, + "Label": "6050-74894 via Ribbon Synapse from 19299 -> 74895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19299, + "TargetID": 74895, + "Directional": true + }] + }, { + "ID": 10723, + "SourceStructureID": 6050, + "TargetStructureID": 82091, + "Label": "6050-82091 via Ribbon Synapse from 126994 -> 126998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 126994, + "TargetID": 126998, + "Directional": true + }] + }, { + "ID": 10724, + "SourceStructureID": 6050, + "TargetStructureID": 86254, + "Label": "6050-86254 via Ribbon Synapse from 127053 -> 127054", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127053, + "TargetID": 127054, + "Directional": true + }] + }, { + "ID": 10725, + "SourceStructureID": 6050, + "TargetStructureID": 91867, + "Label": "6050-91867 via Ribbon Synapse from 51653 -> 128990, 51666 -> 127229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51653, + "TargetID": 128990, + "Directional": true + }, { + "SourceID": 51666, + "TargetID": 127229, + "Directional": true + }] + }, { + "ID": 10726, + "SourceStructureID": 6050, + "TargetStructureID": 105188, + "Label": "6050-105188 via Ribbon Synapse from 114349 -> 114351", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114349, + "TargetID": 114351, + "Directional": true + }] + }, { + "ID": 10727, + "SourceStructureID": 6050, + "TargetStructureID": 116279, + "Label": "6050-116279 via Ribbon Synapse from 51684 -> 120962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51684, + "TargetID": 120962, + "Directional": true + }] + }, { + "ID": 10728, + "SourceStructureID": 6050, + "TargetStructureID": 120956, + "Label": "6050-120956 via Ribbon Synapse from 35955 -> 127248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35955, + "TargetID": 127248, + "Directional": true + }] + }, { + "ID": 10729, + "SourceStructureID": 6050, + "TargetStructureID": 124198, + "Label": "6050-124198 via Ribbon Synapse from 113565 -> 124199", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 113565, + "TargetID": 124199, + "Directional": true + }] + }, { + "ID": 10730, + "SourceStructureID": 6050, + "TargetStructureID": 128843, + "Label": "6050-128843 via Ribbon Synapse from 114253 -> 128844", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114253, + "TargetID": 128844, + "Directional": true + }] + }, { + "ID": 10731, + "SourceStructureID": 6115, + "TargetStructureID": 593, + "Label": "6115-593 via Ribbon Synapse from 66337 -> 73127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66337, + "TargetID": 73127, + "Directional": true + }] + }, { + "ID": 10732, + "SourceStructureID": 6115, + "TargetStructureID": 5117, + "Label": "6115-5117 via Ribbon Synapse from 66335 -> 66336, 66337 -> 66338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66335, + "TargetID": 66336, + "Directional": true + }, { + "SourceID": 66337, + "TargetID": 66338, + "Directional": true + }] + }, { + "ID": 10733, + "SourceStructureID": 6115, + "TargetStructureID": 5118, + "Label": "6115-5118 via BC Conventional Synapse from 52189 -> 52187, 73770 -> 73771, 74800 -> 52192", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52189, + "TargetID": 52187, + "Directional": true + }, { + "SourceID": 73770, + "TargetID": 73771, + "Directional": true + }, { + "SourceID": 74800, + "TargetID": 52192, + "Directional": true + }] + }, { + "ID": 10734, + "SourceStructureID": 6115, + "TargetStructureID": 5118, + "Label": "6115-5118 via Unknown from 75598 -> 75599", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 75598, + "TargetID": 75599, + "Directional": true + }] + }, { + "ID": 10735, + "SourceStructureID": 6115, + "TargetStructureID": 8577, + "Label": "6115-8577 via Ribbon Synapse from 16058 -> 16048, 72962 -> 76011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16058, + "TargetID": 16048, + "Directional": true + }, { + "SourceID": 72962, + "TargetID": 76011, + "Directional": true + }] + }, { + "ID": 10736, + "SourceStructureID": 6115, + "TargetStructureID": 8579, + "Label": "6115-8579 via Ribbon Synapse from 18325 -> 72517, 55845 -> 62740, 55902 -> 62736, 59596 -> 72562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18325, + "TargetID": 72517, + "Directional": true + }, { + "SourceID": 55845, + "TargetID": 62740, + "Directional": true + }, { + "SourceID": 55902, + "TargetID": 62736, + "Directional": true + }, { + "SourceID": 59596, + "TargetID": 72562, + "Directional": true + }] + }, { + "ID": 10737, + "SourceStructureID": 6115, + "TargetStructureID": 8720, + "Label": "6115-8720 via Ribbon Synapse from 127792 -> 127793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127792, + "TargetID": 127793, + "Directional": true + }] + }, { + "ID": 10738, + "SourceStructureID": 6115, + "TargetStructureID": 15796, + "Label": "6115-15796 via Ribbon Synapse from 72256 -> 147790", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72256, + "TargetID": 147790, + "Directional": true + }] + }, { + "ID": 10739, + "SourceStructureID": 6115, + "TargetStructureID": 16087, + "Label": "6115-16087 via BC Conventional Synapse from 134152 -> 134151", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134152, + "TargetID": 134151, + "Directional": true + }] + }, { + "ID": 10740, + "SourceStructureID": 6115, + "TargetStructureID": 16087, + "Label": "6115-16087 via Ribbon Synapse from 16058 -> 75658, 32979 -> 16090, 59604 -> 73182, 75449 -> 75452, 77672 -> 77697, 90650 -> 77697", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16058, + "TargetID": 75658, + "Directional": true + }, { + "SourceID": 32979, + "TargetID": 16090, + "Directional": true + }, { + "SourceID": 59604, + "TargetID": 73182, + "Directional": true + }, { + "SourceID": 75449, + "TargetID": 75452, + "Directional": true + }, { + "SourceID": 77672, + "TargetID": 77697, + "Directional": true + }, { + "SourceID": 90650, + "TargetID": 77697, + "Directional": true + }] + }, { + "ID": 10741, + "SourceStructureID": 6115, + "TargetStructureID": 18282, + "Label": "6115-18282 via Ribbon Synapse from 18325 -> 18324, 72708 -> 72709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18325, + "TargetID": 18324, + "Directional": true + }, { + "SourceID": 72708, + "TargetID": 72709, + "Directional": true + }] + }, { + "ID": 10742, + "SourceStructureID": 6115, + "TargetStructureID": 29702, + "Label": "6115-29702 via Ribbon Synapse from 55849 -> 72495, 72272 -> 72274, 73885 -> 75506, 75502 -> 75501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55849, + "TargetID": 72495, + "Directional": true + }, { + "SourceID": 72272, + "TargetID": 72274, + "Directional": true + }, { + "SourceID": 73885, + "TargetID": 75506, + "Directional": true + }, { + "SourceID": 75502, + "TargetID": 75501, + "Directional": true + }] + }, { + "ID": 10743, + "SourceStructureID": 6115, + "TargetStructureID": 32954, + "Label": "6115-32954 via Ribbon Synapse from 32958 -> 32955", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32958, + "TargetID": 32955, + "Directional": true + }] + }, { + "ID": 10744, + "SourceStructureID": 6115, + "TargetStructureID": 32970, + "Label": "6115-32970 via Ribbon Synapse from 55802 -> 72833, 55855 -> 73189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55802, + "TargetID": 72833, + "Directional": true + }, { + "SourceID": 55855, + "TargetID": 73189, + "Directional": true + }] + }, { + "ID": 10745, + "SourceStructureID": 6115, + "TargetStructureID": 32970, + "Label": "6115-32970 via Unknown from 72722 -> 72723", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 72722, + "TargetID": 72723, + "Directional": true + }] + }, { + "ID": 10746, + "SourceStructureID": 6115, + "TargetStructureID": 41608, + "Label": "6115-41608 via Ribbon Synapse from 55798 -> 41692, 55799 -> 41691, 55809 -> 72270, 55810 -> 72288, 56310 -> 41752, 72275 -> 72276, 72305 -> 72314, 73360 -> 73361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55798, + "TargetID": 41692, + "Directional": true + }, { + "SourceID": 55799, + "TargetID": 41691, + "Directional": true + }, { + "SourceID": 55809, + "TargetID": 72270, + "Directional": true + }, { + "SourceID": 55810, + "TargetID": 72288, + "Directional": true + }, { + "SourceID": 56310, + "TargetID": 41752, + "Directional": true + }, { + "SourceID": 72275, + "TargetID": 72276, + "Directional": true + }, { + "SourceID": 72305, + "TargetID": 72314, + "Directional": true + }, { + "SourceID": 73360, + "TargetID": 73361, + "Directional": true + }] + }, { + "ID": 10747, + "SourceStructureID": 6115, + "TargetStructureID": 58696, + "Label": "6115-58696 via Ribbon Synapse from 72653 -> 84770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72653, + "TargetID": 84770, + "Directional": true + }] + }, { + "ID": 10748, + "SourceStructureID": 6115, + "TargetStructureID": 61823, + "Label": "6115-61823 via BC Conventional Synapse from 73859 -> 73860, 73889 -> 73890", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73859, + "TargetID": 73860, + "Directional": true + }, { + "SourceID": 73889, + "TargetID": 73890, + "Directional": true + }] + }, { + "ID": 10749, + "SourceStructureID": 6115, + "TargetStructureID": 61864, + "Label": "6115-61864 via Ribbon Synapse from 66335 -> 73130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66335, + "TargetID": 73130, + "Directional": true + }] + }, { + "ID": 10750, + "SourceStructureID": 6115, + "TargetStructureID": 64362, + "Label": "6115-64362 via Ribbon Synapse from 134223 -> 134224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134223, + "TargetID": 134224, + "Directional": true + }] + }, { + "ID": 10751, + "SourceStructureID": 6115, + "TargetStructureID": 66407, + "Label": "6115-66407 via Ribbon Synapse from 55799 -> 72795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55799, + "TargetID": 72795, + "Directional": true + }] + }, { + "ID": 10752, + "SourceStructureID": 6115, + "TargetStructureID": 66634, + "Label": "6115-66634 via Ribbon Synapse from 55788 -> 71337, 55909 -> 71333, 73386 -> 73387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55788, + "TargetID": 71337, + "Directional": true + }, { + "SourceID": 55909, + "TargetID": 71333, + "Directional": true + }, { + "SourceID": 73386, + "TargetID": 73387, + "Directional": true + }] + }, { + "ID": 10753, + "SourceStructureID": 6115, + "TargetStructureID": 66696, + "Label": "6115-66696 via Ribbon Synapse from 59606 -> 66748, 66751 -> 66750, 75652 -> 75655", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59606, + "TargetID": 66748, + "Directional": true + }, { + "SourceID": 66751, + "TargetID": 66750, + "Directional": true + }, { + "SourceID": 75652, + "TargetID": 75655, + "Directional": true + }] + }, { + "ID": 10754, + "SourceStructureID": 6115, + "TargetStructureID": 66768, + "Label": "6115-66768 via Ribbon Synapse from 72653 -> 72655", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72653, + "TargetID": 72655, + "Directional": true + }] + }, { + "ID": 10755, + "SourceStructureID": 6115, + "TargetStructureID": 68153, + "Label": "6115-68153 via Ribbon Synapse from 68187 -> 68186, 73493 -> 73496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68187, + "TargetID": 68186, + "Directional": true + }, { + "SourceID": 73493, + "TargetID": 73496, + "Directional": true + }] + }, { + "ID": 10756, + "SourceStructureID": 6115, + "TargetStructureID": 68548, + "Label": "6115-68548 via BC Conventional Synapse from 73027 -> 75737", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73027, + "TargetID": 75737, + "Directional": true + }] + }, { + "ID": 10757, + "SourceStructureID": 6115, + "TargetStructureID": 69385, + "Label": "6115-69385 via Ribbon Synapse from 55783 -> 72170", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55783, + "TargetID": 72170, + "Directional": true + }] + }, { + "ID": 10758, + "SourceStructureID": 6115, + "TargetStructureID": 69464, + "Label": "6115-69464 via Ribbon Synapse from 55845 -> 69471", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55845, + "TargetID": 69471, + "Directional": true + }] + }, { + "ID": 10759, + "SourceStructureID": 6115, + "TargetStructureID": 69472, + "Label": "6115-69472 via Ribbon Synapse from 59610 -> 69474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59610, + "TargetID": 69474, + "Directional": true + }] + }, { + "ID": 10760, + "SourceStructureID": 6115, + "TargetStructureID": 69493, + "Label": "6115-69493 via Ribbon Synapse from 16049 -> 69495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16049, + "TargetID": 69495, + "Directional": true + }] + }, { + "ID": 10761, + "SourceStructureID": 6115, + "TargetStructureID": 69496, + "Label": "6115-69496 via Ribbon Synapse from 16052 -> 69499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16052, + "TargetID": 69499, + "Directional": true + }] + }, { + "ID": 10762, + "SourceStructureID": 6115, + "TargetStructureID": 69500, + "Label": "6115-69500 via Ribbon Synapse from 55854 -> 69501", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55854, + "TargetID": 69501, + "Directional": true + }] + }, { + "ID": 10763, + "SourceStructureID": 6115, + "TargetStructureID": 70308, + "Label": "6115-70308 via Ribbon Synapse from 70311 -> 70312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70311, + "TargetID": 70312, + "Directional": true + }] + }, { + "ID": 10764, + "SourceStructureID": 6115, + "TargetStructureID": 71351, + "Label": "6115-71351 via BC Conventional Synapse from 71899 -> 71900", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71899, + "TargetID": 71900, + "Directional": true + }] + }, { + "ID": 10765, + "SourceStructureID": 6115, + "TargetStructureID": 71351, + "Label": "6115-71351 via Ribbon Synapse from 55754 -> 71673, 55789 -> 71672, 55905 -> 71352, 70410 -> 71898, 135165 -> 135166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55754, + "TargetID": 71673, + "Directional": true + }, { + "SourceID": 55789, + "TargetID": 71672, + "Directional": true + }, { + "SourceID": 55905, + "TargetID": 71352, + "Directional": true + }, { + "SourceID": 70410, + "TargetID": 71898, + "Directional": true + }, { + "SourceID": 135165, + "TargetID": 135166, + "Directional": true + }] + }, { + "ID": 10766, + "SourceStructureID": 6115, + "TargetStructureID": 71517, + "Label": "6115-71517 via Ribbon Synapse from 55785 -> 71509, 55791 -> 71514, 75002 -> 75003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55785, + "TargetID": 71509, + "Directional": true + }, { + "SourceID": 55791, + "TargetID": 71514, + "Directional": true + }, { + "SourceID": 75002, + "TargetID": 75003, + "Directional": true + }] + }, { + "ID": 10767, + "SourceStructureID": 6115, + "TargetStructureID": 72003, + "Label": "6115-72003 via Ribbon Synapse from 55843 -> 75092", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55843, + "TargetID": 75092, + "Directional": true + }] + }, { + "ID": 10768, + "SourceStructureID": 6115, + "TargetStructureID": 72074, + "Label": "6115-72074 via Ribbon Synapse from 37625 -> 72075", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37625, + "TargetID": 72075, + "Directional": true + }] + }, { + "ID": 10769, + "SourceStructureID": 6115, + "TargetStructureID": 72076, + "Label": "6115-72076 via BC Conventional Synapse from 72148 -> 72147", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72148, + "TargetID": 72147, + "Directional": true + }] + }, { + "ID": 10770, + "SourceStructureID": 6115, + "TargetStructureID": 72079, + "Label": "6115-72079 via Ribbon Synapse from 37631 -> 72080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37631, + "TargetID": 72080, + "Directional": true + }] + }, { + "ID": 10771, + "SourceStructureID": 6115, + "TargetStructureID": 72091, + "Label": "6115-72091 via Ribbon Synapse from 55859 -> 72095", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55859, + "TargetID": 72095, + "Directional": true + }] + }, { + "ID": 10772, + "SourceStructureID": 6115, + "TargetStructureID": 72092, + "Label": "6115-72092 via Ribbon Synapse from 55859 -> 72145, 72090 -> 72145", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55859, + "TargetID": 72145, + "Directional": true + }, { + "SourceID": 72090, + "TargetID": 72145, + "Directional": true + }] + }, { + "ID": 10773, + "SourceStructureID": 6115, + "TargetStructureID": 72093, + "Label": "6115-72093 via Ribbon Synapse from 55858 -> 72094, 72158 -> 72094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55858, + "TargetID": 72094, + "Directional": true + }, { + "SourceID": 72158, + "TargetID": 72094, + "Directional": true + }] + }, { + "ID": 10774, + "SourceStructureID": 6115, + "TargetStructureID": 72142, + "Label": "6115-72142 via Ribbon Synapse from 37635 -> 72143", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37635, + "TargetID": 72143, + "Directional": true + }] + }, { + "ID": 10775, + "SourceStructureID": 6115, + "TargetStructureID": 72152, + "Label": "6115-72152 via Ribbon Synapse from 37631 -> 72153", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37631, + "TargetID": 72153, + "Directional": true + }] + }, { + "ID": 10776, + "SourceStructureID": 6115, + "TargetStructureID": 72159, + "Label": "6115-72159 via Ribbon Synapse from 37635 -> 72160", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37635, + "TargetID": 72160, + "Directional": true + }] + }, { + "ID": 10777, + "SourceStructureID": 6115, + "TargetStructureID": 72162, + "Label": "6115-72162 via Unknown from 72236 -> 72235", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 72236, + "TargetID": 72235, + "Directional": true + }] + }, { + "ID": 10778, + "SourceStructureID": 6115, + "TargetStructureID": 72166, + "Label": "6115-72166 via Ribbon Synapse from 134156 -> 134157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134156, + "TargetID": 134157, + "Directional": true + }] + }, { + "ID": 10779, + "SourceStructureID": 6115, + "TargetStructureID": 72168, + "Label": "6115-72168 via BC Conventional Synapse from 72241 -> 72239", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72241, + "TargetID": 72239, + "Directional": true + }] + }, { + "ID": 10780, + "SourceStructureID": 6115, + "TargetStructureID": 72173, + "Label": "6115-72173 via Ribbon Synapse from 72244 -> 82709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72244, + "TargetID": 82709, + "Directional": true + }] + }, { + "ID": 10781, + "SourceStructureID": 6115, + "TargetStructureID": 72176, + "Label": "6115-72176 via Ribbon Synapse from 72244 -> 72249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72244, + "TargetID": 72249, + "Directional": true + }] + }, { + "ID": 10782, + "SourceStructureID": 6115, + "TargetStructureID": 72186, + "Label": "6115-72186 via Ribbon Synapse from 20424 -> 72187, 72196 -> 72194", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20424, + "TargetID": 72187, + "Directional": true + }, { + "SourceID": 72196, + "TargetID": 72194, + "Directional": true + }] + }, { + "ID": 10783, + "SourceStructureID": 6115, + "TargetStructureID": 72218, + "Label": "6115-72218 via Ribbon Synapse from 55807 -> 72232, 80749 -> 80750", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55807, + "TargetID": 72232, + "Directional": true + }, { + "SourceID": 80749, + "TargetID": 80750, + "Directional": true + }] + }, { + "ID": 10784, + "SourceStructureID": 6115, + "TargetStructureID": 72233, + "Label": "6115-72233 via Ribbon Synapse from 55807 -> 72234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55807, + "TargetID": 72234, + "Directional": true + }] + }, { + "ID": 10785, + "SourceStructureID": 6115, + "TargetStructureID": 72259, + "Label": "6115-72259 via BC Conventional Synapse from 72263 -> 72264", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72263, + "TargetID": 72264, + "Directional": true + }] + }, { + "ID": 10786, + "SourceStructureID": 6115, + "TargetStructureID": 72285, + "Label": "6115-72285 via Ribbon Synapse from 72284 -> 72286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72284, + "TargetID": 72286, + "Directional": true + }] + }, { + "ID": 10787, + "SourceStructureID": 6115, + "TargetStructureID": 72287, + "Label": "6115-72287 via Ribbon Synapse from 55810 -> 72289, 134160 -> 134161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55810, + "TargetID": 72289, + "Directional": true + }, { + "SourceID": 134160, + "TargetID": 134161, + "Directional": true + }] + }, { + "ID": 10788, + "SourceStructureID": 6115, + "TargetStructureID": 72296, + "Label": "6115-72296 via BC Conventional Synapse from 72295 -> 72297", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72295, + "TargetID": 72297, + "Directional": true + }] + }, { + "ID": 10789, + "SourceStructureID": 6115, + "TargetStructureID": 72309, + "Label": "6115-72309 via Ribbon Synapse from 72305 -> 81347", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72305, + "TargetID": 81347, + "Directional": true + }] + }, { + "ID": 10790, + "SourceStructureID": 6115, + "TargetStructureID": 72320, + "Label": "6115-72320 via BC Conventional Synapse from 134166 -> 134165", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134166, + "TargetID": 134165, + "Directional": true + }] + }, { + "ID": 10791, + "SourceStructureID": 6115, + "TargetStructureID": 72329, + "Label": "6115-72329 via Ribbon Synapse from 55812 -> 72330", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55812, + "TargetID": 72330, + "Directional": true + }] + }, { + "ID": 10792, + "SourceStructureID": 6115, + "TargetStructureID": 72331, + "Label": "6115-72331 via Ribbon Synapse from 55812 -> 72332", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55812, + "TargetID": 72332, + "Directional": true + }] + }, { + "ID": 10793, + "SourceStructureID": 6115, + "TargetStructureID": 72401, + "Label": "6115-72401 via Ribbon Synapse from 55854 -> 72415", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55854, + "TargetID": 72415, + "Directional": true + }] + }, { + "ID": 10794, + "SourceStructureID": 6115, + "TargetStructureID": 72449, + "Label": "6115-72449 via BC Conventional Synapse from 72448 -> 72450", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72448, + "TargetID": 72450, + "Directional": true + }] + }, { + "ID": 10795, + "SourceStructureID": 6115, + "TargetStructureID": 72458, + "Label": "6115-72458 via Ribbon Synapse from 55855 -> 72459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55855, + "TargetID": 72459, + "Directional": true + }] + }, { + "ID": 10796, + "SourceStructureID": 6115, + "TargetStructureID": 72460, + "Label": "6115-72460 via Ribbon Synapse from 72462 -> 73188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72462, + "TargetID": 73188, + "Directional": true + }] + }, { + "ID": 10797, + "SourceStructureID": 6115, + "TargetStructureID": 72492, + "Label": "6115-72492 via Ribbon Synapse from 55849 -> 72493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55849, + "TargetID": 72493, + "Directional": true + }] + }, { + "ID": 10798, + "SourceStructureID": 6115, + "TargetStructureID": 72515, + "Label": "6115-72515 via BC Conventional Synapse from 72514 -> 72516", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72514, + "TargetID": 72516, + "Directional": true + }] + }, { + "ID": 10799, + "SourceStructureID": 6115, + "TargetStructureID": 72526, + "Label": "6115-72526 via Ribbon Synapse from 72525 -> 72531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72525, + "TargetID": 72531, + "Directional": true + }] + }, { + "ID": 10800, + "SourceStructureID": 6115, + "TargetStructureID": 72529, + "Label": "6115-72529 via Ribbon Synapse from 72525 -> 72530", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72525, + "TargetID": 72530, + "Directional": true + }] + }, { + "ID": 10801, + "SourceStructureID": 6115, + "TargetStructureID": 72545, + "Label": "6115-72545 via Ribbon Synapse from 59597 -> 72546", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59597, + "TargetID": 72546, + "Directional": true + }] + }, { + "ID": 10802, + "SourceStructureID": 6115, + "TargetStructureID": 72559, + "Label": "6115-72559 via Ribbon Synapse from 59596 -> 72561", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59596, + "TargetID": 72561, + "Directional": true + }] + }, { + "ID": 10803, + "SourceStructureID": 6115, + "TargetStructureID": 72566, + "Label": "6115-72566 via BC Conventional Synapse from 72568 -> 72567", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72568, + "TargetID": 72567, + "Directional": true + }] + }, { + "ID": 10804, + "SourceStructureID": 6115, + "TargetStructureID": 72589, + "Label": "6115-72589 via BC Conventional Synapse from 72590 -> 72591", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72590, + "TargetID": 72591, + "Directional": true + }] + }, { + "ID": 10805, + "SourceStructureID": 6115, + "TargetStructureID": 72594, + "Label": "6115-72594 via Ribbon Synapse from 55848 -> 72595", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55848, + "TargetID": 72595, + "Directional": true + }] + }, { + "ID": 10806, + "SourceStructureID": 6115, + "TargetStructureID": 72604, + "Label": "6115-72604 via BC Conventional Synapse from 72632 -> 82408, 72671 -> 72672, 75661 -> 75662", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72632, + "TargetID": 82408, + "Directional": true + }, { + "SourceID": 72671, + "TargetID": 72672, + "Directional": true + }, { + "SourceID": 75661, + "TargetID": 75662, + "Directional": true + }] + }, { + "ID": 10807, + "SourceStructureID": 6115, + "TargetStructureID": 72606, + "Label": "6115-72606 via BC Conventional Synapse from 72632 -> 82409", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72632, + "TargetID": 82409, + "Directional": true + }] + }, { + "ID": 10808, + "SourceStructureID": 6115, + "TargetStructureID": 72606, + "Label": "6115-72606 via Ribbon Synapse from 82423 -> 82409", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82423, + "TargetID": 82409, + "Directional": true + }] + }, { + "ID": 10809, + "SourceStructureID": 6115, + "TargetStructureID": 72612, + "Label": "6115-72612 via BC Conventional Synapse from 73261 -> 73260", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73261, + "TargetID": 73260, + "Directional": true + }] + }, { + "ID": 10810, + "SourceStructureID": 6115, + "TargetStructureID": 72638, + "Label": "6115-72638 via Ribbon Synapse from 59606 -> 72639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59606, + "TargetID": 72639, + "Directional": true + }] + }, { + "ID": 10811, + "SourceStructureID": 6115, + "TargetStructureID": 72643, + "Label": "6115-72643 via Ribbon Synapse from 59604 -> 73181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59604, + "TargetID": 73181, + "Directional": true + }] + }, { + "ID": 10812, + "SourceStructureID": 6115, + "TargetStructureID": 72647, + "Label": "6115-72647 via BC Conventional Synapse from 72646 -> 72648", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72646, + "TargetID": 72648, + "Directional": true + }] + }, { + "ID": 10813, + "SourceStructureID": 6115, + "TargetStructureID": 72650, + "Label": "6115-72650 via Ribbon Synapse from 72653 -> 78315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72653, + "TargetID": 78315, + "Directional": true + }] + }, { + "ID": 10814, + "SourceStructureID": 6115, + "TargetStructureID": 72658, + "Label": "6115-72658 via Ribbon Synapse from 59610 -> 72661", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59610, + "TargetID": 72661, + "Directional": true + }] + }, { + "ID": 10815, + "SourceStructureID": 6115, + "TargetStructureID": 72681, + "Label": "6115-72681 via Ribbon Synapse from 32979 -> 72682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32979, + "TargetID": 72682, + "Directional": true + }] + }, { + "ID": 10816, + "SourceStructureID": 6115, + "TargetStructureID": 72694, + "Label": "6115-72694 via Ribbon Synapse from 72693 -> 72695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72693, + "TargetID": 72695, + "Directional": true + }] + }, { + "ID": 10817, + "SourceStructureID": 6115, + "TargetStructureID": 72716, + "Label": "6115-72716 via Ribbon Synapse from 55813 -> 72717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55813, + "TargetID": 72717, + "Directional": true + }] + }, { + "ID": 10818, + "SourceStructureID": 6115, + "TargetStructureID": 72718, + "Label": "6115-72718 via Ribbon Synapse from 55813 -> 72719", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55813, + "TargetID": 72719, + "Directional": true + }] + }, { + "ID": 10819, + "SourceStructureID": 6115, + "TargetStructureID": 72724, + "Label": "6115-72724 via BC Conventional Synapse from 72725 -> 72726", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72725, + "TargetID": 72726, + "Directional": true + }] + }, { + "ID": 10820, + "SourceStructureID": 6115, + "TargetStructureID": 72728, + "Label": "6115-72728 via BC Conventional Synapse from 72745 -> 72746", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72745, + "TargetID": 72746, + "Directional": true + }] + }, { + "ID": 10821, + "SourceStructureID": 6115, + "TargetStructureID": 72730, + "Label": "6115-72730 via Ribbon Synapse from 55796 -> 72755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55796, + "TargetID": 72755, + "Directional": true + }] + }, { + "ID": 10822, + "SourceStructureID": 6115, + "TargetStructureID": 72731, + "Label": "6115-72731 via Ribbon Synapse from 55796 -> 72732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55796, + "TargetID": 72732, + "Directional": true + }] + }, { + "ID": 10823, + "SourceStructureID": 6115, + "TargetStructureID": 72735, + "Label": "6115-72735 via Ribbon Synapse from 55795 -> 72736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55795, + "TargetID": 72736, + "Directional": true + }] + }, { + "ID": 10824, + "SourceStructureID": 6115, + "TargetStructureID": 72737, + "Label": "6115-72737 via Ribbon Synapse from 55795 -> 72738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55795, + "TargetID": 72738, + "Directional": true + }] + }, { + "ID": 10825, + "SourceStructureID": 6115, + "TargetStructureID": 72742, + "Label": "6115-72742 via BC Conventional Synapse from 72741 -> 72743", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72741, + "TargetID": 72743, + "Directional": true + }] + }, { + "ID": 10826, + "SourceStructureID": 6115, + "TargetStructureID": 72754, + "Label": "6115-72754 via BC Conventional Synapse from 82711 -> 82710", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82711, + "TargetID": 82710, + "Directional": true + }] + }, { + "ID": 10827, + "SourceStructureID": 6115, + "TargetStructureID": 72772, + "Label": "6115-72772 via Ribbon Synapse from 72771 -> 72774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72771, + "TargetID": 72774, + "Directional": true + }] + }, { + "ID": 10828, + "SourceStructureID": 6115, + "TargetStructureID": 72773, + "Label": "6115-72773 via Ribbon Synapse from 72771 -> 72775", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72771, + "TargetID": 72775, + "Directional": true + }] + }, { + "ID": 10829, + "SourceStructureID": 6115, + "TargetStructureID": 72787, + "Label": "6115-72787 via Ribbon Synapse from 55798 -> 81164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55798, + "TargetID": 81164, + "Directional": true + }] + }, { + "ID": 10830, + "SourceStructureID": 6115, + "TargetStructureID": 72792, + "Label": "6115-72792 via BC Conventional Synapse from 72794 -> 72793", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72794, + "TargetID": 72793, + "Directional": true + }] + }, { + "ID": 10831, + "SourceStructureID": 6115, + "TargetStructureID": 72796, + "Label": "6115-72796 via Ribbon Synapse from 55799 -> 72797", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55799, + "TargetID": 72797, + "Directional": true + }] + }, { + "ID": 10832, + "SourceStructureID": 6115, + "TargetStructureID": 72826, + "Label": "6115-72826 via Ribbon Synapse from 55803 -> 72827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55803, + "TargetID": 72827, + "Directional": true + }] + }, { + "ID": 10833, + "SourceStructureID": 6115, + "TargetStructureID": 72829, + "Label": "6115-72829 via Ribbon Synapse from 73264 -> 72830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73264, + "TargetID": 72830, + "Directional": true + }] + }, { + "ID": 10834, + "SourceStructureID": 6115, + "TargetStructureID": 72831, + "Label": "6115-72831 via Ribbon Synapse from 55802 -> 72832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55802, + "TargetID": 72832, + "Directional": true + }] + }, { + "ID": 10835, + "SourceStructureID": 6115, + "TargetStructureID": 72841, + "Label": "6115-72841 via Ribbon Synapse from 72842 -> 72843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72842, + "TargetID": 72843, + "Directional": true + }] + }, { + "ID": 10836, + "SourceStructureID": 6115, + "TargetStructureID": 72901, + "Label": "6115-72901 via Ribbon Synapse from 72903 -> 72902", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72903, + "TargetID": 72902, + "Directional": true + }] + }, { + "ID": 10837, + "SourceStructureID": 6115, + "TargetStructureID": 72905, + "Label": "6115-72905 via Ribbon Synapse from 72904 -> 72906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72904, + "TargetID": 72906, + "Directional": true + }] + }, { + "ID": 10838, + "SourceStructureID": 6115, + "TargetStructureID": 72923, + "Label": "6115-72923 via Unknown from 72924 -> 72925", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 72924, + "TargetID": 72925, + "Directional": true + }] + }, { + "ID": 10839, + "SourceStructureID": 6115, + "TargetStructureID": 72936, + "Label": "6115-72936 via Unknown from 72946 -> 72947", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 72946, + "TargetID": 72947, + "Directional": true + }] + }, { + "ID": 10840, + "SourceStructureID": 6115, + "TargetStructureID": 72939, + "Label": "6115-72939 via Ribbon Synapse from 55865 -> 72948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55865, + "TargetID": 72948, + "Directional": true + }] + }, { + "ID": 10841, + "SourceStructureID": 6115, + "TargetStructureID": 72941, + "Label": "6115-72941 via Ribbon Synapse from 73138 -> 81890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73138, + "TargetID": 81890, + "Directional": true + }] + }, { + "ID": 10842, + "SourceStructureID": 6115, + "TargetStructureID": 72952, + "Label": "6115-72952 via BC Conventional Synapse from 72953 -> 72954", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72953, + "TargetID": 72954, + "Directional": true + }] + }, { + "ID": 10843, + "SourceStructureID": 6115, + "TargetStructureID": 72955, + "Label": "6115-72955 via Ribbon Synapse from 55865 -> 72956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55865, + "TargetID": 72956, + "Directional": true + }] + }, { + "ID": 10844, + "SourceStructureID": 6115, + "TargetStructureID": 72957, + "Label": "6115-72957 via Ribbon Synapse from 55915 -> 72958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55915, + "TargetID": 72958, + "Directional": true + }] + }, { + "ID": 10845, + "SourceStructureID": 6115, + "TargetStructureID": 72959, + "Label": "6115-72959 via Ribbon Synapse from 72960 -> 72961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72960, + "TargetID": 72961, + "Directional": true + }] + }, { + "ID": 10846, + "SourceStructureID": 6115, + "TargetStructureID": 72975, + "Label": "6115-72975 via Ribbon Synapse from 55783 -> 74290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55783, + "TargetID": 74290, + "Directional": true + }] + }, { + "ID": 10847, + "SourceStructureID": 6115, + "TargetStructureID": 72987, + "Label": "6115-72987 via Ribbon Synapse from 55902 -> 75994, 55902 -> 81352, 55911 -> 73015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55902, + "TargetID": 75994, + "Directional": true + }, { + "SourceID": 55902, + "TargetID": 81352, + "Directional": true + }, { + "SourceID": 55911, + "TargetID": 73015, + "Directional": true + }] + }, { + "ID": 10848, + "SourceStructureID": 6115, + "TargetStructureID": 73004, + "Label": "6115-73004 via Ribbon Synapse from 55910 -> 73005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55910, + "TargetID": 73005, + "Directional": true + }] + }, { + "ID": 10849, + "SourceStructureID": 6115, + "TargetStructureID": 73007, + "Label": "6115-73007 via Ribbon Synapse from 55909 -> 73008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55909, + "TargetID": 73008, + "Directional": true + }] + }, { + "ID": 10850, + "SourceStructureID": 6115, + "TargetStructureID": 73021, + "Label": "6115-73021 via Ribbon Synapse from 55898 -> 73022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55898, + "TargetID": 73022, + "Directional": true + }] + }, { + "ID": 10851, + "SourceStructureID": 6115, + "TargetStructureID": 73023, + "Label": "6115-73023 via Ribbon Synapse from 55898 -> 73024", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55898, + "TargetID": 73024, + "Directional": true + }] + }, { + "ID": 10852, + "SourceStructureID": 6115, + "TargetStructureID": 73030, + "Label": "6115-73030 via Unknown from 73031 -> 73032", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 73031, + "TargetID": 73032, + "Directional": true + }] + }, { + "ID": 10853, + "SourceStructureID": 6115, + "TargetStructureID": 73037, + "Label": "6115-73037 via Unknown from 73036 -> 73038", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 73036, + "TargetID": 73038, + "Directional": true + }] + }, { + "ID": 10854, + "SourceStructureID": 6115, + "TargetStructureID": 73043, + "Label": "6115-73043 via BC Conventional Synapse from 73044 -> 73045", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73044, + "TargetID": 73045, + "Directional": true + }] + }, { + "ID": 10855, + "SourceStructureID": 6115, + "TargetStructureID": 73051, + "Label": "6115-73051 via Unknown from 73052 -> 73053", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 73052, + "TargetID": 73053, + "Directional": true + }] + }, { + "ID": 10856, + "SourceStructureID": 6115, + "TargetStructureID": 73067, + "Label": "6115-73067 via Ribbon Synapse from 73064 -> 73068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73064, + "TargetID": 73068, + "Directional": true + }] + }, { + "ID": 10857, + "SourceStructureID": 6115, + "TargetStructureID": 73094, + "Label": "6115-73094 via Ribbon Synapse from 73093 -> 73095", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73093, + "TargetID": 73095, + "Directional": true + }] + }, { + "ID": 10858, + "SourceStructureID": 6115, + "TargetStructureID": 73110, + "Label": "6115-73110 via Ribbon Synapse from 73109 -> 73111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73109, + "TargetID": 73111, + "Directional": true + }] + }, { + "ID": 10859, + "SourceStructureID": 6115, + "TargetStructureID": 73118, + "Label": "6115-73118 via Ribbon Synapse from 73117 -> 73119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73117, + "TargetID": 73119, + "Directional": true + }] + }, { + "ID": 10860, + "SourceStructureID": 6115, + "TargetStructureID": 73124, + "Label": "6115-73124 via BC Conventional Synapse from 73125 -> 73126", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73125, + "TargetID": 73126, + "Directional": true + }] + }, { + "ID": 10861, + "SourceStructureID": 6115, + "TargetStructureID": 73144, + "Label": "6115-73144 via Ribbon Synapse from 55916 -> 73145, 73156 -> 73203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55916, + "TargetID": 73145, + "Directional": true + }, { + "SourceID": 73156, + "TargetID": 73203, + "Directional": true + }] + }, { + "ID": 10862, + "SourceStructureID": 6115, + "TargetStructureID": 73204, + "Label": "6115-73204 via Ribbon Synapse from 73156 -> 73205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73156, + "TargetID": 73205, + "Directional": true + }] + }, { + "ID": 10863, + "SourceStructureID": 6115, + "TargetStructureID": 73219, + "Label": "6115-73219 via Ribbon Synapse from 73218 -> 73220", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73218, + "TargetID": 73220, + "Directional": true + }] + }, { + "ID": 10864, + "SourceStructureID": 6115, + "TargetStructureID": 73225, + "Label": "6115-73225 via Ribbon Synapse from 72327 -> 73228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72327, + "TargetID": 73228, + "Directional": true + }] + }, { + "ID": 10865, + "SourceStructureID": 6115, + "TargetStructureID": 73229, + "Label": "6115-73229 via Ribbon Synapse from 72327 -> 73230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72327, + "TargetID": 73230, + "Directional": true + }] + }, { + "ID": 10866, + "SourceStructureID": 6115, + "TargetStructureID": 73250, + "Label": "6115-73250 via Ribbon Synapse from 73249 -> 73251", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73249, + "TargetID": 73251, + "Directional": true + }] + }, { + "ID": 10867, + "SourceStructureID": 6115, + "TargetStructureID": 73252, + "Label": "6115-73252 via Ribbon Synapse from 55810 -> 73253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55810, + "TargetID": 73253, + "Directional": true + }] + }, { + "ID": 10868, + "SourceStructureID": 6115, + "TargetStructureID": 73273, + "Label": "6115-73273 via Ribbon Synapse from 73215 -> 82676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73215, + "TargetID": 82676, + "Directional": true + }] + }, { + "ID": 10869, + "SourceStructureID": 6115, + "TargetStructureID": 73275, + "Label": "6115-73275 via Ribbon Synapse from 73272 -> 73278", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73272, + "TargetID": 73278, + "Directional": true + }] + }, { + "ID": 10870, + "SourceStructureID": 6115, + "TargetStructureID": 73276, + "Label": "6115-73276 via Ribbon Synapse from 73272 -> 73277", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73272, + "TargetID": 73277, + "Directional": true + }] + }, { + "ID": 10871, + "SourceStructureID": 6115, + "TargetStructureID": 73301, + "Label": "6115-73301 via Ribbon Synapse from 55881 -> 73302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55881, + "TargetID": 73302, + "Directional": true + }] + }, { + "ID": 10872, + "SourceStructureID": 6115, + "TargetStructureID": 73303, + "Label": "6115-73303 via Ribbon Synapse from 55882 -> 73306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55882, + "TargetID": 73306, + "Directional": true + }] + }, { + "ID": 10873, + "SourceStructureID": 6115, + "TargetStructureID": 73304, + "Label": "6115-73304 via Ribbon Synapse from 55882 -> 73305", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55882, + "TargetID": 73305, + "Directional": true + }] + }, { + "ID": 10874, + "SourceStructureID": 6115, + "TargetStructureID": 73313, + "Label": "6115-73313 via BC Conventional Synapse from 73312 -> 73317", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73312, + "TargetID": 73317, + "Directional": true + }] + }, { + "ID": 10875, + "SourceStructureID": 6115, + "TargetStructureID": 73323, + "Label": "6115-73323 via Ribbon Synapse from 55883 -> 73329", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55883, + "TargetID": 73329, + "Directional": true + }] + }, { + "ID": 10876, + "SourceStructureID": 6115, + "TargetStructureID": 73324, + "Label": "6115-73324 via Ribbon Synapse from 55883 -> 73328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55883, + "TargetID": 73328, + "Directional": true + }] + }, { + "ID": 10877, + "SourceStructureID": 6115, + "TargetStructureID": 73332, + "Label": "6115-73332 via Ribbon Synapse from 55884 -> 73333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55884, + "TargetID": 73333, + "Directional": true + }] + }, { + "ID": 10878, + "SourceStructureID": 6115, + "TargetStructureID": 73335, + "Label": "6115-73335 via Ribbon Synapse from 73334 -> 73336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73334, + "TargetID": 73336, + "Directional": true + }] + }, { + "ID": 10879, + "SourceStructureID": 6115, + "TargetStructureID": 73399, + "Label": "6115-73399 via BC Conventional Synapse from 73396 -> 73400", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73396, + "TargetID": 73400, + "Directional": true + }] + }, { + "ID": 10880, + "SourceStructureID": 6115, + "TargetStructureID": 73426, + "Label": "6115-73426 via Ribbon Synapse from 73425 -> 73427", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73425, + "TargetID": 73427, + "Directional": true + }] + }, { + "ID": 10881, + "SourceStructureID": 6115, + "TargetStructureID": 73428, + "Label": "6115-73428 via Ribbon Synapse from 73425 -> 73429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73425, + "TargetID": 73429, + "Directional": true + }] + }, { + "ID": 10882, + "SourceStructureID": 6115, + "TargetStructureID": 73436, + "Label": "6115-73436 via Unknown from 73437 -> 73438", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 73437, + "TargetID": 73438, + "Directional": true + }] + }, { + "ID": 10883, + "SourceStructureID": 6115, + "TargetStructureID": 73448, + "Label": "6115-73448 via Ribbon Synapse from 73447 -> 73449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73447, + "TargetID": 73449, + "Directional": true + }] + }, { + "ID": 10884, + "SourceStructureID": 6115, + "TargetStructureID": 73472, + "Label": "6115-73472 via BC Conventional Synapse from 73474 -> 73473", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73474, + "TargetID": 73473, + "Directional": true + }] + }, { + "ID": 10885, + "SourceStructureID": 6115, + "TargetStructureID": 73494, + "Label": "6115-73494 via Ribbon Synapse from 73493 -> 73495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73493, + "TargetID": 73495, + "Directional": true + }] + }, { + "ID": 10886, + "SourceStructureID": 6115, + "TargetStructureID": 73509, + "Label": "6115-73509 via BC Conventional Synapse from 73510 -> 73511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73510, + "TargetID": 73511, + "Directional": true + }] + }, { + "ID": 10887, + "SourceStructureID": 6115, + "TargetStructureID": 73540, + "Label": "6115-73540 via Ribbon Synapse from 73539 -> 73541", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73539, + "TargetID": 73541, + "Directional": true + }] + }, { + "ID": 10888, + "SourceStructureID": 6115, + "TargetStructureID": 73542, + "Label": "6115-73542 via Ribbon Synapse from 73539 -> 73543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73539, + "TargetID": 73543, + "Directional": true + }] + }, { + "ID": 10889, + "SourceStructureID": 6115, + "TargetStructureID": 73565, + "Label": "6115-73565 via Ribbon Synapse from 74174 -> 74178", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74174, + "TargetID": 74178, + "Directional": true + }] + }, { + "ID": 10890, + "SourceStructureID": 6115, + "TargetStructureID": 73784, + "Label": "6115-73784 via BC Conventional Synapse from 73785 -> 73786", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73785, + "TargetID": 73786, + "Directional": true + }] + }, { + "ID": 10891, + "SourceStructureID": 6115, + "TargetStructureID": 73792, + "Label": "6115-73792 via Ribbon Synapse from 73787 -> 73794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73787, + "TargetID": 73794, + "Directional": true + }] + }, { + "ID": 10892, + "SourceStructureID": 6115, + "TargetStructureID": 73793, + "Label": "6115-73793 via Ribbon Synapse from 73787 -> 73795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73787, + "TargetID": 73795, + "Directional": true + }] + }, { + "ID": 10893, + "SourceStructureID": 6115, + "TargetStructureID": 73796, + "Label": "6115-73796 via Ribbon Synapse from 73788 -> 73797", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73788, + "TargetID": 73797, + "Directional": true + }] + }, { + "ID": 10894, + "SourceStructureID": 6115, + "TargetStructureID": 73821, + "Label": "6115-73821 via Ribbon Synapse from 32958 -> 73835", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32958, + "TargetID": 73835, + "Directional": true + }] + }, { + "ID": 10895, + "SourceStructureID": 6115, + "TargetStructureID": 73838, + "Label": "6115-73838 via BC Conventional Synapse from 78311 -> 78312", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78311, + "TargetID": 78312, + "Directional": true + }] + }, { + "ID": 10896, + "SourceStructureID": 6115, + "TargetStructureID": 73846, + "Label": "6115-73846 via Ribbon Synapse from 73851 -> 73852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73851, + "TargetID": 73852, + "Directional": true + }] + }, { + "ID": 10897, + "SourceStructureID": 6115, + "TargetStructureID": 73853, + "Label": "6115-73853 via Ribbon Synapse from 73851 -> 73854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73851, + "TargetID": 73854, + "Directional": true + }] + }, { + "ID": 10898, + "SourceStructureID": 6115, + "TargetStructureID": 73884, + "Label": "6115-73884 via Ribbon Synapse from 73885 -> 73888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73885, + "TargetID": 73888, + "Directional": true + }] + }, { + "ID": 10899, + "SourceStructureID": 6115, + "TargetStructureID": 73891, + "Label": "6115-73891 via Ribbon Synapse from 73894 -> 73895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73894, + "TargetID": 73895, + "Directional": true + }] + }, { + "ID": 10900, + "SourceStructureID": 6115, + "TargetStructureID": 73896, + "Label": "6115-73896 via Ribbon Synapse from 73894 -> 73897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73894, + "TargetID": 73897, + "Directional": true + }] + }, { + "ID": 10901, + "SourceStructureID": 6115, + "TargetStructureID": 73909, + "Label": "6115-73909 via BC Conventional Synapse from 134232 -> 134233", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134232, + "TargetID": 134233, + "Directional": true + }] + }, { + "ID": 10902, + "SourceStructureID": 6115, + "TargetStructureID": 73916, + "Label": "6115-73916 via Ribbon Synapse from 73915 -> 73917", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73915, + "TargetID": 73917, + "Directional": true + }] + }, { + "ID": 10903, + "SourceStructureID": 6115, + "TargetStructureID": 73926, + "Label": "6115-73926 via Ribbon Synapse from 73929 -> 73931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73929, + "TargetID": 73931, + "Directional": true + }] + }, { + "ID": 10904, + "SourceStructureID": 6115, + "TargetStructureID": 73928, + "Label": "6115-73928 via Ribbon Synapse from 73929 -> 73930", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73929, + "TargetID": 73930, + "Directional": true + }] + }, { + "ID": 10905, + "SourceStructureID": 6115, + "TargetStructureID": 73965, + "Label": "6115-73965 via Ribbon Synapse from 56311 -> 73966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56311, + "TargetID": 73966, + "Directional": true + }] + }, { + "ID": 10906, + "SourceStructureID": 6115, + "TargetStructureID": 73967, + "Label": "6115-73967 via Ribbon Synapse from 56311 -> 73969, 56312 -> 73972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56311, + "TargetID": 73969, + "Directional": true + }, { + "SourceID": 56312, + "TargetID": 73972, + "Directional": true + }] + }, { + "ID": 10907, + "SourceStructureID": 6115, + "TargetStructureID": 73970, + "Label": "6115-73970 via Ribbon Synapse from 56312 -> 73971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56312, + "TargetID": 73971, + "Directional": true + }] + }, { + "ID": 10908, + "SourceStructureID": 6115, + "TargetStructureID": 73977, + "Label": "6115-73977 via BC Conventional Synapse from 73976 -> 73978", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73976, + "TargetID": 73978, + "Directional": true + }] + }, { + "ID": 10909, + "SourceStructureID": 6115, + "TargetStructureID": 73979, + "Label": "6115-73979 via Ribbon Synapse from 74000 -> 74001", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74000, + "TargetID": 74001, + "Directional": true + }] + }, { + "ID": 10910, + "SourceStructureID": 6115, + "TargetStructureID": 74002, + "Label": "6115-74002 via Ribbon Synapse from 74000 -> 74003", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74000, + "TargetID": 74003, + "Directional": true + }] + }, { + "ID": 10911, + "SourceStructureID": 6115, + "TargetStructureID": 74004, + "Label": "6115-74004 via Ribbon Synapse from 74000 -> 74005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74000, + "TargetID": 74005, + "Directional": true + }] + }, { + "ID": 10912, + "SourceStructureID": 6115, + "TargetStructureID": 74026, + "Label": "6115-74026 via Ribbon Synapse from 74025 -> 74031", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74025, + "TargetID": 74031, + "Directional": true + }] + }, { + "ID": 10913, + "SourceStructureID": 6115, + "TargetStructureID": 74028, + "Label": "6115-74028 via Ribbon Synapse from 74025 -> 74032", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74025, + "TargetID": 74032, + "Directional": true + }] + }, { + "ID": 10914, + "SourceStructureID": 6115, + "TargetStructureID": 74029, + "Label": "6115-74029 via Ribbon Synapse from 74025 -> 74030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74025, + "TargetID": 74030, + "Directional": true + }] + }, { + "ID": 10915, + "SourceStructureID": 6115, + "TargetStructureID": 74045, + "Label": "6115-74045 via Ribbon Synapse from 74060 -> 74062", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74060, + "TargetID": 74062, + "Directional": true + }] + }, { + "ID": 10916, + "SourceStructureID": 6115, + "TargetStructureID": 74046, + "Label": "6115-74046 via Ribbon Synapse from 74060 -> 74061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74060, + "TargetID": 74061, + "Directional": true + }] + }, { + "ID": 10917, + "SourceStructureID": 6115, + "TargetStructureID": 74067, + "Label": "6115-74067 via Ribbon Synapse from 74063 -> 74068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74063, + "TargetID": 74068, + "Directional": true + }] + }, { + "ID": 10918, + "SourceStructureID": 6115, + "TargetStructureID": 74073, + "Label": "6115-74073 via Unknown from 74071 -> 74074", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 74071, + "TargetID": 74074, + "Directional": true + }] + }, { + "ID": 10919, + "SourceStructureID": 6115, + "TargetStructureID": 74075, + "Label": "6115-74075 via Ribbon Synapse from 56315 -> 74076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56315, + "TargetID": 74076, + "Directional": true + }] + }, { + "ID": 10920, + "SourceStructureID": 6115, + "TargetStructureID": 74077, + "Label": "6115-74077 via Ribbon Synapse from 56315 -> 74078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56315, + "TargetID": 74078, + "Directional": true + }] + }, { + "ID": 10921, + "SourceStructureID": 6115, + "TargetStructureID": 74086, + "Label": "6115-74086 via Ribbon Synapse from 74083 -> 74090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74083, + "TargetID": 74090, + "Directional": true + }] + }, { + "ID": 10922, + "SourceStructureID": 6115, + "TargetStructureID": 74087, + "Label": "6115-74087 via Ribbon Synapse from 74083 -> 74091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74083, + "TargetID": 74091, + "Directional": true + }] + }, { + "ID": 10923, + "SourceStructureID": 6115, + "TargetStructureID": 74088, + "Label": "6115-74088 via Ribbon Synapse from 74083 -> 74089", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74083, + "TargetID": 74089, + "Directional": true + }] + }, { + "ID": 10924, + "SourceStructureID": 6115, + "TargetStructureID": 74165, + "Label": "6115-74165 via Ribbon Synapse from 74164 -> 74166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74164, + "TargetID": 74166, + "Directional": true + }] + }, { + "ID": 10925, + "SourceStructureID": 6115, + "TargetStructureID": 74177, + "Label": "6115-74177 via Ribbon Synapse from 74174 -> 74179", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74174, + "TargetID": 74179, + "Directional": true + }] + }, { + "ID": 10926, + "SourceStructureID": 6115, + "TargetStructureID": 74187, + "Label": "6115-74187 via Ribbon Synapse from 74188 -> 74189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74188, + "TargetID": 74189, + "Directional": true + }] + }, { + "ID": 10927, + "SourceStructureID": 6115, + "TargetStructureID": 74197, + "Label": "6115-74197 via Ribbon Synapse from 74196 -> 74198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74196, + "TargetID": 74198, + "Directional": true + }] + }, { + "ID": 10928, + "SourceStructureID": 6115, + "TargetStructureID": 74203, + "Label": "6115-74203 via Ribbon Synapse from 74202 -> 74204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74202, + "TargetID": 74204, + "Directional": true + }] + }, { + "ID": 10929, + "SourceStructureID": 6115, + "TargetStructureID": 74276, + "Label": "6115-74276 via BC Conventional Synapse from 74275 -> 74277", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74275, + "TargetID": 74277, + "Directional": true + }] + }, { + "ID": 10930, + "SourceStructureID": 6115, + "TargetStructureID": 74279, + "Label": "6115-74279 via BC Conventional Synapse from 74280 -> 74281", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74280, + "TargetID": 74281, + "Directional": true + }] + }, { + "ID": 10931, + "SourceStructureID": 6115, + "TargetStructureID": 74299, + "Label": "6115-74299 via Ribbon Synapse from 55776 -> 74300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55776, + "TargetID": 74300, + "Directional": true + }] + }, { + "ID": 10932, + "SourceStructureID": 6115, + "TargetStructureID": 74301, + "Label": "6115-74301 via Ribbon Synapse from 55776 -> 74302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55776, + "TargetID": 74302, + "Directional": true + }] + }, { + "ID": 10933, + "SourceStructureID": 6115, + "TargetStructureID": 74333, + "Label": "6115-74333 via Ribbon Synapse from 55780 -> 74336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55780, + "TargetID": 74336, + "Directional": true + }] + }, { + "ID": 10934, + "SourceStructureID": 6115, + "TargetStructureID": 74334, + "Label": "6115-74334 via Ribbon Synapse from 55780 -> 74335", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55780, + "TargetID": 74335, + "Directional": true + }] + }, { + "ID": 10935, + "SourceStructureID": 6115, + "TargetStructureID": 74337, + "Label": "6115-74337 via Ribbon Synapse from 55779 -> 74349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55779, + "TargetID": 74349, + "Directional": true + }] + }, { + "ID": 10936, + "SourceStructureID": 6115, + "TargetStructureID": 74364, + "Label": "6115-74364 via Ribbon Synapse from 55793 -> 74365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55793, + "TargetID": 74365, + "Directional": true + }] + }, { + "ID": 10937, + "SourceStructureID": 6115, + "TargetStructureID": 74366, + "Label": "6115-74366 via Ribbon Synapse from 55793 -> 74367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55793, + "TargetID": 74367, + "Directional": true + }] + }, { + "ID": 10938, + "SourceStructureID": 6115, + "TargetStructureID": 74370, + "Label": "6115-74370 via Ribbon Synapse from 55792 -> 74375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55792, + "TargetID": 74375, + "Directional": true + }] + }, { + "ID": 10939, + "SourceStructureID": 6115, + "TargetStructureID": 74382, + "Label": "6115-74382 via Ribbon Synapse from 55792 -> 74383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55792, + "TargetID": 74383, + "Directional": true + }] + }, { + "ID": 10940, + "SourceStructureID": 6115, + "TargetStructureID": 74388, + "Label": "6115-74388 via Ribbon Synapse from 55791 -> 74389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55791, + "TargetID": 74389, + "Directional": true + }] + }, { + "ID": 10941, + "SourceStructureID": 6115, + "TargetStructureID": 74396, + "Label": "6115-74396 via BC Conventional Synapse from 74395 -> 74397", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74395, + "TargetID": 74397, + "Directional": true + }] + }, { + "ID": 10942, + "SourceStructureID": 6115, + "TargetStructureID": 74416, + "Label": "6115-74416 via BC Conventional Synapse from 74415 -> 74417", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74415, + "TargetID": 74417, + "Directional": true + }] + }, { + "ID": 10943, + "SourceStructureID": 6115, + "TargetStructureID": 74441, + "Label": "6115-74441 via Ribbon Synapse from 55785 -> 74444", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55785, + "TargetID": 74444, + "Directional": true + }] + }, { + "ID": 10944, + "SourceStructureID": 6115, + "TargetStructureID": 74448, + "Label": "6115-74448 via Unknown from 75973 -> 75974", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 75973, + "TargetID": 75974, + "Directional": true + }] + }, { + "ID": 10945, + "SourceStructureID": 6115, + "TargetStructureID": 74452, + "Label": "6115-74452 via BC Conventional Synapse from 74451 -> 74453", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74451, + "TargetID": 74453, + "Directional": true + }] + }, { + "ID": 10946, + "SourceStructureID": 6115, + "TargetStructureID": 74471, + "Label": "6115-74471 via Ribbon Synapse from 55775 -> 74474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55775, + "TargetID": 74474, + "Directional": true + }] + }, { + "ID": 10947, + "SourceStructureID": 6115, + "TargetStructureID": 74480, + "Label": "6115-74480 via Adherens from 75873 -> 75874", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 75873, + "TargetID": 75874, + "Directional": true + }] + }, { + "ID": 10948, + "SourceStructureID": 6115, + "TargetStructureID": 74480, + "Label": "6115-74480 via BC Conventional Synapse from 74479 -> 74481", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74479, + "TargetID": 74481, + "Directional": true + }] + }, { + "ID": 10949, + "SourceStructureID": 6115, + "TargetStructureID": 74497, + "Label": "6115-74497 via Ribbon Synapse from 74496 -> 74498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74496, + "TargetID": 74498, + "Directional": true + }] + }, { + "ID": 10950, + "SourceStructureID": 6115, + "TargetStructureID": 74517, + "Label": "6115-74517 via Ribbon Synapse from 74516 -> 74521", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74516, + "TargetID": 74521, + "Directional": true + }] + }, { + "ID": 10951, + "SourceStructureID": 6115, + "TargetStructureID": 74519, + "Label": "6115-74519 via Ribbon Synapse from 74516 -> 74520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74516, + "TargetID": 74520, + "Directional": true + }] + }, { + "ID": 10952, + "SourceStructureID": 6115, + "TargetStructureID": 74524, + "Label": "6115-74524 via Ribbon Synapse from 74522 -> 74525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74522, + "TargetID": 74525, + "Directional": true + }] + }, { + "ID": 10953, + "SourceStructureID": 6115, + "TargetStructureID": 74530, + "Label": "6115-74530 via BC Conventional Synapse from 74531 -> 74532", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74531, + "TargetID": 74532, + "Directional": true + }] + }, { + "ID": 10954, + "SourceStructureID": 6115, + "TargetStructureID": 74536, + "Label": "6115-74536 via Ribbon Synapse from 74535 -> 74537", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74535, + "TargetID": 74537, + "Directional": true + }] + }, { + "ID": 10955, + "SourceStructureID": 6115, + "TargetStructureID": 74539, + "Label": "6115-74539 via Ribbon Synapse from 74535 -> 74540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74535, + "TargetID": 74540, + "Directional": true + }] + }, { + "ID": 10956, + "SourceStructureID": 6115, + "TargetStructureID": 74683, + "Label": "6115-74683 via BC Conventional Synapse from 74682 -> 74684", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74682, + "TargetID": 74684, + "Directional": true + }] + }, { + "ID": 10957, + "SourceStructureID": 6115, + "TargetStructureID": 74699, + "Label": "6115-74699 via Ribbon Synapse from 74761 -> 74768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74761, + "TargetID": 74768, + "Directional": true + }] + }, { + "ID": 10958, + "SourceStructureID": 6115, + "TargetStructureID": 74701, + "Label": "6115-74701 via Ribbon Synapse from 74700 -> 74703", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74700, + "TargetID": 74703, + "Directional": true + }] + }, { + "ID": 10959, + "SourceStructureID": 6115, + "TargetStructureID": 74702, + "Label": "6115-74702 via Ribbon Synapse from 74700 -> 74704", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74700, + "TargetID": 74704, + "Directional": true + }] + }, { + "ID": 10960, + "SourceStructureID": 6115, + "TargetStructureID": 74719, + "Label": "6115-74719 via Unknown from 74722 -> 74723", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 74722, + "TargetID": 74723, + "Directional": true + }] + }, { + "ID": 10961, + "SourceStructureID": 6115, + "TargetStructureID": 74728, + "Label": "6115-74728 via Ribbon Synapse from 74725 -> 74729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74725, + "TargetID": 74729, + "Directional": true + }] + }, { + "ID": 10962, + "SourceStructureID": 6115, + "TargetStructureID": 74731, + "Label": "6115-74731 via Ribbon Synapse from 74725 -> 74732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74725, + "TargetID": 74732, + "Directional": true + }] + }, { + "ID": 10963, + "SourceStructureID": 6115, + "TargetStructureID": 74749, + "Label": "6115-74749 via BC Conventional Synapse from 80952 -> 80950", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80952, + "TargetID": 80950, + "Directional": true + }] + }, { + "ID": 10964, + "SourceStructureID": 6115, + "TargetStructureID": 74762, + "Label": "6115-74762 via Ribbon Synapse from 74761 -> 74765", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74761, + "TargetID": 74765, + "Directional": true + }] + }, { + "ID": 10965, + "SourceStructureID": 6115, + "TargetStructureID": 74763, + "Label": "6115-74763 via Ribbon Synapse from 74761 -> 74766", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74761, + "TargetID": 74766, + "Directional": true + }] + }, { + "ID": 10966, + "SourceStructureID": 6115, + "TargetStructureID": 74764, + "Label": "6115-74764 via Ribbon Synapse from 74761 -> 74767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74761, + "TargetID": 74767, + "Directional": true + }] + }, { + "ID": 10967, + "SourceStructureID": 6115, + "TargetStructureID": 74769, + "Label": "6115-74769 via Ribbon Synapse from 74778 -> 74779", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74778, + "TargetID": 74779, + "Directional": true + }] + }, { + "ID": 10968, + "SourceStructureID": 6115, + "TargetStructureID": 74780, + "Label": "6115-74780 via Ribbon Synapse from 74778 -> 74781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74778, + "TargetID": 74781, + "Directional": true + }] + }, { + "ID": 10969, + "SourceStructureID": 6115, + "TargetStructureID": 74795, + "Label": "6115-74795 via Ribbon Synapse from 55774 -> 74798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55774, + "TargetID": 74798, + "Directional": true + }] + }, { + "ID": 10970, + "SourceStructureID": 6115, + "TargetStructureID": 74797, + "Label": "6115-74797 via Ribbon Synapse from 55774 -> 74799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55774, + "TargetID": 74799, + "Directional": true + }] + }, { + "ID": 10971, + "SourceStructureID": 6115, + "TargetStructureID": 74815, + "Label": "6115-74815 via Ribbon Synapse from 55771 -> 74822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55771, + "TargetID": 74822, + "Directional": true + }] + }, { + "ID": 10972, + "SourceStructureID": 6115, + "TargetStructureID": 74818, + "Label": "6115-74818 via Ribbon Synapse from 55771 -> 74820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55771, + "TargetID": 74820, + "Directional": true + }] + }, { + "ID": 10973, + "SourceStructureID": 6115, + "TargetStructureID": 74819, + "Label": "6115-74819 via Ribbon Synapse from 55771 -> 74821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55771, + "TargetID": 74821, + "Directional": true + }] + }, { + "ID": 10974, + "SourceStructureID": 6115, + "TargetStructureID": 74825, + "Label": "6115-74825 via Ribbon Synapse from 55840 -> 74826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55840, + "TargetID": 74826, + "Directional": true + }] + }, { + "ID": 10975, + "SourceStructureID": 6115, + "TargetStructureID": 74828, + "Label": "6115-74828 via Ribbon Synapse from 55773 -> 74829", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55773, + "TargetID": 74829, + "Directional": true + }] + }, { + "ID": 10976, + "SourceStructureID": 6115, + "TargetStructureID": 74843, + "Label": "6115-74843 via Ribbon Synapse from 55770 -> 74844", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55770, + "TargetID": 74844, + "Directional": true + }] + }, { + "ID": 10977, + "SourceStructureID": 6115, + "TargetStructureID": 75035, + "Label": "6115-75035 via BC Conventional Synapse from 75037 -> 75039", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75037, + "TargetID": 75039, + "Directional": true + }] + }, { + "ID": 10978, + "SourceStructureID": 6115, + "TargetStructureID": 75059, + "Label": "6115-75059 via BC Conventional Synapse from 75060 -> 75061", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75060, + "TargetID": 75061, + "Directional": true + }] + }, { + "ID": 10979, + "SourceStructureID": 6115, + "TargetStructureID": 75065, + "Label": "6115-75065 via Ribbon Synapse from 75066 -> 75067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75066, + "TargetID": 75067, + "Directional": true + }] + }, { + "ID": 10980, + "SourceStructureID": 6115, + "TargetStructureID": 75073, + "Label": "6115-75073 via Ribbon Synapse from 55843 -> 75091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55843, + "TargetID": 75091, + "Directional": true + }] + }, { + "ID": 10981, + "SourceStructureID": 6115, + "TargetStructureID": 75081, + "Label": "6115-75081 via Ribbon Synapse from 55757 -> 75083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55757, + "TargetID": 75083, + "Directional": true + }] + }, { + "ID": 10982, + "SourceStructureID": 6115, + "TargetStructureID": 75082, + "Label": "6115-75082 via Ribbon Synapse from 55757 -> 75084", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55757, + "TargetID": 75084, + "Directional": true + }] + }, { + "ID": 10983, + "SourceStructureID": 6115, + "TargetStructureID": 75085, + "Label": "6115-75085 via Ribbon Synapse from 55757 -> 75088", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55757, + "TargetID": 75088, + "Directional": true + }] + }, { + "ID": 10984, + "SourceStructureID": 6115, + "TargetStructureID": 75086, + "Label": "6115-75086 via Ribbon Synapse from 55757 -> 75087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55757, + "TargetID": 75087, + "Directional": true + }] + }, { + "ID": 10985, + "SourceStructureID": 6115, + "TargetStructureID": 75089, + "Label": "6115-75089 via Ribbon Synapse from 55843 -> 75090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55843, + "TargetID": 75090, + "Directional": true + }] + }, { + "ID": 10986, + "SourceStructureID": 6115, + "TargetStructureID": 75099, + "Label": "6115-75099 via Ribbon Synapse from 55767 -> 75254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55767, + "TargetID": 75254, + "Directional": true + }] + }, { + "ID": 10987, + "SourceStructureID": 6115, + "TargetStructureID": 75102, + "Label": "6115-75102 via Ribbon Synapse from 55756 -> 75103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55756, + "TargetID": 75103, + "Directional": true + }] + }, { + "ID": 10988, + "SourceStructureID": 6115, + "TargetStructureID": 75110, + "Label": "6115-75110 via Ribbon Synapse from 55754 -> 75111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55754, + "TargetID": 75111, + "Directional": true + }] + }, { + "ID": 10989, + "SourceStructureID": 6115, + "TargetStructureID": 75112, + "Label": "6115-75112 via Ribbon Synapse from 75115 -> 75122", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75115, + "TargetID": 75122, + "Directional": true + }] + }, { + "ID": 10990, + "SourceStructureID": 6115, + "TargetStructureID": 75116, + "Label": "6115-75116 via Ribbon Synapse from 75115 -> 75118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75115, + "TargetID": 75118, + "Directional": true + }] + }, { + "ID": 10991, + "SourceStructureID": 6115, + "TargetStructureID": 75117, + "Label": "6115-75117 via Ribbon Synapse from 75115 -> 75119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75115, + "TargetID": 75119, + "Directional": true + }] + }, { + "ID": 10992, + "SourceStructureID": 6115, + "TargetStructureID": 75120, + "Label": "6115-75120 via Ribbon Synapse from 75115 -> 75121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75115, + "TargetID": 75121, + "Directional": true + }] + }, { + "ID": 10993, + "SourceStructureID": 6115, + "TargetStructureID": 75130, + "Label": "6115-75130 via Ribbon Synapse from 55840 -> 74827, 82662 -> 90638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55840, + "TargetID": 74827, + "Directional": true + }, { + "SourceID": 82662, + "TargetID": 90638, + "Directional": true + }] + }, { + "ID": 10994, + "SourceStructureID": 6115, + "TargetStructureID": 75156, + "Label": "6115-75156 via Ribbon Synapse from 75155 -> 75157", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75155, + "TargetID": 75157, + "Directional": true + }] + }, { + "ID": 10995, + "SourceStructureID": 6115, + "TargetStructureID": 75158, + "Label": "6115-75158 via Ribbon Synapse from 75155 -> 75159", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75155, + "TargetID": 75159, + "Directional": true + }] + }, { + "ID": 10996, + "SourceStructureID": 6115, + "TargetStructureID": 75189, + "Label": "6115-75189 via Ribbon Synapse from 75188 -> 75191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75188, + "TargetID": 75191, + "Directional": true + }] + }, { + "ID": 10997, + "SourceStructureID": 6115, + "TargetStructureID": 75194, + "Label": "6115-75194 via Ribbon Synapse from 75193 -> 75195", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75193, + "TargetID": 75195, + "Directional": true + }] + }, { + "ID": 10998, + "SourceStructureID": 6115, + "TargetStructureID": 75196, + "Label": "6115-75196 via Ribbon Synapse from 75193 -> 75197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75193, + "TargetID": 75197, + "Directional": true + }] + }, { + "ID": 10999, + "SourceStructureID": 6115, + "TargetStructureID": 75205, + "Label": "6115-75205 via BC Conventional Synapse from 75207 -> 75206", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75207, + "TargetID": 75206, + "Directional": true + }] + }, { + "ID": 11000, + "SourceStructureID": 6115, + "TargetStructureID": 75214, + "Label": "6115-75214 via BC Conventional Synapse from 75215 -> 75216", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75215, + "TargetID": 75216, + "Directional": true + }] + }, { + "ID": 11001, + "SourceStructureID": 6115, + "TargetStructureID": 75223, + "Label": "6115-75223 via BC Conventional Synapse from 93081 -> 93082", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93081, + "TargetID": 93082, + "Directional": true + }] + }, { + "ID": 11002, + "SourceStructureID": 6115, + "TargetStructureID": 75223, + "Label": "6115-75223 via Ribbon Synapse from 55766 -> 75229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55766, + "TargetID": 75229, + "Directional": true + }] + }, { + "ID": 11003, + "SourceStructureID": 6115, + "TargetStructureID": 75227, + "Label": "6115-75227 via Ribbon Synapse from 55766 -> 75228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55766, + "TargetID": 75228, + "Directional": true + }] + }, { + "ID": 11004, + "SourceStructureID": 6115, + "TargetStructureID": 75235, + "Label": "6115-75235 via Ribbon Synapse from 55861 -> 75237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55861, + "TargetID": 75237, + "Directional": true + }] + }, { + "ID": 11005, + "SourceStructureID": 6115, + "TargetStructureID": 75236, + "Label": "6115-75236 via Ribbon Synapse from 55861 -> 75240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55861, + "TargetID": 75240, + "Directional": true + }] + }, { + "ID": 11006, + "SourceStructureID": 6115, + "TargetStructureID": 75246, + "Label": "6115-75246 via Ribbon Synapse from 55860 -> 75247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55860, + "TargetID": 75247, + "Directional": true + }] + }, { + "ID": 11007, + "SourceStructureID": 6115, + "TargetStructureID": 75255, + "Label": "6115-75255 via Ribbon Synapse from 55767 -> 75256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55767, + "TargetID": 75256, + "Directional": true + }] + }, { + "ID": 11008, + "SourceStructureID": 6115, + "TargetStructureID": 75266, + "Label": "6115-75266 via Ribbon Synapse from 75002 -> 75267", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75002, + "TargetID": 75267, + "Directional": true + }] + }, { + "ID": 11009, + "SourceStructureID": 6115, + "TargetStructureID": 75268, + "Label": "6115-75268 via Ribbon Synapse from 55765 -> 75270", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55765, + "TargetID": 75270, + "Directional": true + }] + }, { + "ID": 11010, + "SourceStructureID": 6115, + "TargetStructureID": 75269, + "Label": "6115-75269 via Ribbon Synapse from 55765 -> 75271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55765, + "TargetID": 75271, + "Directional": true + }] + }, { + "ID": 11011, + "SourceStructureID": 6115, + "TargetStructureID": 75283, + "Label": "6115-75283 via Ribbon Synapse from 134153 -> 75284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134153, + "TargetID": 75284, + "Directional": true + }] + }, { + "ID": 11012, + "SourceStructureID": 6115, + "TargetStructureID": 75285, + "Label": "6115-75285 via Ribbon Synapse from 134153 -> 75286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134153, + "TargetID": 75286, + "Directional": true + }] + }, { + "ID": 11013, + "SourceStructureID": 6115, + "TargetStructureID": 75288, + "Label": "6115-75288 via Ribbon Synapse from 55761 -> 75289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55761, + "TargetID": 75289, + "Directional": true + }] + }, { + "ID": 11014, + "SourceStructureID": 6115, + "TargetStructureID": 75290, + "Label": "6115-75290 via Ribbon Synapse from 55761 -> 75291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55761, + "TargetID": 75291, + "Directional": true + }] + }, { + "ID": 11015, + "SourceStructureID": 6115, + "TargetStructureID": 75292, + "Label": "6115-75292 via Ribbon Synapse from 55763 -> 75295", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55763, + "TargetID": 75295, + "Directional": true + }] + }, { + "ID": 11016, + "SourceStructureID": 6115, + "TargetStructureID": 75293, + "Label": "6115-75293 via Ribbon Synapse from 55763 -> 75294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55763, + "TargetID": 75294, + "Directional": true + }] + }, { + "ID": 11017, + "SourceStructureID": 6115, + "TargetStructureID": 75440, + "Label": "6115-75440 via Ribbon Synapse from 55763 -> 75441", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55763, + "TargetID": 75441, + "Directional": true + }] + }, { + "ID": 11018, + "SourceStructureID": 6115, + "TargetStructureID": 75446, + "Label": "6115-75446 via Ribbon Synapse from 75449 -> 75451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75449, + "TargetID": 75451, + "Directional": true + }] + }, { + "ID": 11019, + "SourceStructureID": 6115, + "TargetStructureID": 75450, + "Label": "6115-75450 via Ribbon Synapse from 75449 -> 75453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75449, + "TargetID": 75453, + "Directional": true + }] + }, { + "ID": 11020, + "SourceStructureID": 6115, + "TargetStructureID": 75465, + "Label": "6115-75465 via Ribbon Synapse from 70310 -> 75466", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70310, + "TargetID": 75466, + "Directional": true + }] + }, { + "ID": 11021, + "SourceStructureID": 6115, + "TargetStructureID": 75467, + "Label": "6115-75467 via Ribbon Synapse from 70310 -> 75468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70310, + "TargetID": 75468, + "Directional": true + }] + }, { + "ID": 11022, + "SourceStructureID": 6115, + "TargetStructureID": 75470, + "Label": "6115-75470 via BC Conventional Synapse from 75469 -> 75471", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75469, + "TargetID": 75471, + "Directional": true + }] + }, { + "ID": 11023, + "SourceStructureID": 6115, + "TargetStructureID": 75472, + "Label": "6115-75472 via Ribbon Synapse from 70409 -> 75473", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70409, + "TargetID": 75473, + "Directional": true + }] + }, { + "ID": 11024, + "SourceStructureID": 6115, + "TargetStructureID": 75548, + "Label": "6115-75548 via Ribbon Synapse from 75547 -> 75549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75547, + "TargetID": 75549, + "Directional": true + }] + }, { + "ID": 11025, + "SourceStructureID": 6115, + "TargetStructureID": 75550, + "Label": "6115-75550 via Ribbon Synapse from 75547 -> 75551", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75547, + "TargetID": 75551, + "Directional": true + }] + }, { + "ID": 11026, + "SourceStructureID": 6115, + "TargetStructureID": 75569, + "Label": "6115-75569 via Ribbon Synapse from 72327 -> 75570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72327, + "TargetID": 75570, + "Directional": true + }] + }, { + "ID": 11027, + "SourceStructureID": 6115, + "TargetStructureID": 75644, + "Label": "6115-75644 via Ribbon Synapse from 73171 -> 75645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73171, + "TargetID": 75645, + "Directional": true + }] + }, { + "ID": 11028, + "SourceStructureID": 6115, + "TargetStructureID": 75646, + "Label": "6115-75646 via Ribbon Synapse from 72626 -> 75647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72626, + "TargetID": 75647, + "Directional": true + }] + }, { + "ID": 11029, + "SourceStructureID": 6115, + "TargetStructureID": 75648, + "Label": "6115-75648 via Ribbon Synapse from 66751 -> 75651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66751, + "TargetID": 75651, + "Directional": true + }] + }, { + "ID": 11030, + "SourceStructureID": 6115, + "TargetStructureID": 75649, + "Label": "6115-75649 via Ribbon Synapse from 66751 -> 75650", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66751, + "TargetID": 75650, + "Directional": true + }] + }, { + "ID": 11031, + "SourceStructureID": 6115, + "TargetStructureID": 75653, + "Label": "6115-75653 via Ribbon Synapse from 75652 -> 75654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75652, + "TargetID": 75654, + "Directional": true + }] + }, { + "ID": 11032, + "SourceStructureID": 6115, + "TargetStructureID": 75672, + "Label": "6115-75672 via BC Conventional Synapse from 75671 -> 75673", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75671, + "TargetID": 75673, + "Directional": true + }] + }, { + "ID": 11033, + "SourceStructureID": 6115, + "TargetStructureID": 75674, + "Label": "6115-75674 via Ribbon Synapse from 134154 -> 75675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134154, + "TargetID": 75675, + "Directional": true + }] + }, { + "ID": 11034, + "SourceStructureID": 6115, + "TargetStructureID": 75841, + "Label": "6115-75841 via Ribbon Synapse from 75838 -> 75842", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75838, + "TargetID": 75842, + "Directional": true + }] + }, { + "ID": 11035, + "SourceStructureID": 6115, + "TargetStructureID": 75857, + "Label": "6115-75857 via Ribbon Synapse from 75856 -> 75860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75856, + "TargetID": 75860, + "Directional": true + }] + }, { + "ID": 11036, + "SourceStructureID": 6115, + "TargetStructureID": 75861, + "Label": "6115-75861 via Ribbon Synapse from 75856 -> 75862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75856, + "TargetID": 75862, + "Directional": true + }] + }, { + "ID": 11037, + "SourceStructureID": 6115, + "TargetStructureID": 75866, + "Label": "6115-75866 via Ribbon Synapse from 75865 -> 75867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75865, + "TargetID": 75867, + "Directional": true + }] + }, { + "ID": 11038, + "SourceStructureID": 6115, + "TargetStructureID": 75868, + "Label": "6115-75868 via Ribbon Synapse from 75865 -> 75869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75865, + "TargetID": 75869, + "Directional": true + }] + }, { + "ID": 11039, + "SourceStructureID": 6115, + "TargetStructureID": 75882, + "Label": "6115-75882 via Ribbon Synapse from 55843 -> 75883", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55843, + "TargetID": 75883, + "Directional": true + }] + }, { + "ID": 11040, + "SourceStructureID": 6115, + "TargetStructureID": 75985, + "Label": "6115-75985 via Ribbon Synapse from 73386 -> 75986", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73386, + "TargetID": 75986, + "Directional": true + }] + }, { + "ID": 11041, + "SourceStructureID": 6115, + "TargetStructureID": 76000, + "Label": "6115-76000 via Ribbon Synapse from 73093 -> 76001", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73093, + "TargetID": 76001, + "Directional": true + }] + }, { + "ID": 11042, + "SourceStructureID": 6115, + "TargetStructureID": 76010, + "Label": "6115-76010 via Ribbon Synapse from 72962 -> 76012", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72962, + "TargetID": 76012, + "Directional": true + }] + }, { + "ID": 11043, + "SourceStructureID": 6115, + "TargetStructureID": 76013, + "Label": "6115-76013 via Ribbon Synapse from 55915 -> 76018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55915, + "TargetID": 76018, + "Directional": true + }] + }, { + "ID": 11044, + "SourceStructureID": 6115, + "TargetStructureID": 76014, + "Label": "6115-76014 via Ribbon Synapse from 55915 -> 76017", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55915, + "TargetID": 76017, + "Directional": true + }] + }, { + "ID": 11045, + "SourceStructureID": 6115, + "TargetStructureID": 76015, + "Label": "6115-76015 via Ribbon Synapse from 55915 -> 76016", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55915, + "TargetID": 76016, + "Directional": true + }] + }, { + "ID": 11046, + "SourceStructureID": 6115, + "TargetStructureID": 76024, + "Label": "6115-76024 via Ribbon Synapse from 73218 -> 76025", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73218, + "TargetID": 76025, + "Directional": true + }] + }, { + "ID": 11047, + "SourceStructureID": 6115, + "TargetStructureID": 76111, + "Label": "6115-76111 via Unknown from 76113 -> 76112", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 76113, + "TargetID": 76112, + "Directional": true + }] + }, { + "ID": 11048, + "SourceStructureID": 6115, + "TargetStructureID": 76182, + "Label": "6115-76182 via Ribbon Synapse from 76181 -> 76183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76181, + "TargetID": 76183, + "Directional": true + }] + }, { + "ID": 11049, + "SourceStructureID": 6115, + "TargetStructureID": 76184, + "Label": "6115-76184 via Ribbon Synapse from 76181 -> 76185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76181, + "TargetID": 76185, + "Directional": true + }] + }, { + "ID": 11050, + "SourceStructureID": 6115, + "TargetStructureID": 76186, + "Label": "6115-76186 via Ribbon Synapse from 76181 -> 76187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76181, + "TargetID": 76187, + "Directional": true + }] + }, { + "ID": 11051, + "SourceStructureID": 6115, + "TargetStructureID": 77677, + "Label": "6115-77677 via Ribbon Synapse from 77676 -> 77678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77676, + "TargetID": 77678, + "Directional": true + }] + }, { + "ID": 11052, + "SourceStructureID": 6115, + "TargetStructureID": 78309, + "Label": "6115-78309 via Ribbon Synapse from 55842 -> 78310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55842, + "TargetID": 78310, + "Directional": true + }] + }, { + "ID": 11053, + "SourceStructureID": 6115, + "TargetStructureID": 80957, + "Label": "6115-80957 via Ribbon Synapse from 75188 -> 82233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75188, + "TargetID": 82233, + "Directional": true + }] + }, { + "ID": 11054, + "SourceStructureID": 6115, + "TargetStructureID": 81167, + "Label": "6115-81167 via Ribbon Synapse from 74522 -> 82103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74522, + "TargetID": 82103, + "Directional": true + }] + }, { + "ID": 11055, + "SourceStructureID": 6115, + "TargetStructureID": 81337, + "Label": "6115-81337 via Ribbon Synapse from 81340 -> 81339", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81340, + "TargetID": 81339, + "Directional": true + }] + }, { + "ID": 11056, + "SourceStructureID": 6115, + "TargetStructureID": 81348, + "Label": "6115-81348 via Ribbon Synapse from 72305 -> 81349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72305, + "TargetID": 81349, + "Directional": true + }] + }, { + "ID": 11057, + "SourceStructureID": 6115, + "TargetStructureID": 81667, + "Label": "6115-81667 via Ribbon Synapse from 55866 -> 81706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55866, + "TargetID": 81706, + "Directional": true + }] + }, { + "ID": 11058, + "SourceStructureID": 6115, + "TargetStructureID": 81964, + "Label": "6115-81964 via Ribbon Synapse from 55811 -> 81965", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55811, + "TargetID": 81965, + "Directional": true + }] + }, { + "ID": 11059, + "SourceStructureID": 6115, + "TargetStructureID": 82368, + "Label": "6115-82368 via BC Conventional Synapse from 72912 -> 82369", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72912, + "TargetID": 82369, + "Directional": true + }] + }, { + "ID": 11060, + "SourceStructureID": 6115, + "TargetStructureID": 82402, + "Label": "6115-82402 via Ribbon Synapse from 55770 -> 82563", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55770, + "TargetID": 82563, + "Directional": true + }] + }, { + "ID": 11061, + "SourceStructureID": 6115, + "TargetStructureID": 82644, + "Label": "6115-82644 via Ribbon Synapse from 77671 -> 82645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77671, + "TargetID": 82645, + "Directional": true + }] + }, { + "ID": 11062, + "SourceStructureID": 6115, + "TargetStructureID": 82653, + "Label": "6115-82653 via Ribbon Synapse from 77671 -> 90630, 77672 -> 82658, 134154 -> 90719", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77671, + "TargetID": 90630, + "Directional": true + }, { + "SourceID": 77672, + "TargetID": 82658, + "Directional": true + }, { + "SourceID": 134154, + "TargetID": 90719, + "Directional": true + }] + }, { + "ID": 11063, + "SourceStructureID": 6115, + "TargetStructureID": 82659, + "Label": "6115-82659 via Ribbon Synapse from 77672 -> 82660", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 77672, + "TargetID": 82660, + "Directional": true + }] + }, { + "ID": 11064, + "SourceStructureID": 6115, + "TargetStructureID": 82795, + "Label": "6115-82795 via Ribbon Synapse from 55861 -> 82797", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55861, + "TargetID": 82797, + "Directional": true + }] + }, { + "ID": 11065, + "SourceStructureID": 6115, + "TargetStructureID": 82803, + "Label": "6115-82803 via BC Conventional Synapse from 55790 -> 134149", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55790, + "TargetID": 134149, + "Directional": true + }] + }, { + "ID": 11066, + "SourceStructureID": 6115, + "TargetStructureID": 82954, + "Label": "6115-82954 via Ribbon Synapse from 72244 -> 82956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72244, + "TargetID": 82956, + "Directional": true + }] + }, { + "ID": 11067, + "SourceStructureID": 6115, + "TargetStructureID": 82969, + "Label": "6115-82969 via Ribbon Synapse from 72353 -> 82971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72353, + "TargetID": 82971, + "Directional": true + }] + }, { + "ID": 11068, + "SourceStructureID": 6115, + "TargetStructureID": 86246, + "Label": "6115-86246 via Ribbon Synapse from 16049 -> 86247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16049, + "TargetID": 86247, + "Directional": true + }] + }, { + "ID": 11069, + "SourceStructureID": 6115, + "TargetStructureID": 90651, + "Label": "6115-90651 via Ribbon Synapse from 82669 -> 90652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82669, + "TargetID": 90652, + "Directional": true + }] + }, { + "ID": 11070, + "SourceStructureID": 6115, + "TargetStructureID": 90654, + "Label": "6115-90654 via Ribbon Synapse from 82669 -> 90655", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82669, + "TargetID": 90655, + "Directional": true + }] + }, { + "ID": 11071, + "SourceStructureID": 6117, + "TargetStructureID": 606, + "Label": "6117-606 via Ribbon Synapse from 6967 -> 6968, 10053 -> 10052, 10056 -> 10055, 10714 -> 10709, 10715 -> 10708, 10717 -> 10706, 12318 -> 12319, 30887 -> 10713, 51326 -> 51327, 51334 -> 51335, 51530 -> 51368, 51546 -> 10718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6967, + "TargetID": 6968, + "Directional": true + }, { + "SourceID": 10053, + "TargetID": 10052, + "Directional": true + }, { + "SourceID": 10056, + "TargetID": 10055, + "Directional": true + }, { + "SourceID": 10714, + "TargetID": 10709, + "Directional": true + }, { + "SourceID": 10715, + "TargetID": 10708, + "Directional": true + }, { + "SourceID": 10717, + "TargetID": 10706, + "Directional": true + }, { + "SourceID": 12318, + "TargetID": 12319, + "Directional": true + }, { + "SourceID": 30887, + "TargetID": 10713, + "Directional": true + }, { + "SourceID": 51326, + "TargetID": 51327, + "Directional": true + }, { + "SourceID": 51334, + "TargetID": 51335, + "Directional": true + }, { + "SourceID": 51530, + "TargetID": 51368, + "Directional": true + }, { + "SourceID": 51546, + "TargetID": 10718, + "Directional": true + }] + }, { + "ID": 11072, + "SourceStructureID": 6117, + "TargetStructureID": 5377, + "Label": "6117-5377 via BC Conventional Synapse from 86374 -> 87085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86374, + "TargetID": 87085, + "Directional": true + }] + }, { + "ID": 11073, + "SourceStructureID": 6117, + "TargetStructureID": 5377, + "Label": "6117-5377 via Ribbon Synapse from 86400 -> 87087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86400, + "TargetID": 87087, + "Directional": true + }] + }, { + "ID": 11074, + "SourceStructureID": 6117, + "TargetStructureID": 5489, + "Label": "6117-5489 via Ribbon Synapse from 85960 -> 85962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85960, + "TargetID": 85962, + "Directional": true + }] + }, { + "ID": 11075, + "SourceStructureID": 6117, + "TargetStructureID": 6300, + "Label": "6117-6300 via Ribbon Synapse from 20587 -> 86241, 30902 -> 86358", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20587, + "TargetID": 86241, + "Directional": true + }, { + "SourceID": 30902, + "TargetID": 86358, + "Directional": true + }] + }, { + "ID": 11076, + "SourceStructureID": 6117, + "TargetStructureID": 7594, + "Label": "6117-7594 via Ribbon Synapse from 10717 -> 25096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10717, + "TargetID": 25096, + "Directional": true + }] + }, { + "ID": 11077, + "SourceStructureID": 6117, + "TargetStructureID": 9769, + "Label": "6117-9769 via Ribbon Synapse from 6967 -> 51270, 10526 -> 12566, 10715 -> 51305, 22385 -> 84190, 30883 -> 84247, 45117 -> 45118, 51326 -> 11268, 51546 -> 84173, 54012 -> 83281, 54285 -> 23929, 58594 -> 83130, 86013 -> 86075", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6967, + "TargetID": 51270, + "Directional": true + }, { + "SourceID": 10526, + "TargetID": 12566, + "Directional": true + }, { + "SourceID": 10715, + "TargetID": 51305, + "Directional": true + }, { + "SourceID": 22385, + "TargetID": 84190, + "Directional": true + }, { + "SourceID": 30883, + "TargetID": 84247, + "Directional": true + }, { + "SourceID": 45117, + "TargetID": 45118, + "Directional": true + }, { + "SourceID": 51326, + "TargetID": 11268, + "Directional": true + }, { + "SourceID": 51546, + "TargetID": 84173, + "Directional": true + }, { + "SourceID": 54012, + "TargetID": 83281, + "Directional": true + }, { + "SourceID": 54285, + "TargetID": 23929, + "Directional": true + }, { + "SourceID": 58594, + "TargetID": 83130, + "Directional": true + }, { + "SourceID": 86013, + "TargetID": 86075, + "Directional": true + }] + }, { + "ID": 11078, + "SourceStructureID": 6117, + "TargetStructureID": 15796, + "Label": "6117-15796 via Ribbon Synapse from 83934 -> 83937", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83934, + "TargetID": 83937, + "Directional": true + }] + }, { + "ID": 11079, + "SourceStructureID": 6117, + "TargetStructureID": 18693, + "Label": "6117-18693 via Ribbon Synapse from 84221 -> 27325", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84221, + "TargetID": 27325, + "Directional": true + }] + }, { + "ID": 11080, + "SourceStructureID": 6117, + "TargetStructureID": 30567, + "Label": "6117-30567 via Ribbon Synapse from 20585 -> 32088", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20585, + "TargetID": 32088, + "Directional": true + }] + }, { + "ID": 11081, + "SourceStructureID": 6117, + "TargetStructureID": 32035, + "Label": "6117-32035 via Adherens from 86085 -> 86352", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 86085, + "TargetID": 86352, + "Directional": true + }] + }, { + "ID": 11082, + "SourceStructureID": 6117, + "TargetStructureID": 32035, + "Label": "6117-32035 via Ribbon Synapse from 10526 -> 41661", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10526, + "TargetID": 41661, + "Directional": true + }] + }, { + "ID": 11083, + "SourceStructureID": 6117, + "TargetStructureID": 35811, + "Label": "6117-35811 via Ribbon Synapse from 30908 -> 35846, 30922 -> 35851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30908, + "TargetID": 35846, + "Directional": true + }, { + "SourceID": 30922, + "TargetID": 35851, + "Directional": true + }] + }, { + "ID": 11084, + "SourceStructureID": 6117, + "TargetStructureID": 35894, + "Label": "6117-35894 via Ribbon Synapse from 30931 -> 35923", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30931, + "TargetID": 35923, + "Directional": true + }] + }, { + "ID": 11085, + "SourceStructureID": 6117, + "TargetStructureID": 35975, + "Label": "6117-35975 via Ribbon Synapse from 30892 -> 35997, 85986 -> 85988", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30892, + "TargetID": 35997, + "Directional": true + }, { + "SourceID": 85986, + "TargetID": 85988, + "Directional": true + }] + }, { + "ID": 11086, + "SourceStructureID": 6117, + "TargetStructureID": 40844, + "Label": "6117-40844 via Ribbon Synapse from 10532 -> 40846", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10532, + "TargetID": 40846, + "Directional": true + }] + }, { + "ID": 11087, + "SourceStructureID": 6117, + "TargetStructureID": 40880, + "Label": "6117-40880 via Ribbon Synapse from 121987 -> 121988", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121987, + "TargetID": 121988, + "Directional": true + }] + }, { + "ID": 11088, + "SourceStructureID": 6117, + "TargetStructureID": 45220, + "Label": "6117-45220 via Ribbon Synapse from 30927 -> 86511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30927, + "TargetID": 86511, + "Directional": true + }] + }, { + "ID": 11089, + "SourceStructureID": 6117, + "TargetStructureID": 54006, + "Label": "6117-54006 via Ribbon Synapse from 22385 -> 54009, 54012 -> 83283", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22385, + "TargetID": 54009, + "Directional": true + }, { + "SourceID": 54012, + "TargetID": 83283, + "Directional": true + }] + }, { + "ID": 11090, + "SourceStructureID": 6117, + "TargetStructureID": 54078, + "Label": "6117-54078 via Ribbon Synapse from 30883 -> 84246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30883, + "TargetID": 84246, + "Directional": true + }] + }, { + "ID": 11091, + "SourceStructureID": 6117, + "TargetStructureID": 54287, + "Label": "6117-54287 via Ribbon Synapse from 54294 -> 54293, 85411 -> 85414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54294, + "TargetID": 54293, + "Directional": true + }, { + "SourceID": 85411, + "TargetID": 85414, + "Directional": true + }] + }, { + "ID": 11092, + "SourceStructureID": 6117, + "TargetStructureID": 55517, + "Label": "6117-55517 via Ribbon Synapse from 55577 -> 55578, 55593 -> 55592", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55577, + "TargetID": 55578, + "Directional": true + }, { + "SourceID": 55593, + "TargetID": 55592, + "Directional": true + }] + }, { + "ID": 11093, + "SourceStructureID": 6117, + "TargetStructureID": 56841, + "Label": "6117-56841 via Ribbon Synapse from 83944 -> 83948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83944, + "TargetID": 83948, + "Directional": true + }] + }, { + "ID": 11094, + "SourceStructureID": 6117, + "TargetStructureID": 58592, + "Label": "6117-58592 via Ribbon Synapse from 20573 -> 86144, 30908 -> 58639, 30916 -> 58640, 58594 -> 83129", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20573, + "TargetID": 86144, + "Directional": true + }, { + "SourceID": 30908, + "TargetID": 58639, + "Directional": true + }, { + "SourceID": 30916, + "TargetID": 58640, + "Directional": true + }, { + "SourceID": 58594, + "TargetID": 83129, + "Directional": true + }] + }, { + "ID": 11095, + "SourceStructureID": 6117, + "TargetStructureID": 58687, + "Label": "6117-58687 via Ribbon Synapse from 85999 -> 86006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85999, + "TargetID": 86006, + "Directional": true + }] + }, { + "ID": 11096, + "SourceStructureID": 6117, + "TargetStructureID": 58691, + "Label": "6117-58691 via Ribbon Synapse from 10539 -> 84935, 84859 -> 84865, 84959 -> 84961, 84964 -> 84967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10539, + "TargetID": 84935, + "Directional": true + }, { + "SourceID": 84859, + "TargetID": 84865, + "Directional": true + }, { + "SourceID": 84959, + "TargetID": 84961, + "Directional": true + }, { + "SourceID": 84964, + "TargetID": 84967, + "Directional": true + }] + }, { + "ID": 11097, + "SourceStructureID": 6117, + "TargetStructureID": 58714, + "Label": "6117-58714 via Ribbon Synapse from 20573 -> 86142, 30910 -> 86414, 30916 -> 86484, 58731 -> 58730", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20573, + "TargetID": 86142, + "Directional": true + }, { + "SourceID": 30910, + "TargetID": 86414, + "Directional": true + }, { + "SourceID": 30916, + "TargetID": 86484, + "Directional": true + }, { + "SourceID": 58731, + "TargetID": 58730, + "Directional": true + }] + }, { + "ID": 11098, + "SourceStructureID": 6117, + "TargetStructureID": 58723, + "Label": "6117-58723 via Ribbon Synapse from 20570 -> 58727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20570, + "TargetID": 58727, + "Directional": true + }] + }, { + "ID": 11099, + "SourceStructureID": 6117, + "TargetStructureID": 58741, + "Label": "6117-58741 via Ribbon Synapse from 30911 -> 58743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30911, + "TargetID": 58743, + "Directional": true + }] + }, { + "ID": 11100, + "SourceStructureID": 6117, + "TargetStructureID": 58775, + "Label": "6117-58775 via Ribbon Synapse from 30917 -> 58776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30917, + "TargetID": 58776, + "Directional": true + }] + }, { + "ID": 11101, + "SourceStructureID": 6117, + "TargetStructureID": 58777, + "Label": "6117-58777 via Ribbon Synapse from 30927 -> 58778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30927, + "TargetID": 58778, + "Directional": true + }] + }, { + "ID": 11102, + "SourceStructureID": 6117, + "TargetStructureID": 58816, + "Label": "6117-58816 via Ribbon Synapse from 85986 -> 85987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85986, + "TargetID": 85987, + "Directional": true + }] + }, { + "ID": 11103, + "SourceStructureID": 6117, + "TargetStructureID": 58825, + "Label": "6117-58825 via Ribbon Synapse from 58811 -> 58826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58811, + "TargetID": 58826, + "Directional": true + }] + }, { + "ID": 11104, + "SourceStructureID": 6117, + "TargetStructureID": 59008, + "Label": "6117-59008 via Ribbon Synapse from 58811 -> 59010", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58811, + "TargetID": 59010, + "Directional": true + }] + }, { + "ID": 11105, + "SourceStructureID": 6117, + "TargetStructureID": 59482, + "Label": "6117-59482 via Ribbon Synapse from 51530 -> 84654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51530, + "TargetID": 84654, + "Directional": true + }] + }, { + "ID": 11106, + "SourceStructureID": 6117, + "TargetStructureID": 66374, + "Label": "6117-66374 via Ribbon Synapse from 30879 -> 66377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30879, + "TargetID": 66377, + "Directional": true + }] + }, { + "ID": 11107, + "SourceStructureID": 6117, + "TargetStructureID": 66523, + "Label": "6117-66523 via Ribbon Synapse from 30869 -> 77928", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30869, + "TargetID": 77928, + "Directional": true + }] + }, { + "ID": 11108, + "SourceStructureID": 6117, + "TargetStructureID": 68539, + "Label": "6117-68539 via Ribbon Synapse from 84371 -> 84381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84371, + "TargetID": 84381, + "Directional": true + }] + }, { + "ID": 11109, + "SourceStructureID": 6117, + "TargetStructureID": 70388, + "Label": "6117-70388 via Ribbon Synapse from 70387 -> 70389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70387, + "TargetID": 70389, + "Directional": true + }] + }, { + "ID": 11110, + "SourceStructureID": 6117, + "TargetStructureID": 70454, + "Label": "6117-70454 via Ribbon Synapse from 84198 -> 89562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84198, + "TargetID": 89562, + "Directional": true + }] + }, { + "ID": 11111, + "SourceStructureID": 6117, + "TargetStructureID": 70460, + "Label": "6117-70460 via Ribbon Synapse from 30885 -> 70461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30885, + "TargetID": 70461, + "Directional": true + }] + }, { + "ID": 11112, + "SourceStructureID": 6117, + "TargetStructureID": 70476, + "Label": "6117-70476 via Ribbon Synapse from 30934 -> 70477", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30934, + "TargetID": 70477, + "Directional": true + }] + }, { + "ID": 11113, + "SourceStructureID": 6117, + "TargetStructureID": 75583, + "Label": "6117-75583 via Ribbon Synapse from 83209 -> 83210", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83209, + "TargetID": 83210, + "Directional": true + }] + }, { + "ID": 11114, + "SourceStructureID": 6117, + "TargetStructureID": 82704, + "Label": "6117-82704 via Ribbon Synapse from 20577 -> 86181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20577, + "TargetID": 86181, + "Directional": true + }] + }, { + "ID": 11115, + "SourceStructureID": 6117, + "TargetStructureID": 83147, + "Label": "6117-83147 via Ribbon Synapse from 83150 -> 83153", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83150, + "TargetID": 83153, + "Directional": true + }] + }, { + "ID": 11116, + "SourceStructureID": 6117, + "TargetStructureID": 83157, + "Label": "6117-83157 via Ribbon Synapse from 83196 -> 83198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83196, + "TargetID": 83198, + "Directional": true + }] + }, { + "ID": 11117, + "SourceStructureID": 6117, + "TargetStructureID": 83161, + "Label": "6117-83161 via Ribbon Synapse from 83196 -> 83197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83196, + "TargetID": 83197, + "Directional": true + }] + }, { + "ID": 11118, + "SourceStructureID": 6117, + "TargetStructureID": 83163, + "Label": "6117-83163 via Ribbon Synapse from 83146 -> 83164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83146, + "TargetID": 83164, + "Directional": true + }] + }, { + "ID": 11119, + "SourceStructureID": 6117, + "TargetStructureID": 83165, + "Label": "6117-83165 via Ribbon Synapse from 83146 -> 83166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83146, + "TargetID": 83166, + "Directional": true + }] + }, { + "ID": 11120, + "SourceStructureID": 6117, + "TargetStructureID": 83186, + "Label": "6117-83186 via Ribbon Synapse from 83146 -> 83188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83146, + "TargetID": 83188, + "Directional": true + }] + }, { + "ID": 11121, + "SourceStructureID": 6117, + "TargetStructureID": 83204, + "Label": "6117-83204 via Ribbon Synapse from 30888 -> 83207", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30888, + "TargetID": 83207, + "Directional": true + }] + }, { + "ID": 11122, + "SourceStructureID": 6117, + "TargetStructureID": 83205, + "Label": "6117-83205 via Ribbon Synapse from 30888 -> 83208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30888, + "TargetID": 83208, + "Directional": true + }] + }, { + "ID": 11123, + "SourceStructureID": 6117, + "TargetStructureID": 83211, + "Label": "6117-83211 via Ribbon Synapse from 83209 -> 83212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83209, + "TargetID": 83212, + "Directional": true + }] + }, { + "ID": 11124, + "SourceStructureID": 6117, + "TargetStructureID": 83214, + "Label": "6117-83214 via Ribbon Synapse from 83209 -> 83215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83209, + "TargetID": 83215, + "Directional": true + }] + }, { + "ID": 11125, + "SourceStructureID": 6117, + "TargetStructureID": 83246, + "Label": "6117-83246 via Ribbon Synapse from 30925 -> 83247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30925, + "TargetID": 83247, + "Directional": true + }] + }, { + "ID": 11126, + "SourceStructureID": 6117, + "TargetStructureID": 83248, + "Label": "6117-83248 via Ribbon Synapse from 30925 -> 83249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30925, + "TargetID": 83249, + "Directional": true + }] + }, { + "ID": 11127, + "SourceStructureID": 6117, + "TargetStructureID": 83253, + "Label": "6117-83253 via Ribbon Synapse from 83252 -> 83254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83252, + "TargetID": 83254, + "Directional": true + }] + }, { + "ID": 11128, + "SourceStructureID": 6117, + "TargetStructureID": 83255, + "Label": "6117-83255 via Ribbon Synapse from 83252 -> 83256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83252, + "TargetID": 83256, + "Directional": true + }] + }, { + "ID": 11129, + "SourceStructureID": 6117, + "TargetStructureID": 83270, + "Label": "6117-83270 via Ribbon Synapse from 30867 -> 83271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30867, + "TargetID": 83271, + "Directional": true + }] + }, { + "ID": 11130, + "SourceStructureID": 6117, + "TargetStructureID": 83272, + "Label": "6117-83272 via Ribbon Synapse from 30867 -> 83273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30867, + "TargetID": 83273, + "Directional": true + }] + }, { + "ID": 11131, + "SourceStructureID": 6117, + "TargetStructureID": 83282, + "Label": "6117-83282 via Ribbon Synapse from 54012 -> 83284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54012, + "TargetID": 83284, + "Directional": true + }] + }, { + "ID": 11132, + "SourceStructureID": 6117, + "TargetStructureID": 83288, + "Label": "6117-83288 via Ribbon Synapse from 30869 -> 83289", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30869, + "TargetID": 83289, + "Directional": true + }] + }, { + "ID": 11133, + "SourceStructureID": 6117, + "TargetStructureID": 83290, + "Label": "6117-83290 via Ribbon Synapse from 30869 -> 83291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30869, + "TargetID": 83291, + "Directional": true + }] + }, { + "ID": 11134, + "SourceStructureID": 6117, + "TargetStructureID": 83935, + "Label": "6117-83935 via Ribbon Synapse from 83934 -> 83936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83934, + "TargetID": 83936, + "Directional": true + }] + }, { + "ID": 11135, + "SourceStructureID": 6117, + "TargetStructureID": 83949, + "Label": "6117-83949 via Ribbon Synapse from 83944 -> 83950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83944, + "TargetID": 83950, + "Directional": true + }] + }, { + "ID": 11136, + "SourceStructureID": 6117, + "TargetStructureID": 83951, + "Label": "6117-83951 via Ribbon Synapse from 83944 -> 83952", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83944, + "TargetID": 83952, + "Directional": true + }] + }, { + "ID": 11137, + "SourceStructureID": 6117, + "TargetStructureID": 83963, + "Label": "6117-83963 via Ribbon Synapse from 10717 -> 83964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10717, + "TargetID": 83964, + "Directional": true + }] + }, { + "ID": 11138, + "SourceStructureID": 6117, + "TargetStructureID": 83972, + "Label": "6117-83972 via Ribbon Synapse from 83971 -> 83973", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83971, + "TargetID": 83973, + "Directional": true + }] + }, { + "ID": 11139, + "SourceStructureID": 6117, + "TargetStructureID": 83974, + "Label": "6117-83974 via Ribbon Synapse from 30871 -> 83977", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30871, + "TargetID": 83977, + "Directional": true + }] + }, { + "ID": 11140, + "SourceStructureID": 6117, + "TargetStructureID": 83975, + "Label": "6117-83975 via Ribbon Synapse from 30871 -> 83976", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30871, + "TargetID": 83976, + "Directional": true + }] + }, { + "ID": 11141, + "SourceStructureID": 6117, + "TargetStructureID": 84136, + "Label": "6117-84136 via Ribbon Synapse from 51546 -> 84139", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51546, + "TargetID": 84139, + "Directional": true + }] + }, { + "ID": 11142, + "SourceStructureID": 6117, + "TargetStructureID": 84151, + "Label": "6117-84151 via Ribbon Synapse from 84153 -> 84154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84153, + "TargetID": 84154, + "Directional": true + }] + }, { + "ID": 11143, + "SourceStructureID": 6117, + "TargetStructureID": 84165, + "Label": "6117-84165 via Ribbon Synapse from 45117 -> 84166", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45117, + "TargetID": 84166, + "Directional": true + }] + }, { + "ID": 11144, + "SourceStructureID": 6117, + "TargetStructureID": 84188, + "Label": "6117-84188 via Ribbon Synapse from 22385 -> 84189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22385, + "TargetID": 84189, + "Directional": true + }] + }, { + "ID": 11145, + "SourceStructureID": 6117, + "TargetStructureID": 84201, + "Label": "6117-84201 via Ribbon Synapse from 84198 -> 84202", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84198, + "TargetID": 84202, + "Directional": true + }] + }, { + "ID": 11146, + "SourceStructureID": 6117, + "TargetStructureID": 84203, + "Label": "6117-84203 via Ribbon Synapse from 22389 -> 84204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22389, + "TargetID": 84204, + "Directional": true + }] + }, { + "ID": 11147, + "SourceStructureID": 6117, + "TargetStructureID": 84205, + "Label": "6117-84205 via Ribbon Synapse from 22389 -> 84206", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22389, + "TargetID": 84206, + "Directional": true + }] + }, { + "ID": 11148, + "SourceStructureID": 6117, + "TargetStructureID": 84222, + "Label": "6117-84222 via Ribbon Synapse from 30875 -> 84223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30875, + "TargetID": 84223, + "Directional": true + }] + }, { + "ID": 11149, + "SourceStructureID": 6117, + "TargetStructureID": 84228, + "Label": "6117-84228 via Ribbon Synapse from 30880 -> 84231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30880, + "TargetID": 84231, + "Directional": true + }] + }, { + "ID": 11150, + "SourceStructureID": 6117, + "TargetStructureID": 84229, + "Label": "6117-84229 via Ribbon Synapse from 30880 -> 84230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30880, + "TargetID": 84230, + "Directional": true + }] + }, { + "ID": 11151, + "SourceStructureID": 6117, + "TargetStructureID": 84237, + "Label": "6117-84237 via Ribbon Synapse from 30884 -> 84250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30884, + "TargetID": 84250, + "Directional": true + }] + }, { + "ID": 11152, + "SourceStructureID": 6117, + "TargetStructureID": 84238, + "Label": "6117-84238 via Ribbon Synapse from 30884 -> 84249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30884, + "TargetID": 84249, + "Directional": true + }] + }, { + "ID": 11153, + "SourceStructureID": 6117, + "TargetStructureID": 84256, + "Label": "6117-84256 via Ribbon Synapse from 84213 -> 84257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84213, + "TargetID": 84257, + "Directional": true + }] + }, { + "ID": 11154, + "SourceStructureID": 6117, + "TargetStructureID": 84482, + "Label": "6117-84482 via Ribbon Synapse from 51326 -> 84484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51326, + "TargetID": 84484, + "Directional": true + }] + }, { + "ID": 11155, + "SourceStructureID": 6117, + "TargetStructureID": 84650, + "Label": "6117-84650 via Ribbon Synapse from 84646 -> 84651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84646, + "TargetID": 84651, + "Directional": true + }] + }, { + "ID": 11156, + "SourceStructureID": 6117, + "TargetStructureID": 84652, + "Label": "6117-84652 via Ribbon Synapse from 84646 -> 84653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84646, + "TargetID": 84653, + "Directional": true + }] + }, { + "ID": 11157, + "SourceStructureID": 6117, + "TargetStructureID": 84790, + "Label": "6117-84790 via Ribbon Synapse from 10529 -> 84856, 10539 -> 84932", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10529, + "TargetID": 84856, + "Directional": true + }, { + "SourceID": 10539, + "TargetID": 84932, + "Directional": true + }] + }, { + "ID": 11158, + "SourceStructureID": 6117, + "TargetStructureID": 84858, + "Label": "6117-84858 via Ribbon Synapse from 84859 -> 84860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84859, + "TargetID": 84860, + "Directional": true + }] + }, { + "ID": 11159, + "SourceStructureID": 6117, + "TargetStructureID": 84861, + "Label": "6117-84861 via Ribbon Synapse from 84859 -> 84862", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84859, + "TargetID": 84862, + "Directional": true + }] + }, { + "ID": 11160, + "SourceStructureID": 6117, + "TargetStructureID": 84948, + "Label": "6117-84948 via Ribbon Synapse from 30895 -> 84949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30895, + "TargetID": 84949, + "Directional": true + }] + }, { + "ID": 11161, + "SourceStructureID": 6117, + "TargetStructureID": 84950, + "Label": "6117-84950 via Ribbon Synapse from 30891 -> 84952", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30891, + "TargetID": 84952, + "Directional": true + }] + }, { + "ID": 11162, + "SourceStructureID": 6117, + "TargetStructureID": 84957, + "Label": "6117-84957 via BC Conventional Synapse from 86093 -> 86094", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86093, + "TargetID": 86094, + "Directional": true + }] + }, { + "ID": 11163, + "SourceStructureID": 6117, + "TargetStructureID": 84957, + "Label": "6117-84957 via Ribbon Synapse from 84959 -> 84960", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84959, + "TargetID": 84960, + "Directional": true + }] + }, { + "ID": 11164, + "SourceStructureID": 6117, + "TargetStructureID": 84965, + "Label": "6117-84965 via Ribbon Synapse from 84964 -> 84966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84964, + "TargetID": 84966, + "Directional": true + }] + }, { + "ID": 11165, + "SourceStructureID": 6117, + "TargetStructureID": 85013, + "Label": "6117-85013 via Ribbon Synapse from 85012 -> 85014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85012, + "TargetID": 85014, + "Directional": true + }] + }, { + "ID": 11166, + "SourceStructureID": 6117, + "TargetStructureID": 85015, + "Label": "6117-85015 via Ribbon Synapse from 30899 -> 85283", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30899, + "TargetID": 85283, + "Directional": true + }] + }, { + "ID": 11167, + "SourceStructureID": 6117, + "TargetStructureID": 85235, + "Label": "6117-85235 via Ribbon Synapse from 85223 -> 85238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85223, + "TargetID": 85238, + "Directional": true + }] + }, { + "ID": 11168, + "SourceStructureID": 6117, + "TargetStructureID": 85239, + "Label": "6117-85239 via Ribbon Synapse from 30897 -> 85242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30897, + "TargetID": 85242, + "Directional": true + }] + }, { + "ID": 11169, + "SourceStructureID": 6117, + "TargetStructureID": 85240, + "Label": "6117-85240 via Ribbon Synapse from 30897 -> 85241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30897, + "TargetID": 85241, + "Directional": true + }] + }, { + "ID": 11170, + "SourceStructureID": 6117, + "TargetStructureID": 85279, + "Label": "6117-85279 via Ribbon Synapse from 30899 -> 85282, 85280 -> 85281", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30899, + "TargetID": 85282, + "Directional": true + }, { + "SourceID": 85280, + "TargetID": 85281, + "Directional": true + }] + }, { + "ID": 11171, + "SourceStructureID": 6117, + "TargetStructureID": 85317, + "Label": "6117-85317 via Ribbon Synapse from 54285 -> 85318", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54285, + "TargetID": 85318, + "Directional": true + }] + }, { + "ID": 11172, + "SourceStructureID": 6117, + "TargetStructureID": 85404, + "Label": "6117-85404 via Ribbon Synapse from 85403 -> 85407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85403, + "TargetID": 85407, + "Directional": true + }] + }, { + "ID": 11173, + "SourceStructureID": 6117, + "TargetStructureID": 85405, + "Label": "6117-85405 via Ribbon Synapse from 85403 -> 85406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85403, + "TargetID": 85406, + "Directional": true + }] + }, { + "ID": 11174, + "SourceStructureID": 6117, + "TargetStructureID": 85412, + "Label": "6117-85412 via Ribbon Synapse from 85411 -> 85413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85411, + "TargetID": 85413, + "Directional": true + }] + }, { + "ID": 11175, + "SourceStructureID": 6117, + "TargetStructureID": 85661, + "Label": "6117-85661 via Ribbon Synapse from 58803 -> 85663, 86013 -> 86076, 86074 -> 86079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58803, + "TargetID": 85663, + "Directional": true + }, { + "SourceID": 86013, + "TargetID": 86076, + "Directional": true + }, { + "SourceID": 86074, + "TargetID": 86079, + "Directional": true + }] + }, { + "ID": 11176, + "SourceStructureID": 6117, + "TargetStructureID": 85891, + "Label": "6117-85891 via Ribbon Synapse from 58804 -> 85923, 58806 -> 85894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58804, + "TargetID": 85923, + "Directional": true + }, { + "SourceID": 58806, + "TargetID": 85894, + "Directional": true + }] + }, { + "ID": 11177, + "SourceStructureID": 6117, + "TargetStructureID": 85905, + "Label": "6117-85905 via Ribbon Synapse from 58804 -> 85922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58804, + "TargetID": 85922, + "Directional": true + }] + }, { + "ID": 11178, + "SourceStructureID": 6117, + "TargetStructureID": 85931, + "Label": "6117-85931 via Ribbon Synapse from 58805 -> 85934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58805, + "TargetID": 85934, + "Directional": true + }] + }, { + "ID": 11179, + "SourceStructureID": 6117, + "TargetStructureID": 85932, + "Label": "6117-85932 via Ribbon Synapse from 58805 -> 85933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58805, + "TargetID": 85933, + "Directional": true + }] + }, { + "ID": 11180, + "SourceStructureID": 6117, + "TargetStructureID": 85955, + "Label": "6117-85955 via Ribbon Synapse from 85960 -> 85961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85960, + "TargetID": 85961, + "Directional": true + }] + }, { + "ID": 11181, + "SourceStructureID": 6117, + "TargetStructureID": 85964, + "Label": "6117-85964 via Ribbon Synapse from 58808 -> 85967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58808, + "TargetID": 85967, + "Directional": true + }] + }, { + "ID": 11182, + "SourceStructureID": 6117, + "TargetStructureID": 85965, + "Label": "6117-85965 via Ribbon Synapse from 58808 -> 85966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58808, + "TargetID": 85966, + "Directional": true + }] + }, { + "ID": 11183, + "SourceStructureID": 6117, + "TargetStructureID": 86004, + "Label": "6117-86004 via Ribbon Synapse from 85999 -> 86005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85999, + "TargetID": 86005, + "Directional": true + }] + }, { + "ID": 11184, + "SourceStructureID": 6117, + "TargetStructureID": 86010, + "Label": "6117-86010 via Ribbon Synapse from 10528 -> 86011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10528, + "TargetID": 86011, + "Directional": true + }] + }, { + "ID": 11185, + "SourceStructureID": 6117, + "TargetStructureID": 86017, + "Label": "6117-86017 via Ribbon Synapse from 86016 -> 86018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86016, + "TargetID": 86018, + "Directional": true + }] + }, { + "ID": 11186, + "SourceStructureID": 6117, + "TargetStructureID": 86042, + "Label": "6117-86042 via Ribbon Synapse from 10534 -> 86043", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10534, + "TargetID": 86043, + "Directional": true + }] + }, { + "ID": 11187, + "SourceStructureID": 6117, + "TargetStructureID": 86070, + "Label": "6117-86070 via Ribbon Synapse from 59085 -> 86071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59085, + "TargetID": 86071, + "Directional": true + }] + }, { + "ID": 11188, + "SourceStructureID": 6117, + "TargetStructureID": 86072, + "Label": "6117-86072 via Ribbon Synapse from 59085 -> 86073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59085, + "TargetID": 86073, + "Directional": true + }] + }, { + "ID": 11189, + "SourceStructureID": 6117, + "TargetStructureID": 86077, + "Label": "6117-86077 via Ribbon Synapse from 86074 -> 86078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86074, + "TargetID": 86078, + "Directional": true + }] + }, { + "ID": 11190, + "SourceStructureID": 6117, + "TargetStructureID": 86110, + "Label": "6117-86110 via Ribbon Synapse from 20573 -> 86143, 58731 -> 86111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20573, + "TargetID": 86143, + "Directional": true + }, { + "SourceID": 58731, + "TargetID": 86111, + "Directional": true + }] + }, { + "ID": 11191, + "SourceStructureID": 6117, + "TargetStructureID": 86114, + "Label": "6117-86114 via Ribbon Synapse from 86113 -> 86117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86113, + "TargetID": 86117, + "Directional": true + }] + }, { + "ID": 11192, + "SourceStructureID": 6117, + "TargetStructureID": 86145, + "Label": "6117-86145 via Ribbon Synapse from 86127 -> 86146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86127, + "TargetID": 86146, + "Directional": true + }] + }, { + "ID": 11193, + "SourceStructureID": 6117, + "TargetStructureID": 86147, + "Label": "6117-86147 via Ribbon Synapse from 86127 -> 86148", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86127, + "TargetID": 86148, + "Directional": true + }] + }, { + "ID": 11194, + "SourceStructureID": 6117, + "TargetStructureID": 86149, + "Label": "6117-86149 via Ribbon Synapse from 86127 -> 86150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86127, + "TargetID": 86150, + "Directional": true + }] + }, { + "ID": 11195, + "SourceStructureID": 6117, + "TargetStructureID": 86165, + "Label": "6117-86165 via Ribbon Synapse from 86186 -> 86189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86186, + "TargetID": 86189, + "Directional": true + }] + }, { + "ID": 11196, + "SourceStructureID": 6117, + "TargetStructureID": 86178, + "Label": "6117-86178 via Ribbon Synapse from 20577 -> 86180", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20577, + "TargetID": 86180, + "Directional": true + }] + }, { + "ID": 11197, + "SourceStructureID": 6117, + "TargetStructureID": 86182, + "Label": "6117-86182 via Ribbon Synapse from 20576 -> 86183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20576, + "TargetID": 86183, + "Directional": true + }] + }, { + "ID": 11198, + "SourceStructureID": 6117, + "TargetStructureID": 86192, + "Label": "6117-86192 via Ribbon Synapse from 20581 -> 86197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20581, + "TargetID": 86197, + "Directional": true + }] + }, { + "ID": 11199, + "SourceStructureID": 6117, + "TargetStructureID": 86198, + "Label": "6117-86198 via Ribbon Synapse from 20581 -> 86199", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20581, + "TargetID": 86199, + "Directional": true + }] + }, { + "ID": 11200, + "SourceStructureID": 6117, + "TargetStructureID": 86201, + "Label": "6117-86201 via Ribbon Synapse from 20579 -> 86203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20579, + "TargetID": 86203, + "Directional": true + }] + }, { + "ID": 11201, + "SourceStructureID": 6117, + "TargetStructureID": 86209, + "Label": "6117-86209 via Ribbon Synapse from 20583 -> 86213", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20583, + "TargetID": 86213, + "Directional": true + }] + }, { + "ID": 11202, + "SourceStructureID": 6117, + "TargetStructureID": 86210, + "Label": "6117-86210 via Ribbon Synapse from 20583 -> 86214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20583, + "TargetID": 86214, + "Directional": true + }] + }, { + "ID": 11203, + "SourceStructureID": 6117, + "TargetStructureID": 86211, + "Label": "6117-86211 via Ribbon Synapse from 20583 -> 86212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20583, + "TargetID": 86212, + "Directional": true + }] + }, { + "ID": 11204, + "SourceStructureID": 6117, + "TargetStructureID": 86215, + "Label": "6117-86215 via Ribbon Synapse from 20582 -> 86216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20582, + "TargetID": 86216, + "Directional": true + }] + }, { + "ID": 11205, + "SourceStructureID": 6117, + "TargetStructureID": 86237, + "Label": "6117-86237 via Ribbon Synapse from 20585 -> 86238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20585, + "TargetID": 86238, + "Directional": true + }] + }, { + "ID": 11206, + "SourceStructureID": 6117, + "TargetStructureID": 86246, + "Label": "6117-86246 via BC Conventional Synapse from 86248 -> 86249", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86248, + "TargetID": 86249, + "Directional": true + }] + }, { + "ID": 11207, + "SourceStructureID": 6117, + "TargetStructureID": 86246, + "Label": "6117-86246 via Ribbon Synapse from 20589 -> 86250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20589, + "TargetID": 86250, + "Directional": true + }] + }, { + "ID": 11208, + "SourceStructureID": 6117, + "TargetStructureID": 86254, + "Label": "6117-86254 via Ribbon Synapse from 86253 -> 86255", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86253, + "TargetID": 86255, + "Directional": true + }] + }, { + "ID": 11209, + "SourceStructureID": 6117, + "TargetStructureID": 86268, + "Label": "6117-86268 via Ribbon Synapse from 30933 -> 86269", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30933, + "TargetID": 86269, + "Directional": true + }] + }, { + "ID": 11210, + "SourceStructureID": 6117, + "TargetStructureID": 86272, + "Label": "6117-86272 via Ribbon Synapse from 30931 -> 86273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30931, + "TargetID": 86273, + "Directional": true + }] + }, { + "ID": 11211, + "SourceStructureID": 6117, + "TargetStructureID": 86274, + "Label": "6117-86274 via Ribbon Synapse from 30932 -> 86275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30932, + "TargetID": 86275, + "Directional": true + }] + }, { + "ID": 11212, + "SourceStructureID": 6117, + "TargetStructureID": 86282, + "Label": "6117-86282 via BC Conventional Synapse from 86284 -> 86283, 86290 -> 86291", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86284, + "TargetID": 86283, + "Directional": true + }, { + "SourceID": 86290, + "TargetID": 86291, + "Directional": true + }] + }, { + "ID": 11213, + "SourceStructureID": 6117, + "TargetStructureID": 86330, + "Label": "6117-86330 via Ribbon Synapse from 86336 -> 86333", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86336, + "TargetID": 86333, + "Directional": true + }] + }, { + "ID": 11214, + "SourceStructureID": 6117, + "TargetStructureID": 86334, + "Label": "6117-86334 via Ribbon Synapse from 86336 -> 86337", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86336, + "TargetID": 86337, + "Directional": true + }] + }, { + "ID": 11215, + "SourceStructureID": 6117, + "TargetStructureID": 86345, + "Label": "6117-86345 via Postsynapse from 86344 -> 86346", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 86344, + "TargetID": 86346, + "Directional": true + }] + }, { + "ID": 11216, + "SourceStructureID": 6117, + "TargetStructureID": 86356, + "Label": "6117-86356 via Ribbon Synapse from 30902 -> 86357", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30902, + "TargetID": 86357, + "Directional": true + }] + }, { + "ID": 11217, + "SourceStructureID": 6117, + "TargetStructureID": 86366, + "Label": "6117-86366 via Ribbon Synapse from 30907 -> 86406, 86365 -> 86367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30907, + "TargetID": 86406, + "Directional": true + }, { + "SourceID": 86365, + "TargetID": 86367, + "Directional": true + }] + }, { + "ID": 11218, + "SourceStructureID": 6117, + "TargetStructureID": 86383, + "Label": "6117-86383 via Ribbon Synapse from 30930 -> 86384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30930, + "TargetID": 86384, + "Directional": true + }] + }, { + "ID": 11219, + "SourceStructureID": 6117, + "TargetStructureID": 86385, + "Label": "6117-86385 via Ribbon Synapse from 30930 -> 86386", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30930, + "TargetID": 86386, + "Directional": true + }] + }, { + "ID": 11220, + "SourceStructureID": 6117, + "TargetStructureID": 86391, + "Label": "6117-86391 via Ribbon Synapse from 30906 -> 86394", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30906, + "TargetID": 86394, + "Directional": true + }] + }, { + "ID": 11221, + "SourceStructureID": 6117, + "TargetStructureID": 86395, + "Label": "6117-86395 via Ribbon Synapse from 30906 -> 86396", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30906, + "TargetID": 86396, + "Directional": true + }] + }, { + "ID": 11222, + "SourceStructureID": 6117, + "TargetStructureID": 86397, + "Label": "6117-86397 via Ribbon Synapse from 86400 -> 86401", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86400, + "TargetID": 86401, + "Directional": true + }] + }, { + "ID": 11223, + "SourceStructureID": 6117, + "TargetStructureID": 86402, + "Label": "6117-86402 via Ribbon Synapse from 86400 -> 86403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86400, + "TargetID": 86403, + "Directional": true + }] + }, { + "ID": 11224, + "SourceStructureID": 6117, + "TargetStructureID": 86412, + "Label": "6117-86412 via Ribbon Synapse from 30910 -> 86413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30910, + "TargetID": 86413, + "Directional": true + }] + }, { + "ID": 11225, + "SourceStructureID": 6117, + "TargetStructureID": 86418, + "Label": "6117-86418 via Ribbon Synapse from 30911 -> 86419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30911, + "TargetID": 86419, + "Directional": true + }] + }, { + "ID": 11226, + "SourceStructureID": 6117, + "TargetStructureID": 86422, + "Label": "6117-86422 via Ribbon Synapse from 30913 -> 86423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30913, + "TargetID": 86423, + "Directional": true + }] + }, { + "ID": 11227, + "SourceStructureID": 6117, + "TargetStructureID": 86435, + "Label": "6117-86435 via Ribbon Synapse from 30914 -> 86436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30914, + "TargetID": 86436, + "Directional": true + }] + }, { + "ID": 11228, + "SourceStructureID": 6117, + "TargetStructureID": 86444, + "Label": "6117-86444 via Ribbon Synapse from 86443 -> 86446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86443, + "TargetID": 86446, + "Directional": true + }] + }, { + "ID": 11229, + "SourceStructureID": 6117, + "TargetStructureID": 86449, + "Label": "6117-86449 via Ribbon Synapse from 86443 -> 86452", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86443, + "TargetID": 86452, + "Directional": true + }] + }, { + "ID": 11230, + "SourceStructureID": 6117, + "TargetStructureID": 86462, + "Label": "6117-86462 via Ribbon Synapse from 30929 -> 86463", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30929, + "TargetID": 86463, + "Directional": true + }] + }, { + "ID": 11231, + "SourceStructureID": 6117, + "TargetStructureID": 86464, + "Label": "6117-86464 via Ribbon Synapse from 30929 -> 86465", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30929, + "TargetID": 86465, + "Directional": true + }] + }, { + "ID": 11232, + "SourceStructureID": 6117, + "TargetStructureID": 86466, + "Label": "6117-86466 via Ribbon Synapse from 30929 -> 86467", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30929, + "TargetID": 86467, + "Directional": true + }] + }, { + "ID": 11233, + "SourceStructureID": 6117, + "TargetStructureID": 86479, + "Label": "6117-86479 via Ribbon Synapse from 30916 -> 86480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30916, + "TargetID": 86480, + "Directional": true + }] + }, { + "ID": 11234, + "SourceStructureID": 6117, + "TargetStructureID": 86502, + "Label": "6117-86502 via Ribbon Synapse from 30917 -> 86503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30917, + "TargetID": 86503, + "Directional": true + }] + }, { + "ID": 11235, + "SourceStructureID": 6117, + "TargetStructureID": 86516, + "Label": "6117-86516 via Ribbon Synapse from 30928 -> 86517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30928, + "TargetID": 86517, + "Directional": true + }] + }, { + "ID": 11236, + "SourceStructureID": 6117, + "TargetStructureID": 86518, + "Label": "6117-86518 via Ribbon Synapse from 30928 -> 86519", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30928, + "TargetID": 86519, + "Directional": true + }] + }, { + "ID": 11237, + "SourceStructureID": 6117, + "TargetStructureID": 86565, + "Label": "6117-86565 via Ribbon Synapse from 86090 -> 86566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 86090, + "TargetID": 86566, + "Directional": true + }] + }, { + "ID": 11238, + "SourceStructureID": 6117, + "TargetStructureID": 86607, + "Label": "6117-86607 via Ribbon Synapse from 30922 -> 86618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30922, + "TargetID": 86618, + "Directional": true + }] + }, { + "ID": 11239, + "SourceStructureID": 6118, + "TargetStructureID": 5107, + "Label": "6118-5107 via Ribbon Synapse from 120673 -> 120671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120673, + "TargetID": 120671, + "Directional": true + }] + }, { + "ID": 11240, + "SourceStructureID": 6118, + "TargetStructureID": 65020, + "Label": "6118-65020 via Ribbon Synapse from 65026 -> 65022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65026, + "TargetID": 65022, + "Directional": true + }] + }, { + "ID": 11241, + "SourceStructureID": 6118, + "TargetStructureID": 65023, + "Label": "6118-65023 via Ribbon Synapse from 65033 -> 65034", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65033, + "TargetID": 65034, + "Directional": true + }] + }, { + "ID": 11242, + "SourceStructureID": 6118, + "TargetStructureID": 65035, + "Label": "6118-65035 via Ribbon Synapse from 65033 -> 65036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65033, + "TargetID": 65036, + "Directional": true + }] + }, { + "ID": 11243, + "SourceStructureID": 6118, + "TargetStructureID": 65047, + "Label": "6118-65047 via Ribbon Synapse from 65026 -> 65048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65026, + "TargetID": 65048, + "Directional": true + }] + }, { + "ID": 11244, + "SourceStructureID": 6118, + "TargetStructureID": 136700, + "Label": "6118-136700 via BC Conventional Synapse from 136699 -> 136701", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136699, + "TargetID": 136701, + "Directional": true + }] + }, { + "ID": 11245, + "SourceStructureID": 6120, + "TargetStructureID": 598, + "Label": "6120-598 via Ribbon Synapse from 61176 -> 111236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61176, + "TargetID": 111236, + "Directional": true + }] + }, { + "ID": 11246, + "SourceStructureID": 6120, + "TargetStructureID": 606, + "Label": "6120-606 via Ribbon Synapse from 51491 -> 51492, 51495 -> 51496, 51500 -> 51502, 51505 -> 51504, 51519 -> 50969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51491, + "TargetID": 51492, + "Directional": true + }, { + "SourceID": 51495, + "TargetID": 51496, + "Directional": true + }, { + "SourceID": 51500, + "TargetID": 51502, + "Directional": true + }, { + "SourceID": 51505, + "TargetID": 51504, + "Directional": true + }, { + "SourceID": 51519, + "TargetID": 50969, + "Directional": true + }] + }, { + "ID": 11247, + "SourceStructureID": 6120, + "TargetStructureID": 5107, + "Label": "6120-5107 via Ribbon Synapse from 111678 -> 111682", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111678, + "TargetID": 111682, + "Directional": true + }] + }, { + "ID": 11248, + "SourceStructureID": 6120, + "TargetStructureID": 7594, + "Label": "6120-7594 via Ribbon Synapse from 111246 -> 25084, 111669 -> 111675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111246, + "TargetID": 25084, + "Directional": true + }, { + "SourceID": 111669, + "TargetID": 111675, + "Directional": true + }] + }, { + "ID": 11249, + "SourceStructureID": 6120, + "TargetStructureID": 9769, + "Label": "6120-9769 via Ribbon Synapse from 30179 -> 30167, 51519 -> 30166, 61191 -> 111484", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30179, + "TargetID": 30167, + "Directional": true + }, { + "SourceID": 51519, + "TargetID": 30166, + "Directional": true + }, { + "SourceID": 61191, + "TargetID": 111484, + "Directional": true + }] + }, { + "ID": 11250, + "SourceStructureID": 6120, + "TargetStructureID": 16073, + "Label": "6120-16073 via Ribbon Synapse from 61177 -> 111254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61177, + "TargetID": 111254, + "Directional": true + }] + }, { + "ID": 11251, + "SourceStructureID": 6120, + "TargetStructureID": 31334, + "Label": "6120-31334 via Ribbon Synapse from 98734 -> 98733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98734, + "TargetID": 98733, + "Directional": true + }] + }, { + "ID": 11252, + "SourceStructureID": 6120, + "TargetStructureID": 32477, + "Label": "6120-32477 via Ribbon Synapse from 32506 -> 32504, 101195 -> 101197", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32506, + "TargetID": 32504, + "Directional": true + }, { + "SourceID": 101195, + "TargetID": 101197, + "Directional": true + }] + }, { + "ID": 11253, + "SourceStructureID": 6120, + "TargetStructureID": 35367, + "Label": "6120-35367 via Ribbon Synapse from 51500 -> 110754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51500, + "TargetID": 110754, + "Directional": true + }] + }, { + "ID": 11254, + "SourceStructureID": 6120, + "TargetStructureID": 52410, + "Label": "6120-52410 via Ribbon Synapse from 37240 -> 52416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37240, + "TargetID": 52416, + "Directional": true + }] + }, { + "ID": 11255, + "SourceStructureID": 6120, + "TargetStructureID": 60491, + "Label": "6120-60491 via Ribbon Synapse from 60489 -> 60493", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60489, + "TargetID": 60493, + "Directional": true + }] + }, { + "ID": 11256, + "SourceStructureID": 6120, + "TargetStructureID": 60494, + "Label": "6120-60494 via Ribbon Synapse from 32506 -> 60495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32506, + "TargetID": 60495, + "Directional": true + }] + }, { + "ID": 11257, + "SourceStructureID": 6120, + "TargetStructureID": 64923, + "Label": "6120-64923 via Ribbon Synapse from 64929 -> 64928", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64929, + "TargetID": 64928, + "Directional": true + }] + }, { + "ID": 11258, + "SourceStructureID": 6120, + "TargetStructureID": 68539, + "Label": "6120-68539 via BC Conventional Synapse from 111725 -> 111726", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111725, + "TargetID": 111726, + "Directional": true + }] + }, { + "ID": 11259, + "SourceStructureID": 6120, + "TargetStructureID": 68539, + "Label": "6120-68539 via Ribbon Synapse from 110765 -> 69140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110765, + "TargetID": 69140, + "Directional": true + }] + }, { + "ID": 11260, + "SourceStructureID": 6120, + "TargetStructureID": 87428, + "Label": "6120-87428 via Ribbon Synapse from 111408 -> 111409", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111408, + "TargetID": 111409, + "Directional": true + }] + }, { + "ID": 11261, + "SourceStructureID": 6120, + "TargetStructureID": 89124, + "Label": "6120-89124 via Ribbon Synapse from 110549 -> 89342", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110549, + "TargetID": 89342, + "Directional": true + }] + }, { + "ID": 11262, + "SourceStructureID": 6120, + "TargetStructureID": 101184, + "Label": "6120-101184 via Ribbon Synapse from 51519 -> 111488", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51519, + "TargetID": 111488, + "Directional": true + }] + }, { + "ID": 11263, + "SourceStructureID": 6120, + "TargetStructureID": 110493, + "Label": "6120-110493 via Cistern Pre from 37229 -> 110495", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 37229, + "TargetID": 110495, + "Directional": true + }] + }, { + "ID": 11264, + "SourceStructureID": 6120, + "TargetStructureID": 110499, + "Label": "6120-110499 via BC Conventional Synapse from 37234 -> 110500", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37234, + "TargetID": 110500, + "Directional": true + }] + }, { + "ID": 11265, + "SourceStructureID": 6120, + "TargetStructureID": 110501, + "Label": "6120-110501 via Ribbon Synapse from 37235 -> 110502", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37235, + "TargetID": 110502, + "Directional": true + }] + }, { + "ID": 11266, + "SourceStructureID": 6120, + "TargetStructureID": 110503, + "Label": "6120-110503 via Ribbon Synapse from 37237 -> 110504", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37237, + "TargetID": 110504, + "Directional": true + }] + }, { + "ID": 11267, + "SourceStructureID": 6120, + "TargetStructureID": 110506, + "Label": "6120-110506 via Ribbon Synapse from 37237 -> 110507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37237, + "TargetID": 110507, + "Directional": true + }] + }, { + "ID": 11268, + "SourceStructureID": 6120, + "TargetStructureID": 110510, + "Label": "6120-110510 via BC Conventional Synapse from 110508 -> 110511", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110508, + "TargetID": 110511, + "Directional": true + }] + }, { + "ID": 11269, + "SourceStructureID": 6120, + "TargetStructureID": 110512, + "Label": "6120-110512 via Ribbon Synapse from 37238 -> 110513", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37238, + "TargetID": 110513, + "Directional": true + }] + }, { + "ID": 11270, + "SourceStructureID": 6120, + "TargetStructureID": 110516, + "Label": "6120-110516 via Ribbon Synapse from 37240 -> 110517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37240, + "TargetID": 110517, + "Directional": true + }] + }, { + "ID": 11271, + "SourceStructureID": 6120, + "TargetStructureID": 110547, + "Label": "6120-110547 via Ribbon Synapse from 110546 -> 110548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110546, + "TargetID": 110548, + "Directional": true + }] + }, { + "ID": 11272, + "SourceStructureID": 6120, + "TargetStructureID": 110557, + "Label": "6120-110557 via Ribbon Synapse from 110549 -> 110558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110549, + "TargetID": 110558, + "Directional": true + }] + }, { + "ID": 11273, + "SourceStructureID": 6120, + "TargetStructureID": 110567, + "Label": "6120-110567 via Ribbon Synapse from 37245 -> 110569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37245, + "TargetID": 110569, + "Directional": true + }] + }, { + "ID": 11274, + "SourceStructureID": 6120, + "TargetStructureID": 110570, + "Label": "6120-110570 via Ribbon Synapse from 37244 -> 110571", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37244, + "TargetID": 110571, + "Directional": true + }] + }, { + "ID": 11275, + "SourceStructureID": 6120, + "TargetStructureID": 110583, + "Label": "6120-110583 via Ribbon Synapse from 37248 -> 110585", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37248, + "TargetID": 110585, + "Directional": true + }] + }, { + "ID": 11276, + "SourceStructureID": 6120, + "TargetStructureID": 110586, + "Label": "6120-110586 via Ribbon Synapse from 37248 -> 110587", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37248, + "TargetID": 110587, + "Directional": true + }] + }, { + "ID": 11277, + "SourceStructureID": 6120, + "TargetStructureID": 110595, + "Label": "6120-110595 via Ribbon Synapse from 37250 -> 110596", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37250, + "TargetID": 110596, + "Directional": true + }] + }, { + "ID": 11278, + "SourceStructureID": 6120, + "TargetStructureID": 110607, + "Label": "6120-110607 via BC Conventional Synapse from 110577 -> 110576", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110577, + "TargetID": 110576, + "Directional": true + }] + }, { + "ID": 11279, + "SourceStructureID": 6120, + "TargetStructureID": 110610, + "Label": "6120-110610 via Ribbon Synapse from 110612 -> 110613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110612, + "TargetID": 110613, + "Directional": true + }] + }, { + "ID": 11280, + "SourceStructureID": 6120, + "TargetStructureID": 110614, + "Label": "6120-110614 via Ribbon Synapse from 110612 -> 110615", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110612, + "TargetID": 110615, + "Directional": true + }] + }, { + "ID": 11281, + "SourceStructureID": 6120, + "TargetStructureID": 110622, + "Label": "6120-110622 via Ribbon Synapse from 110632 -> 110634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110632, + "TargetID": 110634, + "Directional": true + }] + }, { + "ID": 11282, + "SourceStructureID": 6120, + "TargetStructureID": 110623, + "Label": "6120-110623 via Ribbon Synapse from 110632 -> 110633", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110632, + "TargetID": 110633, + "Directional": true + }] + }, { + "ID": 11283, + "SourceStructureID": 6120, + "TargetStructureID": 110641, + "Label": "6120-110641 via Ribbon Synapse from 110639 -> 110642", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110639, + "TargetID": 110642, + "Directional": true + }] + }, { + "ID": 11284, + "SourceStructureID": 6120, + "TargetStructureID": 110644, + "Label": "6120-110644 via Ribbon Synapse from 110635 -> 110645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110635, + "TargetID": 110645, + "Directional": true + }] + }, { + "ID": 11285, + "SourceStructureID": 6120, + "TargetStructureID": 110731, + "Label": "6120-110731 via Ribbon Synapse from 61163 -> 110732, 61164 -> 110733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61163, + "TargetID": 110732, + "Directional": true + }, { + "SourceID": 61164, + "TargetID": 110733, + "Directional": true + }] + }, { + "ID": 11286, + "SourceStructureID": 6120, + "TargetStructureID": 110734, + "Label": "6120-110734 via Ribbon Synapse from 61164 -> 110777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61164, + "TargetID": 110777, + "Directional": true + }] + }, { + "ID": 11287, + "SourceStructureID": 6120, + "TargetStructureID": 110738, + "Label": "6120-110738 via Ribbon Synapse from 61163 -> 110739", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61163, + "TargetID": 110739, + "Directional": true + }] + }, { + "ID": 11288, + "SourceStructureID": 6120, + "TargetStructureID": 110747, + "Label": "6120-110747 via BC Conventional Synapse from 110746 -> 110748", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110746, + "TargetID": 110748, + "Directional": true + }] + }, { + "ID": 11289, + "SourceStructureID": 6120, + "TargetStructureID": 110758, + "Label": "6120-110758 via BC Conventional Synapse from 110757 -> 110759", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110757, + "TargetID": 110759, + "Directional": true + }] + }, { + "ID": 11290, + "SourceStructureID": 6120, + "TargetStructureID": 110760, + "Label": "6120-110760 via Ribbon Synapse from 51501 -> 110761", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51501, + "TargetID": 110761, + "Directional": true + }] + }, { + "ID": 11291, + "SourceStructureID": 6120, + "TargetStructureID": 110762, + "Label": "6120-110762 via Ribbon Synapse from 51501 -> 110781", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51501, + "TargetID": 110781, + "Directional": true + }] + }, { + "ID": 11292, + "SourceStructureID": 6120, + "TargetStructureID": 110763, + "Label": "6120-110763 via Ribbon Synapse from 61163 -> 110764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61163, + "TargetID": 110764, + "Directional": true + }] + }, { + "ID": 11293, + "SourceStructureID": 6120, + "TargetStructureID": 110793, + "Label": "6120-110793 via Ribbon Synapse from 110789 -> 110795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110789, + "TargetID": 110795, + "Directional": true + }] + }, { + "ID": 11294, + "SourceStructureID": 6120, + "TargetStructureID": 110798, + "Label": "6120-110798 via Ribbon Synapse from 61160 -> 110799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61160, + "TargetID": 110799, + "Directional": true + }] + }, { + "ID": 11295, + "SourceStructureID": 6120, + "TargetStructureID": 110812, + "Label": "6120-110812 via BC Conventional Synapse from 110811 -> 110813", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110811, + "TargetID": 110813, + "Directional": true + }] + }, { + "ID": 11296, + "SourceStructureID": 6120, + "TargetStructureID": 110814, + "Label": "6120-110814 via Ribbon Synapse from 61156 -> 110815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61156, + "TargetID": 110815, + "Directional": true + }] + }, { + "ID": 11297, + "SourceStructureID": 6120, + "TargetStructureID": 110816, + "Label": "6120-110816 via BC Conventional Synapse from 110855 -> 110858", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110855, + "TargetID": 110858, + "Directional": true + }] + }, { + "ID": 11298, + "SourceStructureID": 6120, + "TargetStructureID": 110816, + "Label": "6120-110816 via Ribbon Synapse from 61156 -> 110817", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61156, + "TargetID": 110817, + "Directional": true + }] + }, { + "ID": 11299, + "SourceStructureID": 6120, + "TargetStructureID": 110835, + "Label": "6120-110835 via Ribbon Synapse from 110827 -> 110836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110827, + "TargetID": 110836, + "Directional": true + }] + }, { + "ID": 11300, + "SourceStructureID": 6120, + "TargetStructureID": 110860, + "Label": "6120-110860 via Ribbon Synapse from 51491 -> 110863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51491, + "TargetID": 110863, + "Directional": true + }] + }, { + "ID": 11301, + "SourceStructureID": 6120, + "TargetStructureID": 110869, + "Label": "6120-110869 via Ribbon Synapse from 61145 -> 110870", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61145, + "TargetID": 110870, + "Directional": true + }] + }, { + "ID": 11302, + "SourceStructureID": 6120, + "TargetStructureID": 110875, + "Label": "6120-110875 via BC Conventional Synapse from 110991 -> 110993", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110991, + "TargetID": 110993, + "Directional": true + }] + }, { + "ID": 11303, + "SourceStructureID": 6120, + "TargetStructureID": 110997, + "Label": "6120-110997 via Ribbon Synapse from 61146 -> 110998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61146, + "TargetID": 110998, + "Directional": true + }] + }, { + "ID": 11304, + "SourceStructureID": 6120, + "TargetStructureID": 110999, + "Label": "6120-110999 via Ribbon Synapse from 61146 -> 111000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61146, + "TargetID": 111000, + "Directional": true + }] + }, { + "ID": 11305, + "SourceStructureID": 6120, + "TargetStructureID": 111012, + "Label": "6120-111012 via BC Conventional Synapse from 111011 -> 111013", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111011, + "TargetID": 111013, + "Directional": true + }] + }, { + "ID": 11306, + "SourceStructureID": 6120, + "TargetStructureID": 111026, + "Label": "6120-111026 via Ribbon Synapse from 61148 -> 111028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61148, + "TargetID": 111028, + "Directional": true + }] + }, { + "ID": 11307, + "SourceStructureID": 6120, + "TargetStructureID": 111029, + "Label": "6120-111029 via Ribbon Synapse from 61148 -> 111030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61148, + "TargetID": 111030, + "Directional": true + }] + }, { + "ID": 11308, + "SourceStructureID": 6120, + "TargetStructureID": 111033, + "Label": "6120-111033 via Ribbon Synapse from 61128 -> 111034", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61128, + "TargetID": 111034, + "Directional": true + }] + }, { + "ID": 11309, + "SourceStructureID": 6120, + "TargetStructureID": 111035, + "Label": "6120-111035 via Ribbon Synapse from 61128 -> 111036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61128, + "TargetID": 111036, + "Directional": true + }] + }, { + "ID": 11310, + "SourceStructureID": 6120, + "TargetStructureID": 111044, + "Label": "6120-111044 via Ribbon Synapse from 61128 -> 111045", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61128, + "TargetID": 111045, + "Directional": true + }] + }, { + "ID": 11311, + "SourceStructureID": 6120, + "TargetStructureID": 111092, + "Label": "6120-111092 via BC Conventional Synapse from 111091 -> 111093", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111091, + "TargetID": 111093, + "Directional": true + }] + }, { + "ID": 11312, + "SourceStructureID": 6120, + "TargetStructureID": 111110, + "Label": "6120-111110 via Ribbon Synapse from 61143 -> 111120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61143, + "TargetID": 111120, + "Directional": true + }] + }, { + "ID": 11313, + "SourceStructureID": 6120, + "TargetStructureID": 111111, + "Label": "6120-111111 via BC Conventional Synapse from 111113 -> 111114", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111113, + "TargetID": 111114, + "Directional": true + }] + }, { + "ID": 11314, + "SourceStructureID": 6120, + "TargetStructureID": 111111, + "Label": "6120-111111 via Ribbon Synapse from 61143 -> 111115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61143, + "TargetID": 111115, + "Directional": true + }] + }, { + "ID": 11315, + "SourceStructureID": 6120, + "TargetStructureID": 111117, + "Label": "6120-111117 via BC Conventional Synapse from 111116 -> 111119", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111116, + "TargetID": 111119, + "Directional": true + }] + }, { + "ID": 11316, + "SourceStructureID": 6120, + "TargetStructureID": 111126, + "Label": "6120-111126 via Ribbon Synapse from 111125 -> 111127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111125, + "TargetID": 111127, + "Directional": true + }] + }, { + "ID": 11317, + "SourceStructureID": 6120, + "TargetStructureID": 111135, + "Label": "6120-111135 via Ribbon Synapse from 61176 -> 111136, 111141 -> 111250, 111246 -> 111245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61176, + "TargetID": 111136, + "Directional": true + }, { + "SourceID": 111141, + "TargetID": 111250, + "Directional": true + }, { + "SourceID": 111246, + "TargetID": 111245, + "Directional": true + }] + }, { + "ID": 11318, + "SourceStructureID": 6120, + "TargetStructureID": 111139, + "Label": "6120-111139 via Ribbon Synapse from 111137 -> 111140", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111137, + "TargetID": 111140, + "Directional": true + }] + }, { + "ID": 11319, + "SourceStructureID": 6120, + "TargetStructureID": 111216, + "Label": "6120-111216 via Ribbon Synapse from 61180 -> 111217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61180, + "TargetID": 111217, + "Directional": true + }] + }, { + "ID": 11320, + "SourceStructureID": 6120, + "TargetStructureID": 111221, + "Label": "6120-111221 via Ribbon Synapse from 61180 -> 111222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61180, + "TargetID": 111222, + "Directional": true + }] + }, { + "ID": 11321, + "SourceStructureID": 6120, + "TargetStructureID": 111231, + "Label": "6120-111231 via Ribbon Synapse from 57389 -> 111285", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57389, + "TargetID": 111285, + "Directional": true + }] + }, { + "ID": 11322, + "SourceStructureID": 6120, + "TargetStructureID": 111235, + "Label": "6120-111235 via Ribbon Synapse from 61176 -> 111237", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61176, + "TargetID": 111237, + "Directional": true + }] + }, { + "ID": 11323, + "SourceStructureID": 6120, + "TargetStructureID": 111238, + "Label": "6120-111238 via Ribbon Synapse from 111141 -> 111239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111141, + "TargetID": 111239, + "Directional": true + }] + }, { + "ID": 11324, + "SourceStructureID": 6120, + "TargetStructureID": 111251, + "Label": "6120-111251 via Ribbon Synapse from 61177 -> 111252", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61177, + "TargetID": 111252, + "Directional": true + }] + }, { + "ID": 11325, + "SourceStructureID": 6120, + "TargetStructureID": 111260, + "Label": "6120-111260 via Ribbon Synapse from 111258 -> 111262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111258, + "TargetID": 111262, + "Directional": true + }] + }, { + "ID": 11326, + "SourceStructureID": 6120, + "TargetStructureID": 111269, + "Label": "6120-111269 via Ribbon Synapse from 57383 -> 111274, 111353 -> 111355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57383, + "TargetID": 111274, + "Directional": true + }, { + "SourceID": 111353, + "TargetID": 111355, + "Directional": true + }] + }, { + "ID": 11327, + "SourceStructureID": 6120, + "TargetStructureID": 111286, + "Label": "6120-111286 via Ribbon Synapse from 57389 -> 111287", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57389, + "TargetID": 111287, + "Directional": true + }] + }, { + "ID": 11328, + "SourceStructureID": 6120, + "TargetStructureID": 111292, + "Label": "6120-111292 via BC Conventional Synapse from 111291 -> 111293", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111291, + "TargetID": 111293, + "Directional": true + }] + }, { + "ID": 11329, + "SourceStructureID": 6120, + "TargetStructureID": 111351, + "Label": "6120-111351 via BC Conventional Synapse from 111350 -> 111352", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111350, + "TargetID": 111352, + "Directional": true + }] + }, { + "ID": 11330, + "SourceStructureID": 6120, + "TargetStructureID": 111356, + "Label": "6120-111356 via Ribbon Synapse from 111353 -> 111359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111353, + "TargetID": 111359, + "Directional": true + }] + }, { + "ID": 11331, + "SourceStructureID": 6120, + "TargetStructureID": 111377, + "Label": "6120-111377 via BC Conventional Synapse from 111376 -> 111378", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111376, + "TargetID": 111378, + "Directional": true + }] + }, { + "ID": 11332, + "SourceStructureID": 6120, + "TargetStructureID": 111399, + "Label": "6120-111399 via BC Conventional Synapse from 111398 -> 111400", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111398, + "TargetID": 111400, + "Directional": true + }] + }, { + "ID": 11333, + "SourceStructureID": 6120, + "TargetStructureID": 111485, + "Label": "6120-111485 via Ribbon Synapse from 61191 -> 111489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61191, + "TargetID": 111489, + "Directional": true + }] + }, { + "ID": 11334, + "SourceStructureID": 6120, + "TargetStructureID": 111503, + "Label": "6120-111503 via BC Conventional Synapse from 111495 -> 111504", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111495, + "TargetID": 111504, + "Directional": true + }] + }, { + "ID": 11335, + "SourceStructureID": 6120, + "TargetStructureID": 111515, + "Label": "6120-111515 via Ribbon Synapse from 61186 -> 111517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61186, + "TargetID": 111517, + "Directional": true + }] + }, { + "ID": 11336, + "SourceStructureID": 6120, + "TargetStructureID": 111518, + "Label": "6120-111518 via BC Conventional Synapse from 111520 -> 111519", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111520, + "TargetID": 111519, + "Directional": true + }] + }, { + "ID": 11337, + "SourceStructureID": 6120, + "TargetStructureID": 111521, + "Label": "6120-111521 via Ribbon Synapse from 61186 -> 111522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61186, + "TargetID": 111522, + "Directional": true + }] + }, { + "ID": 11338, + "SourceStructureID": 6120, + "TargetStructureID": 111523, + "Label": "6120-111523 via Ribbon Synapse from 61197 -> 111524", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61197, + "TargetID": 111524, + "Directional": true + }] + }, { + "ID": 11339, + "SourceStructureID": 6120, + "TargetStructureID": 111525, + "Label": "6120-111525 via Ribbon Synapse from 61197 -> 111526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61197, + "TargetID": 111526, + "Directional": true + }] + }, { + "ID": 11340, + "SourceStructureID": 6120, + "TargetStructureID": 111533, + "Label": "6120-111533 via Ribbon Synapse from 61188 -> 111534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61188, + "TargetID": 111534, + "Directional": true + }] + }, { + "ID": 11341, + "SourceStructureID": 6120, + "TargetStructureID": 111553, + "Label": "6120-111553 via Ribbon Synapse from 64929 -> 111554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64929, + "TargetID": 111554, + "Directional": true + }] + }, { + "ID": 11342, + "SourceStructureID": 6120, + "TargetStructureID": 111557, + "Label": "6120-111557 via Ribbon Synapse from 64929 -> 111558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64929, + "TargetID": 111558, + "Directional": true + }] + }, { + "ID": 11343, + "SourceStructureID": 6120, + "TargetStructureID": 111563, + "Label": "6120-111563 via Ribbon Synapse from 111561 -> 111565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111561, + "TargetID": 111565, + "Directional": true + }] + }, { + "ID": 11344, + "SourceStructureID": 6120, + "TargetStructureID": 111564, + "Label": "6120-111564 via Ribbon Synapse from 111561 -> 111566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111561, + "TargetID": 111566, + "Directional": true + }] + }, { + "ID": 11345, + "SourceStructureID": 6120, + "TargetStructureID": 111580, + "Label": "6120-111580 via Ribbon Synapse from 52428 -> 111582", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52428, + "TargetID": 111582, + "Directional": true + }] + }, { + "ID": 11346, + "SourceStructureID": 6120, + "TargetStructureID": 111662, + "Label": "6120-111662 via Ribbon Synapse from 111661 -> 111663", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111661, + "TargetID": 111663, + "Directional": true + }] + }, { + "ID": 11347, + "SourceStructureID": 6120, + "TargetStructureID": 111672, + "Label": "6120-111672 via Ribbon Synapse from 111669 -> 111674", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111669, + "TargetID": 111674, + "Directional": true + }] + }, { + "ID": 11348, + "SourceStructureID": 6120, + "TargetStructureID": 111677, + "Label": "6120-111677 via Ribbon Synapse from 111678 -> 111681", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111678, + "TargetID": 111681, + "Directional": true + }] + }, { + "ID": 11349, + "SourceStructureID": 6120, + "TargetStructureID": 111684, + "Label": "6120-111684 via BC Conventional Synapse from 111683 -> 111685", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111683, + "TargetID": 111685, + "Directional": true + }] + }, { + "ID": 11350, + "SourceStructureID": 6120, + "TargetStructureID": 111691, + "Label": "6120-111691 via BC Conventional Synapse from 111690 -> 111692", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111690, + "TargetID": 111692, + "Directional": true + }] + }, { + "ID": 11351, + "SourceStructureID": 6120, + "TargetStructureID": 111698, + "Label": "6120-111698 via Ribbon Synapse from 111678 -> 111700", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111678, + "TargetID": 111700, + "Directional": true + }] + }, { + "ID": 11352, + "SourceStructureID": 6120, + "TargetStructureID": 111708, + "Label": "6120-111708 via Ribbon Synapse from 111707 -> 111710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111707, + "TargetID": 111710, + "Directional": true + }] + }, { + "ID": 11353, + "SourceStructureID": 6120, + "TargetStructureID": 111713, + "Label": "6120-111713 via Ribbon Synapse from 111706 -> 111714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111706, + "TargetID": 111714, + "Directional": true + }] + }, { + "ID": 11354, + "SourceStructureID": 6120, + "TargetStructureID": 111718, + "Label": "6120-111718 via BC Conventional Synapse from 111705 -> 111719", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111705, + "TargetID": 111719, + "Directional": true + }] + }, { + "ID": 11355, + "SourceStructureID": 6120, + "TargetStructureID": 111723, + "Label": "6120-111723 via BC Conventional Synapse from 111722 -> 111724", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111722, + "TargetID": 111724, + "Directional": true + }] + }, { + "ID": 11356, + "SourceStructureID": 6120, + "TargetStructureID": 111732, + "Label": "6120-111732 via Ribbon Synapse from 111731 -> 111733", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111731, + "TargetID": 111733, + "Directional": true + }] + }, { + "ID": 11357, + "SourceStructureID": 6120, + "TargetStructureID": 111866, + "Label": "6120-111866 via Ribbon Synapse from 30179 -> 111867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30179, + "TargetID": 111867, + "Directional": true + }] + }, { + "ID": 11358, + "SourceStructureID": 6120, + "TargetStructureID": 111890, + "Label": "6120-111890 via Ribbon Synapse from 111865 -> 111891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111865, + "TargetID": 111891, + "Directional": true + }] + }, { + "ID": 11359, + "SourceStructureID": 6120, + "TargetStructureID": 111894, + "Label": "6120-111894 via BC Conventional Synapse from 111893 -> 111895", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 111893, + "TargetID": 111895, + "Directional": true + }] + }, { + "ID": 11360, + "SourceStructureID": 6121, + "TargetStructureID": 5107, + "Label": "6121-5107 via Ribbon Synapse from 65010 -> 65009, 65055 -> 65054, 65065 -> 65060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65010, + "TargetID": 65009, + "Directional": true + }, { + "SourceID": 65055, + "TargetID": 65054, + "Directional": true + }, { + "SourceID": 65065, + "TargetID": 65060, + "Directional": true + }] + }, { + "ID": 11361, + "SourceStructureID": 6121, + "TargetStructureID": 5405, + "Label": "6121-5405 via Ribbon Synapse from 40014 -> 40015, 52276 -> 42945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40014, + "TargetID": 40015, + "Directional": true + }, { + "SourceID": 52276, + "TargetID": 42945, + "Directional": true + }] + }, { + "ID": 11362, + "SourceStructureID": 6121, + "TargetStructureID": 7134, + "Label": "6121-7134 via Ribbon Synapse from 53462 -> 53457, 53492 -> 53489, 53493 -> 53494, 53497 -> 53496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53462, + "TargetID": 53457, + "Directional": true + }, { + "SourceID": 53492, + "TargetID": 53489, + "Directional": true + }, { + "SourceID": 53493, + "TargetID": 53494, + "Directional": true + }, { + "SourceID": 53497, + "TargetID": 53496, + "Directional": true + }] + }, { + "ID": 11363, + "SourceStructureID": 6121, + "TargetStructureID": 9769, + "Label": "6121-9769 via Ribbon Synapse from 30183 -> 30165, 52577 -> 52579", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30183, + "TargetID": 30165, + "Directional": true + }, { + "SourceID": 52577, + "TargetID": 52579, + "Directional": true + }] + }, { + "ID": 11364, + "SourceStructureID": 6121, + "TargetStructureID": 16073, + "Label": "6121-16073 via BC Conventional Synapse from 125214 -> 125215", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125214, + "TargetID": 125215, + "Directional": true + }] + }, { + "ID": 11365, + "SourceStructureID": 6121, + "TargetStructureID": 22974, + "Label": "6121-22974 via Ribbon Synapse from 125226 -> 125228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125226, + "TargetID": 125228, + "Directional": true + }] + }, { + "ID": 11366, + "SourceStructureID": 6121, + "TargetStructureID": 30130, + "Label": "6121-30130 via Ribbon Synapse from 30327 -> 30326", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30327, + "TargetID": 30326, + "Directional": true + }] + }, { + "ID": 11367, + "SourceStructureID": 6121, + "TargetStructureID": 52262, + "Label": "6121-52262 via Ribbon Synapse from 52275 -> 52272", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52275, + "TargetID": 52272, + "Directional": true + }] + }, { + "ID": 11368, + "SourceStructureID": 6121, + "TargetStructureID": 52410, + "Label": "6121-52410 via Ribbon Synapse from 30183 -> 52411", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30183, + "TargetID": 52411, + "Directional": true + }] + }, { + "ID": 11369, + "SourceStructureID": 6121, + "TargetStructureID": 53991, + "Label": "6121-53991 via Ribbon Synapse from 52577 -> 53995", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52577, + "TargetID": 53995, + "Directional": true + }] + }, { + "ID": 11370, + "SourceStructureID": 6121, + "TargetStructureID": 64923, + "Label": "6121-64923 via Ribbon Synapse from 64927 -> 64926, 123563 -> 123562", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64927, + "TargetID": 64926, + "Directional": true + }, { + "SourceID": 123563, + "TargetID": 123562, + "Directional": true + }] + }, { + "ID": 11371, + "SourceStructureID": 6121, + "TargetStructureID": 68539, + "Label": "6121-68539 via BC Conventional Synapse from 120720 -> 120721", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120720, + "TargetID": 120721, + "Directional": true + }] + }, { + "ID": 11372, + "SourceStructureID": 6121, + "TargetStructureID": 110997, + "Label": "6121-110997 via BC Conventional Synapse from 125283 -> 125282", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 125283, + "TargetID": 125282, + "Directional": true + }] + }, { + "ID": 11373, + "SourceStructureID": 6121, + "TargetStructureID": 111539, + "Label": "6121-111539 via Ribbon Synapse from 127707 -> 127708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127707, + "TargetID": 127708, + "Directional": true + }] + }, { + "ID": 11374, + "SourceStructureID": 6123, + "TargetStructureID": 606, + "Label": "6123-606 via Ribbon Synapse from 47239 -> 47238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47239, + "TargetID": 47238, + "Directional": true + }] + }, { + "ID": 11375, + "SourceStructureID": 6123, + "TargetStructureID": 71517, + "Label": "6123-71517 via Ribbon Synapse from 47891 -> 71540, 47993 -> 72151, 47994 -> 74924, 48017 -> 76999, 48020 -> 74919, 74928 -> 74929", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47891, + "TargetID": 71540, + "Directional": true + }, { + "SourceID": 47993, + "TargetID": 72151, + "Directional": true + }, { + "SourceID": 47994, + "TargetID": 74924, + "Directional": true + }, { + "SourceID": 48017, + "TargetID": 76999, + "Directional": true + }, { + "SourceID": 48020, + "TargetID": 74919, + "Directional": true + }, { + "SourceID": 74928, + "TargetID": 74929, + "Directional": true + }] + }, { + "ID": 11376, + "SourceStructureID": 6123, + "TargetStructureID": 134954, + "Label": "6123-134954 via Ribbon Synapse from 47860 -> 135436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47860, + "TargetID": 135436, + "Directional": true + }] + }, { + "ID": 11377, + "SourceStructureID": 6123, + "TargetStructureID": 148300, + "Label": "6123-148300 via Ribbon Synapse from 148298 -> 148301, 148304 -> 148301", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148298, + "TargetID": 148301, + "Directional": true + }, { + "SourceID": 148304, + "TargetID": 148301, + "Directional": true + }] + }, { + "ID": 11378, + "SourceStructureID": 6123, + "TargetStructureID": 148302, + "Label": "6123-148302 via Ribbon Synapse from 148298 -> 148303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148298, + "TargetID": 148303, + "Directional": true + }] + }, { + "ID": 11379, + "SourceStructureID": 6125, + "TargetStructureID": 608, + "Label": "6125-608 via BC Conventional Synapse from 31206 -> 31199", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31206, + "TargetID": 31199, + "Directional": true + }] + }, { + "ID": 11380, + "SourceStructureID": 6125, + "TargetStructureID": 5150, + "Label": "6125-5150 via Ribbon Synapse from 131351 -> 5249, 131352 -> 5249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131351, + "TargetID": 5249, + "Directional": true + }, { + "SourceID": 131352, + "TargetID": 5249, + "Directional": true + }] + }, { + "ID": 11381, + "SourceStructureID": 6125, + "TargetStructureID": 7951, + "Label": "6125-7951 via Ribbon Synapse from 31204 -> 31205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31204, + "TargetID": 31205, + "Directional": true + }] + }, { + "ID": 11382, + "SourceStructureID": 6125, + "TargetStructureID": 34761, + "Label": "6125-34761 via Ribbon Synapse from 34773 -> 34771", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34773, + "TargetID": 34771, + "Directional": true + }] + }, { + "ID": 11383, + "SourceStructureID": 6127, + "TargetStructureID": 34847, + "Label": "6127-34847 via Ribbon Synapse from 34865 -> 34863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34865, + "TargetID": 34863, + "Directional": true + }] + }, { + "ID": 11384, + "SourceStructureID": 6127, + "TargetStructureID": 35653, + "Label": "6127-35653 via Ribbon Synapse from 35665 -> 35664", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35665, + "TargetID": 35664, + "Directional": true + }] + }, { + "ID": 11385, + "SourceStructureID": 6127, + "TargetStructureID": 84118, + "Label": "6127-84118 via Ribbon Synapse from 123614 -> 123616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123614, + "TargetID": 123616, + "Directional": true + }] + }, { + "ID": 11386, + "SourceStructureID": 6128, + "TargetStructureID": 7225, + "Label": "6128-7225 via Ribbon Synapse from 21178 -> 88400", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21178, + "TargetID": 88400, + "Directional": true + }] + }, { + "ID": 11387, + "SourceStructureID": 6128, + "TargetStructureID": 7461, + "Label": "6128-7461 via Ribbon Synapse from 20997 -> 30472, 33735 -> 30467", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20997, + "TargetID": 30472, + "Directional": true + }, { + "SourceID": 33735, + "TargetID": 30467, + "Directional": true + }] + }, { + "ID": 11388, + "SourceStructureID": 6128, + "TargetStructureID": 7859, + "Label": "6128-7859 via Ribbon Synapse from 84732 -> 84731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84732, + "TargetID": 84731, + "Directional": true + }] + }, { + "ID": 11389, + "SourceStructureID": 6128, + "TargetStructureID": 28950, + "Label": "6128-28950 via Ribbon Synapse from 21016 -> 29043, 21017 -> 29043", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21016, + "TargetID": 29043, + "Directional": true + }, { + "SourceID": 21017, + "TargetID": 29043, + "Directional": true + }] + }, { + "ID": 11390, + "SourceStructureID": 6128, + "TargetStructureID": 30015, + "Label": "6128-30015 via Ribbon Synapse from 20982 -> 30042", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20982, + "TargetID": 30042, + "Directional": true + }] + }, { + "ID": 11391, + "SourceStructureID": 6128, + "TargetStructureID": 31486, + "Label": "6128-31486 via Ribbon Synapse from 21041 -> 31512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21041, + "TargetID": 31512, + "Directional": true + }] + }, { + "ID": 11392, + "SourceStructureID": 6128, + "TargetStructureID": 46741, + "Label": "6128-46741 via BC Conventional Synapse from 137107 -> 137106, 137117 -> 137118", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137107, + "TargetID": 137106, + "Directional": true + }, { + "SourceID": 137117, + "TargetID": 137118, + "Directional": true + }] + }, { + "ID": 11393, + "SourceStructureID": 6128, + "TargetStructureID": 46741, + "Label": "6128-46741 via Ribbon Synapse from 20992 -> 137098, 33737 -> 137094, 136966 -> 136964, 136968 -> 136969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20992, + "TargetID": 137098, + "Directional": true + }, { + "SourceID": 33737, + "TargetID": 137094, + "Directional": true + }, { + "SourceID": 136966, + "TargetID": 136964, + "Directional": true + }, { + "SourceID": 136968, + "TargetID": 136969, + "Directional": true + }] + }, { + "ID": 11394, + "SourceStructureID": 6128, + "TargetStructureID": 122431, + "Label": "6128-122431 via Ribbon Synapse from 20935 -> 129523", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20935, + "TargetID": 129523, + "Directional": true + }] + }, { + "ID": 11395, + "SourceStructureID": 6129, + "TargetStructureID": 5453, + "Label": "6129-5453 via BC Conventional Synapse from 38870 -> 18547", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38870, + "TargetID": 18547, + "Directional": true + }] + }, { + "ID": 11396, + "SourceStructureID": 6129, + "TargetStructureID": 5453, + "Label": "6129-5453 via Ribbon Synapse from 17819 -> 18550, 18584 -> 18549, 38872 -> 18544, 38875 -> 18524, 38877 -> 18532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17819, + "TargetID": 18550, + "Directional": true + }, { + "SourceID": 18584, + "TargetID": 18549, + "Directional": true + }, { + "SourceID": 38872, + "TargetID": 18544, + "Directional": true + }, { + "SourceID": 38875, + "TargetID": 18524, + "Directional": true + }, { + "SourceID": 38877, + "TargetID": 18532, + "Directional": true + }] + }, { + "ID": 11397, + "SourceStructureID": 6129, + "TargetStructureID": 5528, + "Label": "6129-5528 via Ribbon Synapse from 17850 -> 94142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17850, + "TargetID": 94142, + "Directional": true + }] + }, { + "ID": 11398, + "SourceStructureID": 6129, + "TargetStructureID": 7703, + "Label": "6129-7703 via Ribbon Synapse from 17785 -> 17758, 42081 -> 26776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17785, + "TargetID": 17758, + "Directional": true + }, { + "SourceID": 42081, + "TargetID": 26776, + "Directional": true + }] + }, { + "ID": 11399, + "SourceStructureID": 6129, + "TargetStructureID": 11238, + "Label": "6129-11238 via Ribbon Synapse from 88568 -> 88528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88568, + "TargetID": 88528, + "Directional": true + }] + }, { + "ID": 11400, + "SourceStructureID": 6129, + "TargetStructureID": 64414, + "Label": "6129-64414 via BC Conventional Synapse from 64424 -> 64423", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64424, + "TargetID": 64423, + "Directional": true + }] + }, { + "ID": 11401, + "SourceStructureID": 6129, + "TargetStructureID": 88539, + "Label": "6129-88539 via Ribbon Synapse from 88538 -> 88542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88538, + "TargetID": 88542, + "Directional": true + }] + }, { + "ID": 11402, + "SourceStructureID": 6131, + "TargetStructureID": 13525, + "Label": "6131-13525 via Ribbon Synapse from 37331 -> 129030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37331, + "TargetID": 129030, + "Directional": true + }] + }, { + "ID": 11403, + "SourceStructureID": 6131, + "TargetStructureID": 130189, + "Label": "6131-130189 via Ribbon Synapse from 37331 -> 130191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37331, + "TargetID": 130191, + "Directional": true + }] + }, { + "ID": 11404, + "SourceStructureID": 6132, + "TargetStructureID": 7225, + "Label": "6132-7225 via Ribbon Synapse from 29018 -> 29031, 29028 -> 29027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29018, + "TargetID": 29031, + "Directional": true + }, { + "SourceID": 29028, + "TargetID": 29027, + "Directional": true + }] + }, { + "ID": 11405, + "SourceStructureID": 6132, + "TargetStructureID": 7564, + "Label": "6132-7564 via Ribbon Synapse from 88502 -> 88497", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88502, + "TargetID": 88497, + "Directional": true + }] + }, { + "ID": 11406, + "SourceStructureID": 6132, + "TargetStructureID": 11238, + "Label": "6132-11238 via Ribbon Synapse from 88437 -> 88443, 88504 -> 88505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88437, + "TargetID": 88443, + "Directional": true + }, { + "SourceID": 88504, + "TargetID": 88505, + "Directional": true + }] + }, { + "ID": 11407, + "SourceStructureID": 6132, + "TargetStructureID": 35681, + "Label": "6132-35681 via Ribbon Synapse from 35727 -> 35726", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35727, + "TargetID": 35726, + "Directional": true + }] + }, { + "ID": 11408, + "SourceStructureID": 6132, + "TargetStructureID": 43203, + "Label": "6132-43203 via Ribbon Synapse from 122036 -> 122035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122036, + "TargetID": 122035, + "Directional": true + }] + }, { + "ID": 11409, + "SourceStructureID": 6133, + "TargetStructureID": 7859, + "Label": "6133-7859 via Ribbon Synapse from 84840 -> 84838", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84840, + "TargetID": 84838, + "Directional": true + }] + }, { + "ID": 11410, + "SourceStructureID": 6133, + "TargetStructureID": 8504, + "Label": "6133-8504 via Ribbon Synapse from 8702 -> 8718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8702, + "TargetID": 8718, + "Directional": true + }] + }, { + "ID": 11411, + "SourceStructureID": 6133, + "TargetStructureID": 10574, + "Label": "6133-10574 via Ribbon Synapse from 37405 -> 10608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37405, + "TargetID": 10608, + "Directional": true + }] + }, { + "ID": 11412, + "SourceStructureID": 6133, + "TargetStructureID": 11229, + "Label": "6133-11229 via Ribbon Synapse from 37404 -> 28974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37404, + "TargetID": 28974, + "Directional": true + }] + }, { + "ID": 11413, + "SourceStructureID": 6133, + "TargetStructureID": 43205, + "Label": "6133-43205 via Ribbon Synapse from 65446 -> 122086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65446, + "TargetID": 122086, + "Directional": true + }] + }, { + "ID": 11414, + "SourceStructureID": 6133, + "TargetStructureID": 96877, + "Label": "6133-96877 via Ribbon Synapse from 37412 -> 131152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37412, + "TargetID": 131152, + "Directional": true + }] + }, { + "ID": 11415, + "SourceStructureID": 6134, + "TargetStructureID": 122173, + "Label": "6134-122173 via Ribbon Synapse from 32473 -> 122175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32473, + "TargetID": 122175, + "Directional": true + }] + }, { + "ID": 11416, + "SourceStructureID": 6136, + "TargetStructureID": 7145, + "Label": "6136-7145 via Ribbon Synapse from 10952 -> 18111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10952, + "TargetID": 18111, + "Directional": true + }] + }, { + "ID": 11417, + "SourceStructureID": 6136, + "TargetStructureID": 10371, + "Label": "6136-10371 via Ribbon Synapse from 10370 -> 10373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10370, + "TargetID": 10373, + "Directional": true + }] + }, { + "ID": 11418, + "SourceStructureID": 6136, + "TargetStructureID": 56211, + "Label": "6136-56211 via Ribbon Synapse from 13029 -> 85453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13029, + "TargetID": 85453, + "Directional": true + }] + }, { + "ID": 11419, + "SourceStructureID": 6136, + "TargetStructureID": 59229, + "Label": "6136-59229 via Ribbon Synapse from 85560 -> 85559", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85560, + "TargetID": 85559, + "Directional": true + }] + }, { + "ID": 11420, + "SourceStructureID": 6138, + "TargetStructureID": 5464, + "Label": "6138-5464 via Ribbon Synapse from 37430 -> 37431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37430, + "TargetID": 37431, + "Directional": true + }] + }, { + "ID": 11421, + "SourceStructureID": 6140, + "TargetStructureID": 29340, + "Label": "6140-29340 via Ribbon Synapse from 29360 -> 29354", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29360, + "TargetID": 29354, + "Directional": true + }] + }, { + "ID": 11422, + "SourceStructureID": 6141, + "TargetStructureID": 606, + "Label": "6141-606 via Ribbon Synapse from 51958 -> 51959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51958, + "TargetID": 51959, + "Directional": true + }] + }, { + "ID": 11423, + "SourceStructureID": 6141, + "TargetStructureID": 5117, + "Label": "6141-5117 via Ribbon Synapse from 66359 -> 66358", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66359, + "TargetID": 66358, + "Directional": true + }] + }, { + "ID": 11424, + "SourceStructureID": 6141, + "TargetStructureID": 32513, + "Label": "6141-32513 via Ribbon Synapse from 32520 -> 32516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32520, + "TargetID": 32516, + "Directional": true + }] + }, { + "ID": 11425, + "SourceStructureID": 6142, + "TargetStructureID": 8579, + "Label": "6142-8579 via Ribbon Synapse from 16121 -> 62859, 27900 -> 62723, 62862 -> 62863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16121, + "TargetID": 62859, + "Directional": true + }, { + "SourceID": 27900, + "TargetID": 62723, + "Directional": true + }, { + "SourceID": 62862, + "TargetID": 62863, + "Directional": true + }] + }, { + "ID": 11426, + "SourceStructureID": 6142, + "TargetStructureID": 67671, + "Label": "6142-67671 via Ribbon Synapse from 23334 -> 78036", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23334, + "TargetID": 78036, + "Directional": true + }] + }, { + "ID": 11427, + "SourceStructureID": 6142, + "TargetStructureID": 68539, + "Label": "6142-68539 via Ribbon Synapse from 27843 -> 76069", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27843, + "TargetID": 76069, + "Directional": true + }] + }, { + "ID": 11428, + "SourceStructureID": 6142, + "TargetStructureID": 71351, + "Label": "6142-71351 via Ribbon Synapse from 71682 -> 71683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71682, + "TargetID": 71683, + "Directional": true + }] + }, { + "ID": 11429, + "SourceStructureID": 6142, + "TargetStructureID": 71684, + "Label": "6142-71684 via Ribbon Synapse from 71682 -> 71685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71682, + "TargetID": 71685, + "Directional": true + }] + }, { + "ID": 11430, + "SourceStructureID": 6142, + "TargetStructureID": 71686, + "Label": "6142-71686 via Ribbon Synapse from 71682 -> 71687", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71682, + "TargetID": 71687, + "Directional": true + }] + }, { + "ID": 11431, + "SourceStructureID": 6142, + "TargetStructureID": 78909, + "Label": "6142-78909 via Ribbon Synapse from 16119 -> 87553, 23586 -> 87551, 23587 -> 87552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16119, + "TargetID": 87553, + "Directional": true + }, { + "SourceID": 23586, + "TargetID": 87551, + "Directional": true + }, { + "SourceID": 23587, + "TargetID": 87552, + "Directional": true + }] + }, { + "ID": 11432, + "SourceStructureID": 6142, + "TargetStructureID": 88473, + "Label": "6142-88473 via Ribbon Synapse from 27887 -> 88474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27887, + "TargetID": 88474, + "Directional": true + }] + }, { + "ID": 11433, + "SourceStructureID": 6142, + "TargetStructureID": 89336, + "Label": "6142-89336 via Ribbon Synapse from 23577 -> 89338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23577, + "TargetID": 89338, + "Directional": true + }] + }, { + "ID": 11434, + "SourceStructureID": 6142, + "TargetStructureID": 89775, + "Label": "6142-89775 via BC Conventional Synapse from 16116 -> 89782", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16116, + "TargetID": 89782, + "Directional": true + }] + }, { + "ID": 11435, + "SourceStructureID": 6146, + "TargetStructureID": 5388, + "Label": "6146-5388 via Ribbon Synapse from 20219 -> 20214", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20219, + "TargetID": 20214, + "Directional": true + }] + }, { + "ID": 11436, + "SourceStructureID": 6146, + "TargetStructureID": 7594, + "Label": "6146-7594 via Ribbon Synapse from 38101 -> 38105", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38101, + "TargetID": 38105, + "Directional": true + }] + }, { + "ID": 11437, + "SourceStructureID": 6146, + "TargetStructureID": 8212, + "Label": "6146-8212 via Cistern Pre from 38078 -> 38082", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 38078, + "TargetID": 38082, + "Directional": true + }] + }, { + "ID": 11438, + "SourceStructureID": 6146, + "TargetStructureID": 9769, + "Label": "6146-9769 via Ribbon Synapse from 38101 -> 38102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38101, + "TargetID": 38102, + "Directional": true + }] + }, { + "ID": 11439, + "SourceStructureID": 6146, + "TargetStructureID": 45574, + "Label": "6146-45574 via Ribbon Synapse from 131947 -> 131948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131947, + "TargetID": 131948, + "Directional": true + }] + }, { + "ID": 11440, + "SourceStructureID": 6146, + "TargetStructureID": 87419, + "Label": "6146-87419 via Cistern Pre from 87418 -> 87421", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 87418, + "TargetID": 87421, + "Directional": true + }] + }, { + "ID": 11441, + "SourceStructureID": 6150, + "TargetStructureID": 6118, + "Label": "6150-6118 via Cistern Pre from 37177 -> 37175", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 37177, + "TargetID": 37175, + "Directional": true + }] + }, { + "ID": 11442, + "SourceStructureID": 6153, + "TargetStructureID": 325, + "Label": "6153-325 via Conventional from 10726 -> 8183, 10728 -> 7027", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10726, + "TargetID": 8183, + "Directional": true + }, { + "SourceID": 10728, + "TargetID": 7027, + "Directional": true + }] + }, { + "ID": 11443, + "SourceStructureID": 6153, + "TargetStructureID": 425, + "Label": "6153-425 via Conventional from 39980 -> 39981", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39980, + "TargetID": 39981, + "Directional": true + }] + }, { + "ID": 11444, + "SourceStructureID": 6153, + "TargetStructureID": 426, + "Label": "6153-426 via Conventional from 21579 -> 21586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21579, + "TargetID": 21586, + "Directional": true + }] + }, { + "ID": 11445, + "SourceStructureID": 6153, + "TargetStructureID": 463, + "Label": "6153-463 via Conventional from 74156 -> 74154, 74157 -> 74155, 74159 -> 74158, 74160 -> 74161", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74156, + "TargetID": 74154, + "Directional": true + }, { + "SourceID": 74157, + "TargetID": 74155, + "Directional": true + }, { + "SourceID": 74159, + "TargetID": 74158, + "Directional": true + }, { + "SourceID": 74160, + "TargetID": 74161, + "Directional": true + }] + }, { + "ID": 11446, + "SourceStructureID": 6153, + "TargetStructureID": 476, + "Label": "6153-476 via Cistern Pre from 31957 -> 31958", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 31957, + "TargetID": 31958, + "Directional": true + }] + }, { + "ID": 11447, + "SourceStructureID": 6153, + "TargetStructureID": 5150, + "Label": "6153-5150 via Conventional from 15411 -> 5268, 15421 -> 15418", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15411, + "TargetID": 5268, + "Directional": true + }, { + "SourceID": 15421, + "TargetID": 15418, + "Directional": true + }] + }, { + "ID": 11448, + "SourceStructureID": 6153, + "TargetStructureID": 5351, + "Label": "6153-5351 via Conventional from 24123 -> 24122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24123, + "TargetID": 24122, + "Directional": true + }] + }, { + "ID": 11449, + "SourceStructureID": 6155, + "TargetStructureID": 289, + "Label": "6155-289 via Ribbon Synapse from 56649 -> 56647", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56649, + "TargetID": 56647, + "Directional": true + }] + }, { + "ID": 11450, + "SourceStructureID": 6155, + "TargetStructureID": 2064, + "Label": "6155-2064 via Ribbon Synapse from 15525 -> 13189", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15525, + "TargetID": 13189, + "Directional": true + }] + }, { + "ID": 11451, + "SourceStructureID": 6155, + "TargetStructureID": 6300, + "Label": "6155-6300 via Ribbon Synapse from 15381 -> 104888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15381, + "TargetID": 104888, + "Directional": true + }] + }, { + "ID": 11452, + "SourceStructureID": 6155, + "TargetStructureID": 7594, + "Label": "6155-7594 via Ribbon Synapse from 15511 -> 107869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15511, + "TargetID": 107869, + "Directional": true + }] + }, { + "ID": 11453, + "SourceStructureID": 6155, + "TargetStructureID": 8720, + "Label": "6155-8720 via Cistern Pre from 24083 -> 24100", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 24083, + "TargetID": 24100, + "Directional": true + }] + }, { + "ID": 11454, + "SourceStructureID": 6155, + "TargetStructureID": 9769, + "Label": "6155-9769 via Ribbon Synapse from 15767 -> 29811", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15767, + "TargetID": 29811, + "Directional": true + }] + }, { + "ID": 11455, + "SourceStructureID": 6155, + "TargetStructureID": 18693, + "Label": "6155-18693 via Ribbon Synapse from 56650 -> 33803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56650, + "TargetID": 33803, + "Directional": true + }] + }, { + "ID": 11456, + "SourceStructureID": 6155, + "TargetStructureID": 36421, + "Label": "6155-36421 via Ribbon Synapse from 34785 -> 36436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34785, + "TargetID": 36436, + "Directional": true + }] + }, { + "ID": 11457, + "SourceStructureID": 6155, + "TargetStructureID": 47104, + "Label": "6155-47104 via Ribbon Synapse from 15510 -> 107878, 15511 -> 47125", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15510, + "TargetID": 107878, + "Directional": true + }, { + "SourceID": 15511, + "TargetID": 47125, + "Directional": true + }] + }, { + "ID": 11458, + "SourceStructureID": 6155, + "TargetStructureID": 48612, + "Label": "6155-48612 via Ribbon Synapse from 15761 -> 48621", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15761, + "TargetID": 48621, + "Directional": true + }] + }, { + "ID": 11459, + "SourceStructureID": 6155, + "TargetStructureID": 104886, + "Label": "6155-104886 via Ribbon Synapse from 15381 -> 104887", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15381, + "TargetID": 104887, + "Directional": true + }] + }, { + "ID": 11460, + "SourceStructureID": 6155, + "TargetStructureID": 104893, + "Label": "6155-104893 via Ribbon Synapse from 104892 -> 104894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104892, + "TargetID": 104894, + "Directional": true + }] + }, { + "ID": 11461, + "SourceStructureID": 6155, + "TargetStructureID": 104952, + "Label": "6155-104952 via Ribbon Synapse from 15606 -> 104953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15606, + "TargetID": 104953, + "Directional": true + }] + }, { + "ID": 11462, + "SourceStructureID": 6155, + "TargetStructureID": 104957, + "Label": "6155-104957 via Ribbon Synapse from 15607 -> 104958", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15607, + "TargetID": 104958, + "Directional": true + }] + }, { + "ID": 11463, + "SourceStructureID": 6155, + "TargetStructureID": 104959, + "Label": "6155-104959 via Ribbon Synapse from 15607 -> 104960", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15607, + "TargetID": 104960, + "Directional": true + }] + }, { + "ID": 11464, + "SourceStructureID": 6155, + "TargetStructureID": 104963, + "Label": "6155-104963 via Ribbon Synapse from 48319 -> 104964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48319, + "TargetID": 104964, + "Directional": true + }] + }, { + "ID": 11465, + "SourceStructureID": 6155, + "TargetStructureID": 104965, + "Label": "6155-104965 via Ribbon Synapse from 48319 -> 104966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48319, + "TargetID": 104966, + "Directional": true + }] + }, { + "ID": 11466, + "SourceStructureID": 6155, + "TargetStructureID": 104971, + "Label": "6155-104971 via Ribbon Synapse from 15612 -> 104972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15612, + "TargetID": 104972, + "Directional": true + }] + }, { + "ID": 11467, + "SourceStructureID": 6155, + "TargetStructureID": 104979, + "Label": "6155-104979 via Ribbon Synapse from 15756 -> 104980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15756, + "TargetID": 104980, + "Directional": true + }] + }, { + "ID": 11468, + "SourceStructureID": 6155, + "TargetStructureID": 104981, + "Label": "6155-104981 via Ribbon Synapse from 15756 -> 104982", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15756, + "TargetID": 104982, + "Directional": true + }] + }, { + "ID": 11469, + "SourceStructureID": 6155, + "TargetStructureID": 105838, + "Label": "6155-105838 via Ribbon Synapse from 16874 -> 105840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16874, + "TargetID": 105840, + "Directional": true + }] + }, { + "ID": 11470, + "SourceStructureID": 6155, + "TargetStructureID": 105844, + "Label": "6155-105844 via Ribbon Synapse from 16874 -> 105847", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16874, + "TargetID": 105847, + "Directional": true + }] + }, { + "ID": 11471, + "SourceStructureID": 6155, + "TargetStructureID": 105928, + "Label": "6155-105928 via Ribbon Synapse from 15761 -> 105998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15761, + "TargetID": 105998, + "Directional": true + }] + }, { + "ID": 11472, + "SourceStructureID": 6155, + "TargetStructureID": 105944, + "Label": "6155-105944 via Ribbon Synapse from 15606 -> 105947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15606, + "TargetID": 105947, + "Directional": true + }] + }, { + "ID": 11473, + "SourceStructureID": 6155, + "TargetStructureID": 105965, + "Label": "6155-105965 via Ribbon Synapse from 29758 -> 105993", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29758, + "TargetID": 105993, + "Directional": true + }] + }, { + "ID": 11474, + "SourceStructureID": 6155, + "TargetStructureID": 106045, + "Label": "6155-106045 via Ribbon Synapse from 15610 -> 106046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15610, + "TargetID": 106046, + "Directional": true + }] + }, { + "ID": 11475, + "SourceStructureID": 6155, + "TargetStructureID": 106048, + "Label": "6155-106048 via Cistern Pre from 48326 -> 106049", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 48326, + "TargetID": 106049, + "Directional": true + }] + }, { + "ID": 11476, + "SourceStructureID": 6155, + "TargetStructureID": 106060, + "Label": "6155-106060 via BC Conventional Synapse from 106062 -> 106061", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106062, + "TargetID": 106061, + "Directional": true + }] + }, { + "ID": 11477, + "SourceStructureID": 6155, + "TargetStructureID": 106067, + "Label": "6155-106067 via BC Conventional Synapse from 106356 -> 106357", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106356, + "TargetID": 106357, + "Directional": true + }] + }, { + "ID": 11478, + "SourceStructureID": 6155, + "TargetStructureID": 106094, + "Label": "6155-106094 via Ribbon Synapse from 106093 -> 106103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106093, + "TargetID": 106103, + "Directional": true + }] + }, { + "ID": 11479, + "SourceStructureID": 6155, + "TargetStructureID": 106095, + "Label": "6155-106095 via Ribbon Synapse from 56650 -> 106096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56650, + "TargetID": 106096, + "Directional": true + }] + }, { + "ID": 11480, + "SourceStructureID": 6155, + "TargetStructureID": 106123, + "Label": "6155-106123 via Ribbon Synapse from 106124 -> 106125", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106124, + "TargetID": 106125, + "Directional": true + }] + }, { + "ID": 11481, + "SourceStructureID": 6155, + "TargetStructureID": 106413, + "Label": "6155-106413 via Ribbon Synapse from 106395 -> 106416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106395, + "TargetID": 106416, + "Directional": true + }] + }, { + "ID": 11482, + "SourceStructureID": 6155, + "TargetStructureID": 106435, + "Label": "6155-106435 via Ribbon Synapse from 48327 -> 106436", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48327, + "TargetID": 106436, + "Directional": true + }] + }, { + "ID": 11483, + "SourceStructureID": 6155, + "TargetStructureID": 106458, + "Label": "6155-106458 via Ribbon Synapse from 15799 -> 106459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15799, + "TargetID": 106459, + "Directional": true + }] + }, { + "ID": 11484, + "SourceStructureID": 6155, + "TargetStructureID": 106460, + "Label": "6155-106460 via Ribbon Synapse from 15799 -> 106461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15799, + "TargetID": 106461, + "Directional": true + }] + }, { + "ID": 11485, + "SourceStructureID": 6155, + "TargetStructureID": 106463, + "Label": "6155-106463 via Ribbon Synapse from 15799 -> 106579", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15799, + "TargetID": 106579, + "Directional": true + }] + }, { + "ID": 11486, + "SourceStructureID": 6155, + "TargetStructureID": 106483, + "Label": "6155-106483 via BC Conventional Synapse from 106568 -> 106569", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106568, + "TargetID": 106569, + "Directional": true + }] + }, { + "ID": 11487, + "SourceStructureID": 6155, + "TargetStructureID": 106604, + "Label": "6155-106604 via Ribbon Synapse from 15767 -> 106611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15767, + "TargetID": 106611, + "Directional": true + }] + }, { + "ID": 11488, + "SourceStructureID": 6155, + "TargetStructureID": 106612, + "Label": "6155-106612 via Ribbon Synapse from 15768 -> 106613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15768, + "TargetID": 106613, + "Directional": true + }] + }, { + "ID": 11489, + "SourceStructureID": 6155, + "TargetStructureID": 106617, + "Label": "6155-106617 via Ribbon Synapse from 15768 -> 106618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15768, + "TargetID": 106618, + "Directional": true + }] + }, { + "ID": 11490, + "SourceStructureID": 6155, + "TargetStructureID": 106750, + "Label": "6155-106750 via Ribbon Synapse from 15518 -> 106751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15518, + "TargetID": 106751, + "Directional": true + }] + }, { + "ID": 11491, + "SourceStructureID": 6155, + "TargetStructureID": 106812, + "Label": "6155-106812 via BC Conventional Synapse from 106815 -> 106816", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106815, + "TargetID": 106816, + "Directional": true + }] + }, { + "ID": 11492, + "SourceStructureID": 6155, + "TargetStructureID": 106824, + "Label": "6155-106824 via Ribbon Synapse from 49068 -> 106827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49068, + "TargetID": 106827, + "Directional": true + }] + }, { + "ID": 11493, + "SourceStructureID": 6155, + "TargetStructureID": 106831, + "Label": "6155-106831 via Ribbon Synapse from 49068 -> 106833", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49068, + "TargetID": 106833, + "Directional": true + }] + }, { + "ID": 11494, + "SourceStructureID": 6155, + "TargetStructureID": 107619, + "Label": "6155-107619 via Ribbon Synapse from 48267 -> 107627", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48267, + "TargetID": 107627, + "Directional": true + }] + }, { + "ID": 11495, + "SourceStructureID": 6155, + "TargetStructureID": 107622, + "Label": "6155-107622 via Ribbon Synapse from 15397 -> 107623", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15397, + "TargetID": 107623, + "Directional": true + }] + }, { + "ID": 11496, + "SourceStructureID": 6155, + "TargetStructureID": 107739, + "Label": "6155-107739 via Ribbon Synapse from 48267 -> 107740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48267, + "TargetID": 107740, + "Directional": true + }] + }, { + "ID": 11497, + "SourceStructureID": 6155, + "TargetStructureID": 107741, + "Label": "6155-107741 via Ribbon Synapse from 15397 -> 107742", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15397, + "TargetID": 107742, + "Directional": true + }] + }, { + "ID": 11498, + "SourceStructureID": 6155, + "TargetStructureID": 107747, + "Label": "6155-107747 via Ribbon Synapse from 15430 -> 107752", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15430, + "TargetID": 107752, + "Directional": true + }] + }, { + "ID": 11499, + "SourceStructureID": 6155, + "TargetStructureID": 107750, + "Label": "6155-107750 via Ribbon Synapse from 15430 -> 107751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15430, + "TargetID": 107751, + "Directional": true + }] + }, { + "ID": 11500, + "SourceStructureID": 6155, + "TargetStructureID": 107767, + "Label": "6155-107767 via Ribbon Synapse from 15395 -> 107768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15395, + "TargetID": 107768, + "Directional": true + }] + }, { + "ID": 11501, + "SourceStructureID": 6155, + "TargetStructureID": 107769, + "Label": "6155-107769 via Ribbon Synapse from 15395 -> 107770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15395, + "TargetID": 107770, + "Directional": true + }] + }, { + "ID": 11502, + "SourceStructureID": 6155, + "TargetStructureID": 107779, + "Label": "6155-107779 via Ribbon Synapse from 15433 -> 107780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15433, + "TargetID": 107780, + "Directional": true + }] + }, { + "ID": 11503, + "SourceStructureID": 6155, + "TargetStructureID": 107784, + "Label": "6155-107784 via Ribbon Synapse from 15429 -> 107785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15429, + "TargetID": 107785, + "Directional": true + }] + }, { + "ID": 11504, + "SourceStructureID": 6155, + "TargetStructureID": 107786, + "Label": "6155-107786 via Ribbon Synapse from 15429 -> 107787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15429, + "TargetID": 107787, + "Directional": true + }] + }, { + "ID": 11505, + "SourceStructureID": 6155, + "TargetStructureID": 107789, + "Label": "6155-107789 via Ribbon Synapse from 107788 -> 107790", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107788, + "TargetID": 107790, + "Directional": true + }] + }, { + "ID": 11506, + "SourceStructureID": 6155, + "TargetStructureID": 107798, + "Label": "6155-107798 via Ribbon Synapse from 15400 -> 107799, 107791 -> 107799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15400, + "TargetID": 107799, + "Directional": true + }, { + "SourceID": 107791, + "TargetID": 107799, + "Directional": true + }] + }, { + "ID": 11507, + "SourceStructureID": 6155, + "TargetStructureID": 107800, + "Label": "6155-107800 via Ribbon Synapse from 15400 -> 107801", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15400, + "TargetID": 107801, + "Directional": true + }] + }, { + "ID": 11508, + "SourceStructureID": 6155, + "TargetStructureID": 107805, + "Label": "6155-107805 via BC Conventional Synapse from 107811 -> 107812", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107811, + "TargetID": 107812, + "Directional": true + }] + }, { + "ID": 11509, + "SourceStructureID": 6155, + "TargetStructureID": 107818, + "Label": "6155-107818 via Ribbon Synapse from 107817 -> 107819", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107817, + "TargetID": 107819, + "Directional": true + }] + }, { + "ID": 11510, + "SourceStructureID": 6155, + "TargetStructureID": 107838, + "Label": "6155-107838 via Ribbon Synapse from 15384 -> 107839", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15384, + "TargetID": 107839, + "Directional": true + }] + }, { + "ID": 11511, + "SourceStructureID": 6155, + "TargetStructureID": 107840, + "Label": "6155-107840 via Ribbon Synapse from 15384 -> 107841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15384, + "TargetID": 107841, + "Directional": true + }] + }, { + "ID": 11512, + "SourceStructureID": 6155, + "TargetStructureID": 107845, + "Label": "6155-107845 via Ribbon Synapse from 49076 -> 107864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49076, + "TargetID": 107864, + "Directional": true + }] + }, { + "ID": 11513, + "SourceStructureID": 6155, + "TargetStructureID": 107860, + "Label": "6155-107860 via Ribbon Synapse from 49076 -> 107863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49076, + "TargetID": 107863, + "Directional": true + }] + }, { + "ID": 11514, + "SourceStructureID": 6155, + "TargetStructureID": 107870, + "Label": "6155-107870 via Ribbon Synapse from 15511 -> 107871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15511, + "TargetID": 107871, + "Directional": true + }] + }, { + "ID": 11515, + "SourceStructureID": 6155, + "TargetStructureID": 107879, + "Label": "6155-107879 via Ribbon Synapse from 15510 -> 107881", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15510, + "TargetID": 107881, + "Directional": true + }] + }, { + "ID": 11516, + "SourceStructureID": 6155, + "TargetStructureID": 107882, + "Label": "6155-107882 via Ribbon Synapse from 15510 -> 107885", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15510, + "TargetID": 107885, + "Directional": true + }] + }, { + "ID": 11517, + "SourceStructureID": 6155, + "TargetStructureID": 107894, + "Label": "6155-107894 via Ribbon Synapse from 15386 -> 107903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15386, + "TargetID": 107903, + "Directional": true + }] + }, { + "ID": 11518, + "SourceStructureID": 6155, + "TargetStructureID": 107904, + "Label": "6155-107904 via Ribbon Synapse from 49078 -> 107906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49078, + "TargetID": 107906, + "Directional": true + }] + }, { + "ID": 11519, + "SourceStructureID": 6155, + "TargetStructureID": 107908, + "Label": "6155-107908 via Ribbon Synapse from 15541 -> 107949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15541, + "TargetID": 107949, + "Directional": true + }] + }, { + "ID": 11520, + "SourceStructureID": 6155, + "TargetStructureID": 107910, + "Label": "6155-107910 via Ribbon Synapse from 15541 -> 107972", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15541, + "TargetID": 107972, + "Directional": true + }] + }, { + "ID": 11521, + "SourceStructureID": 6155, + "TargetStructureID": 107915, + "Label": "6155-107915 via Ribbon Synapse from 15509 -> 107916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15509, + "TargetID": 107916, + "Directional": true + }] + }, { + "ID": 11522, + "SourceStructureID": 6155, + "TargetStructureID": 107917, + "Label": "6155-107917 via Ribbon Synapse from 15508 -> 107920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15508, + "TargetID": 107920, + "Directional": true + }] + }, { + "ID": 11523, + "SourceStructureID": 6155, + "TargetStructureID": 107918, + "Label": "6155-107918 via Ribbon Synapse from 15508 -> 107919", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15508, + "TargetID": 107919, + "Directional": true + }] + }, { + "ID": 11524, + "SourceStructureID": 6155, + "TargetStructureID": 107989, + "Label": "6155-107989 via Ribbon Synapse from 15569 -> 108007", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15569, + "TargetID": 108007, + "Directional": true + }] + }, { + "ID": 11525, + "SourceStructureID": 6155, + "TargetStructureID": 107992, + "Label": "6155-107992 via BC Conventional Synapse from 107995 -> 107994", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107995, + "TargetID": 107994, + "Directional": true + }] + }, { + "ID": 11526, + "SourceStructureID": 6155, + "TargetStructureID": 108004, + "Label": "6155-108004 via Ribbon Synapse from 15568 -> 108009", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15568, + "TargetID": 108009, + "Directional": true + }] + }, { + "ID": 11527, + "SourceStructureID": 6155, + "TargetStructureID": 108008, + "Label": "6155-108008 via Ribbon Synapse from 15569 -> 108015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15569, + "TargetID": 108015, + "Directional": true + }] + }, { + "ID": 11528, + "SourceStructureID": 6155, + "TargetStructureID": 108010, + "Label": "6155-108010 via Ribbon Synapse from 15568 -> 108014", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15568, + "TargetID": 108014, + "Directional": true + }] + }, { + "ID": 11529, + "SourceStructureID": 6155, + "TargetStructureID": 108066, + "Label": "6155-108066 via Ribbon Synapse from 48305 -> 108069", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48305, + "TargetID": 108069, + "Directional": true + }] + }, { + "ID": 11530, + "SourceStructureID": 6155, + "TargetStructureID": 108076, + "Label": "6155-108076 via Ribbon Synapse from 48303 -> 108078", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48303, + "TargetID": 108078, + "Directional": true + }] + }, { + "ID": 11531, + "SourceStructureID": 6155, + "TargetStructureID": 108079, + "Label": "6155-108079 via Ribbon Synapse from 48303 -> 108080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48303, + "TargetID": 108080, + "Directional": true + }] + }, { + "ID": 11532, + "SourceStructureID": 6155, + "TargetStructureID": 108081, + "Label": "6155-108081 via BC Conventional Synapse from 108084 -> 108085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108084, + "TargetID": 108085, + "Directional": true + }] + }, { + "ID": 11533, + "SourceStructureID": 6155, + "TargetStructureID": 108092, + "Label": "6155-108092 via Ribbon Synapse from 15546 -> 108093", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15546, + "TargetID": 108093, + "Directional": true + }] + }, { + "ID": 11534, + "SourceStructureID": 6155, + "TargetStructureID": 108117, + "Label": "6155-108117 via Ribbon Synapse from 15549 -> 108121", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15549, + "TargetID": 108121, + "Directional": true + }] + }, { + "ID": 11535, + "SourceStructureID": 6155, + "TargetStructureID": 108119, + "Label": "6155-108119 via Ribbon Synapse from 15550 -> 108120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15550, + "TargetID": 108120, + "Directional": true + }] + }, { + "ID": 11536, + "SourceStructureID": 6155, + "TargetStructureID": 108122, + "Label": "6155-108122 via Ribbon Synapse from 48293 -> 108123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48293, + "TargetID": 108123, + "Directional": true + }] + }, { + "ID": 11537, + "SourceStructureID": 6155, + "TargetStructureID": 108196, + "Label": "6155-108196 via Ribbon Synapse from 34785 -> 108198", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34785, + "TargetID": 108198, + "Directional": true + }] + }, { + "ID": 11538, + "SourceStructureID": 6155, + "TargetStructureID": 108286, + "Label": "6155-108286 via Ribbon Synapse from 15521 -> 108287", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15521, + "TargetID": 108287, + "Directional": true + }] + }, { + "ID": 11539, + "SourceStructureID": 6155, + "TargetStructureID": 108292, + "Label": "6155-108292 via Ribbon Synapse from 15521 -> 108293", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15521, + "TargetID": 108293, + "Directional": true + }] + }, { + "ID": 11540, + "SourceStructureID": 6155, + "TargetStructureID": 108296, + "Label": "6155-108296 via Ribbon Synapse from 15520 -> 108297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15520, + "TargetID": 108297, + "Directional": true + }] + }, { + "ID": 11541, + "SourceStructureID": 6155, + "TargetStructureID": 108301, + "Label": "6155-108301 via Ribbon Synapse from 15522 -> 108302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15522, + "TargetID": 108302, + "Directional": true + }] + }, { + "ID": 11542, + "SourceStructureID": 6155, + "TargetStructureID": 108325, + "Label": "6155-108325 via Ribbon Synapse from 15523 -> 108326", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15523, + "TargetID": 108326, + "Directional": true + }] + }, { + "ID": 11543, + "SourceStructureID": 6155, + "TargetStructureID": 108327, + "Label": "6155-108327 via Ribbon Synapse from 15525 -> 108329", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15525, + "TargetID": 108329, + "Directional": true + }] + }, { + "ID": 11544, + "SourceStructureID": 6155, + "TargetStructureID": 108339, + "Label": "6155-108339 via Ribbon Synapse from 49083 -> 108341", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49083, + "TargetID": 108341, + "Directional": true + }] + }, { + "ID": 11545, + "SourceStructureID": 6156, + "TargetStructureID": 318, + "Label": "6156-318 via Ribbon Synapse from 14099 -> 14098, 15852 -> 15853, 65190 -> 65191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14099, + "TargetID": 14098, + "Directional": true + }, { + "SourceID": 15852, + "TargetID": 15853, + "Directional": true + }, { + "SourceID": 65190, + "TargetID": 65191, + "Directional": true + }] + }, { + "ID": 11546, + "SourceStructureID": 6156, + "TargetStructureID": 390, + "Label": "6156-390 via Ribbon Synapse from 23199 -> 65106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23199, + "TargetID": 65106, + "Directional": true + }] + }, { + "ID": 11547, + "SourceStructureID": 6156, + "TargetStructureID": 514, + "Label": "6156-514 via Ribbon Synapse from 11622 -> 11597, 117625 -> 133371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11622, + "TargetID": 11597, + "Directional": true + }, { + "SourceID": 117625, + "TargetID": 133371, + "Directional": true + }] + }, { + "ID": 11548, + "SourceStructureID": 6156, + "TargetStructureID": 4890, + "Label": "6156-4890 via BC Conventional Synapse from 117575 -> 133465", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117575, + "TargetID": 133465, + "Directional": true + }] + }, { + "ID": 11549, + "SourceStructureID": 6156, + "TargetStructureID": 4890, + "Label": "6156-4890 via Ribbon Synapse from 18574 -> 9635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18574, + "TargetID": 9635, + "Directional": true + }] + }, { + "ID": 11550, + "SourceStructureID": 6156, + "TargetStructureID": 5117, + "Label": "6156-5117 via BC Conventional Synapse from 133228 -> 23233", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133228, + "TargetID": 23233, + "Directional": true + }] + }, { + "ID": 11551, + "SourceStructureID": 6156, + "TargetStructureID": 5117, + "Label": "6156-5117 via Ribbon Synapse from 23229 -> 133221, 23230 -> 23232, 23231 -> 23233, 23269 -> 69329, 28677 -> 133182, 28678 -> 133176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23229, + "TargetID": 133221, + "Directional": true + }, { + "SourceID": 23230, + "TargetID": 23232, + "Directional": true + }, { + "SourceID": 23231, + "TargetID": 23233, + "Directional": true + }, { + "SourceID": 23269, + "TargetID": 69329, + "Directional": true + }, { + "SourceID": 28677, + "TargetID": 133182, + "Directional": true + }, { + "SourceID": 28678, + "TargetID": 133176, + "Directional": true + }] + }, { + "ID": 11552, + "SourceStructureID": 6156, + "TargetStructureID": 5118, + "Label": "6156-5118 via Ribbon Synapse from 23231 -> 133238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23231, + "TargetID": 133238, + "Directional": true + }] + }, { + "ID": 11553, + "SourceStructureID": 6156, + "TargetStructureID": 5350, + "Label": "6156-5350 via Ribbon Synapse from 22574 -> 133279", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22574, + "TargetID": 133279, + "Directional": true + }] + }, { + "ID": 11554, + "SourceStructureID": 6156, + "TargetStructureID": 5575, + "Label": "6156-5575 via Ribbon Synapse from 11604 -> 22948, 11605 -> 22949, 23625 -> 22948, 24495 -> 24494, 24497 -> 24494, 133153 -> 22948, 133154 -> 22948, 133155 -> 22949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11604, + "TargetID": 22948, + "Directional": true + }, { + "SourceID": 11605, + "TargetID": 22949, + "Directional": true + }, { + "SourceID": 23625, + "TargetID": 22948, + "Directional": true + }, { + "SourceID": 24495, + "TargetID": 24494, + "Directional": true + }, { + "SourceID": 24497, + "TargetID": 24494, + "Directional": true + }, { + "SourceID": 133153, + "TargetID": 22948, + "Directional": true + }, { + "SourceID": 133154, + "TargetID": 22948, + "Directional": true + }, { + "SourceID": 133155, + "TargetID": 22949, + "Directional": true + }] + }, { + "ID": 11555, + "SourceStructureID": 6156, + "TargetStructureID": 8577, + "Label": "6156-8577 via Ribbon Synapse from 117566 -> 15927", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117566, + "TargetID": 15927, + "Directional": true + }] + }, { + "ID": 11556, + "SourceStructureID": 6156, + "TargetStructureID": 8579, + "Label": "6156-8579 via Ribbon Synapse from 23251 -> 61876, 23259 -> 133385", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23251, + "TargetID": 61876, + "Directional": true + }, { + "SourceID": 23259, + "TargetID": 133385, + "Directional": true + }] + }, { + "ID": 11557, + "SourceStructureID": 6156, + "TargetStructureID": 8720, + "Label": "6156-8720 via BC Conventional Synapse from 133388 -> 60103", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133388, + "TargetID": 60103, + "Directional": true + }] + }, { + "ID": 11558, + "SourceStructureID": 6156, + "TargetStructureID": 8720, + "Label": "6156-8720 via Ribbon Synapse from 15304 -> 15303, 22375 -> 15306, 28673 -> 63198, 117510 -> 133313", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15304, + "TargetID": 15303, + "Directional": true + }, { + "SourceID": 22375, + "TargetID": 15306, + "Directional": true + }, { + "SourceID": 28673, + "TargetID": 63198, + "Directional": true + }, { + "SourceID": 117510, + "TargetID": 133313, + "Directional": true + }] + }, { + "ID": 11559, + "SourceStructureID": 6156, + "TargetStructureID": 12208, + "Label": "6156-12208 via Ribbon Synapse from 11599 -> 22343", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11599, + "TargetID": 22343, + "Directional": true + }] + }, { + "ID": 11560, + "SourceStructureID": 6156, + "TargetStructureID": 13855, + "Label": "6156-13855 via Ribbon Synapse from 133477 -> 133478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133477, + "TargetID": 133478, + "Directional": true + }] + }, { + "ID": 11561, + "SourceStructureID": 6156, + "TargetStructureID": 15394, + "Label": "6156-15394 via Ribbon Synapse from 15858 -> 133421", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15858, + "TargetID": 133421, + "Directional": true + }] + }, { + "ID": 11562, + "SourceStructureID": 6156, + "TargetStructureID": 18282, + "Label": "6156-18282 via Ribbon Synapse from 18574 -> 18305, 18575 -> 18572", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18574, + "TargetID": 18305, + "Directional": true + }, { + "SourceID": 18575, + "TargetID": 18572, + "Directional": true + }] + }, { + "ID": 11563, + "SourceStructureID": 6156, + "TargetStructureID": 18576, + "Label": "6156-18576 via Ribbon Synapse from 18575 -> 18577, 20418 -> 100454, 133204 -> 133203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18575, + "TargetID": 18577, + "Directional": true + }, { + "SourceID": 20418, + "TargetID": 100454, + "Directional": true + }, { + "SourceID": 133204, + "TargetID": 133203, + "Directional": true + }] + }, { + "ID": 11564, + "SourceStructureID": 6156, + "TargetStructureID": 20413, + "Label": "6156-20413 via Ribbon Synapse from 20418 -> 20417", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20418, + "TargetID": 20417, + "Directional": true + }] + }, { + "ID": 11565, + "SourceStructureID": 6156, + "TargetStructureID": 22554, + "Label": "6156-22554 via Ribbon Synapse from 28654 -> 135148", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28654, + "TargetID": 135148, + "Directional": true + }] + }, { + "ID": 11566, + "SourceStructureID": 6156, + "TargetStructureID": 22974, + "Label": "6156-22974 via Ribbon Synapse from 11621 -> 23030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11621, + "TargetID": 23030, + "Directional": true + }] + }, { + "ID": 11567, + "SourceStructureID": 6156, + "TargetStructureID": 25374, + "Label": "6156-25374 via Ribbon Synapse from 25381 -> 25380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25381, + "TargetID": 25380, + "Directional": true + }] + }, { + "ID": 11568, + "SourceStructureID": 6156, + "TargetStructureID": 25440, + "Label": "6156-25440 via Ribbon Synapse from 23227 -> 25460, 28677 -> 133183", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23227, + "TargetID": 25460, + "Directional": true + }, { + "SourceID": 28677, + "TargetID": 133183, + "Directional": true + }] + }, { + "ID": 11569, + "SourceStructureID": 6156, + "TargetStructureID": 25861, + "Label": "6156-25861 via Ribbon Synapse from 23166 -> 32236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23166, + "TargetID": 32236, + "Directional": true + }] + }, { + "ID": 11570, + "SourceStructureID": 6156, + "TargetStructureID": 34601, + "Label": "6156-34601 via Ribbon Synapse from 60642 -> 60643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60642, + "TargetID": 60643, + "Directional": true + }] + }, { + "ID": 11571, + "SourceStructureID": 6156, + "TargetStructureID": 54727, + "Label": "6156-54727 via Ribbon Synapse from 23180 -> 54738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23180, + "TargetID": 54738, + "Directional": true + }] + }, { + "ID": 11572, + "SourceStructureID": 6156, + "TargetStructureID": 54744, + "Label": "6156-54744 via Ribbon Synapse from 23192 -> 133254, 23269 -> 54746", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23192, + "TargetID": 133254, + "Directional": true + }, { + "SourceID": 23269, + "TargetID": 54746, + "Directional": true + }] + }, { + "ID": 11573, + "SourceStructureID": 6156, + "TargetStructureID": 59422, + "Label": "6156-59422 via Ribbon Synapse from 23258 -> 59423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23258, + "TargetID": 59423, + "Directional": true + }] + }, { + "ID": 11574, + "SourceStructureID": 6156, + "TargetStructureID": 60201, + "Label": "6156-60201 via Ribbon Synapse from 23230 -> 133230, 23234 -> 60205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23230, + "TargetID": 133230, + "Directional": true + }, { + "SourceID": 23234, + "TargetID": 60205, + "Directional": true + }] + }, { + "ID": 11575, + "SourceStructureID": 6156, + "TargetStructureID": 60657, + "Label": "6156-60657 via Ribbon Synapse from 28678 -> 60659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28678, + "TargetID": 60659, + "Directional": true + }] + }, { + "ID": 11576, + "SourceStructureID": 6156, + "TargetStructureID": 61816, + "Label": "6156-61816 via Ribbon Synapse from 22375 -> 80737, 22376 -> 74052", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22375, + "TargetID": 80737, + "Directional": true + }, { + "SourceID": 22376, + "TargetID": 74052, + "Directional": true + }] + }, { + "ID": 11577, + "SourceStructureID": 6156, + "TargetStructureID": 61882, + "Label": "6156-61882 via Ribbon Synapse from 23257 -> 61885", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23257, + "TargetID": 61885, + "Directional": true + }] + }, { + "ID": 11578, + "SourceStructureID": 6156, + "TargetStructureID": 61898, + "Label": "6156-61898 via Ribbon Synapse from 23255 -> 61903, 23260 -> 61901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23255, + "TargetID": 61903, + "Directional": true + }, { + "SourceID": 23260, + "TargetID": 61901, + "Directional": true + }] + }, { + "ID": 11579, + "SourceStructureID": 6156, + "TargetStructureID": 61933, + "Label": "6156-61933 via Ribbon Synapse from 28692 -> 68641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28692, + "TargetID": 68641, + "Directional": true + }] + }, { + "ID": 11580, + "SourceStructureID": 6156, + "TargetStructureID": 65267, + "Label": "6156-65267 via Ribbon Synapse from 28637 -> 65301, 28638 -> 65301, 28639 -> 65301", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28637, + "TargetID": 65301, + "Directional": true + }, { + "SourceID": 28638, + "TargetID": 65301, + "Directional": true + }, { + "SourceID": 28639, + "TargetID": 65301, + "Directional": true + }] + }, { + "ID": 11581, + "SourceStructureID": 6156, + "TargetStructureID": 67812, + "Label": "6156-67812 via BC Conventional Synapse from 67821 -> 67822", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67821, + "TargetID": 67822, + "Directional": true + }] + }, { + "ID": 11582, + "SourceStructureID": 6156, + "TargetStructureID": 67871, + "Label": "6156-67871 via Ribbon Synapse from 28696 -> 133338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28696, + "TargetID": 133338, + "Directional": true + }] + }, { + "ID": 11583, + "SourceStructureID": 6156, + "TargetStructureID": 67874, + "Label": "6156-67874 via Ribbon Synapse from 133337 -> 67880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133337, + "TargetID": 67880, + "Directional": true + }] + }, { + "ID": 11584, + "SourceStructureID": 6156, + "TargetStructureID": 68042, + "Label": "6156-68042 via BC Conventional Synapse from 68048 -> 68049", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68048, + "TargetID": 68049, + "Directional": true + }] + }, { + "ID": 11585, + "SourceStructureID": 6156, + "TargetStructureID": 68077, + "Label": "6156-68077 via Ribbon Synapse from 28695 -> 68650", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28695, + "TargetID": 68650, + "Directional": true + }] + }, { + "ID": 11586, + "SourceStructureID": 6156, + "TargetStructureID": 68894, + "Label": "6156-68894 via Ribbon Synapse from 28692 -> 68896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28692, + "TargetID": 68896, + "Directional": true + }] + }, { + "ID": 11587, + "SourceStructureID": 6156, + "TargetStructureID": 70284, + "Label": "6156-70284 via Ribbon Synapse from 22323 -> 133148", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22323, + "TargetID": 133148, + "Directional": true + }] + }, { + "ID": 11588, + "SourceStructureID": 6156, + "TargetStructureID": 101325, + "Label": "6156-101325 via Ribbon Synapse from 25560 -> 101328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25560, + "TargetID": 101328, + "Directional": true + }] + }, { + "ID": 11589, + "SourceStructureID": 6156, + "TargetStructureID": 133192, + "Label": "6156-133192 via Ribbon Synapse from 23208 -> 133193, 23210 -> 133193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23208, + "TargetID": 133193, + "Directional": true + }, { + "SourceID": 23210, + "TargetID": 133193, + "Directional": true + }] + }, { + "ID": 11590, + "SourceStructureID": 6156, + "TargetStructureID": 133260, + "Label": "6156-133260 via Ribbon Synapse from 133259 -> 133261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133259, + "TargetID": 133261, + "Directional": true + }] + }, { + "ID": 11591, + "SourceStructureID": 6156, + "TargetStructureID": 133264, + "Label": "6156-133264 via Ribbon Synapse from 133259 -> 133265", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133259, + "TargetID": 133265, + "Directional": true + }] + }, { + "ID": 11592, + "SourceStructureID": 6156, + "TargetStructureID": 133304, + "Label": "6156-133304 via Ribbon Synapse from 133307 -> 133306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133307, + "TargetID": 133306, + "Directional": true + }] + }, { + "ID": 11593, + "SourceStructureID": 6156, + "TargetStructureID": 133364, + "Label": "6156-133364 via Ribbon Synapse from 23265 -> 133365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 23265, + "TargetID": 133365, + "Directional": true + }] + }, { + "ID": 11594, + "SourceStructureID": 6156, + "TargetStructureID": 133451, + "Label": "6156-133451 via Ribbon Synapse from 133450 -> 133453", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133450, + "TargetID": 133453, + "Directional": true + }] + }, { + "ID": 11595, + "SourceStructureID": 6158, + "TargetStructureID": 606, + "Label": "6158-606 via Ribbon Synapse from 47268 -> 47266, 47269 -> 47270", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47268, + "TargetID": 47266, + "Directional": true + }, { + "SourceID": 47269, + "TargetID": 47270, + "Directional": true + }] + }, { + "ID": 11596, + "SourceStructureID": 6162, + "TargetStructureID": 7594, + "Label": "6162-7594 via Ribbon Synapse from 29120 -> 55751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29120, + "TargetID": 55751, + "Directional": true + }] + }, { + "ID": 11597, + "SourceStructureID": 6162, + "TargetStructureID": 15796, + "Label": "6162-15796 via Ribbon Synapse from 19982 -> 19978, 20797 -> 20799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19982, + "TargetID": 19978, + "Directional": true + }, { + "SourceID": 20797, + "TargetID": 20799, + "Directional": true + }] + }, { + "ID": 11598, + "SourceStructureID": 6162, + "TargetStructureID": 35597, + "Label": "6162-35597 via Ribbon Synapse from 127715 -> 127714, 127717 -> 127716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127715, + "TargetID": 127714, + "Directional": true + }, { + "SourceID": 127717, + "TargetID": 127716, + "Directional": true + }] + }, { + "ID": 11599, + "SourceStructureID": 6162, + "TargetStructureID": 55232, + "Label": "6162-55232 via Ribbon Synapse from 29094 -> 55249", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29094, + "TargetID": 55249, + "Directional": true + }] + }, { + "ID": 11600, + "SourceStructureID": 6162, + "TargetStructureID": 87277, + "Label": "6162-87277 via Ribbon Synapse from 29122 -> 87290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29122, + "TargetID": 87290, + "Directional": true + }] + }, { + "ID": 11601, + "SourceStructureID": 6162, + "TargetStructureID": 87291, + "Label": "6162-87291 via Ribbon Synapse from 29122 -> 87292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29122, + "TargetID": 87292, + "Directional": true + }] + }, { + "ID": 11602, + "SourceStructureID": 6162, + "TargetStructureID": 110908, + "Label": "6162-110908 via Ribbon Synapse from 136306 -> 136307", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136306, + "TargetID": 136307, + "Directional": true + }] + }, { + "ID": 11603, + "SourceStructureID": 6162, + "TargetStructureID": 111078, + "Label": "6162-111078 via Ribbon Synapse from 29077 -> 111079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29077, + "TargetID": 111079, + "Directional": true + }] + }, { + "ID": 11604, + "SourceStructureID": 6162, + "TargetStructureID": 111080, + "Label": "6162-111080 via Ribbon Synapse from 29077 -> 111081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29077, + "TargetID": 111081, + "Directional": true + }] + }, { + "ID": 11605, + "SourceStructureID": 6163, + "TargetStructureID": 223, + "Label": "6163-223 via Ribbon Synapse from 35979 -> 35980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35979, + "TargetID": 35980, + "Directional": true + }] + }, { + "ID": 11606, + "SourceStructureID": 6163, + "TargetStructureID": 410, + "Label": "6163-410 via Ribbon Synapse from 17526 -> 17524, 17739 -> 38509, 17761 -> 17760, 17767 -> 17766, 17768 -> 17765, 19147 -> 19149", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17526, + "TargetID": 17524, + "Directional": true + }, { + "SourceID": 17739, + "TargetID": 38509, + "Directional": true + }, { + "SourceID": 17761, + "TargetID": 17760, + "Directional": true + }, { + "SourceID": 17767, + "TargetID": 17766, + "Directional": true + }, { + "SourceID": 17768, + "TargetID": 17765, + "Directional": true + }, { + "SourceID": 19147, + "TargetID": 19149, + "Directional": true + }] + }, { + "ID": 11607, + "SourceStructureID": 6163, + "TargetStructureID": 591, + "Label": "6163-591 via Ribbon Synapse from 19150 -> 10294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19150, + "TargetID": 10294, + "Directional": true + }] + }, { + "ID": 11608, + "SourceStructureID": 6163, + "TargetStructureID": 17527, + "Label": "6163-17527 via Ribbon Synapse from 17529 -> 17528, 17530 -> 17531, 17731 -> 17730, 17737 -> 17736, 17739 -> 17738, 18363 -> 18364, 19144 -> 19145, 19153 -> 19154", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17529, + "TargetID": 17528, + "Directional": true + }, { + "SourceID": 17530, + "TargetID": 17531, + "Directional": true + }, { + "SourceID": 17731, + "TargetID": 17730, + "Directional": true + }, { + "SourceID": 17737, + "TargetID": 17736, + "Directional": true + }, { + "SourceID": 17739, + "TargetID": 17738, + "Directional": true + }, { + "SourceID": 18363, + "TargetID": 18364, + "Directional": true + }, { + "SourceID": 19144, + "TargetID": 19145, + "Directional": true + }, { + "SourceID": 19153, + "TargetID": 19154, + "Directional": true + }] + }, { + "ID": 11609, + "SourceStructureID": 6163, + "TargetStructureID": 29791, + "Label": "6163-29791 via Ribbon Synapse from 18375 -> 29798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18375, + "TargetID": 29798, + "Directional": true + }] + }, { + "ID": 11610, + "SourceStructureID": 6164, + "TargetStructureID": 284, + "Label": "6164-284 via Ribbon Synapse from 17437 -> 17438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17437, + "TargetID": 17438, + "Directional": true + }] + }, { + "ID": 11611, + "SourceStructureID": 6164, + "TargetStructureID": 6153, + "Label": "6164-6153 via Ribbon Synapse from 11759 -> 11760, 17443 -> 17442, 17445 -> 17447, 17450 -> 17449, 17451 -> 17452, 17460 -> 17461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11759, + "TargetID": 11760, + "Directional": true + }, { + "SourceID": 17443, + "TargetID": 17442, + "Directional": true + }, { + "SourceID": 17445, + "TargetID": 17447, + "Directional": true + }, { + "SourceID": 17450, + "TargetID": 17449, + "Directional": true + }, { + "SourceID": 17451, + "TargetID": 17452, + "Directional": true + }, { + "SourceID": 17460, + "TargetID": 17461, + "Directional": true + }] + }, { + "ID": 11612, + "SourceStructureID": 6164, + "TargetStructureID": 7157, + "Label": "6164-7157 via Ribbon Synapse from 18186 -> 18185, 18201 -> 18200", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18186, + "TargetID": 18185, + "Directional": true + }, { + "SourceID": 18201, + "TargetID": 18200, + "Directional": true + }] + }, { + "ID": 11613, + "SourceStructureID": 6164, + "TargetStructureID": 114925, + "Label": "6164-114925 via Ribbon Synapse from 17445 -> 114933", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17445, + "TargetID": 114933, + "Directional": true + }] + }, { + "ID": 11614, + "SourceStructureID": 6165, + "TargetStructureID": 38718, + "Label": "6165-38718 via Ribbon Synapse from 38726 -> 38725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38726, + "TargetID": 38725, + "Directional": true + }] + }, { + "ID": 11615, + "SourceStructureID": 6165, + "TargetStructureID": 83803, + "Label": "6165-83803 via Ribbon Synapse from 38726 -> 83804", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38726, + "TargetID": 83804, + "Directional": true + }] + }, { + "ID": 11616, + "SourceStructureID": 6166, + "TargetStructureID": 8575, + "Label": "6166-8575 via BC Conventional Synapse from 62645 -> 62644", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62645, + "TargetID": 62644, + "Directional": true + }] + }, { + "ID": 11617, + "SourceStructureID": 6169, + "TargetStructureID": 138, + "Label": "6169-138 via Conventional from 14909 -> 2173", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14909, + "TargetID": 2173, + "Directional": true + }] + }, { + "ID": 11618, + "SourceStructureID": 6169, + "TargetStructureID": 165, + "Label": "6169-165 via Conventional from 20776 -> 20777, 21684 -> 20781", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20776, + "TargetID": 20777, + "Directional": true + }, { + "SourceID": 21684, + "TargetID": 20781, + "Directional": true + }] + }, { + "ID": 11619, + "SourceStructureID": 6169, + "TargetStructureID": 172, + "Label": "6169-172 via Conventional from 12227 -> 12218, 18408 -> 18407", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12227, + "TargetID": 12218, + "Directional": true + }, { + "SourceID": 18408, + "TargetID": 18407, + "Directional": true + }] + }, { + "ID": 11620, + "SourceStructureID": 6169, + "TargetStructureID": 173, + "Label": "6169-173 via Conventional from 11953 -> 11911, 11954 -> 11915, 11956 -> 11955, 12221 -> 11890, 12223 -> 11890, 12224 -> 12225, 60919 -> 11982, 60920 -> 11985, 60926 -> 60927, 88183 -> 5913, 88186 -> 88187, 88189 -> 88188, 136856 -> 136858, 136860 -> 136861, 136871 -> 136872", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11953, + "TargetID": 11911, + "Directional": true + }, { + "SourceID": 11954, + "TargetID": 11915, + "Directional": true + }, { + "SourceID": 11956, + "TargetID": 11955, + "Directional": true + }, { + "SourceID": 12221, + "TargetID": 11890, + "Directional": true + }, { + "SourceID": 12223, + "TargetID": 11890, + "Directional": true + }, { + "SourceID": 12224, + "TargetID": 12225, + "Directional": true + }, { + "SourceID": 60919, + "TargetID": 11982, + "Directional": true + }, { + "SourceID": 60920, + "TargetID": 11985, + "Directional": true + }, { + "SourceID": 60926, + "TargetID": 60927, + "Directional": true + }, { + "SourceID": 88183, + "TargetID": 5913, + "Directional": true + }, { + "SourceID": 88186, + "TargetID": 88187, + "Directional": true + }, { + "SourceID": 88189, + "TargetID": 88188, + "Directional": true + }, { + "SourceID": 136856, + "TargetID": 136858, + "Directional": true + }, { + "SourceID": 136860, + "TargetID": 136861, + "Directional": true + }, { + "SourceID": 136871, + "TargetID": 136872, + "Directional": true + }] + }, { + "ID": 11621, + "SourceStructureID": 6169, + "TargetStructureID": 181, + "Label": "6169-181 via Conventional from 20421 -> 20422, 20441 -> 20442", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20421, + "TargetID": 20422, + "Directional": true + }, { + "SourceID": 20441, + "TargetID": 20442, + "Directional": true + }] + }, { + "ID": 11622, + "SourceStructureID": 6169, + "TargetStructureID": 992, + "Label": "6169-992 via Conventional from 29417 -> 29425, 29417 -> 29433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29417, + "TargetID": 29425, + "Directional": true + }, { + "SourceID": 29417, + "TargetID": 29433, + "Directional": true + }] + }, { + "ID": 11623, + "SourceStructureID": 6169, + "TargetStructureID": 4568, + "Label": "6169-4568 via Conventional from 9472 -> 11554, 9476 -> 20778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9472, + "TargetID": 11554, + "Directional": true + }, { + "SourceID": 9476, + "TargetID": 20778, + "Directional": true + }] + }, { + "ID": 11624, + "SourceStructureID": 6169, + "TargetStructureID": 6169, + "Label": "6169-6169 via Conventional from 88185 -> 88184", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88185, + "TargetID": 88184, + "Directional": true + }] + }, { + "ID": 11625, + "SourceStructureID": 6169, + "TargetStructureID": 9787, + "Label": "6169-9787 via Conventional from 18076 -> 12071, 60922 -> 18086", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18076, + "TargetID": 12071, + "Directional": true + }, { + "SourceID": 60922, + "TargetID": 18086, + "Directional": true + }] + }, { + "ID": 11626, + "SourceStructureID": 6169, + "TargetStructureID": 11030, + "Label": "6169-11030 via Conventional from 77661 -> 77662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77661, + "TargetID": 77662, + "Directional": true + }] + }, { + "ID": 11627, + "SourceStructureID": 6169, + "TargetStructureID": 12203, + "Label": "6169-12203 via Conventional from 18813 -> 15636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18813, + "TargetID": 15636, + "Directional": true + }] + }, { + "ID": 11628, + "SourceStructureID": 6169, + "TargetStructureID": 91280, + "Label": "6169-91280 via Conventional from 91300 -> 91301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91300, + "TargetID": 91301, + "Directional": true + }] + }, { + "ID": 11629, + "SourceStructureID": 6169, + "TargetStructureID": 132220, + "Label": "6169-132220 via Conventional from 60853 -> 132227, 60856 -> 132226", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60853, + "TargetID": 132227, + "Directional": true + }, { + "SourceID": 60856, + "TargetID": 132226, + "Directional": true + }] + }, { + "ID": 11630, + "SourceStructureID": 6203, + "TargetStructureID": 162, + "Label": "6203-162 via Ribbon Synapse from 12001 -> 11867, 52644 -> 52643", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12001, + "TargetID": 11867, + "Directional": true + }, { + "SourceID": 52644, + "TargetID": 52643, + "Directional": true + }] + }, { + "ID": 11631, + "SourceStructureID": 6203, + "TargetStructureID": 606, + "Label": "6203-606 via Ribbon Synapse from 51942 -> 51943, 54617 -> 54618", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51942, + "TargetID": 51943, + "Directional": true + }, { + "SourceID": 54617, + "TargetID": 54618, + "Directional": true + }] + }, { + "ID": 11632, + "SourceStructureID": 6203, + "TargetStructureID": 9769, + "Label": "6203-9769 via Ribbon Synapse from 52628 -> 52626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52628, + "TargetID": 52626, + "Directional": true + }] + }, { + "ID": 11633, + "SourceStructureID": 6203, + "TargetStructureID": 33272, + "Label": "6203-33272 via Ribbon Synapse from 11973 -> 33273", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11973, + "TargetID": 33273, + "Directional": true + }] + }, { + "ID": 11634, + "SourceStructureID": 6203, + "TargetStructureID": 43716, + "Label": "6203-43716 via Ribbon Synapse from 123671 -> 123670, 123674 -> 123673", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123671, + "TargetID": 123670, + "Directional": true + }, { + "SourceID": 123674, + "TargetID": 123673, + "Directional": true + }] + }, { + "ID": 11635, + "SourceStructureID": 6203, + "TargetStructureID": 56841, + "Label": "6203-56841 via Ribbon Synapse from 57215 -> 57216", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57215, + "TargetID": 57216, + "Directional": true + }] + }, { + "ID": 11636, + "SourceStructureID": 6203, + "TargetStructureID": 120945, + "Label": "6203-120945 via Ribbon Synapse from 57261 -> 120947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57261, + "TargetID": 120947, + "Directional": true + }] + }, { + "ID": 11637, + "SourceStructureID": 6203, + "TargetStructureID": 123675, + "Label": "6203-123675 via Ribbon Synapse from 123674 -> 123676", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123674, + "TargetID": 123676, + "Directional": true + }] + }, { + "ID": 11638, + "SourceStructureID": 6204, + "TargetStructureID": 162, + "Label": "6204-162 via Ribbon Synapse from 52642 -> 52641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52642, + "TargetID": 52641, + "Directional": true + }] + }, { + "ID": 11639, + "SourceStructureID": 6204, + "TargetStructureID": 606, + "Label": "6204-606 via Ribbon Synapse from 51922 -> 51921, 51937 -> 51938, 51954 -> 51949, 51956 -> 51957, 51967 -> 51968, 51985 -> 51986, 51987 -> 51982, 51998 -> 51999", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51922, + "TargetID": 51921, + "Directional": true + }, { + "SourceID": 51937, + "TargetID": 51938, + "Directional": true + }, { + "SourceID": 51954, + "TargetID": 51949, + "Directional": true + }, { + "SourceID": 51956, + "TargetID": 51957, + "Directional": true + }, { + "SourceID": 51967, + "TargetID": 51968, + "Directional": true + }, { + "SourceID": 51985, + "TargetID": 51986, + "Directional": true + }, { + "SourceID": 51987, + "TargetID": 51982, + "Directional": true + }, { + "SourceID": 51998, + "TargetID": 51999, + "Directional": true + }] + }, { + "ID": 11640, + "SourceStructureID": 6204, + "TargetStructureID": 5442, + "Label": "6204-5442 via Ribbon Synapse from 74439 -> 74440", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74439, + "TargetID": 74440, + "Directional": true + }] + }, { + "ID": 11641, + "SourceStructureID": 6204, + "TargetStructureID": 9769, + "Label": "6204-9769 via Ribbon Synapse from 52825 -> 52824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52825, + "TargetID": 52824, + "Directional": true + }] + }, { + "ID": 11642, + "SourceStructureID": 6204, + "TargetStructureID": 16073, + "Label": "6204-16073 via Ribbon Synapse from 52121 -> 16076", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52121, + "TargetID": 16076, + "Directional": true + }] + }, { + "ID": 11643, + "SourceStructureID": 6204, + "TargetStructureID": 32773, + "Label": "6204-32773 via Ribbon Synapse from 101702 -> 32782", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 101702, + "TargetID": 32782, + "Directional": true + }] + }, { + "ID": 11644, + "SourceStructureID": 6204, + "TargetStructureID": 33039, + "Label": "6204-33039 via Ribbon Synapse from 33051 -> 33050", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33051, + "TargetID": 33050, + "Directional": true + }] + }, { + "ID": 11645, + "SourceStructureID": 6204, + "TargetStructureID": 33714, + "Label": "6204-33714 via Ribbon Synapse from 33717 -> 33715", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33717, + "TargetID": 33715, + "Directional": true + }] + }, { + "ID": 11646, + "SourceStructureID": 6204, + "TargetStructureID": 35343, + "Label": "6204-35343 via Ribbon Synapse from 35347 -> 35346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35347, + "TargetID": 35346, + "Directional": true + }] + }, { + "ID": 11647, + "SourceStructureID": 6204, + "TargetStructureID": 51923, + "Label": "6204-51923 via Ribbon Synapse from 51926 -> 51927", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51926, + "TargetID": 51927, + "Directional": true + }] + }, { + "ID": 11648, + "SourceStructureID": 6204, + "TargetStructureID": 68539, + "Label": "6204-68539 via Ribbon Synapse from 52123 -> 75959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52123, + "TargetID": 75959, + "Directional": true + }] + }, { + "ID": 11649, + "SourceStructureID": 6204, + "TargetStructureID": 75960, + "Label": "6204-75960 via Ribbon Synapse from 52123 -> 75961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52123, + "TargetID": 75961, + "Directional": true + }] + }, { + "ID": 11650, + "SourceStructureID": 6204, + "TargetStructureID": 88395, + "Label": "6204-88395 via Ribbon Synapse from 51987 -> 88421", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51987, + "TargetID": 88421, + "Directional": true + }] + }, { + "ID": 11651, + "SourceStructureID": 6300, + "TargetStructureID": 6047, + "Label": "6300-6047 via Conventional from 113701 -> 113702", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113701, + "TargetID": 113702, + "Directional": true + }] + }, { + "ID": 11652, + "SourceStructureID": 6406, + "TargetStructureID": 514, + "Label": "6406-514 via Conventional from 6418 -> 1006, 6419 -> 1441", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6418, + "TargetID": 1006, + "Directional": true + }, { + "SourceID": 6419, + "TargetID": 1441, + "Directional": true + }] + }, { + "ID": 11653, + "SourceStructureID": 6406, + "TargetStructureID": 5278, + "Label": "6406-5278 via Conventional from 20094 -> 20095", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20094, + "TargetID": 20095, + "Directional": true + }] + }, { + "ID": 11654, + "SourceStructureID": 6406, + "TargetStructureID": 20681, + "Label": "6406-20681 via Conventional from 6415 -> 20698", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6415, + "TargetID": 20698, + "Directional": true + }] + }, { + "ID": 11655, + "SourceStructureID": 6561, + "TargetStructureID": 223, + "Label": "6561-223 via Ribbon Synapse from 8326 -> 17312, 17307 -> 17304, 17309 -> 17308, 17318 -> 17317, 17751 -> 18491, 17843 -> 17842, 17892 -> 17668, 18487 -> 18488, 18489 -> 18490, 18493 -> 18494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8326, + "TargetID": 17312, + "Directional": true + }, { + "SourceID": 17307, + "TargetID": 17304, + "Directional": true + }, { + "SourceID": 17309, + "TargetID": 17308, + "Directional": true + }, { + "SourceID": 17318, + "TargetID": 17317, + "Directional": true + }, { + "SourceID": 17751, + "TargetID": 18491, + "Directional": true + }, { + "SourceID": 17843, + "TargetID": 17842, + "Directional": true + }, { + "SourceID": 17892, + "TargetID": 17668, + "Directional": true + }, { + "SourceID": 18487, + "TargetID": 18488, + "Directional": true + }, { + "SourceID": 18489, + "TargetID": 18490, + "Directional": true + }, { + "SourceID": 18493, + "TargetID": 18494, + "Directional": true + }] + }, { + "ID": 11656, + "SourceStructureID": 6561, + "TargetStructureID": 410, + "Label": "6561-410 via Ribbon Synapse from 8303 -> 17335, 8306 -> 17334, 8312 -> 17333, 8333 -> 17826, 17812 -> 17811, 17814 -> 17813, 17816 -> 17815, 17823 -> 17822, 17824 -> 17825, 17828 -> 17827, 17891 -> 17669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8303, + "TargetID": 17335, + "Directional": true + }, { + "SourceID": 8306, + "TargetID": 17334, + "Directional": true + }, { + "SourceID": 8312, + "TargetID": 17333, + "Directional": true + }, { + "SourceID": 8333, + "TargetID": 17826, + "Directional": true + }, { + "SourceID": 17812, + "TargetID": 17811, + "Directional": true + }, { + "SourceID": 17814, + "TargetID": 17813, + "Directional": true + }, { + "SourceID": 17816, + "TargetID": 17815, + "Directional": true + }, { + "SourceID": 17823, + "TargetID": 17822, + "Directional": true + }, { + "SourceID": 17824, + "TargetID": 17825, + "Directional": true + }, { + "SourceID": 17828, + "TargetID": 17827, + "Directional": true + }, { + "SourceID": 17891, + "TargetID": 17669, + "Directional": true + }] + }, { + "ID": 11657, + "SourceStructureID": 6561, + "TargetStructureID": 476, + "Label": "6561-476 via Ribbon Synapse from 6562 -> 2388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6562, + "TargetID": 2388, + "Directional": true + }] + }, { + "ID": 11658, + "SourceStructureID": 6561, + "TargetStructureID": 591, + "Label": "6561-591 via Ribbon Synapse from 6562 -> 6551, 8299 -> 8300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6562, + "TargetID": 6551, + "Directional": true + }, { + "SourceID": 8299, + "TargetID": 8300, + "Directional": true + }] + }, { + "ID": 11659, + "SourceStructureID": 6561, + "TargetStructureID": 6153, + "Label": "6561-6153 via Ribbon Synapse from 8312 -> 17350, 8314 -> 17353, 8317 -> 17321, 8318 -> 17322, 17326 -> 17325, 17787 -> 17786, 17828 -> 17831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8312, + "TargetID": 17350, + "Directional": true + }, { + "SourceID": 8314, + "TargetID": 17353, + "Directional": true + }, { + "SourceID": 8317, + "TargetID": 17321, + "Directional": true + }, { + "SourceID": 8318, + "TargetID": 17322, + "Directional": true + }, { + "SourceID": 17326, + "TargetID": 17325, + "Directional": true + }, { + "SourceID": 17787, + "TargetID": 17786, + "Directional": true + }, { + "SourceID": 17828, + "TargetID": 17831, + "Directional": true + }] + }, { + "ID": 11660, + "SourceStructureID": 6589, + "TargetStructureID": 525, + "Label": "6589-525 via BC Conventional Synapse from 120019 -> 132625", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120019, + "TargetID": 132625, + "Directional": true + }] + }, { + "ID": 11661, + "SourceStructureID": 6589, + "TargetStructureID": 525, + "Label": "6589-525 via Ribbon Synapse from 9547 -> 6228, 14575 -> 9729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9547, + "TargetID": 6228, + "Directional": true + }, { + "SourceID": 14575, + "TargetID": 9729, + "Directional": true + }] + }, { + "ID": 11662, + "SourceStructureID": 6589, + "TargetStructureID": 5118, + "Label": "6589-5118 via Ribbon Synapse from 6991 -> 6454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6991, + "TargetID": 6454, + "Directional": true + }] + }, { + "ID": 11663, + "SourceStructureID": 6589, + "TargetStructureID": 5345, + "Label": "6589-5345 via Ribbon Synapse from 14576 -> 14589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14576, + "TargetID": 14589, + "Directional": true + }] + }, { + "ID": 11664, + "SourceStructureID": 6589, + "TargetStructureID": 5350, + "Label": "6589-5350 via Ribbon Synapse from 6596 -> 13800", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6596, + "TargetID": 13800, + "Directional": true + }] + }, { + "ID": 11665, + "SourceStructureID": 6589, + "TargetStructureID": 8033, + "Label": "6589-8033 via Ribbon Synapse from 132670 -> 132671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132670, + "TargetID": 132671, + "Directional": true + }] + }, { + "ID": 11666, + "SourceStructureID": 6589, + "TargetStructureID": 11531, + "Label": "6589-11531 via Ribbon Synapse from 6590 -> 11532", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6590, + "TargetID": 11532, + "Directional": true + }] + }, { + "ID": 11667, + "SourceStructureID": 6589, + "TargetStructureID": 13855, + "Label": "6589-13855 via Ribbon Synapse from 9586 -> 132761, 9591 -> 132638, 81480 -> 132747, 123736 -> 132729, 123737 -> 132710, 123755 -> 70816, 132718 -> 132717, 132769 -> 132770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9586, + "TargetID": 132761, + "Directional": true + }, { + "SourceID": 9591, + "TargetID": 132638, + "Directional": true + }, { + "SourceID": 81480, + "TargetID": 132747, + "Directional": true + }, { + "SourceID": 123736, + "TargetID": 132729, + "Directional": true + }, { + "SourceID": 123737, + "TargetID": 132710, + "Directional": true + }, { + "SourceID": 123755, + "TargetID": 70816, + "Directional": true + }, { + "SourceID": 132718, + "TargetID": 132717, + "Directional": true + }, { + "SourceID": 132769, + "TargetID": 132770, + "Directional": true + }] + }, { + "ID": 11668, + "SourceStructureID": 6589, + "TargetStructureID": 22554, + "Label": "6589-22554 via BC Conventional Synapse from 60886 -> 22562, 132684 -> 132685", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60886, + "TargetID": 22562, + "Directional": true + }, { + "SourceID": 132684, + "TargetID": 132685, + "Directional": true + }] + }, { + "ID": 11669, + "SourceStructureID": 6589, + "TargetStructureID": 22554, + "Label": "6589-22554 via Ribbon Synapse from 60888 -> 22559, 120032 -> 22558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60888, + "TargetID": 22559, + "Directional": true + }, { + "SourceID": 120032, + "TargetID": 22558, + "Directional": true + }] + }, { + "ID": 11670, + "SourceStructureID": 6589, + "TargetStructureID": 40469, + "Label": "6589-40469 via Ribbon Synapse from 132670 -> 40470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132670, + "TargetID": 40470, + "Directional": true + }] + }, { + "ID": 11671, + "SourceStructureID": 6589, + "TargetStructureID": 54744, + "Label": "6589-54744 via Ribbon Synapse from 6600 -> 54761, 6602 -> 54760, 9578 -> 132759, 123737 -> 132711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6600, + "TargetID": 54761, + "Directional": true + }, { + "SourceID": 6602, + "TargetID": 54760, + "Directional": true + }, { + "SourceID": 9578, + "TargetID": 132759, + "Directional": true + }, { + "SourceID": 123737, + "TargetID": 132711, + "Directional": true + }] + }, { + "ID": 11672, + "SourceStructureID": 6589, + "TargetStructureID": 63371, + "Label": "6589-63371 via Ribbon Synapse from 63374 -> 63372", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63374, + "TargetID": 63372, + "Directional": true + }] + }, { + "ID": 11673, + "SourceStructureID": 6589, + "TargetStructureID": 64357, + "Label": "6589-64357 via Ribbon Synapse from 60889 -> 132649", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60889, + "TargetID": 132649, + "Directional": true + }] + }, { + "ID": 11674, + "SourceStructureID": 6589, + "TargetStructureID": 70833, + "Label": "6589-70833 via Ribbon Synapse from 70858 -> 70859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70858, + "TargetID": 70859, + "Directional": true + }] + }, { + "ID": 11675, + "SourceStructureID": 6589, + "TargetStructureID": 70868, + "Label": "6589-70868 via Ribbon Synapse from 123755 -> 132735", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123755, + "TargetID": 132735, + "Directional": true + }] + }, { + "ID": 11676, + "SourceStructureID": 6589, + "TargetStructureID": 92331, + "Label": "6589-92331 via Ribbon Synapse from 9591 -> 132637", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9591, + "TargetID": 132637, + "Directional": true + }] + }, { + "ID": 11677, + "SourceStructureID": 6589, + "TargetStructureID": 95701, + "Label": "6589-95701 via Ribbon Synapse from 6590 -> 95750, 6596 -> 132738, 6604 -> 95702, 9534 -> 95747, 9538 -> 132748", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6590, + "TargetID": 95750, + "Directional": true + }, { + "SourceID": 6596, + "TargetID": 132738, + "Directional": true + }, { + "SourceID": 6604, + "TargetID": 95702, + "Directional": true + }, { + "SourceID": 9534, + "TargetID": 95747, + "Directional": true + }, { + "SourceID": 9538, + "TargetID": 132748, + "Directional": true + }] + }, { + "ID": 11678, + "SourceStructureID": 6589, + "TargetStructureID": 121541, + "Label": "6589-121541 via Ribbon Synapse from 9570 -> 121553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9570, + "TargetID": 121553, + "Directional": true + }] + }, { + "ID": 11679, + "SourceStructureID": 6589, + "TargetStructureID": 132712, + "Label": "6589-132712 via Ribbon Synapse from 9566 -> 132713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9566, + "TargetID": 132713, + "Directional": true + }] + }, { + "ID": 11680, + "SourceStructureID": 6589, + "TargetStructureID": 132722, + "Label": "6589-132722 via Ribbon Synapse from 9565 -> 132723, 132721 -> 132723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9565, + "TargetID": 132723, + "Directional": true + }, { + "SourceID": 132721, + "TargetID": 132723, + "Directional": true + }] + }, { + "ID": 11681, + "SourceStructureID": 6589, + "TargetStructureID": 132740, + "Label": "6589-132740 via BC Conventional Synapse from 132741 -> 132742", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132741, + "TargetID": 132742, + "Directional": true + }] + }, { + "ID": 11682, + "SourceStructureID": 6617, + "TargetStructureID": 304, + "Label": "6617-304 via Ribbon Synapse from 17289 -> 17288, 17290 -> 17291, 17294 -> 17293, 17574 -> 17573, 17683 -> 17682, 17723 -> 17722, 18331 -> 18330, 18874 -> 18881, 18893 -> 18894", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17289, + "TargetID": 17288, + "Directional": true + }, { + "SourceID": 17290, + "TargetID": 17291, + "Directional": true + }, { + "SourceID": 17294, + "TargetID": 17293, + "Directional": true + }, { + "SourceID": 17574, + "TargetID": 17573, + "Directional": true + }, { + "SourceID": 17683, + "TargetID": 17682, + "Directional": true + }, { + "SourceID": 17723, + "TargetID": 17722, + "Directional": true + }, { + "SourceID": 18331, + "TargetID": 18330, + "Directional": true + }, { + "SourceID": 18874, + "TargetID": 18881, + "Directional": true + }, { + "SourceID": 18893, + "TargetID": 18894, + "Directional": true + }] + }, { + "ID": 11683, + "SourceStructureID": 6617, + "TargetStructureID": 410, + "Label": "6617-410 via Ribbon Synapse from 17566 -> 17565, 17707 -> 17706, 17711 -> 17710, 17716 -> 17715, 18346 -> 17656", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17566, + "TargetID": 17565, + "Directional": true + }, { + "SourceID": 17707, + "TargetID": 17706, + "Directional": true + }, { + "SourceID": 17711, + "TargetID": 17710, + "Directional": true + }, { + "SourceID": 17716, + "TargetID": 17715, + "Directional": true + }, { + "SourceID": 18346, + "TargetID": 17656, + "Directional": true + }] + }, { + "ID": 11684, + "SourceStructureID": 6617, + "TargetStructureID": 2610, + "Label": "6617-2610 via Ribbon Synapse from 18874 -> 18877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18874, + "TargetID": 18877, + "Directional": true + }] + }, { + "ID": 11685, + "SourceStructureID": 6617, + "TargetStructureID": 32660, + "Label": "6617-32660 via Ribbon Synapse from 6625 -> 32665", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6625, + "TargetID": 32665, + "Directional": true + }] + }, { + "ID": 11686, + "SourceStructureID": 6618, + "TargetStructureID": 304, + "Label": "6618-304 via Ribbon Synapse from 17743 -> 17744, 18919 -> 18920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17743, + "TargetID": 17744, + "Directional": true + }, { + "SourceID": 18919, + "TargetID": 18920, + "Directional": true + }] + }, { + "ID": 11687, + "SourceStructureID": 6618, + "TargetStructureID": 410, + "Label": "6618-410 via Ribbon Synapse from 17701 -> 17700, 17704 -> 17703, 17709 -> 17708, 18335 -> 17578, 18337 -> 18336, 18340 -> 18339, 18905 -> 18906, 18918 -> 22486, 22485 -> 22487, 22499 -> 22498", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17701, + "TargetID": 17700, + "Directional": true + }, { + "SourceID": 17704, + "TargetID": 17703, + "Directional": true + }, { + "SourceID": 17709, + "TargetID": 17708, + "Directional": true + }, { + "SourceID": 18335, + "TargetID": 17578, + "Directional": true + }, { + "SourceID": 18337, + "TargetID": 18336, + "Directional": true + }, { + "SourceID": 18340, + "TargetID": 18339, + "Directional": true + }, { + "SourceID": 18905, + "TargetID": 18906, + "Directional": true + }, { + "SourceID": 18918, + "TargetID": 22486, + "Directional": true + }, { + "SourceID": 22485, + "TargetID": 22487, + "Directional": true + }, { + "SourceID": 22499, + "TargetID": 22498, + "Directional": true + }] + }, { + "ID": 11688, + "SourceStructureID": 6618, + "TargetStructureID": 4850, + "Label": "6618-4850 via Ribbon Synapse from 18900 -> 30714", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18900, + "TargetID": 30714, + "Directional": true + }] + }, { + "ID": 11689, + "SourceStructureID": 6618, + "TargetStructureID": 29791, + "Label": "6618-29791 via Ribbon Synapse from 18908 -> 29794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18908, + "TargetID": 29794, + "Directional": true + }] + }, { + "ID": 11690, + "SourceStructureID": 6618, + "TargetStructureID": 40919, + "Label": "6618-40919 via Ribbon Synapse from 18901 -> 60507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18901, + "TargetID": 60507, + "Directional": true + }] + }, { + "ID": 11691, + "SourceStructureID": 6656, + "TargetStructureID": 421, + "Label": "6656-421 via BC Conventional Synapse from 31857 -> 31856", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31857, + "TargetID": 31856, + "Directional": true + }] + }, { + "ID": 11692, + "SourceStructureID": 6909, + "TargetStructureID": 7594, + "Label": "6909-7594 via Ribbon Synapse from 38220 -> 25161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38220, + "TargetID": 25161, + "Directional": true + }] + }, { + "ID": 11693, + "SourceStructureID": 6910, + "TargetStructureID": 42951, + "Label": "6910-42951 via Ribbon Synapse from 42998 -> 42994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42998, + "TargetID": 42994, + "Directional": true + }] + }, { + "ID": 11694, + "SourceStructureID": 6911, + "TargetStructureID": 7345, + "Label": "6911-7345 via Ribbon Synapse from 33654 -> 56576, 56579 -> 56578", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33654, + "TargetID": 56576, + "Directional": true + }, { + "SourceID": 56579, + "TargetID": 56578, + "Directional": true + }] + }, { + "ID": 11695, + "SourceStructureID": 6912, + "TargetStructureID": 2064, + "Label": "6912-2064 via Ribbon Synapse from 6922 -> 13192, 51059 -> 13196", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6922, + "TargetID": 13192, + "Directional": true + }, { + "SourceID": 51059, + "TargetID": 13196, + "Directional": true + }] + }, { + "ID": 11696, + "SourceStructureID": 6912, + "TargetStructureID": 7594, + "Label": "6912-7594 via Ribbon Synapse from 25125 -> 25124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25125, + "TargetID": 25124, + "Directional": true + }] + }, { + "ID": 11697, + "SourceStructureID": 6912, + "TargetStructureID": 25869, + "Label": "6912-25869 via Ribbon Synapse from 6937 -> 98609", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 6937, + "TargetID": 98609, + "Directional": true + }] + }, { + "ID": 11698, + "SourceStructureID": 6912, + "TargetStructureID": 32379, + "Label": "6912-32379 via Ribbon Synapse from 51075 -> 101689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51075, + "TargetID": 101689, + "Directional": true + }] + }, { + "ID": 11699, + "SourceStructureID": 6912, + "TargetStructureID": 33127, + "Label": "6912-33127 via Ribbon Synapse from 33137 -> 33136", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33137, + "TargetID": 33136, + "Directional": true + }] + }, { + "ID": 11700, + "SourceStructureID": 6912, + "TargetStructureID": 35068, + "Label": "6912-35068 via BC Conventional Synapse from 123180 -> 35070", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123180, + "TargetID": 35070, + "Directional": true + }] + }, { + "ID": 11701, + "SourceStructureID": 6912, + "TargetStructureID": 35068, + "Label": "6912-35068 via Ribbon Synapse from 35074 -> 35071", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35074, + "TargetID": 35071, + "Directional": true + }] + }, { + "ID": 11702, + "SourceStructureID": 6912, + "TargetStructureID": 69162, + "Label": "6912-69162 via Ribbon Synapse from 48370 -> 69254, 51147 -> 69250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48370, + "TargetID": 69254, + "Directional": true + }, { + "SourceID": 51147, + "TargetID": 69250, + "Directional": true + }] + }, { + "ID": 11703, + "SourceStructureID": 6957, + "TargetStructureID": 42866, + "Label": "6957-42866 via Ribbon Synapse from 42913 -> 42868", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42913, + "TargetID": 42868, + "Directional": true + }] + }, { + "ID": 11704, + "SourceStructureID": 6957, + "TargetStructureID": 42890, + "Label": "6957-42890 via Ribbon Synapse from 122052 -> 122053", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122052, + "TargetID": 122053, + "Directional": true + }] + }, { + "ID": 11705, + "SourceStructureID": 6957, + "TargetStructureID": 42895, + "Label": "6957-42895 via Ribbon Synapse from 42919 -> 42906, 42921 -> 42922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42919, + "TargetID": 42906, + "Directional": true + }, { + "SourceID": 42921, + "TargetID": 42922, + "Directional": true + }] + }, { + "ID": 11706, + "SourceStructureID": 6958, + "TargetStructureID": 606, + "Label": "6958-606 via Ribbon Synapse from 51832 -> 51835, 51833 -> 51834, 117945 -> 51795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51832, + "TargetID": 51835, + "Directional": true + }, { + "SourceID": 51833, + "TargetID": 51834, + "Directional": true + }, { + "SourceID": 117945, + "TargetID": 51795, + "Directional": true + }] + }, { + "ID": 11707, + "SourceStructureID": 6958, + "TargetStructureID": 5117, + "Label": "6958-5117 via Ribbon Synapse from 116573 -> 116572, 116574 -> 116572, 117939 -> 117946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116573, + "TargetID": 116572, + "Directional": true + }, { + "SourceID": 116574, + "TargetID": 116572, + "Directional": true + }, { + "SourceID": 117939, + "TargetID": 117946, + "Directional": true + }] + }, { + "ID": 11708, + "SourceStructureID": 6958, + "TargetStructureID": 5374, + "Label": "6958-5374 via Ribbon Synapse from 20450 -> 20446, 20452 -> 20449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20450, + "TargetID": 20446, + "Directional": true + }, { + "SourceID": 20452, + "TargetID": 20449, + "Directional": true + }] + }, { + "ID": 11709, + "SourceStructureID": 6958, + "TargetStructureID": 8579, + "Label": "6958-8579 via Ribbon Synapse from 118042 -> 62947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118042, + "TargetID": 62947, + "Directional": true + }] + }, { + "ID": 11710, + "SourceStructureID": 6958, + "TargetStructureID": 8589, + "Label": "6958-8589 via BC Conventional Synapse from 70475 -> 70478", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70475, + "TargetID": 70478, + "Directional": true + }] + }, { + "ID": 11711, + "SourceStructureID": 6958, + "TargetStructureID": 63978, + "Label": "6958-63978 via Ribbon Synapse from 56413 -> 63995", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56413, + "TargetID": 63995, + "Directional": true + }] + }, { + "ID": 11712, + "SourceStructureID": 6958, + "TargetStructureID": 122768, + "Label": "6958-122768 via Ribbon Synapse from 118032 -> 122791", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118032, + "TargetID": 122791, + "Directional": true + }] + }, { + "ID": 11713, + "SourceStructureID": 6965, + "TargetStructureID": 606, + "Label": "6965-606 via Ribbon Synapse from 54424 -> 54422", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54424, + "TargetID": 54422, + "Directional": true + }] + }, { + "ID": 11714, + "SourceStructureID": 6965, + "TargetStructureID": 5413, + "Label": "6965-5413 via Ribbon Synapse from 121942 -> 130918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121942, + "TargetID": 130918, + "Directional": true + }] + }, { + "ID": 11715, + "SourceStructureID": 6965, + "TargetStructureID": 11238, + "Label": "6965-11238 via Ribbon Synapse from 136245 -> 136244", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136245, + "TargetID": 136244, + "Directional": true + }] + }, { + "ID": 11716, + "SourceStructureID": 6997, + "TargetStructureID": 390, + "Label": "6997-390 via Ribbon Synapse from 70894 -> 65110", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70894, + "TargetID": 65110, + "Directional": true + }] + }, { + "ID": 11717, + "SourceStructureID": 6997, + "TargetStructureID": 525, + "Label": "6997-525 via BC Conventional Synapse from 22033 -> 22034", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22033, + "TargetID": 22034, + "Directional": true + }] + }, { + "ID": 11718, + "SourceStructureID": 6997, + "TargetStructureID": 1620, + "Label": "6997-1620 via Ribbon Synapse from 21951 -> 16841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21951, + "TargetID": 16841, + "Directional": true + }] + }, { + "ID": 11719, + "SourceStructureID": 6997, + "TargetStructureID": 4890, + "Label": "6997-4890 via Ribbon Synapse from 64901 -> 64900, 64904 -> 64903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64901, + "TargetID": 64900, + "Directional": true + }, { + "SourceID": 64904, + "TargetID": 64903, + "Directional": true + }] + }, { + "ID": 11720, + "SourceStructureID": 6997, + "TargetStructureID": 5117, + "Label": "6997-5117 via Ribbon Synapse from 22042 -> 15010, 22108 -> 15008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22042, + "TargetID": 15010, + "Directional": true + }, { + "SourceID": 22108, + "TargetID": 15008, + "Directional": true + }] + }, { + "ID": 11721, + "SourceStructureID": 6997, + "TargetStructureID": 5507, + "Label": "6997-5507 via Ribbon Synapse from 7000 -> 21896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7000, + "TargetID": 21896, + "Directional": true + }] + }, { + "ID": 11722, + "SourceStructureID": 6997, + "TargetStructureID": 8720, + "Label": "6997-8720 via Ribbon Synapse from 136642 -> 15302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136642, + "TargetID": 15302, + "Directional": true + }] + }, { + "ID": 11723, + "SourceStructureID": 6997, + "TargetStructureID": 18282, + "Label": "6997-18282 via Ribbon Synapse from 31419 -> 31416, 31438 -> 31437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31419, + "TargetID": 31416, + "Directional": true + }, { + "SourceID": 31438, + "TargetID": 31437, + "Directional": true + }] + }, { + "ID": 11724, + "SourceStructureID": 6997, + "TargetStructureID": 20728, + "Label": "6997-20728 via Ribbon Synapse from 20732 -> 20731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20732, + "TargetID": 20731, + "Directional": true + }] + }, { + "ID": 11725, + "SourceStructureID": 6997, + "TargetStructureID": 32804, + "Label": "6997-32804 via Ribbon Synapse from 22170 -> 32823, 22282 -> 32826, 22311 -> 32830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22170, + "TargetID": 32823, + "Directional": true + }, { + "SourceID": 22282, + "TargetID": 32826, + "Directional": true + }, { + "SourceID": 22311, + "TargetID": 32830, + "Directional": true + }] + }, { + "ID": 11726, + "SourceStructureID": 6997, + "TargetStructureID": 34882, + "Label": "6997-34882 via Ribbon Synapse from 28761 -> 34885, 70892 -> 70893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28761, + "TargetID": 34885, + "Directional": true + }, { + "SourceID": 70892, + "TargetID": 70893, + "Directional": true + }] + }, { + "ID": 11727, + "SourceStructureID": 6997, + "TargetStructureID": 43507, + "Label": "6997-43507 via BC Conventional Synapse from 136647 -> 136648", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136647, + "TargetID": 136648, + "Directional": true + }] + }, { + "ID": 11728, + "SourceStructureID": 6997, + "TargetStructureID": 45677, + "Label": "6997-45677 via Ribbon Synapse from 82947 -> 82948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82947, + "TargetID": 82948, + "Directional": true + }] + }, { + "ID": 11729, + "SourceStructureID": 6997, + "TargetStructureID": 61270, + "Label": "6997-61270 via Ribbon Synapse from 22153 -> 61283, 22311 -> 61275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22153, + "TargetID": 61283, + "Directional": true + }, { + "SourceID": 22311, + "TargetID": 61275, + "Directional": true + }] + }, { + "ID": 11730, + "SourceStructureID": 6997, + "TargetStructureID": 63371, + "Label": "6997-63371 via BC Conventional Synapse from 95992 -> 63375", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95992, + "TargetID": 63375, + "Directional": true + }] + }, { + "ID": 11731, + "SourceStructureID": 6997, + "TargetStructureID": 66407, + "Label": "6997-66407 via Ribbon Synapse from 83109 -> 83104, 83112 -> 69353", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83109, + "TargetID": 83104, + "Directional": true + }, { + "SourceID": 83112, + "TargetID": 69353, + "Directional": true + }] + }, { + "ID": 11732, + "SourceStructureID": 6997, + "TargetStructureID": 66946, + "Label": "6997-66946 via Ribbon Synapse from 80637 -> 82944", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80637, + "TargetID": 82944, + "Directional": true + }] + }, { + "ID": 11733, + "SourceStructureID": 6997, + "TargetStructureID": 66958, + "Label": "6997-66958 via Ribbon Synapse from 22245 -> 70103, 83030 -> 70067", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22245, + "TargetID": 70103, + "Directional": true + }, { + "SourceID": 83030, + "TargetID": 70067, + "Directional": true + }] + }, { + "ID": 11734, + "SourceStructureID": 6997, + "TargetStructureID": 68286, + "Label": "6997-68286 via Ribbon Synapse from 28710 -> 80652", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28710, + "TargetID": 80652, + "Directional": true + }] + }, { + "ID": 11735, + "SourceStructureID": 6997, + "TargetStructureID": 68302, + "Label": "6997-68302 via Ribbon Synapse from 22108 -> 82940, 82930 -> 82929, 82935 -> 82934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22108, + "TargetID": 82940, + "Directional": true + }, { + "SourceID": 82930, + "TargetID": 82929, + "Directional": true + }, { + "SourceID": 82935, + "TargetID": 82934, + "Directional": true + }] + }, { + "ID": 11736, + "SourceStructureID": 6997, + "TargetStructureID": 70069, + "Label": "6997-70069 via Ribbon Synapse from 83030 -> 70070", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83030, + "TargetID": 70070, + "Directional": true + }] + }, { + "ID": 11737, + "SourceStructureID": 6997, + "TargetStructureID": 70868, + "Label": "6997-70868 via Ribbon Synapse from 70895 -> 70888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70895, + "TargetID": 70888, + "Directional": true + }] + }, { + "ID": 11738, + "SourceStructureID": 6997, + "TargetStructureID": 78301, + "Label": "6997-78301 via Ribbon Synapse from 28762 -> 78302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28762, + "TargetID": 78302, + "Directional": true + }] + }, { + "ID": 11739, + "SourceStructureID": 6997, + "TargetStructureID": 78303, + "Label": "6997-78303 via Ribbon Synapse from 136268 -> 136833", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136268, + "TargetID": 136833, + "Directional": true + }] + }, { + "ID": 11740, + "SourceStructureID": 6997, + "TargetStructureID": 79911, + "Label": "6997-79911 via Ribbon Synapse from 83118 -> 79912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83118, + "TargetID": 79912, + "Directional": true + }] + }, { + "ID": 11741, + "SourceStructureID": 6997, + "TargetStructureID": 79921, + "Label": "6997-79921 via Ribbon Synapse from 83094 -> 79922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83094, + "TargetID": 79922, + "Directional": true + }] + }, { + "ID": 11742, + "SourceStructureID": 6997, + "TargetStructureID": 79926, + "Label": "6997-79926 via Ribbon Synapse from 83094 -> 83098", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83094, + "TargetID": 83098, + "Directional": true + }] + }, { + "ID": 11743, + "SourceStructureID": 6997, + "TargetStructureID": 79943, + "Label": "6997-79943 via Ribbon Synapse from 83109 -> 79944", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83109, + "TargetID": 79944, + "Directional": true + }] + }, { + "ID": 11744, + "SourceStructureID": 6997, + "TargetStructureID": 79946, + "Label": "6997-79946 via Ribbon Synapse from 83111 -> 79947", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83111, + "TargetID": 79947, + "Directional": true + }] + }, { + "ID": 11745, + "SourceStructureID": 6997, + "TargetStructureID": 79948, + "Label": "6997-79948 via Ribbon Synapse from 83111 -> 79949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83111, + "TargetID": 79949, + "Directional": true + }] + }, { + "ID": 11746, + "SourceStructureID": 6997, + "TargetStructureID": 79958, + "Label": "6997-79958 via Ribbon Synapse from 83112 -> 79959", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83112, + "TargetID": 79959, + "Directional": true + }] + }, { + "ID": 11747, + "SourceStructureID": 6997, + "TargetStructureID": 79960, + "Label": "6997-79960 via Ribbon Synapse from 83112 -> 79961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83112, + "TargetID": 79961, + "Directional": true + }] + }, { + "ID": 11748, + "SourceStructureID": 6997, + "TargetStructureID": 79966, + "Label": "6997-79966 via Ribbon Synapse from 83091 -> 79967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83091, + "TargetID": 79967, + "Directional": true + }] + }, { + "ID": 11749, + "SourceStructureID": 6997, + "TargetStructureID": 79968, + "Label": "6997-79968 via Ribbon Synapse from 83091 -> 79969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83091, + "TargetID": 79969, + "Directional": true + }] + }, { + "ID": 11750, + "SourceStructureID": 6997, + "TargetStructureID": 79970, + "Label": "6997-79970 via Ribbon Synapse from 83078 -> 79974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83078, + "TargetID": 79974, + "Directional": true + }] + }, { + "ID": 11751, + "SourceStructureID": 6997, + "TargetStructureID": 79975, + "Label": "6997-79975 via Ribbon Synapse from 83078 -> 79976", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83078, + "TargetID": 79976, + "Directional": true + }] + }, { + "ID": 11752, + "SourceStructureID": 6997, + "TargetStructureID": 79984, + "Label": "6997-79984 via Ribbon Synapse from 83082 -> 79992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83082, + "TargetID": 79992, + "Directional": true + }] + }, { + "ID": 11753, + "SourceStructureID": 6997, + "TargetStructureID": 79993, + "Label": "6997-79993 via Ribbon Synapse from 83082 -> 79994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83082, + "TargetID": 79994, + "Directional": true + }] + }, { + "ID": 11754, + "SourceStructureID": 6997, + "TargetStructureID": 80026, + "Label": "6997-80026 via Ribbon Synapse from 83025 -> 80027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83025, + "TargetID": 80027, + "Directional": true + }] + }, { + "ID": 11755, + "SourceStructureID": 6997, + "TargetStructureID": 80034, + "Label": "6997-80034 via Ribbon Synapse from 84434 -> 84435", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84434, + "TargetID": 84435, + "Directional": true + }] + }, { + "ID": 11756, + "SourceStructureID": 6997, + "TargetStructureID": 80042, + "Label": "6997-80042 via BC Conventional Synapse from 83066 -> 80044", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83066, + "TargetID": 80044, + "Directional": true + }] + }, { + "ID": 11757, + "SourceStructureID": 6997, + "TargetStructureID": 80051, + "Label": "6997-80051 via Ribbon Synapse from 83024 -> 81886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83024, + "TargetID": 81886, + "Directional": true + }] + }, { + "ID": 11758, + "SourceStructureID": 6997, + "TargetStructureID": 81098, + "Label": "6997-81098 via Ribbon Synapse from 22300 -> 81101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22300, + "TargetID": 81101, + "Directional": true + }] + }, { + "ID": 11759, + "SourceStructureID": 6997, + "TargetStructureID": 82216, + "Label": "6997-82216 via Ribbon Synapse from 31428 -> 82219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31428, + "TargetID": 82219, + "Directional": true + }] + }, { + "ID": 11760, + "SourceStructureID": 6997, + "TargetStructureID": 83105, + "Label": "6997-83105 via Ribbon Synapse from 83109 -> 83106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83109, + "TargetID": 83106, + "Directional": true + }] + }, { + "ID": 11761, + "SourceStructureID": 6997, + "TargetStructureID": 83114, + "Label": "6997-83114 via Ribbon Synapse from 83112 -> 83115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83112, + "TargetID": 83115, + "Directional": true + }] + }, { + "ID": 11762, + "SourceStructureID": 6997, + "TargetStructureID": 84830, + "Label": "6997-84830 via BC Conventional Synapse from 84883 -> 84882", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84883, + "TargetID": 84882, + "Directional": true + }] + }, { + "ID": 11763, + "SourceStructureID": 6997, + "TargetStructureID": 84830, + "Label": "6997-84830 via Ribbon Synapse from 21927 -> 85447, 22143 -> 84895, 52510 -> 84891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21927, + "TargetID": 85447, + "Directional": true + }, { + "SourceID": 22143, + "TargetID": 84895, + "Directional": true + }, { + "SourceID": 52510, + "TargetID": 84891, + "Directional": true + }] + }, { + "ID": 11764, + "SourceStructureID": 6997, + "TargetStructureID": 95772, + "Label": "6997-95772 via BC Conventional Synapse from 95774 -> 95773", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95774, + "TargetID": 95773, + "Directional": true + }] + }, { + "ID": 11765, + "SourceStructureID": 6997, + "TargetStructureID": 95999, + "Label": "6997-95999 via Ribbon Synapse from 136702 -> 136703, 136709 -> 96002", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136702, + "TargetID": 136703, + "Directional": true + }, { + "SourceID": 136709, + "TargetID": 96002, + "Directional": true + }] + }, { + "ID": 11766, + "SourceStructureID": 6997, + "TargetStructureID": 101428, + "Label": "6997-101428 via Ribbon Synapse from 136268 -> 136832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136268, + "TargetID": 136832, + "Directional": true + }] + }, { + "ID": 11767, + "SourceStructureID": 6997, + "TargetStructureID": 127841, + "Label": "6997-127841 via Ribbon Synapse from 22272 -> 127843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22272, + "TargetID": 127843, + "Directional": true + }] + }, { + "ID": 11768, + "SourceStructureID": 6997, + "TargetStructureID": 133260, + "Label": "6997-133260 via Ribbon Synapse from 133263 -> 133262", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133263, + "TargetID": 133262, + "Directional": true + }] + }, { + "ID": 11769, + "SourceStructureID": 6997, + "TargetStructureID": 136677, + "Label": "6997-136677 via BC Conventional Synapse from 136679 -> 136678", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136679, + "TargetID": 136678, + "Directional": true + }] + }, { + "ID": 11770, + "SourceStructureID": 7024, + "TargetStructureID": 606, + "Label": "7024-606 via Ribbon Synapse from 46436 -> 10502, 46473 -> 46585, 46596 -> 10498, 46609 -> 10499, 47347 -> 47346, 48510 -> 48511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46436, + "TargetID": 10502, + "Directional": true + }, { + "SourceID": 46473, + "TargetID": 46585, + "Directional": true + }, { + "SourceID": 46596, + "TargetID": 10498, + "Directional": true + }, { + "SourceID": 46609, + "TargetID": 10499, + "Directional": true + }, { + "SourceID": 47347, + "TargetID": 47346, + "Directional": true + }, { + "SourceID": 48510, + "TargetID": 48511, + "Directional": true + }] + }, { + "ID": 11771, + "SourceStructureID": 7024, + "TargetStructureID": 5396, + "Label": "7024-5396 via Ribbon Synapse from 40154 -> 89451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40154, + "TargetID": 89451, + "Directional": true + }] + }, { + "ID": 11772, + "SourceStructureID": 7024, + "TargetStructureID": 9769, + "Label": "7024-9769 via Ribbon Synapse from 10908 -> 10909, 10911 -> 10910, 10913 -> 10912, 20232 -> 20230, 20242 -> 20243, 20245 -> 20246, 53239 -> 53237, 53391 -> 11259, 114206 -> 148205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10908, + "TargetID": 10909, + "Directional": true + }, { + "SourceID": 10911, + "TargetID": 10910, + "Directional": true + }, { + "SourceID": 10913, + "TargetID": 10912, + "Directional": true + }, { + "SourceID": 20232, + "TargetID": 20230, + "Directional": true + }, { + "SourceID": 20242, + "TargetID": 20243, + "Directional": true + }, { + "SourceID": 20245, + "TargetID": 20246, + "Directional": true + }, { + "SourceID": 53239, + "TargetID": 53237, + "Directional": true + }, { + "SourceID": 53391, + "TargetID": 11259, + "Directional": true + }, { + "SourceID": 114206, + "TargetID": 148205, + "Directional": true + }] + }, { + "ID": 11773, + "SourceStructureID": 7024, + "TargetStructureID": 31161, + "Label": "7024-31161 via Ribbon Synapse from 106600 -> 31219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106600, + "TargetID": 31219, + "Directional": true + }] + }, { + "ID": 11774, + "SourceStructureID": 7024, + "TargetStructureID": 39982, + "Label": "7024-39982 via Ribbon Synapse from 40159 -> 40138", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40159, + "TargetID": 40138, + "Directional": true + }] + }, { + "ID": 11775, + "SourceStructureID": 7024, + "TargetStructureID": 53245, + "Label": "7024-53245 via Ribbon Synapse from 20245 -> 53248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20245, + "TargetID": 53248, + "Directional": true + }] + }, { + "ID": 11776, + "SourceStructureID": 7024, + "TargetStructureID": 77215, + "Label": "7024-77215 via Ribbon Synapse from 106600 -> 106565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106600, + "TargetID": 106565, + "Directional": true + }] + }, { + "ID": 11777, + "SourceStructureID": 7024, + "TargetStructureID": 97443, + "Label": "7024-97443 via Ribbon Synapse from 40159 -> 113495", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40159, + "TargetID": 113495, + "Directional": true + }] + }, { + "ID": 11778, + "SourceStructureID": 7024, + "TargetStructureID": 97445, + "Label": "7024-97445 via Ribbon Synapse from 40159 -> 97447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40159, + "TargetID": 97447, + "Directional": true + }] + }, { + "ID": 11779, + "SourceStructureID": 7040, + "TargetStructureID": 5396, + "Label": "7040-5396 via Ribbon Synapse from 93699 -> 89492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93699, + "TargetID": 89492, + "Directional": true + }] + }, { + "ID": 11780, + "SourceStructureID": 7040, + "TargetStructureID": 8575, + "Label": "7040-8575 via Ribbon Synapse from 63056 -> 63055, 93727 -> 62231", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63056, + "TargetID": 63055, + "Directional": true + }, { + "SourceID": 93727, + "TargetID": 62231, + "Directional": true + }] + }, { + "ID": 11781, + "SourceStructureID": 7040, + "TargetStructureID": 16073, + "Label": "7040-16073 via BC Conventional Synapse from 19962 -> 19958", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19962, + "TargetID": 19958, + "Directional": true + }] + }, { + "ID": 11782, + "SourceStructureID": 7040, + "TargetStructureID": 68539, + "Label": "7040-68539 via Ribbon Synapse from 50300 -> 69096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50300, + "TargetID": 69096, + "Directional": true + }] + }, { + "ID": 11783, + "SourceStructureID": 7040, + "TargetStructureID": 93685, + "Label": "7040-93685 via Ribbon Synapse from 93690 -> 93691", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93690, + "TargetID": 93691, + "Directional": true + }] + }, { + "ID": 11784, + "SourceStructureID": 7043, + "TargetStructureID": 8576, + "Label": "7043-8576 via Ribbon Synapse from 37724 -> 37725, 37738 -> 69037", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37724, + "TargetID": 37725, + "Directional": true + }, { + "SourceID": 37738, + "TargetID": 69037, + "Directional": true + }] + }, { + "ID": 11785, + "SourceStructureID": 7043, + "TargetStructureID": 31024, + "Label": "7043-31024 via Ribbon Synapse from 31360 -> 31082, 31361 -> 31046", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31360, + "TargetID": 31082, + "Directional": true + }, { + "SourceID": 31361, + "TargetID": 31046, + "Directional": true + }] + }, { + "ID": 11786, + "SourceStructureID": 7043, + "TargetStructureID": 69049, + "Label": "7043-69049 via Ribbon Synapse from 37726 -> 69059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37726, + "TargetID": 69059, + "Directional": true + }] + }, { + "ID": 11787, + "SourceStructureID": 7043, + "TargetStructureID": 77777, + "Label": "7043-77777 via Ribbon Synapse from 37727 -> 119029", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37727, + "TargetID": 119029, + "Directional": true + }] + }, { + "ID": 11788, + "SourceStructureID": 7043, + "TargetStructureID": 78174, + "Label": "7043-78174 via Ribbon Synapse from 118711 -> 118967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118711, + "TargetID": 118967, + "Directional": true + }] + }, { + "ID": 11789, + "SourceStructureID": 7043, + "TargetStructureID": 89292, + "Label": "7043-89292 via Ribbon Synapse from 89263 -> 89294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89263, + "TargetID": 89294, + "Directional": true + }] + }, { + "ID": 11790, + "SourceStructureID": 7050, + "TargetStructureID": 5622, + "Label": "7050-5622 via Conventional from 113003 -> 113000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113003, + "TargetID": 113000, + "Directional": true + }] + }, { + "ID": 11791, + "SourceStructureID": 7050, + "TargetStructureID": 5671, + "Label": "7050-5671 via Conventional from 24904 -> 24903, 24905 -> 24906, 24920 -> 24921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24904, + "TargetID": 24903, + "Directional": true + }, { + "SourceID": 24905, + "TargetID": 24906, + "Directional": true + }, { + "SourceID": 24920, + "TargetID": 24921, + "Directional": true + }] + }, { + "ID": 11792, + "SourceStructureID": 7050, + "TargetStructureID": 5922, + "Label": "7050-5922 via Conventional from 55667 -> 68833, 68843 -> 68842, 68845 -> 68844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55667, + "TargetID": 68833, + "Directional": true + }, { + "SourceID": 68843, + "TargetID": 68842, + "Directional": true + }, { + "SourceID": 68845, + "TargetID": 68844, + "Directional": true + }] + }, { + "ID": 11793, + "SourceStructureID": 7050, + "TargetStructureID": 24898, + "Label": "7050-24898 via Conventional from 24942 -> 24939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24942, + "TargetID": 24939, + "Directional": true + }] + }, { + "ID": 11794, + "SourceStructureID": 7050, + "TargetStructureID": 24909, + "Label": "7050-24909 via Conventional from 24907 -> 24910", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24907, + "TargetID": 24910, + "Directional": true + }] + }, { + "ID": 11795, + "SourceStructureID": 7050, + "TargetStructureID": 148374, + "Label": "7050-148374 via Conventional from 113006 -> 148395", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113006, + "TargetID": 148395, + "Directional": true + }] + }, { + "ID": 11796, + "SourceStructureID": 7054, + "TargetStructureID": 514, + "Label": "7054-514 via Ribbon Synapse from 7056 -> 2601, 10917 -> 1553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 7056, + "TargetID": 2601, + "Directional": true + }, { + "SourceID": 10917, + "TargetID": 1553, + "Directional": true + }] + }, { + "ID": 11797, + "SourceStructureID": 7054, + "TargetStructureID": 3679, + "Label": "7054-3679 via Ribbon Synapse from 43246 -> 43245, 66132 -> 66133, 66134 -> 66135, 135061 -> 135060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43246, + "TargetID": 43245, + "Directional": true + }, { + "SourceID": 66132, + "TargetID": 66133, + "Directional": true + }, { + "SourceID": 66134, + "TargetID": 66135, + "Directional": true + }, { + "SourceID": 135061, + "TargetID": 135060, + "Directional": true + }] + }, { + "ID": 11798, + "SourceStructureID": 7054, + "TargetStructureID": 4850, + "Label": "7054-4850 via Ribbon Synapse from 10916 -> 19467", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10916, + "TargetID": 19467, + "Directional": true + }] + }, { + "ID": 11799, + "SourceStructureID": 7054, + "TargetStructureID": 8037, + "Label": "7054-8037 via Ribbon Synapse from 25425 -> 25424, 30553 -> 15730", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25425, + "TargetID": 25424, + "Directional": true + }, { + "SourceID": 30553, + "TargetID": 15730, + "Directional": true + }] + }, { + "ID": 11800, + "SourceStructureID": 7054, + "TargetStructureID": 12897, + "Label": "7054-12897 via Ribbon Synapse from 30553 -> 24743", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30553, + "TargetID": 24743, + "Directional": true + }] + }, { + "ID": 11801, + "SourceStructureID": 7054, + "TargetStructureID": 25410, + "Label": "7054-25410 via Ribbon Synapse from 25418 -> 25417", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25418, + "TargetID": 25417, + "Directional": true + }] + }, { + "ID": 11802, + "SourceStructureID": 7054, + "TargetStructureID": 32676, + "Label": "7054-32676 via Ribbon Synapse from 10901 -> 32679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10901, + "TargetID": 32679, + "Directional": true + }] + }, { + "ID": 11803, + "SourceStructureID": 7073, + "TargetStructureID": 5150, + "Label": "7073-5150 via Conventional from 11822 -> 5239, 11822 -> 19802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11822, + "TargetID": 5239, + "Directional": true + }, { + "SourceID": 11822, + "TargetID": 19802, + "Directional": true + }] + }, { + "ID": 11804, + "SourceStructureID": 7073, + "TargetStructureID": 8575, + "Label": "7073-8575 via Conventional from 19883 -> 62816", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 19883, + "TargetID": 62816, + "Directional": true + }] + }, { + "ID": 11805, + "SourceStructureID": 7073, + "TargetStructureID": 16073, + "Label": "7073-16073 via Conventional from 24520 -> 24198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24520, + "TargetID": 24198, + "Directional": true + }] + }, { + "ID": 11806, + "SourceStructureID": 7073, + "TargetStructureID": 29340, + "Label": "7073-29340 via Conventional from 11844 -> 29394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11844, + "TargetID": 29394, + "Directional": true + }] + }, { + "ID": 11807, + "SourceStructureID": 7073, + "TargetStructureID": 72162, + "Label": "7073-72162 via Conventional from 11789 -> 82949", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11789, + "TargetID": 82949, + "Directional": true + }] + }, { + "ID": 11808, + "SourceStructureID": 7073, + "TargetStructureID": 129927, + "Label": "7073-129927 via Conventional from 19595 -> 129935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 19595, + "TargetID": 129935, + "Directional": true + }] + }, { + "ID": 11809, + "SourceStructureID": 7075, + "TargetStructureID": 5860, + "Label": "7075-5860 via Ribbon Synapse from 62353 -> 62352, 123334 -> 62352", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62353, + "TargetID": 62352, + "Directional": true + }, { + "SourceID": 123334, + "TargetID": 62352, + "Directional": true + }] + }, { + "ID": 11810, + "SourceStructureID": 7075, + "TargetStructureID": 7204, + "Label": "7075-7204 via Ribbon Synapse from 133765 -> 133763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 133765, + "TargetID": 133763, + "Directional": true + }] + }, { + "ID": 11811, + "SourceStructureID": 7075, + "TargetStructureID": 8575, + "Label": "7075-8575 via BC Conventional Synapse from 62358 -> 62347", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62358, + "TargetID": 62347, + "Directional": true + }] + }, { + "ID": 11812, + "SourceStructureID": 7075, + "TargetStructureID": 43631, + "Label": "7075-43631 via Ribbon Synapse from 43649 -> 43635", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43649, + "TargetID": 43635, + "Directional": true + }] + }, { + "ID": 11813, + "SourceStructureID": 7112, + "TargetStructureID": 7073, + "Label": "7112-7073 via Conventional from 122000 -> 11793", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122000, + "TargetID": 11793, + "Directional": true + }] + }, { + "ID": 11814, + "SourceStructureID": 7112, + "TargetStructureID": 15796, + "Label": "7112-15796 via Conventional from 122001 -> 29444, 122003 -> 15816", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122001, + "TargetID": 29444, + "Directional": true + }, { + "SourceID": 122003, + "TargetID": 15816, + "Directional": true + }] + }, { + "ID": 11815, + "SourceStructureID": 7113, + "TargetStructureID": 173, + "Label": "7113-173 via Conventional from 19578 -> 19576, 31371 -> 31372, 31374 -> 39397", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 19578, + "TargetID": 19576, + "Directional": true + }, { + "SourceID": 31371, + "TargetID": 31372, + "Directional": true + }, { + "SourceID": 31374, + "TargetID": 39397, + "Directional": true + }] + }, { + "ID": 11816, + "SourceStructureID": 7113, + "TargetStructureID": 4876, + "Label": "7113-4876 via Conventional from 44988 -> 44465, 60566 -> 18943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44988, + "TargetID": 44465, + "Directional": true + }, { + "SourceID": 60566, + "TargetID": 18943, + "Directional": true + }] + }, { + "ID": 11817, + "SourceStructureID": 7113, + "TargetStructureID": 5351, + "Label": "7113-5351 via Conventional from 15258 -> 24074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15258, + "TargetID": 24074, + "Directional": true + }] + }, { + "ID": 11818, + "SourceStructureID": 7113, + "TargetStructureID": 5618, + "Label": "7113-5618 via Conventional from 66012 -> 66013", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66012, + "TargetID": 66013, + "Directional": true + }] + }, { + "ID": 11819, + "SourceStructureID": 7113, + "TargetStructureID": 6011, + "Label": "7113-6011 via Conventional from 21885 -> 6017, 21891 -> 6014", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21885, + "TargetID": 6017, + "Directional": true + }, { + "SourceID": 21891, + "TargetID": 6014, + "Directional": true + }] + }, { + "ID": 11820, + "SourceStructureID": 7113, + "TargetStructureID": 6050, + "Label": "7113-6050 via Cistern Pre from 127237 -> 127238", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 127237, + "TargetID": 127238, + "Directional": true + }] + }, { + "ID": 11821, + "SourceStructureID": 7113, + "TargetStructureID": 9376, + "Label": "7113-9376 via Conventional from 27369 -> 33656", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27369, + "TargetID": 33656, + "Directional": true + }] + }, { + "ID": 11822, + "SourceStructureID": 7113, + "TargetStructureID": 9787, + "Label": "7113-9787 via Conventional from 18104 -> 18105, 18128 -> 18122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18104, + "TargetID": 18105, + "Directional": true + }, { + "SourceID": 18128, + "TargetID": 18122, + "Directional": true + }] + }, { + "ID": 11823, + "SourceStructureID": 7113, + "TargetStructureID": 35696, + "Label": "7113-35696 via Conventional from 18126 -> 35707, 35705 -> 35704, 46431 -> 46429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18126, + "TargetID": 35707, + "Directional": true + }, { + "SourceID": 35705, + "TargetID": 35704, + "Directional": true + }, { + "SourceID": 46431, + "TargetID": 46429, + "Directional": true + }] + }, { + "ID": 11824, + "SourceStructureID": 7113, + "TargetStructureID": 60558, + "Label": "7113-60558 via Conventional from 60571 -> 60561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60571, + "TargetID": 60561, + "Directional": true + }] + }, { + "ID": 11825, + "SourceStructureID": 7113, + "TargetStructureID": 126536, + "Label": "7113-126536 via Conventional from 27363 -> 131393, 131390 -> 131389", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27363, + "TargetID": 131393, + "Directional": true + }, { + "SourceID": 131390, + "TargetID": 131389, + "Directional": true + }] + }, { + "ID": 11826, + "SourceStructureID": 7113, + "TargetStructureID": 129827, + "Label": "7113-129827 via Conventional from 129837 -> 129836", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129837, + "TargetID": 129836, + "Directional": true + }] + }, { + "ID": 11827, + "SourceStructureID": 7114, + "TargetStructureID": 5585, + "Label": "7114-5585 via Conventional from 12483 -> 24108, 24111 -> 24110, 24127 -> 24128, 36809 -> 36808, 136517 -> 32441", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12483, + "TargetID": 24108, + "Directional": true + }, { + "SourceID": 24111, + "TargetID": 24110, + "Directional": true + }, { + "SourceID": 24127, + "TargetID": 24128, + "Directional": true + }, { + "SourceID": 36809, + "TargetID": 36808, + "Directional": true + }, { + "SourceID": 136517, + "TargetID": 32441, + "Directional": true + }] + }, { + "ID": 11828, + "SourceStructureID": 7114, + "TargetStructureID": 5587, + "Label": "7114-5587 via Conventional from 136451 -> 136450, 136457 -> 136456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136451, + "TargetID": 136450, + "Directional": true + }, { + "SourceID": 136457, + "TargetID": 136456, + "Directional": true + }] + }, { + "ID": 11829, + "SourceStructureID": 7114, + "TargetStructureID": 5596, + "Label": "7114-5596 via Cistern Pre from 36873 -> 36874", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 36873, + "TargetID": 36874, + "Directional": true + }] + }, { + "ID": 11830, + "SourceStructureID": 7114, + "TargetStructureID": 5640, + "Label": "7114-5640 via Conventional from 26634 -> 37061", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 26634, + "TargetID": 37061, + "Directional": true + }] + }, { + "ID": 11831, + "SourceStructureID": 7114, + "TargetStructureID": 28913, + "Label": "7114-28913 via Conventional from 32442 -> 28942, 88143 -> 28947", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32442, + "TargetID": 28942, + "Directional": true + }, { + "SourceID": 88143, + "TargetID": 28947, + "Directional": true + }] + }, { + "ID": 11832, + "SourceStructureID": 7114, + "TargetStructureID": 136513, + "Label": "7114-136513 via Conventional from 136518 -> 136516, 136523 -> 136522", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136518, + "TargetID": 136516, + "Directional": true + }, { + "SourceID": 136523, + "TargetID": 136522, + "Directional": true + }] + }, { + "ID": 11833, + "SourceStructureID": 7129, + "TargetStructureID": 598, + "Label": "7129-598 via Conventional from 56457 -> 6321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56457, + "TargetID": 6321, + "Directional": true + }] + }, { + "ID": 11834, + "SourceStructureID": 7129, + "TargetStructureID": 9769, + "Label": "7129-9769 via Conventional from 54016 -> 11262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54016, + "TargetID": 11262, + "Directional": true + }] + }, { + "ID": 11835, + "SourceStructureID": 7129, + "TargetStructureID": 55517, + "Label": "7129-55517 via Conventional from 55598 -> 55599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55598, + "TargetID": 55599, + "Directional": true + }] + }, { + "ID": 11836, + "SourceStructureID": 7129, + "TargetStructureID": 89097, + "Label": "7129-89097 via Conventional from 130294 -> 130295", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130294, + "TargetID": 130295, + "Directional": true + }] + }, { + "ID": 11837, + "SourceStructureID": 7134, + "TargetStructureID": 909, + "Label": "7134-909 via Conventional from 130250 -> 130251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130250, + "TargetID": 130251, + "Directional": true + }] + }, { + "ID": 11838, + "SourceStructureID": 7134, + "TargetStructureID": 3756, + "Label": "7134-3756 via Conventional from 53616 -> 53622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53616, + "TargetID": 53622, + "Directional": true + }] + }, { + "ID": 11839, + "SourceStructureID": 7134, + "TargetStructureID": 5297, + "Label": "7134-5297 via Conventional from 98333 -> 98334, 121120 -> 116309, 121328 -> 116441, 121505 -> 98283, 122220 -> 98267, 147350 -> 147349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98333, + "TargetID": 98334, + "Directional": true + }, { + "SourceID": 121120, + "TargetID": 116309, + "Directional": true + }, { + "SourceID": 121328, + "TargetID": 116441, + "Directional": true + }, { + "SourceID": 121505, + "TargetID": 98283, + "Directional": true + }, { + "SourceID": 122220, + "TargetID": 98267, + "Directional": true + }, { + "SourceID": 147350, + "TargetID": 147349, + "Directional": true + }] + }, { + "ID": 11840, + "SourceStructureID": 7134, + "TargetStructureID": 5501, + "Label": "7134-5501 via Conventional from 41657 -> 122176, 42386 -> 15778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41657, + "TargetID": 122176, + "Directional": true + }, { + "SourceID": 42386, + "TargetID": 15778, + "Directional": true + }] + }, { + "ID": 11841, + "SourceStructureID": 7134, + "TargetStructureID": 5648, + "Label": "7134-5648 via Conventional from 53971 -> 53970, 122457 -> 122456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53971, + "TargetID": 53970, + "Directional": true + }, { + "SourceID": 122457, + "TargetID": 122456, + "Directional": true + }] + }, { + "ID": 11842, + "SourceStructureID": 7134, + "TargetStructureID": 6046, + "Label": "7134-6046 via Conventional from 16746 -> 16721, 26766 -> 16683, 53595 -> 53596", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16746, + "TargetID": 16721, + "Directional": true + }, { + "SourceID": 26766, + "TargetID": 16683, + "Directional": true + }, { + "SourceID": 53595, + "TargetID": 53596, + "Directional": true + }] + }, { + "ID": 11843, + "SourceStructureID": 7134, + "TargetStructureID": 6121, + "Label": "7134-6121 via Conventional from 53458 -> 53465, 53471 -> 53472, 53498 -> 53491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53458, + "TargetID": 53465, + "Directional": true + }, { + "SourceID": 53471, + "TargetID": 53472, + "Directional": true + }, { + "SourceID": 53498, + "TargetID": 53491, + "Directional": true + }] + }, { + "ID": 11844, + "SourceStructureID": 7134, + "TargetStructureID": 8575, + "Label": "7134-8575 via Conventional from 53609 -> 62826, 121507 -> 62822", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53609, + "TargetID": 62826, + "Directional": true + }, { + "SourceID": 121507, + "TargetID": 62822, + "Directional": true + }] + }, { + "ID": 11845, + "SourceStructureID": 7134, + "TargetStructureID": 15779, + "Label": "7134-15779 via Conventional from 29652 -> 29653", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29652, + "TargetID": 29653, + "Directional": true + }] + }, { + "ID": 11846, + "SourceStructureID": 7134, + "TargetStructureID": 46468, + "Label": "7134-46468 via Conventional from 122009 -> 122010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122009, + "TargetID": 122010, + "Directional": true + }] + }, { + "ID": 11847, + "SourceStructureID": 7134, + "TargetStructureID": 61450, + "Label": "7134-61450 via Conventional from 61457 -> 61456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61457, + "TargetID": 61456, + "Directional": true + }] + }, { + "ID": 11848, + "SourceStructureID": 7134, + "TargetStructureID": 87754, + "Label": "7134-87754 via Conventional from 122195 -> 87756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122195, + "TargetID": 87756, + "Directional": true + }] + }, { + "ID": 11849, + "SourceStructureID": 7134, + "TargetStructureID": 117906, + "Label": "7134-117906 via Conventional from 122185 -> 122186", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122185, + "TargetID": 122186, + "Directional": true + }] + }, { + "ID": 11850, + "SourceStructureID": 7144, + "TargetStructureID": 59229, + "Label": "7144-59229 via Ribbon Synapse from 59249 -> 59245", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59249, + "TargetID": 59245, + "Directional": true + }] + }, { + "ID": 11851, + "SourceStructureID": 7145, + "TargetStructureID": 173, + "Label": "7145-173 via Conventional from 15825 -> 12116, 15826 -> 12135, 15827 -> 12132, 15829 -> 12131, 60151 -> 41241", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15825, + "TargetID": 12116, + "Directional": true + }, { + "SourceID": 15826, + "TargetID": 12135, + "Directional": true + }, { + "SourceID": 15827, + "TargetID": 12132, + "Directional": true + }, { + "SourceID": 15829, + "TargetID": 12131, + "Directional": true + }, { + "SourceID": 60151, + "TargetID": 41241, + "Directional": true + }] + }, { + "ID": 11852, + "SourceStructureID": 7145, + "TargetStructureID": 175, + "Label": "7145-175 via Conventional from 18108 -> 2264", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18108, + "TargetID": 2264, + "Directional": true + }] + }, { + "ID": 11853, + "SourceStructureID": 7145, + "TargetStructureID": 4876, + "Label": "7145-4876 via Conventional from 15831 -> 129035, 18109 -> 18982", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15831, + "TargetID": 129035, + "Directional": true + }, { + "SourceID": 18109, + "TargetID": 18982, + "Directional": true + }] + }, { + "ID": 11854, + "SourceStructureID": 7145, + "TargetStructureID": 9787, + "Label": "7145-9787 via Conventional from 18112 -> 18106, 27142 -> 27143", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18112, + "TargetID": 18106, + "Directional": true + }, { + "SourceID": 27142, + "TargetID": 27143, + "Directional": true + }] + }, { + "ID": 11855, + "SourceStructureID": 7145, + "TargetStructureID": 91459, + "Label": "7145-91459 via Conventional from 16667 -> 91460", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16667, + "TargetID": 91460, + "Directional": true + }] + }, { + "ID": 11856, + "SourceStructureID": 7145, + "TargetStructureID": 129798, + "Label": "7145-129798 via Conventional from 129805 -> 129804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129805, + "TargetID": 129804, + "Directional": true + }] + }, { + "ID": 11857, + "SourceStructureID": 7147, + "TargetStructureID": 161, + "Label": "7147-161 via Conventional from 11768 -> 11765", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11768, + "TargetID": 11765, + "Directional": true + }] + }, { + "ID": 11858, + "SourceStructureID": 7147, + "TargetStructureID": 4876, + "Label": "7147-4876 via Conventional from 52240 -> 19079, 52241 -> 19112", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52240, + "TargetID": 19079, + "Directional": true + }, { + "SourceID": 52241, + "TargetID": 19112, + "Directional": true + }] + }, { + "ID": 11859, + "SourceStructureID": 7147, + "TargetStructureID": 6048, + "Label": "7147-6048 via Conventional from 60479 -> 60478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60479, + "TargetID": 60478, + "Directional": true + }] + }, { + "ID": 11860, + "SourceStructureID": 7147, + "TargetStructureID": 6136, + "Label": "7147-6136 via Conventional from 36068 -> 13033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36068, + "TargetID": 13033, + "Directional": true + }] + }, { + "ID": 11861, + "SourceStructureID": 7147, + "TargetStructureID": 28913, + "Label": "7147-28913 via Conventional from 52238 -> 52239", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52238, + "TargetID": 52239, + "Directional": true + }] + }, { + "ID": 11862, + "SourceStructureID": 7157, + "TargetStructureID": 354, + "Label": "7157-354 via Conventional from 21451 -> 133819, 26514 -> 133816", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21451, + "TargetID": 133819, + "Directional": true + }, { + "SourceID": 26514, + "TargetID": 133816, + "Directional": true + }] + }, { + "ID": 11863, + "SourceStructureID": 7157, + "TargetStructureID": 359, + "Label": "7157-359 via Conventional from 21450 -> 21435", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21450, + "TargetID": 21435, + "Directional": true + }] + }, { + "ID": 11864, + "SourceStructureID": 7157, + "TargetStructureID": 433, + "Label": "7157-433 via Conventional from 8207 -> 8200", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8207, + "TargetID": 8200, + "Directional": true + }] + }, { + "ID": 11865, + "SourceStructureID": 7157, + "TargetStructureID": 437, + "Label": "7157-437 via Conventional from 65722 -> 65719, 65723 -> 65720, 65724 -> 65721, 65728 -> 65726, 65732 -> 65716", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65722, + "TargetID": 65719, + "Directional": true + }, { + "SourceID": 65723, + "TargetID": 65720, + "Directional": true + }, { + "SourceID": 65724, + "TargetID": 65721, + "Directional": true + }, { + "SourceID": 65728, + "TargetID": 65726, + "Directional": true + }, { + "SourceID": 65732, + "TargetID": 65716, + "Directional": true + }] + }, { + "ID": 11866, + "SourceStructureID": 7157, + "TargetStructureID": 9787, + "Label": "7157-9787 via Conventional from 12050 -> 9838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12050, + "TargetID": 9838, + "Directional": true + }] + }, { + "ID": 11867, + "SourceStructureID": 7157, + "TargetStructureID": 26304, + "Label": "7157-26304 via Conventional from 12049 -> 26306, 25970 -> 26330, 26501 -> 26356, 26504 -> 26355, 26538 -> 26537", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12049, + "TargetID": 26306, + "Directional": true + }, { + "SourceID": 25970, + "TargetID": 26330, + "Directional": true + }, { + "SourceID": 26501, + "TargetID": 26356, + "Directional": true + }, { + "SourceID": 26504, + "TargetID": 26355, + "Directional": true + }, { + "SourceID": 26538, + "TargetID": 26537, + "Directional": true + }] + }, { + "ID": 11868, + "SourceStructureID": 7157, + "TargetStructureID": 31944, + "Label": "7157-31944 via Conventional from 31949 -> 31947, 31950 -> 31948", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31949, + "TargetID": 31947, + "Directional": true + }, { + "SourceID": 31950, + "TargetID": 31948, + "Directional": true + }] + }, { + "ID": 11869, + "SourceStructureID": 7157, + "TargetStructureID": 158844, + "Label": "7157-158844 via Conventional from 8214 -> 158845", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8214, + "TargetID": 158845, + "Directional": true + }] + }, { + "ID": 11870, + "SourceStructureID": 7157, + "TargetStructureID": 158846, + "Label": "7157-158846 via Conventional from 8210 -> 158850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8210, + "TargetID": 158850, + "Directional": true + }] + }, { + "ID": 11871, + "SourceStructureID": 7157, + "TargetStructureID": 158907, + "Label": "7157-158907 via Conventional from 21445 -> 158909, 21448 -> 158911", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21445, + "TargetID": 158909, + "Directional": true + }, { + "SourceID": 21448, + "TargetID": 158911, + "Directional": true + }] + }, { + "ID": 11872, + "SourceStructureID": 7174, + "TargetStructureID": 29277, + "Label": "7174-29277 via Ribbon Synapse from 29285 -> 29284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29285, + "TargetID": 29284, + "Directional": true + }] + }, { + "ID": 11873, + "SourceStructureID": 7188, + "TargetStructureID": 4943, + "Label": "7188-4943 via Conventional from 8513 -> 4971", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8513, + "TargetID": 4971, + "Directional": true + }] + }, { + "ID": 11874, + "SourceStructureID": 7188, + "TargetStructureID": 5634, + "Label": "7188-5634 via Conventional from 22801 -> 122030", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22801, + "TargetID": 122030, + "Directional": true + }] + }, { + "ID": 11875, + "SourceStructureID": 7188, + "TargetStructureID": 9810, + "Label": "7188-9810 via Conventional from 9802 -> 9812", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9802, + "TargetID": 9812, + "Directional": true + }] + }, { + "ID": 11876, + "SourceStructureID": 7188, + "TargetStructureID": 90715, + "Label": "7188-90715 via Conventional from 9820 -> 91314", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9820, + "TargetID": 91314, + "Directional": true + }] + }, { + "ID": 11877, + "SourceStructureID": 7203, + "TargetStructureID": 5532, + "Label": "7203-5532 via Cistern Pre from 37536 -> 37537", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 37536, + "TargetID": 37537, + "Directional": true + }] + }, { + "ID": 11878, + "SourceStructureID": 7204, + "TargetStructureID": 5641, + "Label": "7204-5641 via Conventional from 24336 -> 24185, 39052 -> 39053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24336, + "TargetID": 24185, + "Directional": true + }, { + "SourceID": 39052, + "TargetID": 39053, + "Directional": true + }] + }, { + "ID": 11879, + "SourceStructureID": 7204, + "TargetStructureID": 8578, + "Label": "7204-8578 via Conventional from 54670 -> 54669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54670, + "TargetID": 54669, + "Directional": true + }] + }, { + "ID": 11880, + "SourceStructureID": 7215, + "TargetStructureID": 7691, + "Label": "7215-7691 via Conventional from 41565 -> 14705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41565, + "TargetID": 14705, + "Directional": true + }] + }, { + "ID": 11881, + "SourceStructureID": 7215, + "TargetStructureID": 34336, + "Label": "7215-34336 via Conventional from 31587 -> 34371", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31587, + "TargetID": 34371, + "Directional": true + }] + }, { + "ID": 11882, + "SourceStructureID": 7225, + "TargetStructureID": 3928, + "Label": "7225-3928 via Conventional from 28998 -> 40819, 29023 -> 40703", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 28998, + "TargetID": 40819, + "Directional": true + }, { + "SourceID": 29023, + "TargetID": 40703, + "Directional": true + }] + }, { + "ID": 11883, + "SourceStructureID": 7225, + "TargetStructureID": 5539, + "Label": "7225-5539 via Conventional from 10034 -> 10023", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10034, + "TargetID": 10023, + "Directional": true + }] + }, { + "ID": 11884, + "SourceStructureID": 7225, + "TargetStructureID": 5544, + "Label": "7225-5544 via Conventional from 137048 -> 44751", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137048, + "TargetID": 44751, + "Directional": true + }] + }, { + "ID": 11885, + "SourceStructureID": 7225, + "TargetStructureID": 6128, + "Label": "7225-6128 via Conventional from 88399 -> 21177, 88401 -> 88402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88399, + "TargetID": 21177, + "Directional": true + }, { + "SourceID": 88401, + "TargetID": 88402, + "Directional": true + }] + }, { + "ID": 11886, + "SourceStructureID": 7225, + "TargetStructureID": 6131, + "Label": "7225-6131 via Conventional from 88396 -> 88397", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88396, + "TargetID": 88397, + "Directional": true + }] + }, { + "ID": 11887, + "SourceStructureID": 7225, + "TargetStructureID": 6132, + "Label": "7225-6132 via Conventional from 29025 -> 29003, 29026 -> 29004, 88408 -> 88432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29025, + "TargetID": 29003, + "Directional": true + }, { + "SourceID": 29026, + "TargetID": 29004, + "Directional": true + }, { + "SourceID": 88408, + "TargetID": 88432, + "Directional": true + }] + }, { + "ID": 11888, + "SourceStructureID": 7225, + "TargetStructureID": 7293, + "Label": "7225-7293 via Conventional from 10032 -> 10033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10032, + "TargetID": 10033, + "Directional": true + }] + }, { + "ID": 11889, + "SourceStructureID": 7225, + "TargetStructureID": 7346, + "Label": "7225-7346 via Conventional from 43994 -> 44009", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43994, + "TargetID": 44009, + "Directional": true + }] + }, { + "ID": 11890, + "SourceStructureID": 7225, + "TargetStructureID": 11066, + "Label": "7225-11066 via Conventional from 31557 -> 31555", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31557, + "TargetID": 31555, + "Directional": true + }] + }, { + "ID": 11891, + "SourceStructureID": 7225, + "TargetStructureID": 28950, + "Label": "7225-28950 via Conventional from 28994 -> 28990, 28995 -> 28993, 28996 -> 28991", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 28994, + "TargetID": 28990, + "Directional": true + }, { + "SourceID": 28995, + "TargetID": 28993, + "Directional": true + }, { + "SourceID": 28996, + "TargetID": 28991, + "Directional": true + }] + }, { + "ID": 11892, + "SourceStructureID": 7225, + "TargetStructureID": 117778, + "Label": "7225-117778 via Conventional from 28997 -> 117784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 28997, + "TargetID": 117784, + "Directional": true + }] + }, { + "ID": 11893, + "SourceStructureID": 7225, + "TargetStructureID": 137024, + "Label": "7225-137024 via Conventional from 137045 -> 137046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137045, + "TargetID": 137046, + "Directional": true + }] + }, { + "ID": 11894, + "SourceStructureID": 7231, + "TargetStructureID": 16073, + "Label": "7231-16073 via Conventional from 116952 -> 24204, 117038 -> 117039, 117040 -> 41249, 117041 -> 41251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116952, + "TargetID": 24204, + "Directional": true + }, { + "SourceID": 117038, + "TargetID": 117039, + "Directional": true + }, { + "SourceID": 117040, + "TargetID": 41249, + "Directional": true + }, { + "SourceID": 117041, + "TargetID": 41251, + "Directional": true + }] + }, { + "ID": 11895, + "SourceStructureID": 7274, + "TargetStructureID": 5303, + "Label": "7274-5303 via Conventional from 41802 -> 24046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41802, + "TargetID": 24046, + "Directional": true + }] + }, { + "ID": 11896, + "SourceStructureID": 7279, + "TargetStructureID": 5551, + "Label": "7279-5551 via Conventional from 34688 -> 116916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34688, + "TargetID": 116916, + "Directional": true + }] + }, { + "ID": 11897, + "SourceStructureID": 7279, + "TargetStructureID": 5604, + "Label": "7279-5604 via Conventional from 131380 -> 36882", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131380, + "TargetID": 36882, + "Directional": true + }] + }, { + "ID": 11898, + "SourceStructureID": 7279, + "TargetStructureID": 5636, + "Label": "7279-5636 via Conventional from 34689 -> 34728", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34689, + "TargetID": 34728, + "Directional": true + }] + }, { + "ID": 11899, + "SourceStructureID": 7279, + "TargetStructureID": 116919, + "Label": "7279-116919 via Conventional from 34686 -> 116922", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34686, + "TargetID": 116922, + "Directional": true + }] + }, { + "ID": 11900, + "SourceStructureID": 7279, + "TargetStructureID": 137024, + "Label": "7279-137024 via Conventional from 137060 -> 137059", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137060, + "TargetID": 137059, + "Directional": true + }] + }, { + "ID": 11901, + "SourceStructureID": 7344, + "TargetStructureID": 5422, + "Label": "7344-5422 via Cistern Pre from 74118 -> 74117", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 74118, + "TargetID": 74117, + "Directional": true + }] + }, { + "ID": 11902, + "SourceStructureID": 7345, + "TargetStructureID": 11066, + "Label": "7345-11066 via Conventional from 34447 -> 34410, 34448 -> 34404, 34450 -> 34406", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34447, + "TargetID": 34410, + "Directional": true + }, { + "SourceID": 34448, + "TargetID": 34404, + "Directional": true + }, { + "SourceID": 34450, + "TargetID": 34406, + "Directional": true + }] + }, { + "ID": 11903, + "SourceStructureID": 7345, + "TargetStructureID": 135295, + "Label": "7345-135295 via Conventional from 135314 -> 135313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135314, + "TargetID": 135313, + "Directional": true + }] + }, { + "ID": 11904, + "SourceStructureID": 7346, + "TargetStructureID": 6128, + "Label": "7346-6128 via BC Conventional Synapse from 44069 -> 20977", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44069, + "TargetID": 20977, + "Directional": true + }] + }, { + "ID": 11905, + "SourceStructureID": 7346, + "TargetStructureID": 43198, + "Label": "7346-43198 via Ribbon Synapse from 122102 -> 122101", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122102, + "TargetID": 122101, + "Directional": true + }] + }, { + "ID": 11906, + "SourceStructureID": 7346, + "TargetStructureID": 44095, + "Label": "7346-44095 via Ribbon Synapse from 44105 -> 44096, 44109 -> 44508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44105, + "TargetID": 44096, + "Directional": true + }, { + "SourceID": 44109, + "TargetID": 44508, + "Directional": true + }] + }, { + "ID": 11907, + "SourceStructureID": 7346, + "TargetStructureID": 64414, + "Label": "7346-64414 via Ribbon Synapse from 64431 -> 64430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64431, + "TargetID": 64430, + "Directional": true + }] + }, { + "ID": 11908, + "SourceStructureID": 7361, + "TargetStructureID": 11238, + "Label": "7361-11238 via Ribbon Synapse from 136251 -> 136246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136251, + "TargetID": 136246, + "Directional": true + }] + }, { + "ID": 11909, + "SourceStructureID": 7362, + "TargetStructureID": 13525, + "Label": "7362-13525 via Ribbon Synapse from 103930 -> 86531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103930, + "TargetID": 86531, + "Directional": true + }] + }, { + "ID": 11910, + "SourceStructureID": 7446, + "TargetStructureID": 5413, + "Label": "7446-5413 via Ribbon Synapse from 121931 -> 130909", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121931, + "TargetID": 130909, + "Directional": true + }] + }, { + "ID": 11911, + "SourceStructureID": 7446, + "TargetStructureID": 18693, + "Label": "7446-18693 via Ribbon Synapse from 64765 -> 64764", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64765, + "TargetID": 64764, + "Directional": true + }] + }, { + "ID": 11912, + "SourceStructureID": 7446, + "TargetStructureID": 45220, + "Label": "7446-45220 via Ribbon Synapse from 123044 -> 45259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123044, + "TargetID": 45259, + "Directional": true + }] + }, { + "ID": 11913, + "SourceStructureID": 7446, + "TargetStructureID": 118315, + "Label": "7446-118315 via Ribbon Synapse from 118314 -> 118317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118314, + "TargetID": 118317, + "Directional": true + }] + }, { + "ID": 11914, + "SourceStructureID": 7461, + "TargetStructureID": 433, + "Label": "7461-433 via Conventional from 41087 -> 21593", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41087, + "TargetID": 21593, + "Directional": true + }] + }, { + "ID": 11915, + "SourceStructureID": 7461, + "TargetStructureID": 6128, + "Label": "7461-6128 via Conventional from 30465 -> 30466, 30470 -> 39989", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30465, + "TargetID": 30466, + "Directional": true + }, { + "SourceID": 30470, + "TargetID": 39989, + "Directional": true + }] + }, { + "ID": 11916, + "SourceStructureID": 7464, + "TargetStructureID": 446, + "Label": "7464-446 via Cistern Pre from 39437 -> 39438", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 39437, + "TargetID": 39438, + "Directional": true + }] + }, { + "ID": 11917, + "SourceStructureID": 7468, + "TargetStructureID": 354, + "Label": "7468-354 via Conventional from 47906 -> 44656", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47906, + "TargetID": 44656, + "Directional": true + }] + }, { + "ID": 11918, + "SourceStructureID": 7468, + "TargetStructureID": 28950, + "Label": "7468-28950 via Conventional from 29065 -> 29063, 29065 -> 29066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29065, + "TargetID": 29063, + "Directional": true + }, { + "SourceID": 29065, + "TargetID": 29066, + "Directional": true + }] + }, { + "ID": 11919, + "SourceStructureID": 7468, + "TargetStructureID": 47908, + "Label": "7468-47908 via Conventional from 47905 -> 47914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47905, + "TargetID": 47914, + "Directional": true + }] + }, { + "ID": 11920, + "SourceStructureID": 7468, + "TargetStructureID": 129484, + "Label": "7468-129484 via Conventional from 129482 -> 129485, 129486 -> 129487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129482, + "TargetID": 129485, + "Directional": true + }, { + "SourceID": 129486, + "TargetID": 129487, + "Directional": true + }] + }, { + "ID": 11921, + "SourceStructureID": 7561, + "TargetStructureID": 7054, + "Label": "7561-7054 via Conventional from 7562 -> 7055", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 7562, + "TargetID": 7055, + "Directional": true + }] + }, { + "ID": 11922, + "SourceStructureID": 7564, + "TargetStructureID": 458, + "Label": "7564-458 via Conventional from 28773 -> 14493, 34345 -> 34344", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 28773, + "TargetID": 14493, + "Directional": true + }, { + "SourceID": 34345, + "TargetID": 34344, + "Directional": true + }] + }, { + "ID": 11923, + "SourceStructureID": 7564, + "TargetStructureID": 5542, + "Label": "7564-5542 via Conventional from 29052 -> 29054, 82104 -> 127976", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29052, + "TargetID": 29054, + "Directional": true + }, { + "SourceID": 82104, + "TargetID": 127976, + "Directional": true + }] + }, { + "ID": 11924, + "SourceStructureID": 7564, + "TargetStructureID": 5544, + "Label": "7564-5544 via Conventional from 29156 -> 29162, 44709 -> 44708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29156, + "TargetID": 29162, + "Directional": true + }, { + "SourceID": 44709, + "TargetID": 44708, + "Directional": true + }] + }, { + "ID": 11925, + "SourceStructureID": 7564, + "TargetStructureID": 6128, + "Label": "7564-6128 via Conventional from 137019 -> 33759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137019, + "TargetID": 33759, + "Directional": true + }] + }, { + "ID": 11926, + "SourceStructureID": 7564, + "TargetStructureID": 6131, + "Label": "7564-6131 via Conventional from 82105 -> 45282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82105, + "TargetID": 45282, + "Directional": true + }] + }, { + "ID": 11927, + "SourceStructureID": 7564, + "TargetStructureID": 6132, + "Label": "7564-6132 via Conventional from 88492 -> 88503", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88492, + "TargetID": 88503, + "Directional": true + }] + }, { + "ID": 11928, + "SourceStructureID": 7564, + "TargetStructureID": 10963, + "Label": "7564-10963 via Conventional from 31930 -> 31929", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31930, + "TargetID": 31929, + "Directional": true + }] + }, { + "ID": 11929, + "SourceStructureID": 7564, + "TargetStructureID": 28950, + "Label": "7564-28950 via Conventional from 29048 -> 29045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29048, + "TargetID": 29045, + "Directional": true + }] + }, { + "ID": 11930, + "SourceStructureID": 7564, + "TargetStructureID": 46741, + "Label": "7564-46741 via Conventional from 137000 -> 136994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137000, + "TargetID": 136994, + "Directional": true + }] + }, { + "ID": 11931, + "SourceStructureID": 7564, + "TargetStructureID": 137024, + "Label": "7564-137024 via Conventional from 137028 -> 137027", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137028, + "TargetID": 137027, + "Directional": true + }] + }, { + "ID": 11932, + "SourceStructureID": 7564, + "TargetStructureID": 158673, + "Label": "7564-158673 via Conventional from 137018 -> 158675", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137018, + "TargetID": 158675, + "Directional": true + }] + }, { + "ID": 11933, + "SourceStructureID": 7565, + "TargetStructureID": 172, + "Label": "7565-172 via Conventional from 129856 -> 129857", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129856, + "TargetID": 129857, + "Directional": true + }] + }, { + "ID": 11934, + "SourceStructureID": 7568, + "TargetStructureID": 5350, + "Label": "7568-5350 via Conventional from 27020 -> 10655", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27020, + "TargetID": 10655, + "Directional": true + }] + }, { + "ID": 11935, + "SourceStructureID": 7568, + "TargetStructureID": 5439, + "Label": "7568-5439 via Conventional from 27086 -> 85515", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27086, + "TargetID": 85515, + "Directional": true + }] + }, { + "ID": 11936, + "SourceStructureID": 7568, + "TargetStructureID": 29198, + "Label": "7568-29198 via Conventional from 27114 -> 29208", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27114, + "TargetID": 29208, + "Directional": true + }] + }, { + "ID": 11937, + "SourceStructureID": 7568, + "TargetStructureID": 30015, + "Label": "7568-30015 via Conventional from 30024 -> 30023", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30024, + "TargetID": 30023, + "Directional": true + }] + }, { + "ID": 11938, + "SourceStructureID": 7568, + "TargetStructureID": 78303, + "Label": "7568-78303 via Conventional from 78306 -> 78307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78306, + "TargetID": 78307, + "Directional": true + }] + }, { + "ID": 11939, + "SourceStructureID": 7576, + "TargetStructureID": 177, + "Label": "7576-177 via Conventional from 54980 -> 27967, 54985 -> 27954", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54980, + "TargetID": 27967, + "Directional": true + }, { + "SourceID": 54985, + "TargetID": 27954, + "Directional": true + }] + }, { + "ID": 11940, + "SourceStructureID": 7576, + "TargetStructureID": 10961, + "Label": "7576-10961 via Conventional from 54977 -> 54978", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54977, + "TargetID": 54978, + "Directional": true + }] + }, { + "ID": 11941, + "SourceStructureID": 7576, + "TargetStructureID": 54913, + "Label": "7576-54913 via Conventional from 54770 -> 55058, 55056 -> 55057", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54770, + "TargetID": 55058, + "Directional": true + }, { + "SourceID": 55056, + "TargetID": 55057, + "Directional": true + }] + }, { + "ID": 11942, + "SourceStructureID": 7577, + "TargetStructureID": 137024, + "Label": "7577-137024 via Plaque-like Pre from 130512 -> 137053", + "Type": "Plaque-like Pre", + "Directional": true, + "Links": [{ + "SourceID": 130512, + "TargetID": 137053, + "Directional": true + }] + }, { + "ID": 11943, + "SourceStructureID": 7587, + "TargetStructureID": 135225, + "Label": "7587-135225 via Ribbon Synapse from 135272 -> 135261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135272, + "TargetID": 135261, + "Directional": true + }] + }, { + "ID": 11944, + "SourceStructureID": 7703, + "TargetStructureID": 115, + "Label": "7703-115 via Conventional from 15212 -> 15214, 18593 -> 8159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15212, + "TargetID": 15214, + "Directional": true + }, { + "SourceID": 18593, + "TargetID": 8159, + "Directional": true + }] + }, { + "ID": 11945, + "SourceStructureID": 7703, + "TargetStructureID": 440, + "Label": "7703-440 via Conventional from 18599 -> 18648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18599, + "TargetID": 18648, + "Directional": true + }] + }, { + "ID": 11946, + "SourceStructureID": 7703, + "TargetStructureID": 458, + "Label": "7703-458 via Conventional from 14522 -> 8151", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14522, + "TargetID": 8151, + "Directional": true + }] + }, { + "ID": 11947, + "SourceStructureID": 7703, + "TargetStructureID": 5453, + "Label": "7703-5453 via Conventional from 18590 -> 18660", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18590, + "TargetID": 18660, + "Directional": true + }] + }, { + "ID": 11948, + "SourceStructureID": 7703, + "TargetStructureID": 5543, + "Label": "7703-5543 via Conventional from 17004 -> 17019, 18275 -> 17135, 18589 -> 17092", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 17004, + "TargetID": 17019, + "Directional": true + }, { + "SourceID": 18275, + "TargetID": 17135, + "Directional": true + }, { + "SourceID": 18589, + "TargetID": 17092, + "Directional": true + }] + }, { + "ID": 11949, + "SourceStructureID": 7703, + "TargetStructureID": 6129, + "Label": "7703-6129 via Conventional from 17757 -> 17784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 17757, + "TargetID": 17784, + "Directional": true + }] + }, { + "ID": 11950, + "SourceStructureID": 7703, + "TargetStructureID": 8575, + "Label": "7703-8575 via Conventional from 18595 -> 37281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18595, + "TargetID": 37281, + "Directional": true + }] + }, { + "ID": 11951, + "SourceStructureID": 7703, + "TargetStructureID": 62632, + "Label": "7703-62632 via Conventional from 62635 -> 62636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62635, + "TargetID": 62636, + "Directional": true + }] + }, { + "ID": 11952, + "SourceStructureID": 7703, + "TargetStructureID": 137122, + "Label": "7703-137122 via Conventional from 137129 -> 137128", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137129, + "TargetID": 137128, + "Directional": true + }] + }, { + "ID": 11953, + "SourceStructureID": 7850, + "TargetStructureID": 4890, + "Label": "7850-4890 via Conventional from 7851 -> 6111", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 7851, + "TargetID": 6111, + "Directional": true + }] + }, { + "ID": 11954, + "SourceStructureID": 7850, + "TargetStructureID": 78327, + "Label": "7850-78327 via Conventional from 7852 -> 78328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 7852, + "TargetID": 78328, + "Directional": true + }] + }, { + "ID": 11955, + "SourceStructureID": 7858, + "TargetStructureID": 64414, + "Label": "7858-64414 via Conventional from 31906 -> 64439", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31906, + "TargetID": 64439, + "Directional": true + }] + }, { + "ID": 11956, + "SourceStructureID": 7859, + "TargetStructureID": 11238, + "Label": "7859-11238 via Conventional from 84698 -> 136112, 84808 -> 136114, 84819 -> 136137", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84698, + "TargetID": 136112, + "Directional": true + }, { + "SourceID": 84808, + "TargetID": 136114, + "Directional": true + }, { + "SourceID": 84819, + "TargetID": 136137, + "Directional": true + }] + }, { + "ID": 11957, + "SourceStructureID": 7859, + "TargetStructureID": 43716, + "Label": "7859-43716 via Conventional from 84808 -> 43723", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84808, + "TargetID": 43723, + "Directional": true + }] + }, { + "ID": 11958, + "SourceStructureID": 7859, + "TargetStructureID": 62531, + "Label": "7859-62531 via Conventional from 64636 -> 64637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64636, + "TargetID": 64637, + "Directional": true + }] + }, { + "ID": 11959, + "SourceStructureID": 7859, + "TargetStructureID": 64670, + "Label": "7859-64670 via Conventional from 64669 -> 64671", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64669, + "TargetID": 64671, + "Directional": true + }] + }, { + "ID": 11960, + "SourceStructureID": 7859, + "TargetStructureID": 136351, + "Label": "7859-136351 via Conventional from 136354 -> 136352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136354, + "TargetID": 136352, + "Directional": true + }] + }, { + "ID": 11961, + "SourceStructureID": 7860, + "TargetStructureID": 452, + "Label": "7860-452 via Conventional from 36085 -> 7324, 36086 -> 7380", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36085, + "TargetID": 7324, + "Directional": true + }, { + "SourceID": 36086, + "TargetID": 7380, + "Directional": true + }] + }, { + "ID": 11962, + "SourceStructureID": 7860, + "TargetStructureID": 452, + "Label": "7860-452 via Ribbon Synapse from 36084 -> 7324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 36084, + "TargetID": 7324, + "Directional": true + }] + }, { + "ID": 11963, + "SourceStructureID": 7860, + "TargetStructureID": 28950, + "Label": "7860-28950 via Conventional from 29062 -> 29060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29062, + "TargetID": 29060, + "Directional": true + }] + }, { + "ID": 11964, + "SourceStructureID": 7861, + "TargetStructureID": 441, + "Label": "7861-441 via Conventional from 21268 -> 21269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21268, + "TargetID": 21269, + "Directional": true + }] + }, { + "ID": 11965, + "SourceStructureID": 7861, + "TargetStructureID": 452, + "Label": "7861-452 via Conventional from 34547 -> 7343, 36072 -> 21243, 36073 -> 21243", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34547, + "TargetID": 7343, + "Directional": true + }, { + "SourceID": 36072, + "TargetID": 21243, + "Directional": true + }, { + "SourceID": 36073, + "TargetID": 21243, + "Directional": true + }] + }, { + "ID": 11966, + "SourceStructureID": 7861, + "TargetStructureID": 5542, + "Label": "7861-5542 via Conventional from 18250 -> 18266, 18250 -> 130353", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18250, + "TargetID": 18266, + "Directional": true + }, { + "SourceID": 18250, + "TargetID": 130353, + "Directional": true + }] + }, { + "ID": 11967, + "SourceStructureID": 7861, + "TargetStructureID": 5543, + "Label": "7861-5543 via Conventional from 18243 -> 17159, 18244 -> 17158", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18243, + "TargetID": 17159, + "Directional": true + }, { + "SourceID": 18244, + "TargetID": 17158, + "Directional": true + }] + }, { + "ID": 11968, + "SourceStructureID": 7861, + "TargetStructureID": 6128, + "Label": "7861-6128 via Conventional from 21253 -> 20885, 36071 -> 20973", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21253, + "TargetID": 20885, + "Directional": true + }, { + "SourceID": 36071, + "TargetID": 20973, + "Directional": true + }] + }, { + "ID": 11969, + "SourceStructureID": 7861, + "TargetStructureID": 7346, + "Label": "7861-7346 via Conventional from 44108 -> 44107", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44108, + "TargetID": 44107, + "Directional": true + }] + }, { + "ID": 11970, + "SourceStructureID": 7861, + "TargetStructureID": 11092, + "Label": "7861-11092 via Conventional from 34544 -> 125793, 121014 -> 123471", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34544, + "TargetID": 125793, + "Directional": true + }, { + "SourceID": 121014, + "TargetID": 123471, + "Directional": true + }] + }, { + "ID": 11971, + "SourceStructureID": 7861, + "TargetStructureID": 137070, + "Label": "7861-137070 via Conventional from 137069 -> 137073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137069, + "TargetID": 137073, + "Directional": true + }] + }, { + "ID": 11972, + "SourceStructureID": 7897, + "TargetStructureID": 138, + "Label": "7897-138 via Conventional from 46476 -> 46477, 46481 -> 46482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46476, + "TargetID": 46477, + "Directional": true + }, { + "SourceID": 46481, + "TargetID": 46482, + "Directional": true + }] + }, { + "ID": 11973, + "SourceStructureID": 7897, + "TargetStructureID": 5303, + "Label": "7897-5303 via Conventional from 46475 -> 35623", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46475, + "TargetID": 35623, + "Directional": true + }] + }, { + "ID": 11974, + "SourceStructureID": 7897, + "TargetStructureID": 15796, + "Label": "7897-15796 via Conventional from 55755 -> 55678", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55755, + "TargetID": 55678, + "Directional": true + }] + }, { + "ID": 11975, + "SourceStructureID": 7897, + "TargetStructureID": 36130, + "Label": "7897-36130 via Conventional from 15795 -> 36132", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15795, + "TargetID": 36132, + "Directional": true + }] + }, { + "ID": 11976, + "SourceStructureID": 7904, + "TargetStructureID": 5150, + "Label": "7904-5150 via Conventional from 131348 -> 5247, 131353 -> 5252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131348, + "TargetID": 5247, + "Directional": true + }, { + "SourceID": 131353, + "TargetID": 5252, + "Directional": true + }] + }, { + "ID": 11977, + "SourceStructureID": 7904, + "TargetStructureID": 6125, + "Label": "7904-6125 via Conventional from 129040 -> 129041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129040, + "TargetID": 129041, + "Directional": true + }] + }, { + "ID": 11978, + "SourceStructureID": 7904, + "TargetStructureID": 119547, + "Label": "7904-119547 via Conventional from 131345 -> 119573", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131345, + "TargetID": 119573, + "Directional": true + }] + }, { + "ID": 11979, + "SourceStructureID": 7951, + "TargetStructureID": 5504, + "Label": "7951-5504 via Conventional from 11126 -> 11125", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11126, + "TargetID": 11125, + "Directional": true + }] + }, { + "ID": 11980, + "SourceStructureID": 7951, + "TargetStructureID": 5909, + "Label": "7951-5909 via Conventional from 93153 -> 93152", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93153, + "TargetID": 93152, + "Directional": true + }] + }, { + "ID": 11981, + "SourceStructureID": 7951, + "TargetStructureID": 5922, + "Label": "7951-5922 via Conventional from 26732 -> 68846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 26732, + "TargetID": 68846, + "Directional": true + }] + }, { + "ID": 11982, + "SourceStructureID": 7951, + "TargetStructureID": 6125, + "Label": "7951-6125 via Conventional from 26757 -> 31202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 26757, + "TargetID": 31202, + "Directional": true + }] + }, { + "ID": 11983, + "SourceStructureID": 7951, + "TargetStructureID": 34761, + "Label": "7951-34761 via Conventional from 34767 -> 34766, 34768 -> 34765, 34775 -> 34776", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34767, + "TargetID": 34766, + "Directional": true + }, { + "SourceID": 34768, + "TargetID": 34765, + "Directional": true + }, { + "SourceID": 34775, + "TargetID": 34776, + "Directional": true + }] + }, { + "ID": 11984, + "SourceStructureID": 8032, + "TargetStructureID": 6140, + "Label": "8032-6140 via Conventional from 47950 -> 47951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47950, + "TargetID": 47951, + "Directional": true + }] + }, { + "ID": 11985, + "SourceStructureID": 8035, + "TargetStructureID": 5504, + "Label": "8035-5504 via Conventional from 25016 -> 25015", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25016, + "TargetID": 25015, + "Directional": true + }] + }, { + "ID": 11986, + "SourceStructureID": 8035, + "TargetStructureID": 5609, + "Label": "8035-5609 via Conventional from 25051 -> 25050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25051, + "TargetID": 25050, + "Directional": true + }] + }, { + "ID": 11987, + "SourceStructureID": 8035, + "TargetStructureID": 6118, + "Label": "8035-6118 via Conventional from 25019 -> 25031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25019, + "TargetID": 25031, + "Directional": true + }] + }, { + "ID": 11988, + "SourceStructureID": 8037, + "TargetStructureID": 5498, + "Label": "8037-5498 via Conventional from 48003 -> 48004", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 48003, + "TargetID": 48004, + "Directional": true + }] + }, { + "ID": 11989, + "SourceStructureID": 8037, + "TargetStructureID": 8485, + "Label": "8037-8485 via Conventional from 11671 -> 11672, 11673 -> 11674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11671, + "TargetID": 11672, + "Directional": true + }, { + "SourceID": 11673, + "TargetID": 11674, + "Directional": true + }] + }, { + "ID": 11990, + "SourceStructureID": 8037, + "TargetStructureID": 18471, + "Label": "8037-18471 via Conventional from 18470 -> 18473", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18470, + "TargetID": 18473, + "Directional": true + }] + }, { + "ID": 11991, + "SourceStructureID": 8037, + "TargetStructureID": 85094, + "Label": "8037-85094 via Conventional from 85114 -> 85112", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85114, + "TargetID": 85112, + "Directional": true + }] + }, { + "ID": 11992, + "SourceStructureID": 8038, + "TargetStructureID": 5622, + "Label": "8038-5622 via Conventional from 24173 -> 24172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24173, + "TargetID": 24172, + "Directional": true + }] + }, { + "ID": 11993, + "SourceStructureID": 8040, + "TargetStructureID": 606, + "Label": "8040-606 via Ribbon Synapse from 39149 -> 39150, 48523 -> 48524, 48525 -> 48526, 51705 -> 51706", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39149, + "TargetID": 39150, + "Directional": true + }, { + "SourceID": 48523, + "TargetID": 48524, + "Directional": true + }, { + "SourceID": 48525, + "TargetID": 48526, + "Directional": true + }, { + "SourceID": 51705, + "TargetID": 51706, + "Directional": true + }] + }, { + "ID": 11994, + "SourceStructureID": 8040, + "TargetStructureID": 35452, + "Label": "8040-35452 via Ribbon Synapse from 35464 -> 35460", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35464, + "TargetID": 35460, + "Directional": true + }] + }, { + "ID": 11995, + "SourceStructureID": 8040, + "TargetStructureID": 52410, + "Label": "8040-52410 via Ribbon Synapse from 48629 -> 52562, 48774 -> 52556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48629, + "TargetID": 52562, + "Directional": true + }, { + "SourceID": 48774, + "TargetID": 52556, + "Directional": true + }] + }, { + "ID": 11996, + "SourceStructureID": 8040, + "TargetStructureID": 69554, + "Label": "8040-69554 via Cistern Pre from 39140 -> 69556, 39142 -> 69563", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 39140, + "TargetID": 69556, + "Directional": true + }, { + "SourceID": 39142, + "TargetID": 69563, + "Directional": true + }] + }, { + "ID": 11997, + "SourceStructureID": 8045, + "TargetStructureID": 7114, + "Label": "8045-7114 via Conventional from 12486 -> 12487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12486, + "TargetID": 12487, + "Directional": true + }] + }, { + "ID": 11998, + "SourceStructureID": 8059, + "TargetStructureID": 8575, + "Label": "8059-8575 via Conventional from 62215 -> 62214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62215, + "TargetID": 62214, + "Directional": true + }] + }, { + "ID": 11999, + "SourceStructureID": 8212, + "TargetStructureID": 6146, + "Label": "8212-6146 via Conventional from 38080 -> 38079", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38080, + "TargetID": 38079, + "Directional": true + }] + }, { + "ID": 12000, + "SourceStructureID": 8218, + "TargetStructureID": 5598, + "Label": "8218-5598 via Conventional from 12533 -> 12532", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12533, + "TargetID": 12532, + "Directional": true + }] + }, { + "ID": 12001, + "SourceStructureID": 8485, + "TargetStructureID": 2610, + "Label": "8485-2610 via Ribbon Synapse from 71249 -> 71250", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71249, + "TargetID": 71250, + "Directional": true + }] + }, { + "ID": 12002, + "SourceStructureID": 8485, + "TargetStructureID": 12192, + "Label": "8485-12192 via Ribbon Synapse from 46619 -> 46620", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46619, + "TargetID": 46620, + "Directional": true + }] + }, { + "ID": 12003, + "SourceStructureID": 8485, + "TargetStructureID": 28913, + "Label": "8485-28913 via Conventional from 43990 -> 43991", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43990, + "TargetID": 43991, + "Directional": true + }] + }, { + "ID": 12004, + "SourceStructureID": 8485, + "TargetStructureID": 69534, + "Label": "8485-69534 via Ribbon Synapse from 28877 -> 69535", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28877, + "TargetID": 69535, + "Directional": true + }] + }, { + "ID": 12005, + "SourceStructureID": 8504, + "TargetStructureID": 4943, + "Label": "8504-4943 via Conventional from 8716 -> 4988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8716, + "TargetID": 4988, + "Directional": true + }] + }, { + "ID": 12006, + "SourceStructureID": 8504, + "TargetStructureID": 5538, + "Label": "8504-5538 via Conventional from 8710 -> 45011", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8710, + "TargetID": 45011, + "Directional": true + }] + }, { + "ID": 12007, + "SourceStructureID": 8504, + "TargetStructureID": 6133, + "Label": "8504-6133 via Conventional from 8694 -> 8701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8694, + "TargetID": 8701, + "Directional": true + }] + }, { + "ID": 12008, + "SourceStructureID": 8504, + "TargetStructureID": 32359, + "Label": "8504-32359 via Conventional from 8711 -> 41351", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8711, + "TargetID": 41351, + "Directional": true + }] + }, { + "ID": 12009, + "SourceStructureID": 8551, + "TargetStructureID": 3928, + "Label": "8551-3928 via Conventional from 8557 -> 40706", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8557, + "TargetID": 40706, + "Directional": true + }] + }, { + "ID": 12010, + "SourceStructureID": 8551, + "TargetStructureID": 4943, + "Label": "8551-4943 via Conventional from 8554 -> 8537", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8554, + "TargetID": 8537, + "Directional": true + }] + }, { + "ID": 12011, + "SourceStructureID": 8551, + "TargetStructureID": 5538, + "Label": "8551-5538 via Conventional from 8565 -> 8550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8565, + "TargetID": 8550, + "Directional": true + }] + }, { + "ID": 12012, + "SourceStructureID": 8551, + "TargetStructureID": 5636, + "Label": "8551-5636 via Conventional from 8583 -> 34707", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8583, + "TargetID": 34707, + "Directional": true + }] + }, { + "ID": 12013, + "SourceStructureID": 8576, + "TargetStructureID": 5501, + "Label": "8576-5501 via Conventional from 20075 -> 36592", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20075, + "TargetID": 36592, + "Directional": true + }] + }, { + "ID": 12014, + "SourceStructureID": 8576, + "TargetStructureID": 5503, + "Label": "8576-5503 via Conventional from 20070 -> 20086, 20076 -> 60665", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20070, + "TargetID": 20086, + "Directional": true + }, { + "SourceID": 20076, + "TargetID": 60665, + "Directional": true + }] + }, { + "ID": 12015, + "SourceStructureID": 8576, + "TargetStructureID": 5561, + "Label": "8576-5561 via Conventional from 20066 -> 46249", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20066, + "TargetID": 46249, + "Directional": true + }] + }, { + "ID": 12016, + "SourceStructureID": 8577, + "TargetStructureID": 8579, + "Label": "8577-8579 via Adherens from 62739 -> 62738", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 62739, + "TargetID": 62738, + "Directional": true + }] + }, { + "ID": 12017, + "SourceStructureID": 8577, + "TargetStructureID": 61933, + "Label": "8577-61933 via Conventional from 68648 -> 68647", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68648, + "TargetID": 68647, + "Directional": true + }] + }, { + "ID": 12018, + "SourceStructureID": 8579, + "TargetStructureID": 6142, + "Label": "8579-6142 via Conventional from 62715 -> 23381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62715, + "TargetID": 23381, + "Directional": true + }] + }, { + "ID": 12019, + "SourceStructureID": 8579, + "TargetStructureID": 8580, + "Label": "8579-8580 via Plaque-like Pre from 72106 -> 72107", + "Type": "Plaque-like Pre", + "Directional": true, + "Links": [{ + "SourceID": 72106, + "TargetID": 72107, + "Directional": true + }] + }, { + "ID": 12020, + "SourceStructureID": 8579, + "TargetStructureID": 16026, + "Label": "8579-16026 via Conventional from 25985 -> 24085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25985, + "TargetID": 24085, + "Directional": true + }] + }, { + "ID": 12021, + "SourceStructureID": 8579, + "TargetStructureID": 62710, + "Label": "8579-62710 via Conventional from 62703 -> 62711", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62703, + "TargetID": 62711, + "Directional": true + }] + }, { + "ID": 12022, + "SourceStructureID": 8580, + "TargetStructureID": 8580, + "Label": "8580-8580 via Conventional from 59836 -> 59834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59836, + "TargetID": 59834, + "Directional": true + }] + }, { + "ID": 12023, + "SourceStructureID": 8586, + "TargetStructureID": 591, + "Label": "8586-591 via Ribbon Synapse from 8603 -> 10350, 8606 -> 10347, 10352 -> 10353", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8603, + "TargetID": 10350, + "Directional": true + }, { + "SourceID": 8606, + "TargetID": 10347, + "Directional": true + }, { + "SourceID": 10352, + "TargetID": 10353, + "Directional": true + }] + }, { + "ID": 12024, + "SourceStructureID": 8586, + "TargetStructureID": 4943, + "Label": "8586-4943 via Ribbon Synapse from 8654 -> 4966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8654, + "TargetID": 4966, + "Directional": true + }] + }, { + "ID": 12025, + "SourceStructureID": 8586, + "TargetStructureID": 7147, + "Label": "8586-7147 via Ribbon Synapse from 8655 -> 32689, 8670 -> 16070", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8655, + "TargetID": 32689, + "Directional": true + }, { + "SourceID": 8670, + "TargetID": 16070, + "Directional": true + }] + }, { + "ID": 12026, + "SourceStructureID": 8589, + "TargetStructureID": 71309, + "Label": "8589-71309 via Adherens from 71308 -> 71310", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 71308, + "TargetID": 71310, + "Directional": true + }] + }, { + "ID": 12027, + "SourceStructureID": 8720, + "TargetStructureID": 8575, + "Label": "8720-8575 via Conventional from 63141 -> 43265, 104922 -> 62850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63141, + "TargetID": 43265, + "Directional": true + }, { + "SourceID": 104922, + "TargetID": 62850, + "Directional": true + }] + }, { + "ID": 12028, + "SourceStructureID": 8720, + "TargetStructureID": 13858, + "Label": "8720-13858 via Conventional from 63406 -> 63415", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63406, + "TargetID": 63415, + "Directional": true + }] + }, { + "ID": 12029, + "SourceStructureID": 8720, + "TargetStructureID": 63371, + "Label": "8720-63371 via Conventional from 63370 -> 63373, 63400 -> 63401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63370, + "TargetID": 63373, + "Directional": true + }, { + "SourceID": 63400, + "TargetID": 63401, + "Directional": true + }] + }, { + "ID": 12030, + "SourceStructureID": 8749, + "TargetStructureID": 308, + "Label": "8749-308 via Ribbon Synapse from 8820 -> 43450, 8822 -> 43451, 17035 -> 42580, 42564 -> 42565", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8820, + "TargetID": 43450, + "Directional": true + }, { + "SourceID": 8822, + "TargetID": 43451, + "Directional": true + }, { + "SourceID": 17035, + "TargetID": 42580, + "Directional": true + }, { + "SourceID": 42564, + "TargetID": 42565, + "Directional": true + }] + }, { + "ID": 12031, + "SourceStructureID": 8749, + "TargetStructureID": 410, + "Label": "8749-410 via Ribbon Synapse from 8845 -> 17491, 8847 -> 17492, 15090 -> 15089, 17370 -> 17371", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8845, + "TargetID": 17491, + "Directional": true + }, { + "SourceID": 8847, + "TargetID": 17492, + "Directional": true + }, { + "SourceID": 15090, + "TargetID": 15089, + "Directional": true + }, { + "SourceID": 17370, + "TargetID": 17371, + "Directional": true + }] + }, { + "ID": 12032, + "SourceStructureID": 8749, + "TargetStructureID": 514, + "Label": "8749-514 via Ribbon Synapse from 8818 -> 32716, 8820 -> 38204, 8869 -> 15091, 15095 -> 15094, 17035 -> 17034, 17037 -> 17036, 17154 -> 2530, 17155 -> 17156, 17161 -> 17163, 17162 -> 17164, 17165 -> 2500, 18004 -> 18003, 32717 -> 32718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8818, + "TargetID": 32716, + "Directional": true + }, { + "SourceID": 8820, + "TargetID": 38204, + "Directional": true + }, { + "SourceID": 8869, + "TargetID": 15091, + "Directional": true + }, { + "SourceID": 15095, + "TargetID": 15094, + "Directional": true + }, { + "SourceID": 17035, + "TargetID": 17034, + "Directional": true + }, { + "SourceID": 17037, + "TargetID": 17036, + "Directional": true + }, { + "SourceID": 17154, + "TargetID": 2530, + "Directional": true + }, { + "SourceID": 17155, + "TargetID": 17156, + "Directional": true + }, { + "SourceID": 17161, + "TargetID": 17163, + "Directional": true + }, { + "SourceID": 17162, + "TargetID": 17164, + "Directional": true + }, { + "SourceID": 17165, + "TargetID": 2500, + "Directional": true + }, { + "SourceID": 18004, + "TargetID": 18003, + "Directional": true + }, { + "SourceID": 32717, + "TargetID": 32718, + "Directional": true + }] + }, { + "ID": 12033, + "SourceStructureID": 8749, + "TargetStructureID": 2610, + "Label": "8749-2610 via Ribbon Synapse from 8856 -> 8857, 8870 -> 2743, 17167 -> 2783, 17373 -> 2748, 17945 -> 17944, 17981 -> 17980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8856, + "TargetID": 8857, + "Directional": true + }, { + "SourceID": 8870, + "TargetID": 2743, + "Directional": true + }, { + "SourceID": 17167, + "TargetID": 2783, + "Directional": true + }, { + "SourceID": 17373, + "TargetID": 2748, + "Directional": true + }, { + "SourceID": 17945, + "TargetID": 17944, + "Directional": true + }, { + "SourceID": 17981, + "TargetID": 17980, + "Directional": true + }] + }, { + "ID": 12034, + "SourceStructureID": 8749, + "TargetStructureID": 5303, + "Label": "8749-5303 via Ribbon Synapse from 17155 -> 8747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17155, + "TargetID": 8747, + "Directional": true + }] + }, { + "ID": 12035, + "SourceStructureID": 8749, + "TargetStructureID": 8749, + "Label": "8749-8749 via Postsynapse from 8831 -> 159264", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 8831, + "TargetID": 159264, + "Directional": true + }] + }, { + "ID": 12036, + "SourceStructureID": 8749, + "TargetStructureID": 8749, + "Label": "8749-8749 via Ribbon Synapse from 17981 -> 8832", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17981, + "TargetID": 8832, + "Directional": true + }] + }, { + "ID": 12037, + "SourceStructureID": 8749, + "TargetStructureID": 25352, + "Label": "8749-25352 via Ribbon Synapse from 17370 -> 32291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17370, + "TargetID": 32291, + "Directional": true + }] + }, { + "ID": 12038, + "SourceStructureID": 8749, + "TargetStructureID": 25410, + "Label": "8749-25410 via Ribbon Synapse from 8856 -> 25415", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8856, + "TargetID": 25415, + "Directional": true + }] + }, { + "ID": 12039, + "SourceStructureID": 8749, + "TargetStructureID": 32719, + "Label": "8749-32719 via Ribbon Synapse from 8851 -> 32721", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8851, + "TargetID": 32721, + "Directional": true + }] + }, { + "ID": 12040, + "SourceStructureID": 8749, + "TargetStructureID": 39208, + "Label": "8749-39208 via Ribbon Synapse from 17981 -> 39221", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17981, + "TargetID": 39221, + "Directional": true + }] + }, { + "ID": 12041, + "SourceStructureID": 8749, + "TargetStructureID": 93099, + "Label": "8749-93099 via Ribbon Synapse from 93105 -> 93104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93105, + "TargetID": 93104, + "Directional": true + }] + }, { + "ID": 12042, + "SourceStructureID": 8749, + "TargetStructureID": 123181, + "Label": "8749-123181 via Ribbon Synapse from 32717 -> 123185", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32717, + "TargetID": 123185, + "Directional": true + }] + }, { + "ID": 12043, + "SourceStructureID": 8749, + "TargetStructureID": 123186, + "Label": "8749-123186 via Ribbon Synapse from 8818 -> 123188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8818, + "TargetID": 123188, + "Directional": true + }] + }, { + "ID": 12044, + "SourceStructureID": 8749, + "TargetStructureID": 123209, + "Label": "8749-123209 via Ribbon Synapse from 8847 -> 123211", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 8847, + "TargetID": 123211, + "Directional": true + }] + }, { + "ID": 12045, + "SourceStructureID": 8749, + "TargetStructureID": 123227, + "Label": "8749-123227 via Ribbon Synapse from 17162 -> 123228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17162, + "TargetID": 123228, + "Directional": true + }] + }, { + "ID": 12046, + "SourceStructureID": 8990, + "TargetStructureID": 5017, + "Label": "8990-5017 via Conventional from 8991 -> 5019, 8992 -> 5022", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 8991, + "TargetID": 5019, + "Directional": true + }, { + "SourceID": 8992, + "TargetID": 5022, + "Directional": true + }] + }, { + "ID": 12047, + "SourceStructureID": 8990, + "TargetStructureID": 15942, + "Label": "8990-15942 via Conventional from 95933 -> 95934, 95935 -> 95936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95933, + "TargetID": 95934, + "Directional": true + }, { + "SourceID": 95935, + "TargetID": 95936, + "Directional": true + }] + }, { + "ID": 12048, + "SourceStructureID": 9023, + "TargetStructureID": 517, + "Label": "9023-517 via Conventional from 36677 -> 36679, 36678 -> 36680", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36677, + "TargetID": 36679, + "Directional": true + }, { + "SourceID": 36678, + "TargetID": 36680, + "Directional": true + }] + }, { + "ID": 12049, + "SourceStructureID": 9023, + "TargetStructureID": 518, + "Label": "9023-518 via Conventional from 36669 -> 36668, 37134 -> 14720", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36669, + "TargetID": 36668, + "Directional": true + }, { + "SourceID": 37134, + "TargetID": 14720, + "Directional": true + }] + }, { + "ID": 12050, + "SourceStructureID": 9124, + "TargetStructureID": 514, + "Label": "9124-514 via Conventional from 22629 -> 3556", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22629, + "TargetID": 3556, + "Directional": true + }] + }, { + "ID": 12051, + "SourceStructureID": 9226, + "TargetStructureID": 514, + "Label": "9226-514 via Conventional from 9227 -> 3328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9227, + "TargetID": 3328, + "Directional": true + }] + }, { + "ID": 12052, + "SourceStructureID": 9228, + "TargetStructureID": 514, + "Label": "9228-514 via Conventional from 9229 -> 3329", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9229, + "TargetID": 3329, + "Directional": true + }] + }, { + "ID": 12053, + "SourceStructureID": 9260, + "TargetStructureID": 365, + "Label": "9260-365 via Conventional from 31820 -> 30390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31820, + "TargetID": 30390, + "Directional": true + }] + }, { + "ID": 12054, + "SourceStructureID": 9260, + "TargetStructureID": 516, + "Label": "9260-516 via Conventional from 39660 -> 39662, 39661 -> 39663, 39666 -> 39667, 39668 -> 39669, 39670 -> 39671", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39660, + "TargetID": 39662, + "Directional": true + }, { + "SourceID": 39661, + "TargetID": 39663, + "Directional": true + }, { + "SourceID": 39666, + "TargetID": 39667, + "Directional": true + }, { + "SourceID": 39668, + "TargetID": 39669, + "Directional": true + }, { + "SourceID": 39670, + "TargetID": 39671, + "Directional": true + }] + }, { + "ID": 12055, + "SourceStructureID": 9260, + "TargetStructureID": 519, + "Label": "9260-519 via Conventional from 9263 -> 9257, 9271 -> 9273, 9274 -> 9259, 9275 -> 9276, 25390 -> 25391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9263, + "TargetID": 9257, + "Directional": true + }, { + "SourceID": 9271, + "TargetID": 9273, + "Directional": true + }, { + "SourceID": 9274, + "TargetID": 9259, + "Directional": true + }, { + "SourceID": 9275, + "TargetID": 9276, + "Directional": true + }, { + "SourceID": 25390, + "TargetID": 25391, + "Directional": true + }] + }, { + "ID": 12056, + "SourceStructureID": 9260, + "TargetStructureID": 2610, + "Label": "9260-2610 via Conventional from 9261 -> 9266, 9262 -> 9265, 9264 -> 9267", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9261, + "TargetID": 9266, + "Directional": true + }, { + "SourceID": 9262, + "TargetID": 9265, + "Directional": true + }, { + "SourceID": 9264, + "TargetID": 9267, + "Directional": true + }] + }, { + "ID": 12057, + "SourceStructureID": 9260, + "TargetStructureID": 5563, + "Label": "9260-5563 via Conventional from 98790 -> 98791, 98794 -> 98795", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98790, + "TargetID": 98791, + "Directional": true + }, { + "SourceID": 98794, + "TargetID": 98795, + "Directional": true + }] + }, { + "ID": 12058, + "SourceStructureID": 9347, + "TargetStructureID": 180, + "Label": "9347-180 via Conventional from 29447 -> 29448, 92729 -> 92727, 95415 -> 871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29447, + "TargetID": 29448, + "Directional": true + }, { + "SourceID": 92729, + "TargetID": 92727, + "Directional": true + }, { + "SourceID": 95415, + "TargetID": 871, + "Directional": true + }] + }, { + "ID": 12059, + "SourceStructureID": 9347, + "TargetStructureID": 1637, + "Label": "9347-1637 via Conventional from 9360 -> 117313, 30244 -> 30245", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9360, + "TargetID": 117313, + "Directional": true + }, { + "SourceID": 30244, + "TargetID": 30245, + "Directional": true + }] + }, { + "ID": 12060, + "SourceStructureID": 9347, + "TargetStructureID": 5297, + "Label": "9347-5297 via Conventional from 53647 -> 53644", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53647, + "TargetID": 53644, + "Directional": true + }] + }, { + "ID": 12061, + "SourceStructureID": 9347, + "TargetStructureID": 39957, + "Label": "9347-39957 via Conventional from 58440 -> 58439", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58440, + "TargetID": 58439, + "Directional": true + }] + }, { + "ID": 12062, + "SourceStructureID": 9347, + "TargetStructureID": 59340, + "Label": "9347-59340 via Conventional from 9373 -> 59346", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9373, + "TargetID": 59346, + "Directional": true + }] + }, { + "ID": 12063, + "SourceStructureID": 9376, + "TargetStructureID": 352, + "Label": "9376-352 via Ribbon Synapse from 90700 -> 90695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90700, + "TargetID": 90695, + "Directional": true + }] + }, { + "ID": 12064, + "SourceStructureID": 9376, + "TargetStructureID": 5860, + "Label": "9376-5860 via Ribbon Synapse from 90698 -> 8810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90698, + "TargetID": 8810, + "Directional": true + }] + }, { + "ID": 12065, + "SourceStructureID": 9492, + "TargetStructureID": 9260, + "Label": "9492-9260 via Conventional from 9493 -> 9475", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9493, + "TargetID": 9475, + "Directional": true + }] + }, { + "ID": 12066, + "SourceStructureID": 9504, + "TargetStructureID": 514, + "Label": "9504-514 via Ribbon Synapse from 9512 -> 66204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9512, + "TargetID": 66204, + "Directional": true + }] + }, { + "ID": 12067, + "SourceStructureID": 9504, + "TargetStructureID": 906, + "Label": "9504-906 via Ribbon Synapse from 16644 -> 16630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16644, + "TargetID": 16630, + "Directional": true + }] + }, { + "ID": 12068, + "SourceStructureID": 9604, + "TargetStructureID": 968, + "Label": "9604-968 via Conventional from 9605 -> 977", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9605, + "TargetID": 977, + "Directional": true + }] + }, { + "ID": 12069, + "SourceStructureID": 9606, + "TargetStructureID": 968, + "Label": "9606-968 via Conventional from 9610 -> 981", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9610, + "TargetID": 981, + "Directional": true + }] + }, { + "ID": 12070, + "SourceStructureID": 9614, + "TargetStructureID": 4849, + "Label": "9614-4849 via Conventional from 9617 -> 9612", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9617, + "TargetID": 9612, + "Directional": true + }] + }, { + "ID": 12071, + "SourceStructureID": 9643, + "TargetStructureID": 469, + "Label": "9643-469 via Conventional from 9644 -> 9645, 9646 -> 4652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9644, + "TargetID": 9645, + "Directional": true + }, { + "SourceID": 9646, + "TargetID": 4652, + "Directional": true + }] + }, { + "ID": 12072, + "SourceStructureID": 9643, + "TargetStructureID": 471, + "Label": "9643-471 via Conventional from 9647 -> 9648, 9650 -> 9651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9647, + "TargetID": 9648, + "Directional": true + }, { + "SourceID": 9650, + "TargetID": 9651, + "Directional": true + }] + }, { + "ID": 12073, + "SourceStructureID": 9643, + "TargetStructureID": 10625, + "Label": "9643-10625 via Conventional from 9657 -> 16251, 9658 -> 16249", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9657, + "TargetID": 16251, + "Directional": true + }, { + "SourceID": 9658, + "TargetID": 16249, + "Directional": true + }] + }, { + "ID": 12074, + "SourceStructureID": 9693, + "TargetStructureID": 304, + "Label": "9693-304 via Ribbon Synapse from 28242 -> 39225", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28242, + "TargetID": 39225, + "Directional": true + }] + }, { + "ID": 12075, + "SourceStructureID": 9693, + "TargetStructureID": 390, + "Label": "9693-390 via Ribbon Synapse from 9753 -> 65113, 9891 -> 65107, 9892 -> 65107", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9753, + "TargetID": 65113, + "Directional": true + }, { + "SourceID": 9891, + "TargetID": 65107, + "Directional": true + }, { + "SourceID": 9892, + "TargetID": 65107, + "Directional": true + }] + }, { + "ID": 12076, + "SourceStructureID": 9693, + "TargetStructureID": 514, + "Label": "9693-514 via Ribbon Synapse from 10437 -> 2512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10437, + "TargetID": 2512, + "Directional": true + }] + }, { + "ID": 12077, + "SourceStructureID": 9693, + "TargetStructureID": 525, + "Label": "9693-525 via Ribbon Synapse from 11630 -> 6232", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11630, + "TargetID": 6232, + "Directional": true + }] + }, { + "ID": 12078, + "SourceStructureID": 9693, + "TargetStructureID": 606, + "Label": "9693-606 via Ribbon Synapse from 9722 -> 37752, 9724 -> 37752, 14095 -> 45879, 27485 -> 37752, 28256 -> 45878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9722, + "TargetID": 37752, + "Directional": true + }, { + "SourceID": 9724, + "TargetID": 37752, + "Directional": true + }, { + "SourceID": 14095, + "TargetID": 45879, + "Directional": true + }, { + "SourceID": 27485, + "TargetID": 37752, + "Directional": true + }, { + "SourceID": 28256, + "TargetID": 45878, + "Directional": true + }] + }, { + "ID": 12079, + "SourceStructureID": 9693, + "TargetStructureID": 608, + "Label": "9693-608 via Ribbon Synapse from 28169 -> 59070", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28169, + "TargetID": 59070, + "Directional": true + }] + }, { + "ID": 12080, + "SourceStructureID": 9693, + "TargetStructureID": 2610, + "Label": "9693-2610 via Ribbon Synapse from 15013 -> 2854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15013, + "TargetID": 2854, + "Directional": true + }] + }, { + "ID": 12081, + "SourceStructureID": 9693, + "TargetStructureID": 4850, + "Label": "9693-4850 via Ribbon Synapse from 15079 -> 15388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15079, + "TargetID": 15388, + "Directional": true + }] + }, { + "ID": 12082, + "SourceStructureID": 9693, + "TargetStructureID": 4890, + "Label": "9693-4890 via BC Conventional Synapse from 119830 -> 64899, 119871 -> 7926", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119830, + "TargetID": 64899, + "Directional": true + }, { + "SourceID": 119871, + "TargetID": 7926, + "Directional": true + }] + }, { + "ID": 12083, + "SourceStructureID": 9693, + "TargetStructureID": 4890, + "Label": "9693-4890 via Ribbon Synapse from 15079 -> 7926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15079, + "TargetID": 7926, + "Directional": true + }] + }, { + "ID": 12084, + "SourceStructureID": 9693, + "TargetStructureID": 5117, + "Label": "9693-5117 via Ribbon Synapse from 18734 -> 18736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18734, + "TargetID": 18736, + "Directional": true + }] + }, { + "ID": 12085, + "SourceStructureID": 9693, + "TargetStructureID": 5118, + "Label": "9693-5118 via Ribbon Synapse from 28245 -> 70916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 28245, + "TargetID": 70916, + "Directional": true + }] + }, { + "ID": 12086, + "SourceStructureID": 9693, + "TargetStructureID": 8033, + "Label": "9693-8033 via Ribbon Synapse from 9777 -> 18444, 18445 -> 18446, 18448 -> 18447, 18451 -> 18450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9777, + "TargetID": 18444, + "Directional": true + }, { + "SourceID": 18445, + "TargetID": 18446, + "Directional": true + }, { + "SourceID": 18448, + "TargetID": 18447, + "Directional": true + }, { + "SourceID": 18451, + "TargetID": 18450, + "Directional": true + }] + }, { + "ID": 12087, + "SourceStructureID": 9693, + "TargetStructureID": 15394, + "Label": "9693-15394 via Ribbon Synapse from 15393 -> 41020, 135020 -> 135019", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15393, + "TargetID": 41020, + "Directional": true + }, { + "SourceID": 135020, + "TargetID": 135019, + "Directional": true + }] + }, { + "ID": 12088, + "SourceStructureID": 9693, + "TargetStructureID": 32804, + "Label": "9693-32804 via Ribbon Synapse from 14066 -> 32827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14066, + "TargetID": 32827, + "Directional": true + }] + }, { + "ID": 12089, + "SourceStructureID": 9693, + "TargetStructureID": 54727, + "Label": "9693-54727 via Ribbon Synapse from 15393 -> 54729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15393, + "TargetID": 54729, + "Directional": true + }] + }, { + "ID": 12090, + "SourceStructureID": 9693, + "TargetStructureID": 59560, + "Label": "9693-59560 via Ribbon Synapse from 59559 -> 59561", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59559, + "TargetID": 59561, + "Directional": true + }] + }, { + "ID": 12091, + "SourceStructureID": 9693, + "TargetStructureID": 95701, + "Label": "9693-95701 via Ribbon Synapse from 10437 -> 135152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10437, + "TargetID": 135152, + "Directional": true + }] + }, { + "ID": 12092, + "SourceStructureID": 9693, + "TargetStructureID": 134654, + "Label": "9693-134654 via BC Conventional Synapse from 119733 -> 134655", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119733, + "TargetID": 134655, + "Directional": true + }] + }, { + "ID": 12093, + "SourceStructureID": 9693, + "TargetStructureID": 134657, + "Label": "9693-134657 via BC Conventional Synapse from 119771 -> 134658", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119771, + "TargetID": 134658, + "Directional": true + }] + }, { + "ID": 12094, + "SourceStructureID": 9693, + "TargetStructureID": 134659, + "Label": "9693-134659 via BC Conventional Synapse from 119782 -> 134660", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119782, + "TargetID": 134660, + "Directional": true + }] + }, { + "ID": 12095, + "SourceStructureID": 9693, + "TargetStructureID": 134662, + "Label": "9693-134662 via BC Conventional Synapse from 119808 -> 134663", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119808, + "TargetID": 134663, + "Directional": true + }] + }, { + "ID": 12096, + "SourceStructureID": 9693, + "TargetStructureID": 134664, + "Label": "9693-134664 via BC Conventional Synapse from 119813 -> 134665", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119813, + "TargetID": 134665, + "Directional": true + }] + }, { + "ID": 12097, + "SourceStructureID": 9693, + "TargetStructureID": 134667, + "Label": "9693-134667 via BC Conventional Synapse from 119842 -> 134668", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119842, + "TargetID": 134668, + "Directional": true + }] + }, { + "ID": 12098, + "SourceStructureID": 9693, + "TargetStructureID": 134669, + "Label": "9693-134669 via BC Conventional Synapse from 119849 -> 134670", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119849, + "TargetID": 134670, + "Directional": true + }] + }, { + "ID": 12099, + "SourceStructureID": 9693, + "TargetStructureID": 134671, + "Label": "9693-134671 via BC Conventional Synapse from 119851 -> 134672", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119851, + "TargetID": 134672, + "Directional": true + }] + }, { + "ID": 12100, + "SourceStructureID": 9693, + "TargetStructureID": 134674, + "Label": "9693-134674 via BC Conventional Synapse from 119855 -> 134676", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119855, + "TargetID": 134676, + "Directional": true + }] + }, { + "ID": 12101, + "SourceStructureID": 9693, + "TargetStructureID": 134677, + "Label": "9693-134677 via BC Conventional Synapse from 119868 -> 134678", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119868, + "TargetID": 134678, + "Directional": true + }] + }, { + "ID": 12102, + "SourceStructureID": 9693, + "TargetStructureID": 134681, + "Label": "9693-134681 via BC Conventional Synapse from 119875 -> 134682", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119875, + "TargetID": 134682, + "Directional": true + }] + }, { + "ID": 12103, + "SourceStructureID": 9693, + "TargetStructureID": 134691, + "Label": "9693-134691 via BC Conventional Synapse from 120061 -> 134692", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120061, + "TargetID": 134692, + "Directional": true + }] + }, { + "ID": 12104, + "SourceStructureID": 9693, + "TargetStructureID": 134693, + "Label": "9693-134693 via BC Conventional Synapse from 120069 -> 134695", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120069, + "TargetID": 134695, + "Directional": true + }] + }, { + "ID": 12105, + "SourceStructureID": 9693, + "TargetStructureID": 134698, + "Label": "9693-134698 via BC Conventional Synapse from 120094 -> 134699", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120094, + "TargetID": 134699, + "Directional": true + }] + }, { + "ID": 12106, + "SourceStructureID": 9693, + "TargetStructureID": 134701, + "Label": "9693-134701 via BC Conventional Synapse from 120098 -> 134702", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120098, + "TargetID": 134702, + "Directional": true + }] + }, { + "ID": 12107, + "SourceStructureID": 9693, + "TargetStructureID": 134703, + "Label": "9693-134703 via BC Conventional Synapse from 120211 -> 134705", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120211, + "TargetID": 134705, + "Directional": true + }] + }, { + "ID": 12108, + "SourceStructureID": 9693, + "TargetStructureID": 134706, + "Label": "9693-134706 via BC Conventional Synapse from 15014 -> 134707", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15014, + "TargetID": 134707, + "Directional": true + }] + }, { + "ID": 12109, + "SourceStructureID": 9693, + "TargetStructureID": 134713, + "Label": "9693-134713 via BC Conventional Synapse from 15073 -> 134714", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15073, + "TargetID": 134714, + "Directional": true + }] + }, { + "ID": 12110, + "SourceStructureID": 9693, + "TargetStructureID": 134715, + "Label": "9693-134715 via BC Conventional Synapse from 9754 -> 134716", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 9754, + "TargetID": 134716, + "Directional": true + }] + }, { + "ID": 12111, + "SourceStructureID": 9769, + "TargetStructureID": 606, + "Label": "9769-606 via Conventional from 25889 -> 25890, 42521 -> 42520, 51208 -> 51207, 51257 -> 51258, 51275 -> 51274, 51592 -> 51591, 51866 -> 51865", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25889, + "TargetID": 25890, + "Directional": true + }, { + "SourceID": 42521, + "TargetID": 42520, + "Directional": true + }, { + "SourceID": 51208, + "TargetID": 51207, + "Directional": true + }, { + "SourceID": 51257, + "TargetID": 51258, + "Directional": true + }, { + "SourceID": 51275, + "TargetID": 51274, + "Directional": true + }, { + "SourceID": 51592, + "TargetID": 51591, + "Directional": true + }, { + "SourceID": 51866, + "TargetID": 51865, + "Directional": true + }] + }, { + "ID": 12112, + "SourceStructureID": 9769, + "TargetStructureID": 5107, + "Label": "9769-5107 via Conventional from 29960 -> 53163", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29960, + "TargetID": 53163, + "Directional": true + }] + }, { + "ID": 12113, + "SourceStructureID": 9769, + "TargetStructureID": 5528, + "Label": "9769-5528 via Conventional from 54899 -> 55030", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54899, + "TargetID": 55030, + "Directional": true + }] + }, { + "ID": 12114, + "SourceStructureID": 9769, + "TargetStructureID": 5643, + "Label": "9769-5643 via Conventional from 30174 -> 52255, 38539 -> 38538", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30174, + "TargetID": 52255, + "Directional": true + }, { + "SourceID": 38539, + "TargetID": 38538, + "Directional": true + }] + }, { + "ID": 12115, + "SourceStructureID": 9769, + "TargetStructureID": 5650, + "Label": "9769-5650 via Conventional from 105189 -> 105192", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105189, + "TargetID": 105192, + "Directional": true + }] + }, { + "ID": 12116, + "SourceStructureID": 9769, + "TargetStructureID": 6203, + "Label": "9769-6203 via Conventional from 52828 -> 52830", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52828, + "TargetID": 52830, + "Directional": true + }] + }, { + "ID": 12117, + "SourceStructureID": 9769, + "TargetStructureID": 6857, + "Label": "9769-6857 via Conventional from 29846 -> 29847", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29846, + "TargetID": 29847, + "Directional": true + }] + }, { + "ID": 12118, + "SourceStructureID": 9769, + "TargetStructureID": 15796, + "Label": "9769-15796 via Conventional from 11265 -> 15843, 12374 -> 38155, 52881 -> 52914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11265, + "TargetID": 15843, + "Directional": true + }, { + "SourceID": 12374, + "TargetID": 38155, + "Directional": true + }, { + "SourceID": 52881, + "TargetID": 52914, + "Directional": true + }] + }, { + "ID": 12119, + "SourceStructureID": 9769, + "TargetStructureID": 24381, + "Label": "9769-24381 via Conventional from 12402 -> 24383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12402, + "TargetID": 24383, + "Directional": true + }] + }, { + "ID": 12120, + "SourceStructureID": 9769, + "TargetStructureID": 25865, + "Label": "9769-25865 via Conventional from 29808 -> 32249", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29808, + "TargetID": 32249, + "Directional": true + }] + }, { + "ID": 12121, + "SourceStructureID": 9769, + "TargetStructureID": 29827, + "Label": "9769-29827 via Conventional from 29826 -> 29838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29826, + "TargetID": 29838, + "Directional": true + }] + }, { + "ID": 12122, + "SourceStructureID": 9769, + "TargetStructureID": 30130, + "Label": "9769-30130 via Conventional from 30126 -> 30133, 30128 -> 52581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30126, + "TargetID": 30133, + "Directional": true + }, { + "SourceID": 30128, + "TargetID": 52581, + "Directional": true + }] + }, { + "ID": 12123, + "SourceStructureID": 9769, + "TargetStructureID": 32945, + "Label": "9769-32945 via Conventional from 23936 -> 32948, 54451 -> 54452", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23936, + "TargetID": 32948, + "Directional": true + }, { + "SourceID": 54451, + "TargetID": 54452, + "Directional": true + }] + }, { + "ID": 12124, + "SourceStructureID": 9769, + "TargetStructureID": 38357, + "Label": "9769-38357 via Conventional from 12403 -> 38890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12403, + "TargetID": 38890, + "Directional": true + }] + }, { + "ID": 12125, + "SourceStructureID": 9769, + "TargetStructureID": 38461, + "Label": "9769-38461 via Conventional from 29965 -> 38471", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29965, + "TargetID": 38471, + "Directional": true + }] + }, { + "ID": 12126, + "SourceStructureID": 9769, + "TargetStructureID": 38502, + "Label": "9769-38502 via Conventional from 38507 -> 38506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38507, + "TargetID": 38506, + "Directional": true + }] + }, { + "ID": 12127, + "SourceStructureID": 9769, + "TargetStructureID": 38949, + "Label": "9769-38949 via Conventional from 30114 -> 38996", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30114, + "TargetID": 38996, + "Directional": true + }] + }, { + "ID": 12128, + "SourceStructureID": 9769, + "TargetStructureID": 43716, + "Label": "9769-43716 via Conventional from 23971 -> 54705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23971, + "TargetID": 54705, + "Directional": true + }] + }, { + "ID": 12129, + "SourceStructureID": 9769, + "TargetStructureID": 46975, + "Label": "9769-46975 via Conventional from 46978 -> 46977", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46978, + "TargetID": 46977, + "Directional": true + }] + }, { + "ID": 12130, + "SourceStructureID": 9769, + "TargetStructureID": 51812, + "Label": "9769-51812 via Conventional from 29848 -> 51813", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29848, + "TargetID": 51813, + "Directional": true + }] + }, { + "ID": 12131, + "SourceStructureID": 9769, + "TargetStructureID": 52921, + "Label": "9769-52921 via Conventional from 29964 -> 52925", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29964, + "TargetID": 52925, + "Directional": true + }] + }, { + "ID": 12132, + "SourceStructureID": 9769, + "TargetStructureID": 53000, + "Label": "9769-53000 via Conventional from 29962 -> 53122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29962, + "TargetID": 53122, + "Directional": true + }] + }, { + "ID": 12133, + "SourceStructureID": 9769, + "TargetStructureID": 53182, + "Label": "9769-53182 via Conventional from 29935 -> 53183", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29935, + "TargetID": 53183, + "Directional": true + }] + }, { + "ID": 12134, + "SourceStructureID": 9769, + "TargetStructureID": 53202, + "Label": "9769-53202 via Conventional from 53199 -> 53214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53199, + "TargetID": 53214, + "Directional": true + }] + }, { + "ID": 12135, + "SourceStructureID": 9769, + "TargetStructureID": 53218, + "Label": "9769-53218 via Conventional from 53217 -> 53219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53217, + "TargetID": 53219, + "Directional": true + }] + }, { + "ID": 12136, + "SourceStructureID": 9769, + "TargetStructureID": 53221, + "Label": "9769-53221 via Conventional from 20258 -> 53222", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20258, + "TargetID": 53222, + "Directional": true + }] + }, { + "ID": 12137, + "SourceStructureID": 9769, + "TargetStructureID": 53224, + "Label": "9769-53224 via Conventional from 20257 -> 53225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20257, + "TargetID": 53225, + "Directional": true + }] + }, { + "ID": 12138, + "SourceStructureID": 9769, + "TargetStructureID": 53229, + "Label": "9769-53229 via Conventional from 20254 -> 53230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20254, + "TargetID": 53230, + "Directional": true + }] + }, { + "ID": 12139, + "SourceStructureID": 9769, + "TargetStructureID": 53232, + "Label": "9769-53232 via Conventional from 53231 -> 53234", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53231, + "TargetID": 53234, + "Directional": true + }] + }, { + "ID": 12140, + "SourceStructureID": 9769, + "TargetStructureID": 53245, + "Label": "9769-53245 via Conventional from 20244 -> 53246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20244, + "TargetID": 53246, + "Directional": true + }] + }, { + "ID": 12141, + "SourceStructureID": 9769, + "TargetStructureID": 53399, + "Label": "9769-53399 via Conventional from 53398 -> 53401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53398, + "TargetID": 53401, + "Directional": true + }] + }, { + "ID": 12142, + "SourceStructureID": 9769, + "TargetStructureID": 53407, + "Label": "9769-53407 via Conventional from 20652 -> 53408", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20652, + "TargetID": 53408, + "Directional": true + }] + }, { + "ID": 12143, + "SourceStructureID": 9769, + "TargetStructureID": 53416, + "Label": "9769-53416 via Conventional from 53415 -> 53417", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53415, + "TargetID": 53417, + "Directional": true + }] + }, { + "ID": 12144, + "SourceStructureID": 9769, + "TargetStructureID": 53436, + "Label": "9769-53436 via Conventional from 30139 -> 53438", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30139, + "TargetID": 53438, + "Directional": true + }] + }, { + "ID": 12145, + "SourceStructureID": 9769, + "TargetStructureID": 53443, + "Label": "9769-53443 via Conventional from 30152 -> 53444", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30152, + "TargetID": 53444, + "Directional": true + }] + }, { + "ID": 12146, + "SourceStructureID": 9769, + "TargetStructureID": 53991, + "Label": "9769-53991 via Conventional from 30156 -> 53992", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30156, + "TargetID": 53992, + "Directional": true + }] + }, { + "ID": 12147, + "SourceStructureID": 9769, + "TargetStructureID": 54006, + "Label": "9769-54006 via Conventional from 11264 -> 54007, 54013 -> 54014", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11264, + "TargetID": 54007, + "Directional": true + }, { + "SourceID": 54013, + "TargetID": 54014, + "Directional": true + }] + }, { + "ID": 12148, + "SourceStructureID": 9769, + "TargetStructureID": 54078, + "Label": "9769-54078 via Conventional from 54077 -> 54079", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54077, + "TargetID": 54079, + "Directional": true + }] + }, { + "ID": 12149, + "SourceStructureID": 9769, + "TargetStructureID": 54261, + "Label": "9769-54261 via Conventional from 54254 -> 54263", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54254, + "TargetID": 54263, + "Directional": true + }] + }, { + "ID": 12150, + "SourceStructureID": 9769, + "TargetStructureID": 54287, + "Label": "9769-54287 via Conventional from 23930 -> 54288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23930, + "TargetID": 54288, + "Directional": true + }] + }, { + "ID": 12151, + "SourceStructureID": 9769, + "TargetStructureID": 54681, + "Label": "9769-54681 via Conventional from 23956 -> 54684", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23956, + "TargetID": 54684, + "Directional": true + }] + }, { + "ID": 12152, + "SourceStructureID": 9769, + "TargetStructureID": 54695, + "Label": "9769-54695 via Conventional from 23958 -> 54696", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23958, + "TargetID": 54696, + "Directional": true + }] + }, { + "ID": 12153, + "SourceStructureID": 9769, + "TargetStructureID": 54818, + "Label": "9769-54818 via Conventional from 23975 -> 54819", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23975, + "TargetID": 54819, + "Directional": true + }] + }, { + "ID": 12154, + "SourceStructureID": 9769, + "TargetStructureID": 54862, + "Label": "9769-54862 via Conventional from 24008 -> 54863", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24008, + "TargetID": 54863, + "Directional": true + }] + }, { + "ID": 12155, + "SourceStructureID": 9769, + "TargetStructureID": 54877, + "Label": "9769-54877 via Conventional from 12565 -> 54878", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12565, + "TargetID": 54878, + "Directional": true + }] + }, { + "ID": 12156, + "SourceStructureID": 9769, + "TargetStructureID": 54908, + "Label": "9769-54908 via Conventional from 29886 -> 54909", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29886, + "TargetID": 54909, + "Directional": true + }] + }, { + "ID": 12157, + "SourceStructureID": 9769, + "TargetStructureID": 54925, + "Label": "9769-54925 via Conventional from 29855 -> 54936, 54924 -> 54926", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29855, + "TargetID": 54936, + "Directional": true + }, { + "SourceID": 54924, + "TargetID": 54926, + "Directional": true + }] + }, { + "ID": 12158, + "SourceStructureID": 9769, + "TargetStructureID": 55103, + "Label": "9769-55103 via Conventional from 12329 -> 55104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12329, + "TargetID": 55104, + "Directional": true + }] + }, { + "ID": 12159, + "SourceStructureID": 9769, + "TargetStructureID": 55166, + "Label": "9769-55166 via Conventional from 30076 -> 55167", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30076, + "TargetID": 55167, + "Directional": true + }] + }, { + "ID": 12160, + "SourceStructureID": 9769, + "TargetStructureID": 55201, + "Label": "9769-55201 via Conventional from 55200 -> 55202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55200, + "TargetID": 55202, + "Directional": true + }] + }, { + "ID": 12161, + "SourceStructureID": 9769, + "TargetStructureID": 55212, + "Label": "9769-55212 via Conventional from 30096 -> 55214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30096, + "TargetID": 55214, + "Directional": true + }] + }, { + "ID": 12162, + "SourceStructureID": 9769, + "TargetStructureID": 55215, + "Label": "9769-55215 via Conventional from 30098 -> 55217", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30098, + "TargetID": 55217, + "Directional": true + }] + }, { + "ID": 12163, + "SourceStructureID": 9769, + "TargetStructureID": 55218, + "Label": "9769-55218 via Conventional from 30108 -> 55219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30108, + "TargetID": 55219, + "Directional": true + }] + }, { + "ID": 12164, + "SourceStructureID": 9769, + "TargetStructureID": 55304, + "Label": "9769-55304 via Conventional from 12405 -> 55305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12405, + "TargetID": 55305, + "Directional": true + }] + }, { + "ID": 12165, + "SourceStructureID": 9769, + "TargetStructureID": 55311, + "Label": "9769-55311 via Conventional from 55310 -> 55312", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55310, + "TargetID": 55312, + "Directional": true + }] + }, { + "ID": 12166, + "SourceStructureID": 9769, + "TargetStructureID": 55319, + "Label": "9769-55319 via Conventional from 55321 -> 55320", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55321, + "TargetID": 55320, + "Directional": true + }] + }, { + "ID": 12167, + "SourceStructureID": 9769, + "TargetStructureID": 74584, + "Label": "9769-74584 via Conventional from 81827 -> 81828", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81827, + "TargetID": 81828, + "Directional": true + }] + }, { + "ID": 12168, + "SourceStructureID": 9810, + "TargetStructureID": 6134, + "Label": "9810-6134 via Conventional from 9811 -> 9809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 9811, + "TargetID": 9809, + "Directional": true + }] + }, { + "ID": 12169, + "SourceStructureID": 10142, + "TargetStructureID": 7225, + "Label": "10142-7225 via Ribbon Synapse from 31468 -> 31469, 63493 -> 63492", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31468, + "TargetID": 31469, + "Directional": true + }, { + "SourceID": 63493, + "TargetID": 63492, + "Directional": true + }] + }, { + "ID": 12170, + "SourceStructureID": 10146, + "TargetStructureID": 7279, + "Label": "10146-7279 via Ribbon Synapse from 60574 -> 60576, 60574 -> 87898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60574, + "TargetID": 60576, + "Directional": true + }, { + "SourceID": 60574, + "TargetID": 87898, + "Directional": true + }] + }, { + "ID": 12171, + "SourceStructureID": 10335, + "TargetStructureID": 591, + "Label": "10335-591 via Conventional from 10337 -> 10323", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10337, + "TargetID": 10323, + "Directional": true + }] + }, { + "ID": 12172, + "SourceStructureID": 10335, + "TargetStructureID": 3679, + "Label": "10335-3679 via Conventional from 10338 -> 10328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10338, + "TargetID": 10328, + "Directional": true + }] + }, { + "ID": 12173, + "SourceStructureID": 10371, + "TargetStructureID": 591, + "Label": "10371-591 via Conventional from 10372 -> 10362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10372, + "TargetID": 10362, + "Directional": true + }] + }, { + "ID": 12174, + "SourceStructureID": 10412, + "TargetStructureID": 591, + "Label": "10412-591 via Ribbon Synapse from 10417 -> 10418, 10421 -> 10380", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10417, + "TargetID": 10418, + "Directional": true + }, { + "SourceID": 10421, + "TargetID": 10380, + "Directional": true + }] + }, { + "ID": 12175, + "SourceStructureID": 10412, + "TargetStructureID": 7114, + "Label": "10412-7114 via Ribbon Synapse from 10429 -> 10433, 124457 -> 124458", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10429, + "TargetID": 10433, + "Directional": true + }, { + "SourceID": 124457, + "TargetID": 124458, + "Directional": true + }] + }, { + "ID": 12176, + "SourceStructureID": 10565, + "TargetStructureID": 176, + "Label": "10565-176 via Conventional from 44198 -> 5886", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44198, + "TargetID": 5886, + "Directional": true + }] + }, { + "ID": 12177, + "SourceStructureID": 10565, + "TargetStructureID": 606, + "Label": "10565-606 via Conventional from 45408 -> 10515, 45410 -> 53958, 45412 -> 10513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45408, + "TargetID": 10515, + "Directional": true + }, { + "SourceID": 45410, + "TargetID": 53958, + "Directional": true + }, { + "SourceID": 45412, + "TargetID": 10513, + "Directional": true + }] + }, { + "ID": 12178, + "SourceStructureID": 10574, + "TargetStructureID": 165, + "Label": "10574-165 via Conventional from 84552 -> 84553", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84552, + "TargetID": 84553, + "Directional": true + }] + }, { + "ID": 12179, + "SourceStructureID": 10574, + "TargetStructureID": 456, + "Label": "10574-456 via Conventional from 84602 -> 84603", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84602, + "TargetID": 84603, + "Directional": true + }] + }, { + "ID": 12180, + "SourceStructureID": 10574, + "TargetStructureID": 460, + "Label": "10574-460 via Conventional from 84557 -> 130170", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84557, + "TargetID": 130170, + "Directional": true + }] + }, { + "ID": 12181, + "SourceStructureID": 10574, + "TargetStructureID": 5530, + "Label": "10574-5530 via Cistern Pre from 82546 -> 80493", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 82546, + "TargetID": 80493, + "Directional": true + }] + }, { + "ID": 12182, + "SourceStructureID": 10574, + "TargetStructureID": 26304, + "Label": "10574-26304 via Conventional from 84599 -> 26311", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84599, + "TargetID": 26311, + "Directional": true + }] + }, { + "ID": 12183, + "SourceStructureID": 10574, + "TargetStructureID": 56600, + "Label": "10574-56600 via Conventional from 84601 -> 56602", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84601, + "TargetID": 56602, + "Directional": true + }] + }, { + "ID": 12184, + "SourceStructureID": 10574, + "TargetStructureID": 64690, + "Label": "10574-64690 via Conventional from 84550 -> 84551", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84550, + "TargetID": 84551, + "Directional": true + }] + }, { + "ID": 12185, + "SourceStructureID": 10574, + "TargetStructureID": 88266, + "Label": "10574-88266 via Cistern Pre from 45013 -> 88268", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 45013, + "TargetID": 88268, + "Directional": true + }] + }, { + "ID": 12186, + "SourceStructureID": 10596, + "TargetStructureID": 7564, + "Label": "10596-7564 via Ribbon Synapse from 82325 -> 82324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82325, + "TargetID": 82324, + "Directional": true + }] + }, { + "ID": 12187, + "SourceStructureID": 10596, + "TargetStructureID": 7861, + "Label": "10596-7861 via Ribbon Synapse from 122418 -> 122417, 122427 -> 122426, 122429 -> 122428", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122418, + "TargetID": 122417, + "Directional": true + }, { + "SourceID": 122427, + "TargetID": 122426, + "Directional": true + }, { + "SourceID": 122429, + "TargetID": 122428, + "Directional": true + }] + }, { + "ID": 12188, + "SourceStructureID": 10602, + "TargetStructureID": 5457, + "Label": "10602-5457 via Ribbon Synapse from 103359 -> 103360", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103359, + "TargetID": 103360, + "Directional": true + }] + }, { + "ID": 12189, + "SourceStructureID": 10625, + "TargetStructureID": 514, + "Label": "10625-514 via Ribbon Synapse from 16239 -> 16335, 16337 -> 16336, 16339 -> 16338, 16757 -> 16346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16239, + "TargetID": 16335, + "Directional": true + }, { + "SourceID": 16337, + "TargetID": 16336, + "Directional": true + }, { + "SourceID": 16339, + "TargetID": 16338, + "Directional": true + }, { + "SourceID": 16757, + "TargetID": 16346, + "Directional": true + }] + }, { + "ID": 12190, + "SourceStructureID": 10625, + "TargetStructureID": 3257, + "Label": "10625-3257 via Ribbon Synapse from 16211 -> 22973, 16354 -> 16355, 22915 -> 22914, 22917 -> 22916, 51375 -> 51378", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16211, + "TargetID": 22973, + "Directional": true + }, { + "SourceID": 16354, + "TargetID": 16355, + "Directional": true + }, { + "SourceID": 22915, + "TargetID": 22914, + "Directional": true + }, { + "SourceID": 22917, + "TargetID": 22916, + "Directional": true + }, { + "SourceID": 51375, + "TargetID": 51378, + "Directional": true + }] + }, { + "ID": 12191, + "SourceStructureID": 10625, + "TargetStructureID": 3679, + "Label": "10625-3679 via Ribbon Synapse from 16235 -> 8026, 16236 -> 8022, 16754 -> 6192, 16756 -> 6193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16235, + "TargetID": 8026, + "Directional": true + }, { + "SourceID": 16236, + "TargetID": 8022, + "Directional": true + }, { + "SourceID": 16754, + "TargetID": 6192, + "Directional": true + }, { + "SourceID": 16756, + "TargetID": 6193, + "Directional": true + }] + }, { + "ID": 12192, + "SourceStructureID": 10625, + "TargetStructureID": 5331, + "Label": "10625-5331 via Ribbon Synapse from 16222 -> 39175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16222, + "TargetID": 39175, + "Directional": true + }] + }, { + "ID": 12193, + "SourceStructureID": 10625, + "TargetStructureID": 5860, + "Label": "10625-5860 via Ribbon Synapse from 26915 -> 7653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26915, + "TargetID": 7653, + "Directional": true + }] + }, { + "ID": 12194, + "SourceStructureID": 10625, + "TargetStructureID": 6169, + "Label": "10625-6169 via Ribbon Synapse from 16183 -> 16182, 16185 -> 16184, 16187 -> 16186, 16190 -> 16189, 16192 -> 16191, 16219 -> 16218, 16222 -> 16221, 16229 -> 16230, 16231 -> 16232, 16323 -> 16322, 16325 -> 16324, 26923 -> 29693", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16183, + "TargetID": 16182, + "Directional": true + }, { + "SourceID": 16185, + "TargetID": 16184, + "Directional": true + }, { + "SourceID": 16187, + "TargetID": 16186, + "Directional": true + }, { + "SourceID": 16190, + "TargetID": 16189, + "Directional": true + }, { + "SourceID": 16192, + "TargetID": 16191, + "Directional": true + }, { + "SourceID": 16219, + "TargetID": 16218, + "Directional": true + }, { + "SourceID": 16222, + "TargetID": 16221, + "Directional": true + }, { + "SourceID": 16229, + "TargetID": 16230, + "Directional": true + }, { + "SourceID": 16231, + "TargetID": 16232, + "Directional": true + }, { + "SourceID": 16323, + "TargetID": 16322, + "Directional": true + }, { + "SourceID": 16325, + "TargetID": 16324, + "Directional": true + }, { + "SourceID": 26923, + "TargetID": 29693, + "Directional": true + }] + }, { + "ID": 12195, + "SourceStructureID": 10625, + "TargetStructureID": 9643, + "Label": "10625-9643 via Ribbon Synapse from 16229 -> 9659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16229, + "TargetID": 9659, + "Directional": true + }] + }, { + "ID": 12196, + "SourceStructureID": 10625, + "TargetStructureID": 39528, + "Label": "10625-39528 via Ribbon Synapse from 16192 -> 39773", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16192, + "TargetID": 39773, + "Directional": true + }] + }, { + "ID": 12197, + "SourceStructureID": 10625, + "TargetStructureID": 39530, + "Label": "10625-39530 via Ribbon Synapse from 16183 -> 39540", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16183, + "TargetID": 39540, + "Directional": true + }] + }, { + "ID": 12198, + "SourceStructureID": 10625, + "TargetStructureID": 39724, + "Label": "10625-39724 via Ribbon Synapse from 16211 -> 39728, 19264 -> 39727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16211, + "TargetID": 39728, + "Directional": true + }, { + "SourceID": 19264, + "TargetID": 39727, + "Directional": true + }] + }, { + "ID": 12199, + "SourceStructureID": 10625, + "TargetStructureID": 39737, + "Label": "10625-39737 via Ribbon Synapse from 16239 -> 39744", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16239, + "TargetID": 39744, + "Directional": true + }] + }, { + "ID": 12200, + "SourceStructureID": 10625, + "TargetStructureID": 39745, + "Label": "10625-39745 via Ribbon Synapse from 16337 -> 39747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16337, + "TargetID": 39747, + "Directional": true + }] + }, { + "ID": 12201, + "SourceStructureID": 10625, + "TargetStructureID": 39748, + "Label": "10625-39748 via Ribbon Synapse from 22915 -> 39749", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22915, + "TargetID": 39749, + "Directional": true + }] + }, { + "ID": 12202, + "SourceStructureID": 10625, + "TargetStructureID": 39759, + "Label": "10625-39759 via Ribbon Synapse from 22917 -> 39762", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22917, + "TargetID": 39762, + "Directional": true + }] + }, { + "ID": 12203, + "SourceStructureID": 10625, + "TargetStructureID": 39764, + "Label": "10625-39764 via Ribbon Synapse from 16236 -> 39767, 16325 -> 39770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16236, + "TargetID": 39767, + "Directional": true + }, { + "SourceID": 16325, + "TargetID": 39770, + "Directional": true + }] + }, { + "ID": 12204, + "SourceStructureID": 10625, + "TargetStructureID": 39784, + "Label": "10625-39784 via Ribbon Synapse from 19263 -> 39786", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19263, + "TargetID": 39786, + "Directional": true + }] + }, { + "ID": 12205, + "SourceStructureID": 10625, + "TargetStructureID": 39787, + "Label": "10625-39787 via Ribbon Synapse from 19262 -> 39789, 19262 -> 87732", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19262, + "TargetID": 39789, + "Directional": true + }, { + "SourceID": 19262, + "TargetID": 87732, + "Directional": true + }] + }, { + "ID": 12206, + "SourceStructureID": 10625, + "TargetStructureID": 39790, + "Label": "10625-39790 via Ribbon Synapse from 19261 -> 39793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19261, + "TargetID": 39793, + "Directional": true + }] + }, { + "ID": 12207, + "SourceStructureID": 10625, + "TargetStructureID": 39794, + "Label": "10625-39794 via Ribbon Synapse from 16323 -> 39795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16323, + "TargetID": 39795, + "Directional": true + }] + }, { + "ID": 12208, + "SourceStructureID": 10625, + "TargetStructureID": 39798, + "Label": "10625-39798 via Ribbon Synapse from 16187 -> 39801", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16187, + "TargetID": 39801, + "Directional": true + }] + }, { + "ID": 12209, + "SourceStructureID": 10625, + "TargetStructureID": 39802, + "Label": "10625-39802 via Ribbon Synapse from 16190 -> 39806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16190, + "TargetID": 39806, + "Directional": true + }] + }, { + "ID": 12210, + "SourceStructureID": 10625, + "TargetStructureID": 39807, + "Label": "10625-39807 via Ribbon Synapse from 26913 -> 39810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26913, + "TargetID": 39810, + "Directional": true + }] + }, { + "ID": 12211, + "SourceStructureID": 10625, + "TargetStructureID": 39811, + "Label": "10625-39811 via Ribbon Synapse from 16756 -> 39815", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16756, + "TargetID": 39815, + "Directional": true + }] + }, { + "ID": 12212, + "SourceStructureID": 10625, + "TargetStructureID": 39816, + "Label": "10625-39816 via Ribbon Synapse from 16755 -> 39819, 26912 -> 39818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16755, + "TargetID": 39819, + "Directional": true + }, { + "SourceID": 26912, + "TargetID": 39818, + "Directional": true + }] + }, { + "ID": 12213, + "SourceStructureID": 10625, + "TargetStructureID": 39830, + "Label": "10625-39830 via Ribbon Synapse from 26915 -> 39831", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26915, + "TargetID": 39831, + "Directional": true + }] + }, { + "ID": 12214, + "SourceStructureID": 10625, + "TargetStructureID": 39835, + "Label": "10625-39835 via Ribbon Synapse from 26916 -> 39837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26916, + "TargetID": 39837, + "Directional": true + }] + }, { + "ID": 12215, + "SourceStructureID": 10625, + "TargetStructureID": 39838, + "Label": "10625-39838 via Ribbon Synapse from 51375 -> 51376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51375, + "TargetID": 51376, + "Directional": true + }] + }, { + "ID": 12216, + "SourceStructureID": 10625, + "TargetStructureID": 40863, + "Label": "10625-40863 via Ribbon Synapse from 26906 -> 40874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26906, + "TargetID": 40874, + "Directional": true + }] + }, { + "ID": 12217, + "SourceStructureID": 10632, + "TargetStructureID": 8038, + "Label": "10632-8038 via Ribbon Synapse from 68921 -> 68920", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68921, + "TargetID": 68920, + "Directional": true + }] + }, { + "ID": 12218, + "SourceStructureID": 10720, + "TargetStructureID": 138, + "Label": "10720-138 via Conventional from 27176 -> 136847", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27176, + "TargetID": 136847, + "Directional": true + }] + }, { + "ID": 12219, + "SourceStructureID": 10720, + "TargetStructureID": 173, + "Label": "10720-173 via Conventional from 27177 -> 11930, 27180 -> 128179, 27180 -> 128181", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27177, + "TargetID": 11930, + "Directional": true + }, { + "SourceID": 27180, + "TargetID": 128179, + "Directional": true + }, { + "SourceID": 27180, + "TargetID": 128181, + "Directional": true + }] + }, { + "ID": 12220, + "SourceStructureID": 10720, + "TargetStructureID": 5150, + "Label": "10720-5150 via Conventional from 27152 -> 10719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27152, + "TargetID": 10719, + "Directional": true + }] + }, { + "ID": 12221, + "SourceStructureID": 10720, + "TargetStructureID": 5585, + "Label": "10720-5585 via Conventional from 36817 -> 36816", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36817, + "TargetID": 36816, + "Directional": true + }] + }, { + "ID": 12222, + "SourceStructureID": 10720, + "TargetStructureID": 10720, + "Label": "10720-10720 via Conventional from 27153 -> 27155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27153, + "TargetID": 27155, + "Directional": true + }] + }, { + "ID": 12223, + "SourceStructureID": 10720, + "TargetStructureID": 147796, + "Label": "10720-147796 via Conventional from 27158 -> 147803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27158, + "TargetID": 147803, + "Directional": true + }] + }, { + "ID": 12224, + "SourceStructureID": 10815, + "TargetStructureID": 4943, + "Label": "10815-4943 via Ribbon Synapse from 43373 -> 43372", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43373, + "TargetID": 43372, + "Directional": true + }] + }, { + "ID": 12225, + "SourceStructureID": 10815, + "TargetStructureID": 5609, + "Label": "10815-5609 via Ribbon Synapse from 31380 -> 31381", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31380, + "TargetID": 31381, + "Directional": true + }] + }, { + "ID": 12226, + "SourceStructureID": 10815, + "TargetStructureID": 7114, + "Label": "10815-7114 via Ribbon Synapse from 31380 -> 31384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31380, + "TargetID": 31384, + "Directional": true + }] + }, { + "ID": 12227, + "SourceStructureID": 10826, + "TargetStructureID": 391, + "Label": "10826-391 via Ribbon Synapse from 108557 -> 108559, 108571 -> 108574", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108557, + "TargetID": 108559, + "Directional": true + }, { + "SourceID": 108571, + "TargetID": 108574, + "Directional": true + }] + }, { + "ID": 12228, + "SourceStructureID": 10826, + "TargetStructureID": 5345, + "Label": "10826-5345 via Ribbon Synapse from 11387 -> 11382, 94781 -> 94780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11387, + "TargetID": 11382, + "Directional": true + }, { + "SourceID": 94781, + "TargetID": 94780, + "Directional": true + }] + }, { + "ID": 12229, + "SourceStructureID": 10826, + "TargetStructureID": 8037, + "Label": "10826-8037 via Ribbon Synapse from 11388 -> 11379, 11390 -> 11378", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11388, + "TargetID": 11379, + "Directional": true + }, { + "SourceID": 11390, + "TargetID": 11378, + "Directional": true + }] + }, { + "ID": 12230, + "SourceStructureID": 10826, + "TargetStructureID": 32795, + "Label": "10826-32795 via Ribbon Synapse from 32799 -> 32798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32799, + "TargetID": 32798, + "Directional": true + }] + }, { + "ID": 12231, + "SourceStructureID": 10826, + "TargetStructureID": 38231, + "Label": "10826-38231 via Ribbon Synapse from 38234 -> 38235", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38234, + "TargetID": 38235, + "Directional": true + }] + }, { + "ID": 12232, + "SourceStructureID": 10826, + "TargetStructureID": 101402, + "Label": "10826-101402 via Ribbon Synapse from 102083 -> 102082", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102083, + "TargetID": 102082, + "Directional": true + }] + }, { + "ID": 12233, + "SourceStructureID": 10840, + "TargetStructureID": 38401, + "Label": "10840-38401 via Ribbon Synapse from 33271 -> 38403", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33271, + "TargetID": 38403, + "Directional": true + }] + }, { + "ID": 12234, + "SourceStructureID": 10840, + "TargetStructureID": 38404, + "Label": "10840-38404 via Ribbon Synapse from 33271 -> 38407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33271, + "TargetID": 38407, + "Directional": true + }] + }, { + "ID": 12235, + "SourceStructureID": 10872, + "TargetStructureID": 308, + "Label": "10872-308 via Ribbon Synapse from 15042 -> 43776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15042, + "TargetID": 43776, + "Directional": true + }] + }, { + "ID": 12236, + "SourceStructureID": 10872, + "TargetStructureID": 514, + "Label": "10872-514 via Ribbon Synapse from 10893 -> 2525", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10893, + "TargetID": 2525, + "Directional": true + }] + }, { + "ID": 12237, + "SourceStructureID": 10872, + "TargetStructureID": 573, + "Label": "10872-573 via Ribbon Synapse from 19220 -> 11430", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19220, + "TargetID": 11430, + "Directional": true + }] + }, { + "ID": 12238, + "SourceStructureID": 10872, + "TargetStructureID": 2610, + "Label": "10872-2610 via Ribbon Synapse from 15036 -> 19226, 15040 -> 2901, 15042 -> 17940, 15640 -> 2910, 15641 -> 17898, 15645 -> 2913, 15740 -> 15663, 17897 -> 15647, 17900 -> 17899", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15036, + "TargetID": 19226, + "Directional": true + }, { + "SourceID": 15040, + "TargetID": 2901, + "Directional": true + }, { + "SourceID": 15042, + "TargetID": 17940, + "Directional": true + }, { + "SourceID": 15640, + "TargetID": 2910, + "Directional": true + }, { + "SourceID": 15641, + "TargetID": 17898, + "Directional": true + }, { + "SourceID": 15645, + "TargetID": 2913, + "Directional": true + }, { + "SourceID": 15740, + "TargetID": 15663, + "Directional": true + }, { + "SourceID": 17897, + "TargetID": 15647, + "Directional": true + }, { + "SourceID": 17900, + "TargetID": 17899, + "Directional": true + }] + }, { + "ID": 12239, + "SourceStructureID": 10872, + "TargetStructureID": 5303, + "Label": "10872-5303 via Ribbon Synapse from 15747 -> 30566", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15747, + "TargetID": 30566, + "Directional": true + }] + }, { + "ID": 12240, + "SourceStructureID": 10872, + "TargetStructureID": 5345, + "Label": "10872-5345 via Ribbon Synapse from 10879 -> 10881, 10882 -> 10883, 10889 -> 10890, 15021 -> 15020, 15742 -> 15674, 15744 -> 15737, 15747 -> 14592, 15751 -> 15753, 19233 -> 32860", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10879, + "TargetID": 10881, + "Directional": true + }, { + "SourceID": 10882, + "TargetID": 10883, + "Directional": true + }, { + "SourceID": 10889, + "TargetID": 10890, + "Directional": true + }, { + "SourceID": 15021, + "TargetID": 15020, + "Directional": true + }, { + "SourceID": 15742, + "TargetID": 15674, + "Directional": true + }, { + "SourceID": 15744, + "TargetID": 15737, + "Directional": true + }, { + "SourceID": 15747, + "TargetID": 14592, + "Directional": true + }, { + "SourceID": 15751, + "TargetID": 15753, + "Directional": true + }, { + "SourceID": 19233, + "TargetID": 32860, + "Directional": true + }] + }, { + "ID": 12241, + "SourceStructureID": 10872, + "TargetStructureID": 8037, + "Label": "10872-8037 via Ribbon Synapse from 10891 -> 10892, 11629 -> 11628, 19222 -> 19223, 19224 -> 19225, 19227 -> 19230", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10891, + "TargetID": 10892, + "Directional": true + }, { + "SourceID": 11629, + "TargetID": 11628, + "Directional": true + }, { + "SourceID": 19222, + "TargetID": 19223, + "Directional": true + }, { + "SourceID": 19224, + "TargetID": 19225, + "Directional": true + }, { + "SourceID": 19227, + "TargetID": 19230, + "Directional": true + }] + }, { + "ID": 12242, + "SourceStructureID": 10897, + "TargetStructureID": 179, + "Label": "10897-179 via Ribbon Synapse from 104875 -> 104874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104875, + "TargetID": 104874, + "Directional": true + }] + }, { + "ID": 12243, + "SourceStructureID": 10897, + "TargetStructureID": 391, + "Label": "10897-391 via Ribbon Synapse from 13838 -> 108368, 13839 -> 108364, 13843 -> 108365", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13838, + "TargetID": 108368, + "Directional": true + }, { + "SourceID": 13839, + "TargetID": 108364, + "Directional": true + }, { + "SourceID": 13843, + "TargetID": 108365, + "Directional": true + }] + }, { + "ID": 12244, + "SourceStructureID": 10897, + "TargetStructureID": 514, + "Label": "10897-514 via Ribbon Synapse from 10898 -> 1528, 10899 -> 2596, 10900 -> 1534, 10922 -> 2582, 10923 -> 2584, 10924 -> 10925, 13843 -> 13842, 18949 -> 18950, 18958 -> 2580, 18959 -> 18960, 18965 -> 82028, 104875 -> 104873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10898, + "TargetID": 1528, + "Directional": true + }, { + "SourceID": 10899, + "TargetID": 2596, + "Directional": true + }, { + "SourceID": 10900, + "TargetID": 1534, + "Directional": true + }, { + "SourceID": 10922, + "TargetID": 2582, + "Directional": true + }, { + "SourceID": 10923, + "TargetID": 2584, + "Directional": true + }, { + "SourceID": 10924, + "TargetID": 10925, + "Directional": true + }, { + "SourceID": 13843, + "TargetID": 13842, + "Directional": true + }, { + "SourceID": 18949, + "TargetID": 18950, + "Directional": true + }, { + "SourceID": 18958, + "TargetID": 2580, + "Directional": true + }, { + "SourceID": 18959, + "TargetID": 18960, + "Directional": true + }, { + "SourceID": 18965, + "TargetID": 82028, + "Directional": true + }, { + "SourceID": 104875, + "TargetID": 104873, + "Directional": true + }] + }, { + "ID": 12245, + "SourceStructureID": 10897, + "TargetStructureID": 3679, + "Label": "10897-3679 via Ribbon Synapse from 10927 -> 4701, 10927 -> 10928, 10929 -> 4702, 13839 -> 13840, 13841 -> 3812, 18946 -> 18947, 18954 -> 4702, 18955 -> 66142, 18961 -> 3808, 18962 -> 3856, 18968 -> 3822, 18969 -> 3823, 66139 -> 3815, 66140 -> 3819, 158724 -> 158725", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10927, + "TargetID": 4701, + "Directional": true + }, { + "SourceID": 10927, + "TargetID": 10928, + "Directional": true + }, { + "SourceID": 10929, + "TargetID": 4702, + "Directional": true + }, { + "SourceID": 13839, + "TargetID": 13840, + "Directional": true + }, { + "SourceID": 13841, + "TargetID": 3812, + "Directional": true + }, { + "SourceID": 18946, + "TargetID": 18947, + "Directional": true + }, { + "SourceID": 18954, + "TargetID": 4702, + "Directional": true + }, { + "SourceID": 18955, + "TargetID": 66142, + "Directional": true + }, { + "SourceID": 18961, + "TargetID": 3808, + "Directional": true + }, { + "SourceID": 18962, + "TargetID": 3856, + "Directional": true + }, { + "SourceID": 18968, + "TargetID": 3822, + "Directional": true + }, { + "SourceID": 18969, + "TargetID": 3823, + "Directional": true + }, { + "SourceID": 66139, + "TargetID": 3815, + "Directional": true + }, { + "SourceID": 66140, + "TargetID": 3819, + "Directional": true + }, { + "SourceID": 158724, + "TargetID": 158725, + "Directional": true + }] + }, { + "ID": 12246, + "SourceStructureID": 10897, + "TargetStructureID": 5303, + "Label": "10897-5303 via Ribbon Synapse from 18959 -> 35629, 18967 -> 102665", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18959, + "TargetID": 35629, + "Directional": true + }, { + "SourceID": 18967, + "TargetID": 102665, + "Directional": true + }] + }, { + "ID": 12247, + "SourceStructureID": 10897, + "TargetStructureID": 8037, + "Label": "10897-8037 via Ribbon Synapse from 18965 -> 18966", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18965, + "TargetID": 18966, + "Directional": true + }] + }, { + "ID": 12248, + "SourceStructureID": 10897, + "TargetStructureID": 97683, + "Label": "10897-97683 via Ribbon Synapse from 13835 -> 97703", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13835, + "TargetID": 97703, + "Directional": true + }] + }, { + "ID": 12249, + "SourceStructureID": 10897, + "TargetStructureID": 101553, + "Label": "10897-101553 via Ribbon Synapse from 18958 -> 101569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18958, + "TargetID": 101569, + "Directional": true + }] + }, { + "ID": 12250, + "SourceStructureID": 10931, + "TargetStructureID": 179, + "Label": "10931-179 via Ribbon Synapse from 19242 -> 87471, 19243 -> 87468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19242, + "TargetID": 87471, + "Directional": true + }, { + "SourceID": 19243, + "TargetID": 87468, + "Directional": true + }] + }, { + "ID": 12251, + "SourceStructureID": 10931, + "TargetStructureID": 514, + "Label": "10931-514 via Ribbon Synapse from 10940 -> 5223", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10940, + "TargetID": 5223, + "Directional": true + }] + }, { + "ID": 12252, + "SourceStructureID": 10931, + "TargetStructureID": 3679, + "Label": "10931-3679 via Ribbon Synapse from 10933 -> 7935, 10934 -> 7934, 10937 -> 7971, 10938 -> 10939, 13844 -> 13845, 14226 -> 14227, 18990 -> 29647, 19248 -> 22794", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10933, + "TargetID": 7935, + "Directional": true + }, { + "SourceID": 10934, + "TargetID": 7934, + "Directional": true + }, { + "SourceID": 10937, + "TargetID": 7971, + "Directional": true + }, { + "SourceID": 10938, + "TargetID": 10939, + "Directional": true + }, { + "SourceID": 13844, + "TargetID": 13845, + "Directional": true + }, { + "SourceID": 14226, + "TargetID": 14227, + "Directional": true + }, { + "SourceID": 18990, + "TargetID": 29647, + "Directional": true + }, { + "SourceID": 19248, + "TargetID": 22794, + "Directional": true + }] + }, { + "ID": 12253, + "SourceStructureID": 10931, + "TargetStructureID": 4850, + "Label": "10931-4850 via Ribbon Synapse from 14219 -> 14218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14219, + "TargetID": 14218, + "Directional": true + }] + }, { + "ID": 12254, + "SourceStructureID": 10931, + "TargetStructureID": 5394, + "Label": "10931-5394 via Ribbon Synapse from 18980 -> 77059, 18998 -> 77056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18980, + "TargetID": 77059, + "Directional": true + }, { + "SourceID": 18998, + "TargetID": 77056, + "Directional": true + }] + }, { + "ID": 12255, + "SourceStructureID": 10931, + "TargetStructureID": 7147, + "Label": "10931-7147 via Ribbon Synapse from 19241 -> 22902, 19244 -> 22901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19241, + "TargetID": 22902, + "Directional": true + }, { + "SourceID": 19244, + "TargetID": 22901, + "Directional": true + }] + }, { + "ID": 12256, + "SourceStructureID": 10931, + "TargetStructureID": 12897, + "Label": "10931-12897 via Ribbon Synapse from 18978 -> 24621, 18980 -> 24617, 18998 -> 24616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18978, + "TargetID": 24621, + "Directional": true + }, { + "SourceID": 18980, + "TargetID": 24617, + "Directional": true + }, { + "SourceID": 18998, + "TargetID": 24616, + "Directional": true + }] + }, { + "ID": 12257, + "SourceStructureID": 10931, + "TargetStructureID": 32871, + "Label": "10931-32871 via Ribbon Synapse from 10933 -> 93906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10933, + "TargetID": 93906, + "Directional": true + }] + }, { + "ID": 12258, + "SourceStructureID": 10931, + "TargetStructureID": 76973, + "Label": "10931-76973 via Ribbon Synapse from 13844 -> 77010, 14226 -> 76974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13844, + "TargetID": 77010, + "Directional": true + }, { + "SourceID": 14226, + "TargetID": 76974, + "Directional": true + }] + }, { + "ID": 12259, + "SourceStructureID": 10931, + "TargetStructureID": 77019, + "Label": "10931-77019 via Ribbon Synapse from 10940 -> 77020", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 10940, + "TargetID": 77020, + "Directional": true + }] + }, { + "ID": 12260, + "SourceStructureID": 10943, + "TargetStructureID": 514, + "Label": "10943-514 via Ribbon Synapse from 16274 -> 3097, 16276 -> 3110, 16279 -> 5224, 22579 -> 3100", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16274, + "TargetID": 3097, + "Directional": true + }, { + "SourceID": 16276, + "TargetID": 3110, + "Directional": true + }, { + "SourceID": 16279, + "TargetID": 5224, + "Directional": true + }, { + "SourceID": 22579, + "TargetID": 3100, + "Directional": true + }] + }, { + "ID": 12261, + "SourceStructureID": 10943, + "TargetStructureID": 3679, + "Label": "10943-3679 via Ribbon Synapse from 16256 -> 3774, 16260 -> 3775, 16265 -> 120444, 16271 -> 5191, 16272 -> 5195, 16273 -> 5211, 16277 -> 16278, 18847 -> 18846, 19012 -> 66145, 19023 -> 63366, 66143 -> 8003, 66144 -> 8004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16256, + "TargetID": 3774, + "Directional": true + }, { + "SourceID": 16260, + "TargetID": 3775, + "Directional": true + }, { + "SourceID": 16265, + "TargetID": 120444, + "Directional": true + }, { + "SourceID": 16271, + "TargetID": 5191, + "Directional": true + }, { + "SourceID": 16272, + "TargetID": 5195, + "Directional": true + }, { + "SourceID": 16273, + "TargetID": 5211, + "Directional": true + }, { + "SourceID": 16277, + "TargetID": 16278, + "Directional": true + }, { + "SourceID": 18847, + "TargetID": 18846, + "Directional": true + }, { + "SourceID": 19012, + "TargetID": 66145, + "Directional": true + }, { + "SourceID": 19023, + "TargetID": 63366, + "Directional": true + }, { + "SourceID": 66143, + "TargetID": 8003, + "Directional": true + }, { + "SourceID": 66144, + "TargetID": 8004, + "Directional": true + }] + }, { + "ID": 12262, + "SourceStructureID": 10943, + "TargetStructureID": 5394, + "Label": "10943-5394 via Ribbon Synapse from 16271 -> 87955, 22579 -> 22810", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16271, + "TargetID": 87955, + "Directional": true + }, { + "SourceID": 22579, + "TargetID": 22810, + "Directional": true + }] + }, { + "ID": 12263, + "SourceStructureID": 10943, + "TargetStructureID": 5402, + "Label": "10943-5402 via Ribbon Synapse from 16254 -> 129552, 16256 -> 129550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16254, + "TargetID": 129552, + "Directional": true + }, { + "SourceID": 16256, + "TargetID": 129550, + "Directional": true + }] + }, { + "ID": 12264, + "SourceStructureID": 10943, + "TargetStructureID": 8720, + "Label": "10943-8720 via Ribbon Synapse from 19023 -> 63367", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19023, + "TargetID": 63367, + "Directional": true + }] + }, { + "ID": 12265, + "SourceStructureID": 10943, + "TargetStructureID": 66815, + "Label": "10943-66815 via Ribbon Synapse from 16266 -> 66816, 16268 -> 66819", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16266, + "TargetID": 66816, + "Directional": true + }, { + "SourceID": 16268, + "TargetID": 66819, + "Directional": true + }] + }, { + "ID": 12266, + "SourceStructureID": 10945, + "TargetStructureID": 424, + "Label": "10945-424 via Conventional from 10979 -> 19528, 19535 -> 19534", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10979, + "TargetID": 19528, + "Directional": true + }, { + "SourceID": 19535, + "TargetID": 19534, + "Directional": true + }] + }, { + "ID": 12267, + "SourceStructureID": 10945, + "TargetStructureID": 478, + "Label": "10945-478 via Conventional from 10948 -> 10949, 10974 -> 3024, 10977 -> 19389", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10948, + "TargetID": 10949, + "Directional": true + }, { + "SourceID": 10974, + "TargetID": 3024, + "Directional": true + }, { + "SourceID": 10977, + "TargetID": 19389, + "Directional": true + }] + }, { + "ID": 12268, + "SourceStructureID": 10945, + "TargetStructureID": 26304, + "Label": "10945-26304 via Conventional from 10992 -> 26321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10992, + "TargetID": 26321, + "Directional": true + }] + }, { + "ID": 12269, + "SourceStructureID": 10945, + "TargetStructureID": 31944, + "Label": "10945-31944 via Conventional from 10988 -> 31952", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10988, + "TargetID": 31952, + "Directional": true + }] + }, { + "ID": 12270, + "SourceStructureID": 10950, + "TargetStructureID": 6857, + "Label": "10950-6857 via Conventional from 19010 -> 7521, 19016 -> 7520", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 19010, + "TargetID": 7521, + "Directional": true + }, { + "SourceID": 19016, + "TargetID": 7520, + "Directional": true + }] + }, { + "ID": 12271, + "SourceStructureID": 10953, + "TargetStructureID": 179, + "Label": "10953-179 via Ribbon Synapse from 87479 -> 87480, 87484 -> 87485", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87479, + "TargetID": 87480, + "Directional": true + }, { + "SourceID": 87484, + "TargetID": 87485, + "Directional": true + }] + }, { + "ID": 12272, + "SourceStructureID": 10953, + "TargetStructureID": 5303, + "Label": "10953-5303 via Ribbon Synapse from 33268 -> 24056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33268, + "TargetID": 24056, + "Directional": true + }] + }, { + "ID": 12273, + "SourceStructureID": 10953, + "TargetStructureID": 5860, + "Label": "10953-5860 via Ribbon Synapse from 33672 -> 33673, 87479 -> 87481, 87484 -> 87486", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33672, + "TargetID": 33673, + "Directional": true + }, { + "SourceID": 87479, + "TargetID": 87481, + "Directional": true + }, { + "SourceID": 87484, + "TargetID": 87486, + "Directional": true + }] + }, { + "ID": 12274, + "SourceStructureID": 10954, + "TargetStructureID": 514, + "Label": "10954-514 via Conventional from 10955 -> 1089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10955, + "TargetID": 1089, + "Directional": true + }] + }, { + "ID": 12275, + "SourceStructureID": 10957, + "TargetStructureID": 4943, + "Label": "10957-4943 via Ribbon Synapse from 83511 -> 83510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83511, + "TargetID": 83510, + "Directional": true + }] + }, { + "ID": 12276, + "SourceStructureID": 10957, + "TargetStructureID": 83514, + "Label": "10957-83514 via Ribbon Synapse from 83511 -> 83515, 83516 -> 83517", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83511, + "TargetID": 83515, + "Directional": true + }, { + "SourceID": 83516, + "TargetID": 83517, + "Directional": true + }] + }, { + "ID": 12277, + "SourceStructureID": 10957, + "TargetStructureID": 98127, + "Label": "10957-98127 via Ribbon Synapse from 33683 -> 98875", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33683, + "TargetID": 98875, + "Directional": true + }] + }, { + "ID": 12278, + "SourceStructureID": 10957, + "TargetStructureID": 105212, + "Label": "10957-105212 via Ribbon Synapse from 105716 -> 105710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105716, + "TargetID": 105710, + "Directional": true + }] + }, { + "ID": 12279, + "SourceStructureID": 10959, + "TargetStructureID": 476, + "Label": "10959-476 via Ribbon Synapse from 16555 -> 3210, 16557 -> 3208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16555, + "TargetID": 3210, + "Directional": true + }, { + "SourceID": 16557, + "TargetID": 3208, + "Directional": true + }] + }, { + "ID": 12280, + "SourceStructureID": 10959, + "TargetStructureID": 3257, + "Label": "10959-3257 via Ribbon Synapse from 16369 -> 16370, 16378 -> 16379, 16381 -> 16382, 16383 -> 16384, 16385 -> 16387, 16388 -> 18381, 16389 -> 16390, 16393 -> 16392, 16562 -> 16560, 16563 -> 16564, 16581 -> 16582, 16584 -> 16583, 16596 -> 16597, 18935 -> 10854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16369, + "TargetID": 16370, + "Directional": true + }, { + "SourceID": 16378, + "TargetID": 16379, + "Directional": true + }, { + "SourceID": 16381, + "TargetID": 16382, + "Directional": true + }, { + "SourceID": 16383, + "TargetID": 16384, + "Directional": true + }, { + "SourceID": 16385, + "TargetID": 16387, + "Directional": true + }, { + "SourceID": 16388, + "TargetID": 18381, + "Directional": true + }, { + "SourceID": 16389, + "TargetID": 16390, + "Directional": true + }, { + "SourceID": 16393, + "TargetID": 16392, + "Directional": true + }, { + "SourceID": 16562, + "TargetID": 16560, + "Directional": true + }, { + "SourceID": 16563, + "TargetID": 16564, + "Directional": true + }, { + "SourceID": 16581, + "TargetID": 16582, + "Directional": true + }, { + "SourceID": 16584, + "TargetID": 16583, + "Directional": true + }, { + "SourceID": 16596, + "TargetID": 16597, + "Directional": true + }, { + "SourceID": 18935, + "TargetID": 10854, + "Directional": true + }] + }, { + "ID": 12281, + "SourceStructureID": 10959, + "TargetStructureID": 5394, + "Label": "10959-5394 via Ribbon Synapse from 18927 -> 87750", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18927, + "TargetID": 87750, + "Directional": true + }] + }, { + "ID": 12282, + "SourceStructureID": 10959, + "TargetStructureID": 86747, + "Label": "10959-86747 via Ribbon Synapse from 16369 -> 86750", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16369, + "TargetID": 86750, + "Directional": true + }] + }, { + "ID": 12283, + "SourceStructureID": 10959, + "TargetStructureID": 86751, + "Label": "10959-86751 via Ribbon Synapse from 16369 -> 86755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16369, + "TargetID": 86755, + "Directional": true + }] + }, { + "ID": 12284, + "SourceStructureID": 10959, + "TargetStructureID": 86775, + "Label": "10959-86775 via Ribbon Synapse from 16380 -> 86778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16380, + "TargetID": 86778, + "Directional": true + }] + }, { + "ID": 12285, + "SourceStructureID": 10959, + "TargetStructureID": 86779, + "Label": "10959-86779 via Ribbon Synapse from 16380 -> 86780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16380, + "TargetID": 86780, + "Directional": true + }] + }, { + "ID": 12286, + "SourceStructureID": 10959, + "TargetStructureID": 86783, + "Label": "10959-86783 via Ribbon Synapse from 16563 -> 86787", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16563, + "TargetID": 86787, + "Directional": true + }] + }, { + "ID": 12287, + "SourceStructureID": 10959, + "TargetStructureID": 86799, + "Label": "10959-86799 via Ribbon Synapse from 16555 -> 86805", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16555, + "TargetID": 86805, + "Directional": true + }] + }, { + "ID": 12288, + "SourceStructureID": 10959, + "TargetStructureID": 86860, + "Label": "10959-86860 via Ribbon Synapse from 19260 -> 86861", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19260, + "TargetID": 86861, + "Directional": true + }] + }, { + "ID": 12289, + "SourceStructureID": 10959, + "TargetStructureID": 86862, + "Label": "10959-86862 via Ribbon Synapse from 16393 -> 86863", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16393, + "TargetID": 86863, + "Directional": true + }] + }, { + "ID": 12290, + "SourceStructureID": 10959, + "TargetStructureID": 86864, + "Label": "10959-86864 via Ribbon Synapse from 18936 -> 86866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18936, + "TargetID": 86866, + "Directional": true + }] + }, { + "ID": 12291, + "SourceStructureID": 10959, + "TargetStructureID": 86871, + "Label": "10959-86871 via Ribbon Synapse from 18934 -> 86873", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18934, + "TargetID": 86873, + "Directional": true + }] + }, { + "ID": 12292, + "SourceStructureID": 10959, + "TargetStructureID": 86876, + "Label": "10959-86876 via Ribbon Synapse from 16383 -> 86877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16383, + "TargetID": 86877, + "Directional": true + }] + }, { + "ID": 12293, + "SourceStructureID": 10959, + "TargetStructureID": 86888, + "Label": "10959-86888 via Ribbon Synapse from 16385 -> 86890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16385, + "TargetID": 86890, + "Directional": true + }] + }, { + "ID": 12294, + "SourceStructureID": 10959, + "TargetStructureID": 86913, + "Label": "10959-86913 via Ribbon Synapse from 16581 -> 86914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16581, + "TargetID": 86914, + "Directional": true + }] + }, { + "ID": 12295, + "SourceStructureID": 10959, + "TargetStructureID": 86915, + "Label": "10959-86915 via Ribbon Synapse from 16584 -> 86917, 16596 -> 86926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16584, + "TargetID": 86917, + "Directional": true + }, { + "SourceID": 16596, + "TargetID": 86926, + "Directional": true + }] + }, { + "ID": 12296, + "SourceStructureID": 10960, + "TargetStructureID": 3257, + "Label": "10960-3257 via Ribbon Synapse from 12469 -> 8226", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12469, + "TargetID": 8226, + "Directional": true + }] + }, { + "ID": 12297, + "SourceStructureID": 10960, + "TargetStructureID": 42432, + "Label": "10960-42432 via Ribbon Synapse from 42434 -> 42433", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42434, + "TargetID": 42433, + "Directional": true + }] + }, { + "ID": 12298, + "SourceStructureID": 10960, + "TargetStructureID": 42450, + "Label": "10960-42450 via Ribbon Synapse from 42452 -> 42451", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42452, + "TargetID": 42451, + "Directional": true + }] + }, { + "ID": 12299, + "SourceStructureID": 10961, + "TargetStructureID": 5303, + "Label": "10961-5303 via Ribbon Synapse from 33252 -> 24059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33252, + "TargetID": 24059, + "Directional": true + }] + }, { + "ID": 12300, + "SourceStructureID": 10963, + "TargetStructureID": 11238, + "Label": "10963-11238 via Ribbon Synapse from 88572 -> 88569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88572, + "TargetID": 88569, + "Directional": true + }] + }, { + "ID": 12301, + "SourceStructureID": 10963, + "TargetStructureID": 136913, + "Label": "10963-136913 via Ribbon Synapse from 136912 -> 136914", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136912, + "TargetID": 136914, + "Directional": true + }] + }, { + "ID": 12302, + "SourceStructureID": 10963, + "TargetStructureID": 136917, + "Label": "10963-136917 via Ribbon Synapse from 136920 -> 136921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136920, + "TargetID": 136921, + "Directional": true + }] + }, { + "ID": 12303, + "SourceStructureID": 10966, + "TargetStructureID": 514, + "Label": "10966-514 via Conventional from 10967 -> 1091", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10967, + "TargetID": 1091, + "Directional": true + }] + }, { + "ID": 12304, + "SourceStructureID": 10970, + "TargetStructureID": 514, + "Label": "10970-514 via Conventional from 10971 -> 1102, 10972 -> 1098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 10971, + "TargetID": 1102, + "Directional": true + }, { + "SourceID": 10972, + "TargetID": 1098, + "Directional": true + }] + }, { + "ID": 12305, + "SourceStructureID": 11011, + "TargetStructureID": 514, + "Label": "11011-514 via Conventional from 11012 -> 1103", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11012, + "TargetID": 1103, + "Directional": true + }] + }, { + "ID": 12306, + "SourceStructureID": 11015, + "TargetStructureID": 514, + "Label": "11015-514 via Conventional from 11016 -> 1105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11016, + "TargetID": 1105, + "Directional": true + }] + }, { + "ID": 12307, + "SourceStructureID": 11017, + "TargetStructureID": 8575, + "Label": "11017-8575 via Conventional from 11008 -> 61570", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11008, + "TargetID": 61570, + "Directional": true + }] + }, { + "ID": 12308, + "SourceStructureID": 11020, + "TargetStructureID": 7861, + "Label": "11020-7861 via Ribbon Synapse from 20012 -> 10558", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20012, + "TargetID": 10558, + "Directional": true + }] + }, { + "ID": 12309, + "SourceStructureID": 11023, + "TargetStructureID": 2610, + "Label": "11023-2610 via Conventional from 11027 -> 2614, 11028 -> 2621", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11027, + "TargetID": 2614, + "Directional": true + }, { + "SourceID": 11028, + "TargetID": 2621, + "Directional": true + }] + }, { + "ID": 12310, + "SourceStructureID": 11024, + "TargetStructureID": 2610, + "Label": "11024-2610 via Conventional from 11025 -> 2616", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11025, + "TargetID": 2616, + "Directional": true + }] + }, { + "ID": 12311, + "SourceStructureID": 11031, + "TargetStructureID": 3679, + "Label": "11031-3679 via Ribbon Synapse from 25442 -> 7965, 25445 -> 7969, 25446 -> 7970, 25450 -> 25451, 66121 -> 66122, 66123 -> 7967, 66124 -> 66125", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25442, + "TargetID": 7965, + "Directional": true + }, { + "SourceID": 25445, + "TargetID": 7969, + "Directional": true + }, { + "SourceID": 25446, + "TargetID": 7970, + "Directional": true + }, { + "SourceID": 25450, + "TargetID": 25451, + "Directional": true + }, { + "SourceID": 66121, + "TargetID": 66122, + "Directional": true + }, { + "SourceID": 66123, + "TargetID": 7967, + "Directional": true + }, { + "SourceID": 66124, + "TargetID": 66125, + "Directional": true + }] + }, { + "ID": 12312, + "SourceStructureID": 11031, + "TargetStructureID": 4943, + "Label": "11031-4943 via Ribbon Synapse from 40981 -> 40980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40981, + "TargetID": 40980, + "Directional": true + }] + }, { + "ID": 12313, + "SourceStructureID": 11031, + "TargetStructureID": 5394, + "Label": "11031-5394 via Ribbon Synapse from 25442 -> 77061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25442, + "TargetID": 77061, + "Directional": true + }] + }, { + "ID": 12314, + "SourceStructureID": 11031, + "TargetStructureID": 6169, + "Label": "11031-6169 via Ribbon Synapse from 29782 -> 29781, 60865 -> 14938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29782, + "TargetID": 29781, + "Directional": true + }, { + "SourceID": 60865, + "TargetID": 14938, + "Directional": true + }] + }, { + "ID": 12315, + "SourceStructureID": 11031, + "TargetStructureID": 60863, + "Label": "11031-60863 via Ribbon Synapse from 60865 -> 60864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60865, + "TargetID": 60864, + "Directional": true + }] + }, { + "ID": 12316, + "SourceStructureID": 11033, + "TargetStructureID": 7113, + "Label": "11033-7113 via Ribbon Synapse from 82687 -> 82688", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82687, + "TargetID": 82688, + "Directional": true + }] + }, { + "ID": 12317, + "SourceStructureID": 11033, + "TargetStructureID": 7147, + "Label": "11033-7147 via Ribbon Synapse from 32966 -> 32965", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32966, + "TargetID": 32965, + "Directional": true + }] + }, { + "ID": 12318, + "SourceStructureID": 11033, + "TargetStructureID": 32959, + "Label": "11033-32959 via Ribbon Synapse from 32963 -> 32962", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32963, + "TargetID": 32962, + "Directional": true + }] + }, { + "ID": 12319, + "SourceStructureID": 11037, + "TargetStructureID": 7114, + "Label": "11037-7114 via Ribbon Synapse from 33706 -> 33707", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33706, + "TargetID": 33707, + "Directional": true + }] + }, { + "ID": 12320, + "SourceStructureID": 11042, + "TargetStructureID": 308, + "Label": "11042-308 via Ribbon Synapse from 42697 -> 42698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 42697, + "TargetID": 42698, + "Directional": true + }] + }, { + "ID": 12321, + "SourceStructureID": 11042, + "TargetStructureID": 7147, + "Label": "11042-7147 via Ribbon Synapse from 91327 -> 91326, 92810 -> 22900", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91327, + "TargetID": 91326, + "Directional": true + }, { + "SourceID": 92810, + "TargetID": 22900, + "Directional": true + }] + }, { + "ID": 12322, + "SourceStructureID": 11042, + "TargetStructureID": 12897, + "Label": "11042-12897 via Ribbon Synapse from 92810 -> 92809, 108238 -> 108239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92810, + "TargetID": 92809, + "Directional": true + }, { + "SourceID": 108238, + "TargetID": 108239, + "Directional": true + }] + }, { + "ID": 12323, + "SourceStructureID": 11042, + "TargetStructureID": 91207, + "Label": "11042-91207 via Ribbon Synapse from 91540 -> 91539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91540, + "TargetID": 91539, + "Directional": true + }] + }, { + "ID": 12324, + "SourceStructureID": 11043, + "TargetStructureID": 3679, + "Label": "11043-3679 via Ribbon Synapse from 66130 -> 66131", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66130, + "TargetID": 66131, + "Directional": true + }] + }, { + "ID": 12325, + "SourceStructureID": 11043, + "TargetStructureID": 12897, + "Label": "11043-12897 via Ribbon Synapse from 87573 -> 24842, 108258 -> 108256, 108263 -> 108251, 135377 -> 135379", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87573, + "TargetID": 24842, + "Directional": true + }, { + "SourceID": 108258, + "TargetID": 108256, + "Directional": true + }, { + "SourceID": 108263, + "TargetID": 108251, + "Directional": true + }, { + "SourceID": 135377, + "TargetID": 135379, + "Directional": true + }] + }, { + "ID": 12326, + "SourceStructureID": 11043, + "TargetStructureID": 61466, + "Label": "11043-61466 via Ribbon Synapse from 33710 -> 61468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33710, + "TargetID": 61468, + "Directional": true + }] + }, { + "ID": 12327, + "SourceStructureID": 11043, + "TargetStructureID": 87569, + "Label": "11043-87569 via Ribbon Synapse from 87573 -> 87572", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87573, + "TargetID": 87572, + "Directional": true + }] + }, { + "ID": 12328, + "SourceStructureID": 11043, + "TargetStructureID": 92226, + "Label": "11043-92226 via Ribbon Synapse from 92804 -> 92805", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92804, + "TargetID": 92805, + "Directional": true + }] + }, { + "ID": 12329, + "SourceStructureID": 11043, + "TargetStructureID": 135039, + "Label": "11043-135039 via Ribbon Synapse from 135046 -> 135047", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135046, + "TargetID": 135047, + "Directional": true + }] + }, { + "ID": 12330, + "SourceStructureID": 11044, + "TargetStructureID": 5609, + "Label": "11044-5609 via Ribbon Synapse from 33322 -> 25059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33322, + "TargetID": 25059, + "Directional": true + }] + }, { + "ID": 12331, + "SourceStructureID": 11044, + "TargetStructureID": 31024, + "Label": "11044-31024 via Ribbon Synapse from 33321 -> 33320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33321, + "TargetID": 33320, + "Directional": true + }] + }, { + "ID": 12332, + "SourceStructureID": 11044, + "TargetStructureID": 32767, + "Label": "11044-32767 via Ribbon Synapse from 32770 -> 32769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32770, + "TargetID": 32769, + "Directional": true + }] + }, { + "ID": 12333, + "SourceStructureID": 11049, + "TargetStructureID": 5303, + "Label": "11049-5303 via Ribbon Synapse from 35605 -> 35604", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35605, + "TargetID": 35604, + "Directional": true + }] + }, { + "ID": 12334, + "SourceStructureID": 11063, + "TargetStructureID": 5394, + "Label": "11063-5394 via Ribbon Synapse from 122905 -> 122906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122905, + "TargetID": 122906, + "Directional": true + }] + }, { + "ID": 12335, + "SourceStructureID": 11063, + "TargetStructureID": 7114, + "Label": "11063-7114 via Ribbon Synapse from 116680 -> 116681, 122887 -> 122886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 116680, + "TargetID": 116681, + "Directional": true + }, { + "SourceID": 122887, + "TargetID": 122886, + "Directional": true + }] + }, { + "ID": 12336, + "SourceStructureID": 11066, + "TargetStructureID": 7215, + "Label": "11066-7215 via Ribbon Synapse from 31563 -> 31548, 31564 -> 31548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31563, + "TargetID": 31548, + "Directional": true + }, { + "SourceID": 31564, + "TargetID": 31548, + "Directional": true + }] + }, { + "ID": 12337, + "SourceStructureID": 11066, + "TargetStructureID": 7858, + "Label": "11066-7858 via Ribbon Synapse from 31914 -> 31909", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31914, + "TargetID": 31909, + "Directional": true + }] + }, { + "ID": 12338, + "SourceStructureID": 11066, + "TargetStructureID": 16073, + "Label": "11066-16073 via Ribbon Synapse from 34421 -> 24227", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34421, + "TargetID": 24227, + "Directional": true + }] + }, { + "ID": 12339, + "SourceStructureID": 11071, + "TargetStructureID": 4569, + "Label": "11071-4569 via Conventional from 11078 -> 11068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11078, + "TargetID": 11068, + "Directional": true + }] + }, { + "ID": 12340, + "SourceStructureID": 11073, + "TargetStructureID": 4569, + "Label": "11073-4569 via Conventional from 11079 -> 11069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11079, + "TargetID": 11069, + "Directional": true + }] + }, { + "ID": 12341, + "SourceStructureID": 11074, + "TargetStructureID": 170, + "Label": "11074-170 via Conventional from 11082 -> 90372", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11082, + "TargetID": 90372, + "Directional": true + }] + }, { + "ID": 12342, + "SourceStructureID": 11074, + "TargetStructureID": 4569, + "Label": "11074-4569 via Conventional from 11084 -> 47506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11084, + "TargetID": 47506, + "Directional": true + }] + }, { + "ID": 12343, + "SourceStructureID": 11074, + "TargetStructureID": 11072, + "Label": "11074-11072 via Conventional from 11077 -> 11076", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11077, + "TargetID": 11076, + "Directional": true + }] + }, { + "ID": 12344, + "SourceStructureID": 11085, + "TargetStructureID": 5303, + "Label": "11085-5303 via Ribbon Synapse from 24030 -> 24011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24030, + "TargetID": 24011, + "Directional": true + }] + }, { + "ID": 12345, + "SourceStructureID": 11085, + "TargetStructureID": 5464, + "Label": "11085-5464 via Ribbon Synapse from 24015 -> 57269, 116629 -> 116630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24015, + "TargetID": 57269, + "Directional": true + }, { + "SourceID": 116629, + "TargetID": 116630, + "Directional": true + }] + }, { + "ID": 12346, + "SourceStructureID": 11092, + "TargetStructureID": 7693, + "Label": "11092-7693 via Ribbon Synapse from 95082 -> 95083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95082, + "TargetID": 95083, + "Directional": true + }] + }, { + "ID": 12347, + "SourceStructureID": 11092, + "TargetStructureID": 7703, + "Label": "11092-7703 via Ribbon Synapse from 128623 -> 17755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128623, + "TargetID": 17755, + "Directional": true + }] + }, { + "ID": 12348, + "SourceStructureID": 11092, + "TargetStructureID": 7859, + "Label": "11092-7859 via Ribbon Synapse from 128615 -> 84694", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128615, + "TargetID": 84694, + "Directional": true + }] + }, { + "ID": 12349, + "SourceStructureID": 11092, + "TargetStructureID": 7861, + "Label": "11092-7861 via Ribbon Synapse from 123430 -> 34543", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123430, + "TargetID": 34543, + "Directional": true + }] + }, { + "ID": 12350, + "SourceStructureID": 11092, + "TargetStructureID": 13525, + "Label": "11092-13525 via Ribbon Synapse from 107594 -> 95779, 109974 -> 109975, 123463 -> 85945", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107594, + "TargetID": 95779, + "Directional": true + }, { + "SourceID": 109974, + "TargetID": 109975, + "Directional": true + }, { + "SourceID": 123463, + "TargetID": 85945, + "Directional": true + }] + }, { + "ID": 12351, + "SourceStructureID": 11092, + "TargetStructureID": 34336, + "Label": "11092-34336 via Ribbon Synapse from 95050 -> 34346", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95050, + "TargetID": 34346, + "Directional": true + }] + }, { + "ID": 12352, + "SourceStructureID": 11092, + "TargetStructureID": 34337, + "Label": "11092-34337 via Ribbon Synapse from 95029 -> 95030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 95029, + "TargetID": 95030, + "Directional": true + }] + }, { + "ID": 12353, + "SourceStructureID": 11092, + "TargetStructureID": 64777, + "Label": "11092-64777 via Ribbon Synapse from 128623 -> 64837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128623, + "TargetID": 64837, + "Directional": true + }] + }, { + "ID": 12354, + "SourceStructureID": 11092, + "TargetStructureID": 122431, + "Label": "11092-122431 via Ribbon Synapse from 128587 -> 129528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128587, + "TargetID": 129528, + "Directional": true + }] + }, { + "ID": 12355, + "SourceStructureID": 11092, + "TargetStructureID": 130408, + "Label": "11092-130408 via Ribbon Synapse from 123463 -> 130409", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 123463, + "TargetID": 130409, + "Directional": true + }] + }, { + "ID": 12356, + "SourceStructureID": 11172, + "TargetStructureID": 4850, + "Label": "11172-4850 via Ribbon Synapse from 22551 -> 22552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22551, + "TargetID": 22552, + "Directional": true + }] + }, { + "ID": 12357, + "SourceStructureID": 11172, + "TargetStructureID": 5303, + "Label": "11172-5303 via Ribbon Synapse from 15703 -> 35651", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15703, + "TargetID": 35651, + "Directional": true + }] + }, { + "ID": 12358, + "SourceStructureID": 11172, + "TargetStructureID": 8037, + "Label": "11172-8037 via Ribbon Synapse from 15724 -> 15723, 19238 -> 11372, 30557 -> 30556, 30563 -> 30562, 33001 -> 33002", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15724, + "TargetID": 15723, + "Directional": true + }, { + "SourceID": 19238, + "TargetID": 11372, + "Directional": true + }, { + "SourceID": 30557, + "TargetID": 30556, + "Directional": true + }, { + "SourceID": 30563, + "TargetID": 30562, + "Directional": true + }, { + "SourceID": 33001, + "TargetID": 33002, + "Directional": true + }] + }, { + "ID": 12359, + "SourceStructureID": 11172, + "TargetStructureID": 12897, + "Label": "11172-12897 via Ribbon Synapse from 15709 -> 24719, 22551 -> 66246, 24718 -> 24717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15709, + "TargetID": 24719, + "Directional": true + }, { + "SourceID": 22551, + "TargetID": 66246, + "Directional": true + }, { + "SourceID": 24718, + "TargetID": 24717, + "Directional": true + }] + }, { + "ID": 12360, + "SourceStructureID": 11229, + "TargetStructureID": 6133, + "Label": "11229-6133 via Conventional from 28972 -> 37400, 135678 -> 135677", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 28972, + "TargetID": 37400, + "Directional": true + }, { + "SourceID": 135678, + "TargetID": 135677, + "Directional": true + }] + }, { + "ID": 12361, + "SourceStructureID": 11229, + "TargetStructureID": 6134, + "Label": "11229-6134 via Conventional from 44860 -> 44859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44860, + "TargetID": 44859, + "Directional": true + }] + }, { + "ID": 12362, + "SourceStructureID": 11229, + "TargetStructureID": 28950, + "Label": "11229-28950 via Conventional from 28981 -> 28971", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 28981, + "TargetID": 28971, + "Directional": true + }] + }, { + "ID": 12363, + "SourceStructureID": 11234, + "TargetStructureID": 7050, + "Label": "11234-7050 via Ribbon Synapse from 43505 -> 24893", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43505, + "TargetID": 24893, + "Directional": true + }] + }, { + "ID": 12364, + "SourceStructureID": 11238, + "TargetStructureID": 5543, + "Label": "11238-5543 via Conventional from 136107 -> 136313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136107, + "TargetID": 136313, + "Directional": true + }] + }, { + "ID": 12365, + "SourceStructureID": 11238, + "TargetStructureID": 6132, + "Label": "11238-6132 via Conventional from 88390 -> 88507, 88488 -> 88506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88390, + "TargetID": 88507, + "Directional": true + }, { + "SourceID": 88488, + "TargetID": 88506, + "Directional": true + }] + }, { + "ID": 12366, + "SourceStructureID": 11238, + "TargetStructureID": 10963, + "Label": "11238-10963 via Conventional from 88570 -> 88571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88570, + "TargetID": 88571, + "Directional": true + }] + }, { + "ID": 12367, + "SourceStructureID": 11238, + "TargetStructureID": 136127, + "Label": "11238-136127 via Conventional from 136131 -> 136130", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136131, + "TargetID": 136130, + "Directional": true + }] + }, { + "ID": 12368, + "SourceStructureID": 11238, + "TargetStructureID": 136351, + "Label": "11238-136351 via Conventional from 136111 -> 136353", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136111, + "TargetID": 136353, + "Directional": true + }] + }, { + "ID": 12369, + "SourceStructureID": 11246, + "TargetStructureID": 8038, + "Label": "11246-8038 via Ribbon Synapse from 68932 -> 68931, 68936 -> 68935, 68959 -> 68961, 68966 -> 68965", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68932, + "TargetID": 68931, + "Directional": true + }, { + "SourceID": 68936, + "TargetID": 68935, + "Directional": true + }, { + "SourceID": 68959, + "TargetID": 68961, + "Directional": true + }, { + "SourceID": 68966, + "TargetID": 68965, + "Directional": true + }] + }, { + "ID": 12370, + "SourceStructureID": 11248, + "TargetStructureID": 5345, + "Label": "11248-5345 via Ribbon Synapse from 88881 -> 88880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88881, + "TargetID": 88880, + "Directional": true + }] + }, { + "ID": 12371, + "SourceStructureID": 11248, + "TargetStructureID": 8037, + "Label": "11248-8037 via Ribbon Synapse from 43572 -> 43571, 88903 -> 88901, 88904 -> 88902, 88907 -> 88908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43572, + "TargetID": 43571, + "Directional": true + }, { + "SourceID": 88903, + "TargetID": 88901, + "Directional": true + }, { + "SourceID": 88904, + "TargetID": 88902, + "Directional": true + }, { + "SourceID": 88907, + "TargetID": 88908, + "Directional": true + }] + }, { + "ID": 12372, + "SourceStructureID": 11248, + "TargetStructureID": 88905, + "Label": "11248-88905 via Ribbon Synapse from 88903 -> 88906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88903, + "TargetID": 88906, + "Directional": true + }] + }, { + "ID": 12373, + "SourceStructureID": 11248, + "TargetStructureID": 96788, + "Label": "11248-96788 via Ribbon Synapse from 96857 -> 96858", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96857, + "TargetID": 96858, + "Directional": true + }] + }, { + "ID": 12374, + "SourceStructureID": 11248, + "TargetStructureID": 132773, + "Label": "11248-132773 via Ribbon Synapse from 96857 -> 132776, 132775 -> 132774", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96857, + "TargetID": 132776, + "Directional": true + }, { + "SourceID": 132775, + "TargetID": 132774, + "Directional": true + }] + }, { + "ID": 12375, + "SourceStructureID": 11250, + "TargetStructureID": 488, + "Label": "11250-488 via Ribbon Synapse from 40943 -> 40942", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40943, + "TargetID": 40942, + "Directional": true + }] + }, { + "ID": 12376, + "SourceStructureID": 11250, + "TargetStructureID": 7147, + "Label": "11250-7147 via Ribbon Synapse from 30300 -> 30309, 30314 -> 30315", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30300, + "TargetID": 30309, + "Directional": true + }, { + "SourceID": 30314, + "TargetID": 30315, + "Directional": true + }] + }, { + "ID": 12377, + "SourceStructureID": 11250, + "TargetStructureID": 12897, + "Label": "11250-12897 via Ribbon Synapse from 30286 -> 30288, 30293 -> 24631, 129505 -> 129506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30286, + "TargetID": 30288, + "Directional": true + }, { + "SourceID": 30293, + "TargetID": 24631, + "Directional": true + }, { + "SourceID": 129505, + "TargetID": 129506, + "Directional": true + }] + }, { + "ID": 12378, + "SourceStructureID": 11321, + "TargetStructureID": 5464, + "Label": "11321-5464 via Ribbon Synapse from 33011 -> 33010, 33012 -> 33013, 33777 -> 33778, 33779 -> 33780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33011, + "TargetID": 33010, + "Directional": true + }, { + "SourceID": 33012, + "TargetID": 33013, + "Directional": true + }, { + "SourceID": 33777, + "TargetID": 33778, + "Directional": true + }, { + "SourceID": 33779, + "TargetID": 33780, + "Directional": true + }] + }, { + "ID": 12379, + "SourceStructureID": 11401, + "TargetStructureID": 304, + "Label": "11401-304 via Ribbon Synapse from 17925 -> 17631", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17925, + "TargetID": 17631, + "Directional": true + }] + }, { + "ID": 12380, + "SourceStructureID": 11401, + "TargetStructureID": 391, + "Label": "11401-391 via Ribbon Synapse from 16833 -> 108171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16833, + "TargetID": 108171, + "Directional": true + }] + }, { + "ID": 12381, + "SourceStructureID": 11401, + "TargetStructureID": 514, + "Label": "11401-514 via Ribbon Synapse from 19051 -> 19058", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19051, + "TargetID": 19058, + "Directional": true + }] + }, { + "ID": 12382, + "SourceStructureID": 11401, + "TargetStructureID": 573, + "Label": "11401-573 via Ribbon Synapse from 11413 -> 11424, 11426 -> 11425", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11413, + "TargetID": 11424, + "Directional": true + }, { + "SourceID": 11426, + "TargetID": 11425, + "Directional": true + }] + }, { + "ID": 12383, + "SourceStructureID": 11401, + "TargetStructureID": 2610, + "Label": "11401-2610 via Ribbon Synapse from 11409 -> 11410, 11412 -> 11411, 16803 -> 2850, 16828 -> 2825, 16830 -> 2822, 17914 -> 3005, 17922 -> 17921, 17924 -> 17923, 17992 -> 17993, 19027 -> 19026, 19050 -> 19049, 19054 -> 19053", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11409, + "TargetID": 11410, + "Directional": true + }, { + "SourceID": 11412, + "TargetID": 11411, + "Directional": true + }, { + "SourceID": 16803, + "TargetID": 2850, + "Directional": true + }, { + "SourceID": 16828, + "TargetID": 2825, + "Directional": true + }, { + "SourceID": 16830, + "TargetID": 2822, + "Directional": true + }, { + "SourceID": 17914, + "TargetID": 3005, + "Directional": true + }, { + "SourceID": 17922, + "TargetID": 17921, + "Directional": true + }, { + "SourceID": 17924, + "TargetID": 17923, + "Directional": true + }, { + "SourceID": 17992, + "TargetID": 17993, + "Directional": true + }, { + "SourceID": 19027, + "TargetID": 19026, + "Directional": true + }, { + "SourceID": 19050, + "TargetID": 19049, + "Directional": true + }, { + "SourceID": 19054, + "TargetID": 19053, + "Directional": true + }] + }, { + "ID": 12384, + "SourceStructureID": 11401, + "TargetStructureID": 5345, + "Label": "11401-5345 via Ribbon Synapse from 16805 -> 16810, 16824 -> 16825, 33782 -> 33784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16805, + "TargetID": 16810, + "Directional": true + }, { + "SourceID": 16824, + "TargetID": 16825, + "Directional": true + }, { + "SourceID": 33782, + "TargetID": 33784, + "Directional": true + }] + }, { + "ID": 12385, + "SourceStructureID": 11401, + "TargetStructureID": 25342, + "Label": "11401-25342 via Ribbon Synapse from 25346 -> 25345", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25346, + "TargetID": 25345, + "Directional": true + }] + }, { + "ID": 12386, + "SourceStructureID": 11401, + "TargetStructureID": 66184, + "Label": "11401-66184 via Ribbon Synapse from 11409 -> 92040", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 11409, + "TargetID": 92040, + "Directional": true + }] + }, { + "ID": 12387, + "SourceStructureID": 11408, + "TargetStructureID": 5909, + "Label": "11408-5909 via Conventional from 93185 -> 93159, 93187 -> 93186", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93185, + "TargetID": 93159, + "Directional": true + }, { + "SourceID": 93187, + "TargetID": 93186, + "Directional": true + }] + }, { + "ID": 12388, + "SourceStructureID": 11485, + "TargetStructureID": 514, + "Label": "11485-514 via Conventional from 22604 -> 3240", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22604, + "TargetID": 3240, + "Directional": true + }] + }, { + "ID": 12389, + "SourceStructureID": 11485, + "TargetStructureID": 5575, + "Label": "11485-5575 via Conventional from 23061 -> 23053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23061, + "TargetID": 23053, + "Directional": true + }] + }, { + "ID": 12390, + "SourceStructureID": 11485, + "TargetStructureID": 24401, + "Label": "11485-24401 via Conventional from 11487 -> 32267, 11488 -> 43627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11487, + "TargetID": 32267, + "Directional": true + }, { + "SourceID": 11488, + "TargetID": 43627, + "Directional": true + }] + }, { + "ID": 12391, + "SourceStructureID": 11531, + "TargetStructureID": 390, + "Label": "11531-390 via Conventional from 11534 -> 65115", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11534, + "TargetID": 65115, + "Directional": true + }] + }, { + "ID": 12392, + "SourceStructureID": 11531, + "TargetStructureID": 5562, + "Label": "11531-5562 via Conventional from 78350 -> 63361", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78350, + "TargetID": 63361, + "Directional": true + }] + }, { + "ID": 12393, + "SourceStructureID": 11531, + "TargetStructureID": 5623, + "Label": "11531-5623 via Conventional from 63584 -> 63581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63584, + "TargetID": 63581, + "Directional": true + }] + }, { + "ID": 12394, + "SourceStructureID": 11531, + "TargetStructureID": 6589, + "Label": "11531-6589 via Conventional from 11533 -> 6593", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11533, + "TargetID": 6593, + "Directional": true + }] + }, { + "ID": 12395, + "SourceStructureID": 11645, + "TargetStructureID": 514, + "Label": "11645-514 via Conventional from 15374 -> 1158", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15374, + "TargetID": 1158, + "Directional": true + }] + }, { + "ID": 12396, + "SourceStructureID": 11650, + "TargetStructureID": 179, + "Label": "11650-179 via Conventional from 25745 -> 25744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25745, + "TargetID": 25744, + "Directional": true + }] + }, { + "ID": 12397, + "SourceStructureID": 11651, + "TargetStructureID": 5281, + "Label": "11651-5281 via Conventional from 43121 -> 43119", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43121, + "TargetID": 43119, + "Directional": true + }] + }, { + "ID": 12398, + "SourceStructureID": 11657, + "TargetStructureID": 40455, + "Label": "11657-40455 via Conventional from 40460 -> 40459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40460, + "TargetID": 40459, + "Directional": true + }] + }, { + "ID": 12399, + "SourceStructureID": 11683, + "TargetStructureID": 5281, + "Label": "11683-5281 via Conventional from 43118 -> 36776, 43306 -> 43305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43118, + "TargetID": 36776, + "Directional": true + }, { + "SourceID": 43306, + "TargetID": 43305, + "Directional": true + }] + }, { + "ID": 12400, + "SourceStructureID": 11696, + "TargetStructureID": 142, + "Label": "11696-142 via Conventional from 11698 -> 6657", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11698, + "TargetID": 6657, + "Directional": true + }] + }, { + "ID": 12401, + "SourceStructureID": 11696, + "TargetStructureID": 488, + "Label": "11696-488 via Conventional from 11741 -> 71277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11741, + "TargetID": 71277, + "Directional": true + }] + }, { + "ID": 12402, + "SourceStructureID": 11696, + "TargetStructureID": 159084, + "Label": "11696-159084 via Conventional from 11740 -> 159085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 11740, + "TargetID": 159085, + "Directional": true + }] + }, { + "ID": 12403, + "SourceStructureID": 12072, + "TargetStructureID": 12208, + "Label": "12072-12208 via Conventional from 27336 -> 22361", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27336, + "TargetID": 22361, + "Directional": true + }] + }, { + "ID": 12404, + "SourceStructureID": 12113, + "TargetStructureID": 173, + "Label": "12113-173 via Ribbon Synapse from 12114 -> 12112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 12114, + "TargetID": 12112, + "Directional": true + }] + }, { + "ID": 12405, + "SourceStructureID": 12192, + "TargetStructureID": 591, + "Label": "12192-591 via Conventional from 46625 -> 10081", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46625, + "TargetID": 10081, + "Directional": true + }] + }, { + "ID": 12406, + "SourceStructureID": 12192, + "TargetStructureID": 93125, + "Label": "12192-93125 via Conventional from 46616 -> 93134", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46616, + "TargetID": 93134, + "Directional": true + }] + }, { + "ID": 12407, + "SourceStructureID": 12298, + "TargetStructureID": 596, + "Label": "12298-596 via Conventional from 84669 -> 68608", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84669, + "TargetID": 68608, + "Directional": true + }] + }, { + "ID": 12408, + "SourceStructureID": 12298, + "TargetStructureID": 84667, + "Label": "12298-84667 via Conventional from 84666 -> 84668", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84666, + "TargetID": 84668, + "Directional": true + }] + }, { + "ID": 12409, + "SourceStructureID": 12461, + "TargetStructureID": 591, + "Label": "12461-591 via Conventional from 46624 -> 10082", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46624, + "TargetID": 10082, + "Directional": true + }] + }, { + "ID": 12410, + "SourceStructureID": 12564, + "TargetStructureID": 450, + "Label": "12564-450 via Conventional from 122559 -> 122558", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122559, + "TargetID": 122558, + "Directional": true + }] + }, { + "ID": 12411, + "SourceStructureID": 12696, + "TargetStructureID": 4850, + "Label": "12696-4850 via Conventional from 33890 -> 33889", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33890, + "TargetID": 33889, + "Directional": true + }] + }, { + "ID": 12412, + "SourceStructureID": 12897, + "TargetStructureID": 161, + "Label": "12897-161 via Conventional from 22864 -> 22865, 33770 -> 33769, 35584 -> 35585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22864, + "TargetID": 22865, + "Directional": true + }, { + "SourceID": 33770, + "TargetID": 33769, + "Directional": true + }, { + "SourceID": 35584, + "TargetID": 35585, + "Directional": true + }] + }, { + "ID": 12413, + "SourceStructureID": 12897, + "TargetStructureID": 5150, + "Label": "12897-5150 via Conventional from 131334 -> 5244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131334, + "TargetID": 5244, + "Directional": true + }] + }, { + "ID": 12414, + "SourceStructureID": 12897, + "TargetStructureID": 5502, + "Label": "12897-5502 via Conventional from 12907 -> 27233, 12908 -> 27235, 27231 -> 27232, 131333 -> 131341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 12907, + "TargetID": 27233, + "Directional": true + }, { + "SourceID": 12908, + "TargetID": 27235, + "Directional": true + }, { + "SourceID": 27231, + "TargetID": 27232, + "Directional": true + }, { + "SourceID": 131333, + "TargetID": 131341, + "Directional": true + }] + }, { + "ID": 12415, + "SourceStructureID": 12897, + "TargetStructureID": 5511, + "Label": "12897-5511 via Conventional from 65176 -> 65177", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65176, + "TargetID": 65177, + "Directional": true + }] + }, { + "ID": 12416, + "SourceStructureID": 13000, + "TargetStructureID": 11401, + "Label": "13000-11401 via Conventional from 21921 -> 11402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21921, + "TargetID": 11402, + "Directional": true + }] + }, { + "ID": 12417, + "SourceStructureID": 13015, + "TargetStructureID": 308, + "Label": "13015-308 via Conventional from 86572 -> 86570", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86572, + "TargetID": 86570, + "Directional": true + }] + }, { + "ID": 12418, + "SourceStructureID": 13056, + "TargetStructureID": 475, + "Label": "13056-475 via Conventional from 46081 -> 46082", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46081, + "TargetID": 46082, + "Directional": true + }] + }, { + "ID": 12419, + "SourceStructureID": 13130, + "TargetStructureID": 59737, + "Label": "13130-59737 via Conventional from 59739 -> 59740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59739, + "TargetID": 59740, + "Directional": true + }] + }, { + "ID": 12420, + "SourceStructureID": 13134, + "TargetStructureID": 488, + "Label": "13134-488 via Conventional from 122103 -> 71301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122103, + "TargetID": 71301, + "Directional": true + }] + }, { + "ID": 12421, + "SourceStructureID": 13134, + "TargetStructureID": 4850, + "Label": "13134-4850 via Conventional from 19444 -> 19443", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 19444, + "TargetID": 19443, + "Directional": true + }] + }, { + "ID": 12422, + "SourceStructureID": 13150, + "TargetStructureID": 5498, + "Label": "13150-5498 via Conventional from 40405 -> 40404", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40405, + "TargetID": 40404, + "Directional": true + }] + }, { + "ID": 12423, + "SourceStructureID": 13159, + "TargetStructureID": 4850, + "Label": "13159-4850 via Conventional from 20768 -> 14518", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20768, + "TargetID": 14518, + "Directional": true + }] + }, { + "ID": 12424, + "SourceStructureID": 13180, + "TargetStructureID": 6997, + "Label": "13180-6997 via Conventional from 21895 -> 6998", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21895, + "TargetID": 6998, + "Directional": true + }] + }, { + "ID": 12425, + "SourceStructureID": 13215, + "TargetStructureID": 4569, + "Label": "13215-4569 via Conventional from 15125 -> 4737", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15125, + "TargetID": 4737, + "Directional": true + }] + }, { + "ID": 12426, + "SourceStructureID": 13313, + "TargetStructureID": 518, + "Label": "13313-518 via Conventional from 37186 -> 3454, 37189 -> 3482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37186, + "TargetID": 3454, + "Directional": true + }, { + "SourceID": 37189, + "TargetID": 3482, + "Directional": true + }] + }, { + "ID": 12427, + "SourceStructureID": 13444, + "TargetStructureID": 419, + "Label": "13444-419 via Conventional from 13446 -> 10160", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 13446, + "TargetID": 10160, + "Directional": true + }] + }, { + "ID": 12428, + "SourceStructureID": 13444, + "TargetStructureID": 476, + "Label": "13444-476 via Conventional from 13447 -> 10458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 13447, + "TargetID": 10458, + "Directional": true + }] + }, { + "ID": 12429, + "SourceStructureID": 13444, + "TargetStructureID": 518, + "Label": "13444-518 via Conventional from 13445 -> 3382", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 13445, + "TargetID": 3382, + "Directional": true + }] + }, { + "ID": 12430, + "SourceStructureID": 13448, + "TargetStructureID": 4943, + "Label": "13448-4943 via Conventional from 21344 -> 13441", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21344, + "TargetID": 13441, + "Directional": true + }] + }, { + "ID": 12431, + "SourceStructureID": 13469, + "TargetStructureID": 3679, + "Label": "13469-3679 via Ribbon Synapse from 13472 -> 13468", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13472, + "TargetID": 13468, + "Directional": true + }] + }, { + "ID": 12432, + "SourceStructureID": 13485, + "TargetStructureID": 469, + "Label": "13485-469 via Conventional from 30509 -> 4651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30509, + "TargetID": 4651, + "Directional": true + }] + }, { + "ID": 12433, + "SourceStructureID": 13499, + "TargetStructureID": 4567, + "Label": "13499-4567 via Conventional from 40589 -> 21329", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40589, + "TargetID": 21329, + "Directional": true + }] + }, { + "ID": 12434, + "SourceStructureID": 13521, + "TargetStructureID": 4835, + "Label": "13521-4835 via Ribbon Synapse from 13522 -> 13520", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 13522, + "TargetID": 13520, + "Directional": true + }] + }, { + "ID": 12435, + "SourceStructureID": 13624, + "TargetStructureID": 11229, + "Label": "13624-11229 via Conventional from 15328 -> 15329, 15330 -> 15331, 15333 -> 15332", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15328, + "TargetID": 15329, + "Directional": true + }, { + "SourceID": 15330, + "TargetID": 15331, + "Directional": true + }, { + "SourceID": 15333, + "TargetID": 15332, + "Directional": true + }] + }, { + "ID": 12436, + "SourceStructureID": 14034, + "TargetStructureID": 13858, + "Label": "14034-13858 via Ribbon Synapse from 14040 -> 14024, 18858 -> 14017", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14040, + "TargetID": 14024, + "Directional": true + }, { + "SourceID": 18858, + "TargetID": 14017, + "Directional": true + }] + }, { + "ID": 12437, + "SourceStructureID": 14291, + "TargetStructureID": 4850, + "Label": "14291-4850 via Conventional from 14299 -> 14290", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14299, + "TargetID": 14290, + "Directional": true + }] + }, { + "ID": 12438, + "SourceStructureID": 14293, + "TargetStructureID": 5497, + "Label": "14293-5497 via Ribbon Synapse from 40210 -> 62550", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40210, + "TargetID": 62550, + "Directional": true + }] + }, { + "ID": 12439, + "SourceStructureID": 14293, + "TargetStructureID": 8575, + "Label": "14293-8575 via BC Conventional Synapse from 61554 -> 61553", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61554, + "TargetID": 61553, + "Directional": true + }] + }, { + "ID": 12440, + "SourceStructureID": 14293, + "TargetStructureID": 8575, + "Label": "14293-8575 via Ribbon Synapse from 40215 -> 61553", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40215, + "TargetID": 61553, + "Directional": true + }] + }, { + "ID": 12441, + "SourceStructureID": 14293, + "TargetStructureID": 14291, + "Label": "14293-14291 via Ribbon Synapse from 14294 -> 14292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 14294, + "TargetID": 14292, + "Directional": true + }] + }, { + "ID": 12442, + "SourceStructureID": 14293, + "TargetStructureID": 61500, + "Label": "14293-61500 via Ribbon Synapse from 40218 -> 61506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40218, + "TargetID": 61506, + "Directional": true + }] + }, { + "ID": 12443, + "SourceStructureID": 14607, + "TargetStructureID": 5422, + "Label": "14607-5422 via Conventional from 74114 -> 74113", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74114, + "TargetID": 74113, + "Directional": true + }] + }, { + "ID": 12444, + "SourceStructureID": 14615, + "TargetStructureID": 3679, + "Label": "14615-3679 via Ribbon Synapse from 66126 -> 7989, 66127 -> 7988, 66128 -> 7996, 66129 -> 7999, 76225 -> 5207, 132305 -> 132306", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66126, + "TargetID": 7989, + "Directional": true + }, { + "SourceID": 66127, + "TargetID": 7988, + "Directional": true + }, { + "SourceID": 66128, + "TargetID": 7996, + "Directional": true + }, { + "SourceID": 66129, + "TargetID": 7999, + "Directional": true + }, { + "SourceID": 76225, + "TargetID": 5207, + "Directional": true + }, { + "SourceID": 132305, + "TargetID": 132306, + "Directional": true + }] + }, { + "ID": 12445, + "SourceStructureID": 14615, + "TargetStructureID": 5394, + "Label": "14615-5394 via Ribbon Synapse from 76801 -> 76803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76801, + "TargetID": 76803, + "Directional": true + }] + }, { + "ID": 12446, + "SourceStructureID": 14615, + "TargetStructureID": 5402, + "Label": "14615-5402 via Ribbon Synapse from 76594 -> 76599", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76594, + "TargetID": 76599, + "Directional": true + }] + }, { + "ID": 12447, + "SourceStructureID": 14615, + "TargetStructureID": 12897, + "Label": "14615-12897 via Ribbon Synapse from 76213 -> 24747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76213, + "TargetID": 24747, + "Directional": true + }] + }, { + "ID": 12448, + "SourceStructureID": 14615, + "TargetStructureID": 76206, + "Label": "14615-76206 via Ribbon Synapse from 76205 -> 76209", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76205, + "TargetID": 76209, + "Directional": true + }] + }, { + "ID": 12449, + "SourceStructureID": 14615, + "TargetStructureID": 76207, + "Label": "14615-76207 via Ribbon Synapse from 76205 -> 76208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76205, + "TargetID": 76208, + "Directional": true + }] + }, { + "ID": 12450, + "SourceStructureID": 14615, + "TargetStructureID": 76214, + "Label": "14615-76214 via Ribbon Synapse from 76213 -> 76215, 76225 -> 76226", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76213, + "TargetID": 76215, + "Directional": true + }, { + "SourceID": 76225, + "TargetID": 76226, + "Directional": true + }] + }, { + "ID": 12451, + "SourceStructureID": 14615, + "TargetStructureID": 76595, + "Label": "14615-76595 via Ribbon Synapse from 76594 -> 76597", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76594, + "TargetID": 76597, + "Directional": true + }] + }, { + "ID": 12452, + "SourceStructureID": 14615, + "TargetStructureID": 76829, + "Label": "14615-76829 via Ribbon Synapse from 76841 -> 76842", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76841, + "TargetID": 76842, + "Directional": true + }] + }, { + "ID": 12453, + "SourceStructureID": 14615, + "TargetStructureID": 76832, + "Label": "14615-76832 via Ribbon Synapse from 76845 -> 76848", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76845, + "TargetID": 76848, + "Directional": true + }] + }, { + "ID": 12454, + "SourceStructureID": 14615, + "TargetStructureID": 76849, + "Label": "14615-76849 via Ribbon Synapse from 76845 -> 76850", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76845, + "TargetID": 76850, + "Directional": true + }] + }, { + "ID": 12455, + "SourceStructureID": 14615, + "TargetStructureID": 76868, + "Label": "14615-76868 via Ribbon Synapse from 25317 -> 76869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25317, + "TargetID": 76869, + "Directional": true + }] + }, { + "ID": 12456, + "SourceStructureID": 14615, + "TargetStructureID": 76901, + "Label": "14615-76901 via Ribbon Synapse from 76223 -> 76902, 76224 -> 76903", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76223, + "TargetID": 76902, + "Directional": true + }, { + "SourceID": 76224, + "TargetID": 76903, + "Directional": true + }] + }, { + "ID": 12457, + "SourceStructureID": 14615, + "TargetStructureID": 87562, + "Label": "14615-87562 via Ribbon Synapse from 87564 -> 87563", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87564, + "TargetID": 87563, + "Directional": true + }] + }, { + "ID": 12458, + "SourceStructureID": 14725, + "TargetStructureID": 171, + "Label": "14725-171 via Conventional from 14726 -> 14734, 14728 -> 87728, 14729 -> 87729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14726, + "TargetID": 14734, + "Directional": true + }, { + "SourceID": 14728, + "TargetID": 87728, + "Directional": true + }, { + "SourceID": 14729, + "TargetID": 87729, + "Directional": true + }] + }, { + "ID": 12459, + "SourceStructureID": 14894, + "TargetStructureID": 606, + "Label": "14894-606 via Conventional from 14910 -> 52335", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 14910, + "TargetID": 52335, + "Directional": true + }] + }, { + "ID": 12460, + "SourceStructureID": 15100, + "TargetStructureID": 304, + "Label": "15100-304 via Ribbon Synapse from 17117 -> 17628, 17206 -> 17207, 17626 -> 17625, 17955 -> 17954, 18240 -> 18239", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17117, + "TargetID": 17628, + "Directional": true + }, { + "SourceID": 17206, + "TargetID": 17207, + "Directional": true + }, { + "SourceID": 17626, + "TargetID": 17625, + "Directional": true + }, { + "SourceID": 17955, + "TargetID": 17954, + "Directional": true + }, { + "SourceID": 18240, + "TargetID": 18239, + "Directional": true + }] + }, { + "ID": 12461, + "SourceStructureID": 15100, + "TargetStructureID": 514, + "Label": "15100-514 via Ribbon Synapse from 15101 -> 15099, 17214 -> 17215, 17219 -> 17220, 18287 -> 13786, 18289 -> 18288, 19059 -> 19063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15101, + "TargetID": 15099, + "Directional": true + }, { + "SourceID": 17214, + "TargetID": 17215, + "Directional": true + }, { + "SourceID": 17219, + "TargetID": 17220, + "Directional": true + }, { + "SourceID": 18287, + "TargetID": 13786, + "Directional": true + }, { + "SourceID": 18289, + "TargetID": 18288, + "Directional": true + }, { + "SourceID": 19059, + "TargetID": 19063, + "Directional": true + }] + }, { + "ID": 12462, + "SourceStructureID": 15100, + "TargetStructureID": 2610, + "Label": "15100-2610 via Ribbon Synapse from 16398 -> 16397, 17116 -> 18223, 17118 -> 18224, 17172 -> 17504, 17179 -> 17178, 17181 -> 17180, 17227 -> 17224, 17622 -> 2937, 17963 -> 17964, 17966 -> 17965, 17997 -> 15051, 18227 -> 18226, 18230 -> 18231, 18237 -> 18236, 33787 -> 9407", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16398, + "TargetID": 16397, + "Directional": true + }, { + "SourceID": 17116, + "TargetID": 18223, + "Directional": true + }, { + "SourceID": 17118, + "TargetID": 18224, + "Directional": true + }, { + "SourceID": 17172, + "TargetID": 17504, + "Directional": true + }, { + "SourceID": 17179, + "TargetID": 17178, + "Directional": true + }, { + "SourceID": 17181, + "TargetID": 17180, + "Directional": true + }, { + "SourceID": 17227, + "TargetID": 17224, + "Directional": true + }, { + "SourceID": 17622, + "TargetID": 2937, + "Directional": true + }, { + "SourceID": 17963, + "TargetID": 17964, + "Directional": true + }, { + "SourceID": 17966, + "TargetID": 17965, + "Directional": true + }, { + "SourceID": 17997, + "TargetID": 15051, + "Directional": true + }, { + "SourceID": 18227, + "TargetID": 18226, + "Directional": true + }, { + "SourceID": 18230, + "TargetID": 18231, + "Directional": true + }, { + "SourceID": 18237, + "TargetID": 18236, + "Directional": true + }, { + "SourceID": 33787, + "TargetID": 9407, + "Directional": true + }] + }, { + "ID": 12463, + "SourceStructureID": 15100, + "TargetStructureID": 5303, + "Label": "15100-5303 via Ribbon Synapse from 18289 -> 102936", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18289, + "TargetID": 102936, + "Directional": true + }] + }, { + "ID": 12464, + "SourceStructureID": 15130, + "TargetStructureID": 168, + "Label": "15130-168 via Conventional from 15134 -> 4124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15134, + "TargetID": 4124, + "Directional": true + }] + }, { + "ID": 12465, + "SourceStructureID": 15377, + "TargetStructureID": 4850, + "Label": "15377-4850 via Conventional from 15379 -> 15387", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 15379, + "TargetID": 15387, + "Directional": true + }] + }, { + "ID": 12466, + "SourceStructureID": 15377, + "TargetStructureID": 10945, + "Label": "15377-10945 via Conventional from 19275 -> 19276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 19275, + "TargetID": 19276, + "Directional": true + }] + }, { + "ID": 12467, + "SourceStructureID": 15475, + "TargetStructureID": 5281, + "Label": "15475-5281 via Conventional from 43137 -> 43136", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43137, + "TargetID": 43136, + "Directional": true + }] + }, { + "ID": 12468, + "SourceStructureID": 15614, + "TargetStructureID": 4876, + "Label": "15614-4876 via Conventional from 42512 -> 42511", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42512, + "TargetID": 42511, + "Directional": true + }] + }, { + "ID": 12469, + "SourceStructureID": 15653, + "TargetStructureID": 9260, + "Label": "15653-9260 via Conventional from 129703 -> 129702", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129703, + "TargetID": 129702, + "Directional": true + }] + }, { + "ID": 12470, + "SourceStructureID": 15942, + "TargetStructureID": 304, + "Label": "15942-304 via Ribbon Synapse from 17960 -> 17686, 19107 -> 17685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17960, + "TargetID": 17686, + "Directional": true + }, { + "SourceID": 19107, + "TargetID": 17685, + "Directional": true + }] + }, { + "ID": 12471, + "SourceStructureID": 15942, + "TargetStructureID": 410, + "Label": "15942-410 via Ribbon Synapse from 15116 -> 15114, 16505 -> 15939, 16513 -> 16511, 16801 -> 16800, 17265 -> 17266, 17498 -> 17497, 18525 -> 18526, 18527 -> 18528, 18531 -> 18530, 19121 -> 22672, 19121 -> 23117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15116, + "TargetID": 15114, + "Directional": true + }, { + "SourceID": 16505, + "TargetID": 15939, + "Directional": true + }, { + "SourceID": 16513, + "TargetID": 16511, + "Directional": true + }, { + "SourceID": 16801, + "TargetID": 16800, + "Directional": true + }, { + "SourceID": 17265, + "TargetID": 17266, + "Directional": true + }, { + "SourceID": 17498, + "TargetID": 17497, + "Directional": true + }, { + "SourceID": 18525, + "TargetID": 18526, + "Directional": true + }, { + "SourceID": 18527, + "TargetID": 18528, + "Directional": true + }, { + "SourceID": 18531, + "TargetID": 18530, + "Directional": true + }, { + "SourceID": 19121, + "TargetID": 22672, + "Directional": true + }, { + "SourceID": 19121, + "TargetID": 23117, + "Directional": true + }] + }, { + "ID": 12472, + "SourceStructureID": 15942, + "TargetStructureID": 476, + "Label": "15942-476 via Ribbon Synapse from 16507 -> 16508, 16507 -> 16774, 17374 -> 17375, 17377 -> 17376, 17378 -> 16503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16507, + "TargetID": 16508, + "Directional": true + }, { + "SourceID": 16507, + "TargetID": 16774, + "Directional": true + }, { + "SourceID": 17374, + "TargetID": 17375, + "Directional": true + }, { + "SourceID": 17377, + "TargetID": 17376, + "Directional": true + }, { + "SourceID": 17378, + "TargetID": 16503, + "Directional": true + }] + }, { + "ID": 12473, + "SourceStructureID": 15942, + "TargetStructureID": 514, + "Label": "15942-514 via Ribbon Synapse from 16401 -> 16400", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16401, + "TargetID": 16400, + "Directional": true + }] + }, { + "ID": 12474, + "SourceStructureID": 15942, + "TargetStructureID": 591, + "Label": "15942-591 via Ribbon Synapse from 15962 -> 10290, 15963 -> 15964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15962, + "TargetID": 10290, + "Directional": true + }, { + "SourceID": 15963, + "TargetID": 15964, + "Directional": true + }] + }, { + "ID": 12475, + "SourceStructureID": 15942, + "TargetStructureID": 2610, + "Label": "15942-2610 via Ribbon Synapse from 15962 -> 15965, 15966 -> 15941, 16765 -> 16399, 16788 -> 16779, 17268 -> 17269, 17959 -> 2952, 18414 -> 2956, 66158 -> 66160", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 15962, + "TargetID": 15965, + "Directional": true + }, { + "SourceID": 15966, + "TargetID": 15941, + "Directional": true + }, { + "SourceID": 16765, + "TargetID": 16399, + "Directional": true + }, { + "SourceID": 16788, + "TargetID": 16779, + "Directional": true + }, { + "SourceID": 17268, + "TargetID": 17269, + "Directional": true + }, { + "SourceID": 17959, + "TargetID": 2952, + "Directional": true + }, { + "SourceID": 18414, + "TargetID": 2956, + "Directional": true + }, { + "SourceID": 66158, + "TargetID": 66160, + "Directional": true + }] + }, { + "ID": 12476, + "SourceStructureID": 15942, + "TargetStructureID": 8990, + "Label": "15942-8990 via Ribbon Synapse from 18414 -> 95928, 19106 -> 95931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18414, + "TargetID": 95928, + "Directional": true + }, { + "SourceID": 19106, + "TargetID": 95931, + "Directional": true + }] + }, { + "ID": 12477, + "SourceStructureID": 15976, + "TargetStructureID": 5442, + "Label": "15976-5442 via Ribbon Synapse from 55131 -> 55130", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55131, + "TargetID": 55130, + "Directional": true + }] + }, { + "ID": 12478, + "SourceStructureID": 15976, + "TargetStructureID": 57487, + "Label": "15976-57487 via Ribbon Synapse from 57425 -> 57489", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57425, + "TargetID": 57489, + "Directional": true + }] + }, { + "ID": 12479, + "SourceStructureID": 15976, + "TargetStructureID": 93168, + "Label": "15976-93168 via BC Conventional Synapse from 93164 -> 93169", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93164, + "TargetID": 93169, + "Directional": true + }] + }, { + "ID": 12480, + "SourceStructureID": 15976, + "TargetStructureID": 93281, + "Label": "15976-93281 via Ribbon Synapse from 57435 -> 93282", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 57435, + "TargetID": 93282, + "Directional": true + }] + }, { + "ID": 12481, + "SourceStructureID": 15977, + "TargetStructureID": 4890, + "Label": "15977-4890 via Ribbon Synapse from 33953 -> 7916", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33953, + "TargetID": 7916, + "Directional": true + }] + }, { + "ID": 12482, + "SourceStructureID": 15977, + "TargetStructureID": 5442, + "Label": "15977-5442 via Ribbon Synapse from 73553 -> 73555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73553, + "TargetID": 73555, + "Directional": true + }] + }, { + "ID": 12483, + "SourceStructureID": 15977, + "TargetStructureID": 8579, + "Label": "15977-8579 via Ribbon Synapse from 62689 -> 62688, 62695 -> 62694, 62697 -> 62696, 62940 -> 62939, 62944 -> 62943", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62689, + "TargetID": 62688, + "Directional": true + }, { + "SourceID": 62695, + "TargetID": 62694, + "Directional": true + }, { + "SourceID": 62697, + "TargetID": 62696, + "Directional": true + }, { + "SourceID": 62940, + "TargetID": 62939, + "Directional": true + }, { + "SourceID": 62944, + "TargetID": 62943, + "Directional": true + }] + }, { + "ID": 12484, + "SourceStructureID": 15977, + "TargetStructureID": 8588, + "Label": "15977-8588 via BC Conventional Synapse from 118439 -> 118438", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118439, + "TargetID": 118438, + "Directional": true + }] + }, { + "ID": 12485, + "SourceStructureID": 15977, + "TargetStructureID": 29198, + "Label": "15977-29198 via BC Conventional Synapse from 117188 -> 117187", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117188, + "TargetID": 117187, + "Directional": true + }] + }, { + "ID": 12486, + "SourceStructureID": 15977, + "TargetStructureID": 29198, + "Label": "15977-29198 via Ribbon Synapse from 33946 -> 29230, 33973 -> 33974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33946, + "TargetID": 29230, + "Directional": true + }, { + "SourceID": 33973, + "TargetID": 33974, + "Directional": true + }] + }, { + "ID": 12487, + "SourceStructureID": 15977, + "TargetStructureID": 35406, + "Label": "15977-35406 via Ribbon Synapse from 38301 -> 38297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38301, + "TargetID": 38297, + "Directional": true + }] + }, { + "ID": 12488, + "SourceStructureID": 15977, + "TargetStructureID": 60590, + "Label": "15977-60590 via Ribbon Synapse from 60592 -> 60591", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60592, + "TargetID": 60591, + "Directional": true + }] + }, { + "ID": 12489, + "SourceStructureID": 15977, + "TargetStructureID": 123573, + "Label": "15977-123573 via Ribbon Synapse from 56333 -> 123585, 56339 -> 123588", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56333, + "TargetID": 123585, + "Directional": true + }, { + "SourceID": 56339, + "TargetID": 123588, + "Directional": true + }] + }, { + "ID": 12490, + "SourceStructureID": 15979, + "TargetStructureID": 284, + "Label": "15979-284 via Ribbon Synapse from 29490 -> 29489, 29492 -> 29491", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29490, + "TargetID": 29489, + "Directional": true + }, { + "SourceID": 29492, + "TargetID": 29491, + "Directional": true + }] + }, { + "ID": 12491, + "SourceStructureID": 15979, + "TargetStructureID": 591, + "Label": "15979-591 via Ribbon Synapse from 33788 -> 36451, 36450 -> 36449", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33788, + "TargetID": 36451, + "Directional": true + }, { + "SourceID": 36450, + "TargetID": 36449, + "Directional": true + }] + }, { + "ID": 12492, + "SourceStructureID": 15979, + "TargetStructureID": 6153, + "Label": "15979-6153 via Ribbon Synapse from 29475 -> 29474, 29476 -> 29477, 33788 -> 33789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29475, + "TargetID": 29474, + "Directional": true + }, { + "SourceID": 29476, + "TargetID": 29477, + "Directional": true + }, { + "SourceID": 33788, + "TargetID": 33789, + "Directional": true + }] + }, { + "ID": 12493, + "SourceStructureID": 16002, + "TargetStructureID": 170, + "Label": "16002-170 via Conventional from 16009 -> 90435, 16011 -> 16012", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16009, + "TargetID": 90435, + "Directional": true + }, { + "SourceID": 16011, + "TargetID": 16012, + "Directional": true + }] + }, { + "ID": 12494, + "SourceStructureID": 16002, + "TargetStructureID": 4569, + "Label": "16002-4569 via Conventional from 16006 -> 16007, 66654 -> 30841", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 16006, + "TargetID": 16007, + "Directional": true + }, { + "SourceID": 66654, + "TargetID": 30841, + "Directional": true + }] + }, { + "ID": 12495, + "SourceStructureID": 16002, + "TargetStructureID": 21299, + "Label": "16002-21299 via Conventional from 46340 -> 46339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46340, + "TargetID": 46339, + "Directional": true + }] + }, { + "ID": 12496, + "SourceStructureID": 16002, + "TargetStructureID": 66656, + "Label": "16002-66656 via Conventional from 66655 -> 66657", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66655, + "TargetID": 66657, + "Directional": true + }] + }, { + "ID": 12497, + "SourceStructureID": 16026, + "TargetStructureID": 5117, + "Label": "16026-5117 via Ribbon Synapse from 24094 -> 65498, 24095 -> 65498, 25542 -> 66349, 25546 -> 66348, 25556 -> 65502, 68158 -> 68159, 91047 -> 134610", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24094, + "TargetID": 65498, + "Directional": true + }, { + "SourceID": 24095, + "TargetID": 65498, + "Directional": true + }, { + "SourceID": 25542, + "TargetID": 66349, + "Directional": true + }, { + "SourceID": 25546, + "TargetID": 66348, + "Directional": true + }, { + "SourceID": 25556, + "TargetID": 65502, + "Directional": true + }, { + "SourceID": 68158, + "TargetID": 68159, + "Directional": true + }, { + "SourceID": 91047, + "TargetID": 134610, + "Directional": true + }] + }, { + "ID": 12498, + "SourceStructureID": 16026, + "TargetStructureID": 5282, + "Label": "16026-5282 via Ribbon Synapse from 22336 -> 87547, 134535 -> 87547", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22336, + "TargetID": 87547, + "Directional": true + }, { + "SourceID": 134535, + "TargetID": 87547, + "Directional": true + }] + }, { + "ID": 12499, + "SourceStructureID": 16026, + "TargetStructureID": 5374, + "Label": "16026-5374 via Ribbon Synapse from 25517 -> 69002", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25517, + "TargetID": 69002, + "Directional": true + }] + }, { + "ID": 12500, + "SourceStructureID": 16026, + "TargetStructureID": 5485, + "Label": "16026-5485 via Ribbon Synapse from 25284 -> 134508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25284, + "TargetID": 134508, + "Directional": true + }] + }, { + "ID": 12501, + "SourceStructureID": 16026, + "TargetStructureID": 8033, + "Label": "16026-8033 via Ribbon Synapse from 25290 -> 134483, 25291 -> 134483, 25673 -> 134747", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25290, + "TargetID": 134483, + "Directional": true + }, { + "SourceID": 25291, + "TargetID": 134483, + "Directional": true + }, { + "SourceID": 25673, + "TargetID": 134747, + "Directional": true + }] + }, { + "ID": 12502, + "SourceStructureID": 16026, + "TargetStructureID": 8579, + "Label": "16026-8579 via Ribbon Synapse from 24087 -> 134547, 25972 -> 62866, 91203 -> 19799, 124822 -> 134548, 134326 -> 19798, 134555 -> 62864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24087, + "TargetID": 134547, + "Directional": true + }, { + "SourceID": 25972, + "TargetID": 62866, + "Directional": true + }, { + "SourceID": 91203, + "TargetID": 19799, + "Directional": true + }, { + "SourceID": 124822, + "TargetID": 134548, + "Directional": true + }, { + "SourceID": 134326, + "TargetID": 19798, + "Directional": true + }, { + "SourceID": 134555, + "TargetID": 62864, + "Directional": true + }] + }, { + "ID": 12503, + "SourceStructureID": 16026, + "TargetStructureID": 8720, + "Label": "16026-8720 via Ribbon Synapse from 63148 -> 63146", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63148, + "TargetID": 63146, + "Directional": true + }] + }, { + "ID": 12504, + "SourceStructureID": 16026, + "TargetStructureID": 12208, + "Label": "16026-12208 via Ribbon Synapse from 38654 -> 22369", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38654, + "TargetID": 22369, + "Directional": true + }] + }, { + "ID": 12505, + "SourceStructureID": 16026, + "TargetStructureID": 12897, + "Label": "16026-12897 via Ribbon Synapse from 24596 -> 25703, 25486 -> 134388, 25487 -> 134388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24596, + "TargetID": 25703, + "Directional": true + }, { + "SourceID": 25486, + "TargetID": 134388, + "Directional": true + }, { + "SourceID": 25487, + "TargetID": 134388, + "Directional": true + }] + }, { + "ID": 12506, + "SourceStructureID": 16026, + "TargetStructureID": 20537, + "Label": "16026-20537 via Ribbon Synapse from 22326 -> 24133, 25757 -> 24133", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22326, + "TargetID": 24133, + "Directional": true + }, { + "SourceID": 25757, + "TargetID": 24133, + "Directional": true + }] + }, { + "ID": 12507, + "SourceStructureID": 16026, + "TargetStructureID": 29277, + "Label": "16026-29277 via Ribbon Synapse from 134594 -> 123165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134594, + "TargetID": 123165, + "Directional": true + }] + }, { + "ID": 12508, + "SourceStructureID": 16026, + "TargetStructureID": 31024, + "Label": "16026-31024 via BC Conventional Synapse from 134607 -> 124827", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134607, + "TargetID": 124827, + "Directional": true + }] + }, { + "ID": 12509, + "SourceStructureID": 16026, + "TargetStructureID": 31024, + "Label": "16026-31024 via Ribbon Synapse from 25558 -> 31025, 25714 -> 31031, 134590 -> 134589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25558, + "TargetID": 31025, + "Directional": true + }, { + "SourceID": 25714, + "TargetID": 31031, + "Directional": true + }, { + "SourceID": 134590, + "TargetID": 134589, + "Directional": true + }] + }, { + "ID": 12510, + "SourceStructureID": 16026, + "TargetStructureID": 31161, + "Label": "16026-31161 via Ribbon Synapse from 67939 -> 134772, 67940 -> 134767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67939, + "TargetID": 134772, + "Directional": true + }, { + "SourceID": 67940, + "TargetID": 134767, + "Directional": true + }] + }, { + "ID": 12511, + "SourceStructureID": 16026, + "TargetStructureID": 40947, + "Label": "16026-40947 via Ribbon Synapse from 25563 -> 40950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25563, + "TargetID": 40950, + "Directional": true + }] + }, { + "ID": 12512, + "SourceStructureID": 16026, + "TargetStructureID": 54078, + "Label": "16026-54078 via BC Conventional Synapse from 124779 -> 54112", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124779, + "TargetID": 54112, + "Directional": true + }] + }, { + "ID": 12513, + "SourceStructureID": 16026, + "TargetStructureID": 54078, + "Label": "16026-54078 via Ribbon Synapse from 25272 -> 134511, 67849 -> 67848, 134510 -> 134511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25272, + "TargetID": 134511, + "Directional": true + }, { + "SourceID": 67849, + "TargetID": 67848, + "Directional": true + }, { + "SourceID": 134510, + "TargetID": 134511, + "Directional": true + }] + }, { + "ID": 12514, + "SourceStructureID": 16026, + "TargetStructureID": 61836, + "Label": "16026-61836 via Ribbon Synapse from 25656 -> 68115, 67939 -> 68114", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25656, + "TargetID": 68115, + "Directional": true + }, { + "SourceID": 67939, + "TargetID": 68114, + "Directional": true + }] + }, { + "ID": 12515, + "SourceStructureID": 16026, + "TargetStructureID": 61864, + "Label": "16026-61864 via Ribbon Synapse from 66050 -> 66068", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66050, + "TargetID": 66068, + "Directional": true + }] + }, { + "ID": 12516, + "SourceStructureID": 16026, + "TargetStructureID": 61864, + "Label": "16026-61864 via Unknown from 134704 -> 66486", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 134704, + "TargetID": 66486, + "Directional": true + }] + }, { + "ID": 12517, + "SourceStructureID": 16026, + "TargetStructureID": 65324, + "Label": "16026-65324 via Ribbon Synapse from 25595 -> 134830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25595, + "TargetID": 134830, + "Directional": true + }] + }, { + "ID": 12518, + "SourceStructureID": 16026, + "TargetStructureID": 65536, + "Label": "16026-65536 via BC Conventional Synapse from 67086 -> 67085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67086, + "TargetID": 67085, + "Directional": true + }] + }, { + "ID": 12519, + "SourceStructureID": 16026, + "TargetStructureID": 65536, + "Label": "16026-65536 via Ribbon Synapse from 24087 -> 67076, 134555 -> 134554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24087, + "TargetID": 67076, + "Directional": true + }, { + "SourceID": 134555, + "TargetID": 134554, + "Directional": true + }] + }, { + "ID": 12520, + "SourceStructureID": 16026, + "TargetStructureID": 65538, + "Label": "16026-65538 via Ribbon Synapse from 25733 -> 65544", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25733, + "TargetID": 65544, + "Directional": true + }] + }, { + "ID": 12521, + "SourceStructureID": 16026, + "TargetStructureID": 65864, + "Label": "16026-65864 via BC Conventional Synapse from 65874 -> 65875", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65874, + "TargetID": 65875, + "Directional": true + }] + }, { + "ID": 12522, + "SourceStructureID": 16026, + "TargetStructureID": 65864, + "Label": "16026-65864 via Ribbon Synapse from 25730 -> 65871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25730, + "TargetID": 65871, + "Directional": true + }] + }, { + "ID": 12523, + "SourceStructureID": 16026, + "TargetStructureID": 66031, + "Label": "16026-66031 via Ribbon Synapse from 66050 -> 66049", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66050, + "TargetID": 66049, + "Directional": true + }] + }, { + "ID": 12524, + "SourceStructureID": 16026, + "TargetStructureID": 66073, + "Label": "16026-66073 via Ribbon Synapse from 25667 -> 66083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25667, + "TargetID": 66083, + "Directional": true + }] + }, { + "ID": 12525, + "SourceStructureID": 16026, + "TargetStructureID": 66111, + "Label": "16026-66111 via Ribbon Synapse from 25601 -> 134736, 25611 -> 134741, 25662 -> 68589", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25601, + "TargetID": 134736, + "Directional": true + }, { + "SourceID": 25611, + "TargetID": 134741, + "Directional": true + }, { + "SourceID": 25662, + "TargetID": 68589, + "Directional": true + }] + }, { + "ID": 12526, + "SourceStructureID": 16026, + "TargetStructureID": 66114, + "Label": "16026-66114 via Ribbon Synapse from 25605 -> 134800, 25606 -> 66118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25605, + "TargetID": 134800, + "Directional": true + }, { + "SourceID": 25606, + "TargetID": 66118, + "Directional": true + }] + }, { + "ID": 12527, + "SourceStructureID": 16026, + "TargetStructureID": 66795, + "Label": "16026-66795 via Ribbon Synapse from 91047 -> 134611", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91047, + "TargetID": 134611, + "Directional": true + }] + }, { + "ID": 12528, + "SourceStructureID": 16026, + "TargetStructureID": 66828, + "Label": "16026-66828 via Ribbon Synapse from 25599 -> 82736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25599, + "TargetID": 82736, + "Directional": true + }] + }, { + "ID": 12529, + "SourceStructureID": 16026, + "TargetStructureID": 66888, + "Label": "16026-66888 via Ribbon Synapse from 25645 -> 66895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25645, + "TargetID": 66895, + "Directional": true + }] + }, { + "ID": 12530, + "SourceStructureID": 16026, + "TargetStructureID": 66966, + "Label": "16026-66966 via BC Conventional Synapse from 134575 -> 134574", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134575, + "TargetID": 134574, + "Directional": true + }] + }, { + "ID": 12531, + "SourceStructureID": 16026, + "TargetStructureID": 67045, + "Label": "16026-67045 via Ribbon Synapse from 25484 -> 134389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25484, + "TargetID": 134389, + "Directional": true + }] + }, { + "ID": 12532, + "SourceStructureID": 16026, + "TargetStructureID": 67354, + "Label": "16026-67354 via Ribbon Synapse from 25608 -> 92793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25608, + "TargetID": 92793, + "Directional": true + }] + }, { + "ID": 12533, + "SourceStructureID": 16026, + "TargetStructureID": 67361, + "Label": "16026-67361 via Ribbon Synapse from 25595 -> 134831, 25597 -> 130544, 25610 -> 130543, 125026 -> 134845, 125030 -> 134864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25595, + "TargetID": 134831, + "Directional": true + }, { + "SourceID": 25597, + "TargetID": 130544, + "Directional": true + }, { + "SourceID": 25610, + "TargetID": 130543, + "Directional": true + }, { + "SourceID": 125026, + "TargetID": 134845, + "Directional": true + }, { + "SourceID": 125030, + "TargetID": 134864, + "Directional": true + }] + }, { + "ID": 12534, + "SourceStructureID": 16026, + "TargetStructureID": 67595, + "Label": "16026-67595 via Ribbon Synapse from 24593 -> 134740, 25496 -> 67648, 25672 -> 67630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24593, + "TargetID": 134740, + "Directional": true + }, { + "SourceID": 25496, + "TargetID": 67648, + "Directional": true + }, { + "SourceID": 25672, + "TargetID": 67630, + "Directional": true + }] + }, { + "ID": 12535, + "SourceStructureID": 16026, + "TargetStructureID": 67793, + "Label": "16026-67793 via Ribbon Synapse from 67940 -> 134763", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67940, + "TargetID": 134763, + "Directional": true + }] + }, { + "ID": 12536, + "SourceStructureID": 16026, + "TargetStructureID": 67818, + "Label": "16026-67818 via BC Conventional Synapse from 124851 -> 124850", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124851, + "TargetID": 124850, + "Directional": true + }] + }, { + "ID": 12537, + "SourceStructureID": 16026, + "TargetStructureID": 67818, + "Label": "16026-67818 via Ribbon Synapse from 67917 -> 67912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67917, + "TargetID": 67912, + "Directional": true + }] + }, { + "ID": 12538, + "SourceStructureID": 16026, + "TargetStructureID": 67851, + "Label": "16026-67851 via Adherens from 67858 -> 67857", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 67858, + "TargetID": 67857, + "Directional": true + }] + }, { + "ID": 12539, + "SourceStructureID": 16026, + "TargetStructureID": 67933, + "Label": "16026-67933 via Ribbon Synapse from 67917 -> 67934, 67927 -> 134790, 67931 -> 67934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67917, + "TargetID": 67934, + "Directional": true + }, { + "SourceID": 67927, + "TargetID": 134790, + "Directional": true + }, { + "SourceID": 67931, + "TargetID": 67934, + "Directional": true + }] + }, { + "ID": 12540, + "SourceStructureID": 16026, + "TargetStructureID": 67941, + "Label": "16026-67941 via Ribbon Synapse from 67940 -> 134769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 67940, + "TargetID": 134769, + "Directional": true + }] + }, { + "ID": 12541, + "SourceStructureID": 16026, + "TargetStructureID": 68153, + "Label": "16026-68153 via Ribbon Synapse from 25487 -> 134387, 25516 -> 68185, 68157 -> 68155", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25487, + "TargetID": 134387, + "Directional": true + }, { + "SourceID": 25516, + "TargetID": 68185, + "Directional": true + }, { + "SourceID": 68157, + "TargetID": 68155, + "Directional": true + }] + }, { + "ID": 12542, + "SourceStructureID": 16026, + "TargetStructureID": 68531, + "Label": "16026-68531 via Ribbon Synapse from 25667 -> 134628", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25667, + "TargetID": 134628, + "Directional": true + }] + }, { + "ID": 12543, + "SourceStructureID": 16026, + "TargetStructureID": 68548, + "Label": "16026-68548 via Ribbon Synapse from 25289 -> 73481, 25477 -> 73483, 67925 -> 75356, 67926 -> 75356", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25289, + "TargetID": 73481, + "Directional": true + }, { + "SourceID": 25477, + "TargetID": 73483, + "Directional": true + }, { + "SourceID": 67925, + "TargetID": 75356, + "Directional": true + }, { + "SourceID": 67926, + "TargetID": 75356, + "Directional": true + }] + }, { + "ID": 12544, + "SourceStructureID": 16026, + "TargetStructureID": 80412, + "Label": "16026-80412 via BC Conventional Synapse from 134870 -> 134869", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134870, + "TargetID": 134869, + "Directional": true + }] + }, { + "ID": 12545, + "SourceStructureID": 16026, + "TargetStructureID": 82305, + "Label": "16026-82305 via Ribbon Synapse from 25548 -> 82333, 25662 -> 82327", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25548, + "TargetID": 82333, + "Directional": true + }, { + "SourceID": 25662, + "TargetID": 82327, + "Directional": true + }] + }, { + "ID": 12546, + "SourceStructureID": 16026, + "TargetStructureID": 83603, + "Label": "16026-83603 via Ribbon Synapse from 134616 -> 134617", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134616, + "TargetID": 134617, + "Directional": true + }] + }, { + "ID": 12547, + "SourceStructureID": 16026, + "TargetStructureID": 84260, + "Label": "16026-84260 via Ribbon Synapse from 22332 -> 134533, 25269 -> 134533, 25618 -> 84261, 25619 -> 84261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22332, + "TargetID": 134533, + "Directional": true + }, { + "SourceID": 25269, + "TargetID": 134533, + "Directional": true + }, { + "SourceID": 25618, + "TargetID": 84261, + "Directional": true + }, { + "SourceID": 25619, + "TargetID": 84261, + "Directional": true + }] + }, { + "ID": 12548, + "SourceStructureID": 16026, + "TargetStructureID": 84656, + "Label": "16026-84656 via BC Conventional Synapse from 124783 -> 134507", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124783, + "TargetID": 134507, + "Directional": true + }] + }, { + "ID": 12549, + "SourceStructureID": 16026, + "TargetStructureID": 91036, + "Label": "16026-91036 via Ribbon Synapse from 25556 -> 91038, 25558 -> 91037", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25556, + "TargetID": 91038, + "Directional": true + }, { + "SourceID": 25558, + "TargetID": 91037, + "Directional": true + }] + }, { + "ID": 12550, + "SourceStructureID": 16026, + "TargetStructureID": 91056, + "Label": "16026-91056 via Ribbon Synapse from 91055 -> 91057", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91055, + "TargetID": 91057, + "Directional": true + }] + }, { + "ID": 12551, + "SourceStructureID": 16026, + "TargetStructureID": 91060, + "Label": "16026-91060 via Ribbon Synapse from 91062 -> 91063, 134616 -> 91063", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91062, + "TargetID": 91063, + "Directional": true + }, { + "SourceID": 134616, + "TargetID": 91063, + "Directional": true + }] + }, { + "ID": 12552, + "SourceStructureID": 16026, + "TargetStructureID": 91073, + "Label": "16026-91073 via Ribbon Synapse from 91067 -> 91074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91067, + "TargetID": 91074, + "Directional": true + }] + }, { + "ID": 12553, + "SourceStructureID": 16026, + "TargetStructureID": 91080, + "Label": "16026-91080 via Ribbon Synapse from 91069 -> 91081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91069, + "TargetID": 91081, + "Directional": true + }] + }, { + "ID": 12554, + "SourceStructureID": 16026, + "TargetStructureID": 91085, + "Label": "16026-91085 via BC Conventional Synapse from 134622 -> 134621", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134622, + "TargetID": 134621, + "Directional": true + }] + }, { + "ID": 12555, + "SourceStructureID": 16026, + "TargetStructureID": 91090, + "Label": "16026-91090 via Ribbon Synapse from 91088 -> 91091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91088, + "TargetID": 91091, + "Directional": true + }] + }, { + "ID": 12556, + "SourceStructureID": 16026, + "TargetStructureID": 91092, + "Label": "16026-91092 via Ribbon Synapse from 91088 -> 91093", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91088, + "TargetID": 91093, + "Directional": true + }] + }, { + "ID": 12557, + "SourceStructureID": 16026, + "TargetStructureID": 91094, + "Label": "16026-91094 via Ribbon Synapse from 91050 -> 91095", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91050, + "TargetID": 91095, + "Directional": true + }] + }, { + "ID": 12558, + "SourceStructureID": 16026, + "TargetStructureID": 91098, + "Label": "16026-91098 via Ribbon Synapse from 25730 -> 134560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25730, + "TargetID": 134560, + "Directional": true + }] + }, { + "ID": 12559, + "SourceStructureID": 16026, + "TargetStructureID": 91111, + "Label": "16026-91111 via Ribbon Synapse from 25972 -> 91112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25972, + "TargetID": 91112, + "Directional": true + }] + }, { + "ID": 12560, + "SourceStructureID": 16026, + "TargetStructureID": 91118, + "Label": "16026-91118 via Ribbon Synapse from 91116 -> 91119", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91116, + "TargetID": 91119, + "Directional": true + }] + }, { + "ID": 12561, + "SourceStructureID": 16026, + "TargetStructureID": 91145, + "Label": "16026-91145 via Cistern Pre from 91144 -> 91146", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 91144, + "TargetID": 91146, + "Directional": true + }] + }, { + "ID": 12562, + "SourceStructureID": 16026, + "TargetStructureID": 91150, + "Label": "16026-91150 via Ribbon Synapse from 91149 -> 91152", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91149, + "TargetID": 91152, + "Directional": true + }] + }, { + "ID": 12563, + "SourceStructureID": 16026, + "TargetStructureID": 91167, + "Label": "16026-91167 via Ribbon Synapse from 91166 -> 91168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91166, + "TargetID": 91168, + "Directional": true + }] + }, { + "ID": 12564, + "SourceStructureID": 16026, + "TargetStructureID": 91240, + "Label": "16026-91240 via Ribbon Synapse from 114644 -> 114645", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 114644, + "TargetID": 114645, + "Directional": true + }] + }, { + "ID": 12565, + "SourceStructureID": 16026, + "TargetStructureID": 91533, + "Label": "16026-91533 via Ribbon Synapse from 25611 -> 134742", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25611, + "TargetID": 134742, + "Directional": true + }] + }, { + "ID": 12566, + "SourceStructureID": 16026, + "TargetStructureID": 92092, + "Label": "16026-92092 via BC Conventional Synapse from 92796 -> 92795", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92796, + "TargetID": 92795, + "Directional": true + }] + }, { + "ID": 12567, + "SourceStructureID": 16026, + "TargetStructureID": 92193, + "Label": "16026-92193 via BC Conventional Synapse from 134495 -> 92800", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134495, + "TargetID": 92800, + "Directional": true + }] + }, { + "ID": 12568, + "SourceStructureID": 16026, + "TargetStructureID": 92223, + "Label": "16026-92223 via BC Conventional Synapse from 134932 -> 134933", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134932, + "TargetID": 134933, + "Directional": true + }] + }, { + "ID": 12569, + "SourceStructureID": 16026, + "TargetStructureID": 92236, + "Label": "16026-92236 via Ribbon Synapse from 92817 -> 92818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92817, + "TargetID": 92818, + "Directional": true + }] + }, { + "ID": 12570, + "SourceStructureID": 16026, + "TargetStructureID": 92361, + "Label": "16026-92361 via Ribbon Synapse from 124810 -> 134354, 134376 -> 134377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124810, + "TargetID": 134354, + "Directional": true + }, { + "SourceID": 134376, + "TargetID": 134377, + "Directional": true + }] + }, { + "ID": 12571, + "SourceStructureID": 16026, + "TargetStructureID": 92372, + "Label": "16026-92372 via Ribbon Synapse from 25542 -> 134368", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25542, + "TargetID": 134368, + "Directional": true + }] + }, { + "ID": 12572, + "SourceStructureID": 16026, + "TargetStructureID": 92400, + "Label": "16026-92400 via Ribbon Synapse from 134360 -> 134361", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134360, + "TargetID": 134361, + "Directional": true + }] + }, { + "ID": 12573, + "SourceStructureID": 16026, + "TargetStructureID": 92403, + "Label": "16026-92403 via Ribbon Synapse from 134537 -> 134536", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134537, + "TargetID": 134536, + "Directional": true + }] + }, { + "ID": 12574, + "SourceStructureID": 16026, + "TargetStructureID": 92414, + "Label": "16026-92414 via BC Conventional Synapse from 134581 -> 134582", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134581, + "TargetID": 134582, + "Directional": true + }] + }, { + "ID": 12575, + "SourceStructureID": 16026, + "TargetStructureID": 92602, + "Label": "16026-92602 via Cistern Pre from 134880 -> 134881", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 134880, + "TargetID": 134881, + "Directional": true + }] + }, { + "ID": 12576, + "SourceStructureID": 16026, + "TargetStructureID": 92607, + "Label": "16026-92607 via Ribbon Synapse from 134866 -> 134867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 134866, + "TargetID": 134867, + "Directional": true + }] + }, { + "ID": 12577, + "SourceStructureID": 16026, + "TargetStructureID": 92865, + "Label": "16026-92865 via Ribbon Synapse from 25643 -> 92869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25643, + "TargetID": 92869, + "Directional": true + }] + }, { + "ID": 12578, + "SourceStructureID": 16026, + "TargetStructureID": 92926, + "Label": "16026-92926 via Ribbon Synapse from 82741 -> 134795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82741, + "TargetID": 134795, + "Directional": true + }] + }, { + "ID": 12579, + "SourceStructureID": 16026, + "TargetStructureID": 104497, + "Label": "16026-104497 via Ribbon Synapse from 25770 -> 134395", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25770, + "TargetID": 134395, + "Directional": true + }] + }, { + "ID": 12580, + "SourceStructureID": 16026, + "TargetStructureID": 122829, + "Label": "16026-122829 via Ribbon Synapse from 25504 -> 122877, 114646 -> 122873, 114647 -> 122872, 114669 -> 122874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25504, + "TargetID": 122877, + "Directional": true + }, { + "SourceID": 114646, + "TargetID": 122873, + "Directional": true + }, { + "SourceID": 114647, + "TargetID": 122872, + "Directional": true + }, { + "SourceID": 114669, + "TargetID": 122874, + "Directional": true + }] + }, { + "ID": 12581, + "SourceStructureID": 16073, + "TargetStructureID": 289, + "Label": "16073-289 via Conventional from 19931 -> 30003", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 19931, + "TargetID": 30003, + "Directional": true + }] + }, { + "ID": 12582, + "SourceStructureID": 16073, + "TargetStructureID": 909, + "Label": "16073-909 via Conventional from 32219 -> 32220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32219, + "TargetID": 32220, + "Directional": true + }] + }, { + "ID": 12583, + "SourceStructureID": 16073, + "TargetStructureID": 1021, + "Label": "16073-1021 via Conventional from 41264 -> 1617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41264, + "TargetID": 1617, + "Directional": true + }] + }, { + "ID": 12584, + "SourceStructureID": 16073, + "TargetStructureID": 8575, + "Label": "16073-8575 via Conventional from 32191 -> 21648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32191, + "TargetID": 21648, + "Directional": true + }] + }, { + "ID": 12585, + "SourceStructureID": 16073, + "TargetStructureID": 15796, + "Label": "16073-15796 via Conventional from 19853 -> 19835, 19873 -> 114286, 32218 -> 20120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 19853, + "TargetID": 19835, + "Directional": true + }, { + "SourceID": 19873, + "TargetID": 114286, + "Directional": true + }, { + "SourceID": 32218, + "TargetID": 20120, + "Directional": true + }] + }, { + "ID": 12586, + "SourceStructureID": 16073, + "TargetStructureID": 20136, + "Label": "16073-20136 via Conventional from 108504 -> 108505", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108504, + "TargetID": 108505, + "Directional": true + }] + }, { + "ID": 12587, + "SourceStructureID": 16446, + "TargetStructureID": 410, + "Label": "16446-410 via Ribbon Synapse from 16461 -> 8375, 16463 -> 8379, 18850 -> 18849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16461, + "TargetID": 8375, + "Directional": true + }, { + "SourceID": 16463, + "TargetID": 8379, + "Directional": true + }, { + "SourceID": 18850, + "TargetID": 18849, + "Directional": true + }] + }, { + "ID": 12588, + "SourceStructureID": 16446, + "TargetStructureID": 476, + "Label": "16446-476 via Ribbon Synapse from 16461 -> 16478, 16464 -> 2390, 16466 -> 16467, 16472 -> 19064, 16477 -> 16476, 16484 -> 16482, 16485 -> 16486, 16492 -> 16493, 16496 -> 16495, 16499 -> 16498, 16625 -> 2352, 19071 -> 19073, 19082 -> 10441", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16461, + "TargetID": 16478, + "Directional": true + }, { + "SourceID": 16464, + "TargetID": 2390, + "Directional": true + }, { + "SourceID": 16466, + "TargetID": 16467, + "Directional": true + }, { + "SourceID": 16472, + "TargetID": 19064, + "Directional": true + }, { + "SourceID": 16477, + "TargetID": 16476, + "Directional": true + }, { + "SourceID": 16484, + "TargetID": 16482, + "Directional": true + }, { + "SourceID": 16485, + "TargetID": 16486, + "Directional": true + }, { + "SourceID": 16492, + "TargetID": 16493, + "Directional": true + }, { + "SourceID": 16496, + "TargetID": 16495, + "Directional": true + }, { + "SourceID": 16499, + "TargetID": 16498, + "Directional": true + }, { + "SourceID": 16625, + "TargetID": 2352, + "Directional": true + }, { + "SourceID": 19071, + "TargetID": 19073, + "Directional": true + }, { + "SourceID": 19082, + "TargetID": 10441, + "Directional": true + }] + }, { + "ID": 12589, + "SourceStructureID": 16446, + "TargetStructureID": 6153, + "Label": "16446-6153 via Ribbon Synapse from 16623 -> 8417, 18851 -> 8412", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16623, + "TargetID": 8417, + "Directional": true + }, { + "SourceID": 18851, + "TargetID": 8412, + "Directional": true + }] + }, { + "ID": 12590, + "SourceStructureID": 16446, + "TargetStructureID": 34295, + "Label": "16446-34295 via Ribbon Synapse from 16477 -> 34298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16477, + "TargetID": 34298, + "Directional": true + }] + }, { + "ID": 12591, + "SourceStructureID": 16940, + "TargetStructureID": 1620, + "Label": "16940-1620 via Ribbon Synapse from 16951 -> 16935, 16952 -> 16934, 16953 -> 16931", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16951, + "TargetID": 16935, + "Directional": true + }, { + "SourceID": 16952, + "TargetID": 16934, + "Directional": true + }, { + "SourceID": 16953, + "TargetID": 16931, + "Directional": true + }] + }, { + "ID": 12592, + "SourceStructureID": 16940, + "TargetStructureID": 5497, + "Label": "16940-5497 via Ribbon Synapse from 16948 -> 62613", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 16948, + "TargetID": 62613, + "Directional": true + }] + }, { + "ID": 12593, + "SourceStructureID": 16940, + "TargetStructureID": 63628, + "Label": "16940-63628 via Ribbon Synapse from 63693 -> 63634, 63698 -> 63696, 63703 -> 68718", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63693, + "TargetID": 63634, + "Directional": true + }, { + "SourceID": 63698, + "TargetID": 63696, + "Directional": true + }, { + "SourceID": 63703, + "TargetID": 68718, + "Directional": true + }] + }, { + "ID": 12594, + "SourceStructureID": 17183, + "TargetStructureID": 304, + "Label": "17183-304 via Ribbon Synapse from 17185 -> 17186, 17191 -> 17190, 17203 -> 17202, 17205 -> 17204, 17650 -> 17651, 17652 -> 17653, 17654 -> 17655, 18360 -> 18359, 18853 -> 17287, 127856 -> 127857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17185, + "TargetID": 17186, + "Directional": true + }, { + "SourceID": 17191, + "TargetID": 17190, + "Directional": true + }, { + "SourceID": 17203, + "TargetID": 17202, + "Directional": true + }, { + "SourceID": 17205, + "TargetID": 17204, + "Directional": true + }, { + "SourceID": 17650, + "TargetID": 17651, + "Directional": true + }, { + "SourceID": 17652, + "TargetID": 17653, + "Directional": true + }, { + "SourceID": 17654, + "TargetID": 17655, + "Directional": true + }, { + "SourceID": 18360, + "TargetID": 18359, + "Directional": true + }, { + "SourceID": 18853, + "TargetID": 17287, + "Directional": true + }, { + "SourceID": 127856, + "TargetID": 127857, + "Directional": true + }] + }, { + "ID": 12595, + "SourceStructureID": 17183, + "TargetStructureID": 573, + "Label": "17183-573 via Ribbon Synapse from 18356 -> 18355, 19089 -> 19090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 18356, + "TargetID": 18355, + "Directional": true + }, { + "SourceID": 19089, + "TargetID": 19090, + "Directional": true + }] + }, { + "ID": 12596, + "SourceStructureID": 17183, + "TargetStructureID": 2610, + "Label": "17183-2610 via Ribbon Synapse from 17196 -> 2983, 17197 -> 2996, 18416 -> 18415, 19101 -> 19102, 19103 -> 19104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17196, + "TargetID": 2983, + "Directional": true + }, { + "SourceID": 17197, + "TargetID": 2996, + "Directional": true + }, { + "SourceID": 18416, + "TargetID": 18415, + "Directional": true + }, { + "SourceID": 19101, + "TargetID": 19102, + "Directional": true + }, { + "SourceID": 19103, + "TargetID": 19104, + "Directional": true + }] + }, { + "ID": 12597, + "SourceStructureID": 17228, + "TargetStructureID": 304, + "Label": "17228-304 via Ribbon Synapse from 19185 -> 20757, 19186 -> 20755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19185, + "TargetID": 20757, + "Directional": true + }, { + "SourceID": 19186, + "TargetID": 20755, + "Directional": true + }] + }, { + "ID": 12598, + "SourceStructureID": 17228, + "TargetStructureID": 308, + "Label": "17228-308 via Ribbon Synapse from 19184 -> 43547, 19190 -> 43528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19184, + "TargetID": 43547, + "Directional": true + }, { + "SourceID": 19190, + "TargetID": 43528, + "Directional": true + }] + }, { + "ID": 12599, + "SourceStructureID": 17228, + "TargetStructureID": 573, + "Label": "17228-573 via Ribbon Synapse from 19184 -> 43542, 19192 -> 18352", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19184, + "TargetID": 43542, + "Directional": true + }, { + "SourceID": 19192, + "TargetID": 18352, + "Directional": true + }] + }, { + "ID": 12600, + "SourceStructureID": 17228, + "TargetStructureID": 2610, + "Label": "17228-2610 via Ribbon Synapse from 17916 -> 17917, 19169 -> 66183, 19174 -> 19175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17916, + "TargetID": 17917, + "Directional": true + }, { + "SourceID": 19169, + "TargetID": 66183, + "Directional": true + }, { + "SourceID": 19174, + "TargetID": 19175, + "Directional": true + }] + }, { + "ID": 12601, + "SourceStructureID": 17228, + "TargetStructureID": 61214, + "Label": "17228-61214 via Ribbon Synapse from 17263 -> 61224, 19201 -> 61219", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17263, + "TargetID": 61224, + "Directional": true + }, { + "SourceID": 19201, + "TargetID": 61219, + "Directional": true + }] + }, { + "ID": 12602, + "SourceStructureID": 17533, + "TargetStructureID": 410, + "Label": "17533-410 via Ribbon Synapse from 17538 -> 17539, 17540 -> 17541, 17543 -> 17542, 17545 -> 17544, 17547 -> 17548, 17552 -> 17551, 17798 -> 17795, 17799 -> 17794, 17805 -> 17804", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 17538, + "TargetID": 17539, + "Directional": true + }, { + "SourceID": 17540, + "TargetID": 17541, + "Directional": true + }, { + "SourceID": 17543, + "TargetID": 17542, + "Directional": true + }, { + "SourceID": 17545, + "TargetID": 17544, + "Directional": true + }, { + "SourceID": 17547, + "TargetID": 17548, + "Directional": true + }, { + "SourceID": 17552, + "TargetID": 17551, + "Directional": true + }, { + "SourceID": 17798, + "TargetID": 17795, + "Directional": true + }, { + "SourceID": 17799, + "TargetID": 17794, + "Directional": true + }, { + "SourceID": 17805, + "TargetID": 17804, + "Directional": true + }] + }, { + "ID": 12603, + "SourceStructureID": 18150, + "TargetStructureID": 9787, + "Label": "18150-9787 via Conventional from 18151 -> 18147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18151, + "TargetID": 18147, + "Directional": true + }] + }, { + "ID": 12604, + "SourceStructureID": 18282, + "TargetStructureID": 166, + "Label": "18282-166 via Conventional from 18320 -> 18321, 84792 -> 84787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18320, + "TargetID": 18321, + "Directional": true + }, { + "SourceID": 84792, + "TargetID": 84787, + "Directional": true + }] + }, { + "ID": 12605, + "SourceStructureID": 18282, + "TargetStructureID": 268, + "Label": "18282-268 via Conventional from 38868 -> 43464, 38869 -> 43461", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38868, + "TargetID": 43464, + "Directional": true + }, { + "SourceID": 38869, + "TargetID": 43461, + "Directional": true + }] + }, { + "ID": 12606, + "SourceStructureID": 18282, + "TargetStructureID": 286, + "Label": "18282-286 via Conventional from 20500 -> 20501, 38852 -> 38859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20500, + "TargetID": 20501, + "Directional": true + }, { + "SourceID": 38852, + "TargetID": 38859, + "Directional": true + }] + }, { + "ID": 12607, + "SourceStructureID": 18282, + "TargetStructureID": 332, + "Label": "18282-332 via Conventional from 38864 -> 25204", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38864, + "TargetID": 25204, + "Directional": true + }] + }, { + "ID": 12608, + "SourceStructureID": 18282, + "TargetStructureID": 461, + "Label": "18282-461 via Conventional from 20399 -> 14666, 29232 -> 29236", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20399, + "TargetID": 14666, + "Directional": true + }, { + "SourceID": 29232, + "TargetID": 29236, + "Directional": true + }] + }, { + "ID": 12609, + "SourceStructureID": 18282, + "TargetStructureID": 483, + "Label": "18282-483 via Conventional from 20390 -> 51184, 29194 -> 6739, 71185 -> 71186", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20390, + "TargetID": 51184, + "Directional": true + }, { + "SourceID": 29194, + "TargetID": 6739, + "Directional": true + }, { + "SourceID": 71185, + "TargetID": 71186, + "Directional": true + }] + }, { + "ID": 12610, + "SourceStructureID": 18282, + "TargetStructureID": 485, + "Label": "18282-485 via Conventional from 18293 -> 18297, 18294 -> 43485, 18298 -> 18299, 18306 -> 49176, 18308 -> 102013, 20333 -> 29193, 20412 -> 120430, 29181 -> 101089, 31411 -> 43489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18293, + "TargetID": 18297, + "Directional": true + }, { + "SourceID": 18294, + "TargetID": 43485, + "Directional": true + }, { + "SourceID": 18298, + "TargetID": 18299, + "Directional": true + }, { + "SourceID": 18306, + "TargetID": 49176, + "Directional": true + }, { + "SourceID": 18308, + "TargetID": 102013, + "Directional": true + }, { + "SourceID": 20333, + "TargetID": 29193, + "Directional": true + }, { + "SourceID": 20412, + "TargetID": 120430, + "Directional": true + }, { + "SourceID": 29181, + "TargetID": 101089, + "Directional": true + }, { + "SourceID": 31411, + "TargetID": 43489, + "Directional": true + }] + }, { + "ID": 12611, + "SourceStructureID": 18282, + "TargetStructureID": 593, + "Label": "18282-593 via Conventional from 18315 -> 50445", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18315, + "TargetID": 50445, + "Directional": true + }] + }, { + "ID": 12612, + "SourceStructureID": 18282, + "TargetStructureID": 5562, + "Label": "18282-5562 via Conventional from 31442 -> 31444", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31442, + "TargetID": 31444, + "Directional": true + }] + }, { + "ID": 12613, + "SourceStructureID": 18282, + "TargetStructureID": 5916, + "Label": "18282-5916 via Conventional from 31450 -> 38844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31450, + "TargetID": 38844, + "Directional": true + }] + }, { + "ID": 12614, + "SourceStructureID": 18282, + "TargetStructureID": 6115, + "Label": "18282-6115 via Conventional from 20420 -> 20431, 72711 -> 72710, 129083 -> 75554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20420, + "TargetID": 20431, + "Directional": true + }, { + "SourceID": 72711, + "TargetID": 72710, + "Directional": true + }, { + "SourceID": 129083, + "TargetID": 75554, + "Directional": true + }] + }, { + "ID": 12615, + "SourceStructureID": 18282, + "TargetStructureID": 6997, + "Label": "18282-6997 via Conventional from 31412 -> 22124, 31415 -> 31422, 31424 -> 31434", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31412, + "TargetID": 22124, + "Directional": true + }, { + "SourceID": 31415, + "TargetID": 31422, + "Directional": true + }, { + "SourceID": 31424, + "TargetID": 31434, + "Directional": true + }] + }, { + "ID": 12616, + "SourceStructureID": 18282, + "TargetStructureID": 31430, + "Label": "18282-31430 via Conventional from 31423 -> 31432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31423, + "TargetID": 31432, + "Directional": true + }] + }, { + "ID": 12617, + "SourceStructureID": 18282, + "TargetStructureID": 38848, + "Label": "18282-38848 via Conventional from 31454 -> 38849", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31454, + "TargetID": 38849, + "Directional": true + }] + }, { + "ID": 12618, + "SourceStructureID": 18282, + "TargetStructureID": 61960, + "Label": "18282-61960 via Conventional from 18313 -> 81445, 29179 -> 69696", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18313, + "TargetID": 81445, + "Directional": true + }, { + "SourceID": 29179, + "TargetID": 69696, + "Directional": true + }] + }, { + "ID": 12619, + "SourceStructureID": 18471, + "TargetStructureID": 18472, + "Label": "18471-18472 via Conventional from 18474 -> 18475", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18474, + "TargetID": 18475, + "Directional": true + }] + }, { + "ID": 12620, + "SourceStructureID": 18576, + "TargetStructureID": 419, + "Label": "18576-419 via Conventional from 100465 -> 10124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100465, + "TargetID": 10124, + "Directional": true + }] + }, { + "ID": 12621, + "SourceStructureID": 18576, + "TargetStructureID": 514, + "Label": "18576-514 via Conventional from 18582 -> 18581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18582, + "TargetID": 18581, + "Directional": true + }] + }, { + "ID": 12622, + "SourceStructureID": 18576, + "TargetStructureID": 519, + "Label": "18576-519 via Conventional from 18580 -> 18579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 18580, + "TargetID": 18579, + "Directional": true + }] + }, { + "ID": 12623, + "SourceStructureID": 18576, + "TargetStructureID": 6857, + "Label": "18576-6857 via Conventional from 36328 -> 6862", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36328, + "TargetID": 6862, + "Directional": true + }] + }, { + "ID": 12624, + "SourceStructureID": 18693, + "TargetStructureID": 64774, + "Label": "18693-64774 via Conventional from 64773 -> 64775", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64773, + "TargetID": 64775, + "Directional": true + }] + }, { + "ID": 12625, + "SourceStructureID": 18693, + "TargetStructureID": 64777, + "Label": "18693-64777 via Conventional from 64720 -> 64778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64720, + "TargetID": 64778, + "Directional": true + }] + }, { + "ID": 12626, + "SourceStructureID": 19203, + "TargetStructureID": 389, + "Label": "19203-389 via Ribbon Synapse from 62114 -> 62117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62114, + "TargetID": 62117, + "Directional": true + }] + }, { + "ID": 12627, + "SourceStructureID": 19203, + "TargetStructureID": 598, + "Label": "19203-598 via Ribbon Synapse from 22889 -> 38535", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22889, + "TargetID": 38535, + "Directional": true + }] + }, { + "ID": 12628, + "SourceStructureID": 19203, + "TargetStructureID": 5345, + "Label": "19203-5345 via Ribbon Synapse from 19321 -> 22837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19321, + "TargetID": 22837, + "Directional": true + }] + }, { + "ID": 12629, + "SourceStructureID": 19203, + "TargetStructureID": 5497, + "Label": "19203-5497 via Ribbon Synapse from 21747 -> 21742, 22894 -> 21736, 22896 -> 22897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21747, + "TargetID": 21742, + "Directional": true + }, { + "SourceID": 22894, + "TargetID": 21736, + "Directional": true + }, { + "SourceID": 22896, + "TargetID": 22897, + "Directional": true + }] + }, { + "ID": 12630, + "SourceStructureID": 19203, + "TargetStructureID": 8575, + "Label": "19203-8575 via BC Conventional Synapse from 62431 -> 61549", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62431, + "TargetID": 61549, + "Directional": true + }] + }, { + "ID": 12631, + "SourceStructureID": 19203, + "TargetStructureID": 8575, + "Label": "19203-8575 via Ribbon Synapse from 22877 -> 21731, 22942 -> 21733, 62108 -> 62105, 63610 -> 62102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 22877, + "TargetID": 21731, + "Directional": true + }, { + "SourceID": 22942, + "TargetID": 21733, + "Directional": true + }, { + "SourceID": 62108, + "TargetID": 62105, + "Directional": true + }, { + "SourceID": 63610, + "TargetID": 62102, + "Directional": true + }] + }, { + "ID": 12632, + "SourceStructureID": 19203, + "TargetStructureID": 18693, + "Label": "19203-18693 via Ribbon Synapse from 19313 -> 18701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 19313, + "TargetID": 18701, + "Directional": true + }] + }, { + "ID": 12633, + "SourceStructureID": 19203, + "TargetStructureID": 62120, + "Label": "19203-62120 via Ribbon Synapse from 62114 -> 62123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62114, + "TargetID": 62123, + "Directional": true + }] + }, { + "ID": 12634, + "SourceStructureID": 19351, + "TargetStructureID": 6131, + "Label": "19351-6131 via Conventional from 37312 -> 37311", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37312, + "TargetID": 37311, + "Directional": true + }] + }, { + "ID": 12635, + "SourceStructureID": 19362, + "TargetStructureID": 5457, + "Label": "19362-5457 via Conventional from 23435 -> 103140, 23461 -> 15341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23435, + "TargetID": 103140, + "Directional": true + }, { + "SourceID": 23461, + "TargetID": 15341, + "Directional": true + }] + }, { + "ID": 12636, + "SourceStructureID": 19362, + "TargetStructureID": 5458, + "Label": "19362-5458 via Conventional from 23424 -> 23425", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23424, + "TargetID": 23425, + "Directional": true + }] + }, { + "ID": 12637, + "SourceStructureID": 19362, + "TargetStructureID": 5536, + "Label": "19362-5536 via Conventional from 23423 -> 22690", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23423, + "TargetID": 22690, + "Directional": true + }] + }, { + "ID": 12638, + "SourceStructureID": 19362, + "TargetStructureID": 7188, + "Label": "19362-7188 via Conventional from 23454 -> 7195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23454, + "TargetID": 7195, + "Directional": true + }] + }, { + "ID": 12639, + "SourceStructureID": 19362, + "TargetStructureID": 7225, + "Label": "19362-7225 via Conventional from 23438 -> 23444", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23438, + "TargetID": 23444, + "Directional": true + }] + }, { + "ID": 12640, + "SourceStructureID": 19383, + "TargetStructureID": 5541, + "Label": "19383-5541 via Conventional from 33205 -> 33204, 33207 -> 33206", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33205, + "TargetID": 33204, + "Directional": true + }, { + "SourceID": 33207, + "TargetID": 33206, + "Directional": true + }] + }, { + "ID": 12641, + "SourceStructureID": 19571, + "TargetStructureID": 5452, + "Label": "19571-5452 via Conventional from 22724 -> 23692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22724, + "TargetID": 23692, + "Directional": true + }] + }, { + "ID": 12642, + "SourceStructureID": 19571, + "TargetStructureID": 5536, + "Label": "19571-5536 via Conventional from 22713 -> 22696", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22713, + "TargetID": 22696, + "Directional": true + }] + }, { + "ID": 12643, + "SourceStructureID": 19571, + "TargetStructureID": 5539, + "Label": "19571-5539 via Conventional from 22720 -> 22631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22720, + "TargetID": 22631, + "Directional": true + }] + }, { + "ID": 12644, + "SourceStructureID": 19571, + "TargetStructureID": 19362, + "Label": "19571-19362 via Conventional from 22762 -> 23440, 23451 -> 23450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22762, + "TargetID": 23440, + "Directional": true + }, { + "SourceID": 23451, + "TargetID": 23450, + "Directional": true + }] + }, { + "ID": 12645, + "SourceStructureID": 19572, + "TargetStructureID": 5539, + "Label": "19572-5539 via Conventional from 22624 -> 22792, 22626 -> 9814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22624, + "TargetID": 22792, + "Directional": true + }, { + "SourceID": 22626, + "TargetID": 9814, + "Directional": true + }] + }, { + "ID": 12646, + "SourceStructureID": 20136, + "TargetStructureID": 162, + "Label": "20136-162 via Ribbon Synapse from 29137 -> 70265, 29141 -> 109301", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29137, + "TargetID": 70265, + "Directional": true + }, { + "SourceID": 29141, + "TargetID": 109301, + "Directional": true + }] + }, { + "ID": 12647, + "SourceStructureID": 20136, + "TargetStructureID": 492, + "Label": "20136-492 via Ribbon Synapse from 30655 -> 109850, 109838 -> 109837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30655, + "TargetID": 109850, + "Directional": true + }, { + "SourceID": 109838, + "TargetID": 109837, + "Directional": true + }] + }, { + "ID": 12648, + "SourceStructureID": 20136, + "TargetStructureID": 598, + "Label": "20136-598 via Ribbon Synapse from 46000 -> 6320", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46000, + "TargetID": 6320, + "Directional": true + }] + }, { + "ID": 12649, + "SourceStructureID": 20136, + "TargetStructureID": 5377, + "Label": "20136-5377 via Ribbon Synapse from 69862 -> 108969, 87025 -> 87026, 108966 -> 108967", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69862, + "TargetID": 108969, + "Directional": true + }, { + "SourceID": 87025, + "TargetID": 87026, + "Directional": true + }, { + "SourceID": 108966, + "TargetID": 108967, + "Directional": true + }] + }, { + "ID": 12650, + "SourceStructureID": 20136, + "TargetStructureID": 5435, + "Label": "20136-5435 via Ribbon Synapse from 127744 -> 135515", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127744, + "TargetID": 135515, + "Directional": true + }] + }, { + "ID": 12651, + "SourceStructureID": 20136, + "TargetStructureID": 7594, + "Label": "20136-7594 via Ribbon Synapse from 25107 -> 25106, 29141 -> 29142", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25107, + "TargetID": 25106, + "Directional": true + }, { + "SourceID": 29141, + "TargetID": 29142, + "Directional": true + }] + }, { + "ID": 12652, + "SourceStructureID": 20136, + "TargetStructureID": 15796, + "Label": "20136-15796 via BC Conventional Synapse from 97845 -> 97844", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97845, + "TargetID": 97844, + "Directional": true + }] + }, { + "ID": 12653, + "SourceStructureID": 20136, + "TargetStructureID": 15796, + "Label": "20136-15796 via Ribbon Synapse from 20149 -> 15845, 45995 -> 108492, 69861 -> 20117, 130475 -> 130474, 130481 -> 20123", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20149, + "TargetID": 15845, + "Directional": true + }, { + "SourceID": 45995, + "TargetID": 108492, + "Directional": true + }, { + "SourceID": 69861, + "TargetID": 20117, + "Directional": true + }, { + "SourceID": 130475, + "TargetID": 130474, + "Directional": true + }, { + "SourceID": 130481, + "TargetID": 20123, + "Directional": true + }] + }, { + "ID": 12654, + "SourceStructureID": 20136, + "TargetStructureID": 16073, + "Label": "20136-16073 via BC Conventional Synapse from 108471 -> 108472", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108471, + "TargetID": 108472, + "Directional": true + }] + }, { + "ID": 12655, + "SourceStructureID": 20136, + "TargetStructureID": 16073, + "Label": "20136-16073 via Ribbon Synapse from 69862 -> 23442, 130479 -> 130480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69862, + "TargetID": 23442, + "Directional": true + }, { + "SourceID": 130479, + "TargetID": 130480, + "Directional": true + }] + }, { + "ID": 12656, + "SourceStructureID": 20136, + "TargetStructureID": 30567, + "Label": "20136-30567 via Ribbon Synapse from 30655 -> 109848", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30655, + "TargetID": 109848, + "Directional": true + }] + }, { + "ID": 12657, + "SourceStructureID": 20136, + "TargetStructureID": 38502, + "Label": "20136-38502 via Ribbon Synapse from 29127 -> 38508", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29127, + "TargetID": 38508, + "Directional": true + }] + }, { + "ID": 12658, + "SourceStructureID": 20136, + "TargetStructureID": 40018, + "Label": "20136-40018 via Ribbon Synapse from 110350 -> 110351", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110350, + "TargetID": 110351, + "Directional": true + }] + }, { + "ID": 12659, + "SourceStructureID": 20136, + "TargetStructureID": 53399, + "Label": "20136-53399 via Ribbon Synapse from 29136 -> 53400", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29136, + "TargetID": 53400, + "Directional": true + }] + }, { + "ID": 12660, + "SourceStructureID": 20136, + "TargetStructureID": 54006, + "Label": "20136-54006 via Ribbon Synapse from 20146 -> 109049, 20147 -> 109060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20146, + "TargetID": 109049, + "Directional": true + }, { + "SourceID": 20147, + "TargetID": 109060, + "Directional": true + }] + }, { + "ID": 12661, + "SourceStructureID": 20136, + "TargetStructureID": 55403, + "Label": "20136-55403 via Ribbon Synapse from 119289 -> 55503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119289, + "TargetID": 55503, + "Directional": true + }] + }, { + "ID": 12662, + "SourceStructureID": 20136, + "TargetStructureID": 59145, + "Label": "20136-59145 via BC Conventional Synapse from 20138 -> 59152", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20138, + "TargetID": 59152, + "Directional": true + }] + }, { + "ID": 12663, + "SourceStructureID": 20136, + "TargetStructureID": 67663, + "Label": "20136-67663 via Ribbon Synapse from 69864 -> 108981, 70044 -> 70043", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69864, + "TargetID": 108981, + "Directional": true + }, { + "SourceID": 70044, + "TargetID": 70043, + "Directional": true + }] + }, { + "ID": 12664, + "SourceStructureID": 20136, + "TargetStructureID": 68277, + "Label": "20136-68277 via Ribbon Synapse from 109894 -> 109897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109894, + "TargetID": 109897, + "Directional": true + }] + }, { + "ID": 12665, + "SourceStructureID": 20136, + "TargetStructureID": 69162, + "Label": "20136-69162 via Ribbon Synapse from 46031 -> 109228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46031, + "TargetID": 109228, + "Directional": true + }] + }, { + "ID": 12666, + "SourceStructureID": 20136, + "TargetStructureID": 83949, + "Label": "20136-83949 via BC Conventional Synapse from 109087 -> 109089", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109087, + "TargetID": 109089, + "Directional": true + }] + }, { + "ID": 12667, + "SourceStructureID": 20136, + "TargetStructureID": 83949, + "Label": "20136-83949 via Ribbon Synapse from 20146 -> 109048", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20146, + "TargetID": 109048, + "Directional": true + }] + }, { + "ID": 12668, + "SourceStructureID": 20136, + "TargetStructureID": 83954, + "Label": "20136-83954 via Ribbon Synapse from 109092 -> 109091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109092, + "TargetID": 109091, + "Directional": true + }] + }, { + "ID": 12669, + "SourceStructureID": 20136, + "TargetStructureID": 84148, + "Label": "20136-84148 via BC Conventional Synapse from 84147 -> 84149", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84147, + "TargetID": 84149, + "Directional": true + }] + }, { + "ID": 12670, + "SourceStructureID": 20136, + "TargetStructureID": 84193, + "Label": "20136-84193 via BC Conventional Synapse from 109172 -> 109173", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109172, + "TargetID": 109173, + "Directional": true + }] + }, { + "ID": 12671, + "SourceStructureID": 20136, + "TargetStructureID": 88199, + "Label": "20136-88199 via Ribbon Synapse from 110350 -> 110349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110350, + "TargetID": 110349, + "Directional": true + }] + }, { + "ID": 12672, + "SourceStructureID": 20136, + "TargetStructureID": 97691, + "Label": "20136-97691 via Ribbon Synapse from 119296 -> 119297, 119301 -> 119302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119296, + "TargetID": 119297, + "Directional": true + }, { + "SourceID": 119301, + "TargetID": 119302, + "Directional": true + }] + }, { + "ID": 12673, + "SourceStructureID": 20136, + "TargetStructureID": 103987, + "Label": "20136-103987 via Ribbon Synapse from 108875 -> 108879", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108875, + "TargetID": 108879, + "Directional": true + }] + }, { + "ID": 12674, + "SourceStructureID": 20136, + "TargetStructureID": 108398, + "Label": "20136-108398 via Ribbon Synapse from 108412 -> 108413", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108412, + "TargetID": 108413, + "Directional": true + }] + }, { + "ID": 12675, + "SourceStructureID": 20136, + "TargetStructureID": 108421, + "Label": "20136-108421 via BC Conventional Synapse from 108440 -> 108425", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108440, + "TargetID": 108425, + "Directional": true + }] + }, { + "ID": 12676, + "SourceStructureID": 20136, + "TargetStructureID": 108448, + "Label": "20136-108448 via Ribbon Synapse from 45993 -> 108455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45993, + "TargetID": 108455, + "Directional": true + }] + }, { + "ID": 12677, + "SourceStructureID": 20136, + "TargetStructureID": 108469, + "Label": "20136-108469 via BC Conventional Synapse from 108471 -> 108474", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108471, + "TargetID": 108474, + "Directional": true + }] + }, { + "ID": 12678, + "SourceStructureID": 20136, + "TargetStructureID": 108487, + "Label": "20136-108487 via Ribbon Synapse from 45995 -> 108490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45995, + "TargetID": 108490, + "Directional": true + }] + }, { + "ID": 12679, + "SourceStructureID": 20136, + "TargetStructureID": 108500, + "Label": "20136-108500 via Ribbon Synapse from 108479 -> 108503", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108479, + "TargetID": 108503, + "Directional": true + }] + }, { + "ID": 12680, + "SourceStructureID": 20136, + "TargetStructureID": 108766, + "Label": "20136-108766 via Ribbon Synapse from 108765 -> 108767", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108765, + "TargetID": 108767, + "Directional": true + }] + }, { + "ID": 12681, + "SourceStructureID": 20136, + "TargetStructureID": 108768, + "Label": "20136-108768 via Ribbon Synapse from 108765 -> 108769", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108765, + "TargetID": 108769, + "Directional": true + }] + }, { + "ID": 12682, + "SourceStructureID": 20136, + "TargetStructureID": 108800, + "Label": "20136-108800 via Ribbon Synapse from 108805 -> 108806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108805, + "TargetID": 108806, + "Directional": true + }] + }, { + "ID": 12683, + "SourceStructureID": 20136, + "TargetStructureID": 108804, + "Label": "20136-108804 via Ribbon Synapse from 108805 -> 108809", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108805, + "TargetID": 108809, + "Directional": true + }] + }, { + "ID": 12684, + "SourceStructureID": 20136, + "TargetStructureID": 108818, + "Label": "20136-108818 via Ribbon Synapse from 129604 -> 129605", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129604, + "TargetID": 129605, + "Directional": true + }] + }, { + "ID": 12685, + "SourceStructureID": 20136, + "TargetStructureID": 108825, + "Label": "20136-108825 via Ribbon Synapse from 108834 -> 108837", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108834, + "TargetID": 108837, + "Directional": true + }] + }, { + "ID": 12686, + "SourceStructureID": 20136, + "TargetStructureID": 108835, + "Label": "20136-108835 via Ribbon Synapse from 108834 -> 108836", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108834, + "TargetID": 108836, + "Directional": true + }] + }, { + "ID": 12687, + "SourceStructureID": 20136, + "TargetStructureID": 108845, + "Label": "20136-108845 via Ribbon Synapse from 108832 -> 108848", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108832, + "TargetID": 108848, + "Directional": true + }] + }, { + "ID": 12688, + "SourceStructureID": 20136, + "TargetStructureID": 108846, + "Label": "20136-108846 via Ribbon Synapse from 108832 -> 108847", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108832, + "TargetID": 108847, + "Directional": true + }] + }, { + "ID": 12689, + "SourceStructureID": 20136, + "TargetStructureID": 108861, + "Label": "20136-108861 via Ribbon Synapse from 108860 -> 108862, 108884 -> 108898", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108860, + "TargetID": 108862, + "Directional": true + }, { + "SourceID": 108884, + "TargetID": 108898, + "Directional": true + }] + }, { + "ID": 12690, + "SourceStructureID": 20136, + "TargetStructureID": 108881, + "Label": "20136-108881 via Ribbon Synapse from 108875 -> 108882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108875, + "TargetID": 108882, + "Directional": true + }] + }, { + "ID": 12691, + "SourceStructureID": 20136, + "TargetStructureID": 108883, + "Label": "20136-108883 via Ribbon Synapse from 108884 -> 108886", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108884, + "TargetID": 108886, + "Directional": true + }] + }, { + "ID": 12692, + "SourceStructureID": 20136, + "TargetStructureID": 108890, + "Label": "20136-108890 via Ribbon Synapse from 108888 -> 108892", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108888, + "TargetID": 108892, + "Directional": true + }] + }, { + "ID": 12693, + "SourceStructureID": 20136, + "TargetStructureID": 108893, + "Label": "20136-108893 via Ribbon Synapse from 108888 -> 108896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108888, + "TargetID": 108896, + "Directional": true + }] + }, { + "ID": 12694, + "SourceStructureID": 20136, + "TargetStructureID": 108937, + "Label": "20136-108937 via Ribbon Synapse from 69864 -> 108979", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69864, + "TargetID": 108979, + "Directional": true + }] + }, { + "ID": 12695, + "SourceStructureID": 20136, + "TargetStructureID": 108949, + "Label": "20136-108949 via Ribbon Synapse from 87025 -> 108950, 108951 -> 108952", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87025, + "TargetID": 108950, + "Directional": true + }, { + "SourceID": 108951, + "TargetID": 108952, + "Directional": true + }] + }, { + "ID": 12696, + "SourceStructureID": 20136, + "TargetStructureID": 108953, + "Label": "20136-108953 via Ribbon Synapse from 108951 -> 108954", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108951, + "TargetID": 108954, + "Directional": true + }] + }, { + "ID": 12697, + "SourceStructureID": 20136, + "TargetStructureID": 108955, + "Label": "20136-108955 via Ribbon Synapse from 69862 -> 108968, 108951 -> 108956", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69862, + "TargetID": 108968, + "Directional": true + }, { + "SourceID": 108951, + "TargetID": 108956, + "Directional": true + }] + }, { + "ID": 12698, + "SourceStructureID": 20136, + "TargetStructureID": 108959, + "Label": "20136-108959 via BC Conventional Synapse from 108961 -> 108960", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108961, + "TargetID": 108960, + "Directional": true + }] + }, { + "ID": 12699, + "SourceStructureID": 20136, + "TargetStructureID": 108970, + "Label": "20136-108970 via Ribbon Synapse from 108966 -> 108971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108966, + "TargetID": 108971, + "Directional": true + }] + }, { + "ID": 12700, + "SourceStructureID": 20136, + "TargetStructureID": 108972, + "Label": "20136-108972 via Ribbon Synapse from 69861 -> 108973, 69861 -> 108974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69861, + "TargetID": 108973, + "Directional": true + }, { + "SourceID": 69861, + "TargetID": 108974, + "Directional": true + }] + }, { + "ID": 12701, + "SourceStructureID": 20136, + "TargetStructureID": 108986, + "Label": "20136-108986 via BC Conventional Synapse from 108985 -> 108987", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108985, + "TargetID": 108987, + "Directional": true + }] + }, { + "ID": 12702, + "SourceStructureID": 20136, + "TargetStructureID": 108988, + "Label": "20136-108988 via Ribbon Synapse from 45996 -> 108989", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45996, + "TargetID": 108989, + "Directional": true + }] + }, { + "ID": 12703, + "SourceStructureID": 20136, + "TargetStructureID": 108991, + "Label": "20136-108991 via Ribbon Synapse from 45996 -> 108992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45996, + "TargetID": 108992, + "Directional": true + }] + }, { + "ID": 12704, + "SourceStructureID": 20136, + "TargetStructureID": 108993, + "Label": "20136-108993 via Ribbon Synapse from 46003 -> 108994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46003, + "TargetID": 108994, + "Directional": true + }] + }, { + "ID": 12705, + "SourceStructureID": 20136, + "TargetStructureID": 108999, + "Label": "20136-108999 via Ribbon Synapse from 108998 -> 109000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108998, + "TargetID": 109000, + "Directional": true + }] + }, { + "ID": 12706, + "SourceStructureID": 20136, + "TargetStructureID": 109007, + "Label": "20136-109007 via Ribbon Synapse from 109006 -> 109008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109006, + "TargetID": 109008, + "Directional": true + }] + }, { + "ID": 12707, + "SourceStructureID": 20136, + "TargetStructureID": 109012, + "Label": "20136-109012 via Ribbon Synapse from 109009 -> 109013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109009, + "TargetID": 109013, + "Directional": true + }] + }, { + "ID": 12708, + "SourceStructureID": 20136, + "TargetStructureID": 109014, + "Label": "20136-109014 via Ribbon Synapse from 109009 -> 109015", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109009, + "TargetID": 109015, + "Directional": true + }] + }, { + "ID": 12709, + "SourceStructureID": 20136, + "TargetStructureID": 109016, + "Label": "20136-109016 via Ribbon Synapse from 46003 -> 109017, 46004 -> 109018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46003, + "TargetID": 109017, + "Directional": true + }, { + "SourceID": 46004, + "TargetID": 109018, + "Directional": true + }] + }, { + "ID": 12710, + "SourceStructureID": 20136, + "TargetStructureID": 109019, + "Label": "20136-109019 via Ribbon Synapse from 46005 -> 109020", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46005, + "TargetID": 109020, + "Directional": true + }] + }, { + "ID": 12711, + "SourceStructureID": 20136, + "TargetStructureID": 109021, + "Label": "20136-109021 via Ribbon Synapse from 46005 -> 109022", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46005, + "TargetID": 109022, + "Directional": true + }] + }, { + "ID": 12712, + "SourceStructureID": 20136, + "TargetStructureID": 109027, + "Label": "20136-109027 via Ribbon Synapse from 46008 -> 109028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46008, + "TargetID": 109028, + "Directional": true + }] + }, { + "ID": 12713, + "SourceStructureID": 20136, + "TargetStructureID": 109029, + "Label": "20136-109029 via Ribbon Synapse from 109092 -> 109090, 109133 -> 109134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109092, + "TargetID": 109090, + "Directional": true + }, { + "SourceID": 109133, + "TargetID": 109134, + "Directional": true + }] + }, { + "ID": 12714, + "SourceStructureID": 20136, + "TargetStructureID": 109030, + "Label": "20136-109030 via Ribbon Synapse from 20147 -> 109056", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20147, + "TargetID": 109056, + "Directional": true + }] + }, { + "ID": 12715, + "SourceStructureID": 20136, + "TargetStructureID": 109053, + "Label": "20136-109053 via Ribbon Synapse from 20147 -> 109054", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20147, + "TargetID": 109054, + "Directional": true + }] + }, { + "ID": 12716, + "SourceStructureID": 20136, + "TargetStructureID": 109065, + "Label": "20136-109065 via Ribbon Synapse from 20149 -> 109066", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 20149, + "TargetID": 109066, + "Directional": true + }] + }, { + "ID": 12717, + "SourceStructureID": 20136, + "TargetStructureID": 109084, + "Label": "20136-109084 via BC Conventional Synapse from 109086 -> 109085", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109086, + "TargetID": 109085, + "Directional": true + }] + }, { + "ID": 12718, + "SourceStructureID": 20136, + "TargetStructureID": 109097, + "Label": "20136-109097 via Ribbon Synapse from 70044 -> 109098, 109104 -> 109105, 109154 -> 109153", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70044, + "TargetID": 109098, + "Directional": true + }, { + "SourceID": 109104, + "TargetID": 109105, + "Directional": true + }, { + "SourceID": 109154, + "TargetID": 109153, + "Directional": true + }] + }, { + "ID": 12719, + "SourceStructureID": 20136, + "TargetStructureID": 109106, + "Label": "20136-109106 via Ribbon Synapse from 109104 -> 109110", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109104, + "TargetID": 109110, + "Directional": true + }] + }, { + "ID": 12720, + "SourceStructureID": 20136, + "TargetStructureID": 109116, + "Label": "20136-109116 via Ribbon Synapse from 46006 -> 109118", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46006, + "TargetID": 109118, + "Directional": true + }] + }, { + "ID": 12721, + "SourceStructureID": 20136, + "TargetStructureID": 109119, + "Label": "20136-109119 via Ribbon Synapse from 46006 -> 109120", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46006, + "TargetID": 109120, + "Directional": true + }] + }, { + "ID": 12722, + "SourceStructureID": 20136, + "TargetStructureID": 109126, + "Label": "20136-109126 via Ribbon Synapse from 46008 -> 109127", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46008, + "TargetID": 109127, + "Directional": true + }] + }, { + "ID": 12723, + "SourceStructureID": 20136, + "TargetStructureID": 109135, + "Label": "20136-109135 via Ribbon Synapse from 109133 -> 109159", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109133, + "TargetID": 109159, + "Directional": true + }] + }, { + "ID": 12724, + "SourceStructureID": 20136, + "TargetStructureID": 109160, + "Label": "20136-109160 via Ribbon Synapse from 109161 -> 109162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109161, + "TargetID": 109162, + "Directional": true + }] + }, { + "ID": 12725, + "SourceStructureID": 20136, + "TargetStructureID": 109163, + "Label": "20136-109163 via Ribbon Synapse from 109161 -> 109168", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109161, + "TargetID": 109168, + "Directional": true + }] + }, { + "ID": 12726, + "SourceStructureID": 20136, + "TargetStructureID": 109164, + "Label": "20136-109164 via Ribbon Synapse from 109161 -> 109165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109161, + "TargetID": 109165, + "Directional": true + }] + }, { + "ID": 12727, + "SourceStructureID": 20136, + "TargetStructureID": 109166, + "Label": "20136-109166 via Ribbon Synapse from 109161 -> 109167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109161, + "TargetID": 109167, + "Directional": true + }] + }, { + "ID": 12728, + "SourceStructureID": 20136, + "TargetStructureID": 109184, + "Label": "20136-109184 via BC Conventional Synapse from 109188 -> 109187", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109188, + "TargetID": 109187, + "Directional": true + }] + }, { + "ID": 12729, + "SourceStructureID": 20136, + "TargetStructureID": 109210, + "Label": "20136-109210 via Ribbon Synapse from 29127 -> 109231, 29132 -> 109235, 29134 -> 109213", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29127, + "TargetID": 109231, + "Directional": true + }, { + "SourceID": 29132, + "TargetID": 109235, + "Directional": true + }, { + "SourceID": 29134, + "TargetID": 109213, + "Directional": true + }] + }, { + "ID": 12730, + "SourceStructureID": 20136, + "TargetStructureID": 109214, + "Label": "20136-109214 via Ribbon Synapse from 29134 -> 109215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29134, + "TargetID": 109215, + "Directional": true + }] + }, { + "ID": 12731, + "SourceStructureID": 20136, + "TargetStructureID": 109226, + "Label": "20136-109226 via Ribbon Synapse from 46031 -> 109227", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46031, + "TargetID": 109227, + "Directional": true + }] + }, { + "ID": 12732, + "SourceStructureID": 20136, + "TargetStructureID": 109230, + "Label": "20136-109230 via Ribbon Synapse from 29132 -> 109236", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29132, + "TargetID": 109236, + "Directional": true + }] + }, { + "ID": 12733, + "SourceStructureID": 20136, + "TargetStructureID": 109237, + "Label": "20136-109237 via Ribbon Synapse from 46030 -> 109238", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46030, + "TargetID": 109238, + "Directional": true + }] + }, { + "ID": 12734, + "SourceStructureID": 20136, + "TargetStructureID": 109243, + "Label": "20136-109243 via Ribbon Synapse from 29125 -> 109244", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29125, + "TargetID": 109244, + "Directional": true + }] + }, { + "ID": 12735, + "SourceStructureID": 20136, + "TargetStructureID": 109247, + "Label": "20136-109247 via Ribbon Synapse from 96719 -> 109248", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96719, + "TargetID": 109248, + "Directional": true + }] + }, { + "ID": 12736, + "SourceStructureID": 20136, + "TargetStructureID": 109251, + "Label": "20136-109251 via Ribbon Synapse from 96718 -> 109253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96718, + "TargetID": 109253, + "Directional": true + }] + }, { + "ID": 12737, + "SourceStructureID": 20136, + "TargetStructureID": 109252, + "Label": "20136-109252 via Ribbon Synapse from 96718 -> 109254", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96718, + "TargetID": 109254, + "Directional": true + }] + }, { + "ID": 12738, + "SourceStructureID": 20136, + "TargetStructureID": 109255, + "Label": "20136-109255 via Ribbon Synapse from 96719 -> 109256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 96719, + "TargetID": 109256, + "Directional": true + }] + }, { + "ID": 12739, + "SourceStructureID": 20136, + "TargetStructureID": 109257, + "Label": "20136-109257 via Ribbon Synapse from 46032 -> 109259", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46032, + "TargetID": 109259, + "Directional": true + }] + }, { + "ID": 12740, + "SourceStructureID": 20136, + "TargetStructureID": 109260, + "Label": "20136-109260 via Ribbon Synapse from 46032 -> 109261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46032, + "TargetID": 109261, + "Directional": true + }] + }, { + "ID": 12741, + "SourceStructureID": 20136, + "TargetStructureID": 109267, + "Label": "20136-109267 via Ribbon Synapse from 46034 -> 109268", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46034, + "TargetID": 109268, + "Directional": true + }] + }, { + "ID": 12742, + "SourceStructureID": 20136, + "TargetStructureID": 109269, + "Label": "20136-109269 via Ribbon Synapse from 46034 -> 109270", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46034, + "TargetID": 109270, + "Directional": true + }] + }, { + "ID": 12743, + "SourceStructureID": 20136, + "TargetStructureID": 109271, + "Label": "20136-109271 via Ribbon Synapse from 97851 -> 120514", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97851, + "TargetID": 120514, + "Directional": true + }] + }, { + "ID": 12744, + "SourceStructureID": 20136, + "TargetStructureID": 109274, + "Label": "20136-109274 via Ribbon Synapse from 97851 -> 109275", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97851, + "TargetID": 109275, + "Directional": true + }] + }, { + "ID": 12745, + "SourceStructureID": 20136, + "TargetStructureID": 109287, + "Label": "20136-109287 via Ribbon Synapse from 109286 -> 109288", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109286, + "TargetID": 109288, + "Directional": true + }] + }, { + "ID": 12746, + "SourceStructureID": 20136, + "TargetStructureID": 109289, + "Label": "20136-109289 via Ribbon Synapse from 109286 -> 109290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109286, + "TargetID": 109290, + "Directional": true + }] + }, { + "ID": 12747, + "SourceStructureID": 20136, + "TargetStructureID": 109291, + "Label": "20136-109291 via Ribbon Synapse from 29137 -> 109292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29137, + "TargetID": 109292, + "Directional": true + }] + }, { + "ID": 12748, + "SourceStructureID": 20136, + "TargetStructureID": 109293, + "Label": "20136-109293 via Ribbon Synapse from 29140 -> 109294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29140, + "TargetID": 109294, + "Directional": true + }] + }, { + "ID": 12749, + "SourceStructureID": 20136, + "TargetStructureID": 109305, + "Label": "20136-109305 via Ribbon Synapse from 29144 -> 109314", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29144, + "TargetID": 109314, + "Directional": true + }] + }, { + "ID": 12750, + "SourceStructureID": 20136, + "TargetStructureID": 109316, + "Label": "20136-109316 via Ribbon Synapse from 109315 -> 109317", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109315, + "TargetID": 109317, + "Directional": true + }] + }, { + "ID": 12751, + "SourceStructureID": 20136, + "TargetStructureID": 109318, + "Label": "20136-109318 via Ribbon Synapse from 109315 -> 109319", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109315, + "TargetID": 109319, + "Directional": true + }] + }, { + "ID": 12752, + "SourceStructureID": 20136, + "TargetStructureID": 109335, + "Label": "20136-109335 via Ribbon Synapse from 29138 -> 109340", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29138, + "TargetID": 109340, + "Directional": true + }] + }, { + "ID": 12753, + "SourceStructureID": 20136, + "TargetStructureID": 109347, + "Label": "20136-109347 via Ribbon Synapse from 109346 -> 109348", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109346, + "TargetID": 109348, + "Directional": true + }] + }, { + "ID": 12754, + "SourceStructureID": 20136, + "TargetStructureID": 109417, + "Label": "20136-109417 via BC Conventional Synapse from 109416 -> 109418", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109416, + "TargetID": 109418, + "Directional": true + }] + }, { + "ID": 12755, + "SourceStructureID": 20136, + "TargetStructureID": 109420, + "Label": "20136-109420 via Ribbon Synapse from 109415 -> 109421", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109415, + "TargetID": 109421, + "Directional": true + }] + }, { + "ID": 12756, + "SourceStructureID": 20136, + "TargetStructureID": 109422, + "Label": "20136-109422 via Ribbon Synapse from 109415 -> 109423", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109415, + "TargetID": 109423, + "Directional": true + }] + }, { + "ID": 12757, + "SourceStructureID": 20136, + "TargetStructureID": 109424, + "Label": "20136-109424 via Ribbon Synapse from 109415 -> 109425, 109427 -> 109429", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109415, + "TargetID": 109425, + "Directional": true + }, { + "SourceID": 109427, + "TargetID": 109429, + "Directional": true + }] + }, { + "ID": 12758, + "SourceStructureID": 20136, + "TargetStructureID": 109430, + "Label": "20136-109430 via Ribbon Synapse from 109427 -> 109431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109427, + "TargetID": 109431, + "Directional": true + }] + }, { + "ID": 12759, + "SourceStructureID": 20136, + "TargetStructureID": 109439, + "Label": "20136-109439 via Ribbon Synapse from 46025 -> 109443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46025, + "TargetID": 109443, + "Directional": true + }] + }, { + "ID": 12760, + "SourceStructureID": 20136, + "TargetStructureID": 109445, + "Label": "20136-109445 via Ribbon Synapse from 46025 -> 109446", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46025, + "TargetID": 109446, + "Directional": true + }] + }, { + "ID": 12761, + "SourceStructureID": 20136, + "TargetStructureID": 109450, + "Label": "20136-109450 via Ribbon Synapse from 46026 -> 109455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46026, + "TargetID": 109455, + "Directional": true + }] + }, { + "ID": 12762, + "SourceStructureID": 20136, + "TargetStructureID": 109456, + "Label": "20136-109456 via Ribbon Synapse from 46026 -> 109457", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46026, + "TargetID": 109457, + "Directional": true + }] + }, { + "ID": 12763, + "SourceStructureID": 20136, + "TargetStructureID": 109458, + "Label": "20136-109458 via Ribbon Synapse from 46026 -> 109471", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46026, + "TargetID": 109471, + "Directional": true + }] + }, { + "ID": 12764, + "SourceStructureID": 20136, + "TargetStructureID": 109468, + "Label": "20136-109468 via Ribbon Synapse from 46025 -> 109470", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46025, + "TargetID": 109470, + "Directional": true + }] + }, { + "ID": 12765, + "SourceStructureID": 20136, + "TargetStructureID": 109472, + "Label": "20136-109472 via Ribbon Synapse from 46024 -> 109474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46024, + "TargetID": 109474, + "Directional": true + }] + }, { + "ID": 12766, + "SourceStructureID": 20136, + "TargetStructureID": 109479, + "Label": "20136-109479 via Ribbon Synapse from 46024 -> 109480", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46024, + "TargetID": 109480, + "Directional": true + }] + }, { + "ID": 12767, + "SourceStructureID": 20136, + "TargetStructureID": 109488, + "Label": "20136-109488 via Ribbon Synapse from 109489 -> 109490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109489, + "TargetID": 109490, + "Directional": true + }] + }, { + "ID": 12768, + "SourceStructureID": 20136, + "TargetStructureID": 109491, + "Label": "20136-109491 via Ribbon Synapse from 109489 -> 109494", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109489, + "TargetID": 109494, + "Directional": true + }] + }, { + "ID": 12769, + "SourceStructureID": 20136, + "TargetStructureID": 109497, + "Label": "20136-109497 via Ribbon Synapse from 109503 -> 109506", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109503, + "TargetID": 109506, + "Directional": true + }] + }, { + "ID": 12770, + "SourceStructureID": 20136, + "TargetStructureID": 109504, + "Label": "20136-109504 via Ribbon Synapse from 109503 -> 109505", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109503, + "TargetID": 109505, + "Directional": true + }] + }, { + "ID": 12771, + "SourceStructureID": 20136, + "TargetStructureID": 109528, + "Label": "20136-109528 via Ribbon Synapse from 46020 -> 109529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46020, + "TargetID": 109529, + "Directional": true + }] + }, { + "ID": 12772, + "SourceStructureID": 20136, + "TargetStructureID": 109530, + "Label": "20136-109530 via Ribbon Synapse from 46020 -> 109531", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46020, + "TargetID": 109531, + "Directional": true + }] + }, { + "ID": 12773, + "SourceStructureID": 20136, + "TargetStructureID": 109533, + "Label": "20136-109533 via BC Conventional Synapse from 109538 -> 109539", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109538, + "TargetID": 109539, + "Directional": true + }] + }, { + "ID": 12774, + "SourceStructureID": 20136, + "TargetStructureID": 109547, + "Label": "20136-109547 via Ribbon Synapse from 46016 -> 109548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46016, + "TargetID": 109548, + "Directional": true + }] + }, { + "ID": 12775, + "SourceStructureID": 20136, + "TargetStructureID": 109554, + "Label": "20136-109554 via BC Conventional Synapse from 109541 -> 109555", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109541, + "TargetID": 109555, + "Directional": true + }] + }, { + "ID": 12776, + "SourceStructureID": 20136, + "TargetStructureID": 109575, + "Label": "20136-109575 via BC Conventional Synapse from 109595 -> 109596", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109595, + "TargetID": 109596, + "Directional": true + }] + }, { + "ID": 12777, + "SourceStructureID": 20136, + "TargetStructureID": 109577, + "Label": "20136-109577 via Ribbon Synapse from 46016 -> 109679, 46017 -> 109581", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46016, + "TargetID": 109679, + "Directional": true + }, { + "SourceID": 46017, + "TargetID": 109581, + "Directional": true + }] + }, { + "ID": 12778, + "SourceStructureID": 20136, + "TargetStructureID": 109597, + "Label": "20136-109597 via Ribbon Synapse from 109644 -> 109669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109644, + "TargetID": 109669, + "Directional": true + }] + }, { + "ID": 12779, + "SourceStructureID": 20136, + "TargetStructureID": 109608, + "Label": "20136-109608 via Ribbon Synapse from 109644 -> 109668", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109644, + "TargetID": 109668, + "Directional": true + }] + }, { + "ID": 12780, + "SourceStructureID": 20136, + "TargetStructureID": 109758, + "Label": "20136-109758 via Ribbon Synapse from 109759 -> 109760", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109759, + "TargetID": 109760, + "Directional": true + }] + }, { + "ID": 12781, + "SourceStructureID": 20136, + "TargetStructureID": 109762, + "Label": "20136-109762 via Ribbon Synapse from 109761 -> 109766", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109761, + "TargetID": 109766, + "Directional": true + }] + }, { + "ID": 12782, + "SourceStructureID": 20136, + "TargetStructureID": 109788, + "Label": "20136-109788 via Ribbon Synapse from 46012 -> 109789", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46012, + "TargetID": 109789, + "Directional": true + }] + }, { + "ID": 12783, + "SourceStructureID": 20136, + "TargetStructureID": 109797, + "Label": "20136-109797 via Ribbon Synapse from 46012 -> 109798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46012, + "TargetID": 109798, + "Directional": true + }] + }, { + "ID": 12784, + "SourceStructureID": 20136, + "TargetStructureID": 109799, + "Label": "20136-109799 via BC Conventional Synapse from 119234 -> 119233", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119234, + "TargetID": 119233, + "Directional": true + }] + }, { + "ID": 12785, + "SourceStructureID": 20136, + "TargetStructureID": 109802, + "Label": "20136-109802 via Ribbon Synapse from 29150 -> 109863, 46013 -> 109810, 109876 -> 109878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29150, + "TargetID": 109863, + "Directional": true + }, { + "SourceID": 46013, + "TargetID": 109810, + "Directional": true + }, { + "SourceID": 109876, + "TargetID": 109878, + "Directional": true + }] + }, { + "ID": 12786, + "SourceStructureID": 20136, + "TargetStructureID": 109812, + "Label": "20136-109812 via Ribbon Synapse from 46013 -> 109813", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46013, + "TargetID": 109813, + "Directional": true + }] + }, { + "ID": 12787, + "SourceStructureID": 20136, + "TargetStructureID": 109816, + "Label": "20136-109816 via Ribbon Synapse from 29145 -> 109818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29145, + "TargetID": 109818, + "Directional": true + }] + }, { + "ID": 12788, + "SourceStructureID": 20136, + "TargetStructureID": 109824, + "Label": "20136-109824 via Ribbon Synapse from 109829 -> 109826", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109829, + "TargetID": 109826, + "Directional": true + }] + }, { + "ID": 12789, + "SourceStructureID": 20136, + "TargetStructureID": 109827, + "Label": "20136-109827 via Ribbon Synapse from 109829 -> 109830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109829, + "TargetID": 109830, + "Directional": true + }] + }, { + "ID": 12790, + "SourceStructureID": 20136, + "TargetStructureID": 109839, + "Label": "20136-109839 via Ribbon Synapse from 109838 -> 109841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109838, + "TargetID": 109841, + "Directional": true + }] + }, { + "ID": 12791, + "SourceStructureID": 20136, + "TargetStructureID": 109842, + "Label": "20136-109842 via Ribbon Synapse from 29146 -> 109843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29146, + "TargetID": 109843, + "Directional": true + }] + }, { + "ID": 12792, + "SourceStructureID": 20136, + "TargetStructureID": 109844, + "Label": "20136-109844 via Ribbon Synapse from 29146 -> 109845", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29146, + "TargetID": 109845, + "Directional": true + }] + }, { + "ID": 12793, + "SourceStructureID": 20136, + "TargetStructureID": 109851, + "Label": "20136-109851 via Ribbon Synapse from 29149 -> 109852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29149, + "TargetID": 109852, + "Directional": true + }] + }, { + "ID": 12794, + "SourceStructureID": 20136, + "TargetStructureID": 109857, + "Label": "20136-109857 via Ribbon Synapse from 29150 -> 109859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29150, + "TargetID": 109859, + "Directional": true + }] + }, { + "ID": 12795, + "SourceStructureID": 20136, + "TargetStructureID": 109865, + "Label": "20136-109865 via Ribbon Synapse from 29153 -> 109866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29153, + "TargetID": 109866, + "Directional": true + }] + }, { + "ID": 12796, + "SourceStructureID": 20136, + "TargetStructureID": 109873, + "Label": "20136-109873 via Ribbon Synapse from 109876 -> 109877", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109876, + "TargetID": 109877, + "Directional": true + }] + }, { + "ID": 12797, + "SourceStructureID": 20136, + "TargetStructureID": 109879, + "Label": "20136-109879 via Ribbon Synapse from 109876 -> 109880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109876, + "TargetID": 109880, + "Directional": true + }] + }, { + "ID": 12798, + "SourceStructureID": 20136, + "TargetStructureID": 109895, + "Label": "20136-109895 via Ribbon Synapse from 109894 -> 109896", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109894, + "TargetID": 109896, + "Directional": true + }] + }, { + "ID": 12799, + "SourceStructureID": 20136, + "TargetStructureID": 109900, + "Label": "20136-109900 via Ribbon Synapse from 109902 -> 109907", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109902, + "TargetID": 109907, + "Directional": true + }] + }, { + "ID": 12800, + "SourceStructureID": 20136, + "TargetStructureID": 109905, + "Label": "20136-109905 via Ribbon Synapse from 109902 -> 109906", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109902, + "TargetID": 109906, + "Directional": true + }] + }, { + "ID": 12801, + "SourceStructureID": 20136, + "TargetStructureID": 110186, + "Label": "20136-110186 via Ribbon Synapse from 110185 -> 110187", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110185, + "TargetID": 110187, + "Directional": true + }] + }, { + "ID": 12802, + "SourceStructureID": 20136, + "TargetStructureID": 110204, + "Label": "20136-110204 via Ribbon Synapse from 110203 -> 110205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110203, + "TargetID": 110205, + "Directional": true + }] + }, { + "ID": 12803, + "SourceStructureID": 20136, + "TargetStructureID": 110208, + "Label": "20136-110208 via BC Conventional Synapse from 110217 -> 110218", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110217, + "TargetID": 110218, + "Directional": true + }] + }, { + "ID": 12804, + "SourceStructureID": 20136, + "TargetStructureID": 110271, + "Label": "20136-110271 via Ribbon Synapse from 110237 -> 110288, 110299 -> 110300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110237, + "TargetID": 110288, + "Directional": true + }, { + "SourceID": 110299, + "TargetID": 110300, + "Directional": true + }] + }, { + "ID": 12805, + "SourceStructureID": 20136, + "TargetStructureID": 110289, + "Label": "20136-110289 via Ribbon Synapse from 110237 -> 110290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110237, + "TargetID": 110290, + "Directional": true + }] + }, { + "ID": 12806, + "SourceStructureID": 20136, + "TargetStructureID": 110292, + "Label": "20136-110292 via Ribbon Synapse from 110287 -> 110294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110287, + "TargetID": 110294, + "Directional": true + }] + }, { + "ID": 12807, + "SourceStructureID": 20136, + "TargetStructureID": 110295, + "Label": "20136-110295 via Ribbon Synapse from 110287 -> 110298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110287, + "TargetID": 110298, + "Directional": true + }] + }, { + "ID": 12808, + "SourceStructureID": 20136, + "TargetStructureID": 110301, + "Label": "20136-110301 via Ribbon Synapse from 110299 -> 110302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110299, + "TargetID": 110302, + "Directional": true + }] + }, { + "ID": 12809, + "SourceStructureID": 20136, + "TargetStructureID": 110316, + "Label": "20136-110316 via Ribbon Synapse from 110315 -> 110318", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110315, + "TargetID": 110318, + "Directional": true + }] + }, { + "ID": 12810, + "SourceStructureID": 20136, + "TargetStructureID": 110352, + "Label": "20136-110352 via Ribbon Synapse from 110350 -> 110355", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110350, + "TargetID": 110355, + "Directional": true + }] + }, { + "ID": 12811, + "SourceStructureID": 20136, + "TargetStructureID": 110356, + "Label": "20136-110356 via Ribbon Synapse from 93855 -> 110359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93855, + "TargetID": 110359, + "Directional": true + }] + }, { + "ID": 12812, + "SourceStructureID": 20136, + "TargetStructureID": 110364, + "Label": "20136-110364 via Ribbon Synapse from 93855 -> 110366", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93855, + "TargetID": 110366, + "Directional": true + }] + }, { + "ID": 12813, + "SourceStructureID": 20136, + "TargetStructureID": 110371, + "Label": "20136-110371 via Ribbon Synapse from 110370 -> 110373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110370, + "TargetID": 110373, + "Directional": true + }] + }, { + "ID": 12814, + "SourceStructureID": 20136, + "TargetStructureID": 110374, + "Label": "20136-110374 via Ribbon Synapse from 110370 -> 110377", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110370, + "TargetID": 110377, + "Directional": true + }] + }, { + "ID": 12815, + "SourceStructureID": 20136, + "TargetStructureID": 110385, + "Label": "20136-110385 via Ribbon Synapse from 93853 -> 110388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93853, + "TargetID": 110388, + "Directional": true + }] + }, { + "ID": 12816, + "SourceStructureID": 20136, + "TargetStructureID": 110386, + "Label": "20136-110386 via Ribbon Synapse from 93853 -> 110387", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93853, + "TargetID": 110387, + "Directional": true + }] + }, { + "ID": 12817, + "SourceStructureID": 20136, + "TargetStructureID": 110416, + "Label": "20136-110416 via Ribbon Synapse from 110415 -> 110417", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110415, + "TargetID": 110417, + "Directional": true + }] + }, { + "ID": 12818, + "SourceStructureID": 20136, + "TargetStructureID": 110418, + "Label": "20136-110418 via Ribbon Synapse from 110415 -> 110419", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 110415, + "TargetID": 110419, + "Directional": true + }] + }, { + "ID": 12819, + "SourceStructureID": 20299, + "TargetStructureID": 285, + "Label": "20299-285 via Conventional from 20302 -> 20314", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20302, + "TargetID": 20314, + "Directional": true + }] + }, { + "ID": 12820, + "SourceStructureID": 20299, + "TargetStructureID": 286, + "Label": "20299-286 via Conventional from 20317 -> 45607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20317, + "TargetID": 45607, + "Directional": true + }] + }, { + "ID": 12821, + "SourceStructureID": 20299, + "TargetStructureID": 464, + "Label": "20299-464 via Conventional from 55904 -> 121839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55904, + "TargetID": 121839, + "Directional": true + }] + }, { + "ID": 12822, + "SourceStructureID": 20299, + "TargetStructureID": 483, + "Label": "20299-483 via Conventional from 33599 -> 102549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33599, + "TargetID": 102549, + "Directional": true + }] + }, { + "ID": 12823, + "SourceStructureID": 20299, + "TargetStructureID": 71935, + "Label": "20299-71935 via Conventional from 121494 -> 121495", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121494, + "TargetID": 121495, + "Directional": true + }] + }, { + "ID": 12824, + "SourceStructureID": 20311, + "TargetStructureID": 285, + "Label": "20311-285 via Conventional from 20312 -> 20313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20312, + "TargetID": 20313, + "Directional": true + }] + }, { + "ID": 12825, + "SourceStructureID": 20311, + "TargetStructureID": 286, + "Label": "20311-286 via Conventional from 30343 -> 26463, 93858 -> 93859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30343, + "TargetID": 26463, + "Directional": true + }, { + "SourceID": 93858, + "TargetID": 93859, + "Directional": true + }] + }, { + "ID": 12826, + "SourceStructureID": 20311, + "TargetStructureID": 525, + "Label": "20311-525 via Conventional from 30341 -> 6280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30341, + "TargetID": 6280, + "Directional": true + }] + }, { + "ID": 12827, + "SourceStructureID": 20327, + "TargetStructureID": 15796, + "Label": "20327-15796 via Conventional from 20329 -> 20267", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20329, + "TargetID": 20267, + "Directional": true + }] + }, { + "ID": 12828, + "SourceStructureID": 20537, + "TargetStructureID": 5482, + "Label": "20537-5482 via Conventional from 23510 -> 23511", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23510, + "TargetID": 23511, + "Directional": true + }] + }, { + "ID": 12829, + "SourceStructureID": 20537, + "TargetStructureID": 19571, + "Label": "20537-19571 via Conventional from 23507 -> 22715", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23507, + "TargetID": 22715, + "Directional": true + }] + }, { + "ID": 12830, + "SourceStructureID": 20608, + "TargetStructureID": 1620, + "Label": "20608-1620 via Conventional from 20612 -> 20613", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20612, + "TargetID": 20613, + "Directional": true + }] + }, { + "ID": 12831, + "SourceStructureID": 20728, + "TargetStructureID": 1620, + "Label": "20728-1620 via Conventional from 33075 -> 16904, 33076 -> 33077", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33075, + "TargetID": 16904, + "Directional": true + }, { + "SourceID": 33076, + "TargetID": 33077, + "Directional": true + }] + }, { + "ID": 12832, + "SourceStructureID": 20728, + "TargetStructureID": 6997, + "Label": "20728-6997 via Conventional from 33078 -> 33079", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33078, + "TargetID": 33079, + "Directional": true + }] + }, { + "ID": 12833, + "SourceStructureID": 20728, + "TargetStructureID": 11401, + "Label": "20728-11401 via Conventional from 20729 -> 16834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 20729, + "TargetID": 16834, + "Directional": true + }] + }, { + "ID": 12834, + "SourceStructureID": 21094, + "TargetStructureID": 165, + "Label": "21094-165 via Conventional from 21127 -> 7089, 21130 -> 21131", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21127, + "TargetID": 7089, + "Directional": true + }, { + "SourceID": 21130, + "TargetID": 21131, + "Directional": true + }] + }, { + "ID": 12835, + "SourceStructureID": 21094, + "TargetStructureID": 424, + "Label": "21094-424 via Conventional from 21108 -> 19512", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21108, + "TargetID": 19512, + "Directional": true + }] + }, { + "ID": 12836, + "SourceStructureID": 21094, + "TargetStructureID": 4850, + "Label": "21094-4850 via Conventional from 21095 -> 14541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21095, + "TargetID": 14541, + "Directional": true + }] + }, { + "ID": 12837, + "SourceStructureID": 21094, + "TargetStructureID": 128015, + "Label": "21094-128015 via Conventional from 21136 -> 128047", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 21136, + "TargetID": 128047, + "Directional": true + }] + }, { + "ID": 12838, + "SourceStructureID": 21155, + "TargetStructureID": 19362, + "Label": "21155-19362 via Conventional from 23448 -> 23446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23448, + "TargetID": 23446, + "Directional": true + }] + }, { + "ID": 12839, + "SourceStructureID": 21159, + "TargetStructureID": 19362, + "Label": "21159-19362 via Conventional from 23428 -> 23427", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23428, + "TargetID": 23427, + "Directional": true + }] + }, { + "ID": 12840, + "SourceStructureID": 21163, + "TargetStructureID": 6910, + "Label": "21163-6910 via Conventional from 43000 -> 42999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43000, + "TargetID": 42999, + "Directional": true + }] + }, { + "ID": 12841, + "SourceStructureID": 21299, + "TargetStructureID": 3865, + "Label": "21299-3865 via Ribbon Synapse from 39303 -> 132328", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39303, + "TargetID": 132328, + "Directional": true + }] + }, { + "ID": 12842, + "SourceStructureID": 21299, + "TargetStructureID": 5435, + "Label": "21299-5435 via Ribbon Synapse from 48942 -> 126008", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48942, + "TargetID": 126008, + "Directional": true + }] + }, { + "ID": 12843, + "SourceStructureID": 21299, + "TargetStructureID": 6300, + "Label": "21299-6300 via Ribbon Synapse from 21310 -> 21311", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21310, + "TargetID": 21311, + "Directional": true + }] + }, { + "ID": 12844, + "SourceStructureID": 21299, + "TargetStructureID": 8575, + "Label": "21299-8575 via Ribbon Synapse from 21305 -> 62298, 21306 -> 62297, 62322 -> 62321, 125942 -> 62300", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 21305, + "TargetID": 62298, + "Directional": true + }, { + "SourceID": 21306, + "TargetID": 62297, + "Directional": true + }, { + "SourceID": 62322, + "TargetID": 62321, + "Directional": true + }, { + "SourceID": 125942, + "TargetID": 62300, + "Directional": true + }] + }, { + "ID": 12845, + "SourceStructureID": 21299, + "TargetStructureID": 9769, + "Label": "21299-9769 via Ribbon Synapse from 29853 -> 29850, 119071 -> 119070", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29853, + "TargetID": 29850, + "Directional": true + }, { + "SourceID": 119071, + "TargetID": 119070, + "Directional": true + }] + }, { + "ID": 12846, + "SourceStructureID": 21299, + "TargetStructureID": 16002, + "Label": "21299-16002 via Ribbon Synapse from 46341 -> 16005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46341, + "TargetID": 16005, + "Directional": true + }] + }, { + "ID": 12847, + "SourceStructureID": 21299, + "TargetStructureID": 29702, + "Label": "21299-29702 via BC Conventional Synapse from 72630 -> 72629", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72630, + "TargetID": 72629, + "Directional": true + }] + }, { + "ID": 12848, + "SourceStructureID": 21299, + "TargetStructureID": 34055, + "Label": "21299-34055 via Ribbon Synapse from 34093 -> 34087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34093, + "TargetID": 34087, + "Directional": true + }] + }, { + "ID": 12849, + "SourceStructureID": 21299, + "TargetStructureID": 35811, + "Label": "21299-35811 via Ribbon Synapse from 35833 -> 35827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35833, + "TargetID": 35827, + "Directional": true + }] + }, { + "ID": 12850, + "SourceStructureID": 21299, + "TargetStructureID": 39299, + "Label": "21299-39299 via Ribbon Synapse from 39303 -> 39302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39303, + "TargetID": 39302, + "Directional": true + }] + }, { + "ID": 12851, + "SourceStructureID": 21299, + "TargetStructureID": 44346, + "Label": "21299-44346 via Ribbon Synapse from 44440 -> 44439, 44441 -> 44439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44440, + "TargetID": 44439, + "Directional": true + }, { + "SourceID": 44441, + "TargetID": 44439, + "Directional": true + }] + }, { + "ID": 12852, + "SourceStructureID": 21299, + "TargetStructureID": 87972, + "Label": "21299-87972 via Ribbon Synapse from 44440 -> 87978", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44440, + "TargetID": 87978, + "Directional": true + }] + }, { + "ID": 12853, + "SourceStructureID": 21299, + "TargetStructureID": 87979, + "Label": "21299-87979 via Ribbon Synapse from 44441 -> 87980", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44441, + "TargetID": 87980, + "Directional": true + }] + }, { + "ID": 12854, + "SourceStructureID": 21299, + "TargetStructureID": 88059, + "Label": "21299-88059 via Ribbon Synapse from 48905 -> 88060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48905, + "TargetID": 88060, + "Directional": true + }] + }, { + "ID": 12855, + "SourceStructureID": 21299, + "TargetStructureID": 91737, + "Label": "21299-91737 via BC Conventional Synapse from 92845 -> 92846", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92845, + "TargetID": 92846, + "Directional": true + }] + }, { + "ID": 12856, + "SourceStructureID": 21299, + "TargetStructureID": 98238, + "Label": "21299-98238 via BC Conventional Synapse from 98242 -> 98243", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 98242, + "TargetID": 98243, + "Directional": true + }] + }, { + "ID": 12857, + "SourceStructureID": 21299, + "TargetStructureID": 98838, + "Label": "21299-98838 via Ribbon Synapse from 48851 -> 98840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48851, + "TargetID": 98840, + "Directional": true + }] + }, { + "ID": 12858, + "SourceStructureID": 21314, + "TargetStructureID": 5457, + "Label": "21314-5457 via Conventional from 103235 -> 15343", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103235, + "TargetID": 15343, + "Directional": true + }] + }, { + "ID": 12859, + "SourceStructureID": 21384, + "TargetStructureID": 19571, + "Label": "21384-19571 via Conventional from 22768 -> 22769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22768, + "TargetID": 22769, + "Directional": true + }] + }, { + "ID": 12860, + "SourceStructureID": 21384, + "TargetStructureID": 21779, + "Label": "21384-21779 via Conventional from 32260 -> 32071", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32260, + "TargetID": 32071, + "Directional": true + }] + }, { + "ID": 12861, + "SourceStructureID": 21386, + "TargetStructureID": 21779, + "Label": "21386-21779 via Conventional from 32259 -> 32073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32259, + "TargetID": 32073, + "Directional": true + }] + }, { + "ID": 12862, + "SourceStructureID": 21778, + "TargetStructureID": 21779, + "Label": "21778-21779 via Conventional from 34536 -> 32060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34536, + "TargetID": 32060, + "Directional": true + }] + }, { + "ID": 12863, + "SourceStructureID": 21817, + "TargetStructureID": 443, + "Label": "21817-443 via Conventional from 34612 -> 2031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34612, + "TargetID": 2031, + "Directional": true + }] + }, { + "ID": 12864, + "SourceStructureID": 21824, + "TargetStructureID": 5457, + "Label": "21824-5457 via Conventional from 103236 -> 15345", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103236, + "TargetID": 15345, + "Directional": true + }] + }, { + "ID": 12865, + "SourceStructureID": 21855, + "TargetStructureID": 7461, + "Label": "21855-7461 via Conventional from 41129 -> 30456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41129, + "TargetID": 30456, + "Directional": true + }] + }, { + "ID": 12866, + "SourceStructureID": 22225, + "TargetStructureID": 5545, + "Label": "22225-5545 via Conventional from 128202 -> 128203", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128202, + "TargetID": 128203, + "Directional": true + }] + }, { + "ID": 12867, + "SourceStructureID": 22225, + "TargetStructureID": 128205, + "Label": "22225-128205 via Conventional from 128204 -> 128206", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128204, + "TargetID": 128206, + "Directional": true + }] + }, { + "ID": 12868, + "SourceStructureID": 22227, + "TargetStructureID": 98127, + "Label": "22227-98127 via Conventional from 98847 -> 98846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98847, + "TargetID": 98846, + "Directional": true + }] + }, { + "ID": 12869, + "SourceStructureID": 22228, + "TargetStructureID": 4850, + "Label": "22228-4850 via Conventional from 97962 -> 14540", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97962, + "TargetID": 14540, + "Directional": true + }] + }, { + "ID": 12870, + "SourceStructureID": 22232, + "TargetStructureID": 5295, + "Label": "22232-5295 via Conventional from 68810 -> 59169", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68810, + "TargetID": 59169, + "Directional": true + }] + }, { + "ID": 12871, + "SourceStructureID": 22232, + "TargetStructureID": 5499, + "Label": "22232-5499 via Conventional from 68814 -> 95214, 68819 -> 95215", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68814, + "TargetID": 95214, + "Directional": true + }, { + "SourceID": 68819, + "TargetID": 95215, + "Directional": true + }] + }, { + "ID": 12872, + "SourceStructureID": 22232, + "TargetStructureID": 5922, + "Label": "22232-5922 via Conventional from 68827 -> 68847, 68850 -> 68851", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68827, + "TargetID": 68847, + "Directional": true + }, { + "SourceID": 68850, + "TargetID": 68851, + "Directional": true + }] + }, { + "ID": 12873, + "SourceStructureID": 22232, + "TargetStructureID": 8575, + "Label": "22232-8575 via Conventional from 68806 -> 61535", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68806, + "TargetID": 61535, + "Directional": true + }] + }, { + "ID": 12874, + "SourceStructureID": 22349, + "TargetStructureID": 4943, + "Label": "22349-4943 via Conventional from 96462 -> 4957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96462, + "TargetID": 4957, + "Directional": true + }] + }, { + "ID": 12875, + "SourceStructureID": 22358, + "TargetStructureID": 398, + "Label": "22358-398 via Conventional from 37571 -> 37572", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37571, + "TargetID": 37572, + "Directional": true + }] + }, { + "ID": 12876, + "SourceStructureID": 22368, + "TargetStructureID": 591, + "Label": "22368-591 via Conventional from 29788 -> 10079, 46628 -> 46626", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29788, + "TargetID": 10079, + "Directional": true + }, { + "SourceID": 46628, + "TargetID": 46626, + "Directional": true + }] + }, { + "ID": 12877, + "SourceStructureID": 22374, + "TargetStructureID": 12208, + "Label": "22374-12208 via Cistern Pre from 35736 -> 35737", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 35736, + "TargetID": 35737, + "Directional": true + }] + }, { + "ID": 12878, + "SourceStructureID": 22597, + "TargetStructureID": 98127, + "Label": "22597-98127 via Conventional from 98139 -> 98138", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98139, + "TargetID": 98138, + "Directional": true + }] + }, { + "ID": 12879, + "SourceStructureID": 22634, + "TargetStructureID": 418, + "Label": "22634-418 via Conventional from 22661 -> 129692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 22661, + "TargetID": 129692, + "Directional": true + }] + }, { + "ID": 12880, + "SourceStructureID": 22760, + "TargetStructureID": 179, + "Label": "22760-179 via Conventional from 25310 -> 25309", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25310, + "TargetID": 25309, + "Directional": true + }] + }, { + "ID": 12881, + "SourceStructureID": 22772, + "TargetStructureID": 61439, + "Label": "22772-61439 via Conventional from 61441 -> 61440", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61441, + "TargetID": 61440, + "Directional": true + }] + }, { + "ID": 12882, + "SourceStructureID": 22791, + "TargetStructureID": 5331, + "Label": "22791-5331 via Conventional from 39187 -> 39186", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39187, + "TargetID": 39186, + "Directional": true + }] + }, { + "ID": 12883, + "SourceStructureID": 22974, + "TargetStructureID": 22974, + "Label": "22974-22974 via Conventional from 70263 -> 70261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70263, + "TargetID": 70261, + "Directional": true + }] + }, { + "ID": 12884, + "SourceStructureID": 22994, + "TargetStructureID": 68539, + "Label": "22994-68539 via Ribbon Synapse from 75813 -> 69158, 75931 -> 75932", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75813, + "TargetID": 69158, + "Directional": true + }, { + "SourceID": 75931, + "TargetID": 75932, + "Directional": true + }] + }, { + "ID": 12885, + "SourceStructureID": 22994, + "TargetStructureID": 75933, + "Label": "22994-75933 via Ribbon Synapse from 75931 -> 75934", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75931, + "TargetID": 75934, + "Directional": true + }] + }, { + "ID": 12886, + "SourceStructureID": 22994, + "TargetStructureID": 78909, + "Label": "22994-78909 via Ribbon Synapse from 75813 -> 87548", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75813, + "TargetID": 87548, + "Directional": true + }] + }, { + "ID": 12887, + "SourceStructureID": 23323, + "TargetStructureID": 5609, + "Label": "23323-5609 via Conventional from 31391 -> 31390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31391, + "TargetID": 31390, + "Directional": true + }] + }, { + "ID": 12888, + "SourceStructureID": 23512, + "TargetStructureID": 168, + "Label": "23512-168 via Conventional from 23515 -> 125601", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23515, + "TargetID": 125601, + "Directional": true + }] + }, { + "ID": 12889, + "SourceStructureID": 23512, + "TargetStructureID": 170, + "Label": "23512-170 via Conventional from 23514 -> 1371, 23517 -> 1274, 23531 -> 23532, 23534 -> 1296, 23535 -> 89704", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23514, + "TargetID": 1371, + "Directional": true + }, { + "SourceID": 23517, + "TargetID": 1274, + "Directional": true + }, { + "SourceID": 23531, + "TargetID": 23532, + "Directional": true + }, { + "SourceID": 23534, + "TargetID": 1296, + "Directional": true + }, { + "SourceID": 23535, + "TargetID": 89704, + "Directional": true + }] + }, { + "ID": 12890, + "SourceStructureID": 23512, + "TargetStructureID": 1724, + "Label": "23512-1724 via Conventional from 23540 -> 4008, 23542 -> 1742, 101787 -> 101788", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23540, + "TargetID": 4008, + "Directional": true + }, { + "SourceID": 23542, + "TargetID": 1742, + "Directional": true + }, { + "SourceID": 101787, + "TargetID": 101788, + "Directional": true + }] + }, { + "ID": 12891, + "SourceStructureID": 23512, + "TargetStructureID": 4569, + "Label": "23512-4569 via Conventional from 23535 -> 52517, 23536 -> 99075, 23539 -> 23780", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23535, + "TargetID": 52517, + "Directional": true + }, { + "SourceID": 23536, + "TargetID": 99075, + "Directional": true + }, { + "SourceID": 23539, + "TargetID": 23780, + "Directional": true + }] + }, { + "ID": 12892, + "SourceStructureID": 23512, + "TargetStructureID": 5278, + "Label": "23512-5278 via Conventional from 99313 -> 20113", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99313, + "TargetID": 20113, + "Directional": true + }] + }, { + "ID": 12893, + "SourceStructureID": 23512, + "TargetStructureID": 5530, + "Label": "23512-5530 via Conventional from 23520 -> 76494", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23520, + "TargetID": 76494, + "Directional": true + }] + }, { + "ID": 12894, + "SourceStructureID": 23512, + "TargetStructureID": 6156, + "Label": "23512-6156 via Conventional from 133160 -> 133159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133160, + "TargetID": 133159, + "Directional": true + }] + }, { + "ID": 12895, + "SourceStructureID": 23512, + "TargetStructureID": 10596, + "Label": "23512-10596 via Conventional from 23521 -> 33213", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23521, + "TargetID": 33213, + "Directional": true + }] + }, { + "ID": 12896, + "SourceStructureID": 23512, + "TargetStructureID": 33675, + "Label": "23512-33675 via Conventional from 33681 -> 33680", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33681, + "TargetID": 33680, + "Directional": true + }] + }, { + "ID": 12897, + "SourceStructureID": 23512, + "TargetStructureID": 82677, + "Label": "23512-82677 via Conventional from 83886 -> 83887", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83886, + "TargetID": 83887, + "Directional": true + }] + }, { + "ID": 12898, + "SourceStructureID": 23566, + "TargetStructureID": 168, + "Label": "23566-168 via Conventional from 23573 -> 23576, 23574 -> 23575", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23573, + "TargetID": 23576, + "Directional": true + }, { + "SourceID": 23574, + "TargetID": 23575, + "Directional": true + }] + }, { + "ID": 12899, + "SourceStructureID": 23566, + "TargetStructureID": 170, + "Label": "23566-170 via Conventional from 88393 -> 88394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88393, + "TargetID": 88394, + "Directional": true + }] + }, { + "ID": 12900, + "SourceStructureID": 23566, + "TargetStructureID": 4569, + "Label": "23566-4569 via Conventional from 23570 -> 23565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23570, + "TargetID": 23565, + "Directional": true + }] + }, { + "ID": 12901, + "SourceStructureID": 23836, + "TargetStructureID": 345, + "Label": "23836-345 via Conventional from 23854 -> 64334", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23854, + "TargetID": 64334, + "Directional": true + }] + }, { + "ID": 12902, + "SourceStructureID": 23836, + "TargetStructureID": 606, + "Label": "23836-606 via Conventional from 23837 -> 10512, 23838 -> 10510, 23847 -> 23848, 23863 -> 54138, 23866 -> 48126, 51776 -> 51775, 53643 -> 53645, 53912 -> 53909, 53914 -> 44234, 53927 -> 53926, 53935 -> 53936, 54561 -> 54562", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23837, + "TargetID": 10512, + "Directional": true + }, { + "SourceID": 23838, + "TargetID": 10510, + "Directional": true + }, { + "SourceID": 23847, + "TargetID": 23848, + "Directional": true + }, { + "SourceID": 23863, + "TargetID": 54138, + "Directional": true + }, { + "SourceID": 23866, + "TargetID": 48126, + "Directional": true + }, { + "SourceID": 51776, + "TargetID": 51775, + "Directional": true + }, { + "SourceID": 53643, + "TargetID": 53645, + "Directional": true + }, { + "SourceID": 53912, + "TargetID": 53909, + "Directional": true + }, { + "SourceID": 53914, + "TargetID": 44234, + "Directional": true + }, { + "SourceID": 53927, + "TargetID": 53926, + "Directional": true + }, { + "SourceID": 53935, + "TargetID": 53936, + "Directional": true + }, { + "SourceID": 54561, + "TargetID": 54562, + "Directional": true + }] + }, { + "ID": 12903, + "SourceStructureID": 23836, + "TargetStructureID": 5468, + "Label": "23836-5468 via Conventional from 23867 -> 23877", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23867, + "TargetID": 23877, + "Directional": true + }] + }, { + "ID": 12904, + "SourceStructureID": 23836, + "TargetStructureID": 5530, + "Label": "23836-5530 via Conventional from 23839 -> 23845", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23839, + "TargetID": 23845, + "Directional": true + }] + }, { + "ID": 12905, + "SourceStructureID": 23836, + "TargetStructureID": 5531, + "Label": "23836-5531 via Conventional from 106244 -> 59572", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106244, + "TargetID": 59572, + "Directional": true + }] + }, { + "ID": 12906, + "SourceStructureID": 23836, + "TargetStructureID": 5601, + "Label": "23836-5601 via Conventional from 23865 -> 127422, 127408 -> 127406", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23865, + "TargetID": 127422, + "Directional": true + }, { + "SourceID": 127408, + "TargetID": 127406, + "Directional": true + }] + }, { + "ID": 12907, + "SourceStructureID": 23836, + "TargetStructureID": 7594, + "Label": "23836-7594 via Conventional from 23864 -> 7609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23864, + "TargetID": 7609, + "Directional": true + }] + }, { + "ID": 12908, + "SourceStructureID": 23836, + "TargetStructureID": 23870, + "Label": "23836-23870 via Conventional from 23868 -> 92944, 23871 -> 23872", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 23868, + "TargetID": 92944, + "Directional": true + }, { + "SourceID": 23871, + "TargetID": 23872, + "Directional": true + }] + }, { + "ID": 12909, + "SourceStructureID": 23836, + "TargetStructureID": 74047, + "Label": "23836-74047 via Conventional from 74325 -> 74323", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74325, + "TargetID": 74323, + "Directional": true + }] + }, { + "ID": 12910, + "SourceStructureID": 24148, + "TargetStructureID": 5562, + "Label": "24148-5562 via Conventional from 76635 -> 76634", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76635, + "TargetID": 76634, + "Directional": true + }] + }, { + "ID": 12911, + "SourceStructureID": 24174, + "TargetStructureID": 5598, + "Label": "24174-5598 via Conventional from 24181 -> 115033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24181, + "TargetID": 115033, + "Directional": true + }] + }, { + "ID": 12912, + "SourceStructureID": 24174, + "TargetStructureID": 5609, + "Label": "24174-5609 via Conventional from 24175 -> 20646", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24175, + "TargetID": 20646, + "Directional": true + }] + }, { + "ID": 12913, + "SourceStructureID": 24174, + "TargetStructureID": 5641, + "Label": "24174-5641 via Conventional from 24177 -> 20678", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24177, + "TargetID": 20678, + "Directional": true + }] + }, { + "ID": 12914, + "SourceStructureID": 24241, + "TargetStructureID": 175, + "Label": "24241-175 via Conventional from 24258 -> 24288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24258, + "TargetID": 24288, + "Directional": true + }] + }, { + "ID": 12915, + "SourceStructureID": 24241, + "TargetStructureID": 178, + "Label": "24241-178 via Conventional from 24260 -> 3263, 24261 -> 3261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24260, + "TargetID": 3263, + "Directional": true + }, { + "SourceID": 24261, + "TargetID": 3261, + "Directional": true + }] + }, { + "ID": 12916, + "SourceStructureID": 24241, + "TargetStructureID": 325, + "Label": "24241-325 via Conventional from 24283 -> 31943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24283, + "TargetID": 31943, + "Directional": true + }] + }, { + "ID": 12917, + "SourceStructureID": 24241, + "TargetStructureID": 426, + "Label": "24241-426 via Conventional from 24276 -> 21583, 24277 -> 21584", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24276, + "TargetID": 21583, + "Directional": true + }, { + "SourceID": 24277, + "TargetID": 21584, + "Directional": true + }] + }, { + "ID": 12918, + "SourceStructureID": 24241, + "TargetStructureID": 9643, + "Label": "24241-9643 via Conventional from 24280 -> 9677", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24280, + "TargetID": 9677, + "Directional": true + }] + }, { + "ID": 12919, + "SourceStructureID": 24303, + "TargetStructureID": 598, + "Label": "24303-598 via Ribbon Synapse from 38782 -> 38775, 38784 -> 38783", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38782, + "TargetID": 38775, + "Directional": true + }, { + "SourceID": 38784, + "TargetID": 38783, + "Directional": true + }] + }, { + "ID": 12920, + "SourceStructureID": 24303, + "TargetStructureID": 606, + "Label": "24303-606 via Ribbon Synapse from 38780 -> 38779", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38780, + "TargetID": 38779, + "Directional": true + }] + }, { + "ID": 12921, + "SourceStructureID": 24303, + "TargetStructureID": 9769, + "Label": "24303-9769 via Ribbon Synapse from 30073 -> 30074", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30073, + "TargetID": 30074, + "Directional": true + }] + }, { + "ID": 12922, + "SourceStructureID": 24366, + "TargetStructureID": 12408, + "Label": "24366-12408 via Ribbon Synapse from 24377 -> 12431", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24377, + "TargetID": 12431, + "Directional": true + }] + }, { + "ID": 12923, + "SourceStructureID": 24366, + "TargetStructureID": 24381, + "Label": "24366-24381 via Ribbon Synapse from 24385 -> 24384", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 24385, + "TargetID": 24384, + "Directional": true + }] + }, { + "ID": 12924, + "SourceStructureID": 24381, + "TargetStructureID": 9769, + "Label": "24381-9769 via Conventional from 24382 -> 12401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24382, + "TargetID": 12401, + "Directional": true + }] + }, { + "ID": 12925, + "SourceStructureID": 24401, + "TargetStructureID": 598, + "Label": "24401-598 via Ribbon Synapse from 38801 -> 38802", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38801, + "TargetID": 38802, + "Directional": true + }] + }, { + "ID": 12926, + "SourceStructureID": 24401, + "TargetStructureID": 6155, + "Label": "24401-6155 via Ribbon Synapse from 104947 -> 104948", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 104947, + "TargetID": 104948, + "Directional": true + }] + }, { + "ID": 12927, + "SourceStructureID": 24401, + "TargetStructureID": 8575, + "Label": "24401-8575 via BC Conventional Synapse from 34802 -> 61561, 48107 -> 38618, 62383 -> 62382, 63011 -> 21646, 64348 -> 64347", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34802, + "TargetID": 61561, + "Directional": true + }, { + "SourceID": 48107, + "TargetID": 38618, + "Directional": true + }, { + "SourceID": 62383, + "TargetID": 62382, + "Directional": true + }, { + "SourceID": 63011, + "TargetID": 21646, + "Directional": true + }, { + "SourceID": 64348, + "TargetID": 64347, + "Directional": true + }] + }, { + "ID": 12928, + "SourceStructureID": 24401, + "TargetStructureID": 8575, + "Label": "24401-8575 via Ribbon Synapse from 32262 -> 21646", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32262, + "TargetID": 21646, + "Directional": true + }] + }, { + "ID": 12929, + "SourceStructureID": 24401, + "TargetStructureID": 11485, + "Label": "24401-11485 via Ribbon Synapse from 32266 -> 11486, 32268 -> 11486", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32266, + "TargetID": 11486, + "Directional": true + }, { + "SourceID": 32268, + "TargetID": 11486, + "Directional": true + }] + }, { + "ID": 12930, + "SourceStructureID": 24401, + "TargetStructureID": 15796, + "Label": "24401-15796 via Ribbon Synapse from 34751 -> 19834", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34751, + "TargetID": 19834, + "Directional": true + }] + }, { + "ID": 12931, + "SourceStructureID": 24401, + "TargetStructureID": 22232, + "Label": "24401-22232 via Ribbon Synapse from 48194 -> 68807", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48194, + "TargetID": 68807, + "Directional": true + }] + }, { + "ID": 12932, + "SourceStructureID": 24401, + "TargetStructureID": 22974, + "Label": "24401-22974 via Ribbon Synapse from 48068 -> 15478", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48068, + "TargetID": 15478, + "Directional": true + }] + }, { + "ID": 12933, + "SourceStructureID": 24401, + "TargetStructureID": 33127, + "Label": "24401-33127 via Ribbon Synapse from 34803 -> 34804", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34803, + "TargetID": 34804, + "Directional": true + }] + }, { + "ID": 12934, + "SourceStructureID": 24401, + "TargetStructureID": 35969, + "Label": "24401-35969 via Ribbon Synapse from 33070 -> 35971", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 33070, + "TargetID": 35971, + "Directional": true + }] + }, { + "ID": 12935, + "SourceStructureID": 24401, + "TargetStructureID": 39841, + "Label": "24401-39841 via Ribbon Synapse from 39842 -> 39843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39842, + "TargetID": 39843, + "Directional": true + }] + }, { + "ID": 12936, + "SourceStructureID": 24401, + "TargetStructureID": 47104, + "Label": "24401-47104 via Ribbon Synapse from 47128 -> 47129", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47128, + "TargetID": 47129, + "Directional": true + }] + }, { + "ID": 12937, + "SourceStructureID": 24401, + "TargetStructureID": 61864, + "Label": "24401-61864 via Ribbon Synapse from 48138 -> 69310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48138, + "TargetID": 69310, + "Directional": true + }] + }, { + "ID": 12938, + "SourceStructureID": 24401, + "TargetStructureID": 129666, + "Label": "24401-129666 via Ribbon Synapse from 34798 -> 129671", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34798, + "TargetID": 129671, + "Directional": true + }] + }, { + "ID": 12939, + "SourceStructureID": 24909, + "TargetStructureID": 5622, + "Label": "24909-5622 via Conventional from 24918 -> 24916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24918, + "TargetID": 24916, + "Directional": true + }] + }, { + "ID": 12940, + "SourceStructureID": 24909, + "TargetStructureID": 5671, + "Label": "24909-5671 via Conventional from 24919 -> 24933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24919, + "TargetID": 24933, + "Directional": true + }] + }, { + "ID": 12941, + "SourceStructureID": 24947, + "TargetStructureID": 7050, + "Label": "24947-7050 via Conventional from 24948 -> 24946", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 24948, + "TargetID": 24946, + "Directional": true + }] + }, { + "ID": 12942, + "SourceStructureID": 25155, + "TargetStructureID": 606, + "Label": "25155-606 via Ribbon Synapse from 34639 -> 44308, 38206 -> 44324, 44335 -> 44334, 50709 -> 50711, 53751 -> 44254, 54366 -> 54367, 54388 -> 54389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 34639, + "TargetID": 44308, + "Directional": true + }, { + "SourceID": 38206, + "TargetID": 44324, + "Directional": true + }, { + "SourceID": 44335, + "TargetID": 44334, + "Directional": true + }, { + "SourceID": 50709, + "TargetID": 50711, + "Directional": true + }, { + "SourceID": 53751, + "TargetID": 44254, + "Directional": true + }, { + "SourceID": 54366, + "TargetID": 54367, + "Directional": true + }, { + "SourceID": 54388, + "TargetID": 54389, + "Directional": true + }] + }, { + "ID": 12943, + "SourceStructureID": 25155, + "TargetStructureID": 5451, + "Label": "25155-5451 via BC Conventional Synapse from 55941 -> 55942", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55941, + "TargetID": 55942, + "Directional": true + }] + }, { + "ID": 12944, + "SourceStructureID": 25155, + "TargetStructureID": 7594, + "Label": "25155-7594 via Ribbon Synapse from 25156 -> 25153, 38207 -> 38208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 25156, + "TargetID": 25153, + "Directional": true + }, { + "SourceID": 38207, + "TargetID": 38208, + "Directional": true + }] + }, { + "ID": 12945, + "SourceStructureID": 25155, + "TargetStructureID": 9769, + "Label": "25155-9769 via Ribbon Synapse from 29883 -> 29884", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29883, + "TargetID": 29884, + "Directional": true + }] + }, { + "ID": 12946, + "SourceStructureID": 25155, + "TargetStructureID": 35188, + "Label": "25155-35188 via Ribbon Synapse from 38230 -> 38229", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38230, + "TargetID": 38229, + "Directional": true + }] + }, { + "ID": 12947, + "SourceStructureID": 25155, + "TargetStructureID": 35308, + "Label": "25155-35308 via Ribbon Synapse from 35315 -> 35312", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35315, + "TargetID": 35312, + "Directional": true + }] + }, { + "ID": 12948, + "SourceStructureID": 25182, + "TargetStructureID": 11229, + "Label": "25182-11229 via Conventional from 25183 -> 25184, 25189 -> 15631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25183, + "TargetID": 25184, + "Directional": true + }, { + "SourceID": 25189, + "TargetID": 15631, + "Directional": true + }] + }, { + "ID": 12949, + "SourceStructureID": 25293, + "TargetStructureID": 5528, + "Label": "25293-5528 via Conventional from 25294 -> 25295, 25298 -> 8258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25294, + "TargetID": 25295, + "Directional": true + }, { + "SourceID": 25298, + "TargetID": 8258, + "Directional": true + }] + }, { + "ID": 12950, + "SourceStructureID": 25293, + "TargetStructureID": 5530, + "Label": "25293-5530 via Conventional from 81128 -> 81129", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81128, + "TargetID": 81129, + "Directional": true + }] + }, { + "ID": 12951, + "SourceStructureID": 25293, + "TargetStructureID": 5531, + "Label": "25293-5531 via Conventional from 114739 -> 114740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114739, + "TargetID": 114740, + "Directional": true + }] + }, { + "ID": 12952, + "SourceStructureID": 25327, + "TargetStructureID": 519, + "Label": "25327-519 via Conventional from 25328 -> 25337, 25329 -> 25336, 25330 -> 25335, 25334 -> 16517", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25328, + "TargetID": 25337, + "Directional": true + }, { + "SourceID": 25329, + "TargetID": 25336, + "Directional": true + }, { + "SourceID": 25330, + "TargetID": 25335, + "Directional": true + }, { + "SourceID": 25334, + "TargetID": 16517, + "Directional": true + }] + }, { + "ID": 12953, + "SourceStructureID": 25327, + "TargetStructureID": 11401, + "Label": "25327-11401 via Conventional from 25340 -> 25341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25340, + "TargetID": 25341, + "Directional": true + }] + }, { + "ID": 12954, + "SourceStructureID": 25342, + "TargetStructureID": 11401, + "Label": "25342-11401 via Conventional from 25347 -> 25348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25347, + "TargetID": 25348, + "Directional": true + }] + }, { + "ID": 12955, + "SourceStructureID": 25350, + "TargetStructureID": 519, + "Label": "25350-519 via Conventional from 25351 -> 25349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25351, + "TargetID": 25349, + "Directional": true + }] + }, { + "ID": 12956, + "SourceStructureID": 25352, + "TargetStructureID": 469, + "Label": "25352-469 via Conventional from 32287 -> 32285", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32287, + "TargetID": 32285, + "Directional": true + }] + }, { + "ID": 12957, + "SourceStructureID": 25352, + "TargetStructureID": 519, + "Label": "25352-519 via Conventional from 25353 -> 25338", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25353, + "TargetID": 25338, + "Directional": true + }] + }, { + "ID": 12958, + "SourceStructureID": 25352, + "TargetStructureID": 8749, + "Label": "25352-8749 via Conventional from 32290 -> 32289", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32290, + "TargetID": 32289, + "Directional": true + }] + }, { + "ID": 12959, + "SourceStructureID": 25355, + "TargetStructureID": 519, + "Label": "25355-519 via Conventional from 25356 -> 25357", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25356, + "TargetID": 25357, + "Directional": true + }] + }, { + "ID": 12960, + "SourceStructureID": 25359, + "TargetStructureID": 519, + "Label": "25359-519 via Conventional from 25360 -> 16529, 25361 -> 25362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25360, + "TargetID": 16529, + "Directional": true + }, { + "SourceID": 25361, + "TargetID": 25362, + "Directional": true + }] + }, { + "ID": 12961, + "SourceStructureID": 25364, + "TargetStructureID": 518, + "Label": "25364-518 via Conventional from 25366 -> 3509", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25366, + "TargetID": 3509, + "Directional": true + }] + }, { + "ID": 12962, + "SourceStructureID": 25364, + "TargetStructureID": 519, + "Label": "25364-519 via Conventional from 25365 -> 9244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25365, + "TargetID": 9244, + "Directional": true + }] + }, { + "ID": 12963, + "SourceStructureID": 25367, + "TargetStructureID": 469, + "Label": "25367-469 via Conventional from 82357 -> 4670, 82359 -> 82358", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82357, + "TargetID": 4670, + "Directional": true + }, { + "SourceID": 82359, + "TargetID": 82358, + "Directional": true + }] + }, { + "ID": 12964, + "SourceStructureID": 25367, + "TargetStructureID": 485, + "Label": "25367-485 via Conventional from 25370 -> 25371", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25370, + "TargetID": 25371, + "Directional": true + }] + }, { + "ID": 12965, + "SourceStructureID": 25367, + "TargetStructureID": 519, + "Label": "25367-519 via Conventional from 25368 -> 9253", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25368, + "TargetID": 9253, + "Directional": true + }] + }, { + "ID": 12966, + "SourceStructureID": 25367, + "TargetStructureID": 593, + "Label": "25367-593 via Conventional from 68027 -> 68028", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68027, + "TargetID": 68028, + "Directional": true + }] + }, { + "ID": 12967, + "SourceStructureID": 25367, + "TargetStructureID": 5562, + "Label": "25367-5562 via Conventional from 82348 -> 79894", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82348, + "TargetID": 79894, + "Directional": true + }] + }, { + "ID": 12968, + "SourceStructureID": 25367, + "TargetStructureID": 6156, + "Label": "25367-6156 via Conventional from 82346 -> 82347", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82346, + "TargetID": 82347, + "Directional": true + }] + }, { + "ID": 12969, + "SourceStructureID": 25367, + "TargetStructureID": 82353, + "Label": "25367-82353 via Conventional from 82352 -> 82354", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82352, + "TargetID": 82354, + "Directional": true + }] + }, { + "ID": 12970, + "SourceStructureID": 25374, + "TargetStructureID": 514, + "Label": "25374-514 via Conventional from 25376 -> 25377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25376, + "TargetID": 25377, + "Directional": true + }] + }, { + "ID": 12971, + "SourceStructureID": 25382, + "TargetStructureID": 519, + "Label": "25382-519 via Conventional from 25383 -> 25384", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25383, + "TargetID": 25384, + "Directional": true + }] + }, { + "ID": 12972, + "SourceStructureID": 25392, + "TargetStructureID": 485, + "Label": "25392-485 via Conventional from 32295 -> 32296", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32295, + "TargetID": 32296, + "Directional": true + }] + }, { + "ID": 12973, + "SourceStructureID": 25392, + "TargetStructureID": 519, + "Label": "25392-519 via Conventional from 25393 -> 25394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25393, + "TargetID": 25394, + "Directional": true + }] + }, { + "ID": 12974, + "SourceStructureID": 25392, + "TargetStructureID": 606, + "Label": "25392-606 via Conventional from 32299 -> 32300", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32299, + "TargetID": 32300, + "Directional": true + }] + }, { + "ID": 12975, + "SourceStructureID": 25392, + "TargetStructureID": 906, + "Label": "25392-906 via Conventional from 27340 -> 15237", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27340, + "TargetID": 15237, + "Directional": true + }] + }, { + "ID": 12976, + "SourceStructureID": 25392, + "TargetStructureID": 5315, + "Label": "25392-5315 via Conventional from 32303 -> 26948", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32303, + "TargetID": 26948, + "Directional": true + }] + }, { + "ID": 12977, + "SourceStructureID": 25402, + "TargetStructureID": 369, + "Label": "25402-369 via Conventional from 100655 -> 100657", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100655, + "TargetID": 100657, + "Directional": true + }] + }, { + "ID": 12978, + "SourceStructureID": 25402, + "TargetStructureID": 419, + "Label": "25402-419 via Conventional from 100642 -> 20368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100642, + "TargetID": 20368, + "Directional": true + }] + }, { + "ID": 12979, + "SourceStructureID": 25402, + "TargetStructureID": 519, + "Label": "25402-519 via Conventional from 25403 -> 25404", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25403, + "TargetID": 25404, + "Directional": true + }] + }, { + "ID": 12980, + "SourceStructureID": 25402, + "TargetStructureID": 12897, + "Label": "25402-12897 via Conventional from 100746 -> 100747", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100746, + "TargetID": 100747, + "Directional": true + }] + }, { + "ID": 12981, + "SourceStructureID": 25402, + "TargetStructureID": 101369, + "Label": "25402-101369 via Conventional from 100663 -> 101370", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100663, + "TargetID": 101370, + "Directional": true + }] + }, { + "ID": 12982, + "SourceStructureID": 25405, + "TargetStructureID": 519, + "Label": "25405-519 via Conventional from 25406 -> 3582", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25406, + "TargetID": 3582, + "Directional": true + }] + }, { + "ID": 12983, + "SourceStructureID": 25405, + "TargetStructureID": 2610, + "Label": "25405-2610 via Conventional from 25407 -> 17177", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25407, + "TargetID": 17177, + "Directional": true + }] + }, { + "ID": 12984, + "SourceStructureID": 25410, + "TargetStructureID": 8749, + "Label": "25410-8749 via Conventional from 25411 -> 8862, 25412 -> 8855, 25413 -> 25414, 123208 -> 8863", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25411, + "TargetID": 8862, + "Directional": true + }, { + "SourceID": 25412, + "TargetID": 8855, + "Directional": true + }, { + "SourceID": 25413, + "TargetID": 25414, + "Directional": true + }, { + "SourceID": 123208, + "TargetID": 8863, + "Directional": true + }] + }, { + "ID": 12985, + "SourceStructureID": 25429, + "TargetStructureID": 519, + "Label": "25429-519 via Conventional from 25431 -> 25432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25431, + "TargetID": 25432, + "Directional": true + }] + }, { + "ID": 12986, + "SourceStructureID": 25440, + "TargetStructureID": 10943, + "Label": "25440-10943 via Touch from 25454 -> 25453", + "Type": "Touch", + "Directional": true, + "Links": [{ + "SourceID": 25454, + "TargetID": 25453, + "Directional": true + }] + }, { + "ID": 12987, + "SourceStructureID": 25440, + "TargetStructureID": 11031, + "Label": "25440-11031 via Touch from 25441 -> 25452", + "Type": "Touch", + "Directional": true, + "Links": [{ + "SourceID": 25441, + "TargetID": 25452, + "Directional": true + }] + }, { + "ID": 12988, + "SourceStructureID": 25466, + "TargetStructureID": 485, + "Label": "25466-485 via Conventional from 32239 -> 32240, 32241 -> 32243", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32239, + "TargetID": 32240, + "Directional": true + }, { + "SourceID": 32241, + "TargetID": 32243, + "Directional": true + }] + }, { + "ID": 12989, + "SourceStructureID": 25466, + "TargetStructureID": 519, + "Label": "25466-519 via Conventional from 25468 -> 25469, 25473 -> 3612, 32238 -> 32237", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25468, + "TargetID": 25469, + "Directional": true + }, { + "SourceID": 25473, + "TargetID": 3612, + "Directional": true + }, { + "SourceID": 32238, + "TargetID": 32237, + "Directional": true + }] + }, { + "ID": 12990, + "SourceStructureID": 25529, + "TargetStructureID": 519, + "Label": "25529-519 via Conventional from 25531 -> 25532", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25531, + "TargetID": 25532, + "Directional": true + }] + }, { + "ID": 12991, + "SourceStructureID": 25529, + "TargetStructureID": 2610, + "Label": "25529-2610 via Conventional from 25543 -> 13819", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25543, + "TargetID": 13819, + "Directional": true + }] + }, { + "ID": 12992, + "SourceStructureID": 25551, + "TargetStructureID": 519, + "Label": "25551-519 via Conventional from 25552 -> 25553", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25552, + "TargetID": 25553, + "Directional": true + }] + }, { + "ID": 12993, + "SourceStructureID": 25551, + "TargetStructureID": 22554, + "Label": "25551-22554 via Conventional from 123154 -> 123155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123154, + "TargetID": 123155, + "Directional": true + }] + }, { + "ID": 12994, + "SourceStructureID": 25561, + "TargetStructureID": 519, + "Label": "25561-519 via Conventional from 25562 -> 3592", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25562, + "TargetID": 3592, + "Directional": true + }] + }, { + "ID": 12995, + "SourceStructureID": 25575, + "TargetStructureID": 519, + "Label": "25575-519 via Conventional from 25576 -> 25633, 25578 -> 25579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25576, + "TargetID": 25633, + "Directional": true + }, { + "SourceID": 25578, + "TargetID": 25579, + "Directional": true + }] + }, { + "ID": 12996, + "SourceStructureID": 25575, + "TargetStructureID": 5017, + "Label": "25575-5017 via Conventional from 25584 -> 25585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25584, + "TargetID": 25585, + "Directional": true + }] + }, { + "ID": 12997, + "SourceStructureID": 25575, + "TargetStructureID": 10959, + "Label": "25575-10959 via Conventional from 25665 -> 25666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25665, + "TargetID": 25666, + "Directional": true + }] + }, { + "ID": 12998, + "SourceStructureID": 25669, + "TargetStructureID": 519, + "Label": "25669-519 via Conventional from 25680 -> 25681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25680, + "TargetID": 25681, + "Directional": true + }] + }, { + "ID": 12999, + "SourceStructureID": 25669, + "TargetStructureID": 6169, + "Label": "25669-6169 via Conventional from 123143 -> 123144, 123145 -> 18396", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123143, + "TargetID": 123144, + "Directional": true + }, { + "SourceID": 123145, + "TargetID": 18396, + "Directional": true + }] + }, { + "ID": 13000, + "SourceStructureID": 25688, + "TargetStructureID": 294, + "Label": "25688-294 via Conventional from 25693 -> 25694, 25695 -> 25696, 123150 -> 123151", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25693, + "TargetID": 25694, + "Directional": true + }, { + "SourceID": 25695, + "TargetID": 25696, + "Directional": true + }, { + "SourceID": 123150, + "TargetID": 123151, + "Directional": true + }] + }, { + "ID": 13001, + "SourceStructureID": 25688, + "TargetStructureID": 410, + "Label": "25688-410 via Conventional from 25697 -> 25698", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25697, + "TargetID": 25698, + "Directional": true + }] + }, { + "ID": 13002, + "SourceStructureID": 25688, + "TargetStructureID": 519, + "Label": "25688-519 via Conventional from 25689 -> 25690, 25691 -> 25692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25689, + "TargetID": 25690, + "Directional": true + }, { + "SourceID": 25691, + "TargetID": 25692, + "Directional": true + }] + }, { + "ID": 13003, + "SourceStructureID": 25858, + "TargetStructureID": 519, + "Label": "25858-519 via Conventional from 25859 -> 25860", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25859, + "TargetID": 25860, + "Directional": true + }] + }, { + "ID": 13004, + "SourceStructureID": 25861, + "TargetStructureID": 519, + "Label": "25861-519 via Conventional from 25862 -> 25863", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25862, + "TargetID": 25863, + "Directional": true + }] + }, { + "ID": 13005, + "SourceStructureID": 25861, + "TargetStructureID": 6156, + "Label": "25861-6156 via Conventional from 133275 -> 23167", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133275, + "TargetID": 23167, + "Directional": true + }] + }, { + "ID": 13006, + "SourceStructureID": 25865, + "TargetStructureID": 483, + "Label": "25865-483 via Conventional from 133438 -> 133437", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133438, + "TargetID": 133437, + "Directional": true + }] + }, { + "ID": 13007, + "SourceStructureID": 25865, + "TargetStructureID": 519, + "Label": "25865-519 via Conventional from 25866 -> 25867, 32245 -> 32244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25866, + "TargetID": 25867, + "Directional": true + }, { + "SourceID": 32245, + "TargetID": 32244, + "Directional": true + }] + }, { + "ID": 13008, + "SourceStructureID": 25865, + "TargetStructureID": 24401, + "Label": "25865-24401 via Conventional from 32255 -> 32269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32255, + "TargetID": 32269, + "Directional": true + }] + }, { + "ID": 13009, + "SourceStructureID": 25865, + "TargetStructureID": 26079, + "Label": "25865-26079 via Conventional from 32248 -> 29817, 32253 -> 32252, 32270 -> 26191", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32248, + "TargetID": 29817, + "Directional": true + }, { + "SourceID": 32253, + "TargetID": 32252, + "Directional": true + }, { + "SourceID": 32270, + "TargetID": 26191, + "Directional": true + }] + }, { + "ID": 13010, + "SourceStructureID": 25869, + "TargetStructureID": 485, + "Label": "25869-485 via Conventional from 45667 -> 45668", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45667, + "TargetID": 45668, + "Directional": true + }] + }, { + "ID": 13011, + "SourceStructureID": 25869, + "TargetStructureID": 519, + "Label": "25869-519 via Conventional from 25870 -> 25871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25870, + "TargetID": 25871, + "Directional": true + }] + }, { + "ID": 13012, + "SourceStructureID": 25869, + "TargetStructureID": 6912, + "Label": "25869-6912 via Conventional from 98608 -> 6952", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98608, + "TargetID": 6952, + "Directional": true + }] + }, { + "ID": 13013, + "SourceStructureID": 25879, + "TargetStructureID": 9769, + "Label": "25879-9769 via Conventional from 25887 -> 25876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25887, + "TargetID": 25876, + "Directional": true + }] + }, { + "ID": 13014, + "SourceStructureID": 26079, + "TargetStructureID": 7568, + "Label": "26079-7568 via Ribbon Synapse from 27028 -> 27027", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 27028, + "TargetID": 27027, + "Directional": true + }] + }, { + "ID": 13015, + "SourceStructureID": 26079, + "TargetStructureID": 9769, + "Label": "26079-9769 via Ribbon Synapse from 29813 -> 29812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29813, + "TargetID": 29812, + "Directional": true + }] + }, { + "ID": 13016, + "SourceStructureID": 26079, + "TargetStructureID": 15796, + "Label": "26079-15796 via Ribbon Synapse from 29813 -> 29816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 29813, + "TargetID": 29816, + "Directional": true + }] + }, { + "ID": 13017, + "SourceStructureID": 26079, + "TargetStructureID": 25865, + "Label": "26079-25865 via Ribbon Synapse from 32247 -> 32246, 32250 -> 32251, 32272 -> 32271", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32247, + "TargetID": 32246, + "Directional": true + }, { + "SourceID": 32250, + "TargetID": 32251, + "Directional": true + }, { + "SourceID": 32272, + "TargetID": 32271, + "Directional": true + }] + }, { + "ID": 13018, + "SourceStructureID": 26079, + "TargetStructureID": 35894, + "Label": "26079-35894 via Ribbon Synapse from 35909 -> 35908", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35909, + "TargetID": 35908, + "Directional": true + }] + }, { + "ID": 13019, + "SourceStructureID": 26079, + "TargetStructureID": 47013, + "Label": "26079-47013 via Ribbon Synapse from 47022 -> 47021, 47034 -> 47031, 47035 -> 47033, 47044 -> 47041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47022, + "TargetID": 47021, + "Directional": true + }, { + "SourceID": 47034, + "TargetID": 47031, + "Directional": true + }, { + "SourceID": 47035, + "TargetID": 47033, + "Directional": true + }, { + "SourceID": 47044, + "TargetID": 47041, + "Directional": true + }] + }, { + "ID": 13020, + "SourceStructureID": 26079, + "TargetStructureID": 84876, + "Label": "26079-84876 via Ribbon Synapse from 102910 -> 102913", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102910, + "TargetID": 102913, + "Directional": true + }] + }, { + "ID": 13021, + "SourceStructureID": 26304, + "TargetStructureID": 284, + "Label": "26304-284 via Ribbon Synapse from 26305 -> 26296", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26305, + "TargetID": 26296, + "Directional": true + }] + }, { + "ID": 13022, + "SourceStructureID": 26304, + "TargetStructureID": 456, + "Label": "26304-456 via Ribbon Synapse from 26324 -> 26325", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26324, + "TargetID": 26325, + "Directional": true + }] + }, { + "ID": 13023, + "SourceStructureID": 26304, + "TargetStructureID": 7157, + "Label": "26304-7157 via Ribbon Synapse from 26307 -> 26303, 26331 -> 26332", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 26307, + "TargetID": 26303, + "Directional": true + }, { + "SourceID": 26331, + "TargetID": 26332, + "Directional": true + }] + }, { + "ID": 13024, + "SourceStructureID": 26497, + "TargetStructureID": 26304, + "Label": "26497-26304 via Conventional from 44490 -> 44489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44490, + "TargetID": 44489, + "Directional": true + }] + }, { + "ID": 13025, + "SourceStructureID": 26971, + "TargetStructureID": 26971, + "Label": "26971-26971 via Cistern Pre from 38144 -> 26985", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 38144, + "TargetID": 26985, + "Directional": true + }] + }, { + "ID": 13026, + "SourceStructureID": 27288, + "TargetStructureID": 485, + "Label": "27288-485 via Conventional from 27289 -> 27292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27289, + "TargetID": 27292, + "Directional": true + }] + }, { + "ID": 13027, + "SourceStructureID": 27288, + "TargetStructureID": 13855, + "Label": "27288-13855 via Conventional from 27290 -> 27291", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27290, + "TargetID": 27291, + "Directional": true + }] + }, { + "ID": 13028, + "SourceStructureID": 27288, + "TargetStructureID": 101452, + "Label": "27288-101452 via Conventional from 27300 -> 101453", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27300, + "TargetID": 101453, + "Directional": true + }] + }, { + "ID": 13029, + "SourceStructureID": 27304, + "TargetStructureID": 6857, + "Label": "27304-6857 via Conventional from 27305 -> 7536", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 27305, + "TargetID": 7536, + "Directional": true + }] + }, { + "ID": 13030, + "SourceStructureID": 28382, + "TargetStructureID": 6160, + "Label": "28382-6160 via Cistern Pre from 37474 -> 37475", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 37474, + "TargetID": 37475, + "Directional": true + }] + }, { + "ID": 13031, + "SourceStructureID": 28886, + "TargetStructureID": 608, + "Label": "28886-608 via Ribbon Synapse from 59073 -> 59072", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59073, + "TargetID": 59072, + "Directional": true + }] + }, { + "ID": 13032, + "SourceStructureID": 28886, + "TargetStructureID": 7594, + "Label": "28886-7594 via Ribbon Synapse from 51298 -> 7678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51298, + "TargetID": 7678, + "Directional": true + }] + }, { + "ID": 13033, + "SourceStructureID": 28886, + "TargetStructureID": 40482, + "Label": "28886-40482 via Ribbon Synapse from 51314 -> 40483", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51314, + "TargetID": 40483, + "Directional": true + }] + }, { + "ID": 13034, + "SourceStructureID": 28886, + "TargetStructureID": 40485, + "Label": "28886-40485 via Ribbon Synapse from 51314 -> 40487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51314, + "TargetID": 40487, + "Directional": true + }] + }, { + "ID": 13035, + "SourceStructureID": 28886, + "TargetStructureID": 46842, + "Label": "28886-46842 via Ribbon Synapse from 45764 -> 46853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45764, + "TargetID": 46853, + "Directional": true + }] + }, { + "ID": 13036, + "SourceStructureID": 28886, + "TargetStructureID": 99513, + "Label": "28886-99513 via Ribbon Synapse from 129639 -> 129636", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129639, + "TargetID": 129636, + "Directional": true + }] + }, { + "ID": 13037, + "SourceStructureID": 29277, + "TargetStructureID": 318, + "Label": "29277-318 via Conventional from 29314 -> 29315", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29314, + "TargetID": 29315, + "Directional": true + }] + }, { + "ID": 13038, + "SourceStructureID": 29277, + "TargetStructureID": 60657, + "Label": "29277-60657 via Conventional from 29322 -> 61429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29322, + "TargetID": 61429, + "Directional": true + }] + }, { + "ID": 13039, + "SourceStructureID": 29702, + "TargetStructureID": 76127, + "Label": "29702-76127 via Conventional from 76083 -> 76147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76083, + "TargetID": 76147, + "Directional": true + }] + }, { + "ID": 13040, + "SourceStructureID": 29783, + "TargetStructureID": 2610, + "Label": "29783-2610 via Conventional from 29784 -> 2815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29784, + "TargetID": 2815, + "Directional": true + }] + }, { + "ID": 13041, + "SourceStructureID": 29783, + "TargetStructureID": 15100, + "Label": "29783-15100 via Conventional from 65235 -> 65236", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65235, + "TargetID": 65236, + "Directional": true + }] + }, { + "ID": 13042, + "SourceStructureID": 29791, + "TargetStructureID": 410, + "Label": "29791-410 via Conventional from 29797 -> 29790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29797, + "TargetID": 29790, + "Directional": true + }] + }, { + "ID": 13043, + "SourceStructureID": 29791, + "TargetStructureID": 6163, + "Label": "29791-6163 via Conventional from 29799 -> 29800, 29801 -> 29802, 29803 -> 29804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29799, + "TargetID": 29800, + "Directional": true + }, { + "SourceID": 29801, + "TargetID": 29802, + "Directional": true + }, { + "SourceID": 29803, + "TargetID": 29804, + "Directional": true + }] + }, { + "ID": 13044, + "SourceStructureID": 29791, + "TargetStructureID": 6618, + "Label": "29791-6618 via Conventional from 29792 -> 29793, 29795 -> 29796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29792, + "TargetID": 29793, + "Directional": true + }, { + "SourceID": 29795, + "TargetID": 29796, + "Directional": true + }] + }, { + "ID": 13045, + "SourceStructureID": 29805, + "TargetStructureID": 5345, + "Label": "29805-5345 via Conventional from 29806 -> 14593", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29806, + "TargetID": 14593, + "Directional": true + }] + }, { + "ID": 13046, + "SourceStructureID": 29827, + "TargetStructureID": 170, + "Label": "29827-170 via Conventional from 29832 -> 29831", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29832, + "TargetID": 29831, + "Directional": true + }] + }, { + "ID": 13047, + "SourceStructureID": 29827, + "TargetStructureID": 10959, + "Label": "29827-10959 via Conventional from 29834 -> 29833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 29834, + "TargetID": 29833, + "Directional": true + }] + }, { + "ID": 13048, + "SourceStructureID": 30015, + "TargetStructureID": 330, + "Label": "30015-330 via Conventional from 30028 -> 30029, 30034 -> 26172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30028, + "TargetID": 30029, + "Directional": true + }, { + "SourceID": 30034, + "TargetID": 26172, + "Directional": true + }] + }, { + "ID": 13049, + "SourceStructureID": 30015, + "TargetStructureID": 341, + "Label": "30015-341 via Conventional from 30039 -> 30059, 30051 -> 30049", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30039, + "TargetID": 30059, + "Directional": true + }, { + "SourceID": 30051, + "TargetID": 30049, + "Directional": true + }] + }, { + "ID": 13050, + "SourceStructureID": 30015, + "TargetStructureID": 101369, + "Label": "30015-101369 via Conventional from 30027 -> 101400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30027, + "TargetID": 101400, + "Directional": true + }] + }, { + "ID": 13051, + "SourceStructureID": 30102, + "TargetStructureID": 9769, + "Label": "30102-9769 via Ribbon Synapse from 30104 -> 30097", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30104, + "TargetID": 30097, + "Directional": true + }] + }, { + "ID": 13052, + "SourceStructureID": 30102, + "TargetStructureID": 32566, + "Label": "30102-32566 via Ribbon Synapse from 32570 -> 32569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32570, + "TargetID": 32569, + "Directional": true + }] + }, { + "ID": 13053, + "SourceStructureID": 30102, + "TargetStructureID": 55212, + "Label": "30102-55212 via Ribbon Synapse from 30104 -> 55213", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30104, + "TargetID": 55213, + "Directional": true + }] + }, { + "ID": 13054, + "SourceStructureID": 30130, + "TargetStructureID": 5292, + "Label": "30130-5292 via Conventional from 30260 -> 30266", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30260, + "TargetID": 30266, + "Directional": true + }] + }, { + "ID": 13055, + "SourceStructureID": 30130, + "TargetStructureID": 5649, + "Label": "30130-5649 via Conventional from 30134 -> 30127", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30134, + "TargetID": 30127, + "Directional": true + }] + }, { + "ID": 13056, + "SourceStructureID": 30130, + "TargetStructureID": 5650, + "Label": "30130-5650 via Conventional from 30253 -> 30254, 30258 -> 30259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30253, + "TargetID": 30254, + "Directional": true + }, { + "SourceID": 30258, + "TargetID": 30259, + "Directional": true + }] + }, { + "ID": 13057, + "SourceStructureID": 30130, + "TargetStructureID": 11042, + "Label": "30130-11042 via Conventional from 30132 -> 30129", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30132, + "TargetID": 30129, + "Directional": true + }] + }, { + "ID": 13058, + "SourceStructureID": 30130, + "TargetStructureID": 11250, + "Label": "30130-11250 via Conventional from 30283 -> 30292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30283, + "TargetID": 30292, + "Directional": true + }] + }, { + "ID": 13059, + "SourceStructureID": 30177, + "TargetStructureID": 9769, + "Label": "30177-9769 via Ribbon Synapse from 30178 -> 30175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 30178, + "TargetID": 30175, + "Directional": true + }] + }, { + "ID": 13060, + "SourceStructureID": 30332, + "TargetStructureID": 171, + "Label": "30332-171 via Conventional from 30333 -> 30330", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30333, + "TargetID": 30330, + "Directional": true + }] + }, { + "ID": 13061, + "SourceStructureID": 30332, + "TargetStructureID": 591, + "Label": "30332-591 via Conventional from 30334 -> 15441", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30334, + "TargetID": 15441, + "Directional": true + }] + }, { + "ID": 13062, + "SourceStructureID": 30332, + "TargetStructureID": 5297, + "Label": "30332-5297 via Conventional from 103220 -> 103219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103220, + "TargetID": 103219, + "Directional": true + }] + }, { + "ID": 13063, + "SourceStructureID": 30332, + "TargetStructureID": 5618, + "Label": "30332-5618 via Conventional from 30337 -> 66002", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30337, + "TargetID": 66002, + "Directional": true + }] + }, { + "ID": 13064, + "SourceStructureID": 30332, + "TargetStructureID": 6115, + "Label": "30332-6115 via Conventional from 75186 -> 75187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75186, + "TargetID": 75187, + "Directional": true + }] + }, { + "ID": 13065, + "SourceStructureID": 30332, + "TargetStructureID": 7073, + "Label": "30332-7073 via Conventional from 31623 -> 11795", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31623, + "TargetID": 11795, + "Directional": true + }] + }, { + "ID": 13066, + "SourceStructureID": 30332, + "TargetStructureID": 7147, + "Label": "30332-7147 via Conventional from 31626 -> 31627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31626, + "TargetID": 31627, + "Directional": true + }] + }, { + "ID": 13067, + "SourceStructureID": 30370, + "TargetStructureID": 328, + "Label": "30370-328 via Conventional from 30376 -> 30361, 30377 -> 30363", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30376, + "TargetID": 30361, + "Directional": true + }, { + "SourceID": 30377, + "TargetID": 30363, + "Directional": true + }] + }, { + "ID": 13068, + "SourceStructureID": 30370, + "TargetStructureID": 15979, + "Label": "30370-15979 via Conventional from 30372 -> 30373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30372, + "TargetID": 30373, + "Directional": true + }] + }, { + "ID": 13069, + "SourceStructureID": 30379, + "TargetStructureID": 30370, + "Label": "30379-30370 via Conventional from 30384 -> 30378", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30384, + "TargetID": 30378, + "Directional": true + }] + }, { + "ID": 13070, + "SourceStructureID": 30477, + "TargetStructureID": 294, + "Label": "30477-294 via Conventional from 30478 -> 30358", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30478, + "TargetID": 30358, + "Directional": true + }] + }, { + "ID": 13071, + "SourceStructureID": 30477, + "TargetStructureID": 380, + "Label": "30477-380 via Conventional from 30484 -> 30476", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30484, + "TargetID": 30476, + "Directional": true + }] + }, { + "ID": 13072, + "SourceStructureID": 30477, + "TargetStructureID": 485, + "Label": "30477-485 via Conventional from 30487 -> 31677", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30487, + "TargetID": 31677, + "Directional": true + }] + }, { + "ID": 13073, + "SourceStructureID": 30477, + "TargetStructureID": 516, + "Label": "30477-516 via Conventional from 38625 -> 38626", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38625, + "TargetID": 38626, + "Directional": true + }] + }, { + "ID": 13074, + "SourceStructureID": 30477, + "TargetStructureID": 517, + "Label": "30477-517 via Conventional from 38623 -> 38624", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38623, + "TargetID": 38624, + "Directional": true + }] + }, { + "ID": 13075, + "SourceStructureID": 30477, + "TargetStructureID": 8575, + "Label": "30477-8575 via Conventional from 30490 -> 38617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30490, + "TargetID": 38617, + "Directional": true + }] + }, { + "ID": 13076, + "SourceStructureID": 30477, + "TargetStructureID": 24401, + "Label": "30477-24401 via Conventional from 38628 -> 38629", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38628, + "TargetID": 38629, + "Directional": true + }] + }, { + "ID": 13077, + "SourceStructureID": 30495, + "TargetStructureID": 434, + "Label": "30495-434 via Conventional from 31876 -> 30494", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31876, + "TargetID": 30494, + "Directional": true + }] + }, { + "ID": 13078, + "SourceStructureID": 30495, + "TargetStructureID": 31874, + "Label": "30495-31874 via Conventional from 30497 -> 31875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30497, + "TargetID": 31875, + "Directional": true + }] + }, { + "ID": 13079, + "SourceStructureID": 30499, + "TargetStructureID": 464, + "Label": "30499-464 via Conventional from 30500 -> 30369", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30500, + "TargetID": 30369, + "Directional": true + }] + }, { + "ID": 13080, + "SourceStructureID": 30499, + "TargetStructureID": 468, + "Label": "30499-468 via Conventional from 31941 -> 6651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31941, + "TargetID": 6651, + "Directional": true + }] + }, { + "ID": 13081, + "SourceStructureID": 30513, + "TargetStructureID": 142, + "Label": "30513-142 via Conventional from 125932 -> 125933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125932, + "TargetID": 125933, + "Directional": true + }] + }, { + "ID": 13082, + "SourceStructureID": 30513, + "TargetStructureID": 516, + "Label": "30513-516 via Conventional from 30514 -> 30511", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30514, + "TargetID": 30511, + "Directional": true + }] + }, { + "ID": 13083, + "SourceStructureID": 30518, + "TargetStructureID": 5303, + "Label": "30518-5303 via Conventional from 30519 -> 30517", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30519, + "TargetID": 30517, + "Directional": true + }] + }, { + "ID": 13084, + "SourceStructureID": 30567, + "TargetStructureID": 142, + "Label": "30567-142 via Conventional from 32078 -> 32079, 32082 -> 32085, 49757 -> 49756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32078, + "TargetID": 32079, + "Directional": true + }, { + "SourceID": 32082, + "TargetID": 32085, + "Directional": true + }, { + "SourceID": 49757, + "TargetID": 49756, + "Directional": true + }] + }, { + "ID": 13085, + "SourceStructureID": 30567, + "TargetStructureID": 176, + "Label": "30567-176 via Conventional from 32089 -> 124759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32089, + "TargetID": 124759, + "Directional": true + }] + }, { + "ID": 13086, + "SourceStructureID": 30567, + "TargetStructureID": 517, + "Label": "30567-517 via Conventional from 30568 -> 6902", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30568, + "TargetID": 6902, + "Directional": true + }] + }, { + "ID": 13087, + "SourceStructureID": 30567, + "TargetStructureID": 909, + "Label": "30567-909 via Conventional from 30646 -> 30653", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30646, + "TargetID": 30653, + "Directional": true + }] + }, { + "ID": 13088, + "SourceStructureID": 30567, + "TargetStructureID": 1637, + "Label": "30567-1637 via Conventional from 30657 -> 1723", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30657, + "TargetID": 1723, + "Directional": true + }] + }, { + "ID": 13089, + "SourceStructureID": 30567, + "TargetStructureID": 5279, + "Label": "30567-5279 via Conventional from 30644 -> 30645, 96427 -> 96426", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30644, + "TargetID": 30645, + "Directional": true + }, { + "SourceID": 96427, + "TargetID": 96426, + "Directional": true + }] + }, { + "ID": 13090, + "SourceStructureID": 30567, + "TargetStructureID": 5297, + "Label": "30567-5297 via Conventional from 32081 -> 56815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32081, + "TargetID": 56815, + "Directional": true + }] + }, { + "ID": 13091, + "SourceStructureID": 30567, + "TargetStructureID": 5513, + "Label": "30567-5513 via Conventional from 30660 -> 30672", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30660, + "TargetID": 30672, + "Directional": true + }] + }, { + "ID": 13092, + "SourceStructureID": 30567, + "TargetStructureID": 5517, + "Label": "30567-5517 via Conventional from 49512 -> 49510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 49512, + "TargetID": 49510, + "Directional": true + }] + }, { + "ID": 13093, + "SourceStructureID": 30567, + "TargetStructureID": 6050, + "Label": "30567-6050 via Conventional from 113569 -> 113568", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113569, + "TargetID": 113568, + "Directional": true + }] + }, { + "ID": 13094, + "SourceStructureID": 30567, + "TargetStructureID": 6117, + "Label": "30567-6117 via Conventional from 30569 -> 30570, 84962 -> 84963", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30569, + "TargetID": 30570, + "Directional": true + }, { + "SourceID": 84962, + "TargetID": 84963, + "Directional": true + }] + }, { + "ID": 13095, + "SourceStructureID": 30567, + "TargetStructureID": 66523, + "Label": "30567-66523 via Conventional from 74315 -> 74316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74315, + "TargetID": 74316, + "Directional": true + }] + }, { + "ID": 13096, + "SourceStructureID": 31024, + "TargetStructureID": 31024, + "Label": "31024-31024 via Ribbon Synapse from 130895 -> 130897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130895, + "TargetID": 130897, + "Directional": true + }] + }, { + "ID": 13097, + "SourceStructureID": 31024, + "TargetStructureID": 67290, + "Label": "31024-67290 via Ribbon Synapse from 130895 -> 67292", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130895, + "TargetID": 67292, + "Directional": true + }] + }, { + "ID": 13098, + "SourceStructureID": 31024, + "TargetStructureID": 67291, + "Label": "31024-67291 via Ribbon Synapse from 130895 -> 67293", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130895, + "TargetID": 67293, + "Directional": true + }] + }, { + "ID": 13099, + "SourceStructureID": 31157, + "TargetStructureID": 31024, + "Label": "31157-31024 via Ribbon Synapse from 31158 -> 31156", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31158, + "TargetID": 31156, + "Directional": true + }] + }, { + "ID": 13100, + "SourceStructureID": 31161, + "TargetStructureID": 608, + "Label": "31161-608 via Conventional from 31188 -> 31190, 31223 -> 31224", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31188, + "TargetID": 31190, + "Directional": true + }, { + "SourceID": 31223, + "TargetID": 31224, + "Directional": true + }] + }, { + "ID": 13101, + "SourceStructureID": 31161, + "TargetStructureID": 31024, + "Label": "31161-31024 via Conventional from 31162 -> 31075, 31165 -> 31164, 31169 -> 31109, 31173 -> 31172, 31176 -> 31114, 31177 -> 31115, 31222 -> 31078, 31225 -> 31228, 31226 -> 31227, 31231 -> 31232, 31240 -> 31029, 31243 -> 31242, 31245 -> 31246, 31254 -> 31065, 65496 -> 65497", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31162, + "TargetID": 31075, + "Directional": true + }, { + "SourceID": 31165, + "TargetID": 31164, + "Directional": true + }, { + "SourceID": 31169, + "TargetID": 31109, + "Directional": true + }, { + "SourceID": 31173, + "TargetID": 31172, + "Directional": true + }, { + "SourceID": 31176, + "TargetID": 31114, + "Directional": true + }, { + "SourceID": 31177, + "TargetID": 31115, + "Directional": true + }, { + "SourceID": 31222, + "TargetID": 31078, + "Directional": true + }, { + "SourceID": 31225, + "TargetID": 31228, + "Directional": true + }, { + "SourceID": 31226, + "TargetID": 31227, + "Directional": true + }, { + "SourceID": 31231, + "TargetID": 31232, + "Directional": true + }, { + "SourceID": 31240, + "TargetID": 31029, + "Directional": true + }, { + "SourceID": 31243, + "TargetID": 31242, + "Directional": true + }, { + "SourceID": 31245, + "TargetID": 31246, + "Directional": true + }, { + "SourceID": 31254, + "TargetID": 31065, + "Directional": true + }, { + "SourceID": 65496, + "TargetID": 65497, + "Directional": true + }] + }, { + "ID": 13102, + "SourceStructureID": 31161, + "TargetStructureID": 33092, + "Label": "31161-33092 via Conventional from 31214 -> 99210", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31214, + "TargetID": 99210, + "Directional": true + }] + }, { + "ID": 13103, + "SourceStructureID": 31161, + "TargetStructureID": 36516, + "Label": "31161-36516 via Conventional from 36618 -> 36617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36618, + "TargetID": 36617, + "Directional": true + }] + }, { + "ID": 13104, + "SourceStructureID": 31161, + "TargetStructureID": 61836, + "Label": "31161-61836 via Conventional from 31230 -> 68116", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31230, + "TargetID": 68116, + "Directional": true + }] + }, { + "ID": 13105, + "SourceStructureID": 31161, + "TargetStructureID": 66828, + "Label": "31161-66828 via Conventional from 66833 -> 66832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66833, + "TargetID": 66832, + "Directional": true + }] + }, { + "ID": 13106, + "SourceStructureID": 31161, + "TargetStructureID": 69162, + "Label": "31161-69162 via Conventional from 69195 -> 69196", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69195, + "TargetID": 69196, + "Directional": true + }] + }, { + "ID": 13107, + "SourceStructureID": 31261, + "TargetStructureID": 5645, + "Label": "31261-5645 via Conventional from 31266 -> 31268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31266, + "TargetID": 31268, + "Directional": true + }] + }, { + "ID": 13108, + "SourceStructureID": 31261, + "TargetStructureID": 6857, + "Label": "31261-6857 via Conventional from 31262 -> 7559", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31262, + "TargetID": 7559, + "Directional": true + }] + }, { + "ID": 13109, + "SourceStructureID": 31305, + "TargetStructureID": 9183, + "Label": "31305-9183 via Conventional from 31312 -> 31304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31312, + "TargetID": 31304, + "Directional": true + }] + }, { + "ID": 13110, + "SourceStructureID": 31305, + "TargetStructureID": 101651, + "Label": "31305-101651 via Conventional from 101648 -> 101652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101648, + "TargetID": 101652, + "Directional": true + }] + }, { + "ID": 13111, + "SourceStructureID": 31334, + "TargetStructureID": 5645, + "Label": "31334-5645 via Conventional from 31340 -> 31341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31340, + "TargetID": 31341, + "Directional": true + }] + }, { + "ID": 13112, + "SourceStructureID": 31334, + "TargetStructureID": 9183, + "Label": "31334-9183 via Conventional from 31338 -> 31339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31338, + "TargetID": 31339, + "Directional": true + }] + }, { + "ID": 13113, + "SourceStructureID": 31356, + "TargetStructureID": 9183, + "Label": "31356-9183 via Conventional from 32760 -> 31355", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32760, + "TargetID": 31355, + "Directional": true + }] + }, { + "ID": 13114, + "SourceStructureID": 31356, + "TargetStructureID": 31161, + "Label": "31356-31161 via Conventional from 32759 -> 31178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32759, + "TargetID": 31178, + "Directional": true + }] + }, { + "ID": 13115, + "SourceStructureID": 31389, + "TargetStructureID": 5609, + "Label": "31389-5609 via Conventional from 31397 -> 31388", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31397, + "TargetID": 31388, + "Directional": true + }] + }, { + "ID": 13116, + "SourceStructureID": 31399, + "TargetStructureID": 4570, + "Label": "31399-4570 via Conventional from 31403 -> 31404", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31403, + "TargetID": 31404, + "Directional": true + }] + }, { + "ID": 13117, + "SourceStructureID": 31399, + "TargetStructureID": 79317, + "Label": "31399-79317 via Conventional from 31405 -> 99006", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31405, + "TargetID": 99006, + "Directional": true + }] + }, { + "ID": 13118, + "SourceStructureID": 31430, + "TargetStructureID": 6997, + "Label": "31430-6997 via Conventional from 31433 -> 31436", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31433, + "TargetID": 31436, + "Directional": true + }] + }, { + "ID": 13119, + "SourceStructureID": 31465, + "TargetStructureID": 10142, + "Label": "31465-10142 via Conventional from 31466 -> 31464", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31466, + "TargetID": 31464, + "Directional": true + }] + }, { + "ID": 13120, + "SourceStructureID": 31471, + "TargetStructureID": 5535, + "Label": "31471-5535 via Conventional from 31476 -> 38442, 31478 -> 31479", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31476, + "TargetID": 38442, + "Directional": true + }, { + "SourceID": 31478, + "TargetID": 31479, + "Directional": true + }] + }, { + "ID": 13121, + "SourceStructureID": 31471, + "TargetStructureID": 10142, + "Label": "31471-10142 via Conventional from 31472 -> 31470", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31472, + "TargetID": 31470, + "Directional": true + }] + }, { + "ID": 13122, + "SourceStructureID": 31471, + "TargetStructureID": 10964, + "Label": "31471-10964 via Conventional from 31480 -> 31490", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31480, + "TargetID": 31490, + "Directional": true + }] + }, { + "ID": 13123, + "SourceStructureID": 31471, + "TargetStructureID": 58592, + "Label": "31471-58592 via Conventional from 31497 -> 58670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31497, + "TargetID": 58670, + "Directional": true + }] + }, { + "ID": 13124, + "SourceStructureID": 31483, + "TargetStructureID": 10964, + "Label": "31483-10964 via Conventional from 31484 -> 31482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31484, + "TargetID": 31482, + "Directional": true + }] + }, { + "ID": 13125, + "SourceStructureID": 31486, + "TargetStructureID": 172, + "Label": "31486-172 via Conventional from 31533 -> 31634", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31533, + "TargetID": 31634, + "Directional": true + }] + }, { + "ID": 13126, + "SourceStructureID": 31486, + "TargetStructureID": 6128, + "Label": "31486-6128 via Conventional from 31513 -> 21042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31513, + "TargetID": 21042, + "Directional": true + }] + }, { + "ID": 13127, + "SourceStructureID": 31603, + "TargetStructureID": 31605, + "Label": "31603-31605 via Conventional from 31604 -> 31615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31604, + "TargetID": 31615, + "Directional": true + }] + }, { + "ID": 13128, + "SourceStructureID": 31665, + "TargetStructureID": 352, + "Label": "31665-352 via Conventional from 31666 -> 20669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31666, + "TargetID": 20669, + "Directional": true + }] + }, { + "ID": 13129, + "SourceStructureID": 31679, + "TargetStructureID": 277, + "Label": "31679-277 via Conventional from 31691 -> 26410", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31691, + "TargetID": 26410, + "Directional": true + }] + }, { + "ID": 13130, + "SourceStructureID": 31679, + "TargetStructureID": 327, + "Label": "31679-327 via Conventional from 31684 -> 31687", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31684, + "TargetID": 31687, + "Directional": true + }] + }, { + "ID": 13131, + "SourceStructureID": 31679, + "TargetStructureID": 328, + "Label": "31679-328 via Conventional from 31680 -> 31681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31680, + "TargetID": 31681, + "Directional": true + }] + }, { + "ID": 13132, + "SourceStructureID": 31694, + "TargetStructureID": 277, + "Label": "31694-277 via Conventional from 31696 -> 26418, 31697 -> 26013", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31696, + "TargetID": 26418, + "Directional": true + }, { + "SourceID": 31697, + "TargetID": 26013, + "Directional": true + }] + }, { + "ID": 13133, + "SourceStructureID": 31694, + "TargetStructureID": 280, + "Label": "31694-280 via Conventional from 31695 -> 31693", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31695, + "TargetID": 31693, + "Directional": true + }] + }, { + "ID": 13134, + "SourceStructureID": 31700, + "TargetStructureID": 268, + "Label": "31700-268 via Conventional from 45613 -> 45614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45613, + "TargetID": 45614, + "Directional": true + }] + }, { + "ID": 13135, + "SourceStructureID": 31700, + "TargetStructureID": 330, + "Label": "31700-330 via Conventional from 119080 -> 119081", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119080, + "TargetID": 119081, + "Directional": true + }] + }, { + "ID": 13136, + "SourceStructureID": 31700, + "TargetStructureID": 342, + "Label": "31700-342 via Conventional from 31701 -> 31698, 64487 -> 64488", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31701, + "TargetID": 31698, + "Directional": true + }, { + "SourceID": 64487, + "TargetID": 64488, + "Directional": true + }] + }, { + "ID": 13137, + "SourceStructureID": 31700, + "TargetStructureID": 345, + "Label": "31700-345 via Conventional from 118993 -> 118994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118993, + "TargetID": 118994, + "Directional": true + }] + }, { + "ID": 13138, + "SourceStructureID": 31702, + "TargetStructureID": 342, + "Label": "31702-342 via Conventional from 31703 -> 31699", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31703, + "TargetID": 31699, + "Directional": true + }] + }, { + "ID": 13139, + "SourceStructureID": 31702, + "TargetStructureID": 344, + "Label": "31702-344 via Conventional from 31717 -> 31721", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31717, + "TargetID": 31721, + "Directional": true + }] + }, { + "ID": 13140, + "SourceStructureID": 31702, + "TargetStructureID": 34055, + "Label": "31702-34055 via Conventional from 39997 -> 34058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39997, + "TargetID": 34058, + "Directional": true + }] + }, { + "ID": 13141, + "SourceStructureID": 31710, + "TargetStructureID": 606, + "Label": "31710-606 via Ribbon Synapse from 52670 -> 52669", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52670, + "TargetID": 52669, + "Directional": true + }] + }, { + "ID": 13142, + "SourceStructureID": 31710, + "TargetStructureID": 9769, + "Label": "31710-9769 via Ribbon Synapse from 55329 -> 12445", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55329, + "TargetID": 12445, + "Directional": true + }] + }, { + "ID": 13143, + "SourceStructureID": 31710, + "TargetStructureID": 31700, + "Label": "31710-31700 via Ribbon Synapse from 31712 -> 31709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31712, + "TargetID": 31709, + "Directional": true + }] + }, { + "ID": 13144, + "SourceStructureID": 31710, + "TargetStructureID": 55319, + "Label": "31710-55319 via Ribbon Synapse from 55323 -> 55324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55323, + "TargetID": 55324, + "Directional": true + }] + }, { + "ID": 13145, + "SourceStructureID": 31710, + "TargetStructureID": 89851, + "Label": "31710-89851 via Ribbon Synapse from 52670 -> 89856, 89859 -> 89857", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52670, + "TargetID": 89856, + "Directional": true + }, { + "SourceID": 89859, + "TargetID": 89857, + "Directional": true + }] + }, { + "ID": 13146, + "SourceStructureID": 31804, + "TargetStructureID": 365, + "Label": "31804-365 via Conventional from 31806 -> 31805", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31806, + "TargetID": 31805, + "Directional": true + }] + }, { + "ID": 13147, + "SourceStructureID": 31874, + "TargetStructureID": 4835, + "Label": "31874-4835 via Ribbon Synapse from 31883 -> 31884", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31883, + "TargetID": 31884, + "Directional": true + }] + }, { + "ID": 13148, + "SourceStructureID": 31915, + "TargetStructureID": 460, + "Label": "31915-460 via Conventional from 31921 -> 31924", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31921, + "TargetID": 31924, + "Directional": true + }] + }, { + "ID": 13149, + "SourceStructureID": 31915, + "TargetStructureID": 10963, + "Label": "31915-10963 via Conventional from 31927 -> 31937", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31927, + "TargetID": 31937, + "Directional": true + }] + }, { + "ID": 13150, + "SourceStructureID": 31915, + "TargetStructureID": 30499, + "Label": "31915-30499 via Conventional from 31916 -> 30501", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31916, + "TargetID": 30501, + "Directional": true + }] + }, { + "ID": 13151, + "SourceStructureID": 31931, + "TargetStructureID": 5544, + "Label": "31931-5544 via Conventional from 31933 -> 31934", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31933, + "TargetID": 31934, + "Directional": true + }] + }, { + "ID": 13152, + "SourceStructureID": 31931, + "TargetStructureID": 5634, + "Label": "31931-5634 via Conventional from 31932 -> 8741", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31932, + "TargetID": 8741, + "Directional": true + }] + }, { + "ID": 13153, + "SourceStructureID": 31944, + "TargetStructureID": 5413, + "Label": "31944-5413 via Ribbon Synapse from 31945 -> 31946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 31945, + "TargetID": 31946, + "Directional": true + }] + }, { + "ID": 13154, + "SourceStructureID": 31944, + "TargetStructureID": 128015, + "Label": "31944-128015 via Ribbon Synapse from 128059 -> 128058", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 128059, + "TargetID": 128058, + "Directional": true + }] + }, { + "ID": 13155, + "SourceStructureID": 31960, + "TargetStructureID": 422, + "Label": "31960-422 via Conventional from 31963 -> 5702, 31966 -> 5704, 31967 -> 87879, 31968 -> 5706", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31963, + "TargetID": 5702, + "Directional": true + }, { + "SourceID": 31966, + "TargetID": 5704, + "Directional": true + }, { + "SourceID": 31967, + "TargetID": 87879, + "Directional": true + }, { + "SourceID": 31968, + "TargetID": 5706, + "Directional": true + }] + }, { + "ID": 13156, + "SourceStructureID": 31969, + "TargetStructureID": 471, + "Label": "31969-471 via Conventional from 31970 -> 30510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31970, + "TargetID": 30510, + "Directional": true + }] + }, { + "ID": 13157, + "SourceStructureID": 31994, + "TargetStructureID": 14291, + "Label": "31994-14291 via Conventional from 31995 -> 31993", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31995, + "TargetID": 31993, + "Directional": true + }] + }, { + "ID": 13158, + "SourceStructureID": 31994, + "TargetStructureID": 19203, + "Label": "31994-19203 via Conventional from 31997 -> 31998", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31997, + "TargetID": 31998, + "Directional": true + }] + }, { + "ID": 13159, + "SourceStructureID": 32035, + "TargetStructureID": 516, + "Label": "32035-516 via Conventional from 32036 -> 30512", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32036, + "TargetID": 30512, + "Directional": true + }] + }, { + "ID": 13160, + "SourceStructureID": 32035, + "TargetStructureID": 6117, + "Label": "32035-6117 via Conventional from 41663 -> 30901, 41668 -> 30900", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41663, + "TargetID": 30901, + "Directional": true + }, { + "SourceID": 41668, + "TargetID": 30900, + "Directional": true + }] + }, { + "ID": 13161, + "SourceStructureID": 32046, + "TargetStructureID": 422, + "Label": "32046-422 via Conventional from 32057 -> 32058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32057, + "TargetID": 32058, + "Directional": true + }] + }, { + "ID": 13162, + "SourceStructureID": 32046, + "TargetStructureID": 516, + "Label": "32046-516 via Conventional from 32049 -> 32050, 32052 -> 32051, 39233 -> 39235, 39234 -> 39236, 39237 -> 39238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32049, + "TargetID": 32050, + "Directional": true + }, { + "SourceID": 32052, + "TargetID": 32051, + "Directional": true + }, { + "SourceID": 39233, + "TargetID": 39235, + "Directional": true + }, { + "SourceID": 39234, + "TargetID": 39236, + "Directional": true + }, { + "SourceID": 39237, + "TargetID": 39238, + "Directional": true + }] + }, { + "ID": 13163, + "SourceStructureID": 32141, + "TargetStructureID": 518, + "Label": "32141-518 via Conventional from 32142 -> 3348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32142, + "TargetID": 3348, + "Directional": true + }] + }, { + "ID": 13164, + "SourceStructureID": 32147, + "TargetStructureID": 32144, + "Label": "32147-32144 via Conventional from 32149 -> 32146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32149, + "TargetID": 32146, + "Directional": true + }] + }, { + "ID": 13165, + "SourceStructureID": 32147, + "TargetStructureID": 45672, + "Label": "32147-45672 via Conventional from 32148 -> 127756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32148, + "TargetID": 127756, + "Directional": true + }] + }, { + "ID": 13166, + "SourceStructureID": 32160, + "TargetStructureID": 519, + "Label": "32160-519 via Conventional from 32162 -> 32159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32162, + "TargetID": 32159, + "Directional": true + }] + }, { + "ID": 13167, + "SourceStructureID": 32160, + "TargetStructureID": 6617, + "Label": "32160-6617 via Conventional from 32171 -> 6620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32171, + "TargetID": 6620, + "Directional": true + }] + }, { + "ID": 13168, + "SourceStructureID": 32160, + "TargetStructureID": 8575, + "Label": "32160-8575 via Conventional from 32174 -> 21639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32174, + "TargetID": 21639, + "Directional": true + }] + }, { + "ID": 13169, + "SourceStructureID": 32172, + "TargetStructureID": 419, + "Label": "32172-419 via Conventional from 32185 -> 32186", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32185, + "TargetID": 32186, + "Directional": true + }] + }, { + "ID": 13170, + "SourceStructureID": 32172, + "TargetStructureID": 6617, + "Label": "32172-6617 via Conventional from 32173 -> 6621, 64340 -> 26873", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32173, + "TargetID": 6621, + "Directional": true + }, { + "SourceID": 64340, + "TargetID": 26873, + "Directional": true + }] + }, { + "ID": 13171, + "SourceStructureID": 32187, + "TargetStructureID": 6617, + "Label": "32187-6617 via Conventional from 32188 -> 6622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32188, + "TargetID": 6622, + "Directional": true + }] + }, { + "ID": 13172, + "SourceStructureID": 32227, + "TargetStructureID": 519, + "Label": "32227-519 via Conventional from 32228 -> 9294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32228, + "TargetID": 9294, + "Directional": true + }] + }, { + "ID": 13173, + "SourceStructureID": 32227, + "TargetStructureID": 1724, + "Label": "32227-1724 via Conventional from 32232 -> 3986, 101859 -> 101860", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32232, + "TargetID": 3986, + "Directional": true + }, { + "SourceID": 101859, + "TargetID": 101860, + "Directional": true + }] + }, { + "ID": 13174, + "SourceStructureID": 32258, + "TargetStructureID": 39957, + "Label": "32258-39957 via Ribbon Synapse from 58457 -> 58454", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58457, + "TargetID": 58454, + "Directional": true + }] + }, { + "ID": 13175, + "SourceStructureID": 32273, + "TargetStructureID": 447, + "Label": "32273-447 via Conventional from 32279 -> 32278", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32279, + "TargetID": 32278, + "Directional": true + }] + }, { + "ID": 13176, + "SourceStructureID": 32273, + "TargetStructureID": 21779, + "Label": "32273-21779 via Conventional from 32274 -> 32092, 32282 -> 32121", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32274, + "TargetID": 32092, + "Directional": true + }, { + "SourceID": 32282, + "TargetID": 32121, + "Directional": true + }] + }, { + "ID": 13177, + "SourceStructureID": 32312, + "TargetStructureID": 579, + "Label": "32312-579 via Conventional from 32313 -> 32314, 32319 -> 11039", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32313, + "TargetID": 32314, + "Directional": true + }, { + "SourceID": 32319, + "TargetID": 11039, + "Directional": true + }] + }, { + "ID": 13178, + "SourceStructureID": 32354, + "TargetStructureID": 32359, + "Label": "32354-32359 via Conventional from 32362 -> 32363", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32362, + "TargetID": 32363, + "Directional": true + }] + }, { + "ID": 13179, + "SourceStructureID": 32359, + "TargetStructureID": 6128, + "Label": "32359-6128 via Adherens from 41683 -> 21085", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 41683, + "TargetID": 21085, + "Directional": true + }] + }, { + "ID": 13180, + "SourceStructureID": 32359, + "TargetStructureID": 7225, + "Label": "32359-7225 via Ribbon Synapse from 41337 -> 41338", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 41337, + "TargetID": 41338, + "Directional": true + }] + }, { + "ID": 13181, + "SourceStructureID": 32359, + "TargetStructureID": 7859, + "Label": "32359-7859 via Ribbon Synapse from 32369 -> 84730, 41381 -> 84712", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32369, + "TargetID": 84730, + "Directional": true + }, { + "SourceID": 41381, + "TargetID": 84712, + "Directional": true + }] + }, { + "ID": 13182, + "SourceStructureID": 32359, + "TargetStructureID": 8504, + "Label": "32359-8504 via Ribbon Synapse from 41342 -> 8707, 45014 -> 8708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 41342, + "TargetID": 8707, + "Directional": true + }, { + "SourceID": 45014, + "TargetID": 8708, + "Directional": true + }] + }, { + "ID": 13183, + "SourceStructureID": 32359, + "TargetStructureID": 28950, + "Label": "32359-28950 via Ribbon Synapse from 41639 -> 28964", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 41639, + "TargetID": 28964, + "Directional": true + }] + }, { + "ID": 13184, + "SourceStructureID": 32359, + "TargetStructureID": 32354, + "Label": "32359-32354 via Ribbon Synapse from 32366 -> 32367, 32369 -> 32370", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32366, + "TargetID": 32367, + "Directional": true + }, { + "SourceID": 32369, + "TargetID": 32370, + "Directional": true + }] + }, { + "ID": 13185, + "SourceStructureID": 32359, + "TargetStructureID": 35681, + "Label": "32359-35681 via Ribbon Synapse from 35717 -> 35716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35717, + "TargetID": 35716, + "Directional": true + }] + }, { + "ID": 13186, + "SourceStructureID": 32359, + "TargetStructureID": 42776, + "Label": "32359-42776 via Ribbon Synapse from 41335 -> 42777", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 41335, + "TargetID": 42777, + "Directional": true + }] + }, { + "ID": 13187, + "SourceStructureID": 32371, + "TargetStructureID": 516, + "Label": "32371-516 via Conventional from 32372 -> 3746, 32373 -> 3741, 32374 -> 3748, 64567 -> 64568", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32372, + "TargetID": 3746, + "Directional": true + }, { + "SourceID": 32373, + "TargetID": 3741, + "Directional": true + }, { + "SourceID": 32374, + "TargetID": 3748, + "Directional": true + }, { + "SourceID": 64567, + "TargetID": 64568, + "Directional": true + }] + }, { + "ID": 13188, + "SourceStructureID": 32379, + "TargetStructureID": 483, + "Label": "32379-483 via Conventional from 100618 -> 6801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100618, + "TargetID": 6801, + "Directional": true + }] + }, { + "ID": 13189, + "SourceStructureID": 32379, + "TargetStructureID": 485, + "Label": "32379-485 via Conventional from 100609 -> 100610", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100609, + "TargetID": 100610, + "Directional": true + }] + }, { + "ID": 13190, + "SourceStructureID": 32379, + "TargetStructureID": 6912, + "Label": "32379-6912 via Conventional from 32382 -> 26843", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32382, + "TargetID": 26843, + "Directional": true + }] + }, { + "ID": 13191, + "SourceStructureID": 32379, + "TargetStructureID": 15100, + "Label": "32379-15100 via Conventional from 32380 -> 32381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32380, + "TargetID": 32381, + "Directional": true + }] + }, { + "ID": 13192, + "SourceStructureID": 32383, + "TargetStructureID": 142, + "Label": "32383-142 via Conventional from 101699 -> 92143", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101699, + "TargetID": 92143, + "Directional": true + }] + }, { + "ID": 13193, + "SourceStructureID": 32383, + "TargetStructureID": 1724, + "Label": "32383-1724 via Conventional from 99548 -> 1790, 101505 -> 101506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99548, + "TargetID": 1790, + "Directional": true + }, { + "SourceID": 101505, + "TargetID": 101506, + "Directional": true + }] + }, { + "ID": 13194, + "SourceStructureID": 32383, + "TargetStructureID": 5017, + "Label": "32383-5017 via Conventional from 32385 -> 5045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32385, + "TargetID": 5045, + "Directional": true + }] + }, { + "ID": 13195, + "SourceStructureID": 32383, + "TargetStructureID": 5279, + "Label": "32383-5279 via Conventional from 92703 -> 92702, 98049 -> 25828", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92703, + "TargetID": 92702, + "Directional": true + }, { + "SourceID": 98049, + "TargetID": 25828, + "Directional": true + }] + }, { + "ID": 13196, + "SourceStructureID": 32383, + "TargetStructureID": 5513, + "Label": "32383-5513 via Conventional from 35175 -> 40166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35175, + "TargetID": 40166, + "Directional": true + }] + }, { + "ID": 13197, + "SourceStructureID": 32405, + "TargetStructureID": 176, + "Label": "32405-176 via Conventional from 38525 -> 5880", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38525, + "TargetID": 5880, + "Directional": true + }] + }, { + "ID": 13198, + "SourceStructureID": 32405, + "TargetStructureID": 5531, + "Label": "32405-5531 via Conventional from 107528 -> 107529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107528, + "TargetID": 107529, + "Directional": true + }] + }, { + "ID": 13199, + "SourceStructureID": 32405, + "TargetStructureID": 5595, + "Label": "32405-5595 via Conventional from 32406 -> 32407", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32406, + "TargetID": 32407, + "Directional": true + }] + }, { + "ID": 13200, + "SourceStructureID": 32405, + "TargetStructureID": 5598, + "Label": "32405-5598 via Conventional from 32415 -> 32419", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32415, + "TargetID": 32419, + "Directional": true + }] + }, { + "ID": 13201, + "SourceStructureID": 32405, + "TargetStructureID": 32409, + "Label": "32405-32409 via Conventional from 32408 -> 32414", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32408, + "TargetID": 32414, + "Directional": true + }] + }, { + "ID": 13202, + "SourceStructureID": 32405, + "TargetStructureID": 62396, + "Label": "32405-62396 via Conventional from 36027 -> 62405", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36027, + "TargetID": 62405, + "Directional": true + }] + }, { + "ID": 13203, + "SourceStructureID": 32409, + "TargetStructureID": 5601, + "Label": "32409-5601 via Conventional from 32412 -> 32413", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32412, + "TargetID": 32413, + "Directional": true + }] + }, { + "ID": 13204, + "SourceStructureID": 32422, + "TargetStructureID": 5595, + "Label": "32422-5595 via Conventional from 32423 -> 15281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32423, + "TargetID": 15281, + "Directional": true + }] + }, { + "ID": 13205, + "SourceStructureID": 32445, + "TargetStructureID": 7114, + "Label": "32445-7114 via Conventional from 32446 -> 32443", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32446, + "TargetID": 32443, + "Directional": true + }] + }, { + "ID": 13206, + "SourceStructureID": 32451, + "TargetStructureID": 5530, + "Label": "32451-5530 via Conventional from 32455 -> 32456, 81285 -> 81286, 81647 -> 81648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32455, + "TargetID": 32456, + "Directional": true + }, { + "SourceID": 81285, + "TargetID": 81286, + "Directional": true + }, { + "SourceID": 81647, + "TargetID": 81648, + "Directional": true + }] + }, { + "ID": 13207, + "SourceStructureID": 32451, + "TargetStructureID": 5614, + "Label": "32451-5614 via Conventional from 32452 -> 8732", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32452, + "TargetID": 8732, + "Directional": true + }] + }, { + "ID": 13208, + "SourceStructureID": 32465, + "TargetStructureID": 5614, + "Label": "32465-5614 via Conventional from 32466 -> 5619", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32466, + "TargetID": 5619, + "Directional": true + }] + }, { + "ID": 13209, + "SourceStructureID": 32477, + "TargetStructureID": 5565, + "Label": "32477-5565 via Conventional from 32479 -> 32487, 32488 -> 32489, 122605 -> 50186, 122608 -> 50198, 122609 -> 50202, 122612 -> 50213", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32479, + "TargetID": 32487, + "Directional": true + }, { + "SourceID": 32488, + "TargetID": 32489, + "Directional": true + }, { + "SourceID": 122605, + "TargetID": 50186, + "Directional": true + }, { + "SourceID": 122608, + "TargetID": 50198, + "Directional": true + }, { + "SourceID": 122609, + "TargetID": 50202, + "Directional": true + }, { + "SourceID": 122612, + "TargetID": 50213, + "Directional": true + }] + }, { + "ID": 13210, + "SourceStructureID": 32477, + "TargetStructureID": 5923, + "Label": "32477-5923 via Conventional from 32478 -> 32476", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32478, + "TargetID": 32476, + "Directional": true + }] + }, { + "ID": 13211, + "SourceStructureID": 32477, + "TargetStructureID": 6118, + "Label": "32477-6118 via Conventional from 32494 -> 32497, 32498 -> 65907", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32494, + "TargetID": 32497, + "Directional": true + }, { + "SourceID": 32498, + "TargetID": 65907, + "Directional": true + }] + }, { + "ID": 13212, + "SourceStructureID": 32477, + "TargetStructureID": 6120, + "Label": "32477-6120 via Conventional from 32503 -> 32505", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32503, + "TargetID": 32505, + "Directional": true + }] + }, { + "ID": 13213, + "SourceStructureID": 32477, + "TargetStructureID": 32513, + "Label": "32477-32513 via Conventional from 32511 -> 32514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32511, + "TargetID": 32514, + "Directional": true + }] + }, { + "ID": 13214, + "SourceStructureID": 32477, + "TargetStructureID": 89546, + "Label": "32477-89546 via Conventional from 89548 -> 89547", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89548, + "TargetID": 89547, + "Directional": true + }] + }, { + "ID": 13215, + "SourceStructureID": 32513, + "TargetStructureID": 6141, + "Label": "32513-6141 via Conventional from 32515 -> 32512, 32517 -> 32519", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32515, + "TargetID": 32512, + "Directional": true + }, { + "SourceID": 32517, + "TargetID": 32519, + "Directional": true + }] + }, { + "ID": 13216, + "SourceStructureID": 32534, + "TargetStructureID": 168, + "Label": "32534-168 via Conventional from 32537 -> 4220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32537, + "TargetID": 4220, + "Directional": true + }] + }, { + "ID": 13217, + "SourceStructureID": 32534, + "TargetStructureID": 606, + "Label": "32534-606 via Conventional from 32548 -> 53486", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32548, + "TargetID": 53486, + "Directional": true + }] + }, { + "ID": 13218, + "SourceStructureID": 32534, + "TargetStructureID": 8720, + "Label": "32534-8720 via Conventional from 46313 -> 60250", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46313, + "TargetID": 60250, + "Directional": true + }] + }, { + "ID": 13219, + "SourceStructureID": 32534, + "TargetStructureID": 21299, + "Label": "32534-21299 via Conventional from 32535 -> 32533", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32535, + "TargetID": 32533, + "Directional": true + }] + }, { + "ID": 13220, + "SourceStructureID": 32547, + "TargetStructureID": 286, + "Label": "32547-286 via Conventional from 32559 -> 32560", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32559, + "TargetID": 32560, + "Directional": true + }] + }, { + "ID": 13221, + "SourceStructureID": 32547, + "TargetStructureID": 6164, + "Label": "32547-6164 via Conventional from 32550 -> 26869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32550, + "TargetID": 26869, + "Directional": true + }] + }, { + "ID": 13222, + "SourceStructureID": 32566, + "TargetStructureID": 280, + "Label": "32566-280 via Conventional from 32571 -> 32572", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32571, + "TargetID": 32572, + "Directional": true + }] + }, { + "ID": 13223, + "SourceStructureID": 32577, + "TargetStructureID": 6164, + "Label": "32577-6164 via Conventional from 32578 -> 32576, 32579 -> 26870", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32578, + "TargetID": 32576, + "Directional": true + }, { + "SourceID": 32579, + "TargetID": 26870, + "Directional": true + }] + }, { + "ID": 13224, + "SourceStructureID": 32581, + "TargetStructureID": 321, + "Label": "32581-321 via Conventional from 32584 -> 32585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32584, + "TargetID": 32585, + "Directional": true + }] + }, { + "ID": 13225, + "SourceStructureID": 32581, + "TargetStructureID": 366, + "Label": "32581-366 via Conventional from 32601 -> 13963", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32601, + "TargetID": 13963, + "Directional": true + }] + }, { + "ID": 13226, + "SourceStructureID": 32581, + "TargetStructureID": 431, + "Label": "32581-431 via Conventional from 32604 -> 32605", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32604, + "TargetID": 32605, + "Directional": true + }] + }, { + "ID": 13227, + "SourceStructureID": 32581, + "TargetStructureID": 6164, + "Label": "32581-6164 via Conventional from 32582 -> 26871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32582, + "TargetID": 26871, + "Directional": true + }] + }, { + "ID": 13228, + "SourceStructureID": 32608, + "TargetStructureID": 366, + "Label": "32608-366 via Conventional from 32615 -> 32616", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32615, + "TargetID": 32616, + "Directional": true + }] + }, { + "ID": 13229, + "SourceStructureID": 32608, + "TargetStructureID": 369, + "Label": "32608-369 via Conventional from 32612 -> 32613", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32612, + "TargetID": 32613, + "Directional": true + }] + }, { + "ID": 13230, + "SourceStructureID": 32608, + "TargetStructureID": 431, + "Label": "32608-431 via Conventional from 32618 -> 119063", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32618, + "TargetID": 119063, + "Directional": true + }] + }, { + "ID": 13231, + "SourceStructureID": 32608, + "TargetStructureID": 6164, + "Label": "32608-6164 via Conventional from 32609 -> 11761", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32609, + "TargetID": 11761, + "Directional": true + }] + }, { + "ID": 13232, + "SourceStructureID": 32621, + "TargetStructureID": 6164, + "Label": "32621-6164 via Conventional from 32622 -> 11758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32622, + "TargetID": 11758, + "Directional": true + }] + }, { + "ID": 13233, + "SourceStructureID": 32626, + "TargetStructureID": 6561, + "Label": "32626-6561 via Conventional from 32627 -> 8340, 32628 -> 8341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32627, + "TargetID": 8340, + "Directional": true + }, { + "SourceID": 32628, + "TargetID": 8341, + "Directional": true + }] + }, { + "ID": 13234, + "SourceStructureID": 32637, + "TargetStructureID": 6561, + "Label": "32637-6561 via Conventional from 32638 -> 8342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32638, + "TargetID": 8342, + "Directional": true + }] + }, { + "ID": 13235, + "SourceStructureID": 32641, + "TargetStructureID": 6561, + "Label": "32641-6561 via Conventional from 32642 -> 8343", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32642, + "TargetID": 8343, + "Directional": true + }] + }, { + "ID": 13236, + "SourceStructureID": 32643, + "TargetStructureID": 6617, + "Label": "32643-6617 via Conventional from 32644 -> 17567", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32644, + "TargetID": 17567, + "Directional": true + }] + }, { + "ID": 13237, + "SourceStructureID": 32643, + "TargetStructureID": 32654, + "Label": "32643-32654 via Conventional from 32651 -> 32657", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32651, + "TargetID": 32657, + "Directional": true + }] + }, { + "ID": 13238, + "SourceStructureID": 32643, + "TargetStructureID": 32668, + "Label": "32643-32668 via Conventional from 32673 -> 32674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32673, + "TargetID": 32674, + "Directional": true + }] + }, { + "ID": 13239, + "SourceStructureID": 32643, + "TargetStructureID": 87158, + "Label": "32643-87158 via Conventional from 32648 -> 87161", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32648, + "TargetID": 87161, + "Directional": true + }] + }, { + "ID": 13240, + "SourceStructureID": 32654, + "TargetStructureID": 32643, + "Label": "32654-32643 via Ribbon Synapse from 32658 -> 32653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32658, + "TargetID": 32653, + "Directional": true + }] + }, { + "ID": 13241, + "SourceStructureID": 32654, + "TargetStructureID": 32804, + "Label": "32654-32804 via Ribbon Synapse from 32837 -> 32836, 32842 -> 32841, 81047 -> 32839", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32837, + "TargetID": 32836, + "Directional": true + }, { + "SourceID": 32842, + "TargetID": 32841, + "Directional": true + }, { + "SourceID": 81047, + "TargetID": 32839, + "Directional": true + }] + }, { + "ID": 13242, + "SourceStructureID": 32654, + "TargetStructureID": 61960, + "Label": "32654-61960 via Ribbon Synapse from 49306 -> 81650", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49306, + "TargetID": 81650, + "Directional": true + }] + }, { + "ID": 13243, + "SourceStructureID": 32654, + "TargetStructureID": 66958, + "Label": "32654-66958 via Ribbon Synapse from 49308 -> 70113", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49308, + "TargetID": 70113, + "Directional": true + }] + }, { + "ID": 13244, + "SourceStructureID": 32654, + "TargetStructureID": 81038, + "Label": "32654-81038 via Ribbon Synapse from 81037 -> 81040", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81037, + "TargetID": 81040, + "Directional": true + }] + }, { + "ID": 13245, + "SourceStructureID": 32654, + "TargetStructureID": 81039, + "Label": "32654-81039 via Ribbon Synapse from 81037 -> 81041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81037, + "TargetID": 81041, + "Directional": true + }] + }, { + "ID": 13246, + "SourceStructureID": 32654, + "TargetStructureID": 81056, + "Label": "32654-81056 via Ribbon Synapse from 81055 -> 81060", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81055, + "TargetID": 81060, + "Directional": true + }] + }, { + "ID": 13247, + "SourceStructureID": 32654, + "TargetStructureID": 81057, + "Label": "32654-81057 via Ribbon Synapse from 81055 -> 81059", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81055, + "TargetID": 81059, + "Directional": true + }] + }, { + "ID": 13248, + "SourceStructureID": 32654, + "TargetStructureID": 81063, + "Label": "32654-81063 via Ribbon Synapse from 81062 -> 81064", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81062, + "TargetID": 81064, + "Directional": true + }] + }, { + "ID": 13249, + "SourceStructureID": 32654, + "TargetStructureID": 81079, + "Label": "32654-81079 via Ribbon Synapse from 81078 -> 81080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81078, + "TargetID": 81080, + "Directional": true + }] + }, { + "ID": 13250, + "SourceStructureID": 32654, + "TargetStructureID": 81085, + "Label": "32654-81085 via Ribbon Synapse from 81084 -> 81086", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81084, + "TargetID": 81086, + "Directional": true + }] + }, { + "ID": 13251, + "SourceStructureID": 32654, + "TargetStructureID": 81087, + "Label": "32654-81087 via Ribbon Synapse from 32842 -> 81088", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 32842, + "TargetID": 81088, + "Directional": true + }] + }, { + "ID": 13252, + "SourceStructureID": 32654, + "TargetStructureID": 87158, + "Label": "32654-87158 via BC Conventional Synapse from 118970 -> 118969", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118970, + "TargetID": 118969, + "Directional": true + }] + }, { + "ID": 13253, + "SourceStructureID": 32660, + "TargetStructureID": 6617, + "Label": "32660-6617 via Conventional from 32661 -> 6627, 32663 -> 6624, 32664 -> 6626", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32661, + "TargetID": 6627, + "Directional": true + }, { + "SourceID": 32663, + "TargetID": 6624, + "Directional": true + }, { + "SourceID": 32664, + "TargetID": 6626, + "Directional": true + }] + }, { + "ID": 13254, + "SourceStructureID": 32666, + "TargetStructureID": 6618, + "Label": "32666-6618 via Conventional from 32667 -> 17611", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32667, + "TargetID": 17611, + "Directional": true + }] + }, { + "ID": 13255, + "SourceStructureID": 32668, + "TargetStructureID": 307, + "Label": "32668-307 via Conventional from 32671 -> 15980", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32671, + "TargetID": 15980, + "Directional": true + }] + }, { + "ID": 13256, + "SourceStructureID": 32668, + "TargetStructureID": 6618, + "Label": "32668-6618 via Conventional from 32670 -> 17610", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32670, + "TargetID": 17610, + "Directional": true + }] + }, { + "ID": 13257, + "SourceStructureID": 32676, + "TargetStructureID": 7054, + "Label": "32676-7054 via Conventional from 32678 -> 10896", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32678, + "TargetID": 10896, + "Directional": true + }] + }, { + "ID": 13258, + "SourceStructureID": 32681, + "TargetStructureID": 334, + "Label": "32681-334 via Conventional from 38481 -> 38482, 64570 -> 64569, 64573 -> 64572", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38481, + "TargetID": 38482, + "Directional": true + }, { + "SourceID": 64570, + "TargetID": 64569, + "Directional": true + }, { + "SourceID": 64573, + "TargetID": 64572, + "Directional": true + }] + }, { + "ID": 13259, + "SourceStructureID": 32681, + "TargetStructureID": 8586, + "Label": "32681-8586 via Conventional from 32682 -> 32680", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32682, + "TargetID": 32680, + "Directional": true + }] + }, { + "ID": 13260, + "SourceStructureID": 32719, + "TargetStructureID": 8749, + "Label": "32719-8749 via Conventional from 32720 -> 8850, 32724 -> 8852, 32725 -> 8854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32720, + "TargetID": 8850, + "Directional": true + }, { + "SourceID": 32724, + "TargetID": 8852, + "Directional": true + }, { + "SourceID": 32725, + "TargetID": 8854, + "Directional": true + }] + }, { + "ID": 13261, + "SourceStructureID": 32726, + "TargetStructureID": 410, + "Label": "32726-410 via Conventional from 32733 -> 18164", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32733, + "TargetID": 18164, + "Directional": true + }] + }, { + "ID": 13262, + "SourceStructureID": 32726, + "TargetStructureID": 5117, + "Label": "32726-5117 via Conventional from 32732 -> 15002", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32732, + "TargetID": 15002, + "Directional": true + }] + }, { + "ID": 13263, + "SourceStructureID": 32726, + "TargetStructureID": 6153, + "Label": "32726-6153 via Conventional from 32727 -> 32728, 32729 -> 32730, 32731 -> 18166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32727, + "TargetID": 32728, + "Directional": true + }, { + "SourceID": 32729, + "TargetID": 32730, + "Directional": true + }, { + "SourceID": 32731, + "TargetID": 18166, + "Directional": true + }] + }, { + "ID": 13264, + "SourceStructureID": 32734, + "TargetStructureID": 476, + "Label": "32734-476 via Conventional from 32735 -> 16501", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32735, + "TargetID": 16501, + "Directional": true + }] + }, { + "ID": 13265, + "SourceStructureID": 32739, + "TargetStructureID": 410, + "Label": "32739-410 via Conventional from 32742 -> 32737, 32745 -> 23113, 32747 -> 32746, 32748 -> 18277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32742, + "TargetID": 32737, + "Directional": true + }, { + "SourceID": 32745, + "TargetID": 23113, + "Directional": true + }, { + "SourceID": 32747, + "TargetID": 32746, + "Directional": true + }, { + "SourceID": 32748, + "TargetID": 18277, + "Directional": true + }] + }, { + "ID": 13266, + "SourceStructureID": 32739, + "TargetStructureID": 419, + "Label": "32739-419 via Conventional from 32740 -> 32741, 32744 -> 32743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32740, + "TargetID": 32741, + "Directional": true + }, { + "SourceID": 32744, + "TargetID": 32743, + "Directional": true + }] + }, { + "ID": 13267, + "SourceStructureID": 32739, + "TargetStructureID": 514, + "Label": "32739-514 via Conventional from 32749 -> 15085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32749, + "TargetID": 15085, + "Directional": true + }] + }, { + "ID": 13268, + "SourceStructureID": 32739, + "TargetStructureID": 9693, + "Label": "32739-9693 via Conventional from 32750 -> 28198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32750, + "TargetID": 28198, + "Directional": true + }] + }, { + "ID": 13269, + "SourceStructureID": 32751, + "TargetStructureID": 2610, + "Label": "32751-2610 via Conventional from 32752 -> 18221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32752, + "TargetID": 18221, + "Directional": true + }] + }, { + "ID": 13270, + "SourceStructureID": 32751, + "TargetStructureID": 9693, + "Label": "32751-9693 via Conventional from 32753 -> 27495", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32753, + "TargetID": 27495, + "Directional": true + }] + }, { + "ID": 13271, + "SourceStructureID": 32754, + "TargetStructureID": 304, + "Label": "32754-304 via Conventional from 32755 -> 32756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32755, + "TargetID": 32756, + "Directional": true + }] + }, { + "ID": 13272, + "SourceStructureID": 32767, + "TargetStructureID": 11044, + "Label": "32767-11044 via Conventional from 32768 -> 32766", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32768, + "TargetID": 32766, + "Directional": true + }] + }, { + "ID": 13273, + "SourceStructureID": 32771, + "TargetStructureID": 10412, + "Label": "32771-10412 via Conventional from 32772 -> 10413", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32772, + "TargetID": 10413, + "Directional": true + }] + }, { + "ID": 13274, + "SourceStructureID": 32773, + "TargetStructureID": 6203, + "Label": "32773-6203 via Conventional from 32775 -> 32776, 32779 -> 32780", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32775, + "TargetID": 32776, + "Directional": true + }, { + "SourceID": 32779, + "TargetID": 32780, + "Directional": true + }] + }, { + "ID": 13275, + "SourceStructureID": 32773, + "TargetStructureID": 10412, + "Label": "32773-10412 via Conventional from 32774 -> 10416", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32774, + "TargetID": 10416, + "Directional": true + }] + }, { + "ID": 13276, + "SourceStructureID": 32787, + "TargetStructureID": 5601, + "Label": "32787-5601 via Conventional from 32790 -> 32791", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32790, + "TargetID": 32791, + "Directional": true + }] + }, { + "ID": 13277, + "SourceStructureID": 32787, + "TargetStructureID": 10815, + "Label": "32787-10815 via Conventional from 32788 -> 32786", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32788, + "TargetID": 32786, + "Directional": true + }] + }, { + "ID": 13278, + "SourceStructureID": 32795, + "TargetStructureID": 10826, + "Label": "32795-10826 via Conventional from 32796 -> 32794, 35466 -> 35467", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32796, + "TargetID": 32794, + "Directional": true + }, { + "SourceID": 35466, + "TargetID": 35467, + "Directional": true + }] + }, { + "ID": 13279, + "SourceStructureID": 32795, + "TargetStructureID": 11248, + "Label": "32795-11248 via Conventional from 33293 -> 33292, 33295 -> 33294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33293, + "TargetID": 33292, + "Directional": true + }, { + "SourceID": 33295, + "TargetID": 33294, + "Directional": true + }] + }, { + "ID": 13280, + "SourceStructureID": 32802, + "TargetStructureID": 10826, + "Label": "32802-10826 via Conventional from 32803 -> 32801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32803, + "TargetID": 32801, + "Directional": true + }] + }, { + "ID": 13281, + "SourceStructureID": 32802, + "TargetStructureID": 67469, + "Label": "32802-67469 via Conventional from 35552 -> 69686", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35552, + "TargetID": 69686, + "Directional": true + }] + }, { + "ID": 13282, + "SourceStructureID": 32804, + "TargetStructureID": 5522, + "Label": "32804-5522 via Conventional from 32805 -> 64124, 32808 -> 64254, 64304 -> 64303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32805, + "TargetID": 64124, + "Directional": true + }, { + "SourceID": 32808, + "TargetID": 64254, + "Directional": true + }, { + "SourceID": 64304, + "TargetID": 64303, + "Directional": true + }] + }, { + "ID": 13283, + "SourceStructureID": 32804, + "TargetStructureID": 5623, + "Label": "32804-5623 via Conventional from 32818 -> 32820", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32818, + "TargetID": 32820, + "Directional": true + }] + }, { + "ID": 13284, + "SourceStructureID": 32804, + "TargetStructureID": 6997, + "Label": "32804-6997 via Conventional from 32821 -> 32822, 32825 -> 22281, 32829 -> 22312", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32821, + "TargetID": 32822, + "Directional": true + }, { + "SourceID": 32825, + "TargetID": 22281, + "Directional": true + }, { + "SourceID": 32829, + "TargetID": 22312, + "Directional": true + }] + }, { + "ID": 13285, + "SourceStructureID": 32804, + "TargetStructureID": 32654, + "Label": "32804-32654 via Conventional from 32832 -> 49276, 32834 -> 49319, 32840 -> 32843, 32844 -> 32845", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32832, + "TargetID": 49276, + "Directional": true + }, { + "SourceID": 32834, + "TargetID": 49319, + "Directional": true + }, { + "SourceID": 32840, + "TargetID": 32843, + "Directional": true + }, { + "SourceID": 32844, + "TargetID": 32845, + "Directional": true + }] + }, { + "ID": 13286, + "SourceStructureID": 32804, + "TargetStructureID": 61270, + "Label": "32804-61270 via Conventional from 32831 -> 61274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32831, + "TargetID": 61274, + "Directional": true + }] + }, { + "ID": 13287, + "SourceStructureID": 32804, + "TargetStructureID": 64196, + "Label": "32804-64196 via Conventional from 32810 -> 64208", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32810, + "TargetID": 64208, + "Directional": true + }] + }, { + "ID": 13288, + "SourceStructureID": 32804, + "TargetStructureID": 64268, + "Label": "32804-64268 via Conventional from 32811 -> 64286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32811, + "TargetID": 64286, + "Directional": true + }] + }, { + "ID": 13289, + "SourceStructureID": 32804, + "TargetStructureID": 80755, + "Label": "32804-80755 via Conventional from 32847 -> 118928, 80758 -> 80759, 80775 -> 80776", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32847, + "TargetID": 118928, + "Directional": true + }, { + "SourceID": 80758, + "TargetID": 80759, + "Directional": true + }, { + "SourceID": 80775, + "TargetID": 80776, + "Directional": true + }] + }, { + "ID": 13290, + "SourceStructureID": 32804, + "TargetStructureID": 81105, + "Label": "32804-81105 via Conventional from 32824 -> 81106", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32824, + "TargetID": 81106, + "Directional": true + }] + }, { + "ID": 13291, + "SourceStructureID": 32848, + "TargetStructureID": 518, + "Label": "32848-518 via Conventional from 36416 -> 36415, 36417 -> 3358, 36418 -> 3364, 36697 -> 3350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36416, + "TargetID": 36415, + "Directional": true + }, { + "SourceID": 36417, + "TargetID": 3358, + "Directional": true + }, { + "SourceID": 36418, + "TargetID": 3364, + "Directional": true + }, { + "SourceID": 36697, + "TargetID": 3350, + "Directional": true + }] + }, { + "ID": 13292, + "SourceStructureID": 32848, + "TargetStructureID": 10872, + "Label": "32848-10872 via Conventional from 32849 -> 10873, 32850 -> 10874, 32851 -> 10875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32849, + "TargetID": 10873, + "Directional": true + }, { + "SourceID": 32850, + "TargetID": 10874, + "Directional": true + }, { + "SourceID": 32851, + "TargetID": 10875, + "Directional": true + }] + }, { + "ID": 13293, + "SourceStructureID": 32853, + "TargetStructureID": 10872, + "Label": "32853-10872 via Conventional from 32854 -> 10876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32854, + "TargetID": 10876, + "Directional": true + }] + }, { + "ID": 13294, + "SourceStructureID": 32855, + "TargetStructureID": 10872, + "Label": "32855-10872 via Conventional from 32856 -> 10876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32856, + "TargetID": 10876, + "Directional": true + }] + }, { + "ID": 13295, + "SourceStructureID": 32857, + "TargetStructureID": 10872, + "Label": "32857-10872 via Conventional from 32858 -> 10878", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32858, + "TargetID": 10878, + "Directional": true + }] + }, { + "ID": 13296, + "SourceStructureID": 32862, + "TargetStructureID": 5513, + "Label": "32862-5513 via Conventional from 32865 -> 32866, 32868 -> 118225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32865, + "TargetID": 32866, + "Directional": true + }, { + "SourceID": 32868, + "TargetID": 118225, + "Directional": true + }] + }, { + "ID": 13297, + "SourceStructureID": 32862, + "TargetStructureID": 10872, + "Label": "32862-10872 via Conventional from 32863 -> 10884", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32863, + "TargetID": 10884, + "Directional": true + }] + }, { + "ID": 13298, + "SourceStructureID": 32862, + "TargetStructureID": 25575, + "Label": "32862-25575 via Conventional from 32867 -> 25587", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32867, + "TargetID": 25587, + "Directional": true + }] + }, { + "ID": 13299, + "SourceStructureID": 32871, + "TargetStructureID": 10931, + "Label": "32871-10931 via Conventional from 32872 -> 10932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32872, + "TargetID": 10932, + "Directional": true + }] + }, { + "ID": 13300, + "SourceStructureID": 32874, + "TargetStructureID": 138, + "Label": "32874-138 via Conventional from 32876 -> 32882, 32883 -> 32885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32876, + "TargetID": 32882, + "Directional": true + }, { + "SourceID": 32883, + "TargetID": 32885, + "Directional": true + }] + }, { + "ID": 13301, + "SourceStructureID": 32874, + "TargetStructureID": 2063, + "Label": "32874-2063 via Conventional from 32890 -> 36138", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32890, + "TargetID": 36138, + "Directional": true + }] + }, { + "ID": 13302, + "SourceStructureID": 32874, + "TargetStructureID": 32871, + "Label": "32874-32871 via Conventional from 32875 -> 32873", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32875, + "TargetID": 32873, + "Directional": true + }] + }, { + "ID": 13303, + "SourceStructureID": 32892, + "TargetStructureID": 138, + "Label": "32892-138 via Conventional from 32893 -> 32894", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32893, + "TargetID": 32894, + "Directional": true + }] + }, { + "ID": 13304, + "SourceStructureID": 32892, + "TargetStructureID": 32874, + "Label": "32892-32874 via Conventional from 32896 -> 32888", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32896, + "TargetID": 32888, + "Directional": true + }] + }, { + "ID": 13305, + "SourceStructureID": 32900, + "TargetStructureID": 108861, + "Label": "32900-108861 via Conventional from 38362 -> 108866", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38362, + "TargetID": 108866, + "Directional": true + }] + }, { + "ID": 13306, + "SourceStructureID": 32905, + "TargetStructureID": 10931, + "Label": "32905-10931 via Conventional from 32906 -> 10935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32906, + "TargetID": 10935, + "Directional": true + }] + }, { + "ID": 13307, + "SourceStructureID": 32911, + "TargetStructureID": 10943, + "Label": "32911-10943 via Conventional from 32912 -> 16259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32912, + "TargetID": 16259, + "Directional": true + }] + }, { + "ID": 13308, + "SourceStructureID": 32913, + "TargetStructureID": 593, + "Label": "32913-593 via Conventional from 66288 -> 66289", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66288, + "TargetID": 66289, + "Directional": true + }] + }, { + "ID": 13309, + "SourceStructureID": 32913, + "TargetStructureID": 10943, + "Label": "32913-10943 via Conventional from 32914 -> 16261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32914, + "TargetID": 16261, + "Directional": true + }] + }, { + "ID": 13310, + "SourceStructureID": 32913, + "TargetStructureID": 16026, + "Label": "32913-16026 via Conventional from 38351 -> 38352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38351, + "TargetID": 38352, + "Directional": true + }] + }, { + "ID": 13311, + "SourceStructureID": 32913, + "TargetStructureID": 66804, + "Label": "32913-66804 via Conventional from 38350 -> 66811", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38350, + "TargetID": 66811, + "Directional": true + }] + }, { + "ID": 13312, + "SourceStructureID": 32913, + "TargetStructureID": 67080, + "Label": "32913-67080 via Conventional from 67079 -> 67081", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67079, + "TargetID": 67081, + "Directional": true + }] + }, { + "ID": 13313, + "SourceStructureID": 32916, + "TargetStructureID": 168, + "Label": "32916-168 via Conventional from 49171 -> 49170", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 49171, + "TargetID": 49170, + "Directional": true + }] + }, { + "ID": 13314, + "SourceStructureID": 32916, + "TargetStructureID": 10960, + "Label": "32916-10960 via Conventional from 32917 -> 12472", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32917, + "TargetID": 12472, + "Directional": true + }] + }, { + "ID": 13315, + "SourceStructureID": 32920, + "TargetStructureID": 166, + "Label": "32920-166 via Conventional from 39004 -> 39005", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39004, + "TargetID": 39005, + "Directional": true + }] + }, { + "ID": 13316, + "SourceStructureID": 32920, + "TargetStructureID": 170, + "Label": "32920-170 via Conventional from 32923 -> 1218", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32923, + "TargetID": 1218, + "Directional": true + }] + }, { + "ID": 13317, + "SourceStructureID": 32920, + "TargetStructureID": 10960, + "Label": "32920-10960 via Conventional from 32921 -> 32919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32921, + "TargetID": 32919, + "Directional": true + }] + }, { + "ID": 13318, + "SourceStructureID": 32926, + "TargetStructureID": 5535, + "Label": "32926-5535 via Conventional from 32933 -> 32932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32933, + "TargetID": 32932, + "Directional": true + }] + }, { + "ID": 13319, + "SourceStructureID": 32926, + "TargetStructureID": 5609, + "Label": "32926-5609 via Conventional from 32927 -> 32931", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32927, + "TargetID": 32931, + "Directional": true + }] + }, { + "ID": 13320, + "SourceStructureID": 32926, + "TargetStructureID": 10964, + "Label": "32926-10964 via Conventional from 32928 -> 31489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32928, + "TargetID": 31489, + "Directional": true + }] + }, { + "ID": 13321, + "SourceStructureID": 32936, + "TargetStructureID": 11020, + "Label": "32936-11020 via Conventional from 32937 -> 20010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32937, + "TargetID": 20010, + "Directional": true + }] + }, { + "ID": 13322, + "SourceStructureID": 32945, + "TargetStructureID": 11030, + "Label": "32945-11030 via Conventional from 32946 -> 32947", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32946, + "TargetID": 32947, + "Directional": true + }] + }, { + "ID": 13323, + "SourceStructureID": 32950, + "TargetStructureID": 5297, + "Label": "32950-5297 via Conventional from 32953 -> 39415", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32953, + "TargetID": 39415, + "Directional": true + }] + }, { + "ID": 13324, + "SourceStructureID": 32950, + "TargetStructureID": 32950, + "Label": "32950-32950 via Conventional from 32951 -> 32952", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32951, + "TargetID": 32952, + "Directional": true + }] + }, { + "ID": 13325, + "SourceStructureID": 32954, + "TargetStructureID": 6115, + "Label": "32954-6115 via Conventional from 32956 -> 32957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32956, + "TargetID": 32957, + "Directional": true + }] + }, { + "ID": 13326, + "SourceStructureID": 32959, + "TargetStructureID": 517, + "Label": "32959-517 via Conventional from 33025 -> 33026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33025, + "TargetID": 33026, + "Directional": true + }] + }, { + "ID": 13327, + "SourceStructureID": 32959, + "TargetStructureID": 11033, + "Label": "32959-11033 via Conventional from 32960 -> 32961", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32960, + "TargetID": 32961, + "Directional": true + }] + }, { + "ID": 13328, + "SourceStructureID": 32959, + "TargetStructureID": 11038, + "Label": "32959-11038 via Conventional from 33021 -> 33022", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33021, + "TargetID": 33022, + "Directional": true + }] + }, { + "ID": 13329, + "SourceStructureID": 32959, + "TargetStructureID": 11321, + "Label": "32959-11321 via Conventional from 33017 -> 33014, 33019 -> 33018", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33017, + "TargetID": 33014, + "Directional": true + }, { + "SourceID": 33019, + "TargetID": 33018, + "Directional": true + }] + }, { + "ID": 13330, + "SourceStructureID": 32970, + "TargetStructureID": 166, + "Label": "32970-166 via Conventional from 32980 -> 59977, 32981 -> 32982, 32981 -> 59988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32980, + "TargetID": 59977, + "Directional": true + }, { + "SourceID": 32981, + "TargetID": 32982, + "Directional": true + }, { + "SourceID": 32981, + "TargetID": 59988, + "Directional": true + }] + }, { + "ID": 13331, + "SourceStructureID": 32970, + "TargetStructureID": 6115, + "Label": "32970-6115 via Conventional from 32974 -> 16056, 32975 -> 32976, 72679 -> 72680", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32974, + "TargetID": 16056, + "Directional": true + }, { + "SourceID": 32975, + "TargetID": 32976, + "Directional": true + }, { + "SourceID": 72679, + "TargetID": 72680, + "Directional": true + }] + }, { + "ID": 13332, + "SourceStructureID": 32970, + "TargetStructureID": 11030, + "Label": "32970-11030 via Conventional from 32971 -> 32972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32971, + "TargetID": 32972, + "Directional": true + }] + }, { + "ID": 13333, + "SourceStructureID": 32970, + "TargetStructureID": 16087, + "Label": "32970-16087 via Conventional from 32977 -> 16089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32977, + "TargetID": 16089, + "Directional": true + }] + }, { + "ID": 13334, + "SourceStructureID": 32970, + "TargetStructureID": 71519, + "Label": "32970-71519 via Conventional from 32973 -> 77036", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32973, + "TargetID": 77036, + "Directional": true + }] + }, { + "ID": 13335, + "SourceStructureID": 32987, + "TargetStructureID": 11089, + "Label": "32987-11089 via Conventional from 32988 -> 30498", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32988, + "TargetID": 30498, + "Directional": true + }] + }, { + "ID": 13336, + "SourceStructureID": 32989, + "TargetStructureID": 11089, + "Label": "32989-11089 via Conventional from 32990 -> 32991", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32990, + "TargetID": 32991, + "Directional": true + }] + }, { + "ID": 13337, + "SourceStructureID": 32992, + "TargetStructureID": 11172, + "Label": "32992-11172 via Conventional from 32993 -> 15697", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32993, + "TargetID": 15697, + "Directional": true + }] + }, { + "ID": 13338, + "SourceStructureID": 32994, + "TargetStructureID": 579, + "Label": "32994-579 via Conventional from 99197 -> 99198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99197, + "TargetID": 99198, + "Directional": true + }] + }, { + "ID": 13339, + "SourceStructureID": 32994, + "TargetStructureID": 5565, + "Label": "32994-5565 via Conventional from 99201 -> 50274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99201, + "TargetID": 50274, + "Directional": true + }] + }, { + "ID": 13340, + "SourceStructureID": 32994, + "TargetStructureID": 11172, + "Label": "32994-11172 via Conventional from 32995 -> 15698", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32995, + "TargetID": 15698, + "Directional": true + }] + }, { + "ID": 13341, + "SourceStructureID": 33003, + "TargetStructureID": 11172, + "Label": "33003-11172 via Conventional from 33004 -> 15705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33004, + "TargetID": 15705, + "Directional": true + }] + }, { + "ID": 13342, + "SourceStructureID": 33003, + "TargetStructureID": 66958, + "Label": "33003-66958 via Conventional from 69947 -> 69937", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69947, + "TargetID": 69937, + "Directional": true + }] + }, { + "ID": 13343, + "SourceStructureID": 33008, + "TargetStructureID": 11250, + "Label": "33008-11250 via Conventional from 33009 -> 30291", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33009, + "TargetID": 30291, + "Directional": true + }] + }, { + "ID": 13344, + "SourceStructureID": 33039, + "TargetStructureID": 4877, + "Label": "33039-4877 via Conventional from 33049 -> 126822, 54222 -> 126865", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33049, + "TargetID": 126822, + "Directional": true + }, { + "SourceID": 54222, + "TargetID": 126865, + "Directional": true + }] + }, { + "ID": 13345, + "SourceStructureID": 33039, + "TargetStructureID": 5637, + "Label": "33039-5637 via Conventional from 33053 -> 33054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33053, + "TargetID": 33054, + "Directional": true + }] + }, { + "ID": 13346, + "SourceStructureID": 33039, + "TargetStructureID": 11321, + "Label": "33039-11321 via Conventional from 33040 -> 33038", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33040, + "TargetID": 33038, + "Directional": true + }] + }, { + "ID": 13347, + "SourceStructureID": 33057, + "TargetStructureID": 606, + "Label": "33057-606 via Conventional from 33061 -> 48121, 33064 -> 33065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33061, + "TargetID": 48121, + "Directional": true + }, { + "SourceID": 33064, + "TargetID": 33065, + "Directional": true + }] + }, { + "ID": 13348, + "SourceStructureID": 33057, + "TargetStructureID": 5468, + "Label": "33057-5468 via Conventional from 33060 -> 48130", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33060, + "TargetID": 48130, + "Directional": true + }] + }, { + "ID": 13349, + "SourceStructureID": 33057, + "TargetStructureID": 11321, + "Label": "33057-11321 via Conventional from 33058 -> 33056", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33058, + "TargetID": 33056, + "Directional": true + }] + }, { + "ID": 13350, + "SourceStructureID": 33072, + "TargetStructureID": 11401, + "Label": "33072-11401 via Conventional from 33073 -> 11403", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33073, + "TargetID": 11403, + "Directional": true + }] + }, { + "ID": 13351, + "SourceStructureID": 33088, + "TargetStructureID": 14615, + "Label": "33088-14615 via Conventional from 33089 -> 25316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33089, + "TargetID": 25316, + "Directional": true + }] + }, { + "ID": 13352, + "SourceStructureID": 33092, + "TargetStructureID": 5283, + "Label": "33092-5283 via Conventional from 123779 -> 123780", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123779, + "TargetID": 123780, + "Directional": true + }] + }, { + "ID": 13353, + "SourceStructureID": 33092, + "TargetStructureID": 14615, + "Label": "33092-14615 via Conventional from 36608 -> 33091", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36608, + "TargetID": 33091, + "Directional": true + }] + }, { + "ID": 13354, + "SourceStructureID": 33114, + "TargetStructureID": 15100, + "Label": "33114-15100 via Conventional from 33115 -> 17999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33115, + "TargetID": 17999, + "Directional": true + }] + }, { + "ID": 13355, + "SourceStructureID": 33117, + "TargetStructureID": 15100, + "Label": "33117-15100 via Conventional from 33118 -> 33119", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33118, + "TargetID": 33119, + "Directional": true + }] + }, { + "ID": 13356, + "SourceStructureID": 33117, + "TargetStructureID": 26079, + "Label": "33117-26079 via Conventional from 33125 -> 33126", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33125, + "TargetID": 33126, + "Directional": true + }] + }, { + "ID": 13357, + "SourceStructureID": 33127, + "TargetStructureID": 408, + "Label": "33127-408 via Conventional from 33129 -> 33131, 33133 -> 52952", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33129, + "TargetID": 33131, + "Directional": true + }, { + "SourceID": 33133, + "TargetID": 52952, + "Directional": true + }] + }, { + "ID": 13358, + "SourceStructureID": 33127, + "TargetStructureID": 6912, + "Label": "33127-6912 via Conventional from 33135 -> 6927, 33139 -> 33140, 33142 -> 33146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33135, + "TargetID": 6927, + "Directional": true + }, { + "SourceID": 33139, + "TargetID": 33140, + "Directional": true + }, { + "SourceID": 33142, + "TargetID": 33146, + "Directional": true + }] + }, { + "ID": 13359, + "SourceStructureID": 33127, + "TargetStructureID": 15942, + "Label": "33127-15942 via Conventional from 33128 -> 15967", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33128, + "TargetID": 15967, + "Directional": true + }] + }, { + "ID": 13360, + "SourceStructureID": 33127, + "TargetStructureID": 28886, + "Label": "33127-28886 via Conventional from 33143 -> 51321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33143, + "TargetID": 51321, + "Directional": true + }] + }, { + "ID": 13361, + "SourceStructureID": 33148, + "TargetStructureID": 324, + "Label": "33148-324 via Conventional from 33155 -> 12378", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33155, + "TargetID": 12378, + "Directional": true + }] + }, { + "ID": 13362, + "SourceStructureID": 33148, + "TargetStructureID": 366, + "Label": "33148-366 via Conventional from 33154 -> 13988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33154, + "TargetID": 13988, + "Directional": true + }] + }, { + "ID": 13363, + "SourceStructureID": 33148, + "TargetStructureID": 15979, + "Label": "33148-15979 via Conventional from 33149 -> 33147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33149, + "TargetID": 33147, + "Directional": true + }] + }, { + "ID": 13364, + "SourceStructureID": 33161, + "TargetStructureID": 461, + "Label": "33161-461 via Conventional from 114779 -> 114778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114779, + "TargetID": 114778, + "Directional": true + }] + }, { + "ID": 13365, + "SourceStructureID": 33198, + "TargetStructureID": 16446, + "Label": "33198-16446 via Conventional from 33199 -> 16450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33199, + "TargetID": 16450, + "Directional": true + }] + }, { + "ID": 13366, + "SourceStructureID": 33200, + "TargetStructureID": 16446, + "Label": "33200-16446 via Conventional from 33202 -> 33201", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33202, + "TargetID": 33201, + "Directional": true + }] + }, { + "ID": 13367, + "SourceStructureID": 33217, + "TargetStructureID": 5528, + "Label": "33217-5528 via Conventional from 33228 -> 94177, 93977 -> 93976, 94147 -> 94148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33228, + "TargetID": 94177, + "Directional": true + }, { + "SourceID": 93977, + "TargetID": 93976, + "Directional": true + }, { + "SourceID": 94147, + "TargetID": 94148, + "Directional": true + }] + }, { + "ID": 13368, + "SourceStructureID": 33217, + "TargetStructureID": 5530, + "Label": "33217-5530 via Conventional from 33220 -> 23841", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33220, + "TargetID": 23841, + "Directional": true + }] + }, { + "ID": 13369, + "SourceStructureID": 33217, + "TargetStructureID": 6129, + "Label": "33217-6129 via Conventional from 88533 -> 88534", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88533, + "TargetID": 88534, + "Directional": true + }] + }, { + "ID": 13370, + "SourceStructureID": 33217, + "TargetStructureID": 10596, + "Label": "33217-10596 via Conventional from 33218 -> 33215", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33218, + "TargetID": 33215, + "Directional": true + }] + }, { + "ID": 13371, + "SourceStructureID": 33253, + "TargetStructureID": 10956, + "Label": "33253-10956 via Conventional from 33254 -> 33248", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33254, + "TargetID": 33248, + "Directional": true + }] + }, { + "ID": 13372, + "SourceStructureID": 33272, + "TargetStructureID": 5598, + "Label": "33272-5598 via Conventional from 89761 -> 89762, 89770 -> 89771, 89773 -> 89774", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89761, + "TargetID": 89762, + "Directional": true + }, { + "SourceID": 89770, + "TargetID": 89771, + "Directional": true + }, { + "SourceID": 89773, + "TargetID": 89774, + "Directional": true + }] + }, { + "ID": 13373, + "SourceStructureID": 33272, + "TargetStructureID": 6141, + "Label": "33272-6141 via Conventional from 33276 -> 33277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33276, + "TargetID": 33277, + "Directional": true + }] + }, { + "ID": 13374, + "SourceStructureID": 33272, + "TargetStructureID": 11038, + "Label": "33272-11038 via Conventional from 89712 -> 89717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89712, + "TargetID": 89717, + "Directional": true + }] + }, { + "ID": 13375, + "SourceStructureID": 33272, + "TargetStructureID": 89737, + "Label": "33272-89737 via Conventional from 33278 -> 89738", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33278, + "TargetID": 89738, + "Directional": true + }] + }, { + "ID": 13376, + "SourceStructureID": 33333, + "TargetStructureID": 516, + "Label": "33333-516 via Conventional from 33334 -> 10846, 64361 -> 64360", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33334, + "TargetID": 10846, + "Directional": true + }, { + "SourceID": 64361, + "TargetID": 64360, + "Directional": true + }] + }, { + "ID": 13377, + "SourceStructureID": 33588, + "TargetStructureID": 280, + "Label": "33588-280 via Conventional from 33591 -> 33592, 33593 -> 33594", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33591, + "TargetID": 33592, + "Directional": true + }, { + "SourceID": 33593, + "TargetID": 33594, + "Directional": true + }] + }, { + "ID": 13378, + "SourceStructureID": 33615, + "TargetStructureID": 5563, + "Label": "33615-5563 via Conventional from 33619 -> 33614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33619, + "TargetID": 33614, + "Directional": true + }] + }, { + "ID": 13379, + "SourceStructureID": 33615, + "TargetStructureID": 5565, + "Label": "33615-5565 via Conventional from 33616 -> 33617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33616, + "TargetID": 33617, + "Directional": true + }] + }, { + "ID": 13380, + "SourceStructureID": 33625, + "TargetStructureID": 15796, + "Label": "33625-15796 via Conventional from 33645 -> 55676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33645, + "TargetID": 55676, + "Directional": true + }] + }, { + "ID": 13381, + "SourceStructureID": 33625, + "TargetStructureID": 99338, + "Label": "33625-99338 via Conventional from 99216 -> 99339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99216, + "TargetID": 99339, + "Directional": true + }] + }, { + "ID": 13382, + "SourceStructureID": 33625, + "TargetStructureID": 99356, + "Label": "33625-99356 via Conventional from 33647 -> 99357", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33647, + "TargetID": 99357, + "Directional": true + }] + }, { + "ID": 13383, + "SourceStructureID": 33625, + "TargetStructureID": 99365, + "Label": "33625-99365 via Conventional from 33648 -> 99368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33648, + "TargetID": 99368, + "Directional": true + }] + }, { + "ID": 13384, + "SourceStructureID": 33625, + "TargetStructureID": 99370, + "Label": "33625-99370 via Conventional from 33649 -> 99373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33649, + "TargetID": 99373, + "Directional": true + }] + }, { + "ID": 13385, + "SourceStructureID": 33675, + "TargetStructureID": 10956, + "Label": "33675-10956 via Conventional from 33676 -> 33674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33676, + "TargetID": 33674, + "Directional": true + }] + }, { + "ID": 13386, + "SourceStructureID": 33714, + "TargetStructureID": 5303, + "Label": "33714-5303 via Conventional from 99379 -> 35733", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99379, + "TargetID": 35733, + "Directional": true + }] + }, { + "ID": 13387, + "SourceStructureID": 33714, + "TargetStructureID": 6204, + "Label": "33714-6204 via Conventional from 99382 -> 99384", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99382, + "TargetID": 99384, + "Directional": true + }] + }, { + "ID": 13388, + "SourceStructureID": 33714, + "TargetStructureID": 11085, + "Label": "33714-11085 via Conventional from 33716 -> 33713", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33716, + "TargetID": 33713, + "Directional": true + }] + }, { + "ID": 13389, + "SourceStructureID": 33873, + "TargetStructureID": 1724, + "Label": "33873-1724 via Conventional from 33874 -> 3982", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33874, + "TargetID": 3982, + "Directional": true + }] + }, { + "ID": 13390, + "SourceStructureID": 33873, + "TargetStructureID": 5575, + "Label": "33873-5575 via Conventional from 33876 -> 22951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33876, + "TargetID": 22951, + "Directional": true + }] + }, { + "ID": 13391, + "SourceStructureID": 33881, + "TargetStructureID": 458, + "Label": "33881-458 via Conventional from 33922 -> 14531", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33922, + "TargetID": 14531, + "Directional": true + }] + }, { + "ID": 13392, + "SourceStructureID": 33881, + "TargetStructureID": 968, + "Label": "33881-968 via Conventional from 33912 -> 33913", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33912, + "TargetID": 33913, + "Directional": true + }] + }, { + "ID": 13393, + "SourceStructureID": 33881, + "TargetStructureID": 992, + "Label": "33881-992 via Conventional from 33908 -> 60207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33908, + "TargetID": 60207, + "Directional": true + }] + }, { + "ID": 13394, + "SourceStructureID": 33881, + "TargetStructureID": 4849, + "Label": "33881-4849 via Conventional from 33882 -> 33883, 33884 -> 33885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33882, + "TargetID": 33883, + "Directional": true + }, { + "SourceID": 33884, + "TargetID": 33885, + "Directional": true + }] + }, { + "ID": 13395, + "SourceStructureID": 33881, + "TargetStructureID": 4850, + "Label": "33881-4850 via Conventional from 33887 -> 33892", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33887, + "TargetID": 33892, + "Directional": true + }] + }, { + "ID": 13396, + "SourceStructureID": 33881, + "TargetStructureID": 131722, + "Label": "33881-131722 via Conventional from 33917 -> 131737", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33917, + "TargetID": 131737, + "Directional": true + }] + }, { + "ID": 13397, + "SourceStructureID": 34028, + "TargetStructureID": 142, + "Label": "34028-142 via Conventional from 34033 -> 92931", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34033, + "TargetID": 92931, + "Directional": true + }] + }, { + "ID": 13398, + "SourceStructureID": 34028, + "TargetStructureID": 171, + "Label": "34028-171 via Conventional from 34029 -> 34030", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34029, + "TargetID": 34030, + "Directional": true + }] + }, { + "ID": 13399, + "SourceStructureID": 34028, + "TargetStructureID": 39696, + "Label": "34028-39696 via Conventional from 34032 -> 39782", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34032, + "TargetID": 39782, + "Directional": true + }] + }, { + "ID": 13400, + "SourceStructureID": 34034, + "TargetStructureID": 171, + "Label": "34034-171 via Conventional from 34035 -> 87723", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34035, + "TargetID": 87723, + "Directional": true + }] + }, { + "ID": 13401, + "SourceStructureID": 34036, + "TargetStructureID": 142, + "Label": "34036-142 via Conventional from 34039 -> 31788, 34050 -> 34051, 47139 -> 47138", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34039, + "TargetID": 31788, + "Directional": true + }, { + "SourceID": 34050, + "TargetID": 34051, + "Directional": true + }, { + "SourceID": 47139, + "TargetID": 47138, + "Directional": true + }] + }, { + "ID": 13402, + "SourceStructureID": 34036, + "TargetStructureID": 171, + "Label": "34036-171 via Conventional from 34037 -> 34038", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34037, + "TargetID": 34038, + "Directional": true + }] + }, { + "ID": 13403, + "SourceStructureID": 34036, + "TargetStructureID": 176, + "Label": "34036-176 via Conventional from 34043 -> 34044", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34043, + "TargetID": 34044, + "Directional": true + }] + }, { + "ID": 13404, + "SourceStructureID": 34036, + "TargetStructureID": 5279, + "Label": "34036-5279 via Conventional from 34049 -> 49213", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34049, + "TargetID": 49213, + "Directional": true + }] + }, { + "ID": 13405, + "SourceStructureID": 34036, + "TargetStructureID": 6117, + "Label": "34036-6117 via Conventional from 34040 -> 59089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34040, + "TargetID": 59089, + "Directional": true + }] + }, { + "ID": 13406, + "SourceStructureID": 34036, + "TargetStructureID": 10625, + "Label": "34036-10625 via Conventional from 34047 -> 33607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34047, + "TargetID": 33607, + "Directional": true + }] + }, { + "ID": 13407, + "SourceStructureID": 34053, + "TargetStructureID": 273, + "Label": "34053-273 via Conventional from 34054 -> 34052", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34054, + "TargetID": 34052, + "Directional": true + }] + }, { + "ID": 13408, + "SourceStructureID": 34055, + "TargetStructureID": 168, + "Label": "34055-168 via Conventional from 34079 -> 34082, 34085 -> 4226, 81944 -> 81945", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34079, + "TargetID": 34082, + "Directional": true + }, { + "SourceID": 34085, + "TargetID": 4226, + "Directional": true + }, { + "SourceID": 81944, + "TargetID": 81945, + "Directional": true + }] + }, { + "ID": 13409, + "SourceStructureID": 34055, + "TargetStructureID": 176, + "Label": "34055-176 via Conventional from 34105 -> 34109", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34105, + "TargetID": 34109, + "Directional": true + }] + }, { + "ID": 13410, + "SourceStructureID": 34055, + "TargetStructureID": 273, + "Label": "34055-273 via Conventional from 34056 -> 34057", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34056, + "TargetID": 34057, + "Directional": true + }] + }, { + "ID": 13411, + "SourceStructureID": 34055, + "TargetStructureID": 330, + "Label": "34055-330 via Conventional from 34286 -> 26177", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34286, + "TargetID": 26177, + "Directional": true + }] + }, { + "ID": 13412, + "SourceStructureID": 34055, + "TargetStructureID": 431, + "Label": "34055-431 via Conventional from 34063 -> 12655, 34283 -> 34284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34063, + "TargetID": 12655, + "Directional": true + }, { + "SourceID": 34283, + "TargetID": 34284, + "Directional": true + }] + }, { + "ID": 13413, + "SourceStructureID": 34055, + "TargetStructureID": 446, + "Label": "34055-446 via Conventional from 34288 -> 34289, 34290 -> 34291, 34292 -> 34293", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34288, + "TargetID": 34289, + "Directional": true + }, { + "SourceID": 34290, + "TargetID": 34291, + "Directional": true + }, { + "SourceID": 34292, + "TargetID": 34293, + "Directional": true + }] + }, { + "ID": 13414, + "SourceStructureID": 34055, + "TargetStructureID": 461, + "Label": "34055-461 via Conventional from 34074 -> 14679, 34075 -> 14802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34074, + "TargetID": 14679, + "Directional": true + }, { + "SourceID": 34075, + "TargetID": 14802, + "Directional": true + }] + }, { + "ID": 13415, + "SourceStructureID": 34055, + "TargetStructureID": 468, + "Label": "34055-468 via Conventional from 34465 -> 12930, 34469 -> 34470", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34465, + "TargetID": 12930, + "Directional": true + }, { + "SourceID": 34469, + "TargetID": 34470, + "Directional": true + }] + }, { + "ID": 13416, + "SourceStructureID": 34055, + "TargetStructureID": 5530, + "Label": "34055-5530 via Conventional from 34096 -> 80192", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34096, + "TargetID": 80192, + "Directional": true + }] + }, { + "ID": 13417, + "SourceStructureID": 34055, + "TargetStructureID": 5598, + "Label": "34055-5598 via Conventional from 34121 -> 34122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34121, + "TargetID": 34122, + "Directional": true + }] + }, { + "ID": 13418, + "SourceStructureID": 34055, + "TargetStructureID": 5601, + "Label": "34055-5601 via Conventional from 34100 -> 34101", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34100, + "TargetID": 34101, + "Directional": true + }] + }, { + "ID": 13419, + "SourceStructureID": 34055, + "TargetStructureID": 6203, + "Label": "34055-6203 via Conventional from 34125 -> 34126", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34125, + "TargetID": 34126, + "Directional": true + }] + }, { + "ID": 13420, + "SourceStructureID": 34055, + "TargetStructureID": 10412, + "Label": "34055-10412 via Conventional from 38477 -> 34124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38477, + "TargetID": 34124, + "Directional": true + }] + }, { + "ID": 13421, + "SourceStructureID": 34055, + "TargetStructureID": 12564, + "Label": "34055-12564 via Conventional from 55640 -> 55641", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55640, + "TargetID": 55641, + "Directional": true + }] + }, { + "ID": 13422, + "SourceStructureID": 34135, + "TargetStructureID": 285, + "Label": "34135-285 via Conventional from 34136 -> 34137", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34136, + "TargetID": 34137, + "Directional": true + }] + }, { + "ID": 13423, + "SourceStructureID": 34135, + "TargetStructureID": 309, + "Label": "34135-309 via Conventional from 99434 -> 13315", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99434, + "TargetID": 13315, + "Directional": true + }] + }, { + "ID": 13424, + "SourceStructureID": 34148, + "TargetStructureID": 286, + "Label": "34148-286 via Conventional from 38749 -> 38750", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38749, + "TargetID": 38750, + "Directional": true + }] + }, { + "ID": 13425, + "SourceStructureID": 34148, + "TargetStructureID": 293, + "Label": "34148-293 via Conventional from 34149 -> 14378", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34149, + "TargetID": 14378, + "Directional": true + }] + }, { + "ID": 13426, + "SourceStructureID": 34148, + "TargetStructureID": 20311, + "Label": "34148-20311 via Conventional from 38748 -> 30342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38748, + "TargetID": 30342, + "Directional": true + }] + }, { + "ID": 13427, + "SourceStructureID": 34152, + "TargetStructureID": 293, + "Label": "34152-293 via Conventional from 34153 -> 34151", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34153, + "TargetID": 34151, + "Directional": true + }] + }, { + "ID": 13428, + "SourceStructureID": 34152, + "TargetStructureID": 55191, + "Label": "34152-55191 via Conventional from 34155 -> 55193", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34155, + "TargetID": 55193, + "Directional": true + }] + }, { + "ID": 13429, + "SourceStructureID": 34159, + "TargetStructureID": 294, + "Label": "34159-294 via Conventional from 34160 -> 34158", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34160, + "TargetID": 34158, + "Directional": true + }] + }, { + "ID": 13430, + "SourceStructureID": 34159, + "TargetStructureID": 99482, + "Label": "34159-99482 via Conventional from 34163 -> 99485", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34163, + "TargetID": 99485, + "Directional": true + }] + }, { + "ID": 13431, + "SourceStructureID": 34164, + "TargetStructureID": 71882, + "Label": "34164-71882 via Ribbon Synapse from 90289 -> 90290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90289, + "TargetID": 90290, + "Directional": true + }] + }, { + "ID": 13432, + "SourceStructureID": 34165, + "TargetStructureID": 350, + "Label": "34165-350 via Conventional from 34166 -> 18730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34166, + "TargetID": 18730, + "Directional": true + }] + }, { + "ID": 13433, + "SourceStructureID": 34165, + "TargetStructureID": 446, + "Label": "34165-446 via Conventional from 34169 -> 34170", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34169, + "TargetID": 34170, + "Directional": true + }] + }, { + "ID": 13434, + "SourceStructureID": 34253, + "TargetStructureID": 332, + "Label": "34253-332 via Conventional from 99491 -> 99492", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99491, + "TargetID": 99492, + "Directional": true + }] + }, { + "ID": 13435, + "SourceStructureID": 34253, + "TargetStructureID": 365, + "Label": "34253-365 via Conventional from 34254 -> 34252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34254, + "TargetID": 34252, + "Directional": true + }] + }, { + "ID": 13436, + "SourceStructureID": 34253, + "TargetStructureID": 6153, + "Label": "34253-6153 via Conventional from 99495 -> 99496", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99495, + "TargetID": 99496, + "Directional": true + }] + }, { + "ID": 13437, + "SourceStructureID": 34256, + "TargetStructureID": 365, + "Label": "34256-365 via Conventional from 34257 -> 34255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34257, + "TargetID": 34255, + "Directional": true + }] + }, { + "ID": 13438, + "SourceStructureID": 34259, + "TargetStructureID": 365, + "Label": "34259-365 via Conventional from 34260 -> 34258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34260, + "TargetID": 34258, + "Directional": true + }] + }, { + "ID": 13439, + "SourceStructureID": 34259, + "TargetStructureID": 34256, + "Label": "34259-34256 via Conventional from 34261 -> 45616", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34261, + "TargetID": 45616, + "Directional": true + }] + }, { + "ID": 13440, + "SourceStructureID": 34263, + "TargetStructureID": 365, + "Label": "34263-365 via Conventional from 34264 -> 34265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34264, + "TargetID": 34265, + "Directional": true + }] + }, { + "ID": 13441, + "SourceStructureID": 34270, + "TargetStructureID": 324, + "Label": "34270-324 via Conventional from 34273 -> 34274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34273, + "TargetID": 34274, + "Directional": true + }] + }, { + "ID": 13442, + "SourceStructureID": 34270, + "TargetStructureID": 330, + "Label": "34270-330 via Conventional from 34277 -> 26155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34277, + "TargetID": 26155, + "Directional": true + }] + }, { + "ID": 13443, + "SourceStructureID": 34270, + "TargetStructureID": 369, + "Label": "34270-369 via Conventional from 34271 -> 34269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34271, + "TargetID": 34269, + "Directional": true + }] + }, { + "ID": 13444, + "SourceStructureID": 34270, + "TargetStructureID": 34055, + "Label": "34270-34055 via Conventional from 34281 -> 34066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34281, + "TargetID": 34066, + "Directional": true + }] + }, { + "ID": 13445, + "SourceStructureID": 34295, + "TargetStructureID": 422, + "Label": "34295-422 via Conventional from 34296 -> 34294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34296, + "TargetID": 34294, + "Directional": true + }] + }, { + "ID": 13446, + "SourceStructureID": 34300, + "TargetStructureID": 422, + "Label": "34300-422 via Conventional from 34301 -> 34299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34301, + "TargetID": 34299, + "Directional": true + }] + }, { + "ID": 13447, + "SourceStructureID": 34306, + "TargetStructureID": 434, + "Label": "34306-434 via Conventional from 34307 -> 34305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34307, + "TargetID": 34305, + "Directional": true + }] + }, { + "ID": 13448, + "SourceStructureID": 34306, + "TargetStructureID": 461, + "Label": "34306-461 via Conventional from 114809 -> 114808", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114809, + "TargetID": 114808, + "Directional": true + }] + }, { + "ID": 13449, + "SourceStructureID": 34311, + "TargetStructureID": 330, + "Label": "34311-330 via Conventional from 99509 -> 99510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99509, + "TargetID": 99510, + "Directional": true + }] + }, { + "ID": 13450, + "SourceStructureID": 34311, + "TargetStructureID": 434, + "Label": "34311-434 via Conventional from 35496 -> 35497", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35496, + "TargetID": 35497, + "Directional": true + }] + }, { + "ID": 13451, + "SourceStructureID": 34311, + "TargetStructureID": 441, + "Label": "34311-441 via Conventional from 34312 -> 2041, 64298 -> 2047, 64299 -> 2045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34312, + "TargetID": 2041, + "Directional": true + }, { + "SourceID": 64298, + "TargetID": 2047, + "Directional": true + }, { + "SourceID": 64299, + "TargetID": 2045, + "Directional": true + }] + }, { + "ID": 13452, + "SourceStructureID": 34315, + "TargetStructureID": 445, + "Label": "34315-445 via Conventional from 34335 -> 1969", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34335, + "TargetID": 1969, + "Directional": true + }] + }, { + "ID": 13453, + "SourceStructureID": 34315, + "TargetStructureID": 446, + "Label": "34315-446 via Conventional from 35147 -> 35148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35147, + "TargetID": 35148, + "Directional": true + }] + }, { + "ID": 13454, + "SourceStructureID": 34315, + "TargetStructureID": 606, + "Label": "34315-606 via Conventional from 34324 -> 34327, 34328 -> 48102, 35503 -> 35504, 35505 -> 5077, 52379 -> 52378, 53709 -> 53708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34324, + "TargetID": 34327, + "Directional": true + }, { + "SourceID": 34328, + "TargetID": 48102, + "Directional": true + }, { + "SourceID": 35503, + "TargetID": 35504, + "Directional": true + }, { + "SourceID": 35505, + "TargetID": 5077, + "Directional": true + }, { + "SourceID": 52379, + "TargetID": 52378, + "Directional": true + }, { + "SourceID": 53709, + "TargetID": 53708, + "Directional": true + }] + }, { + "ID": 13455, + "SourceStructureID": 34315, + "TargetStructureID": 5468, + "Label": "34315-5468 via Conventional from 35509 -> 48213", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35509, + "TargetID": 48213, + "Directional": true + }] + }, { + "ID": 13456, + "SourceStructureID": 34315, + "TargetStructureID": 5528, + "Label": "34315-5528 via Conventional from 34317 -> 34319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34317, + "TargetID": 34319, + "Directional": true + }] + }, { + "ID": 13457, + "SourceStructureID": 34315, + "TargetStructureID": 5601, + "Label": "34315-5601 via Conventional from 34323 -> 34326, 35506 -> 35507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34323, + "TargetID": 34326, + "Directional": true + }, { + "SourceID": 35506, + "TargetID": 35507, + "Directional": true + }] + }, { + "ID": 13458, + "SourceStructureID": 34315, + "TargetStructureID": 7594, + "Label": "34315-7594 via Conventional from 34325 -> 7608", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34325, + "TargetID": 7608, + "Directional": true + }] + }, { + "ID": 13459, + "SourceStructureID": 34337, + "TargetStructureID": 34336, + "Label": "34337-34336 via Conventional from 34339 -> 34340", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34339, + "TargetID": 34340, + "Directional": true + }] + }, { + "ID": 13460, + "SourceStructureID": 34452, + "TargetStructureID": 464, + "Label": "34452-464 via Conventional from 34453 -> 8068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34453, + "TargetID": 8068, + "Directional": true + }] + }, { + "ID": 13461, + "SourceStructureID": 34494, + "TargetStructureID": 324, + "Label": "34494-324 via Conventional from 34507 -> 34508", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34507, + "TargetID": 34508, + "Directional": true + }] + }, { + "ID": 13462, + "SourceStructureID": 34494, + "TargetStructureID": 366, + "Label": "34494-366 via Conventional from 34505 -> 34506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34505, + "TargetID": 34506, + "Directional": true + }] + }, { + "ID": 13463, + "SourceStructureID": 34494, + "TargetStructureID": 428, + "Label": "34494-428 via Conventional from 66206 -> 66205", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66206, + "TargetID": 66205, + "Directional": true + }] + }, { + "ID": 13464, + "SourceStructureID": 34494, + "TargetStructureID": 469, + "Label": "34494-469 via Conventional from 34495 -> 34491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34495, + "TargetID": 34491, + "Directional": true + }] + }, { + "ID": 13465, + "SourceStructureID": 34494, + "TargetStructureID": 471, + "Label": "34494-471 via Conventional from 34496 -> 34493", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34496, + "TargetID": 34493, + "Directional": true + }] + }, { + "ID": 13466, + "SourceStructureID": 34494, + "TargetStructureID": 4569, + "Label": "34494-4569 via Conventional from 98361 -> 98362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98361, + "TargetID": 98362, + "Directional": true + }] + }, { + "ID": 13467, + "SourceStructureID": 34494, + "TargetStructureID": 38605, + "Label": "34494-38605 via Conventional from 34502 -> 38608", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34502, + "TargetID": 38608, + "Directional": true + }] + }, { + "ID": 13468, + "SourceStructureID": 34509, + "TargetStructureID": 469, + "Label": "34509-469 via Conventional from 34510 -> 34511", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34510, + "TargetID": 34511, + "Directional": true + }] + }, { + "ID": 13469, + "SourceStructureID": 34527, + "TargetStructureID": 469, + "Label": "34527-469 via Conventional from 34528 -> 34529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34528, + "TargetID": 34529, + "Directional": true + }] + }, { + "ID": 13470, + "SourceStructureID": 34527, + "TargetStructureID": 483, + "Label": "34527-483 via Conventional from 34534 -> 6768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34534, + "TargetID": 6768, + "Directional": true + }] + }, { + "ID": 13471, + "SourceStructureID": 34527, + "TargetStructureID": 4570, + "Label": "34527-4570 via Conventional from 34539 -> 4793", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34539, + "TargetID": 4793, + "Directional": true + }] + }, { + "ID": 13472, + "SourceStructureID": 34601, + "TargetStructureID": 180, + "Label": "34601-180 via Conventional from 33327 -> 33328, 34613 -> 6567", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 33327, + "TargetID": 33328, + "Directional": true + }, { + "SourceID": 34613, + "TargetID": 6567, + "Directional": true + }] + }, { + "ID": 13473, + "SourceStructureID": 34601, + "TargetStructureID": 483, + "Label": "34601-483 via Conventional from 32283 -> 6780, 103722 -> 6805", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 32283, + "TargetID": 6780, + "Directional": true + }, { + "SourceID": 103722, + "TargetID": 6805, + "Directional": true + }] + }, { + "ID": 13474, + "SourceStructureID": 34601, + "TargetStructureID": 518, + "Label": "34601-518 via Conventional from 34602 -> 14708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34602, + "TargetID": 14708, + "Directional": true + }] + }, { + "ID": 13475, + "SourceStructureID": 34601, + "TargetStructureID": 519, + "Label": "34601-519 via Conventional from 25437 -> 9251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 25437, + "TargetID": 9251, + "Directional": true + }] + }, { + "ID": 13476, + "SourceStructureID": 34601, + "TargetStructureID": 6155, + "Label": "34601-6155 via Conventional from 34604 -> 34605", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34604, + "TargetID": 34605, + "Directional": true + }] + }, { + "ID": 13477, + "SourceStructureID": 34601, + "TargetStructureID": 60229, + "Label": "34601-60229 via Conventional from 60336 -> 60234", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60336, + "TargetID": 60234, + "Directional": true + }] + }, { + "ID": 13478, + "SourceStructureID": 34601, + "TargetStructureID": 60337, + "Label": "34601-60337 via Conventional from 60340 -> 60338", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60340, + "TargetID": 60338, + "Directional": true + }] + }, { + "ID": 13479, + "SourceStructureID": 34621, + "TargetStructureID": 419, + "Label": "34621-419 via Conventional from 36712 -> 38450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36712, + "TargetID": 38450, + "Directional": true + }] + }, { + "ID": 13480, + "SourceStructureID": 34621, + "TargetStructureID": 485, + "Label": "34621-485 via Conventional from 101121 -> 101120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101121, + "TargetID": 101120, + "Directional": true + }] + }, { + "ID": 13481, + "SourceStructureID": 34621, + "TargetStructureID": 518, + "Label": "34621-518 via Conventional from 34622 -> 14709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34622, + "TargetID": 14709, + "Directional": true + }] + }, { + "ID": 13482, + "SourceStructureID": 34756, + "TargetStructureID": 579, + "Label": "34756-579 via Conventional from 34757 -> 33608", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34757, + "TargetID": 33608, + "Directional": true + }] + }, { + "ID": 13483, + "SourceStructureID": 34847, + "TargetStructureID": 3881, + "Label": "34847-3881 via Conventional from 34848 -> 34846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34848, + "TargetID": 34846, + "Directional": true + }] + }, { + "ID": 13484, + "SourceStructureID": 34847, + "TargetStructureID": 5528, + "Label": "34847-5528 via Conventional from 34851 -> 34853", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34851, + "TargetID": 34853, + "Directional": true + }] + }, { + "ID": 13485, + "SourceStructureID": 34847, + "TargetStructureID": 5537, + "Label": "34847-5537 via Conventional from 34858 -> 34859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34858, + "TargetID": 34859, + "Directional": true + }] + }, { + "ID": 13486, + "SourceStructureID": 34847, + "TargetStructureID": 6127, + "Label": "34847-6127 via Conventional from 34861 -> 34862, 34866 -> 34867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34861, + "TargetID": 34862, + "Directional": true + }, { + "SourceID": 34866, + "TargetID": 34867, + "Directional": true + }] + }, { + "ID": 13487, + "SourceStructureID": 34868, + "TargetStructureID": 170, + "Label": "34868-170 via Conventional from 89384 -> 89385, 89386 -> 89387, 89997 -> 89998, 90357 -> 90358", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89384, + "TargetID": 89385, + "Directional": true + }, { + "SourceID": 89386, + "TargetID": 89387, + "Directional": true + }, { + "SourceID": 89997, + "TargetID": 89998, + "Directional": true + }, { + "SourceID": 90357, + "TargetID": 90358, + "Directional": true + }] + }, { + "ID": 13488, + "SourceStructureID": 34868, + "TargetStructureID": 330, + "Label": "34868-330 via Conventional from 38572 -> 38574, 38583 -> 25875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38572, + "TargetID": 38574, + "Directional": true + }, { + "SourceID": 38583, + "TargetID": 25875, + "Directional": true + }] + }, { + "ID": 13489, + "SourceStructureID": 34868, + "TargetStructureID": 431, + "Label": "34868-431 via Conventional from 38578 -> 38581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38578, + "TargetID": 38581, + "Directional": true + }] + }, { + "ID": 13490, + "SourceStructureID": 34868, + "TargetStructureID": 606, + "Label": "34868-606 via Conventional from 38596 -> 38597, 52576 -> 48787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38596, + "TargetID": 38597, + "Directional": true + }, { + "SourceID": 52576, + "TargetID": 48787, + "Directional": true + }] + }, { + "ID": 13491, + "SourceStructureID": 34868, + "TargetStructureID": 1637, + "Label": "34868-1637 via Conventional from 38564 -> 38563", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38564, + "TargetID": 38563, + "Directional": true + }] + }, { + "ID": 13492, + "SourceStructureID": 34868, + "TargetStructureID": 4569, + "Label": "34868-4569 via Conventional from 38567 -> 38568", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38567, + "TargetID": 38568, + "Directional": true + }] + }, { + "ID": 13493, + "SourceStructureID": 34868, + "TargetStructureID": 5017, + "Label": "34868-5017 via Conventional from 34869 -> 5043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34869, + "TargetID": 5043, + "Directional": true + }] + }, { + "ID": 13494, + "SourceStructureID": 34868, + "TargetStructureID": 7024, + "Label": "34868-7024 via Conventional from 34878 -> 48586, 38557 -> 38558, 38559 -> 38560, 38562 -> 38561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34878, + "TargetID": 48586, + "Directional": true + }, { + "SourceID": 38557, + "TargetID": 38558, + "Directional": true + }, { + "SourceID": 38559, + "TargetID": 38560, + "Directional": true + }, { + "SourceID": 38562, + "TargetID": 38561, + "Directional": true + }] + }, { + "ID": 13495, + "SourceStructureID": 34882, + "TargetStructureID": 5017, + "Label": "34882-5017 via Conventional from 34883 -> 17047", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34883, + "TargetID": 17047, + "Directional": true + }] + }, { + "ID": 13496, + "SourceStructureID": 34882, + "TargetStructureID": 6997, + "Label": "34882-6997 via Conventional from 34886 -> 70891", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34886, + "TargetID": 70891, + "Directional": true + }] + }, { + "ID": 13497, + "SourceStructureID": 34893, + "TargetStructureID": 6123, + "Label": "34893-6123 via Conventional from 34894 -> 34895", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34894, + "TargetID": 34895, + "Directional": true + }] + }, { + "ID": 13498, + "SourceStructureID": 34899, + "TargetStructureID": 5556, + "Label": "34899-5556 via Conventional from 34900 -> 33612", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34900, + "TargetID": 33612, + "Directional": true + }] + }, { + "ID": 13499, + "SourceStructureID": 34899, + "TargetStructureID": 5645, + "Label": "34899-5645 via Conventional from 34904 -> 47717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34904, + "TargetID": 47717, + "Directional": true + }] + }, { + "ID": 13500, + "SourceStructureID": 34899, + "TargetStructureID": 31157, + "Label": "34899-31157 via Conventional from 34901 -> 35179", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34901, + "TargetID": 35179, + "Directional": true + }] + }, { + "ID": 13501, + "SourceStructureID": 34919, + "TargetStructureID": 6163, + "Label": "34919-6163 via Conventional from 34920 -> 34921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34920, + "TargetID": 34921, + "Directional": true + }] + }, { + "ID": 13502, + "SourceStructureID": 34922, + "TargetStructureID": 6163, + "Label": "34922-6163 via Conventional from 34923 -> 34924", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34923, + "TargetID": 34924, + "Directional": true + }] + }, { + "ID": 13503, + "SourceStructureID": 34940, + "TargetStructureID": 321, + "Label": "34940-321 via Conventional from 34953 -> 38510, 38513 -> 38514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34953, + "TargetID": 38510, + "Directional": true + }, { + "SourceID": 38513, + "TargetID": 38514, + "Directional": true + }] + }, { + "ID": 13504, + "SourceStructureID": 34940, + "TargetStructureID": 366, + "Label": "34940-366 via Conventional from 38517 -> 13990, 38519 -> 38520, 38521 -> 13846, 38522 -> 13957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38517, + "TargetID": 13990, + "Directional": true + }, { + "SourceID": 38519, + "TargetID": 38520, + "Directional": true + }, { + "SourceID": 38521, + "TargetID": 13846, + "Directional": true + }, { + "SourceID": 38522, + "TargetID": 13957, + "Directional": true + }] + }, { + "ID": 13505, + "SourceStructureID": 34940, + "TargetStructureID": 428, + "Label": "34940-428 via Conventional from 52722 -> 52721", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52722, + "TargetID": 52721, + "Directional": true + }] + }, { + "ID": 13506, + "SourceStructureID": 34978, + "TargetStructureID": 6163, + "Label": "34978-6163 via Conventional from 34979 -> 34980", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34979, + "TargetID": 34980, + "Directional": true + }] + }, { + "ID": 13507, + "SourceStructureID": 34982, + "TargetStructureID": 6561, + "Label": "34982-6561 via Conventional from 34983 -> 8339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 34983, + "TargetID": 8339, + "Directional": true + }] + }, { + "ID": 13508, + "SourceStructureID": 35046, + "TargetStructureID": 410, + "Label": "35046-410 via Ribbon Synapse from 61996 -> 21368, 61998 -> 61999, 71223 -> 9533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61996, + "TargetID": 21368, + "Directional": true + }, { + "SourceID": 61998, + "TargetID": 61999, + "Directional": true + }, { + "SourceID": 71223, + "TargetID": 9533, + "Directional": true + }] + }, { + "ID": 13509, + "SourceStructureID": 35046, + "TargetStructureID": 492, + "Label": "35046-492 via Ribbon Synapse from 35047 -> 35045, 71225 -> 71224", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35047, + "TargetID": 35045, + "Directional": true + }, { + "SourceID": 71225, + "TargetID": 71224, + "Directional": true + }] + }, { + "ID": 13510, + "SourceStructureID": 35046, + "TargetStructureID": 906, + "Label": "35046-906 via Ribbon Synapse from 40681 -> 16772", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40681, + "TargetID": 16772, + "Directional": true + }] + }, { + "ID": 13511, + "SourceStructureID": 35064, + "TargetStructureID": 8586, + "Label": "35064-8586 via Conventional from 64342 -> 8643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64342, + "TargetID": 8643, + "Directional": true + }] + }, { + "ID": 13512, + "SourceStructureID": 35068, + "TargetStructureID": 8749, + "Label": "35068-8749 via Conventional from 35069 -> 8798", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35069, + "TargetID": 8798, + "Directional": true + }] + }, { + "ID": 13513, + "SourceStructureID": 35076, + "TargetStructureID": 6912, + "Label": "35076-6912 via Conventional from 35077 -> 35075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35077, + "TargetID": 35075, + "Directional": true + }] + }, { + "ID": 13514, + "SourceStructureID": 35084, + "TargetStructureID": 10826, + "Label": "35084-10826 via Conventional from 35085 -> 35086", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35085, + "TargetID": 35086, + "Directional": true + }] + }, { + "ID": 13515, + "SourceStructureID": 35087, + "TargetStructureID": 5345, + "Label": "35087-5345 via Conventional from 35090 -> 88886", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35090, + "TargetID": 88886, + "Directional": true + }] + }, { + "ID": 13516, + "SourceStructureID": 35087, + "TargetStructureID": 10826, + "Label": "35087-10826 via Conventional from 35088 -> 35089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35088, + "TargetID": 35089, + "Directional": true + }] + }, { + "ID": 13517, + "SourceStructureID": 35103, + "TargetStructureID": 332, + "Label": "35103-332 via Conventional from 35107 -> 35108", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35107, + "TargetID": 35108, + "Directional": true + }] + }, { + "ID": 13518, + "SourceStructureID": 35103, + "TargetStructureID": 15979, + "Label": "35103-15979 via Conventional from 35106 -> 35105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35106, + "TargetID": 35105, + "Directional": true + }] + }, { + "ID": 13519, + "SourceStructureID": 35110, + "TargetStructureID": 16446, + "Label": "35110-16446 via Conventional from 35111 -> 16449", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35111, + "TargetID": 16449, + "Directional": true + }] + }, { + "ID": 13520, + "SourceStructureID": 35112, + "TargetStructureID": 422, + "Label": "35112-422 via Conventional from 35115 -> 35116", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35115, + "TargetID": 35116, + "Directional": true + }] + }, { + "ID": 13521, + "SourceStructureID": 35112, + "TargetStructureID": 16446, + "Label": "35112-16446 via Conventional from 35113 -> 35114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35113, + "TargetID": 35114, + "Directional": true + }] + }, { + "ID": 13522, + "SourceStructureID": 35117, + "TargetStructureID": 16446, + "Label": "35117-16446 via Conventional from 35118 -> 35119", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35118, + "TargetID": 35119, + "Directional": true + }] + }, { + "ID": 13523, + "SourceStructureID": 35126, + "TargetStructureID": 17183, + "Label": "35126-17183 via Conventional from 35127 -> 35128", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35127, + "TargetID": 35128, + "Directional": true + }] + }, { + "ID": 13524, + "SourceStructureID": 35138, + "TargetStructureID": 17183, + "Label": "35138-17183 via Conventional from 35139 -> 35140", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35139, + "TargetID": 35140, + "Directional": true + }] + }, { + "ID": 13525, + "SourceStructureID": 35142, + "TargetStructureID": 17228, + "Label": "35142-17228 via Conventional from 35143 -> 17258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35143, + "TargetID": 17258, + "Directional": true + }] + }, { + "ID": 13526, + "SourceStructureID": 35145, + "TargetStructureID": 8575, + "Label": "35145-8575 via Ribbon Synapse from 45492 -> 63515, 64697 -> 64696", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45492, + "TargetID": 63515, + "Directional": true + }, { + "SourceID": 64697, + "TargetID": 64696, + "Directional": true + }] + }, { + "ID": 13527, + "SourceStructureID": 35145, + "TargetStructureID": 35142, + "Label": "35145-35142 via Ribbon Synapse from 35146 -> 35144", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35146, + "TargetID": 35144, + "Directional": true + }] + }, { + "ID": 13528, + "SourceStructureID": 35145, + "TargetStructureID": 64698, + "Label": "35145-64698 via Ribbon Synapse from 64701 -> 64702", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64701, + "TargetID": 64702, + "Directional": true + }] + }, { + "ID": 13529, + "SourceStructureID": 35149, + "TargetStructureID": 453, + "Label": "35149-453 via Conventional from 35150 -> 35151", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35150, + "TargetID": 35151, + "Directional": true + }] + }, { + "ID": 13530, + "SourceStructureID": 35152, + "TargetStructureID": 453, + "Label": "35152-453 via Conventional from 35153 -> 35154", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35153, + "TargetID": 35154, + "Directional": true + }] + }, { + "ID": 13531, + "SourceStructureID": 35152, + "TargetStructureID": 5528, + "Label": "35152-5528 via Conventional from 35161 -> 94421", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35161, + "TargetID": 94421, + "Directional": true + }] + }, { + "ID": 13532, + "SourceStructureID": 35164, + "TargetStructureID": 332, + "Label": "35164-332 via Conventional from 121980 -> 121981", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121980, + "TargetID": 121981, + "Directional": true + }] + }, { + "ID": 13533, + "SourceStructureID": 35164, + "TargetStructureID": 464, + "Label": "35164-464 via Conventional from 35165 -> 8066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35165, + "TargetID": 8066, + "Directional": true + }] + }, { + "ID": 13534, + "SourceStructureID": 35164, + "TargetStructureID": 121978, + "Label": "35164-121978 via Conventional from 121977 -> 121979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121977, + "TargetID": 121979, + "Directional": true + }] + }, { + "ID": 13535, + "SourceStructureID": 35176, + "TargetStructureID": 5017, + "Label": "35176-5017 via Conventional from 35177 -> 35178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35177, + "TargetID": 35178, + "Directional": true + }] + }, { + "ID": 13536, + "SourceStructureID": 35180, + "TargetStructureID": 6135, + "Label": "35180-6135 via Conventional from 35181 -> 35182", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35181, + "TargetID": 35182, + "Directional": true + }] + }, { + "ID": 13537, + "SourceStructureID": 35183, + "TargetStructureID": 6135, + "Label": "35183-6135 via Conventional from 35184 -> 35185", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35184, + "TargetID": 35185, + "Directional": true + }] + }, { + "ID": 13538, + "SourceStructureID": 35188, + "TargetStructureID": 6909, + "Label": "35188-6909 via Conventional from 35522 -> 38227", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35522, + "TargetID": 38227, + "Directional": true + }] + }, { + "ID": 13539, + "SourceStructureID": 35188, + "TargetStructureID": 6911, + "Label": "35188-6911 via Conventional from 35189 -> 33653", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35189, + "TargetID": 33653, + "Directional": true + }] + }, { + "ID": 13540, + "SourceStructureID": 35188, + "TargetStructureID": 7446, + "Label": "35188-7446 via Conventional from 35525 -> 123048", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35525, + "TargetID": 123048, + "Directional": true + }] + }, { + "ID": 13541, + "SourceStructureID": 35188, + "TargetStructureID": 25155, + "Label": "35188-25155 via Conventional from 35191 -> 38209", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35191, + "TargetID": 38209, + "Directional": true + }] + }, { + "ID": 13542, + "SourceStructureID": 35193, + "TargetStructureID": 606, + "Label": "35193-606 via Conventional from 54221 -> 49685, 54402 -> 44332", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54221, + "TargetID": 49685, + "Directional": true + }, { + "SourceID": 54402, + "TargetID": 44332, + "Directional": true + }] + }, { + "ID": 13543, + "SourceStructureID": 35193, + "TargetStructureID": 5607, + "Label": "35193-5607 via Conventional from 35201 -> 38947, 35204 -> 24004", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35201, + "TargetID": 38947, + "Directional": true + }, { + "SourceID": 35204, + "TargetID": 24004, + "Directional": true + }] + }, { + "ID": 13544, + "SourceStructureID": 35193, + "TargetStructureID": 7594, + "Label": "35193-7594 via Conventional from 35202 -> 7629", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35202, + "TargetID": 7629, + "Directional": true + }] + }, { + "ID": 13545, + "SourceStructureID": 35193, + "TargetStructureID": 25155, + "Label": "35193-25155 via Conventional from 38215 -> 38214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38215, + "TargetID": 38214, + "Directional": true + }] + }, { + "ID": 13546, + "SourceStructureID": 35193, + "TargetStructureID": 35188, + "Label": "35193-35188 via Conventional from 35523 -> 35524", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35523, + "TargetID": 35524, + "Directional": true + }] + }, { + "ID": 13547, + "SourceStructureID": 35193, + "TargetStructureID": 88762, + "Label": "35193-88762 via Conventional from 35203 -> 88782", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35203, + "TargetID": 88782, + "Directional": true + }] + }, { + "ID": 13548, + "SourceStructureID": 35193, + "TargetStructureID": 118301, + "Label": "35193-118301 via Conventional from 35194 -> 118302", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35194, + "TargetID": 118302, + "Directional": true + }] + }, { + "ID": 13549, + "SourceStructureID": 35208, + "TargetStructureID": 9376, + "Label": "35208-9376 via Conventional from 35209 -> 33659", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35209, + "TargetID": 33659, + "Directional": true + }] + }, { + "ID": 13550, + "SourceStructureID": 35212, + "TargetStructureID": 176, + "Label": "35212-176 via Conventional from 35215 -> 35214, 35216 -> 58650, 35218 -> 35221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35215, + "TargetID": 35214, + "Directional": true + }, { + "SourceID": 35216, + "TargetID": 58650, + "Directional": true + }, { + "SourceID": 35218, + "TargetID": 35221, + "Directional": true + }] + }, { + "ID": 13551, + "SourceStructureID": 35212, + "TargetStructureID": 9376, + "Label": "35212-9376 via Conventional from 35213 -> 33658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35213, + "TargetID": 33658, + "Directional": true + }] + }, { + "ID": 13552, + "SourceStructureID": 35222, + "TargetStructureID": 166, + "Label": "35222-166 via Conventional from 35227 -> 35230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35227, + "TargetID": 35230, + "Directional": true + }] + }, { + "ID": 13553, + "SourceStructureID": 35222, + "TargetStructureID": 390, + "Label": "35222-390 via Conventional from 65226 -> 65225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65226, + "TargetID": 65225, + "Directional": true + }] + }, { + "ID": 13554, + "SourceStructureID": 35222, + "TargetStructureID": 10961, + "Label": "35222-10961 via Conventional from 35223 -> 35224", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35223, + "TargetID": 35224, + "Directional": true + }] + }, { + "ID": 13555, + "SourceStructureID": 35232, + "TargetStructureID": 5565, + "Label": "35232-5565 via Conventional from 35236 -> 37686", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35236, + "TargetID": 37686, + "Directional": true + }] + }, { + "ID": 13556, + "SourceStructureID": 35240, + "TargetStructureID": 606, + "Label": "35240-606 via Conventional from 35242 -> 35243, 42152 -> 10434, 44220 -> 44219, 51725 -> 51726, 53432 -> 51437, 53534 -> 53535", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35242, + "TargetID": 35243, + "Directional": true + }, { + "SourceID": 42152, + "TargetID": 10434, + "Directional": true + }, { + "SourceID": 44220, + "TargetID": 44219, + "Directional": true + }, { + "SourceID": 51725, + "TargetID": 51726, + "Directional": true + }, { + "SourceID": 53432, + "TargetID": 51437, + "Directional": true + }, { + "SourceID": 53534, + "TargetID": 53535, + "Directional": true + }] + }, { + "ID": 13557, + "SourceStructureID": 35240, + "TargetStructureID": 5284, + "Label": "35240-5284 via Conventional from 113207 -> 113206", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113207, + "TargetID": 113206, + "Directional": true + }] + }, { + "ID": 13558, + "SourceStructureID": 35240, + "TargetStructureID": 5530, + "Label": "35240-5530 via Conventional from 38260 -> 38261, 38267 -> 38268, 80178 -> 80179, 81026 -> 81027", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38260, + "TargetID": 38261, + "Directional": true + }, { + "SourceID": 38267, + "TargetID": 38268, + "Directional": true + }, { + "SourceID": 80178, + "TargetID": 80179, + "Directional": true + }, { + "SourceID": 81026, + "TargetID": 81027, + "Directional": true + }] + }, { + "ID": 13559, + "SourceStructureID": 35240, + "TargetStructureID": 5534, + "Label": "35240-5534 via Conventional from 38272 -> 38273, 38276 -> 38278", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38272, + "TargetID": 38273, + "Directional": true + }, { + "SourceID": 38276, + "TargetID": 38278, + "Directional": true + }] + }, { + "ID": 13560, + "SourceStructureID": 35240, + "TargetStructureID": 5650, + "Label": "35240-5650 via Conventional from 35252 -> 29906, 35256 -> 35257, 35261 -> 35262, 35267 -> 38283, 53433 -> 53434, 104445 -> 104446, 104449 -> 104450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35252, + "TargetID": 29906, + "Directional": true + }, { + "SourceID": 35256, + "TargetID": 35257, + "Directional": true + }, { + "SourceID": 35261, + "TargetID": 35262, + "Directional": true + }, { + "SourceID": 35267, + "TargetID": 38283, + "Directional": true + }, { + "SourceID": 53433, + "TargetID": 53434, + "Directional": true + }, { + "SourceID": 104445, + "TargetID": 104446, + "Directional": true + }, { + "SourceID": 104449, + "TargetID": 104450, + "Directional": true + }] + }, { + "ID": 13561, + "SourceStructureID": 35240, + "TargetStructureID": 5729, + "Label": "35240-5729 via Conventional from 35271 -> 105772, 35274 -> 37838, 35279 -> 35282, 35279 -> 38290", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35271, + "TargetID": 105772, + "Directional": true + }, { + "SourceID": 35274, + "TargetID": 37838, + "Directional": true + }, { + "SourceID": 35279, + "TargetID": 35282, + "Directional": true + }, { + "SourceID": 35279, + "TargetID": 38290, + "Directional": true + }] + }, { + "ID": 13562, + "SourceStructureID": 35240, + "TargetStructureID": 6117, + "Label": "35240-6117 via Conventional from 35246 -> 20584, 42153 -> 86092, 85440 -> 85433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35246, + "TargetID": 20584, + "Directional": true + }, { + "SourceID": 42153, + "TargetID": 86092, + "Directional": true + }, { + "SourceID": 85440, + "TargetID": 85433, + "Directional": true + }] + }, { + "ID": 13563, + "SourceStructureID": 35240, + "TargetStructureID": 6118, + "Label": "35240-6118 via Conventional from 35272 -> 38288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35272, + "TargetID": 38288, + "Directional": true + }] + }, { + "ID": 13564, + "SourceStructureID": 35240, + "TargetStructureID": 6127, + "Label": "35240-6127 via Conventional from 38280 -> 38281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38280, + "TargetID": 38281, + "Directional": true + }] + }, { + "ID": 13565, + "SourceStructureID": 35240, + "TargetStructureID": 6158, + "Label": "35240-6158 via Conventional from 35277 -> 38289", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35277, + "TargetID": 38289, + "Directional": true + }] + }, { + "ID": 13566, + "SourceStructureID": 35240, + "TargetStructureID": 7594, + "Label": "35240-7594 via Conventional from 35248 -> 7596, 35255 -> 25092, 38258 -> 38259, 38262 -> 38263, 38265 -> 38266", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35248, + "TargetID": 7596, + "Directional": true + }, { + "SourceID": 35255, + "TargetID": 25092, + "Directional": true + }, { + "SourceID": 38258, + "TargetID": 38259, + "Directional": true + }, { + "SourceID": 38262, + "TargetID": 38263, + "Directional": true + }, { + "SourceID": 38265, + "TargetID": 38266, + "Directional": true + }] + }, { + "ID": 13567, + "SourceStructureID": 35240, + "TargetStructureID": 10953, + "Label": "35240-10953 via Conventional from 35241 -> 33265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35241, + "TargetID": 33265, + "Directional": true + }] + }, { + "ID": 13568, + "SourceStructureID": 35240, + "TargetStructureID": 35539, + "Label": "35240-35539 via Conventional from 38264 -> 35542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38264, + "TargetID": 35542, + "Directional": true + }] + }, { + "ID": 13569, + "SourceStructureID": 35240, + "TargetStructureID": 35894, + "Label": "35240-35894 via Conventional from 35936 -> 35935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35936, + "TargetID": 35935, + "Directional": true + }] + }, { + "ID": 13570, + "SourceStructureID": 35240, + "TargetStructureID": 44222, + "Label": "35240-44222 via Conventional from 45017 -> 45018", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45017, + "TargetID": 45018, + "Directional": true + }] + }, { + "ID": 13571, + "SourceStructureID": 35240, + "TargetStructureID": 58714, + "Label": "35240-58714 via Conventional from 35244 -> 58718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35244, + "TargetID": 58718, + "Directional": true + }] + }, { + "ID": 13572, + "SourceStructureID": 35240, + "TargetStructureID": 86444, + "Label": "35240-86444 via Conventional from 86459 -> 86458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86459, + "TargetID": 86458, + "Directional": true + }] + }, { + "ID": 13573, + "SourceStructureID": 35240, + "TargetStructureID": 110842, + "Label": "35240-110842 via Conventional from 35273 -> 110845", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35273, + "TargetID": 110845, + "Directional": true + }] + }, { + "ID": 13574, + "SourceStructureID": 35240, + "TargetStructureID": 111604, + "Label": "35240-111604 via Conventional from 35270 -> 111609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35270, + "TargetID": 111609, + "Directional": true + }] + }, { + "ID": 13575, + "SourceStructureID": 35283, + "TargetStructureID": 4569, + "Label": "35283-4569 via Conventional from 35286 -> 30854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35286, + "TargetID": 30854, + "Directional": true + }] + }, { + "ID": 13576, + "SourceStructureID": 35283, + "TargetStructureID": 10957, + "Label": "35283-10957 via Conventional from 35284 -> 35285", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35284, + "TargetID": 35285, + "Directional": true + }] + }, { + "ID": 13577, + "SourceStructureID": 35288, + "TargetStructureID": 606, + "Label": "35288-606 via Conventional from 53727 -> 53726", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53727, + "TargetID": 53726, + "Directional": true + }] + }, { + "ID": 13578, + "SourceStructureID": 35288, + "TargetStructureID": 5530, + "Label": "35288-5530 via Conventional from 35302 -> 76484", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35302, + "TargetID": 76484, + "Directional": true + }] + }, { + "ID": 13579, + "SourceStructureID": 35288, + "TargetStructureID": 10142, + "Label": "35288-10142 via Conventional from 35291 -> 35292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35291, + "TargetID": 35292, + "Directional": true + }] + }, { + "ID": 13580, + "SourceStructureID": 35288, + "TargetStructureID": 10962, + "Label": "35288-10962 via Conventional from 35289 -> 33687", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35289, + "TargetID": 33687, + "Directional": true + }] + }, { + "ID": 13581, + "SourceStructureID": 35288, + "TargetStructureID": 38345, + "Label": "35288-38345 via Conventional from 35296 -> 38348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35296, + "TargetID": 38348, + "Directional": true + }] + }, { + "ID": 13582, + "SourceStructureID": 35305, + "TargetStructureID": 10969, + "Label": "35305-10969 via Conventional from 35306 -> 33585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35306, + "TargetID": 33585, + "Directional": true + }] + }, { + "ID": 13583, + "SourceStructureID": 35308, + "TargetStructureID": 10969, + "Label": "35308-10969 via Conventional from 35309 -> 35307, 35310 -> 33586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35309, + "TargetID": 35307, + "Directional": true + }, { + "SourceID": 35310, + "TargetID": 33586, + "Directional": true + }] + }, { + "ID": 13584, + "SourceStructureID": 35308, + "TargetStructureID": 25155, + "Label": "35308-25155 via Conventional from 35313 -> 35316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35313, + "TargetID": 35316, + "Directional": true + }] + }, { + "ID": 13585, + "SourceStructureID": 35317, + "TargetStructureID": 11021, + "Label": "35317-11021 via Conventional from 35319 -> 35318", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35319, + "TargetID": 35318, + "Directional": true + }] + }, { + "ID": 13586, + "SourceStructureID": 35325, + "TargetStructureID": 5541, + "Label": "35325-5541 via Conventional from 38252 -> 38253", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38252, + "TargetID": 38253, + "Directional": true + }] + }, { + "ID": 13587, + "SourceStructureID": 35325, + "TargetStructureID": 11022, + "Label": "35325-11022 via Conventional from 35326 -> 35324", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35326, + "TargetID": 35324, + "Directional": true + }] + }, { + "ID": 13588, + "SourceStructureID": 35325, + "TargetStructureID": 35331, + "Label": "35325-35331 via Conventional from 38247 -> 35334", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38247, + "TargetID": 35334, + "Directional": true + }] + }, { + "ID": 13589, + "SourceStructureID": 35325, + "TargetStructureID": 38245, + "Label": "35325-38245 via Conventional from 35327 -> 38246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35327, + "TargetID": 38246, + "Directional": true + }] + }, { + "ID": 13590, + "SourceStructureID": 35328, + "TargetStructureID": 11022, + "Label": "35328-11022 via Conventional from 35329 -> 35330", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35329, + "TargetID": 35330, + "Directional": true + }] + }, { + "ID": 13591, + "SourceStructureID": 35331, + "TargetStructureID": 11022, + "Label": "35331-11022 via Conventional from 35332 -> 33587", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35332, + "TargetID": 33587, + "Directional": true + }] + }, { + "ID": 13592, + "SourceStructureID": 35335, + "TargetStructureID": 11037, + "Label": "35335-11037 via Conventional from 35336 -> 12552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35336, + "TargetID": 12552, + "Directional": true + }] + }, { + "ID": 13593, + "SourceStructureID": 35343, + "TargetStructureID": 11038, + "Label": "35343-11038 via Conventional from 35344 -> 33708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35344, + "TargetID": 33708, + "Directional": true + }] + }, { + "ID": 13594, + "SourceStructureID": 35348, + "TargetStructureID": 11043, + "Label": "35348-11043 via Conventional from 35349 -> 35350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35349, + "TargetID": 35350, + "Directional": true + }] + }, { + "ID": 13595, + "SourceStructureID": 35351, + "TargetStructureID": 11043, + "Label": "35351-11043 via Conventional from 35352 -> 35353", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35352, + "TargetID": 35353, + "Directional": true + }] + }, { + "ID": 13596, + "SourceStructureID": 35356, + "TargetStructureID": 5649, + "Label": "35356-5649 via Conventional from 35362 -> 107310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35362, + "TargetID": 107310, + "Directional": true + }] + }, { + "ID": 13597, + "SourceStructureID": 35356, + "TargetStructureID": 11043, + "Label": "35356-11043 via Conventional from 35357 -> 35358", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35357, + "TargetID": 35358, + "Directional": true + }] + }, { + "ID": 13598, + "SourceStructureID": 35356, + "TargetStructureID": 30130, + "Label": "35356-30130 via Conventional from 35360 -> 30250", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35360, + "TargetID": 30250, + "Directional": true + }] + }, { + "ID": 13599, + "SourceStructureID": 35367, + "TargetStructureID": 5284, + "Label": "35367-5284 via Conventional from 35377 -> 35380", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35377, + "TargetID": 35380, + "Directional": true + }] + }, { + "ID": 13600, + "SourceStructureID": 35367, + "TargetStructureID": 6120, + "Label": "35367-6120 via Conventional from 35372 -> 110843, 110753 -> 110749", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35372, + "TargetID": 110843, + "Directional": true + }, { + "SourceID": 110753, + "TargetID": 110749, + "Directional": true + }] + }, { + "ID": 13601, + "SourceStructureID": 35367, + "TargetStructureID": 11044, + "Label": "35367-11044 via Conventional from 35368 -> 35370", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35368, + "TargetID": 35370, + "Directional": true + }] + }, { + "ID": 13602, + "SourceStructureID": 35381, + "TargetStructureID": 11049, + "Label": "35381-11049 via Conventional from 35382 -> 35383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35382, + "TargetID": 35383, + "Directional": true + }] + }, { + "ID": 13603, + "SourceStructureID": 35384, + "TargetStructureID": 5645, + "Label": "35384-5645 via Conventional from 35389 -> 39482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35389, + "TargetID": 39482, + "Directional": true + }] + }, { + "ID": 13604, + "SourceStructureID": 35384, + "TargetStructureID": 11049, + "Label": "35384-11049 via Conventional from 35385 -> 35386", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35385, + "TargetID": 35386, + "Directional": true + }] + }, { + "ID": 13605, + "SourceStructureID": 35384, + "TargetStructureID": 35392, + "Label": "35384-35392 via Conventional from 35390 -> 35394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35390, + "TargetID": 35394, + "Directional": true + }] + }, { + "ID": 13606, + "SourceStructureID": 35392, + "TargetStructureID": 35384, + "Label": "35392-35384 via Ribbon Synapse from 35393 -> 35391", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35393, + "TargetID": 35391, + "Directional": true + }] + }, { + "ID": 13607, + "SourceStructureID": 35395, + "TargetStructureID": 11063, + "Label": "35395-11063 via Conventional from 35396 -> 33577", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35396, + "TargetID": 33577, + "Directional": true + }] + }, { + "ID": 13608, + "SourceStructureID": 35400, + "TargetStructureID": 11063, + "Label": "35400-11063 via Conventional from 35401 -> 35402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35401, + "TargetID": 35402, + "Directional": true + }] + }, { + "ID": 13609, + "SourceStructureID": 35403, + "TargetStructureID": 11063, + "Label": "35403-11063 via Conventional from 35404 -> 33581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35404, + "TargetID": 33581, + "Directional": true + }] + }, { + "ID": 13610, + "SourceStructureID": 35406, + "TargetStructureID": 11063, + "Label": "35406-11063 via Conventional from 35407 -> 35408", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35407, + "TargetID": 35408, + "Directional": true + }] + }, { + "ID": 13611, + "SourceStructureID": 35406, + "TargetStructureID": 15977, + "Label": "35406-15977 via Conventional from 35409 -> 38299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35409, + "TargetID": 38299, + "Directional": true + }] + }, { + "ID": 13612, + "SourceStructureID": 35418, + "TargetStructureID": 11234, + "Label": "35418-11234 via Conventional from 35419 -> 33316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35419, + "TargetID": 33316, + "Directional": true + }] + }, { + "ID": 13613, + "SourceStructureID": 35418, + "TargetStructureID": 64939, + "Label": "35418-64939 via Conventional from 129135 -> 129136, 129137 -> 129138", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129135, + "TargetID": 129136, + "Directional": true + }, { + "SourceID": 129137, + "TargetID": 129138, + "Directional": true + }] + }, { + "ID": 13614, + "SourceStructureID": 35428, + "TargetStructureID": 5729, + "Label": "35428-5729 via Conventional from 35433 -> 111945", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35433, + "TargetID": 111945, + "Directional": true + }] + }, { + "ID": 13615, + "SourceStructureID": 35428, + "TargetStructureID": 11235, + "Label": "35428-11235 via Conventional from 35429 -> 35427", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35429, + "TargetID": 35427, + "Directional": true + }] + }, { + "ID": 13616, + "SourceStructureID": 35436, + "TargetStructureID": 11235, + "Label": "35436-11235 via Conventional from 35437 -> 35435", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35437, + "TargetID": 35435, + "Directional": true + }] + }, { + "ID": 13617, + "SourceStructureID": 35440, + "TargetStructureID": 5503, + "Label": "35440-5503 via Conventional from 108521 -> 108518", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108521, + "TargetID": 108518, + "Directional": true + }] + }, { + "ID": 13618, + "SourceStructureID": 35440, + "TargetStructureID": 5729, + "Label": "35440-5729 via Conventional from 111624 -> 111625", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111624, + "TargetID": 111625, + "Directional": true + }] + }, { + "ID": 13619, + "SourceStructureID": 35440, + "TargetStructureID": 6118, + "Label": "35440-6118 via Conventional from 35446 -> 129142, 35449 -> 65926", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35446, + "TargetID": 129142, + "Directional": true + }, { + "SourceID": 35449, + "TargetID": 65926, + "Directional": true + }] + }, { + "ID": 13620, + "SourceStructureID": 35440, + "TargetStructureID": 11235, + "Label": "35440-11235 via Conventional from 35441 -> 35439", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35441, + "TargetID": 35439, + "Directional": true + }] + }, { + "ID": 13621, + "SourceStructureID": 35452, + "TargetStructureID": 8040, + "Label": "35452-8040 via Conventional from 35459 -> 35462", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35459, + "TargetID": 35462, + "Directional": true + }] + }, { + "ID": 13622, + "SourceStructureID": 35452, + "TargetStructureID": 10632, + "Label": "35452-10632 via Conventional from 35455 -> 35456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35455, + "TargetID": 35456, + "Directional": true + }] + }, { + "ID": 13623, + "SourceStructureID": 35452, + "TargetStructureID": 11246, + "Label": "35452-11246 via Conventional from 35453 -> 35454", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35453, + "TargetID": 35454, + "Directional": true + }] + }, { + "ID": 13624, + "SourceStructureID": 35468, + "TargetStructureID": 11248, + "Label": "35468-11248 via Conventional from 35469 -> 33767", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35469, + "TargetID": 33767, + "Directional": true + }] + }, { + "ID": 13625, + "SourceStructureID": 35470, + "TargetStructureID": 11248, + "Label": "35470-11248 via Conventional from 35471 -> 33768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35471, + "TargetID": 33768, + "Directional": true + }] + }, { + "ID": 13626, + "SourceStructureID": 35473, + "TargetStructureID": 11248, + "Label": "35473-11248 via Conventional from 35474 -> 35472", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35474, + "TargetID": 35472, + "Directional": true + }] + }, { + "ID": 13627, + "SourceStructureID": 35475, + "TargetStructureID": 11248, + "Label": "35475-11248 via Conventional from 35476 -> 35477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35476, + "TargetID": 35477, + "Directional": true + }] + }, { + "ID": 13628, + "SourceStructureID": 35483, + "TargetStructureID": 334, + "Label": "35483-334 via Conventional from 35484 -> 35482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35484, + "TargetID": 35482, + "Directional": true + }] + }, { + "ID": 13629, + "SourceStructureID": 35489, + "TargetStructureID": 366, + "Label": "35489-366 via Conventional from 35492 -> 13670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35492, + "TargetID": 13670, + "Directional": true + }] + }, { + "ID": 13630, + "SourceStructureID": 35489, + "TargetStructureID": 422, + "Label": "35489-422 via Conventional from 35490 -> 35491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35490, + "TargetID": 35491, + "Directional": true + }] + }, { + "ID": 13631, + "SourceStructureID": 35510, + "TargetStructureID": 445, + "Label": "35510-445 via Conventional from 35511 -> 1979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35511, + "TargetID": 1979, + "Directional": true + }] + }, { + "ID": 13632, + "SourceStructureID": 35513, + "TargetStructureID": 445, + "Label": "35513-445 via Conventional from 35514 -> 35512", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35514, + "TargetID": 35512, + "Directional": true + }] + }, { + "ID": 13633, + "SourceStructureID": 35534, + "TargetStructureID": 10590, + "Label": "35534-10590 via Conventional from 35535 -> 35536", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35535, + "TargetID": 35536, + "Directional": true + }] + }, { + "ID": 13634, + "SourceStructureID": 35534, + "TargetStructureID": 10961, + "Label": "35534-10961 via Conventional from 35537 -> 35538", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35537, + "TargetID": 35538, + "Directional": true + }] + }, { + "ID": 13635, + "SourceStructureID": 35539, + "TargetStructureID": 5530, + "Label": "35539-5530 via Conventional from 77912 -> 42447", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77912, + "TargetID": 42447, + "Directional": true + }] + }, { + "ID": 13636, + "SourceStructureID": 35539, + "TargetStructureID": 10590, + "Label": "35539-10590 via Conventional from 35540 -> 35541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35540, + "TargetID": 35541, + "Directional": true + }] + }, { + "ID": 13637, + "SourceStructureID": 35545, + "TargetStructureID": 10602, + "Label": "35545-10602 via Conventional from 35546 -> 35544", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35546, + "TargetID": 35544, + "Directional": true + }] + }, { + "ID": 13638, + "SourceStructureID": 35550, + "TargetStructureID": 35545, + "Label": "35550-35545 via Ribbon Synapse from 35551 -> 35549", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35551, + "TargetID": 35549, + "Directional": true + }] + }, { + "ID": 13639, + "SourceStructureID": 35555, + "TargetStructureID": 5565, + "Label": "35555-5565 via Conventional from 35559 -> 50848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35559, + "TargetID": 50848, + "Directional": true + }] + }, { + "ID": 13640, + "SourceStructureID": 35555, + "TargetStructureID": 5568, + "Label": "35555-5568 via Conventional from 35558 -> 50361", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35558, + "TargetID": 50361, + "Directional": true + }] + }, { + "ID": 13641, + "SourceStructureID": 35555, + "TargetStructureID": 5729, + "Label": "35555-5729 via Conventional from 35565 -> 64505", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35565, + "TargetID": 64505, + "Directional": true + }] + }, { + "ID": 13642, + "SourceStructureID": 35555, + "TargetStructureID": 8040, + "Label": "35555-8040 via Conventional from 35564 -> 48630", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35564, + "TargetID": 48630, + "Directional": true + }] + }, { + "ID": 13643, + "SourceStructureID": 35555, + "TargetStructureID": 10826, + "Label": "35555-10826 via Conventional from 35556 -> 35554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35556, + "TargetID": 35554, + "Directional": true + }] + }, { + "ID": 13644, + "SourceStructureID": 35576, + "TargetStructureID": 161, + "Label": "35576-161 via Conventional from 35582 -> 35588", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35582, + "TargetID": 35588, + "Directional": true + }] + }, { + "ID": 13645, + "SourceStructureID": 35576, + "TargetStructureID": 5303, + "Label": "35576-5303 via Conventional from 35577 -> 35575", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35577, + "TargetID": 35575, + "Directional": true + }] + }, { + "ID": 13646, + "SourceStructureID": 35576, + "TargetStructureID": 5502, + "Label": "35576-5502 via Conventional from 35589 -> 27270", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35589, + "TargetID": 27270, + "Directional": true + }] + }, { + "ID": 13647, + "SourceStructureID": 35576, + "TargetStructureID": 6121, + "Label": "35576-6121 via Conventional from 35579 -> 53466", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35579, + "TargetID": 53466, + "Directional": true + }] + }, { + "ID": 13648, + "SourceStructureID": 35597, + "TargetStructureID": 5303, + "Label": "35597-5303 via Conventional from 35599 -> 35600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35599, + "TargetID": 35600, + "Directional": true + }] + }, { + "ID": 13649, + "SourceStructureID": 35597, + "TargetStructureID": 6118, + "Label": "35597-6118 via Conventional from 121989 -> 121990", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121989, + "TargetID": 121990, + "Directional": true + }] + }, { + "ID": 13650, + "SourceStructureID": 35597, + "TargetStructureID": 11049, + "Label": "35597-11049 via Conventional from 35598 -> 35596", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35598, + "TargetID": 35596, + "Directional": true + }] + }, { + "ID": 13651, + "SourceStructureID": 35653, + "TargetStructureID": 168, + "Label": "35653-168 via Conventional from 35674 -> 4282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35674, + "TargetID": 4282, + "Directional": true + }] + }, { + "ID": 13652, + "SourceStructureID": 35653, + "TargetStructureID": 170, + "Label": "35653-170 via Conventional from 35680 -> 89663, 89455 -> 89456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35680, + "TargetID": 89663, + "Directional": true + }, { + "SourceID": 89455, + "TargetID": 89456, + "Directional": true + }] + }, { + "ID": 13653, + "SourceStructureID": 35653, + "TargetStructureID": 606, + "Label": "35653-606 via Conventional from 35677 -> 35678, 47825 -> 47824", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35677, + "TargetID": 35678, + "Directional": true + }, { + "SourceID": 47825, + "TargetID": 47824, + "Directional": true + }] + }, { + "ID": 13654, + "SourceStructureID": 35653, + "TargetStructureID": 5528, + "Label": "35653-5528 via Conventional from 35656 -> 94413, 35657 -> 35658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35656, + "TargetID": 94413, + "Directional": true + }, { + "SourceID": 35657, + "TargetID": 35658, + "Directional": true + }] + }, { + "ID": 13655, + "SourceStructureID": 35653, + "TargetStructureID": 5530, + "Label": "35653-5530 via Conventional from 35676 -> 75529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35676, + "TargetID": 75529, + "Directional": true + }] + }, { + "ID": 13656, + "SourceStructureID": 35653, + "TargetStructureID": 6127, + "Label": "35653-6127 via Conventional from 35666 -> 35668", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35666, + "TargetID": 35668, + "Directional": true + }] + }, { + "ID": 13657, + "SourceStructureID": 35653, + "TargetStructureID": 10956, + "Label": "35653-10956 via Conventional from 35654 -> 35655", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35654, + "TargetID": 35655, + "Directional": true + }] + }, { + "ID": 13658, + "SourceStructureID": 35681, + "TargetStructureID": 5303, + "Label": "35681-5303 via Conventional from 35682 -> 35612", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35682, + "TargetID": 35612, + "Directional": true + }] + }, { + "ID": 13659, + "SourceStructureID": 35681, + "TargetStructureID": 6048, + "Label": "35681-6048 via Conventional from 35684 -> 35685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35684, + "TargetID": 35685, + "Directional": true + }] + }, { + "ID": 13660, + "SourceStructureID": 35681, + "TargetStructureID": 6132, + "Label": "35681-6132 via Conventional from 35724 -> 35725", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35724, + "TargetID": 35725, + "Directional": true + }] + }, { + "ID": 13661, + "SourceStructureID": 35696, + "TargetStructureID": 9787, + "Label": "35696-9787 via Ribbon Synapse from 35702 -> 35703", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35702, + "TargetID": 35703, + "Directional": true + }] + }, { + "ID": 13662, + "SourceStructureID": 35696, + "TargetStructureID": 16073, + "Label": "35696-16073 via Ribbon Synapse from 35697 -> 24189, 35700 -> 24188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35697, + "TargetID": 24189, + "Directional": true + }, { + "SourceID": 35700, + "TargetID": 24188, + "Directional": true + }] + }, { + "ID": 13663, + "SourceStructureID": 35696, + "TargetStructureID": 35681, + "Label": "35696-35681 via Ribbon Synapse from 35711 -> 35695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 35711, + "TargetID": 35695, + "Directional": true + }] + }, { + "ID": 13664, + "SourceStructureID": 35696, + "TargetStructureID": 136432, + "Label": "35696-136432 via Ribbon Synapse from 40123 -> 136490", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40123, + "TargetID": 136490, + "Directional": true + }] + }, { + "ID": 13665, + "SourceStructureID": 35751, + "TargetStructureID": 408, + "Label": "35751-408 via Conventional from 35752 -> 22511", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35752, + "TargetID": 22511, + "Directional": true + }] + }, { + "ID": 13666, + "SourceStructureID": 35811, + "TargetStructureID": 142, + "Label": "35811-142 via Conventional from 35835 -> 126164, 35836 -> 31769, 35837 -> 31776, 35840 -> 49707", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35835, + "TargetID": 126164, + "Directional": true + }, { + "SourceID": 35836, + "TargetID": 31769, + "Directional": true + }, { + "SourceID": 35837, + "TargetID": 31776, + "Directional": true + }, { + "SourceID": 35840, + "TargetID": 49707, + "Directional": true + }] + }, { + "ID": 13667, + "SourceStructureID": 35811, + "TargetStructureID": 176, + "Label": "35811-176 via Conventional from 35842 -> 35843, 35848 -> 35849", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35842, + "TargetID": 35843, + "Directional": true + }, { + "SourceID": 35848, + "TargetID": 35849, + "Directional": true + }] + }, { + "ID": 13668, + "SourceStructureID": 35811, + "TargetStructureID": 372, + "Label": "35811-372 via Conventional from 35812 -> 30781", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35812, + "TargetID": 30781, + "Directional": true + }] + }, { + "ID": 13669, + "SourceStructureID": 35811, + "TargetStructureID": 408, + "Label": "35811-408 via Conventional from 35882 -> 35883, 35884 -> 35771", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35882, + "TargetID": 35883, + "Directional": true + }, { + "SourceID": 35884, + "TargetID": 35771, + "Directional": true + }] + }, { + "ID": 13670, + "SourceStructureID": 35811, + "TargetStructureID": 1724, + "Label": "35811-1724 via Conventional from 35823 -> 20187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35823, + "TargetID": 20187, + "Directional": true + }] + }, { + "ID": 13671, + "SourceStructureID": 35811, + "TargetStructureID": 3756, + "Label": "35811-3756 via Conventional from 35852 -> 35854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35852, + "TargetID": 35854, + "Directional": true + }] + }, { + "ID": 13672, + "SourceStructureID": 35811, + "TargetStructureID": 4569, + "Label": "35811-4569 via Conventional from 35815 -> 52458, 35818 -> 23797, 35820 -> 23783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35815, + "TargetID": 52458, + "Directional": true + }, { + "SourceID": 35818, + "TargetID": 23797, + "Directional": true + }, { + "SourceID": 35820, + "TargetID": 23783, + "Directional": true + }] + }, { + "ID": 13673, + "SourceStructureID": 35811, + "TargetStructureID": 5442, + "Label": "35811-5442 via Conventional from 55122 -> 55121, 55143 -> 55142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55122, + "TargetID": 55121, + "Directional": true + }, { + "SourceID": 55143, + "TargetID": 55142, + "Directional": true + }] + }, { + "ID": 13674, + "SourceStructureID": 35811, + "TargetStructureID": 5598, + "Label": "35811-5598 via Conventional from 35861 -> 35862, 35864 -> 35865, 35871 -> 35872", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35861, + "TargetID": 35862, + "Directional": true + }, { + "SourceID": 35864, + "TargetID": 35865, + "Directional": true + }, { + "SourceID": 35871, + "TargetID": 35872, + "Directional": true + }] + }, { + "ID": 13675, + "SourceStructureID": 35811, + "TargetStructureID": 5601, + "Label": "35811-5601 via Conventional from 35858 -> 35859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35858, + "TargetID": 35859, + "Directional": true + }] + }, { + "ID": 13676, + "SourceStructureID": 35811, + "TargetStructureID": 6050, + "Label": "35811-6050 via Conventional from 86605 -> 86606", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86605, + "TargetID": 86606, + "Directional": true + }] + }, { + "ID": 13677, + "SourceStructureID": 35811, + "TargetStructureID": 6117, + "Label": "35811-6117 via Conventional from 86603 -> 86604", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86603, + "TargetID": 86604, + "Directional": true + }] + }, { + "ID": 13678, + "SourceStructureID": 35811, + "TargetStructureID": 6155, + "Label": "35811-6155 via Conventional from 35813 -> 34787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35813, + "TargetID": 34787, + "Directional": true + }] + }, { + "ID": 13679, + "SourceStructureID": 35811, + "TargetStructureID": 21299, + "Label": "35811-21299 via Conventional from 35825 -> 35834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35825, + "TargetID": 35834, + "Directional": true + }] + }, { + "ID": 13680, + "SourceStructureID": 35811, + "TargetStructureID": 58777, + "Label": "35811-58777 via Conventional from 58783 -> 58781", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58783, + "TargetID": 58781, + "Directional": true + }] + }, { + "ID": 13681, + "SourceStructureID": 35887, + "TargetStructureID": 372, + "Label": "35887-372 via Conventional from 35892 -> 30963, 35893 -> 30992", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35892, + "TargetID": 30963, + "Directional": true + }, { + "SourceID": 35893, + "TargetID": 30992, + "Directional": true + }] + }, { + "ID": 13682, + "SourceStructureID": 35887, + "TargetStructureID": 408, + "Label": "35887-408 via Conventional from 35888 -> 35798", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35888, + "TargetID": 35798, + "Directional": true + }] + }, { + "ID": 13683, + "SourceStructureID": 35894, + "TargetStructureID": 142, + "Label": "35894-142 via Conventional from 35928 -> 35930", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35928, + "TargetID": 35930, + "Directional": true + }] + }, { + "ID": 13684, + "SourceStructureID": 35894, + "TargetStructureID": 176, + "Label": "35894-176 via Conventional from 35938 -> 35939, 128229 -> 119680", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35938, + "TargetID": 35939, + "Directional": true + }, { + "SourceID": 128229, + "TargetID": 119680, + "Directional": true + }] + }, { + "ID": 13685, + "SourceStructureID": 35894, + "TargetStructureID": 408, + "Label": "35894-408 via Conventional from 35895 -> 35797, 35897 -> 35899, 35903 -> 35785", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35895, + "TargetID": 35797, + "Directional": true + }, { + "SourceID": 35897, + "TargetID": 35899, + "Directional": true + }, { + "SourceID": 35903, + "TargetID": 35785, + "Directional": true + }] + }, { + "ID": 13686, + "SourceStructureID": 35894, + "TargetStructureID": 1724, + "Label": "35894-1724 via Conventional from 35918 -> 20200, 100543 -> 100544, 100638 -> 3944", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35918, + "TargetID": 20200, + "Directional": true + }, { + "SourceID": 100543, + "TargetID": 100544, + "Directional": true + }, { + "SourceID": 100638, + "TargetID": 3944, + "Directional": true + }] + }, { + "ID": 13687, + "SourceStructureID": 35894, + "TargetStructureID": 5278, + "Label": "35894-5278 via Conventional from 35920 -> 11192", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35920, + "TargetID": 11192, + "Directional": true + }] + }, { + "ID": 13688, + "SourceStructureID": 35894, + "TargetStructureID": 5279, + "Label": "35894-5279 via Conventional from 35922 -> 92650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35922, + "TargetID": 92650, + "Directional": true + }] + }, { + "ID": 13689, + "SourceStructureID": 35894, + "TargetStructureID": 6050, + "Label": "35894-6050 via Conventional from 35940 -> 119683, 35941 -> 35958", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35940, + "TargetID": 119683, + "Directional": true + }, { + "SourceID": 35941, + "TargetID": 35958, + "Directional": true + }] + }, { + "ID": 13690, + "SourceStructureID": 35894, + "TargetStructureID": 6117, + "Label": "35894-6117 via Conventional from 35927 -> 10527, 86023 -> 86024", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35927, + "TargetID": 10527, + "Directional": true + }, { + "SourceID": 86023, + "TargetID": 86024, + "Directional": true + }] + }, { + "ID": 13691, + "SourceStructureID": 35894, + "TargetStructureID": 6155, + "Label": "35894-6155 via Conventional from 35912 -> 15534, 35913 -> 15611, 107953 -> 107914, 107954 -> 48278", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35912, + "TargetID": 15534, + "Directional": true + }, { + "SourceID": 35913, + "TargetID": 15611, + "Directional": true + }, { + "SourceID": 107953, + "TargetID": 107914, + "Directional": true + }, { + "SourceID": 107954, + "TargetID": 48278, + "Directional": true + }] + }, { + "ID": 13692, + "SourceStructureID": 35894, + "TargetStructureID": 32035, + "Label": "35894-32035 via Conventional from 41660 -> 41659", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41660, + "TargetID": 41659, + "Directional": true + }] + }, { + "ID": 13693, + "SourceStructureID": 35969, + "TargetStructureID": 408, + "Label": "35969-408 via Conventional from 35970 -> 29269, 62037 -> 52973", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35970, + "TargetID": 29269, + "Directional": true + }, { + "SourceID": 62037, + "TargetID": 52973, + "Directional": true + }] + }, { + "ID": 13694, + "SourceStructureID": 35972, + "TargetStructureID": 408, + "Label": "35972-408 via Conventional from 35973 -> 35807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35973, + "TargetID": 35807, + "Directional": true + }] + }, { + "ID": 13695, + "SourceStructureID": 35975, + "TargetStructureID": 142, + "Label": "35975-142 via Conventional from 84978 -> 49770", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84978, + "TargetID": 49770, + "Directional": true + }] + }, { + "ID": 13696, + "SourceStructureID": 35975, + "TargetStructureID": 408, + "Label": "35975-408 via Conventional from 35976 -> 35974, 35981 -> 35792", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35976, + "TargetID": 35974, + "Directional": true + }, { + "SourceID": 35981, + "TargetID": 35792, + "Directional": true + }] + }, { + "ID": 13697, + "SourceStructureID": 35975, + "TargetStructureID": 1724, + "Label": "35975-1724 via Conventional from 35989 -> 3930, 48481 -> 4012, 49048 -> 49047", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35989, + "TargetID": 3930, + "Directional": true + }, { + "SourceID": 48481, + "TargetID": 4012, + "Directional": true + }, { + "SourceID": 49048, + "TargetID": 49047, + "Directional": true + }] + }, { + "ID": 13698, + "SourceStructureID": 35975, + "TargetStructureID": 5279, + "Label": "35975-5279 via Conventional from 35990 -> 25825, 35991 -> 35993", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35990, + "TargetID": 25825, + "Directional": true + }, { + "SourceID": 35991, + "TargetID": 35993, + "Directional": true + }] + }, { + "ID": 13699, + "SourceStructureID": 35975, + "TargetStructureID": 5292, + "Label": "35975-5292 via Conventional from 36002 -> 36007", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36002, + "TargetID": 36007, + "Directional": true + }] + }, { + "ID": 13700, + "SourceStructureID": 35975, + "TargetStructureID": 5598, + "Label": "35975-5598 via Conventional from 36028 -> 36029", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36028, + "TargetID": 36029, + "Directional": true + }] + }, { + "ID": 13701, + "SourceStructureID": 35975, + "TargetStructureID": 6050, + "Label": "35975-6050 via Conventional from 36009 -> 126981, 62392 -> 51878, 62393 -> 35951, 62394 -> 62395, 70350 -> 70356, 126986 -> 126985", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36009, + "TargetID": 126981, + "Directional": true + }, { + "SourceID": 62392, + "TargetID": 51878, + "Directional": true + }, { + "SourceID": 62393, + "TargetID": 35951, + "Directional": true + }, { + "SourceID": 62394, + "TargetID": 62395, + "Directional": true + }, { + "SourceID": 70350, + "TargetID": 70356, + "Directional": true + }, { + "SourceID": 126986, + "TargetID": 126985, + "Directional": true + }] + }, { + "ID": 13702, + "SourceStructureID": 35975, + "TargetStructureID": 6117, + "Label": "35975-6117 via Conventional from 84975 -> 84976", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84975, + "TargetID": 84976, + "Directional": true + }] + }, { + "ID": 13703, + "SourceStructureID": 35975, + "TargetStructureID": 6155, + "Label": "35975-6155 via Conventional from 35982 -> 35983, 35984 -> 15755, 35986 -> 15604, 35987 -> 15686, 108107 -> 48286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35982, + "TargetID": 35983, + "Directional": true + }, { + "SourceID": 35984, + "TargetID": 15755, + "Directional": true + }, { + "SourceID": 35986, + "TargetID": 15604, + "Directional": true + }, { + "SourceID": 35987, + "TargetID": 15686, + "Directional": true + }, { + "SourceID": 108107, + "TargetID": 48286, + "Directional": true + }] + }, { + "ID": 13704, + "SourceStructureID": 35975, + "TargetStructureID": 15796, + "Label": "35975-15796 via Conventional from 35999 -> 36001", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 35999, + "TargetID": 36001, + "Directional": true + }] + }, { + "ID": 13705, + "SourceStructureID": 35975, + "TargetStructureID": 15976, + "Label": "35975-15976 via Conventional from 36052 -> 36053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36052, + "TargetID": 36053, + "Directional": true + }] + }, { + "ID": 13706, + "SourceStructureID": 36130, + "TargetStructureID": 15796, + "Label": "36130-15796 via Conventional from 36131 -> 15838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36131, + "TargetID": 15838, + "Directional": true + }] + }, { + "ID": 13707, + "SourceStructureID": 36130, + "TargetStructureID": 59163, + "Label": "36130-59163 via Conventional from 36149 -> 59166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36149, + "TargetID": 59166, + "Directional": true + }] + }, { + "ID": 13708, + "SourceStructureID": 36151, + "TargetStructureID": 36153, + "Label": "36151-36153 via Conventional from 36152 -> 36154", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36152, + "TargetID": 36154, + "Directional": true + }] + }, { + "ID": 13709, + "SourceStructureID": 36153, + "TargetStructureID": 479, + "Label": "36153-479 via Conventional from 61615 -> 61614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61615, + "TargetID": 61614, + "Directional": true + }] + }, { + "ID": 13710, + "SourceStructureID": 36153, + "TargetStructureID": 8575, + "Label": "36153-8575 via Conventional from 61612 -> 17385", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61612, + "TargetID": 17385, + "Directional": true + }] + }, { + "ID": 13711, + "SourceStructureID": 36158, + "TargetStructureID": 479, + "Label": "36158-479 via Conventional from 36159 -> 12365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36159, + "TargetID": 12365, + "Directional": true + }] + }, { + "ID": 13712, + "SourceStructureID": 36162, + "TargetStructureID": 479, + "Label": "36162-479 via Conventional from 36163 -> 36161, 36166 -> 36167, 36166 -> 37612", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36163, + "TargetID": 36161, + "Directional": true + }, { + "SourceID": 36166, + "TargetID": 36167, + "Directional": true + }, { + "SourceID": 36166, + "TargetID": 37612, + "Directional": true + }] + }, { + "ID": 13713, + "SourceStructureID": 36170, + "TargetStructureID": 479, + "Label": "36170-479 via Conventional from 36171 -> 121708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36171, + "TargetID": 121708, + "Directional": true + }] + }, { + "ID": 13714, + "SourceStructureID": 36222, + "TargetStructureID": 372, + "Label": "36222-372 via Conventional from 36223 -> 16019", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36223, + "TargetID": 16019, + "Directional": true + }] + }, { + "ID": 13715, + "SourceStructureID": 36228, + "TargetStructureID": 318, + "Label": "36228-318 via Conventional from 36233 -> 20276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36233, + "TargetID": 20276, + "Directional": true + }] + }, { + "ID": 13716, + "SourceStructureID": 36228, + "TargetStructureID": 419, + "Label": "36228-419 via Conventional from 36229 -> 10174", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36229, + "TargetID": 10174, + "Directional": true + }] + }, { + "ID": 13717, + "SourceStructureID": 36234, + "TargetStructureID": 419, + "Label": "36234-419 via Conventional from 36235 -> 10166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36235, + "TargetID": 10166, + "Directional": true + }] + }, { + "ID": 13718, + "SourceStructureID": 36276, + "TargetStructureID": 518, + "Label": "36276-518 via Conventional from 36277 -> 3408", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36277, + "TargetID": 3408, + "Directional": true + }] + }, { + "ID": 13719, + "SourceStructureID": 36276, + "TargetStructureID": 10959, + "Label": "36276-10959 via Conventional from 36289 -> 36291, 36290 -> 36292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36289, + "TargetID": 36291, + "Directional": true + }, { + "SourceID": 36290, + "TargetID": 36292, + "Directional": true + }] + }, { + "ID": 13720, + "SourceStructureID": 36293, + "TargetStructureID": 518, + "Label": "36293-518 via Conventional from 36294 -> 3447, 36296 -> 3409", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36294, + "TargetID": 3447, + "Directional": true + }, { + "SourceID": 36296, + "TargetID": 3409, + "Directional": true + }] + }, { + "ID": 13721, + "SourceStructureID": 36299, + "TargetStructureID": 518, + "Label": "36299-518 via Conventional from 36300 -> 3406, 36304 -> 3412", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36300, + "TargetID": 3406, + "Directional": true + }, { + "SourceID": 36304, + "TargetID": 3412, + "Directional": true + }] + }, { + "ID": 13722, + "SourceStructureID": 36419, + "TargetStructureID": 518, + "Label": "36419-518 via Conventional from 36420 -> 3356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36420, + "TargetID": 3356, + "Directional": true + }] + }, { + "ID": 13723, + "SourceStructureID": 36419, + "TargetStructureID": 118372, + "Label": "36419-118372 via Conventional from 118371 -> 118373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118371, + "TargetID": 118373, + "Directional": true + }] + }, { + "ID": 13724, + "SourceStructureID": 36421, + "TargetStructureID": 518, + "Label": "36421-518 via Conventional from 36422 -> 36423", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36422, + "TargetID": 36423, + "Directional": true + }] + }, { + "ID": 13725, + "SourceStructureID": 36481, + "TargetStructureID": 518, + "Label": "36481-518 via Conventional from 36482 -> 3370, 36486 -> 36487, 36723 -> 36721", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36482, + "TargetID": 3370, + "Directional": true + }, { + "SourceID": 36486, + "TargetID": 36487, + "Directional": true + }, { + "SourceID": 36723, + "TargetID": 36721, + "Directional": true + }] + }, { + "ID": 13726, + "SourceStructureID": 36481, + "TargetStructureID": 8749, + "Label": "36481-8749 via Conventional from 36496 -> 8864", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36496, + "TargetID": 8864, + "Directional": true + }] + }, { + "ID": 13727, + "SourceStructureID": 36501, + "TargetStructureID": 476, + "Label": "36501-476 via Conventional from 36504 -> 2317", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36504, + "TargetID": 2317, + "Directional": true + }] + }, { + "ID": 13728, + "SourceStructureID": 36501, + "TargetStructureID": 518, + "Label": "36501-518 via Conventional from 36502 -> 3374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36502, + "TargetID": 3374, + "Directional": true + }] + }, { + "ID": 13729, + "SourceStructureID": 36508, + "TargetStructureID": 518, + "Label": "36508-518 via Conventional from 36509 -> 36510, 36511 -> 3430", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36509, + "TargetID": 36510, + "Directional": true + }, { + "SourceID": 36511, + "TargetID": 3430, + "Directional": true + }] + }, { + "ID": 13730, + "SourceStructureID": 36512, + "TargetStructureID": 518, + "Label": "36512-518 via Conventional from 36514 -> 2321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36514, + "TargetID": 2321, + "Directional": true + }] + }, { + "ID": 13731, + "SourceStructureID": 36516, + "TargetStructureID": 5562, + "Label": "36516-5562 via Conventional from 36613 -> 33099", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36613, + "TargetID": 33099, + "Directional": true + }] + }, { + "ID": 13732, + "SourceStructureID": 36516, + "TargetStructureID": 5649, + "Label": "36516-5649 via Conventional from 36623 -> 33108", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36623, + "TargetID": 33108, + "Directional": true + }] + }, { + "ID": 13733, + "SourceStructureID": 36516, + "TargetStructureID": 10872, + "Label": "36516-10872 via Conventional from 36519 -> 15025", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36519, + "TargetID": 15025, + "Directional": true + }] + }, { + "ID": 13734, + "SourceStructureID": 36516, + "TargetStructureID": 67410, + "Label": "36516-67410 via Conventional from 36520 -> 82769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36520, + "TargetID": 82769, + "Directional": true + }] + }, { + "ID": 13735, + "SourceStructureID": 36650, + "TargetStructureID": 518, + "Label": "36650-518 via Conventional from 36651 -> 2319, 36652 -> 3433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36651, + "TargetID": 2319, + "Directional": true + }, { + "SourceID": 36652, + "TargetID": 3433, + "Directional": true + }] + }, { + "ID": 13736, + "SourceStructureID": 36661, + "TargetStructureID": 518, + "Label": "36661-518 via Conventional from 36662 -> 3456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36662, + "TargetID": 3456, + "Directional": true + }] + }, { + "ID": 13737, + "SourceStructureID": 36664, + "TargetStructureID": 518, + "Label": "36664-518 via Conventional from 36665 -> 36663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36665, + "TargetID": 36663, + "Directional": true + }] + }, { + "ID": 13738, + "SourceStructureID": 36683, + "TargetStructureID": 518, + "Label": "36683-518 via Conventional from 36684 -> 3444, 36686 -> 36685, 118353 -> 118352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36684, + "TargetID": 3444, + "Directional": true + }, { + "SourceID": 36686, + "TargetID": 36685, + "Directional": true + }, { + "SourceID": 118353, + "TargetID": 118352, + "Directional": true + }] + }, { + "ID": 13739, + "SourceStructureID": 36688, + "TargetStructureID": 476, + "Label": "36688-476 via Conventional from 36694 -> 36693", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36694, + "TargetID": 36693, + "Directional": true + }] + }, { + "ID": 13740, + "SourceStructureID": 36688, + "TargetStructureID": 518, + "Label": "36688-518 via Conventional from 36689 -> 3500, 36691 -> 36692, 36696 -> 3578", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36689, + "TargetID": 3500, + "Directional": true + }, { + "SourceID": 36691, + "TargetID": 36692, + "Directional": true + }, { + "SourceID": 36696, + "TargetID": 3578, + "Directional": true + }] + }, { + "ID": 13741, + "SourceStructureID": 36698, + "TargetStructureID": 476, + "Label": "36698-476 via Conventional from 36699 -> 2327", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36699, + "TargetID": 2327, + "Directional": true + }] + }, { + "ID": 13742, + "SourceStructureID": 36700, + "TargetStructureID": 476, + "Label": "36700-476 via Conventional from 36701 -> 2314, 36703 -> 16546", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36701, + "TargetID": 2314, + "Directional": true + }, { + "SourceID": 36703, + "TargetID": 16546, + "Directional": true + }] + }, { + "ID": 13743, + "SourceStructureID": 36700, + "TargetStructureID": 5350, + "Label": "36700-5350 via Conventional from 36704 -> 36705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36704, + "TargetID": 36705, + "Directional": true + }] + }, { + "ID": 13744, + "SourceStructureID": 36714, + "TargetStructureID": 518, + "Label": "36714-518 via Conventional from 36715 -> 36716, 36720 -> 3514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36715, + "TargetID": 36716, + "Directional": true + }, { + "SourceID": 36720, + "TargetID": 3514, + "Directional": true + }] + }, { + "ID": 13745, + "SourceStructureID": 36724, + "TargetStructureID": 294, + "Label": "36724-294 via Conventional from 36728 -> 36729, 36730 -> 36731", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36728, + "TargetID": 36729, + "Directional": true + }, { + "SourceID": 36730, + "TargetID": 36731, + "Directional": true + }] + }, { + "ID": 13746, + "SourceStructureID": 36724, + "TargetStructureID": 518, + "Label": "36724-518 via Conventional from 36725 -> 3392, 36726 -> 3398, 36727 -> 3386", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36725, + "TargetID": 3392, + "Directional": true + }, { + "SourceID": 36726, + "TargetID": 3398, + "Directional": true + }, { + "SourceID": 36727, + "TargetID": 3386, + "Directional": true + }] + }, { + "ID": 13747, + "SourceStructureID": 36746, + "TargetStructureID": 518, + "Label": "36746-518 via Conventional from 36747 -> 36745", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 36747, + "TargetID": 36745, + "Directional": true + }] + }, { + "ID": 13748, + "SourceStructureID": 37012, + "TargetStructureID": 476, + "Label": "37012-476 via Conventional from 37013 -> 2313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37013, + "TargetID": 2313, + "Directional": true + }] + }, { + "ID": 13749, + "SourceStructureID": 37021, + "TargetStructureID": 476, + "Label": "37021-476 via Conventional from 37022 -> 37023", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37022, + "TargetID": 37023, + "Directional": true + }] + }, { + "ID": 13750, + "SourceStructureID": 37042, + "TargetStructureID": 471, + "Label": "37042-471 via Conventional from 37043 -> 16043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37043, + "TargetID": 16043, + "Directional": true + }] + }, { + "ID": 13751, + "SourceStructureID": 37127, + "TargetStructureID": 476, + "Label": "37127-476 via Conventional from 37132 -> 2374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37132, + "TargetID": 2374, + "Directional": true + }] + }, { + "ID": 13752, + "SourceStructureID": 37127, + "TargetStructureID": 518, + "Label": "37127-518 via Conventional from 37128 -> 3438", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37128, + "TargetID": 3438, + "Directional": true + }] + }, { + "ID": 13753, + "SourceStructureID": 37135, + "TargetStructureID": 419, + "Label": "37135-419 via Conventional from 45662 -> 45663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45662, + "TargetID": 45663, + "Directional": true + }] + }, { + "ID": 13754, + "SourceStructureID": 37135, + "TargetStructureID": 476, + "Label": "37135-476 via Conventional from 37181 -> 2394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37181, + "TargetID": 2394, + "Directional": true + }] + }, { + "ID": 13755, + "SourceStructureID": 37135, + "TargetStructureID": 514, + "Label": "37135-514 via Conventional from 37179 -> 1557", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37179, + "TargetID": 1557, + "Directional": true + }] + }, { + "ID": 13756, + "SourceStructureID": 37135, + "TargetStructureID": 518, + "Label": "37135-518 via Conventional from 37136 -> 14719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37136, + "TargetID": 14719, + "Directional": true + }] + }, { + "ID": 13757, + "SourceStructureID": 37183, + "TargetStructureID": 518, + "Label": "37183-518 via Conventional from 37184 -> 3489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37184, + "TargetID": 3489, + "Directional": true + }] + }, { + "ID": 13758, + "SourceStructureID": 37192, + "TargetStructureID": 514, + "Label": "37192-514 via Conventional from 37193 -> 3288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37193, + "TargetID": 3288, + "Directional": true + }] + }, { + "ID": 13759, + "SourceStructureID": 37192, + "TargetStructureID": 3679, + "Label": "37192-3679 via Conventional from 37196 -> 16433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37196, + "TargetID": 16433, + "Directional": true + }] + }, { + "ID": 13760, + "SourceStructureID": 37286, + "TargetStructureID": 419, + "Label": "37286-419 via Conventional from 133552 -> 132365, 133652 -> 132389", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133552, + "TargetID": 132365, + "Directional": true + }, { + "SourceID": 133652, + "TargetID": 132389, + "Directional": true + }] + }, { + "ID": 13761, + "SourceStructureID": 37295, + "TargetStructureID": 318, + "Label": "37295-318 via Ribbon Synapse from 39161 -> 39162", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39161, + "TargetID": 39162, + "Directional": true + }] + }, { + "ID": 13762, + "SourceStructureID": 37295, + "TargetStructureID": 37288, + "Label": "37295-37288 via Ribbon Synapse from 37296 -> 37289, 37300 -> 37299", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37296, + "TargetID": 37289, + "Directional": true + }, { + "SourceID": 37300, + "TargetID": 37299, + "Directional": true + }] + }, { + "ID": 13763, + "SourceStructureID": 37309, + "TargetStructureID": 22554, + "Label": "37309-22554 via Ribbon Synapse from 37343 -> 22568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37343, + "TargetID": 22568, + "Directional": true + }] + }, { + "ID": 13764, + "SourceStructureID": 37309, + "TargetStructureID": 37288, + "Label": "37309-37288 via Ribbon Synapse from 37353 -> 37354, 37355 -> 37308, 37357 -> 37358, 37360 -> 37359, 37364 -> 37365, 37367 -> 37366, 37438 -> 37437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 37353, + "TargetID": 37354, + "Directional": true + }, { + "SourceID": 37355, + "TargetID": 37308, + "Directional": true + }, { + "SourceID": 37357, + "TargetID": 37358, + "Directional": true + }, { + "SourceID": 37360, + "TargetID": 37359, + "Directional": true + }, { + "SourceID": 37364, + "TargetID": 37365, + "Directional": true + }, { + "SourceID": 37367, + "TargetID": 37366, + "Directional": true + }, { + "SourceID": 37438, + "TargetID": 37437, + "Directional": true + }] + }, { + "ID": 13765, + "SourceStructureID": 37309, + "TargetStructureID": 121541, + "Label": "37309-121541 via Ribbon Synapse from 121557 -> 121556", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121557, + "TargetID": 121556, + "Directional": true + }] + }, { + "ID": 13766, + "SourceStructureID": 37440, + "TargetStructureID": 37288, + "Label": "37440-37288 via Conventional from 37446 -> 37307, 37448 -> 37306", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37446, + "TargetID": 37307, + "Directional": true + }, { + "SourceID": 37448, + "TargetID": 37306, + "Directional": true + }] + }, { + "ID": 13767, + "SourceStructureID": 37440, + "TargetStructureID": 37309, + "Label": "37440-37309 via Conventional from 37441 -> 37439", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37441, + "TargetID": 37439, + "Directional": true + }] + }, { + "ID": 13768, + "SourceStructureID": 37440, + "TargetStructureID": 37440, + "Label": "37440-37440 via Conventional from 37442 -> 37443", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37442, + "TargetID": 37443, + "Directional": true + }] + }, { + "ID": 13769, + "SourceStructureID": 37461, + "TargetStructureID": 514, + "Label": "37461-514 via Conventional from 37462 -> 1439", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37462, + "TargetID": 1439, + "Directional": true + }] + }, { + "ID": 13770, + "SourceStructureID": 37461, + "TargetStructureID": 591, + "Label": "37461-591 via Conventional from 37464 -> 10288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37464, + "TargetID": 10288, + "Directional": true + }] + }, { + "ID": 13771, + "SourceStructureID": 37466, + "TargetStructureID": 519, + "Label": "37466-519 via Conventional from 37467 -> 37465", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 37467, + "TargetID": 37465, + "Directional": true + }] + }, { + "ID": 13772, + "SourceStructureID": 38200, + "TargetStructureID": 514, + "Label": "38200-514 via Conventional from 38201 -> 1373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38201, + "TargetID": 1373, + "Directional": true + }] + }, { + "ID": 13773, + "SourceStructureID": 38231, + "TargetStructureID": 10826, + "Label": "38231-10826 via Conventional from 38232 -> 38233", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38232, + "TargetID": 38233, + "Directional": true + }] + }, { + "ID": 13774, + "SourceStructureID": 38236, + "TargetStructureID": 5623, + "Label": "38236-5623 via Conventional from 38241 -> 38242", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38241, + "TargetID": 38242, + "Directional": true + }] + }, { + "ID": 13775, + "SourceStructureID": 38236, + "TargetStructureID": 10826, + "Label": "38236-10826 via Conventional from 38237 -> 38238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38237, + "TargetID": 38238, + "Directional": true + }] + }, { + "ID": 13776, + "SourceStructureID": 38302, + "TargetStructureID": 6050, + "Label": "38302-6050 via Conventional from 38305 -> 38306, 127551 -> 127552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38305, + "TargetID": 38306, + "Directional": true + }, { + "SourceID": 127551, + "TargetID": 127552, + "Directional": true + }] + }, { + "ID": 13777, + "SourceStructureID": 38302, + "TargetStructureID": 11033, + "Label": "38302-11033 via Conventional from 38303 -> 38304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38303, + "TargetID": 38304, + "Directional": true + }] + }, { + "ID": 13778, + "SourceStructureID": 38307, + "TargetStructureID": 5599, + "Label": "38307-5599 via Conventional from 38321 -> 38326", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38321, + "TargetID": 38326, + "Directional": true + }] + }, { + "ID": 13779, + "SourceStructureID": 38307, + "TargetStructureID": 6050, + "Label": "38307-6050 via Conventional from 38311 -> 38312, 38319 -> 38320", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38311, + "TargetID": 38312, + "Directional": true + }, { + "SourceID": 38319, + "TargetID": 38320, + "Directional": true + }] + }, { + "ID": 13780, + "SourceStructureID": 38307, + "TargetStructureID": 11033, + "Label": "38307-11033 via Conventional from 38309 -> 38310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38309, + "TargetID": 38310, + "Directional": true + }] + }, { + "ID": 13781, + "SourceStructureID": 38345, + "TargetStructureID": 11020, + "Label": "38345-11020 via Conventional from 38346 -> 20011", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38346, + "TargetID": 20011, + "Directional": true + }] + }, { + "ID": 13782, + "SourceStructureID": 38357, + "TargetStructureID": 277, + "Label": "38357-277 via Conventional from 38431 -> 38430", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38431, + "TargetID": 38430, + "Directional": true + }] + }, { + "ID": 13783, + "SourceStructureID": 38357, + "TargetStructureID": 24366, + "Label": "38357-24366 via Conventional from 38889 -> 24378", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38889, + "TargetID": 24378, + "Directional": true + }] + }, { + "ID": 13784, + "SourceStructureID": 38363, + "TargetStructureID": 6115, + "Label": "38363-6115 via Conventional from 38369 -> 59609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38369, + "TargetID": 59609, + "Directional": true + }] + }, { + "ID": 13785, + "SourceStructureID": 38363, + "TargetStructureID": 10931, + "Label": "38363-10931 via Conventional from 38364 -> 38365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38364, + "TargetID": 38365, + "Directional": true + }] + }, { + "ID": 13786, + "SourceStructureID": 38363, + "TargetStructureID": 66407, + "Label": "38363-66407 via Conventional from 66467 -> 66468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66467, + "TargetID": 66468, + "Directional": true + }] + }, { + "ID": 13787, + "SourceStructureID": 38373, + "TargetStructureID": 10931, + "Label": "38373-10931 via Conventional from 38374 -> 38375", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38374, + "TargetID": 38375, + "Directional": true + }] + }, { + "ID": 13788, + "SourceStructureID": 38376, + "TargetStructureID": 10931, + "Label": "38376-10931 via Conventional from 38377 -> 14216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38377, + "TargetID": 14216, + "Directional": true + }] + }, { + "ID": 13789, + "SourceStructureID": 38379, + "TargetStructureID": 5297, + "Label": "38379-5297 via Conventional from 121285 -> 116331", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121285, + "TargetID": 116331, + "Directional": true + }] + }, { + "ID": 13790, + "SourceStructureID": 38379, + "TargetStructureID": 10931, + "Label": "38379-10931 via Conventional from 38380 -> 38381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38380, + "TargetID": 38381, + "Directional": true + }] + }, { + "ID": 13791, + "SourceStructureID": 38385, + "TargetStructureID": 10897, + "Label": "38385-10897 via Conventional from 38386 -> 38387", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38386, + "TargetID": 38387, + "Directional": true + }] + }, { + "ID": 13792, + "SourceStructureID": 38385, + "TargetStructureID": 67981, + "Label": "38385-67981 via Conventional from 67991 -> 67990", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67991, + "TargetID": 67990, + "Directional": true + }] + }, { + "ID": 13793, + "SourceStructureID": 38388, + "TargetStructureID": 10897, + "Label": "38388-10897 via Conventional from 38389 -> 38390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38389, + "TargetID": 38390, + "Directional": true + }] + }, { + "ID": 13794, + "SourceStructureID": 38388, + "TargetStructureID": 11401, + "Label": "38388-11401 via Conventional from 38455 -> 38456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38455, + "TargetID": 38456, + "Directional": true + }] + }, { + "ID": 13795, + "SourceStructureID": 38395, + "TargetStructureID": 8037, + "Label": "38395-8037 via Conventional from 38398 -> 38399", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38398, + "TargetID": 38399, + "Directional": true + }] + }, { + "ID": 13796, + "SourceStructureID": 38395, + "TargetStructureID": 8749, + "Label": "38395-8749 via Conventional from 38400 -> 8829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38400, + "TargetID": 8829, + "Directional": true + }] + }, { + "ID": 13797, + "SourceStructureID": 38395, + "TargetStructureID": 10897, + "Label": "38395-10897 via Conventional from 38396 -> 38397", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38396, + "TargetID": 38397, + "Directional": true + }] + }, { + "ID": 13798, + "SourceStructureID": 38401, + "TargetStructureID": 10840, + "Label": "38401-10840 via Conventional from 38402 -> 33270", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38402, + "TargetID": 33270, + "Directional": true + }] + }, { + "ID": 13799, + "SourceStructureID": 38404, + "TargetStructureID": 5637, + "Label": "38404-5637 via Conventional from 38411 -> 56030", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38411, + "TargetID": 56030, + "Directional": true + }] + }, { + "ID": 13800, + "SourceStructureID": 38428, + "TargetStructureID": 16087, + "Label": "38428-16087 via Conventional from 38429 -> 38427", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38429, + "TargetID": 38427, + "Directional": true + }] + }, { + "ID": 13801, + "SourceStructureID": 38435, + "TargetStructureID": 5454, + "Label": "38435-5454 via Conventional from 38436 -> 34195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38436, + "TargetID": 34195, + "Directional": true + }] + }, { + "ID": 13802, + "SourceStructureID": 38446, + "TargetStructureID": 5454, + "Label": "38446-5454 via Conventional from 38447 -> 38432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38447, + "TargetID": 38432, + "Directional": true + }] + }, { + "ID": 13803, + "SourceStructureID": 38461, + "TargetStructureID": 5468, + "Label": "38461-5468 via Conventional from 38470 -> 38473", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38470, + "TargetID": 38473, + "Directional": true + }] + }, { + "ID": 13804, + "SourceStructureID": 38461, + "TargetStructureID": 10412, + "Label": "38461-10412 via Conventional from 38462 -> 10419", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38462, + "TargetID": 10419, + "Directional": true + }] + }, { + "ID": 13805, + "SourceStructureID": 38483, + "TargetStructureID": 5649, + "Label": "38483-5649 via Conventional from 38500 -> 38501, 107116 -> 107114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38500, + "TargetID": 38501, + "Directional": true + }, { + "SourceID": 107116, + "TargetID": 107114, + "Directional": true + }] + }, { + "ID": 13806, + "SourceStructureID": 38483, + "TargetStructureID": 8586, + "Label": "38483-8586 via Conventional from 38484 -> 8644", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38484, + "TargetID": 8644, + "Directional": true + }] + }, { + "ID": 13807, + "SourceStructureID": 38502, + "TargetStructureID": 7054, + "Label": "38502-7054 via Conventional from 38503 -> 10914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38503, + "TargetID": 10914, + "Directional": true + }] + }, { + "ID": 13808, + "SourceStructureID": 38600, + "TargetStructureID": 422, + "Label": "38600-422 via Conventional from 38601 -> 31854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38601, + "TargetID": 31854, + "Directional": true + }] + }, { + "ID": 13809, + "SourceStructureID": 38605, + "TargetStructureID": 369, + "Label": "38605-369 via Conventional from 30438 -> 29552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 30438, + "TargetID": 29552, + "Directional": true + }] + }, { + "ID": 13810, + "SourceStructureID": 38605, + "TargetStructureID": 422, + "Label": "38605-422 via Conventional from 38606 -> 38604", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38606, + "TargetID": 38604, + "Directional": true + }] + }, { + "ID": 13811, + "SourceStructureID": 38605, + "TargetStructureID": 3116, + "Label": "38605-3116 via Conventional from 101488 -> 46773", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101488, + "TargetID": 46773, + "Directional": true + }] + }, { + "ID": 13812, + "SourceStructureID": 38605, + "TargetStructureID": 4569, + "Label": "38605-4569 via Conventional from 38612 -> 38613, 98731 -> 98729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38612, + "TargetID": 38613, + "Directional": true + }, { + "SourceID": 98731, + "TargetID": 98729, + "Directional": true + }] + }, { + "ID": 13813, + "SourceStructureID": 38632, + "TargetStructureID": 307, + "Label": "38632-307 via Conventional from 38642 -> 38643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38642, + "TargetID": 38643, + "Directional": true + }] + }, { + "ID": 13814, + "SourceStructureID": 38632, + "TargetStructureID": 380, + "Label": "38632-380 via Conventional from 38636 -> 38635", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38636, + "TargetID": 38635, + "Directional": true + }] + }, { + "ID": 13815, + "SourceStructureID": 38698, + "TargetStructureID": 330, + "Label": "38698-330 via Conventional from 38701 -> 38702", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38701, + "TargetID": 38702, + "Directional": true + }] + }, { + "ID": 13816, + "SourceStructureID": 38698, + "TargetStructureID": 360, + "Label": "38698-360 via Conventional from 38699 -> 26585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38699, + "TargetID": 26585, + "Directional": true + }] + }, { + "ID": 13817, + "SourceStructureID": 38698, + "TargetStructureID": 606, + "Label": "38698-606 via Conventional from 52707 -> 9797", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52707, + "TargetID": 9797, + "Directional": true + }] + }, { + "ID": 13818, + "SourceStructureID": 38703, + "TargetStructureID": 335, + "Label": "38703-335 via Conventional from 38711 -> 38712", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38711, + "TargetID": 38712, + "Directional": true + }] + }, { + "ID": 13819, + "SourceStructureID": 38703, + "TargetStructureID": 360, + "Label": "38703-360 via Conventional from 38704 -> 26586, 38705 -> 26587", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38704, + "TargetID": 26586, + "Directional": true + }, { + "SourceID": 38705, + "TargetID": 26587, + "Directional": true + }] + }, { + "ID": 13820, + "SourceStructureID": 38713, + "TargetStructureID": 345, + "Label": "38713-345 via Conventional from 38714 -> 38715", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38714, + "TargetID": 38715, + "Directional": true + }] + }, { + "ID": 13821, + "SourceStructureID": 38718, + "TargetStructureID": 345, + "Label": "38718-345 via Conventional from 38720 -> 38719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38720, + "TargetID": 38719, + "Directional": true + }] + }, { + "ID": 13822, + "SourceStructureID": 38718, + "TargetStructureID": 446, + "Label": "38718-446 via Conventional from 38723 -> 38724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38723, + "TargetID": 38724, + "Directional": true + }] + }, { + "ID": 13823, + "SourceStructureID": 38727, + "TargetStructureID": 332, + "Label": "38727-332 via Conventional from 38731 -> 38732", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38731, + "TargetID": 38732, + "Directional": true + }] + }, { + "ID": 13824, + "SourceStructureID": 38727, + "TargetStructureID": 334, + "Label": "38727-334 via Conventional from 38728 -> 26206", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38728, + "TargetID": 26206, + "Directional": true + }] + }, { + "ID": 13825, + "SourceStructureID": 38727, + "TargetStructureID": 38703, + "Label": "38727-38703 via Conventional from 38729 -> 38730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38729, + "TargetID": 38730, + "Directional": true + }] + }, { + "ID": 13826, + "SourceStructureID": 38735, + "TargetStructureID": 17533, + "Label": "38735-17533 via Conventional from 38736 -> 38737", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38736, + "TargetID": 38737, + "Directional": true + }] + }, { + "ID": 13827, + "SourceStructureID": 38740, + "TargetStructureID": 293, + "Label": "38740-293 via Conventional from 38741 -> 14377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38741, + "TargetID": 14377, + "Directional": true + }] + }, { + "ID": 13828, + "SourceStructureID": 38799, + "TargetStructureID": 598, + "Label": "38799-598 via Ribbon Synapse from 38800 -> 38798", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38800, + "TargetID": 38798, + "Directional": true + }] + }, { + "ID": 13829, + "SourceStructureID": 38848, + "TargetStructureID": 18282, + "Label": "38848-18282 via Ribbon Synapse from 38850 -> 31455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 38850, + "TargetID": 31455, + "Directional": true + }] + }, { + "ID": 13830, + "SourceStructureID": 38906, + "TargetStructureID": 483, + "Label": "38906-483 via Conventional from 38907 -> 26812", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38907, + "TargetID": 26812, + "Directional": true + }] + }, { + "ID": 13831, + "SourceStructureID": 38906, + "TargetStructureID": 4570, + "Label": "38906-4570 via Conventional from 38925 -> 14979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38925, + "TargetID": 14979, + "Directional": true + }] + }, { + "ID": 13832, + "SourceStructureID": 38949, + "TargetStructureID": 170, + "Label": "38949-170 via Conventional from 39029 -> 39030, 39034 -> 39035", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39029, + "TargetID": 39030, + "Directional": true + }, { + "SourceID": 39034, + "TargetID": 39035, + "Directional": true + }] + }, { + "ID": 13833, + "SourceStructureID": 38949, + "TargetStructureID": 176, + "Label": "38949-176 via Conventional from 38989 -> 128264, 38993 -> 38994, 38997 -> 38999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38989, + "TargetID": 128264, + "Directional": true + }, { + "SourceID": 38993, + "TargetID": 38994, + "Directional": true + }, { + "SourceID": 38997, + "TargetID": 38999, + "Directional": true + }] + }, { + "ID": 13834, + "SourceStructureID": 38949, + "TargetStructureID": 431, + "Label": "38949-431 via Conventional from 39043 -> 12741, 39045 -> 39046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39043, + "TargetID": 12741, + "Directional": true + }, { + "SourceID": 39045, + "TargetID": 39046, + "Directional": true + }] + }, { + "ID": 13835, + "SourceStructureID": 38949, + "TargetStructureID": 4569, + "Label": "38949-4569 via Conventional from 39038 -> 39039, 39040 -> 39041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39038, + "TargetID": 39039, + "Directional": true + }, { + "SourceID": 39040, + "TargetID": 39041, + "Directional": true + }] + }, { + "ID": 13836, + "SourceStructureID": 38949, + "TargetStructureID": 5584, + "Label": "38949-5584 via Conventional from 38952 -> 38970", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38952, + "TargetID": 38970, + "Directional": true + }] + }, { + "ID": 13837, + "SourceStructureID": 38949, + "TargetStructureID": 5598, + "Label": "38949-5598 via Conventional from 38950 -> 38951, 38976 -> 38977, 38980 -> 115006, 124477 -> 114595", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38950, + "TargetID": 38951, + "Directional": true + }, { + "SourceID": 38976, + "TargetID": 38977, + "Directional": true + }, { + "SourceID": 38980, + "TargetID": 115006, + "Directional": true + }, { + "SourceID": 124477, + "TargetID": 114595, + "Directional": true + }] + }, { + "ID": 13838, + "SourceStructureID": 38949, + "TargetStructureID": 9376, + "Label": "38949-9376 via Conventional from 38983 -> 33657", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 38983, + "TargetID": 33657, + "Directional": true + }] + }, { + "ID": 13839, + "SourceStructureID": 38949, + "TargetStructureID": 29827, + "Label": "38949-29827 via Conventional from 39028 -> 29836", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39028, + "TargetID": 29836, + "Directional": true + }] + }, { + "ID": 13840, + "SourceStructureID": 38949, + "TargetStructureID": 90273, + "Label": "38949-90273 via Conventional from 39037 -> 90274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39037, + "TargetID": 90274, + "Directional": true + }] + }, { + "ID": 13841, + "SourceStructureID": 39168, + "TargetStructureID": 516, + "Label": "39168-516 via Conventional from 39169 -> 6383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39169, + "TargetID": 6383, + "Directional": true + }] + }, { + "ID": 13842, + "SourceStructureID": 39192, + "TargetStructureID": 516, + "Label": "39192-516 via Conventional from 39194 -> 39193", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39194, + "TargetID": 39193, + "Directional": true + }] + }, { + "ID": 13843, + "SourceStructureID": 39196, + "TargetStructureID": 516, + "Label": "39196-516 via Conventional from 39197 -> 39195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39197, + "TargetID": 39195, + "Directional": true + }] + }, { + "ID": 13844, + "SourceStructureID": 39201, + "TargetStructureID": 516, + "Label": "39201-516 via Conventional from 39202 -> 6493, 39204 -> 39205, 39206 -> 39207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39202, + "TargetID": 6493, + "Directional": true + }, { + "SourceID": 39204, + "TargetID": 39205, + "Directional": true + }, { + "SourceID": 39206, + "TargetID": 39207, + "Directional": true + }] + }, { + "ID": 13845, + "SourceStructureID": 39208, + "TargetStructureID": 171, + "Label": "39208-171 via Conventional from 39219 -> 39220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39219, + "TargetID": 39220, + "Directional": true + }] + }, { + "ID": 13846, + "SourceStructureID": 39208, + "TargetStructureID": 516, + "Label": "39208-516 via Conventional from 39209 -> 39210, 39215 -> 3742", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39209, + "TargetID": 39210, + "Directional": true + }, { + "SourceID": 39215, + "TargetID": 3742, + "Directional": true + }] + }, { + "ID": 13847, + "SourceStructureID": 39216, + "TargetStructureID": 516, + "Label": "39216-516 via Conventional from 39217 -> 39218", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39217, + "TargetID": 39218, + "Directional": true + }] + }, { + "ID": 13848, + "SourceStructureID": 39226, + "TargetStructureID": 516, + "Label": "39226-516 via Conventional from 39227 -> 39229", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39227, + "TargetID": 39229, + "Directional": true + }] + }, { + "ID": 13849, + "SourceStructureID": 39239, + "TargetStructureID": 3679, + "Label": "39239-3679 via Conventional from 39242 -> 39243", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39242, + "TargetID": 39243, + "Directional": true + }] + }, { + "ID": 13850, + "SourceStructureID": 39239, + "TargetStructureID": 32046, + "Label": "39239-32046 via Conventional from 39240 -> 39241", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39240, + "TargetID": 39241, + "Directional": true + }] + }, { + "ID": 13851, + "SourceStructureID": 39244, + "TargetStructureID": 516, + "Label": "39244-516 via Conventional from 39245 -> 39246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39245, + "TargetID": 39246, + "Directional": true + }] + }, { + "ID": 13852, + "SourceStructureID": 39244, + "TargetStructureID": 517, + "Label": "39244-517 via Conventional from 39248 -> 39249", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39248, + "TargetID": 39249, + "Directional": true + }] + }, { + "ID": 13853, + "SourceStructureID": 39244, + "TargetStructureID": 10931, + "Label": "39244-10931 via Conventional from 39250 -> 39251, 89590 -> 89591", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39250, + "TargetID": 39251, + "Directional": true + }, { + "SourceID": 89590, + "TargetID": 89591, + "Directional": true + }] + }, { + "ID": 13854, + "SourceStructureID": 39252, + "TargetStructureID": 516, + "Label": "39252-516 via Conventional from 39253 -> 39254", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39253, + "TargetID": 39254, + "Directional": true + }] + }, { + "ID": 13855, + "SourceStructureID": 39252, + "TargetStructureID": 517, + "Label": "39252-517 via Conventional from 39255 -> 1576", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39255, + "TargetID": 1576, + "Directional": true + }] + }, { + "ID": 13856, + "SourceStructureID": 39285, + "TargetStructureID": 516, + "Label": "39285-516 via Conventional from 39288 -> 39291", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39288, + "TargetID": 39291, + "Directional": true + }] + }, { + "ID": 13857, + "SourceStructureID": 39299, + "TargetStructureID": 9260, + "Label": "39299-9260 via Conventional from 39300 -> 39298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39300, + "TargetID": 39298, + "Directional": true + }] + }, { + "ID": 13858, + "SourceStructureID": 39299, + "TargetStructureID": 21299, + "Label": "39299-21299 via Conventional from 39301 -> 39304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39301, + "TargetID": 39304, + "Directional": true + }] + }, { + "ID": 13859, + "SourceStructureID": 39299, + "TargetStructureID": 24401, + "Label": "39299-24401 via Conventional from 39309 -> 48069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39309, + "TargetID": 48069, + "Directional": true + }] + }, { + "ID": 13860, + "SourceStructureID": 39319, + "TargetStructureID": 166, + "Label": "39319-166 via Conventional from 39321 -> 59979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39321, + "TargetID": 59979, + "Directional": true + }] + }, { + "ID": 13861, + "SourceStructureID": 39319, + "TargetStructureID": 516, + "Label": "39319-516 via Conventional from 39320 -> 6402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39320, + "TargetID": 6402, + "Directional": true + }] + }, { + "ID": 13862, + "SourceStructureID": 39324, + "TargetStructureID": 516, + "Label": "39324-516 via Conventional from 39325 -> 39289, 39326 -> 39327", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39325, + "TargetID": 39289, + "Directional": true + }, { + "SourceID": 39326, + "TargetID": 39327, + "Directional": true + }] + }, { + "ID": 13863, + "SourceStructureID": 39331, + "TargetStructureID": 516, + "Label": "39331-516 via Conventional from 39332 -> 18400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39332, + "TargetID": 18400, + "Directional": true + }] + }, { + "ID": 13864, + "SourceStructureID": 39342, + "TargetStructureID": 516, + "Label": "39342-516 via Conventional from 39343 -> 39344, 39588 -> 39589", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39343, + "TargetID": 39344, + "Directional": true + }, { + "SourceID": 39588, + "TargetID": 39589, + "Directional": true + }] + }, { + "ID": 13865, + "SourceStructureID": 39345, + "TargetStructureID": 166, + "Label": "39345-166 via Conventional from 39346 -> 4462, 39352 -> 39353, 66719 -> 66720", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39346, + "TargetID": 4462, + "Directional": true + }, { + "SourceID": 39352, + "TargetID": 39353, + "Directional": true + }, { + "SourceID": 66719, + "TargetID": 66720, + "Directional": true + }] + }, { + "ID": 13866, + "SourceStructureID": 39516, + "TargetStructureID": 516, + "Label": "39516-516 via Conventional from 39517 -> 6495, 39518 -> 6496", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39517, + "TargetID": 6495, + "Directional": true + }, { + "SourceID": 39518, + "TargetID": 6496, + "Directional": true + }] + }, { + "ID": 13867, + "SourceStructureID": 39520, + "TargetStructureID": 516, + "Label": "39520-516 via Conventional from 39522 -> 39521", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39522, + "TargetID": 39521, + "Directional": true + }] + }, { + "ID": 13868, + "SourceStructureID": 39523, + "TargetStructureID": 516, + "Label": "39523-516 via Conventional from 39524 -> 39525", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39524, + "TargetID": 39525, + "Directional": true + }] + }, { + "ID": 13869, + "SourceStructureID": 39528, + "TargetStructureID": 10625, + "Label": "39528-10625 via Conventional from 39529 -> 16238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39529, + "TargetID": 16238, + "Directional": true + }] + }, { + "ID": 13870, + "SourceStructureID": 39530, + "TargetStructureID": 471, + "Label": "39530-471 via Conventional from 83493 -> 16287, 83497 -> 16289, 83498 -> 16288, 83501 -> 16290", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83493, + "TargetID": 16287, + "Directional": true + }, { + "SourceID": 83497, + "TargetID": 16289, + "Directional": true + }, { + "SourceID": 83498, + "TargetID": 16288, + "Directional": true + }, { + "SourceID": 83501, + "TargetID": 16290, + "Directional": true + }] + }, { + "ID": 13871, + "SourceStructureID": 39530, + "TargetStructureID": 3679, + "Label": "39530-3679 via Conventional from 39556 -> 39549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39556, + "TargetID": 39549, + "Directional": true + }] + }, { + "ID": 13872, + "SourceStructureID": 39530, + "TargetStructureID": 5017, + "Label": "39530-5017 via Conventional from 39552 -> 39542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39552, + "TargetID": 39542, + "Directional": true + }] + }, { + "ID": 13873, + "SourceStructureID": 39530, + "TargetStructureID": 10625, + "Label": "39530-10625 via Conventional from 39531 -> 39532, 39533 -> 39534, 39535 -> 16237, 39536 -> 39537, 39538 -> 39539", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39531, + "TargetID": 39532, + "Directional": true + }, { + "SourceID": 39533, + "TargetID": 39534, + "Directional": true + }, { + "SourceID": 39535, + "TargetID": 16237, + "Directional": true + }, { + "SourceID": 39536, + "TargetID": 39537, + "Directional": true + }, { + "SourceID": 39538, + "TargetID": 39539, + "Directional": true + }] + }, { + "ID": 13874, + "SourceStructureID": 39560, + "TargetStructureID": 516, + "Label": "39560-516 via Conventional from 39561 -> 39562, 39563 -> 39564, 39567 -> 39568, 39569 -> 39570, 39655 -> 39657, 39656 -> 39658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39561, + "TargetID": 39562, + "Directional": true + }, { + "SourceID": 39563, + "TargetID": 39564, + "Directional": true + }, { + "SourceID": 39567, + "TargetID": 39568, + "Directional": true + }, { + "SourceID": 39569, + "TargetID": 39570, + "Directional": true + }, { + "SourceID": 39655, + "TargetID": 39657, + "Directional": true + }, { + "SourceID": 39656, + "TargetID": 39658, + "Directional": true + }] + }, { + "ID": 13875, + "SourceStructureID": 39575, + "TargetStructureID": 516, + "Label": "39575-516 via Conventional from 39576 -> 39572, 39577 -> 39574", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39576, + "TargetID": 39572, + "Directional": true + }, { + "SourceID": 39577, + "TargetID": 39574, + "Directional": true + }] + }, { + "ID": 13876, + "SourceStructureID": 39581, + "TargetStructureID": 6857, + "Label": "39581-6857 via Conventional from 39582 -> 7496, 39583 -> 7495, 39584 -> 7497, 39586 -> 7499, 39587 -> 7498", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39582, + "TargetID": 7496, + "Directional": true + }, { + "SourceID": 39583, + "TargetID": 7495, + "Directional": true + }, { + "SourceID": 39584, + "TargetID": 7497, + "Directional": true + }, { + "SourceID": 39586, + "TargetID": 7499, + "Directional": true + }, { + "SourceID": 39587, + "TargetID": 7498, + "Directional": true + }] + }, { + "ID": 13877, + "SourceStructureID": 39590, + "TargetStructureID": 516, + "Label": "39590-516 via Conventional from 39591 -> 6390, 39592 -> 6388, 39592 -> 6389, 39594 -> 39595", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39591, + "TargetID": 6390, + "Directional": true + }, { + "SourceID": 39592, + "TargetID": 6388, + "Directional": true + }, { + "SourceID": 39592, + "TargetID": 6389, + "Directional": true + }, { + "SourceID": 39594, + "TargetID": 39595, + "Directional": true + }] + }, { + "ID": 13878, + "SourceStructureID": 39596, + "TargetStructureID": 516, + "Label": "39596-516 via Conventional from 39597 -> 6387", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39597, + "TargetID": 6387, + "Directional": true + }] + }, { + "ID": 13879, + "SourceStructureID": 39602, + "TargetStructureID": 516, + "Label": "39602-516 via Conventional from 39603 -> 39601", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39603, + "TargetID": 39601, + "Directional": true + }] + }, { + "ID": 13880, + "SourceStructureID": 39602, + "TargetStructureID": 10625, + "Label": "39602-10625 via Conventional from 51392 -> 51391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 51392, + "TargetID": 51391, + "Directional": true + }] + }, { + "ID": 13881, + "SourceStructureID": 39610, + "TargetStructureID": 166, + "Label": "39610-166 via Conventional from 121986 -> 5799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121986, + "TargetID": 5799, + "Directional": true + }] + }, { + "ID": 13882, + "SourceStructureID": 39610, + "TargetStructureID": 516, + "Label": "39610-516 via Conventional from 39647 -> 39648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39647, + "TargetID": 39648, + "Directional": true + }] + }, { + "ID": 13883, + "SourceStructureID": 39615, + "TargetStructureID": 180, + "Label": "39615-180 via Conventional from 66533 -> 66534", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66533, + "TargetID": 66534, + "Directional": true + }] + }, { + "ID": 13884, + "SourceStructureID": 39615, + "TargetStructureID": 516, + "Label": "39615-516 via Conventional from 45650 -> 39614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45650, + "TargetID": 39614, + "Directional": true + }] + }, { + "ID": 13885, + "SourceStructureID": 39615, + "TargetStructureID": 10931, + "Label": "39615-10931 via Conventional from 39643 -> 39629", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39643, + "TargetID": 39629, + "Directional": true + }] + }, { + "ID": 13886, + "SourceStructureID": 39615, + "TargetStructureID": 71517, + "Label": "39615-71517 via Conventional from 132951 -> 132952", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132951, + "TargetID": 132952, + "Directional": true + }] + }, { + "ID": 13887, + "SourceStructureID": 39649, + "TargetStructureID": 516, + "Label": "39649-516 via Conventional from 39650 -> 39651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39650, + "TargetID": 39651, + "Directional": true + }] + }, { + "ID": 13888, + "SourceStructureID": 39677, + "TargetStructureID": 516, + "Label": "39677-516 via Conventional from 39678 -> 4549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39678, + "TargetID": 4549, + "Directional": true + }] + }, { + "ID": 13889, + "SourceStructureID": 39677, + "TargetStructureID": 31024, + "Label": "39677-31024 via Conventional from 39679 -> 31068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39679, + "TargetID": 31068, + "Directional": true + }] + }, { + "ID": 13890, + "SourceStructureID": 39688, + "TargetStructureID": 516, + "Label": "39688-516 via Conventional from 39689 -> 39690", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39689, + "TargetID": 39690, + "Directional": true + }] + }, { + "ID": 13891, + "SourceStructureID": 39688, + "TargetStructureID": 10625, + "Label": "39688-10625 via Conventional from 39693 -> 39694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39693, + "TargetID": 39694, + "Directional": true + }] + }, { + "ID": 13892, + "SourceStructureID": 39696, + "TargetStructureID": 142, + "Label": "39696-142 via Conventional from 87725 -> 92839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87725, + "TargetID": 92839, + "Directional": true + }] + }, { + "ID": 13893, + "SourceStructureID": 39696, + "TargetStructureID": 171, + "Label": "39696-171 via Conventional from 39700 -> 22910", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39700, + "TargetID": 22910, + "Directional": true + }] + }, { + "ID": 13894, + "SourceStructureID": 39696, + "TargetStructureID": 6117, + "Label": "39696-6117 via Conventional from 86321 -> 86322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86321, + "TargetID": 86322, + "Directional": true + }] + }, { + "ID": 13895, + "SourceStructureID": 39696, + "TargetStructureID": 10625, + "Label": "39696-10625 via Conventional from 39697 -> 39695", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39697, + "TargetID": 39695, + "Directional": true + }] + }, { + "ID": 13896, + "SourceStructureID": 39706, + "TargetStructureID": 171, + "Label": "39706-171 via Conventional from 39708 -> 39705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39708, + "TargetID": 39705, + "Directional": true + }] + }, { + "ID": 13897, + "SourceStructureID": 39706, + "TargetStructureID": 39696, + "Label": "39706-39696 via Conventional from 39707 -> 39703", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39707, + "TargetID": 39703, + "Directional": true + }] + }, { + "ID": 13898, + "SourceStructureID": 39717, + "TargetStructureID": 142, + "Label": "39717-142 via Conventional from 39721 -> 119586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39721, + "TargetID": 119586, + "Directional": true + }] + }, { + "ID": 13899, + "SourceStructureID": 39717, + "TargetStructureID": 5437, + "Label": "39717-5437 via Conventional from 39720 -> 88063", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39720, + "TargetID": 88063, + "Directional": true + }] + }, { + "ID": 13900, + "SourceStructureID": 39717, + "TargetStructureID": 10625, + "Label": "39717-10625 via Conventional from 39718 -> 39716", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39718, + "TargetID": 39716, + "Directional": true + }] + }, { + "ID": 13901, + "SourceStructureID": 39724, + "TargetStructureID": 10625, + "Label": "39724-10625 via Conventional from 39725 -> 39726, 39729 -> 26932, 39731 -> 39732, 39733 -> 39734, 39735 -> 39736, 88826 -> 88828", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39725, + "TargetID": 39726, + "Directional": true + }, { + "SourceID": 39729, + "TargetID": 26932, + "Directional": true + }, { + "SourceID": 39731, + "TargetID": 39732, + "Directional": true + }, { + "SourceID": 39733, + "TargetID": 39734, + "Directional": true + }, { + "SourceID": 39735, + "TargetID": 39736, + "Directional": true + }, { + "SourceID": 88826, + "TargetID": 88828, + "Directional": true + }] + }, { + "ID": 13902, + "SourceStructureID": 39737, + "TargetStructureID": 10625, + "Label": "39737-10625 via Conventional from 39738 -> 39739, 39740 -> 88829, 39742 -> 39743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39738, + "TargetID": 39739, + "Directional": true + }, { + "SourceID": 39740, + "TargetID": 88829, + "Directional": true + }, { + "SourceID": 39742, + "TargetID": 39743, + "Directional": true + }] + }, { + "ID": 13903, + "SourceStructureID": 39745, + "TargetStructureID": 10625, + "Label": "39745-10625 via Conventional from 39746 -> 26936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39746, + "TargetID": 26936, + "Directional": true + }] + }, { + "ID": 13904, + "SourceStructureID": 39748, + "TargetStructureID": 10625, + "Label": "39748-10625 via Conventional from 39750 -> 39751, 39757 -> 39758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39750, + "TargetID": 39751, + "Directional": true + }, { + "SourceID": 39757, + "TargetID": 39758, + "Directional": true + }] + }, { + "ID": 13905, + "SourceStructureID": 39752, + "TargetStructureID": 10625, + "Label": "39752-10625 via Conventional from 39753 -> 39754, 39755 -> 39756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39753, + "TargetID": 39754, + "Directional": true + }, { + "SourceID": 39755, + "TargetID": 39756, + "Directional": true + }] + }, { + "ID": 13906, + "SourceStructureID": 39759, + "TargetStructureID": 10625, + "Label": "39759-10625 via Conventional from 39760 -> 39761, 39763 -> 16340", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39760, + "TargetID": 39761, + "Directional": true + }, { + "SourceID": 39763, + "TargetID": 16340, + "Directional": true + }] + }, { + "ID": 13907, + "SourceStructureID": 39764, + "TargetStructureID": 10625, + "Label": "39764-10625 via Conventional from 39765 -> 16233, 39766 -> 16234, 39768 -> 39769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39765, + "TargetID": 16233, + "Directional": true + }, { + "SourceID": 39766, + "TargetID": 16234, + "Directional": true + }, { + "SourceID": 39768, + "TargetID": 39769, + "Directional": true + }] + }, { + "ID": 13908, + "SourceStructureID": 39764, + "TargetStructureID": 14615, + "Label": "39764-14615 via Conventional from 39771 -> 39772", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39771, + "TargetID": 39772, + "Directional": true + }] + }, { + "ID": 13909, + "SourceStructureID": 39774, + "TargetStructureID": 180, + "Label": "39774-180 via Conventional from 51339 -> 14157", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 51339, + "TargetID": 14157, + "Directional": true + }] + }, { + "ID": 13910, + "SourceStructureID": 39774, + "TargetStructureID": 516, + "Label": "39774-516 via Conventional from 39777 -> 39778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39777, + "TargetID": 39778, + "Directional": true + }] + }, { + "ID": 13911, + "SourceStructureID": 39774, + "TargetStructureID": 10625, + "Label": "39774-10625 via Conventional from 39775 -> 39776", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39775, + "TargetID": 39776, + "Directional": true + }] + }, { + "ID": 13912, + "SourceStructureID": 39784, + "TargetStructureID": 10625, + "Label": "39784-10625 via Conventional from 39785 -> 39783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39785, + "TargetID": 39783, + "Directional": true + }] + }, { + "ID": 13913, + "SourceStructureID": 39787, + "TargetStructureID": 10625, + "Label": "39787-10625 via Conventional from 87735 -> 26931", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87735, + "TargetID": 26931, + "Directional": true + }] + }, { + "ID": 13914, + "SourceStructureID": 39787, + "TargetStructureID": 39787, + "Label": "39787-39787 via Conventional from 87733 -> 87734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87733, + "TargetID": 87734, + "Directional": true + }] + }, { + "ID": 13915, + "SourceStructureID": 39790, + "TargetStructureID": 10625, + "Label": "39790-10625 via Conventional from 39791 -> 39792", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39791, + "TargetID": 39792, + "Directional": true + }] + }, { + "ID": 13916, + "SourceStructureID": 39794, + "TargetStructureID": 10625, + "Label": "39794-10625 via Conventional from 39796 -> 39797", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39796, + "TargetID": 39797, + "Directional": true + }] + }, { + "ID": 13917, + "SourceStructureID": 39798, + "TargetStructureID": 10625, + "Label": "39798-10625 via Conventional from 39799 -> 39800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39799, + "TargetID": 39800, + "Directional": true + }] + }, { + "ID": 13918, + "SourceStructureID": 39802, + "TargetStructureID": 10625, + "Label": "39802-10625 via Conventional from 39803 -> 39804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39803, + "TargetID": 39804, + "Directional": true + }] + }, { + "ID": 13919, + "SourceStructureID": 39807, + "TargetStructureID": 10625, + "Label": "39807-10625 via Conventional from 39808 -> 16751, 39809 -> 16752", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39808, + "TargetID": 16751, + "Directional": true + }, { + "SourceID": 39809, + "TargetID": 16752, + "Directional": true + }] + }, { + "ID": 13920, + "SourceStructureID": 39811, + "TargetStructureID": 10625, + "Label": "39811-10625 via Conventional from 39812 -> 39813, 39814 -> 26911", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39812, + "TargetID": 39813, + "Directional": true + }, { + "SourceID": 39814, + "TargetID": 26911, + "Directional": true + }] + }, { + "ID": 13921, + "SourceStructureID": 39816, + "TargetStructureID": 10625, + "Label": "39816-10625 via Conventional from 39820 -> 39821, 88830 -> 88831", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39820, + "TargetID": 39821, + "Directional": true + }, { + "SourceID": 88830, + "TargetID": 88831, + "Directional": true + }] + }, { + "ID": 13922, + "SourceStructureID": 39822, + "TargetStructureID": 10625, + "Label": "39822-10625 via Conventional from 39823 -> 26904", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39823, + "TargetID": 26904, + "Directional": true + }] + }, { + "ID": 13923, + "SourceStructureID": 39824, + "TargetStructureID": 10625, + "Label": "39824-10625 via Conventional from 39825 -> 26910, 39829 -> 16753", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39825, + "TargetID": 26910, + "Directional": true + }, { + "SourceID": 39829, + "TargetID": 16753, + "Directional": true + }] + }, { + "ID": 13924, + "SourceStructureID": 39830, + "TargetStructureID": 10625, + "Label": "39830-10625 via Conventional from 39832 -> 26918, 39833 -> 26919, 39834 -> 26921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39832, + "TargetID": 26918, + "Directional": true + }, { + "SourceID": 39833, + "TargetID": 26919, + "Directional": true + }, { + "SourceID": 39834, + "TargetID": 26921, + "Directional": true + }] + }, { + "ID": 13925, + "SourceStructureID": 39835, + "TargetStructureID": 10625, + "Label": "39835-10625 via Conventional from 39836 -> 26920", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39836, + "TargetID": 26920, + "Directional": true + }] + }, { + "ID": 13926, + "SourceStructureID": 39838, + "TargetStructureID": 10625, + "Label": "39838-10625 via Conventional from 39839 -> 26922", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39839, + "TargetID": 26922, + "Directional": true + }] + }, { + "ID": 13927, + "SourceStructureID": 39846, + "TargetStructureID": 519, + "Label": "39846-519 via Conventional from 39847 -> 9306", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39847, + "TargetID": 9306, + "Directional": true + }] + }, { + "ID": 13928, + "SourceStructureID": 39846, + "TargetStructureID": 5575, + "Label": "39846-5575 via Conventional from 39849 -> 23084", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39849, + "TargetID": 23084, + "Directional": true + }] + }, { + "ID": 13929, + "SourceStructureID": 39851, + "TargetStructureID": 408, + "Label": "39851-408 via Conventional from 39860 -> 39861", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39860, + "TargetID": 39861, + "Directional": true + }] + }, { + "ID": 13930, + "SourceStructureID": 39851, + "TargetStructureID": 519, + "Label": "39851-519 via Conventional from 39852 -> 39853", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39852, + "TargetID": 39853, + "Directional": true + }] + }, { + "ID": 13931, + "SourceStructureID": 39851, + "TargetStructureID": 15100, + "Label": "39851-15100 via Conventional from 39858 -> 33786", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39858, + "TargetID": 33786, + "Directional": true + }] + }, { + "ID": 13932, + "SourceStructureID": 39851, + "TargetStructureID": 26079, + "Label": "39851-26079 via Conventional from 39856 -> 39857", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39856, + "TargetID": 39857, + "Directional": true + }] + }, { + "ID": 13933, + "SourceStructureID": 39862, + "TargetStructureID": 6912, + "Label": "39862-6912 via Ribbon Synapse from 51279 -> 51132, 51283 -> 51284", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51279, + "TargetID": 51132, + "Directional": true + }, { + "SourceID": 51283, + "TargetID": 51284, + "Directional": true + }] + }, { + "ID": 13934, + "SourceStructureID": 39862, + "TargetStructureID": 39851, + "Label": "39862-39851 via Ribbon Synapse from 39866 -> 39859", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 39866, + "TargetID": 39859, + "Directional": true + }] + }, { + "ID": 13935, + "SourceStructureID": 39862, + "TargetStructureID": 39957, + "Label": "39862-39957 via Ribbon Synapse from 52302 -> 58545", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52302, + "TargetID": 58545, + "Directional": true + }] + }, { + "ID": 13936, + "SourceStructureID": 39862, + "TargetStructureID": 68737, + "Label": "39862-68737 via Ribbon Synapse from 52330 -> 68741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52330, + "TargetID": 68741, + "Directional": true + }] + }, { + "ID": 13937, + "SourceStructureID": 39862, + "TargetStructureID": 87172, + "Label": "39862-87172 via Ribbon Synapse from 51176 -> 87173", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51176, + "TargetID": 87173, + "Directional": true + }] + }, { + "ID": 13938, + "SourceStructureID": 39867, + "TargetStructureID": 519, + "Label": "39867-519 via Conventional from 39868 -> 39869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39868, + "TargetID": 39869, + "Directional": true + }] + }, { + "ID": 13939, + "SourceStructureID": 39872, + "TargetStructureID": 485, + "Label": "39872-485 via Conventional from 39874 -> 49903", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39874, + "TargetID": 49903, + "Directional": true + }] + }, { + "ID": 13940, + "SourceStructureID": 39872, + "TargetStructureID": 519, + "Label": "39872-519 via Conventional from 39873 -> 16516", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39873, + "TargetID": 16516, + "Directional": true + }] + }, { + "ID": 13941, + "SourceStructureID": 39876, + "TargetStructureID": 485, + "Label": "39876-485 via Conventional from 39879 -> 39880", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39879, + "TargetID": 39880, + "Directional": true + }] + }, { + "ID": 13942, + "SourceStructureID": 39876, + "TargetStructureID": 519, + "Label": "39876-519 via Conventional from 39877 -> 39878", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39877, + "TargetID": 39878, + "Directional": true + }] + }, { + "ID": 13943, + "SourceStructureID": 39876, + "TargetStructureID": 27288, + "Label": "39876-27288 via Conventional from 39881 -> 27297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39881, + "TargetID": 27297, + "Directional": true + }] + }, { + "ID": 13944, + "SourceStructureID": 39883, + "TargetStructureID": 519, + "Label": "39883-519 via Conventional from 39884 -> 39885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39884, + "TargetID": 39885, + "Directional": true + }] + }, { + "ID": 13945, + "SourceStructureID": 39896, + "TargetStructureID": 5729, + "Label": "39896-5729 via Conventional from 110888 -> 110889, 110943 -> 37856", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110888, + "TargetID": 110889, + "Directional": true + }, { + "SourceID": 110943, + "TargetID": 37856, + "Directional": true + }] + }, { + "ID": 13946, + "SourceStructureID": 39900, + "TargetStructureID": 606, + "Label": "39900-606 via Conventional from 52169 -> 39898", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52169, + "TargetID": 39898, + "Directional": true + }] + }, { + "ID": 13947, + "SourceStructureID": 39900, + "TargetStructureID": 7594, + "Label": "39900-7594 via Conventional from 54141 -> 54140", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54141, + "TargetID": 54140, + "Directional": true + }] + }, { + "ID": 13948, + "SourceStructureID": 39909, + "TargetStructureID": 606, + "Label": "39909-606 via Conventional from 39910 -> 39908, 54162 -> 54163", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39910, + "TargetID": 39908, + "Directional": true + }, { + "SourceID": 54162, + "TargetID": 54163, + "Directional": true + }] + }, { + "ID": 13949, + "SourceStructureID": 39915, + "TargetStructureID": 606, + "Label": "39915-606 via Conventional from 44194 -> 39912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44194, + "TargetID": 39912, + "Directional": true + }] + }, { + "ID": 13950, + "SourceStructureID": 39917, + "TargetStructureID": 606, + "Label": "39917-606 via Conventional from 39919 -> 39916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39919, + "TargetID": 39916, + "Directional": true + }] + }, { + "ID": 13951, + "SourceStructureID": 39922, + "TargetStructureID": 606, + "Label": "39922-606 via Conventional from 51622 -> 51623", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 51622, + "TargetID": 51623, + "Directional": true + }] + }, { + "ID": 13952, + "SourceStructureID": 39931, + "TargetStructureID": 606, + "Label": "39931-606 via Conventional from 44195 -> 39930, 52047 -> 52046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44195, + "TargetID": 39930, + "Directional": true + }, { + "SourceID": 52047, + "TargetID": 52046, + "Directional": true + }] + }, { + "ID": 13953, + "SourceStructureID": 39939, + "TargetStructureID": 606, + "Label": "39939-606 via Adherens from 52583 -> 52584", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 52583, + "TargetID": 52584, + "Directional": true + }] + }, { + "ID": 13954, + "SourceStructureID": 39939, + "TargetStructureID": 606, + "Label": "39939-606 via Conventional from 44197 -> 39937", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44197, + "TargetID": 39937, + "Directional": true + }] + }, { + "ID": 13955, + "SourceStructureID": 39941, + "TargetStructureID": 606, + "Label": "39941-606 via Conventional from 52621 -> 39940", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52621, + "TargetID": 39940, + "Directional": true + }] + }, { + "ID": 13956, + "SourceStructureID": 39957, + "TargetStructureID": 606, + "Label": "39957-606 via Conventional from 43116 -> 10711, 58552 -> 39960, 58555 -> 44285, 58558 -> 49604", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43116, + "TargetID": 10711, + "Directional": true + }, { + "SourceID": 58552, + "TargetID": 39960, + "Directional": true + }, { + "SourceID": 58555, + "TargetID": 44285, + "Directional": true + }, { + "SourceID": 58558, + "TargetID": 49604, + "Directional": true + }] + }, { + "ID": 13957, + "SourceStructureID": 39957, + "TargetStructureID": 6117, + "Label": "39957-6117 via Conventional from 58437 -> 6966, 58553 -> 20564, 86429 -> 86430, 116719 -> 30909", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58437, + "TargetID": 6966, + "Directional": true + }, { + "SourceID": 58553, + "TargetID": 20564, + "Directional": true + }, { + "SourceID": 86429, + "TargetID": 86430, + "Directional": true + }, { + "SourceID": 116719, + "TargetID": 30909, + "Directional": true + }] + }, { + "ID": 13958, + "SourceStructureID": 39957, + "TargetStructureID": 7594, + "Label": "39957-7594 via Conventional from 58557 -> 7627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58557, + "TargetID": 7627, + "Directional": true + }] + }, { + "ID": 13959, + "SourceStructureID": 39957, + "TargetStructureID": 32258, + "Label": "39957-32258 via Conventional from 58459 -> 58458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58459, + "TargetID": 58458, + "Directional": true + }] + }, { + "ID": 13960, + "SourceStructureID": 39957, + "TargetStructureID": 39862, + "Label": "39957-39862 via Conventional from 58547 -> 52307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58547, + "TargetID": 52307, + "Directional": true + }] + }, { + "ID": 13961, + "SourceStructureID": 39963, + "TargetStructureID": 606, + "Label": "39963-606 via Conventional from 52171 -> 39961", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52171, + "TargetID": 39961, + "Directional": true + }] + }, { + "ID": 13962, + "SourceStructureID": 39963, + "TargetStructureID": 6117, + "Label": "39963-6117 via Conventional from 86264 -> 86265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86264, + "TargetID": 86265, + "Directional": true + }] + }, { + "ID": 13963, + "SourceStructureID": 39982, + "TargetStructureID": 5520, + "Label": "39982-5520 via Conventional from 39985 -> 40134", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39985, + "TargetID": 40134, + "Directional": true + }] + }, { + "ID": 13964, + "SourceStructureID": 39982, + "TargetStructureID": 5923, + "Label": "39982-5923 via Conventional from 39983 -> 39984", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39983, + "TargetID": 39984, + "Directional": true + }] + }, { + "ID": 13965, + "SourceStructureID": 39998, + "TargetStructureID": 342, + "Label": "39998-342 via Conventional from 39999 -> 31715", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 39999, + "TargetID": 31715, + "Directional": true + }] + }, { + "ID": 13966, + "SourceStructureID": 40010, + "TargetStructureID": 60798, + "Label": "40010-60798 via Conventional from 40012 -> 60799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40012, + "TargetID": 60799, + "Directional": true + }] + }, { + "ID": 13967, + "SourceStructureID": 40018, + "TargetStructureID": 5517, + "Label": "40018-5517 via Conventional from 40019 -> 25104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40019, + "TargetID": 25104, + "Directional": true + }] + }, { + "ID": 13968, + "SourceStructureID": 40018, + "TargetStructureID": 10872, + "Label": "40018-10872 via Conventional from 40029 -> 10880", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40029, + "TargetID": 10880, + "Directional": true + }] + }, { + "ID": 13969, + "SourceStructureID": 40018, + "TargetStructureID": 20136, + "Label": "40018-20136 via Conventional from 110223 -> 110224", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110223, + "TargetID": 110224, + "Directional": true + }] + }, { + "ID": 13970, + "SourceStructureID": 40033, + "TargetStructureID": 606, + "Label": "40033-606 via Conventional from 44190 -> 51255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44190, + "TargetID": 51255, + "Directional": true + }] + }, { + "ID": 13971, + "SourceStructureID": 40035, + "TargetStructureID": 606, + "Label": "40035-606 via Conventional from 52175 -> 39498", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52175, + "TargetID": 39498, + "Directional": true + }] + }, { + "ID": 13972, + "SourceStructureID": 40037, + "TargetStructureID": 606, + "Label": "40037-606 via Conventional from 52176 -> 10057, 52177 -> 52178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52176, + "TargetID": 10057, + "Directional": true + }, { + "SourceID": 52177, + "TargetID": 52178, + "Directional": true + }] + }, { + "ID": 13973, + "SourceStructureID": 40039, + "TargetStructureID": 142, + "Label": "40039-142 via Conventional from 82523 -> 49763", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82523, + "TargetID": 49763, + "Directional": true + }] + }, { + "ID": 13974, + "SourceStructureID": 40039, + "TargetStructureID": 168, + "Label": "40039-168 via Conventional from 82603 -> 82607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82603, + "TargetID": 82607, + "Directional": true + }] + }, { + "ID": 13975, + "SourceStructureID": 40039, + "TargetStructureID": 176, + "Label": "40039-176 via Conventional from 82514 -> 5865", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82514, + "TargetID": 5865, + "Directional": true + }] + }, { + "ID": 13976, + "SourceStructureID": 40039, + "TargetStructureID": 606, + "Label": "40039-606 via Conventional from 44192 -> 39504", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44192, + "TargetID": 39504, + "Directional": true + }] + }, { + "ID": 13977, + "SourceStructureID": 40039, + "TargetStructureID": 5530, + "Label": "40039-5530 via Adherens from 74967 -> 74968", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 74967, + "TargetID": 74968, + "Directional": true + }] + }, { + "ID": 13978, + "SourceStructureID": 40039, + "TargetStructureID": 5530, + "Label": "40039-5530 via Conventional from 74965 -> 74966, 75790 -> 75791, 80202 -> 42112, 80478 -> 80479, 82381 -> 42130", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74965, + "TargetID": 74966, + "Directional": true + }, { + "SourceID": 75790, + "TargetID": 75791, + "Directional": true + }, { + "SourceID": 80202, + "TargetID": 42112, + "Directional": true + }, { + "SourceID": 80478, + "TargetID": 80479, + "Directional": true + }, { + "SourceID": 82381, + "TargetID": 42130, + "Directional": true + }] + }, { + "ID": 13979, + "SourceStructureID": 40039, + "TargetStructureID": 6117, + "Label": "40039-6117 via Conventional from 82515 -> 30904, 82516 -> 82517, 82518 -> 82519, 82698 -> 82699", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82515, + "TargetID": 30904, + "Directional": true + }, { + "SourceID": 82516, + "TargetID": 82517, + "Directional": true + }, { + "SourceID": 82518, + "TargetID": 82519, + "Directional": true + }, { + "SourceID": 82698, + "TargetID": 82699, + "Directional": true + }] + }, { + "ID": 13980, + "SourceStructureID": 40039, + "TargetStructureID": 80210, + "Label": "40039-80210 via Conventional from 82544 -> 82545", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82544, + "TargetID": 82545, + "Directional": true + }] + }, { + "ID": 13981, + "SourceStructureID": 40039, + "TargetStructureID": 80483, + "Label": "40039-80483 via Unknown from 82646 -> 82647", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 82646, + "TargetID": 82647, + "Directional": true + }] + }, { + "ID": 13982, + "SourceStructureID": 40039, + "TargetStructureID": 80569, + "Label": "40039-80569 via Conventional from 82512 -> 82513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82512, + "TargetID": 82513, + "Directional": true + }] + }, { + "ID": 13983, + "SourceStructureID": 40039, + "TargetStructureID": 82541, + "Label": "40039-82541 via Conventional from 82538 -> 82542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82538, + "TargetID": 82542, + "Directional": true + }] + }, { + "ID": 13984, + "SourceStructureID": 40039, + "TargetStructureID": 82609, + "Label": "40039-82609 via Conventional from 82612 -> 84364", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82612, + "TargetID": 84364, + "Directional": true + }] + }, { + "ID": 13985, + "SourceStructureID": 40039, + "TargetStructureID": 82667, + "Label": "40039-82667 via Conventional from 82670 -> 82671", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82670, + "TargetID": 82671, + "Directional": true + }] + }, { + "ID": 13986, + "SourceStructureID": 40039, + "TargetStructureID": 82690, + "Label": "40039-82690 via Conventional from 68797 -> 82691", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68797, + "TargetID": 82691, + "Directional": true + }] + }, { + "ID": 13987, + "SourceStructureID": 40041, + "TargetStructureID": 606, + "Label": "40041-606 via Conventional from 44193 -> 39505", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44193, + "TargetID": 39505, + "Directional": true + }] + }, { + "ID": 13988, + "SourceStructureID": 40044, + "TargetStructureID": 176, + "Label": "40044-176 via Conventional from 40047 -> 114816, 40048 -> 82539", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40047, + "TargetID": 114816, + "Directional": true + }, { + "SourceID": 40048, + "TargetID": 82539, + "Directional": true + }] + }, { + "ID": 13989, + "SourceStructureID": 40044, + "TargetStructureID": 606, + "Label": "40044-606 via Conventional from 47784 -> 40042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47784, + "TargetID": 40042, + "Directional": true + }] + }, { + "ID": 13990, + "SourceStructureID": 40044, + "TargetStructureID": 5530, + "Label": "40044-5530 via Conventional from 40049 -> 80414", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40049, + "TargetID": 80414, + "Directional": true + }] + }, { + "ID": 13991, + "SourceStructureID": 40051, + "TargetStructureID": 606, + "Label": "40051-606 via Conventional from 52180 -> 10196", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52180, + "TargetID": 10196, + "Directional": true + }] + }, { + "ID": 13992, + "SourceStructureID": 40053, + "TargetStructureID": 606, + "Label": "40053-606 via Conventional from 44191 -> 10197", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44191, + "TargetID": 10197, + "Directional": true + }] + }, { + "ID": 13993, + "SourceStructureID": 40057, + "TargetStructureID": 606, + "Label": "40057-606 via Conventional from 43113 -> 10199", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43113, + "TargetID": 10199, + "Directional": true + }] + }, { + "ID": 13994, + "SourceStructureID": 40059, + "TargetStructureID": 606, + "Label": "40059-606 via Conventional from 43112 -> 10198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43112, + "TargetID": 10198, + "Directional": true + }] + }, { + "ID": 13995, + "SourceStructureID": 40439, + "TargetStructureID": 170, + "Label": "40439-170 via Conventional from 88372 -> 1198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88372, + "TargetID": 1198, + "Directional": true + }] + }, { + "ID": 13996, + "SourceStructureID": 40469, + "TargetStructureID": 92880, + "Label": "40469-92880 via Conventional from 92886 -> 92885, 92887 -> 92883", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92886, + "TargetID": 92885, + "Directional": true + }, { + "SourceID": 92887, + "TargetID": 92883, + "Directional": true + }] + }, { + "ID": 13997, + "SourceStructureID": 40598, + "TargetStructureID": 181, + "Label": "40598-181 via Conventional from 40601 -> 40600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40601, + "TargetID": 40600, + "Directional": true + }] + }, { + "ID": 13998, + "SourceStructureID": 40602, + "TargetStructureID": 40604, + "Label": "40602-40604 via Conventional from 40611 -> 40610", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40611, + "TargetID": 40610, + "Directional": true + }] + }, { + "ID": 13999, + "SourceStructureID": 40602, + "TargetStructureID": 86438, + "Label": "40602-86438 via Conventional from 86437 -> 86441", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86437, + "TargetID": 86441, + "Directional": true + }] + }, { + "ID": 14000, + "SourceStructureID": 40606, + "TargetStructureID": 40602, + "Label": "40606-40602 via Conventional from 40608 -> 40607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40608, + "TargetID": 40607, + "Directional": true + }] + }, { + "ID": 14001, + "SourceStructureID": 40612, + "TargetStructureID": 428, + "Label": "40612-428 via Conventional from 40614 -> 40613", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40614, + "TargetID": 40613, + "Directional": true + }] + }, { + "ID": 14002, + "SourceStructureID": 40616, + "TargetStructureID": 40619, + "Label": "40616-40619 via Ribbon Synapse from 40617 -> 40624", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 40617, + "TargetID": 40624, + "Directional": true + }] + }, { + "ID": 14003, + "SourceStructureID": 40619, + "TargetStructureID": 40616, + "Label": "40619-40616 via Conventional from 40622 -> 40623", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40622, + "TargetID": 40623, + "Directional": true + }] + }, { + "ID": 14004, + "SourceStructureID": 40625, + "TargetStructureID": 40626, + "Label": "40625-40626 via Conventional from 40628 -> 40627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40628, + "TargetID": 40627, + "Directional": true + }] + }, { + "ID": 14005, + "SourceStructureID": 40629, + "TargetStructureID": 40631, + "Label": "40629-40631 via Conventional from 40632 -> 40633", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40632, + "TargetID": 40633, + "Directional": true + }] + }, { + "ID": 14006, + "SourceStructureID": 40635, + "TargetStructureID": 40637, + "Label": "40635-40637 via Conventional from 40636 -> 40638", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40636, + "TargetID": 40638, + "Directional": true + }] + }, { + "ID": 14007, + "SourceStructureID": 40640, + "TargetStructureID": 40639, + "Label": "40640-40639 via Conventional from 40641 -> 40642", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40641, + "TargetID": 40642, + "Directional": true + }] + }, { + "ID": 14008, + "SourceStructureID": 40643, + "TargetStructureID": 40644, + "Label": "40643-40644 via Conventional from 40645 -> 40646", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40645, + "TargetID": 40646, + "Directional": true + }] + }, { + "ID": 14009, + "SourceStructureID": 40844, + "TargetStructureID": 6117, + "Label": "40844-6117 via Conventional from 40845 -> 10530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40845, + "TargetID": 10530, + "Directional": true + }] + }, { + "ID": 14010, + "SourceStructureID": 40851, + "TargetStructureID": 516, + "Label": "40851-516 via Conventional from 40852 -> 40853, 40854 -> 10847, 40855 -> 6573", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40852, + "TargetID": 40853, + "Directional": true + }, { + "SourceID": 40854, + "TargetID": 10847, + "Directional": true + }, { + "SourceID": 40855, + "TargetID": 6573, + "Directional": true + }] + }, { + "ID": 14011, + "SourceStructureID": 40856, + "TargetStructureID": 516, + "Label": "40856-516 via Conventional from 40857 -> 6574", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40857, + "TargetID": 6574, + "Directional": true + }] + }, { + "ID": 14012, + "SourceStructureID": 40858, + "TargetStructureID": 516, + "Label": "40858-516 via Conventional from 40859 -> 40860", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40859, + "TargetID": 40860, + "Directional": true + }] + }, { + "ID": 14013, + "SourceStructureID": 40858, + "TargetStructureID": 3257, + "Label": "40858-3257 via Conventional from 123170 -> 10861", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123170, + "TargetID": 10861, + "Directional": true + }] + }, { + "ID": 14014, + "SourceStructureID": 40858, + "TargetStructureID": 4570, + "Label": "40858-4570 via Conventional from 123171 -> 4800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123171, + "TargetID": 4800, + "Directional": true + }] + }, { + "ID": 14015, + "SourceStructureID": 40858, + "TargetStructureID": 6169, + "Label": "40858-6169 via Conventional from 40861 -> 40862", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40861, + "TargetID": 40862, + "Directional": true + }] + }, { + "ID": 14016, + "SourceStructureID": 40880, + "TargetStructureID": 517, + "Label": "40880-517 via Conventional from 40881 -> 40879", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40881, + "TargetID": 40879, + "Directional": true + }] + }, { + "ID": 14017, + "SourceStructureID": 40884, + "TargetStructureID": 517, + "Label": "40884-517 via Conventional from 40885 -> 40886", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40885, + "TargetID": 40886, + "Directional": true + }] + }, { + "ID": 14018, + "SourceStructureID": 40896, + "TargetStructureID": 517, + "Label": "40896-517 via Conventional from 40897 -> 14163, 40898 -> 40899", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40897, + "TargetID": 14163, + "Directional": true + }, { + "SourceID": 40898, + "TargetID": 40899, + "Directional": true + }] + }, { + "ID": 14019, + "SourceStructureID": 40901, + "TargetStructureID": 517, + "Label": "40901-517 via Conventional from 88838 -> 88839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88838, + "TargetID": 88839, + "Directional": true + }] + }, { + "ID": 14020, + "SourceStructureID": 40903, + "TargetStructureID": 517, + "Label": "40903-517 via Conventional from 40904 -> 40905, 40915 -> 10828", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40904, + "TargetID": 40905, + "Directional": true + }, { + "SourceID": 40915, + "TargetID": 10828, + "Directional": true + }] + }, { + "ID": 14021, + "SourceStructureID": 40909, + "TargetStructureID": 517, + "Label": "40909-517 via Conventional from 40910 -> 40908", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40910, + "TargetID": 40908, + "Directional": true + }] + }, { + "ID": 14022, + "SourceStructureID": 40911, + "TargetStructureID": 517, + "Label": "40911-517 via Conventional from 40912 -> 40913, 40914 -> 10827, 40916 -> 22541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40912, + "TargetID": 40913, + "Directional": true + }, { + "SourceID": 40914, + "TargetID": 10827, + "Directional": true + }, { + "SourceID": 40916, + "TargetID": 22541, + "Directional": true + }] + }, { + "ID": 14023, + "SourceStructureID": 40917, + "TargetStructureID": 517, + "Label": "40917-517 via Conventional from 40918 -> 16412", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40918, + "TargetID": 16412, + "Directional": true + }] + }, { + "ID": 14024, + "SourceStructureID": 40919, + "TargetStructureID": 517, + "Label": "40919-517 via Conventional from 40920 -> 40921, 40924 -> 40923, 40925 -> 40926, 60501 -> 60500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40920, + "TargetID": 40921, + "Directional": true + }, { + "SourceID": 40924, + "TargetID": 40923, + "Directional": true + }, { + "SourceID": 40925, + "TargetID": 40926, + "Directional": true + }, { + "SourceID": 60501, + "TargetID": 60500, + "Directional": true + }] + }, { + "ID": 14025, + "SourceStructureID": 40919, + "TargetStructureID": 6618, + "Label": "40919-6618 via Conventional from 60508 -> 18902, 60509 -> 18903, 60510 -> 60512, 60511 -> 60513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60508, + "TargetID": 18902, + "Directional": true + }, { + "SourceID": 60509, + "TargetID": 18903, + "Directional": true + }, { + "SourceID": 60510, + "TargetID": 60512, + "Directional": true + }, { + "SourceID": 60511, + "TargetID": 60513, + "Directional": true + }] + }, { + "ID": 14026, + "SourceStructureID": 40927, + "TargetStructureID": 517, + "Label": "40927-517 via Conventional from 40928 -> 16424, 64460 -> 64459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40928, + "TargetID": 16424, + "Directional": true + }, { + "SourceID": 64460, + "TargetID": 64459, + "Directional": true + }] + }, { + "ID": 14027, + "SourceStructureID": 40931, + "TargetStructureID": 517, + "Label": "40931-517 via Conventional from 40932 -> 40933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40932, + "TargetID": 40933, + "Directional": true + }] + }, { + "ID": 14028, + "SourceStructureID": 40934, + "TargetStructureID": 517, + "Label": "40934-517 via Conventional from 40935 -> 14944, 60528 -> 60527", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40935, + "TargetID": 14944, + "Directional": true + }, { + "SourceID": 60528, + "TargetID": 60527, + "Directional": true + }] + }, { + "ID": 14029, + "SourceStructureID": 40947, + "TargetStructureID": 517, + "Label": "40947-517 via Conventional from 40948 -> 40949", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40948, + "TargetID": 40949, + "Directional": true + }] + }, { + "ID": 14030, + "SourceStructureID": 40951, + "TargetStructureID": 517, + "Label": "40951-517 via Conventional from 40952 -> 40953, 40954 -> 40955, 51423 -> 51424, 60529 -> 60530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40952, + "TargetID": 40953, + "Directional": true + }, { + "SourceID": 40954, + "TargetID": 40955, + "Directional": true + }, { + "SourceID": 51423, + "TargetID": 51424, + "Directional": true + }, { + "SourceID": 60529, + "TargetID": 60530, + "Directional": true + }] + }, { + "ID": 14031, + "SourceStructureID": 40956, + "TargetStructureID": 517, + "Label": "40956-517 via Conventional from 40957 -> 40958, 88847 -> 88848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40957, + "TargetID": 40958, + "Directional": true + }, { + "SourceID": 88847, + "TargetID": 88848, + "Directional": true + }] + }, { + "ID": 14032, + "SourceStructureID": 40960, + "TargetStructureID": 516, + "Label": "40960-516 via Conventional from 51438 -> 51439", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 51438, + "TargetID": 51439, + "Directional": true + }] + }, { + "ID": 14033, + "SourceStructureID": 40960, + "TargetStructureID": 517, + "Label": "40960-517 via Conventional from 40961 -> 40962", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40961, + "TargetID": 40962, + "Directional": true + }] + }, { + "ID": 14034, + "SourceStructureID": 40960, + "TargetStructureID": 10943, + "Label": "40960-10943 via Conventional from 40963 -> 40964", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40963, + "TargetID": 40964, + "Directional": true + }] + }, { + "ID": 14035, + "SourceStructureID": 40965, + "TargetStructureID": 410, + "Label": "40965-410 via Conventional from 91165 -> 16797", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91165, + "TargetID": 16797, + "Directional": true + }] + }, { + "ID": 14036, + "SourceStructureID": 40965, + "TargetStructureID": 476, + "Label": "40965-476 via Conventional from 91155 -> 16509", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91155, + "TargetID": 16509, + "Directional": true + }] + }, { + "ID": 14037, + "SourceStructureID": 40965, + "TargetStructureID": 517, + "Label": "40965-517 via Conventional from 40966 -> 40967, 40969 -> 40970, 88845 -> 88846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40966, + "TargetID": 40967, + "Directional": true + }, { + "SourceID": 40969, + "TargetID": 40970, + "Directional": true + }, { + "SourceID": 88845, + "TargetID": 88846, + "Directional": true + }] + }, { + "ID": 14038, + "SourceStructureID": 40973, + "TargetStructureID": 517, + "Label": "40973-517 via Conventional from 40974 -> 40975", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40974, + "TargetID": 40975, + "Directional": true + }] + }, { + "ID": 14039, + "SourceStructureID": 40973, + "TargetStructureID": 3679, + "Label": "40973-3679 via Conventional from 41057 -> 14920", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41057, + "TargetID": 14920, + "Directional": true + }] + }, { + "ID": 14040, + "SourceStructureID": 40988, + "TargetStructureID": 517, + "Label": "40988-517 via Conventional from 40989 -> 40990", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40989, + "TargetID": 40990, + "Directional": true + }] + }, { + "ID": 14041, + "SourceStructureID": 40991, + "TargetStructureID": 517, + "Label": "40991-517 via Conventional from 40992 -> 40993", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40992, + "TargetID": 40993, + "Directional": true + }] + }, { + "ID": 14042, + "SourceStructureID": 40991, + "TargetStructureID": 593, + "Label": "40991-593 via Conventional from 41001 -> 66033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41001, + "TargetID": 66033, + "Directional": true + }] + }, { + "ID": 14043, + "SourceStructureID": 40991, + "TargetStructureID": 6117, + "Label": "40991-6117 via Conventional from 40998 -> 40999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 40998, + "TargetID": 40999, + "Directional": true + }] + }, { + "ID": 14044, + "SourceStructureID": 41003, + "TargetStructureID": 517, + "Label": "41003-517 via Conventional from 41004 -> 14949", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41004, + "TargetID": 14949, + "Directional": true + }] + }, { + "ID": 14045, + "SourceStructureID": 41003, + "TargetStructureID": 1637, + "Label": "41003-1637 via Conventional from 41007 -> 1659", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41007, + "TargetID": 1659, + "Directional": true + }] + }, { + "ID": 14046, + "SourceStructureID": 41003, + "TargetStructureID": 1724, + "Label": "41003-1724 via Conventional from 41006 -> 100284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41006, + "TargetID": 100284, + "Directional": true + }] + }, { + "ID": 14047, + "SourceStructureID": 41009, + "TargetStructureID": 517, + "Label": "41009-517 via Conventional from 41010 -> 41011", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41010, + "TargetID": 41011, + "Directional": true + }] + }, { + "ID": 14048, + "SourceStructureID": 41031, + "TargetStructureID": 517, + "Label": "41031-517 via Conventional from 41032 -> 41050, 41033 -> 41029, 41051 -> 41050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41032, + "TargetID": 41050, + "Directional": true + }, { + "SourceID": 41033, + "TargetID": 41029, + "Directional": true + }, { + "SourceID": 41051, + "TargetID": 41050, + "Directional": true + }] + }, { + "ID": 14049, + "SourceStructureID": 41039, + "TargetStructureID": 517, + "Label": "41039-517 via Conventional from 88849 -> 41047, 88850 -> 41040, 88852 -> 88851, 116700 -> 41045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88849, + "TargetID": 41047, + "Directional": true + }, { + "SourceID": 88850, + "TargetID": 41040, + "Directional": true + }, { + "SourceID": 88852, + "TargetID": 88851, + "Directional": true + }, { + "SourceID": 116700, + "TargetID": 41045, + "Directional": true + }] + }, { + "ID": 14050, + "SourceStructureID": 41042, + "TargetStructureID": 469, + "Label": "41042-469 via Conventional from 91472 -> 15070, 91475 -> 4659, 91477 -> 4661, 91478 -> 4661", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91472, + "TargetID": 15070, + "Directional": true + }, { + "SourceID": 91475, + "TargetID": 4659, + "Directional": true + }, { + "SourceID": 91477, + "TargetID": 4661, + "Directional": true + }, { + "SourceID": 91478, + "TargetID": 4661, + "Directional": true + }] + }, { + "ID": 14051, + "SourceStructureID": 41042, + "TargetStructureID": 517, + "Label": "41042-517 via Conventional from 41043 -> 41041, 41056 -> 41054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41043, + "TargetID": 41041, + "Directional": true + }, { + "SourceID": 41056, + "TargetID": 41054, + "Directional": true + }] + }, { + "ID": 14052, + "SourceStructureID": 41058, + "TargetStructureID": 514, + "Label": "41058-514 via Conventional from 41061 -> 41062", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41061, + "TargetID": 41062, + "Directional": true + }] + }, { + "ID": 14053, + "SourceStructureID": 41058, + "TargetStructureID": 3679, + "Label": "41058-3679 via Conventional from 41059 -> 41060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41059, + "TargetID": 41060, + "Directional": true + }] + }, { + "ID": 14054, + "SourceStructureID": 41058, + "TargetStructureID": 12897, + "Label": "41058-12897 via Conventional from 41063 -> 41064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41063, + "TargetID": 41064, + "Directional": true + }] + }, { + "ID": 14055, + "SourceStructureID": 41126, + "TargetStructureID": 483, + "Label": "41126-483 via Conventional from 41127 -> 6848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41127, + "TargetID": 6848, + "Directional": true + }] + }, { + "ID": 14056, + "SourceStructureID": 41159, + "TargetStructureID": 41159, + "Label": "41159-41159 via Adherens from 41880 -> 41881", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 41880, + "TargetID": 41881, + "Directional": true + }] + }, { + "ID": 14057, + "SourceStructureID": 41159, + "TargetStructureID": 42586, + "Label": "41159-42586 via Ribbon Synapse from 41936 -> 42708", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 41936, + "TargetID": 42708, + "Directional": true + }] + }, { + "ID": 14058, + "SourceStructureID": 41587, + "TargetStructureID": 41583, + "Label": "41587-41583 via Conventional from 43151 -> 43152", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43151, + "TargetID": 43152, + "Directional": true + }] + }, { + "ID": 14059, + "SourceStructureID": 41587, + "TargetStructureID": 90715, + "Label": "41587-90715 via Conventional from 41595 -> 91313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41595, + "TargetID": 91313, + "Directional": true + }] + }, { + "ID": 14060, + "SourceStructureID": 41608, + "TargetStructureID": 6115, + "Label": "41608-6115 via Conventional from 41751 -> 73946, 73254 -> 73255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41751, + "TargetID": 73946, + "Directional": true + }, { + "SourceID": 73254, + "TargetID": 73255, + "Directional": true + }] + }, { + "ID": 14061, + "SourceStructureID": 41608, + "TargetStructureID": 8575, + "Label": "41608-8575 via Conventional from 79326 -> 62278", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79326, + "TargetID": 62278, + "Directional": true + }] + }, { + "ID": 14062, + "SourceStructureID": 41608, + "TargetStructureID": 15977, + "Label": "41608-15977 via Conventional from 41757 -> 41758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41757, + "TargetID": 41758, + "Directional": true + }] + }, { + "ID": 14063, + "SourceStructureID": 41608, + "TargetStructureID": 66523, + "Label": "41608-66523 via Conventional from 74915 -> 74914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74915, + "TargetID": 74914, + "Directional": true + }] + }, { + "ID": 14064, + "SourceStructureID": 41608, + "TargetStructureID": 68497, + "Label": "41608-68497 via Conventional from 41612 -> 79323, 41613 -> 79356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41612, + "TargetID": 79323, + "Directional": true + }, { + "SourceID": 41613, + "TargetID": 79356, + "Directional": true + }] + }, { + "ID": 14065, + "SourceStructureID": 41608, + "TargetStructureID": 72287, + "Label": "41608-72287 via Conventional from 41696 -> 72290", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41696, + "TargetID": 72290, + "Directional": true + }] + }, { + "ID": 14066, + "SourceStructureID": 41608, + "TargetStructureID": 72309, + "Label": "41608-72309 via Conventional from 72315 -> 72316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72315, + "TargetID": 72316, + "Directional": true + }] + }, { + "ID": 14067, + "SourceStructureID": 41608, + "TargetStructureID": 82653, + "Label": "41608-82653 via Conventional from 41694 -> 90720", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41694, + "TargetID": 90720, + "Directional": true + }] + }, { + "ID": 14068, + "SourceStructureID": 41882, + "TargetStructureID": 5640, + "Label": "41882-5640 via Conventional from 41884 -> 41110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 41884, + "TargetID": 41110, + "Directional": true + }] + }, { + "ID": 14069, + "SourceStructureID": 41905, + "TargetStructureID": 41891, + "Label": "41905-41891 via Ribbon Synapse from 41906 -> 41895", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 41906, + "TargetID": 41895, + "Directional": true + }] + }, { + "ID": 14070, + "SourceStructureID": 42001, + "TargetStructureID": 41999, + "Label": "42001-41999 via Conventional from 42002 -> 42000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42002, + "TargetID": 42000, + "Directional": true + }] + }, { + "ID": 14071, + "SourceStructureID": 42094, + "TargetStructureID": 606, + "Label": "42094-606 via Conventional from 42134 -> 42093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42134, + "TargetID": 42093, + "Directional": true + }] + }, { + "ID": 14072, + "SourceStructureID": 42159, + "TargetStructureID": 606, + "Label": "42159-606 via Conventional from 42160 -> 42158", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42160, + "TargetID": 42158, + "Directional": true + }] + }, { + "ID": 14073, + "SourceStructureID": 42404, + "TargetStructureID": 606, + "Label": "42404-606 via Conventional from 116584 -> 42402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116584, + "TargetID": 42402, + "Directional": true + }] + }, { + "ID": 14074, + "SourceStructureID": 42406, + "TargetStructureID": 606, + "Label": "42406-606 via Conventional from 42407 -> 10201", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42407, + "TargetID": 10201, + "Directional": true + }] + }, { + "ID": 14075, + "SourceStructureID": 42416, + "TargetStructureID": 606, + "Label": "42416-606 via Conventional from 42417 -> 10710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42417, + "TargetID": 10710, + "Directional": true + }] + }, { + "ID": 14076, + "SourceStructureID": 42416, + "TargetStructureID": 6117, + "Label": "42416-6117 via Conventional from 51291 -> 83294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 51291, + "TargetID": 83294, + "Directional": true + }] + }, { + "ID": 14077, + "SourceStructureID": 42416, + "TargetStructureID": 16073, + "Label": "42416-16073 via Conventional from 42515 -> 19866", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42515, + "TargetID": 19866, + "Directional": true + }] + }, { + "ID": 14078, + "SourceStructureID": 42423, + "TargetStructureID": 10960, + "Label": "42423-10960 via Conventional from 42424 -> 42425, 42426 -> 42427, 42428 -> 42429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42424, + "TargetID": 42425, + "Directional": true + }, { + "SourceID": 42426, + "TargetID": 42427, + "Directional": true + }, { + "SourceID": 42428, + "TargetID": 42429, + "Directional": true + }] + }, { + "ID": 14079, + "SourceStructureID": 42432, + "TargetStructureID": 10960, + "Label": "42432-10960 via Conventional from 42437 -> 42438, 42439 -> 12475, 42442 -> 42443", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42437, + "TargetID": 42438, + "Directional": true + }, { + "SourceID": 42439, + "TargetID": 12475, + "Directional": true + }, { + "SourceID": 42442, + "TargetID": 42443, + "Directional": true + }] + }, { + "ID": 14080, + "SourceStructureID": 42523, + "TargetStructureID": 41159, + "Label": "42523-41159 via Conventional from 42524 -> 42522", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42524, + "TargetID": 42522, + "Directional": true + }] + }, { + "ID": 14081, + "SourceStructureID": 42527, + "TargetStructureID": 1724, + "Label": "42527-1724 via Conventional from 42529 -> 1782", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42529, + "TargetID": 1782, + "Directional": true + }] + }, { + "ID": 14082, + "SourceStructureID": 42615, + "TargetStructureID": 42586, + "Label": "42615-42586 via Conventional from 42616 -> 42614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42616, + "TargetID": 42614, + "Directional": true + }] + }, { + "ID": 14083, + "SourceStructureID": 42711, + "TargetStructureID": 308, + "Label": "42711-308 via Conventional from 42730 -> 31859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42730, + "TargetID": 31859, + "Directional": true + }] + }, { + "ID": 14084, + "SourceStructureID": 42715, + "TargetStructureID": 606, + "Label": "42715-606 via Conventional from 128562 -> 42713", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128562, + "TargetID": 42713, + "Directional": true + }] + }, { + "ID": 14085, + "SourceStructureID": 42770, + "TargetStructureID": 3928, + "Label": "42770-3928 via Conventional from 42774 -> 42775", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42774, + "TargetID": 42775, + "Directional": true + }] + }, { + "ID": 14086, + "SourceStructureID": 42770, + "TargetStructureID": 5538, + "Label": "42770-5538 via Conventional from 42771 -> 24221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42771, + "TargetID": 24221, + "Directional": true + }] + }, { + "ID": 14087, + "SourceStructureID": 42795, + "TargetStructureID": 4943, + "Label": "42795-4943 via Conventional from 43146 -> 8511", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43146, + "TargetID": 8511, + "Directional": true + }] + }, { + "ID": 14088, + "SourceStructureID": 42795, + "TargetStructureID": 137024, + "Label": "42795-137024 via Conventional from 137036 -> 137038", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137036, + "TargetID": 137038, + "Directional": true + }] + }, { + "ID": 14089, + "SourceStructureID": 42816, + "TargetStructureID": 4943, + "Label": "42816-4943 via Conventional from 42817 -> 4953", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42817, + "TargetID": 4953, + "Directional": true + }] + }, { + "ID": 14090, + "SourceStructureID": 42816, + "TargetStructureID": 5596, + "Label": "42816-5596 via Conventional from 42832 -> 42833, 42834 -> 40583", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42832, + "TargetID": 42833, + "Directional": true + }, { + "SourceID": 42834, + "TargetID": 40583, + "Directional": true + }] + }, { + "ID": 14091, + "SourceStructureID": 42819, + "TargetStructureID": 7114, + "Label": "42819-7114 via Conventional from 42822 -> 42821", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42822, + "TargetID": 42821, + "Directional": true + }] + }, { + "ID": 14092, + "SourceStructureID": 42846, + "TargetStructureID": 4943, + "Label": "42846-4943 via Conventional from 42847 -> 4963", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42847, + "TargetID": 4963, + "Directional": true + }] + }, { + "ID": 14093, + "SourceStructureID": 42846, + "TargetStructureID": 5598, + "Label": "42846-5598 via Conventional from 91504 -> 37914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91504, + "TargetID": 37914, + "Directional": true + }] + }, { + "ID": 14094, + "SourceStructureID": 42846, + "TargetStructureID": 29340, + "Label": "42846-29340 via Conventional from 42853 -> 29370", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42853, + "TargetID": 29370, + "Directional": true + }] + }, { + "ID": 14095, + "SourceStructureID": 42858, + "TargetStructureID": 175, + "Label": "42858-175 via Conventional from 42864 -> 42865", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42864, + "TargetID": 42865, + "Directional": true + }] + }, { + "ID": 14096, + "SourceStructureID": 42858, + "TargetStructureID": 4943, + "Label": "42858-4943 via Conventional from 42859 -> 8508", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42859, + "TargetID": 8508, + "Directional": true + }] + }, { + "ID": 14097, + "SourceStructureID": 42866, + "TargetStructureID": 4943, + "Label": "42866-4943 via Conventional from 42867 -> 4955", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42867, + "TargetID": 4955, + "Directional": true + }] + }, { + "ID": 14098, + "SourceStructureID": 42871, + "TargetStructureID": 4943, + "Label": "42871-4943 via Conventional from 42872 -> 13440", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42872, + "TargetID": 13440, + "Directional": true + }] + }, { + "ID": 14099, + "SourceStructureID": 42873, + "TargetStructureID": 4943, + "Label": "42873-4943 via Conventional from 42874 -> 4952", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42874, + "TargetID": 4952, + "Directional": true + }] + }, { + "ID": 14100, + "SourceStructureID": 42873, + "TargetStructureID": 5596, + "Label": "42873-5596 via Conventional from 42875 -> 122088", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42875, + "TargetID": 122088, + "Directional": true + }] + }, { + "ID": 14101, + "SourceStructureID": 42877, + "TargetStructureID": 4943, + "Label": "42877-4943 via Conventional from 42878 -> 4951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42878, + "TargetID": 4951, + "Directional": true + }] + }, { + "ID": 14102, + "SourceStructureID": 42890, + "TargetStructureID": 4943, + "Label": "42890-4943 via Conventional from 42891 -> 4958", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42891, + "TargetID": 4958, + "Directional": true + }] + }, { + "ID": 14103, + "SourceStructureID": 42890, + "TargetStructureID": 6957, + "Label": "42890-6957 via Conventional from 122050 -> 122051", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122050, + "TargetID": 122051, + "Directional": true + }] + }, { + "ID": 14104, + "SourceStructureID": 42895, + "TargetStructureID": 4943, + "Label": "42895-4943 via Conventional from 42896 -> 4976", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42896, + "TargetID": 4976, + "Directional": true + }] + }, { + "ID": 14105, + "SourceStructureID": 42895, + "TargetStructureID": 42816, + "Label": "42895-42816 via Conventional from 42899 -> 42844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42899, + "TargetID": 42844, + "Directional": true + }] + }, { + "ID": 14106, + "SourceStructureID": 42927, + "TargetStructureID": 4943, + "Label": "42927-4943 via Conventional from 42928 -> 4977", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42928, + "TargetID": 4977, + "Directional": true + }] + }, { + "ID": 14107, + "SourceStructureID": 42948, + "TargetStructureID": 4943, + "Label": "42948-4943 via Conventional from 42949 -> 42947", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42949, + "TargetID": 42947, + "Directional": true + }] + }, { + "ID": 14108, + "SourceStructureID": 42951, + "TargetStructureID": 4943, + "Label": "42951-4943 via Conventional from 42952 -> 42950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42952, + "TargetID": 42950, + "Directional": true + }] + }, { + "ID": 14109, + "SourceStructureID": 42953, + "TargetStructureID": 4943, + "Label": "42953-4943 via Conventional from 42955 -> 42954", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42955, + "TargetID": 42954, + "Directional": true + }] + }, { + "ID": 14110, + "SourceStructureID": 42953, + "TargetStructureID": 20681, + "Label": "42953-20681 via Conventional from 122055 -> 65779", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122055, + "TargetID": 65779, + "Directional": true + }] + }, { + "ID": 14111, + "SourceStructureID": 42957, + "TargetStructureID": 4943, + "Label": "42957-4943 via Conventional from 42958 -> 42956", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42958, + "TargetID": 42956, + "Directional": true + }] + }, { + "ID": 14112, + "SourceStructureID": 42966, + "TargetStructureID": 4943, + "Label": "42966-4943 via Conventional from 42967 -> 42964", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42967, + "TargetID": 42964, + "Directional": true + }] + }, { + "ID": 14113, + "SourceStructureID": 42966, + "TargetStructureID": 122091, + "Label": "42966-122091 via Conventional from 122097 -> 122098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122097, + "TargetID": 122098, + "Directional": true + }] + }, { + "ID": 14114, + "SourceStructureID": 42968, + "TargetStructureID": 4943, + "Label": "42968-4943 via Conventional from 42969 -> 42965", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42969, + "TargetID": 42965, + "Directional": true + }] + }, { + "ID": 14115, + "SourceStructureID": 42971, + "TargetStructureID": 4943, + "Label": "42971-4943 via Conventional from 42972 -> 42970", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42972, + "TargetID": 42970, + "Directional": true + }] + }, { + "ID": 14116, + "SourceStructureID": 42977, + "TargetStructureID": 4943, + "Label": "42977-4943 via Conventional from 42978 -> 42976", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42978, + "TargetID": 42976, + "Directional": true + }] + }, { + "ID": 14117, + "SourceStructureID": 42980, + "TargetStructureID": 4943, + "Label": "42980-4943 via Conventional from 42981 -> 42979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42981, + "TargetID": 42979, + "Directional": true + }] + }, { + "ID": 14118, + "SourceStructureID": 42985, + "TargetStructureID": 4943, + "Label": "42985-4943 via Conventional from 42986 -> 42984", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 42986, + "TargetID": 42984, + "Directional": true + }] + }, { + "ID": 14119, + "SourceStructureID": 43114, + "TargetStructureID": 5281, + "Label": "43114-5281 via Conventional from 43115 -> 36777", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43115, + "TargetID": 36777, + "Directional": true + }] + }, { + "ID": 14120, + "SourceStructureID": 43127, + "TargetStructureID": 5281, + "Label": "43127-5281 via Conventional from 43128 -> 43126", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43128, + "TargetID": 43126, + "Directional": true + }] + }, { + "ID": 14121, + "SourceStructureID": 43130, + "TargetStructureID": 5281, + "Label": "43130-5281 via Conventional from 43131 -> 43129", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43131, + "TargetID": 43129, + "Directional": true + }] + }, { + "ID": 14122, + "SourceStructureID": 43132, + "TargetStructureID": 5281, + "Label": "43132-5281 via Conventional from 43133 -> 36779", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43133, + "TargetID": 36779, + "Directional": true + }] + }, { + "ID": 14123, + "SourceStructureID": 43134, + "TargetStructureID": 5281, + "Label": "43134-5281 via Conventional from 43135 -> 36801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43135, + "TargetID": 36801, + "Directional": true + }] + }, { + "ID": 14124, + "SourceStructureID": 43142, + "TargetStructureID": 4943, + "Label": "43142-4943 via Conventional from 43143 -> 10065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43143, + "TargetID": 10065, + "Directional": true + }] + }, { + "ID": 14125, + "SourceStructureID": 43198, + "TargetStructureID": 4943, + "Label": "43198-4943 via Conventional from 43199 -> 4975", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43199, + "TargetID": 4975, + "Directional": true + }] + }, { + "ID": 14126, + "SourceStructureID": 43201, + "TargetStructureID": 4943, + "Label": "43201-4943 via Conventional from 43202 -> 8536", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43202, + "TargetID": 8536, + "Directional": true + }] + }, { + "ID": 14127, + "SourceStructureID": 43201, + "TargetStructureID": 7346, + "Label": "43201-7346 via Conventional from 122043 -> 122042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122043, + "TargetID": 122042, + "Directional": true + }] + }, { + "ID": 14128, + "SourceStructureID": 43201, + "TargetStructureID": 127972, + "Label": "43201-127972 via Conventional from 127969 -> 127974, 127970 -> 127975", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127969, + "TargetID": 127974, + "Directional": true + }, { + "SourceID": 127970, + "TargetID": 127975, + "Directional": true + }] + }, { + "ID": 14129, + "SourceStructureID": 43203, + "TargetStructureID": 4943, + "Label": "43203-4943 via Conventional from 43204 -> 4974", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43204, + "TargetID": 4974, + "Directional": true + }] + }, { + "ID": 14130, + "SourceStructureID": 43203, + "TargetStructureID": 5634, + "Label": "43203-5634 via Conventional from 122028 -> 122032", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122028, + "TargetID": 122032, + "Directional": true + }] + }, { + "ID": 14131, + "SourceStructureID": 43203, + "TargetStructureID": 6132, + "Label": "43203-6132 via Conventional from 122033 -> 88414, 122034 -> 122037", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122033, + "TargetID": 88414, + "Directional": true + }, { + "SourceID": 122034, + "TargetID": 122037, + "Directional": true + }] + }, { + "ID": 14132, + "SourceStructureID": 43205, + "TargetStructureID": 4943, + "Label": "43205-4943 via Conventional from 43206 -> 4972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43206, + "TargetID": 4972, + "Directional": true + }] + }, { + "ID": 14133, + "SourceStructureID": 43205, + "TargetStructureID": 65768, + "Label": "43205-65768 via Conventional from 65767 -> 65769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65767, + "TargetID": 65769, + "Directional": true + }] + }, { + "ID": 14134, + "SourceStructureID": 43207, + "TargetStructureID": 165, + "Label": "43207-165 via Conventional from 43210 -> 12524, 43227 -> 43228, 60745 -> 60746", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43210, + "TargetID": 12524, + "Directional": true + }, { + "SourceID": 43227, + "TargetID": 43228, + "Directional": true + }, { + "SourceID": 60745, + "TargetID": 60746, + "Directional": true + }] + }, { + "ID": 14135, + "SourceStructureID": 43207, + "TargetStructureID": 175, + "Label": "43207-175 via Conventional from 43231 -> 43232", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43231, + "TargetID": 43232, + "Directional": true + }] + }, { + "ID": 14136, + "SourceStructureID": 43207, + "TargetStructureID": 478, + "Label": "43207-478 via Conventional from 43234 -> 43235", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43234, + "TargetID": 43235, + "Directional": true + }] + }, { + "ID": 14137, + "SourceStructureID": 43207, + "TargetStructureID": 4943, + "Label": "43207-4943 via Conventional from 43208 -> 13438", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43208, + "TargetID": 13438, + "Directional": true + }] + }, { + "ID": 14138, + "SourceStructureID": 43207, + "TargetStructureID": 5457, + "Label": "43207-5457 via Conventional from 43225 -> 103519", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43225, + "TargetID": 103519, + "Directional": true + }] + }, { + "ID": 14139, + "SourceStructureID": 43207, + "TargetStructureID": 6128, + "Label": "43207-6128 via Conventional from 43217 -> 21046, 43219 -> 43218, 43220 -> 33762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43217, + "TargetID": 21046, + "Directional": true + }, { + "SourceID": 43219, + "TargetID": 43218, + "Directional": true + }, { + "SourceID": 43220, + "TargetID": 33762, + "Directional": true + }] + }, { + "ID": 14140, + "SourceStructureID": 43207, + "TargetStructureID": 32359, + "Label": "43207-32359 via Conventional from 43221 -> 41323", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43221, + "TargetID": 41323, + "Directional": true + }] + }, { + "ID": 14141, + "SourceStructureID": 43259, + "TargetStructureID": 4943, + "Label": "43259-4943 via Conventional from 43260 -> 4993", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43260, + "TargetID": 4993, + "Directional": true + }] + }, { + "ID": 14142, + "SourceStructureID": 43261, + "TargetStructureID": 4943, + "Label": "43261-4943 via Conventional from 43263 -> 4965", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43263, + "TargetID": 4965, + "Directional": true + }] + }, { + "ID": 14143, + "SourceStructureID": 43261, + "TargetStructureID": 6046, + "Label": "43261-6046 via Conventional from 122047 -> 122048", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122047, + "TargetID": 122048, + "Directional": true + }] + }, { + "ID": 14144, + "SourceStructureID": 43297, + "TargetStructureID": 42576, + "Label": "43297-42576 via Conventional from 43300 -> 43110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43300, + "TargetID": 43110, + "Directional": true + }] + }, { + "ID": 14145, + "SourceStructureID": 43303, + "TargetStructureID": 42576, + "Label": "43303-42576 via Conventional from 43304 -> 43249", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43304, + "TargetID": 43249, + "Directional": true + }] + }, { + "ID": 14146, + "SourceStructureID": 43327, + "TargetStructureID": 4569, + "Label": "43327-4569 via Conventional from 43328 -> 6297, 43331 -> 52523", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43328, + "TargetID": 6297, + "Directional": true + }, { + "SourceID": 43331, + "TargetID": 52523, + "Directional": true + }] + }, { + "ID": 14147, + "SourceStructureID": 43327, + "TargetStructureID": 137159, + "Label": "43327-137159 via Conventional from 43330 -> 31352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43330, + "TargetID": 31352, + "Directional": true + }] + }, { + "ID": 14148, + "SourceStructureID": 43334, + "TargetStructureID": 4569, + "Label": "43334-4569 via Conventional from 43335 -> 23782", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43335, + "TargetID": 23782, + "Directional": true + }] + }, { + "ID": 14149, + "SourceStructureID": 43404, + "TargetStructureID": 165, + "Label": "43404-165 via Conventional from 43408 -> 43409", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43408, + "TargetID": 43409, + "Directional": true + }] + }, { + "ID": 14150, + "SourceStructureID": 43404, + "TargetStructureID": 181, + "Label": "43404-181 via Conventional from 43411 -> 20482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43411, + "TargetID": 20482, + "Directional": true + }] + }, { + "ID": 14151, + "SourceStructureID": 43404, + "TargetStructureID": 4568, + "Label": "43404-4568 via Conventional from 43407 -> 11518", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43407, + "TargetID": 11518, + "Directional": true + }] + }, { + "ID": 14152, + "SourceStructureID": 43431, + "TargetStructureID": 519, + "Label": "43431-519 via Conventional from 100171 -> 100172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100171, + "TargetID": 100172, + "Directional": true + }] + }, { + "ID": 14153, + "SourceStructureID": 43431, + "TargetStructureID": 593, + "Label": "43431-593 via Conventional from 84268 -> 84267", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84268, + "TargetID": 84267, + "Directional": true + }] + }, { + "ID": 14154, + "SourceStructureID": 43431, + "TargetStructureID": 3679, + "Label": "43431-3679 via Conventional from 43444 -> 4703", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43444, + "TargetID": 4703, + "Directional": true + }] + }, { + "ID": 14155, + "SourceStructureID": 43431, + "TargetStructureID": 8720, + "Label": "43431-8720 via Conventional from 43440 -> 60076", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43440, + "TargetID": 60076, + "Directional": true + }] + }, { + "ID": 14156, + "SourceStructureID": 43431, + "TargetStructureID": 11031, + "Label": "43431-11031 via Conventional from 43432 -> 25448", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43432, + "TargetID": 25448, + "Directional": true + }] + }, { + "ID": 14157, + "SourceStructureID": 43431, + "TargetStructureID": 54744, + "Label": "43431-54744 via Conventional from 43442 -> 54752, 54758 -> 54757, 100164 -> 54759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43442, + "TargetID": 54752, + "Directional": true + }, { + "SourceID": 54758, + "TargetID": 54757, + "Directional": true + }, { + "SourceID": 100164, + "TargetID": 54759, + "Directional": true + }] + }, { + "ID": 14158, + "SourceStructureID": 43445, + "TargetStructureID": 25440, + "Label": "43445-25440 via Conventional from 43446 -> 25458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43446, + "TargetID": 25458, + "Directional": true + }] + }, { + "ID": 14159, + "SourceStructureID": 43482, + "TargetStructureID": 6857, + "Label": "43482-6857 via Conventional from 43483 -> 6878", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43483, + "TargetID": 6878, + "Directional": true + }] + }, { + "ID": 14160, + "SourceStructureID": 43507, + "TargetStructureID": 6997, + "Label": "43507-6997 via Conventional from 43511 -> 22176", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43511, + "TargetID": 22176, + "Directional": true + }] + }, { + "ID": 14161, + "SourceStructureID": 43507, + "TargetStructureID": 8575, + "Label": "43507-8575 via Conventional from 43508 -> 43277, 62146 -> 62145", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43508, + "TargetID": 43277, + "Directional": true + }, { + "SourceID": 62146, + "TargetID": 62145, + "Directional": true + }] + }, { + "ID": 14162, + "SourceStructureID": 43507, + "TargetStructureID": 11401, + "Label": "43507-11401 via Conventional from 43509 -> 43510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43509, + "TargetID": 43510, + "Directional": true + }] + }, { + "ID": 14163, + "SourceStructureID": 43507, + "TargetStructureID": 88199, + "Label": "43507-88199 via Conventional from 43515 -> 88202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43515, + "TargetID": 88202, + "Directional": true + }] + }, { + "ID": 14164, + "SourceStructureID": 43507, + "TargetStructureID": 136786, + "Label": "43507-136786 via Conventional from 136805 -> 136804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136805, + "TargetID": 136804, + "Directional": true + }] + }, { + "ID": 14165, + "SourceStructureID": 43601, + "TargetStructureID": 179, + "Label": "43601-179 via Conventional from 43602 -> 25312", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43602, + "TargetID": 25312, + "Directional": true + }] + }, { + "ID": 14166, + "SourceStructureID": 43700, + "TargetStructureID": 5107, + "Label": "43700-5107 via Ribbon Synapse from 43702 -> 43701", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 43702, + "TargetID": 43701, + "Directional": true + }] + }, { + "ID": 14167, + "SourceStructureID": 43712, + "TargetStructureID": 5107, + "Label": "43712-5107 via Conventional from 43713 -> 43676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43713, + "TargetID": 43676, + "Directional": true + }] + }, { + "ID": 14168, + "SourceStructureID": 43747, + "TargetStructureID": 308, + "Label": "43747-308 via Conventional from 43751 -> 43748", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43751, + "TargetID": 43748, + "Directional": true + }] + }, { + "ID": 14169, + "SourceStructureID": 43770, + "TargetStructureID": 46074, + "Label": "43770-46074 via Conventional from 43779 -> 46086", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 43779, + "TargetID": 46086, + "Directional": true + }] + }, { + "ID": 14170, + "SourceStructureID": 44205, + "TargetStructureID": 606, + "Label": "44205-606 via Conventional from 44206 -> 44204", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44206, + "TargetID": 44204, + "Directional": true + }] + }, { + "ID": 14171, + "SourceStructureID": 44212, + "TargetStructureID": 606, + "Label": "44212-606 via Conventional from 44213 -> 44211", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44213, + "TargetID": 44211, + "Directional": true + }] + }, { + "ID": 14172, + "SourceStructureID": 44222, + "TargetStructureID": 44229, + "Label": "44222-44229 via Conventional from 44227 -> 44231", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44227, + "TargetID": 44231, + "Directional": true + }] + }, { + "ID": 14173, + "SourceStructureID": 44229, + "TargetStructureID": 606, + "Label": "44229-606 via Conventional from 44230 -> 44228", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44230, + "TargetID": 44228, + "Directional": true + }] + }, { + "ID": 14174, + "SourceStructureID": 44237, + "TargetStructureID": 606, + "Label": "44237-606 via Conventional from 44239 -> 44236", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44239, + "TargetID": 44236, + "Directional": true + }] + }, { + "ID": 14175, + "SourceStructureID": 44237, + "TargetStructureID": 5530, + "Label": "44237-5530 via Conventional from 44238 -> 23846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44238, + "TargetID": 23846, + "Directional": true + }] + }, { + "ID": 14176, + "SourceStructureID": 44241, + "TargetStructureID": 606, + "Label": "44241-606 via Conventional from 44242 -> 44240", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44242, + "TargetID": 44240, + "Directional": true + }] + }, { + "ID": 14177, + "SourceStructureID": 44256, + "TargetStructureID": 606, + "Label": "44256-606 via Ribbon Synapse from 44257 -> 5087, 44265 -> 5088, 44266 -> 5095, 53832 -> 5094", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44257, + "TargetID": 5087, + "Directional": true + }, { + "SourceID": 44265, + "TargetID": 5088, + "Directional": true + }, { + "SourceID": 44266, + "TargetID": 5095, + "Directional": true + }, { + "SourceID": 53832, + "TargetID": 5094, + "Directional": true + }] + }, { + "ID": 14178, + "SourceStructureID": 44256, + "TargetStructureID": 88646, + "Label": "44256-88646 via Ribbon Synapse from 88656 -> 88654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88656, + "TargetID": 88654, + "Directional": true + }] + }, { + "ID": 14179, + "SourceStructureID": 44338, + "TargetStructureID": 606, + "Label": "44338-606 via Ribbon Synapse from 44339 -> 44337", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 44339, + "TargetID": 44337, + "Directional": true + }] + }, { + "ID": 14180, + "SourceStructureID": 44893, + "TargetStructureID": 44895, + "Label": "44893-44895 via Conventional from 44894 -> 44897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44894, + "TargetID": 44897, + "Directional": true + }] + }, { + "ID": 14181, + "SourceStructureID": 44895, + "TargetStructureID": 44346, + "Label": "44895-44346 via Conventional from 44896 -> 44351", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44896, + "TargetID": 44351, + "Directional": true + }] + }, { + "ID": 14182, + "SourceStructureID": 44901, + "TargetStructureID": 44346, + "Label": "44901-44346 via Conventional from 44902 -> 44350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44902, + "TargetID": 44350, + "Directional": true + }] + }, { + "ID": 14183, + "SourceStructureID": 44912, + "TargetStructureID": 44346, + "Label": "44912-44346 via Conventional from 44913 -> 44355, 44920 -> 44356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44913, + "TargetID": 44355, + "Directional": true + }, { + "SourceID": 44920, + "TargetID": 44356, + "Directional": true + }] + }, { + "ID": 14184, + "SourceStructureID": 44965, + "TargetStructureID": 5439, + "Label": "44965-5439 via Conventional from 44999 -> 70650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 44999, + "TargetID": 70650, + "Directional": true + }] + }, { + "ID": 14185, + "SourceStructureID": 45007, + "TargetStructureID": 44346, + "Label": "45007-44346 via Conventional from 45008 -> 44353", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45008, + "TargetID": 44353, + "Directional": true + }] + }, { + "ID": 14186, + "SourceStructureID": 45220, + "TargetStructureID": 16073, + "Label": "45220-16073 via Conventional from 56091 -> 56092", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56091, + "TargetID": 56092, + "Directional": true + }] + }, { + "ID": 14187, + "SourceStructureID": 45220, + "TargetStructureID": 56086, + "Label": "45220-56086 via Conventional from 45226 -> 56090", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45226, + "TargetID": 56090, + "Directional": true + }] + }, { + "ID": 14188, + "SourceStructureID": 45326, + "TargetStructureID": 45336, + "Label": "45326-45336 via Conventional from 45334 -> 45337", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45334, + "TargetID": 45337, + "Directional": true + }] + }, { + "ID": 14189, + "SourceStructureID": 45326, + "TargetStructureID": 56084, + "Label": "45326-56084 via Conventional from 56083 -> 56085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56083, + "TargetID": 56085, + "Directional": true + }] + }, { + "ID": 14190, + "SourceStructureID": 45536, + "TargetStructureID": 9769, + "Label": "45536-9769 via Conventional from 45541 -> 23932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45541, + "TargetID": 23932, + "Directional": true + }] + }, { + "ID": 14191, + "SourceStructureID": 45536, + "TargetStructureID": 68539, + "Label": "45536-68539 via Conventional from 45537 -> 70412", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45537, + "TargetID": 70412, + "Directional": true + }] + }, { + "ID": 14192, + "SourceStructureID": 45551, + "TargetStructureID": 68539, + "Label": "45551-68539 via Conventional from 45553 -> 70276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45553, + "TargetID": 70276, + "Directional": true + }] + }, { + "ID": 14193, + "SourceStructureID": 45555, + "TargetStructureID": 68539, + "Label": "45555-68539 via Conventional from 45556 -> 70279, 45561 -> 70413", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45556, + "TargetID": 70279, + "Directional": true + }, { + "SourceID": 45561, + "TargetID": 70413, + "Directional": true + }] + }, { + "ID": 14194, + "SourceStructureID": 45568, + "TargetStructureID": 68539, + "Label": "45568-68539 via Conventional from 45569 -> 70280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45569, + "TargetID": 70280, + "Directional": true + }] + }, { + "ID": 14195, + "SourceStructureID": 45571, + "TargetStructureID": 68539, + "Label": "45571-68539 via Conventional from 45572 -> 70281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45572, + "TargetID": 70281, + "Directional": true + }] + }, { + "ID": 14196, + "SourceStructureID": 45617, + "TargetStructureID": 606, + "Label": "45617-606 via Conventional from 52136 -> 52135", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52136, + "TargetID": 52135, + "Directional": true + }] + }, { + "ID": 14197, + "SourceStructureID": 45617, + "TargetStructureID": 31024, + "Label": "45617-31024 via Conventional from 45619 -> 31099", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45619, + "TargetID": 31099, + "Directional": true + }] + }, { + "ID": 14198, + "SourceStructureID": 45617, + "TargetStructureID": 44346, + "Label": "45617-44346 via Conventional from 45626 -> 44381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45626, + "TargetID": 44381, + "Directional": true + }] + }, { + "ID": 14199, + "SourceStructureID": 45629, + "TargetStructureID": 330, + "Label": "45629-330 via Conventional from 45634 -> 25912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45634, + "TargetID": 25912, + "Directional": true + }] + }, { + "ID": 14200, + "SourceStructureID": 45629, + "TargetStructureID": 453, + "Label": "45629-453 via Conventional from 45630 -> 45631, 45632 -> 45633", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45630, + "TargetID": 45631, + "Directional": true + }, { + "SourceID": 45632, + "TargetID": 45633, + "Directional": true + }] + }, { + "ID": 14201, + "SourceStructureID": 45672, + "TargetStructureID": 579, + "Label": "45672-579 via Conventional from 45673 -> 45674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45673, + "TargetID": 45674, + "Directional": true + }] + }, { + "ID": 14202, + "SourceStructureID": 45672, + "TargetStructureID": 5623, + "Label": "45672-5623 via Conventional from 45676 -> 127729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45676, + "TargetID": 127729, + "Directional": true + }] + }, { + "ID": 14203, + "SourceStructureID": 45677, + "TargetStructureID": 5017, + "Label": "45677-5017 via Conventional from 45678 -> 5038", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45678, + "TargetID": 5038, + "Directional": true + }] + }, { + "ID": 14204, + "SourceStructureID": 45677, + "TargetStructureID": 6997, + "Label": "45677-6997 via Conventional from 82945 -> 82946", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82945, + "TargetID": 82946, + "Directional": true + }] + }, { + "ID": 14205, + "SourceStructureID": 45680, + "TargetStructureID": 5017, + "Label": "45680-5017 via Conventional from 45681 -> 45679", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 45681, + "TargetID": 45679, + "Directional": true + }] + }, { + "ID": 14206, + "SourceStructureID": 45731, + "TargetStructureID": 606, + "Label": "45731-606 via Ribbon Synapse from 45739 -> 45689", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45739, + "TargetID": 45689, + "Directional": true + }] + }, { + "ID": 14207, + "SourceStructureID": 45847, + "TargetStructureID": 606, + "Label": "45847-606 via Ribbon Synapse from 45850 -> 45845, 45855 -> 45856", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45850, + "TargetID": 45845, + "Directional": true + }, { + "SourceID": 45855, + "TargetID": 45856, + "Directional": true + }] + }, { + "ID": 14208, + "SourceStructureID": 45894, + "TargetStructureID": 606, + "Label": "45894-606 via Ribbon Synapse from 45900 -> 45891", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 45900, + "TargetID": 45891, + "Directional": true + }] + }, { + "ID": 14209, + "SourceStructureID": 46050, + "TargetStructureID": 308, + "Label": "46050-308 via Conventional from 46051 -> 15045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46051, + "TargetID": 15045, + "Directional": true + }] + }, { + "ID": 14210, + "SourceStructureID": 46052, + "TargetStructureID": 308, + "Label": "46052-308 via Conventional from 46053 -> 15046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46053, + "TargetID": 15046, + "Directional": true + }] + }, { + "ID": 14211, + "SourceStructureID": 46054, + "TargetStructureID": 308, + "Label": "46054-308 via Conventional from 46055 -> 15047", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46055, + "TargetID": 15047, + "Directional": true + }] + }, { + "ID": 14212, + "SourceStructureID": 46054, + "TargetStructureID": 46057, + "Label": "46054-46057 via Conventional from 46056 -> 46058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46056, + "TargetID": 46058, + "Directional": true + }] + }, { + "ID": 14213, + "SourceStructureID": 46059, + "TargetStructureID": 308, + "Label": "46059-308 via Conventional from 46060 -> 15050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46060, + "TargetID": 15050, + "Directional": true + }] + }, { + "ID": 14214, + "SourceStructureID": 46059, + "TargetStructureID": 24303, + "Label": "46059-24303 via Conventional from 107024 -> 122493", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107024, + "TargetID": 122493, + "Directional": true + }] + }, { + "ID": 14215, + "SourceStructureID": 46062, + "TargetStructureID": 15100, + "Label": "46062-15100 via Conventional from 46063 -> 17996, 46065 -> 46064, 46066 -> 46069, 46067 -> 46068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46063, + "TargetID": 17996, + "Directional": true + }, { + "SourceID": 46065, + "TargetID": 46064, + "Directional": true + }, { + "SourceID": 46066, + "TargetID": 46069, + "Directional": true + }, { + "SourceID": 46067, + "TargetID": 46068, + "Directional": true + }] + }, { + "ID": 14216, + "SourceStructureID": 46070, + "TargetStructureID": 308, + "Label": "46070-308 via Conventional from 46071 -> 31862", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46071, + "TargetID": 31862, + "Directional": true + }] + }, { + "ID": 14217, + "SourceStructureID": 46074, + "TargetStructureID": 308, + "Label": "46074-308 via Conventional from 46075 -> 31864", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46075, + "TargetID": 31864, + "Directional": true + }] + }, { + "ID": 14218, + "SourceStructureID": 46074, + "TargetStructureID": 475, + "Label": "46074-475 via Conventional from 46079 -> 46083, 46084 -> 46085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46079, + "TargetID": 46083, + "Directional": true + }, { + "SourceID": 46084, + "TargetID": 46085, + "Directional": true + }] + }, { + "ID": 14219, + "SourceStructureID": 46090, + "TargetStructureID": 308, + "Label": "46090-308 via Conventional from 46091 -> 31865", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46091, + "TargetID": 31865, + "Directional": true + }] + }, { + "ID": 14220, + "SourceStructureID": 46090, + "TargetStructureID": 382, + "Label": "46090-382 via Conventional from 107032 -> 107033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107032, + "TargetID": 107033, + "Directional": true + }] + }, { + "ID": 14221, + "SourceStructureID": 46093, + "TargetStructureID": 308, + "Label": "46093-308 via Conventional from 46094 -> 31866, 46103 -> 31867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46094, + "TargetID": 31866, + "Directional": true + }, { + "SourceID": 46103, + "TargetID": 31867, + "Directional": true + }] + }, { + "ID": 14222, + "SourceStructureID": 46093, + "TargetStructureID": 46098, + "Label": "46093-46098 via Conventional from 46097 -> 46099", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46097, + "TargetID": 46099, + "Directional": true + }] + }, { + "ID": 14223, + "SourceStructureID": 46098, + "TargetStructureID": 46093, + "Label": "46098-46093 via Ribbon Synapse from 46101 -> 46096", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46101, + "TargetID": 46096, + "Directional": true + }] + }, { + "ID": 14224, + "SourceStructureID": 46105, + "TargetStructureID": 606, + "Label": "46105-606 via Ribbon Synapse from 46238 -> 46104", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46238, + "TargetID": 46104, + "Directional": true + }] + }, { + "ID": 14225, + "SourceStructureID": 46107, + "TargetStructureID": 308, + "Label": "46107-308 via Conventional from 46108 -> 31860", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46108, + "TargetID": 31860, + "Directional": true + }] + }, { + "ID": 14226, + "SourceStructureID": 46116, + "TargetStructureID": 308, + "Label": "46116-308 via Conventional from 46117 -> 43385", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46117, + "TargetID": 43385, + "Directional": true + }] + }, { + "ID": 14227, + "SourceStructureID": 46118, + "TargetStructureID": 308, + "Label": "46118-308 via Conventional from 46119 -> 43397", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46119, + "TargetID": 43397, + "Directional": true + }] + }, { + "ID": 14228, + "SourceStructureID": 46121, + "TargetStructureID": 308, + "Label": "46121-308 via Conventional from 46122 -> 43600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46122, + "TargetID": 43600, + "Directional": true + }] + }, { + "ID": 14229, + "SourceStructureID": 46121, + "TargetStructureID": 426, + "Label": "46121-426 via Conventional from 46128 -> 46136", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46128, + "TargetID": 46136, + "Directional": true + }] + }, { + "ID": 14230, + "SourceStructureID": 46121, + "TargetStructureID": 4850, + "Label": "46121-4850 via Conventional from 46170 -> 46178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46170, + "TargetID": 46178, + "Directional": true + }] + }, { + "ID": 14231, + "SourceStructureID": 46121, + "TargetStructureID": 5150, + "Label": "46121-5150 via Conventional from 46124 -> 5180", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46124, + "TargetID": 5180, + "Directional": true + }] + }, { + "ID": 14232, + "SourceStructureID": 46121, + "TargetStructureID": 5639, + "Label": "46121-5639 via Conventional from 46214 -> 46217", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46214, + "TargetID": 46217, + "Directional": true + }] + }, { + "ID": 14233, + "SourceStructureID": 46121, + "TargetStructureID": 7568, + "Label": "46121-7568 via Conventional from 46147 -> 27078", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46147, + "TargetID": 27078, + "Directional": true + }] + }, { + "ID": 14234, + "SourceStructureID": 46121, + "TargetStructureID": 9787, + "Label": "46121-9787 via Conventional from 46150 -> 46151, 46155 -> 46159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46150, + "TargetID": 46151, + "Directional": true + }, { + "SourceID": 46155, + "TargetID": 46159, + "Directional": true + }] + }, { + "ID": 14235, + "SourceStructureID": 46121, + "TargetStructureID": 28950, + "Label": "46121-28950 via Conventional from 46235 -> 46239", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46235, + "TargetID": 46239, + "Directional": true + }] + }, { + "ID": 14236, + "SourceStructureID": 46121, + "TargetStructureID": 29340, + "Label": "46121-29340 via Conventional from 46241 -> 33844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46241, + "TargetID": 33844, + "Directional": true + }] + }, { + "ID": 14237, + "SourceStructureID": 46121, + "TargetStructureID": 46186, + "Label": "46121-46186 via Conventional from 46181 -> 46187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46181, + "TargetID": 46187, + "Directional": true + }] + }, { + "ID": 14238, + "SourceStructureID": 46347, + "TargetStructureID": 5303, + "Label": "46347-5303 via Conventional from 46349 -> 46348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46349, + "TargetID": 46348, + "Directional": true + }] + }, { + "ID": 14239, + "SourceStructureID": 46351, + "TargetStructureID": 992, + "Label": "46351-992 via Conventional from 46353 -> 29421, 46356 -> 46357", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46353, + "TargetID": 29421, + "Directional": true + }, { + "SourceID": 46356, + "TargetID": 46357, + "Directional": true + }] + }, { + "ID": 14240, + "SourceStructureID": 46351, + "TargetStructureID": 5303, + "Label": "46351-5303 via Conventional from 46352 -> 46350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46352, + "TargetID": 46350, + "Directional": true + }] + }, { + "ID": 14241, + "SourceStructureID": 46359, + "TargetStructureID": 172, + "Label": "46359-172 via Conventional from 46363 -> 33349, 46367 -> 46368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46363, + "TargetID": 33349, + "Directional": true + }, { + "SourceID": 46367, + "TargetID": 46368, + "Directional": true + }] + }, { + "ID": 14242, + "SourceStructureID": 46359, + "TargetStructureID": 5303, + "Label": "46359-5303 via Conventional from 46360 -> 6173", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46360, + "TargetID": 6173, + "Directional": true + }] + }, { + "ID": 14243, + "SourceStructureID": 46359, + "TargetStructureID": 46373, + "Label": "46359-46373 via Conventional from 46372 -> 46374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46372, + "TargetID": 46374, + "Directional": true + }] + }, { + "ID": 14244, + "SourceStructureID": 46373, + "TargetStructureID": 46359, + "Label": "46373-46359 via Ribbon Synapse from 46376 -> 46375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46376, + "TargetID": 46375, + "Directional": true + }] + }, { + "ID": 14245, + "SourceStructureID": 46379, + "TargetStructureID": 5303, + "Label": "46379-5303 via Conventional from 46380 -> 30548", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46380, + "TargetID": 30548, + "Directional": true + }] + }, { + "ID": 14246, + "SourceStructureID": 46386, + "TargetStructureID": 5303, + "Label": "46386-5303 via Conventional from 46387 -> 30549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46387, + "TargetID": 30549, + "Directional": true + }] + }, { + "ID": 14247, + "SourceStructureID": 46386, + "TargetStructureID": 46384, + "Label": "46386-46384 via Conventional from 127956 -> 127957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127956, + "TargetID": 127957, + "Directional": true + }] + }, { + "ID": 14248, + "SourceStructureID": 46388, + "TargetStructureID": 606, + "Label": "46388-606 via Ribbon Synapse from 46403 -> 46404, 46603 -> 46606, 46604 -> 46605, 46629 -> 10496", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46403, + "TargetID": 46404, + "Directional": true + }, { + "SourceID": 46603, + "TargetID": 46606, + "Directional": true + }, { + "SourceID": 46604, + "TargetID": 46605, + "Directional": true + }, { + "SourceID": 46629, + "TargetID": 10496, + "Directional": true + }] + }, { + "ID": 14249, + "SourceStructureID": 46388, + "TargetStructureID": 40480, + "Label": "46388-40480 via Ribbon Synapse from 121389 -> 59949", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121389, + "TargetID": 59949, + "Directional": true + }] + }, { + "ID": 14250, + "SourceStructureID": 46388, + "TargetStructureID": 46589, + "Label": "46388-46589 via Ribbon Synapse from 47176 -> 47177, 47179 -> 47181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47176, + "TargetID": 47177, + "Directional": true + }, { + "SourceID": 47179, + "TargetID": 47181, + "Directional": true + }] + }, { + "ID": 14251, + "SourceStructureID": 46388, + "TargetStructureID": 127796, + "Label": "46388-127796 via Ribbon Synapse from 127807 -> 127806", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127807, + "TargetID": 127806, + "Directional": true + }] + }, { + "ID": 14252, + "SourceStructureID": 46389, + "TargetStructureID": 5303, + "Label": "46389-5303 via Conventional from 46390 -> 35617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46390, + "TargetID": 35617, + "Directional": true + }] + }, { + "ID": 14253, + "SourceStructureID": 46389, + "TargetStructureID": 12099, + "Label": "46389-12099 via Conventional from 46394 -> 12103", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46394, + "TargetID": 12103, + "Directional": true + }] + }, { + "ID": 14254, + "SourceStructureID": 46391, + "TargetStructureID": 5303, + "Label": "46391-5303 via Conventional from 46392 -> 35618", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46392, + "TargetID": 35618, + "Directional": true + }] + }, { + "ID": 14255, + "SourceStructureID": 46391, + "TargetStructureID": 35696, + "Label": "46391-35696 via Conventional from 46433 -> 46432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46433, + "TargetID": 46432, + "Directional": true + }] + }, { + "ID": 14256, + "SourceStructureID": 46443, + "TargetStructureID": 5303, + "Label": "46443-5303 via Conventional from 46444 -> 35619", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46444, + "TargetID": 35619, + "Directional": true + }] + }, { + "ID": 14257, + "SourceStructureID": 46443, + "TargetStructureID": 35696, + "Label": "46443-35696 via Conventional from 46445 -> 46446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46445, + "TargetID": 46446, + "Directional": true + }] + }, { + "ID": 14258, + "SourceStructureID": 46449, + "TargetStructureID": 138, + "Label": "46449-138 via Conventional from 46457 -> 46458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46457, + "TargetID": 46458, + "Directional": true + }] + }, { + "ID": 14259, + "SourceStructureID": 46449, + "TargetStructureID": 173, + "Label": "46449-173 via Conventional from 46452 -> 46454, 60792 -> 60791", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46452, + "TargetID": 46454, + "Directional": true + }, { + "SourceID": 60792, + "TargetID": 60791, + "Directional": true + }] + }, { + "ID": 14260, + "SourceStructureID": 46449, + "TargetStructureID": 5303, + "Label": "46449-5303 via Conventional from 46450 -> 35620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46450, + "TargetID": 35620, + "Directional": true + }] + }, { + "ID": 14261, + "SourceStructureID": 46449, + "TargetStructureID": 6136, + "Label": "46449-6136 via Conventional from 60773 -> 12999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60773, + "TargetID": 12999, + "Directional": true + }] + }, { + "ID": 14262, + "SourceStructureID": 46461, + "TargetStructureID": 5303, + "Label": "46461-5303 via Conventional from 46462 -> 35621", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46462, + "TargetID": 35621, + "Directional": true + }] + }, { + "ID": 14263, + "SourceStructureID": 46468, + "TargetStructureID": 5303, + "Label": "46468-5303 via Conventional from 46469 -> 35622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46469, + "TargetID": 35622, + "Directional": true + }] + }, { + "ID": 14264, + "SourceStructureID": 46468, + "TargetStructureID": 7112, + "Label": "46468-7112 via Conventional from 46472 -> 121999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46472, + "TargetID": 121999, + "Directional": true + }] + }, { + "ID": 14265, + "SourceStructureID": 46468, + "TargetStructureID": 102116, + "Label": "46468-102116 via Conventional from 122013 -> 102119", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122013, + "TargetID": 102119, + "Directional": true + }] + }, { + "ID": 14266, + "SourceStructureID": 46498, + "TargetStructureID": 138, + "Label": "46498-138 via Conventional from 127911 -> 2199", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127911, + "TargetID": 2199, + "Directional": true + }] + }, { + "ID": 14267, + "SourceStructureID": 46498, + "TargetStructureID": 992, + "Label": "46498-992 via Conventional from 127912 -> 127913, 127916 -> 127918", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127912, + "TargetID": 127913, + "Directional": true + }, { + "SourceID": 127916, + "TargetID": 127918, + "Directional": true + }] + }, { + "ID": 14268, + "SourceStructureID": 46498, + "TargetStructureID": 5303, + "Label": "46498-5303 via Conventional from 46499 -> 46500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46499, + "TargetID": 46500, + "Directional": true + }] + }, { + "ID": 14269, + "SourceStructureID": 46502, + "TargetStructureID": 181, + "Label": "46502-181 via Conventional from 127924 -> 20485", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127924, + "TargetID": 20485, + "Directional": true + }] + }, { + "ID": 14270, + "SourceStructureID": 46502, + "TargetStructureID": 5303, + "Label": "46502-5303 via Conventional from 46503 -> 46501", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46503, + "TargetID": 46501, + "Directional": true + }] + }, { + "ID": 14271, + "SourceStructureID": 46502, + "TargetStructureID": 127930, + "Label": "46502-127930 via Conventional from 127928 -> 127932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127928, + "TargetID": 127932, + "Directional": true + }] + }, { + "ID": 14272, + "SourceStructureID": 46504, + "TargetStructureID": 5303, + "Label": "46504-5303 via Conventional from 46505 -> 35730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46505, + "TargetID": 35730, + "Directional": true + }] + }, { + "ID": 14273, + "SourceStructureID": 46504, + "TargetStructureID": 46508, + "Label": "46504-46508 via Conventional from 46507 -> 46509", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46507, + "TargetID": 46509, + "Directional": true + }] + }, { + "ID": 14274, + "SourceStructureID": 46504, + "TargetStructureID": 46512, + "Label": "46504-46512 via Conventional from 46510 -> 46513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46510, + "TargetID": 46513, + "Directional": true + }] + }, { + "ID": 14275, + "SourceStructureID": 46512, + "TargetStructureID": 46504, + "Label": "46512-46504 via Ribbon Synapse from 60738 -> 46511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60738, + "TargetID": 46511, + "Directional": true + }] + }, { + "ID": 14276, + "SourceStructureID": 46514, + "TargetStructureID": 5303, + "Label": "46514-5303 via Conventional from 46515 -> 35731", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46515, + "TargetID": 35731, + "Directional": true + }] + }, { + "ID": 14277, + "SourceStructureID": 46514, + "TargetStructureID": 127940, + "Label": "46514-127940 via Conventional from 127937 -> 127942", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127937, + "TargetID": 127942, + "Directional": true + }] + }, { + "ID": 14278, + "SourceStructureID": 46517, + "TargetStructureID": 175, + "Label": "46517-175 via Conventional from 46519 -> 46520", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46519, + "TargetID": 46520, + "Directional": true + }] + }, { + "ID": 14279, + "SourceStructureID": 46517, + "TargetStructureID": 5303, + "Label": "46517-5303 via Conventional from 46518 -> 46516", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46518, + "TargetID": 46516, + "Directional": true + }] + }, { + "ID": 14280, + "SourceStructureID": 46521, + "TargetStructureID": 5303, + "Label": "46521-5303 via Conventional from 46522 -> 35732", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46522, + "TargetID": 35732, + "Directional": true + }] + }, { + "ID": 14281, + "SourceStructureID": 46521, + "TargetStructureID": 46527, + "Label": "46521-46527 via Conventional from 46525 -> 46529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46525, + "TargetID": 46529, + "Directional": true + }] + }, { + "ID": 14282, + "SourceStructureID": 46527, + "TargetStructureID": 46521, + "Label": "46527-46521 via Ribbon Synapse from 46528 -> 46526", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46528, + "TargetID": 46526, + "Directional": true + }] + }, { + "ID": 14283, + "SourceStructureID": 46530, + "TargetStructureID": 5303, + "Label": "46530-5303 via Conventional from 46531 -> 35614, 46535 -> 46536", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46531, + "TargetID": 35614, + "Directional": true + }, { + "SourceID": 46535, + "TargetID": 46536, + "Directional": true + }] + }, { + "ID": 14284, + "SourceStructureID": 46530, + "TargetStructureID": 6048, + "Label": "46530-6048 via Conventional from 46534 -> 127967", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46534, + "TargetID": 127967, + "Directional": true + }] + }, { + "ID": 14285, + "SourceStructureID": 46530, + "TargetStructureID": 29340, + "Label": "46530-29340 via Conventional from 46538 -> 29390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46538, + "TargetID": 29390, + "Directional": true + }] + }, { + "ID": 14286, + "SourceStructureID": 46670, + "TargetStructureID": 591, + "Label": "46670-591 via Conventional from 46671 -> 10280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46671, + "TargetID": 10280, + "Directional": true + }] + }, { + "ID": 14287, + "SourceStructureID": 46679, + "TargetStructureID": 591, + "Label": "46679-591 via Conventional from 46680 -> 10281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46680, + "TargetID": 10281, + "Directional": true + }] + }, { + "ID": 14288, + "SourceStructureID": 46682, + "TargetStructureID": 591, + "Label": "46682-591 via Conventional from 46683 -> 10282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46683, + "TargetID": 10282, + "Directional": true + }] + }, { + "ID": 14289, + "SourceStructureID": 46682, + "TargetStructureID": 20537, + "Label": "46682-20537 via Conventional from 106522 -> 24143", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106522, + "TargetID": 24143, + "Directional": true + }] + }, { + "ID": 14290, + "SourceStructureID": 46682, + "TargetStructureID": 93125, + "Label": "46682-93125 via Conventional from 106515 -> 93142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106515, + "TargetID": 93142, + "Directional": true + }] + }, { + "ID": 14291, + "SourceStructureID": 46693, + "TargetStructureID": 591, + "Label": "46693-591 via Conventional from 46694 -> 10285", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46694, + "TargetID": 10285, + "Directional": true + }] + }, { + "ID": 14292, + "SourceStructureID": 46693, + "TargetStructureID": 106528, + "Label": "46693-106528 via Conventional from 106527 -> 106529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106527, + "TargetID": 106529, + "Directional": true + }] + }, { + "ID": 14293, + "SourceStructureID": 46741, + "TargetStructureID": 6128, + "Label": "46741-6128 via Postsynapse from 137065 -> 137064", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 137065, + "TargetID": 137064, + "Directional": true + }] + }, { + "ID": 14294, + "SourceStructureID": 46797, + "TargetStructureID": 9769, + "Label": "46797-9769 via Conventional from 46799 -> 46795, 46800 -> 46796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46799, + "TargetID": 46795, + "Directional": true + }, { + "SourceID": 46800, + "TargetID": 46796, + "Directional": true + }] + }, { + "ID": 14295, + "SourceStructureID": 46804, + "TargetStructureID": 9769, + "Label": "46804-9769 via Conventional from 46805 -> 46803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46805, + "TargetID": 46803, + "Directional": true + }] + }, { + "ID": 14296, + "SourceStructureID": 46807, + "TargetStructureID": 9769, + "Label": "46807-9769 via Conventional from 46809 -> 46806", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46809, + "TargetID": 46806, + "Directional": true + }] + }, { + "ID": 14297, + "SourceStructureID": 46812, + "TargetStructureID": 9769, + "Label": "46812-9769 via Conventional from 46813 -> 30067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46813, + "TargetID": 30067, + "Directional": true + }] + }, { + "ID": 14298, + "SourceStructureID": 46817, + "TargetStructureID": 9769, + "Label": "46817-9769 via Conventional from 46818 -> 23696, 46960 -> 23697", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46818, + "TargetID": 23696, + "Directional": true + }, { + "SourceID": 46960, + "TargetID": 23697, + "Directional": true + }] + }, { + "ID": 14299, + "SourceStructureID": 46817, + "TargetStructureID": 20728, + "Label": "46817-20728 via Conventional from 46819 -> 46820", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46819, + "TargetID": 46820, + "Directional": true + }] + }, { + "ID": 14300, + "SourceStructureID": 46842, + "TargetStructureID": 9769, + "Label": "46842-9769 via Conventional from 46843 -> 46841", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46843, + "TargetID": 46841, + "Directional": true + }] + }, { + "ID": 14301, + "SourceStructureID": 46923, + "TargetStructureID": 9769, + "Label": "46923-9769 via Conventional from 46924 -> 30066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46924, + "TargetID": 30066, + "Directional": true + }] + }, { + "ID": 14302, + "SourceStructureID": 46931, + "TargetStructureID": 1620, + "Label": "46931-1620 via Conventional from 46932 -> 1624", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46932, + "TargetID": 1624, + "Directional": true + }] + }, { + "ID": 14303, + "SourceStructureID": 46933, + "TargetStructureID": 1620, + "Label": "46933-1620 via Conventional from 46934 -> 1630", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46934, + "TargetID": 1630, + "Directional": true + }] + }, { + "ID": 14304, + "SourceStructureID": 46933, + "TargetStructureID": 69537, + "Label": "46933-69537 via Conventional from 93841 -> 69579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93841, + "TargetID": 69579, + "Directional": true + }] + }, { + "ID": 14305, + "SourceStructureID": 46943, + "TargetStructureID": 46933, + "Label": "46943-46933 via Ribbon Synapse from 46944 -> 46941, 46945 -> 46942", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 46944, + "TargetID": 46941, + "Directional": true + }, { + "SourceID": 46945, + "TargetID": 46942, + "Directional": true + }] + }, { + "ID": 14306, + "SourceStructureID": 46955, + "TargetStructureID": 9769, + "Label": "46955-9769 via Conventional from 46956 -> 23695", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46956, + "TargetID": 23695, + "Directional": true + }] + }, { + "ID": 14307, + "SourceStructureID": 46957, + "TargetStructureID": 9769, + "Label": "46957-9769 via Conventional from 46958 -> 30068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46958, + "TargetID": 30068, + "Directional": true + }] + }, { + "ID": 14308, + "SourceStructureID": 46962, + "TargetStructureID": 9769, + "Label": "46962-9769 via Conventional from 46963 -> 46961", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46963, + "TargetID": 46961, + "Directional": true + }] + }, { + "ID": 14309, + "SourceStructureID": 46975, + "TargetStructureID": 9769, + "Label": "46975-9769 via Conventional from 46976 -> 12339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46976, + "TargetID": 12339, + "Directional": true + }] + }, { + "ID": 14310, + "SourceStructureID": 46979, + "TargetStructureID": 9769, + "Label": "46979-9769 via Conventional from 46980 -> 45324", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46980, + "TargetID": 45324, + "Directional": true + }] + }, { + "ID": 14311, + "SourceStructureID": 46979, + "TargetStructureID": 62500, + "Label": "46979-62500 via Conventional from 46981 -> 62521", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46981, + "TargetID": 62521, + "Directional": true + }] + }, { + "ID": 14312, + "SourceStructureID": 46982, + "TargetStructureID": 9769, + "Label": "46982-9769 via Conventional from 46983 -> 12328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46983, + "TargetID": 12328, + "Directional": true + }] + }, { + "ID": 14313, + "SourceStructureID": 46984, + "TargetStructureID": 9769, + "Label": "46984-9769 via Conventional from 46985 -> 30071", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46985, + "TargetID": 30071, + "Directional": true + }] + }, { + "ID": 14314, + "SourceStructureID": 46988, + "TargetStructureID": 9769, + "Label": "46988-9769 via Conventional from 46989 -> 30070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46989, + "TargetID": 30070, + "Directional": true + }] + }, { + "ID": 14315, + "SourceStructureID": 46994, + "TargetStructureID": 9769, + "Label": "46994-9769 via Conventional from 46995 -> 30069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46995, + "TargetID": 30069, + "Directional": true + }] + }, { + "ID": 14316, + "SourceStructureID": 46998, + "TargetStructureID": 9769, + "Label": "46998-9769 via Conventional from 46999 -> 12354", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 46999, + "TargetID": 12354, + "Directional": true + }] + }, { + "ID": 14317, + "SourceStructureID": 47002, + "TargetStructureID": 46998, + "Label": "47002-46998 via Conventional from 47003 -> 47000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47003, + "TargetID": 47000, + "Directional": true + }] + }, { + "ID": 14318, + "SourceStructureID": 47004, + "TargetStructureID": 9769, + "Label": "47004-9769 via Conventional from 47005 -> 12355", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47005, + "TargetID": 12355, + "Directional": true + }] + }, { + "ID": 14319, + "SourceStructureID": 47007, + "TargetStructureID": 47004, + "Label": "47007-47004 via Conventional from 47008 -> 47006", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47008, + "TargetID": 47006, + "Directional": true + }] + }, { + "ID": 14320, + "SourceStructureID": 47010, + "TargetStructureID": 9769, + "Label": "47010-9769 via Conventional from 47011 -> 47009", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47011, + "TargetID": 47009, + "Directional": true + }] + }, { + "ID": 14321, + "SourceStructureID": 47010, + "TargetStructureID": 47013, + "Label": "47010-47013 via Conventional from 47012 -> 47016", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47012, + "TargetID": 47016, + "Directional": true + }] + }, { + "ID": 14322, + "SourceStructureID": 47104, + "TargetStructureID": 142, + "Label": "47104-142 via Conventional from 47137 -> 47141, 47149 -> 47150, 47151 -> 47152", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47137, + "TargetID": 47141, + "Directional": true + }, { + "SourceID": 47149, + "TargetID": 47150, + "Directional": true + }, { + "SourceID": 47151, + "TargetID": 47152, + "Directional": true + }] + }, { + "ID": 14323, + "SourceStructureID": 47104, + "TargetStructureID": 299, + "Label": "47104-299 via Conventional from 47106 -> 47107", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47106, + "TargetID": 47107, + "Directional": true + }] + }, { + "ID": 14324, + "SourceStructureID": 47104, + "TargetStructureID": 307, + "Label": "47104-307 via Conventional from 47122 -> 16781", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47122, + "TargetID": 16781, + "Directional": true + }] + }, { + "ID": 14325, + "SourceStructureID": 47104, + "TargetStructureID": 408, + "Label": "47104-408 via Conventional from 47117 -> 47118", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47117, + "TargetID": 47118, + "Directional": true + }] + }, { + "ID": 14326, + "SourceStructureID": 47104, + "TargetStructureID": 485, + "Label": "47104-485 via Conventional from 47123 -> 47124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47123, + "TargetID": 47124, + "Directional": true + }] + }, { + "ID": 14327, + "SourceStructureID": 47104, + "TargetStructureID": 1724, + "Label": "47104-1724 via Conventional from 47131 -> 3992, 47133 -> 1775", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47131, + "TargetID": 3992, + "Directional": true + }, { + "SourceID": 47133, + "TargetID": 1775, + "Directional": true + }] + }, { + "ID": 14328, + "SourceStructureID": 47104, + "TargetStructureID": 5279, + "Label": "47104-5279 via Conventional from 47136 -> 11481, 47145 -> 47144, 147284 -> 147283", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47136, + "TargetID": 11481, + "Directional": true + }, { + "SourceID": 47145, + "TargetID": 47144, + "Directional": true + }, { + "SourceID": 147284, + "TargetID": 147283, + "Directional": true + }] + }, { + "ID": 14329, + "SourceStructureID": 47104, + "TargetStructureID": 5601, + "Label": "47104-5601 via Conventional from 47175 -> 47174", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47175, + "TargetID": 47174, + "Directional": true + }] + }, { + "ID": 14330, + "SourceStructureID": 47104, + "TargetStructureID": 6047, + "Label": "47104-6047 via Conventional from 47184 -> 30636, 47187 -> 30633, 47188 -> 30631, 47189 -> 47190", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47184, + "TargetID": 30636, + "Directional": true + }, { + "SourceID": 47187, + "TargetID": 30633, + "Directional": true + }, { + "SourceID": 47188, + "TargetID": 30631, + "Directional": true + }, { + "SourceID": 47189, + "TargetID": 47190, + "Directional": true + }] + }, { + "ID": 14331, + "SourceStructureID": 47104, + "TargetStructureID": 6050, + "Label": "47104-6050 via Conventional from 47153 -> 47154, 47156 -> 30952, 47168 -> 30623, 47170 -> 30625", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47153, + "TargetID": 47154, + "Directional": true + }, { + "SourceID": 47156, + "TargetID": 30952, + "Directional": true + }, { + "SourceID": 47168, + "TargetID": 30623, + "Directional": true + }, { + "SourceID": 47170, + "TargetID": 30625, + "Directional": true + }] + }, { + "ID": 14332, + "SourceStructureID": 47104, + "TargetStructureID": 6155, + "Label": "47104-6155 via Conventional from 47127 -> 15512, 107745 -> 107746, 108267 -> 49082", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47127, + "TargetID": 15512, + "Directional": true + }, { + "SourceID": 107745, + "TargetID": 107746, + "Directional": true + }, { + "SourceID": 108267, + "TargetID": 49082, + "Directional": true + }] + }, { + "ID": 14333, + "SourceStructureID": 47104, + "TargetStructureID": 11033, + "Label": "47104-11033 via Conventional from 47171 -> 47172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47171, + "TargetID": 47172, + "Directional": true + }] + }, { + "ID": 14334, + "SourceStructureID": 47104, + "TargetStructureID": 35894, + "Label": "47104-35894 via Conventional from 47121 -> 35896", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47121, + "TargetID": 35896, + "Directional": true + }] + }, { + "ID": 14335, + "SourceStructureID": 47104, + "TargetStructureID": 85002, + "Label": "47104-85002 via Conventional from 126303 -> 126302", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126303, + "TargetID": 126302, + "Directional": true + }] + }, { + "ID": 14336, + "SourceStructureID": 47109, + "TargetStructureID": 299, + "Label": "47109-299 via Conventional from 47112 -> 47113", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47112, + "TargetID": 47113, + "Directional": true + }] + }, { + "ID": 14337, + "SourceStructureID": 47109, + "TargetStructureID": 47104, + "Label": "47109-47104 via Conventional from 47110 -> 47108", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47110, + "TargetID": 47108, + "Directional": true + }] + }, { + "ID": 14338, + "SourceStructureID": 47195, + "TargetStructureID": 61270, + "Label": "47195-61270 via Ribbon Synapse from 61311 -> 61310", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61311, + "TargetID": 61310, + "Directional": true + }] + }, { + "ID": 14339, + "SourceStructureID": 47204, + "TargetStructureID": 223, + "Label": "47204-223 via Conventional from 47205 -> 47203", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47205, + "TargetID": 47203, + "Directional": true + }] + }, { + "ID": 14340, + "SourceStructureID": 47445, + "TargetStructureID": 606, + "Label": "47445-606 via Ribbon Synapse from 47446 -> 47447, 47455 -> 47456, 47458 -> 47460, 47459 -> 47461", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47446, + "TargetID": 47447, + "Directional": true + }, { + "SourceID": 47455, + "TargetID": 47456, + "Directional": true + }, { + "SourceID": 47458, + "TargetID": 47460, + "Directional": true + }, { + "SourceID": 47459, + "TargetID": 47461, + "Directional": true + }] + }, { + "ID": 14341, + "SourceStructureID": 47445, + "TargetStructureID": 7594, + "Label": "47445-7594 via Ribbon Synapse from 47455 -> 47457", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 47455, + "TargetID": 47457, + "Directional": true + }] + }, { + "ID": 14342, + "SourceStructureID": 47445, + "TargetStructureID": 55232, + "Label": "47445-55232 via Ribbon Synapse from 118182 -> 55396", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 118182, + "TargetID": 55396, + "Directional": true + }] + }, { + "ID": 14343, + "SourceStructureID": 47445, + "TargetStructureID": 87413, + "Label": "47445-87413 via Ribbon Synapse from 87415 -> 87414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87415, + "TargetID": 87414, + "Directional": true + }] + }, { + "ID": 14344, + "SourceStructureID": 47593, + "TargetStructureID": 606, + "Label": "47593-606 via Conventional from 47594 -> 47595", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47594, + "TargetID": 47595, + "Directional": true + }] + }, { + "ID": 14345, + "SourceStructureID": 47833, + "TargetStructureID": 606, + "Label": "47833-606 via Conventional from 47834 -> 47832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 47834, + "TargetID": 47832, + "Directional": true + }] + }, { + "ID": 14346, + "SourceStructureID": 48455, + "TargetStructureID": 121946, + "Label": "48455-121946 via Conventional from 48459 -> 121950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 48459, + "TargetID": 121950, + "Directional": true + }] + }, { + "ID": 14347, + "SourceStructureID": 48516, + "TargetStructureID": 606, + "Label": "48516-606 via Ribbon Synapse from 48518 -> 48520, 48519 -> 48521, 51642 -> 51643, 51669 -> 51670, 51688 -> 51689, 51695 -> 51696", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48518, + "TargetID": 48520, + "Directional": true + }, { + "SourceID": 48519, + "TargetID": 48521, + "Directional": true + }, { + "SourceID": 51642, + "TargetID": 51643, + "Directional": true + }, { + "SourceID": 51669, + "TargetID": 51670, + "Directional": true + }, { + "SourceID": 51688, + "TargetID": 51689, + "Directional": true + }, { + "SourceID": 51695, + "TargetID": 51696, + "Directional": true + }] + }, { + "ID": 14348, + "SourceStructureID": 48516, + "TargetStructureID": 89577, + "Label": "48516-89577 via BC Conventional Synapse from 48559 -> 89579", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 48559, + "TargetID": 89579, + "Directional": true + }] + }, { + "ID": 14349, + "SourceStructureID": 48573, + "TargetStructureID": 909, + "Label": "48573-909 via Conventional from 48608 -> 45934", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 48608, + "TargetID": 45934, + "Directional": true + }] + }, { + "ID": 14350, + "SourceStructureID": 48573, + "TargetStructureID": 1724, + "Label": "48573-1724 via Conventional from 99533 -> 4058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99533, + "TargetID": 4058, + "Directional": true + }] + }, { + "ID": 14351, + "SourceStructureID": 48573, + "TargetStructureID": 5561, + "Label": "48573-5561 via Conventional from 48600 -> 46304, 48607 -> 46296", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 48600, + "TargetID": 46304, + "Directional": true + }, { + "SourceID": 48607, + "TargetID": 46296, + "Directional": true + }] + }, { + "ID": 14352, + "SourceStructureID": 48573, + "TargetStructureID": 7024, + "Label": "48573-7024 via Conventional from 48610 -> 48609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 48610, + "TargetID": 48609, + "Directional": true + }] + }, { + "ID": 14353, + "SourceStructureID": 48612, + "TargetStructureID": 372, + "Label": "48612-372 via Conventional from 48623 -> 30786, 48627 -> 46917", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 48623, + "TargetID": 30786, + "Directional": true + }, { + "SourceID": 48627, + "TargetID": 46917, + "Directional": true + }] + }, { + "ID": 14354, + "SourceStructureID": 48612, + "TargetStructureID": 1724, + "Label": "48612-1724 via Conventional from 48616 -> 1810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 48616, + "TargetID": 1810, + "Directional": true + }] + }, { + "ID": 14355, + "SourceStructureID": 48612, + "TargetStructureID": 6155, + "Label": "48612-6155 via Conventional from 48618 -> 16136, 104903 -> 104902", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 48618, + "TargetID": 16136, + "Directional": true + }, { + "SourceID": 104903, + "TargetID": 104902, + "Directional": true + }] + }, { + "ID": 14356, + "SourceStructureID": 48612, + "TargetStructureID": 23512, + "Label": "48612-23512 via Conventional from 48615 -> 23545", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 48615, + "TargetID": 23545, + "Directional": true + }] + }, { + "ID": 14357, + "SourceStructureID": 48612, + "TargetStructureID": 48612, + "Label": "48612-48612 via Conventional from 48619 -> 48620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 48619, + "TargetID": 48620, + "Directional": true + }] + }, { + "ID": 14358, + "SourceStructureID": 49186, + "TargetStructureID": 49185, + "Label": "49186-49185 via Ribbon Synapse from 49187 -> 49188", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49187, + "TargetID": 49188, + "Directional": true + }] + }, { + "ID": 14359, + "SourceStructureID": 49487, + "TargetStructureID": 518, + "Label": "49487-518 via Conventional from 49488 -> 49486", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 49488, + "TargetID": 49486, + "Directional": true + }] + }, { + "ID": 14360, + "SourceStructureID": 49489, + "TargetStructureID": 483, + "Label": "49489-483 via Conventional from 116702 -> 6783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116702, + "TargetID": 6783, + "Directional": true + }] + }, { + "ID": 14361, + "SourceStructureID": 49489, + "TargetStructureID": 485, + "Label": "49489-485 via Conventional from 49520 -> 47626, 49522 -> 148422, 49523 -> 49527, 49528 -> 49530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 49520, + "TargetID": 47626, + "Directional": true + }, { + "SourceID": 49522, + "TargetID": 148422, + "Directional": true + }, { + "SourceID": 49523, + "TargetID": 49527, + "Directional": true + }, { + "SourceID": 49528, + "TargetID": 49530, + "Directional": true + }] + }, { + "ID": 14362, + "SourceStructureID": 49489, + "TargetStructureID": 593, + "Label": "49489-593 via Conventional from 49596 -> 49599, 61950 -> 61949", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 49596, + "TargetID": 49599, + "Directional": true + }, { + "SourceID": 61950, + "TargetID": 61949, + "Directional": true + }] + }, { + "ID": 14363, + "SourceStructureID": 49489, + "TargetStructureID": 70095, + "Label": "49489-70095 via Conventional from 49533 -> 70096", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 49533, + "TargetID": 70096, + "Directional": true + }] + }, { + "ID": 14364, + "SourceStructureID": 49554, + "TargetStructureID": 606, + "Label": "49554-606 via Ribbon Synapse from 49555 -> 5079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 49555, + "TargetID": 5079, + "Directional": true + }] + }, { + "ID": 14365, + "SourceStructureID": 49600, + "TargetStructureID": 517, + "Label": "49600-517 via Conventional from 49602 -> 16440", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 49602, + "TargetID": 16440, + "Directional": true + }] + }, { + "ID": 14366, + "SourceStructureID": 49600, + "TargetStructureID": 6156, + "Label": "49600-6156 via Conventional from 49603 -> 23263", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 49603, + "TargetID": 23263, + "Directional": true + }] + }, { + "ID": 14367, + "SourceStructureID": 49600, + "TargetStructureID": 49489, + "Label": "49600-49489 via Conventional from 49601 -> 49595", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 49601, + "TargetID": 49595, + "Directional": true + }] + }, { + "ID": 14368, + "SourceStructureID": 50449, + "TargetStructureID": 4890, + "Label": "50449-4890 via Ribbon Synapse from 50652 -> 64878", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50652, + "TargetID": 64878, + "Directional": true + }] + }, { + "ID": 14369, + "SourceStructureID": 50449, + "TargetStructureID": 62190, + "Label": "50449-62190 via Ribbon Synapse from 50559 -> 62192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 50559, + "TargetID": 62192, + "Directional": true + }] + }, { + "ID": 14370, + "SourceStructureID": 51617, + "TargetStructureID": 142, + "Label": "51617-142 via Conventional from 82436 -> 126007", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82436, + "TargetID": 126007, + "Directional": true + }] + }, { + "ID": 14371, + "SourceStructureID": 51617, + "TargetStructureID": 168, + "Label": "51617-168 via Conventional from 115460 -> 4322, 115461 -> 4265, 115467 -> 4296, 115469 -> 92777", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115460, + "TargetID": 4322, + "Directional": true + }, { + "SourceID": 115461, + "TargetID": 4265, + "Directional": true + }, { + "SourceID": 115467, + "TargetID": 4296, + "Directional": true + }, { + "SourceID": 115469, + "TargetID": 92777, + "Directional": true + }] + }, { + "ID": 14372, + "SourceStructureID": 51617, + "TargetStructureID": 170, + "Label": "51617-170 via Conventional from 89853 -> 89854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89853, + "TargetID": 89854, + "Directional": true + }] + }, { + "ID": 14373, + "SourceStructureID": 51667, + "TargetStructureID": 6050, + "Label": "51667-6050 via Conventional from 127223 -> 127224", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127223, + "TargetID": 127224, + "Directional": true + }] + }, { + "ID": 14374, + "SourceStructureID": 51700, + "TargetStructureID": 5513, + "Label": "51700-5513 via Conventional from 51701 -> 29626", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 51701, + "TargetID": 29626, + "Directional": true + }] + }, { + "ID": 14375, + "SourceStructureID": 51711, + "TargetStructureID": 606, + "Label": "51711-606 via Ribbon Synapse from 51712 -> 51713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51712, + "TargetID": 51713, + "Directional": true + }] + }, { + "ID": 14376, + "SourceStructureID": 51715, + "TargetStructureID": 606, + "Label": "51715-606 via Ribbon Synapse from 51716 -> 51717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 51716, + "TargetID": 51717, + "Directional": true + }] + }, { + "ID": 14377, + "SourceStructureID": 51715, + "TargetStructureID": 5117, + "Label": "51715-5117 via Ribbon Synapse from 52079 -> 28827", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52079, + "TargetID": 28827, + "Directional": true + }] + }, { + "ID": 14378, + "SourceStructureID": 51808, + "TargetStructureID": 21299, + "Label": "51808-21299 via Conventional from 51810 -> 48985", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 51810, + "TargetID": 48985, + "Directional": true + }] + }, { + "ID": 14379, + "SourceStructureID": 51808, + "TargetStructureID": 51812, + "Label": "51808-51812 via Conventional from 51811 -> 51814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 51811, + "TargetID": 51814, + "Directional": true + }] + }, { + "ID": 14380, + "SourceStructureID": 51812, + "TargetStructureID": 170, + "Label": "51812-170 via Conventional from 88545 -> 88543", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88545, + "TargetID": 88543, + "Directional": true + }] + }, { + "ID": 14381, + "SourceStructureID": 51812, + "TargetStructureID": 88666, + "Label": "51812-88666 via Conventional from 82454 -> 88719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82454, + "TargetID": 88719, + "Directional": true + }] + }, { + "ID": 14382, + "SourceStructureID": 51923, + "TargetStructureID": 89670, + "Label": "51923-89670 via Conventional from 51930 -> 89675", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 51930, + "TargetID": 89675, + "Directional": true + }] + }, { + "ID": 14383, + "SourceStructureID": 52147, + "TargetStructureID": 5118, + "Label": "52147-5118 via Conventional from 52148 -> 6526", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52148, + "TargetID": 6526, + "Directional": true + }] + }, { + "ID": 14384, + "SourceStructureID": 52152, + "TargetStructureID": 7861, + "Label": "52152-7861 via Ribbon Synapse from 52155 -> 29644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52155, + "TargetID": 29644, + "Directional": true + }] + }, { + "ID": 14385, + "SourceStructureID": 52247, + "TargetStructureID": 597, + "Label": "52247-597 via Ribbon Synapse from 60468 -> 60469", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60468, + "TargetID": 60469, + "Directional": true + }] + }, { + "ID": 14386, + "SourceStructureID": 52247, + "TargetStructureID": 6857, + "Label": "52247-6857 via Ribbon Synapse from 52248 -> 35033, 52251 -> 7533, 52252 -> 52246", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52248, + "TargetID": 35033, + "Directional": true + }, { + "SourceID": 52251, + "TargetID": 7533, + "Directional": true + }, { + "SourceID": 52252, + "TargetID": 52246, + "Directional": true + }] + }, { + "ID": 14387, + "SourceStructureID": 52257, + "TargetStructureID": 8032, + "Label": "52257-8032 via Ribbon Synapse from 52318 -> 52319, 52323 -> 26677", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52318, + "TargetID": 52319, + "Directional": true + }, { + "SourceID": 52323, + "TargetID": 26677, + "Directional": true + }] + }, { + "ID": 14388, + "SourceStructureID": 52257, + "TargetStructureID": 9769, + "Label": "52257-9769 via Ribbon Synapse from 52327 -> 30172", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 52327, + "TargetID": 30172, + "Directional": true + }] + }, { + "ID": 14389, + "SourceStructureID": 52257, + "TargetStructureID": 119241, + "Label": "52257-119241 via Ribbon Synapse from 119246 -> 119247", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119246, + "TargetID": 119247, + "Directional": true + }] + }, { + "ID": 14390, + "SourceStructureID": 52262, + "TargetStructureID": 6118, + "Label": "52262-6118 via Conventional from 52270 -> 52271", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52270, + "TargetID": 52271, + "Directional": true + }] + }, { + "ID": 14391, + "SourceStructureID": 52262, + "TargetStructureID": 6146, + "Label": "52262-6146 via Conventional from 52264 -> 52265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52264, + "TargetID": 52265, + "Directional": true + }] + }, { + "ID": 14392, + "SourceStructureID": 52262, + "TargetStructureID": 6158, + "Label": "52262-6158 via Conventional from 52286 -> 52287", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52286, + "TargetID": 52287, + "Directional": true + }] + }, { + "ID": 14393, + "SourceStructureID": 52262, + "TargetStructureID": 52257, + "Label": "52262-52257 via Conventional from 52263 -> 52261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52263, + "TargetID": 52261, + "Directional": true + }] + }, { + "ID": 14394, + "SourceStructureID": 52410, + "TargetStructureID": 5503, + "Label": "52410-5503 via Conventional from 52436 -> 52440", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52436, + "TargetID": 52440, + "Directional": true + }] + }, { + "ID": 14395, + "SourceStructureID": 52410, + "TargetStructureID": 6118, + "Label": "52410-6118 via Conventional from 52434 -> 65853", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52434, + "TargetID": 65853, + "Directional": true + }] + }, { + "ID": 14396, + "SourceStructureID": 52410, + "TargetStructureID": 6120, + "Label": "52410-6120 via Conventional from 52412 -> 52413, 52415 -> 37242, 52417 -> 52418, 52423 -> 52424, 52429 -> 52430", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52412, + "TargetID": 52413, + "Directional": true + }, { + "SourceID": 52415, + "TargetID": 37242, + "Directional": true + }, { + "SourceID": 52417, + "TargetID": 52418, + "Directional": true + }, { + "SourceID": 52423, + "TargetID": 52424, + "Directional": true + }, { + "SourceID": 52429, + "TargetID": 52430, + "Directional": true + }] + }, { + "ID": 14397, + "SourceStructureID": 52410, + "TargetStructureID": 6141, + "Label": "52410-6141 via Conventional from 52422 -> 6472", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52422, + "TargetID": 6472, + "Directional": true + }] + }, { + "ID": 14398, + "SourceStructureID": 52410, + "TargetStructureID": 8040, + "Label": "52410-8040 via Conventional from 52561 -> 48631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52561, + "TargetID": 48631, + "Directional": true + }] + }, { + "ID": 14399, + "SourceStructureID": 52929, + "TargetStructureID": 9769, + "Label": "52929-9769 via Conventional from 52930 -> 52926", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52930, + "TargetID": 52926, + "Directional": true + }] + }, { + "ID": 14400, + "SourceStructureID": 52932, + "TargetStructureID": 9769, + "Label": "52932-9769 via Conventional from 52933 -> 52928", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52933, + "TargetID": 52928, + "Directional": true + }] + }, { + "ID": 14401, + "SourceStructureID": 52955, + "TargetStructureID": 9769, + "Label": "52955-9769 via Conventional from 52956 -> 52957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52956, + "TargetID": 52957, + "Directional": true + }] + }, { + "ID": 14402, + "SourceStructureID": 52960, + "TargetStructureID": 9769, + "Label": "52960-9769 via Conventional from 52962 -> 52959", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52962, + "TargetID": 52959, + "Directional": true + }] + }, { + "ID": 14403, + "SourceStructureID": 52991, + "TargetStructureID": 9769, + "Label": "52991-9769 via Conventional from 52992 -> 52990", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52992, + "TargetID": 52990, + "Directional": true + }] + }, { + "ID": 14404, + "SourceStructureID": 53000, + "TargetStructureID": 5598, + "Label": "53000-5598 via Conventional from 53123 -> 53124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53123, + "TargetID": 53124, + "Directional": true + }] + }, { + "ID": 14405, + "SourceStructureID": 53127, + "TargetStructureID": 5107, + "Label": "53127-5107 via Conventional from 53128 -> 53132", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53128, + "TargetID": 53132, + "Directional": true + }] + }, { + "ID": 14406, + "SourceStructureID": 53127, + "TargetStructureID": 9769, + "Label": "53127-9769 via Conventional from 53130 -> 29959", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53130, + "TargetID": 29959, + "Directional": true + }] + }, { + "ID": 14407, + "SourceStructureID": 53166, + "TargetStructureID": 9769, + "Label": "53166-9769 via Conventional from 53167 -> 29956", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53167, + "TargetID": 29956, + "Directional": true + }] + }, { + "ID": 14408, + "SourceStructureID": 53169, + "TargetStructureID": 9769, + "Label": "53169-9769 via Conventional from 53170 -> 29953, 53175 -> 29952", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53170, + "TargetID": 29953, + "Directional": true + }, { + "SourceID": 53175, + "TargetID": 29952, + "Directional": true + }] + }, { + "ID": 14409, + "SourceStructureID": 53173, + "TargetStructureID": 9769, + "Label": "53173-9769 via Conventional from 53174 -> 29940", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53174, + "TargetID": 29940, + "Directional": true + }] + }, { + "ID": 14410, + "SourceStructureID": 53178, + "TargetStructureID": 9769, + "Label": "53178-9769 via Conventional from 53179 -> 45191", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53179, + "TargetID": 45191, + "Directional": true + }] + }, { + "ID": 14411, + "SourceStructureID": 53180, + "TargetStructureID": 9769, + "Label": "53180-9769 via Conventional from 53181 -> 29939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53181, + "TargetID": 29939, + "Directional": true + }] + }, { + "ID": 14412, + "SourceStructureID": 53182, + "TargetStructureID": 1021, + "Label": "53182-1021 via Conventional from 53184 -> 53185", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53184, + "TargetID": 53185, + "Directional": true + }] + }, { + "ID": 14413, + "SourceStructureID": 53182, + "TargetStructureID": 3756, + "Label": "53182-3756 via Conventional from 116088 -> 116089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116088, + "TargetID": 116089, + "Directional": true + }] + }, { + "ID": 14414, + "SourceStructureID": 53182, + "TargetStructureID": 5650, + "Label": "53182-5650 via Conventional from 105159 -> 105160", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105159, + "TargetID": 105160, + "Directional": true + }] + }, { + "ID": 14415, + "SourceStructureID": 53186, + "TargetStructureID": 9769, + "Label": "53186-9769 via Conventional from 53187 -> 29934", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53187, + "TargetID": 29934, + "Directional": true + }] + }, { + "ID": 14416, + "SourceStructureID": 53195, + "TargetStructureID": 9769, + "Label": "53195-9769 via Conventional from 53198 -> 20261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53198, + "TargetID": 20261, + "Directional": true + }] + }, { + "ID": 14417, + "SourceStructureID": 53202, + "TargetStructureID": 32892, + "Label": "53202-32892 via Conventional from 53210 -> 53211", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53210, + "TargetID": 53211, + "Directional": true + }] + }, { + "ID": 14418, + "SourceStructureID": 53224, + "TargetStructureID": 5562, + "Label": "53224-5562 via Conventional from 77548 -> 77547", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77548, + "TargetID": 77547, + "Directional": true + }] + }, { + "ID": 14419, + "SourceStructureID": 53232, + "TargetStructureID": 5561, + "Label": "53232-5561 via Conventional from 53233 -> 119284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53233, + "TargetID": 119284, + "Directional": true + }] + }, { + "ID": 14420, + "SourceStructureID": 53235, + "TargetStructureID": 9769, + "Label": "53235-9769 via Conventional from 53236 -> 20255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53236, + "TargetID": 20255, + "Directional": true + }] + }, { + "ID": 14421, + "SourceStructureID": 53241, + "TargetStructureID": 9769, + "Label": "53241-9769 via Conventional from 53242 -> 20251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53242, + "TargetID": 20251, + "Directional": true + }] + }, { + "ID": 14422, + "SourceStructureID": 53243, + "TargetStructureID": 9769, + "Label": "53243-9769 via Conventional from 53244 -> 20250", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53244, + "TargetID": 20250, + "Directional": true + }] + }, { + "ID": 14423, + "SourceStructureID": 53245, + "TargetStructureID": 7024, + "Label": "53245-7024 via Conventional from 53249 -> 20247", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53249, + "TargetID": 20247, + "Directional": true + }] + }, { + "ID": 14424, + "SourceStructureID": 53250, + "TargetStructureID": 9769, + "Label": "53250-9769 via Conventional from 53251 -> 20236", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53251, + "TargetID": 20236, + "Directional": true + }] + }, { + "ID": 14425, + "SourceStructureID": 53252, + "TargetStructureID": 9769, + "Label": "53252-9769 via Conventional from 53256 -> 20233", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53256, + "TargetID": 20233, + "Directional": true + }] + }, { + "ID": 14426, + "SourceStructureID": 53257, + "TargetStructureID": 9769, + "Label": "53257-9769 via Conventional from 53258 -> 20226", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53258, + "TargetID": 20226, + "Directional": true + }] + }, { + "ID": 14427, + "SourceStructureID": 53259, + "TargetStructureID": 9769, + "Label": "53259-9769 via Conventional from 53260 -> 20225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53260, + "TargetID": 20225, + "Directional": true + }] + }, { + "ID": 14428, + "SourceStructureID": 53263, + "TargetStructureID": 9769, + "Label": "53263-9769 via Conventional from 53265 -> 20227", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53265, + "TargetID": 20227, + "Directional": true + }] + }, { + "ID": 14429, + "SourceStructureID": 53324, + "TargetStructureID": 9769, + "Label": "53324-9769 via Conventional from 53326 -> 53328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53326, + "TargetID": 53328, + "Directional": true + }] + }, { + "ID": 14430, + "SourceStructureID": 53330, + "TargetStructureID": 9769, + "Label": "53330-9769 via Conventional from 53331 -> 53329", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53331, + "TargetID": 53329, + "Directional": true + }] + }, { + "ID": 14431, + "SourceStructureID": 53335, + "TargetStructureID": 9769, + "Label": "53335-9769 via Conventional from 53336 -> 53337", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53336, + "TargetID": 53337, + "Directional": true + }] + }, { + "ID": 14432, + "SourceStructureID": 53344, + "TargetStructureID": 5345, + "Label": "53344-5345 via Conventional from 53350 -> 53349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53350, + "TargetID": 53349, + "Directional": true + }] + }, { + "ID": 14433, + "SourceStructureID": 53344, + "TargetStructureID": 5517, + "Label": "53344-5517 via Conventional from 53351 -> 53352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53351, + "TargetID": 53352, + "Directional": true + }] + }, { + "ID": 14434, + "SourceStructureID": 53344, + "TargetStructureID": 53335, + "Label": "53344-53335 via Conventional from 53353 -> 53338", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53353, + "TargetID": 53338, + "Directional": true + }] + }, { + "ID": 14435, + "SourceStructureID": 53355, + "TargetStructureID": 9769, + "Label": "53355-9769 via Conventional from 53356 -> 20304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53356, + "TargetID": 20304, + "Directional": true + }] + }, { + "ID": 14436, + "SourceStructureID": 53374, + "TargetStructureID": 598, + "Label": "53374-598 via Conventional from 53378 -> 38534", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53378, + "TargetID": 38534, + "Directional": true + }] + }, { + "ID": 14437, + "SourceStructureID": 53374, + "TargetStructureID": 9769, + "Label": "53374-9769 via Conventional from 53375 -> 11258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53375, + "TargetID": 11258, + "Directional": true + }] + }, { + "ID": 14438, + "SourceStructureID": 53393, + "TargetStructureID": 9769, + "Label": "53393-9769 via Conventional from 53394 -> 53392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53394, + "TargetID": 53392, + "Directional": true + }] + }, { + "ID": 14439, + "SourceStructureID": 53395, + "TargetStructureID": 9769, + "Label": "53395-9769 via Conventional from 53396 -> 11254", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53396, + "TargetID": 11254, + "Directional": true + }] + }, { + "ID": 14440, + "SourceStructureID": 53403, + "TargetStructureID": 9769, + "Label": "53403-9769 via Conventional from 53404 -> 45116", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53404, + "TargetID": 45116, + "Directional": true + }] + }, { + "ID": 14441, + "SourceStructureID": 53407, + "TargetStructureID": 909, + "Label": "53407-909 via Conventional from 117271 -> 117268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117271, + "TargetID": 117268, + "Directional": true + }] + }, { + "ID": 14442, + "SourceStructureID": 53407, + "TargetStructureID": 5650, + "Label": "53407-5650 via Conventional from 53411 -> 50554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53411, + "TargetID": 50554, + "Directional": true + }] + }, { + "ID": 14443, + "SourceStructureID": 53416, + "TargetStructureID": 5292, + "Label": "53416-5292 via Conventional from 53418 -> 49832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53418, + "TargetID": 49832, + "Directional": true + }] + }, { + "ID": 14444, + "SourceStructureID": 53421, + "TargetStructureID": 5284, + "Label": "53421-5284 via Conventional from 53426 -> 113596", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53426, + "TargetID": 113596, + "Directional": true + }] + }, { + "ID": 14445, + "SourceStructureID": 53421, + "TargetStructureID": 9769, + "Label": "53421-9769 via Conventional from 53422 -> 30124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53422, + "TargetID": 30124, + "Directional": true + }] + }, { + "ID": 14446, + "SourceStructureID": 53439, + "TargetStructureID": 9769, + "Label": "53439-9769 via Conventional from 53440 -> 30141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53440, + "TargetID": 30141, + "Directional": true + }] + }, { + "ID": 14447, + "SourceStructureID": 53441, + "TargetStructureID": 9769, + "Label": "53441-9769 via Conventional from 53442 -> 30142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53442, + "TargetID": 30142, + "Directional": true + }] + }, { + "ID": 14448, + "SourceStructureID": 53443, + "TargetStructureID": 5303, + "Label": "53443-5303 via Conventional from 53446 -> 35592", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53446, + "TargetID": 35592, + "Directional": true + }] + }, { + "ID": 14449, + "SourceStructureID": 53443, + "TargetStructureID": 5650, + "Label": "53443-5650 via Conventional from 53445 -> 30153", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53445, + "TargetID": 30153, + "Directional": true + }] + }, { + "ID": 14450, + "SourceStructureID": 53447, + "TargetStructureID": 7134, + "Label": "53447-7134 via Conventional from 53449 -> 53499", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53449, + "TargetID": 53499, + "Directional": true + }] + }, { + "ID": 14451, + "SourceStructureID": 53447, + "TargetStructureID": 9769, + "Label": "53447-9769 via Conventional from 53448 -> 30161, 53452 -> 30162", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 53448, + "TargetID": 30161, + "Directional": true + }, { + "SourceID": 53452, + "TargetID": 30162, + "Directional": true + }] + }, { + "ID": 14452, + "SourceStructureID": 53768, + "TargetStructureID": 606, + "Label": "53768-606 via Ribbon Synapse from 53769 -> 53770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53769, + "TargetID": 53770, + "Directional": true + }] + }, { + "ID": 14453, + "SourceStructureID": 53778, + "TargetStructureID": 606, + "Label": "53778-606 via Ribbon Synapse from 53779 -> 53780", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53779, + "TargetID": 53780, + "Directional": true + }] + }, { + "ID": 14454, + "SourceStructureID": 53828, + "TargetStructureID": 606, + "Label": "53828-606 via Ribbon Synapse from 53829 -> 5091", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53829, + "TargetID": 5091, + "Directional": true + }] + }, { + "ID": 14455, + "SourceStructureID": 53872, + "TargetStructureID": 606, + "Label": "53872-606 via Ribbon Synapse from 53873 -> 5106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 53873, + "TargetID": 5106, + "Directional": true + }] + }, { + "ID": 14456, + "SourceStructureID": 54006, + "TargetStructureID": 6117, + "Label": "54006-6117 via Conventional from 83277 -> 83278", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83277, + "TargetID": 83278, + "Directional": true + }] + }, { + "ID": 14457, + "SourceStructureID": 54006, + "TargetStructureID": 20136, + "Label": "54006-20136 via Conventional from 109046 -> 109033, 109058 -> 109059", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109046, + "TargetID": 109033, + "Directional": true + }, { + "SourceID": 109058, + "TargetID": 109059, + "Directional": true + }] + }, { + "ID": 14458, + "SourceStructureID": 54074, + "TargetStructureID": 9769, + "Label": "54074-9769 via Conventional from 54075 -> 11266", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54075, + "TargetID": 11266, + "Directional": true + }] + }, { + "ID": 14459, + "SourceStructureID": 54078, + "TargetStructureID": 606, + "Label": "54078-606 via Conventional from 54083 -> 51333", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54083, + "TargetID": 51333, + "Directional": true + }] + }, { + "ID": 14460, + "SourceStructureID": 54078, + "TargetStructureID": 8579, + "Label": "54078-8579 via Conventional from 66484 -> 66483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66484, + "TargetID": 66483, + "Directional": true + }] + }, { + "ID": 14461, + "SourceStructureID": 54078, + "TargetStructureID": 16026, + "Label": "54078-16026 via Conventional from 54117 -> 54118", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54117, + "TargetID": 54118, + "Directional": true + }] + }, { + "ID": 14462, + "SourceStructureID": 54232, + "TargetStructureID": 606, + "Label": "54232-606 via Ribbon Synapse from 54233 -> 54234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 54233, + "TargetID": 54234, + "Directional": true + }] + }, { + "ID": 14463, + "SourceStructureID": 54245, + "TargetStructureID": 606, + "Label": "54245-606 via Conventional from 54246 -> 39903, 54249 -> 54250", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54246, + "TargetID": 39903, + "Directional": true + }, { + "SourceID": 54249, + "TargetID": 54250, + "Directional": true + }] + }, { + "ID": 14464, + "SourceStructureID": 54245, + "TargetStructureID": 5637, + "Label": "54245-5637 via Conventional from 54248 -> 54247", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54248, + "TargetID": 54247, + "Directional": true + }] + }, { + "ID": 14465, + "SourceStructureID": 54252, + "TargetStructureID": 9769, + "Label": "54252-9769 via Conventional from 54253 -> 54251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54253, + "TargetID": 54251, + "Directional": true + }] + }, { + "ID": 14466, + "SourceStructureID": 54264, + "TargetStructureID": 9769, + "Label": "54264-9769 via Conventional from 54266 -> 23927", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54266, + "TargetID": 23927, + "Directional": true + }] + }, { + "ID": 14467, + "SourceStructureID": 54264, + "TargetStructureID": 85404, + "Label": "54264-85404 via Conventional from 54267 -> 85410", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54267, + "TargetID": 85410, + "Directional": true + }] + }, { + "ID": 14468, + "SourceStructureID": 54287, + "TargetStructureID": 6117, + "Label": "54287-6117 via Conventional from 54289 -> 54290, 54299 -> 30896, 85301 -> 85302", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54289, + "TargetID": 54290, + "Directional": true + }, { + "SourceID": 54299, + "TargetID": 30896, + "Directional": true + }, { + "SourceID": 85301, + "TargetID": 85302, + "Directional": true + }] + }, { + "ID": 14469, + "SourceStructureID": 54356, + "TargetStructureID": 9769, + "Label": "54356-9769 via Conventional from 54357 -> 23931", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54357, + "TargetID": 23931, + "Directional": true + }] + }, { + "ID": 14470, + "SourceStructureID": 54428, + "TargetStructureID": 9769, + "Label": "54428-9769 via Conventional from 54429 -> 23933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54429, + "TargetID": 23933, + "Directional": true + }] + }, { + "ID": 14471, + "SourceStructureID": 54428, + "TargetStructureID": 68539, + "Label": "54428-68539 via Conventional from 72871 -> 72870", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72871, + "TargetID": 72870, + "Directional": true + }] + }, { + "ID": 14472, + "SourceStructureID": 54461, + "TargetStructureID": 9769, + "Label": "54461-9769 via Conventional from 54462 -> 23937", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54462, + "TargetID": 23937, + "Directional": true + }] + }, { + "ID": 14473, + "SourceStructureID": 54469, + "TargetStructureID": 5601, + "Label": "54469-5601 via Conventional from 54471 -> 54472", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54471, + "TargetID": 54472, + "Directional": true + }] + }, { + "ID": 14474, + "SourceStructureID": 54477, + "TargetStructureID": 9769, + "Label": "54477-9769 via Conventional from 54478 -> 23950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54478, + "TargetID": 23950, + "Directional": true + }] + }, { + "ID": 14475, + "SourceStructureID": 54492, + "TargetStructureID": 8578, + "Label": "54492-8578 via Conventional from 54494 -> 54496", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54494, + "TargetID": 54496, + "Directional": true + }] + }, { + "ID": 14476, + "SourceStructureID": 54492, + "TargetStructureID": 9769, + "Label": "54492-9769 via Conventional from 54493 -> 54491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54493, + "TargetID": 54491, + "Directional": true + }] + }, { + "ID": 14477, + "SourceStructureID": 54698, + "TargetStructureID": 9769, + "Label": "54698-9769 via Conventional from 54700 -> 23965", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54700, + "TargetID": 23965, + "Directional": true + }] + }, { + "ID": 14478, + "SourceStructureID": 54727, + "TargetStructureID": 15394, + "Label": "54727-15394 via Conventional from 54728 -> 41019", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54728, + "TargetID": 41019, + "Directional": true + }] + }, { + "ID": 14479, + "SourceStructureID": 54727, + "TargetStructureID": 54744, + "Label": "54727-54744 via Conventional from 54730 -> 54745", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54730, + "TargetID": 54745, + "Directional": true + }] + }, { + "ID": 14480, + "SourceStructureID": 54776, + "TargetStructureID": 5637, + "Label": "54776-5637 via Conventional from 54784 -> 54795", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54784, + "TargetID": 54795, + "Directional": true + }] + }, { + "ID": 14481, + "SourceStructureID": 54776, + "TargetStructureID": 9769, + "Label": "54776-9769 via Conventional from 54777 -> 23972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54777, + "TargetID": 23972, + "Directional": true + }] + }, { + "ID": 14482, + "SourceStructureID": 54778, + "TargetStructureID": 9769, + "Label": "54778-9769 via Conventional from 54779 -> 23973", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54779, + "TargetID": 23973, + "Directional": true + }] + }, { + "ID": 14483, + "SourceStructureID": 54813, + "TargetStructureID": 9769, + "Label": "54813-9769 via Conventional from 54815 -> 23974", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54815, + "TargetID": 23974, + "Directional": true + }] + }, { + "ID": 14484, + "SourceStructureID": 54850, + "TargetStructureID": 9769, + "Label": "54850-9769 via Conventional from 54851 -> 23982", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54851, + "TargetID": 23982, + "Directional": true + }] + }, { + "ID": 14485, + "SourceStructureID": 54857, + "TargetStructureID": 9769, + "Label": "54857-9769 via Conventional from 54858 -> 23994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54858, + "TargetID": 23994, + "Directional": true + }] + }, { + "ID": 14486, + "SourceStructureID": 54859, + "TargetStructureID": 9769, + "Label": "54859-9769 via Conventional from 54860 -> 23995", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54860, + "TargetID": 23995, + "Directional": true + }] + }, { + "ID": 14487, + "SourceStructureID": 54874, + "TargetStructureID": 16073, + "Label": "54874-16073 via Conventional from 54875 -> 19864", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54875, + "TargetID": 19864, + "Directional": true + }] + }, { + "ID": 14488, + "SourceStructureID": 54877, + "TargetStructureID": 6117, + "Label": "54877-6117 via Conventional from 54879 -> 86012", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54879, + "TargetID": 86012, + "Directional": true + }] + }, { + "ID": 14489, + "SourceStructureID": 54881, + "TargetStructureID": 9769, + "Label": "54881-9769 via Conventional from 54882 -> 12568", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54882, + "TargetID": 12568, + "Directional": true + }] + }, { + "ID": 14490, + "SourceStructureID": 54881, + "TargetStructureID": 34036, + "Label": "54881-34036 via Conventional from 54887 -> 34046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54887, + "TargetID": 34046, + "Directional": true + }] + }, { + "ID": 14491, + "SourceStructureID": 54895, + "TargetStructureID": 9769, + "Label": "54895-9769 via Conventional from 54896 -> 30120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54896, + "TargetID": 30120, + "Directional": true + }] + }, { + "ID": 14492, + "SourceStructureID": 54901, + "TargetStructureID": 9769, + "Label": "54901-9769 via Conventional from 54902 -> 29885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54902, + "TargetID": 29885, + "Directional": true + }] + }, { + "ID": 14493, + "SourceStructureID": 54904, + "TargetStructureID": 9769, + "Label": "54904-9769 via Conventional from 54905 -> 29874, 54906 -> 29875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54905, + "TargetID": 29874, + "Directional": true + }, { + "SourceID": 54906, + "TargetID": 29875, + "Directional": true + }] + }, { + "ID": 14494, + "SourceStructureID": 54908, + "TargetStructureID": 25155, + "Label": "54908-25155 via Conventional from 54911 -> 54912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54911, + "TargetID": 54912, + "Directional": true + }] + }, { + "ID": 14495, + "SourceStructureID": 54913, + "TargetStructureID": 5531, + "Label": "54913-5531 via Conventional from 54918 -> 54919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54918, + "TargetID": 54919, + "Directional": true + }] + }, { + "ID": 14496, + "SourceStructureID": 54913, + "TargetStructureID": 9769, + "Label": "54913-9769 via Conventional from 54914 -> 29869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54914, + "TargetID": 29869, + "Directional": true + }] + }, { + "ID": 14497, + "SourceStructureID": 54925, + "TargetStructureID": 595, + "Label": "54925-595 via Conventional from 115793 -> 115792", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115793, + "TargetID": 115792, + "Directional": true + }] + }, { + "ID": 14498, + "SourceStructureID": 54925, + "TargetStructureID": 5528, + "Label": "54925-5528 via Conventional from 54942 -> 54943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54942, + "TargetID": 54943, + "Directional": true + }] + }, { + "ID": 14499, + "SourceStructureID": 54925, + "TargetStructureID": 5530, + "Label": "54925-5530 via Conventional from 54930 -> 54931, 54937 -> 54938, 54944 -> 54945, 54947 -> 54098, 81563 -> 81564", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54930, + "TargetID": 54931, + "Directional": true + }, { + "SourceID": 54937, + "TargetID": 54938, + "Directional": true + }, { + "SourceID": 54944, + "TargetID": 54945, + "Directional": true + }, { + "SourceID": 54947, + "TargetID": 54098, + "Directional": true + }, { + "SourceID": 81563, + "TargetID": 81564, + "Directional": true + }] + }, { + "ID": 14500, + "SourceStructureID": 54925, + "TargetStructureID": 5531, + "Label": "54925-5531 via Conventional from 106583 -> 106584", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106583, + "TargetID": 106584, + "Directional": true + }] + }, { + "ID": 14501, + "SourceStructureID": 54948, + "TargetStructureID": 9769, + "Label": "54948-9769 via Conventional from 54949 -> 29849", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54949, + "TargetID": 29849, + "Directional": true + }] + }, { + "ID": 14502, + "SourceStructureID": 54958, + "TargetStructureID": 9769, + "Label": "54958-9769 via Conventional from 54959 -> 29839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54959, + "TargetID": 29839, + "Directional": true + }] + }, { + "ID": 14503, + "SourceStructureID": 54967, + "TargetStructureID": 9769, + "Label": "54967-9769 via Conventional from 54968 -> 54965", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 54968, + "TargetID": 54965, + "Directional": true + }] + }, { + "ID": 14504, + "SourceStructureID": 55098, + "TargetStructureID": 88970, + "Label": "55098-88970 via Conventional from 55105 -> 88971", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55105, + "TargetID": 88971, + "Directional": true + }] + }, { + "ID": 14505, + "SourceStructureID": 55108, + "TargetStructureID": 9769, + "Label": "55108-9769 via Conventional from 55109 -> 12361, 55145 -> 12362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55109, + "TargetID": 12361, + "Directional": true + }, { + "SourceID": 55145, + "TargetID": 12362, + "Directional": true + }] + }, { + "ID": 14506, + "SourceStructureID": 55154, + "TargetStructureID": 9769, + "Label": "55154-9769 via Conventional from 55155 -> 12363", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55155, + "TargetID": 12363, + "Directional": true + }] + }, { + "ID": 14507, + "SourceStructureID": 55161, + "TargetStructureID": 9769, + "Label": "55161-9769 via Conventional from 55162 -> 12364", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55162, + "TargetID": 12364, + "Directional": true + }] + }, { + "ID": 14508, + "SourceStructureID": 55176, + "TargetStructureID": 9769, + "Label": "55176-9769 via Conventional from 55177 -> 14363", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55177, + "TargetID": 14363, + "Directional": true + }] + }, { + "ID": 14509, + "SourceStructureID": 55185, + "TargetStructureID": 324, + "Label": "55185-324 via Conventional from 55187 -> 55184", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55187, + "TargetID": 55184, + "Directional": true + }] + }, { + "ID": 14510, + "SourceStructureID": 55185, + "TargetStructureID": 6153, + "Label": "55185-6153 via Conventional from 55186 -> 55183", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55186, + "TargetID": 55183, + "Directional": true + }] + }, { + "ID": 14511, + "SourceStructureID": 55185, + "TargetStructureID": 55191, + "Label": "55185-55191 via Conventional from 55188 -> 55194", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55188, + "TargetID": 55194, + "Directional": true + }] + }, { + "ID": 14512, + "SourceStructureID": 55191, + "TargetStructureID": 55185, + "Label": "55191-55185 via Ribbon Synapse from 55195 -> 55190", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55195, + "TargetID": 55190, + "Directional": true + }] + }, { + "ID": 14513, + "SourceStructureID": 55197, + "TargetStructureID": 9769, + "Label": "55197-9769 via Conventional from 55198 -> 30083", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55198, + "TargetID": 30083, + "Directional": true + }] + }, { + "ID": 14514, + "SourceStructureID": 55201, + "TargetStructureID": 324, + "Label": "55201-324 via Conventional from 55203 -> 55204", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55203, + "TargetID": 55204, + "Directional": true + }] + }, { + "ID": 14515, + "SourceStructureID": 55208, + "TargetStructureID": 9769, + "Label": "55208-9769 via Conventional from 55209 -> 30092", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55209, + "TargetID": 30092, + "Directional": true + }] + }, { + "ID": 14516, + "SourceStructureID": 55215, + "TargetStructureID": 9769, + "Label": "55215-9769 via Conventional from 55216 -> 30095", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55216, + "TargetID": 30095, + "Directional": true + }] + }, { + "ID": 14517, + "SourceStructureID": 55221, + "TargetStructureID": 9769, + "Label": "55221-9769 via Conventional from 55222 -> 30109", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55222, + "TargetID": 30109, + "Directional": true + }] + }, { + "ID": 14518, + "SourceStructureID": 55223, + "TargetStructureID": 9769, + "Label": "55223-9769 via Ribbon Synapse from 55224 -> 55225", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55224, + "TargetID": 55225, + "Directional": true + }] + }, { + "ID": 14519, + "SourceStructureID": 55279, + "TargetStructureID": 9769, + "Label": "55279-9769 via Conventional from 55280 -> 12395", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55280, + "TargetID": 12395, + "Directional": true + }] + }, { + "ID": 14520, + "SourceStructureID": 55308, + "TargetStructureID": 9769, + "Label": "55308-9769 via Conventional from 55309 -> 55307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55309, + "TargetID": 55307, + "Directional": true + }] + }, { + "ID": 14521, + "SourceStructureID": 55311, + "TargetStructureID": 268, + "Label": "55311-268 via Conventional from 55314 -> 55315", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55314, + "TargetID": 55315, + "Directional": true + }] + }, { + "ID": 14522, + "SourceStructureID": 55317, + "TargetStructureID": 9769, + "Label": "55317-9769 via Conventional from 55318 -> 55316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55318, + "TargetID": 55316, + "Directional": true + }] + }, { + "ID": 14523, + "SourceStructureID": 55330, + "TargetStructureID": 9769, + "Label": "55330-9769 via Conventional from 55331 -> 12331", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55331, + "TargetID": 12331, + "Directional": true + }] + }, { + "ID": 14524, + "SourceStructureID": 55359, + "TargetStructureID": 9769, + "Label": "55359-9769 via Conventional from 55360 -> 12359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55360, + "TargetID": 12359, + "Directional": true + }] + }, { + "ID": 14525, + "SourceStructureID": 55361, + "TargetStructureID": 9769, + "Label": "55361-9769 via Conventional from 55362 -> 12360", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55362, + "TargetID": 12360, + "Directional": true + }] + }, { + "ID": 14526, + "SourceStructureID": 55364, + "TargetStructureID": 9769, + "Label": "55364-9769 via Conventional from 55365 -> 10903", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55365, + "TargetID": 10903, + "Directional": true + }] + }, { + "ID": 14527, + "SourceStructureID": 55366, + "TargetStructureID": 9769, + "Label": "55366-9769 via Conventional from 55367 -> 29889", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55367, + "TargetID": 29889, + "Directional": true + }] + }, { + "ID": 14528, + "SourceStructureID": 55403, + "TargetStructureID": 324, + "Label": "55403-324 via Conventional from 55413 -> 55412, 55418 -> 55419, 55425 -> 55426, 55454 -> 55455", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55413, + "TargetID": 55412, + "Directional": true + }, { + "SourceID": 55418, + "TargetID": 55419, + "Directional": true + }, { + "SourceID": 55425, + "TargetID": 55426, + "Directional": true + }, { + "SourceID": 55454, + "TargetID": 55455, + "Directional": true + }] + }, { + "ID": 14529, + "SourceStructureID": 55403, + "TargetStructureID": 330, + "Label": "55403-330 via Conventional from 55439 -> 12424", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55439, + "TargetID": 12424, + "Directional": true + }] + }, { + "ID": 14530, + "SourceStructureID": 55403, + "TargetStructureID": 372, + "Label": "55403-372 via Conventional from 55446 -> 55445", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55446, + "TargetID": 55445, + "Directional": true + }] + }, { + "ID": 14531, + "SourceStructureID": 55403, + "TargetStructureID": 606, + "Label": "55403-606 via Conventional from 55405 -> 53269, 55410 -> 53274, 55447 -> 53315", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55405, + "TargetID": 53269, + "Directional": true + }, { + "SourceID": 55410, + "TargetID": 53274, + "Directional": true + }, { + "SourceID": 55447, + "TargetID": 53315, + "Directional": true + }] + }, { + "ID": 14532, + "SourceStructureID": 55403, + "TargetStructureID": 1724, + "Label": "55403-1724 via Conventional from 55461 -> 4042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55461, + "TargetID": 4042, + "Directional": true + }] + }, { + "ID": 14533, + "SourceStructureID": 55403, + "TargetStructureID": 5107, + "Label": "55403-5107 via Conventional from 55436 -> 55437", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55436, + "TargetID": 55437, + "Directional": true + }] + }, { + "ID": 14534, + "SourceStructureID": 55403, + "TargetStructureID": 20299, + "Label": "55403-20299 via Conventional from 55421 -> 55422", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55421, + "TargetID": 55422, + "Directional": true + }] + }, { + "ID": 14535, + "SourceStructureID": 55403, + "TargetStructureID": 31024, + "Label": "55403-31024 via Conventional from 55509 -> 55508, 55510 -> 55511", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55509, + "TargetID": 55508, + "Directional": true + }, { + "SourceID": 55510, + "TargetID": 55511, + "Directional": true + }] + }, { + "ID": 14536, + "SourceStructureID": 55403, + "TargetStructureID": 32581, + "Label": "55403-32581 via Conventional from 55430 -> 55431", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55430, + "TargetID": 55431, + "Directional": true + }] + }, { + "ID": 14537, + "SourceStructureID": 55403, + "TargetStructureID": 35894, + "Label": "55403-35894 via Conventional from 55457 -> 55458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55457, + "TargetID": 55458, + "Directional": true + }] + }, { + "ID": 14538, + "SourceStructureID": 55403, + "TargetStructureID": 38605, + "Label": "55403-38605 via Conventional from 55420 -> 101484", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55420, + "TargetID": 101484, + "Directional": true + }] + }, { + "ID": 14539, + "SourceStructureID": 55517, + "TargetStructureID": 170, + "Label": "55517-170 via Conventional from 55562 -> 55563", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55562, + "TargetID": 55563, + "Directional": true + }] + }, { + "ID": 14540, + "SourceStructureID": 55517, + "TargetStructureID": 277, + "Label": "55517-277 via Conventional from 55549 -> 55548, 55555 -> 26008", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55549, + "TargetID": 55548, + "Directional": true + }, { + "SourceID": 55555, + "TargetID": 26008, + "Directional": true + }] + }, { + "ID": 14541, + "SourceStructureID": 55517, + "TargetStructureID": 330, + "Label": "55517-330 via Conventional from 55546 -> 52977", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55546, + "TargetID": 52977, + "Directional": true + }] + }, { + "ID": 14542, + "SourceStructureID": 55517, + "TargetStructureID": 372, + "Label": "55517-372 via Conventional from 55524 -> 45647", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55524, + "TargetID": 45647, + "Directional": true + }] + }, { + "ID": 14543, + "SourceStructureID": 55517, + "TargetStructureID": 606, + "Label": "55517-606 via Conventional from 55519 -> 53305, 55554 -> 52850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55519, + "TargetID": 53305, + "Directional": true + }, { + "SourceID": 55554, + "TargetID": 52850, + "Directional": true + }] + }, { + "ID": 14544, + "SourceStructureID": 55517, + "TargetStructureID": 4569, + "Label": "55517-4569 via Conventional from 55566 -> 47442", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55566, + "TargetID": 47442, + "Directional": true + }] + }, { + "ID": 14545, + "SourceStructureID": 55517, + "TargetStructureID": 5279, + "Label": "55517-5279 via Conventional from 55572 -> 92709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55572, + "TargetID": 92709, + "Directional": true + }] + }, { + "ID": 14546, + "SourceStructureID": 55517, + "TargetStructureID": 5284, + "Label": "55517-5284 via Conventional from 55603 -> 55604", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55603, + "TargetID": 55604, + "Directional": true + }] + }, { + "ID": 14547, + "SourceStructureID": 55517, + "TargetStructureID": 6117, + "Label": "55517-6117 via Conventional from 55574 -> 55579, 55585 -> 83236, 55588 -> 30889", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55574, + "TargetID": 55579, + "Directional": true + }, { + "SourceID": 55585, + "TargetID": 83236, + "Directional": true + }, { + "SourceID": 55588, + "TargetID": 30889, + "Directional": true + }] + }, { + "ID": 14548, + "SourceStructureID": 55517, + "TargetStructureID": 9769, + "Label": "55517-9769 via Conventional from 55595 -> 55596", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55595, + "TargetID": 55596, + "Directional": true + }] + }, { + "ID": 14549, + "SourceStructureID": 55517, + "TargetStructureID": 32581, + "Label": "55517-32581 via Conventional from 55538 -> 55539", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55538, + "TargetID": 55539, + "Directional": true + }] + }, { + "ID": 14550, + "SourceStructureID": 55517, + "TargetStructureID": 59008, + "Label": "55517-59008 via Conventional from 55573 -> 59009", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55573, + "TargetID": 59009, + "Directional": true + }] + }, { + "ID": 14551, + "SourceStructureID": 55517, + "TargetStructureID": 75583, + "Label": "55517-75583 via Conventional from 55587 -> 83213", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55587, + "TargetID": 83213, + "Directional": true + }] + }, { + "ID": 14552, + "SourceStructureID": 55517, + "TargetStructureID": 83204, + "Label": "55517-83204 via Conventional from 55586 -> 83206", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55586, + "TargetID": 83206, + "Directional": true + }] + }, { + "ID": 14553, + "SourceStructureID": 55517, + "TargetStructureID": 83925, + "Label": "55517-83925 via Conventional from 55591 -> 83928", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55591, + "TargetID": 83928, + "Directional": true + }] + }, { + "ID": 14554, + "SourceStructureID": 55517, + "TargetStructureID": 90483, + "Label": "55517-90483 via Conventional from 55523 -> 90497", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55523, + "TargetID": 90497, + "Directional": true + }] + }, { + "ID": 14555, + "SourceStructureID": 55686, + "TargetStructureID": 7897, + "Label": "55686-7897 via Ribbon Synapse from 55687 -> 55685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 55687, + "TargetID": 55685, + "Directional": true + }] + }, { + "ID": 14556, + "SourceStructureID": 55697, + "TargetStructureID": 5499, + "Label": "55697-5499 via Conventional from 55701 -> 105488", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55701, + "TargetID": 105488, + "Directional": true + }] + }, { + "ID": 14557, + "SourceStructureID": 55697, + "TargetStructureID": 5503, + "Label": "55697-5503 via Conventional from 55702 -> 60727", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55702, + "TargetID": 60727, + "Directional": true + }] + }, { + "ID": 14558, + "SourceStructureID": 55697, + "TargetStructureID": 5520, + "Label": "55697-5520 via Conventional from 55699 -> 55700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55699, + "TargetID": 55700, + "Directional": true + }] + }, { + "ID": 14559, + "SourceStructureID": 55697, + "TargetStructureID": 7897, + "Label": "55697-7897 via Conventional from 55698 -> 55692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55698, + "TargetID": 55692, + "Directional": true + }] + }, { + "ID": 14560, + "SourceStructureID": 55830, + "TargetStructureID": 6047, + "Label": "55830-6047 via Conventional from 112347 -> 112346", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112347, + "TargetID": 112346, + "Directional": true + }] + }, { + "ID": 14561, + "SourceStructureID": 55830, + "TargetStructureID": 6050, + "Label": "55830-6050 via Conventional from 114235 -> 114234", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114235, + "TargetID": 114234, + "Directional": true + }] + }, { + "ID": 14562, + "SourceStructureID": 55837, + "TargetStructureID": 9769, + "Label": "55837-9769 via Conventional from 55838 -> 55836", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 55838, + "TargetID": 55836, + "Directional": true + }] + }, { + "ID": 14563, + "SourceStructureID": 56078, + "TargetStructureID": 6857, + "Label": "56078-6857 via Conventional from 56079 -> 6858", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56079, + "TargetID": 6858, + "Directional": true + }] + }, { + "ID": 14564, + "SourceStructureID": 56081, + "TargetStructureID": 6857, + "Label": "56081-6857 via Conventional from 56082 -> 6867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56082, + "TargetID": 6867, + "Directional": true + }] + }, { + "ID": 14565, + "SourceStructureID": 56086, + "TargetStructureID": 5530, + "Label": "56086-5530 via Conventional from 56087 -> 56088", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56087, + "TargetID": 56088, + "Directional": true + }] + }, { + "ID": 14566, + "SourceStructureID": 56148, + "TargetStructureID": 15796, + "Label": "56148-15796 via Conventional from 56149 -> 55760", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56149, + "TargetID": 55760, + "Directional": true + }] + }, { + "ID": 14567, + "SourceStructureID": 56191, + "TargetStructureID": 5150, + "Label": "56191-5150 via Ribbon Synapse from 56192 -> 5242", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56192, + "TargetID": 5242, + "Directional": true + }] + }, { + "ID": 14568, + "SourceStructureID": 56211, + "TargetStructureID": 46261, + "Label": "56211-46261 via Conventional from 56242 -> 56243", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56242, + "TargetID": 56243, + "Directional": true + }] + }, { + "ID": 14569, + "SourceStructureID": 56328, + "TargetStructureID": 7568, + "Label": "56328-7568 via Conventional from 85482 -> 27108", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85482, + "TargetID": 27108, + "Directional": true + }] + }, { + "ID": 14570, + "SourceStructureID": 56328, + "TargetStructureID": 131568, + "Label": "56328-131568 via Conventional from 85485 -> 131569", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85485, + "TargetID": 131569, + "Directional": true + }] + }, { + "ID": 14571, + "SourceStructureID": 56598, + "TargetStructureID": 9787, + "Label": "56598-9787 via Conventional from 56599 -> 12246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56599, + "TargetID": 12246, + "Directional": true + }] + }, { + "ID": 14572, + "SourceStructureID": 56600, + "TargetStructureID": 9787, + "Label": "56600-9787 via Ribbon Synapse from 56604 -> 12245, 56605 -> 12256", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56604, + "TargetID": 12245, + "Directional": true + }, { + "SourceID": 56605, + "TargetID": 12256, + "Directional": true + }] + }, { + "ID": 14573, + "SourceStructureID": 56631, + "TargetStructureID": 289, + "Label": "56631-289 via Ribbon Synapse from 56632 -> 56630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56632, + "TargetID": 56630, + "Directional": true + }] + }, { + "ID": 14574, + "SourceStructureID": 56643, + "TargetStructureID": 289, + "Label": "56643-289 via Ribbon Synapse from 56644 -> 56642", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 56644, + "TargetID": 56642, + "Directional": true + }] + }, { + "ID": 14575, + "SourceStructureID": 56704, + "TargetStructureID": 142, + "Label": "56704-142 via Conventional from 56707 -> 31789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56707, + "TargetID": 31789, + "Directional": true + }] + }, { + "ID": 14576, + "SourceStructureID": 56822, + "TargetStructureID": 171, + "Label": "56822-171 via Conventional from 130199 -> 6002", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130199, + "TargetID": 6002, + "Directional": true + }] + }, { + "ID": 14577, + "SourceStructureID": 56841, + "TargetStructureID": 5284, + "Label": "56841-5284 via Conventional from 56847 -> 113471, 56853 -> 54343, 113526 -> 113524, 113557 -> 98211", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56847, + "TargetID": 113471, + "Directional": true + }, { + "SourceID": 56853, + "TargetID": 54343, + "Directional": true + }, { + "SourceID": 113526, + "TargetID": 113524, + "Directional": true + }, { + "SourceID": 113557, + "TargetID": 98211, + "Directional": true + }] + }, { + "ID": 14578, + "SourceStructureID": 56841, + "TargetStructureID": 5297, + "Label": "56841-5297 via Conventional from 120273 -> 120274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120273, + "TargetID": 120274, + "Directional": true + }] + }, { + "ID": 14579, + "SourceStructureID": 56841, + "TargetStructureID": 5517, + "Label": "56841-5517 via Conventional from 56932 -> 49293", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56932, + "TargetID": 49293, + "Directional": true + }] + }, { + "ID": 14580, + "SourceStructureID": 56841, + "TargetStructureID": 5598, + "Label": "56841-5598 via Conventional from 56865 -> 114588, 113789 -> 113788", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56865, + "TargetID": 114588, + "Directional": true + }, { + "SourceID": 113789, + "TargetID": 113788, + "Directional": true + }] + }, { + "ID": 14581, + "SourceStructureID": 56841, + "TargetStructureID": 5650, + "Label": "56841-5650 via Conventional from 104993 -> 104994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104993, + "TargetID": 104994, + "Directional": true + }] + }, { + "ID": 14582, + "SourceStructureID": 56841, + "TargetStructureID": 6047, + "Label": "56841-6047 via Conventional from 56863 -> 56864", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56863, + "TargetID": 56864, + "Directional": true + }] + }, { + "ID": 14583, + "SourceStructureID": 56841, + "TargetStructureID": 6050, + "Label": "56841-6050 via Conventional from 56855 -> 56073, 56858 -> 114028, 56860 -> 114034, 113972 -> 113971", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56855, + "TargetID": 56073, + "Directional": true + }, { + "SourceID": 56858, + "TargetID": 114028, + "Directional": true + }, { + "SourceID": 56860, + "TargetID": 114034, + "Directional": true + }, { + "SourceID": 113972, + "TargetID": 113971, + "Directional": true + }] + }, { + "ID": 14584, + "SourceStructureID": 56841, + "TargetStructureID": 6117, + "Label": "56841-6117 via Conventional from 56845 -> 30870", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56845, + "TargetID": 30870, + "Directional": true + }] + }, { + "ID": 14585, + "SourceStructureID": 56841, + "TargetStructureID": 6203, + "Label": "56841-6203 via Conventional from 56868 -> 57214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56868, + "TargetID": 57214, + "Directional": true + }] + }, { + "ID": 14586, + "SourceStructureID": 56841, + "TargetStructureID": 20136, + "Label": "56841-20136 via Conventional from 56844 -> 20145", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56844, + "TargetID": 20145, + "Directional": true + }] + }, { + "ID": 14587, + "SourceStructureID": 56841, + "TargetStructureID": 28886, + "Label": "56841-28886 via Conventional from 56941 -> 51383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56941, + "TargetID": 51383, + "Directional": true + }] + }, { + "ID": 14588, + "SourceStructureID": 56841, + "TargetStructureID": 83954, + "Label": "56841-83954 via Conventional from 56846 -> 83956", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 56846, + "TargetID": 83956, + "Directional": true + }] + }, { + "ID": 14589, + "SourceStructureID": 57027, + "TargetStructureID": 5279, + "Label": "57027-5279 via Conventional from 99128 -> 99129", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99128, + "TargetID": 99129, + "Directional": true + }] + }, { + "ID": 14590, + "SourceStructureID": 57034, + "TargetStructureID": 3756, + "Label": "57034-3756 via Conventional from 120320 -> 116034", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120320, + "TargetID": 116034, + "Directional": true + }] + }, { + "ID": 14591, + "SourceStructureID": 57034, + "TargetStructureID": 5650, + "Label": "57034-5650 via Conventional from 125089 -> 125088", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125089, + "TargetID": 125088, + "Directional": true + }] + }, { + "ID": 14592, + "SourceStructureID": 57178, + "TargetStructureID": 35811, + "Label": "57178-35811 via Conventional from 57182 -> 35875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 57182, + "TargetID": 35875, + "Directional": true + }] + }, { + "ID": 14593, + "SourceStructureID": 57353, + "TargetStructureID": 5107, + "Label": "57353-5107 via Ribbon Synapse from 65078 -> 65077, 122890 -> 65073", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65078, + "TargetID": 65077, + "Directional": true + }, { + "SourceID": 122890, + "TargetID": 65073, + "Directional": true + }] + }, { + "ID": 14594, + "SourceStructureID": 57353, + "TargetStructureID": 5118, + "Label": "57353-5118 via BC Conventional Synapse from 124432 -> 124433", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 124432, + "TargetID": 124433, + "Directional": true + }] + }, { + "ID": 14595, + "SourceStructureID": 58441, + "TargetStructureID": 8575, + "Label": "58441-8575 via BC Conventional Synapse from 62076 -> 62075", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62076, + "TargetID": 62075, + "Directional": true + }] + }, { + "ID": 14596, + "SourceStructureID": 58441, + "TargetStructureID": 39957, + "Label": "58441-39957 via Ribbon Synapse from 58442 -> 58438, 58449 -> 58443", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58442, + "TargetID": 58438, + "Directional": true + }, { + "SourceID": 58449, + "TargetID": 58443, + "Directional": true + }] + }, { + "ID": 14597, + "SourceStructureID": 58441, + "TargetStructureID": 59333, + "Label": "58441-59333 via Ribbon Synapse from 59350 -> 59351", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59350, + "TargetID": 59351, + "Directional": true + }] + }, { + "ID": 14598, + "SourceStructureID": 58441, + "TargetStructureID": 59340, + "Label": "58441-59340 via Ribbon Synapse from 58446 -> 59344", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58446, + "TargetID": 59344, + "Directional": true + }] + }, { + "ID": 14599, + "SourceStructureID": 58441, + "TargetStructureID": 59347, + "Label": "58441-59347 via Ribbon Synapse from 58445 -> 59349", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 58445, + "TargetID": 59349, + "Directional": true + }] + }, { + "ID": 14600, + "SourceStructureID": 58592, + "TargetStructureID": 142, + "Label": "58592-142 via Conventional from 58636 -> 49759, 114530 -> 49743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58636, + "TargetID": 49759, + "Directional": true + }, { + "SourceID": 114530, + "TargetID": 49743, + "Directional": true + }] + }, { + "ID": 14601, + "SourceStructureID": 58592, + "TargetStructureID": 176, + "Label": "58592-176 via Conventional from 58648 -> 91304, 58658 -> 58659", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58648, + "TargetID": 91304, + "Directional": true + }, { + "SourceID": 58658, + "TargetID": 58659, + "Directional": true + }] + }, { + "ID": 14602, + "SourceStructureID": 58592, + "TargetStructureID": 4877, + "Label": "58592-4877 via Conventional from 58661 -> 33308", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58661, + "TargetID": 33308, + "Directional": true + }] + }, { + "ID": 14603, + "SourceStructureID": 58592, + "TargetStructureID": 5279, + "Label": "58592-5279 via Conventional from 58596 -> 49234, 58622 -> 58623, 58628 -> 49226, 58629 -> 58630", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58596, + "TargetID": 49234, + "Directional": true + }, { + "SourceID": 58622, + "TargetID": 58623, + "Directional": true + }, { + "SourceID": 58628, + "TargetID": 49226, + "Directional": true + }, { + "SourceID": 58629, + "TargetID": 58630, + "Directional": true + }] + }, { + "ID": 14604, + "SourceStructureID": 58592, + "TargetStructureID": 5534, + "Label": "58592-5534 via Conventional from 58676 -> 58677", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58676, + "TargetID": 58677, + "Directional": true + }] + }, { + "ID": 14605, + "SourceStructureID": 58592, + "TargetStructureID": 5607, + "Label": "58592-5607 via Conventional from 58681 -> 43085, 58685 -> 58684", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58681, + "TargetID": 43085, + "Directional": true + }, { + "SourceID": 58685, + "TargetID": 58684, + "Directional": true + }] + }, { + "ID": 14606, + "SourceStructureID": 58592, + "TargetStructureID": 5637, + "Label": "58592-5637 via Conventional from 58666 -> 58667, 58673 -> 58674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58666, + "TargetID": 58667, + "Directional": true + }, { + "SourceID": 58673, + "TargetID": 58674, + "Directional": true + }] + }, { + "ID": 14607, + "SourceStructureID": 58592, + "TargetStructureID": 5641, + "Label": "58592-5641 via Conventional from 58671 -> 58672", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58671, + "TargetID": 58672, + "Directional": true + }] + }, { + "ID": 14608, + "SourceStructureID": 58592, + "TargetStructureID": 6117, + "Label": "58592-6117 via Conventional from 58593 -> 10541, 86425 -> 86426", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58593, + "TargetID": 10541, + "Directional": true + }, { + "SourceID": 86425, + "TargetID": 86426, + "Directional": true + }] + }, { + "ID": 14609, + "SourceStructureID": 58592, + "TargetStructureID": 58642, + "Label": "58592-58642 via Conventional from 58641 -> 58643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58641, + "TargetID": 58643, + "Directional": true + }] + }, { + "ID": 14610, + "SourceStructureID": 58592, + "TargetStructureID": 58714, + "Label": "58592-58714 via Conventional from 86121 -> 86122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86121, + "TargetID": 86122, + "Directional": true + }] + }, { + "ID": 14611, + "SourceStructureID": 58687, + "TargetStructureID": 6117, + "Label": "58687-6117 via Conventional from 58688 -> 58689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58688, + "TargetID": 58689, + "Directional": true + }] + }, { + "ID": 14612, + "SourceStructureID": 58691, + "TargetStructureID": 6117, + "Label": "58691-6117 via Conventional from 58693 -> 58694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58693, + "TargetID": 58694, + "Directional": true + }] + }, { + "ID": 14613, + "SourceStructureID": 58696, + "TargetStructureID": 166, + "Label": "58696-166 via Conventional from 58702 -> 4480, 58703 -> 4482, 58705 -> 84812, 58708 -> 16161, 66712 -> 60008", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58702, + "TargetID": 4480, + "Directional": true + }, { + "SourceID": 58703, + "TargetID": 4482, + "Directional": true + }, { + "SourceID": 58705, + "TargetID": 84812, + "Directional": true + }, { + "SourceID": 58708, + "TargetID": 16161, + "Directional": true + }, { + "SourceID": 66712, + "TargetID": 60008, + "Directional": true + }] + }, { + "ID": 14614, + "SourceStructureID": 58696, + "TargetStructureID": 593, + "Label": "58696-593 via Conventional from 86960 -> 86961", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86960, + "TargetID": 86961, + "Directional": true + }] + }, { + "ID": 14615, + "SourceStructureID": 58696, + "TargetStructureID": 5377, + "Label": "58696-5377 via Conventional from 86954 -> 22746", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86954, + "TargetID": 22746, + "Directional": true + }] + }, { + "ID": 14616, + "SourceStructureID": 58696, + "TargetStructureID": 5562, + "Label": "58696-5562 via Conventional from 86969 -> 63790, 86979 -> 63846, 86983 -> 63615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86969, + "TargetID": 63790, + "Directional": true + }, { + "SourceID": 86979, + "TargetID": 63846, + "Directional": true + }, { + "SourceID": 86983, + "TargetID": 63615, + "Directional": true + }] + }, { + "ID": 14617, + "SourceStructureID": 58696, + "TargetStructureID": 6117, + "Label": "58696-6117 via Conventional from 58697 -> 58695", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58697, + "TargetID": 58695, + "Directional": true + }] + }, { + "ID": 14618, + "SourceStructureID": 58696, + "TargetStructureID": 84828, + "Label": "58696-84828 via Conventional from 84827 -> 84829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84827, + "TargetID": 84829, + "Directional": true + }] + }, { + "ID": 14619, + "SourceStructureID": 58696, + "TargetStructureID": 86943, + "Label": "58696-86943 via Conventional from 86942 -> 86944", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86942, + "TargetID": 86944, + "Directional": true + }] + }, { + "ID": 14620, + "SourceStructureID": 58696, + "TargetStructureID": 86965, + "Label": "58696-86965 via Conventional from 86964 -> 86966", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86964, + "TargetID": 86966, + "Directional": true + }] + }, { + "ID": 14621, + "SourceStructureID": 58696, + "TargetStructureID": 86985, + "Label": "58696-86985 via Conventional from 86984 -> 86986", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86984, + "TargetID": 86986, + "Directional": true + }] + }, { + "ID": 14622, + "SourceStructureID": 58709, + "TargetStructureID": 176, + "Label": "58709-176 via Conventional from 58712 -> 5814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58712, + "TargetID": 5814, + "Directional": true + }] + }, { + "ID": 14623, + "SourceStructureID": 58709, + "TargetStructureID": 6117, + "Label": "58709-6117 via Conventional from 58710 -> 58711", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58710, + "TargetID": 58711, + "Directional": true + }] + }, { + "ID": 14624, + "SourceStructureID": 58714, + "TargetStructureID": 4877, + "Label": "58714-4877 via Conventional from 58736 -> 58737, 58739 -> 33390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58736, + "TargetID": 58737, + "Directional": true + }, { + "SourceID": 58739, + "TargetID": 33390, + "Directional": true + }] + }, { + "ID": 14625, + "SourceStructureID": 58714, + "TargetStructureID": 5303, + "Label": "58714-5303 via Conventional from 58738 -> 35610", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58738, + "TargetID": 35610, + "Directional": true + }] + }, { + "ID": 14626, + "SourceStructureID": 58714, + "TargetStructureID": 6117, + "Label": "58714-6117 via Conventional from 58715 -> 58713, 58719 -> 20578, 86123 -> 20569, 86141 -> 20574, 86454 -> 86455", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58715, + "TargetID": 58713, + "Directional": true + }, { + "SourceID": 58719, + "TargetID": 20578, + "Directional": true + }, { + "SourceID": 86123, + "TargetID": 20569, + "Directional": true + }, { + "SourceID": 86141, + "TargetID": 20574, + "Directional": true + }, { + "SourceID": 86454, + "TargetID": 86455, + "Directional": true + }] + }, { + "ID": 14627, + "SourceStructureID": 58723, + "TargetStructureID": 6117, + "Label": "58723-6117 via Conventional from 58725 -> 20571, 58726 -> 20572", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58725, + "TargetID": 20571, + "Directional": true + }, { + "SourceID": 58726, + "TargetID": 20572, + "Directional": true + }] + }, { + "ID": 14628, + "SourceStructureID": 58723, + "TargetStructureID": 58714, + "Label": "58723-58714 via Conventional from 58724 -> 58722", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58724, + "TargetID": 58722, + "Directional": true + }] + }, { + "ID": 14629, + "SourceStructureID": 58745, + "TargetStructureID": 6117, + "Label": "58745-6117 via Conventional from 58746 -> 58744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58746, + "TargetID": 58744, + "Directional": true + }] + }, { + "ID": 14630, + "SourceStructureID": 58757, + "TargetStructureID": 5601, + "Label": "58757-5601 via Conventional from 58764 -> 127182", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58764, + "TargetID": 127182, + "Directional": true + }] + }, { + "ID": 14631, + "SourceStructureID": 58757, + "TargetStructureID": 6117, + "Label": "58757-6117 via Conventional from 58758 -> 58756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58758, + "TargetID": 58756, + "Directional": true + }] + }, { + "ID": 14632, + "SourceStructureID": 58773, + "TargetStructureID": 6117, + "Label": "58773-6117 via Conventional from 58774 -> 30924", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58774, + "TargetID": 30924, + "Directional": true + }] + }, { + "ID": 14633, + "SourceStructureID": 58777, + "TargetStructureID": 6117, + "Label": "58777-6117 via Conventional from 58785 -> 58786, 86597 -> 86598", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58785, + "TargetID": 58786, + "Directional": true + }, { + "SourceID": 86597, + "TargetID": 86598, + "Directional": true + }] + }, { + "ID": 14634, + "SourceStructureID": 58816, + "TargetStructureID": 1724, + "Label": "58816-1724 via Conventional from 58819 -> 1772", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58819, + "TargetID": 1772, + "Directional": true + }] + }, { + "ID": 14635, + "SourceStructureID": 58816, + "TargetStructureID": 5279, + "Label": "58816-5279 via Conventional from 58821 -> 25816", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58821, + "TargetID": 25816, + "Directional": true + }] + }, { + "ID": 14636, + "SourceStructureID": 58816, + "TargetStructureID": 6117, + "Label": "58816-6117 via Conventional from 85990 -> 58809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85990, + "TargetID": 58809, + "Directional": true + }] + }, { + "ID": 14637, + "SourceStructureID": 58827, + "TargetStructureID": 6117, + "Label": "58827-6117 via Conventional from 58828 -> 58810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 58828, + "TargetID": 58810, + "Directional": true + }] + }, { + "ID": 14638, + "SourceStructureID": 58829, + "TargetStructureID": 5561, + "Label": "58829-5561 via Conventional from 97652 -> 46307, 97679 -> 46303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97652, + "TargetID": 46307, + "Directional": true + }, { + "SourceID": 97679, + "TargetID": 46303, + "Directional": true + }] + }, { + "ID": 14639, + "SourceStructureID": 59012, + "TargetStructureID": 1724, + "Label": "59012-1724 via Conventional from 101524 -> 20197", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101524, + "TargetID": 20197, + "Directional": true + }] + }, { + "ID": 14640, + "SourceStructureID": 59012, + "TargetStructureID": 5279, + "Label": "59012-5279 via Conventional from 59013 -> 25826, 59014 -> 59015", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59013, + "TargetID": 25826, + "Directional": true + }, { + "SourceID": 59014, + "TargetID": 59015, + "Directional": true + }] + }, { + "ID": 14641, + "SourceStructureID": 59102, + "TargetStructureID": 593, + "Label": "59102-593 via Postsynapse from 59103 -> 59101", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 59103, + "TargetID": 59101, + "Directional": true + }] + }, { + "ID": 14642, + "SourceStructureID": 59125, + "TargetStructureID": 483, + "Label": "59125-483 via Conventional from 59126 -> 6704", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59126, + "TargetID": 6704, + "Directional": true + }] + }, { + "ID": 14643, + "SourceStructureID": 59139, + "TargetStructureID": 593, + "Label": "59139-593 via Conventional from 59141 -> 7700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59141, + "TargetID": 7700, + "Directional": true + }] + }, { + "ID": 14644, + "SourceStructureID": 59147, + "TargetStructureID": 909, + "Label": "59147-909 via Conventional from 59151 -> 30650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59151, + "TargetID": 30650, + "Directional": true + }] + }, { + "ID": 14645, + "SourceStructureID": 59147, + "TargetStructureID": 20136, + "Label": "59147-20136 via Conventional from 130468 -> 130467", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130468, + "TargetID": 130467, + "Directional": true + }] + }, { + "ID": 14646, + "SourceStructureID": 59147, + "TargetStructureID": 59145, + "Label": "59147-59145 via Conventional from 59148 -> 59149", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59148, + "TargetID": 59149, + "Directional": true + }] + }, { + "ID": 14647, + "SourceStructureID": 59163, + "TargetStructureID": 8575, + "Label": "59163-8575 via BC Conventional Synapse from 62440 -> 62438", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62440, + "TargetID": 62438, + "Directional": true + }] + }, { + "ID": 14648, + "SourceStructureID": 59211, + "TargetStructureID": 59223, + "Label": "59211-59223 via Ribbon Synapse from 59216 -> 59234, 59232 -> 59233", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59216, + "TargetID": 59234, + "Directional": true + }, { + "SourceID": 59232, + "TargetID": 59233, + "Directional": true + }] + }, { + "ID": 14649, + "SourceStructureID": 59225, + "TargetStructureID": 59223, + "Label": "59225-59223 via Conventional from 59227 -> 59228", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59227, + "TargetID": 59228, + "Directional": true + }] + }, { + "ID": 14650, + "SourceStructureID": 59229, + "TargetStructureID": 6136, + "Label": "59229-6136 via Conventional from 85556 -> 85557", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85556, + "TargetID": 85557, + "Directional": true + }] + }, { + "ID": 14651, + "SourceStructureID": 59229, + "TargetStructureID": 59251, + "Label": "59229-59251 via Conventional from 59250 -> 59252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59250, + "TargetID": 59252, + "Directional": true + }] + }, { + "ID": 14652, + "SourceStructureID": 59229, + "TargetStructureID": 59257, + "Label": "59229-59257 via Conventional from 59256 -> 59258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59256, + "TargetID": 59258, + "Directional": true + }] + }, { + "ID": 14653, + "SourceStructureID": 59243, + "TargetStructureID": 59223, + "Label": "59243-59223 via Conventional from 59244 -> 59242", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59244, + "TargetID": 59242, + "Directional": true + }] + }, { + "ID": 14654, + "SourceStructureID": 59247, + "TargetStructureID": 7144, + "Label": "59247-7144 via Conventional from 59248 -> 59246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59248, + "TargetID": 59246, + "Directional": true + }] + }, { + "ID": 14655, + "SourceStructureID": 59251, + "TargetStructureID": 59254, + "Label": "59251-59254 via Conventional from 59253 -> 59255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59253, + "TargetID": 59255, + "Directional": true + }] + }, { + "ID": 14656, + "SourceStructureID": 59262, + "TargetStructureID": 5497, + "Label": "59262-5497 via Ribbon Synapse from 62621 -> 62620, 62624 -> 62623, 62625 -> 62626", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62621, + "TargetID": 62620, + "Directional": true + }, { + "SourceID": 62624, + "TargetID": 62623, + "Directional": true + }, { + "SourceID": 62625, + "TargetID": 62626, + "Directional": true + }] + }, { + "ID": 14657, + "SourceStructureID": 59262, + "TargetStructureID": 59229, + "Label": "59262-59229 via Ribbon Synapse from 59263 -> 59261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59263, + "TargetID": 59261, + "Directional": true + }] + }, { + "ID": 14658, + "SourceStructureID": 59262, + "TargetStructureID": 59294, + "Label": "59262-59294 via Ribbon Synapse from 122437 -> 122438", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122437, + "TargetID": 122438, + "Directional": true + }] + }, { + "ID": 14659, + "SourceStructureID": 59262, + "TargetStructureID": 62627, + "Label": "59262-62627 via BC Conventional Synapse from 59292 -> 62628", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59292, + "TargetID": 62628, + "Directional": true + }] + }, { + "ID": 14660, + "SourceStructureID": 59294, + "TargetStructureID": 5566, + "Label": "59294-5566 via Conventional from 59298 -> 59321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59298, + "TargetID": 59321, + "Directional": true + }] + }, { + "ID": 14661, + "SourceStructureID": 59294, + "TargetStructureID": 59262, + "Label": "59294-59262 via Conventional from 59297 -> 122439, 59297 -> 122446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59297, + "TargetID": 122439, + "Directional": true + }, { + "SourceID": 59297, + "TargetID": 122446, + "Directional": true + }] + }, { + "ID": 14662, + "SourceStructureID": 59316, + "TargetStructureID": 5566, + "Label": "59316-5566 via Conventional from 59318 -> 59317", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59318, + "TargetID": 59317, + "Directional": true + }] + }, { + "ID": 14663, + "SourceStructureID": 59326, + "TargetStructureID": 4877, + "Label": "59326-4877 via Conventional from 59327 -> 59325", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59327, + "TargetID": 59325, + "Directional": true + }] + }, { + "ID": 14664, + "SourceStructureID": 59329, + "TargetStructureID": 4877, + "Label": "59329-4877 via Conventional from 59330 -> 59328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59330, + "TargetID": 59328, + "Directional": true + }] + }, { + "ID": 14665, + "SourceStructureID": 59331, + "TargetStructureID": 59145, + "Label": "59331-59145 via Conventional from 59332 -> 59153", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59332, + "TargetID": 59153, + "Directional": true + }] + }, { + "ID": 14666, + "SourceStructureID": 59333, + "TargetStructureID": 5497, + "Label": "59333-5497 via Conventional from 85041 -> 85043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85041, + "TargetID": 85043, + "Directional": true + }] + }, { + "ID": 14667, + "SourceStructureID": 59333, + "TargetStructureID": 5500, + "Label": "59333-5500 via Conventional from 59354 -> 59356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59354, + "TargetID": 59356, + "Directional": true + }] + }, { + "ID": 14668, + "SourceStructureID": 59333, + "TargetStructureID": 58441, + "Label": "59333-58441 via Conventional from 59352 -> 59353", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59352, + "TargetID": 59353, + "Directional": true + }] + }, { + "ID": 14669, + "SourceStructureID": 59333, + "TargetStructureID": 59347, + "Label": "59333-59347 via Conventional from 59338 -> 59348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59338, + "TargetID": 59348, + "Directional": true + }] + }, { + "ID": 14670, + "SourceStructureID": 59333, + "TargetStructureID": 85044, + "Label": "59333-85044 via Conventional from 85042 -> 85047", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85042, + "TargetID": 85047, + "Directional": true + }] + }, { + "ID": 14671, + "SourceStructureID": 59333, + "TargetStructureID": 85053, + "Label": "59333-85053 via Conventional from 85052 -> 85054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85052, + "TargetID": 85054, + "Directional": true + }] + }, { + "ID": 14672, + "SourceStructureID": 59333, + "TargetStructureID": 85059, + "Label": "59333-85059 via Conventional from 85058 -> 85060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85058, + "TargetID": 85060, + "Directional": true + }] + }, { + "ID": 14673, + "SourceStructureID": 59333, + "TargetStructureID": 85079, + "Label": "59333-85079 via Conventional from 85078 -> 85081", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85078, + "TargetID": 85081, + "Directional": true + }] + }, { + "ID": 14674, + "SourceStructureID": 59340, + "TargetStructureID": 58441, + "Label": "59340-58441 via Conventional from 59342 -> 59343", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59342, + "TargetID": 59343, + "Directional": true + }] + }, { + "ID": 14675, + "SourceStructureID": 59362, + "TargetStructureID": 5435, + "Label": "59362-5435 via Ribbon Synapse from 63792 -> 63793", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63792, + "TargetID": 63793, + "Directional": true + }] + }, { + "ID": 14676, + "SourceStructureID": 59362, + "TargetStructureID": 5497, + "Label": "59362-5497 via Ribbon Synapse from 59370 -> 62570", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59370, + "TargetID": 62570, + "Directional": true + }] + }, { + "ID": 14677, + "SourceStructureID": 59362, + "TargetStructureID": 7859, + "Label": "59362-7859 via Ribbon Synapse from 122452 -> 64638", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122452, + "TargetID": 64638, + "Directional": true + }] + }, { + "ID": 14678, + "SourceStructureID": 59362, + "TargetStructureID": 63628, + "Label": "59362-63628 via Ribbon Synapse from 63795 -> 63784", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63795, + "TargetID": 63784, + "Directional": true + }] + }, { + "ID": 14679, + "SourceStructureID": 59371, + "TargetStructureID": 59362, + "Label": "59371-59362 via Conventional from 59374 -> 59375", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59374, + "TargetID": 59375, + "Directional": true + }] + }, { + "ID": 14680, + "SourceStructureID": 59392, + "TargetStructureID": 5405, + "Label": "59392-5405 via Ribbon Synapse from 59416 -> 59418", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59416, + "TargetID": 59418, + "Directional": true + }] + }, { + "ID": 14681, + "SourceStructureID": 59392, + "TargetStructureID": 5497, + "Label": "59392-5497 via Ribbon Synapse from 59398 -> 62554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59398, + "TargetID": 62554, + "Directional": true + }] + }, { + "ID": 14682, + "SourceStructureID": 59422, + "TargetStructureID": 166, + "Label": "59422-166 via Conventional from 59449 -> 59450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59449, + "TargetID": 59450, + "Directional": true + }] + }, { + "ID": 14683, + "SourceStructureID": 59422, + "TargetStructureID": 483, + "Label": "59422-483 via Conventional from 59447 -> 59448, 59459 -> 51180, 59462 -> 59463, 59465 -> 6727, 59467 -> 59468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59447, + "TargetID": 59448, + "Directional": true + }, { + "SourceID": 59459, + "TargetID": 51180, + "Directional": true + }, { + "SourceID": 59462, + "TargetID": 59463, + "Directional": true + }, { + "SourceID": 59465, + "TargetID": 6727, + "Directional": true + }, { + "SourceID": 59467, + "TargetID": 59468, + "Directional": true + }] + }, { + "ID": 14684, + "SourceStructureID": 59422, + "TargetStructureID": 593, + "Label": "59422-593 via Conventional from 59426 -> 28402, 59505 -> 7702, 63964 -> 63962, 66650 -> 66649", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59426, + "TargetID": 28402, + "Directional": true + }, { + "SourceID": 59505, + "TargetID": 7702, + "Directional": true + }, { + "SourceID": 63964, + "TargetID": 63962, + "Directional": true + }, { + "SourceID": 66650, + "TargetID": 66649, + "Directional": true + }] + }, { + "ID": 14685, + "SourceStructureID": 59422, + "TargetStructureID": 5283, + "Label": "59422-5283 via Conventional from 59515 -> 24052", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59515, + "TargetID": 24052, + "Directional": true + }] + }, { + "ID": 14686, + "SourceStructureID": 59422, + "TargetStructureID": 6156, + "Label": "59422-6156 via Conventional from 59424 -> 59425, 59434 -> 28643, 117714 -> 117715", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59424, + "TargetID": 59425, + "Directional": true + }, { + "SourceID": 59434, + "TargetID": 28643, + "Directional": true + }, { + "SourceID": 117714, + "TargetID": 117715, + "Directional": true + }] + }, { + "ID": 14687, + "SourceStructureID": 59422, + "TargetStructureID": 16026, + "Label": "59422-16026 via Conventional from 59516 -> 22382", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59516, + "TargetID": 22382, + "Directional": true + }] + }, { + "ID": 14688, + "SourceStructureID": 59437, + "TargetStructureID": 483, + "Label": "59437-483 via Conventional from 59438 -> 6777", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59438, + "TargetID": 6777, + "Directional": true + }] + }, { + "ID": 14689, + "SourceStructureID": 59482, + "TargetStructureID": 5377, + "Label": "59482-5377 via Conventional from 87033 -> 87032", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87033, + "TargetID": 87032, + "Directional": true + }] + }, { + "ID": 14690, + "SourceStructureID": 59507, + "TargetStructureID": 59422, + "Label": "59507-59422 via Conventional from 59508 -> 59506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59508, + "TargetID": 59506, + "Directional": true + }] + }, { + "ID": 14691, + "SourceStructureID": 59510, + "TargetStructureID": 59422, + "Label": "59510-59422 via Conventional from 59511 -> 59509", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59511, + "TargetID": 59509, + "Directional": true + }] + }, { + "ID": 14692, + "SourceStructureID": 59518, + "TargetStructureID": 59422, + "Label": "59518-59422 via Conventional from 59519 -> 59517", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59519, + "TargetID": 59517, + "Directional": true + }] + }, { + "ID": 14693, + "SourceStructureID": 59521, + "TargetStructureID": 59422, + "Label": "59521-59422 via Conventional from 59522 -> 59520", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59522, + "TargetID": 59520, + "Directional": true + }] + }, { + "ID": 14694, + "SourceStructureID": 59524, + "TargetStructureID": 16073, + "Label": "59524-16073 via Conventional from 59544 -> 32212", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59544, + "TargetID": 32212, + "Directional": true + }] + }, { + "ID": 14695, + "SourceStructureID": 59524, + "TargetStructureID": 59539, + "Label": "59524-59539 via Conventional from 59538 -> 59540", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59538, + "TargetID": 59540, + "Directional": true + }] + }, { + "ID": 14696, + "SourceStructureID": 59535, + "TargetStructureID": 59524, + "Label": "59535-59524 via Conventional from 59536 -> 59534", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59536, + "TargetID": 59534, + "Directional": true + }] + }, { + "ID": 14697, + "SourceStructureID": 59632, + "TargetStructureID": 59629, + "Label": "59632-59629 via Conventional from 59633 -> 59631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59633, + "TargetID": 59631, + "Directional": true + }] + }, { + "ID": 14698, + "SourceStructureID": 59638, + "TargetStructureID": 5382, + "Label": "59638-5382 via Ribbon Synapse from 59640 -> 59639", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59640, + "TargetID": 59639, + "Directional": true + }] + }, { + "ID": 14699, + "SourceStructureID": 59715, + "TargetStructureID": 8580, + "Label": "59715-8580 via Conventional from 59716 -> 59714", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59716, + "TargetID": 59714, + "Directional": true + }] + }, { + "ID": 14700, + "SourceStructureID": 59718, + "TargetStructureID": 8580, + "Label": "59718-8580 via Conventional from 59719 -> 59717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59719, + "TargetID": 59717, + "Directional": true + }] + }, { + "ID": 14701, + "SourceStructureID": 59721, + "TargetStructureID": 8580, + "Label": "59721-8580 via Conventional from 59722 -> 59720", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59722, + "TargetID": 59720, + "Directional": true + }] + }, { + "ID": 14702, + "SourceStructureID": 59726, + "TargetStructureID": 8580, + "Label": "59726-8580 via Conventional from 59727 -> 59725", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59727, + "TargetID": 59725, + "Directional": true + }] + }, { + "ID": 14703, + "SourceStructureID": 59731, + "TargetStructureID": 8580, + "Label": "59731-8580 via Conventional from 59732 -> 59730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59732, + "TargetID": 59730, + "Directional": true + }] + }, { + "ID": 14704, + "SourceStructureID": 59734, + "TargetStructureID": 8580, + "Label": "59734-8580 via Conventional from 59735 -> 59733", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59735, + "TargetID": 59733, + "Directional": true + }] + }, { + "ID": 14705, + "SourceStructureID": 59737, + "TargetStructureID": 8580, + "Label": "59737-8580 via Conventional from 59738 -> 59736", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59738, + "TargetID": 59736, + "Directional": true + }] + }, { + "ID": 14706, + "SourceStructureID": 59751, + "TargetStructureID": 8580, + "Label": "59751-8580 via Conventional from 59752 -> 59750", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59752, + "TargetID": 59750, + "Directional": true + }] + }, { + "ID": 14707, + "SourceStructureID": 59756, + "TargetStructureID": 8580, + "Label": "59756-8580 via Conventional from 59757 -> 59755", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59757, + "TargetID": 59755, + "Directional": true + }] + }, { + "ID": 14708, + "SourceStructureID": 59761, + "TargetStructureID": 8580, + "Label": "59761-8580 via Conventional from 59762 -> 59760", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59762, + "TargetID": 59760, + "Directional": true + }] + }, { + "ID": 14709, + "SourceStructureID": 59763, + "TargetStructureID": 8580, + "Label": "59763-8580 via Conventional from 59764 -> 59759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59764, + "TargetID": 59759, + "Directional": true + }] + }, { + "ID": 14710, + "SourceStructureID": 59766, + "TargetStructureID": 8580, + "Label": "59766-8580 via Conventional from 59767 -> 59765", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59767, + "TargetID": 59765, + "Directional": true + }] + }, { + "ID": 14711, + "SourceStructureID": 59769, + "TargetStructureID": 8580, + "Label": "59769-8580 via Conventional from 59770 -> 59768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59770, + "TargetID": 59768, + "Directional": true + }] + }, { + "ID": 14712, + "SourceStructureID": 59772, + "TargetStructureID": 8580, + "Label": "59772-8580 via Conventional from 59773 -> 59771", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59773, + "TargetID": 59771, + "Directional": true + }] + }, { + "ID": 14713, + "SourceStructureID": 59775, + "TargetStructureID": 8580, + "Label": "59775-8580 via Conventional from 59776 -> 59774", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59776, + "TargetID": 59774, + "Directional": true + }] + }, { + "ID": 14714, + "SourceStructureID": 59779, + "TargetStructureID": 8580, + "Label": "59779-8580 via Conventional from 59780 -> 59778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59780, + "TargetID": 59778, + "Directional": true + }] + }, { + "ID": 14715, + "SourceStructureID": 59782, + "TargetStructureID": 8580, + "Label": "59782-8580 via Conventional from 59783 -> 59781", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59783, + "TargetID": 59781, + "Directional": true + }] + }, { + "ID": 14716, + "SourceStructureID": 59785, + "TargetStructureID": 8580, + "Label": "59785-8580 via Conventional from 59786 -> 59784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59786, + "TargetID": 59784, + "Directional": true + }] + }, { + "ID": 14717, + "SourceStructureID": 59796, + "TargetStructureID": 8580, + "Label": "59796-8580 via Conventional from 59797 -> 59795", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59797, + "TargetID": 59795, + "Directional": true + }] + }, { + "ID": 14718, + "SourceStructureID": 59801, + "TargetStructureID": 8580, + "Label": "59801-8580 via Conventional from 59802 -> 59800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59802, + "TargetID": 59800, + "Directional": true + }] + }, { + "ID": 14719, + "SourceStructureID": 59804, + "TargetStructureID": 8580, + "Label": "59804-8580 via Conventional from 59805 -> 59803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59805, + "TargetID": 59803, + "Directional": true + }] + }, { + "ID": 14720, + "SourceStructureID": 59811, + "TargetStructureID": 8580, + "Label": "59811-8580 via Conventional from 59812 -> 59809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59812, + "TargetID": 59809, + "Directional": true + }] + }, { + "ID": 14721, + "SourceStructureID": 59813, + "TargetStructureID": 8580, + "Label": "59813-8580 via Conventional from 59814 -> 59810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59814, + "TargetID": 59810, + "Directional": true + }] + }, { + "ID": 14722, + "SourceStructureID": 59816, + "TargetStructureID": 8580, + "Label": "59816-8580 via Conventional from 59817 -> 59815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59817, + "TargetID": 59815, + "Directional": true + }] + }, { + "ID": 14723, + "SourceStructureID": 59819, + "TargetStructureID": 8580, + "Label": "59819-8580 via Conventional from 59820 -> 59818", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59820, + "TargetID": 59818, + "Directional": true + }] + }, { + "ID": 14724, + "SourceStructureID": 59822, + "TargetStructureID": 8580, + "Label": "59822-8580 via Conventional from 59823 -> 59821", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59823, + "TargetID": 59821, + "Directional": true + }] + }, { + "ID": 14725, + "SourceStructureID": 59825, + "TargetStructureID": 8580, + "Label": "59825-8580 via Conventional from 59826 -> 59824", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59826, + "TargetID": 59824, + "Directional": true + }] + }, { + "ID": 14726, + "SourceStructureID": 59830, + "TargetStructureID": 8580, + "Label": "59830-8580 via Conventional from 59831 -> 59829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59831, + "TargetID": 59829, + "Directional": true + }] + }, { + "ID": 14727, + "SourceStructureID": 59837, + "TargetStructureID": 8580, + "Label": "59837-8580 via Conventional from 59839 -> 59838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59839, + "TargetID": 59838, + "Directional": true + }] + }, { + "ID": 14728, + "SourceStructureID": 59841, + "TargetStructureID": 8580, + "Label": "59841-8580 via Conventional from 59842 -> 59840", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59842, + "TargetID": 59840, + "Directional": true + }] + }, { + "ID": 14729, + "SourceStructureID": 59847, + "TargetStructureID": 59843, + "Label": "59847-59843 via Conventional from 59848 -> 59846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59848, + "TargetID": 59846, + "Directional": true + }] + }, { + "ID": 14730, + "SourceStructureID": 59851, + "TargetStructureID": 8580, + "Label": "59851-8580 via Conventional from 59852 -> 59850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59852, + "TargetID": 59850, + "Directional": true + }] + }, { + "ID": 14731, + "SourceStructureID": 59854, + "TargetStructureID": 8580, + "Label": "59854-8580 via Conventional from 59855 -> 59853", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59855, + "TargetID": 59853, + "Directional": true + }] + }, { + "ID": 14732, + "SourceStructureID": 59857, + "TargetStructureID": 8580, + "Label": "59857-8580 via Conventional from 59858 -> 59856", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59858, + "TargetID": 59856, + "Directional": true + }] + }, { + "ID": 14733, + "SourceStructureID": 59862, + "TargetStructureID": 8580, + "Label": "59862-8580 via Conventional from 59863 -> 59861", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59863, + "TargetID": 59861, + "Directional": true + }] + }, { + "ID": 14734, + "SourceStructureID": 59865, + "TargetStructureID": 8580, + "Label": "59865-8580 via Conventional from 59866 -> 59864", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59866, + "TargetID": 59864, + "Directional": true + }] + }, { + "ID": 14735, + "SourceStructureID": 59868, + "TargetStructureID": 8580, + "Label": "59868-8580 via Conventional from 59869 -> 59867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59869, + "TargetID": 59867, + "Directional": true + }] + }, { + "ID": 14736, + "SourceStructureID": 59872, + "TargetStructureID": 8580, + "Label": "59872-8580 via Conventional from 59873 -> 59870", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59873, + "TargetID": 59870, + "Directional": true + }] + }, { + "ID": 14737, + "SourceStructureID": 59890, + "TargetStructureID": 8580, + "Label": "59890-8580 via Conventional from 59891 -> 59660", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59891, + "TargetID": 59660, + "Directional": true + }] + }, { + "ID": 14738, + "SourceStructureID": 59896, + "TargetStructureID": 5491, + "Label": "59896-5491 via Conventional from 59897 -> 41950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59897, + "TargetID": 41950, + "Directional": true + }] + }, { + "ID": 14739, + "SourceStructureID": 59904, + "TargetStructureID": 8578, + "Label": "59904-8578 via Conventional from 59905 -> 59903", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59905, + "TargetID": 59903, + "Directional": true + }] + }, { + "ID": 14740, + "SourceStructureID": 59910, + "TargetStructureID": 8578, + "Label": "59910-8578 via Conventional from 59911 -> 59909", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59911, + "TargetID": 59909, + "Directional": true + }] + }, { + "ID": 14741, + "SourceStructureID": 59913, + "TargetStructureID": 8578, + "Label": "59913-8578 via Conventional from 59914 -> 59912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59914, + "TargetID": 59912, + "Directional": true + }] + }, { + "ID": 14742, + "SourceStructureID": 59916, + "TargetStructureID": 8578, + "Label": "59916-8578 via BC Conventional Synapse from 59917 -> 59915", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59917, + "TargetID": 59915, + "Directional": true + }] + }, { + "ID": 14743, + "SourceStructureID": 59919, + "TargetStructureID": 8578, + "Label": "59919-8578 via Ribbon Synapse from 59920 -> 59918", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 59920, + "TargetID": 59918, + "Directional": true + }] + }, { + "ID": 14744, + "SourceStructureID": 59922, + "TargetStructureID": 8578, + "Label": "59922-8578 via Conventional from 59923 -> 59921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59923, + "TargetID": 59921, + "Directional": true + }] + }, { + "ID": 14745, + "SourceStructureID": 59929, + "TargetStructureID": 8578, + "Label": "59929-8578 via Conventional from 59930 -> 59928", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59930, + "TargetID": 59928, + "Directional": true + }] + }, { + "ID": 14746, + "SourceStructureID": 59932, + "TargetStructureID": 8578, + "Label": "59932-8578 via Conventional from 59933 -> 59931", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59933, + "TargetID": 59931, + "Directional": true + }] + }, { + "ID": 14747, + "SourceStructureID": 59935, + "TargetStructureID": 8578, + "Label": "59935-8578 via Conventional from 59936 -> 59934", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59936, + "TargetID": 59934, + "Directional": true + }] + }, { + "ID": 14748, + "SourceStructureID": 59940, + "TargetStructureID": 40480, + "Label": "59940-40480 via Conventional from 59941 -> 59939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59941, + "TargetID": 59939, + "Directional": true + }] + }, { + "ID": 14749, + "SourceStructureID": 59943, + "TargetStructureID": 40480, + "Label": "59943-40480 via Conventional from 59944 -> 59942", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59944, + "TargetID": 59942, + "Directional": true + }] + }, { + "ID": 14750, + "SourceStructureID": 59947, + "TargetStructureID": 40480, + "Label": "59947-40480 via Conventional from 59948 -> 59946", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59948, + "TargetID": 59946, + "Directional": true + }] + }, { + "ID": 14751, + "SourceStructureID": 59953, + "TargetStructureID": 40480, + "Label": "59953-40480 via Conventional from 59954 -> 59952", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59954, + "TargetID": 59952, + "Directional": true + }] + }, { + "ID": 14752, + "SourceStructureID": 59957, + "TargetStructureID": 40480, + "Label": "59957-40480 via Conventional from 59958 -> 59956", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59958, + "TargetID": 59956, + "Directional": true + }] + }, { + "ID": 14753, + "SourceStructureID": 59960, + "TargetStructureID": 40480, + "Label": "59960-40480 via Conventional from 59961 -> 59959", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59961, + "TargetID": 59959, + "Directional": true + }] + }, { + "ID": 14754, + "SourceStructureID": 59963, + "TargetStructureID": 40480, + "Label": "59963-40480 via Conventional from 59964 -> 59962", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59964, + "TargetID": 59962, + "Directional": true + }] + }, { + "ID": 14755, + "SourceStructureID": 59966, + "TargetStructureID": 59963, + "Label": "59966-59963 via Conventional from 59968 -> 59965", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 59968, + "TargetID": 59965, + "Directional": true + }] + }, { + "ID": 14756, + "SourceStructureID": 60067, + "TargetStructureID": 173, + "Label": "60067-173 via Conventional from 60068 -> 60066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60068, + "TargetID": 60066, + "Directional": true + }] + }, { + "ID": 14757, + "SourceStructureID": 60074, + "TargetStructureID": 8720, + "Label": "60074-8720 via Conventional from 60075 -> 15293", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60075, + "TargetID": 15293, + "Directional": true + }] + }, { + "ID": 14758, + "SourceStructureID": 60078, + "TargetStructureID": 8720, + "Label": "60078-8720 via Conventional from 60079 -> 60077", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60079, + "TargetID": 60077, + "Directional": true + }] + }, { + "ID": 14759, + "SourceStructureID": 60083, + "TargetStructureID": 8720, + "Label": "60083-8720 via Conventional from 60084 -> 60082", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60084, + "TargetID": 60082, + "Directional": true + }] + }, { + "ID": 14760, + "SourceStructureID": 60083, + "TargetStructureID": 67354, + "Label": "60083-67354 via Conventional from 91536 -> 91535", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91536, + "TargetID": 91535, + "Directional": true + }] + }, { + "ID": 14761, + "SourceStructureID": 60086, + "TargetStructureID": 8720, + "Label": "60086-8720 via Conventional from 60087 -> 15307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60087, + "TargetID": 15307, + "Directional": true + }] + }, { + "ID": 14762, + "SourceStructureID": 60088, + "TargetStructureID": 8720, + "Label": "60088-8720 via Conventional from 60089 -> 15309", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60089, + "TargetID": 15309, + "Directional": true + }] + }, { + "ID": 14763, + "SourceStructureID": 60088, + "TargetStructureID": 65267, + "Label": "60088-65267 via Conventional from 65300 -> 65299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65300, + "TargetID": 65299, + "Directional": true + }] + }, { + "ID": 14764, + "SourceStructureID": 60090, + "TargetStructureID": 8720, + "Label": "60090-8720 via Conventional from 60091 -> 15308", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60091, + "TargetID": 15308, + "Directional": true + }] + }, { + "ID": 14765, + "SourceStructureID": 60094, + "TargetStructureID": 8720, + "Label": "60094-8720 via Ribbon Synapse from 60095 -> 15311", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60095, + "TargetID": 15311, + "Directional": true + }] + }, { + "ID": 14766, + "SourceStructureID": 60098, + "TargetStructureID": 8720, + "Label": "60098-8720 via Conventional from 60099 -> 60097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60099, + "TargetID": 60097, + "Directional": true + }] + }, { + "ID": 14767, + "SourceStructureID": 60100, + "TargetStructureID": 8720, + "Label": "60100-8720 via Conventional from 60101 -> 15312", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60101, + "TargetID": 15312, + "Directional": true + }] + }, { + "ID": 14768, + "SourceStructureID": 60104, + "TargetStructureID": 8720, + "Label": "60104-8720 via Conventional from 60105 -> 15294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60105, + "TargetID": 15294, + "Directional": true + }] + }, { + "ID": 14769, + "SourceStructureID": 60106, + "TargetStructureID": 8720, + "Label": "60106-8720 via Conventional from 60107 -> 15297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60107, + "TargetID": 15297, + "Directional": true + }] + }, { + "ID": 14770, + "SourceStructureID": 60115, + "TargetStructureID": 8720, + "Label": "60115-8720 via Conventional from 60116 -> 60114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60116, + "TargetID": 60114, + "Directional": true + }] + }, { + "ID": 14771, + "SourceStructureID": 60191, + "TargetStructureID": 483, + "Label": "60191-483 via Conventional from 60192 -> 6781", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60192, + "TargetID": 6781, + "Directional": true + }] + }, { + "ID": 14772, + "SourceStructureID": 60193, + "TargetStructureID": 483, + "Label": "60193-483 via Conventional from 60194 -> 6790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60194, + "TargetID": 6790, + "Directional": true + }] + }, { + "ID": 14773, + "SourceStructureID": 60200, + "TargetStructureID": 483, + "Label": "60200-483 via Conventional from 60203 -> 6788", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60203, + "TargetID": 6788, + "Directional": true + }] + }, { + "ID": 14774, + "SourceStructureID": 60211, + "TargetStructureID": 483, + "Label": "60211-483 via Conventional from 60212 -> 6792", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60212, + "TargetID": 6792, + "Directional": true + }] + }, { + "ID": 14775, + "SourceStructureID": 60215, + "TargetStructureID": 483, + "Label": "60215-483 via Conventional from 60220 -> 6793", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60220, + "TargetID": 6793, + "Directional": true + }] + }, { + "ID": 14776, + "SourceStructureID": 60218, + "TargetStructureID": 483, + "Label": "60218-483 via Conventional from 60219 -> 6799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60219, + "TargetID": 6799, + "Directional": true + }] + }, { + "ID": 14777, + "SourceStructureID": 60221, + "TargetStructureID": 483, + "Label": "60221-483 via Conventional from 60222 -> 6795", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60222, + "TargetID": 6795, + "Directional": true + }] + }, { + "ID": 14778, + "SourceStructureID": 60225, + "TargetStructureID": 483, + "Label": "60225-483 via Conventional from 60226 -> 6800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60226, + "TargetID": 6800, + "Directional": true + }] + }, { + "ID": 14779, + "SourceStructureID": 60232, + "TargetStructureID": 60229, + "Label": "60232-60229 via Conventional from 60233 -> 60231", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60233, + "TargetID": 60231, + "Directional": true + }] + }, { + "ID": 14780, + "SourceStructureID": 60236, + "TargetStructureID": 483, + "Label": "60236-483 via Conventional from 60237 -> 60235", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60237, + "TargetID": 60235, + "Directional": true + }] + }, { + "ID": 14781, + "SourceStructureID": 60239, + "TargetStructureID": 483, + "Label": "60239-483 via Conventional from 60240 -> 60238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60240, + "TargetID": 60238, + "Directional": true + }] + }, { + "ID": 14782, + "SourceStructureID": 60243, + "TargetStructureID": 5528, + "Label": "60243-5528 via Conventional from 60245 -> 60249", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60245, + "TargetID": 60249, + "Directional": true + }] + }, { + "ID": 14783, + "SourceStructureID": 60243, + "TargetStructureID": 8720, + "Label": "60243-8720 via Conventional from 60244 -> 60242", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60244, + "TargetID": 60242, + "Directional": true + }] + }, { + "ID": 14784, + "SourceStructureID": 60246, + "TargetStructureID": 5528, + "Label": "60246-5528 via Conventional from 60247 -> 8264", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60247, + "TargetID": 8264, + "Directional": true + }] + }, { + "ID": 14785, + "SourceStructureID": 60252, + "TargetStructureID": 8720, + "Label": "60252-8720 via Conventional from 60253 -> 60251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60253, + "TargetID": 60251, + "Directional": true + }] + }, { + "ID": 14786, + "SourceStructureID": 60256, + "TargetStructureID": 8720, + "Label": "60256-8720 via Conventional from 60257 -> 60255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60257, + "TargetID": 60255, + "Directional": true + }] + }, { + "ID": 14787, + "SourceStructureID": 60260, + "TargetStructureID": 8720, + "Label": "60260-8720 via Conventional from 60261 -> 60259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60261, + "TargetID": 60259, + "Directional": true + }] + }, { + "ID": 14788, + "SourceStructureID": 60264, + "TargetStructureID": 431, + "Label": "60264-431 via Conventional from 60266 -> 12686", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60266, + "TargetID": 12686, + "Directional": true + }] + }, { + "ID": 14789, + "SourceStructureID": 60264, + "TargetStructureID": 8720, + "Label": "60264-8720 via Conventional from 60265 -> 60263", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60265, + "TargetID": 60263, + "Directional": true + }] + }, { + "ID": 14790, + "SourceStructureID": 60272, + "TargetStructureID": 440, + "Label": "60272-440 via Conventional from 60274 -> 60271", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60274, + "TargetID": 60271, + "Directional": true + }] + }, { + "ID": 14791, + "SourceStructureID": 60288, + "TargetStructureID": 440, + "Label": "60288-440 via Conventional from 60289 -> 60287", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60289, + "TargetID": 60287, + "Directional": true + }] + }, { + "ID": 14792, + "SourceStructureID": 60306, + "TargetStructureID": 440, + "Label": "60306-440 via Conventional from 60307 -> 60305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60307, + "TargetID": 60305, + "Directional": true + }] + }, { + "ID": 14793, + "SourceStructureID": 60328, + "TargetStructureID": 8720, + "Label": "60328-8720 via Conventional from 60329 -> 60327", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60329, + "TargetID": 60327, + "Directional": true + }] + }, { + "ID": 14794, + "SourceStructureID": 60331, + "TargetStructureID": 483, + "Label": "60331-483 via Conventional from 60332 -> 6796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60332, + "TargetID": 6796, + "Directional": true + }] + }, { + "ID": 14795, + "SourceStructureID": 60337, + "TargetStructureID": 483, + "Label": "60337-483 via Conventional from 60342 -> 60343", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60342, + "TargetID": 60343, + "Directional": true + }] + }, { + "ID": 14796, + "SourceStructureID": 60344, + "TargetStructureID": 483, + "Label": "60344-483 via Conventional from 60345 -> 6809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60345, + "TargetID": 6809, + "Directional": true + }] + }, { + "ID": 14797, + "SourceStructureID": 60346, + "TargetStructureID": 483, + "Label": "60346-483 via Conventional from 60347 -> 6807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60347, + "TargetID": 6807, + "Directional": true + }] + }, { + "ID": 14798, + "SourceStructureID": 60348, + "TargetStructureID": 483, + "Label": "60348-483 via Conventional from 60349 -> 6810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60349, + "TargetID": 6810, + "Directional": true + }] + }, { + "ID": 14799, + "SourceStructureID": 60350, + "TargetStructureID": 483, + "Label": "60350-483 via Conventional from 60351 -> 6808", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60351, + "TargetID": 6808, + "Directional": true + }] + }, { + "ID": 14800, + "SourceStructureID": 60354, + "TargetStructureID": 483, + "Label": "60354-483 via Conventional from 60355 -> 6815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60355, + "TargetID": 6815, + "Directional": true + }] + }, { + "ID": 14801, + "SourceStructureID": 60381, + "TargetStructureID": 992, + "Label": "60381-992 via Conventional from 60382 -> 994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60382, + "TargetID": 994, + "Directional": true + }] + }, { + "ID": 14802, + "SourceStructureID": 60381, + "TargetStructureID": 60386, + "Label": "60381-60386 via Conventional from 60385 -> 60387", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60385, + "TargetID": 60387, + "Directional": true + }] + }, { + "ID": 14803, + "SourceStructureID": 60389, + "TargetStructureID": 60386, + "Label": "60389-60386 via Conventional from 60390 -> 60388", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60390, + "TargetID": 60388, + "Directional": true + }] + }, { + "ID": 14804, + "SourceStructureID": 60424, + "TargetStructureID": 514, + "Label": "60424-514 via Conventional from 60425 -> 15468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60425, + "TargetID": 15468, + "Directional": true + }] + }, { + "ID": 14805, + "SourceStructureID": 60426, + "TargetStructureID": 514, + "Label": "60426-514 via Conventional from 60427 -> 15467", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60427, + "TargetID": 15467, + "Directional": true + }] + }, { + "ID": 14806, + "SourceStructureID": 60428, + "TargetStructureID": 514, + "Label": "60428-514 via Conventional from 60429 -> 1156", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60429, + "TargetID": 1156, + "Directional": true + }] + }, { + "ID": 14807, + "SourceStructureID": 60430, + "TargetStructureID": 514, + "Label": "60430-514 via Conventional from 60431 -> 1145", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60431, + "TargetID": 1145, + "Directional": true + }] + }, { + "ID": 14808, + "SourceStructureID": 60432, + "TargetStructureID": 8485, + "Label": "60432-8485 via Conventional from 60433 -> 15369", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60433, + "TargetID": 15369, + "Directional": true + }] + }, { + "ID": 14809, + "SourceStructureID": 60434, + "TargetStructureID": 8485, + "Label": "60434-8485 via Conventional from 60435 -> 15368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60435, + "TargetID": 15368, + "Directional": true + }] + }, { + "ID": 14810, + "SourceStructureID": 60436, + "TargetStructureID": 514, + "Label": "60436-514 via Conventional from 60437 -> 8941", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60437, + "TargetID": 8941, + "Directional": true + }] + }, { + "ID": 14811, + "SourceStructureID": 60438, + "TargetStructureID": 514, + "Label": "60438-514 via Conventional from 60439 -> 3236", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60439, + "TargetID": 3236, + "Directional": true + }] + }, { + "ID": 14812, + "SourceStructureID": 60449, + "TargetStructureID": 514, + "Label": "60449-514 via Conventional from 60450 -> 11669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60450, + "TargetID": 11669, + "Directional": true + }] + }, { + "ID": 14813, + "SourceStructureID": 60451, + "TargetStructureID": 514, + "Label": "60451-514 via Conventional from 60452 -> 1140", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60452, + "TargetID": 1140, + "Directional": true + }] + }, { + "ID": 14814, + "SourceStructureID": 60454, + "TargetStructureID": 597, + "Label": "60454-597 via Conventional from 60455 -> 60453", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60455, + "TargetID": 60453, + "Directional": true + }] + }, { + "ID": 14815, + "SourceStructureID": 60457, + "TargetStructureID": 597, + "Label": "60457-597 via Conventional from 60458 -> 60456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60458, + "TargetID": 60456, + "Directional": true + }] + }, { + "ID": 14816, + "SourceStructureID": 60460, + "TargetStructureID": 597, + "Label": "60460-597 via Conventional from 60461 -> 60459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60461, + "TargetID": 60459, + "Directional": true + }] + }, { + "ID": 14817, + "SourceStructureID": 60463, + "TargetStructureID": 597, + "Label": "60463-597 via Conventional from 60464 -> 60462", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60464, + "TargetID": 60462, + "Directional": true + }] + }, { + "ID": 14818, + "SourceStructureID": 60466, + "TargetStructureID": 597, + "Label": "60466-597 via Conventional from 60467 -> 60465", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60467, + "TargetID": 60465, + "Directional": true + }] + }, { + "ID": 14819, + "SourceStructureID": 60484, + "TargetStructureID": 597, + "Label": "60484-597 via Conventional from 60485 -> 60483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60485, + "TargetID": 60483, + "Directional": true + }] + }, { + "ID": 14820, + "SourceStructureID": 60487, + "TargetStructureID": 597, + "Label": "60487-597 via Conventional from 60488 -> 60486", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60488, + "TargetID": 60486, + "Directional": true + }] + }, { + "ID": 14821, + "SourceStructureID": 60503, + "TargetStructureID": 40919, + "Label": "60503-40919 via Conventional from 60504 -> 60502", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60504, + "TargetID": 60502, + "Directional": true + }] + }, { + "ID": 14822, + "SourceStructureID": 60519, + "TargetStructureID": 304, + "Label": "60519-304 via Conventional from 60520 -> 60518", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60520, + "TargetID": 60518, + "Directional": true + }] + }, { + "ID": 14823, + "SourceStructureID": 60523, + "TargetStructureID": 517, + "Label": "60523-517 via Conventional from 60524 -> 60522", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60524, + "TargetID": 60522, + "Directional": true + }] + }, { + "ID": 14824, + "SourceStructureID": 60535, + "TargetStructureID": 54744, + "Label": "60535-54744 via Conventional from 60536 -> 54753", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60536, + "TargetID": 54753, + "Directional": true + }] + }, { + "ID": 14825, + "SourceStructureID": 60542, + "TargetStructureID": 60535, + "Label": "60542-60535 via Conventional from 60543 -> 60541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60543, + "TargetID": 60541, + "Directional": true + }] + }, { + "ID": 14826, + "SourceStructureID": 60547, + "TargetStructureID": 43130, + "Label": "60547-43130 via Conventional from 60548 -> 60546", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60548, + "TargetID": 60546, + "Directional": true + }] + }, { + "ID": 14827, + "SourceStructureID": 60549, + "TargetStructureID": 4567, + "Label": "60549-4567 via Conventional from 60551 -> 60555", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60551, + "TargetID": 60555, + "Directional": true + }] + }, { + "ID": 14828, + "SourceStructureID": 60549, + "TargetStructureID": 5281, + "Label": "60549-5281 via Conventional from 60550 -> 36775", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60550, + "TargetID": 36775, + "Directional": true + }] + }, { + "ID": 14829, + "SourceStructureID": 60556, + "TargetStructureID": 5281, + "Label": "60556-5281 via Conventional from 60557 -> 36778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60557, + "TargetID": 36778, + "Directional": true + }] + }, { + "ID": 14830, + "SourceStructureID": 60558, + "TargetStructureID": 5281, + "Label": "60558-5281 via Conventional from 60559 -> 36790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60559, + "TargetID": 36790, + "Directional": true + }] + }, { + "ID": 14831, + "SourceStructureID": 60558, + "TargetStructureID": 7113, + "Label": "60558-7113 via Conventional from 60562 -> 60569", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60562, + "TargetID": 60569, + "Directional": true + }] + }, { + "ID": 14832, + "SourceStructureID": 60572, + "TargetStructureID": 5454, + "Label": "60572-5454 via Conventional from 60573 -> 38433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60573, + "TargetID": 38433, + "Directional": true + }] + }, { + "ID": 14833, + "SourceStructureID": 60645, + "TargetStructureID": 166, + "Label": "60645-166 via Conventional from 60650 -> 60651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60650, + "TargetID": 60651, + "Directional": true + }] + }, { + "ID": 14834, + "SourceStructureID": 60645, + "TargetStructureID": 485, + "Label": "60645-485 via Conventional from 101366 -> 101365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101366, + "TargetID": 101365, + "Directional": true + }] + }, { + "ID": 14835, + "SourceStructureID": 60645, + "TargetStructureID": 6156, + "Label": "60645-6156 via Conventional from 60647 -> 60644", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60647, + "TargetID": 60644, + "Directional": true + }] + }, { + "ID": 14836, + "SourceStructureID": 60657, + "TargetStructureID": 5118, + "Label": "60657-5118 via Conventional from 61432 -> 6515", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61432, + "TargetID": 6515, + "Directional": true + }] + }, { + "ID": 14837, + "SourceStructureID": 60657, + "TargetStructureID": 6156, + "Label": "60657-6156 via Conventional from 60658 -> 28679", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60658, + "TargetID": 28679, + "Directional": true + }] + }, { + "ID": 14838, + "SourceStructureID": 60657, + "TargetStructureID": 8575, + "Label": "60657-8575 via Conventional from 61431 -> 17382, 61434 -> 62080", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61431, + "TargetID": 17382, + "Directional": true + }, { + "SourceID": 61434, + "TargetID": 62080, + "Directional": true + }] + }, { + "ID": 14839, + "SourceStructureID": 60657, + "TargetStructureID": 61439, + "Label": "60657-61439 via Conventional from 61438 -> 61444, 61443 -> 61442", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61438, + "TargetID": 61444, + "Directional": true + }, { + "SourceID": 61443, + "TargetID": 61442, + "Directional": true + }] + }, { + "ID": 14840, + "SourceStructureID": 60657, + "TargetStructureID": 61450, + "Label": "60657-61450 via Conventional from 61449 -> 61452", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61449, + "TargetID": 61452, + "Directional": true + }] + }, { + "ID": 14841, + "SourceStructureID": 60840, + "TargetStructureID": 591, + "Label": "60840-591 via Conventional from 60841 -> 10075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60841, + "TargetID": 10075, + "Directional": true + }] + }, { + "ID": 14842, + "SourceStructureID": 60863, + "TargetStructureID": 11031, + "Label": "60863-11031 via Conventional from 60866 -> 60868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60866, + "TargetID": 60868, + "Directional": true + }] + }, { + "ID": 14843, + "SourceStructureID": 60873, + "TargetStructureID": 6169, + "Label": "60873-6169 via Conventional from 60874 -> 60875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60874, + "TargetID": 60875, + "Directional": true + }] + }, { + "ID": 14844, + "SourceStructureID": 60873, + "TargetStructureID": 11031, + "Label": "60873-11031 via Conventional from 60876 -> 60877", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60876, + "TargetID": 60877, + "Directional": true + }] + }, { + "ID": 14845, + "SourceStructureID": 60879, + "TargetStructureID": 12897, + "Label": "60879-12897 via Conventional from 60880 -> 60878", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60880, + "TargetID": 60878, + "Directional": true + }] + }, { + "ID": 14846, + "SourceStructureID": 60893, + "TargetStructureID": 6169, + "Label": "60893-6169 via Conventional from 60894 -> 23040", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60894, + "TargetID": 23040, + "Directional": true + }] + }, { + "ID": 14847, + "SourceStructureID": 60895, + "TargetStructureID": 6169, + "Label": "60895-6169 via Conventional from 60896 -> 23041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60896, + "TargetID": 23041, + "Directional": true + }] + }, { + "ID": 14848, + "SourceStructureID": 60917, + "TargetStructureID": 6169, + "Label": "60917-6169 via Conventional from 60918 -> 60916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60918, + "TargetID": 60916, + "Directional": true + }] + }, { + "ID": 14849, + "SourceStructureID": 60967, + "TargetStructureID": 60976, + "Label": "60967-60976 via Conventional from 60975 -> 60985", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 60975, + "TargetID": 60985, + "Directional": true + }] + }, { + "ID": 14850, + "SourceStructureID": 60976, + "TargetStructureID": 60967, + "Label": "60976-60967 via Ribbon Synapse from 60982 -> 60994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 60982, + "TargetID": 60994, + "Directional": true + }] + }, { + "ID": 14851, + "SourceStructureID": 61108, + "TargetStructureID": 483, + "Label": "61108-483 via Conventional from 61110 -> 6713, 61111 -> 6821, 92344 -> 92343", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61110, + "TargetID": 6713, + "Directional": true + }, { + "SourceID": 61111, + "TargetID": 6821, + "Directional": true + }, { + "SourceID": 92344, + "TargetID": 92343, + "Directional": true + }] + }, { + "ID": 14852, + "SourceStructureID": 61108, + "TargetStructureID": 593, + "Label": "61108-593 via Conventional from 61109 -> 50446, 117732 -> 62875, 117735 -> 62873", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61109, + "TargetID": 50446, + "Directional": true + }, { + "SourceID": 117732, + "TargetID": 62875, + "Directional": true + }, { + "SourceID": 117735, + "TargetID": 62873, + "Directional": true + }] + }, { + "ID": 14853, + "SourceStructureID": 61108, + "TargetStructureID": 5649, + "Label": "61108-5649 via Conventional from 118485 -> 53946", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118485, + "TargetID": 53946, + "Directional": true + }] + }, { + "ID": 14854, + "SourceStructureID": 61108, + "TargetStructureID": 6115, + "Label": "61108-6115 via Conventional from 117733 -> 62871, 117740 -> 73151, 117743 -> 75252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117733, + "TargetID": 62871, + "Directional": true + }, { + "SourceID": 117740, + "TargetID": 73151, + "Directional": true + }, { + "SourceID": 117743, + "TargetID": 75252, + "Directional": true + }] + }, { + "ID": 14855, + "SourceStructureID": 61117, + "TargetStructureID": 5017, + "Label": "61117-5017 via Conventional from 61118 -> 61119, 61121 -> 5042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61118, + "TargetID": 61119, + "Directional": true + }, { + "SourceID": 61121, + "TargetID": 5042, + "Directional": true + }] + }, { + "ID": 14856, + "SourceStructureID": 61122, + "TargetStructureID": 5017, + "Label": "61122-5017 via Conventional from 61123 -> 61124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61123, + "TargetID": 61124, + "Directional": true + }] + }, { + "ID": 14857, + "SourceStructureID": 61208, + "TargetStructureID": 5017, + "Label": "61208-5017 via Conventional from 61209 -> 17062, 61210 -> 61211", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61209, + "TargetID": 17062, + "Directional": true + }, { + "SourceID": 61210, + "TargetID": 61211, + "Directional": true + }] + }, { + "ID": 14858, + "SourceStructureID": 61214, + "TargetStructureID": 5017, + "Label": "61214-5017 via Conventional from 61215 -> 61212, 61216 -> 61213, 61229 -> 17084", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61215, + "TargetID": 61212, + "Directional": true + }, { + "SourceID": 61216, + "TargetID": 61213, + "Directional": true + }, { + "SourceID": 61229, + "TargetID": 17084, + "Directional": true + }] + }, { + "ID": 14859, + "SourceStructureID": 61214, + "TargetStructureID": 17228, + "Label": "61214-17228 via Conventional from 61220 -> 61221, 61222 -> 61223, 61225 -> 17261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61220, + "TargetID": 61221, + "Directional": true + }, { + "SourceID": 61222, + "TargetID": 61223, + "Directional": true + }, { + "SourceID": 61225, + "TargetID": 17261, + "Directional": true + }] + }, { + "ID": 14860, + "SourceStructureID": 61227, + "TargetStructureID": 61214, + "Label": "61227-61214 via Conventional from 61228 -> 61226", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61228, + "TargetID": 61226, + "Directional": true + }] + }, { + "ID": 14861, + "SourceStructureID": 61231, + "TargetStructureID": 5017, + "Label": "61231-5017 via Conventional from 61232 -> 61233", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61232, + "TargetID": 61233, + "Directional": true + }] + }, { + "ID": 14862, + "SourceStructureID": 61313, + "TargetStructureID": 61270, + "Label": "61313-61270 via Conventional from 61315 -> 61306", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61315, + "TargetID": 61306, + "Directional": true + }] + }, { + "ID": 14863, + "SourceStructureID": 61417, + "TargetStructureID": 61270, + "Label": "61417-61270 via Conventional from 61418 -> 61304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61418, + "TargetID": 61304, + "Directional": true + }] + }, { + "ID": 14864, + "SourceStructureID": 61419, + "TargetStructureID": 61270, + "Label": "61419-61270 via Conventional from 61420 -> 61305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61420, + "TargetID": 61305, + "Directional": true + }] + }, { + "ID": 14865, + "SourceStructureID": 61421, + "TargetStructureID": 61270, + "Label": "61421-61270 via Conventional from 61422 -> 61307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61422, + "TargetID": 61307, + "Directional": true + }] + }, { + "ID": 14866, + "SourceStructureID": 61424, + "TargetStructureID": 61421, + "Label": "61424-61421 via Conventional from 61425 -> 61423", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61425, + "TargetID": 61423, + "Directional": true + }] + }, { + "ID": 14867, + "SourceStructureID": 61462, + "TargetStructureID": 61450, + "Label": "61462-61450 via Conventional from 61463 -> 61461", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61463, + "TargetID": 61461, + "Directional": true + }] + }, { + "ID": 14868, + "SourceStructureID": 61466, + "TargetStructureID": 138, + "Label": "61466-138 via Conventional from 61475 -> 61476", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61475, + "TargetID": 61476, + "Directional": true + }] + }, { + "ID": 14869, + "SourceStructureID": 61466, + "TargetStructureID": 5297, + "Label": "61466-5297 via Conventional from 61477 -> 61478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61477, + "TargetID": 61478, + "Directional": true + }] + }, { + "ID": 14870, + "SourceStructureID": 61466, + "TargetStructureID": 63628, + "Label": "61466-63628 via Conventional from 61467 -> 63813", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61467, + "TargetID": 63813, + "Directional": true + }] + }, { + "ID": 14871, + "SourceStructureID": 61500, + "TargetStructureID": 909, + "Label": "61500-909 via Conventional from 61503 -> 45923", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61503, + "TargetID": 45923, + "Directional": true + }] + }, { + "ID": 14872, + "SourceStructureID": 61530, + "TargetStructureID": 8575, + "Label": "61530-8575 via BC Conventional Synapse from 61533 -> 61529", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61533, + "TargetID": 61529, + "Directional": true + }] + }, { + "ID": 14873, + "SourceStructureID": 61583, + "TargetStructureID": 8575, + "Label": "61583-8575 via Conventional from 61584 -> 17381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61584, + "TargetID": 17381, + "Directional": true + }] + }, { + "ID": 14874, + "SourceStructureID": 61587, + "TargetStructureID": 408, + "Label": "61587-408 via Conventional from 61590 -> 61591", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61590, + "TargetID": 61591, + "Directional": true + }] + }, { + "ID": 14875, + "SourceStructureID": 61587, + "TargetStructureID": 8575, + "Label": "61587-8575 via Conventional from 61588 -> 17383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61588, + "TargetID": 17383, + "Directional": true + }] + }, { + "ID": 14876, + "SourceStructureID": 61596, + "TargetStructureID": 8575, + "Label": "61596-8575 via Conventional from 61597 -> 61595", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61597, + "TargetID": 61595, + "Directional": true + }] + }, { + "ID": 14877, + "SourceStructureID": 61598, + "TargetStructureID": 372, + "Label": "61598-372 via Conventional from 61604 -> 16016", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61604, + "TargetID": 16016, + "Directional": true + }] + }, { + "ID": 14878, + "SourceStructureID": 61598, + "TargetStructureID": 428, + "Label": "61598-428 via Conventional from 66207 -> 66208", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66207, + "TargetID": 66208, + "Directional": true + }] + }, { + "ID": 14879, + "SourceStructureID": 61598, + "TargetStructureID": 606, + "Label": "61598-606 via Conventional from 61606 -> 53255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61606, + "TargetID": 53255, + "Directional": true + }] + }, { + "ID": 14880, + "SourceStructureID": 61598, + "TargetStructureID": 4569, + "Label": "61598-4569 via Conventional from 61607 -> 47508", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61607, + "TargetID": 47508, + "Directional": true + }] + }, { + "ID": 14881, + "SourceStructureID": 61598, + "TargetStructureID": 8575, + "Label": "61598-8575 via Conventional from 61599 -> 17384", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61599, + "TargetID": 17384, + "Directional": true + }] + }, { + "ID": 14882, + "SourceStructureID": 61618, + "TargetStructureID": 8575, + "Label": "61618-8575 via Conventional from 61619 -> 17386", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61619, + "TargetID": 17386, + "Directional": true + }] + }, { + "ID": 14883, + "SourceStructureID": 61621, + "TargetStructureID": 8575, + "Label": "61621-8575 via Conventional from 61622 -> 61620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61622, + "TargetID": 61620, + "Directional": true + }] + }, { + "ID": 14884, + "SourceStructureID": 61624, + "TargetStructureID": 8575, + "Label": "61624-8575 via Conventional from 61626 -> 17387", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61626, + "TargetID": 17387, + "Directional": true + }] + }, { + "ID": 14885, + "SourceStructureID": 61627, + "TargetStructureID": 8575, + "Label": "61627-8575 via Conventional from 61628 -> 17391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61628, + "TargetID": 17391, + "Directional": true + }] + }, { + "ID": 14886, + "SourceStructureID": 61630, + "TargetStructureID": 8575, + "Label": "61630-8575 via BC Conventional Synapse from 61631 -> 61629", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61631, + "TargetID": 61629, + "Directional": true + }] + }, { + "ID": 14887, + "SourceStructureID": 61632, + "TargetStructureID": 8575, + "Label": "61632-8575 via Conventional from 61633 -> 17392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61633, + "TargetID": 17392, + "Directional": true + }] + }, { + "ID": 14888, + "SourceStructureID": 61638, + "TargetStructureID": 8575, + "Label": "61638-8575 via BC Conventional Synapse from 61640 -> 61637", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61640, + "TargetID": 61637, + "Directional": true + }] + }, { + "ID": 14889, + "SourceStructureID": 61642, + "TargetStructureID": 8575, + "Label": "61642-8575 via Conventional from 61643 -> 61641", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61643, + "TargetID": 61641, + "Directional": true + }] + }, { + "ID": 14890, + "SourceStructureID": 61644, + "TargetStructureID": 8575, + "Label": "61644-8575 via Conventional from 61645 -> 17393", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61645, + "TargetID": 17393, + "Directional": true + }] + }, { + "ID": 14891, + "SourceStructureID": 61646, + "TargetStructureID": 8575, + "Label": "61646-8575 via Conventional from 61647 -> 17394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61647, + "TargetID": 17394, + "Directional": true + }] + }, { + "ID": 14892, + "SourceStructureID": 61649, + "TargetStructureID": 8575, + "Label": "61649-8575 via Conventional from 61650 -> 61648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61650, + "TargetID": 61648, + "Directional": true + }] + }, { + "ID": 14893, + "SourceStructureID": 61652, + "TargetStructureID": 8575, + "Label": "61652-8575 via Conventional from 61653 -> 17388", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61653, + "TargetID": 17388, + "Directional": true + }] + }, { + "ID": 14894, + "SourceStructureID": 61656, + "TargetStructureID": 8575, + "Label": "61656-8575 via BC Conventional Synapse from 61659 -> 61655, 61661 -> 61660", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61659, + "TargetID": 61655, + "Directional": true + }, { + "SourceID": 61661, + "TargetID": 61660, + "Directional": true + }] + }, { + "ID": 14895, + "SourceStructureID": 61666, + "TargetStructureID": 8575, + "Label": "61666-8575 via BC Conventional Synapse from 61668 -> 61664", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61668, + "TargetID": 61664, + "Directional": true + }] + }, { + "ID": 14896, + "SourceStructureID": 61676, + "TargetStructureID": 8575, + "Label": "61676-8575 via Conventional from 61677 -> 61675", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61677, + "TargetID": 61675, + "Directional": true + }] + }, { + "ID": 14897, + "SourceStructureID": 61698, + "TargetStructureID": 372, + "Label": "61698-372 via Conventional from 61700 -> 55073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61700, + "TargetID": 55073, + "Directional": true + }] + }, { + "ID": 14898, + "SourceStructureID": 61698, + "TargetStructureID": 8575, + "Label": "61698-8575 via Conventional from 61699 -> 37255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61699, + "TargetID": 37255, + "Directional": true + }] + }, { + "ID": 14899, + "SourceStructureID": 61703, + "TargetStructureID": 8575, + "Label": "61703-8575 via BC Conventional Synapse from 61704 -> 61702", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61704, + "TargetID": 61702, + "Directional": true + }] + }, { + "ID": 14900, + "SourceStructureID": 61705, + "TargetStructureID": 8575, + "Label": "61705-8575 via Conventional from 61706 -> 37256", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61706, + "TargetID": 37256, + "Directional": true + }] + }, { + "ID": 14901, + "SourceStructureID": 61707, + "TargetStructureID": 8575, + "Label": "61707-8575 via Conventional from 61708 -> 37257", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61708, + "TargetID": 37257, + "Directional": true + }] + }, { + "ID": 14902, + "SourceStructureID": 61709, + "TargetStructureID": 7594, + "Label": "61709-7594 via Conventional from 65695 -> 64852", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65695, + "TargetID": 64852, + "Directional": true + }] + }, { + "ID": 14903, + "SourceStructureID": 61709, + "TargetStructureID": 8575, + "Label": "61709-8575 via Conventional from 61710 -> 37259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61710, + "TargetID": 37259, + "Directional": true + }] + }, { + "ID": 14904, + "SourceStructureID": 61716, + "TargetStructureID": 8575, + "Label": "61716-8575 via Conventional from 61717 -> 61715", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61717, + "TargetID": 61715, + "Directional": true + }] + }, { + "ID": 14905, + "SourceStructureID": 61719, + "TargetStructureID": 8575, + "Label": "61719-8575 via BC Conventional Synapse from 61720 -> 61718", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61720, + "TargetID": 61718, + "Directional": true + }] + }, { + "ID": 14906, + "SourceStructureID": 61740, + "TargetStructureID": 8575, + "Label": "61740-8575 via Conventional from 61744 -> 43101", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61744, + "TargetID": 43101, + "Directional": true + }] + }, { + "ID": 14907, + "SourceStructureID": 61741, + "TargetStructureID": 61740, + "Label": "61741-61740 via Conventional from 61742 -> 61743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61742, + "TargetID": 61743, + "Directional": true + }] + }, { + "ID": 14908, + "SourceStructureID": 61745, + "TargetStructureID": 8575, + "Label": "61745-8575 via Conventional from 61746 -> 37273", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61746, + "TargetID": 37273, + "Directional": true + }] + }, { + "ID": 14909, + "SourceStructureID": 61752, + "TargetStructureID": 61758, + "Label": "61752-61758 via Conventional from 61757 -> 61761", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61757, + "TargetID": 61761, + "Directional": true + }] + }, { + "ID": 14910, + "SourceStructureID": 61758, + "TargetStructureID": 8575, + "Label": "61758-8575 via BC Conventional Synapse from 61762 -> 43102", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61762, + "TargetID": 43102, + "Directional": true + }] + }, { + "ID": 14911, + "SourceStructureID": 61758, + "TargetStructureID": 61752, + "Label": "61758-61752 via Ribbon Synapse from 61759 -> 61756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 61759, + "TargetID": 61756, + "Directional": true + }] + }, { + "ID": 14912, + "SourceStructureID": 61763, + "TargetStructureID": 8575, + "Label": "61763-8575 via Conventional from 61764 -> 43103", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61764, + "TargetID": 43103, + "Directional": true + }] + }, { + "ID": 14913, + "SourceStructureID": 61765, + "TargetStructureID": 8575, + "Label": "61765-8575 via Conventional from 61766 -> 43105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61766, + "TargetID": 43105, + "Directional": true + }] + }, { + "ID": 14914, + "SourceStructureID": 61767, + "TargetStructureID": 8575, + "Label": "61767-8575 via Conventional from 61768 -> 43104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61768, + "TargetID": 43104, + "Directional": true + }] + }, { + "ID": 14915, + "SourceStructureID": 61773, + "TargetStructureID": 593, + "Label": "61773-593 via Conventional from 61774 -> 61772", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61774, + "TargetID": 61772, + "Directional": true + }] + }, { + "ID": 14916, + "SourceStructureID": 61777, + "TargetStructureID": 593, + "Label": "61777-593 via Conventional from 61778 -> 7709, 61783 -> 7811", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61778, + "TargetID": 7709, + "Directional": true + }, { + "SourceID": 61783, + "TargetID": 7811, + "Directional": true + }] + }, { + "ID": 14917, + "SourceStructureID": 61785, + "TargetStructureID": 593, + "Label": "61785-593 via Conventional from 61787 -> 7818", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61787, + "TargetID": 7818, + "Directional": true + }] + }, { + "ID": 14918, + "SourceStructureID": 61788, + "TargetStructureID": 593, + "Label": "61788-593 via Conventional from 61789 -> 7817", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61789, + "TargetID": 7817, + "Directional": true + }] + }, { + "ID": 14919, + "SourceStructureID": 61791, + "TargetStructureID": 593, + "Label": "61791-593 via Conventional from 61792 -> 61790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61792, + "TargetID": 61790, + "Directional": true + }] + }, { + "ID": 14920, + "SourceStructureID": 61797, + "TargetStructureID": 593, + "Label": "61797-593 via Conventional from 61798 -> 15887", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61798, + "TargetID": 15887, + "Directional": true + }] + }, { + "ID": 14921, + "SourceStructureID": 61797, + "TargetStructureID": 79461, + "Label": "61797-79461 via Conventional from 79462 -> 79463", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79462, + "TargetID": 79463, + "Directional": true + }] + }, { + "ID": 14922, + "SourceStructureID": 61799, + "TargetStructureID": 593, + "Label": "61799-593 via Conventional from 61800 -> 15888", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61800, + "TargetID": 15888, + "Directional": true + }] + }, { + "ID": 14923, + "SourceStructureID": 61807, + "TargetStructureID": 483, + "Label": "61807-483 via Conventional from 80463 -> 80464", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80463, + "TargetID": 80464, + "Directional": true + }] + }, { + "ID": 14924, + "SourceStructureID": 61807, + "TargetStructureID": 593, + "Label": "61807-593 via Conventional from 61808 -> 15890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61808, + "TargetID": 15890, + "Directional": true + }] + }, { + "ID": 14925, + "SourceStructureID": 61809, + "TargetStructureID": 166, + "Label": "61809-166 via Conventional from 80538 -> 80539", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80538, + "TargetID": 80539, + "Directional": true + }] + }, { + "ID": 14926, + "SourceStructureID": 61809, + "TargetStructureID": 593, + "Label": "61809-593 via Conventional from 61810 -> 52499, 80513 -> 68259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61810, + "TargetID": 52499, + "Directional": true + }, { + "SourceID": 80513, + "TargetID": 68259, + "Directional": true + }] + }, { + "ID": 14927, + "SourceStructureID": 61809, + "TargetStructureID": 6156, + "Label": "61809-6156 via Conventional from 80488 -> 80489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80488, + "TargetID": 80489, + "Directional": true + }] + }, { + "ID": 14928, + "SourceStructureID": 61813, + "TargetStructureID": 593, + "Label": "61813-593 via Conventional from 61814 -> 61815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61814, + "TargetID": 61815, + "Directional": true + }] + }, { + "ID": 14929, + "SourceStructureID": 61816, + "TargetStructureID": 483, + "Label": "61816-483 via Conventional from 80745 -> 6762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80745, + "TargetID": 6762, + "Directional": true + }] + }, { + "ID": 14930, + "SourceStructureID": 61816, + "TargetStructureID": 593, + "Label": "61816-593 via Conventional from 61818 -> 28393, 61892 -> 15892, 80724 -> 67326", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61818, + "TargetID": 28393, + "Directional": true + }, { + "SourceID": 61892, + "TargetID": 15892, + "Directional": true + }, { + "SourceID": 80724, + "TargetID": 67326, + "Directional": true + }] + }, { + "ID": 14931, + "SourceStructureID": 61816, + "TargetStructureID": 5562, + "Label": "61816-5562 via Conventional from 80725 -> 77166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80725, + "TargetID": 77166, + "Directional": true + }] + }, { + "ID": 14932, + "SourceStructureID": 61817, + "TargetStructureID": 66523, + "Label": "61817-66523 via Conventional from 61820 -> 75925", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61820, + "TargetID": 75925, + "Directional": true + }] + }, { + "ID": 14933, + "SourceStructureID": 61827, + "TargetStructureID": 22974, + "Label": "61827-22974 via Conventional from 61829 -> 61830", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61829, + "TargetID": 61830, + "Directional": true + }] + }, { + "ID": 14934, + "SourceStructureID": 61836, + "TargetStructureID": 16026, + "Label": "61836-16026 via Conventional from 134785 -> 134782", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134785, + "TargetID": 134782, + "Directional": true + }] + }, { + "ID": 14935, + "SourceStructureID": 61836, + "TargetStructureID": 69783, + "Label": "61836-69783 via Adherens from 69782 -> 69784", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 69782, + "TargetID": 69784, + "Directional": true + }] + }, { + "ID": 14936, + "SourceStructureID": 61842, + "TargetStructureID": 593, + "Label": "61842-593 via Conventional from 61844 -> 28426", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61844, + "TargetID": 28426, + "Directional": true + }] + }, { + "ID": 14937, + "SourceStructureID": 61845, + "TargetStructureID": 593, + "Label": "61845-593 via Conventional from 61846 -> 28425, 81149 -> 64370", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61846, + "TargetID": 28425, + "Directional": true + }, { + "SourceID": 81149, + "TargetID": 64370, + "Directional": true + }] + }, { + "ID": 14938, + "SourceStructureID": 61847, + "TargetStructureID": 593, + "Label": "61847-593 via Conventional from 61848 -> 28424", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61848, + "TargetID": 28424, + "Directional": true + }] + }, { + "ID": 14939, + "SourceStructureID": 61849, + "TargetStructureID": 593, + "Label": "61849-593 via Conventional from 61850 -> 28414", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61850, + "TargetID": 28414, + "Directional": true + }] + }, { + "ID": 14940, + "SourceStructureID": 61851, + "TargetStructureID": 593, + "Label": "61851-593 via Conventional from 61852 -> 28420", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61852, + "TargetID": 28420, + "Directional": true + }] + }, { + "ID": 14941, + "SourceStructureID": 61853, + "TargetStructureID": 593, + "Label": "61853-593 via Conventional from 61854 -> 28416", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61854, + "TargetID": 28416, + "Directional": true + }] + }, { + "ID": 14942, + "SourceStructureID": 61853, + "TargetStructureID": 6115, + "Label": "61853-6115 via Conventional from 81425 -> 73775", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81425, + "TargetID": 73775, + "Directional": true + }] + }, { + "ID": 14943, + "SourceStructureID": 61853, + "TargetStructureID": 81430, + "Label": "61853-81430 via Conventional from 81431 -> 81432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81431, + "TargetID": 81432, + "Directional": true + }] + }, { + "ID": 14944, + "SourceStructureID": 61857, + "TargetStructureID": 593, + "Label": "61857-593 via Conventional from 61858 -> 61856, 81978 -> 81979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61858, + "TargetID": 61856, + "Directional": true + }, { + "SourceID": 81978, + "TargetID": 81979, + "Directional": true + }] + }, { + "ID": 14945, + "SourceStructureID": 61862, + "TargetStructureID": 593, + "Label": "61862-593 via Conventional from 61863 -> 28417", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61863, + "TargetID": 28417, + "Directional": true + }] + }, { + "ID": 14946, + "SourceStructureID": 61868, + "TargetStructureID": 593, + "Label": "61868-593 via Conventional from 61869 -> 61867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61869, + "TargetID": 61867, + "Directional": true + }] + }, { + "ID": 14947, + "SourceStructureID": 61886, + "TargetStructureID": 483, + "Label": "61886-483 via Conventional from 82191 -> 82192, 82195 -> 71297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82191, + "TargetID": 82192, + "Directional": true + }, { + "SourceID": 82195, + "TargetID": 71297, + "Directional": true + }] + }, { + "ID": 14948, + "SourceStructureID": 61886, + "TargetStructureID": 593, + "Label": "61886-593 via Conventional from 61887 -> 15897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61887, + "TargetID": 15897, + "Directional": true + }] + }, { + "ID": 14949, + "SourceStructureID": 61886, + "TargetStructureID": 4570, + "Label": "61886-4570 via Conventional from 82193 -> 82194", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82193, + "TargetID": 82194, + "Directional": true + }] + }, { + "ID": 14950, + "SourceStructureID": 61886, + "TargetStructureID": 82188, + "Label": "61886-82188 via Conventional from 82189 -> 82190", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82189, + "TargetID": 82190, + "Directional": true + }] + }, { + "ID": 14951, + "SourceStructureID": 61894, + "TargetStructureID": 593, + "Label": "61894-593 via Conventional from 61895 -> 15893, 82198 -> 28400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61895, + "TargetID": 15893, + "Directional": true + }, { + "SourceID": 82198, + "TargetID": 28400, + "Directional": true + }] + }, { + "ID": 14952, + "SourceStructureID": 61894, + "TargetStructureID": 68401, + "Label": "61894-68401 via Conventional from 68397 -> 68402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68397, + "TargetID": 68402, + "Directional": true + }] + }, { + "ID": 14953, + "SourceStructureID": 61894, + "TargetStructureID": 69537, + "Label": "61894-69537 via Conventional from 82203 -> 69759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82203, + "TargetID": 69759, + "Directional": true + }] + }, { + "ID": 14954, + "SourceStructureID": 61894, + "TargetStructureID": 82204, + "Label": "61894-82204 via Conventional from 82205 -> 82206", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82205, + "TargetID": 82206, + "Directional": true + }] + }, { + "ID": 14955, + "SourceStructureID": 61897, + "TargetStructureID": 70114, + "Label": "61897-70114 via Conventional from 61902 -> 70118", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61902, + "TargetID": 70118, + "Directional": true + }] + }, { + "ID": 14956, + "SourceStructureID": 61904, + "TargetStructureID": 593, + "Label": "61904-593 via Conventional from 61906 -> 61907", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61906, + "TargetID": 61907, + "Directional": true + }] + }, { + "ID": 14957, + "SourceStructureID": 61904, + "TargetStructureID": 61868, + "Label": "61904-61868 via Conventional from 61905 -> 81988, 81983 -> 81984", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61905, + "TargetID": 81988, + "Directional": true + }, { + "SourceID": 81983, + "TargetID": 81984, + "Directional": true + }] + }, { + "ID": 14958, + "SourceStructureID": 61904, + "TargetStructureID": 69537, + "Label": "61904-69537 via Conventional from 82207 -> 69756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82207, + "TargetID": 69756, + "Directional": true + }] + }, { + "ID": 14959, + "SourceStructureID": 61908, + "TargetStructureID": 593, + "Label": "61908-593 via Conventional from 61909 -> 28399", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61909, + "TargetID": 28399, + "Directional": true + }] + }, { + "ID": 14960, + "SourceStructureID": 61914, + "TargetStructureID": 593, + "Label": "61914-593 via Conventional from 61918 -> 61917", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61918, + "TargetID": 61917, + "Directional": true + }] + }, { + "ID": 14961, + "SourceStructureID": 61920, + "TargetStructureID": 593, + "Label": "61920-593 via Conventional from 61921 -> 61919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61921, + "TargetID": 61919, + "Directional": true + }] + }, { + "ID": 14962, + "SourceStructureID": 61920, + "TargetStructureID": 61840, + "Label": "61920-61840 via Conventional from 82286 -> 82287", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82286, + "TargetID": 82287, + "Directional": true + }] + }, { + "ID": 14963, + "SourceStructureID": 61928, + "TargetStructureID": 593, + "Label": "61928-593 via Conventional from 61929 -> 28401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61929, + "TargetID": 28401, + "Directional": true + }] + }, { + "ID": 14964, + "SourceStructureID": 61928, + "TargetStructureID": 65282, + "Label": "61928-65282 via Conventional from 65281 -> 65283", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65281, + "TargetID": 65283, + "Directional": true + }] + }, { + "ID": 14965, + "SourceStructureID": 61930, + "TargetStructureID": 593, + "Label": "61930-593 via Conventional from 61931 -> 28403", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61931, + "TargetID": 28403, + "Directional": true + }] + }, { + "ID": 14966, + "SourceStructureID": 61933, + "TargetStructureID": 68072, + "Label": "61933-68072 via Conventional from 68075 -> 68074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68075, + "TargetID": 68074, + "Directional": true + }] + }, { + "ID": 14967, + "SourceStructureID": 61933, + "TargetStructureID": 68891, + "Label": "61933-68891 via Conventional from 61935 -> 68892", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61935, + "TargetID": 68892, + "Directional": true + }] + }, { + "ID": 14968, + "SourceStructureID": 61936, + "TargetStructureID": 82383, + "Label": "61936-82383 via Conventional from 82384 -> 82385", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82384, + "TargetID": 82385, + "Directional": true + }] + }, { + "ID": 14969, + "SourceStructureID": 61940, + "TargetStructureID": 593, + "Label": "61940-593 via Conventional from 61941 -> 61939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61941, + "TargetID": 61939, + "Directional": true + }] + }, { + "ID": 14970, + "SourceStructureID": 61942, + "TargetStructureID": 593, + "Label": "61942-593 via Conventional from 61944 -> 61943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61944, + "TargetID": 61943, + "Directional": true + }] + }, { + "ID": 14971, + "SourceStructureID": 61951, + "TargetStructureID": 593, + "Label": "61951-593 via Conventional from 61952 -> 61953, 61986 -> 61984", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61952, + "TargetID": 61953, + "Directional": true + }, { + "SourceID": 61986, + "TargetID": 61984, + "Directional": true + }] + }, { + "ID": 14972, + "SourceStructureID": 61954, + "TargetStructureID": 593, + "Label": "61954-593 via Conventional from 61955 -> 50444", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61955, + "TargetID": 50444, + "Directional": true + }] + }, { + "ID": 14973, + "SourceStructureID": 61960, + "TargetStructureID": 400, + "Label": "61960-400 via Conventional from 81662 -> 81681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81662, + "TargetID": 81681, + "Directional": true + }] + }, { + "ID": 14974, + "SourceStructureID": 61960, + "TargetStructureID": 483, + "Label": "61960-483 via Conventional from 81484 -> 81485, 134092 -> 134093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81484, + "TargetID": 81485, + "Directional": true + }, { + "SourceID": 134092, + "TargetID": 134093, + "Directional": true + }] + }, { + "ID": 14975, + "SourceStructureID": 61960, + "TargetStructureID": 485, + "Label": "61960-485 via Conventional from 81449 -> 81450, 81468 -> 81469, 81470 -> 81471", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81449, + "TargetID": 81450, + "Directional": true + }, { + "SourceID": 81468, + "TargetID": 81469, + "Directional": true + }, { + "SourceID": 81470, + "TargetID": 81471, + "Directional": true + }] + }, { + "ID": 14976, + "SourceStructureID": 61960, + "TargetStructureID": 593, + "Label": "61960-593 via Conventional from 61961 -> 50441", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61961, + "TargetID": 50441, + "Directional": true + }] + }, { + "ID": 14977, + "SourceStructureID": 61960, + "TargetStructureID": 6156, + "Label": "61960-6156 via Conventional from 81448 -> 11612", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81448, + "TargetID": 11612, + "Directional": true + }] + }, { + "ID": 14978, + "SourceStructureID": 61960, + "TargetStructureID": 6589, + "Label": "61960-6589 via Conventional from 81481 -> 81482, 81512 -> 9590", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81481, + "TargetID": 81482, + "Directional": true + }, { + "SourceID": 81512, + "TargetID": 9590, + "Directional": true + }] + }, { + "ID": 14979, + "SourceStructureID": 61960, + "TargetStructureID": 15394, + "Label": "61960-15394 via Conventional from 81452 -> 81453", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81452, + "TargetID": 81453, + "Directional": true + }] + }, { + "ID": 14980, + "SourceStructureID": 61960, + "TargetStructureID": 81664, + "Label": "61960-81664 via Conventional from 81666 -> 81665", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81666, + "TargetID": 81665, + "Directional": true + }] + }, { + "ID": 14981, + "SourceStructureID": 61960, + "TargetStructureID": 81682, + "Label": "61960-81682 via Conventional from 81683 -> 81684", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81683, + "TargetID": 81684, + "Directional": true + }] + }, { + "ID": 14982, + "SourceStructureID": 61960, + "TargetStructureID": 87158, + "Label": "61960-87158 via Conventional from 81657 -> 81658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81657, + "TargetID": 81658, + "Directional": true + }] + }, { + "ID": 14983, + "SourceStructureID": 61972, + "TargetStructureID": 593, + "Label": "61972-593 via Conventional from 61973 -> 61971", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61973, + "TargetID": 61971, + "Directional": true + }] + }, { + "ID": 14984, + "SourceStructureID": 61978, + "TargetStructureID": 593, + "Label": "61978-593 via Conventional from 61980 -> 61979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 61980, + "TargetID": 61979, + "Directional": true + }] + }, { + "ID": 14985, + "SourceStructureID": 61978, + "TargetStructureID": 65267, + "Label": "61978-65267 via Conventional from 69366 -> 69365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69366, + "TargetID": 69365, + "Directional": true + }] + }, { + "ID": 14986, + "SourceStructureID": 61989, + "TargetStructureID": 61940, + "Label": "61989-61940 via Conventional from 65294 -> 65295", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65294, + "TargetID": 65295, + "Directional": true + }] + }, { + "ID": 14987, + "SourceStructureID": 62012, + "TargetStructureID": 8575, + "Label": "62012-8575 via Conventional from 62013 -> 62011", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62013, + "TargetID": 62011, + "Directional": true + }] + }, { + "ID": 14988, + "SourceStructureID": 62015, + "TargetStructureID": 8575, + "Label": "62015-8575 via Conventional from 62016 -> 62014", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62016, + "TargetID": 62014, + "Directional": true + }] + }, { + "ID": 14989, + "SourceStructureID": 62019, + "TargetStructureID": 8575, + "Label": "62019-8575 via BC Conventional Synapse from 62022 -> 62018", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62022, + "TargetID": 62018, + "Directional": true + }] + }, { + "ID": 14990, + "SourceStructureID": 62026, + "TargetStructureID": 8575, + "Label": "62026-8575 via Conventional from 62027 -> 62025", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62027, + "TargetID": 62025, + "Directional": true + }] + }, { + "ID": 14991, + "SourceStructureID": 62029, + "TargetStructureID": 8575, + "Label": "62029-8575 via Conventional from 62030 -> 62028", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62030, + "TargetID": 62028, + "Directional": true + }] + }, { + "ID": 14992, + "SourceStructureID": 62032, + "TargetStructureID": 8575, + "Label": "62032-8575 via Conventional from 62033 -> 62031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62033, + "TargetID": 62031, + "Directional": true + }] + }, { + "ID": 14993, + "SourceStructureID": 62035, + "TargetStructureID": 8575, + "Label": "62035-8575 via Ribbon Synapse from 62036 -> 62034", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62036, + "TargetID": 62034, + "Directional": true + }] + }, { + "ID": 14994, + "SourceStructureID": 62038, + "TargetStructureID": 7858, + "Label": "62038-7858 via Conventional from 62039 -> 31899", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62039, + "TargetID": 31899, + "Directional": true + }] + }, { + "ID": 14995, + "SourceStructureID": 62043, + "TargetStructureID": 8575, + "Label": "62043-8575 via Conventional from 62044 -> 62042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62044, + "TargetID": 62042, + "Directional": true + }] + }, { + "ID": 14996, + "SourceStructureID": 62046, + "TargetStructureID": 8575, + "Label": "62046-8575 via Ribbon Synapse from 62047 -> 62041", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62047, + "TargetID": 62041, + "Directional": true + }] + }, { + "ID": 14997, + "SourceStructureID": 62049, + "TargetStructureID": 8575, + "Label": "62049-8575 via Conventional from 62050 -> 62048", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62050, + "TargetID": 62048, + "Directional": true + }] + }, { + "ID": 14998, + "SourceStructureID": 62052, + "TargetStructureID": 8575, + "Label": "62052-8575 via Conventional from 62053 -> 62051", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62053, + "TargetID": 62051, + "Directional": true + }] + }, { + "ID": 14999, + "SourceStructureID": 62110, + "TargetStructureID": 8575, + "Label": "62110-8575 via Conventional from 62112 -> 62109", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62112, + "TargetID": 62109, + "Directional": true + }] + }, { + "ID": 15000, + "SourceStructureID": 62110, + "TargetStructureID": 18693, + "Label": "62110-18693 via Conventional from 62111 -> 33829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62111, + "TargetID": 33829, + "Directional": true + }] + }, { + "ID": 15001, + "SourceStructureID": 62120, + "TargetStructureID": 389, + "Label": "62120-389 via Conventional from 62124 -> 62119", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62124, + "TargetID": 62119, + "Directional": true + }] + }, { + "ID": 15002, + "SourceStructureID": 62120, + "TargetStructureID": 19203, + "Label": "62120-19203 via Conventional from 62121 -> 62122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62121, + "TargetID": 62122, + "Directional": true + }] + }, { + "ID": 15003, + "SourceStructureID": 62150, + "TargetStructureID": 8575, + "Label": "62150-8575 via Conventional from 62151 -> 43280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62151, + "TargetID": 43280, + "Directional": true + }] + }, { + "ID": 15004, + "SourceStructureID": 62152, + "TargetStructureID": 8575, + "Label": "62152-8575 via Conventional from 62153 -> 43281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62153, + "TargetID": 43281, + "Directional": true + }] + }, { + "ID": 15005, + "SourceStructureID": 62155, + "TargetStructureID": 8575, + "Label": "62155-8575 via Conventional from 62156 -> 43581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62156, + "TargetID": 43581, + "Directional": true + }] + }, { + "ID": 15006, + "SourceStructureID": 62160, + "TargetStructureID": 8575, + "Label": "62160-8575 via Conventional from 62161 -> 62159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62161, + "TargetID": 62159, + "Directional": true + }] + }, { + "ID": 15007, + "SourceStructureID": 62165, + "TargetStructureID": 8575, + "Label": "62165-8575 via Ribbon Synapse from 62166 -> 62164", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62166, + "TargetID": 62164, + "Directional": true + }] + }, { + "ID": 15008, + "SourceStructureID": 62169, + "TargetStructureID": 8575, + "Label": "62169-8575 via Conventional from 62170 -> 62168", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62170, + "TargetID": 62168, + "Directional": true + }] + }, { + "ID": 15009, + "SourceStructureID": 62172, + "TargetStructureID": 8575, + "Label": "62172-8575 via Ribbon Synapse from 62173 -> 62171", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62173, + "TargetID": 62171, + "Directional": true + }] + }, { + "ID": 15010, + "SourceStructureID": 62174, + "TargetStructureID": 6166, + "Label": "62174-6166 via Conventional from 62175 -> 15147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62175, + "TargetID": 15147, + "Directional": true + }] + }, { + "ID": 15011, + "SourceStructureID": 62177, + "TargetStructureID": 8575, + "Label": "62177-8575 via Ribbon Synapse from 62178 -> 62176", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62178, + "TargetID": 62176, + "Directional": true + }] + }, { + "ID": 15012, + "SourceStructureID": 62190, + "TargetStructureID": 8575, + "Label": "62190-8575 via Conventional from 62191 -> 43285", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62191, + "TargetID": 43285, + "Directional": true + }] + }, { + "ID": 15013, + "SourceStructureID": 62194, + "TargetStructureID": 8575, + "Label": "62194-8575 via BC Conventional Synapse from 62196 -> 62193", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62196, + "TargetID": 62193, + "Directional": true + }] + }, { + "ID": 15014, + "SourceStructureID": 62197, + "TargetStructureID": 8575, + "Label": "62197-8575 via Conventional from 62198 -> 43287", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62198, + "TargetID": 43287, + "Directional": true + }] + }, { + "ID": 15015, + "SourceStructureID": 62205, + "TargetStructureID": 8575, + "Label": "62205-8575 via Ribbon Synapse from 62206 -> 62204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62206, + "TargetID": 62204, + "Directional": true + }] + }, { + "ID": 15016, + "SourceStructureID": 62208, + "TargetStructureID": 8575, + "Label": "62208-8575 via BC Conventional Synapse from 62209 -> 62207", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62209, + "TargetID": 62207, + "Directional": true + }] + }, { + "ID": 15017, + "SourceStructureID": 62217, + "TargetStructureID": 8575, + "Label": "62217-8575 via Conventional from 62218 -> 62216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62218, + "TargetID": 62216, + "Directional": true + }] + }, { + "ID": 15018, + "SourceStructureID": 62223, + "TargetStructureID": 8575, + "Label": "62223-8575 via Ribbon Synapse from 62224 -> 62222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62224, + "TargetID": 62222, + "Directional": true + }] + }, { + "ID": 15019, + "SourceStructureID": 62239, + "TargetStructureID": 8575, + "Label": "62239-8575 via BC Conventional Synapse from 62240 -> 62238", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62240, + "TargetID": 62238, + "Directional": true + }] + }, { + "ID": 15020, + "SourceStructureID": 62310, + "TargetStructureID": 8575, + "Label": "62310-8575 via Ribbon Synapse from 62312 -> 62314", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62312, + "TargetID": 62314, + "Directional": true + }] + }, { + "ID": 15021, + "SourceStructureID": 62317, + "TargetStructureID": 8575, + "Label": "62317-8575 via Conventional from 62319 -> 62316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62319, + "TargetID": 62316, + "Directional": true + }] + }, { + "ID": 15022, + "SourceStructureID": 62325, + "TargetStructureID": 8575, + "Label": "62325-8575 via BC Conventional Synapse from 62326 -> 62323, 80679 -> 62328, 81413 -> 81412, 81417 -> 62324", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62326, + "TargetID": 62323, + "Directional": true + }, { + "SourceID": 80679, + "TargetID": 62328, + "Directional": true + }, { + "SourceID": 81413, + "TargetID": 81412, + "Directional": true + }, { + "SourceID": 81417, + "TargetID": 62324, + "Directional": true + }] + }, { + "ID": 15023, + "SourceStructureID": 62325, + "TargetStructureID": 8575, + "Label": "62325-8575 via Ribbon Synapse from 81264 -> 62324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81264, + "TargetID": 62324, + "Directional": true + }] + }, { + "ID": 15024, + "SourceStructureID": 62325, + "TargetStructureID": 10574, + "Label": "62325-10574 via Ribbon Synapse from 81278 -> 10622", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81278, + "TargetID": 10622, + "Directional": true + }] + }, { + "ID": 15025, + "SourceStructureID": 62325, + "TargetStructureID": 80522, + "Label": "62325-80522 via Ribbon Synapse from 80529 -> 80530, 80842 -> 81005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80529, + "TargetID": 80530, + "Directional": true + }, { + "SourceID": 80842, + "TargetID": 81005, + "Directional": true + }] + }, { + "ID": 15026, + "SourceStructureID": 62325, + "TargetStructureID": 80527, + "Label": "62325-80527 via BC Conventional Synapse from 80762 -> 80763", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80762, + "TargetID": 80763, + "Directional": true + }] + }, { + "ID": 15027, + "SourceStructureID": 62325, + "TargetStructureID": 80532, + "Label": "62325-80532 via Ribbon Synapse from 80531 -> 80533", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80531, + "TargetID": 80533, + "Directional": true + }] + }, { + "ID": 15028, + "SourceStructureID": 62325, + "TargetStructureID": 80534, + "Label": "62325-80534 via Ribbon Synapse from 80861 -> 80866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80861, + "TargetID": 80866, + "Directional": true + }] + }, { + "ID": 15029, + "SourceStructureID": 62325, + "TargetStructureID": 80684, + "Label": "62325-80684 via Ribbon Synapse from 80683 -> 80686", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80683, + "TargetID": 80686, + "Directional": true + }] + }, { + "ID": 15030, + "SourceStructureID": 62325, + "TargetStructureID": 80753, + "Label": "62325-80753 via Ribbon Synapse from 80529 -> 80754", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80529, + "TargetID": 80754, + "Directional": true + }] + }, { + "ID": 15031, + "SourceStructureID": 62325, + "TargetStructureID": 80806, + "Label": "62325-80806 via Ribbon Synapse from 80805 -> 80808", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80805, + "TargetID": 80808, + "Directional": true + }] + }, { + "ID": 15032, + "SourceStructureID": 62325, + "TargetStructureID": 80849, + "Label": "62325-80849 via Ribbon Synapse from 80842 -> 80852", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80842, + "TargetID": 80852, + "Directional": true + }] + }, { + "ID": 15033, + "SourceStructureID": 62325, + "TargetStructureID": 80871, + "Label": "62325-80871 via BC Conventional Synapse from 80873 -> 80872", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80873, + "TargetID": 80872, + "Directional": true + }] + }, { + "ID": 15034, + "SourceStructureID": 62325, + "TargetStructureID": 81236, + "Label": "62325-81236 via Ribbon Synapse from 81235 -> 81240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81235, + "TargetID": 81240, + "Directional": true + }] + }, { + "ID": 15035, + "SourceStructureID": 62325, + "TargetStructureID": 81239, + "Label": "62325-81239 via Ribbon Synapse from 81235 -> 81241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81235, + "TargetID": 81241, + "Directional": true + }] + }, { + "ID": 15036, + "SourceStructureID": 62325, + "TargetStructureID": 81257, + "Label": "62325-81257 via BC Conventional Synapse from 81255 -> 81258", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81255, + "TargetID": 81258, + "Directional": true + }] + }, { + "ID": 15037, + "SourceStructureID": 62325, + "TargetStructureID": 81270, + "Label": "62325-81270 via BC Conventional Synapse from 81419 -> 81418", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81419, + "TargetID": 81418, + "Directional": true + }] + }, { + "ID": 15038, + "SourceStructureID": 62325, + "TargetStructureID": 81270, + "Label": "62325-81270 via Ribbon Synapse from 81264 -> 81416", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81264, + "TargetID": 81416, + "Directional": true + }] + }, { + "ID": 15039, + "SourceStructureID": 62325, + "TargetStructureID": 81293, + "Label": "62325-81293 via Ribbon Synapse from 81291 -> 81294", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81291, + "TargetID": 81294, + "Directional": true + }] + }, { + "ID": 15040, + "SourceStructureID": 62325, + "TargetStructureID": 81296, + "Label": "62325-81296 via Ribbon Synapse from 81295 -> 81386", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81295, + "TargetID": 81386, + "Directional": true + }] + }, { + "ID": 15041, + "SourceStructureID": 62325, + "TargetStructureID": 81300, + "Label": "62325-81300 via Ribbon Synapse from 81299 -> 81359", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81299, + "TargetID": 81359, + "Directional": true + }] + }, { + "ID": 15042, + "SourceStructureID": 62325, + "TargetStructureID": 81301, + "Label": "62325-81301 via Ribbon Synapse from 81299 -> 81358", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81299, + "TargetID": 81358, + "Directional": true + }] + }, { + "ID": 15043, + "SourceStructureID": 62325, + "TargetStructureID": 81302, + "Label": "62325-81302 via Ribbon Synapse from 81299 -> 81303", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81299, + "TargetID": 81303, + "Directional": true + }] + }, { + "ID": 15044, + "SourceStructureID": 62325, + "TargetStructureID": 81321, + "Label": "62325-81321 via Ribbon Synapse from 81315 -> 81323", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81315, + "TargetID": 81323, + "Directional": true + }] + }, { + "ID": 15045, + "SourceStructureID": 62325, + "TargetStructureID": 81322, + "Label": "62325-81322 via Ribbon Synapse from 81315 -> 81324", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81315, + "TargetID": 81324, + "Directional": true + }] + }, { + "ID": 15046, + "SourceStructureID": 62325, + "TargetStructureID": 81379, + "Label": "62325-81379 via BC Conventional Synapse from 81380 -> 81381", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81380, + "TargetID": 81381, + "Directional": true + }] + }, { + "ID": 15047, + "SourceStructureID": 62325, + "TargetStructureID": 81405, + "Label": "62325-81405 via Ribbon Synapse from 81291 -> 81406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81291, + "TargetID": 81406, + "Directional": true + }] + }, { + "ID": 15048, + "SourceStructureID": 62337, + "TargetStructureID": 8575, + "Label": "62337-8575 via BC Conventional Synapse from 62338 -> 62336", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62338, + "TargetID": 62336, + "Directional": true + }] + }, { + "ID": 15049, + "SourceStructureID": 62340, + "TargetStructureID": 8575, + "Label": "62340-8575 via Conventional from 62341 -> 62339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62341, + "TargetID": 62339, + "Directional": true + }] + }, { + "ID": 15050, + "SourceStructureID": 62344, + "TargetStructureID": 8575, + "Label": "62344-8575 via BC Conventional Synapse from 62345 -> 62343", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62345, + "TargetID": 62343, + "Directional": true + }] + }, { + "ID": 15051, + "SourceStructureID": 62384, + "TargetStructureID": 8575, + "Label": "62384-8575 via Conventional from 62385 -> 62381, 62385 -> 62386", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62385, + "TargetID": 62381, + "Directional": true + }, { + "SourceID": 62385, + "TargetID": 62386, + "Directional": true + }] + }, { + "ID": 15052, + "SourceStructureID": 62396, + "TargetStructureID": 5598, + "Label": "62396-5598 via Conventional from 62404 -> 36022, 62411 -> 115158, 91576 -> 62403", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62404, + "TargetID": 36022, + "Directional": true + }, { + "SourceID": 62411, + "TargetID": 115158, + "Directional": true + }, { + "SourceID": 91576, + "TargetID": 62403, + "Directional": true + }] + }, { + "ID": 15053, + "SourceStructureID": 62396, + "TargetStructureID": 6050, + "Label": "62396-6050 via Conventional from 62397 -> 35945", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62397, + "TargetID": 35945, + "Directional": true + }] + }, { + "ID": 15054, + "SourceStructureID": 62396, + "TargetStructureID": 15976, + "Label": "62396-15976 via Conventional from 62416 -> 36044, 62418 -> 36048", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62416, + "TargetID": 36044, + "Directional": true + }, { + "SourceID": 62418, + "TargetID": 36048, + "Directional": true + }] + }, { + "ID": 15055, + "SourceStructureID": 62396, + "TargetStructureID": 35811, + "Label": "62396-35811 via Conventional from 62408 -> 35869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62408, + "TargetID": 35869, + "Directional": true + }] + }, { + "ID": 15056, + "SourceStructureID": 62420, + "TargetStructureID": 8575, + "Label": "62420-8575 via BC Conventional Synapse from 62421 -> 62249", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62421, + "TargetID": 62249, + "Directional": true + }] + }, { + "ID": 15057, + "SourceStructureID": 62420, + "TargetStructureID": 62423, + "Label": "62420-62423 via Ribbon Synapse from 62425 -> 62424", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62425, + "TargetID": 62424, + "Directional": true + }] + }, { + "ID": 15058, + "SourceStructureID": 62423, + "TargetStructureID": 62420, + "Label": "62423-62420 via Conventional from 62426 -> 62422", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62426, + "TargetID": 62422, + "Directional": true + }] + }, { + "ID": 15059, + "SourceStructureID": 62433, + "TargetStructureID": 8575, + "Label": "62433-8575 via BC Conventional Synapse from 62434 -> 62432", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62434, + "TargetID": 62432, + "Directional": true + }] + }, { + "ID": 15060, + "SourceStructureID": 62436, + "TargetStructureID": 8575, + "Label": "62436-8575 via Conventional from 62437 -> 61552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62437, + "TargetID": 61552, + "Directional": true + }] + }, { + "ID": 15061, + "SourceStructureID": 62443, + "TargetStructureID": 8575, + "Label": "62443-8575 via Conventional from 62444 -> 62442", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62444, + "TargetID": 62442, + "Directional": true + }] + }, { + "ID": 15062, + "SourceStructureID": 62446, + "TargetStructureID": 8575, + "Label": "62446-8575 via Conventional from 62447 -> 62445", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62447, + "TargetID": 62445, + "Directional": true + }] + }, { + "ID": 15063, + "SourceStructureID": 62450, + "TargetStructureID": 8575, + "Label": "62450-8575 via Conventional from 62451 -> 61550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62451, + "TargetID": 61550, + "Directional": true + }] + }, { + "ID": 15064, + "SourceStructureID": 62453, + "TargetStructureID": 8575, + "Label": "62453-8575 via Conventional from 62454 -> 62452", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62454, + "TargetID": 62452, + "Directional": true + }] + }, { + "ID": 15065, + "SourceStructureID": 62456, + "TargetStructureID": 16073, + "Label": "62456-16073 via Conventional from 62457 -> 16081", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62457, + "TargetID": 16081, + "Directional": true + }] + }, { + "ID": 15066, + "SourceStructureID": 62458, + "TargetStructureID": 16073, + "Label": "62458-16073 via Conventional from 62459 -> 20179", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62459, + "TargetID": 20179, + "Directional": true + }] + }, { + "ID": 15067, + "SourceStructureID": 62460, + "TargetStructureID": 16073, + "Label": "62460-16073 via Conventional from 62461 -> 20177", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62461, + "TargetID": 20177, + "Directional": true + }] + }, { + "ID": 15068, + "SourceStructureID": 62462, + "TargetStructureID": 16073, + "Label": "62462-16073 via Conventional from 62463 -> 20178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62463, + "TargetID": 20178, + "Directional": true + }] + }, { + "ID": 15069, + "SourceStructureID": 62464, + "TargetStructureID": 16073, + "Label": "62464-16073 via Conventional from 62465 -> 16083", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62465, + "TargetID": 16083, + "Directional": true + }] + }, { + "ID": 15070, + "SourceStructureID": 62468, + "TargetStructureID": 16073, + "Label": "62468-16073 via Conventional from 62471 -> 62466", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62471, + "TargetID": 62466, + "Directional": true + }] + }, { + "ID": 15071, + "SourceStructureID": 62469, + "TargetStructureID": 16073, + "Label": "62469-16073 via Conventional from 62470 -> 62467", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62470, + "TargetID": 62467, + "Directional": true + }] + }, { + "ID": 15072, + "SourceStructureID": 62473, + "TargetStructureID": 16073, + "Label": "62473-16073 via Conventional from 62474 -> 62472", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62474, + "TargetID": 62472, + "Directional": true + }] + }, { + "ID": 15073, + "SourceStructureID": 62475, + "TargetStructureID": 16073, + "Label": "62475-16073 via Conventional from 62476 -> 20176", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62476, + "TargetID": 20176, + "Directional": true + }] + }, { + "ID": 15074, + "SourceStructureID": 62478, + "TargetStructureID": 16073, + "Label": "62478-16073 via Conventional from 62479 -> 62477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62479, + "TargetID": 62477, + "Directional": true + }] + }, { + "ID": 15075, + "SourceStructureID": 62480, + "TargetStructureID": 6120, + "Label": "62480-6120 via Conventional from 62482 -> 37243", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62482, + "TargetID": 37243, + "Directional": true + }] + }, { + "ID": 15076, + "SourceStructureID": 62480, + "TargetStructureID": 16073, + "Label": "62480-16073 via Conventional from 62481 -> 19898, 62481 -> 19936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62481, + "TargetID": 19898, + "Directional": true + }, { + "SourceID": 62481, + "TargetID": 19936, + "Directional": true + }] + }, { + "ID": 15077, + "SourceStructureID": 62483, + "TargetStructureID": 6120, + "Label": "62483-6120 via Conventional from 125647 -> 125646", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125647, + "TargetID": 125646, + "Directional": true + }] + }, { + "ID": 15078, + "SourceStructureID": 62483, + "TargetStructureID": 16073, + "Label": "62483-16073 via Conventional from 62484 -> 19935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62484, + "TargetID": 19935, + "Directional": true + }] + }, { + "ID": 15079, + "SourceStructureID": 62485, + "TargetStructureID": 16073, + "Label": "62485-16073 via Conventional from 62486 -> 19934", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62486, + "TargetID": 19934, + "Directional": true + }] + }, { + "ID": 15080, + "SourceStructureID": 62489, + "TargetStructureID": 16073, + "Label": "62489-16073 via Conventional from 62490 -> 62488", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62490, + "TargetID": 62488, + "Directional": true + }] + }, { + "ID": 15081, + "SourceStructureID": 62491, + "TargetStructureID": 16073, + "Label": "62491-16073 via Conventional from 62493 -> 19939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62493, + "TargetID": 19939, + "Directional": true + }] + }, { + "ID": 15082, + "SourceStructureID": 62492, + "TargetStructureID": 16073, + "Label": "62492-16073 via Conventional from 62494 -> 19940", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62494, + "TargetID": 19940, + "Directional": true + }] + }, { + "ID": 15083, + "SourceStructureID": 62496, + "TargetStructureID": 5498, + "Label": "62496-5498 via Conventional from 62497 -> 62495", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62497, + "TargetID": 62495, + "Directional": true + }] + }, { + "ID": 15084, + "SourceStructureID": 62500, + "TargetStructureID": 55686, + "Label": "62500-55686 via Conventional from 62523 -> 62524", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62523, + "TargetID": 62524, + "Directional": true + }] + }, { + "ID": 15085, + "SourceStructureID": 62511, + "TargetStructureID": 62500, + "Label": "62511-62500 via Ribbon Synapse from 62512 -> 62510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62512, + "TargetID": 62510, + "Directional": true + }] + }, { + "ID": 15086, + "SourceStructureID": 62515, + "TargetStructureID": 62500, + "Label": "62515-62500 via Ribbon Synapse from 62516 -> 62514", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62516, + "TargetID": 62514, + "Directional": true + }] + }, { + "ID": 15087, + "SourceStructureID": 62531, + "TargetStructureID": 5497, + "Label": "62531-5497 via Ribbon Synapse from 62532 -> 62530", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62532, + "TargetID": 62530, + "Directional": true + }] + }, { + "ID": 15088, + "SourceStructureID": 62531, + "TargetStructureID": 7859, + "Label": "62531-7859 via Ribbon Synapse from 64635 -> 64630", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64635, + "TargetID": 64630, + "Directional": true + }] + }, { + "ID": 15089, + "SourceStructureID": 62540, + "TargetStructureID": 5497, + "Label": "62540-5497 via Ribbon Synapse from 62541 -> 62539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62541, + "TargetID": 62539, + "Directional": true + }] + }, { + "ID": 15090, + "SourceStructureID": 62574, + "TargetStructureID": 5497, + "Label": "62574-5497 via Conventional from 62575 -> 62573", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62575, + "TargetID": 62573, + "Directional": true + }] + }, { + "ID": 15091, + "SourceStructureID": 62599, + "TargetStructureID": 5497, + "Label": "62599-5497 via Ribbon Synapse from 62600 -> 62598", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62600, + "TargetID": 62598, + "Directional": true + }] + }, { + "ID": 15092, + "SourceStructureID": 62617, + "TargetStructureID": 5497, + "Label": "62617-5497 via Ribbon Synapse from 62618 -> 62616", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62618, + "TargetID": 62616, + "Directional": true + }] + }, { + "ID": 15093, + "SourceStructureID": 62632, + "TargetStructureID": 7703, + "Label": "62632-7703 via Ribbon Synapse from 62633 -> 62634", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62633, + "TargetID": 62634, + "Directional": true + }] + }, { + "ID": 15094, + "SourceStructureID": 62655, + "TargetStructureID": 8579, + "Label": "62655-8579 via Ribbon Synapse from 62656 -> 62654", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62656, + "TargetID": 62654, + "Directional": true + }] + }, { + "ID": 15095, + "SourceStructureID": 62659, + "TargetStructureID": 8579, + "Label": "62659-8579 via Conventional from 62660 -> 62658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62660, + "TargetID": 62658, + "Directional": true + }] + }, { + "ID": 15096, + "SourceStructureID": 62704, + "TargetStructureID": 8579, + "Label": "62704-8579 via Conventional from 62705 -> 62702", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62705, + "TargetID": 62702, + "Directional": true + }] + }, { + "ID": 15097, + "SourceStructureID": 62704, + "TargetStructureID": 62707, + "Label": "62704-62707 via Conventional from 62706 -> 62709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62706, + "TargetID": 62709, + "Directional": true + }] + }, { + "ID": 15098, + "SourceStructureID": 62720, + "TargetStructureID": 6142, + "Label": "62720-6142 via Conventional from 62722 -> 62719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62722, + "TargetID": 62719, + "Directional": true + }] + }, { + "ID": 15099, + "SourceStructureID": 62720, + "TargetStructureID": 8579, + "Label": "62720-8579 via Conventional from 62721 -> 62718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62721, + "TargetID": 62718, + "Directional": true + }] + }, { + "ID": 15100, + "SourceStructureID": 62731, + "TargetStructureID": 8579, + "Label": "62731-8579 via Conventional from 62732 -> 62730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62732, + "TargetID": 62730, + "Directional": true + }] + }, { + "ID": 15101, + "SourceStructureID": 62760, + "TargetStructureID": 6997, + "Label": "62760-6997 via Conventional from 62762 -> 28718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62762, + "TargetID": 28718, + "Directional": true + }] + }, { + "ID": 15102, + "SourceStructureID": 62760, + "TargetStructureID": 8575, + "Label": "62760-8575 via Conventional from 62761 -> 21626", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62761, + "TargetID": 21626, + "Directional": true + }] + }, { + "ID": 15103, + "SourceStructureID": 62764, + "TargetStructureID": 8575, + "Label": "62764-8575 via Conventional from 62765 -> 43264", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62765, + "TargetID": 43264, + "Directional": true + }] + }, { + "ID": 15104, + "SourceStructureID": 62777, + "TargetStructureID": 4890, + "Label": "62777-4890 via Ribbon Synapse from 64883 -> 64882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64883, + "TargetID": 64882, + "Directional": true + }] + }, { + "ID": 15105, + "SourceStructureID": 62777, + "TargetStructureID": 8575, + "Label": "62777-8575 via BC Conventional Synapse from 62778 -> 62776", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62778, + "TargetID": 62776, + "Directional": true + }] + }, { + "ID": 15106, + "SourceStructureID": 62786, + "TargetStructureID": 5405, + "Label": "62786-5405 via Ribbon Synapse from 62787 -> 11155", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62787, + "TargetID": 11155, + "Directional": true + }] + }, { + "ID": 15107, + "SourceStructureID": 62786, + "TargetStructureID": 8575, + "Label": "62786-8575 via Ribbon Synapse from 62788 -> 62785", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62788, + "TargetID": 62785, + "Directional": true + }] + }, { + "ID": 15108, + "SourceStructureID": 62807, + "TargetStructureID": 8575, + "Label": "62807-8575 via Conventional from 62808 -> 62806", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62808, + "TargetID": 62806, + "Directional": true + }] + }, { + "ID": 15109, + "SourceStructureID": 62829, + "TargetStructureID": 8575, + "Label": "62829-8575 via Conventional from 62830 -> 62828", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62830, + "TargetID": 62828, + "Directional": true + }] + }, { + "ID": 15110, + "SourceStructureID": 62933, + "TargetStructureID": 8579, + "Label": "62933-8579 via Adherens from 62935 -> 62683", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 62935, + "TargetID": 62683, + "Directional": true + }] + }, { + "ID": 15111, + "SourceStructureID": 62933, + "TargetStructureID": 8579, + "Label": "62933-8579 via Conventional from 62934 -> 62684", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62934, + "TargetID": 62684, + "Directional": true + }] + }, { + "ID": 15112, + "SourceStructureID": 62956, + "TargetStructureID": 8575, + "Label": "62956-8575 via Ribbon Synapse from 62958 -> 62955", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62958, + "TargetID": 62955, + "Directional": true + }] + }, { + "ID": 15113, + "SourceStructureID": 62964, + "TargetStructureID": 8575, + "Label": "62964-8575 via Conventional from 62965 -> 37263", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62965, + "TargetID": 37263, + "Directional": true + }] + }, { + "ID": 15114, + "SourceStructureID": 62974, + "TargetStructureID": 8575, + "Label": "62974-8575 via Conventional from 62975 -> 62973", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62975, + "TargetID": 62973, + "Directional": true + }] + }, { + "ID": 15115, + "SourceStructureID": 62974, + "TargetStructureID": 10963, + "Label": "62974-10963 via Conventional from 62982 -> 31937", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62982, + "TargetID": 31937, + "Directional": true + }] + }, { + "ID": 15116, + "SourceStructureID": 62989, + "TargetStructureID": 8575, + "Label": "62989-8575 via Conventional from 62991 -> 37265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 62991, + "TargetID": 37265, + "Directional": true + }] + }, { + "ID": 15117, + "SourceStructureID": 62992, + "TargetStructureID": 62989, + "Label": "62992-62989 via Ribbon Synapse from 62993 -> 62990", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 62993, + "TargetID": 62990, + "Directional": true + }] + }, { + "ID": 15118, + "SourceStructureID": 63000, + "TargetStructureID": 8575, + "Label": "63000-8575 via Conventional from 63001 -> 21651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63001, + "TargetID": 21651, + "Directional": true + }] + }, { + "ID": 15119, + "SourceStructureID": 63016, + "TargetStructureID": 8575, + "Label": "63016-8575 via Conventional from 63017 -> 63015", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63017, + "TargetID": 63015, + "Directional": true + }] + }, { + "ID": 15120, + "SourceStructureID": 63060, + "TargetStructureID": 8575, + "Label": "63060-8575 via Conventional from 63061 -> 63059", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63061, + "TargetID": 63059, + "Directional": true + }] + }, { + "ID": 15121, + "SourceStructureID": 63068, + "TargetStructureID": 8575, + "Label": "63068-8575 via Conventional from 63070 -> 21627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63070, + "TargetID": 21627, + "Directional": true + }] + }, { + "ID": 15122, + "SourceStructureID": 63071, + "TargetStructureID": 63068, + "Label": "63071-63068 via Conventional from 63072 -> 63069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63072, + "TargetID": 63069, + "Directional": true + }] + }, { + "ID": 15123, + "SourceStructureID": 63115, + "TargetStructureID": 5522, + "Label": "63115-5522 via Conventional from 63116 -> 63117", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63116, + "TargetID": 63117, + "Directional": true + }] + }, { + "ID": 15124, + "SourceStructureID": 63199, + "TargetStructureID": 79042, + "Label": "63199-79042 via Ribbon Synapse from 147551 -> 147552", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147551, + "TargetID": 147552, + "Directional": true + }] + }, { + "ID": 15125, + "SourceStructureID": 63209, + "TargetStructureID": 5916, + "Label": "63209-5916 via Conventional from 63210 -> 63208", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63210, + "TargetID": 63208, + "Directional": true + }] + }, { + "ID": 15126, + "SourceStructureID": 63423, + "TargetStructureID": 13858, + "Label": "63423-13858 via Ribbon Synapse from 63424 -> 63422", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63424, + "TargetID": 63422, + "Directional": true + }] + }, { + "ID": 15127, + "SourceStructureID": 63423, + "TargetStructureID": 85856, + "Label": "63423-85856 via Ribbon Synapse from 71180 -> 71177, 71181 -> 71178", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71180, + "TargetID": 71177, + "Directional": true + }, { + "SourceID": 71181, + "TargetID": 71178, + "Directional": true + }] + }, { + "ID": 15128, + "SourceStructureID": 63440, + "TargetStructureID": 13858, + "Label": "63440-13858 via Conventional from 63441 -> 63442", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63441, + "TargetID": 63442, + "Directional": true + }] + }, { + "ID": 15129, + "SourceStructureID": 63440, + "TargetStructureID": 63445, + "Label": "63440-63445 via Conventional from 63444 -> 63446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63444, + "TargetID": 63446, + "Directional": true + }] + }, { + "ID": 15130, + "SourceStructureID": 63445, + "TargetStructureID": 13858, + "Label": "63445-13858 via Ribbon Synapse from 63447 -> 63439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63447, + "TargetID": 63439, + "Directional": true + }] + }, { + "ID": 15131, + "SourceStructureID": 63451, + "TargetStructureID": 8720, + "Label": "63451-8720 via Ribbon Synapse from 63452 -> 63450", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63452, + "TargetID": 63450, + "Directional": true + }] + }, { + "ID": 15132, + "SourceStructureID": 63460, + "TargetStructureID": 8720, + "Label": "63460-8720 via Ribbon Synapse from 63461 -> 63459", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63461, + "TargetID": 63459, + "Directional": true + }] + }, { + "ID": 15133, + "SourceStructureID": 63465, + "TargetStructureID": 8720, + "Label": "63465-8720 via Ribbon Synapse from 63466 -> 63464", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63466, + "TargetID": 63464, + "Directional": true + }] + }, { + "ID": 15134, + "SourceStructureID": 63473, + "TargetStructureID": 63469, + "Label": "63473-63469 via Ribbon Synapse from 63474 -> 63472", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63474, + "TargetID": 63472, + "Directional": true + }] + }, { + "ID": 15135, + "SourceStructureID": 63485, + "TargetStructureID": 71985, + "Label": "63485-71985 via Ribbon Synapse from 72017 -> 72018", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72017, + "TargetID": 72018, + "Directional": true + }] + }, { + "ID": 15136, + "SourceStructureID": 63487, + "TargetStructureID": 71985, + "Label": "63487-71985 via Ribbon Synapse from 63488 -> 71987", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63488, + "TargetID": 71987, + "Directional": true + }] + }, { + "ID": 15137, + "SourceStructureID": 63513, + "TargetStructureID": 8575, + "Label": "63513-8575 via Ribbon Synapse from 63514 -> 63512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63514, + "TargetID": 63512, + "Directional": true + }] + }, { + "ID": 15138, + "SourceStructureID": 63516, + "TargetStructureID": 8575, + "Label": "63516-8575 via Conventional from 63517 -> 63509", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63517, + "TargetID": 63509, + "Directional": true + }] + }, { + "ID": 15139, + "SourceStructureID": 63521, + "TargetStructureID": 8575, + "Label": "63521-8575 via Conventional from 63523 -> 62104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63523, + "TargetID": 62104, + "Directional": true + }] + }, { + "ID": 15140, + "SourceStructureID": 63521, + "TargetStructureID": 35145, + "Label": "63521-35145 via Conventional from 63522 -> 45493", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63522, + "TargetID": 45493, + "Directional": true + }] + }, { + "ID": 15141, + "SourceStructureID": 63542, + "TargetStructureID": 8575, + "Label": "63542-8575 via Conventional from 63543 -> 63541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63543, + "TargetID": 63541, + "Directional": true + }] + }, { + "ID": 15142, + "SourceStructureID": 63550, + "TargetStructureID": 8575, + "Label": "63550-8575 via Conventional from 63552 -> 62100", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63552, + "TargetID": 62100, + "Directional": true + }] + }, { + "ID": 15143, + "SourceStructureID": 63573, + "TargetStructureID": 63550, + "Label": "63573-63550 via Ribbon Synapse from 63575 -> 63572", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63575, + "TargetID": 63572, + "Directional": true + }] + }, { + "ID": 15144, + "SourceStructureID": 63592, + "TargetStructureID": 63550, + "Label": "63592-63550 via Ribbon Synapse from 63593 -> 63591", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63593, + "TargetID": 63591, + "Directional": true + }] + }, { + "ID": 15145, + "SourceStructureID": 63612, + "TargetStructureID": 8575, + "Label": "63612-8575 via Conventional from 63613 -> 62098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63613, + "TargetID": 62098, + "Directional": true + }] + }, { + "ID": 15146, + "SourceStructureID": 63619, + "TargetStructureID": 8575, + "Label": "63619-8575 via Conventional from 63620 -> 62096", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63620, + "TargetID": 62096, + "Directional": true + }] + }, { + "ID": 15147, + "SourceStructureID": 63628, + "TargetStructureID": 397, + "Label": "63628-397 via Conventional from 63826 -> 68724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63826, + "TargetID": 68724, + "Directional": true + }] + }, { + "ID": 15148, + "SourceStructureID": 63628, + "TargetStructureID": 8575, + "Label": "63628-8575 via Conventional from 63629 -> 62095", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63629, + "TargetID": 62095, + "Directional": true + }] + }, { + "ID": 15149, + "SourceStructureID": 63628, + "TargetStructureID": 59333, + "Label": "63628-59333 via Conventional from 85040 -> 85037", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85040, + "TargetID": 85037, + "Directional": true + }] + }, { + "ID": 15150, + "SourceStructureID": 63628, + "TargetStructureID": 63806, + "Label": "63628-63806 via Conventional from 63805 -> 63808", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63805, + "TargetID": 63808, + "Directional": true + }] + }, { + "ID": 15151, + "SourceStructureID": 63799, + "TargetStructureID": 59362, + "Label": "63799-59362 via Conventional from 63800 -> 63798", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63800, + "TargetID": 63798, + "Directional": true + }] + }, { + "ID": 15152, + "SourceStructureID": 63806, + "TargetStructureID": 63628, + "Label": "63806-63628 via Ribbon Synapse from 63807 -> 63804", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63807, + "TargetID": 63804, + "Directional": true + }] + }, { + "ID": 15153, + "SourceStructureID": 63956, + "TargetStructureID": 5611, + "Label": "63956-5611 via Conventional from 63957 -> 63955", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 63957, + "TargetID": 63955, + "Directional": true + }] + }, { + "ID": 15154, + "SourceStructureID": 63991, + "TargetStructureID": 63978, + "Label": "63991-63978 via Ribbon Synapse from 63992 -> 63990", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63992, + "TargetID": 63990, + "Directional": true + }] + }, { + "ID": 15155, + "SourceStructureID": 64196, + "TargetStructureID": 32804, + "Label": "64196-32804 via Ribbon Synapse from 64199 -> 64206, 64200 -> 64205", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64199, + "TargetID": 64206, + "Directional": true + }, { + "SourceID": 64200, + "TargetID": 64205, + "Directional": true + }] + }, { + "ID": 15156, + "SourceStructureID": 64355, + "TargetStructureID": 13858, + "Label": "64355-13858 via Conventional from 64356 -> 63418", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64356, + "TargetID": 63418, + "Directional": true + }] + }, { + "ID": 15157, + "SourceStructureID": 64362, + "TargetStructureID": 593, + "Label": "64362-593 via Conventional from 64364 -> 64365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64364, + "TargetID": 64365, + "Directional": true + }] + }, { + "ID": 15158, + "SourceStructureID": 64362, + "TargetStructureID": 7594, + "Label": "64362-7594 via Conventional from 82389 -> 82390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82389, + "TargetID": 82390, + "Directional": true + }] + }, { + "ID": 15159, + "SourceStructureID": 64362, + "TargetStructureID": 16026, + "Label": "64362-16026 via Conventional from 81910 -> 25639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81910, + "TargetID": 25639, + "Directional": true + }] + }, { + "ID": 15160, + "SourceStructureID": 64362, + "TargetStructureID": 31161, + "Label": "64362-31161 via Conventional from 64363 -> 31244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64363, + "TargetID": 31244, + "Directional": true + }] + }, { + "ID": 15161, + "SourceStructureID": 64362, + "TargetStructureID": 81912, + "Label": "64362-81912 via Conventional from 81911 -> 81913", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81911, + "TargetID": 81913, + "Directional": true + }] + }, { + "ID": 15162, + "SourceStructureID": 64387, + "TargetStructureID": 8720, + "Label": "64387-8720 via Conventional from 64388 -> 63171", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64388, + "TargetID": 63171, + "Directional": true + }] + }, { + "ID": 15163, + "SourceStructureID": 64389, + "TargetStructureID": 8720, + "Label": "64389-8720 via Conventional from 64390 -> 63170", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64390, + "TargetID": 63170, + "Directional": true + }] + }, { + "ID": 15164, + "SourceStructureID": 64399, + "TargetStructureID": 8720, + "Label": "64399-8720 via Conventional from 64400 -> 63169", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64400, + "TargetID": 63169, + "Directional": true + }] + }, { + "ID": 15165, + "SourceStructureID": 64402, + "TargetStructureID": 8720, + "Label": "64402-8720 via Conventional from 64403 -> 64401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64403, + "TargetID": 64401, + "Directional": true + }] + }, { + "ID": 15166, + "SourceStructureID": 64406, + "TargetStructureID": 8720, + "Label": "64406-8720 via Conventional from 64407 -> 64405", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64407, + "TargetID": 64405, + "Directional": true + }] + }, { + "ID": 15167, + "SourceStructureID": 64409, + "TargetStructureID": 5530, + "Label": "64409-5530 via Conventional from 74999 -> 75000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74999, + "TargetID": 75000, + "Directional": true + }] + }, { + "ID": 15168, + "SourceStructureID": 64447, + "TargetStructureID": 5729, + "Label": "64447-5729 via Conventional from 64448 -> 64446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64448, + "TargetID": 64446, + "Directional": true + }] + }, { + "ID": 15169, + "SourceStructureID": 64520, + "TargetStructureID": 5729, + "Label": "64520-5729 via Conventional from 64521 -> 64519", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64521, + "TargetID": 64519, + "Directional": true + }] + }, { + "ID": 15170, + "SourceStructureID": 64547, + "TargetStructureID": 5575, + "Label": "64547-5575 via Conventional from 64548 -> 64546", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64548, + "TargetID": 64546, + "Directional": true + }] + }, { + "ID": 15171, + "SourceStructureID": 64549, + "TargetStructureID": 5575, + "Label": "64549-5575 via Conventional from 64550 -> 22970", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64550, + "TargetID": 22970, + "Directional": true + }] + }, { + "ID": 15172, + "SourceStructureID": 64626, + "TargetStructureID": 7859, + "Label": "64626-7859 via Conventional from 64627 -> 64625", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64627, + "TargetID": 64625, + "Directional": true + }] + }, { + "ID": 15173, + "SourceStructureID": 64651, + "TargetStructureID": 5860, + "Label": "64651-5860 via Conventional from 64652 -> 64653", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64652, + "TargetID": 64653, + "Directional": true + }] + }, { + "ID": 15174, + "SourceStructureID": 64654, + "TargetStructureID": 485, + "Label": "64654-485 via Conventional from 64656 -> 64657", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64656, + "TargetID": 64657, + "Directional": true + }] + }, { + "ID": 15175, + "SourceStructureID": 64665, + "TargetStructureID": 7859, + "Label": "64665-7859 via Conventional from 64667 -> 64664", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64667, + "TargetID": 64664, + "Directional": true + }] + }, { + "ID": 15176, + "SourceStructureID": 64670, + "TargetStructureID": 64673, + "Label": "64670-64673 via Conventional from 64672 -> 64674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64672, + "TargetID": 64674, + "Directional": true + }] + }, { + "ID": 15177, + "SourceStructureID": 64673, + "TargetStructureID": 174, + "Label": "64673-174 via Ribbon Synapse from 64676 -> 64675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64676, + "TargetID": 64675, + "Directional": true + }] + }, { + "ID": 15178, + "SourceStructureID": 64673, + "TargetStructureID": 64670, + "Label": "64673-64670 via Ribbon Synapse from 64676 -> 64677, 64680 -> 64679", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64676, + "TargetID": 64677, + "Directional": true + }, { + "SourceID": 64680, + "TargetID": 64679, + "Directional": true + }] + }, { + "ID": 15179, + "SourceStructureID": 64673, + "TargetStructureID": 119154, + "Label": "64673-119154 via Ribbon Synapse from 64680 -> 119174", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64680, + "TargetID": 119174, + "Directional": true + }] + }, { + "ID": 15180, + "SourceStructureID": 64690, + "TargetStructureID": 9787, + "Label": "64690-9787 via Ribbon Synapse from 64691 -> 64692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64691, + "TargetID": 64692, + "Directional": true + }] + }, { + "ID": 15181, + "SourceStructureID": 64690, + "TargetStructureID": 10574, + "Label": "64690-10574 via Ribbon Synapse from 84549 -> 84547", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84549, + "TargetID": 84547, + "Directional": true + }] + }, { + "ID": 15182, + "SourceStructureID": 64698, + "TargetStructureID": 8575, + "Label": "64698-8575 via Conventional from 64699 -> 63510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64699, + "TargetID": 63510, + "Directional": true + }] + }, { + "ID": 15183, + "SourceStructureID": 64787, + "TargetStructureID": 64777, + "Label": "64787-64777 via Conventional from 64788 -> 64786", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64788, + "TargetID": 64786, + "Directional": true + }] + }, { + "ID": 15184, + "SourceStructureID": 64795, + "TargetStructureID": 64777, + "Label": "64795-64777 via Conventional from 64796 -> 64794", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64796, + "TargetID": 64794, + "Directional": true + }] + }, { + "ID": 15185, + "SourceStructureID": 64805, + "TargetStructureID": 10963, + "Label": "64805-10963 via Conventional from 64806 -> 64803, 64807 -> 64804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64806, + "TargetID": 64803, + "Directional": true + }, { + "SourceID": 64807, + "TargetID": 64804, + "Directional": true + }] + }, { + "ID": 15186, + "SourceStructureID": 64841, + "TargetStructureID": 64777, + "Label": "64841-64777 via Ribbon Synapse from 64842 -> 64840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 64842, + "TargetID": 64840, + "Directional": true + }] + }, { + "ID": 15187, + "SourceStructureID": 64920, + "TargetStructureID": 4890, + "Label": "64920-4890 via Conventional from 64921 -> 64919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64921, + "TargetID": 64919, + "Directional": true + }] + }, { + "ID": 15188, + "SourceStructureID": 64939, + "TargetStructureID": 64939, + "Label": "64939-64939 via Conventional from 69440 -> 69419", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69440, + "TargetID": 69419, + "Directional": true + }] + }, { + "ID": 15189, + "SourceStructureID": 64939, + "TargetStructureID": 64939, + "Label": "64939-64939 via Ribbon Synapse from 69707 -> 69715", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69707, + "TargetID": 69715, + "Directional": true + }] + }, { + "ID": 15190, + "SourceStructureID": 64939, + "TargetStructureID": 69436, + "Label": "64939-69436 via Ribbon Synapse from 69417 -> 69437", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69417, + "TargetID": 69437, + "Directional": true + }] + }, { + "ID": 15191, + "SourceStructureID": 64939, + "TargetStructureID": 69439, + "Label": "64939-69439 via Ribbon Synapse from 69417 -> 69644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69417, + "TargetID": 69644, + "Directional": true + }] + }, { + "ID": 15192, + "SourceStructureID": 64939, + "TargetStructureID": 69443, + "Label": "64939-69443 via BC Conventional Synapse from 69421 -> 69444", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69421, + "TargetID": 69444, + "Directional": true + }] + }, { + "ID": 15193, + "SourceStructureID": 64939, + "TargetStructureID": 69446, + "Label": "64939-69446 via Ribbon Synapse from 69425 -> 116705, 69445 -> 69447", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69425, + "TargetID": 116705, + "Directional": true + }, { + "SourceID": 69445, + "TargetID": 69447, + "Directional": true + }] + }, { + "ID": 15194, + "SourceStructureID": 64939, + "TargetStructureID": 69454, + "Label": "64939-69454 via Ribbon Synapse from 69423 -> 69455", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69423, + "TargetID": 69455, + "Directional": true + }] + }, { + "ID": 15195, + "SourceStructureID": 64939, + "TargetStructureID": 69554, + "Label": "64939-69554 via BC Conventional Synapse from 69564 -> 69565", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69564, + "TargetID": 69565, + "Directional": true + }] + }, { + "ID": 15196, + "SourceStructureID": 64939, + "TargetStructureID": 69695, + "Label": "64939-69695 via Ribbon Synapse from 69694 -> 69698", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69694, + "TargetID": 69698, + "Directional": true + }] + }, { + "ID": 15197, + "SourceStructureID": 64939, + "TargetStructureID": 69697, + "Label": "64939-69697 via Ribbon Synapse from 69694 -> 69699", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69694, + "TargetID": 69699, + "Directional": true + }] + }, { + "ID": 15198, + "SourceStructureID": 64939, + "TargetStructureID": 69708, + "Label": "64939-69708 via Ribbon Synapse from 69707 -> 69709", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69707, + "TargetID": 69709, + "Directional": true + }] + }, { + "ID": 15199, + "SourceStructureID": 64939, + "TargetStructureID": 69710, + "Label": "64939-69710 via Ribbon Synapse from 69707 -> 69716", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69707, + "TargetID": 69716, + "Directional": true + }] + }, { + "ID": 15200, + "SourceStructureID": 64939, + "TargetStructureID": 69720, + "Label": "64939-69720 via Ribbon Synapse from 69719 -> 69722", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69719, + "TargetID": 69722, + "Directional": true + }] + }, { + "ID": 15201, + "SourceStructureID": 64939, + "TargetStructureID": 69721, + "Label": "64939-69721 via Ribbon Synapse from 69719 -> 69723", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69719, + "TargetID": 69723, + "Directional": true + }] + }, { + "ID": 15202, + "SourceStructureID": 64939, + "TargetStructureID": 69727, + "Label": "64939-69727 via Ribbon Synapse from 69726 -> 69730", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69726, + "TargetID": 69730, + "Directional": true + }] + }, { + "ID": 15203, + "SourceStructureID": 64939, + "TargetStructureID": 69728, + "Label": "64939-69728 via Ribbon Synapse from 69726 -> 69731", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69726, + "TargetID": 69731, + "Directional": true + }] + }, { + "ID": 15204, + "SourceStructureID": 64939, + "TargetStructureID": 69733, + "Label": "64939-69733 via Ribbon Synapse from 69732 -> 70081", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69732, + "TargetID": 70081, + "Directional": true + }] + }, { + "ID": 15205, + "SourceStructureID": 64939, + "TargetStructureID": 69735, + "Label": "64939-69735 via Ribbon Synapse from 69734 -> 69736", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69734, + "TargetID": 69736, + "Directional": true + }] + }, { + "ID": 15206, + "SourceStructureID": 64939, + "TargetStructureID": 69737, + "Label": "64939-69737 via Ribbon Synapse from 69734 -> 69738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69734, + "TargetID": 69738, + "Directional": true + }] + }, { + "ID": 15207, + "SourceStructureID": 64939, + "TargetStructureID": 69750, + "Label": "64939-69750 via Ribbon Synapse from 70082 -> 70083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70082, + "TargetID": 70083, + "Directional": true + }] + }, { + "ID": 15208, + "SourceStructureID": 64939, + "TargetStructureID": 69966, + "Label": "64939-69966 via Ribbon Synapse from 69965 -> 69969", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69965, + "TargetID": 69969, + "Directional": true + }] + }, { + "ID": 15209, + "SourceStructureID": 64939, + "TargetStructureID": 69967, + "Label": "64939-69967 via Ribbon Synapse from 69965 -> 69968", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69965, + "TargetID": 69968, + "Directional": true + }] + }, { + "ID": 15210, + "SourceStructureID": 64939, + "TargetStructureID": 69972, + "Label": "64939-69972 via Ribbon Synapse from 69970 -> 69974", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69970, + "TargetID": 69974, + "Directional": true + }] + }, { + "ID": 15211, + "SourceStructureID": 64939, + "TargetStructureID": 69973, + "Label": "64939-69973 via Ribbon Synapse from 69970 -> 69975", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 69970, + "TargetID": 69975, + "Directional": true + }] + }, { + "ID": 15212, + "SourceStructureID": 64939, + "TargetStructureID": 70003, + "Label": "64939-70003 via Ribbon Synapse from 70002 -> 70004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70002, + "TargetID": 70004, + "Directional": true + }] + }, { + "ID": 15213, + "SourceStructureID": 64939, + "TargetStructureID": 93634, + "Label": "64939-93634 via BC Conventional Synapse from 93633 -> 93636", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93633, + "TargetID": 93636, + "Directional": true + }] + }, { + "ID": 15214, + "SourceStructureID": 64939, + "TargetStructureID": 112880, + "Label": "64939-112880 via Ribbon Synapse from 93639 -> 112881, 93642 -> 112882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93639, + "TargetID": 112881, + "Directional": true + }, { + "SourceID": 93642, + "TargetID": 112882, + "Directional": true + }] + }, { + "ID": 15215, + "SourceStructureID": 65023, + "TargetStructureID": 6118, + "Label": "65023-6118 via Conventional from 65032 -> 65031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65032, + "TargetID": 65031, + "Directional": true + }] + }, { + "ID": 15216, + "SourceStructureID": 65056, + "TargetStructureID": 5107, + "Label": "65056-5107 via Conventional from 65057 -> 65011", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65057, + "TargetID": 65011, + "Directional": true + }] + }, { + "ID": 15217, + "SourceStructureID": 65134, + "TargetStructureID": 65138, + "Label": "65134-65138 via Conventional from 65137 -> 65139", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65137, + "TargetID": 65139, + "Directional": true + }] + }, { + "ID": 15218, + "SourceStructureID": 65134, + "TargetStructureID": 65141, + "Label": "65134-65141 via Conventional from 65140 -> 65142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65140, + "TargetID": 65142, + "Directional": true + }] + }, { + "ID": 15219, + "SourceStructureID": 65134, + "TargetStructureID": 65144, + "Label": "65134-65144 via Conventional from 65143 -> 65145", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65143, + "TargetID": 65145, + "Directional": true + }] + }, { + "ID": 15220, + "SourceStructureID": 65156, + "TargetStructureID": 593, + "Label": "65156-593 via Conventional from 65157 -> 65155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65157, + "TargetID": 65155, + "Directional": true + }] + }, { + "ID": 15221, + "SourceStructureID": 65181, + "TargetStructureID": 476, + "Label": "65181-476 via Conventional from 65182 -> 18023", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65182, + "TargetID": 18023, + "Directional": true + }] + }, { + "ID": 15222, + "SourceStructureID": 65245, + "TargetStructureID": 180, + "Label": "65245-180 via Conventional from 94584 -> 5734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94584, + "TargetID": 5734, + "Directional": true + }] + }, { + "ID": 15223, + "SourceStructureID": 65247, + "TargetStructureID": 6117, + "Label": "65247-6117 via Conventional from 65248 -> 65249", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65248, + "TargetID": 65249, + "Directional": true + }] + }, { + "ID": 15224, + "SourceStructureID": 65250, + "TargetStructureID": 6117, + "Label": "65250-6117 via Conventional from 65251 -> 65252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65251, + "TargetID": 65252, + "Directional": true + }] + }, { + "ID": 15225, + "SourceStructureID": 65278, + "TargetStructureID": 593, + "Label": "65278-593 via Conventional from 65279 -> 65280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65279, + "TargetID": 65280, + "Directional": true + }] + }, { + "ID": 15226, + "SourceStructureID": 65287, + "TargetStructureID": 65284, + "Label": "65287-65284 via Conventional from 65288 -> 65286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65288, + "TargetID": 65286, + "Directional": true + }] + }, { + "ID": 15227, + "SourceStructureID": 65297, + "TargetStructureID": 65267, + "Label": "65297-65267 via Conventional from 65298 -> 65296", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65298, + "TargetID": 65296, + "Directional": true + }] + }, { + "ID": 15228, + "SourceStructureID": 65307, + "TargetStructureID": 593, + "Label": "65307-593 via Conventional from 65308 -> 65306", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65308, + "TargetID": 65306, + "Directional": true + }] + }, { + "ID": 15229, + "SourceStructureID": 65309, + "TargetStructureID": 593, + "Label": "65309-593 via Conventional from 65310 -> 65311", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65310, + "TargetID": 65311, + "Directional": true + }] + }, { + "ID": 15230, + "SourceStructureID": 65318, + "TargetStructureID": 593, + "Label": "65318-593 via Conventional from 83562 -> 83560", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83562, + "TargetID": 83560, + "Directional": true + }] + }, { + "ID": 15231, + "SourceStructureID": 65318, + "TargetStructureID": 65307, + "Label": "65318-65307 via Conventional from 65319 -> 65317", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65319, + "TargetID": 65317, + "Directional": true + }] + }, { + "ID": 15232, + "SourceStructureID": 65318, + "TargetStructureID": 66523, + "Label": "65318-66523 via Conventional from 75920 -> 75921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75920, + "TargetID": 75921, + "Directional": true + }] + }, { + "ID": 15233, + "SourceStructureID": 65320, + "TargetStructureID": 593, + "Label": "65320-593 via Conventional from 65321 -> 65322, 65340 -> 62894, 65341 -> 63034, 65342 -> 65343, 65346 -> 65347", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65321, + "TargetID": 65322, + "Directional": true + }, { + "SourceID": 65340, + "TargetID": 62894, + "Directional": true + }, { + "SourceID": 65341, + "TargetID": 63034, + "Directional": true + }, { + "SourceID": 65342, + "TargetID": 65343, + "Directional": true + }, { + "SourceID": 65346, + "TargetID": 65347, + "Directional": true + }] + }, { + "ID": 15234, + "SourceStructureID": 65324, + "TargetStructureID": 65332, + "Label": "65324-65332 via Conventional from 65329 -> 65333", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65329, + "TargetID": 65333, + "Directional": true + }] + }, { + "ID": 15235, + "SourceStructureID": 65324, + "TargetStructureID": 65334, + "Label": "65324-65334 via Conventional from 65336 -> 65335", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65336, + "TargetID": 65335, + "Directional": true + }] + }, { + "ID": 15236, + "SourceStructureID": 65324, + "TargetStructureID": 69162, + "Label": "65324-69162 via Conventional from 69197 -> 69198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69197, + "TargetID": 69198, + "Directional": true + }] + }, { + "ID": 15237, + "SourceStructureID": 65334, + "TargetStructureID": 65338, + "Label": "65334-65338 via Conventional from 65337 -> 65339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65337, + "TargetID": 65339, + "Directional": true + }] + }, { + "ID": 15238, + "SourceStructureID": 65351, + "TargetStructureID": 593, + "Label": "65351-593 via Conventional from 65352 -> 65353", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65352, + "TargetID": 65353, + "Directional": true + }] + }, { + "ID": 15239, + "SourceStructureID": 65351, + "TargetStructureID": 5562, + "Label": "65351-5562 via Conventional from 79033 -> 76373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79033, + "TargetID": 76373, + "Directional": true + }] + }, { + "ID": 15240, + "SourceStructureID": 65351, + "TargetStructureID": 63371, + "Label": "65351-63371 via Conventional from 79010 -> 63389, 79030 -> 63390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79010, + "TargetID": 63389, + "Directional": true + }, { + "SourceID": 79030, + "TargetID": 63390, + "Directional": true + }] + }, { + "ID": 15241, + "SourceStructureID": 65351, + "TargetStructureID": 78947, + "Label": "65351-78947 via Conventional from 78942 -> 78948", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78942, + "TargetID": 78948, + "Directional": true + }] + }, { + "ID": 15242, + "SourceStructureID": 65351, + "TargetStructureID": 79034, + "Label": "65351-79034 via Conventional from 79038 -> 79039", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79038, + "TargetID": 79039, + "Directional": true + }] + }, { + "ID": 15243, + "SourceStructureID": 65351, + "TargetStructureID": 79042, + "Label": "65351-79042 via Conventional from 79041 -> 79043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79041, + "TargetID": 79043, + "Directional": true + }] + }, { + "ID": 15244, + "SourceStructureID": 65355, + "TargetStructureID": 65351, + "Label": "65355-65351 via Conventional from 65356 -> 65354", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65356, + "TargetID": 65354, + "Directional": true + }] + }, { + "ID": 15245, + "SourceStructureID": 65355, + "TargetStructureID": 65358, + "Label": "65355-65358 via Conventional from 65357 -> 65359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65357, + "TargetID": 65359, + "Directional": true + }] + }, { + "ID": 15246, + "SourceStructureID": 65358, + "TargetStructureID": 606, + "Label": "65358-606 via Conventional from 65360 -> 47476", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65360, + "TargetID": 47476, + "Directional": true + }] + }, { + "ID": 15247, + "SourceStructureID": 65358, + "TargetStructureID": 65373, + "Label": "65358-65373 via Conventional from 65372 -> 65374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65372, + "TargetID": 65374, + "Directional": true + }] + }, { + "ID": 15248, + "SourceStructureID": 65363, + "TargetStructureID": 5562, + "Label": "65363-5562 via Conventional from 65365 -> 63759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65365, + "TargetID": 63759, + "Directional": true + }] + }, { + "ID": 15249, + "SourceStructureID": 65363, + "TargetStructureID": 65358, + "Label": "65363-65358 via Conventional from 65364 -> 65362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65364, + "TargetID": 65362, + "Directional": true + }] + }, { + "ID": 15250, + "SourceStructureID": 65363, + "TargetStructureID": 65366, + "Label": "65363-65366 via Conventional from 65368 -> 65367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65368, + "TargetID": 65367, + "Directional": true + }] + }, { + "ID": 15251, + "SourceStructureID": 65375, + "TargetStructureID": 593, + "Label": "65375-593 via Conventional from 65384 -> 65385, 65551 -> 65552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65384, + "TargetID": 65385, + "Directional": true + }, { + "SourceID": 65551, + "TargetID": 65552, + "Directional": true + }] + }, { + "ID": 15252, + "SourceStructureID": 65375, + "TargetStructureID": 5283, + "Label": "65375-5283 via Conventional from 65553 -> 65554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65553, + "TargetID": 65554, + "Directional": true + }] + }, { + "ID": 15253, + "SourceStructureID": 65375, + "TargetStructureID": 65376, + "Label": "65375-65376 via Conventional from 65378 -> 65377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65378, + "TargetID": 65377, + "Directional": true + }] + }, { + "ID": 15254, + "SourceStructureID": 65375, + "TargetStructureID": 65555, + "Label": "65375-65555 via Conventional from 65557 -> 65558", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65557, + "TargetID": 65558, + "Directional": true + }] + }, { + "ID": 15255, + "SourceStructureID": 65375, + "TargetStructureID": 73102, + "Label": "65375-73102 via Conventional from 82399 -> 82400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82399, + "TargetID": 82400, + "Directional": true + }] + }, { + "ID": 15256, + "SourceStructureID": 65376, + "TargetStructureID": 593, + "Label": "65376-593 via Conventional from 65379 -> 65380", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65379, + "TargetID": 65380, + "Directional": true + }] + }, { + "ID": 15257, + "SourceStructureID": 65388, + "TargetStructureID": 57034, + "Label": "65388-57034 via Conventional from 65393 -> 65394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65393, + "TargetID": 65394, + "Directional": true + }] + }, { + "ID": 15258, + "SourceStructureID": 65388, + "TargetStructureID": 65391, + "Label": "65388-65391 via Conventional from 65390 -> 65392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65390, + "TargetID": 65392, + "Directional": true + }] + }, { + "ID": 15259, + "SourceStructureID": 65404, + "TargetStructureID": 593, + "Label": "65404-593 via Conventional from 65605 -> 65606", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65605, + "TargetID": 65606, + "Directional": true + }] + }, { + "ID": 15260, + "SourceStructureID": 65408, + "TargetStructureID": 65612, + "Label": "65408-65612 via Conventional from 65611 -> 65613", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65611, + "TargetID": 65613, + "Directional": true + }] + }, { + "ID": 15261, + "SourceStructureID": 65411, + "TargetStructureID": 593, + "Label": "65411-593 via Conventional from 65412 -> 65410", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65412, + "TargetID": 65410, + "Directional": true + }] + }, { + "ID": 15262, + "SourceStructureID": 65439, + "TargetStructureID": 65438, + "Label": "65439-65438 via Conventional from 65440 -> 65441", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65440, + "TargetID": 65441, + "Directional": true + }] + }, { + "ID": 15263, + "SourceStructureID": 65454, + "TargetStructureID": 593, + "Label": "65454-593 via Conventional from 65459 -> 65460, 65527 -> 65528", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65459, + "TargetID": 65460, + "Directional": true + }, { + "SourceID": 65527, + "TargetID": 65528, + "Directional": true + }] + }, { + "ID": 15264, + "SourceStructureID": 65454, + "TargetStructureID": 65457, + "Label": "65454-65457 via Conventional from 65456 -> 65458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65456, + "TargetID": 65458, + "Directional": true + }] + }, { + "ID": 15265, + "SourceStructureID": 65461, + "TargetStructureID": 593, + "Label": "65461-593 via Conventional from 65462 -> 65463, 69859 -> 65402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65462, + "TargetID": 65463, + "Directional": true + }, { + "SourceID": 69859, + "TargetID": 65402, + "Directional": true + }] + }, { + "ID": 15266, + "SourceStructureID": 65464, + "TargetStructureID": 593, + "Label": "65464-593 via Conventional from 65472 -> 65473, 65565 -> 65566, 65572 -> 65575", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65472, + "TargetID": 65473, + "Directional": true + }, { + "SourceID": 65565, + "TargetID": 65566, + "Directional": true + }, { + "SourceID": 65572, + "TargetID": 65575, + "Directional": true + }] + }, { + "ID": 15267, + "SourceStructureID": 65477, + "TargetStructureID": 65480, + "Label": "65477-65480 via Conventional from 65479 -> 65481", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65479, + "TargetID": 65481, + "Directional": true + }] + }, { + "ID": 15268, + "SourceStructureID": 65480, + "TargetStructureID": 5279, + "Label": "65480-5279 via Conventional from 65482 -> 49253", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65482, + "TargetID": 49253, + "Directional": true + }] + }, { + "ID": 15269, + "SourceStructureID": 65484, + "TargetStructureID": 65477, + "Label": "65484-65477 via Conventional from 65489 -> 65488", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65489, + "TargetID": 65488, + "Directional": true + }] + }, { + "ID": 15270, + "SourceStructureID": 65484, + "TargetStructureID": 65480, + "Label": "65484-65480 via Conventional from 65485 -> 65483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65485, + "TargetID": 65483, + "Directional": true + }] + }, { + "ID": 15271, + "SourceStructureID": 65514, + "TargetStructureID": 5635, + "Label": "65514-5635 via Conventional from 65515 -> 55964", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65515, + "TargetID": 55964, + "Directional": true + }] + }, { + "ID": 15272, + "SourceStructureID": 65519, + "TargetStructureID": 8575, + "Label": "65519-8575 via Ribbon Synapse from 65520 -> 65518", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65520, + "TargetID": 65518, + "Directional": true + }] + }, { + "ID": 15273, + "SourceStructureID": 65522, + "TargetStructureID": 8575, + "Label": "65522-8575 via Conventional from 65523 -> 65521", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65523, + "TargetID": 65521, + "Directional": true + }] + }, { + "ID": 15274, + "SourceStructureID": 65524, + "TargetStructureID": 8575, + "Label": "65524-8575 via Conventional from 65525 -> 61538", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65525, + "TargetID": 61538, + "Directional": true + }] + }, { + "ID": 15275, + "SourceStructureID": 65532, + "TargetStructureID": 16026, + "Label": "65532-16026 via Conventional from 65534 -> 25725", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65534, + "TargetID": 25725, + "Directional": true + }] + }, { + "ID": 15276, + "SourceStructureID": 65532, + "TargetStructureID": 65536, + "Label": "65532-65536 via Conventional from 65535 -> 65537", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65535, + "TargetID": 65537, + "Directional": true + }] + }, { + "ID": 15277, + "SourceStructureID": 65536, + "TargetStructureID": 65538, + "Label": "65536-65538 via Conventional from 65539 -> 65540", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65539, + "TargetID": 65540, + "Directional": true + }] + }, { + "ID": 15278, + "SourceStructureID": 65536, + "TargetStructureID": 67072, + "Label": "65536-67072 via Conventional from 67071 -> 67073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67071, + "TargetID": 67073, + "Directional": true + }] + }, { + "ID": 15279, + "SourceStructureID": 65559, + "TargetStructureID": 593, + "Label": "65559-593 via Conventional from 66060 -> 66061", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66060, + "TargetID": 66061, + "Directional": true + }] + }, { + "ID": 15280, + "SourceStructureID": 65559, + "TargetStructureID": 29277, + "Label": "65559-29277 via Conventional from 84442 -> 123163", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84442, + "TargetID": 123163, + "Directional": true + }] + }, { + "ID": 15281, + "SourceStructureID": 65559, + "TargetStructureID": 65375, + "Label": "65559-65375 via Conventional from 66060 -> 66063", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66060, + "TargetID": 66063, + "Directional": true + }] + }, { + "ID": 15282, + "SourceStructureID": 65559, + "TargetStructureID": 65376, + "Label": "65559-65376 via Conventional from 84439 -> 65381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84439, + "TargetID": 65381, + "Directional": true + }] + }, { + "ID": 15283, + "SourceStructureID": 65559, + "TargetStructureID": 65454, + "Label": "65559-65454 via Conventional from 66060 -> 66062", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66060, + "TargetID": 66062, + "Directional": true + }] + }, { + "ID": 15284, + "SourceStructureID": 65559, + "TargetStructureID": 65477, + "Label": "65559-65477 via Conventional from 66070 -> 66069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66070, + "TargetID": 66069, + "Directional": true + }] + }, { + "ID": 15285, + "SourceStructureID": 65559, + "TargetStructureID": 65532, + "Label": "65559-65532 via Conventional from 66065 -> 66064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66065, + "TargetID": 66064, + "Directional": true + }] + }, { + "ID": 15286, + "SourceStructureID": 65559, + "TargetStructureID": 66031, + "Label": "65559-66031 via Conventional from 66035 -> 66034, 66059 -> 66055", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66035, + "TargetID": 66034, + "Directional": true + }, { + "SourceID": 66059, + "TargetID": 66055, + "Directional": true + }] + }, { + "ID": 15287, + "SourceStructureID": 65559, + "TargetStructureID": 66053, + "Label": "65559-66053 via Conventional from 66059 -> 66058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66059, + "TargetID": 66058, + "Directional": true + }] + }, { + "ID": 15288, + "SourceStructureID": 65569, + "TargetStructureID": 180, + "Label": "65569-180 via Conventional from 84485 -> 84486", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84485, + "TargetID": 84486, + "Directional": true + }] + }, { + "ID": 15289, + "SourceStructureID": 65569, + "TargetStructureID": 593, + "Label": "65569-593 via Conventional from 65570 -> 65571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65570, + "TargetID": 65571, + "Directional": true + }] + }, { + "ID": 15290, + "SourceStructureID": 65569, + "TargetStructureID": 65623, + "Label": "65569-65623 via Conventional from 70825 -> 70826", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70825, + "TargetID": 70826, + "Directional": true + }] + }, { + "ID": 15291, + "SourceStructureID": 65576, + "TargetStructureID": 180, + "Label": "65576-180 via Conventional from 65584 -> 65585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65584, + "TargetID": 65585, + "Directional": true + }] + }, { + "ID": 15292, + "SourceStructureID": 65576, + "TargetStructureID": 593, + "Label": "65576-593 via Conventional from 65577 -> 65578", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65577, + "TargetID": 65578, + "Directional": true + }] + }, { + "ID": 15293, + "SourceStructureID": 65576, + "TargetStructureID": 5649, + "Label": "65576-5649 via Conventional from 84495 -> 82338, 84505 -> 84506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84495, + "TargetID": 82338, + "Directional": true + }, { + "SourceID": 84505, + "TargetID": 84506, + "Directional": true + }] + }, { + "ID": 15294, + "SourceStructureID": 65576, + "TargetStructureID": 6115, + "Label": "65576-6115 via Conventional from 84496 -> 55885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84496, + "TargetID": 55885, + "Directional": true + }] + }, { + "ID": 15295, + "SourceStructureID": 65579, + "TargetStructureID": 593, + "Label": "65579-593 via Conventional from 65580 -> 65581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65580, + "TargetID": 65581, + "Directional": true + }] + }, { + "ID": 15296, + "SourceStructureID": 65596, + "TargetStructureID": 180, + "Label": "65596-180 via Conventional from 65598 -> 65599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65598, + "TargetID": 65599, + "Directional": true + }] + }, { + "ID": 15297, + "SourceStructureID": 65612, + "TargetStructureID": 6117, + "Label": "65612-6117 via Conventional from 65614 -> 65615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65614, + "TargetID": 65615, + "Directional": true + }] + }, { + "ID": 15298, + "SourceStructureID": 65616, + "TargetStructureID": 606, + "Label": "65616-606 via Conventional from 65621 -> 10707", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65621, + "TargetID": 10707, + "Directional": true + }] + }, { + "ID": 15299, + "SourceStructureID": 65616, + "TargetStructureID": 6117, + "Label": "65616-6117 via Conventional from 65617 -> 65618", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65617, + "TargetID": 65618, + "Directional": true + }] + }, { + "ID": 15300, + "SourceStructureID": 65616, + "TargetStructureID": 65612, + "Label": "65616-65612 via Conventional from 65619 -> 65620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65619, + "TargetID": 65620, + "Directional": true + }] + }, { + "ID": 15301, + "SourceStructureID": 65623, + "TargetStructureID": 593, + "Label": "65623-593 via Conventional from 65624 -> 65622, 66419 -> 28433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65624, + "TargetID": 65622, + "Directional": true + }, { + "SourceID": 66419, + "TargetID": 28433, + "Directional": true + }] + }, { + "ID": 15302, + "SourceStructureID": 65648, + "TargetStructureID": 6118, + "Label": "65648-6118 via Conventional from 65650 -> 65649", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65650, + "TargetID": 65649, + "Directional": true + }] + }, { + "ID": 15303, + "SourceStructureID": 65652, + "TargetStructureID": 6118, + "Label": "65652-6118 via Conventional from 65655 -> 65654", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65655, + "TargetID": 65654, + "Directional": true + }] + }, { + "ID": 15304, + "SourceStructureID": 65680, + "TargetStructureID": 6118, + "Label": "65680-6118 via Conventional from 65681 -> 65679", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65681, + "TargetID": 65679, + "Directional": true + }] + }, { + "ID": 15305, + "SourceStructureID": 65683, + "TargetStructureID": 419, + "Label": "65683-419 via Conventional from 65689 -> 65690", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65689, + "TargetID": 65690, + "Directional": true + }] + }, { + "ID": 15306, + "SourceStructureID": 65683, + "TargetStructureID": 8575, + "Label": "65683-8575 via Conventional from 65684 -> 65682", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65684, + "TargetID": 65682, + "Directional": true + }] + }, { + "ID": 15307, + "SourceStructureID": 65691, + "TargetStructureID": 419, + "Label": "65691-419 via Conventional from 65692 -> 132356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65692, + "TargetID": 132356, + "Directional": true + }] + }, { + "ID": 15308, + "SourceStructureID": 65742, + "TargetStructureID": 61709, + "Label": "65742-61709 via Ribbon Synapse from 65743 -> 65741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65743, + "TargetID": 65741, + "Directional": true + }] + }, { + "ID": 15309, + "SourceStructureID": 65751, + "TargetStructureID": 437, + "Label": "65751-437 via Conventional from 65753 -> 65708, 65755 -> 17586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65753, + "TargetID": 65708, + "Directional": true + }, { + "SourceID": 65755, + "TargetID": 17586, + "Directional": true + }] + }, { + "ID": 15310, + "SourceStructureID": 65751, + "TargetStructureID": 65751, + "Label": "65751-65751 via Conventional from 65758 -> 65760", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65758, + "TargetID": 65760, + "Directional": true + }] + }, { + "ID": 15311, + "SourceStructureID": 65791, + "TargetStructureID": 5609, + "Label": "65791-5609 via Conventional from 65792 -> 20636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65792, + "TargetID": 20636, + "Directional": true + }] + }, { + "ID": 15312, + "SourceStructureID": 65791, + "TargetStructureID": 20681, + "Label": "65791-20681 via Conventional from 65793 -> 65790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65793, + "TargetID": 65790, + "Directional": true + }] + }, { + "ID": 15313, + "SourceStructureID": 65816, + "TargetStructureID": 8575, + "Label": "65816-8575 via BC Conventional Synapse from 65817 -> 21643", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 65817, + "TargetID": 21643, + "Directional": true + }] + }, { + "ID": 15314, + "SourceStructureID": 65819, + "TargetStructureID": 410, + "Label": "65819-410 via Conventional from 65820 -> 65818", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65820, + "TargetID": 65818, + "Directional": true + }] + }, { + "ID": 15315, + "SourceStructureID": 65823, + "TargetStructureID": 410, + "Label": "65823-410 via Conventional from 65824 -> 8349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65824, + "TargetID": 8349, + "Directional": true + }] + }, { + "ID": 15316, + "SourceStructureID": 65826, + "TargetStructureID": 410, + "Label": "65826-410 via Conventional from 65827 -> 8359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65827, + "TargetID": 8359, + "Directional": true + }] + }, { + "ID": 15317, + "SourceStructureID": 65849, + "TargetStructureID": 6118, + "Label": "65849-6118 via Conventional from 65851 -> 65850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65851, + "TargetID": 65850, + "Directional": true + }] + }, { + "ID": 15318, + "SourceStructureID": 65866, + "TargetStructureID": 65864, + "Label": "65866-65864 via Conventional from 65867 -> 65869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65867, + "TargetID": 65869, + "Directional": true + }] + }, { + "ID": 15319, + "SourceStructureID": 65883, + "TargetStructureID": 65864, + "Label": "65883-65864 via Conventional from 65886 -> 65887", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65886, + "TargetID": 65887, + "Directional": true + }] + }, { + "ID": 15320, + "SourceStructureID": 65890, + "TargetStructureID": 593, + "Label": "65890-593 via Conventional from 65891 -> 65892", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65891, + "TargetID": 65892, + "Directional": true + }] + }, { + "ID": 15321, + "SourceStructureID": 65893, + "TargetStructureID": 593, + "Label": "65893-593 via Conventional from 65894 -> 65895", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65894, + "TargetID": 65895, + "Directional": true + }] + }, { + "ID": 15322, + "SourceStructureID": 65898, + "TargetStructureID": 65899, + "Label": "65898-65899 via Conventional from 65900 -> 65901", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65900, + "TargetID": 65901, + "Directional": true + }] + }, { + "ID": 15323, + "SourceStructureID": 65910, + "TargetStructureID": 6118, + "Label": "65910-6118 via Conventional from 65912 -> 65913", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65912, + "TargetID": 65913, + "Directional": true + }] + }, { + "ID": 15324, + "SourceStructureID": 65916, + "TargetStructureID": 6118, + "Label": "65916-6118 via Conventional from 65917 -> 65918", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65917, + "TargetID": 65918, + "Directional": true + }] + }, { + "ID": 15325, + "SourceStructureID": 65920, + "TargetStructureID": 5650, + "Label": "65920-5650 via Conventional from 102961 -> 102962", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102961, + "TargetID": 102962, + "Directional": true + }] + }, { + "ID": 15326, + "SourceStructureID": 65920, + "TargetStructureID": 6118, + "Label": "65920-6118 via Conventional from 65921 -> 65922", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65921, + "TargetID": 65922, + "Directional": true + }] + }, { + "ID": 15327, + "SourceStructureID": 65963, + "TargetStructureID": 180, + "Label": "65963-180 via Conventional from 65965 -> 65966, 65969 -> 65970", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65965, + "TargetID": 65966, + "Directional": true + }, { + "SourceID": 65969, + "TargetID": 65970, + "Directional": true + }] + }, { + "ID": 15328, + "SourceStructureID": 65963, + "TargetStructureID": 5618, + "Label": "65963-5618 via Conventional from 65964 -> 65962", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65964, + "TargetID": 65962, + "Directional": true + }] + }, { + "ID": 15329, + "SourceStructureID": 65963, + "TargetStructureID": 64492, + "Label": "65963-64492 via Conventional from 65973 -> 65974", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 65973, + "TargetID": 65974, + "Directional": true + }] + }, { + "ID": 15330, + "SourceStructureID": 65963, + "TargetStructureID": 66299, + "Label": "65963-66299 via Conventional from 66301 -> 66302", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66301, + "TargetID": 66302, + "Directional": true + }] + }, { + "ID": 15331, + "SourceStructureID": 66015, + "TargetStructureID": 7111, + "Label": "66015-7111 via Conventional from 66016 -> 66014", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66016, + "TargetID": 66014, + "Directional": true + }] + }, { + "ID": 15332, + "SourceStructureID": 66018, + "TargetStructureID": 7111, + "Label": "66018-7111 via Conventional from 66019 -> 66017", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66019, + "TargetID": 66017, + "Directional": true + }] + }, { + "ID": 15333, + "SourceStructureID": 66020, + "TargetStructureID": 7111, + "Label": "66020-7111 via Conventional from 66021 -> 66017", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66021, + "TargetID": 66017, + "Directional": true + }] + }, { + "ID": 15334, + "SourceStructureID": 66024, + "TargetStructureID": 593, + "Label": "66024-593 via Conventional from 66025 -> 66026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66025, + "TargetID": 66026, + "Directional": true + }] + }, { + "ID": 15335, + "SourceStructureID": 66031, + "TargetStructureID": 593, + "Label": "66031-593 via Conventional from 66071 -> 66072", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66071, + "TargetID": 66072, + "Directional": true + }] + }, { + "ID": 15336, + "SourceStructureID": 66031, + "TargetStructureID": 66028, + "Label": "66031-66028 via Conventional from 66032 -> 66030", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66032, + "TargetID": 66030, + "Directional": true + }] + }, { + "ID": 15337, + "SourceStructureID": 66031, + "TargetStructureID": 66037, + "Label": "66031-66037 via Conventional from 66036 -> 66038", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66036, + "TargetID": 66038, + "Directional": true + }] + }, { + "ID": 15338, + "SourceStructureID": 66031, + "TargetStructureID": 84457, + "Label": "66031-84457 via Conventional from 84456 -> 84459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84456, + "TargetID": 84459, + "Directional": true + }] + }, { + "ID": 15339, + "SourceStructureID": 66037, + "TargetStructureID": 66031, + "Label": "66037-66031 via Conventional from 66039 -> 66040", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66039, + "TargetID": 66040, + "Directional": true + }] + }, { + "ID": 15340, + "SourceStructureID": 66037, + "TargetStructureID": 66809, + "Label": "66037-66809 via Conventional from 66039 -> 82439", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66039, + "TargetID": 82439, + "Directional": true + }] + }, { + "ID": 15341, + "SourceStructureID": 66044, + "TargetStructureID": 66031, + "Label": "66044-66031 via Conventional from 66046 -> 66045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66046, + "TargetID": 66045, + "Directional": true + }] + }, { + "ID": 15342, + "SourceStructureID": 66053, + "TargetStructureID": 593, + "Label": "66053-593 via Conventional from 66056 -> 66057", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66056, + "TargetID": 66057, + "Directional": true + }] + }, { + "ID": 15343, + "SourceStructureID": 66073, + "TargetStructureID": 66075, + "Label": "66073-66075 via Conventional from 66076 -> 66077", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66076, + "TargetID": 66077, + "Directional": true + }] + }, { + "ID": 15344, + "SourceStructureID": 66073, + "TargetStructureID": 66085, + "Label": "66073-66085 via Conventional from 66084 -> 66086", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66084, + "TargetID": 66086, + "Directional": true + }] + }, { + "ID": 15345, + "SourceStructureID": 66079, + "TargetStructureID": 66075, + "Label": "66079-66075 via Conventional from 66080 -> 66078", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66080, + "TargetID": 66078, + "Directional": true + }] + }, { + "ID": 15346, + "SourceStructureID": 66085, + "TargetStructureID": 66946, + "Label": "66085-66946 via Conventional from 82750 -> 82751", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82750, + "TargetID": 82751, + "Directional": true + }] + }, { + "ID": 15347, + "SourceStructureID": 66089, + "TargetStructureID": 593, + "Label": "66089-593 via Conventional from 66090 -> 28441, 66094 -> 66095", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66090, + "TargetID": 28441, + "Directional": true + }, { + "SourceID": 66094, + "TargetID": 66095, + "Directional": true + }] + }, { + "ID": 15348, + "SourceStructureID": 66096, + "TargetStructureID": 593, + "Label": "66096-593 via Conventional from 66097 -> 52744, 66098 -> 66099, 66885 -> 7753, 67025 -> 7828, 67032 -> 7812", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66097, + "TargetID": 52744, + "Directional": true + }, { + "SourceID": 66098, + "TargetID": 66099, + "Directional": true + }, { + "SourceID": 66885, + "TargetID": 7753, + "Directional": true + }, { + "SourceID": 67025, + "TargetID": 7828, + "Directional": true + }, { + "SourceID": 67032, + "TargetID": 7812, + "Directional": true + }] + }, { + "ID": 15349, + "SourceStructureID": 66100, + "TargetStructureID": 593, + "Label": "66100-593 via Conventional from 66101 -> 28437", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66101, + "TargetID": 28437, + "Directional": true + }] + }, { + "ID": 15350, + "SourceStructureID": 66102, + "TargetStructureID": 593, + "Label": "66102-593 via Conventional from 66103 -> 28442", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66103, + "TargetID": 28442, + "Directional": true + }] + }, { + "ID": 15351, + "SourceStructureID": 66102, + "TargetStructureID": 66096, + "Label": "66102-66096 via Conventional from 66109 -> 66110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66109, + "TargetID": 66110, + "Directional": true + }] + }, { + "ID": 15352, + "SourceStructureID": 66104, + "TargetStructureID": 66102, + "Label": "66104-66102 via Conventional from 66105 -> 66106", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66105, + "TargetID": 66106, + "Directional": true + }] + }, { + "ID": 15353, + "SourceStructureID": 66111, + "TargetStructureID": 16026, + "Label": "66111-16026 via Conventional from 134753 -> 134752", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134753, + "TargetID": 134752, + "Directional": true + }] + }, { + "ID": 15354, + "SourceStructureID": 66114, + "TargetStructureID": 66114, + "Label": "66114-66114 via Conventional from 66119 -> 66120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66119, + "TargetID": 66120, + "Directional": true + }] + }, { + "ID": 15355, + "SourceStructureID": 66114, + "TargetStructureID": 66768, + "Label": "66114-66768 via Conventional from 66117 -> 67565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66117, + "TargetID": 67565, + "Directional": true + }] + }, { + "ID": 15356, + "SourceStructureID": 66165, + "TargetStructureID": 5284, + "Label": "66165-5284 via Conventional from 113269 -> 113270", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113269, + "TargetID": 113270, + "Directional": true + }] + }, { + "ID": 15357, + "SourceStructureID": 66165, + "TargetStructureID": 6050, + "Label": "66165-6050 via Conventional from 66175 -> 66174", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66175, + "TargetID": 66174, + "Directional": true + }] + }, { + "ID": 15358, + "SourceStructureID": 66184, + "TargetStructureID": 11401, + "Label": "66184-11401 via Conventional from 66185 -> 66186, 92038 -> 92039", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66185, + "TargetID": 66186, + "Directional": true + }, { + "SourceID": 92038, + "TargetID": 92039, + "Directional": true + }] + }, { + "ID": 15359, + "SourceStructureID": 66193, + "TargetStructureID": 428, + "Label": "66193-428 via Conventional from 66194 -> 66195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66194, + "TargetID": 66195, + "Directional": true + }] + }, { + "ID": 15360, + "SourceStructureID": 66199, + "TargetStructureID": 514, + "Label": "66199-514 via Ribbon Synapse from 66200 -> 1173", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 66200, + "TargetID": 1173, + "Directional": true + }] + }, { + "ID": 15361, + "SourceStructureID": 66278, + "TargetStructureID": 166, + "Label": "66278-166 via Conventional from 66292 -> 60025, 81905 -> 81906", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66292, + "TargetID": 60025, + "Directional": true + }, { + "SourceID": 81905, + "TargetID": 81906, + "Directional": true + }] + }, { + "ID": 15362, + "SourceStructureID": 66278, + "TargetStructureID": 593, + "Label": "66278-593 via Conventional from 66279 -> 66280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66279, + "TargetID": 66280, + "Directional": true + }] + }, { + "ID": 15363, + "SourceStructureID": 66295, + "TargetStructureID": 166, + "Label": "66295-166 via Conventional from 66297 -> 60022", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66297, + "TargetID": 60022, + "Directional": true + }] + }, { + "ID": 15364, + "SourceStructureID": 66303, + "TargetStructureID": 180, + "Label": "66303-180 via Conventional from 66307 -> 6057", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66307, + "TargetID": 6057, + "Directional": true + }] + }, { + "ID": 15365, + "SourceStructureID": 66303, + "TargetStructureID": 593, + "Label": "66303-593 via Conventional from 66304 -> 66305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66304, + "TargetID": 66305, + "Directional": true + }] + }, { + "ID": 15366, + "SourceStructureID": 66323, + "TargetStructureID": 593, + "Label": "66323-593 via Conventional from 66324 -> 66322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66324, + "TargetID": 66322, + "Directional": true + }] + }, { + "ID": 15367, + "SourceStructureID": 66323, + "TargetStructureID": 6115, + "Label": "66323-6115 via Conventional from 84323 -> 73123", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84323, + "TargetID": 73123, + "Directional": true + }] + }, { + "ID": 15368, + "SourceStructureID": 66323, + "TargetStructureID": 84342, + "Label": "66323-84342 via Conventional from 84341 -> 84343", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84341, + "TargetID": 84343, + "Directional": true + }] + }, { + "ID": 15369, + "SourceStructureID": 66323, + "TargetStructureID": 84391, + "Label": "66323-84391 via Conventional from 84390 -> 84392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84390, + "TargetID": 84392, + "Directional": true + }] + }, { + "ID": 15370, + "SourceStructureID": 66323, + "TargetStructureID": 84394, + "Label": "66323-84394 via Conventional from 84393 -> 84395", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84393, + "TargetID": 84395, + "Directional": true + }] + }, { + "ID": 15371, + "SourceStructureID": 66323, + "TargetStructureID": 84398, + "Label": "66323-84398 via Conventional from 84397 -> 84399", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84397, + "TargetID": 84399, + "Directional": true + }] + }, { + "ID": 15372, + "SourceStructureID": 66323, + "TargetStructureID": 84407, + "Label": "66323-84407 via Conventional from 84405 -> 84408, 84412 -> 84413", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84405, + "TargetID": 84408, + "Directional": true + }, { + "SourceID": 84412, + "TargetID": 84413, + "Directional": true + }] + }, { + "ID": 15373, + "SourceStructureID": 66323, + "TargetStructureID": 84418, + "Label": "66323-84418 via Conventional from 84417 -> 84419", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84417, + "TargetID": 84419, + "Directional": true + }] + }, { + "ID": 15374, + "SourceStructureID": 66323, + "TargetStructureID": 84424, + "Label": "66323-84424 via Conventional from 84423 -> 84425", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84423, + "TargetID": 84425, + "Directional": true + }] + }, { + "ID": 15375, + "SourceStructureID": 66329, + "TargetStructureID": 593, + "Label": "66329-593 via Conventional from 66330 -> 66328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66330, + "TargetID": 66328, + "Directional": true + }] + }, { + "ID": 15376, + "SourceStructureID": 66339, + "TargetStructureID": 593, + "Label": "66339-593 via Conventional from 66340 -> 66341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66340, + "TargetID": 66341, + "Directional": true + }] + }, { + "ID": 15377, + "SourceStructureID": 66339, + "TargetStructureID": 6115, + "Label": "66339-6115 via Conventional from 84273 -> 73083", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84273, + "TargetID": 73083, + "Directional": true + }] + }, { + "ID": 15378, + "SourceStructureID": 66355, + "TargetStructureID": 5117, + "Label": "66355-5117 via Conventional from 66356 -> 66354", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66356, + "TargetID": 66354, + "Directional": true + }] + }, { + "ID": 15379, + "SourceStructureID": 66374, + "TargetStructureID": 5279, + "Label": "66374-5279 via Conventional from 66379 -> 49251, 66389 -> 6347, 66394 -> 97580", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66379, + "TargetID": 49251, + "Directional": true + }, { + "SourceID": 66389, + "TargetID": 6347, + "Directional": true + }, { + "SourceID": 66394, + "TargetID": 97580, + "Directional": true + }] + }, { + "ID": 15380, + "SourceStructureID": 66381, + "TargetStructureID": 909, + "Label": "66381-909 via Conventional from 66383 -> 36060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66383, + "TargetID": 36060, + "Directional": true + }] + }, { + "ID": 15381, + "SourceStructureID": 66381, + "TargetStructureID": 5279, + "Label": "66381-5279 via Conventional from 66386 -> 49250", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66386, + "TargetID": 49250, + "Directional": true + }] + }, { + "ID": 15382, + "SourceStructureID": 66381, + "TargetStructureID": 66374, + "Label": "66381-66374 via Conventional from 66382 -> 66380", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66382, + "TargetID": 66380, + "Directional": true + }] + }, { + "ID": 15383, + "SourceStructureID": 66395, + "TargetStructureID": 5279, + "Label": "66395-5279 via Conventional from 66396 -> 97585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66396, + "TargetID": 97585, + "Directional": true + }] + }, { + "ID": 15384, + "SourceStructureID": 66395, + "TargetStructureID": 15796, + "Label": "66395-15796 via Conventional from 66397 -> 66398", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66397, + "TargetID": 66398, + "Directional": true + }] + }, { + "ID": 15385, + "SourceStructureID": 66401, + "TargetStructureID": 593, + "Label": "66401-593 via Conventional from 66403 -> 66404, 66417 -> 66418, 66422 -> 66423", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66403, + "TargetID": 66404, + "Directional": true + }, { + "SourceID": 66417, + "TargetID": 66418, + "Directional": true + }, { + "SourceID": 66422, + "TargetID": 66423, + "Directional": true + }] + }, { + "ID": 15386, + "SourceStructureID": 66401, + "TargetStructureID": 65623, + "Label": "66401-65623 via Conventional from 66414 -> 66416", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66414, + "TargetID": 66416, + "Directional": true + }] + }, { + "ID": 15387, + "SourceStructureID": 66407, + "TargetStructureID": 593, + "Label": "66407-593 via Conventional from 66462 -> 66463, 67448 -> 67449", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66462, + "TargetID": 66463, + "Directional": true + }, { + "SourceID": 67448, + "TargetID": 67449, + "Directional": true + }] + }, { + "ID": 15388, + "SourceStructureID": 66407, + "TargetStructureID": 5599, + "Label": "66407-5599 via Conventional from 69410 -> 135181", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69410, + "TargetID": 135181, + "Directional": true + }] + }, { + "ID": 15389, + "SourceStructureID": 66407, + "TargetStructureID": 6115, + "Label": "66407-6115 via Conventional from 72803 -> 72804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72803, + "TargetID": 72804, + "Directional": true + }] + }, { + "ID": 15390, + "SourceStructureID": 66407, + "TargetStructureID": 6997, + "Label": "66407-6997 via Conventional from 69391 -> 28740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69391, + "TargetID": 28740, + "Directional": true + }] + }, { + "ID": 15391, + "SourceStructureID": 66407, + "TargetStructureID": 16087, + "Label": "66407-16087 via Conventional from 69398 -> 16092", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69398, + "TargetID": 16092, + "Directional": true + }] + }, { + "ID": 15392, + "SourceStructureID": 66407, + "TargetStructureID": 39319, + "Label": "66407-39319 via Conventional from 69408 -> 69409", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69408, + "TargetID": 69409, + "Directional": true + }] + }, { + "ID": 15393, + "SourceStructureID": 66407, + "TargetStructureID": 41608, + "Label": "66407-41608 via Conventional from 69399 -> 69400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69399, + "TargetID": 69400, + "Directional": true + }] + }, { + "ID": 15394, + "SourceStructureID": 66407, + "TargetStructureID": 66469, + "Label": "66407-66469 via Conventional from 66471 -> 66470", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66471, + "TargetID": 66470, + "Directional": true + }] + }, { + "ID": 15395, + "SourceStructureID": 66407, + "TargetStructureID": 66473, + "Label": "66407-66473 via Conventional from 66472 -> 66474", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66472, + "TargetID": 66474, + "Directional": true + }] + }, { + "ID": 15396, + "SourceStructureID": 66407, + "TargetStructureID": 66937, + "Label": "66407-66937 via Conventional from 66941 -> 66939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66941, + "TargetID": 66939, + "Directional": true + }] + }, { + "ID": 15397, + "SourceStructureID": 66407, + "TargetStructureID": 67254, + "Label": "66407-67254 via Conventional from 67245 -> 79579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67245, + "TargetID": 79579, + "Directional": true + }] + }, { + "ID": 15398, + "SourceStructureID": 66407, + "TargetStructureID": 69347, + "Label": "66407-69347 via Conventional from 69346 -> 69348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69346, + "TargetID": 69348, + "Directional": true + }] + }, { + "ID": 15399, + "SourceStructureID": 66407, + "TargetStructureID": 69350, + "Label": "66407-69350 via Conventional from 69349 -> 69351", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69349, + "TargetID": 69351, + "Directional": true + }] + }, { + "ID": 15400, + "SourceStructureID": 66407, + "TargetStructureID": 69396, + "Label": "66407-69396 via Conventional from 69395 -> 69397", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69395, + "TargetID": 69397, + "Directional": true + }] + }, { + "ID": 15401, + "SourceStructureID": 66407, + "TargetStructureID": 69414, + "Label": "66407-69414 via Conventional from 69413 -> 69415", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69413, + "TargetID": 69415, + "Directional": true + }] + }, { + "ID": 15402, + "SourceStructureID": 66407, + "TargetStructureID": 69461, + "Label": "66407-69461 via Conventional from 69462 -> 69463", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69462, + "TargetID": 69463, + "Directional": true + }] + }, { + "ID": 15403, + "SourceStructureID": 66407, + "TargetStructureID": 69483, + "Label": "66407-69483 via Conventional from 69486 -> 69488", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69486, + "TargetID": 69488, + "Directional": true + }] + }, { + "ID": 15404, + "SourceStructureID": 66407, + "TargetStructureID": 69484, + "Label": "66407-69484 via Conventional from 69485 -> 69487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69485, + "TargetID": 69487, + "Directional": true + }] + }, { + "ID": 15405, + "SourceStructureID": 66407, + "TargetStructureID": 69505, + "Label": "66407-69505 via Conventional from 69506 -> 69507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69506, + "TargetID": 69507, + "Directional": true + }] + }, { + "ID": 15406, + "SourceStructureID": 66425, + "TargetStructureID": 593, + "Label": "66425-593 via Conventional from 66426 -> 7766, 66427 -> 66428", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66426, + "TargetID": 7766, + "Directional": true + }, { + "SourceID": 66427, + "TargetID": 66428, + "Directional": true + }] + }, { + "ID": 15407, + "SourceStructureID": 66425, + "TargetStructureID": 5283, + "Label": "66425-5283 via Conventional from 131668 -> 131669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131668, + "TargetID": 131669, + "Directional": true + }] + }, { + "ID": 15408, + "SourceStructureID": 66425, + "TargetStructureID": 70750, + "Label": "66425-70750 via Conventional from 70749 -> 70751", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70749, + "TargetID": 70751, + "Directional": true + }] + }, { + "ID": 15409, + "SourceStructureID": 66447, + "TargetStructureID": 39590, + "Label": "66447-39590 via Conventional from 66454 -> 66456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66454, + "TargetID": 66456, + "Directional": true + }] + }, { + "ID": 15410, + "SourceStructureID": 66452, + "TargetStructureID": 66447, + "Label": "66452-66447 via Conventional from 66453 -> 66451", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66453, + "TargetID": 66451, + "Directional": true + }] + }, { + "ID": 15411, + "SourceStructureID": 66459, + "TargetStructureID": 66447, + "Label": "66459-66447 via Conventional from 66460 -> 66461", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66460, + "TargetID": 66461, + "Directional": true + }] + }, { + "ID": 15412, + "SourceStructureID": 66464, + "TargetStructureID": 66407, + "Label": "66464-66407 via Conventional from 66465 -> 66466", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66465, + "TargetID": 66466, + "Directional": true + }] + }, { + "ID": 15413, + "SourceStructureID": 66473, + "TargetStructureID": 6115, + "Label": "66473-6115 via Conventional from 66475 -> 66476", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66475, + "TargetID": 66476, + "Directional": true + }] + }, { + "ID": 15414, + "SourceStructureID": 66477, + "TargetStructureID": 593, + "Label": "66477-593 via Conventional from 66478 -> 66479", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66478, + "TargetID": 66479, + "Directional": true + }] + }, { + "ID": 15415, + "SourceStructureID": 66487, + "TargetStructureID": 593, + "Label": "66487-593 via Conventional from 66488 -> 66489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66488, + "TargetID": 66489, + "Directional": true + }] + }, { + "ID": 15416, + "SourceStructureID": 66493, + "TargetStructureID": 39615, + "Label": "66493-39615 via Conventional from 66495 -> 39641", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66495, + "TargetID": 39641, + "Directional": true + }] + }, { + "ID": 15417, + "SourceStructureID": 66503, + "TargetStructureID": 593, + "Label": "66503-593 via Conventional from 66504 -> 66505", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66504, + "TargetID": 66505, + "Directional": true + }] + }, { + "ID": 15418, + "SourceStructureID": 66503, + "TargetStructureID": 66510, + "Label": "66503-66510 via Conventional from 66509 -> 66511", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66509, + "TargetID": 66511, + "Directional": true + }] + }, { + "ID": 15419, + "SourceStructureID": 66503, + "TargetStructureID": 66516, + "Label": "66503-66516 via Conventional from 66515 -> 66518", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66515, + "TargetID": 66518, + "Directional": true + }] + }, { + "ID": 15420, + "SourceStructureID": 66510, + "TargetStructureID": 66513, + "Label": "66510-66513 via Conventional from 66512 -> 66514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66512, + "TargetID": 66514, + "Directional": true + }] + }, { + "ID": 15421, + "SourceStructureID": 66516, + "TargetStructureID": 593, + "Label": "66516-593 via Conventional from 66517 -> 59623", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66517, + "TargetID": 59623, + "Directional": true + }] + }, { + "ID": 15422, + "SourceStructureID": 66520, + "TargetStructureID": 66523, + "Label": "66520-66523 via Conventional from 66526 -> 66527", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66526, + "TargetID": 66527, + "Directional": true + }] + }, { + "ID": 15423, + "SourceStructureID": 66523, + "TargetStructureID": 16087, + "Label": "66523-16087 via Conventional from 75309 -> 75310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75309, + "TargetID": 75310, + "Directional": true + }] + }, { + "ID": 15424, + "SourceStructureID": 66523, + "TargetStructureID": 22974, + "Label": "66523-22974 via Conventional from 75924 -> 75923", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75924, + "TargetID": 75923, + "Directional": true + }] + }, { + "ID": 15425, + "SourceStructureID": 66523, + "TargetStructureID": 31256, + "Label": "66523-31256 via Conventional from 75349 -> 31257", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75349, + "TargetID": 31257, + "Directional": true + }] + }, { + "ID": 15426, + "SourceStructureID": 66523, + "TargetStructureID": 39615, + "Label": "66523-39615 via Conventional from 66530 -> 39636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66530, + "TargetID": 39636, + "Directional": true + }] + }, { + "ID": 15427, + "SourceStructureID": 66523, + "TargetStructureID": 41608, + "Label": "66523-41608 via Conventional from 74913 -> 41688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74913, + "TargetID": 41688, + "Directional": true + }] + }, { + "ID": 15428, + "SourceStructureID": 66523, + "TargetStructureID": 66647, + "Label": "66523-66647 via Conventional from 75342 -> 66648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75342, + "TargetID": 66648, + "Directional": true + }] + }, { + "ID": 15429, + "SourceStructureID": 66523, + "TargetStructureID": 75130, + "Label": "66523-75130 via Conventional from 75315 -> 75316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75315, + "TargetID": 75316, + "Directional": true + }] + }, { + "ID": 15430, + "SourceStructureID": 66523, + "TargetStructureID": 75300, + "Label": "66523-75300 via Conventional from 75299 -> 75301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75299, + "TargetID": 75301, + "Directional": true + }] + }, { + "ID": 15431, + "SourceStructureID": 66523, + "TargetStructureID": 75302, + "Label": "66523-75302 via Conventional from 75303 -> 75304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75303, + "TargetID": 75304, + "Directional": true + }] + }, { + "ID": 15432, + "SourceStructureID": 66523, + "TargetStructureID": 75324, + "Label": "66523-75324 via Conventional from 75323 -> 75325", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75323, + "TargetID": 75325, + "Directional": true + }] + }, { + "ID": 15433, + "SourceStructureID": 66523, + "TargetStructureID": 75326, + "Label": "66523-75326 via Conventional from 75327 -> 75328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75327, + "TargetID": 75328, + "Directional": true + }] + }, { + "ID": 15434, + "SourceStructureID": 66523, + "TargetStructureID": 75332, + "Label": "66523-75332 via Conventional from 75333 -> 75334", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75333, + "TargetID": 75334, + "Directional": true + }] + }, { + "ID": 15435, + "SourceStructureID": 66523, + "TargetStructureID": 75337, + "Label": "66523-75337 via Conventional from 66528 -> 75338", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66528, + "TargetID": 75338, + "Directional": true + }] + }, { + "ID": 15436, + "SourceStructureID": 66523, + "TargetStructureID": 75339, + "Label": "66523-75339 via Conventional from 66529 -> 75340", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66529, + "TargetID": 75340, + "Directional": true + }] + }, { + "ID": 15437, + "SourceStructureID": 66523, + "TargetStructureID": 77965, + "Label": "66523-77965 via Conventional from 77966 -> 77967", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77966, + "TargetID": 77967, + "Directional": true + }] + }, { + "ID": 15438, + "SourceStructureID": 66542, + "TargetStructureID": 166, + "Label": "66542-166 via Conventional from 83483 -> 83484", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83483, + "TargetID": 83484, + "Directional": true + }] + }, { + "ID": 15439, + "SourceStructureID": 66542, + "TargetStructureID": 593, + "Label": "66542-593 via Conventional from 66543 -> 66544", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66543, + "TargetID": 66544, + "Directional": true + }] + }, { + "ID": 15440, + "SourceStructureID": 66634, + "TargetStructureID": 166, + "Label": "66634-166 via Conventional from 71338 -> 60026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71338, + "TargetID": 60026, + "Directional": true + }] + }, { + "ID": 15441, + "SourceStructureID": 66634, + "TargetStructureID": 593, + "Label": "66634-593 via Conventional from 66635 -> 59624", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66635, + "TargetID": 59624, + "Directional": true + }] + }, { + "ID": 15442, + "SourceStructureID": 66634, + "TargetStructureID": 6115, + "Label": "66634-6115 via Conventional from 71331 -> 71332, 71957 -> 71621", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71331, + "TargetID": 71332, + "Directional": true + }, { + "SourceID": 71957, + "TargetID": 71621, + "Directional": true + }] + }, { + "ID": 15443, + "SourceStructureID": 66634, + "TargetStructureID": 6857, + "Label": "66634-6857 via Conventional from 66638 -> 66637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66638, + "TargetID": 66637, + "Directional": true + }] + }, { + "ID": 15444, + "SourceStructureID": 66634, + "TargetStructureID": 38363, + "Label": "66634-38363 via Conventional from 71613 -> 38367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71613, + "TargetID": 38367, + "Directional": true + }] + }, { + "ID": 15445, + "SourceStructureID": 66634, + "TargetStructureID": 71345, + "Label": "66634-71345 via Conventional from 71344 -> 71346", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71344, + "TargetID": 71346, + "Directional": true + }] + }, { + "ID": 15446, + "SourceStructureID": 66634, + "TargetStructureID": 71517, + "Label": "66634-71517 via Conventional from 66672 -> 66674, 71623 -> 71624", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66672, + "TargetID": 66674, + "Directional": true + }, { + "SourceID": 71623, + "TargetID": 71624, + "Directional": true + }] + }, { + "ID": 15447, + "SourceStructureID": 66634, + "TargetStructureID": 71615, + "Label": "66634-71615 via Conventional from 71614 -> 71616", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71614, + "TargetID": 71616, + "Directional": true + }] + }, { + "ID": 15448, + "SourceStructureID": 66640, + "TargetStructureID": 66523, + "Label": "66640-66523 via Conventional from 66643 -> 75341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66643, + "TargetID": 75341, + "Directional": true + }] + }, { + "ID": 15449, + "SourceStructureID": 66656, + "TargetStructureID": 16002, + "Label": "66656-16002 via Adherens from 66659 -> 66658", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 66659, + "TargetID": 66658, + "Directional": true + }] + }, { + "ID": 15450, + "SourceStructureID": 66660, + "TargetStructureID": 4569, + "Label": "66660-4569 via Conventional from 66661 -> 30839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66661, + "TargetID": 30839, + "Directional": true + }] + }, { + "ID": 15451, + "SourceStructureID": 66665, + "TargetStructureID": 4569, + "Label": "66665-4569 via Conventional from 66670 -> 30840", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66670, + "TargetID": 30840, + "Directional": true + }] + }, { + "ID": 15452, + "SourceStructureID": 66665, + "TargetStructureID": 66667, + "Label": "66665-66667 via Conventional from 66668 -> 66669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66668, + "TargetID": 66669, + "Directional": true + }] + }, { + "ID": 15453, + "SourceStructureID": 66682, + "TargetStructureID": 593, + "Label": "66682-593 via Conventional from 66684 -> 59621", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66684, + "TargetID": 59621, + "Directional": true + }] + }, { + "ID": 15454, + "SourceStructureID": 66685, + "TargetStructureID": 593, + "Label": "66685-593 via Conventional from 66686 -> 59617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66686, + "TargetID": 59617, + "Directional": true + }] + }, { + "ID": 15455, + "SourceStructureID": 66685, + "TargetStructureID": 66688, + "Label": "66685-66688 via Conventional from 66687 -> 66689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66687, + "TargetID": 66689, + "Directional": true + }] + }, { + "ID": 15456, + "SourceStructureID": 66691, + "TargetStructureID": 66688, + "Label": "66691-66688 via Conventional from 66692 -> 66690", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66692, + "TargetID": 66690, + "Directional": true + }] + }, { + "ID": 15457, + "SourceStructureID": 66693, + "TargetStructureID": 593, + "Label": "66693-593 via Conventional from 66695 -> 59612", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66695, + "TargetID": 59612, + "Directional": true + }] + }, { + "ID": 15458, + "SourceStructureID": 66696, + "TargetStructureID": 6115, + "Label": "66696-6115 via Conventional from 66749 -> 16059", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66749, + "TargetID": 16059, + "Directional": true + }] + }, { + "ID": 15459, + "SourceStructureID": 66699, + "TargetStructureID": 66696, + "Label": "66699-66696 via Conventional from 66700 -> 66698", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66700, + "TargetID": 66698, + "Directional": true + }] + }, { + "ID": 15460, + "SourceStructureID": 66702, + "TargetStructureID": 66696, + "Label": "66702-66696 via Conventional from 66703 -> 66701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66703, + "TargetID": 66701, + "Directional": true + }] + }, { + "ID": 15461, + "SourceStructureID": 66706, + "TargetStructureID": 593, + "Label": "66706-593 via Conventional from 66708 -> 59620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66708, + "TargetID": 59620, + "Directional": true + }] + }, { + "ID": 15462, + "SourceStructureID": 66710, + "TargetStructureID": 39345, + "Label": "66710-39345 via Conventional from 66717 -> 39362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66717, + "TargetID": 39362, + "Directional": true + }] + }, { + "ID": 15463, + "SourceStructureID": 66710, + "TargetStructureID": 58696, + "Label": "66710-58696 via Conventional from 66716 -> 66709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66716, + "TargetID": 66709, + "Directional": true + }] + }, { + "ID": 15464, + "SourceStructureID": 66713, + "TargetStructureID": 166, + "Label": "66713-166 via Conventional from 66715 -> 60005", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66715, + "TargetID": 60005, + "Directional": true + }] + }, { + "ID": 15465, + "SourceStructureID": 66723, + "TargetStructureID": 58696, + "Label": "66723-58696 via Conventional from 66724 -> 66722", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66724, + "TargetID": 66722, + "Directional": true + }] + }, { + "ID": 15466, + "SourceStructureID": 66726, + "TargetStructureID": 66516, + "Label": "66726-66516 via Conventional from 66727 -> 66725", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66727, + "TargetID": 66725, + "Directional": true + }] + }, { + "ID": 15467, + "SourceStructureID": 66731, + "TargetStructureID": 66734, + "Label": "66731-66734 via Conventional from 66733 -> 66735", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66733, + "TargetID": 66735, + "Directional": true + }] + }, { + "ID": 15468, + "SourceStructureID": 66731, + "TargetStructureID": 66741, + "Label": "66731-66741 via Conventional from 66740 -> 66742", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66740, + "TargetID": 66742, + "Directional": true + }] + }, { + "ID": 15469, + "SourceStructureID": 66760, + "TargetStructureID": 66756, + "Label": "66760-66756 via Conventional from 66761 -> 66762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66761, + "TargetID": 66762, + "Directional": true + }] + }, { + "ID": 15470, + "SourceStructureID": 66768, + "TargetStructureID": 593, + "Label": "66768-593 via Conventional from 67538 -> 67539, 68429 -> 28438", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67538, + "TargetID": 67539, + "Directional": true + }, { + "SourceID": 68429, + "TargetID": 28438, + "Directional": true + }] + }, { + "ID": 15471, + "SourceStructureID": 66768, + "TargetStructureID": 6115, + "Label": "66768-6115 via Conventional from 66771 -> 59607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66771, + "TargetID": 59607, + "Directional": true + }] + }, { + "ID": 15472, + "SourceStructureID": 66779, + "TargetStructureID": 593, + "Label": "66779-593 via Conventional from 66780 -> 7712, 66793 -> 7751, 67499 -> 7757", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66780, + "TargetID": 7712, + "Directional": true + }, { + "SourceID": 66793, + "TargetID": 7751, + "Directional": true + }, { + "SourceID": 67499, + "TargetID": 7757, + "Directional": true + }] + }, { + "ID": 15473, + "SourceStructureID": 66788, + "TargetStructureID": 66791, + "Label": "66788-66791 via Conventional from 66790 -> 66792", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66790, + "TargetID": 66792, + "Directional": true + }] + }, { + "ID": 15474, + "SourceStructureID": 66795, + "TargetStructureID": 593, + "Label": "66795-593 via Conventional from 66796 -> 7714, 67567 -> 7767", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66796, + "TargetID": 7714, + "Directional": true + }, { + "SourceID": 67567, + "TargetID": 7767, + "Directional": true + }] + }, { + "ID": 15475, + "SourceStructureID": 66795, + "TargetStructureID": 66798, + "Label": "66795-66798 via Conventional from 66797 -> 66799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66797, + "TargetID": 66799, + "Directional": true + }] + }, { + "ID": 15476, + "SourceStructureID": 66795, + "TargetStructureID": 68488, + "Label": "66795-68488 via Conventional from 79580 -> 79581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79580, + "TargetID": 79581, + "Directional": true + }] + }, { + "ID": 15477, + "SourceStructureID": 66801, + "TargetStructureID": 16026, + "Label": "66801-16026 via Conventional from 83605 -> 91078", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83605, + "TargetID": 91078, + "Directional": true + }] + }, { + "ID": 15478, + "SourceStructureID": 66801, + "TargetStructureID": 66795, + "Label": "66801-66795 via Conventional from 66802 -> 66800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66802, + "TargetID": 66800, + "Directional": true + }] + }, { + "ID": 15479, + "SourceStructureID": 66801, + "TargetStructureID": 83609, + "Label": "66801-83609 via Conventional from 83608 -> 83610", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83608, + "TargetID": 83610, + "Directional": true + }] + }, { + "ID": 15480, + "SourceStructureID": 66804, + "TargetStructureID": 593, + "Label": "66804-593 via Conventional from 66806 -> 66807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66806, + "TargetID": 66807, + "Directional": true + }] + }, { + "ID": 15481, + "SourceStructureID": 66804, + "TargetStructureID": 66801, + "Label": "66804-66801 via Conventional from 80629 -> 83601", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80629, + "TargetID": 83601, + "Directional": true + }] + }, { + "ID": 15482, + "SourceStructureID": 66804, + "TargetStructureID": 66809, + "Label": "66804-66809 via Conventional from 66808 -> 66810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66808, + "TargetID": 66810, + "Directional": true + }] + }, { + "ID": 15483, + "SourceStructureID": 66804, + "TargetStructureID": 69537, + "Label": "66804-69537 via Conventional from 80632 -> 69633", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80632, + "TargetID": 69633, + "Directional": true + }] + }, { + "ID": 15484, + "SourceStructureID": 66809, + "TargetStructureID": 593, + "Label": "66809-593 via Conventional from 66861 -> 67060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66861, + "TargetID": 67060, + "Directional": true + }] + }, { + "ID": 15485, + "SourceStructureID": 66809, + "TargetStructureID": 66031, + "Label": "66809-66031 via Conventional from 66047 -> 66048", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66047, + "TargetID": 66048, + "Directional": true + }] + }, { + "ID": 15486, + "SourceStructureID": 66809, + "TargetStructureID": 66795, + "Label": "66809-66795 via Conventional from 82440 -> 82441", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82440, + "TargetID": 82441, + "Directional": true + }] + }, { + "ID": 15487, + "SourceStructureID": 66809, + "TargetStructureID": 66804, + "Label": "66809-66804 via Conventional from 66864 -> 66867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66864, + "TargetID": 66867, + "Directional": true + }] + }, { + "ID": 15488, + "SourceStructureID": 66815, + "TargetStructureID": 10943, + "Label": "66815-10943 via Conventional from 66818 -> 16269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66818, + "TargetID": 16269, + "Directional": true + }] + }, { + "ID": 15489, + "SourceStructureID": 66828, + "TargetStructureID": 593, + "Label": "66828-593 via Conventional from 66830 -> 66831", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66830, + "TargetID": 66831, + "Directional": true + }] + }, { + "ID": 15490, + "SourceStructureID": 66828, + "TargetStructureID": 16026, + "Label": "66828-16026 via Conventional from 66836 -> 25704, 82735 -> 25600, 82740 -> 67923", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66836, + "TargetID": 25704, + "Directional": true + }, { + "SourceID": 82735, + "TargetID": 25600, + "Directional": true + }, { + "SourceID": 82740, + "TargetID": 67923, + "Directional": true + }] + }, { + "ID": 15491, + "SourceStructureID": 66828, + "TargetStructureID": 40451, + "Label": "66828-40451 via Conventional from 82727 -> 40452", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82727, + "TargetID": 40452, + "Directional": true + }] + }, { + "ID": 15492, + "SourceStructureID": 66828, + "TargetStructureID": 82729, + "Label": "66828-82729 via Conventional from 82728 -> 82730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82728, + "TargetID": 82730, + "Directional": true + }] + }, { + "ID": 15493, + "SourceStructureID": 66840, + "TargetStructureID": 8720, + "Label": "66840-8720 via Conventional from 64379 -> 64377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 64379, + "TargetID": 64377, + "Directional": true + }] + }, { + "ID": 15494, + "SourceStructureID": 66852, + "TargetStructureID": 593, + "Label": "66852-593 via Conventional from 66853 -> 66854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66853, + "TargetID": 66854, + "Directional": true + }] + }, { + "ID": 15495, + "SourceStructureID": 66871, + "TargetStructureID": 593, + "Label": "66871-593 via Conventional from 66873 -> 7754", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66873, + "TargetID": 7754, + "Directional": true + }] + }, { + "ID": 15496, + "SourceStructureID": 66871, + "TargetStructureID": 66804, + "Label": "66871-66804 via Conventional from 66874 -> 66875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66874, + "TargetID": 66875, + "Directional": true + }] + }, { + "ID": 15497, + "SourceStructureID": 66871, + "TargetStructureID": 67430, + "Label": "66871-67430 via Conventional from 82742 -> 70032", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82742, + "TargetID": 70032, + "Directional": true + }] + }, { + "ID": 15498, + "SourceStructureID": 66896, + "TargetStructureID": 593, + "Label": "66896-593 via Conventional from 79252 -> 7805", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79252, + "TargetID": 7805, + "Directional": true + }] + }, { + "ID": 15499, + "SourceStructureID": 66900, + "TargetStructureID": 66900, + "Label": "66900-66900 via Conventional from 66902 -> 66904", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66902, + "TargetID": 66904, + "Directional": true + }] + }, { + "ID": 15500, + "SourceStructureID": 66900, + "TargetStructureID": 84260, + "Label": "66900-84260 via Conventional from 66901 -> 84265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66901, + "TargetID": 84265, + "Directional": true + }] + }, { + "ID": 15501, + "SourceStructureID": 66905, + "TargetStructureID": 66923, + "Label": "66905-66923 via Conventional from 66922 -> 66924", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66922, + "TargetID": 66924, + "Directional": true + }] + }, { + "ID": 15502, + "SourceStructureID": 66920, + "TargetStructureID": 66905, + "Label": "66920-66905 via Conventional from 66921 -> 66919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66921, + "TargetID": 66919, + "Directional": true + }] + }, { + "ID": 15503, + "SourceStructureID": 66927, + "TargetStructureID": 66905, + "Label": "66927-66905 via Conventional from 66928 -> 66926", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66928, + "TargetID": 66926, + "Directional": true + }] + }, { + "ID": 15504, + "SourceStructureID": 66930, + "TargetStructureID": 66905, + "Label": "66930-66905 via Conventional from 66931 -> 66929", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66931, + "TargetID": 66929, + "Directional": true + }] + }, { + "ID": 15505, + "SourceStructureID": 66946, + "TargetStructureID": 525, + "Label": "66946-525 via Conventional from 83032 -> 6223", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83032, + "TargetID": 6223, + "Directional": true + }] + }, { + "ID": 15506, + "SourceStructureID": 66946, + "TargetStructureID": 593, + "Label": "66946-593 via Conventional from 66948 -> 66949", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66948, + "TargetID": 66949, + "Directional": true + }] + }, { + "ID": 15507, + "SourceStructureID": 66946, + "TargetStructureID": 5017, + "Label": "66946-5017 via Conventional from 82924 -> 61167", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82924, + "TargetID": 61167, + "Directional": true + }] + }, { + "ID": 15508, + "SourceStructureID": 66946, + "TargetStructureID": 6156, + "Label": "66946-6156 via Conventional from 82906 -> 28694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82906, + "TargetID": 28694, + "Directional": true + }] + }, { + "ID": 15509, + "SourceStructureID": 66946, + "TargetStructureID": 6997, + "Label": "66946-6997 via Conventional from 82943 -> 80639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82943, + "TargetID": 80639, + "Directional": true + }] + }, { + "ID": 15510, + "SourceStructureID": 66946, + "TargetStructureID": 8580, + "Label": "66946-8580 via Conventional from 69261 -> 59650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69261, + "TargetID": 59650, + "Directional": true + }] + }, { + "ID": 15511, + "SourceStructureID": 66946, + "TargetStructureID": 8588, + "Label": "66946-8588 via Conventional from 82745 -> 32708, 82905 -> 59743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82745, + "TargetID": 32708, + "Directional": true + }, { + "SourceID": 82905, + "TargetID": 59743, + "Directional": true + }] + }, { + "ID": 15512, + "SourceStructureID": 66946, + "TargetStructureID": 16026, + "Label": "66946-16026 via Conventional from 82890 -> 25488", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82890, + "TargetID": 25488, + "Directional": true + }] + }, { + "ID": 15513, + "SourceStructureID": 66946, + "TargetStructureID": 32913, + "Label": "66946-32913 via Conventional from 82903 -> 82904", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82903, + "TargetID": 82904, + "Directional": true + }] + }, { + "ID": 15514, + "SourceStructureID": 66946, + "TargetStructureID": 66952, + "Label": "66946-66952 via Conventional from 66951 -> 66953", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66951, + "TargetID": 66953, + "Directional": true + }] + }, { + "ID": 15515, + "SourceStructureID": 66946, + "TargetStructureID": 68302, + "Label": "66946-68302 via Adherens from 82925 -> 80635", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 82925, + "TargetID": 80635, + "Directional": true + }] + }, { + "ID": 15516, + "SourceStructureID": 66946, + "TargetStructureID": 68302, + "Label": "66946-68302 via Conventional from 82926 -> 80634, 82927 -> 80636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82926, + "TargetID": 80634, + "Directional": true + }, { + "SourceID": 82927, + "TargetID": 80636, + "Directional": true + }] + }, { + "ID": 15517, + "SourceStructureID": 66946, + "TargetStructureID": 68341, + "Label": "66946-68341 via Conventional from 82744 -> 80622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82744, + "TargetID": 80622, + "Directional": true + }] + }, { + "ID": 15518, + "SourceStructureID": 66946, + "TargetStructureID": 68548, + "Label": "66946-68548 via Conventional from 82891 -> 73486", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82891, + "TargetID": 73486, + "Directional": true + }] + }, { + "ID": 15519, + "SourceStructureID": 66946, + "TargetStructureID": 83034, + "Label": "66946-83034 via Conventional from 83035 -> 83036", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83035, + "TargetID": 83036, + "Directional": true + }] + }, { + "ID": 15520, + "SourceStructureID": 66952, + "TargetStructureID": 593, + "Label": "66952-593 via Conventional from 67006 -> 67004", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67006, + "TargetID": 67004, + "Directional": true + }] + }, { + "ID": 15521, + "SourceStructureID": 66952, + "TargetStructureID": 67007, + "Label": "66952-67007 via Conventional from 67012 -> 67013", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67012, + "TargetID": 67013, + "Directional": true + }] + }, { + "ID": 15522, + "SourceStructureID": 66952, + "TargetStructureID": 67389, + "Label": "66952-67389 via Conventional from 67388 -> 67390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67388, + "TargetID": 67390, + "Directional": true + }] + }, { + "ID": 15523, + "SourceStructureID": 66952, + "TargetStructureID": 83049, + "Label": "66952-83049 via Conventional from 83048 -> 83050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83048, + "TargetID": 83050, + "Directional": true + }] + }, { + "ID": 15524, + "SourceStructureID": 66955, + "TargetStructureID": 66946, + "Label": "66955-66946 via Conventional from 66956 -> 66954", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66956, + "TargetID": 66954, + "Directional": true + }] + }, { + "ID": 15525, + "SourceStructureID": 66962, + "TargetStructureID": 16026, + "Label": "66962-16026 via Conventional from 71226 -> 25734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71226, + "TargetID": 25734, + "Directional": true + }] + }, { + "ID": 15526, + "SourceStructureID": 66962, + "TargetStructureID": 66964, + "Label": "66962-66964 via Conventional from 66963 -> 66965", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66963, + "TargetID": 66965, + "Directional": true + }] + }, { + "ID": 15527, + "SourceStructureID": 66969, + "TargetStructureID": 66966, + "Label": "66969-66966 via Conventional from 66970 -> 66971", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66970, + "TargetID": 66971, + "Directional": true + }] + }, { + "ID": 15528, + "SourceStructureID": 66972, + "TargetStructureID": 10943, + "Label": "66972-10943 via Conventional from 66973 -> 66974", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66973, + "TargetID": 66974, + "Directional": true + }] + }, { + "ID": 15529, + "SourceStructureID": 66983, + "TargetStructureID": 593, + "Label": "66983-593 via Conventional from 66984 -> 7718, 66997 -> 7724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66984, + "TargetID": 7718, + "Directional": true + }, { + "SourceID": 66997, + "TargetID": 7724, + "Directional": true + }] + }, { + "ID": 15530, + "SourceStructureID": 66983, + "TargetStructureID": 66988, + "Label": "66983-66988 via Conventional from 66987 -> 66989", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66987, + "TargetID": 66989, + "Directional": true + }] + }, { + "ID": 15531, + "SourceStructureID": 66992, + "TargetStructureID": 66983, + "Label": "66992-66983 via Conventional from 66993 -> 66994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66993, + "TargetID": 66994, + "Directional": true + }] + }, { + "ID": 15532, + "SourceStructureID": 67002, + "TargetStructureID": 66983, + "Label": "67002-66983 via Conventional from 67003 -> 67001", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67003, + "TargetID": 67001, + "Directional": true + }] + }, { + "ID": 15533, + "SourceStructureID": 67007, + "TargetStructureID": 593, + "Label": "67007-593 via Conventional from 67014 -> 66622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67014, + "TargetID": 66622, + "Directional": true + }] + }, { + "ID": 15534, + "SourceStructureID": 67007, + "TargetStructureID": 66952, + "Label": "67007-66952 via Conventional from 67008 -> 67009", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67008, + "TargetID": 67009, + "Directional": true + }] + }, { + "ID": 15535, + "SourceStructureID": 67007, + "TargetStructureID": 67016, + "Label": "67007-67016 via Conventional from 67015 -> 67017", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67015, + "TargetID": 67017, + "Directional": true + }] + }, { + "ID": 15536, + "SourceStructureID": 67010, + "TargetStructureID": 8588, + "Label": "67010-8588 via Conventional from 67011 -> 32710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67011, + "TargetID": 32710, + "Directional": true + }] + }, { + "ID": 15537, + "SourceStructureID": 67016, + "TargetStructureID": 55403, + "Label": "67016-55403 via Conventional from 67023 -> 55465", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67023, + "TargetID": 55465, + "Directional": true + }] + }, { + "ID": 15538, + "SourceStructureID": 67037, + "TargetStructureID": 66777, + "Label": "67037-66777 via Conventional from 71208 -> 67039", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71208, + "TargetID": 67039, + "Directional": true + }] + }, { + "ID": 15539, + "SourceStructureID": 67042, + "TargetStructureID": 66958, + "Label": "67042-66958 via Conventional from 67043 -> 67041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67043, + "TargetID": 67041, + "Directional": true + }] + }, { + "ID": 15540, + "SourceStructureID": 67045, + "TargetStructureID": 593, + "Label": "67045-593 via Conventional from 67047 -> 67046, 67218 -> 67215, 67676 -> 67674, 67680 -> 67681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67047, + "TargetID": 67046, + "Directional": true + }, { + "SourceID": 67218, + "TargetID": 67215, + "Directional": true + }, { + "SourceID": 67676, + "TargetID": 67674, + "Directional": true + }, { + "SourceID": 67680, + "TargetID": 67681, + "Directional": true + }] + }, { + "ID": 15541, + "SourceStructureID": 67045, + "TargetStructureID": 16026, + "Label": "67045-16026 via Conventional from 81542 -> 68700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81542, + "TargetID": 68700, + "Directional": true + }] + }, { + "ID": 15542, + "SourceStructureID": 67045, + "TargetStructureID": 31161, + "Label": "67045-31161 via Conventional from 68699 -> 31234", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68699, + "TargetID": 31234, + "Directional": true + }] + }, { + "ID": 15543, + "SourceStructureID": 67045, + "TargetStructureID": 67683, + "Label": "67045-67683 via Conventional from 67682 -> 67684", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67682, + "TargetID": 67684, + "Directional": true + }] + }, { + "ID": 15544, + "SourceStructureID": 67045, + "TargetStructureID": 67731, + "Label": "67045-67731 via Conventional from 67734 -> 67735", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67734, + "TargetID": 67735, + "Directional": true + }] + }, { + "ID": 15545, + "SourceStructureID": 67045, + "TargetStructureID": 67756, + "Label": "67045-67756 via Conventional from 67048 -> 75405, 68695 -> 75401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67048, + "TargetID": 75405, + "Directional": true + }, { + "SourceID": 68695, + "TargetID": 75401, + "Directional": true + }] + }, { + "ID": 15546, + "SourceStructureID": 67045, + "TargetStructureID": 81549, + "Label": "67045-81549 via Conventional from 81548 -> 81550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81548, + "TargetID": 81550, + "Directional": true + }] + }, { + "ID": 15547, + "SourceStructureID": 67051, + "TargetStructureID": 66958, + "Label": "67051-66958 via Conventional from 67055 -> 67056", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67055, + "TargetID": 67056, + "Directional": true + }] + }, { + "ID": 15548, + "SourceStructureID": 67057, + "TargetStructureID": 7594, + "Label": "67057-7594 via Conventional from 130847 -> 130848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130847, + "TargetID": 130848, + "Directional": true + }] + }, { + "ID": 15549, + "SourceStructureID": 67057, + "TargetStructureID": 66958, + "Label": "67057-66958 via Conventional from 67058 -> 67059", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67058, + "TargetID": 67059, + "Directional": true + }] + }, { + "ID": 15550, + "SourceStructureID": 67072, + "TargetStructureID": 22974, + "Label": "67072-22974 via Conventional from 67074 -> 67075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67074, + "TargetID": 67075, + "Directional": true + }] + }, { + "ID": 15551, + "SourceStructureID": 67080, + "TargetStructureID": 16026, + "Label": "67080-16026 via Conventional from 67082 -> 25717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67082, + "TargetID": 25717, + "Directional": true + }] + }, { + "ID": 15552, + "SourceStructureID": 67099, + "TargetStructureID": 593, + "Label": "67099-593 via Conventional from 67100 -> 7716", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67100, + "TargetID": 7716, + "Directional": true + }] + }, { + "ID": 15553, + "SourceStructureID": 67099, + "TargetStructureID": 7594, + "Label": "67099-7594 via Conventional from 83053 -> 83054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83053, + "TargetID": 83054, + "Directional": true + }] + }, { + "ID": 15554, + "SourceStructureID": 67105, + "TargetStructureID": 67101, + "Label": "67105-67101 via Conventional from 67106 -> 67104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67106, + "TargetID": 67104, + "Directional": true + }] + }, { + "ID": 15555, + "SourceStructureID": 67117, + "TargetStructureID": 593, + "Label": "67117-593 via Conventional from 67118 -> 66623", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67118, + "TargetID": 66623, + "Directional": true + }] + }, { + "ID": 15556, + "SourceStructureID": 67121, + "TargetStructureID": 593, + "Label": "67121-593 via Conventional from 67122 -> 66627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67122, + "TargetID": 66627, + "Directional": true + }] + }, { + "ID": 15557, + "SourceStructureID": 67123, + "TargetStructureID": 593, + "Label": "67123-593 via Conventional from 67124 -> 66628", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67124, + "TargetID": 66628, + "Directional": true + }] + }, { + "ID": 15558, + "SourceStructureID": 67130, + "TargetStructureID": 33092, + "Label": "67130-33092 via Conventional from 67134 -> 39979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67134, + "TargetID": 39979, + "Directional": true + }] + }, { + "ID": 15559, + "SourceStructureID": 67135, + "TargetStructureID": 7054, + "Label": "67135-7054 via Conventional from 67145 -> 10915", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67145, + "TargetID": 10915, + "Directional": true + }] + }, { + "ID": 15560, + "SourceStructureID": 67137, + "TargetStructureID": 5283, + "Label": "67137-5283 via Conventional from 67149 -> 132129", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67149, + "TargetID": 132129, + "Directional": true + }] + }, { + "ID": 15561, + "SourceStructureID": 67143, + "TargetStructureID": 67135, + "Label": "67143-67135 via Conventional from 67144 -> 67142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67144, + "TargetID": 67142, + "Directional": true + }] + }, { + "ID": 15562, + "SourceStructureID": 67147, + "TargetStructureID": 67137, + "Label": "67147-67137 via Conventional from 67148 -> 67146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67148, + "TargetID": 67146, + "Directional": true + }] + }, { + "ID": 15563, + "SourceStructureID": 67150, + "TargetStructureID": 593, + "Label": "67150-593 via Conventional from 67151 -> 49569, 68330 -> 7761, 90045 -> 90046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67151, + "TargetID": 49569, + "Directional": true + }, { + "SourceID": 68330, + "TargetID": 7761, + "Directional": true + }, { + "SourceID": 90045, + "TargetID": 90046, + "Directional": true + }] + }, { + "ID": 15564, + "SourceStructureID": 67152, + "TargetStructureID": 593, + "Label": "67152-593 via Conventional from 67153 -> 67154", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67153, + "TargetID": 67154, + "Directional": true + }] + }, { + "ID": 15565, + "SourceStructureID": 67157, + "TargetStructureID": 593, + "Label": "67157-593 via Conventional from 67158 -> 67156", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67158, + "TargetID": 67156, + "Directional": true + }] + }, { + "ID": 15566, + "SourceStructureID": 67159, + "TargetStructureID": 593, + "Label": "67159-593 via Conventional from 67160 -> 62885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67160, + "TargetID": 62885, + "Directional": true + }] + }, { + "ID": 15567, + "SourceStructureID": 67161, + "TargetStructureID": 67172, + "Label": "67161-67172 via Conventional from 67171 -> 67173", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67171, + "TargetID": 67173, + "Directional": true + }] + }, { + "ID": 15568, + "SourceStructureID": 67161, + "TargetStructureID": 67175, + "Label": "67161-67175 via Conventional from 67174 -> 67176", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67174, + "TargetID": 67176, + "Directional": true + }] + }, { + "ID": 15569, + "SourceStructureID": 67161, + "TargetStructureID": 69162, + "Label": "67161-69162 via Conventional from 67179 -> 69213", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67179, + "TargetID": 69213, + "Directional": true + }] + }, { + "ID": 15570, + "SourceStructureID": 67180, + "TargetStructureID": 593, + "Label": "67180-593 via Conventional from 67181 -> 66632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67181, + "TargetID": 66632, + "Directional": true + }] + }, { + "ID": 15571, + "SourceStructureID": 67182, + "TargetStructureID": 142, + "Label": "67182-142 via Conventional from 83313 -> 49728, 83317 -> 30684", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83313, + "TargetID": 49728, + "Directional": true + }, { + "SourceID": 83317, + "TargetID": 30684, + "Directional": true + }] + }, { + "ID": 15572, + "SourceStructureID": 67182, + "TargetStructureID": 168, + "Label": "67182-168 via Conventional from 83323 -> 4144", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83323, + "TargetID": 4144, + "Directional": true + }] + }, { + "ID": 15573, + "SourceStructureID": 67182, + "TargetStructureID": 593, + "Label": "67182-593 via Conventional from 67184 -> 67183", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67184, + "TargetID": 67183, + "Directional": true + }] + }, { + "ID": 15574, + "SourceStructureID": 67182, + "TargetStructureID": 5279, + "Label": "67182-5279 via Conventional from 82870 -> 97564, 83300 -> 83299, 97648 -> 25817, 98544 -> 49206, 98989 -> 98990", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82870, + "TargetID": 97564, + "Directional": true + }, { + "SourceID": 83300, + "TargetID": 83299, + "Directional": true + }, { + "SourceID": 97648, + "TargetID": 25817, + "Directional": true + }, { + "SourceID": 98544, + "TargetID": 49206, + "Directional": true + }, { + "SourceID": 98989, + "TargetID": 98990, + "Directional": true + }] + }, { + "ID": 15575, + "SourceStructureID": 67182, + "TargetStructureID": 58816, + "Label": "67182-58816 via Conventional from 83301 -> 83304, 83305 -> 83306", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83301, + "TargetID": 83304, + "Directional": true + }, { + "SourceID": 83305, + "TargetID": 83306, + "Directional": true + }] + }, { + "ID": 15576, + "SourceStructureID": 67182, + "TargetStructureID": 61857, + "Label": "67182-61857 via Conventional from 82917 -> 69711", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82917, + "TargetID": 69711, + "Directional": true + }] + }, { + "ID": 15577, + "SourceStructureID": 67190, + "TargetStructureID": 593, + "Label": "67190-593 via Conventional from 120225 -> 120224", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120225, + "TargetID": 120224, + "Directional": true + }] + }, { + "ID": 15578, + "SourceStructureID": 67201, + "TargetStructureID": 593, + "Label": "67201-593 via Conventional from 67202 -> 67203", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67202, + "TargetID": 67203, + "Directional": true + }] + }, { + "ID": 15579, + "SourceStructureID": 67206, + "TargetStructureID": 593, + "Label": "67206-593 via Conventional from 67207 -> 67205, 83237 -> 68625", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67207, + "TargetID": 67205, + "Directional": true + }, { + "SourceID": 83237, + "TargetID": 68625, + "Directional": true + }] + }, { + "ID": 15580, + "SourceStructureID": 67227, + "TargetStructureID": 593, + "Label": "67227-593 via Conventional from 67229 -> 67228", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67229, + "TargetID": 67228, + "Directional": true + }] + }, { + "ID": 15581, + "SourceStructureID": 67234, + "TargetStructureID": 593, + "Label": "67234-593 via Conventional from 67235 -> 67233", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67235, + "TargetID": 67233, + "Directional": true + }] + }, { + "ID": 15582, + "SourceStructureID": 67254, + "TargetStructureID": 593, + "Label": "67254-593 via Conventional from 67256 -> 67255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67256, + "TargetID": 67255, + "Directional": true + }] + }, { + "ID": 15583, + "SourceStructureID": 67266, + "TargetStructureID": 593, + "Label": "67266-593 via Conventional from 67267 -> 67268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67267, + "TargetID": 67268, + "Directional": true + }] + }, { + "ID": 15584, + "SourceStructureID": 67269, + "TargetStructureID": 593, + "Label": "67269-593 via Conventional from 67271 -> 67270", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67271, + "TargetID": 67270, + "Directional": true + }] + }, { + "ID": 15585, + "SourceStructureID": 67269, + "TargetStructureID": 69637, + "Label": "67269-69637 via Conventional from 69638 -> 69639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69638, + "TargetID": 69639, + "Directional": true + }] + }, { + "ID": 15586, + "SourceStructureID": 67274, + "TargetStructureID": 593, + "Label": "67274-593 via Conventional from 67277 -> 67278", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67277, + "TargetID": 67278, + "Directional": true + }] + }, { + "ID": 15587, + "SourceStructureID": 67284, + "TargetStructureID": 593, + "Label": "67284-593 via Conventional from 86594 -> 86595", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86594, + "TargetID": 86595, + "Directional": true + }] + }, { + "ID": 15588, + "SourceStructureID": 67284, + "TargetStructureID": 16026, + "Label": "67284-16026 via Conventional from 67288 -> 91154", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67288, + "TargetID": 91154, + "Directional": true + }] + }, { + "ID": 15589, + "SourceStructureID": 67291, + "TargetStructureID": 179, + "Label": "67291-179 via Conventional from 69839 -> 69840", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69839, + "TargetID": 69840, + "Directional": true + }] + }, { + "ID": 15590, + "SourceStructureID": 67298, + "TargetStructureID": 593, + "Label": "67298-593 via Conventional from 67299 -> 67300", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67299, + "TargetID": 67300, + "Directional": true + }] + }, { + "ID": 15591, + "SourceStructureID": 67301, + "TargetStructureID": 593, + "Label": "67301-593 via Conventional from 67302 -> 67303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67302, + "TargetID": 67303, + "Directional": true + }] + }, { + "ID": 15592, + "SourceStructureID": 67305, + "TargetStructureID": 593, + "Label": "67305-593 via Conventional from 67306 -> 67304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67306, + "TargetID": 67304, + "Directional": true + }] + }, { + "ID": 15593, + "SourceStructureID": 67305, + "TargetStructureID": 82813, + "Label": "67305-82813 via Conventional from 82812 -> 82814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82812, + "TargetID": 82814, + "Directional": true + }] + }, { + "ID": 15594, + "SourceStructureID": 67307, + "TargetStructureID": 67309, + "Label": "67307-67309 via Conventional from 67308 -> 67310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67308, + "TargetID": 67310, + "Directional": true + }] + }, { + "ID": 15595, + "SourceStructureID": 67322, + "TargetStructureID": 593, + "Label": "67322-593 via Conventional from 67323 -> 7747", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67323, + "TargetID": 7747, + "Directional": true + }] + }, { + "ID": 15596, + "SourceStructureID": 67328, + "TargetStructureID": 593, + "Label": "67328-593 via Conventional from 67329 -> 67327", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67329, + "TargetID": 67327, + "Directional": true + }] + }, { + "ID": 15597, + "SourceStructureID": 67328, + "TargetStructureID": 65355, + "Label": "67328-65355 via Conventional from 82801 -> 82802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82801, + "TargetID": 82802, + "Directional": true + }] + }, { + "ID": 15598, + "SourceStructureID": 67337, + "TargetStructureID": 593, + "Label": "67337-593 via Conventional from 67338 -> 7755", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67338, + "TargetID": 7755, + "Directional": true + }] + }, { + "ID": 15599, + "SourceStructureID": 67337, + "TargetStructureID": 67322, + "Label": "67337-67322 via Conventional from 67339 -> 67340", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67339, + "TargetID": 67340, + "Directional": true + }] + }, { + "ID": 15600, + "SourceStructureID": 67341, + "TargetStructureID": 24148, + "Label": "67341-24148 via Conventional from 67393 -> 24151", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67393, + "TargetID": 24151, + "Directional": true + }] + }, { + "ID": 15601, + "SourceStructureID": 67343, + "TargetStructureID": 82806, + "Label": "67343-82806 via Conventional from 67348 -> 82807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67348, + "TargetID": 82807, + "Directional": true + }] + }, { + "ID": 15602, + "SourceStructureID": 67350, + "TargetStructureID": 593, + "Label": "67350-593 via Conventional from 68317 -> 7762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68317, + "TargetID": 7762, + "Directional": true + }] + }, { + "ID": 15603, + "SourceStructureID": 67354, + "TargetStructureID": 67361, + "Label": "67354-67361 via Conventional from 67360 -> 67362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67360, + "TargetID": 67362, + "Directional": true + }] + }, { + "ID": 15604, + "SourceStructureID": 67354, + "TargetStructureID": 91531, + "Label": "67354-91531 via Conventional from 91530 -> 91532", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91530, + "TargetID": 91532, + "Directional": true + }] + }, { + "ID": 15605, + "SourceStructureID": 67354, + "TargetStructureID": 91533, + "Label": "67354-91533 via Conventional from 91529 -> 91534", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91529, + "TargetID": 91534, + "Directional": true + }] + }, { + "ID": 15606, + "SourceStructureID": 67364, + "TargetStructureID": 593, + "Label": "67364-593 via Conventional from 67365 -> 7746", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67365, + "TargetID": 7746, + "Directional": true + }] + }, { + "ID": 15607, + "SourceStructureID": 67375, + "TargetStructureID": 593, + "Label": "67375-593 via Conventional from 67376 -> 67377, 84611 -> 84612", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67376, + "TargetID": 67377, + "Directional": true + }, { + "SourceID": 84611, + "TargetID": 84612, + "Directional": true + }] + }, { + "ID": 15608, + "SourceStructureID": 67375, + "TargetStructureID": 67379, + "Label": "67375-67379 via Conventional from 67378 -> 67380", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67378, + "TargetID": 67380, + "Directional": true + }] + }, { + "ID": 15609, + "SourceStructureID": 67396, + "TargetStructureID": 24148, + "Label": "67396-24148 via Conventional from 67403 -> 24152", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67403, + "TargetID": 24152, + "Directional": true + }] + }, { + "ID": 15610, + "SourceStructureID": 67396, + "TargetStructureID": 67341, + "Label": "67396-67341 via Conventional from 67397 -> 67392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67397, + "TargetID": 67392, + "Directional": true + }] + }, { + "ID": 15611, + "SourceStructureID": 67410, + "TargetStructureID": 593, + "Label": "67410-593 via Conventional from 67411 -> 67409", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67411, + "TargetID": 67409, + "Directional": true + }] + }, { + "ID": 15612, + "SourceStructureID": 67410, + "TargetStructureID": 5562, + "Label": "67410-5562 via Conventional from 67412 -> 63782, 82782 -> 63857", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67412, + "TargetID": 63782, + "Directional": true + }, { + "SourceID": 82782, + "TargetID": 63857, + "Directional": true + }] + }, { + "ID": 15613, + "SourceStructureID": 67423, + "TargetStructureID": 593, + "Label": "67423-593 via Conventional from 67424 -> 49576", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67424, + "TargetID": 49576, + "Directional": true + }] + }, { + "ID": 15614, + "SourceStructureID": 67425, + "TargetStructureID": 67433, + "Label": "67425-67433 via Conventional from 67436 -> 67435", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67436, + "TargetID": 67435, + "Directional": true + }] + }, { + "ID": 15615, + "SourceStructureID": 67438, + "TargetStructureID": 16026, + "Label": "67438-16026 via Conventional from 67439 -> 91046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67439, + "TargetID": 91046, + "Directional": true + }] + }, { + "ID": 15616, + "SourceStructureID": 67444, + "TargetStructureID": 8580, + "Label": "67444-8580 via Conventional from 67446 -> 59652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67446, + "TargetID": 59652, + "Directional": true + }] + }, { + "ID": 15617, + "SourceStructureID": 67452, + "TargetStructureID": 593, + "Label": "67452-593 via Conventional from 67453 -> 67454", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67453, + "TargetID": 67454, + "Directional": true + }] + }, { + "ID": 15618, + "SourceStructureID": 67452, + "TargetStructureID": 67460, + "Label": "67452-67460 via Conventional from 69635 -> 69636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69635, + "TargetID": 69636, + "Directional": true + }] + }, { + "ID": 15619, + "SourceStructureID": 67460, + "TargetStructureID": 593, + "Label": "67460-593 via Conventional from 67463 -> 67464", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67463, + "TargetID": 67464, + "Directional": true + }] + }, { + "ID": 15620, + "SourceStructureID": 67469, + "TargetStructureID": 593, + "Label": "67469-593 via Conventional from 67471 -> 67472", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67471, + "TargetID": 67472, + "Directional": true + }] + }, { + "ID": 15621, + "SourceStructureID": 67469, + "TargetStructureID": 5562, + "Label": "67469-5562 via Conventional from 69677 -> 63733", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69677, + "TargetID": 63733, + "Directional": true + }] + }, { + "ID": 15622, + "SourceStructureID": 67469, + "TargetStructureID": 67460, + "Label": "67469-67460 via Conventional from 67470 -> 67468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67470, + "TargetID": 67468, + "Directional": true + }] + }, { + "ID": 15623, + "SourceStructureID": 67469, + "TargetStructureID": 69679, + "Label": "67469-69679 via Conventional from 69678 -> 69680", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69678, + "TargetID": 69680, + "Directional": true + }] + }, { + "ID": 15624, + "SourceStructureID": 67469, + "TargetStructureID": 69684, + "Label": "67469-69684 via Conventional from 69683 -> 69685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69683, + "TargetID": 69685, + "Directional": true + }] + }, { + "ID": 15625, + "SourceStructureID": 67474, + "TargetStructureID": 593, + "Label": "67474-593 via Conventional from 67477 -> 67475", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67477, + "TargetID": 67475, + "Directional": true + }] + }, { + "ID": 15626, + "SourceStructureID": 67478, + "TargetStructureID": 593, + "Label": "67478-593 via Conventional from 67479 -> 67480", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67479, + "TargetID": 67480, + "Directional": true + }] + }, { + "ID": 15627, + "SourceStructureID": 67488, + "TargetStructureID": 593, + "Label": "67488-593 via Conventional from 67489 -> 7813", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67489, + "TargetID": 7813, + "Directional": true + }] + }, { + "ID": 15628, + "SourceStructureID": 67491, + "TargetStructureID": 5283, + "Label": "67491-5283 via Conventional from 123766 -> 28007", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123766, + "TargetID": 28007, + "Directional": true + }] + }, { + "ID": 15629, + "SourceStructureID": 67491, + "TargetStructureID": 67486, + "Label": "67491-67486 via Conventional from 67492 -> 67490", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67492, + "TargetID": 67490, + "Directional": true + }] + }, { + "ID": 15630, + "SourceStructureID": 67500, + "TargetStructureID": 593, + "Label": "67500-593 via Conventional from 67501 -> 7899", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67501, + "TargetID": 7899, + "Directional": true + }] + }, { + "ID": 15631, + "SourceStructureID": 67506, + "TargetStructureID": 593, + "Label": "67506-593 via Conventional from 67511 -> 67510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67511, + "TargetID": 67510, + "Directional": true + }] + }, { + "ID": 15632, + "SourceStructureID": 67508, + "TargetStructureID": 593, + "Label": "67508-593 via Conventional from 88145 -> 7814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88145, + "TargetID": 7814, + "Directional": true + }] + }, { + "ID": 15633, + "SourceStructureID": 67508, + "TargetStructureID": 8588, + "Label": "67508-8588 via Conventional from 68899 -> 32715", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68899, + "TargetID": 32715, + "Directional": true + }] + }, { + "ID": 15634, + "SourceStructureID": 67508, + "TargetStructureID": 67522, + "Label": "67508-67522 via Conventional from 67524 -> 67525", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67524, + "TargetID": 67525, + "Directional": true + }] + }, { + "ID": 15635, + "SourceStructureID": 67517, + "TargetStructureID": 61836, + "Label": "67517-61836 via Conventional from 67518 -> 67516", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67518, + "TargetID": 67516, + "Directional": true + }] + }, { + "ID": 15636, + "SourceStructureID": 67520, + "TargetStructureID": 61923, + "Label": "67520-61923 via Conventional from 68325 -> 61925", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68325, + "TargetID": 61925, + "Directional": true + }] + }, { + "ID": 15637, + "SourceStructureID": 67520, + "TargetStructureID": 67508, + "Label": "67520-67508 via Conventional from 67521 -> 67519", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67521, + "TargetID": 67519, + "Directional": true + }] + }, { + "ID": 15638, + "SourceStructureID": 67526, + "TargetStructureID": 61836, + "Label": "67526-61836 via Conventional from 67527 -> 67523", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67527, + "TargetID": 67523, + "Directional": true + }] + }, { + "ID": 15639, + "SourceStructureID": 67529, + "TargetStructureID": 593, + "Label": "67529-593 via Conventional from 69357 -> 69359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69357, + "TargetID": 69359, + "Directional": true + }] + }, { + "ID": 15640, + "SourceStructureID": 67529, + "TargetStructureID": 67508, + "Label": "67529-67508 via Conventional from 67530 -> 67528", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67530, + "TargetID": 67528, + "Directional": true + }] + }, { + "ID": 15641, + "SourceStructureID": 67531, + "TargetStructureID": 593, + "Label": "67531-593 via Conventional from 67535 -> 7826", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67535, + "TargetID": 7826, + "Directional": true + }] + }, { + "ID": 15642, + "SourceStructureID": 67548, + "TargetStructureID": 31161, + "Label": "67548-31161 via Conventional from 67550 -> 31247", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67550, + "TargetID": 31247, + "Directional": true + }] + }, { + "ID": 15643, + "SourceStructureID": 67557, + "TargetStructureID": 593, + "Label": "67557-593 via Conventional from 67558 -> 7824", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67558, + "TargetID": 7824, + "Directional": true + }] + }, { + "ID": 15644, + "SourceStructureID": 67572, + "TargetStructureID": 66768, + "Label": "67572-66768 via Conventional from 67573 -> 67571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67573, + "TargetID": 67571, + "Directional": true + }] + }, { + "ID": 15645, + "SourceStructureID": 67575, + "TargetStructureID": 593, + "Label": "67575-593 via Conventional from 67583 -> 67584", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67583, + "TargetID": 67584, + "Directional": true + }] + }, { + "ID": 15646, + "SourceStructureID": 67575, + "TargetStructureID": 1724, + "Label": "67575-1724 via Conventional from 68980 -> 4112", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68980, + "TargetID": 4112, + "Directional": true + }] + }, { + "ID": 15647, + "SourceStructureID": 67575, + "TargetStructureID": 5279, + "Label": "67575-5279 via Conventional from 108361 -> 99111", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108361, + "TargetID": 99111, + "Directional": true + }] + }, { + "ID": 15648, + "SourceStructureID": 67575, + "TargetStructureID": 5513, + "Label": "67575-5513 via Conventional from 68976 -> 46786", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68976, + "TargetID": 46786, + "Directional": true + }] + }, { + "ID": 15649, + "SourceStructureID": 67575, + "TargetStructureID": 67580, + "Label": "67575-67580 via Conventional from 67579 -> 67581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67579, + "TargetID": 67581, + "Directional": true + }] + }, { + "ID": 15650, + "SourceStructureID": 67575, + "TargetStructureID": 68974, + "Label": "67575-68974 via Conventional from 68973 -> 68975", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68973, + "TargetID": 68975, + "Directional": true + }] + }, { + "ID": 15651, + "SourceStructureID": 67585, + "TargetStructureID": 593, + "Label": "67585-593 via Conventional from 67593 -> 67594, 67597 -> 67598", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67593, + "TargetID": 67594, + "Directional": true + }, { + "SourceID": 67597, + "TargetID": 67598, + "Directional": true + }] + }, { + "ID": 15652, + "SourceStructureID": 67585, + "TargetStructureID": 7024, + "Label": "67585-7024 via Conventional from 67613 -> 67612", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67613, + "TargetID": 67612, + "Directional": true + }] + }, { + "ID": 15653, + "SourceStructureID": 67585, + "TargetStructureID": 67190, + "Label": "67585-67190 via Conventional from 67602 -> 67192, 67625 -> 67194", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67602, + "TargetID": 67192, + "Directional": true + }, { + "SourceID": 67625, + "TargetID": 67194, + "Directional": true + }] + }, { + "ID": 15654, + "SourceStructureID": 67585, + "TargetStructureID": 67606, + "Label": "67585-67606 via Conventional from 67605 -> 67607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67605, + "TargetID": 67607, + "Directional": true + }] + }, { + "ID": 15655, + "SourceStructureID": 67585, + "TargetStructureID": 67610, + "Label": "67585-67610 via Conventional from 67609 -> 67611", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67609, + "TargetID": 67611, + "Directional": true + }] + }, { + "ID": 15656, + "SourceStructureID": 67585, + "TargetStructureID": 67615, + "Label": "67585-67615 via Conventional from 67614 -> 67616", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67614, + "TargetID": 67616, + "Directional": true + }] + }, { + "ID": 15657, + "SourceStructureID": 67589, + "TargetStructureID": 67585, + "Label": "67589-67585 via Conventional from 67590 -> 67588", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67590, + "TargetID": 67588, + "Directional": true + }] + }, { + "ID": 15658, + "SourceStructureID": 67591, + "TargetStructureID": 593, + "Label": "67591-593 via Conventional from 67592 -> 7827", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67592, + "TargetID": 7827, + "Directional": true + }] + }, { + "ID": 15659, + "SourceStructureID": 67595, + "TargetStructureID": 593, + "Label": "67595-593 via Conventional from 67596 -> 28445", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67596, + "TargetID": 28445, + "Directional": true + }] + }, { + "ID": 15660, + "SourceStructureID": 67595, + "TargetStructureID": 16026, + "Label": "67595-16026 via Conventional from 67632 -> 67633", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67632, + "TargetID": 67633, + "Directional": true + }] + }, { + "ID": 15661, + "SourceStructureID": 67600, + "TargetStructureID": 67585, + "Label": "67600-67585 via Conventional from 67601 -> 67599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67601, + "TargetID": 67599, + "Directional": true + }] + }, { + "ID": 15662, + "SourceStructureID": 67610, + "TargetStructureID": 7594, + "Label": "67610-7594 via Conventional from 67620 -> 25109", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67620, + "TargetID": 25109, + "Directional": true + }] + }, { + "ID": 15663, + "SourceStructureID": 67618, + "TargetStructureID": 67585, + "Label": "67618-67585 via Conventional from 67619 -> 67617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67619, + "TargetID": 67617, + "Directional": true + }] + }, { + "ID": 15664, + "SourceStructureID": 67621, + "TargetStructureID": 67585, + "Label": "67621-67585 via Conventional from 67622 -> 67623", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67622, + "TargetID": 67623, + "Directional": true + }] + }, { + "ID": 15665, + "SourceStructureID": 67626, + "TargetStructureID": 593, + "Label": "67626-593 via Conventional from 67627 -> 28446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67627, + "TargetID": 28446, + "Directional": true + }] + }, { + "ID": 15666, + "SourceStructureID": 67644, + "TargetStructureID": 67595, + "Label": "67644-67595 via Conventional from 67645 -> 67643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67645, + "TargetID": 67643, + "Directional": true + }] + }, { + "ID": 15667, + "SourceStructureID": 67652, + "TargetStructureID": 67595, + "Label": "67652-67595 via Conventional from 67653 -> 67651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67653, + "TargetID": 67651, + "Directional": true + }] + }, { + "ID": 15668, + "SourceStructureID": 67654, + "TargetStructureID": 67595, + "Label": "67654-67595 via Conventional from 67655 -> 67656", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67655, + "TargetID": 67656, + "Directional": true + }] + }, { + "ID": 15669, + "SourceStructureID": 67669, + "TargetStructureID": 67663, + "Label": "67669-67663 via Conventional from 67670 -> 67668", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67670, + "TargetID": 67668, + "Directional": true + }] + }, { + "ID": 15670, + "SourceStructureID": 67671, + "TargetStructureID": 5645, + "Label": "67671-5645 via Conventional from 78069 -> 78070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78069, + "TargetID": 78070, + "Directional": true + }] + }, { + "ID": 15671, + "SourceStructureID": 67671, + "TargetStructureID": 5649, + "Label": "67671-5649 via Conventional from 76882 -> 76883, 77384 -> 54036", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76882, + "TargetID": 76883, + "Directional": true + }, { + "SourceID": 77384, + "TargetID": 54036, + "Directional": true + }] + }, { + "ID": 15672, + "SourceStructureID": 67671, + "TargetStructureID": 6142, + "Label": "67671-6142 via Conventional from 78281 -> 78282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78281, + "TargetID": 78282, + "Directional": true + }] + }, { + "ID": 15673, + "SourceStructureID": 67671, + "TargetStructureID": 16087, + "Label": "67671-16087 via Conventional from 77702 -> 16097, 78037 -> 16100", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77702, + "TargetID": 16097, + "Directional": true + }, { + "SourceID": 78037, + "TargetID": 16100, + "Directional": true + }] + }, { + "ID": 15674, + "SourceStructureID": 67671, + "TargetStructureID": 67663, + "Label": "67671-67663 via Conventional from 67672 -> 67673", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67672, + "TargetID": 67673, + "Directional": true + }] + }, { + "ID": 15675, + "SourceStructureID": 67671, + "TargetStructureID": 67671, + "Label": "67671-67671 via Conventional from 78209 -> 78210", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78209, + "TargetID": 78210, + "Directional": true + }] + }, { + "ID": 15676, + "SourceStructureID": 67671, + "TargetStructureID": 77359, + "Label": "67671-77359 via Conventional from 77360 -> 77361", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77360, + "TargetID": 77361, + "Directional": true + }] + }, { + "ID": 15677, + "SourceStructureID": 67671, + "TargetStructureID": 77688, + "Label": "67671-77688 via Conventional from 77689 -> 77690", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77689, + "TargetID": 77690, + "Directional": true + }] + }, { + "ID": 15678, + "SourceStructureID": 67671, + "TargetStructureID": 78083, + "Label": "67671-78083 via Conventional from 78082 -> 78085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78082, + "TargetID": 78085, + "Directional": true + }] + }, { + "ID": 15679, + "SourceStructureID": 67671, + "TargetStructureID": 78214, + "Label": "67671-78214 via Conventional from 78215 -> 78216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78215, + "TargetID": 78216, + "Directional": true + }] + }, { + "ID": 15680, + "SourceStructureID": 67683, + "TargetStructureID": 593, + "Label": "67683-593 via Conventional from 69384 -> 7734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69384, + "TargetID": 7734, + "Directional": true + }] + }, { + "ID": 15681, + "SourceStructureID": 67683, + "TargetStructureID": 31161, + "Label": "67683-31161 via Conventional from 67688 -> 31237", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67688, + "TargetID": 31237, + "Directional": true + }] + }, { + "ID": 15682, + "SourceStructureID": 67683, + "TargetStructureID": 67686, + "Label": "67683-67686 via Conventional from 67685 -> 67687", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67685, + "TargetID": 67687, + "Directional": true + }] + }, { + "ID": 15683, + "SourceStructureID": 67701, + "TargetStructureID": 67705, + "Label": "67701-67705 via Conventional from 67704 -> 67706, 75717 -> 75718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67704, + "TargetID": 67706, + "Directional": true + }, { + "SourceID": 75717, + "TargetID": 75718, + "Directional": true + }] + }, { + "ID": 15684, + "SourceStructureID": 67705, + "TargetStructureID": 593, + "Label": "67705-593 via Conventional from 67707 -> 67708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67707, + "TargetID": 67708, + "Directional": true + }] + }, { + "ID": 15685, + "SourceStructureID": 67705, + "TargetStructureID": 5562, + "Label": "67705-5562 via Conventional from 81793 -> 63253, 81798 -> 77544", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81793, + "TargetID": 63253, + "Directional": true + }, { + "SourceID": 81798, + "TargetID": 77544, + "Directional": true + }] + }, { + "ID": 15686, + "SourceStructureID": 67711, + "TargetStructureID": 593, + "Label": "67711-593 via Conventional from 67712 -> 67713", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67712, + "TargetID": 67713, + "Directional": true + }] + }, { + "ID": 15687, + "SourceStructureID": 67711, + "TargetStructureID": 67715, + "Label": "67711-67715 via Conventional from 67714 -> 67716", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67714, + "TargetID": 67716, + "Directional": true + }] + }, { + "ID": 15688, + "SourceStructureID": 67720, + "TargetStructureID": 67711, + "Label": "67720-67711 via Conventional from 67721 -> 67719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67721, + "TargetID": 67719, + "Directional": true + }] + }, { + "ID": 15689, + "SourceStructureID": 67736, + "TargetStructureID": 8580, + "Label": "67736-8580 via Conventional from 67741 -> 67742", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67741, + "TargetID": 67742, + "Directional": true + }] + }, { + "ID": 15690, + "SourceStructureID": 67736, + "TargetStructureID": 66958, + "Label": "67736-66958 via Conventional from 67748 -> 70033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67748, + "TargetID": 70033, + "Directional": true + }] + }, { + "ID": 15691, + "SourceStructureID": 67736, + "TargetStructureID": 67752, + "Label": "67736-67752 via Conventional from 67751 -> 67753", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67751, + "TargetID": 67753, + "Directional": true + }] + }, { + "ID": 15692, + "SourceStructureID": 67736, + "TargetStructureID": 68202, + "Label": "67736-68202 via Conventional from 67748 -> 68204", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67748, + "TargetID": 68204, + "Directional": true + }] + }, { + "ID": 15693, + "SourceStructureID": 67756, + "TargetStructureID": 593, + "Label": "67756-593 via Conventional from 67964 -> 7737", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67964, + "TargetID": 7737, + "Directional": true + }] + }, { + "ID": 15694, + "SourceStructureID": 67756, + "TargetStructureID": 66958, + "Label": "67756-66958 via Conventional from 67757 -> 70024", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67757, + "TargetID": 70024, + "Directional": true + }] + }, { + "ID": 15695, + "SourceStructureID": 67762, + "TargetStructureID": 66958, + "Label": "67762-66958 via Conventional from 67763 -> 70030", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67763, + "TargetID": 70030, + "Directional": true + }] + }, { + "ID": 15696, + "SourceStructureID": 67762, + "TargetStructureID": 67671, + "Label": "67762-67671 via Conventional from 67773 -> 78878", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67773, + "TargetID": 78878, + "Directional": true + }] + }, { + "ID": 15697, + "SourceStructureID": 67762, + "TargetStructureID": 67765, + "Label": "67762-67765 via Conventional from 67764 -> 67766", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67764, + "TargetID": 67766, + "Directional": true + }] + }, { + "ID": 15698, + "SourceStructureID": 67768, + "TargetStructureID": 67765, + "Label": "67768-67765 via Conventional from 67769 -> 67767", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67769, + "TargetID": 67767, + "Directional": true + }] + }, { + "ID": 15699, + "SourceStructureID": 67784, + "TargetStructureID": 67789, + "Label": "67784-67789 via Conventional from 67790 -> 67791", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67790, + "TargetID": 67791, + "Directional": true + }] + }, { + "ID": 15700, + "SourceStructureID": 67786, + "TargetStructureID": 67784, + "Label": "67786-67784 via Conventional from 67787 -> 67788", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67787, + "TargetID": 67788, + "Directional": true + }] + }, { + "ID": 15701, + "SourceStructureID": 67806, + "TargetStructureID": 54078, + "Label": "67806-54078 via Conventional from 67807 -> 67808", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67807, + "TargetID": 67808, + "Directional": true + }] + }, { + "ID": 15702, + "SourceStructureID": 67809, + "TargetStructureID": 593, + "Label": "67809-593 via Conventional from 67810 -> 7833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67810, + "TargetID": 7833, + "Directional": true + }] + }, { + "ID": 15703, + "SourceStructureID": 67815, + "TargetStructureID": 593, + "Label": "67815-593 via Conventional from 67816 -> 7834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67816, + "TargetID": 7834, + "Directional": true + }] + }, { + "ID": 15704, + "SourceStructureID": 67818, + "TargetStructureID": 593, + "Label": "67818-593 via Conventional from 67819 -> 67817", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67819, + "TargetID": 67817, + "Directional": true + }] + }, { + "ID": 15705, + "SourceStructureID": 67818, + "TargetStructureID": 16026, + "Label": "67818-16026 via Conventional from 67909 -> 67910", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67909, + "TargetID": 67910, + "Directional": true + }] + }, { + "ID": 15706, + "SourceStructureID": 67823, + "TargetStructureID": 593, + "Label": "67823-593 via Conventional from 67824 -> 28409", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67824, + "TargetID": 28409, + "Directional": true + }] + }, { + "ID": 15707, + "SourceStructureID": 67827, + "TargetStructureID": 593, + "Label": "67827-593 via Conventional from 67828 -> 28410", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67828, + "TargetID": 28410, + "Directional": true + }] + }, { + "ID": 15708, + "SourceStructureID": 67829, + "TargetStructureID": 593, + "Label": "67829-593 via Conventional from 67830 -> 62881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67830, + "TargetID": 62881, + "Directional": true + }] + }, { + "ID": 15709, + "SourceStructureID": 67829, + "TargetStructureID": 67812, + "Label": "67829-67812 via Conventional from 67831 -> 67832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67831, + "TargetID": 67832, + "Directional": true + }] + }, { + "ID": 15710, + "SourceStructureID": 67829, + "TargetStructureID": 82201, + "Label": "67829-82201 via Conventional from 82200 -> 82202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82200, + "TargetID": 82202, + "Directional": true + }] + }, { + "ID": 15711, + "SourceStructureID": 67833, + "TargetStructureID": 593, + "Label": "67833-593 via Conventional from 67834 -> 28412", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67834, + "TargetID": 28412, + "Directional": true + }] + }, { + "ID": 15712, + "SourceStructureID": 67833, + "TargetStructureID": 68009, + "Label": "67833-68009 via Conventional from 67838 -> 68012", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67838, + "TargetID": 68012, + "Directional": true + }] + }, { + "ID": 15713, + "SourceStructureID": 67836, + "TargetStructureID": 67833, + "Label": "67836-67833 via Conventional from 67837 -> 67835", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67837, + "TargetID": 67835, + "Directional": true + }] + }, { + "ID": 15714, + "SourceStructureID": 67846, + "TargetStructureID": 593, + "Label": "67846-593 via Conventional from 67847 -> 67845", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67847, + "TargetID": 67845, + "Directional": true + }] + }, { + "ID": 15715, + "SourceStructureID": 67851, + "TargetStructureID": 8580, + "Label": "67851-8580 via Conventional from 67855 -> 59656", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67855, + "TargetID": 59656, + "Directional": true + }] + }, { + "ID": 15716, + "SourceStructureID": 67851, + "TargetStructureID": 54078, + "Label": "67851-54078 via Conventional from 67852 -> 67850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67852, + "TargetID": 67850, + "Directional": true + }] + }, { + "ID": 15717, + "SourceStructureID": 67854, + "TargetStructureID": 593, + "Label": "67854-593 via Conventional from 67856 -> 52489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67856, + "TargetID": 52489, + "Directional": true + }] + }, { + "ID": 15718, + "SourceStructureID": 67868, + "TargetStructureID": 593, + "Label": "67868-593 via Conventional from 67869 -> 67870", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67869, + "TargetID": 67870, + "Directional": true + }] + }, { + "ID": 15719, + "SourceStructureID": 67871, + "TargetStructureID": 593, + "Label": "67871-593 via Conventional from 67882 -> 7837", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67882, + "TargetID": 7837, + "Directional": true + }] + }, { + "ID": 15720, + "SourceStructureID": 67883, + "TargetStructureID": 593, + "Label": "67883-593 via Conventional from 67884 -> 67885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67884, + "TargetID": 67885, + "Directional": true + }] + }, { + "ID": 15721, + "SourceStructureID": 67886, + "TargetStructureID": 593, + "Label": "67886-593 via Conventional from 67889 -> 7839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67889, + "TargetID": 7839, + "Directional": true + }] + }, { + "ID": 15722, + "SourceStructureID": 67890, + "TargetStructureID": 593, + "Label": "67890-593 via Conventional from 67891 -> 7841", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67891, + "TargetID": 7841, + "Directional": true + }] + }, { + "ID": 15723, + "SourceStructureID": 67894, + "TargetStructureID": 593, + "Label": "67894-593 via Conventional from 67895 -> 67896", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67895, + "TargetID": 67896, + "Directional": true + }] + }, { + "ID": 15724, + "SourceStructureID": 67894, + "TargetStructureID": 5649, + "Label": "67894-5649 via Conventional from 82236 -> 68110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82236, + "TargetID": 68110, + "Directional": true + }] + }, { + "ID": 15725, + "SourceStructureID": 67915, + "TargetStructureID": 593, + "Label": "67915-593 via Conventional from 67928 -> 67929", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67928, + "TargetID": 67929, + "Directional": true + }] + }, { + "ID": 15726, + "SourceStructureID": 67915, + "TargetStructureID": 67932, + "Label": "67915-67932 via Conventional from 67930 -> 67935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67930, + "TargetID": 67935, + "Directional": true + }] + }, { + "ID": 15727, + "SourceStructureID": 67915, + "TargetStructureID": 82241, + "Label": "67915-82241 via Conventional from 82240 -> 82242", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82240, + "TargetID": 82242, + "Directional": true + }] + }, { + "ID": 15728, + "SourceStructureID": 67918, + "TargetStructureID": 20136, + "Label": "67918-20136 via Conventional from 67949 -> 29143", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67949, + "TargetID": 29143, + "Directional": true + }] + }, { + "ID": 15729, + "SourceStructureID": 67933, + "TargetStructureID": 67937, + "Label": "67933-67937 via Conventional from 67936 -> 67938", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67936, + "TargetID": 67938, + "Directional": true + }] + }, { + "ID": 15730, + "SourceStructureID": 67947, + "TargetStructureID": 593, + "Label": "67947-593 via Conventional from 68086 -> 53821", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68086, + "TargetID": 53821, + "Directional": true + }] + }, { + "ID": 15731, + "SourceStructureID": 67947, + "TargetStructureID": 16026, + "Label": "67947-16026 via Conventional from 68088 -> 25670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68088, + "TargetID": 25670, + "Directional": true + }] + }, { + "ID": 15732, + "SourceStructureID": 67952, + "TargetStructureID": 593, + "Label": "67952-593 via Conventional from 67954 -> 7739", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67954, + "TargetID": 7739, + "Directional": true + }] + }, { + "ID": 15733, + "SourceStructureID": 67970, + "TargetStructureID": 593, + "Label": "67970-593 via Conventional from 67971 -> 67972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67971, + "TargetID": 67972, + "Directional": true + }] + }, { + "ID": 15734, + "SourceStructureID": 67978, + "TargetStructureID": 593, + "Label": "67978-593 via Conventional from 67979 -> 67980", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67979, + "TargetID": 67980, + "Directional": true + }] + }, { + "ID": 15735, + "SourceStructureID": 67983, + "TargetStructureID": 593, + "Label": "67983-593 via Conventional from 67984 -> 67985", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67984, + "TargetID": 67985, + "Directional": true + }] + }, { + "ID": 15736, + "SourceStructureID": 67983, + "TargetStructureID": 67981, + "Label": "67983-67981 via Conventional from 67988 -> 67989", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67988, + "TargetID": 67989, + "Directional": true + }] + }, { + "ID": 15737, + "SourceStructureID": 67996, + "TargetStructureID": 67999, + "Label": "67996-67999 via Conventional from 67998 -> 68000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 67998, + "TargetID": 68000, + "Directional": true + }] + }, { + "ID": 15738, + "SourceStructureID": 67999, + "TargetStructureID": 87972, + "Label": "67999-87972 via Conventional from 68001 -> 88010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68001, + "TargetID": 88010, + "Directional": true + }] + }, { + "ID": 15739, + "SourceStructureID": 68003, + "TargetStructureID": 593, + "Label": "68003-593 via Conventional from 68004 -> 52486", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68004, + "TargetID": 52486, + "Directional": true + }] + }, { + "ID": 15740, + "SourceStructureID": 68003, + "TargetStructureID": 67829, + "Label": "68003-67829 via Conventional from 68005 -> 82199", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68005, + "TargetID": 82199, + "Directional": true + }] + }, { + "ID": 15741, + "SourceStructureID": 68009, + "TargetStructureID": 593, + "Label": "68009-593 via Conventional from 68013 -> 52485", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68013, + "TargetID": 52485, + "Directional": true + }] + }, { + "ID": 15742, + "SourceStructureID": 68009, + "TargetStructureID": 69003, + "Label": "68009-69003 via Conventional from 69004 -> 69005", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69004, + "TargetID": 69005, + "Directional": true + }] + }, { + "ID": 15743, + "SourceStructureID": 68020, + "TargetStructureID": 593, + "Label": "68020-593 via Conventional from 68021 -> 68022", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68021, + "TargetID": 68022, + "Directional": true + }] + }, { + "ID": 15744, + "SourceStructureID": 68023, + "TargetStructureID": 593, + "Label": "68023-593 via Conventional from 68024 -> 68025", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68024, + "TargetID": 68025, + "Directional": true + }] + }, { + "ID": 15745, + "SourceStructureID": 68023, + "TargetStructureID": 68031, + "Label": "68023-68031 via Conventional from 68034 -> 68035", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68034, + "TargetID": 68035, + "Directional": true + }] + }, { + "ID": 15746, + "SourceStructureID": 68031, + "TargetStructureID": 68037, + "Label": "68031-68037 via Conventional from 68036 -> 68038", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68036, + "TargetID": 68038, + "Directional": true + }] + }, { + "ID": 15747, + "SourceStructureID": 68042, + "TargetStructureID": 6156, + "Label": "68042-6156 via Conventional from 68052 -> 68053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68052, + "TargetID": 68053, + "Directional": true + }] + }, { + "ID": 15748, + "SourceStructureID": 68042, + "TargetStructureID": 10897, + "Label": "68042-10897 via Conventional from 68044 -> 68045, 68046 -> 68047", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68044, + "TargetID": 68045, + "Directional": true + }, { + "SourceID": 68046, + "TargetID": 68047, + "Directional": true + }] + }, { + "ID": 15749, + "SourceStructureID": 68056, + "TargetStructureID": 593, + "Label": "68056-593 via Conventional from 68057 -> 68058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68057, + "TargetID": 68058, + "Directional": true + }] + }, { + "ID": 15750, + "SourceStructureID": 68068, + "TargetStructureID": 593, + "Label": "68068-593 via Conventional from 68069 -> 68070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68069, + "TargetID": 68070, + "Directional": true + }] + }, { + "ID": 15751, + "SourceStructureID": 68072, + "TargetStructureID": 593, + "Label": "68072-593 via Conventional from 68076 -> 52480", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68076, + "TargetID": 52480, + "Directional": true + }] + }, { + "ID": 15752, + "SourceStructureID": 68093, + "TargetStructureID": 5284, + "Label": "68093-5284 via Conventional from 68129 -> 68131", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68129, + "TargetID": 68131, + "Directional": true + }] + }, { + "ID": 15753, + "SourceStructureID": 68096, + "TargetStructureID": 68093, + "Label": "68096-68093 via Conventional from 68097 -> 68095", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68097, + "TargetID": 68095, + "Directional": true + }] + }, { + "ID": 15754, + "SourceStructureID": 68144, + "TargetStructureID": 593, + "Label": "68144-593 via Conventional from 68145 -> 68146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68145, + "TargetID": 68146, + "Directional": true + }] + }, { + "ID": 15755, + "SourceStructureID": 68144, + "TargetStructureID": 68148, + "Label": "68144-68148 via Conventional from 68147 -> 68149", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68147, + "TargetID": 68149, + "Directional": true + }] + }, { + "ID": 15756, + "SourceStructureID": 68161, + "TargetStructureID": 68153, + "Label": "68161-68153 via Conventional from 68165 -> 68166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68165, + "TargetID": 68166, + "Directional": true + }] + }, { + "ID": 15757, + "SourceStructureID": 68183, + "TargetStructureID": 68153, + "Label": "68183-68153 via Conventional from 68184 -> 68182", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68184, + "TargetID": 68182, + "Directional": true + }] + }, { + "ID": 15758, + "SourceStructureID": 68188, + "TargetStructureID": 68192, + "Label": "68188-68192 via Conventional from 68191 -> 68193", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68191, + "TargetID": 68193, + "Directional": true + }] + }, { + "ID": 15759, + "SourceStructureID": 68195, + "TargetStructureID": 68188, + "Label": "68195-68188 via Conventional from 68196 -> 68194", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68196, + "TargetID": 68194, + "Directional": true + }] + }, { + "ID": 15760, + "SourceStructureID": 68202, + "TargetStructureID": 593, + "Label": "68202-593 via Conventional from 68203 -> 53819", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68203, + "TargetID": 53819, + "Directional": true + }] + }, { + "ID": 15761, + "SourceStructureID": 68210, + "TargetStructureID": 593, + "Label": "68210-593 via Conventional from 68211 -> 68212, 68216 -> 7765", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68211, + "TargetID": 68212, + "Directional": true + }, { + "SourceID": 68216, + "TargetID": 7765, + "Directional": true + }] + }, { + "ID": 15762, + "SourceStructureID": 68214, + "TargetStructureID": 68210, + "Label": "68214-68210 via Adherens from 68215 -> 68213", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 68215, + "TargetID": 68213, + "Directional": true + }] + }, { + "ID": 15763, + "SourceStructureID": 68232, + "TargetStructureID": 593, + "Label": "68232-593 via Conventional from 68233 -> 68234", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68233, + "TargetID": 68234, + "Directional": true + }] + }, { + "ID": 15764, + "SourceStructureID": 68232, + "TargetStructureID": 6156, + "Label": "68232-6156 via Conventional from 82304 -> 28687", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82304, + "TargetID": 28687, + "Directional": true + }] + }, { + "ID": 15765, + "SourceStructureID": 68232, + "TargetStructureID": 68087, + "Label": "68232-68087 via Conventional from 68235 -> 68229", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68235, + "TargetID": 68229, + "Directional": true + }] + }, { + "ID": 15766, + "SourceStructureID": 68232, + "TargetStructureID": 68655, + "Label": "68232-68655 via Conventional from 68654 -> 68656", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68654, + "TargetID": 68656, + "Directional": true + }] + }, { + "ID": 15767, + "SourceStructureID": 68232, + "TargetStructureID": 82302, + "Label": "68232-82302 via Conventional from 82301 -> 82303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82301, + "TargetID": 82303, + "Directional": true + }] + }, { + "ID": 15768, + "SourceStructureID": 68238, + "TargetStructureID": 593, + "Label": "68238-593 via Conventional from 68240 -> 52468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68240, + "TargetID": 52468, + "Directional": true + }] + }, { + "ID": 15769, + "SourceStructureID": 68239, + "TargetStructureID": 5117, + "Label": "68239-5117 via Conventional from 68247 -> 61806", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68247, + "TargetID": 61806, + "Directional": true + }] + }, { + "ID": 15770, + "SourceStructureID": 68249, + "TargetStructureID": 593, + "Label": "68249-593 via Conventional from 68250 -> 68251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68250, + "TargetID": 68251, + "Directional": true + }] + }, { + "ID": 15771, + "SourceStructureID": 68249, + "TargetStructureID": 8588, + "Label": "68249-8588 via Conventional from 82284 -> 82285", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82284, + "TargetID": 82285, + "Directional": true + }] + }, { + "ID": 15772, + "SourceStructureID": 68249, + "TargetStructureID": 82281, + "Label": "68249-82281 via Conventional from 82280 -> 82282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82280, + "TargetID": 82282, + "Directional": true + }] + }, { + "ID": 15773, + "SourceStructureID": 68261, + "TargetStructureID": 593, + "Label": "68261-593 via Conventional from 68262 -> 68260", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68262, + "TargetID": 68260, + "Directional": true + }] + }, { + "ID": 15774, + "SourceStructureID": 68263, + "TargetStructureID": 593, + "Label": "68263-593 via Conventional from 68264 -> 68265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68264, + "TargetID": 68265, + "Directional": true + }] + }, { + "ID": 15775, + "SourceStructureID": 68266, + "TargetStructureID": 593, + "Label": "68266-593 via Conventional from 68267 -> 68268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68267, + "TargetID": 68268, + "Directional": true + }] + }, { + "ID": 15776, + "SourceStructureID": 68266, + "TargetStructureID": 6156, + "Label": "68266-6156 via Conventional from 68270 -> 68271", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68270, + "TargetID": 68271, + "Directional": true + }] + }, { + "ID": 15777, + "SourceStructureID": 68273, + "TargetStructureID": 593, + "Label": "68273-593 via Conventional from 68274 -> 68276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68274, + "TargetID": 68276, + "Directional": true + }] + }, { + "ID": 15778, + "SourceStructureID": 68282, + "TargetStructureID": 593, + "Label": "68282-593 via Conventional from 68283 -> 52450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68283, + "TargetID": 52450, + "Directional": true + }] + }, { + "ID": 15779, + "SourceStructureID": 68282, + "TargetStructureID": 6997, + "Label": "68282-6997 via Conventional from 82365 -> 28711", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82365, + "TargetID": 28711, + "Directional": true + }] + }, { + "ID": 15780, + "SourceStructureID": 68286, + "TargetStructureID": 593, + "Label": "68286-593 via Conventional from 68287 -> 68288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68287, + "TargetID": 68288, + "Directional": true + }] + }, { + "ID": 15781, + "SourceStructureID": 68286, + "TargetStructureID": 6997, + "Label": "68286-6997 via Conventional from 80649 -> 28709, 80668 -> 95489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80649, + "TargetID": 28709, + "Directional": true + }, { + "SourceID": 80668, + "TargetID": 95489, + "Directional": true + }] + }, { + "ID": 15782, + "SourceStructureID": 68286, + "TargetStructureID": 80663, + "Label": "68286-80663 via Conventional from 80662 -> 80664", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80662, + "TargetID": 80664, + "Directional": true + }] + }, { + "ID": 15783, + "SourceStructureID": 68289, + "TargetStructureID": 593, + "Label": "68289-593 via Conventional from 68290 -> 68291", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68290, + "TargetID": 68291, + "Directional": true + }] + }, { + "ID": 15784, + "SourceStructureID": 68292, + "TargetStructureID": 593, + "Label": "68292-593 via Conventional from 68294 -> 68295, 87617 -> 87618", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68294, + "TargetID": 68295, + "Directional": true + }, { + "SourceID": 87617, + "TargetID": 87618, + "Directional": true + }] + }, { + "ID": 15785, + "SourceStructureID": 68296, + "TargetStructureID": 593, + "Label": "68296-593 via Conventional from 68298 -> 68299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68298, + "TargetID": 68299, + "Directional": true + }] + }, { + "ID": 15786, + "SourceStructureID": 68302, + "TargetStructureID": 593, + "Label": "68302-593 via Conventional from 68303 -> 68304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68303, + "TargetID": 68304, + "Directional": true + }] + }, { + "ID": 15787, + "SourceStructureID": 68302, + "TargetStructureID": 6997, + "Label": "68302-6997 via Conventional from 80633 -> 61173, 82939 -> 22114, 136280 -> 136279", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80633, + "TargetID": 61173, + "Directional": true + }, { + "SourceID": 82939, + "TargetID": 22114, + "Directional": true + }, { + "SourceID": 136280, + "TargetID": 136279, + "Directional": true + }] + }, { + "ID": 15788, + "SourceStructureID": 68302, + "TargetStructureID": 68306, + "Label": "68302-68306 via Conventional from 68305 -> 68307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68305, + "TargetID": 68307, + "Directional": true + }] + }, { + "ID": 15789, + "SourceStructureID": 68302, + "TargetStructureID": 70868, + "Label": "68302-70868 via Conventional from 82937 -> 70884", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82937, + "TargetID": 70884, + "Directional": true + }] + }, { + "ID": 15790, + "SourceStructureID": 68302, + "TargetStructureID": 78303, + "Label": "68302-78303 via Conventional from 82928 -> 78304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82928, + "TargetID": 78304, + "Directional": true + }] + }, { + "ID": 15791, + "SourceStructureID": 68318, + "TargetStructureID": 31024, + "Label": "68318-31024 via Conventional from 68319 -> 31033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68319, + "TargetID": 31033, + "Directional": true + }] + }, { + "ID": 15792, + "SourceStructureID": 68337, + "TargetStructureID": 61793, + "Label": "68337-61793 via Conventional from 68338 -> 61796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68338, + "TargetID": 61796, + "Directional": true + }] + }, { + "ID": 15793, + "SourceStructureID": 68341, + "TargetStructureID": 593, + "Label": "68341-593 via Conventional from 68342 -> 7750", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68342, + "TargetID": 7750, + "Directional": true + }] + }, { + "ID": 15794, + "SourceStructureID": 68341, + "TargetStructureID": 67430, + "Label": "68341-67430 via Conventional from 82732 -> 70031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82732, + "TargetID": 70031, + "Directional": true + }] + }, { + "ID": 15795, + "SourceStructureID": 68341, + "TargetStructureID": 79586, + "Label": "68341-79586 via Conventional from 80625 -> 79599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80625, + "TargetID": 79599, + "Directional": true + }] + }, { + "ID": 15796, + "SourceStructureID": 68350, + "TargetStructureID": 593, + "Label": "68350-593 via Conventional from 68351 -> 68349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68351, + "TargetID": 68349, + "Directional": true + }] + }, { + "ID": 15797, + "SourceStructureID": 68350, + "TargetStructureID": 61791, + "Label": "68350-61791 via Conventional from 80614 -> 68884", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80614, + "TargetID": 68884, + "Directional": true + }] + }, { + "ID": 15798, + "SourceStructureID": 68350, + "TargetStructureID": 80616, + "Label": "68350-80616 via Conventional from 80615 -> 80617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80615, + "TargetID": 80617, + "Directional": true + }] + }, { + "ID": 15799, + "SourceStructureID": 68356, + "TargetStructureID": 67291, + "Label": "68356-67291 via Conventional from 68357 -> 68355", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68357, + "TargetID": 68355, + "Directional": true + }] + }, { + "ID": 15800, + "SourceStructureID": 68359, + "TargetStructureID": 67291, + "Label": "68359-67291 via Conventional from 68360 -> 68358", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68360, + "TargetID": 68358, + "Directional": true + }] + }, { + "ID": 15801, + "SourceStructureID": 68366, + "TargetStructureID": 67291, + "Label": "68366-67291 via Conventional from 68367 -> 68365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68367, + "TargetID": 68365, + "Directional": true + }] + }, { + "ID": 15802, + "SourceStructureID": 68380, + "TargetStructureID": 66407, + "Label": "68380-66407 via Conventional from 68381 -> 68379", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68381, + "TargetID": 68379, + "Directional": true + }] + }, { + "ID": 15803, + "SourceStructureID": 68391, + "TargetStructureID": 593, + "Label": "68391-593 via Conventional from 68392 -> 15898", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68392, + "TargetID": 15898, + "Directional": true + }] + }, { + "ID": 15804, + "SourceStructureID": 68393, + "TargetStructureID": 593, + "Label": "68393-593 via Conventional from 68394 -> 28398", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68394, + "TargetID": 28398, + "Directional": true + }] + }, { + "ID": 15805, + "SourceStructureID": 68393, + "TargetStructureID": 61868, + "Label": "68393-61868 via Conventional from 80543 -> 82187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80543, + "TargetID": 82187, + "Directional": true + }] + }, { + "ID": 15806, + "SourceStructureID": 68393, + "TargetStructureID": 80548, + "Label": "68393-80548 via Conventional from 80547 -> 80549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80547, + "TargetID": 80549, + "Directional": true + }] + }, { + "ID": 15807, + "SourceStructureID": 68395, + "TargetStructureID": 593, + "Label": "68395-593 via Conventional from 68396 -> 28397", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68396, + "TargetID": 28397, + "Directional": true + }] + }, { + "ID": 15808, + "SourceStructureID": 68430, + "TargetStructureID": 593, + "Label": "68430-593 via Conventional from 68431 -> 50437", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68431, + "TargetID": 50437, + "Directional": true + }] + }, { + "ID": 15809, + "SourceStructureID": 68444, + "TargetStructureID": 593, + "Label": "68444-593 via Conventional from 68447 -> 28435", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68447, + "TargetID": 28435, + "Directional": true + }] + }, { + "ID": 15810, + "SourceStructureID": 68444, + "TargetStructureID": 5283, + "Label": "68444-5283 via Conventional from 80426 -> 80427, 80474 -> 28090, 80480 -> 28093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80426, + "TargetID": 80427, + "Directional": true + }, { + "SourceID": 80474, + "TargetID": 28090, + "Directional": true + }, { + "SourceID": 80480, + "TargetID": 28093, + "Directional": true + }] + }, { + "ID": 15811, + "SourceStructureID": 68444, + "TargetStructureID": 16026, + "Label": "68444-16026 via Conventional from 80432 -> 24098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80432, + "TargetID": 24098, + "Directional": true + }] + }, { + "ID": 15812, + "SourceStructureID": 68444, + "TargetStructureID": 43431, + "Label": "68444-43431 via Conventional from 80457 -> 43443", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80457, + "TargetID": 43443, + "Directional": true + }] + }, { + "ID": 15813, + "SourceStructureID": 68444, + "TargetStructureID": 66111, + "Label": "68444-66111 via Conventional from 68467 -> 68468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68467, + "TargetID": 68468, + "Directional": true + }] + }, { + "ID": 15814, + "SourceStructureID": 68444, + "TargetStructureID": 68214, + "Label": "68444-68214 via Conventional from 68445 -> 68446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68445, + "TargetID": 68446, + "Directional": true + }] + }, { + "ID": 15815, + "SourceStructureID": 68444, + "TargetStructureID": 80453, + "Label": "68444-80453 via Conventional from 80452 -> 80454", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80452, + "TargetID": 80454, + "Directional": true + }] + }, { + "ID": 15816, + "SourceStructureID": 68444, + "TargetStructureID": 80459, + "Label": "68444-80459 via Conventional from 80458 -> 80460", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80458, + "TargetID": 80460, + "Directional": true + }] + }, { + "ID": 15817, + "SourceStructureID": 68456, + "TargetStructureID": 68453, + "Label": "68456-68453 via Conventional from 68457 -> 68455", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68457, + "TargetID": 68455, + "Directional": true + }] + }, { + "ID": 15818, + "SourceStructureID": 68463, + "TargetStructureID": 593, + "Label": "68463-593 via Conventional from 68464 -> 63030", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68464, + "TargetID": 63030, + "Directional": true + }] + }, { + "ID": 15819, + "SourceStructureID": 68480, + "TargetStructureID": 593, + "Label": "68480-593 via Conventional from 68481 -> 63027, 84099 -> 63031, 84113 -> 49571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68481, + "TargetID": 63027, + "Directional": true + }, { + "SourceID": 84099, + "TargetID": 63031, + "Directional": true + }, { + "SourceID": 84113, + "TargetID": 49571, + "Directional": true + }] + }, { + "ID": 15820, + "SourceStructureID": 68480, + "TargetStructureID": 5562, + "Label": "68480-5562 via Conventional from 79634 -> 77571, 84035 -> 31294, 84046 -> 77148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79634, + "TargetID": 77571, + "Directional": true + }, { + "SourceID": 84035, + "TargetID": 31294, + "Directional": true + }, { + "SourceID": 84046, + "TargetID": 77148, + "Directional": true + }] + }, { + "ID": 15821, + "SourceStructureID": 68480, + "TargetStructureID": 5916, + "Label": "68480-5916 via Conventional from 83373 -> 83374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83373, + "TargetID": 83374, + "Directional": true + }] + }, { + "ID": 15822, + "SourceStructureID": 68480, + "TargetStructureID": 16026, + "Label": "68480-16026 via Conventional from 79616 -> 79617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79616, + "TargetID": 79617, + "Directional": true + }] + }, { + "ID": 15823, + "SourceStructureID": 68480, + "TargetStructureID": 63199, + "Label": "68480-63199 via Conventional from 83275 -> 83276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83275, + "TargetID": 83276, + "Directional": true + }] + }, { + "ID": 15824, + "SourceStructureID": 68480, + "TargetStructureID": 77143, + "Label": "68480-77143 via Conventional from 84042 -> 84043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84042, + "TargetID": 84043, + "Directional": true + }] + }, { + "ID": 15825, + "SourceStructureID": 68486, + "TargetStructureID": 593, + "Label": "68486-593 via Conventional from 68487 -> 7732", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68487, + "TargetID": 7732, + "Directional": true + }] + }, { + "ID": 15826, + "SourceStructureID": 68486, + "TargetStructureID": 31161, + "Label": "68486-31161 via Conventional from 79605 -> 31238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79605, + "TargetID": 31238, + "Directional": true + }] + }, { + "ID": 15827, + "SourceStructureID": 68486, + "TargetStructureID": 69537, + "Label": "68486-69537 via Conventional from 79612 -> 79615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79612, + "TargetID": 79615, + "Directional": true + }] + }, { + "ID": 15828, + "SourceStructureID": 68488, + "TargetStructureID": 593, + "Label": "68488-593 via Conventional from 68489 -> 7730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68489, + "TargetID": 7730, + "Directional": true + }] + }, { + "ID": 15829, + "SourceStructureID": 68492, + "TargetStructureID": 593, + "Label": "68492-593 via Conventional from 68493 -> 7729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68493, + "TargetID": 7729, + "Directional": true + }] + }, { + "ID": 15830, + "SourceStructureID": 68497, + "TargetStructureID": 593, + "Label": "68497-593 via Conventional from 68498 -> 7728", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68498, + "TargetID": 7728, + "Directional": true + }] + }, { + "ID": 15831, + "SourceStructureID": 68497, + "TargetStructureID": 5107, + "Label": "68497-5107 via Conventional from 81578 -> 43683", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81578, + "TargetID": 43683, + "Directional": true + }] + }, { + "ID": 15832, + "SourceStructureID": 68497, + "TargetStructureID": 5649, + "Label": "68497-5649 via Conventional from 81583 -> 81585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81583, + "TargetID": 81585, + "Directional": true + }] + }, { + "ID": 15833, + "SourceStructureID": 68497, + "TargetStructureID": 79319, + "Label": "68497-79319 via Conventional from 79318 -> 79320", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79318, + "TargetID": 79320, + "Directional": true + }] + }, { + "ID": 15834, + "SourceStructureID": 68497, + "TargetStructureID": 79361, + "Label": "68497-79361 via Conventional from 79360 -> 79362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79360, + "TargetID": 79362, + "Directional": true + }] + }, { + "ID": 15835, + "SourceStructureID": 68497, + "TargetStructureID": 79373, + "Label": "68497-79373 via Conventional from 79357 -> 81600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79357, + "TargetID": 81600, + "Directional": true + }] + }, { + "ID": 15836, + "SourceStructureID": 68497, + "TargetStructureID": 79450, + "Label": "68497-79450 via Conventional from 79445 -> 79451", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79445, + "TargetID": 79451, + "Directional": true + }] + }, { + "ID": 15837, + "SourceStructureID": 68497, + "TargetStructureID": 79453, + "Label": "68497-79453 via Conventional from 79452 -> 79454", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79452, + "TargetID": 79454, + "Directional": true + }] + }, { + "ID": 15838, + "SourceStructureID": 68497, + "TargetStructureID": 79481, + "Label": "68497-79481 via Conventional from 79480 -> 79482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79480, + "TargetID": 79482, + "Directional": true + }] + }, { + "ID": 15839, + "SourceStructureID": 68497, + "TargetStructureID": 79484, + "Label": "68497-79484 via Conventional from 79483 -> 79486", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79483, + "TargetID": 79486, + "Directional": true + }] + }, { + "ID": 15840, + "SourceStructureID": 68501, + "TargetStructureID": 593, + "Label": "68501-593 via Conventional from 68502 -> 7742", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68502, + "TargetID": 7742, + "Directional": true + }] + }, { + "ID": 15841, + "SourceStructureID": 68504, + "TargetStructureID": 593, + "Label": "68504-593 via Conventional from 68505 -> 7743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68505, + "TargetID": 7743, + "Directional": true + }] + }, { + "ID": 15842, + "SourceStructureID": 68504, + "TargetStructureID": 16026, + "Label": "68504-16026 via Conventional from 79250 -> 79251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79250, + "TargetID": 79251, + "Directional": true + }] + }, { + "ID": 15843, + "SourceStructureID": 68516, + "TargetStructureID": 68524, + "Label": "68516-68524 via Conventional from 68523 -> 68525", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68523, + "TargetID": 68525, + "Directional": true + }] + }, { + "ID": 15844, + "SourceStructureID": 68531, + "TargetStructureID": 68537, + "Label": "68531-68537 via Conventional from 68536 -> 68538", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68536, + "TargetID": 68538, + "Directional": true + }] + }, { + "ID": 15845, + "SourceStructureID": 68539, + "TargetStructureID": 35894, + "Label": "68539-35894 via Cistern Pre from 73057 -> 35924", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 73057, + "TargetID": 35924, + "Directional": true + }] + }, { + "ID": 15846, + "SourceStructureID": 68548, + "TargetStructureID": 5107, + "Label": "68548-5107 via Conventional from 73165 -> 43679", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73165, + "TargetID": 43679, + "Directional": true + }] + }, { + "ID": 15847, + "SourceStructureID": 68548, + "TargetStructureID": 6115, + "Label": "68548-6115 via Adherens from 75996 -> 75997", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 75996, + "TargetID": 75997, + "Directional": true + }] + }, { + "ID": 15848, + "SourceStructureID": 68548, + "TargetStructureID": 7594, + "Label": "68548-7594 via Conventional from 73161 -> 25094", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73161, + "TargetID": 25094, + "Directional": true + }] + }, { + "ID": 15849, + "SourceStructureID": 68548, + "TargetStructureID": 30130, + "Label": "68548-30130 via Conventional from 73478 -> 30279", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73478, + "TargetID": 30279, + "Directional": true + }] + }, { + "ID": 15850, + "SourceStructureID": 68548, + "TargetStructureID": 43712, + "Label": "68548-43712 via Conventional from 68582 -> 68583", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68582, + "TargetID": 68583, + "Directional": true + }] + }, { + "ID": 15851, + "SourceStructureID": 68548, + "TargetStructureID": 61823, + "Label": "68548-61823 via Conventional from 73559 -> 64615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73559, + "TargetID": 64615, + "Directional": true + }] + }, { + "ID": 15852, + "SourceStructureID": 68548, + "TargetStructureID": 67701, + "Label": "68548-67701 via Conventional from 73566 -> 67702, 73567 -> 67703", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73566, + "TargetID": 67702, + "Directional": true + }, { + "SourceID": 73567, + "TargetID": 67703, + "Directional": true + }] + }, { + "ID": 15853, + "SourceStructureID": 68548, + "TargetStructureID": 68539, + "Label": "68548-68539 via Conventional from 68587 -> 68588, 73544 -> 73545", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68587, + "TargetID": 68588, + "Directional": true + }, { + "SourceID": 73544, + "TargetID": 73545, + "Directional": true + }] + }, { + "ID": 15854, + "SourceStructureID": 68548, + "TargetStructureID": 68555, + "Label": "68548-68555 via Conventional from 68554 -> 68556", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68554, + "TargetID": 68556, + "Directional": true + }] + }, { + "ID": 15855, + "SourceStructureID": 68548, + "TargetStructureID": 73500, + "Label": "68548-73500 via Conventional from 73501 -> 73502", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73501, + "TargetID": 73502, + "Directional": true + }] + }, { + "ID": 15856, + "SourceStructureID": 68548, + "TargetStructureID": 73506, + "Label": "68548-73506 via Conventional from 73507 -> 73508", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73507, + "TargetID": 73508, + "Directional": true + }] + }, { + "ID": 15857, + "SourceStructureID": 68548, + "TargetStructureID": 73521, + "Label": "68548-73521 via Conventional from 73522 -> 73523", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73522, + "TargetID": 73523, + "Directional": true + }] + }, { + "ID": 15858, + "SourceStructureID": 68548, + "TargetStructureID": 73528, + "Label": "68548-73528 via Conventional from 73527 -> 73529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73527, + "TargetID": 73529, + "Directional": true + }] + }, { + "ID": 15859, + "SourceStructureID": 68548, + "TargetStructureID": 73546, + "Label": "68548-73546 via Conventional from 73547 -> 73548", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73547, + "TargetID": 73548, + "Directional": true + }] + }, { + "ID": 15860, + "SourceStructureID": 68548, + "TargetStructureID": 73560, + "Label": "68548-73560 via Conventional from 73561 -> 73562", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73561, + "TargetID": 73562, + "Directional": true + }] + }, { + "ID": 15861, + "SourceStructureID": 68548, + "TargetStructureID": 74902, + "Label": "68548-74902 via Conventional from 75775 -> 75774", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75775, + "TargetID": 75774, + "Directional": true + }] + }, { + "ID": 15862, + "SourceStructureID": 68548, + "TargetStructureID": 75354, + "Label": "68548-75354 via Conventional from 75353 -> 75355", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75353, + "TargetID": 75355, + "Directional": true + }] + }, { + "ID": 15863, + "SourceStructureID": 68548, + "TargetStructureID": 75359, + "Label": "68548-75359 via Conventional from 75358 -> 75360", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75358, + "TargetID": 75360, + "Directional": true + }] + }, { + "ID": 15864, + "SourceStructureID": 68548, + "TargetStructureID": 75700, + "Label": "68548-75700 via Conventional from 75699 -> 75705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75699, + "TargetID": 75705, + "Directional": true + }] + }, { + "ID": 15865, + "SourceStructureID": 68548, + "TargetStructureID": 75713, + "Label": "68548-75713 via Conventional from 75712 -> 75714", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75712, + "TargetID": 75714, + "Directional": true + }] + }, { + "ID": 15866, + "SourceStructureID": 68548, + "TargetStructureID": 75728, + "Label": "68548-75728 via Conventional from 75729 -> 75730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75729, + "TargetID": 75730, + "Directional": true + }] + }, { + "ID": 15867, + "SourceStructureID": 68548, + "TargetStructureID": 75739, + "Label": "68548-75739 via Conventional from 75744 -> 75745", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75744, + "TargetID": 75745, + "Directional": true + }] + }, { + "ID": 15868, + "SourceStructureID": 68548, + "TargetStructureID": 75752, + "Label": "68548-75752 via Conventional from 75751 -> 75753", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75751, + "TargetID": 75753, + "Directional": true + }] + }, { + "ID": 15869, + "SourceStructureID": 68566, + "TargetStructureID": 68539, + "Label": "68566-68539 via Conventional from 68567 -> 68565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68567, + "TargetID": 68565, + "Directional": true + }] + }, { + "ID": 15870, + "SourceStructureID": 68572, + "TargetStructureID": 68539, + "Label": "68572-68539 via Conventional from 68573 -> 68571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68573, + "TargetID": 68571, + "Directional": true + }] + }, { + "ID": 15871, + "SourceStructureID": 68577, + "TargetStructureID": 68539, + "Label": "68577-68539 via Conventional from 68578 -> 68579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68578, + "TargetID": 68579, + "Directional": true + }] + }, { + "ID": 15872, + "SourceStructureID": 68594, + "TargetStructureID": 5297, + "Label": "68594-5297 via Conventional from 68595 -> 68596", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68595, + "TargetID": 68596, + "Directional": true + }] + }, { + "ID": 15873, + "SourceStructureID": 68618, + "TargetStructureID": 59696, + "Label": "68618-59696 via Conventional from 68619 -> 68617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68619, + "TargetID": 68617, + "Directional": true + }] + }, { + "ID": 15874, + "SourceStructureID": 68623, + "TargetStructureID": 593, + "Label": "68623-593 via Conventional from 68624 -> 68622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68624, + "TargetID": 68622, + "Directional": true + }] + }, { + "ID": 15875, + "SourceStructureID": 68632, + "TargetStructureID": 55403, + "Label": "68632-55403 via Conventional from 68638 -> 55464", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68638, + "TargetID": 55464, + "Directional": true + }] + }, { + "ID": 15876, + "SourceStructureID": 68632, + "TargetStructureID": 67019, + "Label": "68632-67019 via Conventional from 68633 -> 68634", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68633, + "TargetID": 68634, + "Directional": true + }] + }, { + "ID": 15877, + "SourceStructureID": 68635, + "TargetStructureID": 68632, + "Label": "68635-68632 via Conventional from 68636 -> 68637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68636, + "TargetID": 68637, + "Directional": true + }] + }, { + "ID": 15878, + "SourceStructureID": 68643, + "TargetStructureID": 6156, + "Label": "68643-6156 via Conventional from 68645 -> 68646", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68645, + "TargetID": 68646, + "Directional": true + }] + }, { + "ID": 15879, + "SourceStructureID": 68643, + "TargetStructureID": 61933, + "Label": "68643-61933 via Conventional from 68644 -> 68642", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68644, + "TargetID": 68642, + "Directional": true + }] + }, { + "ID": 15880, + "SourceStructureID": 68652, + "TargetStructureID": 68077, + "Label": "68652-68077 via Conventional from 68653 -> 68651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68653, + "TargetID": 68651, + "Directional": true + }] + }, { + "ID": 15881, + "SourceStructureID": 68663, + "TargetStructureID": 593, + "Label": "68663-593 via Conventional from 68664 -> 62893", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68664, + "TargetID": 62893, + "Directional": true + }] + }, { + "ID": 15882, + "SourceStructureID": 68663, + "TargetStructureID": 5279, + "Label": "68663-5279 via Conventional from 97258 -> 6345", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97258, + "TargetID": 6345, + "Directional": true + }] + }, { + "ID": 15883, + "SourceStructureID": 68667, + "TargetStructureID": 593, + "Label": "68667-593 via Conventional from 74918 -> 68666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74918, + "TargetID": 68666, + "Directional": true + }] + }, { + "ID": 15884, + "SourceStructureID": 68669, + "TargetStructureID": 593, + "Label": "68669-593 via Conventional from 68675 -> 68676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68675, + "TargetID": 68676, + "Directional": true + }] + }, { + "ID": 15885, + "SourceStructureID": 68669, + "TargetStructureID": 67460, + "Label": "68669-67460 via Conventional from 82721 -> 82722", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82721, + "TargetID": 82722, + "Directional": true + }] + }, { + "ID": 15886, + "SourceStructureID": 68669, + "TargetStructureID": 68486, + "Label": "68669-68486 via Conventional from 68670 -> 79609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68670, + "TargetID": 79609, + "Directional": true + }] + }, { + "ID": 15887, + "SourceStructureID": 68678, + "TargetStructureID": 593, + "Label": "68678-593 via Conventional from 68682 -> 68683", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68682, + "TargetID": 68683, + "Directional": true + }] + }, { + "ID": 15888, + "SourceStructureID": 68678, + "TargetStructureID": 5649, + "Label": "68678-5649 via Conventional from 78883 -> 78884", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78883, + "TargetID": 78884, + "Directional": true + }] + }, { + "ID": 15889, + "SourceStructureID": 68686, + "TargetStructureID": 68669, + "Label": "68686-68669 via Conventional from 68687 -> 68688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68687, + "TargetID": 68688, + "Directional": true + }] + }, { + "ID": 15890, + "SourceStructureID": 68705, + "TargetStructureID": 514, + "Label": "68705-514 via Conventional from 68706 -> 1511", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68706, + "TargetID": 1511, + "Directional": true + }] + }, { + "ID": 15891, + "SourceStructureID": 68728, + "TargetStructureID": 63628, + "Label": "68728-63628 via Conventional from 68729 -> 63632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68729, + "TargetID": 63632, + "Directional": true + }] + }, { + "ID": 15892, + "SourceStructureID": 68734, + "TargetStructureID": 63628, + "Label": "68734-63628 via Conventional from 68735 -> 63633", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68735, + "TargetID": 63633, + "Directional": true + }] + }, { + "ID": 15893, + "SourceStructureID": 68737, + "TargetStructureID": 8575, + "Label": "68737-8575 via Conventional from 68738 -> 21629", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68738, + "TargetID": 21629, + "Directional": true + }] + }, { + "ID": 15894, + "SourceStructureID": 68748, + "TargetStructureID": 8575, + "Label": "68748-8575 via Conventional from 68749 -> 21632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68749, + "TargetID": 21632, + "Directional": true + }] + }, { + "ID": 15895, + "SourceStructureID": 68766, + "TargetStructureID": 8575, + "Label": "68766-8575 via Ribbon Synapse from 68768 -> 21636, 68774 -> 21637", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68768, + "TargetID": 21636, + "Directional": true + }, { + "SourceID": 68774, + "TargetID": 21637, + "Directional": true + }] + }, { + "ID": 15896, + "SourceStructureID": 68771, + "TargetStructureID": 8575, + "Label": "68771-8575 via Conventional from 68772 -> 21638", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68772, + "TargetID": 21638, + "Directional": true + }] + }, { + "ID": 15897, + "SourceStructureID": 68781, + "TargetStructureID": 8575, + "Label": "68781-8575 via BC Conventional Synapse from 68783 -> 62289", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 68783, + "TargetID": 62289, + "Directional": true + }] + }, { + "ID": 15898, + "SourceStructureID": 68785, + "TargetStructureID": 5528, + "Label": "68785-5528 via Conventional from 68786 -> 68791", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68786, + "TargetID": 68791, + "Directional": true + }] + }, { + "ID": 15899, + "SourceStructureID": 68799, + "TargetStructureID": 8575, + "Label": "68799-8575 via Conventional from 68800 -> 61536", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68800, + "TargetID": 61536, + "Directional": true + }] + }, { + "ID": 15900, + "SourceStructureID": 68801, + "TargetStructureID": 8575, + "Label": "68801-8575 via Conventional from 68802 -> 65516", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68802, + "TargetID": 65516, + "Directional": true + }] + }, { + "ID": 15901, + "SourceStructureID": 68822, + "TargetStructureID": 22232, + "Label": "68822-22232 via Conventional from 68823 -> 68821", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68823, + "TargetID": 68821, + "Directional": true + }] + }, { + "ID": 15902, + "SourceStructureID": 68836, + "TargetStructureID": 5922, + "Label": "68836-5922 via Conventional from 68837 -> 68838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68837, + "TargetID": 68838, + "Directional": true + }] + }, { + "ID": 15903, + "SourceStructureID": 68879, + "TargetStructureID": 7594, + "Label": "68879-7594 via Conventional from 68882 -> 25099", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68882, + "TargetID": 25099, + "Directional": true + }] + }, { + "ID": 15904, + "SourceStructureID": 68888, + "TargetStructureID": 1724, + "Label": "68888-1724 via Conventional from 68890 -> 1796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68890, + "TargetID": 1796, + "Directional": true + }] + }, { + "ID": 15905, + "SourceStructureID": 68888, + "TargetStructureID": 61933, + "Label": "68888-61933 via Conventional from 68889 -> 68887", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68889, + "TargetID": 68887, + "Directional": true + }] + }, { + "ID": 15906, + "SourceStructureID": 68894, + "TargetStructureID": 6156, + "Label": "68894-6156 via Conventional from 68895 -> 68897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68895, + "TargetID": 68897, + "Directional": true + }] + }, { + "ID": 15907, + "SourceStructureID": 68901, + "TargetStructureID": 67508, + "Label": "68901-67508 via Conventional from 68902 -> 68903", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68902, + "TargetID": 68903, + "Directional": true + }] + }, { + "ID": 15908, + "SourceStructureID": 68901, + "TargetStructureID": 68906, + "Label": "68901-68906 via Conventional from 68905 -> 68907", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68905, + "TargetID": 68907, + "Directional": true + }] + }, { + "ID": 15909, + "SourceStructureID": 68914, + "TargetStructureID": 8588, + "Label": "68914-8588 via Conventional from 68915 -> 68916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68915, + "TargetID": 68916, + "Directional": true + }] + }, { + "ID": 15910, + "SourceStructureID": 68926, + "TargetStructureID": 67508, + "Label": "68926-67508 via Conventional from 68927 -> 68928", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68927, + "TargetID": 68928, + "Directional": true + }] + }, { + "ID": 15911, + "SourceStructureID": 68929, + "TargetStructureID": 68926, + "Label": "68929-68926 via Conventional from 68930 -> 68942", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68930, + "TargetID": 68942, + "Directional": true + }] + }, { + "ID": 15912, + "SourceStructureID": 68940, + "TargetStructureID": 8038, + "Label": "68940-8038 via Conventional from 68941 -> 68937, 68950 -> 68969", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68941, + "TargetID": 68937, + "Directional": true + }, { + "SourceID": 68950, + "TargetID": 68969, + "Directional": true + }] + }, { + "ID": 15913, + "SourceStructureID": 68944, + "TargetStructureID": 68929, + "Label": "68944-68929 via Conventional from 68945 -> 68943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68945, + "TargetID": 68943, + "Directional": true + }] + }, { + "ID": 15914, + "SourceStructureID": 68944, + "TargetStructureID": 68948, + "Label": "68944-68948 via Conventional from 68947 -> 68949", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68947, + "TargetID": 68949, + "Directional": true + }] + }, { + "ID": 15915, + "SourceStructureID": 68948, + "TargetStructureID": 68955, + "Label": "68948-68955 via Conventional from 68954 -> 68956", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68954, + "TargetID": 68956, + "Directional": true + }] + }, { + "ID": 15916, + "SourceStructureID": 68955, + "TargetStructureID": 68944, + "Label": "68955-68944 via Conventional from 68958 -> 68960", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68958, + "TargetID": 68960, + "Directional": true + }] + }, { + "ID": 15917, + "SourceStructureID": 68978, + "TargetStructureID": 67575, + "Label": "68978-67575 via Conventional from 68979 -> 68977", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68979, + "TargetID": 68977, + "Directional": true + }] + }, { + "ID": 15918, + "SourceStructureID": 68988, + "TargetStructureID": 67992, + "Label": "68988-67992 via Conventional from 68996 -> 68997", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 68996, + "TargetID": 68997, + "Directional": true + }] + }, { + "ID": 15919, + "SourceStructureID": 69010, + "TargetStructureID": 68009, + "Label": "69010-68009 via Conventional from 69011 -> 69009", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69011, + "TargetID": 69009, + "Directional": true + }] + }, { + "ID": 15920, + "SourceStructureID": 69019, + "TargetStructureID": 68009, + "Label": "69019-68009 via Conventional from 69020 -> 69021", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69020, + "TargetID": 69021, + "Directional": true + }] + }, { + "ID": 15921, + "SourceStructureID": 69030, + "TargetStructureID": 5503, + "Label": "69030-5503 via Conventional from 107423 -> 60729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107423, + "TargetID": 60729, + "Directional": true + }] + }, { + "ID": 15922, + "SourceStructureID": 69030, + "TargetStructureID": 8576, + "Label": "69030-8576 via Conventional from 69031 -> 20082", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69031, + "TargetID": 20082, + "Directional": true + }] + }, { + "ID": 15923, + "SourceStructureID": 69049, + "TargetStructureID": 68539, + "Label": "69049-68539 via Conventional from 69062 -> 69066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69062, + "TargetID": 69066, + "Directional": true + }] + }, { + "ID": 15924, + "SourceStructureID": 69115, + "TargetStructureID": 68539, + "Label": "69115-68539 via Conventional from 69116 -> 69110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69116, + "TargetID": 69110, + "Directional": true + }] + }, { + "ID": 15925, + "SourceStructureID": 69118, + "TargetStructureID": 8579, + "Label": "69118-8579 via Conventional from 69122 -> 19794", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69122, + "TargetID": 19794, + "Directional": true + }] + }, { + "ID": 15926, + "SourceStructureID": 69118, + "TargetStructureID": 68539, + "Label": "69118-68539 via Conventional from 69119 -> 69067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69119, + "TargetID": 69067, + "Directional": true + }] + }, { + "ID": 15927, + "SourceStructureID": 69123, + "TargetStructureID": 68539, + "Label": "69123-68539 via Conventional from 69124 -> 69068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69124, + "TargetID": 69068, + "Directional": true + }] + }, { + "ID": 15928, + "SourceStructureID": 69125, + "TargetStructureID": 68539, + "Label": "69125-68539 via Conventional from 69126 -> 69069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69126, + "TargetID": 69069, + "Directional": true + }] + }, { + "ID": 15929, + "SourceStructureID": 69181, + "TargetStructureID": 69162, + "Label": "69181-69162 via Conventional from 69183 -> 69177", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69183, + "TargetID": 69177, + "Directional": true + }] + }, { + "ID": 15930, + "SourceStructureID": 69181, + "TargetStructureID": 69184, + "Label": "69181-69184 via Conventional from 69182 -> 69186", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69182, + "TargetID": 69186, + "Directional": true + }] + }, { + "ID": 15931, + "SourceStructureID": 69184, + "TargetStructureID": 69162, + "Label": "69184-69162 via Conventional from 69185 -> 69178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69185, + "TargetID": 69178, + "Directional": true + }] + }, { + "ID": 15932, + "SourceStructureID": 69187, + "TargetStructureID": 69162, + "Label": "69187-69162 via Conventional from 69188 -> 69180", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69188, + "TargetID": 69180, + "Directional": true + }] + }, { + "ID": 15933, + "SourceStructureID": 69190, + "TargetStructureID": 69162, + "Label": "69190-69162 via Conventional from 69192 -> 69193", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69192, + "TargetID": 69193, + "Directional": true + }] + }, { + "ID": 15934, + "SourceStructureID": 69190, + "TargetStructureID": 69187, + "Label": "69190-69187 via Conventional from 69191 -> 69189", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69191, + "TargetID": 69189, + "Directional": true + }] + }, { + "ID": 15935, + "SourceStructureID": 69200, + "TargetStructureID": 69162, + "Label": "69200-69162 via Conventional from 69201 -> 69199", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69201, + "TargetID": 69199, + "Directional": true + }] + }, { + "ID": 15936, + "SourceStructureID": 69200, + "TargetStructureID": 82723, + "Label": "69200-82723 via Conventional from 69203 -> 82724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69203, + "TargetID": 82724, + "Directional": true + }] + }, { + "ID": 15937, + "SourceStructureID": 69205, + "TargetStructureID": 69162, + "Label": "69205-69162 via Conventional from 69206 -> 69207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69206, + "TargetID": 69207, + "Directional": true + }] + }, { + "ID": 15938, + "SourceStructureID": 69235, + "TargetStructureID": 22974, + "Label": "69235-22974 via Conventional from 69236 -> 69230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69236, + "TargetID": 69230, + "Directional": true + }] + }, { + "ID": 15939, + "SourceStructureID": 69243, + "TargetStructureID": 22974, + "Label": "69243-22974 via Conventional from 69244 -> 68981", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69244, + "TargetID": 68981, + "Directional": true + }] + }, { + "ID": 15940, + "SourceStructureID": 69245, + "TargetStructureID": 5284, + "Label": "69245-5284 via Conventional from 98231 -> 98230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98231, + "TargetID": 98230, + "Directional": true + }] + }, { + "ID": 15941, + "SourceStructureID": 69245, + "TargetStructureID": 22974, + "Label": "69245-22974 via Conventional from 69246 -> 68984", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69246, + "TargetID": 68984, + "Directional": true + }] + }, { + "ID": 15942, + "SourceStructureID": 69325, + "TargetStructureID": 5117, + "Label": "69325-5117 via Conventional from 69326 -> 69324", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69326, + "TargetID": 69324, + "Directional": true + }] + }, { + "ID": 15943, + "SourceStructureID": 69332, + "TargetStructureID": 5117, + "Label": "69332-5117 via Conventional from 69333 -> 69331", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69333, + "TargetID": 69331, + "Directional": true + }] + }, { + "ID": 15944, + "SourceStructureID": 69355, + "TargetStructureID": 66407, + "Label": "69355-66407 via Conventional from 69356 -> 69354", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69356, + "TargetID": 69354, + "Directional": true + }] + }, { + "ID": 15945, + "SourceStructureID": 69361, + "TargetStructureID": 66958, + "Label": "69361-66958 via Conventional from 69362 -> 69906", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69362, + "TargetID": 69906, + "Directional": true + }] + }, { + "ID": 15946, + "SourceStructureID": 69363, + "TargetStructureID": 5561, + "Label": "69363-5561 via Conventional from 75576 -> 75577", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75576, + "TargetID": 75577, + "Directional": true + }] + }, { + "ID": 15947, + "SourceStructureID": 69363, + "TargetStructureID": 8580, + "Label": "69363-8580 via Conventional from 69364 -> 59649", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69364, + "TargetID": 59649, + "Directional": true + }] + }, { + "ID": 15948, + "SourceStructureID": 69367, + "TargetStructureID": 67663, + "Label": "69367-67663 via Conventional from 69369 -> 69370", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69369, + "TargetID": 69370, + "Directional": true + }] + }, { + "ID": 15949, + "SourceStructureID": 69371, + "TargetStructureID": 22974, + "Label": "69371-22974 via Conventional from 69372 -> 69368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69372, + "TargetID": 69368, + "Directional": true + }] + }, { + "ID": 15950, + "SourceStructureID": 69380, + "TargetStructureID": 22974, + "Label": "69380-22974 via Conventional from 69381 -> 69379", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69381, + "TargetID": 69379, + "Directional": true + }] + }, { + "ID": 15951, + "SourceStructureID": 69382, + "TargetStructureID": 67663, + "Label": "69382-67663 via Conventional from 69383 -> 69323", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69383, + "TargetID": 69323, + "Directional": true + }] + }, { + "ID": 15952, + "SourceStructureID": 69385, + "TargetStructureID": 6857, + "Label": "69385-6857 via Conventional from 69386 -> 6883, 71721 -> 6889", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69386, + "TargetID": 6883, + "Directional": true + }, { + "SourceID": 71721, + "TargetID": 6889, + "Directional": true + }] + }, { + "ID": 15953, + "SourceStructureID": 69388, + "TargetStructureID": 66407, + "Label": "69388-66407 via Conventional from 69389 -> 69387", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69389, + "TargetID": 69387, + "Directional": true + }] + }, { + "ID": 15954, + "SourceStructureID": 69393, + "TargetStructureID": 66407, + "Label": "69393-66407 via Conventional from 69394 -> 69392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69394, + "TargetID": 69392, + "Directional": true + }] + }, { + "ID": 15955, + "SourceStructureID": 69402, + "TargetStructureID": 66407, + "Label": "69402-66407 via Conventional from 69403 -> 69401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69403, + "TargetID": 69401, + "Directional": true + }] + }, { + "ID": 15956, + "SourceStructureID": 69405, + "TargetStructureID": 66407, + "Label": "69405-66407 via Conventional from 69406 -> 69404", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69406, + "TargetID": 69404, + "Directional": true + }] + }, { + "ID": 15957, + "SourceStructureID": 69434, + "TargetStructureID": 64939, + "Label": "69434-64939 via Conventional from 69435 -> 69433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69435, + "TargetID": 69433, + "Directional": true + }] + }, { + "ID": 15958, + "SourceStructureID": 69441, + "TargetStructureID": 6050, + "Label": "69441-6050 via Conventional from 127389 -> 113907", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127389, + "TargetID": 113907, + "Directional": true + }] + }, { + "ID": 15959, + "SourceStructureID": 69450, + "TargetStructureID": 64939, + "Label": "69450-64939 via Conventional from 69451 -> 69448", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69451, + "TargetID": 69448, + "Directional": true + }] + }, { + "ID": 15960, + "SourceStructureID": 69456, + "TargetStructureID": 64939, + "Label": "69456-64939 via Conventional from 69457 -> 69422", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69457, + "TargetID": 69422, + "Directional": true + }] + }, { + "ID": 15961, + "SourceStructureID": 69458, + "TargetStructureID": 64939, + "Label": "69458-64939 via Conventional from 69460 -> 69459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69460, + "TargetID": 69459, + "Directional": true + }] + }, { + "ID": 15962, + "SourceStructureID": 69461, + "TargetStructureID": 6115, + "Label": "69461-6115 via Conventional from 73919 -> 73920", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73919, + "TargetID": 73920, + "Directional": true + }] + }, { + "ID": 15963, + "SourceStructureID": 69464, + "TargetStructureID": 6115, + "Label": "69464-6115 via Conventional from 69466 -> 55846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69466, + "TargetID": 55846, + "Directional": true + }] + }, { + "ID": 15964, + "SourceStructureID": 69467, + "TargetStructureID": 6115, + "Label": "69467-6115 via Conventional from 69468 -> 59599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69468, + "TargetID": 59599, + "Directional": true + }] + }, { + "ID": 15965, + "SourceStructureID": 69469, + "TargetStructureID": 6115, + "Label": "69469-6115 via Conventional from 69470 -> 55844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69470, + "TargetID": 55844, + "Directional": true + }] + }, { + "ID": 15966, + "SourceStructureID": 69472, + "TargetStructureID": 6115, + "Label": "69472-6115 via Conventional from 69473 -> 59608", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69473, + "TargetID": 59608, + "Directional": true + }] + }, { + "ID": 15967, + "SourceStructureID": 69475, + "TargetStructureID": 16087, + "Label": "69475-16087 via Conventional from 69476 -> 69477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69476, + "TargetID": 69477, + "Directional": true + }] + }, { + "ID": 15968, + "SourceStructureID": 69478, + "TargetStructureID": 6115, + "Label": "69478-6115 via Conventional from 69479 -> 32978", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69479, + "TargetID": 32978, + "Directional": true + }] + }, { + "ID": 15969, + "SourceStructureID": 69480, + "TargetStructureID": 6115, + "Label": "69480-6115 via Conventional from 69482 -> 69481", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69482, + "TargetID": 69481, + "Directional": true + }] + }, { + "ID": 15970, + "SourceStructureID": 69489, + "TargetStructureID": 66407, + "Label": "69489-66407 via Conventional from 69490 -> 69491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69490, + "TargetID": 69491, + "Directional": true + }] + }, { + "ID": 15971, + "SourceStructureID": 69493, + "TargetStructureID": 6115, + "Label": "69493-6115 via Conventional from 69494 -> 16050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69494, + "TargetID": 16050, + "Directional": true + }] + }, { + "ID": 15972, + "SourceStructureID": 69496, + "TargetStructureID": 6115, + "Label": "69496-6115 via Conventional from 69497 -> 69498", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69497, + "TargetID": 69498, + "Directional": true + }] + }, { + "ID": 15973, + "SourceStructureID": 69500, + "TargetStructureID": 6115, + "Label": "69500-6115 via Conventional from 69502 -> 16054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69502, + "TargetID": 16054, + "Directional": true + }] + }, { + "ID": 15974, + "SourceStructureID": 69503, + "TargetStructureID": 6115, + "Label": "69503-6115 via Conventional from 69504 -> 16053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69504, + "TargetID": 16053, + "Directional": true + }] + }, { + "ID": 15975, + "SourceStructureID": 69508, + "TargetStructureID": 5118, + "Label": "69508-5118 via Conventional from 69509 -> 52188", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69509, + "TargetID": 52188, + "Directional": true + }] + }, { + "ID": 15976, + "SourceStructureID": 69512, + "TargetStructureID": 6115, + "Label": "69512-6115 via Conventional from 69513 -> 55794, 69514 -> 69515, 75810 -> 75811", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69513, + "TargetID": 55794, + "Directional": true + }, { + "SourceID": 69514, + "TargetID": 69515, + "Directional": true + }, { + "SourceID": 75810, + "TargetID": 75811, + "Directional": true + }] + }, { + "ID": 15977, + "SourceStructureID": 69516, + "TargetStructureID": 6115, + "Label": "69516-6115 via Conventional from 69517 -> 69518", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69517, + "TargetID": 69518, + "Directional": true + }] + }, { + "ID": 15978, + "SourceStructureID": 69524, + "TargetStructureID": 69162, + "Label": "69524-69162 via Conventional from 69525 -> 69219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69525, + "TargetID": 69219, + "Directional": true + }] + }, { + "ID": 15979, + "SourceStructureID": 69527, + "TargetStructureID": 69162, + "Label": "69527-69162 via Conventional from 69528 -> 69307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69528, + "TargetID": 69307, + "Directional": true + }] + }, { + "ID": 15980, + "SourceStructureID": 69532, + "TargetStructureID": 8485, + "Label": "69532-8485 via Conventional from 69533 -> 11663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69533, + "TargetID": 11663, + "Directional": true + }] + }, { + "ID": 15981, + "SourceStructureID": 69543, + "TargetStructureID": 64939, + "Label": "69543-64939 via Conventional from 69544 -> 69542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69544, + "TargetID": 69542, + "Directional": true + }] + }, { + "ID": 15982, + "SourceStructureID": 69546, + "TargetStructureID": 69543, + "Label": "69546-69543 via Conventional from 69547 -> 69545", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69547, + "TargetID": 69545, + "Directional": true + }] + }, { + "ID": 15983, + "SourceStructureID": 69554, + "TargetStructureID": 8040, + "Label": "69554-8040 via Conventional from 69555 -> 39141, 69561 -> 69562", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69555, + "TargetID": 39141, + "Directional": true + }, { + "SourceID": 69561, + "TargetID": 69562, + "Directional": true + }] + }, { + "ID": 15984, + "SourceStructureID": 69642, + "TargetStructureID": 64939, + "Label": "69642-64939 via Conventional from 69643 -> 69416", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69643, + "TargetID": 69416, + "Directional": true + }] + }, { + "ID": 15985, + "SourceStructureID": 69646, + "TargetStructureID": 64939, + "Label": "69646-64939 via Conventional from 69647 -> 69648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69647, + "TargetID": 69648, + "Directional": true + }] + }, { + "ID": 15986, + "SourceStructureID": 69666, + "TargetStructureID": 5729, + "Label": "69666-5729 via Conventional from 111649 -> 111650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111649, + "TargetID": 111650, + "Directional": true + }] + }, { + "ID": 15987, + "SourceStructureID": 69670, + "TargetStructureID": 69670, + "Label": "69670-69670 via Conventional from 69671 -> 69673", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69671, + "TargetID": 69673, + "Directional": true + }] + }, { + "ID": 15988, + "SourceStructureID": 69689, + "TargetStructureID": 61853, + "Label": "69689-61853 via Conventional from 69690 -> 69688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69690, + "TargetID": 69688, + "Directional": true + }] + }, { + "ID": 15989, + "SourceStructureID": 69691, + "TargetStructureID": 64939, + "Label": "69691-64939 via Conventional from 69692 -> 69693", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69692, + "TargetID": 69693, + "Directional": true + }] + }, { + "ID": 15990, + "SourceStructureID": 69703, + "TargetStructureID": 64939, + "Label": "69703-64939 via Conventional from 69704 -> 69705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69704, + "TargetID": 69705, + "Directional": true + }] + }, { + "ID": 15991, + "SourceStructureID": 69742, + "TargetStructureID": 64939, + "Label": "69742-64939 via Conventional from 69743 -> 69744, 69745 -> 69746", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69743, + "TargetID": 69744, + "Directional": true + }, { + "SourceID": 69745, + "TargetID": 69746, + "Directional": true + }] + }, { + "ID": 15992, + "SourceStructureID": 69783, + "TargetStructureID": 61836, + "Label": "69783-61836 via Conventional from 69785 -> 69786", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69785, + "TargetID": 69786, + "Directional": true + }] + }, { + "ID": 15993, + "SourceStructureID": 69790, + "TargetStructureID": 61836, + "Label": "69790-61836 via Conventional from 69791 -> 69789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69791, + "TargetID": 69789, + "Directional": true + }] + }, { + "ID": 15994, + "SourceStructureID": 69868, + "TargetStructureID": 596, + "Label": "69868-596 via Conventional from 69869 -> 69867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69869, + "TargetID": 69867, + "Directional": true + }] + }, { + "ID": 15995, + "SourceStructureID": 69882, + "TargetStructureID": 596, + "Label": "69882-596 via Conventional from 69883 -> 69886, 69884 -> 69881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69883, + "TargetID": 69886, + "Directional": true + }, { + "SourceID": 69884, + "TargetID": 69881, + "Directional": true + }] + }, { + "ID": 15996, + "SourceStructureID": 69888, + "TargetStructureID": 69890, + "Label": "69888-69890 via Conventional from 69889 -> 69891", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69889, + "TargetID": 69891, + "Directional": true + }] + }, { + "ID": 15997, + "SourceStructureID": 69895, + "TargetStructureID": 166, + "Label": "69895-166 via Conventional from 69896 -> 69897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69896, + "TargetID": 69897, + "Directional": true + }] + }, { + "ID": 15998, + "SourceStructureID": 69902, + "TargetStructureID": 166, + "Label": "69902-166 via Conventional from 69904 -> 69905", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69904, + "TargetID": 69905, + "Directional": true + }] + }, { + "ID": 15999, + "SourceStructureID": 69910, + "TargetStructureID": 66958, + "Label": "69910-66958 via Conventional from 69911 -> 69319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69911, + "TargetID": 69319, + "Directional": true + }] + }, { + "ID": 16000, + "SourceStructureID": 69917, + "TargetStructureID": 66958, + "Label": "69917-66958 via Conventional from 69918 -> 69916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69918, + "TargetID": 69916, + "Directional": true + }] + }, { + "ID": 16001, + "SourceStructureID": 69920, + "TargetStructureID": 65267, + "Label": "69920-65267 via Conventional from 69921 -> 69919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69921, + "TargetID": 69919, + "Directional": true + }] + }, { + "ID": 16002, + "SourceStructureID": 69926, + "TargetStructureID": 5562, + "Label": "69926-5562 via Conventional from 69928 -> 63861", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69928, + "TargetID": 63861, + "Directional": true + }] + }, { + "ID": 16003, + "SourceStructureID": 69930, + "TargetStructureID": 69926, + "Label": "69930-69926 via Conventional from 69931 -> 69929", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69931, + "TargetID": 69929, + "Directional": true + }] + }, { + "ID": 16004, + "SourceStructureID": 69934, + "TargetStructureID": 66958, + "Label": "69934-66958 via Conventional from 69935 -> 69932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69935, + "TargetID": 69932, + "Directional": true + }] + }, { + "ID": 16005, + "SourceStructureID": 69951, + "TargetStructureID": 65267, + "Label": "69951-65267 via Conventional from 69952 -> 69950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69952, + "TargetID": 69950, + "Directional": true + }] + }, { + "ID": 16006, + "SourceStructureID": 69955, + "TargetStructureID": 69953, + "Label": "69955-69953 via Conventional from 69956 -> 69954", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69956, + "TargetID": 69954, + "Directional": true + }] + }, { + "ID": 16007, + "SourceStructureID": 69971, + "TargetStructureID": 64939, + "Label": "69971-64939 via Conventional from 69977 -> 69978", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69977, + "TargetID": 69978, + "Directional": true + }] + }, { + "ID": 16008, + "SourceStructureID": 69979, + "TargetStructureID": 64939, + "Label": "69979-64939 via Conventional from 69980 -> 69981", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69980, + "TargetID": 69981, + "Directional": true + }] + }, { + "ID": 16009, + "SourceStructureID": 69986, + "TargetStructureID": 64939, + "Label": "69986-64939 via Conventional from 69987 -> 69988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 69987, + "TargetID": 69988, + "Directional": true + }] + }, { + "ID": 16010, + "SourceStructureID": 69998, + "TargetStructureID": 64939, + "Label": "69998-64939 via Conventional from 70000 -> 70001", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70000, + "TargetID": 70001, + "Directional": true + }] + }, { + "ID": 16011, + "SourceStructureID": 70014, + "TargetStructureID": 6997, + "Label": "70014-6997 via Conventional from 70015 -> 70016", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70015, + "TargetID": 70016, + "Directional": true + }] + }, { + "ID": 16012, + "SourceStructureID": 70046, + "TargetStructureID": 68153, + "Label": "70046-68153 via Conventional from 70047 -> 70045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70047, + "TargetID": 70045, + "Directional": true + }] + }, { + "ID": 16013, + "SourceStructureID": 70046, + "TargetStructureID": 70050, + "Label": "70046-70050 via Conventional from 70052 -> 70053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70052, + "TargetID": 70053, + "Directional": true + }] + }, { + "ID": 16014, + "SourceStructureID": 70065, + "TargetStructureID": 66958, + "Label": "70065-66958 via Conventional from 70066 -> 70064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70066, + "TargetID": 70064, + "Directional": true + }] + }, { + "ID": 16015, + "SourceStructureID": 70073, + "TargetStructureID": 6997, + "Label": "70073-6997 via Conventional from 70076 -> 83021", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70076, + "TargetID": 83021, + "Directional": true + }] + }, { + "ID": 16016, + "SourceStructureID": 70073, + "TargetStructureID": 66958, + "Label": "70073-66958 via Conventional from 70074 -> 70075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70074, + "TargetID": 70075, + "Directional": true + }] + }, { + "ID": 16017, + "SourceStructureID": 70079, + "TargetStructureID": 66958, + "Label": "70079-66958 via Conventional from 70080 -> 70078", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70080, + "TargetID": 70078, + "Directional": true + }] + }, { + "ID": 16018, + "SourceStructureID": 70084, + "TargetStructureID": 5729, + "Label": "70084-5729 via Conventional from 111651 -> 111652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111651, + "TargetID": 111652, + "Directional": true + }] + }, { + "ID": 16019, + "SourceStructureID": 70092, + "TargetStructureID": 66958, + "Label": "70092-66958 via Conventional from 70094 -> 70091", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70094, + "TargetID": 70091, + "Directional": true + }] + }, { + "ID": 16020, + "SourceStructureID": 70095, + "TargetStructureID": 34978, + "Label": "70095-34978 via Ribbon Synapse from 70097 -> 34981", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70097, + "TargetID": 34981, + "Directional": true + }] + }, { + "ID": 16021, + "SourceStructureID": 70111, + "TargetStructureID": 66958, + "Label": "70111-66958 via Conventional from 70112 -> 70110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70112, + "TargetID": 70110, + "Directional": true + }] + }, { + "ID": 16022, + "SourceStructureID": 70116, + "TargetStructureID": 70114, + "Label": "70116-70114 via Conventional from 70117 -> 70115", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70117, + "TargetID": 70115, + "Directional": true + }] + }, { + "ID": 16023, + "SourceStructureID": 70120, + "TargetStructureID": 61823, + "Label": "70120-61823 via Conventional from 70121 -> 70122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70121, + "TargetID": 70122, + "Directional": true + }] + }, { + "ID": 16024, + "SourceStructureID": 70124, + "TargetStructureID": 61823, + "Label": "70124-61823 via Conventional from 70125 -> 70123", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70125, + "TargetID": 70123, + "Directional": true + }] + }, { + "ID": 16025, + "SourceStructureID": 70126, + "TargetStructureID": 5623, + "Label": "70126-5623 via Conventional from 131984 -> 131983", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131984, + "TargetID": 131983, + "Directional": true + }] + }, { + "ID": 16026, + "SourceStructureID": 70130, + "TargetStructureID": 66958, + "Label": "70130-66958 via Conventional from 70131 -> 70129", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70131, + "TargetID": 70129, + "Directional": true + }] + }, { + "ID": 16027, + "SourceStructureID": 70134, + "TargetStructureID": 66958, + "Label": "70134-66958 via Conventional from 70135 -> 70133", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70135, + "TargetID": 70133, + "Directional": true + }] + }, { + "ID": 16028, + "SourceStructureID": 70139, + "TargetStructureID": 5623, + "Label": "70139-5623 via Conventional from 70142 -> 70143", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70142, + "TargetID": 70143, + "Directional": true + }] + }, { + "ID": 16029, + "SourceStructureID": 70139, + "TargetStructureID": 66958, + "Label": "70139-66958 via Conventional from 70140 -> 70141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70140, + "TargetID": 70141, + "Directional": true + }] + }, { + "ID": 16030, + "SourceStructureID": 70144, + "TargetStructureID": 68153, + "Label": "70144-68153 via Conventional from 70145 -> 70146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70145, + "TargetID": 70146, + "Directional": true + }] + }, { + "ID": 16031, + "SourceStructureID": 70157, + "TargetStructureID": 68153, + "Label": "70157-68153 via Conventional from 70158 -> 70160", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70158, + "TargetID": 70160, + "Directional": true + }] + }, { + "ID": 16032, + "SourceStructureID": 70165, + "TargetStructureID": 61823, + "Label": "70165-61823 via Conventional from 70166 -> 70164", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70166, + "TargetID": 70164, + "Directional": true + }] + }, { + "ID": 16033, + "SourceStructureID": 70176, + "TargetStructureID": 68153, + "Label": "70176-68153 via Conventional from 70177 -> 70181", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70177, + "TargetID": 70181, + "Directional": true + }] + }, { + "ID": 16034, + "SourceStructureID": 70182, + "TargetStructureID": 68153, + "Label": "70182-68153 via Conventional from 70183 -> 70184", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70183, + "TargetID": 70184, + "Directional": true + }] + }, { + "ID": 16035, + "SourceStructureID": 70201, + "TargetStructureID": 68153, + "Label": "70201-68153 via Conventional from 70202 -> 70200", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70202, + "TargetID": 70200, + "Directional": true + }] + }, { + "ID": 16036, + "SourceStructureID": 70205, + "TargetStructureID": 69537, + "Label": "70205-69537 via Conventional from 70206 -> 69569", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70206, + "TargetID": 69569, + "Directional": true + }] + }, { + "ID": 16037, + "SourceStructureID": 70221, + "TargetStructureID": 5297, + "Label": "70221-5297 via Conventional from 116706 -> 116707", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116706, + "TargetID": 116707, + "Directional": true + }] + }, { + "ID": 16038, + "SourceStructureID": 70224, + "TargetStructureID": 70225, + "Label": "70224-70225 via Conventional from 70226 -> 70227", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70226, + "TargetID": 70227, + "Directional": true + }] + }, { + "ID": 16039, + "SourceStructureID": 70272, + "TargetStructureID": 68539, + "Label": "70272-68539 via Conventional from 70273 -> 70274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70273, + "TargetID": 70274, + "Directional": true + }] + }, { + "ID": 16040, + "SourceStructureID": 70302, + "TargetStructureID": 68539, + "Label": "70302-68539 via Conventional from 70303 -> 70307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70303, + "TargetID": 70307, + "Directional": true + }] + }, { + "ID": 16041, + "SourceStructureID": 70308, + "TargetStructureID": 68539, + "Label": "70308-68539 via Conventional from 70406 -> 70408", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70406, + "TargetID": 70408, + "Directional": true + }] + }, { + "ID": 16042, + "SourceStructureID": 70317, + "TargetStructureID": 61823, + "Label": "70317-61823 via Conventional from 70318 -> 70319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70318, + "TargetID": 70319, + "Directional": true + }] + }, { + "ID": 16043, + "SourceStructureID": 70321, + "TargetStructureID": 606, + "Label": "70321-606 via Conventional from 70322 -> 51319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70322, + "TargetID": 51319, + "Directional": true + }] + }, { + "ID": 16044, + "SourceStructureID": 70323, + "TargetStructureID": 6117, + "Label": "70323-6117 via Conventional from 70324 -> 70325", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70324, + "TargetID": 70325, + "Directional": true + }] + }, { + "ID": 16045, + "SourceStructureID": 70326, + "TargetStructureID": 6117, + "Label": "70326-6117 via Conventional from 70327 -> 70328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70327, + "TargetID": 70328, + "Directional": true + }] + }, { + "ID": 16046, + "SourceStructureID": 70329, + "TargetStructureID": 5292, + "Label": "70329-5292 via Conventional from 70330 -> 51581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70330, + "TargetID": 51581, + "Directional": true + }] + }, { + "ID": 16047, + "SourceStructureID": 70331, + "TargetStructureID": 5284, + "Label": "70331-5284 via Conventional from 113413 -> 113412", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113413, + "TargetID": 113412, + "Directional": true + }] + }, { + "ID": 16048, + "SourceStructureID": 70331, + "TargetStructureID": 5292, + "Label": "70331-5292 via Conventional from 70332 -> 51583", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70332, + "TargetID": 51583, + "Directional": true + }] + }, { + "ID": 16049, + "SourceStructureID": 70334, + "TargetStructureID": 5292, + "Label": "70334-5292 via Conventional from 70337 -> 51580", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70337, + "TargetID": 51580, + "Directional": true + }] + }, { + "ID": 16050, + "SourceStructureID": 70335, + "TargetStructureID": 5292, + "Label": "70335-5292 via Conventional from 70338 -> 51582", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70338, + "TargetID": 51582, + "Directional": true + }] + }, { + "ID": 16051, + "SourceStructureID": 70340, + "TargetStructureID": 5284, + "Label": "70340-5284 via Conventional from 84658 -> 84660", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84658, + "TargetID": 84660, + "Directional": true + }] + }, { + "ID": 16052, + "SourceStructureID": 70340, + "TargetStructureID": 6117, + "Label": "70340-6117 via Conventional from 70341 -> 70342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70341, + "TargetID": 70342, + "Directional": true + }] + }, { + "ID": 16053, + "SourceStructureID": 70346, + "TargetStructureID": 6050, + "Label": "70346-6050 via Conventional from 70348 -> 70349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70348, + "TargetID": 70349, + "Directional": true + }] + }, { + "ID": 16054, + "SourceStructureID": 70346, + "TargetStructureID": 15796, + "Label": "70346-15796 via Conventional from 70347 -> 36000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70347, + "TargetID": 36000, + "Directional": true + }] + }, { + "ID": 16055, + "SourceStructureID": 70352, + "TargetStructureID": 6050, + "Label": "70352-6050 via Conventional from 70353 -> 19307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70353, + "TargetID": 19307, + "Directional": true + }] + }, { + "ID": 16056, + "SourceStructureID": 70357, + "TargetStructureID": 6050, + "Label": "70357-6050 via Conventional from 70358 -> 70359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70358, + "TargetID": 70359, + "Directional": true + }] + }, { + "ID": 16057, + "SourceStructureID": 70360, + "TargetStructureID": 70362, + "Label": "70360-70362 via Conventional from 70361 -> 70363", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70361, + "TargetID": 70363, + "Directional": true + }] + }, { + "ID": 16058, + "SourceStructureID": 70360, + "TargetStructureID": 70365, + "Label": "70360-70365 via Conventional from 70364 -> 70366", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70364, + "TargetID": 70366, + "Directional": true + }] + }, { + "ID": 16059, + "SourceStructureID": 70367, + "TargetStructureID": 70369, + "Label": "70367-70369 via Conventional from 70368 -> 70370", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70368, + "TargetID": 70370, + "Directional": true + }] + }, { + "ID": 16060, + "SourceStructureID": 70371, + "TargetStructureID": 61823, + "Label": "70371-61823 via Conventional from 70373 -> 70375", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70373, + "TargetID": 70375, + "Directional": true + }] + }, { + "ID": 16061, + "SourceStructureID": 70372, + "TargetStructureID": 70374, + "Label": "70372-70374 via Conventional from 70376 -> 70377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70376, + "TargetID": 70377, + "Directional": true + }] + }, { + "ID": 16062, + "SourceStructureID": 70381, + "TargetStructureID": 5284, + "Label": "70381-5284 via Conventional from 70382 -> 70383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70382, + "TargetID": 70383, + "Directional": true + }] + }, { + "ID": 16063, + "SourceStructureID": 70384, + "TargetStructureID": 70374, + "Label": "70384-70374 via Conventional from 70386 -> 70385", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70386, + "TargetID": 70385, + "Directional": true + }] + }, { + "ID": 16064, + "SourceStructureID": 70394, + "TargetStructureID": 8589, + "Label": "70394-8589 via Conventional from 70395 -> 70396", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70395, + "TargetID": 70396, + "Directional": true + }] + }, { + "ID": 16065, + "SourceStructureID": 70403, + "TargetStructureID": 8589, + "Label": "70403-8589 via Ribbon Synapse from 70440 -> 70439", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 70440, + "TargetID": 70439, + "Directional": true + }] + }, { + "ID": 16066, + "SourceStructureID": 70415, + "TargetStructureID": 68539, + "Label": "70415-68539 via Conventional from 70416 -> 70414", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70416, + "TargetID": 70414, + "Directional": true + }] + }, { + "ID": 16067, + "SourceStructureID": 70418, + "TargetStructureID": 58696, + "Label": "70418-58696 via Conventional from 70420 -> 86932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70420, + "TargetID": 86932, + "Directional": true + }] + }, { + "ID": 16068, + "SourceStructureID": 70422, + "TargetStructureID": 68539, + "Label": "70422-68539 via Conventional from 70425 -> 76037", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70425, + "TargetID": 76037, + "Directional": true + }] + }, { + "ID": 16069, + "SourceStructureID": 70427, + "TargetStructureID": 5439, + "Label": "70427-5439 via Conventional from 70428 -> 70429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70428, + "TargetID": 70429, + "Directional": true + }] + }, { + "ID": 16070, + "SourceStructureID": 70432, + "TargetStructureID": 70427, + "Label": "70432-70427 via Conventional from 70434 -> 70431", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70434, + "TargetID": 70431, + "Directional": true + }] + }, { + "ID": 16071, + "SourceStructureID": 70436, + "TargetStructureID": 5439, + "Label": "70436-5439 via Conventional from 70437 -> 66547", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70437, + "TargetID": 66547, + "Directional": true + }] + }, { + "ID": 16072, + "SourceStructureID": 70449, + "TargetStructureID": 6117, + "Label": "70449-6117 via Conventional from 70450 -> 25098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70450, + "TargetID": 25098, + "Directional": true + }] + }, { + "ID": 16073, + "SourceStructureID": 70449, + "TargetStructureID": 7594, + "Label": "70449-7594 via Conventional from 70451 -> 25097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70451, + "TargetID": 25097, + "Directional": true + }] + }, { + "ID": 16074, + "SourceStructureID": 70454, + "TargetStructureID": 606, + "Label": "70454-606 via Conventional from 89559 -> 51538, 89560 -> 89561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89559, + "TargetID": 51538, + "Directional": true + }, { + "SourceID": 89560, + "TargetID": 89561, + "Directional": true + }] + }, { + "ID": 16075, + "SourceStructureID": 70454, + "TargetStructureID": 5279, + "Label": "70454-5279 via Conventional from 89564 -> 28313, 97334 -> 25813", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89564, + "TargetID": 28313, + "Directional": true + }, { + "SourceID": 97334, + "TargetID": 25813, + "Directional": true + }] + }, { + "ID": 16076, + "SourceStructureID": 70454, + "TargetStructureID": 5284, + "Label": "70454-5284 via Conventional from 113424 -> 113423", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113424, + "TargetID": 113423, + "Directional": true + }] + }, { + "ID": 16077, + "SourceStructureID": 70454, + "TargetStructureID": 5292, + "Label": "70454-5292 via Conventional from 89566 -> 51548", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89566, + "TargetID": 51548, + "Directional": true + }] + }, { + "ID": 16078, + "SourceStructureID": 70454, + "TargetStructureID": 6117, + "Label": "70454-6117 via Conventional from 70455 -> 51537", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70455, + "TargetID": 51537, + "Directional": true + }] + }, { + "ID": 16079, + "SourceStructureID": 70454, + "TargetStructureID": 89554, + "Label": "70454-89554 via Conventional from 89553 -> 89558", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89553, + "TargetID": 89558, + "Directional": true + }] + }, { + "ID": 16080, + "SourceStructureID": 70456, + "TargetStructureID": 5281, + "Label": "70456-5281 via Conventional from 86349 -> 86350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86349, + "TargetID": 86350, + "Directional": true + }] + }, { + "ID": 16081, + "SourceStructureID": 70456, + "TargetStructureID": 6117, + "Label": "70456-6117 via Conventional from 70457 -> 10542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70457, + "TargetID": 10542, + "Directional": true + }] + }, { + "ID": 16082, + "SourceStructureID": 70458, + "TargetStructureID": 606, + "Label": "70458-606 via Conventional from 83135 -> 10712", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83135, + "TargetID": 10712, + "Directional": true + }] + }, { + "ID": 16083, + "SourceStructureID": 70458, + "TargetStructureID": 6117, + "Label": "70458-6117 via Conventional from 70459 -> 30886", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70459, + "TargetID": 30886, + "Directional": true + }] + }, { + "ID": 16084, + "SourceStructureID": 70460, + "TargetStructureID": 6117, + "Label": "70460-6117 via Conventional from 70464 -> 70465", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70464, + "TargetID": 70465, + "Directional": true + }] + }, { + "ID": 16085, + "SourceStructureID": 70466, + "TargetStructureID": 6117, + "Label": "70466-6117 via Conventional from 70468 -> 70467", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70468, + "TargetID": 70467, + "Directional": true + }] + }, { + "ID": 16086, + "SourceStructureID": 70469, + "TargetStructureID": 606, + "Label": "70469-606 via Conventional from 70470 -> 10543", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70470, + "TargetID": 10543, + "Directional": true + }] + }, { + "ID": 16087, + "SourceStructureID": 70471, + "TargetStructureID": 6117, + "Label": "70471-6117 via Conventional from 70472 -> 30935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70472, + "TargetID": 30935, + "Directional": true + }] + }, { + "ID": 16088, + "SourceStructureID": 70476, + "TargetStructureID": 6117, + "Label": "70476-6117 via Conventional from 70479 -> 70480", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70479, + "TargetID": 70480, + "Directional": true + }] + }, { + "ID": 16089, + "SourceStructureID": 70481, + "TargetStructureID": 6117, + "Label": "70481-6117 via Conventional from 70482 -> 70483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70482, + "TargetID": 70483, + "Directional": true + }] + }, { + "ID": 16090, + "SourceStructureID": 70485, + "TargetStructureID": 606, + "Label": "70485-606 via Conventional from 70486 -> 10054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70486, + "TargetID": 10054, + "Directional": true + }] + }, { + "ID": 16091, + "SourceStructureID": 70487, + "TargetStructureID": 6117, + "Label": "70487-6117 via Conventional from 70488 -> 70489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70488, + "TargetID": 70489, + "Directional": true + }] + }, { + "ID": 16092, + "SourceStructureID": 70495, + "TargetStructureID": 606, + "Label": "70495-606 via Conventional from 70496 -> 48507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70496, + "TargetID": 48507, + "Directional": true + }] + }, { + "ID": 16093, + "SourceStructureID": 70500, + "TargetStructureID": 5630, + "Label": "70500-5630 via Conventional from 129052 -> 129061", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129052, + "TargetID": 129061, + "Directional": true + }] + }, { + "ID": 16094, + "SourceStructureID": 70514, + "TargetStructureID": 8589, + "Label": "70514-8589 via Conventional from 70516 -> 70517", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70516, + "TargetID": 70517, + "Directional": true + }] + }, { + "ID": 16095, + "SourceStructureID": 70518, + "TargetStructureID": 419, + "Label": "70518-419 via Conventional from 132601 -> 132600, 133542 -> 133541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132601, + "TargetID": 132600, + "Directional": true + }, { + "SourceID": 133542, + "TargetID": 133541, + "Directional": true + }] + }, { + "ID": 16096, + "SourceStructureID": 70529, + "TargetStructureID": 68539, + "Label": "70529-68539 via Conventional from 70530 -> 70531", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70530, + "TargetID": 70531, + "Directional": true + }] + }, { + "ID": 16097, + "SourceStructureID": 70533, + "TargetStructureID": 5439, + "Label": "70533-5439 via Conventional from 70534 -> 66550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70534, + "TargetID": 66550, + "Directional": true + }] + }, { + "ID": 16098, + "SourceStructureID": 70535, + "TargetStructureID": 5439, + "Label": "70535-5439 via Conventional from 70537 -> 66585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70537, + "TargetID": 66585, + "Directional": true + }] + }, { + "ID": 16099, + "SourceStructureID": 70540, + "TargetStructureID": 5439, + "Label": "70540-5439 via Conventional from 70541 -> 70542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70541, + "TargetID": 70542, + "Directional": true + }] + }, { + "ID": 16100, + "SourceStructureID": 70544, + "TargetStructureID": 5439, + "Label": "70544-5439 via Conventional from 70546 -> 70543", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70546, + "TargetID": 70543, + "Directional": true + }] + }, { + "ID": 16101, + "SourceStructureID": 70552, + "TargetStructureID": 5439, + "Label": "70552-5439 via Conventional from 70553 -> 70554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70553, + "TargetID": 70554, + "Directional": true + }] + }, { + "ID": 16102, + "SourceStructureID": 70559, + "TargetStructureID": 5439, + "Label": "70559-5439 via Conventional from 70560 -> 66580", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70560, + "TargetID": 66580, + "Directional": true + }] + }, { + "ID": 16103, + "SourceStructureID": 70566, + "TargetStructureID": 5439, + "Label": "70566-5439 via Conventional from 70567 -> 66566", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70567, + "TargetID": 66566, + "Directional": true + }] + }, { + "ID": 16104, + "SourceStructureID": 70570, + "TargetStructureID": 5439, + "Label": "70570-5439 via Conventional from 70571 -> 66568", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70571, + "TargetID": 66568, + "Directional": true + }] + }, { + "ID": 16105, + "SourceStructureID": 70572, + "TargetStructureID": 166, + "Label": "70572-166 via Conventional from 70573 -> 70575", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70573, + "TargetID": 70575, + "Directional": true + }] + }, { + "ID": 16106, + "SourceStructureID": 70572, + "TargetStructureID": 29198, + "Label": "70572-29198 via Conventional from 70576 -> 29223", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70576, + "TargetID": 29223, + "Directional": true + }] + }, { + "ID": 16107, + "SourceStructureID": 70581, + "TargetStructureID": 5439, + "Label": "70581-5439 via Conventional from 70582 -> 66571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70582, + "TargetID": 66571, + "Directional": true + }] + }, { + "ID": 16108, + "SourceStructureID": 70581, + "TargetStructureID": 6857, + "Label": "70581-6857 via Conventional from 70583 -> 7491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70583, + "TargetID": 7491, + "Directional": true + }] + }, { + "ID": 16109, + "SourceStructureID": 70588, + "TargetStructureID": 5439, + "Label": "70588-5439 via Conventional from 70590 -> 70591", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70590, + "TargetID": 70591, + "Directional": true + }] + }, { + "ID": 16110, + "SourceStructureID": 70593, + "TargetStructureID": 318, + "Label": "70593-318 via Conventional from 70595 -> 70597", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70595, + "TargetID": 70597, + "Directional": true + }] + }, { + "ID": 16111, + "SourceStructureID": 70593, + "TargetStructureID": 5439, + "Label": "70593-5439 via Conventional from 70607 -> 70608", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70607, + "TargetID": 70608, + "Directional": true + }] + }, { + "ID": 16112, + "SourceStructureID": 70593, + "TargetStructureID": 70599, + "Label": "70593-70599 via Conventional from 70598 -> 70600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70598, + "TargetID": 70600, + "Directional": true + }] + }, { + "ID": 16113, + "SourceStructureID": 70601, + "TargetStructureID": 69537, + "Label": "70601-69537 via Conventional from 70603 -> 69769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70603, + "TargetID": 69769, + "Directional": true + }] + }, { + "ID": 16114, + "SourceStructureID": 70601, + "TargetStructureID": 70593, + "Label": "70601-70593 via Conventional from 70602 -> 70594", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70602, + "TargetID": 70594, + "Directional": true + }] + }, { + "ID": 16115, + "SourceStructureID": 70605, + "TargetStructureID": 70593, + "Label": "70605-70593 via Conventional from 70606 -> 70604", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70606, + "TargetID": 70604, + "Directional": true + }] + }, { + "ID": 16116, + "SourceStructureID": 70612, + "TargetStructureID": 483, + "Label": "70612-483 via Conventional from 70614 -> 6748", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70614, + "TargetID": 6748, + "Directional": true + }] + }, { + "ID": 16117, + "SourceStructureID": 70618, + "TargetStructureID": 70623, + "Label": "70618-70623 via Conventional from 70620 -> 70625", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70620, + "TargetID": 70625, + "Directional": true + }] + }, { + "ID": 16118, + "SourceStructureID": 70621, + "TargetStructureID": 70623, + "Label": "70621-70623 via Conventional from 70622 -> 70624", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70622, + "TargetID": 70624, + "Directional": true + }] + }, { + "ID": 16119, + "SourceStructureID": 70628, + "TargetStructureID": 5439, + "Label": "70628-5439 via Conventional from 70629 -> 70627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70629, + "TargetID": 70627, + "Directional": true + }] + }, { + "ID": 16120, + "SourceStructureID": 70632, + "TargetStructureID": 5439, + "Label": "70632-5439 via Conventional from 70634 -> 70635", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70634, + "TargetID": 70635, + "Directional": true + }] + }, { + "ID": 16121, + "SourceStructureID": 70640, + "TargetStructureID": 5439, + "Label": "70640-5439 via Conventional from 70641 -> 70642", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70641, + "TargetID": 70642, + "Directional": true + }] + }, { + "ID": 16122, + "SourceStructureID": 70646, + "TargetStructureID": 44346, + "Label": "70646-44346 via Conventional from 70647 -> 44349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70647, + "TargetID": 44349, + "Directional": true + }] + }, { + "ID": 16123, + "SourceStructureID": 70648, + "TargetStructureID": 5439, + "Label": "70648-5439 via Conventional from 70649 -> 66599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70649, + "TargetID": 66599, + "Directional": true + }] + }, { + "ID": 16124, + "SourceStructureID": 70651, + "TargetStructureID": 5439, + "Label": "70651-5439 via Conventional from 70652 -> 66598", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70652, + "TargetID": 66598, + "Directional": true + }] + }, { + "ID": 16125, + "SourceStructureID": 70653, + "TargetStructureID": 5439, + "Label": "70653-5439 via Conventional from 70654 -> 66605", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70654, + "TargetID": 66605, + "Directional": true + }] + }, { + "ID": 16126, + "SourceStructureID": 70655, + "TargetStructureID": 5439, + "Label": "70655-5439 via Conventional from 70656 -> 66602", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70656, + "TargetID": 66602, + "Directional": true + }] + }, { + "ID": 16127, + "SourceStructureID": 70659, + "TargetStructureID": 70655, + "Label": "70659-70655 via Conventional from 70660 -> 70657", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70660, + "TargetID": 70657, + "Directional": true + }] + }, { + "ID": 16128, + "SourceStructureID": 70663, + "TargetStructureID": 5439, + "Label": "70663-5439 via Conventional from 70666 -> 66601", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70666, + "TargetID": 66601, + "Directional": true + }] + }, { + "ID": 16129, + "SourceStructureID": 70667, + "TargetStructureID": 5439, + "Label": "70667-5439 via Conventional from 70668 -> 66597", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70668, + "TargetID": 66597, + "Directional": true + }] + }, { + "ID": 16130, + "SourceStructureID": 70674, + "TargetStructureID": 5439, + "Label": "70674-5439 via Conventional from 70675 -> 70676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70675, + "TargetID": 70676, + "Directional": true + }] + }, { + "ID": 16131, + "SourceStructureID": 70677, + "TargetStructureID": 5439, + "Label": "70677-5439 via Conventional from 70678 -> 66615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70678, + "TargetID": 66615, + "Directional": true + }] + }, { + "ID": 16132, + "SourceStructureID": 70682, + "TargetStructureID": 5439, + "Label": "70682-5439 via Conventional from 70683 -> 66619", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70683, + "TargetID": 66619, + "Directional": true + }] + }, { + "ID": 16133, + "SourceStructureID": 70684, + "TargetStructureID": 5536, + "Label": "70684-5536 via Conventional from 70688 -> 70687, 70690 -> 33296", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70688, + "TargetID": 70687, + "Directional": true + }, { + "SourceID": 70690, + "TargetID": 33296, + "Directional": true + }] + }, { + "ID": 16134, + "SourceStructureID": 70684, + "TargetStructureID": 70709, + "Label": "70684-70709 via Conventional from 70708 -> 70710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70708, + "TargetID": 70710, + "Directional": true + }] + }, { + "ID": 16135, + "SourceStructureID": 70684, + "TargetStructureID": 70721, + "Label": "70684-70721 via Conventional from 70720 -> 70722", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70720, + "TargetID": 70722, + "Directional": true + }] + }, { + "ID": 16136, + "SourceStructureID": 70693, + "TargetStructureID": 70684, + "Label": "70693-70684 via Conventional from 70694 -> 70692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70694, + "TargetID": 70692, + "Directional": true + }] + }, { + "ID": 16137, + "SourceStructureID": 70697, + "TargetStructureID": 70684, + "Label": "70697-70684 via Conventional from 70698 -> 70696", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70698, + "TargetID": 70696, + "Directional": true + }] + }, { + "ID": 16138, + "SourceStructureID": 70699, + "TargetStructureID": 70684, + "Label": "70699-70684 via Conventional from 70700 -> 70701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70700, + "TargetID": 70701, + "Directional": true + }] + }, { + "ID": 16139, + "SourceStructureID": 70699, + "TargetStructureID": 70703, + "Label": "70699-70703 via Conventional from 70702 -> 70704", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70702, + "TargetID": 70704, + "Directional": true + }] + }, { + "ID": 16140, + "SourceStructureID": 70706, + "TargetStructureID": 70684, + "Label": "70706-70684 via Conventional from 70707 -> 70705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70707, + "TargetID": 70705, + "Directional": true + }] + }, { + "ID": 16141, + "SourceStructureID": 70712, + "TargetStructureID": 70684, + "Label": "70712-70684 via Conventional from 70713 -> 70711, 70716 -> 70717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70713, + "TargetID": 70711, + "Directional": true + }, { + "SourceID": 70716, + "TargetID": 70717, + "Directional": true + }] + }, { + "ID": 16142, + "SourceStructureID": 70729, + "TargetStructureID": 70684, + "Label": "70729-70684 via Conventional from 70730 -> 70726", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70730, + "TargetID": 70726, + "Directional": true + }] + }, { + "ID": 16143, + "SourceStructureID": 70732, + "TargetStructureID": 70684, + "Label": "70732-70684 via Conventional from 70733 -> 70731", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70733, + "TargetID": 70731, + "Directional": true + }] + }, { + "ID": 16144, + "SourceStructureID": 70735, + "TargetStructureID": 70684, + "Label": "70735-70684 via Conventional from 70736 -> 70734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70736, + "TargetID": 70734, + "Directional": true + }] + }, { + "ID": 16145, + "SourceStructureID": 70737, + "TargetStructureID": 70684, + "Label": "70737-70684 via Conventional from 70738 -> 70739", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70738, + "TargetID": 70739, + "Directional": true + }] + }, { + "ID": 16146, + "SourceStructureID": 70740, + "TargetStructureID": 58696, + "Label": "70740-58696 via Conventional from 70741 -> 58698", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70741, + "TargetID": 58698, + "Directional": true + }] + }, { + "ID": 16147, + "SourceStructureID": 70743, + "TargetStructureID": 5439, + "Label": "70743-5439 via Conventional from 70744 -> 66610", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70744, + "TargetID": 66610, + "Directional": true + }] + }, { + "ID": 16148, + "SourceStructureID": 70745, + "TargetStructureID": 5439, + "Label": "70745-5439 via Conventional from 70746 -> 66609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70746, + "TargetID": 66609, + "Directional": true + }] + }, { + "ID": 16149, + "SourceStructureID": 70747, + "TargetStructureID": 5439, + "Label": "70747-5439 via Conventional from 70748 -> 66608", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70748, + "TargetID": 66608, + "Directional": true + }] + }, { + "ID": 16150, + "SourceStructureID": 70757, + "TargetStructureID": 5118, + "Label": "70757-5118 via Conventional from 70758 -> 70759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70758, + "TargetID": 70759, + "Directional": true + }] + }, { + "ID": 16151, + "SourceStructureID": 70761, + "TargetStructureID": 15977, + "Label": "70761-15977 via Conventional from 70762 -> 70760", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70762, + "TargetID": 70760, + "Directional": true + }] + }, { + "ID": 16152, + "SourceStructureID": 70770, + "TargetStructureID": 5439, + "Label": "70770-5439 via Conventional from 70771 -> 70772", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70771, + "TargetID": 70772, + "Directional": true + }] + }, { + "ID": 16153, + "SourceStructureID": 70774, + "TargetStructureID": 70770, + "Label": "70774-70770 via Conventional from 70775 -> 70773", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70775, + "TargetID": 70773, + "Directional": true + }] + }, { + "ID": 16154, + "SourceStructureID": 70778, + "TargetStructureID": 410, + "Label": "70778-410 via Conventional from 70779 -> 21373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70779, + "TargetID": 21373, + "Directional": true + }] + }, { + "ID": 16155, + "SourceStructureID": 70785, + "TargetStructureID": 410, + "Label": "70785-410 via Conventional from 70786 -> 21551", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70786, + "TargetID": 21551, + "Directional": true + }] + }, { + "ID": 16156, + "SourceStructureID": 70789, + "TargetStructureID": 70795, + "Label": "70789-70795 via Conventional from 70793 -> 70796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70793, + "TargetID": 70796, + "Directional": true + }] + }, { + "ID": 16157, + "SourceStructureID": 70791, + "TargetStructureID": 410, + "Label": "70791-410 via Conventional from 70792 -> 22632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70792, + "TargetID": 22632, + "Directional": true + }] + }, { + "ID": 16158, + "SourceStructureID": 70809, + "TargetStructureID": 65623, + "Label": "70809-65623 via Conventional from 70810 -> 70811", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70810, + "TargetID": 70811, + "Directional": true + }] + }, { + "ID": 16159, + "SourceStructureID": 70814, + "TargetStructureID": 410, + "Label": "70814-410 via Conventional from 70815 -> 18280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70815, + "TargetID": 18280, + "Directional": true + }] + }, { + "ID": 16160, + "SourceStructureID": 70820, + "TargetStructureID": 6589, + "Label": "70820-6589 via Conventional from 70829 -> 9601", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70829, + "TargetID": 9601, + "Directional": true + }] + }, { + "ID": 16161, + "SourceStructureID": 70820, + "TargetStructureID": 13855, + "Label": "70820-13855 via Conventional from 70821 -> 70819, 70830 -> 70831", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70821, + "TargetID": 70819, + "Directional": true + }, { + "SourceID": 70830, + "TargetID": 70831, + "Directional": true + }] + }, { + "ID": 16162, + "SourceStructureID": 70820, + "TargetStructureID": 70833, + "Label": "70820-70833 via Conventional from 70832 -> 70834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70832, + "TargetID": 70834, + "Directional": true + }] + }, { + "ID": 16163, + "SourceStructureID": 70820, + "TargetStructureID": 70868, + "Label": "70820-70868 via Conventional from 70867 -> 70872", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70867, + "TargetID": 70872, + "Directional": true + }] + }, { + "ID": 16164, + "SourceStructureID": 70833, + "TargetStructureID": 410, + "Label": "70833-410 via Conventional from 70865 -> 8368, 70866 -> 17332", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70865, + "TargetID": 8368, + "Directional": true + }, { + "SourceID": 70866, + "TargetID": 17332, + "Directional": true + }] + }, { + "ID": 16165, + "SourceStructureID": 70840, + "TargetStructureID": 5439, + "Label": "70840-5439 via Conventional from 70841 -> 70842", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70841, + "TargetID": 70842, + "Directional": true + }] + }, { + "ID": 16166, + "SourceStructureID": 70845, + "TargetStructureID": 5439, + "Label": "70845-5439 via Conventional from 70846 -> 70847", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70846, + "TargetID": 70847, + "Directional": true + }] + }, { + "ID": 16167, + "SourceStructureID": 70851, + "TargetStructureID": 5439, + "Label": "70851-5439 via Conventional from 70852 -> 70850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70852, + "TargetID": 70850, + "Directional": true + }] + }, { + "ID": 16168, + "SourceStructureID": 70868, + "TargetStructureID": 485, + "Label": "70868-485 via Conventional from 70882 -> 101272", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70882, + "TargetID": 101272, + "Directional": true + }] + }, { + "ID": 16169, + "SourceStructureID": 70868, + "TargetStructureID": 66958, + "Label": "70868-66958 via Conventional from 70087 -> 70088", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70087, + "TargetID": 70088, + "Directional": true + }] + }, { + "ID": 16170, + "SourceStructureID": 70868, + "TargetStructureID": 70878, + "Label": "70868-70878 via Conventional from 70873 -> 70881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70873, + "TargetID": 70881, + "Directional": true + }] + }, { + "ID": 16171, + "SourceStructureID": 70878, + "TargetStructureID": 485, + "Label": "70878-485 via Conventional from 70879 -> 70875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70879, + "TargetID": 70875, + "Directional": true + }] + }, { + "ID": 16172, + "SourceStructureID": 70901, + "TargetStructureID": 419, + "Label": "70901-419 via Conventional from 70902 -> 70900", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70902, + "TargetID": 70900, + "Directional": true + }] + }, { + "ID": 16173, + "SourceStructureID": 70903, + "TargetStructureID": 13855, + "Label": "70903-13855 via Conventional from 70904 -> 36324", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70904, + "TargetID": 36324, + "Directional": true + }] + }, { + "ID": 16174, + "SourceStructureID": 70906, + "TargetStructureID": 419, + "Label": "70906-419 via Conventional from 70907 -> 70905", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70907, + "TargetID": 70905, + "Directional": true + }] + }, { + "ID": 16175, + "SourceStructureID": 70909, + "TargetStructureID": 13855, + "Label": "70909-13855 via Conventional from 70910 -> 70908", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70910, + "TargetID": 70908, + "Directional": true + }] + }, { + "ID": 16176, + "SourceStructureID": 70912, + "TargetStructureID": 13855, + "Label": "70912-13855 via Conventional from 70913 -> 70911", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 70913, + "TargetID": 70911, + "Directional": true + }] + }, { + "ID": 16177, + "SourceStructureID": 71041, + "TargetStructureID": 4890, + "Label": "71041-4890 via Conventional from 71042 -> 19990", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71042, + "TargetID": 19990, + "Directional": true + }] + }, { + "ID": 16178, + "SourceStructureID": 71043, + "TargetStructureID": 397, + "Label": "71043-397 via Conventional from 71045 -> 71046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71045, + "TargetID": 71046, + "Directional": true + }] + }, { + "ID": 16179, + "SourceStructureID": 71043, + "TargetStructureID": 4890, + "Label": "71043-4890 via Conventional from 71044 -> 19995", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71044, + "TargetID": 19995, + "Directional": true + }] + }, { + "ID": 16180, + "SourceStructureID": 71057, + "TargetStructureID": 4890, + "Label": "71057-4890 via Conventional from 71058 -> 7919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71058, + "TargetID": 7919, + "Directional": true + }] + }, { + "ID": 16181, + "SourceStructureID": 71063, + "TargetStructureID": 5631, + "Label": "71063-5631 via Conventional from 71064 -> 71062", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71064, + "TargetID": 71062, + "Directional": true + }] + }, { + "ID": 16182, + "SourceStructureID": 71073, + "TargetStructureID": 166, + "Label": "71073-166 via Conventional from 71079 -> 71080", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71079, + "TargetID": 71080, + "Directional": true + }] + }, { + "ID": 16183, + "SourceStructureID": 71091, + "TargetStructureID": 483, + "Label": "71091-483 via Conventional from 71093 -> 71092", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71093, + "TargetID": 71092, + "Directional": true + }] + }, { + "ID": 16184, + "SourceStructureID": 71098, + "TargetStructureID": 483, + "Label": "71098-483 via Conventional from 71099 -> 71101", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71099, + "TargetID": 71101, + "Directional": true + }] + }, { + "ID": 16185, + "SourceStructureID": 71118, + "TargetStructureID": 5711, + "Label": "71118-5711 via Conventional from 71147 -> 71148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71147, + "TargetID": 71148, + "Directional": true + }] + }, { + "ID": 16186, + "SourceStructureID": 71118, + "TargetStructureID": 71125, + "Label": "71118-71125 via Conventional from 71121 -> 71127", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71121, + "TargetID": 71127, + "Directional": true + }] + }, { + "ID": 16187, + "SourceStructureID": 71125, + "TargetStructureID": 71118, + "Label": "71125-71118 via Conventional from 71126 -> 71124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71126, + "TargetID": 71124, + "Directional": true + }] + }, { + "ID": 16188, + "SourceStructureID": 71133, + "TargetStructureID": 483, + "Label": "71133-483 via Conventional from 71139 -> 71141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71139, + "TargetID": 71141, + "Directional": true + }] + }, { + "ID": 16189, + "SourceStructureID": 71135, + "TargetStructureID": 71118, + "Label": "71135-71118 via Ribbon Synapse from 71140 -> 71132", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71140, + "TargetID": 71132, + "Directional": true + }] + }, { + "ID": 16190, + "SourceStructureID": 71152, + "TargetStructureID": 71118, + "Label": "71152-71118 via Conventional from 71156 -> 71150", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71156, + "TargetID": 71150, + "Directional": true + }] + }, { + "ID": 16191, + "SourceStructureID": 71155, + "TargetStructureID": 483, + "Label": "71155-483 via Conventional from 71197 -> 71198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71197, + "TargetID": 71198, + "Directional": true + }] + }, { + "ID": 16192, + "SourceStructureID": 71202, + "TargetStructureID": 483, + "Label": "71202-483 via Conventional from 71203 -> 71205", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71203, + "TargetID": 71205, + "Directional": true + }] + }, { + "ID": 16193, + "SourceStructureID": 71202, + "TargetStructureID": 71202, + "Label": "71202-71202 via Conventional from 71253 -> 71254", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71253, + "TargetID": 71254, + "Directional": true + }] + }, { + "ID": 16194, + "SourceStructureID": 71219, + "TargetStructureID": 483, + "Label": "71219-483 via Conventional from 71220 -> 71221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71220, + "TargetID": 71221, + "Directional": true + }] + }, { + "ID": 16195, + "SourceStructureID": 71227, + "TargetStructureID": 911, + "Label": "71227-911 via Conventional from 71231 -> 943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71231, + "TargetID": 943, + "Directional": true + }] + }, { + "ID": 16196, + "SourceStructureID": 71227, + "TargetStructureID": 2610, + "Label": "71227-2610 via Conventional from 71228 -> 2728", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71228, + "TargetID": 2728, + "Directional": true + }] + }, { + "ID": 16197, + "SourceStructureID": 71240, + "TargetStructureID": 483, + "Label": "71240-483 via Conventional from 71353 -> 71354", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71353, + "TargetID": 71354, + "Directional": true + }] + }, { + "ID": 16198, + "SourceStructureID": 71242, + "TargetStructureID": 70599, + "Label": "71242-70599 via Conventional from 71255 -> 71256", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71255, + "TargetID": 71256, + "Directional": true + }] + }, { + "ID": 16199, + "SourceStructureID": 71281, + "TargetStructureID": 2610, + "Label": "71281-2610 via Conventional from 71282 -> 2620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71282, + "TargetID": 2620, + "Directional": true + }] + }, { + "ID": 16200, + "SourceStructureID": 71288, + "TargetStructureID": 483, + "Label": "71288-483 via Conventional from 71290 -> 71291, 71294 -> 71295, 71387 -> 71388", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71290, + "TargetID": 71291, + "Directional": true + }, { + "SourceID": 71294, + "TargetID": 71295, + "Directional": true + }, { + "SourceID": 71387, + "TargetID": 71388, + "Directional": true + }] + }, { + "ID": 16201, + "SourceStructureID": 71302, + "TargetStructureID": 308, + "Label": "71302-308 via Conventional from 71303 -> 42628", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71303, + "TargetID": 42628, + "Directional": true + }] + }, { + "ID": 16202, + "SourceStructureID": 71322, + "TargetStructureID": 8589, + "Label": "71322-8589 via Conventional from 71323 -> 71324", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71323, + "TargetID": 71324, + "Directional": true + }] + }, { + "ID": 16203, + "SourceStructureID": 71334, + "TargetStructureID": 66634, + "Label": "71334-66634 via Conventional from 71335 -> 71336", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71335, + "TargetID": 71336, + "Directional": true + }] + }, { + "ID": 16204, + "SourceStructureID": 71351, + "TargetStructureID": 71895, + "Label": "71351-71895 via Conventional from 71896 -> 71897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71896, + "TargetID": 71897, + "Directional": true + }] + }, { + "ID": 16205, + "SourceStructureID": 71362, + "TargetStructureID": 483, + "Label": "71362-483 via Conventional from 71363 -> 71364", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71363, + "TargetID": 71364, + "Directional": true + }] + }, { + "ID": 16206, + "SourceStructureID": 71369, + "TargetStructureID": 483, + "Label": "71369-483 via Conventional from 71370 -> 71371", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71370, + "TargetID": 71371, + "Directional": true + }] + }, { + "ID": 16207, + "SourceStructureID": 71377, + "TargetStructureID": 483, + "Label": "71377-483 via Conventional from 71378 -> 6745", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71378, + "TargetID": 6745, + "Directional": true + }] + }, { + "ID": 16208, + "SourceStructureID": 71395, + "TargetStructureID": 8589, + "Label": "71395-8589 via Conventional from 71398 -> 71399", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71398, + "TargetID": 71399, + "Directional": true + }] + }, { + "ID": 16209, + "SourceStructureID": 71402, + "TargetStructureID": 573, + "Label": "71402-573 via Conventional from 71403 -> 71401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71403, + "TargetID": 71401, + "Directional": true + }] + }, { + "ID": 16210, + "SourceStructureID": 71419, + "TargetStructureID": 573, + "Label": "71419-573 via Conventional from 71420 -> 71418", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71420, + "TargetID": 71418, + "Directional": true + }] + }, { + "ID": 16211, + "SourceStructureID": 71433, + "TargetStructureID": 166, + "Label": "71433-166 via Conventional from 71448 -> 71449", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71448, + "TargetID": 71449, + "Directional": true + }] + }, { + "ID": 16212, + "SourceStructureID": 71435, + "TargetStructureID": 166, + "Label": "71435-166 via Conventional from 71436 -> 71437", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71436, + "TargetID": 71437, + "Directional": true + }] + }, { + "ID": 16213, + "SourceStructureID": 71439, + "TargetStructureID": 166, + "Label": "71439-166 via Conventional from 71447 -> 71446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71447, + "TargetID": 71446, + "Directional": true + }] + }, { + "ID": 16214, + "SourceStructureID": 71472, + "TargetStructureID": 166, + "Label": "71472-166 via Conventional from 71473 -> 71471", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71473, + "TargetID": 71471, + "Directional": true + }] + }, { + "ID": 16215, + "SourceStructureID": 71481, + "TargetStructureID": 372, + "Label": "71481-372 via Conventional from 71482 -> 71483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71482, + "TargetID": 71483, + "Directional": true + }] + }, { + "ID": 16216, + "SourceStructureID": 71491, + "TargetStructureID": 71517, + "Label": "71491-71517 via Conventional from 71492 -> 71490", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71492, + "TargetID": 71490, + "Directional": true + }] + }, { + "ID": 16217, + "SourceStructureID": 71497, + "TargetStructureID": 71517, + "Label": "71497-71517 via Conventional from 71498 -> 71496", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71498, + "TargetID": 71496, + "Directional": true + }] + }, { + "ID": 16218, + "SourceStructureID": 71507, + "TargetStructureID": 71517, + "Label": "71507-71517 via Conventional from 71508 -> 71506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71508, + "TargetID": 71506, + "Directional": true + }] + }, { + "ID": 16219, + "SourceStructureID": 71511, + "TargetStructureID": 6115, + "Label": "71511-6115 via Conventional from 75018 -> 75019", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75018, + "TargetID": 75019, + "Directional": true + }] + }, { + "ID": 16220, + "SourceStructureID": 71511, + "TargetStructureID": 71517, + "Label": "71511-71517 via Conventional from 71512 -> 71510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71512, + "TargetID": 71510, + "Directional": true + }] + }, { + "ID": 16221, + "SourceStructureID": 71513, + "TargetStructureID": 6857, + "Label": "71513-6857 via Conventional from 71516 -> 6893", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71516, + "TargetID": 6893, + "Directional": true + }] + }, { + "ID": 16222, + "SourceStructureID": 71517, + "TargetStructureID": 6857, + "Label": "71517-6857 via Conventional from 66677 -> 6884, 71499 -> 6890, 71524 -> 7551, 71525 -> 6897, 71527 -> 7554, 72118 -> 6882, 72121 -> 7550, 75166 -> 75167", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 66677, + "TargetID": 6884, + "Directional": true + }, { + "SourceID": 71499, + "TargetID": 6890, + "Directional": true + }, { + "SourceID": 71524, + "TargetID": 7551, + "Directional": true + }, { + "SourceID": 71525, + "TargetID": 6897, + "Directional": true + }, { + "SourceID": 71527, + "TargetID": 7554, + "Directional": true + }, { + "SourceID": 72118, + "TargetID": 6882, + "Directional": true + }, { + "SourceID": 72121, + "TargetID": 7550, + "Directional": true + }, { + "SourceID": 75166, + "TargetID": 75167, + "Directional": true + }] + }, { + "ID": 16223, + "SourceStructureID": 71517, + "TargetStructureID": 11030, + "Label": "71517-11030 via Conventional from 71500 -> 71636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71500, + "TargetID": 71636, + "Directional": true + }] + }, { + "ID": 16224, + "SourceStructureID": 71517, + "TargetStructureID": 66323, + "Label": "71517-66323 via Conventional from 84422 -> 84421", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84422, + "TargetID": 84421, + "Directional": true + }] + }, { + "ID": 16225, + "SourceStructureID": 71517, + "TargetStructureID": 71519, + "Label": "71517-71519 via Conventional from 71518 -> 71520", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71518, + "TargetID": 71520, + "Directional": true + }] + }, { + "ID": 16226, + "SourceStructureID": 71538, + "TargetStructureID": 71517, + "Label": "71538-71517 via Conventional from 71539 -> 71537", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71539, + "TargetID": 71537, + "Directional": true + }] + }, { + "ID": 16227, + "SourceStructureID": 71541, + "TargetStructureID": 372, + "Label": "71541-372 via Conventional from 71542 -> 71543", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71542, + "TargetID": 71543, + "Directional": true + }] + }, { + "ID": 16228, + "SourceStructureID": 71545, + "TargetStructureID": 71517, + "Label": "71545-71517 via Conventional from 71546 -> 71544", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71546, + "TargetID": 71544, + "Directional": true + }] + }, { + "ID": 16229, + "SourceStructureID": 71547, + "TargetStructureID": 372, + "Label": "71547-372 via Conventional from 71548 -> 71549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71548, + "TargetID": 71549, + "Directional": true + }] + }, { + "ID": 16230, + "SourceStructureID": 71556, + "TargetStructureID": 372, + "Label": "71556-372 via Conventional from 71557 -> 71558", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71557, + "TargetID": 71558, + "Directional": true + }] + }, { + "ID": 16231, + "SourceStructureID": 71569, + "TargetStructureID": 372, + "Label": "71569-372 via Conventional from 71570 -> 71571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71570, + "TargetID": 71571, + "Directional": true + }] + }, { + "ID": 16232, + "SourceStructureID": 71574, + "TargetStructureID": 372, + "Label": "71574-372 via Conventional from 71575 -> 71573", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71575, + "TargetID": 71573, + "Directional": true + }] + }, { + "ID": 16233, + "SourceStructureID": 71576, + "TargetStructureID": 372, + "Label": "71576-372 via Conventional from 71577 -> 71579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71577, + "TargetID": 71579, + "Directional": true + }] + }, { + "ID": 16234, + "SourceStructureID": 71580, + "TargetStructureID": 372, + "Label": "71580-372 via Conventional from 71581 -> 71582", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71581, + "TargetID": 71582, + "Directional": true + }] + }, { + "ID": 16235, + "SourceStructureID": 71583, + "TargetStructureID": 372, + "Label": "71583-372 via Conventional from 71584 -> 71585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71584, + "TargetID": 71585, + "Directional": true + }] + }, { + "ID": 16236, + "SourceStructureID": 71588, + "TargetStructureID": 372, + "Label": "71588-372 via Conventional from 71589 -> 71590", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71589, + "TargetID": 71590, + "Directional": true + }] + }, { + "ID": 16237, + "SourceStructureID": 71594, + "TargetStructureID": 71597, + "Label": "71594-71597 via Conventional from 71627 -> 71628", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71627, + "TargetID": 71628, + "Directional": true + }] + }, { + "ID": 16238, + "SourceStructureID": 71597, + "TargetStructureID": 8589, + "Label": "71597-8589 via BC Conventional Synapse from 71784 -> 71748", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71784, + "TargetID": 71748, + "Directional": true + }] + }, { + "ID": 16239, + "SourceStructureID": 71597, + "TargetStructureID": 8589, + "Label": "71597-8589 via Ribbon Synapse from 71780 -> 71748", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71780, + "TargetID": 71748, + "Directional": true + }] + }, { + "ID": 16240, + "SourceStructureID": 71600, + "TargetStructureID": 71517, + "Label": "71600-71517 via Conventional from 71601 -> 71599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71601, + "TargetID": 71599, + "Directional": true + }] + }, { + "ID": 16241, + "SourceStructureID": 71610, + "TargetStructureID": 66634, + "Label": "71610-66634 via Conventional from 71611 -> 71609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71611, + "TargetID": 71609, + "Directional": true + }] + }, { + "ID": 16242, + "SourceStructureID": 71618, + "TargetStructureID": 66634, + "Label": "71618-66634 via Conventional from 71619 -> 71617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71619, + "TargetID": 71617, + "Directional": true + }] + }, { + "ID": 16243, + "SourceStructureID": 71626, + "TargetStructureID": 166, + "Label": "71626-166 via Conventional from 71989 -> 71990, 71992 -> 71993", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71989, + "TargetID": 71990, + "Directional": true + }, { + "SourceID": 71992, + "TargetID": 71993, + "Directional": true + }] + }, { + "ID": 16244, + "SourceStructureID": 71626, + "TargetStructureID": 71995, + "Label": "71626-71995 via Conventional from 71994 -> 71996", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71994, + "TargetID": 71996, + "Directional": true + }] + }, { + "ID": 16245, + "SourceStructureID": 71632, + "TargetStructureID": 71517, + "Label": "71632-71517 via Conventional from 71633 -> 71521", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71633, + "TargetID": 71521, + "Directional": true + }] + }, { + "ID": 16246, + "SourceStructureID": 71634, + "TargetStructureID": 5649, + "Label": "71634-5649 via Conventional from 105698 -> 53938", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105698, + "TargetID": 53938, + "Directional": true + }] + }, { + "ID": 16247, + "SourceStructureID": 71634, + "TargetStructureID": 71517, + "Label": "71634-71517 via Conventional from 71635 -> 71526", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71635, + "TargetID": 71526, + "Directional": true + }] + }, { + "ID": 16248, + "SourceStructureID": 71640, + "TargetStructureID": 8589, + "Label": "71640-8589 via Conventional from 71647 -> 71664", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71647, + "TargetID": 71664, + "Directional": true + }] + }, { + "ID": 16249, + "SourceStructureID": 71671, + "TargetStructureID": 71730, + "Label": "71671-71730 via Conventional from 71731 -> 71732, 71733 -> 71734, 71735 -> 71736", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71731, + "TargetID": 71732, + "Directional": true + }, { + "SourceID": 71733, + "TargetID": 71734, + "Directional": true + }, { + "SourceID": 71735, + "TargetID": 71736, + "Directional": true + }] + }, { + "ID": 16250, + "SourceStructureID": 71675, + "TargetStructureID": 71351, + "Label": "71675-71351 via Conventional from 71676 -> 71674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71676, + "TargetID": 71674, + "Directional": true + }] + }, { + "ID": 16251, + "SourceStructureID": 71678, + "TargetStructureID": 71351, + "Label": "71678-71351 via Conventional from 71679 -> 71677", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71679, + "TargetID": 71677, + "Directional": true + }] + }, { + "ID": 16252, + "SourceStructureID": 71689, + "TargetStructureID": 6142, + "Label": "71689-6142 via Conventional from 71690 -> 71688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71690, + "TargetID": 71688, + "Directional": true + }] + }, { + "ID": 16253, + "SourceStructureID": 71722, + "TargetStructureID": 6857, + "Label": "71722-6857 via Conventional from 71723 -> 71724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71723, + "TargetID": 71724, + "Directional": true + }] + }, { + "ID": 16254, + "SourceStructureID": 71730, + "TargetStructureID": 71738, + "Label": "71730-71738 via Ribbon Synapse from 71737 -> 71740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71737, + "TargetID": 71740, + "Directional": true + }] + }, { + "ID": 16255, + "SourceStructureID": 71730, + "TargetStructureID": 71739, + "Label": "71730-71739 via Ribbon Synapse from 71737 -> 71741", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71737, + "TargetID": 71741, + "Directional": true + }] + }, { + "ID": 16256, + "SourceStructureID": 71730, + "TargetStructureID": 71767, + "Label": "71730-71767 via Cistern Pre from 71818 -> 71819", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 71818, + "TargetID": 71819, + "Directional": true + }] + }, { + "ID": 16257, + "SourceStructureID": 71730, + "TargetStructureID": 71767, + "Label": "71730-71767 via Ribbon Synapse from 71766 -> 71768", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71766, + "TargetID": 71768, + "Directional": true + }] + }, { + "ID": 16258, + "SourceStructureID": 71738, + "TargetStructureID": 71730, + "Label": "71738-71730 via Conventional from 71760 -> 71759, 71764 -> 71763", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71760, + "TargetID": 71759, + "Directional": true + }, { + "SourceID": 71764, + "TargetID": 71763, + "Directional": true + }] + }, { + "ID": 16259, + "SourceStructureID": 71754, + "TargetStructureID": 71730, + "Label": "71754-71730 via Conventional from 71757 -> 71756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71757, + "TargetID": 71756, + "Directional": true + }] + }, { + "ID": 16260, + "SourceStructureID": 71767, + "TargetStructureID": 71730, + "Label": "71767-71730 via Conventional from 71770 -> 71769, 71807 -> 71806", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71770, + "TargetID": 71769, + "Directional": true + }, { + "SourceID": 71807, + "TargetID": 71806, + "Directional": true + }] + }, { + "ID": 16261, + "SourceStructureID": 71773, + "TargetStructureID": 8589, + "Label": "71773-8589 via Ribbon Synapse from 71775 -> 71776", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71775, + "TargetID": 71776, + "Directional": true + }] + }, { + "ID": 16262, + "SourceStructureID": 71781, + "TargetStructureID": 71730, + "Label": "71781-71730 via Cistern Pre from 71820 -> 71821", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 71820, + "TargetID": 71821, + "Directional": true + }] + }, { + "ID": 16263, + "SourceStructureID": 71781, + "TargetStructureID": 71730, + "Label": "71781-71730 via Conventional from 71822 -> 71823, 71834 -> 71833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71822, + "TargetID": 71823, + "Directional": true + }, { + "SourceID": 71834, + "TargetID": 71833, + "Directional": true + }] + }, { + "ID": 16264, + "SourceStructureID": 71790, + "TargetStructureID": 71730, + "Label": "71790-71730 via Conventional from 71793 -> 71794, 71795 -> 71796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71793, + "TargetID": 71794, + "Directional": true + }, { + "SourceID": 71795, + "TargetID": 71796, + "Directional": true + }] + }, { + "ID": 16265, + "SourceStructureID": 71830, + "TargetStructureID": 321, + "Label": "71830-321 via Conventional from 122110 -> 122111", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122110, + "TargetID": 122111, + "Directional": true + }] + }, { + "ID": 16266, + "SourceStructureID": 71830, + "TargetStructureID": 372, + "Label": "71830-372 via Conventional from 71831 -> 71832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71831, + "TargetID": 71832, + "Directional": true + }] + }, { + "ID": 16267, + "SourceStructureID": 71843, + "TargetStructureID": 372, + "Label": "71843-372 via Conventional from 71844 -> 71845", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71844, + "TargetID": 71845, + "Directional": true + }] + }, { + "ID": 16268, + "SourceStructureID": 71853, + "TargetStructureID": 372, + "Label": "71853-372 via Conventional from 71854 -> 71852", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71854, + "TargetID": 71852, + "Directional": true + }] + }, { + "ID": 16269, + "SourceStructureID": 71891, + "TargetStructureID": 180, + "Label": "71891-180 via Conventional from 71892 -> 71893", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71892, + "TargetID": 71893, + "Directional": true + }] + }, { + "ID": 16270, + "SourceStructureID": 71906, + "TargetStructureID": 71911, + "Label": "71906-71911 via Ribbon Synapse from 71907 -> 71912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71907, + "TargetID": 71912, + "Directional": true + }] + }, { + "ID": 16271, + "SourceStructureID": 71906, + "TargetStructureID": 71919, + "Label": "71906-71919 via Ribbon Synapse from 71918 -> 71921", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71918, + "TargetID": 71921, + "Directional": true + }] + }, { + "ID": 16272, + "SourceStructureID": 71906, + "TargetStructureID": 71920, + "Label": "71906-71920 via Ribbon Synapse from 71918 -> 71922", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71918, + "TargetID": 71922, + "Directional": true + }] + }, { + "ID": 16273, + "SourceStructureID": 71908, + "TargetStructureID": 71351, + "Label": "71908-71351 via Conventional from 71909 -> 71910", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71909, + "TargetID": 71910, + "Directional": true + }] + }, { + "ID": 16274, + "SourceStructureID": 71915, + "TargetStructureID": 71906, + "Label": "71915-71906 via Conventional from 71916 -> 71917", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71916, + "TargetID": 71917, + "Directional": true + }] + }, { + "ID": 16275, + "SourceStructureID": 71923, + "TargetStructureID": 69162, + "Label": "71923-69162 via Conventional from 71924 -> 71925", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71924, + "TargetID": 71925, + "Directional": true + }] + }, { + "ID": 16276, + "SourceStructureID": 71927, + "TargetStructureID": 5284, + "Label": "71927-5284 via Conventional from 71928 -> 98154", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71928, + "TargetID": 98154, + "Directional": true + }] + }, { + "ID": 16277, + "SourceStructureID": 71927, + "TargetStructureID": 15796, + "Label": "71927-15796 via Conventional from 71929 -> 15820", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71929, + "TargetID": 15820, + "Directional": true + }] + }, { + "ID": 16278, + "SourceStructureID": 71935, + "TargetStructureID": 476, + "Label": "71935-476 via Ribbon Synapse from 71942 -> 5721", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71942, + "TargetID": 5721, + "Directional": true + }] + }, { + "ID": 16279, + "SourceStructureID": 71935, + "TargetStructureID": 20299, + "Label": "71935-20299 via Ribbon Synapse from 71941 -> 121510", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 71941, + "TargetID": 121510, + "Directional": true + }] + }, { + "ID": 16280, + "SourceStructureID": 71962, + "TargetStructureID": 71411, + "Label": "71962-71411 via Conventional from 71966 -> 71960", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71966, + "TargetID": 71960, + "Directional": true + }] + }, { + "ID": 16281, + "SourceStructureID": 71985, + "TargetStructureID": 63487, + "Label": "71985-63487 via Conventional from 71986 -> 71988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71986, + "TargetID": 71988, + "Directional": true + }] + }, { + "ID": 16282, + "SourceStructureID": 71997, + "TargetStructureID": 71517, + "Label": "71997-71517 via Conventional from 75005 -> 75004", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75005, + "TargetID": 75004, + "Directional": true + }] + }, { + "ID": 16283, + "SourceStructureID": 71998, + "TargetStructureID": 8720, + "Label": "71998-8720 via Conventional from 71999 -> 64384", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 71999, + "TargetID": 64384, + "Directional": true + }] + }, { + "ID": 16284, + "SourceStructureID": 72000, + "TargetStructureID": 8720, + "Label": "72000-8720 via Conventional from 72001 -> 63172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72001, + "TargetID": 63172, + "Directional": true + }] + }, { + "ID": 16285, + "SourceStructureID": 72003, + "TargetStructureID": 6115, + "Label": "72003-6115 via Adherens from 75072 -> 75071", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 75072, + "TargetID": 75071, + "Directional": true + }] + }, { + "ID": 16286, + "SourceStructureID": 72003, + "TargetStructureID": 6115, + "Label": "72003-6115 via Conventional from 72006 -> 72007", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72006, + "TargetID": 72007, + "Directional": true + }] + }, { + "ID": 16287, + "SourceStructureID": 72031, + "TargetStructureID": 8589, + "Label": "72031-8589 via Conventional from 72032 -> 72030", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72032, + "TargetID": 72030, + "Directional": true + }] + }, { + "ID": 16288, + "SourceStructureID": 72043, + "TargetStructureID": 72036, + "Label": "72043-72036 via Conventional from 72044 -> 72042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72044, + "TargetID": 72042, + "Directional": true + }] + }, { + "ID": 16289, + "SourceStructureID": 72074, + "TargetStructureID": 6115, + "Label": "72074-6115 via Conventional from 72078 -> 37630", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72078, + "TargetID": 37630, + "Directional": true + }] + }, { + "ID": 16290, + "SourceStructureID": 72074, + "TargetStructureID": 72076, + "Label": "72074-72076 via Conventional from 72150 -> 72149", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72150, + "TargetID": 72149, + "Directional": true + }] + }, { + "ID": 16291, + "SourceStructureID": 72087, + "TargetStructureID": 6115, + "Label": "72087-6115 via Conventional from 72088 -> 37634", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72088, + "TargetID": 37634, + "Directional": true + }] + }, { + "ID": 16292, + "SourceStructureID": 72109, + "TargetStructureID": 8580, + "Label": "72109-8580 via Conventional from 72110 -> 72111", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72110, + "TargetID": 72111, + "Directional": true + }] + }, { + "ID": 16293, + "SourceStructureID": 72124, + "TargetStructureID": 71517, + "Label": "72124-71517 via Conventional from 72125 -> 71529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72125, + "TargetID": 71529, + "Directional": true + }] + }, { + "ID": 16294, + "SourceStructureID": 72154, + "TargetStructureID": 71517, + "Label": "72154-71517 via Conventional from 72156 -> 72155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72156, + "TargetID": 72155, + "Directional": true + }] + }, { + "ID": 16295, + "SourceStructureID": 72162, + "TargetStructureID": 15796, + "Label": "72162-15796 via Conventional from 82708 -> 15822", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82708, + "TargetID": 15822, + "Directional": true + }] + }, { + "ID": 16296, + "SourceStructureID": 72168, + "TargetStructureID": 5601, + "Label": "72168-5601 via Conventional from 82958 -> 57192", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82958, + "TargetID": 57192, + "Directional": true + }] + }, { + "ID": 16297, + "SourceStructureID": 72168, + "TargetStructureID": 82950, + "Label": "72168-82950 via Conventional from 82952 -> 82951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82952, + "TargetID": 82951, + "Directional": true + }] + }, { + "ID": 16298, + "SourceStructureID": 72168, + "TargetStructureID": 82954, + "Label": "72168-82954 via Conventional from 82953 -> 82957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82953, + "TargetID": 82957, + "Directional": true + }] + }, { + "ID": 16299, + "SourceStructureID": 72168, + "TargetStructureID": 82965, + "Label": "72168-82965 via Conventional from 82964 -> 82966", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82964, + "TargetID": 82966, + "Directional": true + }] + }, { + "ID": 16300, + "SourceStructureID": 72176, + "TargetStructureID": 6115, + "Label": "72176-6115 via Conventional from 72177 -> 72178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72177, + "TargetID": 72178, + "Directional": true + }] + }, { + "ID": 16301, + "SourceStructureID": 72183, + "TargetStructureID": 6115, + "Label": "72183-6115 via Conventional from 72185 -> 20423", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72185, + "TargetID": 20423, + "Directional": true + }] + }, { + "ID": 16302, + "SourceStructureID": 72188, + "TargetStructureID": 6115, + "Label": "72188-6115 via Conventional from 72190 -> 72191", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72190, + "TargetID": 72191, + "Directional": true + }] + }, { + "ID": 16303, + "SourceStructureID": 72210, + "TargetStructureID": 6115, + "Label": "72210-6115 via Conventional from 72211 -> 55808", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72211, + "TargetID": 55808, + "Directional": true + }] + }, { + "ID": 16304, + "SourceStructureID": 72215, + "TargetStructureID": 6115, + "Label": "72215-6115 via Conventional from 72216 -> 72217", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72216, + "TargetID": 72217, + "Directional": true + }] + }, { + "ID": 16305, + "SourceStructureID": 72218, + "TargetStructureID": 6115, + "Label": "72218-6115 via Conventional from 72269 -> 72267", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72269, + "TargetID": 72267, + "Directional": true + }] + }, { + "ID": 16306, + "SourceStructureID": 72226, + "TargetStructureID": 6115, + "Label": "72226-6115 via Conventional from 72230 -> 72231", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72230, + "TargetID": 72231, + "Directional": true + }] + }, { + "ID": 16307, + "SourceStructureID": 72252, + "TargetStructureID": 7113, + "Label": "72252-7113 via Ribbon Synapse from 82982 -> 82983", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82982, + "TargetID": 82983, + "Directional": true + }] + }, { + "ID": 16308, + "SourceStructureID": 72252, + "TargetStructureID": 82977, + "Label": "72252-82977 via Ribbon Synapse from 82982 -> 82984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82982, + "TargetID": 82984, + "Directional": true + }] + }, { + "ID": 16309, + "SourceStructureID": 72252, + "TargetStructureID": 82978, + "Label": "72252-82978 via Ribbon Synapse from 82973 -> 82979", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82973, + "TargetID": 82979, + "Directional": true + }] + }, { + "ID": 16310, + "SourceStructureID": 72271, + "TargetStructureID": 6115, + "Label": "72271-6115 via Conventional from 72277 -> 72278", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72277, + "TargetID": 72278, + "Directional": true + }] + }, { + "ID": 16311, + "SourceStructureID": 72281, + "TargetStructureID": 6115, + "Label": "72281-6115 via Conventional from 72282 -> 72283", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72282, + "TargetID": 72283, + "Directional": true + }] + }, { + "ID": 16312, + "SourceStructureID": 72291, + "TargetStructureID": 6115, + "Label": "72291-6115 via Conventional from 72292 -> 72293", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72292, + "TargetID": 72293, + "Directional": true + }] + }, { + "ID": 16313, + "SourceStructureID": 72301, + "TargetStructureID": 6115, + "Label": "72301-6115 via Conventional from 72302 -> 72303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72302, + "TargetID": 72303, + "Directional": true + }] + }, { + "ID": 16314, + "SourceStructureID": 72306, + "TargetStructureID": 6115, + "Label": "72306-6115 via Conventional from 72307 -> 72308", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72307, + "TargetID": 72308, + "Directional": true + }] + }, { + "ID": 16315, + "SourceStructureID": 72309, + "TargetStructureID": 6115, + "Label": "72309-6115 via Conventional from 72317 -> 72318", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72317, + "TargetID": 72318, + "Directional": true + }] + }, { + "ID": 16316, + "SourceStructureID": 72323, + "TargetStructureID": 6115, + "Label": "72323-6115 via Conventional from 72324 -> 72325", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72324, + "TargetID": 72325, + "Directional": true + }] + }, { + "ID": 16317, + "SourceStructureID": 72335, + "TargetStructureID": 6115, + "Label": "72335-6115 via Conventional from 72336 -> 72337", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72336, + "TargetID": 72337, + "Directional": true + }] + }, { + "ID": 16318, + "SourceStructureID": 72342, + "TargetStructureID": 6115, + "Label": "72342-6115 via Conventional from 72343 -> 20430", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72343, + "TargetID": 20430, + "Directional": true + }] + }, { + "ID": 16319, + "SourceStructureID": 72344, + "TargetStructureID": 6115, + "Label": "72344-6115 via Conventional from 72346 -> 72345", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72346, + "TargetID": 72345, + "Directional": true + }] + }, { + "ID": 16320, + "SourceStructureID": 72347, + "TargetStructureID": 6115, + "Label": "72347-6115 via Conventional from 72349 -> 72348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72349, + "TargetID": 72348, + "Directional": true + }] + }, { + "ID": 16321, + "SourceStructureID": 72350, + "TargetStructureID": 6115, + "Label": "72350-6115 via Conventional from 72351 -> 72352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72351, + "TargetID": 72352, + "Directional": true + }] + }, { + "ID": 16322, + "SourceStructureID": 72358, + "TargetStructureID": 6050, + "Label": "72358-6050 via Conventional from 72361 -> 72362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72361, + "TargetID": 72362, + "Directional": true + }] + }, { + "ID": 16323, + "SourceStructureID": 72379, + "TargetStructureID": 6115, + "Label": "72379-6115 via Conventional from 72380 -> 72381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72380, + "TargetID": 72381, + "Directional": true + }] + }, { + "ID": 16324, + "SourceStructureID": 72384, + "TargetStructureID": 68663, + "Label": "72384-68663 via Conventional from 79049 -> 79050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79049, + "TargetID": 79050, + "Directional": true + }] + }, { + "ID": 16325, + "SourceStructureID": 72385, + "TargetStructureID": 6115, + "Label": "72385-6115 via Conventional from 72386 -> 55850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72386, + "TargetID": 55850, + "Directional": true + }] + }, { + "ID": 16326, + "SourceStructureID": 72401, + "TargetStructureID": 6115, + "Label": "72401-6115 via Conventional from 72421 -> 72420", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72421, + "TargetID": 72420, + "Directional": true + }] + }, { + "ID": 16327, + "SourceStructureID": 72402, + "TargetStructureID": 18282, + "Label": "72402-18282 via Ribbon Synapse from 72404 -> 18327", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 72404, + "TargetID": 18327, + "Directional": true + }] + }, { + "ID": 16328, + "SourceStructureID": 72408, + "TargetStructureID": 8580, + "Label": "72408-8580 via Conventional from 72409 -> 72407", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72409, + "TargetID": 72407, + "Directional": true + }] + }, { + "ID": 16329, + "SourceStructureID": 72427, + "TargetStructureID": 593, + "Label": "72427-593 via Conventional from 72428 -> 72429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72428, + "TargetID": 72429, + "Directional": true + }] + }, { + "ID": 16330, + "SourceStructureID": 72441, + "TargetStructureID": 6115, + "Label": "72441-6115 via Conventional from 72442 -> 72443", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72442, + "TargetID": 72443, + "Directional": true + }] + }, { + "ID": 16331, + "SourceStructureID": 72451, + "TargetStructureID": 6115, + "Label": "72451-6115 via Conventional from 72452 -> 16055", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72452, + "TargetID": 16055, + "Directional": true + }] + }, { + "ID": 16332, + "SourceStructureID": 72453, + "TargetStructureID": 6115, + "Label": "72453-6115 via Conventional from 72454 -> 72455", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72454, + "TargetID": 72455, + "Directional": true + }] + }, { + "ID": 16333, + "SourceStructureID": 72460, + "TargetStructureID": 6115, + "Label": "72460-6115 via Conventional from 72461 -> 55856", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72461, + "TargetID": 55856, + "Directional": true + }] + }, { + "ID": 16334, + "SourceStructureID": 72463, + "TargetStructureID": 6115, + "Label": "72463-6115 via Conventional from 72464 -> 55857", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72464, + "TargetID": 55857, + "Directional": true + }] + }, { + "ID": 16335, + "SourceStructureID": 72474, + "TargetStructureID": 8580, + "Label": "72474-8580 via Conventional from 72475 -> 72476", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72475, + "TargetID": 72476, + "Directional": true + }] + }, { + "ID": 16336, + "SourceStructureID": 72477, + "TargetStructureID": 8580, + "Label": "72477-8580 via Conventional from 72478 -> 72479", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72478, + "TargetID": 72479, + "Directional": true + }] + }, { + "ID": 16337, + "SourceStructureID": 72480, + "TargetStructureID": 8580, + "Label": "72480-8580 via Conventional from 72481 -> 72482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72481, + "TargetID": 72482, + "Directional": true + }] + }, { + "ID": 16338, + "SourceStructureID": 72505, + "TargetStructureID": 6115, + "Label": "72505-6115 via Conventional from 72512 -> 55851", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72512, + "TargetID": 55851, + "Directional": true + }] + }, { + "ID": 16339, + "SourceStructureID": 72523, + "TargetStructureID": 44970, + "Label": "72523-44970 via Conventional from 82431 -> 44980", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82431, + "TargetID": 44980, + "Directional": true + }] + }, { + "ID": 16340, + "SourceStructureID": 72523, + "TargetStructureID": 82432, + "Label": "72523-82432 via Conventional from 82433 -> 82434", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82433, + "TargetID": 82434, + "Directional": true + }] + }, { + "ID": 16341, + "SourceStructureID": 72526, + "TargetStructureID": 6115, + "Label": "72526-6115 via Conventional from 72527 -> 72528", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72527, + "TargetID": 72528, + "Directional": true + }] + }, { + "ID": 16342, + "SourceStructureID": 72547, + "TargetStructureID": 6115, + "Label": "72547-6115 via Conventional from 72548 -> 72549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72548, + "TargetID": 72549, + "Directional": true + }] + }, { + "ID": 16343, + "SourceStructureID": 72550, + "TargetStructureID": 6115, + "Label": "72550-6115 via Conventional from 72551 -> 72552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72551, + "TargetID": 72552, + "Directional": true + }] + }, { + "ID": 16344, + "SourceStructureID": 72553, + "TargetStructureID": 6115, + "Label": "72553-6115 via Conventional from 72554 -> 72555", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72554, + "TargetID": 72555, + "Directional": true + }] + }, { + "ID": 16345, + "SourceStructureID": 72563, + "TargetStructureID": 6115, + "Label": "72563-6115 via Conventional from 72564 -> 72565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72564, + "TargetID": 72565, + "Directional": true + }] + }, { + "ID": 16346, + "SourceStructureID": 72566, + "TargetStructureID": 6115, + "Label": "72566-6115 via Conventional from 73157 -> 73158, 73159 -> 73160", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73157, + "TargetID": 73158, + "Directional": true + }, { + "SourceID": 73159, + "TargetID": 73160, + "Directional": true + }] + }, { + "ID": 16347, + "SourceStructureID": 72566, + "TargetStructureID": 72604, + "Label": "72566-72604 via Adherens from 81893 -> 81892", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 81893, + "TargetID": 81892, + "Directional": true + }] + }, { + "ID": 16348, + "SourceStructureID": 72569, + "TargetStructureID": 6115, + "Label": "72569-6115 via Conventional from 72570 -> 72571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72570, + "TargetID": 72571, + "Directional": true + }] + }, { + "ID": 16349, + "SourceStructureID": 72587, + "TargetStructureID": 6115, + "Label": "72587-6115 via Conventional from 72588 -> 59600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72588, + "TargetID": 59600, + "Directional": true + }] + }, { + "ID": 16350, + "SourceStructureID": 72604, + "TargetStructureID": 82559, + "Label": "72604-82559 via Conventional from 82297 -> 82560", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82297, + "TargetID": 82560, + "Directional": true + }] + }, { + "ID": 16351, + "SourceStructureID": 72609, + "TargetStructureID": 6115, + "Label": "72609-6115 via Conventional from 72610 -> 59603", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72610, + "TargetID": 59603, + "Directional": true + }] + }, { + "ID": 16352, + "SourceStructureID": 72614, + "TargetStructureID": 6115, + "Label": "72614-6115 via Conventional from 72615 -> 59602", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72615, + "TargetID": 59602, + "Directional": true + }] + }, { + "ID": 16353, + "SourceStructureID": 72616, + "TargetStructureID": 6115, + "Label": "72616-6115 via Conventional from 72617 -> 59601", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72617, + "TargetID": 59601, + "Directional": true + }] + }, { + "ID": 16354, + "SourceStructureID": 72623, + "TargetStructureID": 6115, + "Label": "72623-6115 via Unknown from 72625 -> 72624", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 72625, + "TargetID": 72624, + "Directional": true + }] + }, { + "ID": 16355, + "SourceStructureID": 72638, + "TargetStructureID": 180, + "Label": "72638-180 via Conventional from 133032 -> 132936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133032, + "TargetID": 132936, + "Directional": true + }] + }, { + "ID": 16356, + "SourceStructureID": 72640, + "TargetStructureID": 6115, + "Label": "72640-6115 via Conventional from 72641 -> 72642", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72641, + "TargetID": 72642, + "Directional": true + }] + }, { + "ID": 16357, + "SourceStructureID": 72688, + "TargetStructureID": 6115, + "Label": "72688-6115 via Conventional from 72689 -> 59598", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72689, + "TargetID": 59598, + "Directional": true + }] + }, { + "ID": 16358, + "SourceStructureID": 72705, + "TargetStructureID": 6115, + "Label": "72705-6115 via Conventional from 72706 -> 72707", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72706, + "TargetID": 72707, + "Directional": true + }] + }, { + "ID": 16359, + "SourceStructureID": 72713, + "TargetStructureID": 6115, + "Label": "72713-6115 via Conventional from 72714 -> 72715", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72714, + "TargetID": 72715, + "Directional": true + }] + }, { + "ID": 16360, + "SourceStructureID": 72766, + "TargetStructureID": 6115, + "Label": "72766-6115 via Conventional from 82639 -> 82640", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82639, + "TargetID": 82640, + "Directional": true + }] + }, { + "ID": 16361, + "SourceStructureID": 72778, + "TargetStructureID": 6115, + "Label": "72778-6115 via Conventional from 72779 -> 72780", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72779, + "TargetID": 72780, + "Directional": true + }] + }, { + "ID": 16362, + "SourceStructureID": 72799, + "TargetStructureID": 6115, + "Label": "72799-6115 via Conventional from 72800 -> 55800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72800, + "TargetID": 55800, + "Directional": true + }] + }, { + "ID": 16363, + "SourceStructureID": 72807, + "TargetStructureID": 6115, + "Label": "72807-6115 via Conventional from 72808 -> 72809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72808, + "TargetID": 72809, + "Directional": true + }] + }, { + "ID": 16364, + "SourceStructureID": 72810, + "TargetStructureID": 6115, + "Label": "72810-6115 via Conventional from 72811 -> 72812", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72811, + "TargetID": 72812, + "Directional": true + }] + }, { + "ID": 16365, + "SourceStructureID": 72815, + "TargetStructureID": 6115, + "Label": "72815-6115 via Conventional from 72816 -> 72817", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72816, + "TargetID": 72817, + "Directional": true + }] + }, { + "ID": 16366, + "SourceStructureID": 72819, + "TargetStructureID": 6115, + "Label": "72819-6115 via Conventional from 72820 -> 55804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72820, + "TargetID": 55804, + "Directional": true + }] + }, { + "ID": 16367, + "SourceStructureID": 72823, + "TargetStructureID": 6115, + "Label": "72823-6115 via Conventional from 72824 -> 72825", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72824, + "TargetID": 72825, + "Directional": true + }] + }, { + "ID": 16368, + "SourceStructureID": 72834, + "TargetStructureID": 6115, + "Label": "72834-6115 via Conventional from 80967 -> 80968", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80967, + "TargetID": 80968, + "Directional": true + }] + }, { + "ID": 16369, + "SourceStructureID": 72844, + "TargetStructureID": 6115, + "Label": "72844-6115 via Conventional from 72845 -> 72846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72845, + "TargetID": 72846, + "Directional": true + }] + }, { + "ID": 16370, + "SourceStructureID": 72847, + "TargetStructureID": 6115, + "Label": "72847-6115 via Conventional from 72848 -> 72849", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72848, + "TargetID": 72849, + "Directional": true + }] + }, { + "ID": 16371, + "SourceStructureID": 72855, + "TargetStructureID": 68539, + "Label": "72855-68539 via Conventional from 72856 -> 72854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72856, + "TargetID": 72854, + "Directional": true + }] + }, { + "ID": 16372, + "SourceStructureID": 72858, + "TargetStructureID": 68539, + "Label": "72858-68539 via Conventional from 72859 -> 72862, 72860 -> 72861", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72859, + "TargetID": 72862, + "Directional": true + }, { + "SourceID": 72860, + "TargetID": 72861, + "Directional": true + }] + }, { + "ID": 16373, + "SourceStructureID": 72865, + "TargetStructureID": 68539, + "Label": "72865-68539 via Conventional from 72866 -> 72867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72866, + "TargetID": 72867, + "Directional": true + }] + }, { + "ID": 16374, + "SourceStructureID": 72873, + "TargetStructureID": 68539, + "Label": "72873-68539 via Conventional from 72874 -> 72886", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72874, + "TargetID": 72886, + "Directional": true + }] + }, { + "ID": 16375, + "SourceStructureID": 72876, + "TargetStructureID": 68539, + "Label": "72876-68539 via Conventional from 72878 -> 72890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72878, + "TargetID": 72890, + "Directional": true + }] + }, { + "ID": 16376, + "SourceStructureID": 72879, + "TargetStructureID": 68539, + "Label": "72879-68539 via Conventional from 72880 -> 72891", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72880, + "TargetID": 72891, + "Directional": true + }] + }, { + "ID": 16377, + "SourceStructureID": 72882, + "TargetStructureID": 72876, + "Label": "72882-72876 via Conventional from 72883 -> 72877", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72883, + "TargetID": 72877, + "Directional": true + }] + }, { + "ID": 16378, + "SourceStructureID": 72892, + "TargetStructureID": 142, + "Label": "72892-142 via Conventional from 72893 -> 49766", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72893, + "TargetID": 49766, + "Directional": true + }] + }, { + "ID": 16379, + "SourceStructureID": 72907, + "TargetStructureID": 6115, + "Label": "72907-6115 via Conventional from 72908 -> 72909", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72908, + "TargetID": 72909, + "Directional": true + }] + }, { + "ID": 16380, + "SourceStructureID": 72934, + "TargetStructureID": 6115, + "Label": "72934-6115 via Conventional from 72935 -> 72933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72935, + "TargetID": 72933, + "Directional": true + }] + }, { + "ID": 16381, + "SourceStructureID": 72936, + "TargetStructureID": 6115, + "Label": "72936-6115 via Conventional from 72937 -> 55913, 72938 -> 55913", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72937, + "TargetID": 55913, + "Directional": true + }, { + "SourceID": 72938, + "TargetID": 55913, + "Directional": true + }] + }, { + "ID": 16382, + "SourceStructureID": 72939, + "TargetStructureID": 6115, + "Label": "72939-6115 via Conventional from 72940 -> 55912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72940, + "TargetID": 55912, + "Directional": true + }] + }, { + "ID": 16383, + "SourceStructureID": 72949, + "TargetStructureID": 6115, + "Label": "72949-6115 via Conventional from 72950 -> 72951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72950, + "TargetID": 72951, + "Directional": true + }] + }, { + "ID": 16384, + "SourceStructureID": 72964, + "TargetStructureID": 6115, + "Label": "72964-6115 via Conventional from 72966 -> 55777", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72966, + "TargetID": 55777, + "Directional": true + }] + }, { + "ID": 16385, + "SourceStructureID": 72965, + "TargetStructureID": 6115, + "Label": "72965-6115 via Conventional from 72967 -> 72968", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72967, + "TargetID": 72968, + "Directional": true + }] + }, { + "ID": 16386, + "SourceStructureID": 72965, + "TargetStructureID": 72969, + "Label": "72965-72969 via Conventional from 72967 -> 72970", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72967, + "TargetID": 72970, + "Directional": true + }] + }, { + "ID": 16387, + "SourceStructureID": 72973, + "TargetStructureID": 6115, + "Label": "72973-6115 via Conventional from 72974 -> 55907", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72974, + "TargetID": 55907, + "Directional": true + }] + }, { + "ID": 16388, + "SourceStructureID": 72975, + "TargetStructureID": 6115, + "Label": "72975-6115 via Conventional from 72976 -> 72977", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72976, + "TargetID": 72977, + "Directional": true + }] + }, { + "ID": 16389, + "SourceStructureID": 72987, + "TargetStructureID": 6115, + "Label": "72987-6115 via Conventional from 72996 -> 72997, 73016 -> 55900", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72996, + "TargetID": 72997, + "Directional": true + }, { + "SourceID": 73016, + "TargetID": 55900, + "Directional": true + }] + }, { + "ID": 16390, + "SourceStructureID": 72989, + "TargetStructureID": 16026, + "Label": "72989-16026 via Conventional from 115224 -> 25647", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115224, + "TargetID": 25647, + "Directional": true + }] + }, { + "ID": 16391, + "SourceStructureID": 72989, + "TargetStructureID": 72994, + "Label": "72989-72994 via Conventional from 72990 -> 72995", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72990, + "TargetID": 72995, + "Directional": true + }] + }, { + "ID": 16392, + "SourceStructureID": 72992, + "TargetStructureID": 72989, + "Label": "72992-72989 via Conventional from 72993 -> 72991", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 72993, + "TargetID": 72991, + "Directional": true + }] + }, { + "ID": 16393, + "SourceStructureID": 73004, + "TargetStructureID": 6115, + "Label": "73004-6115 via Conventional from 73012 -> 75995", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73012, + "TargetID": 75995, + "Directional": true + }] + }, { + "ID": 16394, + "SourceStructureID": 73006, + "TargetStructureID": 6115, + "Label": "73006-6115 via Conventional from 73013 -> 73014", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73013, + "TargetID": 73014, + "Directional": true + }] + }, { + "ID": 16395, + "SourceStructureID": 73018, + "TargetStructureID": 6115, + "Label": "73018-6115 via Conventional from 73019 -> 73020", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73019, + "TargetID": 73020, + "Directional": true + }] + }, { + "ID": 16396, + "SourceStructureID": 73025, + "TargetStructureID": 6115, + "Label": "73025-6115 via Conventional from 73026 -> 55897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73026, + "TargetID": 55897, + "Directional": true + }] + }, { + "ID": 16397, + "SourceStructureID": 73033, + "TargetStructureID": 6115, + "Label": "73033-6115 via Conventional from 73034 -> 73035", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73034, + "TargetID": 73035, + "Directional": true + }] + }, { + "ID": 16398, + "SourceStructureID": 73072, + "TargetStructureID": 6115, + "Label": "73072-6115 via Conventional from 73073 -> 73074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73073, + "TargetID": 73074, + "Directional": true + }] + }, { + "ID": 16399, + "SourceStructureID": 73075, + "TargetStructureID": 6115, + "Label": "73075-6115 via Conventional from 73076 -> 73077", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73076, + "TargetID": 73077, + "Directional": true + }] + }, { + "ID": 16400, + "SourceStructureID": 73078, + "TargetStructureID": 6115, + "Label": "73078-6115 via Conventional from 73079 -> 73080", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73079, + "TargetID": 73080, + "Directional": true + }] + }, { + "ID": 16401, + "SourceStructureID": 73086, + "TargetStructureID": 6115, + "Label": "73086-6115 via Conventional from 84274 -> 73085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84274, + "TargetID": 73085, + "Directional": true + }] + }, { + "ID": 16402, + "SourceStructureID": 73099, + "TargetStructureID": 6115, + "Label": "73099-6115 via Conventional from 73100 -> 73101", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73100, + "TargetID": 73101, + "Directional": true + }] + }, { + "ID": 16403, + "SourceStructureID": 73102, + "TargetStructureID": 6115, + "Label": "73102-6115 via Conventional from 73103 -> 73104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73103, + "TargetID": 73104, + "Directional": true + }] + }, { + "ID": 16404, + "SourceStructureID": 73105, + "TargetStructureID": 6115, + "Label": "73105-6115 via Conventional from 73106 -> 73107", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73106, + "TargetID": 73107, + "Directional": true + }] + }, { + "ID": 16405, + "SourceStructureID": 73133, + "TargetStructureID": 6115, + "Label": "73133-6115 via Conventional from 73134 -> 73135", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73134, + "TargetID": 73135, + "Directional": true + }] + }, { + "ID": 16406, + "SourceStructureID": 73144, + "TargetStructureID": 6115, + "Label": "73144-6115 via Conventional from 73152 -> 73153", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73152, + "TargetID": 73153, + "Directional": true + }] + }, { + "ID": 16407, + "SourceStructureID": 73146, + "TargetStructureID": 6115, + "Label": "73146-6115 via Conventional from 73148 -> 73147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73148, + "TargetID": 73147, + "Directional": true + }] + }, { + "ID": 16408, + "SourceStructureID": 73163, + "TargetStructureID": 68548, + "Label": "73163-68548 via Conventional from 73164 -> 73162", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73164, + "TargetID": 73162, + "Directional": true + }] + }, { + "ID": 16409, + "SourceStructureID": 73166, + "TargetStructureID": 68548, + "Label": "73166-68548 via Conventional from 73167 -> 73168", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73167, + "TargetID": 73168, + "Directional": true + }] + }, { + "ID": 16410, + "SourceStructureID": 73185, + "TargetStructureID": 6115, + "Label": "73185-6115 via Conventional from 73186 -> 73187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73186, + "TargetID": 73187, + "Directional": true + }] + }, { + "ID": 16411, + "SourceStructureID": 73190, + "TargetStructureID": 6115, + "Label": "73190-6115 via Conventional from 73191 -> 73192", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73191, + "TargetID": 73192, + "Directional": true + }] + }, { + "ID": 16412, + "SourceStructureID": 73197, + "TargetStructureID": 6115, + "Label": "73197-6115 via Conventional from 73198 -> 73199", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73198, + "TargetID": 73199, + "Directional": true + }] + }, { + "ID": 16413, + "SourceStructureID": 73200, + "TargetStructureID": 6115, + "Label": "73200-6115 via Conventional from 73201 -> 73202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73201, + "TargetID": 73202, + "Directional": true + }] + }, { + "ID": 16414, + "SourceStructureID": 73211, + "TargetStructureID": 6115, + "Label": "73211-6115 via Conventional from 73265 -> 73266", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73265, + "TargetID": 73266, + "Directional": true + }] + }, { + "ID": 16415, + "SourceStructureID": 73212, + "TargetStructureID": 6115, + "Label": "73212-6115 via Conventional from 73213 -> 73214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73213, + "TargetID": 73214, + "Directional": true + }] + }, { + "ID": 16416, + "SourceStructureID": 73225, + "TargetStructureID": 6115, + "Label": "73225-6115 via Conventional from 73226 -> 73227", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73226, + "TargetID": 73227, + "Directional": true + }] + }, { + "ID": 16417, + "SourceStructureID": 73290, + "TargetStructureID": 73273, + "Label": "73290-73273 via Conventional from 73291 -> 73292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73291, + "TargetID": 73292, + "Directional": true + }] + }, { + "ID": 16418, + "SourceStructureID": 73299, + "TargetStructureID": 6115, + "Label": "73299-6115 via Conventional from 73300 -> 55880", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73300, + "TargetID": 55880, + "Directional": true + }] + }, { + "ID": 16419, + "SourceStructureID": 73309, + "TargetStructureID": 6115, + "Label": "73309-6115 via Conventional from 73311 -> 73310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73311, + "TargetID": 73310, + "Directional": true + }] + }, { + "ID": 16420, + "SourceStructureID": 73314, + "TargetStructureID": 68539, + "Label": "73314-68539 via Conventional from 73315 -> 73061", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73315, + "TargetID": 73061, + "Directional": true + }] + }, { + "ID": 16421, + "SourceStructureID": 73322, + "TargetStructureID": 68539, + "Label": "73322-68539 via Conventional from 73326 -> 73327", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73326, + "TargetID": 73327, + "Directional": true + }] + }, { + "ID": 16422, + "SourceStructureID": 73339, + "TargetStructureID": 82039, + "Label": "73339-82039 via Conventional from 82040 -> 82041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82040, + "TargetID": 82041, + "Directional": true + }] + }, { + "ID": 16423, + "SourceStructureID": 73342, + "TargetStructureID": 68539, + "Label": "73342-68539 via Conventional from 73344 -> 73345", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73344, + "TargetID": 73345, + "Directional": true + }] + }, { + "ID": 16424, + "SourceStructureID": 73348, + "TargetStructureID": 5598, + "Label": "73348-5598 via Conventional from 73349 -> 59064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73349, + "TargetID": 59064, + "Directional": true + }] + }, { + "ID": 16425, + "SourceStructureID": 73353, + "TargetStructureID": 68539, + "Label": "73353-68539 via Conventional from 73354 -> 73355", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73354, + "TargetID": 73355, + "Directional": true + }] + }, { + "ID": 16426, + "SourceStructureID": 73357, + "TargetStructureID": 68539, + "Label": "73357-68539 via Conventional from 73358 -> 73356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73358, + "TargetID": 73356, + "Directional": true + }] + }, { + "ID": 16427, + "SourceStructureID": 73363, + "TargetStructureID": 68539, + "Label": "73363-68539 via Conventional from 73364 -> 73362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73364, + "TargetID": 73362, + "Directional": true + }] + }, { + "ID": 16428, + "SourceStructureID": 73371, + "TargetStructureID": 68539, + "Label": "73371-68539 via Conventional from 73379 -> 73383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73379, + "TargetID": 73383, + "Directional": true + }] + }, { + "ID": 16429, + "SourceStructureID": 73384, + "TargetStructureID": 68539, + "Label": "73384-68539 via Conventional from 73385 -> 73389", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73385, + "TargetID": 73389, + "Directional": true + }] + }, { + "ID": 16430, + "SourceStructureID": 73394, + "TargetStructureID": 68539, + "Label": "73394-68539 via Conventional from 73420 -> 73421", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73420, + "TargetID": 73421, + "Directional": true + }] + }, { + "ID": 16431, + "SourceStructureID": 73394, + "TargetStructureID": 73397, + "Label": "73394-73397 via Conventional from 73395 -> 73398", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73395, + "TargetID": 73398, + "Directional": true + }] + }, { + "ID": 16432, + "SourceStructureID": 73397, + "TargetStructureID": 73416, + "Label": "73397-73416 via Conventional from 73410 -> 73417", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73410, + "TargetID": 73417, + "Directional": true + }] + }, { + "ID": 16433, + "SourceStructureID": 73422, + "TargetStructureID": 6115, + "Label": "73422-6115 via Conventional from 73423 -> 73424", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73423, + "TargetID": 73424, + "Directional": true + }] + }, { + "ID": 16434, + "SourceStructureID": 73426, + "TargetStructureID": 6115, + "Label": "73426-6115 via Conventional from 116709 -> 73459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116709, + "TargetID": 73459, + "Directional": true + }] + }, { + "ID": 16435, + "SourceStructureID": 73430, + "TargetStructureID": 6115, + "Label": "73430-6115 via Conventional from 73431 -> 73432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73431, + "TargetID": 73432, + "Directional": true + }] + }, { + "ID": 16436, + "SourceStructureID": 73443, + "TargetStructureID": 6115, + "Label": "73443-6115 via Conventional from 73454 -> 73456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73454, + "TargetID": 73456, + "Directional": true + }] + }, { + "ID": 16437, + "SourceStructureID": 73453, + "TargetStructureID": 68539, + "Label": "73453-68539 via Conventional from 73455 -> 73452", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73455, + "TargetID": 73452, + "Directional": true + }] + }, { + "ID": 16438, + "SourceStructureID": 73467, + "TargetStructureID": 5649, + "Label": "73467-5649 via Conventional from 75677 -> 53847", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75677, + "TargetID": 53847, + "Directional": true + }] + }, { + "ID": 16439, + "SourceStructureID": 73467, + "TargetStructureID": 68548, + "Label": "73467-68548 via Conventional from 73468 -> 73469", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73468, + "TargetID": 73469, + "Directional": true + }] + }, { + "ID": 16440, + "SourceStructureID": 73476, + "TargetStructureID": 6115, + "Label": "73476-6115 via Conventional from 134225 -> 134226", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134225, + "TargetID": 134226, + "Directional": true + }] + }, { + "ID": 16441, + "SourceStructureID": 73488, + "TargetStructureID": 6115, + "Label": "73488-6115 via Conventional from 73498 -> 73499", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73498, + "TargetID": 73499, + "Directional": true + }] + }, { + "ID": 16442, + "SourceStructureID": 73509, + "TargetStructureID": 6115, + "Label": "73509-6115 via Conventional from 73512 -> 73513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73512, + "TargetID": 73513, + "Directional": true + }] + }, { + "ID": 16443, + "SourceStructureID": 73514, + "TargetStructureID": 6115, + "Label": "73514-6115 via Conventional from 73515 -> 73516", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73515, + "TargetID": 73516, + "Directional": true + }] + }, { + "ID": 16444, + "SourceStructureID": 73518, + "TargetStructureID": 6115, + "Label": "73518-6115 via Conventional from 73519 -> 73520", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73519, + "TargetID": 73520, + "Directional": true + }] + }, { + "ID": 16445, + "SourceStructureID": 73524, + "TargetStructureID": 6115, + "Label": "73524-6115 via Conventional from 73530 -> 73531", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73530, + "TargetID": 73531, + "Directional": true + }] + }, { + "ID": 16446, + "SourceStructureID": 73535, + "TargetStructureID": 6115, + "Label": "73535-6115 via Conventional from 134227 -> 134228", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134227, + "TargetID": 134228, + "Directional": true + }] + }, { + "ID": 16447, + "SourceStructureID": 73542, + "TargetStructureID": 6115, + "Label": "73542-6115 via Conventional from 73549 -> 73550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73549, + "TargetID": 73550, + "Directional": true + }] + }, { + "ID": 16448, + "SourceStructureID": 73573, + "TargetStructureID": 68548, + "Label": "73573-68548 via Conventional from 73575 -> 73576", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73575, + "TargetID": 73576, + "Directional": true + }] + }, { + "ID": 16449, + "SourceStructureID": 73583, + "TargetStructureID": 5442, + "Label": "73583-5442 via Conventional from 73584 -> 73582", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73584, + "TargetID": 73582, + "Directional": true + }] + }, { + "ID": 16450, + "SourceStructureID": 73601, + "TargetStructureID": 68539, + "Label": "73601-68539 via Conventional from 73602 -> 73600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73602, + "TargetID": 73600, + "Directional": true + }] + }, { + "ID": 16451, + "SourceStructureID": 73605, + "TargetStructureID": 68539, + "Label": "73605-68539 via Conventional from 73608 -> 73604", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73608, + "TargetID": 73604, + "Directional": true + }] + }, { + "ID": 16452, + "SourceStructureID": 73606, + "TargetStructureID": 8580, + "Label": "73606-8580 via Conventional from 73607 -> 73609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73607, + "TargetID": 73609, + "Directional": true + }] + }, { + "ID": 16453, + "SourceStructureID": 73611, + "TargetStructureID": 68539, + "Label": "73611-68539 via Conventional from 73612 -> 73610", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73612, + "TargetID": 73610, + "Directional": true + }] + }, { + "ID": 16454, + "SourceStructureID": 73613, + "TargetStructureID": 68539, + "Label": "73613-68539 via Conventional from 73614 -> 73615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73614, + "TargetID": 73615, + "Directional": true + }] + }, { + "ID": 16455, + "SourceStructureID": 73619, + "TargetStructureID": 8580, + "Label": "73619-8580 via Conventional from 73622 -> 73626", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73622, + "TargetID": 73626, + "Directional": true + }] + }, { + "ID": 16456, + "SourceStructureID": 73620, + "TargetStructureID": 68539, + "Label": "73620-68539 via Conventional from 73634 -> 73633", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73634, + "TargetID": 73633, + "Directional": true + }] + }, { + "ID": 16457, + "SourceStructureID": 73621, + "TargetStructureID": 68539, + "Label": "73621-68539 via Conventional from 73630 -> 73632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73630, + "TargetID": 73632, + "Directional": true + }] + }, { + "ID": 16458, + "SourceStructureID": 73628, + "TargetStructureID": 8580, + "Label": "73628-8580 via Conventional from 73629 -> 73627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73629, + "TargetID": 73627, + "Directional": true + }] + }, { + "ID": 16459, + "SourceStructureID": 73635, + "TargetStructureID": 68539, + "Label": "73635-68539 via Conventional from 73636 -> 73637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73636, + "TargetID": 73637, + "Directional": true + }] + }, { + "ID": 16460, + "SourceStructureID": 73639, + "TargetStructureID": 73635, + "Label": "73639-73635 via Conventional from 73640 -> 73638", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73640, + "TargetID": 73638, + "Directional": true + }] + }, { + "ID": 16461, + "SourceStructureID": 73646, + "TargetStructureID": 68539, + "Label": "73646-68539 via Conventional from 73647 -> 73648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73647, + "TargetID": 73648, + "Directional": true + }] + }, { + "ID": 16462, + "SourceStructureID": 73649, + "TargetStructureID": 68539, + "Label": "73649-68539 via Conventional from 73650 -> 73651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73650, + "TargetID": 73651, + "Directional": true + }] + }, { + "ID": 16463, + "SourceStructureID": 73652, + "TargetStructureID": 68539, + "Label": "73652-68539 via Conventional from 73653 -> 73654", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73653, + "TargetID": 73654, + "Directional": true + }] + }, { + "ID": 16464, + "SourceStructureID": 73658, + "TargetStructureID": 73655, + "Label": "73658-73655 via Conventional from 73659 -> 73656", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73659, + "TargetID": 73656, + "Directional": true + }] + }, { + "ID": 16465, + "SourceStructureID": 73662, + "TargetStructureID": 73655, + "Label": "73662-73655 via Conventional from 73663 -> 73661", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73663, + "TargetID": 73661, + "Directional": true + }] + }, { + "ID": 16466, + "SourceStructureID": 73671, + "TargetStructureID": 8580, + "Label": "73671-8580 via Conventional from 73672 -> 73670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73672, + "TargetID": 73670, + "Directional": true + }] + }, { + "ID": 16467, + "SourceStructureID": 73683, + "TargetStructureID": 68539, + "Label": "73683-68539 via Conventional from 73684 -> 73685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73684, + "TargetID": 73685, + "Directional": true + }] + }, { + "ID": 16468, + "SourceStructureID": 73687, + "TargetStructureID": 68539, + "Label": "73687-68539 via Conventional from 73688 -> 73689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73688, + "TargetID": 73689, + "Directional": true + }] + }, { + "ID": 16469, + "SourceStructureID": 73690, + "TargetStructureID": 68539, + "Label": "73690-68539 via Conventional from 73691 -> 73695", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73691, + "TargetID": 73695, + "Directional": true + }] + }, { + "ID": 16470, + "SourceStructureID": 73693, + "TargetStructureID": 73690, + "Label": "73693-73690 via Conventional from 73694 -> 73692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73694, + "TargetID": 73692, + "Directional": true + }] + }, { + "ID": 16471, + "SourceStructureID": 73698, + "TargetStructureID": 68539, + "Label": "73698-68539 via Conventional from 73699 -> 73700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73699, + "TargetID": 73700, + "Directional": true + }] + }, { + "ID": 16472, + "SourceStructureID": 73702, + "TargetStructureID": 68539, + "Label": "73702-68539 via Conventional from 73703 -> 73701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73703, + "TargetID": 73701, + "Directional": true + }] + }, { + "ID": 16473, + "SourceStructureID": 73704, + "TargetStructureID": 5531, + "Label": "73704-5531 via Conventional from 105308 -> 105309", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105308, + "TargetID": 105309, + "Directional": true + }] + }, { + "ID": 16474, + "SourceStructureID": 73704, + "TargetStructureID": 8580, + "Label": "73704-8580 via Conventional from 73706 -> 73705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73706, + "TargetID": 73705, + "Directional": true + }] + }, { + "ID": 16475, + "SourceStructureID": 73707, + "TargetStructureID": 68539, + "Label": "73707-68539 via Conventional from 73708 -> 73709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73708, + "TargetID": 73709, + "Directional": true + }] + }, { + "ID": 16476, + "SourceStructureID": 73710, + "TargetStructureID": 68539, + "Label": "73710-68539 via Conventional from 73711 -> 73712", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73711, + "TargetID": 73712, + "Directional": true + }] + }, { + "ID": 16477, + "SourceStructureID": 73713, + "TargetStructureID": 8580, + "Label": "73713-8580 via Conventional from 73715 -> 73714", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73715, + "TargetID": 73714, + "Directional": true + }] + }, { + "ID": 16478, + "SourceStructureID": 73720, + "TargetStructureID": 73710, + "Label": "73720-73710 via Conventional from 73721 -> 73717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73721, + "TargetID": 73717, + "Directional": true + }] + }, { + "ID": 16479, + "SourceStructureID": 73722, + "TargetStructureID": 68539, + "Label": "73722-68539 via BC Conventional Synapse from 73723 -> 73724", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73723, + "TargetID": 73724, + "Directional": true + }] + }, { + "ID": 16480, + "SourceStructureID": 73722, + "TargetStructureID": 68539, + "Label": "73722-68539 via Ribbon Synapse from 73726 -> 73727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73726, + "TargetID": 73727, + "Directional": true + }] + }, { + "ID": 16481, + "SourceStructureID": 73722, + "TargetStructureID": 71351, + "Label": "73722-71351 via Ribbon Synapse from 73726 -> 73729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73726, + "TargetID": 73729, + "Directional": true + }] + }, { + "ID": 16482, + "SourceStructureID": 73732, + "TargetStructureID": 8580, + "Label": "73732-8580 via Conventional from 73734 -> 73733", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73734, + "TargetID": 73733, + "Directional": true + }] + }, { + "ID": 16483, + "SourceStructureID": 73735, + "TargetStructureID": 68539, + "Label": "73735-68539 via Conventional from 73736 -> 73737", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73736, + "TargetID": 73737, + "Directional": true + }] + }, { + "ID": 16484, + "SourceStructureID": 73739, + "TargetStructureID": 68539, + "Label": "73739-68539 via Conventional from 73740 -> 73738", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73740, + "TargetID": 73738, + "Directional": true + }] + }, { + "ID": 16485, + "SourceStructureID": 73742, + "TargetStructureID": 68539, + "Label": "73742-68539 via Conventional from 73743 -> 73741, 73744 -> 73745", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73743, + "TargetID": 73741, + "Directional": true + }, { + "SourceID": 73744, + "TargetID": 73745, + "Directional": true + }] + }, { + "ID": 16486, + "SourceStructureID": 73747, + "TargetStructureID": 68539, + "Label": "73747-68539 via Conventional from 73748 -> 73746", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73748, + "TargetID": 73746, + "Directional": true + }] + }, { + "ID": 16487, + "SourceStructureID": 73750, + "TargetStructureID": 68539, + "Label": "73750-68539 via Conventional from 73751 -> 73752, 73755 -> 73754, 73756 -> 73758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73751, + "TargetID": 73752, + "Directional": true + }, { + "SourceID": 73755, + "TargetID": 73754, + "Directional": true + }, { + "SourceID": 73756, + "TargetID": 73758, + "Directional": true + }] + }, { + "ID": 16488, + "SourceStructureID": 73759, + "TargetStructureID": 68539, + "Label": "73759-68539 via Unknown from 73760 -> 73761", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 73760, + "TargetID": 73761, + "Directional": true + }] + }, { + "ID": 16489, + "SourceStructureID": 73764, + "TargetStructureID": 68539, + "Label": "73764-68539 via Conventional from 73765 -> 73763, 73766 -> 73762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73765, + "TargetID": 73763, + "Directional": true + }, { + "SourceID": 73766, + "TargetID": 73762, + "Directional": true + }] + }, { + "ID": 16490, + "SourceStructureID": 73781, + "TargetStructureID": 6115, + "Label": "73781-6115 via Conventional from 73782 -> 73783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73782, + "TargetID": 73783, + "Directional": true + }] + }, { + "ID": 16491, + "SourceStructureID": 73790, + "TargetStructureID": 6115, + "Label": "73790-6115 via Conventional from 73791 -> 73789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73791, + "TargetID": 73789, + "Directional": true + }] + }, { + "ID": 16492, + "SourceStructureID": 73800, + "TargetStructureID": 6115, + "Label": "73800-6115 via Conventional from 73802 -> 73801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73802, + "TargetID": 73801, + "Directional": true + }] + }, { + "ID": 16493, + "SourceStructureID": 73807, + "TargetStructureID": 5650, + "Label": "73807-5650 via Conventional from 82109 -> 82110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82109, + "TargetID": 82110, + "Directional": true + }] + }, { + "ID": 16494, + "SourceStructureID": 73807, + "TargetStructureID": 66523, + "Label": "73807-66523 via Conventional from 75330 -> 75331", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75330, + "TargetID": 75331, + "Directional": true + }] + }, { + "ID": 16495, + "SourceStructureID": 73807, + "TargetStructureID": 82405, + "Label": "73807-82405 via Conventional from 82404 -> 82406", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82404, + "TargetID": 82406, + "Directional": true + }] + }, { + "ID": 16496, + "SourceStructureID": 73810, + "TargetStructureID": 8580, + "Label": "73810-8580 via Conventional from 73811 -> 73812", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73811, + "TargetID": 73812, + "Directional": true + }] + }, { + "ID": 16497, + "SourceStructureID": 73814, + "TargetStructureID": 6115, + "Label": "73814-6115 via Conventional from 73816 -> 73815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73816, + "TargetID": 73815, + "Directional": true + }] + }, { + "ID": 16498, + "SourceStructureID": 73817, + "TargetStructureID": 6115, + "Label": "73817-6115 via Conventional from 73818 -> 73819", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73818, + "TargetID": 73819, + "Directional": true + }] + }, { + "ID": 16499, + "SourceStructureID": 73830, + "TargetStructureID": 352, + "Label": "73830-352 via Conventional from 73831 -> 73829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73831, + "TargetID": 73829, + "Directional": true + }] + }, { + "ID": 16500, + "SourceStructureID": 73833, + "TargetStructureID": 352, + "Label": "73833-352 via Conventional from 73834 -> 73832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73834, + "TargetID": 73832, + "Directional": true + }] + }, { + "ID": 16501, + "SourceStructureID": 73844, + "TargetStructureID": 352, + "Label": "73844-352 via Conventional from 73845 -> 73841", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73845, + "TargetID": 73841, + "Directional": true + }] + }, { + "ID": 16502, + "SourceStructureID": 73844, + "TargetStructureID": 73906, + "Label": "73844-73906 via Conventional from 73902 -> 73908", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73902, + "TargetID": 73908, + "Directional": true + }] + }, { + "ID": 16503, + "SourceStructureID": 73846, + "TargetStructureID": 6115, + "Label": "73846-6115 via Conventional from 73847 -> 73848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73847, + "TargetID": 73848, + "Directional": true + }] + }, { + "ID": 16504, + "SourceStructureID": 73855, + "TargetStructureID": 6115, + "Label": "73855-6115 via Conventional from 73857 -> 73856", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73857, + "TargetID": 73856, + "Directional": true + }] + }, { + "ID": 16505, + "SourceStructureID": 73868, + "TargetStructureID": 6115, + "Label": "73868-6115 via Conventional from 73869 -> 73870", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73869, + "TargetID": 73870, + "Directional": true + }] + }, { + "ID": 16506, + "SourceStructureID": 73881, + "TargetStructureID": 6115, + "Label": "73881-6115 via Conventional from 73882 -> 73883", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73882, + "TargetID": 73883, + "Directional": true + }] + }, { + "ID": 16507, + "SourceStructureID": 73891, + "TargetStructureID": 6115, + "Label": "73891-6115 via Conventional from 73892 -> 73893", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73892, + "TargetID": 73893, + "Directional": true + }] + }, { + "ID": 16508, + "SourceStructureID": 73904, + "TargetStructureID": 6115, + "Label": "73904-6115 via Conventional from 73905 -> 73903, 73912 -> 73913", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73905, + "TargetID": 73903, + "Directional": true + }, { + "SourceID": 73912, + "TargetID": 73913, + "Directional": true + }] + }, { + "ID": 16509, + "SourceStructureID": 73906, + "TargetStructureID": 73844, + "Label": "73906-73844 via Ribbon Synapse from 73907 -> 73901", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 73907, + "TargetID": 73901, + "Directional": true + }] + }, { + "ID": 16510, + "SourceStructureID": 73926, + "TargetStructureID": 6115, + "Label": "73926-6115 via Conventional from 73932 -> 73933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73932, + "TargetID": 73933, + "Directional": true + }] + }, { + "ID": 16511, + "SourceStructureID": 73940, + "TargetStructureID": 6115, + "Label": "73940-6115 via Conventional from 73942 -> 73941, 73956 -> 73957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73942, + "TargetID": 73941, + "Directional": true + }, { + "SourceID": 73956, + "TargetID": 73957, + "Directional": true + }] + }, { + "ID": 16512, + "SourceStructureID": 73949, + "TargetStructureID": 6115, + "Label": "73949-6115 via Conventional from 73951 -> 73950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73951, + "TargetID": 73950, + "Directional": true + }] + }, { + "ID": 16513, + "SourceStructureID": 73970, + "TargetStructureID": 6115, + "Label": "73970-6115 via Conventional from 73973 -> 56313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73973, + "TargetID": 56313, + "Directional": true + }] + }, { + "ID": 16514, + "SourceStructureID": 73974, + "TargetStructureID": 606, + "Label": "73974-606 via Conventional from 73975 -> 48105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73975, + "TargetID": 48105, + "Directional": true + }] + }, { + "ID": 16515, + "SourceStructureID": 73979, + "TargetStructureID": 6115, + "Label": "73979-6115 via Conventional from 73998 -> 73999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73998, + "TargetID": 73999, + "Directional": true + }] + }, { + "ID": 16516, + "SourceStructureID": 73987, + "TargetStructureID": 5598, + "Label": "73987-5598 via Conventional from 73988 -> 73986", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73988, + "TargetID": 73986, + "Directional": true + }] + }, { + "ID": 16517, + "SourceStructureID": 73991, + "TargetStructureID": 6115, + "Label": "73991-6115 via Conventional from 73992 -> 73993", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73992, + "TargetID": 73993, + "Directional": true + }] + }, { + "ID": 16518, + "SourceStructureID": 73994, + "TargetStructureID": 6115, + "Label": "73994-6115 via Conventional from 73996 -> 73995", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 73996, + "TargetID": 73995, + "Directional": true + }] + }, { + "ID": 16519, + "SourceStructureID": 74013, + "TargetStructureID": 6115, + "Label": "74013-6115 via Conventional from 74015 -> 74014", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74015, + "TargetID": 74014, + "Directional": true + }] + }, { + "ID": 16520, + "SourceStructureID": 74018, + "TargetStructureID": 6115, + "Label": "74018-6115 via Conventional from 74019 -> 74020", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74019, + "TargetID": 74020, + "Directional": true + }] + }, { + "ID": 16521, + "SourceStructureID": 74023, + "TargetStructureID": 5442, + "Label": "74023-5442 via Conventional from 74024 -> 74027", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74024, + "TargetID": 74027, + "Directional": true + }] + }, { + "ID": 16522, + "SourceStructureID": 74035, + "TargetStructureID": 6115, + "Label": "74035-6115 via Conventional from 74037 -> 74036", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74037, + "TargetID": 74036, + "Directional": true + }] + }, { + "ID": 16523, + "SourceStructureID": 74042, + "TargetStructureID": 6115, + "Label": "74042-6115 via Conventional from 74044 -> 74043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74044, + "TargetID": 74043, + "Directional": true + }] + }, { + "ID": 16524, + "SourceStructureID": 74053, + "TargetStructureID": 6857, + "Label": "74053-6857 via Conventional from 74054 -> 7555", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74054, + "TargetID": 7555, + "Directional": true + }] + }, { + "ID": 16525, + "SourceStructureID": 74058, + "TargetStructureID": 6857, + "Label": "74058-6857 via Conventional from 74059 -> 7560", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74059, + "TargetID": 7560, + "Directional": true + }] + }, { + "ID": 16526, + "SourceStructureID": 74064, + "TargetStructureID": 6115, + "Label": "74064-6115 via Conventional from 74066 -> 74065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74066, + "TargetID": 74065, + "Directional": true + }] + }, { + "ID": 16527, + "SourceStructureID": 74077, + "TargetStructureID": 6115, + "Label": "74077-6115 via Conventional from 74079 -> 56316, 74080 -> 56316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74079, + "TargetID": 56316, + "Directional": true + }, { + "SourceID": 74080, + "TargetID": 56316, + "Directional": true + }] + }, { + "ID": 16528, + "SourceStructureID": 74081, + "TargetStructureID": 5530, + "Label": "74081-5530 via Conventional from 74209 -> 74210", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74209, + "TargetID": 74210, + "Directional": true + }] + }, { + "ID": 16529, + "SourceStructureID": 74082, + "TargetStructureID": 82094, + "Label": "74082-82094 via Conventional from 82096 -> 82095", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82096, + "TargetID": 82095, + "Directional": true + }] + }, { + "ID": 16530, + "SourceStructureID": 74086, + "TargetStructureID": 6115, + "Label": "74086-6115 via Conventional from 74092 -> 74093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74092, + "TargetID": 74093, + "Directional": true + }] + }, { + "ID": 16531, + "SourceStructureID": 74098, + "TargetStructureID": 6115, + "Label": "74098-6115 via Conventional from 74099 -> 74100", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74099, + "TargetID": 74100, + "Directional": true + }] + }, { + "ID": 16532, + "SourceStructureID": 74135, + "TargetStructureID": 6857, + "Label": "74135-6857 via Conventional from 74136 -> 6876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74136, + "TargetID": 6876, + "Directional": true + }] + }, { + "ID": 16533, + "SourceStructureID": 74211, + "TargetStructureID": 5530, + "Label": "74211-5530 via Conventional from 74212 -> 29866", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74212, + "TargetID": 29866, + "Directional": true + }] + }, { + "ID": 16534, + "SourceStructureID": 74213, + "TargetStructureID": 5530, + "Label": "74213-5530 via Conventional from 74214 -> 74215", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74214, + "TargetID": 74215, + "Directional": true + }] + }, { + "ID": 16535, + "SourceStructureID": 74216, + "TargetStructureID": 5530, + "Label": "74216-5530 via Conventional from 74578 -> 74580", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74578, + "TargetID": 74580, + "Directional": true + }] + }, { + "ID": 16536, + "SourceStructureID": 74216, + "TargetStructureID": 54925, + "Label": "74216-54925 via Conventional from 81817 -> 54935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81817, + "TargetID": 54935, + "Directional": true + }] + }, { + "ID": 16537, + "SourceStructureID": 74216, + "TargetStructureID": 74584, + "Label": "74216-74584 via Conventional from 81813 -> 81814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81813, + "TargetID": 81814, + "Directional": true + }] + }, { + "ID": 16538, + "SourceStructureID": 74217, + "TargetStructureID": 5530, + "Label": "74217-5530 via Conventional from 74218 -> 74219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74218, + "TargetID": 74219, + "Directional": true + }] + }, { + "ID": 16539, + "SourceStructureID": 74225, + "TargetStructureID": 5530, + "Label": "74225-5530 via Conventional from 75749 -> 75750", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75749, + "TargetID": 75750, + "Directional": true + }] + }, { + "ID": 16540, + "SourceStructureID": 74228, + "TargetStructureID": 68539, + "Label": "74228-68539 via Conventional from 74229 -> 74230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74229, + "TargetID": 74230, + "Directional": true + }] + }, { + "ID": 16541, + "SourceStructureID": 74231, + "TargetStructureID": 74233, + "Label": "74231-74233 via Conventional from 74232 -> 74235", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74232, + "TargetID": 74235, + "Directional": true + }] + }, { + "ID": 16542, + "SourceStructureID": 74233, + "TargetStructureID": 68539, + "Label": "74233-68539 via Conventional from 74234 -> 74236", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74234, + "TargetID": 74236, + "Directional": true + }] + }, { + "ID": 16543, + "SourceStructureID": 74237, + "TargetStructureID": 74239, + "Label": "74237-74239 via Conventional from 74264 -> 74265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74264, + "TargetID": 74265, + "Directional": true + }] + }, { + "ID": 16544, + "SourceStructureID": 74239, + "TargetStructureID": 68539, + "Label": "74239-68539 via Conventional from 74247 -> 74248", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74247, + "TargetID": 74248, + "Directional": true + }] + }, { + "ID": 16545, + "SourceStructureID": 74241, + "TargetStructureID": 74240, + "Label": "74241-74240 via Conventional from 74243 -> 74244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74243, + "TargetID": 74244, + "Directional": true + }] + }, { + "ID": 16546, + "SourceStructureID": 74252, + "TargetStructureID": 68539, + "Label": "74252-68539 via Conventional from 74253 -> 74259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74253, + "TargetID": 74259, + "Directional": true + }] + }, { + "ID": 16547, + "SourceStructureID": 74269, + "TargetStructureID": 68539, + "Label": "74269-68539 via Conventional from 74270 -> 74271", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74270, + "TargetID": 74271, + "Directional": true + }] + }, { + "ID": 16548, + "SourceStructureID": 74282, + "TargetStructureID": 68539, + "Label": "74282-68539 via Conventional from 74283 -> 74284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74283, + "TargetID": 74284, + "Directional": true + }] + }, { + "ID": 16549, + "SourceStructureID": 74291, + "TargetStructureID": 6115, + "Label": "74291-6115 via Conventional from 74295 -> 55778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74295, + "TargetID": 55778, + "Directional": true + }] + }, { + "ID": 16550, + "SourceStructureID": 74297, + "TargetStructureID": 68539, + "Label": "74297-68539 via Conventional from 74298 -> 74296", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74298, + "TargetID": 74296, + "Directional": true + }] + }, { + "ID": 16551, + "SourceStructureID": 74303, + "TargetStructureID": 6115, + "Label": "74303-6115 via Conventional from 74304 -> 74305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74304, + "TargetID": 74305, + "Directional": true + }] + }, { + "ID": 16552, + "SourceStructureID": 74308, + "TargetStructureID": 6115, + "Label": "74308-6115 via Conventional from 74309 -> 74310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74309, + "TargetID": 74310, + "Directional": true + }] + }, { + "ID": 16553, + "SourceStructureID": 74317, + "TargetStructureID": 6115, + "Label": "74317-6115 via Conventional from 74318 -> 55781", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74318, + "TargetID": 55781, + "Directional": true + }] + }, { + "ID": 16554, + "SourceStructureID": 74321, + "TargetStructureID": 6115, + "Label": "74321-6115 via Conventional from 74322 -> 55782", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74322, + "TargetID": 55782, + "Directional": true + }] + }, { + "ID": 16555, + "SourceStructureID": 74341, + "TargetStructureID": 68539, + "Label": "74341-68539 via Conventional from 74347 -> 74348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74347, + "TargetID": 74348, + "Directional": true + }] + }, { + "ID": 16556, + "SourceStructureID": 74350, + "TargetStructureID": 68539, + "Label": "74350-68539 via Conventional from 74353 -> 74352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74353, + "TargetID": 74352, + "Directional": true + }] + }, { + "ID": 16557, + "SourceStructureID": 74369, + "TargetStructureID": 74047, + "Label": "74369-74047 via Conventional from 74371 -> 74373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74371, + "TargetID": 74373, + "Directional": true + }] + }, { + "ID": 16558, + "SourceStructureID": 74377, + "TargetStructureID": 74047, + "Label": "74377-74047 via Conventional from 74378 -> 74376", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74378, + "TargetID": 74376, + "Directional": true + }] + }, { + "ID": 16559, + "SourceStructureID": 74379, + "TargetStructureID": 68539, + "Label": "74379-68539 via Conventional from 74380 -> 74381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74380, + "TargetID": 74381, + "Directional": true + }] + }, { + "ID": 16560, + "SourceStructureID": 74385, + "TargetStructureID": 6115, + "Label": "74385-6115 via Conventional from 74386 -> 74387", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74386, + "TargetID": 74387, + "Directional": true + }] + }, { + "ID": 16561, + "SourceStructureID": 74388, + "TargetStructureID": 6115, + "Label": "74388-6115 via Conventional from 74391 -> 74392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74391, + "TargetID": 74392, + "Directional": true + }] + }, { + "ID": 16562, + "SourceStructureID": 74399, + "TargetStructureID": 74047, + "Label": "74399-74047 via Conventional from 74400 -> 74398", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74400, + "TargetID": 74398, + "Directional": true + }] + }, { + "ID": 16563, + "SourceStructureID": 74402, + "TargetStructureID": 6115, + "Label": "74402-6115 via Conventional from 74403 -> 74404", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74403, + "TargetID": 74404, + "Directional": true + }] + }, { + "ID": 16564, + "SourceStructureID": 74407, + "TargetStructureID": 68539, + "Label": "74407-68539 via Conventional from 74408 -> 74409", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74408, + "TargetID": 74409, + "Directional": true + }] + }, { + "ID": 16565, + "SourceStructureID": 74412, + "TargetStructureID": 68539, + "Label": "74412-68539 via Conventional from 74419 -> 74420", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74419, + "TargetID": 74420, + "Directional": true + }] + }, { + "ID": 16566, + "SourceStructureID": 74424, + "TargetStructureID": 6115, + "Label": "74424-6115 via Conventional from 75963 -> 75962", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75963, + "TargetID": 75962, + "Directional": true + }] + }, { + "ID": 16567, + "SourceStructureID": 74441, + "TargetStructureID": 6115, + "Label": "74441-6115 via Conventional from 74446 -> 74447", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74446, + "TargetID": 74447, + "Directional": true + }] + }, { + "ID": 16568, + "SourceStructureID": 74448, + "TargetStructureID": 6115, + "Label": "74448-6115 via Conventional from 74449 -> 74450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74449, + "TargetID": 74450, + "Directional": true + }] + }, { + "ID": 16569, + "SourceStructureID": 74456, + "TargetStructureID": 6115, + "Label": "74456-6115 via Conventional from 74457 -> 74458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74457, + "TargetID": 74458, + "Directional": true + }] + }, { + "ID": 16570, + "SourceStructureID": 74460, + "TargetStructureID": 6115, + "Label": "74460-6115 via Conventional from 74464 -> 74465", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74464, + "TargetID": 74465, + "Directional": true + }] + }, { + "ID": 16571, + "SourceStructureID": 74471, + "TargetStructureID": 6115, + "Label": "74471-6115 via Conventional from 74472 -> 74473", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74472, + "TargetID": 74473, + "Directional": true + }] + }, { + "ID": 16572, + "SourceStructureID": 74482, + "TargetStructureID": 5442, + "Label": "74482-5442 via Conventional from 74483 -> 55129", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74483, + "TargetID": 55129, + "Directional": true + }] + }, { + "ID": 16573, + "SourceStructureID": 74489, + "TargetStructureID": 6115, + "Label": "74489-6115 via Conventional from 74491 -> 74492", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74491, + "TargetID": 74492, + "Directional": true + }] + }, { + "ID": 16574, + "SourceStructureID": 74493, + "TargetStructureID": 6115, + "Label": "74493-6115 via Conventional from 74494 -> 74495", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74494, + "TargetID": 74495, + "Directional": true + }] + }, { + "ID": 16575, + "SourceStructureID": 74499, + "TargetStructureID": 6115, + "Label": "74499-6115 via Conventional from 74500 -> 74501", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74500, + "TargetID": 74501, + "Directional": true + }] + }, { + "ID": 16576, + "SourceStructureID": 74505, + "TargetStructureID": 6115, + "Label": "74505-6115 via Conventional from 74506 -> 74507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74506, + "TargetID": 74507, + "Directional": true + }] + }, { + "ID": 16577, + "SourceStructureID": 74511, + "TargetStructureID": 6115, + "Label": "74511-6115 via Conventional from 74512 -> 74513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74512, + "TargetID": 74513, + "Directional": true + }] + }, { + "ID": 16578, + "SourceStructureID": 74527, + "TargetStructureID": 6115, + "Label": "74527-6115 via Conventional from 74528 -> 74529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74528, + "TargetID": 74529, + "Directional": true + }] + }, { + "ID": 16579, + "SourceStructureID": 74548, + "TargetStructureID": 68539, + "Label": "74548-68539 via Conventional from 74549 -> 74547", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74549, + "TargetID": 74547, + "Directional": true + }] + }, { + "ID": 16580, + "SourceStructureID": 74555, + "TargetStructureID": 68539, + "Label": "74555-68539 via Conventional from 74556 -> 74557", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74556, + "TargetID": 74557, + "Directional": true + }] + }, { + "ID": 16581, + "SourceStructureID": 74558, + "TargetStructureID": 68539, + "Label": "74558-68539 via Conventional from 74559 -> 74562, 74560 -> 74561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74559, + "TargetID": 74562, + "Directional": true + }, { + "SourceID": 74560, + "TargetID": 74561, + "Directional": true + }] + }, { + "ID": 16582, + "SourceStructureID": 74563, + "TargetStructureID": 68539, + "Label": "74563-68539 via Conventional from 74564 -> 74565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74564, + "TargetID": 74565, + "Directional": true + }] + }, { + "ID": 16583, + "SourceStructureID": 74567, + "TargetStructureID": 68539, + "Label": "74567-68539 via Conventional from 74568 -> 74566", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74568, + "TargetID": 74566, + "Directional": true + }] + }, { + "ID": 16584, + "SourceStructureID": 74573, + "TargetStructureID": 68539, + "Label": "74573-68539 via Conventional from 74574 -> 74572", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74574, + "TargetID": 74572, + "Directional": true + }] + }, { + "ID": 16585, + "SourceStructureID": 74576, + "TargetStructureID": 68539, + "Label": "74576-68539 via Conventional from 74577 -> 74579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74577, + "TargetID": 74579, + "Directional": true + }] + }, { + "ID": 16586, + "SourceStructureID": 74584, + "TargetStructureID": 595, + "Label": "74584-595 via Conventional from 81796 -> 81795", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81796, + "TargetID": 81795, + "Directional": true + }] + }, { + "ID": 16587, + "SourceStructureID": 74584, + "TargetStructureID": 5530, + "Label": "74584-5530 via Conventional from 74642 -> 30063, 81791 -> 81792", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74642, + "TargetID": 30063, + "Directional": true + }, { + "SourceID": 81791, + "TargetID": 81792, + "Directional": true + }] + }, { + "ID": 16588, + "SourceStructureID": 74590, + "TargetStructureID": 74593, + "Label": "74590-74593 via Conventional from 74592 -> 74594", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74592, + "TargetID": 74594, + "Directional": true + }] + }, { + "ID": 16589, + "SourceStructureID": 74590, + "TargetStructureID": 74601, + "Label": "74590-74601 via Conventional from 74603 -> 74605", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74603, + "TargetID": 74605, + "Directional": true + }] + }, { + "ID": 16590, + "SourceStructureID": 74610, + "TargetStructureID": 68539, + "Label": "74610-68539 via Conventional from 74611 -> 74609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74611, + "TargetID": 74609, + "Directional": true + }] + }, { + "ID": 16591, + "SourceStructureID": 74618, + "TargetStructureID": 68539, + "Label": "74618-68539 via Conventional from 74619 -> 74617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74619, + "TargetID": 74617, + "Directional": true + }] + }, { + "ID": 16592, + "SourceStructureID": 74625, + "TargetStructureID": 74624, + "Label": "74625-74624 via Conventional from 74626 -> 74628", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74626, + "TargetID": 74628, + "Directional": true + }] + }, { + "ID": 16593, + "SourceStructureID": 74635, + "TargetStructureID": 68539, + "Label": "74635-68539 via Conventional from 74637 -> 74634", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74637, + "TargetID": 74634, + "Directional": true + }] + }, { + "ID": 16594, + "SourceStructureID": 74639, + "TargetStructureID": 68539, + "Label": "74639-68539 via Ribbon Synapse from 74643 -> 74644", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74643, + "TargetID": 74644, + "Directional": true + }] + }, { + "ID": 16595, + "SourceStructureID": 74645, + "TargetStructureID": 68539, + "Label": "74645-68539 via Conventional from 74646 -> 74647", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74646, + "TargetID": 74647, + "Directional": true + }] + }, { + "ID": 16596, + "SourceStructureID": 74648, + "TargetStructureID": 68539, + "Label": "74648-68539 via Conventional from 74649 -> 74650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74649, + "TargetID": 74650, + "Directional": true + }] + }, { + "ID": 16597, + "SourceStructureID": 74658, + "TargetStructureID": 6115, + "Label": "74658-6115 via Conventional from 75880 -> 75879", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75880, + "TargetID": 75879, + "Directional": true + }] + }, { + "ID": 16598, + "SourceStructureID": 74663, + "TargetStructureID": 68539, + "Label": "74663-68539 via Conventional from 74664 -> 74665", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74664, + "TargetID": 74665, + "Directional": true + }] + }, { + "ID": 16599, + "SourceStructureID": 74667, + "TargetStructureID": 68539, + "Label": "74667-68539 via Conventional from 74679 -> 74685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74679, + "TargetID": 74685, + "Directional": true + }] + }, { + "ID": 16600, + "SourceStructureID": 74670, + "TargetStructureID": 5530, + "Label": "74670-5530 via Conventional from 74672 -> 74673", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74672, + "TargetID": 74673, + "Directional": true + }] + }, { + "ID": 16601, + "SourceStructureID": 74678, + "TargetStructureID": 5530, + "Label": "74678-5530 via Conventional from 74680 -> 74681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74680, + "TargetID": 74681, + "Directional": true + }] + }, { + "ID": 16602, + "SourceStructureID": 74688, + "TargetStructureID": 6115, + "Label": "74688-6115 via Conventional from 74689 -> 74690, 74745 -> 74748", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74689, + "TargetID": 74690, + "Directional": true + }, { + "SourceID": 74745, + "TargetID": 74748, + "Directional": true + }] + }, { + "ID": 16603, + "SourceStructureID": 74694, + "TargetStructureID": 170, + "Label": "74694-170 via Conventional from 81845 -> 81846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81845, + "TargetID": 81846, + "Directional": true + }] + }, { + "ID": 16604, + "SourceStructureID": 74694, + "TargetStructureID": 5530, + "Label": "74694-5530 via Conventional from 74696 -> 74697", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74696, + "TargetID": 74697, + "Directional": true + }] + }, { + "ID": 16605, + "SourceStructureID": 74699, + "TargetStructureID": 6115, + "Label": "74699-6115 via Conventional from 74772 -> 74773", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74772, + "TargetID": 74773, + "Directional": true + }] + }, { + "ID": 16606, + "SourceStructureID": 74724, + "TargetStructureID": 6156, + "Label": "74724-6156 via Conventional from 74730 -> 23245", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74730, + "TargetID": 23245, + "Directional": true + }] + }, { + "ID": 16607, + "SourceStructureID": 74726, + "TargetStructureID": 6115, + "Label": "74726-6115 via Conventional from 74735 -> 74736", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74735, + "TargetID": 74736, + "Directional": true + }] + }, { + "ID": 16608, + "SourceStructureID": 74727, + "TargetStructureID": 170, + "Label": "74727-170 via Conventional from 88763 -> 88764", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88763, + "TargetID": 88764, + "Directional": true + }] + }, { + "ID": 16609, + "SourceStructureID": 74727, + "TargetStructureID": 5530, + "Label": "74727-5530 via Conventional from 74733 -> 74734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74733, + "TargetID": 74734, + "Directional": true + }] + }, { + "ID": 16610, + "SourceStructureID": 74740, + "TargetStructureID": 5650, + "Label": "74740-5650 via Conventional from 82113 -> 82114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82113, + "TargetID": 82114, + "Directional": true + }] + }, { + "ID": 16611, + "SourceStructureID": 74740, + "TargetStructureID": 72299, + "Label": "74740-72299 via Conventional from 82111 -> 82112", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82111, + "TargetID": 82112, + "Directional": true + }] + }, { + "ID": 16612, + "SourceStructureID": 74769, + "TargetStructureID": 6115, + "Label": "74769-6115 via Conventional from 74770 -> 74771", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74770, + "TargetID": 74771, + "Directional": true + }] + }, { + "ID": 16613, + "SourceStructureID": 74786, + "TargetStructureID": 6115, + "Label": "74786-6115 via Conventional from 74787 -> 74788", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74787, + "TargetID": 74788, + "Directional": true + }] + }, { + "ID": 16614, + "SourceStructureID": 74801, + "TargetStructureID": 6115, + "Label": "74801-6115 via Conventional from 74803 -> 74802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74803, + "TargetID": 74802, + "Directional": true + }] + }, { + "ID": 16615, + "SourceStructureID": 74804, + "TargetStructureID": 6115, + "Label": "74804-6115 via Conventional from 74805 -> 74806", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74805, + "TargetID": 74806, + "Directional": true + }] + }, { + "ID": 16616, + "SourceStructureID": 74810, + "TargetStructureID": 6115, + "Label": "74810-6115 via Conventional from 74811 -> 55839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74811, + "TargetID": 55839, + "Directional": true + }] + }, { + "ID": 16617, + "SourceStructureID": 74815, + "TargetStructureID": 6115, + "Label": "74815-6115 via Conventional from 74816 -> 74817", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74816, + "TargetID": 74817, + "Directional": true + }] + }, { + "ID": 16618, + "SourceStructureID": 74830, + "TargetStructureID": 6115, + "Label": "74830-6115 via Conventional from 80915 -> 80916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80915, + "TargetID": 80916, + "Directional": true + }] + }, { + "ID": 16619, + "SourceStructureID": 74834, + "TargetStructureID": 6115, + "Label": "74834-6115 via Conventional from 74836 -> 74835", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74836, + "TargetID": 74835, + "Directional": true + }] + }, { + "ID": 16620, + "SourceStructureID": 74846, + "TargetStructureID": 6115, + "Label": "74846-6115 via Conventional from 74849 -> 74850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74849, + "TargetID": 74850, + "Directional": true + }] + }, { + "ID": 16621, + "SourceStructureID": 74854, + "TargetStructureID": 68539, + "Label": "74854-68539 via Conventional from 74855 -> 74856", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74855, + "TargetID": 74856, + "Directional": true + }] + }, { + "ID": 16622, + "SourceStructureID": 74859, + "TargetStructureID": 68539, + "Label": "74859-68539 via Conventional from 74860 -> 74861", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74860, + "TargetID": 74861, + "Directional": true + }] + }, { + "ID": 16623, + "SourceStructureID": 74863, + "TargetStructureID": 68539, + "Label": "74863-68539 via Conventional from 74864 -> 74865", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74864, + "TargetID": 74865, + "Directional": true + }] + }, { + "ID": 16624, + "SourceStructureID": 74866, + "TargetStructureID": 68539, + "Label": "74866-68539 via Conventional from 74867 -> 74868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74867, + "TargetID": 74868, + "Directional": true + }] + }, { + "ID": 16625, + "SourceStructureID": 74873, + "TargetStructureID": 68539, + "Label": "74873-68539 via Conventional from 74874 -> 74875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74874, + "TargetID": 74875, + "Directional": true + }] + }, { + "ID": 16626, + "SourceStructureID": 74886, + "TargetStructureID": 68539, + "Label": "74886-68539 via Conventional from 74887 -> 74888", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74887, + "TargetID": 74888, + "Directional": true + }] + }, { + "ID": 16627, + "SourceStructureID": 74890, + "TargetStructureID": 68539, + "Label": "74890-68539 via Conventional from 74891 -> 74889", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74891, + "TargetID": 74889, + "Directional": true + }] + }, { + "ID": 16628, + "SourceStructureID": 74899, + "TargetStructureID": 68539, + "Label": "74899-68539 via Conventional from 74900 -> 74901", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74900, + "TargetID": 74901, + "Directional": true + }] + }, { + "ID": 16629, + "SourceStructureID": 74904, + "TargetStructureID": 68539, + "Label": "74904-68539 via Conventional from 74905 -> 74906", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74905, + "TargetID": 74906, + "Directional": true + }] + }, { + "ID": 16630, + "SourceStructureID": 74907, + "TargetStructureID": 83698, + "Label": "74907-83698 via Ribbon Synapse from 74908 -> 83711", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74908, + "TargetID": 83711, + "Directional": true + }] + }, { + "ID": 16631, + "SourceStructureID": 74907, + "TargetStructureID": 83715, + "Label": "74907-83715 via Ribbon Synapse from 74908 -> 83717", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74908, + "TargetID": 83717, + "Directional": true + }] + }, { + "ID": 16632, + "SourceStructureID": 74907, + "TargetStructureID": 83721, + "Label": "74907-83721 via Ribbon Synapse from 74908 -> 83727", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 74908, + "TargetID": 83727, + "Directional": true + }] + }, { + "ID": 16633, + "SourceStructureID": 74907, + "TargetStructureID": 83911, + "Label": "74907-83911 via Ribbon Synapse from 83910 -> 83912", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83910, + "TargetID": 83912, + "Directional": true + }] + }, { + "ID": 16634, + "SourceStructureID": 74907, + "TargetStructureID": 84280, + "Label": "74907-84280 via Ribbon Synapse from 84279 -> 84281", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84279, + "TargetID": 84281, + "Directional": true + }] + }, { + "ID": 16635, + "SourceStructureID": 74907, + "TargetStructureID": 84283, + "Label": "74907-84283 via BC Conventional Synapse from 84466 -> 84467", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84466, + "TargetID": 84467, + "Directional": true + }] + }, { + "ID": 16636, + "SourceStructureID": 74907, + "TargetStructureID": 84284, + "Label": "74907-84284 via Ribbon Synapse from 84279 -> 84286", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84279, + "TargetID": 84286, + "Directional": true + }] + }, { + "ID": 16637, + "SourceStructureID": 74907, + "TargetStructureID": 84290, + "Label": "74907-84290 via Ribbon Synapse from 84293 -> 84297", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84293, + "TargetID": 84297, + "Directional": true + }] + }, { + "ID": 16638, + "SourceStructureID": 74907, + "TargetStructureID": 84294, + "Label": "74907-84294 via Ribbon Synapse from 84293 -> 84296", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84293, + "TargetID": 84296, + "Directional": true + }] + }, { + "ID": 16639, + "SourceStructureID": 74907, + "TargetStructureID": 84463, + "Label": "74907-84463 via BC Conventional Synapse from 84464 -> 84465", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84464, + "TargetID": 84465, + "Directional": true + }] + }, { + "ID": 16640, + "SourceStructureID": 74907, + "TargetStructureID": 84500, + "Label": "74907-84500 via Ribbon Synapse from 84499 -> 84507", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84499, + "TargetID": 84507, + "Directional": true + }] + }, { + "ID": 16641, + "SourceStructureID": 74907, + "TargetStructureID": 84508, + "Label": "74907-84508 via Ribbon Synapse from 84499 -> 84509", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84499, + "TargetID": 84509, + "Directional": true + }] + }, { + "ID": 16642, + "SourceStructureID": 74907, + "TargetStructureID": 84514, + "Label": "74907-84514 via Ribbon Synapse from 84498 -> 84515", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84498, + "TargetID": 84515, + "Directional": true + }] + }, { + "ID": 16643, + "SourceStructureID": 74907, + "TargetStructureID": 84635, + "Label": "74907-84635 via Ribbon Synapse from 84631 -> 84737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84631, + "TargetID": 84737, + "Directional": true + }] + }, { + "ID": 16644, + "SourceStructureID": 74907, + "TargetStructureID": 84636, + "Label": "74907-84636 via Ribbon Synapse from 84631 -> 84739", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84631, + "TargetID": 84739, + "Directional": true + }] + }, { + "ID": 16645, + "SourceStructureID": 74907, + "TargetStructureID": 84740, + "Label": "74907-84740 via Ribbon Synapse from 84631 -> 84742, 84839 -> 84841", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84631, + "TargetID": 84742, + "Directional": true + }, { + "SourceID": 84839, + "TargetID": 84841, + "Directional": true + }] + }, { + "ID": 16646, + "SourceStructureID": 74907, + "TargetStructureID": 84844, + "Label": "74907-84844 via Ribbon Synapse from 84839 -> 84849", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84839, + "TargetID": 84849, + "Directional": true + }] + }, { + "ID": 16647, + "SourceStructureID": 74920, + "TargetStructureID": 71517, + "Label": "74920-71517 via Conventional from 74921 -> 74922", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74921, + "TargetID": 74922, + "Directional": true + }] + }, { + "ID": 16648, + "SourceStructureID": 74936, + "TargetStructureID": 71517, + "Label": "74936-71517 via Conventional from 74937 -> 74938", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74937, + "TargetID": 74938, + "Directional": true + }] + }, { + "ID": 16649, + "SourceStructureID": 74939, + "TargetStructureID": 71517, + "Label": "74939-71517 via Conventional from 74940 -> 74941", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74940, + "TargetID": 74941, + "Directional": true + }] + }, { + "ID": 16650, + "SourceStructureID": 74943, + "TargetStructureID": 74939, + "Label": "74943-74939 via Conventional from 74944 -> 74942", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74944, + "TargetID": 74942, + "Directional": true + }] + }, { + "ID": 16651, + "SourceStructureID": 74957, + "TargetStructureID": 6123, + "Label": "74957-6123 via Conventional from 74961 -> 74962", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74961, + "TargetID": 74962, + "Directional": true + }] + }, { + "ID": 16652, + "SourceStructureID": 74957, + "TargetStructureID": 71517, + "Label": "74957-71517 via Conventional from 74958 -> 74959", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74958, + "TargetID": 74959, + "Directional": true + }] + }, { + "ID": 16653, + "SourceStructureID": 74969, + "TargetStructureID": 6857, + "Label": "74969-6857 via Conventional from 74970 -> 74972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74970, + "TargetID": 74972, + "Directional": true + }] + }, { + "ID": 16654, + "SourceStructureID": 74978, + "TargetStructureID": 5530, + "Label": "74978-5530 via Conventional from 75408 -> 75409", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75408, + "TargetID": 75409, + "Directional": true + }] + }, { + "ID": 16655, + "SourceStructureID": 74994, + "TargetStructureID": 6115, + "Label": "74994-6115 via Conventional from 74995 -> 74993", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74995, + "TargetID": 74993, + "Directional": true + }] + }, { + "ID": 16656, + "SourceStructureID": 75001, + "TargetStructureID": 5528, + "Label": "75001-5528 via Conventional from 94149 -> 94150, 94394 -> 94395", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94149, + "TargetID": 94150, + "Directional": true + }, { + "SourceID": 94394, + "TargetID": 94395, + "Directional": true + }] + }, { + "ID": 16657, + "SourceStructureID": 75001, + "TargetStructureID": 5530, + "Label": "75001-5530 via Conventional from 75006 -> 75008", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75006, + "TargetID": 75008, + "Directional": true + }] + }, { + "ID": 16658, + "SourceStructureID": 75012, + "TargetStructureID": 5530, + "Label": "75012-5530 via Conventional from 75013 -> 75014", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75013, + "TargetID": 75014, + "Directional": true + }] + }, { + "ID": 16659, + "SourceStructureID": 75015, + "TargetStructureID": 71511, + "Label": "75015-71511 via Conventional from 75016 -> 75020", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75016, + "TargetID": 75020, + "Directional": true + }] + }, { + "ID": 16660, + "SourceStructureID": 75017, + "TargetStructureID": 5530, + "Label": "75017-5530 via Conventional from 75025 -> 75026, 75025 -> 125897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75025, + "TargetID": 75026, + "Directional": true + }, { + "SourceID": 75025, + "TargetID": 125897, + "Directional": true + }] + }, { + "ID": 16661, + "SourceStructureID": 75021, + "TargetStructureID": 71517, + "Label": "75021-71517 via Conventional from 75023 -> 75024", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75023, + "TargetID": 75024, + "Directional": true + }] + }, { + "ID": 16662, + "SourceStructureID": 75028, + "TargetStructureID": 75021, + "Label": "75028-75021 via Conventional from 75031 -> 75022", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75031, + "TargetID": 75022, + "Directional": true + }] + }, { + "ID": 16663, + "SourceStructureID": 75033, + "TargetStructureID": 6115, + "Label": "75033-6115 via Conventional from 75034 -> 55769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75034, + "TargetID": 55769, + "Directional": true + }] + }, { + "ID": 16664, + "SourceStructureID": 75040, + "TargetStructureID": 6115, + "Label": "75040-6115 via Conventional from 75044 -> 55768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75044, + "TargetID": 55768, + "Directional": true + }] + }, { + "ID": 16665, + "SourceStructureID": 75052, + "TargetStructureID": 75056, + "Label": "75052-75056 via Conventional from 75055 -> 75057", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75055, + "TargetID": 75057, + "Directional": true + }] + }, { + "ID": 16666, + "SourceStructureID": 75062, + "TargetStructureID": 6115, + "Label": "75062-6115 via Conventional from 75063 -> 75064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75063, + "TargetID": 75064, + "Directional": true + }] + }, { + "ID": 16667, + "SourceStructureID": 75068, + "TargetStructureID": 6115, + "Label": "75068-6115 via Conventional from 75069 -> 75070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75069, + "TargetID": 75070, + "Directional": true + }] + }, { + "ID": 16668, + "SourceStructureID": 75073, + "TargetStructureID": 6115, + "Label": "75073-6115 via Conventional from 75074 -> 75075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75074, + "TargetID": 75075, + "Directional": true + }] + }, { + "ID": 16669, + "SourceStructureID": 75096, + "TargetStructureID": 6115, + "Label": "75096-6115 via Conventional from 75097 -> 75098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75097, + "TargetID": 75098, + "Directional": true + }] + }, { + "ID": 16670, + "SourceStructureID": 75104, + "TargetStructureID": 6115, + "Label": "75104-6115 via Conventional from 75105 -> 75106", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75105, + "TargetID": 75106, + "Directional": true + }] + }, { + "ID": 16671, + "SourceStructureID": 75112, + "TargetStructureID": 6115, + "Label": "75112-6115 via Conventional from 75113 -> 75114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75113, + "TargetID": 75114, + "Directional": true + }] + }, { + "ID": 16672, + "SourceStructureID": 75124, + "TargetStructureID": 6115, + "Label": "75124-6115 via Conventional from 75125 -> 75126", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75125, + "TargetID": 75126, + "Directional": true + }] + }, { + "ID": 16673, + "SourceStructureID": 75130, + "TargetStructureID": 6115, + "Label": "75130-6115 via Conventional from 74824 -> 55841, 75131 -> 75132, 90636 -> 90637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 74824, + "TargetID": 55841, + "Directional": true + }, { + "SourceID": 75131, + "TargetID": 75132, + "Directional": true + }, { + "SourceID": 90636, + "TargetID": 90637, + "Directional": true + }] + }, { + "ID": 16674, + "SourceStructureID": 75130, + "TargetStructureID": 16087, + "Label": "75130-16087 via Conventional from 121973 -> 121974", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121973, + "TargetID": 121974, + "Directional": true + }] + }, { + "ID": 16675, + "SourceStructureID": 75133, + "TargetStructureID": 6047, + "Label": "75133-6047 via Conventional from 112376 -> 112378", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112376, + "TargetID": 112378, + "Directional": true + }] + }, { + "ID": 16676, + "SourceStructureID": 75133, + "TargetStructureID": 6115, + "Label": "75133-6115 via Conventional from 75134 -> 75135", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75134, + "TargetID": 75135, + "Directional": true + }] + }, { + "ID": 16677, + "SourceStructureID": 75147, + "TargetStructureID": 6115, + "Label": "75147-6115 via Conventional from 75148 -> 75149", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75148, + "TargetID": 75149, + "Directional": true + }] + }, { + "ID": 16678, + "SourceStructureID": 75168, + "TargetStructureID": 72012, + "Label": "75168-72012 via Conventional from 75169 -> 75170", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75169, + "TargetID": 75170, + "Directional": true + }] + }, { + "ID": 16679, + "SourceStructureID": 75173, + "TargetStructureID": 72012, + "Label": "75173-72012 via Conventional from 75174 -> 75172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75174, + "TargetID": 75172, + "Directional": true + }] + }, { + "ID": 16680, + "SourceStructureID": 75211, + "TargetStructureID": 6115, + "Label": "75211-6115 via Conventional from 75212 -> 75213", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75212, + "TargetID": 75213, + "Directional": true + }] + }, { + "ID": 16681, + "SourceStructureID": 75219, + "TargetStructureID": 6115, + "Label": "75219-6115 via Conventional from 75220 -> 75221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75220, + "TargetID": 75221, + "Directional": true + }] + }, { + "ID": 16682, + "SourceStructureID": 75232, + "TargetStructureID": 6115, + "Label": "75232-6115 via Conventional from 75234 -> 55862", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75234, + "TargetID": 55862, + "Directional": true + }] + }, { + "ID": 16683, + "SourceStructureID": 75242, + "TargetStructureID": 6115, + "Label": "75242-6115 via Conventional from 75244 -> 75243", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75244, + "TargetID": 75243, + "Directional": true + }] + }, { + "ID": 16684, + "SourceStructureID": 75248, + "TargetStructureID": 6115, + "Label": "75248-6115 via Conventional from 75249 -> 74998", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75249, + "TargetID": 74998, + "Directional": true + }] + }, { + "ID": 16685, + "SourceStructureID": 75273, + "TargetStructureID": 6115, + "Label": "75273-6115 via Conventional from 75274 -> 75275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75274, + "TargetID": 75275, + "Directional": true + }] + }, { + "ID": 16686, + "SourceStructureID": 75293, + "TargetStructureID": 6115, + "Label": "75293-6115 via Conventional from 75417 -> 75416", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75417, + "TargetID": 75416, + "Directional": true + }] + }, { + "ID": 16687, + "SourceStructureID": 75311, + "TargetStructureID": 66523, + "Label": "75311-66523 via Conventional from 75312 -> 75313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75312, + "TargetID": 75313, + "Directional": true + }] + }, { + "ID": 16688, + "SourceStructureID": 75317, + "TargetStructureID": 66523, + "Label": "75317-66523 via Conventional from 75318 -> 75319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75318, + "TargetID": 75319, + "Directional": true + }] + }, { + "ID": 16689, + "SourceStructureID": 75320, + "TargetStructureID": 66523, + "Label": "75320-66523 via Conventional from 75321 -> 75322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75321, + "TargetID": 75322, + "Directional": true + }] + }, { + "ID": 16690, + "SourceStructureID": 75350, + "TargetStructureID": 66523, + "Label": "75350-66523 via Conventional from 75351 -> 75352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75351, + "TargetID": 75352, + "Directional": true + }] + }, { + "ID": 16691, + "SourceStructureID": 75359, + "TargetStructureID": 5107, + "Label": "75359-5107 via Conventional from 75363 -> 43678", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75363, + "TargetID": 43678, + "Directional": true + }] + }, { + "ID": 16692, + "SourceStructureID": 75359, + "TargetStructureID": 81667, + "Label": "75359-81667 via Conventional from 75362 -> 81770", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75362, + "TargetID": 81770, + "Directional": true + }] + }, { + "ID": 16693, + "SourceStructureID": 75371, + "TargetStructureID": 5530, + "Label": "75371-5530 via Conventional from 75372 -> 75373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75372, + "TargetID": 75373, + "Directional": true + }] + }, { + "ID": 16694, + "SourceStructureID": 75374, + "TargetStructureID": 5530, + "Label": "75374-5530 via Conventional from 75375 -> 75376", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75375, + "TargetID": 75376, + "Directional": true + }] + }, { + "ID": 16695, + "SourceStructureID": 75381, + "TargetStructureID": 5530, + "Label": "75381-5530 via Conventional from 75382 -> 75383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75382, + "TargetID": 75383, + "Directional": true + }] + }, { + "ID": 16696, + "SourceStructureID": 75387, + "TargetStructureID": 5530, + "Label": "75387-5530 via Conventional from 75388 -> 75389", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75388, + "TargetID": 75389, + "Directional": true + }] + }, { + "ID": 16697, + "SourceStructureID": 75390, + "TargetStructureID": 595, + "Label": "75390-595 via Conventional from 135567 -> 135566", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135567, + "TargetID": 135566, + "Directional": true + }] + }, { + "ID": 16698, + "SourceStructureID": 75390, + "TargetStructureID": 5530, + "Label": "75390-5530 via Conventional from 75391 -> 75392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75391, + "TargetID": 75392, + "Directional": true + }] + }, { + "ID": 16699, + "SourceStructureID": 75404, + "TargetStructureID": 168, + "Label": "75404-168 via Conventional from 82009 -> 4230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82009, + "TargetID": 4230, + "Directional": true + }] + }, { + "ID": 16700, + "SourceStructureID": 75419, + "TargetStructureID": 6115, + "Label": "75419-6115 via Conventional from 147604 -> 147603", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147604, + "TargetID": 147603, + "Directional": true + }] + }, { + "ID": 16701, + "SourceStructureID": 75426, + "TargetStructureID": 6115, + "Label": "75426-6115 via Conventional from 75427 -> 55762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75427, + "TargetID": 55762, + "Directional": true + }] + }, { + "ID": 16702, + "SourceStructureID": 75429, + "TargetStructureID": 6115, + "Label": "75429-6115 via Conventional from 75432 -> 55764", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75432, + "TargetID": 55764, + "Directional": true + }] + }, { + "ID": 16703, + "SourceStructureID": 75446, + "TargetStructureID": 6115, + "Label": "75446-6115 via Conventional from 75447 -> 75448", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75447, + "TargetID": 75448, + "Directional": true + }] + }, { + "ID": 16704, + "SourceStructureID": 75454, + "TargetStructureID": 6115, + "Label": "75454-6115 via Conventional from 75455 -> 75456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75455, + "TargetID": 75456, + "Directional": true + }] + }, { + "ID": 16705, + "SourceStructureID": 75457, + "TargetStructureID": 6115, + "Label": "75457-6115 via Conventional from 75458 -> 75459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75458, + "TargetID": 75459, + "Directional": true + }] + }, { + "ID": 16706, + "SourceStructureID": 75485, + "TargetStructureID": 5530, + "Label": "75485-5530 via Conventional from 75486 -> 75487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75486, + "TargetID": 75487, + "Directional": true + }] + }, { + "ID": 16707, + "SourceStructureID": 75488, + "TargetStructureID": 5530, + "Label": "75488-5530 via Conventional from 75489 -> 75490", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75489, + "TargetID": 75490, + "Directional": true + }] + }, { + "ID": 16708, + "SourceStructureID": 75488, + "TargetStructureID": 83051, + "Label": "75488-83051 via Conventional from 83325 -> 83326", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83325, + "TargetID": 83326, + "Directional": true + }] + }, { + "ID": 16709, + "SourceStructureID": 75498, + "TargetStructureID": 170, + "Label": "75498-170 via Conventional from 82530 -> 82531", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82530, + "TargetID": 82531, + "Directional": true + }] + }, { + "ID": 16710, + "SourceStructureID": 75498, + "TargetStructureID": 5530, + "Label": "75498-5530 via Conventional from 82534 -> 75497", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82534, + "TargetID": 75497, + "Directional": true + }] + }, { + "ID": 16711, + "SourceStructureID": 75525, + "TargetStructureID": 5530, + "Label": "75525-5530 via Conventional from 115790 -> 115789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115790, + "TargetID": 115789, + "Directional": true + }] + }, { + "ID": 16712, + "SourceStructureID": 75530, + "TargetStructureID": 5530, + "Label": "75530-5530 via Conventional from 75531 -> 75532", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75531, + "TargetID": 75532, + "Directional": true + }] + }, { + "ID": 16713, + "SourceStructureID": 75559, + "TargetStructureID": 6115, + "Label": "75559-6115 via Conventional from 75560 -> 75561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75560, + "TargetID": 75561, + "Directional": true + }] + }, { + "ID": 16714, + "SourceStructureID": 75578, + "TargetStructureID": 5107, + "Label": "75578-5107 via Conventional from 75580 -> 75581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75580, + "TargetID": 75581, + "Directional": true + }] + }, { + "ID": 16715, + "SourceStructureID": 75578, + "TargetStructureID": 75583, + "Label": "75578-75583 via Conventional from 75582 -> 75584", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75582, + "TargetID": 75584, + "Directional": true + }] + }, { + "ID": 16716, + "SourceStructureID": 75583, + "TargetStructureID": 6117, + "Label": "75583-6117 via Conventional from 75590 -> 75591", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75590, + "TargetID": 75591, + "Directional": true + }] + }, { + "ID": 16717, + "SourceStructureID": 75587, + "TargetStructureID": 75583, + "Label": "75587-75583 via Conventional from 75588 -> 75589", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75588, + "TargetID": 75589, + "Directional": true + }] + }, { + "ID": 16718, + "SourceStructureID": 75625, + "TargetStructureID": 9787, + "Label": "75625-9787 via Ribbon Synapse from 75626 -> 75627, 75628 -> 12240", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 75626, + "TargetID": 75627, + "Directional": true + }, { + "SourceID": 75628, + "TargetID": 12240, + "Directional": true + }] + }, { + "ID": 16719, + "SourceStructureID": 75630, + "TargetStructureID": 9787, + "Label": "75630-9787 via Conventional from 75631 -> 75629", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75631, + "TargetID": 75629, + "Directional": true + }] + }, { + "ID": 16720, + "SourceStructureID": 75633, + "TargetStructureID": 9787, + "Label": "75633-9787 via Conventional from 75634 -> 75632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75634, + "TargetID": 75632, + "Directional": true + }] + }, { + "ID": 16721, + "SourceStructureID": 75635, + "TargetStructureID": 9787, + "Label": "75635-9787 via Conventional from 75636 -> 56462", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75636, + "TargetID": 56462, + "Directional": true + }] + }, { + "ID": 16722, + "SourceStructureID": 75637, + "TargetStructureID": 9787, + "Label": "75637-9787 via Conventional from 75638 -> 12241", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75638, + "TargetID": 12241, + "Directional": true + }] + }, { + "ID": 16723, + "SourceStructureID": 75641, + "TargetStructureID": 9787, + "Label": "75641-9787 via Conventional from 75642 -> 12249", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75642, + "TargetID": 12249, + "Directional": true + }] + }, { + "ID": 16724, + "SourceStructureID": 75678, + "TargetStructureID": 68548, + "Label": "75678-68548 via Conventional from 75679 -> 75682", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75679, + "TargetID": 75682, + "Directional": true + }] + }, { + "ID": 16725, + "SourceStructureID": 75695, + "TargetStructureID": 68548, + "Label": "75695-68548 via Conventional from 75696 -> 75694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75696, + "TargetID": 75694, + "Directional": true + }] + }, { + "ID": 16726, + "SourceStructureID": 75721, + "TargetStructureID": 8580, + "Label": "75721-8580 via Conventional from 75722 -> 59654", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75722, + "TargetID": 59654, + "Directional": true + }] + }, { + "ID": 16727, + "SourceStructureID": 75752, + "TargetStructureID": 73025, + "Label": "75752-73025 via Conventional from 75754 -> 75755", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75754, + "TargetID": 75755, + "Directional": true + }] + }, { + "ID": 16728, + "SourceStructureID": 75760, + "TargetStructureID": 5530, + "Label": "75760-5530 via Conventional from 75766 -> 75767", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75766, + "TargetID": 75767, + "Directional": true + }] + }, { + "ID": 16729, + "SourceStructureID": 75782, + "TargetStructureID": 5530, + "Label": "75782-5530 via Conventional from 75783 -> 75784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75783, + "TargetID": 75784, + "Directional": true + }] + }, { + "ID": 16730, + "SourceStructureID": 75782, + "TargetStructureID": 75001, + "Label": "75782-75001 via Conventional from 82536 -> 82535", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82536, + "TargetID": 82535, + "Directional": true + }] + }, { + "ID": 16731, + "SourceStructureID": 75792, + "TargetStructureID": 5530, + "Label": "75792-5530 via Conventional from 75793 -> 75794", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75793, + "TargetID": 75794, + "Directional": true + }] + }, { + "ID": 16732, + "SourceStructureID": 75807, + "TargetStructureID": 68539, + "Label": "75807-68539 via Conventional from 75808 -> 69159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75808, + "TargetID": 69159, + "Directional": true + }] + }, { + "ID": 16733, + "SourceStructureID": 75816, + "TargetStructureID": 68539, + "Label": "75816-68539 via Conventional from 75819 -> 75820, 75821 -> 75822, 75823 -> 75824", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75819, + "TargetID": 75820, + "Directional": true + }, { + "SourceID": 75821, + "TargetID": 75822, + "Directional": true + }, { + "SourceID": 75823, + "TargetID": 75824, + "Directional": true + }] + }, { + "ID": 16734, + "SourceStructureID": 75825, + "TargetStructureID": 68539, + "Label": "75825-68539 via Conventional from 75826 -> 75827", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75826, + "TargetID": 75827, + "Directional": true + }] + }, { + "ID": 16735, + "SourceStructureID": 75830, + "TargetStructureID": 68539, + "Label": "75830-68539 via Conventional from 75831 -> 75832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75831, + "TargetID": 75832, + "Directional": true + }] + }, { + "ID": 16736, + "SourceStructureID": 75833, + "TargetStructureID": 68539, + "Label": "75833-68539 via Conventional from 75834 -> 69161, 75835 -> 75836", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75834, + "TargetID": 69161, + "Directional": true + }, { + "SourceID": 75835, + "TargetID": 75836, + "Directional": true + }] + }, { + "ID": 16737, + "SourceStructureID": 75893, + "TargetStructureID": 5530, + "Label": "75893-5530 via Conventional from 75894 -> 75892", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75894, + "TargetID": 75892, + "Directional": true + }] + }, { + "ID": 16738, + "SourceStructureID": 75902, + "TargetStructureID": 5530, + "Label": "75902-5530 via Conventional from 75903 -> 75904", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75903, + "TargetID": 75904, + "Directional": true + }] + }, { + "ID": 16739, + "SourceStructureID": 75902, + "TargetStructureID": 71882, + "Label": "75902-71882 via Conventional from 90453 -> 90452", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90453, + "TargetID": 90452, + "Directional": true + }] + }, { + "ID": 16740, + "SourceStructureID": 75917, + "TargetStructureID": 5530, + "Label": "75917-5530 via Conventional from 75918 -> 75919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75918, + "TargetID": 75919, + "Directional": true + }] + }, { + "ID": 16741, + "SourceStructureID": 75928, + "TargetStructureID": 68539, + "Label": "75928-68539 via Conventional from 75929 -> 75927", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75929, + "TargetID": 75927, + "Directional": true + }] + }, { + "ID": 16742, + "SourceStructureID": 75933, + "TargetStructureID": 22994, + "Label": "75933-22994 via Conventional from 75935 -> 75936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 75935, + "TargetID": 75936, + "Directional": true + }] + }, { + "ID": 16743, + "SourceStructureID": 76039, + "TargetStructureID": 68539, + "Label": "76039-68539 via Conventional from 76040 -> 76043, 76041 -> 76042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76040, + "TargetID": 76043, + "Directional": true + }, { + "SourceID": 76041, + "TargetID": 76042, + "Directional": true + }] + }, { + "ID": 16744, + "SourceStructureID": 76056, + "TargetStructureID": 76039, + "Label": "76056-76039 via Conventional from 76057 -> 76055", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76057, + "TargetID": 76055, + "Directional": true + }] + }, { + "ID": 16745, + "SourceStructureID": 76060, + "TargetStructureID": 68539, + "Label": "76060-68539 via Conventional from 76062 -> 76063, 76064 -> 76065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76062, + "TargetID": 76063, + "Directional": true + }, { + "SourceID": 76064, + "TargetID": 76065, + "Directional": true + }] + }, { + "ID": 16746, + "SourceStructureID": 76066, + "TargetStructureID": 76067, + "Label": "76066-76067 via Conventional from 76068 -> 76070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76068, + "TargetID": 76070, + "Directional": true + }] + }, { + "ID": 16747, + "SourceStructureID": 76071, + "TargetStructureID": 68539, + "Label": "76071-68539 via Conventional from 76072 -> 76073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76072, + "TargetID": 76073, + "Directional": true + }] + }, { + "ID": 16748, + "SourceStructureID": 76075, + "TargetStructureID": 5530, + "Label": "76075-5530 via Conventional from 76080 -> 76081, 77400 -> 77401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76080, + "TargetID": 76081, + "Directional": true + }, { + "SourceID": 77400, + "TargetID": 77401, + "Directional": true + }] + }, { + "ID": 16749, + "SourceStructureID": 76086, + "TargetStructureID": 68539, + "Label": "76086-68539 via Conventional from 76087 -> 76085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76087, + "TargetID": 76085, + "Directional": true + }] + }, { + "ID": 16750, + "SourceStructureID": 76088, + "TargetStructureID": 68539, + "Label": "76088-68539 via Conventional from 76089 -> 76084", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76089, + "TargetID": 76084, + "Directional": true + }] + }, { + "ID": 16751, + "SourceStructureID": 76091, + "TargetStructureID": 5530, + "Label": "76091-5530 via Conventional from 76092 -> 76093, 76107 -> 76108", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76092, + "TargetID": 76093, + "Directional": true + }, { + "SourceID": 76107, + "TargetID": 76108, + "Directional": true + }] + }, { + "ID": 16752, + "SourceStructureID": 76103, + "TargetStructureID": 68539, + "Label": "76103-68539 via Conventional from 76105 -> 76101", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76105, + "TargetID": 76101, + "Directional": true + }] + }, { + "ID": 16753, + "SourceStructureID": 76120, + "TargetStructureID": 68539, + "Label": "76120-68539 via Conventional from 76121 -> 76122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76121, + "TargetID": 76122, + "Directional": true + }] + }, { + "ID": 16754, + "SourceStructureID": 76127, + "TargetStructureID": 284, + "Label": "76127-284 via Ribbon Synapse from 76128 -> 76126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76128, + "TargetID": 76126, + "Directional": true + }] + }, { + "ID": 16755, + "SourceStructureID": 76127, + "TargetStructureID": 5117, + "Label": "76127-5117 via Ribbon Synapse from 76128 -> 15004", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 76128, + "TargetID": 15004, + "Directional": true + }] + }, { + "ID": 16756, + "SourceStructureID": 76141, + "TargetStructureID": 6115, + "Label": "76141-6115 via Conventional from 76144 -> 76142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76144, + "TargetID": 76142, + "Directional": true + }] + }, { + "ID": 16757, + "SourceStructureID": 76164, + "TargetStructureID": 6115, + "Label": "76164-6115 via Conventional from 76165 -> 76166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76165, + "TargetID": 76166, + "Directional": true + }] + }, { + "ID": 16758, + "SourceStructureID": 76173, + "TargetStructureID": 6115, + "Label": "76173-6115 via Conventional from 76174 -> 76175", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76174, + "TargetID": 76175, + "Directional": true + }] + }, { + "ID": 16759, + "SourceStructureID": 76199, + "TargetStructureID": 67042, + "Label": "76199-67042 via Conventional from 76200 -> 76198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76200, + "TargetID": 76198, + "Directional": true + }] + }, { + "ID": 16760, + "SourceStructureID": 76199, + "TargetStructureID": 76202, + "Label": "76199-76202 via Conventional from 76201 -> 76203", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76201, + "TargetID": 76203, + "Directional": true + }] + }, { + "ID": 16761, + "SourceStructureID": 76211, + "TargetStructureID": 14615, + "Label": "76211-14615 via Conventional from 76212 -> 76210", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76212, + "TargetID": 76210, + "Directional": true + }] + }, { + "ID": 16762, + "SourceStructureID": 76214, + "TargetStructureID": 14615, + "Label": "76214-14615 via Conventional from 76217 -> 76636, 76218 -> 76222, 76219 -> 76221, 76609 -> 76607, 76612 -> 76613", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76217, + "TargetID": 76636, + "Directional": true + }, { + "SourceID": 76218, + "TargetID": 76222, + "Directional": true + }, { + "SourceID": 76219, + "TargetID": 76221, + "Directional": true + }, { + "SourceID": 76609, + "TargetID": 76607, + "Directional": true + }, { + "SourceID": 76612, + "TargetID": 76613, + "Directional": true + }] + }, { + "ID": 16763, + "SourceStructureID": 76247, + "TargetStructureID": 5562, + "Label": "76247-5562 via Conventional from 76249 -> 37648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76249, + "TargetID": 37648, + "Directional": true + }] + }, { + "ID": 16764, + "SourceStructureID": 76269, + "TargetStructureID": 5562, + "Label": "76269-5562 via Conventional from 76270 -> 63063", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76270, + "TargetID": 63063, + "Directional": true + }] + }, { + "ID": 16765, + "SourceStructureID": 76283, + "TargetStructureID": 5562, + "Label": "76283-5562 via Conventional from 76284 -> 40295", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76284, + "TargetID": 40295, + "Directional": true + }] + }, { + "ID": 16766, + "SourceStructureID": 76291, + "TargetStructureID": 5562, + "Label": "76291-5562 via Conventional from 76292 -> 40288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76292, + "TargetID": 40288, + "Directional": true + }] + }, { + "ID": 16767, + "SourceStructureID": 76298, + "TargetStructureID": 5562, + "Label": "76298-5562 via Conventional from 76299 -> 63073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76299, + "TargetID": 63073, + "Directional": true + }] + }, { + "ID": 16768, + "SourceStructureID": 76300, + "TargetStructureID": 5562, + "Label": "76300-5562 via Conventional from 76301 -> 40284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76301, + "TargetID": 40284, + "Directional": true + }] + }, { + "ID": 16769, + "SourceStructureID": 76328, + "TargetStructureID": 5562, + "Label": "76328-5562 via Conventional from 76329 -> 76330", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76329, + "TargetID": 76330, + "Directional": true + }] + }, { + "ID": 16770, + "SourceStructureID": 76337, + "TargetStructureID": 5562, + "Label": "76337-5562 via Conventional from 76344 -> 40279", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76344, + "TargetID": 40279, + "Directional": true + }] + }, { + "ID": 16771, + "SourceStructureID": 76349, + "TargetStructureID": 5562, + "Label": "76349-5562 via Conventional from 76350 -> 40277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76350, + "TargetID": 40277, + "Directional": true + }] + }, { + "ID": 16772, + "SourceStructureID": 76362, + "TargetStructureID": 5562, + "Label": "76362-5562 via Conventional from 76363 -> 76364", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76363, + "TargetID": 76364, + "Directional": true + }] + }, { + "ID": 16773, + "SourceStructureID": 76365, + "TargetStructureID": 5562, + "Label": "76365-5562 via Conventional from 76374 -> 76375", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76374, + "TargetID": 76375, + "Directional": true + }] + }, { + "ID": 16774, + "SourceStructureID": 76378, + "TargetStructureID": 5562, + "Label": "76378-5562 via Conventional from 76383 -> 76382", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76383, + "TargetID": 76382, + "Directional": true + }] + }, { + "ID": 16775, + "SourceStructureID": 76386, + "TargetStructureID": 5562, + "Label": "76386-5562 via Conventional from 76390 -> 40272", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76390, + "TargetID": 40272, + "Directional": true + }] + }, { + "ID": 16776, + "SourceStructureID": 76391, + "TargetStructureID": 5562, + "Label": "76391-5562 via Conventional from 76392 -> 40274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76392, + "TargetID": 40274, + "Directional": true + }] + }, { + "ID": 16777, + "SourceStructureID": 76396, + "TargetStructureID": 5562, + "Label": "76396-5562 via Conventional from 76397 -> 40273", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76397, + "TargetID": 40273, + "Directional": true + }] + }, { + "ID": 16778, + "SourceStructureID": 76399, + "TargetStructureID": 5916, + "Label": "76399-5916 via Conventional from 109365 -> 109366", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109365, + "TargetID": 109366, + "Directional": true + }] + }, { + "ID": 16779, + "SourceStructureID": 76399, + "TargetStructureID": 63199, + "Label": "76399-63199 via Conventional from 109367 -> 109368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109367, + "TargetID": 109368, + "Directional": true + }] + }, { + "ID": 16780, + "SourceStructureID": 76401, + "TargetStructureID": 5562, + "Label": "76401-5562 via Conventional from 76402 -> 40271", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76402, + "TargetID": 40271, + "Directional": true + }] + }, { + "ID": 16781, + "SourceStructureID": 76409, + "TargetStructureID": 5562, + "Label": "76409-5562 via Conventional from 76410 -> 40268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76410, + "TargetID": 40268, + "Directional": true + }] + }, { + "ID": 16782, + "SourceStructureID": 76421, + "TargetStructureID": 5562, + "Label": "76421-5562 via Conventional from 78323 -> 78322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78323, + "TargetID": 78322, + "Directional": true + }] + }, { + "ID": 16783, + "SourceStructureID": 76430, + "TargetStructureID": 5562, + "Label": "76430-5562 via Conventional from 76431 -> 63074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76431, + "TargetID": 63074, + "Directional": true + }] + }, { + "ID": 16784, + "SourceStructureID": 76473, + "TargetStructureID": 5530, + "Label": "76473-5530 via Conventional from 76474 -> 76475", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76474, + "TargetID": 76475, + "Directional": true + }] + }, { + "ID": 16785, + "SourceStructureID": 76476, + "TargetStructureID": 5530, + "Label": "76476-5530 via Conventional from 76477 -> 76478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76477, + "TargetID": 76478, + "Directional": true + }] + }, { + "ID": 16786, + "SourceStructureID": 76479, + "TargetStructureID": 5530, + "Label": "76479-5530 via Conventional from 76480 -> 76481", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76480, + "TargetID": 76481, + "Directional": true + }] + }, { + "ID": 16787, + "SourceStructureID": 76495, + "TargetStructureID": 5530, + "Label": "76495-5530 via Conventional from 76496 -> 76497", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76496, + "TargetID": 76497, + "Directional": true + }] + }, { + "ID": 16788, + "SourceStructureID": 76498, + "TargetStructureID": 5562, + "Label": "76498-5562 via Conventional from 76499 -> 76500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76499, + "TargetID": 76500, + "Directional": true + }] + }, { + "ID": 16789, + "SourceStructureID": 76505, + "TargetStructureID": 5562, + "Label": "76505-5562 via Conventional from 76506 -> 63078", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76506, + "TargetID": 63078, + "Directional": true + }] + }, { + "ID": 16790, + "SourceStructureID": 76517, + "TargetStructureID": 33088, + "Label": "76517-33088 via Conventional from 76518 -> 33090", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76518, + "TargetID": 33090, + "Directional": true + }] + }, { + "ID": 16791, + "SourceStructureID": 76520, + "TargetStructureID": 5562, + "Label": "76520-5562 via Conventional from 76521 -> 76522", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76521, + "TargetID": 76522, + "Directional": true + }] + }, { + "ID": 16792, + "SourceStructureID": 76530, + "TargetStructureID": 5530, + "Label": "76530-5530 via Conventional from 76540 -> 76541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76540, + "TargetID": 76541, + "Directional": true + }] + }, { + "ID": 16793, + "SourceStructureID": 76543, + "TargetStructureID": 5562, + "Label": "76543-5562 via Conventional from 76581 -> 76580", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76581, + "TargetID": 76580, + "Directional": true + }] + }, { + "ID": 16794, + "SourceStructureID": 76553, + "TargetStructureID": 5562, + "Label": "76553-5562 via Conventional from 76555 -> 76554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76555, + "TargetID": 76554, + "Directional": true + }] + }, { + "ID": 16795, + "SourceStructureID": 76566, + "TargetStructureID": 5562, + "Label": "76566-5562 via Conventional from 76567 -> 63213", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76567, + "TargetID": 63213, + "Directional": true + }] + }, { + "ID": 16796, + "SourceStructureID": 76571, + "TargetStructureID": 5562, + "Label": "76571-5562 via Conventional from 76572 -> 63214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76572, + "TargetID": 63214, + "Directional": true + }] + }, { + "ID": 16797, + "SourceStructureID": 76577, + "TargetStructureID": 5562, + "Label": "76577-5562 via Conventional from 76579 -> 76578", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76579, + "TargetID": 76578, + "Directional": true + }] + }, { + "ID": 16798, + "SourceStructureID": 76582, + "TargetStructureID": 14615, + "Label": "76582-14615 via Conventional from 76583 -> 76586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76583, + "TargetID": 76586, + "Directional": true + }] + }, { + "ID": 16799, + "SourceStructureID": 76591, + "TargetStructureID": 5562, + "Label": "76591-5562 via Conventional from 76592 -> 49394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76592, + "TargetID": 49394, + "Directional": true + }] + }, { + "ID": 16800, + "SourceStructureID": 76616, + "TargetStructureID": 5562, + "Label": "76616-5562 via Conventional from 76618 -> 76617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76618, + "TargetID": 76617, + "Directional": true + }] + }, { + "ID": 16801, + "SourceStructureID": 76628, + "TargetStructureID": 5562, + "Label": "76628-5562 via Conventional from 76629 -> 63217", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76629, + "TargetID": 63217, + "Directional": true + }] + }, { + "ID": 16802, + "SourceStructureID": 76630, + "TargetStructureID": 5562, + "Label": "76630-5562 via Conventional from 76631 -> 63216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76631, + "TargetID": 63216, + "Directional": true + }] + }, { + "ID": 16803, + "SourceStructureID": 76638, + "TargetStructureID": 5562, + "Label": "76638-5562 via Conventional from 76644 -> 76645", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76644, + "TargetID": 76645, + "Directional": true + }] + }, { + "ID": 16804, + "SourceStructureID": 76655, + "TargetStructureID": 5562, + "Label": "76655-5562 via Conventional from 76662 -> 31298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76662, + "TargetID": 31298, + "Directional": true + }] + }, { + "ID": 16805, + "SourceStructureID": 76656, + "TargetStructureID": 5562, + "Label": "76656-5562 via Conventional from 76659 -> 76660", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76659, + "TargetID": 76660, + "Directional": true + }] + }, { + "ID": 16806, + "SourceStructureID": 76663, + "TargetStructureID": 5562, + "Label": "76663-5562 via Conventional from 76667 -> 31297, 76669 -> 76668", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76667, + "TargetID": 31297, + "Directional": true + }, { + "SourceID": 76669, + "TargetID": 76668, + "Directional": true + }] + }, { + "ID": 16807, + "SourceStructureID": 76707, + "TargetStructureID": 5562, + "Label": "76707-5562 via Conventional from 76708 -> 47312", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76708, + "TargetID": 47312, + "Directional": true + }] + }, { + "ID": 16808, + "SourceStructureID": 76709, + "TargetStructureID": 5562, + "Label": "76709-5562 via Conventional from 76710 -> 63246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76710, + "TargetID": 63246, + "Directional": true + }] + }, { + "ID": 16809, + "SourceStructureID": 76721, + "TargetStructureID": 5562, + "Label": "76721-5562 via Conventional from 76722 -> 76723", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76722, + "TargetID": 76723, + "Directional": true + }] + }, { + "ID": 16810, + "SourceStructureID": 76742, + "TargetStructureID": 5530, + "Label": "76742-5530 via Conventional from 76743 -> 76744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76743, + "TargetID": 76744, + "Directional": true + }] + }, { + "ID": 16811, + "SourceStructureID": 76749, + "TargetStructureID": 5530, + "Label": "76749-5530 via Conventional from 76750 -> 76751", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76750, + "TargetID": 76751, + "Directional": true + }] + }, { + "ID": 16812, + "SourceStructureID": 76752, + "TargetStructureID": 5530, + "Label": "76752-5530 via Conventional from 76753 -> 76754", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76753, + "TargetID": 76754, + "Directional": true + }] + }, { + "ID": 16813, + "SourceStructureID": 76756, + "TargetStructureID": 5530, + "Label": "76756-5530 via Conventional from 76757 -> 76758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76757, + "TargetID": 76758, + "Directional": true + }] + }, { + "ID": 16814, + "SourceStructureID": 76766, + "TargetStructureID": 5530, + "Label": "76766-5530 via Conventional from 76767 -> 76768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76767, + "TargetID": 76768, + "Directional": true + }] + }, { + "ID": 16815, + "SourceStructureID": 76775, + "TargetStructureID": 5530, + "Label": "76775-5530 via Conventional from 76776 -> 76777", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76776, + "TargetID": 76777, + "Directional": true + }] + }, { + "ID": 16816, + "SourceStructureID": 76778, + "TargetStructureID": 5530, + "Label": "76778-5530 via Conventional from 76779 -> 76780", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76779, + "TargetID": 76780, + "Directional": true + }] + }, { + "ID": 16817, + "SourceStructureID": 76781, + "TargetStructureID": 5530, + "Label": "76781-5530 via Conventional from 76782 -> 76783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76782, + "TargetID": 76783, + "Directional": true + }] + }, { + "ID": 16818, + "SourceStructureID": 76785, + "TargetStructureID": 5530, + "Label": "76785-5530 via Conventional from 76787 -> 76788", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76787, + "TargetID": 76788, + "Directional": true + }] + }, { + "ID": 16819, + "SourceStructureID": 76786, + "TargetStructureID": 5530, + "Label": "76786-5530 via Conventional from 76789 -> 76790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76789, + "TargetID": 76790, + "Directional": true + }] + }, { + "ID": 16820, + "SourceStructureID": 76792, + "TargetStructureID": 14615, + "Label": "76792-14615 via Conventional from 76793 -> 76794, 76884 -> 76885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76793, + "TargetID": 76794, + "Directional": true + }, { + "SourceID": 76884, + "TargetID": 76885, + "Directional": true + }] + }, { + "ID": 16821, + "SourceStructureID": 76800, + "TargetStructureID": 5530, + "Label": "76800-5530 via Conventional from 76822 -> 76823", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76822, + "TargetID": 76823, + "Directional": true + }] + }, { + "ID": 16822, + "SourceStructureID": 76808, + "TargetStructureID": 14615, + "Label": "76808-14615 via Conventional from 76809 -> 76807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76809, + "TargetID": 76807, + "Directional": true + }] + }, { + "ID": 16823, + "SourceStructureID": 76811, + "TargetStructureID": 14615, + "Label": "76811-14615 via Conventional from 76812 -> 76813", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76812, + "TargetID": 76813, + "Directional": true + }] + }, { + "ID": 16824, + "SourceStructureID": 76827, + "TargetStructureID": 14615, + "Label": "76827-14615 via Conventional from 76843 -> 76844, 76855 -> 76856", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76843, + "TargetID": 76844, + "Directional": true + }, { + "SourceID": 76855, + "TargetID": 76856, + "Directional": true + }] + }, { + "ID": 16825, + "SourceStructureID": 76837, + "TargetStructureID": 76829, + "Label": "76837-76829 via Conventional from 76838 -> 76836", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76838, + "TargetID": 76836, + "Directional": true + }] + }, { + "ID": 16826, + "SourceStructureID": 76859, + "TargetStructureID": 14615, + "Label": "76859-14615 via Conventional from 76860 -> 76858", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76860, + "TargetID": 76858, + "Directional": true + }] + }, { + "ID": 16827, + "SourceStructureID": 76862, + "TargetStructureID": 76859, + "Label": "76862-76859 via Conventional from 76863 -> 76861", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76863, + "TargetID": 76861, + "Directional": true + }] + }, { + "ID": 16828, + "SourceStructureID": 76867, + "TargetStructureID": 5530, + "Label": "76867-5530 via Conventional from 82572 -> 76755", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82572, + "TargetID": 76755, + "Directional": true + }] + }, { + "ID": 16829, + "SourceStructureID": 76867, + "TargetStructureID": 76749, + "Label": "76867-76749 via Conventional from 82573 -> 82574", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82573, + "TargetID": 82574, + "Directional": true + }] + }, { + "ID": 16830, + "SourceStructureID": 76871, + "TargetStructureID": 14615, + "Label": "76871-14615 via Conventional from 76872 -> 76870", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76872, + "TargetID": 76870, + "Directional": true + }] + }, { + "ID": 16831, + "SourceStructureID": 76877, + "TargetStructureID": 76595, + "Label": "76877-76595 via Conventional from 76878 -> 76637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76878, + "TargetID": 76637, + "Directional": true + }] + }, { + "ID": 16832, + "SourceStructureID": 76886, + "TargetStructureID": 67671, + "Label": "76886-67671 via Conventional from 76887 -> 76888", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76887, + "TargetID": 76888, + "Directional": true + }] + }, { + "ID": 16833, + "SourceStructureID": 76912, + "TargetStructureID": 14615, + "Label": "76912-14615 via Conventional from 76913 -> 76914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76913, + "TargetID": 76914, + "Directional": true + }] + }, { + "ID": 16834, + "SourceStructureID": 76947, + "TargetStructureID": 5562, + "Label": "76947-5562 via Conventional from 76948 -> 63222", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76948, + "TargetID": 63222, + "Directional": true + }] + }, { + "ID": 16835, + "SourceStructureID": 76949, + "TargetStructureID": 5562, + "Label": "76949-5562 via Conventional from 76950 -> 63234", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76950, + "TargetID": 63234, + "Directional": true + }] + }, { + "ID": 16836, + "SourceStructureID": 76951, + "TargetStructureID": 5562, + "Label": "76951-5562 via Conventional from 76952 -> 63232", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76952, + "TargetID": 63232, + "Directional": true + }] + }, { + "ID": 16837, + "SourceStructureID": 76973, + "TargetStructureID": 10931, + "Label": "76973-10931 via Conventional from 76975 -> 76976, 77008 -> 77009, 77030 -> 77031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76975, + "TargetID": 76976, + "Directional": true + }, { + "SourceID": 77008, + "TargetID": 77009, + "Directional": true + }, { + "SourceID": 77030, + "TargetID": 77031, + "Directional": true + }] + }, { + "ID": 16838, + "SourceStructureID": 76977, + "TargetStructureID": 71519, + "Label": "76977-71519 via Conventional from 76978 -> 76979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76978, + "TargetID": 76979, + "Directional": true + }] + }, { + "ID": 16839, + "SourceStructureID": 76980, + "TargetStructureID": 71519, + "Label": "76980-71519 via Conventional from 76981 -> 71712", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76981, + "TargetID": 71712, + "Directional": true + }] + }, { + "ID": 16840, + "SourceStructureID": 76980, + "TargetStructureID": 76986, + "Label": "76980-76986 via Conventional from 76985 -> 76988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76985, + "TargetID": 76988, + "Directional": true + }] + }, { + "ID": 16841, + "SourceStructureID": 76983, + "TargetStructureID": 76980, + "Label": "76983-76980 via Conventional from 76984 -> 76982", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76984, + "TargetID": 76982, + "Directional": true + }] + }, { + "ID": 16842, + "SourceStructureID": 76986, + "TargetStructureID": 71519, + "Label": "76986-71519 via Conventional from 76987 -> 71713", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76987, + "TargetID": 71713, + "Directional": true + }] + }, { + "ID": 16843, + "SourceStructureID": 76990, + "TargetStructureID": 71519, + "Label": "76990-71519 via Conventional from 76991 -> 76989", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76991, + "TargetID": 76989, + "Directional": true + }] + }, { + "ID": 16844, + "SourceStructureID": 76996, + "TargetStructureID": 71517, + "Label": "76996-71517 via Conventional from 76997 -> 76998", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 76997, + "TargetID": 76998, + "Directional": true + }] + }, { + "ID": 16845, + "SourceStructureID": 77012, + "TargetStructureID": 10931, + "Label": "77012-10931 via Conventional from 77013 -> 77014, 77016 -> 77017", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77013, + "TargetID": 77014, + "Directional": true + }, { + "SourceID": 77016, + "TargetID": 77017, + "Directional": true + }] + }, { + "ID": 16846, + "SourceStructureID": 77019, + "TargetStructureID": 10931, + "Label": "77019-10931 via Conventional from 77025 -> 14220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77025, + "TargetID": 14220, + "Directional": true + }] + }, { + "ID": 16847, + "SourceStructureID": 77023, + "TargetStructureID": 71519, + "Label": "77023-71519 via Conventional from 77024 -> 71703", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77024, + "TargetID": 71703, + "Directional": true + }] + }, { + "ID": 16848, + "SourceStructureID": 77027, + "TargetStructureID": 71519, + "Label": "77027-71519 via Conventional from 77028 -> 71680", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77028, + "TargetID": 71680, + "Directional": true + }] + }, { + "ID": 16849, + "SourceStructureID": 77033, + "TargetStructureID": 77027, + "Label": "77033-77027 via Conventional from 77034 -> 77032", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77034, + "TargetID": 77032, + "Directional": true + }] + }, { + "ID": 16850, + "SourceStructureID": 77037, + "TargetStructureID": 71519, + "Label": "77037-71519 via Conventional from 77038 -> 77039", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77038, + "TargetID": 77039, + "Directional": true + }] + }, { + "ID": 16851, + "SourceStructureID": 77040, + "TargetStructureID": 71519, + "Label": "77040-71519 via Conventional from 77041 -> 77042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77041, + "TargetID": 77042, + "Directional": true + }] + }, { + "ID": 16852, + "SourceStructureID": 77043, + "TargetStructureID": 71519, + "Label": "77043-71519 via Conventional from 77044 -> 77045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77044, + "TargetID": 77045, + "Directional": true + }] + }, { + "ID": 16853, + "SourceStructureID": 77046, + "TargetStructureID": 71519, + "Label": "77046-71519 via Conventional from 77047 -> 77049", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77047, + "TargetID": 77049, + "Directional": true + }] + }, { + "ID": 16854, + "SourceStructureID": 77051, + "TargetStructureID": 71519, + "Label": "77051-71519 via Conventional from 77052 -> 77050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77052, + "TargetID": 77050, + "Directional": true + }] + }, { + "ID": 16855, + "SourceStructureID": 77077, + "TargetStructureID": 5394, + "Label": "77077-5394 via Conventional from 77078 -> 77074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77078, + "TargetID": 77074, + "Directional": true + }] + }, { + "ID": 16856, + "SourceStructureID": 77110, + "TargetStructureID": 5562, + "Label": "77110-5562 via Conventional from 77114 -> 77113", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77114, + "TargetID": 77113, + "Directional": true + }] + }, { + "ID": 16857, + "SourceStructureID": 77116, + "TargetStructureID": 65351, + "Label": "77116-65351 via Conventional from 78980 -> 78979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78980, + "TargetID": 78979, + "Directional": true + }] + }, { + "ID": 16858, + "SourceStructureID": 77118, + "TargetStructureID": 5562, + "Label": "77118-5562 via Conventional from 77119 -> 63227", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77119, + "TargetID": 63227, + "Directional": true + }] + }, { + "ID": 16859, + "SourceStructureID": 77120, + "TargetStructureID": 5562, + "Label": "77120-5562 via Conventional from 77121 -> 63225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77121, + "TargetID": 63225, + "Directional": true + }] + }, { + "ID": 16860, + "SourceStructureID": 77122, + "TargetStructureID": 5562, + "Label": "77122-5562 via Conventional from 77123 -> 63226", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77123, + "TargetID": 63226, + "Directional": true + }] + }, { + "ID": 16861, + "SourceStructureID": 77137, + "TargetStructureID": 5562, + "Label": "77137-5562 via Conventional from 77139 -> 77138", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77139, + "TargetID": 77138, + "Directional": true + }] + }, { + "ID": 16862, + "SourceStructureID": 77140, + "TargetStructureID": 5562, + "Label": "77140-5562 via Conventional from 77142 -> 77141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77142, + "TargetID": 77141, + "Directional": true + }] + }, { + "ID": 16863, + "SourceStructureID": 77143, + "TargetStructureID": 5562, + "Label": "77143-5562 via Conventional from 77144 -> 77145", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77144, + "TargetID": 77145, + "Directional": true + }] + }, { + "ID": 16864, + "SourceStructureID": 77172, + "TargetStructureID": 5562, + "Label": "77172-5562 via Conventional from 77173 -> 77174", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77173, + "TargetID": 77174, + "Directional": true + }] + }, { + "ID": 16865, + "SourceStructureID": 77199, + "TargetStructureID": 5562, + "Label": "77199-5562 via Conventional from 77201 -> 77200", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77201, + "TargetID": 77200, + "Directional": true + }] + }, { + "ID": 16866, + "SourceStructureID": 77215, + "TargetStructureID": 7024, + "Label": "77215-7024 via Conventional from 106603 -> 106602", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106603, + "TargetID": 106602, + "Directional": true + }] + }, { + "ID": 16867, + "SourceStructureID": 77222, + "TargetStructureID": 5562, + "Label": "77222-5562 via Conventional from 77224 -> 77223", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77224, + "TargetID": 77223, + "Directional": true + }] + }, { + "ID": 16868, + "SourceStructureID": 77225, + "TargetStructureID": 5562, + "Label": "77225-5562 via Conventional from 77227 -> 77226", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77227, + "TargetID": 77226, + "Directional": true + }] + }, { + "ID": 16869, + "SourceStructureID": 77228, + "TargetStructureID": 5562, + "Label": "77228-5562 via Conventional from 77229 -> 77230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77229, + "TargetID": 77230, + "Directional": true + }] + }, { + "ID": 16870, + "SourceStructureID": 77252, + "TargetStructureID": 5562, + "Label": "77252-5562 via Conventional from 77253 -> 77254", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77253, + "TargetID": 77254, + "Directional": true + }] + }, { + "ID": 16871, + "SourceStructureID": 77280, + "TargetStructureID": 5562, + "Label": "77280-5562 via Conventional from 77281 -> 33097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77281, + "TargetID": 33097, + "Directional": true + }] + }, { + "ID": 16872, + "SourceStructureID": 77292, + "TargetStructureID": 5562, + "Label": "77292-5562 via Conventional from 77293 -> 77294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77293, + "TargetID": 77294, + "Directional": true + }] + }, { + "ID": 16873, + "SourceStructureID": 77296, + "TargetStructureID": 5562, + "Label": "77296-5562 via Conventional from 77426 -> 77427", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77426, + "TargetID": 77427, + "Directional": true + }] + }, { + "ID": 16874, + "SourceStructureID": 77308, + "TargetStructureID": 5562, + "Label": "77308-5562 via Conventional from 77309 -> 49561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77309, + "TargetID": 49561, + "Directional": true + }] + }, { + "ID": 16875, + "SourceStructureID": 77332, + "TargetStructureID": 5530, + "Label": "77332-5530 via Conventional from 77333 -> 77334, 82593 -> 82592", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77333, + "TargetID": 77334, + "Directional": true + }, { + "SourceID": 82593, + "TargetID": 82592, + "Directional": true + }] + }, { + "ID": 16876, + "SourceStructureID": 77342, + "TargetStructureID": 5530, + "Label": "77342-5530 via Conventional from 77343 -> 77344", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77343, + "TargetID": 77344, + "Directional": true + }] + }, { + "ID": 16877, + "SourceStructureID": 77366, + "TargetStructureID": 67671, + "Label": "77366-67671 via Conventional from 77368 -> 77369", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77368, + "TargetID": 77369, + "Directional": true + }] + }, { + "ID": 16878, + "SourceStructureID": 77367, + "TargetStructureID": 67671, + "Label": "77367-67671 via Conventional from 77373 -> 77374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77373, + "TargetID": 77374, + "Directional": true + }] + }, { + "ID": 16879, + "SourceStructureID": 77370, + "TargetStructureID": 67671, + "Label": "77370-67671 via Conventional from 77371 -> 77372", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77371, + "TargetID": 77372, + "Directional": true + }] + }, { + "ID": 16880, + "SourceStructureID": 77375, + "TargetStructureID": 67671, + "Label": "77375-67671 via Conventional from 77376 -> 77377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77376, + "TargetID": 77377, + "Directional": true + }] + }, { + "ID": 16881, + "SourceStructureID": 77378, + "TargetStructureID": 67671, + "Label": "77378-67671 via Conventional from 77380 -> 77382", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77380, + "TargetID": 77382, + "Directional": true + }] + }, { + "ID": 16882, + "SourceStructureID": 77379, + "TargetStructureID": 67671, + "Label": "77379-67671 via Conventional from 77381 -> 77383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77381, + "TargetID": 77383, + "Directional": true + }] + }, { + "ID": 16883, + "SourceStructureID": 77388, + "TargetStructureID": 5530, + "Label": "77388-5530 via Conventional from 77389 -> 77390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77389, + "TargetID": 77390, + "Directional": true + }] + }, { + "ID": 16884, + "SourceStructureID": 77393, + "TargetStructureID": 5530, + "Label": "77393-5530 via Conventional from 77394 -> 77395", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77394, + "TargetID": 77395, + "Directional": true + }] + }, { + "ID": 16885, + "SourceStructureID": 77403, + "TargetStructureID": 5530, + "Label": "77403-5530 via Conventional from 77404 -> 77405", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77404, + "TargetID": 77405, + "Directional": true + }] + }, { + "ID": 16886, + "SourceStructureID": 77403, + "TargetStructureID": 82677, + "Label": "77403-82677 via Conventional from 83655 -> 83654", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83655, + "TargetID": 83654, + "Directional": true + }] + }, { + "ID": 16887, + "SourceStructureID": 77407, + "TargetStructureID": 5530, + "Label": "77407-5530 via Conventional from 77408 -> 77409", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77408, + "TargetID": 77409, + "Directional": true + }] + }, { + "ID": 16888, + "SourceStructureID": 77412, + "TargetStructureID": 5530, + "Label": "77412-5530 via Conventional from 77414 -> 77415", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77414, + "TargetID": 77415, + "Directional": true + }] + }, { + "ID": 16889, + "SourceStructureID": 77433, + "TargetStructureID": 5562, + "Label": "77433-5562 via Conventional from 77435 -> 77434", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77435, + "TargetID": 77434, + "Directional": true + }] + }, { + "ID": 16890, + "SourceStructureID": 77436, + "TargetStructureID": 5562, + "Label": "77436-5562 via Conventional from 77439 -> 49564", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77439, + "TargetID": 49564, + "Directional": true + }] + }, { + "ID": 16891, + "SourceStructureID": 77463, + "TargetStructureID": 5562, + "Label": "77463-5562 via Conventional from 77464 -> 77465", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77464, + "TargetID": 77465, + "Directional": true + }] + }, { + "ID": 16892, + "SourceStructureID": 77476, + "TargetStructureID": 5562, + "Label": "77476-5562 via Conventional from 77477 -> 77478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77477, + "TargetID": 77478, + "Directional": true + }] + }, { + "ID": 16893, + "SourceStructureID": 77484, + "TargetStructureID": 5562, + "Label": "77484-5562 via Conventional from 77485 -> 77486", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77485, + "TargetID": 77486, + "Directional": true + }] + }, { + "ID": 16894, + "SourceStructureID": 77504, + "TargetStructureID": 5562, + "Label": "77504-5562 via Conventional from 77505 -> 77506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77505, + "TargetID": 77506, + "Directional": true + }] + }, { + "ID": 16895, + "SourceStructureID": 77513, + "TargetStructureID": 5562, + "Label": "77513-5562 via Conventional from 77514 -> 77515", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77514, + "TargetID": 77515, + "Directional": true + }] + }, { + "ID": 16896, + "SourceStructureID": 77529, + "TargetStructureID": 5562, + "Label": "77529-5562 via Conventional from 77530 -> 77531", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77530, + "TargetID": 77531, + "Directional": true + }] + }, { + "ID": 16897, + "SourceStructureID": 77539, + "TargetStructureID": 5562, + "Label": "77539-5562 via Conventional from 77540 -> 77541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77540, + "TargetID": 77541, + "Directional": true + }] + }, { + "ID": 16898, + "SourceStructureID": 77555, + "TargetStructureID": 5562, + "Label": "77555-5562 via Conventional from 77556 -> 77557", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77556, + "TargetID": 77557, + "Directional": true + }] + }, { + "ID": 16899, + "SourceStructureID": 77563, + "TargetStructureID": 5562, + "Label": "77563-5562 via Conventional from 77564 -> 77565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77564, + "TargetID": 77565, + "Directional": true + }] + }, { + "ID": 16900, + "SourceStructureID": 77575, + "TargetStructureID": 5562, + "Label": "77575-5562 via Conventional from 77577 -> 77576", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77577, + "TargetID": 77576, + "Directional": true + }] + }, { + "ID": 16901, + "SourceStructureID": 77596, + "TargetStructureID": 5562, + "Label": "77596-5562 via Conventional from 77610 -> 77611", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77610, + "TargetID": 77611, + "Directional": true + }] + }, { + "ID": 16902, + "SourceStructureID": 77598, + "TargetStructureID": 5562, + "Label": "77598-5562 via Unknown from 77599 -> 77597", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 77599, + "TargetID": 77597, + "Directional": true + }] + }, { + "ID": 16903, + "SourceStructureID": 77603, + "TargetStructureID": 5284, + "Label": "77603-5284 via Conventional from 84535 -> 64598", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84535, + "TargetID": 64598, + "Directional": true + }] + }, { + "ID": 16904, + "SourceStructureID": 77613, + "TargetStructureID": 5562, + "Label": "77613-5562 via Conventional from 77614 -> 77615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77614, + "TargetID": 77615, + "Directional": true + }] + }, { + "ID": 16905, + "SourceStructureID": 77619, + "TargetStructureID": 5530, + "Label": "77619-5530 via Conventional from 77620 -> 77621", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77620, + "TargetID": 77621, + "Directional": true + }] + }, { + "ID": 16906, + "SourceStructureID": 77623, + "TargetStructureID": 5530, + "Label": "77623-5530 via Conventional from 77624 -> 45400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77624, + "TargetID": 45400, + "Directional": true + }] + }, { + "ID": 16907, + "SourceStructureID": 77625, + "TargetStructureID": 5530, + "Label": "77625-5530 via Conventional from 77626 -> 77627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77626, + "TargetID": 77627, + "Directional": true + }] + }, { + "ID": 16908, + "SourceStructureID": 77637, + "TargetStructureID": 5530, + "Label": "77637-5530 via Conventional from 77638 -> 77639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77638, + "TargetID": 77639, + "Directional": true + }] + }, { + "ID": 16909, + "SourceStructureID": 77642, + "TargetStructureID": 5530, + "Label": "77642-5530 via Conventional from 77646 -> 77647", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77646, + "TargetID": 77647, + "Directional": true + }] + }, { + "ID": 16910, + "SourceStructureID": 77656, + "TargetStructureID": 77654, + "Label": "77656-77654 via Conventional from 77657 -> 77655", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77657, + "TargetID": 77655, + "Directional": true + }] + }, { + "ID": 16911, + "SourceStructureID": 77658, + "TargetStructureID": 11030, + "Label": "77658-11030 via Conventional from 77659 -> 77660", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77659, + "TargetID": 77660, + "Directional": true + }] + }, { + "ID": 16912, + "SourceStructureID": 77664, + "TargetStructureID": 5645, + "Label": "77664-5645 via Conventional from 77665 -> 77663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77665, + "TargetID": 77663, + "Directional": true + }] + }, { + "ID": 16913, + "SourceStructureID": 77669, + "TargetStructureID": 5645, + "Label": "77669-5645 via Conventional from 77670 -> 77668", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77670, + "TargetID": 77668, + "Directional": true + }] + }, { + "ID": 16914, + "SourceStructureID": 77674, + "TargetStructureID": 6115, + "Label": "77674-6115 via Conventional from 77675 -> 77673", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77675, + "TargetID": 77673, + "Directional": true + }] + }, { + "ID": 16915, + "SourceStructureID": 77677, + "TargetStructureID": 6115, + "Label": "77677-6115 via Conventional from 93080 -> 77681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93080, + "TargetID": 77681, + "Directional": true + }] + }, { + "ID": 16916, + "SourceStructureID": 77677, + "TargetStructureID": 16087, + "Label": "77677-16087 via Conventional from 77680 -> 16093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77680, + "TargetID": 16093, + "Directional": true + }] + }, { + "ID": 16917, + "SourceStructureID": 77682, + "TargetStructureID": 67671, + "Label": "77682-67671 via Conventional from 77683 -> 77684", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77683, + "TargetID": 77684, + "Directional": true + }] + }, { + "ID": 16918, + "SourceStructureID": 77691, + "TargetStructureID": 67671, + "Label": "77691-67671 via Conventional from 77692 -> 77693", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77692, + "TargetID": 77693, + "Directional": true + }] + }, { + "ID": 16919, + "SourceStructureID": 77695, + "TargetStructureID": 6115, + "Label": "77695-6115 via Conventional from 77696 -> 77694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77696, + "TargetID": 77694, + "Directional": true + }] + }, { + "ID": 16920, + "SourceStructureID": 77698, + "TargetStructureID": 67671, + "Label": "77698-67671 via Conventional from 77699 -> 77700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77699, + "TargetID": 77700, + "Directional": true + }] + }, { + "ID": 16921, + "SourceStructureID": 77706, + "TargetStructureID": 5649, + "Label": "77706-5649 via Conventional from 78015 -> 53949", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78015, + "TargetID": 53949, + "Directional": true + }] + }, { + "ID": 16922, + "SourceStructureID": 77706, + "TargetStructureID": 67671, + "Label": "77706-67671 via Conventional from 77707 -> 77705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77707, + "TargetID": 77705, + "Directional": true + }] + }, { + "ID": 16923, + "SourceStructureID": 77708, + "TargetStructureID": 67671, + "Label": "77708-67671 via Conventional from 77709 -> 77710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77709, + "TargetID": 77710, + "Directional": true + }] + }, { + "ID": 16924, + "SourceStructureID": 77712, + "TargetStructureID": 77708, + "Label": "77712-77708 via Conventional from 77713 -> 77711", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77713, + "TargetID": 77711, + "Directional": true + }] + }, { + "ID": 16925, + "SourceStructureID": 77714, + "TargetStructureID": 67671, + "Label": "77714-67671 via Conventional from 77715 -> 77716", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77715, + "TargetID": 77716, + "Directional": true + }] + }, { + "ID": 16926, + "SourceStructureID": 77718, + "TargetStructureID": 6115, + "Label": "77718-6115 via Conventional from 77719 -> 77717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77719, + "TargetID": 77717, + "Directional": true + }] + }, { + "ID": 16927, + "SourceStructureID": 77726, + "TargetStructureID": 5562, + "Label": "77726-5562 via Conventional from 77728 -> 77729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77728, + "TargetID": 77729, + "Directional": true + }] + }, { + "ID": 16928, + "SourceStructureID": 77736, + "TargetStructureID": 5562, + "Label": "77736-5562 via Conventional from 77737 -> 77738", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77737, + "TargetID": 77738, + "Directional": true + }] + }, { + "ID": 16929, + "SourceStructureID": 77741, + "TargetStructureID": 5562, + "Label": "77741-5562 via Conventional from 77742 -> 77743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77742, + "TargetID": 77743, + "Directional": true + }] + }, { + "ID": 16930, + "SourceStructureID": 77750, + "TargetStructureID": 5562, + "Label": "77750-5562 via Conventional from 77751 -> 63625", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77751, + "TargetID": 63625, + "Directional": true + }] + }, { + "ID": 16931, + "SourceStructureID": 77754, + "TargetStructureID": 5562, + "Label": "77754-5562 via Conventional from 77755 -> 63627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77755, + "TargetID": 63627, + "Directional": true + }] + }, { + "ID": 16932, + "SourceStructureID": 77770, + "TargetStructureID": 5562, + "Label": "77770-5562 via Conventional from 77771 -> 77772", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77771, + "TargetID": 77772, + "Directional": true + }] + }, { + "ID": 16933, + "SourceStructureID": 77773, + "TargetStructureID": 5562, + "Label": "77773-5562 via Conventional from 77774 -> 31054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77774, + "TargetID": 31054, + "Directional": true + }] + }, { + "ID": 16934, + "SourceStructureID": 77775, + "TargetStructureID": 5562, + "Label": "77775-5562 via Conventional from 77776 -> 63257", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77776, + "TargetID": 63257, + "Directional": true + }] + }, { + "ID": 16935, + "SourceStructureID": 77782, + "TargetStructureID": 5562, + "Label": "77782-5562 via Conventional from 77783 -> 63258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77783, + "TargetID": 63258, + "Directional": true + }] + }, { + "ID": 16936, + "SourceStructureID": 77784, + "TargetStructureID": 5562, + "Label": "77784-5562 via Conventional from 77785 -> 63259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77785, + "TargetID": 63259, + "Directional": true + }] + }, { + "ID": 16937, + "SourceStructureID": 77796, + "TargetStructureID": 5562, + "Label": "77796-5562 via Conventional from 77797 -> 63265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77797, + "TargetID": 63265, + "Directional": true + }] + }, { + "ID": 16938, + "SourceStructureID": 77800, + "TargetStructureID": 5562, + "Label": "77800-5562 via Conventional from 77801 -> 63263", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77801, + "TargetID": 63263, + "Directional": true + }] + }, { + "ID": 16939, + "SourceStructureID": 77826, + "TargetStructureID": 5562, + "Label": "77826-5562 via Conventional from 77827 -> 63266", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77827, + "TargetID": 63266, + "Directional": true + }] + }, { + "ID": 16940, + "SourceStructureID": 77831, + "TargetStructureID": 5562, + "Label": "77831-5562 via Conventional from 77832 -> 63269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77832, + "TargetID": 63269, + "Directional": true + }] + }, { + "ID": 16941, + "SourceStructureID": 77840, + "TargetStructureID": 82426, + "Label": "77840-82426 via Conventional from 82428 -> 82429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82428, + "TargetID": 82429, + "Directional": true + }] + }, { + "ID": 16942, + "SourceStructureID": 77842, + "TargetStructureID": 5562, + "Label": "77842-5562 via Conventional from 77843 -> 63268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77843, + "TargetID": 63268, + "Directional": true + }] + }, { + "ID": 16943, + "SourceStructureID": 77851, + "TargetStructureID": 5562, + "Label": "77851-5562 via Conventional from 77852 -> 77853", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77852, + "TargetID": 77853, + "Directional": true + }] + }, { + "ID": 16944, + "SourceStructureID": 77868, + "TargetStructureID": 5562, + "Label": "77868-5562 via Conventional from 77869 -> 63282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77869, + "TargetID": 63282, + "Directional": true + }] + }, { + "ID": 16945, + "SourceStructureID": 77870, + "TargetStructureID": 5562, + "Label": "77870-5562 via Conventional from 77871 -> 63278", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77871, + "TargetID": 63278, + "Directional": true + }] + }, { + "ID": 16946, + "SourceStructureID": 77883, + "TargetStructureID": 5562, + "Label": "77883-5562 via Conventional from 78411 -> 78412", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78411, + "TargetID": 78412, + "Directional": true + }] + }, { + "ID": 16947, + "SourceStructureID": 77898, + "TargetStructureID": 5562, + "Label": "77898-5562 via Conventional from 77899 -> 63281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77899, + "TargetID": 63281, + "Directional": true + }] + }, { + "ID": 16948, + "SourceStructureID": 77906, + "TargetStructureID": 66523, + "Label": "77906-66523 via Conventional from 77907 -> 77908", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77907, + "TargetID": 77908, + "Directional": true + }] + }, { + "ID": 16949, + "SourceStructureID": 77932, + "TargetStructureID": 5530, + "Label": "77932-5530 via Conventional from 77933 -> 77934", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77933, + "TargetID": 77934, + "Directional": true + }] + }, { + "ID": 16950, + "SourceStructureID": 77938, + "TargetStructureID": 5530, + "Label": "77938-5530 via Conventional from 77939 -> 77940", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77939, + "TargetID": 77940, + "Directional": true + }] + }, { + "ID": 16951, + "SourceStructureID": 77959, + "TargetStructureID": 608, + "Label": "77959-608 via Conventional from 77960 -> 77958", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77960, + "TargetID": 77958, + "Directional": true + }] + }, { + "ID": 16952, + "SourceStructureID": 77961, + "TargetStructureID": 77959, + "Label": "77961-77959 via Conventional from 77962 -> 77963", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77962, + "TargetID": 77963, + "Directional": true + }] + }, { + "ID": 16953, + "SourceStructureID": 77970, + "TargetStructureID": 66523, + "Label": "77970-66523 via Conventional from 77971 -> 77972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77971, + "TargetID": 77972, + "Directional": true + }] + }, { + "ID": 16954, + "SourceStructureID": 77973, + "TargetStructureID": 66523, + "Label": "77973-66523 via Conventional from 77974 -> 77975, 77978 -> 77979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77974, + "TargetID": 77975, + "Directional": true + }, { + "SourceID": 77978, + "TargetID": 77979, + "Directional": true + }] + }, { + "ID": 16955, + "SourceStructureID": 77981, + "TargetStructureID": 67671, + "Label": "77981-67671 via Conventional from 77982 -> 77983", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77982, + "TargetID": 77983, + "Directional": true + }] + }, { + "ID": 16956, + "SourceStructureID": 77988, + "TargetStructureID": 67671, + "Label": "77988-67671 via Conventional from 77989 -> 77990", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77989, + "TargetID": 77990, + "Directional": true + }] + }, { + "ID": 16957, + "SourceStructureID": 77992, + "TargetStructureID": 67671, + "Label": "77992-67671 via Conventional from 77993 -> 77994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 77993, + "TargetID": 77994, + "Directional": true + }] + }, { + "ID": 16958, + "SourceStructureID": 78010, + "TargetStructureID": 77691, + "Label": "78010-77691 via Conventional from 78011 -> 78009", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78011, + "TargetID": 78009, + "Directional": true + }] + }, { + "ID": 16959, + "SourceStructureID": 78021, + "TargetStructureID": 78290, + "Label": "78021-78290 via Conventional from 78291 -> 78292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78291, + "TargetID": 78292, + "Directional": true + }] + }, { + "ID": 16960, + "SourceStructureID": 78028, + "TargetStructureID": 67671, + "Label": "78028-67671 via Conventional from 78029 -> 78030", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78029, + "TargetID": 78030, + "Directional": true + }] + }, { + "ID": 16961, + "SourceStructureID": 78032, + "TargetStructureID": 67671, + "Label": "78032-67671 via Adherens from 78035 -> 78034", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 78035, + "TargetID": 78034, + "Directional": true + }] + }, { + "ID": 16962, + "SourceStructureID": 78032, + "TargetStructureID": 67671, + "Label": "78032-67671 via Conventional from 78033 -> 78031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78033, + "TargetID": 78031, + "Directional": true + }] + }, { + "ID": 16963, + "SourceStructureID": 78038, + "TargetStructureID": 67671, + "Label": "78038-67671 via Conventional from 78039 -> 78040", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78039, + "TargetID": 78040, + "Directional": true + }] + }, { + "ID": 16964, + "SourceStructureID": 78045, + "TargetStructureID": 5645, + "Label": "78045-5645 via Conventional from 78054 -> 78053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78054, + "TargetID": 78053, + "Directional": true + }] + }, { + "ID": 16965, + "SourceStructureID": 78045, + "TargetStructureID": 67671, + "Label": "78045-67671 via Conventional from 78046 -> 78047", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78046, + "TargetID": 78047, + "Directional": true + }] + }, { + "ID": 16966, + "SourceStructureID": 78057, + "TargetStructureID": 5645, + "Label": "78057-5645 via Conventional from 78064 -> 78065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78064, + "TargetID": 78065, + "Directional": true + }] + }, { + "ID": 16967, + "SourceStructureID": 78057, + "TargetStructureID": 67671, + "Label": "78057-67671 via Conventional from 78058 -> 78059", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78058, + "TargetID": 78059, + "Directional": true + }] + }, { + "ID": 16968, + "SourceStructureID": 78067, + "TargetStructureID": 67671, + "Label": "78067-67671 via Conventional from 78068 -> 78066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78068, + "TargetID": 78066, + "Directional": true + }] + }, { + "ID": 16969, + "SourceStructureID": 78074, + "TargetStructureID": 67671, + "Label": "78074-67671 via Conventional from 78075 -> 78077", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78075, + "TargetID": 78077, + "Directional": true + }] + }, { + "ID": 16970, + "SourceStructureID": 78080, + "TargetStructureID": 67671, + "Label": "78080-67671 via Conventional from 78277 -> 78278", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78277, + "TargetID": 78278, + "Directional": true + }] + }, { + "ID": 16971, + "SourceStructureID": 78086, + "TargetStructureID": 5562, + "Label": "78086-5562 via Conventional from 78087 -> 63255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78087, + "TargetID": 63255, + "Directional": true + }] + }, { + "ID": 16972, + "SourceStructureID": 78094, + "TargetStructureID": 5562, + "Label": "78094-5562 via Conventional from 78095 -> 78096", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78095, + "TargetID": 78096, + "Directional": true + }] + }, { + "ID": 16973, + "SourceStructureID": 78107, + "TargetStructureID": 5562, + "Label": "78107-5562 via Conventional from 78108 -> 31058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78108, + "TargetID": 31058, + "Directional": true + }] + }, { + "ID": 16974, + "SourceStructureID": 78109, + "TargetStructureID": 5562, + "Label": "78109-5562 via Conventional from 78114 -> 31061", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78114, + "TargetID": 31061, + "Directional": true + }] + }, { + "ID": 16975, + "SourceStructureID": 78115, + "TargetStructureID": 5562, + "Label": "78115-5562 via Conventional from 78116 -> 63332", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78116, + "TargetID": 63332, + "Directional": true + }] + }, { + "ID": 16976, + "SourceStructureID": 78118, + "TargetStructureID": 5562, + "Label": "78118-5562 via Conventional from 78119 -> 31059", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78119, + "TargetID": 31059, + "Directional": true + }] + }, { + "ID": 16977, + "SourceStructureID": 78122, + "TargetStructureID": 5562, + "Label": "78122-5562 via Conventional from 78123 -> 63331", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78123, + "TargetID": 63331, + "Directional": true + }] + }, { + "ID": 16978, + "SourceStructureID": 78126, + "TargetStructureID": 69537, + "Label": "78126-69537 via Conventional from 82452 -> 69620, 82453 -> 69621", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82452, + "TargetID": 69620, + "Directional": true + }, { + "SourceID": 82453, + "TargetID": 69621, + "Directional": true + }] + }, { + "ID": 16979, + "SourceStructureID": 78129, + "TargetStructureID": 5562, + "Label": "78129-5562 via Conventional from 78132 -> 63344", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78132, + "TargetID": 63344, + "Directional": true + }] + }, { + "ID": 16980, + "SourceStructureID": 78141, + "TargetStructureID": 5562, + "Label": "78141-5562 via Conventional from 78142 -> 63342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78142, + "TargetID": 63342, + "Directional": true + }] + }, { + "ID": 16981, + "SourceStructureID": 78163, + "TargetStructureID": 5562, + "Label": "78163-5562 via Conventional from 78164 -> 48471", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78164, + "TargetID": 48471, + "Directional": true + }] + }, { + "ID": 16982, + "SourceStructureID": 78177, + "TargetStructureID": 5562, + "Label": "78177-5562 via Conventional from 78178 -> 63617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78178, + "TargetID": 63617, + "Directional": true + }] + }, { + "ID": 16983, + "SourceStructureID": 78179, + "TargetStructureID": 5562, + "Label": "78179-5562 via Conventional from 78180 -> 48464", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78180, + "TargetID": 48464, + "Directional": true + }] + }, { + "ID": 16984, + "SourceStructureID": 78191, + "TargetStructureID": 5562, + "Label": "78191-5562 via Conventional from 78192 -> 63351", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78192, + "TargetID": 63351, + "Directional": true + }] + }, { + "ID": 16985, + "SourceStructureID": 78198, + "TargetStructureID": 5562, + "Label": "78198-5562 via Conventional from 78199 -> 63348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78199, + "TargetID": 63348, + "Directional": true + }] + }, { + "ID": 16986, + "SourceStructureID": 78200, + "TargetStructureID": 5562, + "Label": "78200-5562 via Conventional from 78201 -> 63349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78201, + "TargetID": 63349, + "Directional": true + }] + }, { + "ID": 16987, + "SourceStructureID": 78214, + "TargetStructureID": 78217, + "Label": "78214-78217 via Conventional from 78218 -> 78219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78218, + "TargetID": 78219, + "Directional": true + }] + }, { + "ID": 16988, + "SourceStructureID": 78224, + "TargetStructureID": 67671, + "Label": "78224-67671 via Conventional from 78225 -> 78226", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78225, + "TargetID": 78226, + "Directional": true + }] + }, { + "ID": 16989, + "SourceStructureID": 78228, + "TargetStructureID": 67671, + "Label": "78228-67671 via Conventional from 78229 -> 78230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78229, + "TargetID": 78230, + "Directional": true + }] + }, { + "ID": 16990, + "SourceStructureID": 78232, + "TargetStructureID": 67671, + "Label": "78232-67671 via Conventional from 78233 -> 78235", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78233, + "TargetID": 78235, + "Directional": true + }] + }, { + "ID": 16991, + "SourceStructureID": 78242, + "TargetStructureID": 5562, + "Label": "78242-5562 via Conventional from 78243 -> 63347", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78243, + "TargetID": 63347, + "Directional": true + }] + }, { + "ID": 16992, + "SourceStructureID": 78244, + "TargetStructureID": 67671, + "Label": "78244-67671 via Conventional from 78245 -> 78246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78245, + "TargetID": 78246, + "Directional": true + }] + }, { + "ID": 16993, + "SourceStructureID": 78249, + "TargetStructureID": 67671, + "Label": "78249-67671 via Ribbon Synapse from 78250 -> 78256, 78251 -> 78257", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78250, + "TargetID": 78256, + "Directional": true + }, { + "SourceID": 78251, + "TargetID": 78257, + "Directional": true + }] + }, { + "ID": 16994, + "SourceStructureID": 78249, + "TargetStructureID": 78252, + "Label": "78249-78252 via Ribbon Synapse from 78250 -> 78258", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 78250, + "TargetID": 78258, + "Directional": true + }] + }, { + "ID": 16995, + "SourceStructureID": 78252, + "TargetStructureID": 78249, + "Label": "78252-78249 via Conventional from 78254 -> 78255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78254, + "TargetID": 78255, + "Directional": true + }] + }, { + "ID": 16996, + "SourceStructureID": 78272, + "TargetStructureID": 5562, + "Label": "78272-5562 via Conventional from 78273 -> 63527", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78273, + "TargetID": 63527, + "Directional": true + }] + }, { + "ID": 16997, + "SourceStructureID": 78295, + "TargetStructureID": 68009, + "Label": "78295-68009 via Conventional from 78296 -> 78297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78296, + "TargetID": 78297, + "Directional": true + }] + }, { + "ID": 16998, + "SourceStructureID": 78298, + "TargetStructureID": 68009, + "Label": "78298-68009 via Conventional from 78299 -> 78300", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78299, + "TargetID": 78300, + "Directional": true + }] + }, { + "ID": 16999, + "SourceStructureID": 78303, + "TargetStructureID": 25392, + "Label": "78303-25392 via Conventional from 78305 -> 32294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78305, + "TargetID": 32294, + "Directional": true + }] + }, { + "ID": 17000, + "SourceStructureID": 78316, + "TargetStructureID": 68009, + "Label": "78316-68009 via Conventional from 78317 -> 78318", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78317, + "TargetID": 78318, + "Directional": true + }] + }, { + "ID": 17001, + "SourceStructureID": 78327, + "TargetStructureID": 78330, + "Label": "78327-78330 via Conventional from 78329 -> 78331", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78329, + "TargetID": 78331, + "Directional": true + }] + }, { + "ID": 17002, + "SourceStructureID": 78330, + "TargetStructureID": 55403, + "Label": "78330-55403 via Conventional from 78332 -> 55504", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78332, + "TargetID": 55504, + "Directional": true + }] + }, { + "ID": 17003, + "SourceStructureID": 78334, + "TargetStructureID": 5562, + "Label": "78334-5562 via Conventional from 78335 -> 63357", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78335, + "TargetID": 63357, + "Directional": true + }] + }, { + "ID": 17004, + "SourceStructureID": 78351, + "TargetStructureID": 5562, + "Label": "78351-5562 via Conventional from 78352 -> 63360", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78352, + "TargetID": 63360, + "Directional": true + }] + }, { + "ID": 17005, + "SourceStructureID": 78353, + "TargetStructureID": 5562, + "Label": "78353-5562 via Conventional from 78354 -> 63359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78354, + "TargetID": 63359, + "Directional": true + }] + }, { + "ID": 17006, + "SourceStructureID": 78383, + "TargetStructureID": 5562, + "Label": "78383-5562 via Conventional from 78384 -> 63534, 78385 -> 63535", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78384, + "TargetID": 63534, + "Directional": true + }, { + "SourceID": 78385, + "TargetID": 63535, + "Directional": true + }] + }, { + "ID": 17007, + "SourceStructureID": 78393, + "TargetStructureID": 5562, + "Label": "78393-5562 via Conventional from 78394 -> 63626", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78394, + "TargetID": 63626, + "Directional": true + }] + }, { + "ID": 17008, + "SourceStructureID": 78421, + "TargetStructureID": 67671, + "Label": "78421-67671 via Conventional from 78422 -> 78420", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78422, + "TargetID": 78420, + "Directional": true + }] + }, { + "ID": 17009, + "SourceStructureID": 78423, + "TargetStructureID": 78426, + "Label": "78423-78426 via Conventional from 78425 -> 78427", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78425, + "TargetID": 78427, + "Directional": true + }] + }, { + "ID": 17010, + "SourceStructureID": 78428, + "TargetStructureID": 78423, + "Label": "78428-78423 via Conventional from 78429 -> 78430", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78429, + "TargetID": 78430, + "Directional": true + }] + }, { + "ID": 17011, + "SourceStructureID": 78431, + "TargetStructureID": 5649, + "Label": "78431-5649 via Conventional from 78434 -> 78435, 107186 -> 107188", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78434, + "TargetID": 78435, + "Directional": true + }, { + "SourceID": 107186, + "TargetID": 107188, + "Directional": true + }] + }, { + "ID": 17012, + "SourceStructureID": 78431, + "TargetStructureID": 78423, + "Label": "78431-78423 via Conventional from 78432 -> 78433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78432, + "TargetID": 78433, + "Directional": true + }] + }, { + "ID": 17013, + "SourceStructureID": 78453, + "TargetStructureID": 5562, + "Label": "78453-5562 via Conventional from 78455 -> 78454", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78455, + "TargetID": 78454, + "Directional": true + }] + }, { + "ID": 17014, + "SourceStructureID": 78465, + "TargetStructureID": 5562, + "Label": "78465-5562 via Conventional from 78466 -> 63644", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78466, + "TargetID": 63644, + "Directional": true + }] + }, { + "ID": 17015, + "SourceStructureID": 78471, + "TargetStructureID": 5562, + "Label": "78471-5562 via Conventional from 78472 -> 63639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78472, + "TargetID": 63639, + "Directional": true + }] + }, { + "ID": 17016, + "SourceStructureID": 78478, + "TargetStructureID": 5562, + "Label": "78478-5562 via Conventional from 78479 -> 63638", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78479, + "TargetID": 63638, + "Directional": true + }] + }, { + "ID": 17017, + "SourceStructureID": 78484, + "TargetStructureID": 5562, + "Label": "78484-5562 via Conventional from 78485 -> 40300", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78485, + "TargetID": 40300, + "Directional": true + }] + }, { + "ID": 17018, + "SourceStructureID": 78515, + "TargetStructureID": 5562, + "Label": "78515-5562 via Conventional from 79155 -> 63647", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79155, + "TargetID": 63647, + "Directional": true + }] + }, { + "ID": 17019, + "SourceStructureID": 78520, + "TargetStructureID": 5562, + "Label": "78520-5562 via Conventional from 78522 -> 63649, 78537 -> 63660", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78522, + "TargetID": 63649, + "Directional": true + }, { + "SourceID": 78537, + "TargetID": 63660, + "Directional": true + }] + }, { + "ID": 17020, + "SourceStructureID": 78523, + "TargetStructureID": 5562, + "Label": "78523-5562 via Conventional from 78524 -> 63653", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78524, + "TargetID": 63653, + "Directional": true + }] + }, { + "ID": 17021, + "SourceStructureID": 78540, + "TargetStructureID": 5562, + "Label": "78540-5562 via Conventional from 78541 -> 63656", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78541, + "TargetID": 63656, + "Directional": true + }] + }, { + "ID": 17022, + "SourceStructureID": 78542, + "TargetStructureID": 5562, + "Label": "78542-5562 via Conventional from 78543 -> 63650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78543, + "TargetID": 63650, + "Directional": true + }] + }, { + "ID": 17023, + "SourceStructureID": 78550, + "TargetStructureID": 5562, + "Label": "78550-5562 via Conventional from 78551 -> 40303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78551, + "TargetID": 40303, + "Directional": true + }] + }, { + "ID": 17024, + "SourceStructureID": 78552, + "TargetStructureID": 5562, + "Label": "78552-5562 via Conventional from 78553 -> 40304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78553, + "TargetID": 40304, + "Directional": true + }] + }, { + "ID": 17025, + "SourceStructureID": 78560, + "TargetStructureID": 5562, + "Label": "78560-5562 via Conventional from 78561 -> 63661", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78561, + "TargetID": 63661, + "Directional": true + }] + }, { + "ID": 17026, + "SourceStructureID": 78570, + "TargetStructureID": 5562, + "Label": "78570-5562 via Conventional from 78571 -> 63662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78571, + "TargetID": 63662, + "Directional": true + }] + }, { + "ID": 17027, + "SourceStructureID": 78573, + "TargetStructureID": 5562, + "Label": "78573-5562 via Conventional from 78574 -> 63663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78574, + "TargetID": 63663, + "Directional": true + }] + }, { + "ID": 17028, + "SourceStructureID": 78578, + "TargetStructureID": 5562, + "Label": "78578-5562 via Conventional from 82876 -> 63667", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82876, + "TargetID": 63667, + "Directional": true + }] + }, { + "ID": 17029, + "SourceStructureID": 78586, + "TargetStructureID": 5562, + "Label": "78586-5562 via Conventional from 78587 -> 63672", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78587, + "TargetID": 63672, + "Directional": true + }] + }, { + "ID": 17030, + "SourceStructureID": 78588, + "TargetStructureID": 5562, + "Label": "78588-5562 via Conventional from 78589 -> 63671", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78589, + "TargetID": 63671, + "Directional": true + }] + }, { + "ID": 17031, + "SourceStructureID": 78590, + "TargetStructureID": 5562, + "Label": "78590-5562 via Conventional from 78591 -> 63669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78591, + "TargetID": 63669, + "Directional": true + }] + }, { + "ID": 17032, + "SourceStructureID": 78594, + "TargetStructureID": 5562, + "Label": "78594-5562 via Conventional from 78595 -> 63674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78595, + "TargetID": 63674, + "Directional": true + }] + }, { + "ID": 17033, + "SourceStructureID": 78615, + "TargetStructureID": 5562, + "Label": "78615-5562 via Conventional from 78616 -> 40305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78616, + "TargetID": 40305, + "Directional": true + }] + }, { + "ID": 17034, + "SourceStructureID": 78617, + "TargetStructureID": 5562, + "Label": "78617-5562 via Conventional from 78618 -> 40306", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78618, + "TargetID": 40306, + "Directional": true + }] + }, { + "ID": 17035, + "SourceStructureID": 78647, + "TargetStructureID": 5562, + "Label": "78647-5562 via Conventional from 78648 -> 63689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78648, + "TargetID": 63689, + "Directional": true + }] + }, { + "ID": 17036, + "SourceStructureID": 78650, + "TargetStructureID": 5562, + "Label": "78650-5562 via Conventional from 78651 -> 54203", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78651, + "TargetID": 54203, + "Directional": true + }] + }, { + "ID": 17037, + "SourceStructureID": 78663, + "TargetStructureID": 5562, + "Label": "78663-5562 via Conventional from 78678 -> 63707", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78678, + "TargetID": 63707, + "Directional": true + }] + }, { + "ID": 17038, + "SourceStructureID": 78663, + "TargetStructureID": 82872, + "Label": "78663-82872 via Conventional from 82873 -> 82874", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82873, + "TargetID": 82874, + "Directional": true + }] + }, { + "ID": 17039, + "SourceStructureID": 78665, + "TargetStructureID": 5562, + "Label": "78665-5562 via Conventional from 78666 -> 54204", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78666, + "TargetID": 54204, + "Directional": true + }] + }, { + "ID": 17040, + "SourceStructureID": 78667, + "TargetStructureID": 5562, + "Label": "78667-5562 via Conventional from 78668 -> 54209", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78668, + "TargetID": 54209, + "Directional": true + }] + }, { + "ID": 17041, + "SourceStructureID": 78669, + "TargetStructureID": 5562, + "Label": "78669-5562 via Conventional from 78670 -> 54208", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78670, + "TargetID": 54208, + "Directional": true + }] + }, { + "ID": 17042, + "SourceStructureID": 78673, + "TargetStructureID": 5562, + "Label": "78673-5562 via Conventional from 78674 -> 54207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78674, + "TargetID": 54207, + "Directional": true + }] + }, { + "ID": 17043, + "SourceStructureID": 78686, + "TargetStructureID": 5562, + "Label": "78686-5562 via Conventional from 82871 -> 54205", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82871, + "TargetID": 54205, + "Directional": true + }] + }, { + "ID": 17044, + "SourceStructureID": 78688, + "TargetStructureID": 5562, + "Label": "78688-5562 via Conventional from 78689 -> 63688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78689, + "TargetID": 63688, + "Directional": true + }] + }, { + "ID": 17045, + "SourceStructureID": 78693, + "TargetStructureID": 5562, + "Label": "78693-5562 via Conventional from 78694 -> 63686", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78694, + "TargetID": 63686, + "Directional": true + }] + }, { + "ID": 17046, + "SourceStructureID": 78695, + "TargetStructureID": 5562, + "Label": "78695-5562 via Conventional from 79156 -> 63687", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79156, + "TargetID": 63687, + "Directional": true + }] + }, { + "ID": 17047, + "SourceStructureID": 78697, + "TargetStructureID": 5562, + "Label": "78697-5562 via Conventional from 78698 -> 63685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78698, + "TargetID": 63685, + "Directional": true + }] + }, { + "ID": 17048, + "SourceStructureID": 78704, + "TargetStructureID": 5562, + "Label": "78704-5562 via Conventional from 78706 -> 54211", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78706, + "TargetID": 54211, + "Directional": true + }] + }, { + "ID": 17049, + "SourceStructureID": 78709, + "TargetStructureID": 5561, + "Label": "78709-5561 via Conventional from 78737 -> 46042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78737, + "TargetID": 46042, + "Directional": true + }] + }, { + "ID": 17050, + "SourceStructureID": 78709, + "TargetStructureID": 78730, + "Label": "78709-78730 via Conventional from 78729 -> 78731", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78729, + "TargetID": 78731, + "Directional": true + }] + }, { + "ID": 17051, + "SourceStructureID": 78710, + "TargetStructureID": 78715, + "Label": "78710-78715 via Conventional from 78713 -> 78716", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78713, + "TargetID": 78716, + "Directional": true + }] + }, { + "ID": 17052, + "SourceStructureID": 78715, + "TargetStructureID": 78428, + "Label": "78715-78428 via Conventional from 78717 -> 78718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78717, + "TargetID": 78718, + "Directional": true + }] + }, { + "ID": 17053, + "SourceStructureID": 78715, + "TargetStructureID": 78909, + "Label": "78715-78909 via Conventional from 87541 -> 87542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87541, + "TargetID": 87542, + "Directional": true + }] + }, { + "ID": 17054, + "SourceStructureID": 78721, + "TargetStructureID": 78725, + "Label": "78721-78725 via Conventional from 78722 -> 78726", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78722, + "TargetID": 78726, + "Directional": true + }] + }, { + "ID": 17055, + "SourceStructureID": 78727, + "TargetStructureID": 608, + "Label": "78727-608 via Conventional from 78728 -> 59075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78728, + "TargetID": 59075, + "Directional": true + }] + }, { + "ID": 17056, + "SourceStructureID": 78727, + "TargetStructureID": 18693, + "Label": "78727-18693 via Conventional from 78733 -> 18818", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78733, + "TargetID": 18818, + "Directional": true + }] + }, { + "ID": 17057, + "SourceStructureID": 78727, + "TargetStructureID": 57035, + "Label": "78727-57035 via Conventional from 78752 -> 78753", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78752, + "TargetID": 78753, + "Directional": true + }] + }, { + "ID": 17058, + "SourceStructureID": 78730, + "TargetStructureID": 606, + "Label": "78730-606 via Conventional from 97669 -> 10700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97669, + "TargetID": 10700, + "Directional": true + }] + }, { + "ID": 17059, + "SourceStructureID": 78760, + "TargetStructureID": 5562, + "Label": "78760-5562 via Conventional from 78762 -> 78765", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78762, + "TargetID": 78765, + "Directional": true + }] + }, { + "ID": 17060, + "SourceStructureID": 78780, + "TargetStructureID": 5562, + "Label": "78780-5562 via Conventional from 78781 -> 63729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78781, + "TargetID": 63729, + "Directional": true + }] + }, { + "ID": 17061, + "SourceStructureID": 78797, + "TargetStructureID": 78709, + "Label": "78797-78709 via Conventional from 78798 -> 78796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78798, + "TargetID": 78796, + "Directional": true + }] + }, { + "ID": 17062, + "SourceStructureID": 78797, + "TargetStructureID": 78800, + "Label": "78797-78800 via Conventional from 78799 -> 78801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78799, + "TargetID": 78801, + "Directional": true + }] + }, { + "ID": 17063, + "SourceStructureID": 78805, + "TargetStructureID": 5562, + "Label": "78805-5562 via Conventional from 78806 -> 63726, 78807 -> 63726", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78806, + "TargetID": 63726, + "Directional": true + }, { + "SourceID": 78807, + "TargetID": 63726, + "Directional": true + }] + }, { + "ID": 17064, + "SourceStructureID": 78820, + "TargetStructureID": 5562, + "Label": "78820-5562 via Conventional from 78821 -> 63735", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78821, + "TargetID": 63735, + "Directional": true + }] + }, { + "ID": 17065, + "SourceStructureID": 78823, + "TargetStructureID": 5562, + "Label": "78823-5562 via Conventional from 78824 -> 63736", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78824, + "TargetID": 63736, + "Directional": true + }] + }, { + "ID": 17066, + "SourceStructureID": 78840, + "TargetStructureID": 5562, + "Label": "78840-5562 via Conventional from 78845 -> 63743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78845, + "TargetID": 63743, + "Directional": true + }] + }, { + "ID": 17067, + "SourceStructureID": 78860, + "TargetStructureID": 5562, + "Label": "78860-5562 via Conventional from 78863 -> 63749", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78863, + "TargetID": 63749, + "Directional": true + }] + }, { + "ID": 17068, + "SourceStructureID": 78867, + "TargetStructureID": 5562, + "Label": "78867-5562 via Conventional from 78868 -> 63751", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78868, + "TargetID": 63751, + "Directional": true + }] + }, { + "ID": 17069, + "SourceStructureID": 78872, + "TargetStructureID": 5562, + "Label": "78872-5562 via Unknown from 78890 -> 78891", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 78890, + "TargetID": 78891, + "Directional": true + }] + }, { + "ID": 17070, + "SourceStructureID": 78876, + "TargetStructureID": 16026, + "Label": "78876-16026 via Conventional from 78877 -> 25780", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78877, + "TargetID": 25780, + "Directional": true + }] + }, { + "ID": 17071, + "SourceStructureID": 78879, + "TargetStructureID": 67765, + "Label": "78879-67765 via Conventional from 78880 -> 78881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78880, + "TargetID": 78881, + "Directional": true + }] + }, { + "ID": 17072, + "SourceStructureID": 78886, + "TargetStructureID": 5562, + "Label": "78886-5562 via Conventional from 78887 -> 49535, 78887 -> 63755", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78887, + "TargetID": 49535, + "Directional": true + }, { + "SourceID": 78887, + "TargetID": 63755, + "Directional": true + }] + }, { + "ID": 17073, + "SourceStructureID": 78892, + "TargetStructureID": 5562, + "Label": "78892-5562 via Conventional from 78893 -> 63753", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78893, + "TargetID": 63753, + "Directional": true + }] + }, { + "ID": 17074, + "SourceStructureID": 78901, + "TargetStructureID": 5562, + "Label": "78901-5562 via Conventional from 78902 -> 63756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78902, + "TargetID": 63756, + "Directional": true + }] + }, { + "ID": 17075, + "SourceStructureID": 78909, + "TargetStructureID": 5562, + "Label": "78909-5562 via Conventional from 87512 -> 49565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87512, + "TargetID": 49565, + "Directional": true + }] + }, { + "ID": 17076, + "SourceStructureID": 78909, + "TargetStructureID": 5649, + "Label": "78909-5649 via Conventional from 87517 -> 87520, 107124 -> 54295", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87517, + "TargetID": 87520, + "Directional": true + }, { + "SourceID": 107124, + "TargetID": 54295, + "Directional": true + }] + }, { + "ID": 17077, + "SourceStructureID": 78909, + "TargetStructureID": 6142, + "Label": "78909-6142 via Conventional from 87550 -> 23585, 87601 -> 87602, 108669 -> 108668", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87550, + "TargetID": 23585, + "Directional": true + }, { + "SourceID": 87601, + "TargetID": 87602, + "Directional": true + }, { + "SourceID": 108669, + "TargetID": 108668, + "Directional": true + }] + }, { + "ID": 17078, + "SourceStructureID": 78910, + "TargetStructureID": 5562, + "Label": "78910-5562 via Conventional from 78913 -> 63758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78913, + "TargetID": 63758, + "Directional": true + }] + }, { + "ID": 17079, + "SourceStructureID": 78930, + "TargetStructureID": 5562, + "Label": "78930-5562 via Conventional from 78931 -> 63768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78931, + "TargetID": 63768, + "Directional": true + }] + }, { + "ID": 17080, + "SourceStructureID": 78932, + "TargetStructureID": 5562, + "Label": "78932-5562 via Conventional from 78933 -> 63770", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78933, + "TargetID": 63770, + "Directional": true + }] + }, { + "ID": 17081, + "SourceStructureID": 78940, + "TargetStructureID": 5562, + "Label": "78940-5562 via Conventional from 78941 -> 63775", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78941, + "TargetID": 63775, + "Directional": true + }] + }, { + "ID": 17082, + "SourceStructureID": 78943, + "TargetStructureID": 5562, + "Label": "78943-5562 via Conventional from 78944 -> 63765", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78944, + "TargetID": 63765, + "Directional": true + }] + }, { + "ID": 17083, + "SourceStructureID": 78946, + "TargetStructureID": 5562, + "Label": "78946-5562 via Conventional from 78949 -> 63766", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78949, + "TargetID": 63766, + "Directional": true + }] + }, { + "ID": 17084, + "SourceStructureID": 78964, + "TargetStructureID": 31161, + "Label": "78964-31161 via Conventional from 78968 -> 31218", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78968, + "TargetID": 31218, + "Directional": true + }] + }, { + "ID": 17085, + "SourceStructureID": 78966, + "TargetStructureID": 5562, + "Label": "78966-5562 via Conventional from 78967 -> 63778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 78967, + "TargetID": 63778, + "Directional": true + }] + }, { + "ID": 17086, + "SourceStructureID": 79004, + "TargetStructureID": 5562, + "Label": "79004-5562 via Conventional from 79005 -> 63789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79005, + "TargetID": 63789, + "Directional": true + }] + }, { + "ID": 17087, + "SourceStructureID": 79008, + "TargetStructureID": 5562, + "Label": "79008-5562 via Conventional from 79009 -> 63839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79009, + "TargetID": 63839, + "Directional": true + }] + }, { + "ID": 17088, + "SourceStructureID": 79017, + "TargetStructureID": 5562, + "Label": "79017-5562 via Conventional from 79018 -> 63832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79018, + "TargetID": 63832, + "Directional": true + }] + }, { + "ID": 17089, + "SourceStructureID": 79019, + "TargetStructureID": 5562, + "Label": "79019-5562 via Conventional from 79021 -> 63824", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79021, + "TargetID": 63824, + "Directional": true + }] + }, { + "ID": 17090, + "SourceStructureID": 79022, + "TargetStructureID": 5562, + "Label": "79022-5562 via Conventional from 79023 -> 63827, 79025 -> 63827", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79023, + "TargetID": 63827, + "Directional": true + }, { + "SourceID": 79025, + "TargetID": 63827, + "Directional": true + }] + }, { + "ID": 17091, + "SourceStructureID": 79064, + "TargetStructureID": 5530, + "Label": "79064-5530 via Conventional from 79065 -> 79066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79065, + "TargetID": 79066, + "Directional": true + }] + }, { + "ID": 17092, + "SourceStructureID": 79073, + "TargetStructureID": 5530, + "Label": "79073-5530 via Conventional from 82594 -> 134558", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82594, + "TargetID": 134558, + "Directional": true + }] + }, { + "ID": 17093, + "SourceStructureID": 79123, + "TargetStructureID": 5530, + "Label": "79123-5530 via Conventional from 79144 -> 79147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79144, + "TargetID": 79147, + "Directional": true + }] + }, { + "ID": 17094, + "SourceStructureID": 79159, + "TargetStructureID": 5530, + "Label": "79159-5530 via Conventional from 80627 -> 42136", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80627, + "TargetID": 42136, + "Directional": true + }] + }, { + "ID": 17095, + "SourceStructureID": 79168, + "TargetStructureID": 5562, + "Label": "79168-5562 via Conventional from 79169 -> 63834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79169, + "TargetID": 63834, + "Directional": true + }] + }, { + "ID": 17096, + "SourceStructureID": 79171, + "TargetStructureID": 5562, + "Label": "79171-5562 via Conventional from 79172 -> 63833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79172, + "TargetID": 63833, + "Directional": true + }] + }, { + "ID": 17097, + "SourceStructureID": 79183, + "TargetStructureID": 5562, + "Label": "79183-5562 via Conventional from 79184 -> 63837", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79184, + "TargetID": 63837, + "Directional": true + }] + }, { + "ID": 17098, + "SourceStructureID": 79189, + "TargetStructureID": 5562, + "Label": "79189-5562 via Conventional from 79190 -> 63841", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79190, + "TargetID": 63841, + "Directional": true + }] + }, { + "ID": 17099, + "SourceStructureID": 79192, + "TargetStructureID": 5562, + "Label": "79192-5562 via Conventional from 79193 -> 63843", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79193, + "TargetID": 63843, + "Directional": true + }] + }, { + "ID": 17100, + "SourceStructureID": 79207, + "TargetStructureID": 5562, + "Label": "79207-5562 via Conventional from 79208 -> 63849", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79208, + "TargetID": 63849, + "Directional": true + }] + }, { + "ID": 17101, + "SourceStructureID": 79219, + "TargetStructureID": 5562, + "Label": "79219-5562 via Conventional from 79220 -> 63851", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79220, + "TargetID": 63851, + "Directional": true + }] + }, { + "ID": 17102, + "SourceStructureID": 79227, + "TargetStructureID": 5562, + "Label": "79227-5562 via Conventional from 79228 -> 63854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79228, + "TargetID": 63854, + "Directional": true + }] + }, { + "ID": 17103, + "SourceStructureID": 79229, + "TargetStructureID": 5562, + "Label": "79229-5562 via Conventional from 79230 -> 63863", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79230, + "TargetID": 63863, + "Directional": true + }] + }, { + "ID": 17104, + "SourceStructureID": 79232, + "TargetStructureID": 5562, + "Label": "79232-5562 via Conventional from 79233 -> 63866", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79233, + "TargetID": 63866, + "Directional": true + }] + }, { + "ID": 17105, + "SourceStructureID": 79239, + "TargetStructureID": 5562, + "Label": "79239-5562 via Conventional from 79240 -> 49105, 79241 -> 63865", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79240, + "TargetID": 49105, + "Directional": true + }, { + "SourceID": 79241, + "TargetID": 63865, + "Directional": true + }] + }, { + "ID": 17106, + "SourceStructureID": 79256, + "TargetStructureID": 5530, + "Label": "79256-5530 via Conventional from 79257 -> 42135", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79257, + "TargetID": 42135, + "Directional": true + }] + }, { + "ID": 17107, + "SourceStructureID": 79259, + "TargetStructureID": 5528, + "Label": "79259-5528 via Conventional from 96276 -> 96277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96276, + "TargetID": 96277, + "Directional": true + }] + }, { + "ID": 17108, + "SourceStructureID": 79259, + "TargetStructureID": 5530, + "Label": "79259-5530 via Conventional from 79260 -> 79261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79260, + "TargetID": 79261, + "Directional": true + }] + }, { + "ID": 17109, + "SourceStructureID": 79309, + "TargetStructureID": 68497, + "Label": "79309-68497 via Conventional from 79310 -> 79308", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79310, + "TargetID": 79308, + "Directional": true + }] + }, { + "ID": 17110, + "SourceStructureID": 79317, + "TargetStructureID": 31399, + "Label": "79317-31399 via Ribbon Synapse from 99014 -> 31406", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99014, + "TargetID": 31406, + "Directional": true + }] + }, { + "ID": 17111, + "SourceStructureID": 79408, + "TargetStructureID": 61773, + "Label": "79408-61773 via Conventional from 79409 -> 79407", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79409, + "TargetID": 79407, + "Directional": true + }] + }, { + "ID": 17112, + "SourceStructureID": 79427, + "TargetStructureID": 61777, + "Label": "79427-61777 via Conventional from 79428 -> 79429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79428, + "TargetID": 79429, + "Directional": true + }] + }, { + "ID": 17113, + "SourceStructureID": 79457, + "TargetStructureID": 68497, + "Label": "79457-68497 via Conventional from 79458 -> 79456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79458, + "TargetID": 79456, + "Directional": true + }] + }, { + "ID": 17114, + "SourceStructureID": 79464, + "TargetStructureID": 61797, + "Label": "79464-61797 via Conventional from 79466 -> 79469", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79466, + "TargetID": 79469, + "Directional": true + }] + }, { + "ID": 17115, + "SourceStructureID": 79465, + "TargetStructureID": 61797, + "Label": "79465-61797 via Conventional from 79467 -> 79468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79467, + "TargetID": 79468, + "Directional": true + }] + }, { + "ID": 17116, + "SourceStructureID": 79470, + "TargetStructureID": 68497, + "Label": "79470-68497 via Conventional from 79471 -> 79472", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79471, + "TargetID": 79472, + "Directional": true + }] + }, { + "ID": 17117, + "SourceStructureID": 79478, + "TargetStructureID": 68497, + "Label": "79478-68497 via Conventional from 79479 -> 79477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79479, + "TargetID": 79477, + "Directional": true + }] + }, { + "ID": 17118, + "SourceStructureID": 79493, + "TargetStructureID": 79498, + "Label": "79493-79498 via Ribbon Synapse from 79496 -> 79499", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79496, + "TargetID": 79499, + "Directional": true + }] + }, { + "ID": 17119, + "SourceStructureID": 79493, + "TargetStructureID": 79559, + "Label": "79493-79559 via Ribbon Synapse from 79496 -> 79568", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 79496, + "TargetID": 79568, + "Directional": true + }] + }, { + "ID": 17120, + "SourceStructureID": 79502, + "TargetStructureID": 79559, + "Label": "79502-79559 via Conventional from 79503 -> 79577", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79503, + "TargetID": 79577, + "Directional": true + }] + }, { + "ID": 17121, + "SourceStructureID": 79533, + "TargetStructureID": 79559, + "Label": "79533-79559 via Conventional from 79534 -> 79571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79534, + "TargetID": 79571, + "Directional": true + }] + }, { + "ID": 17122, + "SourceStructureID": 79545, + "TargetStructureID": 5530, + "Label": "79545-5530 via Conventional from 79546 -> 42109", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79546, + "TargetID": 42109, + "Directional": true + }] + }, { + "ID": 17123, + "SourceStructureID": 79553, + "TargetStructureID": 5530, + "Label": "79553-5530 via Conventional from 79554 -> 42100", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79554, + "TargetID": 42100, + "Directional": true + }] + }, { + "ID": 17124, + "SourceStructureID": 79555, + "TargetStructureID": 5530, + "Label": "79555-5530 via Conventional from 79565 -> 30117", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79565, + "TargetID": 30117, + "Directional": true + }] + }, { + "ID": 17125, + "SourceStructureID": 79558, + "TargetStructureID": 5530, + "Label": "79558-5530 via Conventional from 79560 -> 79561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79560, + "TargetID": 79561, + "Directional": true + }] + }, { + "ID": 17126, + "SourceStructureID": 79559, + "TargetStructureID": 79491, + "Label": "79559-79491 via Conventional from 79576 -> 79572", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79576, + "TargetID": 79572, + "Directional": true + }] + }, { + "ID": 17127, + "SourceStructureID": 79559, + "TargetStructureID": 79493, + "Label": "79559-79493 via Conventional from 79566 -> 79494", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79566, + "TargetID": 79494, + "Directional": true + }] + }, { + "ID": 17128, + "SourceStructureID": 79559, + "TargetStructureID": 79509, + "Label": "79559-79509 via Conventional from 79570 -> 79510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79570, + "TargetID": 79510, + "Directional": true + }] + }, { + "ID": 17129, + "SourceStructureID": 79563, + "TargetStructureID": 79559, + "Label": "79563-79559 via Conventional from 79564 -> 79562", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79564, + "TargetID": 79562, + "Directional": true + }] + }, { + "ID": 17130, + "SourceStructureID": 79584, + "TargetStructureID": 68488, + "Label": "79584-68488 via Conventional from 79585 -> 79583", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79585, + "TargetID": 79583, + "Directional": true + }] + }, { + "ID": 17131, + "SourceStructureID": 79586, + "TargetStructureID": 68516, + "Label": "79586-68516 via Conventional from 79590 -> 68519", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79590, + "TargetID": 68519, + "Directional": true + }] + }, { + "ID": 17132, + "SourceStructureID": 79586, + "TargetStructureID": 79588, + "Label": "79586-79588 via Conventional from 79587 -> 79589", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79587, + "TargetID": 79589, + "Directional": true + }] + }, { + "ID": 17133, + "SourceStructureID": 79601, + "TargetStructureID": 79586, + "Label": "79601-79586 via Conventional from 79602 -> 79600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79602, + "TargetID": 79600, + "Directional": true + }] + }, { + "ID": 17134, + "SourceStructureID": 79620, + "TargetStructureID": 5562, + "Label": "79620-5562 via Conventional from 79621 -> 63858", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79621, + "TargetID": 63858, + "Directional": true + }] + }, { + "ID": 17135, + "SourceStructureID": 79643, + "TargetStructureID": 5562, + "Label": "79643-5562 via Conventional from 79648 -> 63872", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79648, + "TargetID": 63872, + "Directional": true + }] + }, { + "ID": 17136, + "SourceStructureID": 79651, + "TargetStructureID": 593, + "Label": "79651-593 via Conventional from 115732 -> 115733", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115732, + "TargetID": 115733, + "Directional": true + }] + }, { + "ID": 17137, + "SourceStructureID": 79665, + "TargetStructureID": 5562, + "Label": "79665-5562 via Conventional from 79666 -> 63869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79666, + "TargetID": 63869, + "Directional": true + }] + }, { + "ID": 17138, + "SourceStructureID": 79667, + "TargetStructureID": 5562, + "Label": "79667-5562 via Conventional from 79668 -> 48943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79668, + "TargetID": 48943, + "Directional": true + }] + }, { + "ID": 17139, + "SourceStructureID": 79672, + "TargetStructureID": 5562, + "Label": "79672-5562 via Conventional from 79673 -> 48957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79673, + "TargetID": 48957, + "Directional": true + }] + }, { + "ID": 17140, + "SourceStructureID": 79674, + "TargetStructureID": 5562, + "Label": "79674-5562 via Conventional from 79675 -> 48958", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79675, + "TargetID": 48958, + "Directional": true + }] + }, { + "ID": 17141, + "SourceStructureID": 79676, + "TargetStructureID": 5562, + "Label": "79676-5562 via Conventional from 79677 -> 63877", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79677, + "TargetID": 63877, + "Directional": true + }] + }, { + "ID": 17142, + "SourceStructureID": 79683, + "TargetStructureID": 5562, + "Label": "79683-5562 via Conventional from 79685 -> 63879", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79685, + "TargetID": 63879, + "Directional": true + }] + }, { + "ID": 17143, + "SourceStructureID": 79686, + "TargetStructureID": 5562, + "Label": "79686-5562 via Conventional from 79687 -> 63880", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79687, + "TargetID": 63880, + "Directional": true + }] + }, { + "ID": 17144, + "SourceStructureID": 79693, + "TargetStructureID": 5562, + "Label": "79693-5562 via Conventional from 79694 -> 63881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79694, + "TargetID": 63881, + "Directional": true + }] + }, { + "ID": 17145, + "SourceStructureID": 79705, + "TargetStructureID": 5562, + "Label": "79705-5562 via Conventional from 79706 -> 63883", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79706, + "TargetID": 63883, + "Directional": true + }] + }, { + "ID": 17146, + "SourceStructureID": 79720, + "TargetStructureID": 5562, + "Label": "79720-5562 via Conventional from 79721 -> 63897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79721, + "TargetID": 63897, + "Directional": true + }] + }, { + "ID": 17147, + "SourceStructureID": 79722, + "TargetStructureID": 5562, + "Label": "79722-5562 via Conventional from 79723 -> 63887", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79723, + "TargetID": 63887, + "Directional": true + }] + }, { + "ID": 17148, + "SourceStructureID": 79729, + "TargetStructureID": 5562, + "Label": "79729-5562 via Conventional from 79730 -> 63888", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79730, + "TargetID": 63888, + "Directional": true + }] + }, { + "ID": 17149, + "SourceStructureID": 79741, + "TargetStructureID": 5562, + "Label": "79741-5562 via Conventional from 79742 -> 63889", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79742, + "TargetID": 63889, + "Directional": true + }] + }, { + "ID": 17150, + "SourceStructureID": 79745, + "TargetStructureID": 5562, + "Label": "79745-5562 via Conventional from 79746 -> 63890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79746, + "TargetID": 63890, + "Directional": true + }] + }, { + "ID": 17151, + "SourceStructureID": 79756, + "TargetStructureID": 5562, + "Label": "79756-5562 via Conventional from 79757 -> 63892", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79757, + "TargetID": 63892, + "Directional": true + }] + }, { + "ID": 17152, + "SourceStructureID": 79772, + "TargetStructureID": 5562, + "Label": "79772-5562 via Conventional from 79773 -> 63912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79773, + "TargetID": 63912, + "Directional": true + }] + }, { + "ID": 17153, + "SourceStructureID": 79779, + "TargetStructureID": 5562, + "Label": "79779-5562 via Conventional from 79780 -> 63914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79780, + "TargetID": 63914, + "Directional": true + }] + }, { + "ID": 17154, + "SourceStructureID": 79781, + "TargetStructureID": 5562, + "Label": "79781-5562 via Conventional from 79782 -> 49003", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79782, + "TargetID": 49003, + "Directional": true + }] + }, { + "ID": 17155, + "SourceStructureID": 79795, + "TargetStructureID": 5562, + "Label": "79795-5562 via Conventional from 79796 -> 49002", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79796, + "TargetID": 49002, + "Directional": true + }] + }, { + "ID": 17156, + "SourceStructureID": 79797, + "TargetStructureID": 5562, + "Label": "79797-5562 via Conventional from 79798 -> 63917", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79798, + "TargetID": 63917, + "Directional": true + }] + }, { + "ID": 17157, + "SourceStructureID": 79799, + "TargetStructureID": 5562, + "Label": "79799-5562 via Conventional from 79800 -> 63918", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79800, + "TargetID": 63918, + "Directional": true + }] + }, { + "ID": 17158, + "SourceStructureID": 79808, + "TargetStructureID": 5562, + "Label": "79808-5562 via Conventional from 79809 -> 63908", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79809, + "TargetID": 63908, + "Directional": true + }] + }, { + "ID": 17159, + "SourceStructureID": 79815, + "TargetStructureID": 5562, + "Label": "79815-5562 via Conventional from 79817 -> 63904", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79817, + "TargetID": 63904, + "Directional": true + }] + }, { + "ID": 17160, + "SourceStructureID": 79834, + "TargetStructureID": 5562, + "Label": "79834-5562 via Conventional from 79835 -> 63910", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79835, + "TargetID": 63910, + "Directional": true + }] + }, { + "ID": 17161, + "SourceStructureID": 79840, + "TargetStructureID": 5562, + "Label": "79840-5562 via Conventional from 79841 -> 63911", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79841, + "TargetID": 63911, + "Directional": true + }] + }, { + "ID": 17162, + "SourceStructureID": 79845, + "TargetStructureID": 5562, + "Label": "79845-5562 via Conventional from 79846 -> 49001", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79846, + "TargetID": 49001, + "Directional": true + }] + }, { + "ID": 17163, + "SourceStructureID": 79855, + "TargetStructureID": 5562, + "Label": "79855-5562 via Conventional from 92082 -> 92083", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92082, + "TargetID": 92083, + "Directional": true + }] + }, { + "ID": 17164, + "SourceStructureID": 79858, + "TargetStructureID": 5562, + "Label": "79858-5562 via Conventional from 79859 -> 63920", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79859, + "TargetID": 63920, + "Directional": true + }] + }, { + "ID": 17165, + "SourceStructureID": 79869, + "TargetStructureID": 5562, + "Label": "79869-5562 via Conventional from 79872 -> 63922", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79872, + "TargetID": 63922, + "Directional": true + }] + }, { + "ID": 17166, + "SourceStructureID": 79873, + "TargetStructureID": 5562, + "Label": "79873-5562 via Conventional from 79874 -> 48979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79874, + "TargetID": 48979, + "Directional": true + }] + }, { + "ID": 17167, + "SourceStructureID": 79875, + "TargetStructureID": 5562, + "Label": "79875-5562 via Conventional from 79876 -> 48972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79876, + "TargetID": 48972, + "Directional": true + }] + }, { + "ID": 17168, + "SourceStructureID": 79914, + "TargetStructureID": 6997, + "Label": "79914-6997 via Conventional from 79915 -> 83117", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79915, + "TargetID": 83117, + "Directional": true + }] + }, { + "ID": 17169, + "SourceStructureID": 79926, + "TargetStructureID": 6997, + "Label": "79926-6997 via Conventional from 79927 -> 83096", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79927, + "TargetID": 83096, + "Directional": true + }] + }, { + "ID": 17170, + "SourceStructureID": 79928, + "TargetStructureID": 6997, + "Label": "79928-6997 via Conventional from 79929 -> 83095", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79929, + "TargetID": 83095, + "Directional": true + }] + }, { + "ID": 17171, + "SourceStructureID": 79931, + "TargetStructureID": 6997, + "Label": "79931-6997 via Conventional from 79932 -> 83097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79932, + "TargetID": 83097, + "Directional": true + }] + }, { + "ID": 17172, + "SourceStructureID": 79950, + "TargetStructureID": 69162, + "Label": "79950-69162 via Conventional from 136837 -> 136838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136837, + "TargetID": 136838, + "Directional": true + }] + }, { + "ID": 17173, + "SourceStructureID": 79955, + "TargetStructureID": 6997, + "Label": "79955-6997 via Conventional from 79956 -> 83113", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79956, + "TargetID": 83113, + "Directional": true + }] + }, { + "ID": 17174, + "SourceStructureID": 79970, + "TargetStructureID": 6997, + "Label": "79970-6997 via Conventional from 79971 -> 83073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79971, + "TargetID": 83073, + "Directional": true + }] + }, { + "ID": 17175, + "SourceStructureID": 79975, + "TargetStructureID": 6997, + "Label": "79975-6997 via Conventional from 79977 -> 83080", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79977, + "TargetID": 83080, + "Directional": true + }] + }, { + "ID": 17176, + "SourceStructureID": 79984, + "TargetStructureID": 6997, + "Label": "79984-6997 via Conventional from 79985 -> 83076", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79985, + "TargetID": 83076, + "Directional": true + }] + }, { + "ID": 17177, + "SourceStructureID": 79986, + "TargetStructureID": 6997, + "Label": "79986-6997 via Conventional from 79987 -> 83079", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 79987, + "TargetID": 83079, + "Directional": true + }] + }, { + "ID": 17178, + "SourceStructureID": 80000, + "TargetStructureID": 6997, + "Label": "80000-6997 via Conventional from 80001 -> 83085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80001, + "TargetID": 83085, + "Directional": true + }] + }, { + "ID": 17179, + "SourceStructureID": 80016, + "TargetStructureID": 6997, + "Label": "80016-6997 via Conventional from 80017 -> 83069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80017, + "TargetID": 83069, + "Directional": true + }] + }, { + "ID": 17180, + "SourceStructureID": 80019, + "TargetStructureID": 6997, + "Label": "80019-6997 via Conventional from 80020 -> 83067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80020, + "TargetID": 83067, + "Directional": true + }] + }, { + "ID": 17181, + "SourceStructureID": 80023, + "TargetStructureID": 6997, + "Label": "80023-6997 via Conventional from 80024 -> 83026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80024, + "TargetID": 83026, + "Directional": true + }] + }, { + "ID": 17182, + "SourceStructureID": 80028, + "TargetStructureID": 6997, + "Label": "80028-6997 via Conventional from 80029 -> 83023", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80029, + "TargetID": 83023, + "Directional": true + }] + }, { + "ID": 17183, + "SourceStructureID": 80034, + "TargetStructureID": 6997, + "Label": "80034-6997 via Conventional from 80035 -> 83019, 80037 -> 83020", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80035, + "TargetID": 83019, + "Directional": true + }, { + "SourceID": 80037, + "TargetID": 83020, + "Directional": true + }] + }, { + "ID": 17184, + "SourceStructureID": 80060, + "TargetStructureID": 5283, + "Label": "80060-5283 via Conventional from 80061 -> 80056", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80061, + "TargetID": 80056, + "Directional": true + }] + }, { + "ID": 17185, + "SourceStructureID": 80065, + "TargetStructureID": 5283, + "Label": "80065-5283 via Conventional from 80066 -> 80064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80066, + "TargetID": 80064, + "Directional": true + }] + }, { + "ID": 17186, + "SourceStructureID": 80067, + "TargetStructureID": 5283, + "Label": "80067-5283 via Conventional from 80068 -> 80069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80068, + "TargetID": 80069, + "Directional": true + }] + }, { + "ID": 17187, + "SourceStructureID": 80071, + "TargetStructureID": 5283, + "Label": "80071-5283 via Conventional from 80072 -> 80070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80072, + "TargetID": 80070, + "Directional": true + }] + }, { + "ID": 17188, + "SourceStructureID": 80079, + "TargetStructureID": 5283, + "Label": "80079-5283 via Cistern Pre from 132189 -> 132190", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 132189, + "TargetID": 132190, + "Directional": true + }] + }, { + "ID": 17189, + "SourceStructureID": 80088, + "TargetStructureID": 5283, + "Label": "80088-5283 via Conventional from 80089 -> 80062", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80089, + "TargetID": 80062, + "Directional": true + }] + }, { + "ID": 17190, + "SourceStructureID": 80090, + "TargetStructureID": 5283, + "Label": "80090-5283 via Conventional from 80091 -> 80092", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80091, + "TargetID": 80092, + "Directional": true + }] + }, { + "ID": 17191, + "SourceStructureID": 80094, + "TargetStructureID": 5283, + "Label": "80094-5283 via Conventional from 80096 -> 80093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80096, + "TargetID": 80093, + "Directional": true + }] + }, { + "ID": 17192, + "SourceStructureID": 80115, + "TargetStructureID": 5283, + "Label": "80115-5283 via Conventional from 80116 -> 80114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80116, + "TargetID": 80114, + "Directional": true + }] + }, { + "ID": 17193, + "SourceStructureID": 80133, + "TargetStructureID": 5283, + "Label": "80133-5283 via Conventional from 80134 -> 80135", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80134, + "TargetID": 80135, + "Directional": true + }] + }, { + "ID": 17194, + "SourceStructureID": 80147, + "TargetStructureID": 5283, + "Label": "80147-5283 via Conventional from 80148 -> 80146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80148, + "TargetID": 80146, + "Directional": true + }] + }, { + "ID": 17195, + "SourceStructureID": 80159, + "TargetStructureID": 5283, + "Label": "80159-5283 via Conventional from 80160 -> 80158", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80160, + "TargetID": 80158, + "Directional": true + }] + }, { + "ID": 17196, + "SourceStructureID": 80167, + "TargetStructureID": 5283, + "Label": "80167-5283 via Conventional from 80168 -> 80166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80168, + "TargetID": 80166, + "Directional": true + }] + }, { + "ID": 17197, + "SourceStructureID": 80174, + "TargetStructureID": 5530, + "Label": "80174-5530 via Conventional from 80175 -> 80176", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80175, + "TargetID": 80176, + "Directional": true + }] + }, { + "ID": 17198, + "SourceStructureID": 80185, + "TargetStructureID": 176, + "Label": "80185-176 via Conventional from 124869 -> 54994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 124869, + "TargetID": 54994, + "Directional": true + }] + }, { + "ID": 17199, + "SourceStructureID": 80185, + "TargetStructureID": 5530, + "Label": "80185-5530 via Conventional from 80187 -> 42098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80187, + "TargetID": 42098, + "Directional": true + }] + }, { + "ID": 17200, + "SourceStructureID": 80190, + "TargetStructureID": 5530, + "Label": "80190-5530 via Conventional from 80191 -> 42105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80191, + "TargetID": 42105, + "Directional": true + }] + }, { + "ID": 17201, + "SourceStructureID": 80197, + "TargetStructureID": 5530, + "Label": "80197-5530 via Conventional from 80198 -> 80199", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80198, + "TargetID": 80199, + "Directional": true + }] + }, { + "ID": 17202, + "SourceStructureID": 80203, + "TargetStructureID": 5530, + "Label": "80203-5530 via Conventional from 80204 -> 42113", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80204, + "TargetID": 42113, + "Directional": true + }] + }, { + "ID": 17203, + "SourceStructureID": 80213, + "TargetStructureID": 5562, + "Label": "80213-5562 via Conventional from 80214 -> 80215", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80214, + "TargetID": 80215, + "Directional": true + }] + }, { + "ID": 17204, + "SourceStructureID": 80235, + "TargetStructureID": 5562, + "Label": "80235-5562 via Conventional from 134522 -> 134521", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134522, + "TargetID": 134521, + "Directional": true + }] + }, { + "ID": 17205, + "SourceStructureID": 80245, + "TargetStructureID": 5283, + "Label": "80245-5283 via Cistern Pre from 131702 -> 131703", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 131702, + "TargetID": 131703, + "Directional": true + }] + }, { + "ID": 17206, + "SourceStructureID": 80248, + "TargetStructureID": 5283, + "Label": "80248-5283 via Conventional from 80249 -> 80247", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80249, + "TargetID": 80247, + "Directional": true + }] + }, { + "ID": 17207, + "SourceStructureID": 80262, + "TargetStructureID": 5562, + "Label": "80262-5562 via Conventional from 80264 -> 63086", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80264, + "TargetID": 63086, + "Directional": true + }] + }, { + "ID": 17208, + "SourceStructureID": 80263, + "TargetStructureID": 5530, + "Label": "80263-5530 via Conventional from 80268 -> 42114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80268, + "TargetID": 42114, + "Directional": true + }] + }, { + "ID": 17209, + "SourceStructureID": 80274, + "TargetStructureID": 68463, + "Label": "80274-68463 via Conventional from 80275 -> 80273", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80275, + "TargetID": 80273, + "Directional": true + }] + }, { + "ID": 17210, + "SourceStructureID": 80276, + "TargetStructureID": 5530, + "Label": "80276-5530 via Conventional from 80279 -> 42115", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80279, + "TargetID": 42115, + "Directional": true + }] + }, { + "ID": 17211, + "SourceStructureID": 80276, + "TargetStructureID": 80210, + "Label": "80276-80210 via Conventional from 84377 -> 84378", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84377, + "TargetID": 84378, + "Directional": true + }] + }, { + "ID": 17212, + "SourceStructureID": 80286, + "TargetStructureID": 5562, + "Label": "80286-5562 via Conventional from 80287 -> 63239", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80287, + "TargetID": 63239, + "Directional": true + }] + }, { + "ID": 17213, + "SourceStructureID": 80290, + "TargetStructureID": 5562, + "Label": "80290-5562 via Conventional from 80291 -> 63245", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80291, + "TargetID": 63245, + "Directional": true + }] + }, { + "ID": 17214, + "SourceStructureID": 80292, + "TargetStructureID": 5530, + "Label": "80292-5530 via Conventional from 80297 -> 80299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80297, + "TargetID": 80299, + "Directional": true + }] + }, { + "ID": 17215, + "SourceStructureID": 80293, + "TargetStructureID": 5649, + "Label": "80293-5649 via Conventional from 106546 -> 54105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106546, + "TargetID": 54105, + "Directional": true + }] + }, { + "ID": 17216, + "SourceStructureID": 80304, + "TargetStructureID": 5562, + "Label": "80304-5562 via Conventional from 134627 -> 134626", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134627, + "TargetID": 134626, + "Directional": true + }] + }, { + "ID": 17217, + "SourceStructureID": 80320, + "TargetStructureID": 5562, + "Label": "80320-5562 via Conventional from 147567 -> 147566", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147567, + "TargetID": 147566, + "Directional": true + }] + }, { + "ID": 17218, + "SourceStructureID": 80324, + "TargetStructureID": 5562, + "Label": "80324-5562 via Conventional from 80325 -> 80326", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80325, + "TargetID": 80326, + "Directional": true + }] + }, { + "ID": 17219, + "SourceStructureID": 80333, + "TargetStructureID": 5562, + "Label": "80333-5562 via Conventional from 147564 -> 147565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147564, + "TargetID": 147565, + "Directional": true + }] + }, { + "ID": 17220, + "SourceStructureID": 80346, + "TargetStructureID": 5562, + "Label": "80346-5562 via Conventional from 80347 -> 63294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80347, + "TargetID": 63294, + "Directional": true + }] + }, { + "ID": 17221, + "SourceStructureID": 80354, + "TargetStructureID": 5562, + "Label": "80354-5562 via Conventional from 80356 -> 63297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80356, + "TargetID": 63297, + "Directional": true + }] + }, { + "ID": 17222, + "SourceStructureID": 80357, + "TargetStructureID": 5562, + "Label": "80357-5562 via Conventional from 80358 -> 63298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80358, + "TargetID": 63298, + "Directional": true + }] + }, { + "ID": 17223, + "SourceStructureID": 80361, + "TargetStructureID": 5562, + "Label": "80361-5562 via Conventional from 80362 -> 63300", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80362, + "TargetID": 63300, + "Directional": true + }] + }, { + "ID": 17224, + "SourceStructureID": 80378, + "TargetStructureID": 5562, + "Label": "80378-5562 via Conventional from 80380 -> 63305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80380, + "TargetID": 63305, + "Directional": true + }] + }, { + "ID": 17225, + "SourceStructureID": 80382, + "TargetStructureID": 5562, + "Label": "80382-5562 via Conventional from 80392 -> 80393", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80392, + "TargetID": 80393, + "Directional": true + }] + }, { + "ID": 17226, + "SourceStructureID": 80383, + "TargetStructureID": 5562, + "Label": "80383-5562 via Conventional from 80384 -> 63303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80384, + "TargetID": 63303, + "Directional": true + }] + }, { + "ID": 17227, + "SourceStructureID": 80398, + "TargetStructureID": 5562, + "Label": "80398-5562 via Conventional from 80677 -> 63286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80677, + "TargetID": 63286, + "Directional": true + }] + }, { + "ID": 17228, + "SourceStructureID": 80400, + "TargetStructureID": 5562, + "Label": "80400-5562 via Conventional from 80690 -> 63287", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80690, + "TargetID": 63287, + "Directional": true + }] + }, { + "ID": 17229, + "SourceStructureID": 80401, + "TargetStructureID": 5562, + "Label": "80401-5562 via Conventional from 80402 -> 63288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80402, + "TargetID": 63288, + "Directional": true + }] + }, { + "ID": 17230, + "SourceStructureID": 80425, + "TargetStructureID": 5530, + "Label": "80425-5530 via Conventional from 80439 -> 42118", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80439, + "TargetID": 42118, + "Directional": true + }] + }, { + "ID": 17231, + "SourceStructureID": 80434, + "TargetStructureID": 5530, + "Label": "80434-5530 via Conventional from 80444 -> 42119", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80444, + "TargetID": 42119, + "Directional": true + }] + }, { + "ID": 17232, + "SourceStructureID": 80440, + "TargetStructureID": 5530, + "Label": "80440-5530 via Conventional from 80441 -> 42120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80441, + "TargetID": 42120, + "Directional": true + }] + }, { + "ID": 17233, + "SourceStructureID": 80447, + "TargetStructureID": 5530, + "Label": "80447-5530 via Conventional from 80450 -> 42122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80450, + "TargetID": 42122, + "Directional": true + }] + }, { + "ID": 17234, + "SourceStructureID": 80448, + "TargetStructureID": 170, + "Label": "80448-170 via Conventional from 88530 -> 47933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88530, + "TargetID": 47933, + "Directional": true + }] + }, { + "ID": 17235, + "SourceStructureID": 80448, + "TargetStructureID": 5530, + "Label": "80448-5530 via Conventional from 80451 -> 42123", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80451, + "TargetID": 42123, + "Directional": true + }] + }, { + "ID": 17236, + "SourceStructureID": 80467, + "TargetStructureID": 5530, + "Label": "80467-5530 via Conventional from 80468 -> 42124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80468, + "TargetID": 42124, + "Directional": true + }] + }, { + "ID": 17237, + "SourceStructureID": 80475, + "TargetStructureID": 5530, + "Label": "80475-5530 via Conventional from 80476 -> 80477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80476, + "TargetID": 80477, + "Directional": true + }] + }, { + "ID": 17238, + "SourceStructureID": 80498, + "TargetStructureID": 5530, + "Label": "80498-5530 via Conventional from 80503 -> 42128", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80503, + "TargetID": 42128, + "Directional": true + }] + }, { + "ID": 17239, + "SourceStructureID": 80506, + "TargetStructureID": 5530, + "Label": "80506-5530 via Conventional from 80507 -> 80505", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80507, + "TargetID": 80505, + "Directional": true + }] + }, { + "ID": 17240, + "SourceStructureID": 80509, + "TargetStructureID": 5530, + "Label": "80509-5530 via Conventional from 80511 -> 80510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80511, + "TargetID": 80510, + "Directional": true + }] + }, { + "ID": 17241, + "SourceStructureID": 80522, + "TargetStructureID": 62325, + "Label": "80522-62325 via Conventional from 80523 -> 80524", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80523, + "TargetID": 80524, + "Directional": true + }] + }, { + "ID": 17242, + "SourceStructureID": 80532, + "TargetStructureID": 62325, + "Label": "80532-62325 via Conventional from 80793 -> 80794", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80793, + "TargetID": 80794, + "Directional": true + }] + }, { + "ID": 17243, + "SourceStructureID": 80534, + "TargetStructureID": 62325, + "Label": "80534-62325 via Conventional from 80536 -> 80537", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80536, + "TargetID": 80537, + "Directional": true + }] + }, { + "ID": 17244, + "SourceStructureID": 80555, + "TargetStructureID": 68393, + "Label": "80555-68393 via Conventional from 80556 -> 80554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80556, + "TargetID": 80554, + "Directional": true + }] + }, { + "ID": 17245, + "SourceStructureID": 80555, + "TargetStructureID": 112995, + "Label": "80555-112995 via Conventional from 80558 -> 112996", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80558, + "TargetID": 112996, + "Directional": true + }] + }, { + "ID": 17246, + "SourceStructureID": 80562, + "TargetStructureID": 5530, + "Label": "80562-5530 via Conventional from 80566 -> 42129", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80566, + "TargetID": 42129, + "Directional": true + }] + }, { + "ID": 17247, + "SourceStructureID": 80572, + "TargetStructureID": 5530, + "Label": "80572-5530 via Conventional from 80573 -> 39714", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80573, + "TargetID": 39714, + "Directional": true + }] + }, { + "ID": 17248, + "SourceStructureID": 80582, + "TargetStructureID": 5530, + "Label": "80582-5530 via Conventional from 80583 -> 80584", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80583, + "TargetID": 80584, + "Directional": true + }] + }, { + "ID": 17249, + "SourceStructureID": 80588, + "TargetStructureID": 5530, + "Label": "80588-5530 via Conventional from 80589 -> 42132", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80589, + "TargetID": 42132, + "Directional": true + }] + }, { + "ID": 17250, + "SourceStructureID": 80591, + "TargetStructureID": 68539, + "Label": "80591-68539 via Conventional from 80594 -> 80590", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80594, + "TargetID": 80590, + "Directional": true + }] + }, { + "ID": 17251, + "SourceStructureID": 80596, + "TargetStructureID": 5530, + "Label": "80596-5530 via Conventional from 80597 -> 42133", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80597, + "TargetID": 42133, + "Directional": true + }] + }, { + "ID": 17252, + "SourceStructureID": 80600, + "TargetStructureID": 89058, + "Label": "80600-89058 via Conventional from 89057 -> 89060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89057, + "TargetID": 89060, + "Directional": true + }] + }, { + "ID": 17253, + "SourceStructureID": 80604, + "TargetStructureID": 9769, + "Label": "80604-9769 via Conventional from 80605 -> 29818", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80605, + "TargetID": 29818, + "Directional": true + }] + }, { + "ID": 17254, + "SourceStructureID": 80607, + "TargetStructureID": 142, + "Label": "80607-142 via Conventional from 126237 -> 50238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126237, + "TargetID": 50238, + "Directional": true + }] + }, { + "ID": 17255, + "SourceStructureID": 80607, + "TargetStructureID": 5530, + "Label": "80607-5530 via Conventional from 80608 -> 46334", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80608, + "TargetID": 46334, + "Directional": true + }] + }, { + "ID": 17256, + "SourceStructureID": 80607, + "TargetStructureID": 80607, + "Label": "80607-80607 via Conventional from 126053 -> 126054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126053, + "TargetID": 126054, + "Directional": true + }] + }, { + "ID": 17257, + "SourceStructureID": 80609, + "TargetStructureID": 180, + "Label": "80609-180 via Conventional from 133112 -> 133111", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133112, + "TargetID": 133111, + "Directional": true + }] + }, { + "ID": 17258, + "SourceStructureID": 80609, + "TargetStructureID": 10720, + "Label": "80609-10720 via Conventional from 82470 -> 82469", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82470, + "TargetID": 82469, + "Directional": true + }] + }, { + "ID": 17259, + "SourceStructureID": 80646, + "TargetStructureID": 68286, + "Label": "80646-68286 via Conventional from 80647 -> 68310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80647, + "TargetID": 68310, + "Directional": true + }] + }, { + "ID": 17260, + "SourceStructureID": 80657, + "TargetStructureID": 68286, + "Label": "80657-68286 via Conventional from 80658 -> 80656", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80658, + "TargetID": 80656, + "Directional": true + }] + }, { + "ID": 17261, + "SourceStructureID": 80665, + "TargetStructureID": 68286, + "Label": "80665-68286 via Conventional from 80666 -> 80661", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80666, + "TargetID": 80661, + "Directional": true + }] + }, { + "ID": 17262, + "SourceStructureID": 80702, + "TargetStructureID": 5562, + "Label": "80702-5562 via Conventional from 80703 -> 63310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80703, + "TargetID": 63310, + "Directional": true + }] + }, { + "ID": 17263, + "SourceStructureID": 80710, + "TargetStructureID": 5530, + "Label": "80710-5530 via Conventional from 80711 -> 80712", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80711, + "TargetID": 80712, + "Directional": true + }] + }, { + "ID": 17264, + "SourceStructureID": 80721, + "TargetStructureID": 61816, + "Label": "80721-61816 via Conventional from 80722 -> 80723", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80722, + "TargetID": 80723, + "Directional": true + }] + }, { + "ID": 17265, + "SourceStructureID": 80734, + "TargetStructureID": 61816, + "Label": "80734-61816 via Conventional from 80735 -> 80736", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80735, + "TargetID": 80736, + "Directional": true + }] + }, { + "ID": 17266, + "SourceStructureID": 80738, + "TargetStructureID": 61816, + "Label": "80738-61816 via Conventional from 80739 -> 80740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80739, + "TargetID": 80740, + "Directional": true + }] + }, { + "ID": 17267, + "SourceStructureID": 80741, + "TargetStructureID": 61816, + "Label": "80741-61816 via Conventional from 80742 -> 80743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80742, + "TargetID": 80743, + "Directional": true + }] + }, { + "ID": 17268, + "SourceStructureID": 80755, + "TargetStructureID": 32804, + "Label": "80755-32804 via Ribbon Synapse from 80757 -> 80756", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80757, + "TargetID": 80756, + "Directional": true + }] + }, { + "ID": 17269, + "SourceStructureID": 80755, + "TargetStructureID": 80772, + "Label": "80755-80772 via Ribbon Synapse from 80771 -> 80773", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 80771, + "TargetID": 80773, + "Directional": true + }] + }, { + "ID": 17270, + "SourceStructureID": 80764, + "TargetStructureID": 32654, + "Label": "80764-32654 via Conventional from 80765 -> 80766", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80765, + "TargetID": 80766, + "Directional": true + }] + }, { + "ID": 17271, + "SourceStructureID": 80767, + "TargetStructureID": 32654, + "Label": "80767-32654 via Conventional from 80768 -> 80769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80768, + "TargetID": 80769, + "Directional": true + }] + }, { + "ID": 17272, + "SourceStructureID": 80779, + "TargetStructureID": 32654, + "Label": "80779-32654 via Conventional from 80781 -> 80783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80781, + "TargetID": 80783, + "Directional": true + }] + }, { + "ID": 17273, + "SourceStructureID": 80779, + "TargetStructureID": 80755, + "Label": "80779-80755 via Conventional from 80780 -> 80782", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80780, + "TargetID": 80782, + "Directional": true + }] + }, { + "ID": 17274, + "SourceStructureID": 80784, + "TargetStructureID": 80755, + "Label": "80784-80755 via Conventional from 80788 -> 80791", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80788, + "TargetID": 80791, + "Directional": true + }] + }, { + "ID": 17275, + "SourceStructureID": 80785, + "TargetStructureID": 80755, + "Label": "80785-80755 via Conventional from 80789 -> 80790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80789, + "TargetID": 80790, + "Directional": true + }] + }, { + "ID": 17276, + "SourceStructureID": 80786, + "TargetStructureID": 80784, + "Label": "80786-80784 via Conventional from 80787 -> 80792", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80787, + "TargetID": 80792, + "Directional": true + }] + }, { + "ID": 17277, + "SourceStructureID": 80797, + "TargetStructureID": 5562, + "Label": "80797-5562 via Conventional from 80798 -> 63318", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80798, + "TargetID": 63318, + "Directional": true + }] + }, { + "ID": 17278, + "SourceStructureID": 80806, + "TargetStructureID": 62325, + "Label": "80806-62325 via Conventional from 80825 -> 80828, 80870 -> 80869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80825, + "TargetID": 80828, + "Directional": true + }, { + "SourceID": 80870, + "TargetID": 80869, + "Directional": true + }] + }, { + "ID": 17279, + "SourceStructureID": 80809, + "TargetStructureID": 5562, + "Label": "80809-5562 via Conventional from 80810 -> 63319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80810, + "TargetID": 63319, + "Directional": true + }] + }, { + "ID": 17280, + "SourceStructureID": 80814, + "TargetStructureID": 5562, + "Label": "80814-5562 via Conventional from 80815 -> 63314", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80815, + "TargetID": 63314, + "Directional": true + }] + }, { + "ID": 17281, + "SourceStructureID": 80816, + "TargetStructureID": 5562, + "Label": "80816-5562 via Conventional from 80817 -> 63313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80817, + "TargetID": 63313, + "Directional": true + }] + }, { + "ID": 17282, + "SourceStructureID": 80833, + "TargetStructureID": 5562, + "Label": "80833-5562 via Conventional from 80834 -> 80835", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80834, + "TargetID": 80835, + "Directional": true + }] + }, { + "ID": 17283, + "SourceStructureID": 80843, + "TargetStructureID": 5562, + "Label": "80843-5562 via Conventional from 80844 -> 80845", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80844, + "TargetID": 80845, + "Directional": true + }] + }, { + "ID": 17284, + "SourceStructureID": 80853, + "TargetStructureID": 5562, + "Label": "80853-5562 via Conventional from 80854 -> 63322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80854, + "TargetID": 63322, + "Directional": true + }] + }, { + "ID": 17285, + "SourceStructureID": 80867, + "TargetStructureID": 5562, + "Label": "80867-5562 via Conventional from 80868 -> 63326", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80868, + "TargetID": 63326, + "Directional": true + }] + }, { + "ID": 17286, + "SourceStructureID": 80879, + "TargetStructureID": 62325, + "Label": "80879-62325 via Conventional from 80880 -> 80878", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80880, + "TargetID": 80878, + "Directional": true + }] + }, { + "ID": 17287, + "SourceStructureID": 80879, + "TargetStructureID": 80896, + "Label": "80879-80896 via Conventional from 87117 -> 87119", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87117, + "TargetID": 87119, + "Directional": true + }] + }, { + "ID": 17288, + "SourceStructureID": 80889, + "TargetStructureID": 5562, + "Label": "80889-5562 via Conventional from 80890 -> 63327", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80890, + "TargetID": 63327, + "Directional": true + }] + }, { + "ID": 17289, + "SourceStructureID": 80897, + "TargetStructureID": 5562, + "Label": "80897-5562 via Conventional from 80898 -> 64193", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80898, + "TargetID": 64193, + "Directional": true + }] + }, { + "ID": 17290, + "SourceStructureID": 80900, + "TargetStructureID": 80856, + "Label": "80900-80856 via Conventional from 82444 -> 82445", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82444, + "TargetID": 82445, + "Directional": true + }] + }, { + "ID": 17291, + "SourceStructureID": 80900, + "TargetStructureID": 82449, + "Label": "80900-82449 via Conventional from 82448 -> 82450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82448, + "TargetID": 82450, + "Directional": true + }] + }, { + "ID": 17292, + "SourceStructureID": 80904, + "TargetStructureID": 5562, + "Label": "80904-5562 via Conventional from 80905 -> 64195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80905, + "TargetID": 64195, + "Directional": true + }] + }, { + "ID": 17293, + "SourceStructureID": 80974, + "TargetStructureID": 5530, + "Label": "80974-5530 via Conventional from 80976 -> 80975", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80976, + "TargetID": 80975, + "Directional": true + }] + }, { + "ID": 17294, + "SourceStructureID": 80980, + "TargetStructureID": 5530, + "Label": "80980-5530 via Conventional from 80981 -> 42140", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80981, + "TargetID": 42140, + "Directional": true + }] + }, { + "ID": 17295, + "SourceStructureID": 80983, + "TargetStructureID": 5530, + "Label": "80983-5530 via Conventional from 80986 -> 42142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80986, + "TargetID": 42142, + "Directional": true + }] + }, { + "ID": 17296, + "SourceStructureID": 80989, + "TargetStructureID": 5530, + "Label": "80989-5530 via Conventional from 80996 -> 42143", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80996, + "TargetID": 42143, + "Directional": true + }] + }, { + "ID": 17297, + "SourceStructureID": 80990, + "TargetStructureID": 5530, + "Label": "80990-5530 via Conventional from 80999 -> 42144", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 80999, + "TargetID": 42144, + "Directional": true + }] + }, { + "ID": 17298, + "SourceStructureID": 81003, + "TargetStructureID": 5530, + "Label": "81003-5530 via Conventional from 81007 -> 42146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81007, + "TargetID": 42146, + "Directional": true + }] + }, { + "ID": 17299, + "SourceStructureID": 81008, + "TargetStructureID": 5530, + "Label": "81008-5530 via Conventional from 81009 -> 42150", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81009, + "TargetID": 42150, + "Directional": true + }] + }, { + "ID": 17300, + "SourceStructureID": 81017, + "TargetStructureID": 5530, + "Label": "81017-5530 via Conventional from 81019 -> 81018", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81019, + "TargetID": 81018, + "Directional": true + }] + }, { + "ID": 17301, + "SourceStructureID": 81035, + "TargetStructureID": 32804, + "Label": "81035-32804 via Conventional from 81036 -> 81034", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81036, + "TargetID": 81034, + "Directional": true + }] + }, { + "ID": 17302, + "SourceStructureID": 81042, + "TargetStructureID": 32654, + "Label": "81042-32654 via Conventional from 81043 -> 81045, 81044 -> 81065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81043, + "TargetID": 81045, + "Directional": true + }, { + "SourceID": 81044, + "TargetID": 81065, + "Directional": true + }] + }, { + "ID": 17303, + "SourceStructureID": 81048, + "TargetStructureID": 32654, + "Label": "81048-32654 via Conventional from 81049 -> 81050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81049, + "TargetID": 81050, + "Directional": true + }] + }, { + "ID": 17304, + "SourceStructureID": 81051, + "TargetStructureID": 32654, + "Label": "81051-32654 via Conventional from 81052 -> 81053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81052, + "TargetID": 81053, + "Directional": true + }] + }, { + "ID": 17305, + "SourceStructureID": 81066, + "TargetStructureID": 32654, + "Label": "81066-32654 via Conventional from 81067 -> 81068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81067, + "TargetID": 81068, + "Directional": true + }] + }, { + "ID": 17306, + "SourceStructureID": 81069, + "TargetStructureID": 32654, + "Label": "81069-32654 via Conventional from 81070 -> 81071", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81070, + "TargetID": 81071, + "Directional": true + }] + }, { + "ID": 17307, + "SourceStructureID": 81072, + "TargetStructureID": 32654, + "Label": "81072-32654 via Conventional from 81073 -> 81074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81073, + "TargetID": 81074, + "Directional": true + }] + }, { + "ID": 17308, + "SourceStructureID": 81075, + "TargetStructureID": 32654, + "Label": "81075-32654 via Conventional from 81076 -> 81077", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81076, + "TargetID": 81077, + "Directional": true + }] + }, { + "ID": 17309, + "SourceStructureID": 81081, + "TargetStructureID": 32654, + "Label": "81081-32654 via Conventional from 81082 -> 81083", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81082, + "TargetID": 81083, + "Directional": true + }] + }, { + "ID": 17310, + "SourceStructureID": 81089, + "TargetStructureID": 32804, + "Label": "81089-32804 via Conventional from 81090 -> 32838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81090, + "TargetID": 32838, + "Directional": true + }] + }, { + "ID": 17311, + "SourceStructureID": 81091, + "TargetStructureID": 32804, + "Label": "81091-32804 via Conventional from 81092 -> 81093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81092, + "TargetID": 81093, + "Directional": true + }] + }, { + "ID": 17312, + "SourceStructureID": 81095, + "TargetStructureID": 32804, + "Label": "81095-32804 via Conventional from 81096 -> 81097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81096, + "TargetID": 81097, + "Directional": true + }] + }, { + "ID": 17313, + "SourceStructureID": 81102, + "TargetStructureID": 9693, + "Label": "81102-9693 via Conventional from 81103 -> 28221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81103, + "TargetID": 28221, + "Directional": true + }] + }, { + "ID": 17314, + "SourceStructureID": 81120, + "TargetStructureID": 32804, + "Label": "81120-32804 via Conventional from 81122 -> 32813", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81122, + "TargetID": 32813, + "Directional": true + }] + }, { + "ID": 17315, + "SourceStructureID": 81124, + "TargetStructureID": 32804, + "Label": "81124-32804 via Conventional from 81125 -> 32812", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81125, + "TargetID": 32812, + "Directional": true + }] + }, { + "ID": 17316, + "SourceStructureID": 81130, + "TargetStructureID": 5522, + "Label": "81130-5522 via Conventional from 81131 -> 64148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81131, + "TargetID": 64148, + "Directional": true + }] + }, { + "ID": 17317, + "SourceStructureID": 81136, + "TargetStructureID": 5530, + "Label": "81136-5530 via Conventional from 81137 -> 81138", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81137, + "TargetID": 81138, + "Directional": true + }] + }, { + "ID": 17318, + "SourceStructureID": 81146, + "TargetStructureID": 5562, + "Label": "81146-5562 via Conventional from 81147 -> 81148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81147, + "TargetID": 81148, + "Directional": true + }] + }, { + "ID": 17319, + "SourceStructureID": 81180, + "TargetStructureID": 5530, + "Label": "81180-5530 via Conventional from 81181 -> 23860", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81181, + "TargetID": 23860, + "Directional": true + }] + }, { + "ID": 17320, + "SourceStructureID": 81187, + "TargetStructureID": 5530, + "Label": "81187-5530 via Conventional from 81188 -> 81189", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81188, + "TargetID": 81189, + "Directional": true + }] + }, { + "ID": 17321, + "SourceStructureID": 81193, + "TargetStructureID": 5530, + "Label": "81193-5530 via Conventional from 81194 -> 81195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81194, + "TargetID": 81195, + "Directional": true + }] + }, { + "ID": 17322, + "SourceStructureID": 81196, + "TargetStructureID": 608, + "Label": "81196-608 via Conventional from 81197 -> 59074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81197, + "TargetID": 59074, + "Directional": true + }] + }, { + "ID": 17323, + "SourceStructureID": 81196, + "TargetStructureID": 39862, + "Label": "81196-39862 via Conventional from 81198 -> 81199", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81198, + "TargetID": 81199, + "Directional": true + }] + }, { + "ID": 17324, + "SourceStructureID": 81200, + "TargetStructureID": 5530, + "Label": "81200-5530 via Conventional from 81201 -> 81202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81201, + "TargetID": 81202, + "Directional": true + }] + }, { + "ID": 17325, + "SourceStructureID": 81211, + "TargetStructureID": 5530, + "Label": "81211-5530 via Conventional from 81212 -> 81213", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81212, + "TargetID": 81213, + "Directional": true + }] + }, { + "ID": 17326, + "SourceStructureID": 81223, + "TargetStructureID": 5530, + "Label": "81223-5530 via Conventional from 81224 -> 81225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81224, + "TargetID": 81225, + "Directional": true + }] + }, { + "ID": 17327, + "SourceStructureID": 81228, + "TargetStructureID": 5530, + "Label": "81228-5530 via Conventional from 81229 -> 81230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81229, + "TargetID": 81230, + "Directional": true + }] + }, { + "ID": 17328, + "SourceStructureID": 81234, + "TargetStructureID": 5530, + "Label": "81234-5530 via Conventional from 81237 -> 81238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81237, + "TargetID": 81238, + "Directional": true + }] + }, { + "ID": 17329, + "SourceStructureID": 81236, + "TargetStructureID": 62325, + "Label": "81236-62325 via Conventional from 81242 -> 81245", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81242, + "TargetID": 81245, + "Directional": true + }] + }, { + "ID": 17330, + "SourceStructureID": 81267, + "TargetStructureID": 62325, + "Label": "81267-62325 via Conventional from 81427 -> 81428", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81427, + "TargetID": 81428, + "Directional": true + }] + }, { + "ID": 17331, + "SourceStructureID": 81270, + "TargetStructureID": 62325, + "Label": "81270-62325 via Conventional from 81271 -> 81272, 81414 -> 81415", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81271, + "TargetID": 81272, + "Directional": true + }, { + "SourceID": 81414, + "TargetID": 81415, + "Directional": true + }] + }, { + "ID": 17332, + "SourceStructureID": 81287, + "TargetStructureID": 62325, + "Label": "81287-62325 via Conventional from 81288 -> 81289", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81288, + "TargetID": 81289, + "Directional": true + }] + }, { + "ID": 17333, + "SourceStructureID": 81301, + "TargetStructureID": 62325, + "Label": "81301-62325 via Conventional from 81329 -> 81330", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81329, + "TargetID": 81330, + "Directional": true + }] + }, { + "ID": 17334, + "SourceStructureID": 81321, + "TargetStructureID": 62325, + "Label": "81321-62325 via Conventional from 81327 -> 81328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81327, + "TargetID": 81328, + "Directional": true + }] + }, { + "ID": 17335, + "SourceStructureID": 81322, + "TargetStructureID": 62325, + "Label": "81322-62325 via Conventional from 81325 -> 81326", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81325, + "TargetID": 81326, + "Directional": true + }] + }, { + "ID": 17336, + "SourceStructureID": 81331, + "TargetStructureID": 62325, + "Label": "81331-62325 via Conventional from 81332 -> 81333", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81332, + "TargetID": 81333, + "Directional": true + }] + }, { + "ID": 17337, + "SourceStructureID": 81393, + "TargetStructureID": 61853, + "Label": "81393-61853 via Conventional from 81394 -> 81395", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81394, + "TargetID": 81395, + "Directional": true + }] + }, { + "ID": 17338, + "SourceStructureID": 81399, + "TargetStructureID": 61853, + "Label": "81399-61853 via Conventional from 81400 -> 81401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81400, + "TargetID": 81401, + "Directional": true + }] + }, { + "ID": 17339, + "SourceStructureID": 81402, + "TargetStructureID": 61853, + "Label": "81402-61853 via Conventional from 81403 -> 81404", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81403, + "TargetID": 81404, + "Directional": true + }] + }, { + "ID": 17340, + "SourceStructureID": 81405, + "TargetStructureID": 62325, + "Label": "81405-62325 via Conventional from 81420 -> 81421", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81420, + "TargetID": 81421, + "Directional": true + }] + }, { + "ID": 17341, + "SourceStructureID": 81407, + "TargetStructureID": 62325, + "Label": "81407-62325 via Conventional from 81410 -> 81411", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81410, + "TargetID": 81411, + "Directional": true + }] + }, { + "ID": 17342, + "SourceStructureID": 81433, + "TargetStructureID": 81430, + "Label": "81433-81430 via Conventional from 81434 -> 81435", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81434, + "TargetID": 81435, + "Directional": true + }] + }, { + "ID": 17343, + "SourceStructureID": 81437, + "TargetStructureID": 61853, + "Label": "81437-61853 via Conventional from 81438 -> 81439", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81438, + "TargetID": 81439, + "Directional": true + }] + }, { + "ID": 17344, + "SourceStructureID": 81440, + "TargetStructureID": 61853, + "Label": "81440-61853 via Conventional from 81441 -> 81442", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81441, + "TargetID": 81442, + "Directional": true + }] + }, { + "ID": 17345, + "SourceStructureID": 81454, + "TargetStructureID": 485, + "Label": "81454-485 via Conventional from 81456 -> 81458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81456, + "TargetID": 81458, + "Directional": true + }] + }, { + "ID": 17346, + "SourceStructureID": 81454, + "TargetStructureID": 61960, + "Label": "81454-61960 via Conventional from 81455 -> 81457", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81455, + "TargetID": 81457, + "Directional": true + }] + }, { + "ID": 17347, + "SourceStructureID": 81454, + "TargetStructureID": 81459, + "Label": "81454-81459 via Conventional from 81462 -> 81463", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81462, + "TargetID": 81463, + "Directional": true + }] + }, { + "ID": 17348, + "SourceStructureID": 81459, + "TargetStructureID": 485, + "Label": "81459-485 via Conventional from 81460 -> 81461", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81460, + "TargetID": 81461, + "Directional": true + }] + }, { + "ID": 17349, + "SourceStructureID": 81472, + "TargetStructureID": 61960, + "Label": "81472-61960 via Conventional from 81473 -> 81474", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81473, + "TargetID": 81474, + "Directional": true + }] + }, { + "ID": 17350, + "SourceStructureID": 81476, + "TargetStructureID": 66768, + "Label": "81476-66768 via Conventional from 81477 -> 81475", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81477, + "TargetID": 81475, + "Directional": true + }] + }, { + "ID": 17351, + "SourceStructureID": 81489, + "TargetStructureID": 483, + "Label": "81489-483 via Conventional from 81490 -> 81491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81490, + "TargetID": 81491, + "Directional": true + }] + }, { + "ID": 17352, + "SourceStructureID": 81494, + "TargetStructureID": 483, + "Label": "81494-483 via Conventional from 81495 -> 81496", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81495, + "TargetID": 81496, + "Directional": true + }] + }, { + "ID": 17353, + "SourceStructureID": 81510, + "TargetStructureID": 165, + "Label": "81510-165 via Conventional from 81511 -> 21710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81511, + "TargetID": 21710, + "Directional": true + }] + }, { + "ID": 17354, + "SourceStructureID": 81528, + "TargetStructureID": 5284, + "Label": "81528-5284 via Conventional from 81529 -> 81527", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81529, + "TargetID": 81527, + "Directional": true + }] + }, { + "ID": 17355, + "SourceStructureID": 81532, + "TargetStructureID": 909, + "Label": "81532-909 via Conventional from 81536 -> 53806", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81536, + "TargetID": 53806, + "Directional": true + }] + }, { + "ID": 17356, + "SourceStructureID": 81532, + "TargetStructureID": 5284, + "Label": "81532-5284 via Conventional from 81535 -> 81531", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81535, + "TargetID": 81531, + "Directional": true + }] + }, { + "ID": 17357, + "SourceStructureID": 81533, + "TargetStructureID": 5284, + "Label": "81533-5284 via Conventional from 81534 -> 81530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81534, + "TargetID": 81530, + "Directional": true + }] + }, { + "ID": 17358, + "SourceStructureID": 81544, + "TargetStructureID": 16026, + "Label": "81544-16026 via Conventional from 81546 -> 25483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81546, + "TargetID": 25483, + "Directional": true + }] + }, { + "ID": 17359, + "SourceStructureID": 81544, + "TargetStructureID": 67045, + "Label": "81544-67045 via Conventional from 81545 -> 81543", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81545, + "TargetID": 81543, + "Directional": true + }] + }, { + "ID": 17360, + "SourceStructureID": 81552, + "TargetStructureID": 67045, + "Label": "81552-67045 via Conventional from 81553 -> 81551", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81553, + "TargetID": 81551, + "Directional": true + }] + }, { + "ID": 17361, + "SourceStructureID": 81555, + "TargetStructureID": 67045, + "Label": "81555-67045 via Conventional from 81556 -> 81554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81556, + "TargetID": 81554, + "Directional": true + }] + }, { + "ID": 17362, + "SourceStructureID": 81559, + "TargetStructureID": 5530, + "Label": "81559-5530 via Conventional from 81560 -> 81561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81560, + "TargetID": 81561, + "Directional": true + }] + }, { + "ID": 17363, + "SourceStructureID": 81566, + "TargetStructureID": 5530, + "Label": "81566-5530 via Conventional from 81580 -> 54065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81580, + "TargetID": 54065, + "Directional": true + }] + }, { + "ID": 17364, + "SourceStructureID": 81569, + "TargetStructureID": 5530, + "Label": "81569-5530 via Conventional from 81570 -> 54070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81570, + "TargetID": 54070, + "Directional": true + }] + }, { + "ID": 17365, + "SourceStructureID": 81584, + "TargetStructureID": 5530, + "Label": "81584-5530 via Conventional from 81592 -> 54068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81592, + "TargetID": 54068, + "Directional": true + }] + }, { + "ID": 17366, + "SourceStructureID": 81605, + "TargetStructureID": 81607, + "Label": "81605-81607 via Ribbon Synapse from 81606 -> 81608", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81606, + "TargetID": 81608, + "Directional": true + }] + }, { + "ID": 17367, + "SourceStructureID": 81612, + "TargetStructureID": 5530, + "Label": "81612-5530 via Conventional from 81613 -> 81614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81613, + "TargetID": 81614, + "Directional": true + }] + }, { + "ID": 17368, + "SourceStructureID": 81615, + "TargetStructureID": 5530, + "Label": "81615-5530 via Conventional from 81616 -> 81617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81616, + "TargetID": 81617, + "Directional": true + }] + }, { + "ID": 17369, + "SourceStructureID": 81615, + "TargetStructureID": 133891, + "Label": "81615-133891 via Conventional from 133901 -> 133900", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133901, + "TargetID": 133900, + "Directional": true + }] + }, { + "ID": 17370, + "SourceStructureID": 81622, + "TargetStructureID": 5530, + "Label": "81622-5530 via Conventional from 81623 -> 81624", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81623, + "TargetID": 81624, + "Directional": true + }] + }, { + "ID": 17371, + "SourceStructureID": 81629, + "TargetStructureID": 5530, + "Label": "81629-5530 via Conventional from 81630 -> 81631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81630, + "TargetID": 81631, + "Directional": true + }] + }, { + "ID": 17372, + "SourceStructureID": 81633, + "TargetStructureID": 5530, + "Label": "81633-5530 via Conventional from 81634 -> 81635", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81634, + "TargetID": 81635, + "Directional": true + }] + }, { + "ID": 17373, + "SourceStructureID": 81637, + "TargetStructureID": 5530, + "Label": "81637-5530 via Conventional from 81638 -> 81639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81638, + "TargetID": 81639, + "Directional": true + }] + }, { + "ID": 17374, + "SourceStructureID": 81640, + "TargetStructureID": 5530, + "Label": "81640-5530 via Conventional from 81641 -> 52533", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81641, + "TargetID": 52533, + "Directional": true + }] + }, { + "ID": 17375, + "SourceStructureID": 81649, + "TargetStructureID": 5530, + "Label": "81649-5530 via Conventional from 81654 -> 81655", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81654, + "TargetID": 81655, + "Directional": true + }] + }, { + "ID": 17376, + "SourceStructureID": 81651, + "TargetStructureID": 61960, + "Label": "81651-61960 via Conventional from 81652 -> 81653", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81652, + "TargetID": 81653, + "Directional": true + }] + }, { + "ID": 17377, + "SourceStructureID": 81661, + "TargetStructureID": 5530, + "Label": "81661-5530 via Conventional from 81668 -> 81669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81668, + "TargetID": 81669, + "Directional": true + }] + }, { + "ID": 17378, + "SourceStructureID": 81667, + "TargetStructureID": 5649, + "Label": "81667-5649 via Conventional from 81694 -> 81696, 81719 -> 81729, 108138 -> 108139", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81694, + "TargetID": 81696, + "Directional": true + }, { + "SourceID": 81719, + "TargetID": 81729, + "Directional": true + }, { + "SourceID": 108138, + "TargetID": 108139, + "Directional": true + }] + }, { + "ID": 17379, + "SourceStructureID": 81667, + "TargetStructureID": 81740, + "Label": "81667-81740 via Conventional from 81739 -> 81741", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81739, + "TargetID": 81741, + "Directional": true + }] + }, { + "ID": 17380, + "SourceStructureID": 81667, + "TargetStructureID": 81753, + "Label": "81667-81753 via Conventional from 81779 -> 81781", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81779, + "TargetID": 81781, + "Directional": true + }] + }, { + "ID": 17381, + "SourceStructureID": 81667, + "TargetStructureID": 104680, + "Label": "81667-104680 via Conventional from 104686 -> 104685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104686, + "TargetID": 104685, + "Directional": true + }] + }, { + "ID": 17382, + "SourceStructureID": 81674, + "TargetStructureID": 400, + "Label": "81674-400 via Conventional from 81675 -> 81676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81675, + "TargetID": 81676, + "Directional": true + }] + }, { + "ID": 17383, + "SourceStructureID": 81685, + "TargetStructureID": 61960, + "Label": "81685-61960 via Conventional from 81686 -> 81687", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81686, + "TargetID": 81687, + "Directional": true + }] + }, { + "ID": 17384, + "SourceStructureID": 81690, + "TargetStructureID": 81667, + "Label": "81690-81667 via Conventional from 81693 -> 81689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81693, + "TargetID": 81689, + "Directional": true + }] + }, { + "ID": 17385, + "SourceStructureID": 81691, + "TargetStructureID": 81667, + "Label": "81691-81667 via Conventional from 81692 -> 81688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81692, + "TargetID": 81688, + "Directional": true + }] + }, { + "ID": 17386, + "SourceStructureID": 81701, + "TargetStructureID": 81667, + "Label": "81701-81667 via Conventional from 81702 -> 81700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81702, + "TargetID": 81700, + "Directional": true + }] + }, { + "ID": 17387, + "SourceStructureID": 81704, + "TargetStructureID": 81667, + "Label": "81704-81667 via Conventional from 81705 -> 81703", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81705, + "TargetID": 81703, + "Directional": true + }] + }, { + "ID": 17388, + "SourceStructureID": 81708, + "TargetStructureID": 81667, + "Label": "81708-81667 via Conventional from 81709 -> 81707", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81709, + "TargetID": 81707, + "Directional": true + }] + }, { + "ID": 17389, + "SourceStructureID": 81731, + "TargetStructureID": 81667, + "Label": "81731-81667 via Conventional from 81732 -> 81730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81732, + "TargetID": 81730, + "Directional": true + }] + }, { + "ID": 17390, + "SourceStructureID": 81735, + "TargetStructureID": 81667, + "Label": "81735-81667 via Conventional from 81736 -> 81733", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81736, + "TargetID": 81733, + "Directional": true + }] + }, { + "ID": 17391, + "SourceStructureID": 81737, + "TargetStructureID": 81667, + "Label": "81737-81667 via Conventional from 81738 -> 81734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81738, + "TargetID": 81734, + "Directional": true + }] + }, { + "ID": 17392, + "SourceStructureID": 81743, + "TargetStructureID": 81667, + "Label": "81743-81667 via Conventional from 81744 -> 81742", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81744, + "TargetID": 81742, + "Directional": true + }] + }, { + "ID": 17393, + "SourceStructureID": 81753, + "TargetStructureID": 81667, + "Label": "81753-81667 via Ribbon Synapse from 81754 -> 81755", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81754, + "TargetID": 81755, + "Directional": true + }] + }, { + "ID": 17394, + "SourceStructureID": 81758, + "TargetStructureID": 81667, + "Label": "81758-81667 via Ribbon Synapse from 81759 -> 81757", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 81759, + "TargetID": 81757, + "Directional": true + }] + }, { + "ID": 17395, + "SourceStructureID": 81763, + "TargetStructureID": 81667, + "Label": "81763-81667 via Conventional from 81764 -> 81762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81764, + "TargetID": 81762, + "Directional": true + }] + }, { + "ID": 17396, + "SourceStructureID": 81768, + "TargetStructureID": 81667, + "Label": "81768-81667 via Conventional from 81769 -> 81767", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81769, + "TargetID": 81767, + "Directional": true + }] + }, { + "ID": 17397, + "SourceStructureID": 81783, + "TargetStructureID": 81667, + "Label": "81783-81667 via Conventional from 81784 -> 81785", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81784, + "TargetID": 81785, + "Directional": true + }] + }, { + "ID": 17398, + "SourceStructureID": 81788, + "TargetStructureID": 81667, + "Label": "81788-81667 via Conventional from 81789 -> 81787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81789, + "TargetID": 81787, + "Directional": true + }] + }, { + "ID": 17399, + "SourceStructureID": 81799, + "TargetStructureID": 5562, + "Label": "81799-5562 via Conventional from 81816 -> 77218, 81837 -> 63066, 81842 -> 31063", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81816, + "TargetID": 77218, + "Directional": true + }, { + "SourceID": 81837, + "TargetID": 63066, + "Directional": true + }, { + "SourceID": 81842, + "TargetID": 31063, + "Directional": true + }] + }, { + "ID": 17400, + "SourceStructureID": 81799, + "TargetStructureID": 81801, + "Label": "81799-81801 via Conventional from 81800 -> 81802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81800, + "TargetID": 81802, + "Directional": true + }] + }, { + "ID": 17401, + "SourceStructureID": 81799, + "TargetStructureID": 81820, + "Label": "81799-81820 via Conventional from 81818 -> 81821", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81818, + "TargetID": 81821, + "Directional": true + }] + }, { + "ID": 17402, + "SourceStructureID": 81799, + "TargetStructureID": 81822, + "Label": "81799-81822 via Conventional from 81819 -> 81823", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81819, + "TargetID": 81823, + "Directional": true + }] + }, { + "ID": 17403, + "SourceStructureID": 81804, + "TargetStructureID": 81799, + "Label": "81804-81799 via Conventional from 81805 -> 81803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81805, + "TargetID": 81803, + "Directional": true + }] + }, { + "ID": 17404, + "SourceStructureID": 81825, + "TargetStructureID": 81799, + "Label": "81825-81799 via Conventional from 81826 -> 81824", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81826, + "TargetID": 81824, + "Directional": true + }] + }, { + "ID": 17405, + "SourceStructureID": 81831, + "TargetStructureID": 81799, + "Label": "81831-81799 via Conventional from 81833 -> 81829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81833, + "TargetID": 81829, + "Directional": true + }] + }, { + "ID": 17406, + "SourceStructureID": 81834, + "TargetStructureID": 81799, + "Label": "81834-81799 via Conventional from 81836 -> 81835", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81836, + "TargetID": 81835, + "Directional": true + }] + }, { + "ID": 17407, + "SourceStructureID": 81839, + "TargetStructureID": 81799, + "Label": "81839-81799 via Conventional from 81840 -> 81838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81840, + "TargetID": 81838, + "Directional": true + }] + }, { + "ID": 17408, + "SourceStructureID": 81872, + "TargetStructureID": 5530, + "Label": "81872-5530 via Conventional from 81873 -> 81874", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81873, + "TargetID": 81874, + "Directional": true + }] + }, { + "ID": 17409, + "SourceStructureID": 81882, + "TargetStructureID": 66401, + "Label": "81882-66401 via Conventional from 81883 -> 81881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81883, + "TargetID": 81881, + "Directional": true + }] + }, { + "ID": 17410, + "SourceStructureID": 81887, + "TargetStructureID": 5530, + "Label": "81887-5530 via Conventional from 81888 -> 54072", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81888, + "TargetID": 54072, + "Directional": true + }] + }, { + "ID": 17411, + "SourceStructureID": 81916, + "TargetStructureID": 168, + "Label": "81916-168 via Conventional from 81963 -> 81962", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81963, + "TargetID": 81962, + "Directional": true + }] + }, { + "ID": 17412, + "SourceStructureID": 81951, + "TargetStructureID": 168, + "Label": "81951-168 via Conventional from 81954 -> 81955", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81954, + "TargetID": 81955, + "Directional": true + }] + }, { + "ID": 17413, + "SourceStructureID": 81974, + "TargetStructureID": 81975, + "Label": "81974-81975 via Conventional from 81976 -> 81977", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81976, + "TargetID": 81977, + "Directional": true + }] + }, { + "ID": 17414, + "SourceStructureID": 81985, + "TargetStructureID": 61868, + "Label": "81985-61868 via Conventional from 81986 -> 81987", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81986, + "TargetID": 81987, + "Directional": true + }] + }, { + "ID": 17415, + "SourceStructureID": 81996, + "TargetStructureID": 168, + "Label": "81996-168 via Conventional from 81997 -> 4284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 81997, + "TargetID": 4284, + "Directional": true + }] + }, { + "ID": 17416, + "SourceStructureID": 82006, + "TargetStructureID": 168, + "Label": "82006-168 via Conventional from 82007 -> 82008", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82007, + "TargetID": 82008, + "Directional": true + }] + }, { + "ID": 17417, + "SourceStructureID": 82021, + "TargetStructureID": 168, + "Label": "82021-168 via Conventional from 82022 -> 33419", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82022, + "TargetID": 33419, + "Directional": true + }] + }, { + "ID": 17418, + "SourceStructureID": 82025, + "TargetStructureID": 168, + "Label": "82025-168 via Conventional from 82026 -> 4238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82026, + "TargetID": 4238, + "Directional": true + }] + }, { + "ID": 17419, + "SourceStructureID": 82029, + "TargetStructureID": 168, + "Label": "82029-168 via Conventional from 82030 -> 82033, 82031 -> 82032", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82030, + "TargetID": 82033, + "Directional": true + }, { + "SourceID": 82031, + "TargetID": 82032, + "Directional": true + }] + }, { + "ID": 17420, + "SourceStructureID": 82034, + "TargetStructureID": 168, + "Label": "82034-168 via Conventional from 82035 -> 4232, 112216 -> 4302", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82035, + "TargetID": 4232, + "Directional": true + }, { + "SourceID": 112216, + "TargetID": 4302, + "Directional": true + }] + }, { + "ID": 17421, + "SourceStructureID": 82034, + "TargetStructureID": 112211, + "Label": "82034-112211 via Conventional from 112214 -> 112215", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112214, + "TargetID": 112215, + "Directional": true + }] + }, { + "ID": 17422, + "SourceStructureID": 82050, + "TargetStructureID": 5530, + "Label": "82050-5530 via Conventional from 82051 -> 82052", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82051, + "TargetID": 82052, + "Directional": true + }] + }, { + "ID": 17423, + "SourceStructureID": 82057, + "TargetStructureID": 5530, + "Label": "82057-5530 via Conventional from 82058 -> 54061", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82058, + "TargetID": 54061, + "Directional": true + }] + }, { + "ID": 17424, + "SourceStructureID": 82067, + "TargetStructureID": 5530, + "Label": "82067-5530 via Conventional from 82068 -> 82069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82068, + "TargetID": 82069, + "Directional": true + }] + }, { + "ID": 17425, + "SourceStructureID": 82077, + "TargetStructureID": 5530, + "Label": "82077-5530 via Conventional from 82078 -> 82079", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82078, + "TargetID": 82079, + "Directional": true + }] + }, { + "ID": 17426, + "SourceStructureID": 82097, + "TargetStructureID": 82098, + "Label": "82097-82098 via Conventional from 82099 -> 82100", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82099, + "TargetID": 82100, + "Directional": true + }] + }, { + "ID": 17427, + "SourceStructureID": 82130, + "TargetStructureID": 5410, + "Label": "82130-5410 via Conventional from 82131 -> 82129", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82131, + "TargetID": 82129, + "Directional": true + }] + }, { + "ID": 17428, + "SourceStructureID": 82143, + "TargetStructureID": 82149, + "Label": "82143-82149 via Conventional from 82148 -> 82150", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82148, + "TargetID": 82150, + "Directional": true + }] + }, { + "ID": 17429, + "SourceStructureID": 82164, + "TargetStructureID": 5410, + "Label": "82164-5410 via Conventional from 82165 -> 82163", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82165, + "TargetID": 82163, + "Directional": true + }] + }, { + "ID": 17430, + "SourceStructureID": 82172, + "TargetStructureID": 82177, + "Label": "82172-82177 via Conventional from 82175 -> 82179", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82175, + "TargetID": 82179, + "Directional": true + }] + }, { + "ID": 17431, + "SourceStructureID": 82172, + "TargetStructureID": 82181, + "Label": "82172-82181 via Conventional from 82173 -> 82182", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82173, + "TargetID": 82182, + "Directional": true + }] + }, { + "ID": 17432, + "SourceStructureID": 82252, + "TargetStructureID": 6047, + "Label": "82252-6047 via Conventional from 82253 -> 19627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82253, + "TargetID": 19627, + "Directional": true + }] + }, { + "ID": 17433, + "SourceStructureID": 82271, + "TargetStructureID": 593, + "Label": "82271-593 via Conventional from 82279 -> 68066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82279, + "TargetID": 68066, + "Directional": true + }] + }, { + "ID": 17434, + "SourceStructureID": 82271, + "TargetStructureID": 8588, + "Label": "82271-8588 via Conventional from 82274 -> 82275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82274, + "TargetID": 82275, + "Directional": true + }] + }, { + "ID": 17435, + "SourceStructureID": 82271, + "TargetStructureID": 68393, + "Label": "82271-68393 via Conventional from 82273 -> 82220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82273, + "TargetID": 82220, + "Directional": true + }] + }, { + "ID": 17436, + "SourceStructureID": 82271, + "TargetStructureID": 80563, + "Label": "82271-80563 via Conventional from 82272 -> 80565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82272, + "TargetID": 80565, + "Directional": true + }] + }, { + "ID": 17437, + "SourceStructureID": 82289, + "TargetStructureID": 68238, + "Label": "82289-68238 via Conventional from 82290 -> 82288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82290, + "TargetID": 82288, + "Directional": true + }] + }, { + "ID": 17438, + "SourceStructureID": 82305, + "TargetStructureID": 16026, + "Label": "82305-16026 via Conventional from 82328 -> 25663, 82332 -> 25492", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82328, + "TargetID": 25663, + "Directional": true + }, { + "SourceID": 82332, + "TargetID": 25492, + "Directional": true + }] + }, { + "ID": 17439, + "SourceStructureID": 82305, + "TargetStructureID": 31161, + "Label": "82305-31161 via Conventional from 82309 -> 31248", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82309, + "TargetID": 31248, + "Directional": true + }] + }, { + "ID": 17440, + "SourceStructureID": 82305, + "TargetStructureID": 66888, + "Label": "82305-66888 via Conventional from 82320 -> 68221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82320, + "TargetID": 68221, + "Directional": true + }] + }, { + "ID": 17441, + "SourceStructureID": 82305, + "TargetStructureID": 82318, + "Label": "82305-82318 via Conventional from 82317 -> 82319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82317, + "TargetID": 82319, + "Directional": true + }] + }, { + "ID": 17442, + "SourceStructureID": 82307, + "TargetStructureID": 82305, + "Label": "82307-82305 via Conventional from 82308 -> 82306", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82308, + "TargetID": 82306, + "Directional": true + }] + }, { + "ID": 17443, + "SourceStructureID": 82343, + "TargetStructureID": 593, + "Label": "82343-593 via Conventional from 82344 -> 82345", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82344, + "TargetID": 82345, + "Directional": true + }] + }, { + "ID": 17444, + "SourceStructureID": 82353, + "TargetStructureID": 390, + "Label": "82353-390 via Ribbon Synapse from 121983 -> 121984", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121983, + "TargetID": 121984, + "Directional": true + }] + }, { + "ID": 17445, + "SourceStructureID": 82396, + "TargetStructureID": 65375, + "Label": "82396-65375 via Conventional from 82397 -> 82398", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82397, + "TargetID": 82398, + "Directional": true + }] + }, { + "ID": 17446, + "SourceStructureID": 82430, + "TargetStructureID": 67182, + "Label": "82430-67182 via Ribbon Synapse from 82865 -> 82866", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82865, + "TargetID": 82866, + "Directional": true + }] + }, { + "ID": 17447, + "SourceStructureID": 82430, + "TargetStructureID": 67529, + "Label": "82430-67529 via Ribbon Synapse from 82865 -> 82867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82865, + "TargetID": 82867, + "Directional": true + }] + }, { + "ID": 17448, + "SourceStructureID": 82430, + "TargetStructureID": 82868, + "Label": "82430-82868 via Ribbon Synapse from 82865 -> 82869", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82865, + "TargetID": 82869, + "Directional": true + }] + }, { + "ID": 17449, + "SourceStructureID": 82569, + "TargetStructureID": 5531, + "Label": "82569-5531 via Conventional from 105217 -> 105218", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105217, + "TargetID": 105218, + "Directional": true + }] + }, { + "ID": 17450, + "SourceStructureID": 82622, + "TargetStructureID": 6115, + "Label": "82622-6115 via Conventional from 82623 -> 82624", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82623, + "TargetID": 82624, + "Directional": true + }] + }, { + "ID": 17451, + "SourceStructureID": 82634, + "TargetStructureID": 5528, + "Label": "82634-5528 via Conventional from 94399 -> 94400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94399, + "TargetID": 94400, + "Directional": true + }] + }, { + "ID": 17452, + "SourceStructureID": 82643, + "TargetStructureID": 5528, + "Label": "82643-5528 via Conventional from 94405 -> 94406", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94405, + "TargetID": 94406, + "Directional": true + }] + }, { + "ID": 17453, + "SourceStructureID": 82644, + "TargetStructureID": 16087, + "Label": "82644-16087 via Conventional from 82649 -> 82650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82649, + "TargetID": 82650, + "Directional": true + }] + }, { + "ID": 17454, + "SourceStructureID": 82653, + "TargetStructureID": 6115, + "Label": "82653-6115 via Conventional from 82654 -> 82655", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82654, + "TargetID": 82655, + "Directional": true + }] + }, { + "ID": 17455, + "SourceStructureID": 82665, + "TargetStructureID": 6115, + "Label": "82665-6115 via Conventional from 82666 -> 82663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82666, + "TargetID": 82663, + "Directional": true + }] + }, { + "ID": 17456, + "SourceStructureID": 82677, + "TargetStructureID": 83635, + "Label": "82677-83635 via Ribbon Synapse from 83634 -> 83658", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83634, + "TargetID": 83658, + "Directional": true + }] + }, { + "ID": 17457, + "SourceStructureID": 82677, + "TargetStructureID": 83638, + "Label": "82677-83638 via Ribbon Synapse from 83642 -> 83641", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83642, + "TargetID": 83641, + "Directional": true + }] + }, { + "ID": 17458, + "SourceStructureID": 82677, + "TargetStructureID": 83659, + "Label": "82677-83659 via Ribbon Synapse from 83634 -> 83660", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83634, + "TargetID": 83660, + "Directional": true + }] + }, { + "ID": 17459, + "SourceStructureID": 82677, + "TargetStructureID": 83668, + "Label": "82677-83668 via BC Conventional Synapse from 83671 -> 83669", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83671, + "TargetID": 83669, + "Directional": true + }] + }, { + "ID": 17460, + "SourceStructureID": 82677, + "TargetStructureID": 83691, + "Label": "82677-83691 via Ribbon Synapse from 83677 -> 83692", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83677, + "TargetID": 83692, + "Directional": true + }] + }, { + "ID": 17461, + "SourceStructureID": 82677, + "TargetStructureID": 83712, + "Label": "82677-83712 via Ribbon Synapse from 83701 -> 83713", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83701, + "TargetID": 83713, + "Directional": true + }] + }, { + "ID": 17462, + "SourceStructureID": 82677, + "TargetStructureID": 83725, + "Label": "82677-83725 via Ribbon Synapse from 83724 -> 83726", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83724, + "TargetID": 83726, + "Directional": true + }] + }, { + "ID": 17463, + "SourceStructureID": 82677, + "TargetStructureID": 83733, + "Label": "82677-83733 via Ribbon Synapse from 83732 -> 83737", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83732, + "TargetID": 83737, + "Directional": true + }] + }, { + "ID": 17464, + "SourceStructureID": 82677, + "TargetStructureID": 83735, + "Label": "82677-83735 via Ribbon Synapse from 83732 -> 83738", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83732, + "TargetID": 83738, + "Directional": true + }] + }, { + "ID": 17465, + "SourceStructureID": 82677, + "TargetStructureID": 83739, + "Label": "82677-83739 via Ribbon Synapse from 83732 -> 83740", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83732, + "TargetID": 83740, + "Directional": true + }] + }, { + "ID": 17466, + "SourceStructureID": 82677, + "TargetStructureID": 83746, + "Label": "82677-83746 via Ribbon Synapse from 83745 -> 83751", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83745, + "TargetID": 83751, + "Directional": true + }] + }, { + "ID": 17467, + "SourceStructureID": 82677, + "TargetStructureID": 83747, + "Label": "82677-83747 via Ribbon Synapse from 83745 -> 83750", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83745, + "TargetID": 83750, + "Directional": true + }] + }, { + "ID": 17468, + "SourceStructureID": 82677, + "TargetStructureID": 83767, + "Label": "82677-83767 via Ribbon Synapse from 83766 -> 83770", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83766, + "TargetID": 83770, + "Directional": true + }] + }, { + "ID": 17469, + "SourceStructureID": 82677, + "TargetStructureID": 83793, + "Label": "82677-83793 via Ribbon Synapse from 83792 -> 83796", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83792, + "TargetID": 83796, + "Directional": true + }] + }, { + "ID": 17470, + "SourceStructureID": 82677, + "TargetStructureID": 83798, + "Label": "82677-83798 via Ribbon Synapse from 83792 -> 83799", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83792, + "TargetID": 83799, + "Directional": true + }] + }, { + "ID": 17471, + "SourceStructureID": 82677, + "TargetStructureID": 83808, + "Label": "82677-83808 via Cistern Pre from 83813 -> 83814", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 83813, + "TargetID": 83814, + "Directional": true + }] + }, { + "ID": 17472, + "SourceStructureID": 82677, + "TargetStructureID": 83819, + "Label": "82677-83819 via Ribbon Synapse from 83818 -> 83822", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83818, + "TargetID": 83822, + "Directional": true + }] + }, { + "ID": 17473, + "SourceStructureID": 82677, + "TargetStructureID": 83820, + "Label": "82677-83820 via Ribbon Synapse from 83818 -> 83821", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83818, + "TargetID": 83821, + "Directional": true + }] + }, { + "ID": 17474, + "SourceStructureID": 82677, + "TargetStructureID": 83828, + "Label": "82677-83828 via Ribbon Synapse from 83826 -> 83830", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83826, + "TargetID": 83830, + "Directional": true + }] + }, { + "ID": 17475, + "SourceStructureID": 82677, + "TargetStructureID": 83846, + "Label": "82677-83846 via Ribbon Synapse from 83841 -> 83851", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83841, + "TargetID": 83851, + "Directional": true + }] + }, { + "ID": 17476, + "SourceStructureID": 82677, + "TargetStructureID": 83852, + "Label": "82677-83852 via Ribbon Synapse from 83841 -> 83853", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83841, + "TargetID": 83853, + "Directional": true + }] + }, { + "ID": 17477, + "SourceStructureID": 82677, + "TargetStructureID": 83857, + "Label": "82677-83857 via Ribbon Synapse from 83856 -> 83858", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83856, + "TargetID": 83858, + "Directional": true + }] + }, { + "ID": 17478, + "SourceStructureID": 82677, + "TargetStructureID": 83865, + "Label": "82677-83865 via Ribbon Synapse from 83868 -> 83867", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83868, + "TargetID": 83867, + "Directional": true + }] + }, { + "ID": 17479, + "SourceStructureID": 82677, + "TargetStructureID": 83866, + "Label": "82677-83866 via BC Conventional Synapse from 83877 -> 83872", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83877, + "TargetID": 83872, + "Directional": true + }] + }, { + "ID": 17480, + "SourceStructureID": 82677, + "TargetStructureID": 83870, + "Label": "82677-83870 via Ribbon Synapse from 83864 -> 83871", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83864, + "TargetID": 83871, + "Directional": true + }] + }, { + "ID": 17481, + "SourceStructureID": 82677, + "TargetStructureID": 83873, + "Label": "82677-83873 via Ribbon Synapse from 83864 -> 83874", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83864, + "TargetID": 83874, + "Directional": true + }] + }, { + "ID": 17482, + "SourceStructureID": 82677, + "TargetStructureID": 83882, + "Label": "82677-83882 via Ribbon Synapse from 83885 -> 83888", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83885, + "TargetID": 83888, + "Directional": true + }] + }, { + "ID": 17483, + "SourceStructureID": 82677, + "TargetStructureID": 83988, + "Label": "82677-83988 via BC Conventional Synapse from 83987 -> 83989", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83987, + "TargetID": 83989, + "Directional": true + }] + }, { + "ID": 17484, + "SourceStructureID": 82677, + "TargetStructureID": 83992, + "Label": "82677-83992 via Ribbon Synapse from 83991 -> 83994", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83991, + "TargetID": 83994, + "Directional": true + }] + }, { + "ID": 17485, + "SourceStructureID": 82677, + "TargetStructureID": 83995, + "Label": "82677-83995 via Ribbon Synapse from 83991 -> 83998", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83991, + "TargetID": 83998, + "Directional": true + }] + }, { + "ID": 17486, + "SourceStructureID": 82677, + "TargetStructureID": 83996, + "Label": "82677-83996 via Ribbon Synapse from 83990 -> 84007, 83991 -> 83997", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83990, + "TargetID": 84007, + "Directional": true + }, { + "SourceID": 83991, + "TargetID": 83997, + "Directional": true + }] + }, { + "ID": 17487, + "SourceStructureID": 82677, + "TargetStructureID": 83999, + "Label": "82677-83999 via Ribbon Synapse from 83990 -> 84005", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83990, + "TargetID": 84005, + "Directional": true + }] + }, { + "ID": 17488, + "SourceStructureID": 82677, + "TargetStructureID": 84004, + "Label": "82677-84004 via Ribbon Synapse from 83990 -> 84006", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83990, + "TargetID": 84006, + "Directional": true + }] + }, { + "ID": 17489, + "SourceStructureID": 82677, + "TargetStructureID": 84008, + "Label": "82677-84008 via Ribbon Synapse from 84014 -> 84011", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84014, + "TargetID": 84011, + "Directional": true + }] + }, { + "ID": 17490, + "SourceStructureID": 82677, + "TargetStructureID": 84012, + "Label": "82677-84012 via Ribbon Synapse from 84014 -> 84013", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84014, + "TargetID": 84013, + "Directional": true + }] + }, { + "ID": 17491, + "SourceStructureID": 82677, + "TargetStructureID": 84024, + "Label": "82677-84024 via Ribbon Synapse from 84015 -> 84025, 84015 -> 84026", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84015, + "TargetID": 84025, + "Directional": true + }, { + "SourceID": 84015, + "TargetID": 84026, + "Directional": true + }] + }, { + "ID": 17492, + "SourceStructureID": 82677, + "TargetStructureID": 84052, + "Label": "82677-84052 via BC Conventional Synapse from 84054 -> 84053", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84054, + "TargetID": 84053, + "Directional": true + }] + }, { + "ID": 17493, + "SourceStructureID": 82677, + "TargetStructureID": 84083, + "Label": "82677-84083 via Ribbon Synapse from 84104 -> 84112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84104, + "TargetID": 84112, + "Directional": true + }] + }, { + "ID": 17494, + "SourceStructureID": 82677, + "TargetStructureID": 84088, + "Label": "82677-84088 via Ribbon Synapse from 84056 -> 84092", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84056, + "TargetID": 84092, + "Directional": true + }] + }, { + "ID": 17495, + "SourceStructureID": 82677, + "TargetStructureID": 84095, + "Label": "82677-84095 via BC Conventional Synapse from 84100 -> 84101", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84100, + "TargetID": 84101, + "Directional": true + }] + }, { + "ID": 17496, + "SourceStructureID": 82677, + "TargetStructureID": 84108, + "Label": "82677-84108 via Ribbon Synapse from 84104 -> 84109", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84104, + "TargetID": 84109, + "Directional": true + }] + }, { + "ID": 17497, + "SourceStructureID": 82677, + "TargetStructureID": 84110, + "Label": "82677-84110 via Ribbon Synapse from 84104 -> 84111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84104, + "TargetID": 84111, + "Directional": true + }] + }, { + "ID": 17498, + "SourceStructureID": 82677, + "TargetStructureID": 84125, + "Label": "82677-84125 via Ribbon Synapse from 84124 -> 84126", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84124, + "TargetID": 84126, + "Directional": true + }] + }, { + "ID": 17499, + "SourceStructureID": 82678, + "TargetStructureID": 6115, + "Label": "82678-6115 via Conventional from 82679 -> 82681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82679, + "TargetID": 82681, + "Directional": true + }] + }, { + "ID": 17500, + "SourceStructureID": 82692, + "TargetStructureID": 5530, + "Label": "82692-5530 via Conventional from 134549 -> 134550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134549, + "TargetID": 134550, + "Directional": true + }] + }, { + "ID": 17501, + "SourceStructureID": 82692, + "TargetStructureID": 82677, + "Label": "82692-82677 via Conventional from 83694 -> 83693", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83694, + "TargetID": 83693, + "Directional": true + }] + }, { + "ID": 17502, + "SourceStructureID": 82717, + "TargetStructureID": 67460, + "Label": "82717-67460 via Conventional from 82718 -> 82716", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82718, + "TargetID": 82716, + "Directional": true + }] + }, { + "ID": 17503, + "SourceStructureID": 82723, + "TargetStructureID": 67460, + "Label": "82723-67460 via Conventional from 82725 -> 82726", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82725, + "TargetID": 82726, + "Directional": true + }] + }, { + "ID": 17504, + "SourceStructureID": 82737, + "TargetStructureID": 66828, + "Label": "82737-66828 via Conventional from 82738 -> 82739", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82738, + "TargetID": 82739, + "Directional": true + }] + }, { + "ID": 17505, + "SourceStructureID": 82743, + "TargetStructureID": 82753, + "Label": "82743-82753 via Conventional from 82759 -> 82760", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82759, + "TargetID": 82760, + "Directional": true + }] + }, { + "ID": 17506, + "SourceStructureID": 82743, + "TargetStructureID": 82761, + "Label": "82743-82761 via Conventional from 82762 -> 82763", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82762, + "TargetID": 82763, + "Directional": true + }] + }, { + "ID": 17507, + "SourceStructureID": 82743, + "TargetStructureID": 82766, + "Label": "82743-82766 via Conventional from 82767 -> 82768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82767, + "TargetID": 82768, + "Directional": true + }] + }, { + "ID": 17508, + "SourceStructureID": 82743, + "TargetStructureID": 82796, + "Label": "82743-82796 via Conventional from 82798 -> 82799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82798, + "TargetID": 82799, + "Directional": true + }] + }, { + "ID": 17509, + "SourceStructureID": 82746, + "TargetStructureID": 82743, + "Label": "82746-82743 via Conventional from 82747 -> 82748", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82747, + "TargetID": 82748, + "Directional": true + }] + }, { + "ID": 17510, + "SourceStructureID": 82753, + "TargetStructureID": 6050, + "Label": "82753-6050 via Conventional from 127058 -> 19300", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127058, + "TargetID": 19300, + "Directional": true + }] + }, { + "ID": 17511, + "SourceStructureID": 82792, + "TargetStructureID": 82743, + "Label": "82792-82743 via Conventional from 82793 -> 82794", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82793, + "TargetID": 82794, + "Directional": true + }] + }, { + "ID": 17512, + "SourceStructureID": 82804, + "TargetStructureID": 50449, + "Label": "82804-50449 via Conventional from 82805 -> 50510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82805, + "TargetID": 50510, + "Directional": true + }] + }, { + "ID": 17513, + "SourceStructureID": 82806, + "TargetStructureID": 67305, + "Label": "82806-67305 via Conventional from 82808 -> 82809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82808, + "TargetID": 82809, + "Directional": true + }] + }, { + "ID": 17514, + "SourceStructureID": 82813, + "TargetStructureID": 67305, + "Label": "82813-67305 via Ribbon Synapse from 82815 -> 82816", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82815, + "TargetID": 82816, + "Directional": true + }] + }, { + "ID": 17515, + "SourceStructureID": 82813, + "TargetStructureID": 82817, + "Label": "82813-82817 via Ribbon Synapse from 82815 -> 82818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82815, + "TargetID": 82818, + "Directional": true + }] + }, { + "ID": 17516, + "SourceStructureID": 82813, + "TargetStructureID": 82819, + "Label": "82813-82819 via Ribbon Synapse from 82815 -> 82820", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 82815, + "TargetID": 82820, + "Directional": true + }] + }, { + "ID": 17517, + "SourceStructureID": 82877, + "TargetStructureID": 606, + "Label": "82877-606 via Conventional from 92432 -> 53561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92432, + "TargetID": 53561, + "Directional": true + }] + }, { + "ID": 17518, + "SourceStructureID": 82887, + "TargetStructureID": 5528, + "Label": "82887-5528 via Conventional from 87134 -> 87135, 113997 -> 113996", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87134, + "TargetID": 87135, + "Directional": true + }, { + "SourceID": 113997, + "TargetID": 113996, + "Directional": true + }] + }, { + "ID": 17519, + "SourceStructureID": 82897, + "TargetStructureID": 5528, + "Label": "82897-5528 via Conventional from 94814 -> 94815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94814, + "TargetID": 94815, + "Directional": true + }] + }, { + "ID": 17520, + "SourceStructureID": 82897, + "TargetStructureID": 5531, + "Label": "82897-5531 via Conventional from 114828 -> 114829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114828, + "TargetID": 114829, + "Directional": true + }] + }, { + "ID": 17521, + "SourceStructureID": 82907, + "TargetStructureID": 11042, + "Label": "82907-11042 via Conventional from 82915 -> 82916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82915, + "TargetID": 82916, + "Directional": true + }] + }, { + "ID": 17522, + "SourceStructureID": 82907, + "TargetStructureID": 82912, + "Label": "82907-82912 via Conventional from 82913 -> 82914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82913, + "TargetID": 82914, + "Directional": true + }] + }, { + "ID": 17523, + "SourceStructureID": 82908, + "TargetStructureID": 82907, + "Label": "82908-82907 via Conventional from 82909 -> 82910", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82909, + "TargetID": 82910, + "Directional": true + }] + }, { + "ID": 17524, + "SourceStructureID": 82919, + "TargetStructureID": 67182, + "Label": "82919-67182 via Conventional from 82920 -> 82918", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82920, + "TargetID": 82918, + "Directional": true + }] + }, { + "ID": 17525, + "SourceStructureID": 82922, + "TargetStructureID": 82919, + "Label": "82922-82919 via Conventional from 82923 -> 82921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82923, + "TargetID": 82921, + "Directional": true + }] + }, { + "ID": 17526, + "SourceStructureID": 82974, + "TargetStructureID": 72252, + "Label": "82974-72252 via Conventional from 82975 -> 82989", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82975, + "TargetID": 82989, + "Directional": true + }] + }, { + "ID": 17527, + "SourceStructureID": 82977, + "TargetStructureID": 72252, + "Label": "82977-72252 via Conventional from 82980 -> 82981", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82980, + "TargetID": 82981, + "Directional": true + }] + }, { + "ID": 17528, + "SourceStructureID": 82985, + "TargetStructureID": 39319, + "Label": "82985-39319 via Conventional from 82987 -> 39685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82987, + "TargetID": 39685, + "Directional": true + }] + }, { + "ID": 17529, + "SourceStructureID": 82985, + "TargetStructureID": 72252, + "Label": "82985-72252 via Conventional from 82986 -> 82988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 82986, + "TargetID": 82988, + "Directional": true + }] + }, { + "ID": 17530, + "SourceStructureID": 83056, + "TargetStructureID": 608, + "Label": "83056-608 via Conventional from 83312 -> 77007", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83312, + "TargetID": 77007, + "Directional": true + }] + }, { + "ID": 17531, + "SourceStructureID": 83056, + "TargetStructureID": 67150, + "Label": "83056-67150 via Conventional from 83057 -> 83058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83057, + "TargetID": 83058, + "Directional": true + }] + }, { + "ID": 17532, + "SourceStructureID": 83056, + "TargetStructureID": 83619, + "Label": "83056-83619 via Conventional from 83621 -> 83622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83621, + "TargetID": 83622, + "Directional": true + }] + }, { + "ID": 17533, + "SourceStructureID": 83060, + "TargetStructureID": 5485, + "Label": "83060-5485 via Conventional from 83061 -> 9491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83061, + "TargetID": 9491, + "Directional": true + }] + }, { + "ID": 17534, + "SourceStructureID": 83127, + "TargetStructureID": 6117, + "Label": "83127-6117 via Conventional from 83128 -> 30866", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83128, + "TargetID": 30866, + "Directional": true + }] + }, { + "ID": 17535, + "SourceStructureID": 83147, + "TargetStructureID": 6117, + "Label": "83147-6117 via Conventional from 83151 -> 83152", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83151, + "TargetID": 83152, + "Directional": true + }] + }, { + "ID": 17536, + "SourceStructureID": 83147, + "TargetStructureID": 70466, + "Label": "83147-70466 via Conventional from 83148 -> 83149", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83148, + "TargetID": 83149, + "Directional": true + }] + }, { + "ID": 17537, + "SourceStructureID": 83157, + "TargetStructureID": 6117, + "Label": "83157-6117 via Conventional from 83158 -> 83159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83158, + "TargetID": 83159, + "Directional": true + }] + }, { + "ID": 17538, + "SourceStructureID": 83163, + "TargetStructureID": 83190, + "Label": "83163-83190 via Conventional from 83189 -> 83191", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83189, + "TargetID": 83191, + "Directional": true + }] + }, { + "ID": 17539, + "SourceStructureID": 83165, + "TargetStructureID": 5279, + "Label": "83165-5279 via Conventional from 96481 -> 6336", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96481, + "TargetID": 6336, + "Directional": true + }] + }, { + "ID": 17540, + "SourceStructureID": 83165, + "TargetStructureID": 83194, + "Label": "83165-83194 via Conventional from 83193 -> 83195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83193, + "TargetID": 83195, + "Directional": true + }] + }, { + "ID": 17541, + "SourceStructureID": 83179, + "TargetStructureID": 9769, + "Label": "83179-9769 via Ribbon Synapse from 83180 -> 83181", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 83180, + "TargetID": 83181, + "Directional": true + }] + }, { + "ID": 17542, + "SourceStructureID": 83222, + "TargetStructureID": 6117, + "Label": "83222-6117 via Conventional from 83223 -> 83224", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83223, + "TargetID": 83224, + "Directional": true + }] + }, { + "ID": 17543, + "SourceStructureID": 83238, + "TargetStructureID": 6117, + "Label": "83238-6117 via Conventional from 83239 -> 83240", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83239, + "TargetID": 83240, + "Directional": true + }] + }, { + "ID": 17544, + "SourceStructureID": 83241, + "TargetStructureID": 6117, + "Label": "83241-6117 via Conventional from 83242 -> 49181", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83242, + "TargetID": 49181, + "Directional": true + }] + }, { + "ID": 17545, + "SourceStructureID": 83243, + "TargetStructureID": 6117, + "Label": "83243-6117 via Conventional from 83244 -> 30890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83244, + "TargetID": 30890, + "Directional": true + }] + }, { + "ID": 17546, + "SourceStructureID": 83255, + "TargetStructureID": 6117, + "Label": "83255-6117 via Conventional from 86381 -> 30903", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86381, + "TargetID": 30903, + "Directional": true + }] + }, { + "ID": 17547, + "SourceStructureID": 83257, + "TargetStructureID": 68480, + "Label": "83257-68480 via Conventional from 83258 -> 83259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83258, + "TargetID": 83259, + "Directional": true + }] + }, { + "ID": 17548, + "SourceStructureID": 83260, + "TargetStructureID": 68480, + "Label": "83260-68480 via Conventional from 83261 -> 83262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83261, + "TargetID": 83262, + "Directional": true + }] + }, { + "ID": 17549, + "SourceStructureID": 83266, + "TargetStructureID": 6117, + "Label": "83266-6117 via Conventional from 83269 -> 70492", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83269, + "TargetID": 70492, + "Directional": true + }] + }, { + "ID": 17550, + "SourceStructureID": 83270, + "TargetStructureID": 5279, + "Label": "83270-5279 via Conventional from 83274 -> 25798", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83274, + "TargetID": 25798, + "Directional": true + }] + }, { + "ID": 17551, + "SourceStructureID": 83288, + "TargetStructureID": 6117, + "Label": "83288-6117 via Conventional from 83292 -> 30868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83292, + "TargetID": 30868, + "Directional": true + }] + }, { + "ID": 17552, + "SourceStructureID": 83293, + "TargetStructureID": 6117, + "Label": "83293-6117 via Conventional from 83297 -> 83298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83297, + "TargetID": 83298, + "Directional": true + }] + }, { + "ID": 17553, + "SourceStructureID": 83302, + "TargetStructureID": 5279, + "Label": "83302-5279 via Conventional from 83303 -> 35994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83303, + "TargetID": 35994, + "Directional": true + }] + }, { + "ID": 17554, + "SourceStructureID": 83308, + "TargetStructureID": 5279, + "Label": "83308-5279 via Conventional from 98546 -> 49207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98546, + "TargetID": 49207, + "Directional": true + }] + }, { + "ID": 17555, + "SourceStructureID": 83308, + "TargetStructureID": 67182, + "Label": "83308-67182 via Conventional from 83310 -> 83307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83310, + "TargetID": 83307, + "Directional": true + }] + }, { + "ID": 17556, + "SourceStructureID": 83314, + "TargetStructureID": 67182, + "Label": "83314-67182 via Conventional from 83315 -> 83316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83315, + "TargetID": 83316, + "Directional": true + }] + }, { + "ID": 17557, + "SourceStructureID": 83321, + "TargetStructureID": 67182, + "Label": "83321-67182 via Conventional from 83322 -> 83320", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83322, + "TargetID": 83320, + "Directional": true + }] + }, { + "ID": 17558, + "SourceStructureID": 83360, + "TargetStructureID": 83370, + "Label": "83360-83370 via Conventional from 83366 -> 83371", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83366, + "TargetID": 83371, + "Directional": true + }] + }, { + "ID": 17559, + "SourceStructureID": 83368, + "TargetStructureID": 83360, + "Label": "83368-83360 via Conventional from 83369 -> 83367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83369, + "TargetID": 83367, + "Directional": true + }] + }, { + "ID": 17560, + "SourceStructureID": 83385, + "TargetStructureID": 324, + "Label": "83385-324 via Conventional from 83433 -> 83434", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83433, + "TargetID": 83434, + "Directional": true + }] + }, { + "ID": 17561, + "SourceStructureID": 83386, + "TargetStructureID": 83406, + "Label": "83386-83406 via Conventional from 83407 -> 83408", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83407, + "TargetID": 83408, + "Directional": true + }] + }, { + "ID": 17562, + "SourceStructureID": 83389, + "TargetStructureID": 83386, + "Label": "83389-83386 via Conventional from 83391 -> 83393", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83391, + "TargetID": 83393, + "Directional": true + }] + }, { + "ID": 17563, + "SourceStructureID": 83389, + "TargetStructureID": 83390, + "Label": "83389-83390 via Conventional from 83392 -> 83394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83392, + "TargetID": 83394, + "Directional": true + }] + }, { + "ID": 17564, + "SourceStructureID": 83395, + "TargetStructureID": 83386, + "Label": "83395-83386 via Conventional from 83396 -> 83397", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83396, + "TargetID": 83397, + "Directional": true + }] + }, { + "ID": 17565, + "SourceStructureID": 83409, + "TargetStructureID": 324, + "Label": "83409-324 via Conventional from 83411 -> 83410", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83411, + "TargetID": 83410, + "Directional": true + }] + }, { + "ID": 17566, + "SourceStructureID": 83412, + "TargetStructureID": 324, + "Label": "83412-324 via Conventional from 83414 -> 83413", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83414, + "TargetID": 83413, + "Directional": true + }] + }, { + "ID": 17567, + "SourceStructureID": 83415, + "TargetStructureID": 83386, + "Label": "83415-83386 via Conventional from 83416 -> 83417", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83416, + "TargetID": 83417, + "Directional": true + }] + }, { + "ID": 17568, + "SourceStructureID": 83428, + "TargetStructureID": 324, + "Label": "83428-324 via Conventional from 96949 -> 83427", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96949, + "TargetID": 83427, + "Directional": true + }] + }, { + "ID": 17569, + "SourceStructureID": 83430, + "TargetStructureID": 324, + "Label": "83430-324 via Conventional from 96967 -> 96968", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96967, + "TargetID": 96968, + "Directional": true + }] + }, { + "ID": 17570, + "SourceStructureID": 83449, + "TargetStructureID": 83448, + "Label": "83449-83448 via Conventional from 83450 -> 83451", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83450, + "TargetID": 83451, + "Directional": true + }] + }, { + "ID": 17571, + "SourceStructureID": 83454, + "TargetStructureID": 16087, + "Label": "83454-16087 via Conventional from 83455 -> 83458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83455, + "TargetID": 83458, + "Directional": true + }] + }, { + "ID": 17572, + "SourceStructureID": 83575, + "TargetStructureID": 324, + "Label": "83575-324 via Conventional from 83576 -> 83577", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83576, + "TargetID": 83577, + "Directional": true + }] + }, { + "ID": 17573, + "SourceStructureID": 83580, + "TargetStructureID": 324, + "Label": "83580-324 via Conventional from 83581 -> 83582", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83581, + "TargetID": 83582, + "Directional": true + }] + }, { + "ID": 17574, + "SourceStructureID": 83603, + "TargetStructureID": 66801, + "Label": "83603-66801 via Conventional from 83604 -> 83602", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83604, + "TargetID": 83602, + "Directional": true + }] + }, { + "ID": 17575, + "SourceStructureID": 83625, + "TargetStructureID": 83056, + "Label": "83625-83056 via Conventional from 83626 -> 83624", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83626, + "TargetID": 83624, + "Directional": true + }] + }, { + "ID": 17576, + "SourceStructureID": 83644, + "TargetStructureID": 82677, + "Label": "83644-82677 via Conventional from 83645 -> 83643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83645, + "TargetID": 83643, + "Directional": true + }] + }, { + "ID": 17577, + "SourceStructureID": 83648, + "TargetStructureID": 82677, + "Label": "83648-82677 via Conventional from 83653 -> 83652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83653, + "TargetID": 83652, + "Directional": true + }] + }, { + "ID": 17578, + "SourceStructureID": 83679, + "TargetStructureID": 82677, + "Label": "83679-82677 via Conventional from 83680 -> 83678", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83680, + "TargetID": 83678, + "Directional": true + }] + }, { + "ID": 17579, + "SourceStructureID": 83697, + "TargetStructureID": 82677, + "Label": "83697-82677 via Conventional from 83699 -> 83700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83699, + "TargetID": 83700, + "Directional": true + }] + }, { + "ID": 17580, + "SourceStructureID": 83703, + "TargetStructureID": 82677, + "Label": "83703-82677 via Conventional from 83704 -> 83702", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83704, + "TargetID": 83702, + "Directional": true + }] + }, { + "ID": 17581, + "SourceStructureID": 83706, + "TargetStructureID": 82677, + "Label": "83706-82677 via Conventional from 83707 -> 83705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83707, + "TargetID": 83705, + "Directional": true + }] + }, { + "ID": 17582, + "SourceStructureID": 83708, + "TargetStructureID": 82677, + "Label": "83708-82677 via Conventional from 83709 -> 83710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83709, + "TargetID": 83710, + "Directional": true + }] + }, { + "ID": 17583, + "SourceStructureID": 83714, + "TargetStructureID": 82677, + "Label": "83714-82677 via Conventional from 83720 -> 83719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83720, + "TargetID": 83719, + "Directional": true + }] + }, { + "ID": 17584, + "SourceStructureID": 83721, + "TargetStructureID": 74907, + "Label": "83721-74907 via Conventional from 83730 -> 83731", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83730, + "TargetID": 83731, + "Directional": true + }] + }, { + "ID": 17585, + "SourceStructureID": 83733, + "TargetStructureID": 83735, + "Label": "83733-83735 via Conventional from 83734 -> 83736", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83734, + "TargetID": 83736, + "Directional": true + }] + }, { + "ID": 17586, + "SourceStructureID": 83757, + "TargetStructureID": 74907, + "Label": "83757-74907 via Conventional from 83863 -> 83862, 84609 -> 84610", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83863, + "TargetID": 83862, + "Directional": true + }, { + "SourceID": 84609, + "TargetID": 84610, + "Directional": true + }] + }, { + "ID": 17587, + "SourceStructureID": 83761, + "TargetStructureID": 82677, + "Label": "83761-82677 via Conventional from 83762 -> 83760", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83762, + "TargetID": 83760, + "Directional": true + }] + }, { + "ID": 17588, + "SourceStructureID": 83764, + "TargetStructureID": 82677, + "Label": "83764-82677 via Conventional from 83765 -> 83763", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83765, + "TargetID": 83763, + "Directional": true + }] + }, { + "ID": 17589, + "SourceStructureID": 83767, + "TargetStructureID": 83772, + "Label": "83767-83772 via Conventional from 83771 -> 83773", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83771, + "TargetID": 83773, + "Directional": true + }] + }, { + "ID": 17590, + "SourceStructureID": 83776, + "TargetStructureID": 82677, + "Label": "83776-82677 via Conventional from 83778 -> 83777", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83778, + "TargetID": 83777, + "Directional": true + }] + }, { + "ID": 17591, + "SourceStructureID": 83785, + "TargetStructureID": 82677, + "Label": "83785-82677 via Conventional from 83786 -> 83784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83786, + "TargetID": 83784, + "Directional": true + }] + }, { + "ID": 17592, + "SourceStructureID": 83788, + "TargetStructureID": 6165, + "Label": "83788-6165 via Conventional from 83789 -> 83787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83789, + "TargetID": 83787, + "Directional": true + }] + }, { + "ID": 17593, + "SourceStructureID": 83807, + "TargetStructureID": 74907, + "Label": "83807-74907 via Conventional from 83811 -> 83806", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83811, + "TargetID": 83806, + "Directional": true + }] + }, { + "ID": 17594, + "SourceStructureID": 83823, + "TargetStructureID": 82677, + "Label": "83823-82677 via Conventional from 83824 -> 83825", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83824, + "TargetID": 83825, + "Directional": true + }] + }, { + "ID": 17595, + "SourceStructureID": 83831, + "TargetStructureID": 82677, + "Label": "83831-82677 via Conventional from 83832 -> 83833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83832, + "TargetID": 83833, + "Directional": true + }] + }, { + "ID": 17596, + "SourceStructureID": 83838, + "TargetStructureID": 82677, + "Label": "83838-82677 via Conventional from 83839 -> 83837", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83839, + "TargetID": 83837, + "Directional": true + }] + }, { + "ID": 17597, + "SourceStructureID": 83838, + "TargetStructureID": 83852, + "Label": "83838-83852 via Conventional from 83855 -> 83854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83855, + "TargetID": 83854, + "Directional": true + }] + }, { + "ID": 17598, + "SourceStructureID": 83842, + "TargetStructureID": 82677, + "Label": "83842-82677 via Conventional from 83843 -> 83844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83843, + "TargetID": 83844, + "Directional": true + }] + }, { + "ID": 17599, + "SourceStructureID": 83846, + "TargetStructureID": 82677, + "Label": "83846-82677 via Conventional from 83849 -> 83850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83849, + "TargetID": 83850, + "Directional": true + }] + }, { + "ID": 17600, + "SourceStructureID": 83860, + "TargetStructureID": 82677, + "Label": "83860-82677 via Conventional from 83861 -> 83859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83861, + "TargetID": 83859, + "Directional": true + }] + }, { + "ID": 17601, + "SourceStructureID": 83882, + "TargetStructureID": 82677, + "Label": "83882-82677 via Conventional from 83883 -> 83881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83883, + "TargetID": 83881, + "Directional": true + }] + }, { + "ID": 17602, + "SourceStructureID": 83890, + "TargetStructureID": 82677, + "Label": "83890-82677 via Conventional from 83904 -> 83889", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83904, + "TargetID": 83889, + "Directional": true + }] + }, { + "ID": 17603, + "SourceStructureID": 83892, + "TargetStructureID": 74907, + "Label": "83892-74907 via Conventional from 83893 -> 83891", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83893, + "TargetID": 83891, + "Directional": true + }] + }, { + "ID": 17604, + "SourceStructureID": 83894, + "TargetStructureID": 74907, + "Label": "83894-74907 via Conventional from 83895 -> 83896, 84445 -> 84446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83895, + "TargetID": 83896, + "Directional": true + }, { + "SourceID": 84445, + "TargetID": 84446, + "Directional": true + }] + }, { + "ID": 17605, + "SourceStructureID": 83898, + "TargetStructureID": 74907, + "Label": "83898-74907 via Conventional from 83899 -> 83900", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83899, + "TargetID": 83900, + "Directional": true + }] + }, { + "ID": 17606, + "SourceStructureID": 83901, + "TargetStructureID": 74907, + "Label": "83901-74907 via Conventional from 83902 -> 83903", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83902, + "TargetID": 83903, + "Directional": true + }] + }, { + "ID": 17607, + "SourceStructureID": 83907, + "TargetStructureID": 82677, + "Label": "83907-82677 via Conventional from 83908 -> 83906", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83908, + "TargetID": 83906, + "Directional": true + }] + }, { + "ID": 17608, + "SourceStructureID": 83916, + "TargetStructureID": 5279, + "Label": "83916-5279 via Conventional from 97064 -> 25986", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97064, + "TargetID": 25986, + "Directional": true + }] + }, { + "ID": 17609, + "SourceStructureID": 83916, + "TargetStructureID": 6117, + "Label": "83916-6117 via Conventional from 83918 -> 83917", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83918, + "TargetID": 83917, + "Directional": true + }] + }, { + "ID": 17610, + "SourceStructureID": 83921, + "TargetStructureID": 83916, + "Label": "83921-83916 via Conventional from 83923 -> 83924", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83923, + "TargetID": 83924, + "Directional": true + }] + }, { + "ID": 17611, + "SourceStructureID": 83925, + "TargetStructureID": 6117, + "Label": "83925-6117 via Conventional from 83929 -> 83930", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83929, + "TargetID": 83930, + "Directional": true + }] + }, { + "ID": 17612, + "SourceStructureID": 83931, + "TargetStructureID": 6117, + "Label": "83931-6117 via Conventional from 83932 -> 83933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83932, + "TargetID": 83933, + "Directional": true + }] + }, { + "ID": 17613, + "SourceStructureID": 83941, + "TargetStructureID": 6117, + "Label": "83941-6117 via Conventional from 83942 -> 83943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83942, + "TargetID": 83943, + "Directional": true + }] + }, { + "ID": 17614, + "SourceStructureID": 83949, + "TargetStructureID": 20136, + "Label": "83949-20136 via Conventional from 109035 -> 20144", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109035, + "TargetID": 20144, + "Directional": true + }] + }, { + "ID": 17615, + "SourceStructureID": 83954, + "TargetStructureID": 6117, + "Label": "83954-6117 via Conventional from 83959 -> 83960", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83959, + "TargetID": 83960, + "Directional": true + }] + }, { + "ID": 17616, + "SourceStructureID": 83954, + "TargetStructureID": 20136, + "Label": "83954-20136 via Conventional from 109111 -> 46007", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109111, + "TargetID": 46007, + "Directional": true + }] + }, { + "ID": 17617, + "SourceStructureID": 83965, + "TargetStructureID": 6117, + "Label": "83965-6117 via Conventional from 83966 -> 83967", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83966, + "TargetID": 83967, + "Directional": true + }] + }, { + "ID": 17618, + "SourceStructureID": 83975, + "TargetStructureID": 6117, + "Label": "83975-6117 via Conventional from 84179 -> 84180", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84179, + "TargetID": 84180, + "Directional": true + }] + }, { + "ID": 17619, + "SourceStructureID": 83978, + "TargetStructureID": 6117, + "Label": "83978-6117 via Conventional from 83979 -> 83980", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83979, + "TargetID": 83980, + "Directional": true + }] + }, { + "ID": 17620, + "SourceStructureID": 83981, + "TargetStructureID": 6117, + "Label": "83981-6117 via Conventional from 83982 -> 30872", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 83982, + "TargetID": 30872, + "Directional": true + }] + }, { + "ID": 17621, + "SourceStructureID": 83985, + "TargetStructureID": 6117, + "Label": "83985-6117 via Conventional from 84140 -> 84141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84140, + "TargetID": 84141, + "Directional": true + }] + }, { + "ID": 17622, + "SourceStructureID": 83999, + "TargetStructureID": 84001, + "Label": "83999-84001 via Conventional from 84000 -> 84002", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84000, + "TargetID": 84002, + "Directional": true + }] + }, { + "ID": 17623, + "SourceStructureID": 84008, + "TargetStructureID": 82677, + "Label": "84008-82677 via Conventional from 84009 -> 84010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84009, + "TargetID": 84010, + "Directional": true + }] + }, { + "ID": 17624, + "SourceStructureID": 84018, + "TargetStructureID": 82677, + "Label": "84018-82677 via Conventional from 84019 -> 84017", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84019, + "TargetID": 84017, + "Directional": true + }] + }, { + "ID": 17625, + "SourceStructureID": 84029, + "TargetStructureID": 5534, + "Label": "84029-5534 via Conventional from 84030 -> 34624", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84030, + "TargetID": 34624, + "Directional": true + }] + }, { + "ID": 17626, + "SourceStructureID": 84038, + "TargetStructureID": 82677, + "Label": "84038-82677 via Conventional from 84039 -> 84040", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84039, + "TargetID": 84040, + "Directional": true + }] + }, { + "ID": 17627, + "SourceStructureID": 84041, + "TargetStructureID": 82677, + "Label": "84041-82677 via Conventional from 84044 -> 84045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84044, + "TargetID": 84045, + "Directional": true + }] + }, { + "ID": 17628, + "SourceStructureID": 84058, + "TargetStructureID": 82677, + "Label": "84058-82677 via Conventional from 84059 -> 84057", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84059, + "TargetID": 84057, + "Directional": true + }] + }, { + "ID": 17629, + "SourceStructureID": 84063, + "TargetStructureID": 84061, + "Label": "84063-84061 via Conventional from 84064 -> 84062", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84064, + "TargetID": 84062, + "Directional": true + }] + }, { + "ID": 17630, + "SourceStructureID": 84063, + "TargetStructureID": 84077, + "Label": "84063-84077 via Conventional from 84065 -> 84080, 84066 -> 84081", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84065, + "TargetID": 84080, + "Directional": true + }, { + "SourceID": 84066, + "TargetID": 84081, + "Directional": true + }] + }, { + "ID": 17631, + "SourceStructureID": 84073, + "TargetStructureID": 82677, + "Label": "84073-82677 via Conventional from 84075 -> 84074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84075, + "TargetID": 84074, + "Directional": true + }] + }, { + "ID": 17632, + "SourceStructureID": 84077, + "TargetStructureID": 82677, + "Label": "84077-82677 via Conventional from 84079 -> 84078", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84079, + "TargetID": 84078, + "Directional": true + }] + }, { + "ID": 17633, + "SourceStructureID": 84082, + "TargetStructureID": 84083, + "Label": "84082-84083 via Conventional from 84085 -> 84086", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84085, + "TargetID": 84086, + "Directional": true + }] + }, { + "ID": 17634, + "SourceStructureID": 84083, + "TargetStructureID": 82677, + "Label": "84083-82677 via Conventional from 84084 -> 84087", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84084, + "TargetID": 84087, + "Directional": true + }] + }, { + "ID": 17635, + "SourceStructureID": 84088, + "TargetStructureID": 84090, + "Label": "84088-84090 via Conventional from 84089 -> 84091", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84089, + "TargetID": 84091, + "Directional": true + }] + }, { + "ID": 17636, + "SourceStructureID": 84106, + "TargetStructureID": 82677, + "Label": "84106-82677 via Conventional from 84107 -> 84105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84107, + "TargetID": 84105, + "Directional": true + }] + }, { + "ID": 17637, + "SourceStructureID": 84115, + "TargetStructureID": 82677, + "Label": "84115-82677 via Conventional from 84116 -> 84117", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84116, + "TargetID": 84117, + "Directional": true + }] + }, { + "ID": 17638, + "SourceStructureID": 84118, + "TargetStructureID": 450, + "Label": "84118-450 via Conventional from 123599 -> 123600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123599, + "TargetID": 123600, + "Directional": true + }] + }, { + "ID": 17639, + "SourceStructureID": 84118, + "TargetStructureID": 5468, + "Label": "84118-5468 via Conventional from 123665 -> 48273", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123665, + "TargetID": 48273, + "Directional": true + }] + }, { + "ID": 17640, + "SourceStructureID": 84118, + "TargetStructureID": 5534, + "Label": "84118-5534 via Conventional from 123630 -> 123631, 123638 -> 123637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123630, + "TargetID": 123631, + "Directional": true + }, { + "SourceID": 123638, + "TargetID": 123637, + "Directional": true + }] + }, { + "ID": 17641, + "SourceStructureID": 84118, + "TargetStructureID": 5535, + "Label": "84118-5535 via Conventional from 123624 -> 42269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123624, + "TargetID": 42269, + "Directional": true + }] + }, { + "ID": 17642, + "SourceStructureID": 84118, + "TargetStructureID": 5601, + "Label": "84118-5601 via Conventional from 123652 -> 57495", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123652, + "TargetID": 57495, + "Directional": true + }] + }, { + "ID": 17643, + "SourceStructureID": 84118, + "TargetStructureID": 5637, + "Label": "84118-5637 via Conventional from 123633 -> 123634, 123640 -> 123641", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123633, + "TargetID": 123634, + "Directional": true + }, { + "SourceID": 123640, + "TargetID": 123641, + "Directional": true + }] + }, { + "ID": 17644, + "SourceStructureID": 84118, + "TargetStructureID": 6127, + "Label": "84118-6127 via Conventional from 123608 -> 123609, 123612 -> 123613", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123608, + "TargetID": 123609, + "Directional": true + }, { + "SourceID": 123612, + "TargetID": 123613, + "Directional": true + }] + }, { + "ID": 17645, + "SourceStructureID": 84118, + "TargetStructureID": 6165, + "Label": "84118-6165 via Conventional from 123602 -> 123603", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123602, + "TargetID": 123603, + "Directional": true + }] + }, { + "ID": 17646, + "SourceStructureID": 84118, + "TargetStructureID": 8754, + "Label": "84118-8754 via Conventional from 123653 -> 123654, 123657 -> 123658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123653, + "TargetID": 123654, + "Directional": true + }, { + "SourceID": 123657, + "TargetID": 123658, + "Directional": true + }] + }, { + "ID": 17647, + "SourceStructureID": 84118, + "TargetStructureID": 15976, + "Label": "84118-15976 via Conventional from 123660 -> 123661, 123663 -> 123662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123660, + "TargetID": 123661, + "Directional": true + }, { + "SourceID": 123663, + "TargetID": 123662, + "Directional": true + }] + }, { + "ID": 17648, + "SourceStructureID": 84118, + "TargetStructureID": 32926, + "Label": "84118-32926 via Conventional from 123626 -> 123627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123626, + "TargetID": 123627, + "Directional": true + }] + }, { + "ID": 17649, + "SourceStructureID": 84118, + "TargetStructureID": 43716, + "Label": "84118-43716 via Conventional from 123598 -> 123596, 123644 -> 123645", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123598, + "TargetID": 123596, + "Directional": true + }, { + "SourceID": 123644, + "TargetID": 123645, + "Directional": true + }] + }, { + "ID": 17650, + "SourceStructureID": 84118, + "TargetStructureID": 82677, + "Label": "84118-82677 via Conventional from 84119 -> 84120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84119, + "TargetID": 84120, + "Directional": true + }] + }, { + "ID": 17651, + "SourceStructureID": 84121, + "TargetStructureID": 82677, + "Label": "84121-82677 via Conventional from 84122 -> 84123", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84122, + "TargetID": 84123, + "Directional": true + }] + }, { + "ID": 17652, + "SourceStructureID": 84142, + "TargetStructureID": 6117, + "Label": "84142-6117 via Conventional from 84146 -> 84145", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84146, + "TargetID": 84145, + "Directional": true + }] + }, { + "ID": 17653, + "SourceStructureID": 84142, + "TargetStructureID": 84136, + "Label": "84142-84136 via Conventional from 84143 -> 84144", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84143, + "TargetID": 84144, + "Directional": true + }] + }, { + "ID": 17654, + "SourceStructureID": 84162, + "TargetStructureID": 7024, + "Label": "84162-7024 via Conventional from 135499 -> 135498", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135499, + "TargetID": 135498, + "Directional": true + }] + }, { + "ID": 17655, + "SourceStructureID": 84162, + "TargetStructureID": 84174, + "Label": "84162-84174 via Conventional from 84163 -> 84175", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84163, + "TargetID": 84175, + "Directional": true + }] + }, { + "ID": 17656, + "SourceStructureID": 84181, + "TargetStructureID": 6117, + "Label": "84181-6117 via Conventional from 84182 -> 22387", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84182, + "TargetID": 22387, + "Directional": true + }] + }, { + "ID": 17657, + "SourceStructureID": 84184, + "TargetStructureID": 6117, + "Label": "84184-6117 via Conventional from 84185 -> 22394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84185, + "TargetID": 22394, + "Directional": true + }] + }, { + "ID": 17658, + "SourceStructureID": 84193, + "TargetStructureID": 5279, + "Label": "84193-5279 via Conventional from 97345 -> 28314", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97345, + "TargetID": 28314, + "Directional": true + }] + }, { + "ID": 17659, + "SourceStructureID": 84193, + "TargetStructureID": 6117, + "Label": "84193-6117 via Conventional from 84194 -> 22388", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84194, + "TargetID": 22388, + "Directional": true + }] + }, { + "ID": 17660, + "SourceStructureID": 84193, + "TargetStructureID": 20136, + "Label": "84193-20136 via Conventional from 84195 -> 46010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84195, + "TargetID": 46010, + "Directional": true + }] + }, { + "ID": 17661, + "SourceStructureID": 84201, + "TargetStructureID": 5279, + "Label": "84201-5279 via Conventional from 97333 -> 6356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97333, + "TargetID": 6356, + "Directional": true + }] + }, { + "ID": 17662, + "SourceStructureID": 84207, + "TargetStructureID": 6117, + "Label": "84207-6117 via Conventional from 84208 -> 30877", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84208, + "TargetID": 30877, + "Directional": true + }] + }, { + "ID": 17663, + "SourceStructureID": 84209, + "TargetStructureID": 6117, + "Label": "84209-6117 via Conventional from 84227 -> 30878", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84227, + "TargetID": 30878, + "Directional": true + }] + }, { + "ID": 17664, + "SourceStructureID": 84211, + "TargetStructureID": 6117, + "Label": "84211-6117 via Conventional from 84212 -> 30876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84212, + "TargetID": 30876, + "Directional": true + }] + }, { + "ID": 17665, + "SourceStructureID": 84215, + "TargetStructureID": 6117, + "Label": "84215-6117 via Conventional from 84216 -> 30874", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84216, + "TargetID": 30874, + "Directional": true + }] + }, { + "ID": 17666, + "SourceStructureID": 84218, + "TargetStructureID": 6117, + "Label": "84218-6117 via Conventional from 84219 -> 84220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84219, + "TargetID": 84220, + "Directional": true + }] + }, { + "ID": 17667, + "SourceStructureID": 84224, + "TargetStructureID": 6117, + "Label": "84224-6117 via Conventional from 84225 -> 84226", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84225, + "TargetID": 84226, + "Directional": true + }] + }, { + "ID": 17668, + "SourceStructureID": 84232, + "TargetStructureID": 6117, + "Label": "84232-6117 via Conventional from 84233 -> 30882", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84233, + "TargetID": 30882, + "Directional": true + }] + }, { + "ID": 17669, + "SourceStructureID": 84240, + "TargetStructureID": 6117, + "Label": "84240-6117 via Conventional from 84248 -> 84239", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84248, + "TargetID": 84239, + "Directional": true + }] + }, { + "ID": 17670, + "SourceStructureID": 84254, + "TargetStructureID": 5284, + "Label": "84254-5284 via Conventional from 113461 -> 113459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113461, + "TargetID": 113459, + "Directional": true + }] + }, { + "ID": 17671, + "SourceStructureID": 84254, + "TargetStructureID": 6117, + "Label": "84254-6117 via Conventional from 84255 -> 51532", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84255, + "TargetID": 51532, + "Directional": true + }] + }, { + "ID": 17672, + "SourceStructureID": 84287, + "TargetStructureID": 74907, + "Label": "84287-74907 via Conventional from 84288 -> 84289", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84288, + "TargetID": 84289, + "Directional": true + }] + }, { + "ID": 17673, + "SourceStructureID": 84290, + "TargetStructureID": 74907, + "Label": "84290-74907 via Conventional from 84291 -> 84292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84291, + "TargetID": 84292, + "Directional": true + }] + }, { + "ID": 17674, + "SourceStructureID": 84298, + "TargetStructureID": 74907, + "Label": "84298-74907 via Conventional from 84299 -> 84300", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84299, + "TargetID": 84300, + "Directional": true + }] + }, { + "ID": 17675, + "SourceStructureID": 84304, + "TargetStructureID": 74907, + "Label": "84304-74907 via Conventional from 84305 -> 84306", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84305, + "TargetID": 84306, + "Directional": true + }] + }, { + "ID": 17676, + "SourceStructureID": 84337, + "TargetStructureID": 6117, + "Label": "84337-6117 via Conventional from 84339 -> 84340", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84339, + "TargetID": 84340, + "Directional": true + }] + }, { + "ID": 17677, + "SourceStructureID": 84347, + "TargetStructureID": 84342, + "Label": "84347-84342 via Conventional from 84348 -> 84346", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84348, + "TargetID": 84346, + "Directional": true + }] + }, { + "ID": 17678, + "SourceStructureID": 84349, + "TargetStructureID": 6117, + "Label": "84349-6117 via Conventional from 84361 -> 84362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84361, + "TargetID": 84362, + "Directional": true + }] + }, { + "ID": 17679, + "SourceStructureID": 84349, + "TargetStructureID": 84337, + "Label": "84349-84337 via Conventional from 84356 -> 84357", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84356, + "TargetID": 84357, + "Directional": true + }] + }, { + "ID": 17680, + "SourceStructureID": 84369, + "TargetStructureID": 66323, + "Label": "84369-66323 via Conventional from 84370 -> 84368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84370, + "TargetID": 84368, + "Directional": true + }] + }, { + "ID": 17681, + "SourceStructureID": 84374, + "TargetStructureID": 6117, + "Label": "84374-6117 via Conventional from 84376 -> 84375", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84376, + "TargetID": 84375, + "Directional": true + }] + }, { + "ID": 17682, + "SourceStructureID": 84407, + "TargetStructureID": 73004, + "Label": "84407-73004 via Conventional from 84410 -> 84411", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84410, + "TargetID": 84411, + "Directional": true + }] + }, { + "ID": 17683, + "SourceStructureID": 84418, + "TargetStructureID": 7594, + "Label": "84418-7594 via Conventional from 84420 -> 19281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84420, + "TargetID": 19281, + "Directional": true + }] + }, { + "ID": 17684, + "SourceStructureID": 84457, + "TargetStructureID": 5282, + "Label": "84457-5282 via Conventional from 84458 -> 84462", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84458, + "TargetID": 84462, + "Directional": true + }] + }, { + "ID": 17685, + "SourceStructureID": 84519, + "TargetStructureID": 74907, + "Label": "84519-74907 via Conventional from 84523 -> 84524", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84523, + "TargetID": 84524, + "Directional": true + }] + }, { + "ID": 17686, + "SourceStructureID": 84561, + "TargetStructureID": 593, + "Label": "84561-593 via Conventional from 84563 -> 84562", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84563, + "TargetID": 84562, + "Directional": true + }] + }, { + "ID": 17687, + "SourceStructureID": 84572, + "TargetStructureID": 10574, + "Label": "84572-10574 via Ribbon Synapse from 84573 -> 84569", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 84573, + "TargetID": 84569, + "Directional": true + }] + }, { + "ID": 17688, + "SourceStructureID": 84600, + "TargetStructureID": 74907, + "Label": "84600-74907 via Conventional from 84606 -> 84607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84606, + "TargetID": 84607, + "Directional": true + }] + }, { + "ID": 17689, + "SourceStructureID": 84621, + "TargetStructureID": 84623, + "Label": "84621-84623 via Conventional from 84622 -> 84625", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84622, + "TargetID": 84625, + "Directional": true + }] + }, { + "ID": 17690, + "SourceStructureID": 84639, + "TargetStructureID": 5283, + "Label": "84639-5283 via Conventional from 123767 -> 28006", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123767, + "TargetID": 28006, + "Directional": true + }] + }, { + "ID": 17691, + "SourceStructureID": 84639, + "TargetStructureID": 5650, + "Label": "84639-5650 via Conventional from 84644 -> 23493", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84644, + "TargetID": 23493, + "Directional": true + }] + }, { + "ID": 17692, + "SourceStructureID": 84639, + "TargetStructureID": 6117, + "Label": "84639-6117 via Conventional from 84640 -> 84641", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84640, + "TargetID": 84641, + "Directional": true + }] + }, { + "ID": 17693, + "SourceStructureID": 84642, + "TargetStructureID": 6117, + "Label": "84642-6117 via Conventional from 84645 -> 84214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84645, + "TargetID": 84214, + "Directional": true + }] + }, { + "ID": 17694, + "SourceStructureID": 84647, + "TargetStructureID": 6117, + "Label": "84647-6117 via Conventional from 84648 -> 84649", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84648, + "TargetID": 84649, + "Directional": true + }] + }, { + "ID": 17695, + "SourceStructureID": 84670, + "TargetStructureID": 43507, + "Label": "84670-43507 via Conventional from 84672 -> 43519", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84672, + "TargetID": 43519, + "Directional": true + }] + }, { + "ID": 17696, + "SourceStructureID": 84696, + "TargetStructureID": 11092, + "Label": "84696-11092 via Conventional from 84697 -> 109972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84697, + "TargetID": 109972, + "Directional": true + }] + }, { + "ID": 17697, + "SourceStructureID": 84740, + "TargetStructureID": 74907, + "Label": "84740-74907 via Conventional from 84741 -> 84776", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84741, + "TargetID": 84776, + "Directional": true + }] + }, { + "ID": 17698, + "SourceStructureID": 84745, + "TargetStructureID": 5599, + "Label": "84745-5599 via Conventional from 84746 -> 84744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84746, + "TargetID": 84744, + "Directional": true + }] + }, { + "ID": 17699, + "SourceStructureID": 84759, + "TargetStructureID": 70540, + "Label": "84759-70540 via Conventional from 84760 -> 84762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84760, + "TargetID": 84762, + "Directional": true + }] + }, { + "ID": 17700, + "SourceStructureID": 84773, + "TargetStructureID": 84771, + "Label": "84773-84771 via Conventional from 84774 -> 84775", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84774, + "TargetID": 84775, + "Directional": true + }] + }, { + "ID": 17701, + "SourceStructureID": 84780, + "TargetStructureID": 166, + "Label": "84780-166 via Conventional from 84781 -> 84779", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84781, + "TargetID": 84779, + "Directional": true + }] + }, { + "ID": 17702, + "SourceStructureID": 84790, + "TargetStructureID": 32035, + "Label": "84790-32035 via Conventional from 84857 -> 32042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84857, + "TargetID": 32042, + "Directional": true + }] + }, { + "ID": 17703, + "SourceStructureID": 84822, + "TargetStructureID": 7859, + "Label": "84822-7859 via Conventional from 84823 -> 84821", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84823, + "TargetID": 84821, + "Directional": true + }] + }, { + "ID": 17704, + "SourceStructureID": 84830, + "TargetStructureID": 5279, + "Label": "84830-5279 via Conventional from 84843 -> 25846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84843, + "TargetID": 25846, + "Directional": true + }] + }, { + "ID": 17705, + "SourceStructureID": 84830, + "TargetStructureID": 6997, + "Label": "84830-6997 via Conventional from 84881 -> 21959, 84890 -> 21928, 84893 -> 84892", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84881, + "TargetID": 21959, + "Directional": true + }, { + "SourceID": 84890, + "TargetID": 21928, + "Directional": true + }, { + "SourceID": 84893, + "TargetID": 84892, + "Directional": true + }] + }, { + "ID": 17706, + "SourceStructureID": 84830, + "TargetStructureID": 11401, + "Label": "84830-11401 via Conventional from 84896 -> 84897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84896, + "TargetID": 84897, + "Directional": true + }] + }, { + "ID": 17707, + "SourceStructureID": 84830, + "TargetStructureID": 84876, + "Label": "84830-84876 via Conventional from 84875 -> 84877", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84875, + "TargetID": 84877, + "Directional": true + }] + }, { + "ID": 17708, + "SourceStructureID": 84830, + "TargetStructureID": 84879, + "Label": "84830-84879 via Conventional from 84878 -> 84880", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84878, + "TargetID": 84880, + "Directional": true + }] + }, { + "ID": 17709, + "SourceStructureID": 84830, + "TargetStructureID": 85455, + "Label": "84830-85455 via Conventional from 85457 -> 85456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85457, + "TargetID": 85456, + "Directional": true + }] + }, { + "ID": 17710, + "SourceStructureID": 84830, + "TargetStructureID": 85463, + "Label": "84830-85463 via Conventional from 85462 -> 85464", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85462, + "TargetID": 85464, + "Directional": true + }] + }, { + "ID": 17711, + "SourceStructureID": 84830, + "TargetStructureID": 85473, + "Label": "84830-85473 via Conventional from 85474 -> 85477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85474, + "TargetID": 85477, + "Directional": true + }] + }, { + "ID": 17712, + "SourceStructureID": 84858, + "TargetStructureID": 142, + "Label": "84858-142 via Conventional from 84870 -> 49772", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84870, + "TargetID": 49772, + "Directional": true + }] + }, { + "ID": 17713, + "SourceStructureID": 84876, + "TargetStructureID": 26079, + "Label": "84876-26079 via Conventional from 102917 -> 102915", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102917, + "TargetID": 102915, + "Directional": true + }] + }, { + "ID": 17714, + "SourceStructureID": 84886, + "TargetStructureID": 84830, + "Label": "84886-84830 via Conventional from 84887 -> 84885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84887, + "TargetID": 84885, + "Directional": true + }] + }, { + "ID": 17715, + "SourceStructureID": 84909, + "TargetStructureID": 84903, + "Label": "84909-84903 via Conventional from 84911 -> 84913", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84911, + "TargetID": 84913, + "Directional": true + }] + }, { + "ID": 17716, + "SourceStructureID": 84914, + "TargetStructureID": 84909, + "Label": "84914-84909 via Conventional from 84915 -> 84912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84915, + "TargetID": 84912, + "Directional": true + }] + }, { + "ID": 17717, + "SourceStructureID": 84919, + "TargetStructureID": 84830, + "Label": "84919-84830 via Conventional from 84921 -> 84920", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84921, + "TargetID": 84920, + "Directional": true + }] + }, { + "ID": 17718, + "SourceStructureID": 84926, + "TargetStructureID": 84830, + "Label": "84926-84830 via BC Conventional Synapse from 85471 -> 84929", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85471, + "TargetID": 84929, + "Directional": true + }] + }, { + "ID": 17719, + "SourceStructureID": 84942, + "TargetStructureID": 5278, + "Label": "84942-5278 via Conventional from 93467 -> 50309", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93467, + "TargetID": 50309, + "Directional": true + }] + }, { + "ID": 17720, + "SourceStructureID": 84942, + "TargetStructureID": 6117, + "Label": "84942-6117 via Conventional from 84943 -> 84944", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84943, + "TargetID": 84944, + "Directional": true + }] + }, { + "ID": 17721, + "SourceStructureID": 84942, + "TargetStructureID": 84946, + "Label": "84942-84946 via Conventional from 84945 -> 84947", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84945, + "TargetID": 84947, + "Directional": true + }] + }, { + "ID": 17722, + "SourceStructureID": 84950, + "TargetStructureID": 6117, + "Label": "84950-6117 via Conventional from 84951 -> 84953", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84951, + "TargetID": 84953, + "Directional": true + }] + }, { + "ID": 17723, + "SourceStructureID": 84965, + "TargetStructureID": 142, + "Label": "84965-142 via Conventional from 84998 -> 30709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84998, + "TargetID": 30709, + "Directional": true + }] + }, { + "ID": 17724, + "SourceStructureID": 84965, + "TargetStructureID": 84957, + "Label": "84965-84957 via Conventional from 84968 -> 84969", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84968, + "TargetID": 84969, + "Directional": true + }] + }, { + "ID": 17725, + "SourceStructureID": 84980, + "TargetStructureID": 142, + "Label": "84980-142 via Conventional from 84981 -> 49771", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84981, + "TargetID": 49771, + "Directional": true + }] + }, { + "ID": 17726, + "SourceStructureID": 84980, + "TargetStructureID": 6117, + "Label": "84980-6117 via Conventional from 84993 -> 84994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84993, + "TargetID": 84994, + "Directional": true + }] + }, { + "ID": 17727, + "SourceStructureID": 84983, + "TargetStructureID": 6117, + "Label": "84983-6117 via Conventional from 84984 -> 30894, 84985 -> 84986", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 84984, + "TargetID": 30894, + "Directional": true + }, { + "SourceID": 84985, + "TargetID": 84986, + "Directional": true + }] + }, { + "ID": 17728, + "SourceStructureID": 85004, + "TargetStructureID": 142, + "Label": "85004-142 via Conventional from 85007 -> 85008", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85007, + "TargetID": 85008, + "Directional": true + }] + }, { + "ID": 17729, + "SourceStructureID": 85004, + "TargetStructureID": 6117, + "Label": "85004-6117 via Conventional from 85005 -> 85006", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85005, + "TargetID": 85006, + "Directional": true + }] + }, { + "ID": 17730, + "SourceStructureID": 85015, + "TargetStructureID": 6117, + "Label": "85015-6117 via Conventional from 85016 -> 85017", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85016, + "TargetID": 85017, + "Directional": true + }] + }, { + "ID": 17731, + "SourceStructureID": 85062, + "TargetStructureID": 59333, + "Label": "85062-59333 via Ribbon Synapse from 85065 -> 85061", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85065, + "TargetID": 85061, + "Directional": true + }] + }, { + "ID": 17732, + "SourceStructureID": 85068, + "TargetStructureID": 59333, + "Label": "85068-59333 via Conventional from 85069 -> 85067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85069, + "TargetID": 85067, + "Directional": true + }] + }, { + "ID": 17733, + "SourceStructureID": 85072, + "TargetStructureID": 85068, + "Label": "85072-85068 via Conventional from 85074 -> 85075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85074, + "TargetID": 85075, + "Directional": true + }] + }, { + "ID": 17734, + "SourceStructureID": 85082, + "TargetStructureID": 59333, + "Label": "85082-59333 via Conventional from 85083 -> 85084", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85083, + "TargetID": 85084, + "Directional": true + }] + }, { + "ID": 17735, + "SourceStructureID": 85088, + "TargetStructureID": 59333, + "Label": "85088-59333 via Ribbon Synapse from 85090 -> 85087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85090, + "TargetID": 85087, + "Directional": true + }] + }, { + "ID": 17736, + "SourceStructureID": 85094, + "TargetStructureID": 5405, + "Label": "85094-5405 via BC Conventional Synapse from 85139 -> 85140", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85139, + "TargetID": 85140, + "Directional": true + }] + }, { + "ID": 17737, + "SourceStructureID": 85094, + "TargetStructureID": 59333, + "Label": "85094-59333 via Ribbon Synapse from 85107 -> 85108", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85107, + "TargetID": 85108, + "Directional": true + }] + }, { + "ID": 17738, + "SourceStructureID": 85094, + "TargetStructureID": 85096, + "Label": "85094-85096 via Ribbon Synapse from 85095 -> 85103", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85095, + "TargetID": 85103, + "Directional": true + }] + }, { + "ID": 17739, + "SourceStructureID": 85094, + "TargetStructureID": 85097, + "Label": "85094-85097 via Ribbon Synapse from 85095 -> 85102", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85095, + "TargetID": 85102, + "Directional": true + }] + }, { + "ID": 17740, + "SourceStructureID": 85094, + "TargetStructureID": 85116, + "Label": "85094-85116 via Ribbon Synapse from 85115 -> 85117", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85115, + "TargetID": 85117, + "Directional": true + }] + }, { + "ID": 17741, + "SourceStructureID": 85100, + "TargetStructureID": 85096, + "Label": "85100-85096 via Conventional from 85101 -> 85098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85101, + "TargetID": 85098, + "Directional": true + }] + }, { + "ID": 17742, + "SourceStructureID": 85104, + "TargetStructureID": 85094, + "Label": "85104-85094 via Conventional from 85105 -> 85106", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85105, + "TargetID": 85106, + "Directional": true + }] + }, { + "ID": 17743, + "SourceStructureID": 85119, + "TargetStructureID": 5405, + "Label": "85119-5405 via Ribbon Synapse from 85132 -> 85138, 85133 -> 85134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85132, + "TargetID": 85138, + "Directional": true + }, { + "SourceID": 85133, + "TargetID": 85134, + "Directional": true + }] + }, { + "ID": 17744, + "SourceStructureID": 85119, + "TargetStructureID": 85121, + "Label": "85119-85121 via Ribbon Synapse from 85132 -> 85137", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85132, + "TargetID": 85137, + "Directional": true + }] + }, { + "ID": 17745, + "SourceStructureID": 85119, + "TargetStructureID": 85124, + "Label": "85119-85124 via Ribbon Synapse from 85123 -> 85125", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85123, + "TargetID": 85125, + "Directional": true + }] + }, { + "ID": 17746, + "SourceStructureID": 85128, + "TargetStructureID": 85121, + "Label": "85128-85121 via Conventional from 85129 -> 85127", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85129, + "TargetID": 85127, + "Directional": true + }] + }, { + "ID": 17747, + "SourceStructureID": 85141, + "TargetStructureID": 85141, + "Label": "85141-85141 via Conventional from 85181 -> 85179", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85181, + "TargetID": 85179, + "Directional": true + }] + }, { + "ID": 17748, + "SourceStructureID": 85141, + "TargetStructureID": 85144, + "Label": "85141-85144 via Ribbon Synapse from 85143 -> 85145", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85143, + "TargetID": 85145, + "Directional": true + }] + }, { + "ID": 17749, + "SourceStructureID": 85141, + "TargetStructureID": 85149, + "Label": "85141-85149 via Ribbon Synapse from 85148 -> 85154, 85150 -> 85151", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85148, + "TargetID": 85154, + "Directional": true + }, { + "SourceID": 85150, + "TargetID": 85151, + "Directional": true + }] + }, { + "ID": 17750, + "SourceStructureID": 85141, + "TargetStructureID": 85170, + "Label": "85141-85170 via BC Conventional Synapse from 85169 -> 85171", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85169, + "TargetID": 85171, + "Directional": true + }] + }, { + "ID": 17751, + "SourceStructureID": 85141, + "TargetStructureID": 85184, + "Label": "85141-85184 via Ribbon Synapse from 85182 -> 85191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85182, + "TargetID": 85191, + "Directional": true + }] + }, { + "ID": 17752, + "SourceStructureID": 85141, + "TargetStructureID": 85185, + "Label": "85141-85185 via Ribbon Synapse from 85182 -> 85192", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85182, + "TargetID": 85192, + "Directional": true + }] + }, { + "ID": 17753, + "SourceStructureID": 85141, + "TargetStructureID": 85196, + "Label": "85141-85196 via Ribbon Synapse from 85195 -> 85203", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85195, + "TargetID": 85203, + "Directional": true + }] + }, { + "ID": 17754, + "SourceStructureID": 85141, + "TargetStructureID": 85197, + "Label": "85141-85197 via Ribbon Synapse from 85195 -> 85204", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85195, + "TargetID": 85204, + "Directional": true + }] + }, { + "ID": 17755, + "SourceStructureID": 85141, + "TargetStructureID": 85206, + "Label": "85141-85206 via BC Conventional Synapse from 85205 -> 85207", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85205, + "TargetID": 85207, + "Directional": true + }] + }, { + "ID": 17756, + "SourceStructureID": 85141, + "TargetStructureID": 85214, + "Label": "85141-85214 via Ribbon Synapse from 85213 -> 85215", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85213, + "TargetID": 85215, + "Directional": true + }] + }, { + "ID": 17757, + "SourceStructureID": 85141, + "TargetStructureID": 85216, + "Label": "85141-85216 via Ribbon Synapse from 85213 -> 85217", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85213, + "TargetID": 85217, + "Directional": true + }] + }, { + "ID": 17758, + "SourceStructureID": 85141, + "TargetStructureID": 85233, + "Label": "85141-85233 via Ribbon Synapse from 85211 -> 85234", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85211, + "TargetID": 85234, + "Directional": true + }] + }, { + "ID": 17759, + "SourceStructureID": 85141, + "TargetStructureID": 85250, + "Label": "85141-85250 via BC Conventional Synapse from 85247 -> 85251", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85247, + "TargetID": 85251, + "Directional": true + }] + }, { + "ID": 17760, + "SourceStructureID": 85141, + "TargetStructureID": 85258, + "Label": "85141-85258 via Ribbon Synapse from 85257 -> 85263", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85257, + "TargetID": 85263, + "Directional": true + }] + }, { + "ID": 17761, + "SourceStructureID": 85141, + "TargetStructureID": 85259, + "Label": "85141-85259 via Ribbon Synapse from 85257 -> 85261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85257, + "TargetID": 85261, + "Directional": true + }] + }, { + "ID": 17762, + "SourceStructureID": 85141, + "TargetStructureID": 85289, + "Label": "85141-85289 via Ribbon Synapse from 85288 -> 85290", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85288, + "TargetID": 85290, + "Directional": true + }] + }, { + "ID": 17763, + "SourceStructureID": 85141, + "TargetStructureID": 85333, + "Label": "85141-85333 via Ribbon Synapse from 85332 -> 85335", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85332, + "TargetID": 85335, + "Directional": true + }] + }, { + "ID": 17764, + "SourceStructureID": 85141, + "TargetStructureID": 85334, + "Label": "85141-85334 via Ribbon Synapse from 85332 -> 85336", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85332, + "TargetID": 85336, + "Directional": true + }] + }, { + "ID": 17765, + "SourceStructureID": 85141, + "TargetStructureID": 85346, + "Label": "85141-85346 via Ribbon Synapse from 85278 -> 85347", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85278, + "TargetID": 85347, + "Directional": true + }] + }, { + "ID": 17766, + "SourceStructureID": 85141, + "TargetStructureID": 85357, + "Label": "85141-85357 via Ribbon Synapse from 85294 -> 85358", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85294, + "TargetID": 85358, + "Directional": true + }] + }, { + "ID": 17767, + "SourceStructureID": 85141, + "TargetStructureID": 85372, + "Label": "85141-85372 via Ribbon Synapse from 85371 -> 85373", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85371, + "TargetID": 85373, + "Directional": true + }] + }, { + "ID": 17768, + "SourceStructureID": 85141, + "TargetStructureID": 85388, + "Label": "85141-85388 via Ribbon Synapse from 85246 -> 85389", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85246, + "TargetID": 85389, + "Directional": true + }] + }, { + "ID": 17769, + "SourceStructureID": 85141, + "TargetStructureID": 85391, + "Label": "85141-85391 via Ribbon Synapse from 85245 -> 85392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85245, + "TargetID": 85392, + "Directional": true + }] + }, { + "ID": 17770, + "SourceStructureID": 85144, + "TargetStructureID": 85141, + "Label": "85144-85141 via Conventional from 85146 -> 85147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85146, + "TargetID": 85147, + "Directional": true + }] + }, { + "ID": 17771, + "SourceStructureID": 85149, + "TargetStructureID": 85141, + "Label": "85149-85141 via Conventional from 85156 -> 85155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85156, + "TargetID": 85155, + "Directional": true + }] + }, { + "ID": 17772, + "SourceStructureID": 85172, + "TargetStructureID": 85141, + "Label": "85172-85141 via Conventional from 85175 -> 85176", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85175, + "TargetID": 85176, + "Directional": true + }] + }, { + "ID": 17773, + "SourceStructureID": 85184, + "TargetStructureID": 85141, + "Label": "85184-85141 via Conventional from 85188 -> 85183", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85188, + "TargetID": 85183, + "Directional": true + }] + }, { + "ID": 17774, + "SourceStructureID": 85185, + "TargetStructureID": 85184, + "Label": "85185-85184 via Conventional from 85186 -> 85187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85186, + "TargetID": 85187, + "Directional": true + }] + }, { + "ID": 17775, + "SourceStructureID": 85197, + "TargetStructureID": 85200, + "Label": "85197-85200 via Conventional from 85198 -> 85202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85198, + "TargetID": 85202, + "Directional": true + }] + }, { + "ID": 17776, + "SourceStructureID": 85214, + "TargetStructureID": 85141, + "Label": "85214-85141 via Conventional from 85395 -> 85396", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85395, + "TargetID": 85396, + "Directional": true + }] + }, { + "ID": 17777, + "SourceStructureID": 85231, + "TargetStructureID": 85141, + "Label": "85231-85141 via Conventional from 85232 -> 85230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85232, + "TargetID": 85230, + "Directional": true + }] + }, { + "ID": 17778, + "SourceStructureID": 85259, + "TargetStructureID": 85141, + "Label": "85259-85141 via Conventional from 85260 -> 85262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85260, + "TargetID": 85262, + "Directional": true + }] + }, { + "ID": 17779, + "SourceStructureID": 85266, + "TargetStructureID": 6117, + "Label": "85266-6117 via Conventional from 126354 -> 126355", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126354, + "TargetID": 126355, + "Directional": true + }] + }, { + "ID": 17780, + "SourceStructureID": 85284, + "TargetStructureID": 6117, + "Label": "85284-6117 via Conventional from 85285 -> 85287", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85285, + "TargetID": 85287, + "Directional": true + }] + }, { + "ID": 17781, + "SourceStructureID": 85307, + "TargetStructureID": 6117, + "Label": "85307-6117 via Conventional from 85309 -> 85304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85309, + "TargetID": 85304, + "Directional": true + }] + }, { + "ID": 17782, + "SourceStructureID": 85311, + "TargetStructureID": 6117, + "Label": "85311-6117 via Conventional from 85253 -> 30898, 85312 -> 85313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85253, + "TargetID": 30898, + "Directional": true + }, { + "SourceID": 85312, + "TargetID": 85313, + "Directional": true + }] + }, { + "ID": 17783, + "SourceStructureID": 85314, + "TargetStructureID": 6117, + "Label": "85314-6117 via Conventional from 85315 -> 85316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85315, + "TargetID": 85316, + "Directional": true + }] + }, { + "ID": 17784, + "SourceStructureID": 85334, + "TargetStructureID": 85141, + "Label": "85334-85141 via Conventional from 85340 -> 85341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85340, + "TargetID": 85341, + "Directional": true + }] + }, { + "ID": 17785, + "SourceStructureID": 85338, + "TargetStructureID": 85334, + "Label": "85338-85334 via Conventional from 85339 -> 85337", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85339, + "TargetID": 85337, + "Directional": true + }] + }, { + "ID": 17786, + "SourceStructureID": 85348, + "TargetStructureID": 85250, + "Label": "85348-85250 via Conventional from 85349 -> 85256", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85349, + "TargetID": 85256, + "Directional": true + }] + }, { + "ID": 17787, + "SourceStructureID": 85369, + "TargetStructureID": 85141, + "Label": "85369-85141 via Conventional from 85370 -> 85368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85370, + "TargetID": 85368, + "Directional": true + }] + }, { + "ID": 17788, + "SourceStructureID": 85377, + "TargetStructureID": 85141, + "Label": "85377-85141 via Conventional from 85378 -> 85376", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85378, + "TargetID": 85376, + "Directional": true + }] + }, { + "ID": 17789, + "SourceStructureID": 85400, + "TargetStructureID": 85141, + "Label": "85400-85141 via Conventional from 85402 -> 85399", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85402, + "TargetID": 85399, + "Directional": true + }] + }, { + "ID": 17790, + "SourceStructureID": 85404, + "TargetStructureID": 142, + "Label": "85404-142 via Conventional from 85409 -> 49778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85409, + "TargetID": 49778, + "Directional": true + }] + }, { + "ID": 17791, + "SourceStructureID": 85421, + "TargetStructureID": 6117, + "Label": "85421-6117 via Conventional from 85422 -> 85423, 100920 -> 100919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85422, + "TargetID": 85423, + "Directional": true + }, { + "SourceID": 100920, + "TargetID": 100919, + "Directional": true + }] + }, { + "ID": 17792, + "SourceStructureID": 85421, + "TargetStructureID": 54287, + "Label": "85421-54287 via Conventional from 85424 -> 85425", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85424, + "TargetID": 85425, + "Directional": true + }] + }, { + "ID": 17793, + "SourceStructureID": 85426, + "TargetStructureID": 6117, + "Label": "85426-6117 via Conventional from 85427 -> 85428", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85427, + "TargetID": 85428, + "Directional": true + }] + }, { + "ID": 17794, + "SourceStructureID": 85429, + "TargetStructureID": 6117, + "Label": "85429-6117 via Conventional from 85430 -> 85431", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85430, + "TargetID": 85431, + "Directional": true + }] + }, { + "ID": 17795, + "SourceStructureID": 85442, + "TargetStructureID": 6117, + "Label": "85442-6117 via Conventional from 85443 -> 85444", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85443, + "TargetID": 85444, + "Directional": true + }] + }, { + "ID": 17796, + "SourceStructureID": 85445, + "TargetStructureID": 6997, + "Label": "85445-6997 via Conventional from 85446 -> 21960", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85446, + "TargetID": 21960, + "Directional": true + }] + }, { + "ID": 17797, + "SourceStructureID": 85450, + "TargetStructureID": 84830, + "Label": "85450-84830 via Conventional from 85451 -> 85449", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85451, + "TargetID": 85449, + "Directional": true + }] + }, { + "ID": 17798, + "SourceStructureID": 85455, + "TargetStructureID": 84830, + "Label": "85455-84830 via Conventional from 85458 -> 85459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85458, + "TargetID": 85459, + "Directional": true + }] + }, { + "ID": 17799, + "SourceStructureID": 85473, + "TargetStructureID": 84830, + "Label": "85473-84830 via BC Conventional Synapse from 85476 -> 85475", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85476, + "TargetID": 85475, + "Directional": true + }] + }, { + "ID": 17800, + "SourceStructureID": 85483, + "TargetStructureID": 84830, + "Label": "85483-84830 via Conventional from 85484 -> 85480", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85484, + "TargetID": 85480, + "Directional": true + }] + }, { + "ID": 17801, + "SourceStructureID": 85496, + "TargetStructureID": 593, + "Label": "85496-593 via Conventional from 85499 -> 85500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85499, + "TargetID": 85500, + "Directional": true + }] + }, { + "ID": 17802, + "SourceStructureID": 85510, + "TargetStructureID": 593, + "Label": "85510-593 via Conventional from 90043 -> 90044", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90043, + "TargetID": 90044, + "Directional": true + }] + }, { + "ID": 17803, + "SourceStructureID": 85523, + "TargetStructureID": 593, + "Label": "85523-593 via Conventional from 85524 -> 85525", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85524, + "TargetID": 85525, + "Directional": true + }] + }, { + "ID": 17804, + "SourceStructureID": 85526, + "TargetStructureID": 593, + "Label": "85526-593 via Conventional from 85527 -> 85528", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85527, + "TargetID": 85528, + "Directional": true + }] + }, { + "ID": 17805, + "SourceStructureID": 85543, + "TargetStructureID": 5439, + "Label": "85543-5439 via Conventional from 85544 -> 85545", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85544, + "TargetID": 85545, + "Directional": true + }] + }, { + "ID": 17806, + "SourceStructureID": 85546, + "TargetStructureID": 59229, + "Label": "85546-59229 via Ribbon Synapse from 85548 -> 85542", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85548, + "TargetID": 85542, + "Directional": true + }] + }, { + "ID": 17807, + "SourceStructureID": 85571, + "TargetStructureID": 593, + "Label": "85571-593 via Conventional from 85584 -> 85585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85584, + "TargetID": 85585, + "Directional": true + }] + }, { + "ID": 17808, + "SourceStructureID": 85601, + "TargetStructureID": 5439, + "Label": "85601-5439 via Conventional from 85602 -> 85599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85602, + "TargetID": 85599, + "Directional": true + }] + }, { + "ID": 17809, + "SourceStructureID": 85620, + "TargetStructureID": 5439, + "Label": "85620-5439 via Conventional from 85621 -> 85619", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85621, + "TargetID": 85619, + "Directional": true + }] + }, { + "ID": 17810, + "SourceStructureID": 85622, + "TargetStructureID": 5439, + "Label": "85622-5439 via Conventional from 85625 -> 85626", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85625, + "TargetID": 85626, + "Directional": true + }] + }, { + "ID": 17811, + "SourceStructureID": 85658, + "TargetStructureID": 6117, + "Label": "85658-6117 via Conventional from 85659 -> 85660", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85659, + "TargetID": 85660, + "Directional": true + }] + }, { + "ID": 17812, + "SourceStructureID": 85666, + "TargetStructureID": 6117, + "Label": "85666-6117 via Conventional from 85883 -> 85884", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85883, + "TargetID": 85884, + "Directional": true + }] + }, { + "ID": 17813, + "SourceStructureID": 85671, + "TargetStructureID": 5439, + "Label": "85671-5439 via Conventional from 85672 -> 85670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85672, + "TargetID": 85670, + "Directional": true + }] + }, { + "ID": 17814, + "SourceStructureID": 85680, + "TargetStructureID": 5439, + "Label": "85680-5439 via Conventional from 85681 -> 85679", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85681, + "TargetID": 85679, + "Directional": true + }] + }, { + "ID": 17815, + "SourceStructureID": 85683, + "TargetStructureID": 5439, + "Label": "85683-5439 via Conventional from 85684 -> 85682", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85684, + "TargetID": 85682, + "Directional": true + }] + }, { + "ID": 17816, + "SourceStructureID": 85691, + "TargetStructureID": 5439, + "Label": "85691-5439 via Conventional from 85692 -> 85690", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85692, + "TargetID": 85690, + "Directional": true + }] + }, { + "ID": 17817, + "SourceStructureID": 85695, + "TargetStructureID": 5439, + "Label": "85695-5439 via Conventional from 85696 -> 85694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85696, + "TargetID": 85694, + "Directional": true + }] + }, { + "ID": 17818, + "SourceStructureID": 85698, + "TargetStructureID": 5439, + "Label": "85698-5439 via Conventional from 85699 -> 85697", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85699, + "TargetID": 85697, + "Directional": true + }] + }, { + "ID": 17819, + "SourceStructureID": 85703, + "TargetStructureID": 5439, + "Label": "85703-5439 via Conventional from 85704 -> 85702", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85704, + "TargetID": 85702, + "Directional": true + }] + }, { + "ID": 17820, + "SourceStructureID": 85730, + "TargetStructureID": 71519, + "Label": "85730-71519 via Conventional from 85744 -> 85745", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85744, + "TargetID": 85745, + "Directional": true + }] + }, { + "ID": 17821, + "SourceStructureID": 85730, + "TargetStructureID": 85629, + "Label": "85730-85629 via Conventional from 85733 -> 85729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85733, + "TargetID": 85729, + "Directional": true + }] + }, { + "ID": 17822, + "SourceStructureID": 85735, + "TargetStructureID": 5439, + "Label": "85735-5439 via Conventional from 85736 -> 85734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85736, + "TargetID": 85734, + "Directional": true + }] + }, { + "ID": 17823, + "SourceStructureID": 85740, + "TargetStructureID": 85730, + "Label": "85740-85730 via Conventional from 85741 -> 85739", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85741, + "TargetID": 85739, + "Directional": true + }] + }, { + "ID": 17824, + "SourceStructureID": 85748, + "TargetStructureID": 483, + "Label": "85748-483 via Conventional from 85761 -> 26825, 103536 -> 103537", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85761, + "TargetID": 26825, + "Directional": true + }, { + "SourceID": 103536, + "TargetID": 103537, + "Directional": true + }] + }, { + "ID": 17825, + "SourceStructureID": 85748, + "TargetStructureID": 485, + "Label": "85748-485 via Conventional from 85777 -> 85778, 85779 -> 85781, 85785 -> 100227", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85777, + "TargetID": 85778, + "Directional": true + }, { + "SourceID": 85779, + "TargetID": 85781, + "Directional": true + }, { + "SourceID": 85785, + "TargetID": 100227, + "Directional": true + }] + }, { + "ID": 17826, + "SourceStructureID": 85748, + "TargetStructureID": 85775, + "Label": "85748-85775 via Conventional from 85774 -> 85776", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85774, + "TargetID": 85776, + "Directional": true + }] + }, { + "ID": 17827, + "SourceStructureID": 85748, + "TargetStructureID": 85783, + "Label": "85748-85783 via Conventional from 85782 -> 85784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85782, + "TargetID": 85784, + "Directional": true + }] + }, { + "ID": 17828, + "SourceStructureID": 85750, + "TargetStructureID": 85748, + "Label": "85750-85748 via Conventional from 85751 -> 85749", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85751, + "TargetID": 85749, + "Directional": true + }] + }, { + "ID": 17829, + "SourceStructureID": 85755, + "TargetStructureID": 85748, + "Label": "85755-85748 via Conventional from 85756 -> 85754", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85756, + "TargetID": 85754, + "Directional": true + }] + }, { + "ID": 17830, + "SourceStructureID": 85771, + "TargetStructureID": 85748, + "Label": "85771-85748 via Conventional from 85772 -> 85770", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85772, + "TargetID": 85770, + "Directional": true + }] + }, { + "ID": 17831, + "SourceStructureID": 85792, + "TargetStructureID": 85730, + "Label": "85792-85730 via Ribbon Synapse from 85794 -> 85791, 85798 -> 85797", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 85794, + "TargetID": 85791, + "Directional": true + }, { + "SourceID": 85798, + "TargetID": 85797, + "Directional": true + }] + }, { + "ID": 17832, + "SourceStructureID": 85852, + "TargetStructureID": 85629, + "Label": "85852-85629 via Conventional from 85853 -> 85850, 85855 -> 85854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85853, + "TargetID": 85850, + "Directional": true + }, { + "SourceID": 85855, + "TargetID": 85854, + "Directional": true + }] + }, { + "ID": 17833, + "SourceStructureID": 85861, + "TargetStructureID": 85856, + "Label": "85861-85856 via Conventional from 85862 -> 85858", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85862, + "TargetID": 85858, + "Directional": true + }] + }, { + "ID": 17834, + "SourceStructureID": 85906, + "TargetStructureID": 6117, + "Label": "85906-6117 via Conventional from 85908 -> 85918", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85908, + "TargetID": 85918, + "Directional": true + }] + }, { + "ID": 17835, + "SourceStructureID": 85906, + "TargetStructureID": 85909, + "Label": "85906-85909 via Conventional from 85908 -> 85916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85908, + "TargetID": 85916, + "Directional": true + }] + }, { + "ID": 17836, + "SourceStructureID": 85924, + "TargetStructureID": 6117, + "Label": "85924-6117 via Conventional from 85926 -> 85927", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85926, + "TargetID": 85927, + "Directional": true + }] + }, { + "ID": 17837, + "SourceStructureID": 85958, + "TargetStructureID": 6117, + "Label": "85958-6117 via Conventional from 85963 -> 58807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85963, + "TargetID": 58807, + "Directional": true + }] + }, { + "ID": 17838, + "SourceStructureID": 85979, + "TargetStructureID": 6117, + "Label": "85979-6117 via Conventional from 85980 -> 85981", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85980, + "TargetID": 85981, + "Directional": true + }] + }, { + "ID": 17839, + "SourceStructureID": 85982, + "TargetStructureID": 6117, + "Label": "85982-6117 via Conventional from 85983 -> 58814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 85983, + "TargetID": 58814, + "Directional": true + }] + }, { + "ID": 17840, + "SourceStructureID": 85997, + "TargetStructureID": 6117, + "Label": "85997-6117 via Conventional from 147479 -> 147478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147479, + "TargetID": 147478, + "Directional": true + }] + }, { + "ID": 17841, + "SourceStructureID": 86001, + "TargetStructureID": 84790, + "Label": "86001-84790 via Conventional from 86002 -> 86003", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86002, + "TargetID": 86003, + "Directional": true + }] + }, { + "ID": 17842, + "SourceStructureID": 86036, + "TargetStructureID": 6117, + "Label": "86036-6117 via Conventional from 86037 -> 10536, 86039 -> 10533", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86037, + "TargetID": 10536, + "Directional": true + }, { + "SourceID": 86039, + "TargetID": 10533, + "Directional": true + }] + }, { + "ID": 17843, + "SourceStructureID": 86045, + "TargetStructureID": 86047, + "Label": "86045-86047 via Conventional from 86046 -> 86048", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86046, + "TargetID": 86048, + "Directional": true + }] + }, { + "ID": 17844, + "SourceStructureID": 86050, + "TargetStructureID": 6117, + "Label": "86050-6117 via Conventional from 86052 -> 10535, 86065 -> 86066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86052, + "TargetID": 10535, + "Directional": true + }, { + "SourceID": 86065, + "TargetID": 86066, + "Directional": true + }] + }, { + "ID": 17845, + "SourceStructureID": 86060, + "TargetStructureID": 6117, + "Label": "86060-6117 via Conventional from 86061 -> 86015", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86061, + "TargetID": 86015, + "Directional": true + }] + }, { + "ID": 17846, + "SourceStructureID": 86068, + "TargetStructureID": 6117, + "Label": "86068-6117 via Conventional from 86069 -> 86067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86069, + "TargetID": 86067, + "Directional": true + }] + }, { + "ID": 17847, + "SourceStructureID": 86098, + "TargetStructureID": 6117, + "Label": "86098-6117 via Conventional from 86100 -> 20567", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86100, + "TargetID": 20567, + "Directional": true + }] + }, { + "ID": 17848, + "SourceStructureID": 86098, + "TargetStructureID": 86110, + "Label": "86098-86110 via Conventional from 86118 -> 86119", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86118, + "TargetID": 86119, + "Directional": true + }] + }, { + "ID": 17849, + "SourceStructureID": 86114, + "TargetStructureID": 86110, + "Label": "86114-86110 via Conventional from 86115 -> 86116", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86115, + "TargetID": 86116, + "Directional": true + }] + }, { + "ID": 17850, + "SourceStructureID": 86128, + "TargetStructureID": 6117, + "Label": "86128-6117 via Conventional from 86130 -> 86131", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86130, + "TargetID": 86131, + "Directional": true + }] + }, { + "ID": 17851, + "SourceStructureID": 86128, + "TargetStructureID": 86110, + "Label": "86128-86110 via Conventional from 86129 -> 86132", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86129, + "TargetID": 86132, + "Directional": true + }] + }, { + "ID": 17852, + "SourceStructureID": 86134, + "TargetStructureID": 58592, + "Label": "86134-58592 via Conventional from 86135 -> 58635", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86135, + "TargetID": 58635, + "Directional": true + }] + }, { + "ID": 17853, + "SourceStructureID": 86134, + "TargetStructureID": 86110, + "Label": "86134-86110 via Conventional from 86136 -> 86137", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86136, + "TargetID": 86137, + "Directional": true + }] + }, { + "ID": 17854, + "SourceStructureID": 86162, + "TargetStructureID": 6117, + "Label": "86162-6117 via Conventional from 86164 -> 20575, 86169 -> 86170", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86164, + "TargetID": 20575, + "Directional": true + }, { + "SourceID": 86169, + "TargetID": 86170, + "Directional": true + }] + }, { + "ID": 17855, + "SourceStructureID": 86165, + "TargetStructureID": 58714, + "Label": "86165-58714 via Conventional from 86166 -> 58721", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86166, + "TargetID": 58721, + "Directional": true + }] + }, { + "ID": 17856, + "SourceStructureID": 86171, + "TargetStructureID": 86174, + "Label": "86171-86174 via Conventional from 86176 -> 86175", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86176, + "TargetID": 86175, + "Directional": true + }] + }, { + "ID": 17857, + "SourceStructureID": 86192, + "TargetStructureID": 6117, + "Label": "86192-6117 via Conventional from 86193 -> 86200", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86193, + "TargetID": 86200, + "Directional": true + }] + }, { + "ID": 17858, + "SourceStructureID": 86192, + "TargetStructureID": 32035, + "Label": "86192-32035 via Conventional from 86194 -> 86196", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86194, + "TargetID": 86196, + "Directional": true + }] + }, { + "ID": 17859, + "SourceStructureID": 86201, + "TargetStructureID": 35894, + "Label": "86201-35894 via Conventional from 86207 -> 35932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86207, + "TargetID": 35932, + "Directional": true + }] + }, { + "ID": 17860, + "SourceStructureID": 86205, + "TargetStructureID": 6117, + "Label": "86205-6117 via Conventional from 86206 -> 86204", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86206, + "TargetID": 86204, + "Directional": true + }] + }, { + "ID": 17861, + "SourceStructureID": 86215, + "TargetStructureID": 86218, + "Label": "86215-86218 via Conventional from 86217 -> 86219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86217, + "TargetID": 86219, + "Directional": true + }] + }, { + "ID": 17862, + "SourceStructureID": 86218, + "TargetStructureID": 6117, + "Label": "86218-6117 via Conventional from 86227 -> 86082", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86227, + "TargetID": 86082, + "Directional": true + }] + }, { + "ID": 17863, + "SourceStructureID": 86218, + "TargetStructureID": 6300, + "Label": "86218-6300 via Conventional from 86220 -> 86221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86220, + "TargetID": 86221, + "Directional": true + }] + }, { + "ID": 17864, + "SourceStructureID": 86224, + "TargetStructureID": 6117, + "Label": "86224-6117 via Conventional from 86226 -> 86225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86226, + "TargetID": 86225, + "Directional": true + }] + }, { + "ID": 17865, + "SourceStructureID": 86228, + "TargetStructureID": 6117, + "Label": "86228-6117 via Conventional from 86229 -> 86230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86229, + "TargetID": 86230, + "Directional": true + }] + }, { + "ID": 17866, + "SourceStructureID": 86231, + "TargetStructureID": 6117, + "Label": "86231-6117 via Conventional from 86232 -> 20586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86232, + "TargetID": 20586, + "Directional": true + }] + }, { + "ID": 17867, + "SourceStructureID": 86231, + "TargetStructureID": 7594, + "Label": "86231-7594 via Conventional from 86233 -> 86236", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86233, + "TargetID": 86236, + "Directional": true + }] + }, { + "ID": 17868, + "SourceStructureID": 86239, + "TargetStructureID": 4877, + "Label": "86239-4877 via Conventional from 86240 -> 46579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86240, + "TargetID": 46579, + "Directional": true + }] + }, { + "ID": 17869, + "SourceStructureID": 86244, + "TargetStructureID": 6117, + "Label": "86244-6117 via Conventional from 86245 -> 20588", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86245, + "TargetID": 20588, + "Directional": true + }] + }, { + "ID": 17870, + "SourceStructureID": 86256, + "TargetStructureID": 3756, + "Label": "86256-3756 via Conventional from 120455 -> 116216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120455, + "TargetID": 116216, + "Directional": true + }] + }, { + "ID": 17871, + "SourceStructureID": 86256, + "TargetStructureID": 6117, + "Label": "86256-6117 via Conventional from 86257 -> 86258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86257, + "TargetID": 86258, + "Directional": true + }] + }, { + "ID": 17872, + "SourceStructureID": 86260, + "TargetStructureID": 6117, + "Label": "86260-6117 via Conventional from 86261 -> 86259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86261, + "TargetID": 86259, + "Directional": true + }] + }, { + "ID": 17873, + "SourceStructureID": 86268, + "TargetStructureID": 6117, + "Label": "86268-6117 via Conventional from 86270 -> 86271", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86270, + "TargetID": 86271, + "Directional": true + }] + }, { + "ID": 17874, + "SourceStructureID": 86276, + "TargetStructureID": 6117, + "Label": "86276-6117 via Conventional from 86277 -> 86278", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86277, + "TargetID": 86278, + "Directional": true + }] + }, { + "ID": 17875, + "SourceStructureID": 86311, + "TargetStructureID": 142, + "Label": "86311-142 via Conventional from 126025 -> 126024", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126025, + "TargetID": 126024, + "Directional": true + }] + }, { + "ID": 17876, + "SourceStructureID": 86315, + "TargetStructureID": 142, + "Label": "86315-142 via Conventional from 86318 -> 31800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86318, + "TargetID": 31800, + "Directional": true + }] + }, { + "ID": 17877, + "SourceStructureID": 86315, + "TargetStructureID": 606, + "Label": "86315-606 via Conventional from 99409 -> 99410, 99411 -> 39887", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99409, + "TargetID": 99410, + "Directional": true + }, { + "SourceID": 99411, + "TargetID": 39887, + "Directional": true + }] + }, { + "ID": 17878, + "SourceStructureID": 86315, + "TargetStructureID": 6117, + "Label": "86315-6117 via Conventional from 86316 -> 86317", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86316, + "TargetID": 86317, + "Directional": true + }] + }, { + "ID": 17879, + "SourceStructureID": 86327, + "TargetStructureID": 142, + "Label": "86327-142 via Conventional from 86328 -> 31798", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86328, + "TargetID": 31798, + "Directional": true + }] + }, { + "ID": 17880, + "SourceStructureID": 86334, + "TargetStructureID": 142, + "Label": "86334-142 via Conventional from 86335 -> 31796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86335, + "TargetID": 31796, + "Directional": true + }] + }, { + "ID": 17881, + "SourceStructureID": 86353, + "TargetStructureID": 6117, + "Label": "86353-6117 via Conventional from 86354 -> 86355", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86354, + "TargetID": 86355, + "Directional": true + }] + }, { + "ID": 17882, + "SourceStructureID": 86356, + "TargetStructureID": 86624, + "Label": "86356-86624 via Conventional from 86623 -> 86625", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86623, + "TargetID": 86625, + "Directional": true + }] + }, { + "ID": 17883, + "SourceStructureID": 86369, + "TargetStructureID": 6117, + "Label": "86369-6117 via Conventional from 86371 -> 86368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86371, + "TargetID": 86368, + "Directional": true + }] + }, { + "ID": 17884, + "SourceStructureID": 86369, + "TargetStructureID": 58714, + "Label": "86369-58714 via Conventional from 86370 -> 58735", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86370, + "TargetID": 58735, + "Directional": true + }] + }, { + "ID": 17885, + "SourceStructureID": 86389, + "TargetStructureID": 6117, + "Label": "86389-6117 via Conventional from 86390 -> 86393", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86390, + "TargetID": 86393, + "Directional": true + }] + }, { + "ID": 17886, + "SourceStructureID": 86389, + "TargetStructureID": 86391, + "Label": "86389-86391 via Conventional from 86390 -> 86392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86390, + "TargetID": 86392, + "Directional": true + }] + }, { + "ID": 17887, + "SourceStructureID": 86420, + "TargetStructureID": 6117, + "Label": "86420-6117 via Conventional from 86421 -> 30912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86421, + "TargetID": 30912, + "Directional": true + }] + }, { + "ID": 17888, + "SourceStructureID": 86438, + "TargetStructureID": 40602, + "Label": "86438-40602 via Conventional from 86439 -> 41445, 86440 -> 41444", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86439, + "TargetID": 41445, + "Directional": true + }, { + "SourceID": 86440, + "TargetID": 41444, + "Directional": true + }] + }, { + "ID": 17889, + "SourceStructureID": 86466, + "TargetStructureID": 6117, + "Label": "86466-6117 via Conventional from 86468 -> 86469", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86468, + "TargetID": 86469, + "Directional": true + }] + }, { + "ID": 17890, + "SourceStructureID": 86473, + "TargetStructureID": 5374, + "Label": "86473-5374 via Conventional from 86476 -> 69023", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86476, + "TargetID": 69023, + "Directional": true + }] + }, { + "ID": 17891, + "SourceStructureID": 86473, + "TargetStructureID": 6117, + "Label": "86473-6117 via Conventional from 86474 -> 86091", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86474, + "TargetID": 86091, + "Directional": true + }] + }, { + "ID": 17892, + "SourceStructureID": 86479, + "TargetStructureID": 86481, + "Label": "86479-86481 via Conventional from 86483 -> 86482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86483, + "TargetID": 86482, + "Directional": true + }] + }, { + "ID": 17893, + "SourceStructureID": 86485, + "TargetStructureID": 6117, + "Label": "86485-6117 via Conventional from 86486 -> 86487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86486, + "TargetID": 86487, + "Directional": true + }] + }, { + "ID": 17894, + "SourceStructureID": 86496, + "TargetStructureID": 6117, + "Label": "86496-6117 via Conventional from 86497 -> 86498", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86497, + "TargetID": 86498, + "Directional": true + }] + }, { + "ID": 17895, + "SourceStructureID": 86512, + "TargetStructureID": 6117, + "Label": "86512-6117 via Conventional from 86513 -> 30918", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86513, + "TargetID": 30918, + "Directional": true + }] + }, { + "ID": 17896, + "SourceStructureID": 86563, + "TargetStructureID": 6117, + "Label": "86563-6117 via Conventional from 86567 -> 86568", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86567, + "TargetID": 86568, + "Directional": true + }] + }, { + "ID": 17897, + "SourceStructureID": 86580, + "TargetStructureID": 308, + "Label": "86580-308 via Conventional from 86581 -> 86578", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86581, + "TargetID": 86578, + "Directional": true + }] + }, { + "ID": 17898, + "SourceStructureID": 86582, + "TargetStructureID": 7594, + "Label": "86582-7594 via Conventional from 86589 -> 86590", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86589, + "TargetID": 86590, + "Directional": true + }] + }, { + "ID": 17899, + "SourceStructureID": 86607, + "TargetStructureID": 6117, + "Label": "86607-6117 via Conventional from 86608 -> 30919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86608, + "TargetID": 30919, + "Directional": true + }] + }, { + "ID": 17900, + "SourceStructureID": 86609, + "TargetStructureID": 6117, + "Label": "86609-6117 via Conventional from 86611 -> 30920", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86611, + "TargetID": 30920, + "Directional": true + }] + }, { + "ID": 17901, + "SourceStructureID": 86614, + "TargetStructureID": 6117, + "Label": "86614-6117 via Conventional from 86617 -> 30923", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86617, + "TargetID": 30923, + "Directional": true + }] + }, { + "ID": 17902, + "SourceStructureID": 86615, + "TargetStructureID": 6117, + "Label": "86615-6117 via Conventional from 86616 -> 30921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86616, + "TargetID": 30921, + "Directional": true + }] + }, { + "ID": 17903, + "SourceStructureID": 86626, + "TargetStructureID": 308, + "Label": "86626-308 via Conventional from 86627 -> 31861", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86627, + "TargetID": 31861, + "Directional": true + }] + }, { + "ID": 17904, + "SourceStructureID": 86628, + "TargetStructureID": 308, + "Label": "86628-308 via Conventional from 86629 -> 31863", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86629, + "TargetID": 31863, + "Directional": true + }] + }, { + "ID": 17905, + "SourceStructureID": 86630, + "TargetStructureID": 308, + "Label": "86630-308 via Conventional from 86631 -> 31868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86631, + "TargetID": 31868, + "Directional": true + }] + }, { + "ID": 17906, + "SourceStructureID": 86632, + "TargetStructureID": 308, + "Label": "86632-308 via Conventional from 86633 -> 31869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86633, + "TargetID": 31869, + "Directional": true + }] + }, { + "ID": 17907, + "SourceStructureID": 86634, + "TargetStructureID": 483, + "Label": "86634-483 via Conventional from 102383 -> 102385", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102383, + "TargetID": 102385, + "Directional": true + }] + }, { + "ID": 17908, + "SourceStructureID": 86634, + "TargetStructureID": 485, + "Label": "86634-485 via Conventional from 86687 -> 50885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86687, + "TargetID": 50885, + "Directional": true + }] + }, { + "ID": 17909, + "SourceStructureID": 86634, + "TargetStructureID": 46823, + "Label": "86634-46823 via Conventional from 86688 -> 86689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86688, + "TargetID": 86689, + "Directional": true + }] + }, { + "ID": 17910, + "SourceStructureID": 86634, + "TargetStructureID": 86662, + "Label": "86634-86662 via Conventional from 86661 -> 86663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86661, + "TargetID": 86663, + "Directional": true + }] + }, { + "ID": 17911, + "SourceStructureID": 86634, + "TargetStructureID": 86685, + "Label": "86634-86685 via Conventional from 86684 -> 86686", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86684, + "TargetID": 86686, + "Directional": true + }] + }, { + "ID": 17912, + "SourceStructureID": 86637, + "TargetStructureID": 308, + "Label": "86637-308 via Conventional from 86638 -> 43097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86638, + "TargetID": 43097, + "Directional": true + }] + }, { + "ID": 17913, + "SourceStructureID": 86640, + "TargetStructureID": 86634, + "Label": "86640-86634 via Conventional from 86641 -> 86639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86641, + "TargetID": 86639, + "Directional": true + }] + }, { + "ID": 17914, + "SourceStructureID": 86644, + "TargetStructureID": 308, + "Label": "86644-308 via Conventional from 86645 -> 43368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86645, + "TargetID": 43368, + "Directional": true + }] + }, { + "ID": 17915, + "SourceStructureID": 86644, + "TargetStructureID": 71954, + "Label": "86644-71954 via Conventional from 86650 -> 86651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86650, + "TargetID": 86651, + "Directional": true + }] + }, { + "ID": 17916, + "SourceStructureID": 86667, + "TargetStructureID": 86634, + "Label": "86667-86634 via Conventional from 86669 -> 86670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86669, + "TargetID": 86670, + "Directional": true + }] + }, { + "ID": 17917, + "SourceStructureID": 86672, + "TargetStructureID": 86634, + "Label": "86672-86634 via Conventional from 86673 -> 86671", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86673, + "TargetID": 86671, + "Directional": true + }] + }, { + "ID": 17918, + "SourceStructureID": 86675, + "TargetStructureID": 86634, + "Label": "86675-86634 via Conventional from 86678 -> 86674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86678, + "TargetID": 86674, + "Directional": true + }] + }, { + "ID": 17919, + "SourceStructureID": 86691, + "TargetStructureID": 86634, + "Label": "86691-86634 via Conventional from 86692 -> 86690", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86692, + "TargetID": 86690, + "Directional": true + }] + }, { + "ID": 17920, + "SourceStructureID": 86691, + "TargetStructureID": 101050, + "Label": "86691-101050 via Conventional from 101061 -> 101060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101061, + "TargetID": 101060, + "Directional": true + }] + }, { + "ID": 17921, + "SourceStructureID": 86697, + "TargetStructureID": 10596, + "Label": "86697-10596 via Conventional from 86698 -> 86696", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86698, + "TargetID": 86696, + "Directional": true + }] + }, { + "ID": 17922, + "SourceStructureID": 86712, + "TargetStructureID": 308, + "Label": "86712-308 via Conventional from 86713 -> 42631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86713, + "TargetID": 42631, + "Directional": true + }] + }, { + "ID": 17923, + "SourceStructureID": 86741, + "TargetStructureID": 593, + "Label": "86741-593 via Conventional from 115737 -> 115736", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115737, + "TargetID": 115736, + "Directional": true + }] + }, { + "ID": 17924, + "SourceStructureID": 86747, + "TargetStructureID": 10959, + "Label": "86747-10959 via Conventional from 86748 -> 16368, 86749 -> 16371", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86748, + "TargetID": 16368, + "Directional": true + }, { + "SourceID": 86749, + "TargetID": 16371, + "Directional": true + }] + }, { + "ID": 17925, + "SourceStructureID": 86761, + "TargetStructureID": 10959, + "Label": "86761-10959 via Conventional from 86762 -> 86760, 86765 -> 16376, 86766 -> 16377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86762, + "TargetID": 86760, + "Directional": true + }, { + "SourceID": 86765, + "TargetID": 16376, + "Directional": true + }, { + "SourceID": 86766, + "TargetID": 16377, + "Directional": true + }] + }, { + "ID": 17926, + "SourceStructureID": 86767, + "TargetStructureID": 10959, + "Label": "86767-10959 via Conventional from 86768 -> 16375", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86768, + "TargetID": 16375, + "Directional": true + }] + }, { + "ID": 17927, + "SourceStructureID": 86775, + "TargetStructureID": 10959, + "Label": "86775-10959 via Conventional from 86911 -> 86912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86911, + "TargetID": 86912, + "Directional": true + }] + }, { + "ID": 17928, + "SourceStructureID": 86783, + "TargetStructureID": 10959, + "Label": "86783-10959 via Conventional from 86784 -> 86782, 86790 -> 86793, 86791 -> 86792, 86798 -> 16554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86784, + "TargetID": 86782, + "Directional": true + }, { + "SourceID": 86790, + "TargetID": 86793, + "Directional": true + }, { + "SourceID": 86791, + "TargetID": 86792, + "Directional": true + }, { + "SourceID": 86798, + "TargetID": 16554, + "Directional": true + }] + }, { + "ID": 17929, + "SourceStructureID": 86799, + "TargetStructureID": 10959, + "Label": "86799-10959 via Conventional from 86800 -> 16552, 86801 -> 16553, 86803 -> 86804, 87717 -> 87718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86800, + "TargetID": 16552, + "Directional": true + }, { + "SourceID": 86801, + "TargetID": 16553, + "Directional": true + }, { + "SourceID": 86803, + "TargetID": 86804, + "Directional": true + }, { + "SourceID": 87717, + "TargetID": 87718, + "Directional": true + }] + }, { + "ID": 17930, + "SourceStructureID": 86806, + "TargetStructureID": 10959, + "Label": "86806-10959 via Conventional from 86807 -> 16556", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86807, + "TargetID": 16556, + "Directional": true + }] + }, { + "ID": 17931, + "SourceStructureID": 86812, + "TargetStructureID": 10959, + "Label": "86812-10959 via Conventional from 86813 -> 86811", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86813, + "TargetID": 86811, + "Directional": true + }] + }, { + "ID": 17932, + "SourceStructureID": 86816, + "TargetStructureID": 10959, + "Label": "86816-10959 via Conventional from 86817 -> 86815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86817, + "TargetID": 86815, + "Directional": true + }] + }, { + "ID": 17933, + "SourceStructureID": 86818, + "TargetStructureID": 10959, + "Label": "86818-10959 via Conventional from 86819 -> 86814, 86821 -> 86820", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86819, + "TargetID": 86814, + "Directional": true + }, { + "SourceID": 86821, + "TargetID": 86820, + "Directional": true + }] + }, { + "ID": 17934, + "SourceStructureID": 86822, + "TargetStructureID": 10959, + "Label": "86822-10959 via Conventional from 86831 -> 86832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86831, + "TargetID": 86832, + "Directional": true + }] + }, { + "ID": 17935, + "SourceStructureID": 86838, + "TargetStructureID": 10959, + "Label": "86838-10959 via Conventional from 86840 -> 86841, 86842 -> 86843, 86844 -> 86845, 86846 -> 86847, 86848 -> 86849, 86851 -> 86852", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86840, + "TargetID": 86841, + "Directional": true + }, { + "SourceID": 86842, + "TargetID": 86843, + "Directional": true + }, { + "SourceID": 86844, + "TargetID": 86845, + "Directional": true + }, { + "SourceID": 86846, + "TargetID": 86847, + "Directional": true + }, { + "SourceID": 86848, + "TargetID": 86849, + "Directional": true + }, { + "SourceID": 86851, + "TargetID": 86852, + "Directional": true + }] + }, { + "ID": 17936, + "SourceStructureID": 86854, + "TargetStructureID": 10959, + "Label": "86854-10959 via Conventional from 86855 -> 86853", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86855, + "TargetID": 86853, + "Directional": true + }] + }, { + "ID": 17937, + "SourceStructureID": 86857, + "TargetStructureID": 170, + "Label": "86857-170 via Conventional from 86959 -> 1112", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86959, + "TargetID": 1112, + "Directional": true + }] + }, { + "ID": 17938, + "SourceStructureID": 86857, + "TargetStructureID": 23512, + "Label": "86857-23512 via Conventional from 86955 -> 23513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86955, + "TargetID": 23513, + "Directional": true + }] + }, { + "ID": 17939, + "SourceStructureID": 86858, + "TargetStructureID": 10959, + "Label": "86858-10959 via Conventional from 86859 -> 16391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86859, + "TargetID": 16391, + "Directional": true + }] + }, { + "ID": 17940, + "SourceStructureID": 86868, + "TargetStructureID": 10959, + "Label": "86868-10959 via Conventional from 86869 -> 86870", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86869, + "TargetID": 86870, + "Directional": true + }] + }, { + "ID": 17941, + "SourceStructureID": 86871, + "TargetStructureID": 10959, + "Label": "86871-10959 via Conventional from 86874 -> 86875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86874, + "TargetID": 86875, + "Directional": true + }] + }, { + "ID": 17942, + "SourceStructureID": 86876, + "TargetStructureID": 10959, + "Label": "86876-10959 via Conventional from 86878 -> 86879, 86885 -> 86886", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86878, + "TargetID": 86879, + "Directional": true + }, { + "SourceID": 86885, + "TargetID": 86886, + "Directional": true + }] + }, { + "ID": 17943, + "SourceStructureID": 86888, + "TargetStructureID": 10959, + "Label": "86888-10959 via Conventional from 86889 -> 86887", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86889, + "TargetID": 86887, + "Directional": true + }] + }, { + "ID": 17944, + "SourceStructureID": 86891, + "TargetStructureID": 10959, + "Label": "86891-10959 via Conventional from 86894 -> 86895, 86896 -> 86897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86894, + "TargetID": 86895, + "Directional": true + }, { + "SourceID": 86896, + "TargetID": 86897, + "Directional": true + }] + }, { + "ID": 17945, + "SourceStructureID": 86898, + "TargetStructureID": 10959, + "Label": "86898-10959 via Conventional from 86899 -> 86900", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86899, + "TargetID": 86900, + "Directional": true + }] + }, { + "ID": 17946, + "SourceStructureID": 86901, + "TargetStructureID": 10959, + "Label": "86901-10959 via Conventional from 86902 -> 86903", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86902, + "TargetID": 86903, + "Directional": true + }] + }, { + "ID": 17947, + "SourceStructureID": 86904, + "TargetStructureID": 10959, + "Label": "86904-10959 via Conventional from 86905 -> 86907, 86906 -> 86908", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86905, + "TargetID": 86907, + "Directional": true + }, { + "SourceID": 86906, + "TargetID": 86908, + "Directional": true + }] + }, { + "ID": 17948, + "SourceStructureID": 86913, + "TargetStructureID": 10959, + "Label": "86913-10959 via Conventional from 86921 -> 16588, 86922 -> 86923, 86924 -> 86925", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86921, + "TargetID": 16588, + "Directional": true + }, { + "SourceID": 86922, + "TargetID": 86923, + "Directional": true + }, { + "SourceID": 86924, + "TargetID": 86925, + "Directional": true + }] + }, { + "ID": 17949, + "SourceStructureID": 86915, + "TargetStructureID": 10959, + "Label": "86915-10959 via Conventional from 86916 -> 16585, 86919 -> 16598", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86916, + "TargetID": 16585, + "Directional": true + }, { + "SourceID": 86919, + "TargetID": 16598, + "Directional": true + }] + }, { + "ID": 17950, + "SourceStructureID": 86927, + "TargetStructureID": 58696, + "Label": "86927-58696 via Conventional from 86928 -> 58701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86928, + "TargetID": 58701, + "Directional": true + }] + }, { + "ID": 17951, + "SourceStructureID": 86933, + "TargetStructureID": 58696, + "Label": "86933-58696 via Conventional from 86935 -> 58699", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86935, + "TargetID": 58699, + "Directional": true + }] + }, { + "ID": 17952, + "SourceStructureID": 86934, + "TargetStructureID": 58696, + "Label": "86934-58696 via Conventional from 86936 -> 58700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86936, + "TargetID": 58700, + "Directional": true + }] + }, { + "ID": 17953, + "SourceStructureID": 86940, + "TargetStructureID": 58696, + "Label": "86940-58696 via Conventional from 86941 -> 86939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86941, + "TargetID": 86939, + "Directional": true + }] + }, { + "ID": 17954, + "SourceStructureID": 86945, + "TargetStructureID": 58696, + "Label": "86945-58696 via Conventional from 86946 -> 86947", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86946, + "TargetID": 86947, + "Directional": true + }] + }, { + "ID": 17955, + "SourceStructureID": 86951, + "TargetStructureID": 86945, + "Label": "86951-86945 via Conventional from 86952 -> 86950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86952, + "TargetID": 86950, + "Directional": true + }] + }, { + "ID": 17956, + "SourceStructureID": 86971, + "TargetStructureID": 58696, + "Label": "86971-58696 via Conventional from 86972 -> 86970", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86972, + "TargetID": 86970, + "Directional": true + }] + }, { + "ID": 17957, + "SourceStructureID": 86980, + "TargetStructureID": 58696, + "Label": "86980-58696 via Conventional from 86981 -> 86982", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86981, + "TargetID": 86982, + "Directional": true + }] + }, { + "ID": 17958, + "SourceStructureID": 86988, + "TargetStructureID": 86985, + "Label": "86988-86985 via Conventional from 86989 -> 86987", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86989, + "TargetID": 86987, + "Directional": true + }] + }, { + "ID": 17959, + "SourceStructureID": 86997, + "TargetStructureID": 5377, + "Label": "86997-5377 via Conventional from 86998 -> 22733", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 86998, + "TargetID": 22733, + "Directional": true + }] + }, { + "ID": 17960, + "SourceStructureID": 87002, + "TargetStructureID": 86997, + "Label": "87002-86997 via Conventional from 87003 -> 87001", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87003, + "TargetID": 87001, + "Directional": true + }] + }, { + "ID": 17961, + "SourceStructureID": 87005, + "TargetStructureID": 5377, + "Label": "87005-5377 via Conventional from 87006 -> 22737", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87006, + "TargetID": 22737, + "Directional": true + }] + }, { + "ID": 17962, + "SourceStructureID": 87057, + "TargetStructureID": 5292, + "Label": "87057-5292 via Conventional from 87058 -> 87056", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87058, + "TargetID": 87056, + "Directional": true + }] + }, { + "ID": 17963, + "SourceStructureID": 87067, + "TargetStructureID": 173, + "Label": "87067-173 via Conventional from 87068 -> 87066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87068, + "TargetID": 87066, + "Directional": true + }] + }, { + "ID": 17964, + "SourceStructureID": 87075, + "TargetStructureID": 173, + "Label": "87075-173 via Conventional from 87078 -> 87074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87078, + "TargetID": 87074, + "Directional": true + }] + }, { + "ID": 17965, + "SourceStructureID": 87076, + "TargetStructureID": 173, + "Label": "87076-173 via Conventional from 87077 -> 87073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87077, + "TargetID": 87073, + "Directional": true + }] + }, { + "ID": 17966, + "SourceStructureID": 87098, + "TargetStructureID": 5377, + "Label": "87098-5377 via Ribbon Synapse from 87101 -> 87102, 87105 -> 87106", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87101, + "TargetID": 87102, + "Directional": true + }, { + "SourceID": 87105, + "TargetID": 87106, + "Directional": true + }] + }, { + "ID": 17967, + "SourceStructureID": 87098, + "TargetStructureID": 87095, + "Label": "87098-87095 via Ribbon Synapse from 87105 -> 87107", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87105, + "TargetID": 87107, + "Directional": true + }] + }, { + "ID": 17968, + "SourceStructureID": 87103, + "TargetStructureID": 87098, + "Label": "87103-87098 via Conventional from 87104 -> 87100", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87104, + "TargetID": 87100, + "Directional": true + }] + }, { + "ID": 17969, + "SourceStructureID": 87137, + "TargetStructureID": 82887, + "Label": "87137-82887 via Conventional from 87138 -> 87136", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87138, + "TargetID": 87136, + "Directional": true + }] + }, { + "ID": 17970, + "SourceStructureID": 87145, + "TargetStructureID": 87158, + "Label": "87145-87158 via Conventional from 87157 -> 87159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87157, + "TargetID": 87159, + "Directional": true + }] + }, { + "ID": 17971, + "SourceStructureID": 87149, + "TargetStructureID": 87145, + "Label": "87149-87145 via Conventional from 87150 -> 87148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87150, + "TargetID": 87148, + "Directional": true + }] + }, { + "ID": 17972, + "SourceStructureID": 87189, + "TargetStructureID": 87183, + "Label": "87189-87183 via Conventional from 87190 -> 87185", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87190, + "TargetID": 87185, + "Directional": true + }] + }, { + "ID": 17973, + "SourceStructureID": 87208, + "TargetStructureID": 87183, + "Label": "87208-87183 via Conventional from 87209 -> 87207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87209, + "TargetID": 87207, + "Directional": true + }] + }, { + "ID": 17974, + "SourceStructureID": 87224, + "TargetStructureID": 87227, + "Label": "87224-87227 via Conventional from 87226 -> 87228", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87226, + "TargetID": 87228, + "Directional": true + }] + }, { + "ID": 17975, + "SourceStructureID": 87277, + "TargetStructureID": 6162, + "Label": "87277-6162 via Conventional from 87288 -> 87289", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87288, + "TargetID": 87289, + "Directional": true + }] + }, { + "ID": 17976, + "SourceStructureID": 87294, + "TargetStructureID": 5499, + "Label": "87294-5499 via Conventional from 87320 -> 87322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87320, + "TargetID": 87322, + "Directional": true + }] + }, { + "ID": 17977, + "SourceStructureID": 87294, + "TargetStructureID": 6118, + "Label": "87294-6118 via Conventional from 87300 -> 65919, 87301 -> 87302", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87300, + "TargetID": 65919, + "Directional": true + }, { + "SourceID": 87301, + "TargetID": 87302, + "Directional": true + }] + }, { + "ID": 17978, + "SourceStructureID": 87294, + "TargetStructureID": 7024, + "Label": "87294-7024 via Conventional from 87323 -> 87332", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87323, + "TargetID": 87332, + "Directional": true + }] + }, { + "ID": 17979, + "SourceStructureID": 87294, + "TargetStructureID": 87315, + "Label": "87294-87315 via Conventional from 87314 -> 87316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87314, + "TargetID": 87316, + "Directional": true + }] + }, { + "ID": 17980, + "SourceStructureID": 87304, + "TargetStructureID": 87294, + "Label": "87304-87294 via Conventional from 87305 -> 87303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87305, + "TargetID": 87303, + "Directional": true + }] + }, { + "ID": 17981, + "SourceStructureID": 87312, + "TargetStructureID": 87309, + "Label": "87312-87309 via Conventional from 87313 -> 87311", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87313, + "TargetID": 87311, + "Directional": true + }] + }, { + "ID": 17982, + "SourceStructureID": 87337, + "TargetStructureID": 82677, + "Label": "87337-82677 via Conventional from 87338 -> 87336", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87338, + "TargetID": 87336, + "Directional": true + }] + }, { + "ID": 17983, + "SourceStructureID": 87340, + "TargetStructureID": 82677, + "Label": "87340-82677 via Conventional from 87341 -> 87339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87341, + "TargetID": 87339, + "Directional": true + }] + }, { + "ID": 17984, + "SourceStructureID": 87342, + "TargetStructureID": 87345, + "Label": "87342-87345 via Conventional from 87344 -> 87346", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87344, + "TargetID": 87346, + "Directional": true + }] + }, { + "ID": 17985, + "SourceStructureID": 87342, + "TargetStructureID": 87361, + "Label": "87342-87361 via Conventional from 87360 -> 87362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87360, + "TargetID": 87362, + "Directional": true + }] + }, { + "ID": 17986, + "SourceStructureID": 87342, + "TargetStructureID": 87377, + "Label": "87342-87377 via Conventional from 87376 -> 87381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87376, + "TargetID": 87381, + "Directional": true + }] + }, { + "ID": 17987, + "SourceStructureID": 87345, + "TargetStructureID": 606, + "Label": "87345-606 via Conventional from 87358 -> 47380", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87358, + "TargetID": 47380, + "Directional": true + }] + }, { + "ID": 17988, + "SourceStructureID": 87345, + "TargetStructureID": 87349, + "Label": "87345-87349 via Conventional from 87348 -> 87350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87348, + "TargetID": 87350, + "Directional": true + }] + }, { + "ID": 17989, + "SourceStructureID": 87366, + "TargetStructureID": 87342, + "Label": "87366-87342 via Conventional from 87367 -> 87368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87367, + "TargetID": 87368, + "Directional": true + }] + }, { + "ID": 17990, + "SourceStructureID": 87373, + "TargetStructureID": 87342, + "Label": "87373-87342 via Conventional from 87374 -> 87372", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87374, + "TargetID": 87372, + "Directional": true + }] + }, { + "ID": 17991, + "SourceStructureID": 87379, + "TargetStructureID": 5150, + "Label": "87379-5150 via Ribbon Synapse from 131332 -> 5228", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131332, + "TargetID": 5228, + "Directional": true + }] + }, { + "ID": 17992, + "SourceStructureID": 87379, + "TargetStructureID": 87377, + "Label": "87379-87377 via Ribbon Synapse from 87380 -> 87378", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 87380, + "TargetID": 87378, + "Directional": true + }] + }, { + "ID": 17993, + "SourceStructureID": 87387, + "TargetStructureID": 87385, + "Label": "87387-87385 via Conventional from 87388 -> 87386", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87388, + "TargetID": 87386, + "Directional": true + }] + }, { + "ID": 17994, + "SourceStructureID": 87390, + "TargetStructureID": 87385, + "Label": "87390-87385 via Conventional from 87391 -> 87389", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87391, + "TargetID": 87389, + "Directional": true + }] + }, { + "ID": 17995, + "SourceStructureID": 87403, + "TargetStructureID": 87342, + "Label": "87403-87342 via Conventional from 87404 -> 87402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87404, + "TargetID": 87402, + "Directional": true + }] + }, { + "ID": 17996, + "SourceStructureID": 87419, + "TargetStructureID": 6047, + "Label": "87419-6047 via Conventional from 87431 -> 61329", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87431, + "TargetID": 61329, + "Directional": true + }] + }, { + "ID": 17997, + "SourceStructureID": 87419, + "TargetStructureID": 6120, + "Label": "87419-6120 via Conventional from 87425 -> 87427, 111510 -> 61184", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87425, + "TargetID": 87427, + "Directional": true + }, { + "SourceID": 111510, + "TargetID": 61184, + "Directional": true + }] + }, { + "ID": 17998, + "SourceStructureID": 87419, + "TargetStructureID": 87428, + "Label": "87419-87428 via Conventional from 87426 -> 87429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87426, + "TargetID": 87429, + "Directional": true + }] + }, { + "ID": 17999, + "SourceStructureID": 87432, + "TargetStructureID": 6118, + "Label": "87432-6118 via Conventional from 87443 -> 87444", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87443, + "TargetID": 87444, + "Directional": true + }] + }, { + "ID": 18000, + "SourceStructureID": 87432, + "TargetStructureID": 6120, + "Label": "87432-6120 via Conventional from 87441 -> 61161, 87445 -> 87446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87441, + "TargetID": 61161, + "Directional": true + }, { + "SourceID": 87445, + "TargetID": 87446, + "Directional": true + }] + }, { + "ID": 18001, + "SourceStructureID": 87432, + "TargetStructureID": 87437, + "Label": "87432-87437 via Conventional from 87436 -> 87438", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87436, + "TargetID": 87438, + "Directional": true + }] + }, { + "ID": 18002, + "SourceStructureID": 87447, + "TargetStructureID": 87454, + "Label": "87447-87454 via Conventional from 87453 -> 87455", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87453, + "TargetID": 87455, + "Directional": true + }] + }, { + "ID": 18003, + "SourceStructureID": 87449, + "TargetStructureID": 5650, + "Label": "87449-5650 via Conventional from 87451 -> 87452", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87451, + "TargetID": 87452, + "Directional": true + }] + }, { + "ID": 18004, + "SourceStructureID": 87449, + "TargetStructureID": 87447, + "Label": "87449-87447 via Conventional from 87450 -> 87448", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87450, + "TargetID": 87448, + "Directional": true + }] + }, { + "ID": 18005, + "SourceStructureID": 87457, + "TargetStructureID": 87447, + "Label": "87457-87447 via Conventional from 87458 -> 87456", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87458, + "TargetID": 87456, + "Directional": true + }] + }, { + "ID": 18006, + "SourceStructureID": 87487, + "TargetStructureID": 606, + "Label": "87487-606 via Conventional from 87491 -> 47463", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87491, + "TargetID": 47463, + "Directional": true + }] + }, { + "ID": 18007, + "SourceStructureID": 87487, + "TargetStructureID": 6146, + "Label": "87487-6146 via Conventional from 87498 -> 87507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87498, + "TargetID": 87507, + "Directional": true + }] + }, { + "ID": 18008, + "SourceStructureID": 87493, + "TargetStructureID": 179, + "Label": "87493-179 via Conventional from 87494 -> 87492, 87494 -> 128178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87494, + "TargetID": 87492, + "Directional": true + }, { + "SourceID": 87494, + "TargetID": 128178, + "Directional": true + }] + }, { + "ID": 18009, + "SourceStructureID": 87496, + "TargetStructureID": 173, + "Label": "87496-173 via Conventional from 128145 -> 128146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128145, + "TargetID": 128146, + "Directional": true + }] + }, { + "ID": 18010, + "SourceStructureID": 87496, + "TargetStructureID": 179, + "Label": "87496-179 via Conventional from 87497 -> 87495", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87497, + "TargetID": 87495, + "Directional": true + }] + }, { + "ID": 18011, + "SourceStructureID": 87503, + "TargetStructureID": 593, + "Label": "87503-593 via Conventional from 87505 -> 87506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87505, + "TargetID": 87506, + "Directional": true + }] + }, { + "ID": 18012, + "SourceStructureID": 87531, + "TargetStructureID": 78909, + "Label": "87531-78909 via Conventional from 87532 -> 87530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87532, + "TargetID": 87530, + "Directional": true + }] + }, { + "ID": 18013, + "SourceStructureID": 87534, + "TargetStructureID": 87531, + "Label": "87534-87531 via Conventional from 87535 -> 87533", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87535, + "TargetID": 87533, + "Directional": true + }] + }, { + "ID": 18014, + "SourceStructureID": 87562, + "TargetStructureID": 14615, + "Label": "87562-14615 via Conventional from 87565 -> 87567, 87566 -> 87568", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87565, + "TargetID": 87567, + "Directional": true + }, { + "SourceID": 87566, + "TargetID": 87568, + "Directional": true + }] + }, { + "ID": 18015, + "SourceStructureID": 87569, + "TargetStructureID": 11043, + "Label": "87569-11043 via Conventional from 87570 -> 87571, 87575 -> 87578, 87576 -> 87577, 87579 -> 87580", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87570, + "TargetID": 87571, + "Directional": true + }, { + "SourceID": 87575, + "TargetID": 87578, + "Directional": true + }, { + "SourceID": 87576, + "TargetID": 87577, + "Directional": true + }, { + "SourceID": 87579, + "TargetID": 87580, + "Directional": true + }] + }, { + "ID": 18016, + "SourceStructureID": 87590, + "TargetStructureID": 78909, + "Label": "87590-78909 via Conventional from 87598 -> 87583", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87598, + "TargetID": 87583, + "Directional": true + }] + }, { + "ID": 18017, + "SourceStructureID": 87590, + "TargetStructureID": 88473, + "Label": "87590-88473 via Conventional from 87595 -> 88475", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87595, + "TargetID": 88475, + "Directional": true + }] + }, { + "ID": 18018, + "SourceStructureID": 87590, + "TargetStructureID": 88476, + "Label": "87590-88476 via Conventional from 87596 -> 88478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87596, + "TargetID": 88478, + "Directional": true + }] + }, { + "ID": 18019, + "SourceStructureID": 87590, + "TargetStructureID": 88485, + "Label": "87590-88485 via Conventional from 88484 -> 88487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88484, + "TargetID": 88487, + "Directional": true + }] + }, { + "ID": 18020, + "SourceStructureID": 87590, + "TargetStructureID": 88516, + "Label": "87590-88516 via Conventional from 88494 -> 88517", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88494, + "TargetID": 88517, + "Directional": true + }] + }, { + "ID": 18021, + "SourceStructureID": 87590, + "TargetStructureID": 88554, + "Label": "87590-88554 via Conventional from 88547 -> 88555", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88547, + "TargetID": 88555, + "Directional": true + }] + }, { + "ID": 18022, + "SourceStructureID": 87606, + "TargetStructureID": 5923, + "Label": "87606-5923 via Conventional from 87607 -> 9972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87607, + "TargetID": 9972, + "Directional": true + }] + }, { + "ID": 18023, + "SourceStructureID": 87606, + "TargetStructureID": 11043, + "Label": "87606-11043 via Conventional from 87608 -> 87609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87608, + "TargetID": 87609, + "Directional": true + }] + }, { + "ID": 18024, + "SourceStructureID": 87612, + "TargetStructureID": 78909, + "Label": "87612-78909 via Conventional from 87613 -> 87611", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87613, + "TargetID": 87611, + "Directional": true + }] + }, { + "ID": 18025, + "SourceStructureID": 87647, + "TargetStructureID": 78909, + "Label": "87647-78909 via Conventional from 87648 -> 87646", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87648, + "TargetID": 87646, + "Directional": true + }] + }, { + "ID": 18026, + "SourceStructureID": 87654, + "TargetStructureID": 78909, + "Label": "87654-78909 via Conventional from 87655 -> 87653", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87655, + "TargetID": 87653, + "Directional": true + }] + }, { + "ID": 18027, + "SourceStructureID": 87678, + "TargetStructureID": 273, + "Label": "87678-273 via Conventional from 87680 -> 87681, 87682 -> 87683, 87684 -> 87685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87680, + "TargetID": 87681, + "Directional": true + }, { + "SourceID": 87682, + "TargetID": 87683, + "Directional": true + }, { + "SourceID": 87684, + "TargetID": 87685, + "Directional": true + }] + }, { + "ID": 18028, + "SourceStructureID": 87721, + "TargetStructureID": 171, + "Label": "87721-171 via Conventional from 87722 -> 87720", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87722, + "TargetID": 87720, + "Directional": true + }] + }, { + "ID": 18029, + "SourceStructureID": 87754, + "TargetStructureID": 5394, + "Label": "87754-5394 via Conventional from 87755 -> 77100", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87755, + "TargetID": 77100, + "Directional": true + }] + }, { + "ID": 18030, + "SourceStructureID": 87808, + "TargetStructureID": 10961, + "Label": "87808-10961 via Conventional from 87809 -> 87807, 87810 -> 87811", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87809, + "TargetID": 87807, + "Directional": true + }, { + "SourceID": 87810, + "TargetID": 87811, + "Directional": true + }] + }, { + "ID": 18031, + "SourceStructureID": 87815, + "TargetStructureID": 177, + "Label": "87815-177 via Conventional from 87816 -> 27963", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87816, + "TargetID": 27963, + "Directional": true + }] + }, { + "ID": 18032, + "SourceStructureID": 87929, + "TargetStructureID": 518, + "Label": "87929-518 via Conventional from 87930 -> 3524, 87931 -> 3521", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87930, + "TargetID": 3524, + "Directional": true + }, { + "SourceID": 87931, + "TargetID": 3521, + "Directional": true + }] + }, { + "ID": 18033, + "SourceStructureID": 87934, + "TargetStructureID": 476, + "Label": "87934-476 via Conventional from 87935 -> 87933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 87935, + "TargetID": 87933, + "Directional": true + }] + }, { + "ID": 18034, + "SourceStructureID": 87972, + "TargetStructureID": 5107, + "Label": "87972-5107 via Adherens from 88029 -> 88030", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 88029, + "TargetID": 88030, + "Directional": true + }] + }, { + "ID": 18035, + "SourceStructureID": 87972, + "TargetStructureID": 44346, + "Label": "87972-44346 via Adherens from 88043 -> 88044", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 88043, + "TargetID": 88044, + "Directional": true + }] + }, { + "ID": 18036, + "SourceStructureID": 87972, + "TargetStructureID": 87972, + "Label": "87972-87972 via Ribbon Synapse from 88039 -> 88038", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88039, + "TargetID": 88038, + "Directional": true + }] + }, { + "ID": 18037, + "SourceStructureID": 88003, + "TargetStructureID": 87972, + "Label": "88003-87972 via Conventional from 88004 -> 88002", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88004, + "TargetID": 88002, + "Directional": true + }] + }, { + "ID": 18038, + "SourceStructureID": 88005, + "TargetStructureID": 88003, + "Label": "88005-88003 via Conventional from 88006 -> 88007", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88006, + "TargetID": 88007, + "Directional": true + }] + }, { + "ID": 18039, + "SourceStructureID": 88014, + "TargetStructureID": 87972, + "Label": "88014-87972 via Conventional from 88015 -> 88013", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88015, + "TargetID": 88013, + "Directional": true + }] + }, { + "ID": 18040, + "SourceStructureID": 88017, + "TargetStructureID": 69162, + "Label": "88017-69162 via Conventional from 88019 -> 69234", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88019, + "TargetID": 69234, + "Directional": true + }] + }, { + "ID": 18041, + "SourceStructureID": 88017, + "TargetStructureID": 88014, + "Label": "88017-88014 via Conventional from 88018 -> 88016", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88018, + "TargetID": 88016, + "Directional": true + }] + }, { + "ID": 18042, + "SourceStructureID": 88036, + "TargetStructureID": 87972, + "Label": "88036-87972 via Ribbon Synapse from 88037 -> 88035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88037, + "TargetID": 88035, + "Directional": true + }] + }, { + "ID": 18043, + "SourceStructureID": 88055, + "TargetStructureID": 44346, + "Label": "88055-44346 via Conventional from 88056 -> 44443", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88056, + "TargetID": 44443, + "Directional": true + }] + }, { + "ID": 18044, + "SourceStructureID": 88125, + "TargetStructureID": 85856, + "Label": "88125-85856 via Conventional from 88126 -> 85888", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88126, + "TargetID": 85888, + "Directional": true + }] + }, { + "ID": 18045, + "SourceStructureID": 88127, + "TargetStructureID": 85856, + "Label": "88127-85856 via Conventional from 88128 -> 11883", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88128, + "TargetID": 11883, + "Directional": true + }] + }, { + "ID": 18046, + "SourceStructureID": 88129, + "TargetStructureID": 88127, + "Label": "88129-88127 via Conventional from 88130 -> 88131", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88130, + "TargetID": 88131, + "Directional": true + }] + }, { + "ID": 18047, + "SourceStructureID": 88132, + "TargetStructureID": 85856, + "Label": "88132-85856 via Conventional from 88133 -> 11881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88133, + "TargetID": 11881, + "Directional": true + }] + }, { + "ID": 18048, + "SourceStructureID": 88139, + "TargetStructureID": 7114, + "Label": "88139-7114 via Conventional from 88140 -> 88138", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88140, + "TargetID": 88138, + "Directional": true + }] + }, { + "ID": 18049, + "SourceStructureID": 88159, + "TargetStructureID": 6169, + "Label": "88159-6169 via Ribbon Synapse from 88163 -> 88191", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88163, + "TargetID": 88191, + "Directional": true + }] + }, { + "ID": 18050, + "SourceStructureID": 88159, + "TargetStructureID": 88154, + "Label": "88159-88154 via Ribbon Synapse from 88161 -> 88158", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88161, + "TargetID": 88158, + "Directional": true + }] + }, { + "ID": 18051, + "SourceStructureID": 88159, + "TargetStructureID": 88173, + "Label": "88159-88173 via Ribbon Synapse from 88176 -> 88175", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88176, + "TargetID": 88175, + "Directional": true + }] + }, { + "ID": 18052, + "SourceStructureID": 88199, + "TargetStructureID": 59482, + "Label": "88199-59482 via Conventional from 88241 -> 88242", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88241, + "TargetID": 88242, + "Directional": true + }] + }, { + "ID": 18053, + "SourceStructureID": 88199, + "TargetStructureID": 61450, + "Label": "88199-61450 via Conventional from 88243 -> 61490", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88243, + "TargetID": 61490, + "Directional": true + }] + }, { + "ID": 18054, + "SourceStructureID": 88199, + "TargetStructureID": 88205, + "Label": "88199-88205 via Conventional from 88203 -> 88207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88203, + "TargetID": 88207, + "Directional": true + }] + }, { + "ID": 18055, + "SourceStructureID": 88199, + "TargetStructureID": 88215, + "Label": "88199-88215 via Conventional from 88214 -> 88216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88214, + "TargetID": 88216, + "Directional": true + }] + }, { + "ID": 18056, + "SourceStructureID": 88199, + "TargetStructureID": 88223, + "Label": "88199-88223 via Conventional from 88222 -> 88224", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88222, + "TargetID": 88224, + "Directional": true + }] + }, { + "ID": 18057, + "SourceStructureID": 88209, + "TargetStructureID": 88199, + "Label": "88209-88199 via Conventional from 88210 -> 88208", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88210, + "TargetID": 88208, + "Directional": true + }] + }, { + "ID": 18058, + "SourceStructureID": 88212, + "TargetStructureID": 88199, + "Label": "88212-88199 via Conventional from 88213 -> 88211", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88213, + "TargetID": 88211, + "Directional": true + }] + }, { + "ID": 18059, + "SourceStructureID": 88220, + "TargetStructureID": 88199, + "Label": "88220-88199 via Conventional from 88221 -> 88219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88221, + "TargetID": 88219, + "Directional": true + }] + }, { + "ID": 18060, + "SourceStructureID": 88226, + "TargetStructureID": 88199, + "Label": "88226-88199 via Conventional from 88227 -> 88225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88227, + "TargetID": 88225, + "Directional": true + }] + }, { + "ID": 18061, + "SourceStructureID": 88230, + "TargetStructureID": 88199, + "Label": "88230-88199 via Conventional from 88231 -> 88229", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88231, + "TargetID": 88229, + "Directional": true + }] + }, { + "ID": 18062, + "SourceStructureID": 88239, + "TargetStructureID": 88199, + "Label": "88239-88199 via Conventional from 88240 -> 88238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88240, + "TargetID": 88238, + "Directional": true + }] + }, { + "ID": 18063, + "SourceStructureID": 88246, + "TargetStructureID": 88257, + "Label": "88246-88257 via Conventional from 88256 -> 88258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88256, + "TargetID": 88258, + "Directional": true + }] + }, { + "ID": 18064, + "SourceStructureID": 88247, + "TargetStructureID": 88252, + "Label": "88247-88252 via Ribbon Synapse from 88251 -> 88253", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88251, + "TargetID": 88253, + "Directional": true + }] + }, { + "ID": 18065, + "SourceStructureID": 88252, + "TargetStructureID": 88247, + "Label": "88252-88247 via Conventional from 88254 -> 88255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88254, + "TargetID": 88255, + "Directional": true + }] + }, { + "ID": 18066, + "SourceStructureID": 88260, + "TargetStructureID": 176, + "Label": "88260-176 via Conventional from 88262 -> 5857, 88278 -> 5894, 88282 -> 88286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88262, + "TargetID": 5857, + "Directional": true + }, { + "SourceID": 88278, + "TargetID": 5894, + "Directional": true + }, { + "SourceID": 88282, + "TargetID": 88286, + "Directional": true + }] + }, { + "ID": 18067, + "SourceStructureID": 88260, + "TargetStructureID": 43716, + "Label": "88260-43716 via Conventional from 88296 -> 43729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88296, + "TargetID": 43729, + "Directional": true + }] + }, { + "ID": 18068, + "SourceStructureID": 88260, + "TargetStructureID": 88274, + "Label": "88260-88274 via Conventional from 88273 -> 88275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88273, + "TargetID": 88275, + "Directional": true + }] + }, { + "ID": 18069, + "SourceStructureID": 88260, + "TargetStructureID": 88290, + "Label": "88260-88290 via Conventional from 88288 -> 88293", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88288, + "TargetID": 88293, + "Directional": true + }] + }, { + "ID": 18070, + "SourceStructureID": 88260, + "TargetStructureID": 88305, + "Label": "88260-88305 via Conventional from 88304 -> 88306", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88304, + "TargetID": 88306, + "Directional": true + }] + }, { + "ID": 18071, + "SourceStructureID": 88266, + "TargetStructureID": 88260, + "Label": "88266-88260 via Conventional from 88267 -> 88265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88267, + "TargetID": 88265, + "Directional": true + }] + }, { + "ID": 18072, + "SourceStructureID": 88270, + "TargetStructureID": 10872, + "Label": "88270-10872 via Conventional from 88280 -> 88281, 88283 -> 88284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88280, + "TargetID": 88281, + "Directional": true + }, { + "SourceID": 88283, + "TargetID": 88284, + "Directional": true + }] + }, { + "ID": 18073, + "SourceStructureID": 88274, + "TargetStructureID": 595, + "Label": "88274-595 via Conventional from 88276 -> 46674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88276, + "TargetID": 46674, + "Directional": true + }] + }, { + "ID": 18074, + "SourceStructureID": 88290, + "TargetStructureID": 5637, + "Label": "88290-5637 via Conventional from 88291 -> 88292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88291, + "TargetID": 88292, + "Directional": true + }] + }, { + "ID": 18075, + "SourceStructureID": 88300, + "TargetStructureID": 88260, + "Label": "88300-88260 via Conventional from 88301 -> 88302", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88301, + "TargetID": 88302, + "Directional": true + }] + }, { + "ID": 18076, + "SourceStructureID": 88313, + "TargetStructureID": 88260, + "Label": "88313-88260 via Conventional from 88314 -> 88312", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88314, + "TargetID": 88312, + "Directional": true + }] + }, { + "ID": 18077, + "SourceStructureID": 88334, + "TargetStructureID": 170, + "Label": "88334-170 via Conventional from 88337 -> 1128", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88337, + "TargetID": 1128, + "Directional": true + }] + }, { + "ID": 18078, + "SourceStructureID": 88344, + "TargetStructureID": 8580, + "Label": "88344-8580 via Conventional from 88345 -> 88346", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88345, + "TargetID": 88346, + "Directional": true + }] + }, { + "ID": 18079, + "SourceStructureID": 88365, + "TargetStructureID": 606, + "Label": "88365-606 via Conventional from 88391 -> 51995", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88391, + "TargetID": 51995, + "Directional": true + }] + }, { + "ID": 18080, + "SourceStructureID": 88370, + "TargetStructureID": 88365, + "Label": "88370-88365 via Conventional from 88373 -> 88374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88373, + "TargetID": 88374, + "Directional": true + }] + }, { + "ID": 18081, + "SourceStructureID": 88375, + "TargetStructureID": 170, + "Label": "88375-170 via Conventional from 88376 -> 1200", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88376, + "TargetID": 1200, + "Directional": true + }] + }, { + "ID": 18082, + "SourceStructureID": 88395, + "TargetStructureID": 6141, + "Label": "88395-6141 via Conventional from 88452 -> 61359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88452, + "TargetID": 61359, + "Directional": true + }] + }, { + "ID": 18083, + "SourceStructureID": 88405, + "TargetStructureID": 170, + "Label": "88405-170 via Conventional from 88409 -> 1214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88409, + "TargetID": 1214, + "Directional": true + }] + }, { + "ID": 18084, + "SourceStructureID": 88413, + "TargetStructureID": 170, + "Label": "88413-170 via Conventional from 88420 -> 1212", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88420, + "TargetID": 1212, + "Directional": true + }] + }, { + "ID": 18085, + "SourceStructureID": 88450, + "TargetStructureID": 170, + "Label": "88450-170 via Conventional from 88451 -> 1220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88451, + "TargetID": 1220, + "Directional": true + }] + }, { + "ID": 18086, + "SourceStructureID": 88453, + "TargetStructureID": 170, + "Label": "88453-170 via Conventional from 88454 -> 88455", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88454, + "TargetID": 88455, + "Directional": true + }] + }, { + "ID": 18087, + "SourceStructureID": 88459, + "TargetStructureID": 88395, + "Label": "88459-88395 via Conventional from 88466 -> 88438", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88466, + "TargetID": 88438, + "Directional": true + }] + }, { + "ID": 18088, + "SourceStructureID": 88459, + "TargetStructureID": 88468, + "Label": "88459-88468 via Conventional from 88467 -> 88469", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88467, + "TargetID": 88469, + "Directional": true + }] + }, { + "ID": 18089, + "SourceStructureID": 88462, + "TargetStructureID": 170, + "Label": "88462-170 via Conventional from 88465 -> 1225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88465, + "TargetID": 1225, + "Directional": true + }] + }, { + "ID": 18090, + "SourceStructureID": 88493, + "TargetStructureID": 170, + "Label": "88493-170 via Conventional from 88496 -> 51173", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88496, + "TargetID": 51173, + "Directional": true + }] + }, { + "ID": 18091, + "SourceStructureID": 88513, + "TargetStructureID": 170, + "Label": "88513-170 via Conventional from 88514 -> 47931", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88514, + "TargetID": 47931, + "Directional": true + }] + }, { + "ID": 18092, + "SourceStructureID": 88521, + "TargetStructureID": 170, + "Label": "88521-170 via Conventional from 88526 -> 47932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88526, + "TargetID": 47932, + "Directional": true + }] + }, { + "ID": 18093, + "SourceStructureID": 88550, + "TargetStructureID": 170, + "Label": "88550-170 via Conventional from 88551 -> 88552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88551, + "TargetID": 88552, + "Directional": true + }] + }, { + "ID": 18094, + "SourceStructureID": 88553, + "TargetStructureID": 170, + "Label": "88553-170 via Conventional from 88557 -> 1231", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88557, + "TargetID": 1231, + "Directional": true + }] + }, { + "ID": 18095, + "SourceStructureID": 88594, + "TargetStructureID": 277, + "Label": "88594-277 via Conventional from 88605 -> 88607, 123546 -> 123545", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88605, + "TargetID": 88607, + "Directional": true + }, { + "SourceID": 123546, + "TargetID": 123545, + "Directional": true + }] + }, { + "ID": 18096, + "SourceStructureID": 88594, + "TargetStructureID": 88597, + "Label": "88594-88597 via Conventional from 88596 -> 88598", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88596, + "TargetID": 88598, + "Directional": true + }] + }, { + "ID": 18097, + "SourceStructureID": 88594, + "TargetStructureID": 88618, + "Label": "88594-88618 via Conventional from 88617 -> 88619", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88617, + "TargetID": 88619, + "Directional": true + }] + }, { + "ID": 18098, + "SourceStructureID": 88608, + "TargetStructureID": 277, + "Label": "88608-277 via Conventional from 88610 -> 88612", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88610, + "TargetID": 88612, + "Directional": true + }] + }, { + "ID": 18099, + "SourceStructureID": 88614, + "TargetStructureID": 88608, + "Label": "88614-88608 via Conventional from 88616 -> 88613", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88616, + "TargetID": 88613, + "Directional": true + }] + }, { + "ID": 18100, + "SourceStructureID": 88646, + "TargetStructureID": 5606, + "Label": "88646-5606 via Conventional from 88650 -> 53864", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88650, + "TargetID": 53864, + "Directional": true + }] + }, { + "ID": 18101, + "SourceStructureID": 88666, + "TargetStructureID": 88675, + "Label": "88666-88675 via Conventional from 88674 -> 88676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88674, + "TargetID": 88676, + "Directional": true + }] + }, { + "ID": 18102, + "SourceStructureID": 88666, + "TargetStructureID": 88726, + "Label": "88666-88726 via Conventional from 88725 -> 88727", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88725, + "TargetID": 88727, + "Directional": true + }] + }, { + "ID": 18103, + "SourceStructureID": 88669, + "TargetStructureID": 88666, + "Label": "88669-88666 via Conventional from 88670 -> 88668", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88670, + "TargetID": 88668, + "Directional": true + }] + }, { + "ID": 18104, + "SourceStructureID": 88678, + "TargetStructureID": 88666, + "Label": "88678-88666 via Conventional from 88679 -> 88677", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88679, + "TargetID": 88677, + "Directional": true + }] + }, { + "ID": 18105, + "SourceStructureID": 88682, + "TargetStructureID": 170, + "Label": "88682-170 via Conventional from 88686 -> 88688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88686, + "TargetID": 88688, + "Directional": true + }] + }, { + "ID": 18106, + "SourceStructureID": 88684, + "TargetStructureID": 11238, + "Label": "88684-11238 via Ribbon Synapse from 88685 -> 88683", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 88685, + "TargetID": 88683, + "Directional": true + }] + }, { + "ID": 18107, + "SourceStructureID": 88690, + "TargetStructureID": 170, + "Label": "88690-170 via Conventional from 88691 -> 28365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88691, + "TargetID": 28365, + "Directional": true + }] + }, { + "ID": 18108, + "SourceStructureID": 88695, + "TargetStructureID": 88666, + "Label": "88695-88666 via Conventional from 88696 -> 88694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88696, + "TargetID": 88694, + "Directional": true + }] + }, { + "ID": 18109, + "SourceStructureID": 88711, + "TargetStructureID": 170, + "Label": "88711-170 via Conventional from 88712 -> 1240", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88712, + "TargetID": 1240, + "Directional": true + }] + }, { + "ID": 18110, + "SourceStructureID": 88715, + "TargetStructureID": 170, + "Label": "88715-170 via Conventional from 88716 -> 1241", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88716, + "TargetID": 1241, + "Directional": true + }] + }, { + "ID": 18111, + "SourceStructureID": 88715, + "TargetStructureID": 606, + "Label": "88715-606 via Conventional from 99419 -> 52076", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99419, + "TargetID": 52076, + "Directional": true + }] + }, { + "ID": 18112, + "SourceStructureID": 88723, + "TargetStructureID": 88666, + "Label": "88723-88666 via Conventional from 88724 -> 88722", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88724, + "TargetID": 88722, + "Directional": true + }] + }, { + "ID": 18113, + "SourceStructureID": 88740, + "TargetStructureID": 606, + "Label": "88740-606 via Conventional from 88742 -> 54149", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88742, + "TargetID": 54149, + "Directional": true + }] + }, { + "ID": 18114, + "SourceStructureID": 88740, + "TargetStructureID": 88737, + "Label": "88740-88737 via Conventional from 88741 -> 88739", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88741, + "TargetID": 88739, + "Directional": true + }] + }, { + "ID": 18115, + "SourceStructureID": 88747, + "TargetStructureID": 170, + "Label": "88747-170 via Conventional from 88748 -> 88749", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88748, + "TargetID": 88749, + "Directional": true + }] + }, { + "ID": 18116, + "SourceStructureID": 88761, + "TargetStructureID": 422, + "Label": "88761-422 via Conventional from 88791 -> 5690, 88796 -> 5691", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88791, + "TargetID": 5690, + "Directional": true + }, { + "SourceID": 88796, + "TargetID": 5691, + "Directional": true + }] + }, { + "ID": 18117, + "SourceStructureID": 88761, + "TargetStructureID": 464, + "Label": "88761-464 via Conventional from 88824 -> 87802, 88825 -> 87802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88824, + "TargetID": 87802, + "Directional": true + }, { + "SourceID": 88825, + "TargetID": 87802, + "Directional": true + }] + }, { + "ID": 18118, + "SourceStructureID": 88762, + "TargetStructureID": 88774, + "Label": "88762-88774 via Conventional from 88773 -> 88780", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88773, + "TargetID": 88780, + "Directional": true + }] + }, { + "ID": 18119, + "SourceStructureID": 88781, + "TargetStructureID": 170, + "Label": "88781-170 via Conventional from 88786 -> 87284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88786, + "TargetID": 87284, + "Directional": true + }] + }, { + "ID": 18120, + "SourceStructureID": 88790, + "TargetStructureID": 170, + "Label": "88790-170 via Conventional from 88792 -> 45396", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88792, + "TargetID": 45396, + "Directional": true + }] + }, { + "ID": 18121, + "SourceStructureID": 88801, + "TargetStructureID": 170, + "Label": "88801-170 via Conventional from 88802 -> 88803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88802, + "TargetID": 88803, + "Directional": true + }] + }, { + "ID": 18122, + "SourceStructureID": 88805, + "TargetStructureID": 170, + "Label": "88805-170 via Conventional from 88806 -> 87286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88806, + "TargetID": 87286, + "Directional": true + }] + }, { + "ID": 18123, + "SourceStructureID": 88817, + "TargetStructureID": 170, + "Label": "88817-170 via Conventional from 88820 -> 1336", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88820, + "TargetID": 1336, + "Directional": true + }] + }, { + "ID": 18124, + "SourceStructureID": 88822, + "TargetStructureID": 170, + "Label": "88822-170 via Conventional from 88944 -> 28376", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88944, + "TargetID": 28376, + "Directional": true + }] + }, { + "ID": 18125, + "SourceStructureID": 88833, + "TargetStructureID": 517, + "Label": "88833-517 via Conventional from 88834 -> 88832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88834, + "TargetID": 88832, + "Directional": true + }] + }, { + "ID": 18126, + "SourceStructureID": 88833, + "TargetStructureID": 61868, + "Label": "88833-61868 via Conventional from 123157 -> 81982", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123157, + "TargetID": 81982, + "Directional": true + }] + }, { + "ID": 18127, + "SourceStructureID": 88841, + "TargetStructureID": 11250, + "Label": "88841-11250 via Conventional from 88842 -> 88840", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88842, + "TargetID": 88840, + "Directional": true + }] + }, { + "ID": 18128, + "SourceStructureID": 88864, + "TargetStructureID": 579, + "Label": "88864-579 via Conventional from 88865 -> 88866, 88872 -> 88871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88865, + "TargetID": 88866, + "Directional": true + }, { + "SourceID": 88872, + "TargetID": 88871, + "Directional": true + }] + }, { + "ID": 18129, + "SourceStructureID": 88912, + "TargetStructureID": 5451, + "Label": "88912-5451 via Conventional from 88914 -> 44953", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88914, + "TargetID": 44953, + "Directional": true + }] + }, { + "ID": 18130, + "SourceStructureID": 88915, + "TargetStructureID": 88912, + "Label": "88915-88912 via Conventional from 88916 -> 88913", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88916, + "TargetID": 88913, + "Directional": true + }] + }, { + "ID": 18131, + "SourceStructureID": 88919, + "TargetStructureID": 88929, + "Label": "88919-88929 via Conventional from 88920 -> 88930", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88920, + "TargetID": 88930, + "Directional": true + }] + }, { + "ID": 18132, + "SourceStructureID": 88919, + "TargetStructureID": 88936, + "Label": "88919-88936 via Conventional from 88938 -> 88937", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88938, + "TargetID": 88937, + "Directional": true + }] + }, { + "ID": 18133, + "SourceStructureID": 88923, + "TargetStructureID": 88919, + "Label": "88923-88919 via Conventional from 88924 -> 88921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88924, + "TargetID": 88921, + "Directional": true + }] + }, { + "ID": 18134, + "SourceStructureID": 88933, + "TargetStructureID": 88919, + "Label": "88933-88919 via Conventional from 88934 -> 88932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88934, + "TargetID": 88932, + "Directional": true + }] + }, { + "ID": 18135, + "SourceStructureID": 88945, + "TargetStructureID": 170, + "Label": "88945-170 via Conventional from 88963 -> 88964", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88963, + "TargetID": 88964, + "Directional": true + }] + }, { + "ID": 18136, + "SourceStructureID": 88947, + "TargetStructureID": 170, + "Label": "88947-170 via Conventional from 88961 -> 88962", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88961, + "TargetID": 88962, + "Directional": true + }] + }, { + "ID": 18137, + "SourceStructureID": 88954, + "TargetStructureID": 170, + "Label": "88954-170 via Conventional from 88955 -> 88956", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88955, + "TargetID": 88956, + "Directional": true + }] + }, { + "ID": 18138, + "SourceStructureID": 88957, + "TargetStructureID": 170, + "Label": "88957-170 via Conventional from 88958 -> 88959", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88958, + "TargetID": 88959, + "Directional": true + }] + }, { + "ID": 18139, + "SourceStructureID": 88965, + "TargetStructureID": 170, + "Label": "88965-170 via Conventional from 88966 -> 88967", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88966, + "TargetID": 88967, + "Directional": true + }] + }, { + "ID": 18140, + "SourceStructureID": 88984, + "TargetStructureID": 606, + "Label": "88984-606 via Conventional from 88989 -> 47417", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88989, + "TargetID": 47417, + "Directional": true + }] + }, { + "ID": 18141, + "SourceStructureID": 88984, + "TargetStructureID": 5645, + "Label": "88984-5645 via Conventional from 88987 -> 39487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88987, + "TargetID": 39487, + "Directional": true + }] + }, { + "ID": 18142, + "SourceStructureID": 88996, + "TargetStructureID": 170, + "Label": "88996-170 via Conventional from 88997 -> 88998", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88997, + "TargetID": 88998, + "Directional": true + }] + }, { + "ID": 18143, + "SourceStructureID": 89000, + "TargetStructureID": 170, + "Label": "89000-170 via Conventional from 89001 -> 89002", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89001, + "TargetID": 89002, + "Directional": true + }] + }, { + "ID": 18144, + "SourceStructureID": 89008, + "TargetStructureID": 4569, + "Label": "89008-4569 via Conventional from 99020 -> 47550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99020, + "TargetID": 47550, + "Directional": true + }] + }, { + "ID": 18145, + "SourceStructureID": 89016, + "TargetStructureID": 170, + "Label": "89016-170 via Conventional from 133913 -> 133912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133913, + "TargetID": 133912, + "Directional": true + }] + }, { + "ID": 18146, + "SourceStructureID": 89024, + "TargetStructureID": 170, + "Label": "89024-170 via Conventional from 89025 -> 89026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89025, + "TargetID": 89026, + "Directional": true + }] + }, { + "ID": 18147, + "SourceStructureID": 89032, + "TargetStructureID": 49184, + "Label": "89032-49184 via Conventional from 118213 -> 49353", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118213, + "TargetID": 49353, + "Directional": true + }] + }, { + "ID": 18148, + "SourceStructureID": 89032, + "TargetStructureID": 89029, + "Label": "89032-89029 via Conventional from 89033 -> 89031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89033, + "TargetID": 89031, + "Directional": true + }] + }, { + "ID": 18149, + "SourceStructureID": 89039, + "TargetStructureID": 176, + "Label": "89039-176 via Conventional from 89053 -> 5847", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89053, + "TargetID": 5847, + "Directional": true + }] + }, { + "ID": 18150, + "SourceStructureID": 89039, + "TargetStructureID": 595, + "Label": "89039-595 via Conventional from 89054 -> 46689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89054, + "TargetID": 46689, + "Directional": true + }] + }, { + "ID": 18151, + "SourceStructureID": 89039, + "TargetStructureID": 89046, + "Label": "89039-89046 via Conventional from 89043 -> 89047", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89043, + "TargetID": 89047, + "Directional": true + }] + }, { + "ID": 18152, + "SourceStructureID": 89042, + "TargetStructureID": 170, + "Label": "89042-170 via Conventional from 89044 -> 1350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89044, + "TargetID": 1350, + "Directional": true + }] + }, { + "ID": 18153, + "SourceStructureID": 89066, + "TargetStructureID": 170, + "Label": "89066-170 via Conventional from 89067 -> 89065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89067, + "TargetID": 89065, + "Directional": true + }] + }, { + "ID": 18154, + "SourceStructureID": 89066, + "TargetStructureID": 89063, + "Label": "89066-89063 via Conventional from 89067 -> 89068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89067, + "TargetID": 89068, + "Directional": true + }] + }, { + "ID": 18155, + "SourceStructureID": 89073, + "TargetStructureID": 170, + "Label": "89073-170 via Conventional from 89076 -> 89069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89076, + "TargetID": 89069, + "Directional": true + }] + }, { + "ID": 18156, + "SourceStructureID": 89085, + "TargetStructureID": 170, + "Label": "89085-170 via Conventional from 89515 -> 1248", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89515, + "TargetID": 1248, + "Directional": true + }] + }, { + "ID": 18157, + "SourceStructureID": 89086, + "TargetStructureID": 89175, + "Label": "89086-89175 via Conventional from 89176 -> 89177", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89176, + "TargetID": 89177, + "Directional": true + }] + }, { + "ID": 18158, + "SourceStructureID": 89097, + "TargetStructureID": 5284, + "Label": "89097-5284 via Conventional from 89099 -> 23495", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89099, + "TargetID": 23495, + "Directional": true + }] + }, { + "ID": 18159, + "SourceStructureID": 89097, + "TargetStructureID": 53407, + "Label": "89097-53407 via Conventional from 89098 -> 53409", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89098, + "TargetID": 53409, + "Directional": true + }] + }, { + "ID": 18160, + "SourceStructureID": 89106, + "TargetStructureID": 70500, + "Label": "89106-70500 via Conventional from 89109 -> 89103, 89110 -> 89104, 89111 -> 89105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89109, + "TargetID": 89103, + "Directional": true + }, { + "SourceID": 89110, + "TargetID": 89104, + "Directional": true + }, { + "SourceID": 89111, + "TargetID": 89105, + "Directional": true + }] + }, { + "ID": 18161, + "SourceStructureID": 89120, + "TargetStructureID": 89133, + "Label": "89120-89133 via Ribbon Synapse from 89132 -> 89134", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89132, + "TargetID": 89134, + "Directional": true + }] + }, { + "ID": 18162, + "SourceStructureID": 89122, + "TargetStructureID": 89119, + "Label": "89122-89119 via Conventional from 89123 -> 89121", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89123, + "TargetID": 89121, + "Directional": true + }] + }, { + "ID": 18163, + "SourceStructureID": 89124, + "TargetStructureID": 1021, + "Label": "89124-1021 via Conventional from 125651 -> 125652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125651, + "TargetID": 125652, + "Directional": true + }] + }, { + "ID": 18164, + "SourceStructureID": 89124, + "TargetStructureID": 6120, + "Label": "89124-6120 via Conventional from 89339 -> 110556", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89339, + "TargetID": 110556, + "Directional": true + }] + }, { + "ID": 18165, + "SourceStructureID": 89124, + "TargetStructureID": 22974, + "Label": "89124-22974 via Conventional from 89330 -> 89331", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89330, + "TargetID": 89331, + "Directional": true + }] + }, { + "ID": 18166, + "SourceStructureID": 89124, + "TargetStructureID": 89355, + "Label": "89124-89355 via Conventional from 89353 -> 89357", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89353, + "TargetID": 89357, + "Directional": true + }] + }, { + "ID": 18167, + "SourceStructureID": 89127, + "TargetStructureID": 89124, + "Label": "89127-89124 via Cistern Pre from 89131 -> 89130", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 89131, + "TargetID": 89130, + "Directional": true + }] + }, { + "ID": 18168, + "SourceStructureID": 89127, + "TargetStructureID": 89124, + "Label": "89127-89124 via Conventional from 89128 -> 89126", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89128, + "TargetID": 89126, + "Directional": true + }] + }, { + "ID": 18169, + "SourceStructureID": 89136, + "TargetStructureID": 87224, + "Label": "89136-87224 via Conventional from 89138 -> 89139", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89138, + "TargetID": 89139, + "Directional": true + }] + }, { + "ID": 18170, + "SourceStructureID": 89136, + "TargetStructureID": 89133, + "Label": "89136-89133 via Conventional from 89137 -> 89135", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89137, + "TargetID": 89135, + "Directional": true + }] + }, { + "ID": 18171, + "SourceStructureID": 89157, + "TargetStructureID": 168, + "Label": "89157-168 via Conventional from 89158 -> 89169", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89158, + "TargetID": 89169, + "Directional": true + }] + }, { + "ID": 18172, + "SourceStructureID": 89160, + "TargetStructureID": 89120, + "Label": "89160-89120 via Conventional from 89162 -> 89159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89162, + "TargetID": 89159, + "Directional": true + }] + }, { + "ID": 18173, + "SourceStructureID": 89175, + "TargetStructureID": 170, + "Label": "89175-170 via Conventional from 89178 -> 28367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89178, + "TargetID": 28367, + "Directional": true + }] + }, { + "ID": 18174, + "SourceStructureID": 89181, + "TargetStructureID": 170, + "Label": "89181-170 via Conventional from 89184 -> 1358", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89184, + "TargetID": 1358, + "Directional": true + }] + }, { + "ID": 18175, + "SourceStructureID": 89185, + "TargetStructureID": 170, + "Label": "89185-170 via Conventional from 89186 -> 28377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89186, + "TargetID": 28377, + "Directional": true + }] + }, { + "ID": 18176, + "SourceStructureID": 89193, + "TargetStructureID": 170, + "Label": "89193-170 via Conventional from 89194 -> 89195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89194, + "TargetID": 89195, + "Directional": true + }] + }, { + "ID": 18177, + "SourceStructureID": 89193, + "TargetStructureID": 71882, + "Label": "89193-71882 via Conventional from 90414 -> 90413", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90414, + "TargetID": 90413, + "Directional": true + }] + }, { + "ID": 18178, + "SourceStructureID": 89199, + "TargetStructureID": 170, + "Label": "89199-170 via Conventional from 89200 -> 1356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89200, + "TargetID": 1356, + "Directional": true + }] + }, { + "ID": 18179, + "SourceStructureID": 89222, + "TargetStructureID": 170, + "Label": "89222-170 via Conventional from 89223 -> 28378", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89223, + "TargetID": 28378, + "Directional": true + }] + }, { + "ID": 18180, + "SourceStructureID": 89231, + "TargetStructureID": 170, + "Label": "89231-170 via Conventional from 89237 -> 28381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89237, + "TargetID": 28381, + "Directional": true + }] + }, { + "ID": 18181, + "SourceStructureID": 89233, + "TargetStructureID": 419, + "Label": "89233-419 via Conventional from 89238 -> 89242", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89238, + "TargetID": 89242, + "Directional": true + }] + }, { + "ID": 18182, + "SourceStructureID": 89233, + "TargetStructureID": 5118, + "Label": "89233-5118 via Conventional from 89241 -> 6541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89241, + "TargetID": 6541, + "Directional": true + }] + }, { + "ID": 18183, + "SourceStructureID": 89240, + "TargetStructureID": 170, + "Label": "89240-170 via Conventional from 89245 -> 28380", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89245, + "TargetID": 28380, + "Directional": true + }] + }, { + "ID": 18184, + "SourceStructureID": 89248, + "TargetStructureID": 170, + "Label": "89248-170 via Conventional from 89249 -> 1281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89249, + "TargetID": 1281, + "Directional": true + }] + }, { + "ID": 18185, + "SourceStructureID": 89253, + "TargetStructureID": 591, + "Label": "89253-591 via Ribbon Synapse from 89254 -> 10298", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89254, + "TargetID": 10298, + "Directional": true + }] + }, { + "ID": 18186, + "SourceStructureID": 89285, + "TargetStructureID": 11246, + "Label": "89285-11246 via Conventional from 89286 -> 89281, 89287 -> 89282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89286, + "TargetID": 89281, + "Directional": true + }, { + "SourceID": 89287, + "TargetID": 89282, + "Directional": true + }] + }, { + "ID": 18187, + "SourceStructureID": 89305, + "TargetStructureID": 5514, + "Label": "89305-5514 via Conventional from 89308 -> 89309", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89308, + "TargetID": 89309, + "Directional": true + }] + }, { + "ID": 18188, + "SourceStructureID": 89305, + "TargetStructureID": 10826, + "Label": "89305-10826 via Conventional from 89306 -> 89307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89306, + "TargetID": 89307, + "Directional": true + }] + }, { + "ID": 18189, + "SourceStructureID": 89317, + "TargetStructureID": 89124, + "Label": "89317-89124 via Conventional from 89321 -> 89316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89321, + "TargetID": 89316, + "Directional": true + }] + }, { + "ID": 18190, + "SourceStructureID": 89328, + "TargetStructureID": 89124, + "Label": "89328-89124 via Conventional from 89329 -> 89327", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89329, + "TargetID": 89327, + "Directional": true + }] + }, { + "ID": 18191, + "SourceStructureID": 89347, + "TargetStructureID": 6120, + "Label": "89347-6120 via Conventional from 89348 -> 110551", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89348, + "TargetID": 110551, + "Directional": true + }] + }, { + "ID": 18192, + "SourceStructureID": 89359, + "TargetStructureID": 170, + "Label": "89359-170 via Conventional from 89361 -> 89362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89361, + "TargetID": 89362, + "Directional": true + }] + }, { + "ID": 18193, + "SourceStructureID": 89372, + "TargetStructureID": 170, + "Label": "89372-170 via Conventional from 89373 -> 89374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89373, + "TargetID": 89374, + "Directional": true + }] + }, { + "ID": 18194, + "SourceStructureID": 89378, + "TargetStructureID": 4569, + "Label": "89378-4569 via Conventional from 98923 -> 30852", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98923, + "TargetID": 30852, + "Directional": true + }] + }, { + "ID": 18195, + "SourceStructureID": 89388, + "TargetStructureID": 170, + "Label": "89388-170 via Conventional from 89389 -> 89390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89389, + "TargetID": 89390, + "Directional": true + }] + }, { + "ID": 18196, + "SourceStructureID": 89388, + "TargetStructureID": 4569, + "Label": "89388-4569 via Conventional from 98957 -> 98956", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98957, + "TargetID": 98956, + "Directional": true + }] + }, { + "ID": 18197, + "SourceStructureID": 89391, + "TargetStructureID": 170, + "Label": "89391-170 via Conventional from 89393 -> 89394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89393, + "TargetID": 89394, + "Directional": true + }] + }, { + "ID": 18198, + "SourceStructureID": 89397, + "TargetStructureID": 170, + "Label": "89397-170 via Conventional from 89398 -> 89399", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89398, + "TargetID": 89399, + "Directional": true + }] + }, { + "ID": 18199, + "SourceStructureID": 89407, + "TargetStructureID": 4569, + "Label": "89407-4569 via Conventional from 98673 -> 98672", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98673, + "TargetID": 98672, + "Directional": true + }] + }, { + "ID": 18200, + "SourceStructureID": 89411, + "TargetStructureID": 170, + "Label": "89411-170 via Conventional from 89415 -> 89416", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89415, + "TargetID": 89416, + "Directional": true + }] + }, { + "ID": 18201, + "SourceStructureID": 89413, + "TargetStructureID": 5396, + "Label": "89413-5396 via Conventional from 89414 -> 89412", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89414, + "TargetID": 89412, + "Directional": true + }] + }, { + "ID": 18202, + "SourceStructureID": 89420, + "TargetStructureID": 518, + "Label": "89420-518 via Conventional from 89422 -> 89421, 89423 -> 3422, 89424 -> 3496", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89422, + "TargetID": 89421, + "Directional": true + }, { + "SourceID": 89423, + "TargetID": 3422, + "Directional": true + }, { + "SourceID": 89424, + "TargetID": 3496, + "Directional": true + }] + }, { + "ID": 18203, + "SourceStructureID": 89427, + "TargetStructureID": 5396, + "Label": "89427-5396 via Conventional from 89428 -> 24587", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89428, + "TargetID": 24587, + "Directional": true + }] + }, { + "ID": 18204, + "SourceStructureID": 89463, + "TargetStructureID": 170, + "Label": "89463-170 via Conventional from 89464 -> 89465", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89464, + "TargetID": 89465, + "Directional": true + }] + }, { + "ID": 18205, + "SourceStructureID": 89478, + "TargetStructureID": 170, + "Label": "89478-170 via Conventional from 89487 -> 89488", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89487, + "TargetID": 89488, + "Directional": true + }] + }, { + "ID": 18206, + "SourceStructureID": 89485, + "TargetStructureID": 170, + "Label": "89485-170 via Conventional from 89486 -> 1291", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89486, + "TargetID": 1291, + "Directional": true + }] + }, { + "ID": 18207, + "SourceStructureID": 89501, + "TargetStructureID": 170, + "Label": "89501-170 via Conventional from 89506 -> 89507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89506, + "TargetID": 89507, + "Directional": true + }] + }, { + "ID": 18208, + "SourceStructureID": 89503, + "TargetStructureID": 170, + "Label": "89503-170 via Conventional from 89505 -> 1246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89505, + "TargetID": 1246, + "Directional": true + }] + }, { + "ID": 18209, + "SourceStructureID": 89511, + "TargetStructureID": 170, + "Label": "89511-170 via Conventional from 89514 -> 1256", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89514, + "TargetID": 1256, + "Directional": true + }] + }, { + "ID": 18210, + "SourceStructureID": 89516, + "TargetStructureID": 6129, + "Label": "89516-6129 via Conventional from 91030 -> 91031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91030, + "TargetID": 91031, + "Directional": true + }] + }, { + "ID": 18211, + "SourceStructureID": 89524, + "TargetStructureID": 89522, + "Label": "89524-89522 via Ribbon Synapse from 89526 -> 89529", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89526, + "TargetID": 89529, + "Directional": true + }] + }, { + "ID": 18212, + "SourceStructureID": 89536, + "TargetStructureID": 5396, + "Label": "89536-5396 via Ribbon Synapse from 89537 -> 89535", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89537, + "TargetID": 89535, + "Directional": true + }] + }, { + "ID": 18213, + "SourceStructureID": 89536, + "TargetStructureID": 89538, + "Label": "89536-89538 via Ribbon Synapse from 89537 -> 89539", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89537, + "TargetID": 89539, + "Directional": true + }] + }, { + "ID": 18214, + "SourceStructureID": 89544, + "TargetStructureID": 89546, + "Label": "89544-89546 via Conventional from 89545 -> 89549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89545, + "TargetID": 89549, + "Directional": true + }] + }, { + "ID": 18215, + "SourceStructureID": 89617, + "TargetStructureID": 64452, + "Label": "89617-64452 via Conventional from 89618 -> 89616", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89618, + "TargetID": 89616, + "Directional": true + }] + }, { + "ID": 18216, + "SourceStructureID": 89631, + "TargetStructureID": 5729, + "Label": "89631-5729 via Conventional from 89633 -> 89629", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89633, + "TargetID": 89629, + "Directional": true + }] + }, { + "ID": 18217, + "SourceStructureID": 89644, + "TargetStructureID": 89638, + "Label": "89644-89638 via Conventional from 89645 -> 89643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89645, + "TargetID": 89643, + "Directional": true + }] + }, { + "ID": 18218, + "SourceStructureID": 89648, + "TargetStructureID": 89638, + "Label": "89648-89638 via Conventional from 89649 -> 89647", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89649, + "TargetID": 89647, + "Directional": true + }] + }, { + "ID": 18219, + "SourceStructureID": 89652, + "TargetStructureID": 89638, + "Label": "89652-89638 via Conventional from 89653 -> 89651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89653, + "TargetID": 89651, + "Directional": true + }] + }, { + "ID": 18220, + "SourceStructureID": 89654, + "TargetStructureID": 170, + "Label": "89654-170 via Conventional from 89657 -> 89658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89657, + "TargetID": 89658, + "Directional": true + }] + }, { + "ID": 18221, + "SourceStructureID": 89660, + "TargetStructureID": 170, + "Label": "89660-170 via Conventional from 89661 -> 89662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89661, + "TargetID": 89662, + "Directional": true + }] + }, { + "ID": 18222, + "SourceStructureID": 89664, + "TargetStructureID": 170, + "Label": "89664-170 via Conventional from 89665 -> 89666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89665, + "TargetID": 89666, + "Directional": true + }] + }, { + "ID": 18223, + "SourceStructureID": 89670, + "TargetStructureID": 6203, + "Label": "89670-6203 via Conventional from 125779 -> 125778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125779, + "TargetID": 125778, + "Directional": true + }] + }, { + "ID": 18224, + "SourceStructureID": 89676, + "TargetStructureID": 170, + "Label": "89676-170 via Conventional from 89678 -> 89679", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89678, + "TargetID": 89679, + "Directional": true + }] + }, { + "ID": 18225, + "SourceStructureID": 89694, + "TargetStructureID": 6141, + "Label": "89694-6141 via Conventional from 89699 -> 61351", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89699, + "TargetID": 61351, + "Directional": true + }] + }, { + "ID": 18226, + "SourceStructureID": 89701, + "TargetStructureID": 170, + "Label": "89701-170 via Conventional from 89702 -> 89703", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89702, + "TargetID": 89703, + "Directional": true + }] + }, { + "ID": 18227, + "SourceStructureID": 89705, + "TargetStructureID": 170, + "Label": "89705-170 via Conventional from 89710 -> 89711", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89710, + "TargetID": 89711, + "Directional": true + }] + }, { + "ID": 18228, + "SourceStructureID": 89707, + "TargetStructureID": 33272, + "Label": "89707-33272 via Conventional from 89708 -> 33275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89708, + "TargetID": 33275, + "Directional": true + }] + }, { + "ID": 18229, + "SourceStructureID": 89720, + "TargetStructureID": 170, + "Label": "89720-170 via Conventional from 89725 -> 1254", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89725, + "TargetID": 1254, + "Directional": true + }] + }, { + "ID": 18230, + "SourceStructureID": 89735, + "TargetStructureID": 170, + "Label": "89735-170 via Conventional from 89736 -> 1324", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89736, + "TargetID": 1324, + "Directional": true + }] + }, { + "ID": 18231, + "SourceStructureID": 89756, + "TargetStructureID": 170, + "Label": "89756-170 via Conventional from 89758 -> 89759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89758, + "TargetID": 89759, + "Directional": true + }] + }, { + "ID": 18232, + "SourceStructureID": 89757, + "TargetStructureID": 170, + "Label": "89757-170 via Conventional from 89767 -> 1267, 89767 -> 1268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89767, + "TargetID": 1267, + "Directional": true + }, { + "SourceID": 89767, + "TargetID": 1268, + "Directional": true + }] + }, { + "ID": 18233, + "SourceStructureID": 89760, + "TargetStructureID": 170, + "Label": "89760-170 via Conventional from 89766 -> 1265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89766, + "TargetID": 1265, + "Directional": true + }] + }, { + "ID": 18234, + "SourceStructureID": 89775, + "TargetStructureID": 6142, + "Label": "89775-6142 via Conventional from 89783 -> 16114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89783, + "TargetID": 16114, + "Directional": true + }] + }, { + "ID": 18235, + "SourceStructureID": 89775, + "TargetStructureID": 10412, + "Label": "89775-10412 via Conventional from 89806 -> 89807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89806, + "TargetID": 89807, + "Directional": true + }] + }, { + "ID": 18236, + "SourceStructureID": 89775, + "TargetStructureID": 89788, + "Label": "89775-89788 via Conventional from 89787 -> 89789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89787, + "TargetID": 89789, + "Directional": true + }] + }, { + "ID": 18237, + "SourceStructureID": 89775, + "TargetStructureID": 89809, + "Label": "89775-89809 via Conventional from 89808 -> 89810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89808, + "TargetID": 89810, + "Directional": true + }] + }, { + "ID": 18238, + "SourceStructureID": 89780, + "TargetStructureID": 89775, + "Label": "89780-89775 via Conventional from 89781 -> 89779", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89781, + "TargetID": 89779, + "Directional": true + }] + }, { + "ID": 18239, + "SourceStructureID": 89791, + "TargetStructureID": 89775, + "Label": "89791-89775 via Conventional from 89794 -> 89795", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89794, + "TargetID": 89795, + "Directional": true + }] + }, { + "ID": 18240, + "SourceStructureID": 89804, + "TargetStructureID": 89775, + "Label": "89804-89775 via Conventional from 89805 -> 89803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89805, + "TargetID": 89803, + "Directional": true + }] + }, { + "ID": 18241, + "SourceStructureID": 89811, + "TargetStructureID": 89814, + "Label": "89811-89814 via Conventional from 89813 -> 89817", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89813, + "TargetID": 89817, + "Directional": true + }] + }, { + "ID": 18242, + "SourceStructureID": 89822, + "TargetStructureID": 89820, + "Label": "89822-89820 via Ribbon Synapse from 89823 -> 89824", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89823, + "TargetID": 89824, + "Directional": true + }] + }, { + "ID": 18243, + "SourceStructureID": 89833, + "TargetStructureID": 89831, + "Label": "89833-89831 via Conventional from 89834 -> 89832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89834, + "TargetID": 89832, + "Directional": true + }] + }, { + "ID": 18244, + "SourceStructureID": 89836, + "TargetStructureID": 89831, + "Label": "89836-89831 via Conventional from 89843 -> 89842", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89843, + "TargetID": 89842, + "Directional": true + }] + }, { + "ID": 18245, + "SourceStructureID": 89838, + "TargetStructureID": 89831, + "Label": "89838-89831 via Conventional from 89840 -> 89837", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89840, + "TargetID": 89837, + "Directional": true + }] + }, { + "ID": 18246, + "SourceStructureID": 89851, + "TargetStructureID": 55319, + "Label": "89851-55319 via Conventional from 89982 -> 55322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89982, + "TargetID": 55322, + "Directional": true + }] + }, { + "ID": 18247, + "SourceStructureID": 89851, + "TargetStructureID": 89938, + "Label": "89851-89938 via Conventional from 89937 -> 89939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89937, + "TargetID": 89939, + "Directional": true + }] + }, { + "ID": 18248, + "SourceStructureID": 89855, + "TargetStructureID": 170, + "Label": "89855-170 via Conventional from 89870 -> 89871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89870, + "TargetID": 89871, + "Directional": true + }] + }, { + "ID": 18249, + "SourceStructureID": 89860, + "TargetStructureID": 170, + "Label": "89860-170 via Conventional from 89875 -> 89876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89875, + "TargetID": 89876, + "Directional": true + }] + }, { + "ID": 18250, + "SourceStructureID": 89868, + "TargetStructureID": 89851, + "Label": "89868-89851 via Conventional from 89869 -> 89867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89869, + "TargetID": 89867, + "Directional": true + }] + }, { + "ID": 18251, + "SourceStructureID": 89872, + "TargetStructureID": 170, + "Label": "89872-170 via Conventional from 89873 -> 89874", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89873, + "TargetID": 89874, + "Directional": true + }] + }, { + "ID": 18252, + "SourceStructureID": 89877, + "TargetStructureID": 170, + "Label": "89877-170 via Conventional from 89880 -> 89881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89880, + "TargetID": 89881, + "Directional": true + }] + }, { + "ID": 18253, + "SourceStructureID": 89882, + "TargetStructureID": 170, + "Label": "89882-170 via Conventional from 89885 -> 89886", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89885, + "TargetID": 89886, + "Directional": true + }] + }, { + "ID": 18254, + "SourceStructureID": 89887, + "TargetStructureID": 517, + "Label": "89887-517 via Conventional from 89891 -> 89892", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89891, + "TargetID": 89892, + "Directional": true + }] + }, { + "ID": 18255, + "SourceStructureID": 89902, + "TargetStructureID": 170, + "Label": "89902-170 via Conventional from 89904 -> 89905", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89904, + "TargetID": 89905, + "Directional": true + }] + }, { + "ID": 18256, + "SourceStructureID": 89907, + "TargetStructureID": 89851, + "Label": "89907-89851 via Conventional from 89908 -> 89906", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89908, + "TargetID": 89906, + "Directional": true + }] + }, { + "ID": 18257, + "SourceStructureID": 89910, + "TargetStructureID": 89851, + "Label": "89910-89851 via Conventional from 89913 -> 89914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89913, + "TargetID": 89914, + "Directional": true + }] + }, { + "ID": 18258, + "SourceStructureID": 89912, + "TargetStructureID": 3679, + "Label": "89912-3679 via Conventional from 89945 -> 4709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89945, + "TargetID": 4709, + "Directional": true + }] + }, { + "ID": 18259, + "SourceStructureID": 89915, + "TargetStructureID": 170, + "Label": "89915-170 via Conventional from 89918 -> 89919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89918, + "TargetID": 89919, + "Directional": true + }] + }, { + "ID": 18260, + "SourceStructureID": 89921, + "TargetStructureID": 170, + "Label": "89921-170 via Conventional from 89922 -> 89923", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89922, + "TargetID": 89923, + "Directional": true + }] + }, { + "ID": 18261, + "SourceStructureID": 89928, + "TargetStructureID": 89851, + "Label": "89928-89851 via Ribbon Synapse from 89932 -> 89926", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 89932, + "TargetID": 89926, + "Directional": true + }] + }, { + "ID": 18262, + "SourceStructureID": 89941, + "TargetStructureID": 170, + "Label": "89941-170 via Conventional from 89942 -> 89943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89942, + "TargetID": 89943, + "Directional": true + }] + }, { + "ID": 18263, + "SourceStructureID": 89944, + "TargetStructureID": 170, + "Label": "89944-170 via Conventional from 89946 -> 89947", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89946, + "TargetID": 89947, + "Directional": true + }] + }, { + "ID": 18264, + "SourceStructureID": 89952, + "TargetStructureID": 170, + "Label": "89952-170 via Conventional from 89954 -> 89955", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89954, + "TargetID": 89955, + "Directional": true + }] + }, { + "ID": 18265, + "SourceStructureID": 89965, + "TargetStructureID": 170, + "Label": "89965-170 via Conventional from 89967 -> 89968", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89967, + "TargetID": 89968, + "Directional": true + }] + }, { + "ID": 18266, + "SourceStructureID": 89984, + "TargetStructureID": 471, + "Label": "89984-471 via Conventional from 90016 -> 90025, 90026 -> 90027, 90028 -> 90029, 90030 -> 8236, 90031 -> 90032", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90016, + "TargetID": 90025, + "Directional": true + }, { + "SourceID": 90026, + "TargetID": 90027, + "Directional": true + }, { + "SourceID": 90028, + "TargetID": 90029, + "Directional": true + }, { + "SourceID": 90030, + "TargetID": 8236, + "Directional": true + }, { + "SourceID": 90031, + "TargetID": 90032, + "Directional": true + }] + }, { + "ID": 18267, + "SourceStructureID": 89988, + "TargetStructureID": 170, + "Label": "89988-170 via Conventional from 89995 -> 89996", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 89995, + "TargetID": 89996, + "Directional": true + }] + }, { + "ID": 18268, + "SourceStructureID": 89989, + "TargetStructureID": 431, + "Label": "89989-431 via Conventional from 90042 -> 14376, 90087 -> 12672, 90099 -> 90104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90042, + "TargetID": 14376, + "Directional": true + }, { + "SourceID": 90087, + "TargetID": 12672, + "Directional": true + }, { + "SourceID": 90099, + "TargetID": 90104, + "Directional": true + }] + }, { + "ID": 18269, + "SourceStructureID": 89989, + "TargetStructureID": 90040, + "Label": "89989-90040 via Conventional from 90039 -> 90041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90039, + "TargetID": 90041, + "Directional": true + }] + }, { + "ID": 18270, + "SourceStructureID": 90004, + "TargetStructureID": 4569, + "Label": "90004-4569 via Conventional from 98482 -> 98483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98482, + "TargetID": 98483, + "Directional": true + }] + }, { + "ID": 18271, + "SourceStructureID": 90013, + "TargetStructureID": 4569, + "Label": "90013-4569 via Conventional from 98549 -> 47496", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98549, + "TargetID": 47496, + "Directional": true + }] + }, { + "ID": 18272, + "SourceStructureID": 90047, + "TargetStructureID": 170, + "Label": "90047-170 via Conventional from 90056 -> 1270", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90056, + "TargetID": 1270, + "Directional": true + }] + }, { + "ID": 18273, + "SourceStructureID": 90049, + "TargetStructureID": 170, + "Label": "90049-170 via Conventional from 90050 -> 90051", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90050, + "TargetID": 90051, + "Directional": true + }] + }, { + "ID": 18274, + "SourceStructureID": 90061, + "TargetStructureID": 595, + "Label": "90061-595 via Conventional from 90458 -> 90459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90458, + "TargetID": 90459, + "Directional": true + }] + }, { + "ID": 18275, + "SourceStructureID": 90066, + "TargetStructureID": 170, + "Label": "90066-170 via Conventional from 90067 -> 90068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90067, + "TargetID": 90068, + "Directional": true + }] + }, { + "ID": 18276, + "SourceStructureID": 90079, + "TargetStructureID": 170, + "Label": "90079-170 via Conventional from 90083 -> 28371", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90083, + "TargetID": 28371, + "Directional": true + }] + }, { + "ID": 18277, + "SourceStructureID": 90102, + "TargetStructureID": 431, + "Label": "90102-431 via Conventional from 90103 -> 90101", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90103, + "TargetID": 90101, + "Directional": true + }] + }, { + "ID": 18278, + "SourceStructureID": 90108, + "TargetStructureID": 89989, + "Label": "90108-89989 via Conventional from 90109 -> 90107", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90109, + "TargetID": 90107, + "Directional": true + }] + }, { + "ID": 18279, + "SourceStructureID": 90111, + "TargetStructureID": 90118, + "Label": "90111-90118 via Conventional from 90117 -> 90119", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90117, + "TargetID": 90119, + "Directional": true + }] + }, { + "ID": 18280, + "SourceStructureID": 90113, + "TargetStructureID": 90111, + "Label": "90113-90111 via Ribbon Synapse from 90114 -> 90112", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90114, + "TargetID": 90112, + "Directional": true + }] + }, { + "ID": 18281, + "SourceStructureID": 90118, + "TargetStructureID": 90149, + "Label": "90118-90149 via Conventional from 90147 -> 90150", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90147, + "TargetID": 90150, + "Directional": true + }] + }, { + "ID": 18282, + "SourceStructureID": 90122, + "TargetStructureID": 90118, + "Label": "90122-90118 via Conventional from 90131 -> 90130", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90131, + "TargetID": 90130, + "Directional": true + }] + }, { + "ID": 18283, + "SourceStructureID": 90134, + "TargetStructureID": 90118, + "Label": "90134-90118 via Conventional from 90135 -> 90133", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90135, + "TargetID": 90133, + "Directional": true + }] + }, { + "ID": 18284, + "SourceStructureID": 90138, + "TargetStructureID": 90118, + "Label": "90138-90118 via Conventional from 90139 -> 90136", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90139, + "TargetID": 90136, + "Directional": true + }] + }, { + "ID": 18285, + "SourceStructureID": 90140, + "TargetStructureID": 90118, + "Label": "90140-90118 via Conventional from 90141 -> 90137", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90141, + "TargetID": 90137, + "Directional": true + }] + }, { + "ID": 18286, + "SourceStructureID": 90151, + "TargetStructureID": 328, + "Label": "90151-328 via Conventional from 90159 -> 90160", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90159, + "TargetID": 90160, + "Directional": true + }] + }, { + "ID": 18287, + "SourceStructureID": 90151, + "TargetStructureID": 90156, + "Label": "90151-90156 via Conventional from 90155 -> 90157", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90155, + "TargetID": 90157, + "Directional": true + }] + }, { + "ID": 18288, + "SourceStructureID": 90234, + "TargetStructureID": 71882, + "Label": "90234-71882 via Conventional from 90235 -> 90233", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90235, + "TargetID": 90233, + "Directional": true + }] + }, { + "ID": 18289, + "SourceStructureID": 90243, + "TargetStructureID": 170, + "Label": "90243-170 via Conventional from 90244 -> 90245", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90244, + "TargetID": 90245, + "Directional": true + }] + }, { + "ID": 18290, + "SourceStructureID": 90271, + "TargetStructureID": 170, + "Label": "90271-170 via Conventional from 90276 -> 1402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90276, + "TargetID": 1402, + "Directional": true + }] + }, { + "ID": 18291, + "SourceStructureID": 90284, + "TargetStructureID": 4569, + "Label": "90284-4569 via Conventional from 98467 -> 52508", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98467, + "TargetID": 52508, + "Directional": true + }] + }, { + "ID": 18292, + "SourceStructureID": 90296, + "TargetStructureID": 170, + "Label": "90296-170 via Conventional from 90297 -> 90298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90297, + "TargetID": 90298, + "Directional": true + }] + }, { + "ID": 18293, + "SourceStructureID": 90303, + "TargetStructureID": 170, + "Label": "90303-170 via Conventional from 90306 -> 90305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90306, + "TargetID": 90305, + "Directional": true + }] + }, { + "ID": 18294, + "SourceStructureID": 90311, + "TargetStructureID": 170, + "Label": "90311-170 via Conventional from 90313 -> 92477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90313, + "TargetID": 92477, + "Directional": true + }] + }, { + "ID": 18295, + "SourceStructureID": 90328, + "TargetStructureID": 16026, + "Label": "90328-16026 via Conventional from 90412 -> 134808", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90412, + "TargetID": 134808, + "Directional": true + }] + }, { + "ID": 18296, + "SourceStructureID": 90347, + "TargetStructureID": 170, + "Label": "90347-170 via Conventional from 90348 -> 90349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90348, + "TargetID": 90349, + "Directional": true + }] + }, { + "ID": 18297, + "SourceStructureID": 90363, + "TargetStructureID": 170, + "Label": "90363-170 via Conventional from 90364 -> 90365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90364, + "TargetID": 90365, + "Directional": true + }] + }, { + "ID": 18298, + "SourceStructureID": 90368, + "TargetStructureID": 170, + "Label": "90368-170 via Conventional from 90369 -> 1407", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90369, + "TargetID": 1407, + "Directional": true + }] + }, { + "ID": 18299, + "SourceStructureID": 90381, + "TargetStructureID": 170, + "Label": "90381-170 via Conventional from 90382 -> 90385", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90382, + "TargetID": 90385, + "Directional": true + }] + }, { + "ID": 18300, + "SourceStructureID": 90393, + "TargetStructureID": 170, + "Label": "90393-170 via Conventional from 90398 -> 90400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90398, + "TargetID": 90400, + "Directional": true + }] + }, { + "ID": 18301, + "SourceStructureID": 90396, + "TargetStructureID": 71882, + "Label": "90396-71882 via Ribbon Synapse from 90397 -> 90395", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90397, + "TargetID": 90395, + "Directional": true + }] + }, { + "ID": 18302, + "SourceStructureID": 90396, + "TargetStructureID": 90389, + "Label": "90396-90389 via Ribbon Synapse from 90397 -> 90392", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 90397, + "TargetID": 90392, + "Directional": true + }] + }, { + "ID": 18303, + "SourceStructureID": 90420, + "TargetStructureID": 170, + "Label": "90420-170 via Conventional from 92481 -> 92483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92481, + "TargetID": 92483, + "Directional": true + }] + }, { + "ID": 18304, + "SourceStructureID": 90420, + "TargetStructureID": 324, + "Label": "90420-324 via Conventional from 92481 -> 92482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92481, + "TargetID": 92482, + "Directional": true + }] + }, { + "ID": 18305, + "SourceStructureID": 90430, + "TargetStructureID": 71882, + "Label": "90430-71882 via Conventional from 90432 -> 90429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90432, + "TargetID": 90429, + "Directional": true + }] + }, { + "ID": 18306, + "SourceStructureID": 90436, + "TargetStructureID": 170, + "Label": "90436-170 via Conventional from 90437 -> 90438", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90437, + "TargetID": 90438, + "Directional": true + }] + }, { + "ID": 18307, + "SourceStructureID": 90440, + "TargetStructureID": 170, + "Label": "90440-170 via Conventional from 90442 -> 90443", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90442, + "TargetID": 90443, + "Directional": true + }] + }, { + "ID": 18308, + "SourceStructureID": 90460, + "TargetStructureID": 4569, + "Label": "90460-4569 via Conventional from 98397 -> 30828", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98397, + "TargetID": 30828, + "Directional": true + }] + }, { + "ID": 18309, + "SourceStructureID": 90468, + "TargetStructureID": 170, + "Label": "90468-170 via Conventional from 90469 -> 90470", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90469, + "TargetID": 90470, + "Directional": true + }] + }, { + "ID": 18310, + "SourceStructureID": 90483, + "TargetStructureID": 372, + "Label": "90483-372 via Conventional from 90495 -> 90496, 90498 -> 45646", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90495, + "TargetID": 90496, + "Directional": true + }, { + "SourceID": 90498, + "TargetID": 45646, + "Directional": true + }] + }, { + "ID": 18311, + "SourceStructureID": 90483, + "TargetStructureID": 4569, + "Label": "90483-4569 via Conventional from 90484 -> 53683", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90484, + "TargetID": 53683, + "Directional": true + }] + }, { + "ID": 18312, + "SourceStructureID": 90488, + "TargetStructureID": 90487, + "Label": "90488-90487 via Conventional from 90491 -> 90492", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90491, + "TargetID": 90492, + "Directional": true + }] + }, { + "ID": 18313, + "SourceStructureID": 90526, + "TargetStructureID": 53115, + "Label": "90526-53115 via Conventional from 90527 -> 90524", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90527, + "TargetID": 90524, + "Directional": true + }] + }, { + "ID": 18314, + "SourceStructureID": 90543, + "TargetStructureID": 170, + "Label": "90543-170 via Conventional from 90545 -> 90546", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90545, + "TargetID": 90546, + "Directional": true + }] + }, { + "ID": 18315, + "SourceStructureID": 90544, + "TargetStructureID": 170, + "Label": "90544-170 via Conventional from 90548 -> 90547", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90548, + "TargetID": 90547, + "Directional": true + }] + }, { + "ID": 18316, + "SourceStructureID": 90563, + "TargetStructureID": 170, + "Label": "90563-170 via Conventional from 90564 -> 1417", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90564, + "TargetID": 1417, + "Directional": true + }] + }, { + "ID": 18317, + "SourceStructureID": 90568, + "TargetStructureID": 170, + "Label": "90568-170 via Conventional from 90569 -> 1429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90569, + "TargetID": 1429, + "Directional": true + }] + }, { + "ID": 18318, + "SourceStructureID": 90585, + "TargetStructureID": 170, + "Label": "90585-170 via Conventional from 90586 -> 1421", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90586, + "TargetID": 1421, + "Directional": true + }] + }, { + "ID": 18319, + "SourceStructureID": 90587, + "TargetStructureID": 170, + "Label": "90587-170 via Conventional from 90593 -> 90594", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90593, + "TargetID": 90594, + "Directional": true + }] + }, { + "ID": 18320, + "SourceStructureID": 90588, + "TargetStructureID": 170, + "Label": "90588-170 via Conventional from 90589 -> 90590", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90589, + "TargetID": 90590, + "Directional": true + }] + }, { + "ID": 18321, + "SourceStructureID": 90597, + "TargetStructureID": 170, + "Label": "90597-170 via Conventional from 90598 -> 90599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90598, + "TargetID": 90599, + "Directional": true + }] + }, { + "ID": 18322, + "SourceStructureID": 90602, + "TargetStructureID": 90604, + "Label": "90602-90604 via Conventional from 90605 -> 90606", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90605, + "TargetID": 90606, + "Directional": true + }] + }, { + "ID": 18323, + "SourceStructureID": 90607, + "TargetStructureID": 170, + "Label": "90607-170 via Conventional from 90608 -> 90609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90608, + "TargetID": 90609, + "Directional": true + }] + }, { + "ID": 18324, + "SourceStructureID": 90615, + "TargetStructureID": 170, + "Label": "90615-170 via Conventional from 90616 -> 90617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90616, + "TargetID": 90617, + "Directional": true + }] + }, { + "ID": 18325, + "SourceStructureID": 90618, + "TargetStructureID": 170, + "Label": "90618-170 via Conventional from 90619 -> 90620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90619, + "TargetID": 90620, + "Directional": true + }] + }, { + "ID": 18326, + "SourceStructureID": 90642, + "TargetStructureID": 6115, + "Label": "90642-6115 via Conventional from 90643 -> 90641", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90643, + "TargetID": 90641, + "Directional": true + }] + }, { + "ID": 18327, + "SourceStructureID": 90657, + "TargetStructureID": 352, + "Label": "90657-352 via Conventional from 90659 -> 90662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90659, + "TargetID": 90662, + "Directional": true + }] + }, { + "ID": 18328, + "SourceStructureID": 90715, + "TargetStructureID": 452, + "Label": "90715-452 via Conventional from 90760 -> 43187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90760, + "TargetID": 43187, + "Directional": true + }] + }, { + "ID": 18329, + "SourceStructureID": 90715, + "TargetStructureID": 4943, + "Label": "90715-4943 via Conventional from 91315 -> 8512", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91315, + "TargetID": 8512, + "Directional": true + }] + }, { + "ID": 18330, + "SourceStructureID": 90761, + "TargetStructureID": 180, + "Label": "90761-180 via Conventional from 90762 -> 90758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90762, + "TargetID": 90758, + "Directional": true + }] + }, { + "ID": 18331, + "SourceStructureID": 90769, + "TargetStructureID": 180, + "Label": "90769-180 via Conventional from 90770 -> 90768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90770, + "TargetID": 90768, + "Directional": true + }] + }, { + "ID": 18332, + "SourceStructureID": 90772, + "TargetStructureID": 180, + "Label": "90772-180 via Conventional from 90773 -> 90771", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90773, + "TargetID": 90771, + "Directional": true + }] + }, { + "ID": 18333, + "SourceStructureID": 90789, + "TargetStructureID": 180, + "Label": "90789-180 via Conventional from 90790 -> 90788", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90790, + "TargetID": 90788, + "Directional": true + }] + }, { + "ID": 18334, + "SourceStructureID": 90800, + "TargetStructureID": 180, + "Label": "90800-180 via Conventional from 90802 -> 90799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90802, + "TargetID": 90799, + "Directional": true + }] + }, { + "ID": 18335, + "SourceStructureID": 90806, + "TargetStructureID": 180, + "Label": "90806-180 via Conventional from 90807 -> 90805", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90807, + "TargetID": 90805, + "Directional": true + }] + }, { + "ID": 18336, + "SourceStructureID": 90819, + "TargetStructureID": 180, + "Label": "90819-180 via Conventional from 90820 -> 6572", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90820, + "TargetID": 6572, + "Directional": true + }] + }, { + "ID": 18337, + "SourceStructureID": 90819, + "TargetStructureID": 90822, + "Label": "90819-90822 via Conventional from 90821 -> 90826", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90821, + "TargetID": 90826, + "Directional": true + }] + }, { + "ID": 18338, + "SourceStructureID": 90827, + "TargetStructureID": 180, + "Label": "90827-180 via Conventional from 90828 -> 6571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90828, + "TargetID": 6571, + "Directional": true + }] + }, { + "ID": 18339, + "SourceStructureID": 90829, + "TargetStructureID": 166, + "Label": "90829-166 via Conventional from 90832 -> 39350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90832, + "TargetID": 39350, + "Directional": true + }] + }, { + "ID": 18340, + "SourceStructureID": 90829, + "TargetStructureID": 180, + "Label": "90829-180 via Conventional from 90830 -> 6064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90830, + "TargetID": 6064, + "Directional": true + }] + }, { + "ID": 18341, + "SourceStructureID": 90835, + "TargetStructureID": 180, + "Label": "90835-180 via Conventional from 90836 -> 90837", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90836, + "TargetID": 90837, + "Directional": true + }] + }, { + "ID": 18342, + "SourceStructureID": 90839, + "TargetStructureID": 180, + "Label": "90839-180 via Conventional from 95876 -> 6570", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95876, + "TargetID": 6570, + "Directional": true + }] + }, { + "ID": 18343, + "SourceStructureID": 90844, + "TargetStructureID": 180, + "Label": "90844-180 via Conventional from 95720 -> 95721", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95720, + "TargetID": 95721, + "Directional": true + }] + }, { + "ID": 18344, + "SourceStructureID": 90877, + "TargetStructureID": 180, + "Label": "90877-180 via Conventional from 90878 -> 90876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90878, + "TargetID": 90876, + "Directional": true + }] + }, { + "ID": 18345, + "SourceStructureID": 90919, + "TargetStructureID": 180, + "Label": "90919-180 via Conventional from 90920 -> 90918", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90920, + "TargetID": 90918, + "Directional": true + }] + }, { + "ID": 18346, + "SourceStructureID": 90928, + "TargetStructureID": 6857, + "Label": "90928-6857 via Conventional from 90929 -> 7501", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90929, + "TargetID": 7501, + "Directional": true + }] + }, { + "ID": 18347, + "SourceStructureID": 90932, + "TargetStructureID": 180, + "Label": "90932-180 via Conventional from 90933 -> 90931", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90933, + "TargetID": 90931, + "Directional": true + }] + }, { + "ID": 18348, + "SourceStructureID": 90937, + "TargetStructureID": 180, + "Label": "90937-180 via Conventional from 90940 -> 90941", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90940, + "TargetID": 90941, + "Directional": true + }] + }, { + "ID": 18349, + "SourceStructureID": 90943, + "TargetStructureID": 180, + "Label": "90943-180 via Conventional from 90944 -> 90942", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90944, + "TargetID": 90942, + "Directional": true + }] + }, { + "ID": 18350, + "SourceStructureID": 90956, + "TargetStructureID": 90952, + "Label": "90956-90952 via Conventional from 90958 -> 90955", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90958, + "TargetID": 90955, + "Directional": true + }] + }, { + "ID": 18351, + "SourceStructureID": 90961, + "TargetStructureID": 180, + "Label": "90961-180 via Conventional from 90962 -> 56871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90962, + "TargetID": 56871, + "Directional": true + }] + }, { + "ID": 18352, + "SourceStructureID": 90969, + "TargetStructureID": 180, + "Label": "90969-180 via Conventional from 90970 -> 56875, 95508 -> 95509", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90970, + "TargetID": 56875, + "Directional": true + }, { + "SourceID": 95508, + "TargetID": 95509, + "Directional": true + }] + }, { + "ID": 18353, + "SourceStructureID": 90975, + "TargetStructureID": 180, + "Label": "90975-180 via Conventional from 90976 -> 56876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90976, + "TargetID": 56876, + "Directional": true + }] + }, { + "ID": 18354, + "SourceStructureID": 90979, + "TargetStructureID": 180, + "Label": "90979-180 via Conventional from 90980 -> 90978", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90980, + "TargetID": 90978, + "Directional": true + }] + }, { + "ID": 18355, + "SourceStructureID": 90981, + "TargetStructureID": 180, + "Label": "90981-180 via Conventional from 95514 -> 90977", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95514, + "TargetID": 90977, + "Directional": true + }] + }, { + "ID": 18356, + "SourceStructureID": 90984, + "TargetStructureID": 180, + "Label": "90984-180 via Conventional from 90985 -> 90983", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90985, + "TargetID": 90983, + "Directional": true + }] + }, { + "ID": 18357, + "SourceStructureID": 90989, + "TargetStructureID": 180, + "Label": "90989-180 via Conventional from 90990 -> 90988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90990, + "TargetID": 90988, + "Directional": true + }] + }, { + "ID": 18358, + "SourceStructureID": 90991, + "TargetStructureID": 180, + "Label": "90991-180 via Conventional from 90992 -> 90987", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 90992, + "TargetID": 90987, + "Directional": true + }] + }, { + "ID": 18359, + "SourceStructureID": 91000, + "TargetStructureID": 180, + "Label": "91000-180 via Conventional from 91001 -> 90999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91001, + "TargetID": 90999, + "Directional": true + }] + }, { + "ID": 18360, + "SourceStructureID": 91032, + "TargetStructureID": 16026, + "Label": "91032-16026 via Conventional from 91033 -> 24097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91033, + "TargetID": 24097, + "Directional": true + }] + }, { + "ID": 18361, + "SourceStructureID": 91036, + "TargetStructureID": 16026, + "Label": "91036-16026 via Conventional from 91040 -> 25735", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91040, + "TargetID": 25735, + "Directional": true + }] + }, { + "ID": 18362, + "SourceStructureID": 91060, + "TargetStructureID": 91056, + "Label": "91060-91056 via Conventional from 91064 -> 91058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91064, + "TargetID": 91058, + "Directional": true + }] + }, { + "ID": 18363, + "SourceStructureID": 91071, + "TargetStructureID": 16026, + "Label": "91071-16026 via Conventional from 91072 -> 91070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91072, + "TargetID": 91070, + "Directional": true + }] + }, { + "ID": 18364, + "SourceStructureID": 91103, + "TargetStructureID": 16026, + "Label": "91103-16026 via Conventional from 91105 -> 25715", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91105, + "TargetID": 25715, + "Directional": true + }] + }, { + "ID": 18365, + "SourceStructureID": 91114, + "TargetStructureID": 16026, + "Label": "91114-16026 via Conventional from 91115 -> 91113", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91115, + "TargetID": 91113, + "Directional": true + }] + }, { + "ID": 18366, + "SourceStructureID": 91167, + "TargetStructureID": 16026, + "Label": "91167-16026 via Conventional from 91169 -> 91170", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91169, + "TargetID": 91170, + "Directional": true + }] + }, { + "ID": 18367, + "SourceStructureID": 91176, + "TargetStructureID": 2610, + "Label": "91176-2610 via Conventional from 91177 -> 2933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91177, + "TargetID": 2933, + "Directional": true + }] + }, { + "ID": 18368, + "SourceStructureID": 91220, + "TargetStructureID": 90715, + "Label": "91220-90715 via Ribbon Synapse from 91221 -> 91028", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91221, + "TargetID": 91028, + "Directional": true + }] + }, { + "ID": 18369, + "SourceStructureID": 91405, + "TargetStructureID": 6997, + "Label": "91405-6997 via Conventional from 91413 -> 70890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91413, + "TargetID": 70890, + "Directional": true + }] + }, { + "ID": 18370, + "SourceStructureID": 91446, + "TargetStructureID": 5601, + "Label": "91446-5601 via Conventional from 91447 -> 91445", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91447, + "TargetID": 91445, + "Directional": true + }] + }, { + "ID": 18371, + "SourceStructureID": 91459, + "TargetStructureID": 4876, + "Label": "91459-4876 via Conventional from 91461 -> 91458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91461, + "TargetID": 91458, + "Directional": true + }] + }, { + "ID": 18372, + "SourceStructureID": 91507, + "TargetStructureID": 5601, + "Label": "91507-5601 via Conventional from 91509 -> 91350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91509, + "TargetID": 91350, + "Directional": true + }] + }, { + "ID": 18373, + "SourceStructureID": 91537, + "TargetStructureID": 593, + "Label": "91537-593 via Conventional from 91538 -> 7744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91538, + "TargetID": 7744, + "Directional": true + }] + }, { + "ID": 18374, + "SourceStructureID": 91542, + "TargetStructureID": 3116, + "Label": "91542-3116 via Conventional from 91543 -> 23809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91543, + "TargetID": 23809, + "Directional": true + }] + }, { + "ID": 18375, + "SourceStructureID": 91551, + "TargetStructureID": 166, + "Label": "91551-166 via Conventional from 91552 -> 91553", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91552, + "TargetID": 91553, + "Directional": true + }] + }, { + "ID": 18376, + "SourceStructureID": 91566, + "TargetStructureID": 21299, + "Label": "91566-21299 via Conventional from 91568 -> 91565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91568, + "TargetID": 91565, + "Directional": true + }] + }, { + "ID": 18377, + "SourceStructureID": 91597, + "TargetStructureID": 1620, + "Label": "91597-1620 via Conventional from 91602 -> 16868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91602, + "TargetID": 16868, + "Directional": true + }] + }, { + "ID": 18378, + "SourceStructureID": 91701, + "TargetStructureID": 21299, + "Label": "91701-21299 via Conventional from 92847 -> 48968", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92847, + "TargetID": 48968, + "Directional": true + }] + }, { + "ID": 18379, + "SourceStructureID": 91730, + "TargetStructureID": 1620, + "Label": "91730-1620 via Ribbon Synapse from 91731 -> 16854", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91731, + "TargetID": 16854, + "Directional": true + }] + }, { + "ID": 18380, + "SourceStructureID": 91730, + "TargetStructureID": 41474, + "Label": "91730-41474 via Ribbon Synapse from 91731 -> 41516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 91731, + "TargetID": 41516, + "Directional": true + }] + }, { + "ID": 18381, + "SourceStructureID": 91746, + "TargetStructureID": 21299, + "Label": "91746-21299 via Conventional from 91749 -> 48800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91749, + "TargetID": 48800, + "Directional": true + }] + }, { + "ID": 18382, + "SourceStructureID": 91746, + "TargetStructureID": 91743, + "Label": "91746-91743 via Conventional from 91747 -> 91745", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 91747, + "TargetID": 91745, + "Directional": true + }] + }, { + "ID": 18383, + "SourceStructureID": 91805, + "TargetStructureID": 5292, + "Label": "91805-5292 via Conventional from 92854 -> 51569", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92854, + "TargetID": 51569, + "Directional": true + }] + }, { + "ID": 18384, + "SourceStructureID": 91812, + "TargetStructureID": 5650, + "Label": "91812-5650 via Conventional from 103887 -> 103888", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103887, + "TargetID": 103888, + "Directional": true + }] + }, { + "ID": 18385, + "SourceStructureID": 91983, + "TargetStructureID": 176, + "Label": "91983-176 via Conventional from 128744 -> 128743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128744, + "TargetID": 128743, + "Directional": true + }] + }, { + "ID": 18386, + "SourceStructureID": 92035, + "TargetStructureID": 6050, + "Label": "92035-6050 via Conventional from 92036 -> 56072", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92036, + "TargetID": 56072, + "Directional": true + }] + }, { + "ID": 18387, + "SourceStructureID": 92091, + "TargetStructureID": 16026, + "Label": "92091-16026 via Conventional from 134452 -> 134451", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134452, + "TargetID": 134451, + "Directional": true + }] + }, { + "ID": 18388, + "SourceStructureID": 92223, + "TargetStructureID": 16026, + "Label": "92223-16026 via Conventional from 92803 -> 92764", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92803, + "TargetID": 92764, + "Directional": true + }] + }, { + "ID": 18389, + "SourceStructureID": 92239, + "TargetStructureID": 16026, + "Label": "92239-16026 via Conventional from 92811 -> 25541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92811, + "TargetID": 25541, + "Directional": true + }] + }, { + "ID": 18390, + "SourceStructureID": 92245, + "TargetStructureID": 16026, + "Label": "92245-16026 via Conventional from 92819 -> 92820, 134417 -> 134416", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92819, + "TargetID": 92820, + "Directional": true + }, { + "SourceID": 134417, + "TargetID": 134416, + "Directional": true + }] + }, { + "ID": 18391, + "SourceStructureID": 92361, + "TargetStructureID": 16026, + "Label": "92361-16026 via Conventional from 92812 -> 92813", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92812, + "TargetID": 92813, + "Directional": true + }] + }, { + "ID": 18392, + "SourceStructureID": 92380, + "TargetStructureID": 5283, + "Label": "92380-5283 via Conventional from 123948 -> 123947", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123948, + "TargetID": 123947, + "Directional": true + }] + }, { + "ID": 18393, + "SourceStructureID": 92572, + "TargetStructureID": 16026, + "Label": "92572-16026 via Conventional from 134760 -> 134759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134760, + "TargetID": 134759, + "Directional": true + }] + }, { + "ID": 18394, + "SourceStructureID": 92638, + "TargetStructureID": 5279, + "Label": "92638-5279 via Conventional from 92859 -> 92858", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92859, + "TargetID": 92858, + "Directional": true + }] + }, { + "ID": 18395, + "SourceStructureID": 92785, + "TargetStructureID": 16026, + "Label": "92785-16026 via Conventional from 92786 -> 92787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92786, + "TargetID": 92787, + "Directional": true + }] + }, { + "ID": 18396, + "SourceStructureID": 92865, + "TargetStructureID": 16026, + "Label": "92865-16026 via Conventional from 134709 -> 134708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134709, + "TargetID": 134708, + "Directional": true + }] + }, { + "ID": 18397, + "SourceStructureID": 92942, + "TargetStructureID": 10943, + "Label": "92942-10943 via Conventional from 92945 -> 92946", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 92945, + "TargetID": 92946, + "Directional": true + }] + }, { + "ID": 18398, + "SourceStructureID": 92954, + "TargetStructureID": 23870, + "Label": "92954-23870 via Ribbon Synapse from 92955 -> 92953", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 92955, + "TargetID": 92953, + "Directional": true + }] + }, { + "ID": 18399, + "SourceStructureID": 92970, + "TargetStructureID": 5294, + "Label": "92970-5294 via Cistern Pre from 93030 -> 93031", + "Type": "Cistern Pre", + "Directional": true, + "Links": [{ + "SourceID": 93030, + "TargetID": 93031, + "Directional": true + }] + }, { + "ID": 18400, + "SourceStructureID": 93069, + "TargetStructureID": 5592, + "Label": "93069-5592 via Conventional from 93070 -> 45968", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93070, + "TargetID": 45968, + "Directional": true + }] + }, { + "ID": 18401, + "SourceStructureID": 93099, + "TargetStructureID": 400, + "Label": "93099-400 via Conventional from 93110 -> 1935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93110, + "TargetID": 1935, + "Directional": true + }] + }, { + "ID": 18402, + "SourceStructureID": 93099, + "TargetStructureID": 6617, + "Label": "93099-6617 via Conventional from 93107 -> 93108", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93107, + "TargetID": 93108, + "Directional": true + }] + }, { + "ID": 18403, + "SourceStructureID": 93099, + "TargetStructureID": 8749, + "Label": "93099-8749 via Conventional from 93100 -> 93101, 93102 -> 93103", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93100, + "TargetID": 93101, + "Directional": true + }, { + "SourceID": 93102, + "TargetID": 93103, + "Directional": true + }] + }, { + "ID": 18404, + "SourceStructureID": 93112, + "TargetStructureID": 5294, + "Label": "93112-5294 via Conventional from 93113 -> 32333", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93113, + "TargetID": 32333, + "Directional": true + }] + }, { + "ID": 18405, + "SourceStructureID": 93139, + "TargetStructureID": 16026, + "Label": "93139-16026 via Conventional from 134836 -> 134835, 134839 -> 25565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134836, + "TargetID": 134835, + "Directional": true + }, { + "SourceID": 134839, + "TargetID": 25565, + "Directional": true + }] + }, { + "ID": 18406, + "SourceStructureID": 93172, + "TargetStructureID": 15976, + "Label": "93172-15976 via Conventional from 93173 -> 93171", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93173, + "TargetID": 93171, + "Directional": true + }] + }, { + "ID": 18407, + "SourceStructureID": 93277, + "TargetStructureID": 3679, + "Label": "93277-3679 via Conventional from 93278 -> 14919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93278, + "TargetID": 14919, + "Directional": true + }] + }, { + "ID": 18408, + "SourceStructureID": 93315, + "TargetStructureID": 5297, + "Label": "93315-5297 via Conventional from 93316 -> 53666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93316, + "TargetID": 53666, + "Directional": true + }] + }, { + "ID": 18409, + "SourceStructureID": 93325, + "TargetStructureID": 5297, + "Label": "93325-5297 via Conventional from 93326 -> 50318", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93326, + "TargetID": 50318, + "Directional": true + }] + }, { + "ID": 18410, + "SourceStructureID": 93336, + "TargetStructureID": 5297, + "Label": "93336-5297 via Conventional from 93338 -> 53695", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93338, + "TargetID": 53695, + "Directional": true + }] + }, { + "ID": 18411, + "SourceStructureID": 93371, + "TargetStructureID": 5297, + "Label": "93371-5297 via Conventional from 93372 -> 53650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93372, + "TargetID": 53650, + "Directional": true + }] + }, { + "ID": 18412, + "SourceStructureID": 93386, + "TargetStructureID": 5297, + "Label": "93386-5297 via Conventional from 93387 -> 53651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93387, + "TargetID": 53651, + "Directional": true + }] + }, { + "ID": 18413, + "SourceStructureID": 93396, + "TargetStructureID": 5278, + "Label": "93396-5278 via Conventional from 93406 -> 50312", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93406, + "TargetID": 50312, + "Directional": true + }] + }, { + "ID": 18414, + "SourceStructureID": 93403, + "TargetStructureID": 5278, + "Label": "93403-5278 via Conventional from 93405 -> 50311", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93405, + "TargetID": 50311, + "Directional": true + }] + }, { + "ID": 18415, + "SourceStructureID": 93407, + "TargetStructureID": 5278, + "Label": "93407-5278 via Conventional from 93410 -> 50310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93410, + "TargetID": 50310, + "Directional": true + }] + }, { + "ID": 18416, + "SourceStructureID": 93407, + "TargetStructureID": 93413, + "Label": "93407-93413 via Conventional from 147310 -> 147311", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147310, + "TargetID": 147311, + "Directional": true + }] + }, { + "ID": 18417, + "SourceStructureID": 93456, + "TargetStructureID": 5711, + "Label": "93456-5711 via Conventional from 93457 -> 93458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93457, + "TargetID": 93458, + "Directional": true + }] + }, { + "ID": 18418, + "SourceStructureID": 93465, + "TargetStructureID": 5278, + "Label": "93465-5278 via Conventional from 93466 -> 53599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93466, + "TargetID": 53599, + "Directional": true + }] + }, { + "ID": 18419, + "SourceStructureID": 93489, + "TargetStructureID": 93486, + "Label": "93489-93486 via Ribbon Synapse from 93490 -> 93487", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 93490, + "TargetID": 93487, + "Directional": true + }] + }, { + "ID": 18420, + "SourceStructureID": 93494, + "TargetStructureID": 93486, + "Label": "93494-93486 via Conventional from 93500 -> 93501", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93500, + "TargetID": 93501, + "Directional": true + }] + }, { + "ID": 18421, + "SourceStructureID": 93555, + "TargetStructureID": 5528, + "Label": "93555-5528 via Conventional from 93556 -> 36391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93556, + "TargetID": 36391, + "Directional": true + }] + }, { + "ID": 18422, + "SourceStructureID": 93557, + "TargetStructureID": 5528, + "Label": "93557-5528 via Conventional from 93558 -> 36392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93558, + "TargetID": 36392, + "Directional": true + }] + }, { + "ID": 18423, + "SourceStructureID": 93574, + "TargetStructureID": 5468, + "Label": "93574-5468 via Conventional from 93576 -> 45721", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93576, + "TargetID": 45721, + "Directional": true + }] + }, { + "ID": 18424, + "SourceStructureID": 93634, + "TargetStructureID": 64939, + "Label": "93634-64939 via Conventional from 93635 -> 93632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93635, + "TargetID": 93632, + "Directional": true + }] + }, { + "ID": 18425, + "SourceStructureID": 93685, + "TargetStructureID": 7040, + "Label": "93685-7040 via Conventional from 93689 -> 93683", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93689, + "TargetID": 93683, + "Directional": true + }] + }, { + "ID": 18426, + "SourceStructureID": 93920, + "TargetStructureID": 5528, + "Label": "93920-5528 via Conventional from 93921 -> 93919", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93921, + "TargetID": 93919, + "Directional": true + }] + }, { + "ID": 18427, + "SourceStructureID": 93923, + "TargetStructureID": 5528, + "Label": "93923-5528 via Conventional from 93930 -> 93599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93930, + "TargetID": 93599, + "Directional": true + }] + }, { + "ID": 18428, + "SourceStructureID": 93928, + "TargetStructureID": 25402, + "Label": "93928-25402 via Conventional from 93929 -> 32277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93929, + "TargetID": 32277, + "Directional": true + }] + }, { + "ID": 18429, + "SourceStructureID": 93931, + "TargetStructureID": 5528, + "Label": "93931-5528 via Conventional from 93934 -> 93596", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93934, + "TargetID": 93596, + "Directional": true + }] + }, { + "ID": 18430, + "SourceStructureID": 93935, + "TargetStructureID": 5528, + "Label": "93935-5528 via Conventional from 93936 -> 93595", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93936, + "TargetID": 93595, + "Directional": true + }] + }, { + "ID": 18431, + "SourceStructureID": 93938, + "TargetStructureID": 5528, + "Label": "93938-5528 via Conventional from 93939 -> 93597", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93939, + "TargetID": 93597, + "Directional": true + }] + }, { + "ID": 18432, + "SourceStructureID": 93938, + "TargetStructureID": 5530, + "Label": "93938-5530 via Conventional from 126445 -> 126443", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126445, + "TargetID": 126443, + "Directional": true + }] + }, { + "ID": 18433, + "SourceStructureID": 93964, + "TargetStructureID": 5528, + "Label": "93964-5528 via Conventional from 93965 -> 93955", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93965, + "TargetID": 93955, + "Directional": true + }] + }, { + "ID": 18434, + "SourceStructureID": 93975, + "TargetStructureID": 5528, + "Label": "93975-5528 via Conventional from 93986 -> 93985", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93986, + "TargetID": 93985, + "Directional": true + }] + }, { + "ID": 18435, + "SourceStructureID": 93979, + "TargetStructureID": 5528, + "Label": "93979-5528 via Conventional from 93980 -> 93981", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93980, + "TargetID": 93981, + "Directional": true + }] + }, { + "ID": 18436, + "SourceStructureID": 93991, + "TargetStructureID": 5528, + "Label": "93991-5528 via Conventional from 93992 -> 93598", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93992, + "TargetID": 93598, + "Directional": true + }] + }, { + "ID": 18437, + "SourceStructureID": 94005, + "TargetStructureID": 5528, + "Label": "94005-5528 via Conventional from 94006 -> 93594", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94006, + "TargetID": 93594, + "Directional": true + }] + }, { + "ID": 18438, + "SourceStructureID": 94007, + "TargetStructureID": 5528, + "Label": "94007-5528 via Conventional from 94014 -> 93593", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94014, + "TargetID": 93593, + "Directional": true + }] + }, { + "ID": 18439, + "SourceStructureID": 94008, + "TargetStructureID": 5528, + "Label": "94008-5528 via Conventional from 94009 -> 93590", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94009, + "TargetID": 93590, + "Directional": true + }] + }, { + "ID": 18440, + "SourceStructureID": 94010, + "TargetStructureID": 5528, + "Label": "94010-5528 via Conventional from 94011 -> 93589", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94011, + "TargetID": 93589, + "Directional": true + }] + }, { + "ID": 18441, + "SourceStructureID": 94023, + "TargetStructureID": 5528, + "Label": "94023-5528 via Conventional from 94024 -> 93581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94024, + "TargetID": 93581, + "Directional": true + }] + }, { + "ID": 18442, + "SourceStructureID": 94031, + "TargetStructureID": 5528, + "Label": "94031-5528 via Conventional from 94032 -> 94033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94032, + "TargetID": 94033, + "Directional": true + }] + }, { + "ID": 18443, + "SourceStructureID": 94035, + "TargetStructureID": 5528, + "Label": "94035-5528 via Conventional from 94036 -> 94037", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94036, + "TargetID": 94037, + "Directional": true + }] + }, { + "ID": 18444, + "SourceStructureID": 94048, + "TargetStructureID": 5528, + "Label": "94048-5528 via Conventional from 94049 -> 94050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94049, + "TargetID": 94050, + "Directional": true + }] + }, { + "ID": 18445, + "SourceStructureID": 94116, + "TargetStructureID": 5528, + "Label": "94116-5528 via Conventional from 94117 -> 93600", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94117, + "TargetID": 93600, + "Directional": true + }] + }, { + "ID": 18446, + "SourceStructureID": 94118, + "TargetStructureID": 5528, + "Label": "94118-5528 via Conventional from 94119 -> 94120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94119, + "TargetID": 94120, + "Directional": true + }] + }, { + "ID": 18447, + "SourceStructureID": 94130, + "TargetStructureID": 5528, + "Label": "94130-5528 via Conventional from 94132 -> 94133", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94132, + "TargetID": 94133, + "Directional": true + }] + }, { + "ID": 18448, + "SourceStructureID": 94136, + "TargetStructureID": 5528, + "Label": "94136-5528 via Conventional from 94137 -> 94138", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94137, + "TargetID": 94138, + "Directional": true + }] + }, { + "ID": 18449, + "SourceStructureID": 94139, + "TargetStructureID": 5528, + "Label": "94139-5528 via Conventional from 94140 -> 94141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94140, + "TargetID": 94141, + "Directional": true + }] + }, { + "ID": 18450, + "SourceStructureID": 94153, + "TargetStructureID": 5528, + "Label": "94153-5528 via Conventional from 94175 -> 94176", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94175, + "TargetID": 94176, + "Directional": true + }] + }, { + "ID": 18451, + "SourceStructureID": 94165, + "TargetStructureID": 5528, + "Label": "94165-5528 via Conventional from 94171 -> 94172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94171, + "TargetID": 94172, + "Directional": true + }] + }, { + "ID": 18452, + "SourceStructureID": 94178, + "TargetStructureID": 5528, + "Label": "94178-5528 via Conventional from 94180 -> 94179", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94180, + "TargetID": 94179, + "Directional": true + }] + }, { + "ID": 18453, + "SourceStructureID": 94252, + "TargetStructureID": 5528, + "Label": "94252-5528 via Conventional from 94278 -> 94280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94278, + "TargetID": 94280, + "Directional": true + }] + }, { + "ID": 18454, + "SourceStructureID": 94255, + "TargetStructureID": 5528, + "Label": "94255-5528 via Conventional from 94259 -> 94260", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94259, + "TargetID": 94260, + "Directional": true + }] + }, { + "ID": 18455, + "SourceStructureID": 94270, + "TargetStructureID": 5528, + "Label": "94270-5528 via Conventional from 94276 -> 94277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94276, + "TargetID": 94277, + "Directional": true + }] + }, { + "ID": 18456, + "SourceStructureID": 94281, + "TargetStructureID": 5528, + "Label": "94281-5528 via Conventional from 94282 -> 94283", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94282, + "TargetID": 94283, + "Directional": true + }] + }, { + "ID": 18457, + "SourceStructureID": 94288, + "TargetStructureID": 5528, + "Label": "94288-5528 via Conventional from 94289 -> 94290", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94289, + "TargetID": 94290, + "Directional": true + }] + }, { + "ID": 18458, + "SourceStructureID": 94297, + "TargetStructureID": 5528, + "Label": "94297-5528 via Conventional from 94302 -> 94301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94302, + "TargetID": 94301, + "Directional": true + }] + }, { + "ID": 18459, + "SourceStructureID": 94312, + "TargetStructureID": 5528, + "Label": "94312-5528 via Conventional from 94313 -> 94314", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94313, + "TargetID": 94314, + "Directional": true + }] + }, { + "ID": 18460, + "SourceStructureID": 94320, + "TargetStructureID": 5528, + "Label": "94320-5528 via Conventional from 94321 -> 94322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94321, + "TargetID": 94322, + "Directional": true + }] + }, { + "ID": 18461, + "SourceStructureID": 94331, + "TargetStructureID": 5528, + "Label": "94331-5528 via Conventional from 94332 -> 94333", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94332, + "TargetID": 94333, + "Directional": true + }] + }, { + "ID": 18462, + "SourceStructureID": 94334, + "TargetStructureID": 5528, + "Label": "94334-5528 via Conventional from 94335 -> 94336", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94335, + "TargetID": 94336, + "Directional": true + }] + }, { + "ID": 18463, + "SourceStructureID": 94337, + "TargetStructureID": 5528, + "Label": "94337-5528 via Conventional from 94338 -> 94339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94338, + "TargetID": 94339, + "Directional": true + }] + }, { + "ID": 18464, + "SourceStructureID": 94340, + "TargetStructureID": 5528, + "Label": "94340-5528 via Conventional from 94341 -> 94342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94341, + "TargetID": 94342, + "Directional": true + }] + }, { + "ID": 18465, + "SourceStructureID": 94346, + "TargetStructureID": 5528, + "Label": "94346-5528 via Conventional from 94347 -> 94348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94347, + "TargetID": 94348, + "Directional": true + }] + }, { + "ID": 18466, + "SourceStructureID": 94365, + "TargetStructureID": 5528, + "Label": "94365-5528 via Conventional from 94367 -> 94366, 94368 -> 94369", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94367, + "TargetID": 94366, + "Directional": true + }, { + "SourceID": 94368, + "TargetID": 94369, + "Directional": true + }] + }, { + "ID": 18467, + "SourceStructureID": 94385, + "TargetStructureID": 5528, + "Label": "94385-5528 via Conventional from 94387 -> 91644", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94387, + "TargetID": 91644, + "Directional": true + }] + }, { + "ID": 18468, + "SourceStructureID": 94385, + "TargetStructureID": 6129, + "Label": "94385-6129 via Conventional from 94386 -> 17859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94386, + "TargetID": 17859, + "Directional": true + }] + }, { + "ID": 18469, + "SourceStructureID": 94388, + "TargetStructureID": 5528, + "Label": "94388-5528 via Conventional from 94389 -> 94390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94389, + "TargetID": 94390, + "Directional": true + }] + }, { + "ID": 18470, + "SourceStructureID": 94391, + "TargetStructureID": 5528, + "Label": "94391-5528 via Conventional from 94392 -> 94393", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94392, + "TargetID": 94393, + "Directional": true + }] + }, { + "ID": 18471, + "SourceStructureID": 94414, + "TargetStructureID": 5528, + "Label": "94414-5528 via Conventional from 94415 -> 94416", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94415, + "TargetID": 94416, + "Directional": true + }] + }, { + "ID": 18472, + "SourceStructureID": 94417, + "TargetStructureID": 94417, + "Label": "94417-94417 via Conventional from 94420 -> 94419", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94420, + "TargetID": 94419, + "Directional": true + }] + }, { + "ID": 18473, + "SourceStructureID": 94422, + "TargetStructureID": 5528, + "Label": "94422-5528 via Conventional from 94423 -> 94424", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94423, + "TargetID": 94424, + "Directional": true + }] + }, { + "ID": 18474, + "SourceStructureID": 94425, + "TargetStructureID": 5528, + "Label": "94425-5528 via Conventional from 94426 -> 94427", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94426, + "TargetID": 94427, + "Directional": true + }] + }, { + "ID": 18475, + "SourceStructureID": 94474, + "TargetStructureID": 5528, + "Label": "94474-5528 via Conventional from 94476 -> 94477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94476, + "TargetID": 94477, + "Directional": true + }] + }, { + "ID": 18476, + "SourceStructureID": 94479, + "TargetStructureID": 5528, + "Label": "94479-5528 via Conventional from 94480 -> 94481", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94480, + "TargetID": 94481, + "Directional": true + }] + }, { + "ID": 18477, + "SourceStructureID": 94490, + "TargetStructureID": 5528, + "Label": "94490-5528 via Conventional from 94492 -> 94491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94492, + "TargetID": 94491, + "Directional": true + }] + }, { + "ID": 18478, + "SourceStructureID": 94500, + "TargetStructureID": 5528, + "Label": "94500-5528 via Conventional from 94505 -> 94506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94505, + "TargetID": 94506, + "Directional": true + }] + }, { + "ID": 18479, + "SourceStructureID": 94507, + "TargetStructureID": 5528, + "Label": "94507-5528 via Conventional from 94508 -> 94509", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94508, + "TargetID": 94509, + "Directional": true + }] + }, { + "ID": 18480, + "SourceStructureID": 94512, + "TargetStructureID": 5528, + "Label": "94512-5528 via Conventional from 94513 -> 94514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94513, + "TargetID": 94514, + "Directional": true + }] + }, { + "ID": 18481, + "SourceStructureID": 94525, + "TargetStructureID": 5528, + "Label": "94525-5528 via Conventional from 94526 -> 94528", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94526, + "TargetID": 94528, + "Directional": true + }] + }, { + "ID": 18482, + "SourceStructureID": 94536, + "TargetStructureID": 5528, + "Label": "94536-5528 via Conventional from 94537 -> 94538", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94537, + "TargetID": 94538, + "Directional": true + }] + }, { + "ID": 18483, + "SourceStructureID": 94582, + "TargetStructureID": 180, + "Label": "94582-180 via Conventional from 94620 -> 843", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94620, + "TargetID": 843, + "Directional": true + }] + }, { + "ID": 18484, + "SourceStructureID": 94583, + "TargetStructureID": 180, + "Label": "94583-180 via Conventional from 94621 -> 23645", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94621, + "TargetID": 23645, + "Directional": true + }] + }, { + "ID": 18485, + "SourceStructureID": 94635, + "TargetStructureID": 5528, + "Label": "94635-5528 via Conventional from 94644 -> 94645", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94644, + "TargetID": 94645, + "Directional": true + }] + }, { + "ID": 18486, + "SourceStructureID": 94641, + "TargetStructureID": 180, + "Label": "94641-180 via Conventional from 94642 -> 94643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94642, + "TargetID": 94643, + "Directional": true + }] + }, { + "ID": 18487, + "SourceStructureID": 94649, + "TargetStructureID": 5528, + "Label": "94649-5528 via Conventional from 94650 -> 94651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94650, + "TargetID": 94651, + "Directional": true + }] + }, { + "ID": 18488, + "SourceStructureID": 94652, + "TargetStructureID": 5528, + "Label": "94652-5528 via Conventional from 94657 -> 94658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94657, + "TargetID": 94658, + "Directional": true + }] + }, { + "ID": 18489, + "SourceStructureID": 94660, + "TargetStructureID": 5528, + "Label": "94660-5528 via Conventional from 94661 -> 94662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94661, + "TargetID": 94662, + "Directional": true + }] + }, { + "ID": 18490, + "SourceStructureID": 94663, + "TargetStructureID": 5528, + "Label": "94663-5528 via Conventional from 94665 -> 94666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94665, + "TargetID": 94666, + "Directional": true + }] + }, { + "ID": 18491, + "SourceStructureID": 94664, + "TargetStructureID": 180, + "Label": "94664-180 via Conventional from 94706 -> 94707, 94896 -> 94897, 133042 -> 133041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94706, + "TargetID": 94707, + "Directional": true + }, { + "SourceID": 94896, + "TargetID": 94897, + "Directional": true + }, { + "SourceID": 133042, + "TargetID": 133041, + "Directional": true + }] + }, { + "ID": 18492, + "SourceStructureID": 94670, + "TargetStructureID": 5528, + "Label": "94670-5528 via Conventional from 94671 -> 94672", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94671, + "TargetID": 94672, + "Directional": true + }] + }, { + "ID": 18493, + "SourceStructureID": 94692, + "TargetStructureID": 180, + "Label": "94692-180 via Conventional from 94693 -> 94694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94693, + "TargetID": 94694, + "Directional": true + }] + }, { + "ID": 18494, + "SourceStructureID": 94695, + "TargetStructureID": 180, + "Label": "94695-180 via Conventional from 94696 -> 94697", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94696, + "TargetID": 94697, + "Directional": true + }] + }, { + "ID": 18495, + "SourceStructureID": 94698, + "TargetStructureID": 180, + "Label": "94698-180 via Conventional from 94699 -> 94700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94699, + "TargetID": 94700, + "Directional": true + }] + }, { + "ID": 18496, + "SourceStructureID": 94705, + "TargetStructureID": 5528, + "Label": "94705-5528 via Conventional from 94711 -> 94712", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94711, + "TargetID": 94712, + "Directional": true + }] + }, { + "ID": 18497, + "SourceStructureID": 94713, + "TargetStructureID": 5528, + "Label": "94713-5528 via Conventional from 94714 -> 94715", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94714, + "TargetID": 94715, + "Directional": true + }] + }, { + "ID": 18498, + "SourceStructureID": 94735, + "TargetStructureID": 5528, + "Label": "94735-5528 via Conventional from 94736 -> 94737", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94736, + "TargetID": 94737, + "Directional": true + }] + }, { + "ID": 18499, + "SourceStructureID": 94741, + "TargetStructureID": 5528, + "Label": "94741-5528 via Conventional from 94788 -> 94789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94788, + "TargetID": 94789, + "Directional": true + }] + }, { + "ID": 18500, + "SourceStructureID": 94784, + "TargetStructureID": 5623, + "Label": "94784-5623 via Conventional from 94785 -> 94783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94785, + "TargetID": 94783, + "Directional": true + }] + }, { + "ID": 18501, + "SourceStructureID": 94791, + "TargetStructureID": 5528, + "Label": "94791-5528 via Conventional from 94801 -> 94802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94801, + "TargetID": 94802, + "Directional": true + }] + }, { + "ID": 18502, + "SourceStructureID": 94796, + "TargetStructureID": 5528, + "Label": "94796-5528 via Conventional from 94799 -> 94800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94799, + "TargetID": 94800, + "Directional": true + }] + }, { + "ID": 18503, + "SourceStructureID": 94796, + "TargetStructureID": 94741, + "Label": "94796-94741 via Conventional from 94797 -> 94798", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94797, + "TargetID": 94798, + "Directional": true + }] + }, { + "ID": 18504, + "SourceStructureID": 94803, + "TargetStructureID": 5528, + "Label": "94803-5528 via Conventional from 94804 -> 94805", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94804, + "TargetID": 94805, + "Directional": true + }] + }, { + "ID": 18505, + "SourceStructureID": 94818, + "TargetStructureID": 5528, + "Label": "94818-5528 via Conventional from 94819 -> 94820", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94819, + "TargetID": 94820, + "Directional": true + }] + }, { + "ID": 18506, + "SourceStructureID": 94821, + "TargetStructureID": 5528, + "Label": "94821-5528 via Conventional from 94822 -> 94823", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94822, + "TargetID": 94823, + "Directional": true + }] + }, { + "ID": 18507, + "SourceStructureID": 94824, + "TargetStructureID": 5528, + "Label": "94824-5528 via Conventional from 94825 -> 94826", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94825, + "TargetID": 94826, + "Directional": true + }] + }, { + "ID": 18508, + "SourceStructureID": 94831, + "TargetStructureID": 5528, + "Label": "94831-5528 via Conventional from 94832 -> 94833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94832, + "TargetID": 94833, + "Directional": true + }] + }, { + "ID": 18509, + "SourceStructureID": 94865, + "TargetStructureID": 5528, + "Label": "94865-5528 via Conventional from 94866 -> 8251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94866, + "TargetID": 8251, + "Directional": true + }] + }, { + "ID": 18510, + "SourceStructureID": 94867, + "TargetStructureID": 5528, + "Label": "94867-5528 via Conventional from 94868 -> 36395", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94868, + "TargetID": 36395, + "Directional": true + }] + }, { + "ID": 18511, + "SourceStructureID": 94900, + "TargetStructureID": 180, + "Label": "94900-180 via Conventional from 94901 -> 94902", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94901, + "TargetID": 94902, + "Directional": true + }] + }, { + "ID": 18512, + "SourceStructureID": 94903, + "TargetStructureID": 180, + "Label": "94903-180 via Conventional from 94906 -> 94907", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94906, + "TargetID": 94907, + "Directional": true + }] + }, { + "ID": 18513, + "SourceStructureID": 94918, + "TargetStructureID": 180, + "Label": "94918-180 via Conventional from 94924 -> 94925", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94924, + "TargetID": 94925, + "Directional": true + }] + }, { + "ID": 18514, + "SourceStructureID": 94930, + "TargetStructureID": 94930, + "Label": "94930-94930 via Conventional from 133103 -> 133102", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133103, + "TargetID": 133102, + "Directional": true + }] + }, { + "ID": 18515, + "SourceStructureID": 94944, + "TargetStructureID": 180, + "Label": "94944-180 via Conventional from 94945 -> 91021", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94945, + "TargetID": 91021, + "Directional": true + }] + }, { + "ID": 18516, + "SourceStructureID": 94948, + "TargetStructureID": 180, + "Label": "94948-180 via Conventional from 94949 -> 7546", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94949, + "TargetID": 7546, + "Directional": true + }] + }, { + "ID": 18517, + "SourceStructureID": 94959, + "TargetStructureID": 180, + "Label": "94959-180 via Conventional from 94960 -> 94961", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94960, + "TargetID": 94961, + "Directional": true + }] + }, { + "ID": 18518, + "SourceStructureID": 94962, + "TargetStructureID": 180, + "Label": "94962-180 via Conventional from 94963 -> 29255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94963, + "TargetID": 29255, + "Directional": true + }] + }, { + "ID": 18519, + "SourceStructureID": 94968, + "TargetStructureID": 180, + "Label": "94968-180 via Conventional from 94969 -> 94970", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94969, + "TargetID": 94970, + "Directional": true + }] + }, { + "ID": 18520, + "SourceStructureID": 94974, + "TargetStructureID": 180, + "Label": "94974-180 via Conventional from 94976 -> 29254", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94976, + "TargetID": 29254, + "Directional": true + }] + }, { + "ID": 18521, + "SourceStructureID": 94978, + "TargetStructureID": 6169, + "Label": "94978-6169 via Conventional from 123358 -> 14939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123358, + "TargetID": 14939, + "Directional": true + }] + }, { + "ID": 18522, + "SourceStructureID": 94983, + "TargetStructureID": 180, + "Label": "94983-180 via Conventional from 94984 -> 29265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94984, + "TargetID": 29265, + "Directional": true + }] + }, { + "ID": 18523, + "SourceStructureID": 94983, + "TargetStructureID": 6169, + "Label": "94983-6169 via Conventional from 132929 -> 132930", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132929, + "TargetID": 132930, + "Directional": true + }] + }, { + "ID": 18524, + "SourceStructureID": 94985, + "TargetStructureID": 180, + "Label": "94985-180 via Conventional from 94986 -> 94987", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94986, + "TargetID": 94987, + "Directional": true + }] + }, { + "ID": 18525, + "SourceStructureID": 94988, + "TargetStructureID": 180, + "Label": "94988-180 via Conventional from 94989 -> 29256", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94989, + "TargetID": 29256, + "Directional": true + }] + }, { + "ID": 18526, + "SourceStructureID": 94991, + "TargetStructureID": 180, + "Label": "94991-180 via Conventional from 94992 -> 29260", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 94992, + "TargetID": 29260, + "Directional": true + }] + }, { + "ID": 18527, + "SourceStructureID": 94999, + "TargetStructureID": 180, + "Label": "94999-180 via Conventional from 95000 -> 59665", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95000, + "TargetID": 59665, + "Directional": true + }] + }, { + "ID": 18528, + "SourceStructureID": 95001, + "TargetStructureID": 180, + "Label": "95001-180 via Conventional from 118490 -> 29264", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118490, + "TargetID": 29264, + "Directional": true + }] + }, { + "ID": 18529, + "SourceStructureID": 95062, + "TargetStructureID": 5528, + "Label": "95062-5528 via Conventional from 95063 -> 25296", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95063, + "TargetID": 25296, + "Directional": true + }] + }, { + "ID": 18530, + "SourceStructureID": 95097, + "TargetStructureID": 5528, + "Label": "95097-5528 via Conventional from 95100 -> 36396", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95100, + "TargetID": 36396, + "Directional": true + }] + }, { + "ID": 18531, + "SourceStructureID": 95107, + "TargetStructureID": 5528, + "Label": "95107-5528 via Conventional from 95108 -> 25297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95108, + "TargetID": 25297, + "Directional": true + }] + }, { + "ID": 18532, + "SourceStructureID": 95117, + "TargetStructureID": 5528, + "Label": "95117-5528 via Conventional from 95118 -> 95120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95118, + "TargetID": 95120, + "Directional": true + }] + }, { + "ID": 18533, + "SourceStructureID": 95121, + "TargetStructureID": 5528, + "Label": "95121-5528 via Conventional from 95122 -> 95123, 95125 -> 95124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95122, + "TargetID": 95123, + "Directional": true + }, { + "SourceID": 95125, + "TargetID": 95124, + "Directional": true + }] + }, { + "ID": 18534, + "SourceStructureID": 95149, + "TargetStructureID": 5528, + "Label": "95149-5528 via Conventional from 95150 -> 68790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95150, + "TargetID": 68790, + "Directional": true + }] + }, { + "ID": 18535, + "SourceStructureID": 95159, + "TargetStructureID": 95159, + "Label": "95159-95159 via Conventional from 95160 -> 95161", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95160, + "TargetID": 95161, + "Directional": true + }] + }, { + "ID": 18536, + "SourceStructureID": 95162, + "TargetStructureID": 5528, + "Label": "95162-5528 via Conventional from 95164 -> 95163", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95164, + "TargetID": 95163, + "Directional": true + }] + }, { + "ID": 18537, + "SourceStructureID": 95175, + "TargetStructureID": 5528, + "Label": "95175-5528 via Conventional from 95176 -> 95177", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95176, + "TargetID": 95177, + "Directional": true + }] + }, { + "ID": 18538, + "SourceStructureID": 95190, + "TargetStructureID": 5528, + "Label": "95190-5528 via Conventional from 95193 -> 95194", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95193, + "TargetID": 95194, + "Directional": true + }] + }, { + "ID": 18539, + "SourceStructureID": 95195, + "TargetStructureID": 5531, + "Label": "95195-5531 via Conventional from 147426 -> 147425", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147426, + "TargetID": 147425, + "Directional": true + }] + }, { + "ID": 18540, + "SourceStructureID": 95197, + "TargetStructureID": 5528, + "Label": "95197-5528 via Conventional from 95198 -> 95199", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95198, + "TargetID": 95199, + "Directional": true + }] + }, { + "ID": 18541, + "SourceStructureID": 95243, + "TargetStructureID": 180, + "Label": "95243-180 via Conventional from 95244 -> 29250", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95244, + "TargetID": 29250, + "Directional": true + }] + }, { + "ID": 18542, + "SourceStructureID": 95260, + "TargetStructureID": 180, + "Label": "95260-180 via Conventional from 95261 -> 95262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95261, + "TargetID": 95262, + "Directional": true + }] + }, { + "ID": 18543, + "SourceStructureID": 95266, + "TargetStructureID": 180, + "Label": "95266-180 via Conventional from 95267 -> 95268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95267, + "TargetID": 95268, + "Directional": true + }] + }, { + "ID": 18544, + "SourceStructureID": 95269, + "TargetStructureID": 180, + "Label": "95269-180 via Conventional from 95271 -> 95272", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95271, + "TargetID": 95272, + "Directional": true + }] + }, { + "ID": 18545, + "SourceStructureID": 95273, + "TargetStructureID": 180, + "Label": "95273-180 via Conventional from 95274 -> 95297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95274, + "TargetID": 95297, + "Directional": true + }] + }, { + "ID": 18546, + "SourceStructureID": 95292, + "TargetStructureID": 180, + "Label": "95292-180 via Conventional from 95295 -> 95296", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95295, + "TargetID": 95296, + "Directional": true + }] + }, { + "ID": 18547, + "SourceStructureID": 95299, + "TargetStructureID": 180, + "Label": "95299-180 via Conventional from 132855 -> 132856", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132855, + "TargetID": 132856, + "Directional": true + }] + }, { + "ID": 18548, + "SourceStructureID": 95307, + "TargetStructureID": 180, + "Label": "95307-180 via Conventional from 95308 -> 95309", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95308, + "TargetID": 95309, + "Directional": true + }] + }, { + "ID": 18549, + "SourceStructureID": 95310, + "TargetStructureID": 180, + "Label": "95310-180 via Conventional from 95316 -> 95317", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95316, + "TargetID": 95317, + "Directional": true + }] + }, { + "ID": 18550, + "SourceStructureID": 95319, + "TargetStructureID": 180, + "Label": "95319-180 via Conventional from 95320 -> 59673", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95320, + "TargetID": 59673, + "Directional": true + }] + }, { + "ID": 18551, + "SourceStructureID": 95323, + "TargetStructureID": 180, + "Label": "95323-180 via Conventional from 133110 -> 133109", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133110, + "TargetID": 133109, + "Directional": true + }] + }, { + "ID": 18552, + "SourceStructureID": 95323, + "TargetStructureID": 95319, + "Label": "95323-95319 via Conventional from 133107 -> 133108", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133107, + "TargetID": 133108, + "Directional": true + }] + }, { + "ID": 18553, + "SourceStructureID": 95326, + "TargetStructureID": 180, + "Label": "95326-180 via Conventional from 95327 -> 59675", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95327, + "TargetID": 59675, + "Directional": true + }] + }, { + "ID": 18554, + "SourceStructureID": 95328, + "TargetStructureID": 180, + "Label": "95328-180 via Conventional from 95329 -> 59676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95329, + "TargetID": 59676, + "Directional": true + }] + }, { + "ID": 18555, + "SourceStructureID": 95334, + "TargetStructureID": 180, + "Label": "95334-180 via Conventional from 95335 -> 95336", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95335, + "TargetID": 95336, + "Directional": true + }] + }, { + "ID": 18556, + "SourceStructureID": 95387, + "TargetStructureID": 180, + "Label": "95387-180 via Conventional from 95388 -> 860", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95388, + "TargetID": 860, + "Directional": true + }] + }, { + "ID": 18557, + "SourceStructureID": 95390, + "TargetStructureID": 180, + "Label": "95390-180 via Conventional from 95396 -> 95397", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95396, + "TargetID": 95397, + "Directional": true + }] + }, { + "ID": 18558, + "SourceStructureID": 95391, + "TargetStructureID": 180, + "Label": "95391-180 via Conventional from 95392 -> 95393", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95392, + "TargetID": 95393, + "Directional": true + }] + }, { + "ID": 18559, + "SourceStructureID": 95416, + "TargetStructureID": 180, + "Label": "95416-180 via Conventional from 95417 -> 873", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95417, + "TargetID": 873, + "Directional": true + }] + }, { + "ID": 18560, + "SourceStructureID": 95429, + "TargetStructureID": 180, + "Label": "95429-180 via Conventional from 95430 -> 876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95430, + "TargetID": 876, + "Directional": true + }] + }, { + "ID": 18561, + "SourceStructureID": 95431, + "TargetStructureID": 180, + "Label": "95431-180 via Conventional from 95432 -> 880", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95432, + "TargetID": 880, + "Directional": true + }] + }, { + "ID": 18562, + "SourceStructureID": 95436, + "TargetStructureID": 180, + "Label": "95436-180 via Conventional from 95438 -> 886, 95439 -> 888", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95438, + "TargetID": 886, + "Directional": true + }, { + "SourceID": 95439, + "TargetID": 888, + "Directional": true + }] + }, { + "ID": 18563, + "SourceStructureID": 95440, + "TargetStructureID": 44346, + "Label": "95440-44346 via Conventional from 95450 -> 44407, 95451 -> 95452", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95450, + "TargetID": 44407, + "Directional": true + }, { + "SourceID": 95451, + "TargetID": 95452, + "Directional": true + }] + }, { + "ID": 18564, + "SourceStructureID": 95443, + "TargetStructureID": 180, + "Label": "95443-180 via Conventional from 95444 -> 893", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95444, + "TargetID": 893, + "Directional": true + }] + }, { + "ID": 18565, + "SourceStructureID": 95457, + "TargetStructureID": 180, + "Label": "95457-180 via Conventional from 132898 -> 132897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132898, + "TargetID": 132897, + "Directional": true + }] + }, { + "ID": 18566, + "SourceStructureID": 95465, + "TargetStructureID": 5528, + "Label": "95465-5528 via Conventional from 95466 -> 95467", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95466, + "TargetID": 95467, + "Directional": true + }] + }, { + "ID": 18567, + "SourceStructureID": 95473, + "TargetStructureID": 5528, + "Label": "95473-5528 via Conventional from 95474 -> 95475", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95474, + "TargetID": 95475, + "Directional": true + }] + }, { + "ID": 18568, + "SourceStructureID": 95476, + "TargetStructureID": 5528, + "Label": "95476-5528 via Conventional from 95477 -> 95478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95477, + "TargetID": 95478, + "Directional": true + }] + }, { + "ID": 18569, + "SourceStructureID": 95479, + "TargetStructureID": 5528, + "Label": "95479-5528 via Conventional from 95480 -> 95631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95480, + "TargetID": 95631, + "Directional": true + }] + }, { + "ID": 18570, + "SourceStructureID": 95482, + "TargetStructureID": 485, + "Label": "95482-485 via Conventional from 148063 -> 148064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148063, + "TargetID": 148064, + "Directional": true + }] + }, { + "ID": 18571, + "SourceStructureID": 95482, + "TargetStructureID": 6997, + "Label": "95482-6997 via Conventional from 136658 -> 136277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136658, + "TargetID": 136277, + "Directional": true + }] + }, { + "ID": 18572, + "SourceStructureID": 95485, + "TargetStructureID": 6997, + "Label": "95485-6997 via Conventional from 95486 -> 95484", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95486, + "TargetID": 95484, + "Directional": true + }] + }, { + "ID": 18573, + "SourceStructureID": 95495, + "TargetStructureID": 180, + "Label": "95495-180 via Conventional from 95496 -> 56874", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95496, + "TargetID": 56874, + "Directional": true + }] + }, { + "ID": 18574, + "SourceStructureID": 95502, + "TargetStructureID": 180, + "Label": "95502-180 via Conventional from 95503 -> 95504", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95503, + "TargetID": 95504, + "Directional": true + }] + }, { + "ID": 18575, + "SourceStructureID": 95512, + "TargetStructureID": 180, + "Label": "95512-180 via Conventional from 132868 -> 132867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132868, + "TargetID": 132867, + "Directional": true + }] + }, { + "ID": 18576, + "SourceStructureID": 95523, + "TargetStructureID": 180, + "Label": "95523-180 via Conventional from 95525 -> 95526", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95525, + "TargetID": 95526, + "Directional": true + }] + }, { + "ID": 18577, + "SourceStructureID": 95540, + "TargetStructureID": 180, + "Label": "95540-180 via Conventional from 95541 -> 95542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95541, + "TargetID": 95542, + "Directional": true + }] + }, { + "ID": 18578, + "SourceStructureID": 95548, + "TargetStructureID": 180, + "Label": "95548-180 via Conventional from 95549 -> 95550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95549, + "TargetID": 95550, + "Directional": true + }] + }, { + "ID": 18579, + "SourceStructureID": 95551, + "TargetStructureID": 180, + "Label": "95551-180 via Conventional from 95552 -> 95553", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95552, + "TargetID": 95553, + "Directional": true + }] + }, { + "ID": 18580, + "SourceStructureID": 95556, + "TargetStructureID": 180, + "Label": "95556-180 via Conventional from 95557 -> 95558", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95557, + "TargetID": 95558, + "Directional": true + }] + }, { + "ID": 18581, + "SourceStructureID": 95566, + "TargetStructureID": 180, + "Label": "95566-180 via Conventional from 95567 -> 95569", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95567, + "TargetID": 95569, + "Directional": true + }] + }, { + "ID": 18582, + "SourceStructureID": 95573, + "TargetStructureID": 180, + "Label": "95573-180 via Conventional from 95574 -> 95575", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95574, + "TargetID": 95575, + "Directional": true + }] + }, { + "ID": 18583, + "SourceStructureID": 95578, + "TargetStructureID": 180, + "Label": "95578-180 via Conventional from 95582 -> 95583", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95582, + "TargetID": 95583, + "Directional": true + }] + }, { + "ID": 18584, + "SourceStructureID": 95579, + "TargetStructureID": 180, + "Label": "95579-180 via Conventional from 95580 -> 95581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95580, + "TargetID": 95581, + "Directional": true + }] + }, { + "ID": 18585, + "SourceStructureID": 95593, + "TargetStructureID": 180, + "Label": "95593-180 via Conventional from 95594 -> 4928", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95594, + "TargetID": 4928, + "Directional": true + }] + }, { + "ID": 18586, + "SourceStructureID": 95597, + "TargetStructureID": 180, + "Label": "95597-180 via Conventional from 95598 -> 95599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95598, + "TargetID": 95599, + "Directional": true + }] + }, { + "ID": 18587, + "SourceStructureID": 95600, + "TargetStructureID": 180, + "Label": "95600-180 via Unknown from 95602 -> 95601", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 95602, + "TargetID": 95601, + "Directional": true + }] + }, { + "ID": 18588, + "SourceStructureID": 95609, + "TargetStructureID": 180, + "Label": "95609-180 via Conventional from 95610 -> 95611", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95610, + "TargetID": 95611, + "Directional": true + }] + }, { + "ID": 18589, + "SourceStructureID": 95615, + "TargetStructureID": 180, + "Label": "95615-180 via Conventional from 95616 -> 95617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95616, + "TargetID": 95617, + "Directional": true + }] + }, { + "ID": 18590, + "SourceStructureID": 95633, + "TargetStructureID": 5528, + "Label": "95633-5528 via Conventional from 95636 -> 95635", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95636, + "TargetID": 95635, + "Directional": true + }] + }, { + "ID": 18591, + "SourceStructureID": 95648, + "TargetStructureID": 180, + "Label": "95648-180 via Conventional from 95649 -> 95650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95649, + "TargetID": 95650, + "Directional": true + }] + }, { + "ID": 18592, + "SourceStructureID": 95651, + "TargetStructureID": 180, + "Label": "95651-180 via Conventional from 95653 -> 95654, 132992 -> 132993", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95653, + "TargetID": 95654, + "Directional": true + }, { + "SourceID": 132992, + "TargetID": 132993, + "Directional": true + }] + }, { + "ID": 18593, + "SourceStructureID": 95673, + "TargetStructureID": 5528, + "Label": "95673-5528 via Conventional from 95675 -> 8266", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95675, + "TargetID": 8266, + "Directional": true + }] + }, { + "ID": 18594, + "SourceStructureID": 95676, + "TargetStructureID": 5528, + "Label": "95676-5528 via Conventional from 95680 -> 95681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95680, + "TargetID": 95681, + "Directional": true + }] + }, { + "ID": 18595, + "SourceStructureID": 95683, + "TargetStructureID": 180, + "Label": "95683-180 via Conventional from 95686 -> 95687", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95686, + "TargetID": 95687, + "Directional": true + }] + }, { + "ID": 18596, + "SourceStructureID": 95688, + "TargetStructureID": 5528, + "Label": "95688-5528 via Conventional from 95689 -> 8263", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95689, + "TargetID": 8263, + "Directional": true + }] + }, { + "ID": 18597, + "SourceStructureID": 95690, + "TargetStructureID": 5528, + "Label": "95690-5528 via Conventional from 95691 -> 8262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95691, + "TargetID": 8262, + "Directional": true + }] + }, { + "ID": 18598, + "SourceStructureID": 95698, + "TargetStructureID": 5528, + "Label": "95698-5528 via Conventional from 96166 -> 8259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96166, + "TargetID": 8259, + "Directional": true + }] + }, { + "ID": 18599, + "SourceStructureID": 95699, + "TargetStructureID": 5528, + "Label": "95699-5528 via Conventional from 96163 -> 8260", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96163, + "TargetID": 8260, + "Directional": true + }] + }, { + "ID": 18600, + "SourceStructureID": 95699, + "TargetStructureID": 5531, + "Label": "95699-5531 via Conventional from 114687 -> 114688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114687, + "TargetID": 114688, + "Directional": true + }] + }, { + "ID": 18601, + "SourceStructureID": 95700, + "TargetStructureID": 5528, + "Label": "95700-5528 via Conventional from 96162 -> 8268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96162, + "TargetID": 8268, + "Directional": true + }] + }, { + "ID": 18602, + "SourceStructureID": 95708, + "TargetStructureID": 180, + "Label": "95708-180 via Conventional from 95709 -> 95710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95709, + "TargetID": 95710, + "Directional": true + }] + }, { + "ID": 18603, + "SourceStructureID": 95711, + "TargetStructureID": 180, + "Label": "95711-180 via Conventional from 95712 -> 95713", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95712, + "TargetID": 95713, + "Directional": true + }] + }, { + "ID": 18604, + "SourceStructureID": 95729, + "TargetStructureID": 180, + "Label": "95729-180 via Conventional from 95730 -> 95731", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95730, + "TargetID": 95731, + "Directional": true + }] + }, { + "ID": 18605, + "SourceStructureID": 95746, + "TargetStructureID": 180, + "Label": "95746-180 via Conventional from 95748 -> 95749", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95748, + "TargetID": 95749, + "Directional": true + }] + }, { + "ID": 18606, + "SourceStructureID": 95751, + "TargetStructureID": 180, + "Label": "95751-180 via Conventional from 95754 -> 95755", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95754, + "TargetID": 95755, + "Directional": true + }] + }, { + "ID": 18607, + "SourceStructureID": 95807, + "TargetStructureID": 180, + "Label": "95807-180 via Conventional from 95808 -> 88068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95808, + "TargetID": 88068, + "Directional": true + }] + }, { + "ID": 18608, + "SourceStructureID": 95815, + "TargetStructureID": 180, + "Label": "95815-180 via Conventional from 95816 -> 95817", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95816, + "TargetID": 95817, + "Directional": true + }] + }, { + "ID": 18609, + "SourceStructureID": 95818, + "TargetStructureID": 180, + "Label": "95818-180 via Conventional from 95819 -> 88069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95819, + "TargetID": 88069, + "Directional": true + }] + }, { + "ID": 18610, + "SourceStructureID": 95820, + "TargetStructureID": 180, + "Label": "95820-180 via Conventional from 95822 -> 95821", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95822, + "TargetID": 95821, + "Directional": true + }] + }, { + "ID": 18611, + "SourceStructureID": 95823, + "TargetStructureID": 180, + "Label": "95823-180 via Conventional from 95826 -> 88074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95826, + "TargetID": 88074, + "Directional": true + }] + }, { + "ID": 18612, + "SourceStructureID": 95824, + "TargetStructureID": 180, + "Label": "95824-180 via Conventional from 132960 -> 132959", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132960, + "TargetID": 132959, + "Directional": true + }] + }, { + "ID": 18613, + "SourceStructureID": 95829, + "TargetStructureID": 180, + "Label": "95829-180 via Conventional from 95830 -> 88073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95830, + "TargetID": 88073, + "Directional": true + }] + }, { + "ID": 18614, + "SourceStructureID": 95836, + "TargetStructureID": 180, + "Label": "95836-180 via Conventional from 95838 -> 95837", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95838, + "TargetID": 95837, + "Directional": true + }] + }, { + "ID": 18615, + "SourceStructureID": 95846, + "TargetStructureID": 180, + "Label": "95846-180 via Conventional from 95847 -> 95848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95847, + "TargetID": 95848, + "Directional": true + }] + }, { + "ID": 18616, + "SourceStructureID": 95851, + "TargetStructureID": 180, + "Label": "95851-180 via Conventional from 95853 -> 88075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95853, + "TargetID": 88075, + "Directional": true + }] + }, { + "ID": 18617, + "SourceStructureID": 95866, + "TargetStructureID": 180, + "Label": "95866-180 via Conventional from 95867 -> 95869, 133007 -> 133006", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95867, + "TargetID": 95869, + "Directional": true + }, { + "SourceID": 133007, + "TargetID": 133006, + "Directional": true + }] + }, { + "ID": 18618, + "SourceStructureID": 95871, + "TargetStructureID": 180, + "Label": "95871-180 via Conventional from 95873 -> 6568", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95873, + "TargetID": 6568, + "Directional": true + }] + }, { + "ID": 18619, + "SourceStructureID": 95874, + "TargetStructureID": 180, + "Label": "95874-180 via Conventional from 95875 -> 6569", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95875, + "TargetID": 6569, + "Directional": true + }] + }, { + "ID": 18620, + "SourceStructureID": 95877, + "TargetStructureID": 180, + "Label": "95877-180 via Conventional from 95880 -> 95881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95880, + "TargetID": 95881, + "Directional": true + }] + }, { + "ID": 18621, + "SourceStructureID": 95895, + "TargetStructureID": 180, + "Label": "95895-180 via Conventional from 95898 -> 95899", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95898, + "TargetID": 95899, + "Directional": true + }] + }, { + "ID": 18622, + "SourceStructureID": 95900, + "TargetStructureID": 180, + "Label": "95900-180 via Conventional from 95901 -> 95902", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95901, + "TargetID": 95902, + "Directional": true + }] + }, { + "ID": 18623, + "SourceStructureID": 95907, + "TargetStructureID": 180, + "Label": "95907-180 via Conventional from 95908 -> 95909", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95908, + "TargetID": 95909, + "Directional": true + }] + }, { + "ID": 18624, + "SourceStructureID": 95910, + "TargetStructureID": 180, + "Label": "95910-180 via Conventional from 95913 -> 95914", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95913, + "TargetID": 95914, + "Directional": true + }] + }, { + "ID": 18625, + "SourceStructureID": 95917, + "TargetStructureID": 180, + "Label": "95917-180 via Conventional from 95920 -> 95921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95920, + "TargetID": 95921, + "Directional": true + }] + }, { + "ID": 18626, + "SourceStructureID": 95922, + "TargetStructureID": 166, + "Label": "95922-166 via Conventional from 132918 -> 132917", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132918, + "TargetID": 132917, + "Directional": true + }] + }, { + "ID": 18627, + "SourceStructureID": 95922, + "TargetStructureID": 180, + "Label": "95922-180 via Conventional from 95925 -> 14141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95925, + "TargetID": 14141, + "Directional": true + }] + }, { + "ID": 18628, + "SourceStructureID": 95930, + "TargetStructureID": 180, + "Label": "95930-180 via Conventional from 95937 -> 14138, 95957 -> 14146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95937, + "TargetID": 14138, + "Directional": true + }, { + "SourceID": 95957, + "TargetID": 14146, + "Directional": true + }] + }, { + "ID": 18629, + "SourceStructureID": 95945, + "TargetStructureID": 180, + "Label": "95945-180 via Conventional from 95946 -> 14140", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95946, + "TargetID": 14140, + "Directional": true + }] + }, { + "ID": 18630, + "SourceStructureID": 95947, + "TargetStructureID": 180, + "Label": "95947-180 via Conventional from 95948 -> 14145", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95948, + "TargetID": 14145, + "Directional": true + }] + }, { + "ID": 18631, + "SourceStructureID": 95959, + "TargetStructureID": 180, + "Label": "95959-180 via Conventional from 95961 -> 95962", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95961, + "TargetID": 95962, + "Directional": true + }] + }, { + "ID": 18632, + "SourceStructureID": 95963, + "TargetStructureID": 180, + "Label": "95963-180 via Conventional from 95964 -> 95965", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95964, + "TargetID": 95965, + "Directional": true + }] + }, { + "ID": 18633, + "SourceStructureID": 95966, + "TargetStructureID": 180, + "Label": "95966-180 via Conventional from 95968 -> 14159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95968, + "TargetID": 14159, + "Directional": true + }] + }, { + "ID": 18634, + "SourceStructureID": 95971, + "TargetStructureID": 180, + "Label": "95971-180 via Conventional from 95972 -> 14158", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95972, + "TargetID": 14158, + "Directional": true + }] + }, { + "ID": 18635, + "SourceStructureID": 95977, + "TargetStructureID": 180, + "Label": "95977-180 via Conventional from 96009 -> 96010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96009, + "TargetID": 96010, + "Directional": true + }] + }, { + "ID": 18636, + "SourceStructureID": 95978, + "TargetStructureID": 180, + "Label": "95978-180 via Conventional from 95979 -> 14148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95979, + "TargetID": 14148, + "Directional": true + }] + }, { + "ID": 18637, + "SourceStructureID": 95991, + "TargetStructureID": 180, + "Label": "95991-180 via Conventional from 95993 -> 95994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 95993, + "TargetID": 95994, + "Directional": true + }] + }, { + "ID": 18638, + "SourceStructureID": 95997, + "TargetStructureID": 180, + "Label": "95997-180 via Conventional from 96001 -> 14160", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96001, + "TargetID": 14160, + "Directional": true + }] + }, { + "ID": 18639, + "SourceStructureID": 95997, + "TargetStructureID": 6169, + "Label": "95997-6169 via Conventional from 132841 -> 132840", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132841, + "TargetID": 132840, + "Directional": true + }] + }, { + "ID": 18640, + "SourceStructureID": 96011, + "TargetStructureID": 180, + "Label": "96011-180 via Conventional from 96012 -> 14153", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96012, + "TargetID": 14153, + "Directional": true + }] + }, { + "ID": 18641, + "SourceStructureID": 96039, + "TargetStructureID": 180, + "Label": "96039-180 via Conventional from 96040 -> 96041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96040, + "TargetID": 96041, + "Directional": true + }] + }, { + "ID": 18642, + "SourceStructureID": 96143, + "TargetStructureID": 5528, + "Label": "96143-5528 via Conventional from 96158 -> 8270", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96158, + "TargetID": 8270, + "Directional": true + }] + }, { + "ID": 18643, + "SourceStructureID": 96152, + "TargetStructureID": 595, + "Label": "96152-595 via Conventional from 125162 -> 125161", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125162, + "TargetID": 125161, + "Directional": true + }] + }, { + "ID": 18644, + "SourceStructureID": 96152, + "TargetStructureID": 5528, + "Label": "96152-5528 via Conventional from 96159 -> 8271", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96159, + "TargetID": 8271, + "Directional": true + }] + }, { + "ID": 18645, + "SourceStructureID": 96164, + "TargetStructureID": 5528, + "Label": "96164-5528 via Conventional from 96165 -> 8261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96165, + "TargetID": 8261, + "Directional": true + }] + }, { + "ID": 18646, + "SourceStructureID": 96164, + "TargetStructureID": 82832, + "Label": "96164-82832 via Conventional from 107187 -> 107185", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107187, + "TargetID": 107185, + "Directional": true + }] + }, { + "ID": 18647, + "SourceStructureID": 96175, + "TargetStructureID": 5517, + "Label": "96175-5517 via Conventional from 96176 -> 96174", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96176, + "TargetID": 96174, + "Directional": true + }] + }, { + "ID": 18648, + "SourceStructureID": 96184, + "TargetStructureID": 5528, + "Label": "96184-5528 via Conventional from 96186 -> 96187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96186, + "TargetID": 96187, + "Directional": true + }] + }, { + "ID": 18649, + "SourceStructureID": 96199, + "TargetStructureID": 5517, + "Label": "96199-5517 via Conventional from 96200 -> 96197", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96200, + "TargetID": 96197, + "Directional": true + }] + }, { + "ID": 18650, + "SourceStructureID": 96202, + "TargetStructureID": 5517, + "Label": "96202-5517 via Conventional from 96203 -> 96198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96203, + "TargetID": 96198, + "Directional": true + }] + }, { + "ID": 18651, + "SourceStructureID": 96224, + "TargetStructureID": 5528, + "Label": "96224-5528 via Conventional from 96225 -> 96226", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96225, + "TargetID": 96226, + "Directional": true + }] + }, { + "ID": 18652, + "SourceStructureID": 96224, + "TargetStructureID": 5531, + "Label": "96224-5531 via Conventional from 114542 -> 114543", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114542, + "TargetID": 114543, + "Directional": true + }] + }, { + "ID": 18653, + "SourceStructureID": 96243, + "TargetStructureID": 5528, + "Label": "96243-5528 via Conventional from 96244 -> 96245", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96244, + "TargetID": 96245, + "Directional": true + }] + }, { + "ID": 18654, + "SourceStructureID": 96246, + "TargetStructureID": 5528, + "Label": "96246-5528 via Conventional from 96247 -> 96248", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96247, + "TargetID": 96248, + "Directional": true + }] + }, { + "ID": 18655, + "SourceStructureID": 96249, + "TargetStructureID": 5528, + "Label": "96249-5528 via Conventional from 96250 -> 96251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96250, + "TargetID": 96251, + "Directional": true + }] + }, { + "ID": 18656, + "SourceStructureID": 96255, + "TargetStructureID": 5528, + "Label": "96255-5528 via Conventional from 96256 -> 96257", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96256, + "TargetID": 96257, + "Directional": true + }] + }, { + "ID": 18657, + "SourceStructureID": 96266, + "TargetStructureID": 5528, + "Label": "96266-5528 via Conventional from 96267 -> 8274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96267, + "TargetID": 8274, + "Directional": true + }] + }, { + "ID": 18658, + "SourceStructureID": 96266, + "TargetStructureID": 5531, + "Label": "96266-5531 via Conventional from 107150 -> 107149", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107150, + "TargetID": 107149, + "Directional": true + }] + }, { + "ID": 18659, + "SourceStructureID": 96268, + "TargetStructureID": 5528, + "Label": "96268-5528 via Conventional from 96269 -> 8275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96269, + "TargetID": 8275, + "Directional": true + }] + }, { + "ID": 18660, + "SourceStructureID": 96270, + "TargetStructureID": 5528, + "Label": "96270-5528 via Conventional from 96271 -> 8273", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96271, + "TargetID": 8273, + "Directional": true + }] + }, { + "ID": 18661, + "SourceStructureID": 96272, + "TargetStructureID": 5528, + "Label": "96272-5528 via Conventional from 96273 -> 8281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96273, + "TargetID": 8281, + "Directional": true + }] + }, { + "ID": 18662, + "SourceStructureID": 96285, + "TargetStructureID": 5528, + "Label": "96285-5528 via Conventional from 96286 -> 8277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96286, + "TargetID": 8277, + "Directional": true + }] + }, { + "ID": 18663, + "SourceStructureID": 96287, + "TargetStructureID": 5528, + "Label": "96287-5528 via Conventional from 96289 -> 8276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96289, + "TargetID": 8276, + "Directional": true + }] + }, { + "ID": 18664, + "SourceStructureID": 96293, + "TargetStructureID": 5528, + "Label": "96293-5528 via Conventional from 96294 -> 96295", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96294, + "TargetID": 96295, + "Directional": true + }] + }, { + "ID": 18665, + "SourceStructureID": 96293, + "TargetStructureID": 5531, + "Label": "96293-5531 via Conventional from 107093 -> 107090", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107093, + "TargetID": 107090, + "Directional": true + }] + }, { + "ID": 18666, + "SourceStructureID": 96296, + "TargetStructureID": 5528, + "Label": "96296-5528 via Conventional from 96297 -> 96298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96297, + "TargetID": 96298, + "Directional": true + }] + }, { + "ID": 18667, + "SourceStructureID": 96308, + "TargetStructureID": 5517, + "Label": "96308-5517 via Conventional from 96309 -> 96307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96309, + "TargetID": 96307, + "Directional": true + }] + }, { + "ID": 18668, + "SourceStructureID": 96310, + "TargetStructureID": 5517, + "Label": "96310-5517 via Conventional from 96313 -> 96215, 96327 -> 96110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96313, + "TargetID": 96215, + "Directional": true + }, { + "SourceID": 96327, + "TargetID": 96110, + "Directional": true + }] + }, { + "ID": 18669, + "SourceStructureID": 96311, + "TargetStructureID": 5517, + "Label": "96311-5517 via Conventional from 96312 -> 96216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96312, + "TargetID": 96216, + "Directional": true + }] + }, { + "ID": 18670, + "SourceStructureID": 96315, + "TargetStructureID": 5517, + "Label": "96315-5517 via Conventional from 96316 -> 96314", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96316, + "TargetID": 96314, + "Directional": true + }] + }, { + "ID": 18671, + "SourceStructureID": 96319, + "TargetStructureID": 5517, + "Label": "96319-5517 via Conventional from 96320 -> 96318", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96320, + "TargetID": 96318, + "Directional": true + }] + }, { + "ID": 18672, + "SourceStructureID": 96321, + "TargetStructureID": 5517, + "Label": "96321-5517 via Conventional from 96322 -> 96111", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96322, + "TargetID": 96111, + "Directional": true + }] + }, { + "ID": 18673, + "SourceStructureID": 96325, + "TargetStructureID": 5517, + "Label": "96325-5517 via Conventional from 96326 -> 96112", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96326, + "TargetID": 96112, + "Directional": true + }] + }, { + "ID": 18674, + "SourceStructureID": 96337, + "TargetStructureID": 5517, + "Label": "96337-5517 via Conventional from 96339 -> 96059", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96339, + "TargetID": 96059, + "Directional": true + }] + }, { + "ID": 18675, + "SourceStructureID": 96341, + "TargetStructureID": 5517, + "Label": "96341-5517 via Conventional from 96342 -> 96060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96342, + "TargetID": 96060, + "Directional": true + }] + }, { + "ID": 18676, + "SourceStructureID": 96357, + "TargetStructureID": 5279, + "Label": "96357-5279 via Conventional from 96358 -> 6906", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96358, + "TargetID": 6906, + "Directional": true + }] + }, { + "ID": 18677, + "SourceStructureID": 96373, + "TargetStructureID": 5279, + "Label": "96373-5279 via Conventional from 96402 -> 40191", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96402, + "TargetID": 40191, + "Directional": true + }] + }, { + "ID": 18678, + "SourceStructureID": 96379, + "TargetStructureID": 5279, + "Label": "96379-5279 via Conventional from 96382 -> 49233", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96382, + "TargetID": 49233, + "Directional": true + }] + }, { + "ID": 18679, + "SourceStructureID": 96383, + "TargetStructureID": 5279, + "Label": "96383-5279 via Conventional from 96384 -> 26006", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96384, + "TargetID": 26006, + "Directional": true + }] + }, { + "ID": 18680, + "SourceStructureID": 96407, + "TargetStructureID": 5279, + "Label": "96407-5279 via Conventional from 96410 -> 49235, 96411 -> 49235", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96410, + "TargetID": 49235, + "Directional": true + }, { + "SourceID": 96411, + "TargetID": 49235, + "Directional": true + }] + }, { + "ID": 18681, + "SourceStructureID": 96421, + "TargetStructureID": 5279, + "Label": "96421-5279 via Conventional from 96422 -> 49237", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96422, + "TargetID": 49237, + "Directional": true + }] + }, { + "ID": 18682, + "SourceStructureID": 96435, + "TargetStructureID": 5278, + "Label": "96435-5278 via Conventional from 114314 -> 114473", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114314, + "TargetID": 114473, + "Directional": true + }] + }, { + "ID": 18683, + "SourceStructureID": 96435, + "TargetStructureID": 5279, + "Label": "96435-5279 via Conventional from 96436 -> 49240", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96436, + "TargetID": 49240, + "Directional": true + }] + }, { + "ID": 18684, + "SourceStructureID": 96437, + "TargetStructureID": 5279, + "Label": "96437-5279 via Conventional from 96438 -> 49243", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96438, + "TargetID": 49243, + "Directional": true + }] + }, { + "ID": 18685, + "SourceStructureID": 96442, + "TargetStructureID": 5279, + "Label": "96442-5279 via Conventional from 96443 -> 96444", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96443, + "TargetID": 96444, + "Directional": true + }] + }, { + "ID": 18686, + "SourceStructureID": 96453, + "TargetStructureID": 5279, + "Label": "96453-5279 via Conventional from 96454 -> 49244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96454, + "TargetID": 49244, + "Directional": true + }] + }, { + "ID": 18687, + "SourceStructureID": 96473, + "TargetStructureID": 5279, + "Label": "96473-5279 via Conventional from 96474 -> 6334", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96474, + "TargetID": 6334, + "Directional": true + }] + }, { + "ID": 18688, + "SourceStructureID": 96485, + "TargetStructureID": 5279, + "Label": "96485-5279 via Conventional from 96486 -> 6337", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96486, + "TargetID": 6337, + "Directional": true + }] + }, { + "ID": 18689, + "SourceStructureID": 96516, + "TargetStructureID": 332, + "Label": "96516-332 via Conventional from 96518 -> 96515", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96518, + "TargetID": 96515, + "Directional": true + }] + }, { + "ID": 18690, + "SourceStructureID": 96519, + "TargetStructureID": 5279, + "Label": "96519-5279 via Conventional from 96998 -> 28311", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96998, + "TargetID": 28311, + "Directional": true + }] + }, { + "ID": 18691, + "SourceStructureID": 96522, + "TargetStructureID": 332, + "Label": "96522-332 via Conventional from 96523 -> 96477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96523, + "TargetID": 96477, + "Directional": true + }] + }, { + "ID": 18692, + "SourceStructureID": 96524, + "TargetStructureID": 324, + "Label": "96524-324 via Conventional from 96526 -> 96378", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96526, + "TargetID": 96378, + "Directional": true + }] + }, { + "ID": 18693, + "SourceStructureID": 96534, + "TargetStructureID": 332, + "Label": "96534-332 via Conventional from 96535 -> 96536, 96540 -> 82186", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96535, + "TargetID": 96536, + "Directional": true + }, { + "SourceID": 96540, + "TargetID": 82186, + "Directional": true + }] + }, { + "ID": 18694, + "SourceStructureID": 96560, + "TargetStructureID": 332, + "Label": "96560-332 via Conventional from 96561 -> 96558", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96561, + "TargetID": 96558, + "Directional": true + }] + }, { + "ID": 18695, + "SourceStructureID": 96562, + "TargetStructureID": 332, + "Label": "96562-332 via Conventional from 96563 -> 96559", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96563, + "TargetID": 96559, + "Directional": true + }] + }, { + "ID": 18696, + "SourceStructureID": 96565, + "TargetStructureID": 332, + "Label": "96565-332 via Conventional from 97366 -> 97367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97366, + "TargetID": 97367, + "Directional": true + }] + }, { + "ID": 18697, + "SourceStructureID": 96589, + "TargetStructureID": 332, + "Label": "96589-332 via Conventional from 96590 -> 96588", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96590, + "TargetID": 96588, + "Directional": true + }] + }, { + "ID": 18698, + "SourceStructureID": 96589, + "TargetStructureID": 461, + "Label": "96589-461 via Conventional from 96591 -> 96592", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96591, + "TargetID": 96592, + "Directional": true + }] + }, { + "ID": 18699, + "SourceStructureID": 96600, + "TargetStructureID": 483, + "Label": "96600-483 via Conventional from 96601 -> 96599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96601, + "TargetID": 96599, + "Directional": true + }] + }, { + "ID": 18700, + "SourceStructureID": 96600, + "TargetStructureID": 6997, + "Label": "96600-6997 via Conventional from 96602 -> 96603", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96602, + "TargetID": 96603, + "Directional": true + }] + }, { + "ID": 18701, + "SourceStructureID": 96610, + "TargetStructureID": 483, + "Label": "96610-483 via Conventional from 96612 -> 96606", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96612, + "TargetID": 96606, + "Directional": true + }] + }, { + "ID": 18702, + "SourceStructureID": 96617, + "TargetStructureID": 483, + "Label": "96617-483 via Conventional from 96618 -> 96608", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96618, + "TargetID": 96608, + "Directional": true + }] + }, { + "ID": 18703, + "SourceStructureID": 96619, + "TargetStructureID": 483, + "Label": "96619-483 via Conventional from 96620 -> 96607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96620, + "TargetID": 96607, + "Directional": true + }] + }, { + "ID": 18704, + "SourceStructureID": 96621, + "TargetStructureID": 483, + "Label": "96621-483 via Conventional from 96622 -> 96623", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96622, + "TargetID": 96623, + "Directional": true + }] + }, { + "ID": 18705, + "SourceStructureID": 96621, + "TargetStructureID": 525, + "Label": "96621-525 via Conventional from 96625 -> 6222", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96625, + "TargetID": 6222, + "Directional": true + }] + }, { + "ID": 18706, + "SourceStructureID": 96629, + "TargetStructureID": 6857, + "Label": "96629-6857 via Conventional from 96631 -> 6873", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96631, + "TargetID": 6873, + "Directional": true + }] + }, { + "ID": 18707, + "SourceStructureID": 96638, + "TargetStructureID": 483, + "Label": "96638-483 via Conventional from 96641 -> 96637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96641, + "TargetID": 96637, + "Directional": true + }] + }, { + "ID": 18708, + "SourceStructureID": 96642, + "TargetStructureID": 483, + "Label": "96642-483 via Conventional from 96643 -> 92352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96643, + "TargetID": 92352, + "Directional": true + }] + }, { + "ID": 18709, + "SourceStructureID": 96647, + "TargetStructureID": 483, + "Label": "96647-483 via Conventional from 96648 -> 96646", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96648, + "TargetID": 96646, + "Directional": true + }] + }, { + "ID": 18710, + "SourceStructureID": 96649, + "TargetStructureID": 483, + "Label": "96649-483 via Conventional from 96650 -> 92348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96650, + "TargetID": 92348, + "Directional": true + }] + }, { + "ID": 18711, + "SourceStructureID": 96657, + "TargetStructureID": 483, + "Label": "96657-483 via Conventional from 96658 -> 96659", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96658, + "TargetID": 96659, + "Directional": true + }] + }, { + "ID": 18712, + "SourceStructureID": 96663, + "TargetStructureID": 483, + "Label": "96663-483 via Conventional from 96664 -> 96662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96664, + "TargetID": 96662, + "Directional": true + }] + }, { + "ID": 18713, + "SourceStructureID": 96679, + "TargetStructureID": 5499, + "Label": "96679-5499 via Conventional from 96680 -> 96678", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96680, + "TargetID": 96678, + "Directional": true + }] + }, { + "ID": 18714, + "SourceStructureID": 96699, + "TargetStructureID": 5499, + "Label": "96699-5499 via Conventional from 96700 -> 96698", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96700, + "TargetID": 96698, + "Directional": true + }] + }, { + "ID": 18715, + "SourceStructureID": 96705, + "TargetStructureID": 96708, + "Label": "96705-96708 via Conventional from 96707 -> 96710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96707, + "TargetID": 96710, + "Directional": true + }] + }, { + "ID": 18716, + "SourceStructureID": 96736, + "TargetStructureID": 5499, + "Label": "96736-5499 via Conventional from 96737 -> 96726", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96737, + "TargetID": 96726, + "Directional": true + }] + }, { + "ID": 18717, + "SourceStructureID": 96768, + "TargetStructureID": 5561, + "Label": "96768-5561 via Conventional from 96770 -> 96771", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96770, + "TargetID": 96771, + "Directional": true + }] + }, { + "ID": 18718, + "SourceStructureID": 96779, + "TargetStructureID": 5561, + "Label": "96779-5561 via Conventional from 96780 -> 29892", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96780, + "TargetID": 29892, + "Directional": true + }] + }, { + "ID": 18719, + "SourceStructureID": 96786, + "TargetStructureID": 5561, + "Label": "96786-5561 via Conventional from 96787 -> 46156", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96787, + "TargetID": 46156, + "Directional": true + }] + }, { + "ID": 18720, + "SourceStructureID": 96788, + "TargetStructureID": 10872, + "Label": "96788-10872 via Conventional from 96819 -> 15029, 96821 -> 15026, 96824 -> 96825", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96819, + "TargetID": 15029, + "Directional": true + }, { + "SourceID": 96821, + "TargetID": 15026, + "Directional": true + }, { + "SourceID": 96824, + "TargetID": 96825, + "Directional": true + }] + }, { + "ID": 18721, + "SourceStructureID": 96788, + "TargetStructureID": 11248, + "Label": "96788-11248 via Conventional from 96859 -> 96860, 96861 -> 96862, 96863 -> 96864, 96865 -> 96867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96859, + "TargetID": 96860, + "Directional": true + }, { + "SourceID": 96861, + "TargetID": 96862, + "Directional": true + }, { + "SourceID": 96863, + "TargetID": 96864, + "Directional": true + }, { + "SourceID": 96865, + "TargetID": 96867, + "Directional": true + }] + }, { + "ID": 18722, + "SourceStructureID": 96799, + "TargetStructureID": 5561, + "Label": "96799-5561 via Conventional from 96800 -> 46262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96800, + "TargetID": 46262, + "Directional": true + }] + }, { + "ID": 18723, + "SourceStructureID": 96801, + "TargetStructureID": 5561, + "Label": "96801-5561 via Conventional from 96802 -> 46265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96802, + "TargetID": 46265, + "Directional": true + }] + }, { + "ID": 18724, + "SourceStructureID": 96805, + "TargetStructureID": 5561, + "Label": "96805-5561 via Conventional from 96806 -> 46283", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96806, + "TargetID": 46283, + "Directional": true + }] + }, { + "ID": 18725, + "SourceStructureID": 96807, + "TargetStructureID": 5561, + "Label": "96807-5561 via Conventional from 96808 -> 29895", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96808, + "TargetID": 29895, + "Directional": true + }] + }, { + "ID": 18726, + "SourceStructureID": 96810, + "TargetStructureID": 5561, + "Label": "96810-5561 via Conventional from 96811 -> 46291", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96811, + "TargetID": 46291, + "Directional": true + }] + }, { + "ID": 18727, + "SourceStructureID": 96822, + "TargetStructureID": 5561, + "Label": "96822-5561 via Conventional from 96823 -> 46286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96823, + "TargetID": 46286, + "Directional": true + }] + }, { + "ID": 18728, + "SourceStructureID": 96829, + "TargetStructureID": 5561, + "Label": "96829-5561 via Conventional from 96835 -> 46290", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96835, + "TargetID": 46290, + "Directional": true + }] + }, { + "ID": 18729, + "SourceStructureID": 96848, + "TargetStructureID": 5528, + "Label": "96848-5528 via Conventional from 96849 -> 8286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96849, + "TargetID": 8286, + "Directional": true + }] + }, { + "ID": 18730, + "SourceStructureID": 96852, + "TargetStructureID": 5528, + "Label": "96852-5528 via Conventional from 96866 -> 8287", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96866, + "TargetID": 8287, + "Directional": true + }] + }, { + "ID": 18731, + "SourceStructureID": 96855, + "TargetStructureID": 5561, + "Label": "96855-5561 via Conventional from 96856 -> 46284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96856, + "TargetID": 46284, + "Directional": true + }] + }, { + "ID": 18732, + "SourceStructureID": 96869, + "TargetStructureID": 5528, + "Label": "96869-5528 via Conventional from 96871 -> 8288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96871, + "TargetID": 8288, + "Directional": true + }] + }, { + "ID": 18733, + "SourceStructureID": 96872, + "TargetStructureID": 5528, + "Label": "96872-5528 via Conventional from 96874 -> 8289", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96874, + "TargetID": 8289, + "Directional": true + }] + }, { + "ID": 18734, + "SourceStructureID": 96872, + "TargetStructureID": 7576, + "Label": "96872-7576 via Conventional from 107174 -> 55052", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107174, + "TargetID": 55052, + "Directional": true + }] + }, { + "ID": 18735, + "SourceStructureID": 96875, + "TargetStructureID": 5528, + "Label": "96875-5528 via Conventional from 96876 -> 8294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96876, + "TargetID": 8294, + "Directional": true + }] + }, { + "ID": 18736, + "SourceStructureID": 96898, + "TargetStructureID": 5528, + "Label": "96898-5528 via Conventional from 96899 -> 96900", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96899, + "TargetID": 96900, + "Directional": true + }] + }, { + "ID": 18737, + "SourceStructureID": 96919, + "TargetStructureID": 5565, + "Label": "96919-5565 via Conventional from 96920 -> 50279", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96920, + "TargetID": 50279, + "Directional": true + }] + }, { + "ID": 18738, + "SourceStructureID": 96921, + "TargetStructureID": 5561, + "Label": "96921-5561 via Conventional from 96922 -> 48939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96922, + "TargetID": 48939, + "Directional": true + }] + }, { + "ID": 18739, + "SourceStructureID": 96924, + "TargetStructureID": 5561, + "Label": "96924-5561 via Conventional from 96925 -> 96926", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96925, + "TargetID": 96926, + "Directional": true + }] + }, { + "ID": 18740, + "SourceStructureID": 96930, + "TargetStructureID": 5561, + "Label": "96930-5561 via Conventional from 96931 -> 29897", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96931, + "TargetID": 29897, + "Directional": true + }] + }, { + "ID": 18741, + "SourceStructureID": 96932, + "TargetStructureID": 5561, + "Label": "96932-5561 via Conventional from 96933 -> 48934", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96933, + "TargetID": 48934, + "Directional": true + }] + }, { + "ID": 18742, + "SourceStructureID": 96941, + "TargetStructureID": 5561, + "Label": "96941-5561 via Conventional from 96942 -> 46264", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96942, + "TargetID": 46264, + "Directional": true + }] + }, { + "ID": 18743, + "SourceStructureID": 96950, + "TargetStructureID": 5561, + "Label": "96950-5561 via Conventional from 96951 -> 46269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96951, + "TargetID": 46269, + "Directional": true + }] + }, { + "ID": 18744, + "SourceStructureID": 96955, + "TargetStructureID": 5561, + "Label": "96955-5561 via Conventional from 148165 -> 148164", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148165, + "TargetID": 148164, + "Directional": true + }] + }, { + "ID": 18745, + "SourceStructureID": 96955, + "TargetStructureID": 20136, + "Label": "96955-20136 via Conventional from 96957 -> 46036", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96957, + "TargetID": 46036, + "Directional": true + }] + }, { + "ID": 18746, + "SourceStructureID": 96958, + "TargetStructureID": 5561, + "Label": "96958-5561 via Conventional from 96959 -> 46268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96959, + "TargetID": 46268, + "Directional": true + }] + }, { + "ID": 18747, + "SourceStructureID": 96960, + "TargetStructureID": 5561, + "Label": "96960-5561 via Conventional from 96961 -> 46267", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96961, + "TargetID": 46267, + "Directional": true + }] + }, { + "ID": 18748, + "SourceStructureID": 96964, + "TargetStructureID": 5561, + "Label": "96964-5561 via Conventional from 96965 -> 46270", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96965, + "TargetID": 46270, + "Directional": true + }] + }, { + "ID": 18749, + "SourceStructureID": 96976, + "TargetStructureID": 5561, + "Label": "96976-5561 via Conventional from 96977 -> 46272", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96977, + "TargetID": 46272, + "Directional": true + }] + }, { + "ID": 18750, + "SourceStructureID": 96980, + "TargetStructureID": 5561, + "Label": "96980-5561 via Conventional from 96982 -> 46274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96982, + "TargetID": 46274, + "Directional": true + }] + }, { + "ID": 18751, + "SourceStructureID": 96984, + "TargetStructureID": 5561, + "Label": "96984-5561 via Conventional from 96985 -> 46275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96985, + "TargetID": 46275, + "Directional": true + }] + }, { + "ID": 18752, + "SourceStructureID": 96986, + "TargetStructureID": 5561, + "Label": "96986-5561 via Conventional from 96987 -> 46276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96987, + "TargetID": 46276, + "Directional": true + }] + }, { + "ID": 18753, + "SourceStructureID": 96995, + "TargetStructureID": 5561, + "Label": "96995-5561 via Conventional from 96996 -> 49479", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96996, + "TargetID": 49479, + "Directional": true + }] + }, { + "ID": 18754, + "SourceStructureID": 96997, + "TargetStructureID": 5561, + "Label": "96997-5561 via Conventional from 96999 -> 49480", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96999, + "TargetID": 49480, + "Directional": true + }] + }, { + "ID": 18755, + "SourceStructureID": 97003, + "TargetStructureID": 5279, + "Label": "97003-5279 via Conventional from 97004 -> 25797", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97004, + "TargetID": 25797, + "Directional": true + }] + }, { + "ID": 18756, + "SourceStructureID": 97005, + "TargetStructureID": 5561, + "Label": "97005-5561 via Conventional from 97008 -> 46278, 97009 -> 46282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97008, + "TargetID": 46278, + "Directional": true + }, { + "SourceID": 97009, + "TargetID": 46282, + "Directional": true + }] + }, { + "ID": 18757, + "SourceStructureID": 97011, + "TargetStructureID": 5279, + "Label": "97011-5279 via Conventional from 97017 -> 25803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97017, + "TargetID": 25803, + "Directional": true + }] + }, { + "ID": 18758, + "SourceStructureID": 97015, + "TargetStructureID": 5561, + "Label": "97015-5561 via Conventional from 97016 -> 46280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97016, + "TargetID": 46280, + "Directional": true + }] + }, { + "ID": 18759, + "SourceStructureID": 97020, + "TargetStructureID": 5561, + "Label": "97020-5561 via Conventional from 97021 -> 46281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97021, + "TargetID": 46281, + "Directional": true + }] + }, { + "ID": 18760, + "SourceStructureID": 97024, + "TargetStructureID": 471, + "Label": "97024-471 via Conventional from 97095 -> 97097, 97101 -> 97102, 97106 -> 16285, 97112 -> 16286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97095, + "TargetID": 97097, + "Directional": true + }, { + "SourceID": 97101, + "TargetID": 97102, + "Directional": true + }, { + "SourceID": 97106, + "TargetID": 16285, + "Directional": true + }, { + "SourceID": 97112, + "TargetID": 16286, + "Directional": true + }] + }, { + "ID": 18761, + "SourceStructureID": 97024, + "TargetStructureID": 476, + "Label": "97024-476 via Conventional from 97077 -> 97075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97077, + "TargetID": 97075, + "Directional": true + }] + }, { + "ID": 18762, + "SourceStructureID": 97032, + "TargetStructureID": 5561, + "Label": "97032-5561 via Conventional from 97033 -> 48868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97033, + "TargetID": 48868, + "Directional": true + }] + }, { + "ID": 18763, + "SourceStructureID": 97037, + "TargetStructureID": 5561, + "Label": "97037-5561 via Conventional from 97038 -> 49637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97038, + "TargetID": 49637, + "Directional": true + }] + }, { + "ID": 18764, + "SourceStructureID": 97037, + "TargetStructureID": 5562, + "Label": "97037-5562 via Conventional from 97040 -> 63746", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97040, + "TargetID": 63746, + "Directional": true + }] + }, { + "ID": 18765, + "SourceStructureID": 97041, + "TargetStructureID": 5279, + "Label": "97041-5279 via Conventional from 97044 -> 25800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97044, + "TargetID": 25800, + "Directional": true + }] + }, { + "ID": 18766, + "SourceStructureID": 97046, + "TargetStructureID": 5561, + "Label": "97046-5561 via Conventional from 97047 -> 46158", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97047, + "TargetID": 46158, + "Directional": true + }] + }, { + "ID": 18767, + "SourceStructureID": 97048, + "TargetStructureID": 5279, + "Label": "97048-5279 via Conventional from 97049 -> 25799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97049, + "TargetID": 25799, + "Directional": true + }] + }, { + "ID": 18768, + "SourceStructureID": 97050, + "TargetStructureID": 5279, + "Label": "97050-5279 via Conventional from 97052 -> 97053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97052, + "TargetID": 97053, + "Directional": true + }] + }, { + "ID": 18769, + "SourceStructureID": 97061, + "TargetStructureID": 5561, + "Label": "97061-5561 via Conventional from 97062 -> 46165", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97062, + "TargetID": 46165, + "Directional": true + }] + }, { + "ID": 18770, + "SourceStructureID": 97068, + "TargetStructureID": 5561, + "Label": "97068-5561 via Conventional from 97080 -> 46197", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97080, + "TargetID": 46197, + "Directional": true + }] + }, { + "ID": 18771, + "SourceStructureID": 97069, + "TargetStructureID": 5279, + "Label": "97069-5279 via Conventional from 97074 -> 25804, 97076 -> 97078", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97074, + "TargetID": 25804, + "Directional": true + }, { + "SourceID": 97076, + "TargetID": 97078, + "Directional": true + }] + }, { + "ID": 18772, + "SourceStructureID": 97079, + "TargetStructureID": 5279, + "Label": "97079-5279 via Conventional from 97081 -> 6339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97081, + "TargetID": 6339, + "Directional": true + }] + }, { + "ID": 18773, + "SourceStructureID": 97086, + "TargetStructureID": 5279, + "Label": "97086-5279 via Conventional from 97088 -> 6338", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97088, + "TargetID": 6338, + "Directional": true + }] + }, { + "ID": 18774, + "SourceStructureID": 97087, + "TargetStructureID": 5561, + "Label": "97087-5561 via Conventional from 97089 -> 97084", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97089, + "TargetID": 97084, + "Directional": true + }] + }, { + "ID": 18775, + "SourceStructureID": 97099, + "TargetStructureID": 5279, + "Label": "97099-5279 via Conventional from 97104 -> 25839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97104, + "TargetID": 25839, + "Directional": true + }] + }, { + "ID": 18776, + "SourceStructureID": 97105, + "TargetStructureID": 5279, + "Label": "97105-5279 via Conventional from 97109 -> 97108", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97109, + "TargetID": 97108, + "Directional": true + }] + }, { + "ID": 18777, + "SourceStructureID": 97126, + "TargetStructureID": 5279, + "Label": "97126-5279 via Conventional from 97133 -> 25806", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97133, + "TargetID": 25806, + "Directional": true + }] + }, { + "ID": 18778, + "SourceStructureID": 97131, + "TargetStructureID": 5561, + "Label": "97131-5561 via Conventional from 97134 -> 97135", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97134, + "TargetID": 97135, + "Directional": true + }] + }, { + "ID": 18779, + "SourceStructureID": 97139, + "TargetStructureID": 5279, + "Label": "97139-5279 via Conventional from 97140 -> 25808", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97140, + "TargetID": 25808, + "Directional": true + }] + }, { + "ID": 18780, + "SourceStructureID": 97143, + "TargetStructureID": 5279, + "Label": "97143-5279 via Conventional from 97149 -> 25810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97149, + "TargetID": 25810, + "Directional": true + }] + }, { + "ID": 18781, + "SourceStructureID": 97146, + "TargetStructureID": 5561, + "Label": "97146-5561 via Conventional from 97147 -> 46190", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97147, + "TargetID": 46190, + "Directional": true + }] + }, { + "ID": 18782, + "SourceStructureID": 97148, + "TargetStructureID": 5561, + "Label": "97148-5561 via Conventional from 97150 -> 97151", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97150, + "TargetID": 97151, + "Directional": true + }] + }, { + "ID": 18783, + "SourceStructureID": 97155, + "TargetStructureID": 5561, + "Label": "97155-5561 via Conventional from 97157 -> 46191", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97157, + "TargetID": 46191, + "Directional": true + }] + }, { + "ID": 18784, + "SourceStructureID": 97161, + "TargetStructureID": 5561, + "Label": "97161-5561 via Conventional from 97164 -> 46175", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97164, + "TargetID": 46175, + "Directional": true + }] + }, { + "ID": 18785, + "SourceStructureID": 97175, + "TargetStructureID": 5279, + "Label": "97175-5279 via Conventional from 97183 -> 49252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97183, + "TargetID": 49252, + "Directional": true + }] + }, { + "ID": 18786, + "SourceStructureID": 97188, + "TargetStructureID": 5561, + "Label": "97188-5561 via Conventional from 97189 -> 46171", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97189, + "TargetID": 46171, + "Directional": true + }] + }, { + "ID": 18787, + "SourceStructureID": 97194, + "TargetStructureID": 5561, + "Label": "97194-5561 via Conventional from 97195 -> 46179", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97195, + "TargetID": 46179, + "Directional": true + }] + }, { + "ID": 18788, + "SourceStructureID": 97198, + "TargetStructureID": 5561, + "Label": "97198-5561 via Conventional from 97199 -> 55345", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97199, + "TargetID": 55345, + "Directional": true + }] + }, { + "ID": 18789, + "SourceStructureID": 97209, + "TargetStructureID": 5561, + "Label": "97209-5561 via Conventional from 97210 -> 97208", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97210, + "TargetID": 97208, + "Directional": true + }] + }, { + "ID": 18790, + "SourceStructureID": 97212, + "TargetStructureID": 5561, + "Label": "97212-5561 via Conventional from 97213 -> 97211", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97213, + "TargetID": 97211, + "Directional": true + }] + }, { + "ID": 18791, + "SourceStructureID": 97221, + "TargetStructureID": 5561, + "Label": "97221-5561 via Conventional from 97222 -> 46182", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97222, + "TargetID": 46182, + "Directional": true + }] + }, { + "ID": 18792, + "SourceStructureID": 97227, + "TargetStructureID": 5561, + "Label": "97227-5561 via Conventional from 97230 -> 46183", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97230, + "TargetID": 46183, + "Directional": true + }] + }, { + "ID": 18793, + "SourceStructureID": 97228, + "TargetStructureID": 5279, + "Label": "97228-5279 via Conventional from 97264 -> 6344", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97264, + "TargetID": 6344, + "Directional": true + }] + }, { + "ID": 18794, + "SourceStructureID": 97232, + "TargetStructureID": 5561, + "Label": "97232-5561 via Conventional from 97259 -> 46184", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97259, + "TargetID": 46184, + "Directional": true + }] + }, { + "ID": 18795, + "SourceStructureID": 97233, + "TargetStructureID": 5279, + "Label": "97233-5279 via Conventional from 97239 -> 6349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97239, + "TargetID": 6349, + "Directional": true + }] + }, { + "ID": 18796, + "SourceStructureID": 97234, + "TargetStructureID": 5528, + "Label": "97234-5528 via Conventional from 97235 -> 97238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97235, + "TargetID": 97238, + "Directional": true + }] + }, { + "ID": 18797, + "SourceStructureID": 97240, + "TargetStructureID": 5279, + "Label": "97240-5279 via Conventional from 97250 -> 6350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97250, + "TargetID": 6350, + "Directional": true + }] + }, { + "ID": 18798, + "SourceStructureID": 97253, + "TargetStructureID": 5279, + "Label": "97253-5279 via Conventional from 97256 -> 6348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97256, + "TargetID": 6348, + "Directional": true + }] + }, { + "ID": 18799, + "SourceStructureID": 97265, + "TargetStructureID": 5528, + "Label": "97265-5528 via Conventional from 97267 -> 97268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97267, + "TargetID": 97268, + "Directional": true + }] + }, { + "ID": 18800, + "SourceStructureID": 97275, + "TargetStructureID": 5561, + "Label": "97275-5561 via Conventional from 97276 -> 46161", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97276, + "TargetID": 46161, + "Directional": true + }] + }, { + "ID": 18801, + "SourceStructureID": 97278, + "TargetStructureID": 5561, + "Label": "97278-5561 via Conventional from 97279 -> 46160", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97279, + "TargetID": 46160, + "Directional": true + }] + }, { + "ID": 18802, + "SourceStructureID": 97293, + "TargetStructureID": 5528, + "Label": "97293-5528 via Conventional from 97306 -> 97307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97306, + "TargetID": 97307, + "Directional": true + }] + }, { + "ID": 18803, + "SourceStructureID": 97295, + "TargetStructureID": 5561, + "Label": "97295-5561 via Conventional from 97304 -> 49640", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97304, + "TargetID": 49640, + "Directional": true + }] + }, { + "ID": 18804, + "SourceStructureID": 97295, + "TargetStructureID": 97381, + "Label": "97295-97381 via Conventional from 97380 -> 97382", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97380, + "TargetID": 97382, + "Directional": true + }] + }, { + "ID": 18805, + "SourceStructureID": 97299, + "TargetStructureID": 5279, + "Label": "97299-5279 via Conventional from 97300 -> 6352, 97321 -> 6352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97300, + "TargetID": 6352, + "Directional": true + }, { + "SourceID": 97321, + "TargetID": 6352, + "Directional": true + }] + }, { + "ID": 18806, + "SourceStructureID": 97318, + "TargetStructureID": 5279, + "Label": "97318-5279 via Conventional from 97326 -> 25814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97326, + "TargetID": 25814, + "Directional": true + }] + }, { + "ID": 18807, + "SourceStructureID": 97322, + "TargetStructureID": 5279, + "Label": "97322-5279 via Conventional from 97323 -> 25815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97323, + "TargetID": 25815, + "Directional": true + }] + }, { + "ID": 18808, + "SourceStructureID": 97324, + "TargetStructureID": 5561, + "Label": "97324-5561 via Conventional from 97325 -> 46201", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97325, + "TargetID": 46201, + "Directional": true + }] + }, { + "ID": 18809, + "SourceStructureID": 97343, + "TargetStructureID": 5561, + "Label": "97343-5561 via Conventional from 97344 -> 46125", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97344, + "TargetID": 46125, + "Directional": true + }] + }, { + "ID": 18810, + "SourceStructureID": 97346, + "TargetStructureID": 5279, + "Label": "97346-5279 via Conventional from 97349 -> 49264", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97349, + "TargetID": 49264, + "Directional": true + }] + }, { + "ID": 18811, + "SourceStructureID": 97352, + "TargetStructureID": 59362, + "Label": "97352-59362 via Conventional from 122453 -> 122454", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122453, + "TargetID": 122454, + "Directional": true + }] + }, { + "ID": 18812, + "SourceStructureID": 97361, + "TargetStructureID": 5279, + "Label": "97361-5279 via Conventional from 97362 -> 49256", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97362, + "TargetID": 49256, + "Directional": true + }] + }, { + "ID": 18813, + "SourceStructureID": 97370, + "TargetStructureID": 5279, + "Label": "97370-5279 via Conventional from 97371 -> 49259", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97371, + "TargetID": 49259, + "Directional": true + }] + }, { + "ID": 18814, + "SourceStructureID": 97372, + "TargetStructureID": 5279, + "Label": "97372-5279 via Conventional from 97373 -> 49260", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97373, + "TargetID": 49260, + "Directional": true + }] + }, { + "ID": 18815, + "SourceStructureID": 97386, + "TargetStructureID": 5279, + "Label": "97386-5279 via Conventional from 97387 -> 97572", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97387, + "TargetID": 97572, + "Directional": true + }] + }, { + "ID": 18816, + "SourceStructureID": 97401, + "TargetStructureID": 5561, + "Label": "97401-5561 via Conventional from 97403 -> 48871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97403, + "TargetID": 48871, + "Directional": true + }] + }, { + "ID": 18817, + "SourceStructureID": 97401, + "TargetStructureID": 5565, + "Label": "97401-5565 via Conventional from 97404 -> 53983", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97404, + "TargetID": 53983, + "Directional": true + }] + }, { + "ID": 18818, + "SourceStructureID": 97407, + "TargetStructureID": 5561, + "Label": "97407-5561 via Conventional from 97408 -> 46203", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97408, + "TargetID": 46203, + "Directional": true + }] + }, { + "ID": 18819, + "SourceStructureID": 97417, + "TargetStructureID": 5561, + "Label": "97417-5561 via Conventional from 97418 -> 46202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97418, + "TargetID": 46202, + "Directional": true + }] + }, { + "ID": 18820, + "SourceStructureID": 97420, + "TargetStructureID": 5561, + "Label": "97420-5561 via Conventional from 97422 -> 97423", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97422, + "TargetID": 97423, + "Directional": true + }] + }, { + "ID": 18821, + "SourceStructureID": 97420, + "TargetStructureID": 5565, + "Label": "97420-5565 via Conventional from 97421 -> 53979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97421, + "TargetID": 53979, + "Directional": true + }] + }, { + "ID": 18822, + "SourceStructureID": 97439, + "TargetStructureID": 5561, + "Label": "97439-5561 via Conventional from 97440 -> 46206", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97440, + "TargetID": 46206, + "Directional": true + }] + }, { + "ID": 18823, + "SourceStructureID": 97448, + "TargetStructureID": 5561, + "Label": "97448-5561 via Conventional from 97449 -> 46210", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97449, + "TargetID": 46210, + "Directional": true + }] + }, { + "ID": 18824, + "SourceStructureID": 97461, + "TargetStructureID": 5561, + "Label": "97461-5561 via Conventional from 97462 -> 46209", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97462, + "TargetID": 46209, + "Directional": true + }] + }, { + "ID": 18825, + "SourceStructureID": 97464, + "TargetStructureID": 5561, + "Label": "97464-5561 via Conventional from 97465 -> 46215", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97465, + "TargetID": 46215, + "Directional": true + }] + }, { + "ID": 18826, + "SourceStructureID": 97466, + "TargetStructureID": 5561, + "Label": "97466-5561 via Conventional from 97468 -> 46216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97468, + "TargetID": 46216, + "Directional": true + }] + }, { + "ID": 18827, + "SourceStructureID": 97475, + "TargetStructureID": 5561, + "Label": "97475-5561 via Conventional from 97476 -> 148255, 97478 -> 97474", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97476, + "TargetID": 148255, + "Directional": true + }, { + "SourceID": 97478, + "TargetID": 97474, + "Directional": true + }] + }, { + "ID": 18828, + "SourceStructureID": 97479, + "TargetStructureID": 5561, + "Label": "97479-5561 via Conventional from 97480 -> 97473", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97480, + "TargetID": 97473, + "Directional": true + }] + }, { + "ID": 18829, + "SourceStructureID": 97479, + "TargetStructureID": 97475, + "Label": "97479-97475 via Conventional from 97481 -> 97477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97481, + "TargetID": 97477, + "Directional": true + }] + }, { + "ID": 18830, + "SourceStructureID": 97482, + "TargetStructureID": 5561, + "Label": "97482-5561 via Conventional from 97483 -> 97471", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97483, + "TargetID": 97471, + "Directional": true + }] + }, { + "ID": 18831, + "SourceStructureID": 97484, + "TargetStructureID": 5279, + "Label": "97484-5279 via Conventional from 97491 -> 97490", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97491, + "TargetID": 97490, + "Directional": true + }] + }, { + "ID": 18832, + "SourceStructureID": 97485, + "TargetStructureID": 5561, + "Label": "97485-5561 via Conventional from 99342 -> 148253", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99342, + "TargetID": 148253, + "Directional": true + }] + }, { + "ID": 18833, + "SourceStructureID": 97492, + "TargetStructureID": 5561, + "Label": "97492-5561 via Conventional from 97493 -> 97470", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97493, + "TargetID": 97470, + "Directional": true + }] + }, { + "ID": 18834, + "SourceStructureID": 97494, + "TargetStructureID": 5279, + "Label": "97494-5279 via Conventional from 97511 -> 27446", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97511, + "TargetID": 27446, + "Directional": true + }] + }, { + "ID": 18835, + "SourceStructureID": 97498, + "TargetStructureID": 5561, + "Label": "97498-5561 via Conventional from 97499 -> 46240", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97499, + "TargetID": 46240, + "Directional": true + }] + }, { + "ID": 18836, + "SourceStructureID": 97500, + "TargetStructureID": 97503, + "Label": "97500-97503 via Conventional from 97501 -> 97504", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97501, + "TargetID": 97504, + "Directional": true + }] + }, { + "ID": 18837, + "SourceStructureID": 97507, + "TargetStructureID": 5561, + "Label": "97507-5561 via Conventional from 97508 -> 46227", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97508, + "TargetID": 46227, + "Directional": true + }] + }, { + "ID": 18838, + "SourceStructureID": 97509, + "TargetStructureID": 5561, + "Label": "97509-5561 via Conventional from 97510 -> 46229", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97510, + "TargetID": 46229, + "Directional": true + }] + }, { + "ID": 18839, + "SourceStructureID": 97522, + "TargetStructureID": 5279, + "Label": "97522-5279 via Conventional from 97526 -> 97525", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97526, + "TargetID": 97525, + "Directional": true + }] + }, { + "ID": 18840, + "SourceStructureID": 97528, + "TargetStructureID": 5279, + "Label": "97528-5279 via Conventional from 97529 -> 97530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97529, + "TargetID": 97530, + "Directional": true + }] + }, { + "ID": 18841, + "SourceStructureID": 97532, + "TargetStructureID": 5279, + "Label": "97532-5279 via Conventional from 97534 -> 97535", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97534, + "TargetID": 97535, + "Directional": true + }] + }, { + "ID": 18842, + "SourceStructureID": 97536, + "TargetStructureID": 5561, + "Label": "97536-5561 via Conventional from 97539 -> 46245", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97539, + "TargetID": 46245, + "Directional": true + }] + }, { + "ID": 18843, + "SourceStructureID": 97543, + "TargetStructureID": 5561, + "Label": "97543-5561 via Conventional from 97544 -> 46247", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97544, + "TargetID": 46247, + "Directional": true + }] + }, { + "ID": 18844, + "SourceStructureID": 97546, + "TargetStructureID": 5561, + "Label": "97546-5561 via Conventional from 97547 -> 46248", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97547, + "TargetID": 46248, + "Directional": true + }] + }, { + "ID": 18845, + "SourceStructureID": 97554, + "TargetStructureID": 5561, + "Label": "97554-5561 via Conventional from 97555 -> 46242", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97555, + "TargetID": 46242, + "Directional": true + }] + }, { + "ID": 18846, + "SourceStructureID": 97558, + "TargetStructureID": 5561, + "Label": "97558-5561 via Conventional from 97565 -> 46250, 97567 -> 46254", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97565, + "TargetID": 46250, + "Directional": true + }, { + "SourceID": 97567, + "TargetID": 46254, + "Directional": true + }] + }, { + "ID": 18847, + "SourceStructureID": 97568, + "TargetStructureID": 5499, + "Label": "97568-5499 via Conventional from 106547 -> 49666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106547, + "TargetID": 49666, + "Directional": true + }] + }, { + "ID": 18848, + "SourceStructureID": 97568, + "TargetStructureID": 5561, + "Label": "97568-5561 via Conventional from 97569 -> 97570", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97569, + "TargetID": 97570, + "Directional": true + }] + }, { + "ID": 18849, + "SourceStructureID": 97568, + "TargetStructureID": 7024, + "Label": "97568-7024 via Conventional from 106606 -> 106607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106606, + "TargetID": 106607, + "Directional": true + }] + }, { + "ID": 18850, + "SourceStructureID": 97573, + "TargetStructureID": 97568, + "Label": "97573-97568 via Conventional from 97574 -> 97571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97574, + "TargetID": 97571, + "Directional": true + }] + }, { + "ID": 18851, + "SourceStructureID": 97575, + "TargetStructureID": 5561, + "Label": "97575-5561 via Conventional from 97576 -> 46255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97576, + "TargetID": 46255, + "Directional": true + }] + }, { + "ID": 18852, + "SourceStructureID": 97578, + "TargetStructureID": 5561, + "Label": "97578-5561 via Conventional from 97581 -> 46256", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97581, + "TargetID": 46256, + "Directional": true + }] + }, { + "ID": 18853, + "SourceStructureID": 97582, + "TargetStructureID": 5561, + "Label": "97582-5561 via Conventional from 97583 -> 46252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97583, + "TargetID": 46252, + "Directional": true + }] + }, { + "ID": 18854, + "SourceStructureID": 97597, + "TargetStructureID": 5279, + "Label": "97597-5279 via Conventional from 97598 -> 97599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97598, + "TargetID": 97599, + "Directional": true + }] + }, { + "ID": 18855, + "SourceStructureID": 97605, + "TargetStructureID": 5279, + "Label": "97605-5279 via Conventional from 97606 -> 97607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97606, + "TargetID": 97607, + "Directional": true + }] + }, { + "ID": 18856, + "SourceStructureID": 97615, + "TargetStructureID": 5279, + "Label": "97615-5279 via Conventional from 97616 -> 97617", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97616, + "TargetID": 97617, + "Directional": true + }] + }, { + "ID": 18857, + "SourceStructureID": 97620, + "TargetStructureID": 5279, + "Label": "97620-5279 via Conventional from 97621 -> 97622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97621, + "TargetID": 97622, + "Directional": true + }] + }, { + "ID": 18858, + "SourceStructureID": 97627, + "TargetStructureID": 5279, + "Label": "97627-5279 via BC Conventional Synapse from 97628 -> 97629", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 97628, + "TargetID": 97629, + "Directional": true + }] + }, { + "ID": 18859, + "SourceStructureID": 97638, + "TargetStructureID": 5279, + "Label": "97638-5279 via Conventional from 97643 -> 49202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97643, + "TargetID": 49202, + "Directional": true + }] + }, { + "ID": 18860, + "SourceStructureID": 97646, + "TargetStructureID": 5279, + "Label": "97646-5279 via Conventional from 97647 -> 49219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97647, + "TargetID": 49219, + "Directional": true + }] + }, { + "ID": 18861, + "SourceStructureID": 97671, + "TargetStructureID": 5561, + "Label": "97671-5561 via Conventional from 97672 -> 46044", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97672, + "TargetID": 46044, + "Directional": true + }] + }, { + "ID": 18862, + "SourceStructureID": 97676, + "TargetStructureID": 909, + "Label": "97676-909 via Conventional from 130893 -> 45895", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130893, + "TargetID": 45895, + "Directional": true + }] + }, { + "ID": 18863, + "SourceStructureID": 97676, + "TargetStructureID": 5561, + "Label": "97676-5561 via Conventional from 97677 -> 46045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97677, + "TargetID": 46045, + "Directional": true + }] + }, { + "ID": 18864, + "SourceStructureID": 97680, + "TargetStructureID": 5561, + "Label": "97680-5561 via Conventional from 97681 -> 46305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97681, + "TargetID": 46305, + "Directional": true + }] + }, { + "ID": 18865, + "SourceStructureID": 97684, + "TargetStructureID": 5561, + "Label": "97684-5561 via Conventional from 97685 -> 48982", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97685, + "TargetID": 48982, + "Directional": true + }] + }, { + "ID": 18866, + "SourceStructureID": 97691, + "TargetStructureID": 5561, + "Label": "97691-5561 via Conventional from 97692 -> 46300", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97692, + "TargetID": 46300, + "Directional": true + }] + }, { + "ID": 18867, + "SourceStructureID": 97691, + "TargetStructureID": 20136, + "Label": "97691-20136 via Conventional from 97693 -> 97694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97693, + "TargetID": 97694, + "Directional": true + }] + }, { + "ID": 18868, + "SourceStructureID": 97722, + "TargetStructureID": 5561, + "Label": "97722-5561 via Conventional from 97723 -> 97718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97723, + "TargetID": 97718, + "Directional": true + }] + }, { + "ID": 18869, + "SourceStructureID": 97727, + "TargetStructureID": 5561, + "Label": "97727-5561 via Conventional from 97728 -> 97721", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97728, + "TargetID": 97721, + "Directional": true + }] + }, { + "ID": 18870, + "SourceStructureID": 97730, + "TargetStructureID": 5561, + "Label": "97730-5561 via Conventional from 97733 -> 97719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97733, + "TargetID": 97719, + "Directional": true + }] + }, { + "ID": 18871, + "SourceStructureID": 97730, + "TargetStructureID": 61450, + "Label": "97730-61450 via Conventional from 97739 -> 61491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97739, + "TargetID": 61491, + "Directional": true + }] + }, { + "ID": 18872, + "SourceStructureID": 97743, + "TargetStructureID": 5561, + "Label": "97743-5561 via Conventional from 97744 -> 97742", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97744, + "TargetID": 97742, + "Directional": true + }] + }, { + "ID": 18873, + "SourceStructureID": 97750, + "TargetStructureID": 5561, + "Label": "97750-5561 via Conventional from 97751 -> 46297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97751, + "TargetID": 46297, + "Directional": true + }] + }, { + "ID": 18874, + "SourceStructureID": 97764, + "TargetStructureID": 5561, + "Label": "97764-5561 via Conventional from 97766 -> 97763", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97766, + "TargetID": 97763, + "Directional": true + }] + }, { + "ID": 18875, + "SourceStructureID": 97774, + "TargetStructureID": 4569, + "Label": "97774-4569 via Conventional from 97775 -> 4746", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97775, + "TargetID": 4746, + "Directional": true + }] + }, { + "ID": 18876, + "SourceStructureID": 97780, + "TargetStructureID": 4569, + "Label": "97780-4569 via Conventional from 97781 -> 14966", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97781, + "TargetID": 14966, + "Directional": true + }] + }, { + "ID": 18877, + "SourceStructureID": 97786, + "TargetStructureID": 4569, + "Label": "97786-4569 via Conventional from 97787 -> 4740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97787, + "TargetID": 4740, + "Directional": true + }] + }, { + "ID": 18878, + "SourceStructureID": 97790, + "TargetStructureID": 4569, + "Label": "97790-4569 via Conventional from 97791 -> 4743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97791, + "TargetID": 4743, + "Directional": true + }] + }, { + "ID": 18879, + "SourceStructureID": 97792, + "TargetStructureID": 4569, + "Label": "97792-4569 via Conventional from 97793 -> 52452", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97793, + "TargetID": 52452, + "Directional": true + }] + }, { + "ID": 18880, + "SourceStructureID": 97797, + "TargetStructureID": 4569, + "Label": "97797-4569 via Conventional from 97799 -> 52457", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97799, + "TargetID": 52457, + "Directional": true + }] + }, { + "ID": 18881, + "SourceStructureID": 97803, + "TargetStructureID": 4569, + "Label": "97803-4569 via Conventional from 97804 -> 52463", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97804, + "TargetID": 52463, + "Directional": true + }] + }, { + "ID": 18882, + "SourceStructureID": 97814, + "TargetStructureID": 4569, + "Label": "97814-4569 via Conventional from 97815 -> 52466", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97815, + "TargetID": 52466, + "Directional": true + }] + }, { + "ID": 18883, + "SourceStructureID": 97853, + "TargetStructureID": 5278, + "Label": "97853-5278 via Conventional from 97857 -> 20023", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97857, + "TargetID": 20023, + "Directional": true + }] + }, { + "ID": 18884, + "SourceStructureID": 97858, + "TargetStructureID": 4569, + "Label": "97858-4569 via Conventional from 97859 -> 97860, 97863 -> 4739", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97859, + "TargetID": 97860, + "Directional": true + }, { + "SourceID": 97863, + "TargetID": 4739, + "Directional": true + }] + }, { + "ID": 18885, + "SourceStructureID": 97913, + "TargetStructureID": 5278, + "Label": "97913-5278 via Conventional from 97919 -> 20016", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97919, + "TargetID": 20016, + "Directional": true + }] + }, { + "ID": 18886, + "SourceStructureID": 97928, + "TargetStructureID": 5278, + "Label": "97928-5278 via Conventional from 97929 -> 11220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97929, + "TargetID": 11220, + "Directional": true + }] + }, { + "ID": 18887, + "SourceStructureID": 97933, + "TargetStructureID": 5278, + "Label": "97933-5278 via Conventional from 97943 -> 11219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97943, + "TargetID": 11219, + "Directional": true + }] + }, { + "ID": 18888, + "SourceStructureID": 97938, + "TargetStructureID": 5278, + "Label": "97938-5278 via Conventional from 97939 -> 97940", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97939, + "TargetID": 97940, + "Directional": true + }] + }, { + "ID": 18889, + "SourceStructureID": 97951, + "TargetStructureID": 5278, + "Label": "97951-5278 via Conventional from 97954 -> 97955", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 97954, + "TargetID": 97955, + "Directional": true + }] + }, { + "ID": 18890, + "SourceStructureID": 97956, + "TargetStructureID": 5278, + "Label": "97956-5278 via Conventional from 98809 -> 11228", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98809, + "TargetID": 11228, + "Directional": true + }] + }, { + "ID": 18891, + "SourceStructureID": 98016, + "TargetStructureID": 5279, + "Label": "98016-5279 via Conventional from 98018 -> 25820", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98018, + "TargetID": 25820, + "Directional": true + }] + }, { + "ID": 18892, + "SourceStructureID": 98035, + "TargetStructureID": 5279, + "Label": "98035-5279 via Conventional from 98036 -> 25824", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98036, + "TargetID": 25824, + "Directional": true + }] + }, { + "ID": 18893, + "SourceStructureID": 98064, + "TargetStructureID": 5279, + "Label": "98064-5279 via Conventional from 98067 -> 25827", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98067, + "TargetID": 25827, + "Directional": true + }] + }, { + "ID": 18894, + "SourceStructureID": 98068, + "TargetStructureID": 5279, + "Label": "98068-5279 via Conventional from 98070 -> 11480", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98070, + "TargetID": 11480, + "Directional": true + }] + }, { + "ID": 18895, + "SourceStructureID": 98100, + "TargetStructureID": 5279, + "Label": "98100-5279 via Conventional from 98104 -> 11478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98104, + "TargetID": 11478, + "Directional": true + }] + }, { + "ID": 18896, + "SourceStructureID": 98122, + "TargetStructureID": 5279, + "Label": "98122-5279 via Conventional from 98504 -> 11477", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98504, + "TargetID": 11477, + "Directional": true + }] + }, { + "ID": 18897, + "SourceStructureID": 98127, + "TargetStructureID": 10957, + "Label": "98127-10957 via Conventional from 98885 -> 98886, 98887 -> 98888, 98889 -> 98890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98885, + "TargetID": 98886, + "Directional": true + }, { + "SourceID": 98887, + "TargetID": 98888, + "Directional": true + }, { + "SourceID": 98889, + "TargetID": 98890, + "Directional": true + }] + }, { + "ID": 18898, + "SourceStructureID": 98147, + "TargetStructureID": 4569, + "Label": "98147-4569 via Conventional from 98149 -> 23790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98149, + "TargetID": 23790, + "Directional": true + }] + }, { + "ID": 18899, + "SourceStructureID": 98151, + "TargetStructureID": 4569, + "Label": "98151-4569 via Conventional from 98152 -> 23789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98152, + "TargetID": 23789, + "Directional": true + }] + }, { + "ID": 18900, + "SourceStructureID": 98163, + "TargetStructureID": 1620, + "Label": "98163-1620 via Conventional from 98166 -> 16848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98166, + "TargetID": 16848, + "Directional": true + }] + }, { + "ID": 18901, + "SourceStructureID": 98171, + "TargetStructureID": 4569, + "Label": "98171-4569 via Conventional from 98172 -> 23785", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98172, + "TargetID": 23785, + "Directional": true + }] + }, { + "ID": 18902, + "SourceStructureID": 98180, + "TargetStructureID": 4569, + "Label": "98180-4569 via Conventional from 98181 -> 47441", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98181, + "TargetID": 47441, + "Directional": true + }] + }, { + "ID": 18903, + "SourceStructureID": 98186, + "TargetStructureID": 4569, + "Label": "98186-4569 via Conventional from 98187 -> 23799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98187, + "TargetID": 23799, + "Directional": true + }] + }, { + "ID": 18904, + "SourceStructureID": 98188, + "TargetStructureID": 4569, + "Label": "98188-4569 via Conventional from 98189 -> 47487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98189, + "TargetID": 47487, + "Directional": true + }] + }, { + "ID": 18905, + "SourceStructureID": 98190, + "TargetStructureID": 4569, + "Label": "98190-4569 via Conventional from 98191 -> 23800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98191, + "TargetID": 23800, + "Directional": true + }] + }, { + "ID": 18906, + "SourceStructureID": 98193, + "TargetStructureID": 4569, + "Label": "98193-4569 via Conventional from 98194 -> 23803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98194, + "TargetID": 23803, + "Directional": true + }] + }, { + "ID": 18907, + "SourceStructureID": 98203, + "TargetStructureID": 4569, + "Label": "98203-4569 via Conventional from 98204 -> 23801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98204, + "TargetID": 23801, + "Directional": true + }] + }, { + "ID": 18908, + "SourceStructureID": 98216, + "TargetStructureID": 4569, + "Label": "98216-4569 via Conventional from 98218 -> 23806", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98218, + "TargetID": 23806, + "Directional": true + }] + }, { + "ID": 18909, + "SourceStructureID": 98235, + "TargetStructureID": 4569, + "Label": "98235-4569 via Conventional from 98236 -> 23791", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98236, + "TargetID": 23791, + "Directional": true + }] + }, { + "ID": 18910, + "SourceStructureID": 98238, + "TargetStructureID": 4569, + "Label": "98238-4569 via Conventional from 98239 -> 98237", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98239, + "TargetID": 98237, + "Directional": true + }] + }, { + "ID": 18911, + "SourceStructureID": 98251, + "TargetStructureID": 4569, + "Label": "98251-4569 via Conventional from 98252 -> 23793", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98252, + "TargetID": 23793, + "Directional": true + }] + }, { + "ID": 18912, + "SourceStructureID": 98258, + "TargetStructureID": 4569, + "Label": "98258-4569 via Conventional from 98260 -> 47415", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98260, + "TargetID": 47415, + "Directional": true + }] + }, { + "ID": 18913, + "SourceStructureID": 98270, + "TargetStructureID": 4569, + "Label": "98270-4569 via Conventional from 98273 -> 52483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98273, + "TargetID": 52483, + "Directional": true + }] + }, { + "ID": 18914, + "SourceStructureID": 98278, + "TargetStructureID": 4569, + "Label": "98278-4569 via Conventional from 98281 -> 47433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98281, + "TargetID": 47433, + "Directional": true + }] + }, { + "ID": 18915, + "SourceStructureID": 98279, + "TargetStructureID": 4569, + "Label": "98279-4569 via Conventional from 98280 -> 47434", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98280, + "TargetID": 47434, + "Directional": true + }] + }, { + "ID": 18916, + "SourceStructureID": 98289, + "TargetStructureID": 4569, + "Label": "98289-4569 via Conventional from 98295 -> 47437", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98295, + "TargetID": 47437, + "Directional": true + }] + }, { + "ID": 18917, + "SourceStructureID": 98297, + "TargetStructureID": 4569, + "Label": "98297-4569 via Conventional from 98298 -> 47438", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98298, + "TargetID": 47438, + "Directional": true + }] + }, { + "ID": 18918, + "SourceStructureID": 98329, + "TargetStructureID": 4569, + "Label": "98329-4569 via Conventional from 98330 -> 4748", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98330, + "TargetID": 4748, + "Directional": true + }] + }, { + "ID": 18919, + "SourceStructureID": 98337, + "TargetStructureID": 4569, + "Label": "98337-4569 via Conventional from 98338 -> 30815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98338, + "TargetID": 30815, + "Directional": true + }] + }, { + "ID": 18920, + "SourceStructureID": 98339, + "TargetStructureID": 4569, + "Label": "98339-4569 via Conventional from 98340 -> 98341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98340, + "TargetID": 98341, + "Directional": true + }] + }, { + "ID": 18921, + "SourceStructureID": 98345, + "TargetStructureID": 4569, + "Label": "98345-4569 via Conventional from 98346 -> 47490", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98346, + "TargetID": 47490, + "Directional": true + }] + }, { + "ID": 18922, + "SourceStructureID": 98348, + "TargetStructureID": 4569, + "Label": "98348-4569 via Conventional from 98349 -> 15993", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98349, + "TargetID": 15993, + "Directional": true + }] + }, { + "ID": 18923, + "SourceStructureID": 98350, + "TargetStructureID": 4569, + "Label": "98350-4569 via Conventional from 98351 -> 47491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98351, + "TargetID": 47491, + "Directional": true + }] + }, { + "ID": 18924, + "SourceStructureID": 98359, + "TargetStructureID": 4569, + "Label": "98359-4569 via Conventional from 98360 -> 52506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98360, + "TargetID": 52506, + "Directional": true + }] + }, { + "ID": 18925, + "SourceStructureID": 98363, + "TargetStructureID": 4569, + "Label": "98363-4569 via Conventional from 98364 -> 30824", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98364, + "TargetID": 30824, + "Directional": true + }] + }, { + "ID": 18926, + "SourceStructureID": 98365, + "TargetStructureID": 4569, + "Label": "98365-4569 via Conventional from 98366 -> 30823", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98366, + "TargetID": 30823, + "Directional": true + }] + }, { + "ID": 18927, + "SourceStructureID": 98372, + "TargetStructureID": 4569, + "Label": "98372-4569 via Conventional from 98374 -> 30825", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98374, + "TargetID": 30825, + "Directional": true + }] + }, { + "ID": 18928, + "SourceStructureID": 98395, + "TargetStructureID": 4569, + "Label": "98395-4569 via Conventional from 98396 -> 30826", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98396, + "TargetID": 30826, + "Directional": true + }] + }, { + "ID": 18929, + "SourceStructureID": 98409, + "TargetStructureID": 4569, + "Label": "98409-4569 via Conventional from 98410 -> 30829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98410, + "TargetID": 30829, + "Directional": true + }] + }, { + "ID": 18930, + "SourceStructureID": 98411, + "TargetStructureID": 4569, + "Label": "98411-4569 via Conventional from 98412 -> 47494", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98412, + "TargetID": 47494, + "Directional": true + }] + }, { + "ID": 18931, + "SourceStructureID": 98413, + "TargetStructureID": 142, + "Label": "98413-142 via Conventional from 98414 -> 98416", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98414, + "TargetID": 98416, + "Directional": true + }] + }, { + "ID": 18932, + "SourceStructureID": 98418, + "TargetStructureID": 4569, + "Label": "98418-4569 via Conventional from 98419 -> 30831", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98419, + "TargetID": 30831, + "Directional": true + }] + }, { + "ID": 18933, + "SourceStructureID": 98434, + "TargetStructureID": 4569, + "Label": "98434-4569 via Conventional from 98435 -> 98433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98435, + "TargetID": 98433, + "Directional": true + }] + }, { + "ID": 18934, + "SourceStructureID": 98438, + "TargetStructureID": 4569, + "Label": "98438-4569 via Conventional from 98439 -> 98440", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98439, + "TargetID": 98440, + "Directional": true + }] + }, { + "ID": 18935, + "SourceStructureID": 98444, + "TargetStructureID": 4569, + "Label": "98444-4569 via Conventional from 98445 -> 92753", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98445, + "TargetID": 92753, + "Directional": true + }] + }, { + "ID": 18936, + "SourceStructureID": 98459, + "TargetStructureID": 168, + "Label": "98459-168 via Conventional from 119055 -> 119054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119055, + "TargetID": 119054, + "Directional": true + }] + }, { + "ID": 18937, + "SourceStructureID": 98459, + "TargetStructureID": 4569, + "Label": "98459-4569 via Conventional from 98460 -> 98457", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98460, + "TargetID": 98457, + "Directional": true + }] + }, { + "ID": 18938, + "SourceStructureID": 98465, + "TargetStructureID": 4569, + "Label": "98465-4569 via Conventional from 98466 -> 52507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98466, + "TargetID": 52507, + "Directional": true + }] + }, { + "ID": 18939, + "SourceStructureID": 98478, + "TargetStructureID": 4569, + "Label": "98478-4569 via Conventional from 98479 -> 30834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98479, + "TargetID": 30834, + "Directional": true + }] + }, { + "ID": 18940, + "SourceStructureID": 98484, + "TargetStructureID": 4569, + "Label": "98484-4569 via Conventional from 98485 -> 65200", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98485, + "TargetID": 65200, + "Directional": true + }] + }, { + "ID": 18941, + "SourceStructureID": 98486, + "TargetStructureID": 4569, + "Label": "98486-4569 via Conventional from 98487 -> 98488", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98487, + "TargetID": 98488, + "Directional": true + }] + }, { + "ID": 18942, + "SourceStructureID": 98511, + "TargetStructureID": 4569, + "Label": "98511-4569 via Conventional from 98512 -> 98510", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98512, + "TargetID": 98510, + "Directional": true + }] + }, { + "ID": 18943, + "SourceStructureID": 98524, + "TargetStructureID": 5279, + "Label": "98524-5279 via Conventional from 98532 -> 49208", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98532, + "TargetID": 49208, + "Directional": true + }] + }, { + "ID": 18944, + "SourceStructureID": 98530, + "TargetStructureID": 4569, + "Label": "98530-4569 via Conventional from 98531 -> 98529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98531, + "TargetID": 98529, + "Directional": true + }] + }, { + "ID": 18945, + "SourceStructureID": 98535, + "TargetStructureID": 4569, + "Label": "98535-4569 via Conventional from 98540 -> 98533", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98540, + "TargetID": 98533, + "Directional": true + }] + }, { + "ID": 18946, + "SourceStructureID": 98535, + "TargetStructureID": 5118, + "Label": "98535-5118 via Conventional from 98541 -> 6520", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98541, + "TargetID": 6520, + "Directional": true + }] + }, { + "ID": 18947, + "SourceStructureID": 98537, + "TargetStructureID": 5279, + "Label": "98537-5279 via Conventional from 98542 -> 49205", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98542, + "TargetID": 49205, + "Directional": true + }] + }, { + "ID": 18948, + "SourceStructureID": 98550, + "TargetStructureID": 4569, + "Label": "98550-4569 via Conventional from 98551 -> 47497", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98551, + "TargetID": 47497, + "Directional": true + }] + }, { + "ID": 18949, + "SourceStructureID": 98555, + "TargetStructureID": 4569, + "Label": "98555-4569 via Conventional from 98557 -> 98554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98557, + "TargetID": 98554, + "Directional": true + }] + }, { + "ID": 18950, + "SourceStructureID": 98559, + "TargetStructureID": 4569, + "Label": "98559-4569 via Conventional from 98561 -> 47498", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98561, + "TargetID": 47498, + "Directional": true + }] + }, { + "ID": 18951, + "SourceStructureID": 98565, + "TargetStructureID": 5279, + "Label": "98565-5279 via Conventional from 98567 -> 98566", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98567, + "TargetID": 98566, + "Directional": true + }] + }, { + "ID": 18952, + "SourceStructureID": 98574, + "TargetStructureID": 4569, + "Label": "98574-4569 via Conventional from 98575 -> 47503", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98575, + "TargetID": 47503, + "Directional": true + }] + }, { + "ID": 18953, + "SourceStructureID": 98584, + "TargetStructureID": 5279, + "Label": "98584-5279 via Conventional from 98588 -> 25844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98588, + "TargetID": 25844, + "Directional": true + }] + }, { + "ID": 18954, + "SourceStructureID": 98585, + "TargetStructureID": 4569, + "Label": "98585-4569 via Conventional from 98596 -> 47502", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98596, + "TargetID": 47502, + "Directional": true + }] + }, { + "ID": 18955, + "SourceStructureID": 98590, + "TargetStructureID": 13525, + "Label": "98590-13525 via Conventional from 98591 -> 84663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98591, + "TargetID": 84663, + "Directional": true + }] + }, { + "ID": 18956, + "SourceStructureID": 98595, + "TargetStructureID": 5279, + "Label": "98595-5279 via Conventional from 98598 -> 25843", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98598, + "TargetID": 25843, + "Directional": true + }] + }, { + "ID": 18957, + "SourceStructureID": 98599, + "TargetStructureID": 1724, + "Label": "98599-1724 via Conventional from 100287 -> 47400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100287, + "TargetID": 47400, + "Directional": true + }] + }, { + "ID": 18958, + "SourceStructureID": 98604, + "TargetStructureID": 4569, + "Label": "98604-4569 via Conventional from 98615 -> 47499", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98615, + "TargetID": 47499, + "Directional": true + }] + }, { + "ID": 18959, + "SourceStructureID": 98611, + "TargetStructureID": 4569, + "Label": "98611-4569 via Conventional from 98613 -> 47500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98613, + "TargetID": 47500, + "Directional": true + }] + }, { + "ID": 18960, + "SourceStructureID": 98618, + "TargetStructureID": 4569, + "Label": "98618-4569 via Conventional from 98620 -> 47505", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98620, + "TargetID": 47505, + "Directional": true + }] + }, { + "ID": 18961, + "SourceStructureID": 98622, + "TargetStructureID": 5279, + "Label": "98622-5279 via Conventional from 98623 -> 25988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98623, + "TargetID": 25988, + "Directional": true + }] + }, { + "ID": 18962, + "SourceStructureID": 98624, + "TargetStructureID": 5279, + "Label": "98624-5279 via Conventional from 98625 -> 98626", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98625, + "TargetID": 98626, + "Directional": true + }] + }, { + "ID": 18963, + "SourceStructureID": 98632, + "TargetStructureID": 1724, + "Label": "98632-1724 via Conventional from 100293 -> 100294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100293, + "TargetID": 100294, + "Directional": true + }] + }, { + "ID": 18964, + "SourceStructureID": 98636, + "TargetStructureID": 5279, + "Label": "98636-5279 via Conventional from 98637 -> 25849", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98637, + "TargetID": 25849, + "Directional": true + }] + }, { + "ID": 18965, + "SourceStructureID": 98641, + "TargetStructureID": 30477, + "Label": "98641-30477 via Conventional from 98642 -> 30485", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98642, + "TargetID": 30485, + "Directional": true + }] + }, { + "ID": 18966, + "SourceStructureID": 98650, + "TargetStructureID": 4569, + "Label": "98650-4569 via Conventional from 98651 -> 98649", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98651, + "TargetID": 98649, + "Directional": true + }] + }, { + "ID": 18967, + "SourceStructureID": 98655, + "TargetStructureID": 4569, + "Label": "98655-4569 via Conventional from 98656 -> 98654", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98656, + "TargetID": 98654, + "Directional": true + }] + }, { + "ID": 18968, + "SourceStructureID": 98660, + "TargetStructureID": 5279, + "Label": "98660-5279 via Conventional from 98662 -> 25847", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98662, + "TargetID": 25847, + "Directional": true + }] + }, { + "ID": 18969, + "SourceStructureID": 98674, + "TargetStructureID": 4569, + "Label": "98674-4569 via Conventional from 98677 -> 98669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98677, + "TargetID": 98669, + "Directional": true + }] + }, { + "ID": 18970, + "SourceStructureID": 98676, + "TargetStructureID": 5279, + "Label": "98676-5279 via Conventional from 98702 -> 25993", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98702, + "TargetID": 25993, + "Directional": true + }] + }, { + "ID": 18971, + "SourceStructureID": 98683, + "TargetStructureID": 4569, + "Label": "98683-4569 via Conventional from 98686 -> 98681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98686, + "TargetID": 98681, + "Directional": true + }] + }, { + "ID": 18972, + "SourceStructureID": 98694, + "TargetStructureID": 4569, + "Label": "98694-4569 via Conventional from 98695 -> 98696", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98695, + "TargetID": 98696, + "Directional": true + }] + }, { + "ID": 18973, + "SourceStructureID": 98703, + "TargetStructureID": 5645, + "Label": "98703-5645 via Adherens from 98711 -> 98712", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 98711, + "TargetID": 98712, + "Directional": true + }] + }, { + "ID": 18974, + "SourceStructureID": 98703, + "TargetStructureID": 5645, + "Label": "98703-5645 via Conventional from 98704 -> 98705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98704, + "TargetID": 98705, + "Directional": true + }] + }, { + "ID": 18975, + "SourceStructureID": 98707, + "TargetStructureID": 98703, + "Label": "98707-98703 via Conventional from 98708 -> 98709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98708, + "TargetID": 98709, + "Directional": true + }] + }, { + "ID": 18976, + "SourceStructureID": 98720, + "TargetStructureID": 5279, + "Label": "98720-5279 via Conventional from 98721 -> 25996", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98721, + "TargetID": 25996, + "Directional": true + }] + }, { + "ID": 18977, + "SourceStructureID": 98722, + "TargetStructureID": 5279, + "Label": "98722-5279 via Conventional from 98723 -> 25995", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98723, + "TargetID": 25995, + "Directional": true + }] + }, { + "ID": 18978, + "SourceStructureID": 98725, + "TargetStructureID": 4569, + "Label": "98725-4569 via Conventional from 98726 -> 98724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98726, + "TargetID": 98724, + "Directional": true + }] + }, { + "ID": 18979, + "SourceStructureID": 98735, + "TargetStructureID": 4569, + "Label": "98735-4569 via Conventional from 98736 -> 47509", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98736, + "TargetID": 47509, + "Directional": true + }] + }, { + "ID": 18980, + "SourceStructureID": 98740, + "TargetStructureID": 364, + "Label": "98740-364 via Conventional from 98742 -> 14069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98742, + "TargetID": 14069, + "Directional": true + }] + }, { + "ID": 18981, + "SourceStructureID": 98749, + "TargetStructureID": 4569, + "Label": "98749-4569 via Conventional from 98750 -> 47513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98750, + "TargetID": 47513, + "Directional": true + }] + }, { + "ID": 18982, + "SourceStructureID": 98751, + "TargetStructureID": 431, + "Label": "98751-431 via Conventional from 98753 -> 119072", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98753, + "TargetID": 119072, + "Directional": true + }] + }, { + "ID": 18983, + "SourceStructureID": 98756, + "TargetStructureID": 431, + "Label": "98756-431 via Conventional from 98757 -> 119068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98757, + "TargetID": 119068, + "Directional": true + }] + }, { + "ID": 18984, + "SourceStructureID": 98758, + "TargetStructureID": 431, + "Label": "98758-431 via Conventional from 98760 -> 119066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98760, + "TargetID": 119066, + "Directional": true + }] + }, { + "ID": 18985, + "SourceStructureID": 98759, + "TargetStructureID": 431, + "Label": "98759-431 via Conventional from 98761 -> 119067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98761, + "TargetID": 119067, + "Directional": true + }] + }, { + "ID": 18986, + "SourceStructureID": 98762, + "TargetStructureID": 1724, + "Label": "98762-1724 via Conventional from 98764 -> 47386", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98764, + "TargetID": 47386, + "Directional": true + }] + }, { + "ID": 18987, + "SourceStructureID": 98770, + "TargetStructureID": 431, + "Label": "98770-431 via Conventional from 98771 -> 119064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98771, + "TargetID": 119064, + "Directional": true + }] + }, { + "ID": 18988, + "SourceStructureID": 98786, + "TargetStructureID": 431, + "Label": "98786-431 via Conventional from 98787 -> 98785", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98787, + "TargetID": 98785, + "Directional": true + }] + }, { + "ID": 18989, + "SourceStructureID": 98800, + "TargetStructureID": 4569, + "Label": "98800-4569 via Conventional from 98801 -> 30863", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98801, + "TargetID": 30863, + "Directional": true + }] + }, { + "ID": 18990, + "SourceStructureID": 98823, + "TargetStructureID": 1637, + "Label": "98823-1637 via Conventional from 98824 -> 4076", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98824, + "TargetID": 4076, + "Directional": true + }] + }, { + "ID": 18991, + "SourceStructureID": 98823, + "TargetStructureID": 5278, + "Label": "98823-5278 via Conventional from 98826 -> 20034", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98826, + "TargetID": 20034, + "Directional": true + }] + }, { + "ID": 18992, + "SourceStructureID": 98833, + "TargetStructureID": 5278, + "Label": "98833-5278 via Conventional from 98834 -> 20043, 98835 -> 98832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98834, + "TargetID": 20043, + "Directional": true + }, { + "SourceID": 98835, + "TargetID": 98832, + "Directional": true + }] + }, { + "ID": 18993, + "SourceStructureID": 98836, + "TargetStructureID": 4569, + "Label": "98836-4569 via Conventional from 98837 -> 47518", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98837, + "TargetID": 47518, + "Directional": true + }] + }, { + "ID": 18994, + "SourceStructureID": 98838, + "TargetStructureID": 4569, + "Label": "98838-4569 via Unknown from 98841 -> 47519", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 98841, + "TargetID": 47519, + "Directional": true + }] + }, { + "ID": 18995, + "SourceStructureID": 98843, + "TargetStructureID": 4569, + "Label": "98843-4569 via Conventional from 98844 -> 98842", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98844, + "TargetID": 98842, + "Directional": true + }] + }, { + "ID": 18996, + "SourceStructureID": 98849, + "TargetStructureID": 13525, + "Label": "98849-13525 via Conventional from 98863 -> 13529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98863, + "TargetID": 13529, + "Directional": true + }] + }, { + "ID": 18997, + "SourceStructureID": 98850, + "TargetStructureID": 4569, + "Label": "98850-4569 via Conventional from 98851 -> 52512", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98851, + "TargetID": 52512, + "Directional": true + }] + }, { + "ID": 18998, + "SourceStructureID": 98858, + "TargetStructureID": 4569, + "Label": "98858-4569 via Conventional from 98859 -> 52514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98859, + "TargetID": 52514, + "Directional": true + }] + }, { + "ID": 18999, + "SourceStructureID": 98864, + "TargetStructureID": 4569, + "Label": "98864-4569 via Conventional from 98865 -> 47540", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98865, + "TargetID": 47540, + "Directional": true + }] + }, { + "ID": 19000, + "SourceStructureID": 98869, + "TargetStructureID": 4569, + "Label": "98869-4569 via Conventional from 98871 -> 47541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98871, + "TargetID": 47541, + "Directional": true + }] + }, { + "ID": 19001, + "SourceStructureID": 98872, + "TargetStructureID": 4569, + "Label": "98872-4569 via Conventional from 98873 -> 30843", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98873, + "TargetID": 30843, + "Directional": true + }] + }, { + "ID": 19002, + "SourceStructureID": 98891, + "TargetStructureID": 4569, + "Label": "98891-4569 via Conventional from 98893 -> 30849", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98893, + "TargetID": 30849, + "Directional": true + }] + }, { + "ID": 19003, + "SourceStructureID": 98894, + "TargetStructureID": 4569, + "Label": "98894-4569 via Conventional from 98895 -> 30848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98895, + "TargetID": 30848, + "Directional": true + }] + }, { + "ID": 19004, + "SourceStructureID": 98908, + "TargetStructureID": 4569, + "Label": "98908-4569 via Conventional from 98909 -> 30846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98909, + "TargetID": 30846, + "Directional": true + }] + }, { + "ID": 19005, + "SourceStructureID": 98914, + "TargetStructureID": 4569, + "Label": "98914-4569 via Conventional from 98915 -> 52542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98915, + "TargetID": 52542, + "Directional": true + }] + }, { + "ID": 19006, + "SourceStructureID": 98917, + "TargetStructureID": 4569, + "Label": "98917-4569 via Conventional from 98918 -> 30850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98918, + "TargetID": 30850, + "Directional": true + }] + }, { + "ID": 19007, + "SourceStructureID": 98920, + "TargetStructureID": 4569, + "Label": "98920-4569 via Conventional from 98921 -> 30851", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98921, + "TargetID": 30851, + "Directional": true + }] + }, { + "ID": 19008, + "SourceStructureID": 98924, + "TargetStructureID": 4569, + "Label": "98924-4569 via Conventional from 98925 -> 47552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98925, + "TargetID": 47552, + "Directional": true + }] + }, { + "ID": 19009, + "SourceStructureID": 98929, + "TargetStructureID": 4569, + "Label": "98929-4569 via Conventional from 98930 -> 98931, 98938 -> 30856", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98930, + "TargetID": 98931, + "Directional": true + }, { + "SourceID": 98938, + "TargetID": 30856, + "Directional": true + }] + }, { + "ID": 19010, + "SourceStructureID": 98932, + "TargetStructureID": 4569, + "Label": "98932-4569 via Conventional from 98933 -> 98935, 98934 -> 52549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98933, + "TargetID": 98935, + "Directional": true + }, { + "SourceID": 98934, + "TargetID": 52549, + "Directional": true + }] + }, { + "ID": 19011, + "SourceStructureID": 98936, + "TargetStructureID": 4569, + "Label": "98936-4569 via Conventional from 98937 -> 30855", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98937, + "TargetID": 30855, + "Directional": true + }] + }, { + "ID": 19012, + "SourceStructureID": 98958, + "TargetStructureID": 4569, + "Label": "98958-4569 via Conventional from 98959 -> 47548", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98959, + "TargetID": 47548, + "Directional": true + }] + }, { + "ID": 19013, + "SourceStructureID": 98960, + "TargetStructureID": 4569, + "Label": "98960-4569 via Conventional from 98961 -> 30857", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98961, + "TargetID": 30857, + "Directional": true + }] + }, { + "ID": 19014, + "SourceStructureID": 98962, + "TargetStructureID": 4569, + "Label": "98962-4569 via Conventional from 98963 -> 47549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98963, + "TargetID": 47549, + "Directional": true + }] + }, { + "ID": 19015, + "SourceStructureID": 98980, + "TargetStructureID": 5279, + "Label": "98980-5279 via Conventional from 98981 -> 25998", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98981, + "TargetID": 25998, + "Directional": true + }] + }, { + "ID": 19016, + "SourceStructureID": 98983, + "TargetStructureID": 5279, + "Label": "98983-5279 via Conventional from 98984 -> 25997", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98984, + "TargetID": 25997, + "Directional": true + }] + }, { + "ID": 19017, + "SourceStructureID": 98987, + "TargetStructureID": 5279, + "Label": "98987-5279 via Conventional from 98988 -> 26000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98988, + "TargetID": 26000, + "Directional": true + }] + }, { + "ID": 19018, + "SourceStructureID": 98991, + "TargetStructureID": 5279, + "Label": "98991-5279 via Conventional from 98992 -> 26001", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 98992, + "TargetID": 26001, + "Directional": true + }] + }, { + "ID": 19019, + "SourceStructureID": 98997, + "TargetStructureID": 5279, + "Label": "98997-5279 via Conventional from 99035 -> 99036", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99035, + "TargetID": 99036, + "Directional": true + }] + }, { + "ID": 19020, + "SourceStructureID": 99010, + "TargetStructureID": 4569, + "Label": "99010-4569 via Conventional from 99011 -> 30861", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99011, + "TargetID": 30861, + "Directional": true + }] + }, { + "ID": 19021, + "SourceStructureID": 99012, + "TargetStructureID": 4569, + "Label": "99012-4569 via Conventional from 99013 -> 30862", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99013, + "TargetID": 30862, + "Directional": true + }] + }, { + "ID": 19022, + "SourceStructureID": 99039, + "TargetStructureID": 5279, + "Label": "99039-5279 via Conventional from 99042 -> 99043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99042, + "TargetID": 99043, + "Directional": true + }] + }, { + "ID": 19023, + "SourceStructureID": 99040, + "TargetStructureID": 4569, + "Label": "99040-4569 via Conventional from 99041 -> 30842", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99041, + "TargetID": 30842, + "Directional": true + }] + }, { + "ID": 19024, + "SourceStructureID": 99047, + "TargetStructureID": 4569, + "Label": "99047-4569 via Conventional from 99049 -> 30865", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99049, + "TargetID": 30865, + "Directional": true + }] + }, { + "ID": 19025, + "SourceStructureID": 99062, + "TargetStructureID": 5279, + "Label": "99062-5279 via Conventional from 99063 -> 99064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99063, + "TargetID": 99064, + "Directional": true + }] + }, { + "ID": 19026, + "SourceStructureID": 99065, + "TargetStructureID": 5279, + "Label": "99065-5279 via Conventional from 99074 -> 49222", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99074, + "TargetID": 49222, + "Directional": true + }] + }, { + "ID": 19027, + "SourceStructureID": 99069, + "TargetStructureID": 4569, + "Label": "99069-4569 via Conventional from 99070 -> 6299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99070, + "TargetID": 6299, + "Directional": true + }] + }, { + "ID": 19028, + "SourceStructureID": 99072, + "TargetStructureID": 4569, + "Label": "99072-4569 via Conventional from 99073 -> 30817", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99073, + "TargetID": 30817, + "Directional": true + }] + }, { + "ID": 19029, + "SourceStructureID": 99076, + "TargetStructureID": 5279, + "Label": "99076-5279 via Conventional from 99085 -> 49223", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99085, + "TargetID": 49223, + "Directional": true + }] + }, { + "ID": 19030, + "SourceStructureID": 99077, + "TargetStructureID": 4569, + "Label": "99077-4569 via Conventional from 99079 -> 99078", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99079, + "TargetID": 99078, + "Directional": true + }] + }, { + "ID": 19031, + "SourceStructureID": 99091, + "TargetStructureID": 5279, + "Label": "99091-5279 via Conventional from 99104 -> 99105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99104, + "TargetID": 99105, + "Directional": true + }] + }, { + "ID": 19032, + "SourceStructureID": 99092, + "TargetStructureID": 4569, + "Label": "99092-4569 via Conventional from 99093 -> 30818", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99093, + "TargetID": 30818, + "Directional": true + }] + }, { + "ID": 19033, + "SourceStructureID": 99092, + "TargetStructureID": 38949, + "Label": "99092-38949 via Conventional from 112743 -> 39031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112743, + "TargetID": 39031, + "Directional": true + }] + }, { + "ID": 19034, + "SourceStructureID": 99094, + "TargetStructureID": 4569, + "Label": "99094-4569 via Conventional from 99095 -> 23563", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99095, + "TargetID": 23563, + "Directional": true + }] + }, { + "ID": 19035, + "SourceStructureID": 99096, + "TargetStructureID": 4569, + "Label": "99096-4569 via Conventional from 99097 -> 23562", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99097, + "TargetID": 23562, + "Directional": true + }] + }, { + "ID": 19036, + "SourceStructureID": 99098, + "TargetStructureID": 4569, + "Label": "99098-4569 via Conventional from 99099 -> 23571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99099, + "TargetID": 23571, + "Directional": true + }] + }, { + "ID": 19037, + "SourceStructureID": 99102, + "TargetStructureID": 4569, + "Label": "99102-4569 via Conventional from 99103 -> 30819", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99103, + "TargetID": 30819, + "Directional": true + }] + }, { + "ID": 19038, + "SourceStructureID": 99115, + "TargetStructureID": 5279, + "Label": "99115-5279 via Conventional from 99116 -> 49227", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99116, + "TargetID": 49227, + "Directional": true + }] + }, { + "ID": 19039, + "SourceStructureID": 99117, + "TargetStructureID": 4569, + "Label": "99117-4569 via Conventional from 99119 -> 30820", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99119, + "TargetID": 30820, + "Directional": true + }] + }, { + "ID": 19040, + "SourceStructureID": 99118, + "TargetStructureID": 5279, + "Label": "99118-5279 via Conventional from 99124 -> 49230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99124, + "TargetID": 49230, + "Directional": true + }] + }, { + "ID": 19041, + "SourceStructureID": 99125, + "TargetStructureID": 5279, + "Label": "99125-5279 via Conventional from 99126 -> 49228", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99126, + "TargetID": 49228, + "Directional": true + }] + }, { + "ID": 19042, + "SourceStructureID": 99132, + "TargetStructureID": 5279, + "Label": "99132-5279 via Conventional from 99133 -> 99134", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99133, + "TargetID": 99134, + "Directional": true + }] + }, { + "ID": 19043, + "SourceStructureID": 99136, + "TargetStructureID": 5279, + "Label": "99136-5279 via Conventional from 99137 -> 49225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99137, + "TargetID": 49225, + "Directional": true + }] + }, { + "ID": 19044, + "SourceStructureID": 99147, + "TargetStructureID": 5279, + "Label": "99147-5279 via Conventional from 99148 -> 99149", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99148, + "TargetID": 99149, + "Directional": true + }] + }, { + "ID": 19045, + "SourceStructureID": 99225, + "TargetStructureID": 485, + "Label": "99225-485 via Conventional from 99226 -> 38781", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99226, + "TargetID": 38781, + "Directional": true + }] + }, { + "ID": 19046, + "SourceStructureID": 99237, + "TargetStructureID": 5278, + "Label": "99237-5278 via Conventional from 99244 -> 20041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99244, + "TargetID": 20041, + "Directional": true + }] + }, { + "ID": 19047, + "SourceStructureID": 99243, + "TargetStructureID": 1724, + "Label": "99243-1724 via Conventional from 99245 -> 1762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99245, + "TargetID": 1762, + "Directional": true + }] + }, { + "ID": 19048, + "SourceStructureID": 99255, + "TargetStructureID": 5278, + "Label": "99255-5278 via Conventional from 99258 -> 20046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99258, + "TargetID": 20046, + "Directional": true + }] + }, { + "ID": 19049, + "SourceStructureID": 99261, + "TargetStructureID": 1724, + "Label": "99261-1724 via Conventional from 99263 -> 1773", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99263, + "TargetID": 1773, + "Directional": true + }] + }, { + "ID": 19050, + "SourceStructureID": 99266, + "TargetStructureID": 1724, + "Label": "99266-1724 via Conventional from 99267 -> 99269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99267, + "TargetID": 99269, + "Directional": true + }] + }, { + "ID": 19051, + "SourceStructureID": 99278, + "TargetStructureID": 485, + "Label": "99278-485 via Conventional from 99279 -> 99277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99279, + "TargetID": 99277, + "Directional": true + }] + }, { + "ID": 19052, + "SourceStructureID": 99307, + "TargetStructureID": 1724, + "Label": "99307-1724 via Conventional from 100560 -> 48480", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100560, + "TargetID": 48480, + "Directional": true + }] + }, { + "ID": 19053, + "SourceStructureID": 99307, + "TargetStructureID": 5278, + "Label": "99307-5278 via Conventional from 99308 -> 20115", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99308, + "TargetID": 20115, + "Directional": true + }] + }, { + "ID": 19054, + "SourceStructureID": 99316, + "TargetStructureID": 1724, + "Label": "99316-1724 via Conventional from 99317 -> 47375", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99317, + "TargetID": 47375, + "Directional": true + }] + }, { + "ID": 19055, + "SourceStructureID": 99319, + "TargetStructureID": 1724, + "Label": "99319-1724 via Conventional from 99324 -> 55462", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99324, + "TargetID": 55462, + "Directional": true + }] + }, { + "ID": 19056, + "SourceStructureID": 99320, + "TargetStructureID": 1724, + "Label": "99320-1724 via Conventional from 99321 -> 99322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99321, + "TargetID": 99322, + "Directional": true + }] + }, { + "ID": 19057, + "SourceStructureID": 99325, + "TargetStructureID": 1724, + "Label": "99325-1724 via Conventional from 99326 -> 4040", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99326, + "TargetID": 4040, + "Directional": true + }] + }, { + "ID": 19058, + "SourceStructureID": 99329, + "TargetStructureID": 1724, + "Label": "99329-1724 via Conventional from 99330 -> 99331", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99330, + "TargetID": 99331, + "Directional": true + }] + }, { + "ID": 19059, + "SourceStructureID": 99332, + "TargetStructureID": 1724, + "Label": "99332-1724 via Conventional from 99333 -> 4048, 99518 -> 47945", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99333, + "TargetID": 4048, + "Directional": true + }, { + "SourceID": 99518, + "TargetID": 47945, + "Directional": true + }] + }, { + "ID": 19060, + "SourceStructureID": 99332, + "TargetStructureID": 6156, + "Label": "99332-6156 via Conventional from 133369 -> 133368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133369, + "TargetID": 133368, + "Directional": true + }] + }, { + "ID": 19061, + "SourceStructureID": 99343, + "TargetStructureID": 33625, + "Label": "99343-33625 via Conventional from 99344 -> 33651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99344, + "TargetID": 33651, + "Directional": true + }] + }, { + "ID": 19062, + "SourceStructureID": 99361, + "TargetStructureID": 1724, + "Label": "99361-1724 via Conventional from 99369 -> 47384", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99369, + "TargetID": 47384, + "Directional": true + }] + }, { + "ID": 19063, + "SourceStructureID": 99364, + "TargetStructureID": 1724, + "Label": "99364-1724 via Conventional from 99420 -> 47387", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99420, + "TargetID": 47387, + "Directional": true + }] + }, { + "ID": 19064, + "SourceStructureID": 99375, + "TargetStructureID": 485, + "Label": "99375-485 via Conventional from 99386 -> 99374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99386, + "TargetID": 99374, + "Directional": true + }] + }, { + "ID": 19065, + "SourceStructureID": 99388, + "TargetStructureID": 485, + "Label": "99388-485 via Conventional from 99389 -> 99387", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99389, + "TargetID": 99387, + "Directional": true + }] + }, { + "ID": 19066, + "SourceStructureID": 99395, + "TargetStructureID": 485, + "Label": "99395-485 via Conventional from 99396 -> 99393", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99396, + "TargetID": 99393, + "Directional": true + }] + }, { + "ID": 19067, + "SourceStructureID": 99426, + "TargetStructureID": 1724, + "Label": "99426-1724 via Conventional from 99427 -> 99428", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99427, + "TargetID": 99428, + "Directional": true + }] + }, { + "ID": 19068, + "SourceStructureID": 99435, + "TargetStructureID": 1724, + "Label": "99435-1724 via Conventional from 99436 -> 47389", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99436, + "TargetID": 47389, + "Directional": true + }] + }, { + "ID": 19069, + "SourceStructureID": 99435, + "TargetStructureID": 6406, + "Label": "99435-6406 via Conventional from 101690 -> 101691", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101690, + "TargetID": 101691, + "Directional": true + }] + }, { + "ID": 19070, + "SourceStructureID": 99443, + "TargetStructureID": 485, + "Label": "99443-485 via Conventional from 99444 -> 50863", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99444, + "TargetID": 50863, + "Directional": true + }] + }, { + "ID": 19071, + "SourceStructureID": 99447, + "TargetStructureID": 485, + "Label": "99447-485 via Conventional from 99448 -> 50864", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99448, + "TargetID": 50864, + "Directional": true + }] + }, { + "ID": 19072, + "SourceStructureID": 99453, + "TargetStructureID": 485, + "Label": "99453-485 via Conventional from 99455 -> 50862", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99455, + "TargetID": 50862, + "Directional": true + }] + }, { + "ID": 19073, + "SourceStructureID": 99463, + "TargetStructureID": 485, + "Label": "99463-485 via Conventional from 99464 -> 50882", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99464, + "TargetID": 50882, + "Directional": true + }] + }, { + "ID": 19074, + "SourceStructureID": 99465, + "TargetStructureID": 485, + "Label": "99465-485 via Conventional from 99466 -> 50881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99466, + "TargetID": 50881, + "Directional": true + }] + }, { + "ID": 19075, + "SourceStructureID": 99468, + "TargetStructureID": 1724, + "Label": "99468-1724 via Conventional from 99469 -> 99470, 99503 -> 4069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99469, + "TargetID": 99470, + "Directional": true + }, { + "SourceID": 99503, + "TargetID": 4069, + "Directional": true + }] + }, { + "ID": 19076, + "SourceStructureID": 99480, + "TargetStructureID": 1724, + "Label": "99480-1724 via Conventional from 99486 -> 4066, 99487 -> 4066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99486, + "TargetID": 4066, + "Directional": true + }, { + "SourceID": 99487, + "TargetID": 4066, + "Directional": true + }] + }, { + "ID": 19077, + "SourceStructureID": 99482, + "TargetStructureID": 309, + "Label": "99482-309 via Conventional from 99483 -> 13393", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99483, + "TargetID": 13393, + "Directional": true + }] + }, { + "ID": 19078, + "SourceStructureID": 99488, + "TargetStructureID": 1724, + "Label": "99488-1724 via Conventional from 99490 -> 4064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99490, + "TargetID": 4064, + "Directional": true + }] + }, { + "ID": 19079, + "SourceStructureID": 99498, + "TargetStructureID": 6156, + "Label": "99498-6156 via Conventional from 133370 -> 23270", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133370, + "TargetID": 23270, + "Directional": true + }] + }, { + "ID": 19080, + "SourceStructureID": 99501, + "TargetStructureID": 1724, + "Label": "99501-1724 via Conventional from 99502 -> 4068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99502, + "TargetID": 4068, + "Directional": true + }] + }, { + "ID": 19081, + "SourceStructureID": 99504, + "TargetStructureID": 1724, + "Label": "99504-1724 via Conventional from 99505 -> 4072", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99505, + "TargetID": 4072, + "Directional": true + }] + }, { + "ID": 19082, + "SourceStructureID": 99513, + "TargetStructureID": 142, + "Label": "99513-142 via Conventional from 129645 -> 92375", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129645, + "TargetID": 92375, + "Directional": true + }] + }, { + "ID": 19083, + "SourceStructureID": 99513, + "TargetStructureID": 1724, + "Label": "99513-1724 via Conventional from 99514 -> 4050, 101986 -> 101987, 129620 -> 129621", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99514, + "TargetID": 4050, + "Directional": true + }, { + "SourceID": 101986, + "TargetID": 101987, + "Directional": true + }, { + "SourceID": 129620, + "TargetID": 129621, + "Directional": true + }] + }, { + "ID": 19084, + "SourceStructureID": 99513, + "TargetStructureID": 5279, + "Label": "99513-5279 via Conventional from 96393 -> 96394, 129640 -> 98658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 96393, + "TargetID": 96394, + "Directional": true + }, { + "SourceID": 129640, + "TargetID": 98658, + "Directional": true + }] + }, { + "ID": 19085, + "SourceStructureID": 99513, + "TargetStructureID": 6117, + "Label": "99513-6117 via Conventional from 129641 -> 129642", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129641, + "TargetID": 129642, + "Directional": true + }] + }, { + "ID": 19086, + "SourceStructureID": 99513, + "TargetStructureID": 6912, + "Label": "99513-6912 via Conventional from 129622 -> 51139, 129625 -> 48369, 129629 -> 51060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129622, + "TargetID": 51139, + "Directional": true + }, { + "SourceID": 129625, + "TargetID": 48369, + "Directional": true + }, { + "SourceID": 129629, + "TargetID": 51060, + "Directional": true + }] + }, { + "ID": 19087, + "SourceStructureID": 99513, + "TargetStructureID": 28886, + "Label": "99513-28886 via Conventional from 129635 -> 129637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129635, + "TargetID": 129637, + "Directional": true + }] + }, { + "ID": 19088, + "SourceStructureID": 99513, + "TargetStructureID": 37466, + "Label": "99513-37466 via Conventional from 129618 -> 37470", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129618, + "TargetID": 37470, + "Directional": true + }] + }, { + "ID": 19089, + "SourceStructureID": 99513, + "TargetStructureID": 122484, + "Label": "99513-122484 via Conventional from 129633 -> 129634", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129633, + "TargetID": 129634, + "Directional": true + }] + }, { + "ID": 19090, + "SourceStructureID": 99515, + "TargetStructureID": 1724, + "Label": "99515-1724 via Conventional from 99517 -> 4051", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99517, + "TargetID": 4051, + "Directional": true + }] + }, { + "ID": 19091, + "SourceStructureID": 99523, + "TargetStructureID": 485, + "Label": "99523-485 via Conventional from 99524 -> 99521", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99524, + "TargetID": 99521, + "Directional": true + }] + }, { + "ID": 19092, + "SourceStructureID": 99531, + "TargetStructureID": 1724, + "Label": "99531-1724 via Conventional from 99532 -> 4056", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99532, + "TargetID": 4056, + "Directional": true + }] + }, { + "ID": 19093, + "SourceStructureID": 99536, + "TargetStructureID": 1724, + "Label": "99536-1724 via Conventional from 99537 -> 1801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99537, + "TargetID": 1801, + "Directional": true + }] + }, { + "ID": 19094, + "SourceStructureID": 99541, + "TargetStructureID": 1724, + "Label": "99541-1724 via Conventional from 99542 -> 1777", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99542, + "TargetID": 1777, + "Directional": true + }] + }, { + "ID": 19095, + "SourceStructureID": 99546, + "TargetStructureID": 1724, + "Label": "99546-1724 via Conventional from 99568 -> 1786", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99568, + "TargetID": 1786, + "Directional": true + }] + }, { + "ID": 19096, + "SourceStructureID": 99560, + "TargetStructureID": 1724, + "Label": "99560-1724 via Conventional from 99561 -> 1794", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99561, + "TargetID": 1794, + "Directional": true + }] + }, { + "ID": 19097, + "SourceStructureID": 99575, + "TargetStructureID": 1724, + "Label": "99575-1724 via Conventional from 99576 -> 1780, 99580 -> 99581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99576, + "TargetID": 1780, + "Directional": true + }, { + "SourceID": 99580, + "TargetID": 99581, + "Directional": true + }] + }, { + "ID": 19098, + "SourceStructureID": 99577, + "TargetStructureID": 1724, + "Label": "99577-1724 via Conventional from 99578 -> 99579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99578, + "TargetID": 99579, + "Directional": true + }] + }, { + "ID": 19099, + "SourceStructureID": 99586, + "TargetStructureID": 1724, + "Label": "99586-1724 via Conventional from 99587 -> 3976", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99587, + "TargetID": 3976, + "Directional": true + }] + }, { + "ID": 19100, + "SourceStructureID": 99589, + "TargetStructureID": 5278, + "Label": "99589-5278 via Conventional from 99591 -> 99590", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99591, + "TargetID": 99590, + "Directional": true + }] + }, { + "ID": 19101, + "SourceStructureID": 99596, + "TargetStructureID": 5278, + "Label": "99596-5278 via Conventional from 99597 -> 92114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99597, + "TargetID": 92114, + "Directional": true + }] + }, { + "ID": 19102, + "SourceStructureID": 99602, + "TargetStructureID": 5278, + "Label": "99602-5278 via Conventional from 99603 -> 99604", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99603, + "TargetID": 99604, + "Directional": true + }] + }, { + "ID": 19103, + "SourceStructureID": 99614, + "TargetStructureID": 5278, + "Label": "99614-5278 via Conventional from 99615 -> 20074", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99615, + "TargetID": 20074, + "Directional": true + }] + }, { + "ID": 19104, + "SourceStructureID": 99617, + "TargetStructureID": 485, + "Label": "99617-485 via Conventional from 99618 -> 99616", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99618, + "TargetID": 99616, + "Directional": true + }] + }, { + "ID": 19105, + "SourceStructureID": 99617, + "TargetStructureID": 99621, + "Label": "99617-99621 via Conventional from 99620 -> 99622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99620, + "TargetID": 99622, + "Directional": true + }] + }, { + "ID": 19106, + "SourceStructureID": 99628, + "TargetStructureID": 485, + "Label": "99628-485 via Conventional from 99629 -> 99630", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99629, + "TargetID": 99630, + "Directional": true + }] + }, { + "ID": 19107, + "SourceStructureID": 99632, + "TargetStructureID": 408, + "Label": "99632-408 via Conventional from 99634 -> 35773", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99634, + "TargetID": 35773, + "Directional": true + }] + }, { + "ID": 19108, + "SourceStructureID": 99632, + "TargetStructureID": 485, + "Label": "99632-485 via Conventional from 99633 -> 99636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99633, + "TargetID": 99636, + "Directional": true + }] + }, { + "ID": 19109, + "SourceStructureID": 99642, + "TargetStructureID": 485, + "Label": "99642-485 via Conventional from 99643 -> 99637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99643, + "TargetID": 99637, + "Directional": true + }] + }, { + "ID": 19110, + "SourceStructureID": 99644, + "TargetStructureID": 485, + "Label": "99644-485 via Conventional from 99645 -> 99640", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99645, + "TargetID": 99640, + "Directional": true + }] + }, { + "ID": 19111, + "SourceStructureID": 99647, + "TargetStructureID": 485, + "Label": "99647-485 via Conventional from 99649 -> 99638", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99649, + "TargetID": 99638, + "Directional": true + }] + }, { + "ID": 19112, + "SourceStructureID": 99701, + "TargetStructureID": 485, + "Label": "99701-485 via Conventional from 99702 -> 99686", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99702, + "TargetID": 99686, + "Directional": true + }] + }, { + "ID": 19113, + "SourceStructureID": 99703, + "TargetStructureID": 485, + "Label": "99703-485 via Conventional from 99704 -> 99687", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99704, + "TargetID": 99687, + "Directional": true + }] + }, { + "ID": 19114, + "SourceStructureID": 99719, + "TargetStructureID": 485, + "Label": "99719-485 via Conventional from 99720 -> 99689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99720, + "TargetID": 99689, + "Directional": true + }] + }, { + "ID": 19115, + "SourceStructureID": 99722, + "TargetStructureID": 485, + "Label": "99722-485 via Conventional from 99723 -> 99721", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99723, + "TargetID": 99721, + "Directional": true + }] + }, { + "ID": 19116, + "SourceStructureID": 99737, + "TargetStructureID": 485, + "Label": "99737-485 via Conventional from 99738 -> 99736", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99738, + "TargetID": 99736, + "Directional": true + }] + }, { + "ID": 19117, + "SourceStructureID": 99741, + "TargetStructureID": 485, + "Label": "99741-485 via Conventional from 99745 -> 99740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99745, + "TargetID": 99740, + "Directional": true + }] + }, { + "ID": 19118, + "SourceStructureID": 99741, + "TargetStructureID": 99737, + "Label": "99741-99737 via Conventional from 99743 -> 99744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99743, + "TargetID": 99744, + "Directional": true + }] + }, { + "ID": 19119, + "SourceStructureID": 99742, + "TargetStructureID": 5278, + "Label": "99742-5278 via Conventional from 99746 -> 20078", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99746, + "TargetID": 20078, + "Directional": true + }] + }, { + "ID": 19120, + "SourceStructureID": 99753, + "TargetStructureID": 485, + "Label": "99753-485 via Conventional from 99754 -> 99747", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99754, + "TargetID": 99747, + "Directional": true + }] + }, { + "ID": 19121, + "SourceStructureID": 99769, + "TargetStructureID": 5278, + "Label": "99769-5278 via Conventional from 99770 -> 20084", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99770, + "TargetID": 20084, + "Directional": true + }] + }, { + "ID": 19122, + "SourceStructureID": 99771, + "TargetStructureID": 5278, + "Label": "99771-5278 via Conventional from 99772 -> 20083", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99772, + "TargetID": 20083, + "Directional": true + }] + }, { + "ID": 19123, + "SourceStructureID": 99783, + "TargetStructureID": 485, + "Label": "99783-485 via Conventional from 99833 -> 99834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99833, + "TargetID": 99834, + "Directional": true + }] + }, { + "ID": 19124, + "SourceStructureID": 99801, + "TargetStructureID": 5278, + "Label": "99801-5278 via Conventional from 99814 -> 99815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99814, + "TargetID": 99815, + "Directional": true + }] + }, { + "ID": 19125, + "SourceStructureID": 99801, + "TargetStructureID": 5279, + "Label": "99801-5279 via Conventional from 99802 -> 99803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99802, + "TargetID": 99803, + "Directional": true + }] + }, { + "ID": 19126, + "SourceStructureID": 99804, + "TargetStructureID": 5279, + "Label": "99804-5279 via Conventional from 99805 -> 92677", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99805, + "TargetID": 92677, + "Directional": true + }] + }, { + "ID": 19127, + "SourceStructureID": 99816, + "TargetStructureID": 5278, + "Label": "99816-5278 via Conventional from 99817 -> 20159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99817, + "TargetID": 20159, + "Directional": true + }] + }, { + "ID": 19128, + "SourceStructureID": 99818, + "TargetStructureID": 5278, + "Label": "99818-5278 via Conventional from 99819 -> 20156", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99819, + "TargetID": 20156, + "Directional": true + }] + }, { + "ID": 19129, + "SourceStructureID": 99829, + "TargetStructureID": 5278, + "Label": "99829-5278 via Conventional from 99830 -> 20167", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99830, + "TargetID": 20167, + "Directional": true + }] + }, { + "ID": 19130, + "SourceStructureID": 99831, + "TargetStructureID": 5278, + "Label": "99831-5278 via Conventional from 100137 -> 20169", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100137, + "TargetID": 20169, + "Directional": true + }] + }, { + "ID": 19131, + "SourceStructureID": 99835, + "TargetStructureID": 485, + "Label": "99835-485 via Conventional from 99836 -> 99778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99836, + "TargetID": 99778, + "Directional": true + }] + }, { + "ID": 19132, + "SourceStructureID": 99844, + "TargetStructureID": 485, + "Label": "99844-485 via Conventional from 99845 -> 99843, 99846 -> 50684", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99845, + "TargetID": 99843, + "Directional": true + }, { + "SourceID": 99846, + "TargetID": 50684, + "Directional": true + }] + }, { + "ID": 19133, + "SourceStructureID": 99847, + "TargetStructureID": 485, + "Label": "99847-485 via Conventional from 148044 -> 148043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148044, + "TargetID": 148043, + "Directional": true + }] + }, { + "ID": 19134, + "SourceStructureID": 99865, + "TargetStructureID": 485, + "Label": "99865-485 via Conventional from 99867 -> 99868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99867, + "TargetID": 99868, + "Directional": true + }] + }, { + "ID": 19135, + "SourceStructureID": 99870, + "TargetStructureID": 485, + "Label": "99870-485 via Conventional from 99871 -> 99869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99871, + "TargetID": 99869, + "Directional": true + }] + }, { + "ID": 19136, + "SourceStructureID": 99872, + "TargetStructureID": 485, + "Label": "99872-485 via Conventional from 99873 -> 99685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99873, + "TargetID": 99685, + "Directional": true + }] + }, { + "ID": 19137, + "SourceStructureID": 99888, + "TargetStructureID": 485, + "Label": "99888-485 via Conventional from 99889 -> 99890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99889, + "TargetID": 99890, + "Directional": true + }] + }, { + "ID": 19138, + "SourceStructureID": 99891, + "TargetStructureID": 485, + "Label": "99891-485 via Conventional from 99892 -> 99893", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99892, + "TargetID": 99893, + "Directional": true + }] + }, { + "ID": 19139, + "SourceStructureID": 99898, + "TargetStructureID": 99898, + "Label": "99898-99898 via BC Conventional Synapse from 99899 -> 99900", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 99899, + "TargetID": 99900, + "Directional": true + }] + }, { + "ID": 19140, + "SourceStructureID": 99901, + "TargetStructureID": 485, + "Label": "99901-485 via Conventional from 148023 -> 148022", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148023, + "TargetID": 148022, + "Directional": true + }] + }, { + "ID": 19141, + "SourceStructureID": 99922, + "TargetStructureID": 485, + "Label": "99922-485 via Conventional from 99923 -> 99921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99923, + "TargetID": 99921, + "Directional": true + }] + }, { + "ID": 19142, + "SourceStructureID": 99930, + "TargetStructureID": 485, + "Label": "99930-485 via Conventional from 99931 -> 99929", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99931, + "TargetID": 99929, + "Directional": true + }] + }, { + "ID": 19143, + "SourceStructureID": 99941, + "TargetStructureID": 485, + "Label": "99941-485 via Conventional from 99942 -> 99940", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99942, + "TargetID": 99940, + "Directional": true + }] + }, { + "ID": 19144, + "SourceStructureID": 99941, + "TargetStructureID": 46823, + "Label": "99941-46823 via Conventional from 99947 -> 46851", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99947, + "TargetID": 46851, + "Directional": true + }] + }, { + "ID": 19145, + "SourceStructureID": 99948, + "TargetStructureID": 485, + "Label": "99948-485 via Conventional from 99949 -> 99950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99949, + "TargetID": 99950, + "Directional": true + }] + }, { + "ID": 19146, + "SourceStructureID": 99960, + "TargetStructureID": 18576, + "Label": "99960-18576 via Conventional from 99962 -> 99964", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99962, + "TargetID": 99964, + "Directional": true + }] + }, { + "ID": 19147, + "SourceStructureID": 99970, + "TargetStructureID": 485, + "Label": "99970-485 via Conventional from 99971 -> 99969", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99971, + "TargetID": 99969, + "Directional": true + }] + }, { + "ID": 19148, + "SourceStructureID": 99981, + "TargetStructureID": 485, + "Label": "99981-485 via Conventional from 99982 -> 99980", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 99982, + "TargetID": 99980, + "Directional": true + }] + }, { + "ID": 19149, + "SourceStructureID": 99984, + "TargetStructureID": 606, + "Label": "99984-606 via Conventional from 148019 -> 45518", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148019, + "TargetID": 45518, + "Directional": true + }] + }, { + "ID": 19150, + "SourceStructureID": 99995, + "TargetStructureID": 485, + "Label": "99995-485 via Conventional from 134099 -> 134100", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134099, + "TargetID": 134100, + "Directional": true + }] + }, { + "ID": 19151, + "SourceStructureID": 100006, + "TargetStructureID": 485, + "Label": "100006-485 via Conventional from 100008 -> 99904", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100008, + "TargetID": 99904, + "Directional": true + }] + }, { + "ID": 19152, + "SourceStructureID": 100010, + "TargetStructureID": 485, + "Label": "100010-485 via Conventional from 100011 -> 100012", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100011, + "TargetID": 100012, + "Directional": true + }] + }, { + "ID": 19153, + "SourceStructureID": 100014, + "TargetStructureID": 485, + "Label": "100014-485 via Conventional from 100015 -> 29182", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100015, + "TargetID": 29182, + "Directional": true + }] + }, { + "ID": 19154, + "SourceStructureID": 100018, + "TargetStructureID": 485, + "Label": "100018-485 via Conventional from 100019 -> 29183", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100019, + "TargetID": 29183, + "Directional": true + }] + }, { + "ID": 19155, + "SourceStructureID": 100020, + "TargetStructureID": 485, + "Label": "100020-485 via Conventional from 100021 -> 29185", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100021, + "TargetID": 29185, + "Directional": true + }] + }, { + "ID": 19156, + "SourceStructureID": 100027, + "TargetStructureID": 485, + "Label": "100027-485 via Conventional from 100028 -> 100026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100028, + "TargetID": 100026, + "Directional": true + }] + }, { + "ID": 19157, + "SourceStructureID": 100029, + "TargetStructureID": 485, + "Label": "100029-485 via Conventional from 100030 -> 100025", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100030, + "TargetID": 100025, + "Directional": true + }] + }, { + "ID": 19158, + "SourceStructureID": 100035, + "TargetStructureID": 485, + "Label": "100035-485 via Conventional from 100036 -> 100031, 100037 -> 29188", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100036, + "TargetID": 100031, + "Directional": true + }, { + "SourceID": 100037, + "TargetID": 29188, + "Directional": true + }] + }, { + "ID": 19159, + "SourceStructureID": 100038, + "TargetStructureID": 485, + "Label": "100038-485 via Conventional from 100039 -> 29187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100039, + "TargetID": 29187, + "Directional": true + }] + }, { + "ID": 19160, + "SourceStructureID": 100055, + "TargetStructureID": 485, + "Label": "100055-485 via Conventional from 100056 -> 100054", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100056, + "TargetID": 100054, + "Directional": true + }] + }, { + "ID": 19161, + "SourceStructureID": 100067, + "TargetStructureID": 485, + "Label": "100067-485 via Conventional from 148033 -> 148032", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148033, + "TargetID": 148032, + "Directional": true + }] + }, { + "ID": 19162, + "SourceStructureID": 100075, + "TargetStructureID": 309, + "Label": "100075-309 via Conventional from 100079 -> 13370", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100079, + "TargetID": 13370, + "Directional": true + }] + }, { + "ID": 19163, + "SourceStructureID": 100075, + "TargetStructureID": 485, + "Label": "100075-485 via Conventional from 100080 -> 29191", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100080, + "TargetID": 29191, + "Directional": true + }] + }, { + "ID": 19164, + "SourceStructureID": 100076, + "TargetStructureID": 330, + "Label": "100076-330 via Conventional from 100078 -> 25916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100078, + "TargetID": 25916, + "Directional": true + }] + }, { + "ID": 19165, + "SourceStructureID": 100076, + "TargetStructureID": 45629, + "Label": "100076-45629 via Conventional from 100077 -> 45635", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100077, + "TargetID": 45635, + "Directional": true + }] + }, { + "ID": 19166, + "SourceStructureID": 100084, + "TargetStructureID": 485, + "Label": "100084-485 via Conventional from 100085 -> 100086", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100085, + "TargetID": 100086, + "Directional": true + }] + }, { + "ID": 19167, + "SourceStructureID": 100092, + "TargetStructureID": 485, + "Label": "100092-485 via Conventional from 100093 -> 100091", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100093, + "TargetID": 100091, + "Directional": true + }] + }, { + "ID": 19168, + "SourceStructureID": 100102, + "TargetStructureID": 485, + "Label": "100102-485 via Conventional from 100103 -> 100101", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100103, + "TargetID": 100101, + "Directional": true + }] + }, { + "ID": 19169, + "SourceStructureID": 100108, + "TargetStructureID": 485, + "Label": "100108-485 via Conventional from 100109 -> 51029", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100109, + "TargetID": 51029, + "Directional": true + }] + }, { + "ID": 19170, + "SourceStructureID": 100110, + "TargetStructureID": 5278, + "Label": "100110-5278 via Conventional from 100120 -> 20175", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100120, + "TargetID": 20175, + "Directional": true + }] + }, { + "ID": 19171, + "SourceStructureID": 100113, + "TargetStructureID": 485, + "Label": "100113-485 via Conventional from 100114 -> 51070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100114, + "TargetID": 51070, + "Directional": true + }] + }, { + "ID": 19172, + "SourceStructureID": 100135, + "TargetStructureID": 485, + "Label": "100135-485 via Conventional from 100136 -> 100138", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100136, + "TargetID": 100138, + "Directional": true + }] + }, { + "ID": 19173, + "SourceStructureID": 100146, + "TargetStructureID": 485, + "Label": "100146-485 via Conventional from 100150 -> 50922", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100150, + "TargetID": 50922, + "Directional": true + }] + }, { + "ID": 19174, + "SourceStructureID": 100147, + "TargetStructureID": 485, + "Label": "100147-485 via Conventional from 100148 -> 50921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100148, + "TargetID": 50921, + "Directional": true + }] + }, { + "ID": 19175, + "SourceStructureID": 100152, + "TargetStructureID": 5278, + "Label": "100152-5278 via Conventional from 100155 -> 20166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100155, + "TargetID": 20166, + "Directional": true + }] + }, { + "ID": 19176, + "SourceStructureID": 100153, + "TargetStructureID": 485, + "Label": "100153-485 via Conventional from 100154 -> 51072", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100154, + "TargetID": 51072, + "Directional": true + }] + }, { + "ID": 19177, + "SourceStructureID": 100173, + "TargetStructureID": 485, + "Label": "100173-485 via Conventional from 100185 -> 50691", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100185, + "TargetID": 50691, + "Directional": true + }] + }, { + "ID": 19178, + "SourceStructureID": 100176, + "TargetStructureID": 485, + "Label": "100176-485 via Conventional from 100177 -> 50852, 100178 -> 50692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100177, + "TargetID": 50852, + "Directional": true + }, { + "SourceID": 100178, + "TargetID": 50692, + "Directional": true + }] + }, { + "ID": 19179, + "SourceStructureID": 100180, + "TargetStructureID": 485, + "Label": "100180-485 via Conventional from 100181 -> 50688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100181, + "TargetID": 50688, + "Directional": true + }] + }, { + "ID": 19180, + "SourceStructureID": 100182, + "TargetStructureID": 42423, + "Label": "100182-42423 via Conventional from 100183 -> 42430", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100183, + "TargetID": 42430, + "Directional": true + }] + }, { + "ID": 19181, + "SourceStructureID": 100187, + "TargetStructureID": 485, + "Label": "100187-485 via Conventional from 100188 -> 100190", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100188, + "TargetID": 100190, + "Directional": true + }] + }, { + "ID": 19182, + "SourceStructureID": 100189, + "TargetStructureID": 42423, + "Label": "100189-42423 via Ribbon Synapse from 100191 -> 100184", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 100191, + "TargetID": 100184, + "Directional": true + }] + }, { + "ID": 19183, + "SourceStructureID": 100217, + "TargetStructureID": 485, + "Label": "100217-485 via Conventional from 100219 -> 100220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100219, + "TargetID": 100220, + "Directional": true + }] + }, { + "ID": 19184, + "SourceStructureID": 100239, + "TargetStructureID": 1724, + "Label": "100239-1724 via Conventional from 100240 -> 100241", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100240, + "TargetID": 100241, + "Directional": true + }] + }, { + "ID": 19185, + "SourceStructureID": 100254, + "TargetStructureID": 1724, + "Label": "100254-1724 via Conventional from 100255 -> 43310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100255, + "TargetID": 43310, + "Directional": true + }] + }, { + "ID": 19186, + "SourceStructureID": 100256, + "TargetStructureID": 1724, + "Label": "100256-1724 via Conventional from 100259 -> 47395", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100259, + "TargetID": 47395, + "Directional": true + }] + }, { + "ID": 19187, + "SourceStructureID": 100264, + "TargetStructureID": 485, + "Label": "100264-485 via Conventional from 100265 -> 100224, 100267 -> 100268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100265, + "TargetID": 100224, + "Directional": true + }, { + "SourceID": 100267, + "TargetID": 100268, + "Directional": true + }] + }, { + "ID": 19188, + "SourceStructureID": 100266, + "TargetStructureID": 1724, + "Label": "100266-1724 via Conventional from 100269 -> 100270", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100269, + "TargetID": 100270, + "Directional": true + }] + }, { + "ID": 19189, + "SourceStructureID": 100275, + "TargetStructureID": 1724, + "Label": "100275-1724 via Conventional from 100276 -> 43313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100276, + "TargetID": 43313, + "Directional": true + }] + }, { + "ID": 19190, + "SourceStructureID": 100278, + "TargetStructureID": 1724, + "Label": "100278-1724 via Conventional from 100285 -> 100286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100285, + "TargetID": 100286, + "Directional": true + }] + }, { + "ID": 19191, + "SourceStructureID": 100282, + "TargetStructureID": 485, + "Label": "100282-485 via Conventional from 100283 -> 100281", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100283, + "TargetID": 100281, + "Directional": true + }] + }, { + "ID": 19192, + "SourceStructureID": 100296, + "TargetStructureID": 485, + "Label": "100296-485 via Conventional from 100297 -> 100298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100297, + "TargetID": 100298, + "Directional": true + }] + }, { + "ID": 19193, + "SourceStructureID": 100302, + "TargetStructureID": 485, + "Label": "100302-485 via Conventional from 100303 -> 100301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100303, + "TargetID": 100301, + "Directional": true + }] + }, { + "ID": 19194, + "SourceStructureID": 100304, + "TargetStructureID": 485, + "Label": "100304-485 via Conventional from 100306 -> 100307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100306, + "TargetID": 100307, + "Directional": true + }] + }, { + "ID": 19195, + "SourceStructureID": 100308, + "TargetStructureID": 485, + "Label": "100308-485 via Conventional from 100309 -> 47650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100309, + "TargetID": 47650, + "Directional": true + }] + }, { + "ID": 19196, + "SourceStructureID": 100310, + "TargetStructureID": 1724, + "Label": "100310-1724 via Conventional from 100319 -> 100320", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100319, + "TargetID": 100320, + "Directional": true + }] + }, { + "ID": 19197, + "SourceStructureID": 100322, + "TargetStructureID": 485, + "Label": "100322-485 via Conventional from 100326 -> 51155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100326, + "TargetID": 51155, + "Directional": true + }] + }, { + "ID": 19198, + "SourceStructureID": 100332, + "TargetStructureID": 485, + "Label": "100332-485 via Conventional from 100334 -> 100331", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100334, + "TargetID": 100331, + "Directional": true + }] + }, { + "ID": 19199, + "SourceStructureID": 100335, + "TargetStructureID": 1724, + "Label": "100335-1724 via Conventional from 100336 -> 47366", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100336, + "TargetID": 47366, + "Directional": true + }] + }, { + "ID": 19200, + "SourceStructureID": 100353, + "TargetStructureID": 1724, + "Label": "100353-1724 via Conventional from 100354 -> 3932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100354, + "TargetID": 3932, + "Directional": true + }] + }, { + "ID": 19201, + "SourceStructureID": 100357, + "TargetStructureID": 485, + "Label": "100357-485 via Conventional from 100358 -> 100359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100358, + "TargetID": 100359, + "Directional": true + }] + }, { + "ID": 19202, + "SourceStructureID": 100366, + "TargetStructureID": 1724, + "Label": "100366-1724 via Conventional from 100375 -> 100376", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100375, + "TargetID": 100376, + "Directional": true + }] + }, { + "ID": 19203, + "SourceStructureID": 100371, + "TargetStructureID": 485, + "Label": "100371-485 via Conventional from 100373 -> 100367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100373, + "TargetID": 100367, + "Directional": true + }] + }, { + "ID": 19204, + "SourceStructureID": 100374, + "TargetStructureID": 5278, + "Label": "100374-5278 via Conventional from 100377 -> 100378", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100377, + "TargetID": 100378, + "Directional": true + }] + }, { + "ID": 19205, + "SourceStructureID": 100379, + "TargetStructureID": 1724, + "Label": "100379-1724 via Conventional from 100383 -> 47368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100383, + "TargetID": 47368, + "Directional": true + }] + }, { + "ID": 19206, + "SourceStructureID": 100400, + "TargetStructureID": 5278, + "Label": "100400-5278 via Conventional from 100403 -> 8979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100403, + "TargetID": 8979, + "Directional": true + }] + }, { + "ID": 19207, + "SourceStructureID": 100401, + "TargetStructureID": 485, + "Label": "100401-485 via Conventional from 100402 -> 51050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100402, + "TargetID": 51050, + "Directional": true + }] + }, { + "ID": 19208, + "SourceStructureID": 100413, + "TargetStructureID": 1724, + "Label": "100413-1724 via Conventional from 100415 -> 4025", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100415, + "TargetID": 4025, + "Directional": true + }] + }, { + "ID": 19209, + "SourceStructureID": 100414, + "TargetStructureID": 5278, + "Label": "100414-5278 via Conventional from 100434 -> 8978", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100434, + "TargetID": 8978, + "Directional": true + }] + }, { + "ID": 19210, + "SourceStructureID": 100419, + "TargetStructureID": 1724, + "Label": "100419-1724 via Conventional from 100420 -> 100421", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100420, + "TargetID": 100421, + "Directional": true + }] + }, { + "ID": 19211, + "SourceStructureID": 100426, + "TargetStructureID": 485, + "Label": "100426-485 via Conventional from 100431 -> 51154", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100431, + "TargetID": 51154, + "Directional": true + }] + }, { + "ID": 19212, + "SourceStructureID": 100445, + "TargetStructureID": 5278, + "Label": "100445-5278 via Conventional from 100446 -> 100447", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100446, + "TargetID": 100447, + "Directional": true + }] + }, { + "ID": 19213, + "SourceStructureID": 100448, + "TargetStructureID": 485, + "Label": "100448-485 via Conventional from 100449 -> 51151", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100449, + "TargetID": 51151, + "Directional": true + }] + }, { + "ID": 19214, + "SourceStructureID": 100450, + "TargetStructureID": 5278, + "Label": "100450-5278 via Conventional from 100457 -> 100458", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100457, + "TargetID": 100458, + "Directional": true + }] + }, { + "ID": 19215, + "SourceStructureID": 100467, + "TargetStructureID": 18576, + "Label": "100467-18576 via Conventional from 100468 -> 100466", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100468, + "TargetID": 100466, + "Directional": true + }] + }, { + "ID": 19216, + "SourceStructureID": 100479, + "TargetStructureID": 485, + "Label": "100479-485 via Conventional from 100480 -> 100478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100480, + "TargetID": 100478, + "Directional": true + }] + }, { + "ID": 19217, + "SourceStructureID": 100498, + "TargetStructureID": 485, + "Label": "100498-485 via Conventional from 100505 -> 100507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100505, + "TargetID": 100507, + "Directional": true + }] + }, { + "ID": 19218, + "SourceStructureID": 100503, + "TargetStructureID": 5278, + "Label": "100503-5278 via Conventional from 100504 -> 92148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100504, + "TargetID": 92148, + "Directional": true + }] + }, { + "ID": 19219, + "SourceStructureID": 100512, + "TargetStructureID": 485, + "Label": "100512-485 via Conventional from 100513 -> 100506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100513, + "TargetID": 100506, + "Directional": true + }] + }, { + "ID": 19220, + "SourceStructureID": 100516, + "TargetStructureID": 1724, + "Label": "100516-1724 via Conventional from 100517 -> 4019", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100517, + "TargetID": 4019, + "Directional": true + }] + }, { + "ID": 19221, + "SourceStructureID": 100524, + "TargetStructureID": 5278, + "Label": "100524-5278 via Conventional from 100525 -> 100526", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100525, + "TargetID": 100526, + "Directional": true + }] + }, { + "ID": 19222, + "SourceStructureID": 100541, + "TargetStructureID": 485, + "Label": "100541-485 via Conventional from 100542 -> 100535", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100542, + "TargetID": 100535, + "Directional": true + }] + }, { + "ID": 19223, + "SourceStructureID": 100546, + "TargetStructureID": 1724, + "Label": "100546-1724 via Conventional from 100549 -> 3978", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100549, + "TargetID": 3978, + "Directional": true + }] + }, { + "ID": 19224, + "SourceStructureID": 100548, + "TargetStructureID": 5278, + "Label": "100548-5278 via Conventional from 100756 -> 100757", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100756, + "TargetID": 100757, + "Directional": true + }] + }, { + "ID": 19225, + "SourceStructureID": 100557, + "TargetStructureID": 1724, + "Label": "100557-1724 via Conventional from 100558 -> 3980", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100558, + "TargetID": 3980, + "Directional": true + }] + }, { + "ID": 19226, + "SourceStructureID": 100564, + "TargetStructureID": 1724, + "Label": "100564-1724 via Conventional from 100571 -> 3936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100571, + "TargetID": 3936, + "Directional": true + }] + }, { + "ID": 19227, + "SourceStructureID": 100572, + "TargetStructureID": 1724, + "Label": "100572-1724 via Conventional from 100583 -> 100584", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100583, + "TargetID": 100584, + "Directional": true + }] + }, { + "ID": 19228, + "SourceStructureID": 100578, + "TargetStructureID": 485, + "Label": "100578-485 via Conventional from 100579 -> 100532", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100579, + "TargetID": 100532, + "Directional": true + }] + }, { + "ID": 19229, + "SourceStructureID": 100588, + "TargetStructureID": 100588, + "Label": "100588-100588 via Conventional from 148050 -> 100589", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148050, + "TargetID": 100589, + "Directional": true + }] + }, { + "ID": 19230, + "SourceStructureID": 100593, + "TargetStructureID": 1724, + "Label": "100593-1724 via Conventional from 100598 -> 3942", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100598, + "TargetID": 3942, + "Directional": true + }] + }, { + "ID": 19231, + "SourceStructureID": 100596, + "TargetStructureID": 485, + "Label": "100596-485 via Conventional from 100597 -> 100595", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100597, + "TargetID": 100595, + "Directional": true + }] + }, { + "ID": 19232, + "SourceStructureID": 100644, + "TargetStructureID": 485, + "Label": "100644-485 via Conventional from 100645 -> 100643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100645, + "TargetID": 100643, + "Directional": true + }] + }, { + "ID": 19233, + "SourceStructureID": 100648, + "TargetStructureID": 485, + "Label": "100648-485 via Conventional from 100649 -> 100650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100649, + "TargetID": 100650, + "Directional": true + }] + }, { + "ID": 19234, + "SourceStructureID": 100651, + "TargetStructureID": 1724, + "Label": "100651-1724 via Conventional from 100660 -> 3950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100660, + "TargetID": 3950, + "Directional": true + }] + }, { + "ID": 19235, + "SourceStructureID": 100654, + "TargetStructureID": 485, + "Label": "100654-485 via Conventional from 100656 -> 100670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100656, + "TargetID": 100670, + "Directional": true + }] + }, { + "ID": 19236, + "SourceStructureID": 100664, + "TargetStructureID": 1724, + "Label": "100664-1724 via Conventional from 100665 -> 100666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100665, + "TargetID": 100666, + "Directional": true + }] + }, { + "ID": 19237, + "SourceStructureID": 100667, + "TargetStructureID": 1724, + "Label": "100667-1724 via Conventional from 100668 -> 3953", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100668, + "TargetID": 3953, + "Directional": true + }] + }, { + "ID": 19238, + "SourceStructureID": 100669, + "TargetStructureID": 1724, + "Label": "100669-1724 via Conventional from 100673 -> 3945", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100673, + "TargetID": 3945, + "Directional": true + }] + }, { + "ID": 19239, + "SourceStructureID": 100674, + "TargetStructureID": 1724, + "Label": "100674-1724 via Conventional from 100675 -> 100676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100675, + "TargetID": 100676, + "Directional": true + }] + }, { + "ID": 19240, + "SourceStructureID": 100677, + "TargetStructureID": 485, + "Label": "100677-485 via Conventional from 100678 -> 100652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100678, + "TargetID": 100652, + "Directional": true + }] + }, { + "ID": 19241, + "SourceStructureID": 100692, + "TargetStructureID": 1724, + "Label": "100692-1724 via Conventional from 100694 -> 100696", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100694, + "TargetID": 100696, + "Directional": true + }] + }, { + "ID": 19242, + "SourceStructureID": 100706, + "TargetStructureID": 485, + "Label": "100706-485 via Conventional from 100707 -> 51089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100707, + "TargetID": 51089, + "Directional": true + }] + }, { + "ID": 19243, + "SourceStructureID": 100709, + "TargetStructureID": 485, + "Label": "100709-485 via Conventional from 100710 -> 100708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100710, + "TargetID": 100708, + "Directional": true + }] + }, { + "ID": 19244, + "SourceStructureID": 100713, + "TargetStructureID": 485, + "Label": "100713-485 via Conventional from 100714 -> 51087", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100714, + "TargetID": 51087, + "Directional": true + }] + }, { + "ID": 19245, + "SourceStructureID": 100729, + "TargetStructureID": 485, + "Label": "100729-485 via Conventional from 100730 -> 100728", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100730, + "TargetID": 100728, + "Directional": true + }] + }, { + "ID": 19246, + "SourceStructureID": 100733, + "TargetStructureID": 100737, + "Label": "100733-100737 via Conventional from 100736 -> 100738", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100736, + "TargetID": 100738, + "Directional": true + }] + }, { + "ID": 19247, + "SourceStructureID": 100741, + "TargetStructureID": 485, + "Label": "100741-485 via Conventional from 100742 -> 47524", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100742, + "TargetID": 47524, + "Directional": true + }] + }, { + "ID": 19248, + "SourceStructureID": 100741, + "TargetStructureID": 24401, + "Label": "100741-24401 via Conventional from 100743 -> 34747", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100743, + "TargetID": 34747, + "Directional": true + }] + }, { + "ID": 19249, + "SourceStructureID": 100744, + "TargetStructureID": 485, + "Label": "100744-485 via Conventional from 100755 -> 47527", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100755, + "TargetID": 47527, + "Directional": true + }] + }, { + "ID": 19250, + "SourceStructureID": 100745, + "TargetStructureID": 485, + "Label": "100745-485 via Conventional from 100760 -> 47526", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100760, + "TargetID": 47526, + "Directional": true + }] + }, { + "ID": 19251, + "SourceStructureID": 100763, + "TargetStructureID": 5278, + "Label": "100763-5278 via Conventional from 147291 -> 147292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147291, + "TargetID": 147292, + "Directional": true + }] + }, { + "ID": 19252, + "SourceStructureID": 100765, + "TargetStructureID": 3116, + "Label": "100765-3116 via Conventional from 100766 -> 28000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100766, + "TargetID": 28000, + "Directional": true + }] + }, { + "ID": 19253, + "SourceStructureID": 100771, + "TargetStructureID": 485, + "Label": "100771-485 via Conventional from 100772 -> 100770", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100772, + "TargetID": 100770, + "Directional": true + }] + }, { + "ID": 19254, + "SourceStructureID": 100771, + "TargetStructureID": 100787, + "Label": "100771-100787 via Conventional from 100784 -> 100789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100784, + "TargetID": 100789, + "Directional": true + }] + }, { + "ID": 19255, + "SourceStructureID": 100775, + "TargetStructureID": 5278, + "Label": "100775-5278 via Conventional from 147294 -> 147293", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147294, + "TargetID": 147293, + "Directional": true + }] + }, { + "ID": 19256, + "SourceStructureID": 100780, + "TargetStructureID": 5279, + "Label": "100780-5279 via Conventional from 100783 -> 49214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100783, + "TargetID": 49214, + "Directional": true + }] + }, { + "ID": 19257, + "SourceStructureID": 100808, + "TargetStructureID": 4568, + "Label": "100808-4568 via Conventional from 100809 -> 11579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100809, + "TargetID": 11579, + "Directional": true + }] + }, { + "ID": 19258, + "SourceStructureID": 100816, + "TargetStructureID": 5278, + "Label": "100816-5278 via Conventional from 147302 -> 147301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147302, + "TargetID": 147301, + "Directional": true + }] + }, { + "ID": 19259, + "SourceStructureID": 100819, + "TargetStructureID": 485, + "Label": "100819-485 via Conventional from 100821 -> 47620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100821, + "TargetID": 47620, + "Directional": true + }] + }, { + "ID": 19260, + "SourceStructureID": 100820, + "TargetStructureID": 485, + "Label": "100820-485 via Conventional from 100823 -> 47619", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100823, + "TargetID": 47619, + "Directional": true + }] + }, { + "ID": 19261, + "SourceStructureID": 100826, + "TargetStructureID": 485, + "Label": "100826-485 via Conventional from 100827 -> 100833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100827, + "TargetID": 100833, + "Directional": true + }] + }, { + "ID": 19262, + "SourceStructureID": 100828, + "TargetStructureID": 5278, + "Label": "100828-5278 via Conventional from 103961 -> 103962", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103961, + "TargetID": 103962, + "Directional": true + }] + }, { + "ID": 19263, + "SourceStructureID": 100834, + "TargetStructureID": 142, + "Label": "100834-142 via Conventional from 126139 -> 126138", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126139, + "TargetID": 126138, + "Directional": true + }] + }, { + "ID": 19264, + "SourceStructureID": 100835, + "TargetStructureID": 485, + "Label": "100835-485 via Conventional from 100836 -> 47627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100836, + "TargetID": 47627, + "Directional": true + }] + }, { + "ID": 19265, + "SourceStructureID": 100837, + "TargetStructureID": 485, + "Label": "100837-485 via Conventional from 100838 -> 47624, 100869 -> 100855", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100838, + "TargetID": 47624, + "Directional": true + }, { + "SourceID": 100869, + "TargetID": 100855, + "Directional": true + }] + }, { + "ID": 19266, + "SourceStructureID": 100846, + "TargetStructureID": 1724, + "Label": "100846-1724 via Conventional from 100849 -> 20184", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100849, + "TargetID": 20184, + "Directional": true + }] + }, { + "ID": 19267, + "SourceStructureID": 100850, + "TargetStructureID": 485, + "Label": "100850-485 via Conventional from 100854 -> 100848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100854, + "TargetID": 100848, + "Directional": true + }] + }, { + "ID": 19268, + "SourceStructureID": 100852, + "TargetStructureID": 1724, + "Label": "100852-1724 via Conventional from 100863 -> 100864", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100863, + "TargetID": 100864, + "Directional": true + }] + }, { + "ID": 19269, + "SourceStructureID": 100853, + "TargetStructureID": 1724, + "Label": "100853-1724 via Conventional from 100858 -> 100859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100858, + "TargetID": 100859, + "Directional": true + }] + }, { + "ID": 19270, + "SourceStructureID": 100865, + "TargetStructureID": 1724, + "Label": "100865-1724 via Conventional from 100866 -> 100867", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100866, + "TargetID": 100867, + "Directional": true + }] + }, { + "ID": 19271, + "SourceStructureID": 100871, + "TargetStructureID": 1724, + "Label": "100871-1724 via Conventional from 100872 -> 20188", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100872, + "TargetID": 20188, + "Directional": true + }] + }, { + "ID": 19272, + "SourceStructureID": 100874, + "TargetStructureID": 1724, + "Label": "100874-1724 via Conventional from 100875 -> 100876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100875, + "TargetID": 100876, + "Directional": true + }] + }, { + "ID": 19273, + "SourceStructureID": 100882, + "TargetStructureID": 1724, + "Label": "100882-1724 via Conventional from 100886 -> 20190", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100886, + "TargetID": 20190, + "Directional": true + }] + }, { + "ID": 19274, + "SourceStructureID": 100888, + "TargetStructureID": 1724, + "Label": "100888-1724 via Conventional from 100889 -> 100890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100889, + "TargetID": 100890, + "Directional": true + }] + }, { + "ID": 19275, + "SourceStructureID": 100895, + "TargetStructureID": 485, + "Label": "100895-485 via Conventional from 100904 -> 100905", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100904, + "TargetID": 100905, + "Directional": true + }] + }, { + "ID": 19276, + "SourceStructureID": 100896, + "TargetStructureID": 1724, + "Label": "100896-1724 via Conventional from 100897 -> 100898", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100897, + "TargetID": 100898, + "Directional": true + }] + }, { + "ID": 19277, + "SourceStructureID": 100913, + "TargetStructureID": 485, + "Label": "100913-485 via Conventional from 100914 -> 100912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100914, + "TargetID": 100912, + "Directional": true + }] + }, { + "ID": 19278, + "SourceStructureID": 100931, + "TargetStructureID": 485, + "Label": "100931-485 via Conventional from 100932 -> 100930", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100932, + "TargetID": 100930, + "Directional": true + }] + }, { + "ID": 19279, + "SourceStructureID": 100934, + "TargetStructureID": 485, + "Label": "100934-485 via Conventional from 100935 -> 100933", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100935, + "TargetID": 100933, + "Directional": true + }] + }, { + "ID": 19280, + "SourceStructureID": 100953, + "TargetStructureID": 485, + "Label": "100953-485 via Conventional from 100958 -> 100951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100958, + "TargetID": 100951, + "Directional": true + }] + }, { + "ID": 19281, + "SourceStructureID": 100953, + "TargetStructureID": 101015, + "Label": "100953-101015 via Conventional from 101019 -> 101018", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101019, + "TargetID": 101018, + "Directional": true + }] + }, { + "ID": 19282, + "SourceStructureID": 100972, + "TargetStructureID": 485, + "Label": "100972-485 via Conventional from 100973 -> 100970", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100973, + "TargetID": 100970, + "Directional": true + }] + }, { + "ID": 19283, + "SourceStructureID": 100972, + "TargetStructureID": 100913, + "Label": "100972-100913 via Conventional from 100974 -> 100916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100974, + "TargetID": 100916, + "Directional": true + }] + }, { + "ID": 19284, + "SourceStructureID": 100981, + "TargetStructureID": 485, + "Label": "100981-485 via Conventional from 100982 -> 100983", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 100982, + "TargetID": 100983, + "Directional": true + }] + }, { + "ID": 19285, + "SourceStructureID": 101000, + "TargetStructureID": 485, + "Label": "101000-485 via Conventional from 101001 -> 101002", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101001, + "TargetID": 101002, + "Directional": true + }] + }, { + "ID": 19286, + "SourceStructureID": 101004, + "TargetStructureID": 485, + "Label": "101004-485 via Conventional from 101005 -> 101003", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101005, + "TargetID": 101003, + "Directional": true + }] + }, { + "ID": 19287, + "SourceStructureID": 101015, + "TargetStructureID": 485, + "Label": "101015-485 via Conventional from 101016 -> 101014", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101016, + "TargetID": 101014, + "Directional": true + }] + }, { + "ID": 19288, + "SourceStructureID": 101034, + "TargetStructureID": 485, + "Label": "101034-485 via Conventional from 101035 -> 101036", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101035, + "TargetID": 101036, + "Directional": true + }] + }, { + "ID": 19289, + "SourceStructureID": 101041, + "TargetStructureID": 485, + "Label": "101041-485 via Conventional from 101044 -> 101037", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101044, + "TargetID": 101037, + "Directional": true + }] + }, { + "ID": 19290, + "SourceStructureID": 101045, + "TargetStructureID": 485, + "Label": "101045-485 via Conventional from 101046 -> 101038", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101046, + "TargetID": 101038, + "Directional": true + }] + }, { + "ID": 19291, + "SourceStructureID": 101050, + "TargetStructureID": 485, + "Label": "101050-485 via Conventional from 101051 -> 101049, 101056 -> 101057", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101051, + "TargetID": 101049, + "Directional": true + }, { + "SourceID": 101056, + "TargetID": 101057, + "Directional": true + }] + }, { + "ID": 19292, + "SourceStructureID": 101075, + "TargetStructureID": 485, + "Label": "101075-485 via Conventional from 101076 -> 101077", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101076, + "TargetID": 101077, + "Directional": true + }] + }, { + "ID": 19293, + "SourceStructureID": 101085, + "TargetStructureID": 485, + "Label": "101085-485 via Conventional from 101086 -> 101084", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101086, + "TargetID": 101084, + "Directional": true + }] + }, { + "ID": 19294, + "SourceStructureID": 101090, + "TargetStructureID": 485, + "Label": "101090-485 via Conventional from 101091 -> 50886", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101091, + "TargetID": 50886, + "Directional": true + }] + }, { + "ID": 19295, + "SourceStructureID": 101099, + "TargetStructureID": 485, + "Label": "101099-485 via Conventional from 101100 -> 101098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101100, + "TargetID": 101098, + "Directional": true + }] + }, { + "ID": 19296, + "SourceStructureID": 101108, + "TargetStructureID": 485, + "Label": "101108-485 via Conventional from 101109 -> 101110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101109, + "TargetID": 101110, + "Directional": true + }] + }, { + "ID": 19297, + "SourceStructureID": 101115, + "TargetStructureID": 485, + "Label": "101115-485 via Conventional from 101116 -> 35123", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101116, + "TargetID": 35123, + "Directional": true + }] + }, { + "ID": 19298, + "SourceStructureID": 101117, + "TargetStructureID": 485, + "Label": "101117-485 via Conventional from 101118 -> 35125", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101118, + "TargetID": 35125, + "Directional": true + }] + }, { + "ID": 19299, + "SourceStructureID": 101124, + "TargetStructureID": 485, + "Label": "101124-485 via Conventional from 101125 -> 101123", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101125, + "TargetID": 101123, + "Directional": true + }] + }, { + "ID": 19300, + "SourceStructureID": 101129, + "TargetStructureID": 485, + "Label": "101129-485 via Conventional from 101131 -> 47542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101131, + "TargetID": 47542, + "Directional": true + }] + }, { + "ID": 19301, + "SourceStructureID": 101142, + "TargetStructureID": 485, + "Label": "101142-485 via Conventional from 101143 -> 101141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101143, + "TargetID": 101141, + "Directional": true + }] + }, { + "ID": 19302, + "SourceStructureID": 101161, + "TargetStructureID": 485, + "Label": "101161-485 via Conventional from 101167 -> 101160", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101167, + "TargetID": 101160, + "Directional": true + }] + }, { + "ID": 19303, + "SourceStructureID": 101187, + "TargetStructureID": 483, + "Label": "101187-483 via Conventional from 101188 -> 92325", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101188, + "TargetID": 92325, + "Directional": true + }] + }, { + "ID": 19304, + "SourceStructureID": 101190, + "TargetStructureID": 485, + "Label": "101190-485 via Conventional from 101192 -> 101193", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101192, + "TargetID": 101193, + "Directional": true + }] + }, { + "ID": 19305, + "SourceStructureID": 101194, + "TargetStructureID": 485, + "Label": "101194-485 via Conventional from 101196 -> 101198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101196, + "TargetID": 101198, + "Directional": true + }] + }, { + "ID": 19306, + "SourceStructureID": 101201, + "TargetStructureID": 485, + "Label": "101201-485 via Conventional from 101202 -> 101203", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101202, + "TargetID": 101203, + "Directional": true + }] + }, { + "ID": 19307, + "SourceStructureID": 101213, + "TargetStructureID": 485, + "Label": "101213-485 via Conventional from 101214 -> 101215", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101214, + "TargetID": 101215, + "Directional": true + }] + }, { + "ID": 19308, + "SourceStructureID": 101218, + "TargetStructureID": 485, + "Label": "101218-485 via Conventional from 101219 -> 101217", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101219, + "TargetID": 101217, + "Directional": true + }] + }, { + "ID": 19309, + "SourceStructureID": 101230, + "TargetStructureID": 485, + "Label": "101230-485 via Conventional from 101231 -> 101232", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101231, + "TargetID": 101232, + "Directional": true + }] + }, { + "ID": 19310, + "SourceStructureID": 101234, + "TargetStructureID": 419, + "Label": "101234-419 via Conventional from 133538 -> 133537", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133538, + "TargetID": 133537, + "Directional": true + }] + }, { + "ID": 19311, + "SourceStructureID": 101234, + "TargetStructureID": 485, + "Label": "101234-485 via Conventional from 101235 -> 101233", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101235, + "TargetID": 101233, + "Directional": true + }] + }, { + "ID": 19312, + "SourceStructureID": 101238, + "TargetStructureID": 101220, + "Label": "101238-101220 via Conventional from 101240 -> 101241", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101240, + "TargetID": 101241, + "Directional": true + }] + }, { + "ID": 19313, + "SourceStructureID": 101243, + "TargetStructureID": 485, + "Label": "101243-485 via Conventional from 101244 -> 101242", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101244, + "TargetID": 101242, + "Directional": true + }] + }, { + "ID": 19314, + "SourceStructureID": 101247, + "TargetStructureID": 5563, + "Label": "101247-5563 via Conventional from 101293 -> 101297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101293, + "TargetID": 101297, + "Directional": true + }] + }, { + "ID": 19315, + "SourceStructureID": 101247, + "TargetStructureID": 5563, + "Label": "101247-5563 via Unknown from 101300 -> 101301", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 101300, + "TargetID": 101301, + "Directional": true + }] + }, { + "ID": 19316, + "SourceStructureID": 101249, + "TargetStructureID": 485, + "Label": "101249-485 via Conventional from 101250 -> 101251", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101250, + "TargetID": 101251, + "Directional": true + }] + }, { + "ID": 19317, + "SourceStructureID": 101257, + "TargetStructureID": 485, + "Label": "101257-485 via Conventional from 101260 -> 101256", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101260, + "TargetID": 101256, + "Directional": true + }] + }, { + "ID": 19318, + "SourceStructureID": 101257, + "TargetStructureID": 101261, + "Label": "101257-101261 via Conventional from 101258 -> 101264", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101258, + "TargetID": 101264, + "Directional": true + }] + }, { + "ID": 19319, + "SourceStructureID": 101277, + "TargetStructureID": 485, + "Label": "101277-485 via Conventional from 101278 -> 101276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101278, + "TargetID": 101276, + "Directional": true + }] + }, { + "ID": 19320, + "SourceStructureID": 101287, + "TargetStructureID": 485, + "Label": "101287-485 via Conventional from 101288 -> 101286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101288, + "TargetID": 101286, + "Directional": true + }] + }, { + "ID": 19321, + "SourceStructureID": 101314, + "TargetStructureID": 485, + "Label": "101314-485 via Conventional from 101316 -> 101317", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101316, + "TargetID": 101317, + "Directional": true + }] + }, { + "ID": 19322, + "SourceStructureID": 101318, + "TargetStructureID": 485, + "Label": "101318-485 via Conventional from 101319 -> 47554", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101319, + "TargetID": 47554, + "Directional": true + }] + }, { + "ID": 19323, + "SourceStructureID": 101324, + "TargetStructureID": 485, + "Label": "101324-485 via Conventional from 101329 -> 101323", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101329, + "TargetID": 101323, + "Directional": true + }] + }, { + "ID": 19324, + "SourceStructureID": 101325, + "TargetStructureID": 6156, + "Label": "101325-6156 via Conventional from 101327 -> 101280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101327, + "TargetID": 101280, + "Directional": true + }] + }, { + "ID": 19325, + "SourceStructureID": 101331, + "TargetStructureID": 485, + "Label": "101331-485 via Conventional from 101335 -> 47547", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101335, + "TargetID": 47547, + "Directional": true + }] + }, { + "ID": 19326, + "SourceStructureID": 101332, + "TargetStructureID": 380, + "Label": "101332-380 via Conventional from 101333 -> 101334", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101333, + "TargetID": 101334, + "Directional": true + }] + }, { + "ID": 19327, + "SourceStructureID": 101339, + "TargetStructureID": 17533, + "Label": "101339-17533 via Conventional from 101387 -> 101388", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101387, + "TargetID": 101388, + "Directional": true + }] + }, { + "ID": 19328, + "SourceStructureID": 101341, + "TargetStructureID": 485, + "Label": "101341-485 via Conventional from 101342 -> 101340", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101342, + "TargetID": 101340, + "Directional": true + }] + }, { + "ID": 19329, + "SourceStructureID": 101355, + "TargetStructureID": 485, + "Label": "101355-485 via Conventional from 101356 -> 101354", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101356, + "TargetID": 101354, + "Directional": true + }] + }, { + "ID": 19330, + "SourceStructureID": 101360, + "TargetStructureID": 485, + "Label": "101360-485 via Conventional from 101361 -> 101359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101361, + "TargetID": 101359, + "Directional": true + }] + }, { + "ID": 19331, + "SourceStructureID": 101368, + "TargetStructureID": 485, + "Label": "101368-485 via Conventional from 101372 -> 101367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101372, + "TargetID": 101367, + "Directional": true + }] + }, { + "ID": 19332, + "SourceStructureID": 101378, + "TargetStructureID": 485, + "Label": "101378-485 via Conventional from 101379 -> 101377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101379, + "TargetID": 101377, + "Directional": true + }] + }, { + "ID": 19333, + "SourceStructureID": 101384, + "TargetStructureID": 485, + "Label": "101384-485 via Conventional from 101385 -> 101386", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101385, + "TargetID": 101386, + "Directional": true + }] + }, { + "ID": 19334, + "SourceStructureID": 101392, + "TargetStructureID": 485, + "Label": "101392-485 via Conventional from 101393 -> 101391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101393, + "TargetID": 101391, + "Directional": true + }] + }, { + "ID": 19335, + "SourceStructureID": 101396, + "TargetStructureID": 485, + "Label": "101396-485 via Conventional from 101397 -> 101395", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101397, + "TargetID": 101395, + "Directional": true + }] + }, { + "ID": 19336, + "SourceStructureID": 101401, + "TargetStructureID": 11401, + "Label": "101401-11401 via Conventional from 102104 -> 102106", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102104, + "TargetID": 102106, + "Directional": true + }] + }, { + "ID": 19337, + "SourceStructureID": 101402, + "TargetStructureID": 2610, + "Label": "101402-2610 via Conventional from 101403 -> 2833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101403, + "TargetID": 2833, + "Directional": true + }] + }, { + "ID": 19338, + "SourceStructureID": 101402, + "TargetStructureID": 10826, + "Label": "101402-10826 via Conventional from 102074 -> 102076, 102075 -> 102077", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102074, + "TargetID": 102076, + "Directional": true + }, { + "SourceID": 102075, + "TargetID": 102077, + "Directional": true + }] + }, { + "ID": 19339, + "SourceStructureID": 101428, + "TargetStructureID": 485, + "Label": "101428-485 via Conventional from 101429 -> 101427, 101432 -> 101433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101429, + "TargetID": 101427, + "Directional": true + }, { + "SourceID": 101432, + "TargetID": 101433, + "Directional": true + }] + }, { + "ID": 19340, + "SourceStructureID": 101439, + "TargetStructureID": 485, + "Label": "101439-485 via Conventional from 101451 -> 101450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101451, + "TargetID": 101450, + "Directional": true + }] + }, { + "ID": 19341, + "SourceStructureID": 101439, + "TargetStructureID": 6997, + "Label": "101439-6997 via Conventional from 101444 -> 101445", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101444, + "TargetID": 101445, + "Directional": true + }] + }, { + "ID": 19342, + "SourceStructureID": 101439, + "TargetStructureID": 9693, + "Label": "101439-9693 via Conventional from 101441 -> 9890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101441, + "TargetID": 9890, + "Directional": true + }] + }, { + "ID": 19343, + "SourceStructureID": 101455, + "TargetStructureID": 485, + "Label": "101455-485 via Conventional from 101456 -> 101454", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101456, + "TargetID": 101454, + "Directional": true + }] + }, { + "ID": 19344, + "SourceStructureID": 101458, + "TargetStructureID": 485, + "Label": "101458-485 via Conventional from 101459 -> 101457", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101459, + "TargetID": 101457, + "Directional": true + }] + }, { + "ID": 19345, + "SourceStructureID": 101461, + "TargetStructureID": 485, + "Label": "101461-485 via Conventional from 101462 -> 101460", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101462, + "TargetID": 101460, + "Directional": true + }] + }, { + "ID": 19346, + "SourceStructureID": 101464, + "TargetStructureID": 485, + "Label": "101464-485 via Conventional from 101465 -> 101463", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101465, + "TargetID": 101463, + "Directional": true + }] + }, { + "ID": 19347, + "SourceStructureID": 101470, + "TargetStructureID": 485, + "Label": "101470-485 via Conventional from 101471 -> 101469", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101471, + "TargetID": 101469, + "Directional": true + }] + }, { + "ID": 19348, + "SourceStructureID": 101489, + "TargetStructureID": 485, + "Label": "101489-485 via Conventional from 101490 -> 101491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101490, + "TargetID": 101491, + "Directional": true + }] + }, { + "ID": 19349, + "SourceStructureID": 101507, + "TargetStructureID": 1724, + "Label": "101507-1724 via Conventional from 101508 -> 20192", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101508, + "TargetID": 20192, + "Directional": true + }] + }, { + "ID": 19350, + "SourceStructureID": 101509, + "TargetStructureID": 1724, + "Label": "101509-1724 via Conventional from 101510 -> 20196", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101510, + "TargetID": 20196, + "Directional": true + }] + }, { + "ID": 19351, + "SourceStructureID": 101513, + "TargetStructureID": 1724, + "Label": "101513-1724 via Conventional from 101514 -> 101515", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101514, + "TargetID": 101515, + "Directional": true + }] + }, { + "ID": 19352, + "SourceStructureID": 101521, + "TargetStructureID": 1724, + "Label": "101521-1724 via Conventional from 101523 -> 20195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101523, + "TargetID": 20195, + "Directional": true + }] + }, { + "ID": 19353, + "SourceStructureID": 101522, + "TargetStructureID": 1724, + "Label": "101522-1724 via Conventional from 101525 -> 20199", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101525, + "TargetID": 20199, + "Directional": true + }] + }, { + "ID": 19354, + "SourceStructureID": 101527, + "TargetStructureID": 304, + "Label": "101527-304 via Conventional from 101534 -> 101535", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101534, + "TargetID": 101535, + "Directional": true + }] + }, { + "ID": 19355, + "SourceStructureID": 101528, + "TargetStructureID": 1724, + "Label": "101528-1724 via Conventional from 101529 -> 101530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101529, + "TargetID": 101530, + "Directional": true + }] + }, { + "ID": 19356, + "SourceStructureID": 101547, + "TargetStructureID": 1724, + "Label": "101547-1724 via Conventional from 101548 -> 47339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101548, + "TargetID": 47339, + "Directional": true + }] + }, { + "ID": 19357, + "SourceStructureID": 101552, + "TargetStructureID": 1724, + "Label": "101552-1724 via Conventional from 101554 -> 1740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101554, + "TargetID": 1740, + "Directional": true + }] + }, { + "ID": 19358, + "SourceStructureID": 101553, + "TargetStructureID": 10897, + "Label": "101553-10897 via Conventional from 101562 -> 101563, 101564 -> 101565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101562, + "TargetID": 101563, + "Directional": true + }, { + "SourceID": 101564, + "TargetID": 101565, + "Directional": true + }] + }, { + "ID": 19359, + "SourceStructureID": 101567, + "TargetStructureID": 1724, + "Label": "101567-1724 via Conventional from 101568 -> 1743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101568, + "TargetID": 1743, + "Directional": true + }] + }, { + "ID": 19360, + "SourceStructureID": 101570, + "TargetStructureID": 1724, + "Label": "101570-1724 via Conventional from 101571 -> 3064", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101571, + "TargetID": 3064, + "Directional": true + }] + }, { + "ID": 19361, + "SourceStructureID": 101574, + "TargetStructureID": 1724, + "Label": "101574-1724 via Conventional from 101575 -> 101576", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101575, + "TargetID": 101576, + "Directional": true + }] + }, { + "ID": 19362, + "SourceStructureID": 101583, + "TargetStructureID": 1724, + "Label": "101583-1724 via Conventional from 101584 -> 101586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101584, + "TargetID": 101586, + "Directional": true + }] + }, { + "ID": 19363, + "SourceStructureID": 101587, + "TargetStructureID": 1724, + "Label": "101587-1724 via Conventional from 101588 -> 101589", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101588, + "TargetID": 101589, + "Directional": true + }] + }, { + "ID": 19364, + "SourceStructureID": 101590, + "TargetStructureID": 30477, + "Label": "101590-30477 via Conventional from 101591 -> 30482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101591, + "TargetID": 30482, + "Directional": true + }] + }, { + "ID": 19365, + "SourceStructureID": 101596, + "TargetStructureID": 1724, + "Label": "101596-1724 via Conventional from 101597 -> 1754", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101597, + "TargetID": 1754, + "Directional": true + }] + }, { + "ID": 19366, + "SourceStructureID": 101598, + "TargetStructureID": 1724, + "Label": "101598-1724 via Conventional from 101599 -> 1750", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101599, + "TargetID": 1750, + "Directional": true + }] + }, { + "ID": 19367, + "SourceStructureID": 101600, + "TargetStructureID": 1724, + "Label": "101600-1724 via Conventional from 101601 -> 1752", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101601, + "TargetID": 1752, + "Directional": true + }] + }, { + "ID": 19368, + "SourceStructureID": 101602, + "TargetStructureID": 1724, + "Label": "101602-1724 via Conventional from 101603 -> 1756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101603, + "TargetID": 1756, + "Directional": true + }] + }, { + "ID": 19369, + "SourceStructureID": 101604, + "TargetStructureID": 1724, + "Label": "101604-1724 via Conventional from 101605 -> 47935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101605, + "TargetID": 47935, + "Directional": true + }] + }, { + "ID": 19370, + "SourceStructureID": 101606, + "TargetStructureID": 1724, + "Label": "101606-1724 via Conventional from 101607 -> 47936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101607, + "TargetID": 47936, + "Directional": true + }] + }, { + "ID": 19371, + "SourceStructureID": 101613, + "TargetStructureID": 1724, + "Label": "101613-1724 via Conventional from 101614 -> 47344", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101614, + "TargetID": 47344, + "Directional": true + }] + }, { + "ID": 19372, + "SourceStructureID": 101615, + "TargetStructureID": 1724, + "Label": "101615-1724 via Conventional from 101616 -> 47343", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101616, + "TargetID": 47343, + "Directional": true + }] + }, { + "ID": 19373, + "SourceStructureID": 101623, + "TargetStructureID": 1724, + "Label": "101623-1724 via Conventional from 101628 -> 48483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101628, + "TargetID": 48483, + "Directional": true + }] + }, { + "ID": 19374, + "SourceStructureID": 101625, + "TargetStructureID": 13525, + "Label": "101625-13525 via Conventional from 101626 -> 13528", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101626, + "TargetID": 13528, + "Directional": true + }] + }, { + "ID": 19375, + "SourceStructureID": 101632, + "TargetStructureID": 30477, + "Label": "101632-30477 via Conventional from 101633 -> 30483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101633, + "TargetID": 30483, + "Directional": true + }] + }, { + "ID": 19376, + "SourceStructureID": 101640, + "TargetStructureID": 1724, + "Label": "101640-1724 via Conventional from 101641 -> 3987", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101641, + "TargetID": 3987, + "Directional": true + }] + }, { + "ID": 19377, + "SourceStructureID": 101642, + "TargetStructureID": 1724, + "Label": "101642-1724 via Conventional from 101646 -> 47341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101646, + "TargetID": 47341, + "Directional": true + }] + }, { + "ID": 19378, + "SourceStructureID": 101644, + "TargetStructureID": 31305, + "Label": "101644-31305 via Conventional from 101645 -> 101643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101645, + "TargetID": 101643, + "Directional": true + }] + }, { + "ID": 19379, + "SourceStructureID": 101647, + "TargetStructureID": 1724, + "Label": "101647-1724 via Conventional from 101649 -> 3990", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101649, + "TargetID": 3990, + "Directional": true + }] + }, { + "ID": 19380, + "SourceStructureID": 101657, + "TargetStructureID": 1724, + "Label": "101657-1724 via Conventional from 101660 -> 3994", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101660, + "TargetID": 3994, + "Directional": true + }] + }, { + "ID": 19381, + "SourceStructureID": 101661, + "TargetStructureID": 1724, + "Label": "101661-1724 via Conventional from 101663 -> 4000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101663, + "TargetID": 4000, + "Directional": true + }] + }, { + "ID": 19382, + "SourceStructureID": 101662, + "TargetStructureID": 1724, + "Label": "101662-1724 via Conventional from 101665 -> 3998", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101665, + "TargetID": 3998, + "Directional": true + }] + }, { + "ID": 19383, + "SourceStructureID": 101668, + "TargetStructureID": 1724, + "Label": "101668-1724 via Conventional from 101671 -> 4002", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101671, + "TargetID": 4002, + "Directional": true + }] + }, { + "ID": 19384, + "SourceStructureID": 101672, + "TargetStructureID": 1724, + "Label": "101672-1724 via Conventional from 101674 -> 4006", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101674, + "TargetID": 4006, + "Directional": true + }] + }, { + "ID": 19385, + "SourceStructureID": 101677, + "TargetStructureID": 1724, + "Label": "101677-1724 via Conventional from 101678 -> 101679", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101678, + "TargetID": 101679, + "Directional": true + }] + }, { + "ID": 19386, + "SourceStructureID": 101681, + "TargetStructureID": 1724, + "Label": "101681-1724 via Conventional from 101682 -> 4010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101682, + "TargetID": 4010, + "Directional": true + }] + }, { + "ID": 19387, + "SourceStructureID": 101692, + "TargetStructureID": 1724, + "Label": "101692-1724 via Conventional from 101725 -> 47348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101725, + "TargetID": 47348, + "Directional": true + }] + }, { + "ID": 19388, + "SourceStructureID": 101693, + "TargetStructureID": 1724, + "Label": "101693-1724 via Conventional from 101694 -> 23719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101694, + "TargetID": 23719, + "Directional": true + }] + }, { + "ID": 19389, + "SourceStructureID": 101696, + "TargetStructureID": 1724, + "Label": "101696-1724 via Conventional from 101894 -> 101895", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101894, + "TargetID": 101895, + "Directional": true + }] + }, { + "ID": 19390, + "SourceStructureID": 101697, + "TargetStructureID": 1724, + "Label": "101697-1724 via Conventional from 101838 -> 23720", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101838, + "TargetID": 23720, + "Directional": true + }] + }, { + "ID": 19391, + "SourceStructureID": 101707, + "TargetStructureID": 18282, + "Label": "101707-18282 via Conventional from 101709 -> 18304", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101709, + "TargetID": 18304, + "Directional": true + }] + }, { + "ID": 19392, + "SourceStructureID": 101711, + "TargetStructureID": 485, + "Label": "101711-485 via Conventional from 101712 -> 101710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101712, + "TargetID": 101710, + "Directional": true + }] + }, { + "ID": 19393, + "SourceStructureID": 101744, + "TargetStructureID": 485, + "Label": "101744-485 via Conventional from 101745 -> 47557", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101745, + "TargetID": 47557, + "Directional": true + }] + }, { + "ID": 19394, + "SourceStructureID": 101747, + "TargetStructureID": 485, + "Label": "101747-485 via Conventional from 101748 -> 47556", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101748, + "TargetID": 47556, + "Directional": true + }] + }, { + "ID": 19395, + "SourceStructureID": 101757, + "TargetStructureID": 1724, + "Label": "101757-1724 via Conventional from 101760 -> 101759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101760, + "TargetID": 101759, + "Directional": true + }] + }, { + "ID": 19396, + "SourceStructureID": 101765, + "TargetStructureID": 485, + "Label": "101765-485 via Conventional from 101766 -> 101764", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101766, + "TargetID": 101764, + "Directional": true + }] + }, { + "ID": 19397, + "SourceStructureID": 101785, + "TargetStructureID": 485, + "Label": "101785-485 via Conventional from 101786 -> 101784, 101810 -> 47565", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101786, + "TargetID": 101784, + "Directional": true + }, { + "SourceID": 101810, + "TargetID": 47565, + "Directional": true + }] + }, { + "ID": 19398, + "SourceStructureID": 101789, + "TargetStructureID": 1724, + "Label": "101789-1724 via Conventional from 101792 -> 101794", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101792, + "TargetID": 101794, + "Directional": true + }] + }, { + "ID": 19399, + "SourceStructureID": 101790, + "TargetStructureID": 485, + "Label": "101790-485 via Conventional from 101791 -> 101783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101791, + "TargetID": 101783, + "Directional": true + }] + }, { + "ID": 19400, + "SourceStructureID": 101802, + "TargetStructureID": 1724, + "Label": "101802-1724 via Conventional from 101803 -> 4098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101803, + "TargetID": 4098, + "Directional": true + }] + }, { + "ID": 19401, + "SourceStructureID": 101808, + "TargetStructureID": 1724, + "Label": "101808-1724 via Conventional from 101811 -> 101812", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101811, + "TargetID": 101812, + "Directional": true + }] + }, { + "ID": 19402, + "SourceStructureID": 101815, + "TargetStructureID": 485, + "Label": "101815-485 via Conventional from 101816 -> 47566, 101911 -> 101912", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101816, + "TargetID": 47566, + "Directional": true + }, { + "SourceID": 101911, + "TargetID": 101912, + "Directional": true + }] + }, { + "ID": 19403, + "SourceStructureID": 101818, + "TargetStructureID": 1724, + "Label": "101818-1724 via Conventional from 101822 -> 101823", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101822, + "TargetID": 101823, + "Directional": true + }] + }, { + "ID": 19404, + "SourceStructureID": 101819, + "TargetStructureID": 485, + "Label": "101819-485 via Conventional from 101820 -> 101813", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101820, + "TargetID": 101813, + "Directional": true + }] + }, { + "ID": 19405, + "SourceStructureID": 101826, + "TargetStructureID": 1724, + "Label": "101826-1724 via Conventional from 101827 -> 47349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101827, + "TargetID": 47349, + "Directional": true + }] + }, { + "ID": 19406, + "SourceStructureID": 101842, + "TargetStructureID": 1724, + "Label": "101842-1724 via Conventional from 101847 -> 101848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101847, + "TargetID": 101848, + "Directional": true + }] + }, { + "ID": 19407, + "SourceStructureID": 101849, + "TargetStructureID": 1724, + "Label": "101849-1724 via Conventional from 101851 -> 101852", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101851, + "TargetID": 101852, + "Directional": true + }] + }, { + "ID": 19408, + "SourceStructureID": 101850, + "TargetStructureID": 485, + "Label": "101850-485 via Conventional from 101858 -> 23147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101858, + "TargetID": 23147, + "Directional": true + }] + }, { + "ID": 19409, + "SourceStructureID": 101855, + "TargetStructureID": 1724, + "Label": "101855-1724 via Conventional from 101857 -> 47374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101857, + "TargetID": 47374, + "Directional": true + }] + }, { + "ID": 19410, + "SourceStructureID": 101873, + "TargetStructureID": 485, + "Label": "101873-485 via Conventional from 101874 -> 101871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101874, + "TargetID": 101871, + "Directional": true + }] + }, { + "ID": 19411, + "SourceStructureID": 101876, + "TargetStructureID": 485, + "Label": "101876-485 via Conventional from 101877 -> 101878", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101877, + "TargetID": 101878, + "Directional": true + }] + }, { + "ID": 19412, + "SourceStructureID": 101879, + "TargetStructureID": 1724, + "Label": "101879-1724 via Conventional from 101882 -> 47373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101882, + "TargetID": 47373, + "Directional": true + }] + }, { + "ID": 19413, + "SourceStructureID": 101888, + "TargetStructureID": 1724, + "Label": "101888-1724 via Conventional from 101889 -> 32231, 101901 -> 101902", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101889, + "TargetID": 32231, + "Directional": true + }, { + "SourceID": 101901, + "TargetID": 101902, + "Directional": true + }] + }, { + "ID": 19414, + "SourceStructureID": 101913, + "TargetStructureID": 485, + "Label": "101913-485 via Conventional from 101914 -> 101915", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101914, + "TargetID": 101915, + "Directional": true + }] + }, { + "ID": 19415, + "SourceStructureID": 101926, + "TargetStructureID": 485, + "Label": "101926-485 via Conventional from 101927 -> 101925", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101927, + "TargetID": 101925, + "Directional": true + }] + }, { + "ID": 19416, + "SourceStructureID": 101935, + "TargetStructureID": 13525, + "Label": "101935-13525 via Conventional from 101943 -> 13530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101943, + "TargetID": 13530, + "Directional": true + }] + }, { + "ID": 19417, + "SourceStructureID": 101936, + "TargetStructureID": 485, + "Label": "101936-485 via Conventional from 101937 -> 101939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101937, + "TargetID": 101939, + "Directional": true + }] + }, { + "ID": 19418, + "SourceStructureID": 101938, + "TargetStructureID": 1724, + "Label": "101938-1724 via Conventional from 101949 -> 47352", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101949, + "TargetID": 47352, + "Directional": true + }] + }, { + "ID": 19419, + "SourceStructureID": 101941, + "TargetStructureID": 485, + "Label": "101941-485 via Conventional from 101942 -> 101940", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101942, + "TargetID": 101940, + "Directional": true + }] + }, { + "ID": 19420, + "SourceStructureID": 101946, + "TargetStructureID": 1724, + "Label": "101946-1724 via Conventional from 101947 -> 101948", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101947, + "TargetID": 101948, + "Directional": true + }] + }, { + "ID": 19421, + "SourceStructureID": 101952, + "TargetStructureID": 485, + "Label": "101952-485 via Conventional from 101956 -> 101950", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101956, + "TargetID": 101950, + "Directional": true + }] + }, { + "ID": 19422, + "SourceStructureID": 101958, + "TargetStructureID": 485, + "Label": "101958-485 via Conventional from 101959 -> 101957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101959, + "TargetID": 101957, + "Directional": true + }] + }, { + "ID": 19423, + "SourceStructureID": 101961, + "TargetStructureID": 485, + "Label": "101961-485 via Conventional from 101962 -> 101960", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101962, + "TargetID": 101960, + "Directional": true + }] + }, { + "ID": 19424, + "SourceStructureID": 101969, + "TargetStructureID": 1724, + "Label": "101969-1724 via Conventional from 101970 -> 101971", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101970, + "TargetID": 101971, + "Directional": true + }] + }, { + "ID": 19425, + "SourceStructureID": 101978, + "TargetStructureID": 1724, + "Label": "101978-1724 via Conventional from 101979 -> 4114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101979, + "TargetID": 4114, + "Directional": true + }] + }, { + "ID": 19426, + "SourceStructureID": 101982, + "TargetStructureID": 1724, + "Label": "101982-1724 via Conventional from 101988 -> 4108", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101988, + "TargetID": 4108, + "Directional": true + }] + }, { + "ID": 19427, + "SourceStructureID": 101985, + "TargetStructureID": 485, + "Label": "101985-485 via Conventional from 101990 -> 101984", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101990, + "TargetID": 101984, + "Directional": true + }] + }, { + "ID": 19428, + "SourceStructureID": 101989, + "TargetStructureID": 13525, + "Label": "101989-13525 via Conventional from 101991 -> 85365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101991, + "TargetID": 85365, + "Directional": true + }] + }, { + "ID": 19429, + "SourceStructureID": 101993, + "TargetStructureID": 1724, + "Label": "101993-1724 via Conventional from 101994 -> 101995", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 101994, + "TargetID": 101995, + "Directional": true + }] + }, { + "ID": 19430, + "SourceStructureID": 102011, + "TargetStructureID": 1724, + "Label": "102011-1724 via Conventional from 102012 -> 4118", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102012, + "TargetID": 4118, + "Directional": true + }] + }, { + "ID": 19431, + "SourceStructureID": 102014, + "TargetStructureID": 485, + "Label": "102014-485 via Conventional from 102018 -> 102017", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102018, + "TargetID": 102017, + "Directional": true + }] + }, { + "ID": 19432, + "SourceStructureID": 102020, + "TargetStructureID": 485, + "Label": "102020-485 via Conventional from 102021 -> 49910", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102021, + "TargetID": 49910, + "Directional": true + }] + }, { + "ID": 19433, + "SourceStructureID": 102036, + "TargetStructureID": 1724, + "Label": "102036-1724 via Conventional from 102489 -> 47362, 102494 -> 30432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102489, + "TargetID": 47362, + "Directional": true + }, { + "SourceID": 102494, + "TargetID": 30432, + "Directional": true + }] + }, { + "ID": 19434, + "SourceStructureID": 102039, + "TargetStructureID": 483, + "Label": "102039-483 via Conventional from 102040 -> 6710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102040, + "TargetID": 6710, + "Directional": true + }] + }, { + "ID": 19435, + "SourceStructureID": 102057, + "TargetStructureID": 483, + "Label": "102057-483 via Conventional from 102058 -> 6818", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102058, + "TargetID": 6818, + "Directional": true + }] + }, { + "ID": 19436, + "SourceStructureID": 102065, + "TargetStructureID": 483, + "Label": "102065-483 via Conventional from 102066 -> 6823", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102066, + "TargetID": 6823, + "Directional": true + }] + }, { + "ID": 19437, + "SourceStructureID": 102067, + "TargetStructureID": 483, + "Label": "102067-483 via Conventional from 102068 -> 6827", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102068, + "TargetID": 6827, + "Directional": true + }] + }, { + "ID": 19438, + "SourceStructureID": 102092, + "TargetStructureID": 483, + "Label": "102092-483 via Conventional from 102093 -> 6829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102093, + "TargetID": 6829, + "Directional": true + }] + }, { + "ID": 19439, + "SourceStructureID": 102099, + "TargetStructureID": 483, + "Label": "102099-483 via Conventional from 102100 -> 6844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102100, + "TargetID": 6844, + "Directional": true + }] + }, { + "ID": 19440, + "SourceStructureID": 102101, + "TargetStructureID": 483, + "Label": "102101-483 via Conventional from 102105 -> 6843", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102105, + "TargetID": 6843, + "Directional": true + }] + }, { + "ID": 19441, + "SourceStructureID": 102108, + "TargetStructureID": 483, + "Label": "102108-483 via Conventional from 102109 -> 6846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102109, + "TargetID": 6846, + "Directional": true + }] + }, { + "ID": 19442, + "SourceStructureID": 102110, + "TargetStructureID": 483, + "Label": "102110-483 via Conventional from 102111 -> 6845", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102111, + "TargetID": 6845, + "Directional": true + }] + }, { + "ID": 19443, + "SourceStructureID": 102116, + "TargetStructureID": 11043, + "Label": "102116-11043 via Conventional from 102144 -> 33709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102144, + "TargetID": 33709, + "Directional": true + }] + }, { + "ID": 19444, + "SourceStructureID": 102118, + "TargetStructureID": 483, + "Label": "102118-483 via Conventional from 102121 -> 102117", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102121, + "TargetID": 102117, + "Directional": true + }] + }, { + "ID": 19445, + "SourceStructureID": 102125, + "TargetStructureID": 483, + "Label": "102125-483 via Conventional from 102126 -> 102124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102126, + "TargetID": 102124, + "Directional": true + }] + }, { + "ID": 19446, + "SourceStructureID": 102127, + "TargetStructureID": 483, + "Label": "102127-483 via Conventional from 102128 -> 58614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102128, + "TargetID": 58614, + "Directional": true + }] + }, { + "ID": 19447, + "SourceStructureID": 102129, + "TargetStructureID": 483, + "Label": "102129-483 via Conventional from 102131 -> 102132", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102131, + "TargetID": 102132, + "Directional": true + }] + }, { + "ID": 19448, + "SourceStructureID": 102140, + "TargetStructureID": 483, + "Label": "102140-483 via Conventional from 102141 -> 102139", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102141, + "TargetID": 102139, + "Directional": true + }] + }, { + "ID": 19449, + "SourceStructureID": 102143, + "TargetStructureID": 483, + "Label": "102143-483 via Conventional from 102145 -> 102142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102145, + "TargetID": 102142, + "Directional": true + }] + }, { + "ID": 19450, + "SourceStructureID": 102149, + "TargetStructureID": 13525, + "Label": "102149-13525 via Conventional from 102152 -> 85364", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102152, + "TargetID": 85364, + "Directional": true + }] + }, { + "ID": 19451, + "SourceStructureID": 102150, + "TargetStructureID": 483, + "Label": "102150-483 via Conventional from 102161 -> 6831", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102161, + "TargetID": 6831, + "Directional": true + }] + }, { + "ID": 19452, + "SourceStructureID": 102162, + "TargetStructureID": 483, + "Label": "102162-483 via Conventional from 102163 -> 6833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102163, + "TargetID": 6833, + "Directional": true + }] + }, { + "ID": 19453, + "SourceStructureID": 102164, + "TargetStructureID": 483, + "Label": "102164-483 via Conventional from 102167 -> 6834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102167, + "TargetID": 6834, + "Directional": true + }] + }, { + "ID": 19454, + "SourceStructureID": 102168, + "TargetStructureID": 13525, + "Label": "102168-13525 via Conventional from 102170 -> 84282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102170, + "TargetID": 84282, + "Directional": true + }] + }, { + "ID": 19455, + "SourceStructureID": 102171, + "TargetStructureID": 13525, + "Label": "102171-13525 via Conventional from 102172 -> 95780", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102172, + "TargetID": 95780, + "Directional": true + }] + }, { + "ID": 19456, + "SourceStructureID": 102175, + "TargetStructureID": 13525, + "Label": "102175-13525 via Conventional from 102176 -> 95791", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102176, + "TargetID": 95791, + "Directional": true + }] + }, { + "ID": 19457, + "SourceStructureID": 102179, + "TargetStructureID": 483, + "Label": "102179-483 via Conventional from 102181 -> 6840", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102181, + "TargetID": 6840, + "Directional": true + }] + }, { + "ID": 19458, + "SourceStructureID": 102191, + "TargetStructureID": 483, + "Label": "102191-483 via Conventional from 102192 -> 26798", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102192, + "TargetID": 26798, + "Directional": true + }] + }, { + "ID": 19459, + "SourceStructureID": 102196, + "TargetStructureID": 483, + "Label": "102196-483 via Conventional from 102200 -> 102201", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102200, + "TargetID": 102201, + "Directional": true + }] + }, { + "ID": 19460, + "SourceStructureID": 102202, + "TargetStructureID": 483, + "Label": "102202-483 via Conventional from 102204 -> 26791", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102204, + "TargetID": 26791, + "Directional": true + }] + }, { + "ID": 19461, + "SourceStructureID": 102206, + "TargetStructureID": 483, + "Label": "102206-483 via Conventional from 102207 -> 102205", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102207, + "TargetID": 102205, + "Directional": true + }] + }, { + "ID": 19462, + "SourceStructureID": 102209, + "TargetStructureID": 483, + "Label": "102209-483 via Conventional from 102210 -> 102208", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102210, + "TargetID": 102208, + "Directional": true + }] + }, { + "ID": 19463, + "SourceStructureID": 102218, + "TargetStructureID": 483, + "Label": "102218-483 via Conventional from 102220 -> 26799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102220, + "TargetID": 26799, + "Directional": true + }] + }, { + "ID": 19464, + "SourceStructureID": 102222, + "TargetStructureID": 483, + "Label": "102222-483 via Conventional from 102223 -> 102221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102223, + "TargetID": 102221, + "Directional": true + }] + }, { + "ID": 19465, + "SourceStructureID": 102224, + "TargetStructureID": 483, + "Label": "102224-483 via Conventional from 102225 -> 26792", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102225, + "TargetID": 26792, + "Directional": true + }] + }, { + "ID": 19466, + "SourceStructureID": 102230, + "TargetStructureID": 483, + "Label": "102230-483 via Conventional from 102231 -> 26789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102231, + "TargetID": 26789, + "Directional": true + }] + }, { + "ID": 19467, + "SourceStructureID": 102235, + "TargetStructureID": 483, + "Label": "102235-483 via Conventional from 102236 -> 26788", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102236, + "TargetID": 26788, + "Directional": true + }] + }, { + "ID": 19468, + "SourceStructureID": 102250, + "TargetStructureID": 483, + "Label": "102250-483 via Conventional from 102251 -> 102246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102251, + "TargetID": 102246, + "Directional": true + }] + }, { + "ID": 19469, + "SourceStructureID": 102254, + "TargetStructureID": 483, + "Label": "102254-483 via Conventional from 102255 -> 26794", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102255, + "TargetID": 26794, + "Directional": true + }] + }, { + "ID": 19470, + "SourceStructureID": 102272, + "TargetStructureID": 483, + "Label": "102272-483 via Conventional from 102273 -> 26805", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102273, + "TargetID": 26805, + "Directional": true + }] + }, { + "ID": 19471, + "SourceStructureID": 102274, + "TargetStructureID": 483, + "Label": "102274-483 via Conventional from 102275 -> 26804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102275, + "TargetID": 26804, + "Directional": true + }] + }, { + "ID": 19472, + "SourceStructureID": 102276, + "TargetStructureID": 483, + "Label": "102276-483 via Conventional from 102277 -> 26808", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102277, + "TargetID": 26808, + "Directional": true + }] + }, { + "ID": 19473, + "SourceStructureID": 102278, + "TargetStructureID": 483, + "Label": "102278-483 via Conventional from 102284 -> 26800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102284, + "TargetID": 26800, + "Directional": true + }] + }, { + "ID": 19474, + "SourceStructureID": 102282, + "TargetStructureID": 483, + "Label": "102282-483 via Conventional from 102292 -> 26809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102292, + "TargetID": 26809, + "Directional": true + }] + }, { + "ID": 19475, + "SourceStructureID": 102286, + "TargetStructureID": 483, + "Label": "102286-483 via Conventional from 102287 -> 102285", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102287, + "TargetID": 102285, + "Directional": true + }] + }, { + "ID": 19476, + "SourceStructureID": 102295, + "TargetStructureID": 483, + "Label": "102295-483 via Conventional from 102296 -> 102297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102296, + "TargetID": 102297, + "Directional": true + }] + }, { + "ID": 19477, + "SourceStructureID": 102310, + "TargetStructureID": 483, + "Label": "102310-483 via Conventional from 102311 -> 26806", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102311, + "TargetID": 26806, + "Directional": true + }] + }, { + "ID": 19478, + "SourceStructureID": 102314, + "TargetStructureID": 483, + "Label": "102314-483 via Conventional from 102315 -> 26814", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102315, + "TargetID": 26814, + "Directional": true + }] + }, { + "ID": 19479, + "SourceStructureID": 102316, + "TargetStructureID": 483, + "Label": "102316-483 via Conventional from 102317 -> 26813", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102317, + "TargetID": 26813, + "Directional": true + }] + }, { + "ID": 19480, + "SourceStructureID": 102321, + "TargetStructureID": 483, + "Label": "102321-483 via Conventional from 102322 -> 26816", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102322, + "TargetID": 26816, + "Directional": true + }] + }, { + "ID": 19481, + "SourceStructureID": 102341, + "TargetStructureID": 483, + "Label": "102341-483 via Conventional from 102342 -> 6841", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102342, + "TargetID": 6841, + "Directional": true + }] + }, { + "ID": 19482, + "SourceStructureID": 102354, + "TargetStructureID": 483, + "Label": "102354-483 via Conventional from 102355 -> 102356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102355, + "TargetID": 102356, + "Directional": true + }] + }, { + "ID": 19483, + "SourceStructureID": 102361, + "TargetStructureID": 13525, + "Label": "102361-13525 via Conventional from 102367 -> 95924", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102367, + "TargetID": 95924, + "Directional": true + }] + }, { + "ID": 19484, + "SourceStructureID": 102362, + "TargetStructureID": 483, + "Label": "102362-483 via Conventional from 102363 -> 26834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102363, + "TargetID": 26834, + "Directional": true + }] + }, { + "ID": 19485, + "SourceStructureID": 102381, + "TargetStructureID": 483, + "Label": "102381-483 via Conventional from 102394 -> 20342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102394, + "TargetID": 20342, + "Directional": true + }] + }, { + "ID": 19486, + "SourceStructureID": 102391, + "TargetStructureID": 102387, + "Label": "102391-102387 via Conventional from 102393 -> 102390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102393, + "TargetID": 102390, + "Directional": true + }] + }, { + "ID": 19487, + "SourceStructureID": 102395, + "TargetStructureID": 483, + "Label": "102395-483 via Conventional from 102396 -> 20343", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102396, + "TargetID": 20343, + "Directional": true + }] + }, { + "ID": 19488, + "SourceStructureID": 102397, + "TargetStructureID": 483, + "Label": "102397-483 via Conventional from 102398 -> 20344", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102398, + "TargetID": 20344, + "Directional": true + }] + }, { + "ID": 19489, + "SourceStructureID": 102399, + "TargetStructureID": 419, + "Label": "102399-419 via Conventional from 102400 -> 10164", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102400, + "TargetID": 10164, + "Directional": true + }] + }, { + "ID": 19490, + "SourceStructureID": 102405, + "TargetStructureID": 483, + "Label": "102405-483 via Conventional from 102406 -> 20348", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102406, + "TargetID": 20348, + "Directional": true + }] + }, { + "ID": 19491, + "SourceStructureID": 102414, + "TargetStructureID": 483, + "Label": "102414-483 via Conventional from 102415 -> 20346", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102415, + "TargetID": 20346, + "Directional": true + }] + }, { + "ID": 19492, + "SourceStructureID": 102416, + "TargetStructureID": 483, + "Label": "102416-483 via Conventional from 102419 -> 26838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102419, + "TargetID": 26838, + "Directional": true + }] + }, { + "ID": 19493, + "SourceStructureID": 102417, + "TargetStructureID": 13525, + "Label": "102417-13525 via Conventional from 102418 -> 95923", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102418, + "TargetID": 95923, + "Directional": true + }] + }, { + "ID": 19494, + "SourceStructureID": 102421, + "TargetStructureID": 483, + "Label": "102421-483 via Conventional from 102422 -> 102420", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102422, + "TargetID": 102420, + "Directional": true + }] + }, { + "ID": 19495, + "SourceStructureID": 102425, + "TargetStructureID": 483, + "Label": "102425-483 via Conventional from 102427 -> 102428", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102427, + "TargetID": 102428, + "Directional": true + }] + }, { + "ID": 19496, + "SourceStructureID": 102425, + "TargetStructureID": 102545, + "Label": "102425-102545 via Conventional from 102426 -> 102547", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102426, + "TargetID": 102547, + "Directional": true + }] + }, { + "ID": 19497, + "SourceStructureID": 102429, + "TargetStructureID": 483, + "Label": "102429-483 via Conventional from 102430 -> 20347", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102430, + "TargetID": 20347, + "Directional": true + }] + }, { + "ID": 19498, + "SourceStructureID": 102431, + "TargetStructureID": 483, + "Label": "102431-483 via Conventional from 102433 -> 20391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102433, + "TargetID": 20391, + "Directional": true + }] + }, { + "ID": 19499, + "SourceStructureID": 102437, + "TargetStructureID": 483, + "Label": "102437-483 via Conventional from 102438 -> 102439", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102438, + "TargetID": 102439, + "Directional": true + }] + }, { + "ID": 19500, + "SourceStructureID": 102451, + "TargetStructureID": 483, + "Label": "102451-483 via Conventional from 102452 -> 51182", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102452, + "TargetID": 51182, + "Directional": true + }] + }, { + "ID": 19501, + "SourceStructureID": 102456, + "TargetStructureID": 483, + "Label": "102456-483 via Conventional from 102458 -> 102457", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102458, + "TargetID": 102457, + "Directional": true + }] + }, { + "ID": 19502, + "SourceStructureID": 102461, + "TargetStructureID": 483, + "Label": "102461-483 via Conventional from 102462 -> 20351", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102462, + "TargetID": 20351, + "Directional": true + }] + }, { + "ID": 19503, + "SourceStructureID": 102463, + "TargetStructureID": 483, + "Label": "102463-483 via Conventional from 102465 -> 26781, 102465 -> 26839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102465, + "TargetID": 26781, + "Directional": true + }, { + "SourceID": 102465, + "TargetID": 26839, + "Directional": true + }] + }, { + "ID": 19504, + "SourceStructureID": 102467, + "TargetStructureID": 1724, + "Label": "102467-1724 via Conventional from 102468 -> 47360", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102468, + "TargetID": 47360, + "Directional": true + }] + }, { + "ID": 19505, + "SourceStructureID": 102476, + "TargetStructureID": 1724, + "Label": "102476-1724 via Conventional from 102486 -> 47363, 102490 -> 30431", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102486, + "TargetID": 47363, + "Directional": true + }, { + "SourceID": 102490, + "TargetID": 30431, + "Directional": true + }] + }, { + "ID": 19506, + "SourceStructureID": 102477, + "TargetStructureID": 483, + "Label": "102477-483 via Conventional from 102478 -> 20354", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102478, + "TargetID": 20354, + "Directional": true + }] + }, { + "ID": 19507, + "SourceStructureID": 102479, + "TargetStructureID": 483, + "Label": "102479-483 via Conventional from 102480 -> 26840", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102480, + "TargetID": 26840, + "Directional": true + }] + }, { + "ID": 19508, + "SourceStructureID": 102482, + "TargetStructureID": 483, + "Label": "102482-483 via Conventional from 102483 -> 20362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102483, + "TargetID": 20362, + "Directional": true + }] + }, { + "ID": 19509, + "SourceStructureID": 102498, + "TargetStructureID": 1724, + "Label": "102498-1724 via Conventional from 102506 -> 102507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102506, + "TargetID": 102507, + "Directional": true + }] + }, { + "ID": 19510, + "SourceStructureID": 102504, + "TargetStructureID": 483, + "Label": "102504-483 via Conventional from 102505 -> 20353", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102505, + "TargetID": 20353, + "Directional": true + }] + }, { + "ID": 19511, + "SourceStructureID": 102513, + "TargetStructureID": 483, + "Label": "102513-483 via Conventional from 102519 -> 20356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102519, + "TargetID": 20356, + "Directional": true + }] + }, { + "ID": 19512, + "SourceStructureID": 102534, + "TargetStructureID": 483, + "Label": "102534-483 via Conventional from 102535 -> 20359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102535, + "TargetID": 20359, + "Directional": true + }] + }, { + "ID": 19513, + "SourceStructureID": 102543, + "TargetStructureID": 483, + "Label": "102543-483 via Conventional from 102544 -> 102542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102544, + "TargetID": 102542, + "Directional": true + }] + }, { + "ID": 19514, + "SourceStructureID": 102552, + "TargetStructureID": 483, + "Label": "102552-483 via Conventional from 102553 -> 102551", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102553, + "TargetID": 102551, + "Directional": true + }] + }, { + "ID": 19515, + "SourceStructureID": 102555, + "TargetStructureID": 8575, + "Label": "102555-8575 via Conventional from 102559 -> 61560", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102559, + "TargetID": 61560, + "Directional": true + }] + }, { + "ID": 19516, + "SourceStructureID": 102577, + "TargetStructureID": 483, + "Label": "102577-483 via Conventional from 102578 -> 15167", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102578, + "TargetID": 15167, + "Directional": true + }] + }, { + "ID": 19517, + "SourceStructureID": 102577, + "TargetStructureID": 5107, + "Label": "102577-5107 via Conventional from 102579 -> 23033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102579, + "TargetID": 23033, + "Directional": true + }] + }, { + "ID": 19518, + "SourceStructureID": 102586, + "TargetStructureID": 483, + "Label": "102586-483 via Conventional from 102587 -> 6716", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102587, + "TargetID": 6716, + "Directional": true + }] + }, { + "ID": 19519, + "SourceStructureID": 102588, + "TargetStructureID": 483, + "Label": "102588-483 via Conventional from 102589 -> 6718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102589, + "TargetID": 6718, + "Directional": true + }] + }, { + "ID": 19520, + "SourceStructureID": 102599, + "TargetStructureID": 517, + "Label": "102599-517 via Conventional from 102608 -> 102609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102608, + "TargetID": 102609, + "Directional": true + }] + }, { + "ID": 19521, + "SourceStructureID": 102600, + "TargetStructureID": 483, + "Label": "102600-483 via Conventional from 102601 -> 6722", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102601, + "TargetID": 6722, + "Directional": true + }] + }, { + "ID": 19522, + "SourceStructureID": 102603, + "TargetStructureID": 483, + "Label": "102603-483 via Conventional from 102605 -> 6723", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102605, + "TargetID": 6723, + "Directional": true + }] + }, { + "ID": 19523, + "SourceStructureID": 102635, + "TargetStructureID": 483, + "Label": "102635-483 via Conventional from 102637 -> 102633", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102637, + "TargetID": 102633, + "Directional": true + }] + }, { + "ID": 19524, + "SourceStructureID": 102639, + "TargetStructureID": 483, + "Label": "102639-483 via Conventional from 102640 -> 102638", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102640, + "TargetID": 102638, + "Directional": true + }] + }, { + "ID": 19525, + "SourceStructureID": 102655, + "TargetStructureID": 483, + "Label": "102655-483 via Conventional from 102656 -> 6746", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102656, + "TargetID": 6746, + "Directional": true + }] + }, { + "ID": 19526, + "SourceStructureID": 102658, + "TargetStructureID": 483, + "Label": "102658-483 via Conventional from 102660 -> 6747", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102660, + "TargetID": 6747, + "Directional": true + }] + }, { + "ID": 19527, + "SourceStructureID": 102671, + "TargetStructureID": 5650, + "Label": "102671-5650 via Conventional from 102678 -> 102679, 102681 -> 102682", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102678, + "TargetID": 102679, + "Directional": true + }, { + "SourceID": 102681, + "TargetID": 102682, + "Directional": true + }] + }, { + "ID": 19528, + "SourceStructureID": 102683, + "TargetStructureID": 5650, + "Label": "102683-5650 via Conventional from 102684 -> 102685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102684, + "TargetID": 102685, + "Directional": true + }] + }, { + "ID": 19529, + "SourceStructureID": 102687, + "TargetStructureID": 483, + "Label": "102687-483 via Conventional from 102688 -> 6758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102688, + "TargetID": 6758, + "Directional": true + }] + }, { + "ID": 19530, + "SourceStructureID": 102703, + "TargetStructureID": 5650, + "Label": "102703-5650 via Conventional from 102707 -> 102708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102707, + "TargetID": 102708, + "Directional": true + }] + }, { + "ID": 19531, + "SourceStructureID": 102704, + "TargetStructureID": 483, + "Label": "102704-483 via Conventional from 102705 -> 26785", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102705, + "TargetID": 26785, + "Directional": true + }] + }, { + "ID": 19532, + "SourceStructureID": 102709, + "TargetStructureID": 483, + "Label": "102709-483 via Conventional from 102713 -> 6752", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102713, + "TargetID": 6752, + "Directional": true + }] + }, { + "ID": 19533, + "SourceStructureID": 102710, + "TargetStructureID": 5650, + "Label": "102710-5650 via Conventional from 102714 -> 102715, 102716 -> 102717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102714, + "TargetID": 102715, + "Directional": true + }, { + "SourceID": 102716, + "TargetID": 102717, + "Directional": true + }] + }, { + "ID": 19534, + "SourceStructureID": 102724, + "TargetStructureID": 483, + "Label": "102724-483 via Conventional from 102725 -> 6749", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102725, + "TargetID": 6749, + "Directional": true + }] + }, { + "ID": 19535, + "SourceStructureID": 102727, + "TargetStructureID": 5650, + "Label": "102727-5650 via Conventional from 102728 -> 102729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102728, + "TargetID": 102729, + "Directional": true + }] + }, { + "ID": 19536, + "SourceStructureID": 102730, + "TargetStructureID": 5650, + "Label": "102730-5650 via Conventional from 102738 -> 102740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102738, + "TargetID": 102740, + "Directional": true + }] + }, { + "ID": 19537, + "SourceStructureID": 102736, + "TargetStructureID": 483, + "Label": "102736-483 via Conventional from 102737 -> 6756", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102737, + "TargetID": 6756, + "Directional": true + }] + }, { + "ID": 19538, + "SourceStructureID": 102741, + "TargetStructureID": 483, + "Label": "102741-483 via Conventional from 102742 -> 6759", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102742, + "TargetID": 6759, + "Directional": true + }] + }, { + "ID": 19539, + "SourceStructureID": 102744, + "TargetStructureID": 483, + "Label": "102744-483 via Conventional from 102754 -> 6760", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102754, + "TargetID": 6760, + "Directional": true + }] + }, { + "ID": 19540, + "SourceStructureID": 102748, + "TargetStructureID": 102748, + "Label": "102748-102748 via BC Conventional Synapse from 102770 -> 102772", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 102770, + "TargetID": 102772, + "Directional": true + }] + }, { + "ID": 19541, + "SourceStructureID": 102756, + "TargetStructureID": 483, + "Label": "102756-483 via Conventional from 102758 -> 6765", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102758, + "TargetID": 6765, + "Directional": true + }] + }, { + "ID": 19542, + "SourceStructureID": 102757, + "TargetStructureID": 5650, + "Label": "102757-5650 via Conventional from 102778 -> 102779", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102778, + "TargetID": 102779, + "Directional": true + }] + }, { + "ID": 19543, + "SourceStructureID": 102759, + "TargetStructureID": 483, + "Label": "102759-483 via Conventional from 102760 -> 6766", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102760, + "TargetID": 6766, + "Directional": true + }] + }, { + "ID": 19544, + "SourceStructureID": 102761, + "TargetStructureID": 5650, + "Label": "102761-5650 via Conventional from 102768 -> 102769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102768, + "TargetID": 102769, + "Directional": true + }] + }, { + "ID": 19545, + "SourceStructureID": 102764, + "TargetStructureID": 5650, + "Label": "102764-5650 via Conventional from 102766 -> 102767", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102766, + "TargetID": 102767, + "Directional": true + }] + }, { + "ID": 19546, + "SourceStructureID": 102775, + "TargetStructureID": 483, + "Label": "102775-483 via Conventional from 102777 -> 26787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102777, + "TargetID": 26787, + "Directional": true + }] + }, { + "ID": 19547, + "SourceStructureID": 102785, + "TargetStructureID": 5650, + "Label": "102785-5650 via Conventional from 102800 -> 102801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102800, + "TargetID": 102801, + "Directional": true + }] + }, { + "ID": 19548, + "SourceStructureID": 102787, + "TargetStructureID": 5650, + "Label": "102787-5650 via Conventional from 102815 -> 102816", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102815, + "TargetID": 102816, + "Directional": true + }] + }, { + "ID": 19549, + "SourceStructureID": 102820, + "TargetStructureID": 483, + "Label": "102820-483 via Conventional from 102823 -> 102819", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102823, + "TargetID": 102819, + "Directional": true + }] + }, { + "ID": 19550, + "SourceStructureID": 102838, + "TargetStructureID": 102838, + "Label": "102838-102838 via Conventional from 102839 -> 102840", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102839, + "TargetID": 102840, + "Directional": true + }] + }, { + "ID": 19551, + "SourceStructureID": 102845, + "TargetStructureID": 483, + "Label": "102845-483 via Conventional from 102846 -> 102844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102846, + "TargetID": 102844, + "Directional": true + }] + }, { + "ID": 19552, + "SourceStructureID": 102859, + "TargetStructureID": 483, + "Label": "102859-483 via Conventional from 102860 -> 102858", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102860, + "TargetID": 102858, + "Directional": true + }] + }, { + "ID": 19553, + "SourceStructureID": 102863, + "TargetStructureID": 483, + "Label": "102863-483 via Conventional from 102865 -> 102862", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102865, + "TargetID": 102862, + "Directional": true + }] + }, { + "ID": 19554, + "SourceStructureID": 102877, + "TargetStructureID": 483, + "Label": "102877-483 via Conventional from 102878 -> 102876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102878, + "TargetID": 102876, + "Directional": true + }] + }, { + "ID": 19555, + "SourceStructureID": 102879, + "TargetStructureID": 483, + "Label": "102879-483 via Conventional from 102883 -> 102882", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102883, + "TargetID": 102882, + "Directional": true + }] + }, { + "ID": 19556, + "SourceStructureID": 102879, + "TargetStructureID": 69537, + "Label": "102879-69537 via Conventional from 102896 -> 69764", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102896, + "TargetID": 69764, + "Directional": true + }] + }, { + "ID": 19557, + "SourceStructureID": 102884, + "TargetStructureID": 483, + "Label": "102884-483 via Conventional from 102885 -> 102872", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102885, + "TargetID": 102872, + "Directional": true + }] + }, { + "ID": 19558, + "SourceStructureID": 102890, + "TargetStructureID": 5650, + "Label": "102890-5650 via Conventional from 102904 -> 38284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102904, + "TargetID": 38284, + "Directional": true + }] + }, { + "ID": 19559, + "SourceStructureID": 102897, + "TargetStructureID": 483, + "Label": "102897-483 via Conventional from 102902 -> 51181", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102902, + "TargetID": 51181, + "Directional": true + }] + }, { + "ID": 19560, + "SourceStructureID": 102912, + "TargetStructureID": 5650, + "Label": "102912-5650 via Conventional from 102919 -> 102920", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102919, + "TargetID": 102920, + "Directional": true + }] + }, { + "ID": 19561, + "SourceStructureID": 102932, + "TargetStructureID": 5513, + "Label": "102932-5513 via Conventional from 102934 -> 46784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102934, + "TargetID": 46784, + "Directional": true + }] + }, { + "ID": 19562, + "SourceStructureID": 102932, + "TargetStructureID": 26079, + "Label": "102932-26079 via Conventional from 102933 -> 102924", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102933, + "TargetID": 102924, + "Directional": true + }] + }, { + "ID": 19563, + "SourceStructureID": 102935, + "TargetStructureID": 5650, + "Label": "102935-5650 via Conventional from 102944 -> 102945", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102944, + "TargetID": 102945, + "Directional": true + }] + }, { + "ID": 19564, + "SourceStructureID": 102946, + "TargetStructureID": 5650, + "Label": "102946-5650 via Conventional from 102947 -> 102948", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102947, + "TargetID": 102948, + "Directional": true + }] + }, { + "ID": 19565, + "SourceStructureID": 102949, + "TargetStructureID": 5650, + "Label": "102949-5650 via Conventional from 102950 -> 102951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102950, + "TargetID": 102951, + "Directional": true + }] + }, { + "ID": 19566, + "SourceStructureID": 102952, + "TargetStructureID": 5650, + "Label": "102952-5650 via Conventional from 102954 -> 102955", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102954, + "TargetID": 102955, + "Directional": true + }] + }, { + "ID": 19567, + "SourceStructureID": 102953, + "TargetStructureID": 5650, + "Label": "102953-5650 via Conventional from 102973 -> 102974", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102973, + "TargetID": 102974, + "Directional": true + }] + }, { + "ID": 19568, + "SourceStructureID": 102956, + "TargetStructureID": 5650, + "Label": "102956-5650 via Conventional from 102957 -> 102958", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102957, + "TargetID": 102958, + "Directional": true + }] + }, { + "ID": 19569, + "SourceStructureID": 102975, + "TargetStructureID": 5650, + "Label": "102975-5650 via Conventional from 102980 -> 102981", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102980, + "TargetID": 102981, + "Directional": true + }] + }, { + "ID": 19570, + "SourceStructureID": 102985, + "TargetStructureID": 5650, + "Label": "102985-5650 via Conventional from 102987 -> 102988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 102987, + "TargetID": 102988, + "Directional": true + }] + }, { + "ID": 19571, + "SourceStructureID": 103001, + "TargetStructureID": 5650, + "Label": "103001-5650 via Conventional from 103004 -> 61076", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103004, + "TargetID": 61076, + "Directional": true + }] + }, { + "ID": 19572, + "SourceStructureID": 103008, + "TargetStructureID": 103008, + "Label": "103008-103008 via Conventional from 103009 -> 103010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103009, + "TargetID": 103010, + "Directional": true + }] + }, { + "ID": 19573, + "SourceStructureID": 103011, + "TargetStructureID": 5650, + "Label": "103011-5650 via Conventional from 103012 -> 103013", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103012, + "TargetID": 103013, + "Directional": true + }] + }, { + "ID": 19574, + "SourceStructureID": 103014, + "TargetStructureID": 5650, + "Label": "103014-5650 via Conventional from 103015 -> 103016", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103015, + "TargetID": 103016, + "Directional": true + }] + }, { + "ID": 19575, + "SourceStructureID": 103032, + "TargetStructureID": 5650, + "Label": "103032-5650 via Conventional from 103034 -> 103035", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103034, + "TargetID": 103035, + "Directional": true + }] + }, { + "ID": 19576, + "SourceStructureID": 103037, + "TargetStructureID": 5650, + "Label": "103037-5650 via Conventional from 103040 -> 103041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103040, + "TargetID": 103041, + "Directional": true + }] + }, { + "ID": 19577, + "SourceStructureID": 103047, + "TargetStructureID": 5650, + "Label": "103047-5650 via Conventional from 103048 -> 103049", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103048, + "TargetID": 103049, + "Directional": true + }] + }, { + "ID": 19578, + "SourceStructureID": 103064, + "TargetStructureID": 483, + "Label": "103064-483 via Conventional from 103065 -> 103063", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103065, + "TargetID": 103063, + "Directional": true + }] + }, { + "ID": 19579, + "SourceStructureID": 103070, + "TargetStructureID": 483, + "Label": "103070-483 via Conventional from 103071 -> 103069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103071, + "TargetID": 103069, + "Directional": true + }] + }, { + "ID": 19580, + "SourceStructureID": 103076, + "TargetStructureID": 483, + "Label": "103076-483 via Conventional from 103077 -> 103075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103077, + "TargetID": 103075, + "Directional": true + }] + }, { + "ID": 19581, + "SourceStructureID": 103076, + "TargetStructureID": 41042, + "Label": "103076-41042 via Conventional from 115809 -> 91422", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115809, + "TargetID": 91422, + "Directional": true + }] + }, { + "ID": 19582, + "SourceStructureID": 103090, + "TargetStructureID": 483, + "Label": "103090-483 via Conventional from 103091 -> 6724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103091, + "TargetID": 6724, + "Directional": true + }] + }, { + "ID": 19583, + "SourceStructureID": 103097, + "TargetStructureID": 46823, + "Label": "103097-46823 via Conventional from 103100 -> 103101", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103100, + "TargetID": 103101, + "Directional": true + }] + }, { + "ID": 19584, + "SourceStructureID": 103102, + "TargetStructureID": 483, + "Label": "103102-483 via Conventional from 103103 -> 6730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103103, + "TargetID": 6730, + "Directional": true + }] + }, { + "ID": 19585, + "SourceStructureID": 103105, + "TargetStructureID": 483, + "Label": "103105-483 via Conventional from 103106 -> 6740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103106, + "TargetID": 6740, + "Directional": true + }] + }, { + "ID": 19586, + "SourceStructureID": 103122, + "TargetStructureID": 483, + "Label": "103122-483 via Conventional from 103124 -> 103125", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103124, + "TargetID": 103125, + "Directional": true + }] + }, { + "ID": 19587, + "SourceStructureID": 103128, + "TargetStructureID": 483, + "Label": "103128-483 via Conventional from 103130 -> 6744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103130, + "TargetID": 6744, + "Directional": true + }] + }, { + "ID": 19588, + "SourceStructureID": 103132, + "TargetStructureID": 483, + "Label": "103132-483 via Conventional from 103133 -> 103131", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103133, + "TargetID": 103131, + "Directional": true + }] + }, { + "ID": 19589, + "SourceStructureID": 103182, + "TargetStructureID": 483, + "Label": "103182-483 via Conventional from 103184 -> 6732", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103184, + "TargetID": 6732, + "Directional": true + }] + }, { + "ID": 19590, + "SourceStructureID": 103187, + "TargetStructureID": 483, + "Label": "103187-483 via Conventional from 103188 -> 6731", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103188, + "TargetID": 6731, + "Directional": true + }] + }, { + "ID": 19591, + "SourceStructureID": 103203, + "TargetStructureID": 483, + "Label": "103203-483 via Conventional from 103207 -> 28766", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103207, + "TargetID": 28766, + "Directional": true + }] + }, { + "ID": 19592, + "SourceStructureID": 103228, + "TargetStructureID": 483, + "Label": "103228-483 via Conventional from 103230 -> 28768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103230, + "TargetID": 28768, + "Directional": true + }] + }, { + "ID": 19593, + "SourceStructureID": 103240, + "TargetStructureID": 483, + "Label": "103240-483 via Conventional from 103251 -> 103252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103251, + "TargetID": 103252, + "Directional": true + }] + }, { + "ID": 19594, + "SourceStructureID": 103244, + "TargetStructureID": 483, + "Label": "103244-483 via Conventional from 103246 -> 103247", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103246, + "TargetID": 103247, + "Directional": true + }] + }, { + "ID": 19595, + "SourceStructureID": 103244, + "TargetStructureID": 7568, + "Label": "103244-7568 via Conventional from 103245 -> 27088", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103245, + "TargetID": 27088, + "Directional": true + }] + }, { + "ID": 19596, + "SourceStructureID": 103248, + "TargetStructureID": 483, + "Label": "103248-483 via Conventional from 134085 -> 134084", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 134085, + "TargetID": 134084, + "Directional": true + }] + }, { + "ID": 19597, + "SourceStructureID": 103254, + "TargetStructureID": 483, + "Label": "103254-483 via Conventional from 103255 -> 28769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103255, + "TargetID": 28769, + "Directional": true + }] + }, { + "ID": 19598, + "SourceStructureID": 103258, + "TargetStructureID": 606, + "Label": "103258-606 via Conventional from 103260 -> 53208", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103260, + "TargetID": 53208, + "Directional": true + }] + }, { + "ID": 19599, + "SourceStructureID": 103265, + "TargetStructureID": 483, + "Label": "103265-483 via Conventional from 103266 -> 103267", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103266, + "TargetID": 103267, + "Directional": true + }] + }, { + "ID": 19600, + "SourceStructureID": 103269, + "TargetStructureID": 483, + "Label": "103269-483 via Conventional from 103270 -> 103268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103270, + "TargetID": 103268, + "Directional": true + }] + }, { + "ID": 19601, + "SourceStructureID": 103274, + "TargetStructureID": 483, + "Label": "103274-483 via Conventional from 103278 -> 103279", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103278, + "TargetID": 103279, + "Directional": true + }] + }, { + "ID": 19602, + "SourceStructureID": 103281, + "TargetStructureID": 483, + "Label": "103281-483 via Conventional from 103282 -> 103280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103282, + "TargetID": 103280, + "Directional": true + }] + }, { + "ID": 19603, + "SourceStructureID": 103287, + "TargetStructureID": 483, + "Label": "103287-483 via Conventional from 103289 -> 103286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103289, + "TargetID": 103286, + "Directional": true + }] + }, { + "ID": 19604, + "SourceStructureID": 103313, + "TargetStructureID": 483, + "Label": "103313-483 via Conventional from 103315 -> 103312", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103315, + "TargetID": 103312, + "Directional": true + }] + }, { + "ID": 19605, + "SourceStructureID": 103316, + "TargetStructureID": 483, + "Label": "103316-483 via Conventional from 103317 -> 103318", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103317, + "TargetID": 103318, + "Directional": true + }] + }, { + "ID": 19606, + "SourceStructureID": 103331, + "TargetStructureID": 483, + "Label": "103331-483 via Conventional from 103332 -> 6093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103332, + "TargetID": 6093, + "Directional": true + }] + }, { + "ID": 19607, + "SourceStructureID": 103339, + "TargetStructureID": 483, + "Label": "103339-483 via Conventional from 103340 -> 6089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103340, + "TargetID": 6089, + "Directional": true + }] + }, { + "ID": 19608, + "SourceStructureID": 103352, + "TargetStructureID": 483, + "Label": "103352-483 via Conventional from 103353 -> 6769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103353, + "TargetID": 6769, + "Directional": true + }] + }, { + "ID": 19609, + "SourceStructureID": 103358, + "TargetStructureID": 483, + "Label": "103358-483 via Conventional from 103361 -> 6085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103361, + "TargetID": 6085, + "Directional": true + }] + }, { + "ID": 19610, + "SourceStructureID": 103362, + "TargetStructureID": 483, + "Label": "103362-483 via Conventional from 103366 -> 6084", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103366, + "TargetID": 6084, + "Directional": true + }] + }, { + "ID": 19611, + "SourceStructureID": 103367, + "TargetStructureID": 483, + "Label": "103367-483 via Conventional from 103368 -> 6082", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103368, + "TargetID": 6082, + "Directional": true + }] + }, { + "ID": 19612, + "SourceStructureID": 103381, + "TargetStructureID": 483, + "Label": "103381-483 via Conventional from 103382 -> 6775", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103382, + "TargetID": 6775, + "Directional": true + }] + }, { + "ID": 19613, + "SourceStructureID": 103399, + "TargetStructureID": 483, + "Label": "103399-483 via Conventional from 103400 -> 6071", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103400, + "TargetID": 6071, + "Directional": true + }] + }, { + "ID": 19614, + "SourceStructureID": 103411, + "TargetStructureID": 483, + "Label": "103411-483 via Conventional from 103414 -> 6772", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103414, + "TargetID": 6772, + "Directional": true + }] + }, { + "ID": 19615, + "SourceStructureID": 103417, + "TargetStructureID": 483, + "Label": "103417-483 via Conventional from 103418 -> 6774", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103418, + "TargetID": 6774, + "Directional": true + }] + }, { + "ID": 19616, + "SourceStructureID": 103440, + "TargetStructureID": 483, + "Label": "103440-483 via Conventional from 103441 -> 49799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103441, + "TargetID": 49799, + "Directional": true + }] + }, { + "ID": 19617, + "SourceStructureID": 103458, + "TargetStructureID": 483, + "Label": "103458-483 via Conventional from 103459 -> 97736", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103459, + "TargetID": 97736, + "Directional": true + }] + }, { + "ID": 19618, + "SourceStructureID": 103462, + "TargetStructureID": 483, + "Label": "103462-483 via Conventional from 103463 -> 97732", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103463, + "TargetID": 97732, + "Directional": true + }] + }, { + "ID": 19619, + "SourceStructureID": 103475, + "TargetStructureID": 483, + "Label": "103475-483 via Conventional from 103476 -> 97769", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103476, + "TargetID": 97769, + "Directional": true + }] + }, { + "ID": 19620, + "SourceStructureID": 103485, + "TargetStructureID": 483, + "Label": "103485-483 via Conventional from 103488 -> 92316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103488, + "TargetID": 92316, + "Directional": true + }] + }, { + "ID": 19621, + "SourceStructureID": 103514, + "TargetStructureID": 483, + "Label": "103514-483 via Conventional from 103515 -> 97778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103515, + "TargetID": 97778, + "Directional": true + }] + }, { + "ID": 19622, + "SourceStructureID": 103517, + "TargetStructureID": 483, + "Label": "103517-483 via Conventional from 103518 -> 103516", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103518, + "TargetID": 103516, + "Directional": true + }] + }, { + "ID": 19623, + "SourceStructureID": 103526, + "TargetStructureID": 483, + "Label": "103526-483 via Conventional from 103527 -> 97436", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103527, + "TargetID": 97436, + "Directional": true + }] + }, { + "ID": 19624, + "SourceStructureID": 103532, + "TargetStructureID": 483, + "Label": "103532-483 via Conventional from 103533 -> 92338", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103533, + "TargetID": 92338, + "Directional": true + }] + }, { + "ID": 19625, + "SourceStructureID": 103541, + "TargetStructureID": 483, + "Label": "103541-483 via Conventional from 103542 -> 97437", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103542, + "TargetID": 97437, + "Directional": true + }] + }, { + "ID": 19626, + "SourceStructureID": 103557, + "TargetStructureID": 5649, + "Label": "103557-5649 via Conventional from 103765 -> 103763", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103765, + "TargetID": 103763, + "Directional": true + }] + }, { + "ID": 19627, + "SourceStructureID": 103563, + "TargetStructureID": 5650, + "Label": "103563-5650 via Conventional from 103568 -> 103569", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103568, + "TargetID": 103569, + "Directional": true + }] + }, { + "ID": 19628, + "SourceStructureID": 103595, + "TargetStructureID": 5650, + "Label": "103595-5650 via Conventional from 103596 -> 103597", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103596, + "TargetID": 103597, + "Directional": true + }] + }, { + "ID": 19629, + "SourceStructureID": 103603, + "TargetStructureID": 5650, + "Label": "103603-5650 via Conventional from 103607 -> 103608", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103607, + "TargetID": 103608, + "Directional": true + }] + }, { + "ID": 19630, + "SourceStructureID": 103613, + "TargetStructureID": 5650, + "Label": "103613-5650 via Conventional from 103633 -> 103634", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103633, + "TargetID": 103634, + "Directional": true + }] + }, { + "ID": 19631, + "SourceStructureID": 103639, + "TargetStructureID": 5650, + "Label": "103639-5650 via Conventional from 103640 -> 103641", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103640, + "TargetID": 103641, + "Directional": true + }] + }, { + "ID": 19632, + "SourceStructureID": 103642, + "TargetStructureID": 5650, + "Label": "103642-5650 via Conventional from 103643 -> 103644", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103643, + "TargetID": 103644, + "Directional": true + }] + }, { + "ID": 19633, + "SourceStructureID": 103651, + "TargetStructureID": 5650, + "Label": "103651-5650 via Conventional from 103652 -> 103653", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103652, + "TargetID": 103653, + "Directional": true + }] + }, { + "ID": 19634, + "SourceStructureID": 103669, + "TargetStructureID": 5650, + "Label": "103669-5650 via Conventional from 103670 -> 103672", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103670, + "TargetID": 103672, + "Directional": true + }] + }, { + "ID": 19635, + "SourceStructureID": 103680, + "TargetStructureID": 5650, + "Label": "103680-5650 via Conventional from 103683 -> 103684", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103683, + "TargetID": 103684, + "Directional": true + }] + }, { + "ID": 19636, + "SourceStructureID": 103680, + "TargetStructureID": 12897, + "Label": "103680-12897 via Ribbon Synapse from 103686 -> 103685", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 103686, + "TargetID": 103685, + "Directional": true + }] + }, { + "ID": 19637, + "SourceStructureID": 103687, + "TargetStructureID": 5650, + "Label": "103687-5650 via Conventional from 103696 -> 103697", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103696, + "TargetID": 103697, + "Directional": true + }] + }, { + "ID": 19638, + "SourceStructureID": 103701, + "TargetStructureID": 5650, + "Label": "103701-5650 via Conventional from 103702 -> 103703", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103702, + "TargetID": 103703, + "Directional": true + }] + }, { + "ID": 19639, + "SourceStructureID": 103707, + "TargetStructureID": 5650, + "Label": "103707-5650 via Conventional from 103708 -> 103709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103708, + "TargetID": 103709, + "Directional": true + }] + }, { + "ID": 19640, + "SourceStructureID": 103728, + "TargetStructureID": 6857, + "Label": "103728-6857 via Conventional from 103729 -> 103730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103729, + "TargetID": 103730, + "Directional": true + }] + }, { + "ID": 19641, + "SourceStructureID": 103734, + "TargetStructureID": 483, + "Label": "103734-483 via Conventional from 103735 -> 103733", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103735, + "TargetID": 103733, + "Directional": true + }] + }, { + "ID": 19642, + "SourceStructureID": 103738, + "TargetStructureID": 483, + "Label": "103738-483 via Conventional from 103739 -> 103727", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103739, + "TargetID": 103727, + "Directional": true + }] + }, { + "ID": 19643, + "SourceStructureID": 103750, + "TargetStructureID": 483, + "Label": "103750-483 via Conventional from 103751 -> 103752", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103751, + "TargetID": 103752, + "Directional": true + }] + }, { + "ID": 19644, + "SourceStructureID": 103754, + "TargetStructureID": 483, + "Label": "103754-483 via Conventional from 103755 -> 103753", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103755, + "TargetID": 103753, + "Directional": true + }] + }, { + "ID": 19645, + "SourceStructureID": 103771, + "TargetStructureID": 12897, + "Label": "103771-12897 via Ribbon Synapse from 135376 -> 135375", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135376, + "TargetID": 135375, + "Directional": true + }] + }, { + "ID": 19646, + "SourceStructureID": 103830, + "TargetStructureID": 5650, + "Label": "103830-5650 via Conventional from 103831 -> 103832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103831, + "TargetID": 103832, + "Directional": true + }] + }, { + "ID": 19647, + "SourceStructureID": 103834, + "TargetStructureID": 5650, + "Label": "103834-5650 via Conventional from 103835 -> 103836", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103835, + "TargetID": 103836, + "Directional": true + }] + }, { + "ID": 19648, + "SourceStructureID": 103841, + "TargetStructureID": 5650, + "Label": "103841-5650 via Conventional from 103842 -> 103843", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103842, + "TargetID": 103843, + "Directional": true + }] + }, { + "ID": 19649, + "SourceStructureID": 103846, + "TargetStructureID": 5650, + "Label": "103846-5650 via Conventional from 103847 -> 103848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103847, + "TargetID": 103848, + "Directional": true + }] + }, { + "ID": 19650, + "SourceStructureID": 103846, + "TargetStructureID": 112819, + "Label": "103846-112819 via Conventional from 112822 -> 112821", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112822, + "TargetID": 112821, + "Directional": true + }] + }, { + "ID": 19651, + "SourceStructureID": 103853, + "TargetStructureID": 5650, + "Label": "103853-5650 via Conventional from 103854 -> 103855", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103854, + "TargetID": 103855, + "Directional": true + }] + }, { + "ID": 19652, + "SourceStructureID": 103856, + "TargetStructureID": 5650, + "Label": "103856-5650 via Conventional from 103867 -> 103868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103867, + "TargetID": 103868, + "Directional": true + }] + }, { + "ID": 19653, + "SourceStructureID": 103869, + "TargetStructureID": 5650, + "Label": "103869-5650 via Conventional from 103870 -> 103871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103870, + "TargetID": 103871, + "Directional": true + }] + }, { + "ID": 19654, + "SourceStructureID": 103872, + "TargetStructureID": 5650, + "Label": "103872-5650 via Conventional from 103878 -> 103879", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103878, + "TargetID": 103879, + "Directional": true + }] + }, { + "ID": 19655, + "SourceStructureID": 103875, + "TargetStructureID": 5650, + "Label": "103875-5650 via Conventional from 103876 -> 103877", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103876, + "TargetID": 103877, + "Directional": true + }] + }, { + "ID": 19656, + "SourceStructureID": 103880, + "TargetStructureID": 5650, + "Label": "103880-5650 via Conventional from 103881 -> 103882", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103881, + "TargetID": 103882, + "Directional": true + }] + }, { + "ID": 19657, + "SourceStructureID": 103896, + "TargetStructureID": 5650, + "Label": "103896-5650 via Conventional from 103904 -> 23487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103904, + "TargetID": 23487, + "Directional": true + }] + }, { + "ID": 19658, + "SourceStructureID": 103907, + "TargetStructureID": 5650, + "Label": "103907-5650 via Conventional from 103908 -> 103909", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103908, + "TargetID": 103909, + "Directional": true + }] + }, { + "ID": 19659, + "SourceStructureID": 103913, + "TargetStructureID": 5650, + "Label": "103913-5650 via Conventional from 103914 -> 23491", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103914, + "TargetID": 23491, + "Directional": true + }] + }, { + "ID": 19660, + "SourceStructureID": 103915, + "TargetStructureID": 5650, + "Label": "103915-5650 via Conventional from 103916 -> 103917", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103916, + "TargetID": 103917, + "Directional": true + }] + }, { + "ID": 19661, + "SourceStructureID": 103920, + "TargetStructureID": 5650, + "Label": "103920-5650 via Conventional from 103921 -> 23489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103921, + "TargetID": 23489, + "Directional": true + }] + }, { + "ID": 19662, + "SourceStructureID": 103922, + "TargetStructureID": 5650, + "Label": "103922-5650 via Conventional from 103923 -> 23494", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103923, + "TargetID": 23494, + "Directional": true + }] + }, { + "ID": 19663, + "SourceStructureID": 103951, + "TargetStructureID": 5650, + "Label": "103951-5650 via Conventional from 103953 -> 103954", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103953, + "TargetID": 103954, + "Directional": true + }] + }, { + "ID": 19664, + "SourceStructureID": 103956, + "TargetStructureID": 5650, + "Label": "103956-5650 via Conventional from 103957 -> 23482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103957, + "TargetID": 23482, + "Directional": true + }] + }, { + "ID": 19665, + "SourceStructureID": 103958, + "TargetStructureID": 5650, + "Label": "103958-5650 via Conventional from 103959 -> 103960", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103959, + "TargetID": 103960, + "Directional": true + }] + }, { + "ID": 19666, + "SourceStructureID": 103969, + "TargetStructureID": 5650, + "Label": "103969-5650 via Conventional from 103970 -> 103971", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103970, + "TargetID": 103971, + "Directional": true + }] + }, { + "ID": 19667, + "SourceStructureID": 103975, + "TargetStructureID": 5650, + "Label": "103975-5650 via Conventional from 103979 -> 103980", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 103979, + "TargetID": 103980, + "Directional": true + }] + }, { + "ID": 19668, + "SourceStructureID": 103987, + "TargetStructureID": 5650, + "Label": "103987-5650 via Conventional from 104018 -> 104019", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104018, + "TargetID": 104019, + "Directional": true + }] + }, { + "ID": 19669, + "SourceStructureID": 103992, + "TargetStructureID": 5278, + "Label": "103992-5278 via Conventional from 104000 -> 104001", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104000, + "TargetID": 104001, + "Directional": true + }] + }, { + "ID": 19670, + "SourceStructureID": 103999, + "TargetStructureID": 5278, + "Label": "103999-5278 via Conventional from 104004 -> 11189", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104004, + "TargetID": 11189, + "Directional": true + }] + }, { + "ID": 19671, + "SourceStructureID": 104013, + "TargetStructureID": 5650, + "Label": "104013-5650 via Conventional from 104016 -> 104017", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104016, + "TargetID": 104017, + "Directional": true + }] + }, { + "ID": 19672, + "SourceStructureID": 104043, + "TargetStructureID": 5650, + "Label": "104043-5650 via Conventional from 104047 -> 104048", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104047, + "TargetID": 104048, + "Directional": true + }] + }, { + "ID": 19673, + "SourceStructureID": 104049, + "TargetStructureID": 5278, + "Label": "104049-5278 via Conventional from 104065 -> 104067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104065, + "TargetID": 104067, + "Directional": true + }] + }, { + "ID": 19674, + "SourceStructureID": 104056, + "TargetStructureID": 5650, + "Label": "104056-5650 via Conventional from 104058 -> 104061", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104058, + "TargetID": 104061, + "Directional": true + }] + }, { + "ID": 19675, + "SourceStructureID": 104062, + "TargetStructureID": 5278, + "Label": "104062-5278 via Conventional from 104864 -> 104865", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104864, + "TargetID": 104865, + "Directional": true + }] + }, { + "ID": 19676, + "SourceStructureID": 104063, + "TargetStructureID": 5650, + "Label": "104063-5650 via Conventional from 104077 -> 104078", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104077, + "TargetID": 104078, + "Directional": true + }] + }, { + "ID": 19677, + "SourceStructureID": 104082, + "TargetStructureID": 5650, + "Label": "104082-5650 via Conventional from 104085 -> 104086", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104085, + "TargetID": 104086, + "Directional": true + }] + }, { + "ID": 19678, + "SourceStructureID": 104084, + "TargetStructureID": 104079, + "Label": "104084-104079 via Conventional from 104087 -> 104088", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104087, + "TargetID": 104088, + "Directional": true + }] + }, { + "ID": 19679, + "SourceStructureID": 104090, + "TargetStructureID": 104089, + "Label": "104090-104089 via Conventional from 104091 -> 104092", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104091, + "TargetID": 104092, + "Directional": true + }] + }, { + "ID": 19680, + "SourceStructureID": 104097, + "TargetStructureID": 5650, + "Label": "104097-5650 via Conventional from 104102 -> 30146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104102, + "TargetID": 30146, + "Directional": true + }] + }, { + "ID": 19681, + "SourceStructureID": 104103, + "TargetStructureID": 5650, + "Label": "104103-5650 via Conventional from 104104 -> 30147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104104, + "TargetID": 30147, + "Directional": true + }] + }, { + "ID": 19682, + "SourceStructureID": 104109, + "TargetStructureID": 1021, + "Label": "104109-1021 via Conventional from 125238 -> 125237", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125238, + "TargetID": 125237, + "Directional": true + }] + }, { + "ID": 19683, + "SourceStructureID": 104109, + "TargetStructureID": 5650, + "Label": "104109-5650 via Conventional from 104111 -> 30144", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104111, + "TargetID": 30144, + "Directional": true + }] + }, { + "ID": 19684, + "SourceStructureID": 104117, + "TargetStructureID": 5278, + "Label": "104117-5278 via Conventional from 104150 -> 20127", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104150, + "TargetID": 20127, + "Directional": true + }] + }, { + "ID": 19685, + "SourceStructureID": 104118, + "TargetStructureID": 5650, + "Label": "104118-5650 via Conventional from 104119 -> 30148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104119, + "TargetID": 30148, + "Directional": true + }] + }, { + "ID": 19686, + "SourceStructureID": 104131, + "TargetStructureID": 5650, + "Label": "104131-5650 via Conventional from 104135 -> 104136", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104135, + "TargetID": 104136, + "Directional": true + }] + }, { + "ID": 19687, + "SourceStructureID": 104140, + "TargetStructureID": 5650, + "Label": "104140-5650 via Conventional from 104145 -> 104147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104145, + "TargetID": 104147, + "Directional": true + }] + }, { + "ID": 19688, + "SourceStructureID": 104143, + "TargetStructureID": 5278, + "Label": "104143-5278 via Conventional from 104148 -> 11209", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104148, + "TargetID": 11209, + "Directional": true + }] + }, { + "ID": 19689, + "SourceStructureID": 104155, + "TargetStructureID": 6120, + "Label": "104155-6120 via Conventional from 111226 -> 111225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111226, + "TargetID": 111225, + "Directional": true + }] + }, { + "ID": 19690, + "SourceStructureID": 104157, + "TargetStructureID": 5650, + "Label": "104157-5650 via Conventional from 104158 -> 104159, 104165 -> 30157", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104158, + "TargetID": 104159, + "Directional": true + }, { + "SourceID": 104165, + "TargetID": 30157, + "Directional": true + }] + }, { + "ID": 19691, + "SourceStructureID": 104160, + "TargetStructureID": 5650, + "Label": "104160-5650 via Conventional from 104161 -> 104162", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104161, + "TargetID": 104162, + "Directional": true + }] + }, { + "ID": 19692, + "SourceStructureID": 104168, + "TargetStructureID": 5278, + "Label": "104168-5278 via Conventional from 104169 -> 11197", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104169, + "TargetID": 11197, + "Directional": true + }] + }, { + "ID": 19693, + "SourceStructureID": 104170, + "TargetStructureID": 5278, + "Label": "104170-5278 via Conventional from 104173 -> 11198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104173, + "TargetID": 11198, + "Directional": true + }] + }, { + "ID": 19694, + "SourceStructureID": 104180, + "TargetStructureID": 5278, + "Label": "104180-5278 via Conventional from 104181 -> 20130", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104181, + "TargetID": 20130, + "Directional": true + }] + }, { + "ID": 19695, + "SourceStructureID": 104208, + "TargetStructureID": 5278, + "Label": "104208-5278 via Conventional from 104209 -> 104210", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104209, + "TargetID": 104210, + "Directional": true + }] + }, { + "ID": 19696, + "SourceStructureID": 104211, + "TargetStructureID": 142, + "Label": "104211-142 via Conventional from 104862 -> 92451", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104862, + "TargetID": 92451, + "Directional": true + }] + }, { + "ID": 19697, + "SourceStructureID": 104211, + "TargetStructureID": 5278, + "Label": "104211-5278 via Conventional from 104860 -> 11207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104860, + "TargetID": 11207, + "Directional": true + }] + }, { + "ID": 19698, + "SourceStructureID": 104223, + "TargetStructureID": 5278, + "Label": "104223-5278 via Conventional from 104224 -> 11205", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104224, + "TargetID": 11205, + "Directional": true + }] + }, { + "ID": 19699, + "SourceStructureID": 104266, + "TargetStructureID": 5650, + "Label": "104266-5650 via Conventional from 104267 -> 104268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104267, + "TargetID": 104268, + "Directional": true + }] + }, { + "ID": 19700, + "SourceStructureID": 104273, + "TargetStructureID": 5650, + "Label": "104273-5650 via Conventional from 104274 -> 104275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104274, + "TargetID": 104275, + "Directional": true + }] + }, { + "ID": 19701, + "SourceStructureID": 104276, + "TargetStructureID": 5278, + "Label": "104276-5278 via Conventional from 104279 -> 104280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104279, + "TargetID": 104280, + "Directional": true + }] + }, { + "ID": 19702, + "SourceStructureID": 104285, + "TargetStructureID": 5650, + "Label": "104285-5650 via Conventional from 126391 -> 126390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126391, + "TargetID": 126390, + "Directional": true + }] + }, { + "ID": 19703, + "SourceStructureID": 104289, + "TargetStructureID": 5650, + "Label": "104289-5650 via Conventional from 104291 -> 104293", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104291, + "TargetID": 104293, + "Directional": true + }] + }, { + "ID": 19704, + "SourceStructureID": 104335, + "TargetStructureID": 5650, + "Label": "104335-5650 via Conventional from 104341 -> 104342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104341, + "TargetID": 104342, + "Directional": true + }] + }, { + "ID": 19705, + "SourceStructureID": 104340, + "TargetStructureID": 5278, + "Label": "104340-5278 via Conventional from 104343 -> 92264", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104343, + "TargetID": 92264, + "Directional": true + }] + }, { + "ID": 19706, + "SourceStructureID": 104346, + "TargetStructureID": 5278, + "Label": "104346-5278 via Conventional from 104349 -> 92265", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104349, + "TargetID": 92265, + "Directional": true + }] + }, { + "ID": 19707, + "SourceStructureID": 104352, + "TargetStructureID": 5650, + "Label": "104352-5650 via Conventional from 104357 -> 104358", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104357, + "TargetID": 104358, + "Directional": true + }] + }, { + "ID": 19708, + "SourceStructureID": 104359, + "TargetStructureID": 5650, + "Label": "104359-5650 via Conventional from 104360 -> 104361", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104360, + "TargetID": 104361, + "Directional": true + }] + }, { + "ID": 19709, + "SourceStructureID": 104364, + "TargetStructureID": 5650, + "Label": "104364-5650 via Conventional from 104365 -> 104366", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104365, + "TargetID": 104366, + "Directional": true + }] + }, { + "ID": 19710, + "SourceStructureID": 104368, + "TargetStructureID": 5650, + "Label": "104368-5650 via Conventional from 104369 -> 29903", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104369, + "TargetID": 29903, + "Directional": true + }] + }, { + "ID": 19711, + "SourceStructureID": 104373, + "TargetStructureID": 5650, + "Label": "104373-5650 via Conventional from 104374 -> 29902", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104374, + "TargetID": 29902, + "Directional": true + }] + }, { + "ID": 19712, + "SourceStructureID": 104388, + "TargetStructureID": 5278, + "Label": "104388-5278 via Conventional from 104389 -> 104390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104389, + "TargetID": 104390, + "Directional": true + }] + }, { + "ID": 19713, + "SourceStructureID": 104399, + "TargetStructureID": 5278, + "Label": "104399-5278 via Conventional from 104400 -> 92195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104400, + "TargetID": 92195, + "Directional": true + }] + }, { + "ID": 19714, + "SourceStructureID": 104410, + "TargetStructureID": 5278, + "Label": "104410-5278 via Conventional from 104413 -> 104415", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104413, + "TargetID": 104415, + "Directional": true + }] + }, { + "ID": 19715, + "SourceStructureID": 104414, + "TargetStructureID": 5650, + "Label": "104414-5650 via Conventional from 104422 -> 104424", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104422, + "TargetID": 104424, + "Directional": true + }] + }, { + "ID": 19716, + "SourceStructureID": 104430, + "TargetStructureID": 5278, + "Label": "104430-5278 via Conventional from 104431 -> 104432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104431, + "TargetID": 104432, + "Directional": true + }] + }, { + "ID": 19717, + "SourceStructureID": 104434, + "TargetStructureID": 5278, + "Label": "104434-5278 via Conventional from 104436 -> 92167", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104436, + "TargetID": 92167, + "Directional": true + }] + }, { + "ID": 19718, + "SourceStructureID": 104435, + "TargetStructureID": 5284, + "Label": "104435-5284 via Conventional from 113310 -> 113306", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113310, + "TargetID": 113306, + "Directional": true + }] + }, { + "ID": 19719, + "SourceStructureID": 104444, + "TargetStructureID": 5278, + "Label": "104444-5278 via Conventional from 104447 -> 104528", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104447, + "TargetID": 104528, + "Directional": true + }] + }, { + "ID": 19720, + "SourceStructureID": 104462, + "TargetStructureID": 5650, + "Label": "104462-5650 via Conventional from 104463 -> 104464", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104463, + "TargetID": 104464, + "Directional": true + }] + }, { + "ID": 19721, + "SourceStructureID": 104468, + "TargetStructureID": 5650, + "Label": "104468-5650 via Conventional from 104470 -> 29905", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104470, + "TargetID": 29905, + "Directional": true + }] + }, { + "ID": 19722, + "SourceStructureID": 104473, + "TargetStructureID": 5650, + "Label": "104473-5650 via Conventional from 104474 -> 29917", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104474, + "TargetID": 29917, + "Directional": true + }] + }, { + "ID": 19723, + "SourceStructureID": 104477, + "TargetStructureID": 5649, + "Label": "104477-5649 via Conventional from 135452 -> 135451", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135452, + "TargetID": 135451, + "Directional": true + }] + }, { + "ID": 19724, + "SourceStructureID": 104484, + "TargetStructureID": 5649, + "Label": "104484-5649 via Conventional from 104486 -> 104487", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104486, + "TargetID": 104487, + "Directional": true + }] + }, { + "ID": 19725, + "SourceStructureID": 104505, + "TargetStructureID": 5649, + "Label": "104505-5649 via Conventional from 104506 -> 104504", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104506, + "TargetID": 104504, + "Directional": true + }] + }, { + "ID": 19726, + "SourceStructureID": 104507, + "TargetStructureID": 5278, + "Label": "104507-5278 via Conventional from 104510 -> 92165", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104510, + "TargetID": 92165, + "Directional": true + }] + }, { + "ID": 19727, + "SourceStructureID": 104509, + "TargetStructureID": 104523, + "Label": "104509-104523 via Conventional from 104522 -> 104524", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104522, + "TargetID": 104524, + "Directional": true + }] + }, { + "ID": 19728, + "SourceStructureID": 104523, + "TargetStructureID": 5649, + "Label": "104523-5649 via Conventional from 104548 -> 104549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104548, + "TargetID": 104549, + "Directional": true + }] + }, { + "ID": 19729, + "SourceStructureID": 104526, + "TargetStructureID": 5649, + "Label": "104526-5649 via Conventional from 104527 -> 104525", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104527, + "TargetID": 104525, + "Directional": true + }] + }, { + "ID": 19730, + "SourceStructureID": 104534, + "TargetStructureID": 5649, + "Label": "104534-5649 via Conventional from 104535 -> 104533", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104535, + "TargetID": 104533, + "Directional": true + }] + }, { + "ID": 19731, + "SourceStructureID": 104538, + "TargetStructureID": 104541, + "Label": "104538-104541 via Conventional from 104539 -> 104542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104539, + "TargetID": 104542, + "Directional": true + }] + }, { + "ID": 19732, + "SourceStructureID": 104554, + "TargetStructureID": 5649, + "Label": "104554-5649 via Conventional from 104555 -> 104550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104555, + "TargetID": 104550, + "Directional": true + }] + }, { + "ID": 19733, + "SourceStructureID": 104556, + "TargetStructureID": 5649, + "Label": "104556-5649 via Conventional from 104558 -> 104553", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104558, + "TargetID": 104553, + "Directional": true + }] + }, { + "ID": 19734, + "SourceStructureID": 104559, + "TargetStructureID": 5649, + "Label": "104559-5649 via Conventional from 135454 -> 135453", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135454, + "TargetID": 135453, + "Directional": true + }] + }, { + "ID": 19735, + "SourceStructureID": 104565, + "TargetStructureID": 5649, + "Label": "104565-5649 via Conventional from 104566 -> 104564", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104566, + "TargetID": 104564, + "Directional": true + }] + }, { + "ID": 19736, + "SourceStructureID": 104572, + "TargetStructureID": 5649, + "Label": "104572-5649 via Conventional from 104574 -> 104552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104574, + "TargetID": 104552, + "Directional": true + }] + }, { + "ID": 19737, + "SourceStructureID": 104580, + "TargetStructureID": 5649, + "Label": "104580-5649 via Conventional from 104581 -> 104579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104581, + "TargetID": 104579, + "Directional": true + }] + }, { + "ID": 19738, + "SourceStructureID": 104587, + "TargetStructureID": 5278, + "Label": "104587-5278 via Conventional from 104590 -> 92220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104590, + "TargetID": 92220, + "Directional": true + }] + }, { + "ID": 19739, + "SourceStructureID": 104591, + "TargetStructureID": 5278, + "Label": "104591-5278 via Conventional from 104592 -> 92221, 104597 -> 92221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104592, + "TargetID": 92221, + "Directional": true + }, { + "SourceID": 104597, + "TargetID": 92221, + "Directional": true + }] + }, { + "ID": 19740, + "SourceStructureID": 104593, + "TargetStructureID": 5278, + "Label": "104593-5278 via Conventional from 104594 -> 104595", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104594, + "TargetID": 104595, + "Directional": true + }] + }, { + "ID": 19741, + "SourceStructureID": 104616, + "TargetStructureID": 5649, + "Label": "104616-5649 via Conventional from 104617 -> 104615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104617, + "TargetID": 104615, + "Directional": true + }] + }, { + "ID": 19742, + "SourceStructureID": 104619, + "TargetStructureID": 5649, + "Label": "104619-5649 via Conventional from 104620 -> 104618, 136133 -> 136132", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104620, + "TargetID": 104618, + "Directional": true + }, { + "SourceID": 136133, + "TargetID": 136132, + "Directional": true + }] + }, { + "ID": 19743, + "SourceStructureID": 104633, + "TargetStructureID": 5649, + "Label": "104633-5649 via Conventional from 135413 -> 135412", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135413, + "TargetID": 135412, + "Directional": true + }] + }, { + "ID": 19744, + "SourceStructureID": 104638, + "TargetStructureID": 5649, + "Label": "104638-5649 via Conventional from 104639 -> 53841", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104639, + "TargetID": 53841, + "Directional": true + }] + }, { + "ID": 19745, + "SourceStructureID": 104648, + "TargetStructureID": 5649, + "Label": "104648-5649 via Conventional from 104650 -> 53840", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104650, + "TargetID": 53840, + "Directional": true + }] + }, { + "ID": 19746, + "SourceStructureID": 104651, + "TargetStructureID": 5649, + "Label": "104651-5649 via Conventional from 104652 -> 53837", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104652, + "TargetID": 53837, + "Directional": true + }] + }, { + "ID": 19747, + "SourceStructureID": 104669, + "TargetStructureID": 5649, + "Label": "104669-5649 via Conventional from 104670 -> 104668", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104670, + "TargetID": 104668, + "Directional": true + }] + }, { + "ID": 19748, + "SourceStructureID": 104677, + "TargetStructureID": 13525, + "Label": "104677-13525 via Conventional from 104683 -> 85667", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104683, + "TargetID": 85667, + "Directional": true + }] + }, { + "ID": 19749, + "SourceStructureID": 104690, + "TargetStructureID": 5649, + "Label": "104690-5649 via Conventional from 104697 -> 104698", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104697, + "TargetID": 104698, + "Directional": true + }] + }, { + "ID": 19750, + "SourceStructureID": 104693, + "TargetStructureID": 13525, + "Label": "104693-13525 via Conventional from 104694 -> 85944", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104694, + "TargetID": 85944, + "Directional": true + }] + }, { + "ID": 19751, + "SourceStructureID": 104706, + "TargetStructureID": 13525, + "Label": "104706-13525 via Conventional from 104708 -> 85367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104708, + "TargetID": 85367, + "Directional": true + }] + }, { + "ID": 19752, + "SourceStructureID": 104715, + "TargetStructureID": 5649, + "Label": "104715-5649 via Conventional from 104716 -> 53890", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104716, + "TargetID": 53890, + "Directional": true + }] + }, { + "ID": 19753, + "SourceStructureID": 104719, + "TargetStructureID": 13525, + "Label": "104719-13525 via Conventional from 104720 -> 13527", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104720, + "TargetID": 13527, + "Directional": true + }] + }, { + "ID": 19754, + "SourceStructureID": 104726, + "TargetStructureID": 13525, + "Label": "104726-13525 via Conventional from 104727 -> 84665", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104727, + "TargetID": 84665, + "Directional": true + }] + }, { + "ID": 19755, + "SourceStructureID": 104733, + "TargetStructureID": 5649, + "Label": "104733-5649 via Conventional from 104734 -> 53885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104734, + "TargetID": 53885, + "Directional": true + }] + }, { + "ID": 19756, + "SourceStructureID": 104735, + "TargetStructureID": 15942, + "Label": "104735-15942 via Conventional from 104756 -> 16763, 104757 -> 16764", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104756, + "TargetID": 16763, + "Directional": true + }, { + "SourceID": 104757, + "TargetID": 16764, + "Directional": true + }] + }, { + "ID": 19757, + "SourceStructureID": 104739, + "TargetStructureID": 5649, + "Label": "104739-5649 via Conventional from 104741 -> 104743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104741, + "TargetID": 104743, + "Directional": true + }] + }, { + "ID": 19758, + "SourceStructureID": 104740, + "TargetStructureID": 433, + "Label": "104740-433 via Conventional from 111132 -> 21589, 111206 -> 21549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111132, + "TargetID": 21589, + "Directional": true + }, { + "SourceID": 111206, + "TargetID": 21549, + "Directional": true + }] + }, { + "ID": 19759, + "SourceStructureID": 104740, + "TargetStructureID": 6128, + "Label": "104740-6128 via Conventional from 114830 -> 137121, 114836 -> 33753, 114841 -> 21102, 118100 -> 33754", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114830, + "TargetID": 137121, + "Directional": true + }, { + "SourceID": 114836, + "TargetID": 33753, + "Directional": true + }, { + "SourceID": 114841, + "TargetID": 21102, + "Directional": true + }, { + "SourceID": 118100, + "TargetID": 33754, + "Directional": true + }] + }, { + "ID": 19760, + "SourceStructureID": 104740, + "TargetStructureID": 9260, + "Label": "104740-9260 via Conventional from 111138 -> 88116", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111138, + "TargetID": 88116, + "Directional": true + }] + }, { + "ID": 19761, + "SourceStructureID": 104740, + "TargetStructureID": 13525, + "Label": "104740-13525 via Conventional from 104742 -> 86080", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104742, + "TargetID": 86080, + "Directional": true + }] + }, { + "ID": 19762, + "SourceStructureID": 104740, + "TargetStructureID": 46741, + "Label": "104740-46741 via Conventional from 114840 -> 137108", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114840, + "TargetID": 137108, + "Directional": true + }] + }, { + "ID": 19763, + "SourceStructureID": 104744, + "TargetStructureID": 13525, + "Label": "104744-13525 via Conventional from 104745 -> 86730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104745, + "TargetID": 86730, + "Directional": true + }] + }, { + "ID": 19764, + "SourceStructureID": 104749, + "TargetStructureID": 5649, + "Label": "104749-5649 via Conventional from 104750 -> 104748", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104750, + "TargetID": 104748, + "Directional": true + }] + }, { + "ID": 19765, + "SourceStructureID": 104751, + "TargetStructureID": 458, + "Label": "104751-458 via Conventional from 111088 -> 36275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111088, + "TargetID": 36275, + "Directional": true + }] + }, { + "ID": 19766, + "SourceStructureID": 104751, + "TargetStructureID": 5545, + "Label": "104751-5545 via Conventional from 104752 -> 87174", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104752, + "TargetID": 87174, + "Directional": true + }] + }, { + "ID": 19767, + "SourceStructureID": 104751, + "TargetStructureID": 137122, + "Label": "104751-137122 via Conventional from 111086 -> 137135, 111087 -> 137134", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111086, + "TargetID": 137135, + "Directional": true + }, { + "SourceID": 111087, + "TargetID": 137134, + "Directional": true + }] + }, { + "ID": 19768, + "SourceStructureID": 104754, + "TargetStructureID": 13525, + "Label": "104754-13525 via Conventional from 104755 -> 94216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104755, + "TargetID": 94216, + "Directional": true + }] + }, { + "ID": 19769, + "SourceStructureID": 104774, + "TargetStructureID": 5649, + "Label": "104774-5649 via Conventional from 104775 -> 104773", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104775, + "TargetID": 104773, + "Directional": true + }] + }, { + "ID": 19770, + "SourceStructureID": 104804, + "TargetStructureID": 5649, + "Label": "104804-5649 via Conventional from 104805 -> 104803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104805, + "TargetID": 104803, + "Directional": true + }] + }, { + "ID": 19771, + "SourceStructureID": 104808, + "TargetStructureID": 5278, + "Label": "104808-5278 via Conventional from 104809 -> 104810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104809, + "TargetID": 104810, + "Directional": true + }] + }, { + "ID": 19772, + "SourceStructureID": 104823, + "TargetStructureID": 5278, + "Label": "104823-5278 via Conventional from 104824 -> 104825, 104826 -> 92276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104824, + "TargetID": 104825, + "Directional": true + }, { + "SourceID": 104826, + "TargetID": 92276, + "Directional": true + }] + }, { + "ID": 19773, + "SourceStructureID": 104834, + "TargetStructureID": 5278, + "Label": "104834-5278 via Conventional from 104835 -> 104836, 104837 -> 104838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104835, + "TargetID": 104836, + "Directional": true + }, { + "SourceID": 104837, + "TargetID": 104838, + "Directional": true + }] + }, { + "ID": 19774, + "SourceStructureID": 104842, + "TargetStructureID": 5278, + "Label": "104842-5278 via Conventional from 104843 -> 104844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104843, + "TargetID": 104844, + "Directional": true + }] + }, { + "ID": 19775, + "SourceStructureID": 104869, + "TargetStructureID": 6155, + "Label": "104869-6155 via Conventional from 104871 -> 48258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104871, + "TargetID": 48258, + "Directional": true + }] + }, { + "ID": 19776, + "SourceStructureID": 104879, + "TargetStructureID": 6155, + "Label": "104879-6155 via Conventional from 104880 -> 49058", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104880, + "TargetID": 49058, + "Directional": true + }] + }, { + "ID": 19777, + "SourceStructureID": 104886, + "TargetStructureID": 6155, + "Label": "104886-6155 via Conventional from 104889 -> 15380", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104889, + "TargetID": 15380, + "Directional": true + }] + }, { + "ID": 19778, + "SourceStructureID": 104900, + "TargetStructureID": 6155, + "Label": "104900-6155 via Conventional from 104901 -> 49084", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104901, + "TargetID": 49084, + "Directional": true + }] + }, { + "ID": 19779, + "SourceStructureID": 104906, + "TargetStructureID": 6155, + "Label": "104906-6155 via Conventional from 104907 -> 104908", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104907, + "TargetID": 104908, + "Directional": true + }] + }, { + "ID": 19780, + "SourceStructureID": 104912, + "TargetStructureID": 6155, + "Label": "104912-6155 via Conventional from 104913 -> 48321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104913, + "TargetID": 48321, + "Directional": true + }] + }, { + "ID": 19781, + "SourceStructureID": 104926, + "TargetStructureID": 6155, + "Label": "104926-6155 via Conventional from 104927 -> 104928, 104929 -> 104930", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104927, + "TargetID": 104928, + "Directional": true + }, { + "SourceID": 104929, + "TargetID": 104930, + "Directional": true + }] + }, { + "ID": 19782, + "SourceStructureID": 104933, + "TargetStructureID": 6155, + "Label": "104933-6155 via Conventional from 104934 -> 15687", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104934, + "TargetID": 15687, + "Directional": true + }] + }, { + "ID": 19783, + "SourceStructureID": 104949, + "TargetStructureID": 6155, + "Label": "104949-6155 via Conventional from 104950 -> 15815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104950, + "TargetID": 15815, + "Directional": true + }] + }, { + "ID": 19784, + "SourceStructureID": 104970, + "TargetStructureID": 6155, + "Label": "104970-6155 via Conventional from 104973 -> 15613", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104973, + "TargetID": 15613, + "Directional": true + }] + }, { + "ID": 19785, + "SourceStructureID": 104974, + "TargetStructureID": 6155, + "Label": "104974-6155 via Conventional from 104975 -> 48320", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104975, + "TargetID": 48320, + "Directional": true + }] + }, { + "ID": 19786, + "SourceStructureID": 104990, + "TargetStructureID": 5650, + "Label": "104990-5650 via Conventional from 104991 -> 104992", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104991, + "TargetID": 104992, + "Directional": true + }] + }, { + "ID": 19787, + "SourceStructureID": 104995, + "TargetStructureID": 5650, + "Label": "104995-5650 via Conventional from 104996 -> 104997", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104996, + "TargetID": 104997, + "Directional": true + }] + }, { + "ID": 19788, + "SourceStructureID": 104998, + "TargetStructureID": 5284, + "Label": "104998-5284 via Conventional from 113277 -> 113276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113277, + "TargetID": 113276, + "Directional": true + }] + }, { + "ID": 19789, + "SourceStructureID": 104998, + "TargetStructureID": 5650, + "Label": "104998-5650 via Conventional from 104999 -> 105000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 104999, + "TargetID": 105000, + "Directional": true + }] + }, { + "ID": 19790, + "SourceStructureID": 105004, + "TargetStructureID": 5650, + "Label": "105004-5650 via Conventional from 105005 -> 105006", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105005, + "TargetID": 105006, + "Directional": true + }] + }, { + "ID": 19791, + "SourceStructureID": 105007, + "TargetStructureID": 5650, + "Label": "105007-5650 via Conventional from 105008 -> 105009", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105008, + "TargetID": 105009, + "Directional": true + }] + }, { + "ID": 19792, + "SourceStructureID": 105010, + "TargetStructureID": 5650, + "Label": "105010-5650 via Conventional from 105011 -> 105012", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105011, + "TargetID": 105012, + "Directional": true + }] + }, { + "ID": 19793, + "SourceStructureID": 105016, + "TargetStructureID": 5650, + "Label": "105016-5650 via Conventional from 105017 -> 105018", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105017, + "TargetID": 105018, + "Directional": true + }] + }, { + "ID": 19794, + "SourceStructureID": 105022, + "TargetStructureID": 5650, + "Label": "105022-5650 via Conventional from 105026 -> 105027, 105028 -> 105029", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105026, + "TargetID": 105027, + "Directional": true + }, { + "SourceID": 105028, + "TargetID": 105029, + "Directional": true + }] + }, { + "ID": 19795, + "SourceStructureID": 105030, + "TargetStructureID": 5650, + "Label": "105030-5650 via Conventional from 105032 -> 105033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105032, + "TargetID": 105033, + "Directional": true + }] + }, { + "ID": 19796, + "SourceStructureID": 105036, + "TargetStructureID": 5650, + "Label": "105036-5650 via Conventional from 105037 -> 105038", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105037, + "TargetID": 105038, + "Directional": true + }] + }, { + "ID": 19797, + "SourceStructureID": 105040, + "TargetStructureID": 5650, + "Label": "105040-5650 via Conventional from 105041 -> 105042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105041, + "TargetID": 105042, + "Directional": true + }] + }, { + "ID": 19798, + "SourceStructureID": 105044, + "TargetStructureID": 5650, + "Label": "105044-5650 via Conventional from 105045 -> 105046", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105045, + "TargetID": 105046, + "Directional": true + }] + }, { + "ID": 19799, + "SourceStructureID": 105053, + "TargetStructureID": 5650, + "Label": "105053-5650 via Conventional from 105054 -> 105055", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105054, + "TargetID": 105055, + "Directional": true + }] + }, { + "ID": 19800, + "SourceStructureID": 105058, + "TargetStructureID": 5650, + "Label": "105058-5650 via Conventional from 105059 -> 105060", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105059, + "TargetID": 105060, + "Directional": true + }] + }, { + "ID": 19801, + "SourceStructureID": 105064, + "TargetStructureID": 5650, + "Label": "105064-5650 via Conventional from 118211 -> 118210", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118211, + "TargetID": 118210, + "Directional": true + }] + }, { + "ID": 19802, + "SourceStructureID": 105067, + "TargetStructureID": 5650, + "Label": "105067-5650 via Conventional from 105068 -> 105069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105068, + "TargetID": 105069, + "Directional": true + }] + }, { + "ID": 19803, + "SourceStructureID": 105075, + "TargetStructureID": 5650, + "Label": "105075-5650 via Conventional from 105076 -> 105077", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105076, + "TargetID": 105077, + "Directional": true + }] + }, { + "ID": 19804, + "SourceStructureID": 105075, + "TargetStructureID": 128803, + "Label": "105075-128803 via Conventional from 128806 -> 128805", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128806, + "TargetID": 128805, + "Directional": true + }] + }, { + "ID": 19805, + "SourceStructureID": 105078, + "TargetStructureID": 5650, + "Label": "105078-5650 via Conventional from 105079 -> 105080", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105079, + "TargetID": 105080, + "Directional": true + }] + }, { + "ID": 19806, + "SourceStructureID": 105081, + "TargetStructureID": 5650, + "Label": "105081-5650 via Conventional from 105082 -> 105083", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105082, + "TargetID": 105083, + "Directional": true + }] + }, { + "ID": 19807, + "SourceStructureID": 105087, + "TargetStructureID": 5650, + "Label": "105087-5650 via Conventional from 105088 -> 105089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105088, + "TargetID": 105089, + "Directional": true + }] + }, { + "ID": 19808, + "SourceStructureID": 105090, + "TargetStructureID": 1021, + "Label": "105090-1021 via Conventional from 125084 -> 125082", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125084, + "TargetID": 125082, + "Directional": true + }] + }, { + "ID": 19809, + "SourceStructureID": 105090, + "TargetStructureID": 5650, + "Label": "105090-5650 via Conventional from 105091 -> 105092", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105091, + "TargetID": 105092, + "Directional": true + }] + }, { + "ID": 19810, + "SourceStructureID": 105095, + "TargetStructureID": 5650, + "Label": "105095-5650 via Conventional from 105096 -> 105097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105096, + "TargetID": 105097, + "Directional": true + }] + }, { + "ID": 19811, + "SourceStructureID": 105095, + "TargetStructureID": 6047, + "Label": "105095-6047 via Conventional from 112338 -> 112336", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112338, + "TargetID": 112336, + "Directional": true + }] + }, { + "ID": 19812, + "SourceStructureID": 105095, + "TargetStructureID": 112389, + "Label": "105095-112389 via Conventional from 126696 -> 126698", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126696, + "TargetID": 126698, + "Directional": true + }] + }, { + "ID": 19813, + "SourceStructureID": 105102, + "TargetStructureID": 5650, + "Label": "105102-5650 via Conventional from 105103 -> 105104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105103, + "TargetID": 105104, + "Directional": true + }] + }, { + "ID": 19814, + "SourceStructureID": 105108, + "TargetStructureID": 5650, + "Label": "105108-5650 via Conventional from 105109 -> 105110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105109, + "TargetID": 105110, + "Directional": true + }] + }, { + "ID": 19815, + "SourceStructureID": 105119, + "TargetStructureID": 5650, + "Label": "105119-5650 via Conventional from 105120 -> 105121", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105120, + "TargetID": 105121, + "Directional": true + }] + }, { + "ID": 19816, + "SourceStructureID": 105122, + "TargetStructureID": 5650, + "Label": "105122-5650 via Conventional from 120571 -> 105124", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120571, + "TargetID": 105124, + "Directional": true + }] + }, { + "ID": 19817, + "SourceStructureID": 105128, + "TargetStructureID": 5650, + "Label": "105128-5650 via Conventional from 105129 -> 105130", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105129, + "TargetID": 105130, + "Directional": true + }] + }, { + "ID": 19818, + "SourceStructureID": 105131, + "TargetStructureID": 5650, + "Label": "105131-5650 via Conventional from 105133 -> 105134", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105133, + "TargetID": 105134, + "Directional": true + }] + }, { + "ID": 19819, + "SourceStructureID": 105135, + "TargetStructureID": 5650, + "Label": "105135-5650 via Conventional from 105136 -> 105137", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105136, + "TargetID": 105137, + "Directional": true + }] + }, { + "ID": 19820, + "SourceStructureID": 105140, + "TargetStructureID": 5650, + "Label": "105140-5650 via Conventional from 105141 -> 105142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105141, + "TargetID": 105142, + "Directional": true + }] + }, { + "ID": 19821, + "SourceStructureID": 105146, + "TargetStructureID": 6047, + "Label": "105146-6047 via Conventional from 112403 -> 19730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112403, + "TargetID": 19730, + "Directional": true + }] + }, { + "ID": 19822, + "SourceStructureID": 105148, + "TargetStructureID": 6050, + "Label": "105148-6050 via Conventional from 114364 -> 114363", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114364, + "TargetID": 114363, + "Directional": true + }] + }, { + "ID": 19823, + "SourceStructureID": 105153, + "TargetStructureID": 5650, + "Label": "105153-5650 via Conventional from 105154 -> 105155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105154, + "TargetID": 105155, + "Directional": true + }] + }, { + "ID": 19824, + "SourceStructureID": 105161, + "TargetStructureID": 5650, + "Label": "105161-5650 via Conventional from 105162 -> 105163", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105162, + "TargetID": 105163, + "Directional": true + }] + }, { + "ID": 19825, + "SourceStructureID": 105171, + "TargetStructureID": 5650, + "Label": "105171-5650 via Conventional from 105175 -> 105176", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105175, + "TargetID": 105176, + "Directional": true + }] + }, { + "ID": 19826, + "SourceStructureID": 105177, + "TargetStructureID": 5650, + "Label": "105177-5650 via Conventional from 105178 -> 105179", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105178, + "TargetID": 105179, + "Directional": true + }] + }, { + "ID": 19827, + "SourceStructureID": 105180, + "TargetStructureID": 5650, + "Label": "105180-5650 via Conventional from 105181 -> 105182", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105181, + "TargetID": 105182, + "Directional": true + }] + }, { + "ID": 19828, + "SourceStructureID": 105188, + "TargetStructureID": 5650, + "Label": "105188-5650 via Conventional from 105194 -> 105195", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105194, + "TargetID": 105195, + "Directional": true + }] + }, { + "ID": 19829, + "SourceStructureID": 105188, + "TargetStructureID": 6050, + "Label": "105188-6050 via Conventional from 114352 -> 114005", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114352, + "TargetID": 114005, + "Directional": true + }] + }, { + "ID": 19830, + "SourceStructureID": 105210, + "TargetStructureID": 133891, + "Label": "105210-133891 via Conventional from 133897 -> 133896", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133897, + "TargetID": 133896, + "Directional": true + }] + }, { + "ID": 19831, + "SourceStructureID": 105212, + "TargetStructureID": 469, + "Label": "105212-469 via Conventional from 105770 -> 105784, 106222 -> 106225, 106229 -> 106236", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105770, + "TargetID": 105784, + "Directional": true + }, { + "SourceID": 106222, + "TargetID": 106225, + "Directional": true + }, { + "SourceID": 106229, + "TargetID": 106236, + "Directional": true + }] + }, { + "ID": 19832, + "SourceStructureID": 105212, + "TargetStructureID": 10957, + "Label": "105212-10957 via Conventional from 105708 -> 105709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105708, + "TargetID": 105709, + "Directional": true + }] + }, { + "ID": 19833, + "SourceStructureID": 105219, + "TargetStructureID": 5531, + "Label": "105219-5531 via Conventional from 105220 -> 105221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105220, + "TargetID": 105221, + "Directional": true + }] + }, { + "ID": 19834, + "SourceStructureID": 105228, + "TargetStructureID": 5531, + "Label": "105228-5531 via Conventional from 105229 -> 105231", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105229, + "TargetID": 105231, + "Directional": true + }] + }, { + "ID": 19835, + "SourceStructureID": 105246, + "TargetStructureID": 5531, + "Label": "105246-5531 via Conventional from 105247 -> 105248", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105247, + "TargetID": 105248, + "Directional": true + }] + }, { + "ID": 19836, + "SourceStructureID": 105250, + "TargetStructureID": 5531, + "Label": "105250-5531 via Conventional from 105251 -> 105252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105251, + "TargetID": 105252, + "Directional": true + }] + }, { + "ID": 19837, + "SourceStructureID": 105279, + "TargetStructureID": 5531, + "Label": "105279-5531 via Conventional from 105282 -> 105284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105282, + "TargetID": 105284, + "Directional": true + }] + }, { + "ID": 19838, + "SourceStructureID": 105280, + "TargetStructureID": 5531, + "Label": "105280-5531 via Conventional from 105281 -> 105283", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105281, + "TargetID": 105283, + "Directional": true + }] + }, { + "ID": 19839, + "SourceStructureID": 105294, + "TargetStructureID": 5531, + "Label": "105294-5531 via Conventional from 105295 -> 105296", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105295, + "TargetID": 105296, + "Directional": true + }] + }, { + "ID": 19840, + "SourceStructureID": 105297, + "TargetStructureID": 5531, + "Label": "105297-5531 via Conventional from 105298 -> 105299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105298, + "TargetID": 105299, + "Directional": true + }] + }, { + "ID": 19841, + "SourceStructureID": 105300, + "TargetStructureID": 5531, + "Label": "105300-5531 via Conventional from 105301 -> 105302", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105301, + "TargetID": 105302, + "Directional": true + }] + }, { + "ID": 19842, + "SourceStructureID": 105313, + "TargetStructureID": 5531, + "Label": "105313-5531 via Conventional from 106202 -> 106203", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106202, + "TargetID": 106203, + "Directional": true + }] + }, { + "ID": 19843, + "SourceStructureID": 105322, + "TargetStructureID": 5649, + "Label": "105322-5649 via Conventional from 105323 -> 105321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105323, + "TargetID": 105321, + "Directional": true + }] + }, { + "ID": 19844, + "SourceStructureID": 105326, + "TargetStructureID": 5649, + "Label": "105326-5649 via Conventional from 105328 -> 105318", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105328, + "TargetID": 105318, + "Directional": true + }] + }, { + "ID": 19845, + "SourceStructureID": 105339, + "TargetStructureID": 5649, + "Label": "105339-5649 via Conventional from 105340 -> 105338", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105340, + "TargetID": 105338, + "Directional": true + }] + }, { + "ID": 19846, + "SourceStructureID": 105341, + "TargetStructureID": 5531, + "Label": "105341-5531 via Conventional from 105344 -> 62922", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105344, + "TargetID": 62922, + "Directional": true + }] + }, { + "ID": 19847, + "SourceStructureID": 105343, + "TargetStructureID": 5649, + "Label": "105343-5649 via Conventional from 105345 -> 105342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105345, + "TargetID": 105342, + "Directional": true + }] + }, { + "ID": 19848, + "SourceStructureID": 105363, + "TargetStructureID": 5531, + "Label": "105363-5531 via Conventional from 105364 -> 105365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105364, + "TargetID": 105365, + "Directional": true + }] + }, { + "ID": 19849, + "SourceStructureID": 105376, + "TargetStructureID": 5649, + "Label": "105376-5649 via Conventional from 105377 -> 105375", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105377, + "TargetID": 105375, + "Directional": true + }] + }, { + "ID": 19850, + "SourceStructureID": 105382, + "TargetStructureID": 5649, + "Label": "105382-5649 via Conventional from 105383 -> 105381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105383, + "TargetID": 105381, + "Directional": true + }] + }, { + "ID": 19851, + "SourceStructureID": 105421, + "TargetStructureID": 5649, + "Label": "105421-5649 via Conventional from 105422 -> 105420", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105422, + "TargetID": 105420, + "Directional": true + }] + }, { + "ID": 19852, + "SourceStructureID": 105426, + "TargetStructureID": 5649, + "Label": "105426-5649 via Conventional from 105427 -> 55718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105427, + "TargetID": 55718, + "Directional": true + }] + }, { + "ID": 19853, + "SourceStructureID": 105434, + "TargetStructureID": 5649, + "Label": "105434-5649 via Conventional from 105435 -> 105433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105435, + "TargetID": 105433, + "Directional": true + }] + }, { + "ID": 19854, + "SourceStructureID": 105438, + "TargetStructureID": 5649, + "Label": "105438-5649 via Conventional from 105439 -> 55729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105439, + "TargetID": 55729, + "Directional": true + }] + }, { + "ID": 19855, + "SourceStructureID": 105447, + "TargetStructureID": 5649, + "Label": "105447-5649 via Conventional from 105448 -> 105449", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105448, + "TargetID": 105449, + "Directional": true + }] + }, { + "ID": 19856, + "SourceStructureID": 105450, + "TargetStructureID": 5649, + "Label": "105450-5649 via Conventional from 105451 -> 105453", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105451, + "TargetID": 105453, + "Directional": true + }] + }, { + "ID": 19857, + "SourceStructureID": 105458, + "TargetStructureID": 5499, + "Label": "105458-5499 via Conventional from 105459 -> 105457", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105459, + "TargetID": 105457, + "Directional": true + }] + }, { + "ID": 19858, + "SourceStructureID": 105464, + "TargetStructureID": 105467, + "Label": "105464-105467 via Ribbon Synapse from 105465 -> 105469", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105465, + "TargetID": 105469, + "Directional": true + }] + }, { + "ID": 19859, + "SourceStructureID": 105464, + "TargetStructureID": 105474, + "Label": "105464-105474 via BC Conventional Synapse from 105473 -> 105475", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 105473, + "TargetID": 105475, + "Directional": true + }] + }, { + "ID": 19860, + "SourceStructureID": 105467, + "TargetStructureID": 105464, + "Label": "105467-105464 via Conventional from 105468 -> 105466", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105468, + "TargetID": 105466, + "Directional": true + }] + }, { + "ID": 19861, + "SourceStructureID": 105471, + "TargetStructureID": 105464, + "Label": "105471-105464 via Conventional from 105472 -> 105470", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105472, + "TargetID": 105470, + "Directional": true + }] + }, { + "ID": 19862, + "SourceStructureID": 105477, + "TargetStructureID": 105464, + "Label": "105477-105464 via Conventional from 105478 -> 105476", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105478, + "TargetID": 105476, + "Directional": true + }] + }, { + "ID": 19863, + "SourceStructureID": 105509, + "TargetStructureID": 105509, + "Label": "105509-105509 via Conventional from 105834 -> 105833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105834, + "TargetID": 105833, + "Directional": true + }] + }, { + "ID": 19864, + "SourceStructureID": 105511, + "TargetStructureID": 5499, + "Label": "105511-5499 via Conventional from 105512 -> 105513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105512, + "TargetID": 105513, + "Directional": true + }] + }, { + "ID": 19865, + "SourceStructureID": 105521, + "TargetStructureID": 5499, + "Label": "105521-5499 via Conventional from 105522 -> 105520", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105522, + "TargetID": 105520, + "Directional": true + }] + }, { + "ID": 19866, + "SourceStructureID": 105526, + "TargetStructureID": 5499, + "Label": "105526-5499 via Conventional from 105527 -> 105519", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105527, + "TargetID": 105519, + "Directional": true + }] + }, { + "ID": 19867, + "SourceStructureID": 105547, + "TargetStructureID": 5649, + "Label": "105547-5649 via Conventional from 105550 -> 105546", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105550, + "TargetID": 105546, + "Directional": true + }] + }, { + "ID": 19868, + "SourceStructureID": 105548, + "TargetStructureID": 5649, + "Label": "105548-5649 via Conventional from 105549 -> 105545", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105549, + "TargetID": 105545, + "Directional": true + }] + }, { + "ID": 19869, + "SourceStructureID": 105553, + "TargetStructureID": 5649, + "Label": "105553-5649 via Conventional from 105554 -> 105552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105554, + "TargetID": 105552, + "Directional": true + }] + }, { + "ID": 19870, + "SourceStructureID": 105558, + "TargetStructureID": 5649, + "Label": "105558-5649 via Conventional from 105559 -> 105556", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105559, + "TargetID": 105556, + "Directional": true + }] + }, { + "ID": 19871, + "SourceStructureID": 105580, + "TargetStructureID": 5649, + "Label": "105580-5649 via Conventional from 105581 -> 105579", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105581, + "TargetID": 105579, + "Directional": true + }] + }, { + "ID": 19872, + "SourceStructureID": 105588, + "TargetStructureID": 5649, + "Label": "105588-5649 via Conventional from 105589 -> 105587", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105589, + "TargetID": 105587, + "Directional": true + }] + }, { + "ID": 19873, + "SourceStructureID": 105604, + "TargetStructureID": 5649, + "Label": "105604-5649 via Conventional from 105607 -> 105593", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105607, + "TargetID": 105593, + "Directional": true + }] + }, { + "ID": 19874, + "SourceStructureID": 105612, + "TargetStructureID": 5649, + "Label": "105612-5649 via Conventional from 105613 -> 105614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105613, + "TargetID": 105614, + "Directional": true + }] + }, { + "ID": 19875, + "SourceStructureID": 105624, + "TargetStructureID": 5499, + "Label": "105624-5499 via Conventional from 105625 -> 105623", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105625, + "TargetID": 105623, + "Directional": true + }] + }, { + "ID": 19876, + "SourceStructureID": 105633, + "TargetStructureID": 5649, + "Label": "105633-5649 via Conventional from 105654 -> 53903", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105654, + "TargetID": 53903, + "Directional": true + }] + }, { + "ID": 19877, + "SourceStructureID": 105635, + "TargetStructureID": 5514, + "Label": "105635-5514 via Conventional from 105638 -> 50697", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105638, + "TargetID": 50697, + "Directional": true + }] + }, { + "ID": 19878, + "SourceStructureID": 105635, + "TargetStructureID": 45672, + "Label": "105635-45672 via Conventional from 105636 -> 105634", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105636, + "TargetID": 105634, + "Directional": true + }] + }, { + "ID": 19879, + "SourceStructureID": 105640, + "TargetStructureID": 5649, + "Label": "105640-5649 via Conventional from 105641 -> 105639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105641, + "TargetID": 105639, + "Directional": true + }] + }, { + "ID": 19880, + "SourceStructureID": 105643, + "TargetStructureID": 5649, + "Label": "105643-5649 via Conventional from 105644 -> 105642", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105644, + "TargetID": 105642, + "Directional": true + }] + }, { + "ID": 19881, + "SourceStructureID": 105663, + "TargetStructureID": 5649, + "Label": "105663-5649 via Conventional from 105664 -> 53906", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105664, + "TargetID": 53906, + "Directional": true + }] + }, { + "ID": 19882, + "SourceStructureID": 105670, + "TargetStructureID": 5649, + "Label": "105670-5649 via Conventional from 105671 -> 55734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105671, + "TargetID": 55734, + "Directional": true + }] + }, { + "ID": 19883, + "SourceStructureID": 105679, + "TargetStructureID": 5649, + "Label": "105679-5649 via Conventional from 105680 -> 105682", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105680, + "TargetID": 105682, + "Directional": true + }] + }, { + "ID": 19884, + "SourceStructureID": 105694, + "TargetStructureID": 5649, + "Label": "105694-5649 via Conventional from 105695 -> 105693", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105695, + "TargetID": 105693, + "Directional": true + }] + }, { + "ID": 19885, + "SourceStructureID": 105696, + "TargetStructureID": 5649, + "Label": "105696-5649 via Conventional from 105697 -> 53939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105697, + "TargetID": 53939, + "Directional": true + }] + }, { + "ID": 19886, + "SourceStructureID": 105706, + "TargetStructureID": 5649, + "Label": "105706-5649 via Conventional from 105707 -> 53940", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105707, + "TargetID": 53940, + "Directional": true + }] + }, { + "ID": 19887, + "SourceStructureID": 105719, + "TargetStructureID": 5649, + "Label": "105719-5649 via Conventional from 105720 -> 53944", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105720, + "TargetID": 53944, + "Directional": true + }] + }, { + "ID": 19888, + "SourceStructureID": 105729, + "TargetStructureID": 5649, + "Label": "105729-5649 via Conventional from 105730 -> 105728", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105730, + "TargetID": 105728, + "Directional": true + }] + }, { + "ID": 19889, + "SourceStructureID": 105739, + "TargetStructureID": 5649, + "Label": "105739-5649 via Conventional from 105858 -> 105738", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105858, + "TargetID": 105738, + "Directional": true + }] + }, { + "ID": 19890, + "SourceStructureID": 105745, + "TargetStructureID": 5649, + "Label": "105745-5649 via Conventional from 105849 -> 105744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105849, + "TargetID": 105744, + "Directional": true + }] + }, { + "ID": 19891, + "SourceStructureID": 105749, + "TargetStructureID": 5729, + "Label": "105749-5729 via Conventional from 105750 -> 105748", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105750, + "TargetID": 105748, + "Directional": true + }] + }, { + "ID": 19892, + "SourceStructureID": 105780, + "TargetStructureID": 6857, + "Label": "105780-6857 via Ribbon Synapse from 108553 -> 108554", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 108553, + "TargetID": 108554, + "Directional": true + }] + }, { + "ID": 19893, + "SourceStructureID": 105788, + "TargetStructureID": 5649, + "Label": "105788-5649 via Conventional from 105800 -> 105787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105800, + "TargetID": 105787, + "Directional": true + }] + }, { + "ID": 19894, + "SourceStructureID": 105838, + "TargetStructureID": 6155, + "Label": "105838-6155 via Conventional from 105839 -> 49086", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105839, + "TargetID": 49086, + "Directional": true + }] + }, { + "ID": 19895, + "SourceStructureID": 105855, + "TargetStructureID": 6155, + "Label": "105855-6155 via Conventional from 105859 -> 30581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105859, + "TargetID": 30581, + "Directional": true + }] + }, { + "ID": 19896, + "SourceStructureID": 105873, + "TargetStructureID": 6155, + "Label": "105873-6155 via Conventional from 105874 -> 49087", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105874, + "TargetID": 49087, + "Directional": true + }] + }, { + "ID": 19897, + "SourceStructureID": 105875, + "TargetStructureID": 5649, + "Label": "105875-5649 via Conventional from 105876 -> 53956", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105876, + "TargetID": 53956, + "Directional": true + }] + }, { + "ID": 19898, + "SourceStructureID": 105877, + "TargetStructureID": 6155, + "Label": "105877-6155 via Conventional from 105880 -> 16877", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105880, + "TargetID": 16877, + "Directional": true + }] + }, { + "ID": 19899, + "SourceStructureID": 105878, + "TargetStructureID": 5649, + "Label": "105878-5649 via Conventional from 105879 -> 53951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105879, + "TargetID": 53951, + "Directional": true + }] + }, { + "ID": 19900, + "SourceStructureID": 105881, + "TargetStructureID": 6155, + "Label": "105881-6155 via Conventional from 105882 -> 105883", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105882, + "TargetID": 105883, + "Directional": true + }] + }, { + "ID": 19901, + "SourceStructureID": 105884, + "TargetStructureID": 5649, + "Label": "105884-5649 via Conventional from 105885 -> 53965", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105885, + "TargetID": 53965, + "Directional": true + }] + }, { + "ID": 19902, + "SourceStructureID": 105893, + "TargetStructureID": 5649, + "Label": "105893-5649 via Conventional from 105894 -> 53963", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105894, + "TargetID": 53963, + "Directional": true + }] + }, { + "ID": 19903, + "SourceStructureID": 105907, + "TargetStructureID": 5649, + "Label": "105907-5649 via Conventional from 105909 -> 105918", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105909, + "TargetID": 105918, + "Directional": true + }] + }, { + "ID": 19904, + "SourceStructureID": 105924, + "TargetStructureID": 5649, + "Label": "105924-5649 via Conventional from 105925 -> 105923", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105925, + "TargetID": 105923, + "Directional": true + }] + }, { + "ID": 19905, + "SourceStructureID": 105927, + "TargetStructureID": 5649, + "Label": "105927-5649 via Conventional from 105929 -> 105926", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105929, + "TargetID": 105926, + "Directional": true + }] + }, { + "ID": 19906, + "SourceStructureID": 105927, + "TargetStructureID": 6047, + "Label": "105927-6047 via Conventional from 112178 -> 112179", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112178, + "TargetID": 112179, + "Directional": true + }] + }, { + "ID": 19907, + "SourceStructureID": 105928, + "TargetStructureID": 6155, + "Label": "105928-6155 via Conventional from 106002 -> 15600, 106047 -> 48325", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106002, + "TargetID": 15600, + "Directional": true + }, { + "SourceID": 106047, + "TargetID": 48325, + "Directional": true + }] + }, { + "ID": 19908, + "SourceStructureID": 105936, + "TargetStructureID": 5649, + "Label": "105936-5649 via Conventional from 105937 -> 53975", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105937, + "TargetID": 53975, + "Directional": true + }] + }, { + "ID": 19909, + "SourceStructureID": 105968, + "TargetStructureID": 5649, + "Label": "105968-5649 via Conventional from 105969 -> 105967", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105969, + "TargetID": 105967, + "Directional": true + }] + }, { + "ID": 19910, + "SourceStructureID": 105970, + "TargetStructureID": 6155, + "Label": "105970-6155 via Conventional from 105984 -> 29759, 105987 -> 48317", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105984, + "TargetID": 29759, + "Directional": true + }, { + "SourceID": 105987, + "TargetID": 48317, + "Directional": true + }] + }, { + "ID": 19911, + "SourceStructureID": 105971, + "TargetStructureID": 6155, + "Label": "105971-6155 via Conventional from 105994 -> 48316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105994, + "TargetID": 48316, + "Directional": true + }] + }, { + "ID": 19912, + "SourceStructureID": 105972, + "TargetStructureID": 6155, + "Label": "105972-6155 via Conventional from 105981 -> 15602", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105981, + "TargetID": 15602, + "Directional": true + }] + }, { + "ID": 19913, + "SourceStructureID": 105982, + "TargetStructureID": 5649, + "Label": "105982-5649 via Conventional from 105983 -> 54000", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105983, + "TargetID": 54000, + "Directional": true + }] + }, { + "ID": 19914, + "SourceStructureID": 105990, + "TargetStructureID": 5649, + "Label": "105990-5649 via Conventional from 105991 -> 105988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 105991, + "TargetID": 105988, + "Directional": true + }] + }, { + "ID": 19915, + "SourceStructureID": 106000, + "TargetStructureID": 5649, + "Label": "106000-5649 via Conventional from 106001 -> 105999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106001, + "TargetID": 105999, + "Directional": true + }] + }, { + "ID": 19916, + "SourceStructureID": 106007, + "TargetStructureID": 5649, + "Label": "106007-5649 via Conventional from 106009 -> 54001", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106009, + "TargetID": 54001, + "Directional": true + }] + }, { + "ID": 19917, + "SourceStructureID": 106023, + "TargetStructureID": 6142, + "Label": "106023-6142 via Conventional from 106024 -> 23335", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106024, + "TargetID": 23335, + "Directional": true + }] + }, { + "ID": 19918, + "SourceStructureID": 106027, + "TargetStructureID": 5649, + "Label": "106027-5649 via Conventional from 106028 -> 106026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106028, + "TargetID": 106026, + "Directional": true + }] + }, { + "ID": 19919, + "SourceStructureID": 106041, + "TargetStructureID": 5649, + "Label": "106041-5649 via Conventional from 106042 -> 106040", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106042, + "TargetID": 106040, + "Directional": true + }] + }, { + "ID": 19920, + "SourceStructureID": 106070, + "TargetStructureID": 6155, + "Label": "106070-6155 via Conventional from 106071 -> 29760", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106071, + "TargetID": 29760, + "Directional": true + }] + }, { + "ID": 19921, + "SourceStructureID": 106075, + "TargetStructureID": 6155, + "Label": "106075-6155 via Conventional from 106076 -> 15758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106076, + "TargetID": 15758, + "Directional": true + }] + }, { + "ID": 19922, + "SourceStructureID": 106087, + "TargetStructureID": 6155, + "Label": "106087-6155 via Conventional from 106088 -> 106089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106088, + "TargetID": 106089, + "Directional": true + }] + }, { + "ID": 19923, + "SourceStructureID": 106090, + "TargetStructureID": 6155, + "Label": "106090-6155 via Conventional from 106091 -> 106092", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106091, + "TargetID": 106092, + "Directional": true + }] + }, { + "ID": 19924, + "SourceStructureID": 106107, + "TargetStructureID": 5649, + "Label": "106107-5649 via Conventional from 106108 -> 31041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106108, + "TargetID": 31041, + "Directional": true + }] + }, { + "ID": 19925, + "SourceStructureID": 106127, + "TargetStructureID": 32035, + "Label": "106127-32035 via Conventional from 106129 -> 41670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106129, + "TargetID": 41670, + "Directional": true + }] + }, { + "ID": 19926, + "SourceStructureID": 106127, + "TargetStructureID": 32945, + "Label": "106127-32945 via Conventional from 106128 -> 106126", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106128, + "TargetID": 106126, + "Directional": true + }] + }, { + "ID": 19927, + "SourceStructureID": 106131, + "TargetStructureID": 5649, + "Label": "106131-5649 via Conventional from 106132 -> 106130", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106132, + "TargetID": 106130, + "Directional": true + }] + }, { + "ID": 19928, + "SourceStructureID": 106143, + "TargetStructureID": 5531, + "Label": "106143-5531 via Conventional from 106144 -> 62924", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106144, + "TargetID": 62924, + "Directional": true + }] + }, { + "ID": 19929, + "SourceStructureID": 106153, + "TargetStructureID": 5531, + "Label": "106153-5531 via Conventional from 106154 -> 106155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106154, + "TargetID": 106155, + "Directional": true + }] + }, { + "ID": 19930, + "SourceStructureID": 106158, + "TargetStructureID": 5531, + "Label": "106158-5531 via Conventional from 106159 -> 106160", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106159, + "TargetID": 106160, + "Directional": true + }] + }, { + "ID": 19931, + "SourceStructureID": 106170, + "TargetStructureID": 5531, + "Label": "106170-5531 via Conventional from 106171 -> 62927", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106171, + "TargetID": 62927, + "Directional": true + }] + }, { + "ID": 19932, + "SourceStructureID": 106218, + "TargetStructureID": 5531, + "Label": "106218-5531 via Conventional from 106219 -> 106220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106219, + "TargetID": 106220, + "Directional": true + }] + }, { + "ID": 19933, + "SourceStructureID": 106230, + "TargetStructureID": 5531, + "Label": "106230-5531 via Conventional from 106231 -> 106232", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106231, + "TargetID": 106232, + "Directional": true + }] + }, { + "ID": 19934, + "SourceStructureID": 106240, + "TargetStructureID": 5531, + "Label": "106240-5531 via Conventional from 106241 -> 106242", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106241, + "TargetID": 106242, + "Directional": true + }] + }, { + "ID": 19935, + "SourceStructureID": 106240, + "TargetStructureID": 5637, + "Label": "106240-5637 via Conventional from 120205 -> 120204", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120205, + "TargetID": 120204, + "Directional": true + }] + }, { + "ID": 19936, + "SourceStructureID": 106247, + "TargetStructureID": 5649, + "Label": "106247-5649 via Conventional from 106254 -> 106245", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106254, + "TargetID": 106245, + "Directional": true + }] + }, { + "ID": 19937, + "SourceStructureID": 106256, + "TargetStructureID": 5531, + "Label": "106256-5531 via Conventional from 106259 -> 106260", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106259, + "TargetID": 106260, + "Directional": true + }] + }, { + "ID": 19938, + "SourceStructureID": 106258, + "TargetStructureID": 5649, + "Label": "106258-5649 via Conventional from 106261 -> 54091", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106261, + "TargetID": 54091, + "Directional": true + }] + }, { + "ID": 19939, + "SourceStructureID": 106291, + "TargetStructureID": 5649, + "Label": "106291-5649 via Conventional from 106292 -> 54184", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106292, + "TargetID": 54184, + "Directional": true + }] + }, { + "ID": 19940, + "SourceStructureID": 106296, + "TargetStructureID": 5649, + "Label": "106296-5649 via Conventional from 106297 -> 106294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106297, + "TargetID": 106294, + "Directional": true + }] + }, { + "ID": 19941, + "SourceStructureID": 106313, + "TargetStructureID": 5649, + "Label": "106313-5649 via Conventional from 106314 -> 54095", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106314, + "TargetID": 54095, + "Directional": true + }] + }, { + "ID": 19942, + "SourceStructureID": 106326, + "TargetStructureID": 5649, + "Label": "106326-5649 via Conventional from 106327 -> 54182", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106327, + "TargetID": 54182, + "Directional": true + }] + }, { + "ID": 19943, + "SourceStructureID": 106329, + "TargetStructureID": 5650, + "Label": "106329-5650 via Conventional from 106331 -> 106332", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106331, + "TargetID": 106332, + "Directional": true + }] + }, { + "ID": 19944, + "SourceStructureID": 106333, + "TargetStructureID": 5649, + "Label": "106333-5649 via Conventional from 106334 -> 106322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106334, + "TargetID": 106322, + "Directional": true + }] + }, { + "ID": 19945, + "SourceStructureID": 106336, + "TargetStructureID": 5650, + "Label": "106336-5650 via Conventional from 106338 -> 29937", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106338, + "TargetID": 29937, + "Directional": true + }] + }, { + "ID": 19946, + "SourceStructureID": 106347, + "TargetStructureID": 5649, + "Label": "106347-5649 via Conventional from 106348 -> 54121", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106348, + "TargetID": 54121, + "Directional": true + }] + }, { + "ID": 19947, + "SourceStructureID": 106350, + "TargetStructureID": 5649, + "Label": "106350-5649 via Conventional from 106351 -> 106349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106351, + "TargetID": 106349, + "Directional": true + }] + }, { + "ID": 19948, + "SourceStructureID": 106355, + "TargetStructureID": 5650, + "Label": "106355-5650 via Conventional from 106358 -> 29929", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106358, + "TargetID": 29929, + "Directional": true + }] + }, { + "ID": 19949, + "SourceStructureID": 106355, + "TargetStructureID": 6050, + "Label": "106355-6050 via Conventional from 127637 -> 54411", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127637, + "TargetID": 54411, + "Directional": true + }] + }, { + "ID": 19950, + "SourceStructureID": 106369, + "TargetStructureID": 5650, + "Label": "106369-5650 via Conventional from 106373 -> 106374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106373, + "TargetID": 106374, + "Directional": true + }] + }, { + "ID": 19951, + "SourceStructureID": 106370, + "TargetStructureID": 5650, + "Label": "106370-5650 via Conventional from 106371 -> 106372", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106371, + "TargetID": 106372, + "Directional": true + }] + }, { + "ID": 19952, + "SourceStructureID": 106375, + "TargetStructureID": 1021, + "Label": "106375-1021 via Conventional from 126683 -> 126682", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126683, + "TargetID": 126682, + "Directional": true + }] + }, { + "ID": 19953, + "SourceStructureID": 106375, + "TargetStructureID": 5650, + "Label": "106375-5650 via Conventional from 106376 -> 106377", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106376, + "TargetID": 106377, + "Directional": true + }] + }, { + "ID": 19954, + "SourceStructureID": 106384, + "TargetStructureID": 106387, + "Label": "106384-106387 via Ribbon Synapse from 106386 -> 106388", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 106386, + "TargetID": 106388, + "Directional": true + }] + }, { + "ID": 19955, + "SourceStructureID": 106387, + "TargetStructureID": 6155, + "Label": "106387-6155 via Conventional from 106389 -> 106390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106389, + "TargetID": 106390, + "Directional": true + }] + }, { + "ID": 19956, + "SourceStructureID": 106394, + "TargetStructureID": 6155, + "Label": "106394-6155 via Conventional from 106403 -> 106404", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106403, + "TargetID": 106404, + "Directional": true + }] + }, { + "ID": 19957, + "SourceStructureID": 106397, + "TargetStructureID": 5649, + "Label": "106397-5649 via Conventional from 106409 -> 54113", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106409, + "TargetID": 54113, + "Directional": true + }] + }, { + "ID": 19958, + "SourceStructureID": 106398, + "TargetStructureID": 6155, + "Label": "106398-6155 via Conventional from 106399 -> 106400", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106399, + "TargetID": 106400, + "Directional": true + }] + }, { + "ID": 19959, + "SourceStructureID": 106413, + "TargetStructureID": 6155, + "Label": "106413-6155 via Conventional from 106414 -> 106415", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106414, + "TargetID": 106415, + "Directional": true + }] + }, { + "ID": 19960, + "SourceStructureID": 106418, + "TargetStructureID": 6155, + "Label": "106418-6155 via Conventional from 106423 -> 15763", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106423, + "TargetID": 15763, + "Directional": true + }] + }, { + "ID": 19961, + "SourceStructureID": 106421, + "TargetStructureID": 5649, + "Label": "106421-5649 via Conventional from 106422 -> 54110", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106422, + "TargetID": 54110, + "Directional": true + }] + }, { + "ID": 19962, + "SourceStructureID": 106424, + "TargetStructureID": 6155, + "Label": "106424-6155 via Conventional from 106425 -> 106426", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106425, + "TargetID": 106426, + "Directional": true + }] + }, { + "ID": 19963, + "SourceStructureID": 106427, + "TargetStructureID": 6155, + "Label": "106427-6155 via Conventional from 106429 -> 106430", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106429, + "TargetID": 106430, + "Directional": true + }] + }, { + "ID": 19964, + "SourceStructureID": 106438, + "TargetStructureID": 4569, + "Label": "106438-4569 via Conventional from 106439 -> 131403", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106439, + "TargetID": 131403, + "Directional": true + }] + }, { + "ID": 19965, + "SourceStructureID": 106446, + "TargetStructureID": 6155, + "Label": "106446-6155 via Conventional from 106447 -> 30582", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106447, + "TargetID": 30582, + "Directional": true + }] + }, { + "ID": 19966, + "SourceStructureID": 106454, + "TargetStructureID": 6155, + "Label": "106454-6155 via Conventional from 106455 -> 15807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106455, + "TargetID": 15807, + "Directional": true + }] + }, { + "ID": 19967, + "SourceStructureID": 106456, + "TargetStructureID": 6155, + "Label": "106456-6155 via Conventional from 106457 -> 15800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106457, + "TargetID": 15800, + "Directional": true + }] + }, { + "ID": 19968, + "SourceStructureID": 106458, + "TargetStructureID": 6155, + "Label": "106458-6155 via Conventional from 106462 -> 15802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106462, + "TargetID": 15802, + "Directional": true + }] + }, { + "ID": 19969, + "SourceStructureID": 106463, + "TargetStructureID": 6155, + "Label": "106463-6155 via Conventional from 106465 -> 15765", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106465, + "TargetID": 15765, + "Directional": true + }] + }, { + "ID": 19970, + "SourceStructureID": 106466, + "TargetStructureID": 6155, + "Label": "106466-6155 via Conventional from 106467 -> 48329", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106467, + "TargetID": 48329, + "Directional": true + }] + }, { + "ID": 19971, + "SourceStructureID": 106468, + "TargetStructureID": 6155, + "Label": "106468-6155 via Conventional from 106469 -> 29763", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106469, + "TargetID": 29763, + "Directional": true + }] + }, { + "ID": 19972, + "SourceStructureID": 106470, + "TargetStructureID": 6155, + "Label": "106470-6155 via Conventional from 106471 -> 49045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106471, + "TargetID": 49045, + "Directional": true + }] + }, { + "ID": 19973, + "SourceStructureID": 106472, + "TargetStructureID": 6155, + "Label": "106472-6155 via Conventional from 106475 -> 106476", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106475, + "TargetID": 106476, + "Directional": true + }] + }, { + "ID": 19974, + "SourceStructureID": 106478, + "TargetStructureID": 6155, + "Label": "106478-6155 via Conventional from 106479 -> 15804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106479, + "TargetID": 15804, + "Directional": true + }] + }, { + "ID": 19975, + "SourceStructureID": 106490, + "TargetStructureID": 5531, + "Label": "106490-5531 via Conventional from 106491 -> 106492", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106491, + "TargetID": 106492, + "Directional": true + }] + }, { + "ID": 19976, + "SourceStructureID": 106541, + "TargetStructureID": 5649, + "Label": "106541-5649 via Conventional from 106542 -> 54104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106542, + "TargetID": 54104, + "Directional": true + }] + }, { + "ID": 19977, + "SourceStructureID": 106577, + "TargetStructureID": 6155, + "Label": "106577-6155 via Conventional from 106578 -> 48328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106578, + "TargetID": 48328, + "Directional": true + }] + }, { + "ID": 19978, + "SourceStructureID": 106580, + "TargetStructureID": 6155, + "Label": "106580-6155 via Conventional from 106582 -> 15801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106582, + "TargetID": 15801, + "Directional": true + }] + }, { + "ID": 19979, + "SourceStructureID": 106597, + "TargetStructureID": 5531, + "Label": "106597-5531 via Conventional from 106598 -> 106599", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106598, + "TargetID": 106599, + "Directional": true + }] + }, { + "ID": 19980, + "SourceStructureID": 106616, + "TargetStructureID": 5649, + "Label": "106616-5649 via Conventional from 106658 -> 106615", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106658, + "TargetID": 106615, + "Directional": true + }] + }, { + "ID": 19981, + "SourceStructureID": 106619, + "TargetStructureID": 106617, + "Label": "106619-106617 via Conventional from 106620 -> 106621, 106622 -> 106623", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106620, + "TargetID": 106621, + "Directional": true + }, { + "SourceID": 106622, + "TargetID": 106623, + "Directional": true + }] + }, { + "ID": 19982, + "SourceStructureID": 106637, + "TargetStructureID": 5531, + "Label": "106637-5531 via Conventional from 106640 -> 106641", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106640, + "TargetID": 106641, + "Directional": true + }] + }, { + "ID": 19983, + "SourceStructureID": 106659, + "TargetStructureID": 5531, + "Label": "106659-5531 via Conventional from 106660 -> 54563", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106660, + "TargetID": 54563, + "Directional": true + }] + }, { + "ID": 19984, + "SourceStructureID": 106661, + "TargetStructureID": 5649, + "Label": "106661-5649 via Conventional from 106663 -> 106662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106663, + "TargetID": 106662, + "Directional": true + }] + }, { + "ID": 19985, + "SourceStructureID": 106665, + "TargetStructureID": 5649, + "Label": "106665-5649 via Conventional from 106668 -> 106601", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106668, + "TargetID": 106601, + "Directional": true + }] + }, { + "ID": 19986, + "SourceStructureID": 106675, + "TargetStructureID": 5649, + "Label": "106675-5649 via Conventional from 135456 -> 135455", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135456, + "TargetID": 135455, + "Directional": true + }] + }, { + "ID": 19987, + "SourceStructureID": 106696, + "TargetStructureID": 5649, + "Label": "106696-5649 via Conventional from 106699 -> 106695", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106699, + "TargetID": 106695, + "Directional": true + }] + }, { + "ID": 19988, + "SourceStructureID": 106711, + "TargetStructureID": 6155, + "Label": "106711-6155 via Conventional from 106714 -> 15516", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106714, + "TargetID": 15516, + "Directional": true + }] + }, { + "ID": 19989, + "SourceStructureID": 106712, + "TargetStructureID": 5649, + "Label": "106712-5649 via Conventional from 106713 -> 106614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106713, + "TargetID": 106614, + "Directional": true + }] + }, { + "ID": 19990, + "SourceStructureID": 106715, + "TargetStructureID": 5531, + "Label": "106715-5531 via Conventional from 106724 -> 54544", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106724, + "TargetID": 54544, + "Directional": true + }] + }, { + "ID": 19991, + "SourceStructureID": 106717, + "TargetStructureID": 6155, + "Label": "106717-6155 via Conventional from 106722 -> 48277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106722, + "TargetID": 48277, + "Directional": true + }] + }, { + "ID": 19992, + "SourceStructureID": 106727, + "TargetStructureID": 6155, + "Label": "106727-6155 via Conventional from 106739 -> 15517", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106739, + "TargetID": 15517, + "Directional": true + }] + }, { + "ID": 19993, + "SourceStructureID": 106727, + "TargetStructureID": 24401, + "Label": "106727-24401 via Conventional from 106740 -> 48042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106740, + "TargetID": 48042, + "Directional": true + }] + }, { + "ID": 19994, + "SourceStructureID": 106775, + "TargetStructureID": 5531, + "Label": "106775-5531 via Conventional from 106796 -> 54533", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106796, + "TargetID": 54533, + "Directional": true + }] + }, { + "ID": 19995, + "SourceStructureID": 106781, + "TargetStructureID": 5649, + "Label": "106781-5649 via Conventional from 106795 -> 106794", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106795, + "TargetID": 106794, + "Directional": true + }] + }, { + "ID": 19996, + "SourceStructureID": 106792, + "TargetStructureID": 5531, + "Label": "106792-5531 via Conventional from 106793 -> 54534", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106793, + "TargetID": 54534, + "Directional": true + }] + }, { + "ID": 19997, + "SourceStructureID": 106801, + "TargetStructureID": 5649, + "Label": "106801-5649 via Conventional from 106803 -> 106800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106803, + "TargetID": 106800, + "Directional": true + }] + }, { + "ID": 19998, + "SourceStructureID": 106809, + "TargetStructureID": 6155, + "Label": "106809-6155 via Conventional from 106810 -> 16130", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106810, + "TargetID": 16130, + "Directional": true + }] + }, { + "ID": 19999, + "SourceStructureID": 106813, + "TargetStructureID": 5531, + "Label": "106813-5531 via Conventional from 106825 -> 54530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106825, + "TargetID": 54530, + "Directional": true + }] + }, { + "ID": 20000, + "SourceStructureID": 106835, + "TargetStructureID": 5531, + "Label": "106835-5531 via Conventional from 106844 -> 54543", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106844, + "TargetID": 54543, + "Directional": true + }] + }, { + "ID": 20001, + "SourceStructureID": 106839, + "TargetStructureID": 5531, + "Label": "106839-5531 via Conventional from 106841 -> 54529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106841, + "TargetID": 54529, + "Directional": true + }] + }, { + "ID": 20002, + "SourceStructureID": 106848, + "TargetStructureID": 6155, + "Label": "106848-6155 via Conventional from 106852 -> 16135", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106852, + "TargetID": 16135, + "Directional": true + }] + }, { + "ID": 20003, + "SourceStructureID": 106855, + "TargetStructureID": 5531, + "Label": "106855-5531 via Conventional from 106857 -> 54541", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106857, + "TargetID": 54541, + "Directional": true + }] + }, { + "ID": 20004, + "SourceStructureID": 106863, + "TargetStructureID": 5531, + "Label": "106863-5531 via Conventional from 106865 -> 54542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106865, + "TargetID": 54542, + "Directional": true + }] + }, { + "ID": 20005, + "SourceStructureID": 106877, + "TargetStructureID": 6155, + "Label": "106877-6155 via Conventional from 106878 -> 106876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106878, + "TargetID": 106876, + "Directional": true + }] + }, { + "ID": 20006, + "SourceStructureID": 106886, + "TargetStructureID": 5649, + "Label": "106886-5649 via Conventional from 106899 -> 106885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106899, + "TargetID": 106885, + "Directional": true + }] + }, { + "ID": 20007, + "SourceStructureID": 106890, + "TargetStructureID": 176, + "Label": "106890-176 via Conventional from 128267 -> 128268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128267, + "TargetID": 128268, + "Directional": true + }] + }, { + "ID": 20008, + "SourceStructureID": 106890, + "TargetStructureID": 5531, + "Label": "106890-5531 via Conventional from 106892 -> 54577, 106893 -> 54566", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106892, + "TargetID": 54577, + "Directional": true + }, { + "SourceID": 106893, + "TargetID": 54566, + "Directional": true + }] + }, { + "ID": 20009, + "SourceStructureID": 106896, + "TargetStructureID": 5531, + "Label": "106896-5531 via Conventional from 106897 -> 54570", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106897, + "TargetID": 54570, + "Directional": true + }] + }, { + "ID": 20010, + "SourceStructureID": 106903, + "TargetStructureID": 5531, + "Label": "106903-5531 via Conventional from 106905 -> 106906", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106905, + "TargetID": 106906, + "Directional": true + }] + }, { + "ID": 20011, + "SourceStructureID": 106909, + "TargetStructureID": 5531, + "Label": "106909-5531 via Conventional from 106910 -> 106911", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106910, + "TargetID": 106911, + "Directional": true + }] + }, { + "ID": 20012, + "SourceStructureID": 106913, + "TargetStructureID": 5649, + "Label": "106913-5649 via Conventional from 106916 -> 106917", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106916, + "TargetID": 106917, + "Directional": true + }] + }, { + "ID": 20013, + "SourceStructureID": 106924, + "TargetStructureID": 176, + "Label": "106924-176 via Conventional from 128261 -> 128260", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128261, + "TargetID": 128260, + "Directional": true + }] + }, { + "ID": 20014, + "SourceStructureID": 106924, + "TargetStructureID": 5531, + "Label": "106924-5531 via Conventional from 106928 -> 106929", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106928, + "TargetID": 106929, + "Directional": true + }] + }, { + "ID": 20015, + "SourceStructureID": 106926, + "TargetStructureID": 5649, + "Label": "106926-5649 via Conventional from 106927 -> 106925", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 106927, + "TargetID": 106925, + "Directional": true + }] + }, { + "ID": 20016, + "SourceStructureID": 107045, + "TargetStructureID": 5649, + "Label": "107045-5649 via Conventional from 107048 -> 107049", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107048, + "TargetID": 107049, + "Directional": true + }] + }, { + "ID": 20017, + "SourceStructureID": 107051, + "TargetStructureID": 5649, + "Label": "107051-5649 via Conventional from 107052 -> 107050", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107052, + "TargetID": 107050, + "Directional": true + }] + }, { + "ID": 20018, + "SourceStructureID": 107061, + "TargetStructureID": 5649, + "Label": "107061-5649 via Conventional from 107068 -> 107065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107068, + "TargetID": 107065, + "Directional": true + }] + }, { + "ID": 20019, + "SourceStructureID": 107071, + "TargetStructureID": 5649, + "Label": "107071-5649 via Conventional from 107072 -> 107070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107072, + "TargetID": 107070, + "Directional": true + }] + }, { + "ID": 20020, + "SourceStructureID": 107074, + "TargetStructureID": 5649, + "Label": "107074-5649 via Conventional from 107075 -> 107073", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107075, + "TargetID": 107073, + "Directional": true + }] + }, { + "ID": 20021, + "SourceStructureID": 107092, + "TargetStructureID": 5649, + "Label": "107092-5649 via Conventional from 107095 -> 107091", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107095, + "TargetID": 107091, + "Directional": true + }] + }, { + "ID": 20022, + "SourceStructureID": 107099, + "TargetStructureID": 5649, + "Label": "107099-5649 via Conventional from 107113 -> 107112", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107113, + "TargetID": 107112, + "Directional": true + }] + }, { + "ID": 20023, + "SourceStructureID": 107102, + "TargetStructureID": 5649, + "Label": "107102-5649 via Conventional from 107104 -> 107087", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107104, + "TargetID": 107087, + "Directional": true + }] + }, { + "ID": 20024, + "SourceStructureID": 107108, + "TargetStructureID": 5649, + "Label": "107108-5649 via Conventional from 107109 -> 107088", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107109, + "TargetID": 107088, + "Directional": true + }] + }, { + "ID": 20025, + "SourceStructureID": 107121, + "TargetStructureID": 5649, + "Label": "107121-5649 via Conventional from 135457 -> 107120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135457, + "TargetID": 107120, + "Directional": true + }] + }, { + "ID": 20026, + "SourceStructureID": 107126, + "TargetStructureID": 5649, + "Label": "107126-5649 via Conventional from 107128 -> 107125", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107128, + "TargetID": 107125, + "Directional": true + }] + }, { + "ID": 20027, + "SourceStructureID": 107132, + "TargetStructureID": 5649, + "Label": "107132-5649 via Conventional from 107138 -> 107131", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107138, + "TargetID": 107131, + "Directional": true + }] + }, { + "ID": 20028, + "SourceStructureID": 107152, + "TargetStructureID": 5649, + "Label": "107152-5649 via Conventional from 107154 -> 107151", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107154, + "TargetID": 107151, + "Directional": true + }] + }, { + "ID": 20029, + "SourceStructureID": 107156, + "TargetStructureID": 595, + "Label": "107156-595 via Conventional from 107158 -> 107155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107158, + "TargetID": 107155, + "Directional": true + }] + }, { + "ID": 20030, + "SourceStructureID": 107162, + "TargetStructureID": 5649, + "Label": "107162-5649 via Conventional from 107163 -> 54302", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107163, + "TargetID": 54302, + "Directional": true + }] + }, { + "ID": 20031, + "SourceStructureID": 107176, + "TargetStructureID": 5649, + "Label": "107176-5649 via Conventional from 107177 -> 107175", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107177, + "TargetID": 107175, + "Directional": true + }] + }, { + "ID": 20032, + "SourceStructureID": 107179, + "TargetStructureID": 5649, + "Label": "107179-5649 via Conventional from 107180 -> 107178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107180, + "TargetID": 107178, + "Directional": true + }] + }, { + "ID": 20033, + "SourceStructureID": 107195, + "TargetStructureID": 5649, + "Label": "107195-5649 via Conventional from 107197 -> 107181", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107197, + "TargetID": 107181, + "Directional": true + }] + }, { + "ID": 20034, + "SourceStructureID": 107196, + "TargetStructureID": 5531, + "Label": "107196-5531 via Conventional from 107199 -> 107193", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107199, + "TargetID": 107193, + "Directional": true + }] + }, { + "ID": 20035, + "SourceStructureID": 107222, + "TargetStructureID": 5649, + "Label": "107222-5649 via Conventional from 107224 -> 107225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107224, + "TargetID": 107225, + "Directional": true + }] + }, { + "ID": 20036, + "SourceStructureID": 107248, + "TargetStructureID": 5649, + "Label": "107248-5649 via Conventional from 107249 -> 107243", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107249, + "TargetID": 107243, + "Directional": true + }] + }, { + "ID": 20037, + "SourceStructureID": 107253, + "TargetStructureID": 5649, + "Label": "107253-5649 via Conventional from 107254 -> 107252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107254, + "TargetID": 107252, + "Directional": true + }] + }, { + "ID": 20038, + "SourceStructureID": 107262, + "TargetStructureID": 5649, + "Label": "107262-5649 via Conventional from 107263 -> 107261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107263, + "TargetID": 107261, + "Directional": true + }] + }, { + "ID": 20039, + "SourceStructureID": 107265, + "TargetStructureID": 5649, + "Label": "107265-5649 via Conventional from 107278 -> 107264", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107278, + "TargetID": 107264, + "Directional": true + }] + }, { + "ID": 20040, + "SourceStructureID": 107267, + "TargetStructureID": 5649, + "Label": "107267-5649 via Conventional from 107268 -> 107266", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107268, + "TargetID": 107266, + "Directional": true + }] + }, { + "ID": 20041, + "SourceStructureID": 107275, + "TargetStructureID": 5649, + "Label": "107275-5649 via Conventional from 107293 -> 107292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107293, + "TargetID": 107292, + "Directional": true + }] + }, { + "ID": 20042, + "SourceStructureID": 107297, + "TargetStructureID": 5649, + "Label": "107297-5649 via Conventional from 107298 -> 107299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107298, + "TargetID": 107299, + "Directional": true + }] + }, { + "ID": 20043, + "SourceStructureID": 107306, + "TargetStructureID": 5649, + "Label": "107306-5649 via Conventional from 107308 -> 107309", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107308, + "TargetID": 107309, + "Directional": true + }] + }, { + "ID": 20044, + "SourceStructureID": 107314, + "TargetStructureID": 5649, + "Label": "107314-5649 via Conventional from 107315 -> 70013", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107315, + "TargetID": 70013, + "Directional": true + }] + }, { + "ID": 20045, + "SourceStructureID": 107321, + "TargetStructureID": 5649, + "Label": "107321-5649 via Conventional from 107322 -> 107323", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107322, + "TargetID": 107323, + "Directional": true + }] + }, { + "ID": 20046, + "SourceStructureID": 107324, + "TargetStructureID": 5649, + "Label": "107324-5649 via Conventional from 107325 -> 107326", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107325, + "TargetID": 107326, + "Directional": true + }] + }, { + "ID": 20047, + "SourceStructureID": 107328, + "TargetStructureID": 5649, + "Label": "107328-5649 via Conventional from 107329 -> 70007", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107329, + "TargetID": 70007, + "Directional": true + }] + }, { + "ID": 20048, + "SourceStructureID": 107330, + "TargetStructureID": 5649, + "Label": "107330-5649 via Conventional from 107331 -> 70006", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107331, + "TargetID": 70006, + "Directional": true + }] + }, { + "ID": 20049, + "SourceStructureID": 107332, + "TargetStructureID": 5649, + "Label": "107332-5649 via Conventional from 107347 -> 70009", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107347, + "TargetID": 70009, + "Directional": true + }] + }, { + "ID": 20050, + "SourceStructureID": 107337, + "TargetStructureID": 5649, + "Label": "107337-5649 via Conventional from 107338 -> 107318", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107338, + "TargetID": 107318, + "Directional": true + }] + }, { + "ID": 20051, + "SourceStructureID": 107360, + "TargetStructureID": 5649, + "Label": "107360-5649 via Conventional from 107362 -> 70010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107362, + "TargetID": 70010, + "Directional": true + }] + }, { + "ID": 20052, + "SourceStructureID": 107363, + "TargetStructureID": 5649, + "Label": "107363-5649 via Conventional from 107364 -> 70017", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107364, + "TargetID": 70017, + "Directional": true + }] + }, { + "ID": 20053, + "SourceStructureID": 107367, + "TargetStructureID": 13525, + "Label": "107367-13525 via Ribbon Synapse from 107368 -> 86729", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 107368, + "TargetID": 86729, + "Directional": true + }] + }, { + "ID": 20054, + "SourceStructureID": 107377, + "TargetStructureID": 5531, + "Label": "107377-5531 via Conventional from 107380 -> 107381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107380, + "TargetID": 107381, + "Directional": true + }] + }, { + "ID": 20055, + "SourceStructureID": 107378, + "TargetStructureID": 5503, + "Label": "107378-5503 via Conventional from 107379 -> 36627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107379, + "TargetID": 36627, + "Directional": true + }] + }, { + "ID": 20056, + "SourceStructureID": 107383, + "TargetStructureID": 5503, + "Label": "107383-5503 via Conventional from 107384 -> 36631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107384, + "TargetID": 36631, + "Directional": true + }] + }, { + "ID": 20057, + "SourceStructureID": 107397, + "TargetStructureID": 5531, + "Label": "107397-5531 via Conventional from 107398 -> 54585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107398, + "TargetID": 54585, + "Directional": true + }] + }, { + "ID": 20058, + "SourceStructureID": 107399, + "TargetStructureID": 5531, + "Label": "107399-5531 via Conventional from 107400 -> 54586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107400, + "TargetID": 54586, + "Directional": true + }] + }, { + "ID": 20059, + "SourceStructureID": 107401, + "TargetStructureID": 5531, + "Label": "107401-5531 via Conventional from 107402 -> 107403", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107402, + "TargetID": 107403, + "Directional": true + }] + }, { + "ID": 20060, + "SourceStructureID": 107408, + "TargetStructureID": 5531, + "Label": "107408-5531 via Conventional from 107409 -> 54576", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107409, + "TargetID": 54576, + "Directional": true + }] + }, { + "ID": 20061, + "SourceStructureID": 107418, + "TargetStructureID": 5531, + "Label": "107418-5531 via Conventional from 107419 -> 54581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107419, + "TargetID": 54581, + "Directional": true + }] + }, { + "ID": 20062, + "SourceStructureID": 107429, + "TargetStructureID": 5531, + "Label": "107429-5531 via Conventional from 107430 -> 91681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107430, + "TargetID": 91681, + "Directional": true + }] + }, { + "ID": 20063, + "SourceStructureID": 107431, + "TargetStructureID": 595, + "Label": "107431-595 via Conventional from 107435 -> 46696", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107435, + "TargetID": 46696, + "Directional": true + }] + }, { + "ID": 20064, + "SourceStructureID": 107433, + "TargetStructureID": 5503, + "Label": "107433-5503 via Conventional from 107434 -> 60732", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107434, + "TargetID": 60732, + "Directional": true + }] + }, { + "ID": 20065, + "SourceStructureID": 107444, + "TargetStructureID": 5503, + "Label": "107444-5503 via Conventional from 107488 -> 60735", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107488, + "TargetID": 60735, + "Directional": true + }] + }, { + "ID": 20066, + "SourceStructureID": 107445, + "TargetStructureID": 5531, + "Label": "107445-5531 via Conventional from 107446 -> 107447", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107446, + "TargetID": 107447, + "Directional": true + }] + }, { + "ID": 20067, + "SourceStructureID": 107455, + "TargetStructureID": 5503, + "Label": "107455-5503 via Conventional from 107457 -> 60731", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107457, + "TargetID": 60731, + "Directional": true + }] + }, { + "ID": 20068, + "SourceStructureID": 107476, + "TargetStructureID": 5531, + "Label": "107476-5531 via Conventional from 107481 -> 107482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107481, + "TargetID": 107482, + "Directional": true + }] + }, { + "ID": 20069, + "SourceStructureID": 107477, + "TargetStructureID": 5503, + "Label": "107477-5503 via Conventional from 107479 -> 60733, 107480 -> 60730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107479, + "TargetID": 60733, + "Directional": true + }, { + "SourceID": 107480, + "TargetID": 60730, + "Directional": true + }] + }, { + "ID": 20070, + "SourceStructureID": 107483, + "TargetStructureID": 176, + "Label": "107483-176 via Conventional from 107486 -> 5869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107486, + "TargetID": 5869, + "Directional": true + }] + }, { + "ID": 20071, + "SourceStructureID": 107483, + "TargetStructureID": 5531, + "Label": "107483-5531 via Conventional from 107536 -> 107537", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107536, + "TargetID": 107537, + "Directional": true + }] + }, { + "ID": 20072, + "SourceStructureID": 107487, + "TargetStructureID": 176, + "Label": "107487-176 via Conventional from 107492 -> 107493", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107492, + "TargetID": 107493, + "Directional": true + }] + }, { + "ID": 20073, + "SourceStructureID": 107490, + "TargetStructureID": 5503, + "Label": "107490-5503 via Conventional from 107491 -> 107489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107491, + "TargetID": 107489, + "Directional": true + }] + }, { + "ID": 20074, + "SourceStructureID": 107494, + "TargetStructureID": 5503, + "Label": "107494-5503 via Conventional from 107495 -> 60734", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107495, + "TargetID": 60734, + "Directional": true + }] + }, { + "ID": 20075, + "SourceStructureID": 107512, + "TargetStructureID": 176, + "Label": "107512-176 via Conventional from 128664 -> 125434", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128664, + "TargetID": 125434, + "Directional": true + }] + }, { + "ID": 20076, + "SourceStructureID": 107512, + "TargetStructureID": 5531, + "Label": "107512-5531 via Conventional from 107513 -> 107514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107513, + "TargetID": 107514, + "Directional": true + }] + }, { + "ID": 20077, + "SourceStructureID": 107525, + "TargetStructureID": 5503, + "Label": "107525-5503 via Conventional from 107526 -> 60706", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107526, + "TargetID": 60706, + "Directional": true + }] + }, { + "ID": 20078, + "SourceStructureID": 107530, + "TargetStructureID": 176, + "Label": "107530-176 via Conventional from 120263 -> 120262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120263, + "TargetID": 120262, + "Directional": true + }] + }, { + "ID": 20079, + "SourceStructureID": 107530, + "TargetStructureID": 5531, + "Label": "107530-5531 via Conventional from 107531 -> 107532", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107531, + "TargetID": 107532, + "Directional": true + }] + }, { + "ID": 20080, + "SourceStructureID": 107543, + "TargetStructureID": 176, + "Label": "107543-176 via Conventional from 128677 -> 125447", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128677, + "TargetID": 125447, + "Directional": true + }] + }, { + "ID": 20081, + "SourceStructureID": 107543, + "TargetStructureID": 5531, + "Label": "107543-5531 via Conventional from 107544 -> 107545", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107544, + "TargetID": 107545, + "Directional": true + }] + }, { + "ID": 20082, + "SourceStructureID": 107560, + "TargetStructureID": 5531, + "Label": "107560-5531 via Conventional from 107561 -> 107562", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107561, + "TargetID": 107562, + "Directional": true + }] + }, { + "ID": 20083, + "SourceStructureID": 107583, + "TargetStructureID": 176, + "Label": "107583-176 via Conventional from 125440 -> 5877", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125440, + "TargetID": 5877, + "Directional": true + }] + }, { + "ID": 20084, + "SourceStructureID": 107597, + "TargetStructureID": 6155, + "Label": "107597-6155 via Conventional from 107743 -> 48269", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107743, + "TargetID": 48269, + "Directional": true + }] + }, { + "ID": 20085, + "SourceStructureID": 107612, + "TargetStructureID": 6155, + "Label": "107612-6155 via Conventional from 107613 -> 15391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107613, + "TargetID": 15391, + "Directional": true + }] + }, { + "ID": 20086, + "SourceStructureID": 107628, + "TargetStructureID": 6155, + "Label": "107628-6155 via Conventional from 107629 -> 48268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107629, + "TargetID": 48268, + "Directional": true + }] + }, { + "ID": 20087, + "SourceStructureID": 107641, + "TargetStructureID": 5531, + "Label": "107641-5531 via Conventional from 107642 -> 107643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107642, + "TargetID": 107643, + "Directional": true + }] + }, { + "ID": 20088, + "SourceStructureID": 107649, + "TargetStructureID": 5531, + "Label": "107649-5531 via Conventional from 107650 -> 107651", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107650, + "TargetID": 107651, + "Directional": true + }] + }, { + "ID": 20089, + "SourceStructureID": 107661, + "TargetStructureID": 5531, + "Label": "107661-5531 via Conventional from 107662 -> 107663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107662, + "TargetID": 107663, + "Directional": true + }] + }, { + "ID": 20090, + "SourceStructureID": 107687, + "TargetStructureID": 5531, + "Label": "107687-5531 via Conventional from 107688 -> 107689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107688, + "TargetID": 107689, + "Directional": true + }] + }, { + "ID": 20091, + "SourceStructureID": 107693, + "TargetStructureID": 5531, + "Label": "107693-5531 via Conventional from 107694 -> 107695", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107694, + "TargetID": 107695, + "Directional": true + }] + }, { + "ID": 20092, + "SourceStructureID": 107706, + "TargetStructureID": 5531, + "Label": "107706-5531 via Conventional from 107707 -> 107708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107707, + "TargetID": 107708, + "Directional": true + }] + }, { + "ID": 20093, + "SourceStructureID": 107712, + "TargetStructureID": 5531, + "Label": "107712-5531 via Conventional from 107713 -> 107714", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107713, + "TargetID": 107714, + "Directional": true + }] + }, { + "ID": 20094, + "SourceStructureID": 107727, + "TargetStructureID": 5531, + "Label": "107727-5531 via Conventional from 107728 -> 107729", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107728, + "TargetID": 107729, + "Directional": true + }] + }, { + "ID": 20095, + "SourceStructureID": 107736, + "TargetStructureID": 5531, + "Label": "107736-5531 via Conventional from 107737 -> 107738", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107737, + "TargetID": 107738, + "Directional": true + }] + }, { + "ID": 20096, + "SourceStructureID": 107753, + "TargetStructureID": 6155, + "Label": "107753-6155 via Conventional from 107777 -> 107778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107777, + "TargetID": 107778, + "Directional": true + }] + }, { + "ID": 20097, + "SourceStructureID": 107755, + "TargetStructureID": 6155, + "Label": "107755-6155 via Conventional from 107756 -> 48272", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107756, + "TargetID": 48272, + "Directional": true + }] + }, { + "ID": 20098, + "SourceStructureID": 107757, + "TargetStructureID": 6155, + "Label": "107757-6155 via Conventional from 107761 -> 15396", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107761, + "TargetID": 15396, + "Directional": true + }] + }, { + "ID": 20099, + "SourceStructureID": 107758, + "TargetStructureID": 6155, + "Label": "107758-6155 via Conventional from 107759 -> 107760", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107759, + "TargetID": 107760, + "Directional": true + }] + }, { + "ID": 20100, + "SourceStructureID": 107762, + "TargetStructureID": 6155, + "Label": "107762-6155 via Conventional from 107763 -> 15434", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107763, + "TargetID": 15434, + "Directional": true + }] + }, { + "ID": 20101, + "SourceStructureID": 107792, + "TargetStructureID": 6155, + "Label": "107792-6155 via Conventional from 107793 -> 15426", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107793, + "TargetID": 15426, + "Directional": true + }] + }, { + "ID": 20102, + "SourceStructureID": 107794, + "TargetStructureID": 6155, + "Label": "107794-6155 via Conventional from 107795 -> 15428", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107795, + "TargetID": 15428, + "Directional": true + }] + }, { + "ID": 20103, + "SourceStructureID": 107796, + "TargetStructureID": 6155, + "Label": "107796-6155 via Conventional from 107797 -> 15402", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107797, + "TargetID": 15402, + "Directional": true + }] + }, { + "ID": 20104, + "SourceStructureID": 107815, + "TargetStructureID": 6155, + "Label": "107815-6155 via Conventional from 107816 -> 16131", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107816, + "TargetID": 16131, + "Directional": true + }] + }, { + "ID": 20105, + "SourceStructureID": 107820, + "TargetStructureID": 6155, + "Label": "107820-6155 via Conventional from 107821 -> 49070", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107821, + "TargetID": 49070, + "Directional": true + }] + }, { + "ID": 20106, + "SourceStructureID": 107822, + "TargetStructureID": 6155, + "Label": "107822-6155 via Conventional from 107823 -> 23086", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107823, + "TargetID": 23086, + "Directional": true + }] + }, { + "ID": 20107, + "SourceStructureID": 107827, + "TargetStructureID": 6155, + "Label": "107827-6155 via Conventional from 107828 -> 107829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107828, + "TargetID": 107829, + "Directional": true + }] + }, { + "ID": 20108, + "SourceStructureID": 107831, + "TargetStructureID": 6155, + "Label": "107831-6155 via Conventional from 107832 -> 48260", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107832, + "TargetID": 48260, + "Directional": true + }] + }, { + "ID": 20109, + "SourceStructureID": 107833, + "TargetStructureID": 6155, + "Label": "107833-6155 via Conventional from 107835 -> 107830", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107835, + "TargetID": 107830, + "Directional": true + }] + }, { + "ID": 20110, + "SourceStructureID": 107833, + "TargetStructureID": 9260, + "Label": "107833-9260 via Conventional from 107834 -> 9474", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107834, + "TargetID": 9474, + "Directional": true + }] + }, { + "ID": 20111, + "SourceStructureID": 107836, + "TargetStructureID": 6155, + "Label": "107836-6155 via Conventional from 107837 -> 47940", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107837, + "TargetID": 47940, + "Directional": true + }] + }, { + "ID": 20112, + "SourceStructureID": 107843, + "TargetStructureID": 6155, + "Label": "107843-6155 via Conventional from 107844 -> 15502", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107844, + "TargetID": 15502, + "Directional": true + }] + }, { + "ID": 20113, + "SourceStructureID": 107845, + "TargetStructureID": 6155, + "Label": "107845-6155 via Conventional from 107846 -> 48262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107846, + "TargetID": 48262, + "Directional": true + }] + }, { + "ID": 20114, + "SourceStructureID": 107849, + "TargetStructureID": 6155, + "Label": "107849-6155 via Conventional from 107851 -> 107852", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107851, + "TargetID": 107852, + "Directional": true + }] + }, { + "ID": 20115, + "SourceStructureID": 107853, + "TargetStructureID": 6155, + "Label": "107853-6155 via Conventional from 107854 -> 15503", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107854, + "TargetID": 15503, + "Directional": true + }] + }, { + "ID": 20116, + "SourceStructureID": 107855, + "TargetStructureID": 6155, + "Label": "107855-6155 via Conventional from 107856 -> 48261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107856, + "TargetID": 48261, + "Directional": true + }] + }, { + "ID": 20117, + "SourceStructureID": 107865, + "TargetStructureID": 6155, + "Label": "107865-6155 via Conventional from 107866 -> 15500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107866, + "TargetID": 15500, + "Directional": true + }] + }, { + "ID": 20118, + "SourceStructureID": 107865, + "TargetStructureID": 107845, + "Label": "107865-107845 via Conventional from 107867 -> 107868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107867, + "TargetID": 107868, + "Directional": true + }] + }, { + "ID": 20119, + "SourceStructureID": 107875, + "TargetStructureID": 6155, + "Label": "107875-6155 via Conventional from 107876 -> 15514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107876, + "TargetID": 15514, + "Directional": true + }] + }, { + "ID": 20120, + "SourceStructureID": 107879, + "TargetStructureID": 6155, + "Label": "107879-6155 via Conventional from 107880 -> 15504", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107880, + "TargetID": 15504, + "Directional": true + }] + }, { + "ID": 20121, + "SourceStructureID": 107882, + "TargetStructureID": 6155, + "Label": "107882-6155 via Conventional from 107884 -> 107883", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107884, + "TargetID": 107883, + "Directional": true + }] + }, { + "ID": 20122, + "SourceStructureID": 107887, + "TargetStructureID": 6155, + "Label": "107887-6155 via Conventional from 107888 -> 15513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107888, + "TargetID": 15513, + "Directional": true + }] + }, { + "ID": 20123, + "SourceStructureID": 107908, + "TargetStructureID": 6155, + "Label": "107908-6155 via Conventional from 107909 -> 15505", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107909, + "TargetID": 15505, + "Directional": true + }] + }, { + "ID": 20124, + "SourceStructureID": 107910, + "TargetStructureID": 6155, + "Label": "107910-6155 via Conventional from 107911 -> 15544, 107921 -> 30584", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107911, + "TargetID": 15544, + "Directional": true + }, { + "SourceID": 107921, + "TargetID": 30584, + "Directional": true + }] + }, { + "ID": 20125, + "SourceStructureID": 107922, + "TargetStructureID": 6155, + "Label": "107922-6155 via Conventional from 107923 -> 15506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107923, + "TargetID": 15506, + "Directional": true + }] + }, { + "ID": 20126, + "SourceStructureID": 107926, + "TargetStructureID": 6155, + "Label": "107926-6155 via Conventional from 107927 -> 15515", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107927, + "TargetID": 15515, + "Directional": true + }] + }, { + "ID": 20127, + "SourceStructureID": 107930, + "TargetStructureID": 6155, + "Label": "107930-6155 via Conventional from 107931 -> 107932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107931, + "TargetID": 107932, + "Directional": true + }] + }, { + "ID": 20128, + "SourceStructureID": 107937, + "TargetStructureID": 6155, + "Label": "107937-6155 via Conventional from 107938 -> 15538", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107938, + "TargetID": 15538, + "Directional": true + }] + }, { + "ID": 20129, + "SourceStructureID": 107939, + "TargetStructureID": 6155, + "Label": "107939-6155 via Conventional from 107940 -> 15582", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107940, + "TargetID": 15582, + "Directional": true + }] + }, { + "ID": 20130, + "SourceStructureID": 107941, + "TargetStructureID": 6155, + "Label": "107941-6155 via Conventional from 107942 -> 107943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107942, + "TargetID": 107943, + "Directional": true + }] + }, { + "ID": 20131, + "SourceStructureID": 107950, + "TargetStructureID": 6155, + "Label": "107950-6155 via Conventional from 107951 -> 48279", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107951, + "TargetID": 48279, + "Directional": true + }] + }, { + "ID": 20132, + "SourceStructureID": 107955, + "TargetStructureID": 6155, + "Label": "107955-6155 via Conventional from 107956 -> 48280", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107956, + "TargetID": 48280, + "Directional": true + }] + }, { + "ID": 20133, + "SourceStructureID": 107957, + "TargetStructureID": 5503, + "Label": "107957-5503 via Conventional from 107960 -> 60708", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107960, + "TargetID": 60708, + "Directional": true + }] + }, { + "ID": 20134, + "SourceStructureID": 107961, + "TargetStructureID": 5503, + "Label": "107961-5503 via Conventional from 107962 -> 60709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107962, + "TargetID": 60709, + "Directional": true + }] + }, { + "ID": 20135, + "SourceStructureID": 107973, + "TargetStructureID": 5503, + "Label": "107973-5503 via Conventional from 107975 -> 60719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107975, + "TargetID": 60719, + "Directional": true + }] + }, { + "ID": 20136, + "SourceStructureID": 107974, + "TargetStructureID": 6155, + "Label": "107974-6155 via Conventional from 107976 -> 15542", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107976, + "TargetID": 15542, + "Directional": true + }] + }, { + "ID": 20137, + "SourceStructureID": 107977, + "TargetStructureID": 5503, + "Label": "107977-5503 via Conventional from 107978 -> 60724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107978, + "TargetID": 60724, + "Directional": true + }] + }, { + "ID": 20138, + "SourceStructureID": 107981, + "TargetStructureID": 5503, + "Label": "107981-5503 via Conventional from 107987 -> 60720", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107987, + "TargetID": 60720, + "Directional": true + }] + }, { + "ID": 20139, + "SourceStructureID": 107982, + "TargetStructureID": 6155, + "Label": "107982-6155 via Conventional from 107985 -> 107986", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107985, + "TargetID": 107986, + "Directional": true + }] + }, { + "ID": 20140, + "SourceStructureID": 107988, + "TargetStructureID": 5503, + "Label": "107988-5503 via Conventional from 107993 -> 60721", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 107993, + "TargetID": 60721, + "Directional": true + }] + }, { + "ID": 20141, + "SourceStructureID": 108017, + "TargetStructureID": 5503, + "Label": "108017-5503 via Conventional from 108018 -> 108016", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108018, + "TargetID": 108016, + "Directional": true + }] + }, { + "ID": 20142, + "SourceStructureID": 108038, + "TargetStructureID": 5531, + "Label": "108038-5531 via Conventional from 108042 -> 108037", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108042, + "TargetID": 108037, + "Directional": true + }] + }, { + "ID": 20143, + "SourceStructureID": 108040, + "TargetStructureID": 6155, + "Label": "108040-6155 via Conventional from 108043 -> 49079", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108043, + "TargetID": 49079, + "Directional": true + }] + }, { + "ID": 20144, + "SourceStructureID": 108041, + "TargetStructureID": 5503, + "Label": "108041-5503 via Conventional from 108082 -> 60718", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108082, + "TargetID": 60718, + "Directional": true + }] + }, { + "ID": 20145, + "SourceStructureID": 108048, + "TargetStructureID": 6155, + "Label": "108048-6155 via Conventional from 108049 -> 48298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108049, + "TargetID": 48298, + "Directional": true + }] + }, { + "ID": 20146, + "SourceStructureID": 108083, + "TargetStructureID": 5501, + "Label": "108083-5501 via Conventional from 110221 -> 110215", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110221, + "TargetID": 110215, + "Directional": true + }] + }, { + "ID": 20147, + "SourceStructureID": 108083, + "TargetStructureID": 5503, + "Label": "108083-5503 via Conventional from 108086 -> 60717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108086, + "TargetID": 60717, + "Directional": true + }] + }, { + "ID": 20148, + "SourceStructureID": 108089, + "TargetStructureID": 6155, + "Label": "108089-6155 via Conventional from 108090 -> 15545", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108090, + "TargetID": 15545, + "Directional": true + }] + }, { + "ID": 20149, + "SourceStructureID": 108094, + "TargetStructureID": 6155, + "Label": "108094-6155 via Conventional from 108095 -> 30585", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108095, + "TargetID": 30585, + "Directional": true + }] + }, { + "ID": 20150, + "SourceStructureID": 108097, + "TargetStructureID": 6155, + "Label": "108097-6155 via Conventional from 108104 -> 48287", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108104, + "TargetID": 48287, + "Directional": true + }] + }, { + "ID": 20151, + "SourceStructureID": 108100, + "TargetStructureID": 5503, + "Label": "108100-5503 via Conventional from 108102 -> 108099", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108102, + "TargetID": 108099, + "Directional": true + }] + }, { + "ID": 20152, + "SourceStructureID": 108108, + "TargetStructureID": 5503, + "Label": "108108-5503 via Conventional from 108127 -> 108105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108127, + "TargetID": 108105, + "Directional": true + }] + }, { + "ID": 20153, + "SourceStructureID": 108109, + "TargetStructureID": 6155, + "Label": "108109-6155 via Conventional from 108110 -> 15547", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108110, + "TargetID": 15547, + "Directional": true + }] + }, { + "ID": 20154, + "SourceStructureID": 108111, + "TargetStructureID": 6155, + "Label": "108111-6155 via Conventional from 108112 -> 48288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108112, + "TargetID": 48288, + "Directional": true + }] + }, { + "ID": 20155, + "SourceStructureID": 108131, + "TargetStructureID": 6155, + "Label": "108131-6155 via Conventional from 119491 -> 49080", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119491, + "TargetID": 49080, + "Directional": true + }] + }, { + "ID": 20156, + "SourceStructureID": 108143, + "TargetStructureID": 5649, + "Label": "108143-5649 via Conventional from 108144 -> 108141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108144, + "TargetID": 108141, + "Directional": true + }] + }, { + "ID": 20157, + "SourceStructureID": 108147, + "TargetStructureID": 5503, + "Label": "108147-5503 via Conventional from 108148 -> 108146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108148, + "TargetID": 108146, + "Directional": true + }] + }, { + "ID": 20158, + "SourceStructureID": 108151, + "TargetStructureID": 6155, + "Label": "108151-6155 via Conventional from 108152 -> 34793", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108152, + "TargetID": 34793, + "Directional": true + }] + }, { + "ID": 20159, + "SourceStructureID": 108154, + "TargetStructureID": 5503, + "Label": "108154-5503 via Conventional from 108155 -> 108153", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108155, + "TargetID": 108153, + "Directional": true + }] + }, { + "ID": 20160, + "SourceStructureID": 108157, + "TargetStructureID": 6155, + "Label": "108157-6155 via Conventional from 108159 -> 48297", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108159, + "TargetID": 48297, + "Directional": true + }] + }, { + "ID": 20161, + "SourceStructureID": 108165, + "TargetStructureID": 5503, + "Label": "108165-5503 via Conventional from 108168 -> 108169", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108168, + "TargetID": 108169, + "Directional": true + }] + }, { + "ID": 20162, + "SourceStructureID": 108166, + "TargetStructureID": 6155, + "Label": "108166-6155 via Conventional from 108167 -> 34790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108167, + "TargetID": 34790, + "Directional": true + }] + }, { + "ID": 20163, + "SourceStructureID": 108170, + "TargetStructureID": 6155, + "Label": "108170-6155 via Conventional from 108175 -> 34792", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108175, + "TargetID": 34792, + "Directional": true + }] + }, { + "ID": 20164, + "SourceStructureID": 108178, + "TargetStructureID": 6155, + "Label": "108178-6155 via Conventional from 108179 -> 34784, 108200 -> 34784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108179, + "TargetID": 34784, + "Directional": true + }, { + "SourceID": 108200, + "TargetID": 34784, + "Directional": true + }] + }, { + "ID": 20165, + "SourceStructureID": 108182, + "TargetStructureID": 5503, + "Label": "108182-5503 via Conventional from 108186 -> 108181", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108186, + "TargetID": 108181, + "Directional": true + }] + }, { + "ID": 20166, + "SourceStructureID": 108194, + "TargetStructureID": 5503, + "Label": "108194-5503 via Conventional from 108199 -> 108193", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108199, + "TargetID": 108193, + "Directional": true + }] + }, { + "ID": 20167, + "SourceStructureID": 108209, + "TargetStructureID": 6155, + "Label": "108209-6155 via Conventional from 108212 -> 48295", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108212, + "TargetID": 48295, + "Directional": true + }] + }, { + "ID": 20168, + "SourceStructureID": 108215, + "TargetStructureID": 6155, + "Label": "108215-6155 via Conventional from 108223 -> 34783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108223, + "TargetID": 34783, + "Directional": true + }] + }, { + "ID": 20169, + "SourceStructureID": 108225, + "TargetStructureID": 6155, + "Label": "108225-6155 via Conventional from 108227 -> 34788", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108227, + "TargetID": 34788, + "Directional": true + }] + }, { + "ID": 20170, + "SourceStructureID": 108229, + "TargetStructureID": 6155, + "Label": "108229-6155 via Conventional from 108231 -> 34791", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108231, + "TargetID": 34791, + "Directional": true + }] + }, { + "ID": 20171, + "SourceStructureID": 108248, + "TargetStructureID": 6155, + "Label": "108248-6155 via Conventional from 108250 -> 34789", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108250, + "TargetID": 34789, + "Directional": true + }] + }, { + "ID": 20172, + "SourceStructureID": 108254, + "TargetStructureID": 6155, + "Label": "108254-6155 via Conventional from 108262 -> 32003", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108262, + "TargetID": 32003, + "Directional": true + }] + }, { + "ID": 20173, + "SourceStructureID": 108273, + "TargetStructureID": 6155, + "Label": "108273-6155 via Conventional from 108280 -> 48307", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108280, + "TargetID": 48307, + "Directional": true + }] + }, { + "ID": 20174, + "SourceStructureID": 108284, + "TargetStructureID": 6155, + "Label": "108284-6155 via Conventional from 108285 -> 48308", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108285, + "TargetID": 48308, + "Directional": true + }] + }, { + "ID": 20175, + "SourceStructureID": 108294, + "TargetStructureID": 6155, + "Label": "108294-6155 via Conventional from 108295 -> 15529", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108295, + "TargetID": 15529, + "Directional": true + }] + }, { + "ID": 20176, + "SourceStructureID": 108298, + "TargetStructureID": 6155, + "Label": "108298-6155 via Conventional from 108305 -> 15528", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108305, + "TargetID": 15528, + "Directional": true + }] + }, { + "ID": 20177, + "SourceStructureID": 108306, + "TargetStructureID": 6155, + "Label": "108306-6155 via Conventional from 108307 -> 108308", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108307, + "TargetID": 108308, + "Directional": true + }] + }, { + "ID": 20178, + "SourceStructureID": 108309, + "TargetStructureID": 6155, + "Label": "108309-6155 via Conventional from 108330 -> 29776", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108330, + "TargetID": 29776, + "Directional": true + }] + }, { + "ID": 20179, + "SourceStructureID": 108317, + "TargetStructureID": 6155, + "Label": "108317-6155 via Conventional from 108322 -> 30583", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108322, + "TargetID": 30583, + "Directional": true + }] + }, { + "ID": 20180, + "SourceStructureID": 108327, + "TargetStructureID": 6155, + "Label": "108327-6155 via Conventional from 108328 -> 29777", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108328, + "TargetID": 29777, + "Directional": true + }] + }, { + "ID": 20181, + "SourceStructureID": 108331, + "TargetStructureID": 6155, + "Label": "108331-6155 via Conventional from 108334 -> 48313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108334, + "TargetID": 48313, + "Directional": true + }] + }, { + "ID": 20182, + "SourceStructureID": 108336, + "TargetStructureID": 6155, + "Label": "108336-6155 via Conventional from 108337 -> 48310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108337, + "TargetID": 48310, + "Directional": true + }] + }, { + "ID": 20183, + "SourceStructureID": 108357, + "TargetStructureID": 6155, + "Label": "108357-6155 via Conventional from 108359 -> 108358", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108359, + "TargetID": 108358, + "Directional": true + }] + }, { + "ID": 20184, + "SourceStructureID": 108374, + "TargetStructureID": 5503, + "Label": "108374-5503 via Conventional from 108375 -> 108373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108375, + "TargetID": 108373, + "Directional": true + }] + }, { + "ID": 20185, + "SourceStructureID": 108396, + "TargetStructureID": 5503, + "Label": "108396-5503 via Conventional from 108397 -> 108395", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108397, + "TargetID": 108395, + "Directional": true + }] + }, { + "ID": 20186, + "SourceStructureID": 108398, + "TargetStructureID": 20136, + "Label": "108398-20136 via Conventional from 108402 -> 20139", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108402, + "TargetID": 20139, + "Directional": true + }] + }, { + "ID": 20187, + "SourceStructureID": 108403, + "TargetStructureID": 20136, + "Label": "108403-20136 via Conventional from 108404 -> 20140", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108404, + "TargetID": 20140, + "Directional": true + }] + }, { + "ID": 20188, + "SourceStructureID": 108415, + "TargetStructureID": 5503, + "Label": "108415-5503 via Conventional from 108416 -> 108414", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108416, + "TargetID": 108414, + "Directional": true + }] + }, { + "ID": 20189, + "SourceStructureID": 108418, + "TargetStructureID": 5503, + "Label": "108418-5503 via Conventional from 108419 -> 108406", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108419, + "TargetID": 108406, + "Directional": true + }] + }, { + "ID": 20190, + "SourceStructureID": 108429, + "TargetStructureID": 20136, + "Label": "108429-20136 via Conventional from 108430 -> 20142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108430, + "TargetID": 20142, + "Directional": true + }] + }, { + "ID": 20191, + "SourceStructureID": 108437, + "TargetStructureID": 5503, + "Label": "108437-5503 via Conventional from 108439 -> 108436", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108439, + "TargetID": 108436, + "Directional": true + }] + }, { + "ID": 20192, + "SourceStructureID": 108442, + "TargetStructureID": 5503, + "Label": "108442-5503 via Conventional from 108443 -> 108441", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108443, + "TargetID": 108441, + "Directional": true + }] + }, { + "ID": 20193, + "SourceStructureID": 108485, + "TargetStructureID": 5503, + "Label": "108485-5503 via Conventional from 108491 -> 60634", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108491, + "TargetID": 60634, + "Directional": true + }] + }, { + "ID": 20194, + "SourceStructureID": 108498, + "TargetStructureID": 5503, + "Label": "108498-5503 via Conventional from 108499 -> 108497", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108499, + "TargetID": 108497, + "Directional": true + }] + }, { + "ID": 20195, + "SourceStructureID": 108522, + "TargetStructureID": 5503, + "Label": "108522-5503 via Conventional from 108567 -> 108463", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108567, + "TargetID": 108463, + "Directional": true + }] + }, { + "ID": 20196, + "SourceStructureID": 108529, + "TargetStructureID": 5503, + "Label": "108529-5503 via Conventional from 108530 -> 60664", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108530, + "TargetID": 60664, + "Directional": true + }] + }, { + "ID": 20197, + "SourceStructureID": 108531, + "TargetStructureID": 5503, + "Label": "108531-5503 via Conventional from 108532 -> 60631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108532, + "TargetID": 60631, + "Directional": true + }] + }, { + "ID": 20198, + "SourceStructureID": 108533, + "TargetStructureID": 5503, + "Label": "108533-5503 via Conventional from 108535 -> 60630", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108535, + "TargetID": 60630, + "Directional": true + }] + }, { + "ID": 20199, + "SourceStructureID": 108539, + "TargetStructureID": 5645, + "Label": "108539-5645 via Conventional from 108541 -> 108538", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108541, + "TargetID": 108538, + "Directional": true + }] + }, { + "ID": 20200, + "SourceStructureID": 108616, + "TargetStructureID": 6857, + "Label": "108616-6857 via Conventional from 108617 -> 7558", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108617, + "TargetID": 7558, + "Directional": true + }] + }, { + "ID": 20201, + "SourceStructureID": 108701, + "TargetStructureID": 5503, + "Label": "108701-5503 via Conventional from 108702 -> 108700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108702, + "TargetID": 108700, + "Directional": true + }] + }, { + "ID": 20202, + "SourceStructureID": 108715, + "TargetStructureID": 5503, + "Label": "108715-5503 via Conventional from 108721 -> 108714", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108721, + "TargetID": 108714, + "Directional": true + }] + }, { + "ID": 20203, + "SourceStructureID": 108724, + "TargetStructureID": 5499, + "Label": "108724-5499 via Conventional from 108725 -> 105786", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108725, + "TargetID": 105786, + "Directional": true + }] + }, { + "ID": 20204, + "SourceStructureID": 108730, + "TargetStructureID": 5499, + "Label": "108730-5499 via Conventional from 108733 -> 105742", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108733, + "TargetID": 105742, + "Directional": true + }] + }, { + "ID": 20205, + "SourceStructureID": 108745, + "TargetStructureID": 5916, + "Label": "108745-5916 via Conventional from 108746 -> 37976", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108746, + "TargetID": 37976, + "Directional": true + }] + }, { + "ID": 20206, + "SourceStructureID": 108787, + "TargetStructureID": 5503, + "Label": "108787-5503 via Conventional from 108788 -> 36636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108788, + "TargetID": 36636, + "Directional": true + }] + }, { + "ID": 20207, + "SourceStructureID": 108799, + "TargetStructureID": 5503, + "Label": "108799-5503 via Conventional from 108815 -> 36640", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108815, + "TargetID": 36640, + "Directional": true + }] + }, { + "ID": 20208, + "SourceStructureID": 108800, + "TargetStructureID": 20136, + "Label": "108800-20136 via Conventional from 108801 -> 108802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108801, + "TargetID": 108802, + "Directional": true + }] + }, { + "ID": 20209, + "SourceStructureID": 108804, + "TargetStructureID": 20136, + "Label": "108804-20136 via Conventional from 108807 -> 108808", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108807, + "TargetID": 108808, + "Directional": true + }] + }, { + "ID": 20210, + "SourceStructureID": 108814, + "TargetStructureID": 20136, + "Label": "108814-20136 via Conventional from 108816 -> 108817", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108816, + "TargetID": 108817, + "Directional": true + }] + }, { + "ID": 20211, + "SourceStructureID": 108822, + "TargetStructureID": 5503, + "Label": "108822-5503 via Conventional from 108823 -> 36642", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108823, + "TargetID": 36642, + "Directional": true + }] + }, { + "ID": 20212, + "SourceStructureID": 108825, + "TargetStructureID": 20136, + "Label": "108825-20136 via Conventional from 108829 -> 108830", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108829, + "TargetID": 108830, + "Directional": true + }] + }, { + "ID": 20213, + "SourceStructureID": 108865, + "TargetStructureID": 5503, + "Label": "108865-5503 via Conventional from 108868 -> 36643", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108868, + "TargetID": 36643, + "Directional": true + }] + }, { + "ID": 20214, + "SourceStructureID": 108869, + "TargetStructureID": 20136, + "Label": "108869-20136 via Conventional from 108872 -> 108873", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108872, + "TargetID": 108873, + "Directional": true + }] + }, { + "ID": 20215, + "SourceStructureID": 108871, + "TargetStructureID": 5503, + "Label": "108871-5503 via Conventional from 108874 -> 36647", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108874, + "TargetID": 36647, + "Directional": true + }] + }, { + "ID": 20216, + "SourceStructureID": 108932, + "TargetStructureID": 5503, + "Label": "108932-5503 via Conventional from 108934 -> 108931", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108934, + "TargetID": 108931, + "Directional": true + }] + }, { + "ID": 20217, + "SourceStructureID": 108936, + "TargetStructureID": 5503, + "Label": "108936-5503 via Conventional from 108940 -> 108935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108940, + "TargetID": 108935, + "Directional": true + }] + }, { + "ID": 20218, + "SourceStructureID": 108937, + "TargetStructureID": 20136, + "Label": "108937-20136 via Conventional from 108938 -> 108939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108938, + "TargetID": 108939, + "Directional": true + }] + }, { + "ID": 20219, + "SourceStructureID": 108941, + "TargetStructureID": 20136, + "Label": "108941-20136 via Conventional from 108942 -> 108943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108942, + "TargetID": 108943, + "Directional": true + }] + }, { + "ID": 20220, + "SourceStructureID": 108944, + "TargetStructureID": 20136, + "Label": "108944-20136 via Conventional from 108957 -> 108958", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108957, + "TargetID": 108958, + "Directional": true + }] + }, { + "ID": 20221, + "SourceStructureID": 108988, + "TargetStructureID": 20136, + "Label": "108988-20136 via Conventional from 108990 -> 45997", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108990, + "TargetID": 45997, + "Directional": true + }] + }, { + "ID": 20222, + "SourceStructureID": 108993, + "TargetStructureID": 20136, + "Label": "108993-20136 via Conventional from 108995 -> 45999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108995, + "TargetID": 45999, + "Directional": true + }] + }, { + "ID": 20223, + "SourceStructureID": 108996, + "TargetStructureID": 20136, + "Label": "108996-20136 via Conventional from 108997 -> 46002", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 108997, + "TargetID": 46002, + "Directional": true + }] + }, { + "ID": 20224, + "SourceStructureID": 109001, + "TargetStructureID": 20136, + "Label": "109001-20136 via Conventional from 109002 -> 46001", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109002, + "TargetID": 46001, + "Directional": true + }] + }, { + "ID": 20225, + "SourceStructureID": 109004, + "TargetStructureID": 20136, + "Label": "109004-20136 via Conventional from 109005 -> 45998", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109005, + "TargetID": 45998, + "Directional": true + }] + }, { + "ID": 20226, + "SourceStructureID": 109029, + "TargetStructureID": 20136, + "Label": "109029-20136 via Conventional from 109093 -> 109095", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109093, + "TargetID": 109095, + "Directional": true + }] + }, { + "ID": 20227, + "SourceStructureID": 109030, + "TargetStructureID": 20136, + "Label": "109030-20136 via Conventional from 109036 -> 20148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109036, + "TargetID": 20148, + "Directional": true + }] + }, { + "ID": 20228, + "SourceStructureID": 109039, + "TargetStructureID": 5916, + "Label": "109039-5916 via Conventional from 109041 -> 108930", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109041, + "TargetID": 108930, + "Directional": true + }] + }, { + "ID": 20229, + "SourceStructureID": 109068, + "TargetStructureID": 5916, + "Label": "109068-5916 via Conventional from 109069 -> 109067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109069, + "TargetID": 109067, + "Directional": true + }] + }, { + "ID": 20230, + "SourceStructureID": 109079, + "TargetStructureID": 5916, + "Label": "109079-5916 via Conventional from 109082 -> 109081", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109082, + "TargetID": 109081, + "Directional": true + }] + }, { + "ID": 20231, + "SourceStructureID": 109097, + "TargetStructureID": 20136, + "Label": "109097-20136 via Conventional from 109099 -> 46009", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109099, + "TargetID": 46009, + "Directional": true + }] + }, { + "ID": 20232, + "SourceStructureID": 109147, + "TargetStructureID": 109149, + "Label": "109147-109149 via Ribbon Synapse from 109148 -> 109150", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109148, + "TargetID": 109150, + "Directional": true + }] + }, { + "ID": 20233, + "SourceStructureID": 109210, + "TargetStructureID": 20136, + "Label": "109210-20136 via Conventional from 109212 -> 46029, 109233 -> 109234", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109212, + "TargetID": 46029, + "Directional": true + }, { + "SourceID": 109233, + "TargetID": 109234, + "Directional": true + }] + }, { + "ID": 20234, + "SourceStructureID": 109216, + "TargetStructureID": 20136, + "Label": "109216-20136 via Conventional from 109217 -> 109219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109217, + "TargetID": 109219, + "Directional": true + }] + }, { + "ID": 20235, + "SourceStructureID": 109239, + "TargetStructureID": 20136, + "Label": "109239-20136 via Conventional from 109241 -> 109242", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109241, + "TargetID": 109242, + "Directional": true + }] + }, { + "ID": 20236, + "SourceStructureID": 109239, + "TargetStructureID": 38502, + "Label": "109239-38502 via Conventional from 109240 -> 38505", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109240, + "TargetID": 38505, + "Directional": true + }] + }, { + "ID": 20237, + "SourceStructureID": 109245, + "TargetStructureID": 20136, + "Label": "109245-20136 via Conventional from 109246 -> 97821", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109246, + "TargetID": 97821, + "Directional": true + }] + }, { + "ID": 20238, + "SourceStructureID": 109257, + "TargetStructureID": 606, + "Label": "109257-606 via Conventional from 109258 -> 51584", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109258, + "TargetID": 51584, + "Directional": true + }] + }, { + "ID": 20239, + "SourceStructureID": 109267, + "TargetStructureID": 20136, + "Label": "109267-20136 via Conventional from 109272 -> 46033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109272, + "TargetID": 46033, + "Directional": true + }] + }, { + "ID": 20240, + "SourceStructureID": 109271, + "TargetStructureID": 20136, + "Label": "109271-20136 via Conventional from 109273 -> 46035", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109273, + "TargetID": 46035, + "Directional": true + }] + }, { + "ID": 20241, + "SourceStructureID": 109277, + "TargetStructureID": 5561, + "Label": "109277-5561 via Conventional from 109278 -> 97839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109278, + "TargetID": 97839, + "Directional": true + }] + }, { + "ID": 20242, + "SourceStructureID": 109308, + "TargetStructureID": 5916, + "Label": "109308-5916 via Conventional from 109311 -> 109310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109311, + "TargetID": 109310, + "Directional": true + }] + }, { + "ID": 20243, + "SourceStructureID": 109341, + "TargetStructureID": 20136, + "Label": "109341-20136 via Conventional from 109343 -> 109342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109343, + "TargetID": 109342, + "Directional": true + }] + }, { + "ID": 20244, + "SourceStructureID": 109419, + "TargetStructureID": 20136, + "Label": "109419-20136 via Conventional from 109434 -> 109433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109434, + "TargetID": 109433, + "Directional": true + }] + }, { + "ID": 20245, + "SourceStructureID": 109450, + "TargetStructureID": 20136, + "Label": "109450-20136 via Conventional from 109451 -> 46023", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109451, + "TargetID": 46023, + "Directional": true + }] + }, { + "ID": 20246, + "SourceStructureID": 109458, + "TargetStructureID": 5517, + "Label": "109458-5517 via Conventional from 109460 -> 49453", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109460, + "TargetID": 49453, + "Directional": true + }] + }, { + "ID": 20247, + "SourceStructureID": 109483, + "TargetStructureID": 20136, + "Label": "109483-20136 via Conventional from 109484 -> 109485", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109484, + "TargetID": 109485, + "Directional": true + }] + }, { + "ID": 20248, + "SourceStructureID": 109488, + "TargetStructureID": 20136, + "Label": "109488-20136 via Conventional from 109495 -> 46022", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109495, + "TargetID": 46022, + "Directional": true + }] + }, { + "ID": 20249, + "SourceStructureID": 109497, + "TargetStructureID": 20136, + "Label": "109497-20136 via Conventional from 109498 -> 109499", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109498, + "TargetID": 109499, + "Directional": true + }] + }, { + "ID": 20250, + "SourceStructureID": 109534, + "TargetStructureID": 20136, + "Label": "109534-20136 via Conventional from 109537 -> 46019", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109537, + "TargetID": 46019, + "Directional": true + }] + }, { + "ID": 20251, + "SourceStructureID": 109540, + "TargetStructureID": 20136, + "Label": "109540-20136 via Conventional from 109542 -> 109543", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109542, + "TargetID": 109543, + "Directional": true + }] + }, { + "ID": 20252, + "SourceStructureID": 109559, + "TargetStructureID": 20136, + "Label": "109559-20136 via Conventional from 109560 -> 46018", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109560, + "TargetID": 46018, + "Directional": true + }] + }, { + "ID": 20253, + "SourceStructureID": 109565, + "TargetStructureID": 20136, + "Label": "109565-20136 via Conventional from 109571 -> 109572", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109571, + "TargetID": 109572, + "Directional": true + }] + }, { + "ID": 20254, + "SourceStructureID": 109565, + "TargetStructureID": 109559, + "Label": "109565-109559 via Ribbon Synapse from 109652 -> 109659", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109652, + "TargetID": 109659, + "Directional": true + }] + }, { + "ID": 20255, + "SourceStructureID": 109565, + "TargetStructureID": 109565, + "Label": "109565-109565 via Ribbon Synapse from 109652 -> 109653", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109652, + "TargetID": 109653, + "Directional": true + }] + }, { + "ID": 20256, + "SourceStructureID": 109565, + "TargetStructureID": 109597, + "Label": "109565-109597 via Ribbon Synapse from 109652 -> 109658", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 109652, + "TargetID": 109658, + "Directional": true + }] + }, { + "ID": 20257, + "SourceStructureID": 109574, + "TargetStructureID": 20136, + "Label": "109574-20136 via Conventional from 109613 -> 109614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109613, + "TargetID": 109614, + "Directional": true + }] + }, { + "ID": 20258, + "SourceStructureID": 109597, + "TargetStructureID": 20136, + "Label": "109597-20136 via Conventional from 109598 -> 109605", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109598, + "TargetID": 109605, + "Directional": true + }] + }, { + "ID": 20259, + "SourceStructureID": 109608, + "TargetStructureID": 20136, + "Label": "109608-20136 via Conventional from 109670 -> 109671", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109670, + "TargetID": 109671, + "Directional": true + }] + }, { + "ID": 20260, + "SourceStructureID": 109608, + "TargetStructureID": 109575, + "Label": "109608-109575 via Conventional from 109610 -> 109612", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109610, + "TargetID": 109612, + "Directional": true + }] + }, { + "ID": 20261, + "SourceStructureID": 109660, + "TargetStructureID": 5517, + "Label": "109660-5517 via Conventional from 109663 -> 22922", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109663, + "TargetID": 22922, + "Directional": true + }] + }, { + "ID": 20262, + "SourceStructureID": 109678, + "TargetStructureID": 5503, + "Label": "109678-5503 via Conventional from 109680 -> 109677", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109680, + "TargetID": 109677, + "Directional": true + }] + }, { + "ID": 20263, + "SourceStructureID": 109681, + "TargetStructureID": 5503, + "Label": "109681-5503 via Conventional from 109685 -> 60692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109685, + "TargetID": 60692, + "Directional": true + }] + }, { + "ID": 20264, + "SourceStructureID": 109696, + "TargetStructureID": 5916, + "Label": "109696-5916 via Conventional from 109699 -> 109698", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109699, + "TargetID": 109698, + "Directional": true + }] + }, { + "ID": 20265, + "SourceStructureID": 109710, + "TargetStructureID": 5503, + "Label": "109710-5503 via Conventional from 109711 -> 109709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109711, + "TargetID": 109709, + "Directional": true + }] + }, { + "ID": 20266, + "SourceStructureID": 109730, + "TargetStructureID": 5503, + "Label": "109730-5503 via Conventional from 109739 -> 60693", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109739, + "TargetID": 60693, + "Directional": true + }] + }, { + "ID": 20267, + "SourceStructureID": 109742, + "TargetStructureID": 5503, + "Label": "109742-5503 via Conventional from 109743 -> 60694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109743, + "TargetID": 60694, + "Directional": true + }] + }, { + "ID": 20268, + "SourceStructureID": 109750, + "TargetStructureID": 5503, + "Label": "109750-5503 via Conventional from 109757 -> 109748, 110027 -> 110026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109757, + "TargetID": 109748, + "Directional": true + }, { + "SourceID": 110027, + "TargetID": 110026, + "Directional": true + }] + }, { + "ID": 20269, + "SourceStructureID": 109762, + "TargetStructureID": 109305, + "Label": "109762-109305 via Conventional from 109763 -> 109764", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109763, + "TargetID": 109764, + "Directional": true + }] + }, { + "ID": 20270, + "SourceStructureID": 109778, + "TargetStructureID": 20136, + "Label": "109778-20136 via Conventional from 109780 -> 109360", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109780, + "TargetID": 109360, + "Directional": true + }] + }, { + "ID": 20271, + "SourceStructureID": 109781, + "TargetStructureID": 20136, + "Label": "109781-20136 via Conventional from 109782 -> 109783", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109782, + "TargetID": 109783, + "Directional": true + }] + }, { + "ID": 20272, + "SourceStructureID": 109788, + "TargetStructureID": 20136, + "Label": "109788-20136 via Conventional from 109790 -> 109791", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109790, + "TargetID": 109791, + "Directional": true + }] + }, { + "ID": 20273, + "SourceStructureID": 109793, + "TargetStructureID": 108831, + "Label": "109793-108831 via Conventional from 109794 -> 109795", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109794, + "TargetID": 109795, + "Directional": true + }] + }, { + "ID": 20274, + "SourceStructureID": 109802, + "TargetStructureID": 20136, + "Label": "109802-20136 via Conventional from 109803 -> 109374, 109864 -> 29152", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109803, + "TargetID": 109374, + "Directional": true + }, { + "SourceID": 109864, + "TargetID": 29152, + "Directional": true + }] + }, { + "ID": 20275, + "SourceStructureID": 109804, + "TargetStructureID": 5503, + "Label": "109804-5503 via Conventional from 109806 -> 60666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109806, + "TargetID": 60666, + "Directional": true + }] + }, { + "ID": 20276, + "SourceStructureID": 109809, + "TargetStructureID": 5503, + "Label": "109809-5503 via Conventional from 109811 -> 60671, 109849 -> 109840", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109811, + "TargetID": 60671, + "Directional": true + }, { + "SourceID": 109849, + "TargetID": 109840, + "Directional": true + }] + }, { + "ID": 20277, + "SourceStructureID": 109814, + "TargetStructureID": 5503, + "Label": "109814-5503 via Conventional from 109817 -> 60670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109817, + "TargetID": 60670, + "Directional": true + }] + }, { + "ID": 20278, + "SourceStructureID": 109825, + "TargetStructureID": 5503, + "Label": "109825-5503 via Conventional from 109828 -> 60668", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109828, + "TargetID": 60668, + "Directional": true + }] + }, { + "ID": 20279, + "SourceStructureID": 109831, + "TargetStructureID": 20136, + "Label": "109831-20136 via Conventional from 109832 -> 109833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109832, + "TargetID": 109833, + "Directional": true + }] + }, { + "ID": 20280, + "SourceStructureID": 109834, + "TargetStructureID": 5503, + "Label": "109834-5503 via Conventional from 109836 -> 60669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109836, + "TargetID": 60669, + "Directional": true + }] + }, { + "ID": 20281, + "SourceStructureID": 109881, + "TargetStructureID": 20136, + "Label": "109881-20136 via Conventional from 109882 -> 109883", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109882, + "TargetID": 109883, + "Directional": true + }] + }, { + "ID": 20282, + "SourceStructureID": 109887, + "TargetStructureID": 20136, + "Label": "109887-20136 via Conventional from 109892 -> 46014", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109892, + "TargetID": 46014, + "Directional": true + }] + }, { + "ID": 20283, + "SourceStructureID": 109893, + "TargetStructureID": 5503, + "Label": "109893-5503 via Conventional from 109918 -> 109916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109918, + "TargetID": 109916, + "Directional": true + }] + }, { + "ID": 20284, + "SourceStructureID": 109900, + "TargetStructureID": 20136, + "Label": "109900-20136 via Conventional from 109901 -> 46015", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109901, + "TargetID": 46015, + "Directional": true + }] + }, { + "ID": 20285, + "SourceStructureID": 109913, + "TargetStructureID": 5503, + "Label": "109913-5503 via Conventional from 109915 -> 60686", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109915, + "TargetID": 60686, + "Directional": true + }] + }, { + "ID": 20286, + "SourceStructureID": 109922, + "TargetStructureID": 5503, + "Label": "109922-5503 via Conventional from 109923 -> 60676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109923, + "TargetID": 60676, + "Directional": true + }] + }, { + "ID": 20287, + "SourceStructureID": 109924, + "TargetStructureID": 5503, + "Label": "109924-5503 via Conventional from 109925 -> 60681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109925, + "TargetID": 60681, + "Directional": true + }] + }, { + "ID": 20288, + "SourceStructureID": 109926, + "TargetStructureID": 5503, + "Label": "109926-5503 via Conventional from 109928 -> 60677", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109928, + "TargetID": 60677, + "Directional": true + }] + }, { + "ID": 20289, + "SourceStructureID": 109926, + "TargetStructureID": 5916, + "Label": "109926-5916 via Conventional from 109927 -> 109633", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109927, + "TargetID": 109633, + "Directional": true + }] + }, { + "ID": 20290, + "SourceStructureID": 109932, + "TargetStructureID": 5503, + "Label": "109932-5503 via Conventional from 109933 -> 60685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109933, + "TargetID": 60685, + "Directional": true + }] + }, { + "ID": 20291, + "SourceStructureID": 109932, + "TargetStructureID": 5916, + "Label": "109932-5916 via Conventional from 109934 -> 109632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109934, + "TargetID": 109632, + "Directional": true + }] + }, { + "ID": 20292, + "SourceStructureID": 109936, + "TargetStructureID": 5503, + "Label": "109936-5503 via Conventional from 109937 -> 109935", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109937, + "TargetID": 109935, + "Directional": true + }] + }, { + "ID": 20293, + "SourceStructureID": 109941, + "TargetStructureID": 5503, + "Label": "109941-5503 via Conventional from 109942 -> 60680", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109942, + "TargetID": 60680, + "Directional": true + }] + }, { + "ID": 20294, + "SourceStructureID": 109943, + "TargetStructureID": 5503, + "Label": "109943-5503 via Conventional from 109944 -> 60679", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109944, + "TargetID": 60679, + "Directional": true + }] + }, { + "ID": 20295, + "SourceStructureID": 109949, + "TargetStructureID": 5503, + "Label": "109949-5503 via Conventional from 109950 -> 109948", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109950, + "TargetID": 109948, + "Directional": true + }] + }, { + "ID": 20296, + "SourceStructureID": 109949, + "TargetStructureID": 109952, + "Label": "109949-109952 via Conventional from 109955 -> 109953", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109955, + "TargetID": 109953, + "Directional": true + }] + }, { + "ID": 20297, + "SourceStructureID": 109956, + "TargetStructureID": 5503, + "Label": "109956-5503 via Conventional from 109957 -> 36646", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109957, + "TargetID": 36646, + "Directional": true + }] + }, { + "ID": 20298, + "SourceStructureID": 109980, + "TargetStructureID": 5503, + "Label": "109980-5503 via Conventional from 109981 -> 109979", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109981, + "TargetID": 109979, + "Directional": true + }] + }, { + "ID": 20299, + "SourceStructureID": 109986, + "TargetStructureID": 109980, + "Label": "109986-109980 via Conventional from 109988 -> 109989", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 109988, + "TargetID": 109989, + "Directional": true + }] + }, { + "ID": 20300, + "SourceStructureID": 109991, + "TargetStructureID": 5503, + "Label": "109991-5503 via Conventional from 114842 -> 109992", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114842, + "TargetID": 109992, + "Directional": true + }] + }, { + "ID": 20301, + "SourceStructureID": 110010, + "TargetStructureID": 5503, + "Label": "110010-5503 via Conventional from 110011 -> 110009", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110011, + "TargetID": 110009, + "Directional": true + }] + }, { + "ID": 20302, + "SourceStructureID": 110022, + "TargetStructureID": 5503, + "Label": "110022-5503 via Conventional from 110023 -> 61133", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110023, + "TargetID": 61133, + "Directional": true + }] + }, { + "ID": 20303, + "SourceStructureID": 110024, + "TargetStructureID": 5503, + "Label": "110024-5503 via Conventional from 110025 -> 61132", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110025, + "TargetID": 61132, + "Directional": true + }] + }, { + "ID": 20304, + "SourceStructureID": 110035, + "TargetStructureID": 5503, + "Label": "110035-5503 via Conventional from 110036 -> 110034", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110036, + "TargetID": 110034, + "Directional": true + }] + }, { + "ID": 20305, + "SourceStructureID": 110037, + "TargetStructureID": 5503, + "Label": "110037-5503 via Conventional from 110038 -> 110033", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110038, + "TargetID": 110033, + "Directional": true + }] + }, { + "ID": 20306, + "SourceStructureID": 110040, + "TargetStructureID": 5503, + "Label": "110040-5503 via Conventional from 110041 -> 110039", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110041, + "TargetID": 110039, + "Directional": true + }] + }, { + "ID": 20307, + "SourceStructureID": 110054, + "TargetStructureID": 5503, + "Label": "110054-5503 via Conventional from 110055 -> 110053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110055, + "TargetID": 110053, + "Directional": true + }] + }, { + "ID": 20308, + "SourceStructureID": 110064, + "TargetStructureID": 5503, + "Label": "110064-5503 via Conventional from 110291 -> 60695", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110291, + "TargetID": 60695, + "Directional": true + }] + }, { + "ID": 20309, + "SourceStructureID": 110066, + "TargetStructureID": 5503, + "Label": "110066-5503 via Conventional from 110067 -> 36582", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110067, + "TargetID": 36582, + "Directional": true + }] + }, { + "ID": 20310, + "SourceStructureID": 110069, + "TargetStructureID": 5503, + "Label": "110069-5503 via Conventional from 110070 -> 110068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110070, + "TargetID": 110068, + "Directional": true + }] + }, { + "ID": 20311, + "SourceStructureID": 110072, + "TargetStructureID": 5503, + "Label": "110072-5503 via Conventional from 110073 -> 36589", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110073, + "TargetID": 36589, + "Directional": true + }] + }, { + "ID": 20312, + "SourceStructureID": 110081, + "TargetStructureID": 5501, + "Label": "110081-5501 via Conventional from 110083 -> 36586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110083, + "TargetID": 36586, + "Directional": true + }] + }, { + "ID": 20313, + "SourceStructureID": 110081, + "TargetStructureID": 5503, + "Label": "110081-5503 via Conventional from 110082 -> 110080", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110082, + "TargetID": 110080, + "Directional": true + }] + }, { + "ID": 20314, + "SourceStructureID": 110095, + "TargetStructureID": 5503, + "Label": "110095-5503 via Conventional from 110096 -> 110094", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110096, + "TargetID": 110094, + "Directional": true + }] + }, { + "ID": 20315, + "SourceStructureID": 110099, + "TargetStructureID": 5503, + "Label": "110099-5503 via Conventional from 110101 -> 110102", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110101, + "TargetID": 110102, + "Directional": true + }] + }, { + "ID": 20316, + "SourceStructureID": 110104, + "TargetStructureID": 5503, + "Label": "110104-5503 via Conventional from 110105 -> 110103", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110105, + "TargetID": 110103, + "Directional": true + }] + }, { + "ID": 20317, + "SourceStructureID": 110107, + "TargetStructureID": 5503, + "Label": "110107-5503 via Conventional from 110108 -> 110106", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110108, + "TargetID": 110106, + "Directional": true + }] + }, { + "ID": 20318, + "SourceStructureID": 110112, + "TargetStructureID": 5503, + "Label": "110112-5503 via Conventional from 110118 -> 110119", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110118, + "TargetID": 110119, + "Directional": true + }] + }, { + "ID": 20319, + "SourceStructureID": 110115, + "TargetStructureID": 5503, + "Label": "110115-5503 via Conventional from 110116 -> 110114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110116, + "TargetID": 110114, + "Directional": true + }] + }, { + "ID": 20320, + "SourceStructureID": 110121, + "TargetStructureID": 5503, + "Label": "110121-5503 via Conventional from 110122 -> 110120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110122, + "TargetID": 110120, + "Directional": true + }] + }, { + "ID": 20321, + "SourceStructureID": 110124, + "TargetStructureID": 5503, + "Label": "110124-5503 via Conventional from 110125 -> 110123", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110125, + "TargetID": 110123, + "Directional": true + }] + }, { + "ID": 20322, + "SourceStructureID": 110127, + "TargetStructureID": 5503, + "Label": "110127-5503 via Conventional from 110128 -> 110126", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110128, + "TargetID": 110126, + "Directional": true + }] + }, { + "ID": 20323, + "SourceStructureID": 110134, + "TargetStructureID": 5503, + "Label": "110134-5503 via Conventional from 110135 -> 110133", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110135, + "TargetID": 110133, + "Directional": true + }] + }, { + "ID": 20324, + "SourceStructureID": 110137, + "TargetStructureID": 5503, + "Label": "110137-5503 via Conventional from 110138 -> 110136", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110138, + "TargetID": 110136, + "Directional": true + }] + }, { + "ID": 20325, + "SourceStructureID": 110140, + "TargetStructureID": 5503, + "Label": "110140-5503 via Conventional from 110141 -> 110139", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110141, + "TargetID": 110139, + "Directional": true + }] + }, { + "ID": 20326, + "SourceStructureID": 110151, + "TargetStructureID": 5503, + "Label": "110151-5503 via Conventional from 110152 -> 110150", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110152, + "TargetID": 110150, + "Directional": true + }] + }, { + "ID": 20327, + "SourceStructureID": 110155, + "TargetStructureID": 5503, + "Label": "110155-5503 via Conventional from 110156 -> 110154", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110156, + "TargetID": 110154, + "Directional": true + }] + }, { + "ID": 20328, + "SourceStructureID": 110169, + "TargetStructureID": 5503, + "Label": "110169-5503 via Conventional from 110171 -> 110168", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110171, + "TargetID": 110168, + "Directional": true + }] + }, { + "ID": 20329, + "SourceStructureID": 110173, + "TargetStructureID": 20136, + "Label": "110173-20136 via Conventional from 110180 -> 110184", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110180, + "TargetID": 110184, + "Directional": true + }] + }, { + "ID": 20330, + "SourceStructureID": 110175, + "TargetStructureID": 5503, + "Label": "110175-5503 via Conventional from 110178 -> 110174", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110178, + "TargetID": 110174, + "Directional": true + }] + }, { + "ID": 20331, + "SourceStructureID": 110181, + "TargetStructureID": 5503, + "Label": "110181-5503 via Conventional from 110183 -> 110172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110183, + "TargetID": 110172, + "Directional": true + }] + }, { + "ID": 20332, + "SourceStructureID": 110233, + "TargetStructureID": 20136, + "Label": "110233-20136 via Conventional from 110234 -> 110235", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110234, + "TargetID": 110235, + "Directional": true + }] + }, { + "ID": 20333, + "SourceStructureID": 110259, + "TargetStructureID": 5503, + "Label": "110259-5503 via Conventional from 110261 -> 110258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110261, + "TargetID": 110258, + "Directional": true + }] + }, { + "ID": 20334, + "SourceStructureID": 110271, + "TargetStructureID": 20136, + "Label": "110271-20136 via Conventional from 110283 -> 110284", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110283, + "TargetID": 110284, + "Directional": true + }] + }, { + "ID": 20335, + "SourceStructureID": 110277, + "TargetStructureID": 5503, + "Label": "110277-5503 via Conventional from 110278 -> 110276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110278, + "TargetID": 110276, + "Directional": true + }] + }, { + "ID": 20336, + "SourceStructureID": 110307, + "TargetStructureID": 5503, + "Label": "110307-5503 via Conventional from 110308 -> 20085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110308, + "TargetID": 20085, + "Directional": true + }] + }, { + "ID": 20337, + "SourceStructureID": 110312, + "TargetStructureID": 909, + "Label": "110312-909 via Conventional from 130937 -> 130936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130937, + "TargetID": 130936, + "Directional": true + }] + }, { + "ID": 20338, + "SourceStructureID": 110312, + "TargetStructureID": 20136, + "Label": "110312-20136 via Conventional from 110324 -> 110325", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110324, + "TargetID": 110325, + "Directional": true + }] + }, { + "ID": 20339, + "SourceStructureID": 110313, + "TargetStructureID": 5503, + "Label": "110313-5503 via Conventional from 110314 -> 20089", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110314, + "TargetID": 20089, + "Directional": true + }] + }, { + "ID": 20340, + "SourceStructureID": 110316, + "TargetStructureID": 20136, + "Label": "110316-20136 via Conventional from 110322 -> 110323", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110322, + "TargetID": 110323, + "Directional": true + }] + }, { + "ID": 20341, + "SourceStructureID": 110331, + "TargetStructureID": 20136, + "Label": "110331-20136 via Conventional from 110332 -> 110334", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110332, + "TargetID": 110334, + "Directional": true + }] + }, { + "ID": 20342, + "SourceStructureID": 110333, + "TargetStructureID": 5503, + "Label": "110333-5503 via Conventional from 110337 -> 60702", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110337, + "TargetID": 60702, + "Directional": true + }] + }, { + "ID": 20343, + "SourceStructureID": 110356, + "TargetStructureID": 20136, + "Label": "110356-20136 via Conventional from 110361 -> 110362", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110361, + "TargetID": 110362, + "Directional": true + }] + }, { + "ID": 20344, + "SourceStructureID": 110374, + "TargetStructureID": 20136, + "Label": "110374-20136 via Conventional from 110375 -> 110382", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110375, + "TargetID": 110382, + "Directional": true + }] + }, { + "ID": 20345, + "SourceStructureID": 110378, + "TargetStructureID": 20136, + "Label": "110378-20136 via Conventional from 110383 -> 110384", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110383, + "TargetID": 110384, + "Directional": true + }] + }, { + "ID": 20346, + "SourceStructureID": 110379, + "TargetStructureID": 5503, + "Label": "110379-5503 via Conventional from 110380 -> 60701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110380, + "TargetID": 60701, + "Directional": true + }] + }, { + "ID": 20347, + "SourceStructureID": 110381, + "TargetStructureID": 5503, + "Label": "110381-5503 via Conventional from 110420 -> 60700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110420, + "TargetID": 60700, + "Directional": true + }] + }, { + "ID": 20348, + "SourceStructureID": 110394, + "TargetStructureID": 20136, + "Label": "110394-20136 via Conventional from 110395 -> 110396", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110395, + "TargetID": 110396, + "Directional": true + }] + }, { + "ID": 20349, + "SourceStructureID": 110422, + "TargetStructureID": 5503, + "Label": "110422-5503 via Conventional from 110423 -> 110421", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110423, + "TargetID": 110421, + "Directional": true + }] + }, { + "ID": 20350, + "SourceStructureID": 110429, + "TargetStructureID": 20136, + "Label": "110429-20136 via Conventional from 110431 -> 110432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110431, + "TargetID": 110432, + "Directional": true + }] + }, { + "ID": 20351, + "SourceStructureID": 110437, + "TargetStructureID": 5503, + "Label": "110437-5503 via Conventional from 110439 -> 110440", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110439, + "TargetID": 110440, + "Directional": true + }] + }, { + "ID": 20352, + "SourceStructureID": 110441, + "TargetStructureID": 5503, + "Label": "110441-5503 via Conventional from 110442 -> 52807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110442, + "TargetID": 52807, + "Directional": true + }] + }, { + "ID": 20353, + "SourceStructureID": 110451, + "TargetStructureID": 5503, + "Label": "110451-5503 via Conventional from 110452 -> 110450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110452, + "TargetID": 110450, + "Directional": true + }] + }, { + "ID": 20354, + "SourceStructureID": 110466, + "TargetStructureID": 5501, + "Label": "110466-5501 via Conventional from 110467 -> 36561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110467, + "TargetID": 36561, + "Directional": true + }] + }, { + "ID": 20355, + "SourceStructureID": 110472, + "TargetStructureID": 5503, + "Label": "110472-5503 via Conventional from 110473 -> 110471", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110473, + "TargetID": 110471, + "Directional": true + }] + }, { + "ID": 20356, + "SourceStructureID": 110475, + "TargetStructureID": 5503, + "Label": "110475-5503 via Conventional from 110476 -> 110474", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110476, + "TargetID": 110474, + "Directional": true + }] + }, { + "ID": 20357, + "SourceStructureID": 110484, + "TargetStructureID": 5503, + "Label": "110484-5503 via Conventional from 110485 -> 110483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110485, + "TargetID": 110483, + "Directional": true + }] + }, { + "ID": 20358, + "SourceStructureID": 110493, + "TargetStructureID": 6120, + "Label": "110493-6120 via Conventional from 110494 -> 37230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110494, + "TargetID": 37230, + "Directional": true + }] + }, { + "ID": 20359, + "SourceStructureID": 110496, + "TargetStructureID": 6120, + "Label": "110496-6120 via Conventional from 110498 -> 37232", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110498, + "TargetID": 37232, + "Directional": true + }] + }, { + "ID": 20360, + "SourceStructureID": 110516, + "TargetStructureID": 6120, + "Label": "110516-6120 via Conventional from 111665 -> 111664", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111665, + "TargetID": 111664, + "Directional": true + }] + }, { + "ID": 20361, + "SourceStructureID": 110521, + "TargetStructureID": 6120, + "Label": "110521-6120 via Conventional from 110522 -> 37241", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110522, + "TargetID": 37241, + "Directional": true + }] + }, { + "ID": 20362, + "SourceStructureID": 110525, + "TargetStructureID": 6120, + "Label": "110525-6120 via Conventional from 110527 -> 110524", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110527, + "TargetID": 110524, + "Directional": true + }] + }, { + "ID": 20363, + "SourceStructureID": 110544, + "TargetStructureID": 6120, + "Label": "110544-6120 via Conventional from 110545 -> 110530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110545, + "TargetID": 110530, + "Directional": true + }] + }, { + "ID": 20364, + "SourceStructureID": 110554, + "TargetStructureID": 6120, + "Label": "110554-6120 via Conventional from 110555 -> 110550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110555, + "TargetID": 110550, + "Directional": true + }] + }, { + "ID": 20365, + "SourceStructureID": 110559, + "TargetStructureID": 6120, + "Label": "110559-6120 via Conventional from 110560 -> 110552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110560, + "TargetID": 110552, + "Directional": true + }] + }, { + "ID": 20366, + "SourceStructureID": 110562, + "TargetStructureID": 6120, + "Label": "110562-6120 via Conventional from 110563 -> 110561", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110563, + "TargetID": 110561, + "Directional": true + }] + }, { + "ID": 20367, + "SourceStructureID": 110580, + "TargetStructureID": 6120, + "Label": "110580-6120 via Conventional from 110582 -> 37249", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110582, + "TargetID": 37249, + "Directional": true + }] + }, { + "ID": 20368, + "SourceStructureID": 110586, + "TargetStructureID": 110593, + "Label": "110586-110593 via Conventional from 110588 -> 110594", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110588, + "TargetID": 110594, + "Directional": true + }] + }, { + "ID": 20369, + "SourceStructureID": 110600, + "TargetStructureID": 6120, + "Label": "110600-6120 via Conventional from 110601 -> 37252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110601, + "TargetID": 37252, + "Directional": true + }] + }, { + "ID": 20370, + "SourceStructureID": 110610, + "TargetStructureID": 6120, + "Label": "110610-6120 via Conventional from 110611 -> 110609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110611, + "TargetID": 110609, + "Directional": true + }] + }, { + "ID": 20371, + "SourceStructureID": 110617, + "TargetStructureID": 6120, + "Label": "110617-6120 via Conventional from 110618 -> 110616", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110618, + "TargetID": 110616, + "Directional": true + }] + }, { + "ID": 20372, + "SourceStructureID": 110622, + "TargetStructureID": 6120, + "Label": "110622-6120 via Conventional from 110625 -> 110620", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110625, + "TargetID": 110620, + "Directional": true + }] + }, { + "ID": 20373, + "SourceStructureID": 110623, + "TargetStructureID": 6120, + "Label": "110623-6120 via Conventional from 110624 -> 110621", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110624, + "TargetID": 110621, + "Directional": true + }] + }, { + "ID": 20374, + "SourceStructureID": 110630, + "TargetStructureID": 6120, + "Label": "110630-6120 via Conventional from 110631 -> 110629", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110631, + "TargetID": 110629, + "Directional": true + }] + }, { + "ID": 20375, + "SourceStructureID": 110638, + "TargetStructureID": 6120, + "Label": "110638-6120 via Conventional from 110640 -> 110637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110640, + "TargetID": 110637, + "Directional": true + }] + }, { + "ID": 20376, + "SourceStructureID": 110646, + "TargetStructureID": 6120, + "Label": "110646-6120 via Conventional from 110647 -> 110636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110647, + "TargetID": 110636, + "Directional": true + }] + }, { + "ID": 20377, + "SourceStructureID": 110648, + "TargetStructureID": 5531, + "Label": "110648-5531 via Conventional from 136318 -> 136317", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136318, + "TargetID": 136317, + "Directional": true + }] + }, { + "ID": 20378, + "SourceStructureID": 110652, + "TargetStructureID": 5531, + "Label": "110652-5531 via Conventional from 110653 -> 110654", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110653, + "TargetID": 110654, + "Directional": true + }] + }, { + "ID": 20379, + "SourceStructureID": 110668, + "TargetStructureID": 5531, + "Label": "110668-5531 via Conventional from 110669 -> 110670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110669, + "TargetID": 110670, + "Directional": true + }] + }, { + "ID": 20380, + "SourceStructureID": 110686, + "TargetStructureID": 5531, + "Label": "110686-5531 via Conventional from 110687 -> 110688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110687, + "TargetID": 110688, + "Directional": true + }] + }, { + "ID": 20381, + "SourceStructureID": 110703, + "TargetStructureID": 5531, + "Label": "110703-5531 via Conventional from 110704 -> 110705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110704, + "TargetID": 110705, + "Directional": true + }] + }, { + "ID": 20382, + "SourceStructureID": 110709, + "TargetStructureID": 5531, + "Label": "110709-5531 via Conventional from 110710 -> 110711", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110710, + "TargetID": 110711, + "Directional": true + }] + }, { + "ID": 20383, + "SourceStructureID": 110720, + "TargetStructureID": 6120, + "Label": "110720-6120 via Conventional from 110721 -> 40733", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110721, + "TargetID": 40733, + "Directional": true + }] + }, { + "ID": 20384, + "SourceStructureID": 110722, + "TargetStructureID": 6120, + "Label": "110722-6120 via Conventional from 110723 -> 110724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110723, + "TargetID": 110724, + "Directional": true + }] + }, { + "ID": 20385, + "SourceStructureID": 110726, + "TargetStructureID": 6120, + "Label": "110726-6120 via Conventional from 110727 -> 110725", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110727, + "TargetID": 110725, + "Directional": true + }] + }, { + "ID": 20386, + "SourceStructureID": 110728, + "TargetStructureID": 6120, + "Label": "110728-6120 via Conventional from 110729 -> 110730", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110729, + "TargetID": 110730, + "Directional": true + }] + }, { + "ID": 20387, + "SourceStructureID": 110736, + "TargetStructureID": 6120, + "Label": "110736-6120 via Conventional from 110737 -> 110735", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110737, + "TargetID": 110735, + "Directional": true + }] + }, { + "ID": 20388, + "SourceStructureID": 110743, + "TargetStructureID": 606, + "Label": "110743-606 via Conventional from 110745 -> 51503", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110745, + "TargetID": 51503, + "Directional": true + }] + }, { + "ID": 20389, + "SourceStructureID": 110743, + "TargetStructureID": 6120, + "Label": "110743-6120 via Conventional from 110744 -> 110740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110744, + "TargetID": 110740, + "Directional": true + }] + }, { + "ID": 20390, + "SourceStructureID": 110755, + "TargetStructureID": 6120, + "Label": "110755-6120 via Conventional from 110756 -> 61157", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110756, + "TargetID": 61157, + "Directional": true + }] + }, { + "ID": 20391, + "SourceStructureID": 110769, + "TargetStructureID": 6120, + "Label": "110769-6120 via Conventional from 110770 -> 110768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110770, + "TargetID": 110768, + "Directional": true + }] + }, { + "ID": 20392, + "SourceStructureID": 110783, + "TargetStructureID": 6120, + "Label": "110783-6120 via Conventional from 110784 -> 110782", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110784, + "TargetID": 110782, + "Directional": true + }] + }, { + "ID": 20393, + "SourceStructureID": 110791, + "TargetStructureID": 6120, + "Label": "110791-6120 via Conventional from 110792 -> 61162", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110792, + "TargetID": 61162, + "Directional": true + }] + }, { + "ID": 20394, + "SourceStructureID": 110793, + "TargetStructureID": 69162, + "Label": "110793-69162 via Conventional from 110794 -> 69277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110794, + "TargetID": 69277, + "Directional": true + }] + }, { + "ID": 20395, + "SourceStructureID": 110796, + "TargetStructureID": 6120, + "Label": "110796-6120 via Conventional from 110797 -> 61159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110797, + "TargetID": 61159, + "Directional": true + }] + }, { + "ID": 20396, + "SourceStructureID": 110800, + "TargetStructureID": 69162, + "Label": "110800-69162 via Conventional from 110801 -> 69275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110801, + "TargetID": 69275, + "Directional": true + }] + }, { + "ID": 20397, + "SourceStructureID": 110805, + "TargetStructureID": 6120, + "Label": "110805-6120 via Conventional from 110806 -> 110804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110806, + "TargetID": 110804, + "Directional": true + }] + }, { + "ID": 20398, + "SourceStructureID": 110807, + "TargetStructureID": 6120, + "Label": "110807-6120 via Conventional from 110808 -> 61155", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110808, + "TargetID": 61155, + "Directional": true + }] + }, { + "ID": 20399, + "SourceStructureID": 110809, + "TargetStructureID": 6120, + "Label": "110809-6120 via Conventional from 110844 -> 61152", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110844, + "TargetID": 61152, + "Directional": true + }] + }, { + "ID": 20400, + "SourceStructureID": 110819, + "TargetStructureID": 6120, + "Label": "110819-6120 via Conventional from 110821 -> 110818", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110821, + "TargetID": 110818, + "Directional": true + }] + }, { + "ID": 20401, + "SourceStructureID": 110824, + "TargetStructureID": 6120, + "Label": "110824-6120 via Conventional from 110825 -> 110826", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110825, + "TargetID": 110826, + "Directional": true + }] + }, { + "ID": 20402, + "SourceStructureID": 110828, + "TargetStructureID": 5107, + "Label": "110828-5107 via Conventional from 110834 -> 65008", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110834, + "TargetID": 65008, + "Directional": true + }] + }, { + "ID": 20403, + "SourceStructureID": 110830, + "TargetStructureID": 11092, + "Label": "110830-11092 via Conventional from 123695 -> 128600, 123696 -> 130357", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123695, + "TargetID": 128600, + "Directional": true + }, { + "SourceID": 123696, + "TargetID": 130357, + "Directional": true + }] + }, { + "ID": 20404, + "SourceStructureID": 110830, + "TargetStructureID": 13525, + "Label": "110830-13525 via Conventional from 110831 -> 84664", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110831, + "TargetID": 84664, + "Directional": true + }] + }, { + "ID": 20405, + "SourceStructureID": 110851, + "TargetStructureID": 6120, + "Label": "110851-6120 via Conventional from 110852 -> 110850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110852, + "TargetID": 110850, + "Directional": true + }] + }, { + "ID": 20406, + "SourceStructureID": 110857, + "TargetStructureID": 5729, + "Label": "110857-5729 via Conventional from 110861 -> 110862", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110861, + "TargetID": 110862, + "Directional": true + }] + }, { + "ID": 20407, + "SourceStructureID": 110867, + "TargetStructureID": 5729, + "Label": "110867-5729 via Conventional from 110871 -> 37844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110871, + "TargetID": 37844, + "Directional": true + }] + }, { + "ID": 20408, + "SourceStructureID": 110879, + "TargetStructureID": 5729, + "Label": "110879-5729 via Conventional from 110883 -> 110881", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110883, + "TargetID": 110881, + "Directional": true + }] + }, { + "ID": 20409, + "SourceStructureID": 110880, + "TargetStructureID": 5729, + "Label": "110880-5729 via Conventional from 110884 -> 37839", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110884, + "TargetID": 37839, + "Directional": true + }] + }, { + "ID": 20410, + "SourceStructureID": 110892, + "TargetStructureID": 110880, + "Label": "110892-110880 via Conventional from 110895 -> 110896", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110895, + "TargetID": 110896, + "Directional": true + }] + }, { + "ID": 20411, + "SourceStructureID": 110899, + "TargetStructureID": 5729, + "Label": "110899-5729 via Conventional from 110902 -> 37845", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110902, + "TargetID": 37845, + "Directional": true + }] + }, { + "ID": 20412, + "SourceStructureID": 110903, + "TargetStructureID": 5729, + "Label": "110903-5729 via Conventional from 110904 -> 37846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110904, + "TargetID": 37846, + "Directional": true + }] + }, { + "ID": 20413, + "SourceStructureID": 110905, + "TargetStructureID": 5729, + "Label": "110905-5729 via Conventional from 110906 -> 110907", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110906, + "TargetID": 110907, + "Directional": true + }] + }, { + "ID": 20414, + "SourceStructureID": 110908, + "TargetStructureID": 5729, + "Label": "110908-5729 via Conventional from 110909 -> 110910, 110915 -> 110916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110909, + "TargetID": 110910, + "Directional": true + }, { + "SourceID": 110915, + "TargetID": 110916, + "Directional": true + }] + }, { + "ID": 20415, + "SourceStructureID": 110934, + "TargetStructureID": 606, + "Label": "110934-606 via Conventional from 130671 -> 47250", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130671, + "TargetID": 47250, + "Directional": true + }] + }, { + "ID": 20416, + "SourceStructureID": 110934, + "TargetStructureID": 5729, + "Label": "110934-5729 via Conventional from 110935 -> 110936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110935, + "TargetID": 110936, + "Directional": true + }] + }, { + "ID": 20417, + "SourceStructureID": 110937, + "TargetStructureID": 5729, + "Label": "110937-5729 via Conventional from 110938 -> 110939", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110938, + "TargetID": 110939, + "Directional": true + }] + }, { + "ID": 20418, + "SourceStructureID": 110940, + "TargetStructureID": 5729, + "Label": "110940-5729 via Conventional from 110941 -> 37855", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110941, + "TargetID": 37855, + "Directional": true + }] + }, { + "ID": 20419, + "SourceStructureID": 110944, + "TargetStructureID": 5729, + "Label": "110944-5729 via Conventional from 110945 -> 37849", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110945, + "TargetID": 37849, + "Directional": true + }] + }, { + "ID": 20420, + "SourceStructureID": 110961, + "TargetStructureID": 5729, + "Label": "110961-5729 via Conventional from 110962 -> 110963", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110962, + "TargetID": 110963, + "Directional": true + }] + }, { + "ID": 20421, + "SourceStructureID": 110964, + "TargetStructureID": 5729, + "Label": "110964-5729 via Conventional from 110965 -> 110966", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110965, + "TargetID": 110966, + "Directional": true + }] + }, { + "ID": 20422, + "SourceStructureID": 110967, + "TargetStructureID": 5729, + "Label": "110967-5729 via Conventional from 110968 -> 110969", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110968, + "TargetID": 110969, + "Directional": true + }] + }, { + "ID": 20423, + "SourceStructureID": 110970, + "TargetStructureID": 5729, + "Label": "110970-5729 via Conventional from 110971 -> 110972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110971, + "TargetID": 110972, + "Directional": true + }] + }, { + "ID": 20424, + "SourceStructureID": 110977, + "TargetStructureID": 6120, + "Label": "110977-6120 via Conventional from 110983 -> 110874", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110983, + "TargetID": 110874, + "Directional": true + }] + }, { + "ID": 20425, + "SourceStructureID": 110977, + "TargetStructureID": 110979, + "Label": "110977-110979 via Conventional from 110978 -> 110980", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110978, + "TargetID": 110980, + "Directional": true + }] + }, { + "ID": 20426, + "SourceStructureID": 110988, + "TargetStructureID": 6120, + "Label": "110988-6120 via Conventional from 110990 -> 110987", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 110990, + "TargetID": 110987, + "Directional": true + }] + }, { + "ID": 20427, + "SourceStructureID": 111001, + "TargetStructureID": 6120, + "Label": "111001-6120 via Conventional from 111002 -> 61151, 111095 -> 111094", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111002, + "TargetID": 61151, + "Directional": true + }, { + "SourceID": 111095, + "TargetID": 111094, + "Directional": true + }] + }, { + "ID": 20428, + "SourceStructureID": 111006, + "TargetStructureID": 6120, + "Label": "111006-6120 via Conventional from 111007 -> 61149", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111007, + "TargetID": 61149, + "Directional": true + }] + }, { + "ID": 20429, + "SourceStructureID": 111037, + "TargetStructureID": 6120, + "Label": "111037-6120 via Conventional from 111038 -> 61130", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111038, + "TargetID": 61130, + "Directional": true + }] + }, { + "ID": 20430, + "SourceStructureID": 111054, + "TargetStructureID": 5729, + "Label": "111054-5729 via Conventional from 111056 -> 111053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111056, + "TargetID": 111053, + "Directional": true + }] + }, { + "ID": 20431, + "SourceStructureID": 111054, + "TargetStructureID": 6162, + "Label": "111054-6162 via Conventional from 111055 -> 29109", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111055, + "TargetID": 29109, + "Directional": true + }] + }, { + "ID": 20432, + "SourceStructureID": 111059, + "TargetStructureID": 5729, + "Label": "111059-5729 via Conventional from 111060 -> 47244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111060, + "TargetID": 47244, + "Directional": true + }] + }, { + "ID": 20433, + "SourceStructureID": 111070, + "TargetStructureID": 5729, + "Label": "111070-5729 via Conventional from 111071 -> 47246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111071, + "TargetID": 47246, + "Directional": true + }] + }, { + "ID": 20434, + "SourceStructureID": 111075, + "TargetStructureID": 5729, + "Label": "111075-5729 via Conventional from 111076 -> 111077", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111076, + "TargetID": 111077, + "Directional": true + }] + }, { + "ID": 20435, + "SourceStructureID": 111084, + "TargetStructureID": 5729, + "Label": "111084-5729 via Conventional from 111144 -> 111145, 111153 -> 111154", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111144, + "TargetID": 111145, + "Directional": true + }, { + "SourceID": 111153, + "TargetID": 111154, + "Directional": true + }] + }, { + "ID": 20436, + "SourceStructureID": 111098, + "TargetStructureID": 6120, + "Label": "111098-6120 via Conventional from 111099 -> 61142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111099, + "TargetID": 61142, + "Directional": true + }] + }, { + "ID": 20437, + "SourceStructureID": 111100, + "TargetStructureID": 6120, + "Label": "111100-6120 via Conventional from 111101 -> 61141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111101, + "TargetID": 61141, + "Directional": true + }] + }, { + "ID": 20438, + "SourceStructureID": 111102, + "TargetStructureID": 6120, + "Label": "111102-6120 via Conventional from 111103 -> 61136", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111103, + "TargetID": 61136, + "Directional": true + }] + }, { + "ID": 20439, + "SourceStructureID": 111130, + "TargetStructureID": 6120, + "Label": "111130-6120 via Conventional from 111131 -> 111129", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111131, + "TargetID": 111129, + "Directional": true + }] + }, { + "ID": 20440, + "SourceStructureID": 111135, + "TargetStructureID": 6120, + "Label": "111135-6120 via Conventional from 111234 -> 111233, 111244 -> 57386", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111234, + "TargetID": 111233, + "Directional": true + }, { + "SourceID": 111244, + "TargetID": 57386, + "Directional": true + }] + }, { + "ID": 20441, + "SourceStructureID": 111142, + "TargetStructureID": 6120, + "Label": "111142-6120 via Conventional from 111143 -> 61178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111143, + "TargetID": 61178, + "Directional": true + }] + }, { + "ID": 20442, + "SourceStructureID": 111146, + "TargetStructureID": 5729, + "Label": "111146-5729 via Conventional from 111147 -> 111148", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111147, + "TargetID": 111148, + "Directional": true + }] + }, { + "ID": 20443, + "SourceStructureID": 111149, + "TargetStructureID": 5729, + "Label": "111149-5729 via Conventional from 111150 -> 111151", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111150, + "TargetID": 111151, + "Directional": true + }] + }, { + "ID": 20444, + "SourceStructureID": 111165, + "TargetStructureID": 5729, + "Label": "111165-5729 via Conventional from 111173 -> 47247", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111173, + "TargetID": 47247, + "Directional": true + }] + }, { + "ID": 20445, + "SourceStructureID": 111187, + "TargetStructureID": 5729, + "Label": "111187-5729 via Conventional from 111188 -> 111189", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111188, + "TargetID": 111189, + "Directional": true + }] + }, { + "ID": 20446, + "SourceStructureID": 111198, + "TargetStructureID": 5729, + "Label": "111198-5729 via Conventional from 111199 -> 111197", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111199, + "TargetID": 111197, + "Directional": true + }] + }, { + "ID": 20447, + "SourceStructureID": 111207, + "TargetStructureID": 13525, + "Label": "111207-13525 via Conventional from 125798 -> 118140", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125798, + "TargetID": 118140, + "Directional": true + }] + }, { + "ID": 20448, + "SourceStructureID": 111212, + "TargetStructureID": 6120, + "Label": "111212-6120 via Conventional from 111213 -> 61183", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111213, + "TargetID": 61183, + "Directional": true + }] + }, { + "ID": 20449, + "SourceStructureID": 111214, + "TargetStructureID": 6120, + "Label": "111214-6120 via Conventional from 111215 -> 61182", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111215, + "TargetID": 61182, + "Directional": true + }] + }, { + "ID": 20450, + "SourceStructureID": 111218, + "TargetStructureID": 6120, + "Label": "111218-6120 via Conventional from 111219 -> 111220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111219, + "TargetID": 111220, + "Directional": true + }] + }, { + "ID": 20451, + "SourceStructureID": 111223, + "TargetStructureID": 6120, + "Label": "111223-6120 via Conventional from 111224 -> 61181", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111224, + "TargetID": 61181, + "Directional": true + }] + }, { + "ID": 20452, + "SourceStructureID": 111231, + "TargetStructureID": 6120, + "Label": "111231-6120 via Conventional from 111232 -> 61179", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111232, + "TargetID": 61179, + "Directional": true + }] + }, { + "ID": 20453, + "SourceStructureID": 111238, + "TargetStructureID": 111135, + "Label": "111238-111135 via Conventional from 111241 -> 116727", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111241, + "TargetID": 116727, + "Directional": true + }] + }, { + "ID": 20454, + "SourceStructureID": 111248, + "TargetStructureID": 6120, + "Label": "111248-6120 via Conventional from 111249 -> 111247", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111249, + "TargetID": 111247, + "Directional": true + }] + }, { + "ID": 20455, + "SourceStructureID": 111256, + "TargetStructureID": 6120, + "Label": "111256-6120 via Conventional from 111257 -> 111255", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111257, + "TargetID": 111255, + "Directional": true + }] + }, { + "ID": 20456, + "SourceStructureID": 111264, + "TargetStructureID": 6120, + "Label": "111264-6120 via Conventional from 111265 -> 111263", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111265, + "TargetID": 111263, + "Directional": true + }] + }, { + "ID": 20457, + "SourceStructureID": 111269, + "TargetStructureID": 111356, + "Label": "111269-111356 via Conventional from 111275 -> 111357", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111275, + "TargetID": 111357, + "Directional": true + }] + }, { + "ID": 20458, + "SourceStructureID": 111270, + "TargetStructureID": 6120, + "Label": "111270-6120 via Conventional from 111271 -> 111267", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111271, + "TargetID": 111267, + "Directional": true + }] + }, { + "ID": 20459, + "SourceStructureID": 111276, + "TargetStructureID": 6120, + "Label": "111276-6120 via Conventional from 111277 -> 57392", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111277, + "TargetID": 57392, + "Directional": true + }] + }, { + "ID": 20460, + "SourceStructureID": 111278, + "TargetStructureID": 6120, + "Label": "111278-6120 via Conventional from 111279 -> 57391", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111279, + "TargetID": 57391, + "Directional": true + }] + }, { + "ID": 20461, + "SourceStructureID": 111294, + "TargetStructureID": 5729, + "Label": "111294-5729 via Conventional from 111295 -> 37812", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111295, + "TargetID": 37812, + "Directional": true + }] + }, { + "ID": 20462, + "SourceStructureID": 111299, + "TargetStructureID": 5729, + "Label": "111299-5729 via Conventional from 111300 -> 111301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111300, + "TargetID": 111301, + "Directional": true + }] + }, { + "ID": 20463, + "SourceStructureID": 111303, + "TargetStructureID": 5729, + "Label": "111303-5729 via Conventional from 111304 -> 111305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111304, + "TargetID": 111305, + "Directional": true + }] + }, { + "ID": 20464, + "SourceStructureID": 111306, + "TargetStructureID": 5729, + "Label": "111306-5729 via Conventional from 111307 -> 37818", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111307, + "TargetID": 37818, + "Directional": true + }] + }, { + "ID": 20465, + "SourceStructureID": 111314, + "TargetStructureID": 5729, + "Label": "111314-5729 via Conventional from 111315 -> 111316", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111315, + "TargetID": 111316, + "Directional": true + }] + }, { + "ID": 20466, + "SourceStructureID": 111318, + "TargetStructureID": 111312, + "Label": "111318-111312 via Conventional from 111320 -> 111321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111320, + "TargetID": 111321, + "Directional": true + }] + }, { + "ID": 20467, + "SourceStructureID": 111324, + "TargetStructureID": 5729, + "Label": "111324-5729 via Conventional from 111325 -> 37827", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111325, + "TargetID": 37827, + "Directional": true + }] + }, { + "ID": 20468, + "SourceStructureID": 111328, + "TargetStructureID": 5729, + "Label": "111328-5729 via Conventional from 111338 -> 37826, 111434 -> 111435", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111338, + "TargetID": 37826, + "Directional": true + }, { + "SourceID": 111434, + "TargetID": 111435, + "Directional": true + }] + }, { + "ID": 20469, + "SourceStructureID": 111330, + "TargetStructureID": 5729, + "Label": "111330-5729 via Conventional from 111331 -> 37821", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111331, + "TargetID": 37821, + "Directional": true + }] + }, { + "ID": 20470, + "SourceStructureID": 111342, + "TargetStructureID": 6120, + "Label": "111342-6120 via Conventional from 111343 -> 111341", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111343, + "TargetID": 111341, + "Directional": true + }] + }, { + "ID": 20471, + "SourceStructureID": 111344, + "TargetStructureID": 6120, + "Label": "111344-6120 via Conventional from 111345 -> 57393", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111345, + "TargetID": 57393, + "Directional": true + }] + }, { + "ID": 20472, + "SourceStructureID": 111356, + "TargetStructureID": 6120, + "Label": "111356-6120 via Conventional from 111366 -> 111365", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111366, + "TargetID": 111365, + "Directional": true + }] + }, { + "ID": 20473, + "SourceStructureID": 111361, + "TargetStructureID": 6120, + "Label": "111361-6120 via Conventional from 111362 -> 111360", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111362, + "TargetID": 111360, + "Directional": true + }] + }, { + "ID": 20474, + "SourceStructureID": 111369, + "TargetStructureID": 6120, + "Label": "111369-6120 via Conventional from 111370 -> 111368", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111370, + "TargetID": 111368, + "Directional": true + }] + }, { + "ID": 20475, + "SourceStructureID": 111371, + "TargetStructureID": 6120, + "Label": "111371-6120 via Conventional from 111372 -> 111367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111372, + "TargetID": 111367, + "Directional": true + }] + }, { + "ID": 20476, + "SourceStructureID": 111379, + "TargetStructureID": 6120, + "Label": "111379-6120 via Conventional from 111380 -> 111381", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111380, + "TargetID": 111381, + "Directional": true + }] + }, { + "ID": 20477, + "SourceStructureID": 111382, + "TargetStructureID": 6120, + "Label": "111382-6120 via Conventional from 111383 -> 111384", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111383, + "TargetID": 111384, + "Directional": true + }] + }, { + "ID": 20478, + "SourceStructureID": 111386, + "TargetStructureID": 6120, + "Label": "111386-6120 via Conventional from 111387 -> 111385", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111387, + "TargetID": 111385, + "Directional": true + }] + }, { + "ID": 20479, + "SourceStructureID": 111394, + "TargetStructureID": 6120, + "Label": "111394-6120 via Conventional from 111395 -> 40735", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111395, + "TargetID": 40735, + "Directional": true + }] + }, { + "ID": 20480, + "SourceStructureID": 111394, + "TargetStructureID": 52410, + "Label": "111394-52410 via Conventional from 125663 -> 125662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125663, + "TargetID": 125662, + "Directional": true + }] + }, { + "ID": 20481, + "SourceStructureID": 111396, + "TargetStructureID": 6120, + "Label": "111396-6120 via Conventional from 111397 -> 61202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111397, + "TargetID": 61202, + "Directional": true + }] + }, { + "ID": 20482, + "SourceStructureID": 111401, + "TargetStructureID": 6120, + "Label": "111401-6120 via Conventional from 111728 -> 111727", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111728, + "TargetID": 111727, + "Directional": true + }] + }, { + "ID": 20483, + "SourceStructureID": 111410, + "TargetStructureID": 5729, + "Label": "111410-5729 via Conventional from 111425 -> 111426", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111425, + "TargetID": 111426, + "Directional": true + }] + }, { + "ID": 20484, + "SourceStructureID": 111414, + "TargetStructureID": 5729, + "Label": "111414-5729 via Conventional from 111415 -> 37832", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111415, + "TargetID": 37832, + "Directional": true + }] + }, { + "ID": 20485, + "SourceStructureID": 111421, + "TargetStructureID": 6120, + "Label": "111421-6120 via Conventional from 111422 -> 61194", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111422, + "TargetID": 61194, + "Directional": true + }] + }, { + "ID": 20486, + "SourceStructureID": 111424, + "TargetStructureID": 6120, + "Label": "111424-6120 via Conventional from 111477 -> 111404", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111477, + "TargetID": 111404, + "Directional": true + }] + }, { + "ID": 20487, + "SourceStructureID": 111424, + "TargetStructureID": 111479, + "Label": "111424-111479 via Conventional from 111478 -> 111480", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111478, + "TargetID": 111480, + "Directional": true + }] + }, { + "ID": 20488, + "SourceStructureID": 111430, + "TargetStructureID": 5729, + "Label": "111430-5729 via Conventional from 111431 -> 111432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111431, + "TargetID": 111432, + "Directional": true + }] + }, { + "ID": 20489, + "SourceStructureID": 111444, + "TargetStructureID": 5729, + "Label": "111444-5729 via Conventional from 111445 -> 47292", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111445, + "TargetID": 47292, + "Directional": true + }] + }, { + "ID": 20490, + "SourceStructureID": 111448, + "TargetStructureID": 5499, + "Label": "111448-5499 via Conventional from 111449 -> 105530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111449, + "TargetID": 105530, + "Directional": true + }] + }, { + "ID": 20491, + "SourceStructureID": 111448, + "TargetStructureID": 5729, + "Label": "111448-5729 via Conventional from 111450 -> 47294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111450, + "TargetID": 47294, + "Directional": true + }] + }, { + "ID": 20492, + "SourceStructureID": 111452, + "TargetStructureID": 5729, + "Label": "111452-5729 via Conventional from 111453 -> 111454", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111453, + "TargetID": 111454, + "Directional": true + }] + }, { + "ID": 20493, + "SourceStructureID": 111455, + "TargetStructureID": 5729, + "Label": "111455-5729 via Conventional from 111456 -> 111457", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111456, + "TargetID": 111457, + "Directional": true + }] + }, { + "ID": 20494, + "SourceStructureID": 111455, + "TargetStructureID": 108426, + "Label": "111455-108426 via Conventional from 111458 -> 111459", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111458, + "TargetID": 111459, + "Directional": true + }] + }, { + "ID": 20495, + "SourceStructureID": 111462, + "TargetStructureID": 606, + "Label": "111462-606 via Conventional from 111463 -> 47276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111463, + "TargetID": 47276, + "Directional": true + }] + }, { + "ID": 20496, + "SourceStructureID": 111462, + "TargetStructureID": 5729, + "Label": "111462-5729 via Conventional from 111464 -> 37829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111464, + "TargetID": 37829, + "Directional": true + }] + }, { + "ID": 20497, + "SourceStructureID": 111468, + "TargetStructureID": 5729, + "Label": "111468-5729 via Conventional from 111469 -> 37833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111469, + "TargetID": 37833, + "Directional": true + }] + }, { + "ID": 20498, + "SourceStructureID": 111479, + "TargetStructureID": 6120, + "Label": "111479-6120 via Conventional from 111481 -> 111406", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111481, + "TargetID": 111406, + "Directional": true + }] + }, { + "ID": 20499, + "SourceStructureID": 111482, + "TargetStructureID": 6120, + "Label": "111482-6120 via Conventional from 111483 -> 111405", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111483, + "TargetID": 111405, + "Directional": true + }] + }, { + "ID": 20500, + "SourceStructureID": 111493, + "TargetStructureID": 6120, + "Label": "111493-6120 via Conventional from 111494 -> 111492", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111494, + "TargetID": 111492, + "Directional": true + }] + }, { + "ID": 20501, + "SourceStructureID": 111496, + "TargetStructureID": 5643, + "Label": "111496-5643 via Conventional from 111505 -> 111507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111505, + "TargetID": 111507, + "Directional": true + }] + }, { + "ID": 20502, + "SourceStructureID": 111496, + "TargetStructureID": 6120, + "Label": "111496-6120 via Conventional from 111499 -> 61200", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111499, + "TargetID": 61200, + "Directional": true + }] + }, { + "ID": 20503, + "SourceStructureID": 111497, + "TargetStructureID": 6120, + "Label": "111497-6120 via Conventional from 111498 -> 111500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111498, + "TargetID": 111500, + "Directional": true + }] + }, { + "ID": 20504, + "SourceStructureID": 111501, + "TargetStructureID": 6120, + "Label": "111501-6120 via Conventional from 111502 -> 61201", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111502, + "TargetID": 61201, + "Directional": true + }] + }, { + "ID": 20505, + "SourceStructureID": 111511, + "TargetStructureID": 6120, + "Label": "111511-6120 via Conventional from 111512 -> 61187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111512, + "TargetID": 61187, + "Directional": true + }] + }, { + "ID": 20506, + "SourceStructureID": 111528, + "TargetStructureID": 6120, + "Label": "111528-6120 via Conventional from 111529 -> 111527", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111529, + "TargetID": 111527, + "Directional": true + }] + }, { + "ID": 20507, + "SourceStructureID": 111531, + "TargetStructureID": 6120, + "Label": "111531-6120 via Conventional from 111532 -> 111530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111532, + "TargetID": 111530, + "Directional": true + }] + }, { + "ID": 20508, + "SourceStructureID": 111539, + "TargetStructureID": 6120, + "Label": "111539-6120 via Conventional from 111540 -> 61199", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111540, + "TargetID": 61199, + "Directional": true + }] + }, { + "ID": 20509, + "SourceStructureID": 111539, + "TargetStructureID": 6121, + "Label": "111539-6121 via Conventional from 127709 -> 127710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127709, + "TargetID": 127710, + "Directional": true + }] + }, { + "ID": 20510, + "SourceStructureID": 111539, + "TargetStructureID": 6146, + "Label": "111539-6146 via Conventional from 127711 -> 127712", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127711, + "TargetID": 127712, + "Directional": true + }] + }, { + "ID": 20511, + "SourceStructureID": 111544, + "TargetStructureID": 6120, + "Label": "111544-6120 via Conventional from 111545 -> 111543", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111545, + "TargetID": 111543, + "Directional": true + }] + }, { + "ID": 20512, + "SourceStructureID": 111546, + "TargetStructureID": 6120, + "Label": "111546-6120 via Conventional from 111548 -> 111549", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111548, + "TargetID": 111549, + "Directional": true + }] + }, { + "ID": 20513, + "SourceStructureID": 111551, + "TargetStructureID": 6120, + "Label": "111551-6120 via Conventional from 111552 -> 111550", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111552, + "TargetID": 111550, + "Directional": true + }] + }, { + "ID": 20514, + "SourceStructureID": 111560, + "TargetStructureID": 111557, + "Label": "111560-111557 via Conventional from 111562 -> 111559", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111562, + "TargetID": 111559, + "Directional": true + }] + }, { + "ID": 20515, + "SourceStructureID": 111568, + "TargetStructureID": 6120, + "Label": "111568-6120 via Conventional from 111569 -> 51507", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111569, + "TargetID": 51507, + "Directional": true + }] + }, { + "ID": 20516, + "SourceStructureID": 111572, + "TargetStructureID": 6120, + "Label": "111572-6120 via Conventional from 111573 -> 111571", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111573, + "TargetID": 111571, + "Directional": true + }] + }, { + "ID": 20517, + "SourceStructureID": 111576, + "TargetStructureID": 6120, + "Label": "111576-6120 via Conventional from 111577 -> 111575", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111577, + "TargetID": 111575, + "Directional": true + }] + }, { + "ID": 20518, + "SourceStructureID": 111584, + "TargetStructureID": 6120, + "Label": "111584-6120 via Conventional from 111585 -> 111583", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111585, + "TargetID": 111583, + "Directional": true + }] + }, { + "ID": 20519, + "SourceStructureID": 111587, + "TargetStructureID": 6120, + "Label": "111587-6120 via Conventional from 111588 -> 111586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111588, + "TargetID": 111586, + "Directional": true + }] + }, { + "ID": 20520, + "SourceStructureID": 111590, + "TargetStructureID": 6120, + "Label": "111590-6120 via Conventional from 111591 -> 111589", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111591, + "TargetID": 111589, + "Directional": true + }] + }, { + "ID": 20521, + "SourceStructureID": 111595, + "TargetStructureID": 6120, + "Label": "111595-6120 via Conventional from 111596 -> 111594", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111596, + "TargetID": 111594, + "Directional": true + }] + }, { + "ID": 20522, + "SourceStructureID": 111602, + "TargetStructureID": 6120, + "Label": "111602-6120 via Conventional from 111603 -> 111601", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111603, + "TargetID": 111601, + "Directional": true + }] + }, { + "ID": 20523, + "SourceStructureID": 111604, + "TargetStructureID": 5729, + "Label": "111604-5729 via Conventional from 111610 -> 105755", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111610, + "TargetID": 105755, + "Directional": true + }] + }, { + "ID": 20524, + "SourceStructureID": 111604, + "TargetStructureID": 6162, + "Label": "111604-6162 via Conventional from 116585 -> 116587", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116585, + "TargetID": 116587, + "Directional": true + }] + }, { + "ID": 20525, + "SourceStructureID": 111611, + "TargetStructureID": 5729, + "Label": "111611-5729 via Conventional from 111612 -> 105754", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111612, + "TargetID": 105754, + "Directional": true + }] + }, { + "ID": 20526, + "SourceStructureID": 111616, + "TargetStructureID": 5729, + "Label": "111616-5729 via Conventional from 111619 -> 105758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111619, + "TargetID": 105758, + "Directional": true + }] + }, { + "ID": 20527, + "SourceStructureID": 111623, + "TargetStructureID": 6120, + "Label": "111623-6120 via Conventional from 111628 -> 111622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111628, + "TargetID": 111622, + "Directional": true + }] + }, { + "ID": 20528, + "SourceStructureID": 111630, + "TargetStructureID": 6120, + "Label": "111630-6120 via Conventional from 111633 -> 111627", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111633, + "TargetID": 111627, + "Directional": true + }] + }, { + "ID": 20529, + "SourceStructureID": 111638, + "TargetStructureID": 5729, + "Label": "111638-5729 via Conventional from 111639 -> 111640", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111639, + "TargetID": 111640, + "Directional": true + }] + }, { + "ID": 20530, + "SourceStructureID": 111667, + "TargetStructureID": 6120, + "Label": "111667-6120 via Conventional from 111668 -> 111666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111668, + "TargetID": 111666, + "Directional": true + }] + }, { + "ID": 20531, + "SourceStructureID": 111672, + "TargetStructureID": 31334, + "Label": "111672-31334 via Conventional from 111702 -> 111701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111702, + "TargetID": 111701, + "Directional": true + }] + }, { + "ID": 20532, + "SourceStructureID": 111677, + "TargetStructureID": 6120, + "Label": "111677-6120 via Conventional from 111680 -> 111676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111680, + "TargetID": 111676, + "Directional": true + }] + }, { + "ID": 20533, + "SourceStructureID": 111687, + "TargetStructureID": 6120, + "Label": "111687-6120 via Conventional from 111688 -> 111686", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111688, + "TargetID": 111686, + "Directional": true + }] + }, { + "ID": 20534, + "SourceStructureID": 111693, + "TargetStructureID": 6120, + "Label": "111693-6120 via Conventional from 111695 -> 111689", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111695, + "TargetID": 111689, + "Directional": true + }] + }, { + "ID": 20535, + "SourceStructureID": 111696, + "TargetStructureID": 6120, + "Label": "111696-6120 via Conventional from 111697 -> 111670", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111697, + "TargetID": 111670, + "Directional": true + }] + }, { + "ID": 20536, + "SourceStructureID": 111698, + "TargetStructureID": 5107, + "Label": "111698-5107 via Conventional from 111699 -> 65066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111699, + "TargetID": 65066, + "Directional": true + }] + }, { + "ID": 20537, + "SourceStructureID": 111708, + "TargetStructureID": 68539, + "Label": "111708-68539 via Conventional from 111709 -> 69147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111709, + "TargetID": 69147, + "Directional": true + }] + }, { + "ID": 20538, + "SourceStructureID": 111717, + "TargetStructureID": 6120, + "Label": "111717-6120 via Conventional from 111721 -> 111716", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111721, + "TargetID": 111716, + "Directional": true + }] + }, { + "ID": 20539, + "SourceStructureID": 111734, + "TargetStructureID": 6120, + "Label": "111734-6120 via Conventional from 111863 -> 111864", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111863, + "TargetID": 111864, + "Directional": true + }] + }, { + "ID": 20540, + "SourceStructureID": 111735, + "TargetStructureID": 5729, + "Label": "111735-5729 via Conventional from 111736 -> 111737", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111736, + "TargetID": 111737, + "Directional": true + }] + }, { + "ID": 20541, + "SourceStructureID": 111740, + "TargetStructureID": 5729, + "Label": "111740-5729 via Conventional from 111742 -> 111745", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111742, + "TargetID": 111745, + "Directional": true + }] + }, { + "ID": 20542, + "SourceStructureID": 111767, + "TargetStructureID": 5729, + "Label": "111767-5729 via Conventional from 111768 -> 111766", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111768, + "TargetID": 111766, + "Directional": true + }] + }, { + "ID": 20543, + "SourceStructureID": 111769, + "TargetStructureID": 5729, + "Label": "111769-5729 via Conventional from 111770 -> 111771", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111770, + "TargetID": 111771, + "Directional": true + }] + }, { + "ID": 20544, + "SourceStructureID": 111785, + "TargetStructureID": 5729, + "Label": "111785-5729 via Conventional from 111786 -> 111787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111786, + "TargetID": 111787, + "Directional": true + }] + }, { + "ID": 20545, + "SourceStructureID": 111799, + "TargetStructureID": 5729, + "Label": "111799-5729 via Conventional from 111800 -> 111798", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111800, + "TargetID": 111798, + "Directional": true + }] + }, { + "ID": 20546, + "SourceStructureID": 111803, + "TargetStructureID": 5531, + "Label": "111803-5531 via Conventional from 111804 -> 111805", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111804, + "TargetID": 111805, + "Directional": true + }] + }, { + "ID": 20547, + "SourceStructureID": 111823, + "TargetStructureID": 5531, + "Label": "111823-5531 via Conventional from 111826 -> 111825", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111826, + "TargetID": 111825, + "Directional": true + }] + }, { + "ID": 20548, + "SourceStructureID": 111827, + "TargetStructureID": 5531, + "Label": "111827-5531 via Conventional from 111828 -> 56798", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111828, + "TargetID": 56798, + "Directional": true + }] + }, { + "ID": 20549, + "SourceStructureID": 111829, + "TargetStructureID": 5531, + "Label": "111829-5531 via Conventional from 111830 -> 111831, 111832 -> 111833", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111830, + "TargetID": 111831, + "Directional": true + }, { + "SourceID": 111832, + "TargetID": 111833, + "Directional": true + }] + }, { + "ID": 20550, + "SourceStructureID": 111835, + "TargetStructureID": 5531, + "Label": "111835-5531 via Conventional from 111840 -> 111841", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111840, + "TargetID": 111841, + "Directional": true + }] + }, { + "ID": 20551, + "SourceStructureID": 111842, + "TargetStructureID": 5531, + "Label": "111842-5531 via Conventional from 111843 -> 56800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111843, + "TargetID": 56800, + "Directional": true + }] + }, { + "ID": 20552, + "SourceStructureID": 111848, + "TargetStructureID": 5531, + "Label": "111848-5531 via Conventional from 111849 -> 111850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111849, + "TargetID": 111850, + "Directional": true + }] + }, { + "ID": 20553, + "SourceStructureID": 111856, + "TargetStructureID": 5531, + "Label": "111856-5531 via Conventional from 111858 -> 111859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111858, + "TargetID": 111859, + "Directional": true + }] + }, { + "ID": 20554, + "SourceStructureID": 111869, + "TargetStructureID": 6120, + "Label": "111869-6120 via Conventional from 111870 -> 111868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111870, + "TargetID": 111868, + "Directional": true + }] + }, { + "ID": 20555, + "SourceStructureID": 111872, + "TargetStructureID": 6120, + "Label": "111872-6120 via Conventional from 111873 -> 111871", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111873, + "TargetID": 111871, + "Directional": true + }] + }, { + "ID": 20556, + "SourceStructureID": 111876, + "TargetStructureID": 6120, + "Label": "111876-6120 via Conventional from 111877 -> 111875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111877, + "TargetID": 111875, + "Directional": true + }] + }, { + "ID": 20557, + "SourceStructureID": 111883, + "TargetStructureID": 6120, + "Label": "111883-6120 via Conventional from 111884 -> 111882", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111884, + "TargetID": 111882, + "Directional": true + }] + }, { + "ID": 20558, + "SourceStructureID": 111899, + "TargetStructureID": 6120, + "Label": "111899-6120 via Conventional from 111900 -> 111901", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111900, + "TargetID": 111901, + "Directional": true + }] + }, { + "ID": 20559, + "SourceStructureID": 111899, + "TargetStructureID": 6121, + "Label": "111899-6121 via Conventional from 125224 -> 125222", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125224, + "TargetID": 125222, + "Directional": true + }] + }, { + "ID": 20560, + "SourceStructureID": 111926, + "TargetStructureID": 6047, + "Label": "111926-6047 via Conventional from 111927 -> 19622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111927, + "TargetID": 19622, + "Directional": true + }] + }, { + "ID": 20561, + "SourceStructureID": 111931, + "TargetStructureID": 6047, + "Label": "111931-6047 via Conventional from 111932 -> 111928", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111932, + "TargetID": 111928, + "Directional": true + }] + }, { + "ID": 20562, + "SourceStructureID": 111937, + "TargetStructureID": 6047, + "Label": "111937-6047 via Conventional from 111938 -> 111936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111938, + "TargetID": 111936, + "Directional": true + }] + }, { + "ID": 20563, + "SourceStructureID": 111939, + "TargetStructureID": 6047, + "Label": "111939-6047 via Conventional from 112015 -> 112016", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112015, + "TargetID": 112016, + "Directional": true + }] + }, { + "ID": 20564, + "SourceStructureID": 111953, + "TargetStructureID": 5729, + "Label": "111953-5729 via Conventional from 111954 -> 111955", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111954, + "TargetID": 111955, + "Directional": true + }] + }, { + "ID": 20565, + "SourceStructureID": 111963, + "TargetStructureID": 5729, + "Label": "111963-5729 via Conventional from 111966 -> 89607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111966, + "TargetID": 89607, + "Directional": true + }] + }, { + "ID": 20566, + "SourceStructureID": 111968, + "TargetStructureID": 5729, + "Label": "111968-5729 via Conventional from 111969 -> 89613", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111969, + "TargetID": 89613, + "Directional": true + }] + }, { + "ID": 20567, + "SourceStructureID": 111970, + "TargetStructureID": 5729, + "Label": "111970-5729 via Conventional from 111971 -> 111972, 112004 -> 112003", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111971, + "TargetID": 111972, + "Directional": true + }, { + "SourceID": 112004, + "TargetID": 112003, + "Directional": true + }] + }, { + "ID": 20568, + "SourceStructureID": 111994, + "TargetStructureID": 5729, + "Label": "111994-5729 via Conventional from 111995 -> 89614", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 111995, + "TargetID": 89614, + "Directional": true + }] + }, { + "ID": 20569, + "SourceStructureID": 112005, + "TargetStructureID": 5520, + "Label": "112005-5520 via Conventional from 113802 -> 113801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113802, + "TargetID": 113801, + "Directional": true + }] + }, { + "ID": 20570, + "SourceStructureID": 112005, + "TargetStructureID": 5729, + "Label": "112005-5729 via Conventional from 112006 -> 112007", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112006, + "TargetID": 112007, + "Directional": true + }] + }, { + "ID": 20571, + "SourceStructureID": 112017, + "TargetStructureID": 6047, + "Label": "112017-6047 via Conventional from 112019 -> 19709", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112019, + "TargetID": 19709, + "Directional": true + }] + }, { + "ID": 20572, + "SourceStructureID": 112028, + "TargetStructureID": 6047, + "Label": "112028-6047 via Conventional from 112029 -> 112027", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112029, + "TargetID": 112027, + "Directional": true + }] + }, { + "ID": 20573, + "SourceStructureID": 112032, + "TargetStructureID": 6047, + "Label": "112032-6047 via Conventional from 112033 -> 112031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112033, + "TargetID": 112031, + "Directional": true + }] + }, { + "ID": 20574, + "SourceStructureID": 112042, + "TargetStructureID": 6047, + "Label": "112042-6047 via Conventional from 112043 -> 112040", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112043, + "TargetID": 112040, + "Directional": true + }] + }, { + "ID": 20575, + "SourceStructureID": 112045, + "TargetStructureID": 6047, + "Label": "112045-6047 via Conventional from 112048 -> 112039", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112048, + "TargetID": 112039, + "Directional": true + }] + }, { + "ID": 20576, + "SourceStructureID": 112045, + "TargetStructureID": 112042, + "Label": "112045-112042 via Conventional from 112046 -> 112047", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112046, + "TargetID": 112047, + "Directional": true + }] + }, { + "ID": 20577, + "SourceStructureID": 112057, + "TargetStructureID": 6047, + "Label": "112057-6047 via Conventional from 112059 -> 112056", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112059, + "TargetID": 112056, + "Directional": true + }] + }, { + "ID": 20578, + "SourceStructureID": 112057, + "TargetStructureID": 6203, + "Label": "112057-6203 via Conventional from 112058 -> 112067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112058, + "TargetID": 112067, + "Directional": true + }] + }, { + "ID": 20579, + "SourceStructureID": 112062, + "TargetStructureID": 6047, + "Label": "112062-6047 via Conventional from 112063 -> 112061", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112063, + "TargetID": 112061, + "Directional": true + }] + }, { + "ID": 20580, + "SourceStructureID": 112071, + "TargetStructureID": 6047, + "Label": "112071-6047 via Conventional from 112072 -> 19696", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112072, + "TargetID": 19696, + "Directional": true + }] + }, { + "ID": 20581, + "SourceStructureID": 112073, + "TargetStructureID": 6047, + "Label": "112073-6047 via Conventional from 112074 -> 19698", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112074, + "TargetID": 19698, + "Directional": true + }] + }, { + "ID": 20582, + "SourceStructureID": 112077, + "TargetStructureID": 6047, + "Label": "112077-6047 via Conventional from 112079 -> 19699", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112079, + "TargetID": 19699, + "Directional": true + }] + }, { + "ID": 20583, + "SourceStructureID": 112081, + "TargetStructureID": 6047, + "Label": "112081-6047 via Conventional from 112082 -> 19701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112082, + "TargetID": 19701, + "Directional": true + }] + }, { + "ID": 20584, + "SourceStructureID": 112084, + "TargetStructureID": 6047, + "Label": "112084-6047 via Conventional from 112086 -> 19702", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112086, + "TargetID": 19702, + "Directional": true + }] + }, { + "ID": 20585, + "SourceStructureID": 112087, + "TargetStructureID": 6047, + "Label": "112087-6047 via Conventional from 112088 -> 19704", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112088, + "TargetID": 19704, + "Directional": true + }] + }, { + "ID": 20586, + "SourceStructureID": 112089, + "TargetStructureID": 6047, + "Label": "112089-6047 via Conventional from 112090 -> 19705", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112090, + "TargetID": 19705, + "Directional": true + }] + }, { + "ID": 20587, + "SourceStructureID": 112094, + "TargetStructureID": 6047, + "Label": "112094-6047 via Conventional from 112095 -> 112093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112095, + "TargetID": 112093, + "Directional": true + }] + }, { + "ID": 20588, + "SourceStructureID": 112096, + "TargetStructureID": 6047, + "Label": "112096-6047 via Conventional from 112097 -> 19700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112097, + "TargetID": 19700, + "Directional": true + }] + }, { + "ID": 20589, + "SourceStructureID": 112099, + "TargetStructureID": 6047, + "Label": "112099-6047 via Conventional from 112100 -> 112098", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112100, + "TargetID": 112098, + "Directional": true + }] + }, { + "ID": 20590, + "SourceStructureID": 112105, + "TargetStructureID": 6047, + "Label": "112105-6047 via Conventional from 112106 -> 19707", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112106, + "TargetID": 19707, + "Directional": true + }] + }, { + "ID": 20591, + "SourceStructureID": 112108, + "TargetStructureID": 6047, + "Label": "112108-6047 via Conventional from 112109 -> 112107", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112109, + "TargetID": 112107, + "Directional": true + }] + }, { + "ID": 20592, + "SourceStructureID": 112108, + "TargetStructureID": 22994, + "Label": "112108-22994 via Conventional from 112110 -> 75941", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112110, + "TargetID": 75941, + "Directional": true + }] + }, { + "ID": 20593, + "SourceStructureID": 112111, + "TargetStructureID": 6047, + "Label": "112111-6047 via Conventional from 112112 -> 112114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112112, + "TargetID": 112114, + "Directional": true + }] + }, { + "ID": 20594, + "SourceStructureID": 112111, + "TargetStructureID": 6141, + "Label": "112111-6141 via Conventional from 112113 -> 57399", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112113, + "TargetID": 57399, + "Directional": true + }] + }, { + "ID": 20595, + "SourceStructureID": 112115, + "TargetStructureID": 6047, + "Label": "112115-6047 via Conventional from 112116 -> 19677", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112116, + "TargetID": 19677, + "Directional": true + }] + }, { + "ID": 20596, + "SourceStructureID": 112128, + "TargetStructureID": 6047, + "Label": "112128-6047 via Conventional from 112129 -> 19678", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112129, + "TargetID": 19678, + "Directional": true + }] + }, { + "ID": 20597, + "SourceStructureID": 112130, + "TargetStructureID": 6047, + "Label": "112130-6047 via Conventional from 112131 -> 19679", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112131, + "TargetID": 19679, + "Directional": true + }] + }, { + "ID": 20598, + "SourceStructureID": 112133, + "TargetStructureID": 6047, + "Label": "112133-6047 via Conventional from 112134 -> 112132", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112134, + "TargetID": 112132, + "Directional": true + }] + }, { + "ID": 20599, + "SourceStructureID": 112155, + "TargetStructureID": 6047, + "Label": "112155-6047 via Conventional from 112156 -> 112154", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112156, + "TargetID": 112154, + "Directional": true + }] + }, { + "ID": 20600, + "SourceStructureID": 112160, + "TargetStructureID": 6047, + "Label": "112160-6047 via Conventional from 112161 -> 19682", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112161, + "TargetID": 19682, + "Directional": true + }] + }, { + "ID": 20601, + "SourceStructureID": 112164, + "TargetStructureID": 6047, + "Label": "112164-6047 via Conventional from 112165 -> 19683", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112165, + "TargetID": 19683, + "Directional": true + }] + }, { + "ID": 20602, + "SourceStructureID": 112166, + "TargetStructureID": 6047, + "Label": "112166-6047 via Conventional from 112167 -> 57404", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112167, + "TargetID": 57404, + "Directional": true + }] + }, { + "ID": 20603, + "SourceStructureID": 112166, + "TargetStructureID": 112172, + "Label": "112166-112172 via Conventional from 112174 -> 112173", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112174, + "TargetID": 112173, + "Directional": true + }] + }, { + "ID": 20604, + "SourceStructureID": 112168, + "TargetStructureID": 6047, + "Label": "112168-6047 via Conventional from 112169 -> 19685", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112169, + "TargetID": 19685, + "Directional": true + }] + }, { + "ID": 20605, + "SourceStructureID": 112180, + "TargetStructureID": 6047, + "Label": "112180-6047 via Conventional from 112181 -> 19667", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112181, + "TargetID": 19667, + "Directional": true + }] + }, { + "ID": 20606, + "SourceStructureID": 112182, + "TargetStructureID": 6047, + "Label": "112182-6047 via Cistern Post from 112183 -> 19668", + "Type": "Cistern Post", + "Directional": true, + "Links": [{ + "SourceID": 112183, + "TargetID": 19668, + "Directional": true + }] + }, { + "ID": 20607, + "SourceStructureID": 112184, + "TargetStructureID": 6047, + "Label": "112184-6047 via Conventional from 112185 -> 19674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112185, + "TargetID": 19674, + "Directional": true + }] + }, { + "ID": 20608, + "SourceStructureID": 112186, + "TargetStructureID": 6047, + "Label": "112186-6047 via Conventional from 112187 -> 19672", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112187, + "TargetID": 19672, + "Directional": true + }] + }, { + "ID": 20609, + "SourceStructureID": 112188, + "TargetStructureID": 6047, + "Label": "112188-6047 via Conventional from 112189 -> 19670, 112490 -> 112489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112189, + "TargetID": 19670, + "Directional": true + }, { + "SourceID": 112490, + "TargetID": 112489, + "Directional": true + }] + }, { + "ID": 20610, + "SourceStructureID": 112205, + "TargetStructureID": 3756, + "Label": "112205-3756 via Conventional from 120378 -> 116120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120378, + "TargetID": 116120, + "Directional": true + }] + }, { + "ID": 20611, + "SourceStructureID": 112205, + "TargetStructureID": 6047, + "Label": "112205-6047 via Conventional from 112206 -> 19710", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112206, + "TargetID": 19710, + "Directional": true + }] + }, { + "ID": 20612, + "SourceStructureID": 112207, + "TargetStructureID": 6047, + "Label": "112207-6047 via Conventional from 112208 -> 19712", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112208, + "TargetID": 19712, + "Directional": true + }] + }, { + "ID": 20613, + "SourceStructureID": 112217, + "TargetStructureID": 6047, + "Label": "112217-6047 via Conventional from 112218 -> 19714, 112220 -> 61337", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112218, + "TargetID": 19714, + "Directional": true + }, { + "SourceID": 112220, + "TargetID": 61337, + "Directional": true + }] + }, { + "ID": 20614, + "SourceStructureID": 112221, + "TargetStructureID": 112217, + "Label": "112221-112217 via Conventional from 112222 -> 112223", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112222, + "TargetID": 112223, + "Directional": true + }] + }, { + "ID": 20615, + "SourceStructureID": 112230, + "TargetStructureID": 6047, + "Label": "112230-6047 via Conventional from 112231 -> 61336", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112231, + "TargetID": 61336, + "Directional": true + }] + }, { + "ID": 20616, + "SourceStructureID": 112233, + "TargetStructureID": 6047, + "Label": "112233-6047 via Unknown from 113692 -> 113691", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 113692, + "TargetID": 113691, + "Directional": true + }] + }, { + "ID": 20617, + "SourceStructureID": 112241, + "TargetStructureID": 6047, + "Label": "112241-6047 via Conventional from 112242 -> 112240", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112242, + "TargetID": 112240, + "Directional": true + }] + }, { + "ID": 20618, + "SourceStructureID": 112244, + "TargetStructureID": 6047, + "Label": "112244-6047 via Conventional from 112245 -> 61331", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112245, + "TargetID": 61331, + "Directional": true + }] + }, { + "ID": 20619, + "SourceStructureID": 112246, + "TargetStructureID": 6047, + "Label": "112246-6047 via Conventional from 112247 -> 61325", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112247, + "TargetID": 61325, + "Directional": true + }] + }, { + "ID": 20620, + "SourceStructureID": 112253, + "TargetStructureID": 6047, + "Label": "112253-6047 via Conventional from 112254 -> 61328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112254, + "TargetID": 61328, + "Directional": true + }] + }, { + "ID": 20621, + "SourceStructureID": 112255, + "TargetStructureID": 6047, + "Label": "112255-6047 via Conventional from 112256 -> 61330", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112256, + "TargetID": 61330, + "Directional": true + }] + }, { + "ID": 20622, + "SourceStructureID": 112271, + "TargetStructureID": 6047, + "Label": "112271-6047 via Conventional from 112272 -> 61334", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112272, + "TargetID": 61334, + "Directional": true + }] + }, { + "ID": 20623, + "SourceStructureID": 112273, + "TargetStructureID": 6047, + "Label": "112273-6047 via Conventional from 112274 -> 61333", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112274, + "TargetID": 61333, + "Directional": true + }] + }, { + "ID": 20624, + "SourceStructureID": 112282, + "TargetStructureID": 6047, + "Label": "112282-6047 via Conventional from 112283 -> 53631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112283, + "TargetID": 53631, + "Directional": true + }] + }, { + "ID": 20625, + "SourceStructureID": 112284, + "TargetStructureID": 6047, + "Label": "112284-6047 via Conventional from 112285 -> 61324", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112285, + "TargetID": 61324, + "Directional": true + }] + }, { + "ID": 20626, + "SourceStructureID": 112286, + "TargetStructureID": 6047, + "Label": "112286-6047 via Conventional from 112287 -> 112289", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112287, + "TargetID": 112289, + "Directional": true + }] + }, { + "ID": 20627, + "SourceStructureID": 112290, + "TargetStructureID": 6047, + "Label": "112290-6047 via Conventional from 112291 -> 53632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112291, + "TargetID": 53632, + "Directional": true + }] + }, { + "ID": 20628, + "SourceStructureID": 112297, + "TargetStructureID": 5729, + "Label": "112297-5729 via Conventional from 112298 -> 112299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112298, + "TargetID": 112299, + "Directional": true + }] + }, { + "ID": 20629, + "SourceStructureID": 112319, + "TargetStructureID": 6047, + "Label": "112319-6047 via Conventional from 112320 -> 61323", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112320, + "TargetID": 61323, + "Directional": true + }] + }, { + "ID": 20630, + "SourceStructureID": 112322, + "TargetStructureID": 6047, + "Label": "112322-6047 via Conventional from 112323 -> 112321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112323, + "TargetID": 112321, + "Directional": true + }] + }, { + "ID": 20631, + "SourceStructureID": 112351, + "TargetStructureID": 6047, + "Label": "112351-6047 via Conventional from 112352 -> 112353", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112352, + "TargetID": 112353, + "Directional": true + }] + }, { + "ID": 20632, + "SourceStructureID": 112355, + "TargetStructureID": 6047, + "Label": "112355-6047 via Conventional from 112356 -> 112354", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112356, + "TargetID": 112354, + "Directional": true + }] + }, { + "ID": 20633, + "SourceStructureID": 112364, + "TargetStructureID": 6047, + "Label": "112364-6047 via Conventional from 112366 -> 19717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112366, + "TargetID": 19717, + "Directional": true + }] + }, { + "ID": 20634, + "SourceStructureID": 112374, + "TargetStructureID": 6047, + "Label": "112374-6047 via Conventional from 112375 -> 112373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112375, + "TargetID": 112373, + "Directional": true + }] + }, { + "ID": 20635, + "SourceStructureID": 112379, + "TargetStructureID": 6047, + "Label": "112379-6047 via Conventional from 112380 -> 19724", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112380, + "TargetID": 19724, + "Directional": true + }] + }, { + "ID": 20636, + "SourceStructureID": 112384, + "TargetStructureID": 6047, + "Label": "112384-6047 via Conventional from 112385 -> 112383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112385, + "TargetID": 112383, + "Directional": true + }] + }, { + "ID": 20637, + "SourceStructureID": 112386, + "TargetStructureID": 6047, + "Label": "112386-6047 via Conventional from 112387 -> 19725", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112387, + "TargetID": 19725, + "Directional": true + }] + }, { + "ID": 20638, + "SourceStructureID": 112392, + "TargetStructureID": 6047, + "Label": "112392-6047 via Conventional from 112393 -> 19727", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112393, + "TargetID": 19727, + "Directional": true + }] + }, { + "ID": 20639, + "SourceStructureID": 112402, + "TargetStructureID": 6047, + "Label": "112402-6047 via Conventional from 112406 -> 19740", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112406, + "TargetID": 19740, + "Directional": true + }] + }, { + "ID": 20640, + "SourceStructureID": 112404, + "TargetStructureID": 6047, + "Label": "112404-6047 via Conventional from 112405 -> 19736", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112405, + "TargetID": 19736, + "Directional": true + }] + }, { + "ID": 20641, + "SourceStructureID": 112407, + "TargetStructureID": 6047, + "Label": "112407-6047 via Conventional from 112408 -> 19735", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112408, + "TargetID": 19735, + "Directional": true + }] + }, { + "ID": 20642, + "SourceStructureID": 112419, + "TargetStructureID": 6047, + "Label": "112419-6047 via Conventional from 112420 -> 19741", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112420, + "TargetID": 19741, + "Directional": true + }] + }, { + "ID": 20643, + "SourceStructureID": 112447, + "TargetStructureID": 112447, + "Label": "112447-112447 via Postsynapse from 112448 -> 112452", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 112448, + "TargetID": 112452, + "Directional": true + }] + }, { + "ID": 20644, + "SourceStructureID": 112468, + "TargetStructureID": 5531, + "Label": "112468-5531 via Conventional from 112469 -> 112470", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112469, + "TargetID": 112470, + "Directional": true + }] + }, { + "ID": 20645, + "SourceStructureID": 112474, + "TargetStructureID": 6047, + "Label": "112474-6047 via Conventional from 112475 -> 19664", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112475, + "TargetID": 19664, + "Directional": true + }] + }, { + "ID": 20646, + "SourceStructureID": 112476, + "TargetStructureID": 3756, + "Label": "112476-3756 via Conventional from 116112 -> 116111", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116112, + "TargetID": 116111, + "Directional": true + }] + }, { + "ID": 20647, + "SourceStructureID": 112476, + "TargetStructureID": 6047, + "Label": "112476-6047 via Conventional from 112477 -> 19665, 129320 -> 129319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112477, + "TargetID": 19665, + "Directional": true + }, { + "SourceID": 129320, + "TargetID": 129319, + "Directional": true + }] + }, { + "ID": 20648, + "SourceStructureID": 112478, + "TargetStructureID": 6047, + "Label": "112478-6047 via Conventional from 112479 -> 19666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112479, + "TargetID": 19666, + "Directional": true + }] + }, { + "ID": 20649, + "SourceStructureID": 112496, + "TargetStructureID": 6047, + "Label": "112496-6047 via Conventional from 112510 -> 112495", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112510, + "TargetID": 112495, + "Directional": true + }] + }, { + "ID": 20650, + "SourceStructureID": 112515, + "TargetStructureID": 6047, + "Label": "112515-6047 via Conventional from 112517 -> 112516", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112517, + "TargetID": 112516, + "Directional": true + }] + }, { + "ID": 20651, + "SourceStructureID": 112525, + "TargetStructureID": 6047, + "Label": "112525-6047 via Conventional from 112527 -> 112526", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112527, + "TargetID": 112526, + "Directional": true + }] + }, { + "ID": 20652, + "SourceStructureID": 112525, + "TargetStructureID": 43261, + "Label": "112525-43261 via Conventional from 122046 -> 122045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122046, + "TargetID": 122045, + "Directional": true + }] + }, { + "ID": 20653, + "SourceStructureID": 112545, + "TargetStructureID": 6047, + "Label": "112545-6047 via Conventional from 112546 -> 19662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112546, + "TargetID": 19662, + "Directional": true + }] + }, { + "ID": 20654, + "SourceStructureID": 112560, + "TargetStructureID": 6047, + "Label": "112560-6047 via Conventional from 112561 -> 19658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112561, + "TargetID": 19658, + "Directional": true + }] + }, { + "ID": 20655, + "SourceStructureID": 112577, + "TargetStructureID": 6047, + "Label": "112577-6047 via Conventional from 112578 -> 19663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112578, + "TargetID": 19663, + "Directional": true + }] + }, { + "ID": 20656, + "SourceStructureID": 112584, + "TargetStructureID": 6047, + "Label": "112584-6047 via Conventional from 112585 -> 19657", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112585, + "TargetID": 19657, + "Directional": true + }] + }, { + "ID": 20657, + "SourceStructureID": 112594, + "TargetStructureID": 5729, + "Label": "112594-5729 via Conventional from 112595 -> 64932", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112595, + "TargetID": 64932, + "Directional": true + }] + }, { + "ID": 20658, + "SourceStructureID": 112607, + "TargetStructureID": 3116, + "Label": "112607-3116 via Conventional from 112608 -> 23813", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112608, + "TargetID": 23813, + "Directional": true + }] + }, { + "ID": 20659, + "SourceStructureID": 112610, + "TargetStructureID": 168, + "Label": "112610-168 via Conventional from 112611 -> 4328, 112612 -> 4328, 112613 -> 49067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112611, + "TargetID": 4328, + "Directional": true + }, { + "SourceID": 112612, + "TargetID": 4328, + "Directional": true + }, { + "SourceID": 112613, + "TargetID": 49067, + "Directional": true + }] + }, { + "ID": 20660, + "SourceStructureID": 112634, + "TargetStructureID": 5729, + "Label": "112634-5729 via Conventional from 112636 -> 112630", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112636, + "TargetID": 112630, + "Directional": true + }] + }, { + "ID": 20661, + "SourceStructureID": 112638, + "TargetStructureID": 5729, + "Label": "112638-5729 via Conventional from 112640 -> 112621", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112640, + "TargetID": 112621, + "Directional": true + }] + }, { + "ID": 20662, + "SourceStructureID": 112648, + "TargetStructureID": 5729, + "Label": "112648-5729 via Conventional from 112649 -> 112653", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112649, + "TargetID": 112653, + "Directional": true + }] + }, { + "ID": 20663, + "SourceStructureID": 112650, + "TargetStructureID": 5729, + "Label": "112650-5729 via Conventional from 112651 -> 112652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112651, + "TargetID": 112652, + "Directional": true + }] + }, { + "ID": 20664, + "SourceStructureID": 112661, + "TargetStructureID": 5729, + "Label": "112661-5729 via Conventional from 112663 -> 112660", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112663, + "TargetID": 112660, + "Directional": true + }] + }, { + "ID": 20665, + "SourceStructureID": 112664, + "TargetStructureID": 5729, + "Label": "112664-5729 via Conventional from 112665 -> 112662", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112665, + "TargetID": 112662, + "Directional": true + }] + }, { + "ID": 20666, + "SourceStructureID": 112677, + "TargetStructureID": 5729, + "Label": "112677-5729 via Conventional from 112680 -> 64512", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112680, + "TargetID": 64512, + "Directional": true + }] + }, { + "ID": 20667, + "SourceStructureID": 112684, + "TargetStructureID": 5729, + "Label": "112684-5729 via Conventional from 112685 -> 64508", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112685, + "TargetID": 64508, + "Directional": true + }] + }, { + "ID": 20668, + "SourceStructureID": 112684, + "TargetStructureID": 89586, + "Label": "112684-89586 via Conventional from 112687 -> 112688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112687, + "TargetID": 112688, + "Directional": true + }] + }, { + "ID": 20669, + "SourceStructureID": 112689, + "TargetStructureID": 5729, + "Label": "112689-5729 via Conventional from 112691 -> 64526", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112691, + "TargetID": 64526, + "Directional": true + }] + }, { + "ID": 20670, + "SourceStructureID": 112694, + "TargetStructureID": 5729, + "Label": "112694-5729 via Conventional from 112695 -> 64500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112695, + "TargetID": 64500, + "Directional": true + }] + }, { + "ID": 20671, + "SourceStructureID": 112696, + "TargetStructureID": 5729, + "Label": "112696-5729 via Conventional from 112697 -> 64483", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112697, + "TargetID": 64483, + "Directional": true + }] + }, { + "ID": 20672, + "SourceStructureID": 112700, + "TargetStructureID": 5729, + "Label": "112700-5729 via Conventional from 112701 -> 64485", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112701, + "TargetID": 64485, + "Directional": true + }] + }, { + "ID": 20673, + "SourceStructureID": 112703, + "TargetStructureID": 112696, + "Label": "112703-112696 via Conventional from 112705 -> 112706", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112705, + "TargetID": 112706, + "Directional": true + }] + }, { + "ID": 20674, + "SourceStructureID": 112709, + "TargetStructureID": 5729, + "Label": "112709-5729 via Conventional from 112710 -> 64481", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112710, + "TargetID": 64481, + "Directional": true + }] + }, { + "ID": 20675, + "SourceStructureID": 112712, + "TargetStructureID": 5729, + "Label": "112712-5729 via Conventional from 112720 -> 64499", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112720, + "TargetID": 64499, + "Directional": true + }] + }, { + "ID": 20676, + "SourceStructureID": 112718, + "TargetStructureID": 5729, + "Label": "112718-5729 via Conventional from 112719 -> 64525", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112719, + "TargetID": 64525, + "Directional": true + }] + }, { + "ID": 20677, + "SourceStructureID": 112727, + "TargetStructureID": 5729, + "Label": "112727-5729 via Conventional from 112728 -> 64478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112728, + "TargetID": 64478, + "Directional": true + }] + }, { + "ID": 20678, + "SourceStructureID": 112729, + "TargetStructureID": 5729, + "Label": "112729-5729 via Conventional from 112731 -> 64468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112731, + "TargetID": 64468, + "Directional": true + }] + }, { + "ID": 20679, + "SourceStructureID": 112737, + "TargetStructureID": 5729, + "Label": "112737-5729 via Conventional from 112738 -> 64462", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112738, + "TargetID": 64462, + "Directional": true + }] + }, { + "ID": 20680, + "SourceStructureID": 112739, + "TargetStructureID": 168, + "Label": "112739-168 via Conventional from 112740 -> 4332", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112740, + "TargetID": 4332, + "Directional": true + }] + }, { + "ID": 20681, + "SourceStructureID": 112753, + "TargetStructureID": 6047, + "Label": "112753-6047 via Conventional from 112754 -> 61342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112754, + "TargetID": 61342, + "Directional": true + }] + }, { + "ID": 20682, + "SourceStructureID": 112761, + "TargetStructureID": 6047, + "Label": "112761-6047 via Conventional from 112762 -> 61340", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112762, + "TargetID": 61340, + "Directional": true + }] + }, { + "ID": 20683, + "SourceStructureID": 112766, + "TargetStructureID": 6047, + "Label": "112766-6047 via Conventional from 112767 -> 61346", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112767, + "TargetID": 61346, + "Directional": true + }] + }, { + "ID": 20684, + "SourceStructureID": 112775, + "TargetStructureID": 6047, + "Label": "112775-6047 via Conventional from 112776 -> 19653", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112776, + "TargetID": 19653, + "Directional": true + }] + }, { + "ID": 20685, + "SourceStructureID": 112777, + "TargetStructureID": 6047, + "Label": "112777-6047 via Conventional from 112778 -> 19652", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112778, + "TargetID": 19652, + "Directional": true + }] + }, { + "ID": 20686, + "SourceStructureID": 112784, + "TargetStructureID": 6047, + "Label": "112784-6047 via Conventional from 112787 -> 19648", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112787, + "TargetID": 19648, + "Directional": true + }] + }, { + "ID": 20687, + "SourceStructureID": 112824, + "TargetStructureID": 6047, + "Label": "112824-6047 via Conventional from 112830 -> 19645", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112830, + "TargetID": 19645, + "Directional": true + }] + }, { + "ID": 20688, + "SourceStructureID": 112843, + "TargetStructureID": 3756, + "Label": "112843-3756 via Conventional from 120368 -> 116097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120368, + "TargetID": 116097, + "Directional": true + }] + }, { + "ID": 20689, + "SourceStructureID": 112843, + "TargetStructureID": 6047, + "Label": "112843-6047 via Conventional from 112844 -> 19642", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112844, + "TargetID": 19642, + "Directional": true + }] + }, { + "ID": 20690, + "SourceStructureID": 112880, + "TargetStructureID": 5729, + "Label": "112880-5729 via Conventional from 112883 -> 64464", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112883, + "TargetID": 64464, + "Directional": true + }] + }, { + "ID": 20691, + "SourceStructureID": 112903, + "TargetStructureID": 5729, + "Label": "112903-5729 via Conventional from 112905 -> 65014", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112905, + "TargetID": 65014, + "Directional": true + }] + }, { + "ID": 20692, + "SourceStructureID": 112912, + "TargetStructureID": 5729, + "Label": "112912-5729 via Conventional from 112913 -> 64586", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112913, + "TargetID": 64586, + "Directional": true + }] + }, { + "ID": 20693, + "SourceStructureID": 112938, + "TargetStructureID": 5729, + "Label": "112938-5729 via Conventional from 112940 -> 64533", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112940, + "TargetID": 64533, + "Directional": true + }] + }, { + "ID": 20694, + "SourceStructureID": 112942, + "TargetStructureID": 5729, + "Label": "112942-5729 via Conventional from 112948 -> 64530", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112948, + "TargetID": 64530, + "Directional": true + }] + }, { + "ID": 20695, + "SourceStructureID": 112964, + "TargetStructureID": 5729, + "Label": "112964-5729 via Conventional from 112965 -> 112963", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112965, + "TargetID": 112963, + "Directional": true + }] + }, { + "ID": 20696, + "SourceStructureID": 112966, + "TargetStructureID": 5729, + "Label": "112966-5729 via Conventional from 112967 -> 112968", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112967, + "TargetID": 112968, + "Directional": true + }] + }, { + "ID": 20697, + "SourceStructureID": 112969, + "TargetStructureID": 5729, + "Label": "112969-5729 via Conventional from 112970 -> 112971", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112970, + "TargetID": 112971, + "Directional": true + }] + }, { + "ID": 20698, + "SourceStructureID": 112986, + "TargetStructureID": 5729, + "Label": "112986-5729 via Conventional from 112987 -> 112974", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112987, + "TargetID": 112974, + "Directional": true + }] + }, { + "ID": 20699, + "SourceStructureID": 112989, + "TargetStructureID": 5729, + "Label": "112989-5729 via Conventional from 112990 -> 112988", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112990, + "TargetID": 112988, + "Directional": true + }] + }, { + "ID": 20700, + "SourceStructureID": 112995, + "TargetStructureID": 61904, + "Label": "112995-61904 via Conventional from 112997 -> 82214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 112997, + "TargetID": 82214, + "Directional": true + }] + }, { + "ID": 20701, + "SourceStructureID": 113068, + "TargetStructureID": 5284, + "Label": "113068-5284 via Conventional from 113069 -> 112871, 113073 -> 112875", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113069, + "TargetID": 112871, + "Directional": true + }, { + "SourceID": 113073, + "TargetID": 112875, + "Directional": true + }] + }, { + "ID": 20702, + "SourceStructureID": 113088, + "TargetStructureID": 5729, + "Label": "113088-5729 via Conventional from 113089 -> 113090", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113089, + "TargetID": 113090, + "Directional": true + }] + }, { + "ID": 20703, + "SourceStructureID": 113091, + "TargetStructureID": 5729, + "Label": "113091-5729 via Conventional from 113102 -> 113101", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113102, + "TargetID": 113101, + "Directional": true + }] + }, { + "ID": 20704, + "SourceStructureID": 113103, + "TargetStructureID": 5729, + "Label": "113103-5729 via Conventional from 113104 -> 113093", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113104, + "TargetID": 113093, + "Directional": true + }] + }, { + "ID": 20705, + "SourceStructureID": 113120, + "TargetStructureID": 6047, + "Label": "113120-6047 via Conventional from 113121 -> 19640", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113121, + "TargetID": 19640, + "Directional": true + }] + }, { + "ID": 20706, + "SourceStructureID": 113129, + "TargetStructureID": 6047, + "Label": "113129-6047 via Conventional from 113130 -> 19635", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113130, + "TargetID": 19635, + "Directional": true + }] + }, { + "ID": 20707, + "SourceStructureID": 113131, + "TargetStructureID": 6047, + "Label": "113131-6047 via Conventional from 113132 -> 19629", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113132, + "TargetID": 19629, + "Directional": true + }] + }, { + "ID": 20708, + "SourceStructureID": 113133, + "TargetStructureID": 6047, + "Label": "113133-6047 via Conventional from 113134 -> 19636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113134, + "TargetID": 19636, + "Directional": true + }] + }, { + "ID": 20709, + "SourceStructureID": 113135, + "TargetStructureID": 6047, + "Label": "113135-6047 via Conventional from 113136 -> 19630", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113136, + "TargetID": 19630, + "Directional": true + }] + }, { + "ID": 20710, + "SourceStructureID": 113147, + "TargetStructureID": 6047, + "Label": "113147-6047 via Conventional from 113148 -> 19639", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113148, + "TargetID": 19639, + "Directional": true + }] + }, { + "ID": 20711, + "SourceStructureID": 113156, + "TargetStructureID": 6047, + "Label": "113156-6047 via Conventional from 113157 -> 19626, 113157 -> 113158", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113157, + "TargetID": 19626, + "Directional": true + }, { + "SourceID": 113157, + "TargetID": 113158, + "Directional": true + }] + }, { + "ID": 20712, + "SourceStructureID": 113159, + "TargetStructureID": 6047, + "Label": "113159-6047 via Conventional from 113161 -> 19625", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113161, + "TargetID": 19625, + "Directional": true + }] + }, { + "ID": 20713, + "SourceStructureID": 113164, + "TargetStructureID": 6047, + "Label": "113164-6047 via Conventional from 113165 -> 27778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113165, + "TargetID": 27778, + "Directional": true + }] + }, { + "ID": 20714, + "SourceStructureID": 113167, + "TargetStructureID": 6047, + "Label": "113167-6047 via Conventional from 113168 -> 113166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113168, + "TargetID": 113166, + "Directional": true + }] + }, { + "ID": 20715, + "SourceStructureID": 113173, + "TargetStructureID": 6047, + "Label": "113173-6047 via Conventional from 113174 -> 113175", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113174, + "TargetID": 113175, + "Directional": true + }] + }, { + "ID": 20716, + "SourceStructureID": 113179, + "TargetStructureID": 6047, + "Label": "113179-6047 via Conventional from 113181 -> 19632", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113181, + "TargetID": 19632, + "Directional": true + }] + }, { + "ID": 20717, + "SourceStructureID": 113186, + "TargetStructureID": 3756, + "Label": "113186-3756 via Conventional from 129368 -> 129367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129368, + "TargetID": 129367, + "Directional": true + }] + }, { + "ID": 20718, + "SourceStructureID": 113186, + "TargetStructureID": 6047, + "Label": "113186-6047 via Conventional from 113187 -> 19631", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113187, + "TargetID": 19631, + "Directional": true + }] + }, { + "ID": 20719, + "SourceStructureID": 113228, + "TargetStructureID": 6047, + "Label": "113228-6047 via Conventional from 113229 -> 19692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113229, + "TargetID": 19692, + "Directional": true + }] + }, { + "ID": 20720, + "SourceStructureID": 113242, + "TargetStructureID": 13525, + "Label": "113242-13525 via Conventional from 118475 -> 118476", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118475, + "TargetID": 118476, + "Directional": true + }] + }, { + "ID": 20721, + "SourceStructureID": 113332, + "TargetStructureID": 5284, + "Label": "113332-5284 via Conventional from 113333 -> 65904, 113335 -> 113323, 113336 -> 49926", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113333, + "TargetID": 65904, + "Directional": true + }, { + "SourceID": 113335, + "TargetID": 113323, + "Directional": true + }, { + "SourceID": 113336, + "TargetID": 49926, + "Directional": true + }] + }, { + "ID": 20722, + "SourceStructureID": 113342, + "TargetStructureID": 5284, + "Label": "113342-5284 via Conventional from 113343 -> 54354, 113348 -> 60786", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113343, + "TargetID": 54354, + "Directional": true + }, { + "SourceID": 113348, + "TargetID": 60786, + "Directional": true + }] + }, { + "ID": 20723, + "SourceStructureID": 113393, + "TargetStructureID": 5284, + "Label": "113393-5284 via Conventional from 113395 -> 113394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 113395, + "TargetID": 113394, + "Directional": true + }] + }, { + "ID": 20724, + "SourceStructureID": 113547, + "TargetStructureID": 67291, + "Label": "113547-67291 via BC Conventional Synapse from 120526 -> 68362", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 120526, + "TargetID": 68362, + "Directional": true + }] + }, { + "ID": 20725, + "SourceStructureID": 114564, + "TargetStructureID": 5531, + "Label": "114564-5531 via Conventional from 114565 -> 114566", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114565, + "TargetID": 114566, + "Directional": true + }] + }, { + "ID": 20726, + "SourceStructureID": 114568, + "TargetStructureID": 5531, + "Label": "114568-5531 via Conventional from 114569 -> 114570", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114569, + "TargetID": 114570, + "Directional": true + }] + }, { + "ID": 20727, + "SourceStructureID": 114576, + "TargetStructureID": 5531, + "Label": "114576-5531 via Conventional from 114577 -> 114578", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114577, + "TargetID": 114578, + "Directional": true + }] + }, { + "ID": 20728, + "SourceStructureID": 114698, + "TargetStructureID": 5531, + "Label": "114698-5531 via Conventional from 114699 -> 114700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114699, + "TargetID": 114700, + "Directional": true + }] + }, { + "ID": 20729, + "SourceStructureID": 114726, + "TargetStructureID": 5531, + "Label": "114726-5531 via Conventional from 114727 -> 114728, 114766 -> 114765", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114727, + "TargetID": 114728, + "Directional": true + }, { + "SourceID": 114766, + "TargetID": 114765, + "Directional": true + }] + }, { + "ID": 20730, + "SourceStructureID": 114729, + "TargetStructureID": 5531, + "Label": "114729-5531 via Conventional from 114730 -> 114731", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114730, + "TargetID": 114731, + "Directional": true + }] + }, { + "ID": 20731, + "SourceStructureID": 114745, + "TargetStructureID": 5531, + "Label": "114745-5531 via Conventional from 114754 -> 114755", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114754, + "TargetID": 114755, + "Directional": true + }] + }, { + "ID": 20732, + "SourceStructureID": 114747, + "TargetStructureID": 5531, + "Label": "114747-5531 via Conventional from 114750 -> 114751", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114750, + "TargetID": 114751, + "Directional": true + }] + }, { + "ID": 20733, + "SourceStructureID": 114757, + "TargetStructureID": 5531, + "Label": "114757-5531 via Conventional from 114758 -> 54649", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114758, + "TargetID": 54649, + "Directional": true + }] + }, { + "ID": 20734, + "SourceStructureID": 114925, + "TargetStructureID": 6164, + "Label": "114925-6164 via Conventional from 114926 -> 26861, 114929 -> 114930", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114926, + "TargetID": 26861, + "Directional": true + }, { + "SourceID": 114929, + "TargetID": 114930, + "Directional": true + }] + }, { + "ID": 20735, + "SourceStructureID": 114931, + "TargetStructureID": 6164, + "Label": "114931-6164 via Conventional from 114932 -> 26650", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 114932, + "TargetID": 26650, + "Directional": true + }] + }, { + "ID": 20736, + "SourceStructureID": 115013, + "TargetStructureID": 6164, + "Label": "115013-6164 via Conventional from 115014 -> 114934, 115015 -> 26859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115014, + "TargetID": 114934, + "Directional": true + }, { + "SourceID": 115015, + "TargetID": 26859, + "Directional": true + }] + }, { + "ID": 20737, + "SourceStructureID": 115133, + "TargetStructureID": 5468, + "Label": "115133-5468 via Conventional from 124224 -> 48221", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 124224, + "TargetID": 48221, + "Directional": true + }] + }, { + "ID": 20738, + "SourceStructureID": 115133, + "TargetStructureID": 5598, + "Label": "115133-5598 via Conventional from 124223 -> 57125", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 124223, + "TargetID": 57125, + "Directional": true + }] + }, { + "ID": 20739, + "SourceStructureID": 115430, + "TargetStructureID": 115432, + "Label": "115430-115432 via Conventional from 115431 -> 115433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115431, + "TargetID": 115433, + "Directional": true + }] + }, { + "ID": 20740, + "SourceStructureID": 115581, + "TargetStructureID": 13525, + "Label": "115581-13525 via Ribbon Synapse from 115582 -> 87165", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 115582, + "TargetID": 87165, + "Directional": true + }] + }, { + "ID": 20741, + "SourceStructureID": 115691, + "TargetStructureID": 5499, + "Label": "115691-5499 via Conventional from 115692 -> 98021", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115692, + "TargetID": 98021, + "Directional": true + }] + }, { + "ID": 20742, + "SourceStructureID": 115801, + "TargetStructureID": 5599, + "Label": "115801-5599 via Conventional from 115802 -> 115803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115802, + "TargetID": 115803, + "Directional": true + }] + }, { + "ID": 20743, + "SourceStructureID": 115810, + "TargetStructureID": 166, + "Label": "115810-166 via Conventional from 115811 -> 49166", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115811, + "TargetID": 49166, + "Directional": true + }] + }, { + "ID": 20744, + "SourceStructureID": 115855, + "TargetStructureID": 909, + "Label": "115855-909 via Conventional from 115856 -> 115857", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115856, + "TargetID": 115857, + "Directional": true + }] + }, { + "ID": 20745, + "SourceStructureID": 115870, + "TargetStructureID": 909, + "Label": "115870-909 via Conventional from 116377 -> 116375, 129491 -> 129492", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116377, + "TargetID": 116375, + "Directional": true + }, { + "SourceID": 129491, + "TargetID": 129492, + "Directional": true + }] + }, { + "ID": 20746, + "SourceStructureID": 115870, + "TargetStructureID": 115860, + "Label": "115870-115860 via Conventional from 129488 -> 129489", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129488, + "TargetID": 129489, + "Directional": true + }] + }, { + "ID": 20747, + "SourceStructureID": 115878, + "TargetStructureID": 909, + "Label": "115878-909 via Conventional from 129501 -> 129500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129501, + "TargetID": 129500, + "Directional": true + }] + }, { + "ID": 20748, + "SourceStructureID": 115888, + "TargetStructureID": 909, + "Label": "115888-909 via Conventional from 115889 -> 45838", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115889, + "TargetID": 45838, + "Directional": true + }] + }, { + "ID": 20749, + "SourceStructureID": 115900, + "TargetStructureID": 909, + "Label": "115900-909 via Conventional from 115901 -> 40120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115901, + "TargetID": 40120, + "Directional": true + }] + }, { + "ID": 20750, + "SourceStructureID": 115949, + "TargetStructureID": 909, + "Label": "115949-909 via Conventional from 115950 -> 45942", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115950, + "TargetID": 45942, + "Directional": true + }] + }, { + "ID": 20751, + "SourceStructureID": 115953, + "TargetStructureID": 909, + "Label": "115953-909 via Conventional from 115954 -> 45943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115954, + "TargetID": 45943, + "Directional": true + }] + }, { + "ID": 20752, + "SourceStructureID": 115953, + "TargetStructureID": 5279, + "Label": "115953-5279 via Conventional from 119110 -> 119109", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119110, + "TargetID": 119109, + "Directional": true + }] + }, { + "ID": 20753, + "SourceStructureID": 115974, + "TargetStructureID": 909, + "Label": "115974-909 via Conventional from 115975 -> 115972", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115975, + "TargetID": 115972, + "Directional": true + }] + }, { + "ID": 20754, + "SourceStructureID": 115977, + "TargetStructureID": 909, + "Label": "115977-909 via Conventional from 115980 -> 115976", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 115980, + "TargetID": 115976, + "Directional": true + }] + }, { + "ID": 20755, + "SourceStructureID": 115983, + "TargetStructureID": 909, + "Label": "115983-909 via Conventional from 117245 -> 115981", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117245, + "TargetID": 115981, + "Directional": true + }] + }, { + "ID": 20756, + "SourceStructureID": 116395, + "TargetStructureID": 909, + "Label": "116395-909 via Conventional from 116396 -> 116303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116396, + "TargetID": 116303, + "Directional": true + }] + }, { + "ID": 20757, + "SourceStructureID": 116400, + "TargetStructureID": 909, + "Label": "116400-909 via Conventional from 116765 -> 116302", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116765, + "TargetID": 116302, + "Directional": true + }] + }, { + "ID": 20758, + "SourceStructureID": 116403, + "TargetStructureID": 909, + "Label": "116403-909 via Conventional from 116404 -> 116401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116404, + "TargetID": 116401, + "Directional": true + }] + }, { + "ID": 20759, + "SourceStructureID": 116451, + "TargetStructureID": 7167, + "Label": "116451-7167 via Conventional from 116452 -> 116450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116452, + "TargetID": 116450, + "Directional": true + }] + }, { + "ID": 20760, + "SourceStructureID": 116729, + "TargetStructureID": 3116, + "Label": "116729-3116 via Conventional from 116730 -> 116728", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116730, + "TargetID": 116728, + "Directional": true + }] + }, { + "ID": 20761, + "SourceStructureID": 116788, + "TargetStructureID": 909, + "Label": "116788-909 via Conventional from 116789 -> 116782", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116789, + "TargetID": 116782, + "Directional": true + }] + }, { + "ID": 20762, + "SourceStructureID": 116791, + "TargetStructureID": 909, + "Label": "116791-909 via Conventional from 116792 -> 116790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116792, + "TargetID": 116790, + "Directional": true + }] + }, { + "ID": 20763, + "SourceStructureID": 116919, + "TargetStructureID": 5551, + "Label": "116919-5551 via Conventional from 116920 -> 116921", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116920, + "TargetID": 116921, + "Directional": true + }] + }, { + "ID": 20764, + "SourceStructureID": 116925, + "TargetStructureID": 5551, + "Label": "116925-5551 via Conventional from 116928 -> 116924", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 116928, + "TargetID": 116924, + "Directional": true + }] + }, { + "ID": 20765, + "SourceStructureID": 117065, + "TargetStructureID": 5557, + "Label": "117065-5557 via Conventional from 117066 -> 117067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117066, + "TargetID": 117067, + "Directional": true + }] + }, { + "ID": 20766, + "SourceStructureID": 117112, + "TargetStructureID": 8720, + "Label": "117112-8720 via Ribbon Synapse from 117183 -> 63467", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117183, + "TargetID": 63467, + "Directional": true + }] + }, { + "ID": 20767, + "SourceStructureID": 117127, + "TargetStructureID": 63978, + "Label": "117127-63978 via Ribbon Synapse from 117146 -> 64000", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117146, + "TargetID": 64000, + "Directional": true + }] + }, { + "ID": 20768, + "SourceStructureID": 117214, + "TargetStructureID": 909, + "Label": "117214-909 via Conventional from 117215 -> 117216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117215, + "TargetID": 117216, + "Directional": true + }] + }, { + "ID": 20769, + "SourceStructureID": 117218, + "TargetStructureID": 909, + "Label": "117218-909 via Conventional from 117219 -> 117220", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117219, + "TargetID": 117220, + "Directional": true + }] + }, { + "ID": 20770, + "SourceStructureID": 117223, + "TargetStructureID": 909, + "Label": "117223-909 via Conventional from 117228 -> 117229, 131032 -> 118644", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117228, + "TargetID": 117229, + "Directional": true + }, { + "SourceID": 131032, + "TargetID": 118644, + "Directional": true + }] + }, { + "ID": 20771, + "SourceStructureID": 117239, + "TargetStructureID": 909, + "Label": "117239-909 via Conventional from 117240 -> 117238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117240, + "TargetID": 117238, + "Directional": true + }] + }, { + "ID": 20772, + "SourceStructureID": 117242, + "TargetStructureID": 909, + "Label": "117242-909 via Conventional from 131066 -> 131065", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131066, + "TargetID": 131065, + "Directional": true + }] + }, { + "ID": 20773, + "SourceStructureID": 117242, + "TargetStructureID": 117204, + "Label": "117242-117204 via Conventional from 117243 -> 117244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117243, + "TargetID": 117244, + "Directional": true + }] + }, { + "ID": 20774, + "SourceStructureID": 117285, + "TargetStructureID": 909, + "Label": "117285-909 via Conventional from 117286 -> 117276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117286, + "TargetID": 117276, + "Directional": true + }] + }, { + "ID": 20775, + "SourceStructureID": 117399, + "TargetStructureID": 909, + "Label": "117399-909 via Conventional from 117400 -> 117396", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117400, + "TargetID": 117396, + "Directional": true + }] + }, { + "ID": 20776, + "SourceStructureID": 117401, + "TargetStructureID": 909, + "Label": "117401-909 via Conventional from 117403 -> 117397", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117403, + "TargetID": 117397, + "Directional": true + }] + }, { + "ID": 20777, + "SourceStructureID": 117404, + "TargetStructureID": 909, + "Label": "117404-909 via Conventional from 117405 -> 117398", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117405, + "TargetID": 117398, + "Directional": true + }] + }, { + "ID": 20778, + "SourceStructureID": 117406, + "TargetStructureID": 909, + "Label": "117406-909 via Conventional from 117407 -> 53732", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117407, + "TargetID": 53732, + "Directional": true + }] + }, { + "ID": 20779, + "SourceStructureID": 117406, + "TargetStructureID": 117411, + "Label": "117406-117411 via Conventional from 130224 -> 130225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130224, + "TargetID": 130225, + "Directional": true + }] + }, { + "ID": 20780, + "SourceStructureID": 117411, + "TargetStructureID": 909, + "Label": "117411-909 via Conventional from 117412 -> 117414", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117412, + "TargetID": 117414, + "Directional": true + }] + }, { + "ID": 20781, + "SourceStructureID": 117429, + "TargetStructureID": 909, + "Label": "117429-909 via Conventional from 117430 -> 117428", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117430, + "TargetID": 117428, + "Directional": true + }] + }, { + "ID": 20782, + "SourceStructureID": 117440, + "TargetStructureID": 909, + "Label": "117440-909 via Conventional from 117441 -> 117442", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117441, + "TargetID": 117442, + "Directional": true + }] + }, { + "ID": 20783, + "SourceStructureID": 117463, + "TargetStructureID": 909, + "Label": "117463-909 via Conventional from 117464 -> 53743", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117464, + "TargetID": 53743, + "Directional": true + }] + }, { + "ID": 20784, + "SourceStructureID": 117466, + "TargetStructureID": 909, + "Label": "117466-909 via Conventional from 117467 -> 53744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117467, + "TargetID": 53744, + "Directional": true + }] + }, { + "ID": 20785, + "SourceStructureID": 117470, + "TargetStructureID": 909, + "Label": "117470-909 via Conventional from 117471 -> 53745, 130086 -> 130087", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117471, + "TargetID": 53745, + "Directional": true + }, { + "SourceID": 130086, + "TargetID": 130087, + "Directional": true + }] + }, { + "ID": 20786, + "SourceStructureID": 117476, + "TargetStructureID": 909, + "Label": "117476-909 via Conventional from 117477 -> 117478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117477, + "TargetID": 117478, + "Directional": true + }] + }, { + "ID": 20787, + "SourceStructureID": 117659, + "TargetStructureID": 909, + "Label": "117659-909 via Conventional from 117660 -> 117661", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117660, + "TargetID": 117661, + "Directional": true + }] + }, { + "ID": 20788, + "SourceStructureID": 117679, + "TargetStructureID": 909, + "Label": "117679-909 via Conventional from 117680 -> 117457", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117680, + "TargetID": 117457, + "Directional": true + }] + }, { + "ID": 20789, + "SourceStructureID": 117689, + "TargetStructureID": 909, + "Label": "117689-909 via Conventional from 117690 -> 53754, 120173 -> 120172", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117690, + "TargetID": 53754, + "Directional": true + }, { + "SourceID": 120173, + "TargetID": 120172, + "Directional": true + }] + }, { + "ID": 20790, + "SourceStructureID": 117778, + "TargetStructureID": 28950, + "Label": "117778-28950 via Ribbon Synapse from 117788 -> 28992, 117789 -> 28992", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117788, + "TargetID": 28992, + "Directional": true + }, { + "SourceID": 117789, + "TargetID": 28992, + "Directional": true + }] + }, { + "ID": 20791, + "SourceStructureID": 117803, + "TargetStructureID": 7129, + "Label": "117803-7129 via Conventional from 127741 -> 127742", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127741, + "TargetID": 127742, + "Directional": true + }] + }, { + "ID": 20792, + "SourceStructureID": 117820, + "TargetStructureID": 909, + "Label": "117820-909 via Conventional from 117821 -> 117822", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117821, + "TargetID": 117822, + "Directional": true + }] + }, { + "ID": 20793, + "SourceStructureID": 117851, + "TargetStructureID": 909, + "Label": "117851-909 via Conventional from 130282 -> 130283", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130282, + "TargetID": 130283, + "Directional": true + }] + }, { + "ID": 20794, + "SourceStructureID": 117851, + "TargetStructureID": 5297, + "Label": "117851-5297 via Conventional from 121469 -> 61482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121469, + "TargetID": 61482, + "Directional": true + }] + }, { + "ID": 20795, + "SourceStructureID": 117858, + "TargetStructureID": 909, + "Label": "117858-909 via Conventional from 117859 -> 117828", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117859, + "TargetID": 117828, + "Directional": true + }] + }, { + "ID": 20796, + "SourceStructureID": 117860, + "TargetStructureID": 909, + "Label": "117860-909 via Conventional from 117861 -> 117850", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117861, + "TargetID": 117850, + "Directional": true + }] + }, { + "ID": 20797, + "SourceStructureID": 117860, + "TargetStructureID": 5297, + "Label": "117860-5297 via Conventional from 121335 -> 116445", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121335, + "TargetID": 116445, + "Directional": true + }] + }, { + "ID": 20798, + "SourceStructureID": 117876, + "TargetStructureID": 909, + "Label": "117876-909 via Conventional from 117877 -> 117870, 117886 -> 117885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117877, + "TargetID": 117870, + "Directional": true + }, { + "SourceID": 117886, + "TargetID": 117885, + "Directional": true + }] + }, { + "ID": 20799, + "SourceStructureID": 117887, + "TargetStructureID": 909, + "Label": "117887-909 via Conventional from 117888 -> 53795", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117888, + "TargetID": 53795, + "Directional": true + }] + }, { + "ID": 20800, + "SourceStructureID": 117906, + "TargetStructureID": 909, + "Label": "117906-909 via Conventional from 117908 -> 117909", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117908, + "TargetID": 117909, + "Directional": true + }] + }, { + "ID": 20801, + "SourceStructureID": 117919, + "TargetStructureID": 909, + "Label": "117919-909 via Conventional from 117920 -> 117918", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117920, + "TargetID": 117918, + "Directional": true + }] + }, { + "ID": 20802, + "SourceStructureID": 117919, + "TargetStructureID": 5284, + "Label": "117919-5284 via Conventional from 117921 -> 64591", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 117921, + "TargetID": 64591, + "Directional": true + }] + }, { + "ID": 20803, + "SourceStructureID": 117990, + "TargetStructureID": 7861, + "Label": "117990-7861 via Ribbon Synapse from 117994 -> 117995", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 117994, + "TargetID": 117995, + "Directional": true + }] + }, { + "ID": 20804, + "SourceStructureID": 118258, + "TargetStructureID": 118258, + "Label": "118258-118258 via Conventional from 127800 -> 127801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127800, + "TargetID": 127801, + "Directional": true + }] + }, { + "ID": 20805, + "SourceStructureID": 118258, + "TargetStructureID": 127796, + "Label": "118258-127796 via Ribbon Synapse from 127802 -> 127803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127802, + "TargetID": 127803, + "Directional": true + }] + }, { + "ID": 20806, + "SourceStructureID": 118395, + "TargetStructureID": 909, + "Label": "118395-909 via Conventional from 118397 -> 53803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118397, + "TargetID": 53803, + "Directional": true + }] + }, { + "ID": 20807, + "SourceStructureID": 118446, + "TargetStructureID": 909, + "Label": "118446-909 via Conventional from 118451 -> 118452", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118451, + "TargetID": 118452, + "Directional": true + }] + }, { + "ID": 20808, + "SourceStructureID": 118949, + "TargetStructureID": 26079, + "Label": "118949-26079 via Conventional from 118950 -> 118948", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118950, + "TargetID": 118948, + "Directional": true + }] + }, { + "ID": 20809, + "SourceStructureID": 118952, + "TargetStructureID": 5513, + "Label": "118952-5513 via Conventional from 118953 -> 29591", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118953, + "TargetID": 29591, + "Directional": true + }] + }, { + "ID": 20810, + "SourceStructureID": 118997, + "TargetStructureID": 31700, + "Label": "118997-31700 via Conventional from 118998 -> 118996", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 118998, + "TargetID": 118996, + "Directional": true + }] + }, { + "ID": 20811, + "SourceStructureID": 119000, + "TargetStructureID": 330, + "Label": "119000-330 via Conventional from 119003 -> 119004", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119003, + "TargetID": 119004, + "Directional": true + }] + }, { + "ID": 20812, + "SourceStructureID": 119000, + "TargetStructureID": 606, + "Label": "119000-606 via Conventional from 119014 -> 9796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119014, + "TargetID": 9796, + "Directional": true + }] + }, { + "ID": 20813, + "SourceStructureID": 119000, + "TargetStructureID": 6165, + "Label": "119000-6165 via Conventional from 119039 -> 119040", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119039, + "TargetID": 119040, + "Directional": true + }] + }, { + "ID": 20814, + "SourceStructureID": 119000, + "TargetStructureID": 31700, + "Label": "119000-31700 via Conventional from 119001 -> 118999", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119001, + "TargetID": 118999, + "Directional": true + }] + }, { + "ID": 20815, + "SourceStructureID": 119000, + "TargetStructureID": 119008, + "Label": "119000-119008 via Conventional from 119007 -> 119010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119007, + "TargetID": 119010, + "Directional": true + }] + }, { + "ID": 20816, + "SourceStructureID": 119000, + "TargetStructureID": 119017, + "Label": "119000-119017 via Conventional from 119016 -> 119018", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119016, + "TargetID": 119018, + "Directional": true + }] + }, { + "ID": 20817, + "SourceStructureID": 119000, + "TargetStructureID": 119020, + "Label": "119000-119020 via Conventional from 119019 -> 119021", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119019, + "TargetID": 119021, + "Directional": true + }] + }, { + "ID": 20818, + "SourceStructureID": 119008, + "TargetStructureID": 330, + "Label": "119008-330 via Conventional from 119009 -> 119011", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119009, + "TargetID": 119011, + "Directional": true + }] + }, { + "ID": 20819, + "SourceStructureID": 119154, + "TargetStructureID": 64673, + "Label": "119154-64673 via Conventional from 119168 -> 64681", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119168, + "TargetID": 64681, + "Directional": true + }] + }, { + "ID": 20820, + "SourceStructureID": 119241, + "TargetStructureID": 52257, + "Label": "119241-52257 via Conventional from 119242 -> 119245, 119243 -> 119244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119242, + "TargetID": 119245, + "Directional": true + }, { + "SourceID": 119243, + "TargetID": 119244, + "Directional": true + }] + }, { + "ID": 20821, + "SourceStructureID": 119270, + "TargetStructureID": 5281, + "Label": "119270-5281 via Conventional from 119271 -> 36784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119271, + "TargetID": 36784, + "Directional": true + }] + }, { + "ID": 20822, + "SourceStructureID": 119388, + "TargetStructureID": 13525, + "Label": "119388-13525 via Conventional from 119409 -> 119406", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119409, + "TargetID": 119406, + "Directional": true + }] + }, { + "ID": 20823, + "SourceStructureID": 119517, + "TargetStructureID": 5487, + "Label": "119517-5487 via BC Conventional Synapse from 119526 -> 119525", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119526, + "TargetID": 119525, + "Directional": true + }] + }, { + "ID": 20824, + "SourceStructureID": 119517, + "TargetStructureID": 6300, + "Label": "119517-6300 via Ribbon Synapse from 119520 -> 119516", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119520, + "TargetID": 119516, + "Directional": true + }] + }, { + "ID": 20825, + "SourceStructureID": 119517, + "TargetStructureID": 54969, + "Label": "119517-54969 via Ribbon Synapse from 119521 -> 54970", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119521, + "TargetID": 54970, + "Directional": true + }] + }, { + "ID": 20826, + "SourceStructureID": 119547, + "TargetStructureID": 8035, + "Label": "119547-8035 via Ribbon Synapse from 119555 -> 25020", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 119555, + "TargetID": 25020, + "Directional": true + }] + }, { + "ID": 20827, + "SourceStructureID": 119945, + "TargetStructureID": 119943, + "Label": "119945-119943 via Conventional from 119946 -> 119944", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119946, + "TargetID": 119944, + "Directional": true + }] + }, { + "ID": 20828, + "SourceStructureID": 119971, + "TargetStructureID": 5281, + "Label": "119971-5281 via Conventional from 119972 -> 119970", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 119972, + "TargetID": 119970, + "Directional": true + }] + }, { + "ID": 20829, + "SourceStructureID": 120194, + "TargetStructureID": 909, + "Label": "120194-909 via Conventional from 120195 -> 118423", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120195, + "TargetID": 118423, + "Directional": true + }] + }, { + "ID": 20830, + "SourceStructureID": 120197, + "TargetStructureID": 909, + "Label": "120197-909 via Conventional from 120198 -> 120181", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120198, + "TargetID": 120181, + "Directional": true + }] + }, { + "ID": 20831, + "SourceStructureID": 120253, + "TargetStructureID": 3756, + "Label": "120253-3756 via Conventional from 120254 -> 116038", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120254, + "TargetID": 116038, + "Directional": true + }] + }, { + "ID": 20832, + "SourceStructureID": 120256, + "TargetStructureID": 5531, + "Label": "120256-5531 via Conventional from 120257 -> 107201", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120257, + "TargetID": 107201, + "Directional": true + }] + }, { + "ID": 20833, + "SourceStructureID": 120270, + "TargetStructureID": 5531, + "Label": "120270-5531 via Conventional from 120272 -> 108023", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120272, + "TargetID": 108023, + "Directional": true + }] + }, { + "ID": 20834, + "SourceStructureID": 120282, + "TargetStructureID": 3756, + "Label": "120282-3756 via Conventional from 120283 -> 116006, 120308 -> 116023", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120283, + "TargetID": 116006, + "Directional": true + }, { + "SourceID": 120308, + "TargetID": 116023, + "Directional": true + }] + }, { + "ID": 20835, + "SourceStructureID": 120285, + "TargetStructureID": 3756, + "Label": "120285-3756 via Conventional from 120287 -> 116010", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120287, + "TargetID": 116010, + "Directional": true + }] + }, { + "ID": 20836, + "SourceStructureID": 120288, + "TargetStructureID": 3756, + "Label": "120288-3756 via Conventional from 120290 -> 116013", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120290, + "TargetID": 116013, + "Directional": true + }] + }, { + "ID": 20837, + "SourceStructureID": 120291, + "TargetStructureID": 3756, + "Label": "120291-3756 via Conventional from 120294 -> 116014, 120298 -> 116016", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120294, + "TargetID": 116014, + "Directional": true + }, { + "SourceID": 120298, + "TargetID": 116016, + "Directional": true + }] + }, { + "ID": 20838, + "SourceStructureID": 120299, + "TargetStructureID": 3756, + "Label": "120299-3756 via Conventional from 120300 -> 116019", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120300, + "TargetID": 116019, + "Directional": true + }] + }, { + "ID": 20839, + "SourceStructureID": 120299, + "TargetStructureID": 5297, + "Label": "120299-5297 via Conventional from 121361 -> 116513", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121361, + "TargetID": 116513, + "Directional": true + }] + }, { + "ID": 20840, + "SourceStructureID": 120303, + "TargetStructureID": 3756, + "Label": "120303-3756 via Conventional from 120307 -> 116020", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120307, + "TargetID": 116020, + "Directional": true + }] + }, { + "ID": 20841, + "SourceStructureID": 120309, + "TargetStructureID": 3756, + "Label": "120309-3756 via Conventional from 120310 -> 116028", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120310, + "TargetID": 116028, + "Directional": true + }] + }, { + "ID": 20842, + "SourceStructureID": 120318, + "TargetStructureID": 3756, + "Label": "120318-3756 via Conventional from 120319 -> 116032", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120319, + "TargetID": 116032, + "Directional": true + }] + }, { + "ID": 20843, + "SourceStructureID": 120321, + "TargetStructureID": 6050, + "Label": "120321-6050 via Conventional from 128794 -> 127649", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128794, + "TargetID": 127649, + "Directional": true + }] + }, { + "ID": 20844, + "SourceStructureID": 120323, + "TargetStructureID": 3756, + "Label": "120323-3756 via Conventional from 120324 -> 116040, 120325 -> 116040", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120324, + "TargetID": 116040, + "Directional": true + }, { + "SourceID": 120325, + "TargetID": 116040, + "Directional": true + }] + }, { + "ID": 20845, + "SourceStructureID": 120329, + "TargetStructureID": 3756, + "Label": "120329-3756 via Conventional from 120330 -> 116049", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120330, + "TargetID": 116049, + "Directional": true + }] + }, { + "ID": 20846, + "SourceStructureID": 120331, + "TargetStructureID": 3756, + "Label": "120331-3756 via Conventional from 120332 -> 116053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120332, + "TargetID": 116053, + "Directional": true + }] + }, { + "ID": 20847, + "SourceStructureID": 120334, + "TargetStructureID": 3756, + "Label": "120334-3756 via Conventional from 120336 -> 116055", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120336, + "TargetID": 116055, + "Directional": true + }] + }, { + "ID": 20848, + "SourceStructureID": 120334, + "TargetStructureID": 5598, + "Label": "120334-5598 via Conventional from 120335 -> 115254", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120335, + "TargetID": 115254, + "Directional": true + }] + }, { + "ID": 20849, + "SourceStructureID": 120337, + "TargetStructureID": 3756, + "Label": "120337-3756 via Conventional from 120338 -> 116056", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120338, + "TargetID": 116056, + "Directional": true + }] + }, { + "ID": 20850, + "SourceStructureID": 120339, + "TargetStructureID": 3756, + "Label": "120339-3756 via Conventional from 120340 -> 116057", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120340, + "TargetID": 116057, + "Directional": true + }] + }, { + "ID": 20851, + "SourceStructureID": 120343, + "TargetStructureID": 3756, + "Label": "120343-3756 via Conventional from 120344 -> 116066", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120344, + "TargetID": 116066, + "Directional": true + }] + }, { + "ID": 20852, + "SourceStructureID": 120343, + "TargetStructureID": 116142, + "Label": "120343-116142 via Conventional from 129180 -> 129178", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129180, + "TargetID": 129178, + "Directional": true + }] + }, { + "ID": 20853, + "SourceStructureID": 120347, + "TargetStructureID": 3756, + "Label": "120347-3756 via Conventional from 120348 -> 116067", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120348, + "TargetID": 116067, + "Directional": true + }] + }, { + "ID": 20854, + "SourceStructureID": 120355, + "TargetStructureID": 3756, + "Label": "120355-3756 via Conventional from 120356 -> 116081", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120356, + "TargetID": 116081, + "Directional": true + }] + }, { + "ID": 20855, + "SourceStructureID": 120359, + "TargetStructureID": 3756, + "Label": "120359-3756 via Conventional from 120360 -> 116083", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120360, + "TargetID": 116083, + "Directional": true + }] + }, { + "ID": 20856, + "SourceStructureID": 120361, + "TargetStructureID": 3756, + "Label": "120361-3756 via Conventional from 120362 -> 116096", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120362, + "TargetID": 116096, + "Directional": true + }] + }, { + "ID": 20857, + "SourceStructureID": 120370, + "TargetStructureID": 3756, + "Label": "120370-3756 via Conventional from 120371 -> 116100", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120371, + "TargetID": 116100, + "Directional": true + }] + }, { + "ID": 20858, + "SourceStructureID": 120372, + "TargetStructureID": 3756, + "Label": "120372-3756 via Conventional from 120373 -> 116109", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120373, + "TargetID": 116109, + "Directional": true + }] + }, { + "ID": 20859, + "SourceStructureID": 120375, + "TargetStructureID": 3756, + "Label": "120375-3756 via Conventional from 120376 -> 116114", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120376, + "TargetID": 116114, + "Directional": true + }] + }, { + "ID": 20860, + "SourceStructureID": 120379, + "TargetStructureID": 3756, + "Label": "120379-3756 via Conventional from 120380 -> 116130, 120384 -> 116139", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120380, + "TargetID": 116130, + "Directional": true + }, { + "SourceID": 120384, + "TargetID": 116139, + "Directional": true + }] + }, { + "ID": 20861, + "SourceStructureID": 120379, + "TargetStructureID": 116142, + "Label": "120379-116142 via Conventional from 120386 -> 120943", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120386, + "TargetID": 120943, + "Directional": true + }] + }, { + "ID": 20862, + "SourceStructureID": 120389, + "TargetStructureID": 3756, + "Label": "120389-3756 via Conventional from 120390 -> 116141", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120390, + "TargetID": 116141, + "Directional": true + }] + }, { + "ID": 20863, + "SourceStructureID": 120393, + "TargetStructureID": 3756, + "Label": "120393-3756 via Conventional from 120394 -> 116148, 129412 -> 129411", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120394, + "TargetID": 116148, + "Directional": true + }, { + "SourceID": 129412, + "TargetID": 129411, + "Directional": true + }] + }, { + "ID": 20864, + "SourceStructureID": 120393, + "TargetStructureID": 6047, + "Label": "120393-6047 via Conventional from 120395 -> 113351", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120395, + "TargetID": 113351, + "Directional": true + }] + }, { + "ID": 20865, + "SourceStructureID": 120396, + "TargetStructureID": 3756, + "Label": "120396-3756 via Conventional from 120397 -> 116152", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120397, + "TargetID": 116152, + "Directional": true + }] + }, { + "ID": 20866, + "SourceStructureID": 120398, + "TargetStructureID": 3756, + "Label": "120398-3756 via Conventional from 120399 -> 116157", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120399, + "TargetID": 116157, + "Directional": true + }] + }, { + "ID": 20867, + "SourceStructureID": 120400, + "TargetStructureID": 3756, + "Label": "120400-3756 via Conventional from 120401 -> 116159", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120401, + "TargetID": 116159, + "Directional": true + }] + }, { + "ID": 20868, + "SourceStructureID": 120403, + "TargetStructureID": 3756, + "Label": "120403-3756 via Conventional from 120404 -> 116161", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120404, + "TargetID": 116161, + "Directional": true + }] + }, { + "ID": 20869, + "SourceStructureID": 120409, + "TargetStructureID": 3756, + "Label": "120409-3756 via Conventional from 120414 -> 116162", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120414, + "TargetID": 116162, + "Directional": true + }] + }, { + "ID": 20870, + "SourceStructureID": 120416, + "TargetStructureID": 3756, + "Label": "120416-3756 via Conventional from 120418 -> 116165, 120558 -> 56909", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120418, + "TargetID": 116165, + "Directional": true + }, { + "SourceID": 120558, + "TargetID": 56909, + "Directional": true + }] + }, { + "ID": 20871, + "SourceStructureID": 120420, + "TargetStructureID": 3756, + "Label": "120420-3756 via Conventional from 120421 -> 116167", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120421, + "TargetID": 116167, + "Directional": true + }] + }, { + "ID": 20872, + "SourceStructureID": 120423, + "TargetStructureID": 3756, + "Label": "120423-3756 via Conventional from 120424 -> 116175", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120424, + "TargetID": 116175, + "Directional": true + }] + }, { + "ID": 20873, + "SourceStructureID": 120425, + "TargetStructureID": 3756, + "Label": "120425-3756 via Conventional from 120426 -> 116176", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120426, + "TargetID": 116176, + "Directional": true + }] + }, { + "ID": 20874, + "SourceStructureID": 120431, + "TargetStructureID": 3756, + "Label": "120431-3756 via Conventional from 120434 -> 116188", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120434, + "TargetID": 116188, + "Directional": true + }] + }, { + "ID": 20875, + "SourceStructureID": 120439, + "TargetStructureID": 3756, + "Label": "120439-3756 via Conventional from 120440 -> 116189", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120440, + "TargetID": 116189, + "Directional": true + }] + }, { + "ID": 20876, + "SourceStructureID": 120445, + "TargetStructureID": 3756, + "Label": "120445-3756 via Conventional from 120446 -> 116205", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120446, + "TargetID": 116205, + "Directional": true + }] + }, { + "ID": 20877, + "SourceStructureID": 120445, + "TargetStructureID": 6050, + "Label": "120445-6050 via Conventional from 120447 -> 113894", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120447, + "TargetID": 113894, + "Directional": true + }] + }, { + "ID": 20878, + "SourceStructureID": 120448, + "TargetStructureID": 3756, + "Label": "120448-3756 via Conventional from 120449 -> 116207", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120449, + "TargetID": 116207, + "Directional": true + }] + }, { + "ID": 20879, + "SourceStructureID": 120448, + "TargetStructureID": 6050, + "Label": "120448-6050 via Conventional from 127247 -> 127246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127247, + "TargetID": 127246, + "Directional": true + }] + }, { + "ID": 20880, + "SourceStructureID": 120452, + "TargetStructureID": 3756, + "Label": "120452-3756 via Conventional from 128971 -> 116215", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128971, + "TargetID": 116215, + "Directional": true + }] + }, { + "ID": 20881, + "SourceStructureID": 120452, + "TargetStructureID": 6050, + "Label": "120452-6050 via Conventional from 120453 -> 51665", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120453, + "TargetID": 51665, + "Directional": true + }] + }, { + "ID": 20882, + "SourceStructureID": 120456, + "TargetStructureID": 3756, + "Label": "120456-3756 via Conventional from 120457 -> 116222", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120457, + "TargetID": 116222, + "Directional": true + }] + }, { + "ID": 20883, + "SourceStructureID": 120458, + "TargetStructureID": 3756, + "Label": "120458-3756 via Conventional from 120459 -> 116227", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120459, + "TargetID": 116227, + "Directional": true + }] + }, { + "ID": 20884, + "SourceStructureID": 120458, + "TargetStructureID": 6050, + "Label": "120458-6050 via Conventional from 120460 -> 114310", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120460, + "TargetID": 114310, + "Directional": true + }] + }, { + "ID": 20885, + "SourceStructureID": 120461, + "TargetStructureID": 3756, + "Label": "120461-3756 via Conventional from 120462 -> 116230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120462, + "TargetID": 116230, + "Directional": true + }] + }, { + "ID": 20886, + "SourceStructureID": 120464, + "TargetStructureID": 3756, + "Label": "120464-3756 via Conventional from 120465 -> 116231", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120465, + "TargetID": 116231, + "Directional": true + }] + }, { + "ID": 20887, + "SourceStructureID": 120466, + "TargetStructureID": 3756, + "Label": "120466-3756 via Conventional from 120467 -> 116232", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120467, + "TargetID": 116232, + "Directional": true + }] + }, { + "ID": 20888, + "SourceStructureID": 120466, + "TargetStructureID": 6050, + "Label": "120466-6050 via Conventional from 127107 -> 127106", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127107, + "TargetID": 127106, + "Directional": true + }] + }, { + "ID": 20889, + "SourceStructureID": 120470, + "TargetStructureID": 3756, + "Label": "120470-3756 via Conventional from 120471 -> 116241", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120471, + "TargetID": 116241, + "Directional": true + }] + }, { + "ID": 20890, + "SourceStructureID": 120472, + "TargetStructureID": 3756, + "Label": "120472-3756 via Conventional from 120473 -> 116250", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120473, + "TargetID": 116250, + "Directional": true + }] + }, { + "ID": 20891, + "SourceStructureID": 120474, + "TargetStructureID": 3756, + "Label": "120474-3756 via Conventional from 120475 -> 116252", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120475, + "TargetID": 116252, + "Directional": true + }] + }, { + "ID": 20892, + "SourceStructureID": 120476, + "TargetStructureID": 3756, + "Label": "120476-3756 via Conventional from 120477 -> 116267", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120477, + "TargetID": 116267, + "Directional": true + }] + }, { + "ID": 20893, + "SourceStructureID": 120478, + "TargetStructureID": 3756, + "Label": "120478-3756 via Conventional from 120479 -> 116268", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120479, + "TargetID": 116268, + "Directional": true + }] + }, { + "ID": 20894, + "SourceStructureID": 120480, + "TargetStructureID": 3756, + "Label": "120480-3756 via Conventional from 120481 -> 116274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120481, + "TargetID": 116274, + "Directional": true + }] + }, { + "ID": 20895, + "SourceStructureID": 120482, + "TargetStructureID": 3756, + "Label": "120482-3756 via Conventional from 120483 -> 116276", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120483, + "TargetID": 116276, + "Directional": true + }] + }, { + "ID": 20896, + "SourceStructureID": 120484, + "TargetStructureID": 3756, + "Label": "120484-3756 via Conventional from 120485 -> 116282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120485, + "TargetID": 116282, + "Directional": true + }] + }, { + "ID": 20897, + "SourceStructureID": 120489, + "TargetStructureID": 3756, + "Label": "120489-3756 via Conventional from 120490 -> 116285", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120490, + "TargetID": 116285, + "Directional": true + }] + }, { + "ID": 20898, + "SourceStructureID": 120489, + "TargetStructureID": 24174, + "Label": "120489-24174 via Conventional from 129115 -> 129116, 129115 -> 129118", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129115, + "TargetID": 129116, + "Directional": true + }, { + "SourceID": 129115, + "TargetID": 129118, + "Directional": true + }] + }, { + "ID": 20899, + "SourceStructureID": 120489, + "TargetStructureID": 120497, + "Label": "120489-120497 via Conventional from 129121 -> 129122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129121, + "TargetID": 129122, + "Directional": true + }] + }, { + "ID": 20900, + "SourceStructureID": 120494, + "TargetStructureID": 3756, + "Label": "120494-3756 via Conventional from 120496 -> 116288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120496, + "TargetID": 116288, + "Directional": true + }] + }, { + "ID": 20901, + "SourceStructureID": 120494, + "TargetStructureID": 5598, + "Label": "120494-5598 via Conventional from 120495 -> 114607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120495, + "TargetID": 114607, + "Directional": true + }] + }, { + "ID": 20902, + "SourceStructureID": 120497, + "TargetStructureID": 3756, + "Label": "120497-3756 via Conventional from 120498 -> 116291", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120498, + "TargetID": 116291, + "Directional": true + }] + }, { + "ID": 20903, + "SourceStructureID": 120499, + "TargetStructureID": 3756, + "Label": "120499-3756 via Conventional from 120504 -> 116295", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120504, + "TargetID": 116295, + "Directional": true + }] + }, { + "ID": 20904, + "SourceStructureID": 120499, + "TargetStructureID": 120523, + "Label": "120499-120523 via Conventional from 129163 -> 129164", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129163, + "TargetID": 129164, + "Directional": true + }] + }, { + "ID": 20905, + "SourceStructureID": 120507, + "TargetStructureID": 3756, + "Label": "120507-3756 via Conventional from 120508 -> 116301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120508, + "TargetID": 116301, + "Directional": true + }] + }, { + "ID": 20906, + "SourceStructureID": 120509, + "TargetStructureID": 3756, + "Label": "120509-3756 via Conventional from 120512 -> 119334", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120512, + "TargetID": 119334, + "Directional": true + }] + }, { + "ID": 20907, + "SourceStructureID": 120513, + "TargetStructureID": 3756, + "Label": "120513-3756 via Conventional from 120515 -> 119337, 129241 -> 129240", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120515, + "TargetID": 119337, + "Directional": true + }, { + "SourceID": 129241, + "TargetID": 129240, + "Directional": true + }] + }, { + "ID": 20908, + "SourceStructureID": 120518, + "TargetStructureID": 3756, + "Label": "120518-3756 via Conventional from 120519 -> 119339, 129236 -> 129235", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120519, + "TargetID": 119339, + "Directional": true + }, { + "SourceID": 129236, + "TargetID": 129235, + "Directional": true + }] + }, { + "ID": 20909, + "SourceStructureID": 120521, + "TargetStructureID": 3756, + "Label": "120521-3756 via Conventional from 120522 -> 120295", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120522, + "TargetID": 120295, + "Directional": true + }] + }, { + "ID": 20910, + "SourceStructureID": 120523, + "TargetStructureID": 3756, + "Label": "120523-3756 via Conventional from 120524 -> 35856", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120524, + "TargetID": 35856, + "Directional": true + }] + }, { + "ID": 20911, + "SourceStructureID": 120534, + "TargetStructureID": 3756, + "Label": "120534-3756 via Conventional from 120535 -> 37804", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120535, + "TargetID": 37804, + "Directional": true + }] + }, { + "ID": 20912, + "SourceStructureID": 120538, + "TargetStructureID": 3756, + "Label": "120538-3756 via Conventional from 120541 -> 54432", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120541, + "TargetID": 54432, + "Directional": true + }] + }, { + "ID": 20913, + "SourceStructureID": 120542, + "TargetStructureID": 3756, + "Label": "120542-3756 via Conventional from 120543 -> 54433", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120543, + "TargetID": 54433, + "Directional": true + }] + }, { + "ID": 20914, + "SourceStructureID": 120544, + "TargetStructureID": 3756, + "Label": "120544-3756 via Conventional from 120545 -> 54435", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120545, + "TargetID": 54435, + "Directional": true + }] + }, { + "ID": 20915, + "SourceStructureID": 120546, + "TargetStructureID": 3756, + "Label": "120546-3756 via Conventional from 120547 -> 54436", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120547, + "TargetID": 54436, + "Directional": true + }] + }, { + "ID": 20916, + "SourceStructureID": 120548, + "TargetStructureID": 3756, + "Label": "120548-3756 via Conventional from 120549 -> 54447", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120549, + "TargetID": 54447, + "Directional": true + }] + }, { + "ID": 20917, + "SourceStructureID": 120552, + "TargetStructureID": 3756, + "Label": "120552-3756 via Conventional from 120553 -> 56889", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120553, + "TargetID": 56889, + "Directional": true + }] + }, { + "ID": 20918, + "SourceStructureID": 120552, + "TargetStructureID": 6050, + "Label": "120552-6050 via Conventional from 127434 -> 113930", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127434, + "TargetID": 113930, + "Directional": true + }] + }, { + "ID": 20919, + "SourceStructureID": 120554, + "TargetStructureID": 3756, + "Label": "120554-3756 via Conventional from 120555 -> 56900", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120555, + "TargetID": 56900, + "Directional": true + }] + }, { + "ID": 20920, + "SourceStructureID": 120556, + "TargetStructureID": 3756, + "Label": "120556-3756 via Conventional from 120557 -> 56903, 129372 -> 129371", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120557, + "TargetID": 56903, + "Directional": true + }, { + "SourceID": 129372, + "TargetID": 129371, + "Directional": true + }] + }, { + "ID": 20921, + "SourceStructureID": 120559, + "TargetStructureID": 3756, + "Label": "120559-3756 via Conventional from 120560 -> 56911", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120560, + "TargetID": 56911, + "Directional": true + }] + }, { + "ID": 20922, + "SourceStructureID": 120561, + "TargetStructureID": 3756, + "Label": "120561-3756 via Conventional from 120562 -> 56916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120562, + "TargetID": 56916, + "Directional": true + }] + }, { + "ID": 20923, + "SourceStructureID": 120563, + "TargetStructureID": 3756, + "Label": "120563-3756 via Conventional from 120564 -> 56917", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120564, + "TargetID": 56917, + "Directional": true + }] + }, { + "ID": 20924, + "SourceStructureID": 120565, + "TargetStructureID": 3756, + "Label": "120565-3756 via Conventional from 120566 -> 98367", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120566, + "TargetID": 98367, + "Directional": true + }] + }, { + "ID": 20925, + "SourceStructureID": 120630, + "TargetStructureID": 5531, + "Label": "120630-5531 via Conventional from 120631 -> 113844", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120631, + "TargetID": 113844, + "Directional": true + }] + }, { + "ID": 20926, + "SourceStructureID": 120632, + "TargetStructureID": 5531, + "Label": "120632-5531 via Conventional from 120633 -> 113852", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120633, + "TargetID": 113852, + "Directional": true + }] + }, { + "ID": 20927, + "SourceStructureID": 120634, + "TargetStructureID": 5531, + "Label": "120634-5531 via Conventional from 120635 -> 113854", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120635, + "TargetID": 113854, + "Directional": true + }] + }, { + "ID": 20928, + "SourceStructureID": 120639, + "TargetStructureID": 5531, + "Label": "120639-5531 via Conventional from 120640 -> 45216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120640, + "TargetID": 45216, + "Directional": true + }] + }, { + "ID": 20929, + "SourceStructureID": 120674, + "TargetStructureID": 5531, + "Label": "120674-5531 via Conventional from 120675 -> 54589", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120675, + "TargetID": 54589, + "Directional": true + }] + }, { + "ID": 20930, + "SourceStructureID": 120777, + "TargetStructureID": 5278, + "Label": "120777-5278 via Conventional from 120778 -> 114167", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120778, + "TargetID": 114167, + "Directional": true + }] + }, { + "ID": 20931, + "SourceStructureID": 120779, + "TargetStructureID": 5278, + "Label": "120779-5278 via Conventional from 120780 -> 114170", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120780, + "TargetID": 114170, + "Directional": true + }] + }, { + "ID": 20932, + "SourceStructureID": 120783, + "TargetStructureID": 5278, + "Label": "120783-5278 via Conventional from 120887 -> 114183, 120927 -> 92305", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120887, + "TargetID": 114183, + "Directional": true + }, { + "SourceID": 120927, + "TargetID": 92305, + "Directional": true + }] + }, { + "ID": 20933, + "SourceStructureID": 120885, + "TargetStructureID": 5278, + "Label": "120885-5278 via Conventional from 120886 -> 114184", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120886, + "TargetID": 114184, + "Directional": true + }] + }, { + "ID": 20934, + "SourceStructureID": 120888, + "TargetStructureID": 5278, + "Label": "120888-5278 via Conventional from 120889 -> 114192", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120889, + "TargetID": 114192, + "Directional": true + }] + }, { + "ID": 20935, + "SourceStructureID": 120890, + "TargetStructureID": 5278, + "Label": "120890-5278 via Conventional from 120891 -> 114200", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120891, + "TargetID": 114200, + "Directional": true + }] + }, { + "ID": 20936, + "SourceStructureID": 120892, + "TargetStructureID": 5278, + "Label": "120892-5278 via Conventional from 120893 -> 114514", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120893, + "TargetID": 114514, + "Directional": true + }] + }, { + "ID": 20937, + "SourceStructureID": 120894, + "TargetStructureID": 5278, + "Label": "120894-5278 via Conventional from 120895 -> 114515", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120895, + "TargetID": 114515, + "Directional": true + }] + }, { + "ID": 20938, + "SourceStructureID": 120896, + "TargetStructureID": 5278, + "Label": "120896-5278 via Conventional from 120897 -> 114519", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120897, + "TargetID": 114519, + "Directional": true + }] + }, { + "ID": 20939, + "SourceStructureID": 120898, + "TargetStructureID": 5278, + "Label": "120898-5278 via Conventional from 120900 -> 114522", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120900, + "TargetID": 114522, + "Directional": true + }] + }, { + "ID": 20940, + "SourceStructureID": 120901, + "TargetStructureID": 5278, + "Label": "120901-5278 via Conventional from 120902 -> 114523", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120902, + "TargetID": 114523, + "Directional": true + }] + }, { + "ID": 20941, + "SourceStructureID": 120903, + "TargetStructureID": 5278, + "Label": "120903-5278 via Conventional from 120904 -> 114528", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120904, + "TargetID": 114528, + "Directional": true + }] + }, { + "ID": 20942, + "SourceStructureID": 120906, + "TargetStructureID": 5278, + "Label": "120906-5278 via Conventional from 120907 -> 50286, 120908 -> 50286", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120907, + "TargetID": 50286, + "Directional": true + }, { + "SourceID": 120908, + "TargetID": 50286, + "Directional": true + }] + }, { + "ID": 20943, + "SourceStructureID": 120909, + "TargetStructureID": 5278, + "Label": "120909-5278 via Conventional from 120910 -> 50288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120910, + "TargetID": 50288, + "Directional": true + }] + }, { + "ID": 20944, + "SourceStructureID": 120911, + "TargetStructureID": 5278, + "Label": "120911-5278 via Conventional from 120912 -> 50289, 120912 -> 92397", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120912, + "TargetID": 50289, + "Directional": true + }, { + "SourceID": 120912, + "TargetID": 92397, + "Directional": true + }] + }, { + "ID": 20945, + "SourceStructureID": 120913, + "TargetStructureID": 5278, + "Label": "120913-5278 via Conventional from 120914 -> 50290", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120914, + "TargetID": 50290, + "Directional": true + }] + }, { + "ID": 20946, + "SourceStructureID": 120915, + "TargetStructureID": 5278, + "Label": "120915-5278 via Conventional from 120916 -> 50291", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120916, + "TargetID": 50291, + "Directional": true + }] + }, { + "ID": 20947, + "SourceStructureID": 120917, + "TargetStructureID": 5278, + "Label": "120917-5278 via Conventional from 120919 -> 53692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120919, + "TargetID": 53692, + "Directional": true + }] + }, { + "ID": 20948, + "SourceStructureID": 120920, + "TargetStructureID": 5278, + "Label": "120920-5278 via Conventional from 120921 -> 92020", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120921, + "TargetID": 92020, + "Directional": true + }] + }, { + "ID": 20949, + "SourceStructureID": 120923, + "TargetStructureID": 5278, + "Label": "120923-5278 via Conventional from 120924 -> 92298", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120924, + "TargetID": 92298, + "Directional": true + }] + }, { + "ID": 20950, + "SourceStructureID": 120925, + "TargetStructureID": 5278, + "Label": "120925-5278 via Conventional from 120926 -> 92299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 120926, + "TargetID": 92299, + "Directional": true + }] + }, { + "ID": 20951, + "SourceStructureID": 121009, + "TargetStructureID": 906, + "Label": "121009-906 via Conventional from 121010 -> 121008", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121010, + "TargetID": 121008, + "Directional": true + }] + }, { + "ID": 20952, + "SourceStructureID": 121082, + "TargetStructureID": 6050, + "Label": "121082-6050 via Conventional from 121084 -> 98388", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121084, + "TargetID": 98388, + "Directional": true + }] + }, { + "ID": 20953, + "SourceStructureID": 121111, + "TargetStructureID": 5297, + "Label": "121111-5297 via Conventional from 121112 -> 103212", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121112, + "TargetID": 103212, + "Directional": true + }] + }, { + "ID": 20954, + "SourceStructureID": 121113, + "TargetStructureID": 5297, + "Label": "121113-5297 via Conventional from 121114 -> 103213", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121114, + "TargetID": 103213, + "Directional": true + }] + }, { + "ID": 20955, + "SourceStructureID": 121117, + "TargetStructureID": 5297, + "Label": "121117-5297 via Conventional from 121118 -> 113611", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121118, + "TargetID": 113611, + "Directional": true + }] + }, { + "ID": 20956, + "SourceStructureID": 121121, + "TargetStructureID": 5297, + "Label": "121121-5297 via Conventional from 121122 -> 116321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121122, + "TargetID": 116321, + "Directional": true + }] + }, { + "ID": 20957, + "SourceStructureID": 121123, + "TargetStructureID": 5297, + "Label": "121123-5297 via Conventional from 121125 -> 116322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121125, + "TargetID": 116322, + "Directional": true + }] + }, { + "ID": 20958, + "SourceStructureID": 121265, + "TargetStructureID": 121265, + "Label": "121265-121265 via Ribbon Synapse from 121267 -> 121268", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121267, + "TargetID": 121268, + "Directional": true + }] + }, { + "ID": 20959, + "SourceStructureID": 121282, + "TargetStructureID": 5284, + "Label": "121282-5284 via Conventional from 121284 -> 113421", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121284, + "TargetID": 113421, + "Directional": true + }] + }, { + "ID": 20960, + "SourceStructureID": 121286, + "TargetStructureID": 5297, + "Label": "121286-5297 via Conventional from 121287 -> 116335", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121287, + "TargetID": 116335, + "Directional": true + }] + }, { + "ID": 20961, + "SourceStructureID": 121288, + "TargetStructureID": 5297, + "Label": "121288-5297 via Conventional from 121289 -> 116344", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121289, + "TargetID": 116344, + "Directional": true + }] + }, { + "ID": 20962, + "SourceStructureID": 121288, + "TargetStructureID": 5405, + "Label": "121288-5405 via Conventional from 121291 -> 11185", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121291, + "TargetID": 11185, + "Directional": true + }] + }, { + "ID": 20963, + "SourceStructureID": 121292, + "TargetStructureID": 5297, + "Label": "121292-5297 via Conventional from 121293 -> 116345", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121293, + "TargetID": 116345, + "Directional": true + }] + }, { + "ID": 20964, + "SourceStructureID": 121294, + "TargetStructureID": 5297, + "Label": "121294-5297 via Conventional from 121295 -> 116349", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121295, + "TargetID": 116349, + "Directional": true + }] + }, { + "ID": 20965, + "SourceStructureID": 121303, + "TargetStructureID": 5297, + "Label": "121303-5297 via Conventional from 121304 -> 116350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121304, + "TargetID": 116350, + "Directional": true + }] + }, { + "ID": 20966, + "SourceStructureID": 121305, + "TargetStructureID": 5283, + "Label": "121305-5283 via Conventional from 123765 -> 22383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123765, + "TargetID": 22383, + "Directional": true + }] + }, { + "ID": 20967, + "SourceStructureID": 121305, + "TargetStructureID": 5297, + "Label": "121305-5297 via Conventional from 121306 -> 116357", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121306, + "TargetID": 116357, + "Directional": true + }] + }, { + "ID": 20968, + "SourceStructureID": 121307, + "TargetStructureID": 5297, + "Label": "121307-5297 via Conventional from 121308 -> 116359", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121308, + "TargetID": 116359, + "Directional": true + }] + }, { + "ID": 20969, + "SourceStructureID": 121309, + "TargetStructureID": 5297, + "Label": "121309-5297 via Conventional from 121310 -> 116419", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121310, + "TargetID": 116419, + "Directional": true + }] + }, { + "ID": 20970, + "SourceStructureID": 121313, + "TargetStructureID": 5297, + "Label": "121313-5297 via Conventional from 121314 -> 116421", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121314, + "TargetID": 116421, + "Directional": true + }] + }, { + "ID": 20971, + "SourceStructureID": 121315, + "TargetStructureID": 5297, + "Label": "121315-5297 via Conventional from 121319 -> 116426", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121319, + "TargetID": 116426, + "Directional": true + }] + }, { + "ID": 20972, + "SourceStructureID": 121321, + "TargetStructureID": 5297, + "Label": "121321-5297 via Conventional from 121322 -> 116428", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121322, + "TargetID": 116428, + "Directional": true + }] + }, { + "ID": 20973, + "SourceStructureID": 121323, + "TargetStructureID": 5297, + "Label": "121323-5297 via Conventional from 121324 -> 116438", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121324, + "TargetID": 116438, + "Directional": true + }] + }, { + "ID": 20974, + "SourceStructureID": 121325, + "TargetStructureID": 5297, + "Label": "121325-5297 via Conventional from 121326 -> 116440", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121326, + "TargetID": 116440, + "Directional": true + }] + }, { + "ID": 20975, + "SourceStructureID": 121331, + "TargetStructureID": 5297, + "Label": "121331-5297 via Conventional from 121332 -> 116442", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121332, + "TargetID": 116442, + "Directional": true + }] + }, { + "ID": 20976, + "SourceStructureID": 121336, + "TargetStructureID": 5297, + "Label": "121336-5297 via Conventional from 121338 -> 116449", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121338, + "TargetID": 116449, + "Directional": true + }] + }, { + "ID": 20977, + "SourceStructureID": 121339, + "TargetStructureID": 5297, + "Label": "121339-5297 via Conventional from 121340 -> 116468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121340, + "TargetID": 116468, + "Directional": true + }] + }, { + "ID": 20978, + "SourceStructureID": 121343, + "TargetStructureID": 5297, + "Label": "121343-5297 via Conventional from 121344 -> 116469", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121344, + "TargetID": 116469, + "Directional": true + }] + }, { + "ID": 20979, + "SourceStructureID": 121345, + "TargetStructureID": 5297, + "Label": "121345-5297 via Conventional from 121346 -> 116471", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121346, + "TargetID": 116471, + "Directional": true + }] + }, { + "ID": 20980, + "SourceStructureID": 121348, + "TargetStructureID": 5297, + "Label": "121348-5297 via Conventional from 121352 -> 116482", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121352, + "TargetID": 116482, + "Directional": true + }] + }, { + "ID": 20981, + "SourceStructureID": 121353, + "TargetStructureID": 5297, + "Label": "121353-5297 via Conventional from 121354 -> 116484", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121354, + "TargetID": 116484, + "Directional": true + }] + }, { + "ID": 20982, + "SourceStructureID": 121356, + "TargetStructureID": 5297, + "Label": "121356-5297 via Conventional from 121357 -> 116500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121357, + "TargetID": 116500, + "Directional": true + }] + }, { + "ID": 20983, + "SourceStructureID": 121362, + "TargetStructureID": 5297, + "Label": "121362-5297 via Conventional from 121364 -> 116516", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121364, + "TargetID": 116516, + "Directional": true + }] + }, { + "ID": 20984, + "SourceStructureID": 121362, + "TargetStructureID": 6050, + "Label": "121362-6050 via Conventional from 121363 -> 114244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121363, + "TargetID": 114244, + "Directional": true + }] + }, { + "ID": 20985, + "SourceStructureID": 121365, + "TargetStructureID": 5297, + "Label": "121365-5297 via Conventional from 121366 -> 116596", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121366, + "TargetID": 116596, + "Directional": true + }] + }, { + "ID": 20986, + "SourceStructureID": 121367, + "TargetStructureID": 5297, + "Label": "121367-5297 via Conventional from 121368 -> 116606", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121368, + "TargetID": 116606, + "Directional": true + }] + }, { + "ID": 20987, + "SourceStructureID": 121369, + "TargetStructureID": 142, + "Label": "121369-142 via Conventional from 121370 -> 30719", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121370, + "TargetID": 30719, + "Directional": true + }] + }, { + "ID": 20988, + "SourceStructureID": 121369, + "TargetStructureID": 5297, + "Label": "121369-5297 via Conventional from 121371 -> 116607", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121371, + "TargetID": 116607, + "Directional": true + }] + }, { + "ID": 20989, + "SourceStructureID": 121372, + "TargetStructureID": 5297, + "Label": "121372-5297 via Conventional from 121373 -> 116609", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121373, + "TargetID": 116609, + "Directional": true + }] + }, { + "ID": 20990, + "SourceStructureID": 121375, + "TargetStructureID": 5297, + "Label": "121375-5297 via Conventional from 121377 -> 116611", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121377, + "TargetID": 116611, + "Directional": true + }] + }, { + "ID": 20991, + "SourceStructureID": 121380, + "TargetStructureID": 5297, + "Label": "121380-5297 via Conventional from 121381 -> 116640", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121381, + "TargetID": 116640, + "Directional": true + }] + }, { + "ID": 20992, + "SourceStructureID": 121382, + "TargetStructureID": 5297, + "Label": "121382-5297 via Conventional from 121384 -> 116642", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121384, + "TargetID": 116642, + "Directional": true + }] + }, { + "ID": 20993, + "SourceStructureID": 121387, + "TargetStructureID": 5297, + "Label": "121387-5297 via Conventional from 121390 -> 116655", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121390, + "TargetID": 116655, + "Directional": true + }] + }, { + "ID": 20994, + "SourceStructureID": 121394, + "TargetStructureID": 5297, + "Label": "121394-5297 via Conventional from 121396 -> 116666, 121410 -> 116695", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121396, + "TargetID": 116666, + "Directional": true + }, { + "SourceID": 121410, + "TargetID": 116695, + "Directional": true + }] + }, { + "ID": 20995, + "SourceStructureID": 121397, + "TargetStructureID": 5297, + "Label": "121397-5297 via Conventional from 121400 -> 116669", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121400, + "TargetID": 116669, + "Directional": true + }] + }, { + "ID": 20996, + "SourceStructureID": 121404, + "TargetStructureID": 5297, + "Label": "121404-5297 via Conventional from 121406 -> 116674", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121406, + "TargetID": 116674, + "Directional": true + }] + }, { + "ID": 20997, + "SourceStructureID": 121407, + "TargetStructureID": 5297, + "Label": "121407-5297 via Conventional from 121408 -> 116694", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121408, + "TargetID": 116694, + "Directional": true + }] + }, { + "ID": 20998, + "SourceStructureID": 121411, + "TargetStructureID": 5297, + "Label": "121411-5297 via Conventional from 121412 -> 37622", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121412, + "TargetID": 37622, + "Directional": true + }] + }, { + "ID": 20999, + "SourceStructureID": 121413, + "TargetStructureID": 5297, + "Label": "121413-5297 via Conventional from 121414 -> 37623", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121414, + "TargetID": 37623, + "Directional": true + }] + }, { + "ID": 21000, + "SourceStructureID": 121415, + "TargetStructureID": 5297, + "Label": "121415-5297 via Conventional from 121418 -> 37666", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121418, + "TargetID": 37666, + "Directional": true + }] + }, { + "ID": 21001, + "SourceStructureID": 121420, + "TargetStructureID": 5297, + "Label": "121420-5297 via Conventional from 121421 -> 39414", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121421, + "TargetID": 39414, + "Directional": true + }] + }, { + "ID": 21002, + "SourceStructureID": 121422, + "TargetStructureID": 5292, + "Label": "121422-5292 via Conventional from 121424 -> 54394", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121424, + "TargetID": 54394, + "Directional": true + }] + }, { + "ID": 21003, + "SourceStructureID": 121422, + "TargetStructureID": 5297, + "Label": "121422-5297 via Conventional from 121423 -> 39418", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121423, + "TargetID": 39418, + "Directional": true + }] + }, { + "ID": 21004, + "SourceStructureID": 121432, + "TargetStructureID": 5297, + "Label": "121432-5297 via Conventional from 121435 -> 39434", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121435, + "TargetID": 39434, + "Directional": true + }] + }, { + "ID": 21005, + "SourceStructureID": 121437, + "TargetStructureID": 5297, + "Label": "121437-5297 via Conventional from 121439 -> 40174", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121439, + "TargetID": 40174, + "Directional": true + }] + }, { + "ID": 21006, + "SourceStructureID": 121444, + "TargetStructureID": 5297, + "Label": "121444-5297 via Conventional from 121446 -> 42720", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121446, + "TargetID": 42720, + "Directional": true + }] + }, { + "ID": 21007, + "SourceStructureID": 121448, + "TargetStructureID": 5297, + "Label": "121448-5297 via Conventional from 121451 -> 42722", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121451, + "TargetID": 42722, + "Directional": true + }] + }, { + "ID": 21008, + "SourceStructureID": 121452, + "TargetStructureID": 5297, + "Label": "121452-5297 via Conventional from 121453 -> 50321", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121453, + "TargetID": 50321, + "Directional": true + }] + }, { + "ID": 21009, + "SourceStructureID": 121454, + "TargetStructureID": 5297, + "Label": "121454-5297 via Conventional from 121456 -> 50322", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121456, + "TargetID": 50322, + "Directional": true + }] + }, { + "ID": 21010, + "SourceStructureID": 121457, + "TargetStructureID": 5297, + "Label": "121457-5297 via Conventional from 121458 -> 50323", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121458, + "TargetID": 50323, + "Directional": true + }] + }, { + "ID": 21011, + "SourceStructureID": 121459, + "TargetStructureID": 5297, + "Label": "121459-5297 via Conventional from 121460 -> 53700", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121460, + "TargetID": 53700, + "Directional": true + }] + }, { + "ID": 21012, + "SourceStructureID": 121461, + "TargetStructureID": 5297, + "Label": "121461-5297 via Conventional from 121462 -> 53701", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121462, + "TargetID": 53701, + "Directional": true + }] + }, { + "ID": 21013, + "SourceStructureID": 121463, + "TargetStructureID": 5297, + "Label": "121463-5297 via Conventional from 121464 -> 56808", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121464, + "TargetID": 56808, + "Directional": true + }] + }, { + "ID": 21014, + "SourceStructureID": 121465, + "TargetStructureID": 5297, + "Label": "121465-5297 via Conventional from 121466 -> 56809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121466, + "TargetID": 56809, + "Directional": true + }] + }, { + "ID": 21015, + "SourceStructureID": 121467, + "TargetStructureID": 5297, + "Label": "121467-5297 via Conventional from 121468 -> 56811", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121468, + "TargetID": 56811, + "Directional": true + }] + }, { + "ID": 21016, + "SourceStructureID": 121470, + "TargetStructureID": 5297, + "Label": "121470-5297 via Conventional from 121471 -> 92303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121471, + "TargetID": 92303, + "Directional": true + }] + }, { + "ID": 21017, + "SourceStructureID": 121472, + "TargetStructureID": 5297, + "Label": "121472-5297 via Conventional from 121476 -> 93239", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121476, + "TargetID": 93239, + "Directional": true + }] + }, { + "ID": 21018, + "SourceStructureID": 121477, + "TargetStructureID": 5297, + "Label": "121477-5297 via Conventional from 121483 -> 93240", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121483, + "TargetID": 93240, + "Directional": true + }] + }, { + "ID": 21019, + "SourceStructureID": 121484, + "TargetStructureID": 5297, + "Label": "121484-5297 via Conventional from 121485 -> 93244", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121485, + "TargetID": 93244, + "Directional": true + }] + }, { + "ID": 21020, + "SourceStructureID": 121486, + "TargetStructureID": 5297, + "Label": "121486-5297 via Conventional from 121487 -> 93245, 121535 -> 98344", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121487, + "TargetID": 93245, + "Directional": true + }, { + "SourceID": 121535, + "TargetID": 98344, + "Directional": true + }] + }, { + "ID": 21021, + "SourceStructureID": 121488, + "TargetStructureID": 5297, + "Label": "121488-5297 via Conventional from 121489 -> 93254", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121489, + "TargetID": 93254, + "Directional": true + }] + }, { + "ID": 21022, + "SourceStructureID": 121490, + "TargetStructureID": 5297, + "Label": "121490-5297 via Conventional from 121492 -> 98255, 121503 -> 98282", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121492, + "TargetID": 98255, + "Directional": true + }, { + "SourceID": 121503, + "TargetID": 98282, + "Directional": true + }] + }, { + "ID": 21023, + "SourceStructureID": 121499, + "TargetStructureID": 5297, + "Label": "121499-5297 via Conventional from 121500 -> 98274", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121500, + "TargetID": 98274, + "Directional": true + }] + }, { + "ID": 21024, + "SourceStructureID": 121501, + "TargetStructureID": 5297, + "Label": "121501-5297 via Conventional from 121502 -> 98275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121502, + "TargetID": 98275, + "Directional": true + }] + }, { + "ID": 21025, + "SourceStructureID": 121511, + "TargetStructureID": 5297, + "Label": "121511-5297 via Conventional from 121514 -> 98294, 121515 -> 98294", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121514, + "TargetID": 98294, + "Directional": true + }, { + "SourceID": 121515, + "TargetID": 98294, + "Directional": true + }] + }, { + "ID": 21026, + "SourceStructureID": 121516, + "TargetStructureID": 5297, + "Label": "121516-5297 via Conventional from 121518 -> 98296", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121518, + "TargetID": 98296, + "Directional": true + }] + }, { + "ID": 21027, + "SourceStructureID": 121519, + "TargetStructureID": 5297, + "Label": "121519-5297 via Conventional from 121521 -> 98299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121521, + "TargetID": 98299, + "Directional": true + }] + }, { + "ID": 21028, + "SourceStructureID": 121522, + "TargetStructureID": 5297, + "Label": "121522-5297 via Conventional from 121523 -> 98301", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121523, + "TargetID": 98301, + "Directional": true + }] + }, { + "ID": 21029, + "SourceStructureID": 121524, + "TargetStructureID": 5297, + "Label": "121524-5297 via Conventional from 121525 -> 98313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121525, + "TargetID": 98313, + "Directional": true + }] + }, { + "ID": 21030, + "SourceStructureID": 121526, + "TargetStructureID": 5297, + "Label": "121526-5297 via Conventional from 121527 -> 98332", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121527, + "TargetID": 98332, + "Directional": true + }] + }, { + "ID": 21031, + "SourceStructureID": 121530, + "TargetStructureID": 5297, + "Label": "121530-5297 via Conventional from 121531 -> 98342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121531, + "TargetID": 98342, + "Directional": true + }] + }, { + "ID": 21032, + "SourceStructureID": 121536, + "TargetStructureID": 5297, + "Label": "121536-5297 via Conventional from 121537 -> 98472", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121537, + "TargetID": 98472, + "Directional": true + }] + }, { + "ID": 21033, + "SourceStructureID": 121663, + "TargetStructureID": 598, + "Label": "121663-598 via Ribbon Synapse from 121665 -> 38790", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 121665, + "TargetID": 38790, + "Directional": true + }] + }, { + "ID": 21034, + "SourceStructureID": 121946, + "TargetStructureID": 121948, + "Label": "121946-121948 via Conventional from 121947 -> 121949", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121947, + "TargetID": 121949, + "Directional": true + }] + }, { + "ID": 21035, + "SourceStructureID": 121952, + "TargetStructureID": 75130, + "Label": "121952-75130 via Conventional from 121953 -> 121951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121953, + "TargetID": 121951, + "Directional": true + }] + }, { + "ID": 21036, + "SourceStructureID": 121955, + "TargetStructureID": 75130, + "Label": "121955-75130 via Conventional from 121956 -> 121954", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121956, + "TargetID": 121954, + "Directional": true + }] + }, { + "ID": 21037, + "SourceStructureID": 121958, + "TargetStructureID": 75130, + "Label": "121958-75130 via Conventional from 121959 -> 121957", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121959, + "TargetID": 121957, + "Directional": true + }] + }, { + "ID": 21038, + "SourceStructureID": 121961, + "TargetStructureID": 75130, + "Label": "121961-75130 via Conventional from 121962 -> 121960", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121962, + "TargetID": 121960, + "Directional": true + }] + }, { + "ID": 21039, + "SourceStructureID": 121967, + "TargetStructureID": 75130, + "Label": "121967-75130 via Conventional from 121968 -> 121966", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121968, + "TargetID": 121966, + "Directional": true + }] + }, { + "ID": 21040, + "SourceStructureID": 121975, + "TargetStructureID": 35164, + "Label": "121975-35164 via Conventional from 121976 -> 45636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 121976, + "TargetID": 45636, + "Directional": true + }] + }, { + "ID": 21041, + "SourceStructureID": 122073, + "TargetStructureID": 13525, + "Label": "122073-13525 via Conventional from 122074 -> 122075", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122074, + "TargetID": 122075, + "Directional": true + }] + }, { + "ID": 21042, + "SourceStructureID": 122081, + "TargetStructureID": 43205, + "Label": "122081-43205 via Ribbon Synapse from 122082 -> 122080", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122082, + "TargetID": 122080, + "Directional": true + }] + }, { + "ID": 21043, + "SourceStructureID": 122091, + "TargetStructureID": 42966, + "Label": "122091-42966 via Ribbon Synapse from 122100 -> 122099", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122100, + "TargetID": 122099, + "Directional": true + }] + }, { + "ID": 21044, + "SourceStructureID": 122091, + "TargetStructureID": 42971, + "Label": "122091-42971 via Ribbon Synapse from 122092 -> 122090", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122092, + "TargetID": 122090, + "Directional": true + }] + }, { + "ID": 21045, + "SourceStructureID": 122104, + "TargetStructureID": 13159, + "Label": "122104-13159 via Ribbon Synapse from 122105 -> 20788", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122105, + "TargetID": 20788, + "Directional": true + }] + }, { + "ID": 21046, + "SourceStructureID": 122207, + "TargetStructureID": 7134, + "Label": "122207-7134 via Ribbon Synapse from 122208 -> 122209", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122208, + "TargetID": 122209, + "Directional": true + }] + }, { + "ID": 21047, + "SourceStructureID": 122242, + "TargetStructureID": 7134, + "Label": "122242-7134 via Ribbon Synapse from 122243 -> 122241", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122243, + "TargetID": 122241, + "Directional": true + }] + }, { + "ID": 21048, + "SourceStructureID": 122459, + "TargetStructureID": 3257, + "Label": "122459-3257 via Conventional from 122462 -> 8238", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122462, + "TargetID": 8238, + "Directional": true + }] + }, { + "ID": 21049, + "SourceStructureID": 122459, + "TargetStructureID": 4570, + "Label": "122459-4570 via Conventional from 122460 -> 10671", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122460, + "TargetID": 10671, + "Directional": true + }] + }, { + "ID": 21050, + "SourceStructureID": 122463, + "TargetStructureID": 906, + "Label": "122463-906 via Ribbon Synapse from 122464 -> 24115", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122464, + "TargetID": 24115, + "Directional": true + }] + }, { + "ID": 21051, + "SourceStructureID": 122469, + "TargetStructureID": 4850, + "Label": "122469-4850 via Conventional from 122473 -> 14538", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122473, + "TargetID": 14538, + "Directional": true + }] + }, { + "ID": 21052, + "SourceStructureID": 122488, + "TargetStructureID": 18693, + "Label": "122488-18693 via Ribbon Synapse from 122491 -> 18823", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122491, + "TargetID": 18823, + "Directional": true + }] + }, { + "ID": 21053, + "SourceStructureID": 122705, + "TargetStructureID": 179, + "Label": "122705-179 via Conventional from 122706 -> 103809", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122706, + "TargetID": 103809, + "Directional": true + }] + }, { + "ID": 21054, + "SourceStructureID": 122707, + "TargetStructureID": 179, + "Label": "122707-179 via Conventional from 122708 -> 103810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122708, + "TargetID": 103810, + "Directional": true + }] + }, { + "ID": 21055, + "SourceStructureID": 122707, + "TargetStructureID": 122711, + "Label": "122707-122711 via Conventional from 122709 -> 122713", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122709, + "TargetID": 122713, + "Directional": true + }] + }, { + "ID": 21056, + "SourceStructureID": 122707, + "TargetStructureID": 122716, + "Label": "122707-122716 via Conventional from 122719 -> 122720", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122719, + "TargetID": 122720, + "Directional": true + }] + }, { + "ID": 21057, + "SourceStructureID": 122711, + "TargetStructureID": 122707, + "Label": "122711-122707 via Ribbon Synapse from 122712 -> 122710", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122712, + "TargetID": 122710, + "Directional": true + }] + }, { + "ID": 21058, + "SourceStructureID": 122716, + "TargetStructureID": 122707, + "Label": "122716-122707 via Ribbon Synapse from 122717 -> 122715", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122717, + "TargetID": 122715, + "Directional": true + }] + }, { + "ID": 21059, + "SourceStructureID": 122750, + "TargetStructureID": 8720, + "Label": "122750-8720 via Ribbon Synapse from 63458 -> 63456", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 63458, + "TargetID": 63456, + "Directional": true + }] + }, { + "ID": 21060, + "SourceStructureID": 122756, + "TargetStructureID": 5600, + "Label": "122756-5600 via Conventional from 122757 -> 122755", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122757, + "TargetID": 122755, + "Directional": true + }] + }, { + "ID": 21061, + "SourceStructureID": 122760, + "TargetStructureID": 5600, + "Label": "122760-5600 via Conventional from 122766 -> 122767", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122766, + "TargetID": 122767, + "Directional": true + }] + }, { + "ID": 21062, + "SourceStructureID": 122768, + "TargetStructureID": 10412, + "Label": "122768-10412 via Conventional from 122773 -> 122774", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122773, + "TargetID": 122774, + "Directional": true + }] + }, { + "ID": 21063, + "SourceStructureID": 122777, + "TargetStructureID": 122768, + "Label": "122777-122768 via Conventional from 122778 -> 122779", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122778, + "TargetID": 122779, + "Directional": true + }] + }, { + "ID": 21064, + "SourceStructureID": 122801, + "TargetStructureID": 122768, + "Label": "122801-122768 via Conventional from 122802 -> 122800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122802, + "TargetID": 122800, + "Directional": true + }] + }, { + "ID": 21065, + "SourceStructureID": 122803, + "TargetStructureID": 122801, + "Label": "122803-122801 via Conventional from 122804 -> 122805", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122804, + "TargetID": 122805, + "Directional": true + }] + }, { + "ID": 21066, + "SourceStructureID": 122829, + "TargetStructureID": 5283, + "Label": "122829-5283 via Postsynapse from 122879 -> 28099", + "Type": "Postsynapse", + "Directional": true, + "Links": [{ + "SourceID": 122879, + "TargetID": 28099, + "Directional": true + }] + }, { + "ID": 21067, + "SourceStructureID": 122849, + "TargetStructureID": 5374, + "Label": "122849-5374 via Ribbon Synapse from 130523 -> 130522", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130523, + "TargetID": 130522, + "Directional": true + }] + }, { + "ID": 21068, + "SourceStructureID": 122849, + "TargetStructureID": 7147, + "Label": "122849-7147 via Ribbon Synapse from 130523 -> 130521", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130523, + "TargetID": 130521, + "Directional": true + }] + }, { + "ID": 21069, + "SourceStructureID": 122849, + "TargetStructureID": 122829, + "Label": "122849-122829 via Ribbon Synapse from 122850 -> 122845, 122855 -> 122854, 122857 -> 122858", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122850, + "TargetID": 122845, + "Directional": true + }, { + "SourceID": 122855, + "TargetID": 122854, + "Directional": true + }, { + "SourceID": 122857, + "TargetID": 122858, + "Directional": true + }] + }, { + "ID": 21070, + "SourceStructureID": 122868, + "TargetStructureID": 122829, + "Label": "122868-122829 via Ribbon Synapse from 132408 -> 132407, 132411 -> 132412, 132413 -> 132414", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132408, + "TargetID": 132407, + "Directional": true + }, { + "SourceID": 132411, + "TargetID": 132412, + "Directional": true + }, { + "SourceID": 132413, + "TargetID": 132414, + "Directional": true + }] + }, { + "ID": 21071, + "SourceStructureID": 122893, + "TargetStructureID": 7114, + "Label": "122893-7114 via Ribbon Synapse from 122894 -> 122896, 122895 -> 122897", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 122894, + "TargetID": 122896, + "Directional": true + }, { + "SourceID": 122895, + "TargetID": 122897, + "Directional": true + }] + }, { + "ID": 21072, + "SourceStructureID": 122930, + "TargetStructureID": 5394, + "Label": "122930-5394 via Conventional from 122931 -> 77081", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122931, + "TargetID": 77081, + "Directional": true + }] + }, { + "ID": 21073, + "SourceStructureID": 122930, + "TargetStructureID": 6122, + "Label": "122930-6122 via Conventional from 122935 -> 122936", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122935, + "TargetID": 122936, + "Directional": true + }] + }, { + "ID": 21074, + "SourceStructureID": 122930, + "TargetStructureID": 122933, + "Label": "122930-122933 via Conventional from 122932 -> 122934", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 122932, + "TargetID": 122934, + "Directional": true + }] + }, { + "ID": 21075, + "SourceStructureID": 123146, + "TargetStructureID": 519, + "Label": "123146-519 via Conventional from 123147 -> 26764", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123147, + "TargetID": 26764, + "Directional": true + }] + }, { + "ID": 21076, + "SourceStructureID": 123181, + "TargetStructureID": 8749, + "Label": "123181-8749 via Conventional from 123182 -> 8799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123182, + "TargetID": 8799, + "Directional": true + }] + }, { + "ID": 21077, + "SourceStructureID": 123183, + "TargetStructureID": 8749, + "Label": "123183-8749 via Conventional from 123184 -> 8800", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123184, + "TargetID": 8800, + "Directional": true + }] + }, { + "ID": 21078, + "SourceStructureID": 123186, + "TargetStructureID": 8749, + "Label": "123186-8749 via Conventional from 123187 -> 8802", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123187, + "TargetID": 8802, + "Directional": true + }] + }, { + "ID": 21079, + "SourceStructureID": 123189, + "TargetStructureID": 514, + "Label": "123189-514 via Conventional from 123190 -> 123191", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123190, + "TargetID": 123191, + "Directional": true + }] + }, { + "ID": 21080, + "SourceStructureID": 123192, + "TargetStructureID": 8749, + "Label": "123192-8749 via Conventional from 123193 -> 8846", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123193, + "TargetID": 8846, + "Directional": true + }] + }, { + "ID": 21081, + "SourceStructureID": 123194, + "TargetStructureID": 8749, + "Label": "123194-8749 via Conventional from 123195 -> 123196", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123195, + "TargetID": 123196, + "Directional": true + }] + }, { + "ID": 21082, + "SourceStructureID": 123197, + "TargetStructureID": 8749, + "Label": "123197-8749 via Conventional from 123198 -> 8859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123198, + "TargetID": 8859, + "Directional": true + }] + }, { + "ID": 21083, + "SourceStructureID": 123199, + "TargetStructureID": 8749, + "Label": "123199-8749 via Conventional from 123200 -> 8868", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123200, + "TargetID": 8868, + "Directional": true + }] + }, { + "ID": 21084, + "SourceStructureID": 123201, + "TargetStructureID": 8749, + "Label": "123201-8749 via Conventional from 123203 -> 123204", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123203, + "TargetID": 123204, + "Directional": true + }] + }, { + "ID": 21085, + "SourceStructureID": 123209, + "TargetStructureID": 8749, + "Label": "123209-8749 via Conventional from 123210 -> 8848", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123210, + "TargetID": 8848, + "Directional": true + }] + }, { + "ID": 21086, + "SourceStructureID": 123212, + "TargetStructureID": 8749, + "Label": "123212-8749 via Conventional from 123213 -> 123214", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123213, + "TargetID": 123214, + "Directional": true + }] + }, { + "ID": 21087, + "SourceStructureID": 123215, + "TargetStructureID": 8749, + "Label": "123215-8749 via Conventional from 123216 -> 8826", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123216, + "TargetID": 8826, + "Directional": true + }] + }, { + "ID": 21088, + "SourceStructureID": 123217, + "TargetStructureID": 8749, + "Label": "123217-8749 via Conventional from 123218 -> 123219", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123218, + "TargetID": 123219, + "Directional": true + }] + }, { + "ID": 21089, + "SourceStructureID": 123217, + "TargetStructureID": 38395, + "Label": "123217-38395 via Adherens from 123221 -> 123220", + "Type": "Adherens", + "Directional": true, + "Links": [{ + "SourceID": 123221, + "TargetID": 123220, + "Directional": true + }] + }, { + "ID": 21090, + "SourceStructureID": 123223, + "TargetStructureID": 2610, + "Label": "123223-2610 via Conventional from 123226 -> 2781", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123226, + "TargetID": 2781, + "Directional": true + }] + }, { + "ID": 21091, + "SourceStructureID": 123223, + "TargetStructureID": 8749, + "Label": "123223-8749 via Conventional from 123224 -> 123225", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123224, + "TargetID": 123225, + "Directional": true + }] + }, { + "ID": 21092, + "SourceStructureID": 123227, + "TargetStructureID": 8749, + "Label": "123227-8749 via Conventional from 123229 -> 123230", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123229, + "TargetID": 123230, + "Directional": true + }] + }, { + "ID": 21093, + "SourceStructureID": 123317, + "TargetStructureID": 171, + "Label": "123317-171 via Conventional from 123318 -> 123319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123318, + "TargetID": 123319, + "Directional": true + }] + }, { + "ID": 21094, + "SourceStructureID": 123573, + "TargetStructureID": 15977, + "Label": "123573-15977 via Conventional from 123574 -> 123575", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123574, + "TargetID": 123575, + "Directional": true + }] + }, { + "ID": 21095, + "SourceStructureID": 123576, + "TargetStructureID": 15977, + "Label": "123576-15977 via Conventional from 123577 -> 123578", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123577, + "TargetID": 123578, + "Directional": true + }] + }, { + "ID": 21096, + "SourceStructureID": 123579, + "TargetStructureID": 15977, + "Label": "123579-15977 via Conventional from 123580 -> 123581", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123580, + "TargetID": 123581, + "Directional": true + }] + }, { + "ID": 21097, + "SourceStructureID": 123582, + "TargetStructureID": 15977, + "Label": "123582-15977 via Conventional from 123583 -> 123584", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123583, + "TargetID": 123584, + "Directional": true + }] + }, { + "ID": 21098, + "SourceStructureID": 123675, + "TargetStructureID": 43716, + "Label": "123675-43716 via Conventional from 123677 -> 123672", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 123677, + "TargetID": 123672, + "Directional": true + }] + }, { + "ID": 21099, + "SourceStructureID": 124069, + "TargetStructureID": 5595, + "Label": "124069-5595 via Conventional from 126915 -> 15287", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126915, + "TargetID": 15287, + "Directional": true + }] + }, { + "ID": 21100, + "SourceStructureID": 124486, + "TargetStructureID": 5598, + "Label": "124486-5598 via Conventional from 124487 -> 115069", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 124487, + "TargetID": 115069, + "Directional": true + }] + }, { + "ID": 21101, + "SourceStructureID": 124547, + "TargetStructureID": 176, + "Label": "124547-176 via Conventional from 124548 -> 5815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 124548, + "TargetID": 5815, + "Directional": true + }] + }, { + "ID": 21102, + "SourceStructureID": 124780, + "TargetStructureID": 16026, + "Label": "124780-16026 via Conventional from 124781 -> 25762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 124781, + "TargetID": 25762, + "Directional": true + }] + }, { + "ID": 21103, + "SourceStructureID": 125157, + "TargetStructureID": 6128, + "Label": "125157-6128 via Conventional from 125269 -> 33739", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125269, + "TargetID": 33739, + "Directional": true + }] + }, { + "ID": 21104, + "SourceStructureID": 125157, + "TargetStructureID": 6132, + "Label": "125157-6132 via Conventional from 125478 -> 88419", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125478, + "TargetID": 88419, + "Directional": true + }] + }, { + "ID": 21105, + "SourceStructureID": 125157, + "TargetStructureID": 7346, + "Label": "125157-7346 via Conventional from 125250 -> 44113, 125268 -> 44052", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125250, + "TargetID": 44113, + "Directional": true + }, { + "SourceID": 125268, + "TargetID": 44052, + "Directional": true + }] + }, { + "ID": 21106, + "SourceStructureID": 125157, + "TargetStructureID": 13525, + "Label": "125157-13525 via Conventional from 125158 -> 84295", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125158, + "TargetID": 84295, + "Directional": true + }] + }, { + "ID": 21107, + "SourceStructureID": 125157, + "TargetStructureID": 44117, + "Label": "125157-44117 via Conventional from 125249 -> 44120", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125249, + "TargetID": 44120, + "Directional": true + }] + }, { + "ID": 21108, + "SourceStructureID": 125389, + "TargetStructureID": 6047, + "Label": "125389-6047 via Conventional from 125391 -> 125390", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125391, + "TargetID": 125390, + "Directional": true + }] + }, { + "ID": 21109, + "SourceStructureID": 125685, + "TargetStructureID": 1021, + "Label": "125685-1021 via Conventional from 125687 -> 125688", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125687, + "TargetID": 125688, + "Directional": true + }] + }, { + "ID": 21110, + "SourceStructureID": 125767, + "TargetStructureID": 6203, + "Label": "125767-6203 via Conventional from 125769 -> 125770", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 125769, + "TargetID": 125770, + "Directional": true + }] + }, { + "ID": 21111, + "SourceStructureID": 125981, + "TargetStructureID": 166, + "Label": "125981-166 via Conventional from 93091 -> 4450", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 93091, + "TargetID": 4450, + "Directional": true + }] + }, { + "ID": 21112, + "SourceStructureID": 125981, + "TargetStructureID": 606, + "Label": "125981-606 via Conventional from 52174 -> 10051", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 52174, + "TargetID": 10051, + "Directional": true + }] + }, { + "ID": 21113, + "SourceStructureID": 126012, + "TargetStructureID": 142, + "Label": "126012-142 via Conventional from 126014 -> 126011", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126014, + "TargetID": 126011, + "Directional": true + }] + }, { + "ID": 21114, + "SourceStructureID": 126012, + "TargetStructureID": 595, + "Label": "126012-595 via Conventional from 126013 -> 125266", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126013, + "TargetID": 125266, + "Directional": true + }] + }, { + "ID": 21115, + "SourceStructureID": 126047, + "TargetStructureID": 142, + "Label": "126047-142 via Conventional from 126049 -> 31782", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126049, + "TargetID": 31782, + "Directional": true + }] + }, { + "ID": 21116, + "SourceStructureID": 126646, + "TargetStructureID": 56710, + "Label": "126646-56710 via Conventional from 136507 -> 136506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136507, + "TargetID": 136506, + "Directional": true + }] + }, { + "ID": 21117, + "SourceStructureID": 126901, + "TargetStructureID": 5600, + "Label": "126901-5600 via Conventional from 126904 -> 126905, 126906 -> 124235", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 126904, + "TargetID": 126905, + "Directional": true + }, { + "SourceID": 126906, + "TargetID": 124235, + "Directional": true + }] + }, { + "ID": 21118, + "SourceStructureID": 127070, + "TargetStructureID": 6050, + "Label": "127070-6050 via Conventional from 127071 -> 127072", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127071, + "TargetID": 127072, + "Directional": true + }] + }, { + "ID": 21119, + "SourceStructureID": 127240, + "TargetStructureID": 5601, + "Label": "127240-5601 via Conventional from 127241 -> 127205", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127241, + "TargetID": 127205, + "Directional": true + }] + }, { + "ID": 21120, + "SourceStructureID": 127253, + "TargetStructureID": 6050, + "Label": "127253-6050 via Conventional from 127254 -> 51663", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127254, + "TargetID": 51663, + "Directional": true + }] + }, { + "ID": 21121, + "SourceStructureID": 127256, + "TargetStructureID": 176, + "Label": "127256-176 via Conventional from 127257 -> 5807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127257, + "TargetID": 5807, + "Directional": true + }] + }, { + "ID": 21122, + "SourceStructureID": 127262, + "TargetStructureID": 170, + "Label": "127262-170 via Conventional from 127264 -> 127261", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127264, + "TargetID": 127261, + "Directional": true + }] + }, { + "ID": 21123, + "SourceStructureID": 127277, + "TargetStructureID": 6050, + "Label": "127277-6050 via Conventional from 127278 -> 113580", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127278, + "TargetID": 113580, + "Directional": true + }] + }, { + "ID": 21124, + "SourceStructureID": 127302, + "TargetStructureID": 78409, + "Label": "127302-78409 via Conventional from 127303 -> 106785", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127303, + "TargetID": 106785, + "Directional": true + }] + }, { + "ID": 21125, + "SourceStructureID": 127304, + "TargetStructureID": 6050, + "Label": "127304-6050 via Conventional from 127305 -> 126984", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127305, + "TargetID": 126984, + "Directional": true + }] + }, { + "ID": 21126, + "SourceStructureID": 127306, + "TargetStructureID": 176, + "Label": "127306-176 via Conventional from 127307 -> 5863", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127307, + "TargetID": 5863, + "Directional": true + }] + }, { + "ID": 21127, + "SourceStructureID": 127417, + "TargetStructureID": 6050, + "Label": "127417-6050 via Conventional from 127418 -> 113916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127418, + "TargetID": 113916, + "Directional": true + }] + }, { + "ID": 21128, + "SourceStructureID": 127650, + "TargetStructureID": 6050, + "Label": "127650-6050 via Conventional from 127651 -> 114262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127651, + "TargetID": 114262, + "Directional": true + }] + }, { + "ID": 21129, + "SourceStructureID": 127653, + "TargetStructureID": 6050, + "Label": "127653-6050 via Conventional from 127654 -> 114262", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127654, + "TargetID": 114262, + "Directional": true + }] + }, { + "ID": 21130, + "SourceStructureID": 127719, + "TargetStructureID": 45672, + "Label": "127719-45672 via Ribbon Synapse from 127720 -> 127734", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127720, + "TargetID": 127734, + "Directional": true + }] + }, { + "ID": 21131, + "SourceStructureID": 127749, + "TargetStructureID": 45672, + "Label": "127749-45672 via Ribbon Synapse from 127750 -> 127748", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127750, + "TargetID": 127748, + "Directional": true + }] + }, { + "ID": 21132, + "SourceStructureID": 127764, + "TargetStructureID": 3756, + "Label": "127764-3756 via Conventional from 128957 -> 128958", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128957, + "TargetID": 128958, + "Directional": true + }] + }, { + "ID": 21133, + "SourceStructureID": 127764, + "TargetStructureID": 5601, + "Label": "127764-5601 via Conventional from 129274 -> 127157", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129274, + "TargetID": 127157, + "Directional": true + }] + }, { + "ID": 21134, + "SourceStructureID": 127764, + "TargetStructureID": 9376, + "Label": "127764-9376 via Conventional from 127765 -> 62747, 127766 -> 62746", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127765, + "TargetID": 62747, + "Directional": true + }, { + "SourceID": 127766, + "TargetID": 62746, + "Directional": true + }] + }, { + "ID": 21135, + "SourceStructureID": 127776, + "TargetStructureID": 469, + "Label": "127776-469 via Conventional from 127777 -> 127778", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127777, + "TargetID": 127778, + "Directional": true + }] + }, { + "ID": 21136, + "SourceStructureID": 127781, + "TargetStructureID": 15979, + "Label": "127781-15979 via Conventional from 127782 -> 33790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127782, + "TargetID": 33790, + "Directional": true + }] + }, { + "ID": 21137, + "SourceStructureID": 127783, + "TargetStructureID": 6164, + "Label": "127783-6164 via Conventional from 127784 -> 26862", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127784, + "TargetID": 26862, + "Directional": true + }] + }, { + "ID": 21138, + "SourceStructureID": 127796, + "TargetStructureID": 579, + "Label": "127796-579 via Conventional from 127797 -> 127798, 127811 -> 127812", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127797, + "TargetID": 127798, + "Directional": true + }, { + "SourceID": 127811, + "TargetID": 127812, + "Directional": true + }] + }, { + "ID": 21139, + "SourceStructureID": 127796, + "TargetStructureID": 46388, + "Label": "127796-46388 via Conventional from 127809 -> 127810", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127809, + "TargetID": 127810, + "Directional": true + }] + }, { + "ID": 21140, + "SourceStructureID": 127813, + "TargetStructureID": 579, + "Label": "127813-579 via Conventional from 127814 -> 127815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127814, + "TargetID": 127815, + "Directional": true + }] + }, { + "ID": 21141, + "SourceStructureID": 127813, + "TargetStructureID": 5623, + "Label": "127813-5623 via Conventional from 127819 -> 127820", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127819, + "TargetID": 127820, + "Directional": true + }] + }, { + "ID": 21142, + "SourceStructureID": 127832, + "TargetStructureID": 2610, + "Label": "127832-2610 via Conventional from 127837 -> 17226", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127837, + "TargetID": 17226, + "Directional": true + }] + }, { + "ID": 21143, + "SourceStructureID": 127832, + "TargetStructureID": 15100, + "Label": "127832-15100 via Conventional from 127833 -> 127834", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127833, + "TargetID": 127834, + "Directional": true + }] + }, { + "ID": 21144, + "SourceStructureID": 127841, + "TargetStructureID": 6997, + "Label": "127841-6997 via Conventional from 127844 -> 22253", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127844, + "TargetID": 22253, + "Directional": true + }] + }, { + "ID": 21145, + "SourceStructureID": 127841, + "TargetStructureID": 15100, + "Label": "127841-15100 via Conventional from 127842 -> 17105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127842, + "TargetID": 17105, + "Directional": true + }] + }, { + "ID": 21146, + "SourceStructureID": 127846, + "TargetStructureID": 485, + "Label": "127846-485 via Conventional from 127871 -> 101870", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127871, + "TargetID": 101870, + "Directional": true + }] + }, { + "ID": 21147, + "SourceStructureID": 127846, + "TargetStructureID": 6589, + "Label": "127846-6589 via Conventional from 127860 -> 9582", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127860, + "TargetID": 9582, + "Directional": true + }] + }, { + "ID": 21148, + "SourceStructureID": 127846, + "TargetStructureID": 8749, + "Label": "127846-8749 via Conventional from 127868 -> 127869", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127868, + "TargetID": 127869, + "Directional": true + }] + }, { + "ID": 21149, + "SourceStructureID": 127846, + "TargetStructureID": 15100, + "Label": "127846-15100 via Conventional from 127847 -> 15105", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127847, + "TargetID": 15105, + "Directional": true + }] + }, { + "ID": 21150, + "SourceStructureID": 127846, + "TargetStructureID": 17183, + "Label": "127846-17183 via Conventional from 127853 -> 127859", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 127853, + "TargetID": 127859, + "Directional": true + }] + }, { + "ID": 21151, + "SourceStructureID": 127946, + "TargetStructureID": 46514, + "Label": "127946-46514 via Ribbon Synapse from 127948 -> 127951, 127949 -> 127950", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127948, + "TargetID": 127951, + "Directional": true + }, { + "SourceID": 127949, + "TargetID": 127950, + "Directional": true + }] + }, { + "ID": 21152, + "SourceStructureID": 127953, + "TargetStructureID": 46517, + "Label": "127953-46517 via Ribbon Synapse from 127954 -> 127952", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127954, + "TargetID": 127952, + "Directional": true + }] + }, { + "ID": 21153, + "SourceStructureID": 127964, + "TargetStructureID": 46379, + "Label": "127964-46379 via Ribbon Synapse from 127965 -> 127963", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 127965, + "TargetID": 127963, + "Directional": true + }] + }, { + "ID": 21154, + "SourceStructureID": 127999, + "TargetStructureID": 179, + "Label": "127999-179 via Conventional from 128000 -> 11676", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128000, + "TargetID": 11676, + "Directional": true + }] + }, { + "ID": 21155, + "SourceStructureID": 128006, + "TargetStructureID": 179, + "Label": "128006-179 via Conventional from 128007 -> 103807", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128007, + "TargetID": 103807, + "Directional": true + }] + }, { + "ID": 21156, + "SourceStructureID": 128015, + "TargetStructureID": 478, + "Label": "128015-478 via Conventional from 128040 -> 19426", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128040, + "TargetID": 19426, + "Directional": true + }] + }, { + "ID": 21157, + "SourceStructureID": 128015, + "TargetStructureID": 128044, + "Label": "128015-128044 via Conventional from 128043 -> 128045", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128043, + "TargetID": 128045, + "Directional": true + }] + }, { + "ID": 21158, + "SourceStructureID": 128060, + "TargetStructureID": 179, + "Label": "128060-179 via Conventional from 128061 -> 103815", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128061, + "TargetID": 103815, + "Directional": true + }] + }, { + "ID": 21159, + "SourceStructureID": 128060, + "TargetStructureID": 9787, + "Label": "128060-9787 via Conventional from 128096 -> 18053", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128096, + "TargetID": 18053, + "Directional": true + }] + }, { + "ID": 21160, + "SourceStructureID": 128060, + "TargetStructureID": 128082, + "Label": "128060-128082 via Conventional from 128081 -> 128085", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128081, + "TargetID": 128085, + "Directional": true + }] + }, { + "ID": 21161, + "SourceStructureID": 128097, + "TargetStructureID": 179, + "Label": "128097-179 via Conventional from 128098 -> 128099", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128098, + "TargetID": 128099, + "Directional": true + }] + }, { + "ID": 21162, + "SourceStructureID": 128101, + "TargetStructureID": 173, + "Label": "128101-173 via Conventional from 128103 -> 128104", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128103, + "TargetID": 128104, + "Directional": true + }] + }, { + "ID": 21163, + "SourceStructureID": 128101, + "TargetStructureID": 179, + "Label": "128101-179 via Conventional from 128102 -> 87472", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128102, + "TargetID": 87472, + "Directional": true + }] + }, { + "ID": 21164, + "SourceStructureID": 128107, + "TargetStructureID": 179, + "Label": "128107-179 via Conventional from 128108 -> 87467", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128108, + "TargetID": 87467, + "Directional": true + }] + }, { + "ID": 21165, + "SourceStructureID": 128122, + "TargetStructureID": 179, + "Label": "128122-179 via Conventional from 128124 -> 87466", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128124, + "TargetID": 87466, + "Directional": true + }] + }, { + "ID": 21166, + "SourceStructureID": 128150, + "TargetStructureID": 179, + "Label": "128150-179 via Conventional from 128151 -> 87501", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128151, + "TargetID": 87501, + "Directional": true + }] + }, { + "ID": 21167, + "SourceStructureID": 128152, + "TargetStructureID": 173, + "Label": "128152-173 via Conventional from 128159 -> 12123, 128162 -> 128163", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128159, + "TargetID": 12123, + "Directional": true + }, { + "SourceID": 128162, + "TargetID": 128163, + "Directional": true + }] + }, { + "ID": 21168, + "SourceStructureID": 128152, + "TargetStructureID": 175, + "Label": "128152-175 via Conventional from 128166 -> 128170", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128166, + "TargetID": 128170, + "Directional": true + }] + }, { + "ID": 21169, + "SourceStructureID": 128152, + "TargetStructureID": 179, + "Label": "128152-179 via Conventional from 128153 -> 87502", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128153, + "TargetID": 87502, + "Directional": true + }] + }, { + "ID": 21170, + "SourceStructureID": 128171, + "TargetStructureID": 591, + "Label": "128171-591 via Conventional from 128172 -> 10216", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128172, + "TargetID": 10216, + "Directional": true + }] + }, { + "ID": 21171, + "SourceStructureID": 128184, + "TargetStructureID": 173, + "Label": "128184-173 via Conventional from 128186 -> 128187", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128186, + "TargetID": 128187, + "Directional": true + }] + }, { + "ID": 21172, + "SourceStructureID": 128184, + "TargetStructureID": 179, + "Label": "128184-179 via Conventional from 128185 -> 87504", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128185, + "TargetID": 87504, + "Directional": true + }] + }, { + "ID": 21173, + "SourceStructureID": 128189, + "TargetStructureID": 179, + "Label": "128189-179 via Conventional from 128190 -> 11679", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128190, + "TargetID": 11679, + "Directional": true + }] + }, { + "ID": 21174, + "SourceStructureID": 128191, + "TargetStructureID": 179, + "Label": "128191-179 via Conventional from 128192 -> 104768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128192, + "TargetID": 104768, + "Directional": true + }] + }, { + "ID": 21175, + "SourceStructureID": 128685, + "TargetStructureID": 176, + "Label": "128685-176 via Conventional from 128687 -> 125453", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128687, + "TargetID": 125453, + "Directional": true + }] + }, { + "ID": 21176, + "SourceStructureID": 128685, + "TargetStructureID": 4877, + "Label": "128685-4877 via Conventional from 128686 -> 33372", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128686, + "TargetID": 33372, + "Directional": true + }] + }, { + "ID": 21177, + "SourceStructureID": 128800, + "TargetStructureID": 3756, + "Label": "128800-3756 via Conventional from 128801 -> 128799", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 128801, + "TargetID": 128799, + "Directional": true + }] + }, { + "ID": 21178, + "SourceStructureID": 129144, + "TargetStructureID": 579, + "Label": "129144-579 via Conventional from 129145 -> 129146, 129147 -> 129149, 129148 -> 129150", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129145, + "TargetID": 129146, + "Directional": true + }, { + "SourceID": 129147, + "TargetID": 129149, + "Directional": true + }, { + "SourceID": 129148, + "TargetID": 129150, + "Directional": true + }] + }, { + "ID": 21179, + "SourceStructureID": 129154, + "TargetStructureID": 514, + "Label": "129154-514 via Conventional from 129157 -> 3248", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129157, + "TargetID": 3248, + "Directional": true + }] + }, { + "ID": 21180, + "SourceStructureID": 129154, + "TargetStructureID": 2610, + "Label": "129154-2610 via Conventional from 129156 -> 13803", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129156, + "TargetID": 13803, + "Directional": true + }] + }, { + "ID": 21181, + "SourceStructureID": 129154, + "TargetStructureID": 8749, + "Label": "129154-8749 via Conventional from 129155 -> 8831", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129155, + "TargetID": 8831, + "Directional": true + }] + }, { + "ID": 21182, + "SourceStructureID": 129192, + "TargetStructureID": 30477, + "Label": "129192-30477 via Conventional from 129193 -> 30492", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129193, + "TargetID": 30492, + "Directional": true + }] + }, { + "ID": 21183, + "SourceStructureID": 129199, + "TargetStructureID": 34159, + "Label": "129199-34159 via Conventional from 129200 -> 34161", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129200, + "TargetID": 34161, + "Directional": true + }] + }, { + "ID": 21184, + "SourceStructureID": 129201, + "TargetStructureID": 34159, + "Label": "129201-34159 via Conventional from 129202 -> 34162", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129202, + "TargetID": 34162, + "Directional": true + }] + }, { + "ID": 21185, + "SourceStructureID": 129292, + "TargetStructureID": 13525, + "Label": "129292-13525 via Ribbon Synapse from 130091 -> 129291", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130091, + "TargetID": 129291, + "Directional": true + }] + }, { + "ID": 21186, + "SourceStructureID": 129292, + "TargetStructureID": 130237, + "Label": "129292-130237 via Ribbon Synapse from 130093 -> 130397", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130093, + "TargetID": 130397, + "Directional": true + }] + }, { + "ID": 21187, + "SourceStructureID": 129466, + "TargetStructureID": 3756, + "Label": "129466-3756 via Conventional from 129467 -> 129464", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129467, + "TargetID": 129464, + "Directional": true + }] + }, { + "ID": 21188, + "SourceStructureID": 129563, + "TargetStructureID": 13525, + "Label": "129563-13525 via Conventional from 130051 -> 129562", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130051, + "TargetID": 129562, + "Directional": true + }] + }, { + "ID": 21189, + "SourceStructureID": 129648, + "TargetStructureID": 181, + "Label": "129648-181 via Conventional from 129650 -> 10319, 129655 -> 10319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129650, + "TargetID": 10319, + "Directional": true + }, { + "SourceID": 129655, + "TargetID": 10319, + "Directional": true + }] + }, { + "ID": 21190, + "SourceStructureID": 129648, + "TargetStructureID": 968, + "Label": "129648-968 via Conventional from 129657 -> 129658", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129657, + "TargetID": 129658, + "Directional": true + }] + }, { + "ID": 21191, + "SourceStructureID": 129648, + "TargetStructureID": 3865, + "Label": "129648-3865 via Conventional from 129651 -> 36122", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129651, + "TargetID": 36122, + "Directional": true + }] + }, { + "ID": 21192, + "SourceStructureID": 129648, + "TargetStructureID": 129721, + "Label": "129648-129721 via Conventional from 129719 -> 129724, 129729 -> 129726", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129719, + "TargetID": 129724, + "Directional": true + }, { + "SourceID": 129729, + "TargetID": 129726, + "Directional": true + }] + }, { + "ID": 21193, + "SourceStructureID": 129648, + "TargetStructureID": 129738, + "Label": "129648-129738 via Conventional from 129743 -> 129744", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129743, + "TargetID": 129744, + "Directional": true + }] + }, { + "ID": 21194, + "SourceStructureID": 129648, + "TargetStructureID": 129746, + "Label": "129648-129746 via Conventional from 129751 -> 129752", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129751, + "TargetID": 129752, + "Directional": true + }] + }, { + "ID": 21195, + "SourceStructureID": 129648, + "TargetStructureID": 129755, + "Label": "129648-129755 via Conventional from 129754 -> 129757", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129754, + "TargetID": 129757, + "Directional": true + }] + }, { + "ID": 21196, + "SourceStructureID": 129648, + "TargetStructureID": 129762, + "Label": "129648-129762 via Conventional from 129761 -> 129766", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129761, + "TargetID": 129766, + "Directional": true + }] + }, { + "ID": 21197, + "SourceStructureID": 129660, + "TargetStructureID": 129648, + "Label": "129660-129648 via Conventional from 129661 -> 129659", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129661, + "TargetID": 129659, + "Directional": true + }] + }, { + "ID": 21198, + "SourceStructureID": 129666, + "TargetStructureID": 129648, + "Label": "129666-129648 via Conventional from 129667 -> 129665", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129667, + "TargetID": 129665, + "Directional": true + }] + }, { + "ID": 21199, + "SourceStructureID": 129676, + "TargetStructureID": 40604, + "Label": "129676-40604 via Ribbon Synapse from 129677 -> 129678", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129677, + "TargetID": 129678, + "Directional": true + }] + }, { + "ID": 21200, + "SourceStructureID": 129676, + "TargetStructureID": 129648, + "Label": "129676-129648 via Ribbon Synapse from 129679 -> 129675", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129679, + "TargetID": 129675, + "Directional": true + }] + }, { + "ID": 21201, + "SourceStructureID": 129696, + "TargetStructureID": 129648, + "Label": "129696-129648 via Ribbon Synapse from 129697 -> 129695", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129697, + "TargetID": 129695, + "Directional": true + }] + }, { + "ID": 21202, + "SourceStructureID": 129721, + "TargetStructureID": 16073, + "Label": "129721-16073 via BC Conventional Synapse from 129723 -> 24191", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129723, + "TargetID": 24191, + "Directional": true + }] + }, { + "ID": 21203, + "SourceStructureID": 129721, + "TargetStructureID": 129648, + "Label": "129721-129648 via Ribbon Synapse from 129722 -> 129720", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129722, + "TargetID": 129720, + "Directional": true + }] + }, { + "ID": 21204, + "SourceStructureID": 129738, + "TargetStructureID": 129648, + "Label": "129738-129648 via Conventional from 129742 -> 129737", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129742, + "TargetID": 129737, + "Directional": true + }] + }, { + "ID": 21205, + "SourceStructureID": 129740, + "TargetStructureID": 129738, + "Label": "129740-129738 via Conventional from 129741 -> 129739", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129741, + "TargetID": 129739, + "Directional": true + }] + }, { + "ID": 21206, + "SourceStructureID": 129746, + "TargetStructureID": 129648, + "Label": "129746-129648 via Ribbon Synapse from 129747 -> 129745", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129747, + "TargetID": 129745, + "Directional": true + }] + }, { + "ID": 21207, + "SourceStructureID": 129755, + "TargetStructureID": 129648, + "Label": "129755-129648 via Conventional from 129756 -> 129753", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129756, + "TargetID": 129753, + "Directional": true + }] + }, { + "ID": 21208, + "SourceStructureID": 129762, + "TargetStructureID": 129755, + "Label": "129762-129755 via Ribbon Synapse from 129764 -> 129759", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129764, + "TargetID": 129759, + "Directional": true + }] + }, { + "ID": 21209, + "SourceStructureID": 129775, + "TargetStructureID": 173, + "Label": "129775-173 via Conventional from 129779 -> 129780", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129779, + "TargetID": 129780, + "Directional": true + }] + }, { + "ID": 21210, + "SourceStructureID": 129775, + "TargetStructureID": 181, + "Label": "129775-181 via Conventional from 129776 -> 20466", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129776, + "TargetID": 20466, + "Directional": true + }] + }, { + "ID": 21211, + "SourceStructureID": 129781, + "TargetStructureID": 175, + "Label": "129781-175 via Conventional from 129782 -> 21887", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129782, + "TargetID": 21887, + "Directional": true + }] + }, { + "ID": 21212, + "SourceStructureID": 129781, + "TargetStructureID": 129788, + "Label": "129781-129788 via Conventional from 129787 -> 129790", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129787, + "TargetID": 129790, + "Directional": true + }] + }, { + "ID": 21213, + "SourceStructureID": 129798, + "TargetStructureID": 138, + "Label": "129798-138 via Conventional from 129846 -> 129845", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129846, + "TargetID": 129845, + "Directional": true + }] + }, { + "ID": 21214, + "SourceStructureID": 129798, + "TargetStructureID": 5585, + "Label": "129798-5585 via Conventional from 129810 -> 129811", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129810, + "TargetID": 129811, + "Directional": true + }] + }, { + "ID": 21215, + "SourceStructureID": 129798, + "TargetStructureID": 129800, + "Label": "129798-129800 via Conventional from 129799 -> 129801", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129799, + "TargetID": 129801, + "Directional": true + }] + }, { + "ID": 21216, + "SourceStructureID": 129798, + "TargetStructureID": 129827, + "Label": "129798-129827 via Conventional from 129825 -> 129829", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129825, + "TargetID": 129829, + "Directional": true + }] + }, { + "ID": 21217, + "SourceStructureID": 129800, + "TargetStructureID": 129798, + "Label": "129800-129798 via Ribbon Synapse from 129802 -> 129803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129802, + "TargetID": 129803, + "Directional": true + }] + }, { + "ID": 21218, + "SourceStructureID": 129840, + "TargetStructureID": 129798, + "Label": "129840-129798 via Ribbon Synapse from 129842 -> 129843", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 129842, + "TargetID": 129843, + "Directional": true + }] + }, { + "ID": 21219, + "SourceStructureID": 129851, + "TargetStructureID": 129927, + "Label": "129851-129927 via Conventional from 129852 -> 129853", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129852, + "TargetID": 129853, + "Directional": true + }] + }, { + "ID": 21220, + "SourceStructureID": 129877, + "TargetStructureID": 129875, + "Label": "129877-129875 via Conventional from 129878 -> 129876", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129878, + "TargetID": 129876, + "Directional": true + }] + }, { + "ID": 21221, + "SourceStructureID": 129924, + "TargetStructureID": 5499, + "Label": "129924-5499 via Conventional from 129925 -> 97184", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129925, + "TargetID": 97184, + "Directional": true + }] + }, { + "ID": 21222, + "SourceStructureID": 129927, + "TargetStructureID": 138, + "Label": "129927-138 via Conventional from 129934 -> 11468", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129934, + "TargetID": 11468, + "Directional": true + }] + }, { + "ID": 21223, + "SourceStructureID": 129927, + "TargetStructureID": 173, + "Label": "129927-173 via Conventional from 129936 -> 12142", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129936, + "TargetID": 12142, + "Directional": true + }] + }, { + "ID": 21224, + "SourceStructureID": 129927, + "TargetStructureID": 5499, + "Label": "129927-5499 via Conventional from 129928 -> 97180, 129941 -> 129942, 129943 -> 106898", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129928, + "TargetID": 97180, + "Directional": true + }, { + "SourceID": 129941, + "TargetID": 129942, + "Directional": true + }, { + "SourceID": 129943, + "TargetID": 106898, + "Directional": true + }] + }, { + "ID": 21225, + "SourceStructureID": 129952, + "TargetStructureID": 13525, + "Label": "129952-13525 via Conventional from 130052 -> 129951", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130052, + "TargetID": 129951, + "Directional": true + }] + }, { + "ID": 21226, + "SourceStructureID": 129954, + "TargetStructureID": 13525, + "Label": "129954-13525 via Ribbon Synapse from 130155 -> 133803", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130155, + "TargetID": 133803, + "Directional": true + }] + }, { + "ID": 21227, + "SourceStructureID": 129956, + "TargetStructureID": 5421, + "Label": "129956-5421 via Conventional from 130145 -> 130942", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130145, + "TargetID": 130942, + "Directional": true + }] + }, { + "ID": 21228, + "SourceStructureID": 129956, + "TargetStructureID": 13525, + "Label": "129956-13525 via Conventional from 130056 -> 129955", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130056, + "TargetID": 129955, + "Directional": true + }] + }, { + "ID": 21229, + "SourceStructureID": 129961, + "TargetStructureID": 13525, + "Label": "129961-13525 via Conventional from 130058 -> 129960", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130058, + "TargetID": 129960, + "Directional": true + }] + }, { + "ID": 21230, + "SourceStructureID": 129967, + "TargetStructureID": 13525, + "Label": "129967-13525 via Conventional from 129968 -> 129966", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129968, + "TargetID": 129966, + "Directional": true + }] + }, { + "ID": 21231, + "SourceStructureID": 129995, + "TargetStructureID": 129994, + "Label": "129995-129994 via Conventional from 129996 -> 129997", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 129996, + "TargetID": 129997, + "Directional": true + }] + }, { + "ID": 21232, + "SourceStructureID": 130006, + "TargetStructureID": 13525, + "Label": "130006-13525 via Conventional from 130147 -> 130005", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130147, + "TargetID": 130005, + "Directional": true + }] + }, { + "ID": 21233, + "SourceStructureID": 130006, + "TargetStructureID": 130371, + "Label": "130006-130371 via Conventional from 130148 -> 130374", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130148, + "TargetID": 130374, + "Directional": true + }] + }, { + "ID": 21234, + "SourceStructureID": 130038, + "TargetStructureID": 130039, + "Label": "130038-130039 via Conventional from 130040 -> 130041", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130040, + "TargetID": 130041, + "Directional": true + }] + }, { + "ID": 21235, + "SourceStructureID": 130125, + "TargetStructureID": 179, + "Label": "130125-179 via Conventional from 6369 -> 105202", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 6369, + "TargetID": 105202, + "Directional": true + }] + }, { + "ID": 21236, + "SourceStructureID": 130150, + "TargetStructureID": 13525, + "Label": "130150-13525 via Conventional from 130151 -> 129288", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130151, + "TargetID": 129288, + "Directional": true + }] + }, { + "ID": 21237, + "SourceStructureID": 130152, + "TargetStructureID": 13525, + "Label": "130152-13525 via Conventional from 130153 -> 129026", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130153, + "TargetID": 129026, + "Directional": true + }] + }, { + "ID": 21238, + "SourceStructureID": 130200, + "TargetStructureID": 166, + "Label": "130200-166 via Conventional from 130201 -> 4552", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130201, + "TargetID": 4552, + "Directional": true + }] + }, { + "ID": 21239, + "SourceStructureID": 130200, + "TargetStructureID": 56822, + "Label": "130200-56822 via Conventional from 130202 -> 56824", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130202, + "TargetID": 56824, + "Directional": true + }] + }, { + "ID": 21240, + "SourceStructureID": 130203, + "TargetStructureID": 5117, + "Label": "130203-5117 via Conventional from 130204 -> 28796", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130204, + "TargetID": 28796, + "Directional": true + }] + }, { + "ID": 21241, + "SourceStructureID": 130205, + "TargetStructureID": 273, + "Label": "130205-273 via Conventional from 130207 -> 130206", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130207, + "TargetID": 130206, + "Directional": true + }] + }, { + "ID": 21242, + "SourceStructureID": 130208, + "TargetStructureID": 5551, + "Label": "130208-5551 via Conventional from 130209 -> 130210", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130209, + "TargetID": 130210, + "Directional": true + }] + }, { + "ID": 21243, + "SourceStructureID": 130228, + "TargetStructureID": 5282, + "Label": "130228-5282 via Conventional from 130229 -> 87560", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130229, + "TargetID": 87560, + "Directional": true + }] + }, { + "ID": 21244, + "SourceStructureID": 130237, + "TargetStructureID": 7577, + "Label": "130237-7577 via Conventional from 130309 -> 130692", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130309, + "TargetID": 130692, + "Directional": true + }] + }, { + "ID": 21245, + "SourceStructureID": 130237, + "TargetStructureID": 13525, + "Label": "130237-13525 via Conventional from 130308 -> 130236", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130308, + "TargetID": 130236, + "Directional": true + }] + }, { + "ID": 21246, + "SourceStructureID": 130239, + "TargetStructureID": 7568, + "Label": "130239-7568 via Conventional from 130359 -> 41761, 130360 -> 41762", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130359, + "TargetID": 41761, + "Directional": true + }, { + "SourceID": 130360, + "TargetID": 41762, + "Directional": true + }] + }, { + "ID": 21247, + "SourceStructureID": 130239, + "TargetStructureID": 13525, + "Label": "130239-13525 via Conventional from 130311 -> 129545", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130311, + "TargetID": 129545, + "Directional": true + }] + }, { + "ID": 21248, + "SourceStructureID": 130255, + "TargetStructureID": 13525, + "Label": "130255-13525 via Conventional from 130314 -> 129559", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130314, + "TargetID": 129559, + "Directional": true + }] + }, { + "ID": 21249, + "SourceStructureID": 130256, + "TargetStructureID": 13525, + "Label": "130256-13525 via Ribbon Synapse from 130655 -> 129560", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130655, + "TargetID": 129560, + "Directional": true + }] + }, { + "ID": 21250, + "SourceStructureID": 130389, + "TargetStructureID": 11092, + "Label": "130389-11092 via Conventional from 130392 -> 130393", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 130392, + "TargetID": 130393, + "Directional": true + }] + }, { + "ID": 21251, + "SourceStructureID": 130472, + "TargetStructureID": 130256, + "Label": "130472-130256 via Ribbon Synapse from 130485 -> 130331", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130485, + "TargetID": 130331, + "Directional": true + }] + }, { + "ID": 21252, + "SourceStructureID": 130644, + "TargetStructureID": 22554, + "Label": "130644-22554 via Ribbon Synapse from 130645 -> 130646", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 130645, + "TargetID": 130646, + "Directional": true + }] + }, { + "ID": 21253, + "SourceStructureID": 130941, + "TargetStructureID": 35188, + "Label": "130941-35188 via Conventional from 131048 -> 35190", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131048, + "TargetID": 35190, + "Directional": true + }] + }, { + "ID": 21254, + "SourceStructureID": 131244, + "TargetStructureID": 9787, + "Label": "131244-9787 via Conventional from 131252 -> 18133", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131252, + "TargetID": 18133, + "Directional": true + }] + }, { + "ID": 21255, + "SourceStructureID": 131246, + "TargetStructureID": 36130, + "Label": "131246-36130 via Conventional from 131254 -> 36146", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131254, + "TargetID": 36146, + "Directional": true + }] + }, { + "ID": 21256, + "SourceStructureID": 131284, + "TargetStructureID": 131286, + "Label": "131284-131286 via Conventional from 131285 -> 131289", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131285, + "TargetID": 131289, + "Directional": true + }] + }, { + "ID": 21257, + "SourceStructureID": 131364, + "TargetStructureID": 608, + "Label": "131364-608 via Conventional from 131365 -> 131363", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131365, + "TargetID": 131363, + "Directional": true + }] + }, { + "ID": 21258, + "SourceStructureID": 131496, + "TargetStructureID": 7568, + "Label": "131496-7568 via Ribbon Synapse from 131500 -> 27079", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131500, + "TargetID": 27079, + "Directional": true + }] + }, { + "ID": 21259, + "SourceStructureID": 131516, + "TargetStructureID": 5285, + "Label": "131516-5285 via Ribbon Synapse from 131528 -> 5302", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131528, + "TargetID": 5302, + "Directional": true + }] + }, { + "ID": 21260, + "SourceStructureID": 131516, + "TargetStructureID": 9787, + "Label": "131516-9787 via Ribbon Synapse from 131518 -> 18035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131518, + "TargetID": 18035, + "Directional": true + }] + }, { + "ID": 21261, + "SourceStructureID": 131516, + "TargetStructureID": 10574, + "Label": "131516-10574 via Ribbon Synapse from 131528 -> 84555", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131528, + "TargetID": 84555, + "Directional": true + }] + }, { + "ID": 21262, + "SourceStructureID": 131568, + "TargetStructureID": 41778, + "Label": "131568-41778 via Ribbon Synapse from 131588 -> 41779", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 131588, + "TargetID": 41779, + "Directional": true + }] + }, { + "ID": 21263, + "SourceStructureID": 131642, + "TargetStructureID": 5283, + "Label": "131642-5283 via Conventional from 131647 -> 131646", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131647, + "TargetID": 131646, + "Directional": true + }] + }, { + "ID": 21264, + "SourceStructureID": 131642, + "TargetStructureID": 67361, + "Label": "131642-67361 via Conventional from 131644 -> 131645", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 131644, + "TargetID": 131645, + "Directional": true + }] + }, { + "ID": 21265, + "SourceStructureID": 132158, + "TargetStructureID": 5283, + "Label": "132158-5283 via Conventional from 132161 -> 132160", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132161, + "TargetID": 132160, + "Directional": true + }] + }, { + "ID": 21266, + "SourceStructureID": 132202, + "TargetStructureID": 165, + "Label": "132202-165 via Conventional from 132203 -> 12538", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 132203, + "TargetID": 12538, + "Directional": true + }] + }, { + "ID": 21267, + "SourceStructureID": 132220, + "TargetStructureID": 3865, + "Label": "132220-3865 via Ribbon Synapse from 132221 -> 132222", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 132221, + "TargetID": 132222, + "Directional": true + }] + }, { + "ID": 21268, + "SourceStructureID": 133264, + "TargetStructureID": 6156, + "Label": "133264-6156 via Conventional from 133266 -> 23185", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133266, + "TargetID": 23185, + "Directional": true + }] + }, { + "ID": 21269, + "SourceStructureID": 133304, + "TargetStructureID": 6156, + "Label": "133304-6156 via Conventional from 133305 -> 133303", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133305, + "TargetID": 133303, + "Directional": true + }] + }, { + "ID": 21270, + "SourceStructureID": 133755, + "TargetStructureID": 133757, + "Label": "133755-133757 via Conventional from 133756 -> 133758", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133756, + "TargetID": 133758, + "Directional": true + }] + }, { + "ID": 21271, + "SourceStructureID": 133779, + "TargetStructureID": 13525, + "Label": "133779-13525 via Conventional from 133781 -> 129031", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133781, + "TargetID": 129031, + "Directional": true + }] + }, { + "ID": 21272, + "SourceStructureID": 133782, + "TargetStructureID": 13525, + "Label": "133782-13525 via Conventional from 133783 -> 129043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133783, + "TargetID": 129043, + "Directional": true + }] + }, { + "ID": 21273, + "SourceStructureID": 133784, + "TargetStructureID": 13525, + "Label": "133784-13525 via Conventional from 133785 -> 129130", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133785, + "TargetID": 129130, + "Directional": true + }] + }, { + "ID": 21274, + "SourceStructureID": 133786, + "TargetStructureID": 13525, + "Label": "133786-13525 via Conventional from 133787 -> 130233", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133787, + "TargetID": 130233, + "Directional": true + }] + }, { + "ID": 21275, + "SourceStructureID": 133804, + "TargetStructureID": 13525, + "Label": "133804-13525 via Conventional from 133805 -> 129027", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 133805, + "TargetID": 129027, + "Directional": true + }] + }, { + "ID": 21276, + "SourceStructureID": 134553, + "TargetStructureID": 7129, + "Label": "134553-7129 via Conventional from 3695 -> 54019, 3758 -> 54029", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 3695, + "TargetID": 54019, + "Directional": true + }, { + "SourceID": 3758, + "TargetID": 54029, + "Directional": true + }] + }, { + "ID": 21277, + "SourceStructureID": 134553, + "TargetStructureID": 16026, + "Label": "134553-16026 via Conventional from 3697 -> 22328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 3697, + "TargetID": 22328, + "Directional": true + }] + }, { + "ID": 21278, + "SourceStructureID": 135183, + "TargetStructureID": 70987, + "Label": "135183-70987 via Conventional from 135184 -> 71022", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135184, + "TargetID": 71022, + "Directional": true + }] + }, { + "ID": 21279, + "SourceStructureID": 135186, + "TargetStructureID": 135183, + "Label": "135186-135183 via Conventional from 135187 -> 135185", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135187, + "TargetID": 135185, + "Directional": true + }] + }, { + "ID": 21280, + "SourceStructureID": 135196, + "TargetStructureID": 334, + "Label": "135196-334 via Conventional from 135197 -> 135198", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135197, + "TargetID": 135198, + "Directional": true + }] + }, { + "ID": 21281, + "SourceStructureID": 135208, + "TargetStructureID": 5117, + "Label": "135208-5117 via Conventional from 135209 -> 135206", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135209, + "TargetID": 135206, + "Directional": true + }] + }, { + "ID": 21282, + "SourceStructureID": 135213, + "TargetStructureID": 5117, + "Label": "135213-5117 via Ribbon Synapse from 135217 -> 135218", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135217, + "TargetID": 135218, + "Directional": true + }] + }, { + "ID": 21283, + "SourceStructureID": 135225, + "TargetStructureID": 135862, + "Label": "135225-135862 via Conventional from 135864 -> 135863", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135864, + "TargetID": 135863, + "Directional": true + }] + }, { + "ID": 21284, + "SourceStructureID": 135225, + "TargetStructureID": 135884, + "Label": "135225-135884 via Conventional from 135883 -> 135885", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135883, + "TargetID": 135885, + "Directional": true + }] + }, { + "ID": 21285, + "SourceStructureID": 135225, + "TargetStructureID": 135909, + "Label": "135225-135909 via Conventional from 135234 -> 135910", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135234, + "TargetID": 135910, + "Directional": true + }] + }, { + "ID": 21286, + "SourceStructureID": 135225, + "TargetStructureID": 135924, + "Label": "135225-135924 via Conventional from 135235 -> 135925", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135235, + "TargetID": 135925, + "Directional": true + }] + }, { + "ID": 21287, + "SourceStructureID": 135225, + "TargetStructureID": 135982, + "Label": "135225-135982 via Conventional from 135828 -> 135983", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135828, + "TargetID": 135983, + "Directional": true + }] + }, { + "ID": 21288, + "SourceStructureID": 135225, + "TargetStructureID": 136005, + "Label": "135225-136005 via Conventional from 136004 -> 136006", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136004, + "TargetID": 136006, + "Directional": true + }] + }, { + "ID": 21289, + "SourceStructureID": 135225, + "TargetStructureID": 136042, + "Label": "135225-136042 via Conventional from 135252 -> 136043", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135252, + "TargetID": 136043, + "Directional": true + }] + }, { + "ID": 21290, + "SourceStructureID": 135225, + "TargetStructureID": 136046, + "Label": "135225-136046 via Conventional from 135251 -> 136048", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135251, + "TargetID": 136048, + "Directional": true + }] + }, { + "ID": 21291, + "SourceStructureID": 135229, + "TargetStructureID": 135225, + "Label": "135229-135225 via Conventional from 135230 -> 135228", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135230, + "TargetID": 135228, + "Directional": true + }] + }, { + "ID": 21292, + "SourceStructureID": 135258, + "TargetStructureID": 135225, + "Label": "135258-135225 via Conventional from 135259 -> 135257", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135259, + "TargetID": 135257, + "Directional": true + }] + }, { + "ID": 21293, + "SourceStructureID": 135281, + "TargetStructureID": 135225, + "Label": "135281-135225 via Conventional from 135283 -> 135279", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135283, + "TargetID": 135279, + "Directional": true + }] + }, { + "ID": 21294, + "SourceStructureID": 135563, + "TargetStructureID": 5530, + "Label": "135563-5530 via Conventional from 135565 -> 135564", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135565, + "TargetID": 135564, + "Directional": true + }] + }, { + "ID": 21295, + "SourceStructureID": 135877, + "TargetStructureID": 135225, + "Label": "135877-135225 via Ribbon Synapse from 135881 -> 135882", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135881, + "TargetID": 135882, + "Directional": true + }] + }, { + "ID": 21296, + "SourceStructureID": 135877, + "TargetStructureID": 135876, + "Label": "135877-135876 via Ribbon Synapse from 135879 -> 135880", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 135879, + "TargetID": 135880, + "Directional": true + }] + }, { + "ID": 21297, + "SourceStructureID": 135941, + "TargetStructureID": 135225, + "Label": "135941-135225 via Conventional from 135945 -> 135946", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135945, + "TargetID": 135946, + "Directional": true + }] + }, { + "ID": 21298, + "SourceStructureID": 135994, + "TargetStructureID": 135225, + "Label": "135994-135225 via Conventional from 135996 -> 135997", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 135996, + "TargetID": 135997, + "Directional": true + }] + }, { + "ID": 21299, + "SourceStructureID": 136026, + "TargetStructureID": 135225, + "Label": "136026-135225 via Conventional from 136027 -> 135246", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136027, + "TargetID": 135246, + "Directional": true + }] + }, { + "ID": 21300, + "SourceStructureID": 136033, + "TargetStructureID": 135225, + "Label": "136033-135225 via Ribbon Synapse from 136034 -> 136035", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136034, + "TargetID": 136035, + "Directional": true + }] + }, { + "ID": 21301, + "SourceStructureID": 136037, + "TargetStructureID": 135225, + "Label": "136037-135225 via Conventional from 136038 -> 135249", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136038, + "TargetID": 135249, + "Directional": true + }] + }, { + "ID": 21302, + "SourceStructureID": 136075, + "TargetStructureID": 135225, + "Label": "136075-135225 via Conventional from 136076 -> 135277", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136076, + "TargetID": 135277, + "Directional": true + }] + }, { + "ID": 21303, + "SourceStructureID": 136127, + "TargetStructureID": 11238, + "Label": "136127-11238 via Ribbon Synapse from 136129 -> 136124", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136129, + "TargetID": 136124, + "Directional": true + }] + }, { + "ID": 21304, + "SourceStructureID": 136140, + "TargetStructureID": 11238, + "Label": "136140-11238 via Ribbon Synapse from 136141 -> 136139", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136141, + "TargetID": 136139, + "Directional": true + }] + }, { + "ID": 21305, + "SourceStructureID": 136256, + "TargetStructureID": 7361, + "Label": "136256-7361 via Conventional from 136257 -> 136255, 136259 -> 136258", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136257, + "TargetID": 136255, + "Directional": true + }, { + "SourceID": 136259, + "TargetID": 136258, + "Directional": true + }] + }, { + "ID": 21306, + "SourceStructureID": 136291, + "TargetStructureID": 11238, + "Label": "136291-11238 via Ribbon Synapse from 136292 -> 136293", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136292, + "TargetID": 136293, + "Directional": true + }] + }, { + "ID": 21307, + "SourceStructureID": 136362, + "TargetStructureID": 28950, + "Label": "136362-28950 via Conventional from 136363 -> 136360", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136363, + "TargetID": 136360, + "Directional": true + }] + }, { + "ID": 21308, + "SourceStructureID": 136381, + "TargetStructureID": 5582, + "Label": "136381-5582 via Conventional from 136382 -> 136380", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136382, + "TargetID": 136380, + "Directional": true + }] + }, { + "ID": 21309, + "SourceStructureID": 136513, + "TargetStructureID": 136432, + "Label": "136513-136432 via Ribbon Synapse from 136514 -> 136512", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136514, + "TargetID": 136512, + "Directional": true + }] + }, { + "ID": 21310, + "SourceStructureID": 136529, + "TargetStructureID": 136432, + "Label": "136529-136432 via Ribbon Synapse from 136530 -> 136528", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136530, + "TargetID": 136528, + "Directional": true + }] + }, { + "ID": 21311, + "SourceStructureID": 136674, + "TargetStructureID": 525, + "Label": "136674-525 via Conventional from 136675 -> 6236", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136675, + "TargetID": 6236, + "Directional": true + }] + }, { + "ID": 21312, + "SourceStructureID": 136674, + "TargetStructureID": 6997, + "Label": "136674-6997 via Unknown from 136676 -> 136562", + "Type": "Unknown", + "Directional": true, + "Links": [{ + "SourceID": 136676, + "TargetID": 136562, + "Directional": true + }] + }, { + "ID": 21313, + "SourceStructureID": 136796, + "TargetStructureID": 5515, + "Label": "136796-5515 via Conventional from 136811 -> 119383", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136811, + "TargetID": 119383, + "Directional": true + }] + }, { + "ID": 21314, + "SourceStructureID": 136843, + "TargetStructureID": 138, + "Label": "136843-138 via Conventional from 136844 -> 136842", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136844, + "TargetID": 136842, + "Directional": true + }] + }, { + "ID": 21315, + "SourceStructureID": 136884, + "TargetStructureID": 8575, + "Label": "136884-8575 via Ribbon Synapse from 136885 -> 62261", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136885, + "TargetID": 62261, + "Directional": true + }] + }, { + "ID": 21316, + "SourceStructureID": 136913, + "TargetStructureID": 10963, + "Label": "136913-10963 via Conventional from 136915 -> 136911", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136915, + "TargetID": 136911, + "Directional": true + }] + }, { + "ID": 21317, + "SourceStructureID": 136917, + "TargetStructureID": 10963, + "Label": "136917-10963 via Conventional from 136918 -> 136916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136918, + "TargetID": 136916, + "Directional": true + }] + }, { + "ID": 21318, + "SourceStructureID": 136927, + "TargetStructureID": 136931, + "Label": "136927-136931 via Ribbon Synapse from 136929 -> 136935", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136929, + "TargetID": 136935, + "Directional": true + }] + }, { + "ID": 21319, + "SourceStructureID": 136936, + "TargetStructureID": 136931, + "Label": "136936-136931 via Ribbon Synapse from 136937 -> 136938", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136937, + "TargetID": 136938, + "Directional": true + }] + }, { + "ID": 21320, + "SourceStructureID": 136947, + "TargetStructureID": 46741, + "Label": "136947-46741 via Ribbon Synapse from 136948 -> 136946", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136948, + "TargetID": 136946, + "Directional": true + }] + }, { + "ID": 21321, + "SourceStructureID": 136952, + "TargetStructureID": 46741, + "Label": "136952-46741 via Ribbon Synapse from 136953 -> 136951, 136960 -> 136961", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 136953, + "TargetID": 136951, + "Directional": true + }, { + "SourceID": 136960, + "TargetID": 136961, + "Directional": true + }] + }, { + "ID": 21322, + "SourceStructureID": 136956, + "TargetStructureID": 165, + "Label": "136956-165 via Conventional from 136957 -> 21667", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136957, + "TargetID": 21667, + "Directional": true + }] + }, { + "ID": 21323, + "SourceStructureID": 136970, + "TargetStructureID": 165, + "Label": "136970-165 via Conventional from 136971 -> 21665", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136971, + "TargetID": 21665, + "Directional": true + }] + }, { + "ID": 21324, + "SourceStructureID": 136970, + "TargetStructureID": 5543, + "Label": "136970-5543 via Conventional from 136991 -> 17079", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136991, + "TargetID": 17079, + "Directional": true + }] + }, { + "ID": 21325, + "SourceStructureID": 136970, + "TargetStructureID": 11092, + "Label": "136970-11092 via Conventional from 136992 -> 128637", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136992, + "TargetID": 128637, + "Directional": true + }] + }, { + "ID": 21326, + "SourceStructureID": 136970, + "TargetStructureID": 46741, + "Label": "136970-46741 via Conventional from 136972 -> 136959", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136972, + "TargetID": 136959, + "Directional": true + }] + }, { + "ID": 21327, + "SourceStructureID": 136970, + "TargetStructureID": 98127, + "Label": "136970-98127 via Conventional from 136975 -> 98916", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136975, + "TargetID": 98916, + "Directional": true + }] + }, { + "ID": 21328, + "SourceStructureID": 136970, + "TargetStructureID": 158774, + "Label": "136970-158774 via Conventional from 136973 -> 158775", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 136973, + "TargetID": 158775, + "Directional": true + }] + }, { + "ID": 21329, + "SourceStructureID": 137002, + "TargetStructureID": 46741, + "Label": "137002-46741 via Ribbon Synapse from 137003 -> 137001", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137003, + "TargetID": 137001, + "Directional": true + }] + }, { + "ID": 21330, + "SourceStructureID": 137007, + "TargetStructureID": 28950, + "Label": "137007-28950 via Conventional from 137008 -> 29042", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137008, + "TargetID": 29042, + "Directional": true + }] + }, { + "ID": 21331, + "SourceStructureID": 137009, + "TargetStructureID": 6128, + "Label": "137009-6128 via Conventional from 137011 -> 33749", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137011, + "TargetID": 33749, + "Directional": true + }] + }, { + "ID": 21332, + "SourceStructureID": 137009, + "TargetStructureID": 28950, + "Label": "137009-28950 via Conventional from 137010 -> 29040", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137010, + "TargetID": 29040, + "Directional": true + }] + }, { + "ID": 21333, + "SourceStructureID": 137012, + "TargetStructureID": 11092, + "Label": "137012-11092 via Conventional from 137014 -> 128646", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137014, + "TargetID": 128646, + "Directional": true + }] + }, { + "ID": 21334, + "SourceStructureID": 137040, + "TargetStructureID": 137024, + "Label": "137040-137024 via Ribbon Synapse from 137041 -> 137039", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137041, + "TargetID": 137039, + "Directional": true + }] + }, { + "ID": 21335, + "SourceStructureID": 137070, + "TargetStructureID": 7861, + "Label": "137070-7861 via Ribbon Synapse from 137082 -> 137083", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137082, + "TargetID": 137083, + "Directional": true + }] + }, { + "ID": 21336, + "SourceStructureID": 137070, + "TargetStructureID": 137084, + "Label": "137070-137084 via Ribbon Synapse from 137086 -> 137087", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137086, + "TargetID": 137087, + "Directional": true + }] + }, { + "ID": 21337, + "SourceStructureID": 137084, + "TargetStructureID": 137070, + "Label": "137084-137070 via Conventional from 137085 -> 137081", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137085, + "TargetID": 137081, + "Directional": true + }] + }, { + "ID": 21338, + "SourceStructureID": 137099, + "TargetStructureID": 46741, + "Label": "137099-46741 via Conventional from 137100 -> 137097", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137100, + "TargetID": 137097, + "Directional": true + }] + }, { + "ID": 21339, + "SourceStructureID": 137113, + "TargetStructureID": 341, + "Label": "137113-341 via Conventional from 137114 -> 30055", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137114, + "TargetID": 30055, + "Directional": true + }] + }, { + "ID": 21340, + "SourceStructureID": 137147, + "TargetStructureID": 137122, + "Label": "137147-137122 via Conventional from 137148 -> 137149", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137148, + "TargetID": 137149, + "Directional": true + }] + }, { + "ID": 21341, + "SourceStructureID": 137155, + "TargetStructureID": 137122, + "Label": "137155-137122 via Ribbon Synapse from 137156 -> 137153", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137156, + "TargetID": 137153, + "Directional": true + }] + }, { + "ID": 21342, + "SourceStructureID": 137159, + "TargetStructureID": 968, + "Label": "137159-968 via Conventional from 31350 -> 12181", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 31350, + "TargetID": 12181, + "Directional": true + }] + }, { + "ID": 21343, + "SourceStructureID": 137159, + "TargetStructureID": 137122, + "Label": "137159-137122 via Conventional from 137160 -> 137158", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137160, + "TargetID": 137158, + "Directional": true + }] + }, { + "ID": 21344, + "SourceStructureID": 137159, + "TargetStructureID": 147217, + "Label": "137159-147217 via Conventional from 147216 -> 147218", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147216, + "TargetID": 147218, + "Directional": true + }] + }, { + "ID": 21345, + "SourceStructureID": 137162, + "TargetStructureID": 137159, + "Label": "137162-137159 via Ribbon Synapse from 137163 -> 137161", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137163, + "TargetID": 137161, + "Directional": true + }] + }, { + "ID": 21346, + "SourceStructureID": 137168, + "TargetStructureID": 137122, + "Label": "137168-137122 via Ribbon Synapse from 137169 -> 137167", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137169, + "TargetID": 137167, + "Directional": true + }] + }, { + "ID": 21347, + "SourceStructureID": 137189, + "TargetStructureID": 38810, + "Label": "137189-38810 via BC Conventional Synapse from 137195 -> 137188", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137195, + "TargetID": 137188, + "Directional": true + }] + }, { + "ID": 21348, + "SourceStructureID": 137189, + "TargetStructureID": 137192, + "Label": "137189-137192 via Ribbon Synapse from 137191 -> 137193", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 137191, + "TargetID": 137193, + "Directional": true + }] + }, { + "ID": 21349, + "SourceStructureID": 137192, + "TargetStructureID": 137189, + "Label": "137192-137189 via Conventional from 137194 -> 137190", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 137194, + "TargetID": 137190, + "Directional": true + }] + }, { + "ID": 21350, + "SourceStructureID": 147203, + "TargetStructureID": 38810, + "Label": "147203-38810 via Conventional from 147204 -> 137186", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147204, + "TargetID": 137186, + "Directional": true + }] + }, { + "ID": 21351, + "SourceStructureID": 147213, + "TargetStructureID": 115, + "Label": "147213-115 via Ribbon Synapse from 147215 -> 42778", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147215, + "TargetID": 42778, + "Directional": true + }] + }, { + "ID": 21352, + "SourceStructureID": 147213, + "TargetStructureID": 137159, + "Label": "147213-137159 via Ribbon Synapse from 147214 -> 147212", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147214, + "TargetID": 147212, + "Directional": true + }] + }, { + "ID": 21353, + "SourceStructureID": 147220, + "TargetStructureID": 8575, + "Label": "147220-8575 via BC Conventional Synapse from 147223 -> 147219", + "Type": "BC Conventional Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147223, + "TargetID": 147219, + "Directional": true + }] + }, { + "ID": 21354, + "SourceStructureID": 147696, + "TargetStructureID": 168, + "Label": "147696-168 via Conventional from 147736 -> 147737, 147738 -> 4224", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147736, + "TargetID": 147737, + "Directional": true + }, { + "SourceID": 147738, + "TargetID": 4224, + "Directional": true + }] + }, { + "ID": 21355, + "SourceStructureID": 147696, + "TargetStructureID": 170, + "Label": "147696-170 via Conventional from 88972 -> 88973, 147743 -> 1333", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 88972, + "TargetID": 88973, + "Directional": true + }, { + "SourceID": 147743, + "TargetID": 1333, + "Directional": true + }] + }, { + "ID": 21356, + "SourceStructureID": 147696, + "TargetStructureID": 176, + "Label": "147696-176 via Conventional from 147707 -> 125825, 147710 -> 5887, 147715 -> 5882, 147732 -> 20030", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147707, + "TargetID": 125825, + "Directional": true + }, { + "SourceID": 147710, + "TargetID": 5887, + "Directional": true + }, { + "SourceID": 147715, + "TargetID": 5882, + "Directional": true + }, { + "SourceID": 147732, + "TargetID": 20030, + "Directional": true + }] + }, { + "ID": 21357, + "SourceStructureID": 147696, + "TargetStructureID": 464, + "Label": "147696-464 via Conventional from 147754 -> 8068", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147754, + "TargetID": 8068, + "Directional": true + }] + }, { + "ID": 21358, + "SourceStructureID": 147696, + "TargetStructureID": 595, + "Label": "147696-595 via Conventional from 147741 -> 46636", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147741, + "TargetID": 46636, + "Directional": true + }] + }, { + "ID": 21359, + "SourceStructureID": 147696, + "TargetStructureID": 5530, + "Label": "147696-5530 via Conventional from 147728 -> 42147", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147728, + "TargetID": 42147, + "Directional": true + }] + }, { + "ID": 21360, + "SourceStructureID": 147696, + "TargetStructureID": 5601, + "Label": "147696-5601 via Conventional from 147700 -> 127429", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147700, + "TargetID": 127429, + "Directional": true + }] + }, { + "ID": 21361, + "SourceStructureID": 147696, + "TargetStructureID": 8580, + "Label": "147696-8580 via Conventional from 147705 -> 147706", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147705, + "TargetID": 147706, + "Directional": true + }] + }, { + "ID": 21362, + "SourceStructureID": 147696, + "TargetStructureID": 43716, + "Label": "147696-43716 via Conventional from 147697 -> 147695", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147697, + "TargetID": 147695, + "Directional": true + }] + }, { + "ID": 21363, + "SourceStructureID": 147696, + "TargetStructureID": 81014, + "Label": "147696-81014 via Conventional from 147726 -> 147727", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147726, + "TargetID": 147727, + "Directional": true + }] + }, { + "ID": 21364, + "SourceStructureID": 147696, + "TargetStructureID": 88954, + "Label": "147696-88954 via Conventional from 147744 -> 147745", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147744, + "TargetID": 147745, + "Directional": true + }] + }, { + "ID": 21365, + "SourceStructureID": 147696, + "TargetStructureID": 127764, + "Label": "147696-127764 via Conventional from 147711 -> 129275", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147711, + "TargetID": 129275, + "Directional": true + }] + }, { + "ID": 21366, + "SourceStructureID": 147696, + "TargetStructureID": 147713, + "Label": "147696-147713 via Conventional from 147712 -> 147716", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147712, + "TargetID": 147716, + "Directional": true + }] + }, { + "ID": 21367, + "SourceStructureID": 147696, + "TargetStructureID": 147750, + "Label": "147696-147750 via Conventional from 147749 -> 147752", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147749, + "TargetID": 147752, + "Directional": true + }] + }, { + "ID": 21368, + "SourceStructureID": 147698, + "TargetStructureID": 5601, + "Label": "147698-5601 via Conventional from 147699 -> 23970", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147699, + "TargetID": 23970, + "Directional": true + }] + }, { + "ID": 21369, + "SourceStructureID": 147718, + "TargetStructureID": 147696, + "Label": "147718-147696 via Conventional from 147719 -> 147717", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147719, + "TargetID": 147717, + "Directional": true + }] + }, { + "ID": 21370, + "SourceStructureID": 147734, + "TargetStructureID": 147696, + "Label": "147734-147696 via Conventional from 147735 -> 147733", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147735, + "TargetID": 147733, + "Directional": true + }] + }, { + "ID": 21371, + "SourceStructureID": 147750, + "TargetStructureID": 41905, + "Label": "147750-41905 via Conventional from 147751 -> 41907", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147751, + "TargetID": 41907, + "Directional": true + }] + }, { + "ID": 21372, + "SourceStructureID": 147765, + "TargetStructureID": 15796, + "Label": "147765-15796 via Conventional from 147766 -> 147764", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147766, + "TargetID": 147764, + "Directional": true + }] + }, { + "ID": 21373, + "SourceStructureID": 147769, + "TargetStructureID": 15796, + "Label": "147769-15796 via Conventional from 147770 -> 147768", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147770, + "TargetID": 147768, + "Directional": true + }] + }, { + "ID": 21374, + "SourceStructureID": 147776, + "TargetStructureID": 15796, + "Label": "147776-15796 via Conventional from 147777 -> 147775", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147777, + "TargetID": 147775, + "Directional": true + }] + }, { + "ID": 21375, + "SourceStructureID": 147781, + "TargetStructureID": 15796, + "Label": "147781-15796 via Conventional from 147782 -> 147780", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147782, + "TargetID": 147780, + "Directional": true + }] + }, { + "ID": 21376, + "SourceStructureID": 147781, + "TargetStructureID": 120347, + "Label": "147781-120347 via Conventional from 147783 -> 147784", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147783, + "TargetID": 147784, + "Directional": true + }] + }, { + "ID": 21377, + "SourceStructureID": 147788, + "TargetStructureID": 15796, + "Label": "147788-15796 via Conventional from 147789 -> 147787", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147789, + "TargetID": 147787, + "Directional": true + }] + }, { + "ID": 21378, + "SourceStructureID": 147793, + "TargetStructureID": 5107, + "Label": "147793-5107 via Conventional from 147794 -> 5143", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147794, + "TargetID": 5143, + "Directional": true + }] + }, { + "ID": 21379, + "SourceStructureID": 147796, + "TargetStructureID": 5107, + "Label": "147796-5107 via Ribbon Synapse from 147797 -> 147795", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147797, + "TargetID": 147795, + "Directional": true + }] + }, { + "ID": 21380, + "SourceStructureID": 147805, + "TargetStructureID": 5107, + "Label": "147805-5107 via Conventional from 147806 -> 64968", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 147806, + "TargetID": 64968, + "Directional": true + }] + }, { + "ID": 21381, + "SourceStructureID": 147809, + "TargetStructureID": 476, + "Label": "147809-476 via Ribbon Synapse from 147811 -> 147812", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147811, + "TargetID": 147812, + "Directional": true + }] + }, { + "ID": 21382, + "SourceStructureID": 147809, + "TargetStructureID": 5107, + "Label": "147809-5107 via Ribbon Synapse from 147810 -> 147808", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147810, + "TargetID": 147808, + "Directional": true + }] + }, { + "ID": 21383, + "SourceStructureID": 147809, + "TargetStructureID": 5421, + "Label": "147809-5421 via Ribbon Synapse from 147810 -> 130890", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 147810, + "TargetID": 130890, + "Directional": true + }] + }, { + "ID": 21384, + "SourceStructureID": 148302, + "TargetStructureID": 6123, + "Label": "148302-6123 via Conventional from 148305 -> 148299", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148305, + "TargetID": 148299, + "Directional": true + }] + }, { + "ID": 21385, + "SourceStructureID": 148314, + "TargetStructureID": 5107, + "Label": "148314-5107 via Conventional from 148315 -> 148313", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148315, + "TargetID": 148313, + "Directional": true + }] + }, { + "ID": 21386, + "SourceStructureID": 148317, + "TargetStructureID": 5107, + "Label": "148317-5107 via Conventional from 148318 -> 148319", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148318, + "TargetID": 148319, + "Directional": true + }] + }, { + "ID": 21387, + "SourceStructureID": 148330, + "TargetStructureID": 5107, + "Label": "148330-5107 via Conventional from 148331 -> 148329", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148331, + "TargetID": 148329, + "Directional": true + }] + }, { + "ID": 21388, + "SourceStructureID": 148332, + "TargetStructureID": 5107, + "Label": "148332-5107 via Conventional from 148333 -> 148328", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148333, + "TargetID": 148328, + "Directional": true + }] + }, { + "ID": 21389, + "SourceStructureID": 148335, + "TargetStructureID": 5107, + "Label": "148335-5107 via Conventional from 148336 -> 148334", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148336, + "TargetID": 148334, + "Directional": true + }] + }, { + "ID": 21390, + "SourceStructureID": 148337, + "TargetStructureID": 5107, + "Label": "148337-5107 via Conventional from 148338 -> 148339", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148338, + "TargetID": 148339, + "Directional": true + }] + }, { + "ID": 21391, + "SourceStructureID": 148343, + "TargetStructureID": 148335, + "Label": "148343-148335 via Conventional from 148344 -> 148342", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148344, + "TargetID": 148342, + "Directional": true + }] + }, { + "ID": 21392, + "SourceStructureID": 148346, + "TargetStructureID": 5107, + "Label": "148346-5107 via Conventional from 148347 -> 148345", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148347, + "TargetID": 148345, + "Directional": true + }] + }, { + "ID": 21393, + "SourceStructureID": 148351, + "TargetStructureID": 5107, + "Label": "148351-5107 via Conventional from 148352 -> 148350", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148352, + "TargetID": 148350, + "Directional": true + }] + }, { + "ID": 21394, + "SourceStructureID": 148354, + "TargetStructureID": 5107, + "Label": "148354-5107 via Conventional from 148355 -> 148356", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148355, + "TargetID": 148356, + "Directional": true + }] + }, { + "ID": 21395, + "SourceStructureID": 148358, + "TargetStructureID": 5107, + "Label": "148358-5107 via Conventional from 148359 -> 148357", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148359, + "TargetID": 148357, + "Directional": true + }] + }, { + "ID": 21396, + "SourceStructureID": 148361, + "TargetStructureID": 5107, + "Label": "148361-5107 via Conventional from 148362 -> 148360", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148362, + "TargetID": 148360, + "Directional": true + }] + }, { + "ID": 21397, + "SourceStructureID": 148364, + "TargetStructureID": 5107, + "Label": "148364-5107 via Conventional from 148365 -> 148363", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148365, + "TargetID": 148363, + "Directional": true + }] + }, { + "ID": 21398, + "SourceStructureID": 148367, + "TargetStructureID": 5107, + "Label": "148367-5107 via Conventional from 148368 -> 148366", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148368, + "TargetID": 148366, + "Directional": true + }] + }, { + "ID": 21399, + "SourceStructureID": 148371, + "TargetStructureID": 5107, + "Label": "148371-5107 via Conventional from 148372 -> 148370", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148372, + "TargetID": 148370, + "Directional": true + }] + }, { + "ID": 21400, + "SourceStructureID": 148374, + "TargetStructureID": 148371, + "Label": "148374-148371 via Conventional from 148375 -> 148373", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148375, + "TargetID": 148373, + "Directional": true + }] + }, { + "ID": 21401, + "SourceStructureID": 148377, + "TargetStructureID": 148374, + "Label": "148377-148374 via Ribbon Synapse from 148378 -> 148376", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148378, + "TargetID": 148376, + "Directional": true + }] + }, { + "ID": 21402, + "SourceStructureID": 148381, + "TargetStructureID": 148374, + "Label": "148381-148374 via Conventional from 148382 -> 148380", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148382, + "TargetID": 148380, + "Directional": true + }] + }, { + "ID": 21403, + "SourceStructureID": 148384, + "TargetStructureID": 148374, + "Label": "148384-148374 via Ribbon Synapse from 148385 -> 148383", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148385, + "TargetID": 148383, + "Directional": true + }] + }, { + "ID": 21404, + "SourceStructureID": 148389, + "TargetStructureID": 85629, + "Label": "148389-85629 via Ribbon Synapse from 148390 -> 85840", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148390, + "TargetID": 85840, + "Directional": true + }] + }, { + "ID": 21405, + "SourceStructureID": 148397, + "TargetStructureID": 148374, + "Label": "148397-148374 via Ribbon Synapse from 148398 -> 148399", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 148398, + "TargetID": 148399, + "Directional": true + }] + }, { + "ID": 21406, + "SourceStructureID": 148402, + "TargetStructureID": 148374, + "Label": "148402-148374 via Conventional from 148403 -> 148401", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 148403, + "TargetID": 148401, + "Directional": true + }] + }, { + "ID": 21407, + "SourceStructureID": 158498, + "TargetStructureID": 13525, + "Label": "158498-13525 via Conventional from 158499 -> 158500", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 158499, + "TargetID": 158500, + "Directional": true + }] + }, { + "ID": 21408, + "SourceStructureID": 158503, + "TargetStructureID": 158472, + "Label": "158503-158472 via Conventional from 158504 -> 158502", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 158504, + "TargetID": 158502, + "Directional": true + }] + }, { + "ID": 21409, + "SourceStructureID": 158507, + "TargetStructureID": 158472, + "Label": "158507-158472 via Conventional from 158508 -> 158506", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 158508, + "TargetID": 158506, + "Directional": true + }] + }, { + "ID": 21410, + "SourceStructureID": 158518, + "TargetStructureID": 13525, + "Label": "158518-13525 via Ribbon Synapse from 158519 -> 158501, 158533 -> 158534", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 158519, + "TargetID": 158501, + "Directional": true + }, { + "SourceID": 158533, + "TargetID": 158534, + "Directional": true + }] + }, { + "ID": 21411, + "SourceStructureID": 158846, + "TargetStructureID": 7157, + "Label": "158846-7157 via Ribbon Synapse from 158849 -> 8211, 158851 -> 8209, 158852 -> 8208", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 158849, + "TargetID": 8211, + "Directional": true + }, { + "SourceID": 158851, + "TargetID": 8209, + "Directional": true + }, { + "SourceID": 158852, + "TargetID": 8208, + "Directional": true + }] + }, { + "ID": 21412, + "SourceStructureID": 158878, + "TargetStructureID": 30015, + "Label": "158878-30015 via Ribbon Synapse from 158882 -> 30030", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 158882, + "TargetID": 30030, + "Directional": true + }] + }, { + "ID": 21413, + "SourceStructureID": 158899, + "TargetStructureID": 5435, + "Label": "158899-5435 via Ribbon Synapse from 158903 -> 41816, 158964 -> 41818", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 158903, + "TargetID": 41816, + "Directional": true + }, { + "SourceID": 158964, + "TargetID": 41818, + "Directional": true + }] + }, { + "ID": 21414, + "SourceStructureID": 159028, + "TargetStructureID": 61270, + "Label": "159028-61270 via Ribbon Synapse from 159029 -> 68864", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 159029, + "TargetID": 68864, + "Directional": true + }] + }, { + "ID": 21415, + "SourceStructureID": 159045, + "TargetStructureID": 115, + "Label": "159045-115 via Ribbon Synapse from 159071 -> 8113, 159074 -> 8111", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 159071, + "TargetID": 8113, + "Directional": true + }, { + "SourceID": 159074, + "TargetID": 8111, + "Directional": true + }] + }, { + "ID": 21416, + "SourceStructureID": 159118, + "TargetStructureID": 158477, + "Label": "159118-158477 via Conventional from 159119 -> 158478", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 159119, + "TargetID": 158478, + "Directional": true + }] + }, { + "ID": 21417, + "SourceStructureID": 159123, + "TargetStructureID": 158477, + "Label": "159123-158477 via Conventional from 159124 -> 158509", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 159124, + "TargetID": 158509, + "Directional": true + }] + }, { + "ID": 21418, + "SourceStructureID": 159125, + "TargetStructureID": 158473, + "Label": "159125-158473 via Ribbon Synapse from 159126 -> 158511", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 159126, + "TargetID": 158511, + "Directional": true + }] + }, { + "ID": 21419, + "SourceStructureID": 159146, + "TargetStructureID": 158515, + "Label": "159146-158515 via Conventional from 159147 -> 158516", + "Type": "Conventional", + "Directional": true, + "Links": [{ + "SourceID": 159147, + "TargetID": 158516, + "Directional": true + }] + }, { + "ID": 21420, + "SourceStructureID": 159150, + "TargetStructureID": 13525, + "Label": "159150-13525 via Ribbon Synapse from 159151 -> 158474", + "Type": "Ribbon Synapse", + "Directional": true, + "Links": [{ + "SourceID": 159151, + "TargetID": 158474, + "Directional": true + }] + }] + } +} \ No newline at end of file From 26b5d6fce6171bd662da898b8456076a25869ae1 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Mon, 10 Sep 2018 17:08:03 -0600 Subject: [PATCH 18/24] Fix bug in nodeLink --- src/app/components/connectivityMatrix/cmGraph.js | 4 ++-- src/app/components/nodeLinkView/nodeLinkView.directive.js | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/components/connectivityMatrix/cmGraph.js b/src/app/components/connectivityMatrix/cmGraph.js index b84d734..f2bf3bc 100644 --- a/src/app/components/connectivityMatrix/cmGraph.js +++ b/src/app/components/connectivityMatrix/cmGraph.js @@ -313,7 +313,7 @@ export class cmGraph { // if a node is in paths, add it to the subgraph graph.nodes().forEach(function (key) { - let id = parseInt(key); + let id = key; if (nodes.indexOf(id) != -1) { let value = graph.node(key); subgraph.setNode(id, value); @@ -322,7 +322,7 @@ export class cmGraph { // if an edge's source and target nodes in paths, add it to the subgraph graph.edges().forEach(function (key) { - let id = parseInt(key.name); + let id = key.name; if (edges.indexOf(id) != -1) { subgraph.setEdge(key.v, key.w, graph.edge(key), key.name); } diff --git a/src/app/components/nodeLinkView/nodeLinkView.directive.js b/src/app/components/nodeLinkView/nodeLinkView.directive.js index 11fc818..588c03c 100644 --- a/src/app/components/nodeLinkView/nodeLinkView.directive.js +++ b/src/app/components/nodeLinkView/nodeLinkView.directive.js @@ -85,7 +85,8 @@ class NodeLinkViewDirectiveController { setSelectedPaths(signal, paths) { this.paths = paths; this.selectedSubgraph = this.model.getCmGraph().getSubgraph(this.paths); - + console.log(paths); + console.log(this.selectedSubgraph); let self = this; this.$timeout(function () { if (self.layout) { From d13fb6e3d6f7d091a44040928590c60873a2cb7b Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Wed, 12 Sep 2018 13:22:28 -0600 Subject: [PATCH 19/24] Bug fixes in node link and graph. --- .../components/connectivityMatrix/cmGraph.js | 26 ++++- .../connectivityMatrixView/cmMatrixBase.js | 94 +++++++++++++------ .../nodeLinkView/nodeLinkView.directive.js | 15 +-- src/app/main/main.controller.js | 21 +++-- 4 files changed, 109 insertions(+), 47 deletions(-) diff --git a/src/app/components/connectivityMatrix/cmGraph.js b/src/app/components/connectivityMatrix/cmGraph.js index f2bf3bc..fcb5a65 100644 --- a/src/app/components/connectivityMatrix/cmGraph.js +++ b/src/app/components/connectivityMatrix/cmGraph.js @@ -2,7 +2,9 @@ graphlib */ -import { Utils } from "../utils/utils" +import { + Utils +} from "../utils/utils" export class cmGraph { @@ -50,7 +52,7 @@ export class cmGraph { } attributes = { - linkedStructures: edge.LinkedStructures, + links: edge.Links, sourceSizes: edge.SourceSizes, targetSizes: edge.TargetSizes, sourceStructureId: edge.SourceStructureID, @@ -59,11 +61,27 @@ export class cmGraph { carrier: edge.Carrier }; + let linkedStructures = ""; + if (edge.Links) { + for (let i = 0; i < edge.Links.length; ++i) { + let link = edge.Links[i]; + let description = link.SourceID; + description = description + (link.Directional ? " -> " : " <-> "); + description = description + link.TargetID; + if (linkedStructures.length) { + linkedStructures = linkedStructures + ";"; + } + linkedStructures = linkedStructures + description; + } + } + + attributes.linkedStructures = linkedStructures; + this.edgeDict[edge.ID] = attributes; this.graph.setEdge(sourceId, targetId, attributes, edge.ID); - if (!edge.Directional) { + if (!edge.Directional && edge.SourceStructureID != edge.TargetStructureID) { let id = (-Number(edge.ID)).toString(); self.edgeDict[id] = attributes; this.graph.setEdge(targetId, sourceId, attributes, id); @@ -138,7 +156,7 @@ export class cmGraph { throw 'Bad datatype!'; } else { current.parseFn = function (x) { - return x ? x : 'Null'; + return x ? x.trim() : 'Null'; } } } diff --git a/src/app/components/connectivityMatrixView/cmMatrixBase.js b/src/app/components/connectivityMatrixView/cmMatrixBase.js index 8779e27..f0e063e 100644 --- a/src/app/components/connectivityMatrixView/cmMatrixBase.js +++ b/src/app/components/connectivityMatrixView/cmMatrixBase.js @@ -1,25 +1,61 @@ /*global reorder */ -import {SvgGroupElement} from "./svgGroupElement" -import {cmAttributeLabelVisitor} from "./visitors/cmAttributeLabelVisitor" -import {cmAttributeLabelScentVisitor} from "./visitors/cmAttributeLabelScentVisitor" -import {cmNodeLabelVisitor} from "./visitors/cmNodeLabelVisitor" -import {cmScatterPlot1DVisitor} from "./visitors/cmScatterPlot1DVisitor" -import {cmScatterPlot1DPreprocessor} from "./visitors/cmScatterPlot1DVisitor" -import {cmColorMapPreprocessor} from "./visitors/cmColorMapVisitor" -import {cmColorMapVisitor} from "./visitors/cmColorMapVisitor" -import {cmClearVisitor} from "./visitors/cmClearVisitor" -import {cmBarChartPreprocessor} from "./visitors/cmBarChartVisitor" -import {cmBarChartVisitor} from "./visitors/cmBarChartVisitor" -import {cmRawValueVisitor} from "./visitors/cmRawValueVisitor" -import {cmEditVisibleAttributesVisitor} from "./visitors/cmEditVisibleAttributesVisitor" -import {cmStringAttributeVisitor} from "./visitors/cmStringAttributeVisitor" -import {cmHoverVisitor} from "./visitors/cmHoverVisitor" - -import {cmCategoricalAttributeLabelVisitor} from "./visitors/cmAttributeLabelVisitor" - -import {Utils} from "../utils/utils" -import {UtilsD3} from "../utils/utilsd3" +import { + SvgGroupElement +} from "./svgGroupElement" +import { + cmAttributeLabelVisitor +} from "./visitors/cmAttributeLabelVisitor" +import { + cmAttributeLabelScentVisitor +} from "./visitors/cmAttributeLabelScentVisitor" +import { + cmNodeLabelVisitor +} from "./visitors/cmNodeLabelVisitor" +import { + cmScatterPlot1DVisitor +} from "./visitors/cmScatterPlot1DVisitor" +import { + cmScatterPlot1DPreprocessor +} from "./visitors/cmScatterPlot1DVisitor" +import { + cmColorMapPreprocessor +} from "./visitors/cmColorMapVisitor" +import { + cmColorMapVisitor +} from "./visitors/cmColorMapVisitor" +import { + cmClearVisitor +} from "./visitors/cmClearVisitor" +import { + cmBarChartPreprocessor +} from "./visitors/cmBarChartVisitor" +import { + cmBarChartVisitor +} from "./visitors/cmBarChartVisitor" +import { + cmRawValueVisitor +} from "./visitors/cmRawValueVisitor" +import { + cmEditVisibleAttributesVisitor +} from "./visitors/cmEditVisibleAttributesVisitor" +import { + cmStringAttributeVisitor +} from "./visitors/cmStringAttributeVisitor" +import { + cmHoverVisitor +} from "./visitors/cmHoverVisitor" + +import { + cmCategoricalAttributeLabelVisitor +} from "./visitors/cmAttributeLabelVisitor" + +import { + Utils +} from "../utils/utils" +import { + UtilsD3 +} from "../utils/utilsd3" /** * Manages the matrix svg. @@ -345,7 +381,7 @@ export class cmMatrixBase extends SvgGroupElement { // }, // "output": "scalar" // }); - + // metrics.push({ // "name": "area diff", // "tooltip": "area diff", @@ -397,8 +433,7 @@ export class cmMatrixBase extends SvgGroupElement { getAvailableEncodings(metricOutput) { let metrics = null; if (metricOutput == "scalar") { - metrics = [ - { + metrics = [{ "name": "colormap", "hasScaleOption": true }, @@ -412,11 +447,10 @@ export class cmMatrixBase extends SvgGroupElement { } ]; } else if (metricOutput == "list") { - metrics = [ - { - "name": "bar chart", - "hasScaleOption": true - }]; + metrics = [{ + "name": "bar chart", + "hasScaleOption": true + }]; } return metrics } @@ -1144,7 +1178,8 @@ export class cmMatrixBase extends SvgGroupElement { this.setColorScale(null, this.colorScaleIndexSets, this.colorScales[0]); if (this.colorScaleIndexNodes != -1) { - if (preprocessor.nodeRange[0] < preprocessor.nodeRange[1]) { + if (preprocessor.nodeRange[0] <= preprocessor.nodeRange[1] && + preprocessor.nodeRange[1] > 0) { this.hasSecondLegend = true; this.colorScales[1] = this.mainController.colorScaleService.createColorScale(this.colorScaleIndexNodes, preprocessor.nodeRange); @@ -1190,6 +1225,7 @@ export class cmMatrixBase extends SvgGroupElement { // Prepare internal state for creating the svg table this.initNodeIndexes(model); this.initAttributeState(model); + this.initAttributeData(model); this.initViewIndexes(this.attributes); this.initColStates(); diff --git a/src/app/components/nodeLinkView/nodeLinkView.directive.js b/src/app/components/nodeLinkView/nodeLinkView.directive.js index 588c03c..7ffe94a 100644 --- a/src/app/components/nodeLinkView/nodeLinkView.directive.js +++ b/src/app/components/nodeLinkView/nodeLinkView.directive.js @@ -1,9 +1,15 @@ /*global d3 */ -import {LayeredLayout} from "./layouts/layeredLayout" -import {ForceDirectedLayout} from "./layouts/forceDirectedLayout" -import {Utils} from "../utils/utils" +import { + LayeredLayout +} from "./layouts/layeredLayout" +import { + ForceDirectedLayout +} from "./layouts/forceDirectedLayout" +import { + Utils +} from "../utils/utils" /** * Angular directive that will contain the node-link diagrams. Interaction with this is handled by the @@ -85,8 +91,6 @@ class NodeLinkViewDirectiveController { setSelectedPaths(signal, paths) { this.paths = paths; this.selectedSubgraph = this.model.getCmGraph().getSubgraph(this.paths); - console.log(paths); - console.log(this.selectedSubgraph); let self = this; this.$timeout(function () { if (self.layout) { @@ -103,7 +107,6 @@ class NodeLinkViewDirectiveController { * We don't connect this directly to this.layout b/c of angular memory leaks. */ onHoverNodes(signal, ids) { - if (this.layout) { if (ids) { let nodeIndexes = []; diff --git a/src/app/main/main.controller.js b/src/app/main/main.controller.js index 9e4eb40..862a083 100644 --- a/src/app/main/main.controller.js +++ b/src/app/main/main.controller.js @@ -1,7 +1,11 @@ /* globals d3 reorder saveAs */ -import { mock } from "../components/connectivityMatrix/mock.js"; -import { Utils } from "../components/utils/utils"; +import { + mock +} from "../components/connectivityMatrix/mock.js"; +import { + Utils +} from "../components/utils/utils"; export class MainController { constructor($log, $timeout, $scope, $q, toastr, cmMatrixViewFactory, cmModelFactory, cmMatrixFactory, cmGraphFactory, @@ -230,7 +234,6 @@ export class MainController { } createMatrix(model) { - // this.svg.selectAll("*").remove(); this.model = model; this.viewState.setModel(model); if (!this.matrixManager) { @@ -277,9 +280,9 @@ export class MainController { createQueryString(query) { let result = ""; - for(let i=0; i"; } } @@ -448,11 +451,11 @@ export class MainController { let paths = self.model.getAllPaths(); self.numPaths = 0; let keys = Object.keys(paths); - for(let i=0; i Date: Fri, 14 Sep 2018 10:39:46 -0600 Subject: [PATCH 20/24] Add loading/saving state functions. --- src/app/main/main.controller.js | 48 ++++++++++++++++++++++++--------- src/app/main/main.html | 43 ++++++++++++++++++++--------- 2 files changed, 65 insertions(+), 26 deletions(-) diff --git a/src/app/main/main.controller.js b/src/app/main/main.controller.js index 862a083..b43fe4a 100644 --- a/src/app/main/main.controller.js +++ b/src/app/main/main.controller.js @@ -162,6 +162,9 @@ export class MainController { activateWithClientOnlyData() { let self = this; + self.hasGoodData = false; + self.isNodeListVisible = false; + let defaultDataNames = [ "/assets/mock/2018.01.23-network-514-1-hop.json", "/assets/mock/2018.01.23-network-all-hops.json" @@ -219,6 +222,9 @@ export class MainController { }; } let self = this; + + self.updateNumPaths(); + this.$timeout(function () { self.createMatrixAndUi(self.model); self.$scope.$broadcast("setQuery", jsonQuery); @@ -386,7 +392,9 @@ export class MainController { * Use the hidden file input field to select a json file. */ onLoadClicked() { - angular.element('#fileInputElement').click(); + this.$timeout(function () { + angular.element('#fileInputElement').click(); + }, 0); } /** @@ -395,12 +403,23 @@ export class MainController { onLoadFile(fileInput) { let self = this; let reader = new FileReader(); + self.isLoadingFromFile = true; + self.hasGoodData = false; + self.isNodeListVisible= false; reader.onload = (contents) => { let data = angular.fromJson(contents.target.result); - self.cmModelFactory.setGraphData(data.data); + self.cmModelFactory.setGraphData(data.graph); self.activate(data.graph, data.matrix, data.query); + self.queryString = self.createQueryString(data.query); + self.$timeout(function() { + self.hasGoodData = true; + self.isLoadingFromFile = false; + }, 0); } - reader.readAsText(fileInput.files[0]); + + self.$timeout(function() { + reader.readAsText(fileInput.files[0]); + }, 0); } /** @@ -441,25 +460,17 @@ export class MainController { * the matrix. That's why the timeout is wrapped around createMatrixAndUi. */ let success = function (model) { - // Turn off the query loading screen. - self.hasActiveQuery = false; - // Update the model self.model = model; self.viewState.setModel(model); - let paths = self.model.getAllPaths(); - self.numPaths = 0; - let keys = Object.keys(paths); - for (let i = 0; i < keys.length; ++i) { - let key = keys[i]; - self.numPaths = self.numPaths + paths[key].length; - } + self.updateNumPaths(); // Actually create the matrix self.$timeout(function () { self.hasGoodData = true; self.createMatrixAndUi(model); + self.hasActiveQuery = false; }, 0); }; @@ -673,6 +684,17 @@ export class MainController { this.setEncoding(view, metric, encoding); } + updateNumPaths() { + let self = this; + let paths = self.model.getAllPaths(); + self.numPaths = 0; + let keys = Object.keys(paths); + for (let i = 0; i < keys.length; ++i) { + let key = keys[i]; + self.numPaths = self.numPaths + paths[key].length; + } + } + updateLegend() { d3.select("#encoding-legend") diff --git a/src/app/main/main.html b/src/app/main/main.html index a38c00b..80c3e4a 100644 --- a/src/app/main/main.html +++ b/src/app/main/main.html @@ -1,6 +1,15 @@
- + + + File: {{main.cmModelFactory.rawGraph.name}} @@ -13,24 +22,26 @@ Paths: {{main.numPaths}} - +
- - - + - - - - @@ -180,14 +191,20 @@

Int. Node Table

-
+
+

+ Run a query to create a matrix... +

+

+ Loading matrix from file... +

- Query is loading... + Running query and building matrix...

-
+

@@ -214,4 +231,4 @@

-
\ No newline at end of file +
From 12f19b6da6c4d0ab949377976a4d3b30f8b30b75 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Fri, 14 Sep 2018 12:08:18 -0600 Subject: [PATCH 21/24] Update error messages. --- src/app/main/main.controller.js | 23 +++++++++++++++++------ src/app/main/main.html | 7 ++----- 2 files changed, 19 insertions(+), 11 deletions(-) diff --git a/src/app/main/main.controller.js b/src/app/main/main.controller.js index b43fe4a..f9790a5 100644 --- a/src/app/main/main.controller.js +++ b/src/app/main/main.controller.js @@ -226,7 +226,12 @@ export class MainController { self.updateNumPaths(); this.$timeout(function () { - self.createMatrixAndUi(self.model); + if (self.numPaths > 0) { + self.createMatrixAndUi(self.model); + } else { + self.hasQueryError = true; + self.queryError = "No paths found." + } self.$scope.$broadcast("setQuery", jsonQuery); }, 1); } @@ -405,19 +410,19 @@ export class MainController { let reader = new FileReader(); self.isLoadingFromFile = true; self.hasGoodData = false; - self.isNodeListVisible= false; + self.isNodeListVisible = false; reader.onload = (contents) => { let data = angular.fromJson(contents.target.result); self.cmModelFactory.setGraphData(data.graph); self.activate(data.graph, data.matrix, data.query); self.queryString = self.createQueryString(data.query); - self.$timeout(function() { + self.$timeout(function () { self.hasGoodData = true; self.isLoadingFromFile = false; }, 0); } - self.$timeout(function() { + self.$timeout(function () { reader.readAsText(fileInput.files[0]); }, 0); } @@ -468,8 +473,14 @@ export class MainController { // Actually create the matrix self.$timeout(function () { - self.hasGoodData = true; - self.createMatrixAndUi(model); + if (self.numPaths > 0) { + self.hasGoodData = true; + self.createMatrixAndUi(model); + } else { + self.hasQueryError = true; + self.hasGoodData = false; + self.queryError = "No paths found." + } self.hasActiveQuery = false; }, 0); }; diff --git a/src/app/main/main.html b/src/app/main/main.html index 80c3e4a..18fe2f4 100644 --- a/src/app/main/main.html +++ b/src/app/main/main.html @@ -195,7 +195,7 @@

Int. Node Table

-

+

Run a query to create a matrix...

@@ -208,11 +208,8 @@

- Something went wrong... -

-

{{main.queryError}} -

+

From 34d0b9fba5c38201d67724d95e6d5a142e28b59c Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Thu, 20 Sep 2018 11:41:02 -0600 Subject: [PATCH 22/24] Fix bug in regex search. --- .../connectivityMatrix/cmModelFactory.service.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/components/connectivityMatrix/cmModelFactory.service.js b/src/app/components/connectivityMatrix/cmModelFactory.service.js index 1aa45d7..fe95b46 100644 --- a/src/app/components/connectivityMatrix/cmModelFactory.service.js +++ b/src/app/components/connectivityMatrix/cmModelFactory.service.js @@ -117,10 +117,12 @@ export class cmModelFactory { let edgeIndex = currentNodeOutEdges[i].name; let currentAttributes = self.dataset.edgeDict[edgeIndex]; let edgeType = currentAttributes.type; - if (edgeType.match(nextEdgeConstraint)) { + let match = edgeType.match(nextEdgeConstraint); + if (match && match[0] === edgeType) { let nextNodeId = currentEdge.w; let nextNode = graph.node(nextNodeId); - if (nextNode.label.match(nextNodeConstraint)) { + match = nextNode.label.match(nextNodeConstraint) + if (match && match[0] === nextNode.label) { let newPath = JSON.parse(JSON.stringify(currentPath)); newPath.push(edgeIndex); newPath.push(nextNodeId.toString()); @@ -145,7 +147,8 @@ export class cmModelFactory { for (let i = 0; i < nodes.length; ++i) { let node = graph.node(nodes[i]); - if (node.label.match(query.nodes[0])) { + let match = node.label.match(query.nodes[0]); + if (match && match[0] === node.label) { let path = [nodes[i]]; paths.push(path); } From 11d16ba1f3894cbca37e00990d1ce3fe611bd4c4 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Thu, 20 Sep 2018 11:45:37 -0600 Subject: [PATCH 23/24] Update button labels in main. --- src/app/main/main.html | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/src/app/main/main.html b/src/app/main/main.html index 18fe2f4..46ec8dd 100644 --- a/src/app/main/main.html +++ b/src/app/main/main.html @@ -24,25 +24,24 @@
- - - - - + + + +
From 3aa54f6f1e1a2e9ce170461af93c224703c4da85 Mon Sep 17 00:00:00 2001 From: Ethan Kerzner Date: Thu, 20 Sep 2018 12:06:17 -0600 Subject: [PATCH 24/24] Change length to hops. Update the display of path details. --- src/app/components/connectivityMatrix/cmGraph.js | 3 +-- .../pathListView/pathListView.directive.html | 10 ++++++---- .../queryBuilderRegex/queryBuilderRegex.directive.html | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/app/components/connectivityMatrix/cmGraph.js b/src/app/components/connectivityMatrix/cmGraph.js index fcb5a65..3933b4f 100644 --- a/src/app/components/connectivityMatrix/cmGraph.js +++ b/src/app/components/connectivityMatrix/cmGraph.js @@ -271,11 +271,10 @@ export class cmGraph { getEdgeDetails(edgeIndex) { let edge = this.getEdge(edgeIndex); - if (this.database == "flights") { return "Dep: " + edge.depTime + "
Arr: " + edge.arrTime; } else { - return edge.linkedStructures; + return edge.links; } } diff --git a/src/app/components/pathListView/pathListView.directive.html b/src/app/components/pathListView/pathListView.directive.html index c2da412..8492ba5 100644 --- a/src/app/components/pathListView/pathListView.directive.html +++ b/src/app/components/pathListView/pathListView.directive.html @@ -11,7 +11,7 @@

Paths - Len + Hops @@ -62,7 +62,7 @@

- {{(row.paths[0].length + 1) / 2}} + {{(row.paths[0].length - 1) / 2}} @@ -117,8 +117,10 @@

- + +
+ {{link.SourceID}} {{link.Directional ? "<->" : "->"}} {{link.TargetID}} +
diff --git a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html index 13f2163..230ce97 100644 --- a/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html +++ b/src/app/components/queryBuilderRegex/queryBuilderRegex.directive.html @@ -3,7 +3,7 @@

Connectome Query

- Len + Hops